-- -- PostgreSQL database dump -- \restrict sXluoEwEVmG41YOoxjOS3aEMnYcAuNz48QDLe5HYOOfDfUZzGQ4FauAkutPq4He -- Dumped from database version 15.15 -- Dumped by pg_dump version 15.15 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; -- -- Name: pipeline; Type: SCHEMA; Schema: -; Owner: scraper -- CREATE SCHEMA pipeline; ALTER SCHEMA pipeline OWNER TO scraper; -- -- Name: SCHEMA pipeline; Type: COMMENT; Schema: -; Owner: scraper -- COMMENT ON SCHEMA pipeline IS 'ReviewIQ Pipeline - LLM-powered review classification and aggregation'; -- -- Name: ltree; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS ltree WITH SCHEMA public; -- -- Name: EXTENSION ltree; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION ltree IS 'data type for hierarchical tree-like structures'; -- -- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; -- -- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; -- -- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public; -- -- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions'; -- -- Name: actionability_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.actionability_type AS ENUM ( 'A1', 'A2', 'A3' ); ALTER TYPE pipeline.actionability_type OWNER TO scraper; -- -- Name: bucket_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.bucket_type AS ENUM ( 'day', 'week', 'month' ); ALTER TYPE pipeline.bucket_type OWNER TO scraper; -- -- Name: comparative_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.comparative_type AS ENUM ( 'CR-N', 'CR-B', 'CR-W', 'CR-S' ); ALTER TYPE pipeline.comparative_type OWNER TO scraper; -- -- Name: evidence_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.evidence_type AS ENUM ( 'ES', 'EI', 'EC' ); ALTER TYPE pipeline.evidence_type OWNER TO scraper; -- -- Name: execution_status; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.execution_status AS ENUM ( 'pending', 'running', 'completed', 'failed', 'cancelled' ); ALTER TYPE pipeline.execution_status OWNER TO scraper; -- -- Name: intensity_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.intensity_type AS ENUM ( 'I1', 'I2', 'I3' ); ALTER TYPE pipeline.intensity_type OWNER TO scraper; -- -- Name: issue_state; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.issue_state AS ENUM ( 'open', 'resolved', 'ignored', 'merged' ); ALTER TYPE pipeline.issue_state OWNER TO scraper; -- -- Name: specificity_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.specificity_type AS ENUM ( 'S1', 'S2', 'S3' ); ALTER TYPE pipeline.specificity_type OWNER TO scraper; -- -- Name: subject_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.subject_type AS ENUM ( 'overall', 'urt_code', 'domain', 'issue' ); ALTER TYPE pipeline.subject_type OWNER TO scraper; -- -- Name: temporal_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.temporal_type AS ENUM ( 'TC', 'TR', 'TH', 'TF' ); ALTER TYPE pipeline.temporal_type OWNER TO scraper; -- -- Name: valence_type; Type: TYPE; Schema: pipeline; Owner: scraper -- CREATE TYPE pipeline.valence_type AS ENUM ( 'V+', 'V-', 'V0', 'V±' ); ALTER TYPE pipeline.valence_type OWNER TO scraper; -- -- Name: set_urt_path(); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.set_urt_path() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.urt_path := (SELECT path FROM pipeline.urt_taxonomy WHERE code = NEW.urt_primary); RETURN NEW; END; $$; ALTER FUNCTION pipeline.set_urt_path() OWNER TO scraper; -- -- Name: update_updated_at_column(); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.update_updated_at_column() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.updated_at = NOW(); RETURN NEW; END; $$; ALTER FUNCTION pipeline.update_updated_at_column() OWNER TO scraper; -- -- Name: urt_ancestors(character varying); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.urt_ancestors(p_code character varying) RETURNS TABLE(code character varying, name character varying, node_type character varying, level integer) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT t.code::VARCHAR, t.name::VARCHAR, t.node_type::VARCHAR, t.level::INT FROM pipeline.urt_taxonomy t WHERE t.path @> (SELECT ut.path FROM pipeline.urt_taxonomy ut WHERE ut.code = p_code) AND t.code != p_code ORDER BY t.level; END; $$; ALTER FUNCTION pipeline.urt_ancestors(p_code character varying) OWNER TO scraper; -- -- Name: urt_category(character varying); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.urt_category(p_code character varying) RETURNS character varying LANGUAGE sql AS $$ SELECT code FROM pipeline.urt_taxonomy WHERE path @> (SELECT path FROM pipeline.urt_taxonomy WHERE code = p_code) AND node_type = 'category'; $$; ALTER FUNCTION pipeline.urt_category(p_code character varying) OWNER TO scraper; -- -- Name: urt_descendants(character varying); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.urt_descendants(p_code character varying) RETURNS TABLE(code character varying, name character varying, node_type character varying, level integer) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT t.code, t.name, t.node_type, t.level FROM pipeline.urt_taxonomy t WHERE t.path <@ (SELECT path FROM pipeline.urt_taxonomy WHERE code = p_code) AND t.code != p_code ORDER BY t.path; END; $$; ALTER FUNCTION pipeline.urt_descendants(p_code character varying) OWNER TO scraper; -- -- Name: urt_domain(character varying); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.urt_domain(p_code character varying) RETURNS character varying LANGUAGE sql AS $$ SELECT code FROM pipeline.urt_taxonomy WHERE path @> (SELECT path FROM pipeline.urt_taxonomy WHERE code = p_code) AND node_type = 'domain'; $$; ALTER FUNCTION pipeline.urt_domain(p_code character varying) OWNER TO scraper; -- -- Name: urt_siblings(character varying); Type: FUNCTION; Schema: pipeline; Owner: scraper -- CREATE FUNCTION pipeline.urt_siblings(p_code character varying) RETURNS TABLE(code character varying, name character varying, level integer) LANGUAGE plpgsql AS $$ DECLARE v_parent ltree; BEGIN SELECT subpath(path, 0, nlevel(path) - 1) INTO v_parent FROM pipeline.urt_taxonomy WHERE code = p_code; RETURN QUERY SELECT t.code, t.name, t.level FROM pipeline.urt_taxonomy t WHERE subpath(t.path, 0, nlevel(t.path) - 1) = v_parent AND t.code != p_code ORDER BY t.path; END; $$; ALTER FUNCTION pipeline.urt_siblings(p_code character varying) OWNER TO scraper; -- -- Name: get_category_ancestors(public.ltree); Type: FUNCTION; Schema: public; Owner: scraper -- CREATE FUNCTION public.get_category_ancestors(category_path public.ltree) RETURNS TABLE(id integer, name text, slug text, path public.ltree, level integer) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT c.id, c.name, c.slug, c.path, c.level FROM gbp_categories c WHERE category_path <@ c.path AND c.path != category_path ORDER BY c.level; END; $$; ALTER FUNCTION public.get_category_ancestors(category_path public.ltree) OWNER TO scraper; -- -- Name: get_category_children(public.ltree); Type: FUNCTION; Schema: public; Owner: scraper -- CREATE FUNCTION public.get_category_children(parent_path public.ltree) RETURNS TABLE(id integer, name text, slug text, path public.ltree, level integer) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT c.id, c.name, c.slug, c.path, c.level FROM gbp_categories c WHERE c.path <@ parent_path AND c.path != parent_path ORDER BY c.path; END; $$; ALTER FUNCTION public.get_category_children(parent_path public.ltree) OWNER TO scraper; -- -- Name: search_categories(text, integer); Type: FUNCTION; Schema: public; Owner: scraper -- CREATE FUNCTION public.search_categories(search_term text, limit_count integer DEFAULT 20) RETURNS TABLE(id integer, name text, path public.ltree, level integer, similarity real) LANGUAGE plpgsql AS $$ BEGIN RETURN QUERY SELECT c.id, c.name, c.path, c.level, similarity(c.name, search_term) as sim FROM gbp_categories c WHERE c.name ILIKE '%' || search_term || '%' OR similarity(c.name, search_term) > 0.3 ORDER BY sim DESC, c.level, c.name LIMIT limit_count; END; $$; ALTER FUNCTION public.search_categories(search_term text, limit_count integer) OWNER TO scraper; -- -- Name: update_updated_at_column(); Type: FUNCTION; Schema: public; Owner: scraper -- CREATE FUNCTION public.update_updated_at_column() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.updated_at = CURRENT_TIMESTAMP; RETURN NEW; END; $$; ALTER FUNCTION public.update_updated_at_column() OWNER TO scraper; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: business_taxonomy_map; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.business_taxonomy_map ( id integer NOT NULL, business_id text NOT NULL, place_id text, gbp_path public.ltree NOT NULL, sector_code text NOT NULL, assigned_at timestamp without time zone DEFAULT now(), assigned_by text DEFAULT 'manual'::text ); ALTER TABLE pipeline.business_taxonomy_map OWNER TO scraper; -- -- Name: business_taxonomy_map_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.business_taxonomy_map_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.business_taxonomy_map_id_seq OWNER TO scraper; -- -- Name: business_taxonomy_map_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.business_taxonomy_map_id_seq OWNED BY pipeline.business_taxonomy_map.id; -- -- Name: detected_spans_v2; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.detected_spans_v2 ( id bigint NOT NULL, job_id uuid, business_id text NOT NULL, review_id text NOT NULL, gbp_path public.ltree NOT NULL, sector_code text NOT NULL, config_version text NOT NULL, primitive text NOT NULL, valence text NOT NULL, intensity smallint, detail smallint, mode text, confidence numeric(3,2) NOT NULL, span_text text NOT NULL, span_start integer, span_end integer, unmapped_keywords text[], entity text, entity_type text, created_at timestamp without time zone DEFAULT now(), model text, raw_response jsonb, review_hash text, language text, run_id uuid, CONSTRAINT detected_spans_v2_confidence_check CHECK (((confidence >= (0)::numeric) AND (confidence <= (1)::numeric))), CONSTRAINT detected_spans_v2_detail_check CHECK (((detail >= 1) AND (detail <= 3))), CONSTRAINT detected_spans_v2_intensity_check CHECK (((intensity >= 1) AND (intensity <= 3))) ); ALTER TABLE pipeline.detected_spans_v2 OWNER TO scraper; -- -- Name: detected_spans_v2_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.detected_spans_v2_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.detected_spans_v2_id_seq OWNER TO scraper; -- -- Name: detected_spans_v2_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.detected_spans_v2_id_seq OWNED BY pipeline.detected_spans_v2.id; -- -- Name: executions; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.executions ( id uuid DEFAULT gen_random_uuid() NOT NULL, pipeline_id character varying(50) NOT NULL, job_id uuid, business_id character varying(255), status pipeline.execution_status DEFAULT 'pending'::pipeline.execution_status NOT NULL, stages_requested text[] DEFAULT '{}'::text[] NOT NULL, stages_completed text[] DEFAULT '{}'::text[] NOT NULL, current_stage character varying(100), input_summary jsonb, result_summary jsonb, error_message text, started_at timestamp with time zone, completed_at timestamp with time zone, created_at timestamp with time zone DEFAULT now() NOT NULL, stage_metrics jsonb, total_duration_ms integer, synthesis jsonb ); ALTER TABLE pipeline.executions OWNER TO scraper; -- -- Name: TABLE executions; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.executions IS 'Pipeline execution history for monitoring and debugging'; -- -- Name: COLUMN executions.pipeline_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.pipeline_id IS 'Reference to pipeline.registry.pipeline_id'; -- -- Name: COLUMN executions.job_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.job_id IS 'Optional link to scraper job (soft FK)'; -- -- Name: COLUMN executions.stages_requested; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.stages_requested IS 'Stages requested to run'; -- -- Name: COLUMN executions.stages_completed; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.stages_completed IS 'Stages that completed successfully'; -- -- Name: COLUMN executions.input_summary; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.input_summary IS 'Summary of input data (for display)'; -- -- Name: COLUMN executions.result_summary; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.result_summary IS 'Summary of results (for display)'; -- -- Name: COLUMN executions.synthesis; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.executions.synthesis IS 'AI-generated synthesis containing narratives, action plan, and insights from Stage 4'; -- -- Name: execution_stats; Type: VIEW; Schema: pipeline; Owner: scraper -- CREATE VIEW pipeline.execution_stats AS SELECT executions.pipeline_id, count(*) AS total_executions, count(*) FILTER (WHERE (executions.status = 'completed'::pipeline.execution_status)) AS completed_count, count(*) FILTER (WHERE (executions.status = 'failed'::pipeline.execution_status)) AS failed_count, count(*) FILTER (WHERE (executions.status = 'running'::pipeline.execution_status)) AS running_count, count(*) FILTER (WHERE (executions.status = 'cancelled'::pipeline.execution_status)) AS cancelled_count, avg(EXTRACT(epoch FROM (executions.completed_at - executions.started_at))) FILTER (WHERE (executions.status = 'completed'::pipeline.execution_status)) AS avg_duration_seconds, max(executions.created_at) AS last_execution_at FROM pipeline.executions GROUP BY executions.pipeline_id; ALTER TABLE pipeline.execution_stats OWNER TO scraper; -- -- Name: VIEW execution_stats; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON VIEW pipeline.execution_stats IS 'Aggregated execution statistics per pipeline'; -- -- Name: registry; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.registry ( id uuid DEFAULT gen_random_uuid() NOT NULL, pipeline_id character varying(50) NOT NULL, name character varying(255) NOT NULL, description text, version character varying(20) NOT NULL, module_path character varying(255) NOT NULL, stages text[] DEFAULT '{}'::text[] NOT NULL, input_type character varying(100) DEFAULT 'dict'::character varying NOT NULL, config jsonb, is_enabled boolean DEFAULT true NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL, updated_at timestamp with time zone DEFAULT now() NOT NULL ); ALTER TABLE pipeline.registry OWNER TO scraper; -- -- Name: TABLE registry; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.registry IS 'Registered pipelines available for execution'; -- -- Name: COLUMN registry.pipeline_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.registry.pipeline_id IS 'Unique pipeline identifier (e.g., "reviewiq")'; -- -- Name: COLUMN registry.module_path; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.registry.module_path IS 'Python module path for dynamic import (package.module:ClassName)'; -- -- Name: COLUMN registry.stages; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.registry.stages IS 'Ordered list of stage names'; -- -- Name: COLUMN registry.input_type; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.registry.input_type IS 'Expected input type (for documentation/validation)'; -- -- Name: COLUMN registry.config; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.registry.config IS 'Pipeline-specific configuration as JSON'; -- -- Name: executions_with_pipeline; Type: VIEW; Schema: pipeline; Owner: scraper -- CREATE VIEW pipeline.executions_with_pipeline AS SELECT e.id, e.pipeline_id, r.name AS pipeline_name, e.job_id, e.business_id, e.status, e.stages_requested, e.stages_completed, e.current_stage, e.error_message, e.started_at, e.completed_at, e.created_at, CASE WHEN (e.status = 'running'::pipeline.execution_status) THEN (EXTRACT(epoch FROM (now() - e.started_at)))::integer WHEN (e.completed_at IS NOT NULL) THEN (EXTRACT(epoch FROM (e.completed_at - e.started_at)))::integer ELSE NULL::integer END AS duration_seconds FROM (pipeline.executions e LEFT JOIN pipeline.registry r ON (((e.pipeline_id)::text = (r.pipeline_id)::text))); ALTER TABLE pipeline.executions_with_pipeline OWNER TO scraper; -- -- Name: VIEW executions_with_pipeline; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON VIEW pipeline.executions_with_pipeline IS 'Executions joined with pipeline metadata and duration'; -- -- Name: fact_timeseries; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.fact_timeseries ( id bigint NOT NULL, business_id character varying(255) NOT NULL, place_id character varying(255) NOT NULL, period_date date NOT NULL, bucket_type pipeline.bucket_type DEFAULT 'day'::pipeline.bucket_type NOT NULL, subject_type pipeline.subject_type DEFAULT 'urt_code'::pipeline.subject_type NOT NULL, subject_id character varying(50) NOT NULL, taxonomy_version character varying(20) NOT NULL, review_count integer DEFAULT 0 NOT NULL, span_count integer DEFAULT 0 NOT NULL, negative_count integer DEFAULT 0 NOT NULL, positive_count integer DEFAULT 0 NOT NULL, neutral_count integer DEFAULT 0 NOT NULL, mixed_count integer DEFAULT 0 NOT NULL, strength_score real DEFAULT 0.0 NOT NULL, negative_strength real DEFAULT 0.0 NOT NULL, positive_strength real DEFAULT 0.0 NOT NULL, avg_rating real, i1_count integer DEFAULT 0 NOT NULL, i2_count integer DEFAULT 0 NOT NULL, i3_count integer DEFAULT 0 NOT NULL, cr_better integer DEFAULT 0 NOT NULL, cr_worse integer DEFAULT 0 NOT NULL, cr_same integer DEFAULT 0 NOT NULL, trust_weighted_strength real DEFAULT 0.0 NOT NULL, trust_weighted_negative real DEFAULT 0.0 NOT NULL, computed_at timestamp with time zone DEFAULT now() NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL ); ALTER TABLE pipeline.fact_timeseries OWNER TO scraper; -- -- Name: TABLE fact_timeseries; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.fact_timeseries IS 'Pre-aggregated time series facts for dashboard queries'; -- -- Name: fact_timeseries_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.fact_timeseries_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.fact_timeseries_id_seq OWNER TO scraper; -- -- Name: fact_timeseries_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.fact_timeseries_id_seq OWNED BY pipeline.fact_timeseries.id; -- -- Name: issue_events; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.issue_events ( id bigint NOT NULL, issue_id character varying(50) NOT NULL, event_type character varying(50) NOT NULL, span_id character varying(50), old_value text, new_value text, metadata jsonb, created_at timestamp with time zone DEFAULT now() NOT NULL ); ALTER TABLE pipeline.issue_events OWNER TO scraper; -- -- Name: TABLE issue_events; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.issue_events IS 'Audit log for issue state changes'; -- -- Name: issue_events_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.issue_events_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.issue_events_id_seq OWNER TO scraper; -- -- Name: issue_events_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.issue_events_id_seq OWNED BY pipeline.issue_events.id; -- -- Name: issue_spans; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.issue_spans ( id bigint NOT NULL, issue_id character varying(50) NOT NULL, span_id character varying(50) NOT NULL, source character varying(20) DEFAULT 'google'::character varying NOT NULL, review_id character varying(255) NOT NULL, review_version integer DEFAULT 1 NOT NULL, is_primary_match boolean DEFAULT true NOT NULL, intensity character varying(5) NOT NULL, review_time timestamp with time zone NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL ); ALTER TABLE pipeline.issue_spans OWNER TO scraper; -- -- Name: TABLE issue_spans; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.issue_spans IS 'Links between issues and their source spans'; -- -- Name: issue_spans_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.issue_spans_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.issue_spans_id_seq OWNER TO scraper; -- -- Name: issue_spans_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.issue_spans_id_seq OWNED BY pipeline.issue_spans.id; -- -- Name: issues; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.issues ( id bigint NOT NULL, issue_id character varying(50) NOT NULL, business_id character varying(255) NOT NULL, place_id character varying(255) NOT NULL, primary_subcode character varying(10) NOT NULL, domain character(1) NOT NULL, state pipeline.issue_state DEFAULT 'open'::pipeline.issue_state NOT NULL, priority_score real DEFAULT 1.0 NOT NULL, confidence_score real DEFAULT 1.0 NOT NULL, span_count integer DEFAULT 1 NOT NULL, max_intensity character varying(5) DEFAULT 'I1'::character varying NOT NULL, entity character varying(255), entity_normalized character varying(255), taxonomy_version character varying(20) NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL, updated_at timestamp with time zone DEFAULT now() NOT NULL, job_id uuid ); ALTER TABLE pipeline.issues OWNER TO scraper; -- -- Name: TABLE issues; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.issues IS 'Aggregated issues derived from negative/mixed spans'; -- -- Name: COLUMN issues.job_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.issues.job_id IS 'Scraper job ID for filtering by execution'; -- -- Name: issues_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.issues_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.issues_id_seq OWNER TO scraper; -- -- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.issues_id_seq OWNED BY pipeline.issues.id; -- -- Name: issues_open; Type: VIEW; Schema: pipeline; Owner: scraper -- CREATE VIEW pipeline.issues_open AS SELECT NULL::bigint AS id, NULL::character varying(50) AS issue_id, NULL::character varying(255) AS business_id, NULL::character varying(255) AS place_id, NULL::character varying(10) AS primary_subcode, NULL::character(1) AS domain, NULL::pipeline.issue_state AS state, NULL::real AS priority_score, NULL::real AS confidence_score, NULL::integer AS span_count, NULL::character varying(5) AS max_intensity, NULL::character varying(255) AS entity, NULL::character varying(255) AS entity_normalized, NULL::character varying(20) AS taxonomy_version, NULL::timestamp with time zone AS created_at, NULL::timestamp with time zone AS updated_at, NULL::bigint AS total_spans; ALTER TABLE pipeline.issues_open OWNER TO scraper; -- -- Name: VIEW issues_open; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON VIEW pipeline.issues_open IS 'Open issues with total span counts'; -- -- Name: review_spans; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.review_spans ( id bigint NOT NULL, span_id character varying(50) NOT NULL, business_id character varying(255) NOT NULL, place_id character varying(255) NOT NULL, source character varying(20) DEFAULT 'google'::character varying NOT NULL, review_id character varying(255) NOT NULL, review_version integer DEFAULT 1 NOT NULL, span_index integer NOT NULL, span_text text NOT NULL, span_start integer NOT NULL, span_end integer NOT NULL, profile character varying(20) DEFAULT 'standard'::character varying NOT NULL, urt_primary character varying(10) NOT NULL, urt_secondary character varying(10)[] DEFAULT '{}'::character varying[], valence character varying(5) NOT NULL, intensity character varying(5) NOT NULL, comparative character varying(10) DEFAULT 'CR-N'::character varying NOT NULL, specificity character varying(5), actionability character varying(5), temporal character varying(5), evidence character varying(5), entity character varying(255), entity_type character varying(20), entity_normalized character varying(255), relation_type character varying(20), related_span_id character varying(50), causal_chain jsonb, is_primary boolean DEFAULT false NOT NULL, is_active boolean DEFAULT true NOT NULL, review_time timestamp with time zone NOT NULL, confidence character varying(10) DEFAULT 'medium'::character varying NOT NULL, usn character varying(100) NOT NULL, taxonomy_version character varying(20) NOT NULL, model_version character varying(100) NOT NULL, ingest_batch_id character varying(50) NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL, job_id uuid, urt_path public.ltree, CONSTRAINT review_spans_check CHECK ((span_end > span_start)), CONSTRAINT review_spans_span_index_check CHECK ((span_index >= 0)), CONSTRAINT review_spans_span_start_check CHECK ((span_start >= 0)) ); ALTER TABLE pipeline.review_spans OWNER TO scraper; -- -- Name: TABLE review_spans; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.review_spans IS 'Extracted semantic spans with URT classification from reviews'; -- -- Name: COLUMN review_spans.job_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.review_spans.job_id IS 'Scraper job ID for filtering by execution'; -- -- Name: urt_taxonomy; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.urt_taxonomy ( id integer NOT NULL, path public.ltree NOT NULL, code character varying(10) NOT NULL, node_type character varying(20) NOT NULL, level integer GENERATED ALWAYS AS (public.nlevel(path)) STORED, name character varying(100) NOT NULL, definition text, positive_example text, negative_example text, solution text, solution_complexity character varying(10) DEFAULT 'medium'::character varying, marketing_angle text, default_owner character varying(50), is_active boolean DEFAULT true, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now(), CONSTRAINT urt_taxonomy_node_type_check CHECK (((node_type)::text = ANY ((ARRAY['domain'::character varying, 'category'::character varying, 'subcode'::character varying])::text[]))) ); ALTER TABLE pipeline.urt_taxonomy OWNER TO scraper; -- -- Name: TABLE urt_taxonomy; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.urt_taxonomy IS 'Unified URT taxonomy using ltree for hierarchical queries. Replaces urt_domains, urt_categories, urt_subcodes.'; -- -- Name: mv_urt_domain_stats; Type: MATERIALIZED VIEW; Schema: pipeline; Owner: scraper -- CREATE MATERIALIZED VIEW pipeline.mv_urt_domain_stats AS SELECT (public.subpath(rs.urt_path, 0, 1))::text AS domain_code, t.name AS domain_name, rs.valence, count(*) AS span_count, count(DISTINCT rs.review_id) AS review_count, avg( CASE rs.intensity WHEN 'I1'::text THEN 1 WHEN 'I2'::text THEN 2 WHEN 'I3'::text THEN 3 ELSE NULL::integer END) AS avg_intensity FROM (pipeline.review_spans rs JOIN pipeline.urt_taxonomy t ON ((public.subpath(rs.urt_path, 0, 1) OPERATOR(public.=) t.path))) WHERE (rs.urt_path IS NOT NULL) GROUP BY (public.subpath(rs.urt_path, 0, 1)), t.name, rs.valence WITH NO DATA; ALTER TABLE pipeline.mv_urt_domain_stats OWNER TO scraper; -- -- Name: review_facts_v1; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.review_facts_v1 ( review_id text NOT NULL, business_id text NOT NULL, job_id uuid, run_id uuid, rating smallint, review_time_utc timestamp with time zone, raw_timestamp text, author text, language text, created_at timestamp with time zone DEFAULT now() NOT NULL ); ALTER TABLE pipeline.review_facts_v1 OWNER TO scraper; -- -- Name: review_spans_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.review_spans_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.review_spans_id_seq OWNER TO scraper; -- -- Name: review_spans_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.review_spans_id_seq OWNED BY pipeline.review_spans.id; -- -- Name: reviews_enriched; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.reviews_enriched ( id bigint NOT NULL, source character varying(20) DEFAULT 'google'::character varying NOT NULL, review_id character varying(255) NOT NULL, review_version integer DEFAULT 1 NOT NULL, is_latest boolean DEFAULT true NOT NULL, raw_id bigint, business_id character varying(255) NOT NULL, place_id character varying(255) NOT NULL, text text NOT NULL, text_normalized text NOT NULL, rating smallint NOT NULL, review_time timestamp with time zone NOT NULL, language character varying(10) DEFAULT 'en'::character varying NOT NULL, taxonomy_version character varying(20) DEFAULT 'v5.1'::character varying NOT NULL, urt_primary character varying(10), urt_secondary character varying(10)[] DEFAULT '{}'::character varying[], valence character varying(5), intensity character varying(5), comparative character varying(10), staff_mentions character varying(255)[] DEFAULT '{}'::character varying[], quotes jsonb DEFAULT '{}'::jsonb, embedding real[] DEFAULT '{}'::real[], trust_score real, classification_model character varying(100), classification_confidence jsonb DEFAULT '{}'::jsonb, processed_at timestamp with time zone, created_at timestamp with time zone DEFAULT now() NOT NULL, job_id uuid, CONSTRAINT reviews_enriched_rating_check CHECK (((rating >= 1) AND (rating <= 5))) ); ALTER TABLE pipeline.reviews_enriched OWNER TO scraper; -- -- Name: TABLE reviews_enriched; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.reviews_enriched IS 'Enriched reviews with normalization and classification'; -- -- Name: COLUMN reviews_enriched.job_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.reviews_enriched.job_id IS 'Scraper job ID for filtering by execution'; -- -- Name: reviews_enriched_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.reviews_enriched_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.reviews_enriched_id_seq OWNER TO scraper; -- -- Name: reviews_enriched_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.reviews_enriched_id_seq OWNED BY pipeline.reviews_enriched.id; -- -- Name: reviews_latest; Type: VIEW; Schema: pipeline; Owner: scraper -- CREATE VIEW pipeline.reviews_latest AS SELECT reviews_enriched.id, reviews_enriched.source, reviews_enriched.review_id, reviews_enriched.review_version, reviews_enriched.is_latest, reviews_enriched.raw_id, reviews_enriched.business_id, reviews_enriched.place_id, reviews_enriched.text, reviews_enriched.text_normalized, reviews_enriched.rating, reviews_enriched.review_time, reviews_enriched.language, reviews_enriched.taxonomy_version, reviews_enriched.urt_primary, reviews_enriched.urt_secondary, reviews_enriched.valence, reviews_enriched.intensity, reviews_enriched.comparative, reviews_enriched.staff_mentions, reviews_enriched.quotes, reviews_enriched.embedding, reviews_enriched.trust_score, reviews_enriched.classification_model, reviews_enriched.classification_confidence, reviews_enriched.processed_at, reviews_enriched.created_at FROM pipeline.reviews_enriched WHERE (reviews_enriched.is_latest = true); ALTER TABLE pipeline.reviews_latest OWNER TO scraper; -- -- Name: VIEW reviews_latest; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON VIEW pipeline.reviews_latest IS 'Latest version of each review'; -- -- Name: reviews_raw; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.reviews_raw ( id bigint NOT NULL, job_id uuid, source character varying(20) DEFAULT 'google'::character varying NOT NULL, review_id character varying(255) NOT NULL, place_id character varying(255) NOT NULL, raw_payload jsonb DEFAULT '{}'::jsonb NOT NULL, review_text text, rating smallint NOT NULL, review_time timestamp with time zone NOT NULL, reviewer_name character varying(255) NOT NULL, reviewer_id character varying(255), review_version integer DEFAULT 1 NOT NULL, pulled_at timestamp with time zone DEFAULT now() NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL, CONSTRAINT reviews_raw_rating_check CHECK (((rating >= 1) AND (rating <= 5))) ); ALTER TABLE pipeline.reviews_raw OWNER TO scraper; -- -- Name: TABLE reviews_raw; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.reviews_raw IS 'Immutable raw review data as scraped from source'; -- -- Name: COLUMN reviews_raw.job_id; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON COLUMN pipeline.reviews_raw.job_id IS 'Optional link to public.jobs.job_id for traceability'; -- -- Name: reviews_raw_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.reviews_raw_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.reviews_raw_id_seq OWNER TO scraper; -- -- Name: reviews_raw_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.reviews_raw_id_seq OWNED BY pipeline.reviews_raw.id; -- -- Name: urt_categories; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.urt_categories ( code character varying(5) NOT NULL, domain_code character(1) NOT NULL, name character varying(100) NOT NULL, description text ); ALTER TABLE pipeline.urt_categories OWNER TO scraper; -- -- Name: TABLE urt_categories; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.urt_categories IS 'URT v5.1 Tier-2 categories'; -- -- Name: urt_domains; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.urt_domains ( code character(1) NOT NULL, name character varying(50) NOT NULL, description text, default_owner text ); ALTER TABLE pipeline.urt_domains OWNER TO scraper; -- -- Name: TABLE urt_domains; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.urt_domains IS 'URT v5.1 top-level domains'; -- -- Name: urt_subcodes; Type: TABLE; Schema: pipeline; Owner: scraper -- CREATE TABLE pipeline.urt_subcodes ( code character varying(6) NOT NULL, category_code character varying(2) NOT NULL, domain_code character(1) NOT NULL, name character varying(100) NOT NULL, definition text, positive_example text, negative_example text, solution text, marketing_angle text, solution_complexity character varying(10) DEFAULT 'medium'::character varying ); ALTER TABLE pipeline.urt_subcodes OWNER TO scraper; -- -- Name: TABLE urt_subcodes; Type: COMMENT; Schema: pipeline; Owner: scraper -- COMMENT ON TABLE pipeline.urt_subcodes IS 'URT v5.1 Tier-3 diagnostic subcodes with definitions'; -- -- Name: urt_taxonomy_id_seq; Type: SEQUENCE; Schema: pipeline; Owner: scraper -- CREATE SEQUENCE pipeline.urt_taxonomy_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pipeline.urt_taxonomy_id_seq OWNER TO scraper; -- -- Name: urt_taxonomy_id_seq; Type: SEQUENCE OWNED BY; Schema: pipeline; Owner: scraper -- ALTER SEQUENCE pipeline.urt_taxonomy_id_seq OWNED BY pipeline.urt_taxonomy.id; -- -- Name: v_urt_taxonomy; Type: VIEW; Schema: pipeline; Owner: scraper -- CREATE VIEW pipeline.v_urt_taxonomy AS SELECT t.id, t.path, t.code, t.node_type, t.level, t.name, t.definition, CASE WHEN (t.level > 1) THEN (public.subpath(t.path, 0, (t.level - 1)))::text ELSE NULL::text END AS parent_path, (public.subpath(t.path, 0, 1))::text AS domain_code, ( SELECT urt_taxonomy.name FROM pipeline.urt_taxonomy WHERE (urt_taxonomy.path OPERATOR(public.=) public.subpath(t.path, 0, 1))) AS domain_name, CASE WHEN (t.level >= 2) THEN (public.subpath(t.path, 0, 2))::text ELSE NULL::text END AS category_path, (t.path)::text AS full_path, t.solution, t.default_owner, t.is_active FROM pipeline.urt_taxonomy t ORDER BY t.path; ALTER TABLE pipeline.v_urt_taxonomy OWNER TO scraper; -- -- Name: _migrations; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public._migrations ( id integer NOT NULL, filename character varying(255) NOT NULL, applied_at timestamp with time zone DEFAULT now() ); ALTER TABLE public._migrations OWNER TO scraper; -- -- Name: _migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: scraper -- CREATE SEQUENCE public._migrations_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public._migrations_id_seq OWNER TO scraper; -- -- Name: _migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: scraper -- ALTER SEQUENCE public._migrations_id_seq OWNED BY public._migrations.id; -- -- Name: api_keys; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.api_keys ( id uuid DEFAULT gen_random_uuid() NOT NULL, key_hash character varying(64) NOT NULL, key_prefix character varying(8) NOT NULL, name character varying(255) NOT NULL, client_id character varying(255) NOT NULL, scopes text[] DEFAULT '{}'::text[], rate_limit_rpm integer DEFAULT 60, is_active boolean DEFAULT true, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, last_used_at timestamp without time zone, expires_at timestamp without time zone, metadata jsonb ); ALTER TABLE public.api_keys OWNER TO scraper; -- -- Name: TABLE api_keys; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON TABLE public.api_keys IS 'API keys for authenticating external clients. Keys are stored as SHA-256 hashes for security.'; -- -- Name: COLUMN api_keys.key_hash; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.api_keys.key_hash IS 'SHA-256 hash of the API key. The actual key is never stored.'; -- -- Name: COLUMN api_keys.key_prefix; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.api_keys.key_prefix IS 'First 8 characters of the key for identification in UI and logs.'; -- -- Name: COLUMN api_keys.scopes; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.api_keys.scopes IS 'Array of permission scopes: jobs:read, jobs:write, admin, etc.'; -- -- Name: COLUMN api_keys.rate_limit_rpm; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.api_keys.rate_limit_rpm IS 'Rate limit in requests per minute. NULL uses system default.'; -- -- Name: COLUMN api_keys.metadata; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.api_keys.metadata IS 'Extensible JSON metadata: IP allowlists, usage notes, etc.'; -- -- Name: batches; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.batches ( id uuid DEFAULT gen_random_uuid() NOT NULL, requester_client_id character varying(255), requester_source character varying(100), scrape_purpose character varying(50), name character varying(255), total_jobs integer DEFAULT 0 NOT NULL, completed_jobs integer DEFAULT 0, failed_jobs integer DEFAULT 0, status character varying(20) DEFAULT 'pending'::character varying, callback_url text, callback_status character varying(20), callback_sent_at timestamp without time zone, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, completed_at timestamp without time zone, metadata jsonb ); ALTER TABLE public.batches OWNER TO scraper; -- -- Name: TABLE batches; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON TABLE public.batches IS 'Groups multiple scrape jobs for batch processing with aggregate tracking and callbacks'; -- -- Name: COLUMN batches.id; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.id IS 'Unique identifier for the batch (UUID)'; -- -- Name: COLUMN batches.requester_client_id; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.requester_client_id IS 'Identifier of the client who submitted this batch'; -- -- Name: COLUMN batches.requester_source; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.requester_source IS 'Source system that originated the request (e.g., salesforce, api)'; -- -- Name: COLUMN batches.scrape_purpose; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.scrape_purpose IS 'Purpose of the scrape (screening, monitoring, audit, etc.)'; -- -- Name: COLUMN batches.name; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.name IS 'Human-readable batch name for display purposes'; -- -- Name: COLUMN batches.total_jobs; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.total_jobs IS 'Total number of jobs in this batch'; -- -- Name: COLUMN batches.completed_jobs; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.completed_jobs IS 'Number of jobs that completed successfully'; -- -- Name: COLUMN batches.failed_jobs; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.failed_jobs IS 'Number of jobs that failed'; -- -- Name: COLUMN batches.status; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.status IS 'Current batch status: pending, running, or completed'; -- -- Name: COLUMN batches.callback_url; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.callback_url IS 'Webhook URL to notify when batch completes'; -- -- Name: COLUMN batches.callback_status; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.callback_status IS 'Result of callback attempt: pending, success, or failed'; -- -- Name: COLUMN batches.callback_sent_at; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.callback_sent_at IS 'Timestamp when callback was sent'; -- -- Name: COLUMN batches.created_at; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.created_at IS 'When the batch was created'; -- -- Name: COLUMN batches.completed_at; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.completed_at IS 'When the batch finished processing'; -- -- Name: COLUMN batches.metadata; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.batches.metadata IS 'Arbitrary JSON metadata for client-specific needs'; -- -- Name: canary_results; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.canary_results ( id integer NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, success boolean NOT NULL, reviews_count integer, scrape_time real, error_message text, metadata jsonb ); ALTER TABLE public.canary_results OWNER TO scraper; -- -- Name: canary_results_id_seq; Type: SEQUENCE; Schema: public; Owner: scraper -- CREATE SEQUENCE public.canary_results_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.canary_results_id_seq OWNER TO scraper; -- -- Name: canary_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: scraper -- ALTER SEQUENCE public.canary_results_id_seq OWNED BY public.canary_results.id; -- -- Name: gbp_categories; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.gbp_categories ( id integer NOT NULL, name character varying(255) NOT NULL, slug character varying(255) NOT NULL, path public.ltree NOT NULL, level integer NOT NULL, parent_id integer, category_count integer DEFAULT 0, created_at timestamp without time zone DEFAULT now(), updated_at timestamp without time zone DEFAULT now(), name_es character varying(255) ); ALTER TABLE public.gbp_categories OWNER TO scraper; -- -- Name: category_summary; Type: VIEW; Schema: public; Owner: scraper -- CREATE VIEW public.category_summary AS SELECT ( SELECT count(*) AS count FROM public.gbp_categories WHERE (gbp_categories.level = 1)) AS total_sectors, ( SELECT count(*) AS count FROM public.gbp_categories WHERE (gbp_categories.level = 2)) AS total_business_types, ( SELECT count(*) AS count FROM public.gbp_categories WHERE (gbp_categories.level = 3)) AS total_google_categories, ( SELECT count(*) AS count FROM public.gbp_categories) AS total_rows; ALTER TABLE public.category_summary OWNER TO scraper; -- -- Name: category_tree_stats; Type: VIEW; Schema: public; Owner: scraper -- CREATE VIEW public.category_tree_stats AS SELECT gbp_categories.level, count(*) AS count, count(*) FILTER (WHERE (gbp_categories.level = 1)) AS sectors, count(*) FILTER (WHERE (gbp_categories.level = 2)) AS business_types, count(*) FILTER (WHERE (gbp_categories.level = 3)) AS google_categories FROM public.gbp_categories GROUP BY gbp_categories.level ORDER BY gbp_categories.level; ALTER TABLE public.category_tree_stats OWNER TO scraper; -- -- Name: crash_reports; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.crash_reports ( crash_id uuid DEFAULT gen_random_uuid() NOT NULL, job_id uuid, created_at timestamp without time zone DEFAULT now() NOT NULL, crash_type character varying(50) NOT NULL, error_message text, state jsonb NOT NULL, metrics_history jsonb, logs_before_crash jsonb, analysis jsonb, screenshot_url text, dom_snapshot_id uuid ); ALTER TABLE public.crash_reports OWNER TO scraper; -- -- Name: gbp_categories_new_id_seq; Type: SEQUENCE; Schema: public; Owner: scraper -- CREATE SEQUENCE public.gbp_categories_new_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.gbp_categories_new_id_seq OWNER TO scraper; -- -- Name: gbp_categories_new_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: scraper -- ALTER SEQUENCE public.gbp_categories_new_id_seq OWNED BY public.gbp_categories.id; -- -- Name: gbp_category_levels; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.gbp_category_levels ( level integer NOT NULL, name character varying(50) NOT NULL, description character varying(255) ); ALTER TABLE public.gbp_category_levels OWNER TO scraper; -- -- Name: jobs; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.jobs ( job_id uuid DEFAULT gen_random_uuid() NOT NULL, status character varying(20) DEFAULT 'pending'::character varying NOT NULL, url text NOT NULL, webhook_url text, webhook_secret text, created_at timestamp without time zone DEFAULT now() NOT NULL, started_at timestamp without time zone, completed_at timestamp without time zone, reviews_count integer, reviews_data jsonb, scrape_time real, error_message text, metadata jsonb, total_reviews integer, scrape_logs jsonb, updated_at timestamp without time zone, review_topics jsonb, session_fingerprint jsonb, metrics_history jsonb, requester_client_id character varying(255), requester_source character varying(100), scrape_purpose character varying(50), requester_metadata jsonb, batch_id uuid, batch_index integer, job_type character varying(50) DEFAULT 'google_reviews'::character varying, scraper_version character varying(50), scraper_variant character varying(20), priority integer DEFAULT 0, callback_url text, callback_status character varying(20), callback_sent_at timestamp without time zone, callback_attempts integer DEFAULT 0, result_summary jsonb, business_name character varying(500), business_category character varying(255), business_address text, business_rating numeric(3,2), gbp_category_id integer, gbp_category_path public.ltree, category_resolution_method character varying(20), business_category_source character varying(20), CONSTRAINT valid_batch_index CHECK (((batch_index IS NULL) OR (batch_index > 0))), CONSTRAINT valid_callback_status CHECK (((callback_status IS NULL) OR ((callback_status)::text = ANY ((ARRAY['pending'::character varying, 'sent'::character varying, 'failed'::character varying])::text[])))), CONSTRAINT valid_priority CHECK (((priority >= 0) AND (priority <= 2))), CONSTRAINT valid_scrape_purpose CHECK (((scrape_purpose IS NULL) OR ((scrape_purpose)::text = ANY ((ARRAY['client_report'::character varying, 'prospect_screening'::character varying, 'market_research'::character varying])::text[])))), CONSTRAINT valid_scraper_variant CHECK (((scraper_variant IS NULL) OR ((scraper_variant)::text = ANY ((ARRAY['stable'::character varying, 'beta'::character varying, 'canary'::character varying])::text[])))), CONSTRAINT valid_status CHECK (((status)::text = ANY ((ARRAY['pending'::character varying, 'running'::character varying, 'completed'::character varying, 'failed'::character varying, 'cancelled'::character varying, 'partial'::character varying])::text[]))) ); ALTER TABLE public.jobs OWNER TO scraper; -- -- Name: COLUMN jobs.requester_client_id; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.requester_client_id IS 'Client identifier from requesting platform (e.g., "veritas_client_123")'; -- -- Name: COLUMN jobs.requester_source; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.requester_source IS 'Source platform that submitted the job (e.g., "veritasreview.com")'; -- -- Name: COLUMN jobs.scrape_purpose; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.scrape_purpose IS 'Purpose of scrape: "client_report", "prospect_screening", "market_research"'; -- -- Name: COLUMN jobs.requester_metadata; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.requester_metadata IS 'Flexible JSONB for requester-specific metadata (pass-through data)'; -- -- Name: COLUMN jobs.batch_id; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.batch_id IS 'UUID linking to batches table (NULL for standalone jobs)'; -- -- Name: COLUMN jobs.batch_index; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.batch_index IS 'Position in batch (1-indexed), NULL for standalone jobs'; -- -- Name: COLUMN jobs.job_type; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.job_type IS 'Job type for multi-scraper support (default: "google_reviews")'; -- -- Name: COLUMN jobs.scraper_version; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.scraper_version IS 'Scraper version that processed this job (e.g., "1.0.0")'; -- -- Name: COLUMN jobs.scraper_variant; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.scraper_variant IS 'Deployment variant: "stable", "beta", or "canary"'; -- -- Name: COLUMN jobs.priority; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.priority IS 'Queue priority: 0=normal (default), 1=high, 2=urgent'; -- -- Name: COLUMN jobs.callback_url; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.callback_url IS 'Webhook URL for job completion callbacks'; -- -- Name: COLUMN jobs.callback_status; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.callback_status IS 'Callback delivery status: "pending", "sent", "failed"'; -- -- Name: COLUMN jobs.callback_sent_at; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.callback_sent_at IS 'Timestamp when callback was successfully delivered'; -- -- Name: COLUMN jobs.callback_attempts; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.callback_attempts IS 'Number of callback delivery attempts (for retry tracking)'; -- -- Name: COLUMN jobs.result_summary; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.result_summary IS 'JSONB summary for dashboards: review counts, ratings, sentiment breakdown'; -- -- Name: COLUMN jobs.gbp_category_id; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.gbp_category_id IS 'FK to gbp_categories - the resolved deepest taxonomy node'; -- -- Name: COLUMN jobs.gbp_category_path; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.gbp_category_path IS 'ltree path for the resolved category (e.g., Retail.Stores.Toy_store)'; -- -- Name: COLUMN jobs.category_resolution_method; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.category_resolution_method IS 'How category was resolved: exact (from Google), fuzzy (trigram match), llm (LLM matched), hierarchical (LLM walked tree)'; -- -- Name: COLUMN jobs.business_category_source; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.jobs.business_category_source IS 'Where business category originated: google (scraped from Maps) or inferred (LLM inferred from name)'; -- -- Name: scraper_registry; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.scraper_registry ( id uuid DEFAULT gen_random_uuid() NOT NULL, job_type character varying(50) NOT NULL, version character varying(50) NOT NULL, variant character varying(20) NOT NULL, module_path character varying(255) NOT NULL, function_name character varying(100) NOT NULL, is_default boolean DEFAULT false, traffic_pct integer DEFAULT 0, min_priority integer DEFAULT 0, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, deprecated_at timestamp without time zone, config jsonb, CONSTRAINT valid_traffic_pct CHECK (((traffic_pct >= 0) AND (traffic_pct <= 100))), CONSTRAINT valid_variant CHECK (((variant)::text = ANY ((ARRAY['stable'::character varying, 'beta'::character varying, 'canary'::character varying])::text[]))) ); ALTER TABLE public.scraper_registry OWNER TO scraper; -- -- Name: TABLE scraper_registry; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON TABLE public.scraper_registry IS 'Registry of available scraper implementations with A/B testing and routing support'; -- -- Name: COLUMN scraper_registry.job_type; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.scraper_registry.job_type IS 'Type of scraping job (e.g., google_reviews, yelp_reviews)'; -- -- Name: COLUMN scraper_registry.version; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.scraper_registry.version IS 'Semantic version of the scraper implementation'; -- -- Name: COLUMN scraper_registry.variant; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.scraper_registry.variant IS 'Release channel: stable (production), beta (pre-release testing), canary (experimental)'; -- -- Name: COLUMN scraper_registry.traffic_pct; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.scraper_registry.traffic_pct IS 'Percentage of traffic to route to this version (0-100). Sum should equal 100 per job_type/variant.'; -- -- Name: COLUMN scraper_registry.min_priority; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.scraper_registry.min_priority IS 'Minimum job priority required to use this scraper. Allows reserving fast scrapers for urgent jobs.'; -- -- Name: COLUMN scraper_registry.config; Type: COMMENT; Schema: public; Owner: scraper -- COMMENT ON COLUMN public.scraper_registry.config IS 'JSONB configuration specific to this scraper version (rate limits, timeouts, feature flags)'; -- -- Name: webhook_attempts; Type: TABLE; Schema: public; Owner: scraper -- CREATE TABLE public.webhook_attempts ( id integer NOT NULL, job_id uuid NOT NULL, attempt_number integer NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, success boolean NOT NULL, status_code integer, error_message text, response_time_ms real ); ALTER TABLE public.webhook_attempts OWNER TO scraper; -- -- Name: webhook_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: scraper -- CREATE SEQUENCE public.webhook_attempts_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.webhook_attempts_id_seq OWNER TO scraper; -- -- Name: webhook_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: scraper -- ALTER SEQUENCE public.webhook_attempts_id_seq OWNED BY public.webhook_attempts.id; -- -- Name: business_taxonomy_map id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.business_taxonomy_map ALTER COLUMN id SET DEFAULT nextval('pipeline.business_taxonomy_map_id_seq'::regclass); -- -- Name: detected_spans_v2 id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.detected_spans_v2 ALTER COLUMN id SET DEFAULT nextval('pipeline.detected_spans_v2_id_seq'::regclass); -- -- Name: fact_timeseries id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.fact_timeseries ALTER COLUMN id SET DEFAULT nextval('pipeline.fact_timeseries_id_seq'::regclass); -- -- Name: issue_events id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_events ALTER COLUMN id SET DEFAULT nextval('pipeline.issue_events_id_seq'::regclass); -- -- Name: issue_spans id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_spans ALTER COLUMN id SET DEFAULT nextval('pipeline.issue_spans_id_seq'::regclass); -- -- Name: issues id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issues ALTER COLUMN id SET DEFAULT nextval('pipeline.issues_id_seq'::regclass); -- -- Name: review_spans id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.review_spans ALTER COLUMN id SET DEFAULT nextval('pipeline.review_spans_id_seq'::regclass); -- -- Name: reviews_enriched id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_enriched ALTER COLUMN id SET DEFAULT nextval('pipeline.reviews_enriched_id_seq'::regclass); -- -- Name: reviews_raw id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_raw ALTER COLUMN id SET DEFAULT nextval('pipeline.reviews_raw_id_seq'::regclass); -- -- Name: urt_taxonomy id; Type: DEFAULT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_taxonomy ALTER COLUMN id SET DEFAULT nextval('pipeline.urt_taxonomy_id_seq'::regclass); -- -- Name: _migrations id; Type: DEFAULT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public._migrations ALTER COLUMN id SET DEFAULT nextval('public._migrations_id_seq'::regclass); -- -- Name: canary_results id; Type: DEFAULT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.canary_results ALTER COLUMN id SET DEFAULT nextval('public.canary_results_id_seq'::regclass); -- -- Name: gbp_categories id; Type: DEFAULT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.gbp_categories ALTER COLUMN id SET DEFAULT nextval('public.gbp_categories_new_id_seq'::regclass); -- -- Name: webhook_attempts id; Type: DEFAULT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.webhook_attempts ALTER COLUMN id SET DEFAULT nextval('public.webhook_attempts_id_seq'::regclass); -- -- Data for Name: business_taxonomy_map; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.business_taxonomy_map (id, business_id, place_id, gbp_path, sector_code, assigned_at, assigned_by) FROM stdin; 1 Go Karts Mar Menor \N Entertainment.GoKarts ENTERTAINMENT 2026-01-31 02:02:29.165328 manual 3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas \N Automotive.CarRental AUTOMOTIVE 2026-01-31 02:02:29.165328 manual 4 Fika \N Food_Dining.Cafe FOOD_DINING 2026-01-31 02:02:29.165328 manual 5 Jugueterias Nikki \N Retail.Stores.Toy_store RETAIL 2026-01-31 03:31:15.210543 manual 6 13 Islas \N Home_Services.Plumbing.Plumber HOME_SERVICES 2026-01-31 03:31:15.210543 manual 7 Pura Vida Hostel \N Travel_Hospitality.Hotels.Hostel HOSPITALITY 2026-01-31 03:31:15.210543 manual 2 Soho Club \N Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2026-01-31 02:02:29.165328 manual 8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje \N Healthcare.Clinics.Specialized_clinic HEALTHCARE 2026-01-31 03:31:15.210543 manual \. -- -- Data for Name: detected_spans_v2; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.detected_spans_v2 (id, job_id, business_id, review_id, gbp_path, sector_code, config_version, primitive, valence, intensity, detail, mode, confidence, span_text, span_start, span_end, unmapped_keywords, entity, entity_type, created_at, model, raw_response, review_hash, language, run_id) FROM stdin; 5779 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 a great memory for everyone. 134 157 \N \N \N 2026-01-31 16:45:15.337328 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "The kart track is in great condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "had a lot of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "a great memory for everyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 0b8b3618e93d74d2 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5780 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Friendly helpful service guiding autistic son 0 42 \N \N \N 2026-01-31 16:45:20.503327 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "he absolutely loved it", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "we went back a week later", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 5781 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 he absolutely loved it 85 106 \N \N \N 2026-01-31 16:45:20.509784 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "he absolutely loved it", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "we went back a week later", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 5782 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT + 3 3 \N 0.90 we went back a week later 118 143 \N \N \N 2026-01-31 16:45:20.511531 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "he absolutely loved it", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "we went back a week later", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 5783 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 Timing was excellent as we had the course to ourselves 145 189 \N \N \N 2026-01-31 16:45:20.513427 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "he absolutely loved it", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "we went back a week later", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 5784 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Highly recommend it for a bit of fun. 196 227 \N \N \N 2026-01-31 16:45:25.031929 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 227, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 54}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 115 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 It was a bit stressful looking for the meeting poi... 0 50 \N \N \N 2026-01-31 02:05:46.984321 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5785 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 2 3 \N 0.80 reasonable cost and a good fun track with good karts. 85 126 \N \N \N 2026-01-31 16:45:25.035559 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 227, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 54}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 5786 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 2 3 \N 0.80 Nice roof terrace for spectators and a cafe/bar for food & drinks. 128 174 \N \N \N 2026-01-31 16:45:25.037788 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 227, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 54}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 5787 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 2 3 \N 0.80 Had a great time and really enjoyed our race. 54 85 \N \N \N 2026-01-31 16:45:25.039416 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 227, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 54}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 5788 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I would highly recommend a few races here 300 335 \N \N \N 2026-01-31 16:45:30.999347 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 335, "evidence": "I would highly recommend a few races here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "The atmosphere is very welcoming and authentic", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "well kept and unique track which is a pleasure to race on", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 383, "evidence": "superbly priced", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 368}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 5789 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 The atmosphere is very welcoming and authentic 228 263 \N \N \N 2026-01-31 16:45:31.002203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 335, "evidence": "I would highly recommend a few races here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "The atmosphere is very welcoming and authentic", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "well kept and unique track which is a pleasure to race on", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 383, "evidence": "superbly priced", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 368}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 116 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 We booked a car through their system 2 weeks befor... 0 50 {general} \N \N 2026-01-31 02:05:46.984843 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 117 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 First time using this company. Really really happy... 0 50 \N \N \N 2026-01-31 02:05:46.985372 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5790 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 well kept and unique track which is a pleasure to race on 56 97 \N \N \N 2026-01-31 16:45:31.004154 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 335, "evidence": "I would highly recommend a few races here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "The atmosphere is very welcoming and authentic", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "well kept and unique track which is a pleasure to race on", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 383, "evidence": "superbly priced", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 368}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 5791 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 amazing staff there getting you on the track quickly and efficiently 118 162 \N \N \N 2026-01-31 16:45:31.006029 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 335, "evidence": "I would highly recommend a few races here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "The atmosphere is very welcoming and authentic", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "well kept and unique track which is a pleasure to race on", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 383, "evidence": "superbly priced", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 368}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 5792 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 superbly priced 368 383 \N \N \N 2026-01-31 16:45:31.007645 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 335, "evidence": "I would highly recommend a few races here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "The atmosphere is very welcoming and authentic", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "well kept and unique track which is a pleasure to race on", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 383, "evidence": "superbly priced", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 368}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 5793 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 2 3 \N 0.90 Great venue, good customer service. 0 30 \N \N \N 2026-01-31 16:45:35.654991 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great venue, good customer service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Some of the younger staff speaks English well.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "accessibility by bike is good as it has a new bike lane going right by the track.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 174}], "unmapped": []} c0fc88c16fad474e en a510c278-87b9-45f4-9d0a-e60ff4f30662 5794 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION + 2 2 \N 0.80 Some of the younger staff speaks English well. 31 66 \N \N \N 2026-01-31 16:45:35.657812 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great venue, good customer service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Some of the younger staff speaks English well.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "accessibility by bike is good as it has a new bike lane going right by the track.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 174}], "unmapped": []} c0fc88c16fad474e en a510c278-87b9-45f4-9d0a-e60ff4f30662 5795 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 2 3 \N 0.90 accessibility by bike is good as it has a new bike lane going right by the track. 174 227 \N \N \N 2026-01-31 16:45:35.660037 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great venue, good customer service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Some of the younger staff speaks English well.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "accessibility by bike is good as it has a new bike lane going right by the track.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 174}], "unmapped": []} c0fc88c16fad474e en a510c278-87b9-45f4-9d0a-e60ff4f30662 201 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 3 \N 0.90 greeted me with a smile 66 90 \N \N \N 2026-01-31 02:18:56.152798 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "mixed", "end_char": 207, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 247, "evidence": "the shuttle to the rental is not that easy to find", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 207}], "unmapped": []} 3da870696f2537e9 auto b27672bb-0cce-4196-96cf-0a52e939a094 202 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMFORT + 2 3 \N 0.90 Very comfortable ride 370 392 \N \N \N 2026-01-31 02:18:56.157554 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "mixed", "end_char": 207, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 247, "evidence": "the shuttle to the rental is not that easy to find", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 207}], "unmapped": []} 3da870696f2537e9 auto b27672bb-0cce-4196-96cf-0a52e939a094 203 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY ± 2 2 \N 0.70 need to wait for 2+ hours if the check in is understaffed 164 207 \N \N \N 2026-01-31 02:18:56.160304 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "mixed", "end_char": 207, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 247, "evidence": "the shuttle to the rental is not that easy to find", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 207}], "unmapped": []} 3da870696f2537e9 auto b27672bb-0cce-4196-96cf-0a52e939a094 255 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY - 3 3 \N 0.90 we had to pay in the end 180€ for 3 days instead of 50€ 215 253 \N \N \N 2026-01-31 02:19:52.060012 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 283, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 215}], "unmapped": []} f5d844a0693bd225 auto b27672bb-0cce-4196-96cf-0a52e939a094 204 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY - 2 2 \N 0.70 the shuttle to the rental is not that easy to find 207 247 \N \N \N 2026-01-31 02:18:56.162343 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "mixed", "end_char": 207, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 247, "evidence": "the shuttle to the rental is not that easy to find", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 207}], "unmapped": []} 3da870696f2537e9 auto b27672bb-0cce-4196-96cf-0a52e939a094 205 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY - 2 3 \N 0.90 the do not stick to their own contract and overcharge you substantially 164 210 \N \N \N 2026-01-31 02:18:58.97715 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "the do not stick to their own contract and overcharge you substantially", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 252, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 232}], "unmapped": []} 54d43b8b7fa59c8e auto b27672bb-0cce-4196-96cf-0a52e939a094 1697 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMxZ3BHcklBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 close to the beach 41 58 \N \N \N 2026-01-31 03:46:31.314459 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Best hostel in GC for making friends", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "close to the beach", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}], "unmapped": []} 81a733a03edcd1ff auto 56bb22c1-8631-4285-b549-8fa7c9944462 206 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 2 3 \N 0.90 I CONSIDER AS CHEATING!!! 232 252 \N \N \N 2026-01-31 02:18:58.979148 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "the do not stick to their own contract and overcharge you substantially", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 252, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 232}], "unmapped": []} 54d43b8b7fa59c8e auto b27672bb-0cce-4196-96cf-0a52e939a094 207 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.90 Negative atmosphere in the office people are not happy with service. 43 90 \N \N \N 2026-01-31 02:19:03.665096 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "Received damaged car.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "Waited 25 minutes for him.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Overall Experience", "evidence": "Choose a different company!", "confidence": 0.7}]} 16db11834949d02f auto b27672bb-0cce-4196-96cf-0a52e939a094 208 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 Received damaged car. 118 138 \N \N \N 2026-01-31 02:19:03.667916 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "Received damaged car.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "Waited 25 minutes for him.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Overall Experience", "evidence": "Choose a different company!", "confidence": 0.7}]} 16db11834949d02f auto b27672bb-0cce-4196-96cf-0a52e939a094 209 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY - 2 3 \N 0.90 Couldn't find any of this info in terms and conditions. 164 205 \N \N \N 2026-01-31 02:19:03.671489 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "Received damaged car.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "Waited 25 minutes for him.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Overall Experience", "evidence": "Choose a different company!", "confidence": 0.7}]} 16db11834949d02f auto b27672bb-0cce-4196-96cf-0a52e939a094 1464 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Buen servicio y buena gente 68 92 \N \N \N 2026-01-31 03:42:41.144209 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "destaco por sobre todo la calidez y la atención", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Buen servicio y buena gente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}], "unmapped": []} 5a703a09341e7379 auto 56bb22c1-8631-4285-b549-8fa7c9944462 210 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 3 \N 0.90 Waited 25 minutes for him. 290 310 \N \N \N 2026-01-31 02:19:03.674139 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "Received damaged car.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "Waited 25 minutes for him.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Overall Experience", "evidence": "Choose a different company!", "confidence": 0.7}]} 16db11834949d02f auto b27672bb-0cce-4196-96cf-0a52e939a094 4505 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZMHJTQXdRRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 buen precio 10 20 \N \N \N 2026-01-31 13:43:31.766889 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 8, "evidence": "Variedad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1da0bfe3a536a833 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 211 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.70 Choose a different company! \N \N {"Overall Experience"} \N \N 2026-01-31 02:19:03.676704 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "Received damaged car.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "Waited 25 minutes for him.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Overall Experience", "evidence": "Choose a different company!", "confidence": 0.7}]} 16db11834949d02f auto b27672bb-0cce-4196-96cf-0a52e939a094 212 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 3 3 \N 0.90 "Left at the airport with no way of contacting." 0 41 \N \N \N 2026-01-31 02:19:08.886016 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "\\"Left at the airport with no way of contacting.\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "\\"we didn’t receive a single apology either over the phone or at the office\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "\\"Presumably this is how they make their money – it is nothing short of a scam.\\"", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 135, "evidence": "\\"Had to book a €50 taxi to Maspalomas\\"", "intensity": 5, "primitive": "FRICTION", "confidence": 0.8, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "\\"Car given was full of dents and scratches.\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 305}], "unmapped": []} 79e0d53157f1e602 auto b27672bb-0cce-4196-96cf-0a52e939a094 213 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 "we didn’t receive a single apology either over the phone or at the office" 205 246 \N \N \N 2026-01-31 02:19:08.889475 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "\\"Left at the airport with no way of contacting.\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "\\"we didn’t receive a single apology either over the phone or at the office\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "\\"Presumably this is how they make their money – it is nothing short of a scam.\\"", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 135, "evidence": "\\"Had to book a €50 taxi to Maspalomas\\"", "intensity": 5, "primitive": "FRICTION", "confidence": 0.8, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "\\"Car given was full of dents and scratches.\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 305}], "unmapped": []} 79e0d53157f1e602 auto b27672bb-0cce-4196-96cf-0a52e939a094 214 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY - 3 3 \N 0.90 "Presumably this is how they make their money – it is nothing short of a scam." 370 426 \N \N \N 2026-01-31 02:19:08.892429 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "\\"Left at the airport with no way of contacting.\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "\\"we didn’t receive a single apology either over the phone or at the office\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "\\"Presumably this is how they make their money – it is nothing short of a scam.\\"", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 135, "evidence": "\\"Had to book a €50 taxi to Maspalomas\\"", "intensity": 5, "primitive": "FRICTION", "confidence": 0.8, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "\\"Car given was full of dents and scratches.\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 305}], "unmapped": []} 79e0d53157f1e602 auto b27672bb-0cce-4196-96cf-0a52e939a094 215 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 3 3 \N 0.80 "Had to book a €50 taxi to Maspalomas" 107 135 \N \N \N 2026-01-31 02:19:08.894492 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "\\"Left at the airport with no way of contacting.\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "\\"we didn’t receive a single apology either over the phone or at the office\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "\\"Presumably this is how they make their money – it is nothing short of a scam.\\"", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 135, "evidence": "\\"Had to book a €50 taxi to Maspalomas\\"", "intensity": 5, "primitive": "FRICTION", "confidence": 0.8, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "\\"Car given was full of dents and scratches.\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 305}], "unmapped": []} 79e0d53157f1e602 auto b27672bb-0cce-4196-96cf-0a52e939a094 216 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS - 3 3 \N 0.80 "Car given was full of dents and scratches." 305 335 \N \N \N 2026-01-31 02:19:08.897356 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "\\"Left at the airport with no way of contacting.\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "\\"we didn’t receive a single apology either over the phone or at the office\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "\\"Presumably this is how they make their money – it is nothing short of a scam.\\"", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 135, "evidence": "\\"Had to book a €50 taxi to Maspalomas\\"", "intensity": 5, "primitive": "FRICTION", "confidence": 0.8, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "\\"Car given was full of dents and scratches.\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 305}], "unmapped": []} 79e0d53157f1e602 auto b27672bb-0cce-4196-96cf-0a52e939a094 217 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 2 3 \N 0.90 pickup was easy and so was the return 0 30 \N \N \N 2026-01-31 02:19:13.906435 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "mixed", "end_char": 241, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "we will book again directly with them", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 284}], "unmapped": []} 245b0ec00d5b36da auto b27672bb-0cce-4196-96cf-0a52e939a094 218 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 2 3 \N 0.90 they took good care of us 92 113 \N \N \N 2026-01-31 02:19:13.909302 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "mixed", "end_char": 241, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "we will book again directly with them", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 284}], "unmapped": []} 245b0ec00d5b36da auto b27672bb-0cce-4196-96cf-0a52e939a094 219 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY ± 2 2 \N 0.80 booking directly with them would have been cheaper 204 241 \N \N \N 2026-01-31 02:19:13.91208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "mixed", "end_char": 241, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "we will book again directly with them", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 284}], "unmapped": []} 245b0ec00d5b36da auto b27672bb-0cce-4196-96cf-0a52e939a094 220 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 2 3 \N 0.90 The car was great, brand new with only 8 km driven with it 241 284 \N \N \N 2026-01-31 02:19:13.913772 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "mixed", "end_char": 241, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "we will book again directly with them", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 284}], "unmapped": []} 245b0ec00d5b36da auto b27672bb-0cce-4196-96cf-0a52e939a094 221 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT + 2 3 \N 0.90 we will book again directly with them 284 314 \N \N \N 2026-01-31 02:19:13.915469 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "mixed", "end_char": 241, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "we will book again directly with them", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 284}], "unmapped": []} 245b0ec00d5b36da auto b27672bb-0cce-4196-96cf-0a52e939a094 222 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 would definitely recommend them! 66 90 \N \N \N 2026-01-31 02:19:18.120156 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 129}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 169}], "unmapped": []} f5acd65bae451979 auto b27672bb-0cce-4196-96cf-0a52e939a094 223 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_LEVEL + 3 3 \N 0.90 Some of the cheapest prices for rental cars I found on GC. 90 129 \N \N \N 2026-01-31 02:19:18.121728 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 129}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 169}], "unmapped": []} f5acd65bae451979 auto b27672bb-0cce-4196-96cf-0a52e939a094 224 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Staff is super friendly (they speak English and Spanish fluently) 129 169 \N \N \N 2026-01-31 02:19:18.122707 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 129}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 169}], "unmapped": []} f5acd65bae451979 auto b27672bb-0cce-4196-96cf-0a52e939a094 1316 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkM3RmclZnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE - 3 3 \N 0.90 baja profesionalidad 25 46 \N \N \N 2026-01-31 03:39:54.154536 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 24, "evidence": "Sitio no recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 46, "evidence": "baja profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 25}], "unmapped": []} 2691ad57508d012b auto 22c559a8-fabc-4916-9961-bcbd61225266 225 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 got the keys quickly both times and return was also very unproblematic and quick. 169 221 \N \N \N 2026-01-31 02:19:18.123883 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 129}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 169}], "unmapped": []} f5acd65bae451979 auto b27672bb-0cce-4196-96cf-0a52e939a094 226 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 we had to cancel our 3rd party insurance and buy theirs 239 284 \N \N \N 2026-01-31 02:19:22.7576 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "we had to cancel our 3rd party insurance and buy theirs", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 507, "evidence": "They do not provide replacement services", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 648}, {"details": null, "valence": "negative", "end_char": 731, "evidence": "this isnt enough to recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 704}], "unmapped": [{"label": "Booking Issues", "evidence": "they should have more cars to pick up people", "confidence": 0.7}, {"label": "Car Issues", "evidence": "the car electrics went down twice on the motorway", "confidence": 0.8}]} 79edea0b3a29b7dc auto b27672bb-0cce-4196-96cf-0a52e939a094 227 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 They do not provide replacement services 474 507 \N \N \N 2026-01-31 02:19:22.75915 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "we had to cancel our 3rd party insurance and buy theirs", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 507, "evidence": "They do not provide replacement services", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 648}, {"details": null, "valence": "negative", "end_char": 731, "evidence": "this isnt enough to recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 704}], "unmapped": [{"label": "Booking Issues", "evidence": "they should have more cars to pick up people", "confidence": 0.7}, {"label": "Car Issues", "evidence": "the car electrics went down twice on the motorway", "confidence": 0.8}]} 79edea0b3a29b7dc auto b27672bb-0cce-4196-96cf-0a52e939a094 228 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 1 2 \N 0.80 they are very polite and helpful at the pick up point 648 688 \N \N \N 2026-01-31 02:19:22.760331 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "we had to cancel our 3rd party insurance and buy theirs", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 507, "evidence": "They do not provide replacement services", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 648}, {"details": null, "valence": "negative", "end_char": 731, "evidence": "this isnt enough to recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 704}], "unmapped": [{"label": "Booking Issues", "evidence": "they should have more cars to pick up people", "confidence": 0.7}, {"label": "Car Issues", "evidence": "the car electrics went down twice on the motorway", "confidence": 0.8}]} 79edea0b3a29b7dc auto b27672bb-0cce-4196-96cf-0a52e939a094 229 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 2 3 \N 0.90 this isnt enough to recommend them 704 731 \N \N \N 2026-01-31 02:19:22.76147 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "we had to cancel our 3rd party insurance and buy theirs", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 507, "evidence": "They do not provide replacement services", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 648}, {"details": null, "valence": "negative", "end_char": 731, "evidence": "this isnt enough to recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 704}], "unmapped": [{"label": "Booking Issues", "evidence": "they should have more cars to pick up people", "confidence": 0.7}, {"label": "Car Issues", "evidence": "the car electrics went down twice on the motorway", "confidence": 0.8}]} 79edea0b3a29b7dc auto b27672bb-0cce-4196-96cf-0a52e939a094 230 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.70 they should have more cars to pick up people \N \N {"Booking Issues"} \N \N 2026-01-31 02:19:22.762434 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "we had to cancel our 3rd party insurance and buy theirs", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 507, "evidence": "They do not provide replacement services", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 648}, {"details": null, "valence": "negative", "end_char": 731, "evidence": "this isnt enough to recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 704}], "unmapped": [{"label": "Booking Issues", "evidence": "they should have more cars to pick up people", "confidence": 0.7}, {"label": "Car Issues", "evidence": "the car electrics went down twice on the motorway", "confidence": 0.8}]} 79edea0b3a29b7dc auto b27672bb-0cce-4196-96cf-0a52e939a094 231 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.80 the car electrics went down twice on the motorway \N \N {"Car Issues"} \N \N 2026-01-31 02:19:22.763605 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "we had to cancel our 3rd party insurance and buy theirs", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 507, "evidence": "They do not provide replacement services", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 648}, {"details": null, "valence": "negative", "end_char": 731, "evidence": "this isnt enough to recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 704}], "unmapped": [{"label": "Booking Issues", "evidence": "they should have more cars to pick up people", "confidence": 0.7}, {"label": "Car Issues", "evidence": "the car electrics went down twice on the motorway", "confidence": 0.8}]} 79edea0b3a29b7dc auto b27672bb-0cce-4196-96cf-0a52e939a094 232 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS - 3 3 \N 0.90 "I’ve never seen a business so dedicated to fleecing customers." 0 61 \N \N \N 2026-01-31 02:19:27.412928 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 401, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "\\"I have filed a formal complaint but they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 569}], "unmapped": [{"label": "Shuttle Service Quality", "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "confidence": 0.7}]} c12c1e4a22b70c4d auto b27672bb-0cce-4196-96cf-0a52e939a094 233 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 3 3 \N 0.90 "It’s a total scam designed to catch people out." 138 174 \N \N \N 2026-01-31 02:19:27.414985 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 401, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "\\"I have filed a formal complaint but they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 569}], "unmapped": [{"label": "Shuttle Service Quality", "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "confidence": 0.7}]} c12c1e4a22b70c4d auto b27672bb-0cce-4196-96cf-0a52e939a094 234 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER - 3 3 \N 0.90 "the staff were incredibly aggressive." 370 401 \N \N \N 2026-01-31 02:19:27.416121 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 401, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "\\"I have filed a formal complaint but they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 569}], "unmapped": [{"label": "Shuttle Service Quality", "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "confidence": 0.7}]} c12c1e4a22b70c4d auto b27672bb-0cce-4196-96cf-0a52e939a094 235 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 "I have filed a formal complaint but they are just completely ignoring me." 569 617 \N \N \N 2026-01-31 02:19:27.41755 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 401, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "\\"I have filed a formal complaint but they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 569}], "unmapped": [{"label": "Shuttle Service Quality", "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "confidence": 0.7}]} c12c1e4a22b70c4d auto b27672bb-0cce-4196-96cf-0a52e939a094 236 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.70 "the shuttle bus is terrible so takes ages to pick up and drop off your car." \N \N {"Shuttle Service Quality"} \N \N 2026-01-31 02:19:27.41844 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 401, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "\\"I have filed a formal complaint but they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 569}], "unmapped": [{"label": "Shuttle Service Quality", "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "confidence": 0.7}]} c12c1e4a22b70c4d auto b27672bb-0cce-4196-96cf-0a52e939a094 237 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Recommend! 164 172 \N \N \N 2026-01-31 02:19:30.509892 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "The car was completely new - 1900km only!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 1880e20b367cfd0c auto b27672bb-0cce-4196-96cf-0a52e939a094 238 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Everything worked perfectly and smoothly. 85 118 \N \N \N 2026-01-31 02:19:30.514262 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "The car was completely new - 1900km only!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 1880e20b367cfd0c auto b27672bb-0cce-4196-96cf-0a52e939a094 239 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 The car was completely new - 1900km only! 66 102 \N \N \N 2026-01-31 02:19:30.51579 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "The car was completely new - 1900km only!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 1880e20b367cfd0c auto b27672bb-0cce-4196-96cf-0a52e939a094 240 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 2 \N 0.80 Pick up from airport was bad, vague instructions and phone was computer voice. 0 66 \N \N \N 2026-01-31 02:19:36.648065 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 558, "evidence": "Return was very quick and easy and shuttle back to airport was fast.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 509}], "unmapped": []} c8bd5bee6c99b558 auto b27672bb-0cce-4196-96cf-0a52e939a094 245 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 2 3 \N 0.90 This company is a scam based on my experience. 0 36 \N \N \N 2026-01-31 02:19:41.431351 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 331, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 218}], "unmapped": []} 9bd675cd5878616f auto b27672bb-0cce-4196-96cf-0a52e939a094 241 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.90 it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. 157 233 \N \N \N 2026-01-31 02:19:36.650486 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 558, "evidence": "Return was very quick and easy and shuttle back to airport was fast.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 509}], "unmapped": []} c8bd5bee6c99b558 auto b27672bb-0cce-4196-96cf-0a52e939a094 242 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 2 \N 0.80 they werent helpful just told me its on me if I want to do that 307 353 \N \N \N 2026-01-31 02:19:36.65351 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 558, "evidence": "Return was very quick and easy and shuttle back to airport was fast.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 509}], "unmapped": []} c8bd5bee6c99b558 auto b27672bb-0cce-4196-96cf-0a52e939a094 243 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 2 2 \N 0.70 The car was good and it was brand new. 474 507 \N \N \N 2026-01-31 02:19:36.655192 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 558, "evidence": "Return was very quick and easy and shuttle back to airport was fast.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 509}], "unmapped": []} c8bd5bee6c99b558 auto b27672bb-0cce-4196-96cf-0a52e939a094 244 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 2 \N 0.80 Return was very quick and easy and shuttle back to airport was fast. 509 558 \N \N \N 2026-01-31 02:19:36.656832 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 474}, {"details": null, "valence": "positive", "end_char": 558, "evidence": "Return was very quick and easy and shuttle back to airport was fast.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 509}], "unmapped": []} c8bd5bee6c99b558 auto b27672bb-0cce-4196-96cf-0a52e939a094 327 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 2 3 \N 0.90 Would use their services again. 100 126 \N \N \N 2026-01-31 02:21:25.596469 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "Would use their services again.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the car was available immediately.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the service was good", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 30be5513d83b1edf auto b27672bb-0cce-4196-96cf-0a52e939a094 118 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 We rented through the platform 'Doyouspain' which ... 0 50 \N \N \N 2026-01-31 02:05:46.985843 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 246 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS - 2 3 \N 0.90 They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. 37 138 \N \N \N 2026-01-31 02:19:41.434319 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 331, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 218}], "unmapped": []} 9bd675cd5878616f auto b27672bb-0cce-4196-96cf-0a52e939a094 247 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 I’ve contacted them multiple times with no response. 292 331 \N \N \N 2026-01-31 02:19:41.436022 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 331, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 218}], "unmapped": []} 9bd675cd5878616f auto b27672bb-0cce-4196-96cf-0a52e939a094 248 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. 218 284 \N \N \N 2026-01-31 02:19:41.437825 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 331, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 218}], "unmapped": []} 9bd675cd5878616f auto b27672bb-0cce-4196-96cf-0a52e939a094 249 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 3 3 \N 0.90 I've never encountered such disrespectful customer service and a complete lack of professionalism. 164 218 \N \N \N 2026-01-31 02:19:47.110418 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 218, "evidence": "I've never encountered such disrespectful customer service and a complete lack of professionalism.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 1076, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 1008}, {"details": null, "valence": "negative", "end_char": 1425, "evidence": "In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew).", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 1355}], "unmapped": []} 135b44d5f740a3df auto b27672bb-0cce-4196-96cf-0a52e939a094 5796 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 MANNER + 2 2 \N 0.85 Trato familiar 0 14 \N \N \N 2026-02-01 03:36:55.759388 gpt-4o-mini \N d196a039ef731a39 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 5797 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 NON_INFORMATIVE + 1 1 \N 0.50 Los niños disfrutaron 0 21 \N \N \N 2026-02-01 03:36:55.764612 gpt-4o-mini \N a89f1e1bcf2dac26 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 5798 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 AMBIANCE + 2 1 \N 0.75 Muy familiar 0 12 \N \N \N 2026-02-01 03:36:55.765092 gpt-4o-mini \N b71ddcb62beb6a3a \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 5799 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 UNMAPPED + 2 1 \N 0.50 Circuito impresionante 0 20 \N \N \N 2026-02-01 03:36:55.765551 gpt-4o-mini \N cb98541a969395a3 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 256 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 2 3 \N 0.90 Overall service experience was very good! 0 34 \N \N \N 2026-01-31 02:19:59.247045 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Overall service experience was very good!", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "car was clean and nice for the group!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 103, "evidence": "have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 49}], "unmapped": []} cadfd507574a10d2 auto b27672bb-0cce-4196-96cf-0a52e939a094 4588 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURjeDdUSHJ3RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.846869 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 250 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. 394 487 \N \N \N 2026-01-31 02:19:47.113403 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 218, "evidence": "I've never encountered such disrespectful customer service and a complete lack of professionalism.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 1076, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 1008}, {"details": null, "valence": "negative", "end_char": 1425, "evidence": "In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew).", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 1355}], "unmapped": []} 135b44d5f740a3df auto b27672bb-0cce-4196-96cf-0a52e939a094 251 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOGNITION - 3 3 \N 0.90 I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! 1008 1076 \N \N \N 2026-01-31 02:19:47.115267 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 218, "evidence": "I've never encountered such disrespectful customer service and a complete lack of professionalism.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 1076, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 1008}, {"details": null, "valence": "negative", "end_char": 1425, "evidence": "In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew).", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 1355}], "unmapped": []} 135b44d5f740a3df auto b27672bb-0cce-4196-96cf-0a52e939a094 252 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOVERY - 2 3 \N 0.70 In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). 1355 1425 \N \N \N 2026-01-31 02:19:47.116904 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 218, "evidence": "I've never encountered such disrespectful customer service and a complete lack of professionalism.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 1076, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 1008}, {"details": null, "valence": "negative", "end_char": 1425, "evidence": "In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew).", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 1355}], "unmapped": []} 135b44d5f740a3df auto b27672bb-0cce-4196-96cf-0a52e939a094 253 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY - 2 3 \N 0.90 they wanted 130€ for the second reservation 249 283 \N \N \N 2026-01-31 02:19:52.051313 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 283, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 215}], "unmapped": []} f5d844a0693bd225 auto b27672bb-0cce-4196-96cf-0a52e939a094 254 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 very slowly service, we had to wait in the queue for over 1,5 hours 197 239 \N \N \N 2026-01-31 02:19:52.056735 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 283, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 215}], "unmapped": []} f5d844a0693bd225 auto b27672bb-0cce-4196-96cf-0a52e939a094 4589 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNjMmIzT2R3EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.848418 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 257 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 2 3 \N 0.90 car was clean and nice for the group! 113 143 \N \N \N 2026-01-31 02:19:59.249287 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Overall service experience was very good!", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "car was clean and nice for the group!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 103, "evidence": "have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 49}], "unmapped": []} cadfd507574a10d2 auto b27672bb-0cce-4196-96cf-0a52e939a094 258 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION ± 2 2 \N 0.70 have the instructions for shuttle pickup at the airport more clearly instructed / marked. 49 103 \N \N \N 2026-01-31 02:19:59.251377 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Overall service experience was very good!", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "car was clean and nice for the group!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 103, "evidence": "have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 49}], "unmapped": []} cadfd507574a10d2 auto b27672bb-0cce-4196-96cf-0a52e939a094 259 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 3 3 \N 0.90 Great service 0 12 \N \N \N 2026-01-31 02:20:03.180421 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Pick up and return was simply and very quick", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "I paid £186 deposit and got it back immediately on returning the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 42}], "unmapped": []} 2f11009890579d68 auto b27672bb-0cce-4196-96cf-0a52e939a094 260 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 Pick up and return was simply and very quick 56 83 \N \N \N 2026-01-31 02:20:03.184588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Pick up and return was simply and very quick", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "I paid £186 deposit and got it back immediately on returning the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 42}], "unmapped": []} 2f11009890579d68 auto b27672bb-0cce-4196-96cf-0a52e939a094 261 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 I paid £186 deposit and got it back immediately on returning the car 42 83 \N \N \N 2026-01-31 02:20:03.18628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Pick up and return was simply and very quick", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "I paid £186 deposit and got it back immediately on returning the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 42}], "unmapped": []} 2f11009890579d68 auto b27672bb-0cce-4196-96cf-0a52e939a094 5800 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 MANNER + 1 1 \N 0.70 trato 3 8 \N \N \N 2026-02-01 03:36:55.766196 gpt-4o-mini \N 69e052f553f18f72 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 5801 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 UNMAPPED + 3 1 \N 0.90 El mejor karting 0 17 {UNMAPPED} \N \N 2026-02-01 03:36:55.766877 gpt-4o-mini \N 0579b3b87c083fd4 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 5802 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 UNMAPPED + 1 1 \N 0.50 Los mejores. 0 12 \N \N \N 2026-02-01 03:36:55.767344 gpt-4o-mini \N 7ced5761708d49e4 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 262 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 3 3 \N 0.90 there was NO CAR for us! 174 192 \N \N \N 2026-01-31 02:20:06.917669 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 192, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 270}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": []} 64f07f956ad0412b auto b27672bb-0cce-4196-96cf-0a52e939a094 263 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. 270 319 \N \N \N 2026-01-31 02:20:06.920876 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 192, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 270}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": []} 64f07f956ad0412b auto b27672bb-0cce-4196-96cf-0a52e939a094 264 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 3 3 \N 0.90 the second woman demanded that we delete the photos and started threatening us with the police. 469 516 \N \N \N 2026-01-31 02:20:06.922737 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 192, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 270}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": []} 64f07f956ad0412b auto b27672bb-0cce-4196-96cf-0a52e939a094 265 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 highly recommend it to others 118 144 \N \N \N 2026-01-31 02:20:11.236698 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Great prices and no hassle return of the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "brand new with 400km on it", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 173}], "unmapped": []} 9263f972246d53d7 auto b27672bb-0cce-4196-96cf-0a52e939a094 266 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY + 3 3 \N 0.90 no hidden charges 102 117 \N \N \N 2026-01-31 02:20:11.238826 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Great prices and no hassle return of the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "brand new with 400km on it", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 173}], "unmapped": []} 9263f972246d53d7 auto b27672bb-0cce-4196-96cf-0a52e939a094 267 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Great prices and no hassle return of the car 43 83 \N \N \N 2026-01-31 02:20:11.242051 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Great prices and no hassle return of the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "brand new with 400km on it", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 173}], "unmapped": []} 9263f972246d53d7 auto b27672bb-0cce-4196-96cf-0a52e939a094 5803 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 EFFECTIVENESS + 3 2 \N 0.90 Circuito estupendo 0 18 \N \N \N 2026-02-01 03:36:55.76771 gpt-4o-mini \N 78eea57ad0b4786f \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 5804 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 ATTENTIVENESS + 2 2 \N 0.85 muy atentos 19 31 \N \N \N 2026-02-01 03:36:55.768256 gpt-4o-mini \N 78eea57ad0b4786f \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 268 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.80 brand new with 400km on it 173 197 \N \N \N 2026-01-31 02:20:11.243413 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Great prices and no hassle return of the car", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "brand new with 400km on it", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 173}], "unmapped": []} 9263f972246d53d7 auto b27672bb-0cce-4196-96cf-0a52e939a094 1317 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQtanRYd0FnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Muy contenta con el resultado 0 30 \N \N \N 2026-01-31 03:39:55.351992 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy contenta con el resultado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} fb06f2b1a528f545 auto 22c559a8-fabc-4916-9961-bcbd61225266 269 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 2 3 \N 0.90 if we would book again, it would be directly with Clickrent! 157 197 \N \N \N 2026-01-31 02:20:15.638206 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 199}], "unmapped": [{"label": "Platform Issue", "evidence": "Doyouspain which charges an extra 35 euro for filling the full tank...it is the platform.", "confidence": 0.7}, {"label": "Negative Reviews", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain", "confidence": 0.7}]} 9489f1e7f8184143 auto b27672bb-0cce-4196-96cf-0a52e939a094 270 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 3 \N 0.90 helpful smiley staff! 199 220 \N \N \N 2026-01-31 02:20:15.641907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 199}], "unmapped": [{"label": "Platform Issue", "evidence": "Doyouspain which charges an extra 35 euro for filling the full tank...it is the platform.", "confidence": 0.7}, {"label": "Negative Reviews", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain", "confidence": 0.7}]} 9489f1e7f8184143 auto b27672bb-0cce-4196-96cf-0a52e939a094 271 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.70 Doyouspain which charges an extra 35 euro for filling the full tank...it is the platform. \N \N {"Platform Issue"} \N \N 2026-01-31 02:20:15.643423 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 199}], "unmapped": [{"label": "Platform Issue", "evidence": "Doyouspain which charges an extra 35 euro for filling the full tank...it is the platform.", "confidence": 0.7}, {"label": "Negative Reviews", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain", "confidence": 0.7}]} 9489f1e7f8184143 auto b27672bb-0cce-4196-96cf-0a52e939a094 272 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.70 the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain \N \N {"Negative Reviews"} \N \N 2026-01-31 02:20:15.644862 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 199}], "unmapped": [{"label": "Platform Issue", "evidence": "Doyouspain which charges an extra 35 euro for filling the full tank...it is the platform.", "confidence": 0.7}, {"label": "Negative Reviews", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain", "confidence": 0.7}]} 9489f1e7f8184143 auto b27672bb-0cce-4196-96cf-0a52e939a094 273 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 2 \N 0.90 a good deal from ClickRent for a car with full insurance during black Friday 16 78 \N \N \N 2026-01-31 02:20:19.383042 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "a good deal from ClickRent for a car with full insurance during black Friday", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 80}], "unmapped": [{"label": "Shuttle Service Awareness", "evidence": "we didn't know there was a shuttle on the pickup and we had to walk there from the airport", "confidence": 0.7}]} 4a53d288684fc094 auto b27672bb-0cce-4196-96cf-0a52e939a094 119 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 We got a good deal from ClickRent for a car with f... 0 50 \N \N \N 2026-01-31 02:05:46.986335 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 274 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 2 2 \N 0.90 Everything went smooth; pickup, drop-off and the refund of the deposit for the gas 80 139 \N \N \N 2026-01-31 02:20:19.3876 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "a good deal from ClickRent for a car with full insurance during black Friday", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 80}], "unmapped": [{"label": "Shuttle Service Awareness", "evidence": "we didn't know there was a shuttle on the pickup and we had to walk there from the airport", "confidence": 0.7}]} 4a53d288684fc094 auto b27672bb-0cce-4196-96cf-0a52e939a094 432 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-60 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 the staff is super, kind and nice! 30 56 \N \N \N 2026-01-31 02:23:34.375658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 74, "evidence": "I highly recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "the staff is super, kind and nice!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything was very easy and fast", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 399fa7b785fa6730 auto b27672bb-0cce-4196-96cf-0a52e939a094 320 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY - 2 3 \N 0.90 Very difficoult to get to from the airport. 0 39 \N \N \N 2026-01-31 02:21:17.048441 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 39, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 39}], "unmapped": []} 7f74bf89051c8079 auto b27672bb-0cce-4196-96cf-0a52e939a094 275 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.70 we didn't know there was a shuttle on the pickup and we had to walk there from the airport \N \N {"Shuttle Service Awareness"} \N \N 2026-01-31 02:20:19.389283 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "a good deal from ClickRent for a car with full insurance during black Friday", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 80}], "unmapped": [{"label": "Shuttle Service Awareness", "evidence": "we didn't know there was a shuttle on the pickup and we had to walk there from the airport", "confidence": 0.7}]} 4a53d288684fc094 auto b27672bb-0cce-4196-96cf-0a52e939a094 5805 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 PRICE_LEVEL + 2 1 \N 0.80 Barato 0 6 \N \N \N 2026-02-01 03:36:55.768649 gpt-4o-mini \N 9f16b7d57801812a \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 276 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION - 2 2 \N 0.90 The instructions for the shuttle were too vague. 0 43 \N \N \N 2026-01-31 02:20:24.34086 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 348, "evidence": "Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "clean car, nice facilities", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 379}], "unmapped": []} 5b45f41aa062538f auto b27672bb-0cce-4196-96cf-0a52e939a094 5285 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 enseguida detectaron el problema y pusieron solución 82 118 \N \N \N 2026-01-31 15:10:00.721673 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "enseguida detectaron el problema y pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 152}], "unmapped": []} dd88136fd3a77fb7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 277 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION - 2 2 \N 0.90 we got a computer voice that we didnt understand 157 197 \N \N \N 2026-01-31 02:20:24.345757 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 348, "evidence": "Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "clean car, nice facilities", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 379}], "unmapped": []} 5b45f41aa062538f auto b27672bb-0cce-4196-96cf-0a52e939a094 278 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 2 3 \N 0.90 Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes. 265 348 \N \N \N 2026-01-31 02:20:24.347346 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 348, "evidence": "Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "clean car, nice facilities", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 379}], "unmapped": []} 5b45f41aa062538f auto b27672bb-0cce-4196-96cf-0a52e939a094 279 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 3 \N 0.90 Very friendly and helpful staff 350 377 \N \N \N 2026-01-31 02:20:24.349318 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 348, "evidence": "Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "clean car, nice facilities", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 379}], "unmapped": []} 5b45f41aa062538f auto b27672bb-0cce-4196-96cf-0a52e939a094 280 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 2 3 \N 0.90 clean car, nice facilities 379 399 \N \N \N 2026-01-31 02:20:24.350699 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 348, "evidence": "Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "clean car, nice facilities", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 379}], "unmapped": []} 5b45f41aa062538f auto b27672bb-0cce-4196-96cf-0a52e939a094 5305 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomiendo 💯 83 95 \N \N \N 2026-01-31 15:10:23.229191 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "muy eficiente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "ha sido amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Recomiendo 💯", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} a41c2a8a690c5f38 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5806 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 VALUE_FOR_MONEY + 2 1 \N 0.75 divertido 7 16 \N \N \N 2026-02-01 03:36:55.769384 gpt-4o-mini \N 9f16b7d57801812a \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 281 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 the Service is very bad 27 50 \N \N \N 2026-01-31 02:20:29.323721 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "the Service is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 254, "evidence": "Never again with this provider", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 229}], "unmapped": []} 7707dd232b25fbbf auto b27672bb-0cce-4196-96cf-0a52e939a094 282 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 3 \N 0.90 Very slow in returning the car 51 78 \N \N \N 2026-01-31 02:20:29.328343 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "the Service is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 254, "evidence": "Never again with this provider", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 229}], "unmapped": []} 7707dd232b25fbbf auto b27672bb-0cce-4196-96cf-0a52e939a094 283 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.90 you need to queue inside just to return (takes very long) 80 118 \N \N \N 2026-01-31 02:20:29.330721 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "the Service is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 254, "evidence": "Never again with this provider", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 229}], "unmapped": []} 7707dd232b25fbbf auto b27672bb-0cce-4196-96cf-0a52e939a094 284 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS - 2 3 \N 0.90 the employees do not care 205 227 \N \N \N 2026-01-31 02:20:29.332342 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "the Service is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 254, "evidence": "Never again with this provider", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 229}], "unmapped": []} 7707dd232b25fbbf auto b27672bb-0cce-4196-96cf-0a52e939a094 4590 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNjMXByUzF3RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.848959 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 285 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 Never again with this provider 229 254 \N \N \N 2026-01-31 02:20:29.334451 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "the Service is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 254, "evidence": "Never again with this provider", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 229}], "unmapped": []} 7707dd232b25fbbf auto b27672bb-0cce-4196-96cf-0a52e939a094 286 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 2 3 \N 0.90 Return was extremely quick and the shuttle was ready to bring us to the airport. 61 116 \N \N \N 2026-01-31 02:20:32.544971 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "mixed", "end_char": 194, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 138}], "unmapped": []} 3b94146c5094b875 auto b27672bb-0cce-4196-96cf-0a52e939a094 287 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION ± 2 2 \N 0.80 it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well 138 194 \N \N \N 2026-01-31 02:20:32.548633 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "mixed", "end_char": 194, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 138}], "unmapped": []} 3b94146c5094b875 auto b27672bb-0cce-4196-96cf-0a52e939a094 288 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I recommend that you ask someone on arrival. 204 233 \N \N \N 2026-01-31 02:20:35.844162 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 233, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "quick and easy rental process.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}], "unmapped": []} 97c414b3dd15a839 auto b27672bb-0cce-4196-96cf-0a52e939a094 289 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 there is a regular shuttle bus from and to the airport. 69 75 \N \N \N 2026-01-31 02:20:35.848112 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 233, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "quick and easy rental process.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}], "unmapped": []} 97c414b3dd15a839 auto b27672bb-0cce-4196-96cf-0a52e939a094 290 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 quick and easy rental process. 30 54 \N \N \N 2026-01-31 02:20:35.849737 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 233, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "quick and easy rental process.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}], "unmapped": []} 97c414b3dd15a839 auto b27672bb-0cce-4196-96cf-0a52e939a094 296 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 I dont recommend. 0 14 \N \N \N 2026-01-31 02:20:45.686193 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 14, "evidence": "I dont recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund", "intensity": 4, "primitive": "PROMISES", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}], "unmapped": []} 86fb750438bd50b7 auto b27672bb-0cce-4196-96cf-0a52e939a094 291 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 I do not recommend this company. 0 27 \N \N \N 2026-01-31 02:20:42.001946 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "their parking is located 1.5 km from the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 165}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "such a disappointing experience", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 211}], "unmapped": []} 282f5288ac4e9a30 auto b27672bb-0cce-4196-96cf-0a52e939a094 292 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.80 This is an unreasonable condition that other companies do not impose. 85 134 \N \N \N 2026-01-31 02:20:42.00636 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "their parking is located 1.5 km from the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 165}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "such a disappointing experience", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 211}], "unmapped": []} 282f5288ac4e9a30 auto b27672bb-0cce-4196-96cf-0a52e939a094 293 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY - 2 2 \N 0.70 their parking is located 1.5 km from the airport 135 164 \N \N \N 2026-01-31 02:20:42.00807 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "their parking is located 1.5 km from the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 165}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "such a disappointing experience", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 211}], "unmapped": []} 282f5288ac4e9a30 auto b27672bb-0cce-4196-96cf-0a52e939a094 294 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 3 \N 0.80 their shuttle bus only leaves once it is full so wasting of time. 165 210 \N \N \N 2026-01-31 02:20:42.00994 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "their parking is located 1.5 km from the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 165}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "such a disappointing experience", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 211}], "unmapped": []} 282f5288ac4e9a30 auto b27672bb-0cce-4196-96cf-0a52e939a094 295 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.60 such a disappointing experience 211 239 \N \N \N 2026-01-31 02:20:42.011564 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "their parking is located 1.5 km from the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 165}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "such a disappointing experience", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 211}], "unmapped": []} 282f5288ac4e9a30 auto b27672bb-0cce-4196-96cf-0a52e939a094 297 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 PROMISES - 2 3 \N 0.90 I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund 36 139 \N \N \N 2026-01-31 02:20:45.688752 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 14, "evidence": "I dont recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund", "intensity": 4, "primitive": "PROMISES", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}], "unmapped": []} 86fb750438bd50b7 auto b27672bb-0cce-4196-96cf-0a52e939a094 5807 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 VALUE_FOR_MONEY + 2 2 \N 0.85 en general una buena opción 17 45 \N \N \N 2026-02-01 03:36:55.769947 gpt-4o-mini \N 9f16b7d57801812a \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 120 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 The instructions for the shuttle were too vague. W... 0 50 \N \N \N 2026-01-31 02:05:46.986828 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 298 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 3 \N 0.90 the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 145 194 \N \N \N 2026-01-31 02:20:45.690498 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 14, "evidence": "I dont recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund", "intensity": 4, "primitive": "PROMISES", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}], "unmapped": []} 86fb750438bd50b7 auto b27672bb-0cce-4196-96cf-0a52e939a094 299 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 ‘computer says no’ approach to customer service 47 81 \N \N \N 2026-01-31 02:20:48.841584 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 81, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 133, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 6a2660582136bb8e auto b27672bb-0cce-4196-96cf-0a52e939a094 300 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY - 2 3 \N 0.90 Never got our car and had to pay full price 0 36 \N \N \N 2026-01-31 02:20:48.843185 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 81, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 133, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 6a2660582136bb8e auto b27672bb-0cce-4196-96cf-0a52e939a094 301 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 HONESTY - 2 3 \N 0.90 they refused to accommodate 107 133 \N \N \N 2026-01-31 02:20:48.845262 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 81, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 133, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 6a2660582136bb8e auto b27672bb-0cce-4196-96cf-0a52e939a094 5808 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB Entertainment.Venues.Go_karting_venue Entertainment primitives_v1_20260201 AMBIANCE + 2 2 \N 0.80 Muy buen ambiente 0 16 \N \N \N 2026-02-01 03:36:55.770283 gpt-4o-mini \N 6e83d5f5331aa7c2 \N 0f4f14c5-45f2-444e-8bdf-5b6816696050 302 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY ± 2 2 \N 0.70 Returning the car was easier than I thought. 404 438 \N \N \N 2026-01-31 02:20:55.223166 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 438, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 404}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "terms on the agreement was bad for a person renting the car", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 267}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "I vacuumed it completely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 354}, {"details": null, "valence": "mixed", "end_char": 617, "evidence": "I would probably look for a car rental that has better terms on the agreement", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 564}], "unmapped": []} e44d00338ef0b0b5 auto b27672bb-0cce-4196-96cf-0a52e939a094 1318 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtOC0tcEhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED - 3 3 \N 0.90 Muy mala experiencia. 0 18 \N \N \N 2026-01-31 03:39:56.639114 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 18, "evidence": "Muy mala experiencia.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1914607e286d659f auto 22c559a8-fabc-4916-9961-bcbd61225266 303 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 2 2 \N 0.80 the staff did not like to be filmed or recorded which gave me a red flag 164 218 \N \N \N 2026-01-31 02:20:55.226968 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 438, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 404}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "terms on the agreement was bad for a person renting the car", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 267}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "I vacuumed it completely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 354}, {"details": null, "valence": "mixed", "end_char": 617, "evidence": "I would probably look for a car rental that has better terms on the agreement", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 564}], "unmapped": []} e44d00338ef0b0b5 auto b27672bb-0cce-4196-96cf-0a52e939a094 304 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS - 2 2 \N 0.80 terms on the agreement was bad for a person renting the car 267 307 \N \N \N 2026-01-31 02:20:55.229127 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 438, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 404}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "terms on the agreement was bad for a person renting the car", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 267}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "I vacuumed it completely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 354}, {"details": null, "valence": "mixed", "end_char": 617, "evidence": "I would probably look for a car rental that has better terms on the agreement", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 564}], "unmapped": []} e44d00338ef0b0b5 auto b27672bb-0cce-4196-96cf-0a52e939a094 305 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 2 2 \N 0.80 I vacuumed it completely clean 354 377 \N \N \N 2026-01-31 02:20:55.230801 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 438, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 404}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "terms on the agreement was bad for a person renting the car", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 267}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "I vacuumed it completely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 354}, {"details": null, "valence": "mixed", "end_char": 617, "evidence": "I would probably look for a car rental that has better terms on the agreement", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 564}], "unmapped": []} e44d00338ef0b0b5 auto b27672bb-0cce-4196-96cf-0a52e939a094 306 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND ± 2 2 \N 0.70 I would probably look for a car rental that has better terms on the agreement 564 617 \N \N \N 2026-01-31 02:20:55.232294 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 438, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 404}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "terms on the agreement was bad for a person renting the car", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 267}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "I vacuumed it completely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 354}, {"details": null, "valence": "mixed", "end_char": 617, "evidence": "I would probably look for a car rental that has better terms on the agreement", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 564}], "unmapped": []} e44d00338ef0b0b5 auto b27672bb-0cce-4196-96cf-0a52e939a094 307 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 3 3 \N 0.90 ClickRent simply didn't accept that we didn't want to buy additional services. 139 183 \N \N \N 2026-01-31 02:20:59.510836 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 232, "evidence": "they refused to handout the car, and we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 184}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "This is absolutely the worse experience I've ever had, trying to rent a car.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}], "unmapped": []} 08e588062ffdd081 auto b27672bb-0cce-4196-96cf-0a52e939a094 4591 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNjX01TQ1BBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.849487 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 308 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 they refused to handout the car, and we had to return to the airport empty-handed. 184 232 \N \N \N 2026-01-31 02:20:59.513868 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 232, "evidence": "they refused to handout the car, and we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 184}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "This is absolutely the worse experience I've ever had, trying to rent a car.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}], "unmapped": []} 08e588062ffdd081 auto b27672bb-0cce-4196-96cf-0a52e939a094 309 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.80 This is absolutely the worse experience I've ever had, trying to rent a car. 0 66 \N \N \N 2026-01-31 02:20:59.515277 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 232, "evidence": "they refused to handout the car, and we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 184}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "This is absolutely the worse experience I've ever had, trying to rent a car.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}], "unmapped": []} 08e588062ffdd081 auto b27672bb-0cce-4196-96cf-0a52e939a094 310 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY - 2 3 \N 0.90 forced to buy a 150 euro insurance again 83 118 \N \N \N 2026-01-31 02:21:03.425016 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "the car given does not match what we ordered", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} 1b57d206db316c48 auto b27672bb-0cce-4196-96cf-0a52e939a094 311 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY - 2 3 \N 0.90 Terrible experience, don’t come 164 189 \N \N \N 2026-01-31 02:21:03.427503 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "the car given does not match what we ordered", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} 1b57d206db316c48 auto b27672bb-0cce-4196-96cf-0a52e939a094 312 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 2 3 \N 0.70 the car given does not match what we ordered 145 179 \N \N \N 2026-01-31 02:21:03.429127 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "the car given does not match what we ordered", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} 1b57d206db316c48 auto b27672bb-0cce-4196-96cf-0a52e939a094 313 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.90 Getting and returning car is a nightmare 47 78 \N \N \N 2026-01-31 02:21:08.950068 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "they are trying their best not to have clients", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 157}], "unmapped": []} 3f74a7c29e76570a auto b27672bb-0cce-4196-96cf-0a52e939a094 321 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 3 3 \N 0.90 refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!! 39 119 \N \N \N 2026-01-31 02:21:17.051559 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 39, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 39}], "unmapped": []} 7f74bf89051c8079 auto b27672bb-0cce-4196-96cf-0a52e939a094 314 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.80 they are trying their best not to have clients 36 74 \N \N \N 2026-01-31 02:21:08.952636 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "they are trying their best not to have clients", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 157}], "unmapped": []} 3f74a7c29e76570a auto b27672bb-0cce-4196-96cf-0a52e939a094 315 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.80 my credit card was charged additional 180 eur without any documentation 106 144 \N \N \N 2026-01-31 02:21:08.954278 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "they are trying their best not to have clients", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 157}], "unmapped": []} 3f74a7c29e76570a auto b27672bb-0cce-4196-96cf-0a52e939a094 316 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.80 if you want to avoid headache - stay away from it 157 197 \N \N \N 2026-01-31 02:21:08.955786 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "they are trying their best not to have clients", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 157}], "unmapped": []} 3f74a7c29e76570a auto b27672bb-0cce-4196-96cf-0a52e939a094 317 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 there was no car for us 56 70 \N \N \N 2026-01-31 02:21:13.359447 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "there was no car for us", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 48ddbb88c5874be2 auto b27672bb-0cce-4196-96cf-0a52e939a094 318 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 all we were offered was a refund and “goodbye.” 97 126 \N \N \N 2026-01-31 02:21:13.362031 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "there was no car for us", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 48ddbb88c5874be2 auto b27672bb-0cce-4196-96cf-0a52e939a094 319 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 DO NOT RECOMMEND. 174 191 \N \N \N 2026-01-31 02:21:13.363582 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "there was no car for us", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 48ddbb88c5874be2 auto b27672bb-0cce-4196-96cf-0a52e939a094 403 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 very happy I chose this company to hire the car 56 90 \N \N \N 2026-01-31 02:22:58.834254 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "very happy I chose this company to hire the car", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything went smoothly,no issues", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2432ff98fbc2a157 auto b27672bb-0cce-4196-96cf-0a52e939a094 121 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 The car rent itself is ok\n\nBut the Service is very... 0 50 \N \N \N 2026-01-31 02:05:46.987349 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 322 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 3 3 \N 0.90 one of the worst car rental experiences ever 0 41 \N \N \N 2026-01-31 02:21:22.40513 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 145, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "shuttle bus took forever to arrive", "intensity": 5, "primitive": "FRICTION", "confidence": 0.9, "start_char": 41}], "unmapped": []} b04dcd430998b0a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 323 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY - 2 3 \N 0.90 there is no office at the airport despite being mentioned during the booking phase 66 116 \N \N \N 2026-01-31 02:21:22.408583 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 145, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "shuttle bus took forever to arrive", "intensity": 5, "primitive": "FRICTION", "confidence": 0.9, "start_char": 41}], "unmapped": []} b04dcd430998b0a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 324 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 3 \N 0.90 checkin was dreadfully slow and inefficient 145 179 \N \N \N 2026-01-31 02:21:22.4106 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 145, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "shuttle bus took forever to arrive", "intensity": 5, "primitive": "FRICTION", "confidence": 0.9, "start_char": 41}], "unmapped": []} b04dcd430998b0a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 325 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION - 2 3 \N 0.90 car had undocumented damages that the staff was very reluctant to document 116 145 \N \N \N 2026-01-31 02:21:22.412301 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 145, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "shuttle bus took forever to arrive", "intensity": 5, "primitive": "FRICTION", "confidence": 0.9, "start_char": 41}], "unmapped": []} b04dcd430998b0a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 5809 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_43 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 MANNER + 2 2 \N 0.85 Some very nice people. 0 21 \N \N \N 2026-02-01 03:44:51.60237 gpt-4o-mini \N ddc6dbc799ccb3e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5810 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_43 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 UNMAPPED + 2 2 \N 0.85 Several big rooms, and good prices on drinks. 22 60 {UNMAPPED} \N \N 2026-02-01 03:44:51.605668 gpt-4o-mini \N ddc6dbc799ccb3e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5811 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_43 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 MANNER + 2 1 \N 0.80 Friendly and safe. 61 79 \N \N \N 2026-02-01 03:44:51.606214 gpt-4o-mini \N ddc6dbc799ccb3e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5812 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_43 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 RETURN_INTENT + 3 1 \N 0.90 Loved it. 80 88 \N \N \N 2026-02-01 03:44:51.606516 gpt-4o-mini \N ddc6dbc799ccb3e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 334 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 Avoid at all costs 139 156 \N \N \N 2026-01-31 02:21:32.195972 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "there was no car available for us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "negative", "end_char": 87, "evidence": "The staff was completely unhelpful", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Avoid at all costs", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 0e71727336ca8c20 auto b27672bb-0cce-4196-96cf-0a52e939a094 4592 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNjaU9TVGhnRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.850004 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 326 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 3 3 \N 0.90 shuttle bus took forever to arrive 41 66 \N \N \N 2026-01-31 02:21:22.413842 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 145, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "shuttle bus took forever to arrive", "intensity": 5, "primitive": "FRICTION", "confidence": 0.9, "start_char": 41}], "unmapped": []} b04dcd430998b0a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 328 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 2 3 \N 0.90 the car was available immediately. 66 90 \N \N \N 2026-01-31 02:21:25.601627 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "Would use their services again.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the car was available immediately.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the service was good", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 30be5513d83b1edf auto b27672bb-0cce-4196-96cf-0a52e939a094 329 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 2 2 \N 0.70 the service was good 54 70 \N \N \N 2026-01-31 02:21:25.603466 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "Would use their services again.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the car was available immediately.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the service was good", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 30be5513d83b1edf auto b27672bb-0cce-4196-96cf-0a52e939a094 330 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 3 3 \N 0.90 They were very helpful and arranged that I could take the car 1 day earlier. 83 139 \N \N \N 2026-01-31 02:21:28.200763 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "They were very helpful and arranged that I could take the car 1 day earlier.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "¡Muchas gracias!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 140}], "unmapped": []} af72d2f184941ee5 auto b27672bb-0cce-4196-96cf-0a52e939a094 331 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACKNOWLEDGMENT + 3 3 \N 0.90 ¡Muchas gracias! 140 156 \N \N \N 2026-01-31 02:21:28.20575 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "They were very helpful and arranged that I could take the car 1 day earlier.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "¡Muchas gracias!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 140}], "unmapped": []} af72d2f184941ee5 auto b27672bb-0cce-4196-96cf-0a52e939a094 332 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 3 3 \N 0.90 there was no car available for us 34 56 \N \N \N 2026-01-31 02:21:32.188455 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "there was no car available for us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "negative", "end_char": 87, "evidence": "The staff was completely unhelpful", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Avoid at all costs", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 0e71727336ca8c20 auto b27672bb-0cce-4196-96cf-0a52e939a094 333 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 The staff was completely unhelpful 58 87 \N \N \N 2026-01-31 02:21:32.191751 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "there was no car available for us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "negative", "end_char": 87, "evidence": "The staff was completely unhelpful", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Avoid at all costs", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 0e71727336ca8c20 auto b27672bb-0cce-4196-96cf-0a52e939a094 4593 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvaTc3QmFBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.85054 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 335 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Would use their services again and would recommend. 246 284 \N \N \N 2026-01-31 02:21:35.990222 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 284, "evidence": "Would use their services again and would recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Car was new, less than 5000km driven and was as promised.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 261, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 215}], "unmapped": []} 3113d848139f956a auto b27672bb-0cce-4196-96cf-0a52e939a094 336 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 HONESTY + 2 3 \N 0.90 Car was new, less than 5000km driven and was as promised. 157 197 \N \N \N 2026-01-31 02:21:35.991846 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 284, "evidence": "Would use their services again and would recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Car was new, less than 5000km driven and was as promised.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 261, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 215}], "unmapped": []} 3113d848139f956a auto b27672bb-0cce-4196-96cf-0a52e939a094 337 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 2 3 \N 0.80 the 2000€ authorization was unlocked in less than 5 minutes. 215 261 \N \N \N 2026-01-31 02:21:35.992883 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 284, "evidence": "Would use their services again and would recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Car was new, less than 5000km driven and was as promised.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 261, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 215}], "unmapped": []} 3113d848139f956a auto b27672bb-0cce-4196-96cf-0a52e939a094 338 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 The car was just as expected, clean and everything was on top. 80 116 \N \N \N 2026-01-31 02:21:40.073011 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "So nice people, and we got all the information we needed.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fabf1f849a7d14a auto b27672bb-0cce-4196-96cf-0a52e939a094 339 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 So nice people, and we got all the information we needed. 36 78 \N \N \N 2026-01-31 02:21:40.076077 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "So nice people, and we got all the information we needed.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fabf1f849a7d14a auto b27672bb-0cce-4196-96cf-0a52e939a094 5813 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_44 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 RESPONSE_QUALITY 0 1 1 \N 0.50 Response from the owner 0 24 \N \N \N 2026-02-01 03:44:51.606841 gpt-4o-mini \N bf501cc74ef5b375 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5814 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_42 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 SAFETY - 3 3 \N 0.90 i was harassed by a drunk man in Soho 0 36 \N \N \N 2026-02-01 03:44:51.607258 gpt-4o-mini \N a4ff8df467d713e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5815 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_42 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 SAFETY - 3 2 \N 0.85 i didn't feel safe that night 37 65 \N \N \N 2026-02-01 03:44:51.607446 gpt-4o-mini \N a4ff8df467d713e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 340 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 We had a very nice experience renting from ClickRent. 0 42 \N \N \N 2026-01-31 02:21:40.07784 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "So nice people, and we got all the information we needed.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fabf1f849a7d14a auto b27672bb-0cce-4196-96cf-0a52e939a094 355 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 2 3 \N 0.80 Chaos, long queues, small shuttle. 22 54 \N \N \N 2026-01-31 02:22:00.261897 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "I am never renting from here again.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 94}], "unmapped": []} 0b26ee6bde02c697 auto b27672bb-0cce-4196-96cf-0a52e939a094 341 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Highly recommended for your car hire. 41 69 \N \N \N 2026-01-31 02:21:45.034643 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 69, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 78ca4b0f1ea05887 auto b27672bb-0cce-4196-96cf-0a52e939a094 433 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-60 Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 Everything was very easy and fast 0 30 \N \N \N 2026-01-31 02:23:34.37705 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 74, "evidence": "I highly recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "the staff is super, kind and nice!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything was very easy and fast", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 399fa7b785fa6730 auto b27672bb-0cce-4196-96cf-0a52e939a094 342 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 The car was awesome and brand new like 1000 clicks on the odo. 78 113 \N \N \N 2026-01-31 02:21:45.038418 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 69, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 78ca4b0f1ea05887 auto b27672bb-0cce-4196-96cf-0a52e939a094 343 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 excellent staff especially Gabrielle. 27 54 \N \N \N 2026-01-31 02:21:45.040609 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 69, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 78ca4b0f1ea05887 auto b27672bb-0cce-4196-96cf-0a52e939a094 5816 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_42 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 ACKNOWLEDGMENT 0 2 1 \N 0.80 please do better 66 83 \N \N \N 2026-02-01 03:44:51.607611 gpt-4o-mini \N a4ff8df467d713e9 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5817 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_49 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 AMBIANCE + 2 2 \N 0.90 great atmosphere 18 36 \N \N \N 2026-02-01 03:44:51.60949 gpt-4o-mini \N 258bdda417e4fb39 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 344 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Great family experience made our stay worthwhile in Gran Canaria 114 155 \N \N \N 2026-01-31 02:21:45.042556 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 69, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 78ca4b0f1ea05887 auto b27672bb-0cce-4196-96cf-0a52e939a094 345 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 2 3 \N 0.90 Very good cars. Lots of Audi cars. 0 30 \N \N \N 2026-01-31 02:21:51.449143 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good cars. Lots of Audi cars.", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the person is polite.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "I would recommend you to take a car from here", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a463f4c305906a37 auto b27672bb-0cce-4196-96cf-0a52e939a094 346 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 3 \N 0.90 the person is polite. 56 75 \N \N \N 2026-01-31 02:21:51.452196 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good cars. Lots of Audi cars.", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the person is polite.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "I would recommend you to take a car from here", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a463f4c305906a37 auto b27672bb-0cce-4196-96cf-0a52e939a094 442 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-63 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 very friendly and service oriented team 28 63 \N \N \N 2026-01-31 02:23:46.700331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great price performance ratio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "very friendly and service oriented team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "even German speaking with Daniel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 64}], "unmapped": []} 0d6bd8d22caf1a0d auto b27672bb-0cce-4196-96cf-0a52e939a094 347 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 2 \N 0.80 You need to wait a maximum of 1 hour i think. We waited close to 30 mins. 76 118 \N \N \N 2026-01-31 02:21:51.454064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good cars. Lots of Audi cars.", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the person is polite.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "I would recommend you to take a car from here", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a463f4c305906a37 auto b27672bb-0cce-4196-96cf-0a52e939a094 5818 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_49 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 SPEED - 3 2 \N 0.85 very slow bar service 37 59 \N \N \N 2026-02-01 03:44:51.609694 gpt-4o-mini \N 258bdda417e4fb39 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5819 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_46 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 MANNER + 2 2 \N 0.85 Very friendly staff 0 19 \N \N \N 2026-02-01 03:44:51.609907 gpt-4o-mini \N 7ea4dc16a416b5df \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5820 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_46 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 TASTE + 2 1 \N 0.80 good drinks 21 32 \N \N \N 2026-02-01 03:44:51.610053 gpt-4o-mini \N 7ea4dc16a416b5df \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 348 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 2 3 \N 0.90 Their office is air-conditioned and very well kept. 119 157 \N \N \N 2026-01-31 02:21:51.456369 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good cars. Lots of Audi cars.", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the person is polite.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "I would recommend you to take a car from here", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a463f4c305906a37 auto b27672bb-0cce-4196-96cf-0a52e939a094 349 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 2 3 \N 0.90 I would recommend you to take a car from here 158 197 \N \N \N 2026-01-31 02:21:51.45813 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good cars. Lots of Audi cars.", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the person is polite.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins.", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "I would recommend you to take a car from here", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a463f4c305906a37 auto b27672bb-0cce-4196-96cf-0a52e939a094 5616 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB Retail.Stores.Toy_store RETAIL 1.0 COMPETENCE + 2 3 \N 0.90 ayudaron mucho para dar con el regalo que buscaba 14 66 \N \N \N 2026-01-31 15:16:26.897861 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buena atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ayudaron mucho para dar con el regalo que buscaba", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 14}], "unmapped": []} 3b0040bbbf9ddc85 es e4f95d90-dbbe-439d-a0fd-f19088002f26 350 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 2 3 \N 0.90 their insurance is the ceapest compared to other car rentals 92 132 \N \N \N 2026-01-31 02:21:56.145028 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "their insurance is the ceapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "very close to the airport", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "they have a good fleet of cars", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 34}], "unmapped": []} 7218b1eaebd2b21b auto b27672bb-0cce-4196-96cf-0a52e939a094 351 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 2 3 \N 0.90 very close to the airport 56 77 \N \N \N 2026-01-31 02:21:56.146742 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "their insurance is the ceapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "very close to the airport", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "they have a good fleet of cars", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 34}], "unmapped": []} 7218b1eaebd2b21b auto b27672bb-0cce-4196-96cf-0a52e939a094 1319 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNaZ29iOHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Gran servicio 0 14 \N \N \N 2026-01-31 03:39:57.795872 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "Gran servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} b25e168807ce7738 auto 22c559a8-fabc-4916-9961-bcbd61225266 5821 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_46 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 CLEANLINESS + 2 2 \N 0.90 the club was very clean 34 57 \N \N \N 2026-02-01 03:44:51.610276 gpt-4o-mini \N 7ea4dc16a416b5df \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5822 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_46 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 EFFECTIVENESS + 3 3 \N 0.95 The Dramatica Show was amazing 59 90 \N \N \N 2026-02-01 03:44:51.610601 gpt-4o-mini \N 7ea4dc16a416b5df \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5823 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_48 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 RECOMMEND + 3 2 \N 0.90 Amazing place, worth visiting! 0 30 \N \N \N 2026-02-01 03:44:51.610877 gpt-4o-mini \N 546078c45d576f77 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 352 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 3 \N 0.90 enough staff in order not to waste time at pick-up and dropoff 138 182 \N \N \N 2026-01-31 02:21:56.148011 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "their insurance is the ceapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "very close to the airport", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "they have a good fleet of cars", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 34}], "unmapped": []} 7218b1eaebd2b21b auto b27672bb-0cce-4196-96cf-0a52e939a094 353 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 2 3 \N 0.90 they have a good fleet of cars 34 61 \N \N \N 2026-01-31 02:21:56.14918 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "their insurance is the ceapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "very close to the airport", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "they have a good fleet of cars", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 34}], "unmapped": []} 7218b1eaebd2b21b auto b27672bb-0cce-4196-96cf-0a52e939a094 354 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.90 Worst car rental ever. 0 20 \N \N \N 2026-01-31 02:22:00.258112 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "I am never renting from here again.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 94}], "unmapped": []} 0b26ee6bde02c697 auto b27672bb-0cce-4196-96cf-0a52e939a094 404 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Everything went smoothly,no issues 0 30 \N \N \N 2026-01-31 02:22:58.836402 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "very happy I chose this company to hire the car", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything went smoothly,no issues", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2432ff98fbc2a157 auto b27672bb-0cce-4196-96cf-0a52e939a094 356 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 2 3 \N 0.70 make sure you arrive much earlier to give back the car. 56 92 \N \N \N 2026-01-31 02:22:00.263837 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "I am never renting from here again.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 94}], "unmapped": []} 0b26ee6bde02c697 auto b27672bb-0cce-4196-96cf-0a52e939a094 357 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.90 I am never renting from here again. 94 123 \N \N \N 2026-01-31 02:22:00.266365 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "I am never renting from here again.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 94}], "unmapped": []} 0b26ee6bde02c697 auto b27672bb-0cce-4196-96cf-0a52e939a094 5824 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_48 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 TASTE + 3 2 \N 0.90 Cocktails are the best 31 53 \N \N \N 2026-02-01 03:44:51.611268 gpt-4o-mini \N 546078c45d576f77 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5825 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_48 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 AMBIANCE + 2 2 \N 0.85 atmosphere is great 54 73 \N \N \N 2026-02-01 03:44:51.611543 gpt-4o-mini \N 546078c45d576f77 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 358 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I can't recommend ClickRent enough! 292 317 \N \N \N 2026-01-31 02:22:06.602203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 317, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "helpful staff who were smiling even at 8am in the morning", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "brand new check in centre which has many check-in desks and very helpful staff", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 69}], "unmapped": []} 8f946808e487d3ec auto b27672bb-0cce-4196-96cf-0a52e939a094 359 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 helpful staff who were smiling even at 8am in the morning 239 276 \N \N \N 2026-01-31 02:22:06.605236 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 317, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "helpful staff who were smiling even at 8am in the morning", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "brand new check in centre which has many check-in desks and very helpful staff", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 69}], "unmapped": []} 8f946808e487d3ec auto b27672bb-0cce-4196-96cf-0a52e939a094 360 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 Check in was quick and easy and we were on the road in under 20 minutes 157 205 \N \N \N 2026-01-31 02:22:06.606825 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 317, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "helpful staff who were smiling even at 8am in the morning", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "brand new check in centre which has many check-in desks and very helpful staff", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 69}], "unmapped": []} 8f946808e487d3ec auto b27672bb-0cce-4196-96cf-0a52e939a094 4537 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQ0anUyQkt3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 Siempre encuentro lo que busco 0 30 \N \N \N 2026-01-31 13:44:16.432457 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Siempre encuentro lo que busco", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 446df6f7210a2e44 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 361 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met 116 174 \N \N \N 2026-01-31 02:22:06.60824 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 317, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "helpful staff who were smiling even at 8am in the morning", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "brand new check in centre which has many check-in desks and very helpful staff", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 69}], "unmapped": []} 8f946808e487d3ec auto b27672bb-0cce-4196-96cf-0a52e939a094 5826 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_41 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 RECOMMEND + 3 1 \N 0.90 The best place in Vilnius for sure. 0 30 \N \N \N 2026-02-01 03:44:51.611743 gpt-4o-mini \N 0d0af42055af32f6 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5827 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_41 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 AMBIANCE + 3 2 \N 0.85 Safe, friendly, stylish, pleasant to stay at and enjoy the atmosphere. 31 83 \N \N \N 2026-02-01 03:44:51.612088 gpt-4o-mini \N 0d0af42055af32f6 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5828 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_40 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 AMBIANCE + 2 2 \N 0.85 Really liked the atmosphere. 27 53 \N \N \N 2026-02-01 03:44:51.612267 gpt-4o-mini \N 337d755bffe8fbe7 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 122 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Smooth rental when booking directly with full cove... 0 50 \N \N \N 2026-01-31 02:05:46.987841 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 392 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 Don't rent anything from here. 148 174 \N \N \N 2026-01-31 02:22:45.575957 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "customer service with automated voice message.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Don't rent anything from here.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 26bf672c995a4c08 auto b27672bb-0cce-4196-96cf-0a52e939a094 362 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 brand new check in centre which has many check-in desks and very helpful staff 69 116 \N \N \N 2026-01-31 02:22:06.60965 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 317, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "helpful staff who were smiling even at 8am in the morning", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "brand new check in centre which has many check-in desks and very helpful staff", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 69}], "unmapped": []} 8f946808e487d3ec auto b27672bb-0cce-4196-96cf-0a52e939a094 363 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER - 2 3 \N 0.90 Very unfriendly lady. 0 20 \N \N \N 2026-01-31 02:22:10.777614 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} dde7833345af7d5e auto b27672bb-0cce-4196-96cf-0a52e939a094 364 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION - 2 3 \N 0.90 Totally not clear where the shuttle bus was leaving at the airport. 43 83 \N \N \N 2026-01-31 02:22:10.7808 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} dde7833345af7d5e auto b27672bb-0cce-4196-96cf-0a52e939a094 444 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-64 Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED + 3 3 \N 0.90 amazing the service from these guys 20 50 \N \N \N 2026-01-31 02:23:49.177414 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "amazing the service from these guys", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "amazing price", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} fbf541d8a0772a2e auto b27672bb-0cce-4196-96cf-0a52e939a094 5829 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_40 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 MANNER + 2 2 \N 0.85 Barmaids are really friendly 54 80 \N \N \N 2026-02-01 03:44:51.612519 gpt-4o-mini \N 337d755bffe8fbe7 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5830 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_40 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 RECOVERY + 3 3 \N 0.90 you guys just picked it up and saved my night 81 118 \N \N \N 2026-02-01 03:44:51.612824 gpt-4o-mini \N 337d755bffe8fbe7 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5831 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_47 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 TASTE - 3 3 \N 0.90 The worst long island on the Planet! 0 30 \N long island drink 2026-02-01 03:44:51.613008 gpt-4o-mini \N 9c750287ea1a556e \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 5832 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_47 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 MANNER + 2 2 \N 0.85 kindly Bartender served us free better one long islands. 50 66 \N Bartender staff 2026-02-01 03:44:51.613206 gpt-4o-mini \N 9c750287ea1a556e \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 365 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 She said it was not her problem. 84 108 \N \N \N 2026-01-31 02:22:10.782793 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} dde7833345af7d5e auto b27672bb-0cce-4196-96cf-0a52e939a094 366 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT - 2 3 \N 0.90 Not returning here again. 21 43 \N \N \N 2026-01-31 02:22:10.784709 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} dde7833345af7d5e auto b27672bb-0cce-4196-96cf-0a52e939a094 434 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-61 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Really good value 0 18 \N \N \N 2026-01-31 02:23:39.181922 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 28, "evidence": "New Cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "Meeting place could be better advertised but once we figured that out, no problems getting the shuttle", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 7c6c1c25a9758942 auto b27672bb-0cce-4196-96cf-0a52e939a094 367 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Highly Recommended! 27 46 \N \N \N 2026-01-31 02:22:17.419658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "the vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "The staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} bf4e2e9287906fbb auto b27672bb-0cce-4196-96cf-0a52e939a094 368 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 3 3 \N 0.90 reliable and reasonably priced rental car 78 113 \N \N \N 2026-01-31 02:22:17.422628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "the vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "The staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} bf4e2e9287906fbb auto b27672bb-0cce-4196-96cf-0a52e939a094 445 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-64 Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS + 3 3 \N 0.90 amazing price 66 80 \N \N \N 2026-01-31 02:23:49.180577 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "amazing the service from these guys", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "amazing price", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} fbf541d8a0772a2e auto b27672bb-0cce-4196-96cf-0a52e939a094 369 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 the vehicle itself was in great condition, almost brand new, clean, and well-maintained 197 253 \N \N \N 2026-01-31 02:22:17.424182 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "the vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "The staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} bf4e2e9287906fbb auto b27672bb-0cce-4196-96cf-0a52e939a094 370 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 The staff was extremely friendly, professional, and helpful 276 319 \N \N \N 2026-01-31 02:22:17.425875 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "the vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "The staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} bf4e2e9287906fbb auto b27672bb-0cce-4196-96cf-0a52e939a094 408 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 2 3 \N 0.80 the shuttle was comfortable and fast, it was easy to find their bus 98 138 \N \N \N 2026-01-31 02:23:04.1099 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "their staff was kind and professional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "the shuttle was comfortable and fast, it was easy to find their bus", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "their office is near and brand new", "intensity": 4, "primitive": "CONDITION", "confidence": 0.8, "start_char": 151}], "unmapped": []} 598ca74742e68f41 auto b27672bb-0cce-4196-96cf-0a52e939a094 371 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient 113 197 \N \N \N 2026-01-31 02:22:17.427465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "the vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "The staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} bf4e2e9287906fbb auto b27672bb-0cce-4196-96cf-0a52e939a094 372 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 great for a budget rental 0 30 \N \N \N 2026-01-31 02:22:20.939573 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "great for a budget rental", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "the service is excellent", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recommend it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}], "unmapped": []} 3e0f2147729e6497 auto b27672bb-0cce-4196-96cf-0a52e939a094 4594 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURzMW9lRG13RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.851076 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 373 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED + 3 3 \N 0.90 the service is excellent 61 83 \N \N \N 2026-01-31 02:22:20.94316 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "great for a budget rental", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "the service is excellent", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recommend it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}], "unmapped": []} 3e0f2147729e6497 auto b27672bb-0cce-4196-96cf-0a52e939a094 374 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Recommend it 84 92 \N \N \N 2026-01-31 02:22:20.945708 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "great for a budget rental", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "the service is excellent", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recommend it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}], "unmapped": []} 3e0f2147729e6497 auto b27672bb-0cce-4196-96cf-0a52e939a094 375 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED + 2 3 \N 0.90 Good service, perfect cars, low prices! Very recommendable! 0 56 \N \N \N 2026-01-31 02:22:24.110304 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Good service, perfect cars, low prices! Very recommendable!", "intensity": 4, "primitive": "SERVICE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the office is very close and you can walk, if you don’t have any luggage.", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 118}], "unmapped": []} 52478068aa7c9987 auto b27672bb-0cce-4196-96cf-0a52e939a094 376 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 2 2 \N 0.80 the office is very close and you can walk, if you don’t have any luggage. 118 164 \N \N \N 2026-01-31 02:22:24.113022 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Good service, perfect cars, low prices! Very recommendable!", "intensity": 4, "primitive": "SERVICE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the office is very close and you can walk, if you don’t have any luggage.", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 118}], "unmapped": []} 52478068aa7c9987 auto b27672bb-0cce-4196-96cf-0a52e939a094 377 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I can recommend. 41 54 \N \N \N 2026-01-31 02:22:26.644356 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "I can recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "everything perfect and easy.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 92094c04633fd95e auto b27672bb-0cce-4196-96cf-0a52e939a094 378 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 everything perfect and easy. 20 42 \N \N \N 2026-01-31 02:22:26.650207 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "I can recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "everything perfect and easy.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 92094c04633fd95e auto b27672bb-0cce-4196-96cf-0a52e939a094 379 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I can only recommend this company in Gran Canaria!!! 0 41 \N \N \N 2026-01-31 02:22:33.713801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "they offered us straight away two other options when we have arrived and they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Thank you once again for your quick and efficient service and your kindness!", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 234}], "unmapped": []} e1c87a5276018368 auto b27672bb-0cce-4196-96cf-0a52e939a094 446 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-65 Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Great experience using ClickRent. 0 30 \N \N \N 2026-01-31 02:23:52.722139 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great experience using ClickRent.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick check in and check out", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "regular shuttles", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 4a311e44d7466fd9 auto b27672bb-0cce-4196-96cf-0a52e939a094 380 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS + 3 3 \N 0.90 Absolutely fair and competitive prices 42 75 \N \N \N 2026-01-31 02:22:33.717017 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "they offered us straight away two other options when we have arrived and they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Thank you once again for your quick and efficient service and your kindness!", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 234}], "unmapped": []} e1c87a5276018368 auto b27672bb-0cce-4196-96cf-0a52e939a094 381 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 The staff was amazing! Super kind and super helpful! 76 116 \N \N \N 2026-01-31 02:22:33.71839 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "they offered us straight away two other options when we have arrived and they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Thank you once again for your quick and efficient service and your kindness!", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 234}], "unmapped": []} e1c87a5276018368 auto b27672bb-0cce-4196-96cf-0a52e939a094 382 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 they offered us straight away two other options when we have arrived and they have changed our car in no time 162 233 \N \N \N 2026-01-31 02:22:33.719777 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "they offered us straight away two other options when we have arrived and they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Thank you once again for your quick and efficient service and your kindness!", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 234}], "unmapped": []} e1c87a5276018368 auto b27672bb-0cce-4196-96cf-0a52e939a094 409 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION + 2 3 \N 0.80 their office is near and brand new 151 179 \N \N \N 2026-01-31 02:23:04.134589 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "their staff was kind and professional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "the shuttle was comfortable and fast, it was easy to find their bus", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "their office is near and brand new", "intensity": 4, "primitive": "CONDITION", "confidence": 0.8, "start_char": 151}], "unmapped": []} 598ca74742e68f41 auto b27672bb-0cce-4196-96cf-0a52e939a094 402 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.60 these operational inefficiencies need to be addressed for a smoother customer experience \N \N {"Operational inefficiencies"} \N \N 2026-01-31 02:22:56.41736 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "they didn’t charge us any additional fees", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "the car was new and comfortable", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "the wait time became frustratingly long", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 352}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "this was a waste of time and could be easily avoided with better staffing", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 438}], "unmapped": [{"label": "Operational inefficiencies", "evidence": "these operational inefficiencies need to be addressed for a smoother customer experience", "confidence": 0.6}]} f51f326a3df088bc auto b27672bb-0cce-4196-96cf-0a52e939a094 383 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 3 3 \N 0.90 Thank you once again for your quick and efficient service and your kindness! 234 284 \N \N \N 2026-01-31 02:22:33.721767 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "they offered us straight away two other options when we have arrived and they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Thank you once again for your quick and efficient service and your kindness!", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 234}], "unmapped": []} e1c87a5276018368 auto b27672bb-0cce-4196-96cf-0a52e939a094 384 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY - 2 3 \N 0.90 we paid a bunch of fees that weren't mentioned when we initially booked the car 157 199 \N \N \N 2026-01-31 02:22:41.758657 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 199, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 377, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "the lady on the phone basically told me it's my fault", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 575}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "This place is complete shit, I'm sorry to say it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "This place sucks. Do not rent from this company", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 617}], "unmapped": []} a288a2ad298da18a auto b27672bb-0cce-4196-96cf-0a52e939a094 385 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee 307 377 \N \N \N 2026-01-31 02:22:41.764953 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 199, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 377, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "the lady on the phone basically told me it's my fault", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 575}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "This place is complete shit, I'm sorry to say it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "This place sucks. Do not rent from this company", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 617}], "unmapped": []} a288a2ad298da18a auto b27672bb-0cce-4196-96cf-0a52e939a094 386 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 HONESTY - 2 3 \N 0.90 the lady on the phone basically told me it's my fault 575 617 \N \N \N 2026-01-31 02:22:41.7674 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 199, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 377, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "the lady on the phone basically told me it's my fault", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 575}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "This place is complete shit, I'm sorry to say it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "This place sucks. Do not rent from this company", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 617}], "unmapped": []} a288a2ad298da18a auto b27672bb-0cce-4196-96cf-0a52e939a094 410 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED + 2 3 \N 0.90 The car and the service were great. 0 36 \N \N \N 2026-01-31 02:23:06.628562 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The car and the service were great.", "intensity": 4, "primitive": "SERVICE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "the shattle from the airpors is not simple to get", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 43}], "unmapped": []} 8f6baa1f982facc5 auto b27672bb-0cce-4196-96cf-0a52e939a094 4595 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURzNkl2OVRnEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.851643 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 123 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Great customer experience, quick and easy rental p... 0 50 \N \N \N 2026-01-31 02:05:46.988314 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 387 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.70 This place is complete shit, I'm sorry to say it 0 38 \N \N \N 2026-01-31 02:22:41.769533 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 199, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 377, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "the lady on the phone basically told me it's my fault", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 575}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "This place is complete shit, I'm sorry to say it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "This place sucks. Do not rent from this company", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 617}], "unmapped": []} a288a2ad298da18a auto b27672bb-0cce-4196-96cf-0a52e939a094 388 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.70 This place sucks. Do not rent from this company 617 661 \N \N \N 2026-01-31 02:22:41.771138 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 199, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 377, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 617, "evidence": "the lady on the phone basically told me it's my fault", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 575}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "This place is complete shit, I'm sorry to say it", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "This place sucks. Do not rent from this company", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 617}], "unmapped": []} a288a2ad298da18a auto b27672bb-0cce-4196-96cf-0a52e939a094 389 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY - 2 3 \N 0.90 Impossible to find the meeting point. 0 30 \N \N \N 2026-01-31 02:22:45.569712 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "customer service with automated voice message.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Don't rent anything from here.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 26bf672c995a4c08 auto b27672bb-0cce-4196-96cf-0a52e939a094 390 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION - 2 3 \N 0.90 customer service with automated voice message. 66 102 \N \N \N 2026-01-31 02:22:45.57299 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "customer service with automated voice message.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Don't rent anything from here.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 26bf672c995a4c08 auto b27672bb-0cce-4196-96cf-0a52e939a094 5833 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_45 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 MANNER + 2 2 \N 0.85 The owner is such a nice person 22 50 \N owner person 2026-02-01 03:44:51.613387 gpt-4o-mini \N 855186789761bec4 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 391 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.90 We had to walk 30 minutes on bad road with luggage to find the office. 104 147 \N \N \N 2026-01-31 02:22:45.574392 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "customer service with automated voice message.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Don't rent anything from here.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 26bf672c995a4c08 auto b27672bb-0cce-4196-96cf-0a52e939a094 1320 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXMGN2MHRnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED - 3 3 \N 0.90 Muy mala experiencia 0 17 \N \N \N 2026-01-31 03:39:58.91612 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 17, "evidence": "Muy mala experiencia", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} d91ca7c5bc4c0f35 auto 22c559a8-fabc-4916-9961-bcbd61225266 393 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I would recommend this place to rent from 188 224 \N \N \N 2026-01-31 02:22:51.61625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "They really goes up and beyond to make sure we’re satisfied.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "This auto rental provided the best service we have ever had when renting a car.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Have a clean fresh stylish vehicle to sport with great pricing.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 224}], "unmapped": []} 1f9ec2b61e96fb7a auto b27672bb-0cce-4196-96cf-0a52e939a094 394 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 3 3 \N 0.90 They really goes up and beyond to make sure we’re satisfied. 102 143 \N \N \N 2026-01-31 02:22:51.619958 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "They really goes up and beyond to make sure we’re satisfied.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "This auto rental provided the best service we have ever had when renting a car.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Have a clean fresh stylish vehicle to sport with great pricing.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 224}], "unmapped": []} 1f9ec2b61e96fb7a auto b27672bb-0cce-4196-96cf-0a52e939a094 395 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward. 56 134 \N \N \N 2026-01-31 02:22:51.621665 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "They really goes up and beyond to make sure we’re satisfied.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "This auto rental provided the best service we have ever had when renting a car.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Have a clean fresh stylish vehicle to sport with great pricing.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 224}], "unmapped": []} 1f9ec2b61e96fb7a auto b27672bb-0cce-4196-96cf-0a52e939a094 396 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 This auto rental provided the best service we have ever had when renting a car. 135 182 \N \N \N 2026-01-31 02:22:51.623277 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "They really goes up and beyond to make sure we’re satisfied.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "This auto rental provided the best service we have ever had when renting a car.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Have a clean fresh stylish vehicle to sport with great pricing.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 224}], "unmapped": []} 1f9ec2b61e96fb7a auto b27672bb-0cce-4196-96cf-0a52e939a094 5834 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club review_45 Entertainment.Nightlife.Gay_night_club Entertainment primitives_v1_20260201 AMBIANCE + 3 3 \N 0.90 decoration, music, drinks, people, all perfect 66 108 \N \N \N 2026-02-01 03:44:51.613796 gpt-4o-mini \N 855186789761bec4 \N 7a516e97-fb5e-4a17-9f4a-bb2be95c8171 411 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY - 2 2 \N 0.80 the shattle from the airpors is not simple to get 43 78 \N \N \N 2026-01-31 02:23:06.632223 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The car and the service were great.", "intensity": 4, "primitive": "SERVICE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "the shattle from the airpors is not simple to get", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 43}], "unmapped": []} 8f6baa1f982facc5 auto b27672bb-0cce-4196-96cf-0a52e939a094 1321 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURaN2ZTVjVRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:39:59.706658 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 397 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 Have a clean fresh stylish vehicle to sport with great pricing. 224 267 \N \N \N 2026-01-31 02:22:51.624851 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "They really goes up and beyond to make sure we’re satisfied.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "This auto rental provided the best service we have ever had when renting a car.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Have a clean fresh stylish vehicle to sport with great pricing.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 224}], "unmapped": []} 1f9ec2b61e96fb7a auto b27672bb-0cce-4196-96cf-0a52e939a094 398 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 2 \N 0.90 they didn’t charge us any additional fees 66 103 \N \N \N 2026-01-31 02:22:56.408962 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "they didn’t charge us any additional fees", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "the car was new and comfortable", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "the wait time became frustratingly long", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 352}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "this was a waste of time and could be easily avoided with better staffing", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 438}], "unmapped": [{"label": "Operational inefficiencies", "evidence": "these operational inefficiencies need to be addressed for a smoother customer experience", "confidence": 0.6}]} f51f326a3df088bc auto b27672bb-0cce-4196-96cf-0a52e939a094 399 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 COMFORT + 1 2 \N 0.90 the car was new and comfortable 107 133 \N \N \N 2026-01-31 02:22:56.412183 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "they didn’t charge us any additional fees", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "the car was new and comfortable", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "the wait time became frustratingly long", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 352}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "this was a waste of time and could be easily avoided with better staffing", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 438}], "unmapped": [{"label": "Operational inefficiencies", "evidence": "these operational inefficiencies need to be addressed for a smoother customer experience", "confidence": 0.6}]} f51f326a3df088bc auto b27672bb-0cce-4196-96cf-0a52e939a094 400 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 2 \N 0.80 the wait time became frustratingly long 352 384 \N \N \N 2026-01-31 02:22:56.413899 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "they didn’t charge us any additional fees", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "the car was new and comfortable", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "the wait time became frustratingly long", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 352}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "this was a waste of time and could be easily avoided with better staffing", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 438}], "unmapped": [{"label": "Operational inefficiencies", "evidence": "these operational inefficiencies need to be addressed for a smoother customer experience", "confidence": 0.6}]} f51f326a3df088bc auto b27672bb-0cce-4196-96cf-0a52e939a094 401 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 2 \N 0.80 this was a waste of time and could be easily avoided with better staffing 438 487 \N \N \N 2026-01-31 02:22:56.415747 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "they didn’t charge us any additional fees", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "the car was new and comfortable", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "the wait time became frustratingly long", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 352}, {"details": null, "valence": "negative", "end_char": 487, "evidence": "this was a waste of time and could be easily avoided with better staffing", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 438}], "unmapped": [{"label": "Operational inefficiencies", "evidence": "these operational inefficiencies need to be addressed for a smoother customer experience", "confidence": 0.6}]} f51f326a3df088bc auto b27672bb-0cce-4196-96cf-0a52e939a094 1322 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURaemN2RVJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:40:00.599073 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 405 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 strongly reconmend the place! 164 188 \N \N \N 2026-01-31 02:23:04.096512 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "their staff was kind and professional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "the shuttle was comfortable and fast, it was easy to find their bus", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "their office is near and brand new", "intensity": 4, "primitive": "CONDITION", "confidence": 0.8, "start_char": 151}], "unmapped": []} 598ca74742e68f41 auto b27672bb-0cce-4196-96cf-0a52e939a094 406 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 350Euros for 7 days 130 147 \N \N \N 2026-01-31 02:23:04.102156 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "their staff was kind and professional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "the shuttle was comfortable and fast, it was easy to find their bus", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "their office is near and brand new", "intensity": 4, "primitive": "CONDITION", "confidence": 0.8, "start_char": 151}], "unmapped": []} 598ca74742e68f41 auto b27672bb-0cce-4196-96cf-0a52e939a094 407 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 their staff was kind and professional 118 151 \N \N \N 2026-01-31 02:23:04.104983 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "their staff was kind and professional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "the shuttle was comfortable and fast, it was easy to find their bus", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "their office is near and brand new", "intensity": 4, "primitive": "CONDITION", "confidence": 0.8, "start_char": 151}], "unmapped": []} 598ca74742e68f41 auto b27672bb-0cce-4196-96cf-0a52e939a094 412 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Amazing service! 0 15 \N \N \N 2026-01-31 02:23:12.404112 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Carmen provided me, she was kind, efficient", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "which was not necessary, since Clickrent has a better coverage of damages.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 263}], "unmapped": []} 71f7b6e2805990a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 124 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 I do not recommend this company. They required a d... 0 50 {general} \N \N 2026-01-31 02:05:46.988881 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 413 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 it was easy, efficient and spotless. 38 66 \N \N \N 2026-01-31 02:23:12.407564 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Carmen provided me, she was kind, efficient", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "which was not necessary, since Clickrent has a better coverage of damages.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 263}], "unmapped": []} 71f7b6e2805990a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 4538 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTd2ZqMjRRRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED - 1 2 \N 0.90 No me gusta 0 10 \N \N \N 2026-01-31 13:44:17.616653 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 10, "evidence": "No me gusta", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9b8bd186a5587a06 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 414 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Carmen provided me, she was kind, efficient 85 126 \N \N \N 2026-01-31 02:23:12.409396 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Carmen provided me, she was kind, efficient", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "which was not necessary, since Clickrent has a better coverage of damages.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 263}], "unmapped": []} 71f7b6e2805990a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 415 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 it was fast to get to the airport. 218 243 \N \N \N 2026-01-31 02:23:12.410981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Carmen provided me, she was kind, efficient", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "which was not necessary, since Clickrent has a better coverage of damages.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 263}], "unmapped": []} 71f7b6e2805990a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 416 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 2 3 \N 0.70 which was not necessary, since Clickrent has a better coverage of damages. 263 319 \N \N \N 2026-01-31 02:23:12.412489 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Carmen provided me, she was kind, efficient", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "which was not necessary, since Clickrent has a better coverage of damages.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 263}], "unmapped": []} 71f7b6e2805990a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 1323 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURaall1M0FREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:01.368457 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 417 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 FRICTION - 2 3 \N 0.90 there are no signs and no one to pick you up 66 103 \N \N \N 2026-01-31 02:23:17.33832 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "there are no signs and no one to pick you up", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "they pointed out the smallest scratches so I understood this was a money making effort", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 421, "evidence": "the person handling my return was also rude even to my family including kids", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "They wanted to charge 50 EUR for a deep clean!", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 307}], "unmapped": []} 5d29879403343bb1 auto b27672bb-0cce-4196-96cf-0a52e939a094 418 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 they pointed out the smallest scratches so I understood this was a money making effort 132 183 \N \N \N 2026-01-31 02:23:17.342689 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "there are no signs and no one to pick you up", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "they pointed out the smallest scratches so I understood this was a money making effort", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 421, "evidence": "the person handling my return was also rude even to my family including kids", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "They wanted to charge 50 EUR for a deep clean!", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 307}], "unmapped": []} 5d29879403343bb1 auto b27672bb-0cce-4196-96cf-0a52e939a094 419 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER - 2 3 \N 0.90 the person handling my return was also rude even to my family including kids 367 421 \N \N \N 2026-01-31 02:23:17.344715 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "there are no signs and no one to pick you up", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "they pointed out the smallest scratches so I understood this was a money making effort", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 421, "evidence": "the person handling my return was also rude even to my family including kids", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "They wanted to charge 50 EUR for a deep clean!", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 307}], "unmapped": []} 5d29879403343bb1 auto b27672bb-0cce-4196-96cf-0a52e939a094 420 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY - 2 3 \N 0.90 They wanted to charge 50 EUR for a deep clean! 307 339 \N \N \N 2026-01-31 02:23:17.346315 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "there are no signs and no one to pick you up", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "they pointed out the smallest scratches so I understood this was a money making effort", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 421, "evidence": "the person handling my return was also rude even to my family including kids", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "They wanted to charge 50 EUR for a deep clean!", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 307}], "unmapped": []} 5d29879403343bb1 auto b27672bb-0cce-4196-96cf-0a52e939a094 421 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 They have a shuttle bus between airport and their office, so very easy to get and return your car. 0 83 \N \N \N 2026-01-31 02:23:23.884807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "They have a shuttle bus between airport and their office, so very easy to get and return your car.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "When I returned the car they just quickly check the car and told me everything is OK.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "I get back my deposit immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 198}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "Suggest buy their full insurance.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 225}], "unmapped": []} b6eea4543cddbaf7 auto b27672bb-0cce-4196-96cf-0a52e939a094 680 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Excellent team in Gran Canaria. 0 30 \N \N \N 2026-01-31 02:29:05.413125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "They were very helpful and arranged that I could take the car 1 day earlier.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Excellent team in Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ff5481030725a89 auto 07c01d3a-3443-4031-910c-7b6feba2c100 422 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION + 3 3 \N 0.90 Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. 84 139 \N \N \N 2026-01-31 02:23:23.888262 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "They have a shuttle bus between airport and their office, so very easy to get and return your car.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "When I returned the car they just quickly check the car and told me everything is OK.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "I get back my deposit immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 198}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "Suggest buy their full insurance.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 225}], "unmapped": []} b6eea4543cddbaf7 auto b27672bb-0cce-4196-96cf-0a52e939a094 447 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-65 Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 Quick check in and check out 31 56 \N \N \N 2026-01-31 02:23:52.731404 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great experience using ClickRent.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick check in and check out", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "regular shuttles", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 4a311e44d7466fd9 auto b27672bb-0cce-4196-96cf-0a52e939a094 423 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 3 3 \N 0.90 When I returned the car they just quickly check the car and told me everything is OK. 140 197 \N \N \N 2026-01-31 02:23:23.890117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "They have a shuttle bus between airport and their office, so very easy to get and return your car.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "When I returned the car they just quickly check the car and told me everything is OK.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "I get back my deposit immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 198}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "Suggest buy their full insurance.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 225}], "unmapped": []} b6eea4543cddbaf7 auto b27672bb-0cce-4196-96cf-0a52e939a094 424 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT + 3 3 \N 0.90 I get back my deposit immediately. 198 224 \N \N \N 2026-01-31 02:23:23.89203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "They have a shuttle bus between airport and their office, so very easy to get and return your car.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "When I returned the car they just quickly check the car and told me everything is OK.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "I get back my deposit immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 198}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "Suggest buy their full insurance.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 225}], "unmapped": []} b6eea4543cddbaf7 auto b27672bb-0cce-4196-96cf-0a52e939a094 5720 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE ± 2 2 \N 0.80 The music was a good mix, but too loud for the small room 78 116 \N \N \N 2026-01-31 15:18:20.804911 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "the club was kept clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "The music was a good mix, but too loud for the small room", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Bar service and coat service was good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 08b00936c10b2a2a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 125 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 I dont recommend. The Attendant gave me the inform... 0 50 \N \N \N 2026-01-31 02:05:46.989405 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 425 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Suggest buy their full insurance. 225 252 \N \N \N 2026-01-31 02:23:23.893848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "They have a shuttle bus between airport and their office, so very easy to get and return your car.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "When I returned the car they just quickly check the car and told me everything is OK.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "I get back my deposit immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 198}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "Suggest buy their full insurance.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 225}], "unmapped": []} b6eea4543cddbaf7 auto b27672bb-0cce-4196-96cf-0a52e939a094 431 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-60 Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I highly recommend it! 56 74 \N \N \N 2026-01-31 02:23:34.372958 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 74, "evidence": "I highly recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "the staff is super, kind and nice!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything was very easy and fast", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 399fa7b785fa6730 auto b27672bb-0cce-4196-96cf-0a52e939a094 426 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Would definitely rent again and recommend this place. 164 203 \N \N \N 2026-01-31 02:23:30.543201 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "The staff was very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "both the pick-up and drop-off was smooth", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 123}, {"details": null, "valence": "neutral", "end_char": 183, "evidence": "you have to ride their free shuttle to get to the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 145}], "unmapped": []} 3893093f5eaa4b04 auto b27672bb-0cce-4196-96cf-0a52e939a094 4539 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTMnA2STFBRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.50 Variedad 0 7 \N \N \N 2026-01-31 13:44:19.028228 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 7, "evidence": "Variedad", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} 7ae3a33a3f3489b3 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 427 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 Large variety of brand-new cars, in good condition 45 83 \N \N \N 2026-01-31 02:23:30.546229 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "The staff was very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "both the pick-up and drop-off was smooth", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 123}, {"details": null, "valence": "neutral", "end_char": 183, "evidence": "you have to ride their free shuttle to get to the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 145}], "unmapped": []} 3893093f5eaa4b04 auto b27672bb-0cce-4196-96cf-0a52e939a094 5641 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 3 \N 0.70 Its a never seen system when a single person or a couple is less welcome than a group of 3. 216 283 \N \N \N 2026-01-31 15:16:56.392728 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 215, "evidence": "The system you have is stupid and discriminatory.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "neutral", "end_char": 104, "evidence": "Thank you for your response.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 283, "evidence": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 216}], "unmapped": []} bf7a92434c577c6a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 428 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 The staff was very friendly 97 122 \N \N \N 2026-01-31 02:23:30.547681 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "The staff was very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "both the pick-up and drop-off was smooth", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 123}, {"details": null, "valence": "neutral", "end_char": 183, "evidence": "you have to ride their free shuttle to get to the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 145}], "unmapped": []} 3893093f5eaa4b04 auto b27672bb-0cce-4196-96cf-0a52e939a094 429 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 3 \N 0.80 both the pick-up and drop-off was smooth 123 157 \N \N \N 2026-01-31 02:23:30.54927 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "The staff was very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "both the pick-up and drop-off was smooth", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 123}, {"details": null, "valence": "neutral", "end_char": 183, "evidence": "you have to ride their free shuttle to get to the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 145}], "unmapped": []} 3893093f5eaa4b04 auto b27672bb-0cce-4196-96cf-0a52e939a094 430 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY 0 2 2 \N 0.70 you have to ride their free shuttle to get to the airport 145 183 \N \N \N 2026-01-31 02:23:30.550741 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "The staff was very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "both the pick-up and drop-off was smooth", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 123}, {"details": null, "valence": "neutral", "end_char": 183, "evidence": "you have to ride their free shuttle to get to the airport", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 145}], "unmapped": []} 3893093f5eaa4b04 auto b27672bb-0cce-4196-96cf-0a52e939a094 1324 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURaOWJiLVVBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:40:02.135712 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 435 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-61 Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 New Cars 20 28 \N \N \N 2026-01-31 02:23:39.185135 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 28, "evidence": "New Cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "Meeting place could be better advertised but once we figured that out, no problems getting the shuttle", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 7c6c1c25a9758942 auto b27672bb-0cce-4196-96cf-0a52e939a094 436 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-61 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Friendly genuine service 29 53 \N \N \N 2026-01-31 02:23:39.187096 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 28, "evidence": "New Cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "Meeting place could be better advertised but once we figured that out, no problems getting the shuttle", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 7c6c1c25a9758942 auto b27672bb-0cce-4196-96cf-0a52e939a094 437 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-61 Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY ± 2 2 \N 0.70 Meeting place could be better advertised but once we figured that out, no problems getting the shuttle 54 134 \N \N \N 2026-01-31 02:23:39.188892 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 28, "evidence": "New Cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "Meeting place could be better advertised but once we figured that out, no problems getting the shuttle", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 54}], "unmapped": []} 7c6c1c25a9758942 auto b27672bb-0cce-4196-96cf-0a52e939a094 438 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-62 Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 nobody … 112 118 \N \N \N 2026-01-31 02:23:42.976023 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 114, "evidence": "waited for an hour for the van", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 28, "evidence": "SCAMMERS", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 6f62c7436cb4c37f auto b27672bb-0cce-4196-96cf-0a52e939a094 439 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-62 Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 waited for an hour for the van 90 114 \N \N \N 2026-01-31 02:23:42.979012 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 114, "evidence": "waited for an hour for the van", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 28, "evidence": "SCAMMERS", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 6f62c7436cb4c37f auto b27672bb-0cce-4196-96cf-0a52e939a094 440 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-62 Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 2 3 \N 0.90 SCAMMERS 20 28 \N \N \N 2026-01-31 02:23:42.980793 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 114, "evidence": "waited for an hour for the van", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 28, "evidence": "SCAMMERS", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 6f62c7436cb4c37f auto b27672bb-0cce-4196-96cf-0a52e939a094 441 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-63 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Great price performance ratio 0 27 \N \N \N 2026-01-31 02:23:46.696737 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great price performance ratio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "very friendly and service oriented team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "even German speaking with Daniel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 64}], "unmapped": []} 0d6bd8d22caf1a0d auto b27672bb-0cce-4196-96cf-0a52e939a094 1325 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURaOWRpaW1nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:02.905466 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 443 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-63 Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION + 3 3 \N 0.90 even German speaking with Daniel 64 90 \N \N \N 2026-01-31 02:23:46.703157 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great price performance ratio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "very friendly and service oriented team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "even German speaking with Daniel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 64}], "unmapped": []} 0d6bd8d22caf1a0d auto b27672bb-0cce-4196-96cf-0a52e939a094 448 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-65 Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 3 3 \N 0.90 regular shuttles 57 70 \N \N \N 2026-01-31 02:23:52.733303 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great experience using ClickRent.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick check in and check out", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "regular shuttles", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 4a311e44d7466fd9 auto b27672bb-0cce-4196-96cf-0a52e939a094 126 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Save yourself from having to deal with the unhelpf... 0 50 \N \N \N 2026-01-31 02:05:46.989992 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 449 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-66 Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS - 2 3 \N 0.90 overcharging my security deposit 40 66 \N \N \N 2026-01-31 02:23:56.100175 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "overcharging my security deposit", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "their support is not doing anything so far", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "how could you trust such a company", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 6ff27eb87d36b895 auto b27672bb-0cce-4196-96cf-0a52e939a094 450 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-66 Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 their support is not doing anything so far 75 106 \N \N \N 2026-01-31 02:23:56.101296 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "overcharging my security deposit", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "their support is not doing anything so far", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "how could you trust such a company", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 6ff27eb87d36b895 auto b27672bb-0cce-4196-96cf-0a52e939a094 1326 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURwNWN2VElREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:03.582364 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 451 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-66 Entertainment.GoKarts ENTERTAINMENT 1.2 HONESTY - 2 3 \N 0.90 how could you trust such a company 134 162 \N \N \N 2026-01-31 02:23:56.102044 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "overcharging my security deposit", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "their support is not doing anything so far", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "how could you trust such a company", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 6ff27eb87d36b895 auto b27672bb-0cce-4196-96cf-0a52e939a094 452 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-67 Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 clickRent experience was the best one 66 90 \N \N \N 2026-01-31 02:24:00.293185 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Everything was smooth and clear", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": []} 905a5b3e138edd27 auto b27672bb-0cce-4196-96cf-0a52e939a094 453 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-67 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 super fast and friendly service 116 144 \N \N \N 2026-01-31 02:24:00.299247 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Everything was smooth and clear", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": []} 905a5b3e138edd27 auto b27672bb-0cce-4196-96cf-0a52e939a094 454 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-67 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 super welcoming 174 189 \N \N \N 2026-01-31 02:24:00.301398 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Everything was smooth and clear", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": []} 905a5b3e138edd27 auto b27672bb-0cce-4196-96cf-0a52e939a094 455 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-67 Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 3 3 \N 0.90 Everything was smooth and clear 90 116 \N \N \N 2026-01-31 02:24:00.303332 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Everything was smooth and clear", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": []} 905a5b3e138edd27 auto b27672bb-0cce-4196-96cf-0a52e939a094 456 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-68 Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 great customer service 22 43 \N \N \N 2026-01-31 02:24:03.519751 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "great customer service", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "very nice affordable cars", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "I had a smooth rent", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7b3ed508bc97fbf5 auto b27672bb-0cce-4196-96cf-0a52e939a094 457 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-68 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 very nice affordable cars 48 72 \N \N \N 2026-01-31 02:24:03.523692 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "great customer service", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "very nice affordable cars", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "I had a smooth rent", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7b3ed508bc97fbf5 auto b27672bb-0cce-4196-96cf-0a52e939a094 1327 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNSXzdMbzVBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 03:40:04.862624 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": []} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 458 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-68 Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 I had a smooth rent 0 18 \N \N \N 2026-01-31 02:24:03.525564 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "great customer service", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "very nice affordable cars", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "I had a smooth rent", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7b3ed508bc97fbf5 auto b27672bb-0cce-4196-96cf-0a52e939a094 459 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-69 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Really nice and helpful people 0 30 \N \N \N 2026-01-31 02:24:08.167757 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}], "unmapped": []} 21cd9d5600ddd1a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 460 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-69 Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 car was clean and brand new 66 88 \N \N \N 2026-01-31 02:24:08.169025 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}], "unmapped": []} 21cd9d5600ddd1a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 484 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 3 \N 0.90 Waiting in the queue for 100 minutes is not the way to start your trip. 43 83 \N \N \N 2026-01-31 02:24:42.46532 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Terrible\\nHorrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 6}, {"details": null, "valence": "negative", "end_char": 91, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 84}], "unmapped": []} d69cc0c3f075d29e auto b27672bb-0cce-4196-96cf-0a52e939a094 461 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-69 Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Big recommend!!! 139 154 \N \N \N 2026-01-31 02:24:08.16996 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}], "unmapped": []} 21cd9d5600ddd1a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 462 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor rev-69 Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 whole rental went really smoothly 42 69 \N \N \N 2026-01-31 02:24:08.171018 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}], "unmapped": []} 21cd9d5600ddd1a4 auto b27672bb-0cce-4196-96cf-0a52e939a094 463 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 1 2 \N 0.80 better mark where the shuttle is 29 56 \N \N \N 2026-01-31 02:24:12.812628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "better mark where the shuttle is", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "everything was fine", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 70}], "unmapped": []} 5109cbcabfcc9e42 auto b27672bb-0cce-4196-96cf-0a52e939a094 464 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 1 2 \N 0.80 everything was fine 70 88 \N \N \N 2026-01-31 02:24:12.816301 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "better mark where the shuttle is", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "everything was fine", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 70}], "unmapped": []} 5109cbcabfcc9e42 auto b27672bb-0cce-4196-96cf-0a52e939a094 760 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 The car and the service were great. 0 36 \N \N \N 2026-01-31 02:30:46.892208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The car and the service were great.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "the shattle from the airpors is not simple to get", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 56}], "unmapped": []} e49cc4e4e8a077b4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 465 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 The station is about 5 minutes from the airport 0 39 \N \N \N 2026-01-31 02:24:22.491989 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "The station is about 5 minutes from the airport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the shuttle worked excellently", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "My car was like new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "I would book again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} be087ccfea940265 auto b27672bb-0cce-4196-96cf-0a52e939a094 466 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 the shuttle worked excellently 41 66 \N \N \N 2026-01-31 02:24:22.495475 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "The station is about 5 minutes from the airport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the shuttle worked excellently", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "My car was like new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "I would book again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} be087ccfea940265 auto b27672bb-0cce-4196-96cf-0a52e939a094 467 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 My car was like new 68 87 \N \N \N 2026-01-31 02:24:22.497187 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "The station is about 5 minutes from the airport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the shuttle worked excellently", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "My car was like new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "I would book again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} be087ccfea940265 auto b27672bb-0cce-4196-96cf-0a52e939a094 468 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 3 3 \N 0.90 check-in and check-out were very well organized 89 126 \N \N \N 2026-01-31 02:24:22.498737 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "The station is about 5 minutes from the airport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the shuttle worked excellently", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "My car was like new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "I would book again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} be087ccfea940265 auto b27672bb-0cce-4196-96cf-0a52e939a094 469 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT + 3 3 \N 0.90 I would book again 128 144 \N \N \N 2026-01-31 02:24:22.500538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "The station is about 5 minutes from the airport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the shuttle worked excellently", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "My car was like new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "I would book again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} be087ccfea940265 auto b27672bb-0cce-4196-96cf-0a52e939a094 1328 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURla3ByblFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:05.613022 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 470 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 I do not recommend at all. 0 22 \N \N \N 2026-01-31 02:24:27.259217 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 103}], "unmapped": []} 7165737853ec2a32 auto b27672bb-0cce-4196-96cf-0a52e939a094 471 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 3 3 \N 0.90 This company is a scam and will take your money. 23 63 \N \N \N 2026-01-31 02:24:27.261034 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 103}], "unmapped": []} 7165737853ec2a32 auto b27672bb-0cce-4196-96cf-0a52e939a094 4540 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNvai1PajRRRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 2 2 \N 0.50 Juguetes 0 8 \N \N \N 2026-01-31 13:44:20.460416 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 8, "evidence": "Juguetes", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} 2afea2884bf55290 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 472 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ETHICS - 3 3 \N 0.90 They claim fake damages and make you pay for them. 64 102 \N \N \N 2026-01-31 02:24:27.262153 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 103}], "unmapped": []} 7165737853ec2a32 auto b27672bb-0cce-4196-96cf-0a52e939a094 473 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 2 3 \N 0.80 I recommend renting from companies that are based at the airport. 103 151 \N \N \N 2026-01-31 02:24:27.264272 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 103}], "unmapped": []} 7165737853ec2a32 auto b27672bb-0cce-4196-96cf-0a52e939a094 474 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Excellent, friendly and beyond helpful service 0 49 \N \N \N 2026-01-31 02:24:30.717576 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "Excellent, friendly and beyond helpful service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Shuttle to and from airport takes away the stress of trying to figure out the complicated roads", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Will defo recommend 👌", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 119}], "unmapped": []} 74ce1e08f1643689 auto b27672bb-0cce-4196-96cf-0a52e939a094 475 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 Shuttle to and from airport takes away the stress of trying to figure out the complicated roads 50 118 \N \N \N 2026-01-31 02:24:30.720892 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "Excellent, friendly and beyond helpful service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Shuttle to and from airport takes away the stress of trying to figure out the complicated roads", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Will defo recommend 👌", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 119}], "unmapped": []} 74ce1e08f1643689 auto b27672bb-0cce-4196-96cf-0a52e939a094 1329 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNPazRxQTZBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 03:40:06.764767 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": []} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 476 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Will defo recommend 👌 119 139 \N \N \N 2026-01-31 02:24:30.723193 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "Excellent, friendly and beyond helpful service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Shuttle to and from airport takes away the stress of trying to figure out the complicated roads", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Will defo recommend 👌", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 119}], "unmapped": []} 74ce1e08f1643689 auto b27672bb-0cce-4196-96cf-0a52e939a094 477 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 1 2 \N 0.90 Employeey were nice. 0 20 \N \N \N 2026-01-31 02:24:35.016544 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "They send back the deposit on that day.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "neutral", "end_char": 81, "evidence": "We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus.", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 22}], "unmapped": []} e7e3d38c2e595e79 auto b27672bb-0cce-4196-96cf-0a52e939a094 478 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I really recomend it! 118 136 \N \N \N 2026-01-31 02:24:35.01951 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "They send back the deposit on that day.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "neutral", "end_char": 81, "evidence": "We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus.", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 22}], "unmapped": []} e7e3d38c2e595e79 auto b27672bb-0cce-4196-96cf-0a52e939a094 479 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 2 3 \N 0.90 They send back the deposit on that day. 82 113 \N \N \N 2026-01-31 02:24:35.02138 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "They send back the deposit on that day.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "neutral", "end_char": 81, "evidence": "We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus.", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 22}], "unmapped": []} e7e3d38c2e595e79 auto b27672bb-0cce-4196-96cf-0a52e939a094 480 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY 0 1 2 \N 0.70 We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. 22 81 \N \N \N 2026-01-31 02:24:35.022937 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "They send back the deposit on that day.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "neutral", "end_char": 81, "evidence": "We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus.", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 22}], "unmapped": []} e7e3d38c2e595e79 auto b27672bb-0cce-4196-96cf-0a52e939a094 481 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Very friendly and helpfull staff. 0 30 \N \N \N 2026-01-31 02:24:37.895771 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very friendly and helpfull staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick and correct in service.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "very well recomended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 57}], "unmapped": []} 7a34c1bdfb16c400 auto b27672bb-0cce-4196-96cf-0a52e939a094 1330 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNXbHJLcFF3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 03:40:08.168513 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 482 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 Quick and correct in service. 31 56 \N \N \N 2026-01-31 02:24:37.899307 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very friendly and helpfull staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick and correct in service.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "very well recomended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 57}], "unmapped": []} 7a34c1bdfb16c400 auto b27672bb-0cce-4196-96cf-0a52e939a094 483 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 very well recomended. 57 78 \N \N \N 2026-01-31 02:24:37.901322 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very friendly and helpfull staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick and correct in service.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "very well recomended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 57}], "unmapped": []} 7a34c1bdfb16c400 auto b27672bb-0cce-4196-96cf-0a52e939a094 4596 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNzN1pYOWNnEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.852151 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 485 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.80 Terrible\nHorrible 6 20 \N \N \N 2026-01-31 02:24:42.467634 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Terrible\\nHorrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 6}, {"details": null, "valence": "negative", "end_char": 91, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 84}], "unmapped": []} d69cc0c3f075d29e auto b27672bb-0cce-4196-96cf-0a52e939a094 486 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.70 No Bueno 84 91 \N \N \N 2026-01-31 02:24:42.469602 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Terrible\\nHorrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 6}, {"details": null, "valence": "negative", "end_char": 91, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 84}], "unmapped": []} d69cc0c3f075d29e auto b27672bb-0cce-4196-96cf-0a52e939a094 487 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER - 2 3 \N 0.90 treated us very bad 36 54 \N \N \N 2026-01-31 02:24:45.396175 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "treated us very bad", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "Not professional at all", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "i don’t recommend", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 58}], "unmapped": []} 72e93e9f5d0a3999 auto b27672bb-0cce-4196-96cf-0a52e939a094 488 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMPETENCE - 2 3 \N 0.90 Not professional at all 70 90 \N \N \N 2026-01-31 02:24:45.399201 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "treated us very bad", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "Not professional at all", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "i don’t recommend", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 58}], "unmapped": []} 72e93e9f5d0a3999 auto b27672bb-0cce-4196-96cf-0a52e939a094 489 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 2 3 \N 0.90 i don’t recommend 58 73 \N \N \N 2026-01-31 02:24:45.401328 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "treated us very bad", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "Not professional at all", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "i don’t recommend", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 58}], "unmapped": []} 72e93e9f5d0a3999 auto b27672bb-0cce-4196-96cf-0a52e939a094 490 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION + 3 3 \N 0.90 Excellent service! 0 16 \N \N \N 2026-01-31 02:24:49.159436 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service!", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "If that’s your case, go to the uppermost floor and exit on gate number 2.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Cross the street and enter the parking.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a4f12b88efb44d8 auto b27672bb-0cce-4196-96cf-0a52e939a094 491 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 If that’s your case, go to the uppermost floor and exit on gate number 2. 43 90 \N \N \N 2026-01-31 02:24:49.162287 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service!", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "If that’s your case, go to the uppermost floor and exit on gate number 2.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Cross the street and enter the parking.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a4f12b88efb44d8 auto b27672bb-0cce-4196-96cf-0a52e939a094 1331 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURtOU1ibUpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 03:40:09.562401 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.5}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 492 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 Cross the street and enter the parking. 134 162 \N \N \N 2026-01-31 02:24:49.16383 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service!", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "If that’s your case, go to the uppermost floor and exit on gate number 2.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Cross the street and enter the parking.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a4f12b88efb44d8 auto b27672bb-0cce-4196-96cf-0a52e939a094 493 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 One of the best rental car experiences I've had. 0 44 \N \N \N 2026-01-31 02:24:51.243255 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "One of the best rental car experiences I've had.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "Great service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 45}], "unmapped": []} 54515605300b9f20 auto b27672bb-0cce-4196-96cf-0a52e939a094 494 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 3 3 \N 0.90 Great service 45 58 \N \N \N 2026-01-31 02:24:51.246555 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "One of the best rental car experiences I've had.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "Great service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 45}], "unmapped": []} 54515605300b9f20 auto b27672bb-0cce-4196-96cf-0a52e939a094 495 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Carmen from the Gran Canaria branch who served us was wonderful. So friendly 42 83 \N \N \N 2026-01-31 02:24:54.567604 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 88}], "unmapped": []} af380c74ab1e9e2b auto b27672bb-0cce-4196-96cf-0a52e939a094 496 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Car pick up was seamless 0 24 \N \N \N 2026-01-31 02:24:54.570719 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 88}], "unmapped": []} af380c74ab1e9e2b auto b27672bb-0cce-4196-96cf-0a52e939a094 497 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION + 3 3 \N 0.90 Car is excellent and brand new 88 116 \N \N \N 2026-01-31 02:24:54.572446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 88}], "unmapped": []} af380c74ab1e9e2b auto b27672bb-0cce-4196-96cf-0a52e939a094 498 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 3 3 \N 0.90 Very reliable 36 48 \N \N \N 2026-01-31 02:25:00.89534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Very reliable", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "not trying to rip off", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Strongly suggest to choose this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} dadf13ff231dc8f5 auto b27672bb-0cce-4196-96cf-0a52e939a094 499 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 HONESTY + 3 3 \N 0.90 not trying to rip off 50 70 \N \N \N 2026-01-31 02:25:00.898534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Very reliable", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "not trying to rip off", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Strongly suggest to choose this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} dadf13ff231dc8f5 auto b27672bb-0cce-4196-96cf-0a52e939a094 500 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Strongly suggest to choose this company 0 36 \N \N \N 2026-01-31 02:25:00.899827 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Very reliable", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "not trying to rip off", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Strongly suggest to choose this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} dadf13ff231dc8f5 auto b27672bb-0cce-4196-96cf-0a52e939a094 501 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND - 3 3 \N 0.90 I do not recommend them 114 132 \N \N \N 2026-01-31 02:25:05.842257 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "I do not recommend them", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "did not get a refund or partly refund", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "cancels the calls several times", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 105}], "unmapped": []} b9c315e13e38acea auto b27672bb-0cce-4196-96cf-0a52e939a094 502 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 3 3 \N 0.90 they don’t care to manage shuttle bus for delayed flight’s 36 78 \N \N \N 2026-01-31 02:25:05.846149 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "I do not recommend them", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "did not get a refund or partly refund", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "cancels the calls several times", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 105}], "unmapped": []} b9c315e13e38acea auto b27672bb-0cce-4196-96cf-0a52e939a094 503 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOVERY - 3 3 \N 0.90 did not get a refund or partly refund 79 104 \N \N \N 2026-01-31 02:25:05.847839 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "I do not recommend them", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "did not get a refund or partly refund", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "cancels the calls several times", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 105}], "unmapped": []} b9c315e13e38acea auto b27672bb-0cce-4196-96cf-0a52e939a094 504 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS - 3 3 \N 0.90 cancels the calls several times 105 129 \N \N \N 2026-01-31 02:25:05.849634 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "I do not recommend them", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "did not get a refund or partly refund", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "cancels the calls several times", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 105}], "unmapped": []} b9c315e13e38acea auto b27672bb-0cce-4196-96cf-0a52e939a094 505 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Would definitely use again and recommend 47 78 \N \N \N 2026-01-31 02:25:09.317652 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Would definitely use again and recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "good daily rate", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 37b96f8317de3f7f auto b27672bb-0cce-4196-96cf-0a52e939a094 1256 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNaX0l2NHhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato por parte del personal es inmejorable 36 71 \N \N \N 2026-01-31 03:38:58.858415 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 71, "evidence": "el trato por parte del personal es inmejorable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Estoy súper contenta con la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c3b00c13a456a13d auto 22c559a8-fabc-4916-9961-bcbd61225266 506 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 good daily rate 25 39 \N \N \N 2026-01-31 02:25:09.320946 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Would definitely use again and recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "good daily rate", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 37b96f8317de3f7f auto b27672bb-0cce-4196-96cf-0a52e939a094 507 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY + 3 3 \N 0.90 Efficient service 0 16 \N \N \N 2026-01-31 02:25:09.323037 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Would definitely use again and recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "good daily rate", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 37b96f8317de3f7f auto b27672bb-0cce-4196-96cf-0a52e939a094 508 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 the People there are nice and helpfull 85 116 \N \N \N 2026-01-31 02:25:12.614622 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "the People there are nice and helpfull", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 120}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "it takes about 5min from airport there", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 60}], "unmapped": []} bd8e47732670b190 auto b27672bb-0cce-4196-96cf-0a52e939a094 509 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION + 3 3 \N 0.90 speak good english 120 136 \N \N \N 2026-01-31 02:25:12.617633 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "the People there are nice and helpfull", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 120}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "it takes about 5min from airport there", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 60}], "unmapped": []} bd8e47732670b190 auto b27672bb-0cce-4196-96cf-0a52e939a094 510 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 it takes about 5min from airport there 60 82 \N \N \N 2026-01-31 02:25:12.619319 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "the People there are nice and helpfull", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 120}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "it takes about 5min from airport there", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 60}], "unmapped": []} bd8e47732670b190 auto b27672bb-0cce-4196-96cf-0a52e939a094 511 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 3 \N 0.70 We had to wait a while for the shuttle from the airport to the office 0 56 \N \N \N 2026-01-31 02:25:16.755406 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "We had to wait a while for the shuttle from the airport to the office", "intensity": 4, "primitive": "SPEED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Carlos in the office was very friendly!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "the overall experience was great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 60}], "unmapped": []} a17abac47ef6a666 auto b27672bb-0cce-4196-96cf-0a52e939a094 761 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 2 \N 0.80 the shattle from the airpors is not simple to get 56 92 \N \N \N 2026-01-31 02:30:46.895269 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The car and the service were great.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "the shattle from the airpors is not simple to get", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 56}], "unmapped": []} e49cc4e4e8a077b4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 799 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-65 Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Quick check in and check out 31 56 \N \N \N 2026-01-31 02:31:58.271466 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great experience using ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick check in and check out", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "regular shuttles", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 61}], "unmapped": []} 29b3ea46ac9b1846 auto 07c01d3a-3443-4031-910c-7b6feba2c100 512 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 3 \N 0.90 Carlos in the office was very friendly! 70 101 \N \N \N 2026-01-31 02:25:16.758013 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "We had to wait a while for the shuttle from the airport to the office", "intensity": 4, "primitive": "SPEED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Carlos in the office was very friendly!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "the overall experience was great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 60}], "unmapped": []} a17abac47ef6a666 auto b27672bb-0cce-4196-96cf-0a52e939a094 513 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 2 3 \N 0.90 the overall experience was great 60 80 \N \N \N 2026-01-31 02:25:16.759712 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "We had to wait a while for the shuttle from the airport to the office", "intensity": 4, "primitive": "SPEED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Carlos in the office was very friendly!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "the overall experience was great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 60}], "unmapped": []} a17abac47ef6a666 auto b27672bb-0cce-4196-96cf-0a52e939a094 514 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY + 3 3 \N 0.90 Excellent service , very quick and efficient bookings 0 56 \N \N \N 2026-01-31 02:25:20.54237 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Excellent service , very quick and efficient bookings", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "And brand new vehicles 😁", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 116}], "unmapped": []} ade7db1274dd1f4f auto b27672bb-0cce-4196-96cf-0a52e939a094 515 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS + 3 3 \N 0.90 no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc) 56 116 \N \N \N 2026-01-31 02:25:20.545451 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Excellent service , very quick and efficient bookings", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "And brand new vehicles 😁", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 116}], "unmapped": []} ade7db1274dd1f4f auto b27672bb-0cce-4196-96cf-0a52e939a094 516 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 And brand new vehicles 😁 116 138 \N \N \N 2026-01-31 02:25:20.547077 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Excellent service , very quick and efficient bookings", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "And brand new vehicles 😁", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 116}], "unmapped": []} ade7db1274dd1f4f auto b27672bb-0cce-4196-96cf-0a52e939a094 517 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Carlos in Gran Canaria was very helpful 0 38 \N \N \N 2026-01-31 02:25:24.534352 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Carlos in Gran Canaria was very helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "a very good price for a very good car", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "a very simple, easy car hire", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} eb67b1958092890b auto b27672bb-0cce-4196-96cf-0a52e939a094 518 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS + 3 3 \N 0.90 a very good price for a very good car 70 102 \N \N \N 2026-01-31 02:25:24.536807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Carlos in Gran Canaria was very helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "a very good price for a very good car", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "a very simple, easy car hire", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} eb67b1958092890b auto b27672bb-0cce-4196-96cf-0a52e939a094 4541 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNDdHF5R0pnEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL + 2 2 \N 0.90 Buenos precios 0 13 \N \N \N 2026-01-31 13:44:21.591855 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buenos precios", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} cbb2f663d0351987 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 519 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 a very simple, easy car hire 39 66 \N \N \N 2026-01-31 02:25:24.538041 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Carlos in Gran Canaria was very helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "a very good price for a very good car", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "a very simple, easy car hire", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} eb67b1958092890b auto b27672bb-0cce-4196-96cf-0a52e939a094 520 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I strongly recommend this rental in Las Palmas 56 85 \N \N \N 2026-01-31 02:25:28.216038 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "I strongly recommend this rental in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Very professional, kind, effective and entertaining", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Carmen, Antonio (shuttle service) and Isaac have been dealing with me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 86}], "unmapped": []} 709dbb09042fb6da auto b27672bb-0cce-4196-96cf-0a52e939a094 521 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 COMPETENCE + 3 3 \N 0.90 Very professional, kind, effective and entertaining 0 43 \N \N \N 2026-01-31 02:25:28.225685 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "I strongly recommend this rental in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Very professional, kind, effective and entertaining", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Carmen, Antonio (shuttle service) and Isaac have been dealing with me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 86}], "unmapped": []} 709dbb09042fb6da auto b27672bb-0cce-4196-96cf-0a52e939a094 522 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 Carmen, Antonio (shuttle service) and Isaac have been dealing with me 86 134 \N \N \N 2026-01-31 02:25:28.229468 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "I strongly recommend this rental in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Very professional, kind, effective and entertaining", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Carmen, Antonio (shuttle service) and Isaac have been dealing with me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 86}], "unmapped": []} 709dbb09042fb6da auto b27672bb-0cce-4196-96cf-0a52e939a094 523 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Really recommend that car rental company 41 78 \N \N \N 2026-01-31 02:25:30.703404 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Really recommend that car rental company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Everything went fast and without any problems", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25d9d1a69640f2ba auto b27672bb-0cce-4196-96cf-0a52e939a094 524 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 Everything went fast and without any problems 0 36 \N \N \N 2026-01-31 02:25:30.705223 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Really recommend that car rental company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Everything went fast and without any problems", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25d9d1a69640f2ba auto b27672bb-0cce-4196-96cf-0a52e939a094 525 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Everything went smoothly. 0 24 \N \N \N 2026-01-31 02:25:33.823141 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Everything went smoothly.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Car was in excellent shape", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "the shuttle bus is very convenient", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}], "unmapped": []} 709d6f544c5f6631 auto b27672bb-0cce-4196-96cf-0a52e939a094 526 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION + 3 3 \N 0.90 Car was in excellent shape 25 48 \N \N \N 2026-01-31 02:25:33.828308 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Everything went smoothly.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Car was in excellent shape", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "the shuttle bus is very convenient", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}], "unmapped": []} 709d6f544c5f6631 auto b27672bb-0cce-4196-96cf-0a52e939a094 127 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.50 I rented a car in Gran Canaria from ClickRent. It ... 0 50 {general} \N \N 2026-01-31 02:05:46.990625 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 527 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 3 3 \N 0.90 the shuttle bus is very convenient 49 78 \N \N \N 2026-01-31 02:25:33.829671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Everything went smoothly.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Car was in excellent shape", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "the shuttle bus is very convenient", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}], "unmapped": []} 709d6f544c5f6631 auto b27672bb-0cce-4196-96cf-0a52e939a094 528 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Antonio who was very nice 36 60 \N \N \N 2026-01-31 02:25:37.04073 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 60, "evidence": "Antonio who was very nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Carlos who was also very very good", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "The whole experience was painless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fe299e0519c2dca auto b27672bb-0cce-4196-96cf-0a52e939a094 529 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Carlos who was also very very good 75 103 \N \N \N 2026-01-31 02:25:37.043418 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 60, "evidence": "Antonio who was very nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Carlos who was also very very good", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "The whole experience was painless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fe299e0519c2dca auto b27672bb-0cce-4196-96cf-0a52e939a094 530 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 The whole experience was painless 0 34 \N \N \N 2026-01-31 02:25:37.046471 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 60, "evidence": "Antonio who was very nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Carlos who was also very very good", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "The whole experience was painless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fe299e0519c2dca auto b27672bb-0cce-4196-96cf-0a52e939a094 531 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 everything good 10 25 \N \N \N 2026-01-31 02:25:38.371365 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "everything good", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}], "unmapped": []} 305ede68a8e40158 auto b27672bb-0cce-4196-96cf-0a52e939a094 532 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_LEVEL - 2 3 \N 0.90 450 euros 15 27 \N \N \N 2026-01-31 02:25:40.282756 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "450 euros", "intensity": 4, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "Never again!!", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 28}], "unmapped": []} 9dab777a82570e3f auto b27672bb-0cce-4196-96cf-0a52e939a094 533 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 3 3 \N 0.80 Never again!! 28 39 \N \N \N 2026-01-31 02:25:40.285654 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "450 euros", "intensity": 4, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "Never again!!", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 28}], "unmapped": []} 9dab777a82570e3f auto b27672bb-0cce-4196-96cf-0a52e939a094 534 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Really recommend! 20 36 \N \N \N 2026-01-31 02:25:42.768478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Really recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Fast & professional.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4280a2d02165d6a6 auto b27672bb-0cce-4196-96cf-0a52e939a094 128 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 This is absolutely the worse experience I've ever ... 0 50 {general} \N \N 2026-01-31 02:05:46.991146 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 535 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Fast & professional. 0 18 \N \N \N 2026-01-31 02:25:42.771563 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Really recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Fast & professional.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4280a2d02165d6a6 auto b27672bb-0cce-4196-96cf-0a52e939a094 4597 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNzcXVPd3FnRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.852724 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 536 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Nice people 0 10 \N \N \N 2026-01-31 02:25:46.713202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "no hidden fees", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "good cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 41}], "unmapped": []} 6df473b9fc77d113 auto b27672bb-0cce-4196-96cf-0a52e939a094 537 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY + 3 3 \N 0.90 no hidden fees 12 25 \N \N \N 2026-01-31 02:25:46.716723 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "no hidden fees", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "good cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 41}], "unmapped": []} 6df473b9fc77d113 auto b27672bb-0cce-4196-96cf-0a52e939a094 538 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 easy process 27 39 \N \N \N 2026-01-31 02:25:46.71847 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "no hidden fees", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "good cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 41}], "unmapped": []} 6df473b9fc77d113 auto b27672bb-0cce-4196-96cf-0a52e939a094 539 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 good cars 41 50 \N \N \N 2026-01-31 02:25:46.719979 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "no hidden fees", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "good cars", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 41}], "unmapped": []} 6df473b9fc77d113 auto b27672bb-0cce-4196-96cf-0a52e939a094 540 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 🫡😉👍 0 6 \N \N \N 2026-01-31 02:25:48.060848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 6, "evidence": "🫡😉👍", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4476f5ddb399cc35 auto b27672bb-0cce-4196-96cf-0a52e939a094 541 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_TRANSPARENCY - 2 3 \N 0.90 Too many hidden charges 0 22 \N \N \N 2026-01-31 02:25:49.525575 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "Too many hidden charges", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 13f01676d1bab4b5 auto b27672bb-0cce-4196-96cf-0a52e939a094 542 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Adrian S. Is such a nice Guy! 0 27 \N \N \N 2026-01-31 02:25:51.808516 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Adrian S. Is such a nice Guy!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Good work", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 29}], "unmapped": []} 99500bd8cf3904d6 auto b27672bb-0cce-4196-96cf-0a52e939a094 543 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 Good work 29 38 \N \N \N 2026-01-31 02:25:51.811069 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Adrian S. Is such a nice Guy!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Good work", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 29}], "unmapped": []} 99500bd8cf3904d6 auto b27672bb-0cce-4196-96cf-0a52e939a094 544 a3813665-ea23-4fb0-aab7-b282ef9443e4 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Very good service from Carmen and Francisco. 0 41 \N \N \N 2026-01-31 02:25:53.427956 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Very good service from Carmen and Francisco.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 855ab96ae8f92780 auto b27672bb-0cce-4196-96cf-0a52e939a094 545 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 3 \N 0.90 greeted me with a smile 56 80 \N \N \N 2026-01-31 02:26:06.477324 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 366}], "unmapped": []} 67f0e87b93f80cca auto 07c01d3a-3443-4031-910c-7b6feba2c100 546 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY ± 2 2 \N 0.80 need to wait for 2+ hours if the check in is understaffed 174 218 \N \N \N 2026-01-31 02:26:06.479467 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 366}], "unmapped": []} 67f0e87b93f80cca auto 07c01d3a-3443-4031-910c-7b6feba2c100 547 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMFORT + 2 3 \N 0.90 Very comfortable ride 366 389 \N \N \N 2026-01-31 02:26:06.480536 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 366}], "unmapped": []} 67f0e87b93f80cca auto 07c01d3a-3443-4031-910c-7b6feba2c100 548 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY - 2 3 \N 0.90 the initial price looks to good to be true 4 37 \N \N \N 2026-01-31 02:26:10.300406 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "the initial price looks to good to be true", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "they do not stick to their own contract", "intensity": 4, "primitive": "PROMISES", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 195}], "unmapped": []} 65409b15f402c34d auto 07c01d3a-3443-4031-910c-7b6feba2c100 549 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 PROMISES - 2 3 \N 0.90 they do not stick to their own contract 85 116 \N \N \N 2026-01-31 02:26:10.303875 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "the initial price looks to good to be true", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "they do not stick to their own contract", "intensity": 4, "primitive": "PROMISES", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 195}], "unmapped": []} 65409b15f402c34d auto 07c01d3a-3443-4031-910c-7b6feba2c100 550 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 I CONSIDER AS CHEATING!!! 195 218 \N \N \N 2026-01-31 02:26:10.305545 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "the initial price looks to good to be true", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "they do not stick to their own contract", "intensity": 4, "primitive": "PROMISES", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 195}], "unmapped": []} 65409b15f402c34d auto 07c01d3a-3443-4031-910c-7b6feba2c100 568 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Staff is super friendly (they speak English and Spanish fluently) 133 179 \N \N \N 2026-01-31 02:26:31.832322 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 133}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 179}], "unmapped": []} 6420217188cf80a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 551 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 Waited shuttle as the driver needed to check damage on the car. 0 0 \N \N \N 2026-01-31 02:26:15.848998 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Received damaged car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8ac1824d1ca7911e auto 07c01d3a-3443-4031-910c-7b6feba2c100 552 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 Received damaged car. 0 0 \N \N \N 2026-01-31 02:26:15.855365 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Received damaged car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8ac1824d1ca7911e auto 07c01d3a-3443-4031-910c-7b6feba2c100 553 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.80 Was charged another 60€ for managing the damage. 0 0 \N \N \N 2026-01-31 02:26:15.857533 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Received damaged car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8ac1824d1ca7911e auto 07c01d3a-3443-4031-910c-7b6feba2c100 554 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.80 Couldn't find any of this info in terms and conditions. 0 0 \N \N \N 2026-01-31 02:26:15.85899 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Received damaged car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8ac1824d1ca7911e auto 07c01d3a-3443-4031-910c-7b6feba2c100 569 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 got the keys quickly both times and return was also very unproblematic and quick. 179 224 \N \N \N 2026-01-31 02:26:31.834006 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 133}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 179}], "unmapped": []} 6420217188cf80a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 555 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 AMBIANCE - 2 3 \N 0.90 Negative atmosphere in the office people are not happy with service. 0 0 \N \N \N 2026-01-31 02:26:15.860669 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Received damaged car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8ac1824d1ca7911e auto 07c01d3a-3443-4031-910c-7b6feba2c100 570 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 We waited 50min for one. 118 136 \N \N \N 2026-01-31 02:26:36.600655 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 274, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 373}], "unmapped": [{"label": "Overall Recommendation", "evidence": "avoid this place!", "confidence": 0.9}]} f2d8ba076efda66e auto 07c01d3a-3443-4031-910c-7b6feba2c100 556 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 Left at the airport with no way of contacting. 0 42 \N \N \N 2026-01-31 02:26:21.354034 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 42, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "we were told the car we'd booked was no longer available", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "it is nothing short of a scam.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 563}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 634}], "unmapped": []} 75a888dc67eb63f1 auto 07c01d3a-3443-4031-910c-7b6feba2c100 557 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 Tried calling 17 times over the period of an hour but got "line busy" every time 43 104 \N \N \N 2026-01-31 02:26:21.357287 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 42, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "we were told the car we'd booked was no longer available", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "it is nothing short of a scam.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 563}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 634}], "unmapped": []} 75a888dc67eb63f1 auto 07c01d3a-3443-4031-910c-7b6feba2c100 562 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 2 3 \N 0.90 Deposit came back right away 31 56 \N \N \N 2026-01-31 02:26:26.914836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Deposit came back right away", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The pickup service was arranged very well", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 193}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 234}], "unmapped": []} 231eae537d5cfb05 auto 07c01d3a-3443-4031-910c-7b6feba2c100 558 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 we were told the car we'd booked was no longer available 267 313 \N \N \N 2026-01-31 02:26:21.359075 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 42, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "we were told the car we'd booked was no longer available", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "it is nothing short of a scam.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 563}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 634}], "unmapped": []} 75a888dc67eb63f1 auto 07c01d3a-3443-4031-910c-7b6feba2c100 559 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 3 3 \N 0.90 it is nothing short of a scam. 563 586 \N \N \N 2026-01-31 02:26:21.360613 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 42, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "we were told the car we'd booked was no longer available", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "it is nothing short of a scam.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 563}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 634}], "unmapped": []} 75a888dc67eb63f1 auto 07c01d3a-3443-4031-910c-7b6feba2c100 571 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 the car electrics went down twice on the motorway. 239 274 \N \N \N 2026-01-31 02:26:36.604088 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 274, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 373}], "unmapped": [{"label": "Overall Recommendation", "evidence": "avoid this place!", "confidence": 0.9}]} f2d8ba076efda66e auto 07c01d3a-3443-4031-910c-7b6feba2c100 560 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 Predictably, we received no response from them. 634 670 \N \N \N 2026-01-31 02:26:21.362601 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 42, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "we were told the car we'd booked was no longer available", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "it is nothing short of a scam.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 563}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 634}], "unmapped": []} 75a888dc67eb63f1 auto 07c01d3a-3443-4031-910c-7b6feba2c100 561 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 2 3 \N 0.90 pickup was easy and so was the return 0 30 \N \N \N 2026-01-31 02:26:26.913761 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Deposit came back right away", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The pickup service was arranged very well", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 193}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 234}], "unmapped": []} 231eae537d5cfb05 auto 07c01d3a-3443-4031-910c-7b6feba2c100 563 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 The pickup service was arranged very well 57 92 \N \N \N 2026-01-31 02:26:26.91574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Deposit came back right away", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The pickup service was arranged very well", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 193}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 234}], "unmapped": []} 231eae537d5cfb05 auto 07c01d3a-3443-4031-910c-7b6feba2c100 564 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY ± 2 2 \N 0.70 booking directly with them would have been cheaper 193 233 \N \N \N 2026-01-31 02:26:26.916523 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Deposit came back right away", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The pickup service was arranged very well", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 193}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 234}], "unmapped": []} 231eae537d5cfb05 auto 07c01d3a-3443-4031-910c-7b6feba2c100 565 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 2 3 \N 0.90 Overall great company, we will book again directly with them 234 284 \N \N \N 2026-01-31 02:26:26.917449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Deposit came back right away", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The pickup service was arranged very well", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 193}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 234}], "unmapped": []} 231eae537d5cfb05 auto 07c01d3a-3443-4031-910c-7b6feba2c100 566 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 would definitely recommend them! 66 90 \N \N \N 2026-01-31 02:26:31.827862 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 133}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 179}], "unmapped": []} 6420217188cf80a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 567 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_LEVEL + 3 3 \N 0.90 Some of the cheapest prices for rental cars I found on GC. 90 133 \N \N \N 2026-01-31 02:26:31.830693 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 133}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 179}], "unmapped": []} 6420217188cf80a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4598 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNzalAtY3NRRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.853189 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 572 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 They seemed to know nothing about it despite my 100 calls about the issue. 307 353 \N \N \N 2026-01-31 02:26:36.606108 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 274, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 373}], "unmapped": [{"label": "Overall Recommendation", "evidence": "avoid this place!", "confidence": 0.9}]} f2d8ba076efda66e auto 07c01d3a-3443-4031-910c-7b6feba2c100 573 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 1 2 \N 0.80 they are very polite and helpful at the pick up point 373 414 \N \N \N 2026-01-31 02:26:36.609056 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 274, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 373}], "unmapped": [{"label": "Overall Recommendation", "evidence": "avoid this place!", "confidence": 0.9}]} f2d8ba076efda66e auto 07c01d3a-3443-4031-910c-7b6feba2c100 574 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.90 avoid this place! \N \N {"Overall Recommendation"} \N \N 2026-01-31 02:26:36.610722 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 274, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 353, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 373}], "unmapped": [{"label": "Overall Recommendation", "evidence": "avoid this place!", "confidence": 0.9}]} f2d8ba076efda66e auto 07c01d3a-3443-4031-910c-7b6feba2c100 575 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 3 3 \N 0.90 "I ended up paying DOUBLE for this car!!" 186 210 \N \N \N 2026-01-31 02:26:42.428553 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 120, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 295, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "negative", "end_char": 515, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 532}], "unmapped": []} 677882405e7c5bc8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 576 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 3 3 \N 0.90 "It’s a total scam designed to catch people out." 92 120 \N \N \N 2026-01-31 02:26:42.431016 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 120, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 295, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "negative", "end_char": 515, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 532}], "unmapped": []} 677882405e7c5bc8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 577 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 3 3 \N 0.90 "the staff were incredibly aggressive." 265 295 \N \N \N 2026-01-31 02:26:42.433035 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 120, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 295, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "negative", "end_char": 515, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 532}], "unmapped": []} 677882405e7c5bc8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 578 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 3 3 \N 0.90 "they are just completely ignoring me." 487 515 \N \N \N 2026-01-31 02:26:42.435197 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 120, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 295, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "negative", "end_char": 515, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 532}], "unmapped": []} 677882405e7c5bc8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 5286 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 el buen talante de la persona que acudió 119 151 \N \N \N 2026-01-31 15:10:00.723427 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "enseguida detectaron el problema y pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 152}], "unmapped": []} dd88136fd3a77fb7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 129 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 we booked for 6 days and had bought full insurance... 0 50 {general} \N \N 2026-01-31 02:05:46.991706 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 579 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.80 "the shuttle bus is terrible so takes ages to pick up and drop off your car." 532 586 \N \N \N 2026-01-31 02:26:42.437492 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 210, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 120, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 295, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "negative", "end_char": 515, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "negative", "end_char": 586, "evidence": "\\"the shuttle bus is terrible so takes ages to pick up and drop off your car.\\"", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 532}], "unmapped": []} 677882405e7c5bc8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 580 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Recommend! 164 172 \N \N \N 2026-01-31 02:26:47.289622 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The car was completely new - 1900km only! Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Service was great", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 133}], "unmapped": []} 4190fd7d45cc2752 auto 07c01d3a-3443-4031-910c-7b6feba2c100 581 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.80 paying for the extra coverage (0€ franchise), so that you don’t get charged extra 134 164 \N \N \N 2026-01-31 02:26:47.293061 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The car was completely new - 1900km only! Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Service was great", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 133}], "unmapped": []} 4190fd7d45cc2752 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4599 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURNeExDaEJBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.853676 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 582 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 The car was completely new - 1900km only! Everything worked perfectly and smoothly. 56 134 \N \N \N 2026-01-31 02:26:47.295947 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The car was completely new - 1900km only! Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Service was great", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 133}], "unmapped": []} 4190fd7d45cc2752 auto 07c01d3a-3443-4031-910c-7b6feba2c100 5642 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 2 3 \N 0.90 Nice and clean 56 66 \N \N \N 2026-01-31 15:16:58.364274 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Nice and clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "every surface of the bathrooms was indeed really really wet", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 30}], "unmapped": []} 2c84e32360641d62 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 583 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Service was great 133 149 \N \N \N 2026-01-31 02:26:47.29816 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The car was completely new - 1900km only! Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Service was great", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 133}], "unmapped": []} 4190fd7d45cc2752 auto 07c01d3a-3443-4031-910c-7b6feba2c100 584 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 2 \N 0.80 Much more to pay on arrival, only credit card accepted and not very helpful. 0 76 \N \N \N 2026-01-31 02:26:53.59922 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 76, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 216}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.8, "start_char": 308}], "unmapped": []} 766e4cf09774a05e auto 07c01d3a-3443-4031-910c-7b6feba2c100 585 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 2 \N 0.80 Pick up from airport was bad, vague instructions and phone was computer voice. 78 134 \N \N \N 2026-01-31 02:26:53.606073 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 76, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 216}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.8, "start_char": 308}], "unmapped": []} 766e4cf09774a05e auto 07c01d3a-3443-4031-910c-7b6feba2c100 591 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 I’ve contacted them multiple times with no response. 265 308 \N \N \N 2026-01-31 02:26:56.578057 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 373, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 265}], "unmapped": []} db6ee0cbd610d795 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4600 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURNZ1B5dW9RRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.854156 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5287 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Un servicio muy bueno 152 174 \N \N \N 2026-01-31 15:10:00.725208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "enseguida detectaron el problema y pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 152}], "unmapped": []} dd88136fd3a77fb7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 586 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 2 \N 0.80 it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. 135 215 \N \N \N 2026-01-31 02:26:53.607957 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 76, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 216}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.8, "start_char": 308}], "unmapped": []} 766e4cf09774a05e auto 07c01d3a-3443-4031-910c-7b6feba2c100 587 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 2 \N 0.80 they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back. 216 307 \N \N \N 2026-01-31 02:26:53.609951 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 76, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 216}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.8, "start_char": 308}], "unmapped": []} 766e4cf09774a05e auto 07c01d3a-3443-4031-910c-7b6feba2c100 588 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMFORT + 2 2 \N 0.80 The car was good and it was brand new. 308 335 \N \N \N 2026-01-31 02:26:53.611431 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 76, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 216}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.8, "start_char": 308}], "unmapped": []} 766e4cf09774a05e auto 07c01d3a-3443-4031-910c-7b6feba2c100 589 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 2 3 \N 0.90 This company is a scam based on my experience. 0 36 \N \N \N 2026-01-31 02:26:56.571784 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 373, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 265}], "unmapped": []} db6ee0cbd610d795 auto 07c01d3a-3443-4031-910c-7b6feba2c100 590 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 I basically paid double. 350 373 \N \N \N 2026-01-31 02:26:56.575637 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 373, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 350}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 265}], "unmapped": []} db6ee0cbd610d795 auto 07c01d3a-3443-4031-910c-7b6feba2c100 592 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 I was a bit shocked, but politely asked, "What next?"—expecting a response/help from her. 360 426 \N \N \N 2026-01-31 02:27:03.388908 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 426, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 426}, {"details": null, "valence": "negative", "end_char": 1116, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 1030}, {"details": null, "valence": "negative", "end_char": 803, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 743}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5cbd0fa9a2dc3b7f auto 07c01d3a-3443-4031-910c-7b6feba2c100 593 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 3 3 \N 0.90 Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. 426 516 \N \N \N 2026-01-31 02:27:03.393308 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 426, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 426}, {"details": null, "valence": "negative", "end_char": 1116, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 1030}, {"details": null, "valence": "negative", "end_char": 803, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 743}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5cbd0fa9a2dc3b7f auto 07c01d3a-3443-4031-910c-7b6feba2c100 594 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS - 3 3 \N 0.90 I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! 1030 1116 \N \N \N 2026-01-31 02:27:03.396367 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 426, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 426}, {"details": null, "valence": "negative", "end_char": 1116, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 1030}, {"details": null, "valence": "negative", "end_char": 803, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 743}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5cbd0fa9a2dc3b7f auto 07c01d3a-3443-4031-910c-7b6feba2c100 595 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 the second woman demanded that I delete the photos and started threatening us with the police. 743 803 \N \N \N 2026-01-31 02:27:03.401274 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 426, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 426}, {"details": null, "valence": "negative", "end_char": 1116, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 1030}, {"details": null, "valence": "negative", "end_char": 803, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 743}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5cbd0fa9a2dc3b7f auto 07c01d3a-3443-4031-910c-7b6feba2c100 130 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Stupidest instructions of meeting point you can im... 0 50 {general} \N \N 2026-01-31 02:05:46.992392 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 596 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 NEVER AGAIN @ClickRent 0 20 \N \N \N 2026-01-31 02:27:03.40794 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 426, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 426}, {"details": null, "valence": "negative", "end_char": 1116, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 1030}, {"details": null, "valence": "negative", "end_char": 803, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 743}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5cbd0fa9a2dc3b7f auto 07c01d3a-3443-4031-910c-7b6feba2c100 597 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 they wanted 130€ for the second reservation 246 276 \N \N \N 2026-01-31 02:27:08.167674 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 276, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 318, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 368, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 318}], "unmapped": []} 13c69ffc6df4e57e auto 07c01d3a-3443-4031-910c-7b6feba2c100 598 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 we had to pay in the end 180€ for 3 days instead of 50€ 276 318 \N \N \N 2026-01-31 02:27:08.171782 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 276, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 318, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 368, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 318}], "unmapped": []} 13c69ffc6df4e57e auto 07c01d3a-3443-4031-910c-7b6feba2c100 599 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 a very slowly service, we had to wait in the queue for over 1,5 hours 318 368 \N \N \N 2026-01-31 02:27:08.175278 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 276, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 318, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 368, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 318}], "unmapped": []} 13c69ffc6df4e57e auto 07c01d3a-3443-4031-910c-7b6feba2c100 600 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 Overall service experience was very good! 0 30 \N \N \N 2026-01-31 02:27:13.659714 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Overall service experience was very good!", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "car was clean and nice for the group!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 60}], "unmapped": []} 38a7bbfbac453063 auto 07c01d3a-3443-4031-910c-7b6feba2c100 601 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 2 3 \N 0.90 car was clean and nice for the group! 116 144 \N \N \N 2026-01-31 02:27:13.663326 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Overall service experience was very good!", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "car was clean and nice for the group!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 60}], "unmapped": []} 38a7bbfbac453063 auto 07c01d3a-3443-4031-910c-7b6feba2c100 602 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION ± 2 2 \N 0.70 One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. 60 116 \N \N \N 2026-01-31 02:27:13.666035 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Overall service experience was very good!", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "car was clean and nice for the group!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 60}], "unmapped": []} 38a7bbfbac453063 auto 07c01d3a-3443-4031-910c-7b6feba2c100 603 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.90 Pick up and return was simply and very quick. 0 0 \N \N \N 2026-01-31 02:27:19.389354 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Pick up and return was simply and very quick.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "I paid £186 deposit and got it back immediately on returning the car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "everything was very good.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5ca83c0f92d13499 auto 07c01d3a-3443-4031-910c-7b6feba2c100 604 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 I paid £186 deposit and got it back immediately on returning the car. 0 0 \N \N \N 2026-01-31 02:27:19.393348 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Pick up and return was simply and very quick.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "I paid £186 deposit and got it back immediately on returning the car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "everything was very good.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5ca83c0f92d13499 auto 07c01d3a-3443-4031-910c-7b6feba2c100 605 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 everything was very good. 0 0 \N \N \N 2026-01-31 02:27:19.395553 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Pick up and return was simply and very quick.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "I paid £186 deposit and got it back immediately on returning the car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "everything was very good.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5ca83c0f92d13499 auto 07c01d3a-3443-4031-910c-7b6feba2c100 606 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 there was NO CAR for us! 157 173 \N \N \N 2026-01-31 02:27:25.874287 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 173, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "confidence": 0.8}]} fa2bac359e29d4da auto 07c01d3a-3443-4031-910c-7b6feba2c100 607 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 3 3 \N 0.90 simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. 227 287 \N \N \N 2026-01-31 02:27:25.877242 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 173, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "confidence": 0.8}]} fa2bac359e29d4da auto 07c01d3a-3443-4031-910c-7b6feba2c100 608 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 the second woman demanded that we delete the photos and started threatening us with the police. 469 516 \N \N \N 2026-01-31 02:27:25.878584 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 173, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "confidence": 0.8}]} fa2bac359e29d4da auto 07c01d3a-3443-4031-910c-7b6feba2c100 609 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.80 we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. \N \N {"General Dissatisfaction"} \N \N 2026-01-31 02:27:25.880571 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 173, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 469}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "confidence": 0.8}]} fa2bac359e29d4da auto 07c01d3a-3443-4031-910c-7b6feba2c100 610 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 highly recommend it to others 118 144 \N \N \N 2026-01-31 02:27:34.678068 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "no hassle return of the car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} a2be32ef97deb1a6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 611 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY + 3 3 \N 0.90 no hidden charges 98 113 \N \N \N 2026-01-31 02:27:34.681308 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "no hassle return of the car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} a2be32ef97deb1a6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 617 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 2 3 \N 0.90 helpful smiley staff! 210 232 \N \N \N 2026-01-31 02:27:41.26166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "mixed", "end_char": 98, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}], "unmapped": [{"label": "Negative feedback about third-party platform", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name.", "confidence": 0.7}]} 8b1d1ebd1ee7f1b0 auto 07c01d3a-3443-4031-910c-7b6feba2c100 612 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 Great prices and no hassle return of the car with full cover insurance which was not expensive at all 54 139 \N \N \N 2026-01-31 02:27:34.683031 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "no hassle return of the car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} a2be32ef97deb1a6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 613 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 no hassle return of the car 83 104 \N \N \N 2026-01-31 02:27:34.68519 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "no hassle return of the car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} a2be32ef97deb1a6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 614 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 upgraded car for no additional cost which was brand new with 400km on it 145 189 \N \N \N 2026-01-31 02:27:34.686658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "no hassle return of the car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} a2be32ef97deb1a6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 615 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 2 3 \N 0.90 if we would book again, it would be directly with Clickrent! 164 203 \N \N \N 2026-01-31 02:27:41.256299 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "mixed", "end_char": 98, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}], "unmapped": [{"label": "Negative feedback about third-party platform", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name.", "confidence": 0.7}]} 8b1d1ebd1ee7f1b0 auto 07c01d3a-3443-4031-910c-7b6feba2c100 131 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 AVOID IF YOU CAN! When we arrived, it turned out t... 0 50 {general} \N \N 2026-01-31 02:05:46.99352 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 616 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY ± 2 2 \N 0.80 It is not Clickrent who is cheating, it is the platform. 66 98 \N \N \N 2026-01-31 02:27:41.260017 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "mixed", "end_char": 98, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}], "unmapped": [{"label": "Negative feedback about third-party platform", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name.", "confidence": 0.7}]} 8b1d1ebd1ee7f1b0 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4601 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNNdDVueTdBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.854673 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 618 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name. \N \N {"Negative feedback about third-party platform"} \N \N 2026-01-31 02:27:41.263032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "mixed", "end_char": 98, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}], "unmapped": [{"label": "Negative feedback about third-party platform", "evidence": "the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name.", "confidence": 0.7}]} 8b1d1ebd1ee7f1b0 auto 07c01d3a-3443-4031-910c-7b6feba2c100 619 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 2 3 \N 0.90 a good deal from ClickRent for a car with full insurance during black Friday 12 73 \N \N \N 2026-01-31 02:27:46.123606 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "a good deal from ClickRent for a car with full insurance during black Friday", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "we didn't know there was a shuttle on the pickup and we had to walk there from the airport", "intensity": 2, "primitive": "FRICTION", "confidence": 0.8, "start_char": 140}], "unmapped": []} 164738e8f4d33d41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 620 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 Everything went smooth; pickup, drop-off and the refund of the deposit for the gas 75 138 \N \N \N 2026-01-31 02:27:46.124887 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "a good deal from ClickRent for a car with full insurance during black Friday", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "we didn't know there was a shuttle on the pickup and we had to walk there from the airport", "intensity": 2, "primitive": "FRICTION", "confidence": 0.8, "start_char": 140}], "unmapped": []} 164738e8f4d33d41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 621 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 1 2 \N 0.80 we didn't know there was a shuttle on the pickup and we had to walk there from the airport 140 196 \N \N \N 2026-01-31 02:27:46.125767 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "a good deal from ClickRent for a car with full insurance during black Friday", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "we didn't know there was a shuttle on the pickup and we had to walk there from the airport", "intensity": 2, "primitive": "FRICTION", "confidence": 0.8, "start_char": 140}], "unmapped": []} 164738e8f4d33d41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 622 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 2 \N 0.80 The instructions for the shuttle were too vague. 0 50 \N \N \N 2026-01-31 02:27:51.880128 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 411, "evidence": "clean car", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 401}, {"details": null, "valence": "positive", "end_char": 373, "evidence": "everything went great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 353}], "unmapped": []} 20e2ab5e7f19ff52 auto 07c01d3a-3443-4031-910c-7b6feba2c100 638 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 3 \N 0.90 quick and easy rental process. 30 56 \N \N \N 2026-01-31 02:28:06.991624 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 236, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 201}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "quick and easy rental process.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}], "unmapped": []} 1a047bafdc22f575 auto 07c01d3a-3443-4031-910c-7b6feba2c100 623 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 2 \N 0.80 we got a computer voice that we didnt understand 157 197 \N \N \N 2026-01-31 02:27:51.883475 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 411, "evidence": "clean car", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 401}, {"details": null, "valence": "positive", "end_char": 373, "evidence": "everything went great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 353}], "unmapped": []} 20e2ab5e7f19ff52 auto 07c01d3a-3443-4031-910c-7b6feba2c100 624 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 2 3 \N 0.90 Very friendly and helpful staff 370 399 \N \N \N 2026-01-31 02:27:51.885402 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 411, "evidence": "clean car", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 401}, {"details": null, "valence": "positive", "end_char": 373, "evidence": "everything went great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 353}], "unmapped": []} 20e2ab5e7f19ff52 auto 07c01d3a-3443-4031-910c-7b6feba2c100 625 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 2 3 \N 0.90 clean car 401 411 \N \N \N 2026-01-31 02:27:51.886962 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 411, "evidence": "clean car", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 401}, {"details": null, "valence": "positive", "end_char": 373, "evidence": "everything went great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 353}], "unmapped": []} 20e2ab5e7f19ff52 auto 07c01d3a-3443-4031-910c-7b6feba2c100 626 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 everything went great 353 373 \N \N \N 2026-01-31 02:27:51.888351 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "Very friendly and helpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 411, "evidence": "clean car", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 401}, {"details": null, "valence": "positive", "end_char": 373, "evidence": "everything went great", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 353}], "unmapped": []} 20e2ab5e7f19ff52 auto 07c01d3a-3443-4031-910c-7b6feba2c100 627 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 Very slow in returning the car 37 63 \N \N \N 2026-01-31 02:27:58.327138 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "somebody who was waiting behind me... was then given first shuttle unfairly", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "General dissatisfaction with service", "evidence": "But the Service is very bad.", "confidence": 0.9}, {"label": "Overall negative experience", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 628 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 you need to queue inside just to return (takes very long) 65 103 \N \N \N 2026-01-31 02:27:58.391774 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "somebody who was waiting behind me... was then given first shuttle unfairly", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "General dissatisfaction with service", "evidence": "But the Service is very bad.", "confidence": 0.9}, {"label": "Overall negative experience", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 629 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS - 2 3 \N 0.90 the employees do not care 195 218 \N \N \N 2026-01-31 02:27:58.419207 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "somebody who was waiting behind me... was then given first shuttle unfairly", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "General dissatisfaction with service", "evidence": "But the Service is very bad.", "confidence": 0.9}, {"label": "Overall negative experience", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 630 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.80 somebody who was waiting behind me... was then given first shuttle unfairly 138 195 \N \N \N 2026-01-31 02:27:58.429522 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "somebody who was waiting behind me... was then given first shuttle unfairly", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "General dissatisfaction with service", "evidence": "But the Service is very bad.", "confidence": 0.9}, {"label": "Overall negative experience", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 631 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.90 But the Service is very bad. \N \N {"General dissatisfaction with service"} \N \N 2026-01-31 02:27:58.475342 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "somebody who was waiting behind me... was then given first shuttle unfairly", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "General dissatisfaction with service", "evidence": "But the Service is very bad.", "confidence": 0.9}, {"label": "Overall negative experience", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 639 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.80 their shuttle bus only leaves once it is full 164 203 \N \N \N 2026-01-31 02:28:11.541699 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "their shuttle bus only leaves once it is full", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "This is an unreasonable condition that other companies do not impose", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": [{"label": "Payment Method Issue", "evidence": "They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card.", "confidence": 0.8}]} 86e833f84642d885 auto 07c01d3a-3443-4031-910c-7b6feba2c100 632 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.90 Never again with this provider \N \N {"Overall negative experience"} \N \N 2026-01-31 02:27:58.481007 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "somebody who was waiting behind me... was then given first shuttle unfairly", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "General dissatisfaction with service", "evidence": "But the Service is very bad.", "confidence": 0.9}, {"label": "Overall negative experience", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 633 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.90 Return was extremely quick and the shuttle was ready to bring us to the airport. 66 113 \N \N \N 2026-01-31 02:28:03.046382 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 197, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Smooth rental when booking directly with full coverage.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f54e29e87f4ec70 auto 07c01d3a-3443-4031-910c-7b6feba2c100 634 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION ± 1 2 \N 0.80 it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well 139 197 \N \N \N 2026-01-31 02:28:03.048673 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 197, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Smooth rental when booking directly with full coverage.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f54e29e87f4ec70 auto 07c01d3a-3443-4031-910c-7b6feba2c100 132 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Very difficoult to get to from the airport. When c... 0 50 {general} \N \N 2026-01-31 02:05:46.995135 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 635 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 Smooth rental when booking directly with full coverage. 0 48 \N \N \N 2026-01-31 02:28:03.050573 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 197, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Smooth rental when booking directly with full coverage.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f54e29e87f4ec70 auto 07c01d3a-3443-4031-910c-7b6feba2c100 636 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I recommend that you ask someone on arrival. 201 236 \N \N \N 2026-01-31 02:28:06.986836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 236, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 201}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "quick and easy rental process.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}], "unmapped": []} 1a047bafdc22f575 auto 07c01d3a-3443-4031-910c-7b6feba2c100 637 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.80 there is a regular shuttle bus from and to the airport. 78 111 \N \N \N 2026-01-31 02:28:06.989868 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 236, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 201}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "quick and easy rental process.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}], "unmapped": []} 1a047bafdc22f575 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4602 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNNdDhIYnd3RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.85525 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 640 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION - 2 3 \N 0.90 this is the first time I’ve had such a disappointing experience 144 188 \N \N \N 2026-01-31 02:28:11.544366 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "their shuttle bus only leaves once it is full", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "This is an unreasonable condition that other companies do not impose", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": [{"label": "Payment Method Issue", "evidence": "They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card.", "confidence": 0.8}]} 86e833f84642d885 auto 07c01d3a-3443-4031-910c-7b6feba2c100 641 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 This is an unreasonable condition that other companies do not impose 91 138 \N \N \N 2026-01-31 02:28:11.545784 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "their shuttle bus only leaves once it is full", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "This is an unreasonable condition that other companies do not impose", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": [{"label": "Payment Method Issue", "evidence": "They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card.", "confidence": 0.8}]} 86e833f84642d885 auto 07c01d3a-3443-4031-910c-7b6feba2c100 642 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.80 They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. \N \N {"Payment Method Issue"} \N \N 2026-01-31 02:28:11.547727 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "their shuttle bus only leaves once it is full", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "This is an unreasonable condition that other companies do not impose", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": [{"label": "Payment Method Issue", "evidence": "They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card.", "confidence": 0.8}]} 86e833f84642d885 auto 07c01d3a-3443-4031-910c-7b6feba2c100 643 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 I dont recommend. 0 15 \N \N \N 2026-01-31 02:28:16.636916 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "I dont recommend.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund", "intensity": 4, "primitive": "PROMISES", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 144}], "unmapped": []} 118b0a7832f06e37 auto 07c01d3a-3443-4031-910c-7b6feba2c100 644 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 PROMISES - 2 3 \N 0.80 I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund 36 139 \N \N \N 2026-01-31 02:28:16.6396 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "I dont recommend.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund", "intensity": 4, "primitive": "PROMISES", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 144}], "unmapped": []} 118b0a7832f06e37 auto 07c01d3a-3443-4031-910c-7b6feba2c100 645 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 144 194 \N \N \N 2026-01-31 02:28:16.641175 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "I dont recommend.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund", "intensity": 4, "primitive": "PROMISES", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 144}], "unmapped": []} 118b0a7832f06e37 auto 07c01d3a-3443-4031-910c-7b6feba2c100 646 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS - 2 3 \N 0.90 unhelpful staff 36 51 \N \N \N 2026-01-31 02:28:23.836277 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 51, "evidence": "unhelpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "Never got our car", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "Not worth the cheaper rates", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "due to a flight delay they refused to accommodate", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} 932800092e56841d auto 07c01d3a-3443-4031-910c-7b6feba2c100 5643 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 3 \N 0.80 every surface of the bathrooms was indeed really really wet 30 75 \N \N \N 2026-01-31 15:16:58.367677 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Nice and clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "every surface of the bathrooms was indeed really really wet", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 30}], "unmapped": []} 2c84e32360641d62 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 133 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 Basically a total disaster; shuttle bus took forev... 0 50 \N \N \N 2026-01-31 02:05:46.996615 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 134 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 My experience was good. I was a bit vary of the ne... 0 50 \N \N \N 2026-01-31 02:05:46.997363 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 647 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 ‘computer says no’ approach to customer service 56 92 \N \N \N 2026-01-31 02:28:23.838461 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 51, "evidence": "unhelpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "Never got our car", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "Not worth the cheaper rates", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "due to a flight delay they refused to accommodate", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} 932800092e56841d auto 07c01d3a-3443-4031-910c-7b6feba2c100 648 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 Never got our car 157 171 \N \N \N 2026-01-31 02:28:23.840214 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 51, "evidence": "unhelpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "Never got our car", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "Not worth the cheaper rates", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "due to a flight delay they refused to accommodate", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} 932800092e56841d auto 07c01d3a-3443-4031-910c-7b6feba2c100 649 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 Not worth the cheaper rates 118 144 \N \N \N 2026-01-31 02:28:23.841866 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 51, "evidence": "unhelpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "Never got our car", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "Not worth the cheaper rates", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "due to a flight delay they refused to accommodate", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} 932800092e56841d auto 07c01d3a-3443-4031-910c-7b6feba2c100 650 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOVERY - 2 3 \N 0.90 due to a flight delay they refused to accommodate 174 218 \N \N \N 2026-01-31 02:28:23.843602 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 51, "evidence": "unhelpful staff", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "Never got our car", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "Not worth the cheaper rates", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "due to a flight delay they refused to accommodate", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} 932800092e56841d auto 07c01d3a-3443-4031-910c-7b6feba2c100 4603 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNNbll2V2FREAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.85574 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 651 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY ± 2 2 \N 0.80 Returning the car was easier than I thought. 490 523 \N \N \N 2026-01-31 02:28:32.526898 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 523, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 490}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "I had a small worry about the return since price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 156}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "neutral", "end_char": 130, "evidence": "I took precise photos of every little scratch the car had prior to renting which were not on the report.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 399, "evidence": "I also recorded every conversation with the staff.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 366}], "unmapped": []} 2cffffe28f24f582 auto 07c01d3a-3443-4031-910c-7b6feba2c100 652 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 2 \N 0.80 I had a small worry about the return since price of the rent was quite cheap compared to other rental companies. 156 197 \N \N \N 2026-01-31 02:28:32.530112 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 523, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 490}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "I had a small worry about the return since price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 156}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "neutral", "end_char": 130, "evidence": "I took precise photos of every little scratch the car had prior to renting which were not on the report.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 399, "evidence": "I also recorded every conversation with the staff.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 366}], "unmapped": []} 2cffffe28f24f582 auto 07c01d3a-3443-4031-910c-7b6feba2c100 653 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 2 \N 0.70 the staff did not like to be filmed or recorded which gave me a red flag 118 164 \N \N \N 2026-01-31 02:28:32.532229 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 523, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 490}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "I had a small worry about the return since price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 156}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "neutral", "end_char": 130, "evidence": "I took precise photos of every little scratch the car had prior to renting which were not on the report.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 399, "evidence": "I also recorded every conversation with the staff.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 366}], "unmapped": []} 2cffffe28f24f582 auto 07c01d3a-3443-4031-910c-7b6feba2c100 654 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.50 I took precise photos of every little scratch the car had prior to renting which were not on the report. 66 130 \N \N \N 2026-01-31 02:28:32.533416 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 523, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 490}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "I had a small worry about the return since price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 156}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "neutral", "end_char": 130, "evidence": "I took precise photos of every little scratch the car had prior to renting which were not on the report.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 399, "evidence": "I also recorded every conversation with the staff.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 366}], "unmapped": []} 2cffffe28f24f582 auto 07c01d3a-3443-4031-910c-7b6feba2c100 800 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-65 Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 regular shuttles 61 75 \N \N \N 2026-01-31 02:31:58.272633 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great experience using ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick check in and check out", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "regular shuttles", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 61}], "unmapped": []} 29b3ea46ac9b1846 auto 07c01d3a-3443-4031-910c-7b6feba2c100 667 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.80 complete lack of professionalism 118 150 \N \N \N 2026-01-31 02:28:50.428104 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "there was no car for us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "complete lack of professionalism", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}], "unmapped": []} 166575eb4d1ee18d auto 07c01d3a-3443-4031-910c-7b6feba2c100 655 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.50 I also recorded every conversation with the staff. 366 399 \N \N \N 2026-01-31 02:28:32.534601 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 523, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 490}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "I had a small worry about the return since price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 156}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "neutral", "end_char": 130, "evidence": "I took precise photos of every little scratch the car had prior to renting which were not on the report.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 399, "evidence": "I also recorded every conversation with the staff.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 366}], "unmapped": []} 2cffffe28f24f582 auto 07c01d3a-3443-4031-910c-7b6feba2c100 656 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 ClickRent simply didn't accept that we didn't want to buy additional services. 139 188 \N \N \N 2026-01-31 02:28:37.190155 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 188, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 245, "evidence": "Simply the worse company ever.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}], "unmapped": []} 2f32b7a72d2f2277 auto 07c01d3a-3443-4031-910c-7b6feba2c100 657 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOVERY - 3 3 \N 0.90 we had to return to the airport empty-handed. 188 218 \N \N \N 2026-01-31 02:28:37.198111 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 188, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 245, "evidence": "Simply the worse company ever.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}], "unmapped": []} 2f32b7a72d2f2277 auto 07c01d3a-3443-4031-910c-7b6feba2c100 658 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 Simply the worse company ever. 218 245 \N \N \N 2026-01-31 02:28:37.201556 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 188, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 245, "evidence": "Simply the worse company ever.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}], "unmapped": []} 2f32b7a72d2f2277 auto 07c01d3a-3443-4031-910c-7b6feba2c100 659 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 forced to buy a 150 euro insurance again 83 116 \N \N \N 2026-01-31 02:28:41.655875 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "The car given does not match what we ordered", "intensity": 4, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}], "unmapped": []} 77879f8609b97e4e auto 07c01d3a-3443-4031-910c-7b6feba2c100 4506 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZMHJTQXdRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Variedad 0 8 \N \N \N 2026-01-31 13:43:31.768238 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 8, "evidence": "Variedad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1da0bfe3a536a833 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 135 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Excellent team in Gran Canaria. I made a mistake w... 0 50 \N \N \N 2026-01-31 02:05:46.998104 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 136 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 We arrived with a confirmed booking, only to be to... 0 50 \N \N \N 2026-01-31 02:05:46.998583 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 660 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 ACCURACY - 2 3 \N 0.90 The car given does not match what we ordered 157 194 \N \N \N 2026-01-31 02:28:41.65841 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "The car given does not match what we ordered", "intensity": 4, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}], "unmapped": []} 77879f8609b97e4e auto 07c01d3a-3443-4031-910c-7b6feba2c100 661 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 Terrible experience, don’t come 204 227 \N \N \N 2026-01-31 02:28:41.660009 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 194, "evidence": "The car given does not match what we ordered", "intensity": 4, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}], "unmapped": []} 77879f8609b97e4e auto 07c01d3a-3443-4031-910c-7b6feba2c100 662 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 Getting and returning car is a nightmare 43 78 \N \N \N 2026-01-31 02:28:46.795579 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 82, "evidence": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "be prepated to miss your flight", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 78}], "unmapped": []} fd277519e55ecd41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 663 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 my credit card was charged additional 180 eur without any documentation 112 156 \N \N \N 2026-01-31 02:28:46.800645 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 82, "evidence": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "be prepated to miss your flight", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 78}], "unmapped": []} fd277519e55ecd41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 664 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 3 3 \N 0.70 Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients. 0 82 \N \N \N 2026-01-31 02:28:46.802147 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 82, "evidence": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "be prepated to miss your flight", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 78}], "unmapped": []} fd277519e55ecd41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 137 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 First time customer and didn’t take any additional... 0 50 \N \N \N 2026-01-31 02:05:46.999106 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 665 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 2 3 \N 0.70 be prepated to miss your flight 78 104 \N \N \N 2026-01-31 02:28:46.803851 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Getting and returning car is a nightmare", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "my credit card was charged additional 180 eur without any documentation", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 82, "evidence": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "be prepated to miss your flight", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 78}], "unmapped": []} fd277519e55ecd41 auto 07c01d3a-3443-4031-910c-7b6feba2c100 666 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 there was no car for us 56 70 \N \N \N 2026-01-31 02:28:50.424817 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "there was no car for us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "complete lack of professionalism", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}], "unmapped": []} 166575eb4d1ee18d auto 07c01d3a-3443-4031-910c-7b6feba2c100 668 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 DO NOT RECOMMEND 202 218 \N \N \N 2026-01-31 02:28:50.431355 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "there was no car for us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "complete lack of professionalism", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}], "unmapped": []} 166575eb4d1ee18d auto 07c01d3a-3443-4031-910c-7b6feba2c100 669 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Automotive.CarRental AUTOMOTIVE 1.1 ACCESSIBILITY - 2 3 \N 0.90 Very difficoult to get to from the airport. 0 41 \N \N \N 2026-01-31 02:28:53.49952 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 87b90dda5a2bd2d6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 670 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!! 41 138 \N \N \N 2026-01-31 02:28:53.503237 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 87b90dda5a2bd2d6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 671 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 there is no office at the airport despite being mentioned during the booking phase 66 126 \N \N \N 2026-01-31 02:28:59.662267 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "shuttle bus took forever to arrive", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 180}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "car was smaller than booked", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 218}], "unmapped": []} b143f9e57466708c auto 07c01d3a-3443-4031-910c-7b6feba2c100 672 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 shuttle bus took forever to arrive 24 50 \N \N \N 2026-01-31 02:28:59.664396 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "shuttle bus took forever to arrive", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 180}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "car was smaller than booked", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 218}], "unmapped": []} b143f9e57466708c auto 07c01d3a-3443-4031-910c-7b6feba2c100 4507 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvZ1pHdDNnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Me gusta 0 10 \N \N \N 2026-01-31 13:43:33.217287 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Me gusta", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3eea8cb61a409151 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 673 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 car had undocumented damages that the staff was very reluctant to document 128 179 \N \N \N 2026-01-31 02:28:59.666193 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "shuttle bus took forever to arrive", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 180}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "car was smaller than booked", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 218}], "unmapped": []} b143f9e57466708c auto 07c01d3a-3443-4031-910c-7b6feba2c100 674 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS - 2 3 \N 0.90 checkin was dreadfully slow and inefficient 180 213 \N \N \N 2026-01-31 02:28:59.669825 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "shuttle bus took forever to arrive", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 180}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "car was smaller than booked", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 218}], "unmapped": []} b143f9e57466708c auto 07c01d3a-3443-4031-910c-7b6feba2c100 675 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION - 2 3 \N 0.90 car was smaller than booked 218 241 \N \N \N 2026-01-31 02:28:59.672423 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "shuttle bus took forever to arrive", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 180}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "car was smaller than booked", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 218}], "unmapped": []} b143f9e57466708c auto 07c01d3a-3443-4031-910c-7b6feba2c100 5649 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 100% recommend to visit for a drag show or a live event. 83 126 \N \N \N 2026-01-31 15:17:05.198963 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "The dance DJs they book are pretty poor.", "confidence": 0.8}]} 81b679ea07736757 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 676 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 the car was available immediately 66 92 \N \N \N 2026-01-31 02:29:02.749119 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "the car was available immediately", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 119, "evidence": "Would use their services again", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "the service was good", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 43}], "unmapped": []} 4dbbce5236fd6a02 auto 07c01d3a-3443-4031-910c-7b6feba2c100 677 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Would use their services again 93 119 \N \N \N 2026-01-31 02:29:02.751725 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "the car was available immediately", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 119, "evidence": "Would use their services again", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "the service was good", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 43}], "unmapped": []} 4dbbce5236fd6a02 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1255 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURld2NyQWh3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Trato excelente 66 82 \N \N \N 2026-01-31 03:38:56.870539 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Me recomendaron esta clínica para un tratamiento de depilación láser", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Trato excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 4f3fb71f16f232c4 auto 22c559a8-fabc-4916-9961-bcbd61225266 678 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 the service was good 43 61 \N \N \N 2026-01-31 02:29:02.754019 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "the car was available immediately", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 119, "evidence": "Would use their services again", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "the service was good", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 43}], "unmapped": []} 4dbbce5236fd6a02 auto 07c01d3a-3443-4031-910c-7b6feba2c100 679 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 They were very helpful and arranged that I could take the car 1 day earlier. 83 139 \N \N \N 2026-01-31 02:29:05.410028 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "They were very helpful and arranged that I could take the car 1 day earlier.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Excellent team in Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ff5481030725a89 auto 07c01d3a-3443-4031-910c-7b6feba2c100 681 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 there was no car available for us 30 54 \N \N \N 2026-01-31 02:29:08.902019 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "there was no car available for us", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "The staff was completely unhelpful", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "Avoid at all costs", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} e47b7105f9d3bb2d auto 07c01d3a-3443-4031-910c-7b6feba2c100 682 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS - 2 3 \N 0.90 The staff was completely unhelpful 56 83 \N \N \N 2026-01-31 02:29:08.9053 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "there was no car available for us", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "The staff was completely unhelpful", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "Avoid at all costs", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} e47b7105f9d3bb2d auto 07c01d3a-3443-4031-910c-7b6feba2c100 683 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 Avoid at all costs 134 150 \N \N \N 2026-01-31 02:29:08.907062 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "there was no car available for us", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "The staff was completely unhelpful", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "Avoid at all costs", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} e47b7105f9d3bb2d auto 07c01d3a-3443-4031-910c-7b6feba2c100 684 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY + 2 3 \N 0.90 they didn’t try to force or sell any additional insurances. 90 138 \N \N \N 2026-01-31 02:29:12.422335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "they didn’t try to force or sell any additional insurances.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Car was new, less than 5000km driven and was as promised.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "Would use their services again and would recommend.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 267}], "unmapped": []} 1797e6936d720f1e auto 07c01d3a-3443-4031-910c-7b6feba2c100 685 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 2 3 \N 0.90 Car was new, less than 5000km driven and was as promised. 138 179 \N \N \N 2026-01-31 02:29:12.425436 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "they didn’t try to force or sell any additional insurances.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Car was new, less than 5000km driven and was as promised.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "Would use their services again and would recommend.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 267}], "unmapped": []} 1797e6936d720f1e auto 07c01d3a-3443-4031-910c-7b6feba2c100 4542 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNDcXFibWNREAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 2 3 \N 0.90 Las chicas son magníficas 0 26 \N \N \N 2026-01-31 13:44:22.812843 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Las chicas son magníficas", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} f7abbe6bb58bc04e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 686 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 2 3 \N 0.90 Would use their services again and would recommend. 267 303 \N \N \N 2026-01-31 02:29:12.427103 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "they didn’t try to force or sell any additional insurances.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Car was new, less than 5000km driven and was as promised.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "Would use their services again and would recommend.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 267}], "unmapped": []} 1797e6936d720f1e auto 07c01d3a-3443-4031-910c-7b6feba2c100 687 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 We had a very nice experience renting from ClickRent. 0 47 \N \N \N 2026-01-31 02:29:16.136959 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "So nice people, and we got all the information we needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}], "unmapped": []} fa0633539cc61b0f auto 07c01d3a-3443-4031-910c-7b6feba2c100 688 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 So nice people, and we got all the information we needed. 48 88 \N \N \N 2026-01-31 02:29:16.138088 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "So nice people, and we got all the information we needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}], "unmapped": []} fa0633539cc61b0f auto 07c01d3a-3443-4031-910c-7b6feba2c100 689 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 3 3 \N 0.90 The car was just as expected, clean and everything was on top. 89 130 \N \N \N 2026-01-31 02:29:16.138847 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "So nice people, and we got all the information we needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}], "unmapped": []} fa0633539cc61b0f auto 07c01d3a-3443-4031-910c-7b6feba2c100 690 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Highly recommended for your car hire. 42 70 \N \N \N 2026-01-31 02:29:21.22401 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 71d506a6ab8fb02e auto 07c01d3a-3443-4031-910c-7b6feba2c100 691 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 excellent staff especially Gabrielle. 20 49 \N \N \N 2026-01-31 02:29:21.226566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 71d506a6ab8fb02e auto 07c01d3a-3443-4031-910c-7b6feba2c100 4522 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUMwbV9mTmFBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOGNITION + 3 3 \N 0.90 Bastante variedad en juguetes 0 30 \N \N \N 2026-01-31 13:43:55.063003 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Bastante variedad en juguetes", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} b109cd106bd3cacd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 692 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 The car was awesome and brand new like 1000 clicks on the odo. 71 113 \N \N \N 2026-01-31 02:29:21.228155 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 71d506a6ab8fb02e auto 07c01d3a-3443-4031-910c-7b6feba2c100 693 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 Great family experience made our stay worthwhile in Gran Canaria 114 156 \N \N \N 2026-01-31 02:29:21.229923 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 114}], "unmapped": []} 71d506a6ab8fb02e auto 07c01d3a-3443-4031-910c-7b6feba2c100 694 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I would recommend you to take a car from here 164 204 \N \N \N 2026-01-31 02:29:25.480623 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very good service and the person is polite", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 83}], "unmapped": []} c8bcbec157fb7435 auto 07c01d3a-3443-4031-910c-7b6feba2c100 695 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 2 3 \N 0.90 Very good service and the person is polite 38 76 \N \N \N 2026-01-31 02:29:25.482843 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very good service and the person is polite", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 83}], "unmapped": []} c8bcbec157fb7435 auto 07c01d3a-3443-4031-910c-7b6feba2c100 696 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 2 3 \N 0.90 Their office is air-conditioned and very well kept 118 157 \N \N \N 2026-01-31 02:29:25.484807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very good service and the person is polite", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 83}], "unmapped": []} c8bcbec157fb7435 auto 07c01d3a-3443-4031-910c-7b6feba2c100 720 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Recommend it. 80 88 \N \N \N 2026-01-31 02:29:53.655918 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "It's great for a budget rental.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "the service is excellent.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}], "unmapped": []} 7a04d0348e35904f auto 07c01d3a-3443-4031-910c-7b6feba2c100 697 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.80 You need to wait a maximum of 1 hour i think. We waited close to 30 mins 83 134 \N \N \N 2026-01-31 02:29:25.486649 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very good service and the person is polite", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Their office is air-conditioned and very well kept", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 83}], "unmapped": []} c8bcbec157fb7435 auto 07c01d3a-3443-4031-910c-7b6feba2c100 698 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.90 very close to the airport 56 80 \N \N \N 2026-01-31 02:29:29.363934 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "very close to the airport", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 auto 07c01d3a-3443-4031-910c-7b6feba2c100 726 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION 0 2 2 \N 0.80 perfect cars 13 24 \N \N \N 2026-01-31 02:29:59.283106 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "low prices!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 114, "evidence": "a small shuttle bus runs every 15 min", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 24, "evidence": "perfect cars", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 13}], "unmapped": []} 8c924782045b5421 auto 07c01d3a-3443-4031-910c-7b6feba2c100 699 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 2 3 \N 0.90 their insurance is the cheapest compared to other car rentals 81 118 \N \N \N 2026-01-31 02:29:29.368449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "very close to the airport", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 auto 07c01d3a-3443-4031-910c-7b6feba2c100 700 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 3 \N 0.90 enough staff in order not to waste time at pick-up and dropoff 138 183 \N \N \N 2026-01-31 02:29:29.370611 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "very close to the airport", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 auto 07c01d3a-3443-4031-910c-7b6feba2c100 701 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I had a very good experience 0 27 \N \N \N 2026-01-31 02:29:29.372278 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "very close to the airport", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 auto 07c01d3a-3443-4031-910c-7b6feba2c100 702 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.80 make sure you arrive much earlier to give back the car. 83 118 \N \N \N 2026-01-31 02:29:33.095366 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "i am never renting from here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}], "unmapped": []} dbf27a25c3edc618 auto 07c01d3a-3443-4031-910c-7b6feba2c100 703 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 Worst car rental ever. 0 20 \N \N \N 2026-01-31 02:29:33.098633 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "i am never renting from here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}], "unmapped": []} dbf27a25c3edc618 auto 07c01d3a-3443-4031-910c-7b6feba2c100 704 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 Chaos, long queues, small shuttle. 22 50 \N \N \N 2026-01-31 02:29:33.100464 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "i am never renting from here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}], "unmapped": []} dbf27a25c3edc618 auto 07c01d3a-3443-4031-910c-7b6feba2c100 705 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 RETURN_INTENT - 2 3 \N 0.90 i am never renting from here again. 126 154 \N \N \N 2026-01-31 02:29:33.102368 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Worst car rental ever.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "i am never renting from here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}], "unmapped": []} dbf27a25c3edc618 auto 07c01d3a-3443-4031-910c-7b6feba2c100 706 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I can't recommend ClickRent enough! 265 290 \N \N \N 2026-01-31 02:29:38.477594 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 290, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "All their cars are brand new and ours had less than 12k miles on the clock.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 102}], "unmapped": []} 04c3ccbe43130b0c auto 07c01d3a-3443-4031-910c-7b6feba2c100 721 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 It's great for a budget rental. 0 30 \N \N \N 2026-01-31 02:29:53.658813 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "It's great for a budget rental.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "the service is excellent.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}], "unmapped": []} 7a04d0348e35904f auto 07c01d3a-3443-4031-910c-7b6feba2c100 707 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 very helpful staff 118 136 \N \N \N 2026-01-31 02:29:38.480631 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 290, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "All their cars are brand new and ours had less than 12k miles on the clock.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 102}], "unmapped": []} 04c3ccbe43130b0c auto 07c01d3a-3443-4031-910c-7b6feba2c100 5650 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.80 The dance DJs they book are pretty poor. \N \N {"DJ Quality Complaint"} \N \N 2026-01-31 15:17:05.200563 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "The dance DJs they book are pretty poor.", "confidence": 0.8}]} 81b679ea07736757 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 708 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Check in was quick and easy and we were on the road in under 20 minutes. 174 223 \N \N \N 2026-01-31 02:29:38.482974 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 290, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "All their cars are brand new and ours had less than 12k miles on the clock.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 102}], "unmapped": []} 04c3ccbe43130b0c auto 07c01d3a-3443-4031-910c-7b6feba2c100 709 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 3 3 \N 0.90 All their cars are brand new and ours had less than 12k miles on the clock. 223 270 \N \N \N 2026-01-31 02:29:38.485029 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 290, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "All their cars are brand new and ours had less than 12k miles on the clock.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 102}], "unmapped": []} 04c3ccbe43130b0c auto 07c01d3a-3443-4031-910c-7b6feba2c100 710 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip! 102 174 \N \N \N 2026-01-31 02:29:38.486828 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 290, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "All their cars are brand new and ours had less than 12k miles on the clock.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 102}], "unmapped": []} 04c3ccbe43130b0c auto 07c01d3a-3443-4031-910c-7b6feba2c100 711 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 2 3 \N 0.90 Very unfriendly lady. 0 20 \N \N \N 2026-01-31 02:29:42.502265 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} 43a80c02efe13f62 auto 07c01d3a-3443-4031-910c-7b6feba2c100 712 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 Totally not clear where the shuttle bus was leaving at the airport. 43 83 \N \N \N 2026-01-31 02:29:42.505437 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} 43a80c02efe13f62 auto 07c01d3a-3443-4031-910c-7b6feba2c100 138 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 We had a very nice experience renting from ClickRe... 0 50 \N \N \N 2026-01-31 02:05:46.999626 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 713 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 She said it was not her problem. 84 108 \N \N \N 2026-01-31 02:29:42.50694 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} 43a80c02efe13f62 auto 07c01d3a-3443-4031-910c-7b6feba2c100 714 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RETURN_INTENT - 2 3 \N 0.90 Not returning here again. 21 43 \N \N \N 2026-01-31 02:29:42.508155 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Not returning here again.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 21}], "unmapped": []} 43a80c02efe13f62 auto 07c01d3a-3443-4031-910c-7b6feba2c100 727 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I can recommend. 41 56 \N \N \N 2026-01-31 02:30:01.698692 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "I can recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "everything perfect and easy.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} c2e2cf4eb0b8da5b auto 07c01d3a-3443-4031-910c-7b6feba2c100 715 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Highly Recommended! 24 42 \N \N \N 2026-01-31 02:29:50.225063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} 5f0c30362ec6d79b auto 07c01d3a-3443-4031-910c-7b6feba2c100 722 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 the service is excellent. 61 80 \N \N \N 2026-01-31 02:29:53.660537 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "It's great for a budget rental.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "the service is excellent.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}], "unmapped": []} 7a04d0348e35904f auto 07c01d3a-3443-4031-910c-7b6feba2c100 4523 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvd19uMjJ3RRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.50 Calle mayor de triana 0 22 \N \N \N 2026-01-31 13:43:56.399809 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 22, "evidence": "Calle mayor de triana", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} ed76d162fed3f36c auto e4f95d90-dbbe-439d-a0fd-f19088002f26 716 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 reliable and reasonably priced rental car 70 107 \N \N \N 2026-01-31 02:29:50.22671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} 5f0c30362ec6d79b auto 07c01d3a-3443-4031-910c-7b6feba2c100 717 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 vehicle itself was in great condition, almost brand new, clean, and well-maintained 223 284 \N \N \N 2026-01-31 02:29:50.227792 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} 5f0c30362ec6d79b auto 07c01d3a-3443-4031-910c-7b6feba2c100 718 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 staff was extremely friendly, professional, and helpful 335 377 \N \N \N 2026-01-31 02:29:50.229258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} 5f0c30362ec6d79b auto 07c01d3a-3443-4031-910c-7b6feba2c100 725 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY 0 2 2 \N 0.70 a small shuttle bus runs every 15 min 85 114 \N \N \N 2026-01-31 02:29:59.281469 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "low prices!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 114, "evidence": "a small shuttle bus runs every 15 min", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 24, "evidence": "perfect cars", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 13}], "unmapped": []} 8c924782045b5421 auto 07c01d3a-3443-4031-910c-7b6feba2c100 719 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient 107 223 \N \N \N 2026-01-31 02:29:50.229972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Highly Recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 223}, {"details": null, "valence": "positive", "end_char": 377, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} 5f0c30362ec6d79b auto 07c01d3a-3443-4031-910c-7b6feba2c100 723 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Very recommendable! 36 56 \N \N \N 2026-01-31 02:29:59.27503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "low prices!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 114, "evidence": "a small shuttle bus runs every 15 min", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 24, "evidence": "perfect cars", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 13}], "unmapped": []} 8c924782045b5421 auto 07c01d3a-3443-4031-910c-7b6feba2c100 724 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_LEVEL + 3 3 \N 0.90 low prices! 27 37 \N \N \N 2026-01-31 02:29:59.279774 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "low prices!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 114, "evidence": "a small shuttle bus runs every 15 min", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 24, "evidence": "perfect cars", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 13}], "unmapped": []} 8c924782045b5421 auto 07c01d3a-3443-4031-910c-7b6feba2c100 728 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 everything perfect and easy. 20 41 \N \N \N 2026-01-31 02:30:01.702595 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "I can recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "everything perfect and easy.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} c2e2cf4eb0b8da5b auto 07c01d3a-3443-4031-910c-7b6feba2c100 729 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I can only recommend this company in Gran Canaria!!! 0 39 \N \N \N 2026-01-31 02:30:08.899076 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 224}], "unmapped": []} ec5bf985e55943f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 730 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 Absolutely fair and competitive prices 40 74 \N \N \N 2026-01-31 02:30:08.903528 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 224}], "unmapped": []} ec5bf985e55943f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 731 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 The staff was amazing! Super kind and super helpful! 75 116 \N \N \N 2026-01-31 02:30:08.905298 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 224}], "unmapped": []} ec5bf985e55943f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 139 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 No hassle, no waiting, excellent staff especially ... 0 50 \N \N \N 2026-01-31 02:05:47.000171 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 732 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 they have changed our car in no time 196 223 \N \N \N 2026-01-31 02:30:08.90694 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 224}], "unmapped": []} ec5bf985e55943f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 733 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 Thank you once again for your quick and efficient service 224 270 \N \N \N 2026-01-31 02:30:08.908404 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 224}], "unmapped": []} ec5bf985e55943f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 734 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 paid a bunch of fees that weren't mentioned when we initially booked the car 164 213 \N \N \N 2026-01-31 02:30:14.934688 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "I asked them insistently to send me a copy of the contract, which they didn't send me", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": [{"label": "General Sentiment", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "General Sentiment", "evidence": "This place sucks.", "confidence": 0.9}]} b01418dacb634e1b auto 07c01d3a-3443-4031-910c-7b6feba2c100 735 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 they automatically took 60 euros out of my bank account 276 319 \N \N \N 2026-01-31 02:30:14.937457 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "I asked them insistently to send me a copy of the contract, which they didn't send me", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": [{"label": "General Sentiment", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "General Sentiment", "evidence": "This place sucks.", "confidence": 0.9}]} b01418dacb634e1b auto 07c01d3a-3443-4031-910c-7b6feba2c100 140 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Very good cars. Lots of Audi cars. Very good serv... 0 50 \N \N \N 2026-01-31 02:05:47.000681 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 740 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Automotive.CarRental AUTOMOTIVE 1.1 ACCESSIBILITY - 2 3 \N 0.90 Impossible to find the meeting point. 0 30 \N \N \N 2026-01-31 02:30:19.283569 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "customer service with automated voice message..", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": []} 5f0cb70f3f2e0016 auto 07c01d3a-3443-4031-910c-7b6feba2c100 736 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 I asked them insistently to send me a copy of the contract, which they didn't send me 408 467 \N \N \N 2026-01-31 02:30:14.939327 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "I asked them insistently to send me a copy of the contract, which they didn't send me", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": [{"label": "General Sentiment", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "General Sentiment", "evidence": "This place sucks.", "confidence": 0.9}]} b01418dacb634e1b auto 07c01d3a-3443-4031-910c-7b6feba2c100 737 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 Do not rent from this company 646 670 \N \N \N 2026-01-31 02:30:14.941046 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "I asked them insistently to send me a copy of the contract, which they didn't send me", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": [{"label": "General Sentiment", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "General Sentiment", "evidence": "This place sucks.", "confidence": 0.9}]} b01418dacb634e1b auto 07c01d3a-3443-4031-910c-7b6feba2c100 753 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 very happy I chose this company to hire the car 56 88 \N \N \N 2026-01-31 02:30:37.955073 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "very happy I chose this company to hire the car", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Everything went smoothly,no issues", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7656ad7486c75bd8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 738 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.80 This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up \N \N {"General Sentiment"} \N \N 2026-01-31 02:30:14.942391 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "I asked them insistently to send me a copy of the contract, which they didn't send me", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": [{"label": "General Sentiment", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "General Sentiment", "evidence": "This place sucks.", "confidence": 0.9}]} b01418dacb634e1b auto 07c01d3a-3443-4031-910c-7b6feba2c100 141 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 I had a very good experience, they have a good fle... 0 50 \N \N \N 2026-01-31 02:05:47.001189 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 739 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.90 This place sucks. \N \N {"General Sentiment"} \N \N 2026-01-31 02:30:14.944063 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 319, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "I asked them insistently to send me a copy of the contract, which they didn't send me", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 670, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": [{"label": "General Sentiment", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "General Sentiment", "evidence": "This place sucks.", "confidence": 0.9}]} b01418dacb634e1b auto 07c01d3a-3443-4031-910c-7b6feba2c100 741 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 customer service with automated voice message.. 54 90 \N \N \N 2026-01-31 02:30:19.286407 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "customer service with automated voice message..", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": []} 5f0cb70f3f2e0016 auto 07c01d3a-3443-4031-910c-7b6feba2c100 742 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 We had to walk 30 minutes on bad road with luggage to find the office. 91 134 \N \N \N 2026-01-31 02:30:19.288034 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Impossible to find the meeting point.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "customer service with automated voice message..", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "We had to walk 30 minutes on bad road with luggage to find the office.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 91}], "unmapped": []} 5f0cb70f3f2e0016 auto 07c01d3a-3443-4031-910c-7b6feba2c100 754 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Everything went smoothly,no issues 0 34 \N \N \N 2026-01-31 02:30:37.969246 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "very happy I chose this company to hire the car", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Everything went smoothly,no issues", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7656ad7486c75bd8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 743 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I would recommend this place to rent from 211 247 \N \N \N 2026-01-31 02:30:26.013571 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 247, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "they really goes up and beyond to make sure we’re satisfied", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "if you want to be in and out in a timely manner", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 247}, {"details": null, "valence": "positive", "end_char": 315, "evidence": "great pricing", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": []} 61421f8201749ed6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 744 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 they really goes up and beyond to make sure we’re satisfied 116 158 \N \N \N 2026-01-31 02:30:26.016263 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 247, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "they really goes up and beyond to make sure we’re satisfied", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "if you want to be in and out in a timely manner", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 247}, {"details": null, "valence": "positive", "end_char": 315, "evidence": "great pricing", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": []} 61421f8201749ed6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 750 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.80 the wait time became frustratingly long 307 335 \N \N \N 2026-01-31 02:30:32.627048 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "they didn’t charge us any additional fees", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the car was new and comfortable", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "the wait time became frustratingly long", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "they didn’t answer the phone", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "impossible to locate", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 161}], "unmapped": []} 137ca4df632ffcc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 745 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward 61 134 \N \N \N 2026-01-31 02:30:26.017777 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 247, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "they really goes up and beyond to make sure we’re satisfied", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "if you want to be in and out in a timely manner", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 247}, {"details": null, "valence": "positive", "end_char": 315, "evidence": "great pricing", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": []} 61421f8201749ed6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 746 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 if you want to be in and out in a timely manner 247 283 \N \N \N 2026-01-31 02:30:26.019016 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 247, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "they really goes up and beyond to make sure we’re satisfied", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "if you want to be in and out in a timely manner", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 247}, {"details": null, "valence": "positive", "end_char": 315, "evidence": "great pricing", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": []} 61421f8201749ed6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 747 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 great pricing 303 315 \N \N \N 2026-01-31 02:30:26.020061 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 247, "evidence": "I would recommend this place to rent from", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "they really goes up and beyond to make sure we’re satisfied", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "if you want to be in and out in a timely manner", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 247}, {"details": null, "valence": "positive", "end_char": 315, "evidence": "great pricing", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": []} 61421f8201749ed6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 748 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 2 2 \N 0.90 they didn’t charge us any additional fees 56 85 \N \N \N 2026-01-31 02:30:32.623189 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "they didn’t charge us any additional fees", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the car was new and comfortable", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "the wait time became frustratingly long", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "they didn’t answer the phone", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "impossible to locate", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 161}], "unmapped": []} 137ca4df632ffcc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 749 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Automotive.CarRental AUTOMOTIVE 1.1 COMFORT + 2 2 \N 0.90 the car was new and comfortable 90 116 \N \N \N 2026-01-31 02:30:32.625456 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "they didn’t charge us any additional fees", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the car was new and comfortable", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "the wait time became frustratingly long", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "they didn’t answer the phone", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "impossible to locate", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 161}], "unmapped": []} 137ca4df632ffcc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 751 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.80 they didn’t answer the phone 174 197 \N \N \N 2026-01-31 02:30:32.628484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "they didn’t charge us any additional fees", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the car was new and comfortable", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "the wait time became frustratingly long", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "they didn’t answer the phone", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "impossible to locate", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 161}], "unmapped": []} 137ca4df632ffcc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 752 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Automotive.CarRental AUTOMOTIVE 1.1 ACCESSIBILITY - 2 2 \N 0.70 impossible to locate 161 179 \N \N \N 2026-01-31 02:30:32.630088 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "they didn’t charge us any additional fees", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the car was new and comfortable", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "the wait time became frustratingly long", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "they didn’t answer the phone", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "impossible to locate", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 161}], "unmapped": []} 137ca4df632ffcc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 755 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 strongly reconmend the place! 174 197 \N \N \N 2026-01-31 02:30:43.871927 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "the shuttle was comfortable and fast", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "their staff was kind and professional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "got a great car (brand new Peugeot 2008 diesel)", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 54}], "unmapped": []} f9f1aa979e7a6131 auto 07c01d3a-3443-4031-910c-7b6feba2c100 142 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Worst car rental ever. Chaos, long queues, small s... 0 50 {general} \N \N 2026-01-31 02:05:47.001691 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 143 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 I don't usually write reviews but I feel obliged t... 0 50 \N \N \N 2026-01-31 02:05:47.002156 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 756 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 350Euros for 7 days 138 155 \N \N \N 2026-01-31 02:30:43.875588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "the shuttle was comfortable and fast", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "their staff was kind and professional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "got a great car (brand new Peugeot 2008 diesel)", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 54}], "unmapped": []} f9f1aa979e7a6131 auto 07c01d3a-3443-4031-910c-7b6feba2c100 757 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 2 3 \N 0.80 the shuttle was comfortable and fast 116 146 \N \N \N 2026-01-31 02:30:43.87773 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "the shuttle was comfortable and fast", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "their staff was kind and professional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "got a great car (brand new Peugeot 2008 diesel)", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 54}], "unmapped": []} f9f1aa979e7a6131 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4524 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNteW9lSUFREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 un mundo de ilusiones 12 34 \N \N \N 2026-01-31 13:43:57.646569 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "un mundo de ilusiones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 3f90d863a81e2522 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 758 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 2 3 \N 0.80 their staff was kind and professional 162 195 \N \N \N 2026-01-31 02:30:43.878947 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "the shuttle was comfortable and fast", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "their staff was kind and professional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "got a great car (brand new Peugeot 2008 diesel)", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 54}], "unmapped": []} f9f1aa979e7a6131 auto 07c01d3a-3443-4031-910c-7b6feba2c100 759 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 got a great car (brand new Peugeot 2008 diesel) 54 92 \N \N \N 2026-01-31 02:30:43.880373 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "strongly reconmend the place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "350Euros for 7 days", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "the shuttle was comfortable and fast", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "their staff was kind and professional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "got a great car (brand new Peugeot 2008 diesel)", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 54}], "unmapped": []} f9f1aa979e7a6131 auto 07c01d3a-3443-4031-910c-7b6feba2c100 762 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Amazing service! 0 15 \N \N \N 2026-01-31 02:30:54.706035 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Carmen provided me, she was kind, efficient and provided with all the information that I needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "she even gave me a list with recommendations of sightseeing by car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "he always driving between the airport and the office, so it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 204}], "unmapped": []} 8c2562097dde60ac auto 07c01d3a-3443-4031-910c-7b6feba2c100 763 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 it was easy, efficient and spotless. 36 66 \N \N \N 2026-01-31 02:30:54.709928 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Carmen provided me, she was kind, efficient and provided with all the information that I needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "she even gave me a list with recommendations of sightseeing by car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "he always driving between the airport and the office, so it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 204}], "unmapped": []} 8c2562097dde60ac auto 07c01d3a-3443-4031-910c-7b6feba2c100 764 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Carmen provided me, she was kind, efficient and provided with all the information that I needed. 68 139 \N \N \N 2026-01-31 02:30:54.711411 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Carmen provided me, she was kind, efficient and provided with all the information that I needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "she even gave me a list with recommendations of sightseeing by car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "he always driving between the airport and the office, so it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 204}], "unmapped": []} 8c2562097dde60ac auto 07c01d3a-3443-4031-910c-7b6feba2c100 765 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 she even gave me a list with recommendations of sightseeing by car. 139 182 \N \N \N 2026-01-31 02:30:54.712848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Carmen provided me, she was kind, efficient and provided with all the information that I needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "she even gave me a list with recommendations of sightseeing by car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "he always driving between the airport and the office, so it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 204}], "unmapped": []} 8c2562097dde60ac auto 07c01d3a-3443-4031-910c-7b6feba2c100 781 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-60 Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I highly recommend it! 56 75 \N \N \N 2026-01-31 02:31:16.640476 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "I highly recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "the staff is super, kind and nice!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything was very easy and fast", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} f4bdba25d08588ff auto 07c01d3a-3443-4031-910c-7b6feba2c100 766 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 he always driving between the airport and the office, so it was fast to get to the airport. 204 263 \N \N \N 2026-01-31 02:30:54.714155 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Amazing service!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "it was easy, efficient and spotless.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Carmen provided me, she was kind, efficient and provided with all the information that I needed.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "she even gave me a list with recommendations of sightseeing by car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "he always driving between the airport and the office, so it was fast to get to the airport.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 204}], "unmapped": []} 8c2562097dde60ac auto 07c01d3a-3443-4031-910c-7b6feba2c100 767 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 the car rental is not at the airport, they offer a free shuttle 20 75 \N \N \N 2026-01-31 02:31:00.905335 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 75, "evidence": "the car rental is not at the airport, they offer a free shuttle", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "Had to call to ask for the shuttle", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "this was a money making effort", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 323, "evidence": "the person handling my return was also rude", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "They wanted to charge 50 EUR for a deep clean", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 265}], "unmapped": []} e0bf3405f6e5e3fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 768 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 Had to call to ask for the shuttle 76 103 \N \N \N 2026-01-31 02:31:00.908782 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 75, "evidence": "the car rental is not at the airport, they offer a free shuttle", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "Had to call to ask for the shuttle", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "this was a money making effort", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 323, "evidence": "the person handling my return was also rude", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "They wanted to charge 50 EUR for a deep clean", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 265}], "unmapped": []} e0bf3405f6e5e3fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 4525 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURrbUpMLWJBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 2 2 \N 0.60 Un poco desfasados 0 20 \N \N \N 2026-01-31 13:43:59.280832 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 20, "evidence": "Un poco desfasados", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 0}], "unmapped": []} 4a3d9293cecd5c0f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 769 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 2 3 \N 0.90 this was a money making effort 138 162 \N \N \N 2026-01-31 02:31:00.9103 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 75, "evidence": "the car rental is not at the airport, they offer a free shuttle", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "Had to call to ask for the shuttle", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "this was a money making effort", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 323, "evidence": "the person handling my return was also rude", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "They wanted to charge 50 EUR for a deep clean", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 265}], "unmapped": []} e0bf3405f6e5e3fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 5657 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 FRICTION - 2 3 \N 0.90 They only have the phone scan option for the drink menu. 0 56 \N \N \N 2026-01-31 15:17:13.581343 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "They only have the phone scan option for the drink menu.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "I left immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 57}], "unmapped": []} 1dd5015e90fcded4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 770 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 2 3 \N 0.90 the person handling my return was also rude 290 323 \N \N \N 2026-01-31 02:31:00.911912 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 75, "evidence": "the car rental is not at the airport, they offer a free shuttle", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "Had to call to ask for the shuttle", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "this was a money making effort", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 323, "evidence": "the person handling my return was also rude", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "They wanted to charge 50 EUR for a deep clean", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 265}], "unmapped": []} e0bf3405f6e5e3fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 771 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 They wanted to charge 50 EUR for a deep clean 265 303 \N \N \N 2026-01-31 02:31:00.913488 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 75, "evidence": "the car rental is not at the airport, they offer a free shuttle", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "Had to call to ask for the shuttle", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "this was a money making effort", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 323, "evidence": "the person handling my return was also rude", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "They wanted to charge 50 EUR for a deep clean", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 265}], "unmapped": []} e0bf3405f6e5e3fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 772 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 a shuttle bus between airport and their office, so very easy to get and return your car 0 83 \N \N \N 2026-01-31 02:31:07.333275 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "a shuttle bus between airport and their office, so very easy to get and return your car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "Car condition is very good", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "they just quickly check the car and told me everything is OK", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "I get back my deposit immediately", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 219}, {"details": null, "valence": "positive", "end_char": 275, "evidence": "Suggest buy their full insurance", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 247}], "unmapped": []} f3f840bc55f601f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 773 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 Car condition is very good 84 106 \N \N \N 2026-01-31 02:31:07.345621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "a shuttle bus between airport and their office, so very easy to get and return your car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "Car condition is very good", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "they just quickly check the car and told me everything is OK", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "I get back my deposit immediately", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 219}, {"details": null, "valence": "positive", "end_char": 275, "evidence": "Suggest buy their full insurance", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 247}], "unmapped": []} f3f840bc55f601f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 774 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 they just quickly check the car and told me everything is OK 174 218 \N \N \N 2026-01-31 02:31:07.347148 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "a shuttle bus between airport and their office, so very easy to get and return your car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "Car condition is very good", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "they just quickly check the car and told me everything is OK", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "I get back my deposit immediately", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 219}, {"details": null, "valence": "positive", "end_char": 275, "evidence": "Suggest buy their full insurance", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 247}], "unmapped": []} f3f840bc55f601f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 775 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOVERY + 3 3 \N 0.90 I get back my deposit immediately 219 246 \N \N \N 2026-01-31 02:31:07.348512 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "a shuttle bus between airport and their office, so very easy to get and return your car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "Car condition is very good", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "they just quickly check the car and told me everything is OK", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "I get back my deposit immediately", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 219}, {"details": null, "valence": "positive", "end_char": 275, "evidence": "Suggest buy their full insurance", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 247}], "unmapped": []} f3f840bc55f601f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 776 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Suggest buy their full insurance 247 275 \N \N \N 2026-01-31 02:31:07.349826 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "a shuttle bus between airport and their office, so very easy to get and return your car", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "Car condition is very good", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "they just quickly check the car and told me everything is OK", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "I get back my deposit immediately", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 219}, {"details": null, "valence": "positive", "end_char": 275, "evidence": "Suggest buy their full insurance", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 247}], "unmapped": []} f3f840bc55f601f9 auto 07c01d3a-3443-4031-910c-7b6feba2c100 777 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Would definitely rent again and recommend this place. 157 195 \N \N \N 2026-01-31 02:31:12.412536 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 195, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was very friendly, and both the pick-up and drop-off was smooth.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition - even if you book last minute.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "neither the length of the ride or the waiting times for the shuttle were long.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 121}], "unmapped": []} 26acf1e3ed81be13 auto 07c01d3a-3443-4031-910c-7b6feba2c100 778 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 The staff was very friendly, and both the pick-up and drop-off was smooth. 66 116 \N \N \N 2026-01-31 02:31:12.416145 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 195, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was very friendly, and both the pick-up and drop-off was smooth.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition - even if you book last minute.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "neither the length of the ride or the waiting times for the shuttle were long.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 121}], "unmapped": []} 26acf1e3ed81be13 auto 07c01d3a-3443-4031-910c-7b6feba2c100 779 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 Large variety of brand-new cars, in good condition - even if you book last minute. 30 83 \N \N \N 2026-01-31 02:31:12.417716 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 195, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was very friendly, and both the pick-up and drop-off was smooth.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition - even if you book last minute.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "neither the length of the ride or the waiting times for the shuttle were long.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 121}], "unmapped": []} 26acf1e3ed81be13 auto 07c01d3a-3443-4031-910c-7b6feba2c100 780 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 3 \N 0.80 neither the length of the ride or the waiting times for the shuttle were long. 121 166 \N \N \N 2026-01-31 02:31:12.418928 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 195, "evidence": "Would definitely rent again and recommend this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "The staff was very friendly, and both the pick-up and drop-off was smooth.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Large variety of brand-new cars, in good condition - even if you book last minute.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "neither the length of the ride or the waiting times for the shuttle were long.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 121}], "unmapped": []} 26acf1e3ed81be13 auto 07c01d3a-3443-4031-910c-7b6feba2c100 782 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-60 Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 the staff is super, kind and nice! 34 56 \N \N \N 2026-01-31 02:31:16.643234 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "I highly recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "the staff is super, kind and nice!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything was very easy and fast", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} f4bdba25d08588ff auto 07c01d3a-3443-4031-910c-7b6feba2c100 783 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-60 Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Everything was very easy and fast 0 30 \N \N \N 2026-01-31 02:31:16.64536 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "I highly recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "the staff is super, kind and nice!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Everything was very easy and fast", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} f4bdba25d08588ff auto 07c01d3a-3443-4031-910c-7b6feba2c100 784 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-61 Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 Really good value 0 17 \N \N \N 2026-01-31 02:31:22.321753 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "New Cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "no problems getting the shuttle to the off site office", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 139}], "unmapped": []} 3df46897476f1c56 auto 07c01d3a-3443-4031-910c-7b6feba2c100 785 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-61 Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 New Cars 18 27 \N \N \N 2026-01-31 02:31:22.324066 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "New Cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "no problems getting the shuttle to the off site office", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 139}], "unmapped": []} 3df46897476f1c56 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4526 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURxaktDMndnRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 2 2 \N 0.90 Precios algo desorbitados. 0 24 \N \N \N 2026-01-31 13:44:00.515305 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 24, "evidence": "Precios algo desorbitados.", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8dd89f54a6f87c31 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 786 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-61 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Friendly genuine service 28 50 \N \N \N 2026-01-31 02:31:22.326051 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "New Cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "no problems getting the shuttle to the off site office", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 139}], "unmapped": []} 3df46897476f1c56 auto 07c01d3a-3443-4031-910c-7b6feba2c100 787 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-61 Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.80 no problems getting the shuttle to the off site office 139 185 \N \N \N 2026-01-31 02:31:22.330574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Really good value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "New Cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Friendly genuine service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "no problems getting the shuttle to the off site office", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 139}], "unmapped": []} 3df46897476f1c56 auto 07c01d3a-3443-4031-910c-7b6feba2c100 788 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-62 Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 nobody … 116 122 \N \N \N 2026-01-31 02:31:35.507493 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 122, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "had to chase them down for information", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 29, "evidence": "SCAMMERS", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": [{"label": "Arrival Experience", "evidence": "We landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van", "confidence": 0.7}]} 2d1b7c0330e9c847 auto 07c01d3a-3443-4031-910c-7b6feba2c100 789 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-62 Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.80 had to chase them down for information 0 20 \N \N \N 2026-01-31 02:31:35.509678 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 122, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "had to chase them down for information", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 29, "evidence": "SCAMMERS", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": [{"label": "Arrival Experience", "evidence": "We landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van", "confidence": 0.7}]} 2d1b7c0330e9c847 auto 07c01d3a-3443-4031-910c-7b6feba2c100 790 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-62 Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 SCAMMERS 20 29 \N \N \N 2026-01-31 02:31:35.511649 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 122, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "had to chase them down for information", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 29, "evidence": "SCAMMERS", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": [{"label": "Arrival Experience", "evidence": "We landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van", "confidence": 0.7}]} 2d1b7c0330e9c847 auto 07c01d3a-3443-4031-910c-7b6feba2c100 791 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-62 Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 We landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van \N \N {"Arrival Experience"} \N \N 2026-01-31 02:31:35.512886 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 122, "evidence": "nobody …", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "had to chase them down for information", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 29, "evidence": "SCAMMERS", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 20}], "unmapped": [{"label": "Arrival Experience", "evidence": "We landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van", "confidence": 0.7}]} 2d1b7c0330e9c847 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4527 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZdlpESG9nRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOGNITION + 2 3 \N 0.90 Buen comercio 0 12 \N \N \N 2026-01-31 13:44:02.132111 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Buen comercio", "intensity": 4, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} bb6b07a142821310 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 792 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-63 Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 Great price performance ratio 0 27 \N \N \N 2026-01-31 02:31:42.823087 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great price performance ratio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "very friendly and service oriented team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "even German speaking with Daniel", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 62}], "unmapped": []} 84dec79ea7a85a81 auto 07c01d3a-3443-4031-910c-7b6feba2c100 144 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Very unfriendly lady. Not returning here again. To... 0 50 \N \N \N 2026-01-31 02:05:47.002647 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 793 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-63 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 very friendly and service oriented team 28 61 \N \N \N 2026-01-31 02:31:42.826204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great price performance ratio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "very friendly and service oriented team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "even German speaking with Daniel", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 62}], "unmapped": []} 84dec79ea7a85a81 auto 07c01d3a-3443-4031-910c-7b6feba2c100 794 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-63 Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 even German speaking with Daniel 62 88 \N \N \N 2026-01-31 02:31:42.827999 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great price performance ratio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "very friendly and service oriented team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "even German speaking with Daniel", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 62}], "unmapped": []} 84dec79ea7a85a81 auto 07c01d3a-3443-4031-910c-7b6feba2c100 795 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-64 Automotive.CarRental AUTOMOTIVE 1.1 HONESTY + 3 3 \N 0.90 Honestly, astounded at how amazing the service from these guys has been 0 61 \N \N \N 2026-01-31 02:31:50.691039 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Honestly, astounded at how amazing the service from these guys has been", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "especially considering the amazing price!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "astounded at how amazing the service from these guys has been", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": []} e7fabd8cbe901155 auto 07c01d3a-3443-4031-910c-7b6feba2c100 796 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-64 Automotive.CarRental AUTOMOTIVE 1.1 PRICE_LEVEL + 3 3 \N 0.90 especially considering the amazing price! 66 98 \N \N \N 2026-01-31 02:31:50.692851 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Honestly, astounded at how amazing the service from these guys has been", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "especially considering the amazing price!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "astounded at how amazing the service from these guys has been", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": []} e7fabd8cbe901155 auto 07c01d3a-3443-4031-910c-7b6feba2c100 797 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-64 Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.70 astounded at how amazing the service from these guys has been 0 61 \N \N \N 2026-01-31 02:31:50.694818 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Honestly, astounded at how amazing the service from these guys has been", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "especially considering the amazing price!", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "astounded at how amazing the service from these guys has been", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": []} e7fabd8cbe901155 auto 07c01d3a-3443-4031-910c-7b6feba2c100 798 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-65 Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Great experience using ClickRent. 0 30 \N \N \N 2026-01-31 02:31:58.268992 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great experience using ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick check in and check out", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "regular shuttles", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 61}], "unmapped": []} 29b3ea46ac9b1846 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4528 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChRDSUhNMG9nS0VJQ0FnSUM0enI0WRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 De todo para los peques. 0 25 \N \N \N 2026-01-31 13:44:03.495223 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "De todo para los peques.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c0eaf386efde841e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 801 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-66 Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 overcharging my security deposit 41 66 \N \N \N 2026-01-31 02:32:05.678238 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "overcharging my security deposit", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "their support is not doing anything so far", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "how could you trust such a company", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 134}], "unmapped": []} df6083dd44b67460 auto 07c01d3a-3443-4031-910c-7b6feba2c100 802 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-66 Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 their support is not doing anything so far 70 101 \N \N \N 2026-01-31 02:32:05.681228 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "overcharging my security deposit", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "their support is not doing anything so far", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "how could you trust such a company", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 134}], "unmapped": []} df6083dd44b67460 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1257 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNaX0l2NHhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Estoy súper contenta con la clínica 0 30 \N \N \N 2026-01-31 03:38:58.861783 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 71, "evidence": "el trato por parte del personal es inmejorable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Estoy súper contenta con la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c3b00c13a456a13d auto 22c559a8-fabc-4916-9961-bcbd61225266 803 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-66 Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 2 3 \N 0.90 how could you trust such a company 134 162 \N \N \N 2026-01-31 02:32:05.683949 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "overcharging my security deposit", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "their support is not doing anything so far", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "how could you trust such a company", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 134}], "unmapped": []} df6083dd44b67460 auto 07c01d3a-3443-4031-910c-7b6feba2c100 804 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-67 Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 clickRent experience was the best one 56 83 \N \N \N 2026-01-31 02:32:14.394358 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "looking forward to use clickRent again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} 60cb7f4ec4cc6dc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 805 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-67 Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 super fast and friendly service 98 126 \N \N \N 2026-01-31 02:32:14.397432 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "looking forward to use clickRent again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} 60cb7f4ec4cc6dc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 806 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-67 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 super welcoming 145 161 \N \N \N 2026-01-31 02:32:14.399067 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "looking forward to use clickRent again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} 60cb7f4ec4cc6dc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 807 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-67 Automotive.CarRental AUTOMOTIVE 1.1 RETURN_INTENT + 3 3 \N 0.90 looking forward to use clickRent again 174 205 \N \N \N 2026-01-31 02:32:14.400865 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "clickRent experience was the best one", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "super fast and friendly service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "super welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "looking forward to use clickRent again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} 60cb7f4ec4cc6dc4 auto 07c01d3a-3443-4031-910c-7b6feba2c100 808 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-68 Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 great customer service 20 41 \N \N \N 2026-01-31 02:32:19.02921 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "great customer service", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "very nice affordable cars", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "I had a smooth rent", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2f33d1a2d4296e60 auto 07c01d3a-3443-4031-910c-7b6feba2c100 809 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-68 Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 very nice affordable cars 45 70 \N \N \N 2026-01-31 02:32:19.032958 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "great customer service", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "very nice affordable cars", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "I had a smooth rent", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2f33d1a2d4296e60 auto 07c01d3a-3443-4031-910c-7b6feba2c100 810 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-68 Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 I had a smooth rent 0 18 \N \N \N 2026-01-31 02:32:19.035908 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "great customer service", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "very nice affordable cars", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "I had a smooth rent", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2f33d1a2d4296e60 auto 07c01d3a-3443-4031-910c-7b6feba2c100 811 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-69 Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Big recommend!!! 139 154 \N \N \N 2026-01-31 02:32:24.148369 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "they speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 3af442036de95685 auto 07c01d3a-3443-4031-910c-7b6feba2c100 812 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-69 Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 3 3 \N 0.90 car was clean and brand new 83 106 \N \N \N 2026-01-31 02:32:24.152271 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "they speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 3af442036de95685 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1446 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 limpieza 56 63 \N \N \N 2026-01-31 03:42:25.95907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "encantador gente amena preocupada x los demás", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}], "unmapped": []} c90e31a5f2b175d1 auto 56bb22c1-8631-4285-b549-8fa7c9944462 145 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Outstanding Service – Highly Recommended!\n\nI had a... 0 50 \N \N \N 2026-01-31 02:05:47.003103 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 146 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 It's great for a budget rental. A little further f... 0 50 \N \N \N 2026-01-31 02:05:47.003591 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 813 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-69 Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Really nice and helpful people 0 34 \N \N \N 2026-01-31 02:32:24.15463 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "they speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 3af442036de95685 auto 07c01d3a-3443-4031-910c-7b6feba2c100 814 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-69 Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION + 3 3 \N 0.90 they speak good english 37 56 \N \N \N 2026-01-31 02:32:24.15623 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "they speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 3af442036de95685 auto 07c01d3a-3443-4031-910c-7b6feba2c100 821 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Automotive.CarRental AUTOMOTIVE 1.1 RETURN_INTENT + 3 3 \N 0.90 I would book again. 127 143 \N \N \N 2026-01-31 02:32:30.846283 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "The station is about 5 minutes from the airport, the shuttle worked excellently.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "My car was like new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I would book again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 127}], "unmapped": []} e3236d1bce2ec8c2 auto 07c01d3a-3443-4031-910c-7b6feba2c100 815 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-69 Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 whole rental went really smoothly 57 84 \N \N \N 2026-01-31 02:32:24.158461 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 154, "evidence": "Big recommend!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "car was clean and brand new", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Really nice and helpful people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "they speak good english", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "whole rental went really smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 3af442036de95685 auto 07c01d3a-3443-4031-910c-7b6feba2c100 816 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB Automotive.CarRental AUTOMOTIVE 1.1 ACCESSIBILITY + 1 2 \N 0.80 better mark where the shuttle is 30 56 \N \N \N 2026-01-31 02:32:26.437266 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "better mark where the shuttle is", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "everything was fine", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": []} d24640d1e71d4422 auto 07c01d3a-3443-4031-910c-7b6feba2c100 817 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 everything was fine 66 84 \N \N \N 2026-01-31 02:32:26.439806 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "better mark where the shuttle is", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "everything was fine", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": []} d24640d1e71d4422 auto 07c01d3a-3443-4031-910c-7b6feba2c100 4205 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 kitur tokiu nerasit 24 41 \N \N \N 2026-01-31 13:36:29.329672 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "geriausi barmenai", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 6}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "kitur tokiu nerasit", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}], "unmapped": []} a1d40d8bda6f415f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 818 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 The station is about 5 minutes from the airport, the shuttle worked excellently. 0 78 \N \N \N 2026-01-31 02:32:30.842394 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "The station is about 5 minutes from the airport, the shuttle worked excellently.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "My car was like new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I would book again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 127}], "unmapped": []} e3236d1bce2ec8c2 auto 07c01d3a-3443-4031-910c-7b6feba2c100 819 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 My car was like new 79 95 \N \N \N 2026-01-31 02:32:30.843733 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "The station is about 5 minutes from the airport, the shuttle worked excellently.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "My car was like new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I would book again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 127}], "unmapped": []} e3236d1bce2ec8c2 auto 07c01d3a-3443-4031-910c-7b6feba2c100 820 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 check-in and check-out were very well organized. 96 126 \N \N \N 2026-01-31 02:32:30.844732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "The station is about 5 minutes from the airport, the shuttle worked excellently.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "My car was like new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "check-in and check-out were very well organized.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I would book again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 127}], "unmapped": []} e3236d1bce2ec8c2 auto 07c01d3a-3443-4031-910c-7b6feba2c100 841 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE - 2 3 \N 0.90 Not professional at all 75 95 \N \N \N 2026-01-31 02:32:53.991797 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 59, "evidence": "treated us very bad", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Not professional at all", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "i don’t recommend", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 61}], "unmapped": []} 41a1e94147f9ed55 auto 07c01d3a-3443-4031-910c-7b6feba2c100 822 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 I do not recommend at all. 0 22 \N \N \N 2026-01-31 02:32:35.303691 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 62, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 104}], "unmapped": []} d9d3f1e30006d484 auto 07c01d3a-3443-4031-910c-7b6feba2c100 823 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 3 3 \N 0.90 This company is a scam and will take your money. 23 62 \N \N \N 2026-01-31 02:32:35.310263 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 62, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 104}], "unmapped": []} d9d3f1e30006d484 auto 07c01d3a-3443-4031-910c-7b6feba2c100 824 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 3 3 \N 0.90 They claim fake damages and make you pay for them. 63 103 \N \N \N 2026-01-31 02:32:35.311872 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 62, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 104}], "unmapped": []} d9d3f1e30006d484 auto 07c01d3a-3443-4031-910c-7b6feba2c100 825 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 2 3 \N 0.80 I recommend renting from companies that are based at the airport. 104 151 \N \N \N 2026-01-31 02:32:35.313308 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "I do not recommend at all.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 62, "evidence": "This company is a scam and will take your money.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "They claim fake damages and make you pay for them.", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I recommend renting from companies that are based at the airport.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 104}], "unmapped": []} d9d3f1e30006d484 auto 07c01d3a-3443-4031-910c-7b6feba2c100 826 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Excellent, friendly and beyond helpful service at both collection and drop off for car. 0 78 \N \N \N 2026-01-31 02:32:38.74366 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Excellent, friendly and beyond helpful service at both collection and drop off for car.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Very quick and easy.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Will defo recommend 👌", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} 57982f3632187c45 auto 07c01d3a-3443-4031-910c-7b6feba2c100 827 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Very quick and easy. 139 157 \N \N \N 2026-01-31 02:32:38.746341 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Excellent, friendly and beyond helpful service at both collection and drop off for car.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Very quick and easy.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Will defo recommend 👌", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} 57982f3632187c45 auto 07c01d3a-3443-4031-910c-7b6feba2c100 828 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Will defo recommend 👌 158 179 \N \N \N 2026-01-31 02:32:38.748468 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Excellent, friendly and beyond helpful service at both collection and drop off for car.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Very quick and easy.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Will defo recommend 👌", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} 57982f3632187c45 auto 07c01d3a-3443-4031-910c-7b6feba2c100 829 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 1 2 \N 0.90 Employeey were nice. 0 20 \N \N \N 2026-01-31 02:32:42.815869 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "they got us back to the airport by bus.", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "They send back the deposit on that day.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 49}], "unmapped": []} ff84f95e7d7001b7 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1618 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURyaDVpNTl3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Идеальное местоположение 0 20 \N \N \N 2026-01-31 03:45:12.192088 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Идеальное местоположение", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "где мне удалось хорошо выспаться", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 59d6034a9fc07a7a auto 56bb22c1-8631-4285-b549-8fa7c9944462 830 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 1 2 \N 0.80 they got us back to the airport by bus. 66 100 \N \N \N 2026-01-31 02:32:42.818823 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "they got us back to the airport by bus.", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "They send back the deposit on that day.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 49}], "unmapped": []} ff84f95e7d7001b7 auto 07c01d3a-3443-4031-910c-7b6feba2c100 831 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Automotive.CarRental AUTOMOTIVE 1.1 RETURN_INTENT + 3 3 \N 0.90 I really recomend it! 116 135 \N \N \N 2026-01-31 02:32:42.820599 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "they got us back to the airport by bus.", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "They send back the deposit on that day.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 49}], "unmapped": []} ff84f95e7d7001b7 auto 07c01d3a-3443-4031-910c-7b6feba2c100 832 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 2 2 \N 0.80 They send back the deposit on that day. 49 78 \N \N \N 2026-01-31 02:32:42.822295 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Employeey were nice.", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "they got us back to the airport by bus.", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "I really recomend it!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "They send back the deposit on that day.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 49}], "unmapped": []} ff84f95e7d7001b7 auto 07c01d3a-3443-4031-910c-7b6feba2c100 833 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Very friendly and helpfull staff. 0 30 \N \N \N 2026-01-31 02:32:46.426891 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very friendly and helpfull staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick and correct in service.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "very well recomended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 57}], "unmapped": []} 64bc545941dd3da8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1258 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURWOWVIUjl3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 estoy encantadísima con los resultados y el trato no podría ser mejor 0 70 \N \N \N 2026-01-31 03:39:00.382678 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "estoy encantadísima con los resultados y el trato no podría ser mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5451c7d7e2487b25 auto 22c559a8-fabc-4916-9961-bcbd61225266 834 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Quick and correct in service. 31 56 \N \N \N 2026-01-31 02:32:46.431949 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very friendly and helpfull staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick and correct in service.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "very well recomended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 57}], "unmapped": []} 64bc545941dd3da8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 835 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 very well recomended. 57 78 \N \N \N 2026-01-31 02:32:46.433827 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very friendly and helpfull staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Quick and correct in service.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "very well recomended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 57}], "unmapped": []} 64bc545941dd3da8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 836 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 Waiting in the queue for 100 minutes is not the way to start your trip. 43 85 \N \N \N 2026-01-31 02:32:50.876277 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 13, "evidence": "Terrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 7}, {"details": null, "valence": "negative", "end_char": 21, "evidence": "Horrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 14}, {"details": null, "valence": "negative", "end_char": 93, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 86}], "unmapped": []} 9f1c64f03db593cc auto 07c01d3a-3443-4031-910c-7b6feba2c100 837 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 3 3 \N 0.80 Terrible 7 13 \N \N \N 2026-01-31 02:32:50.879639 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 13, "evidence": "Terrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 7}, {"details": null, "valence": "negative", "end_char": 21, "evidence": "Horrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 14}, {"details": null, "valence": "negative", "end_char": 93, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 86}], "unmapped": []} 9f1c64f03db593cc auto 07c01d3a-3443-4031-910c-7b6feba2c100 838 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 3 3 \N 0.80 Horrible 14 21 \N \N \N 2026-01-31 02:32:50.881195 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 13, "evidence": "Terrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 7}, {"details": null, "valence": "negative", "end_char": 21, "evidence": "Horrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 14}, {"details": null, "valence": "negative", "end_char": 93, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 86}], "unmapped": []} 9f1c64f03db593cc auto 07c01d3a-3443-4031-910c-7b6feba2c100 839 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 3 3 \N 0.80 No Bueno 86 93 \N \N \N 2026-01-31 02:32:50.882655 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "Waiting in the queue for 100 minutes is not the way to start your trip.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 13, "evidence": "Terrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 7}, {"details": null, "valence": "negative", "end_char": 21, "evidence": "Horrible", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 14}, {"details": null, "valence": "negative", "end_char": 93, "evidence": "No Bueno", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 86}], "unmapped": []} 9f1c64f03db593cc auto 07c01d3a-3443-4031-910c-7b6feba2c100 5658 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT - 3 3 \N 0.90 I left immediately. 57 73 \N \N \N 2026-01-31 15:17:13.58303 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "They only have the phone scan option for the drink menu.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "I left immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 57}], "unmapped": []} 1dd5015e90fcded4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 840 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 2 3 \N 0.90 treated us very bad 41 59 \N \N \N 2026-01-31 02:32:53.988748 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 59, "evidence": "treated us very bad", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Not professional at all", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "i don’t recommend", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 61}], "unmapped": []} 41a1e94147f9ed55 auto 07c01d3a-3443-4031-910c-7b6feba2c100 842 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 i don’t recommend 61 75 \N \N \N 2026-01-31 02:32:53.993406 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 59, "evidence": "treated us very bad", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Not professional at all", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "i don’t recommend", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 61}], "unmapped": []} 41a1e94147f9ed55 auto 07c01d3a-3443-4031-910c-7b6feba2c100 882 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Everything went smoothly 0 24 \N \N \N 2026-01-31 02:33:44.220054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Car was in excellent shape", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "the shuttle bus is very convenient", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Everything went smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} edc993f505a471b3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 843 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 Excellent service! 0 16 \N \N \N 2026-01-31 02:32:57.77205 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "If that’s your case, go to the uppermost floor and exit on gate number 2.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "There you’ll find clickrent team and their shuttle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 164}], "unmapped": []} cd31aaf6034e8996 auto 07c01d3a-3443-4031-910c-7b6feba2c100 844 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Automotive.CarRental AUTOMOTIVE 1.1 ACCESSIBILITY + 3 3 \N 0.90 If that’s your case, go to the uppermost floor and exit on gate number 2. 47 92 \N \N \N 2026-01-31 02:32:57.778531 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "If that’s your case, go to the uppermost floor and exit on gate number 2.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "There you’ll find clickrent team and their shuttle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 164}], "unmapped": []} cd31aaf6034e8996 auto 07c01d3a-3443-4031-910c-7b6feba2c100 845 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION + 3 3 \N 0.90 There you’ll find clickrent team and their shuttle. 164 203 \N \N \N 2026-01-31 02:32:57.781887 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "If that’s your case, go to the uppermost floor and exit on gate number 2.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "There you’ll find clickrent team and their shuttle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 164}], "unmapped": []} cd31aaf6034e8996 auto 07c01d3a-3443-4031-910c-7b6feba2c100 846 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 One of the best rental car experiences I've had. 0 47 \N \N \N 2026-01-31 02:33:01.13277 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "One of the best rental car experiences I've had.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "Great service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 48}], "unmapped": []} 24a7be600f032938 auto 07c01d3a-3443-4031-910c-7b6feba2c100 5659 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Nice place, great events! 0 27 \N \N \N 2026-01-31 15:17:14.839676 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Nice place, great events!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} adbcd17d7e6a30e9 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 847 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 Great service 48 60 \N \N \N 2026-01-31 02:33:01.135203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "One of the best rental car experiences I've had.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "Great service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 48}], "unmapped": []} 24a7be600f032938 auto 07c01d3a-3443-4031-910c-7b6feba2c100 848 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 Car pick up was seamless 0 26 \N \N \N 2026-01-31 02:33:06.156612 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "made it all very easy", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 112}], "unmapped": []} 6d7c6a8d1d895b9a auto 07c01d3a-3443-4031-910c-7b6feba2c100 849 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Carmen from the Gran Canaria branch who served us was wonderful. So friendly 30 83 \N \N \N 2026-01-31 02:33:06.158196 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "made it all very easy", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 112}], "unmapped": []} 6d7c6a8d1d895b9a auto 07c01d3a-3443-4031-910c-7b6feba2c100 850 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 made it all very easy 87 108 \N \N \N 2026-01-31 02:33:06.159216 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "made it all very easy", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 112}], "unmapped": []} 6d7c6a8d1d895b9a auto 07c01d3a-3443-4031-910c-7b6feba2c100 851 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 Car is excellent and brand new 112 138 \N \N \N 2026-01-31 02:33:06.159905 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Car pick up was seamless", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Carmen from the Gran Canaria branch who served us was wonderful. So friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "made it all very easy", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Car is excellent and brand new", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 112}], "unmapped": []} 6d7c6a8d1d895b9a auto 07c01d3a-3443-4031-910c-7b6feba2c100 852 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 Very reliable 30 43 \N \N \N 2026-01-31 02:33:09.500947 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Very reliable", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "not trying to rip off", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Strongly suggest to choose this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2c23e396309b9a46 auto 07c01d3a-3443-4031-910c-7b6feba2c100 5660 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Greatest club in Litauen love it 0 34 \N \N \N 2026-01-31 15:17:18.618929 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Greatest club in Litauen love it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "best place to go and have fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "perfect DJ", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 64}], "unmapped": []} 20917b7bf09ef685 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 853 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY + 3 3 \N 0.90 not trying to rip off 46 66 \N \N \N 2026-01-31 02:33:09.502908 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Very reliable", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "not trying to rip off", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Strongly suggest to choose this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2c23e396309b9a46 auto 07c01d3a-3443-4031-910c-7b6feba2c100 854 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Strongly suggest to choose this company 0 34 \N \N \N 2026-01-31 02:33:09.504354 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Very reliable", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "not trying to rip off", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Strongly suggest to choose this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2c23e396309b9a46 auto 07c01d3a-3443-4031-910c-7b6feba2c100 861 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Efficient service 0 16 \N \N \N 2026-01-31 02:33:18.156366 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Would definitely use again and recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "good daily rate", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Efficient service", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} caee536808e90522 auto 07c01d3a-3443-4031-910c-7b6feba2c100 855 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 I do not recommend them 116 134 \N \N \N 2026-01-31 02:33:14.818536 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "I do not recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "did not get a refund or partly refund", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "no interest in customers needs", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}], "unmapped": []} 274b2d376a521ffc auto 07c01d3a-3443-4031-910c-7b6feba2c100 856 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 they don’t care to manage shuttle bus for delayed flight’s 36 78 \N \N \N 2026-01-31 02:33:14.821844 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "I do not recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "did not get a refund or partly refund", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "no interest in customers needs", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}], "unmapped": []} 274b2d376a521ffc auto 07c01d3a-3443-4031-910c-7b6feba2c100 857 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOVERY - 2 3 \N 0.90 did not get a refund or partly refund 79 106 \N \N \N 2026-01-31 02:33:14.823872 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "I do not recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "did not get a refund or partly refund", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "no interest in customers needs", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}], "unmapped": []} 274b2d376a521ffc auto 07c01d3a-3443-4031-910c-7b6feba2c100 858 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS - 2 3 \N 0.90 no interest in customers needs 135 158 \N \N \N 2026-01-31 02:33:14.825732 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "I do not recommend them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "they don’t care to manage shuttle bus for delayed flight’s", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 106, "evidence": "did not get a refund or partly refund", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "no interest in customers needs", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}], "unmapped": []} 274b2d376a521ffc auto 07c01d3a-3443-4031-910c-7b6feba2c100 859 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Would definitely use again and recommend 43 66 \N \N \N 2026-01-31 02:33:18.151926 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Would definitely use again and recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "good daily rate", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Efficient service", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} caee536808e90522 auto 07c01d3a-3443-4031-910c-7b6feba2c100 860 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 good daily rate 24 37 \N \N \N 2026-01-31 02:33:18.154808 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Would definitely use again and recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "good daily rate", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Efficient service", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} caee536808e90522 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1630 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURkNE5mRE9nEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_TRANSPARENCY - 2 3 \N 0.90 expect to pay all upfront for at least a week 66 103 \N \N \N 2026-01-31 03:45:24.253363 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "dissatisfied to be honest", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 7}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "expect to pay all upfront for at least a week", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 66}], "unmapped": []} 012b10e6fe5ed2a6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 862 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 the People there are nice and helpfull 66 97 \N \N \N 2026-01-31 02:33:22.107553 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "the People there are nice and helpfull", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "speak good english, so no problem to find with them", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Car rent with shuttle from airport, but very close, so it takes about 5min from airport there", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 87140d53135650a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 863 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION + 3 3 \N 0.90 speak good english, so no problem to find with them 98 134 \N \N \N 2026-01-31 02:33:22.11052 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "the People there are nice and helpfull", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "speak good english, so no problem to find with them", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Car rent with shuttle from airport, but very close, so it takes about 5min from airport there", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 87140d53135650a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 864 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 Car rent with shuttle from airport, but very close, so it takes about 5min from airport there 0 82 \N \N \N 2026-01-31 02:33:22.112042 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "the People there are nice and helpfull", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "speak good english, so no problem to find with them", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Car rent with shuttle from airport, but very close, so it takes about 5min from airport there", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 87140d53135650a8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 865 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 2 3 \N 0.90 Carlos in the office was very friendly! 66 92 \N \N \N 2026-01-31 02:33:26.091216 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Carlos in the office was very friendly!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 54, "evidence": "We had to wait a while for the shuttle from the airport to the office", "intensity": 3, "primitive": "SPEED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "the overall experience was great", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 55}], "unmapped": []} baec5149b99021f3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 866 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED ± 2 2 \N 0.70 We had to wait a while for the shuttle from the airport to the office 0 54 \N \N \N 2026-01-31 02:33:26.093821 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Carlos in the office was very friendly!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 54, "evidence": "We had to wait a while for the shuttle from the airport to the office", "intensity": 3, "primitive": "SPEED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "the overall experience was great", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 55}], "unmapped": []} baec5149b99021f3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 867 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 the overall experience was great 55 83 \N \N \N 2026-01-31 02:33:26.095519 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Carlos in the office was very friendly!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 54, "evidence": "We had to wait a while for the shuttle from the airport to the office", "intensity": 3, "primitive": "SPEED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "the overall experience was great", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 55}], "unmapped": []} baec5149b99021f3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 868 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 Excellent service 0 15 \N \N \N 2026-01-31 02:33:29.973233 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Excellent service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "very quick and efficient bookings", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "no hidden costs very surprisingly cheap", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "brand new vehicles", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 1b8a18f7dcfc88fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 875 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I strongly recommend this rental in Las Palmas 56 86 \N \N \N 2026-01-31 02:33:38.233385 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "I strongly recommend this rental in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "Very professional, kind, effective and entertaining", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Carmen, Antonio (shuttle service) and Isaac have been dealing with me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 47}], "unmapped": []} 5c1d6f1b2a71af30 auto 07c01d3a-3443-4031-910c-7b6feba2c100 869 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 very quick and efficient bookings 17 46 \N \N \N 2026-01-31 02:33:29.976522 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Excellent service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "very quick and efficient bookings", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "no hidden costs very surprisingly cheap", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "brand new vehicles", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 1b8a18f7dcfc88fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 5721 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 2 3 \N 0.90 Bar service and coat service was good 30 56 \N \N \N 2026-01-31 15:18:20.806441 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "the club was kept clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "The music was a good mix, but too loud for the small room", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Bar service and coat service was good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 08b00936c10b2a2a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 870 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 no hidden costs very surprisingly cheap 47 78 \N \N \N 2026-01-31 02:33:29.979773 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Excellent service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "very quick and efficient bookings", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "no hidden costs very surprisingly cheap", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "brand new vehicles", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 1b8a18f7dcfc88fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 871 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 brand new vehicles 80 96 \N \N \N 2026-01-31 02:33:29.98098 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Excellent service", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "very quick and efficient bookings", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "no hidden costs very surprisingly cheap", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "brand new vehicles", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 1b8a18f7dcfc88fd auto 07c01d3a-3443-4031-910c-7b6feba2c100 872 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 a very simple, easy car hire at a very good price for a very good car. 66 113 \N \N \N 2026-01-31 02:33:33.954401 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "a very simple, easy car hire at a very good price for a very good car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Carlos in Gran Canaria was very helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "a very good price for a very good car.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} 1dc779f14ffc228d auto 07c01d3a-3443-4031-910c-7b6feba2c100 873 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Carlos in Gran Canaria was very helpful 0 37 \N \N \N 2026-01-31 02:33:33.95776 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "a very simple, easy car hire at a very good price for a very good car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Carlos in Gran Canaria was very helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "a very good price for a very good car.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} 1dc779f14ffc228d auto 07c01d3a-3443-4031-910c-7b6feba2c100 874 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 a very good price for a very good car. 113 138 \N \N \N 2026-01-31 02:33:33.960446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "a very simple, easy car hire at a very good price for a very good car.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Carlos in Gran Canaria was very helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "a very good price for a very good car.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} 1dc779f14ffc228d auto 07c01d3a-3443-4031-910c-7b6feba2c100 1619 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURyaDVpNTl3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 где мне удалось хорошо выспаться 36 66 \N \N \N 2026-01-31 03:45:12.194642 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Идеальное местоположение", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "где мне удалось хорошо выспаться", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 59d6034a9fc07a7a auto 56bb22c1-8631-4285-b549-8fa7c9944462 876 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 Very professional, kind, effective and entertaining 0 46 \N \N \N 2026-01-31 02:33:38.236073 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "I strongly recommend this rental in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "Very professional, kind, effective and entertaining", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Carmen, Antonio (shuttle service) and Isaac have been dealing with me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 47}], "unmapped": []} 5c1d6f1b2a71af30 auto 07c01d3a-3443-4031-910c-7b6feba2c100 147 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Good service, perfect cars, low prices! Very recom... 0 50 \N \N \N 2026-01-31 02:05:47.004054 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 877 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Carmen, Antonio (shuttle service) and Isaac have been dealing with me 47 78 \N \N \N 2026-01-31 02:33:38.238816 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "I strongly recommend this rental in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "Very professional, kind, effective and entertaining", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Carmen, Antonio (shuttle service) and Isaac have been dealing with me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 47}], "unmapped": []} 5c1d6f1b2a71af30 auto 07c01d3a-3443-4031-910c-7b6feba2c100 878 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Really recommend that car rental company 36 73 \N \N \N 2026-01-31 02:33:41.2148 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Really recommend that car rental company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Everything went fast and without any problems", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 43ce8648596309a3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 879 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Everything went fast and without any problems 0 36 \N \N \N 2026-01-31 02:33:41.217642 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Really recommend that car rental company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Everything went fast and without any problems", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 43ce8648596309a3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 880 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 Car was in excellent shape 36 61 \N \N \N 2026-01-31 02:33:44.216354 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Car was in excellent shape", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "the shuttle bus is very convenient", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Everything went smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} edc993f505a471b3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 881 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 the shuttle bus is very convenient 66 97 \N \N \N 2026-01-31 02:33:44.218281 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Car was in excellent shape", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "the shuttle bus is very convenient", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Everything went smoothly", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} edc993f505a471b3 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1259 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxLUpmdDZ3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato super amables y encantadoras 36 66 \N \N \N 2026-01-31 03:39:02.566612 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "trato super amables y encantadoras", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Me a encantado la clinica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} bfe5c7337b1bf7c4 auto 22c559a8-fabc-4916-9961-bcbd61225266 883 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Antonio who was very nice 36 61 \N \N \N 2026-01-31 02:33:48.363836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Antonio who was very nice", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "checking in with Carlos who was also very very good", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "The whole experience was painless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6d9f4193df530950 auto 07c01d3a-3443-4031-910c-7b6feba2c100 884 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 checking in with Carlos who was also very very good 66 103 \N \N \N 2026-01-31 02:33:48.365198 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Antonio who was very nice", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "checking in with Carlos who was also very very good", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "The whole experience was painless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6d9f4193df530950 auto 07c01d3a-3443-4031-910c-7b6feba2c100 885 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 The whole experience was painless 0 34 \N \N \N 2026-01-31 02:33:48.365975 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Antonio who was very nice", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "checking in with Carlos who was also very very good", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "The whole experience was painless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6d9f4193df530950 auto 07c01d3a-3443-4031-910c-7b6feba2c100 886 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 everything good 10 25 \N \N \N 2026-01-31 02:33:52.618547 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "everything good", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}], "unmapped": []} c49a582b7ee86a19 auto 07c01d3a-3443-4031-910c-7b6feba2c100 887 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 450 euros 12 22 \N \N \N 2026-01-31 02:33:57.395378 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "450 euros", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "Never again!!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} 7f2e35f9ba6f2cf8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 888 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 Never again!! 27 38 \N \N \N 2026-01-31 02:33:57.39746 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "450 euros", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "Never again!!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} 7f2e35f9ba6f2cf8 auto 07c01d3a-3443-4031-910c-7b6feba2c100 889 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Really recommend! 18 34 \N \N \N 2026-01-31 02:34:00.304126 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Really recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Fast & professional.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 658c7e82a24bc2c2 auto 07c01d3a-3443-4031-910c-7b6feba2c100 890 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Fast & professional. 0 17 \N \N \N 2026-01-31 02:34:00.309698 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Really recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Fast & professional.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 658c7e82a24bc2c2 auto 07c01d3a-3443-4031-910c-7b6feba2c100 891 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY + 3 3 \N 0.90 no hidden fees 14 27 \N \N \N 2026-01-31 02:34:05.595724 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "no hidden fees", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "good cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 40}], "unmapped": []} d237e57b830f0c77 auto 07c01d3a-3443-4031-910c-7b6feba2c100 1620 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURyaDhqWFBBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Best hostel that I have been too 0 30 \N \N \N 2026-01-31 03:45:13.266076 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Best hostel that I have been too", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0fab15255991c11a auto 56bb22c1-8631-4285-b549-8fa7c9944462 892 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 easy process 28 39 \N \N \N 2026-01-31 02:34:05.598545 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "no hidden fees", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "good cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 40}], "unmapped": []} d237e57b830f0c77 auto 07c01d3a-3443-4031-910c-7b6feba2c100 893 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 Nice people 0 10 \N \N \N 2026-01-31 02:34:05.600664 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "no hidden fees", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "good cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 40}], "unmapped": []} d237e57b830f0c77 auto 07c01d3a-3443-4031-910c-7b6feba2c100 894 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 good cars 40 48 \N \N \N 2026-01-31 02:34:05.602308 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "no hidden fees", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "easy process", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Nice people", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "good cars", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 40}], "unmapped": []} d237e57b830f0c77 auto 07c01d3a-3443-4031-910c-7b6feba2c100 895 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 🫡😉👍 0 6 \N \N \N 2026-01-31 02:34:07.351237 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 6, "evidence": "🫡😉👍", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c0b2a4a41e876d60 auto 07c01d3a-3443-4031-910c-7b6feba2c100 896 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 Too many hidden charges 0 22 \N \N \N 2026-01-31 02:34:09.338391 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "Too many hidden charges", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 94d3344ac313f6f6 auto 07c01d3a-3443-4031-910c-7b6feba2c100 897 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Adrian S. Is such a nice Guy! 0 30 \N \N \N 2026-01-31 02:34:12.114817 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Adrian S. Is such a nice Guy!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Good work", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 32}], "unmapped": []} b8d0611cae1e17e5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 898 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 Good work 32 41 \N \N \N 2026-01-31 02:34:12.117885 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Adrian S. Is such a nice Guy!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Good work", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 32}], "unmapped": []} b8d0611cae1e17e5 auto 07c01d3a-3443-4031-910c-7b6feba2c100 899 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Very good service from Carmen and Francisco. 0 39 \N \N \N 2026-01-31 02:34:14.181051 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Very good service from Carmen and Francisco.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} b07b5631a6b81c35 auto 07c01d3a-3443-4031-910c-7b6feba2c100 934 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 por lo atentas que son siempre 66 86 \N \N \N 2026-01-31 03:33:08.530225 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "por lo atentas que son siempre", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Un sitio genial y en el que confiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "gran resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}], "unmapped": []} df6748d1f44c94e9 auto 22c559a8-fabc-4916-9961-bcbd61225266 900 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 I recommend without hesitation! 109 133 \N \N \N 2026-01-31 03:32:34.449588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 3214b43e7cf601cf auto 22c559a8-fabc-4916-9961-bcbd61225266 901 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 The value for money is marvellous 84 106 \N \N \N 2026-01-31 03:32:34.454079 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 3214b43e7cf601cf auto 22c559a8-fabc-4916-9961-bcbd61225266 902 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 the result is great! 75 90 \N \N \N 2026-01-31 03:32:34.455093 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 3214b43e7cf601cf auto 22c559a8-fabc-4916-9961-bcbd61225266 903 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 their professionalism! 54 74 \N \N \N 2026-01-31 03:32:34.455654 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 3214b43e7cf601cf auto 22c559a8-fabc-4916-9961-bcbd61225266 904 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 te tratan los mejores profesionales 36 66 \N \N \N 2026-01-31 03:32:39.161761 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 173}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 99965b08b164de95 auto 22c559a8-fabc-4916-9961-bcbd61225266 935 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un sitio genial y en el que confiar 0 36 \N \N \N 2026-01-31 03:33:08.532486 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "por lo atentas que son siempre", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Un sitio genial y en el que confiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "gran resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}], "unmapped": []} df6748d1f44c94e9 auto 22c559a8-fabc-4916-9961-bcbd61225266 905 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 una calidad humana excepcional 92 121 \N \N \N 2026-01-31 03:32:39.163868 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 173}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 99965b08b164de95 auto 22c559a8-fabc-4916-9961-bcbd61225266 1020 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUROMDUzN2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica 0 90 \N \N \N 2026-01-31 03:34:46.147796 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "las instalaciones están muy limpias y cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} 95b2f9cd653be0f2 auto 22c559a8-fabc-4916-9961-bcbd61225266 906 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMFORT + 3 3 \N 0.90 me sentí comodísima y cuidada desde el minuto cero 132 171 \N \N \N 2026-01-31 03:32:39.165504 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 173}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 99965b08b164de95 auto 22c559a8-fabc-4916-9961-bcbd61225266 907 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento 173 239 \N \N \N 2026-01-31 03:32:39.16749 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 173}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 99965b08b164de95 auto 22c559a8-fabc-4916-9961-bcbd61225266 908 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo encarecidamente 240 267 \N \N \N 2026-01-31 03:32:39.168907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 173}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 99965b08b164de95 auto 22c559a8-fabc-4916-9961-bcbd61225266 148 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Last two times was everything perfect and easy. Th... 0 50 \N \N \N 2026-01-31 02:05:47.004478 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 909 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 una clínica totalmente recomendable por la calidad de sus servicios 164 215 \N \N \N 2026-01-31 03:32:44.123472 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "una clínica totalmente recomendable por la calidad de sus servicios", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "El personal es excepcional, muy atento y profesional en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Se nota la dedicación y el cuidado con el que trabajan", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "la confianza que transmiten desde el primer día", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "el excelente trato al cliente", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 215}], "unmapped": []} fe14290f58cbcce6 auto 22c559a8-fabc-4916-9961-bcbd61225266 919 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Totalmente recomendable el tratamiento como la clínica. 164 205 \N \N \N 2026-01-31 03:32:52.742065 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Totalmente recomendable el tratamiento como la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "La atención y el trato son inmejorables, me siento en confianza en todo momento.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión en el cuerpo completo, es muy cómodo y no duele en general.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}], "unmapped": []} 84ef3416bc1ff8ec auto 22c559a8-fabc-4916-9961-bcbd61225266 910 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 El personal es excepcional, muy atento y profesional en todo momento 66 113 \N \N \N 2026-01-31 03:32:44.125893 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "una clínica totalmente recomendable por la calidad de sus servicios", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "El personal es excepcional, muy atento y profesional en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Se nota la dedicación y el cuidado con el que trabajan", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "la confianza que transmiten desde el primer día", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "el excelente trato al cliente", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 215}], "unmapped": []} fe14290f58cbcce6 auto 22c559a8-fabc-4916-9961-bcbd61225266 911 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Se nota la dedicación y el cuidado con el que trabajan 115 151 \N \N \N 2026-01-31 03:32:44.127671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "una clínica totalmente recomendable por la calidad de sus servicios", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "El personal es excepcional, muy atento y profesional en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Se nota la dedicación y el cuidado con el que trabajan", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "la confianza que transmiten desde el primer día", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "el excelente trato al cliente", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 215}], "unmapped": []} fe14290f58cbcce6 auto 22c559a8-fabc-4916-9961-bcbd61225266 912 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la confianza que transmiten desde el primer día 153 185 \N \N \N 2026-01-31 03:32:44.129247 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "una clínica totalmente recomendable por la calidad de sus servicios", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "El personal es excepcional, muy atento y profesional en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Se nota la dedicación y el cuidado con el que trabajan", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "la confianza que transmiten desde el primer día", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "el excelente trato al cliente", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 215}], "unmapped": []} fe14290f58cbcce6 auto 22c559a8-fabc-4916-9961-bcbd61225266 913 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 el excelente trato al cliente 215 241 \N \N \N 2026-01-31 03:32:44.13048 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "una clínica totalmente recomendable por la calidad de sus servicios", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "El personal es excepcional, muy atento y profesional en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Se nota la dedicación y el cuidado con el que trabajan", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "la confianza que transmiten desde el primer día", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "el excelente trato al cliente", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 215}], "unmapped": []} fe14290f58cbcce6 auto 22c559a8-fabc-4916-9961-bcbd61225266 920 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 La atención y el trato son inmejorables, me siento en confianza en todo momento. 56 113 \N \N \N 2026-01-31 03:32:52.745153 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Totalmente recomendable el tratamiento como la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "La atención y el trato son inmejorables, me siento en confianza en todo momento.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión en el cuerpo completo, es muy cómodo y no duele en general.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}], "unmapped": []} 84ef3416bc1ff8ec auto 22c559a8-fabc-4916-9961-bcbd61225266 914 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ETHICS - 2 2 \N 0.80 imponerlo después puede considerarse práctica comercial desleal o engañosa 174 224 \N \N \N 2026-01-31 03:32:49.413604 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 224, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "no asumieron dicen que es mi labio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "ya no me dan ganas de volver", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Advertising Practices", "evidence": "mucha publicidad por instagram pero después es “engañosa”", "confidence": 0.7}]} 5107cb86f94be0c9 auto 22c559a8-fabc-4916-9961-bcbd61225266 915 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS - 2 2 \N 0.90 los labios no ,me los inyectaron mal 56 83 \N \N \N 2026-01-31 03:32:49.416568 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 224, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "no asumieron dicen que es mi labio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "ya no me dan ganas de volver", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Advertising Practices", "evidence": "mucha publicidad por instagram pero después es “engañosa”", "confidence": 0.7}]} 5107cb86f94be0c9 auto 22c559a8-fabc-4916-9961-bcbd61225266 916 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY - 2 2 \N 0.80 no asumieron dicen que es mi labio 92 119 \N \N \N 2026-01-31 03:32:49.418448 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 224, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "no asumieron dicen que es mi labio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "ya no me dan ganas de volver", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Advertising Practices", "evidence": "mucha publicidad por instagram pero después es “engañosa”", "confidence": 0.7}]} 5107cb86f94be0c9 auto 22c559a8-fabc-4916-9961-bcbd61225266 917 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND - 2 2 \N 0.90 ya no me dan ganas de volver 290 313 \N \N \N 2026-01-31 03:32:49.420651 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 224, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "no asumieron dicen que es mi labio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "ya no me dan ganas de volver", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Advertising Practices", "evidence": "mucha publicidad por instagram pero después es “engañosa”", "confidence": 0.7}]} 5107cb86f94be0c9 auto 22c559a8-fabc-4916-9961-bcbd61225266 918 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.70 mucha publicidad por instagram pero después es “engañosa” \N \N {"Advertising Practices"} \N \N 2026-01-31 03:32:49.425106 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 224, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 3, "primitive": "ETHICS", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 119, "evidence": "no asumieron dicen que es mi labio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "ya no me dan ganas de volver", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}], "unmapped": [{"label": "Advertising Practices", "evidence": "mucha publicidad por instagram pero después es “engañosa”", "confidence": 0.7}]} 5107cb86f94be0c9 auto 22c559a8-fabc-4916-9961-bcbd61225266 921 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 he visto resultados desde la primera sesión en el cuerpo completo, es muy cómodo y no duele en general. 138 205 \N \N \N 2026-01-31 03:32:52.746537 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Totalmente recomendable el tratamiento como la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "La atención y el trato son inmejorables, me siento en confianza en todo momento.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión en el cuerpo completo, es muy cómodo y no duele en general.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}], "unmapped": []} 84ef3416bc1ff8ec auto 22c559a8-fabc-4916-9961-bcbd61225266 922 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️ 43 103 \N \N \N 2026-01-31 03:32:55.76715 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "tanto que voy a repetir.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 36}], "unmapped": []} fd1bc0017b5a8e22 auto 22c559a8-fabc-4916-9961-bcbd61225266 923 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la cercanía,la amabilidad y los consejos ♥️ 66 103 \N \N \N 2026-01-31 03:32:55.769972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "tanto que voy a repetir.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 36}], "unmapped": []} fd1bc0017b5a8e22 auto 22c559a8-fabc-4916-9961-bcbd61225266 924 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 tanto que voy a repetir. 36 56 \N \N \N 2026-01-31 03:32:55.770853 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "tanto que voy a repetir.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 36}], "unmapped": []} fd1bc0017b5a8e22 auto 22c559a8-fabc-4916-9961-bcbd61225266 925 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Acudí por recomendación y sinceramente no pude elegir mejor 0 45 \N \N \N 2026-01-31 03:33:00.830505 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 179}], "unmapped": []} 5cee95e47b3a5e10 auto 22c559a8-fabc-4916-9961-bcbd61225266 926 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 en clínica calme salvaron mi piel 118 145 \N \N \N 2026-01-31 03:33:00.832642 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 179}], "unmapped": []} 5cee95e47b3a5e10 auto 22c559a8-fabc-4916-9961-bcbd61225266 927 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.80 tiré las de otras marcas a la basura 205 239 \N \N \N 2026-01-31 03:33:00.834815 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 179}], "unmapped": []} 5cee95e47b3a5e10 auto 22c559a8-fabc-4916-9961-bcbd61225266 928 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato de las chicas que es espectacular 145 179 \N \N \N 2026-01-31 03:33:00.836881 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 179}], "unmapped": []} 5cee95e47b3a5e10 auto 22c559a8-fabc-4916-9961-bcbd61225266 936 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 gran resultado 54 66 \N \N \N 2026-01-31 03:33:08.534439 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "por lo atentas que son siempre", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Un sitio genial y en el que confiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "gran resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}], "unmapped": []} df6748d1f44c94e9 auto 22c559a8-fabc-4916-9961-bcbd61225266 929 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Quiero agradecerles de todo corazón el maravilloso trabajo 179 215 \N \N \N 2026-01-31 03:33:00.838734 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 179}], "unmapped": []} 5cee95e47b3a5e10 auto 22c559a8-fabc-4916-9961-bcbd61225266 930 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 me encantó, llevo menos d 10 días usando un pack 43 85 \N \N \N 2026-01-31 03:33:05.33636 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "me encantó, llevo menos d 10 días usando un pack", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 031f7645c4fbf8c8 auto 22c559a8-fabc-4916-9961-bcbd61225266 931 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 no puedo estar más contenta c los resultados en tan poco tiempo 85 126 \N \N \N 2026-01-31 03:33:05.339658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "me encantó, llevo menos d 10 días usando un pack", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 031f7645c4fbf8c8 auto 22c559a8-fabc-4916-9961-bcbd61225266 1638 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURqcmNpS2NBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:45:32.794634 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 149 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 I can only recommend this company in Gran Canaria!... 0 50 \N \N \N 2026-01-31 02:05:47.004933 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 932 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 Si dudas repetiré 126 144 \N \N \N 2026-01-31 03:33:05.342046 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "me encantó, llevo menos d 10 días usando un pack", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 031f7645c4fbf8c8 auto 22c559a8-fabc-4916-9961-bcbd61225266 933 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un 💯para ellas 144 158 \N \N \N 2026-01-31 03:33:05.344356 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "me encantó, llevo menos d 10 días usando un pack", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 031f7645c4fbf8c8 auto 22c559a8-fabc-4916-9961-bcbd61225266 4218 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Really good club 0 18 \N \N \N 2026-01-31 13:36:41.354149 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Really good club", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2fde79efda29741e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 937 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas 56 103 \N \N \N 2026-01-31 03:33:12.051043 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "todo salió de maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un 10 para la clínica y otro 10 para la empleada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} fb5199469dd472fc auto 22c559a8-fabc-4916-9961-bcbd61225266 1021 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUROMDUzN2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 las instalaciones están muy limpias y cuidadas 90 118 \N \N \N 2026-01-31 03:34:46.150768 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "las instalaciones están muy limpias y cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} 95b2f9cd653be0f2 auto 22c559a8-fabc-4916-9961-bcbd61225266 938 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 todo salió de maravilla 138 157 \N \N \N 2026-01-31 03:33:12.054494 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "todo salió de maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un 10 para la clínica y otro 10 para la empleada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} fb5199469dd472fc auto 22c559a8-fabc-4916-9961-bcbd61225266 939 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un 10 para la clínica y otro 10 para la empleada 164 203 \N \N \N 2026-01-31 03:33:12.05686 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "todo salió de maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un 10 para la clínica y otro 10 para la empleada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} fb5199469dd472fc auto 22c559a8-fabc-4916-9961-bcbd61225266 940 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato tan profesional y familiar que te dan nada más entrar 43 83 \N \N \N 2026-01-31 03:33:17.690669 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "deseando volver para mi segunda sesión de Criolipolisis", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} d4232ac849d5fce0 auto 22c559a8-fabc-4916-9961-bcbd61225266 941 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 Los mejores precios del mercado 0 30 \N \N \N 2026-01-31 03:33:17.692337 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "deseando volver para mi segunda sesión de Criolipolisis", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} d4232ac849d5fce0 auto 22c559a8-fabc-4916-9961-bcbd61225266 942 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión) 157 215 \N \N \N 2026-01-31 03:33:17.69378 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "deseando volver para mi segunda sesión de Criolipolisis", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} d4232ac849d5fce0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1260 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxLUpmdDZ3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Me a encantado la clinica 0 30 \N \N \N 2026-01-31 03:39:02.570417 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "trato super amables y encantadoras", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Me a encantado la clinica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} bfe5c7337b1bf7c4 auto 22c559a8-fabc-4916-9961-bcbd61225266 5729 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 1 2 \N 0.80 bartenders could at least try to be friendly. 76 104 \N \N \N 2026-01-31 15:18:32.419697 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "Great gay club in the city, lots of young people, music is also mostly really nice!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "bartenders could at least try to be friendly.", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "For the rest, it's a cool party!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 105}], "unmapped": []} ba73df9f9ca5438e en 78e1db2d-21eb-4072-8fd7-88f6beef833b 943 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomendable 100 x 100 118 138 \N \N \N 2026-01-31 03:33:17.694881 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "deseando volver para mi segunda sesión de Criolipolisis", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} d4232ac849d5fce0 auto 22c559a8-fabc-4916-9961-bcbd61225266 944 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 deseando volver para mi segunda sesión de Criolipolisis 104 138 \N \N \N 2026-01-31 03:33:17.696263 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "deseando volver para mi segunda sesión de Criolipolisis", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} d4232ac849d5fce0 auto 22c559a8-fabc-4916-9961-bcbd61225266 945 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Totalmente recomendado. 202 224 \N \N \N 2026-01-31 03:33:22.891054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 158}], "unmapped": []} a2631ee45437c015 auto 22c559a8-fabc-4916-9961-bcbd61225266 2430 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYMFBHLVZBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 trabajaron de forma eficaz 83 109 \N \N \N 2026-01-31 03:58:35.449336 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "trabajaron de forma eficaz", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "personas de trato agradable y educado", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 111}], "unmapped": []} 6ea0c9e975834dc7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 946 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Recibí un trato impecable por todos los miembros del equipo. 81 116 \N \N \N 2026-01-31 03:33:22.894149 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 158}], "unmapped": []} a2631ee45437c015 auto 22c559a8-fabc-4916-9961-bcbd61225266 5730 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 For the rest, it's a cool party! 105 126 \N \N \N 2026-01-31 15:18:32.422694 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "Great gay club in the city, lots of young people, music is also mostly really nice!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "bartenders could at least try to be friendly.", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "For the rest, it's a cool party!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 105}], "unmapped": []} ba73df9f9ca5438e en 78e1db2d-21eb-4072-8fd7-88f6beef833b 150 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 This place is complete shit, I'm sorry to say it -... 0 50 {general} \N \N 2026-01-31 02:05:47.005437 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 947 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber. 117 157 \N \N \N 2026-01-31 03:33:22.895753 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 158}], "unmapped": []} a2631ee45437c015 auto 22c559a8-fabc-4916-9961-bcbd61225266 948 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales. 158 203 \N \N \N 2026-01-31 03:33:22.897295 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 224, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 158}], "unmapped": []} a2631ee45437c015 auto 22c559a8-fabc-4916-9961-bcbd61225266 949 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 no ha podido ser mejor elección 66 92 \N \N \N 2026-01-31 03:33:25.992966 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "no ha podido ser mejor elección", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "la armonización que consiguió la doctora Maite acorde a lo que quería", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Gracias Maite, İris y todo el equipo por el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}], "unmapped": []} 4f8f054e41325ec4 auto 22c559a8-fabc-4916-9961-bcbd61225266 950 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la armonización que consiguió la doctora Maite acorde a lo que quería 138 182 \N \N \N 2026-01-31 03:33:25.99679 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "no ha podido ser mejor elección", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "la armonización que consiguió la doctora Maite acorde a lo que quería", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Gracias Maite, İris y todo el equipo por el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}], "unmapped": []} 4f8f054e41325ec4 auto 22c559a8-fabc-4916-9961-bcbd61225266 951 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Gracias Maite, İris y todo el equipo por el trato 213 248 \N \N \N 2026-01-31 03:33:25.999495 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "no ha podido ser mejor elección", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "la armonización que consiguió la doctora Maite acorde a lo que quería", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Gracias Maite, İris y todo el equipo por el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}], "unmapped": []} 4f8f054e41325ec4 auto 22c559a8-fabc-4916-9961-bcbd61225266 151 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Impossible to find the meeting point. No one was t... 0 50 {general} \N \N 2026-01-31 02:05:47.005913 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 952 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 estuvo super atendida y asesorada en todo momento 66 104 \N \N \N 2026-01-31 03:33:29.034218 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "estuvo super atendida y asesorada en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un regalo donde triunfas seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me han hablado maravillas, de su asesoramiento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}], "unmapped": []} 2b69715ffa4a4bd0 auto 22c559a8-fabc-4916-9961-bcbd61225266 953 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un regalo donde triunfas seguro 132 158 \N \N \N 2026-01-31 03:33:29.036917 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "estuvo super atendida y asesorada en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un regalo donde triunfas seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me han hablado maravillas, de su asesoramiento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}], "unmapped": []} 2b69715ffa4a4bd0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1300 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNqLTdXNkxREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 Una maravilla de trabajo 0 24 \N \N \N 2026-01-31 03:39:36.37326 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "Recomendable al 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Una maravilla de trabajo", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b9c23682b0998180 auto 22c559a8-fabc-4916-9961-bcbd61225266 954 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 me han hablado maravillas, de su asesoramiento 37 75 \N \N \N 2026-01-31 03:33:29.038901 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "estuvo super atendida y asesorada en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Un regalo donde triunfas seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me han hablado maravillas, de su asesoramiento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}], "unmapped": []} 2b69715ffa4a4bd0 auto 22c559a8-fabc-4916-9961-bcbd61225266 955 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el tratamiento facial es impresionante, aparte de ser efectivo es saludable 90 134 \N \N \N 2026-01-31 03:33:34.451336 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "gracias a la persona que lo imparte", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 367}], "unmapped": []} f3fa2217041ffa48 auto 22c559a8-fabc-4916-9961-bcbd61225266 5339 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 big beds with comfy mattresses 164 192 \N \N \N 2026-01-31 15:11:06.496981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "all the staff is very helpful and friendly, especially my man Miguel!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 57a5970cff2d38a5 en 56bb22c1-8631-4285-b549-8fa7c9944462 956 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento 265 319 \N \N \N 2026-01-31 03:33:34.454952 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "gracias a la persona que lo imparte", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 367}], "unmapped": []} f3fa2217041ffa48 auto 22c559a8-fabc-4916-9961-bcbd61225266 957 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10 197 239 \N \N \N 2026-01-31 03:33:34.456886 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "gracias a la persona que lo imparte", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 367}], "unmapped": []} f3fa2217041ffa48 auto 22c559a8-fabc-4916-9961-bcbd61225266 958 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 gracias a la persona que lo imparte 134 164 \N \N \N 2026-01-31 03:33:34.458769 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "gracias a la persona que lo imparte", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 367}], "unmapped": []} f3fa2217041ffa48 auto 22c559a8-fabc-4916-9961-bcbd61225266 959 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOGNITION + 3 3 \N 0.90 Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS 367 426 \N \N \N 2026-01-31 03:33:34.460756 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "gracias a la persona que lo imparte", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 367}], "unmapped": []} f3fa2217041ffa48 auto 22c559a8-fabc-4916-9961-bcbd61225266 5340 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el staff es super Amable 34 58 \N \N \N 2026-01-31 15:11:10.478647 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "el staff es super Amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "si buscas un sitio tranquilo y centrico este es tu sitio", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} 769b52d0044e9fef es 56bb22c1-8631-4285-b549-8fa7c9944462 960 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo 100% a cualquier familiar, amigo o conocido 39 83 \N \N \N 2026-01-31 03:33:38.850524 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} e7ef49dccc8bf8b7 auto 22c559a8-fabc-4916-9961-bcbd61225266 961 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Encantada con el trato recibido 0 30 \N \N \N 2026-01-31 03:33:38.854446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} e7ef49dccc8bf8b7 auto 22c559a8-fabc-4916-9961-bcbd61225266 962 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 con el trabajo realizado 34 56 \N \N \N 2026-01-31 03:33:38.856388 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} e7ef49dccc8bf8b7 auto 22c559a8-fabc-4916-9961-bcbd61225266 963 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchas gracias al equipo de clínica Calme 104 138 \N \N \N 2026-01-31 03:33:38.858221 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} e7ef49dccc8bf8b7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1216 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURtdHNtTmdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 resultado sorprendende 66 87 \N \N \N 2026-01-31 03:38:19.404903 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Recomendado 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Un trato exquisito", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "resultado sorprendende", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8e7d4bafbaf32cef auto 22c559a8-fabc-4916-9961-bcbd61225266 964 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 tratamientos con efectividad y naturalidad 8 41 \N \N \N 2026-01-31 03:33:42.066707 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "tratamientos con efectividad y naturalidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "esa atencion de todo el equipo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} 65da6fbe15ba0296 auto 22c559a8-fabc-4916-9961-bcbd61225266 152 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 I really enjoyed my first experience renting from ... 0 50 \N \N \N 2026-01-31 02:05:47.006396 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 965 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 esa atencion de todo el equipo 85 109 \N \N \N 2026-01-31 03:33:42.071497 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "tratamientos con efectividad y naturalidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "esa atencion de todo el equipo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} 65da6fbe15ba0296 auto 22c559a8-fabc-4916-9961-bcbd61225266 966 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 lo recomiendo 100% 145 164 \N \N \N 2026-01-31 03:33:42.073857 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "tratamientos con efectividad y naturalidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "esa atencion de todo el equipo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} 65da6fbe15ba0296 auto 22c559a8-fabc-4916-9961-bcbd61225266 974 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNld2JES29nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 estoy encantada con los resultados mi piel está estupenda 30 66 \N \N \N 2026-01-31 03:33:52.179835 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "maravilloso equipo de trabajo que son unas profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "estoy encantada con los resultados mi piel está estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8fc2cc8ed70c4a95 auto 22c559a8-fabc-4916-9961-bcbd61225266 967 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la amabilidad y profesionalidad de Iris y de todo el equipo 0 56 \N \N \N 2026-01-31 03:33:45.310399 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "la amabilidad y profesionalidad de Iris y de todo el equipo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Excelentes profesionales, asesorándote y respondiendo a todas las dudas", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "Recomiendo la clínica 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} af512c10b4469a35 auto 22c559a8-fabc-4916-9961-bcbd61225266 968 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Excelentes profesionales, asesorándote y respondiendo a todas las dudas 56 103 \N \N \N 2026-01-31 03:33:45.314284 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "la amabilidad y profesionalidad de Iris y de todo el equipo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Excelentes profesionales, asesorándote y respondiendo a todas las dudas", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "Recomiendo la clínica 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} af512c10b4469a35 auto 22c559a8-fabc-4916-9961-bcbd61225266 969 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo la clínica 100% 139 161 \N \N \N 2026-01-31 03:33:45.316915 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "la amabilidad y profesionalidad de Iris y de todo el equipo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Excelentes profesionales, asesorándote y respondiendo a todas las dudas", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "Recomiendo la clínica 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} af512c10b4469a35 auto 22c559a8-fabc-4916-9961-bcbd61225266 153 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 Everything was fine overall. They didn’t charge us... 0 50 \N \N \N 2026-01-31 02:05:47.006875 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 154 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Everything went smoothly,no issues, nothing to imp... 0 50 \N \N \N 2026-01-31 02:05:47.007351 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 970 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato de 10, muy amable y te hacen sentir como en casa 0 66 \N \N \N 2026-01-31 03:33:49.114336 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "trato de 10, muy amable y te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 86}], "unmapped": []} 84c4d7d073adba41 auto 22c559a8-fabc-4916-9961-bcbd61225266 971 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Muy profesionales 67 85 \N \N \N 2026-01-31 03:33:49.118207 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "trato de 10, muy amable y te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 86}], "unmapped": []} 84c4d7d073adba41 auto 22c559a8-fabc-4916-9961-bcbd61225266 972 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos 86 138 \N \N \N 2026-01-31 03:33:49.120749 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "trato de 10, muy amable y te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 86}], "unmapped": []} 84c4d7d073adba41 auto 22c559a8-fabc-4916-9961-bcbd61225266 973 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNld2JES29nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 maravilloso equipo de trabajo que son unas profesionales 66 107 \N \N \N 2026-01-31 03:33:52.176958 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "maravilloso equipo de trabajo que son unas profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "estoy encantada con los resultados mi piel está estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8fc2cc8ed70c4a95 auto 22c559a8-fabc-4916-9961-bcbd61225266 975 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS - 2 2 \N 0.80 no me resolvió ninguna duda sin pasar por caja y pagar los 30 € 40 83 \N \N \N 2026-01-31 03:33:57.568721 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "no me resolvió ninguna duda sin pasar por caja y pagar los 30 €", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 250}, {"details": null, "valence": "negative", "end_char": 1068, "evidence": "si sabe darle la vuelta entonces me habrá entendido", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 1030}], "unmapped": []} d9685a0886ea8d24 auto 22c559a8-fabc-4916-9961-bcbd61225266 155 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 we had a very nice experience with this company. g... 0 50 \N \N \N 2026-01-31 02:05:47.007831 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 156 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 The car and the service were great. The only thing... 0 50 \N \N \N 2026-01-31 02:05:47.008307 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 976 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION - 2 2 \N 0.80 esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita 139 197 \N \N \N 2026-01-31 03:33:57.571421 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "no me resolvió ninguna duda sin pasar por caja y pagar los 30 €", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 250}, {"details": null, "valence": "negative", "end_char": 1068, "evidence": "si sabe darle la vuelta entonces me habrá entendido", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 1030}], "unmapped": []} d9685a0886ea8d24 auto 22c559a8-fabc-4916-9961-bcbd61225266 977 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE - 2 2 \N 0.80 no me dio un precio estimado de tratamiento 218 249 \N \N \N 2026-01-31 03:33:57.572225 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "no me resolvió ninguna duda sin pasar por caja y pagar los 30 €", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 250}, {"details": null, "valence": "negative", "end_char": 1068, "evidence": "si sabe darle la vuelta entonces me habrá entendido", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 1030}], "unmapped": []} d9685a0886ea8d24 auto 22c559a8-fabc-4916-9961-bcbd61225266 978 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND - 2 2 \N 0.90 he decidido ir a otra clínica donde me han tratado con más tacto y cariño 250 307 \N \N \N 2026-01-31 03:33:57.573121 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "no me resolvió ninguna duda sin pasar por caja y pagar los 30 €", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 250}, {"details": null, "valence": "negative", "end_char": 1068, "evidence": "si sabe darle la vuelta entonces me habrá entendido", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 1030}], "unmapped": []} d9685a0886ea8d24 auto 22c559a8-fabc-4916-9961-bcbd61225266 989 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la atención es de 10 81 100 \N \N \N 2026-01-31 03:34:10.310385 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Súper recomendada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "la atención es de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Mi piel está más luminosa y cuidada que nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 63}], "unmapped": []} 05c974d37371639b auto 22c559a8-fabc-4916-9961-bcbd61225266 979 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY - 2 2 \N 0.70 si sabe darle la vuelta entonces me habrá entendido 1030 1068 \N \N \N 2026-01-31 03:33:57.573838 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "no me resolvió ninguna duda sin pasar por caja y pagar los 30 €", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 250}, {"details": null, "valence": "negative", "end_char": 1068, "evidence": "si sabe darle la vuelta entonces me habrá entendido", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 1030}], "unmapped": []} d9685a0886ea8d24 auto 22c559a8-fabc-4916-9961-bcbd61225266 980 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo absolutamente a todo el mundo! 139 173 \N \N \N 2026-01-31 03:34:02.494053 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 173, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b auto 22c559a8-fabc-4916-9961-bcbd61225266 981 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña. 66 116 \N \N \N 2026-01-31 03:34:02.497539 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 173, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b auto 22c559a8-fabc-4916-9961-bcbd61225266 982 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 al usar anestesia durante el proceso es completamente indoloro. 45 83 \N \N \N 2026-01-31 03:34:02.499973 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 173, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b auto 22c559a8-fabc-4916-9961-bcbd61225266 983 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Increíble la experiencia. 0 22 \N \N \N 2026-01-31 03:34:02.501881 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 173, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b auto 22c559a8-fabc-4916-9961-bcbd61225266 4219 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN2cDlmNUV3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 👍 0 1 {too_short} \N \N 2026-01-31 13:36:41.361597 gpt-4o-mini {"reason": "too_short", "non_informative": true} 87ad1ef614627208 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 984 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo la clínica. 116 136 \N \N \N 2026-01-31 03:34:06.96086 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} febd850813889808 auto 22c559a8-fabc-4916-9961-bcbd61225266 985 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 HONESTY + 2 3 \N 0.90 me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento. 66 116 \N \N \N 2026-01-31 03:34:06.9639 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} febd850813889808 auto 22c559a8-fabc-4916-9961-bcbd61225266 986 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Los resultados fueron los esperados 43 66 \N \N \N 2026-01-31 03:34:06.966481 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} febd850813889808 auto 22c559a8-fabc-4916-9961-bcbd61225266 1007 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda pienso seguir visitando la clínica 138 174 \N \N \N 2026-01-31 03:34:29.955867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "la verdad que estoy encantada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "es súper humana y se preocupa todo momento de hacerte sentir bien", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda pienso seguir visitando la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}], "unmapped": []} ae9ec924c55fca5d auto 22c559a8-fabc-4916-9961-bcbd61225266 987 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 estoy encantado con el trato. 30 43 \N \N \N 2026-01-31 03:34:06.968791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} febd850813889808 auto 22c559a8-fabc-4916-9961-bcbd61225266 988 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Súper recomendada 116 136 \N \N \N 2026-01-31 03:34:10.307048 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Súper recomendada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "la atención es de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Mi piel está más luminosa y cuidada que nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 63}], "unmapped": []} 05c974d37371639b auto 22c559a8-fabc-4916-9961-bcbd61225266 4220 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Gera mokykla 0 12 {too_short} \N \N 2026-01-31 13:36:41.364096 gpt-4o-mini {"reason": "too_short", "non_informative": true} e84989a7c565f949 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 157 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Amazing service! I’ve rented a car for more than a... 0 50 \N \N \N 2026-01-31 02:05:47.008842 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 990 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Mi piel está más luminosa y cuidada que nunca 63 95 \N \N \N 2026-01-31 03:34:10.314183 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "Súper recomendada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "la atención es de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Mi piel está más luminosa y cuidada que nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 63}], "unmapped": []} 05c974d37371639b auto 22c559a8-fabc-4916-9961-bcbd61225266 991 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Personal excelente y muy profesional. 0 30 \N \N \N 2026-01-31 03:34:15.246017 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Personal excelente y muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}], "unmapped": []} 2d88ac713f409544 auto 22c559a8-fabc-4916-9961-bcbd61225266 992 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia 31 139 \N \N \N 2026-01-31 03:34:15.249405 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Personal excelente y muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}], "unmapped": []} 2d88ac713f409544 auto 22c559a8-fabc-4916-9961-bcbd61225266 993 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 todo muy limpio y ordenado. 139 162 \N \N \N 2026-01-31 03:34:15.251212 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Personal excelente y muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}], "unmapped": []} 2d88ac713f409544 auto 22c559a8-fabc-4916-9961-bcbd61225266 994 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Las chicas son muy detallistas y atentas, son maravillosas. 162 205 \N \N \N 2026-01-31 03:34:15.25394 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Personal excelente y muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}], "unmapped": []} 2d88ac713f409544 auto 22c559a8-fabc-4916-9961-bcbd61225266 1030 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 mi piel ha mejorado enormemente 132 157 \N \N \N 2026-01-31 03:34:56.457069 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 91, "evidence": "me encantó tanto el resultado como la profesionalidad y el trato", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "ya mis amigas han pedido cita", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "mi piel ha mejorado enormemente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} 40cbf3eb0637d7e7 auto 22c559a8-fabc-4916-9961-bcbd61225266 995 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 La clínica Calme me ha encantado. 0 30 \N \N \N 2026-01-31 03:34:20.564505 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "La clínica Calme me ha encantado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Esta presta un servicio de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "ahora estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "y con el trato recibido.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 174}], "unmapped": []} 856ffc83427377bd auto 22c559a8-fabc-4916-9961-bcbd61225266 996 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Esta presta un servicio de muy buena calidad. 31 66 \N \N \N 2026-01-31 03:34:20.566292 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "La clínica Calme me ha encantado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Esta presta un servicio de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "ahora estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "y con el trato recibido.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 174}], "unmapped": []} 856ffc83427377bd auto 22c559a8-fabc-4916-9961-bcbd61225266 997 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 ahora estoy súper contenta con el resultado 118 152 \N \N \N 2026-01-31 03:34:20.567897 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "La clínica Calme me ha encantado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Esta presta un servicio de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "ahora estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "y con el trato recibido.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 174}], "unmapped": []} 856ffc83427377bd auto 22c559a8-fabc-4916-9961-bcbd61225266 998 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 y con el trato recibido. 153 173 \N \N \N 2026-01-31 03:34:20.569726 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "La clínica Calme me ha encantado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Esta presta un servicio de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "ahora estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "y con el trato recibido.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 174}], "unmapped": []} 856ffc83427377bd auto 22c559a8-fabc-4916-9961-bcbd61225266 999 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOGNITION + 3 3 \N 0.90 la clínica Calme le ha dado una segunda oportunidad a mi rostro. 174 223 \N \N \N 2026-01-31 03:34:20.571914 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "La clínica Calme me ha encantado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Esta presta un servicio de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "ahora estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "y con el trato recibido.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 153}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 174}], "unmapped": []} 856ffc83427377bd auto 22c559a8-fabc-4916-9961-bcbd61225266 1000 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomiendo que vengas, no te arrepentirás. 203 243 \N \N \N 2026-01-31 03:34:26.644938 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 243, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 81}], "unmapped": []} 98b9b51df4c7a72d auto 22c559a8-fabc-4916-9961-bcbd61225266 1001 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 Siempre con muy buen ambiente y mejores vibras. 164 203 \N \N \N 2026-01-31 03:34:26.648143 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 243, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 81}], "unmapped": []} 98b9b51df4c7a72d auto 22c559a8-fabc-4916-9961-bcbd61225266 1008 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el resultado final es increíble 85 110 \N \N \N 2026-01-31 03:34:34.170876 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "¡No podría estar más feliz!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Quedaron exactamente como quería", "intensity": 5, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 49}], "unmapped": []} dbbb0c02cfea6e46 auto 22c559a8-fabc-4916-9961-bcbd61225266 1002 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Además, unas profesionales de los pies a la cabeza. 143 182 \N \N \N 2026-01-31 03:34:26.650257 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 243, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 81}], "unmapped": []} 98b9b51df4c7a72d auto 22c559a8-fabc-4916-9961-bcbd61225266 158 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 2 2 \N 0.75 Avoid at all cost. First of all the car rental is ... 0 50 \N \N \N 2026-01-31 02:05:47.009638 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 159 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 They have a shuttle bus between airport and their ... 0 50 \N \N \N 2026-01-31 02:05:47.010271 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1010 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 El procedimiento fue profesional 66 92 \N \N \N 2026-01-31 03:34:34.179265 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "¡No podría estar más feliz!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Quedaron exactamente como quería", "intensity": 5, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 49}], "unmapped": []} dbbb0c02cfea6e46 auto 22c559a8-fabc-4916-9961-bcbd61225266 4221 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Супер 0 5 {too_short} \N \N 2026-01-31 13:36:41.366396 gpt-4o-mini {"reason": "too_short", "non_informative": true} 456ed401b33d824e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1003 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Me han dejado los labios que siempre había soñado. 45 81 \N \N \N 2026-01-31 03:34:26.652326 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 243, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 81}], "unmapped": []} 98b9b51df4c7a72d auto 22c559a8-fabc-4916-9961-bcbd61225266 1004 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOGNITION + 3 3 \N 0.90 Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más. 81 143 \N \N \N 2026-01-31 03:34:26.653961 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 243, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 81}], "unmapped": []} 98b9b51df4c7a72d auto 22c559a8-fabc-4916-9961-bcbd61225266 1005 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la verdad que estoy encantada 36 61 \N \N \N 2026-01-31 03:34:29.950452 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "la verdad que estoy encantada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "es súper humana y se preocupa todo momento de hacerte sentir bien", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda pienso seguir visitando la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}], "unmapped": []} ae9ec924c55fca5d auto 22c559a8-fabc-4916-9961-bcbd61225266 160 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Excellent service. Large variety of brand-new cars... 0 50 \N \N \N 2026-01-31 02:05:47.010943 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 161 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-60 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Everything was very easy and fast, the staff is su... 0 50 \N \N \N 2026-01-31 02:05:47.011707 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1006 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 es súper humana y se preocupa todo momento de hacerte sentir bien 66 113 \N \N \N 2026-01-31 03:34:29.953587 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "la verdad que estoy encantada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "es súper humana y se preocupa todo momento de hacerte sentir bien", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda pienso seguir visitando la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}], "unmapped": []} ae9ec924c55fca5d auto 22c559a8-fabc-4916-9961-bcbd61225266 1301 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNaX00yLVFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 no dieron ni una sola solución 20 46 \N \N \N 2026-01-31 03:39:37.915626 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 46, "evidence": "no dieron ni una sola solución", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 20}], "unmapped": [{"label": "Service Quality", "evidence": "Cejas y pestañas fatal", "confidence": 0.8}]} 3ae6acf5b245cd22 auto 22c559a8-fabc-4916-9961-bcbd61225266 1009 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 ¡No podría estar más feliz! 110 135 \N \N \N 2026-01-31 03:34:34.176405 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "¡No podría estar más feliz!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Quedaron exactamente como quería", "intensity": 5, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 49}], "unmapped": []} dbbb0c02cfea6e46 auto 22c559a8-fabc-4916-9961-bcbd61225266 1011 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACCURACY + 3 3 \N 0.90 Quedaron exactamente como quería 49 75 \N \N \N 2026-01-31 03:34:34.181172 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "¡No podría estar más feliz!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Quedaron exactamente como quería", "intensity": 5, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 49}], "unmapped": []} dbbb0c02cfea6e46 auto 22c559a8-fabc-4916-9961-bcbd61225266 1012 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda la recomiendo 100%. 118 143 \N \N \N 2026-01-31 03:34:38.249426 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda la recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Magnifico trato y profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "estoy encantada.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "volveré a repetir sin duda.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} c9597dc9d7bbba37 auto 22c559a8-fabc-4916-9961-bcbd61225266 5349 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 ambiente acogedor, tranquilo 51 75 \N \N \N 2026-01-31 15:11:21.206401 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "todo estaba muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "ambiente acogedor, tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 565895cbf2fa4e75 es 56bb22c1-8631-4285-b549-8fa7c9944462 1013 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Magnifico trato y profesionalidad. 144 171 \N \N \N 2026-01-31 03:34:38.252621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda la recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Magnifico trato y profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "estoy encantada.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "volveré a repetir sin duda.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} c9597dc9d7bbba37 auto 22c559a8-fabc-4916-9961-bcbd61225266 1014 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 estoy encantada. 107 121 \N \N \N 2026-01-31 03:34:38.254914 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda la recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Magnifico trato y profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "estoy encantada.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "volveré a repetir sin duda.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} c9597dc9d7bbba37 auto 22c559a8-fabc-4916-9961-bcbd61225266 1015 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 volveré a repetir sin duda. 66 89 \N \N \N 2026-01-31 03:34:38.257009 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda la recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Magnifico trato y profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "estoy encantada.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "volveré a repetir sin duda.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} c9597dc9d7bbba37 auto 22c559a8-fabc-4916-9961-bcbd61225266 1016 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato exquisito y la atención personalizada hacen que te sientas como en casa 56 117 \N \N \N 2026-01-31 03:34:43.545258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 117, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "el personal es amable, atento y siempre dispuesto a ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 552, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 auto 22c559a8-fabc-4916-9961-bcbd61225266 1017 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 el personal es amable, atento y siempre dispuesto a ayudarte 118 164 \N \N \N 2026-01-31 03:34:43.548769 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 117, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "el personal es amable, atento y siempre dispuesto a ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 552, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 auto 22c559a8-fabc-4916-9961-bcbd61225266 5350 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 lo recomiendo 12 24 \N \N \N 2026-01-31 15:11:21.209016 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "todo estaba muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "ambiente acogedor, tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 565895cbf2fa4e75 es 56bb22c1-8631-4285-b549-8fa7c9944462 1018 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia 335 396 \N \N \N 2026-01-31 03:34:43.551161 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 117, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "el personal es amable, atento y siempre dispuesto a ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 552, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 auto 22c559a8-fabc-4916-9961-bcbd61225266 1019 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad 487 552 \N \N \N 2026-01-31 03:34:43.553424 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 117, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "el personal es amable, atento y siempre dispuesto a ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 552, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 auto 22c559a8-fabc-4916-9961-bcbd61225266 1022 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel... 0 82 \N \N \N 2026-01-31 03:34:49.689471 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} fa3eea20f1dbcd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 1023 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad... 82 139 \N \N \N 2026-01-31 03:34:49.692873 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} fa3eea20f1dbcd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 1303 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlMHVXOGdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Muy contenta con el trabajo que hacen 0 36 \N \N \N 2026-01-31 03:39:43.010198 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy contenta con el trabajo que hacen", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre ofreciendo lo mejor que convenga", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 369fa9078ac7ba59 auto 22c559a8-fabc-4916-9961-bcbd61225266 1024 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 El trato es increíble ❤️ 174 197 \N \N \N 2026-01-31 03:34:49.695899 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} fa3eea20f1dbcd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 162 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-61 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Really good value - New Cars - Friendly genuine se... 0 50 \N \N \N 2026-01-31 02:05:47.012546 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1025 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas 118 188 \N \N \N 2026-01-31 03:34:53.087563 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "recomiendo este tratamiento al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "Aprovecho para felicitarlas a todas por su nueva clínica en Bilbao", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 307}], "unmapped": []} fc78b1af9ffab4c7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1026 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 recomiendo este tratamiento al 100 % 276 303 \N \N \N 2026-01-31 03:34:53.089683 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "recomiendo este tratamiento al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "Aprovecho para felicitarlas a todas por su nueva clínica en Bilbao", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 307}], "unmapped": []} fc78b1af9ffab4c7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1027 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Aprovecho para felicitarlas a todas por su nueva clínica en Bilbao 307 353 \N \N \N 2026-01-31 03:34:53.091228 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "recomiendo este tratamiento al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "Aprovecho para felicitarlas a todas por su nueva clínica en Bilbao", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 307}], "unmapped": []} fc78b1af9ffab4c7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1028 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 me encantó tanto el resultado como la profesionalidad y el trato 41 91 \N \N \N 2026-01-31 03:34:56.452358 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 91, "evidence": "me encantó tanto el resultado como la profesionalidad y el trato", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "ya mis amigas han pedido cita", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "mi piel ha mejorado enormemente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} 40cbf3eb0637d7e7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1029 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 ya mis amigas han pedido cita 164 189 \N \N \N 2026-01-31 03:34:56.455148 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 91, "evidence": "me encantó tanto el resultado como la profesionalidad y el trato", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "ya mis amigas han pedido cita", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "mi piel ha mejorado enormemente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} 40cbf3eb0637d7e7 auto 22c559a8-fabc-4916-9961-bcbd61225266 2515 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5dmVXY0xREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 3 3 \N 0.90 NO LO RECOMIENDO 93 109 \N \N \N 2026-01-31 04:00:12.386342 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 92, "evidence": "me dejaron todo el baño sucio con yeso", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "NO LO RECOMIENDO", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}], "unmapped": []} 0a34facf909027ec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 163 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-62 Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 NOT PROFESSIONALS/. SCAMMERS\nWe landed 8:20 at ni... 0 50 \N \N \N 2026-01-31 02:05:47.013309 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1031 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 logro bajar 5 kilos con sus tratamientos 30 56 \N \N \N 2026-01-31 03:34:59.54562 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "logro bajar 5 kilos con sus tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "la verdad muy amables todas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "la atención de la directora un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 87}], "unmapped": []} 52c8585bafcd527e auto 22c559a8-fabc-4916-9961-bcbd61225266 1032 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la verdad muy amables todas 62 85 \N \N \N 2026-01-31 03:34:59.550416 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "logro bajar 5 kilos con sus tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "la verdad muy amables todas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "la atención de la directora un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 87}], "unmapped": []} 52c8585bafcd527e auto 22c559a8-fabc-4916-9961-bcbd61225266 1033 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la atención de la directora un amor 87 118 \N \N \N 2026-01-31 03:34:59.55503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "logro bajar 5 kilos con sus tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "la verdad muy amables todas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "la atención de la directora un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 87}], "unmapped": []} 52c8585bafcd527e auto 22c559a8-fabc-4916-9961-bcbd61225266 1034 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 me ha encantado la atención 30 50 \N \N \N 2026-01-31 03:35:03.609803 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}], "unmapped": []} 77edb42f21456eee auto 22c559a8-fabc-4916-9961-bcbd61225266 1035 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Desde el primer momento noté una mejoría 54 84 \N \N \N 2026-01-31 03:35:03.613058 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}], "unmapped": []} 77edb42f21456eee auto 22c559a8-fabc-4916-9961-bcbd61225266 1036 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 calidad-precio super bien 138 158 \N \N \N 2026-01-31 03:35:03.615551 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}], "unmapped": []} 77edb42f21456eee auto 22c559a8-fabc-4916-9961-bcbd61225266 4070 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Nice friendly club 0 18 \N \N \N 2026-01-31 13:34:09.754654 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "People who working there very friendly and polite", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Nice friendly club", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} eae4e4b0ca7fecce auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1037 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Estoy pensando en hacerme otro tratamiento 106 138 \N \N \N 2026-01-31 03:35:03.617799 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}], "unmapped": []} 77edb42f21456eee auto 22c559a8-fabc-4916-9961-bcbd61225266 1038 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda el mejor centro de estética en el que he estado 139 183 \N \N \N 2026-01-31 03:35:07.369863 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 183, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd auto 22c559a8-fabc-4916-9961-bcbd61225266 1039 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 relación calidad precio insuperable 188 215 \N \N \N 2026-01-31 03:35:07.373455 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 183, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd auto 22c559a8-fabc-4916-9961-bcbd61225266 1040 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 gracias a su amabilidad 113 134 \N \N \N 2026-01-31 03:35:07.375484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 183, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd auto 22c559a8-fabc-4916-9961-bcbd61225266 1041 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 resultó la mejor que me he hecho nunca 49 80 \N \N \N 2026-01-31 03:35:07.377453 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 183, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd auto 22c559a8-fabc-4916-9961-bcbd61225266 164 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-63 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Great price performance ratio, very friendly and s... 0 50 \N \N \N 2026-01-31 02:05:47.013844 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1042 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda se ha convertido en mi clínica de confianza 116 145 \N \N \N 2026-01-31 03:35:11.005445 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "Sin duda se ha convertido en mi clínica de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 8bfe445255ebdb1b auto 22c559a8-fabc-4916-9961-bcbd61225266 1043 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables 56 116 \N \N \N 2026-01-31 03:35:11.009183 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "Sin duda se ha convertido en mi clínica de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 8bfe445255ebdb1b auto 22c559a8-fabc-4916-9961-bcbd61225266 1044 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos 36 83 \N \N \N 2026-01-31 03:35:11.011642 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "Sin duda se ha convertido en mi clínica de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 8bfe445255ebdb1b auto 22c559a8-fabc-4916-9961-bcbd61225266 1045 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 Con la limpieza facial profunda y el tratamiento de vitaminas me cambio totalmente el aspecto de la cara. 0 82 \N \N \N 2026-01-31 03:35:15.025026 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Con la limpieza facial profunda y el tratamiento de vitaminas me cambio totalmente el aspecto de la cara.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 204, "evidence": "los tratamientos de dermocosmetica son muy buenos y a un precio asequible.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 164}], "unmapped": []} ecbd985f9e6d92df auto 22c559a8-fabc-4916-9961-bcbd61225266 1046 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo 100%. 197 213 \N \N \N 2026-01-31 03:35:15.028064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Con la limpieza facial profunda y el tratamiento de vitaminas me cambio totalmente el aspecto de la cara.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 204, "evidence": "los tratamientos de dermocosmetica son muy buenos y a un precio asequible.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 164}], "unmapped": []} ecbd985f9e6d92df auto 22c559a8-fabc-4916-9961-bcbd61225266 1047 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 los tratamientos de dermocosmetica son muy buenos y a un precio asequible. 164 204 \N \N \N 2026-01-31 03:35:15.030281 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Con la limpieza facial profunda y el tratamiento de vitaminas me cambio totalmente el aspecto de la cara.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 204, "evidence": "los tratamientos de dermocosmetica son muy buenos y a un precio asequible.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 164}], "unmapped": []} ecbd985f9e6d92df auto 22c559a8-fabc-4916-9961-bcbd61225266 165 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-64 Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Honestly, astounded at how amazing the service fro... 0 50 \N \N \N 2026-01-31 02:05:47.01435 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1048 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda volveré a acudir 90 112 \N \N \N 2026-01-31 03:35:18.641222 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 auto 22c559a8-fabc-4916-9961-bcbd61225266 4222 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Nieko gero.. 0 12 {too_short} \N \N 2026-01-31 13:36:41.368615 gpt-4o-mini {"reason": "too_short", "non_informative": true} 53e84660986e1cad auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4223 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnTURvbkwtWERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.370589 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1049 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato es fenomenal 43 66 \N \N \N 2026-01-31 03:35:18.644612 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 auto 22c559a8-fabc-4916-9961-bcbd61225266 1050 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 me asesoraron con las cremas a utilizar para mi tipo de piel 66 90 \N \N \N 2026-01-31 03:35:18.646638 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 auto 22c559a8-fabc-4916-9961-bcbd61225266 1051 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 la chica se ha convertido en mi esteticista de confianza 157 197 \N \N \N 2026-01-31 03:35:22.079389 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "la chica se ha convertido en mi esteticista de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "mereció la pena porque ahora la tengo estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La técnico me explicó que debido al estado en el que llevé la piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}], "unmapped": []} eb5a16b42c0a6da0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1052 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 mereció la pena porque ahora la tengo estupenda 116 152 \N \N \N 2026-01-31 03:35:22.082608 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "la chica se ha convertido en mi esteticista de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "mereció la pena porque ahora la tengo estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La técnico me explicó que debido al estado en el que llevé la piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}], "unmapped": []} eb5a16b42c0a6da0 auto 22c559a8-fabc-4916-9961-bcbd61225266 5738 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Such a great atmosphere 56 78 \N \N \N 2026-01-31 15:18:41.9412 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Such a great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "staff is extremely friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "The best place in Vilnius to party", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 29d2e0ae936ef9c4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 166 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-65 Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Great experience using ClickRent. Quick check in a... 0 50 \N \N \N 2026-01-31 02:05:47.014975 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1053 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 La técnico me explicó que debido al estado en el que llevé la piel 56 100 \N \N \N 2026-01-31 03:35:22.084811 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "la chica se ha convertido en mi esteticista de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "mereció la pena porque ahora la tengo estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La técnico me explicó que debido al estado en el que llevé la piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}], "unmapped": []} eb5a16b42c0a6da0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1054 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 destaco la amabilidad y atención desde el momento de entrada a la clínica 66 113 \N \N \N 2026-01-31 03:35:26.978633 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 339, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 340}], "unmapped": []} 6d802bbf490c08ce auto 22c559a8-fabc-4916-9961-bcbd61225266 4224 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnTUNvb3BuMXdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.372363 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1055 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la profesional que me atendió es DOCTORA 56 84 \N \N \N 2026-01-31 03:35:26.982265 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 339, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 340}], "unmapped": []} 6d802bbf490c08ce auto 22c559a8-fabc-4916-9961-bcbd61225266 1056 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 SPEED + 3 3 \N 0.90 rapidez con la que me atendió dicha doctora 114 146 \N \N \N 2026-01-31 03:35:26.984614 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 339, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 340}], "unmapped": []} 6d802bbf490c08ce auto 22c559a8-fabc-4916-9961-bcbd61225266 5739 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 staff is extremely friendly 79 104 \N \N \N 2026-01-31 15:18:41.944727 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Such a great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "staff is extremely friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "The best place in Vilnius to party", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 29d2e0ae936ef9c4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1057 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 la Doctora consiguió más de lo que esperaba 307 339 \N \N \N 2026-01-31 03:35:26.986726 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 339, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 340}], "unmapped": []} 6d802bbf490c08ce auto 22c559a8-fabc-4916-9961-bcbd61225266 1058 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomendable 340 357 \N \N \N 2026-01-31 03:35:26.988629 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 339, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 340}], "unmapped": []} 6d802bbf490c08ce auto 22c559a8-fabc-4916-9961-bcbd61225266 1059 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS - 2 3 \N 0.90 Pésima atención al cliente. 252 275 \N \N \N 2026-01-31 03:35:32.034105 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 275, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 252}, {"details": null, "valence": "negative", "end_char": 226, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 189}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "se quedaron con 30e a cuenta", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 236}], "unmapped": []} 15f45765c3d6234c auto 22c559a8-fabc-4916-9961-bcbd61225266 1060 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE - 2 3 \N 0.90 no sentir seguridad y profesionalidad. 197 226 \N \N \N 2026-01-31 03:35:32.038191 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 275, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 252}, {"details": null, "valence": "negative", "end_char": 226, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 189}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "se quedaron con 30e a cuenta", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 236}], "unmapped": []} 15f45765c3d6234c auto 22c559a8-fabc-4916-9961-bcbd61225266 1061 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND - 2 3 \N 0.90 Tristemente no lo recomiendo 189 213 \N \N \N 2026-01-31 03:35:32.040754 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 275, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 252}, {"details": null, "valence": "negative", "end_char": 226, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 189}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "se quedaron con 30e a cuenta", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 236}], "unmapped": []} 15f45765c3d6234c auto 22c559a8-fabc-4916-9961-bcbd61225266 1062 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY - 2 3 \N 0.90 se quedaron con 30e a cuenta 236 258 \N \N \N 2026-01-31 03:35:32.043044 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 275, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 252}, {"details": null, "valence": "negative", "end_char": 226, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 213, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 189}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "se quedaron con 30e a cuenta", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 236}], "unmapped": []} 15f45765c3d6234c auto 22c559a8-fabc-4916-9961-bcbd61225266 1063 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un gran descubrimiento, no sólo buenas profesionales sino buenas personas 36 92 \N \N \N 2026-01-31 03:35:35.116889 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Un gran descubrimiento, no sólo buenas profesionales sino buenas personas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "buenas personas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "les encantan los perros", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}], "unmapped": []} 0396bea0772222a3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1064 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 buenas personas 66 80 \N \N \N 2026-01-31 03:35:35.119117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Un gran descubrimiento, no sólo buenas profesionales sino buenas personas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "buenas personas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "les encantan los perros", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}], "unmapped": []} 0396bea0772222a3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1065 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 les encantan los perros 80 101 \N \N \N 2026-01-31 03:35:35.120942 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Un gran descubrimiento, no sólo buenas profesionales sino buenas personas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "buenas personas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "les encantan los perros", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}], "unmapped": []} 0396bea0772222a3 auto 22c559a8-fabc-4916-9961-bcbd61225266 2572 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNRN1BmcExREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 dispuesto para resolver el problema 39 66 \N \N \N 2026-01-31 04:01:21.237716 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Excelente trabajo y atencion de Daniel", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "dispuesto para resolver el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} a32157058b0f4de8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1066 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 ya note resultados tanto que hoy lleve a mi hijo 40 76 \N \N \N 2026-01-31 03:35:38.29309 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "ya note resultados tanto que hoy lleve a mi hijo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "por toda la dedicación y paciencia con mi hijo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "no puedo estar más contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} dc0fc3fc35adc15e auto 22c559a8-fabc-4916-9961-bcbd61225266 1067 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 por toda la dedicación y paciencia con mi hijo 112 144 \N \N \N 2026-01-31 03:35:38.297753 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "ya note resultados tanto que hoy lleve a mi hijo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "por toda la dedicación y paciencia con mi hijo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "no puedo estar más contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} dc0fc3fc35adc15e auto 22c559a8-fabc-4916-9961-bcbd61225266 1068 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 no puedo estar más contenta 27 50 \N \N \N 2026-01-31 03:35:38.299934 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "ya note resultados tanto que hoy lleve a mi hijo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "por toda la dedicación y paciencia con mi hijo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "no puedo estar más contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} dc0fc3fc35adc15e auto 22c559a8-fabc-4916-9961-bcbd61225266 1069 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-46 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 I will definitely recommend this aesthetic 118 151 \N \N \N 2026-01-31 03:35:40.943242 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 151, "evidence": "I will definitely recommend this aesthetic", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "very caring", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "what she recommended", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 68238a48a4861a31 auto 22c559a8-fabc-4916-9961-bcbd61225266 1070 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-46 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 very caring 85 96 \N \N \N 2026-01-31 03:35:40.947408 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 151, "evidence": "I will definitely recommend this aesthetic", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "very caring", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "what she recommended", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 68238a48a4861a31 auto 22c559a8-fabc-4916-9961-bcbd61225266 1071 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-46 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 what she recommended 66 85 \N \N \N 2026-01-31 03:35:40.950384 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 151, "evidence": "I will definitely recommend this aesthetic", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "very caring", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "what she recommended", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 68238a48a4861a31 auto 22c559a8-fabc-4916-9961-bcbd61225266 1072 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-47 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 the consistently excellent service and attention from all the staff 81 134 \N \N \N 2026-01-31 03:35:44.202962 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "the consistently excellent service and attention from all the staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "It's a pleasure to go to places where they make you feel so welcome", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I've always been satisfied", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b1feb7ec3356448b auto 22c559a8-fabc-4916-9961-bcbd61225266 4225 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNMdk1Ea3B3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.374205 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1073 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-47 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 It's a pleasure to go to places where they make you feel so welcome 134 178 \N \N \N 2026-01-31 03:35:44.207089 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "the consistently excellent service and attention from all the staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "It's a pleasure to go to places where they make you feel so welcome", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I've always been satisfied", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b1feb7ec3356448b auto 22c559a8-fabc-4916-9961-bcbd61225266 1074 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-47 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 I've always been satisfied 56 78 \N \N \N 2026-01-31 03:35:44.209235 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "the consistently excellent service and attention from all the staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "It's a pleasure to go to places where they make you feel so welcome", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I've always been satisfied", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b1feb7ec3356448b auto 22c559a8-fabc-4916-9961-bcbd61225266 1075 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 The staff was incredibly attentive and friendly 0 43 \N \N \N 2026-01-31 03:35:48.154 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 0932fd813ab441e6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1076 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 She's a true professional 82 106 \N \N \N 2026-01-31 03:35:48.157986 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 0932fd813ab441e6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1077 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 I wholeheartedly recommend Clínica Calme 130 162 \N \N \N 2026-01-31 03:35:48.159962 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 0932fd813ab441e6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1302 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNaX00yLVFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.80 Cejas y pestañas fatal \N \N {"Service Quality"} \N \N 2026-01-31 03:39:37.919651 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 46, "evidence": "no dieron ni una sola solución", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 20}], "unmapped": [{"label": "Service Quality", "evidence": "Cejas y pestañas fatal", "confidence": 0.8}]} 3ae6acf5b245cd22 auto 22c559a8-fabc-4916-9961-bcbd61225266 1304 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlMHVXOGdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 siempre ofreciendo lo mejor que convenga 37 73 \N \N \N 2026-01-31 03:39:43.013708 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy contenta con el trabajo que hacen", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre ofreciendo lo mejor que convenga", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 369fa9078ac7ba59 auto 22c559a8-fabc-4916-9961-bcbd61225266 1078 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 You'll definitely want to come back! 164 194 \N \N \N 2026-01-31 03:35:48.161721 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 0932fd813ab441e6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1079 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-49 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS - 2 3 \N 0.90 the asymmetry is much more noticeable 41 78 \N \N \N 2026-01-31 03:35:50.687443 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "the asymmetry is much more noticeable", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Once the swelling went down... horrible", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} a56c7a436c1eb60d auto 22c559a8-fabc-4916-9961-bcbd61225266 167 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-66 Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Rented a car from their office in Gran Canaria, an... 0 50 {general} \N \N 2026-01-31 02:05:47.015554 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1080 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-49 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS - 2 3 \N 0.90 Once the swelling went down... horrible 107 134 \N \N \N 2026-01-31 03:35:50.689951 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "the asymmetry is much more noticeable", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Once the swelling went down... horrible", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 107}], "unmapped": []} a56c7a436c1eb60d auto 22c559a8-fabc-4916-9961-bcbd61225266 1081 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-50 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 the ones in charge of me!!! 0 30 \N \N \N 2026-01-31 03:35:53.245848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "the ones in charge of me!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Lip treatments, MESOTHERAPY, thread lifts, body shock, my everyday creams", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 32}], "unmapped": []} 49b2ec688ca2c965 auto 22c559a8-fabc-4916-9961-bcbd61225266 1082 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-50 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Lip treatments, MESOTHERAPY, thread lifts, body shock, my everyday creams 32 83 \N \N \N 2026-01-31 03:35:53.249256 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "the ones in charge of me!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Lip treatments, MESOTHERAPY, thread lifts, body shock, my everyday creams", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 32}], "unmapped": []} 49b2ec688ca2c965 auto 22c559a8-fabc-4916-9961-bcbd61225266 1083 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-51 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 their extensive knowledge of everything they do 66 103 \N \N \N 2026-01-31 03:35:56.912558 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "their extensive knowledge of everything they do", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the way they advise you, and their commitment to finding the best treatment for each individual impressed me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "it certainly won't be my last", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 37}], "unmapped": []} f4e6cf747c5106c2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1084 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-51 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 the way they advise you, and their commitment to finding the best treatment for each individual impressed me 104 157 \N \N \N 2026-01-31 03:35:56.917018 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "their extensive knowledge of everything they do", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the way they advise you, and their commitment to finding the best treatment for each individual impressed me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "it certainly won't be my last", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 37}], "unmapped": []} f4e6cf747c5106c2 auto 22c559a8-fabc-4916-9961-bcbd61225266 2573 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNIOXJ1RFpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOVERY + 3 3 \N 0.90 han tratado de buscarle una solución sin ningún tipo de problema 37 81 \N \N \N 2026-01-31 04:01:25.038322 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "han tratado de buscarle una solución sin ningún tipo de problema", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Muy agradecido!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 82}], "unmapped": []} f52ff212e3c7466b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1085 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-51 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 it certainly won't be my last 37 61 \N \N \N 2026-01-31 03:35:56.919032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "their extensive knowledge of everything they do", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the way they advise you, and their commitment to finding the best treatment for each individual impressed me", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "it certainly won't be my last", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 37}], "unmapped": []} f4e6cf747c5106c2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1086 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-52 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 it's the best aesthetic medicine clinic I've ever been to. 116 151 \N \N \N 2026-01-31 03:36:00.307298 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 151, "evidence": "it's the best aesthetic medicine clinic I've ever been to.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "the entire staff provides unbeatable treatment; they're all wonderful people.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I truly couldn't be happier with the results.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 47}], "unmapped": []} fa5a57dc6ce08fad auto 22c559a8-fabc-4916-9961-bcbd61225266 1087 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-52 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 the entire staff provides unbeatable treatment; they're all wonderful people. 66 113 \N \N \N 2026-01-31 03:36:00.310583 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 151, "evidence": "it's the best aesthetic medicine clinic I've ever been to.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "the entire staff provides unbeatable treatment; they're all wonderful people.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I truly couldn't be happier with the results.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 47}], "unmapped": []} fa5a57dc6ce08fad auto 22c559a8-fabc-4916-9961-bcbd61225266 1088 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-52 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 I truly couldn't be happier with the results. 47 78 \N \N \N 2026-01-31 03:36:00.312579 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 151, "evidence": "it's the best aesthetic medicine clinic I've ever been to.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "the entire staff provides unbeatable treatment; they're all wonderful people.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I truly couldn't be happier with the results.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 47}], "unmapped": []} fa5a57dc6ce08fad auto 22c559a8-fabc-4916-9961-bcbd61225266 1089 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-53 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Excellent service. 0 16 \N \N \N 2026-01-31 03:36:04.928915 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "they answered them all very kindly.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "the most thorough I've ever had", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "at a reasonable price.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "the esthetician has hands of gold.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 145}], "unmapped": []} ed59f83a2aacb89c auto 22c559a8-fabc-4916-9961-bcbd61225266 1090 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-53 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 they answered them all very kindly. 54 83 \N \N \N 2026-01-31 03:36:04.932553 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "they answered them all very kindly.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "the most thorough I've ever had", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "at a reasonable price.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "the esthetician has hands of gold.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 145}], "unmapped": []} ed59f83a2aacb89c auto 22c559a8-fabc-4916-9961-bcbd61225266 4226 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURWbHBiMC1RRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.37645 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5672 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great queer club! 0 17 \N \N \N 2026-01-31 15:17:31.184541 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}], "unmapped": []} e286d8956000e86f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 168 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-67 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 We have rented car several times in different citi... 0 50 \N \N \N 2026-01-31 02:05:47.0161 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1091 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-53 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 the most thorough I've ever had 97 123 \N \N \N 2026-01-31 03:36:04.935039 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "they answered them all very kindly.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "the most thorough I've ever had", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "at a reasonable price.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "the esthetician has hands of gold.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 145}], "unmapped": []} ed59f83a2aacb89c auto 22c559a8-fabc-4916-9961-bcbd61225266 1092 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-53 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 at a reasonable price. 126 144 \N \N \N 2026-01-31 03:36:04.937685 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "they answered them all very kindly.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "the most thorough I've ever had", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "at a reasonable price.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "the esthetician has hands of gold.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 145}], "unmapped": []} ed59f83a2aacb89c auto 22c559a8-fabc-4916-9961-bcbd61225266 1093 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-53 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 the esthetician has hands of gold. 145 176 \N \N \N 2026-01-31 03:36:04.939237 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Excellent service.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "they answered them all very kindly.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "the most thorough I've ever had", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "at a reasonable price.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "the esthetician has hands of gold.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 145}], "unmapped": []} ed59f83a2aacb89c auto 22c559a8-fabc-4916-9961-bcbd61225266 1094 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-54 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Highly recommended. 0 18 \N \N \N 2026-01-31 03:36:06.23624 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Highly recommended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} b564c27674e133a8 auto 22c559a8-fabc-4916-9961-bcbd61225266 1095 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxa29xMmVBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un lugar que recomiendo al 100%. 0 30 \N \N \N 2026-01-31 03:36:10.803133 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Un lugar que recomiendo al 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la recepcionista, muy amable y atenta.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te aconsejan y comprenden absolutamente.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un centro en el que encuentras bien estar al instante.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} c7648017785a85fe auto 22c559a8-fabc-4916-9961-bcbd61225266 5740 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 The best place in Vilnius to party 0 36 \N \N \N 2026-01-31 15:18:41.946409 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Such a great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "staff is extremely friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "The best place in Vilnius to party", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 29d2e0ae936ef9c4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 169 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-68 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 I had a smooth rent, great customer service, and v... 0 50 \N \N \N 2026-01-31 02:05:47.016638 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1096 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxa29xMmVBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la recepcionista, muy amable y atenta. 34 61 \N \N \N 2026-01-31 03:36:10.80606 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Un lugar que recomiendo al 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la recepcionista, muy amable y atenta.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te aconsejan y comprenden absolutamente.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un centro en el que encuentras bien estar al instante.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} c7648017785a85fe auto 22c559a8-fabc-4916-9961-bcbd61225266 1097 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxa29xMmVBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 te aconsejan y comprenden absolutamente. 107 139 \N \N \N 2026-01-31 03:36:10.807985 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Un lugar que recomiendo al 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la recepcionista, muy amable y atenta.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te aconsejan y comprenden absolutamente.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un centro en el que encuentras bien estar al instante.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} c7648017785a85fe auto 22c559a8-fabc-4916-9961-bcbd61225266 1098 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxa29xMmVBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMFORT + 3 3 \N 0.90 Un centro en el que encuentras bien estar al instante. 164 203 \N \N \N 2026-01-31 03:36:10.809935 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Un lugar que recomiendo al 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la recepcionista, muy amable y atenta.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te aconsejan y comprenden absolutamente.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Un centro en el que encuentras bien estar al instante.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} c7648017785a85fe auto 22c559a8-fabc-4916-9961-bcbd61225266 1099 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdnYzQm53RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato al cliente es fabuloso durante todo el proceso 42 78 \N \N \N 2026-01-31 03:36:14.483272 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "El trato al cliente es fabuloso durante todo el proceso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "la chica que me hizo la limpieza y el masaje facial muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Repetiré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} 3718c36346837c19 auto 22c559a8-fabc-4916-9961-bcbd61225266 1100 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdnYzQm53RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la chica que me hizo la limpieza y el masaje facial muy profesional 80 126 \N \N \N 2026-01-31 03:36:14.486568 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "El trato al cliente es fabuloso durante todo el proceso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "la chica que me hizo la limpieza y el masaje facial muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Repetiré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} 3718c36346837c19 auto 22c559a8-fabc-4916-9961-bcbd61225266 1101 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdnYzQm53RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 Repetiré! 128 136 \N \N \N 2026-01-31 03:36:14.489193 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "El trato al cliente es fabuloso durante todo el proceso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "la chica que me hizo la limpieza y el masaje facial muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Repetiré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 128}], "unmapped": []} 3718c36346837c19 auto 22c559a8-fabc-4916-9961-bcbd61225266 1102 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBaU9Ia3J3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Encantada con los diversos tratamientos que me han realizado! 6 66 \N \N \N 2026-01-31 03:36:18.567482 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Encantada con los diversos tratamientos que me han realizado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 6}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Las chicas son fantásticas!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Muchas gracias a todas.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 90}], "unmapped": []} cbe9de9d452442a7 auto 22c559a8-fabc-4916-9961-bcbd61225266 2574 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNIOXJ1RFpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Muy agradecido! 82 97 \N \N \N 2026-01-31 04:01:25.040352 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "han tratado de buscarle una solución sin ningún tipo de problema", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Muy agradecido!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 82}], "unmapped": []} f52ff212e3c7466b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1103 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBaU9Ia3J3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Las chicas son fantásticas! 66 90 \N \N \N 2026-01-31 03:36:18.569686 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Encantada con los diversos tratamientos que me han realizado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 6}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Las chicas son fantásticas!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Muchas gracias a todas.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 90}], "unmapped": []} cbe9de9d452442a7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1104 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBaU9Ia3J3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchas gracias a todas. 90 110 \N \N \N 2026-01-31 03:36:18.57137 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Encantada con los diversos tratamientos que me han realizado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 6}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Las chicas son fantásticas!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Muchas gracias a todas.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 90}], "unmapped": []} cbe9de9d452442a7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1105 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtekthU1hREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Las chicas muy amables, son todas unas profesionales. 0 56 \N \N \N 2026-01-31 03:36:22.955376 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Las chicas muy amables, son todas unas profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "son todas unas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "repetiría siempre que pueda y lo necesite.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muchas gracias y felicidades por el gran trabajo que están haciendo.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 113}], "unmapped": []} cac664411499e1f5 auto 22c559a8-fabc-4916-9961-bcbd61225266 1106 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtekthU1hREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 son todas unas profesionales. 36 56 \N \N \N 2026-01-31 03:36:22.957219 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Las chicas muy amables, son todas unas profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "son todas unas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "repetiría siempre que pueda y lo necesite.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muchas gracias y felicidades por el gran trabajo que están haciendo.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 113}], "unmapped": []} cac664411499e1f5 auto 22c559a8-fabc-4916-9961-bcbd61225266 5673 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Excellent drinks 18 36 \N \N \N 2026-01-31 15:17:31.187818 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}], "unmapped": []} e286d8956000e86f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1107 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtekthU1hREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 repetiría siempre que pueda y lo necesite. 78 112 \N \N \N 2026-01-31 03:36:22.95879 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Las chicas muy amables, son todas unas profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "son todas unas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "repetiría siempre que pueda y lo necesite.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muchas gracias y felicidades por el gran trabajo que están haciendo.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 113}], "unmapped": []} cac664411499e1f5 auto 22c559a8-fabc-4916-9961-bcbd61225266 1108 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtekthU1hREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchas gracias y felicidades por el gran trabajo que están haciendo. 113 157 \N \N \N 2026-01-31 03:36:22.960782 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Las chicas muy amables, son todas unas profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "son todas unas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "repetiría siempre que pueda y lo necesite.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muchas gracias y felicidades por el gran trabajo que están haciendo.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 113}], "unmapped": []} cac664411499e1f5 auto 22c559a8-fabc-4916-9961-bcbd61225266 1109 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsLWJXTDdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato de 10. Muy amables, muy atentas y profesionales. 0 66 \N \N \N 2026-01-31 03:36:26.594575 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "el trato de 10. Muy amables, muy atentas y profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Tratamiento indoloro y muy rápido.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 114, "evidence": "Sin duda 100% recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} d42df054beddeb80 auto 22c559a8-fabc-4916-9961-bcbd61225266 1110 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsLWJXTDdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Tratamiento indoloro y muy rápido. 66 92 \N \N \N 2026-01-31 03:36:26.596758 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "el trato de 10. Muy amables, muy atentas y profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Tratamiento indoloro y muy rápido.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 114, "evidence": "Sin duda 100% recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} d42df054beddeb80 auto 22c559a8-fabc-4916-9961-bcbd61225266 1111 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsLWJXTDdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda 100% recomendable. 92 114 \N \N \N 2026-01-31 03:36:26.598229 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "el trato de 10. Muy amables, muy atentas y profesionales.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Tratamiento indoloro y muy rápido.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 114, "evidence": "Sin duda 100% recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} d42df054beddeb80 auto 22c559a8-fabc-4916-9961-bcbd61225266 1112 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtXzlIOUpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el resultado final es maravilloso 120 145 \N \N \N 2026-01-31 03:36:29.861483 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "el resultado final es maravilloso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 120}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "recomiendo Clínica Calme una y mil veces", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 147}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "siempre me han explicado cada tratamiento de manera clara", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}], "unmapped": []} 05db65bc47c47d29 auto 22c559a8-fabc-4916-9961-bcbd61225266 170 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas rev-69 Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Really nice and helpful people (and they speak goo... 0 50 \N \N \N 2026-01-31 02:05:47.01742 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1113 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtXzlIOUpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 recomiendo Clínica Calme una y mil veces 147 182 \N \N \N 2026-01-31 03:36:29.864248 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "el resultado final es maravilloso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 120}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "recomiendo Clínica Calme una y mil veces", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 147}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "siempre me han explicado cada tratamiento de manera clara", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}], "unmapped": []} 05db65bc47c47d29 auto 22c559a8-fabc-4916-9961-bcbd61225266 1114 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtXzlIOUpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 siempre me han explicado cada tratamiento de manera clara 42 85 \N \N \N 2026-01-31 03:36:29.866272 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "el resultado final es maravilloso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 120}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "recomiendo Clínica Calme una y mil veces", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 147}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "siempre me han explicado cada tratamiento de manera clara", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}], "unmapped": []} 05db65bc47c47d29 auto 22c559a8-fabc-4916-9961-bcbd61225266 1115 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNyek5MWlJnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 no puedo estar más contenta con el resultado 36 66 \N \N \N 2026-01-31 03:36:33.368501 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "no puedo estar más contenta con el resultado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la calidad humana y profesional es lo mejor sin duda", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "un trabajo excelente", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 66}], "unmapped": []} b304e751f8668364 auto 22c559a8-fabc-4916-9961-bcbd61225266 1116 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNyek5MWlJnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la calidad humana y profesional es lo mejor sin duda 80 116 \N \N \N 2026-01-31 03:36:33.372006 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "no puedo estar más contenta con el resultado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la calidad humana y profesional es lo mejor sin duda", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "un trabajo excelente", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 66}], "unmapped": []} b304e751f8668364 auto 22c559a8-fabc-4916-9961-bcbd61225266 1117 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNyek5MWlJnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 un trabajo excelente 66 80 \N \N \N 2026-01-31 03:36:33.374115 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "no puedo estar más contenta con el resultado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la calidad humana y profesional es lo mejor sin duda", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "un trabajo excelente", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 66}], "unmapped": []} b304e751f8668364 auto 22c559a8-fabc-4916-9961-bcbd61225266 1118 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlMGR6ZzJBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 súper contenta con el resultado 42 66 \N \N \N 2026-01-31 03:36:36.941639 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "volveré muy pronto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "recomendaciones de la doctora De la Guardia en medicina estética", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 88}], "unmapped": []} 8499a0929890bf7a auto 22c559a8-fabc-4916-9961-bcbd61225266 1119 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlMGR6ZzJBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 volveré muy pronto 139 156 \N \N \N 2026-01-31 03:36:36.948703 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "volveré muy pronto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "recomendaciones de la doctora De la Guardia en medicina estética", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 88}], "unmapped": []} 8499a0929890bf7a auto 22c559a8-fabc-4916-9961-bcbd61225266 1120 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlMGR6ZzJBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 recomendaciones de la doctora De la Guardia en medicina estética 88 132 \N \N \N 2026-01-31 03:36:36.950704 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "volveré muy pronto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "recomendaciones de la doctora De la Guardia en medicina estética", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 88}], "unmapped": []} 8499a0929890bf7a auto 22c559a8-fabc-4916-9961-bcbd61225266 1121 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQyMHRDcUF3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomendado 66 83 \N \N \N 2026-01-31 03:36:41.383774 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "100% recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 14, "evidence": "Trato exquisito", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "me he hecho varios tratamientos (aumento de labios, maderoterapia y masaje a cuatro manos) y a cuál mejor", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 14}], "unmapped": []} cda77e338567acee auto 22c559a8-fabc-4916-9961-bcbd61225266 1122 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQyMHRDcUF3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Trato exquisito 0 14 \N \N \N 2026-01-31 03:36:41.38628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "100% recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 14, "evidence": "Trato exquisito", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "me he hecho varios tratamientos (aumento de labios, maderoterapia y masaje a cuatro manos) y a cuál mejor", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 14}], "unmapped": []} cda77e338567acee auto 22c559a8-fabc-4916-9961-bcbd61225266 1123 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQyMHRDcUF3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 me he hecho varios tratamientos (aumento de labios, maderoterapia y masaje a cuatro manos) y a cuál mejor 14 66 \N \N \N 2026-01-31 03:36:41.388728 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "100% recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 14, "evidence": "Trato exquisito", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "me he hecho varios tratamientos (aumento de labios, maderoterapia y masaje a cuatro manos) y a cuál mejor", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 14}], "unmapped": []} cda77e338567acee auto 22c559a8-fabc-4916-9961-bcbd61225266 1124 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxNUlYZ2hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Super amables y atentas en todo momento. 45 77 \N \N \N 2026-01-31 03:36:43.785249 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 77, "evidence": "Super amables y atentas en todo momento.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Resultados genial, muy contenta.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 78}], "unmapped": []} 9b75697e1343de22 auto 22c559a8-fabc-4916-9961-bcbd61225266 1125 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxNUlYZ2hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Resultados genial, muy contenta. 78 103 \N \N \N 2026-01-31 03:36:43.786582 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 77, "evidence": "Super amables y atentas en todo momento.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Resultados genial, muy contenta.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 78}], "unmapped": []} 9b75697e1343de22 auto 22c559a8-fabc-4916-9961-bcbd61225266 1126 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNEeDRQTzdRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 trato tan bueno y atento 54 75 \N \N \N 2026-01-31 03:36:47.485365 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "trato tan bueno y atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "tratamientos top 10", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "no van a engañarte ni venderte por venderte productos ni tratamientos", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "no duden en ir de verdad es una apuesta segura", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 187}], "unmapped": []} 6b02faf41fd4dd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 1127 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNEeDRQTzdRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 tratamientos top 10 118 138 \N \N \N 2026-01-31 03:36:47.487787 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "trato tan bueno y atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "tratamientos top 10", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "no van a engañarte ni venderte por venderte productos ni tratamientos", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "no duden en ir de verdad es una apuesta segura", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 187}], "unmapped": []} 6b02faf41fd4dd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 1128 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNEeDRQTzdRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 HONESTY + 3 3 \N 0.90 no van a engañarte ni venderte por venderte productos ni tratamientos 139 186 \N \N \N 2026-01-31 03:36:47.490228 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "trato tan bueno y atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "tratamientos top 10", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "no van a engañarte ni venderte por venderte productos ni tratamientos", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "no duden en ir de verdad es una apuesta segura", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 187}], "unmapped": []} 6b02faf41fd4dd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 1172 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXOGJpTm9nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomendados en todos los sentidos! 90 120 \N \N \N 2026-01-31 03:37:33.395233 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 120, "evidence": "100% recomendados en todos los sentidos!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Una clínica estupenda! Pet friendly y con servicios/productos apto para veganos!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fa2cf4d3c96a24c auto 22c559a8-fabc-4916-9961-bcbd61225266 1147 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHckx2SlBBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMFORT + 3 3 \N 0.90 salí encantada 28 42 \N \N \N 2026-01-31 03:37:04.179258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "recibí un muy buen trato de todo el personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "la masajista es estupenda y tiene unas manos maravillosas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "salí encantada", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 28}], "unmapped": []} ecc85d252a31d290 auto 22c559a8-fabc-4916-9961-bcbd61225266 1129 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNEeDRQTzdRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 no duden en ir de verdad es una apuesta segura 187 223 \N \N \N 2026-01-31 03:36:47.492062 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "trato tan bueno y atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "tratamientos top 10", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "no van a engañarte ni venderte por venderte productos ni tratamientos", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "no duden en ir de verdad es una apuesta segura", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 187}], "unmapped": []} 6b02faf41fd4dd4c auto 22c559a8-fabc-4916-9961-bcbd61225266 1130 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR1XzhUR1RREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 le regalé un masaje relajante a mi madre 56 85 \N \N \N 2026-01-31 03:36:50.671542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "le regalé un masaje relajante a mi madre", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "me gustó tanto cómo trabajó la chica", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha salido súper feliz con la experiencia", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 88}], "unmapped": []} 1a38eaf7c7cacd66 auto 22c559a8-fabc-4916-9961-bcbd61225266 1131 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR1XzhUR1RREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 me gustó tanto cómo trabajó la chica 36 62 \N \N \N 2026-01-31 03:36:50.675705 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "le regalé un masaje relajante a mi madre", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "me gustó tanto cómo trabajó la chica", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha salido súper feliz con la experiencia", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 88}], "unmapped": []} 1a38eaf7c7cacd66 auto 22c559a8-fabc-4916-9961-bcbd61225266 1132 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR1XzhUR1RREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 ha salido súper feliz con la experiencia 88 118 \N \N \N 2026-01-31 03:36:50.677964 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "le regalé un masaje relajante a mi madre", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "me gustó tanto cómo trabajó la chica", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha salido súper feliz con la experiencia", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 88}], "unmapped": []} 1a38eaf7c7cacd66 auto 22c559a8-fabc-4916-9961-bcbd61225266 1133 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 personal muy atento, pendiente a ti y a las necesidades de cada persona 22 78 \N \N \N 2026-01-31 03:36:55.064355 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "personal muy atento, pendiente a ti y a las necesidades de cada persona", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "muy amable en todo momento y cuidadosas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "la doctora es una gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en todo momento te explican y aconsejan lo mejor acorde a tu necesidades", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "le recomiendo a todo el mundo esta clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}], "unmapped": []} 607d498ee2d228b2 auto 22c559a8-fabc-4916-9961-bcbd61225266 4227 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNGeXJEMWt3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.378219 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1134 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 muy amable en todo momento y cuidadosas 78 113 \N \N \N 2026-01-31 03:36:55.069792 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "personal muy atento, pendiente a ti y a las necesidades de cada persona", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "muy amable en todo momento y cuidadosas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "la doctora es una gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en todo momento te explican y aconsejan lo mejor acorde a tu necesidades", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "le recomiendo a todo el mundo esta clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}], "unmapped": []} 607d498ee2d228b2 auto 22c559a8-fabc-4916-9961-bcbd61225266 5741 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 rude DJs with bad music no one enjoys 37 66 \N \N \N 2026-01-31 15:18:44.836766 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "rude DJs with bad music no one enjoys", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 34, "evidence": "Weak drinks", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 24}], "unmapped": [{"label": "Overall sentiment", "evidence": "this place sucks", "confidence": 0.9}, {"label": "Recommendation", "evidence": "worth exploring in Vilnius", "confidence": 0.7}]} 8a52e93156c7e433 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1135 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la doctora es una gran profesional 113 143 \N \N \N 2026-01-31 03:36:55.07222 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "personal muy atento, pendiente a ti y a las necesidades de cada persona", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "muy amable en todo momento y cuidadosas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "la doctora es una gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en todo momento te explican y aconsejan lo mejor acorde a tu necesidades", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "le recomiendo a todo el mundo esta clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}], "unmapped": []} 607d498ee2d228b2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1136 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 en todo momento te explican y aconsejan lo mejor acorde a tu necesidades 143 197 \N \N \N 2026-01-31 03:36:55.074859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "personal muy atento, pendiente a ti y a las necesidades de cada persona", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "muy amable en todo momento y cuidadosas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "la doctora es una gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en todo momento te explican y aconsejan lo mejor acorde a tu necesidades", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "le recomiendo a todo el mundo esta clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}], "unmapped": []} 607d498ee2d228b2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1137 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 le recomiendo a todo el mundo esta clínica 197 232 \N \N \N 2026-01-31 03:36:55.07664 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "personal muy atento, pendiente a ti y a las necesidades de cada persona", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "muy amable en todo momento y cuidadosas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "la doctora es una gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en todo momento te explican y aconsejan lo mejor acorde a tu necesidades", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "le recomiendo a todo el mundo esta clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}], "unmapped": []} 607d498ee2d228b2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1138 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxaE5pSVpREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Consiglio questa clinica 85 108 \N \N \N 2026-01-31 03:36:58.163726 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "Consiglio questa clinica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "sono super professionali", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "gentilissimi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "felicissima del risultato", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 2d67e5f8a00c38f7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1139 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxaE5pSVpREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 sono super professionali 109 134 \N \N \N 2026-01-31 03:36:58.166706 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "Consiglio questa clinica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "sono super professionali", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "gentilissimi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "felicissima del risultato", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 2d67e5f8a00c38f7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1305 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2tKbWNXazBWVVpLYzBGb2RUbE5abTlhWDJKRFNYYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Todo maravilloso 0 16 \N \N \N 2026-01-31 03:39:44.050891 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Todo maravilloso", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8dff35d64357417e auto 22c559a8-fabc-4916-9961-bcbd61225266 1140 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxaE5pSVpREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 gentilissimi 135 145 \N \N \N 2026-01-31 03:36:58.168798 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "Consiglio questa clinica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "sono super professionali", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "gentilissimi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "felicissima del risultato", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 2d67e5f8a00c38f7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1141 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxaE5pSVpREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 felicissima del risultato 66 87 \N \N \N 2026-01-31 03:36:58.171269 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "Consiglio questa clinica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "sono super professionali", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "gentilissimi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "felicissima del risultato", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 2d67e5f8a00c38f7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1142 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsMS1lM2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 me hicieron sentir super cómoda y tranquila 85 118 \N \N \N 2026-01-31 03:37:01.265213 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "me hicieron sentir super cómoda y tranquila", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "te explican todo se toman su tiempo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Super Recomendadas 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 8076a2b3c517ccc3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1143 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsMS1lM2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 te explican todo se toman su tiempo 118 144 \N \N \N 2026-01-31 03:37:01.2691 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "me hicieron sentir super cómoda y tranquila", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "te explican todo se toman su tiempo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Super Recomendadas 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 8076a2b3c517ccc3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1144 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsMS1lM2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Super Recomendadas 100x100 174 197 \N \N \N 2026-01-31 03:37:01.271552 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "me hicieron sentir super cómoda y tranquila", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "te explican todo se toman su tiempo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Super Recomendadas 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 8076a2b3c517ccc3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1145 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHckx2SlBBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 recibí un muy buen trato de todo el personal 80 116 \N \N \N 2026-01-31 03:37:04.172986 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "recibí un muy buen trato de todo el personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "la masajista es estupenda y tiene unas manos maravillosas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "salí encantada", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 28}], "unmapped": []} ecc85d252a31d290 auto 22c559a8-fabc-4916-9961-bcbd61225266 1146 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHckx2SlBBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 la masajista es estupenda y tiene unas manos maravillosas 36 78 \N \N \N 2026-01-31 03:37:04.176705 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "recibí un muy buen trato de todo el personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "la masajista es estupenda y tiene unas manos maravillosas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "salí encantada", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 28}], "unmapped": []} ecc85d252a31d290 auto 22c559a8-fabc-4916-9961-bcbd61225266 171 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 It would be very important to better mark where th... 0 50 \N \N \N 2026-01-31 02:05:47.017949 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1148 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURoaTZtcmJ3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Agradecida eternamente, que profesionalidad! 0 78 \N \N \N 2026-01-31 03:37:07.182203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Agradecida eternamente, que profesionalidad!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Indescriptible el trato que me dieron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "como la doctora solucionó mi problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 84}], "unmapped": []} 0fa4c07fe00f3a19 auto 22c559a8-fabc-4916-9961-bcbd61225266 1149 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURoaTZtcmJ3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Indescriptible el trato que me dieron 56 83 \N \N \N 2026-01-31 03:37:07.18585 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Agradecida eternamente, que profesionalidad!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Indescriptible el trato que me dieron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "como la doctora solucionó mi problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 84}], "unmapped": []} 0fa4c07fe00f3a19 auto 22c559a8-fabc-4916-9961-bcbd61225266 1150 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURoaTZtcmJ3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 como la doctora solucionó mi problema 84 113 \N \N \N 2026-01-31 03:37:07.187913 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Agradecida eternamente, que profesionalidad!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Indescriptible el trato que me dieron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "como la doctora solucionó mi problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 84}], "unmapped": []} 0fa4c07fe00f3a19 auto 22c559a8-fabc-4916-9961-bcbd61225266 1151 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURtOU5qWEVnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 he notado resultados desde la primera sesión 56 83 \N \N \N 2026-01-31 03:37:09.738382 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "he notado resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "dan un buen trato y servicio", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "las chicas cuidan mucho los detalles", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} 472f7fd0ff011b6a auto 22c559a8-fabc-4916-9961-bcbd61225266 1152 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURtOU5qWEVnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 dan un buen trato y servicio 100 123 \N \N \N 2026-01-31 03:37:09.74199 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "he notado resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "dan un buen trato y servicio", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "las chicas cuidan mucho los detalles", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} 472f7fd0ff011b6a auto 22c559a8-fabc-4916-9961-bcbd61225266 1153 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURtOU5qWEVnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 las chicas cuidan mucho los detalles 90 116 \N \N \N 2026-01-31 03:37:09.744186 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "he notado resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "dan un buen trato y servicio", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "las chicas cuidan mucho los detalles", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} 472f7fd0ff011b6a auto 22c559a8-fabc-4916-9961-bcbd61225266 1154 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxLUpXYmtRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Profesionalidad, trato humano y cercanía. 0 43 \N \N \N 2026-01-31 03:37:12.591024 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Profesionalidad, trato humano y cercanía.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Un lugar familiar de referencia en la Medicina estética en Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda, un lugar de plena confianza.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 85}], "unmapped": []} 5ddd336b46cfb516 auto 22c559a8-fabc-4916-9961-bcbd61225266 1155 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxLUpXYmtRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un lugar familiar de referencia en la Medicina estética en Las Palmas. 44 84 \N \N \N 2026-01-31 03:37:12.594384 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Profesionalidad, trato humano y cercanía.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Un lugar familiar de referencia en la Medicina estética en Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda, un lugar de plena confianza.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 85}], "unmapped": []} 5ddd336b46cfb516 auto 22c559a8-fabc-4916-9961-bcbd61225266 1156 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxLUpXYmtRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RELIABILITY + 3 3 \N 0.90 Sin duda, un lugar de plena confianza. 85 113 \N \N \N 2026-01-31 03:37:12.596565 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Profesionalidad, trato humano y cercanía.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Un lugar familiar de referencia en la Medicina estética en Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda, un lugar de plena confianza.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 85}], "unmapped": []} 5ddd336b46cfb516 auto 22c559a8-fabc-4916-9961-bcbd61225266 1157 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHLW91LW5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el personal te da seguridad a la hora de hacerte los tratamientos 22 73 \N \N \N 2026-01-31 03:37:15.931176 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "el personal te da seguridad a la hora de hacerte los tratamientos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Estoy muy satisfecha con lo que me han hecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "¡¡¡Felicidades!!!...siempre mantengan ese buen trato y buen servicio", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 108}], "unmapped": []} bf190d61efe342dc auto 22c559a8-fabc-4916-9961-bcbd61225266 1158 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHLW91LW5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Estoy muy satisfecha con lo que me han hecho 74 107 \N \N \N 2026-01-31 03:37:15.934714 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "el personal te da seguridad a la hora de hacerte los tratamientos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Estoy muy satisfecha con lo que me han hecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "¡¡¡Felicidades!!!...siempre mantengan ese buen trato y buen servicio", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 108}], "unmapped": []} bf190d61efe342dc auto 22c559a8-fabc-4916-9961-bcbd61225266 1173 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXOGJpTm9nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 Una clínica estupenda! Pet friendly y con servicios/productos apto para veganos! 0 80 \N \N \N 2026-01-31 03:37:33.402931 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 120, "evidence": "100% recomendados en todos los sentidos!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Una clínica estupenda! Pet friendly y con servicios/productos apto para veganos!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5fa2cf4d3c96a24c auto 22c559a8-fabc-4916-9961-bcbd61225266 1159 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHLW91LW5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOGNITION + 3 3 \N 0.90 ¡¡¡Felicidades!!!...siempre mantengan ese buen trato y buen servicio 108 158 \N \N \N 2026-01-31 03:37:15.936781 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "el personal te da seguridad a la hora de hacerte los tratamientos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Estoy muy satisfecha con lo que me han hecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "¡¡¡Felicidades!!!...siempre mantengan ese buen trato y buen servicio", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 108}], "unmapped": []} bf190d61efe342dc auto 22c559a8-fabc-4916-9961-bcbd61225266 1160 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURIek1QRXVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Las mejores opciones de tratamientos para sus pacientes. 82 118 \N \N \N 2026-01-31 03:37:20.550844 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Las mejores opciones de tratamientos para sus pacientes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "un ambiente acogedor y familiar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Grandes profesionales,", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 91dcb86285d2b082 auto 22c559a8-fabc-4916-9961-bcbd61225266 1161 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURIek1QRXVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 un ambiente acogedor y familiar. 34 60 \N \N \N 2026-01-31 03:37:20.554648 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Las mejores opciones de tratamientos para sus pacientes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "un ambiente acogedor y familiar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Grandes profesionales,", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 91dcb86285d2b082 auto 22c559a8-fabc-4916-9961-bcbd61225266 1162 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURIek1QRXVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Grandes profesionales, 0 18 \N \N \N 2026-01-31 03:37:20.557062 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Las mejores opciones de tratamientos para sus pacientes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "un ambiente acogedor y familiar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Grandes profesionales,", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 91dcb86285d2b082 auto 22c559a8-fabc-4916-9961-bcbd61225266 1163 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5Z3EzVy1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 siempre he salido súper satisfecha! 56 83 \N \N \N 2026-01-31 03:37:22.470614 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "siempre he salido súper satisfecha!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Las chicas son encantadoras!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}], "unmapped": []} 77deb704be215412 auto 22c559a8-fabc-4916-9961-bcbd61225266 1164 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5Z3EzVy1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Las chicas son encantadoras! 85 110 \N \N \N 2026-01-31 03:37:22.473744 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "siempre he salido súper satisfecha!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Las chicas son encantadoras!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}], "unmapped": []} 77deb704be215412 auto 22c559a8-fabc-4916-9961-bcbd61225266 1165 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHOFpHcWdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 gran profesionalidad 30 50 \N \N \N 2026-01-31 03:37:25.985797 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "tratamientos novedosos y asequibles", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "trato recibido por la esteticista", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "volveré pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 124}], "unmapped": []} b67ae1faa6d2f8fe auto 22c559a8-fabc-4916-9961-bcbd61225266 4228 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2pWUlZUbG5jWGwzZFZZME5EZzFiVXRMVVVadWVGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.380308 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1166 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHOFpHcWdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 tratamientos novedosos y asequibles 54 85 \N \N \N 2026-01-31 03:37:25.988763 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "tratamientos novedosos y asequibles", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "trato recibido por la esteticista", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "volveré pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 124}], "unmapped": []} b67ae1faa6d2f8fe auto 22c559a8-fabc-4916-9961-bcbd61225266 1167 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHOFpHcWdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato recibido por la esteticista 90 118 \N \N \N 2026-01-31 03:37:25.991014 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "tratamientos novedosos y asequibles", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "trato recibido por la esteticista", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "volveré pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 124}], "unmapped": []} b67ae1faa6d2f8fe auto 22c559a8-fabc-4916-9961-bcbd61225266 1168 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHOFpHcWdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 volveré pronto 124 136 \N \N \N 2026-01-31 03:37:25.992886 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "tratamientos novedosos y asequibles", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "trato recibido por la esteticista", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "volveré pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 124}], "unmapped": []} b67ae1faa6d2f8fe auto 22c559a8-fabc-4916-9961-bcbd61225266 1169 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxN042VEt3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Destacar la profesionalidad de sus trabajadores 20 63 \N \N \N 2026-01-31 03:37:29.080502 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Destacar la profesionalidad de sus trabajadores", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "siempre pendientes de las necesidades y del bienestar de sus clientes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Experiencia 10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}], "unmapped": []} 32e9e971a7bca45e auto 22c559a8-fabc-4916-9961-bcbd61225266 1170 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxN042VEt3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 siempre pendientes de las necesidades y del bienestar de sus clientes 63 113 \N \N \N 2026-01-31 03:37:29.083838 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Destacar la profesionalidad de sus trabajadores", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "siempre pendientes de las necesidades y del bienestar de sus clientes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Experiencia 10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}], "unmapped": []} 32e9e971a7bca45e auto 22c559a8-fabc-4916-9961-bcbd61225266 1171 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxN042VEt3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Experiencia 10/10 113 130 \N \N \N 2026-01-31 03:37:29.085411 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Destacar la profesionalidad de sus trabajadores", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "siempre pendientes de las necesidades y del bienestar de sus clientes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Experiencia 10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}], "unmapped": []} 32e9e971a7bca45e auto 22c559a8-fabc-4916-9961-bcbd61225266 2630 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pWMVVFNVVkbWd5Ym1nNFQxQnJUbWRmWTI1a1ptYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Muy bien trato 0 15 \N \N \N 2026-01-31 04:02:50.334488 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy bien trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "y servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 16}], "unmapped": []} b1f3b47b3465c35c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1174 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlbGNLMkxREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 La recomiendo sin duda!! 66 86 \N \N \N 2026-01-31 03:37:37.919671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "La recomiendo sin duda!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El personal es increíble. Son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy simpáticos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muchísimas gracias por todo!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 8284a26a2a627b5a auto 22c559a8-fabc-4916-9961-bcbd61225266 1175 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlbGNLMkxREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 El personal es increíble. Son muy profesionales 27 66 \N \N \N 2026-01-31 03:37:37.928308 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "La recomiendo sin duda!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El personal es increíble. Son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy simpáticos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muchísimas gracias por todo!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 8284a26a2a627b5a auto 22c559a8-fabc-4916-9961-bcbd61225266 1176 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlbGNLMkxREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 muy simpáticos 66 80 \N \N \N 2026-01-31 03:37:37.930231 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "La recomiendo sin duda!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El personal es increíble. Son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy simpáticos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muchísimas gracias por todo!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 8284a26a2a627b5a auto 22c559a8-fabc-4916-9961-bcbd61225266 1177 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlbGNLMkxREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchísimas gracias por todo! 80 104 \N \N \N 2026-01-31 03:37:37.932437 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "La recomiendo sin duda!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El personal es increíble. Son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy simpáticos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muchísimas gracias por todo!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 8284a26a2a627b5a auto 22c559a8-fabc-4916-9961-bcbd61225266 1178 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLUotSUNnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 La recepcionista es muy simpática y agradable. 0 42 \N \N \N 2026-01-31 03:37:42.985183 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "La recepcionista es muy simpática y agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Muy competentes y profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Volvería sin dudarlo.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 4256ebdec607f834 auto 22c559a8-fabc-4916-9961-bcbd61225266 1179 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLUotSUNnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Muy competentes y profesionales. 70 101 \N \N \N 2026-01-31 03:37:42.988574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "La recepcionista es muy simpática y agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Muy competentes y profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Volvería sin dudarlo.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 4256ebdec607f834 auto 22c559a8-fabc-4916-9961-bcbd61225266 4229 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT201T1ZIRTNXRzVqY2xKRFdEWk1NakpVVWtsdU9WRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.382812 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1180 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLUotSUNnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 Volvería sin dudarlo. 43 66 \N \N \N 2026-01-31 03:37:42.990722 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "La recepcionista es muy simpática y agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Muy competentes y profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Volvería sin dudarlo.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 4256ebdec607f834 auto 22c559a8-fabc-4916-9961-bcbd61225266 1181 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQyNS1xTW9BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 esta es la clínica ideal 56 78 \N \N \N 2026-01-31 03:37:46.986862 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "esta es la clínica ideal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Son todas unas profesionales de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "usan los mejores productos del mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 111}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "vuelvo a repetir cada vez que pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} eed4b72e4929ad27 auto 22c559a8-fabc-4916-9961-bcbd61225266 1214 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURtdHNtTmdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomendado 100% 90 104 \N \N \N 2026-01-31 03:38:19.399275 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Recomendado 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Un trato exquisito", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "resultado sorprendende", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8e7d4bafbaf32cef auto 22c559a8-fabc-4916-9961-bcbd61225266 1182 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQyNS1xTW9BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Son todas unas profesionales de 10 78 107 \N \N \N 2026-01-31 03:37:46.990076 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "esta es la clínica ideal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Son todas unas profesionales de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "usan los mejores productos del mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 111}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "vuelvo a repetir cada vez que pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} eed4b72e4929ad27 auto 22c559a8-fabc-4916-9961-bcbd61225266 1183 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQyNS1xTW9BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 usan los mejores productos del mercado 111 144 \N \N \N 2026-01-31 03:37:46.992293 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "esta es la clínica ideal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Son todas unas profesionales de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "usan los mejores productos del mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 111}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "vuelvo a repetir cada vez que pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} eed4b72e4929ad27 auto 22c559a8-fabc-4916-9961-bcbd61225266 1184 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQyNS1xTW9BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 vuelvo a repetir cada vez que pueda 145 174 \N \N \N 2026-01-31 03:37:46.994499 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "esta es la clínica ideal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Son todas unas profesionales de 10", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "usan los mejores productos del mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 111}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "vuelvo a repetir cada vez que pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} eed4b72e4929ad27 auto 22c559a8-fabc-4916-9961-bcbd61225266 4230 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xod2IxUnllR0pSWkZKQ1lqWndXR3B0U1ZOd1EwRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.385064 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1185 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNMdnRmdmVREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 encantada tanto con el trato 18 42 \N \N \N 2026-01-31 03:37:50.159903 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "encantada tanto con el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "buen trabajo que hizo con mis labios", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "volveré sin ninguna duda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 76}], "unmapped": []} a54ed2f0c9ce2d4f auto 22c559a8-fabc-4916-9961-bcbd61225266 172 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 The station is about 5 minutes from the airport, t... 0 50 \N \N \N 2026-01-31 02:05:47.018526 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1186 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNMdnRmdmVREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 buen trabajo que hizo con mis labios 45 75 \N \N \N 2026-01-31 03:37:50.161335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "encantada tanto con el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "buen trabajo que hizo con mis labios", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "volveré sin ninguna duda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 76}], "unmapped": []} a54ed2f0c9ce2d4f auto 22c559a8-fabc-4916-9961-bcbd61225266 1187 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNMdnRmdmVREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 volveré sin ninguna duda 76 97 \N \N \N 2026-01-31 03:37:50.162323 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "encantada tanto con el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "buen trabajo que hizo con mis labios", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "volveré sin ninguna duda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 76}], "unmapped": []} a54ed2f0c9ce2d4f auto 22c559a8-fabc-4916-9961-bcbd61225266 1215 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURtdHNtTmdnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Un trato exquisito 45 63 \N \N \N 2026-01-31 03:38:19.402714 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Recomendado 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Un trato exquisito", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "resultado sorprendende", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8e7d4bafbaf32cef auto 22c559a8-fabc-4916-9961-bcbd61225266 1188 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNweDkzdGJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Las chicas son encantadoras 66 92 \N \N \N 2026-01-31 03:37:52.669237 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Las chicas son encantadoras", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "no he sentido ningún tipo de dolor", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "he salido súper contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} f0f14f39995bb42a auto 22c559a8-fabc-4916-9961-bcbd61225266 1189 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNweDkzdGJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 no he sentido ningún tipo de dolor 43 66 \N \N \N 2026-01-31 03:37:52.672144 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Las chicas son encantadoras", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "no he sentido ningún tipo de dolor", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "he salido súper contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} f0f14f39995bb42a auto 22c559a8-fabc-4916-9961-bcbd61225266 1190 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNweDkzdGJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 he salido súper contenta 92 117 \N \N \N 2026-01-31 03:37:52.674197 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Las chicas son encantadoras", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "no he sentido ningún tipo de dolor", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "he salido súper contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} f0f14f39995bb42a auto 22c559a8-fabc-4916-9961-bcbd61225266 4231 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21sclYzQnpTa1pUTkdJeE5GY3hUV2RMZDFOa2JFRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.386069 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 173 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 I do not recommend at all. This company is a scam ... 0 50 {general} \N \N 2026-01-31 02:05:47.019624 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1191 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUM5LUxpWGJREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 son muy profesionales 85 107 \N \N \N 2026-01-31 03:37:55.722063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "el trato y los tratamientos a realizar de 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "estoy encantada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1c96417004a2e275 auto 22c559a8-fabc-4916-9961-bcbd61225266 1192 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUM5LUxpWGJREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato y los tratamientos a realizar de 10 36 70 \N \N \N 2026-01-31 03:37:55.724659 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "el trato y los tratamientos a realizar de 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "estoy encantada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1c96417004a2e275 auto 22c559a8-fabc-4916-9961-bcbd61225266 1193 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUM5LUxpWGJREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 estoy encantada 56 70 \N \N \N 2026-01-31 03:37:55.727891 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "son muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "el trato y los tratamientos a realizar de 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "estoy encantada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1c96417004a2e275 auto 22c559a8-fabc-4916-9961-bcbd61225266 1194 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaE5xemdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Muy buenas profesionales. 0 24 \N \N \N 2026-01-31 03:37:59.94695 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buenas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "explican el proceso con mucho detalle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "Recomiendo sin duda alguna.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Muy satisfecha con los resultados.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 70}], "unmapped": []} c9671fafcc875069 auto 22c559a8-fabc-4916-9961-bcbd61225266 1195 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaE5xemdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 explican el proceso con mucho detalle. 39 66 \N \N \N 2026-01-31 03:37:59.953411 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buenas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "explican el proceso con mucho detalle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "Recomiendo sin duda alguna.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Muy satisfecha con los resultados.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 70}], "unmapped": []} c9671fafcc875069 auto 22c559a8-fabc-4916-9961-bcbd61225266 1196 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaE5xemdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo sin duda alguna. 90 115 \N \N \N 2026-01-31 03:37:59.955262 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buenas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "explican el proceso con mucho detalle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "Recomiendo sin duda alguna.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Muy satisfecha con los resultados.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 70}], "unmapped": []} c9671fafcc875069 auto 22c559a8-fabc-4916-9961-bcbd61225266 1730 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURwMUwyaGlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Good vibes 10 19 \N \N \N 2026-01-31 03:47:07.407713 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 19, "evidence": "Good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "super close to the surfspot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Miguel is a good mate", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 61}], "unmapped": []} 1e5a37bdcdbea486 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1197 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaE5xemdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Muy satisfecha con los resultados. 70 97 \N \N \N 2026-01-31 03:37:59.957008 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buenas profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "explican el proceso con mucho detalle.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "Recomiendo sin duda alguna.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Muy satisfecha con los resultados.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 70}], "unmapped": []} c9671fafcc875069 auto 22c559a8-fabc-4916-9961-bcbd61225266 1198 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURkdk0zQnl3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 elegiría esa clinica mil beses mas 92 123 \N \N \N 2026-01-31 03:38:03.373309 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 123, "evidence": "elegiría esa clinica mil beses mas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Super encantada estoy con todas las trabajadoras", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "sobre todo el tratamiento que me e echo e salido súper súper encantada", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 3febf5addd77a182 auto 22c559a8-fabc-4916-9961-bcbd61225266 1199 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURkdk0zQnl3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Super encantada estoy con todas las trabajadoras 0 41 \N \N \N 2026-01-31 03:38:03.376051 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 123, "evidence": "elegiría esa clinica mil beses mas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Super encantada estoy con todas las trabajadoras", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "sobre todo el tratamiento que me e echo e salido súper súper encantada", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 3febf5addd77a182 auto 22c559a8-fabc-4916-9961-bcbd61225266 1200 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURkdk0zQnl3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 sobre todo el tratamiento que me e echo e salido súper súper encantada 41 92 \N \N \N 2026-01-31 03:38:03.378408 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 123, "evidence": "elegiría esa clinica mil beses mas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Super encantada estoy con todas las trabajadoras", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "sobre todo el tratamiento que me e echo e salido súper súper encantada", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 3febf5addd77a182 auto 22c559a8-fabc-4916-9961-bcbd61225266 1306 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNaX0llZXJBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Muy buena experiencia, muy buenos profesionales!! 0 43 \N \N \N 2026-01-31 03:39:45.232485 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Muy buena experiencia, muy buenos profesionales!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7e9535f60f715394 auto 22c559a8-fabc-4916-9961-bcbd61225266 1201 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VMbmtwWkRaeW96dzZRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 una atención maravillosa 36 56 \N \N \N 2026-01-31 03:38:06.166549 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "una atención maravillosa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "siempre me reciben con un café calientito y una sonrisa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excelente servicio totalmente personalizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1916a100f8f228ad auto 22c559a8-fabc-4916-9961-bcbd61225266 174 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Excellent, friendly and beyond helpful service at ... 0 50 \N \N \N 2026-01-31 02:05:47.020615 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 175 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Employeey were nice. We walked to the rental place... 0 50 \N \N \N 2026-01-31 02:05:47.021553 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1202 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VMbmtwWkRaeW96dzZRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 siempre me reciben con un café calientito y una sonrisa 56 88 \N \N \N 2026-01-31 03:38:06.170744 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "una atención maravillosa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "siempre me reciben con un café calientito y una sonrisa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excelente servicio totalmente personalizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1916a100f8f228ad auto 22c559a8-fabc-4916-9961-bcbd61225266 1203 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VMbmtwWkRaeW96dzZRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Excelente servicio totalmente personalizado 0 36 \N \N \N 2026-01-31 03:38:06.172848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "una atención maravillosa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "siempre me reciben con un café calientito y una sonrisa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excelente servicio totalmente personalizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1916a100f8f228ad auto 22c559a8-fabc-4916-9961-bcbd61225266 1204 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURwODdXSmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la atencion inmejorable 22 41 \N \N \N 2026-01-31 03:38:08.935357 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la atencion inmejorable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "te aconsejan siempre lo que te puede ir bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "he pagado un tratamiento pero tengo resultados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}], "unmapped": []} 99b0dbf7ecd7ed96 auto 22c559a8-fabc-4916-9961-bcbd61225266 1205 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURwODdXSmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 te aconsejan siempre lo que te puede ir bien 45 83 \N \N \N 2026-01-31 03:38:08.938074 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la atencion inmejorable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "te aconsejan siempre lo que te puede ir bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "he pagado un tratamiento pero tengo resultados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}], "unmapped": []} 99b0dbf7ecd7ed96 auto 22c559a8-fabc-4916-9961-bcbd61225266 1206 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURwODdXSmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 he pagado un tratamiento pero tengo resultados 87 118 \N \N \N 2026-01-31 03:38:08.940162 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la atencion inmejorable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "te aconsejan siempre lo que te puede ir bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "he pagado un tratamiento pero tengo resultados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}], "unmapped": []} 99b0dbf7ecd7ed96 auto 22c559a8-fabc-4916-9961-bcbd61225266 5674 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 cool staff 37 47 \N \N \N 2026-01-31 15:17:31.189351 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}], "unmapped": []} e286d8956000e86f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1207 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyeEl6a2NBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato recibido es magnífico 0 27 \N \N \N 2026-01-31 03:38:12.962585 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato recibido es magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "la técnico es maravillosa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "la directora un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 52}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda la mejor clínica médico estética de Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}], "unmapped": []} a13101a9a81feef0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1208 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyeEl6a2NBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la técnico es maravillosa 28 51 \N \N \N 2026-01-31 03:38:12.964715 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato recibido es magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "la técnico es maravillosa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "la directora un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 52}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda la mejor clínica médico estética de Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}], "unmapped": []} a13101a9a81feef0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1415 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.80 I do not care to have a further conversation with this establishment \N \N {"Customer communication"} \N \N 2026-01-31 03:41:55.600013 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "I would not recommend it to anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": [{"label": "Threatening behavior regarding reviews", "evidence": "they threaten customers who leave bad reviews", "confidence": 0.9}, {"label": "Customer communication", "evidence": "I do not care to have a further conversation with this establishment", "confidence": 0.8}]} 74a7069ed9a5c506 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1209 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyeEl6a2NBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la directora un encanto 52 75 \N \N \N 2026-01-31 03:38:12.966868 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato recibido es magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "la técnico es maravillosa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "la directora un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 52}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda la mejor clínica médico estética de Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}], "unmapped": []} a13101a9a81feef0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1210 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyeEl6a2NBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda la mejor clínica médico estética de Las Palmas 76 113 \N \N \N 2026-01-31 03:38:12.968593 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato recibido es magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "la técnico es maravillosa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "la directora un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 52}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Sin duda la mejor clínica médico estética de Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}], "unmapped": []} a13101a9a81feef0 auto 22c559a8-fabc-4916-9961-bcbd61225266 1211 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLUwzVFdnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo 100% 66 83 \N \N \N 2026-01-31 03:38:16.300467 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Muy profesionales y entregados", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Mimando y cuidando a todos sus pacientes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 8c66f683c1268861 auto 22c559a8-fabc-4916-9961-bcbd61225266 1212 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLUwzVFdnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Muy profesionales y entregados 24 50 \N \N \N 2026-01-31 03:38:16.303216 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Muy profesionales y entregados", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Mimando y cuidando a todos sus pacientes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 8c66f683c1268861 auto 22c559a8-fabc-4916-9961-bcbd61225266 1213 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLUwzVFdnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Mimando y cuidando a todos sus pacientes 51 78 \N \N \N 2026-01-31 03:38:16.304956 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Muy profesionales y entregados", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Mimando y cuidando a todos sus pacientes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 8c66f683c1268861 auto 22c559a8-fabc-4916-9961-bcbd61225266 1315 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkM3RmclZnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND - 3 3 \N 0.90 Sitio no recomendado 0 24 \N \N \N 2026-01-31 03:39:54.151556 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 24, "evidence": "Sitio no recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 46, "evidence": "baja profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 25}], "unmapped": []} 2691ad57508d012b auto 22c559a8-fabc-4916-9961-bcbd61225266 1217 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNld2FpVE5BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Seguiré llendo a Clinica Calme para cualquier tratamiento. 66 103 \N \N \N 2026-01-31 03:38:22.678876 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Seguiré llendo a Clinica Calme para cualquier tratamiento.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "El trato excelente.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Tratamiento corporal y muy contento. Todo genial.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} e47a83c28cb54368 auto 22c559a8-fabc-4916-9961-bcbd61225266 1218 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNld2FpVE5BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato excelente. 36 54 \N \N \N 2026-01-31 03:38:22.682905 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Seguiré llendo a Clinica Calme para cualquier tratamiento.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "El trato excelente.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Tratamiento corporal y muy contento. Todo genial.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} e47a83c28cb54368 auto 22c559a8-fabc-4916-9961-bcbd61225266 1219 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNld2FpVE5BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Tratamiento corporal y muy contento. Todo genial. 0 36 \N \N \N 2026-01-31 03:38:22.685257 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Seguiré llendo a Clinica Calme para cualquier tratamiento.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "El trato excelente.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Tratamiento corporal y muy contento. Todo genial.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} e47a83c28cb54368 auto 22c559a8-fabc-4916-9961-bcbd61225266 1220 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMteDdUWHlBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Muy recomendable!! 66 82 \N \N \N 2026-01-31 03:38:25.90111 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Muy recomendable!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "buenísimos resultados en la depilación láser", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} ee65252b1e91232d auto 22c559a8-fabc-4916-9961-bcbd61225266 1221 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMteDdUWHlBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Excelentes profesionales 0 22 \N \N \N 2026-01-31 03:38:25.904165 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Muy recomendable!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "buenísimos resultados en la depilación láser", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} ee65252b1e91232d auto 22c559a8-fabc-4916-9961-bcbd61225266 1222 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMteDdUWHlBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 buenísimos resultados en la depilación láser 38 70 \N \N \N 2026-01-31 03:38:25.906058 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "Muy recomendable!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "buenísimos resultados en la depilación láser", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} ee65252b1e91232d auto 22c559a8-fabc-4916-9961-bcbd61225266 1223 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato fue una maravilla 0 27 \N \N \N 2026-01-31 03:38:30.728716 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato fue una maravilla", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "te hacen sentir cómoda y en confianza", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "no tardó nada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda voy a volver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} 127e729cae276dd4 auto 22c559a8-fabc-4916-9961-bcbd61225266 1229 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHLXNlRzN3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 gran profesionalidad 56 78 \N \N \N 2026-01-31 03:38:33.212129 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "un trato magnífico, muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Encantada con la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}], "unmapped": []} b6703b4c2590406d auto 22c559a8-fabc-4916-9961-bcbd61225266 1224 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMFORT + 3 3 \N 0.90 te hacen sentir cómoda y en confianza 27 61 \N \N \N 2026-01-31 03:38:30.732467 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato fue una maravilla", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "te hacen sentir cómoda y en confianza", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "no tardó nada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda voy a volver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} 127e729cae276dd4 auto 22c559a8-fabc-4916-9961-bcbd61225266 1225 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 SPEED + 3 3 \N 0.90 no tardó nada 61 73 \N \N \N 2026-01-31 03:38:30.734999 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato fue una maravilla", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "te hacen sentir cómoda y en confianza", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "no tardó nada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda voy a volver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} 127e729cae276dd4 auto 22c559a8-fabc-4916-9961-bcbd61225266 176 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Very friendly and helpfull staff. Quick and correc... 0 50 \N \N \N 2026-01-31 02:05:47.022202 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 177 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 Null !!\nTerrible\nHorrible\nWaiting in the queue for... 0 50 \N \N \N 2026-01-31 02:05:47.022742 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1226 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 estoy súper contenta con el resultado 73 104 \N \N \N 2026-01-31 03:38:30.736933 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato fue una maravilla", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "te hacen sentir cómoda y en confianza", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "no tardó nada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda voy a volver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} 127e729cae276dd4 auto 22c559a8-fabc-4916-9961-bcbd61225266 1227 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 sin duda voy a volver 104 126 \N \N \N 2026-01-31 03:38:30.738758 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El trato fue una maravilla", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "te hacen sentir cómoda y en confianza", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "no tardó nada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "estoy súper contenta con el resultado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda voy a volver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 104}], "unmapped": []} 127e729cae276dd4 auto 22c559a8-fabc-4916-9961-bcbd61225266 1228 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHLXNlRzN3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 un trato magnífico, muy agradable 24 54 \N \N \N 2026-01-31 03:38:33.208538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "un trato magnífico, muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Encantada con la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}], "unmapped": []} b6703b4c2590406d auto 22c559a8-fabc-4916-9961-bcbd61225266 4886 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I can recommend. 41 56 \N \N \N 2026-01-31 15:01:06.483617 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "I can recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "everything perfect and easy.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} c2e2cf4eb0b8da5b en 07c01d3a-3443-4031-910c-7b6feba2c100 1230 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHLXNlRzN3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Encantada con la clínica 80 104 \N \N \N 2026-01-31 03:38:33.214249 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "un trato magnífico, muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Encantada con la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}], "unmapped": []} b6703b4c2590406d auto 22c559a8-fabc-4916-9961-bcbd61225266 178 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 The girl with tatoo in her arms with blond hair t... 0 50 {general} \N \N 2026-01-31 02:05:47.023373 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1231 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXaVlQSGx3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 muy recomendado 66 80 \N \N \N 2026-01-31 03:38:37.761486 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "precios imbatibles en toda la zona de la isla", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "iluminación interior de tono fresco y agradable, de elementos elegantes con un tono a jardín zen", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Trato profesional, coherente y razonable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 28fabf3cda163874 auto 22c559a8-fabc-4916-9961-bcbd61225266 1232 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXaVlQSGx3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 precios imbatibles en toda la zona de la isla 36 76 \N \N \N 2026-01-31 03:38:37.763657 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "precios imbatibles en toda la zona de la isla", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "iluminación interior de tono fresco y agradable, de elementos elegantes con un tono a jardín zen", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Trato profesional, coherente y razonable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 28fabf3cda163874 auto 22c559a8-fabc-4916-9961-bcbd61225266 1233 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXaVlQSGx3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 iluminación interior de tono fresco y agradable, de elementos elegantes con un tono a jardín zen 80 143 \N \N \N 2026-01-31 03:38:37.764601 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "precios imbatibles en toda la zona de la isla", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "iluminación interior de tono fresco y agradable, de elementos elegantes con un tono a jardín zen", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Trato profesional, coherente y razonable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 28fabf3cda163874 auto 22c559a8-fabc-4916-9961-bcbd61225266 1234 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXaVlQSGx3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Trato profesional, coherente y razonable 0 37 \N \N \N 2026-01-31 03:38:37.765557 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "precios imbatibles en toda la zona de la isla", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "iluminación interior de tono fresco y agradable, de elementos elegantes con un tono a jardín zen", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Trato profesional, coherente y razonable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 28fabf3cda163874 auto 22c559a8-fabc-4916-9961-bcbd61225266 1235 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURPOGEzOHNBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la dra es súper atenta y detallista 36 66 \N \N \N 2026-01-31 03:38:40.543553 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "la dra es súper atenta y detallista", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "sin duda la mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "el resultado de los labios", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 1ffb1bf7be930d5c auto 22c559a8-fabc-4916-9961-bcbd61225266 1236 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURPOGEzOHNBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda la mejor 70 87 \N \N \N 2026-01-31 03:38:40.547175 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "la dra es súper atenta y detallista", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "sin duda la mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "el resultado de los labios", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 1ffb1bf7be930d5c auto 22c559a8-fabc-4916-9961-bcbd61225266 1237 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURPOGEzOHNBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el resultado de los labios 30 54 \N \N \N 2026-01-31 03:38:40.549743 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "la dra es súper atenta y detallista", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "sin duda la mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "el resultado de los labios", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 1ffb1bf7be930d5c auto 22c559a8-fabc-4916-9961-bcbd61225266 1238 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHbkppb1FnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 me gustó mucho el ambiente de la clínica 16 45 \N \N \N 2026-01-31 03:38:43.757108 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "me gustó mucho el ambiente de la clínica", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "por recomendación de un familiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "los productos de calidad que ofrecen", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía con el paciente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 77}], "unmapped": []} 96609338acd44922 auto 22c559a8-fabc-4916-9961-bcbd61225266 1239 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHbkppb1FnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 por recomendación de un familiar 10 34 \N \N \N 2026-01-31 03:38:43.760777 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "me gustó mucho el ambiente de la clínica", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "por recomendación de un familiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "los productos de calidad que ofrecen", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía con el paciente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 77}], "unmapped": []} 96609338acd44922 auto 22c559a8-fabc-4916-9961-bcbd61225266 1240 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHbkppb1FnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 los productos de calidad que ofrecen 46 76 \N \N \N 2026-01-31 03:38:43.763232 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "me gustó mucho el ambiente de la clínica", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "por recomendación de un familiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "los productos de calidad que ofrecen", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía con el paciente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 77}], "unmapped": []} 96609338acd44922 auto 22c559a8-fabc-4916-9961-bcbd61225266 1241 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHbkppb1FnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la cercanía con el paciente 77 103 \N \N \N 2026-01-31 03:38:43.765238 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "me gustó mucho el ambiente de la clínica", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "por recomendación de un familiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "los productos de calidad que ofrecen", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la cercanía con el paciente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 77}], "unmapped": []} 96609338acd44922 auto 22c559a8-fabc-4916-9961-bcbd61225266 1758 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURoMi1TV1NnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:47:35.353088 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 179 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Excellent service!\n\nWhen we arrived we got a bit l... 0 50 \N \N \N 2026-01-31 02:05:47.02386 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1242 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURwcS1MNjBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 sus tratamientos son efectivos 20 45 \N \N \N 2026-01-31 03:38:46.962203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "sus tratamientos son efectivos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "seguros", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "con un trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Estoy muy contenta de haberla encontrado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 33d1feb9f09c0426 auto 22c559a8-fabc-4916-9961-bcbd61225266 1243 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURwcS1MNjBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 SAFETY + 3 3 \N 0.90 seguros 47 54 \N \N \N 2026-01-31 03:38:46.964368 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "sus tratamientos son efectivos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "seguros", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "con un trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Estoy muy contenta de haberla encontrado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 33d1feb9f09c0426 auto 22c559a8-fabc-4916-9961-bcbd61225266 1244 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURwcS1MNjBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 con un trato maravilloso 56 76 \N \N \N 2026-01-31 03:38:46.9663 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "sus tratamientos son efectivos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "seguros", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "con un trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Estoy muy contenta de haberla encontrado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 33d1feb9f09c0426 auto 22c559a8-fabc-4916-9961-bcbd61225266 1245 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURwcS1MNjBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Estoy muy contenta de haberla encontrado 78 113 \N \N \N 2026-01-31 03:38:46.967422 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "sus tratamientos son efectivos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "seguros", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "con un trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Estoy muy contenta de haberla encontrado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 33d1feb9f09c0426 auto 22c559a8-fabc-4916-9961-bcbd61225266 1246 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlOTZyelFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato ameno y muy profecional 30 56 \N \N \N 2026-01-31 03:38:49.66554 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "trato ameno y muy profecional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "preocupándose de mi caso en todo momento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 86}], "unmapped": []} ea246753ef39a9a9 auto 22c559a8-fabc-4916-9961-bcbd61225266 1247 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlOTZyelFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 preocupándose de mi caso en todo momento 57 85 \N \N \N 2026-01-31 03:38:49.672882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "trato ameno y muy profecional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "preocupándose de mi caso en todo momento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 86}], "unmapped": []} ea246753ef39a9a9 auto 22c559a8-fabc-4916-9961-bcbd61225266 1462 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 1 2 \N 0.90 da schläft jemand der schnarcht 36 66 \N \N \N 2026-01-31 03:42:39.210168 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "Zimmer 6 stinkt nach ekelhaftem käse", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "da schläft jemand der schnarcht", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 59b9c2d1edf00463 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1248 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNlOTZyelFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 la recomiendo al 100 % 86 106 \N \N \N 2026-01-31 03:38:49.675774 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "trato ameno y muy profecional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "preocupándose de mi caso en todo momento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 86}], "unmapped": []} ea246753ef39a9a9 auto 22c559a8-fabc-4916-9961-bcbd61225266 1249 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNaX051TFh3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 desde la atención hasta todo la información que me dieron 43 83 \N \N \N 2026-01-31 03:38:52.330446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "desde la atención hasta todo la información que me dieron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "ha sido una experiencia increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "muchisisimas gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 658512d3cccdd70f auto 22c559a8-fabc-4916-9961-bcbd61225266 1250 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNaX051TFh3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 ha sido una experiencia increíble 37 61 \N \N \N 2026-01-31 03:38:52.333927 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "desde la atención hasta todo la información que me dieron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "ha sido una experiencia increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "muchisisimas gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 658512d3cccdd70f auto 22c559a8-fabc-4916-9961-bcbd61225266 1251 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNaX051TFh3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 muchisisimas gracias 85 105 \N \N \N 2026-01-31 03:38:52.336246 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "desde la atención hasta todo la información que me dieron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "ha sido una experiencia increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "muchisisimas gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 658512d3cccdd70f auto 22c559a8-fabc-4916-9961-bcbd61225266 1252 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdElQQTFBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Trato familiar, pensaba que era una clínica más, pero te hacen sentir como en casa 0 83 \N \N \N 2026-01-31 03:38:54.609893 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Trato familiar, pensaba que era una clínica más, pero te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "muy contenta con el resultado y con sus recomendaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} a59d512a4e1c40e7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1253 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdElQQTFBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 muy contenta con el resultado y con sus recomendaciones 83 116 \N \N \N 2026-01-31 03:38:54.612762 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Trato familiar, pensaba que era una clínica más, pero te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "muy contenta con el resultado y con sus recomendaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} a59d512a4e1c40e7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1254 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURld2NyQWh3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Me recomendaron esta clínica para un tratamiento de depilación láser 0 61 \N \N \N 2026-01-31 03:38:56.867525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Me recomendaron esta clínica para un tratamiento de depilación láser", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Trato excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} 4f3fb71f16f232c4 auto 22c559a8-fabc-4916-9961-bcbd61225266 2822 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURjMk9PWTN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 04:06:23.883798 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.5}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1261 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGRhazZnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 No dudéis en poneros en sus manos. 56 82 \N \N \N 2026-01-31 03:39:05.900617 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "No dudéis en poneros en sus manos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "Gracias!!!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Cuando una persona se dedica por vocación a lo que hace, se nota y lo transmite con luz propia.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea62c299d5b12ac7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1262 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGRhazZnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Gracias!!! 82 89 \N \N \N 2026-01-31 03:39:05.904213 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "No dudéis en poneros en sus manos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "Gracias!!!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Cuando una persona se dedica por vocación a lo que hace, se nota y lo transmite con luz propia.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea62c299d5b12ac7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1263 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGRhazZnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Cuando una persona se dedica por vocación a lo que hace, se nota y lo transmite con luz propia. 0 75 \N \N \N 2026-01-31 03:39:05.906442 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "No dudéis en poneros en sus manos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "Gracias!!!", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Cuando una persona se dedica por vocación a lo que hace, se nota y lo transmite con luz propia.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea62c299d5b12ac7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1264 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkaGUyQVJREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 su equipo demostró una profesionalidad excepcional 36 78 \N \N \N 2026-01-31 03:39:07.20969 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "su equipo demostró una profesionalidad excepcional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}], "unmapped": []} 45a2c877df6f4ef2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1265 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURaemZUZm93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Muy recomendable. 45 62 \N \N \N 2026-01-31 03:39:09.199579 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 62, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "trato y profesionalidad por parte de todo el personal de 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}], "unmapped": []} dc1b6edd3effb9d7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1266 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURaemZUZm93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato y profesionalidad por parte de todo el personal de 10 20 56 \N \N \N 2026-01-31 03:39:09.202856 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 62, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "trato y profesionalidad por parte de todo el personal de 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}], "unmapped": []} dc1b6edd3effb9d7 auto 22c559a8-fabc-4916-9961-bcbd61225266 1267 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURSLXZYYXVRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Muy recomendado 30 45 \N \N \N 2026-01-31 03:39:11.276801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "grandes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Espectacular experiencia en la clínica calme", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e39fcee72b722a2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1268 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURSLXZYYXVRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 grandes profesionales 46 65 \N \N \N 2026-01-31 03:39:11.279449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "grandes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Espectacular experiencia en la clínica calme", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e39fcee72b722a2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1269 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURSLXZYYXVRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 Espectacular experiencia en la clínica calme 0 30 \N \N \N 2026-01-31 03:39:11.281235 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "grandes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Espectacular experiencia en la clínica calme", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e39fcee72b722a2 auto 22c559a8-fabc-4916-9961-bcbd61225266 1270 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtaS1uT0d3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato por parte de la esteticien es inmejorable 0 43 \N \N \N 2026-01-31 03:39:13.112036 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "El trato por parte de la esteticien es inmejorable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Ofelia me encanta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}], "unmapped": []} 689556ac984f7a69 auto 22c559a8-fabc-4916-9961-bcbd61225266 1271 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMtaS1uT0d3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Ofelia me encanta 45 63 \N \N \N 2026-01-31 03:39:13.115785 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "El trato por parte de la esteticien es inmejorable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Ofelia me encanta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}], "unmapped": []} 689556ac984f7a69 auto 22c559a8-fabc-4916-9961-bcbd61225266 1272 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyby1teU1BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Clínica totalmente recomendable 56 83 \N \N \N 2026-01-31 03:39:16.040334 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Clínica totalmente recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "atención excepcional", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal muy cualificado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} d419b7a2529f225f auto 22c559a8-fabc-4916-9961-bcbd61225266 1273 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyby1teU1BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 atención excepcional 22 43 \N \N \N 2026-01-31 03:39:16.043484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Clínica totalmente recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "atención excepcional", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal muy cualificado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} d419b7a2529f225f auto 22c559a8-fabc-4916-9961-bcbd61225266 1274 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyby1teU1BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 personal muy cualificado 44 66 \N \N \N 2026-01-31 03:39:16.045865 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Clínica totalmente recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "atención excepcional", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal muy cualificado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} d419b7a2529f225f auto 22c559a8-fabc-4916-9961-bcbd61225266 1275 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMyby1teU1BEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Servicio muy profesional 0 24 \N \N \N 2026-01-31 03:39:16.047584 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Clínica totalmente recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "atención excepcional", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal muy cualificado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} d419b7a2529f225f auto 22c559a8-fabc-4916-9961-bcbd61225266 1276 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtdE5mTjFBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 volveremos gracias por la atención recibida 40 73 \N \N \N 2026-01-31 03:39:18.252763 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "volveremos gracias por la atención recibida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "excelente trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 19}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 33}], "unmapped": []} 69cc44662c7cd173 auto 22c559a8-fabc-4916-9961-bcbd61225266 1277 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtdE5mTjFBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 excelente trato 19 32 \N \N \N 2026-01-31 03:39:18.256543 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "volveremos gracias por la atención recibida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "excelente trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 19}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 33}], "unmapped": []} 69cc44662c7cd173 auto 22c559a8-fabc-4916-9961-bcbd61225266 1278 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtdE5mTjFBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 excelentes profesionales 33 54 \N \N \N 2026-01-31 03:39:18.258372 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "volveremos gracias por la atención recibida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "excelente trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 19}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 33}], "unmapped": []} 69cc44662c7cd173 auto 22c559a8-fabc-4916-9961-bcbd61225266 1279 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VObm8xdi1Xazh1VzdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la atención de las chicas es increíble 18 48 \N \N \N 2026-01-31 03:39:19.858647 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "la atención de las chicas es increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Excelente servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} fbf821db0c48c2e3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1280 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VObm8xdi1Xazh1VzdBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Excelente servicio 0 17 \N \N \N 2026-01-31 03:39:19.8609 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "la atención de las chicas es increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Excelente servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} fbf821db0c48c2e3 auto 22c559a8-fabc-4916-9961-bcbd61225266 1281 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQtanZXQ3pnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Muy buen trato personal muy cercanos 0 36 \N \N \N 2026-01-31 03:39:21.825704 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy buen trato personal muy cercanos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "el tratamiento me va de mil maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 7d381b92e014f064 auto 22c559a8-fabc-4916-9961-bcbd61225266 1282 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQtanZXQ3pnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el tratamiento me va de mil maravilla 37 66 \N \N \N 2026-01-31 03:39:21.829018 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy buen trato personal muy cercanos", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "el tratamiento me va de mil maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 7d381b92e014f064 auto 22c559a8-fabc-4916-9961-bcbd61225266 180 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 One of the best rental car experiences I've had. G... 0 50 \N \N \N 2026-01-31 02:05:47.024605 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 181 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Car pick up was seamless and Carmen from the Gran ... 0 50 \N \N \N 2026-01-31 02:05:47.025747 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1283 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXc2R1eHlRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato muy cercano y amigable 27 56 \N \N \N 2026-01-31 03:39:24.284826 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "el trato muy cercano y amigable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Increíbles, muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "No puedes estar en mejores manos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} c85dded4f7c7b291 auto 22c559a8-fabc-4916-9961-bcbd61225266 1284 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXc2R1eHlRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Increíbles, muy profesionales 0 27 \N \N \N 2026-01-31 03:39:24.288234 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "el trato muy cercano y amigable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Increíbles, muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "No puedes estar en mejores manos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} c85dded4f7c7b291 auto 22c559a8-fabc-4916-9961-bcbd61225266 1285 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURXc2R1eHlRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 No puedes estar en mejores manos 56 84 \N \N \N 2026-01-31 03:39:24.290919 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "el trato muy cercano y amigable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Increíbles, muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "No puedes estar en mejores manos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} c85dded4f7c7b291 auto 22c559a8-fabc-4916-9961-bcbd61225266 1286 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURla3Y3ZGxBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Trato personalizado, cuidan todos los detalles 0 56 \N \N \N 2026-01-31 03:39:26.102353 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Trato personalizado, cuidan todos los detalles", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "grandes profesionales que te aconsejan la tecnica adecuada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1168118f850de254 auto 22c559a8-fabc-4916-9961-bcbd61225266 1287 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURla3Y3ZGxBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 grandes profesionales que te aconsejan la tecnica adecuada 56 100 \N \N \N 2026-01-31 03:39:26.105348 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Trato personalizado, cuidan todos los detalles", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "grandes profesionales que te aconsejan la tecnica adecuada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1168118f850de254 auto 22c559a8-fabc-4916-9961-bcbd61225266 1288 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHMnEtUUdnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Personal altamente cualificado y muy amable. 24 61 \N \N \N 2026-01-31 03:39:27.71738 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Personal altamente cualificado y muy amable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Clínica muy acogedora.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} f59deb0312b53584 auto 22c559a8-fabc-4916-9961-bcbd61225266 1289 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHMnEtUUdnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 Clínica muy acogedora. 0 24 \N \N \N 2026-01-31 03:39:27.718558 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Personal altamente cualificado y muy amable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Clínica muy acogedora.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} f59deb0312b53584 auto 22c559a8-fabc-4916-9961-bcbd61225266 1290 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxeXAtRm5RRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un EQUIPO MARAVILLOSO!! 0 24 \N \N \N 2026-01-31 03:39:30.138496 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un EQUIPO MARAVILLOSO!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "Y el resultado increíble.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}], "unmapped": []} a0131a5b9e864e20 auto 22c559a8-fabc-4916-9961-bcbd61225266 1291 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxeXAtRm5RRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Y el resultado increíble. 25 46 \N \N \N 2026-01-31 03:39:30.139938 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un EQUIPO MARAVILLOSO!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "Y el resultado increíble.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}], "unmapped": []} a0131a5b9e864e20 auto 22c559a8-fabc-4916-9961-bcbd61225266 1292 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxeXAtRm5RRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 10/10 47 52 \N \N \N 2026-01-31 03:39:30.140959 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un EQUIPO MARAVILLOSO!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "Y el resultado increíble.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}], "unmapped": []} a0131a5b9e864e20 auto 22c559a8-fabc-4916-9961-bcbd61225266 1293 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5bXJlcWtBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 son lo mejor 12 22 \N \N \N 2026-01-31 03:39:32.122854 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "son lo mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "son un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "maravilloso el tratamiento", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 01fca50e312f5175 auto 22c559a8-fabc-4916-9961-bcbd61225266 1294 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5bXJlcWtBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 son un encanto 24 36 \N \N \N 2026-01-31 03:39:32.125346 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "son lo mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "son un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "maravilloso el tratamiento", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 01fca50e312f5175 auto 22c559a8-fabc-4916-9961-bcbd61225266 1295 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5bXJlcWtBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 maravilloso el tratamiento 41 66 \N \N \N 2026-01-31 03:39:32.127535 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "son lo mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "son un encanto", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "maravilloso el tratamiento", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} 01fca50e312f5175 auto 22c559a8-fabc-4916-9961-bcbd61225266 1296 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdEpfbmlBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Clínica recomendable 100% 0 27 \N \N \N 2026-01-31 03:39:34.449449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Clínica recomendable 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "por su trato cercano", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "por su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}], "unmapped": []} 0b14fcc56bd7f504 auto 22c559a8-fabc-4916-9961-bcbd61225266 182 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Strongly suggest to choose this company . Very rel... 0 50 \N \N \N 2026-01-31 02:05:47.027875 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1297 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdEpfbmlBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 por su trato cercano 28 45 \N \N \N 2026-01-31 03:39:34.452449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Clínica recomendable 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "por su trato cercano", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "por su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}], "unmapped": []} 0b14fcc56bd7f504 auto 22c559a8-fabc-4916-9961-bcbd61225266 1298 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHdEpfbmlBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 por su profesionalidad 46 66 \N \N \N 2026-01-31 03:39:34.454378 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Clínica recomendable 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "por su trato cercano", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "por su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}], "unmapped": []} 0b14fcc56bd7f504 auto 22c559a8-fabc-4916-9961-bcbd61225266 1299 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNqLTdXNkxREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomendable al 100% 30 49 \N \N \N 2026-01-31 03:39:36.368949 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "Recomendable al 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Una maravilla de trabajo", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b9c23682b0998180 auto 22c559a8-fabc-4916-9961-bcbd61225266 1307 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQybDRydmZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomendado. 36 54 \N \N \N 2026-01-31 03:39:47.58339 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "100% recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "resultados increíbles.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Trato magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 230b4c9e7e5d34d6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1308 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQybDRydmZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 resultados increíbles. 20 39 \N \N \N 2026-01-31 03:39:47.586063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "100% recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "resultados increíbles.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Trato magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 230b4c9e7e5d34d6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1309 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQybDRydmZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Trato magnífico 0 15 \N \N \N 2026-01-31 03:39:47.588621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "100% recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "resultados increíbles.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Trato magnífico", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 230b4c9e7e5d34d6 auto 22c559a8-fabc-4916-9961-bcbd61225266 1310 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNld2FITnFBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Excelente trabajo y buenas promociones. 0 39 \N \N \N 2026-01-31 03:39:48.773995 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Excelente trabajo y buenas promociones.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} cdf23f587d0263c9 auto 22c559a8-fabc-4916-9961-bcbd61225266 1311 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQtbnE2dVRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Encantada con mi tratamiento! 0 30 \N \N \N 2026-01-31 03:39:51.256754 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con mi tratamiento!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "Trato exquisito…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "Repetiré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 50}], "unmapped": []} 2b4c563f300d2d3b auto 22c559a8-fabc-4916-9961-bcbd61225266 1312 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQtbnE2dVRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Trato exquisito… 31 49 \N \N \N 2026-01-31 03:39:51.262042 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con mi tratamiento!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "Trato exquisito…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "Repetiré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 50}], "unmapped": []} 2b4c563f300d2d3b auto 22c559a8-fabc-4916-9961-bcbd61225266 1313 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQtbnE2dVRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 Repetiré! 50 58 \N \N \N 2026-01-31 03:39:51.264755 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con mi tratamiento!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 49, "evidence": "Trato exquisito…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "Repetiré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 50}], "unmapped": []} 2b4c563f300d2d3b auto 22c559a8-fabc-4916-9961-bcbd61225266 1314 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURoc0xHYjZ3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 MUY BUEN TRATO, MUCHA AMABILIDAD. 0 36 \N \N \N 2026-01-31 03:39:52.346744 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "MUY BUEN TRATO, MUCHA AMABILIDAD.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 402ddfc297a4568d auto 22c559a8-fabc-4916-9961-bcbd61225266 4232 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2pnNGVtOTFMVEZZTUZabFgzaHlNR1p4WjNwSk5GRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.387583 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1336 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 the bunks in the room where I was accommodated, were old and shabby 82 132 \N \N \N 2026-01-31 03:40:24.965248 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1337 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 all the humidity and dust come to your lungs 205 238 \N \N \N 2026-01-31 03:40:24.969661 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 183 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Plane got delayed, they don’t care to manage shutt... 0 50 {general} \N \N 2026-01-31 02:05:47.028936 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1338 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS - 2 3 \N 0.90 He didn't care if I am okay and where I am going to spend the night 309 358 \N \N \N 2026-01-31 03:40:24.972353 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1339 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 2 3 \N 0.90 blaming me for expressing my opinion here on Google and threatening me 487 533 \N \N \N 2026-01-31 03:40:24.974291 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1346 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 J’ai déjà hâte d’y retourner 116 138 \N \N \N 2026-01-31 03:40:30.49826 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "son équipe sympa et accueillante", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Parfaitement située à 2 pas de la plage, des cafés et commerces", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "J’ai déjà hâte d’y retourner", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}], "unmapped": []} c19f16f18456796b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1340 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.80 I seriously think it's overrated \N \N {"general dissatisfaction"} \N \N 2026-01-31 03:40:24.976194 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5742 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.90 Weak drinks 24 34 \N \N \N 2026-01-31 15:18:44.8399 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "rude DJs with bad music no one enjoys", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 34, "evidence": "Weak drinks", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 24}], "unmapped": [{"label": "Overall sentiment", "evidence": "this place sucks", "confidence": 0.9}, {"label": "Recommendation", "evidence": "worth exploring in Vilnius", "confidence": 0.7}]} 8a52e93156c7e433 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 184 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Efficient service, good daily rate.\nWould definite... 0 50 \N \N \N 2026-01-31 02:05:47.029944 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1341 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.80 I've got sick after one night there \N \N {"health concern"} \N \N 2026-01-31 03:40:24.978021 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1342 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 Don't go there! \N \N {warning} \N \N 2026-01-31 03:40:24.979677 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "all the humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "general dissatisfaction", "evidence": "I seriously think it's overrated", "confidence": 0.8}, {"label": "health concern", "evidence": "I've got sick after one night there", "confidence": 0.8}, {"label": "warning", "evidence": "Don't go there!", "confidence": 0.9}]} a50dd57839c8c7a8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1343 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GcE1VVXdkek42Um5CUFUzWm5iREpmUVVNNGNtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 3 3 \N 0.90 Desepcionante 0 12 \N \N \N 2026-01-31 03:40:26.507092 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 12, "evidence": "Desepcionante", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} b9e2a69ec81fbd34 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1344 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 son équipe sympa et accueillante 56 83 \N \N \N 2026-01-31 03:40:30.49392 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "son équipe sympa et accueillante", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Parfaitement située à 2 pas de la plage, des cafés et commerces", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "J’ai déjà hâte d’y retourner", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}], "unmapped": []} c19f16f18456796b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1345 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 Parfaitement située à 2 pas de la plage, des cafés et commerces 0 56 \N \N \N 2026-01-31 03:40:30.496261 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "son équipe sympa et accueillante", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Parfaitement située à 2 pas de la plage, des cafés et commerces", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "J’ai déjà hâte d’y retourner", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 116}], "unmapped": []} c19f16f18456796b auto 56bb22c1-8631-4285-b549-8fa7c9944462 5675 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 good dance floor 48 62 \N \N \N 2026-01-31 15:17:31.191006 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}], "unmapped": []} e286d8956000e86f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1347 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 2 \N 0.90 great location 10 25 \N \N \N 2026-01-31 03:40:36.729867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "kind staff", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "beds weren't very clean", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "it doesn't feel super safe there", "intensity": 2, "primitive": "SAFETY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "mixed", "end_char": 139, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1348 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 2 2 \N 0.90 kind staff 41 51 \N \N \N 2026-01-31 03:40:36.733885 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "kind staff", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "beds weren't very clean", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "it doesn't feel super safe there", "intensity": 2, "primitive": "SAFETY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "mixed", "end_char": 139, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1349 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 1 2 \N 0.80 beds weren't very clean 157 179 \N \N \N 2026-01-31 03:40:36.736498 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "kind staff", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "beds weren't very clean", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "it doesn't feel super safe there", "intensity": 2, "primitive": "SAFETY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "mixed", "end_char": 139, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1350 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 1 2 \N 0.80 it doesn't feel super safe there 135 162 \N \N \N 2026-01-31 03:40:36.73901 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "kind staff", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "beds weren't very clean", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "it doesn't feel super safe there", "intensity": 2, "primitive": "SAFETY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "mixed", "end_char": 139, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1351 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED ± 1 2 \N 0.60 the photos look nothing like the hostel 107 139 \N \N \N 2026-01-31 03:40:36.741142 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "kind staff", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 179, "evidence": "beds weren't very clean", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "it doesn't feel super safe there", "intensity": 2, "primitive": "SAFETY", "confidence": 0.8, "start_char": 135}, {"details": null, "valence": "mixed", "end_char": 139, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1764 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNod1lYNEhREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 super friendly, welcoming and helpful staff 36 76 \N \N \N 2026-01-31 03:47:42.247796 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "super friendly, welcoming and helpful staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}], "unmapped": []} 7261bcd7b030def2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 185 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Car rent with shuttle from airport, but very close... 0 50 \N \N \N 2026-01-31 02:05:47.03093 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1352 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I will definitely book to stay longer on my next trip to Gran Canaria. 66 107 \N \N \N 2026-01-31 03:40:43.066503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 39bfd1abe9970a5a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1353 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 It has a sense of community, and everyone seems very laidback and easygoing. 276 319 \N \N \N 2026-01-31 03:40:43.070169 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 39bfd1abe9970a5a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1354 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 The rooms were comfortable and there are lockers for your belongings. 197 241 \N \N \N 2026-01-31 03:40:43.072177 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 39bfd1abe9970a5a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1355 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Everyone is very friendly and I was made to feel very welcome by both the staff and other guests. 118 179 \N \N \N 2026-01-31 03:40:43.073944 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 39bfd1abe9970a5a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1356 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El ambiente es agradable, relajado y acogedor 90 134 \N \N \N 2026-01-31 03:40:46.969 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "El ambiente es agradable, relajado y acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "un lugar al que volvería y que recomiendo totalmente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 179}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 8c3bb4080f37c799 auto 56bb22c1-8631-4285-b549-8fa7c9944462 186 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 We had to wait a while for the shuttle from the ai... 0 50 \N \N \N 2026-01-31 02:05:47.03161 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 187 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Excellent service , very quick and efficient b... 0 50 \N \N \N 2026-01-31 02:05:47.03247 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 4233 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21wRlZEZFNXbmh0YkhkSmVqbDBVRGg2VUZKR1gwRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.391879 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1357 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 El personal fue lo máximo: siempre atentos, amables y con muy buena energía 134 179 \N \N \N 2026-01-31 03:40:46.972144 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "El ambiente es agradable, relajado y acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "un lugar al que volvería y que recomiendo totalmente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 179}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 8c3bb4080f37c799 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1358 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 un lugar al que volvería y que recomiendo totalmente 179 215 \N \N \N 2026-01-31 03:40:46.974147 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "El ambiente es agradable, relajado y acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "un lugar al que volvería y que recomiendo totalmente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 179}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 8c3bb4080f37c799 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1359 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca 56 90 \N \N \N 2026-01-31 03:40:46.975563 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "El ambiente es agradable, relajado y acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "un lugar al que volvería y que recomiendo totalmente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 179}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 8c3bb4080f37c799 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1360 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 The staff is very kind and helpful 54 83 \N \N \N 2026-01-31 03:40:51.707679 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 220}], "unmapped": []} d514f3d74a71212c auto 56bb22c1-8631-4285-b549-8fa7c9944462 188 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Carlos in Gran Canaria was very helpful, didn't tr... 0 50 \N \N \N 2026-01-31 02:05:47.033376 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1361 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot 97 164 \N \N \N 2026-01-31 03:40:51.711555 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 220}], "unmapped": []} d514f3d74a71212c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1362 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 The beds are comfy and I also appreciate the fact that there are curtains 166 218 \N \N \N 2026-01-31 03:40:51.71344 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 220}], "unmapped": []} d514f3d74a71212c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1363 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I always come back here whenever I'm in Las Palmas 0 45 \N \N \N 2026-01-31 03:40:51.715191 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 220}], "unmapped": []} d514f3d74a71212c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1364 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 On weekends they always organize something to go out all together and have some fun 220 284 \N \N \N 2026-01-31 03:40:51.717265 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 220}], "unmapped": []} d514f3d74a71212c auto 56bb22c1-8631-4285-b549-8fa7c9944462 189 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Very professional, kind, effective and entertainin... 0 50 \N \N \N 2026-01-31 02:05:47.034032 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1365 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Very nice and cozy hostel 0 27 \N \N \N 2026-01-31 03:40:56.061361 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "all the staff is very helpful and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Big common spaces for enjoying the company of other travelers", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 87}], "unmapped": []} 57a5970cff2d38a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1371 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 si buscas un sitio tranquilo y centrico este es tu sitio 56 91 \N \N \N 2026-01-31 03:41:00.253211 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "el staff es super Amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "si buscas un sitio tranquilo y centrico este es tu sitio", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "te ayudara en todo lo que necesites", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 61}], "unmapped": []} 769b52d0044e9fef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1366 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 all the staff is very helpful and friendly 28 61 \N \N \N 2026-01-31 03:40:56.066386 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "all the staff is very helpful and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Big common spaces for enjoying the company of other travelers", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 87}], "unmapped": []} 57a5970cff2d38a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1367 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Always very clean and tidy 62 86 \N \N \N 2026-01-31 03:40:56.068546 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "all the staff is very helpful and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Big common spaces for enjoying the company of other travelers", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 87}], "unmapped": []} 57a5970cff2d38a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1368 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 big beds with comfy mattresses 157 185 \N \N \N 2026-01-31 03:40:56.070267 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "all the staff is very helpful and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Big common spaces for enjoying the company of other travelers", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 87}], "unmapped": []} 57a5970cff2d38a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1369 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Big common spaces for enjoying the company of other travelers 87 156 \N \N \N 2026-01-31 03:40:56.071675 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "all the staff is very helpful and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 156, "evidence": "Big common spaces for enjoying the company of other travelers", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 87}], "unmapped": []} 57a5970cff2d38a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1370 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el staff es super Amable 30 54 \N \N \N 2026-01-31 03:41:00.250298 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "el staff es super Amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "si buscas un sitio tranquilo y centrico este es tu sitio", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "te ayudara en todo lo que necesites", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 61}], "unmapped": []} 769b52d0044e9fef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1765 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNoalAyZWhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 2 3 \N 0.90 clean 22 27 \N \N \N 2026-01-31 03:47:44.376327 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "the room was a bit too dark", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 32}], "unmapped": []} 6fc0ca3c71e85baf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1372 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 te ayudara en todo lo que necesites 61 88 \N \N \N 2026-01-31 03:41:00.254644 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "el staff es super Amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "si buscas un sitio tranquilo y centrico este es tu sitio", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "te ayudara en todo lo que necesites", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 61}], "unmapped": []} 769b52d0044e9fef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1373 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 The atmosphere is comfortable and friendly. 45 80 \N \N \N 2026-01-31 03:41:04.568259 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "A very pleasant hostel.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 00586297ba124302 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1374 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 I really got a good night's sleep. 116 145 \N \N \N 2026-01-31 03:41:04.57142 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "A very pleasant hostel.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 00586297ba124302 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1375 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 The hostel has everything you need, including a large kitchen and two terraces. 145 196 \N \N \N 2026-01-31 03:41:04.573038 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "A very pleasant hostel.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 00586297ba124302 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1376 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 A very pleasant hostel. 0 22 \N \N \N 2026-01-31 03:41:04.574613 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "A very pleasant hostel.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 00586297ba124302 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4234 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKTVZVMVVaME5JVEhFMFJtdGpjVFI0WkZCYU1GRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.395323 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1377 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 It's also very conveniently located close to the ocean. 196 232 \N \N \N 2026-01-31 03:41:04.576284 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "A very pleasant hostel.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 00586297ba124302 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1378 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 todo estaba muy limpio 30 50 \N \N \N 2026-01-31 03:41:07.903134 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "todo estaba muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "ambiente acogedor, tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 565895cbf2fa4e75 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1379 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 ambiente acogedor, tranquilo 51 76 \N \N \N 2026-01-31 03:41:07.905445 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "todo estaba muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "ambiente acogedor, tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 565895cbf2fa4e75 auto 56bb22c1-8631-4285-b549-8fa7c9944462 190 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Everything went fast and without any problems. Rea... 0 50 \N \N \N 2026-01-31 02:05:47.034542 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1380 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 lo recomiendo 12 24 \N \N \N 2026-01-31 03:41:07.907103 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "todo estaba muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "ambiente acogedor, tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 565895cbf2fa4e75 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1381 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 2 3 \N 0.90 Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente. 56 116 \N \N \N 2026-01-31 03:41:13.245714 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 366, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se puede ir descalzo a surfear.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}], "unmapped": []} cfe25f561a0c1162 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1382 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 siempre estaba pendiente de que hubiera buen ambiente. 85 116 \N \N \N 2026-01-31 03:41:13.248857 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 366, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se puede ir descalzo a surfear.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}], "unmapped": []} cfe25f561a0c1162 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1383 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 2 2 \N 0.80 Las instalaciones son algo antiguas, pero todo funciona bien. 292 335 \N \N \N 2026-01-31 03:41:13.250489 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 366, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se puede ir descalzo a surfear.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}], "unmapped": []} cfe25f561a0c1162 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5288 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 Unos chapuzas nada profesionales. 83 113 \N \N \N 2026-01-31 15:10:06.147416 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "Hicieron una prueba de presion y me rompieron una pieza de la la cisterna del baño que luego se negaron a reparar.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 1384 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 2 \N 0.80 La relación precio-calidad está buena. 335 366 \N \N \N 2026-01-31 03:41:13.252164 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 366, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se puede ir descalzo a surfear.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}], "unmapped": []} cfe25f561a0c1162 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1385 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 2 2 \N 0.70 se puede ir descalzo a surfear. 174 203 \N \N \N 2026-01-31 03:41:13.254052 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 292}, {"details": null, "valence": "positive", "end_char": 366, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se puede ir descalzo a surfear.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}], "unmapped": []} cfe25f561a0c1162 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1386 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel y todos los chicos que trabajan majisimos. 30 68 \N \N \N 2026-01-31 03:41:30.392902 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 68, "evidence": "Miguel y todos los chicos que trabajan majisimos.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "Recomendado!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 258d4b65ea93277e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1387 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Están siempre pendientes de que estés bien. 69 103 \N \N \N 2026-01-31 03:41:30.395709 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 68, "evidence": "Miguel y todos los chicos que trabajan majisimos.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "Recomendado!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 258d4b65ea93277e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1388 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 había muy buen ambiente y se preocupaban por hacerte sentir incluido. 138 185 \N \N \N 2026-01-31 03:41:30.400041 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 68, "evidence": "Miguel y todos los chicos que trabajan majisimos.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "Recomendado!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 258d4b65ea93277e auto 56bb22c1-8631-4285-b549-8fa7c9944462 191 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Everything went smoothly.\nCar was in excellent sha... 0 50 \N \N \N 2026-01-31 02:05:47.035041 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1389 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 la relación calidad precio es inmejorable. 205 239 \N \N \N 2026-01-31 03:41:30.401789 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 68, "evidence": "Miguel y todos los chicos que trabajan majisimos.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "Recomendado!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 258d4b65ea93277e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1390 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Recomendado!! 487 498 \N \N \N 2026-01-31 03:41:30.403898 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 68, "evidence": "Miguel y todos los chicos que trabajan majisimos.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "Recomendado!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 258d4b65ea93277e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1391 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21acGJ6Vk5RbE00U0dsYVVsOUdhVTVGT0V0dk9FRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:41:31.216204 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1392 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 opción económica y para pasar la noche o unas cuantas por un módico precio 0 78 \N \N \N 2026-01-31 03:41:37.012321 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 203}], "unmapped": []} dbf8c9bfc3551cc3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1397 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 je ne regrette pas une seule seconde d'avoir choisi cette super auberge 164 218 \N \N \N 2026-01-31 03:41:40.616738 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "je ne regrette pas une seule seconde d'avoir choisi cette super auberge", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "le quartier est très tranquille avec toutes les commodités nécessaires aux alentours", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} 67102e385792cf32 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1393 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.90 colchón cómodo 78 92 \N \N \N 2026-01-31 03:41:37.015514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 203}], "unmapped": []} dbf8c9bfc3551cc3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1399 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel est un super hote et les volontaires sont super sympas 43 83 \N \N \N 2026-01-31 03:41:40.622854 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "je ne regrette pas une seule seconde d'avoir choisi cette super auberge", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "le quartier est très tranquille avec toutes les commodités nécessaires aux alentours", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} 67102e385792cf32 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1394 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar 92 164 \N \N \N 2026-01-31 03:41:37.017153 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 203}], "unmapped": []} dbf8c9bfc3551cc3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1395 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 2 \N 0.70 se encuentra muy cerca de la playa de las canteras 164 203 \N \N \N 2026-01-31 03:41:37.018753 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 203}], "unmapped": []} dbf8c9bfc3551cc3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1396 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY + 2 3 \N 0.90 en seguida, mandó un whatsapp para avisarnos 203 233 \N \N \N 2026-01-31 03:41:37.02019 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 203}], "unmapped": []} dbf8c9bfc3551cc3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1398 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 le quartier est très tranquille avec toutes les commodités nécessaires aux alentours 104 164 \N \N \N 2026-01-31 03:41:40.621386 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "je ne regrette pas une seule seconde d'avoir choisi cette super auberge", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "le quartier est très tranquille avec toutes les commodités nécessaires aux alentours", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} 67102e385792cf32 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1400 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 the hostel has a warm and welcoming atmosphere 157 197 \N \N \N 2026-01-31 03:41:44.882877 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 442, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 396}, {"details": null, "valence": "positive", "end_char": 628, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}], "unmapped": []} 043b81797d81e030 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1401 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 great value for money; it's hard to find a place this close to the beach at such an affordable price 218 307 \N \N \N 2026-01-31 03:41:44.886824 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 442, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 396}, {"details": null, "valence": "positive", "end_char": 628, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}], "unmapped": []} 043b81797d81e030 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1402 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 The staff was incredibly kind, helpful, and always available 396 442 \N \N \N 2026-01-31 03:41:44.88895 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 442, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 396}, {"details": null, "valence": "positive", "end_char": 628, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}], "unmapped": []} 043b81797d81e030 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1403 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would definitely recommend Pura Vida to anyone 590 628 \N \N \N 2026-01-31 03:41:44.890862 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 442, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 396}, {"details": null, "valence": "positive", "end_char": 628, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}], "unmapped": []} 043b81797d81e030 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1413 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 3 3 \N 0.90 I would not recommend it to anyone. 134 157 \N \N \N 2026-01-31 03:41:55.597438 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "I would not recommend it to anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": [{"label": "Threatening behavior regarding reviews", "evidence": "they threaten customers who leave bad reviews", "confidence": 0.9}, {"label": "Customer communication", "evidence": "I do not care to have a further conversation with this establishment", "confidence": 0.8}]} 74a7069ed9a5c506 auto 56bb22c1-8631-4285-b549-8fa7c9944462 192 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 The whole experience was painless from getting pic... 0 50 \N \N \N 2026-01-31 02:05:47.036739 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1404 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 se siente una mala vibra que en ningún otro sitio 56 85 \N \N \N 2026-01-31 03:41:49.272011 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 168, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "tengo que soportar esto en 2025", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 199}], "unmapped": []} 6d7573a1f2084cb9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1461 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 1 2 \N 0.90 Zimmer 6 stinkt nach ekelhaftem käse 0 36 \N \N \N 2026-01-31 03:42:39.207822 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "Zimmer 6 stinkt nach ekelhaftem käse", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "da schläft jemand der schnarcht", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 59b9c2d1edf00463 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1405 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 me sentí incómoda, inferior y juzgada entre mujeres 92 134 \N \N \N 2026-01-31 03:41:49.276267 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 168, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "tengo que soportar esto en 2025", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 199}], "unmapped": []} 6d7573a1f2084cb9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1406 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMPETENCE - 2 3 \N 0.90 La manager es inadecuada para su puesto 135 168 \N \N \N 2026-01-31 03:41:49.278208 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 168, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "tengo que soportar esto en 2025", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 199}], "unmapped": []} 6d7573a1f2084cb9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1407 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 2 3 \N 0.70 todo se olía a marijuana 174 197 \N \N \N 2026-01-31 03:41:49.279978 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 168, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "tengo que soportar esto en 2025", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 199}], "unmapped": []} 6d7573a1f2084cb9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1414 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 they threaten customers who leave bad reviews \N \N {"Threatening behavior regarding reviews"} \N \N 2026-01-31 03:41:55.599008 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "I would not recommend it to anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": [{"label": "Threatening behavior regarding reviews", "evidence": "they threaten customers who leave bad reviews", "confidence": 0.9}, {"label": "Customer communication", "evidence": "I do not care to have a further conversation with this establishment", "confidence": 0.8}]} 74a7069ed9a5c506 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1408 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 2 3 \N 0.70 tengo que soportar esto en 2025 199 223 \N \N \N 2026-01-31 03:41:49.281331 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 85, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "negative", "end_char": 168, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "tengo que soportar esto en 2025", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 199}], "unmapped": []} 6d7573a1f2084cb9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1409 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 'HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato' 56 118 \N \N \N 2026-01-31 03:41:53.56088 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "'HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "'Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado'", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "'Todo selectivos queriendo alojar solo los que les caían bien'", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "'ruido de sus cenas familiares todas las noches hasta las 23'", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}], "unmapped": []} d5edb8eac522a08e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1410 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 'Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado' 118 164 \N \N \N 2026-01-31 03:41:53.564076 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "'HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "'Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado'", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "'Todo selectivos queriendo alojar solo los que les caían bien'", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "'ruido de sus cenas familiares todas las noches hasta las 23'", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}], "unmapped": []} d5edb8eac522a08e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1411 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS - 2 3 \N 0.90 'Todo selectivos queriendo alojar solo los que les caían bien' 164 206 \N \N \N 2026-01-31 03:41:53.566147 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "'HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "'Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado'", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "'Todo selectivos queriendo alojar solo los que les caían bien'", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "'ruido de sus cenas familiares todas las noches hasta las 23'", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}], "unmapped": []} d5edb8eac522a08e auto 56bb22c1-8631-4285-b549-8fa7c9944462 5676 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Great place, with good atmosphere. 0 34 \N \N \N 2026-01-31 15:17:34.473959 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Great place, with good atmosphere.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "they contacted me the next day so I could come right over and get it back.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 172, "evidence": "Definitely a place I’ll visit again if I’m in Vilnius.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 03322f8b47b17b88 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1412 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 'ruido de sus cenas familiares todas las noches hasta las 23' 206 249 \N \N \N 2026-01-31 03:41:53.567967 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "'HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "'Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado'", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "'Todo selectivos queriendo alojar solo los que les caían bien'", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 249, "evidence": "'ruido de sus cenas familiares todas las noches hasta las 23'", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}], "unmapped": []} d5edb8eac522a08e auto 56bb22c1-8631-4285-b549-8fa7c9944462 4235 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VMcUZrX0x0enBMUHpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.397363 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1416 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 I felt very uncomfortable 56 78 \N \N \N 2026-01-31 03:41:57.818458 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "I felt very uncomfortable", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "I felt... unsafe here", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "I do not recommend at all", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}], "unmapped": []} 2294c5327d144884 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1417 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 2 3 \N 0.90 I felt... unsafe here 79 92 \N \N \N 2026-01-31 03:41:57.822503 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "I felt very uncomfortable", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "I felt... unsafe here", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "I do not recommend at all", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}], "unmapped": []} 2294c5327d144884 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1418 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 2 3 \N 0.90 I do not recommend at all 93 116 \N \N \N 2026-01-31 03:41:57.823304 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "I felt very uncomfortable", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "I felt... unsafe here", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "I do not recommend at all", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}], "unmapped": []} 2294c5327d144884 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1419 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 lo recomiendo 45 56 \N \N \N 2026-01-31 03:42:01.086906 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "su personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1420 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 su personal amable y responsable 22 45 \N \N \N 2026-01-31 03:42:01.090254 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "su personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1421 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY + 3 3 \N 0.90 seguro 17 22 \N \N \N 2026-01-31 03:42:01.092117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "su personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1422 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Cerca de la playa 0 17 \N \N \N 2026-01-31 03:42:01.093614 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "su personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1423 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar. 56 139 \N \N \N 2026-01-31 03:42:04.319268 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "te hace sentir que estás en familia y en casa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 284}], "unmapped": []} a6f67b4d5c833f96 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1424 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 te hace sentir que estás en familia y en casa. 140 174 \N \N \N 2026-01-31 03:42:04.322591 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "te hace sentir que estás en familia y en casa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 284}], "unmapped": []} a6f67b4d5c833f96 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1425 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa. 284 353 \N \N \N 2026-01-31 03:42:04.324112 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "te hace sentir que estás en familia y en casa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 284}], "unmapped": []} a6f67b4d5c833f96 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1426 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Hostel totalment recomanable. 0 30 \N \N \N 2026-01-31 03:42:07.115802 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hostel totalment recomanable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Bon ambient", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "prop de la platja de las Canteras", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 44}], "unmapped": []} 02566b45e227f576 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1427 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Bon ambient 31 43 \N \N \N 2026-01-31 03:42:07.11992 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hostel totalment recomanable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Bon ambient", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "prop de la platja de las Canteras", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 44}], "unmapped": []} 02566b45e227f576 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1428 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 prop de la platja de las Canteras 44 75 \N \N \N 2026-01-31 03:42:07.121335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hostel totalment recomanable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Bon ambient", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "prop de la platja de las Canteras", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 44}], "unmapped": []} 02566b45e227f576 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1439 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel y las chicas otro 10 22 45 \N \N \N 2026-01-31 03:42:18.816472 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "buen sitio para pasar unos días agradables.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Miguel y las chicas otro 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Ubicación de 10", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 50aaec88bb67e138 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1429 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would recommend pura vida anyone coming to Las Palmas! 202 239 \N \N \N 2026-01-31 03:42:11.677793 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel treats the guests like his family, always willing to help with anything", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "people in the hostel always do things together", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 218}], "unmapped": []} 60a7318290f510ce auto 56bb22c1-8631-4285-b549-8fa7c9944462 1430 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The hostel is very clean, with volunteers always working to keep the space nice 118 157 \N \N \N 2026-01-31 03:42:11.6809 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel treats the guests like his family, always willing to help with anything", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "people in the hostel always do things together", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 218}], "unmapped": []} 60a7318290f510ce auto 56bb22c1-8631-4285-b549-8fa7c9944462 5289 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 tardaron un tardan mas de una semana en dar cita para reparar un desague atascado. 0 73 \N \N \N 2026-01-31 15:10:06.149861 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "Hicieron una prueba de presion y me rompieron una pieza de la la cisterna del baño que luego se negaron a reparar.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 1431 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out 157 218 \N \N \N 2026-01-31 03:42:11.682446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel treats the guests like his family, always willing to help with anything", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "people in the hostel always do things together", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 218}], "unmapped": []} 60a7318290f510ce auto 56bb22c1-8631-4285-b549-8fa7c9944462 1432 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel treats the guests like his family, always willing to help with anything 66 116 \N \N \N 2026-01-31 03:42:11.683899 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel treats the guests like his family, always willing to help with anything", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "people in the hostel always do things together", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 218}], "unmapped": []} 60a7318290f510ce auto 56bb22c1-8631-4285-b549-8fa7c9944462 1440 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Ubicación de 10 0 15 \N \N \N 2026-01-31 03:42:18.818037 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "buen sitio para pasar unos días agradables.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Miguel y las chicas otro 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Ubicación de 10", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 50aaec88bb67e138 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1433 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 people in the hostel always do things together 218 252 \N \N \N 2026-01-31 03:42:11.685774 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel treats the guests like his family, always willing to help with anything", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 252, "evidence": "people in the hostel always do things together", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 218}], "unmapped": []} 60a7318290f510ce auto 56bb22c1-8631-4285-b549-8fa7c9944462 1434 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 3 3 \N 0.90 fraud charge for $75 from this hostel 36 66 \N \N \N 2026-01-31 03:42:15.638307 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "there was dirt on the sheets", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 278, "evidence": "they wouldn’t move us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 261}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "my in-person experience with them was horrible", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} d6ff02948d4d2a52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 193 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 With car was everything good. 0 29 \N \N \N 2026-01-31 02:05:47.037767 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1435 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 there was dirt on the sheets 218 241 \N \N \N 2026-01-31 03:42:15.640609 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "there was dirt on the sheets", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 278, "evidence": "they wouldn’t move us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 261}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "my in-person experience with them was horrible", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} d6ff02948d4d2a52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1436 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 3 3 \N 0.90 they wouldn’t move us 261 278 \N \N \N 2026-01-31 03:42:15.654714 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "there was dirt on the sheets", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 278, "evidence": "they wouldn’t move us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 261}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "my in-person experience with them was horrible", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} d6ff02948d4d2a52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1437 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY - 3 3 \N 0.90 my in-person experience with them was horrible 118 153 \N \N \N 2026-01-31 03:42:15.657416 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "there was dirt on the sheets", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "negative", "end_char": 278, "evidence": "they wouldn’t move us", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 261}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "my in-person experience with them was horrible", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} d6ff02948d4d2a52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1438 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 buen sitio para pasar unos días agradables. 56 88 \N \N \N 2026-01-31 03:42:18.814709 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "buen sitio para pasar unos días agradables.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Miguel y las chicas otro 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Ubicación de 10", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 50aaec88bb67e138 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1441 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 happy and peaceful atmosphere 56 83 \N \N \N 2026-01-31 03:42:23.498135 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 486, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 455}, {"details": null, "valence": "positive", "end_char": 511, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 490}], "unmapped": []} 6e704183fe5dab46 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5677 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RELIABILITY + 2 3 \N 0.90 they contacted me the next day so I could come right over and get it back. 70 116 \N \N \N 2026-01-31 15:17:34.477271 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Great place, with good atmosphere.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "they contacted me the next day so I could come right over and get it back.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 172, "evidence": "Definitely a place I’ll visit again if I’m in Vilnius.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 03322f8b47b17b88 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1442 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 keep every area of the hostel clean and tidy 139 179 \N \N \N 2026-01-31 03:42:23.500284 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 486, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 455}, {"details": null, "valence": "positive", "end_char": 511, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 490}], "unmapped": []} 6e704183fe5dab46 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1443 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Always smiling and willing to meet every guest’s needs 213 263 \N \N \N 2026-01-31 03:42:23.502093 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 486, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 455}, {"details": null, "valence": "positive", "end_char": 511, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 490}], "unmapped": []} 6e704183fe5dab46 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1444 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I recommend everyone to stay here 455 486 \N \N \N 2026-01-31 03:42:23.503612 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 486, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 455}, {"details": null, "valence": "positive", "end_char": 511, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 490}], "unmapped": []} 6e704183fe5dab46 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1445 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 I hope to come back soon 490 511 \N \N \N 2026-01-31 03:42:23.50487 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 486, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 455}, {"details": null, "valence": "positive", "end_char": 511, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 490}], "unmapped": []} 6e704183fe5dab46 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4236 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChRDSUhNMG9nS0VJQ0FnTUNZM294eBAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.400187 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1447 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 volveré e cuanto pueda 36 54 \N \N \N 2026-01-31 03:42:25.960861 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "encantador gente amena preocupada x los demás", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}], "unmapped": []} c90e31a5f2b175d1 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1448 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 encantador gente amena preocupada x los demás 10 45 \N \N \N 2026-01-31 03:42:25.963453 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "encantador gente amena preocupada x los demás", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}], "unmapped": []} c90e31a5f2b175d1 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1449 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el trato maravilloso 12 30 \N \N \N 2026-01-31 03:42:29.909976 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "El dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "Repetiremos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "la gente que está allí es muy sana", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}], "unmapped": []} a83d90129748c59a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1450 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 cerca de la playa 31 50 \N \N \N 2026-01-31 03:42:29.912584 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "El dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "Repetiremos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "la gente que está allí es muy sana", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}], "unmapped": []} a83d90129748c59a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1451 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 El dueño es súper simpático y agradable 51 83 \N \N \N 2026-01-31 03:42:29.914639 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "El dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "Repetiremos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "la gente que está allí es muy sana", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}], "unmapped": []} a83d90129748c59a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1452 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Repetiremos 84 94 \N \N \N 2026-01-31 03:42:29.916173 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "El dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "Repetiremos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "la gente que está allí es muy sana", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}], "unmapped": []} a83d90129748c59a auto 56bb22c1-8631-4285-b549-8fa7c9944462 4237 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnTUNvdTRYX3J3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.401345 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5743 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.90 this place sucks \N \N {"Overall sentiment"} \N \N 2026-01-31 15:18:44.842765 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "rude DJs with bad music no one enjoys", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 34, "evidence": "Weak drinks", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 24}], "unmapped": [{"label": "Overall sentiment", "evidence": "this place sucks", "confidence": 0.9}, {"label": "Recommendation", "evidence": "worth exploring in Vilnius", "confidence": 0.7}]} 8a52e93156c7e433 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1453 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY + 3 3 \N 0.90 la gente que está allí es muy sana 139 173 \N \N \N 2026-01-31 03:42:29.917605 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "El dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "Repetiremos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "la gente que está allí es muy sana", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 139}], "unmapped": []} a83d90129748c59a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1454 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Muy buena ubicación, muy buen trato con la gente 0 50 \N \N \N 2026-01-31 03:42:32.043895 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Muy buena ubicación, muy buen trato con la gente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Super recomiendo!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 50}], "unmapped": []} e9f1fffbcea14d3c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1455 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Super recomiendo!! 50 66 \N \N \N 2026-01-31 03:42:32.046911 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Muy buena ubicación, muy buen trato con la gente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Super recomiendo!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 50}], "unmapped": []} e9f1fffbcea14d3c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1456 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY - 3 3 \N 0.90 the dishonesty was as disturbing as the infestation itself 360 396 \N \N \N 2026-01-31 03:42:36.319962 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "the dishonesty was as disturbing as the infestation itself", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "deliberate attempt to hide a bed bug infestation", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 266}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "he chose to lie to other guests and even to his own staff", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 308}], "unmapped": []} a315fad000f0f17f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1457 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 3 3 \N 0.90 deliberate attempt to hide a bed bug infestation 266 308 \N \N \N 2026-01-31 03:42:36.321574 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "the dishonesty was as disturbing as the infestation itself", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "deliberate attempt to hide a bed bug infestation", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 266}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "he chose to lie to other guests and even to his own staff", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 308}], "unmapped": []} a315fad000f0f17f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1458 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 3 3 \N 0.90 he chose to lie to other guests and even to his own staff 197 241 \N \N \N 2026-01-31 03:42:36.323053 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "the dishonesty was as disturbing as the infestation itself", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "deliberate attempt to hide a bed bug infestation", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 266}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "he chose to lie to other guests and even to his own staff", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 308}], "unmapped": []} a315fad000f0f17f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1463 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 destaco por sobre todo la calidez y la atención 30 66 \N \N \N 2026-01-31 03:42:41.142326 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "destaco por sobre todo la calidez y la atención", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Buen servicio y buena gente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 68}], "unmapped": []} 5a703a09341e7379 auto 56bb22c1-8631-4285-b549-8fa7c9944462 194 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Got a 5 mm scratch - 450 euros…. Never again!! 0 46 {general} \N \N 2026-01-31 02:05:47.04018 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1459 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 3 3 \N 0.90 prioritized his reputation over guest safety 308 347 \N \N \N 2026-01-31 03:42:36.3244 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "the dishonesty was as disturbing as the infestation itself", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 308, "evidence": "deliberate attempt to hide a bed bug infestation", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 266}, {"details": null, "valence": "negative", "end_char": 241, "evidence": "he chose to lie to other guests and even to his own staff", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 308}], "unmapped": []} a315fad000f0f17f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1460 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPYk5sdGJmcWNpSWJREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:42:37.103146 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 2763 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xZMGRtdFlhM1JQU1RjdFUweHNXVkpsYTA1MWFXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Fiables, limpios y puntuales. 0 56 \N \N \N 2026-01-31 04:05:41.942918 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Fiables, limpios y puntuales.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Fiables, limpios y puntuales.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Tanto el fontanero como el albañil han hecho un buen trabajo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} a2ce16032f3edb57 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2764 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xZMGRtdFlhM1JQU1RjdFUweHNXVkpsYTA1MWFXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 Fiables, limpios y puntuales. 0 56 \N \N \N 2026-01-31 04:05:41.946008 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Fiables, limpios y puntuales.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Fiables, limpios y puntuales.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Tanto el fontanero como el albañil han hecho un buen trabajo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} a2ce16032f3edb57 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2765 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xZMGRtdFlhM1JQU1RjdFUweHNXVkpsYTA1MWFXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Tanto el fontanero como el albañil han hecho un buen trabajo. 56 95 \N \N \N 2026-01-31 04:05:41.947803 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Fiables, limpios y puntuales.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Fiables, limpios y puntuales.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Tanto el fontanero como el albañil han hecho un buen trabajo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} a2ce16032f3edb57 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2766 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25GVFQzTnpYMFJOY0VoVWJrZDBVSFl4Vlc5eVltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 el trato 22 28 \N \N \N 2026-01-31 04:05:44.531034 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 28, "evidence": "el trato", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy contenta con el trabajo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0baa1163fcf46621 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2767 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25GVFQzTnpYMFJOY0VoVWJrZDBVSFl4Vlc5eVltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 3 \N 0.90 Muy contenta con el trabajo 0 27 \N \N \N 2026-01-31 04:05:44.533142 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 28, "evidence": "el trato", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy contenta con el trabajo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0baa1163fcf46621 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2768 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tkQ1RFNTBTWEZITldwVmJFZFdOMDlsTVhKeVNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 muy responsables en sus trabajos 36 66 \N \N \N 2026-01-31 04:05:47.775127 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "muy responsables en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "todo perfecto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "13 islas ,gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 68}], "unmapped": []} 41bebb3e68b55396 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4238 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnTURnNzhlUlBnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.402198 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1465 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 2 2 \N 0.80 Le seul hostel qui demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide 0 83 \N \N \N 2026-01-31 03:42:47.527574 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Le seul hostel qui demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "Lit immense mais trop mou", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 124, "evidence": "Prise qui fait peur", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 5eeddea62974dbf4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1466 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 1 2 \N 0.90 Lit immense mais trop mou 84 108 \N \N \N 2026-01-31 03:42:47.530252 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Le seul hostel qui demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "Lit immense mais trop mou", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 124, "evidence": "Prise qui fait peur", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 5eeddea62974dbf4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1467 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 1 2 \N 0.70 Prise qui fait peur 109 124 \N \N \N 2026-01-31 03:42:47.532165 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Le seul hostel qui demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "Lit immense mais trop mou", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 124, "evidence": "Prise qui fait peur", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 5eeddea62974dbf4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1468 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El hostal está perfectamente ubicado 0 36 \N \N \N 2026-01-31 03:42:51.041746 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1469 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 El hostal está muy limpio y los baños siempre impecables 36 78 \N \N \N 2026-01-31 03:42:51.043513 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1470 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel y las chicas que trabajan ahí son lo más 40 78 \N \N \N 2026-01-31 03:42:51.044842 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1766 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNoalAyZWhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT ± 1 2 \N 0.70 the room was a bit too dark 32 56 \N \N \N 2026-01-31 03:47:44.378694 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "the room was a bit too dark", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 32}], "unmapped": []} 6fc0ca3c71e85baf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1613 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURyaDliX1BnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Great place and energy! 0 24 \N \N \N 2026-01-31 03:45:08.116658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Great place and energy!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "The beach is just 2 minutes away", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "perfect for surfing twice a day!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 53}], "unmapped": []} e72d9aa88dcf3263 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1471 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 si vuelvo a las palmas sin duda nos volvemos a ver 78 116 \N \N \N 2026-01-31 03:42:51.046055 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1472 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 a real family-like atmosphere 27 54 \N \N \N 2026-01-31 03:42:54.377109 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "just a 2-minute walk to the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 8437df0e161b431a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1473 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel and the team were amazing 56 83 \N \N \N 2026-01-31 03:42:54.379514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "just a 2-minute walk to the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 8437df0e161b431a auto 56bb22c1-8631-4285-b549-8fa7c9944462 5678 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 2 3 \N 0.90 Definitely a place I’ll visit again if I’m in Vilnius. 134 172 \N \N \N 2026-01-31 15:17:34.479395 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Great place, with good atmosphere.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "they contacted me the next day so I could come right over and get it back.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 172, "evidence": "Definitely a place I’ll visit again if I’m in Vilnius.", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 03322f8b47b17b88 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 195 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 2 \N 0.70 Fast & professional. Really recommend! 0 38 \N \N \N 2026-01-31 02:05:47.041935 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 196 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Nice people, no hidden fees, easy process, good ca... 0 50 \N \N \N 2026-01-31 02:05:47.042588 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1474 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would gladly choose it again and recommend it to others 139 183 \N \N \N 2026-01-31 03:42:54.381379 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "just a 2-minute walk to the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 8437df0e161b431a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1475 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 just a 2-minute walk to the beach 107 132 \N \N \N 2026-01-31 03:42:54.383123 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "just a 2-minute walk to the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 8437df0e161b431a auto 56bb22c1-8631-4285-b549-8fa7c9944462 4239 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNmNFlYSUdBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.403031 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1476 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 It’s such a welcoming place with so many people full of great energy. 30 83 \N \N \N 2026-01-31 03:42:58.073695 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "It’s just a two-minute walk from the beach and has everything you need to feel good.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "I can’t wait to come back, thank you, Miguel, and everyone I met! :)", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} 63c90f6bc2965b52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1477 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 Everyone is always kind and available. 84 113 \N \N \N 2026-01-31 03:42:58.075865 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "It’s just a two-minute walk from the beach and has everything you need to feel good.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "I can’t wait to come back, thank you, Miguel, and everyone I met! :)", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} 63c90f6bc2965b52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5688 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Definitely go when you have time! 195 223 \N \N \N 2026-01-31 15:17:44.687295 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}], "unmapped": []} 71d1ac896ff46944 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1478 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 It’s just a two-minute walk from the beach and has everything you need to feel good. 117 164 \N \N \N 2026-01-31 03:42:58.077568 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "It’s just a two-minute walk from the beach and has everything you need to feel good.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "I can’t wait to come back, thank you, Miguel, and everyone I met! :)", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} 63c90f6bc2965b52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1479 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 I can’t wait to come back, thank you, Miguel, and everyone I met! :) 166 215 \N \N \N 2026-01-31 03:42:58.078846 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "It’s just a two-minute walk from the beach and has everything you need to feel good.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "I can’t wait to come back, thank you, Miguel, and everyone I met! :)", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} 63c90f6bc2965b52 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1480 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 Everything is old and dirty. 27 50 \N \N \N 2026-01-31 03:43:02.185983 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "No toilet paper.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1495 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Sitio muy acogedor 0 22 \N \N \N 2026-01-31 03:43:14.797439 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Sitio muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "personal muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendable para ir con los amigos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} 11cec03d7a125b55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1481 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 3 \N 0.90 Everything is old and dirty. 27 50 \N \N \N 2026-01-31 03:43:02.187943 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "No toilet paper.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1614 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURyaDliX1BnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 The beach is just 2 minutes away 25 52 \N \N \N 2026-01-31 03:45:08.119599 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Great place and energy!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "The beach is just 2 minutes away", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "perfect for surfing twice a day!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 53}], "unmapped": []} e72d9aa88dcf3263 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1482 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY - 2 3 \N 0.90 There is no hot water at all. 51 74 \N \N \N 2026-01-31 03:43:02.189496 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "No toilet paper.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1483 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY - 2 3 \N 0.90 No toilet paper. 76 89 \N \N \N 2026-01-31 03:43:02.191389 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "No toilet paper.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1484 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 1 2 \N 0.70 Staff is kind, but that is not enough to give more stars. 91 129 \N \N \N 2026-01-31 03:43:02.193387 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 74, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "No toilet paper.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1496 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 personal muy agradable 23 45 \N \N \N 2026-01-31 03:43:14.799775 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Sitio muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "personal muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendable para ir con los amigos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} 11cec03d7a125b55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1485 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs. 56 157 \N \N \N 2026-01-31 03:43:06.893327 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 486}], "unmapped": []} 32cfc1b4fc857807 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5689 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 relaxing athmosphere 45 66 \N \N \N 2026-01-31 15:17:47.83383 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "relaxing athmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Great place to relax", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Strong coctails", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0e68cc53e66b01f4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1486 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day. 194 246 \N \N \N 2026-01-31 03:43:06.896915 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 486}], "unmapped": []} 32cfc1b4fc857807 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1487 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends 290 367 \N \N \N 2026-01-31 03:43:06.898235 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 486}], "unmapped": []} 32cfc1b4fc857807 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1488 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would come back here anytime and can only recommend people to give this lovely place a try. 486 548 \N \N \N 2026-01-31 03:43:06.899616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 486}], "unmapped": []} 32cfc1b4fc857807 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1497 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 muy recomendable para ir con los amigos 46 80 \N \N \N 2026-01-31 03:43:14.802625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Sitio muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "personal muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendable para ir con los amigos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} 11cec03d7a125b55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1489 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 os recomiendo este Hostal 85 109 \N \N \N 2026-01-31 03:43:11.453193 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "los pasillos / baños / zonas comunes y comedor los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "me sentí muy cómodo, las habitaciones son amplias", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "con un personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}], "unmapped": []} 2034f4af9d179a88 auto 56bb22c1-8631-4285-b549-8fa7c9944462 197 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 🫡😉👍 0 3 \N \N \N 2026-01-31 02:05:47.04392 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1490 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 los pasillos / baños / zonas comunes y comedor los limpiaban diariamente 134 179 \N \N \N 2026-01-31 03:43:11.454804 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "los pasillos / baños / zonas comunes y comedor los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "me sentí muy cómodo, las habitaciones son amplias", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "con un personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}], "unmapped": []} 2034f4af9d179a88 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1491 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 me sentí muy cómodo, las habitaciones son amplias 56 92 \N \N \N 2026-01-31 03:43:11.455978 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "los pasillos / baños / zonas comunes y comedor los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "me sentí muy cómodo, las habitaciones son amplias", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "con un personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}], "unmapped": []} 2034f4af9d179a88 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1492 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.70 tranquilo 66 73 \N \N \N 2026-01-31 03:43:11.457663 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "los pasillos / baños / zonas comunes y comedor los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "me sentí muy cómodo, las habitaciones son amplias", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "con un personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}], "unmapped": []} 2034f4af9d179a88 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1493 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.70 con un personal majisimo 56 78 \N \N \N 2026-01-31 03:43:11.459115 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "los pasillos / baños / zonas comunes y comedor los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "me sentí muy cómodo, las habitaciones son amplias", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "con un personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}], "unmapped": []} 2034f4af9d179a88 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1494 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNfanRPcU1BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:43:12.138224 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 5690 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Great place to relax 0 20 \N \N \N 2026-01-31 15:17:47.840764 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "relaxing athmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Great place to relax", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Strong coctails", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0e68cc53e66b01f4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1498 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Me he sentido muy cómodo durante mi estancia de varios días en este hostel. 0 70 \N \N \N 2026-01-31 03:43:19.483264 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 162}], "unmapped": []} 268aac120758269c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1499 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Los encargados se preocupan por cuidarlo todo y son muy amigables. 70 116 \N \N \N 2026-01-31 03:43:19.485177 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 162}], "unmapped": []} 268aac120758269c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1500 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar. 116 162 \N \N \N 2026-01-31 03:43:19.487147 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 162}], "unmapped": []} 268aac120758269c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1501 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Económico y muy recomendable. 162 189 \N \N \N 2026-01-31 03:43:19.488658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 162}], "unmapped": []} 268aac120758269c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1502 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 muy recomendable. 162 189 \N \N \N 2026-01-31 03:43:19.49006 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 162}], "unmapped": []} 268aac120758269c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1503 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 Me encanta Las Palmas y le ubicación es muy buena. 0 56 \N \N \N 2026-01-31 03:43:23.111187 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 175, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de auto 56bb22c1-8631-4285-b549-8fa7c9944462 1504 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 Miguel y sus trabajadores muy agradables. 57 88 \N \N \N 2026-01-31 03:43:23.1135 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 175, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de auto 56bb22c1-8631-4285-b549-8fa7c9944462 1505 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 2 3 \N 0.90 Cocina limpia y respetan el sueño. 89 116 \N \N \N 2026-01-31 03:43:23.115289 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 175, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de auto 56bb22c1-8631-4285-b549-8fa7c9944462 1506 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 2 \N 0.90 la relación calidad/precio está bien. 145 175 \N \N \N 2026-01-31 03:43:23.11688 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 175, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de auto 56bb22c1-8631-4285-b549-8fa7c9944462 1507 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 a warm and welcoming atmosphere 66 95 \N \N \N 2026-01-31 03:43:27.226829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Mica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 155}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "just 5 minutes from the beach and well-connected by public transport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "The perfect place to feel at home in Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1517 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 met une magnifique ambiance 47 70 \N \N \N 2026-01-31 03:43:34.895574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 157}], "unmapped": []} 749e8129892f432a auto 56bb22c1-8631-4285-b549-8fa7c9944462 198 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Too many hidden charges 0 23 {general} \N \N 2026-01-31 02:05:47.044533 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1508 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 The volunteers are the heart and soul of this home 118 153 \N \N \N 2026-01-31 03:43:27.228704 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Mica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 155}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "just 5 minutes from the beach and well-connected by public transport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "The perfect place to feel at home in Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1592 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3bDlMVzF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 es el mejor sitio para venir a las palmas de gran canaria 76 116 \N \N \N 2026-01-31 03:44:48.849761 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "es el mejor sitio para venir a las palmas de gran canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "te hacen sentirte como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "las voluntarias y los huespedes... te asesoran donde ir", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 76}], "unmapped": []} 911170f7b3831dde auto 56bb22c1-8631-4285-b549-8fa7c9944462 1509 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOGNITION + 3 3 \N 0.90 Mica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart 155 203 \N \N \N 2026-01-31 03:43:27.230375 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Mica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 155}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "just 5 minutes from the beach and well-connected by public transport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "The perfect place to feel at home in Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1510 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 just 5 minutes from the beach and well-connected by public transport 44 84 \N \N \N 2026-01-31 03:43:27.232202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Mica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 155}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "just 5 minutes from the beach and well-connected by public transport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "The perfect place to feel at home in Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5393 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar. 56 139 \N \N \N 2026-01-31 15:12:14.622234 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "te hace sentir que estás en familia y en casa.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 139}], "unmapped": []} a6f67b4d5c833f96 es 56bb22c1-8631-4285-b549-8fa7c9944462 1511 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 The perfect place to feel at home in Gran Canaria 0 43 \N \N \N 2026-01-31 03:43:27.233621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Mica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 155}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "just 5 minutes from the beach and well-connected by public transport", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "The perfect place to feel at home in Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4240 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR2N3FDazhnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.404143 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1512 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 el ambiente es alegre y desenfadado 370 396 \N \N \N 2026-01-31 03:43:31.346826 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 396, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 484, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 470}, {"details": null, "valence": "positive", "end_char": 485, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "positive", "end_char": 1045, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1000}], "unmapped": []} b8904a99d1a5b1d2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1513 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel trata a cada huésped como un amigo 164 197 \N \N \N 2026-01-31 03:43:31.349036 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 396, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 484, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 470}, {"details": null, "valence": "positive", "end_char": 485, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "positive", "end_char": 1045, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1000}], "unmapped": []} b8904a99d1a5b1d2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1514 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 baños limpios 470 484 \N \N \N 2026-01-31 03:43:31.350504 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 396, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 484, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 470}, {"details": null, "valence": "positive", "end_char": 485, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "positive", "end_char": 1045, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1000}], "unmapped": []} b8904a99d1a5b1d2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1515 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 literas grandes y cómodas 460 485 \N \N \N 2026-01-31 03:43:31.35193 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 396, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 484, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 470}, {"details": null, "valence": "positive", "end_char": 485, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "positive", "end_char": 1045, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1000}], "unmapped": []} b8904a99d1a5b1d2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 199 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Adrian S. Is such a nice Guy!🙏 Good work 0 40 \N \N \N 2026-01-31 02:05:47.045216 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 200 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Very good service from Carmen and Francisco. 0 44 \N \N \N 2026-01-31 02:05:47.045873 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 1516 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 mi sugerencia es no pensárselo mucho y escoger este hostel 1000 1045 \N \N \N 2026-01-31 03:43:31.353216 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 396, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 484, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 470}, {"details": null, "valence": "positive", "end_char": 485, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "positive", "end_char": 1045, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1000}], "unmapped": []} b8904a99d1a5b1d2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1533 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQemRPbW1nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOGNITION + 3 3 \N 0.90 Rebecca is the best! 0 24 \N \N \N 2026-01-31 03:43:46.479526 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Rebecca is the best!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} d6689dbd1cae158b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1518 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 assurant le calme et la propreté 73 101 \N \N \N 2026-01-31 03:43:34.897684 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 157}], "unmapped": []} 749e8129892f432a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1519 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 n’hésitez pas à aller à Pura Vida 194 218 \N \N \N 2026-01-31 03:43:34.899567 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 157}], "unmapped": []} 749e8129892f432a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1520 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.70 soirées organisées par Miguel 157 185 \N \N \N 2026-01-31 03:43:34.900771 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 157}], "unmapped": []} 749e8129892f432a auto 56bb22c1-8631-4285-b549-8fa7c9944462 5691 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Strong coctails 27 42 \N \N \N 2026-01-31 15:17:47.842884 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "relaxing athmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Great place to relax", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Strong coctails", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0e68cc53e66b01f4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1521 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1dTYzdUlnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel es una persona excepcional , siempre atento a cada detalle y dispuesto a ayudar en todo. 66 139 \N \N \N 2026-01-31 03:43:37.911397 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona excepcional , siempre atento a cada detalle y dispuesto a ayudar en todo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendable 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "Limpieza de 10 además.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}], "unmapped": []} e1d03dd383bd1613 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1522 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1dTYzdUlnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Recomendable 100%. 139 157 \N \N \N 2026-01-31 03:43:37.913588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona excepcional , siempre atento a cada detalle y dispuesto a ayudar en todo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendable 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "Limpieza de 10 además.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}], "unmapped": []} e1d03dd383bd1613 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1523 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1dTYzdUlnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Limpieza de 10 además. 157 176 \N \N \N 2026-01-31 03:43:37.91538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona excepcional , siempre atento a cada detalle y dispuesto a ayudar en todo.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendable 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "Limpieza de 10 además.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}], "unmapped": []} e1d03dd383bd1613 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1543 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQbVBIdjVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Always clean and comfy 51 73 \N \N \N 2026-01-31 03:43:56.815727 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Super friendly staff, feels like family", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Always clean and comfy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Always clean and comfy", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}], "unmapped": []} f4f93ed0e5f50f3f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1524 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 3 3 \N 0.90 todo muy sucio 66 82 \N \N \N 2026-01-31 03:43:41.789479 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "todo muy sucio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "las condiciones son pésimas", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 327, "evidence": "no recomendaría este sitio ni a mi peor enemigo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 146, "evidence": "lo único q realmente quiere es que le pagues", "intensity": 4, "primitive": "HONESTY", "confidence": 0.7, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 359, "evidence": "se convierte en un sitio inhabitable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 327}], "unmapped": []} df4cf88b85629527 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1525 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 3 3 \N 0.90 las condiciones son pésimas 164 189 \N \N \N 2026-01-31 03:43:41.79141 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "todo muy sucio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "las condiciones son pésimas", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 327, "evidence": "no recomendaría este sitio ni a mi peor enemigo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 146, "evidence": "lo único q realmente quiere es que le pagues", "intensity": 4, "primitive": "HONESTY", "confidence": 0.7, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 359, "evidence": "se convierte en un sitio inhabitable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 327}], "unmapped": []} df4cf88b85629527 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1629 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURkNE5mRE9nEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY - 2 3 \N 0.90 dissatisfied to be honest 7 30 \N \N \N 2026-01-31 03:45:24.251131 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "dissatisfied to be honest", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 7}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "expect to pay all upfront for at least a week", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 66}], "unmapped": []} 012b10e6fe5ed2a6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1526 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 3 3 \N 0.90 no recomendaría este sitio ni a mi peor enemigo 290 327 \N \N \N 2026-01-31 03:43:41.792857 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "todo muy sucio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "las condiciones son pésimas", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 327, "evidence": "no recomendaría este sitio ni a mi peor enemigo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 146, "evidence": "lo único q realmente quiere es que le pagues", "intensity": 4, "primitive": "HONESTY", "confidence": 0.7, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 359, "evidence": "se convierte en un sitio inhabitable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 327}], "unmapped": []} df4cf88b85629527 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1527 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY - 2 3 \N 0.70 lo único q realmente quiere es que le pagues 116 146 \N \N \N 2026-01-31 03:43:41.794071 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "todo muy sucio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "las condiciones son pésimas", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 327, "evidence": "no recomendaría este sitio ni a mi peor enemigo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 146, "evidence": "lo único q realmente quiere es que le pagues", "intensity": 4, "primitive": "HONESTY", "confidence": 0.7, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 359, "evidence": "se convierte en un sitio inhabitable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 327}], "unmapped": []} df4cf88b85629527 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1534 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQdWUtYS1RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 très chaleureux avec une bonne ambiance et un très beau décor 0 66 \N \N \N 2026-01-31 03:43:49.186888 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "très chaleureux avec une bonne ambiance et un très beau décor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "s'occupe très bien de l'entretien met une bonne vibe et est toujours volontaire pour nous rendre service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "je conseille fortement !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 9dd34de64297e72f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1528 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 3 3 \N 0.90 se convierte en un sitio inhabitable 327 359 \N \N \N 2026-01-31 03:43:41.795642 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "todo muy sucio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "las condiciones son pésimas", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 327, "evidence": "no recomendaría este sitio ni a mi peor enemigo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 146, "evidence": "lo único q realmente quiere es que le pagues", "intensity": 4, "primitive": "HONESTY", "confidence": 0.7, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 359, "evidence": "se convierte en un sitio inhabitable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 327}], "unmapped": []} df4cf88b85629527 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1529 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 todo sucio desordenado, olor horrible 42 78 \N \N \N 2026-01-31 03:43:45.271089 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "todo sucio desordenado, olor horrible", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "la persona a cargo 0 agradable", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "no recomiendo la estancia en este lugar", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no querían devolvernos el dinero de la reserva", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 312da95f0174a47e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1530 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER - 2 3 \N 0.90 la persona a cargo 0 agradable 78 104 \N \N \N 2026-01-31 03:43:45.27273 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "todo sucio desordenado, olor horrible", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "la persona a cargo 0 agradable", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "no recomiendo la estancia en este lugar", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no querían devolvernos el dinero de la reserva", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 312da95f0174a47e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1538 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el gerente es a toda madre 66 90 \N \N \N 2026-01-31 03:43:53.777032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "todos muy atentos y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el gerente es a toda madre", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Un lugar increíble para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Hostel muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}], "unmapped": []} b1e50d2bb7435462 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1531 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 2 3 \N 0.90 no recomiendo la estancia en este lugar 104 134 \N \N \N 2026-01-31 03:43:45.274012 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "todo sucio desordenado, olor horrible", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "la persona a cargo 0 agradable", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "no recomiendo la estancia en este lugar", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no querían devolvernos el dinero de la reserva", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 312da95f0174a47e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1532 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOVERY - 2 3 \N 0.90 no querían devolvernos el dinero de la reserva 134 166 \N \N \N 2026-01-31 03:43:45.275248 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "todo sucio desordenado, olor horrible", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "la persona a cargo 0 agradable", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "no recomiendo la estancia en este lugar", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no querían devolvernos el dinero de la reserva", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 312da95f0174a47e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1535 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQdWUtYS1RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 s'occupe très bien de l'entretien met une bonne vibe et est toujours volontaire pour nous rendre service 66 139 \N \N \N 2026-01-31 03:43:49.188885 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "très chaleureux avec une bonne ambiance et un très beau décor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "s'occupe très bien de l'entretien met une bonne vibe et est toujours volontaire pour nous rendre service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "je conseille fortement !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 9dd34de64297e72f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1536 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQdWUtYS1RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 je conseille fortement ! 139 158 \N \N \N 2026-01-31 03:43:49.190289 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "très chaleureux avec une bonne ambiance et un très beau décor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "s'occupe très bien de l'entretien met une bonne vibe et est toujours volontaire pour nous rendre service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "je conseille fortement !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 9dd34de64297e72f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1537 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 todos muy atentos y amables 40 66 \N \N \N 2026-01-31 03:43:53.774293 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "todos muy atentos y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el gerente es a toda madre", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Un lugar increíble para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Hostel muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}], "unmapped": []} b1e50d2bb7435462 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1539 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Un lugar increíble para descansar 0 34 \N \N \N 2026-01-31 03:43:53.778994 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "todos muy atentos y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el gerente es a toda madre", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Un lugar increíble para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Hostel muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}], "unmapped": []} b1e50d2bb7435462 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1540 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Hostel muy bueno 90 107 \N \N \N 2026-01-31 03:43:53.78041 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "todos muy atentos y amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el gerente es a toda madre", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Un lugar increíble para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Hostel muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}], "unmapped": []} b1e50d2bb7435462 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1541 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQbVBIdjVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Super friendly staff, feels like family 16 50 \N \N \N 2026-01-31 03:43:56.81191 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Super friendly staff, feels like family", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Always clean and comfy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Always clean and comfy", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}], "unmapped": []} f4f93ed0e5f50f3f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1542 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURQbVBIdjVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Always clean and comfy 51 73 \N \N \N 2026-01-31 03:43:56.813872 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Super friendly staff, feels like family", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Always clean and comfy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Always clean and comfy", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}], "unmapped": []} f4f93ed0e5f50f3f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1544 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 "Dar confianza en un lugar y que después te respondan lo siguiente: 'Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación'" 0 0 \N \N \N 2026-01-31 03:44:01.682144 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Dar confianza en un lugar y que después te respondan lo siguiente: 'Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación'\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"ESTO ME PARECE UN DESPRECIO!!\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"se reserva el derecho de admisión a roncadores, vaaaamos...\\"", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Este alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento\\"", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} bad4ace9626689c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1569 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYd2ZqT2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Oameni deosebiti Michela e Miguel 0 34 \N \N \N 2026-01-31 03:44:23.73195 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "atmosfera bună", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "Cu siguranță voi reveni", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Oameni deosebiti Michela e Miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 505a6d0904408cba auto 56bb22c1-8631-4285-b549-8fa7c9944462 5744 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 worth exploring in Vilnius \N \N {Recommendation} \N \N 2026-01-31 15:18:44.844773 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "rude DJs with bad music no one enjoys", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 34, "evidence": "Weak drinks", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 24}], "unmapped": [{"label": "Overall sentiment", "evidence": "this place sucks", "confidence": 0.9}, {"label": "Recommendation", "evidence": "worth exploring in Vilnius", "confidence": 0.7}]} 8a52e93156c7e433 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1545 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 2 3 \N 0.90 "ESTO ME PARECE UN DESPRECIO!!" 0 0 \N \N \N 2026-01-31 03:44:01.684716 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Dar confianza en un lugar y que después te respondan lo siguiente: 'Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación'\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"ESTO ME PARECE UN DESPRECIO!!\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"se reserva el derecho de admisión a roncadores, vaaaamos...\\"", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Este alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento\\"", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} bad4ace9626689c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1546 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY - 2 3 \N 0.80 "se reserva el derecho de admisión a roncadores, vaaaamos..." 0 0 \N \N \N 2026-01-31 03:44:01.686895 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Dar confianza en un lugar y que después te respondan lo siguiente: 'Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación'\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"ESTO ME PARECE UN DESPRECIO!!\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"se reserva el derecho de admisión a roncadores, vaaaamos...\\"", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Este alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento\\"", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} bad4ace9626689c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1547 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 2 3 \N 0.70 "Este alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento" 0 0 \N \N \N 2026-01-31 03:44:01.688484 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Dar confianza en un lugar y que después te respondan lo siguiente: 'Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación'\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"ESTO ME PARECE UN DESPRECIO!!\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"se reserva el derecho de admisión a roncadores, vaaaamos...\\"", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 0, "evidence": "\\"Este alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento\\"", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} bad4ace9626689c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1774 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCdThITzlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE 0 2 2 \N 0.80 Unmittelbar am Surferstrand gelegen 66 98 \N \N \N 2026-01-31 03:47:52.725853 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 98, "evidence": "Unmittelbar am Surferstrand gelegen", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 76, "evidence": "Mein Zimmer mit 3 Frauen war ziemlich klein", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 43}], "unmapped": []} ffb1ada1ec38bb71 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1548 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 el lugar acogedor 90 106 \N \N \N 2026-01-31 03:44:06.067532 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "el lugar acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Las personas del staff un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Yo feliz y muy satisfecha por el hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "precios que no compensan la satisfacción que te llevas", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 106}], "unmapped": []} c0a3c66fb4b22883 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1549 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Las personas del staff un amor 66 87 \N \N \N 2026-01-31 03:44:06.069413 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "el lugar acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Las personas del staff un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Yo feliz y muy satisfecha por el hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "precios que no compensan la satisfacción que te llevas", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 106}], "unmapped": []} c0a3c66fb4b22883 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1593 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3bDlMVzF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 te hacen sentirte como en casa 164 194 \N \N \N 2026-01-31 03:44:48.851525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "es el mejor sitio para venir a las palmas de gran canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "te hacen sentirte como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "las voluntarias y los huespedes... te asesoran donde ir", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 76}], "unmapped": []} 911170f7b3831dde auto 56bb22c1-8631-4285-b549-8fa7c9944462 1550 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Yo feliz y muy satisfecha por el hostel 0 40 \N \N \N 2026-01-31 03:44:06.070938 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "el lugar acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Las personas del staff un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Yo feliz y muy satisfecha por el hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "precios que no compensan la satisfacción que te llevas", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 106}], "unmapped": []} c0a3c66fb4b22883 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1551 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_FAIRNESS + 2 3 \N 0.80 precios que no compensan la satisfacción que te llevas 106 144 \N \N \N 2026-01-31 03:44:06.072283 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "el lugar acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Las personas del staff un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Yo feliz y muy satisfecha por el hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "precios que no compensan la satisfacción que te llevas", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 106}], "unmapped": []} c0a3c66fb4b22883 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1552 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQzMHNPVTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 meget søde med værter 10 36 \N \N \N 2026-01-31 03:44:08.82541 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "meget søde med værter", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Lækkert sted", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "gode surfmuligheder", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 49}], "unmapped": []} b08bea925be927e6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1553 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQzMHNPVTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Lækkert sted 37 48 \N \N \N 2026-01-31 03:44:08.827379 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "meget søde med værter", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Lækkert sted", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "gode surfmuligheder", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 49}], "unmapped": []} b08bea925be927e6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1554 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQzMHNPVTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 gode surfmuligheder 49 66 \N \N \N 2026-01-31 03:44:08.828504 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "meget søde med værter", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Lækkert sted", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "gode surfmuligheder", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 49}], "unmapped": []} b08bea925be927e6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1555 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 muy aconsejable para pasar una buenas vacaciones 85 132 \N \N \N 2026-01-31 03:44:12.606331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "muy aconsejable para pasar una buenas vacaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "las voluntarias son super amables sobre todo rebecca", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "buena zona también para el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3b3317e4393c42a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1556 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 las voluntarias son super amables sobre todo rebecca 56 92 \N \N \N 2026-01-31 03:44:12.608841 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "muy aconsejable para pasar una buenas vacaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "las voluntarias son super amables sobre todo rebecca", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "buena zona también para el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3b3317e4393c42a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1557 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 buena zona también para el surf 36 61 \N \N \N 2026-01-31 03:44:12.610315 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "muy aconsejable para pasar una buenas vacaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "las voluntarias son super amables sobre todo rebecca", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "buena zona también para el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3b3317e4393c42a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1558 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY + 3 3 \N 0.90 Muy buen servicio 0 16 \N \N \N 2026-01-31 03:44:12.611812 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "muy aconsejable para pasar una buenas vacaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "las voluntarias son super amables sobre todo rebecca", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "buena zona también para el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 16, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3b3317e4393c42a5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1559 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzMEwtb09BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 they create a great atmosphere in which it is easy to get to know new people and make friends 82 147 \N \N \N 2026-01-31 03:44:16.186518 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 147, "evidence": "they create a great atmosphere in which it is easy to get to know new people and make friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "I could rent surfboards directly in the hostel for a very fair price", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 151}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The owner and the team are super welcoming", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}], "unmapped": []} 6105ce7b83972124 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1775 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCdThITzlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION 0 2 2 \N 0.80 Mein Zimmer mit 3 Frauen war ziemlich klein 43 76 \N \N \N 2026-01-31 03:47:52.727706 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 98, "evidence": "Unmittelbar am Surferstrand gelegen", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "neutral", "end_char": 76, "evidence": "Mein Zimmer mit 3 Frauen war ziemlich klein", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 43}], "unmapped": []} ffb1ada1ec38bb71 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1560 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzMEwtb09BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 I could rent surfboards directly in the hostel for a very fair price 151 194 \N \N \N 2026-01-31 03:44:16.188234 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 147, "evidence": "they create a great atmosphere in which it is easy to get to know new people and make friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "I could rent surfboards directly in the hostel for a very fair price", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 151}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The owner and the team are super welcoming", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}], "unmapped": []} 6105ce7b83972124 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5692 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 the club however definitely deserves a 4.5+ rating 186 220 \N \N \N 2026-01-31 15:17:50.631265 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 220, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "mixed", "end_char": 113, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "you will get some great connections there for sure", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 267}], "unmapped": []} c27f86d6e579506c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1334 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNHcE5tMkpREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:11.09869 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 1561 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQzMEwtb09BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 The owner and the team are super welcoming 34 66 \N \N \N 2026-01-31 03:44:16.18994 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 147, "evidence": "they create a great atmosphere in which it is easy to get to know new people and make friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "I could rent surfboards directly in the hostel for a very fair price", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 151}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The owner and the team are super welcoming", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}], "unmapped": []} 6105ce7b83972124 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1562 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el personal fue extremadamente amable y acogedor 45 83 \N \N \N 2026-01-31 03:44:20.840137 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el personal fue extremadamente amable y acogedor", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "las camas muy cómodas, ¡perfectas para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 324, "evidence": "Me encantó el ambiente relajado y social", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "¡Lo recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 73ec7f7f94ac2cd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1563 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas 118 174 \N \N \N 2026-01-31 03:44:20.842162 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el personal fue extremadamente amable y acogedor", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "las camas muy cómodas, ¡perfectas para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 324, "evidence": "Me encantó el ambiente relajado y social", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "¡Lo recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 73ec7f7f94ac2cd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1564 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 las camas muy cómodas, ¡perfectas para descansar 205 246 \N \N \N 2026-01-31 03:44:20.843889 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el personal fue extremadamente amable y acogedor", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "las camas muy cómodas, ¡perfectas para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 324, "evidence": "Me encantó el ambiente relajado y social", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "¡Lo recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 73ec7f7f94ac2cd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1635 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURqcllYN19nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 2 \N 0.90 Perfect place, near the see 0 27 \N \N \N 2026-01-31 03:45:31.999316 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Perfect place, near the see", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "I woke up with 2 bites on myself", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "I didn't like that the room has no key and the Schrank has no key too", "intensity": 3, "primitive": "SECURITY", "confidence": 0.7, "start_char": 30}], "unmapped": []} 35caf1769bd08f7b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1335 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2xCMFNVeGZVekUzWjNjMVNIbFRZVTUyYTJReWEwRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:19.858221 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1565 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Me encantó el ambiente relajado y social 290 324 \N \N \N 2026-01-31 03:44:20.845321 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el personal fue extremadamente amable y acogedor", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "las camas muy cómodas, ¡perfectas para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 324, "evidence": "Me encantó el ambiente relajado y social", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "¡Lo recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 73ec7f7f94ac2cd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1566 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 ¡Lo recomiendo al 100 % 487 507 \N \N \N 2026-01-31 03:44:20.846652 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el personal fue extremadamente amable y acogedor", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "las camas muy cómodas, ¡perfectas para descansar", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 324, "evidence": "Me encantó el ambiente relajado y social", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 507, "evidence": "¡Lo recomiendo al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 73ec7f7f94ac2cd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1567 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYd2ZqT2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 atmosfera bună 56 70 \N \N \N 2026-01-31 03:44:23.728766 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "atmosfera bună", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "Cu siguranță voi reveni", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Oameni deosebiti Michela e Miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 505a6d0904408cba auto 56bb22c1-8631-4285-b549-8fa7c9944462 1568 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYd2ZqT2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 Cu siguranță voi reveni 71 91 \N \N \N 2026-01-31 03:44:23.730557 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "atmosfera bună", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "Cu siguranță voi reveni", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Oameni deosebiti Michela e Miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 505a6d0904408cba auto 56bb22c1-8631-4285-b549-8fa7c9944462 1570 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Super lieu pour sympathiser avec d'autres voyageurs. 164 204 \N \N \N 2026-01-31 03:44:27.875905 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "Super lieu pour sympathiser avec d'autres voyageurs.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Chambres, pièces de vie, toilettes et douches impeccables, équipées et propres.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Miguel est super sympathique, les autres salariés/bénévoles aussi.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "N'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Localisation au top du top.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1b418eb5de1e61c8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1581 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Todo limpio y ordenado 118 138 \N \N \N 2026-01-31 03:44:38.22059 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Todo limpio y ordenado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ubicación inmejorable al lado de la playa de las canteras", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "Precio imbatible!", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 179}], "unmapped": []} 42b8b6c0a8ee54c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1571 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Chambres, pièces de vie, toilettes et douches impeccables, équipées et propres. 83 134 \N \N \N 2026-01-31 03:44:27.877461 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "Super lieu pour sympathiser avec d'autres voyageurs.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Chambres, pièces de vie, toilettes et douches impeccables, équipées et propres.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Miguel est super sympathique, les autres salariés/bénévoles aussi.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "N'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Localisation au top du top.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1b418eb5de1e61c8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1572 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel est super sympathique, les autres salariés/bénévoles aussi. 135 179 \N \N \N 2026-01-31 03:44:27.878275 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "Super lieu pour sympathiser avec d'autres voyageurs.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Chambres, pièces de vie, toilettes et douches impeccables, équipées et propres.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Miguel est super sympathique, les autres salariés/bénévoles aussi.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "N'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Localisation au top du top.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1b418eb5de1e61c8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1573 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 N'hésitez pas à choisir cette auberge, vous allez passer un super séjour. 204 263 \N \N \N 2026-01-31 03:44:27.879186 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "Super lieu pour sympathiser avec d'autres voyageurs.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Chambres, pièces de vie, toilettes et douches impeccables, équipées et propres.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Miguel est super sympathique, les autres salariés/bénévoles aussi.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "N'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Localisation au top du top.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1b418eb5de1e61c8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1579 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 parecía que estaba en mi casa 147 173 \N \N \N 2026-01-31 03:44:31.832733 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "súper buena gente, dispuestos ayudarte en todo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Se llevan todo el día limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 77}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "hay muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "A 2 calles de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 123}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "parecía que estaba en mi casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 147}], "unmapped": []} 46dae8e45b67756f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1574 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Localisation au top du top. 56 80 \N \N \N 2026-01-31 03:44:27.880048 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 204, "evidence": "Super lieu pour sympathiser avec d'autres voyageurs.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Chambres, pièces de vie, toilettes et douches impeccables, équipées et propres.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Miguel est super sympathique, les autres salariés/bénévoles aussi.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "N'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Localisation au top du top.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 1b418eb5de1e61c8 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1575 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 súper buena gente, dispuestos ayudarte en todo 29 75 \N \N \N 2026-01-31 03:44:31.825845 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "súper buena gente, dispuestos ayudarte en todo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Se llevan todo el día limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 77}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "hay muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "A 2 calles de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 123}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "parecía que estaba en mi casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 147}], "unmapped": []} 46dae8e45b67756f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1576 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Se llevan todo el día limpiando 77 101 \N \N \N 2026-01-31 03:44:31.828158 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "súper buena gente, dispuestos ayudarte en todo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Se llevan todo el día limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 77}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "hay muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "A 2 calles de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 123}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "parecía que estaba en mi casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 147}], "unmapped": []} 46dae8e45b67756f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1577 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 hay muy buen ambiente 103 121 \N \N \N 2026-01-31 03:44:31.829821 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "súper buena gente, dispuestos ayudarte en todo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Se llevan todo el día limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 77}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "hay muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "A 2 calles de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 123}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "parecía que estaba en mi casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 147}], "unmapped": []} 46dae8e45b67756f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1578 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 A 2 calles de la playa 123 145 \N \N \N 2026-01-31 03:44:31.831313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "súper buena gente, dispuestos ayudarte en todo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Se llevan todo el día limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 77}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "hay muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "A 2 calles de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 123}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "parecía que estaba en mi casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 147}], "unmapped": []} 46dae8e45b67756f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1580 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar 0 118 \N \N \N 2026-01-31 03:44:38.216258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Todo limpio y ordenado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ubicación inmejorable al lado de la playa de las canteras", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "Precio imbatible!", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 179}], "unmapped": []} 42b8b6c0a8ee54c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1595 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQ3MWZMVkZREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:44:49.780922 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1776 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCOF9MZnBBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:47:53.483975 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1582 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 ubicación inmejorable al lado de la playa de las canteras 138 179 \N \N \N 2026-01-31 03:44:38.222207 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Todo limpio y ordenado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ubicación inmejorable al lado de la playa de las canteras", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "Precio imbatible!", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 179}], "unmapped": []} 42b8b6c0a8ee54c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1583 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Precio imbatible! 179 196 \N \N \N 2026-01-31 03:44:38.223748 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Todo limpio y ordenado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ubicación inmejorable al lado de la playa de las canteras", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 196, "evidence": "Precio imbatible!", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 179}], "unmapped": []} 42b8b6c0a8ee54c2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1584 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 comodidad de cama 157 174 \N \N \N 2026-01-31 03:44:42.535454 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "comodidad de cama", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "limpieza del lugar excelente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 175}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "La atención del personal", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Buen lugar para compartir experiencias y momentos", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1aa4bc0cd3027cf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1591 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM3OElmdGpBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I can totally recommend it! 103 126 \N \N \N 2026-01-31 03:44:45.974581 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Very cozy hostel and the location is perfect", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "The volunteers always keep the place clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "I can totally recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} d9db34bdf523e2a1 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1585 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 limpieza del lugar excelente 175 203 \N \N \N 2026-01-31 03:44:42.537062 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "comodidad de cama", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "limpieza del lugar excelente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 175}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "La atención del personal", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Buen lugar para compartir experiencias y momentos", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1aa4bc0cd3027cf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1601 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM3c0kyZmJnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:44:54.738214 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 2437 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 muy eficiente 66 81 \N \N \N 2026-01-31 03:58:44.520801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "muy eficiente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "ha sido amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recomiendo 💯", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}], "unmapped": []} a41c2a8a690c5f38 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1586 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 La atención del personal 138 158 \N \N \N 2026-01-31 03:44:42.538498 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "comodidad de cama", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "limpieza del lugar excelente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 175}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "La atención del personal", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Buen lugar para compartir experiencias y momentos", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1aa4bc0cd3027cf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1587 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Buen lugar para compartir experiencias y momentos 61 104 \N \N \N 2026-01-31 03:44:42.539779 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "comodidad de cama", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "limpieza del lugar excelente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 175}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "La atención del personal", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Buen lugar para compartir experiencias y momentos", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1aa4bc0cd3027cf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1588 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Si lo que buscas es un lugar donde te sientas como en casa, es por aquí 0 61 \N \N \N 2026-01-31 03:44:42.541377 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "comodidad de cama", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "limpieza del lugar excelente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 175}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "La atención del personal", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Buen lugar para compartir experiencias y momentos", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1aa4bc0cd3027cf auto 56bb22c1-8631-4285-b549-8fa7c9944462 1589 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM3OElmdGpBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Very cozy hostel and the location is perfect 0 41 \N \N \N 2026-01-31 03:44:45.971607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Very cozy hostel and the location is perfect", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "The volunteers always keep the place clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "I can totally recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} d9db34bdf523e2a1 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1590 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM3OElmdGpBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The volunteers always keep the place clean and tidy 66 101 \N \N \N 2026-01-31 03:44:45.973407 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Very cozy hostel and the location is perfect", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "The volunteers always keep the place clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "I can totally recommend it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} d9db34bdf523e2a1 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1594 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3bDlMVzF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.70 las voluntarias y los huespedes... te asesoran donde ir 76 116 \N \N \N 2026-01-31 03:44:48.852928 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "es el mejor sitio para venir a las palmas de gran canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "te hacen sentirte como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "las voluntarias y los huespedes... te asesoran donde ir", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 76}], "unmapped": []} 911170f7b3831dde auto 56bb22c1-8631-4285-b549-8fa7c9944462 1596 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 there was bed bugs in my friend's bed 36 66 \N \N \N 2026-01-31 03:44:53.815016 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "there was bed bugs in my friend's bed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was horrible", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "the AC didn't work", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "the two showers were transparent", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the wifi was a scam it did not work", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 275}], "unmapped": []} cfc27b006e98e582 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1597 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 it was horrible 103 113 \N \N \N 2026-01-31 03:44:53.818445 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "there was bed bugs in my friend's bed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was horrible", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "the AC didn't work", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "the two showers were transparent", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the wifi was a scam it did not work", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 275}], "unmapped": []} cfc27b006e98e582 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1598 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 3 \N 0.90 the AC didn't work 145 162 \N \N \N 2026-01-31 03:44:53.819653 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "there was bed bugs in my friend's bed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was horrible", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "the AC didn't work", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "the two showers were transparent", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the wifi was a scam it did not work", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 275}], "unmapped": []} cfc27b006e98e582 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1599 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY - 2 3 \N 0.90 the two showers were transparent 227 258 \N \N \N 2026-01-31 03:44:53.821202 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "there was bed bugs in my friend's bed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was horrible", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "the AC didn't work", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "the two showers were transparent", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the wifi was a scam it did not work", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 275}], "unmapped": []} cfc27b006e98e582 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1611 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURyaDdMTXJRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 la increíble comunidad de personas que se encuentran aquí 82 118 \N \N \N 2026-01-31 03:45:05.134607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "la increíble comunidad de personas que se encuentran aquí", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Calidad/precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 120}], "unmapped": []} e21e593efb40d53d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1600 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 2 3 \N 0.90 the wifi was a scam it did not work 275 307 \N \N \N 2026-01-31 03:44:53.822795 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "there was bed bugs in my friend's bed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was horrible", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 103}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "the AC didn't work", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "the two showers were transparent", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the wifi was a scam it did not work", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 275}], "unmapped": []} cfc27b006e98e582 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1602 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 there is a very welcoming atmosphere in this hostel 85 132 \N \N \N 2026-01-31 03:44:58.365212 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "there is a very welcoming atmosphere in this hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "a literal 2 minute walk to a stunning beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "The host Miguel is a lovely man", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "The rooftop is a perfect chill out spot when your tired", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 89a319b0246a3538 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1603 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 a literal 2 minute walk to a stunning beach 54 83 \N \N \N 2026-01-31 03:44:58.366984 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "there is a very welcoming atmosphere in this hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "a literal 2 minute walk to a stunning beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "The host Miguel is a lovely man", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "The rooftop is a perfect chill out spot when your tired", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 89a319b0246a3538 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1604 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 The host Miguel is a lovely man 43 70 \N \N \N 2026-01-31 03:44:58.368617 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "there is a very welcoming atmosphere in this hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "a literal 2 minute walk to a stunning beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "The host Miguel is a lovely man", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "The rooftop is a perfect chill out spot when your tired", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 89a319b0246a3538 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1605 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 The rooftop is a perfect chill out spot when your tired 134 179 \N \N \N 2026-01-31 03:44:58.369992 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "there is a very welcoming atmosphere in this hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "a literal 2 minute walk to a stunning beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "The host Miguel is a lovely man", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "The rooftop is a perfect chill out spot when your tired", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 134}], "unmapped": []} 89a319b0246a3538 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1612 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURyaDdMTXJRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Calidad/precio 120 134 \N \N \N 2026-01-31 03:45:05.136651 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "la increíble comunidad de personas que se encuentran aquí", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Calidad/precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 120}], "unmapped": []} e21e593efb40d53d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1606 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf 211 267 \N \N \N 2026-01-31 03:45:02.869868 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 267, "evidence": "el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "El lugar está limpio y bien cuidado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "recomiendo el hostel a todo el mundo que visita Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 303}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 375, "evidence": "Repetiré sin dudarlo", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 354}], "unmapped": []} 729273041072a696 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4241 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNIMzVERXVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.405356 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1607 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 El lugar está limpio y bien cuidado 174 205 \N \N \N 2026-01-31 03:45:02.872005 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 267, "evidence": "el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "El lugar está limpio y bien cuidado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "recomiendo el hostel a todo el mundo que visita Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 303}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 375, "evidence": "Repetiré sin dudarlo", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 354}], "unmapped": []} 729273041072a696 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1608 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 recomiendo el hostel a todo el mundo que visita Gran Canaria 303 347 \N \N \N 2026-01-31 03:45:02.874262 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 267, "evidence": "el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "El lugar está limpio y bien cuidado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "recomiendo el hostel a todo el mundo que visita Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 303}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 375, "evidence": "Repetiré sin dudarlo", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 354}], "unmapped": []} 729273041072a696 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5745 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great club for gay and not so. 0 30 \N \N \N 2026-01-31 15:18:46.937512 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great club for gay and not so.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "Dramatica show blew... my mind.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 31}], "unmapped": []} 424b08e86a14e324 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1609 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas 124 174 \N \N \N 2026-01-31 03:45:02.876038 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 267, "evidence": "el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "El lugar está limpio y bien cuidado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "recomiendo el hostel a todo el mundo que visita Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 303}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 375, "evidence": "Repetiré sin dudarlo", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 354}], "unmapped": []} 729273041072a696 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1610 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 Repetiré sin dudarlo 354 375 \N \N \N 2026-01-31 03:45:02.877202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 267, "evidence": "el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "El lugar está limpio y bien cuidado", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "recomiendo el hostel a todo el mundo que visita Gran Canaria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 303}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 375, "evidence": "Repetiré sin dudarlo", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 354}], "unmapped": []} 729273041072a696 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1615 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURyaDliX1BnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 perfect for surfing twice a day! 53 80 \N \N \N 2026-01-31 03:45:08.121762 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Great place and energy!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "The beach is just 2 minutes away", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "perfect for surfing twice a day!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 53}], "unmapped": []} e72d9aa88dcf3263 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4242 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNIaTY2c2hnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.407938 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1621 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNyLWZxVU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 el lugar estaba muy limpio y estaban constantemente limpiando 157 197 \N \N \N 2026-01-31 03:45:16.741747 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "el lugar estaba muy limpio y estaban constantemente limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "las voluntarias son súper amables y sociables, y Miguel es increíble, me llevo a surfear", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "10 de 10 el alojamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 199}], "unmapped": []} 49631475cbd81a8d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1622 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNyLWZxVU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 las voluntarias son súper amables y sociables, y Miguel es increíble, me llevo a surfear 66 139 \N \N \N 2026-01-31 03:45:16.74345 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "el lugar estaba muy limpio y estaban constantemente limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "las voluntarias son súper amables y sociables, y Miguel es increíble, me llevo a surfear", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "10 de 10 el alojamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 199}], "unmapped": []} 49631475cbd81a8d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1623 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNyLWZxVU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 10 de 10 el alojamiento 199 221 \N \N \N 2026-01-31 03:45:16.744903 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "el lugar estaba muy limpio y estaban constantemente limpiando", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "las voluntarias son súper amables y sociables, y Miguel es increíble, me llevo a surfear", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 221, "evidence": "10 de 10 el alojamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 199}], "unmapped": []} 49631475cbd81a8d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1624 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 es un lugar muy acogedor 30 50 \N \N \N 2026-01-31 03:45:21.947094 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "es un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "me sentí muy cómoda desde el primer día", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "sin duda volveré", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "muchas gracias por todo!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 183}], "unmapped": []} 61f6233c6c163956 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1625 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 me sentí muy cómoda desde el primer día 51 83 \N \N \N 2026-01-31 03:45:21.955534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "es un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "me sentí muy cómoda desde el primer día", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "sin duda volveré", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "muchas gracias por todo!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 183}], "unmapped": []} 61f6233c6c163956 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1626 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres 84 164 \N \N \N 2026-01-31 03:45:21.957232 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "es un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "me sentí muy cómoda desde el primer día", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "sin duda volveré", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "muchas gracias por todo!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 183}], "unmapped": []} 61f6233c6c163956 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1627 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 sin duda volveré 165 182 \N \N \N 2026-01-31 03:45:21.958449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "es un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "me sentí muy cómoda desde el primer día", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "sin duda volveré", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "muchas gracias por todo!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 183}], "unmapped": []} 61f6233c6c163956 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1628 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOGNITION + 3 3 \N 0.90 muchas gracias por todo! 183 205 \N \N \N 2026-01-31 03:45:21.959655 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "es un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "me sentí muy cómoda desde el primer día", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "sin duda volveré", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "muchas gracias por todo!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 183}], "unmapped": []} 61f6233c6c163956 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1631 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Excelente atención 0 18 \N \N \N 2026-01-31 03:45:28.198391 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "muy facil de llegar desde cualquier parte de la isla", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 89}], "unmapped": []} 7ec3446a9427e0dd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1632 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 muy facil de llegar desde cualquier parte de la isla 20 62 \N \N \N 2026-01-31 03:45:28.199723 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "muy facil de llegar desde cualquier parte de la isla", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 89}], "unmapped": []} 7ec3446a9427e0dd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1633 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 un lugar muy acogedor 66 87 \N \N \N 2026-01-31 03:45:28.200588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "muy facil de llegar desde cualquier parte de la isla", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 89}], "unmapped": []} 7ec3446a9427e0dd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1634 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 10/10 89 93 \N \N \N 2026-01-31 03:45:28.201261 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "muy facil de llegar desde cualquier parte de la isla", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "un lugar muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "10/10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 89}], "unmapped": []} 7ec3446a9427e0dd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1636 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURqcllYN19nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 2 \N 0.80 I woke up with 2 bites on myself 66 89 \N \N \N 2026-01-31 03:45:32.001542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Perfect place, near the see", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "I woke up with 2 bites on myself", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "I didn't like that the room has no key and the Schrank has no key too", "intensity": 3, "primitive": "SECURITY", "confidence": 0.7, "start_char": 30}], "unmapped": []} 35caf1769bd08f7b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1637 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURqcllYN19nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 2 2 \N 0.70 I didn't like that the room has no key and the Schrank has no key too 30 66 \N \N \N 2026-01-31 03:45:32.003527 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Perfect place, near the see", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "I woke up with 2 bites on myself", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "I didn't like that the room has no key and the Schrank has no key too", "intensity": 3, "primitive": "SECURITY", "confidence": 0.7, "start_char": 30}], "unmapped": []} 35caf1769bd08f7b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1639 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURqak9mZXJRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El alojamiento perfecto para sentirse como en casa 0 56 \N \N \N 2026-01-31 03:45:35.176264 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "El alojamiento perfecto para sentirse como en casa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "poder compartir el viaje con otras personas de una forma divertida e interesante", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 57}], "unmapped": []} b2e251206fadf371 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1640 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURqak9mZXJRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMMUNICATION + 3 3 \N 0.90 poder compartir el viaje con otras personas de una forma divertida e interesante 57 109 \N \N \N 2026-01-31 03:45:35.178667 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "El alojamiento perfecto para sentirse como en casa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "poder compartir el viaje con otras personas de una forma divertida e interesante", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 57}], "unmapped": []} b2e251206fadf371 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1641 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNqdHVHVzhnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 There is not a good atmosphere there. 100 126 \N \N \N 2026-01-31 03:45:39.379451 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "There is not a good atmosphere there.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "I did not feel comfortable, there is NO personal space at all", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "The building has no air conditioning. The pictures are old.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}], "unmapped": []} f88728736dac6099 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1642 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNqdHVHVzhnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 I did not feel comfortable, there is NO personal space at all 178 223 \N \N \N 2026-01-31 03:45:39.381341 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "There is not a good atmosphere there.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "I did not feel comfortable, there is NO personal space at all", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "The building has no air conditioning. The pictures are old.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}], "unmapped": []} f88728736dac6099 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1643 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNqdHVHVzhnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 3 \N 0.90 The building has no air conditioning. The pictures are old. 43 83 \N \N \N 2026-01-31 03:45:39.382821 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "There is not a good atmosphere there.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "I did not feel comfortable, there is NO personal space at all", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "The building has no air conditioning. The pictures are old.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}], "unmapped": []} f88728736dac6099 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2631 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pWMVVFNVVkbWd5Ym1nNFQxQnJUbWRmWTI1a1ptYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 y servicio 16 24 \N \N \N 2026-01-31 04:02:50.339538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy bien trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "y servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 16}], "unmapped": []} b1f3b47b3465c35c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1644 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Great location, great service! 0 27 \N \N \N 2026-01-31 03:45:42.461932 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great location, great service!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "great staff, close to Las Canteras.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel is very chill, friendly and helpful.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "I would definitely stay again!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} 4b3a6b56d2aaa41c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1645 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 great staff, close to Las Canteras. 27 56 \N \N \N 2026-01-31 03:45:42.466736 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great location, great service!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "great staff, close to Las Canteras.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel is very chill, friendly and helpful.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "I would definitely stay again!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} 4b3a6b56d2aaa41c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1646 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel is very chill, friendly and helpful. 56 88 \N \N \N 2026-01-31 03:45:42.467898 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great location, great service!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "great staff, close to Las Canteras.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel is very chill, friendly and helpful.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "I would definitely stay again!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} 4b3a6b56d2aaa41c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1647 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 I would definitely stay again! 88 113 \N \N \N 2026-01-31 03:45:42.469423 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Great location, great service!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "great staff, close to Las Canteras.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel is very chill, friendly and helpful.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "I would definitely stay again!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} 4b3a6b56d2aaa41c auto 56bb22c1-8631-4285-b549-8fa7c9944462 1648 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Sehr nettes Personal 0 20 \N \N \N 2026-01-31 03:45:47.213743 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Sehr nettes Personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super Atmosphäre unter den Gästen und Angestellten", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Die Lage direkt am Stadtstrand und Surfspot ist überragend", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "die Betten sind bequem und mit Vorhängen versehen", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Surfboards und Bodyboards können direkt im Hostel gemietet werden", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 220}], "unmapped": []} 9ba5f05627f58bb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1667 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El ambiente es inmejorable 80 100 \N \N \N 2026-01-31 03:46:04.688514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "El ambiente es inmejorable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "el equipo está constantemente asegurándose que todo esté limpio y perfecto", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Sin duda es un sitio para volver", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "está a un minuto de la playa, supermercados y todo lo necesario", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 97db95815c062747 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1649 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 super Atmosphäre unter den Gästen und Angestellten 24 66 \N \N \N 2026-01-31 03:45:47.216478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Sehr nettes Personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super Atmosphäre unter den Gästen und Angestellten", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Die Lage direkt am Stadtstrand und Surfspot ist überragend", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "die Betten sind bequem und mit Vorhängen versehen", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Surfboards und Bodyboards können direkt im Hostel gemietet werden", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 220}], "unmapped": []} 9ba5f05627f58bb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5693 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER ± 2 2 \N 0.70 the crowd there can seem overall rude 83 113 \N \N \N 2026-01-31 15:17:50.63384 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 220, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "mixed", "end_char": 113, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "you will get some great connections there for sure", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 267}], "unmapped": []} c27f86d6e579506c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1650 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Die Lage direkt am Stadtstrand und Surfspot ist überragend 68 109 \N \N \N 2026-01-31 03:45:47.218043 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Sehr nettes Personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super Atmosphäre unter den Gästen und Angestellten", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Die Lage direkt am Stadtstrand und Surfspot ist überragend", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "die Betten sind bequem und mit Vorhängen versehen", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Surfboards und Bodyboards können direkt im Hostel gemietet werden", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 220}], "unmapped": []} 9ba5f05627f58bb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1678 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNOcllTSXRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Com certeza voltarei em breve. 45 66 \N \N \N 2026-01-31 03:46:14.505485 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Com certeza voltarei em breve.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "ótimo atendimento!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Muito bem localizado", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 23}], "unmapped": []} 2c15c56fc0cb0cfb auto 56bb22c1-8631-4285-b549-8fa7c9944462 1651 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.80 die Betten sind bequem und mit Vorhängen versehen 174 218 \N \N \N 2026-01-31 03:45:47.219514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Sehr nettes Personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super Atmosphäre unter den Gästen und Angestellten", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Die Lage direkt am Stadtstrand und Surfspot ist überragend", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "die Betten sind bequem und mit Vorhängen versehen", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Surfboards und Bodyboards können direkt im Hostel gemietet werden", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 220}], "unmapped": []} 9ba5f05627f58bb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1652 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 2 3 \N 0.80 Surfboards und Bodyboards können direkt im Hostel gemietet werden 220 270 \N \N \N 2026-01-31 03:45:47.221018 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Sehr nettes Personal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super Atmosphäre unter den Gästen und Angestellten", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Die Lage direkt am Stadtstrand und Surfspot ist überragend", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "die Betten sind bequem und mit Vorhängen versehen", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Surfboards und Bodyboards können direkt im Hostel gemietet werden", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 220}], "unmapped": []} 9ba5f05627f58bb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2632 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNleUlYa2NBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 no acudir en la fecha citada 0 30 \N \N \N 2026-01-31 04:02:53.104734 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "no acudir en la fecha citada", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "realiza una peritación no adecuada a la póliza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} d8428d885e494104 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5290 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOVERY - 2 3 \N 0.90 Hicieron una prueba de presion y me rompieron una pieza de la la cisterna del baño que luego se negaron a reparar. 73 157 \N \N \N 2026-01-31 15:10:06.15138 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "Hicieron una prueba de presion y me rompieron una pieza de la la cisterna del baño que luego se negaron a reparar.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 1653 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 The terrace Is an Amazing palace where your can meet a lot of Friends and relax. 106 143 \N \N \N 2026-01-31 03:45:51.962069 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "The terrace Is an Amazing palace where your can meet a lot of Friends and relax.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms)", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "The owner Is really friendly with guests", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "The position Is fanstastic, only 3 minutes by walk for the beach.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "I'll come back for sure!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 184}], "unmapped": []} e383737f5ad9538e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1654 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms) 66 116 \N \N \N 2026-01-31 03:45:51.964064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "The terrace Is an Amazing palace where your can meet a lot of Friends and relax.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms)", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "The owner Is really friendly with guests", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "The position Is fanstastic, only 3 minutes by walk for the beach.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "I'll come back for sure!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 184}], "unmapped": []} e383737f5ad9538e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1655 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 The owner Is really friendly with guests 43 76 \N \N \N 2026-01-31 03:45:51.965739 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "The terrace Is an Amazing palace where your can meet a lot of Friends and relax.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms)", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "The owner Is really friendly with guests", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "The position Is fanstastic, only 3 minutes by walk for the beach.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "I'll come back for sure!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 184}], "unmapped": []} e383737f5ad9538e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1656 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 The position Is fanstastic, only 3 minutes by walk for the beach. 144 183 \N \N \N 2026-01-31 03:45:51.967256 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "The terrace Is an Amazing palace where your can meet a lot of Friends and relax.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms)", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "The owner Is really friendly with guests", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "The position Is fanstastic, only 3 minutes by walk for the beach.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "I'll come back for sure!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 184}], "unmapped": []} e383737f5ad9538e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1668 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 el equipo está constantemente asegurándose que todo esté limpio y perfecto 205 248 \N \N \N 2026-01-31 03:46:04.69059 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "El ambiente es inmejorable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "el equipo está constantemente asegurándose que todo esté limpio y perfecto", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Sin duda es un sitio para volver", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "está a un minuto de la playa, supermercados y todo lo necesario", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 97db95815c062747 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1657 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 I'll come back for sure! 184 203 \N \N \N 2026-01-31 03:45:51.968882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "The terrace Is an Amazing palace where your can meet a lot of Friends and relax.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms)", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "The owner Is really friendly with guests", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "The position Is fanstastic, only 3 minutes by walk for the beach.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "I'll come back for sure!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 184}], "unmapped": []} e383737f5ad9538e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1658 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 the relaxed and friendly enviroment that the owner creates around you 83 139 \N \N \N 2026-01-31 03:45:56.144451 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "the relaxed and friendly enviroment that the owner creates around you", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "The staff is kind, they make sure that everything is in order and that your necessities are met in case of need", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "I highly recommend it, I'll come back as soon as I can!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 268}], "unmapped": []} 61e07368d754cfe4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1659 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 The staff is kind, they make sure that everything is in order and that your necessities are met in case of need 140 205 \N \N \N 2026-01-31 03:45:56.146422 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "the relaxed and friendly enviroment that the owner creates around you", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "The staff is kind, they make sure that everything is in order and that your necessities are met in case of need", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "I highly recommend it, I'll come back as soon as I can!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 268}], "unmapped": []} 61e07368d754cfe4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1660 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away 206 267 \N \N \N 2026-01-31 03:45:56.147919 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "the relaxed and friendly enviroment that the owner creates around you", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "The staff is kind, they make sure that everything is in order and that your necessities are met in case of need", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "I highly recommend it, I'll come back as soon as I can!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 268}], "unmapped": []} 61e07368d754cfe4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1661 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I highly recommend it, I'll come back as soon as I can!! 268 307 \N \N \N 2026-01-31 03:45:56.149245 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "the relaxed and friendly enviroment that the owner creates around you", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "The staff is kind, they make sure that everything is in order and that your necessities are met in case of need", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "I highly recommend it, I'll come back as soon as I can!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 268}], "unmapped": []} 61e07368d754cfe4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4243 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQ5LXVUX0l3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.410872 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1662 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Superchill and cozy hostel just a few steps away from the beach and surf. 0 78 \N \N \N 2026-01-31 03:46:00.815882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Superchill and cozy hostel just a few steps away from the beach and surf.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "the staff is very friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 295, "evidence": "this makes it to the very top", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "the bathrooms were spotless and cleaned multiple times a day", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 436, "evidence": "the terrace and the rooftop are great for chilling, socialising and/or working", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}], "unmapped": []} 445ed17e8bc64774 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1663 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 the staff is very friendly and welcoming 100 132 \N \N \N 2026-01-31 03:46:00.818242 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Superchill and cozy hostel just a few steps away from the beach and surf.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "the staff is very friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 295, "evidence": "this makes it to the very top", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "the bathrooms were spotless and cleaned multiple times a day", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 436, "evidence": "the terrace and the rooftop are great for chilling, socialising and/or working", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}], "unmapped": []} 445ed17e8bc64774 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1664 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 this makes it to the very top 265 295 \N \N \N 2026-01-31 03:46:00.82064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Superchill and cozy hostel just a few steps away from the beach and surf.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "the staff is very friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 295, "evidence": "this makes it to the very top", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "the bathrooms were spotless and cleaned multiple times a day", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 436, "evidence": "the terrace and the rooftop are great for chilling, socialising and/or working", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}], "unmapped": []} 445ed17e8bc64774 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1665 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 the bathrooms were spotless and cleaned multiple times a day 226 270 \N \N \N 2026-01-31 03:46:00.822413 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Superchill and cozy hostel just a few steps away from the beach and surf.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "the staff is very friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 295, "evidence": "this makes it to the very top", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "the bathrooms were spotless and cleaned multiple times a day", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 436, "evidence": "the terrace and the rooftop are great for chilling, socialising and/or working", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}], "unmapped": []} 445ed17e8bc64774 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1666 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 the terrace and the rooftop are great for chilling, socialising and/or working 370 436 \N \N \N 2026-01-31 03:46:00.823983 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Superchill and cozy hostel just a few steps away from the beach and surf.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "the staff is very friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 295, "evidence": "this makes it to the very top", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 265}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "the bathrooms were spotless and cleaned multiple times a day", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 436, "evidence": "the terrace and the rooftop are great for chilling, socialising and/or working", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 370}], "unmapped": []} 445ed17e8bc64774 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1669 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Sin duda es un sitio para volver 249 276 \N \N \N 2026-01-31 03:46:04.692139 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "El ambiente es inmejorable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "el equipo está constantemente asegurándose que todo esté limpio y perfecto", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Sin duda es un sitio para volver", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "está a un minuto de la playa, supermercados y todo lo necesario", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 97db95815c062747 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1670 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 está a un minuto de la playa, supermercados y todo lo necesario 134 174 \N \N \N 2026-01-31 03:46:04.693487 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "El ambiente es inmejorable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "el equipo está constantemente asegurándose que todo esté limpio y perfecto", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Sin duda es un sitio para volver", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "está a un minuto de la playa, supermercados y todo lo necesario", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 97db95815c062747 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1671 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROcnNxZTBBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOVERY + 2 3 \N 0.90 pudimos resolver el problema que hemos tenido 146 174 \N \N \N 2026-01-31 03:46:07.604747 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "pudimos resolver el problema que hemos tenido", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "politica de cancelacion muy agresiva para el cliente", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "se me cobro el importe total de los dias (5dias) de alojamiento", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}], "unmapped": []} 961681de7708548e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1672 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROcnNxZTBBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 FRICTION - 2 3 \N 0.90 politica de cancelacion muy agresiva para el cliente 30 66 \N \N \N 2026-01-31 03:46:07.606806 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "pudimos resolver el problema que hemos tenido", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "politica de cancelacion muy agresiva para el cliente", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "se me cobro el importe total de los dias (5dias) de alojamiento", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}], "unmapped": []} 961681de7708548e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1673 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUROcnNxZTBBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY - 2 3 \N 0.90 se me cobro el importe total de los dias (5dias) de alojamiento 82 126 \N \N \N 2026-01-31 03:46:07.608646 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "pudimos resolver el problema que hemos tenido", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "politica de cancelacion muy agresiva para el cliente", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "se me cobro el importe total de los dias (5dias) de alojamiento", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}], "unmapped": []} 961681de7708548e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1674 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel super atensioso com os hospedes 90 122 \N \N \N 2026-01-31 03:46:11.399829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 122, "evidence": "Miguel super atensioso com os hospedes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Melhor hostel de Gran Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "qualidade e atendimento de excelência", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Toda final de semana é minha casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 67}], "unmapped": []} c5521aed2e87be65 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1696 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMxZ3BHcklBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Best hostel in GC for making friends 0 36 \N \N \N 2026-01-31 03:46:31.312489 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Best hostel in GC for making friends", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "close to the beach", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}], "unmapped": []} 81a733a03edcd1ff auto 56bb22c1-8631-4285-b549-8fa7c9944462 1675 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Melhor hostel de Gran Canarias 0 30 \N \N \N 2026-01-31 03:46:11.401636 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 122, "evidence": "Miguel super atensioso com os hospedes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Melhor hostel de Gran Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "qualidade e atendimento de excelência", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Toda final de semana é minha casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 67}], "unmapped": []} c5521aed2e87be65 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1676 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY + 3 3 \N 0.90 qualidade e atendimento de excelência 34 66 \N \N \N 2026-01-31 03:46:11.402899 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 122, "evidence": "Miguel super atensioso com os hospedes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Melhor hostel de Gran Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "qualidade e atendimento de excelência", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Toda final de semana é minha casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 67}], "unmapped": []} c5521aed2e87be65 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1677 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 Toda final de semana é minha casa 67 90 \N \N \N 2026-01-31 03:46:11.404146 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 122, "evidence": "Miguel super atensioso com os hospedes", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Melhor hostel de Gran Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "qualidade e atendimento de excelência", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Toda final de semana é minha casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 67}], "unmapped": []} c5521aed2e87be65 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1747 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURKMGV2RVF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Un posto fantastico 0 22 \N \N \N 2026-01-31 03:47:23.022069 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "personale meraviglioso", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Un posto fantastico", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 663cd2de227336c0 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1679 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNOcllTSXRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 ótimo atendimento! 30 46 \N \N \N 2026-01-31 03:46:14.507647 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Com certeza voltarei em breve.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "ótimo atendimento!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Muito bem localizado", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 23}], "unmapped": []} 2c15c56fc0cb0cfb auto 56bb22c1-8631-4285-b549-8fa7c9944462 1680 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNOcllTSXRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Muito bem localizado 23 42 \N \N \N 2026-01-31 03:46:14.509347 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Com certeza voltarei em breve.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "ótimo atendimento!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Muito bem localizado", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 23}], "unmapped": []} 2c15c56fc0cb0cfb auto 56bb22c1-8631-4285-b549-8fa7c9944462 1681 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNOeUstSVlnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Alles gut 0 9 \N \N \N 2026-01-31 03:46:15.617442 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 9, "evidence": "Alles gut", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 71a33e50c0c5d172 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1682 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNObnVDbGVnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 3 3 \N 0.90 Bedbugs! 0 8 \N \N \N 2026-01-31 03:46:16.761869 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 8, "evidence": "Bedbugs!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5f0363b95b559755 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4244 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNkaFBPeWJnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.413997 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2797 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURkek9TUGVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:04.627788 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1683 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQxdWRYbTZ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOVERY + 2 3 \N 0.90 they were reasonable and refunded me 90 116 \N \N \N 2026-01-31 03:46:20.209044 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "they were reasonable and refunded me", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "I really appreciate fair people", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "I'll definitely go there since I get a chance", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 130}], "unmapped": []} ddc90c3fb055f419 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1684 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQxdWRYbTZ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY + 2 3 \N 0.90 I really appreciate fair people 66 90 \N \N \N 2026-01-31 03:46:20.212613 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "they were reasonable and refunded me", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "I really appreciate fair people", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "I'll definitely go there since I get a chance", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 130}], "unmapped": []} ddc90c3fb055f419 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1685 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQxdWRYbTZ3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 2 3 \N 0.90 I'll definitely go there since I get a chance 130 157 \N \N \N 2026-01-31 03:46:20.213677 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "they were reasonable and refunded me", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "I really appreciate fair people", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "I'll definitely go there since I get a chance", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 130}], "unmapped": []} ddc90c3fb055f419 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1686 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQxd0lMbVlnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 La gente cálida y amable de Pura Vida es muy agradable. 78 116 \N \N \N 2026-01-31 03:46:22.693631 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "La gente cálida y amable de Pura Vida es muy agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Me divertí mucho aquí y los pocos días que estuve en este complejo tuve los mejores días.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2023a3ab6dbabb00 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1687 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQxd0lMbVlnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Me divertí mucho aquí y los pocos días que estuve en este complejo tuve los mejores días. 0 83 \N \N \N 2026-01-31 03:46:22.69558 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "La gente cálida y amable de Pura Vida es muy agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Me divertí mucho aquí y los pocos días que estuve en este complejo tuve los mejores días.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2023a3ab6dbabb00 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1688 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 3 3 \N 0.90 Très sale, insalubre. 0 20 \N \N \N 2026-01-31 03:46:25.959675 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Très sale, insalubre.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 112, "evidence": "Vétuste aucune conformité avec les normes électriques et de sécurité.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "N'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "A DÉNONCER À L'ADMINISTRATION FISCALE.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} e0cf37443883177a auto 56bb22c1-8631-4285-b549-8fa7c9944462 5746 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Dramatica show blew... my mind. 31 60 \N \N \N 2026-01-31 15:18:46.94096 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great club for gay and not so.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "Dramatica show blew... my mind.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 31}], "unmapped": []} 424b08e86a14e324 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1689 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 3 3 \N 0.90 Vétuste aucune conformité avec les normes électriques et de sécurité. 66 112 \N \N \N 2026-01-31 03:46:25.961702 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Très sale, insalubre.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 112, "evidence": "Vétuste aucune conformité avec les normes électriques et de sécurité.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "N'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "A DÉNONCER À L'ADMINISTRATION FISCALE.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} e0cf37443883177a auto 56bb22c1-8631-4285-b549-8fa7c9944462 4245 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURONDRqNmJ3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.417468 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1690 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 3 3 \N 0.70 N'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES. 112 144 \N \N \N 2026-01-31 03:46:25.963336 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Très sale, insalubre.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 112, "evidence": "Vétuste aucune conformité avec les normes électriques et de sécurité.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "N'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "A DÉNONCER À L'ADMINISTRATION FISCALE.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} e0cf37443883177a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1691 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 3 3 \N 0.70 A DÉNONCER À L'ADMINISTRATION FISCALE. 145 174 \N \N \N 2026-01-31 03:46:25.964857 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Très sale, insalubre.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 112, "evidence": "Vétuste aucune conformité avec les normes électriques et de sécurité.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "N'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "A DÉNONCER À L'ADMINISTRATION FISCALE.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 145}], "unmapped": []} e0cf37443883177a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1692 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 Sitio sucio saturado 0 22 \N \N \N 2026-01-31 03:46:29.387122 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "Sitio sucio saturado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 32, "evidence": "todo roto", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "litera super peligrosa porque no tiene escalera", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "no se cómo puede estar abierto este albergue", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 79}], "unmapped": []} 916345aa94c6dec6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1693 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 3 \N 0.90 todo roto 23 32 \N \N \N 2026-01-31 03:46:29.38894 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "Sitio sucio saturado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 32, "evidence": "todo roto", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "litera super peligrosa porque no tiene escalera", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "no se cómo puede estar abierto este albergue", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 79}], "unmapped": []} 916345aa94c6dec6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1694 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 2 3 \N 0.90 litera super peligrosa porque no tiene escalera 33 78 \N \N \N 2026-01-31 03:46:29.390598 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "Sitio sucio saturado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 32, "evidence": "todo roto", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "litera super peligrosa porque no tiene escalera", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "no se cómo puede estar abierto este albergue", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 79}], "unmapped": []} 916345aa94c6dec6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1695 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY - 2 3 \N 0.90 no se cómo puede estar abierto este albergue 79 109 \N \N \N 2026-01-31 03:46:29.392044 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 22, "evidence": "Sitio sucio saturado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 32, "evidence": "todo roto", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "litera super peligrosa porque no tiene escalera", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "no se cómo puede estar abierto este albergue", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 79}], "unmapped": []} 916345aa94c6dec6 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4246 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMxM3ZxZFVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.420387 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1698 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 the bathrooms were not as expected, pretty dirty 196 227 \N \N \N 2026-01-31 03:46:34.751737 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "the bathrooms were not as expected, pretty dirty", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "The smell was bad and the aircon was not working", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "the owner of a hostel wanted us not to stay. Basically he kicked us out", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": [{"label": "General dissatisfaction", "evidence": "The kitchen so so.", "confidence": 0.5}]} b322ab65c4724cac auto 56bb22c1-8631-4285-b549-8fa7c9944462 1699 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 The smell was bad and the aircon was not working 118 151 \N \N \N 2026-01-31 03:46:34.754005 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "the bathrooms were not as expected, pretty dirty", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "The smell was bad and the aircon was not working", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "the owner of a hostel wanted us not to stay. Basically he kicked us out", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": [{"label": "General dissatisfaction", "evidence": "The kitchen so so.", "confidence": 0.5}]} b322ab65c4724cac auto 56bb22c1-8631-4285-b549-8fa7c9944462 1700 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 3 3 \N 0.90 the owner of a hostel wanted us not to stay. Basically he kicked us out 0 78 \N \N \N 2026-01-31 03:46:34.755522 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "the bathrooms were not as expected, pretty dirty", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "The smell was bad and the aircon was not working", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "the owner of a hostel wanted us not to stay. Basically he kicked us out", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": [{"label": "General dissatisfaction", "evidence": "The kitchen so so.", "confidence": 0.5}]} b322ab65c4724cac auto 56bb22c1-8631-4285-b549-8fa7c9944462 1701 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.50 The kitchen so so. \N \N {"General dissatisfaction"} \N \N 2026-01-31 03:46:34.756803 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "the bathrooms were not as expected, pretty dirty", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 196}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "The smell was bad and the aircon was not working", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "the owner of a hostel wanted us not to stay. Basically he kicked us out", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": [{"label": "General dissatisfaction", "evidence": "The kitchen so so.", "confidence": 0.5}]} b322ab65c4724cac auto 56bb22c1-8631-4285-b549-8fa7c9944462 1702 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 the hostel in general is not clean 174 203 \N \N \N 2026-01-31 03:46:39.440917 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "the hostel in general is not clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "I didn’t like the atmosphere at all", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 276, "evidence": "there are a lot of services (fridges or food compartments for example) that have the sign 'only for staff'", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 203}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "pictures (must be taken many years ago because didn’t match with the reality at all)", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}], "unmapped": []} dc54adce7ec18d31 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1703 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 2 \N 0.90 I didn’t like the atmosphere at all 83 109 \N \N \N 2026-01-31 03:46:39.443543 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "the hostel in general is not clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "I didn’t like the atmosphere at all", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 276, "evidence": "there are a lot of services (fridges or food compartments for example) that have the sign 'only for staff'", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 203}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "pictures (must be taken many years ago because didn’t match with the reality at all)", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}], "unmapped": []} dc54adce7ec18d31 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4247 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNSaXY2WE1REAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.42286 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1704 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY - 2 2 \N 0.70 there are a lot of services (fridges or food compartments for example) that have the sign 'only for staff' 203 276 \N \N \N 2026-01-31 03:46:39.445235 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "the hostel in general is not clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "I didn’t like the atmosphere at all", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 276, "evidence": "there are a lot of services (fridges or food compartments for example) that have the sign 'only for staff'", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 203}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "pictures (must be taken many years ago because didn’t match with the reality at all)", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}], "unmapped": []} dc54adce7ec18d31 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1705 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY - 2 3 \N 0.80 pictures (must be taken many years ago because didn’t match with the reality at all) 66 139 \N \N \N 2026-01-31 03:46:39.446688 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "the hostel in general is not clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "I didn’t like the atmosphere at all", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 276, "evidence": "there are a lot of services (fridges or food compartments for example) that have the sign 'only for staff'", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 203}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "pictures (must be taken many years ago because didn’t match with the reality at all)", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 66}], "unmapped": []} dc54adce7ec18d31 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1706 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNscDQ3RmhnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:46:40.133474 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 4887 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 everything perfect and easy. 20 42 \N \N \N 2026-01-31 15:01:06.485638 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "I can recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "everything perfect and easy.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} c2e2cf4eb0b8da5b en 07c01d3a-3443-4031-910c-7b6feba2c100 1707 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El sitio es inmejorable a 2 minutos de la playa. 0 54 \N \N \N 2026-01-31 03:46:43.805963 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "El sitio es inmejorable a 2 minutos de la playa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "La atención muy cuidada, muy detallista para que estes muy agusto.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Sin duda un gran sitio donde quedarse.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "En breve volvere con mucho gusto.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} d92d7082419d36b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1708 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 La atención muy cuidada, muy detallista para que estes muy agusto. 90 135 \N \N \N 2026-01-31 03:46:43.808242 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "El sitio es inmejorable a 2 minutos de la playa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "La atención muy cuidada, muy detallista para que estes muy agusto.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Sin duda un gran sitio donde quedarse.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "En breve volvere con mucho gusto.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} d92d7082419d36b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1709 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Sin duda un gran sitio donde quedarse. 136 165 \N \N \N 2026-01-31 03:46:43.809619 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "El sitio es inmejorable a 2 minutos de la playa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "La atención muy cuidada, muy detallista para que estes muy agusto.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Sin duda un gran sitio donde quedarse.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "En breve volvere con mucho gusto.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} d92d7082419d36b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1710 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 En breve volvere con mucho gusto. 166 192 \N \N \N 2026-01-31 03:46:43.811338 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "El sitio es inmejorable a 2 minutos de la playa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "La atención muy cuidada, muy detallista para que estes muy agusto.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Sin duda un gran sitio donde quedarse.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "En breve volvere con mucho gusto.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 166}], "unmapped": []} d92d7082419d36b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1711 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 3 3 \N 0.90 I don't reccomand anyone. 66 87 \N \N \N 2026-01-31 03:46:47.860344 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 87, "evidence": "I don't reccomand anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "The volunteer were awfull and they verbally harassed me.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 448, "evidence": "what happens to me its called bullying", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 420}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "I hope now service has been improved.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 368}], "unmapped": []} c19fa4b78f776003 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1712 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS - 3 3 \N 0.90 The volunteer were awfull and they verbally harassed me. 90 134 \N \N \N 2026-01-31 03:46:47.861805 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 87, "evidence": "I don't reccomand anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "The volunteer were awfull and they verbally harassed me.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 448, "evidence": "what happens to me its called bullying", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 420}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "I hope now service has been improved.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 368}], "unmapped": []} c19fa4b78f776003 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1713 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 3 3 \N 0.90 what happens to me its called bullying 420 448 \N \N \N 2026-01-31 03:46:47.863076 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 87, "evidence": "I don't reccomand anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "The volunteer were awfull and they verbally harassed me.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 448, "evidence": "what happens to me its called bullying", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 420}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "I hope now service has been improved.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 368}], "unmapped": []} c19fa4b78f776003 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1714 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOVERY - 2 3 \N 0.70 I hope now service has been improved. 368 396 \N \N \N 2026-01-31 03:46:47.864497 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 87, "evidence": "I don't reccomand anyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "The volunteer were awfull and they verbally harassed me.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 448, "evidence": "what happens to me its called bullying", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 420}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "I hope now service has been improved.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.7, "start_char": 368}], "unmapped": []} c19fa4b78f776003 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1715 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 The people who work there are super kind 4 41 \N \N \N 2026-01-31 03:46:51.152478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "The people who work there are super kind", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "with good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "5€ surf board rental just by the sea", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Great for some chill times", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} dd5db6358c7668a3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4248 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNoaGZLWC13RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.425397 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1716 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 with good vibes 41 56 \N \N \N 2026-01-31 03:46:51.155121 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "The people who work there are super kind", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "with good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "5€ surf board rental just by the sea", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Great for some chill times", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} dd5db6358c7668a3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1717 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 5€ surf board rental just by the sea 56 84 \N \N \N 2026-01-31 03:46:51.158053 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "The people who work there are super kind", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "with good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "5€ surf board rental just by the sea", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Great for some chill times", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} dd5db6358c7668a3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1718 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Great for some chill times 85 109 \N \N \N 2026-01-31 03:46:51.159906 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "The people who work there are super kind", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "with good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "5€ surf board rental just by the sea", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Great for some chill times", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} dd5db6358c7668a3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1719 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNabXJLR3pRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 3 3 \N 0.90 No recomendable 0 14 \N \N \N 2026-01-31 03:46:52.720269 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 14, "evidence": "No recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} bcc3b5a0d94d1a96 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1720 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 había súper buen ambiente 66 86 \N \N \N 2026-01-31 03:46:57.599938 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "había súper buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "llegué a sentirme como en casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Lo recomiendo absolutamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "si vuelvo a Gran Canarias, vuelvo a casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 213}], "unmapped": []} 2f1f3ed04f8e8264 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1721 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 llegué a sentirme como en casa 87 113 \N \N \N 2026-01-31 03:46:57.602089 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "había súper buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "llegué a sentirme como en casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Lo recomiendo absolutamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "si vuelvo a Gran Canarias, vuelvo a casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 213}], "unmapped": []} 2f1f3ed04f8e8264 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1722 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Lo recomiendo absolutamente 182 205 \N \N \N 2026-01-31 03:46:57.603575 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "había súper buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "llegué a sentirme como en casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Lo recomiendo absolutamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "si vuelvo a Gran Canarias, vuelvo a casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 213}], "unmapped": []} 2f1f3ed04f8e8264 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1723 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 si vuelvo a Gran Canarias, vuelvo a casa 213 241 \N \N \N 2026-01-31 03:46:57.604943 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 86, "evidence": "había súper buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "llegué a sentirme como en casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Lo recomiendo absolutamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "si vuelvo a Gran Canarias, vuelvo a casa", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 213}], "unmapped": []} 2f1f3ed04f8e8264 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1724 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNLaWJmY3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 10/10 would recommend! 92 113 \N \N \N 2026-01-31 03:47:01.392548 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "10/10 would recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Well taken care of and great location.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "amazing people and staff, especially Miguel", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 86a8cccf5118dfb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1725 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNLaWJmY3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Well taken care of and great location. 36 66 \N \N \N 2026-01-31 03:47:01.394633 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "10/10 would recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Well taken care of and great location.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "amazing people and staff, especially Miguel", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 86a8cccf5118dfb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1726 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNLaWJmY3ZRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 amazing people and staff, especially Miguel 66 92 \N \N \N 2026-01-31 03:47:01.396335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "10/10 would recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Well taken care of and great location.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "amazing people and staff, especially Miguel", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 86a8cccf5118dfb5 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1877 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMydk8yYkRnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:49:34.949776 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1727 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURwMUxmaW1nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 lidé kteří tam pracovali byli moc milí 37 66 \N \N \N 2026-01-31 03:47:04.459179 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lidé kteří tam pracovali byli moc milí", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "majitel byl opravdu moc hodný a laskavý", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "byla to skvělá zkusenost", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}], "unmapped": []} 428a00afc0708560 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1728 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURwMUxmaW1nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 majitel byl opravdu moc hodný a laskavý 73 104 \N \N \N 2026-01-31 03:47:04.462959 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lidé kteří tam pracovali byli moc milí", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "majitel byl opravdu moc hodný a laskavý", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "byla to skvělá zkusenost", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}], "unmapped": []} 428a00afc0708560 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1729 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURwMUxmaW1nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 byla to skvělá zkusenost 22 46 \N \N \N 2026-01-31 03:47:04.464416 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lidé kteří tam pracovali byli moc milí", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "majitel byl opravdu moc hodný a laskavý", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "byla to skvělá zkusenost", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}], "unmapped": []} 428a00afc0708560 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4249 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURCc3ZXZFVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.427542 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1731 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURwMUwyaGlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 super close to the surfspot 30 56 \N \N \N 2026-01-31 03:47:07.410585 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 19, "evidence": "Good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "super close to the surfspot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Miguel is a good mate", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 61}], "unmapped": []} 1e5a37bdcdbea486 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1732 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURwMUwyaGlRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel is a good mate 61 80 \N \N \N 2026-01-31 03:47:07.412269 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 19, "evidence": "Good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "super close to the surfspot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Miguel is a good mate", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 61}], "unmapped": []} 1e5a37bdcdbea486 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1733 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar 41 92 \N \N \N 2026-01-31 03:47:11.567085 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "El sitio estaba limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "tenía una terraza muy chula", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "no tuve ningún problema", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 73}], "unmapped": []} ee68cd169a6723b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4947 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB Food_Dining.Cafe FOOD_DINING 1.2 AVAILABILITY - 1 2 \N 0.80 More highchairs are definitely needed though 80 109 \N \N \N 2026-01-31 15:02:20.832786 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "the staff are lovely and amazing with kids", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "More highchairs are definitely needed though", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 80}], "unmapped": []} f286dea4645ed821 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 1734 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 El sitio estaba limpio 30 48 \N \N \N 2026-01-31 03:47:11.572514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "El sitio estaba limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "tenía una terraza muy chula", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "no tuve ningún problema", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 73}], "unmapped": []} ee68cd169a6723b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1735 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 tenía una terraza muy chula 49 70 \N \N \N 2026-01-31 03:47:11.573827 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "El sitio estaba limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "tenía una terraza muy chula", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "no tuve ningún problema", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 73}], "unmapped": []} ee68cd169a6723b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1736 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY + 3 3 \N 0.90 no tuve ningún problema 73 93 \N \N \N 2026-01-31 03:47:11.575038 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "El sitio estaba limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "tenía una terraza muy chula", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "no tuve ningún problema", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 73}], "unmapped": []} ee68cd169a6723b2 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1737 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 3 3 \N 0.90 colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos 267 319 \N \N \N 2026-01-31 03:47:15.598611 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 319, "evidence": "colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "la habitación tenía golpes en las paredes y cero ventanas para airearla", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 367}], "unmapped": []} bd5f1c2a6e641520 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1738 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 3 3 \N 0.90 la habitación tenía golpes en las paredes y cero ventanas para airearla 319 367 \N \N \N 2026-01-31 03:47:15.601458 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 319, "evidence": "colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "la habitación tenía golpes en las paredes y cero ventanas para airearla", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 367}], "unmapped": []} bd5f1c2a6e641520 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1748 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR4X09IVkR3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 curato e pulito 20 34 \N \N \N 2026-01-31 03:47:26.166612 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "curato e pulito", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "In posizione ottima vicino alla passeggiata de Las canteras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "ottimo per fare surf", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 79}], "unmapped": []} fa261e540847e458 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1739 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY - 3 3 \N 0.90 nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas 118 196 \N \N \N 2026-01-31 03:47:15.602688 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 319, "evidence": "colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "la habitación tenía golpes en las paredes y cero ventanas para airearla", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 367}], "unmapped": []} bd5f1c2a6e641520 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1740 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 3 3 \N 0.90 la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia 367 426 \N \N \N 2026-01-31 03:47:15.604102 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 319, "evidence": "colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "la habitación tenía golpes en las paredes y cero ventanas para airearla", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "negative", "end_char": 196, "evidence": "nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 367}], "unmapped": []} bd5f1c2a6e641520 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1741 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURKeTV6a3l3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:47:16.421024 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 4250 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtcmFuUGZREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.430453 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1742 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURKaTRMMk5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 no tuvimos una mejora en el servicio 85 113 \N \N \N 2026-01-31 03:47:19.488175 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "no tuvimos una mejora en el servicio", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Las CHINCHES nos acribillaron a muchas de nosotras", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "estamos segura que el dueño era conocedor de la situación", "intensity": 4, "primitive": "ETHICS", "confidence": 0.8, "start_char": 117}], "unmapped": []} 24528a2a6b3476c7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1743 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURKaTRMMk5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 3 3 \N 0.90 Las CHINCHES nos acribillaron a muchas de nosotras 51 83 \N \N \N 2026-01-31 03:47:19.490518 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "no tuvimos una mejora en el servicio", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Las CHINCHES nos acribillaron a muchas de nosotras", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "estamos segura que el dueño era conocedor de la situación", "intensity": 4, "primitive": "ETHICS", "confidence": 0.8, "start_char": 117}], "unmapped": []} 24528a2a6b3476c7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5747 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-40 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Really liked the atmosphere. 30 56 \N \N \N 2026-01-31 15:18:50.051472 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Really liked the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Barmaids are really friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "I had lost my phone and you guys just picked it up and saved my night", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 84}], "unmapped": []} 16359e12da701779 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1744 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURKaTRMMk5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 2 3 \N 0.80 estamos segura que el dueño era conocedor de la situación 117 151 \N \N \N 2026-01-31 03:47:19.492443 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "no tuvimos una mejora en el servicio", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Las CHINCHES nos acribillaron a muchas de nosotras", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "estamos segura que el dueño era conocedor de la situación", "intensity": 4, "primitive": "ETHICS", "confidence": 0.8, "start_char": 117}], "unmapped": []} 24528a2a6b3476c7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1745 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURKaTl5VVpBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 Tiene chinche. 10 20 \N \N \N 2026-01-31 03:47:20.990347 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Tiene chinche.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 10}], "unmapped": []} afbb9e05c032f0b0 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1746 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURKMGV2RVF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOGNITION + 3 3 \N 0.90 personale meraviglioso 27 48 \N \N \N 2026-01-31 03:47:23.020176 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "personale meraviglioso", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Un posto fantastico", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 663cd2de227336c0 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1749 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR4X09IVkR3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 In posizione ottima vicino alla passeggiata de Las canteras 35 78 \N \N \N 2026-01-31 03:47:26.169399 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "curato e pulito", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "In posizione ottima vicino alla passeggiata de Las canteras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "ottimo per fare surf", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 79}], "unmapped": []} fa261e540847e458 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1750 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR4X09IVkR3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 ottimo per fare surf 79 97 \N \N \N 2026-01-31 03:47:26.171361 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "curato e pulito", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "In posizione ottima vicino alla passeggiata de Las canteras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "ottimo per fare surf", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 79}], "unmapped": []} fa261e540847e458 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1751 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN4OU0zbi13RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:47:27.847498 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1752 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURSemNtTjNRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Amazing place 0 13 \N \N \N 2026-01-31 03:47:29.19047 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Amazing place", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8436d7f26deadedf auto 56bb22c1-8631-4285-b549-8fa7c9944462 4251 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtbk56OVJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.433852 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1753 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 2 \N 0.90 no muy limpios 85 97 \N \N \N 2026-01-31 03:47:34.692975 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "no muy limpios", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "antiquados", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "no tenía ni escalera", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "está cerca del mar", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "habitaciones solo para mujeres", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 108}], "unmapped": []} 35eaa0f5cc575c55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1754 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 2 \N 0.90 antiquados 99 108 \N \N \N 2026-01-31 03:47:34.694592 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "no muy limpios", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "antiquados", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "no tenía ni escalera", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "está cerca del mar", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "habitaciones solo para mujeres", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 108}], "unmapped": []} 35eaa0f5cc575c55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1755 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY - 2 2 \N 0.90 no tenía ni escalera 22 39 \N \N \N 2026-01-31 03:47:34.696406 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "no muy limpios", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "antiquados", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "no tenía ni escalera", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "está cerca del mar", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "habitaciones solo para mujeres", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 108}], "unmapped": []} 35eaa0f5cc575c55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1806 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCM09xRTJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 2 \N 0.90 toilets always dirty 28 50 \N \N \N 2026-01-31 03:48:22.257052 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Good position of the hostel", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "toilets always dirty", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}], "unmapped": []} 8915345a1d1b01fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1756 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 1 2 \N 0.80 está cerca del mar 66 84 \N \N \N 2026-01-31 03:47:34.698036 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "no muy limpios", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "antiquados", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "no tenía ni escalera", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "está cerca del mar", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "habitaciones solo para mujeres", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 108}], "unmapped": []} 35eaa0f5cc575c55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1757 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 1 2 \N 0.80 habitaciones solo para mujeres 108 136 \N \N \N 2026-01-31 03:47:34.699534 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "no muy limpios", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "antiquados", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "no tenía ni escalera", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "está cerca del mar", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "habitaciones solo para mujeres", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 108}], "unmapped": []} 35eaa0f5cc575c55 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1759 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 Friendly staff 0 13 \N \N \N 2026-01-31 03:47:40.917014 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "really good value for the money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would definitely recommend!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The beach and shops are super close to the hostel, and bus stops are nearby too.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} ea83e635a6e569cd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1760 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.90 comfortable beds 20 36 \N \N \N 2026-01-31 03:47:40.920214 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "really good value for the money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would definitely recommend!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The beach and shops are super close to the hostel, and bus stops are nearby too.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} ea83e635a6e569cd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1761 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 really good value for the money 82 113 \N \N \N 2026-01-31 03:47:40.921703 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "really good value for the money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would definitely recommend!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The beach and shops are super close to the hostel, and bus stops are nearby too.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} ea83e635a6e569cd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1807 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCaS11YzhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:48:22.974654 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1762 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 2 3 \N 0.90 I would definitely recommend! 114 139 \N \N \N 2026-01-31 03:47:40.92305 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "really good value for the money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would definitely recommend!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The beach and shops are super close to the hostel, and bus stops are nearby too.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} ea83e635a6e569cd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1763 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 3 \N 0.90 The beach and shops are super close to the hostel, and bus stops are nearby too. 41 109 \N \N \N 2026-01-31 03:47:40.924625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly staff", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "really good value for the money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would definitely recommend!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The beach and shops are super close to the hostel, and bus stops are nearby too.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} ea83e635a6e569cd auto 56bb22c1-8631-4285-b549-8fa7c9944462 1767 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNoNUo2UkRnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 un gran espíritu que te permite sentirte como en familia 66 107 \N \N \N 2026-01-31 03:47:46.993526 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "un gran espíritu que te permite sentirte como en familia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "control del silencio nocturno también es bueno para dormir bien", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Merece la pena, buen precio y situación inmejorable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}], "unmapped": []} ea17c23d40cd88ad auto 56bb22c1-8631-4285-b549-8fa7c9944462 1768 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNoNUo2UkRnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.80 control del silencio nocturno también es bueno para dormir bien 108 145 \N \N \N 2026-01-31 03:47:46.995204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "un gran espíritu que te permite sentirte como en familia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "control del silencio nocturno también es bueno para dormir bien", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Merece la pena, buen precio y situación inmejorable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}], "unmapped": []} ea17c23d40cd88ad auto 56bb22c1-8631-4285-b549-8fa7c9944462 4948 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 Amazing place for activities after school or on weekends. 0 56 \N \N \N 2026-01-31 15:02:22.300314 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Amazing place for activities after school or on weekends.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7c18e8bb242d7082 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 1769 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNoNUo2UkRnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Merece la pena, buen precio y situación inmejorable 146 182 \N \N \N 2026-01-31 03:47:46.996662 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "un gran espíritu que te permite sentirte como en familia", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "control del silencio nocturno también es bueno para dormir bien", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Merece la pena, buen precio y situación inmejorable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}], "unmapped": []} ea17c23d40cd88ad auto 56bb22c1-8631-4285-b549-8fa7c9944462 1770 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNoNUp5QWt3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 overall nice place 36 52 \N \N \N 2026-01-31 03:47:48.179898 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 52, "evidence": "overall nice place", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}], "unmapped": []} ac1836651f09a400 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1771 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNocE9DX0dnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 a vibe dos seus funcionários é incrível 34 66 \N \N \N 2026-01-31 03:47:50.753907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "a vibe dos seus funcionários é incrível", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "A localização do hostel é incrível", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "o lugar ideal é la!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} ffb66caecde2ee60 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1772 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNocE9DX0dnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 3 \N 0.90 A localização do hostel é incrível 0 30 \N \N \N 2026-01-31 03:47:50.75671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "a vibe dos seus funcionários é incrível", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "A localização do hostel é incrível", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "o lugar ideal é la!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} ffb66caecde2ee60 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1773 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNocE9DX0dnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 2 3 \N 0.90 o lugar ideal é la! 92 113 \N \N \N 2026-01-31 03:47:50.758128 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "a vibe dos seus funcionários é incrível", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "A localização do hostel é incrível", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "o lugar ideal é la!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} ffb66caecde2ee60 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4252 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtX19xcmx3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.437814 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1777 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCdnVuR21nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 una pesadilla 118 130 \N \N \N 2026-01-31 03:47:56.742317 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 130, "evidence": "una pesadilla", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "una persona magnífica agradable y mejor persona", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Dissatisfaction with sleep quality and facilities", "evidence": "Si queréis tranquilidad y dormir buscaros otra cosa pero si queréis hacer lo que os de la gana este es tu lugar.Yo estuve 10 días no dormí nada para ducharte tenías que esperar y cuando estabas duchandote te aporreaban la puerta para que terminarás.", "confidence": 0.8}]} fbbe31733a7ff8ef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1778 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCdnVuR21nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 una persona magnífica agradable y mejor persona 164 205 \N \N \N 2026-01-31 03:47:56.744173 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 130, "evidence": "una pesadilla", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "una persona magnífica agradable y mejor persona", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Dissatisfaction with sleep quality and facilities", "evidence": "Si queréis tranquilidad y dormir buscaros otra cosa pero si queréis hacer lo que os de la gana este es tu lugar.Yo estuve 10 días no dormí nada para ducharte tenías que esperar y cuando estabas duchandote te aporreaban la puerta para que terminarás.", "confidence": 0.8}]} fbbe31733a7ff8ef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1779 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCdnVuR21nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.80 Si queréis tranquilidad y dormir buscaros otra cosa pero si queréis hacer lo que os de la gana este es tu lugar.Yo estuve 10 días no dormí nada para ducharte tenías que esperar y cuando estabas duchandote te aporreaban la puerta para que terminarás. \N \N {"Dissatisfaction with sleep quality and facilities"} \N \N 2026-01-31 03:47:56.745697 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 130, "evidence": "una pesadilla", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "una persona magnífica agradable y mejor persona", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Dissatisfaction with sleep quality and facilities", "evidence": "Si queréis tranquilidad y dormir buscaros otra cosa pero si queréis hacer lo que os de la gana este es tu lugar.Yo estuve 10 días no dormí nada para ducharte tenías que esperar y cuando estabas duchandote te aporreaban la puerta para que terminarás.", "confidence": 0.8}]} fbbe31733a7ff8ef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1780 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOGNITION + 2 2 \N 0.90 Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt. 54 103 \N \N \N 2026-01-31 03:48:01.45109 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "die Ruhezeiten eingehalten werden und die Nähe zum Strand.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "Sauber??? Nein! Nicht die Badezimmer, nicht die Küche, nicht im Allgemeinen!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig.", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 497, "evidence": "man kann nur Cash zahlen....oh weia!", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 469}], "unmapped": []} 0f2a2b9b90738b2e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1781 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 1 2 \N 0.90 die Ruhezeiten eingehalten werden und die Nähe zum Strand. 107 143 \N \N \N 2026-01-31 03:48:01.453404 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "die Ruhezeiten eingehalten werden und die Nähe zum Strand.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "Sauber??? Nein! Nicht die Badezimmer, nicht die Küche, nicht im Allgemeinen!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig.", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 497, "evidence": "man kann nur Cash zahlen....oh weia!", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 469}], "unmapped": []} 0f2a2b9b90738b2e auto 56bb22c1-8631-4285-b549-8fa7c9944462 5522 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY - 2 3 \N 0.90 me parece vergonzoso que en las fechas que estamos solo haya 2 personas trabajando en tienda 36 82 \N \N \N 2026-01-31 15:14:45.138932 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 290, "evidence": "la dependienta muy tranquila decide responder y dar prioridad a la llamada, antes que al cliente que tiene en tienda", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "negative", "end_char": 82, "evidence": "me parece vergonzoso que en las fechas que estamos solo haya 2 personas trabajando en tienda", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}], "unmapped": []} fb1d576bd0fc5e90 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5314 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 son équipe sympa et accueillante 66 92 \N \N \N 2026-01-31 15:10:39.767532 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "son équipe sympa et accueillante", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Parfaitement située à 2 pas de la plage, des cafés et commerces", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "J’ai déjà hâte d’y retourner", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} c19f16f18456796b fr 56bb22c1-8631-4285-b549-8fa7c9944462 1782 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 Sauber??? Nein! Nicht die Badezimmer, nicht die Küche, nicht im Allgemeinen! 284 335 \N \N \N 2026-01-31 03:48:01.45518 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "die Ruhezeiten eingehalten werden und die Nähe zum Strand.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "Sauber??? Nein! Nicht die Badezimmer, nicht die Küche, nicht im Allgemeinen!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig.", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 497, "evidence": "man kann nur Cash zahlen....oh weia!", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 469}], "unmapped": []} 0f2a2b9b90738b2e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1783 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig. 197 261 \N \N \N 2026-01-31 03:48:01.457868 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "die Ruhezeiten eingehalten werden und die Nähe zum Strand.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "Sauber??? Nein! Nicht die Badezimmer, nicht die Küche, nicht im Allgemeinen!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig.", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 497, "evidence": "man kann nur Cash zahlen....oh weia!", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 469}], "unmapped": []} 0f2a2b9b90738b2e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1784 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 FRICTION - 2 2 \N 0.80 man kann nur Cash zahlen....oh weia! 469 497 \N \N \N 2026-01-31 03:48:01.459429 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "die Ruhezeiten eingehalten werden und die Nähe zum Strand.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "Sauber??? Nein! Nicht die Badezimmer, nicht die Küche, nicht im Allgemeinen!", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig.", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 497, "evidence": "man kann nur Cash zahlen....oh weia!", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 469}], "unmapped": []} 0f2a2b9b90738b2e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1785 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 Roof terassi good 0 16 \N \N \N 2026-01-31 03:48:05.772909 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Roof terassi good", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "staff really good, chat with guy and girls good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "mixed", "end_char": 92, "evidence": "Room little warm and of course sleepy with other", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Place Look safery", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Price 5/5", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}], "unmapped": []} 3f7d397166573b11 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1786 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 2 3 \N 0.90 staff really good, chat with guy and girls good 17 62 \N \N \N 2026-01-31 03:48:05.774695 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Roof terassi good", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "staff really good, chat with guy and girls good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "mixed", "end_char": 92, "evidence": "Room little warm and of course sleepy with other", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Place Look safery", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Price 5/5", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}], "unmapped": []} 3f7d397166573b11 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1787 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT ± 1 2 \N 0.70 Room little warm and of course sleepy with other 63 92 \N \N \N 2026-01-31 03:48:05.775966 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Roof terassi good", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "staff really good, chat with guy and girls good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "mixed", "end_char": 92, "evidence": "Room little warm and of course sleepy with other", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Place Look safery", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Price 5/5", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}], "unmapped": []} 3f7d397166573b11 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1788 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY + 2 2 \N 0.80 Place Look safery 93 111 \N \N \N 2026-01-31 03:48:05.777415 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Roof terassi good", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "staff really good, chat with guy and girls good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "mixed", "end_char": 92, "evidence": "Room little warm and of course sleepy with other", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Place Look safery", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Price 5/5", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}], "unmapped": []} 3f7d397166573b11 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1789 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Price 5/5 112 121 \N \N \N 2026-01-31 03:48:05.778852 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Roof terassi good", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "staff really good, chat with guy and girls good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "mixed", "end_char": 92, "evidence": "Room little warm and of course sleepy with other", "intensity": 2, "primitive": "COMFORT", "confidence": 0.7, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Place Look safery", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Price 5/5", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 112}], "unmapped": []} 3f7d397166573b11 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1790 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 все очень чисто 47 56 \N \N \N 2026-01-31 03:48:10.138005 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "все очень чисто", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Шикарная кухня с современной техникой", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Очень дружелюбный и вежливый персонал", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Отличный недорогой хостел", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4db43169841d9a34 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1791 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Шикарная кухня с современной техникой 27 56 \N \N \N 2026-01-31 03:48:10.14033 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "все очень чисто", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Шикарная кухня с современной техникой", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Очень дружелюбный и вежливый персонал", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Отличный недорогой хостел", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4db43169841d9a34 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1802 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURCZ3NXNE9REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 the bed sheets had visible stains and were obviously not washed 118 157 \N \N \N 2026-01-31 03:48:19.993905 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "the bed sheets had visible stains and were obviously not washed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "I was covered with red spots all over my body", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 193, "evidence": "nasty and never again!", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 6ea6c6cee13f18a9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1792 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Очень дружелюбный и вежливый персонал 56 85 \N \N \N 2026-01-31 03:48:10.141985 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "все очень чисто", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Шикарная кухня с современной техникой", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Очень дружелюбный и вежливый персонал", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Отличный недорогой хостел", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4db43169841d9a34 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1815 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQteEtmWXJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 würde jederzeit wieder zurück kehren 116 144 \N \N \N 2026-01-31 03:48:31.432602 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "würde jederzeit wieder zurück kehren", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Die Betten sind bequem", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "man hat das Meer quasi vor der Nase", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}], "unmapped": []} 8ea09744c8e705ef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1793 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Отличный недорогой хостел 0 27 \N \N \N 2026-01-31 03:48:10.143732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "все очень чисто", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Шикарная кухня с современной техникой", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Очень дружелюбный и вежливый персонал", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Отличный недорогой хостел", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4db43169841d9a34 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1794 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 super helpful staff 27 48 \N \N \N 2026-01-31 03:48:13.310164 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "super helpful staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Lovely family feeling", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "Really enjoyed my stay", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "A few steps from the surfing part of the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}], "unmapped": []} f265e0791436af95 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1795 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Lovely family feeling 0 22 \N \N \N 2026-01-31 03:48:13.312431 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "super helpful staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Lovely family feeling", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "Really enjoyed my stay", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "A few steps from the surfing part of the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}], "unmapped": []} f265e0791436af95 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1796 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Really enjoyed my stay 106 128 \N \N \N 2026-01-31 03:48:13.314182 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "super helpful staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Lovely family feeling", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "Really enjoyed my stay", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "A few steps from the surfing part of the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}], "unmapped": []} f265e0791436af95 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5603 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNpNHZpS19RRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 2 2 \N 0.70 digitalizar las tarjetas de socio para poder acumular puntos enseñando el DNI 0 83 \N \N \N 2026-01-31 15:16:11.773429 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 83, "evidence": "digitalizar las tarjetas de socio para poder acumular puntos enseñando el DNI", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} 793164f48890f7b6 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4545 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ4ejRYY3l3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 La mejor juguetería 0 22 \N \N \N 2026-01-31 13:44:27.737013 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "La mejor juguetería", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 945f630344fef14c auto e4f95d90-dbbe-439d-a0fd-f19088002f26 1797 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 A few steps from the surfing part of the beach 50 83 \N \N \N 2026-01-31 03:48:13.315537 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "super helpful staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Lovely family feeling", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "Really enjoyed my stay", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "A few steps from the surfing part of the beach", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 50}], "unmapped": []} f265e0791436af95 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1798 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Destino perfecto para quien viajamos solas. 0 38 \N \N \N 2026-01-31 03:48:16.787874 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Destino perfecto para quien viajamos solas.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Las literas son cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "La zona es muy segura para andar a cualquier hora del dia", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e42ab50430f12bd3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1869 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQyNEkzekRBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:49:28.803601 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1799 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Las literas son cómodas. 116 138 \N \N \N 2026-01-31 03:48:16.789958 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Destino perfecto para quien viajamos solas.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Las literas son cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "La zona es muy segura para andar a cualquier hora del dia", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e42ab50430f12bd3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1800 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY + 3 3 \N 0.90 La zona es muy segura para andar a cualquier hora del dia 139 179 \N \N \N 2026-01-31 03:48:16.791485 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Destino perfecto para quien viajamos solas.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Las literas son cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "La zona es muy segura para andar a cualquier hora del dia", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e42ab50430f12bd3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5694 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 2 2 \N 0.70 you will get some great connections there for sure 267 303 \N \N \N 2026-01-31 15:17:50.635519 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 220, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "mixed", "end_char": 113, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 303, "evidence": "you will get some great connections there for sure", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 267}], "unmapped": []} c27f86d6e579506c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1801 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos. 66 138 \N \N \N 2026-01-31 03:48:16.793218 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Destino perfecto para quien viajamos solas.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Las literas son cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "La zona es muy segura para andar a cualquier hora del dia", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e42ab50430f12bd3 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2633 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNleUlYa2NBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 realiza una peritación no adecuada a la póliza 60 100 \N \N \N 2026-01-31 04:02:53.106946 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "no acudir en la fecha citada", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "realiza una peritación no adecuada a la póliza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} d8428d885e494104 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1803 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURCZ3NXNE9REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 2 3 \N 0.90 I was covered with red spots all over my body 66 100 \N \N \N 2026-01-31 03:48:19.995628 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "the bed sheets had visible stains and were obviously not washed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "I was covered with red spots all over my body", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 193, "evidence": "nasty and never again!", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 6ea6c6cee13f18a9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1804 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURCZ3NXNE9REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 2 3 \N 0.70 nasty and never again! 174 193 \N \N \N 2026-01-31 03:48:19.996281 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "the bed sheets had visible stains and were obviously not washed", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "I was covered with red spots all over my body", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 193, "evidence": "nasty and never again!", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 6ea6c6cee13f18a9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1805 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURCM09xRTJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 1 2 \N 0.90 Good position of the hostel 0 27 \N \N \N 2026-01-31 03:48:22.254628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Good position of the hostel", "intensity": 2, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "toilets always dirty", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}], "unmapped": []} 8915345a1d1b01fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1808 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 great atmosphere 66 83 \N \N \N 2026-01-31 03:48:27.166286 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "it is safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "the owner Miguel and other receptionists were really helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "RECOMENDED!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "hope to come here again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 210}], "unmapped": []} 6330240f2d3a79aa auto 56bb22c1-8631-4285-b549-8fa7c9944462 1809 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY + 3 3 \N 0.90 it is safe 49 58 \N \N \N 2026-01-31 03:48:27.167331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "it is safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "the owner Miguel and other receptionists were really helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "RECOMENDED!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "hope to come here again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 210}], "unmapped": []} 6330240f2d3a79aa auto 56bb22c1-8631-4285-b549-8fa7c9944462 1959 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNBMDh6WTNBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:50:42.681439 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1810 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 the owner Miguel and other receptionists were really helpful 100 143 \N \N \N 2026-01-31 03:48:27.168037 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "it is safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "the owner Miguel and other receptionists were really helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "RECOMENDED!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "hope to come here again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 210}], "unmapped": []} 6330240f2d3a79aa auto 56bb22c1-8631-4285-b549-8fa7c9944462 2438 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 ha sido amable 57 70 \N \N \N 2026-01-31 03:58:44.523488 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "muy eficiente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "ha sido amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recomiendo 💯", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}], "unmapped": []} a41c2a8a690c5f38 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1811 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 RECOMENDED!! 195 206 \N \N \N 2026-01-31 03:48:27.168703 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "it is safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "the owner Miguel and other receptionists were really helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "RECOMENDED!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "hope to come here again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 210}], "unmapped": []} 6330240f2d3a79aa auto 56bb22c1-8631-4285-b549-8fa7c9944462 1812 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 hope to come here again 210 233 \N \N \N 2026-01-31 03:48:27.169304 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "it is safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "the owner Miguel and other receptionists were really helpful", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "RECOMENDED!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "hope to come here again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 210}], "unmapped": []} 6330240f2d3a79aa auto 56bb22c1-8631-4285-b549-8fa7c9944462 1813 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNCX0xqWW9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:48:27.859588 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1814 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQteHVqTjF3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:48:28.595938 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1816 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQteEtmWXJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.90 Die Betten sind bequem 61 84 \N \N \N 2026-01-31 03:48:31.434644 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "würde jederzeit wieder zurück kehren", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Die Betten sind bequem", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "man hat das Meer quasi vor der Nase", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}], "unmapped": []} 8ea09744c8e705ef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1817 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQteEtmWXJBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 man hat das Meer quasi vor der Nase 85 113 \N \N \N 2026-01-31 03:48:31.43619 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "würde jederzeit wieder zurück kehren", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Die Betten sind bequem", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "man hat das Meer quasi vor der Nase", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 85}], "unmapped": []} 8ea09744c8e705ef auto 56bb22c1-8631-4285-b549-8fa7c9944462 1818 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMtejlPMU9REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:48:32.295906 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1819 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMtcV9DTkNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 лучший хостел на земле! 0 25 \N \N \N 2026-01-31 03:48:35.241813 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "лучший хостел на земле!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "в этом хостеле все люди становятся твоими друзьями!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "океан рядом, супермаркеты, мол, рестораны, бары.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e849a605b954aef9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2701 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNObl83Yzd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 cumplieron con todo lo que necesitábamos 60 90 \N \N \N 2026-01-31 04:04:23.319912 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "Son siempre muy amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "cumplieron con todo lo que necesitábamos", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 60}], "unmapped": []} 263d5e1d78bcf737 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1820 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMtcV9DTkNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 в этом хостеле все люди становятся твоими друзьями! 108 145 \N \N \N 2026-01-31 03:48:35.244511 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "лучший хостел на земле!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "в этом хостеле все люди становятся твоими друзьями!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "океан рядом, супермаркеты, мол, рестораны, бары.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e849a605b954aef9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1821 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUMtcV9DTkNBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 океан рядом, супермаркеты, мол, рестораны, бары. 66 108 \N \N \N 2026-01-31 03:48:35.246172 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "лучший хостел на земле!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "в этом хостеле все люди становятся твоими друзьями!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "океан рядом, супермаркеты, мол, рестораны, бары.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}], "unmapped": []} e849a605b954aef9 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1822 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 ambiente tranquilo pero muy familiar 66 100 \N \N \N 2026-01-31 03:48:41.027174 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "ambiente tranquilo pero muy familiar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "Y sobre todo limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "capitaneado por Miguel que te ayudará en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "este Pura Vida es con diferencia el mejor de las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2ca2c241cde38563 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4949 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 nice and cosy atmosphere 22 48 \N \N \N 2026-01-31 15:02:25.329389 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "nice and cosy atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "delicious sweet treats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 67}], "unmapped": []} 783f9b2ae0ccf2bc en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 1823 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Y sobre todo limpio 104 117 \N \N \N 2026-01-31 03:48:41.029384 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "ambiente tranquilo pero muy familiar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "Y sobre todo limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "capitaneado por Miguel que te ayudará en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "este Pura Vida es con diferencia el mejor de las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2ca2c241cde38563 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1824 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 capitaneado por Miguel que te ayudará en todo 100 134 \N \N \N 2026-01-31 03:48:41.030982 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "ambiente tranquilo pero muy familiar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "Y sobre todo limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "capitaneado por Miguel que te ayudará en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "este Pura Vida es con diferencia el mejor de las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2ca2c241cde38563 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2661 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkZzdfeTNRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Muy serios y puntuales 0 24 \N \N \N 2026-01-31 04:03:27.121989 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy serios y puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "me han solucionado muy bien las reparaciones", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}], "unmapped": []} d4ed314c725db333 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1825 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 este Pura Vida es con diferencia el mejor de las Canteras 0 66 \N \N \N 2026-01-31 03:48:41.032856 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "ambiente tranquilo pero muy familiar", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "Y sobre todo limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "capitaneado por Miguel que te ayudará en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "este Pura Vida es con diferencia el mejor de las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 2ca2c241cde38563 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1826 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The place is clean 41 56 \N \N \N 2026-01-31 03:48:44.240465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The place is clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "I had an amazing time at pura vida!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Miguel is always going the extra mile for the guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias Miguel y hasta pronto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} e9f6156d2fa5d045 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1827 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 I had an amazing time at pura vida! 0 36 \N \N \N 2026-01-31 03:48:44.241895 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The place is clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "I had an amazing time at pura vida!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Miguel is always going the extra mile for the guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias Miguel y hasta pronto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} e9f6156d2fa5d045 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1828 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel is always going the extra mile for the guests. 36 77 \N \N \N 2026-01-31 03:48:44.242718 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The place is clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "I had an amazing time at pura vida!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Miguel is always going the extra mile for the guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias Miguel y hasta pronto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} e9f6156d2fa5d045 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1829 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Gracias Miguel y hasta pronto!! 78 104 \N \N \N 2026-01-31 03:48:44.243515 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The place is clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "I had an amazing time at pura vida!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Miguel is always going the extra mile for the guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias Miguel y hasta pronto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} e9f6156d2fa5d045 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1830 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNlMHVLQURnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:48:44.926541 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1831 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Es limpiado muchas veces cada dia. 66 95 \N \N \N 2026-01-31 03:48:48.421311 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "Es limpiado muchas veces cada dia.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Es un lugar muy tranquilo y lleno de gente maravillosa y internacional.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "intentar por mi primera vez con el ayuda de Miguel.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Mi permanencia a Pura Vida Hostel fue perfecta.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} adb7e570e00c5fad auto 56bb22c1-8631-4285-b549-8fa7c9944462 1832 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Es un lugar muy tranquilo y lleno de gente maravillosa y internacional. 36 83 \N \N \N 2026-01-31 03:48:48.423136 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "Es limpiado muchas veces cada dia.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Es un lugar muy tranquilo y lleno de gente maravillosa y internacional.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "intentar por mi primera vez con el ayuda de Miguel.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Mi permanencia a Pura Vida Hostel fue perfecta.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} adb7e570e00c5fad auto 56bb22c1-8631-4285-b549-8fa7c9944462 1833 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 intentar por mi primera vez con el ayuda de Miguel. 95 130 \N \N \N 2026-01-31 03:48:48.424632 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "Es limpiado muchas veces cada dia.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Es un lugar muy tranquilo y lleno de gente maravillosa y internacional.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "intentar por mi primera vez con el ayuda de Miguel.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Mi permanencia a Pura Vida Hostel fue perfecta.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} adb7e570e00c5fad auto 56bb22c1-8631-4285-b549-8fa7c9944462 5700 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Amazing atmosphere 27 46 \N \N \N 2026-01-31 15:17:57.750166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Everyone is Super friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "Can’t wait to come again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 76}], "unmapped": []} 9f8c64f996af2152 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5433 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPYk5sdGJmcWNpSWJREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:12:56.423512 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f unknown 56bb22c1-8631-4285-b549-8fa7c9944462 1834 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Mi permanencia a Pura Vida Hostel fue perfecta. 0 41 \N \N \N 2026-01-31 03:48:48.42607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "Es limpiado muchas veces cada dia.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Es un lugar muy tranquilo y lleno de gente maravillosa y internacional.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "intentar por mi primera vez con el ayuda de Miguel.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Mi permanencia a Pura Vida Hostel fue perfecta.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} adb7e570e00c5fad auto 56bb22c1-8631-4285-b549-8fa7c9944462 1870 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMydVlDZWpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 muy buen ambiente 56 72 \N \N \N 2026-01-31 03:49:31.433424 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 72, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal y dirección muy amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Sin duda para repetir en cuanto me surja la ocasión", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} 68bea8e64c51f93e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1835 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 limpieza absoluta 30 47 \N \N \N 2026-01-31 03:48:51.488946 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "limpieza absoluta", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "personal siempre amable y dispuesto para ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendado al 200%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "he disfrutado la isla y he conocido gente en este hostel increible", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 84}], "unmapped": []} 5a0d9894f54fcf71 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1836 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 personal siempre amable y dispuesto para ayudarte 48 83 \N \N \N 2026-01-31 03:48:51.491537 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "limpieza absoluta", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "personal siempre amable y dispuesto para ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendado al 200%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "he disfrutado la isla y he conocido gente en este hostel increible", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 84}], "unmapped": []} 5a0d9894f54fcf71 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4253 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtczZtLWZBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.443353 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1837 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Recomendado al 200% 139 157 \N \N \N 2026-01-31 03:48:51.493231 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "limpieza absoluta", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "personal siempre amable y dispuesto para ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendado al 200%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "he disfrutado la isla y he conocido gente en este hostel increible", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 84}], "unmapped": []} 5a0d9894f54fcf71 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1838 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 he disfrutado la isla y he conocido gente en este hostel increible 84 138 \N \N \N 2026-01-31 03:48:51.494676 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "limpieza absoluta", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "personal siempre amable y dispuesto para ayudarte", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Recomendado al 200%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "he disfrutado la isla y he conocido gente en este hostel increible", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 84}], "unmapped": []} 5a0d9894f54fcf71 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1839 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1dTZQd0NREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 un ambiente que flipas 38 56 \N \N \N 2026-01-31 03:48:54.164266 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "un ambiente que flipas", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "La mejor elección de estadía en Las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Miguel se pasa del 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} b4de1c9ef82f85cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1840 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1dTZQd0NREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 La mejor elección de estadía en Las Canteras 0 39 \N \N \N 2026-01-31 03:48:54.165956 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "un ambiente que flipas", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "La mejor elección de estadía en Las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Miguel se pasa del 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} b4de1c9ef82f85cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1841 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1dTZQd0NREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel se pasa del 10 56 75 \N \N \N 2026-01-31 03:48:54.1677 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "un ambiente que flipas", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "La mejor elección de estadía en Las Canteras", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Miguel se pasa del 10", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} b4de1c9ef82f85cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1842 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Un hostel super limpio 0 24 \N \N \N 2026-01-31 03:48:58.056788 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un hostel super limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "las camas cómodas, los baños son cómodos", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "no cambio de hostel y se hizo mi destino de relax eterno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 140}], "unmapped": []} 4d9d48fd87721143 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1849 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 acogedor, un excelente grupo 76 101 \N \N \N 2026-01-31 03:49:03.989504 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "súper bueno, cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Algo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "acogedor, un excelente grupo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Súper...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 102}], "unmapped": []} be5b1cc8b1fb9925 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5701 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Everyone is Super friendly 47 75 \N \N \N 2026-01-31 15:17:57.752721 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Everyone is Super friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "Can’t wait to come again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 76}], "unmapped": []} 9f8c64f996af2152 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1843 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 las camas cómodas, los baños son cómodos 25 61 \N \N \N 2026-01-31 03:48:58.058026 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un hostel super limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "las camas cómodas, los baños son cómodos", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "no cambio de hostel y se hizo mi destino de relax eterno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 140}], "unmapped": []} 4d9d48fd87721143 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1844 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo 62 139 \N \N \N 2026-01-31 03:48:58.058886 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un hostel super limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "las camas cómodas, los baños son cómodos", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "no cambio de hostel y se hizo mi destino de relax eterno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 140}], "unmapped": []} 4d9d48fd87721143 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1845 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 no cambio de hostel y se hizo mi destino de relax eterno 140 182 \N \N \N 2026-01-31 03:48:58.060054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Un hostel super limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "las camas cómodas, los baños son cómodos", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 62}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "no cambio de hostel y se hizo mi destino de relax eterno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 140}], "unmapped": []} 4d9d48fd87721143 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1846 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR1MEpQc0lREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.50 It's OK. 0 6 \N \N \N 2026-01-31 03:49:00.190493 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 6, "evidence": "It's OK.", "intensity": 1, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} c1d69644fe2350bc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1847 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 súper bueno, cómodo 0 22 \N \N \N 2026-01-31 03:49:03.98587 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "súper bueno, cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Algo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "acogedor, un excelente grupo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Súper...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 102}], "unmapped": []} be5b1cc8b1fb9925 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1871 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMydVlDZWpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 personal y dirección muy amables 40 66 \N \N \N 2026-01-31 03:49:31.434969 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 72, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal y dirección muy amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Sin duda para repetir en cuanto me surja la ocasión", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} 68bea8e64c51f93e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1848 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Algo muy limpio 60 75 \N \N \N 2026-01-31 03:49:03.987896 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "súper bueno, cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Algo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "acogedor, un excelente grupo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Súper...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 102}], "unmapped": []} be5b1cc8b1fb9925 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1850 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Súper... 102 108 \N \N \N 2026-01-31 03:49:03.991194 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "súper bueno, cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Algo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "acogedor, un excelente grupo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Súper...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 102}], "unmapped": []} be5b1cc8b1fb9925 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1851 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN1NWRHa2t3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:49:04.719741 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1852 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN1MmJfSThnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOGNITION + 3 3 \N 0.90 menor hostal de canarias!!! 0 27 \N \N \N 2026-01-31 03:49:07.991511 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "menor hostal de canarias!!!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} a5cec8daea819985 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1853 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUN1b1ptY3VRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:49:08.84745 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1854 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.90 Un sitio cómodo 0 16 \N \N \N 2026-01-31 03:49:12.000581 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Un sitio cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "cercano", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puedes ir con grupos grandes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Está al lado de la playita", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 62}], "unmapped": []} b46b0880b4929ca7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1855 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 3 \N 0.90 cercano 20 27 \N \N \N 2026-01-31 03:49:12.002425 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Un sitio cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "cercano", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puedes ir con grupos grandes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Está al lado de la playita", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 62}], "unmapped": []} b46b0880b4929ca7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1884 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXOHZfb3lnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 No comments \N \N {"No comments provided"} \N \N 2026-01-31 03:49:40.931821 gpt-4o-mini {"spans": [], "unmapped": [{"label": "No comments provided", "evidence": "No comments", "confidence": 0.9}]} 4af41866e8e4fccc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1885 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXOE4yanFnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 EFFECTIVENESS + 2 3 \N 0.90 Efficace 20 28 \N \N \N 2026-01-31 03:49:42.145292 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 28, "evidence": "Efficace", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} f51c61b87d355c73 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1856 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 2 3 \N 0.80 puedes ir con grupos grandes 32 60 \N \N \N 2026-01-31 03:49:12.004278 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Un sitio cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "cercano", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puedes ir con grupos grandes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Está al lado de la playita", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 62}], "unmapped": []} b46b0880b4929ca7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5409 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel y las chicas otro 10 24 45 \N \N \N 2026-01-31 15:12:32.785841 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "buen sitio para pasar unos días agradables", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Miguel y las chicas otro 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Ubicación de 10", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 50aaec88bb67e138 es 56bb22c1-8631-4285-b549-8fa7c9944462 4484 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ4bmVDX3RBRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 2 2 \N 0.90 Cada vez más caros sus productos 0 30 \N \N \N 2026-01-31 13:43:02.249988 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Cada vez más caros sus productos", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8eeacfbd0801a1d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 1857 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.80 Está al lado de la playita 62 87 \N \N \N 2026-01-31 03:49:12.005778 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Un sitio cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "cercano", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puedes ir con grupos grandes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "Está al lado de la playita", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 62}], "unmapped": []} b46b0880b4929ca7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1858 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNPNGI2Z3ZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:49:12.700983 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1859 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQyLTViS1pnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 2 3 \N 0.90 Very good place to stay and affordable. 0 30 \N \N \N 2026-01-31 03:49:15.444069 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good place to stay and affordable.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The staff was very friendly and made you feel welcome and part of the family.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 31}], "unmapped": []} c7248a145f1b0fd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1860 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQyLTViS1pnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 The staff was very friendly and made you feel welcome and part of the family. 31 92 \N \N \N 2026-01-31 03:49:15.450063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Very good place to stay and affordable.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "The staff was very friendly and made you feel welcome and part of the family.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 31}], "unmapped": []} c7248a145f1b0fd7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1861 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQyMGQzUWJ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 el que más cómodo me he sentido 66 85 \N \N \N 2026-01-31 03:49:18.649618 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "el que más cómodo me he sentido", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "el staff ha ayudado en todo lo posible por mejorar mi estancia", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 290, "evidence": "Recomendadísimo tanto para unos días en la isla como para largas temporadas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 230}], "unmapped": []} 0987b3f8e8973836 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1862 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQyMGQzUWJ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 el staff ha ayudado en todo lo posible por mejorar mi estancia 85 130 \N \N \N 2026-01-31 03:49:18.651313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "el que más cómodo me he sentido", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "el staff ha ayudado en todo lo posible por mejorar mi estancia", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 290, "evidence": "Recomendadísimo tanto para unos días en la isla como para largas temporadas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 230}], "unmapped": []} 0987b3f8e8973836 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1863 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQyMGQzUWJ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Recomendadísimo tanto para unos días en la isla como para largas temporadas 230 290 \N \N \N 2026-01-31 03:49:18.652675 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "el que más cómodo me he sentido", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "el staff ha ayudado en todo lo posible por mejorar mi estancia", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 290, "evidence": "Recomendadísimo tanto para unos días en la isla como para largas temporadas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 230}], "unmapped": []} 0987b3f8e8973836 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1872 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMydVlDZWpRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 Sin duda para repetir en cuanto me surja la ocasión 100 136 \N \N \N 2026-01-31 03:49:31.436428 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 72, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "personal y dirección muy amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Sin duda para repetir en cuanto me surja la ocasión", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} 68bea8e64c51f93e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1864 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Tanto Miguel como Eva han sido realmente amables. 0 47 \N \N \N 2026-01-31 03:49:28.052019 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "Tanto Miguel como Eva han sido realmente amables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Hay muy buen ambiente y el trato muy cercano,gente 10.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Nivel de Limpieza y de ruido super correcto.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "en fin,que repetiré porque me encantó.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 175}], "unmapped": []} 01ac6fe7a441c889 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1865 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Hay muy buen ambiente y el trato muy cercano,gente 10. 48 83 \N \N \N 2026-01-31 03:49:28.053878 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "Tanto Miguel como Eva han sido realmente amables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Hay muy buen ambiente y el trato muy cercano,gente 10.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Nivel de Limpieza y de ruido super correcto.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "en fin,que repetiré porque me encantó.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 175}], "unmapped": []} 01ac6fe7a441c889 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1866 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Nivel de Limpieza y de ruido super correcto. 84 118 \N \N \N 2026-01-31 03:49:28.054757 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "Tanto Miguel como Eva han sido realmente amables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Hay muy buen ambiente y el trato muy cercano,gente 10.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Nivel de Limpieza y de ruido super correcto.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "en fin,que repetiré porque me encantó.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 175}], "unmapped": []} 01ac6fe7a441c889 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1867 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia. 119 174 \N \N \N 2026-01-31 03:49:28.055782 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "Tanto Miguel como Eva han sido realmente amables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Hay muy buen ambiente y el trato muy cercano,gente 10.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Nivel de Limpieza y de ruido super correcto.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "en fin,que repetiré porque me encantó.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 175}], "unmapped": []} 01ac6fe7a441c889 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4533 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNXLVBQdFVBEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 Gran variedad de juguetes. 0 27 \N \N \N 2026-01-31 13:44:10.815848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran variedad de juguetes.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} c687322492e2eacb auto e4f95d90-dbbe-439d-a0fd-f19088002f26 1868 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 en fin,que repetiré porque me encantó. 175 205 \N \N \N 2026-01-31 03:49:28.05647 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "Tanto Miguel como Eva han sido realmente amables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Hay muy buen ambiente y el trato muy cercano,gente 10.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Nivel de Limpieza y de ruido super correcto.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "en fin,que repetiré porque me encantó.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 175}], "unmapped": []} 01ac6fe7a441c889 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1873 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 2 \N 0.90 всё грязное и неприятно садится куда нибудь 90 118 \N \N \N 2026-01-31 03:49:34.187022 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "всё грязное и неприятно садится куда нибудь", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "всё убогое и старое", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "Комната очень маленькая", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "первый и последний раз", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}], "unmapped": []} e7b9b925df4017cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1874 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 2 \N 0.90 всё убогое и старое 42 61 \N \N \N 2026-01-31 03:49:34.267896 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "всё грязное и неприятно садится куда нибудь", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "всё убогое и старое", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "Комната очень маленькая", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "первый и последний раз", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}], "unmapped": []} e7b9b925df4017cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1875 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 2 \N 0.90 Комната очень маленькая 66 89 \N \N \N 2026-01-31 03:49:34.283624 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "всё грязное и неприятно садится куда нибудь", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "всё убогое и старое", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "Комната очень маленькая", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "первый и последний раз", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}], "unmapped": []} e7b9b925df4017cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1876 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 2 2 \N 0.90 первый и последний раз 139 158 \N \N \N 2026-01-31 03:49:34.302132 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "всё грязное и неприятно садится куда нибудь", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "всё убогое и старое", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 89, "evidence": "Комната очень маленькая", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 158, "evidence": "первый и последний раз", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}], "unmapped": []} e7b9b925df4017cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1886 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNtbDh1WVV3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:49:42.909706 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1887 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNtem9YOVFREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:49:43.718806 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1878 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 the beds were comfortable 118 143 \N \N \N 2026-01-31 03:49:38.55146 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "the beds were comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "made my GC experience even more special", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 225, "evidence": "Easy to take a bus from the place", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "The location is perfect, so close to Playa de las Canteras", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "When I am there again, I will be choose the same option", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 226}], "unmapped": []} 7c530a0e035af28b auto 56bb22c1-8631-4285-b549-8fa7c9944462 4254 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtM3VtR0lREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.446098 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1879 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 made my GC experience even more special 56 88 \N \N \N 2026-01-31 03:49:38.568935 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "the beds were comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "made my GC experience even more special", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 225, "evidence": "Easy to take a bus from the place", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "The location is perfect, so close to Playa de las Canteras", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "When I am there again, I will be choose the same option", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 226}], "unmapped": []} 7c530a0e035af28b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1880 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 Easy to take a bus from the place 197 225 \N \N \N 2026-01-31 03:49:38.571499 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "the beds were comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "made my GC experience even more special", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 225, "evidence": "Easy to take a bus from the place", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "The location is perfect, so close to Playa de las Canteras", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "When I am there again, I will be choose the same option", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 226}], "unmapped": []} 7c530a0e035af28b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1881 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 The location is perfect, so close to Playa de las Canteras 144 194 \N \N \N 2026-01-31 03:49:38.573953 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "the beds were comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "made my GC experience even more special", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 225, "evidence": "Easy to take a bus from the place", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "The location is perfect, so close to Playa de las Canteras", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "When I am there again, I will be choose the same option", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 226}], "unmapped": []} 7c530a0e035af28b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1882 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 When I am there again, I will be choose the same option 226 267 \N \N \N 2026-01-31 03:49:38.575331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "the beds were comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "made my GC experience even more special", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 225, "evidence": "Easy to take a bus from the place", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "The location is perfect, so close to Playa de las Canteras", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "When I am there again, I will be choose the same option", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 226}], "unmapped": []} 7c530a0e035af28b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1883 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURXaWJYWVdBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 3 3 \N 0.90 Muy muy sucio.... 0 15 \N \N \N 2026-01-31 03:49:40.214364 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "Muy muy sucio....", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} dc79086c7d52d546 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1888 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel es un súper host, siempre atento con los huéspedes. 49 83 \N \N \N 2026-01-31 03:49:47.898745 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel es un súper host, siempre atento con los huéspedes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "súper simpáticas y están siempre limpiando para que todo esté perfecto!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "El hostel es acogedor y tiene muy buena vibra", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "Recomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}], "unmapped": []} f1a5d741bba0d8cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1889 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 súper simpáticas y están siempre limpiando para que todo esté perfecto!! 107 145 \N \N \N 2026-01-31 03:49:47.901064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel es un súper host, siempre atento con los huéspedes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "súper simpáticas y están siempre limpiando para que todo esté perfecto!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "El hostel es acogedor y tiene muy buena vibra", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "Recomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}], "unmapped": []} f1a5d741bba0d8cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1890 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El hostel es acogedor y tiene muy buena vibra 145 182 \N \N \N 2026-01-31 03:49:47.902495 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel es un súper host, siempre atento con los huéspedes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "súper simpáticas y están siempre limpiando para que todo esté perfecto!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "El hostel es acogedor y tiene muy buena vibra", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "Recomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}], "unmapped": []} f1a5d741bba0d8cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1891 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Recomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!! 182 232 \N \N \N 2026-01-31 03:49:47.904235 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel es un súper host, siempre atento con los huéspedes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "súper simpáticas y están siempre limpiando para que todo esté perfecto!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "El hostel es acogedor y tiene muy buena vibra", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "Recomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 182}], "unmapped": []} f1a5d741bba0d8cc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1332 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURtOU1ibUpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.50 \N \N {"Empty review text"} \N \N 2026-01-31 03:40:09.567444 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.5}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 1892 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 trato muy agradable 90 110 \N \N \N 2026-01-31 03:49:54.590161 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "trato muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "este es tú lugar!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te ayudan en todo lo que pueden", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Volveré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 144}], "unmapped": []} 77e36edefb200645 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1893 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 este es tú lugar! 66 82 \N \N \N 2026-01-31 03:49:54.592191 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "trato muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "este es tú lugar!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te ayudan en todo lo que pueden", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Volveré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 144}], "unmapped": []} 77e36edefb200645 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1894 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 te ayudan en todo lo que pueden 113 139 \N \N \N 2026-01-31 03:49:54.593102 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "trato muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "este es tú lugar!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te ayudan en todo lo que pueden", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Volveré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 144}], "unmapped": []} 77e36edefb200645 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1895 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 Volveré! 144 152 \N \N \N 2026-01-31 03:49:54.593879 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "trato muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "este es tú lugar!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "te ayudan en todo lo que pueden", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Volveré!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 144}], "unmapped": []} 77e36edefb200645 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1896 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNHNXR1WHZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 the owner is a gentleman, and always listens 80 116 \N \N \N 2026-01-31 03:49:57.236023 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "the owner is a gentleman, and always listens", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "you want a chilled out place, safe and, most of all, friendly and helpful, then look no further", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "There was no hot water for a 2 days but, but the people are so hot and happy", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 85}], "unmapped": []} 73186598a0ba81f7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1897 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNHNXR1WHZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 you want a chilled out place, safe and, most of all, friendly and helpful, then look no further 0 85 \N \N \N 2026-01-31 03:49:57.240119 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "the owner is a gentleman, and always listens", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "you want a chilled out place, safe and, most of all, friendly and helpful, then look no further", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "There was no hot water for a 2 days but, but the people are so hot and happy", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 85}], "unmapped": []} 73186598a0ba81f7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1898 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNHNXR1WHZBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY ± 2 2 \N 0.70 There was no hot water for a 2 days but, but the people are so hot and happy 85 134 \N \N \N 2026-01-31 03:49:57.242114 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "the owner is a gentleman, and always listens", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "you want a chilled out place, safe and, most of all, friendly and helpful, then look no further", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "There was no hot water for a 2 days but, but the people are so hot and happy", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 85}], "unmapped": []} 73186598a0ba81f7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1899 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNHMUpPd21BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY + 3 3 \N 0.90 Great service 0 12 \N \N \N 2026-01-31 03:49:58.444398 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3da13603b324e19e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1900 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNHbU1xMXZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 muy buen ambiente 0 15 \N \N \N 2026-01-31 03:50:00.665993 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "excelente calidad precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 17}], "unmapped": []} 921f71e4a796542f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1901 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNHbU1xMXZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 excelente calidad precio 17 36 \N \N \N 2026-01-31 03:50:00.667897 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "excelente calidad precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 17}], "unmapped": []} 921f71e4a796542f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1902 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 only nice, chill & good vibes 56 78 \N \N \N 2026-01-31 03:50:04.303568 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "only nice, chill & good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 141, "evidence": "best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "very friendly staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the hostel is so close to the beach you can walk on barefoot with a surfboard!", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 81}], "unmapped": []} 8f2abe69e2ab4b6d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1903 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 best hostel in Las Palmas! 118 141 \N \N \N 2026-01-31 03:50:04.30623 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "only nice, chill & good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 141, "evidence": "best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "very friendly staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the hostel is so close to the beach you can walk on barefoot with a surfboard!", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 81}], "unmapped": []} 8f2abe69e2ab4b6d auto 56bb22c1-8631-4285-b549-8fa7c9944462 5702 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 Can’t wait to come again 76 98 \N \N \N 2026-01-31 15:17:57.754948 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Everyone is Super friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "Can’t wait to come again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 76}], "unmapped": []} 9f8c64f996af2152 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1904 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 very friendly staff 30 48 \N \N \N 2026-01-31 03:50:04.307925 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "only nice, chill & good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 141, "evidence": "best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "very friendly staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the hostel is so close to the beach you can walk on barefoot with a surfboard!", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 81}], "unmapped": []} 8f2abe69e2ab4b6d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1905 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.80 the hostel is so close to the beach you can walk on barefoot with a surfboard! 81 139 \N \N \N 2026-01-31 03:50:04.309483 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "only nice, chill & good vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 141, "evidence": "best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "very friendly staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the hostel is so close to the beach you can walk on barefoot with a surfboard!", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 81}], "unmapped": []} 8f2abe69e2ab4b6d auto 56bb22c1-8631-4285-b549-8fa7c9944462 1906 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Un lugar especial donde te sientes a casa. 0 42 \N \N \N 2026-01-31 03:50:09.047099 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Un lugar especial donde te sientes a casa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todos son muy amables y disponibles, especialmente el manager, como una grande familia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "El hostal está muy limpio y vas a encontrar todo lo que necesitas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "a dos minutos del surf point más guay de Las Palmas.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 159}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Todo perfecto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 198}], "unmapped": []} 456a684987b1764e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1913 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2bTZtTXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Un lugar espectacular, lleno de vida y buenas vibraciones. 0 56 \N \N \N 2026-01-31 03:50:14.129399 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Un lugar espectacular, lleno de vida y buenas vibraciones.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Es como una gran familia que no duda en acogerte y hacerte formar parte de cada uno de los planes.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda es un sitio al que volveré cada vez que pise Gran Canaria.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 134}], "unmapped": []} ca2faf6c82c7adcb auto 56bb22c1-8631-4285-b549-8fa7c9944462 4950 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE Food_Dining.Cafe FOOD_DINING 1.2 MANNER + 3 3 \N 0.90 friendly staff 49 62 \N \N \N 2026-01-31 15:02:25.334569 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "nice and cosy atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "delicious sweet treats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 67}], "unmapped": []} 783f9b2ae0ccf2bc en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4255 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtM3VIdkVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.449094 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5318 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 2 \N 0.90 kind staff 40 50 \N \N \N 2026-01-31 15:10:44.617836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "kind staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "beds weren't very clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "it doesn't feel super safe there", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 129}, {"details": null, "valence": "mixed", "end_char": 138, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 en 56bb22c1-8631-4285-b549-8fa7c9944462 1333 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURtLU1DdW9RRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:40:10.283564 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} 4a02031be783e687 auto 22c559a8-fabc-4916-9961-bcbd61225266 1907 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Todos son muy amables y disponibles, especialmente el manager, como una grande familia. 43 109 \N \N \N 2026-01-31 03:50:09.049056 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Un lugar especial donde te sientes a casa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todos son muy amables y disponibles, especialmente el manager, como una grande familia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "El hostal está muy limpio y vas a encontrar todo lo que necesitas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "a dos minutos del surf point más guay de Las Palmas.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 159}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Todo perfecto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 198}], "unmapped": []} 456a684987b1764e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1908 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 El hostal está muy limpio y vas a encontrar todo lo que necesitas. 110 158 \N \N \N 2026-01-31 03:50:09.050789 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Un lugar especial donde te sientes a casa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todos son muy amables y disponibles, especialmente el manager, como una grande familia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "El hostal está muy limpio y vas a encontrar todo lo que necesitas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "a dos minutos del surf point más guay de Las Palmas.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 159}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Todo perfecto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 198}], "unmapped": []} 456a684987b1764e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1909 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 a dos minutos del surf point más guay de Las Palmas. 159 197 \N \N \N 2026-01-31 03:50:09.052415 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Un lugar especial donde te sientes a casa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todos son muy amables y disponibles, especialmente el manager, como una grande familia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "El hostal está muy limpio y vas a encontrar todo lo que necesitas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "a dos minutos del surf point más guay de Las Palmas.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 159}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Todo perfecto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 198}], "unmapped": []} 456a684987b1764e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1910 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Todo perfecto!! 198 213 \N \N \N 2026-01-31 03:50:09.053705 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Un lugar especial donde te sientes a casa.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todos son muy amables y disponibles, especialmente el manager, como una grande familia.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "El hostal está muy limpio y vas a encontrar todo lo que necesitas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "a dos minutos del surf point más guay de Las Palmas.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 159}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Todo perfecto!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 198}], "unmapped": []} 456a684987b1764e auto 56bb22c1-8631-4285-b549-8fa7c9944462 1911 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUQ2d3BqVF9BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 03:50:09.707327 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 1912 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM2aC1QT0N3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 03:50:10.636309 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto 56bb22c1-8631-4285-b549-8fa7c9944462 2662 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkZzdfeTNRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 me han solucionado muy bien las reparaciones 25 63 \N \N \N 2026-01-31 04:03:27.123964 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy serios y puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "me han solucionado muy bien las reparaciones", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}], "unmapped": []} d4ed314c725db333 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1914 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2bTZtTXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Es como una gran familia que no duda en acogerte y hacerte formar parte de cada uno de los planes. 56 134 \N \N \N 2026-01-31 03:50:14.131352 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Un lugar espectacular, lleno de vida y buenas vibraciones.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Es como una gran familia que no duda en acogerte y hacerte formar parte de cada uno de los planes.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda es un sitio al que volveré cada vez que pise Gran Canaria.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 134}], "unmapped": []} ca2faf6c82c7adcb auto 56bb22c1-8631-4285-b549-8fa7c9944462 1915 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2bTZtTXp3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 Sin duda es un sitio al que volveré cada vez que pise Gran Canaria. 134 174 \N \N \N 2026-01-31 03:50:14.132751 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Un lugar espectacular, lleno de vida y buenas vibraciones.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Es como una gran familia que no duda en acogerte y hacerte formar parte de cada uno de los planes.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda es un sitio al que volveré cada vez que pise Gran Canaria.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 134}], "unmapped": []} ca2faf6c82c7adcb auto 56bb22c1-8631-4285-b549-8fa7c9944462 1916 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 really recomanded 22 41 \N \N \N 2026-01-31 03:50:18.610362 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "really recomanded", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "kind and always available to help", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "Perfect for surfer as it is nearby the surf spot", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "big terrace to realx", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}], "unmapped": []} 36415db670cae521 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1917 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.90 comfortable beds 66 82 \N \N \N 2026-01-31 03:50:18.613203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "really recomanded", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "kind and always available to help", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "Perfect for surfer as it is nearby the surf spot", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "big terrace to realx", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}], "unmapped": []} 36415db670cae521 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1918 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 2 3 \N 0.90 kind and always available to help 100 134 \N \N \N 2026-01-31 03:50:18.615318 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "really recomanded", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "kind and always available to help", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "Perfect for surfer as it is nearby the surf spot", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "big terrace to realx", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}], "unmapped": []} 36415db670cae521 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1616 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURyaDZxbDhnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Muy buena vibra 30 48 \N \N \N 2026-01-31 03:45:10.085905 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Muy buena vibra", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Te sientes como en casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 50}], "unmapped": []} 0827125605f54b0b auto 56bb22c1-8631-4285-b549-8fa7c9944462 5408 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 buen sitio para pasar unos días agradables 66 100 \N \N \N 2026-01-31 15:12:32.78121 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "buen sitio para pasar unos días agradables", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Miguel y las chicas otro 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Ubicación de 10", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 50aaec88bb67e138 es 56bb22c1-8631-4285-b549-8fa7c9944462 4256 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtM3VHcnFnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.45381 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1919 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 3 \N 0.90 Perfect for surfer as it is nearby the surf spot 145 185 \N \N \N 2026-01-31 03:50:18.61686 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "really recomanded", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "kind and always available to help", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "Perfect for surfer as it is nearby the surf spot", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "big terrace to realx", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}], "unmapped": []} 36415db670cae521 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1920 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 big terrace to realx 82 103 \N \N \N 2026-01-31 03:50:18.618178 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "really recomanded", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "comfortable beds", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "kind and always available to help", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "Perfect for surfer as it is nearby the surf spot", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "big terrace to realx", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}], "unmapped": []} 36415db670cae521 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1921 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Buen ambiente surfero 45 66 \N \N \N 2026-01-31 03:50:22.461534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Buen ambiente surfero", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "¡Contando los días para volver!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Se crea una comunidad muy bonita", "intensity": 5, "primitive": "COMMUNITY", "confidence": 0.7, "start_char": 78}], "unmapped": []} e6edb4162b35508a auto 56bb22c1-8631-4285-b549-8fa7c9944462 5703 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Staff is very friendly! 22 44 \N \N \N 2026-01-31 15:18:00.769594 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "Staff is very friendly!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recomend to visit for everybody!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}], "unmapped": []} de183de7c192f6f1 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1922 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 limpio 67 73 \N \N \N 2026-01-31 03:50:22.465566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Buen ambiente surfero", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "¡Contando los días para volver!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Se crea una comunidad muy bonita", "intensity": 5, "primitive": "COMMUNITY", "confidence": 0.7, "start_char": 78}], "unmapped": []} e6edb4162b35508a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1923 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 ¡Contando los días para volver! 90 116 \N \N \N 2026-01-31 03:50:22.467892 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Buen ambiente surfero", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "¡Contando los días para volver!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Se crea una comunidad muy bonita", "intensity": 5, "primitive": "COMMUNITY", "confidence": 0.7, "start_char": 78}], "unmapped": []} e6edb4162b35508a auto 56bb22c1-8631-4285-b549-8fa7c9944462 1924 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.70 Se crea una comunidad muy bonita 78 109 \N \N \N 2026-01-31 03:50:22.470322 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Buen ambiente surfero", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "¡Contando los días para volver!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Se crea una comunidad muy bonita", "intensity": 5, "primitive": "COMMUNITY", "confidence": 0.7, "start_char": 78}], "unmapped": []} e6edb4162b35508a auto 56bb22c1-8631-4285-b549-8fa7c9944462 4257 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR1MTZyMVl3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.457243 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5410 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Ubicación de 10 0 17 \N \N \N 2026-01-31 15:12:32.787696 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "buen sitio para pasar unos días agradables", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Miguel y las chicas otro 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Ubicación de 10", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 50aaec88bb67e138 es 56bb22c1-8631-4285-b549-8fa7c9944462 5411 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 a happy and peaceful atmosphere 42 75 \N \N \N 2026-01-31 15:12:39.730766 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "a happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 516, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 526}], "unmapped": []} 6e704183fe5dab46 en 56bb22c1-8631-4285-b549-8fa7c9944462 5412 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 keep every area of the hostel clean and tidy 132 166 \N \N \N 2026-01-31 15:12:39.735044 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "a happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 516, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 526}], "unmapped": []} 6e704183fe5dab46 en 56bb22c1-8631-4285-b549-8fa7c9944462 5413 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Always smiling and willing to meet every guest’s needs 204 249 \N \N \N 2026-01-31 15:12:39.736611 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "a happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 516, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 526}], "unmapped": []} 6e704183fe5dab46 en 56bb22c1-8631-4285-b549-8fa7c9944462 5414 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I recommend everyone to stay here 487 516 \N \N \N 2026-01-31 15:12:39.738093 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "a happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 516, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 526}], "unmapped": []} 6e704183fe5dab46 en 56bb22c1-8631-4285-b549-8fa7c9944462 1941 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURhMnR2V1pREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 EFFECTIVENESS + 3 3 \N 0.90 Todo muy facil y perfecto!! 88 109 \N \N \N 2026-01-31 03:50:34.70179 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un lugar especial, me sentí en casa desde el primer día.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Tanto Miguel como las voluntarias encantadores.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todo muy facil y perfecto!!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 88}], "unmapped": []} 271eb75cd7f31ec0 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1928 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Muy recomendable. 197 213 \N \N \N 2026-01-31 03:50:28.822608 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 213, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "Hay super buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "ya tenemos fecha de vuelta!!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha sido el mejor de nuestras vidas, la verdad.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 83}], "unmapped": []} d00e5f7e41edcf41 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1929 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Hay super buen ambiente. 165 188 \N \N \N 2026-01-31 03:50:28.823913 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 213, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "Hay super buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "ya tenemos fecha de vuelta!!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha sido el mejor de nuestras vidas, la verdad.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 83}], "unmapped": []} d00e5f7e41edcf41 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1930 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 ya tenemos fecha de vuelta!! 188 213 \N \N \N 2026-01-31 03:50:28.824517 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 213, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "Hay super buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "ya tenemos fecha de vuelta!!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha sido el mejor de nuestras vidas, la verdad.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 83}], "unmapped": []} d00e5f7e41edcf41 auto 56bb22c1-8631-4285-b549-8fa7c9944462 4546 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ4al82NXNRRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 2 2 \N 0.50 Juguetería 0 10 \N \N \N 2026-01-31 13:44:28.795723 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 10, "evidence": "Juguetería", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} 1aa0ad7810a0ac35 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 1931 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY + 3 3 \N 0.70 ha sido el mejor de nuestras vidas, la verdad. 83 118 \N \N \N 2026-01-31 03:50:28.825032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 213, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "Hay super buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 165}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "ya tenemos fecha de vuelta!!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "ha sido el mejor de nuestras vidas, la verdad.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 83}], "unmapped": []} d00e5f7e41edcf41 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1939 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURhMnR2V1pREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Es un lugar especial, me sentí en casa desde el primer día. 0 56 \N \N \N 2026-01-31 03:50:34.695926 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un lugar especial, me sentí en casa desde el primer día.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Tanto Miguel como las voluntarias encantadores.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todo muy facil y perfecto!!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 88}], "unmapped": []} 271eb75cd7f31ec0 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1940 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURhMnR2V1pREAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Tanto Miguel como las voluntarias encantadores. 56 88 \N \N \N 2026-01-31 03:50:34.700654 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un lugar especial, me sentí en casa desde el primer día.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Tanto Miguel como las voluntarias encantadores.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Todo muy facil y perfecto!!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 88}], "unmapped": []} 271eb75cd7f31ec0 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2785 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR6eThDNXZnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:05:57.946092 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4258 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURPNWZtUDNRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.460142 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5415 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 I hope to come back soon 526 548 \N \N \N 2026-01-31 15:12:39.739474 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "a happy and peaceful atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "keep every area of the hostel clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "Always smiling and willing to meet every guest’s needs", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 516, "evidence": "I recommend everyone to stay here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "I hope to come back soon", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 526}], "unmapped": []} 6e704183fe5dab46 en 56bb22c1-8631-4285-b549-8fa7c9944462 5416 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el propietario encantador 3 30 \N \N \N 2026-01-31 15:12:43.736732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el propietario encantador", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 3}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "gracias miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 59}], "unmapped": []} c90e31a5f2b175d1 es 56bb22c1-8631-4285-b549-8fa7c9944462 5417 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 limpieza 31 39 \N \N \N 2026-01-31 15:12:43.739331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el propietario encantador", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 3}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "gracias miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 59}], "unmapped": []} c90e31a5f2b175d1 es 56bb22c1-8631-4285-b549-8fa7c9944462 5418 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 volveré e cuanto pueda 40 58 \N \N \N 2026-01-31 15:12:43.74125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el propietario encantador", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 3}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "gracias miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 59}], "unmapped": []} c90e31a5f2b175d1 es 56bb22c1-8631-4285-b549-8fa7c9944462 5419 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 gracias miguel 59 73 \N \N \N 2026-01-31 15:12:43.742737 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el propietario encantador", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 3}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "limpieza", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "volveré e cuanto pueda", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "gracias miguel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 59}], "unmapped": []} c90e31a5f2b175d1 es 56bb22c1-8631-4285-b549-8fa7c9944462 5617 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Buenas promociones y muchas variedad. 0 39 \N \N \N 2026-01-31 15:16:28.777029 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Buenas promociones y muchas variedad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "Una atención muy buena.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 40}], "unmapped": []} 2a99d8117816e387 es e4f95d90-dbbe-439d-a0fd-f19088002f26 2769 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tkQ1RFNTBTWEZITldwVmJFZFdOMDlsTVhKeVNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 todo perfecto 25 37 \N \N \N 2026-01-31 04:05:47.778941 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "muy responsables en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "todo perfecto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "13 islas ,gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 68}], "unmapped": []} 41bebb3e68b55396 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1945 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 la gente muy amable 20 42 \N \N \N 2026-01-31 03:50:37.804979 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "la gente muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Las instalaciones están bien", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "Recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Literalmente a 2 minutos de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 4ee550b14c6c61b7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1946 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION + 2 3 \N 0.90 Las instalaciones están bien 43 66 \N \N \N 2026-01-31 03:50:37.807351 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "la gente muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Las instalaciones están bien", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "Recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Literalmente a 2 minutos de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 4ee550b14c6c61b7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1947 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Recomiendo 100% 134 150 \N \N \N 2026-01-31 03:50:37.809348 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "la gente muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Las instalaciones están bien", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "Recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Literalmente a 2 minutos de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 4ee550b14c6c61b7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1948 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Literalmente a 2 minutos de la playa 102 132 \N \N \N 2026-01-31 03:50:37.810646 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "la gente muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Las instalaciones están bien", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "Recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Literalmente a 2 minutos de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 4ee550b14c6c61b7 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5420 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el trato maravilloso 10 30 \N \N \N 2026-01-31 15:12:48.691206 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "el teléfono seguí ahí", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Repetiremos !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} a83d90129748c59a es 56bb22c1-8631-4285-b549-8fa7c9944462 5421 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY + 3 3 \N 0.90 el teléfono seguí ahí 134 152 \N \N \N 2026-01-31 15:12:48.693278 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "el teléfono seguí ahí", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Repetiremos !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} a83d90129748c59a es 56bb22c1-8631-4285-b549-8fa7c9944462 4966 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VOR0RzLXUzd3Qyd3JBRRAB Food_Dining.Cafe FOOD_DINING 1.2 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:02:38.891393 gpt-4o-mini {"reason": "empty", "non_informative": true} 0a1d0ee74391bfae unknown dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5422 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Repetiremos ! 66 77 \N \N \N 2026-01-31 15:12:48.694742 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "el teléfono seguí ahí", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Repetiremos !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} a83d90129748c59a es 56bb22c1-8631-4285-b549-8fa7c9944462 5704 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Recomend to visit for everybody! 88 116 \N \N \N 2026-01-31 15:18:00.77142 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "Staff is very friendly!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recomend to visit for everybody!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}], "unmapped": []} de183de7c192f6f1 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5423 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 cerca de la playa 39 56 \N \N \N 2026-01-31 15:12:48.696155 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "el teléfono seguí ahí", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Repetiremos !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} a83d90129748c59a es 56bb22c1-8631-4285-b549-8fa7c9944462 5424 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 el dueño es súper simpático y agradable 56 90 \N \N \N 2026-01-31 15:12:48.697518 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "el trato maravilloso", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "el teléfono seguí ahí", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "Repetiremos !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "cerca de la playa", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "el dueño es súper simpático y agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} a83d90129748c59a es 56bb22c1-8631-4285-b549-8fa7c9944462 1954 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Muy atentos 0 12 \N \N \N 2026-01-31 03:50:41.866117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "buen precio", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "limpieza impecable", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "volveremos", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "nos encanto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} e624612216692e68 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1955 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 buen precio 13 24 \N \N \N 2026-01-31 03:50:41.868718 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "buen precio", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "limpieza impecable", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "volveremos", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "nos encanto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} e624612216692e68 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5425 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Muy buena ubicación, muy buen trato con la gente 0 56 \N \N \N 2026-01-31 15:12:51.192021 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Muy buena ubicación, muy buen trato con la gente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Super recomiendo!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} e9f1fffbcea14d3c es 56bb22c1-8631-4285-b549-8fa7c9944462 1956 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 limpieza impecable 25 42 \N \N \N 2026-01-31 03:50:41.870229 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "buen precio", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "limpieza impecable", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "volveremos", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "nos encanto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} e624612216692e68 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1957 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 volveremos 43 53 \N \N \N 2026-01-31 03:50:41.87163 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "buen precio", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "limpieza impecable", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "volveremos", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "nos encanto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} e624612216692e68 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1958 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 nos encanto 54 64 \N \N \N 2026-01-31 03:50:41.872969 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "buen precio", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "limpieza impecable", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "volveremos", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "nos encanto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} e624612216692e68 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1965 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Limpieza, buenos espacios, camas muy cómodas. 37 73 \N \N \N 2026-01-31 03:50:46.361091 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Limpieza, buenos espacios, camas muy cómodas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "camas muy cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Agradezco Miguel, jefe simpatico y buena persona.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Terraza bonita aunque no hay el mar en frente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 101}], "unmapped": []} f835f850240807fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1966 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 camas muy cómodas. 63 83 \N \N \N 2026-01-31 03:50:46.362923 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Limpieza, buenos espacios, camas muy cómodas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "camas muy cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Agradezco Miguel, jefe simpatico y buena persona.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Terraza bonita aunque no hay el mar en frente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 101}], "unmapped": []} f835f850240807fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 5426 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Super recomiendo!! 56 73 \N \N \N 2026-01-31 15:12:51.194302 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Muy buena ubicación, muy buen trato con la gente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Super recomiendo!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} e9f1fffbcea14d3c es 56bb22c1-8631-4285-b549-8fa7c9944462 5427 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY - 3 3 \N 0.90 the host, Miguel, is covering it up 37 61 \N \N \N 2026-01-31 15:12:56.417682 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "the host, Miguel, is covering it up", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "he chose to lie to other guests", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 410, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 374}], "unmapped": [{"label": "complaint about infestation", "evidence": "This hostel has a serious bed bug infestation", "confidence": 0.9}, {"label": "complaint about treatment", "evidence": "painful bites that required treatment", "confidence": 0.9}, {"label": "warning to avoid property", "evidence": "Avoid this property, and consider carefully whether this is the kind of host you want to trust", "confidence": 0.9}]} a315fad000f0f17f en 56bb22c1-8631-4285-b549-8fa7c9944462 4485 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJcnJxbWpRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOGNITION + 3 3 \N 0.90 La juguetería de mi infancia es aora la de mis hijos 0 54 \N \N \N 2026-01-31 13:43:03.940445 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "La juguetería de mi infancia es aora la de mis hijos", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} 08e221db49c1f858 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5428 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 HONESTY - 3 3 \N 0.90 he chose to lie to other guests 188 217 \N \N \N 2026-01-31 15:12:56.419518 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "the host, Miguel, is covering it up", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "he chose to lie to other guests", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 410, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 374}], "unmapped": [{"label": "complaint about infestation", "evidence": "This hostel has a serious bed bug infestation", "confidence": 0.9}, {"label": "complaint about treatment", "evidence": "painful bites that required treatment", "confidence": 0.9}, {"label": "warning to avoid property", "evidence": "Avoid this property, and consider carefully whether this is the kind of host you want to trust", "confidence": 0.9}]} a315fad000f0f17f en 56bb22c1-8631-4285-b549-8fa7c9944462 5429 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 3 3 \N 0.90 prioritized his reputation over guest safety 374 410 \N \N \N 2026-01-31 15:12:56.420463 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "the host, Miguel, is covering it up", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "he chose to lie to other guests", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 410, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 374}], "unmapped": [{"label": "complaint about infestation", "evidence": "This hostel has a serious bed bug infestation", "confidence": 0.9}, {"label": "complaint about treatment", "evidence": "painful bites that required treatment", "confidence": 0.9}, {"label": "warning to avoid property", "evidence": "Avoid this property, and consider carefully whether this is the kind of host you want to trust", "confidence": 0.9}]} a315fad000f0f17f en 56bb22c1-8631-4285-b549-8fa7c9944462 5430 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 This hostel has a serious bed bug infestation \N \N {"complaint about infestation"} \N \N 2026-01-31 15:12:56.421598 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "the host, Miguel, is covering it up", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "he chose to lie to other guests", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 410, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 374}], "unmapped": [{"label": "complaint about infestation", "evidence": "This hostel has a serious bed bug infestation", "confidence": 0.9}, {"label": "complaint about treatment", "evidence": "painful bites that required treatment", "confidence": 0.9}, {"label": "warning to avoid property", "evidence": "Avoid this property, and consider carefully whether this is the kind of host you want to trust", "confidence": 0.9}]} a315fad000f0f17f en 56bb22c1-8631-4285-b549-8fa7c9944462 5618 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Una atención muy buena. 40 62 \N \N \N 2026-01-31 15:16:28.780331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Buenas promociones y muchas variedad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "Una atención muy buena.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 40}], "unmapped": []} 2a99d8117816e387 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5619 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURNcVp5YUJnEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 precio muy razonable 36 58 \N \N \N 2026-01-31 15:16:30.316808 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "precio muy razonable", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}], "unmapped": []} 372601a1289f6cf4 es e4f95d90-dbbe-439d-a0fd-f19088002f26 2663 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNQNU5uTVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 solucionó el problema con profesionalidad y eficiencia 25 66 \N \N \N 2026-01-31 04:03:30.247798 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "solucionó el problema con profesionalidad y eficiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Brian solucionó el problema con profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 10}], "unmapped": []} 733f4c87ca8d43df auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4547 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNmdE1uN213RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.798256 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 1967 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Agradezco Miguel, jefe simpatico y buena persona. 85 126 \N \N \N 2026-01-31 03:50:46.364366 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Limpieza, buenos espacios, camas muy cómodas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "camas muy cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Agradezco Miguel, jefe simpatico y buena persona.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Terraza bonita aunque no hay el mar en frente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 101}], "unmapped": []} f835f850240807fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1968 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar. 128 186 \N \N \N 2026-01-31 03:50:46.365639 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Limpieza, buenos espacios, camas muy cómodas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "camas muy cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Agradezco Miguel, jefe simpatico y buena persona.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Terraza bonita aunque no hay el mar en frente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 101}], "unmapped": []} f835f850240807fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1969 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.70 Terraza bonita aunque no hay el mar en frente. 101 139 \N \N \N 2026-01-31 03:50:46.366769 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "Limpieza, buenos espacios, camas muy cómodas.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "camas muy cómodas.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Agradezco Miguel, jefe simpatico y buena persona.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Terraza bonita aunque no hay el mar en frente.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 101}], "unmapped": []} f835f850240807fc auto 56bb22c1-8631-4285-b549-8fa7c9944462 1975 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 "El ambiente es inmejorable" 36 56 \N \N \N 2026-01-31 03:50:51.079927 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "\\"El ambiente es inmejorable\\"", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "\\"se preocupan por que esté todo a tu gusto\\"", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "\\"El sitio está limpio\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "\\"camas cómodas\\"", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "\\"sin duda volveré para pasar allí una temporada\\"", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} e8298fa245c5864b auto 56bb22c1-8631-4285-b549-8fa7c9944462 5705 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ 45 87 \N \N \N 2026-01-31 15:18:00.77304 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "Staff is very friendly!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recomend to visit for everybody!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}], "unmapped": []} de183de7c192f6f1 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 1976 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 "se preocupan por que esté todo a tu gusto" 66 93 \N \N \N 2026-01-31 03:50:51.081458 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "\\"El ambiente es inmejorable\\"", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "\\"se preocupan por que esté todo a tu gusto\\"", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "\\"El sitio está limpio\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "\\"camas cómodas\\"", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "\\"sin duda volveré para pasar allí una temporada\\"", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} e8298fa245c5864b auto 56bb22c1-8631-4285-b549-8fa7c9944462 4259 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURPeWFYLVhnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.463448 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1977 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 "El sitio está limpio" 94 113 \N \N \N 2026-01-31 03:50:51.082882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "\\"El ambiente es inmejorable\\"", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "\\"se preocupan por que esté todo a tu gusto\\"", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "\\"El sitio está limpio\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "\\"camas cómodas\\"", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "\\"sin duda volveré para pasar allí una temporada\\"", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} e8298fa245c5864b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1978 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 "camas cómodas" 114 128 \N \N \N 2026-01-31 03:50:51.084015 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "\\"El ambiente es inmejorable\\"", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "\\"se preocupan por que esté todo a tu gusto\\"", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "\\"El sitio está limpio\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "\\"camas cómodas\\"", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "\\"sin duda volveré para pasar allí una temporada\\"", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} e8298fa245c5864b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1979 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 "sin duda volveré para pasar allí una temporada" 174 210 \N \N \N 2026-01-31 03:50:51.085 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "\\"El ambiente es inmejorable\\"", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "\\"se preocupan por que esté todo a tu gusto\\"", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "\\"El sitio está limpio\\"", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "\\"camas cómodas\\"", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "\\"sin duda volveré para pasar allí una temporada\\"", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 174}], "unmapped": []} e8298fa245c5864b auto 56bb22c1-8631-4285-b549-8fa7c9944462 1982 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxbmFHeXV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 lo recomiendo al 200% 36 56 \N \N \N 2026-01-31 03:50:52.333724 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "lo recomiendo al 200%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} b46a34f890a91c90 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5394 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa. 290 347 \N \N \N 2026-01-31 15:12:14.624801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "te hace sentir que estás en familia y en casa.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 139}], "unmapped": []} a6f67b4d5c833f96 es 56bb22c1-8631-4285-b549-8fa7c9944462 1988 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 100% recomendado! 0 17 \N \N \N 2026-01-31 03:50:56.785047 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "100% recomendado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "instalaciones cómodas y limpias", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "instalaciones cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "un staff increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}], "unmapped": []} d38a4bac6a8e2ae4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1989 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 muy buen ambiente 66 82 \N \N \N 2026-01-31 03:50:56.787024 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "100% recomendado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "instalaciones cómodas y limpias", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "instalaciones cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "un staff increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}], "unmapped": []} d38a4bac6a8e2ae4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5431 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 painful bites that required treatment \N \N {"complaint about treatment"} \N \N 2026-01-31 15:12:56.422196 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "the host, Miguel, is covering it up", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "he chose to lie to other guests", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 410, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 374}], "unmapped": [{"label": "complaint about infestation", "evidence": "This hostel has a serious bed bug infestation", "confidence": 0.9}, {"label": "complaint about treatment", "evidence": "painful bites that required treatment", "confidence": 0.9}, {"label": "warning to avoid property", "evidence": "Avoid this property, and consider carefully whether this is the kind of host you want to trust", "confidence": 0.9}]} a315fad000f0f17f en 56bb22c1-8631-4285-b549-8fa7c9944462 5432 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.90 Avoid this property, and consider carefully whether this is the kind of host you want to trust \N \N {"warning to avoid property"} \N \N 2026-01-31 15:12:56.422827 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "the host, Miguel, is covering it up", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "he chose to lie to other guests", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 410, "evidence": "prioritized his reputation over guest safety", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 374}], "unmapped": [{"label": "complaint about infestation", "evidence": "This hostel has a serious bed bug infestation", "confidence": 0.9}, {"label": "complaint about treatment", "evidence": "painful bites that required treatment", "confidence": 0.9}, {"label": "warning to avoid property", "evidence": "Avoid this property, and consider carefully whether this is the kind of host you want to trust", "confidence": 0.9}]} a315fad000f0f17f en 56bb22c1-8631-4285-b549-8fa7c9944462 5434 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 1 2 \N 0.90 Zimmer 6 stinkt nach ekelhaftem käse 0 34 \N \N \N 2026-01-31 15:13:00.247933 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 34, "evidence": "Zimmer 6 stinkt nach ekelhaftem käse", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "da schläft jemand der schnarcht", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "negative", "end_char": 80, "evidence": "vermeidet das Zimmer", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} 59b9c2d1edf00463 de 56bb22c1-8631-4285-b549-8fa7c9944462 5435 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 1 2 \N 0.90 da schläft jemand der schnarcht 35 61 \N \N \N 2026-01-31 15:13:00.254776 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 34, "evidence": "Zimmer 6 stinkt nach ekelhaftem käse", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "da schläft jemand der schnarcht", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "negative", "end_char": 80, "evidence": "vermeidet das Zimmer", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} 59b9c2d1edf00463 de 56bb22c1-8631-4285-b549-8fa7c9944462 4548 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNwbWUzLUV3EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.80126 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5436 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 1 2 \N 0.90 vermeidet das Zimmer 62 80 \N \N \N 2026-01-31 15:13:00.256244 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 34, "evidence": "Zimmer 6 stinkt nach ekelhaftem käse", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "da schläft jemand der schnarcht", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "negative", "end_char": 80, "evidence": "vermeidet das Zimmer", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} 59b9c2d1edf00463 de 56bb22c1-8631-4285-b549-8fa7c9944462 2011 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 muy buena conexión wifi 38 58 \N \N \N 2026-01-31 03:51:07.134532 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy buena conexión wifi", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel es muy simpático", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "sin duda si vuelvo a la isla me volveré a alojar allí", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 97}], "unmapped": []} eb384f7a58908c6f auto 56bb22c1-8631-4285-b549-8fa7c9944462 4071 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 the atmosphere is welcoming 25 50 \N \N \N 2026-01-31 13:34:11.681828 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "the atmosphere is welcoming", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "outstanding service from the bartender", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b7df41b92a74a38f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 1990 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 instalaciones cómodas y limpias 83 113 \N \N \N 2026-01-31 03:50:56.788348 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "100% recomendado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "instalaciones cómodas y limpias", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "instalaciones cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "un staff increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}], "unmapped": []} d38a4bac6a8e2ae4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1991 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 instalaciones cómodas 83 101 \N \N \N 2026-01-31 03:50:56.789889 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "100% recomendado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "instalaciones cómodas y limpias", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "instalaciones cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "un staff increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}], "unmapped": []} d38a4bac6a8e2ae4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1992 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 un staff increíble 114 132 \N \N \N 2026-01-31 03:50:56.791036 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "100% recomendado!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy buen ambiente", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "instalaciones cómodas y limpias", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "instalaciones cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "un staff increíble", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}], "unmapped": []} d38a4bac6a8e2ae4 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1993 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 huge and comfortable 36 58 \N \N \N 2026-01-31 03:51:01.242054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 163, "evidence": "always there for their guests", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Within a minute to the beach", "intensity": 5, "primitive": "LOCATION", "confidence": 0.7, "start_char": 81}], "unmapped": []} 7655a3c99d6fec14 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1994 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 always there for their guests 138 163 \N \N \N 2026-01-31 03:51:01.243963 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 163, "evidence": "always there for their guests", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Within a minute to the beach", "intensity": 5, "primitive": "LOCATION", "confidence": 0.7, "start_char": 81}], "unmapped": []} 7655a3c99d6fec14 auto 56bb22c1-8631-4285-b549-8fa7c9944462 5437 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 la calidez y la atención 32 50 \N \N \N 2026-01-31 15:13:02.701451 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "la calidez y la atención", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Buen servicio y buena gente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 5a703a09341e7379 es 56bb22c1-8631-4285-b549-8fa7c9944462 1995 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Best hostel in Las Palmas! 0 27 \N \N \N 2026-01-31 03:51:01.245552 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 163, "evidence": "always there for their guests", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Within a minute to the beach", "intensity": 5, "primitive": "LOCATION", "confidence": 0.7, "start_char": 81}], "unmapped": []} 7655a3c99d6fec14 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1996 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 huge and comfortable 36 58 \N \N \N 2026-01-31 03:51:01.246853 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 163, "evidence": "always there for their guests", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Within a minute to the beach", "intensity": 5, "primitive": "LOCATION", "confidence": 0.7, "start_char": 81}], "unmapped": []} 7655a3c99d6fec14 auto 56bb22c1-8631-4285-b549-8fa7c9944462 1997 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.70 Within a minute to the beach 81 107 \N \N \N 2026-01-31 03:51:01.248077 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 163, "evidence": "always there for their guests", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Best hostel in Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "huge and comfortable", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Within a minute to the beach", "intensity": 5, "primitive": "LOCATION", "confidence": 0.7, "start_char": 81}], "unmapped": []} 7655a3c99d6fec14 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2003 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxNGRMWXpBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Nette Menschen, hilfsbereit und zuvorkommend. 0 41 \N \N \N 2026-01-31 03:51:03.894833 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Nette Menschen, hilfsbereit und zuvorkommend.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Genau wie ein Hostel sein sollte", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}], "unmapped": []} 8f15a950d3b2fd69 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2004 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNxNGRMWXpBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Genau wie ein Hostel sein sollte 41 66 \N \N \N 2026-01-31 03:51:03.89735 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Nette Menschen, hilfsbereit und zuvorkommend.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Genau wie ein Hostel sein sollte", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}], "unmapped": []} 8f15a950d3b2fd69 auto 56bb22c1-8631-4285-b549-8fa7c9944462 2010 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Buen ambiente. 10 22 \N \N \N 2026-01-31 03:51:07.132711 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy buena conexión wifi", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel es muy simpático", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "sin duda si vuelvo a la isla me volveré a alojar allí", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 97}], "unmapped": []} eb384f7a58908c6f auto 56bb22c1-8631-4285-b549-8fa7c9944462 5438 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Buen servicio y buena gente 51 75 \N \N \N 2026-01-31 15:13:02.703986 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "la calidez y la atención", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Buen servicio y buena gente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 5a703a09341e7379 es 56bb22c1-8631-4285-b549-8fa7c9944462 5439 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 FRICTION - 2 2 \N 0.90 demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide 0 78 \N \N \N 2026-01-31 15:13:06.431903 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide", "intensity": 3, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "Lit immense mais trop mou", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "Prise qui fait peur", "intensity": 3, "primitive": "SAFETY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 5eeddea62974dbf4 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5440 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 1 2 \N 0.90 Lit immense mais trop mou 79 101 \N \N \N 2026-01-31 15:13:06.433188 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide", "intensity": 3, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "Lit immense mais trop mou", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "Prise qui fait peur", "intensity": 3, "primitive": "SAFETY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 5eeddea62974dbf4 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5441 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 2 2 \N 0.90 Prise qui fait peur 102 116 \N \N \N 2026-01-31 15:13:06.434466 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide", "intensity": 3, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "Lit immense mais trop mou", "intensity": 2, "primitive": "COMFORT", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "Prise qui fait peur", "intensity": 3, "primitive": "SAFETY", "confidence": 0.9, "start_char": 102}], "unmapped": []} 5eeddea62974dbf4 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5442 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 El hostal está perfectamente ubicado 0 36 \N \N \N 2026-01-31 15:13:11.390957 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 es 56bb22c1-8631-4285-b549-8fa7c9944462 5443 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 El hostal está muy limpio y los baños siempre impecables 36 78 \N \N \N 2026-01-31 15:13:11.392239 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 es 56bb22c1-8631-4285-b549-8fa7c9944462 5444 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel y las chicas que trabajan ahí son lo más 36 78 \N \N \N 2026-01-31 15:13:11.393391 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 es 56bb22c1-8631-4285-b549-8fa7c9944462 5620 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 muy buenos precios 30 46 \N \N \N 2026-01-31 15:16:32.311294 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "muy buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "es la juguetería más completa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 949100ee4fc756ae es e4f95d90-dbbe-439d-a0fd-f19088002f26 5445 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 si vuelvo a las palmas sin duda nos volvemos a ver 78 116 \N \N \N 2026-01-31 15:13:11.39443 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "El hostal está perfectamente ubicado", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "El hostal está muy limpio y los baños siempre impecables", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Miguel y las chicas que trabajan ahí son lo más", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "si vuelvo a las palmas sin duda nos volvemos a ver", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 78}], "unmapped": []} 5c671ff727b48b28 es 56bb22c1-8631-4285-b549-8fa7c9944462 5446 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 a real family-like atmosphere 30 58 \N \N \N 2026-01-31 15:13:14.895497 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 184, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 8437df0e161b431a en 56bb22c1-8631-4285-b549-8fa7c9944462 5447 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel and the team were amazing 60 85 \N \N \N 2026-01-31 15:13:14.899792 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 184, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 8437df0e161b431a en 56bb22c1-8631-4285-b549-8fa7c9944462 5448 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would gladly choose it again and recommend it to others 139 184 \N \N \N 2026-01-31 15:13:14.901514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "a real family-like atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Miguel and the team were amazing", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 184, "evidence": "I would gladly choose it again and recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 8437df0e161b431a en 56bb22c1-8631-4285-b549-8fa7c9944462 4549 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURSdzlpVkd3EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.804241 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5449 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 It’s such a welcoming place with so many people full of great energy. 37 88 \N \N \N 2026-01-31 15:13:18.66692 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "I can’t wait to come back.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} 63c90f6bc2965b52 en 56bb22c1-8631-4285-b549-8fa7c9944462 5450 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 Everyone is always kind and available. 88 118 \N \N \N 2026-01-31 15:13:18.672164 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "I can’t wait to come back.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} 63c90f6bc2965b52 en 56bb22c1-8631-4285-b549-8fa7c9944462 4951 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 delicious sweet treats 67 89 \N \N \N 2026-01-31 15:02:25.336364 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "nice and cosy atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "delicious sweet treats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 67}], "unmapped": []} 783f9b2ae0ccf2bc en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4260 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPcWY3WkJnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.466318 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2012 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel es muy simpático 70 92 \N \N \N 2026-01-31 03:51:07.136014 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy buena conexión wifi", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel es muy simpático", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "sin duda si vuelvo a la isla me volveré a alojar allí", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 97}], "unmapped": []} eb384f7a58908c6f auto 56bb22c1-8631-4285-b549-8fa7c9944462 2013 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 sin duda si vuelvo a la isla me volveré a alojar allí 97 132 \N \N \N 2026-01-31 03:51:07.137449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Buen ambiente.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy buena conexión wifi", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel es muy simpático", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "sin duda si vuelvo a la isla me volveré a alojar allí", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 97}], "unmapped": []} eb384f7a58908c6f auto 56bb22c1-8631-4285-b549-8fa7c9944462 2770 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tkQ1RFNTBTWEZITldwVmJFZFdOMDlsTVhKeVNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 13 islas ,gracias 68 83 \N \N \N 2026-01-31 04:05:47.781083 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "muy responsables en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "todo perfecto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "13 islas ,gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 68}], "unmapped": []} 41bebb3e68b55396 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2771 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25GMloyWXlWMUZsUXpWWmFtUkZTVWxNY1Mxa1kyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review"} \N \N 2026-01-31 04:05:48.641895 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4550 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNScFlPb2dRRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.806452 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2772 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oVE9WWlROVkJtTUd0UVJrSTNaVFYzU1ZJMVJsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:05:50.01935 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2773 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ORWIxTmZNbXBqZWxOVmVGbHRSRXAzWjBWSlRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review"} \N \N 2026-01-31 04:05:50.860442 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2778 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNBdE1xdGhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:05:52.217948 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2779 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfX0xxMktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review"} \N \N 2026-01-31 04:05:53.090859 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2782 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYcloySmR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:05:54.5893 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2783 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURiOE9UcFVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 2 3 \N 0.90 Rating of 4 0 0 \N \N \N 2026-01-31 04:05:56.418226 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Rating of 4", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": [{"label": "Empty Review Text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2784 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURiOE9UcFVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review Text"} \N \N 2026-01-31 04:05:56.420057 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Rating of 4", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": [{"label": "Empty Review Text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4261 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPMnZHV0xBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.469738 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5451 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RETURN_INTENT + 3 3 \N 0.90 I can’t wait to come back. 145 167 \N \N \N 2026-01-31 15:13:18.67794 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "It’s such a welcoming place with so many people full of great energy.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everyone is always kind and available.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "I can’t wait to come back.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} 63c90f6bc2965b52 en 56bb22c1-8631-4285-b549-8fa7c9944462 5452 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 Everything is old and dirty. 27 50 \N \N \N 2026-01-31 15:13:23.758616 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "No toilet paper.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 en 56bb22c1-8631-4285-b549-8fa7c9944462 5453 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CONDITION - 2 3 \N 0.90 Everything is old and dirty. 27 50 \N \N \N 2026-01-31 15:13:23.762321 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "No toilet paper.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 en 56bb22c1-8631-4285-b549-8fa7c9944462 5454 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 2 3 \N 0.90 There is no hot water at all. 51 75 \N \N \N 2026-01-31 15:13:23.764157 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "No toilet paper.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 en 56bb22c1-8631-4285-b549-8fa7c9944462 5455 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 2 3 \N 0.90 No toilet paper. 76 90 \N \N \N 2026-01-31 15:13:23.765663 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "No toilet paper.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 en 56bb22c1-8631-4285-b549-8fa7c9944462 5621 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 es la juguetería más completa 78 107 \N \N \N 2026-01-31 15:16:32.314465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "muy buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "es la juguetería más completa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 949100ee4fc756ae es e4f95d90-dbbe-439d-a0fd-f19088002f26 4262 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURXOXVEVENREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.474508 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5456 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 1 2 \N 0.70 Staff is kind, but that is not enough to give more stars. 91 129 \N \N \N 2026-01-31 15:13:23.76741 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Everything is old and dirty.", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "There is no hot water at all.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "No toilet paper.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "Staff is kind, but that is not enough to give more stars.", "intensity": 2, "primitive": "MANNER", "confidence": 0.7, "start_char": 91}], "unmapped": []} ad9dc39076dbf612 en 56bb22c1-8631-4285-b549-8fa7c9944462 5748 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-40 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Barmaids are really friendly 58 82 \N \N \N 2026-01-31 15:18:50.055952 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Really liked the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Barmaids are really friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "I had lost my phone and you guys just picked it up and saved my night", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 84}], "unmapped": []} 16359e12da701779 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5457 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs. 56 157 \N \N \N 2026-01-31 15:13:30.358586 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 546, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 32cfc1b4fc857807 en 56bb22c1-8631-4285-b549-8fa7c9944462 5458 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day. 197 253 \N \N \N 2026-01-31 15:13:30.362521 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 546, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 32cfc1b4fc857807 en 56bb22c1-8631-4285-b549-8fa7c9944462 5597 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 2 \N 0.80 muchas cosas con oferta 134 155 \N \N \N 2026-01-31 15:16:04.765981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "la tienda ordenada", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "muchas cosas con oferta", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}], "unmapped": []} f414d917abcde8fd es e4f95d90-dbbe-439d-a0fd-f19088002f26 4962 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VLcVBvSmFWbU1Yb2VREAE Food_Dining.Cafe FOOD_DINING 1.2 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:02:38.885071 gpt-4o-mini {"reason": "empty", "non_informative": true} 0a1d0ee74391bfae unknown dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4963 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2kxd05VOUxTWFl4YW5KUGMyWjFaalV4Y2xSRGVIYxAB Food_Dining.Cafe FOOD_DINING 1.2 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:02:38.886726 gpt-4o-mini {"reason": "empty", "non_informative": true} 0a1d0ee74391bfae unknown dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4964 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2pOVmQzTjJkVVo2WmtkaGRtNXlSRkpKV1dkak9IYxAB Food_Dining.Cafe FOOD_DINING 1.2 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:02:38.888201 gpt-4o-mini {"reason": "empty", "non_informative": true} 0a1d0ee74391bfae unknown dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4965 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT25KT2VUZzNORzl2VUdkTVNreHFWVzgxYkRoTGJIYxAB Food_Dining.Cafe FOOD_DINING 1.2 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:02:38.890129 gpt-4o-mini {"reason": "empty", "non_informative": true} 0a1d0ee74391bfae unknown dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5459 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends 307 392 \N \N \N 2026-01-31 15:13:30.364468 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 546, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 32cfc1b4fc857807 en 56bb22c1-8631-4285-b549-8fa7c9944462 5460 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would come back here anytime and can only recommend people to give this lovely place a try. 487 546 \N \N \N 2026-01-31 15:13:30.367255 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 253, "evidence": "The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 392, "evidence": "thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "positive", "end_char": 546, "evidence": "I would come back here anytime and can only recommend people to give this lovely place a try.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 32cfc1b4fc857807 en 56bb22c1-8631-4285-b549-8fa7c9944462 5461 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 os recomiendo este Hostal 80 101 \N \N \N 2026-01-31 15:13:35.771291 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me sentí muy cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 2034f4af9d179a88 es 56bb22c1-8631-4285-b549-8fa7c9944462 5462 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 los limpiaban diariamente 134 157 \N \N \N 2026-01-31 15:13:35.777429 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me sentí muy cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 2034f4af9d179a88 es 56bb22c1-8631-4285-b549-8fa7c9944462 5598 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY 0 2 2 \N 0.80 más cantidad y variedad 36 56 \N \N \N 2026-01-31 15:16:07.003675 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 56, "evidence": "más cantidad y variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "neutral", "end_char": 88, "evidence": "esta información le sea útil a algún usuario", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 58}], "unmapped": []} 4ec5377d593cf3b6 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4686 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 the prices are super affordable. 75 101 \N \N \N 2026-01-31 14:48:51.282784 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "the prices are super affordable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The track is exciting and well-designed", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} c046c94dfa102afd en a510c278-87b9-45f4-9d0a-e60ff4f30662 5463 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 me sentí muy cómodo 56 75 \N \N \N 2026-01-31 15:13:35.779331 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me sentí muy cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 2034f4af9d179a88 es 56bb22c1-8631-4285-b549-8fa7c9944462 5464 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 tranquilo 45 53 \N \N \N 2026-01-31 15:13:35.781291 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me sentí muy cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 2034f4af9d179a88 es 56bb22c1-8631-4285-b549-8fa7c9944462 5465 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 personal majisimo 36 52 \N \N \N 2026-01-31 15:13:35.782588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "os recomiendo este Hostal", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "los limpiaban diariamente", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "me sentí muy cómodo", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 52, "evidence": "personal majisimo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 2034f4af9d179a88 es 56bb22c1-8631-4285-b549-8fa7c9944462 5466 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUNfanRPcU1BEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:13:35.784235 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f unknown 56bb22c1-8631-4285-b549-8fa7c9944462 5467 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Sitio muy acogedor 0 22 \N \N \N 2026-01-31 15:13:39.678074 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Sitio muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "personal muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendable para ir con los amigos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} 11cec03d7a125b55 es 56bb22c1-8631-4285-b549-8fa7c9944462 5468 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 personal muy agradable 23 45 \N \N \N 2026-01-31 15:13:39.680557 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Sitio muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "personal muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendable para ir con los amigos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} 11cec03d7a125b55 es 56bb22c1-8631-4285-b549-8fa7c9944462 5469 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 muy recomendable para ir con los amigos 46 80 \N \N \N 2026-01-31 15:13:39.682981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Sitio muy acogedor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "personal muy agradable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy recomendable para ir con los amigos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} 11cec03d7a125b55 es 56bb22c1-8631-4285-b549-8fa7c9944462 4263 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNXdHV2RVlREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.477765 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5470 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Me he sentido muy cómodo durante mi estancia de varios días en este hostel. 0 70 \N \N \N 2026-01-31 15:13:45.304565 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 203}], "unmapped": []} 268aac120758269c es 56bb22c1-8631-4285-b549-8fa7c9944462 5471 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Los encargados se preocupan por cuidarlo todo y son muy amigables. 70 116 \N \N \N 2026-01-31 15:13:45.308283 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 203}], "unmapped": []} 268aac120758269c es 56bb22c1-8631-4285-b549-8fa7c9944462 5472 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar. 116 203 \N \N \N 2026-01-31 15:13:45.309939 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 203}], "unmapped": []} 268aac120758269c es 56bb22c1-8631-4285-b549-8fa7c9944462 5473 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Económico y muy recomendable. 203 227 \N \N \N 2026-01-31 15:13:45.31242 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Los encargados se preocupan por cuidarlo todo y son muy amigables.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "Económico y muy recomendable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 203}], "unmapped": []} 268aac120758269c es 56bb22c1-8631-4285-b549-8fa7c9944462 5474 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 Me encanta Las Palmas y le ubicación es muy buena. 0 56 \N \N \N 2026-01-31 15:13:50.39369 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de es 56bb22c1-8631-4285-b549-8fa7c9944462 5599 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT 0 1 2 \N 0.70 esta información le sea útil a algún usuario 58 88 \N \N \N 2026-01-31 15:16:07.010401 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 56, "evidence": "más cantidad y variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "neutral", "end_char": 88, "evidence": "esta información le sea útil a algún usuario", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 58}], "unmapped": []} 4ec5377d593cf3b6 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5475 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 Miguel y sus trabajadores muy agradables. 57 88 \N \N \N 2026-01-31 15:13:50.39669 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de es 56bb22c1-8631-4285-b549-8fa7c9944462 4551 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCeGRfYU93EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.808396 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5476 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 2 3 \N 0.90 Cocina limpia y respetan el sueño. 89 116 \N \N \N 2026-01-31 15:13:50.400621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de es 56bb22c1-8631-4285-b549-8fa7c9944462 5477 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 2 \N 0.90 la relación calidad/precio está bien. 145 174 \N \N \N 2026-01-31 15:13:50.402076 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Me encanta Las Palmas y le ubicación es muy buena.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "Miguel y sus trabajadores muy agradables.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Cocina limpia y respetan el sueño.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 89}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "la relación calidad/precio está bien.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4f223c2e976963de es 56bb22c1-8631-4285-b549-8fa7c9944462 5478 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 a warm and welcoming atmosphere 66 95 \N \N \N 2026-01-31 15:13:53.979885 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "The perfect place to feel at home in Gran Canaria!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 en 56bb22c1-8631-4285-b549-8fa7c9944462 5479 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 The volunteers are the heart and soul of this home 118 157 \N \N \N 2026-01-31 15:13:53.983001 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "The perfect place to feel at home in Gran Canaria!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 en 56bb22c1-8631-4285-b549-8fa7c9944462 5480 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 The perfect place to feel at home in Gran Canaria! 0 54 \N \N \N 2026-01-31 15:13:53.98484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "The volunteers are the heart and soul of this home", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "The perfect place to feel at home in Gran Canaria!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f8334d289ba35498 en 56bb22c1-8631-4285-b549-8fa7c9944462 5512 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 2 3 \N 0.80 La atención es muy buena 119 143 \N \N \N 2026-01-31 15:14:34.055147 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}], "unmapped": []} 486553c2a4a6f624 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5600 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir 43 92 \N \N \N 2026-01-31 15:16:10.227673 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "muy buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "La mejor cadena de jugueterías de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} a04e594b5d096092 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5481 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 el ambiente es alegre y desenfadado 370 399 \N \N \N 2026-01-31 15:13:59.465519 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 399, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 486}, {"details": null, "valence": "positive", "end_char": 493, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": []} b8904a99d1a5b1d2 es 56bb22c1-8631-4285-b549-8fa7c9944462 5482 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Miguel trata a cada huésped como un amigo 164 197 \N \N \N 2026-01-31 15:13:59.467432 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 399, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 486}, {"details": null, "valence": "positive", "end_char": 493, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": []} b8904a99d1a5b1d2 es 56bb22c1-8631-4285-b549-8fa7c9944462 5483 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 baños limpios 486 498 \N \N \N 2026-01-31 15:13:59.46939 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 399, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 486}, {"details": null, "valence": "positive", "end_char": 493, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": []} b8904a99d1a5b1d2 es 56bb22c1-8631-4285-b549-8fa7c9944462 5484 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 literas grandes y cómodas 469 493 \N \N \N 2026-01-31 15:13:59.471114 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 399, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 486}, {"details": null, "valence": "positive", "end_char": 493, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": []} b8904a99d1a5b1d2 es 56bb22c1-8631-4285-b549-8fa7c9944462 5513 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 1 2 \N 0.90 descontento por la atención de una trabajadora 49 78 \N \N \N 2026-01-31 15:14:36.442614 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "descontento por la atención de una trabajadora", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "No volveré más a este Nikki", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 82}], "unmapped": []} ced5615bd10d1d44 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5485 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 mi sugerencia es no pensárselo mucho y escoger este hostel 646 688 \N \N \N 2026-01-31 15:13:59.47268 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 399, "evidence": "el ambiente es alegre y desenfadado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Miguel trata a cada huésped como un amigo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 498, "evidence": "baños limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 486}, {"details": null, "valence": "positive", "end_char": 493, "evidence": "literas grandes y cómodas", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "positive", "end_char": 688, "evidence": "mi sugerencia es no pensárselo mucho y escoger este hostel", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 646}], "unmapped": []} b8904a99d1a5b1d2 es 56bb22c1-8631-4285-b549-8fa7c9944462 5486 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 met une magnifique ambiance 56 81 \N \N \N 2026-01-31 15:14:04.946247 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "favorise les rencontres", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}], "unmapped": []} 749e8129892f432a fr 56bb22c1-8631-4285-b549-8fa7c9944462 5487 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 assurant le calme et la propreté 66 92 \N \N \N 2026-01-31 15:14:04.948979 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "favorise les rencontres", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}], "unmapped": []} 749e8129892f432a fr 56bb22c1-8631-4285-b549-8fa7c9944462 5488 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 soirées organisées par Miguel 157 188 \N \N \N 2026-01-31 15:14:04.950766 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "favorise les rencontres", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}], "unmapped": []} 749e8129892f432a fr 56bb22c1-8631-4285-b549-8fa7c9944462 5489 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMMUNICATION + 3 3 \N 0.90 favorise les rencontres 227 249 \N \N \N 2026-01-31 15:14:04.952537 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "favorise les rencontres", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}], "unmapped": []} 749e8129892f432a fr 56bb22c1-8631-4285-b549-8fa7c9944462 4092 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 amazing service 0 14 \N \N \N 2026-01-31 13:34:34.735247 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "amazing service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "nice club", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}], "unmapped": []} 6bee35d2a930d6d0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5490 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 n’hésitez pas à aller à Pura Vida 188 218 \N \N \N 2026-01-31 15:14:04.953971 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "met une magnifique ambiance", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "assurant le calme et la propreté", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "soirées organisées par Miguel", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "favorise les rencontres", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "n’hésitez pas à aller à Pura Vida", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 188}], "unmapped": []} 749e8129892f432a fr 56bb22c1-8631-4285-b549-8fa7c9944462 5669 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 If you want to see a different kind of entertainment night, you can choose this place. \N \N {"Overall Experience"} \N \N 2026-01-31 15:17:25.465436 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 98, "evidence": "it has a small stage but we didn't like their music very much", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 56}], "unmapped": [{"label": "Overall Experience", "evidence": "If you want to see a different kind of entertainment night, you can choose this place.", "confidence": 0.7}]} a5e32a4a20f65f25 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5491 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 fue correcta, amable y transmite muy buena armonía 56 91 \N \N \N 2026-01-31 15:14:13.885544 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 91, "evidence": "fue correcta, amable y transmite muy buena armonía", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Da gusto encontrar a alguien que disfruta de su trabajo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "quiero agradecerlo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 108}], "unmapped": []} 04a20f5d71b24620 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5492 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Da gusto encontrar a alguien que disfruta de su trabajo 139 179 \N \N \N 2026-01-31 15:14:13.888236 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 91, "evidence": "fue correcta, amable y transmite muy buena armonía", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Da gusto encontrar a alguien que disfruta de su trabajo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "quiero agradecerlo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 108}], "unmapped": []} 04a20f5d71b24620 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5493 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 quiero agradecerlo 108 123 \N \N \N 2026-01-31 15:14:13.889297 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 91, "evidence": "fue correcta, amable y transmite muy buena armonía", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Da gusto encontrar a alguien que disfruta de su trabajo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 123, "evidence": "quiero agradecerlo", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 108}], "unmapped": []} 04a20f5d71b24620 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5494 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz. 90 157 \N \N \N 2026-01-31 15:14:17.849605 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "mal trato verbal de nadie.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 289}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 370}], "unmapped": []} 7c6aeefe68d8bc0d es e4f95d90-dbbe-439d-a0fd-f19088002f26 5514 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB Retail.Stores.Toy_store RETAIL 1.0 RETURN_INTENT - 1 2 \N 0.90 No volveré más a este Nikki 82 104 \N \N \N 2026-01-31 15:14:36.445348 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "descontento por la atención de una trabajadora", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "No volveré más a este Nikki", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 82}], "unmapped": []} ced5615bd10d1d44 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4552 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQtazV2NHdRRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.81028 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5495 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 ETHICS - 2 3 \N 0.90 intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía. 157 215 \N \N \N 2026-01-31 15:14:17.853047 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "mal trato verbal de nadie.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 289}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 370}], "unmapped": []} 7c6aeefe68d8bc0d es e4f95d90-dbbe-439d-a0fd-f19088002f26 5496 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 mal trato verbal de nadie. 289 310 \N \N \N 2026-01-31 15:14:17.85536 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "mal trato verbal de nadie.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 289}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 370}], "unmapped": []} 7c6aeefe68d8bc0d es e4f95d90-dbbe-439d-a0fd-f19088002f26 5497 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED - 2 3 \N 0.70 no compré nada. 370 384 \N \N \N 2026-01-31 15:14:17.858187 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "mal trato verbal de nadie.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 289}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 370}], "unmapped": []} 7c6aeefe68d8bc0d es e4f95d90-dbbe-439d-a0fd-f19088002f26 5498 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija. 36 118 \N \N \N 2026-01-31 15:14:20.89616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muy maja y con un trato de lujo, todo súper fácil.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Así da gusto, la verdad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a17ba7b79f05964d es e4f95d90-dbbe-439d-a0fd-f19088002f26 5499 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Muy maja y con un trato de lujo, todo súper fácil. 119 157 \N \N \N 2026-01-31 15:14:20.898465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muy maja y con un trato de lujo, todo súper fácil.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Así da gusto, la verdad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a17ba7b79f05964d es e4f95d90-dbbe-439d-a0fd-f19088002f26 4553 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtNmVmdWFREAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.81219 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5500 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Así da gusto, la verdad. 158 177 \N \N \N 2026-01-31 15:14:20.900119 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muy maja y con un trato de lujo, todo súper fácil.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Así da gusto, la verdad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} a17ba7b79f05964d es e4f95d90-dbbe-439d-a0fd-f19088002f26 4264 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHN0wyWHNBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.47928 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5501 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 Mala atención y trato por parte de la señora mayor rubia con ojos azules. 0 66 \N \N \N 2026-01-31 15:14:24.325967 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Mala atención y trato por parte de la señora mayor rubia con ojos azules.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "poniendo malas caras y contestaciones pasivo-agresivas.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "la que se hubiera armado en medio de la tienda.", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 140}], "unmapped": []} ca1b2f33f910641f es e4f95d90-dbbe-439d-a0fd-f19088002f26 5502 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 poniendo malas caras y contestaciones pasivo-agresivas. 66 104 \N \N \N 2026-01-31 15:14:24.328385 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Mala atención y trato por parte de la señora mayor rubia con ojos azules.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "poniendo malas caras y contestaciones pasivo-agresivas.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "la que se hubiera armado en medio de la tienda.", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 140}], "unmapped": []} ca1b2f33f910641f es e4f95d90-dbbe-439d-a0fd-f19088002f26 5601 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 muy buenos precios 94 112 \N \N \N 2026-01-31 15:16:10.230054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "muy buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "La mejor cadena de jugueterías de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} a04e594b5d096092 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5503 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT - 2 3 \N 0.80 la que se hubiera armado en medio de la tienda. 140 174 \N \N \N 2026-01-31 15:14:24.330454 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Mala atención y trato por parte de la señora mayor rubia con ojos azules.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "poniendo malas caras y contestaciones pasivo-agresivas.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "la que se hubiera armado en medio de la tienda.", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 140}], "unmapped": []} ca1b2f33f910641f es e4f95d90-dbbe-439d-a0fd-f19088002f26 5504 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 comportamiento vulgar e irrespetuoso 246 284 \N \N \N 2026-01-31 15:14:28.552637 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "comportamiento vulgar e irrespetuoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 182, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 348, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}], "unmapped": [{"label": "Complaint about professionalism", "evidence": "es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "confidence": 0.8}]} 7ef4ae6881049323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5505 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario 114 182 \N \N \N 2026-01-31 15:14:28.555943 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "comportamiento vulgar e irrespetuoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 182, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 348, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}], "unmapped": [{"label": "Complaint about professionalism", "evidence": "es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "confidence": 0.8}]} 7ef4ae6881049323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4093 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 nice club 16 25 \N \N \N 2026-01-31 13:34:34.737387 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "amazing service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "nice club", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}], "unmapped": []} 6bee35d2a930d6d0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5506 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE - 2 3 \N 0.90 proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado 284 348 \N \N \N 2026-01-31 15:14:28.558552 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "comportamiento vulgar e irrespetuoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 182, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 348, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}], "unmapped": [{"label": "Complaint about professionalism", "evidence": "es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "confidence": 0.8}]} 7ef4ae6881049323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5507 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.80 es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad \N \N {"Complaint about professionalism"} \N \N 2026-01-31 15:14:28.560552 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 284, "evidence": "comportamiento vulgar e irrespetuoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 182, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 114}, {"details": null, "valence": "negative", "end_char": 348, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}], "unmapped": [{"label": "Complaint about professionalism", "evidence": "es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "confidence": 0.8}]} 7ef4ae6881049323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5602 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 La mejor cadena de jugueterías de Canarias 0 38 \N \N \N 2026-01-31 15:16:10.231938 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 112, "evidence": "muy buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "La mejor cadena de jugueterías de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} a04e594b5d096092 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5508 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 tuvo paciencia y la ayudó en lo todo posible 82 116 \N \N \N 2026-01-31 15:14:31.065673 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "tuvo paciencia y la ayudó en lo todo posible", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "se lo agradezco", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} 54229ef5e733abfe es e4f95d90-dbbe-439d-a0fd-f19088002f26 5509 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 se lo agradezco 66 78 \N \N \N 2026-01-31 15:14:31.068296 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "tuvo paciencia y la ayudó en lo todo posible", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "se lo agradezco", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} 54229ef5e733abfe es e4f95d90-dbbe-439d-a0fd-f19088002f26 5510 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Una de las mejores jugueterias de Canarias 0 39 \N \N \N 2026-01-31 15:14:34.05057 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}], "unmapped": []} 486553c2a4a6f624 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5511 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 precios de lo mejorcito de toda Canarias 83 118 \N \N \N 2026-01-31 15:14:34.053311 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}], "unmapped": []} 486553c2a4a6f624 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4265 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQ2XzV5TnBnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.481185 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5515 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 la mejor tienda de juguetes de Canarias 0 41 \N \N \N 2026-01-31 15:14:39.93388 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 78, "evidence": "se esté quedando algo justo de mercancía", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la atención al cliente es buena", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "después de navidades suelen tener muy buenas ofertas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 107}], "unmapped": []} be94d464b32b1817 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5516 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 1 2 \N 0.70 se esté quedando algo justo de mercancía 42 78 \N \N \N 2026-01-31 15:14:39.936441 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 78, "evidence": "se esté quedando algo justo de mercancía", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la atención al cliente es buena", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "después de navidades suelen tener muy buenas ofertas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 107}], "unmapped": []} be94d464b32b1817 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5517 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY + 2 2 \N 0.90 la atención al cliente es buena 79 106 \N \N \N 2026-01-31 15:14:39.938338 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 78, "evidence": "se esté quedando algo justo de mercancía", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la atención al cliente es buena", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "después de navidades suelen tener muy buenas ofertas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 107}], "unmapped": []} be94d464b32b1817 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5518 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.80 después de navidades suelen tener muy buenas ofertas 107 147 \N \N \N 2026-01-31 15:14:39.940058 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 78, "evidence": "se esté quedando algo justo de mercancía", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "la atención al cliente es buena", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "después de navidades suelen tener muy buenas ofertas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 107}], "unmapped": []} be94d464b32b1817 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4554 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURtcmFhTzFnRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.8141 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5519 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 Pésima atención al cliente 0 27 \N \N \N 2026-01-31 15:14:41.92573 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "Pésima atención al cliente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "ser borde", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 3b4fc207a4dfb137 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5520 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 ser borde 66 75 \N \N \N 2026-01-31 15:14:41.928108 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "Pésima atención al cliente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "ser borde", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 3b4fc207a4dfb137 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5521 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 la dependienta muy tranquila decide responder y dar prioridad a la llamada, antes que al cliente que tiene en tienda 211 290 \N \N \N 2026-01-31 15:14:45.133601 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 290, "evidence": "la dependienta muy tranquila decide responder y dar prioridad a la llamada, antes que al cliente que tiene en tienda", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "negative", "end_char": 82, "evidence": "me parece vergonzoso que en las fechas que estamos solo haya 2 personas trabajando en tienda", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}], "unmapped": []} fb1d576bd0fc5e90 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4266 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM2cm9DeU93EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.482855 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5523 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 1 2 \N 0.80 los demás empleados hablando y riendo 36 66 \N \N \N 2026-01-31 15:14:48.253556 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los demás empleados hablando y riendo", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "Un gran rato esperando en cola", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "la de Caja esta estresada con una clienta", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}], "unmapped": []} 36d4935598bf4bcc es e4f95d90-dbbe-439d-a0fd-f19088002f26 5524 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Retail.Stores.Toy_store RETAIL 1.0 SPEED - 1 2 \N 0.90 Un gran rato esperando en cola 0 30 \N \N \N 2026-01-31 15:14:48.25647 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los demás empleados hablando y riendo", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "Un gran rato esperando en cola", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "la de Caja esta estresada con una clienta", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}], "unmapped": []} 36d4935598bf4bcc es e4f95d90-dbbe-439d-a0fd-f19088002f26 5525 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 1 2 \N 0.80 la de Caja esta estresada con una clienta 66 101 \N \N \N 2026-01-31 15:14:48.25861 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los demás empleados hablando y riendo", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "Un gran rato esperando en cola", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "la de Caja esta estresada con una clienta", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}], "unmapped": []} 36d4935598bf4bcc es e4f95d90-dbbe-439d-a0fd-f19088002f26 5395 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 te hace sentir que estás en familia y en casa. 139 173 \N \N \N 2026-01-31 15:12:14.626456 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "te hace sentir que estás en familia y en casa.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 139}], "unmapped": []} a6f67b4d5c833f96 es 56bb22c1-8631-4285-b549-8fa7c9944462 5526 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 1 2 \N 0.90 destacar a la empleada Mar 56 78 \N \N \N 2026-01-31 15:14:53.019426 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "negative", "end_char": 1060, "evidence": "respuesta IMPOSIBLE", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1041}, {"details": null, "valence": "negative", "end_char": 1072, "evidence": "no les importa perder este tipo de negocios y posibles clientes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1030}], "unmapped": [{"label": "General dissatisfaction", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.9}, {"label": "Failed purchase attempt", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.9}]} 995f165a78e24405 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5527 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 FRICTION - 2 3 \N 0.90 no han dado facilidades, siendo una compra de más de 200€ 194 236 \N \N \N 2026-01-31 15:14:53.022628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "negative", "end_char": 1060, "evidence": "respuesta IMPOSIBLE", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1041}, {"details": null, "valence": "negative", "end_char": 1072, "evidence": "no les importa perder este tipo de negocios y posibles clientes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1030}], "unmapped": [{"label": "General dissatisfaction", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.9}, {"label": "Failed purchase attempt", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.9}]} 995f165a78e24405 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5528 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 respuesta IMPOSIBLE 1041 1060 \N \N \N 2026-01-31 15:14:53.024417 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "negative", "end_char": 1060, "evidence": "respuesta IMPOSIBLE", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1041}, {"details": null, "valence": "negative", "end_char": 1072, "evidence": "no les importa perder este tipo de negocios y posibles clientes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1030}], "unmapped": [{"label": "General dissatisfaction", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.9}, {"label": "Failed purchase attempt", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.9}]} 995f165a78e24405 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5529 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND - 2 3 \N 0.90 no les importa perder este tipo de negocios y posibles clientes 1030 1072 \N \N \N 2026-01-31 15:14:53.025991 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "negative", "end_char": 1060, "evidence": "respuesta IMPOSIBLE", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1041}, {"details": null, "valence": "negative", "end_char": 1072, "evidence": "no les importa perder este tipo de negocios y posibles clientes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1030}], "unmapped": [{"label": "General dissatisfaction", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.9}, {"label": "Failed purchase attempt", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.9}]} 995f165a78e24405 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5530 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.90 La experiencia no ha sido nada buena, bastante desilusionada. \N \N {"General dissatisfaction"} \N \N 2026-01-31 15:14:53.028132 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "negative", "end_char": 1060, "evidence": "respuesta IMPOSIBLE", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1041}, {"details": null, "valence": "negative", "end_char": 1072, "evidence": "no les importa perder este tipo de negocios y posibles clientes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1030}], "unmapped": [{"label": "General dissatisfaction", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.9}, {"label": "Failed purchase attempt", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.9}]} 995f165a78e24405 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5531 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.90 decidí desistir del pedido y no les importó absolutamente nada. \N \N {"Failed purchase attempt"} \N \N 2026-01-31 15:14:53.029923 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 194}, {"details": null, "valence": "negative", "end_char": 1060, "evidence": "respuesta IMPOSIBLE", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1041}, {"details": null, "valence": "negative", "end_char": 1072, "evidence": "no les importa perder este tipo de negocios y posibles clientes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 1030}], "unmapped": [{"label": "General dissatisfaction", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.9}, {"label": "Failed purchase attempt", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.9}]} 995f165a78e24405 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5532 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana 15 78 \N \N \N 2026-01-31 15:14:58.017615 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 274, "evidence": "Un acierto SIEMPRE recurrir a ustedes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "inclusive por la calidad- precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 220}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 6136ecf910a40fcf es e4f95d90-dbbe-439d-a0fd-f19088002f26 5538 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY - 2 3 \N 0.80 parecen que nos iban a regalar los 219 euros 49 78 \N \N \N 2026-01-31 15:15:00.979993 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "mala atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "parecen que nos iban a regalar los 219 euros", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "se nota que les da igual perder la venta", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 81}], "unmapped": []} c5534571c3380323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4267 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM2b0piemV3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.485258 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5533 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 COMPETENCE + 3 3 \N 0.90 Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!! 80 145 \N \N \N 2026-01-31 15:14:58.020398 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 274, "evidence": "Un acierto SIEMPRE recurrir a ustedes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "inclusive por la calidad- precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 220}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 6136ecf910a40fcf es e4f95d90-dbbe-439d-a0fd-f19088002f26 5534 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Un acierto SIEMPRE recurrir a ustedes 246 274 \N \N \N 2026-01-31 15:14:58.021794 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 274, "evidence": "Un acierto SIEMPRE recurrir a ustedes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "inclusive por la calidad- precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 220}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 6136ecf910a40fcf es e4f95d90-dbbe-439d-a0fd-f19088002f26 5535 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 inclusive por la calidad- precio 220 246 \N \N \N 2026-01-31 15:14:58.02409 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 274, "evidence": "Un acierto SIEMPRE recurrir a ustedes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "inclusive por la calidad- precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 220}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 6136ecf910a40fcf es e4f95d90-dbbe-439d-a0fd-f19088002f26 5536 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas 196 220 \N \N \N 2026-01-31 15:14:58.028829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 274, "evidence": "Un acierto SIEMPRE recurrir a ustedes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "inclusive por la calidad- precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 220}, {"details": null, "valence": "positive", "end_char": 220, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 196}], "unmapped": []} 6136ecf910a40fcf es e4f95d90-dbbe-439d-a0fd-f19088002f26 5537 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 mala atención 66 78 \N \N \N 2026-01-31 15:15:00.977306 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "mala atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "parecen que nos iban a regalar los 219 euros", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "se nota que les da igual perder la venta", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 81}], "unmapped": []} c5534571c3380323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4268 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNhOU11Y0pBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.486638 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5539 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 se nota que les da igual perder la venta 81 113 \N \N \N 2026-01-31 15:15:00.983983 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "mala atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "parecen que nos iban a regalar los 219 euros", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "se nota que les da igual perder la venta", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 81}], "unmapped": []} c5534571c3380323 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5540 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 2 3 \N 0.90 precios razonables 27 46 \N \N \N 2026-01-31 15:15:03.953529 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "precios razonables", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "mixed", "end_char": 83, "evidence": "debería ampliar más su gama", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 61}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "La tarjeta de ahorro debería poder utilizarse mostrando solo el DNI", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 85}], "unmapped": []} 689728b7d91aacaa es e4f95d90-dbbe-439d-a0fd-f19088002f26 5541 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 2 2 \N 0.70 debería ampliar más su gama 61 83 \N \N \N 2026-01-31 15:15:03.955893 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "precios razonables", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "mixed", "end_char": 83, "evidence": "debería ampliar más su gama", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 61}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "La tarjeta de ahorro debería poder utilizarse mostrando solo el DNI", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 85}], "unmapped": []} 689728b7d91aacaa es e4f95d90-dbbe-439d-a0fd-f19088002f26 5542 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY ± 2 2 \N 0.70 La tarjeta de ahorro debería poder utilizarse mostrando solo el DNI 85 134 \N \N \N 2026-01-31 15:15:03.957502 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "precios razonables", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "mixed", "end_char": 83, "evidence": "debería ampliar más su gama", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 61}, {"details": null, "valence": "mixed", "end_char": 134, "evidence": "La tarjeta de ahorro debería poder utilizarse mostrando solo el DNI", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 85}], "unmapped": []} 689728b7d91aacaa es e4f95d90-dbbe-439d-a0fd-f19088002f26 5543 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 2 3 \N 0.90 la amabilidad de sus empleados 56 81 \N \N \N 2026-01-31 15:15:07.025547 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "la amabilidad de sus empleados", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "gran variedad de juguetes para todas las edades", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no hay nada mejor que recorrer el pasillo de una jugeteria y elegir", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 119}], "unmapped": []} 3e12b3169ec15847 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5544 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 gran variedad de juguetes para todas las edades 82 118 \N \N \N 2026-01-31 15:15:07.027999 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "la amabilidad de sus empleados", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "gran variedad de juguetes para todas las edades", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no hay nada mejor que recorrer el pasillo de una jugeteria y elegir", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 119}], "unmapped": []} 3e12b3169ec15847 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5545 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.80 no hay nada mejor que recorrer el pasillo de una jugeteria y elegir 119 157 \N \N \N 2026-01-31 15:15:07.030948 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "la amabilidad de sus empleados", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "gran variedad de juguetes para todas las edades", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no hay nada mejor que recorrer el pasillo de una jugeteria y elegir", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 119}], "unmapped": []} 3e12b3169ec15847 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4094 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE + 2 3 \N 0.90 Good cocktails 0 15 \N \N \N 2026-01-31 13:34:36.760169 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Good cocktails", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "good music", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}], "unmapped": []} 6bba6e41a6d8dfd7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5546 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL + 3 3 \N 0.90 Los precios y la variedad son de diez. 0 37 \N \N \N 2026-01-31 15:15:10.863844 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 37, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "nos recomendaron un juguete mas barato al que habíamos elegido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 73}], "unmapped": []} 525893e7a47c07db es e4f95d90-dbbe-439d-a0fd-f19088002f26 5547 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 El trato del personal nos gustó muchísimo. 38 73 \N \N \N 2026-01-31 15:15:10.866576 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 37, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "nos recomendaron un juguete mas barato al que habíamos elegido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 73}], "unmapped": []} 525893e7a47c07db es e4f95d90-dbbe-439d-a0fd-f19088002f26 5548 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 En resumen, recomendaría éste lugar a todo el mundo. 139 182 \N \N \N 2026-01-31 15:15:10.868317 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 37, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "nos recomendaron un juguete mas barato al que habíamos elegido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 73}], "unmapped": []} 525893e7a47c07db es e4f95d90-dbbe-439d-a0fd-f19088002f26 5549 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.70 nos recomendaron un juguete mas barato al que habíamos elegido 73 139 \N \N \N 2026-01-31 15:15:10.870514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 37, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "nos recomendaron un juguete mas barato al que habíamos elegido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 73}], "unmapped": []} 525893e7a47c07db es e4f95d90-dbbe-439d-a0fd-f19088002f26 5550 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 súper amable 36 49 \N \N \N 2026-01-31 15:15:13.965269 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "me lo reservaron", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Muchas gracias", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a84ab24560c430b es e4f95d90-dbbe-439d-a0fd-f19088002f26 5551 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 me lo reservaron 90 102 \N \N \N 2026-01-31 15:15:13.967489 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "me lo reservaron", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Muchas gracias", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a84ab24560c430b es e4f95d90-dbbe-439d-a0fd-f19088002f26 5552 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOGNITION + 3 3 \N 0.90 Muchas gracias 134 149 \N \N \N 2026-01-31 15:15:13.968855 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "me lo reservaron", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 149, "evidence": "Muchas gracias", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a84ab24560c430b es e4f95d90-dbbe-439d-a0fd-f19088002f26 5553 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 precios algo inferior que otras tiendas más conocidas 42 82 \N \N \N 2026-01-31 15:15:17.312334 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "precios algo inferior que otras tiendas más conocidas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "no todas las tiendas tienen la misma variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "la del CC El mirador, la que menos variedad tiene", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 118}], "unmapped": []} 484f5433b83707af es e4f95d90-dbbe-439d-a0fd-f19088002f26 5554 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 2 2 \N 0.70 no todas las tiendas tienen la misma variedad 84 116 \N \N \N 2026-01-31 15:15:17.31629 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "precios algo inferior que otras tiendas más conocidas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "no todas las tiendas tienen la misma variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "la del CC El mirador, la que menos variedad tiene", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 118}], "unmapped": []} 484f5433b83707af es e4f95d90-dbbe-439d-a0fd-f19088002f26 5555 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY - 2 2 \N 0.70 la del CC El mirador, la que menos variedad tiene 118 157 \N \N \N 2026-01-31 15:15:17.318232 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "precios algo inferior que otras tiendas más conocidas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "no todas las tiendas tienen la misma variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "la del CC El mirador, la que menos variedad tiene", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 118}], "unmapped": []} 484f5433b83707af es e4f95d90-dbbe-439d-a0fd-f19088002f26 5556 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 2 \N 0.80 personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos 56 138 \N \N \N 2026-01-31 15:15:20.213288 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 138, "evidence": "personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Le doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e2ff01afa71a1412 es e4f95d90-dbbe-439d-a0fd-f19088002f26 4687 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 The track is exciting and well-designed 43 75 \N \N \N 2026-01-31 14:48:51.285215 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "the prices are super affordable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The track is exciting and well-designed", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} c046c94dfa102afd en a510c278-87b9-45f4-9d0a-e60ff4f30662 2276 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 3 3 \N 0.90 el sercicio es el peor 204 227 \N \N \N 2026-01-31 03:55:45.978348 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "más de tres meses con humedad (soy asmática, pueden imaginarse lo mal q lo estoy pasando)", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 66}], "unmapped": []} 3378a0fe8ac02fd6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2277 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.80 respuesta que tiene q venir albañil q ya me llamarán 139 174 \N \N \N 2026-01-31 03:55:45.980824 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "más de tres meses con humedad (soy asmática, pueden imaginarse lo mal q lo estoy pasando)", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 66}], "unmapped": []} 3378a0fe8ac02fd6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4269 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURxX28zOTRnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.49193 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2278 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 3 3 \N 0.60 más de tres meses con humedad (soy asmática, pueden imaginarse lo mal q lo estoy pasando) 66 134 \N \N \N 2026-01-31 03:55:45.982262 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "más de tres meses con humedad (soy asmática, pueden imaginarse lo mal q lo estoy pasando)", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 66}], "unmapped": []} 3378a0fe8ac02fd6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2791 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN6aF9Qc19nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 04:05:59.934159 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.5}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2279 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 El trabajo se ha realizado en tiempo y forma. 83 113 \N \N \N 2026-01-31 03:55:49.528465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "El trabajo se ha realizado en tiempo y forma.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "al operario Jonay que lo realizó con gran profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}], "unmapped": []} 62b40b9aea9bd3e4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2280 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés 0 66 \N \N \N 2026-01-31 03:55:49.530495 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "El trabajo se ha realizado en tiempo y forma.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "al operario Jonay que lo realizó con gran profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}], "unmapped": []} 62b40b9aea9bd3e4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2281 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 al operario Jonay que lo realizó con gran profesionalidad. 66 100 \N \N \N 2026-01-31 03:55:49.532216 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "El trabajo se ha realizado en tiempo y forma.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "al operario Jonay que lo realizó con gran profesionalidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}], "unmapped": []} 62b40b9aea9bd3e4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2282 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min. 90 134 \N \N \N 2026-01-31 03:55:53.06899 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "no podría usar la agua en día entera,sí no estaba solucionado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} f53f42107b6c449c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2283 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 no podría usar la agua en día entera,sí no estaba solucionado. 134 174 \N \N \N 2026-01-31 03:55:53.070744 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "no podría usar la agua en día entera,sí no estaba solucionado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} f53f42107b6c449c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4270 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURDN1pUcEp3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.499999 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2284 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muchas gracias de 13 islas empresas yo tuve buenas días de navidad. 174 218 \N \N \N 2026-01-31 03:55:53.072343 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "no podría usar la agua en día entera,sí no estaba solucionado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} f53f42107b6c449c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2297 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 Encima que hay poco aparcamiento por la zona 20 56 \N \N \N 2026-01-31 03:56:10.778588 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Siempre hacen lo mismo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "Encima que hay poco aparcamiento por la zona", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 69, "evidence": "Se cogen DOS", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 56}], "unmapped": []} 9a8351dbb7eb6188 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2285 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 rápidos en arreglar la avería 0 30 \N \N \N 2026-01-31 03:55:57.822542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "rápidos en arreglar la avería", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 114, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}], "unmapped": []} 783ed4bf0a625fa1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2286 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 dejaron todo muy limpio 60 80 \N \N \N 2026-01-31 03:55:57.824688 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "rápidos en arreglar la avería", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 114, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}], "unmapped": []} 783ed4bf0a625fa1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2287 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Gracias a Giovanni por un trabajo tan bueno 81 114 \N \N \N 2026-01-31 03:55:57.826412 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "rápidos en arreglar la avería", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 114, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}], "unmapped": []} 783ed4bf0a625fa1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2288 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS - 2 3 \N 0.90 la atención telefónica ha sido NEFASTA 36 66 \N \N \N 2026-01-31 03:56:03.428485 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "bastante incompetente que nos atiende", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 386, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 0802de73da4eeeb9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2294 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 hoy antes de la hora , ( perfecto) 36 54 \N \N \N 2026-01-31 03:56:07.04757 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 98, "evidence": "supo desde el primer momento el tema de la averia y solucionado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "hoy antes de la hora , ( perfecto)", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "estupendo profecional, gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 99}], "unmapped": []} 19184f98da3e8be5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5396 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Hostel totalment recomanable. 0 30 \N \N \N 2026-01-31 15:12:18.282551 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hostel totalment recomanable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Bon ambient,", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "prop de la platja de las Canteras", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 54}], "unmapped": []} 02566b45e227f576 es 56bb22c1-8631-4285-b549-8fa7c9944462 2289 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 bastante incompetente que nos atiende 85 118 \N \N \N 2026-01-31 03:56:03.430728 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "bastante incompetente que nos atiende", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 386, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 0802de73da4eeeb9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2290 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 nos dejan colgados 370 386 \N \N \N 2026-01-31 03:56:03.43257 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "bastante incompetente que nos atiende", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 386, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 0802de73da4eeeb9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2291 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 no pueden venir…no hasta mañana 408 442 \N \N \N 2026-01-31 03:56:03.434376 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "bastante incompetente que nos atiende", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 386, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 0802de73da4eeeb9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2292 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 se nos está inundando la casa desde hace más de 24 hrs 174 210 \N \N \N 2026-01-31 03:56:03.436982 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "bastante incompetente que nos atiende", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 386, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 174}], "unmapped": []} 0802de73da4eeeb9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2293 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 supo desde el primer momento el tema de la averia y solucionado 56 98 \N \N \N 2026-01-31 03:56:07.043385 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 98, "evidence": "supo desde el primer momento el tema de la averia y solucionado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "hoy antes de la hora , ( perfecto)", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "estupendo profecional, gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 99}], "unmapped": []} 19184f98da3e8be5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 3932 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 2 3 \N 0.90 Nice and clean 54 66 \N \N \N 2026-01-31 13:31:55.35565 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Nice and clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "mixed", "end_char": 78, "evidence": "every surface of the bathrooms was indeed really really wet", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 36}], "unmapped": []} 2c84e32360641d62 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2295 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 estupendo profecional, gracias 99 124 \N \N \N 2026-01-31 03:56:07.048973 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 98, "evidence": "supo desde el primer momento el tema de la averia y solucionado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "hoy antes de la hora , ( perfecto)", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "estupendo profecional, gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 99}], "unmapped": []} 19184f98da3e8be5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2296 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 Siempre hacen lo mismo 0 20 \N \N \N 2026-01-31 03:56:10.776354 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Siempre hacen lo mismo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "Encima que hay poco aparcamiento por la zona", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 69, "evidence": "Se cogen DOS", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 56}], "unmapped": []} 9a8351dbb7eb6188 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2700 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNObl83Yzd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Son siempre muy amables 36 58 \N \N \N 2026-01-31 04:04:23.317919 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "Son siempre muy amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "cumplieron con todo lo que necesitábamos", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 60}], "unmapped": []} 263d5e1d78bcf737 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2298 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 Se cogen DOS 56 69 \N \N \N 2026-01-31 03:56:10.780506 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Siempre hacen lo mismo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "Encima que hay poco aparcamiento por la zona", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 69, "evidence": "Se cogen DOS", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 56}], "unmapped": []} 9a8351dbb7eb6188 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2299 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Primera vez que un seguro y el servicio técnico me sorprende 0 61 \N \N \N 2026-01-31 03:56:13.934836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Primera vez que un seguro y el servicio técnico me sorprende", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "no dilación no lentitud tiempo record el arreglo", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "muy conforme con el servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}], "unmapped": []} 82623ea7dc9a4bf8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2300 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 no dilación no lentitud tiempo record el arreglo 61 97 \N \N \N 2026-01-31 03:56:13.93668 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Primera vez que un seguro y el servicio técnico me sorprende", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "no dilación no lentitud tiempo record el arreglo", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "muy conforme con el servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}], "unmapped": []} 82623ea7dc9a4bf8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2301 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 muy conforme con el servicio 97 118 \N \N \N 2026-01-31 03:56:13.938126 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Primera vez que un seguro y el servicio técnico me sorprende", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "no dilación no lentitud tiempo record el arreglo", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "muy conforme con el servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 97}], "unmapped": []} 82623ea7dc9a4bf8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2664 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNQNU5uTVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Brian solucionó el problema con profesionalidad 10 43 \N \N \N 2026-01-31 04:03:30.249334 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "solucionó el problema con profesionalidad y eficiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Brian solucionó el problema con profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 10}], "unmapped": []} 733f4c87ca8d43df auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2302 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 han realizado un trabajo muy notable 37 66 \N \N \N 2026-01-31 03:56:16.633367 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "han realizado un trabajo muy notable", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "han cumplido a la perfección", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido una atención", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b0b3e238023db5f3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2303 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 han cumplido a la perfección 70 92 \N \N \N 2026-01-31 03:56:16.635441 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "han realizado un trabajo muy notable", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "han cumplido a la perfección", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido una atención", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b0b3e238023db5f3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2304 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Hemos recibido una atención 0 30 \N \N \N 2026-01-31 03:56:16.637117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "han realizado un trabajo muy notable", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "han cumplido a la perfección", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido una atención", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b0b3e238023db5f3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2792 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN6aF9Qc19nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.50 \N \N {"Empty review text"} \N \N 2026-01-31 04:05:59.937151 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.5}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2305 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy recomendable. 90 104 \N \N \N 2026-01-31 03:56:21.156625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2306 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rapidez 30 37 \N \N \N 2026-01-31 03:56:21.1591 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2307 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 eficacia 39 47 \N \N \N 2026-01-31 03:56:21.160791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2308 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 amabilidad 49 58 \N \N \N 2026-01-31 03:56:21.162184 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2309 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 tanto de la joven que llama como el operador que vino acasa 60 94 \N \N \N 2026-01-31 03:56:21.163882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 94, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2324 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5MW9POVVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 El fontanero encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación. 0 118 \N \N \N 2026-01-31 03:56:38.399175 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 117, "evidence": "Enrique es muy profesional, educado y amable.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "El fontanero encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6bcda5222185bb3c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2310 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 verdaderos profesionales, rápidos y sobre todo límpios en su trabajo 56 95 \N \N \N 2026-01-31 03:56:24.904015 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "verdaderos profesionales, rápidos y sobre todo límpios en su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "El contacto con la persona de la oficina también muy bien", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy contenta con los trabajos realizados", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} edfb15d8c163fc2e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2311 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY + 3 3 \N 0.90 El contacto con la persona de la oficina también muy bien 95 132 \N \N \N 2026-01-31 03:56:24.905935 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "verdaderos profesionales, rápidos y sobre todo límpios en su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "El contacto con la persona de la oficina también muy bien", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy contenta con los trabajos realizados", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} edfb15d8c163fc2e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2312 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy contenta con los trabajos realizados 36 66 \N \N \N 2026-01-31 03:56:24.907391 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "verdaderos profesionales, rápidos y sobre todo límpios en su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "El contacto con la persona de la oficina también muy bien", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy contenta con los trabajos realizados", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} edfb15d8c163fc2e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2665 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMxcXI2aTdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 gracias por El personal que tenéis son amables eficaces y muy serviciales 0 78 \N \N \N 2026-01-31 04:03:31.94436 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "gracias por El personal que tenéis son amables eficaces y muy serviciales", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} f682a201ad86ded6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4555 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNtazllZk1REAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.816202 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2313 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 todo un profesional en cuestión de 20 minutos me la solucionó 66 108 \N \N \N 2026-01-31 03:56:28.797591 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "todo un profesional en cuestión de 20 minutos me la solucionó", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "ejecutó el trabajo de forma excelente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 160, "evidence": "Totalmente satisfecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 7475cd463c3130a6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2314 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 ejecutó el trabajo de forma excelente 109 138 \N \N \N 2026-01-31 03:56:28.799765 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "todo un profesional en cuestión de 20 minutos me la solucionó", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "ejecutó el trabajo de forma excelente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 160, "evidence": "Totalmente satisfecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 7475cd463c3130a6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2315 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Totalmente satisfecho 139 160 \N \N \N 2026-01-31 03:56:28.801552 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "todo un profesional en cuestión de 20 minutos me la solucionó", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "ejecutó el trabajo de forma excelente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 160, "evidence": "Totalmente satisfecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 7475cd463c3130a6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2316 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 2 \N 0.90 La primera persona a la que enviaron fue muy profesional 118 157 \N \N \N 2026-01-31 03:56:33.14963 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no velan por la necesidad real del cliente", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 388}], "unmapped": [{"label": "Organization and Task Prioritization", "evidence": "mi comentario negativo es por la organización de la empresa y su forma de priorizar las tareas", "confidence": 0.7}]} b693af0a3616faec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2317 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 2 \N 0.80 no han enviado a nadie para tratar la humedad del pasillo 197 239 \N \N \N 2026-01-31 03:56:33.152312 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no velan por la necesidad real del cliente", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 388}], "unmapped": [{"label": "Organization and Task Prioritization", "evidence": "mi comentario negativo es por la organización de la empresa y su forma de priorizar las tareas", "confidence": 0.7}]} b693af0a3616faec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2318 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 2 \N 0.80 no velan por la necesidad real del cliente 388 426 \N \N \N 2026-01-31 03:56:33.157505 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no velan por la necesidad real del cliente", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 388}], "unmapped": [{"label": "Organization and Task Prioritization", "evidence": "mi comentario negativo es por la organización de la empresa y su forma de priorizar las tareas", "confidence": 0.7}]} b693af0a3616faec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2332 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 nos resolvió el problema con eficacia 66 90 \N \N \N 2026-01-31 03:56:52.907582 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "nos resolvió el problema con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "con rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "un excelente profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} b9237b8096f70242 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2319 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.70 mi comentario negativo es por la organización de la empresa y su forma de priorizar las tareas \N \N {"Organization and Task Prioritization"} \N \N 2026-01-31 03:56:33.159999 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 239, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no velan por la necesidad real del cliente", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 388}], "unmapped": [{"label": "Organization and Task Prioritization", "evidence": "mi comentario negativo es por la organización de la empresa y su forma de priorizar las tareas", "confidence": 0.7}]} b693af0a3616faec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2320 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 2 \N 0.80 me contestan pues ya lo sabes 164 185 \N \N \N 2026-01-31 03:56:35.626856 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 185, "evidence": "me contestan pues ya lo sabes", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 204, "evidence": "Poco profesionales", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}], "unmapped": [{"label": "Service Delay", "evidence": "5 días después me llama un vecino que está mojándose el coche la avería", "confidence": 0.6}]} c0aa3c745dcda2b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2321 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 2 \N 0.90 Poco profesionales 186 204 \N \N \N 2026-01-31 03:56:35.628859 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 185, "evidence": "me contestan pues ya lo sabes", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 204, "evidence": "Poco profesionales", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}], "unmapped": [{"label": "Service Delay", "evidence": "5 días después me llama un vecino que está mojándose el coche la avería", "confidence": 0.6}]} c0aa3c745dcda2b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2322 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.60 5 días después me llama un vecino que está mojándose el coche la avería \N \N {"Service Delay"} \N \N 2026-01-31 03:56:35.630621 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 185, "evidence": "me contestan pues ya lo sabes", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 204, "evidence": "Poco profesionales", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}], "unmapped": [{"label": "Service Delay", "evidence": "5 días después me llama un vecino que está mojándose el coche la avería", "confidence": 0.6}]} c0aa3c745dcda2b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2323 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5MW9POVVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Enrique es muy profesional, educado y amable. 82 117 \N \N \N 2026-01-31 03:56:38.397028 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 117, "evidence": "Enrique es muy profesional, educado y amable.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "El fontanero encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6bcda5222185bb3c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2325 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 Simone fue muy muy amable y cariñoso 164 197 \N \N \N 2026-01-31 03:56:46.341764 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "Simone fue muy muy amable y cariñoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "El chico se esmero 3 h y picó intentando localizarla", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "neutral", "end_char": 164, "evidence": "la culpa en mi caso es del tipo de seguro de la casera", "intensity": 3, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 126}], "unmapped": []} b910125eb78afa73 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2326 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 2 3 \N 0.90 El chico se esmero 3 h y picó intentando localizarla 63 107 \N \N \N 2026-01-31 03:56:46.34377 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "Simone fue muy muy amable y cariñoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "El chico se esmero 3 h y picó intentando localizarla", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "neutral", "end_char": 164, "evidence": "la culpa en mi caso es del tipo de seguro de la casera", "intensity": 3, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 126}], "unmapped": []} b910125eb78afa73 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2837 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQwZ0pQel9BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 04:06:31.466841 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.5}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2327 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT 0 2 2 \N 0.70 la culpa en mi caso es del tipo de seguro de la casera 126 164 \N \N \N 2026-01-31 03:56:46.345185 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "Simone fue muy muy amable y cariñoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "El chico se esmero 3 h y picó intentando localizarla", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "neutral", "end_char": 164, "evidence": "la culpa en mi caso es del tipo de seguro de la casera", "intensity": 3, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 126}], "unmapped": []} b910125eb78afa73 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2328 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 poca seriedad, 0% recomendable, y mentirosos. 211 249 \N \N \N 2026-01-31 03:56:49.928746 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 249, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "la pared sigue húmeda.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 249}], "unmapped": []} df84a58cd7082fb4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2329 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.80 dándome más de 15 días de excusas. 100 132 \N \N \N 2026-01-31 03:56:49.931137 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 249, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "la pared sigue húmeda.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 249}], "unmapped": []} df84a58cd7082fb4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2330 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY - 2 3 \N 0.80 no pueden venirme hasta el 9 de Junio 116 144 \N \N \N 2026-01-31 03:56:49.933386 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 249, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "la pared sigue húmeda.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 249}], "unmapped": []} df84a58cd7082fb4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2339 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 sólo hacen tirarse la pelota unos a otros 66 101 \N \N \N 2026-01-31 03:56:57.868235 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "se han desentendido", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "sólo hacen tirarse la pelota unos a otros", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Llevo más de dos meses esperando la reparación", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1434c4a12f6cbfa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2331 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 la pared sigue húmeda. 249 267 \N \N \N 2026-01-31 03:56:49.935825 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 249, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 100}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "la pared sigue húmeda.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 249}], "unmapped": []} df84a58cd7082fb4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2679 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEcktqNGhBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 muchas gracias al operario 70 92 \N \N \N 2026-01-31 04:03:51.365339 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "muchas gracias al operario", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "El trabajo eléctrico... todo perfecto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5bc32af23fbec5ff auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2333 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 con rapidez 94 102 \N \N \N 2026-01-31 03:56:52.909994 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "nos resolvió el problema con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "con rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "un excelente profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} b9237b8096f70242 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2334 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 un excelente profesional 54 76 \N \N \N 2026-01-31 03:56:52.91178 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "nos resolvió el problema con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "con rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "un excelente profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} b9237b8096f70242 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2335 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 muy profesional el sr. fontanero 41 66 \N \N \N 2026-01-31 03:56:55.203123 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "muy profesional el sr. fontanero", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "todo correcto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 68}], "unmapped": []} dd45d27ac703cc1c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2336 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 todo correcto 27 39 \N \N \N 2026-01-31 03:56:55.206765 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "muy profesional el sr. fontanero", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "todo correcto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 68}], "unmapped": []} dd45d27ac703cc1c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2337 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Perfecto 68 75 \N \N \N 2026-01-31 03:56:55.208808 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "muy profesional el sr. fontanero", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "todo correcto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 68}], "unmapped": []} dd45d27ac703cc1c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2338 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 se han desentendido 139 157 \N \N \N 2026-01-31 03:56:57.8661 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "se han desentendido", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "sólo hacen tirarse la pelota unos a otros", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Llevo más de dos meses esperando la reparación", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1434c4a12f6cbfa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2340 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY - 2 3 \N 0.90 Llevo más de dos meses esperando la reparación 0 43 \N \N \N 2026-01-31 03:56:57.87027 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "se han desentendido", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "sólo hacen tirarse la pelota unos a otros", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 43, "evidence": "Llevo más de dos meses esperando la reparación", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1434c4a12f6cbfa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2341 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 un servicio rápido y excelente 61 85 \N \N \N 2026-01-31 03:57:00.283907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "un servicio rápido y excelente", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ya está solucionado el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 91}], "unmapped": []} d92eec3ef91a2a10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2342 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 ya está solucionado el problema 43 66 \N \N \N 2026-01-31 03:57:00.286257 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "un servicio rápido y excelente", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ya está solucionado el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 91}], "unmapped": []} d92eec3ef91a2a10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2343 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.70 Gracias. 91 97 \N \N \N 2026-01-31 03:57:00.287886 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "un servicio rápido y excelente", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ya está solucionado el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 91}], "unmapped": []} d92eec3ef91a2a10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2344 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Les recomiendo esta Compañía. 146 171 \N \N \N 2026-01-31 03:57:04.690701 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Puntualidad, orden y limpieza", "intensity": 5, "primitive": "PUNCTUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 8bfcdd78be068d9a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2345 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 orden y limpieza en los dos días en que realizaron su trabajo 82 129 \N \N \N 2026-01-31 03:57:04.692822 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Puntualidad, orden y limpieza", "intensity": 5, "primitive": "PUNCTUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 8bfcdd78be068d9a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2346 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 He recibido una atención perfecta por parte de esta Empresa. 0 66 \N \N \N 2026-01-31 03:57:04.694735 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Puntualidad, orden y limpieza", "intensity": 5, "primitive": "PUNCTUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 8bfcdd78be068d9a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2347 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED + 3 3 \N 0.70 Puntualidad, orden y limpieza 66 82 \N \N \N 2026-01-31 03:57:04.696392 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Puntualidad, orden y limpieza", "intensity": 5, "primitive": "PUNCTUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 8bfcdd78be068d9a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2838 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQwZ0pQel9BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.50 \N \N {"Empty review text"} \N \N 2026-01-31 04:06:31.469124 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.5}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2348 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy recomendable 118 134 \N \N \N 2026-01-31 03:57:10.140978 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}], "unmapped": []} 0252b0a234840fc6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2349 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Grandes profesionales en todos los niveles 42 78 \N \N \N 2026-01-31 03:57:10.143139 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}], "unmapped": []} 0252b0a234840fc6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2350 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 una gestión eficiente de todo el proceso 85 118 \N \N \N 2026-01-31 03:57:10.145186 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}], "unmapped": []} 0252b0a234840fc6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2351 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Puntualidad, profesionalidad 78 85 \N \N \N 2026-01-31 03:57:10.147342 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}], "unmapped": []} 0252b0a234840fc6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5397 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.80 Bon ambient, 31 43 \N \N \N 2026-01-31 15:12:18.284329 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hostel totalment recomanable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Bon ambient,", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "prop de la platja de las Canteras", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 54}], "unmapped": []} 02566b45e227f576 es 56bb22c1-8631-4285-b549-8fa7c9944462 2352 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 excelentes profesionales 164 186 \N \N \N 2026-01-31 03:57:14.449929 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 3508095a4bd541b0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2353 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 trato del cerrajero excelente 43 69 \N \N \N 2026-01-31 03:57:14.451649 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 3508095a4bd541b0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2354 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 gestión impecable 29 46 \N \N \N 2026-01-31 03:57:14.453378 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 3508095a4bd541b0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2355 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY + 3 3 \N 0.90 todo facilidades en la gestión y solución 70 107 \N \N \N 2026-01-31 03:57:14.455244 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 3508095a4bd541b0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2356 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 no duden en contactar con ellos 132 157 \N \N \N 2026-01-31 03:57:14.457217 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 69, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 3508095a4bd541b0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2357 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Excelente trabajo y atención recibida 0 38 \N \N \N 2026-01-31 03:57:21.280212 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} db8698ccd809b3d7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2728 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5bExQVHV3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Excelente trato y servicio 0 30 \N \N \N 2026-01-31 04:04:57.795003 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Excelente trato y servicio", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9f628521679692ba auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2367 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 muy amable la señora que me atendió por teléfono 90 134 \N \N \N 2026-01-31 03:57:30.585607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "una atención tan correcta y educada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 229, "evidence": "los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 203}], "unmapped": []} 671db7ad547530aa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2358 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 solución una avería de agua que terminó con cambio de plato de ducha y azulejos 39 95 \N \N \N 2026-01-31 03:57:21.282603 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} db8698ccd809b3d7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2359 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Amabilidad y solvencia de las señoritas 96 126 \N \N \N 2026-01-31 03:57:21.284385 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} db8698ccd809b3d7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5398 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 3 \N 0.80 prop de la platja de las Canteras 54 82 \N \N \N 2026-01-31 15:12:18.285915 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hostel totalment recomanable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Bon ambient,", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "prop de la platja de las Canteras", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.8, "start_char": 54}], "unmapped": []} 02566b45e227f576 es 56bb22c1-8631-4285-b549-8fa7c9944462 2360 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION + 3 3 \N 0.90 Buena comunicación con el perito y la empresa 127 157 \N \N \N 2026-01-31 03:57:21.285985 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} db8698ccd809b3d7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2361 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Gracias. 158 164 \N \N \N 2026-01-31 03:57:21.287336 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Gracias.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} db8698ccd809b3d7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2362 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 La mejor empresa del sector y eso es difícil decirlo 36 78 \N \N \N 2026-01-31 03:57:26.457987 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 308, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 275}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 310}], "unmapped": []} 61f47b838d1c6b13 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2363 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias 80 143 \N \N \N 2026-01-31 03:57:26.46043 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 308, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 275}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 310}], "unmapped": []} 61f47b838d1c6b13 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5291 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 VALUE_FOR_MONEY - 2 3 \N 0.90 Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero 157 227 \N \N \N 2026-01-31 15:10:06.152816 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "Hicieron una prueba de presion y me rompieron una pieza de la la cisterna del baño que luego se negaron a reparar.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2364 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!! 205 263 \N \N \N 2026-01-31 03:57:26.462218 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 308, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 275}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 310}], "unmapped": []} 61f47b838d1c6b13 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2365 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 Angel su pintor, que dejó todo muy bien,!! 275 308 \N \N \N 2026-01-31 03:57:26.463855 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 308, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 275}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 310}], "unmapped": []} 61f47b838d1c6b13 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2366 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 A todos y cada uno de ellos GRACIAS por un servicio del 10...... 310 353 \N \N \N 2026-01-31 03:57:26.46542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "positive", "end_char": 308, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 275}, {"details": null, "valence": "positive", "end_char": 353, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 310}], "unmapped": []} 61f47b838d1c6b13 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2793 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN6LTV2dENBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:02.71667 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4095 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 good music 16 27 \N \N \N 2026-01-31 13:34:36.762434 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Good cocktails", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "good music", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}], "unmapped": []} 6bba6e41a6d8dfd7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2368 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 2 3 \N 0.90 una atención tan correcta y educada 134 162 \N \N \N 2026-01-31 03:57:30.588438 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "una atención tan correcta y educada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 229, "evidence": "los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 203}], "unmapped": []} 671db7ad547530aa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4556 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNtZ2RtQjJ3RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.818828 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2369 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 3 \N 0.90 El fontanero que resolvió la avería, también muy bien 162 203 \N \N \N 2026-01-31 03:57:30.590125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "una atención tan correcta y educada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 229, "evidence": "los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 203}], "unmapped": []} 671db7ad547530aa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2370 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED - 1 2 \N 0.80 los tres días que tuve que esperar 203 229 \N \N \N 2026-01-31 03:57:30.591639 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "una atención tan correcta y educada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 229, "evidence": "los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 203}], "unmapped": []} 671db7ad547530aa auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2371 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s5U2FuaHJTV2hvZW5kRlJrUk5ZVWhIZEZkS1VuYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 sin duda son los mejores del sector. 43 76 \N \N \N 2026-01-31 03:57:32.211807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "sin duda son los mejores del sector.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} 6658e7973c47556d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2372 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 la dejaron como nueva 83 104 \N \N \N 2026-01-31 03:57:35.531796 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "la dejaron como nueva", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Pendientes y atentos en toda la gestión", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Les contactaría nuevamente ante una futura incidencia", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} b31c02030a36ca93 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2373 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Pendientes y atentos en toda la gestión 60 85 \N \N \N 2026-01-31 03:57:35.533273 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "la dejaron como nueva", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Pendientes y atentos en toda la gestión", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Les contactaría nuevamente ante una futura incidencia", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} b31c02030a36ca93 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2374 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RETURN_INTENT + 3 3 \N 0.90 Les contactaría nuevamente ante una futura incidencia 118 157 \N \N \N 2026-01-31 03:57:35.534184 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "la dejaron como nueva", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Pendientes y atentos en toda la gestión", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Les contactaría nuevamente ante una futura incidencia", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} b31c02030a36ca93 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4271 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURDcmVTYWFREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.504024 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2375 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy buen servicio y rápido 0 27 \N \N \N 2026-01-31 03:57:38.204859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy buen servicio y rápido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "buen profesional el señor que me arreglo las averías", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "servicio y rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 10}], "unmapped": []} 49ea752397b24669 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2376 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 buen profesional el señor que me arreglo las averías 28 66 \N \N \N 2026-01-31 03:57:38.207036 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy buen servicio y rápido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "buen profesional el señor que me arreglo las averías", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "servicio y rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 10}], "unmapped": []} 49ea752397b24669 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2377 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 servicio y rápido 10 20 \N \N \N 2026-01-31 03:57:38.208364 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy buen servicio y rápido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "buen profesional el señor que me arreglo las averías", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "servicio y rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 10}], "unmapped": []} 49ea752397b24669 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2378 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomendado. 56 66 \N \N \N 2026-01-31 03:57:41.052074 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "el trabajo finalizado de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Muy profesionales,", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4774c1eb2978fb78 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2379 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 el trabajo finalizado de muy buena calidad. 30 62 \N \N \N 2026-01-31 03:57:41.054523 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "el trabajo finalizado de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Muy profesionales,", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4774c1eb2978fb78 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2380 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Muy profesionales, 0 17 \N \N \N 2026-01-31 03:57:41.056199 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "el trabajo finalizado de muy buena calidad.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Muy profesionales,", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4774c1eb2978fb78 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2381 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 2 3 \N 0.90 muy atentos 112 124 \N \N \N 2026-01-31 03:57:44.954486 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 124, "evidence": "muy atentos", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "solucionando todos los problemas rápidamente", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "la experiencia ha sido muy buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 1d80bc2b9278baf6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2390 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pseGIxTjBiMmMzZVZsbmNtSm1hV2hEYjBsR2IxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Buen trato 0 9 \N \N \N 2026-01-31 03:57:52.322297 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "tuvieron mucho esmero por atendernos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 9, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 01d61591ef758d72 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2382 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 solucionando todos los problemas rápidamente 128 162 \N \N \N 2026-01-31 03:57:44.95652 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 124, "evidence": "muy atentos", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "solucionando todos los problemas rápidamente", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "la experiencia ha sido muy buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 1d80bc2b9278baf6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2383 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 la experiencia ha sido muy buena 85 109 \N \N \N 2026-01-31 03:57:44.958534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 124, "evidence": "muy atentos", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "solucionando todos los problemas rápidamente", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "la experiencia ha sido muy buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 1d80bc2b9278baf6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2384 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 la empresa se esforzó por ofrecer un buen servicio 36 66 \N \N \N 2026-01-31 03:57:48.602769 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "la empresa se esforzó por ofrecer un buen servicio", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "trabajando fuera de su horario para terminar la tarea", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "La empresa debería estar agradecida de tener a alguien así", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 3baa0c273608f04e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2385 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 trabajando fuera de su horario para terminar la tarea 138 174 \N \N \N 2026-01-31 03:57:48.607971 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "la empresa se esforzó por ofrecer un buen servicio", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "trabajando fuera de su horario para terminar la tarea", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "La empresa debería estar agradecida de tener a alguien así", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 3baa0c273608f04e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2386 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 La empresa debería estar agradecida de tener a alguien así 174 210 \N \N \N 2026-01-31 03:57:48.610665 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "la empresa se esforzó por ofrecer un buen servicio", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "trabajando fuera de su horario para terminar la tarea", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "La empresa debería estar agradecida de tener a alguien así", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}], "unmapped": []} 3baa0c273608f04e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2387 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY + 2 3 \N 0.90 Puntualmente a las 11.30 horas estaba en mi puerta! 82 114 \N \N \N 2026-01-31 03:57:50.698004 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 114, "evidence": "Puntualmente a las 11.30 horas estaba en mi puerta!", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "amable y profesional!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 130}], "unmapped": []} 4ba349b263125471 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2388 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 amable y profesional! 130 152 \N \N \N 2026-01-31 03:57:50.700819 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 114, "evidence": "Puntualmente a las 11.30 horas estaba en mi puerta!", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "amable y profesional!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 130}], "unmapped": []} 4ba349b263125471 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2389 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pseGIxTjBiMmMzZVZsbmNtSm1hV2hEYjBsR2IxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 tuvieron mucho esmero por atendernos 24 56 \N \N \N 2026-01-31 03:57:52.31708 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "tuvieron mucho esmero por atendernos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 9, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 01d61591ef758d72 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2391 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 Me responden que la responsable está al teléfono y no puede responder. 43 93 \N \N \N 2026-01-31 03:57:54.888579 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 93, "evidence": "Me responden que la responsable está al teléfono y no puede responder.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "Que me llamarían en breve, y estoy esperando.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 95}], "unmapped": [{"label": "Service Urgency", "evidence": "Servicio urgente", "confidence": 0.7}]} ba52b97d149021b6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2392 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 Que me llamarían en breve, y estoy esperando. 95 126 \N \N \N 2026-01-31 03:57:54.891847 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 93, "evidence": "Me responden que la responsable está al teléfono y no puede responder.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "Que me llamarían en breve, y estoy esperando.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 95}], "unmapped": [{"label": "Service Urgency", "evidence": "Servicio urgente", "confidence": 0.7}]} ba52b97d149021b6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2393 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.70 Servicio urgente \N \N {"Service Urgency"} \N \N 2026-01-31 03:57:54.894104 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 93, "evidence": "Me responden que la responsable está al teléfono y no puede responder.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "Que me llamarían en breve, y estoy esperando.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 95}], "unmapped": [{"label": "Service Urgency", "evidence": "Servicio urgente", "confidence": 0.7}]} ba52b97d149021b6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2394 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 El técnico fue muy atento y correcto 34 66 \N \N \N 2026-01-31 03:57:58.046217 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "El técnico fue muy atento y correcto", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "lo ha realizado rápido y de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Estoy contenta con el servicio de la empresa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ebca39f9febc324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2395 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 lo ha realizado rápido y de calidad 90 118 \N \N \N 2026-01-31 03:57:58.048554 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "El técnico fue muy atento y correcto", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "lo ha realizado rápido y de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Estoy contenta con el servicio de la empresa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ebca39f9febc324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2396 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Estoy contenta con el servicio de la empresa 0 37 \N \N \N 2026-01-31 03:57:58.050426 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "El técnico fue muy atento y correcto", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "lo ha realizado rápido y de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "Estoy contenta con el servicio de la empresa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ebca39f9febc324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2397 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 2 \N 0.90 estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema. 0 139 \N \N \N 2026-01-31 03:58:02.737637 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "en fin, q estoy bastante descontento con esa empresa, pq odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2398 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 PRICE_FAIRNESS - 2 3 \N 0.90 estoy muy descontento con la empresa "13 islas", particularmente por el precio abusivo de sus honorarios. 140 188 \N \N \N 2026-01-31 03:58:02.739805 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "en fin, q estoy bastante descontento con esa empresa, pq odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2399 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 PRICE_FAIRNESS - 2 3 \N 0.90 ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos. 290 339 \N \N \N 2026-01-31 03:58:02.741475 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "en fin, q estoy bastante descontento con esa empresa, pq odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2400 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 en fin, q estoy bastante descontento con esa empresa, pq odio q me tomen por idiota. 340 392 \N \N \N 2026-01-31 03:58:02.74361 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "en fin, q estoy bastante descontento con esa empresa, pq odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2401 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 arreglo todo perfecto 14 34 \N \N \N 2026-01-31 03:58:05.279912 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "arreglo todo perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "super amable muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "de 10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} fa502b984297d88f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2402 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 super amable muy profesional 35 61 \N \N \N 2026-01-31 03:58:05.283092 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "arreglo todo perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "super amable muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "de 10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} fa502b984297d88f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2403 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 de 10 62 67 \N \N \N 2026-01-31 03:58:05.285187 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "arreglo todo perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "super amable muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "de 10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} fa502b984297d88f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4272 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURDMW9fdkF3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.506199 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4557 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNtMnVYalFREAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.820937 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2404 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 me dejaron 3h esperando 138 157 \N \N \N 2026-01-31 03:58:08.898054 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "me dejaron 3h esperando", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "me colgo el telefono", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 259, "evidence": "mala educacion", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 152, "evidence": "sigo con la pared del baño de mi local destrozada", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 1d413ee7667f29e9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2405 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.90 me colgo el telefono 197 217 \N \N \N 2026-01-31 03:58:08.901304 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "me dejaron 3h esperando", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "me colgo el telefono", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 259, "evidence": "mala educacion", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 152, "evidence": "sigo con la pared del baño de mi local destrozada", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 1d413ee7667f29e9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2406 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS - 2 3 \N 0.90 mala educacion 246 259 \N \N \N 2026-01-31 03:58:08.904007 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "me dejaron 3h esperando", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "me colgo el telefono", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 259, "evidence": "mala educacion", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 152, "evidence": "sigo con la pared del baño de mi local destrozada", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 1d413ee7667f29e9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2407 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 sigo con la pared del baño de mi local destrozada 116 152 \N \N \N 2026-01-31 03:58:08.906065 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "me dejaron 3h esperando", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 217, "evidence": "me colgo el telefono", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 259, "evidence": "mala educacion", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 152, "evidence": "sigo con la pared del baño de mi local destrozada", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 1d413ee7667f29e9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2408 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 un profesional como la copa de un pino 56 83 \N \N \N 2026-01-31 03:58:13.139772 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "se esforzó y puso toda su dedicación", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "me resolvió la fuga de agua", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 6a94e91a30b21105 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5292 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tweVUwcHljVFV6TkRWUFJsWkdlRlZRWVRaRFNuYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 amabilidad tanto de la parte administrativa como de los operarios 36 83 \N \N \N 2026-01-31 15:10:09.490953 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "amabilidad tanto de la parte administrativa como de los operarios", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Trabajos bien hecho y rápido", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} ff93e1fe4a5fffbc es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4558 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNHdnAzTDlBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.82247 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2409 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 se esforzó y puso toda su dedicación 100 134 \N \N \N 2026-01-31 03:58:13.141817 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "se esforzó y puso toda su dedicación", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "me resolvió la fuga de agua", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 6a94e91a30b21105 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2798 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUR0LWVEdkdBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:06.482012 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2410 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD 135 179 \N \N \N 2026-01-31 03:58:13.1437 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "se esforzó y puso toda su dedicación", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "me resolvió la fuga de agua", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 6a94e91a30b21105 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2411 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 me resolvió la fuga de agua 37 61 \N \N \N 2026-01-31 03:58:13.145829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "se esforzó y puso toda su dedicación", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "me resolvió la fuga de agua", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}], "unmapped": []} 6a94e91a30b21105 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2412 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atención recibida 22 42 \N \N \N 2026-01-31 03:58:16.375085 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 5813930af98a3276 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2413 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 puntualidad 44 54 \N \N \N 2026-01-31 03:58:16.377338 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 5813930af98a3276 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2414 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionalidad 56 70 \N \N \N 2026-01-31 03:58:16.379203 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 5813930af98a3276 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2415 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 3 3 \N 0.90 No se lo recomiendo ni a mis propios enemigos. 108 143 \N \N \N 2026-01-31 03:58:19.566353 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 143, "evidence": "No se lo recomiendo ni a mis propios enemigos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "negative", "end_char": 97, "evidence": "fontanero chulo y mal educado que enviaron a reparar una chapuza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "reparar una chapuza que él mismo había hecho hace unos meses atrás", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 97}], "unmapped": []} c2304a153ebc96d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2416 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.80 fontanero chulo y mal educado que enviaron a reparar una chapuza 56 97 \N \N \N 2026-01-31 03:58:19.568424 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 143, "evidence": "No se lo recomiendo ni a mis propios enemigos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "negative", "end_char": 97, "evidence": "fontanero chulo y mal educado que enviaron a reparar una chapuza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "reparar una chapuza que él mismo había hecho hace unos meses atrás", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 97}], "unmapped": []} c2304a153ebc96d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2417 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.80 reparar una chapuza que él mismo había hecho hace unos meses atrás 97 134 \N \N \N 2026-01-31 03:58:19.570332 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 143, "evidence": "No se lo recomiendo ni a mis propios enemigos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "negative", "end_char": 97, "evidence": "fontanero chulo y mal educado que enviaron a reparar una chapuza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "reparar una chapuza que él mismo había hecho hace unos meses atrás", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 97}], "unmapped": []} c2304a153ebc96d2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2418 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 pusieron solución 98 113 \N \N \N 2026-01-31 03:58:23.159602 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} dd88136fd3a77fb7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2419 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 acudieron muy rápido 66 83 \N \N \N 2026-01-31 03:58:23.162192 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} dd88136fd3a77fb7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2420 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 el buen talante de la persona que acudió 113 144 \N \N \N 2026-01-31 03:58:23.163879 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} dd88136fd3a77fb7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5293 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tweVUwcHljVFV6TkRWUFJsWkdlRlZRWVRaRFNuYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Trabajos bien hecho y rápido 0 27 \N \N \N 2026-01-31 15:10:09.494827 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "amabilidad tanto de la parte administrativa como de los operarios", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Trabajos bien hecho y rápido", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} ff93e1fe4a5fffbc es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2421 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Un servicio muy bueno 144 165 \N \N \N 2026-01-31 03:58:23.165326 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 165, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} dd88136fd3a77fb7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2422 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 Unos chapuzas nada profesionales. 90 118 \N \N \N 2026-01-31 03:58:26.451203 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 77, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2431 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYMFBHLVZBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 personas de trato agradable y educado 111 145 \N \N \N 2026-01-31 03:58:35.452205 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 109, "evidence": "trabajaron de forma eficaz", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "personas de trato agradable y educado", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 111}], "unmapped": []} 6ea0c9e975834dc7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2423 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 tardaron un tardan mas de una semana en dar cita para reparar un desague atascado. 0 77 \N \N \N 2026-01-31 03:58:26.453625 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 77, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2424 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOVERY - 2 3 \N 0.90 Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero 157 218 \N \N \N 2026-01-31 03:58:26.455735 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "Unos chapuzas nada profesionales.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 77, "evidence": "tardaron un tardan mas de una semana en dar cita para reparar un desague atascado.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c3d6d86eca5c8c53 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2425 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tweVUwcHljVFV6TkRWUFJsWkdlRlZRWVRaRFNuYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Trabajos bien hecho y rápido. 0 30 \N \N \N 2026-01-31 03:58:29.129804 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Trabajos bien hecho y rápido.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Y amabilidad tanto de parte de la parte administrativa como de los operarios.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}], "unmapped": []} ff93e1fe4a5fffbc auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2426 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tweVUwcHljVFV6TkRWUFJsWkdlRlZRWVRaRFNuYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Y amabilidad tanto de parte de la parte administrativa como de los operarios. 30 83 \N \N \N 2026-01-31 03:58:29.132075 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Trabajos bien hecho y rápido.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Y amabilidad tanto de parte de la parte administrativa como de los operarios.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}], "unmapped": []} ff93e1fe4a5fffbc auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2427 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 qué educado y profesional fue 36 66 \N \N \N 2026-01-31 03:58:32.980541 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "qué educado y profesional fue", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "no descansó hasta nos soluionó hasta el último problema", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "que lo cuiden como oro en paño", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4912d7d171d45f6c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2428 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 no descansó hasta nos soluionó hasta el último problema 90 129 \N \N \N 2026-01-31 03:58:32.983392 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "qué educado y profesional fue", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "no descansó hasta nos soluionó hasta el último problema", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "que lo cuiden como oro en paño", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4912d7d171d45f6c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2429 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 que lo cuiden como oro en paño 145 174 \N \N \N 2026-01-31 03:58:32.985202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "qué educado y profesional fue", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "no descansó hasta nos soluionó hasta el último problema", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "que lo cuiden como oro en paño", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4912d7d171d45f6c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4096 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Fantastic atmosphere. 0 22 \N \N \N 2026-01-31 13:34:38.053636 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Fantastic atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 231fa71f45a3bd5d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2432 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 realizaron un trabajo maravilloso 56 83 \N \N \N 2026-01-31 03:58:41.562588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "educados y muy profesionales", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 101}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 128}], "unmapped": []} 53e17f19eca0b7a7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2433 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 fueron puntuales 83 95 \N \N \N 2026-01-31 03:58:41.564982 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "educados y muy profesionales", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 101}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 128}], "unmapped": []} 53e17f19eca0b7a7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2434 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 limpios 95 101 \N \N \N 2026-01-31 03:58:41.566984 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "educados y muy profesionales", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 101}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 128}], "unmapped": []} 53e17f19eca0b7a7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4559 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNHdU0zNC13RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.823991 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2435 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 educados y muy profesionales 101 126 \N \N \N 2026-01-31 03:58:41.56867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "educados y muy profesionales", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 101}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 128}], "unmapped": []} 53e17f19eca0b7a7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2436 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Sin duda tener esta empresa como seguro de hogar es un acierto 128 174 \N \N \N 2026-01-31 03:58:41.570148 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 95}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "educados y muy profesionales", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 101}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 128}], "unmapped": []} 53e17f19eca0b7a7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2680 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEcktqNGhBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 El trabajo eléctrico... todo perfecto 0 54 \N \N \N 2026-01-31 04:03:51.367652 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "muchas gracias al operario", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "El trabajo eléctrico... todo perfecto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5bc32af23fbec5ff auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2439 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomiendo 💯 81 92 \N \N \N 2026-01-31 03:58:44.525814 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "muy eficiente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "ha sido amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 57}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recomiendo 💯", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}], "unmapped": []} a41c2a8a690c5f38 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2440 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNJZ1p5Wm5BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Realmente los recomiendo. 56 78 \N \N \N 2026-01-31 03:58:47.398884 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Realmente los recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias por hacerlo tan bien.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "cada una ha sido muy positiva.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}], "unmapped": []} bd39eff871016ffb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2441 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNJZ1p5Wm5BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Gracias por hacerlo tan bien. 80 104 \N \N \N 2026-01-31 03:58:47.401458 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Realmente los recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias por hacerlo tan bien.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "cada una ha sido muy positiva.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}], "unmapped": []} bd39eff871016ffb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4560 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ2eFoycjlRRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.825845 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2442 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNJZ1p5Wm5BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 cada una ha sido muy positiva. 36 63 \N \N \N 2026-01-31 03:58:47.403051 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Realmente los recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Gracias por hacerlo tan bien.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "cada una ha sido muy positiva.", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}], "unmapped": []} bd39eff871016ffb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2443 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR6MUtIRnRRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 de manera profesional y educada la resolvió 56 85 \N \N \N 2026-01-31 03:58:50.281665 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "de manera profesional y educada la resolvió", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "en tiempo y forma", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy satisfecho con el trabajo realizado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c958198f00094961 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2444 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR6MUtIRnRRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 en tiempo y forma 90 104 \N \N \N 2026-01-31 03:58:50.283723 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "de manera profesional y educada la resolvió", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "en tiempo y forma", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy satisfecho con el trabajo realizado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c958198f00094961 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2445 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR6MUtIRnRRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy satisfecho con el trabajo realizado 0 36 \N \N \N 2026-01-31 03:58:50.287266 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "de manera profesional y educada la resolvió", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "en tiempo y forma", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy satisfecho con el trabajo realizado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c958198f00094961 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2453 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJLXRqOVAycjh2emp3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Fueron rápidos en atendernos 30 56 \N \N \N 2026-01-31 03:58:59.587335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "solucionaron la avería con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Fueron rápidos en atendernos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido un excelente servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8a00623f7647c1db auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2446 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LTRud3FRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 el fontanero Hugo a parte de profesional 43 75 \N \N \N 2026-01-31 03:58:53.338087 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "el fontanero Hugo a parte de profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "ha realizado un gran trabajo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "hoy me llamaron para adelantar la cita", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 25}], "unmapped": []} 458919cf814ed978 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2447 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LTRud3FRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 ha realizado un gran trabajo 76 101 \N \N \N 2026-01-31 03:58:53.340491 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "el fontanero Hugo a parte de profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "ha realizado un gran trabajo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "hoy me llamaron para adelantar la cita", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 25}], "unmapped": []} 458919cf814ed978 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2448 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LTRud3FRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY + 3 3 \N 0.90 hoy me llamaron para adelantar la cita 25 56 \N \N \N 2026-01-31 03:58:53.342211 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "el fontanero Hugo a parte de profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "ha realizado un gran trabajo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "hoy me llamaron para adelantar la cita", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 25}], "unmapped": []} 458919cf814ed978 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2449 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLW9Td1J3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Muy buen profesional el que realizó el trabajo. 30 66 \N \N \N 2026-01-31 03:58:56.54525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy buen profesional el que realizó el trabajo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Excelente 👌 servicio!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Incluso buscaron la referencia de la pintura para que fuera igual.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} e144778cbe826c2d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2450 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLW9Td1J3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Excelente 👌 servicio! 0 22 \N \N \N 2026-01-31 03:58:56.547619 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy buen profesional el que realizó el trabajo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Excelente 👌 servicio!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Incluso buscaron la referencia de la pintura para que fuera igual.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} e144778cbe826c2d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2451 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLW9Td1J3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Incluso buscaron la referencia de la pintura para que fuera igual. 66 116 \N \N \N 2026-01-31 03:58:56.549167 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy buen profesional el que realizó el trabajo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Excelente 👌 servicio!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Incluso buscaron la referencia de la pintura para que fuera igual.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} e144778cbe826c2d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2452 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJLXRqOVAycjh2emp3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 solucionaron la avería con eficacia 56 83 \N \N \N 2026-01-31 03:58:59.585294 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "solucionaron la avería con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Fueron rápidos en atendernos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido un excelente servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8a00623f7647c1db auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2810 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNXbnJUUkRREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:15.135668 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2454 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJLXRqOVAycjh2emp3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Hemos recibido un excelente servicio 0 30 \N \N \N 2026-01-31 03:58:59.589204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "solucionaron la avería con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Fueron rápidos en atendernos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido un excelente servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8a00623f7647c1db auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2455 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURyX2FPT2JBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Quiero agradecer a Ronald y Marcos 0 34 \N \N \N 2026-01-31 03:59:02.355621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Quiero agradecer a Ronald y Marcos", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "el trato excelente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "buenos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 87}], "unmapped": []} 9cf42b6c43dd80c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2456 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURyX2FPT2JBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 el trato excelente 66 82 \N \N \N 2026-01-31 03:59:02.358111 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Quiero agradecer a Ronald y Marcos", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "el trato excelente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "buenos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 87}], "unmapped": []} 9cf42b6c43dd80c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2457 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURyX2FPT2JBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 buenos profesionales 87 105 \N \N \N 2026-01-31 03:59:02.360234 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Quiero agradecer a Ronald y Marcos", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "el trato excelente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "buenos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 87}], "unmapped": []} 9cf42b6c43dd80c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2458 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tGR1JVRTVXRzFpUVc1bmVrTldNRkZtWkdKNWRIYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Son profesionales de altura 0 36 \N \N \N 2026-01-31 03:59:05.162066 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Son profesionales de altura", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "un trato formidable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "un trabajo muy bueno", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} fd9720e4916b1e08 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2459 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tGR1JVRTVXRzFpUVc1bmVrTldNRkZtWkdKNWRIYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 un trato formidable 20 39 \N \N \N 2026-01-31 03:59:05.164322 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Son profesionales de altura", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "un trato formidable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "un trabajo muy bueno", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} fd9720e4916b1e08 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2460 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2tGR1JVRTVXRzFpUVc1bmVrTldNRkZtWkdKNWRIYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 un trabajo muy bueno 41 61 \N \N \N 2026-01-31 03:59:05.166229 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Son profesionales de altura", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "un trato formidable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "un trabajo muy bueno", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}], "unmapped": []} fd9720e4916b1e08 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2461 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMteEkzd3lnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 "mandan a un chico que no era electricista" 66 90 \N \N \N 2026-01-31 03:59:09.14151 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "\\"mandan a un chico que no era electricista\\"", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "\\"aun estoy esperando que se digne a contestarme\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "mixed", "end_char": 156, "evidence": "\\"fue sincero y me dijo que no sabia\\"", "intensity": 3, "primitive": "HONESTY", "confidence": 0.7, "start_char": 130}], "unmapped": []} d3b1b3e688a6540b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2462 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMteEkzd3lnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 "aun estoy esperando que se digne a contestarme" 174 205 \N \N \N 2026-01-31 03:59:09.143486 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "\\"mandan a un chico que no era electricista\\"", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "\\"aun estoy esperando que se digne a contestarme\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "mixed", "end_char": 156, "evidence": "\\"fue sincero y me dijo que no sabia\\"", "intensity": 3, "primitive": "HONESTY", "confidence": 0.7, "start_char": 130}], "unmapped": []} d3b1b3e688a6540b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5613 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Muy atentos y eficientes. 0 26 \N \N \N 2026-01-31 15:16:24.602399 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Muy atentos y eficientes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Puedes conseguir cualquier juguete, porque siempre están actualizados.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 5256180edaa3f42b es e4f95d90-dbbe-439d-a0fd-f19088002f26 2463 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMteEkzd3lnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 HONESTY ± 2 2 \N 0.70 "fue sincero y me dijo que no sabia" 130 156 \N \N \N 2026-01-31 03:59:09.145095 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 90, "evidence": "\\"mandan a un chico que no era electricista\\"", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "\\"aun estoy esperando que se digne a contestarme\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "mixed", "end_char": 156, "evidence": "\\"fue sincero y me dijo que no sabia\\"", "intensity": 3, "primitive": "HONESTY", "confidence": 0.7, "start_char": 130}], "unmapped": []} d3b1b3e688a6540b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2464 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN4emFUanR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Un servicio muy eficaz 37 61 \N \N \N 2026-01-31 03:59:12.199652 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Un servicio muy eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "trato personal amable y profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomiendo la empresa para las reparaciones del hogar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 98}], "unmapped": []} c0553ea76f0c2b65 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2465 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN4emFUanR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 trato personal amable y profesional 65 92 \N \N \N 2026-01-31 03:59:12.201591 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Un servicio muy eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "trato personal amable y profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomiendo la empresa para las reparaciones del hogar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 98}], "unmapped": []} c0553ea76f0c2b65 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2466 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN4emFUanR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomiendo la empresa para las reparaciones del hogar 98 138 \N \N \N 2026-01-31 03:59:12.203031 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Un servicio muy eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "trato personal amable y profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Recomiendo la empresa para las reparaciones del hogar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 98}], "unmapped": []} c0553ea76f0c2b65 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2467 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNYb2FqcnRBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 han sido profesionales en todo momento 41 76 \N \N \N 2026-01-31 03:59:15.072262 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "han sido profesionales en todo momento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Ojalá fueras así el resto de empresas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 63d6b5cbf8d481de auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2468 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNYb2FqcnRBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Ojalá fueras así el resto de empresas 78 109 \N \N \N 2026-01-31 03:59:15.074313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "han sido profesionales en todo momento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Ojalá fueras así el resto de empresas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 78}], "unmapped": []} 63d6b5cbf8d481de auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2474 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNReHBXNXd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 resolvió la avería perfectamente 85 113 \N \N \N 2026-01-31 03:59:22.205979 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "resolvió la avería perfectamente", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "muy buen fontanero", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}], "unmapped": []} c307ddb4ed3eb514 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5294 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 qué educado y profesional fue 36 66 \N \N \N 2026-01-31 15:10:13.083999 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "qué educado y profesional fue", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "no descansó hasta nos soluionó hasta el último problema", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "que lo cuiden como oro en paño", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4912d7d171d45f6c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2469 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 no tiene ni idea del caso 98 117 \N \N \N 2026-01-31 03:59:19.704767 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 117, "evidence": "no tiene ni idea del caso", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "negative", "end_char": 149, "evidence": "no le ponen solución", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "no lo recomendaría a nadie", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Un servicio nefasto", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Son muy poco profesionales, chapuzas", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 197}], "unmapped": []} 6cc778a44c1ae5c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2470 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 no le ponen solución 132 149 \N \N \N 2026-01-31 03:59:19.706915 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 117, "evidence": "no tiene ni idea del caso", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "negative", "end_char": 149, "evidence": "no le ponen solución", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "no lo recomendaría a nadie", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Un servicio nefasto", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Son muy poco profesionales, chapuzas", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 197}], "unmapped": []} 6cc778a44c1ae5c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2471 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 2 3 \N 0.90 no lo recomendaría a nadie 174 197 \N \N \N 2026-01-31 03:59:19.708351 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 117, "evidence": "no tiene ni idea del caso", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "negative", "end_char": 149, "evidence": "no le ponen solución", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "no lo recomendaría a nadie", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Un servicio nefasto", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Son muy poco profesionales, chapuzas", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 197}], "unmapped": []} 6cc778a44c1ae5c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2472 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 Un servicio nefasto 0 20 \N \N \N 2026-01-31 03:59:19.71013 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 117, "evidence": "no tiene ni idea del caso", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "negative", "end_char": 149, "evidence": "no le ponen solución", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "no lo recomendaría a nadie", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Un servicio nefasto", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Son muy poco profesionales, chapuzas", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 197}], "unmapped": []} 6cc778a44c1ae5c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2473 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 Son muy poco profesionales, chapuzas 197 227 \N \N \N 2026-01-31 03:59:19.711313 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 117, "evidence": "no tiene ni idea del caso", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "negative", "end_char": 149, "evidence": "no le ponen solución", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "no lo recomendaría a nadie", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "Un servicio nefasto", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Son muy poco profesionales, chapuzas", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 197}], "unmapped": []} 6cc778a44c1ae5c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2606 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNheXBuMjVBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 si la avería se hace mayor el seguro es quien pagá 56 92 \N \N \N 2026-01-31 04:02:14.024477 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "tienen las goteras los pisos de abajo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "si la avería se hace mayor el seguro es quien pagá", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 56}], "unmapped": []} ae7633c16d100dd7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4561 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURhMnRLZ3F3RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.827654 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2475 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNReHBXNXd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 muy amable 66 76 \N \N \N 2026-01-31 03:59:22.207644 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "resolvió la avería perfectamente", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "muy buen fontanero", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}], "unmapped": []} c307ddb4ed3eb514 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2476 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNReHBXNXd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 muy buen fontanero 114 132 \N \N \N 2026-01-31 03:59:22.208904 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "resolvió la avería perfectamente", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "muy amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "muy buen fontanero", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 114}], "unmapped": []} c307ddb4ed3eb514 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2477 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNBeE55cXN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 lo dejó todo muy limpio 85 108 \N \N \N 2026-01-31 03:59:25.622435 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "lo dejó todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "quedé muy contento con el trabajo realizado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "el chico que se llama Enrique", "intensity": 5, "primitive": "MANNER", "confidence": 0.8, "start_char": 92}], "unmapped": []} f1efa547648c4f41 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2478 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNBeE55cXN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 quedé muy contento con el trabajo realizado 66 92 \N \N \N 2026-01-31 03:59:25.624627 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "lo dejó todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "quedé muy contento con el trabajo realizado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "el chico que se llama Enrique", "intensity": 5, "primitive": "MANNER", "confidence": 0.8, "start_char": 92}], "unmapped": []} f1efa547648c4f41 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2479 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNBeE55cXN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.80 el chico que se llama Enrique 92 118 \N \N \N 2026-01-31 03:59:25.626634 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "lo dejó todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "quedé muy contento con el trabajo realizado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "el chico que se llama Enrique", "intensity": 5, "primitive": "MANNER", "confidence": 0.8, "start_char": 92}], "unmapped": []} f1efa547648c4f41 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2480 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ3ItVUpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 no es la primera vez que pasa, es la segunda 0 38 \N \N \N 2026-01-31 03:59:30.141757 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 38, "evidence": "no es la primera vez que pasa, es la segunda", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "no limpian", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "muy bordes por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "0 recomendables", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 155}], "unmapped": []} 474dc7d37ae83093 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2481 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ3ItVUpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS - 2 3 \N 0.90 no limpian 118 126 \N \N \N 2026-01-31 03:59:30.143557 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 38, "evidence": "no es la primera vez que pasa, es la segunda", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "no limpian", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "muy bordes por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "0 recomendables", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 155}], "unmapped": []} 474dc7d37ae83093 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4097 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Fancy place with good music! 0 30 \N \N \N 2026-01-31 13:34:39.233566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Fancy place with good music!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 60302947d7bf84c3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2482 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ3ItVUpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER - 2 3 \N 0.90 muy bordes por teléfono 134 153 \N \N \N 2026-01-31 03:59:30.144821 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 38, "evidence": "no es la primera vez que pasa, es la segunda", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "no limpian", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "muy bordes por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "0 recomendables", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 155}], "unmapped": []} 474dc7d37ae83093 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2483 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ3ItVUpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 2 3 \N 0.90 0 recomendables 155 171 \N \N \N 2026-01-31 03:59:30.14649 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 38, "evidence": "no es la primera vez que pasa, es la segunda", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "no limpian", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 153, "evidence": "muy bordes por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "0 recomendables", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 155}], "unmapped": []} 474dc7d37ae83093 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2484 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ1eUsySFNBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.90 no se an interesado en comunicarse con migo 116 152 \N \N \N 2026-01-31 03:59:34.289893 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 152, "evidence": "no se an interesado en comunicarse con migo", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "si son solo ellos los de cobertura creo que no vuelvo a renovar", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "INFORMALES!!!!!!!", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 153}], "unmapped": []} eca7021281efcf79 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2485 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ1eUsySFNBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 si son solo ellos los de cobertura creo que no vuelvo a renovar 204 246 \N \N \N 2026-01-31 03:59:34.291922 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 152, "evidence": "no se an interesado en comunicarse con migo", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "si son solo ellos los de cobertura creo que no vuelvo a renovar", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "INFORMALES!!!!!!!", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 153}], "unmapped": []} eca7021281efcf79 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2486 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ1eUsySFNBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 3 3 \N 0.80 INFORMALES!!!!!!! 153 164 \N \N \N 2026-01-31 03:59:34.293658 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 152, "evidence": "no se an interesado en comunicarse con migo", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "si son solo ellos los de cobertura creo que no vuelvo a renovar", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "INFORMALES!!!!!!!", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 153}], "unmapped": []} eca7021281efcf79 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2487 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 HONESTY + 3 3 \N 0.90 su atención, cordialidad , honestidad en todo momento 85 134 \N \N \N 2026-01-31 03:59:38.441806 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "su atención, cordialidad , honestidad en todo momento", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Un profesional en toda regla", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "considero que toda empresa que disponga de trabajadores así deberían cuidarles bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "su gestión incluso con el área administrativa explicando bien los percances", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "la calidad del servicio en cuestión está asegurada", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 185}], "unmapped": []} 540992ba9ba62ab3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2499 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfMjU2b1BBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchas gracias. 85 100 \N \N \N 2026-01-31 03:59:52.807433 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "EXCELENTE.Muy bien profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "Muchas gracias.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 85}], "unmapped": []} 1f3f24cf6f243e10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2551 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNOc1BUeWZnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 buen trato 41 50 \N \N \N 2026-01-31 04:00:54.391515 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "buen trato", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "Rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 44a14477a94d5469 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2488 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Un profesional en toda regla 66 92 \N \N \N 2026-01-31 03:59:38.443645 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "su atención, cordialidad , honestidad en todo momento", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Un profesional en toda regla", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "considero que toda empresa que disponga de trabajadores así deberían cuidarles bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "su gestión incluso con el área administrativa explicando bien los percances", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "la calidad del servicio en cuestión está asegurada", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 185}], "unmapped": []} 540992ba9ba62ab3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2489 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 considero que toda empresa que disponga de trabajadores así deberían cuidarles bien 227 283 \N \N \N 2026-01-31 03:59:38.44534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "su atención, cordialidad , honestidad en todo momento", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Un profesional en toda regla", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "considero que toda empresa que disponga de trabajadores así deberían cuidarles bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "su gestión incluso con el área administrativa explicando bien los percances", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "la calidad del servicio en cuestión está asegurada", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 185}], "unmapped": []} 540992ba9ba62ab3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2490 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY + 3 3 \N 0.90 su gestión incluso con el área administrativa explicando bien los percances 134 185 \N \N \N 2026-01-31 03:59:38.446122 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "su atención, cordialidad , honestidad en todo momento", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Un profesional en toda regla", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "considero que toda empresa que disponga de trabajadores así deberían cuidarles bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "su gestión incluso con el área administrativa explicando bien los percances", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "la calidad del servicio en cuestión está asegurada", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 185}], "unmapped": []} 540992ba9ba62ab3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5295 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 no descansó hasta nos soluionó hasta el último problema 85 134 \N \N \N 2026-01-31 15:10:13.087629 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "qué educado y profesional fue", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "no descansó hasta nos soluionó hasta el último problema", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "que lo cuiden como oro en paño", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4912d7d171d45f6c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2491 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 la calidad del servicio en cuestión está asegurada 185 227 \N \N \N 2026-01-31 03:59:38.44709 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "su atención, cordialidad , honestidad en todo momento", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Un profesional en toda regla", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 283, "evidence": "considero que toda empresa que disponga de trabajadores así deberían cuidarles bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "su gestión incluso con el área administrativa explicando bien los percances", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "la calidad del servicio en cuestión está asegurada", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 185}], "unmapped": []} 540992ba9ba62ab3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4098 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Nice :) 0 7 {too_short} \N \N 2026-01-31 13:34:39.235725 gpt-4o-mini {"reason": "too_short", "non_informative": true} a41ab9140141d4f2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2492 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNic05QaVhnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 Mis felicitaciones para la empresa y el técnico 0 41 \N \N \N 2026-01-31 03:59:41.534117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Mis felicitaciones para la empresa y el técnico", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "rapidez en la emergencia en horas de madrugada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Grandes profesionales y gran trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}], "unmapped": []} 8f121dd6c877551e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2799 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNKbnBXU3lRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review"} \N \N 2026-01-31 04:06:07.522179 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2493 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNic05QaVhnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rapidez en la emergencia en horas de madrugada 41 78 \N \N \N 2026-01-31 03:59:41.535896 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Mis felicitaciones para la empresa y el técnico", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "rapidez en la emergencia en horas de madrugada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Grandes profesionales y gran trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}], "unmapped": []} 8f121dd6c877551e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2494 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNic05QaVhnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Grandes profesionales y gran trato 78 109 \N \N \N 2026-01-31 03:59:41.537422 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Mis felicitaciones para la empresa y el técnico", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "rapidez en la emergencia en horas de madrugada", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Grandes profesionales y gran trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}], "unmapped": []} 8f121dd6c877551e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2495 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VQdV94b2FLbDl5bXF3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.90 Me destrozaron el techo 0 25 \N \N \N 2026-01-31 03:59:44.321849 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Me destrozaron el techo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "dijeron que el seguro no sabían si cubrían el techo el entero", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "me atascaron el lavamanos", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 75}], "unmapped": []} c8d9d2827277f755 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2496 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VQdV94b2FLbDl5bXF3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.90 dijeron que el seguro no sabían si cubrían el techo el entero 25 75 \N \N \N 2026-01-31 03:59:44.32427 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Me destrozaron el techo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "dijeron que el seguro no sabían si cubrían el techo el entero", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "me atascaron el lavamanos", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 75}], "unmapped": []} c8d9d2827277f755 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4562 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURhNU5laVNBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.829003 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2497 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VQdV94b2FLbDl5bXF3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.90 me atascaron el lavamanos 75 100 \N \N \N 2026-01-31 03:59:44.325462 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Me destrozaron el techo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "dijeron que el seguro no sabían si cubrían el techo el entero", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "me atascaron el lavamanos", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 75}], "unmapped": []} c8d9d2827277f755 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2498 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfMjU2b1BBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 EXCELENTE.Muy bien profesional. 56 84 \N \N \N 2026-01-31 03:59:52.80499 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "EXCELENTE.Muy bien profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "Muchas gracias.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 85}], "unmapped": []} 1f3f24cf6f243e10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4099 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Really good club!!! 0 20 \N \N \N 2026-01-31 13:34:40.508672 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Really good club!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ea919fdb52e3605 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2500 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqdUliUmN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 recomendables al 100% 90 110 \N \N \N 2026-01-31 03:59:57.211805 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "recomendables al 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "trabajo impecable, muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "preocupado por hacer una buena labor", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "cumplen con fecha hora y trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 111}], "unmapped": []} 7f612ba10e59d06b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2501 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqdUliUmN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 trabajo impecable, muy limpio 56 78 \N \N \N 2026-01-31 03:59:57.213667 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "recomendables al 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "trabajo impecable, muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "preocupado por hacer una buena labor", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "cumplen con fecha hora y trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 111}], "unmapped": []} 7f612ba10e59d06b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2502 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqdUliUmN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 preocupado por hacer una buena labor 78 108 \N \N \N 2026-01-31 03:59:57.215185 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "recomendables al 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "trabajo impecable, muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "preocupado por hacer una buena labor", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "cumplen con fecha hora y trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 111}], "unmapped": []} 7f612ba10e59d06b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2503 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqdUliUmN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 cumplen con fecha hora y trabajo 111 136 \N \N \N 2026-01-31 03:59:57.216766 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 110, "evidence": "recomendables al 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "trabajo impecable, muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "preocupado por hacer una buena labor", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "cumplen con fecha hora y trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 111}], "unmapped": []} 7f612ba10e59d06b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4563 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURhMk5xU1JnEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.830327 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2504 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN5MFBLM0hREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 falta de profesionales 24 46 \N \N \N 2026-01-31 04:00:00.96878 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 46, "evidence": "falta de profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 94, "evidence": "el trabajo realizado a sido pésimo", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "empeoró la situación del techo", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4ef3df39ee2f426c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2505 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN5MFBLM0hREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 el trabajo realizado a sido pésimo 66 94 \N \N \N 2026-01-31 04:00:00.972573 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 46, "evidence": "falta de profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 94, "evidence": "el trabajo realizado a sido pésimo", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "empeoró la situación del techo", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4ef3df39ee2f426c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2506 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN5MFBLM0hREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 empeoró la situación del techo 96 123 \N \N \N 2026-01-31 04:00:00.974499 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 46, "evidence": "falta de profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "negative", "end_char": 94, "evidence": "el trabajo realizado a sido pésimo", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 123, "evidence": "empeoró la situación del techo", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4ef3df39ee2f426c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2507 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkeUp1eGhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY + 3 3 \N 0.90 en seguida esta empresa respondió 37 66 \N \N \N 2026-01-31 04:00:04.690906 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "en seguida esta empresa respondió", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy buen servicio del operario que acude a la vivienda", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Sin queja alguna", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} 89fd2373d9004e80 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2508 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkeUp1eGhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Muy buen servicio del operario que acude a la vivienda 67 104 \N \N \N 2026-01-31 04:00:04.693073 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "en seguida esta empresa respondió", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy buen servicio del operario que acude a la vivienda", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Sin queja alguna", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} 89fd2373d9004e80 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2509 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkeUp1eGhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Sin queja alguna 105 121 \N \N \N 2026-01-31 04:00:04.694949 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "en seguida esta empresa respondió", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Muy buen servicio del operario que acude a la vivienda", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Sin queja alguna", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} 89fd2373d9004e80 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2510 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5NXNYYXJnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 el resultado fue muy satisfactorio 56 84 \N \N \N 2026-01-31 04:00:08.353622 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "el resultado fue muy satisfactorio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "profesionalidad caracterizaron al chico", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}], "unmapped": []} 177865ed3f6e7bca auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2511 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5NXNYYXJnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Puntualidad 0 10 \N \N \N 2026-01-31 04:00:08.35621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "el resultado fue muy satisfactorio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "profesionalidad caracterizaron al chico", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}], "unmapped": []} 177865ed3f6e7bca auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2512 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5NXNYYXJnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionalidad caracterizaron al chico 85 118 \N \N \N 2026-01-31 04:00:08.357146 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "el resultado fue muy satisfactorio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "profesionalidad caracterizaron al chico", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}], "unmapped": []} 177865ed3f6e7bca auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2513 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2sxUVUzb3hMVm8wTlV4Mk5ETjVVRWQwZGpZekxXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atención de matrícula de honor 10 38 \N \N \N 2026-01-31 04:00:09.762695 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "atención de matrícula de honor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 10}], "unmapped": []} e15119a37a0d3f9c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2514 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5dmVXY0xREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS - 2 3 \N 0.90 me dejaron todo el baño sucio con yeso 66 92 \N \N \N 2026-01-31 04:00:12.383645 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 92, "evidence": "me dejaron todo el baño sucio con yeso", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "NO LO RECOMIENDO", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 93}], "unmapped": []} 0a34facf909027ec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4100 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Best baser 0 10 {too_short} \N \N 2026-01-31 13:34:40.510617 gpt-4o-mini {"reason": "too_short", "non_informative": true} ca0462beffde89ef auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2552 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNOc1BUeWZnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Rapidez 24 31 \N \N \N 2026-01-31 04:00:54.394196 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "buen trato", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "Rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 44a14477a94d5469 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2516 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNROEtqSm13RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Trato muy profesional 22 44 \N \N \N 2026-01-31 04:00:15.821501 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "gracias por tu dedicación y por tu buen hacer", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen servicio por parte de Enrique", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 04cc5eb17665594d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2517 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNROEtqSm13RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 gracias por tu dedicación y por tu buen hacer 45 83 \N \N \N 2026-01-31 04:00:15.823663 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "gracias por tu dedicación y por tu buen hacer", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen servicio por parte de Enrique", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 04cc5eb17665594d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2518 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNROEtqSm13RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy buen servicio por parte de Enrique 0 30 \N \N \N 2026-01-31 04:00:15.825081 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "gracias por tu dedicación y por tu buen hacer", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen servicio por parte de Enrique", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 04cc5eb17665594d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4564 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURxdkxxVkd3EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.83136 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2519 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Totalmente recomendables 56 78 \N \N \N 2026-01-31 04:00:20.580353 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendables", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "Amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}], "unmapped": []} 9a59d9f8cbd1e918 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2520 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Excelentes profesionales 0 24 \N \N \N 2026-01-31 04:00:20.58221 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendables", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "Amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}], "unmapped": []} 9a59d9f8cbd1e918 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2535 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURsenFEbllREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 vinieron a casa por un siniestro del seguro y tanto Marcelo como Ángel fueron eficaces 56 103 \N \N \N 2026-01-31 04:00:35.69435 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "El servicio de los trabajadores excepcional, amables y profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "vinieron a casa por un siniestro del seguro y tanto Marcelo como Ángel fueron eficaces", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "destacar aparte de su profesionalidad su humildad hacia el cliente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 103}], "unmapped": []} 59389922a8220e32 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2521 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rápidos 25 32 \N \N \N 2026-01-31 04:00:20.583715 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendables", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "Amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}], "unmapped": []} 9a59d9f8cbd1e918 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2553 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNOc1BUeWZnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 su profesionalidad 54 70 \N \N \N 2026-01-31 04:00:54.395724 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "buen trato", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "Rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 44a14477a94d5469 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5296 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 que lo cuiden como oro en paño 145 173 \N \N \N 2026-01-31 15:10:13.089872 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "qué educado y profesional fue", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "no descansó hasta nos soluionó hasta el último problema", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "que lo cuiden como oro en paño", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} 4912d7d171d45f6c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2820 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNpaTQ3eENBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:20.457248 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2522 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 eficientes 33 43 \N \N \N 2026-01-31 04:00:20.58531 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendables", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "Amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}], "unmapped": []} 9a59d9f8cbd1e918 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2523 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Amables 24 32 \N \N \N 2026-01-31 04:00:20.587652 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendables", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 33}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "Amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}], "unmapped": []} 9a59d9f8cbd1e918 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2524 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Adrián es sin duda alguna un gran profesional 150 186 \N \N \N 2026-01-31 04:00:26.143287 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "Adrián es sin duda alguna un gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "vuestra rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "buena relación servicio, calidad, precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Felicidades a todo el equipo de profesionales de 13 Islas", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 188}], "unmapped": []} b282eb34298ab6a0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2525 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 vuestra rapidez 90 104 \N \N \N 2026-01-31 04:00:26.145585 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "Adrián es sin duda alguna un gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "vuestra rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "buena relación servicio, calidad, precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Felicidades a todo el equipo de profesionales de 13 Islas", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 188}], "unmapped": []} b282eb34298ab6a0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5297 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYMFBHLVZBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 trabajaron de forma eficaz 80 104 \N \N \N 2026-01-31 15:10:15.918031 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "trabajaron de forma eficaz", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "personas de trato agradable y educado", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 106}], "unmapped": []} 6ea0c9e975834dc7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2526 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 buena relación servicio, calidad, precio 106 135 \N \N \N 2026-01-31 04:00:26.147316 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "Adrián es sin duda alguna un gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "vuestra rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "buena relación servicio, calidad, precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Felicidades a todo el equipo de profesionales de 13 Islas", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 188}], "unmapped": []} b282eb34298ab6a0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2566 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNYaGNDN293RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 servicio rápido y eficaz 36 56 \N \N \N 2026-01-31 04:01:15.136565 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "servicio rápido y eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buen servicio en general", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4f560d921495389e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2527 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atención recibida 136 154 \N \N \N 2026-01-31 04:00:26.148719 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "Adrián es sin duda alguna un gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "vuestra rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "buena relación servicio, calidad, precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Felicidades a todo el equipo de profesionales de 13 Islas", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 188}], "unmapped": []} b282eb34298ab6a0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2528 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 Felicidades a todo el equipo de profesionales de 13 Islas 188 233 \N \N \N 2026-01-31 04:00:26.15057 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "Adrián es sin duda alguna un gran profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "vuestra rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "buena relación servicio, calidad, precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 154, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 136}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Felicidades a todo el equipo de profesionales de 13 Islas", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 188}], "unmapped": []} b282eb34298ab6a0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2529 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 trabajan de forma eficaz 41 64 \N \N \N 2026-01-31 04:00:32.196804 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "trabajan de forma eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "y honesta", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Cuidan la atención y comunicación con el cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Normalmente la elijo para reparaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "esto hoy en día es algo muy valioso", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 110}], "unmapped": []} 791df87fae2f6324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2542 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROby0zMVpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION + 3 3 \N 0.90 siempre me contestan con mucha educación y amabilidad. 56 96 \N \N \N 2026-01-31 04:00:43.314373 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Me parecen bastante profesionales y resolutivos.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "siempre me contestan con mucha educación y amabilidad.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Estoy contenta con sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 98}], "unmapped": []} e875195c6badcdf6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4155 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Гарне місце для тих хто хоче знайти себе! 0 41 \N \N \N 2026-01-31 13:35:37.717182 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Гарне місце для тих хто хоче знайти себе!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e9eeffdf9395897 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2530 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 HONESTY + 3 3 \N 0.90 y honesta 65 73 \N \N \N 2026-01-31 04:00:32.198956 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "trabajan de forma eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "y honesta", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Cuidan la atención y comunicación con el cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Normalmente la elijo para reparaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "esto hoy en día es algo muy valioso", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 110}], "unmapped": []} 791df87fae2f6324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2531 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Cuidan la atención y comunicación con el cliente 75 109 \N \N \N 2026-01-31 04:00:32.200769 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "trabajan de forma eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "y honesta", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Cuidan la atención y comunicación con el cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Normalmente la elijo para reparaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "esto hoy en día es algo muy valioso", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 110}], "unmapped": []} 791df87fae2f6324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2738 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUREaDVpNmt3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 la profesionalidad del trabajo 20 42 \N \N \N 2026-01-31 04:05:08.775594 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "la profesionalidad del trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}], "unmapped": []} c09c121791b11cf9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2532 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Normalmente la elijo para reparaciones 0 38 \N \N \N 2026-01-31 04:00:32.202684 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "trabajan de forma eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "y honesta", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Cuidan la atención y comunicación con el cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Normalmente la elijo para reparaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "esto hoy en día es algo muy valioso", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 110}], "unmapped": []} 791df87fae2f6324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2533 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 esto hoy en día es algo muy valioso 110 143 \N \N \N 2026-01-31 04:00:32.204496 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "trabajan de forma eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "y honesta", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 65}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Cuidan la atención y comunicación con el cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "Normalmente la elijo para reparaciones", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "esto hoy en día es algo muy valioso", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 110}], "unmapped": []} 791df87fae2f6324 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2534 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURsenFEbllREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 El servicio de los trabajadores excepcional, amables y profesionales 0 56 \N \N \N 2026-01-31 04:00:35.690258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "El servicio de los trabajadores excepcional, amables y profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "vinieron a casa por un siniestro del seguro y tanto Marcelo como Ángel fueron eficaces", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "destacar aparte de su profesionalidad su humildad hacia el cliente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 103}], "unmapped": []} 59389922a8220e32 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2536 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURsenFEbllREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 destacar aparte de su profesionalidad su humildad hacia el cliente 103 145 \N \N \N 2026-01-31 04:00:35.695791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "El servicio de los trabajadores excepcional, amables y profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "vinieron a casa por un siniestro del seguro y tanto Marcelo como Ángel fueron eficaces", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "destacar aparte de su profesionalidad su humildad hacia el cliente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 103}], "unmapped": []} 59389922a8220e32 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2537 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNoNmVfUnJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 Unos auténticos chapuzas y además mentirosos 0 41 \N \N \N 2026-01-31 04:00:39.953335 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Unos auténticos chapuzas y además mentirosos", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "aún estamos esperando que vengan a cambiar la luminaria del local", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "se dejó la vieja junto a mil trozos de madera mas", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "los pintores hicieron el trabajo a medias manchando toda la escalera", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} f7e74107fe3b0d1a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2538 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNoNmVfUnJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 aún estamos esperando que vengan a cambiar la luminaria del local 41 85 \N \N \N 2026-01-31 04:00:39.955747 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Unos auténticos chapuzas y además mentirosos", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "aún estamos esperando que vengan a cambiar la luminaria del local", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "se dejó la vieja junto a mil trozos de madera mas", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "los pintores hicieron el trabajo a medias manchando toda la escalera", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} f7e74107fe3b0d1a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2539 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNoNmVfUnJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS - 2 3 \N 0.90 se dejó la vieja junto a mil trozos de madera mas 138 174 \N \N \N 2026-01-31 04:00:39.957791 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Unos auténticos chapuzas y además mentirosos", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "aún estamos esperando que vengan a cambiar la luminaria del local", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "se dejó la vieja junto a mil trozos de madera mas", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "los pintores hicieron el trabajo a medias manchando toda la escalera", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} f7e74107fe3b0d1a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2540 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNoNmVfUnJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 los pintores hicieron el trabajo a medias manchando toda la escalera 174 223 \N \N \N 2026-01-31 04:00:39.959208 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Unos auténticos chapuzas y además mentirosos", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "aún estamos esperando que vengan a cambiar la luminaria del local", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "se dejó la vieja junto a mil trozos de madera mas", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "los pintores hicieron el trabajo a medias manchando toda la escalera", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}], "unmapped": []} f7e74107fe3b0d1a auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2541 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROby0zMVpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Me parecen bastante profesionales y resolutivos. 0 43 \N \N \N 2026-01-31 04:00:43.308113 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Me parecen bastante profesionales y resolutivos.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "siempre me contestan con mucha educación y amabilidad.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Estoy contenta con sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 98}], "unmapped": []} e875195c6badcdf6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2543 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROby0zMVpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Estoy contenta con sus servicios. 98 126 \N \N \N 2026-01-31 04:00:43.315836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Me parecen bastante profesionales y resolutivos.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "siempre me contestan con mucha educación y amabilidad.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Estoy contenta con sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 98}], "unmapped": []} e875195c6badcdf6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2719 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMtdmRqUTFnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 2 3 \N 0.90 no recomendable 50 64 \N \N \N 2026-01-31 04:04:49.890231 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 64, "evidence": "no recomendable", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "negative", "end_char": 48, "evidence": "Hicieron un informe contradiciendo la realidad del problema", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}], "unmapped": []} d3418b83099c7b42 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2544 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMxeXVybWJBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 muy satisfactorio el trabajo realizado 0 40 \N \N \N 2026-01-31 04:00:47.302302 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "muy satisfactorio el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "rápidos y eficaces", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "agradecer a Ángel, el pintor", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} ee7c1e3a76c4c545 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2545 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMxeXVybWJBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rápidos y eficaces 40 58 \N \N \N 2026-01-31 04:00:47.308258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "muy satisfactorio el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "rápidos y eficaces", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "agradecer a Ángel, el pintor", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} ee7c1e3a76c4c545 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2546 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMxeXVybWJBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionalidad 118 132 \N \N \N 2026-01-31 04:00:47.310097 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "muy satisfactorio el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "rápidos y eficaces", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "agradecer a Ángel, el pintor", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} ee7c1e3a76c4c545 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2547 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMxeXVybWJBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 agradecer a Ángel, el pintor 100 118 \N \N \N 2026-01-31 04:00:47.311389 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "muy satisfactorio el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "rápidos y eficaces", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "agradecer a Ángel, el pintor", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 100}], "unmapped": []} ee7c1e3a76c4c545 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4194 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 Klubas fainas😊 \N \N {"Overall Experience"} \N \N 2026-01-31 13:36:18.614419 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "tualeto dangčiu... kaip kiaulės", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 30}], "unmapped": [{"label": "Overall Experience", "evidence": "Klubas fainas😊", "confidence": 0.7}]} d7ca768f25242c5e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2548 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURCdk9IOHdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 HONESTY - 2 3 \N 0.90 actuan me muy mala Fé 116 138 \N \N \N 2026-01-31 04:00:51.130371 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 138, "evidence": "actuan me muy mala Fé", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Por supuesto en mi casa no entran más", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "la llave tiene una fuga de agua y me hace falta la factura para poder devolver por otro igual", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 66}], "unmapped": []} a340899ca86be49f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2549 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURCdk9IOHdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RETURN_INTENT - 2 3 \N 0.90 Por supuesto en mi casa no entran más 138 162 \N \N \N 2026-01-31 04:00:51.13289 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 138, "evidence": "actuan me muy mala Fé", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Por supuesto en mi casa no entran más", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "la llave tiene una fuga de agua y me hace falta la factura para poder devolver por otro igual", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 66}], "unmapped": []} a340899ca86be49f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2550 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURCdk9IOHdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 la llave tiene una fuga de agua y me hace falta la factura para poder devolver por otro igual 66 116 \N \N \N 2026-01-31 04:00:51.134636 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 138, "evidence": "actuan me muy mala Fé", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Por supuesto en mi casa no entran más", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 116, "evidence": "la llave tiene una fuga de agua y me hace falta la factura para poder devolver por otro igual", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 66}], "unmapped": []} a340899ca86be49f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2554 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNSanRhQndRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 3 3 \N 0.90 No recomiendo. 10 19 \N \N \N 2026-01-31 04:00:58.822195 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 19, "evidence": "No recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "hacen esperar casi 6 meses para dar parte al seguro", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "inventando y haciendo un informe que no corresponde con la realidad.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Mala gestión basada en mentiras.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 128}], "unmapped": []} 590d102df48943bd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2555 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNSanRhQndRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 3 3 \N 0.90 hacen esperar casi 6 meses para dar parte al seguro 30 66 \N \N \N 2026-01-31 04:00:58.824894 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 19, "evidence": "No recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "hacen esperar casi 6 meses para dar parte al seguro", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "inventando y haciendo un informe que no corresponde con la realidad.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Mala gestión basada en mentiras.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 128}], "unmapped": []} 590d102df48943bd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5298 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYMFBHLVZBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 personas de trato agradable y educado 106 138 \N \N \N 2026-01-31 15:10:15.921937 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "trabajaron de forma eficaz", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "personas de trato agradable y educado", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 106}], "unmapped": []} 6ea0c9e975834dc7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2556 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNSanRhQndRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ETHICS - 3 3 \N 0.90 inventando y haciendo un informe que no corresponde con la realidad. 85 126 \N \N \N 2026-01-31 04:00:58.826828 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 19, "evidence": "No recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "hacen esperar casi 6 meses para dar parte al seguro", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "inventando y haciendo un informe que no corresponde con la realidad.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Mala gestión basada en mentiras.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 128}], "unmapped": []} 590d102df48943bd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2557 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNSanRhQndRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 3 3 \N 0.90 Mala gestión basada en mentiras. 128 156 \N \N \N 2026-01-31 04:00:58.828396 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 19, "evidence": "No recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "hacen esperar casi 6 meses para dar parte al seguro", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "inventando y haciendo un informe que no corresponde con la realidad.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 156, "evidence": "Mala gestión basada en mentiras.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 128}], "unmapped": []} 590d102df48943bd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4101 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Very good 😻😻 0 12 {too_short} \N \N 2026-01-31 13:34:40.511783 gpt-4o-mini {"reason": "too_short", "non_informative": true} c3d38d1f9c59c6ce auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2558 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQtd2R2MkN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 muy buen profesional 0 24 \N \N \N 2026-01-31 04:01:03.740873 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "muy buen profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "nos atendió en Telde san juan edificio telli, muy amable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "nos dejó todo bien hecho y muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Hemos quedado muy agradecidos con su trabajo", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 105}], "unmapped": []} 41ae56c282e485ab auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2559 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQtd2R2MkN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 nos atendió en Telde san juan edificio telli, muy amable 25 73 \N \N \N 2026-01-31 04:01:03.743285 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "muy buen profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "nos atendió en Telde san juan edificio telli, muy amable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "nos dejó todo bien hecho y muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Hemos quedado muy agradecidos con su trabajo", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 105}], "unmapped": []} 41ae56c282e485ab auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2800 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURoM0l1a2tnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 04:06:08.487888 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2560 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQtd2R2MkN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 nos dejó todo bien hecho y muy limpio 74 104 \N \N \N 2026-01-31 04:01:03.745498 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "muy buen profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "nos atendió en Telde san juan edificio telli, muy amable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "nos dejó todo bien hecho y muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Hemos quedado muy agradecidos con su trabajo", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 105}], "unmapped": []} 41ae56c282e485ab auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4565 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNxN2FlQ3hBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.832025 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2561 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQtd2R2MkN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 Hemos quedado muy agradecidos con su trabajo 105 138 \N \N \N 2026-01-31 04:01:03.747879 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "muy buen profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "nos atendió en Telde san juan edificio telli, muy amable", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "nos dejó todo bien hecho y muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "Hemos quedado muy agradecidos con su trabajo", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 105}], "unmapped": []} 41ae56c282e485ab auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2562 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROanRfSlFnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 recomendable al 100x100 118 139 \N \N \N 2026-01-31 04:01:11.464106 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "recomendable al 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "atención al cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "completamente unos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "estoy muy agradecido", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} db1db65e1eac2fcb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2563 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROanRfSlFnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atención al cliente 41 59 \N \N \N 2026-01-31 04:01:11.466165 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "recomendable al 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "atención al cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "completamente unos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "estoy muy agradecido", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} db1db65e1eac2fcb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2564 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROanRfSlFnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 completamente unos profesionales 60 87 \N \N \N 2026-01-31 04:01:11.467588 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "recomendable al 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "atención al cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "completamente unos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "estoy muy agradecido", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} db1db65e1eac2fcb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2565 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUROanRfSlFnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 estoy muy agradecido 88 109 \N \N \N 2026-01-31 04:01:11.468843 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "recomendable al 100x100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "atención al cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "completamente unos profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "estoy muy agradecido", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 88}], "unmapped": []} db1db65e1eac2fcb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2727 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5bExQVHV3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 muy recomendable 30 47 \N \N \N 2026-01-31 04:04:57.792515 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 47, "evidence": "muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Excelente trato y servicio", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9f628521679692ba auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2567 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNYaGNDN293RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 personal amable 58 73 \N \N \N 2026-01-31 04:01:15.138841 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "servicio rápido y eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buen servicio en general", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4f560d921495389e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2568 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNYaGNDN293RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy buen servicio en general 0 24 \N \N \N 2026-01-31 04:01:15.140425 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "servicio rápido y eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy buen servicio en general", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4f560d921495389e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2569 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR2bk9yZmdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Es muy buen profesional. 0 27 \N \N \N 2026-01-31 04:01:18.161374 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Es muy buen profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Muy contentos con su trabajo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 28}], "unmapped": []} 126e3cb2f739a74e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2570 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR2bk9yZmdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy contentos con su trabajo. 28 56 \N \N \N 2026-01-31 04:01:18.163624 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Es muy buen profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Muy contentos con su trabajo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 28}], "unmapped": []} 126e3cb2f739a74e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2571 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNRN1BmcExREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Excelente trabajo y atencion de Daniel 0 39 \N \N \N 2026-01-31 04:01:21.233172 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Excelente trabajo y atencion de Daniel", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "dispuesto para resolver el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} a32157058b0f4de8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4102 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Wow 0 3 {too_short} \N \N 2026-01-31 13:34:40.512879 gpt-4o-mini {"reason": "too_short", "non_informative": true} da2544c2e0a8a38d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2575 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNMMHAyeFNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 fue muy rápido en acudir al domicilio 56 83 \N \N \N 2026-01-31 04:01:29.511621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "fue muy rápido en acudir al domicilio", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "solucionar el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Muy satisfecha", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} d2a86cb99cd356d1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2576 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNMMHAyeFNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 solucionar el problema 87 106 \N \N \N 2026-01-31 04:01:29.513691 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "fue muy rápido en acudir al domicilio", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "solucionar el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Muy satisfecha", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} d2a86cb99cd356d1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2577 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNMMHAyeFNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy satisfecha 43 59 \N \N \N 2026-01-31 04:01:29.515247 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "fue muy rápido en acudir al domicilio", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "solucionar el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 87}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Muy satisfecha", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} d2a86cb99cd356d1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2578 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNRcnNQVHZBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 LOS OPERARIOS DANIEL Y DILIP SON GRANDES PROFESIONALES 0 56 \N \N \N 2026-01-31 04:01:34.233195 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "LOS OPERARIOS DANIEL Y DILIP SON GRANDES PROFESIONALES", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "GRACIAS DANIEL POR LA RAPIDEZ", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "UN PLACER CONTAR CON UNOS FONTANEROS COMO USTEDES", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}], "unmapped": []} cda1401533dbaa1b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2579 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNRcnNQVHZBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 GRACIAS DANIEL POR LA RAPIDEZ 56 80 \N \N \N 2026-01-31 04:01:34.235106 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "LOS OPERARIOS DANIEL Y DILIP SON GRANDES PROFESIONALES", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "GRACIAS DANIEL POR LA RAPIDEZ", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "UN PLACER CONTAR CON UNOS FONTANEROS COMO USTEDES", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}], "unmapped": []} cda1401533dbaa1b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2580 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNRcnNQVHZBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 UN PLACER CONTAR CON UNOS FONTANEROS COMO USTEDES 40 80 \N \N \N 2026-01-31 04:01:34.236465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "LOS OPERARIOS DANIEL Y DILIP SON GRANDES PROFESIONALES", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "GRACIAS DANIEL POR LA RAPIDEZ", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "UN PLACER CONTAR CON UNOS FONTANEROS COMO USTEDES", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}], "unmapped": []} cda1401533dbaa1b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2581 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqek5XTldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Súper recomendables. 90 112 \N \N \N 2026-01-31 04:01:38.635951 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "Súper recomendables.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "son rápidos en la atención directa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Son una empresa muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 16172faec7ca0bb8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2689 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNlallpM1FBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 no detectaron las fugas 36 54 \N \N \N 2026-01-31 04:04:08.261448 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "no detectaron las fugas", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "comunicaron despues que no reparaban este tipo de avería", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}], "unmapped": []} 11a3b846c020f139 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2582 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqek5XTldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 son rápidos en la atención directa 54 82 \N \N \N 2026-01-31 04:01:38.638115 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "Súper recomendables.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "son rápidos en la atención directa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Son una empresa muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 16172faec7ca0bb8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2583 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqek5XTldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Son una empresa muy profesional. 0 36 \N \N \N 2026-01-31 04:01:38.639748 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "Súper recomendables.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "son rápidos en la atención directa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Son una empresa muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 16172faec7ca0bb8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2584 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURMaHJycktBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 si necesitas una empresa seria, con buenos profesionales acude a ellos. 66 107 \N \N \N 2026-01-31 04:01:41.493859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "si necesitas una empresa seria, con buenos profesionales acude a ellos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "siempre he salido muy contento.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 6f1f64aaad5913fc auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2585 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURMaHJycktBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 siempre he salido muy contento. 43 66 \N \N \N 2026-01-31 04:01:41.496702 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "si necesitas una empresa seria, con buenos profesionales acude a ellos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "siempre he salido muy contento.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 6f1f64aaad5913fc auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2586 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ2VTY0JREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ETHICS - 2 3 \N 0.90 hacen el informe como les conviene 116 144 \N \N \N 2026-01-31 04:01:47.006922 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "hacen el informe como les conviene", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "son ustedes los que mandan el informe al seguro", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "me responden a mi reseña echándole la culpa al seguro", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "responsables de las chapuzas que hacen", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}], "unmapped": []} 31a5d9b5a681949d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2587 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ2VTY0JREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 son ustedes los que mandan el informe al seguro 56 90 \N \N \N 2026-01-31 04:01:47.009543 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "hacen el informe como les conviene", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "son ustedes los que mandan el informe al seguro", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "me responden a mi reseña echándole la culpa al seguro", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "responsables de las chapuzas que hacen", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}], "unmapped": []} 31a5d9b5a681949d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2588 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ2VTY0JREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 me responden a mi reseña echándole la culpa al seguro 0 56 \N \N \N 2026-01-31 04:01:47.011316 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "hacen el informe como les conviene", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "son ustedes los que mandan el informe al seguro", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "me responden a mi reseña echándole la culpa al seguro", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "responsables de las chapuzas que hacen", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}], "unmapped": []} 31a5d9b5a681949d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2814 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURtODRITWd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 04:06:16.922096 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2589 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNSZ2VTY0JREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 responsables de las chapuzas que hacen 144 174 \N \N \N 2026-01-31 04:01:47.012861 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "hacen el informe como les conviene", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "son ustedes los que mandan el informe al seguro", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "me responden a mi reseña echándole la culpa al seguro", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "responsables de las chapuzas que hacen", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 144}], "unmapped": []} 31a5d9b5a681949d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2590 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNKOEpTajJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profecional en su teabajo 90 113 \N \N \N 2026-01-31 04:01:51.424711 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "profecional en su teabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "todo muy bien, puntual", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "nos soluciono una avería de un atasco en un fregadero", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 5be695b58d1857cf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2591 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNKOEpTajJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 todo muy bien, puntual 66 84 \N \N \N 2026-01-31 04:01:51.427359 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "profecional en su teabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "todo muy bien, puntual", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "nos soluciono una avería de un atasco en un fregadero", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 5be695b58d1857cf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2592 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNKOEpTajJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 nos soluciono una avería de un atasco en un fregadero 36 76 \N \N \N 2026-01-31 04:01:51.429442 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "profecional en su teabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "todo muy bien, puntual", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "nos soluciono una avería de un atasco en un fregadero", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 5be695b58d1857cf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2593 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYd1BUbDZRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 personal sin formación, enviando fontaneros distintos y ninguno sabía hacer su trabajo 30 98 \N \N \N 2026-01-31 04:01:55.468486 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 98, "evidence": "personal sin formación, enviando fontaneros distintos y ninguno sabía hacer su trabajo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 99}], "unmapped": []} 8daa775f06683e97 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2594 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYd1BUbDZRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 2 3 \N 0.90 no lo recomiendo 99 113 \N \N \N 2026-01-31 04:01:55.471039 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 98, "evidence": "personal sin formación, enviando fontaneros distintos y ninguno sabía hacer su trabajo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 99}], "unmapped": []} 8daa775f06683e97 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2595 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqdC1MRXFnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 2 3 \N 0.90 limpios, ordenados 56 73 \N \N \N 2026-01-31 04:02:00.390805 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "limpios, ordenados", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "responsables, rápidos, educados, y eficiente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "montsr un mueble", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} a4f54ebb7167c338 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2720 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMtdmRqUTFnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 HONESTY - 2 3 \N 0.90 Hicieron un informe contradiciendo la realidad del problema 0 48 \N \N \N 2026-01-31 04:04:49.892214 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 64, "evidence": "no recomendable", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "negative", "end_char": 48, "evidence": "Hicieron un informe contradiciendo la realidad del problema", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}], "unmapped": []} d3418b83099c7b42 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2596 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqdC1MRXFnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 2 3 \N 0.90 responsables, rápidos, educados, y eficiente 73 104 \N \N \N 2026-01-31 04:02:00.392546 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "limpios, ordenados", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "responsables, rápidos, educados, y eficiente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "montsr un mueble", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} a4f54ebb7167c338 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2597 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqdC1MRXFnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 montsr un mueble 38 54 \N \N \N 2026-01-31 04:02:00.39376 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "limpios, ordenados", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "responsables, rápidos, educados, y eficiente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "montsr un mueble", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} a4f54ebb7167c338 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2598 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfcXFiQldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 sin duda recomiendo 100% 43 63 \N \N \N 2026-01-31 04:02:06.130759 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "sin duda recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "trabajo bien hecho", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "muy rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}], "unmapped": []} 99b2d19881effead auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2599 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfcXFiQldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 trabajo bien hecho 15 31 \N \N \N 2026-01-31 04:02:06.132985 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "sin duda recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "trabajo bien hecho", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "muy rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}], "unmapped": []} 99b2d19881effead auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2600 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfcXFiQldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 muy rápidos 32 43 \N \N \N 2026-01-31 04:02:06.13468 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "sin duda recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "trabajo bien hecho", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "muy rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}], "unmapped": []} 99b2d19881effead auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2601 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURfcXFiQldnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionales 44 56 \N \N \N 2026-01-31 04:02:06.136461 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "sin duda recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "trabajo bien hecho", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "muy rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 32}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 44}], "unmapped": []} 99b2d19881effead auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2602 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUREaUxPQ1FnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 3 3 \N 0.90 Mi experiencia con el albañil es horrible 0 39 \N \N \N 2026-01-31 04:02:10.878334 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 39, "evidence": "Mi experiencia con el albañil es horrible", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Baldosas con desnivel de más de 2cm incluidos los zócalos en curva en una pared recta", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "El baño me lo dejo totalmente con cemento", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 169}], "unmapped": []} f66142a164b48102 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2603 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUREaUxPQ1FnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 3 3 \N 0.90 Baldosas con desnivel de más de 2cm incluidos los zócalos en curva en una pared recta 39 109 \N \N \N 2026-01-31 04:02:10.880464 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 39, "evidence": "Mi experiencia con el albañil es horrible", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Baldosas con desnivel de más de 2cm incluidos los zócalos en curva en una pared recta", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "El baño me lo dejo totalmente con cemento", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 169}], "unmapped": []} f66142a164b48102 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2604 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUREaUxPQ1FnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS - 3 3 \N 0.90 El baño me lo dejo totalmente con cemento 169 203 \N \N \N 2026-01-31 04:02:10.881804 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 39, "evidence": "Mi experiencia con el albañil es horrible", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Baldosas con desnivel de más de 2cm incluidos los zócalos en curva en una pared recta", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "El baño me lo dejo totalmente con cemento", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 169}], "unmapped": []} f66142a164b48102 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2605 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNheXBuMjVBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 tienen las goteras los pisos de abajo 27 56 \N \N \N 2026-01-31 04:02:14.022528 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "tienen las goteras los pisos de abajo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "si la avería se hace mayor el seguro es quien pagá", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 56}], "unmapped": []} ae7633c16d100dd7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2804 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURoeEwzMXF3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:10.500639 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2607 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURaLWNhcEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 lo hizo eficazmente 46 66 \N \N \N 2026-01-31 04:02:19.360207 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lo hizo eficazmente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "muy buena educación", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Lo recomendare seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "tardaron menos de dos horas en venir", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 22}], "unmapped": []} 6048442c8478d048 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2608 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURaLWNhcEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 muy buena educación 70 90 \N \N \N 2026-01-31 04:02:19.362607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lo hizo eficazmente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "muy buena educación", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Lo recomendare seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "tardaron menos de dos horas en venir", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 22}], "unmapped": []} 6048442c8478d048 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2609 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURaLWNhcEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Lo recomendare seguro 91 113 \N \N \N 2026-01-31 04:02:19.364477 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lo hizo eficazmente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "muy buena educación", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Lo recomendare seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "tardaron menos de dos horas en venir", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 22}], "unmapped": []} 6048442c8478d048 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2721 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUR5a1pTQk1REAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE ± 2 2 \N 0.70 algunos empleados que no son todo lo eficaces que deberían ser 36 78 \N \N \N 2026-01-31 04:04:51.374816 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 78, "evidence": "algunos empleados que no son todo lo eficaces que deberían ser", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.7, "start_char": 36}], "unmapped": []} 1f657dd75365ce1b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2610 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURaLWNhcEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 tardaron menos de dos horas en venir 22 50 \N \N \N 2026-01-31 04:02:19.366224 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "lo hizo eficazmente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "muy buena educación", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Lo recomendare seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "tardaron menos de dos horas en venir", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 22}], "unmapped": []} 6048442c8478d048 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5299 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 realizaron un trabajo maravilloso 66 92 \N \N \N 2026-01-31 15:10:20.501282 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "limpios educados y muy profesionales", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 53e17f19eca0b7a7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 2611 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Una empresa puntual en sus trabajos 0 34 \N \N \N 2026-01-31 04:02:25.219339 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Una empresa puntual en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre con buena información de cada paso del trabajo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "operarios eficaces", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "en su administración muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Gracias por su buen trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 123}], "unmapped": []} 99799eff0c9ae5b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2612 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION + 3 3 \N 0.90 siempre con buena información de cada paso del trabajo 35 73 \N \N \N 2026-01-31 04:02:25.221308 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Una empresa puntual en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre con buena información de cada paso del trabajo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "operarios eficaces", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "en su administración muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Gracias por su buen trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 123}], "unmapped": []} 99799eff0c9ae5b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2613 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 operarios eficaces 74 93 \N \N \N 2026-01-31 04:02:25.222992 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Una empresa puntual en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre con buena información de cada paso del trabajo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "operarios eficaces", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "en su administración muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Gracias por su buen trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 123}], "unmapped": []} 99799eff0c9ae5b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2614 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 en su administración muy atentos 94 122 \N \N \N 2026-01-31 04:02:25.225056 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Una empresa puntual en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre con buena información de cada paso del trabajo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "operarios eficaces", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "en su administración muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Gracias por su buen trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 123}], "unmapped": []} 99799eff0c9ae5b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2749 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMtcmJ2M3pnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 3 3 \N 0.90 No lo recomiendo ni a mí peor enemigo 0 36 \N \N \N 2026-01-31 04:05:22.195741 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "No lo recomiendo ni a mí peor enemigo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} a7dcf586a1ae189c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2615 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Gracias por su buen trabajo 123 147 \N \N \N 2026-01-31 04:02:25.226791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Una empresa puntual en sus trabajos", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "siempre con buena información de cada paso del trabajo", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "operarios eficaces", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 74}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "en su administración muy atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Gracias por su buen trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 123}], "unmapped": []} 99799eff0c9ae5b8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4486 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNveFlUMG13RRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Buenos precios y calidad 0 24 \N \N \N 2026-01-31 13:43:05.879312 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Buenos precios y calidad", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e8407d0e1f530a15 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2616 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNENzlHWGJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Buen servicio, puntual, rápido y limpio. 0 43 \N \N \N 2026-01-31 04:02:27.921765 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Buen servicio, puntual, rápido y limpio.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "El empleado que vino a casa, muy amable y servicial.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 44}], "unmapped": []} d11b3dd370ee6552 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2617 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNENzlHWGJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 El empleado que vino a casa, muy amable y servicial. 44 82 \N \N \N 2026-01-31 04:02:27.92308 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Buen servicio, puntual, rápido y limpio.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "El empleado que vino a casa, muy amable y servicial.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 44}], "unmapped": []} d11b3dd370ee6552 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2618 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNIOE9LdVpnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Los trabajadores que vinieron fueron muy profesionales y educados. 0 66 \N \N \N 2026-01-31 04:02:30.761946 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Los trabajadores que vinieron fueron muy profesionales y educados.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "El servicio que prestaron fue rápido y eficientes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}], "unmapped": []} a89999ac1f76ebee auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2619 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNIOE9LdVpnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 El servicio que prestaron fue rápido y eficientes 66 103 \N \N \N 2026-01-31 04:02:30.76402 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Los trabajadores que vinieron fueron muy profesionales y educados.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "El servicio que prestaron fue rápido y eficientes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}], "unmapped": []} a89999ac1f76ebee auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2620 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNwNDVIc0N3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 Muy rápido y bien hecha la reparación. 0 36 \N \N \N 2026-01-31 04:02:35.269757 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy rápido y bien hecha la reparación.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "El operario David educada.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy limpio con su trabajo.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Contenta", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}], "unmapped": []} bcdb38a4ca21b4ce auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2621 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNwNDVIc0N3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 El operario David educada. 36 61 \N \N \N 2026-01-31 04:02:35.272168 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy rápido y bien hecha la reparación.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "El operario David educada.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy limpio con su trabajo.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Contenta", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}], "unmapped": []} bcdb38a4ca21b4ce auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2821 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNDM0s3a2pnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:22.258667 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4566 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNxcFp1YkZBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.832677 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2622 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNwNDVIc0N3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 2 3 \N 0.90 muy limpio con su trabajo. 61 82 \N \N \N 2026-01-31 04:02:35.273571 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy rápido y bien hecha la reparación.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "El operario David educada.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy limpio con su trabajo.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Contenta", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}], "unmapped": []} bcdb38a4ca21b4ce auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2623 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNwNDVIc0N3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 2 3 \N 0.90 Contenta 82 90 \N \N \N 2026-01-31 04:02:35.27547 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy rápido y bien hecha la reparación.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "El operario David educada.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "muy limpio con su trabajo.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Contenta", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}], "unmapped": []} bcdb38a4ca21b4ce auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2624 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNMcnNfdWZBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Grandes profesionales desde la que atiende la llamada hasta el operario que va a los apartamentos 0 85 \N \N \N 2026-01-31 04:02:41.236337 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "Grandes profesionales desde la que atiende la llamada hasta el operario que va a los apartamentos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Desde aquí les doy las gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 86}], "unmapped": []} a3ed385b4f136714 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2625 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNMcnNfdWZBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Desde aquí les doy las gracias 86 109 \N \N \N 2026-01-31 04:02:41.238591 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "Grandes profesionales desde la que atiende la llamada hasta el operario que va a los apartamentos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Desde aquí les doy las gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 86}], "unmapped": []} a3ed385b4f136714 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2626 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUM5enYtYjB3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOVERY - 2 3 \N 0.90 me reembolsen una rotura que hicieron ellos 56 83 \N \N \N 2026-01-31 04:02:44.843413 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "me reembolsen una rotura que hicieron ellos", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 17, "evidence": "Gestión pésima!!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e1dc1915f690b358 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2627 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUM5enYtYjB3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 3 3 \N 0.90 Gestión pésima!!! 0 17 \N \N \N 2026-01-31 04:02:44.84613 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "me reembolsen una rotura que hicieron ellos", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 17, "evidence": "Gestión pésima!!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e1dc1915f690b358 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2628 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQtdmJIYzVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 el chico que vino a escayolar el techo (Juan Manuel) lo dejó perfecto 36 83 \N \N \N 2026-01-31 04:02:48.02408 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el chico que vino a escayolar el techo (Juan Manuel) lo dejó perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "fue muy simpático y profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}], "unmapped": []} 1adf737e46a98735 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4567 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURLekotODVBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.833922 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2629 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQtdmJIYzVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 fue muy simpático y profesional 83 109 \N \N \N 2026-01-31 04:02:48.026678 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "el chico que vino a escayolar el techo (Juan Manuel) lo dejó perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "fue muy simpático y profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}], "unmapped": []} 1adf737e46a98735 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4273 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNDb05IcHhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.511086 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2634 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR0bmN2SDJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 (la recomiendo, ) 66 80 \N \N \N 2026-01-31 04:02:57.615802 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "(la recomiendo, )", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "la atención de la empresa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad, la atención de la empresa, seriedad, y un buen trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "muy satisfecha con el trabajo realizado en casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 98f91e077ae850c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2635 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR0bmN2SDJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 la atención de la empresa 36 56 \N \N \N 2026-01-31 04:02:57.617776 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "(la recomiendo, )", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "la atención de la empresa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad, la atención de la empresa, seriedad, y un buen trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "muy satisfecha con el trabajo realizado en casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 98f91e077ae850c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2690 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNlallpM1FBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.90 comunicaron despues que no reparaban este tipo de avería 54 92 \N \N \N 2026-01-31 04:04:08.263871 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "no detectaron las fugas", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "comunicaron despues que no reparaban este tipo de avería", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 54}], "unmapped": []} 11a3b846c020f139 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2636 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR0bmN2SDJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 puntualidad, la atención de la empresa, seriedad, y un buen trabajo 20 66 \N \N \N 2026-01-31 04:02:57.619851 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "(la recomiendo, )", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "la atención de la empresa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad, la atención de la empresa, seriedad, y un buen trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "muy satisfecha con el trabajo realizado en casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 98f91e077ae850c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2637 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR0bmN2SDJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 muy satisfecha con el trabajo realizado en casa 0 39 \N \N \N 2026-01-31 04:02:57.623033 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "(la recomiendo, )", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "la atención de la empresa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad, la atención de la empresa, seriedad, y un buen trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "muy satisfecha con el trabajo realizado en casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 98f91e077ae850c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2638 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3aFBUZkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Fueron rápidos en venir a casa 0 30 \N \N \N 2026-01-31 04:03:01.544145 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Fueron rápidos en venir a casa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "solucionaron el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "resolviendo todas las dudas que teníamos", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 87e4917ae83ae8ec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 3975 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Greatest club in Lithuania 0 30 \N \N \N 2026-01-31 13:32:35.400622 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Greatest club in Lithuania", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "best place to go in the midnight", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}], "unmapped": []} cb1ae4693853ef82 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2639 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3aFBUZkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 solucionaron el problema 34 56 \N \N \N 2026-01-31 04:03:01.546862 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Fueron rápidos en venir a casa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "solucionaron el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "resolviendo todas las dudas que teníamos", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 87e4917ae83ae8ec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2640 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3aFBUZkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Trato muy profesional 58 78 \N \N \N 2026-01-31 04:03:01.548442 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Fueron rápidos en venir a casa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "solucionaron el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "resolviendo todas las dudas que teníamos", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 87e4917ae83ae8ec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2641 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3aFBUZkVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION + 3 3 \N 0.90 resolviendo todas las dudas que teníamos 80 113 \N \N \N 2026-01-31 04:03:01.549754 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Fueron rápidos en venir a casa", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "solucionaron el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Trato muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "resolviendo todas las dudas que teníamos", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 80}], "unmapped": []} 87e4917ae83ae8ec auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2691 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUN3OUxId1FBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy buena empresa, buenos profesionales. 0 36 \N \N \N 2026-01-31 04:04:09.907947 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Muy buena empresa, buenos profesionales.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f180519541dd0b84 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2642 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMxcXBmejZBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Muy eficaces y rápidos 0 24 \N \N \N 2026-01-31 04:03:04.916074 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy eficaces y rápidos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "realuzaron muy buenos trabajos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}], "unmapped": []} d4b6649dcbaf67b5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4487 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURzNlp2YWhBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Me encantan sus juguetes de todo tipo 0 36 \N \N \N 2026-01-31 13:43:07.39714 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Me encantan sus juguetes de todo tipo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4c3e277f7f706c44 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2643 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMxcXBmejZBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 realuzaron muy buenos trabajos 54 80 \N \N \N 2026-01-31 04:03:04.918432 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy eficaces y rápidos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "realuzaron muy buenos trabajos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}], "unmapped": []} d4b6649dcbaf67b5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2644 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMxcXBmejZBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomendable 81 92 \N \N \N 2026-01-31 04:03:04.920249 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Muy eficaces y rápidos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "realuzaron muy buenos trabajos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}], "unmapped": []} d4b6649dcbaf67b5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 3976 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 best place to go in the midnight 31 60 \N \N \N 2026-01-31 13:32:35.402784 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Greatest club in Lithuania", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "best place to go in the midnight", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}], "unmapped": []} cb1ae4693853ef82 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2645 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqalpXN3p3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Totalmente recomendable. 56 78 \N \N \N 2026-01-31 04:03:08.381125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelente profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Cumplen en tiempo y hora.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 25}], "unmapped": []} 925a205adb4dc7b2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2646 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqalpXN3p3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Excelente profesionales. 0 24 \N \N \N 2026-01-31 04:03:08.383637 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelente profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Cumplen en tiempo y hora.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 25}], "unmapped": []} 925a205adb4dc7b2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2647 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqalpXN3p3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY + 3 3 \N 0.90 Cumplen en tiempo y hora. 25 48 \N \N \N 2026-01-31 04:03:08.385381 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "Totalmente recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelente profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Cumplen en tiempo y hora.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 25}], "unmapped": []} 925a205adb4dc7b2 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2648 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQtaWV5cWl3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 Trabajos mal acabados 0 20 \N \N \N 2026-01-31 04:03:11.176699 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Trabajos mal acabados", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "mienten al cliente", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "negative", "end_char": 99, "evidence": "No los recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 102fe263e91c93c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2649 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQtaWV5cWl3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 HONESTY - 2 3 \N 0.90 mienten al cliente 21 39 \N \N \N 2026-01-31 04:03:11.179359 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Trabajos mal acabados", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "mienten al cliente", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "negative", "end_char": 99, "evidence": "No los recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 102fe263e91c93c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2650 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQtaWV5cWl3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 2 3 \N 0.90 No los recomiendo 83 99 \N \N \N 2026-01-31 04:03:11.18078 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Trabajos mal acabados", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 39, "evidence": "mienten al cliente", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "negative", "end_char": 99, "evidence": "No los recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 102fe263e91c93c4 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2651 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTURnMGE2NG53RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 Buena atención y profesionalidad en el trabajo realizado. 0 54 \N \N \N 2026-01-31 04:03:13.552642 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "Buena atención y profesionalidad en el trabajo realizado.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendable.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} 00cb52e7b7116514 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2652 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTURnMGE2NG53RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 2 3 \N 0.90 Recomendable. 54 66 \N \N \N 2026-01-31 04:03:13.554677 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "Buena atención y profesionalidad en el trabajo realizado.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendable.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}], "unmapped": []} 00cb52e7b7116514 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4274 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM4OU42czRnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.513548 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2653 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkbkluU293RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Puntualidad, profesionalidad, seriedad en trabajo 0 66 \N \N \N 2026-01-31 04:03:17.228377 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Puntualidad, profesionalidad, seriedad en trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "profesionalidad, seriedad en trabajo de reparación", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "enviados por mi compañía de seguros", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 0}], "unmapped": []} e59b4a7ac3d593e1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2654 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkbkluU293RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionalidad, seriedad en trabajo de reparación 0 66 \N \N \N 2026-01-31 04:03:17.230327 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Puntualidad, profesionalidad, seriedad en trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "profesionalidad, seriedad en trabajo de reparación", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "enviados por mi compañía de seguros", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 0}], "unmapped": []} e59b4a7ac3d593e1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2655 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkbkluU293RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.80 enviados por mi compañía de seguros 0 66 \N \N \N 2026-01-31 04:03:17.231906 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Puntualidad, profesionalidad, seriedad en trabajo", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "profesionalidad, seriedad en trabajo de reparación", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "enviados por mi compañía de seguros", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 0}], "unmapped": []} e59b4a7ac3d593e1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 1617 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChdDSUhNMG9nS0VJQ0FnSURyaDZxbDhnRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 Te sientes como en casa 50 70 \N \N \N 2026-01-31 03:45:10.088864 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Muy buena vibra", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Te sientes como en casa", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 50}], "unmapped": []} 0827125605f54b0b auto 56bb22c1-8631-4285-b549-8fa7c9944462 2656 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN2cVlUTTNRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED - 2 3 \N 0.90 Servcio super lento ( 1 mes y medio de espera) 0 36 \N \N \N 2026-01-31 04:03:21.132233 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "Servcio super lento ( 1 mes y medio de espera)", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "atención al cliente fatal!!!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "No aconsejo!!!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} d579974f0c093d10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2657 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN2cVlUTTNRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS - 2 3 \N 0.90 atención al cliente fatal!!! 37 61 \N \N \N 2026-01-31 04:03:21.134068 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "Servcio super lento ( 1 mes y medio de espera)", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "atención al cliente fatal!!!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "No aconsejo!!!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} d579974f0c093d10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2658 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN2cVlUTTNRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 2 3 \N 0.90 No aconsejo!!! 62 75 \N \N \N 2026-01-31 04:03:21.136037 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "Servcio super lento ( 1 mes y medio de espera)", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 61, "evidence": "atención al cliente fatal!!!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "No aconsejo!!!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 62}], "unmapped": []} d579974f0c093d10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2659 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURMODdfSHlnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 su trato amable y paciente 37 61 \N \N \N 2026-01-31 04:03:23.857301 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "su trato amable y paciente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}], "unmapped": []} bce5b2712603bc61 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2660 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURMODdfSHlnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 su profesionalidad 30 45 \N \N \N 2026-01-31 04:03:23.860484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "su trato amable y paciente", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "su profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}], "unmapped": []} bce5b2712603bc61 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2666 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNheXJxeTlRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 muy educado con buen trato 38 63 \N \N \N 2026-01-31 04:03:35.232484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "muy educado con buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "gracias al Sr Oliver por el trabajo que hizo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "de todo corazón gracias Oliver", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 101}], "unmapped": []} 54120951439b251d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2805 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQtdmJmT25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 04:06:11.753787 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2667 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNheXJxeTlRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 gracias al Sr Oliver por el trabajo que hizo 66 100 \N \N \N 2026-01-31 04:03:35.235204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "muy educado con buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "gracias al Sr Oliver por el trabajo que hizo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "de todo corazón gracias Oliver", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 101}], "unmapped": []} 54120951439b251d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2668 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNheXJxeTlRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 de todo corazón gracias Oliver 101 126 \N \N \N 2026-01-31 04:03:35.237418 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "muy educado con buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "gracias al Sr Oliver por el trabajo que hizo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "de todo corazón gracias Oliver", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 101}], "unmapped": []} 54120951439b251d auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2669 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Servicio muy profesional 0 27 \N \N \N 2026-01-31 04:03:41.702885 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "en tiempos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "en la calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "en la atencion", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Todo fue perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 65}], "unmapped": []} 0a13d47915ad0964 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2670 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 en tiempos 27 37 \N \N \N 2026-01-31 04:03:41.705143 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "en tiempos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "en la calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "en la atencion", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Todo fue perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 65}], "unmapped": []} 0a13d47915ad0964 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2671 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 en la calidad 37 51 \N \N \N 2026-01-31 04:03:41.706708 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "en tiempos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "en la calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "en la atencion", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Todo fue perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 65}], "unmapped": []} 0a13d47915ad0964 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4275 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM4OUlMSzlnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.515899 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2672 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 en la atencion 51 65 \N \N \N 2026-01-31 04:03:41.708021 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "en tiempos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "en la calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "en la atencion", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Todo fue perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 65}], "unmapped": []} 0a13d47915ad0964 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4501 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURzbWU2bEhnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Personal muy atento 0 22 \N \N \N 2026-01-31 13:43:26.044172 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Personal muy atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 69698d191eedacc4 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2809 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURXOEpPZU1REAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 04:06:13.627064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2673 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Todo fue perfecto 65 82 \N \N \N 2026-01-31 04:03:41.709357 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Servicio muy profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "en tiempos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "en la calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "en la atencion", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Todo fue perfecto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 65}], "unmapped": []} 0a13d47915ad0964 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2674 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5X05ESzJBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy buen servicio y profesionalidad 0 30 \N \N \N 2026-01-31 04:03:47.533686 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen servicio y profesionalidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "profesionalidad por el Señor fontanero Enrique", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Muchísimas gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} ed184cb9b63c12b3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2675 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5X05ESzJBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionalidad por el Señor fontanero Enrique 30 66 \N \N \N 2026-01-31 04:03:47.535732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen servicio y profesionalidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "profesionalidad por el Señor fontanero Enrique", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Muchísimas gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} ed184cb9b63c12b3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2676 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQ5X05ESzJBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchísimas gracias 66 84 \N \N \N 2026-01-31 04:03:47.537295 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen servicio y profesionalidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "profesionalidad por el Señor fontanero Enrique", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Muchísimas gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 66}], "unmapped": []} ed184cb9b63c12b3 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2677 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMyek9LT1JnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 2 \N 0.90 fueron bastante eficientes 66 92 \N \N \N 2026-01-31 04:03:49.243985 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "fueron bastante eficientes", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": [{"label": "Incomplete Service", "evidence": "menos la campana de la cocina", "confidence": 0.7}]} 46c26c360ae3c9b6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2678 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMyek9LT1JnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.70 menos la campana de la cocina \N \N {"Incomplete Service"} \N \N 2026-01-31 04:03:49.245848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "fueron bastante eficientes", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": [{"label": "Incomplete Service", "evidence": "menos la campana de la cocina", "confidence": 0.7}]} 46c26c360ae3c9b6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2681 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURYcDV6c0xREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Cumplen con lo acordado. 0 24 \N \N \N 2026-01-31 04:03:54.442132 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Cumplen con lo acordado.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "Tanto en hora como en el trabajo a realizar.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 26}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} c4927d1355b2cde8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2682 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURYcDV6c0xREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Tanto en hora como en el trabajo a realizar. 26 54 \N \N \N 2026-01-31 04:03:54.444056 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Cumplen con lo acordado.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "Tanto en hora como en el trabajo a realizar.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 26}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} c4927d1355b2cde8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2683 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURYcDV6c0xREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomendable 56 66 \N \N \N 2026-01-31 04:03:54.445523 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Cumplen con lo acordado.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "Tanto en hora como en el trabajo a realizar.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 26}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} c4927d1355b2cde8 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2684 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURGd2U2X013EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 Lamentables como profesionales 43 66 \N \N \N 2026-01-31 04:03:59.084938 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Lamentables como profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": [{"label": "service quality", "evidence": "Los mandaron del seguro por un tema de fontanería.", "confidence": 0.6}]} 8109a4b5da66ee99 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2685 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURGd2U2X013EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.60 Los mandaron del seguro por un tema de fontanería. \N \N {"service quality"} \N \N 2026-01-31 04:03:59.089247 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Lamentables como profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": [{"label": "service quality", "evidence": "Los mandaron del seguro por un tema de fontanería.", "confidence": 0.6}]} 8109a4b5da66ee99 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2686 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPamZuV01REAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ETHICS - 2 3 \N 0.90 Te engañan 0 12 \N \N \N 2026-01-31 04:04:05.697486 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 12, "evidence": "Te engañan", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "poca profesionalidad", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "todo eso de malas formas", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 81}], "unmapped": []} fc1067ef03f8f00c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2687 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPamZuV01REAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS - 2 3 \N 0.90 poca profesionalidad 17 36 \N \N \N 2026-01-31 04:04:05.699464 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 12, "evidence": "Te engañan", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "poca profesionalidad", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "todo eso de malas formas", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 81}], "unmapped": []} fc1067ef03f8f00c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2688 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPamZuV01REAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.90 todo eso de malas formas 81 100 \N \N \N 2026-01-31 04:04:05.70102 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 12, "evidence": "Te engañan", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "poca profesionalidad", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "todo eso de malas formas", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 81}], "unmapped": []} fc1067ef03f8f00c auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4276 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM4OUlLUUJBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.517638 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4277 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM4OUx6X0tnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.519198 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2692 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUazZlRmRBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Excelente atención 0 17 \N \N \N 2026-01-31 04:04:15.055912 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "puntuales", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "resolutivos para el arreglo de la puerta de casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}], "unmapped": []} 567d984321577ffb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2693 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUazZlRmRBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 puntuales 18 26 \N \N \N 2026-01-31 04:04:15.057774 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "puntuales", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "resolutivos para el arreglo de la puerta de casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}], "unmapped": []} 567d984321577ffb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2694 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUazZlRmRBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 resolutivos para el arreglo de la puerta de casa 27 66 \N \N \N 2026-01-31 04:04:15.059648 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Excelente atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "puntuales", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "resolutivos para el arreglo de la puerta de casa", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 27}], "unmapped": []} 567d984321577ffb auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2695 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNfOHJhejVBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 equipo de profesionales muy cualificado 30 66 \N \N \N 2026-01-31 04:04:17.862295 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "equipo de profesionales muy cualificado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Seriedad y eficiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} d9a498721ee83a78 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2696 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNfOHJhejVBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Seriedad y eficiencia 0 18 \N \N \N 2026-01-31 04:04:17.864503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "equipo de profesionales muy cualificado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Seriedad y eficiencia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} d9a498721ee83a78 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2697 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqeDduTGpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atentos y preocupados 26 46 \N \N \N 2026-01-31 04:04:20.912615 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "atentos y preocupados", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 26}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "Muy satisfecho, todo genial", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d09c03a5e0ca11f0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2698 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqeDduTGpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rápidos 20 27 \N \N \N 2026-01-31 04:04:20.91446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "atentos y preocupados", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 26}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "Muy satisfecho, todo genial", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d09c03a5e0ca11f0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2699 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqeDduTGpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy satisfecho, todo genial 0 25 \N \N \N 2026-01-31 04:04:20.915437 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "atentos y preocupados", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 26}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "Muy satisfecho, todo genial", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d09c03a5e0ca11f0 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2813 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChRDSUhNMG9nS0VJQ0FnSUNXOXZoUBAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review"} \N \N 2026-01-31 04:06:16.034522 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4568 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNLeC1tUnVnRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.834919 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2702 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUROMWZXWHpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomendable. 41 53 \N \N \N 2026-01-31 04:04:32.242163 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 53, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 19, "evidence": "Amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} e61c6db7ed0e6bdd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2703 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUROMWZXWHpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 limpios 25 31 \N \N \N 2026-01-31 04:04:32.244455 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 53, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 19, "evidence": "Amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} e61c6db7ed0e6bdd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2704 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUROMWZXWHpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Amables 12 19 \N \N \N 2026-01-31 04:04:32.24587 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 53, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 19, "evidence": "Amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} e61c6db7ed0e6bdd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2705 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUROMWZXWHpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 puntuales 32 40 \N \N \N 2026-01-31 04:04:32.247356 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 53, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 19, "evidence": "Amables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} e61c6db7ed0e6bdd auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2706 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNsbXRlMFl3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 buen hacer 30 40 \N \N \N 2026-01-31 04:04:34.44634 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "buen hacer", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "rapidez en su cometido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 45}], "unmapped": []} 53bf2df3d53ae412 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2707 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNsbXRlMFl3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rapidez en su cometido 45 66 \N \N \N 2026-01-31 04:04:34.44974 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "buen hacer", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "rapidez en su cometido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 45}], "unmapped": []} 53bf2df3d53ae412 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2708 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURkdTdXVWVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Servicio ágil 0 13 \N \N \N 2026-01-31 04:04:37.619515 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Servicio ágil", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "en contacto con el cliente", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "terminación del trabajo en la fecha concertada", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 57a9e2ef7ec6dab7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2709 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURkdTdXVWVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION + 3 3 \N 0.90 en contacto con el cliente 13 36 \N \N \N 2026-01-31 04:04:37.622212 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Servicio ágil", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "en contacto con el cliente", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "terminación del trabajo en la fecha concertada", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 57a9e2ef7ec6dab7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2710 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURkdTdXVWVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 terminación del trabajo en la fecha concertada 36 73 \N \N \N 2026-01-31 04:04:37.623946 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Servicio ágil", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "en contacto con el cliente", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "terminación del trabajo en la fecha concertada", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} 57a9e2ef7ec6dab7 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2711 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNsN2E2UWh3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 3 \N 0.90 Buenos profesionales 0 18 \N \N \N 2026-01-31 04:04:42.214068 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Buenos profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "organización", "intensity": 4, "primitive": "ORGANIZATION", "confidence": 0.8, "start_char": 19}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad en fecha de trabajos realizados", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} 94f17c9e228ba5f1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2712 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNsN2E2UWh3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED + 2 3 \N 0.80 organización 19 31 \N \N \N 2026-01-31 04:04:42.216179 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Buenos profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "organización", "intensity": 4, "primitive": "ORGANIZATION", "confidence": 0.8, "start_char": 19}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad en fecha de trabajos realizados", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} 94f17c9e228ba5f1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2713 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNsN2E2UWh3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 2 3 \N 0.90 puntualidad en fecha de trabajos realizados 32 66 \N \N \N 2026-01-31 04:04:42.217684 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Buenos profesionales", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "organización", "intensity": 4, "primitive": "ORGANIZATION", "confidence": 0.8, "start_char": 19}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "puntualidad en fecha de trabajos realizados", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 32}], "unmapped": []} 94f17c9e228ba5f1 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2714 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPdUludEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION - 2 3 \N 0.90 un daño reconocido 22 40 \N \N \N 2026-01-31 04:04:44.350975 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 40, "evidence": "un daño reconocido", "intensity": 4, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 81, "evidence": "2 meses para seguir viniendo a ver qué hay que arreglar", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} bded4167e79f7e34 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2715 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPdUludEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 2 meses para seguir viniendo a ver qué hay que arreglar 41 81 \N \N \N 2026-01-31 04:04:44.353323 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 40, "evidence": "un daño reconocido", "intensity": 4, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 81, "evidence": "2 meses para seguir viniendo a ver qué hay que arreglar", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 41}], "unmapped": []} bded4167e79f7e34 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2716 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNocXJlSXVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 son puntuales 36 45 \N \N \N 2026-01-31 04:04:45.69828 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "son puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 36}], "unmapped": []} 777f8212eb11ca34 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2717 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNOODlDcm13RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 El sr Hugo muy profesional. 0 27 \N \N \N 2026-01-31 04:04:47.784121 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El sr Hugo muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Lo dejó todo muy bien", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0d2e1f4b2a533534 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2718 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNOODlDcm13RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 Lo dejó todo muy bien 27 50 \N \N \N 2026-01-31 04:04:47.785983 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "El sr Hugo muy profesional.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Lo dejó todo muy bien", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0d2e1f4b2a533534 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2722 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Puntuales 0 8 \N \N \N 2026-01-31 04:04:55.685125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 9}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 35}], "unmapped": []} 01542cf26e915a60 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2723 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 eficaz 9 15 \N \N \N 2026-01-31 04:04:55.687535 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 9}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 35}], "unmapped": []} 01542cf26e915a60 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2724 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionales 16 27 \N \N \N 2026-01-31 04:04:55.689167 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 9}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 35}], "unmapped": []} 01542cf26e915a60 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2725 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 limpios 28 34 \N \N \N 2026-01-31 04:04:55.690785 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 9}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 35}], "unmapped": []} 01542cf26e915a60 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2726 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atentos 35 42 \N \N \N 2026-01-31 04:04:55.692125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "eficaz", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 9}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "limpios", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "atentos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 35}], "unmapped": []} 01542cf26e915a60 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2729 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURabGJ2TnhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 Cerrajero malo y poco profesional 0 30 \N \N \N 2026-01-31 04:05:00.615251 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Cerrajero malo y poco profesional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 53, "evidence": "dejo el trabajo a medias", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "negative", "end_char": 68, "evidence": "no lo terminan", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 54}], "unmapped": []} c86b8773388bf623 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4280 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM4OUl5MFRREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.523234 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2730 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURabGJ2TnhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.90 dejo el trabajo a medias 31 53 \N \N \N 2026-01-31 04:05:00.625869 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Cerrajero malo y poco profesional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 53, "evidence": "dejo el trabajo a medias", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "negative", "end_char": 68, "evidence": "no lo terminan", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 54}], "unmapped": []} c86b8773388bf623 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2731 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURabGJ2TnhRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 no lo terminan 54 68 \N \N \N 2026-01-31 04:05:00.629281 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Cerrajero malo y poco profesional", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 53, "evidence": "dejo el trabajo a medias", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "negative", "end_char": 68, "evidence": "no lo terminan", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 54}], "unmapped": []} c86b8773388bf623 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2732 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VPM3FxOExFaFpiYVpREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 Seriedad y profesionalidad admirables 0 36 \N \N \N 2026-01-31 04:05:01.863981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Seriedad y profesionalidad admirables", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f48229fe050b775 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2733 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNKdE9PbmZ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Agradezco el servicio prestado por el operario Luis Méndez 0 45 \N \N \N 2026-01-31 04:05:03.484739 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Agradezco el servicio prestado por el operario Luis Méndez", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 58dd4680ffcdd247 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2734 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUM5bHA3MmlRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Excelentes profesionales 0 24 \N \N \N 2026-01-31 04:05:06.498867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Trabajo de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 83fabbe01653b10e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2735 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUM5bHA3MmlRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Trabajo de calidad 25 45 \N \N \N 2026-01-31 04:05:06.501166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Trabajo de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 83fabbe01653b10e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2736 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUM5bHA3MmlRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Gracias 46 53 \N \N \N 2026-01-31 04:05:06.502614 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Trabajo de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 53, "evidence": "Gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 83fabbe01653b10e auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2737 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUREaDVpNmt3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 lo recomiendo 36 48 \N \N \N 2026-01-31 04:05:08.772723 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "la profesionalidad del trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}], "unmapped": []} c09c121791b11cf9 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2739 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNobGYzbHhBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 muy recomendado 36 50 \N \N \N 2026-01-31 04:05:12.638563 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "gente muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 26}], "unmapped": []} 558f9ec9c3e766f5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2740 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNobGYzbHhBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 gente muy profesionales 4 25 \N \N \N 2026-01-31 04:05:12.640603 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "gente muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 26}], "unmapped": []} 558f9ec9c3e766f5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2741 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNobGYzbHhBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 puntuales 26 34 \N \N \N 2026-01-31 04:05:12.642144 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "muy recomendado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "gente muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 26}], "unmapped": []} 558f9ec9c3e766f5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2742 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURNdUxfYUp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER - 2 3 \N 0.90 mal trato de la que coje el teléfono 25 50 \N \N \N 2026-01-31 04:05:14.506565 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "mal trato de la que coje el teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}], "unmapped": [{"label": "Business Model", "evidence": "Solo trabajan con seguros", "confidence": 0.7}]} 82aada3b9ce363fe auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2743 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURNdUxfYUp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.70 Solo trabajan con seguros \N \N {"Business Model"} \N \N 2026-01-31 04:05:14.508813 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "mal trato de la que coje el teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}], "unmapped": [{"label": "Business Model", "evidence": "Solo trabajan con seguros", "confidence": 0.7}]} 82aada3b9ce363fe auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2744 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNEdXVPWEd3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Muy eficientes 0 15 \N \N \N 2026-01-31 04:05:18.155432 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 23, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}], "unmapped": []} c7560ab352386140 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2745 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNEdXVPWEd3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rápidos 16 23 \N \N \N 2026-01-31 04:05:18.158258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 23, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}], "unmapped": []} c7560ab352386140 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2746 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNEdXVPWEd3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionales 24 36 \N \N \N 2026-01-31 04:05:18.15998 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 23, "evidence": "rápidos", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 24}], "unmapped": []} c7560ab352386140 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4569 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNLcTVmWEJREAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.835499 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2747 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqNE1qdUpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 2 3 \N 0.90 Serios y puntuales. 0 19 \N \N \N 2026-01-31 04:05:20.286538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 19, "evidence": "Serios y puntuales.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Buen trabajo .", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 2c5b00cef6fc547b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2748 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNqNE1qdUpBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 Buen trabajo . 20 34 \N \N \N 2026-01-31 04:05:20.289521 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 19, "evidence": "Serios y puntuales.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Buen trabajo .", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} 2c5b00cef6fc547b auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4281 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM4OU1URHB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.524626 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2750 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMwX0pYVl9BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Buenos profesionales. 20 41 \N \N \N 2026-01-31 04:05:25.556522 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Buenos profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "rápidos.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 85ebde183fdb7f46 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2751 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMwX0pYVl9BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rápidos. 10 17 \N \N \N 2026-01-31 04:05:25.558728 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Buenos profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "rápidos.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 85ebde183fdb7f46 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2752 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUMwX0pYVl9BRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Eficientes 0 10 \N \N \N 2026-01-31 04:05:25.560095 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Buenos profesionales.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "rápidos.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Eficientes", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 85ebde183fdb7f46 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2753 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNscmJxdV93RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 La verdad muy contento 0 24 \N \N \N 2026-01-31 04:05:26.989449 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "La verdad muy contento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8020d8f4a0af28f6 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2754 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtLXZybUN3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 3 3 \N 0.90 Unos impresentables 0 18 \N \N \N 2026-01-31 04:05:28.472306 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 18, "evidence": "Unos impresentables", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4691e828eef3226f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2755 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMxdUptM1lnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 Buenos profesionales 0 18 \N \N \N 2026-01-31 04:05:29.829462 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Buenos profesionales", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} e38ac27dfb721b10 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2756 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNLMThpNUp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Fantastico 0 9 \N \N \N 2026-01-31 04:05:31.30553 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 9, "evidence": "Fantastico", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0a6da741d97b07f5 auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2757 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNRZ2ZtWDBBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 2 2 \N 0.50 Servicios de reparaciones 0 24 \N \N \N 2026-01-31 04:05:32.953499 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 24, "evidence": "Servicios de reparaciones", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} 5b0db8183ed7485f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 5604 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 2 3 \N 0.90 Personal atiende bien. 30 50 \N \N \N 2026-01-31 15:16:13.934801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Personal atiende bien.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "Juguetería muy completa.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e0d4848b707b9be es e4f95d90-dbbe-439d-a0fd-f19088002f26 2815 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNpNjd6NkhnEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 rating: 5 0 0 \N \N \N 2026-01-31 04:06:18.466001 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "rating: 5", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 3923 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great atmosphere in the club. 66 90 \N \N \N 2026-01-31 13:31:48.5028 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Great atmosphere in the club.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The bartenders are fast and the service is good.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Would recommend it to anyone looking for a good night out in Vilnius.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}], "unmapped": []} d5fe11fad3b1ddb3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2758 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 3 3 \N 0.90 son unos irresponsables 300 322 \N \N \N 2026-01-31 04:05:38.025082 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 322, "evidence": "son unos irresponsables", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "me hicieron una llamada perdida", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "cansada ya de que no respondiesen", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "Imaginaros que cara se me quedó", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 276}], "unmapped": []} a83f5f67d3d44adf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2759 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.80 me hicieron una llamada perdida 56 84 \N \N \N 2026-01-31 04:05:38.027256 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 322, "evidence": "son unos irresponsables", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "me hicieron una llamada perdida", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "cansada ya de que no respondiesen", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "Imaginaros que cara se me quedó", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 276}], "unmapped": []} a83f5f67d3d44adf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2760 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.80 cansada ya de que no respondiesen 116 144 \N \N \N 2026-01-31 04:05:38.028664 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 322, "evidence": "son unos irresponsables", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "me hicieron una llamada perdida", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "cansada ya de que no respondiesen", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "Imaginaros que cara se me quedó", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 276}], "unmapped": []} a83f5f67d3d44adf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4570 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUR5dDVPUFpREAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.836439 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 2761 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY - 2 3 \N 0.80 me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas 164 218 \N \N \N 2026-01-31 04:05:38.029995 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 322, "evidence": "son unos irresponsables", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "me hicieron una llamada perdida", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "cansada ya de que no respondiesen", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "Imaginaros que cara se me quedó", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 276}], "unmapped": []} a83f5f67d3d44adf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2762 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 3 3 \N 0.50 Imaginaros que cara se me quedó 276 303 \N \N \N 2026-01-31 04:05:38.031485 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 322, "evidence": "son unos irresponsables", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "me hicieron una llamada perdida", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "cansada ya de que no respondiesen", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "Imaginaros que cara se me quedó", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 276}], "unmapped": []} a83f5f67d3d44adf auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 4282 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM4NkxYQWZBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.525833 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3912 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Highly recommended to come visit 0 38 \N \N \N 2026-01-31 13:31:40.099272 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Highly recommended to come visit", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 198, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 154}], "unmapped": []} 638e24fc9310df0a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3913 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great vibe and great DJ 83 107 \N \N \N 2026-01-31 13:31:40.101554 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Highly recommended to come visit", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 198, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 154}], "unmapped": []} 638e24fc9310df0a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5300 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 fueron puntuales 92 106 \N \N \N 2026-01-31 15:10:20.508662 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "limpios educados y muy profesionales", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 53e17f19eca0b7a7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4571 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUR5aF91UVNBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.836987 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 3914 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Friendly staff and the bar owner were incredible amazing person 108 153 \N \N \N 2026-01-31 13:31:40.102612 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Highly recommended to come visit", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 198, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 154}], "unmapped": []} 638e24fc9310df0a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3915 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 Definitely, I will come visit again when I'm in the country 154 198 \N \N \N 2026-01-31 13:31:40.103774 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Highly recommended to come visit", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 198, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 154}], "unmapped": []} 638e24fc9310df0a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3916 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 great music 15 26 \N \N \N 2026-01-31 13:31:42.236094 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "great music", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "I really enjoyed my time there", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} 78f829d13abf0fd3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3917 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 I really enjoyed my time there 27 56 \N \N \N 2026-01-31 13:31:42.239571 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "great music", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "I really enjoyed my time there", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} 78f829d13abf0fd3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3924 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SPEED + 3 3 \N 0.90 The bartenders are fast and the service is good. 43 75 \N \N \N 2026-01-31 13:31:48.505498 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Great atmosphere in the club.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The bartenders are fast and the service is good.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Would recommend it to anyone looking for a good night out in Vilnius.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}], "unmapped": []} d5fe11fad3b1ddb3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3918 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 1 2 \N 0.90 the crowd had good energy 300 324 \N \N \N 2026-01-31 13:31:46.033744 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 324, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "they gave me a free entry ticket to return next weekend", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 338, "evidence": "friendly staff", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 324}], "unmapped": []} 56e1322becebb520 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4572 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUR5dU9UY3NBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.837546 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 3919 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 2 2 \N 0.90 The bar is extremely clean 157 182 \N \N \N 2026-01-31 13:31:46.039415 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 324, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "they gave me a free entry ticket to return next weekend", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 338, "evidence": "friendly staff", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 324}], "unmapped": []} 56e1322becebb520 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3920 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 2 3 \N 0.90 he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards 183 248 \N \N \N 2026-01-31 13:31:46.041123 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 324, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "they gave me a free entry ticket to return next weekend", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 338, "evidence": "friendly staff", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 324}], "unmapped": []} 56e1322becebb520 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3921 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 1 2 \N 0.80 they gave me a free entry ticket to return next weekend 249 284 \N \N \N 2026-01-31 13:31:46.042655 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 324, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "they gave me a free entry ticket to return next weekend", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 338, "evidence": "friendly staff", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 324}], "unmapped": []} 56e1322becebb520 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3922 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 1 2 \N 0.90 friendly staff 324 338 \N \N \N 2026-01-31 13:31:46.043921 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 324, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 300}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "they gave me a free entry ticket to return next weekend", "intensity": 2, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 249}, {"details": null, "valence": "positive", "end_char": 338, "evidence": "friendly staff", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 324}], "unmapped": []} 56e1322becebb520 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4283 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURjOW9UYkpBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.527519 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4573 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN5MEkta1N3EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.838092 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 3925 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Would recommend it to anyone looking for a good night out in Vilnius. 91 136 \N \N \N 2026-01-31 13:31:48.507015 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Great atmosphere in the club.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The bartenders are fast and the service is good.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "Would recommend it to anyone looking for a good night out in Vilnius.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 91}], "unmapped": []} d5fe11fad3b1ddb3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3926 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 amazing atmosphere 27 45 \N \N \N 2026-01-31 13:31:51.083204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "The staff and customers are friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Always a good vibe", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea9114d65b2557be auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3927 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 The staff and customers are friendly 70 103 \N \N \N 2026-01-31 13:31:51.086473 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "The staff and customers are friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Always a good vibe", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea9114d65b2557be auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3928 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Always a good vibe 0 18 \N \N \N 2026-01-31 13:31:51.087883 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "The staff and customers are friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Always a good vibe", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea9114d65b2557be auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3929 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 FRICTION - 2 2 \N 0.90 The system you have is stupid and discriminatory. 164 203 \N \N \N 2026-01-31 13:31:53.684609 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "The system you have is stupid and discriminatory.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "Thank you for your response.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 204}], "unmapped": []} bf7a92434c577c6a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3930 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 2 2 \N 0.70 Thank you for your response. 118 139 \N \N \N 2026-01-31 13:31:53.687824 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "The system you have is stupid and discriminatory.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "Thank you for your response.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 204}], "unmapped": []} bf7a92434c577c6a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3931 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 2 \N 0.60 Its a never seen system when a single person or a couple is less welcome than a group of 3. 204 263 \N \N \N 2026-01-31 13:31:53.68913 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 203, "evidence": "The system you have is stupid and discriminatory.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "Thank you for your response.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 204}], "unmapped": []} bf7a92434c577c6a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4284 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURjOW9UVlB3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.528908 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3933 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CONDITION ± 2 2 \N 0.80 every surface of the bathrooms was indeed really really wet 36 78 \N \N \N 2026-01-31 13:31:55.358619 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Nice and clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "mixed", "end_char": 78, "evidence": "every surface of the bathrooms was indeed really really wet", "intensity": 3, "primitive": "CONDITION", "confidence": 0.8, "start_char": 36}], "unmapped": []} 2c84e32360641d62 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3934 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS ± 2 2 \N 0.80 the bathrooms were clean... Just wet 164 196 \N \N \N 2026-01-31 13:31:58.909528 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 196, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 198}], "unmapped": []} d7f7910380474612 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3935 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_LEVEL - 2 2 \N 0.90 the drinks and tickets were expensive 43 73 \N \N \N 2026-01-31 13:31:58.912667 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 196, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 198}], "unmapped": []} d7f7910380474612 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3936 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 2 3 \N 0.90 the drinks were STRONG and what I could see of the performance was amazing 107 157 \N \N \N 2026-01-31 13:31:58.914045 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 196, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 198}], "unmapped": []} d7f7910380474612 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 2823 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURjMk9PWTN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.50 \N \N {"Empty Review"} \N \N 2026-01-31 04:06:23.88671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.5}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2828 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURzcVlmZmNBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 \N \N \N \N \N 2026-01-31 04:06:25.318598 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": null, "evidence": "", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": null}], "unmapped": []} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2829 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURNcjY2SGRBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty Review"} \N \N 2026-01-31 04:06:26.370677 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty Review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2830 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURNdzZtdEh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 04:06:27.177056 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2831 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNNdWJ6NzJRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review text"} \N \N 2026-01-31 04:06:28.238408 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review text", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 2836 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQwcVAyUzdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.90 \N \N {"Empty review"} \N \N 2026-01-31 04:06:29.335603 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Empty review", "evidence": "", "confidence": 0.9}]} e6c4516fb49d808f auto f19a68b9-cddc-4584-8e74-630ce1a6b24b 3937 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 2 3 \N 0.90 The staff was very nice and they were well equipped for anything 198 239 \N \N \N 2026-01-31 13:31:58.915545 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 196, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 198}], "unmapped": []} d7f7910380474612 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3938 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.90 That fact ruins the atmosphere. 98 121 \N \N \N 2026-01-31 13:32:01.577523 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 121, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "the dance DJs they book are pretty poor.", "confidence": 0.8}, {"label": "Overall Experience Rating", "evidence": "The reason for two stars", "confidence": 0.9}]} 81b679ea07736757 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3939 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 100% recommend to visit for a drag show or a live event. 66 103 \N \N \N 2026-01-31 13:32:01.579353 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 121, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "the dance DJs they book are pretty poor.", "confidence": 0.8}, {"label": "Overall Experience Rating", "evidence": "The reason for two stars", "confidence": 0.9}]} 81b679ea07736757 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5605 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Juguetería muy completa. 0 25 \N \N \N 2026-01-31 15:16:13.938682 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Personal atiende bien.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 25, "evidence": "Juguetería muy completa.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e0d4848b707b9be es e4f95d90-dbbe-439d-a0fd-f19088002f26 3940 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.80 the dance DJs they book are pretty poor. \N \N {"DJ Quality Complaint"} \N \N 2026-01-31 13:32:01.580545 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 121, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "the dance DJs they book are pretty poor.", "confidence": 0.8}, {"label": "Overall Experience Rating", "evidence": "The reason for two stars", "confidence": 0.9}]} 81b679ea07736757 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3941 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.90 The reason for two stars \N \N {"Overall Experience Rating"} \N \N 2026-01-31 13:32:01.581481 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 121, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "the dance DJs they book are pretty poor.", "confidence": 0.8}, {"label": "Overall Experience Rating", "evidence": "The reason for two stars", "confidence": 0.9}]} 81b679ea07736757 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3942 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 3 \N 0.90 I received my cocktail in a dirty glass 56 82 \N \N \N 2026-01-31 13:32:05.106021 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 240}], "unmapped": []} 53231551c3b0cf4b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3943 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.90 she didn’t measure the proportion, and I had a feeling that she dropped only leftovers 83 138 \N \N \N 2026-01-31 13:32:05.108432 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 240}], "unmapped": []} 53231551c3b0cf4b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3944 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 No respect to clients. Avoid her, awful experience. 202 238 \N \N \N 2026-01-31 13:32:05.110284 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 240}], "unmapped": []} 53231551c3b0cf4b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3945 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 1 2 \N 0.80 Though place is rather cozy 240 263 \N \N \N 2026-01-31 13:32:05.112192 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 82, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 240}], "unmapped": []} 53231551c3b0cf4b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3946 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 I loved this place. 81 95 \N \N \N 2026-01-31 13:32:07.661841 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "I loved this place.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome??", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 249a728e98f4e3f7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3947 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? 0 81 \N \N \N 2026-01-31 13:32:07.664867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "I loved this place.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome??", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 249a728e98f4e3f7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3948 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 FRICTION - 2 3 \N 0.80 They only have the phone scan option for the drink menu. 0 56 \N \N \N 2026-01-31 13:32:09.875118 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "They only have the phone scan option for the drink menu.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "I left immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 57}], "unmapped": []} 1dd5015e90fcded4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4574 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTeGF6dnlBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.83866 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 3949 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT - 3 3 \N 0.90 I left immediately. 57 73 \N \N \N 2026-01-31 13:32:09.879154 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "They only have the phone scan option for the drink menu.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "I left immediately.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 57}], "unmapped": []} 1dd5015e90fcded4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3950 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Nice place, great events! 0 30 \N \N \N 2026-01-31 13:32:11.049116 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Nice place, great events!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} adbcd17d7e6a30e9 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3951 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Greatest club in Litauen love it 0 34 \N \N \N 2026-01-31 13:32:13.927057 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Greatest club in Litauen love it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "best place to go and have fun perfect DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "SUPER FIVE STAR LIKE THE SOHO IN LONDON", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 74}], "unmapped": []} 20917b7bf09ef685 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3952 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 best place to go and have fun perfect DJ 35 73 \N \N \N 2026-01-31 13:32:13.929972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Greatest club in Litauen love it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "best place to go and have fun perfect DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "SUPER FIVE STAR LIKE THE SOHO IN LONDON", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 74}], "unmapped": []} 20917b7bf09ef685 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3953 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 3 3 \N 0.90 SUPER FIVE STAR LIKE THE SOHO IN LONDON 74 106 \N \N \N 2026-01-31 13:32:13.931923 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Greatest club in Litauen love it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "best place to go and have fun perfect DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "SUPER FIVE STAR LIKE THE SOHO IN LONDON", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 74}], "unmapped": []} 20917b7bf09ef685 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4919 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE Food_Dining.Cafe FOOD_DINING 1.2 RECOGNITION + 3 3 \N 0.90 a hidden gem where you can unwind in peace 145 182 \N \N \N 2026-01-31 15:01:50.821015 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "I highly recommend their latte!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Cozy interior, friendly staff, and delicious drinks", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "a hidden gem where you can unwind in peace", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} dbce1fbd023e2564 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 3954 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_FAIRNESS + 2 3 \N 0.90 Door charge plus coat check was 6 euros quite fair. 0 43 \N \N \N 2026-01-31 13:32:18.615178 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 93d5aa74d64b7f8c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4200 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Poprawne. 0 9 {too_short} \N \N 2026-01-31 13:36:23.832238 gpt-4o-mini {"reason": "too_short", "non_informative": true} 2e63e25e26f7ea90 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3955 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Not packed but great vibes love it. 44 70 \N \N \N 2026-01-31 13:32:18.618294 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 93d5aa74d64b7f8c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4002 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 we would like to comeback 157 174 \N \N \N 2026-01-31 13:33:03.569024 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "we would like to comeback", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "I gave it 5 stars for at least trying to be for the community", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 126}], "unmapped": []} 294efb58a0385703 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3956 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 2 3 \N 0.90 Friendly bartenders and ticket person. 71 101 \N \N \N 2026-01-31 13:32:18.636014 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 93d5aa74d64b7f8c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3957 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE + 2 2 \N 0.70 Music was good it was quite a mix so depends on your preference. 102 143 \N \N \N 2026-01-31 13:32:18.638793 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 93d5aa74d64b7f8c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3958 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 Definitely visit if you’re a foreigner. 144 174 \N \N \N 2026-01-31 13:32:18.645078 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 102}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 93d5aa74d64b7f8c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3959 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE ± 2 2 \N 0.80 a different kind of entertainment night 38 70 \N \N \N 2026-01-31 13:32:20.632313 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 70, "evidence": "a different kind of entertainment night", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 38}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "we didn't like their music very much", "intensity": 2, "primitive": "CRAFT", "confidence": 0.8, "start_char": 75}], "unmapped": []} a5e32a4a20f65f25 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3960 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 1 2 \N 0.80 we didn't like their music very much 75 101 \N \N \N 2026-01-31 13:32:20.633927 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 70, "evidence": "a different kind of entertainment night", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 38}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "we didn't like their music very much", "intensity": 2, "primitive": "CRAFT", "confidence": 0.8, "start_char": 75}], "unmapped": []} a5e32a4a20f65f25 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3961 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 really nice service 36 54 \N \N \N 2026-01-31 13:32:22.303972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "really nice service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "they was really helpfull found it and giving it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}], "unmapped": []} 52dc0daf11a81d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3962 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RELIABILITY + 3 3 \N 0.90 they was really helpfull found it and giving it back 70 107 \N \N \N 2026-01-31 13:32:22.305484 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "really nice service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "they was really helpfull found it and giving it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}], "unmapped": []} 52dc0daf11a81d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3963 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great queer club! 0 17 \N \N \N 2026-01-31 13:32:25.588405 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}], "unmapped": []} e286d8956000e86f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3964 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Excellent drinks 18 36 \N \N \N 2026-01-31 13:32:25.590798 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}], "unmapped": []} e286d8956000e86f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3965 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 cool staff 37 47 \N \N \N 2026-01-31 13:32:25.593624 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}], "unmapped": []} e286d8956000e86f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3966 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 good dance floor 51 65 \N \N \N 2026-01-31 13:32:25.595032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Great queer club!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Excellent drinks", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "cool staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "good dance floor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}], "unmapped": []} e286d8956000e86f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3967 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 good atmosphere 22 38 \N \N \N 2026-01-31 13:32:28.776787 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "good atmosphere", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "they contacted me the next day so I could come right over and get it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Definitely a place I’ll visit again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 138}], "unmapped": []} 03322f8b47b17b88 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3968 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RELIABILITY + 3 3 \N 0.90 they contacted me the next day so I could come right over and get it back 66 116 \N \N \N 2026-01-31 13:32:28.779524 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "good atmosphere", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "they contacted me the next day so I could come right over and get it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Definitely a place I’ll visit again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 138}], "unmapped": []} 03322f8b47b17b88 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3969 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 Definitely a place I’ll visit again 138 164 \N \N \N 2026-01-31 13:32:28.78142 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "good atmosphere", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "they contacted me the next day so I could come right over and get it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Definitely a place I’ll visit again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 138}], "unmapped": []} 03322f8b47b17b88 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3970 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 we missed the smile on staff’s faces 66 97 \N \N \N 2026-01-31 13:32:32.885799 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 184, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 270, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 348}, {"details": null, "valence": "positive", "end_char": 525, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3971 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS - 2 3 \N 0.90 the woman, who was working at the coat check rudely refused to give my coat back 134 184 \N \N \N 2026-01-31 13:32:32.888037 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 184, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 270, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 348}, {"details": null, "valence": "positive", "end_char": 525, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3972 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 COMPETENCE - 2 3 \N 0.90 a bartender did not even know what that is 236 270 \N \N \N 2026-01-31 13:32:32.892649 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 184, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 270, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 348}, {"details": null, "valence": "positive", "end_char": 525, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3973 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.90 the Dj was without experience and doesn’t understand the basics of Dj’ing 348 396 \N \N \N 2026-01-31 13:32:32.894443 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 184, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 270, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 348}, {"details": null, "valence": "positive", "end_char": 525, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3974 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 2 \N 0.90 the environment its self is pretty cozy and chill 487 525 \N \N \N 2026-01-31 13:32:32.8962 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 97, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 184, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 270, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 348}, {"details": null, "valence": "positive", "end_char": 525, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3977 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 the immaculate positive vibes 66 90 \N \N \N 2026-01-31 13:32:39.696672 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "impressed by the artistry, the effort, the professionalism", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 71d1ac896ff46944 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3978 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 I don’t think I’ve ever felt safer 104 132 \N \N \N 2026-01-31 13:32:39.699566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "impressed by the artistry, the effort, the professionalism", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 71d1ac896ff46944 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5670 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 really nice service 36 54 \N \N \N 2026-01-31 15:17:27.582671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "really nice service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "they was really helpfull found it and giving it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 52dc0daf11a81d33 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 3979 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Definitely go when you have time! 174 203 \N \N \N 2026-01-31 13:32:39.701083 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "impressed by the artistry, the effort, the professionalism", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 71d1ac896ff46944 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3980 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 impressed by the artistry, the effort, the professionalism 36 78 \N \N \N 2026-01-31 13:32:39.702437 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "impressed by the artistry, the effort, the professionalism", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}], "unmapped": []} 71d1ac896ff46944 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3981 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 relaxing athmosphere 43 64 \N \N \N 2026-01-31 13:32:42.722181 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "relaxing athmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Great place to relax", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Strong coctails", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0e68cc53e66b01f4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3982 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Great place to relax 0 20 \N \N \N 2026-01-31 13:32:42.726258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "relaxing athmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Great place to relax", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Strong coctails", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0e68cc53e66b01f4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3983 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Strong coctails 27 43 \N \N \N 2026-01-31 13:32:42.729307 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "relaxing athmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Great place to relax", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "Strong coctails", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 27}], "unmapped": []} 0e68cc53e66b01f4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3984 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 the club however definitely deserves a 4.5+ rating 202 239 \N \N \N 2026-01-31 13:32:46.164375 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 162, "evidence": "most these reviewers are tourists", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 130}], "unmapped": [{"label": "Tourist Interaction Advice", "evidence": "please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas.", "confidence": 0.6}]} c27f86d6e579506c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3985 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER ± 2 2 \N 0.80 the crowd there can seem overall rude 85 116 \N \N \N 2026-01-31 13:32:46.167162 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 162, "evidence": "most these reviewers are tourists", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 130}], "unmapped": [{"label": "Tourist Interaction Advice", "evidence": "please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas.", "confidence": 0.6}]} c27f86d6e579506c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3986 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ACKNOWLEDGMENT 0 1 2 \N 0.70 most these reviewers are tourists 130 162 \N \N \N 2026-01-31 13:32:46.16896 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 162, "evidence": "most these reviewers are tourists", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 130}], "unmapped": [{"label": "Tourist Interaction Advice", "evidence": "please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas.", "confidence": 0.6}]} c27f86d6e579506c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4278 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM4OUt5N3VBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.520686 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4279 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM4OUl6ZU9REAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.521909 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3987 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.60 please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. \N \N {"Tourist Interaction Advice"} \N \N 2026-01-31 13:32:46.1705 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 239, "evidence": "the club however definitely deserves a 4.5+ rating", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "the crowd there can seem overall rude", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "neutral", "end_char": 162, "evidence": "most these reviewers are tourists", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 130}], "unmapped": [{"label": "Tourist Interaction Advice", "evidence": "please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas.", "confidence": 0.6}]} c27f86d6e579506c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3988 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 1 2 \N 0.90 The staff were mostly friendly 174 203 \N \N \N 2026-01-31 13:32:50.393677 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 292}], "unmapped": []} 8742114c1c7aa17a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4285 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURjOUl5ek9nEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.530439 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3989 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ETHICS - 2 3 \N 0.90 this is one of the most blatant forms of discrimination 236 284 \N \N \N 2026-01-31 13:32:50.397681 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 292}], "unmapped": []} 8742114c1c7aa17a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3990 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 3 \N 0.70 it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement 83 164 \N \N \N 2026-01-31 13:32:50.399515 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 292}], "unmapped": []} 8742114c1c7aa17a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3991 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 3 \N 0.70 he was refused entry 292 310 \N \N \N 2026-01-31 13:32:50.401372 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 310, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 292}], "unmapped": []} 8742114c1c7aa17a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3992 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Amazing atmosphere 24 42 \N \N \N 2026-01-31 13:32:53.056979 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Everyone is Super friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Can’t wait to come again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 69}], "unmapped": []} 9f8c64f996af2152 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3993 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Everyone is Super friendly 43 68 \N \N \N 2026-01-31 13:32:53.05972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Everyone is Super friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Can’t wait to come again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 69}], "unmapped": []} 9f8c64f996af2152 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3994 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 Can’t wait to come again 69 90 \N \N \N 2026-01-31 13:32:53.06147 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Amazing atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Everyone is Super friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Can’t wait to come again", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 69}], "unmapped": []} 9f8c64f996af2152 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4003 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ACKNOWLEDGMENT + 3 3 \N 0.90 I gave it 5 stars for at least trying to be for the community 126 157 \N \N \N 2026-01-31 13:33:03.572777 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "we would like to comeback", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "I gave it 5 stars for at least trying to be for the community", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 126}], "unmapped": []} 294efb58a0385703 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4688 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package 0 0 \N \N \N 2026-01-31 14:48:56.022102 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "Great fun for all the family, carts to suit all ages and all are well maintained.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 770d0c7f47e793f7 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4689 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Great fun for all the family, carts to suit all ages and all are well maintained. 0 0 \N \N \N 2026-01-31 14:48:56.027293 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "Great fun for all the family, carts to suit all ages and all are well maintained.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 770d0c7f47e793f7 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4690 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights. 0 0 \N \N \N 2026-01-31 14:48:56.028906 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "Great fun for all the family, carts to suit all ages and all are well maintained.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 770d0c7f47e793f7 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4691 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 good value and I can confirm we got double the minutes for the same price 66 116 \N \N \N 2026-01-31 14:48:59.619776 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "good value and I can confirm we got double the minutes for the same price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Staff are friendly and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "We will definitely be returning before our holiday is over", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 151}], "unmapped": []} 9c1164ce1838bd88 en a510c278-87b9-45f4-9d0a-e60ff4f30662 3995 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Staff is very friendly! 24 45 \N \N \N 2026-01-31 13:32:56.293324 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Staff is very friendly!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Recomend to visit for everybody!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}], "unmapped": []} de183de7c192f6f1 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3996 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Recomend to visit for everybody! 82 111 \N \N \N 2026-01-31 13:32:56.297645 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Staff is very friendly!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Recomend to visit for everybody!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}], "unmapped": []} de183de7c192f6f1 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4046 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-42 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 2 3 \N 0.80 the security couldn't bounce him out right away 41 77 \N \N \N 2026-01-31 13:33:46.789409 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 86, "evidence": "i didn't feel safe that night", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 77, "evidence": "the security couldn't bounce him out right away", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 41}], "unmapped": [{"label": "harassment incident", "evidence": "i was harassed by a drunk man in Soho", "confidence": 0.7}]} 87fd7983ea8d0848 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3997 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ 49 82 \N \N \N 2026-01-31 13:32:56.299531 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Staff is very friendly!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Recomend to visit for everybody!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}], "unmapped": []} de183de7c192f6f1 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5607 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Facilidades de reserva 50 70 \N \N \N 2026-01-31 15:16:17.235404 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "precios económicos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Facilidades de reserva", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cd3bfc82f01074f es e4f95d90-dbbe-439d-a0fd-f19088002f26 3998 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY - 2 3 \N 0.90 it became not only a waste of money but more concerning, a fire hazard. 546 590 \N \N \N 2026-01-31 13:33:01.138099 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 590, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 546}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 628, "evidence": "I would not recommend going for any event they organise.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}, {"details": null, "valence": "negative", "end_char": 688, "evidence": "the event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 628}], "unmapped": []} 74db9a7bf96a0640 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 3999 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 3 \N 0.90 the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor 138 218 \N \N \N 2026-01-31 13:33:01.141136 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 590, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 546}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 628, "evidence": "I would not recommend going for any event they organise.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}, {"details": null, "valence": "negative", "end_char": 688, "evidence": "the event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 628}], "unmapped": []} 74db9a7bf96a0640 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4000 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND - 2 3 \N 0.90 I would not recommend going for any event they organise. 590 628 \N \N \N 2026-01-31 13:33:01.145014 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 590, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 546}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 628, "evidence": "I would not recommend going for any event they organise.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}, {"details": null, "valence": "negative", "end_char": 688, "evidence": "the event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 628}], "unmapped": []} 74db9a7bf96a0640 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4001 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 2 3 \N 0.90 the event was obviously so over-booked that it was impossible to have a remotely decent view of the stage. 628 688 \N \N \N 2026-01-31 13:33:01.146569 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 590, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 546}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "negative", "end_char": 628, "evidence": "I would not recommend going for any event they organise.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 590}, {"details": null, "valence": "negative", "end_char": 688, "evidence": "the event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 628}], "unmapped": []} 74db9a7bf96a0640 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4286 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURzOXF1TnhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.531453 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4287 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURzcHZtR2lBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.532518 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4004 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 good music, nice guys 30 50 \N \N \N 2026-01-31 13:33:06.925641 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "good music, nice guys", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "mixed", "end_char": 91, "evidence": "A little expensive the cocktails, but the entrance was very cheap", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Absolutely a good place to have a gay night in Vilnius", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} 322cc0435d8469c0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4005 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_LEVEL ± 2 2 \N 0.80 A little expensive the cocktails, but the entrance was very cheap 51 91 \N \N \N 2026-01-31 13:33:06.928503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "good music, nice guys", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "mixed", "end_char": 91, "evidence": "A little expensive the cocktails, but the entrance was very cheap", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Absolutely a good place to have a gay night in Vilnius", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} 322cc0435d8469c0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4006 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 Absolutely a good place to have a gay night in Vilnius 92 132 \N \N \N 2026-01-31 13:33:06.930372 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "good music, nice guys", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "mixed", "end_char": 91, "evidence": "A little expensive the cocktails, but the entrance was very cheap", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Absolutely a good place to have a gay night in Vilnius", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} 322cc0435d8469c0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4007 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 this club hit the mark! 66 83 \N \N \N 2026-01-31 13:33:09.724056 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "this club hit the mark!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "met some great, friendly people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "had a good night dancing, drinking, and having fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}], "unmapped": []} cd7b8c42da4fea36 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4008 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 met some great, friendly people 100 126 \N \N \N 2026-01-31 13:33:09.726173 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "this club hit the mark!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "met some great, friendly people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "had a good night dancing, drinking, and having fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}], "unmapped": []} cd7b8c42da4fea36 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4009 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 had a good night dancing, drinking, and having fun 130 164 \N \N \N 2026-01-31 13:33:09.728117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "this club hit the mark!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "met some great, friendly people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "had a good night dancing, drinking, and having fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}], "unmapped": []} cd7b8c42da4fea36 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4010 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 2 3 \N 0.90 the club was kept clean 56 76 \N \N \N 2026-01-31 13:33:12.388519 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "the club was kept clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "The music was a good mix, but too loud for the small room", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Bar service and coat service was good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 08b00936c10b2a2a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4288 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNzcllHR2xRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.533637 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4011 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE ± 2 2 \N 0.80 The music was a good mix, but too loud for the small room 78 116 \N \N \N 2026-01-31 13:33:12.390474 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "the club was kept clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "The music was a good mix, but too loud for the small room", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Bar service and coat service was good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 08b00936c10b2a2a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4502 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUR5em9uTlFREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Excelente variedad de juegos y juguetes 0 37 \N \N \N 2026-01-31 13:43:27.51891 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 37, "evidence": "Excelente variedad de juegos y juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d273b6d3a1766608 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4012 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 2 3 \N 0.90 Bar service and coat service was good 30 56 \N \N \N 2026-01-31 13:33:12.391755 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "the club was kept clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "The music was a good mix, but too loud for the small room", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Bar service and coat service was good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 08b00936c10b2a2a auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4013 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 this is the place you must visit if you are in Vilnius! 104 138 \N \N \N 2026-01-31 13:33:16.235208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4014 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Always good vibes. 27 44 \N \N \N 2026-01-31 13:33:16.239223 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4015 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Very polite and professional staff. 45 76 \N \N \N 2026-01-31 13:33:16.241185 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4016 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 They make the best events!!!! 77 102 \N \N \N 2026-01-31 13:33:16.242544 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4017 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AVAILABILITY - 2 3 \N 0.90 quite a few people couldn't even get into the area/room where they could see the show 66 134 \N \N \N 2026-01-31 13:33:18.613936 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "quite a few people couldn't even get into the area/room where they could see the show", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 276, "evidence": "It would be better to charge a little more for tickets instead of selling too many", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 218}], "unmapped": []} 44ced1ba5a80b7c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4018 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_FAIRNESS - 2 3 \N 0.90 It would be better to charge a little more for tickets instead of selling too many 218 276 \N \N \N 2026-01-31 13:33:18.617169 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "quite a few people couldn't even get into the area/room where they could see the show", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 276, "evidence": "It would be better to charge a little more for tickets instead of selling too many", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 218}], "unmapped": []} 44ced1ba5a80b7c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4019 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Great gay club in the city, lots of young people, music is also mostly really nice! 0 66 \N \N \N 2026-01-31 13:33:21.763359 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Great gay club in the city, lots of young people, music is also mostly really nice!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "bartenders could at least try to be friendly.", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "For the rest, it's a cool party!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 95}], "unmapped": []} ba73df9f9ca5438e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4020 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 1 2 \N 0.80 bartenders could at least try to be friendly. 66 95 \N \N \N 2026-01-31 13:33:21.76686 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Great gay club in the city, lots of young people, music is also mostly really nice!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "bartenders could at least try to be friendly.", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "For the rest, it's a cool party!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 95}], "unmapped": []} ba73df9f9ca5438e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4021 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 For the rest, it's a cool party! 95 116 \N \N \N 2026-01-31 13:33:21.768409 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Great gay club in the city, lots of young people, music is also mostly really nice!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "bartenders could at least try to be friendly.", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "For the rest, it's a cool party!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 95}], "unmapped": []} ba73df9f9ca5438e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4022 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Such a vibe! 0 10 \N \N \N 2026-01-31 13:33:24.94757 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I went back the day after", "intensity": 5, "primitive": "RERETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} 920c6eab116db000 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4023 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 the people were so friendly 40 66 \N \N \N 2026-01-31 13:33:24.950389 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I went back the day after", "intensity": 5, "primitive": "RERETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} 920c6eab116db000 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4534 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNNcVlfSFlREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 La mejor variedad en juguetes 0 30 \N \N \N 2026-01-31 13:44:12.085869 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "La mejor variedad en juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e885a35d105c2cbf auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4024 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 the drinks were strong 70 90 \N \N \N 2026-01-31 13:33:24.952368 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I went back the day after", "intensity": 5, "primitive": "RERETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} 920c6eab116db000 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4025 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED + 3 3 \N 0.90 I went back the day after 118 143 \N \N \N 2026-01-31 13:33:24.95419 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "I went back the day after", "intensity": 5, "primitive": "RERETURN_INTENT", "confidence": 0.9, "start_char": 118}], "unmapped": []} 920c6eab116db000 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4026 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_FAIRNESS - 2 3 \N 0.90 expensive and not worth your money 27 56 \N \N \N 2026-01-31 13:33:28.143543 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "expensive and not worth your money", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "Taste was weird and awful", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "we did not see what liquer was poured into the drinks, and if it was measured", "intensity": 4, "primitive": "CRAFT", "confidence": 0.8, "start_char": 83}], "unmapped": []} d3a2fe4e1718438d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4027 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE - 2 3 \N 0.90 Taste was weird and awful 116 139 \N \N \N 2026-01-31 13:33:28.14589 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "expensive and not worth your money", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "Taste was weird and awful", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "we did not see what liquer was poured into the drinks, and if it was measured", "intensity": 4, "primitive": "CRAFT", "confidence": 0.8, "start_char": 83}], "unmapped": []} d3a2fe4e1718438d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4028 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.80 we did not see what liquer was poured into the drinks, and if it was measured 83 139 \N \N \N 2026-01-31 13:33:28.147993 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "expensive and not worth your money", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "Taste was weird and awful", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "we did not see what liquer was poured into the drinks, and if it was measured", "intensity": 4, "primitive": "CRAFT", "confidence": 0.8, "start_char": 83}], "unmapped": []} d3a2fe4e1718438d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4029 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Such a great atmosphere 41 63 \N \N \N 2026-01-31 13:33:31.707199 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Such a great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "staff is extremely friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 35, "evidence": "The best place in Vilnius to party", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 29d2e0ae936ef9c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4575 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURTa3JuQ1hBEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.839258 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4030 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 staff is extremely friendly 64 90 \N \N \N 2026-01-31 13:33:31.711083 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Such a great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "staff is extremely friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 35, "evidence": "The best place in Vilnius to party", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 29d2e0ae936ef9c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4031 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 The best place in Vilnius to party 0 35 \N \N \N 2026-01-31 13:33:31.712907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Such a great atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "staff is extremely friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 35, "evidence": "The best place in Vilnius to party", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 29d2e0ae936ef9c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4289 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURNek1udkRBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.534933 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4032 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND - 2 3 \N 0.90 this place sucks 36 49 \N \N \N 2026-01-31 13:33:34.435078 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 49, "evidence": "this place sucks", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 27, "evidence": "Weak drinks", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "rude DJs", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "bad music no one enjoys", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}], "unmapped": []} 8a52e93156c7e433 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4033 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 2 \N 0.90 Weak drinks 16 27 \N \N \N 2026-01-31 13:33:34.437495 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 49, "evidence": "this place sucks", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 27, "evidence": "Weak drinks", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "rude DJs", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "bad music no one enjoys", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}], "unmapped": []} 8a52e93156c7e433 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4034 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 rude DJs 30 38 \N \N \N 2026-01-31 13:33:34.4391 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 49, "evidence": "this place sucks", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 27, "evidence": "Weak drinks", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "rude DJs", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "bad music no one enjoys", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}], "unmapped": []} 8a52e93156c7e433 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4035 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.90 bad music no one enjoys 42 63 \N \N \N 2026-01-31 13:33:34.440775 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 49, "evidence": "this place sucks", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 27, "evidence": "Weak drinks", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "negative", "end_char": 38, "evidence": "rude DJs", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 63, "evidence": "bad music no one enjoys", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 42}], "unmapped": []} 8a52e93156c7e433 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4503 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVZ2FDeXB3RRAB Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE 0 2 2 \N 0.70 nada llamativa 20 36 \N \N \N 2026-01-31 13:43:29.383766 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 36, "evidence": "nada llamativa", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 20}], "unmapped": [{"label": "General sentiment", "evidence": "De toda la vida.", "confidence": 0.5}]} c547b63e9ee62384 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4036 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great club for gay and not so. 0 30 \N \N \N 2026-01-31 13:33:36.570282 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great club for gay and not so.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Dramatica show blew... my mind.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 31}], "unmapped": []} 424b08e86a14e324 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4037 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Dramatica show blew... my mind. 31 61 \N \N \N 2026-01-31 13:33:36.572212 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great club for gay and not so.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Dramatica show blew... my mind.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 31}], "unmapped": []} 424b08e86a14e324 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4038 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-40 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Really liked the atmosphere. 34 58 \N \N \N 2026-01-31 13:33:39.370567 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "Really liked the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Barmaids are really friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "I had lost my phone and you guys just picked it up and saved my night", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 84}], "unmapped": []} 16359e12da701779 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4060 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-47 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY + 2 3 \N 0.90 After negative opinion kindly Bartender served us free better one long islands. 66 116 \N \N \N 2026-01-31 13:34:00.666294 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "After negative opinion kindly Bartender served us free better one long islands.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 66, "evidence": "The worst long island on the Planet!....But the best reaction ever!", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": []} 369bd93e204f09a4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4039 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-40 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Barmaids are really friendly 60 82 \N \N \N 2026-01-31 13:33:39.371972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "Really liked the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Barmaids are really friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "I had lost my phone and you guys just picked it up and saved my night", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 84}], "unmapped": []} 16359e12da701779 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4040 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-40 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOVERY + 3 3 \N 0.90 I had lost my phone and you guys just picked it up and saved my night 84 130 \N \N \N 2026-01-31 13:33:39.372964 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "Really liked the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Barmaids are really friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "I had lost my phone and you guys just picked it up and saved my night", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 84}], "unmapped": []} 16359e12da701779 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4041 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 enjoy the atmosphere 63 82 \N \N \N 2026-01-31 13:33:42.674711 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "enjoy the atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 8c5972b306c46d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4042 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 Safe 36 40 \N \N \N 2026-01-31 13:33:42.678047 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "enjoy the atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 8c5972b306c46d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4043 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 friendly 41 48 \N \N \N 2026-01-31 13:33:42.679822 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "enjoy the atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 8c5972b306c46d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4044 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Huge recomendations! 83 104 \N \N \N 2026-01-31 13:33:42.681098 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "enjoy the atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 40, "evidence": "Safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} 8c5972b306c46d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4045 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-42 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY - 2 3 \N 0.90 i didn't feel safe that night 66 86 \N \N \N 2026-01-31 13:33:46.78672 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 86, "evidence": "i didn't feel safe that night", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 77, "evidence": "the security couldn't bounce him out right away", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 41}], "unmapped": [{"label": "harassment incident", "evidence": "i was harassed by a drunk man in Soho", "confidence": 0.7}]} 87fd7983ea8d0848 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4290 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNNbzRqSmdnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.536691 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4291 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMwNV9pcFB3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.537654 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4047 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-42 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 i was harassed by a drunk man in Soho \N \N {"harassment incident"} \N \N 2026-01-31 13:33:46.790948 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 86, "evidence": "i didn't feel safe that night", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 77, "evidence": "the security couldn't bounce him out right away", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 41}], "unmapped": [{"label": "harassment incident", "evidence": "i was harassed by a drunk man in Soho", "confidence": 0.7}]} 87fd7983ea8d0848 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4048 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Some very nice people. 0 22 \N \N \N 2026-01-31 13:33:49.552086 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Several big rooms, and good prices on drinks.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4c62336a0ef8d0c3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5749 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-40 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOVERY + 3 3 \N 0.90 I had lost my phone and you guys just picked it up and saved my night 84 134 \N \N \N 2026-01-31 15:18:50.059004 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Really liked the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Barmaids are really friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "I had lost my phone and you guys just picked it up and saved my night", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 84}], "unmapped": []} 16359e12da701779 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4049 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Several big rooms, and good prices on drinks. 23 66 \N \N \N 2026-01-31 13:33:49.554453 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Several big rooms, and good prices on drinks.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4c62336a0ef8d0c3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4050 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 Friendly and safe. 67 84 \N \N \N 2026-01-31 13:33:49.556634 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Several big rooms, and good prices on drinks.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4c62336a0ef8d0c3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4051 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Loved it. 85 92 \N \N \N 2026-01-31 13:33:49.557937 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Several big rooms, and good prices on drinks.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4c62336a0ef8d0c3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4052 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-44 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY 0 1 1 \N 0.90 Response from the owner 0 24 \N \N \N 2026-01-31 13:33:50.843936 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 24, "evidence": "Response from the owner", "intensity": 1, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8dd733145dba57d9 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4053 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-45 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Love the place as such, decoration, music, drinks, people, all perfect 56 106 \N \N \N 2026-01-31 13:33:53.99175 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Love the place as such, decoration, music, drinks, people, all perfect", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "The owner is such a nice person with such great ideas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Simply love this place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 219f699dc19d01a2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4061 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-47 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND ± 2 2 \N 0.70 The worst long island on the Planet!....But the best reaction ever! 0 66 \N \N \N 2026-01-31 13:34:00.668181 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "After negative opinion kindly Bartender served us free better one long islands.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "mixed", "end_char": 66, "evidence": "The worst long island on the Planet!....But the best reaction ever!", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": []} 369bd93e204f09a4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4054 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-45 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 The owner is such a nice person with such great ideas 30 73 \N \N \N 2026-01-31 13:33:53.994692 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Love the place as such, decoration, music, drinks, people, all perfect", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "The owner is such a nice person with such great ideas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Simply love this place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 219f699dc19d01a2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4055 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-45 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Simply love this place 0 20 \N \N \N 2026-01-31 13:33:53.997124 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Love the place as such, decoration, music, drinks, people, all perfect", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "The owner is such a nice person with such great ideas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Simply love this place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 219f699dc19d01a2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4056 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Very friendly staff 0 20 \N \N \N 2026-01-31 13:33:57.986802 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}], "unmapped": []} 45bd9c1288c9e01d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4057 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE + 2 3 \N 0.80 good drinks 22 34 \N \N \N 2026-01-31 13:33:57.989845 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}], "unmapped": []} 45bd9c1288c9e01d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4692 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Staff are friendly and helpful 45 73 \N \N \N 2026-01-31 14:48:59.627833 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "good value and I can confirm we got double the minutes for the same price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Staff are friendly and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "We will definitely be returning before our holiday is over", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 151}], "unmapped": []} 9c1164ce1838bd88 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4058 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 3 3 \N 0.90 the club was very clean 36 59 \N \N \N 2026-01-31 13:33:57.992066 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}], "unmapped": []} 45bd9c1288c9e01d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4059 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 The Dramatica Show was amazing! 61 87 \N \N \N 2026-01-31 13:33:57.994737 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.8, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 87, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 61}], "unmapped": []} 45bd9c1288c9e01d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4062 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 I highly recommend visiting this place! 83 116 \N \N \N 2026-01-31 13:34:04.073907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4063 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 atmosphere is great 54 73 \N \N \N 2026-01-31 13:34:04.077186 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4576 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpM09md3NBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.839863 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4064 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Cocktails are the best 38 59 \N \N \N 2026-01-31 13:34:04.079252 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4065 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY + 3 3 \N 0.90 worth visiting! 27 43 \N \N \N 2026-01-31 13:34:04.080918 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 59, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4066 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-49 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 2 \N 0.90 great atmosphere 22 39 \N \N \N 2026-01-31 13:34:06.308741 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "great atmosphere", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 60, "evidence": "very slow bar service", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 41}], "unmapped": []} a1a2c5f766454902 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4067 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-49 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SPEED - 1 2 \N 0.90 very slow bar service 41 60 \N \N \N 2026-01-31 13:34:06.311656 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "great atmosphere", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 60, "evidence": "very slow bar service", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 41}], "unmapped": []} a1a2c5f766454902 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4068 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.90 Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country. \N \N {"Review Content"} \N \N 2026-01-31 13:34:07.707546 gpt-4o-mini {"spans": [], "unmapped": [{"label": "Review Content", "evidence": "Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country.", "confidence": 0.9}]} 2d6aca1f82a2c31b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4069 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 People who working there very friendly and polite 36 76 \N \N \N 2026-01-31 13:34:09.752675 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "People who working there very friendly and polite", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "Nice friendly club", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} eae4e4b0ca7fecce auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4072 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 outstanding service from the bartender 56 85 \N \N \N 2026-01-31 13:34:11.683689 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "the atmosphere is welcoming", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "outstanding service from the bartender", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b7df41b92a74a38f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4073 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 3 3 \N 0.90 management take care of customer concerns 27 61 \N \N \N 2026-01-31 13:34:14.119011 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "management take care of customer concerns", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "this is a great place to spend a friday", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 75}], "unmapped": []} a91db0cb838e6184 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4535 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUMwNTk2WUlnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Me encanta 0 10 \N \N \N 2026-01-31 13:44:13.294561 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Me encanta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 559ac2731634e41e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4074 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 this is a great place to spend a friday 75 104 \N \N \N 2026-01-31 13:34:14.123455 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "management take care of customer concerns", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "this is a great place to spend a friday", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 75}], "unmapped": []} a91db0cb838e6184 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4075 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Excellent music and atmosphere 0 30 \N \N \N 2026-01-31 13:34:15.358041 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Excellent music and atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} d3468b238cd28dfc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4076 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Loved loved loved. 42 58 \N \N \N 2026-01-31 13:34:16.57323 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "Loved loved loved.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 42}], "unmapped": []} 9209a2b1676a5ee8 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4077 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Best place 27 36 \N \N \N 2026-01-31 13:34:18.577634 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Best place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "Nice stuff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}], "unmapped": []} bf0a1354a9e74d17 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4078 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Nice stuff 37 47 \N \N \N 2026-01-31 13:34:18.579848 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Best place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "Nice stuff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}], "unmapped": []} bf0a1354a9e74d17 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4079 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 I want to come back! 0 20 \N \N \N 2026-01-31 13:34:20.544532 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "I want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Great place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 21}], "unmapped": []} b368556f1f8b5fcc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4080 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Great place. 21 34 \N \N \N 2026-01-31 13:34:20.5478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "I want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "Great place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 21}], "unmapped": []} b368556f1f8b5fcc auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4081 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 kind bartender 15 30 \N \N \N 2026-01-31 13:34:23.451543 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "kind bartender", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "loved it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Super service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e856907b95bb4ab5 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4292 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURrLUs3RnFBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.538573 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4082 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 loved it! 31 39 \N \N \N 2026-01-31 13:34:23.453702 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "kind bartender", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "loved it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Super service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e856907b95bb4ab5 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4083 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY + 3 3 \N 0.90 Super service 0 12 \N \N \N 2026-01-31 13:34:23.455022 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "kind bartender", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "loved it!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Super service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e856907b95bb4ab5 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4084 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Worth visiting, best music!? 0 36 \N \N \N 2026-01-31 13:34:24.936363 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Worth visiting, best music!?", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ff0879d55cb1eb80 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4085 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Good music for dancing 0 24 \N \N \N 2026-01-31 13:34:27.008944 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Good music for dancing", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "wide choice of cocktails", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 26}], "unmapped": []} 28c71a05b1bd9bac auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4086 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE + 3 3 \N 0.90 wide choice of cocktails 26 50 \N \N \N 2026-01-31 13:34:27.011581 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Good music for dancing", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "wide choice of cocktails", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 26}], "unmapped": []} 28c71a05b1bd9bac auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4087 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 3 3 \N 0.90 the guy with the style, who actually cares about the place 37 79 \N \N \N 2026-01-31 13:34:28.208526 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 79, "evidence": "the guy with the style, who actually cares about the place", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 37}], "unmapped": []} 02fce67d6e7f4b33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4088 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 safe 18 22 \N \N \N 2026-01-31 13:34:30.134859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 14, "evidence": "fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}], "unmapped": []} 77dd134a9b4af027 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4089 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 fun 10 14 \N \N \N 2026-01-31 13:34:30.138097 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "safe", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 14, "evidence": "fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}], "unmapped": []} 77dd134a9b4af027 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4090 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 1 2 \N 0.90 Nice gay club. 0 15 \N \N \N 2026-01-31 13:34:32.748939 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Nice gay club.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "neutral", "end_char": 42, "evidence": "I rather pop music but its ok.", "intensity": 1, "primitive": "TASTE", "confidence": 0.7, "start_char": 16}], "unmapped": []} e90aca2e99d4c2ed auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4091 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE 0 1 1 \N 0.70 I rather pop music but its ok. 16 42 \N \N \N 2026-01-31 13:34:32.751854 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 15, "evidence": "Nice gay club.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "neutral", "end_char": 42, "evidence": "I rather pop music but its ok.", "intensity": 1, "primitive": "TASTE", "confidence": 0.7, "start_char": 16}], "unmapped": []} e90aca2e99d4c2ed auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4293 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURZbGEtX2JREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.539298 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4536 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJbHBTekhBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Buena 0 5 \N \N \N 2026-01-31 13:44:14.705859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 5, "evidence": "Buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f4effe78e853f481 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4103 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE ± 2 2 \N 0.80 atmosferą kaip ir gera, bet atbaido muzika 0 80 \N \N \N 2026-01-31 13:34:45.178718 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 80, "evidence": "atmosferą kaip ir gera, bet atbaido muzika", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "mokama po 6€ (mūsų tarkim 4) -24€", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 162}, {"details": null, "valence": "mixed", "end_char": 80, "evidence": "labai norim ten grįsti nes atmosferą kaip ir gera", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": [{"label": "music dissatisfaction", "evidence": "atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo", "confidence": 0.6}, {"label": "repetitive songs", "evidence": "tas pačias dainas per kelias valandas jau po kelis kartus girdejom", "confidence": 0.6}]} fd7824fb8306cd07 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4104 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY - 2 2 \N 0.70 mokama po 6€ (mūsų tarkim 4) -24€ 162 186 \N \N \N 2026-01-31 13:34:45.183159 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 80, "evidence": "atmosferą kaip ir gera, bet atbaido muzika", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "mokama po 6€ (mūsų tarkim 4) -24€", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 162}, {"details": null, "valence": "mixed", "end_char": 80, "evidence": "labai norim ten grįsti nes atmosferą kaip ir gera", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": [{"label": "music dissatisfaction", "evidence": "atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo", "confidence": 0.6}, {"label": "repetitive songs", "evidence": "tas pačias dainas per kelias valandas jau po kelis kartus girdejom", "confidence": 0.6}]} fd7824fb8306cd07 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4105 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND ± 2 2 \N 0.70 labai norim ten grįsti nes atmosferą kaip ir gera 0 80 \N \N \N 2026-01-31 13:34:45.184697 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 80, "evidence": "atmosferą kaip ir gera, bet atbaido muzika", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "mokama po 6€ (mūsų tarkim 4) -24€", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 162}, {"details": null, "valence": "mixed", "end_char": 80, "evidence": "labai norim ten grįsti nes atmosferą kaip ir gera", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": [{"label": "music dissatisfaction", "evidence": "atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo", "confidence": 0.6}, {"label": "repetitive songs", "evidence": "tas pačias dainas per kelias valandas jau po kelis kartus girdejom", "confidence": 0.6}]} fd7824fb8306cd07 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4693 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT + 3 3 \N 0.90 We will definitely be returning before our holiday is over 151 194 \N \N \N 2026-01-31 14:48:59.630501 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "good value and I can confirm we got double the minutes for the same price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Staff are friendly and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 194, "evidence": "We will definitely be returning before our holiday is over", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 151}], "unmapped": []} 9c1164ce1838bd88 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4106 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.60 atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo \N \N {"music dissatisfaction"} \N \N 2026-01-31 13:34:45.186157 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 80, "evidence": "atmosferą kaip ir gera, bet atbaido muzika", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "mokama po 6€ (mūsų tarkim 4) -24€", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 162}, {"details": null, "valence": "mixed", "end_char": 80, "evidence": "labai norim ten grįsti nes atmosferą kaip ir gera", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": [{"label": "music dissatisfaction", "evidence": "atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo", "confidence": 0.6}, {"label": "repetitive songs", "evidence": "tas pačias dainas per kelias valandas jau po kelis kartus girdejom", "confidence": 0.6}]} fd7824fb8306cd07 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5671 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RELIABILITY + 3 3 \N 0.90 they was really helpfull found it and giving it back 56 92 \N \N \N 2026-01-31 15:17:27.586334 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "really nice service", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "they was really helpfull found it and giving it back", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 56}], "unmapped": []} 52dc0daf11a81d33 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4107 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.60 tas pačias dainas per kelias valandas jau po kelis kartus girdejom \N \N {"repetitive songs"} \N \N 2026-01-31 13:34:45.187625 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 80, "evidence": "atmosferą kaip ir gera, bet atbaido muzika", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "mokama po 6€ (mūsų tarkim 4) -24€", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 162}, {"details": null, "valence": "mixed", "end_char": 80, "evidence": "labai norim ten grįsti nes atmosferą kaip ir gera", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 0}], "unmapped": [{"label": "music dissatisfaction", "evidence": "atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo", "confidence": 0.6}, {"label": "repetitive songs", "evidence": "tas pačias dainas per kelias valandas jau po kelis kartus girdejom", "confidence": 0.6}]} fd7824fb8306cd07 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4108 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS - 2 3 \N 0.90 ele começou a dizer que não podíamos entrar 166 196 \N \N \N 2026-01-31 13:34:49.123951 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 196, "evidence": "ele começou a dizer que não podíamos entrar", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "negative", "end_char": 397, "evidence": "um pouco receosos em relação ao segurança", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 368}, {"details": null, "valence": "negative", "end_char": 590, "evidence": "a balada fede a suor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 570}], "unmapped": [{"label": "Cultural Misunderstanding", "evidence": "não falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\"", "confidence": 0.7}, {"label": "Strange Experience", "evidence": "Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa", "confidence": 0.7}]} 062ab37a2dd5defb auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4109 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY - 2 3 \N 0.90 um pouco receosos em relação ao segurança 368 397 \N \N \N 2026-01-31 13:34:49.126236 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 196, "evidence": "ele começou a dizer que não podíamos entrar", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "negative", "end_char": 397, "evidence": "um pouco receosos em relação ao segurança", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 368}, {"details": null, "valence": "negative", "end_char": 590, "evidence": "a balada fede a suor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 570}], "unmapped": [{"label": "Cultural Misunderstanding", "evidence": "não falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\"", "confidence": 0.7}, {"label": "Strange Experience", "evidence": "Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa", "confidence": 0.7}]} 062ab37a2dd5defb auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4110 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 3 \N 0.90 a balada fede a suor 570 590 \N \N \N 2026-01-31 13:34:49.128107 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 196, "evidence": "ele começou a dizer que não podíamos entrar", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "negative", "end_char": 397, "evidence": "um pouco receosos em relação ao segurança", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 368}, {"details": null, "valence": "negative", "end_char": 590, "evidence": "a balada fede a suor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 570}], "unmapped": [{"label": "Cultural Misunderstanding", "evidence": "não falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\"", "confidence": 0.7}, {"label": "Strange Experience", "evidence": "Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa", "confidence": 0.7}]} 062ab37a2dd5defb auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5191 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 2 \N 0.80 me contestan pues ya lo sabes 164 185 \N \N \N 2026-01-31 15:08:12.678565 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 185, "evidence": "me contestan pues ya lo sabes", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "Poco profesionales", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}], "unmapped": [{"label": "Service Delay", "evidence": "5 días después me llama un vecino que está mojándose el coche la avería", "confidence": 0.6}]} c0aa3c745dcda2b8 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4415 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNVczctd2FREAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL + 3 3 \N 0.90 'Oi esa precio side' 0 20 \N \N \N 2026-01-31 13:41:39.140734 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "'Oi esa precio side'", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} 177e796a7fbc8a8f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4927 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 I recommend this place 54 75 \N \N \N 2026-01-31 15:02:01.680085 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "I recommend this place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "very tasty cheesecake", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "excellent service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 45}], "unmapped": []} b161a8bdd3620910 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4294 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURnb01XcURREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.540054 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4111 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 não falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo "nao" \N \N {"Cultural Misunderstanding"} \N \N 2026-01-31 13:34:49.130114 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 196, "evidence": "ele começou a dizer que não podíamos entrar", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "negative", "end_char": 397, "evidence": "um pouco receosos em relação ao segurança", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 368}, {"details": null, "valence": "negative", "end_char": 590, "evidence": "a balada fede a suor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 570}], "unmapped": [{"label": "Cultural Misunderstanding", "evidence": "não falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\"", "confidence": 0.7}, {"label": "Strange Experience", "evidence": "Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa", "confidence": 0.7}]} 062ab37a2dd5defb auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4112 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa \N \N {"Strange Experience"} \N \N 2026-01-31 13:34:49.131754 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 196, "evidence": "ele começou a dizer que não podíamos entrar", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "negative", "end_char": 397, "evidence": "um pouco receosos em relação ao segurança", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 368}, {"details": null, "valence": "negative", "end_char": 590, "evidence": "a balada fede a suor", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 570}], "unmapped": [{"label": "Cultural Misunderstanding", "evidence": "não falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\"", "confidence": 0.7}, {"label": "Strange Experience", "evidence": "Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa", "confidence": 0.7}]} 062ab37a2dd5defb auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4113 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.90 Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą. 1165 1260 \N \N \N 2026-01-31 13:34:54.785953 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 1260, "evidence": "Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 1165}, {"details": null, "valence": "negative", "end_char": 1095, "evidence": "Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 1040}, {"details": null, "valence": "negative", "end_char": 1395, "evidence": "Smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio.", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 1305}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} cc1c764b4d256394 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4114 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 COMMUNICATION - 2 2 \N 0.90 Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties. 1040 1095 \N \N \N 2026-01-31 13:34:54.788694 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 1260, "evidence": "Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 1165}, {"details": null, "valence": "negative", "end_char": 1095, "evidence": "Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 1040}, {"details": null, "valence": "negative", "end_char": 1395, "evidence": "Smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio.", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 1305}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} cc1c764b4d256394 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4120 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ACKNOWLEDGMENT - 3 3 \N 0.90 tikiuosi, kad klubas rimtai įvertins saugumo klausimus 228 267 \N \N \N 2026-01-31 13:35:00.321235 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 142, "evidence": "situacija buvo itin pavojinga", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "tikiuosi, kad klubas rimtai įvertins saugumo klausimus", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 228}], "unmapped": []} b4c8aabbc7dd9e47 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4115 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 1 2 \N 0.80 Smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. 1305 1395 \N \N \N 2026-01-31 13:34:54.790178 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 1260, "evidence": "Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 1165}, {"details": null, "valence": "negative", "end_char": 1095, "evidence": "Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 1040}, {"details": null, "valence": "negative", "end_char": 1395, "evidence": "Smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio.", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 1305}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} cc1c764b4d256394 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4116 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 2 2 \N 0.90 nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. 0 92 \N \N \N 2026-01-31 13:34:54.79149 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 1260, "evidence": "Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 1165}, {"details": null, "valence": "negative", "end_char": 1095, "evidence": "Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 1040}, {"details": null, "valence": "negative", "end_char": 1395, "evidence": "Smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio.", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 1305}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} cc1c764b4d256394 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4117 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY - 3 3 \N 0.90 situacija buvo itin pavojinga 116 142 \N \N \N 2026-01-31 13:35:00.31588 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 142, "evidence": "situacija buvo itin pavojinga", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "tikiuosi, kad klubas rimtai įvertins saugumo klausimus", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 228}], "unmapped": []} b4c8aabbc7dd9e47 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4577 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURpdVBIOGZnEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.84047 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4118 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RELIABILITY - 3 3 \N 0.90 tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių 144 189 \N \N \N 2026-01-31 13:35:00.318023 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 142, "evidence": "situacija buvo itin pavojinga", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "tikiuosi, kad klubas rimtai įvertins saugumo klausimus", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 228}], "unmapped": []} b4c8aabbc7dd9e47 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4119 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 3 3 \N 0.90 žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė 190 227 \N \N \N 2026-01-31 13:35:00.320139 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 142, "evidence": "situacija buvo itin pavojinga", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "tikiuosi, kad klubas rimtai įvertins saugumo klausimus", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 228}], "unmapped": []} b4c8aabbc7dd9e47 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4295 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNBdmF1VFdBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:36:41.540801 gpt-4o-mini {"reason": "empty", "non_informative": true} d27a30e98e084bdf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4121 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 HONESTY - 2 3 \N 0.90 labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą 292 353 \N \N \N 2026-01-31 13:35:05.890204 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 353, "evidence": "labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 611}, {"details": null, "valence": "negative", "end_char": 1104, "evidence": "toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1047}], "unmapped": [{"label": "Discrimination Experience", "evidence": "mums buvo liepta susimokėti... nemokamai įleido žmones be jokių kostiumų ar makiažų", "confidence": 0.8}, {"label": "Inconsistent Policy", "evidence": "nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti", "confidence": 0.7}]} 30d5f711561a1a84 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4122 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ETHICS - 3 3 \N 0.90 liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų 611 661 \N \N \N 2026-01-31 13:35:05.892937 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 353, "evidence": "labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 611}, {"details": null, "valence": "negative", "end_char": 1104, "evidence": "toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1047}], "unmapped": [{"label": "Discrimination Experience", "evidence": "mums buvo liepta susimokėti... nemokamai įleido žmones be jokių kostiumų ar makiažų", "confidence": 0.8}, {"label": "Inconsistent Policy", "evidence": "nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti", "confidence": 0.7}]} 30d5f711561a1a84 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 5750 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Huge recomendations! 85 104 \N \N \N 2026-01-31 15:18:52.86899 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "pleasant to stay at an enjoy the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Safe, friendly, stylish", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8c5972b306c46d33 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4123 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 2 3 \N 0.90 toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas 1047 1104 \N \N \N 2026-01-31 13:35:05.894305 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 353, "evidence": "labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 611}, {"details": null, "valence": "negative", "end_char": 1104, "evidence": "toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1047}], "unmapped": [{"label": "Discrimination Experience", "evidence": "mums buvo liepta susimokėti... nemokamai įleido žmones be jokių kostiumų ar makiažų", "confidence": 0.8}, {"label": "Inconsistent Policy", "evidence": "nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti", "confidence": 0.7}]} 30d5f711561a1a84 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4124 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.80 mums buvo liepta susimokėti... nemokamai įleido žmones be jokių kostiumų ar makiažų \N \N {"Discrimination Experience"} \N \N 2026-01-31 13:35:05.896114 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 353, "evidence": "labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 611}, {"details": null, "valence": "negative", "end_char": 1104, "evidence": "toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1047}], "unmapped": [{"label": "Discrimination Experience", "evidence": "mums buvo liepta susimokėti... nemokamai įleido žmones be jokių kostiumų ar makiažų", "confidence": 0.8}, {"label": "Inconsistent Policy", "evidence": "nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti", "confidence": 0.7}]} 30d5f711561a1a84 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4694 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 highly recommended for a fun afternoon 107 139 \N \N \N 2026-01-31 14:49:03.588813 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "highly recommended for a fun afternoon", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 71, "evidence": "Great value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "friendly team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Great circuit for all ages", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 45d4d22009f6db2f en a510c278-87b9-45f4-9d0a-e60ff4f30662 4125 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti \N \N {"Inconsistent Policy"} \N \N 2026-01-31 13:35:05.898011 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 353, "evidence": "labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 661, "evidence": "liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 611}, {"details": null, "valence": "negative", "end_char": 1104, "evidence": "toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1047}], "unmapped": [{"label": "Discrimination Experience", "evidence": "mums buvo liepta susimokėti... nemokamai įleido žmones be jokių kostiumų ar makiažų", "confidence": 0.8}, {"label": "Inconsistent Policy", "evidence": "nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti", "confidence": 0.7}]} 30d5f711561a1a84 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4126 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ETHICS - 2 3 \N 0.90 "ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja" 66 104 \N \N \N 2026-01-31 13:35:09.611358 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 104, "evidence": "\\"ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "\\"po tokio malonaus elgesio?\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "Complaint about misleading advertising", "evidence": "\\"Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas\\"", "confidence": 0.9}]} afb616ed73605a32 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4127 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 2 3 \N 0.80 "po tokio malonaus elgesio?" 138 162 \N \N \N 2026-01-31 13:35:09.614444 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 104, "evidence": "\\"ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "\\"po tokio malonaus elgesio?\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "Complaint about misleading advertising", "evidence": "\\"Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas\\"", "confidence": 0.9}]} afb616ed73605a32 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4128 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.90 "Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe" kostiumais nemokamas įėjimas" \N \N {"Complaint about misleading advertising"} \N \N 2026-01-31 13:35:09.616186 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 104, "evidence": "\\"ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja\\"", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "\\"po tokio malonaus elgesio?\\"", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 138}], "unmapped": [{"label": "Complaint about misleading advertising", "evidence": "\\"Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas\\"", "confidence": 0.9}]} afb616ed73605a32 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4129 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 2 2 \N 0.90 Le personnel est très accueillant et gentil. 112 144 \N \N \N 2026-01-31 13:35:13.057264 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "Le personnel est très accueillant et gentil.", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "neutral", "end_char": 83, "evidence": "Le public est varié. Quelques filles aussi.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Contents d y être allé pour supporter un établissement LGBT", "intensity": 3, "primitive": "RETURN_INTENT", "confidence": 0.8, "start_char": 145}], "unmapped": []} 6f1f65f43a791951 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4130 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE 0 2 2 \N 0.70 Le public est varié. Quelques filles aussi. 56 83 \N \N \N 2026-01-31 13:35:13.05977 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "Le personnel est très accueillant et gentil.", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "neutral", "end_char": 83, "evidence": "Le public est varié. Quelques filles aussi.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Contents d y être allé pour supporter un établissement LGBT", "intensity": 3, "primitive": "RETURN_INTENT", "confidence": 0.8, "start_char": 145}], "unmapped": []} 6f1f65f43a791951 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4154 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_LEVEL - 1 2 \N 0.90 la estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato. 0 78 \N \N \N 2026-01-31 13:35:36.385664 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 70, "evidence": "El ambiente y la música regular.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 45}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "la estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} 798fca71fae5fc01 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4131 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 2 2 \N 0.80 Contents d y être allé pour supporter un établissement LGBT 145 186 \N \N \N 2026-01-31 13:35:13.061465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "Le personnel est très accueillant et gentil.", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "neutral", "end_char": 83, "evidence": "Le public est varié. Quelques filles aussi.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Contents d y être allé pour supporter un établissement LGBT", "intensity": 3, "primitive": "RETURN_INTENT", "confidence": 0.8, "start_char": 145}], "unmapped": []} 6f1f65f43a791951 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4132 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.80 trūksta oro 30 34 \N \N \N 2026-01-31 13:35:15.029029 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 34, "evidence": "trūksta oro", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "nevėdinama", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 20}], "unmapped": []} aaea83d0be8d6ca2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4133 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 2 \N 0.70 nevėdinama 20 30 \N \N \N 2026-01-31 13:35:15.03241 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 34, "evidence": "trūksta oro", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "nevėdinama", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 20}], "unmapped": []} aaea83d0be8d6ca2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4578 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpbVl1Y0N3EAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.840987 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4134 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 מועדון מאד יפה 0 10 \N \N \N 2026-01-31 13:35:17.990791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "מועדון מאד יפה", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 30, "evidence": "אבל דיי ריק בשישי בערב", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 10}, {"details": null, "valence": "neutral", "end_char": 54, "evidence": "אולי בפעם אחרת", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.7, "start_char": 40}], "unmapped": []} e088cdbb3303a082 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4135 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AVAILABILITY ± 1 2 \N 0.70 אבל דיי ריק בשישי בערב 10 30 \N \N \N 2026-01-31 13:35:17.994888 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "מועדון מאד יפה", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 30, "evidence": "אבל דיי ריק בשישי בערב", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 10}, {"details": null, "valence": "neutral", "end_char": 54, "evidence": "אולי בפעם אחרת", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.7, "start_char": 40}], "unmapped": []} e088cdbb3303a082 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4136 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT 0 1 2 \N 0.70 אולי בפעם אחרת 40 54 \N \N \N 2026-01-31 13:35:17.99659 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "מועדון מאד יפה", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 30, "evidence": "אבל דיי ריק בשישי בערב", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 10}, {"details": null, "valence": "neutral", "end_char": 54, "evidence": "אולי בפעם אחרת", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.7, "start_char": 40}], "unmapped": []} e088cdbb3303a082 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4137 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi 25 66 \N \N \N 2026-01-31 13:35:21.457994 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Tūsas buvo super", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Ačiū Artūrui", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 86}], "unmapped": []} ee76f9d3488005d4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4138 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Tūsas buvo super 68 84 \N \N \N 2026-01-31 13:35:21.462937 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Tūsas buvo super", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Ačiū Artūrui", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 86}], "unmapped": []} ee76f9d3488005d4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4139 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Ačiū Artūrui 86 97 \N \N \N 2026-01-31 13:35:21.468316 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Tūsas buvo super", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 68}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "Ačiū Artūrui", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 86}], "unmapped": []} ee76f9d3488005d4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4140 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 El mejor club gay en Vilnius 0 30 \N \N \N 2026-01-31 13:35:23.567902 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "El mejor club gay en Vilnius", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "La noche de los Viernes me encanta", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}], "unmapped": []} 1462d67aab9af94d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4579 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpM095WlJnEAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.841544 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4141 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 La noche de los Viernes me encanta 31 61 \N \N \N 2026-01-31 13:35:23.570664 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "El mejor club gay en Vilnius", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "La noche de los Viernes me encanta", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}], "unmapped": []} 1462d67aab9af94d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4142 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY - 2 3 \N 0.90 вход 4€ вроде бы, сдерли 6 56 70 \N \N \N 2026-01-31 13:35:26.338612 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "вход 4€ вроде бы, сдерли 6", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Само шоу вообще ниочем", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "музыка не музыка, места потанцевать нет", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 74}], "unmapped": []} 4485821727471ee7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4143 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.80 Само шоу вообще ниочем 30 50 \N \N \N 2026-01-31 13:35:26.341108 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "вход 4€ вроде бы, сдерли 6", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Само шоу вообще ниочем", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "музыка не музыка, места потанцевать нет", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 74}], "unmapped": []} 4485821727471ee7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4144 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.80 музыка не музыка, места потанцевать нет 74 102 \N \N \N 2026-01-31 13:35:26.343309 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 70, "evidence": "вход 4€ вроде бы, сдерли 6", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "Само шоу вообще ниочем", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 102, "evidence": "музыка не музыка, места потанцевать нет", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 74}], "unmapped": []} 4485821727471ee7 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4145 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10! 0 80 \N \N \N 2026-01-31 13:35:28.088605 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} fade437bd9cb9429 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4146 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 atmosferą draugiška,jauki 16 39 \N \N \N 2026-01-31 13:35:31.118478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "atmosferą draugiška,jauki", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "dirbantys žmonės labai malonus", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "maks rekomendacijos LGBT žmonėms", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "kur drąsiai galite būti savimi", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4f01f2dcea8f7e7c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4147 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 dirbantys žmonės labai malonus 40 66 \N \N \N 2026-01-31 13:35:31.1196 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "atmosferą draugiška,jauki", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "dirbantys žmonės labai malonus", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "maks rekomendacijos LGBT žmonėms", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "kur drąsiai galite būti savimi", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4f01f2dcea8f7e7c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4148 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 maks rekomendacijos LGBT žmonėms 67 95 \N \N \N 2026-01-31 13:35:31.120437 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "atmosferą draugiška,jauki", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "dirbantys žmonės labai malonus", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "maks rekomendacijos LGBT žmonėms", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "kur drąsiai galite būti savimi", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4f01f2dcea8f7e7c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4149 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 kur drąsiai galite būti savimi 96 118 \N \N \N 2026-01-31 13:35:31.121204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "atmosferą draugiška,jauki", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "dirbantys žmonės labai malonus", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "maks rekomendacijos LGBT žmonėms", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "kur drąsiai galite būti savimi", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 96}], "unmapped": []} 4f01f2dcea8f7e7c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4150 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS - 2 3 \N 0.90 BARMENĖ - blogiausia kokią tik esu sutikus 25 56 \N \N \N 2026-01-31 13:35:34.085896 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "BARMENĖ - blogiausia kokią tik esu sutikus", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "atrodo specealiai ignoruoja merginas prie baro", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} 9195361069ac4a74 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4151 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 COMMUNICATION - 2 3 \N 0.90 aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo 139 185 \N \N \N 2026-01-31 13:35:34.088053 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "BARMENĖ - blogiausia kokią tik esu sutikus", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "atrodo specealiai ignoruoja merginas prie baro", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} 9195361069ac4a74 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4152 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 atrodo specealiai ignoruoja merginas prie baro 56 90 \N \N \N 2026-01-31 13:35:34.08981 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "BARMENĖ - blogiausia kokią tik esu sutikus", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 90, "evidence": "atrodo specealiai ignoruoja merginas prie baro", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} 9195361069ac4a74 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4153 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE 0 1 2 \N 0.80 El ambiente y la música regular. 45 70 \N \N \N 2026-01-31 13:35:36.383488 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 70, "evidence": "El ambiente y la música regular.", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 45}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "la estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} 798fca71fae5fc01 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4156 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele 0 83 \N \N \N 2026-01-31 13:35:41.383296 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "super, ačiū, iki kitų kartų!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} a5ad9ba847cd1573 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4157 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei 83 139 \N \N \N 2026-01-31 13:35:41.384729 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "super, ačiū, iki kitų kartų!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} a5ad9ba847cd1573 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4158 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 super, ačiū, iki kitų kartų! 139 158 \N \N \N 2026-01-31 13:35:41.385483 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "super, ačiū, iki kitų kartų!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} a5ad9ba847cd1573 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4159 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND - 3 3 \N 0.90 Nerekomenduoju šio klubo 0 25 \N \N \N 2026-01-31 13:35:44.903148 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Nerekomenduoju šio klubo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "blogos nuotaikos", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 139}], "unmapped": []} 71c29696693ea83d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4160 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY - 2 3 \N 0.90 Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų 27 85 \N \N \N 2026-01-31 13:35:44.905203 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Nerekomenduoju šio klubo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "blogos nuotaikos", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 139}], "unmapped": []} 71c29696693ea83d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4161 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY - 2 3 \N 0.90 apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties 85 138 \N \N \N 2026-01-31 13:35:44.906596 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Nerekomenduoju šio klubo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "blogos nuotaikos", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 139}], "unmapped": []} 71c29696693ea83d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4529 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUR5cHFURm93RRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Tienen de uso lo que buscas. 0 30 \N \N \N 2026-01-31 13:44:04.725313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Tienen de uso lo que buscas.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} ca2e250a234ed929 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5712 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.60 It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside \N \N {"Ambiance and Experience"} \N \N 2026-01-31 15:18:07.553088 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "we would like to comeback", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "trying to be for the community", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 139}], "unmapped": [{"label": "Ambiance and Experience", "evidence": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside", "confidence": 0.6}]} 294efb58a0385703 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4162 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 3 \N 0.90 blogos nuotaikos 139 154 \N \N \N 2026-01-31 13:35:44.908235 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 25, "evidence": "Nerekomenduoju šio klubo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "negative", "end_char": 138, "evidence": "apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "blogos nuotaikos", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 139}], "unmapped": []} 71c29696693ea83d auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4163 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_LEVEL - 1 2 \N 0.90 0.33 alaus butelis kainuoja 6.5 EUR 0 39 \N \N \N 2026-01-31 13:35:46.302781 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 39, "evidence": "0.33 alaus butelis kainuoja 6.5 EUR", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} b6fbba1104addb29 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4164 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 3 \N 0.90 Apvemta salė, stiklai. 40 54 \N \N \N 2026-01-31 13:35:49.856637 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "Apvemta salė, stiklai.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "nevertina savo pastovių klijentų.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}], "unmapped": []} 41df29ea8ee95fcd auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4165 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RELIABILITY - 2 3 \N 0.90 nevertina savo pastovių klijentų. 0 36 \N \N \N 2026-01-31 13:35:49.85997 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "Apvemta salė, stiklai.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "nevertina savo pastovių klijentų.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}], "unmapped": []} 41df29ea8ee95fcd auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4166 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 Savininkas labai geros nuomonės apie save. Žiūri iš aukšto. 54 92 \N \N \N 2026-01-31 13:35:49.861608 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "Apvemta salė, stiklai.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 36, "evidence": "nevertina savo pastovių klijentų.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}], "unmapped": []} 41df29ea8ee95fcd auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4167 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Rekomenduoju :) 66 76 \N \N \N 2026-01-31 13:35:50.929839 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 76, "evidence": "Rekomenduoju :)", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": []} fd5955360dac0781 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4695 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Great value 60 71 \N \N \N 2026-01-31 14:49:03.593021 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "highly recommended for a fun afternoon", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 71, "evidence": "Great value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "friendly team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Great circuit for all ages", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 45d4d22009f6db2f en a510c278-87b9-45f4-9d0a-e60ff4f30662 4174 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.60 Viskas gerai, galima linksmai praleisti laika \N \N {"Overall Experience"} \N \N 2026-01-31 13:35:57.568331 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 82, "evidence": "papraseme su drauge pasiimti cigaretes", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "jie mums pasiule palikti kluba", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 83}], "unmapped": [{"label": "Overall Experience", "evidence": "Viskas gerai, galima linksmai praleisti laika", "confidence": 0.6}]} 2d52fe5a3f061404 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4168 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CONDITION - 2 2 \N 0.90 Месту срочно необходим ремонт. 0 30 \N \N \N 2026-01-31 13:35:54.328159 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Месту срочно необходим ремонт.", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 45, "evidence": "Грязно очень.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Музыка и выпивка хороши.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Контингент - весёлые и интересные, яркие люди.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.8, "start_char": 67}], "unmapped": []} 477a18d6cd9a55ad auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4169 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 3 \N 0.90 Грязно очень. 31 45 \N \N \N 2026-01-31 13:35:54.331144 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Месту срочно необходим ремонт.", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 45, "evidence": "Грязно очень.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Музыка и выпивка хороши.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Контингент - весёлые и интересные, яркие люди.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.8, "start_char": 67}], "unmapped": []} 477a18d6cd9a55ad auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4170 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 2 \N 0.80 Музыка и выпивка хороши. 46 66 \N \N \N 2026-01-31 13:35:54.333282 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Месту срочно необходим ремонт.", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 45, "evidence": "Грязно очень.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Музыка и выпивка хороши.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Контингент - весёлые и интересные, яркие люди.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.8, "start_char": 67}], "unmapped": []} 477a18d6cd9a55ad auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4171 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 2 2 \N 0.80 Контингент - весёлые и интересные, яркие люди. 67 103 \N \N \N 2026-01-31 13:35:54.33515 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Месту срочно необходим ремонт.", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 45, "evidence": "Грязно очень.", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Музыка и выпивка хороши.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Контингент - весёлые и интересные, яркие люди.", "intensity": 3, "primitive": "RECOGNITION", "confidence": 0.8, "start_char": 67}], "unmapped": []} 477a18d6cd9a55ad auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4172 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS ± 2 2 \N 0.70 papraseme su drauge pasiimti cigaretes 56 82 \N \N \N 2026-01-31 13:35:57.558883 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 82, "evidence": "papraseme su drauge pasiimti cigaretes", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "jie mums pasiule palikti kluba", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 83}], "unmapped": [{"label": "Overall Experience", "evidence": "Viskas gerai, galima linksmai praleisti laika", "confidence": 0.6}]} 2d52fe5a3f061404 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4173 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY - 2 2 \N 0.80 jie mums pasiule palikti kluba 83 107 \N \N \N 2026-01-31 13:35:57.563991 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 82, "evidence": "papraseme su drauge pasiimti cigaretes", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "jie mums pasiule palikti kluba", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 83}], "unmapped": [{"label": "Overall Experience", "evidence": "Viskas gerai, galima linksmai praleisti laika", "confidence": 0.6}]} 2d52fe5a3f061404 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4175 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 отличный клуб, всё было просто пркрасно 0 36 \N \N \N 2026-01-31 13:35:58.919063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "отличный клуб, всё было просто пркрасно", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} cb3eeb79e605e1c9 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4176 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Gera muzika 0 12 \N \N \N 2026-01-31 13:36:01.786536 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gera muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "draugiški žmonės", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Man labai patiko!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 33}], "unmapped": []} 52dfff0514f3310f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4177 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 draugiški žmonės 14 32 \N \N \N 2026-01-31 13:36:01.789785 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gera muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "draugiški žmonės", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Man labai patiko!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 33}], "unmapped": []} 52dfff0514f3310f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4178 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Man labai patiko! 33 50 \N \N \N 2026-01-31 13:36:01.79369 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gera muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 32, "evidence": "draugiški žmonės", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 14}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Man labai patiko!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 33}], "unmapped": []} 52dfff0514f3310f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4179 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 отличная музыка, уютно, радостно, развязно 56 84 \N \N \N 2026-01-31 13:36:04.157286 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "отличная музыка, уютно, радостно, развязно", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "рекомендую)", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} d76298d5fc2404a1 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4180 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 рекомендую) 85 95 \N \N \N 2026-01-31 13:36:04.160508 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 84, "evidence": "отличная музыка, уютно, радостно, развязно", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "рекомендую)", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}], "unmapped": []} d76298d5fc2404a1 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4181 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Очень классная клуб 0 20 \N \N \N 2026-01-31 13:36:05.54859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Очень классная клуб", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4cdd90b8ebbfe2d2 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4182 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Polecam. 16 23 \N \N \N 2026-01-31 13:36:08.653928 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 23, "evidence": "Polecam.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "fajny klimat.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "fajni ludzie,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Fajna muzyka,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}], "unmapped": []} 186a229fe92f49c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4183 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 fajny klimat. 41 54 \N \N \N 2026-01-31 13:36:08.657577 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 23, "evidence": "Polecam.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "fajny klimat.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "fajni ludzie,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Fajna muzyka,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}], "unmapped": []} 186a229fe92f49c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4193 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 2 \N 0.80 tualeto dangčiu... kaip kiaulės 30 56 \N \N \N 2026-01-31 13:36:18.610356 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "tualeto dangčiu... kaip kiaulės", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 30}], "unmapped": [{"label": "Overall Experience", "evidence": "Klubas fainas😊", "confidence": 0.7}]} d7ca768f25242c5e auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4184 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 fajni ludzie, 30 42 \N \N \N 2026-01-31 13:36:08.659534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 23, "evidence": "Polecam.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "fajny klimat.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "fajni ludzie,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Fajna muzyka,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}], "unmapped": []} 186a229fe92f49c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4185 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Fajna muzyka, 23 30 \N \N \N 2026-01-31 13:36:08.662382 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 23, "evidence": "Polecam.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "fajny klimat.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "fajni ludzie,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Fajna muzyka,", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 23}], "unmapped": []} 186a229fe92f49c4 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4186 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Pati geriausia Miglė 0 24 \N \N \N 2026-01-31 13:36:10.253577 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "Pati geriausia Miglė", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6c249f3abd346a14 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4187 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 geriausia vieta sugrįžt 0 29 \N \N \N 2026-01-31 13:36:12.346549 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 29, "evidence": "geriausia vieta sugrįžt", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Eivydas daro nuostabiausius kokteilius", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 34}], "unmapped": []} a570e830bec1df81 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4188 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Eivydas daro nuostabiausius kokteilius 34 63 \N \N \N 2026-01-31 13:36:12.349002 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 29, "evidence": "geriausia vieta sugrįžt", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "Eivydas daro nuostabiausius kokteilius", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 34}], "unmapped": []} a570e830bec1df81 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4189 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 super aptarnauja ir bendrauja 18 43 \N \N \N 2026-01-31 13:36:14.218406 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "super aptarnauja ir bendrauja", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "patys geriausi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 44}], "unmapped": []} 67480a9fe13b03b0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4190 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 patys geriausi 44 60 \N \N \N 2026-01-31 13:36:14.222457 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "super aptarnauja ir bendrauja", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "patys geriausi", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 44}], "unmapped": []} 67480a9fe13b03b0 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4191 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! 0 54 \N \N \N 2026-01-31 13:36:16.579013 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "Nuostabi vieta kur gali jaustis savimi ir nieko nebijot!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "Faini žmonės naujos pažintys ir fainas Kolektyvas!!!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 55}], "unmapped": []} eeda08c3befae68f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4192 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Faini žmonės naujos pažintys ir fainas Kolektyvas!!! 55 91 \N \N \N 2026-01-31 13:36:16.582351 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "Nuostabi vieta kur gali jaustis savimi ir nieko nebijot!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 91, "evidence": "Faini žmonės naujos pažintys ir fainas Kolektyvas!!!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 55}], "unmapped": []} eeda08c3befae68f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4580 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURDOXRLcjdnRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.842152 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4195 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Labai gera vieta 0 16 \N \N \N 2026-01-31 13:36:22.332495 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Labai gera vieta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "malonus aptarnavimas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "linksma muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "noreciau dar nuvikt", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 7d50a6c464a747bf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4196 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 malonus aptarnavimas 27 45 \N \N \N 2026-01-31 13:36:22.33602 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Labai gera vieta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "malonus aptarnavimas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "linksma muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "noreciau dar nuvikt", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 7d50a6c464a747bf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4197 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 linksma muzika 17 27 \N \N \N 2026-01-31 13:36:22.338081 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Labai gera vieta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "malonus aptarnavimas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "linksma muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "noreciau dar nuvikt", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 7d50a6c464a747bf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4198 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 noreciau dar nuvikt 46 66 \N \N \N 2026-01-31 13:36:22.339791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 16, "evidence": "Labai gera vieta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "malonus aptarnavimas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "linksma muzika", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 17}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "noreciau dar nuvikt", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 46}], "unmapped": []} 7d50a6c464a747bf auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4199 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 3 3 \N 0.90 Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!! 0 56 \N \N \N 2026-01-31 13:36:23.829313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!!", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6c2ef11050c9a670 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4201 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 3 3 \N 0.90 antras kartas kompensavo visus lukescius 36 66 \N \N \N 2026-01-31 13:36:25.207728 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "antras kartas kompensavo visus lukescius", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 36}], "unmapped": []} 3fafd4a4d27c5be3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4202 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 va a estar muy bien! 56 73 \N \N \N 2026-01-31 13:36:27.360829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "va a estar muy bien!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": [{"label": "Unfamiliarity", "evidence": "No lo conozco todavía! Ha sido un error!", "confidence": 0.7}]} e1a885d5702fea0b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4203 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 No lo conozco todavía! Ha sido un error! \N \N {Unfamiliarity} \N \N 2026-01-31 13:36:27.364713 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "va a estar muy bien!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": [{"label": "Unfamiliarity", "evidence": "No lo conozco todavía! Ha sido un error!", "confidence": 0.7}]} e1a885d5702fea0b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4204 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 geriausi barmenai 6 22 \N \N \N 2026-01-31 13:36:29.327255 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "geriausi barmenai", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 6}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "kitur tokiu nerasit", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 24}], "unmapped": []} a1d40d8bda6f415f auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4206 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Отличная музыка 0 14 \N \N \N 2026-01-31 13:36:32.172683 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "Отличная музыка", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "много посетителей", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "небольшой минус за интерьер", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 31}], "unmapped": []} bf4ee4ca9cfb494b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4207 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 2 3 \N 0.90 много посетителей 15 30 \N \N \N 2026-01-31 13:36:32.177598 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "Отличная музыка", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "много посетителей", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "небольшой минус за интерьер", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 31}], "unmapped": []} bf4ee4ca9cfb494b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4208 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CONDITION - 1 2 \N 0.80 небольшой минус за интерьер 31 50 \N \N \N 2026-01-31 13:36:32.18108 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "Отличная музыка", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "много посетителей", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "negative", "end_char": 50, "evidence": "небольшой минус за интерьер", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 31}], "unmapped": []} bf4ee4ca9cfb494b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4209 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 draugiška atmosfera 15 34 \N \N \N 2026-01-31 13:36:34.531714 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "draugiška atmosfera", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "rekomenduoju", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} d7323850c43a808b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4210 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 rekomenduoju 36 47 \N \N \N 2026-01-31 13:36:34.533528 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "draugiška atmosfera", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "rekomenduoju", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} d7323850c43a808b auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4211 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOGNITION + 3 3 \N 0.90 Felicidades 8 18 \N \N \N 2026-01-31 13:36:35.700722 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "Felicidades", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 8}], "unmapped": []} c0f844de5d9ce585 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4212 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 geriausias klubas Vilniuje 0 27 \N \N \N 2026-01-31 13:36:37.278411 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "geriausias klubas Vilniuje", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cdcb7fccaae89d5 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4213 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Atvyksiu dar daug kartų 0 27 \N \N \N 2026-01-31 13:36:38.496089 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Atvyksiu dar daug kartų", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 36fe0c0bb7b0b29c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4214 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 3 3 \N 0.90 самий сільський клуб у світі 0 27 \N \N \N 2026-01-31 13:36:40.022049 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 27, "evidence": "самий сільський клуб у світі", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 902527c50a162657 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4215 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Viskas ok 0 9 {too_short} \N \N 2026-01-31 13:36:40.027603 gpt-4o-mini {"reason": "too_short", "non_informative": true} 9ddf008cdf16eac3 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4216 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNxcExPcFh3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 ❤️ 0 2 {too_short} \N \N 2026-01-31 13:36:40.029576 gpt-4o-mini {"reason": "too_short", "non_informative": true} 6f763e43e2fcf30c auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4217 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 NON_INFORMATIVE 0 1 1 \N 1.00 Muy chulo 0 9 {too_short} \N \N 2026-01-31 13:36:40.031225 gpt-4o-mini {"reason": "too_short", "non_informative": true} 9f76928966a57d33 auto 78e1db2d-21eb-4072-8fd7-88f6beef833b 4696 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 friendly team 80 92 \N \N \N 2026-01-31 14:49:03.595526 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "highly recommended for a fun afternoon", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 71, "evidence": "Great value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "friendly team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Great circuit for all ages", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 45d4d22009f6db2f en a510c278-87b9-45f4-9d0a-e60ff4f30662 4296 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 me encantó cómo me atendió: fue correcta, amable y transmite muy buena armonía 36 103 \N \N \N 2026-01-31 13:39:22.568406 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "me encantó cómo me atendió: fue correcta, amable y transmite muy buena armonía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "quiero agradecerlo, porque en pocos sitios ya se recibe un servicio tan bueno", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Da gusto encontrar a alguien que disfruta de su trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} 04a20f5d71b24620 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4297 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 quiero agradecerlo, porque en pocos sitios ya se recibe un servicio tan bueno 104 157 \N \N \N 2026-01-31 13:39:22.570905 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "me encantó cómo me atendió: fue correcta, amable y transmite muy buena armonía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "quiero agradecerlo, porque en pocos sitios ya se recibe un servicio tan bueno", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Da gusto encontrar a alguien que disfruta de su trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} 04a20f5d71b24620 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4298 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Da gusto encontrar a alguien que disfruta de su trabajo 158 197 \N \N \N 2026-01-31 13:39:22.572607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "me encantó cómo me atendió: fue correcta, amable y transmite muy buena armonía", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "quiero agradecerlo, porque en pocos sitios ya se recibe un servicio tan bueno", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Da gusto encontrar a alguien que disfruta de su trabajo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 158}], "unmapped": []} 04a20f5d71b24620 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4299 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz. 90 157 \N \N \N 2026-01-31 13:39:28.120391 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "La contestación fue innecesaria, intimidante, humillante, e irrespetuosa.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "negative", "end_char": 414, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 400}], "unmapped": []} 7c6aeefe68d8bc0d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5713 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 good music, nice guys 30 48 \N \N \N 2026-01-31 15:18:11.183529 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "good music, nice guys", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "mixed", "end_char": 83, "evidence": "A little expensive the cocktails, but the entrance was very cheap", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Absolutely a good place to have a gay night in Vilnius", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}], "unmapped": []} 322cc0435d8469c0 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4300 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 ETHICS - 2 3 \N 0.90 intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía. 157 206 \N \N \N 2026-01-31 13:39:28.12287 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "La contestación fue innecesaria, intimidante, humillante, e irrespetuosa.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "negative", "end_char": 414, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 400}], "unmapped": []} 7c6aeefe68d8bc0d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4301 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 La contestación fue innecesaria, intimidante, humillante, e irrespetuosa. 206 253 \N \N \N 2026-01-31 13:39:28.124801 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "La contestación fue innecesaria, intimidante, humillante, e irrespetuosa.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "negative", "end_char": 414, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 400}], "unmapped": []} 7c6aeefe68d8bc0d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4302 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED - 2 3 \N 0.70 no compré nada. 400 414 \N \N \N 2026-01-31 13:39:28.126688 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 157, "evidence": "respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía.", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "La contestación fue innecesaria, intimidante, humillante, e irrespetuosa.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "negative", "end_char": 414, "evidence": "no compré nada.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 400}], "unmapped": []} 7c6aeefe68d8bc0d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4303 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija. 34 116 \N \N \N 2026-01-31 13:39:31.11083 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muy maja y con un trato de lujo, todo súper fácil.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Así da gusto, la verdad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}], "unmapped": []} a17ba7b79f05964d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4304 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Muy maja y con un trato de lujo, todo súper fácil. 116 157 \N \N \N 2026-01-31 13:39:31.113611 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muy maja y con un trato de lujo, todo súper fácil.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Así da gusto, la verdad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}], "unmapped": []} a17ba7b79f05964d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4305 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Así da gusto, la verdad. 157 174 \N \N \N 2026-01-31 13:39:31.115902 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Muy maja y con un trato de lujo, todo súper fácil.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Así da gusto, la verdad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}], "unmapped": []} a17ba7b79f05964d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4581 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURDOXFEX2tRRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.842792 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4306 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 Mala atención y trato por parte de la señora mayor rubia con ojos azules. 0 66 \N \N \N 2026-01-31 13:39:34.625339 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Mala atención y trato por parte de la señora mayor rubia con ojos azules.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "poniendo malas caras y contestaciones pasivo-agresivas.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 193, "evidence": "la que se hubiera armado en medio de la tienda.", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 157}], "unmapped": []} ca1b2f33f910641f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4530 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNNd3ZfaHZ3RRAB Retail.Stores.Toy_store RETAIL 1.0 CONDITION - 1 2 \N 0.90 Ya esta anticuado 0 17 \N \N \N 2026-01-31 13:44:06.162228 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 17, "evidence": "Ya esta anticuado", "intensity": 2, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}], "unmapped": []} a6b278c1ac2651e2 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4307 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 poniendo malas caras y contestaciones pasivo-agresivas. 66 103 \N \N \N 2026-01-31 13:39:34.62968 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Mala atención y trato por parte de la señora mayor rubia con ojos azules.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "poniendo malas caras y contestaciones pasivo-agresivas.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 193, "evidence": "la que se hubiera armado en medio de la tienda.", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 157}], "unmapped": []} ca1b2f33f910641f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4928 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 very tasty cheesecake 24 43 \N \N \N 2026-01-31 15:02:01.683032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "I recommend this place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "very tasty cheesecake", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "excellent service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 45}], "unmapped": []} b161a8bdd3620910 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4308 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT - 2 3 \N 0.70 la que se hubiera armado en medio de la tienda. 157 193 \N \N \N 2026-01-31 13:39:34.632915 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "Mala atención y trato por parte de la señora mayor rubia con ojos azules.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 103, "evidence": "poniendo malas caras y contestaciones pasivo-agresivas.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 193, "evidence": "la que se hubiera armado en medio de la tienda.", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 157}], "unmapped": []} ca1b2f33f910641f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4309 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario 135 183 \N \N \N 2026-01-31 13:39:46.001029 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 290, "evidence": "considero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 490, "evidence": "Ningún trabajador tiene que aguantar éste tipo de trato", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 455}], "unmapped": []} 7ef4ae6881049323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4310 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 COMPETENCE - 2 3 \N 0.90 considero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad 228 290 \N \N \N 2026-01-31 13:39:46.005115 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 290, "evidence": "considero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 490, "evidence": "Ningún trabajador tiene que aguantar éste tipo de trato", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 455}], "unmapped": []} 7ef4ae6881049323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4311 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE - 2 3 \N 0.90 proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado 309 367 \N \N \N 2026-01-31 13:39:46.007301 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 290, "evidence": "considero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 490, "evidence": "Ningún trabajador tiene que aguantar éste tipo de trato", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 455}], "unmapped": []} 7ef4ae6881049323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4312 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 Ningún trabajador tiene que aguantar éste tipo de trato 455 490 \N \N \N 2026-01-31 13:39:46.00897 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 183, "evidence": "se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 290, "evidence": "considero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 367, "evidence": "proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 309}, {"details": null, "valence": "negative", "end_char": 490, "evidence": "Ningún trabajador tiene que aguantar éste tipo de trato", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 455}], "unmapped": []} 7ef4ae6881049323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5684 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Greatest club in Lithuania 0 30 \N \N \N 2026-01-31 15:17:41.86339 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Greatest club in Lithuania", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "best place to go in the midnight", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}], "unmapped": []} cb1ae4693853ef82 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4313 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 tuvo paciencia y la ayudó en lo todo posible 66 104 \N \N \N 2026-01-31 13:39:48.457344 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "tuvo paciencia y la ayudó en lo todo posible", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "se lo agradezco", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 54229ef5e733abfe auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4314 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 se lo agradezco 0 18 \N \N \N 2026-01-31 13:39:48.459336 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "tuvo paciencia y la ayudó en lo todo posible", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 18, "evidence": "se lo agradezco", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 54229ef5e733abfe auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4582 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURDbE1yUzN3RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.843322 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4315 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Una de las mejores jugueterias de Canarias 0 36 \N \N \N 2026-01-31 13:39:52.351104 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "podrás encontrar de casi todo durante todo el año", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 37}], "unmapped": []} 486553c2a4a6f624 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4316 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 precios de lo mejorcito de toda Canarias 85 118 \N \N \N 2026-01-31 13:39:52.353688 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "podrás encontrar de casi todo durante todo el año", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 37}], "unmapped": []} 486553c2a4a6f624 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4317 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 2 3 \N 0.80 La atención es muy buena 119 139 \N \N \N 2026-01-31 13:39:52.355824 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "podrás encontrar de casi todo durante todo el año", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 37}], "unmapped": []} 486553c2a4a6f624 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4318 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.80 podrás encontrar de casi todo durante todo el año 37 78 \N \N \N 2026-01-31 13:39:52.357294 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Una de las mejores jugueterias de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "precios de lo mejorcito de toda Canarias", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "La atención es muy buena", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "podrás encontrar de casi todo durante todo el año", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 37}], "unmapped": []} 486553c2a4a6f624 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4697 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Great circuit for all ages 0 30 \N \N \N 2026-01-31 14:49:03.597428 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "highly recommended for a fun afternoon", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 71, "evidence": "Great value", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "friendly team", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Great circuit for all ages", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 45d4d22009f6db2f en a510c278-87b9-45f4-9d0a-e60ff4f30662 4319 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 1 2 \N 0.90 descontento por la atención de una trabajadora 56 83 \N \N \N 2026-01-31 13:39:55.78197 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "descontento por la atención de una trabajadora", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "No volveré más a este Nikki", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 84}], "unmapped": []} ced5615bd10d1d44 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4583 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNDdDlYbV93RRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.8439 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4320 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB Retail.Stores.Toy_store RETAIL 1.0 RETURN_INTENT - 1 2 \N 0.90 No volveré más a este Nikki 84 104 \N \N \N 2026-01-31 13:39:55.785442 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "descontento por la atención de una trabajadora", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "No volveré más a este Nikki", "intensity": 2, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 84}], "unmapped": []} ced5615bd10d1d44 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4321 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 la mejor tienda de juguetes de Canarias 0 38 \N \N \N 2026-01-31 13:39:59.045055 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 66, "evidence": "se esté quedando algo justo de mercancía", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "la atención al cliente es buena", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} be94d464b32b1817 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4322 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 2 2 \N 0.70 se esté quedando algo justo de mercancía 39 66 \N \N \N 2026-01-31 13:39:59.048302 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 66, "evidence": "se esté quedando algo justo de mercancía", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "la atención al cliente es buena", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} be94d464b32b1817 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4323 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY + 2 3 \N 0.90 la atención al cliente es buena 107 136 \N \N \N 2026-01-31 13:39:59.050028 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "la mejor tienda de juguetes de Canarias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "mixed", "end_char": 66, "evidence": "se esté quedando algo justo de mercancía", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "la atención al cliente es buena", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 107}], "unmapped": []} be94d464b32b1817 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4324 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 Pésima atención al cliente 0 26 \N \N \N 2026-01-31 13:40:01.27699 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 26, "evidence": "Pésima atención al cliente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "ser borde", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 3b4fc207a4dfb137 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4325 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 ser borde 66 75 \N \N \N 2026-01-31 13:40:01.279858 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 26, "evidence": "Pésima atención al cliente", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "ser borde", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 3b4fc207a4dfb137 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4326 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 la dependienta muy tranquila decide responder y dar prioridad a la llamada 174 223 \N \N \N 2026-01-31 13:40:04.811813 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 223, "evidence": "la dependienta muy tranquila decide responder y dar prioridad a la llamada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "solo haya 2 personas trabajando en tienda", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "estamos mi mujer y yo esperando para ser atendidos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} fb1d576bd0fc5e90 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4327 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY - 2 3 \N 0.90 solo haya 2 personas trabajando en tienda 56 85 \N \N \N 2026-01-31 13:40:04.815426 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 223, "evidence": "la dependienta muy tranquila decide responder y dar prioridad a la llamada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "solo haya 2 personas trabajando en tienda", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "estamos mi mujer y yo esperando para ser atendidos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} fb1d576bd0fc5e90 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4328 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 estamos mi mujer y yo esperando para ser atendidos 118 157 \N \N \N 2026-01-31 13:40:04.817779 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 223, "evidence": "la dependienta muy tranquila decide responder y dar prioridad a la llamada", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "solo haya 2 personas trabajando en tienda", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "estamos mi mujer y yo esperando para ser atendidos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} fb1d576bd0fc5e90 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4329 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 1 2 \N 0.80 los demás empleados hablando y riendo 36 66 \N \N \N 2026-01-31 13:40:07.6717 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los demás empleados hablando y riendo", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "Un gran rato esperando en cola", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "la de Caja esta estresada con una clienta", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 36d4935598bf4bcc auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4330 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Retail.Stores.Toy_store RETAIL 1.0 SPEED - 1 2 \N 0.90 Un gran rato esperando en cola 0 30 \N \N \N 2026-01-31 13:40:07.67509 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los demás empleados hablando y riendo", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "Un gran rato esperando en cola", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "la de Caja esta estresada con una clienta", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 36d4935598bf4bcc auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4331 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 1 2 \N 0.70 la de Caja esta estresada con una clienta 66 100 \N \N \N 2026-01-31 13:40:07.678037 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los demás empleados hablando y riendo", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 30, "evidence": "Un gran rato esperando en cola", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 100, "evidence": "la de Caja esta estresada con una clienta", "intensity": 2, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 66}], "unmapped": []} 36d4935598bf4bcc auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4395 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 LAS DUEÑAS unas ANTIPATICAS 0 30 \N \N \N 2026-01-31 13:41:16.616538 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "LAS DUEÑAS unas ANTIPATICAS", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "los mismos juguetes en mgi a mitad de precio", "intensity": 4, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 85}], "unmapped": []} 9d736e4b7997d9d5 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4332 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 1 2 \N 0.90 destacar a la empleada Mar 63 85 \N \N \N 2026-01-31 13:40:12.959617 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 1088, "evidence": "no ha sido para nada un buen atendimiento en ningun aspecto", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1045}], "unmapped": [{"label": "Customer Experience", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.8}, {"label": "Service Issues", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.8}]} 995f165a78e24405 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4333 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 FRICTION - 2 3 \N 0.90 no han dado facilidades, siendo una compra de más de 200€ 204 246 \N \N \N 2026-01-31 13:40:12.96293 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 1088, "evidence": "no ha sido para nada un buen atendimiento en ningun aspecto", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1045}], "unmapped": [{"label": "Customer Experience", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.8}, {"label": "Service Issues", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.8}]} 995f165a78e24405 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4334 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 no ha sido para nada un buen atendimiento en ningun aspecto 1045 1088 \N \N \N 2026-01-31 13:40:12.964369 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 1088, "evidence": "no ha sido para nada un buen atendimiento en ningun aspecto", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1045}], "unmapped": [{"label": "Customer Experience", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.8}, {"label": "Service Issues", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.8}]} 995f165a78e24405 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4335 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.80 La experiencia no ha sido nada buena, bastante desilusionada. \N \N {"Customer Experience"} \N \N 2026-01-31 13:40:12.965723 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 1088, "evidence": "no ha sido para nada un buen atendimiento en ningun aspecto", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1045}], "unmapped": [{"label": "Customer Experience", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.8}, {"label": "Service Issues", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.8}]} 995f165a78e24405 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4336 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.80 decidí desistir del pedido y no les importó absolutamente nada. \N \N {"Service Issues"} \N \N 2026-01-31 13:40:12.96687 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "destacar a la empleada Mar", "intensity": 2, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 246, "evidence": "no han dado facilidades, siendo una compra de más de 200€", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 1088, "evidence": "no ha sido para nada un buen atendimiento en ningun aspecto", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 1045}], "unmapped": [{"label": "Customer Experience", "evidence": "La experiencia no ha sido nada buena, bastante desilusionada.", "confidence": 0.8}, {"label": "Service Issues", "evidence": "decidí desistir del pedido y no les importó absolutamente nada.", "confidence": 0.8}]} 995f165a78e24405 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4348 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 2 3 \N 0.90 la amabilidad de sus empleados 66 90 \N \N \N 2026-01-31 13:40:28.544981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "la amabilidad de sus empleados", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "gran variedad de juguetes para todas las edades", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "no hay nada mejor que recorrer el pasillo de una jugeteria y elegir", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 129}], "unmapped": []} 3e12b3169ec15847 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5301 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 limpios educados y muy profesionales 106 134 \N \N \N 2026-01-31 15:10:20.51115 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "limpios educados y muy profesionales", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 53e17f19eca0b7a7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4504 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVZ2FDeXB3RRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.50 De toda la vida. \N \N {"General sentiment"} \N \N 2026-01-31 13:43:29.386144 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 36, "evidence": "nada llamativa", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.7, "start_char": 20}], "unmapped": [{"label": "General sentiment", "evidence": "De toda la vida.", "confidence": 0.5}]} c547b63e9ee62384 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4337 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro. 12 90 \N \N \N 2026-01-31 13:40:19.202521 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "inclusive por la calidad- precio.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 248}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 186}], "unmapped": []} 6136ecf910a40fcf auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4338 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 RELIABILITY + 3 3 \N 0.90 Tienen una calidad humana INMEJORABLE !!! 134 164 \N \N \N 2026-01-31 13:40:19.20811 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "inclusive por la calidad- precio.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 248}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 186}], "unmapped": []} 6136ecf910a40fcf auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4339 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio. 218 270 \N \N \N 2026-01-31 13:40:19.210424 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "inclusive por la calidad- precio.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 248}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 186}], "unmapped": []} 6136ecf910a40fcf auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4340 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 inclusive por la calidad- precio. 248 270 \N \N \N 2026-01-31 13:40:19.214407 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "inclusive por la calidad- precio.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 248}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 186}], "unmapped": []} 6136ecf910a40fcf auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4349 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 gran variedad de juguetes para todas las edades 90 129 \N \N \N 2026-01-31 13:40:28.548573 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "la amabilidad de sus empleados", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "gran variedad de juguetes para todas las edades", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "no hay nada mejor que recorrer el pasillo de una jugeteria y elegir", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 129}], "unmapped": []} 3e12b3169ec15847 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4341 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo. 186 248 \N \N \N 2026-01-31 13:40:19.217022 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Tienen una calidad humana INMEJORABLE !!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 270, "evidence": "inclusive por la calidad- precio.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 248}, {"details": null, "valence": "positive", "end_char": 248, "evidence": "Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 186}], "unmapped": []} 6136ecf910a40fcf auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4342 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 mala atención 66 78 \N \N \N 2026-01-31 13:40:21.880894 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "mala atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "se nota que les da igual perder la venta", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 116}], "unmapped": [{"label": "general dissatisfaction", "evidence": "no la piso más", "confidence": 0.7}]} c5534571c3380323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4343 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 se nota que les da igual perder la venta 116 151 \N \N \N 2026-01-31 13:40:21.883291 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "mala atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "se nota que les da igual perder la venta", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 116}], "unmapped": [{"label": "general dissatisfaction", "evidence": "no la piso más", "confidence": 0.7}]} c5534571c3380323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4344 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 no la piso más \N \N {"general dissatisfaction"} \N \N 2026-01-31 13:40:21.886754 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "mala atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "se nota que les da igual perder la venta", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 116}], "unmapped": [{"label": "general dissatisfaction", "evidence": "no la piso más", "confidence": 0.7}]} c5534571c3380323 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4345 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 2 3 \N 0.90 precios razonables 27 45 \N \N \N 2026-01-31 13:40:25.057139 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "precios razonables", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "mixed", "end_char": 82, "evidence": "debería ampliar más su gama", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 129, "evidence": "debería poder utilizarse mostrando solo el DNI", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 90}], "unmapped": []} 689728b7d91aacaa auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4346 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 2 2 \N 0.70 debería ampliar más su gama 56 82 \N \N \N 2026-01-31 13:40:25.059372 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "precios razonables", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "mixed", "end_char": 82, "evidence": "debería ampliar más su gama", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 129, "evidence": "debería poder utilizarse mostrando solo el DNI", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 90}], "unmapped": []} 689728b7d91aacaa auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4584 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNDMmRHdVlREAE Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.844503 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4347 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY ± 2 2 \N 0.70 debería poder utilizarse mostrando solo el DNI 90 129 \N \N \N 2026-01-31 13:40:25.061374 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "precios razonables", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "mixed", "end_char": 82, "evidence": "debería ampliar más su gama", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 129, "evidence": "debería poder utilizarse mostrando solo el DNI", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.7, "start_char": 90}], "unmapped": []} 689728b7d91aacaa auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4531 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpeW95WElBEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Los mejores precios en juguetes. 0 30 \N \N \N 2026-01-31 13:44:07.616552 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Los mejores precios en juguetes.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} a16ba873565cd1cd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4350 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 no hay nada mejor que recorrer el pasillo de una jugeteria y elegir 129 164 \N \N \N 2026-01-31 13:40:28.551504 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "la amabilidad de sus empleados", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 129, "evidence": "gran variedad de juguetes para todas las edades", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "no hay nada mejor que recorrer el pasillo de una jugeteria y elegir", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 129}], "unmapped": []} 3e12b3169ec15847 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4351 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Los precios y la variedad son de diez. 0 36 \N \N \N 2026-01-31 13:40:32.447366 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "incluso nos recomendaron un juguete mas barato", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 66}], "unmapped": []} 525893e7a47c07db auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4352 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 El trato del personal nos gustó muchísimo. 37 66 \N \N \N 2026-01-31 13:40:32.449779 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "incluso nos recomendaron un juguete mas barato", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 66}], "unmapped": []} 525893e7a47c07db auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4353 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 En resumen, recomendaría éste lugar a todo el mundo. 138 179 \N \N \N 2026-01-31 13:40:32.451621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "incluso nos recomendaron un juguete mas barato", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 66}], "unmapped": []} 525893e7a47c07db auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4354 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.70 incluso nos recomendaron un juguete mas barato 66 103 \N \N \N 2026-01-31 13:40:32.453252 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Los precios y la variedad son de diez.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato del personal nos gustó muchísimo.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "En resumen, recomendaría éste lugar a todo el mundo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "incluso nos recomendaron un juguete mas barato", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 66}], "unmapped": []} 525893e7a47c07db auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4355 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 súper amable y un juguete que me hacía falta que no encontramos llamaron sobre la marcha a otro Nikki y me lo reservaron 0 134 \N \N \N 2026-01-31 13:40:35.767572 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "súper amable y un juguete que me hacía falta que no encontramos llamaron sobre la marcha a otro Nikki y me lo reservaron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 13, "evidence": "súper amable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "me lo reservaron", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a84ab24560c430b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4532 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUMwZ2JTZ2hRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Variedad y muchas ofertas 0 27 \N \N \N 2026-01-31 13:44:09.034459 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Variedad y muchas ofertas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d5ade01a0b600a5c auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4356 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 súper amable 0 13 \N \N \N 2026-01-31 13:40:35.769768 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "súper amable y un juguete que me hacía falta que no encontramos llamaron sobre la marcha a otro Nikki y me lo reservaron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 13, "evidence": "súper amable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "me lo reservaron", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a84ab24560c430b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4357 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Retail.Stores.Toy_store RETAIL 1.0 RELIABILITY + 3 3 \N 0.90 me lo reservaron 134 145 \N \N \N 2026-01-31 13:40:35.771225 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "súper amable y un juguete que me hacía falta que no encontramos llamaron sobre la marcha a otro Nikki y me lo reservaron", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 13, "evidence": "súper amable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "me lo reservaron", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 134}], "unmapped": []} 7a84ab24560c430b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4929 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB Food_Dining.Cafe FOOD_DINING 1.2 ATTENTIVENESS + 3 3 \N 0.90 excellent service 45 61 \N \N \N 2026-01-31 15:02:01.685307 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "I recommend this place", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "very tasty cheesecake", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "excellent service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 45}], "unmapped": []} b161a8bdd3620910 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4358 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 precios algo inferior que otras tiendas más conocidas 41 80 \N \N \N 2026-01-31 13:40:38.650417 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "precios algo inferior que otras tiendas más conocidas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "mixed", "end_char": 113, "evidence": "no todas las tiendas tienen la misma variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "gran variedad de juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}], "unmapped": []} 484f5433b83707af auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4585 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNDdHEybjhBRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.845086 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4359 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 2 2 \N 0.70 no todas las tiendas tienen la misma variedad 81 113 \N \N \N 2026-01-31 13:40:38.652764 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "precios algo inferior que otras tiendas más conocidas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "mixed", "end_char": 113, "evidence": "no todas las tiendas tienen la misma variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "gran variedad de juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}], "unmapped": []} 484f5433b83707af auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4360 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 gran variedad de juguetes 10 34 \N \N \N 2026-01-31 13:40:38.65538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "precios algo inferior que otras tiendas más conocidas", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "mixed", "end_char": 113, "evidence": "no todas las tiendas tienen la misma variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "gran variedad de juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}], "unmapped": []} 484f5433b83707af auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4361 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 2 \N 0.80 personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos 41 139 \N \N \N 2026-01-31 13:40:41.604391 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 139, "evidence": "personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Le doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e2ff01afa71a1412 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4386 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 me podría comprar la Nikki Entera. 46 70 \N \N \N 2026-01-31 13:41:06.620732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Los mini precios están muy baratos.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "me podría comprar la Nikki Entera.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} e24b64da804fea68 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4362 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Le doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo 0 78 \N \N \N 2026-01-31 13:40:41.606456 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 139, "evidence": "personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Le doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e2ff01afa71a1412 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4363 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 personas como estos no deberían trabajar cara al público 360 396 \N \N \N 2026-01-31 13:40:45.171751 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "personas como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me responde... Si si, se lo cambio ò le hago devolución", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no son los valores, ni el tipo de personas q quiero q tengan contacto con mis hijos", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 396}], "unmapped": []} 9dfdf75b43aa692e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4364 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 me responde... Si si, se lo cambio ò le hago devolución 174 218 \N \N \N 2026-01-31 13:40:45.175373 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "personas como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me responde... Si si, se lo cambio ò le hago devolución", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no son los valores, ni el tipo de personas q quiero q tengan contacto con mis hijos", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 396}], "unmapped": []} 9dfdf75b43aa692e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5685 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 best place to go in the midnight 31 60 \N \N \N 2026-01-31 15:17:41.865932 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Greatest club in Lithuania", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "best place to go in the midnight", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 31}], "unmapped": []} cb1ae4693853ef82 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4365 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 ETHICS - 2 3 \N 0.90 no son los valores, ni el tipo de personas q quiero q tengan contacto con mis hijos 396 442 \N \N \N 2026-01-31 13:40:45.177069 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 396, "evidence": "personas como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "me responde... Si si, se lo cambio ò le hago devolución", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "no son los valores, ni el tipo de personas q quiero q tengan contacto con mis hijos", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 396}], "unmapped": []} 9dfdf75b43aa692e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4366 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Lo recomiendo un 10. 116 132 \N \N \N 2026-01-31 13:40:47.60152 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "Lo recomiendo un 10.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Un sitio perfecto para pedir pedirle a los reyes magos....bastante surtidos de jugetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9216d7dc008465e7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4367 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Un sitio perfecto para pedir pedirle a los reyes magos....bastante surtidos de jugetes 0 83 \N \N \N 2026-01-31 13:40:47.603817 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "Lo recomiendo un 10.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Un sitio perfecto para pedir pedirle a los reyes magos....bastante surtidos de jugetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9216d7dc008465e7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4368 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Fantástica juguetería, una de las preferidas de mis hijos 0 66 \N \N \N 2026-01-31 13:40:50.630021 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Fantástica juguetería, una de las preferidas de mis hijos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "personal superamable, siempre me han buscado los productos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "donde más económico he encontrado las cosas", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 726d5ce5342bcb56 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4369 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 personal superamable, siempre me han buscado los productos 66 116 \N \N \N 2026-01-31 13:40:50.633882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Fantástica juguetería, una de las preferidas de mis hijos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "personal superamable, siempre me han buscado los productos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "donde más económico he encontrado las cosas", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 726d5ce5342bcb56 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4370 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 donde más económico he encontrado las cosas 116 145 \N \N \N 2026-01-31 13:40:50.636263 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Fantástica juguetería, una de las preferidas de mis hijos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "personal superamable, siempre me han buscado los productos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "donde más económico he encontrado las cosas", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 116}], "unmapped": []} 726d5ce5342bcb56 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4371 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 es mi lugar favorito para comprar juguetes 56 83 \N \N \N 2026-01-31 13:40:53.070117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "es mi lugar favorito para comprar juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 84}], "unmapped": []} e95a1a7023c99fca auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4586 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNDMkt1SWdRRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.8457 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4372 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE + 2 3 \N 0.90 los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes 84 134 \N \N \N 2026-01-31 13:40:53.077146 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "es mi lugar favorito para comprar juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 84}], "unmapped": []} e95a1a7023c99fca auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4373 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 la recomiendo para los reyes cumples y demás. 82 114 \N \N \N 2026-01-31 13:40:55.774098 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 114, "evidence": "la recomiendo para los reyes cumples y demás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "tiene muy buenos juguetes a muy buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "es divertida amigable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}], "unmapped": []} 4eefe3b9507c8ae9 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4374 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 tiene muy buenos juguetes a muy buen precio 54 82 \N \N \N 2026-01-31 13:40:55.776883 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 114, "evidence": "la recomiendo para los reyes cumples y demás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "tiene muy buenos juguetes a muy buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "es divertida amigable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}], "unmapped": []} 4eefe3b9507c8ae9 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4375 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE + 3 3 \N 0.90 es divertida amigable 36 56 \N \N \N 2026-01-31 13:40:55.778939 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 114, "evidence": "la recomiendo para los reyes cumples y demás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "tiene muy buenos juguetes a muy buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "es divertida amigable", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 36}], "unmapped": []} 4eefe3b9507c8ae9 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4376 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 Gran surtido. 0 12 \N \N \N 2026-01-31 13:40:58.485286 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gran surtido.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 13}], "unmapped": [{"label": "Price Discussion", "evidence": "Los precios es otro debate.", "confidence": 0.7}]} 399dde7b78e5c312 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4377 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB Retail.Stores.Toy_store RETAIL 1.0 COMPETENCE + 2 3 \N 0.90 Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo 13 83 \N \N \N 2026-01-31 13:40:58.490417 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gran surtido.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 13}], "unmapped": [{"label": "Price Discussion", "evidence": "Los precios es otro debate.", "confidence": 0.7}]} 399dde7b78e5c312 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4378 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Los precios es otro debate. \N \N {"Price Discussion"} \N \N 2026-01-31 13:40:58.493111 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gran surtido.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 13}], "unmapped": [{"label": "Price Discussion", "evidence": "Los precios es otro debate.", "confidence": 0.7}]} 399dde7b78e5c312 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4587 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ4eGJLcmhnRRAB Retail.Stores.Toy_store RETAIL 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 13:44:28.846297 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4379 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 precio asequible 36 54 \N \N \N 2026-01-31 13:41:01.000019 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 55}, {"details": null, "valence": "positive", "end_char": 9, "evidence": "Excelente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4790a7fb3706abed auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4380 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Buen trato 55 64 \N \N \N 2026-01-31 13:41:01.002462 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 55}, {"details": null, "valence": "positive", "end_char": 9, "evidence": "Excelente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4790a7fb3706abed auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4381 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Excelente 0 9 \N \N \N 2026-01-31 13:41:01.004792 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 64, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 55}, {"details": null, "valence": "positive", "end_char": 9, "evidence": "Excelente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4790a7fb3706abed auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4382 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE Retail.Stores.Toy_store RETAIL 1.0 FRICTION - 2 2 \N 0.80 Un error. Actualicen el sistema, como por ejemplo el Decathlon. 60 103 \N \N \N 2026-01-31 13:41:03.105937 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "Un error. Actualicen el sistema, como por ejemplo el Decathlon.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 60}], "unmapped": [{"label": "Customer Experience Issue", "evidence": "Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima.", "confidence": 0.7}]} e6906d978eabd193 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4383 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima. \N \N {"Customer Experience Issue"} \N \N 2026-01-31 13:41:03.109218 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "Un error. Actualicen el sistema, como por ejemplo el Decathlon.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 60}], "unmapped": [{"label": "Customer Experience Issue", "evidence": "Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima.", "confidence": 0.7}]} e6906d978eabd193 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4384 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNiNVBYcHhRRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED - 3 3 \N 0.90 No compren la mascara de tiranosaurios rex 0 36 \N \N \N 2026-01-31 13:41:04.589029 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "No compren la mascara de tiranosaurios rex", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1f725d207fcd52ea auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4385 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Los mini precios están muy baratos. 21 46 \N \N \N 2026-01-31 13:41:06.619292 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "Los mini precios están muy baratos.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "me podría comprar la Nikki Entera.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 46}], "unmapped": []} e24b64da804fea68 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4387 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 los mejores juguetes de mi infancia 60 85 \N \N \N 2026-01-31 13:41:09.239132 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "los mejores juguetes de mi infancia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "mixed", "end_char": 48, "evidence": "sus precios un poco elevados", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.7, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Buen servicio", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7f23851374d83096 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4388 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL ± 1 2 \N 0.70 sus precios un poco elevados 25 48 \N \N \N 2026-01-31 13:41:09.246694 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "los mejores juguetes de mi infancia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "mixed", "end_char": 48, "evidence": "sus precios un poco elevados", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.7, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Buen servicio", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7f23851374d83096 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4389 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT + 2 3 \N 0.90 Buen servicio 0 12 \N \N \N 2026-01-31 13:41:09.251202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "los mejores juguetes de mi infancia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "mixed", "end_char": 48, "evidence": "sus precios un poco elevados", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.7, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Buen servicio", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 7f23851374d83096 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4390 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_TRANSPARENCY + 3 3 \N 0.90 los precios bien claros 36 54 \N \N \N 2026-01-31 13:41:12.04231 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "los precios bien claros", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "mucha variedad, yo diría que casi todo lo que existe está allí", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 55}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Como siempre todo en su sitio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} db25a148cab7c094 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4391 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 mucha variedad, yo diría que casi todo lo que existe está allí 55 92 \N \N \N 2026-01-31 13:41:12.045166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "los precios bien claros", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "mucha variedad, yo diría que casi todo lo que existe está allí", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 55}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Como siempre todo en su sitio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} db25a148cab7c094 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4392 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Retail.Stores.Toy_store RETAIL 1.0 CLEANLINESS + 3 3 \N 0.90 Como siempre todo en su sitio 0 30 \N \N \N 2026-01-31 13:41:12.047024 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 54, "evidence": "los precios bien claros", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "mucha variedad, yo diría que casi todo lo que existe está allí", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 55}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Como siempre todo en su sitio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} db25a148cab7c094 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4393 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE + 3 3 \N 0.90 Espectacular juguetería, para cualquier peque es un paraíso 0 66 \N \N \N 2026-01-31 13:41:14.50363 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Espectacular juguetería, para cualquier peque es un paraíso", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "las dependientas son super amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 9e5356b11f1ad866 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4394 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 las dependientas son super amables 66 92 \N \N \N 2026-01-31 13:41:14.506297 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Espectacular juguetería, para cualquier peque es un paraíso", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "las dependientas son super amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}], "unmapped": []} 9e5356b11f1ad866 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4396 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 2 3 \N 0.90 los mismos juguetes en mgi a mitad de precio 85 118 \N \N \N 2026-01-31 13:41:16.621762 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "LAS DUEÑAS unas ANTIPATICAS", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "los mismos juguetes en mgi a mitad de precio", "intensity": 4, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 85}], "unmapped": []} 9d736e4b7997d9d5 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4397 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURYLXNqYnpRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Bardzo dobrze zaopatrzony sklep z zabawkami. 0 39 \N \N \N 2026-01-31 13:41:18.146829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Bardzo dobrze zaopatrzony sklep z zabawkami.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 31328cea28fd6c6d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4764 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION ± 2 2 \N 0.70 to have the instructions for shuttle pickup at the airport more clearly instructed / marked. 61 118 \N \N \N 2026-01-31 14:58:53.698852 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Overall service experience was very good!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "car was clean and nice for the group!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "mixed", "end_char": 118, "evidence": "to have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 61}], "unmapped": []} 38a7bbfbac453063 en 07c01d3a-3443-4031-910c-7b6feba2c100 4398 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 CONDITION - 2 2 \N 0.90 Algunos juguetes no sirven están rotos o faltan piezas 0 45 \N \N \N 2026-01-31 13:41:22.983187 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "la tienda ordenada", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "muchas cosas con oferta", "intensity": 2, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 147}], "unmapped": []} f414d917abcde8fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4399 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 2 \N 0.90 te persiguen por la tienda como en los chinos 46 78 \N \N \N 2026-01-31 13:41:22.988782 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "la tienda ordenada", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "muchas cosas con oferta", "intensity": 2, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 147}], "unmapped": []} f414d917abcde8fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4400 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 2 \N 0.90 los trabajadores hablan de asuntos personales en la tienda como si fuera la calle 79 129 \N \N \N 2026-01-31 13:41:22.99187 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "la tienda ordenada", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "muchas cosas con oferta", "intensity": 2, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 147}], "unmapped": []} f414d917abcde8fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4409 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Personal atiende bien. 27 48 \N \N \N 2026-01-31 13:41:31.766221 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Personal atiende bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Juguetería muy completa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e0d4848b707b9be auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4401 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 CLEANLINESS + 1 2 \N 0.90 la tienda ordenada 130 146 \N \N \N 2026-01-31 13:41:22.993957 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "la tienda ordenada", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "muchas cosas con oferta", "intensity": 2, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 147}], "unmapped": []} f414d917abcde8fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4402 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 1 2 \N 0.90 muchas cosas con oferta 147 167 \N \N \N 2026-01-31 13:41:22.995949 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "CONDITION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "negative", "end_char": 129, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "la tienda ordenada", "intensity": 2, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "muchas cosas con oferta", "intensity": 2, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 147}], "unmapped": []} f414d917abcde8fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4403 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY 0 2 2 \N 0.80 más cantidad y variedad 35 54 \N \N \N 2026-01-31 13:41:24.85593 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 54, "evidence": "más cantidad y variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 35}], "unmapped": [{"label": "User suggestion", "evidence": "Tal vez esta información le sea útil a algún usuario.", "confidence": 0.7}]} 4ec5377d593cf3b6 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4404 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Tal vez esta información le sea útil a algún usuario. \N \N {"User suggestion"} \N \N 2026-01-31 13:41:24.8591 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 54, "evidence": "más cantidad y variedad", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 35}], "unmapped": [{"label": "User suggestion", "evidence": "Tal vez esta información le sea útil a algún usuario.", "confidence": 0.7}]} 4ec5377d593cf3b6 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4405 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir 36 88 \N \N \N 2026-01-31 13:41:27.568817 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "muy buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} a04e594b5d096092 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4406 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 muy buenos precios 90 107 \N \N \N 2026-01-31 13:41:27.571625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "muy buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 90}], "unmapped": []} a04e594b5d096092 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4407 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNpNHZpS19RRRAB Retail.Stores.Toy_store RETAIL 1.0 DIGITAL_UX 0 2 2 \N 0.80 digitalizar las tarjetas de socio 10 36 \N \N \N 2026-01-31 13:41:29.808859 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 36, "evidence": "digitalizar las tarjetas de socio", "intensity": 3, "primitive": "DIGITAL_UX", "confidence": 0.8, "start_char": 10}, {"details": null, "valence": "neutral", "end_char": 70, "evidence": "acumular puntos enseñando el DNI", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 41}], "unmapped": []} 793164f48890f7b6 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4408 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNpNHZpS19RRRAB Retail.Stores.Toy_store RETAIL 1.0 ACCESSIBILITY 0 2 2 \N 0.70 acumular puntos enseñando el DNI 41 70 \N \N \N 2026-01-31 13:41:29.812221 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 36, "evidence": "digitalizar las tarjetas de socio", "intensity": 3, "primitive": "DIGITAL_UX", "confidence": 0.8, "start_char": 10}, {"details": null, "valence": "neutral", "end_char": 70, "evidence": "acumular puntos enseñando el DNI", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 41}], "unmapped": []} 793164f48890f7b6 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4410 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Juguetería muy completa. 0 24 \N \N \N 2026-01-31 13:41:31.767716 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Personal atiende bien.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Juguetería muy completa.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5e0d4848b707b9be auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4411 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 precios económicos 34 50 \N \N \N 2026-01-31 13:41:35.442211 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "precios económicos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Facilidades de reserva", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cd3bfc82f01074f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4412 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Facilidades de reserva 0 24 \N \N \N 2026-01-31 13:41:35.446991 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "precios económicos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Facilidades de reserva", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cd3bfc82f01074f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4413 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Gran surtido de juguetes 0 27 \N \N \N 2026-01-31 13:41:35.448847 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "precios económicos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Facilidades de reserva", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cd3bfc82f01074f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4414 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURCejVYdUx3EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Siempre con muy buenas ofertas y una atención excepcional. 0 56 \N \N \N 2026-01-31 13:41:37.801896 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Siempre con muy buenas ofertas y una atención excepcional.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} b31954382516574f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4416 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Siempre encuentro aquí lo que ando buscando 56 83 \N \N \N 2026-01-31 13:41:41.224526 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Siempre encuentro aquí lo que ando buscando", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": [{"label": "price comparison", "evidence": "Aunque alguna vez lo he conseguido más económico en otro lado.", "confidence": 0.7}]} 73942d78e0234d15 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4417 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Aunque alguna vez lo he conseguido más económico en otro lado. \N \N {"price comparison"} \N \N 2026-01-31 13:41:41.226436 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Siempre encuentro aquí lo que ando buscando", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": [{"label": "price comparison", "evidence": "Aunque alguna vez lo he conseguido más económico en otro lado.", "confidence": 0.7}]} 73942d78e0234d15 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4418 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Muy atentos y eficientes. 0 27 \N \N \N 2026-01-31 13:41:43.768007 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy atentos y eficientes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Puedes conseguir cualquier juguete, porque siempre están actualizados.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 5256180edaa3f42b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4419 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Puedes conseguir cualquier juguete, porque siempre están actualizados. 27 83 \N \N \N 2026-01-31 13:41:43.773665 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Muy atentos y eficientes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Puedes conseguir cualquier juguete, porque siempre están actualizados.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 5256180edaa3f42b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4451 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURtejk3bjR3RRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 2 3 \N 0.90 las dependientas nos asesoraron muy bien 30 61 \N \N \N 2026-01-31 13:42:21.868475 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "las dependientas nos asesoraron muy bien", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 12ada90269a9b465 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4420 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 2 3 \N 0.90 Buena atención 0 12 \N \N \N 2026-01-31 13:41:46.162602 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Buena atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ayudaron mucho para dar con el regalo que buscaba", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 13}], "unmapped": []} 3b0040bbbf9ddc85 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4421 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 ayudaron mucho para dar con el regalo que buscaba 13 66 \N \N \N 2026-01-31 13:41:46.164859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Buena atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ayudaron mucho para dar con el regalo que buscaba", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 13}], "unmapped": []} 3b0040bbbf9ddc85 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4422 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Buenas promociones y muchas variedad. 0 38 \N \N \N 2026-01-31 13:41:48.83224 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Buenas promociones y muchas variedad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Una atención muy buena.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} 2a99d8117816e387 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4423 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Una atención muy buena. 39 61 \N \N \N 2026-01-31 13:41:48.834176 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Buenas promociones y muchas variedad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Una atención muy buena.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} 2a99d8117816e387 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4424 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURNcVp5YUJnEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 precio muy razonable 38 59 \N \N \N 2026-01-31 13:41:50.348092 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 59, "evidence": "precio muy razonable", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 38}], "unmapped": []} 372601a1289f6cf4 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4425 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 muy buenos precios 25 41 \N \N \N 2026-01-31 13:41:52.869589 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "muy buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 99, "evidence": "es la juguetería más completa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 69}], "unmapped": []} 949100ee4fc756ae auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4426 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 es la juguetería más completa 69 99 \N \N \N 2026-01-31 13:41:52.872987 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "muy buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 99, "evidence": "es la juguetería más completa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 69}], "unmapped": []} 949100ee4fc756ae auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4427 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNRek9QWXlBRRAB Retail.Stores.Toy_store RETAIL 1.0 ACCESSIBILITY + 2 3 \N 0.90 Adaptación para minusvalídos. 25 50 \N \N \N 2026-01-31 13:41:54.984987 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Adaptación para minusvalídos.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "Buenos precios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 82c86f6b9f85da04 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4428 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNRek9QWXlBRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 2 3 \N 0.90 Buenos precios. 51 65 \N \N \N 2026-01-31 13:41:54.988509 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "Adaptación para minusvalídos.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 65, "evidence": "Buenos precios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 51}], "unmapped": []} 82c86f6b9f85da04 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4429 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJanN6RzRRRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 2 3 \N 0.90 Buen trato 0 9 \N \N \N 2026-01-31 13:41:57.564992 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 9, "evidence": "Buen trato", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "los juguetes siempre son más económicos que en otros lugares", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} a2d0309de558b88b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4543 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNvMXZQYmhBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Buena juguetería 0 17 \N \N \N 2026-01-31 13:44:25.18422 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 17, "evidence": "Buena juguetería", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8c2220aebae316a1 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4430 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJanN6RzRRRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 2 3 \N 0.90 los juguetes siempre son más económicos que en otros lugares 20 66 \N \N \N 2026-01-31 13:41:57.568509 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 9, "evidence": "Buen trato", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "los juguetes siempre son más económicos que en otros lugares", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 20}], "unmapped": []} a2d0309de558b88b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4431 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwZ0xpODN3RRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 2 \N 0.90 mal servicio al cliente 30 54 \N \N \N 2026-01-31 13:41:59.604422 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "mal servicio al cliente", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "pidiéndole dinero al personal", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} dca9c5c5821ef8ad auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4432 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwZ0xpODN3RRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 2 \N 0.90 pidiéndole dinero al personal 56 84 \N \N \N 2026-01-31 13:41:59.615819 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 54, "evidence": "mal servicio al cliente", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 84, "evidence": "pidiéndole dinero al personal", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}], "unmapped": []} dca9c5c5821ef8ad auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4433 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQ4ZzRibGFREAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 2 2 \N 0.90 precios caros 24 36 \N \N \N 2026-01-31 13:42:01.706385 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "precios caros", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Le encanta ha los niños", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f3b21cb6a0385564 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4434 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQ4ZzRibGFREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Le encanta ha los niños 0 24 \N \N \N 2026-01-31 13:42:01.710893 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 36, "evidence": "precios caros", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "Le encanta ha los niños", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f3b21cb6a0385564 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4435 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVbWM3bGhRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Muy buen sitio.con muchas variedades 0 30 \N \N \N 2026-01-31 13:42:03.153261 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Muy buen sitio.con muchas variedades", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f19231d16a6f9301 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4436 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURHZy0tTWVnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Sensacional!!! 0 11 \N \N \N 2026-01-31 13:42:05.63413 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 11, "evidence": "Sensacional!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Tiene muchos juguetes para niños y niñas de todas las edades!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 12}], "unmapped": []} d6c1ed8e5e0bfb0f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4437 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURHZy0tTWVnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Tiene muchos juguetes para niños y niñas de todas las edades! 12 66 \N \N \N 2026-01-31 13:42:05.638193 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 11, "evidence": "Sensacional!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Tiene muchos juguetes para niños y niñas de todas las edades!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 12}], "unmapped": []} d6c1ed8e5e0bfb0f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4438 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURZOU95dlN3EAE Retail.Stores.Toy_store RETAIL 1.0 ACCESSIBILITY + 2 2 \N 0.90 buenos accesos 30 44 \N \N \N 2026-01-31 13:42:08.202541 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "buenos accesos", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy céntrico", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "buen servicio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 59}], "unmapped": []} e18048d279f1b1fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4439 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURZOU95dlN3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 2 \N 0.90 muy céntrico 45 58 \N \N \N 2026-01-31 13:42:08.207624 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "buenos accesos", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy céntrico", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "buen servicio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 59}], "unmapped": []} e18048d279f1b1fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4440 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURZOU95dlN3EAE Retail.Stores.Toy_store RETAIL 1.0 RESPONSE_QUALITY + 2 2 \N 0.90 buen servicio 59 72 \N \N \N 2026-01-31 13:42:08.2113 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 44, "evidence": "buenos accesos", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "muy céntrico", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "buen servicio", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 59}], "unmapped": []} e18048d279f1b1fd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4441 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURrcC1yTmd3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 La mayor variedad de juguetes de la isla aquí podrás encontrar 0 70 \N \N \N 2026-01-31 13:42:10.046874 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "La mayor variedad de juguetes de la isla aquí podrás encontrar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 810aa65909fed2b5 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4442 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQwZ09xWUJBEAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 2 3 \N 0.90 El personal amable. 0 18 \N \N \N 2026-01-31 13:42:12.348166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "El personal amable.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "precios normalitos.", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 27}], "unmapped": []} 982322dbe772bcbd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4443 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQwZ09xWUJBEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 1 2 \N 0.80 precios normalitos. 27 45 \N \N \N 2026-01-31 13:42:12.351542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 18, "evidence": "El personal amable.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "precios normalitos.", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 27}], "unmapped": []} 982322dbe772bcbd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4444 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUMwanBXOWpnRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Personal muy atento 0 20 \N \N \N 2026-01-31 13:42:14.569777 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Personal muy atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "ganaron un cliente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}], "unmapped": []} 04b17dadfdce4f88 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4445 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUMwanBXOWpnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 ganaron un cliente 30 48 \N \N \N 2026-01-31 13:42:14.57757 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Personal muy atento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "ganaron un cliente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}], "unmapped": []} 04b17dadfdce4f88 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4446 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUMyOEtuMkp3EAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 Conseguí lo q quería 0 22 \N \N \N 2026-01-31 13:42:17.150152 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Conseguí lo q quería", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 48, "evidence": "Han subido un poco los precios", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 23}], "unmapped": []} e3dacb8ff5ebdde8 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4447 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUMyOEtuMkp3EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 1 2 \N 0.80 Han subido un poco los precios 23 48 \N \N \N 2026-01-31 13:42:17.153574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Conseguí lo q quería", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 48, "evidence": "Han subido un poco los precios", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 23}], "unmapped": []} e3dacb8ff5ebdde8 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4448 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNqNzRUeEl3EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Muy bien 0 8 \N \N \N 2026-01-31 13:42:18.489236 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Muy bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5474c86546579068 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4449 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM4bllMRDJnRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Buenos precios 0 13 \N \N \N 2026-01-31 13:42:20.52015 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "mucha variedad", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 14}], "unmapped": []} c01d9458c98cbb2f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4450 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM4bllMRDJnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 mucha variedad 14 30 \N \N \N 2026-01-31 13:42:20.522321 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "mucha variedad", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 14}], "unmapped": []} c01d9458c98cbb2f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4452 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvdU9PTTBnRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Buenos precios 0 12 \N \N \N 2026-01-31 13:42:24.817383 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "variedad productos", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "buena atención cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 32}], "unmapped": []} a4bf63a40489b2d2 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4453 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvdU9PTTBnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 variedad productos 13 31 \N \N \N 2026-01-31 13:42:24.820066 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "variedad productos", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "buena atención cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 32}], "unmapped": []} a4bf63a40489b2d2 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 5769 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-47 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 the best reaction ever! 43 66 \N \N \N 2026-01-31 15:19:10.444128 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "the best reaction ever!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "served us free better one long islands", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 66}], "unmapped": []} 369bd93e204f09a4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4454 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURvdU9PTTBnRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 buena atención cliente 32 54 \N \N \N 2026-01-31 13:42:24.821625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 31, "evidence": "variedad productos", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "buena atención cliente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 32}], "unmapped": []} a4bf63a40489b2d2 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4455 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwbWFDOV9nRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Me encanta esta cadena 0 27 \N \N \N 2026-01-31 13:42:27.157144 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Me encanta esta cadena", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "y a mi hijo mas", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} 4aba805a2e659284 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4456 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQwbWFDOV9nRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 y a mi hijo mas 27 41 \N \N \N 2026-01-31 13:42:27.159233 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Me encanta esta cadena", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "y a mi hijo mas", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}], "unmapped": []} 4aba805a2e659284 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4457 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURzdVpiVjRnRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 A las cajeras parece que le debes dinero. 0 43 \N \N \N 2026-01-31 13:42:29.323589 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "A las cajeras parece que le debes dinero.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "Me siento incómodo al entrar", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 44}], "unmapped": []} 1a4fb620799725d6 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4458 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURzdVpiVjRnRRAB Retail.Stores.Toy_store RETAIL 1.0 COMFORT - 2 3 \N 0.90 Me siento incómodo al entrar 44 66 \N \N \N 2026-01-31 13:42:29.327301 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "A las cajeras parece que le debes dinero.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "Me siento incómodo al entrar", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 44}], "unmapped": []} 1a4fb620799725d6 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4459 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpdFlxeVVnEAE Retail.Stores.Toy_store RETAIL 1.0 AMBIANCE + 3 3 \N 0.90 Todo bien organizado 0 20 \N \N \N 2026-01-31 13:42:32.065448 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Todo bien organizado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "mi nieta lo pasó pipa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 21}], "unmapped": []} ea9fd249bb4cddeb auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4483 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNCcThYM0tBEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 De casi todo lo referente a juguetes que quieras. 0 42 \N \N \N 2026-01-31 13:43:00.945103 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "De casi todo lo referente a juguetes que quieras.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} c94e6b0d9da794ea auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4460 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNpdFlxeVVnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 mi nieta lo pasó pipa 21 41 \N \N \N 2026-01-31 13:42:32.068932 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Todo bien organizado", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "mi nieta lo pasó pipa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 21}], "unmapped": []} ea9fd249bb4cddeb auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4461 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZNDhYU3dRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Tienda super completa donde encontrar todo tipo de juquetes 0 56 \N \N \N 2026-01-31 13:42:33.423159 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Tienda super completa donde encontrar todo tipo de juquetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5b1db12835cf090f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4462 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNNaFpLVFFBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 buenos precios y atención 10 30 \N \N \N 2026-01-31 13:42:34.730369 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "buenos precios y atención", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 10}], "unmapped": []} 889010828af5c7ab auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4463 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURtNjYzZUJnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 El mejor sitio donde hacer tus compras para los peques de la casa 0 61 \N \N \N 2026-01-31 13:42:36.555 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "El mejor sitio donde hacer tus compras para los peques de la casa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 257ce2118bcc8fdd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4464 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURoNmE3azBRRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Buena atención 0 14 \N \N \N 2026-01-31 13:42:38.61072 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "Buena atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 15}], "unmapped": []} f7c01da2f90b5d3a auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4465 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURoNmE3azBRRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 precios 15 22 \N \N \N 2026-01-31 13:42:38.614412 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 14, "evidence": "Buena atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 15}], "unmapped": []} f7c01da2f90b5d3a auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4466 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURzaXBMS3lnRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 buenos precios 27 41 \N \N \N 2026-01-31 13:42:41.393169 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 930aea0b3fb69ef7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4467 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURzaXBMS3lnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Gran surtido de juguetes 0 27 \N \N \N 2026-01-31 13:42:41.397047 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "buenos precios", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 930aea0b3fb69ef7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4468 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNTLTl6RzV3RRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Buena atención 0 13 \N \N \N 2026-01-31 13:42:43.742522 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buena atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "y encuentras todo", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 13}], "unmapped": []} d8aa8f23ea9941dd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4469 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNTLTl6RzV3RRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 y encuentras todo 13 30 \N \N \N 2026-01-31 13:42:43.745003 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buena atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "y encuentras todo", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 13}], "unmapped": []} d8aa8f23ea9941dd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4470 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQ4a2JuOVZREAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Buen precio 0 10 \N \N \N 2026-01-31 13:42:46.127586 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "tienen muchísima variedad", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 11}], "unmapped": []} dc29fb491df3753f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4471 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQ4a2JuOVZREAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 tienen muchísima variedad 11 39 \N \N \N 2026-01-31 13:42:46.129595 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "tienen muchísima variedad", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 11}], "unmapped": []} dc29fb491df3753f auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4472 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ2X0oyazVRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 2 \N 0.90 A los niños de mi pareja les encanta. 0 36 \N \N \N 2026-01-31 13:42:47.422194 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "A los niños de mi pareja les encanta.", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8a44223ae8293b2d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4473 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNNcnRuMkl3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY - 2 2 \N 0.80 no tienen ni cestas... 36 50 \N \N \N 2026-01-31 13:42:48.97814 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "no tienen ni cestas...", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 36}], "unmapped": [{"label": "General complaint about shopping experience", "evidence": "Si quieres comprar muchos juguetes", "confidence": 0.7}]} dcd70537c2fe2af7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4474 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNNcnRuMkl3EAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Si quieres comprar muchos juguetes \N \N {"General complaint about shopping experience"} \N \N 2026-01-31 13:42:48.980101 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 50, "evidence": "no tienen ni cestas...", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 36}], "unmapped": [{"label": "General complaint about shopping experience", "evidence": "Si quieres comprar muchos juguetes", "confidence": 0.7}]} dcd70537c2fe2af7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4475 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZNVlfTWdnRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Trato al cliente muy bueno 0 30 \N \N \N 2026-01-31 13:42:50.926583 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Trato al cliente muy bueno", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} ee871bd941445f16 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4476 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZek5tSHVRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Estupendo para encontrar todo tipo de juguetes 0 42 \N \N \N 2026-01-31 13:42:52.049166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 42, "evidence": "Estupendo para encontrar todo tipo de juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} dc086e37e73f9d38 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4477 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURDNGR1YVNREAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Buena atención 0 13 \N \N \N 2026-01-31 13:42:54.048377 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buena atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "ofertas", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 15}], "unmapped": []} f2cfa3e0308edb21 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4478 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURDNGR1YVNREAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 ofertas 15 22 \N \N \N 2026-01-31 13:42:54.052299 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buena atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "ofertas", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 15}], "unmapped": []} f2cfa3e0308edb21 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4479 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJcE91ZXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 gran variedad de juguetes 36 58 \N \N \N 2026-01-31 13:42:55.471014 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "gran variedad de juguetes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 36}], "unmapped": []} 27247e986b3d91f1 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4480 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJbnNHQzFRRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED ± 1 2 \N 0.70 Le faltan cosillas 12 30 \N \N \N 2026-01-31 13:42:56.826715 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 30, "evidence": "Le faltan cosillas", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 12}], "unmapped": []} 07361047762a5a6b auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4481 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNoMmYzODFBRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 Está bien 0 9 \N \N \N 2026-01-31 13:42:57.967274 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 9, "evidence": "Está bien", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} f51dd434bef853ef auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4482 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvaE5YTUVnEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 precios increíblemente bajos 41 66 \N \N \N 2026-01-31 13:42:59.678686 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "precios increíblemente bajos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 41}], "unmapped": []} fb2c8653f944c7ce auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4544 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNtM0otZk93EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Una buena jugueteria 0 22 \N \N \N 2026-01-31 13:44:26.332534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Una buena jugueteria", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d0b3aed22c4fdaf9 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4488 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJdUozaG5BRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Personal muy agradable. 24 48 \N \N \N 2026-01-31 13:43:09.421922 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Personal muy agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Magnífica juguetería.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 15118118b3907527 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4489 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURJdUozaG5BRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Magnífica juguetería. 0 22 \N \N \N 2026-01-31 13:43:09.424531 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Personal muy agradable.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "Magnífica juguetería.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 15118118b3907527 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4490 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQ2X0lTX1lnEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 2 2 \N 0.90 Muy caros los juguetes 0 20 \N \N \N 2026-01-31 13:43:10.679435 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Muy caros los juguetes", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} df034aa9f7947469 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4491 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNZbWViWTJBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Muy entretenido y regalos guapísimo 0 40 \N \N \N 2026-01-31 13:43:12.105471 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 40, "evidence": "Muy entretenido y regalos guapísimo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 619bde06d1b8c45d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4492 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJOUp6YkZREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Siempre podrás encontrar el juguete adecuado 0 41 \N \N \N 2026-01-31 13:43:13.495522 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Siempre podrás encontrar el juguete adecuado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1e3977be9613638d auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4493 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4LV9DQUVnEAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 2 2 \N 0.90 chicas amables 15 30 \N \N \N 2026-01-31 13:43:15.79948 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "chicas amables", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Buena juegueteria", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 335b8aa9695acbe7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4494 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN4LV9DQUVnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 2 \N 0.90 Buena juegueteria 0 15 \N \N \N 2026-01-31 13:43:15.802196 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "chicas amables", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Buena juegueteria", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 335b8aa9695acbe7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4495 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUQ2X0wyN3R3RRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 De todo muy amplia 0 20 \N \N \N 2026-01-31 13:43:17.100734 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "De todo muy amplia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 351338ba4304bad9 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4496 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJOGZxQ2JnEAE Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 más baratos que en otras jugueterias 22 50 \N \N \N 2026-01-31 13:43:18.998081 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "más baratos que en otras jugueterias", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 22}], "unmapped": []} c8f7642c8f2ba226 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4497 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNJaWI2cWhBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Muy bien 0 8 \N \N \N 2026-01-31 13:43:21.028344 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 8, "evidence": "Muy bien", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5474c86546579068 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4498 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURXcWZuODFBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Muy buenos consejos 0 20 \N \N \N 2026-01-31 13:43:22.147297 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Muy buenos consejos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} f7c111ccaa8b73cd auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4499 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURDaFBfczBBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Para l@s niñ@s es genial 0 27 \N \N \N 2026-01-31 13:43:23.458878 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Para l@s niñ@s es genial", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c160c15a9cbf9c76 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4500 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNacHVMdWJnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Tiene de casi todo en juguetes 0 30 \N \N \N 2026-01-31 13:43:24.933063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Tiene de casi todo en juguetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 3a11e1c75587d479 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4508 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURDNmQ2UXh3RRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Buenos precios 0 13 \N \N \N 2026-01-31 13:43:35.740274 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "disponibilidad de artículos", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 14}], "unmapped": []} 55719db720208c0c auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4509 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURDNmQ2UXh3RRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 disponibilidad de artículos 14 39 \N \N \N 2026-01-31 13:43:35.743148 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "disponibilidad de artículos", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 14}], "unmapped": []} 55719db720208c0c auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4510 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURlMFphZ1hBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED + 3 3 \N 0.90 Una tienda muy completa. 0 25 \N \N \N 2026-01-31 13:43:37.664469 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "Una tienda muy completa.", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8306edccddc42871 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4511 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURpck1LNmlBRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 Personal ofrece gran ayuda 0 30 \N \N \N 2026-01-31 13:43:38.914158 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Personal ofrece gran ayuda", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 649377a9d7d62de9 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4512 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNvbUtQLW9BRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 2 2 \N 0.50 Esta bien 0 9 \N \N \N 2026-01-31 13:43:40.338003 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 9, "evidence": "Esta bien", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.5, "start_char": 0}], "unmapped": []} 7b3001eb1501f76e auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4513 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVd3ZyTV9nRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 2 2 \N 0.60 Se pueden modernisar un poco 0 30 \N \N \N 2026-01-31 13:43:42.115607 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 30, "evidence": "Se pueden modernisar un poco", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 0}], "unmapped": []} cdca99ec569fc020 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4514 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNvbVpER0JREAE Retail.Stores.Toy_store RETAIL 1.0 RECOGNITION + 3 3 \N 0.90 mucha variedad de juguetes 3 27 \N \N \N 2026-01-31 13:43:43.284567 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "mucha variedad de juguetes", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 3}], "unmapped": []} 06c39e046f37a1de auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4515 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURSMjV6bklBEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 1 2 \N 0.90 Bastante caro 0 13 \N \N \N 2026-01-31 13:43:44.65694 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 13, "evidence": "Bastante caro", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} a6f100cf985666a7 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4516 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUN5ck1PSU9nEAE Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Muy amables 0 11 \N \N \N 2026-01-31 13:43:45.960796 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 11, "evidence": "Muy amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 20cbc0bd812e86bc auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4517 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNVamNPTVBBEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Hay de todo para los peques 0 30 \N \N \N 2026-01-31 13:43:47.322911 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Hay de todo para los peques", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} be7bb6fbd39505d1 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4518 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJaUpDYmVnEAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 Buenos precios 0 13 \N \N \N 2026-01-31 13:43:48.903674 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buenos precios", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} cbb2f663d0351987 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4519 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURNa01QZXJRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Siempre bien... 0 12 \N \N \N 2026-01-31 13:43:50.143322 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Siempre bien...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 510cac76bb5d40ad auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4520 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJbV91Ulp3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 bastantes tiendas y variedad de juguetes 0 46 \N \N \N 2026-01-31 13:43:52.250665 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "bastantes tiendas y variedad de juguetes", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} b00c7b0bee944277 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 4521 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJdzdMSVN3EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Variedad de juguetes y muy lindos 0 36 \N \N \N 2026-01-31 13:43:53.830222 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "Variedad de juguetes y muy lindos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6a221ea5d2b23f49 auto e4f95d90-dbbe-439d-a0fd-f19088002f26 1 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 I was there with my family on September 6. The kar... 0 50 \N \N \N 2026-01-31 02:05:33.594321 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 2 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Fabulous. Friendly helpful service guiding autist... 0 50 \N \N \N 2026-01-31 02:05:33.596188 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 3 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Visited here in late July to race with my son. Had... 0 50 \N \N \N 2026-01-31 02:05:33.597182 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4698 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Friendly folks. 0 13 \N \N \N 2026-01-31 14:49:09.413499 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly folks.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "they’ll be happy to let you write down your list of drivers and cars on a piece of paper.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they can put together a race for the whole family in different car types, even tandem for the little ones.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 238, "evidence": "During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 166}], "unmapped": []} 95aa6616a20d25e3 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4699 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION + 2 3 \N 0.80 they’ll be happy to let you write down your list of drivers and cars on a piece of paper. 30 92 \N \N \N 2026-01-31 14:49:09.416933 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly folks.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "they’ll be happy to let you write down your list of drivers and cars on a piece of paper.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they can put together a race for the whole family in different car types, even tandem for the little ones.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 238, "evidence": "During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 166}], "unmapped": []} 95aa6616a20d25e3 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4700 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 2 3 \N 0.80 they can put together a race for the whole family in different car types, even tandem for the little ones. 94 164 \N \N \N 2026-01-31 14:49:09.419749 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly folks.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "they’ll be happy to let you write down your list of drivers and cars on a piece of paper.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they can put together a race for the whole family in different car types, even tandem for the little ones.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 238, "evidence": "During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 166}], "unmapped": []} 95aa6616a20d25e3 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4604 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION + 3 3 \N 0.90 The kart track is in great condition. 37 63 \N \N \N 2026-01-31 14:47:01.943149 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "The kart track is in great condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "had a lot of fun.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "a lot of fun and a great memory for everyone.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 123}], "unmapped": []} 0b8b3618e93d74d2 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 2 \N 0.70 ‼️AMAZING‼️Amazing go karting, very professional a... 0 50 \N \N \N 2026-01-31 02:05:33.597993 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great venue, good customer service. Some of the yo... 0 50 \N \N \N 2026-01-31 02:05:33.598744 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4605 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 had a lot of fun. 82 95 \N \N \N 2026-01-31 14:47:01.952277 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "The kart track is in great condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "had a lot of fun.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "a lot of fun and a great memory for everyone.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 123}], "unmapped": []} 0b8b3618e93d74d2 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4606 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 a lot of fun and a great memory for everyone. 123 157 \N \N \N 2026-01-31 14:47:01.957995 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "The kart track is in great condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "had a lot of fun.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "a lot of fun and a great memory for everyone.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 123}], "unmapped": []} 0b8b3618e93d74d2 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4607 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Friendly helpful service guiding autistic son 0 41 \N \N \N 2026-01-31 14:47:08.851427 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "They were patient and kind", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "he absolutely loved it. So much so we went back a week later", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 4608 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 They were patient and kind 41 66 \N \N \N 2026-01-31 14:47:08.853237 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "They were patient and kind", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "he absolutely loved it. So much so we went back a week later", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 4609 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 he absolutely loved it. So much so we went back a week later 66 113 \N \N \N 2026-01-31 14:47:08.854788 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "They were patient and kind", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "he absolutely loved it. So much so we went back a week later", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 4843 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 Avoid at all costs 134 150 \N \N \N 2026-01-31 15:00:13.408805 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "there was no car available for us", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "negative", "end_char": 86, "evidence": "The staff was completely unhelpful", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "Avoid at all costs", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} e47b7105f9d3bb2d en 07c01d3a-3443-4031-910c-7b6feba2c100 4610 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Timing was excellent as we had the course to ourselves 113 157 \N \N \N 2026-01-31 14:47:08.855756 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "Friendly helpful service guiding autistic son", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "They were patient and kind", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "he absolutely loved it. So much so we went back a week later", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Timing was excellent as we had the course to ourselves", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} f6d55471f8bf6e4b en a510c278-87b9-45f4-9d0a-e60ff4f30662 4611 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Highly recommend it for a bit of fun. 174 205 \N \N \N 2026-01-31 14:47:14.908853 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 4612 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 2 3 \N 0.80 reasonable cost and a good fun track with good karts. 66 103 \N \N \N 2026-01-31 14:47:14.912833 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 4613 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 2 3 \N 0.80 Nice roof terrace for spectators and a cafe/bar for food & drinks. 106 144 \N \N \N 2026-01-31 14:47:14.917141 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 4614 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 2 3 \N 0.90 Had a great time and really enjoyed our race. 43 78 \N \N \N 2026-01-31 14:47:14.919465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "Highly recommend it for a bit of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "reasonable cost and a good fun track with good karts.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Had a great time and really enjoyed our race.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}], "unmapped": []} c3413c96057d10ea en a510c278-87b9-45f4-9d0a-e60ff4f30662 4702 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 3 \N 0.90 greeted me with a smile 56 78 \N \N \N 2026-01-31 14:57:49.091503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 367}], "unmapped": [{"label": "Shuttle Accessibility", "evidence": "the shuttle to the rental is not that easy to find", "confidence": 0.6}, {"label": "Morning Rush Impact", "evidence": "there is a morning rush if you pick up the car around 11:00-12:00", "confidence": 0.6}]} 67f0e87b93f80cca en 07c01d3a-3443-4031-910c-7b6feba2c100 4615 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Amazing go karting, very professional and authentic. 0 38 \N \N \N 2026-01-31 14:47:21.636037 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Amazing go karting, very professional and authentic.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "well kept and unique track which is a pleasure to race on!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "They have amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "The atmosphere is very welcoming and authentic giving a true racing experience.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 334}, {"details": null, "valence": "positive", "end_char": 455, "evidence": "I would highly recommend a few races here no matter the time of day", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 397}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 4934 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE Food_Dining.Cafe FOOD_DINING 1.2 ATTENTIVENESS + 3 3 \N 0.90 attentive service 90 107 \N \N \N 2026-01-31 15:02:07.931178 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "cozy, personalized experience", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "attentive service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "refreshing alternative to larger coffee franchises", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} cd87b42a42b457d1 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4616 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 well kept and unique track which is a pleasure to race on! 39 83 \N \N \N 2026-01-31 14:47:21.640064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Amazing go karting, very professional and authentic.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "well kept and unique track which is a pleasure to race on!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "They have amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "The atmosphere is very welcoming and authentic giving a true racing experience.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 334}, {"details": null, "valence": "positive", "end_char": 455, "evidence": "I would highly recommend a few races here no matter the time of day", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 397}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 4617 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 They have amazing staff there getting you on the track quickly and efficiently 84 133 \N \N \N 2026-01-31 14:47:21.64273 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Amazing go karting, very professional and authentic.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "well kept and unique track which is a pleasure to race on!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "They have amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "The atmosphere is very welcoming and authentic giving a true racing experience.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 334}, {"details": null, "valence": "positive", "end_char": 455, "evidence": "I would highly recommend a few races here no matter the time of day", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 397}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 4618 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 The atmosphere is very welcoming and authentic giving a true racing experience. 334 396 \N \N \N 2026-01-31 14:47:21.644787 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Amazing go karting, very professional and authentic.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "well kept and unique track which is a pleasure to race on!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "They have amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "The atmosphere is very welcoming and authentic giving a true racing experience.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 334}, {"details": null, "valence": "positive", "end_char": 455, "evidence": "I would highly recommend a few races here no matter the time of day", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 397}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 4703 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY ± 2 2 \N 0.70 need to wait for 2+ hours if the check in is understaffed 174 218 \N \N \N 2026-01-31 14:57:49.098293 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 367}], "unmapped": [{"label": "Shuttle Accessibility", "evidence": "the shuttle to the rental is not that easy to find", "confidence": 0.6}, {"label": "Morning Rush Impact", "evidence": "there is a morning rush if you pick up the car around 11:00-12:00", "confidence": 0.6}]} 67f0e87b93f80cca en 07c01d3a-3443-4031-910c-7b6feba2c100 4619 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 I would highly recommend a few races here no matter the time of day 397 455 \N \N \N 2026-01-31 14:47:21.647536 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Amazing go karting, very professional and authentic.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "well kept and unique track which is a pleasure to race on!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 133, "evidence": "They have amazing staff there getting you on the track quickly and efficiently", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 396, "evidence": "The atmosphere is very welcoming and authentic giving a true racing experience.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 334}, {"details": null, "valence": "positive", "end_char": 455, "evidence": "I would highly recommend a few races here no matter the time of day", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 397}], "unmapped": []} 368970a5c8b794ae en a510c278-87b9-45f4-9d0a-e60ff4f30662 4620 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 2 3 \N 0.90 Great venue, good customer service. 0 30 \N \N \N 2026-01-31 14:47:25.103829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great venue, good customer service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Some of the younger staff speaks English well.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "accessibility by bike is good as it has a new bike lane going right by the track.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c0fc88c16fad474e en a510c278-87b9-45f4-9d0a-e60ff4f30662 4621 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 2 3 \N 0.90 Some of the younger staff speaks English well. 31 66 \N \N \N 2026-01-31 14:47:25.107915 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great venue, good customer service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Some of the younger staff speaks English well.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "accessibility by bike is good as it has a new bike lane going right by the track.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c0fc88c16fad474e en a510c278-87b9-45f4-9d0a-e60ff4f30662 5714 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_LEVEL ± 2 2 \N 0.80 A little expensive the cocktails, but the entrance was very cheap 49 83 \N \N \N 2026-01-31 15:18:11.185974 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "good music, nice guys", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "mixed", "end_char": 83, "evidence": "A little expensive the cocktails, but the entrance was very cheap", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Absolutely a good place to have a gay night in Vilnius", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}], "unmapped": []} 322cc0435d8469c0 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4622 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 2 3 \N 0.90 accessibility by bike is good as it has a new bike lane going right by the track. 157 206 \N \N \N 2026-01-31 14:47:25.111374 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "Great venue, good customer service.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Some of the younger staff speaks English well.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 31}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "accessibility by bike is good as it has a new bike lane going right by the track.", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 157}], "unmapped": []} c0fc88c16fad474e en a510c278-87b9-45f4-9d0a-e60ff4f30662 4623 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 2 3 \N 0.90 Price was reasonable 43 63 \N \N \N 2026-01-31 14:47:27.535498 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Price was reasonable", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "good customer service", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} c42d740b4802dc2e en a510c278-87b9-45f4-9d0a-e60ff4f30662 4624 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 2 3 \N 0.90 good customer service 66 85 \N \N \N 2026-01-31 14:47:27.539253 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "Price was reasonable", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "good customer service", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}], "unmapped": []} c42d740b4802dc2e en a510c278-87b9-45f4-9d0a-e60ff4f30662 4625 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 We will definitely be returning when we visit next. 164 197 \N \N \N 2026-01-31 14:47:31.205805 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "We will definitely be returning when we visit next.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Really easy to find, you can either pre book or pay when you arrive.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "My boys had such a fab time and haven't stopped going on about it.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 7515cc510ad129f5 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4626 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 3 3 \N 0.90 Really easy to find, you can either pre book or pay when you arrive. 66 113 \N \N \N 2026-01-31 14:47:31.211779 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "We will definitely be returning when we visit next.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Really easy to find, you can either pre book or pay when you arrive.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "My boys had such a fab time and haven't stopped going on about it.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 7515cc510ad129f5 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5239 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s5U2FuaHJTV2hvZW5kRlJrUk5ZVWhIZEZkS1VuYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 sin duda son los mejores del sector. 56 85 \N \N \N 2026-01-31 15:09:05.081659 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "sin duda son los mejores del sector.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 6658e7973c47556d es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4627 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 My boys had such a fab time and haven't stopped going on about it. 43 85 \N \N \N 2026-01-31 14:47:31.214386 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "We will definitely be returning when we visit next.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "Really easy to find, you can either pre book or pay when you arrive.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "My boys had such a fab time and haven't stopped going on about it.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 7515cc510ad129f5 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4628 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 best price around 36 52 \N \N \N 2026-01-31 14:47:34.69582 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 52, "evidence": "best price around", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "not very crowded", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Great circuit", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} cb9a900114c479d9 en a510c278-87b9-45f4-9d0a-e60ff4f30662 6 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Went on the off chance we could rise. Managed to g... 0 50 \N \N \N 2026-01-31 02:05:33.599408 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4629 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 not very crowded 20 34 \N \N \N 2026-01-31 14:47:34.700348 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 52, "evidence": "best price around", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "not very crowded", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Great circuit", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} cb9a900114c479d9 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4630 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Great circuit 0 12 \N \N \N 2026-01-31 14:47:34.703034 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 52, "evidence": "best price around", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "not very crowded", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 12, "evidence": "Great circuit", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} cb9a900114c479d9 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4631 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Very fun track where you can have some good races with your friends 0 66 \N \N \N 2026-01-31 14:47:36.5855 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Very fun track where you can have some good races with your friends", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 72439a7e32e07cd9 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4632 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RELIABILITY - 2 3 \N 0.90 They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING 0 83 \N \N \N 2026-01-31 14:47:40.354358 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "They hadn't the decency to call Us!!", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 136, "evidence": "WHEN I RANG I GOT HUNG UP ON", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 5bfaaba664565ba7 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4633 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMMUNICATION - 2 3 \N 0.90 They hadn't the decency to call Us!! 164 197 \N \N \N 2026-01-31 14:47:40.359755 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "They hadn't the decency to call Us!!", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 136, "evidence": "WHEN I RANG I GOT HUNG UP ON", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 5bfaaba664565ba7 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5575 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 a un precio asequible 54 74 \N \N \N 2026-01-31 15:15:41.730824 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Excelente. Tiene todo tipo de juguetes y otros productos a un precio asequible.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "a un precio asequible", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Buen trato.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 75}], "unmapped": []} 4790a7fb3706abed es e4f95d90-dbbe-439d-a0fd-f19088002f26 4634 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RESPONSE_QUALITY - 2 3 \N 0.90 WHEN I RANG I GOT HUNG UP ON 118 136 \N \N \N 2026-01-31 14:47:40.361679 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "They hadn't the decency to call Us!!", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 136, "evidence": "WHEN I RANG I GOT HUNG UP ON", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 5bfaaba664565ba7 en a510c278-87b9-45f4-9d0a-e60ff4f30662 7 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Came here whilst on holiday in April and loved it.... 0 50 \N \N \N 2026-01-31 02:05:33.600027 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 8 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great circuit, not very crowded and has the best p... 0 50 \N \N \N 2026-01-31 02:05:33.600691 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4635 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 the staff are good 36 50 \N \N \N 2026-01-31 14:47:44.136741 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "the staff are good", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "there is a roof terrace overview of the track and tvs that track each kart", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "You definitely feel the speed jump on the F300s", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 107}], "unmapped": []} 6dffc970a284af31 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4636 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 there is a roof terrace overview of the track and tvs that track each kart 66 106 \N \N \N 2026-01-31 14:47:44.140313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "the staff are good", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "there is a roof terrace overview of the track and tvs that track each kart", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "You definitely feel the speed jump on the F300s", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 107}], "unmapped": []} 6dffc970a284af31 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4637 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 3 3 \N 0.90 You definitely feel the speed jump on the F300s 107 138 \N \N \N 2026-01-31 14:47:44.142561 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "the staff are good", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "there is a roof terrace overview of the track and tvs that track each kart", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "You definitely feel the speed jump on the F300s", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 107}], "unmapped": []} 6dffc970a284af31 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4638 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace 0 81 \N \N \N 2026-01-31 14:47:46.84039 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "free entry you just pay to race", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 81}], "unmapped": []} 09aeee0e6fb8e7b3 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4639 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 free entry you just pay to race 81 104 \N \N \N 2026-01-31 14:47:46.841846 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "free entry you just pay to race", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 81}], "unmapped": []} 09aeee0e6fb8e7b3 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4640 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 A fun place for drivers and spectators alike. 0 38 \N \N \N 2026-01-31 14:47:49.401409 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "A fun place for drivers and spectators alike.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Has a viewing terrace and a bar for a coffee or beer.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 39}], "unmapped": []} 4d6b3e52c5f96c94 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4641 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 3 3 \N 0.90 Has a viewing terrace and a bar for a coffee or beer. 39 78 \N \N \N 2026-01-31 14:47:49.403832 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "A fun place for drivers and spectators alike.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "Has a viewing terrace and a bar for a coffee or beer.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 39}], "unmapped": []} 4d6b3e52c5f96c94 en a510c278-87b9-45f4-9d0a-e60ff4f30662 9 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Very fun track where you can have some good races ... 0 50 \N \N \N 2026-01-31 02:05:33.601498 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4642 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Muy recomendado!!! 202 218 \N \N \N 2026-01-31 14:47:55.729649 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "Muy recomendado!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención por parte de Roberta y su hija es estupenda", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza estupenda arriba donde se ve todo el circuito", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "está abierto hasta las once de la noche", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un sitio muy genial para pasar un rato en familia", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 0}], "unmapped": []} b3fa1ab006c3849d es a510c278-87b9-45f4-9d0a-e60ff4f30662 4643 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 La atención por parte de Roberta y su hija es estupenda 107 143 \N \N \N 2026-01-31 14:47:55.733049 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "Muy recomendado!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención por parte de Roberta y su hija es estupenda", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza estupenda arriba donde se ve todo el circuito", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "está abierto hasta las once de la noche", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un sitio muy genial para pasar un rato en familia", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 0}], "unmapped": []} b3fa1ab006c3849d es a510c278-87b9-45f4-9d0a-e60ff4f30662 4644 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 una terraza estupenda arriba donde se ve todo el circuito 78 116 \N \N \N 2026-01-31 14:47:55.735763 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "Muy recomendado!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención por parte de Roberta y su hija es estupenda", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza estupenda arriba donde se ve todo el circuito", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "está abierto hasta las once de la noche", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un sitio muy genial para pasar un rato en familia", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 0}], "unmapped": []} b3fa1ab006c3849d es a510c278-87b9-45f4-9d0a-e60ff4f30662 4645 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 2 3 \N 0.80 está abierto hasta las once de la noche 182 210 \N \N \N 2026-01-31 14:47:55.738136 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "Muy recomendado!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención por parte de Roberta y su hija es estupenda", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza estupenda arriba donde se ve todo el circuito", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "está abierto hasta las once de la noche", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un sitio muy genial para pasar un rato en familia", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 0}], "unmapped": []} b3fa1ab006c3849d es a510c278-87b9-45f4-9d0a-e60ff4f30662 5302 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 tener esta empresa como seguro de hogar es un acierto 134 174 \N \N \N 2026-01-31 15:10:20.513707 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "realizaron un trabajo maravilloso", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "fueron puntuales", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "limpios educados y muy profesionales", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "tener esta empresa como seguro de hogar es un acierto", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 53e17f19eca0b7a7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 10 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 1 1 \N 0.50 They cancelled 1 hour 50 mins before we were due t... 0 50 {general} \N \N 2026-01-31 02:05:33.602157 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4646 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 COMFORT + 2 3 \N 0.80 Es un sitio muy genial para pasar un rato en familia 0 56 \N \N \N 2026-01-31 14:47:55.740366 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "Muy recomendado!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "La atención por parte de Roberta y su hija es estupenda", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza estupenda arriba donde se ve todo el circuito", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 210, "evidence": "está abierto hasta las once de la noche", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 182}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Es un sitio muy genial para pasar un rato en familia", "intensity": 4, "primitive": "COMFORT", "confidence": 0.8, "start_char": 0}], "unmapped": []} b3fa1ab006c3849d es a510c278-87b9-45f4-9d0a-e60ff4f30662 4647 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto 0 90 \N \N \N 2026-01-31 14:48:01.23022 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "muy juen trazado, escapatorias perfectas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "grbte muy amable y servicial", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 122}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "volveremos pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} a08fd4d42c438f40 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4648 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 muy juen trazado, escapatorias perfectas 90 122 \N \N \N 2026-01-31 14:48:01.23218 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "muy juen trazado, escapatorias perfectas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "grbte muy amable y servicial", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 122}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "volveremos pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} a08fd4d42c438f40 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4649 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 grbte muy amable y servicial 122 145 \N \N \N 2026-01-31 14:48:01.234742 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "muy juen trazado, escapatorias perfectas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "grbte muy amable y servicial", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 122}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "volveremos pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} a08fd4d42c438f40 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4650 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RETURN_INTENT + 3 3 \N 0.90 volveremos pronto 145 161 \N \N \N 2026-01-31 14:48:01.236878 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "muy juen trazado, escapatorias perfectas", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "grbte muy amable y servicial", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 122}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "volveremos pronto", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} a08fd4d42c438f40 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4651 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 ver las carreras desde la terraza tomandote algo 0 66 \N \N \N 2026-01-31 14:48:04.108857 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "ver las carreras desde la terraza tomandote algo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "subir más arriba para tener una perspectiva más amplia", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}], "unmapped": []} 1c4f57a211228f6d es a510c278-87b9-45f4-9d0a-e60ff4f30662 4652 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMFORT + 3 3 \N 0.90 subir más arriba para tener una perspectiva más amplia 66 106 \N \N \N 2026-01-31 14:48:04.112759 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "ver las carreras desde la terraza tomandote algo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "subir más arriba para tener una perspectiva más amplia", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 66}], "unmapped": []} 1c4f57a211228f6d es a510c278-87b9-45f4-9d0a-e60ff4f30662 5039 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNld2JES29nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 estoy encantada con los resultados mi piel está estupenda 30 66 \N \N \N 2026-01-31 15:05:02.763039 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "maravilloso equipo de trabajo que son unas profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "estoy encantada con los resultados mi piel está estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8fc2cc8ed70c4a95 es 22c559a8-fabc-4916-9961-bcbd61225266 4842 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 The staff was completely unhelpful 58 86 \N \N \N 2026-01-31 15:00:13.406396 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "there was no car available for us", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "negative", "end_char": 86, "evidence": "The staff was completely unhelpful", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "Avoid at all costs", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} e47b7105f9d3bb2d en 07c01d3a-3443-4031-910c-7b6feba2c100 4653 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CLEANLINESS + 3 3 \N 0.90 Las medidas higiene son visibles en todo momento. 66 100 \N \N \N 2026-01-31 14:48:07.876972 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "Las medidas higiene son visibles en todo momento.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "La gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Sin duda volveremos a celebrar algún otro evento con ellos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 176}], "unmapped": []} b36b33c667f51c68 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4654 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ATTENTIVENESS + 3 3 \N 0.90 La gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad. 100 176 \N \N \N 2026-01-31 14:48:07.883468 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "Las medidas higiene son visibles en todo momento.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "La gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Sin duda volveremos a celebrar algún otro evento con ellos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 176}], "unmapped": []} b36b33c667f51c68 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4655 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Sin duda volveremos a celebrar algún otro evento con ellos. 176 213 \N \N \N 2026-01-31 14:48:07.885933 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 100, "evidence": "Las medidas higiene son visibles en todo momento.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "La gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 213, "evidence": "Sin duda volveremos a celebrar algún otro evento con ellos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 176}], "unmapped": []} b36b33c667f51c68 es a510c278-87b9-45f4-9d0a-e60ff4f30662 11 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Been coming here once a year since about 2019 now ... 0 50 \N \N \N 2026-01-31 02:05:33.602705 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 12 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Fantastic Track with supermoto and mini motorbikes... 0 50 \N \N \N 2026-01-31 02:05:33.603265 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4656 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 Lugar fantástico, situado en uno de los lugares con más encanto de España 0 70 \N \N \N 2026-01-31 14:48:10.869801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Lugar fantástico, situado en uno de los lugares con más encanto de España", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "De fácil acceso", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Lo recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} c73ed9c1fddb6ee4 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4657 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE Entertainment.GoKarts ENTERTAINMENT 1.2 ACCESSIBILITY + 3 3 \N 0.90 De fácil acceso 138 153 \N \N \N 2026-01-31 14:48:10.874353 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Lugar fantástico, situado en uno de los lugares con más encanto de España", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "De fácil acceso", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Lo recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} c73ed9c1fddb6ee4 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4658 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Lo recomiendo. 184 197 \N \N \N 2026-01-31 14:48:10.883204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Lugar fantástico, situado en uno de los lugares con más encanto de España", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "De fácil acceso", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "Lo recomiendo.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} c73ed9c1fddb6ee4 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4659 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Recomendable. 202 214 \N \N \N 2026-01-31 14:48:17.666608 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 214, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "personal súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "los karts funcionan bien", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 32df837b0a4a2617 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4660 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 personal súper amable 66 84 \N \N \N 2026-01-31 14:48:17.672461 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 214, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "personal súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "los karts funcionan bien", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 32df837b0a4a2617 es a510c278-87b9-45f4-9d0a-e60ff4f30662 13 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 A fun place for drivers and spectators alike. Has ... 0 50 \N \N \N 2026-01-31 02:05:33.603742 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 14 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Es un sitio muy genial para pasar un rato en famil... 0 50 \N \N \N 2026-01-31 02:05:33.604228 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4661 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 los karts funcionan bien 186 206 \N \N \N 2026-01-31 14:48:17.675044 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 214, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "personal súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "los karts funcionan bien", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 32df837b0a4a2617 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4662 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero 118 176 \N \N \N 2026-01-31 14:48:17.678116 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 214, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "personal súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "los karts funcionan bien", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 32df837b0a4a2617 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4663 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras 92 144 \N \N \N 2026-01-31 14:48:17.680082 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 214, "evidence": "Recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "personal súper amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 206, "evidence": "los karts funcionan bien", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "positive", "end_char": 176, "evidence": "su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 32df837b0a4a2617 es a510c278-87b9-45f4-9d0a-e60ff4f30662 4664 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 una terraza con sombra mientras se espera 83 116 \N \N \N 2026-01-31 14:48:25.378451 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza con sombra mientras se espera", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "los coches van bien y lo mejor de todo es que se puede correr", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "esta es la que más me ha gustado con diferencia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 0ef3e5eff438d08a es a510c278-87b9-45f4-9d0a-e60ff4f30662 5303 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 muy eficiente 66 82 \N \N \N 2026-01-31 15:10:23.225013 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "muy eficiente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "ha sido amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Recomiendo 💯", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} a41c2a8a690c5f38 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 15 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Un sitio perfecto para pasar un buen rato, muy bue... 0 50 \N \N \N 2026-01-31 02:05:33.604847 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 16 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Estuvo muy bien puedes ver las carreras desde la t... 0 50 \N \N \N 2026-01-31 02:05:33.605466 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4665 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 personal amable 138 153 \N \N \N 2026-01-31 14:48:25.382034 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza con sombra mientras se espera", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "los coches van bien y lo mejor de todo es que se puede correr", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "esta es la que más me ha gustado con diferencia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 0ef3e5eff438d08a es a510c278-87b9-45f4-9d0a-e60ff4f30662 4666 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 los coches van bien y lo mejor de todo es que se puede correr 34 83 \N \N \N 2026-01-31 14:48:25.38525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza con sombra mientras se espera", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "los coches van bien y lo mejor de todo es que se puede correr", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "esta es la que más me ha gustado con diferencia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 0ef3e5eff438d08a es a510c278-87b9-45f4-9d0a-e60ff4f30662 4667 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 esta es la que más me ha gustado con diferencia 116 138 \N \N \N 2026-01-31 14:48:25.387845 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "una terraza con sombra mientras se espera", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "personal amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "los coches van bien y lo mejor de todo es que se puede correr", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "esta es la que más me ha gustado con diferencia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 0ef3e5eff438d08a es a510c278-87b9-45f4-9d0a-e60ff4f30662 4701 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AVAILABILITY + 2 3 \N 0.80 During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars. 166 238 \N \N \N 2026-01-31 14:49:09.423335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Friendly folks.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "they’ll be happy to let you write down your list of drivers and cars on a piece of paper.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they can put together a race for the whole family in different car types, even tandem for the little ones.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 238, "evidence": "During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 166}], "unmapped": []} 95aa6616a20d25e3 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4704 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMFORT + 2 3 \N 0.90 Very comfortable ride 367 389 \N \N \N 2026-01-31 14:57:49.100674 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 367}], "unmapped": [{"label": "Shuttle Accessibility", "evidence": "the shuttle to the rental is not that easy to find", "confidence": 0.6}, {"label": "Morning Rush Impact", "evidence": "there is a morning rush if you pick up the car around 11:00-12:00", "confidence": 0.6}]} 67f0e87b93f80cca en 07c01d3a-3443-4031-910c-7b6feba2c100 17 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Hemos celebrado el cumpleaños de una niña y ha sid... 0 50 \N \N \N 2026-01-31 02:05:33.606088 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4705 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.60 the shuttle to the rental is not that easy to find \N \N {"Shuttle Accessibility"} \N \N 2026-01-31 14:57:49.101964 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 367}], "unmapped": [{"label": "Shuttle Accessibility", "evidence": "the shuttle to the rental is not that easy to find", "confidence": 0.6}, {"label": "Morning Rush Impact", "evidence": "there is a morning rush if you pick up the car around 11:00-12:00", "confidence": 0.6}]} 67f0e87b93f80cca en 07c01d3a-3443-4031-910c-7b6feba2c100 4668 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 Fabulous track and an exciting way to pass time in the region. 0 61 \N \N \N 2026-01-31 14:48:31.153745 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Fabulous track and an exciting way to pass time in the region.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Well organised system, observing safety rules.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "For €12 or less you get 10 circuits of excitement and are provided with a race helmet.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Highly recommended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 159}], "unmapped": []} 9f6855c20ccbbb8d en a510c278-87b9-45f4-9d0a-e60ff4f30662 4669 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SAFETY + 3 3 \N 0.90 Well organised system, observing safety rules. 63 95 \N \N \N 2026-01-31 14:48:31.158363 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Fabulous track and an exciting way to pass time in the region.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Well organised system, observing safety rules.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "For €12 or less you get 10 circuits of excitement and are provided with a race helmet.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Highly recommended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 159}], "unmapped": []} 9f6855c20ccbbb8d en a510c278-87b9-45f4-9d0a-e60ff4f30662 4670 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 For €12 or less you get 10 circuits of excitement and are provided with a race helmet. 97 157 \N \N \N 2026-01-31 14:48:31.161525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Fabulous track and an exciting way to pass time in the region.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Well organised system, observing safety rules.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "For €12 or less you get 10 circuits of excitement and are provided with a race helmet.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Highly recommended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 159}], "unmapped": []} 9f6855c20ccbbb8d en a510c278-87b9-45f4-9d0a-e60ff4f30662 4671 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Highly recommended. 159 177 \N \N \N 2026-01-31 14:48:31.164574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "Fabulous track and an exciting way to pass time in the region.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Well organised system, observing safety rules.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "For €12 or less you get 10 circuits of excitement and are provided with a race helmet.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 177, "evidence": "Highly recommended.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 159}], "unmapped": []} 9f6855c20ccbbb8d en a510c278-87b9-45f4-9d0a-e60ff4f30662 18 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Lugar fantástico, situado en uno de los lugares co... 0 50 \N \N \N 2026-01-31 02:05:33.606661 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4672 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED ± 2 2 \N 0.80 you have to wait around an hour before it's your turn if you don't book a timeslot 56 103 \N \N \N 2026-01-31 14:48:35.494257 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 103, "evidence": "you have to wait around an hour before it's your turn if you don't book a timeslot", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "I absolutely dislike the karts comfort", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "neutral", "end_char": 284, "evidence": "that's something that the staff can't notice beforehand so I don't blame them", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 236}], "unmapped": []} 7b629d5ba93f4061 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4673 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMFORT - 2 2 \N 0.90 I absolutely dislike the karts comfort 158 189 \N \N \N 2026-01-31 14:48:35.496979 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 103, "evidence": "you have to wait around an hour before it's your turn if you don't book a timeslot", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "I absolutely dislike the karts comfort", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "neutral", "end_char": 284, "evidence": "that's something that the staff can't notice beforehand so I don't blame them", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 236}], "unmapped": []} 7b629d5ba93f4061 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4674 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 ACKNOWLEDGMENT 0 1 2 \N 0.70 that's something that the staff can't notice beforehand so I don't blame them 236 284 \N \N \N 2026-01-31 14:48:35.499537 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 103, "evidence": "you have to wait around an hour before it's your turn if you don't book a timeslot", "intensity": 3, "primitive": "SPEED", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "I absolutely dislike the karts comfort", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "neutral", "end_char": 284, "evidence": "that's something that the staff can't notice beforehand so I don't blame them", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 236}], "unmapped": []} 7b629d5ba93f4061 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4675 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMPETENCE + 3 3 \N 0.90 the Marshalls were excellent in helping them 56 83 \N \N \N 2026-01-31 14:48:39.171492 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "the Marshalls were excellent in helping them", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Great track and cars", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "very reasonable prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4e4862a921a835af en a510c278-87b9-45f4-9d0a-e60ff4f30662 4676 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 AMBIANCE + 3 3 \N 0.90 Great track and cars 30 48 \N \N \N 2026-01-31 14:48:39.175746 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "the Marshalls were excellent in helping them", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Great track and cars", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "very reasonable prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4e4862a921a835af en a510c278-87b9-45f4-9d0a-e60ff4f30662 4677 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 PRICE_FAIRNESS + 3 3 \N 0.90 very reasonable prices 85 104 \N \N \N 2026-01-31 14:48:39.179066 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "the Marshalls were excellent in helping them", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Great track and cars", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "very reasonable prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} 4e4862a921a835af en a510c278-87b9-45f4-9d0a-e60ff4f30662 4678 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 Great place to have a laugh and battle your friends on the track. 0 66 \N \N \N 2026-01-31 14:48:42.595231 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Great place to have a laugh and battle your friends on the track.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Very good staff and facilities", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}], "unmapped": []} 47db8b92053b5dac en a510c278-87b9-45f4-9d0a-e60ff4f30662 4679 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 COMPETENCE + 3 3 \N 0.90 Very good staff and facilities 67 90 \N \N \N 2026-01-31 14:48:42.599528 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Great place to have a laugh and battle your friends on the track.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "Very good staff and facilities", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 67}], "unmapped": []} 47db8b92053b5dac en a510c278-87b9-45f4-9d0a-e60ff4f30662 5574 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Excelente. Tiene todo tipo de juguetes y otros productos a un precio asequible. 0 70 \N \N \N 2026-01-31 15:15:41.728366 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Excelente. Tiene todo tipo de juguetes y otros productos a un precio asequible.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "a un precio asequible", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Buen trato.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 75}], "unmapped": []} 4790a7fb3706abed es e4f95d90-dbbe-439d-a0fd-f19088002f26 4680 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 We will be back again. 66 82 \N \N \N 2026-01-31 14:48:48.180201 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "We will be back again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Very friendly staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "Fair value too.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "Brilliant fun this morning.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Great karts and a fun track.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 76602d9916166b71 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5192 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 2 \N 0.90 Poco profesionales 186 203 \N \N \N 2026-01-31 15:08:12.681038 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 185, "evidence": "me contestan pues ya lo sabes", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "Poco profesionales", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}], "unmapped": [{"label": "Service Delay", "evidence": "5 días después me llama un vecino que está mojándose el coche la avería", "confidence": 0.6}]} c0aa3c745dcda2b8 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4681 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 3 3 \N 0.90 Very friendly staff. 24 42 \N \N \N 2026-01-31 14:48:48.207335 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "We will be back again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Very friendly staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "Fair value too.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "Brilliant fun this morning.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Great karts and a fun track.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 76602d9916166b71 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4682 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 3 3 \N 0.90 Fair value too. 54 67 \N \N \N 2026-01-31 14:48:48.213305 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "We will be back again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Very friendly staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "Fair value too.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "Brilliant fun this morning.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Great karts and a fun track.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 76602d9916166b71 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5557 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 Le doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo 0 73 \N \N \N 2026-01-31 15:15:20.216948 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 138, "evidence": "personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 73, "evidence": "Le doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} e2ff01afa71a1412 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5558 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 3 \N 0.90 personajes como estos no deberían trabajar cara al público 292 335 \N \N \N 2026-01-31 15:15:24.490955 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 335, "evidence": "personajes como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "un tipo me venga a decir donde y que le compro a mi bebe", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 263}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "no están homologados pa q los oiga bien", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "hoy será el último día q pisé vuestros establecimientos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 358}], "unmapped": []} 9dfdf75b43aa692e es e4f95d90-dbbe-439d-a0fd-f19088002f26 5559 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 HONESTY - 2 3 \N 0.90 un tipo me venga a decir donde y que le compro a mi bebe 263 303 \N \N \N 2026-01-31 15:15:24.496272 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 335, "evidence": "personajes como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "un tipo me venga a decir donde y que le compro a mi bebe", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 263}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "no están homologados pa q los oiga bien", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "hoy será el último día q pisé vuestros establecimientos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 358}], "unmapped": []} 9dfdf75b43aa692e es e4f95d90-dbbe-439d-a0fd-f19088002f26 5560 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 RELIABILITY - 2 3 \N 0.90 no están homologados pa q los oiga bien 174 206 \N \N \N 2026-01-31 15:15:24.497955 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 335, "evidence": "personajes como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "un tipo me venga a decir donde y que le compro a mi bebe", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 263}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "no están homologados pa q los oiga bien", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "hoy será el último día q pisé vuestros establecimientos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 358}], "unmapped": []} 9dfdf75b43aa692e es e4f95d90-dbbe-439d-a0fd-f19088002f26 5561 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND - 3 3 \N 0.90 hoy será el último día q pisé vuestros establecimientos 358 396 \N \N \N 2026-01-31 15:15:24.499661 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 335, "evidence": "personajes como estos no deberían trabajar cara al público", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 303, "evidence": "un tipo me venga a decir donde y que le compro a mi bebe", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 263}, {"details": null, "valence": "negative", "end_char": 206, "evidence": "no están homologados pa q los oiga bien", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 396, "evidence": "hoy será el último día q pisé vuestros establecimientos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 358}], "unmapped": []} 9dfdf75b43aa692e es e4f95d90-dbbe-439d-a0fd-f19088002f26 5562 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Lo recomiendo un 10. 106 123 \N \N \N 2026-01-31 15:15:26.816305 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 123, "evidence": "Lo recomiendo un 10.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "bastante surtidos de jugetes ...puzles, muñecas, todoo", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 42}], "unmapped": []} 9216d7dc008465e7 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5563 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 bastante surtidos de jugetes ...puzles, muñecas, todoo 42 83 \N \N \N 2026-01-31 15:15:26.819824 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 123, "evidence": "Lo recomiendo un 10.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "bastante surtidos de jugetes ...puzles, muñecas, todoo", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 42}], "unmapped": []} 9216d7dc008465e7 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5564 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Fantástica juguetería, una de las preferidas de mis hijos 0 66 \N \N \N 2026-01-31 15:15:30.216611 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Fantástica juguetería, una de las preferidas de mis hijos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "personal superamable, siempre me han buscado los productos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "en general para mí donde más económico he encontrado las cosas", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} 726d5ce5342bcb56 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5565 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 3 3 \N 0.90 personal superamable, siempre me han buscado los productos 66 113 \N \N \N 2026-01-31 15:15:30.219393 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Fantástica juguetería, una de las preferidas de mis hijos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "personal superamable, siempre me han buscado los productos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "en general para mí donde más económico he encontrado las cosas", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} 726d5ce5342bcb56 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5566 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_FAIRNESS + 3 3 \N 0.90 en general para mí donde más económico he encontrado las cosas 113 155 \N \N \N 2026-01-31 15:15:30.220933 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Fantástica juguetería, una de las preferidas de mis hijos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "personal superamable, siempre me han buscado los productos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "en general para mí donde más económico he encontrado las cosas", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 113}], "unmapped": []} 726d5ce5342bcb56 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5567 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 2 3 \N 0.90 es mi lugar favorito para comprar juguetes 56 83 \N \N \N 2026-01-31 15:15:32.784263 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "es mi lugar favorito para comprar juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "A los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 84}], "unmapped": []} e95a1a7023c99fca es e4f95d90-dbbe-439d-a0fd-f19088002f26 5568 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.80 A los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes 84 138 \N \N \N 2026-01-31 15:15:32.787232 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "es mi lugar favorito para comprar juguetes", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "A los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 84}], "unmapped": []} e95a1a7023c99fca es e4f95d90-dbbe-439d-a0fd-f19088002f26 5569 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 la recomiendo para los reyes cumples y demás. 82 118 \N \N \N 2026-01-31 15:15:36.252154 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "la recomiendo para los reyes cumples y demás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy buenos juguetes a muy buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "es divertida amigable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}], "unmapped": []} 4eefe3b9507c8ae9 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5570 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 muy buenos juguetes a muy buen precio 54 80 \N \N \N 2026-01-31 15:15:36.255781 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "la recomiendo para los reyes cumples y demás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy buenos juguetes a muy buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "es divertida amigable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}], "unmapped": []} 4eefe3b9507c8ae9 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5571 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 es divertida amigable 36 56 \N \N \N 2026-01-31 15:15:36.258767 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "la recomiendo para los reyes cumples y demás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "muy buenos juguetes a muy buen precio", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "es divertida amigable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 36}], "unmapped": []} 4eefe3b9507c8ae9 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5572 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 Gran surtido. 0 12 \N \N \N 2026-01-31 15:15:38.480009 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gran surtido.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 13}], "unmapped": []} 399dde7b78e5c312 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5573 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB Retail.Stores.Toy_store RETAIL 1.0 COMPETENCE + 2 3 \N 0.90 Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo 13 83 \N \N \N 2026-01-31 15:15:38.482046 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Gran surtido.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Buenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 13}], "unmapped": []} 399dde7b78e5c312 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5576 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 Buen trato. 75 84 \N \N \N 2026-01-31 15:15:41.733059 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "Excelente. Tiene todo tipo de juguetes y otros productos a un precio asequible.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "a un precio asequible", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Buen trato.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 75}], "unmapped": []} 4790a7fb3706abed es e4f95d90-dbbe-439d-a0fd-f19088002f26 5577 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE Retail.Stores.Toy_store RETAIL 1.0 FRICTION - 2 2 \N 0.80 Un error. Actualicen el sistema, como por ejemplo el Decathlon. 66 113 \N \N \N 2026-01-31 15:15:43.914092 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "Un error. Actualicen el sistema, como por ejemplo el Decathlon.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 66}], "unmapped": [{"label": "Customer Experience Issue", "evidence": "Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima.", "confidence": 0.7}]} e6906d978eabd193 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5578 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima. \N \N {"Customer Experience Issue"} \N \N 2026-01-31 15:15:43.917448 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "Un error. Actualicen el sistema, como por ejemplo el Decathlon.", "intensity": 3, "primitive": "FRICTION", "confidence": 0.8, "start_char": 66}], "unmapped": [{"label": "Customer Experience Issue", "evidence": "Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima.", "confidence": 0.7}]} e6906d978eabd193 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5579 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNiNVBYcHhRRRAB Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED - 3 3 \N 0.90 No compren la mascara de tiranosaurios rex 0 38 \N \N \N 2026-01-31 15:15:45.21557 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 38, "evidence": "No compren la mascara de tiranosaurios rex", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} 1f725d207fcd52ea es e4f95d90-dbbe-439d-a0fd-f19088002f26 5580 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Los mini precios están muy baratos. 20 45 \N \N \N 2026-01-31 15:15:47.430107 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Los mini precios están muy baratos.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "me podría comprar la Nikki Entera.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}], "unmapped": []} e24b64da804fea68 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5581 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 me podría comprar la Nikki Entera. 45 70 \N \N \N 2026-01-31 15:15:47.431637 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "Los mini precios están muy baratos.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "me podría comprar la Nikki Entera.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 45}], "unmapped": []} e24b64da804fea68 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5582 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 tiene los mejores juguetes de mi infancia 66 101 \N \N \N 2026-01-31 15:15:50.771222 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "tiene los mejores juguetes de mi infancia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 46, "evidence": "sus precios un poco elevados", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "que recuerdos", "intensity": 3, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 103}], "unmapped": []} 7f23851374d83096 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5583 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 1 2 \N 0.80 sus precios un poco elevados 24 46 \N \N \N 2026-01-31 15:15:50.78017 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "tiene los mejores juguetes de mi infancia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 46, "evidence": "sus precios un poco elevados", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "que recuerdos", "intensity": 3, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 103}], "unmapped": []} 7f23851374d83096 es e4f95d90-dbbe-439d-a0fd-f19088002f26 19 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Ha sido mi primera experiencia en Karts, y desde l... 0 50 \N \N \N 2026-01-31 02:05:33.60718 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5584 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Retail.Stores.Toy_store RETAIL 1.0 ACKNOWLEDGMENT + 2 2 \N 0.70 que recuerdos 103 115 \N \N \N 2026-01-31 15:15:50.78616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 101, "evidence": "tiene los mejores juguetes de mi infancia", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 46, "evidence": "sus precios un poco elevados", "intensity": 2, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 115, "evidence": "que recuerdos", "intensity": 3, "primitive": "ACKNOWLEDGMENT", "confidence": 0.7, "start_char": 103}], "unmapped": []} 7f23851374d83096 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5585 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_TRANSPARENCY + 3 3 \N 0.90 los precios bien claros 36 56 \N \N \N 2026-01-31 15:15:53.70915 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "los precios bien claros", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "mucha variedad, yo diría que casi todo lo que existe está allí", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "todo en su sitio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 10}], "unmapped": []} db25a148cab7c094 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5586 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 mucha variedad, yo diría que casi todo lo que existe está allí 58 103 \N \N \N 2026-01-31 15:15:53.712895 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "los precios bien claros", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "mucha variedad, yo diría que casi todo lo que existe está allí", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "todo en su sitio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 10}], "unmapped": []} db25a148cab7c094 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5587 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Retail.Stores.Toy_store RETAIL 1.0 CLEANLINESS + 3 3 \N 0.90 todo en su sitio 10 24 \N \N \N 2026-01-31 15:15:53.714641 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "los precios bien claros", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "mucha variedad, yo diría que casi todo lo que existe está allí", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "todo en su sitio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 10}], "unmapped": []} db25a148cab7c094 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5588 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER + 3 3 \N 0.90 las dependientas son super amables!! 54 83 \N \N \N 2026-01-31 15:15:56.159832 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "las dependientas son super amables!!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Espectacular juguetería, para cualquier peque es un paraíso", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9e5356b11f1ad866 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5589 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Espectacular juguetería, para cualquier peque es un paraíso 0 61 \N \N \N 2026-01-31 15:15:56.163571 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "las dependientas son super amables!!", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "Espectacular juguetería, para cualquier peque es un paraíso", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 9e5356b11f1ad866 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5590 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 3 \N 0.90 LAS DUEÑAS unas ANTIPATICAS 0 30 \N \N \N 2026-01-31 15:15:58.40562 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "LAS DUEÑAS unas ANTIPATICAS", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "los mismos juguetes en mgi a mitad de precio", "intensity": 4, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 85}], "unmapped": []} 9d736e4b7997d9d5 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5591 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL - 2 3 \N 0.90 los mismos juguetes en mgi a mitad de precio 85 118 \N \N \N 2026-01-31 15:15:58.407618 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "LAS DUEÑAS unas ANTIPATICAS", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "los mismos juguetes en mgi a mitad de precio", "intensity": 4, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 85}], "unmapped": []} 9d736e4b7997d9d5 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5592 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSURYLXNqYnpRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Bardzo dobrze zaopatrzony sklep z zabawkami. 0 39 \N \N \N 2026-01-31 15:15:59.790962 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 39, "evidence": "Bardzo dobrze zaopatrzony sklep z zabawkami.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 31328cea28fd6c6d en e4f95d90-dbbe-439d-a0fd-f19088002f26 4823 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 2 3 \N 0.90 my credit card was charged additional 180 eur without any documentation. 108 144 \N \N \N 2026-01-31 14:59:54.2462 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Getting and returning car is a nightmare be prepated to miss your flight.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}], "unmapped": []} fd277519e55ecd41 en 07c01d3a-3443-4031-910c-7b6feba2c100 5593 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 CLEANLINESS + 2 2 \N 0.80 la tienda ordenada 118 134 \N \N \N 2026-01-31 15:16:04.758106 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "la tienda ordenada", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "muchas cosas con oferta", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}], "unmapped": []} f414d917abcde8fd es e4f95d90-dbbe-439d-a0fd-f19088002f26 5770 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-47 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOVERY + 2 3 \N 0.90 served us free better one long islands 66 97 \N \N \N 2026-01-31 15:19:10.447412 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "the best reaction ever!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 97, "evidence": "served us free better one long islands", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 66}], "unmapped": []} 369bd93e204f09a4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5594 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY ± 2 2 \N 0.70 Algunos juguetes no sirven están rotos o faltan piezas 0 56 \N \N \N 2026-01-31 15:16:04.760087 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "la tienda ordenada", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "muchas cosas con oferta", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}], "unmapped": []} f414d917abcde8fd es e4f95d90-dbbe-439d-a0fd-f19088002f26 5595 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS - 2 2 \N 0.70 te persiguen por la tienda como en los chinos 56 85 \N \N \N 2026-01-31 15:16:04.762056 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "la tienda ordenada", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "muchas cosas con oferta", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}], "unmapped": []} f414d917abcde8fd es e4f95d90-dbbe-439d-a0fd-f19088002f26 5606 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Retail.Stores.Toy_store RETAIL 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 precios económicos 30 48 \N \N \N 2026-01-31 15:16:17.23292 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "precios económicos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Facilidades de reserva", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cd3bfc82f01074f es e4f95d90-dbbe-439d-a0fd-f19088002f26 4683 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 EFFECTIVENESS + 3 3 \N 0.90 Brilliant fun this morning. 0 26 \N \N \N 2026-01-31 14:48:48.219658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "We will be back again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Very friendly staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "Fair value too.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "Brilliant fun this morning.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Great karts and a fun track.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 76602d9916166b71 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4684 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 CRAFT + 3 3 \N 0.90 Great karts and a fun track. 43 66 \N \N \N 2026-01-31 14:48:48.229557 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "We will be back again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 42, "evidence": "Very friendly staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "Fair value too.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 26, "evidence": "Brilliant fun this morning.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Great karts and a fun track.", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 43}], "unmapped": []} 76602d9916166b71 en a510c278-87b9-45f4-9d0a-e60ff4f30662 4685 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 highly recommended! 118 136 \N \N \N 2026-01-31 14:48:51.280232 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 136, "evidence": "highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "the prices are super affordable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The track is exciting and well-designed", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} c046c94dfa102afd en a510c278-87b9-45f4-9d0a-e60ff4f30662 4706 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.60 there is a morning rush if you pick up the car around 11:00-12:00 \N \N {"Morning Rush Impact"} \N \N 2026-01-31 14:57:49.102752 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "greeted me with a smile", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 218, "evidence": "need to wait for 2+ hours if the check in is understaffed", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 389, "evidence": "Very comfortable ride", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 367}], "unmapped": [{"label": "Shuttle Accessibility", "evidence": "the shuttle to the rental is not that easy to find", "confidence": 0.6}, {"label": "Morning Rush Impact", "evidence": "there is a morning rush if you pick up the car around 11:00-12:00", "confidence": 0.6}]} 67f0e87b93f80cca en 07c01d3a-3443-4031-910c-7b6feba2c100 4707 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY - 2 3 \N 0.90 the do not stick to their own contract and overcharge you substantially 157 197 \N \N \N 2026-01-31 14:57:53.889438 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 197, "evidence": "the do not stick to their own contract and overcharge you substantially", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 252, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 232}], "unmapped": [{"label": "Initial Price Concern", "evidence": "The initial price looks to good to be true - no one can expect to get a car for that price.", "confidence": 0.7}, {"label": "Fine Print Importance", "evidence": "Understandable that they want to make some money - so the fine print is important.", "confidence": 0.7}]} 65409b15f402c34d en 07c01d3a-3443-4031-910c-7b6feba2c100 4708 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 2 3 \N 0.90 I CONSIDER AS CHEATING!!! 232 252 \N \N \N 2026-01-31 14:57:53.893068 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 197, "evidence": "the do not stick to their own contract and overcharge you substantially", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 252, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 232}], "unmapped": [{"label": "Initial Price Concern", "evidence": "The initial price looks to good to be true - no one can expect to get a car for that price.", "confidence": 0.7}, {"label": "Fine Print Importance", "evidence": "Understandable that they want to make some money - so the fine print is important.", "confidence": 0.7}]} 65409b15f402c34d en 07c01d3a-3443-4031-910c-7b6feba2c100 20 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Pista bastante buena, los coches van bien y lo mej... 0 50 \N \N \N 2026-01-31 02:05:33.607796 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4709 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 The initial price looks to good to be true - no one can expect to get a car for that price. \N \N {"Initial Price Concern"} \N \N 2026-01-31 14:57:53.894882 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 197, "evidence": "the do not stick to their own contract and overcharge you substantially", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 252, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 232}], "unmapped": [{"label": "Initial Price Concern", "evidence": "The initial price looks to good to be true - no one can expect to get a car for that price.", "confidence": 0.7}, {"label": "Fine Print Importance", "evidence": "Understandable that they want to make some money - so the fine print is important.", "confidence": 0.7}]} 65409b15f402c34d en 07c01d3a-3443-4031-910c-7b6feba2c100 4710 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 Understandable that they want to make some money - so the fine print is important. \N \N {"Fine Print Importance"} \N \N 2026-01-31 14:57:53.89632 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 197, "evidence": "the do not stick to their own contract and overcharge you substantially", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 252, "evidence": "I CONSIDER AS CHEATING!!!", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 232}], "unmapped": [{"label": "Initial Price Concern", "evidence": "The initial price looks to good to be true - no one can expect to get a car for that price.", "confidence": 0.7}, {"label": "Fine Print Importance", "evidence": "Understandable that they want to make some money - so the fine print is important.", "confidence": 0.7}]} 65409b15f402c34d en 07c01d3a-3443-4031-910c-7b6feba2c100 4728 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 Staff is super friendly (they speak English and Spanish fluently) 132 174 \N \N \N 2026-01-31 14:58:14.990325 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}], "unmapped": []} 6420217188cf80a8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4711 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.80 Waited shuttle as the driver needed to check damage on the car. 197 239 \N \N \N 2026-01-31 14:57:59.463569 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 292, "evidence": "We asked him 2 times to drive us to the airport as we had a flight scheduled.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 239}], "unmapped": []} 8ac1824d1ca7911e en 07c01d3a-3443-4031-910c-7b6feba2c100 4712 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.80 Was charged another 60€ for managing the damage. 134 174 \N \N \N 2026-01-31 14:57:59.465332 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 292, "evidence": "We asked him 2 times to drive us to the airport as we had a flight scheduled.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 239}], "unmapped": []} 8ac1824d1ca7911e en 07c01d3a-3443-4031-910c-7b6feba2c100 4713 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.80 Couldn't find any of this info in terms and conditions. 174 210 \N \N \N 2026-01-31 14:57:59.466675 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 292, "evidence": "We asked him 2 times to drive us to the airport as we had a flight scheduled.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 239}], "unmapped": []} 8ac1824d1ca7911e en 07c01d3a-3443-4031-910c-7b6feba2c100 4714 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 2 3 \N 0.90 Negative atmosphere in the office people are not happy with service. 66 109 \N \N \N 2026-01-31 14:57:59.469928 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 292, "evidence": "We asked him 2 times to drive us to the airport as we had a flight scheduled.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 239}], "unmapped": []} 8ac1824d1ca7911e en 07c01d3a-3443-4031-910c-7b6feba2c100 4765 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 Pick up and return was simply and very quick. 0 0 \N \N \N 2026-01-31 14:58:58.05047 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Pick up and return was simply and very quick.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "I paid £186 deposit and got it back immediately on returning the car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "everything was very good.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5ca83c0f92d13499 en 07c01d3a-3443-4031-910c-7b6feba2c100 4715 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.80 We asked him 2 times to drive us to the airport as we had a flight scheduled. 239 292 \N \N \N 2026-01-31 14:57:59.471372 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "Waited shuttle as the driver needed to check damage on the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 197}, {"details": null, "valence": "negative", "end_char": 174, "evidence": "Was charged another 60€ for managing the damage.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 210, "evidence": "Couldn't find any of this info in terms and conditions.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "Negative atmosphere in the office people are not happy with service.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 292, "evidence": "We asked him 2 times to drive us to the airport as we had a flight scheduled.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 239}], "unmapped": []} 8ac1824d1ca7911e en 07c01d3a-3443-4031-910c-7b6feba2c100 4716 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 Left at the airport with no way of contacting. 0 43 \N \N \N 2026-01-31 14:58:05.453066 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the car we'd booked was no longer available and we'd have to pay an extra €37", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "we'd have to pay €360 (!!?) for the tiniest mark on the boot", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 698, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 663}], "unmapped": []} 75a888dc67eb63f1 en 07c01d3a-3443-4031-910c-7b6feba2c100 4717 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 Tried calling 17 times over the period of an hour but got "line busy" every time 43 95 \N \N \N 2026-01-31 14:58:05.455425 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the car we'd booked was no longer available and we'd have to pay an extra €37", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "we'd have to pay €360 (!!?) for the tiniest mark on the boot", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 698, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 663}], "unmapped": []} 75a888dc67eb63f1 en 07c01d3a-3443-4031-910c-7b6feba2c100 4718 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 the car we'd booked was no longer available and we'd have to pay an extra €37 246 307 \N \N \N 2026-01-31 14:58:05.457018 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the car we'd booked was no longer available and we'd have to pay an extra €37", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "we'd have to pay €360 (!!?) for the tiniest mark on the boot", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 698, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 663}], "unmapped": []} 75a888dc67eb63f1 en 07c01d3a-3443-4031-910c-7b6feba2c100 4766 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 I paid £186 deposit and got it back immediately on returning the car. 0 0 \N \N \N 2026-01-31 14:58:58.054368 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Pick up and return was simply and very quick.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "I paid £186 deposit and got it back immediately on returning the car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "everything was very good.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5ca83c0f92d13499 en 07c01d3a-3443-4031-910c-7b6feba2c100 4719 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 we'd have to pay €360 (!!?) for the tiniest mark on the boot 370 426 \N \N \N 2026-01-31 14:58:05.458199 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the car we'd booked was no longer available and we'd have to pay an extra €37", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "we'd have to pay €360 (!!?) for the tiniest mark on the boot", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 698, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 663}], "unmapped": []} 75a888dc67eb63f1 en 07c01d3a-3443-4031-910c-7b6feba2c100 4720 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 Predictably, we received no response from them. 663 698 \N \N \N 2026-01-31 14:58:05.460004 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 43, "evidence": "Left at the airport with no way of contacting.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "Tried calling 17 times over the period of an hour but got \\"line busy\\" every time", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 307, "evidence": "the car we'd booked was no longer available and we'd have to pay an extra €37", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 246}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "we'd have to pay €360 (!!?) for the tiniest mark on the boot", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 698, "evidence": "Predictably, we received no response from them.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 663}], "unmapped": []} 75a888dc67eb63f1 en 07c01d3a-3443-4031-910c-7b6feba2c100 21 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Fabulous track and an exciting way to pass time in... 0 50 \N \N \N 2026-01-31 02:05:33.608355 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 22 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED - 2 2 \N 0.70 Been here 2 times now in the evening, always very ... 0 50 \N \N \N 2026-01-31 02:05:33.610167 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4721 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 2 3 \N 0.90 pickup was easy and so was the return 0 31 \N \N \N 2026-01-31 14:58:10.829807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 31, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The pickup service was arranged very well and they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 277, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 235}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 279}], "unmapped": []} 231eae537d5cfb05 en 07c01d3a-3443-4031-910c-7b6feba2c100 4722 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY + 2 3 \N 0.90 The pickup service was arranged very well and they took good care of us 83 134 \N \N \N 2026-01-31 14:58:10.832845 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 31, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The pickup service was arranged very well and they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 277, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 235}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 279}], "unmapped": []} 231eae537d5cfb05 en 07c01d3a-3443-4031-910c-7b6feba2c100 4748 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 2 3 \N 0.90 This company is a scam based on my experience. 0 37 \N \N \N 2026-01-31 14:58:38.31525 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} db6ee0cbd610d795 en 07c01d3a-3443-4031-910c-7b6feba2c100 4723 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY ± 2 2 \N 0.70 booking directly with them would have been cheaper 195 233 \N \N \N 2026-01-31 14:58:10.834589 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 31, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The pickup service was arranged very well and they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 277, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 235}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 279}], "unmapped": []} 231eae537d5cfb05 en 07c01d3a-3443-4031-910c-7b6feba2c100 23 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Took my grandkids 7 & 9, they’d never driven befor... 0 50 \N \N \N 2026-01-31 02:05:33.61085 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 24 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great place to have a laugh and battle your friend... 0 50 \N \N \N 2026-01-31 02:05:33.611496 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4724 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 2 3 \N 0.90 The car was great, brand new with only 8 km driven with it 235 277 \N \N \N 2026-01-31 14:58:10.83953 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 31, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The pickup service was arranged very well and they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 277, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 235}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 279}], "unmapped": []} 231eae537d5cfb05 en 07c01d3a-3443-4031-910c-7b6feba2c100 4731 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 the car electrics went down twice on the motorway. 227 261 \N \N \N 2026-01-31 14:58:20.111098 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 404, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 366}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "this isnt enough to recommend them.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 442}], "unmapped": []} f2d8ba076efda66e en 07c01d3a-3443-4031-910c-7b6feba2c100 4725 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 2 3 \N 0.90 Overall great company, we will book again directly with them 279 319 \N \N \N 2026-01-31 14:58:10.841602 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 31, "evidence": "pickup was easy and so was the return", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "The pickup service was arranged very well and they took good care of us", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "mixed", "end_char": 233, "evidence": "booking directly with them would have been cheaper", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 277, "evidence": "The car was great, brand new with only 8 km driven with it", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 235}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Overall great company, we will book again directly with them", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 279}], "unmapped": []} 231eae537d5cfb05 en 07c01d3a-3443-4031-910c-7b6feba2c100 4726 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 would definitely recommend them! 66 90 \N \N \N 2026-01-31 14:58:14.985525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}], "unmapped": []} 6420217188cf80a8 en 07c01d3a-3443-4031-910c-7b6feba2c100 25 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Brilliant fun this morning. Very friendly staff. G... 0 50 \N \N \N 2026-01-31 02:05:33.612054 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 26 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Amazing karting circuit! The track is exciting and... 0 50 \N \N \N 2026-01-31 02:05:33.612581 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4727 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_LEVEL + 3 3 \N 0.90 Some of the cheapest prices for rental cars I found on GC. 90 132 \N \N \N 2026-01-31 14:58:14.988791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}], "unmapped": []} 6420217188cf80a8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4729 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 got the keys quickly both times and return was also very unproblematic and quick. 174 224 \N \N \N 2026-01-31 14:58:14.99198 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "would definitely recommend them!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Some of the cheapest prices for rental cars I found on GC.", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Staff is super friendly (they speak English and Spanish fluently)", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "got the keys quickly both times and return was also very unproblematic and quick.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 174}], "unmapped": []} 6420217188cf80a8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4730 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 We waited 50min for one. 118 136 \N \N \N 2026-01-31 14:58:20.107817 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 404, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 366}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "this isnt enough to recommend them.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 442}], "unmapped": []} f2d8ba076efda66e en 07c01d3a-3443-4031-910c-7b6feba2c100 4732 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 They seemed to know nothing about it despite my 100 calls about the issue. 290 335 \N \N \N 2026-01-31 14:58:20.113981 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 404, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 366}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "this isnt enough to recommend them.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 442}], "unmapped": []} f2d8ba076efda66e en 07c01d3a-3443-4031-910c-7b6feba2c100 27 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great fun for all the family, carts to suit all ag... 0 50 \N \N \N 2026-01-31 02:05:33.613131 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4733 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 1 2 \N 0.80 they are very polite and helpful at the pick up point 366 404 \N \N \N 2026-01-31 14:58:20.11966 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 404, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 366}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "this isnt enough to recommend them.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 442}], "unmapped": []} f2d8ba076efda66e en 07c01d3a-3443-4031-910c-7b6feba2c100 4734 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 this isnt enough to recommend them. 442 467 \N \N \N 2026-01-31 14:58:20.123902 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "We waited 50min for one.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 261, "evidence": "the car electrics went down twice on the motorway.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 227}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "They seemed to know nothing about it despite my 100 calls about the issue.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 404, "evidence": "they are very polite and helpful at the pick up point", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 366}, {"details": null, "valence": "negative", "end_char": 467, "evidence": "this isnt enough to recommend them.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 442}], "unmapped": []} f2d8ba076efda66e en 07c01d3a-3443-4031-910c-7b6feba2c100 4735 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 3 3 \N 0.90 "I’ve never seen a business so dedicated to fleecing customers." 0 61 \N \N \N 2026-01-31 14:58:26.103983 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 487}], "unmapped": []} 677882405e7c5bc8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4741 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Everything worked perfectly and smoothly. 85 118 \N \N \N 2026-01-31 14:58:29.226466 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 134}], "unmapped": []} 4190fd7d45cc2752 en 07c01d3a-3443-4031-910c-7b6feba2c100 5304 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 ha sido amable 56 68 \N \N \N 2026-01-31 15:10:23.227759 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "muy eficiente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "ha sido amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Recomiendo 💯", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": []} a41c2a8a690c5f38 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 28 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Such a fun experience for kids (and adults too!) W... 0 50 \N \N \N 2026-01-31 02:05:33.613611 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4736 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY - 3 3 \N 0.90 "It’s a total scam designed to catch people out." 116 147 \N \N \N 2026-01-31 14:58:26.107089 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 487}], "unmapped": []} 677882405e7c5bc8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4737 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 "I ended up paying DOUBLE for this car!!" 204 233 \N \N \N 2026-01-31 14:58:26.108928 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 487}], "unmapped": []} 677882405e7c5bc8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4738 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 3 3 \N 0.90 "the staff were incredibly aggressive." 236 267 \N \N \N 2026-01-31 14:58:26.111523 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 487}], "unmapped": []} 677882405e7c5bc8 en 07c01d3a-3443-4031-910c-7b6feba2c100 4739 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 3 3 \N 0.90 "they are just completely ignoring me." 487 516 \N \N \N 2026-01-31 14:58:26.112709 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "\\"I’ve never seen a business so dedicated to fleecing customers.\\"", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 147, "evidence": "\\"It’s a total scam designed to catch people out.\\"", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "\\"I ended up paying DOUBLE for this car!!\\"", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "\\"the staff were incredibly aggressive.\\"", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 236}, {"details": null, "valence": "negative", "end_char": 516, "evidence": "\\"they are just completely ignoring me.\\"", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 487}], "unmapped": []} 677882405e7c5bc8 en 07c01d3a-3443-4031-910c-7b6feba2c100 5751 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 pleasant to stay at an enjoy the atmosphere. 54 82 \N \N \N 2026-01-31 15:18:52.872955 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "pleasant to stay at an enjoy the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Safe, friendly, stylish", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8c5972b306c46d33 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4740 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Recommend! 164 172 \N \N \N 2026-01-31 14:58:29.223001 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 134}], "unmapped": []} 4190fd7d45cc2752 en 07c01d3a-3443-4031-910c-7b6feba2c100 4742 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.70 just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra 134 188 \N \N \N 2026-01-31 14:58:29.228299 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 172, "evidence": "Recommend!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Everything worked perfectly and smoothly.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 134}], "unmapped": []} 4190fd7d45cc2752 en 07c01d3a-3443-4031-910c-7b6feba2c100 4743 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 2 \N 0.80 Much more to pay on arrival, only credit card accepted and not very helpful. 0 78 \N \N \N 2026-01-31 14:58:34.545263 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 392}], "unmapped": []} 766e4cf09774a05e en 07c01d3a-3443-4031-910c-7b6feba2c100 4763 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 3 3 \N 0.90 car was clean and nice for the group! 112 138 \N \N \N 2026-01-31 14:58:53.689568 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Overall service experience was very good!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "car was clean and nice for the group!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "mixed", "end_char": 118, "evidence": "to have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 61}], "unmapped": []} 38a7bbfbac453063 en 07c01d3a-3443-4031-910c-7b6feba2c100 4744 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 2 \N 0.70 Pick up from airport was bad, vague instructions and phone was computer voice. 79 134 \N \N \N 2026-01-31 14:58:34.547915 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 392}], "unmapped": []} 766e4cf09774a05e en 07c01d3a-3443-4031-910c-7b6feba2c100 5755 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-42 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED 0 1 1 \N 0.70 i was harassed by a drunk man in Soho \N \N {"harassment incident"} \N \N 2026-01-31 15:18:55.614302 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 86, "evidence": "i didn't feel safe that night", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "as the security couldn't bounce him out right away", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 36}], "unmapped": [{"label": "harassment incident", "evidence": "i was harassed by a drunk man in Soho", "confidence": 0.7}]} 87fd7983ea8d0848 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4745 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 2 \N 0.80 they werent helpful just told me its on me if I want to do that 335 392 \N \N \N 2026-01-31 14:58:34.549894 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 392}], "unmapped": []} 766e4cf09774a05e en 07c01d3a-3443-4031-910c-7b6feba2c100 4746 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 2 \N 0.70 it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€ 134 335 \N \N \N 2026-01-31 14:58:34.554384 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 392}], "unmapped": []} 766e4cf09774a05e en 07c01d3a-3443-4031-910c-7b6feba2c100 4747 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMFORT + 2 2 \N 0.90 The car was good and it was brand new. 392 426 \N \N \N 2026-01-31 14:58:34.556497 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "Much more to pay on arrival, only credit card accepted and not very helpful.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "Pick up from airport was bad, vague instructions and phone was computer voice.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 79}, {"details": null, "valence": "negative", "end_char": 392, "evidence": "they werent helpful just told me its on me if I want to do that", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 335}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.7, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 426, "evidence": "The car was good and it was brand new.", "intensity": 3, "primitive": "COMFORT", "confidence": 0.9, "start_char": 392}], "unmapped": []} 766e4cf09774a05e en 07c01d3a-3443-4031-910c-7b6feba2c100 5207 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 todo correcto 39 51 \N \N \N 2026-01-31 15:08:28.776951 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "muy profesional el sr. fontanero", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "todo correcto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} dd45d27ac703cc1c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4749 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 I basically paid double. 290 313 \N \N \N 2026-01-31 14:58:38.317281 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} db6ee0cbd610d795 en 07c01d3a-3443-4031-910c-7b6feba2c100 4750 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 I’ve contacted them multiple times with no response. 228 267 \N \N \N 2026-01-31 14:58:38.318976 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} db6ee0cbd610d795 en 07c01d3a-3443-4031-910c-7b6feba2c100 5258 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pseGIxTjBiMmMzZVZsbmNtSm1hV2hEYjBsR2IxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Buen trato 0 10 \N \N \N 2026-01-31 15:09:28.675818 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "tuvieron mucho esmero por atendernos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 01d61591ef758d72 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4751 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOVERY - 2 3 \N 0.90 I still haven’t received the €32 refund for the remaining petrol. 174 220 \N \N \N 2026-01-31 14:58:38.32029 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 37, "evidence": "This company is a scam based on my experience.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 313, "evidence": "I basically paid double.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "I’ve contacted them multiple times with no response.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "I still haven’t received the €32 refund for the remaining petrol.", "intensity": 4, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 174}], "unmapped": []} db6ee0cbd610d795 en 07c01d3a-3443-4031-910c-7b6feba2c100 4752 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 I was a bit shocked, but politely asked, "What next?"—expecting a response/help from her. 392 460 \N \N \N 2026-01-31 14:58:45.175142 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 460, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "negative", "end_char": 733, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 682}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 1108, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 1030}], "unmapped": []} 5cbd0fa9a2dc3b7f en 07c01d3a-3443-4031-910c-7b6feba2c100 4753 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 3 3 \N 0.90 Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. 460 533 \N \N \N 2026-01-31 14:58:45.179331 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 460, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "negative", "end_char": 733, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 682}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 1108, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 1030}], "unmapped": []} 5cbd0fa9a2dc3b7f en 07c01d3a-3443-4031-910c-7b6feba2c100 4754 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 the second woman demanded that I delete the photos and started threatening us with the police. 682 733 \N \N \N 2026-01-31 14:58:45.182557 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 460, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "negative", "end_char": 733, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 682}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 1108, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 1030}], "unmapped": []} 5cbd0fa9a2dc3b7f en 07c01d3a-3443-4031-910c-7b6feba2c100 4755 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 NEVER AGAIN @ClickRent 0 20 \N \N \N 2026-01-31 14:58:45.186501 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 460, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "negative", "end_char": 733, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 682}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 1108, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 1030}], "unmapped": []} 5cbd0fa9a2dc3b7f en 07c01d3a-3443-4031-910c-7b6feba2c100 4756 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 3 3 \N 0.90 I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! 1030 1108 \N \N \N 2026-01-31 14:58:45.189744 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 460, "evidence": "I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "negative", "end_char": 533, "evidence": "Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 460}, {"details": null, "valence": "negative", "end_char": 733, "evidence": "the second woman demanded that I delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 682}, {"details": null, "valence": "negative", "end_char": 20, "evidence": "NEVER AGAIN @ClickRent", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 1108, "evidence": "I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help!", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 1030}], "unmapped": []} 5cbd0fa9a2dc3b7f en 07c01d3a-3443-4031-910c-7b6feba2c100 4757 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY - 2 3 \N 0.90 they wanted 130€ for the second reservation 205 239 \N \N \N 2026-01-31 14:58:50.279076 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 239}], "unmapped": [{"label": "Driver Change Policy", "evidence": "they said they couldnt change the name of the driver", "confidence": 0.7}, {"label": "Reservation Process", "evidence": "we had to reserve a second car and the first one was paid but we didn’t get the car", "confidence": 0.7}]} 13c69ffc6df4e57e en 07c01d3a-3443-4031-910c-7b6feba2c100 29 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Great circuit for all ages, took a twin seat kart ... 0 50 \N \N \N 2026-01-31 02:05:33.614106 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 30 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Friendly folks. They only speak Spanish, but they’... 0 50 \N \N \N 2026-01-31 02:05:33.61473 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4758 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 3 \N 0.90 we had to pay in the end 180€ for 3 days instead of 50€ 174 218 \N \N \N 2026-01-31 14:58:50.282568 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 239}], "unmapped": [{"label": "Driver Change Policy", "evidence": "they said they couldnt change the name of the driver", "confidence": 0.7}, {"label": "Reservation Process", "evidence": "we had to reserve a second car and the first one was paid but we didn’t get the car", "confidence": 0.7}]} 13c69ffc6df4e57e en 07c01d3a-3443-4031-910c-7b6feba2c100 4769 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 3 3 \N 0.90 simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. 232 284 \N \N \N 2026-01-31 14:59:01.396092 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 179, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 232}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 396}], "unmapped": []} fa2bac359e29d4da en 07c01d3a-3443-4031-910c-7b6feba2c100 4759 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 a very slowly service, we had to wait in the queue for over 1,5 hours 239 284 \N \N \N 2026-01-31 14:58:50.285481 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 239}], "unmapped": [{"label": "Driver Change Policy", "evidence": "they said they couldnt change the name of the driver", "confidence": 0.7}, {"label": "Reservation Process", "evidence": "we had to reserve a second car and the first one was paid but we didn’t get the car", "confidence": 0.7}]} 13c69ffc6df4e57e en 07c01d3a-3443-4031-910c-7b6feba2c100 4760 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 they said they couldnt change the name of the driver \N \N {"Driver Change Policy"} \N \N 2026-01-31 14:58:50.287849 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 239}], "unmapped": [{"label": "Driver Change Policy", "evidence": "they said they couldnt change the name of the driver", "confidence": 0.7}, {"label": "Reservation Process", "evidence": "we had to reserve a second car and the first one was paid but we didn’t get the car", "confidence": 0.7}]} 13c69ffc6df4e57e en 07c01d3a-3443-4031-910c-7b6feba2c100 5715 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 Absolutely a good place to have a gay night in Vilnius 84 121 \N \N \N 2026-01-31 15:18:11.187466 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "good music, nice guys", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "mixed", "end_char": 83, "evidence": "A little expensive the cocktails, but the entrance was very cheap", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.8, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 121, "evidence": "Absolutely a good place to have a gay night in Vilnius", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 84}], "unmapped": []} 322cc0435d8469c0 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4761 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 we had to reserve a second car and the first one was paid but we didn’t get the car \N \N {"Reservation Process"} \N \N 2026-01-31 14:58:50.290544 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "they wanted 130€ for the second reservation", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to pay in the end 180€ for 3 days instead of 50€", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "a very slowly service, we had to wait in the queue for over 1,5 hours", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 239}], "unmapped": [{"label": "Driver Change Policy", "evidence": "they said they couldnt change the name of the driver", "confidence": 0.7}, {"label": "Reservation Process", "evidence": "we had to reserve a second car and the first one was paid but we didn’t get the car", "confidence": 0.7}]} 13c69ffc6df4e57e en 07c01d3a-3443-4031-910c-7b6feba2c100 4762 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Overall service experience was very good! 0 34 \N \N \N 2026-01-31 14:58:53.686202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Overall service experience was very good!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "car was clean and nice for the group!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "mixed", "end_char": 118, "evidence": "to have the instructions for shuttle pickup at the airport more clearly instructed / marked.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.7, "start_char": 61}], "unmapped": []} 38a7bbfbac453063 en 07c01d3a-3443-4031-910c-7b6feba2c100 4767 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 everything was very good. 0 0 \N \N \N 2026-01-31 14:58:58.056596 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 0, "evidence": "Pick up and return was simply and very quick.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "I paid £186 deposit and got it back immediately on returning the car.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 0, "evidence": "everything was very good.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 5ca83c0f92d13499 en 07c01d3a-3443-4031-910c-7b6feba2c100 4768 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 there was NO CAR for us! 164 179 \N \N \N 2026-01-31 14:59:01.394335 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 179, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 232}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 396}], "unmapped": []} fa2bac359e29d4da en 07c01d3a-3443-4031-910c-7b6feba2c100 4770 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 the second woman demanded that we delete the photos and started threatening us with the police. 396 453 \N \N \N 2026-01-31 14:59:01.397047 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 179, "evidence": "there was NO CAR for us!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 232}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "the second woman demanded that we delete the photos and started threatening us with the police.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 396}], "unmapped": []} fa2bac359e29d4da en 07c01d3a-3443-4031-910c-7b6feba2c100 4771 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 highly recommend it to others 118 144 \N \N \N 2026-01-31 14:59:06.291961 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 187, "evidence": "Will use this company again", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 197}], "unmapped": []} a2be32ef97deb1a6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4772 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY + 3 3 \N 0.90 no hidden charges 145 161 \N \N \N 2026-01-31 14:59:06.294795 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 187, "evidence": "Will use this company again", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 197}], "unmapped": []} a2be32ef97deb1a6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4773 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 Great prices and no hassle return of the car with full cover insurance which was not expensive at all 43 139 \N \N \N 2026-01-31 14:59:06.297136 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 187, "evidence": "Will use this company again", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 197}], "unmapped": []} a2be32ef97deb1a6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4774 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 Will use this company again 162 187 \N \N \N 2026-01-31 14:59:06.299386 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 187, "evidence": "Will use this company again", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 197}], "unmapped": []} a2be32ef97deb1a6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4775 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 upgraded car for no additional cost which was brand new with 400km on it 197 241 \N \N \N 2026-01-31 14:59:06.302044 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "highly recommend it to others", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "no hidden charges", "intensity": 5, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Great prices and no hassle return of the car with full cover insurance which was not expensive at all", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 187, "evidence": "Will use this company again", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "positive", "end_char": 241, "evidence": "upgraded car for no additional cost which was brand new with 400km on it", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 197}], "unmapped": []} a2be32ef97deb1a6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4776 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 2 3 \N 0.90 if we would book again, it would be directly with Clickrent! 164 205 \N \N \N 2026-01-31 14:59:08.897488 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 211}], "unmapped": []} 8b1d1ebd1ee7f1b0 en 07c01d3a-3443-4031-910c-7b6feba2c100 31 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Only 8 minutes racing but track is very good. Very... 0 50 \N \N \N 2026-01-31 02:05:33.615217 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 32 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great place for fun! A bit short track so many tur... 0 50 \N \N \N 2026-01-31 02:05:33.615725 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 33 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Best pitch as of this week\nThey installed a new ti... 0 50 \N \N \N 2026-01-31 02:05:33.616293 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4777 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY + 2 2 \N 0.90 It is not Clickrent who is cheating, it is the platform. 66 103 \N \N \N 2026-01-31 14:59:08.900689 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 211}], "unmapped": []} 8b1d1ebd1ee7f1b0 en 07c01d3a-3443-4031-910c-7b6feba2c100 4930 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 a cute cosy cafe away from the town noise 8 43 \N \N \N 2026-01-31 15:02:04.947857 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "a cute cosy cafe away from the town noise", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The coffee was very tasty and pancakes too", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "Will definitely be back", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 9408085fa54bc595 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4778 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 2 3 \N 0.90 helpful smiley staff! 211 233 \N \N \N 2026-01-31 14:59:08.902355 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "if we would book again, it would be directly with Clickrent!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "It is not Clickrent who is cheating, it is the platform.", "intensity": 3, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "helpful smiley staff!", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 211}], "unmapped": []} 8b1d1ebd1ee7f1b0 en 07c01d3a-3443-4031-910c-7b6feba2c100 4779 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 2 3 \N 0.90 "We got a good deal from ClickRent for a car with full insurance during black Friday." 4 64 \N \N \N 2026-01-31 14:59:11.931574 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "\\"We got a good deal from ClickRent for a car with full insurance during black Friday.\\"", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "\\"Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\\"", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "\\"The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport.\\"", "intensity": 2, "primitive": "FRICTION", "confidence": 0.8, "start_char": 118}], "unmapped": []} 164738e8f4d33d41 en 07c01d3a-3443-4031-910c-7b6feba2c100 4780 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 "Everything went smooth; pickup, drop-off and the refund of the deposit for the gas." 66 116 \N \N \N 2026-01-31 14:59:11.94324 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "\\"We got a good deal from ClickRent for a car with full insurance during black Friday.\\"", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "\\"Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\\"", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "\\"The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport.\\"", "intensity": 2, "primitive": "FRICTION", "confidence": 0.8, "start_char": 118}], "unmapped": []} 164738e8f4d33d41 en 07c01d3a-3443-4031-910c-7b6feba2c100 34 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 2 \N 0.70 A great place to spend time and have great fun. Th... 0 50 \N \N \N 2026-01-31 02:05:33.616868 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4781 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 1 2 \N 0.80 "The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport." 118 183 \N \N \N 2026-01-31 14:59:11.947603 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 64, "evidence": "\\"We got a good deal from ClickRent for a car with full insurance during black Friday.\\"", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "\\"Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\\"", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 183, "evidence": "\\"The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport.\\"", "intensity": 2, "primitive": "FRICTION", "confidence": 0.8, "start_char": 118}], "unmapped": []} 164738e8f4d33d41 en 07c01d3a-3443-4031-910c-7b6feba2c100 4782 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 2 \N 0.90 The instructions for the shuttle were too vague. 0 45 \N \N \N 2026-01-31 14:59:16.847694 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "everything went great. Very friendly and helpful staff", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "clean car, nice facilities", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 336}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "we were picked up within a few minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 258}], "unmapped": []} 20e2ab5e7f19ff52 en 07c01d3a-3443-4031-910c-7b6feba2c100 4793 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.90 Return was extremely quick and the shuttle was ready to bring us to the airport. 56 107 \N \N \N 2026-01-31 14:59:25.170271 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 186, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Smooth rental when booking directly with full coverage.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f54e29e87f4ec70 en 07c01d3a-3443-4031-910c-7b6feba2c100 4783 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 we got a computer voice that we didnt understand 157 197 \N \N \N 2026-01-31 14:59:16.850408 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "everything went great. Very friendly and helpful staff", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "clean car, nice facilities", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 336}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "we were picked up within a few minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 258}], "unmapped": []} 20e2ab5e7f19ff52 en 07c01d3a-3443-4031-910c-7b6feba2c100 5752 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-41 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 Safe, friendly, stylish 30 50 \N \N \N 2026-01-31 15:18:52.874895 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Huge recomendations!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "pleasant to stay at an enjoy the atmosphere.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "Safe, friendly, stylish", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8c5972b306c46d33 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 35 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Very nice track and quiet decent Karts, at the lea... 0 50 \N \N \N 2026-01-31 02:05:33.61746 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4784 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 2 3 \N 0.90 everything went great. Very friendly and helpful staff 290 335 \N \N \N 2026-01-31 14:59:16.852646 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "everything went great. Very friendly and helpful staff", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "clean car, nice facilities", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 336}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "we were picked up within a few minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 258}], "unmapped": []} 20e2ab5e7f19ff52 en 07c01d3a-3443-4031-910c-7b6feba2c100 4785 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 2 2 \N 0.90 clean car, nice facilities 336 357 \N \N \N 2026-01-31 14:59:16.854174 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "everything went great. Very friendly and helpful staff", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "clean car, nice facilities", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 336}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "we were picked up within a few minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 258}], "unmapped": []} 20e2ab5e7f19ff52 en 07c01d3a-3443-4031-910c-7b6feba2c100 4786 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 3 \N 0.90 we were picked up within a few minutes 258 284 \N \N \N 2026-01-31 14:59:16.855956 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 45, "evidence": "The instructions for the shuttle were too vague.", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "we got a computer voice that we didnt understand", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "everything went great. Very friendly and helpful staff", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 357, "evidence": "clean car, nice facilities", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 336}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "we were picked up within a few minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 258}], "unmapped": []} 20e2ab5e7f19ff52 en 07c01d3a-3443-4031-910c-7b6feba2c100 4787 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 Very slow in returning the car 36 61 \N \N \N 2026-01-31 14:59:21.333927 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "the organization with shuttle is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Overall Experience", "evidence": "The car rent itself is ok", "confidence": 0.7}, {"label": "Final Sentiment", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 en 07c01d3a-3443-4031-910c-7b6feba2c100 5716 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 this club hit the mark! 66 82 \N \N \N 2026-01-31 15:18:14.533457 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "this club hit the mark!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "met some great, friendly people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "had a good night dancing, drinking, and having fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}], "unmapped": []} cd7b8c42da4fea36 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4788 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 you need to queue inside just to return (takes very long) 63 107 \N \N \N 2026-01-31 14:59:21.338614 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "the organization with shuttle is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Overall Experience", "evidence": "The car rent itself is ok", "confidence": 0.7}, {"label": "Final Sentiment", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 en 07c01d3a-3443-4031-910c-7b6feba2c100 4789 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 the organization with shuttle is very bad 61 95 \N \N \N 2026-01-31 14:59:21.342199 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "the organization with shuttle is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Overall Experience", "evidence": "The car rent itself is ok", "confidence": 0.7}, {"label": "Final Sentiment", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 en 07c01d3a-3443-4031-910c-7b6feba2c100 4790 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS - 2 3 \N 0.90 the employees do not care 164 188 \N \N \N 2026-01-31 14:59:21.344371 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "the organization with shuttle is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Overall Experience", "evidence": "The car rent itself is ok", "confidence": 0.7}, {"label": "Final Sentiment", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 en 07c01d3a-3443-4031-910c-7b6feba2c100 4791 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 The car rent itself is ok \N \N {"Overall Experience"} \N \N 2026-01-31 14:59:21.346341 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "the organization with shuttle is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Overall Experience", "evidence": "The car rent itself is ok", "confidence": 0.7}, {"label": "Final Sentiment", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 en 07c01d3a-3443-4031-910c-7b6feba2c100 4792 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.90 Never again with this provider \N \N {"Final Sentiment"} \N \N 2026-01-31 14:59:21.34932 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 61, "evidence": "Very slow in returning the car", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "you need to queue inside just to return (takes very long)", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 63}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "the organization with shuttle is very bad", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 61}, {"details": null, "valence": "negative", "end_char": 188, "evidence": "the employees do not care", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 164}], "unmapped": [{"label": "Overall Experience", "evidence": "The car rent itself is ok", "confidence": 0.7}, {"label": "Final Sentiment", "evidence": "Never again with this provider", "confidence": 0.9}]} 498a58db4922b2f5 en 07c01d3a-3443-4031-910c-7b6feba2c100 4794 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION ± 1 2 \N 0.80 it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well 134 186 \N \N \N 2026-01-31 14:59:25.173586 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 186, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Smooth rental when booking directly with full coverage.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f54e29e87f4ec70 en 07c01d3a-3443-4031-910c-7b6feba2c100 4795 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 2 3 \N 0.90 Smooth rental when booking directly with full coverage. 0 45 \N \N \N 2026-01-31 14:59:25.176127 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "Return was extremely quick and the shuttle was ready to bring us to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 186, "evidence": "it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well", "intensity": 2, "primitive": "CONDITION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 45, "evidence": "Smooth rental when booking directly with full coverage.", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0f54e29e87f4ec70 en 07c01d3a-3443-4031-910c-7b6feba2c100 4796 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I recommend that you ask someone on arrival. 202 233 \N \N \N 2026-01-31 14:59:28.047178 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 233, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "Great customer experience, quick and easy rental process.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}], "unmapped": []} 1a047bafdc22f575 en 07c01d3a-3443-4031-910c-7b6feba2c100 4797 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Great customer experience, quick and easy rental process. 0 54 \N \N \N 2026-01-31 14:59:28.050933 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 233, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "Great customer experience, quick and easy rental process.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}], "unmapped": []} 1a047bafdc22f575 en 07c01d3a-3443-4031-910c-7b6feba2c100 4798 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 3 \N 0.80 there is a regular shuttle bus from and to the airport. 66 77 \N \N \N 2026-01-31 14:59:28.052498 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 233, "evidence": "I recommend that you ask someone on arrival.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "Great customer experience, quick and easy rental process.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 77, "evidence": "there is a regular shuttle bus from and to the airport.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 66}], "unmapped": []} 1a047bafdc22f575 en 07c01d3a-3443-4031-910c-7b6feba2c100 4799 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 I do not recommend this company. 0 30 \N \N \N 2026-01-31 14:59:32.465464 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.7, "start_char": 239}], "unmapped": []} 86e833f84642d885 en 07c01d3a-3443-4031-910c-7b6feba2c100 4800 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.80 This is an unreasonable condition that other companies do not impose. 85 134 \N \N \N 2026-01-31 14:59:32.469522 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.7, "start_char": 239}], "unmapped": []} 86e833f84642d885 en 07c01d3a-3443-4031-910c-7b6feba2c100 4801 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.80 their shuttle bus only leaves once it is full so wasting of time. 174 218 \N \N \N 2026-01-31 14:59:32.473436 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.7, "start_char": 239}], "unmapped": []} 86e833f84642d885 en 07c01d3a-3443-4031-910c-7b6feba2c100 4802 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION - 2 3 \N 0.70 this is the first time I’ve had such a disappointing experience 239 284 \N \N \N 2026-01-31 14:59:32.476803 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "I do not recommend this company.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "This is an unreasonable condition that other companies do not impose.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.8, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "their shuttle bus only leaves once it is full so wasting of time.", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "this is the first time I’ve had such a disappointing experience", "intensity": 4, "primitive": "CONDITION", "confidence": 0.7, "start_char": 239}], "unmapped": []} 86e833f84642d885 en 07c01d3a-3443-4031-910c-7b6feba2c100 4803 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 I dont recommend. 0 15 \N \N \N 2026-01-31 14:59:35.573345 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "I dont recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was a mistake and I would not receive my refund and got overcharged.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 136}], "unmapped": []} 118b0a7832f06e37 en 07c01d3a-3443-4031-910c-7b6feba2c100 4804 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 it was a mistake and I would not receive my refund and got overcharged. 66 113 \N \N \N 2026-01-31 14:59:35.588128 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "I dont recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was a mistake and I would not receive my refund and got overcharged.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 136}], "unmapped": []} 118b0a7832f06e37 en 07c01d3a-3443-4031-910c-7b6feba2c100 4805 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 136 186 \N \N \N 2026-01-31 14:59:35.592256 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 15, "evidence": "I dont recommend.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "it was a mistake and I would not receive my refund and got overcharged.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 136}], "unmapped": []} 118b0a7832f06e37 en 07c01d3a-3443-4031-910c-7b6feba2c100 36 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 A very good family run kart track. Extremely frien... 0 50 \N \N \N 2026-01-31 02:05:33.618023 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4806 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 ‘computer says no’ approach to customer service 43 78 \N \N \N 2026-01-31 14:59:39.180995 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 143, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 145}], "unmapped": [{"label": "staff attitude", "evidence": "unhelpful staff", "confidence": 0.8}, {"label": "value for money", "evidence": "Not worth the cheaper rates", "confidence": 0.7}]} 932800092e56841d en 07c01d3a-3443-4031-910c-7b6feba2c100 4807 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 Never got our car and had to pay full price 112 143 \N \N \N 2026-01-31 14:59:39.187525 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 143, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 145}], "unmapped": [{"label": "staff attitude", "evidence": "unhelpful staff", "confidence": 0.8}, {"label": "value for money", "evidence": "Not worth the cheaper rates", "confidence": 0.7}]} 932800092e56841d en 07c01d3a-3443-4031-910c-7b6feba2c100 4808 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 they refused to accommodate 145 171 \N \N \N 2026-01-31 14:59:39.190041 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 143, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 145}], "unmapped": [{"label": "staff attitude", "evidence": "unhelpful staff", "confidence": 0.8}, {"label": "value for money", "evidence": "Not worth the cheaper rates", "confidence": 0.7}]} 932800092e56841d en 07c01d3a-3443-4031-910c-7b6feba2c100 4809 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.80 unhelpful staff \N \N {"staff attitude"} \N \N 2026-01-31 14:59:39.192605 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 143, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 145}], "unmapped": [{"label": "staff attitude", "evidence": "unhelpful staff", "confidence": 0.8}, {"label": "value for money", "evidence": "Not worth the cheaper rates", "confidence": 0.7}]} 932800092e56841d en 07c01d3a-3443-4031-910c-7b6feba2c100 4810 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 Not worth the cheaper rates \N \N {"value for money"} \N \N 2026-01-31 14:59:39.19504 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "‘computer says no’ approach to customer service", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 143, "evidence": "Never got our car and had to pay full price", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "negative", "end_char": 171, "evidence": "they refused to accommodate", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 145}], "unmapped": [{"label": "staff attitude", "evidence": "unhelpful staff", "confidence": 0.8}, {"label": "value for money", "evidence": "Not worth the cheaper rates", "confidence": 0.7}]} 932800092e56841d en 07c01d3a-3443-4031-910c-7b6feba2c100 4821 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 Terrible experience, don’t come 202 227 \N \N \N 2026-01-31 14:59:51.019612 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 192, "evidence": "The car given does not match what we ordered", "intensity": 4, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}], "unmapped": []} 77879f8609b97e4e en 07c01d3a-3443-4031-910c-7b6feba2c100 4811 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY ± 2 2 \N 0.80 Returning the car was easier than I thought. 370 399 \N \N \N 2026-01-31 14:59:44.465202 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 399, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "the price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.7, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 550, "evidence": "If you rent from ClickRent you should read the agreement and take photos of every small scratches.", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 670, "evidence": "The shuttle bus worked well and I was at the airport in 10 minutes after returning the car.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 613}], "unmapped": []} 2cffffe28f24f582 en 07c01d3a-3443-4031-910c-7b6feba2c100 4812 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS - 2 2 \N 0.80 the price of the rent was quite cheap compared to other rental companies. 164 205 \N \N \N 2026-01-31 14:59:44.473207 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 399, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "the price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.7, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 550, "evidence": "If you rent from ClickRent you should read the agreement and take photos of every small scratches.", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 670, "evidence": "The shuttle bus worked well and I was at the airport in 10 minutes after returning the car.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 613}], "unmapped": []} 2cffffe28f24f582 en 07c01d3a-3443-4031-910c-7b6feba2c100 4813 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 2 2 \N 0.70 the staff did not like to be filmed or recorded which gave me a red flag 113 157 \N \N \N 2026-01-31 14:59:44.475811 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 399, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "the price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.7, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 550, "evidence": "If you rent from ClickRent you should read the agreement and take photos of every small scratches.", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 670, "evidence": "The shuttle bus worked well and I was at the airport in 10 minutes after returning the car.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 613}], "unmapped": []} 2cffffe28f24f582 en 07c01d3a-3443-4031-910c-7b6feba2c100 4814 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND ± 2 2 \N 0.70 If you rent from ClickRent you should read the agreement and take photos of every small scratches. 487 550 \N \N \N 2026-01-31 14:59:44.48761 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 399, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "the price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.7, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 550, "evidence": "If you rent from ClickRent you should read the agreement and take photos of every small scratches.", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 670, "evidence": "The shuttle bus worked well and I was at the airport in 10 minutes after returning the car.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 613}], "unmapped": []} 2cffffe28f24f582 en 07c01d3a-3443-4031-910c-7b6feba2c100 37 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Great experience for children and adults. Friendly... 0 50 \N \N \N 2026-01-31 02:05:33.618569 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 38 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Very friendly welcoming staff who speak great Engl... 0 50 \N \N \N 2026-01-31 02:05:33.619148 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4841 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 there was no car available for us 34 56 \N \N \N 2026-01-31 15:00:13.402956 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 56, "evidence": "there was no car available for us", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "negative", "end_char": 86, "evidence": "The staff was completely unhelpful", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 58}, {"details": null, "valence": "negative", "end_char": 150, "evidence": "Avoid at all costs", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} e47b7105f9d3bb2d en 07c01d3a-3443-4031-910c-7b6feba2c100 4822 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 Getting and returning car is a nightmare be prepated to miss your flight. 49 83 \N \N \N 2026-01-31 14:59:54.24283 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Getting and returning car is a nightmare be prepated to miss your flight.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}], "unmapped": []} fd277519e55ecd41 en 07c01d3a-3443-4031-910c-7b6feba2c100 4815 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 2 2 \N 0.80 The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. 613 670 \N \N \N 2026-01-31 14:59:44.491985 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 399, "evidence": "Returning the car was easier than I thought.", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 370}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "the price of the rent was quite cheap compared to other rental companies.", "intensity": 3, "primitive": "PRICE_FAIRNESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "the staff did not like to be filmed or recorded which gave me a red flag", "intensity": 3, "primitive": "ETHICS", "confidence": 0.7, "start_char": 113}, {"details": null, "valence": "mixed", "end_char": 550, "evidence": "If you rent from ClickRent you should read the agreement and take photos of every small scratches.", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.7, "start_char": 487}, {"details": null, "valence": "positive", "end_char": 670, "evidence": "The shuttle bus worked well and I was at the airport in 10 minutes after returning the car.", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 613}], "unmapped": []} 2cffffe28f24f582 en 07c01d3a-3443-4031-910c-7b6feba2c100 4816 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 ClickRent simply didn't accept that we didn't want to buy additional services. 139 188 \N \N \N 2026-01-31 14:59:47.642972 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 188, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 244, "evidence": "Simply the worse company ever.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}], "unmapped": []} 2f32b7a72d2f2277 en 07c01d3a-3443-4031-910c-7b6feba2c100 4817 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOVERY - 3 3 \N 0.90 we had to return to the airport empty-handed. 188 218 \N \N \N 2026-01-31 14:59:47.645765 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 188, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 244, "evidence": "Simply the worse company ever.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}], "unmapped": []} 2f32b7a72d2f2277 en 07c01d3a-3443-4031-910c-7b6feba2c100 39 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Nice track, good safety in place and organisation.... 0 50 \N \N \N 2026-01-31 02:05:33.61979 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 40 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great and competitive karting track. A challenging... 0 50 \N \N \N 2026-01-31 02:05:33.620357 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4818 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 Simply the worse company ever. 218 244 \N \N \N 2026-01-31 14:59:47.647862 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 188, "evidence": "ClickRent simply didn't accept that we didn't want to buy additional services.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "we had to return to the airport empty-handed.", "intensity": 5, "primitive": "RECOVERY", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 244, "evidence": "Simply the worse company ever.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 218}], "unmapped": []} 2f32b7a72d2f2277 en 07c01d3a-3443-4031-910c-7b6feba2c100 4819 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY - 2 3 \N 0.90 forced to buy a 150 euro insurance again 83 118 \N \N \N 2026-01-31 14:59:51.017128 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 192, "evidence": "The car given does not match what we ordered", "intensity": 4, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}], "unmapped": []} 77879f8609b97e4e en 07c01d3a-3443-4031-910c-7b6feba2c100 4820 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB Automotive.CarRental AUTOMOTIVE 1.1 ACCURACY - 2 3 \N 0.90 The car given does not match what we ordered 157 192 \N \N \N 2026-01-31 14:59:51.018659 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 118, "evidence": "forced to buy a 150 euro insurance again", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 192, "evidence": "The car given does not match what we ordered", "intensity": 4, "primitive": "ACCURACY", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Terrible experience, don’t come", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}], "unmapped": []} 77879f8609b97e4e en 07c01d3a-3443-4031-910c-7b6feba2c100 4824 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 2 3 \N 0.90 if you want to avoid headache - stay away from it. 157 197 \N \N \N 2026-01-31 14:59:54.248925 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "Getting and returning car is a nightmare be prepated to miss your flight.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "my credit card was charged additional 180 eur without any documentation.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "if you want to avoid headache - stay away from it.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}], "unmapped": []} fd277519e55ecd41 en 07c01d3a-3443-4031-910c-7b6feba2c100 4825 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 3 3 \N 0.90 there was no car for us 49 63 \N \N \N 2026-01-31 14:59:57.369207 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "there was no car for us", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "complete lack of professionalism", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 97}], "unmapped": []} 166575eb4d1ee18d en 07c01d3a-3443-4031-910c-7b6feba2c100 41 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Amazing opportunities for the young and old, even ... 0 50 \N \N \N 2026-01-31 02:05:33.620896 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 42 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Very nice track. Smooth and big kerbs. The carts w... 0 50 \N \N \N 2026-01-31 02:05:33.621495 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 43 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Fantastic track and karts. Cant believe it wasn’t ... 0 50 \N \N \N 2026-01-31 02:05:33.622059 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4826 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 DO NOT RECOMMEND 174 191 \N \N \N 2026-01-31 14:59:57.373897 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "there was no car for us", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "complete lack of professionalism", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 97}], "unmapped": []} 166575eb4d1ee18d en 07c01d3a-3443-4031-910c-7b6feba2c100 4827 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 3 3 \N 0.90 all we were offered was a refund and “goodbye.” 83 118 \N \N \N 2026-01-31 14:59:57.375161 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "there was no car for us", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "complete lack of professionalism", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 97}], "unmapped": []} 166575eb4d1ee18d en 07c01d3a-3443-4031-910c-7b6feba2c100 4828 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE - 3 3 \N 0.90 complete lack of professionalism 97 126 \N \N \N 2026-01-31 14:59:57.376604 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 63, "evidence": "there was no car for us", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "negative", "end_char": 191, "evidence": "DO NOT RECOMMEND", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "all we were offered was a refund and “goodbye.”", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 126, "evidence": "complete lack of professionalism", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 97}], "unmapped": []} 166575eb4d1ee18d en 07c01d3a-3443-4031-910c-7b6feba2c100 4829 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 Very difficoult to get to from the airport. 0 41 \N \N \N 2026-01-31 15:00:00.439063 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "refuced to give the car that we already paid and also refused to refund our money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 128, "evidence": "We got literally robbed!!!", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 87b90dda5a2bd2d6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4830 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Automotive.CarRental AUTOMOTIVE 1.1 ETHICS - 3 3 \N 0.90 refuced to give the car that we already paid and also refused to refund our money. 41 107 \N \N \N 2026-01-31 15:00:00.440538 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "refuced to give the car that we already paid and also refused to refund our money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 128, "evidence": "We got literally robbed!!!", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 87b90dda5a2bd2d6 en 07c01d3a-3443-4031-910c-7b6feba2c100 44 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Very friendly family run go cart track, brilliant ... 0 50 \N \N \N 2026-01-31 02:05:33.622567 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4831 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY - 3 3 \N 0.90 We got literally robbed!!! 107 128 \N \N \N 2026-01-31 15:00:00.442015 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 41, "evidence": "Very difficoult to get to from the airport.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 107, "evidence": "refuced to give the car that we already paid and also refused to refund our money.", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 128, "evidence": "We got literally robbed!!!", "intensity": 5, "primitive": "HONESTY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 87b90dda5a2bd2d6 en 07c01d3a-3443-4031-910c-7b6feba2c100 4832 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 there is no office at the airport despite being mentioned during the booking phase 66 134 \N \N \N 2026-01-31 15:00:04.485813 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 188}], "unmapped": []} b143f9e57466708c en 07c01d3a-3443-4031-910c-7b6feba2c100 4833 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 3 \N 0.90 checkin was dreadfully slow and inefficient 134 164 \N \N \N 2026-01-31 15:00:04.489405 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 188}], "unmapped": []} b143f9e57466708c en 07c01d3a-3443-4031-910c-7b6feba2c100 4834 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION - 2 3 \N 0.90 car had undocumented damages that the staff was very reluctant to document 82 134 \N \N \N 2026-01-31 15:00:04.496047 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 188}], "unmapped": []} b143f9e57466708c en 07c01d3a-3443-4031-910c-7b6feba2c100 4835 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 one of the worst car rental experiences ever 188 223 \N \N \N 2026-01-31 15:00:04.499586 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "there is no office at the airport despite being mentioned during the booking phase", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 164, "evidence": "checkin was dreadfully slow and inefficient", "intensity": 4, "primitive": "SPEED", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "car had undocumented damages that the staff was very reluctant to document", "intensity": 4, "primitive": "CONDITION", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "one of the worst car rental experiences ever", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 188}], "unmapped": []} b143f9e57466708c en 07c01d3a-3443-4031-910c-7b6feba2c100 45 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Great place to come for ages 6+. Friendly staff, w... 0 50 \N \N \N 2026-01-31 02:05:33.623113 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 46 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Everyone had a great time 40 euros for 3 karts and... 0 50 \N \N \N 2026-01-31 02:05:33.623653 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 47 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Awesome fun, very friendly staff... and if you go ... 0 50 \N \N \N 2026-01-31 02:05:33.624147 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4836 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Would use their services again. 90 116 \N \N \N 2026-01-31 15:00:07.332722 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Would use their services again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the car was available immediately.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "the service was good", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 43}], "unmapped": []} 4dbbce5236fd6a02 en 07c01d3a-3443-4031-910c-7b6feba2c100 4837 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 the car was available immediately. 66 90 \N \N \N 2026-01-31 15:00:07.335531 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Would use their services again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the car was available immediately.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "the service was good", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 43}], "unmapped": []} 4dbbce5236fd6a02 en 07c01d3a-3443-4031-910c-7b6feba2c100 4838 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY + 2 3 \N 0.80 the service was good 43 62 \N \N \N 2026-01-31 15:00:07.338839 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Would use their services again.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the car was available immediately.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 62, "evidence": "the service was good", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 43}], "unmapped": []} 4dbbce5236fd6a02 en 07c01d3a-3443-4031-910c-7b6feba2c100 4839 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 They were very helpful and arranged that I could take the car 1 day earlier. 81 139 \N \N \N 2026-01-31 15:00:10.113822 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "They were very helpful and arranged that I could take the car 1 day earlier.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Excellent team in Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ff5481030725a89 en 07c01d3a-3443-4031-910c-7b6feba2c100 4840 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Excellent team in Gran Canaria. 0 30 \N \N \N 2026-01-31 15:00:10.116181 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "They were very helpful and arranged that I could take the car 1 day earlier.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Excellent team in Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ff5481030725a89 en 07c01d3a-3443-4031-910c-7b6feba2c100 5622 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Highly recommended to come visit and have fun 0 43 \N \N \N 2026-01-31 15:16:41.477702 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Highly recommended to come visit and have fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 158}], "unmapped": []} 638e24fc9310df0a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4844 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 the car was new, less than 5000km driven and was as promised 174 218 \N \N \N 2026-01-31 15:00:18.119931 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "the car was new, less than 5000km driven and was as promised", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 332, "evidence": "would use their services again and would recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they didn’t try to force or sell any additional insurances", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 238}], "unmapped": []} 1797e6936d720f1e en 07c01d3a-3443-4031-910c-7b6feba2c100 4845 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 would use their services again and would recommend 290 332 \N \N \N 2026-01-31 15:00:18.123835 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "the car was new, less than 5000km driven and was as promised", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 332, "evidence": "would use their services again and would recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they didn’t try to force or sell any additional insurances", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 238}], "unmapped": []} 1797e6936d720f1e en 07c01d3a-3443-4031-910c-7b6feba2c100 4846 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 HONESTY + 2 3 \N 0.80 they didn’t try to force or sell any additional insurances 124 164 \N \N \N 2026-01-31 15:00:18.125384 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "the car was new, less than 5000km driven and was as promised", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 332, "evidence": "would use their services again and would recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they didn’t try to force or sell any additional insurances", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 238}], "unmapped": []} 1797e6936d720f1e en 07c01d3a-3443-4031-910c-7b6feba2c100 4847 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 3 \N 0.80 the 2000€ authorization was unlocked in less than 5 minutes 238 284 \N \N \N 2026-01-31 15:00:18.128924 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 218, "evidence": "the car was new, less than 5000km driven and was as promised", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 332, "evidence": "would use their services again and would recommend", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "they didn’t try to force or sell any additional insurances", "intensity": 4, "primitive": "HONESTY", "confidence": 0.8, "start_char": 124}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "the 2000€ authorization was unlocked in less than 5 minutes", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 238}], "unmapped": []} 1797e6936d720f1e en 07c01d3a-3443-4031-910c-7b6feba2c100 4848 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 We had a very nice experience renting from ClickRent. 0 49 \N \N \N 2026-01-31 15:00:22.066558 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "we got all the information we needed.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} fa0633539cc61b0f en 07c01d3a-3443-4031-910c-7b6feba2c100 4849 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION + 3 3 \N 0.90 we got all the information we needed. 56 84 \N \N \N 2026-01-31 15:00:22.071239 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "we got all the information we needed.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} fa0633539cc61b0f en 07c01d3a-3443-4031-910c-7b6feba2c100 48 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 family friendly and lovely atmosphere. Helpful sta... 0 50 \N \N \N 2026-01-31 02:05:33.624848 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4850 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 3 3 \N 0.90 The car was just as expected, clean and everything was on top. 85 126 \N \N \N 2026-01-31 15:00:22.073017 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 49, "evidence": "We had a very nice experience renting from ClickRent.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "we got all the information we needed.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "The car was just as expected, clean and everything was on top.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} fa0633539cc61b0f en 07c01d3a-3443-4031-910c-7b6feba2c100 4851 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Highly recommended for your car hire. 41 66 \N \N \N 2026-01-31 15:00:26.992374 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 71d506a6ab8fb02e en 07c01d3a-3443-4031-910c-7b6feba2c100 4852 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 excellent staff especially Gabrielle. 22 50 \N \N \N 2026-01-31 15:00:26.996597 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 71d506a6ab8fb02e en 07c01d3a-3443-4031-910c-7b6feba2c100 4853 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 The car was awesome and brand new like 1000 clicks on the odo. 67 106 \N \N \N 2026-01-31 15:00:27.000135 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 71d506a6ab8fb02e en 07c01d3a-3443-4031-910c-7b6feba2c100 4854 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 Great family experience made our stay worthwhile in Gran Canaria 107 146 \N \N \N 2026-01-31 15:00:27.002801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Highly recommended for your car hire.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "excellent staff especially Gabrielle.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The car was awesome and brand new like 1000 clicks on the odo.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 67}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Great family experience made our stay worthwhile in Gran Canaria", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 107}], "unmapped": []} 71d506a6ab8fb02e en 07c01d3a-3443-4031-910c-7b6feba2c100 49 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Worth the money! 0 16 \N \N \N 2026-01-31 02:05:33.625335 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 50 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 This is the second time I have been here: once wit... 0 50 \N \N \N 2026-01-31 02:05:33.625857 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4855 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I would recommend you to take a car from here 164 205 \N \N \N 2026-01-31 15:00:32.126934 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Their office is air-conditioned and very well kept", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "the person is polite", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 100}], "unmapped": []} c8bcbec157fb7435 en 07c01d3a-3443-4031-910c-7b6feba2c100 4856 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 CLEANLINESS + 3 3 \N 0.90 Their office is air-conditioned and very well kept 116 153 \N \N \N 2026-01-31 15:00:32.130412 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Their office is air-conditioned and very well kept", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "the person is polite", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 100}], "unmapped": []} c8bcbec157fb7435 en 07c01d3a-3443-4031-910c-7b6feba2c100 4931 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 The coffee was very tasty and pancakes too 45 75 \N \N \N 2026-01-31 15:02:04.950616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "a cute cosy cafe away from the town noise", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The coffee was very tasty and pancakes too", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "Will definitely be back", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 9408085fa54bc595 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4857 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 2 3 \N 0.80 the person is polite 66 85 \N \N \N 2026-01-31 15:00:32.133152 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Their office is air-conditioned and very well kept", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "the person is polite", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 100}], "unmapped": []} c8bcbec157fb7435 en 07c01d3a-3443-4031-910c-7b6feba2c100 4858 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 2 3 \N 0.80 You need to wait a maximum of 1 hour i think. We waited close to 30 mins 100 145 \N \N \N 2026-01-31 15:00:32.134949 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 205, "evidence": "I would recommend you to take a car from here", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 153, "evidence": "Their office is air-conditioned and very well kept", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "the person is polite", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "You need to wait a maximum of 1 hour i think. We waited close to 30 mins", "intensity": 4, "primitive": "SPEED", "confidence": 0.8, "start_char": 100}], "unmapped": []} c8bcbec157fb7435 en 07c01d3a-3443-4031-910c-7b6feba2c100 51 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 nice venue. good track. friendly people and they s... 0 50 \N \N \N 2026-01-31 02:05:33.626388 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 52 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Brilliant. Really good track. Cheap prices. Defini... 0 50 \N \N \N 2026-01-31 02:05:33.627007 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 53 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Really nice set up, great circuit, 1100m. Karts ar... 0 50 \N \N \N 2026-01-31 02:05:33.627557 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4859 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 very close to the airport 56 78 \N \N \N 2026-01-31 15:00:36.727016 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "very close to the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 en 07c01d3a-3443-4031-910c-7b6feba2c100 4860 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 their insurance is the cheapest compared to other car rentals 80 118 \N \N \N 2026-01-31 15:00:36.729394 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "very close to the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 en 07c01d3a-3443-4031-910c-7b6feba2c100 4867 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY + 3 3 \N 0.90 ClickRent's office is about a 3 minute drive from the airport 90 130 \N \N \N 2026-01-31 15:00:45.380667 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "ClickRent's office is about a 3 minute drive from the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 410, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 382}], "unmapped": []} 04c3ccbe43130b0c en 07c01d3a-3443-4031-910c-7b6feba2c100 4901 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE Food_Dining.Cafe FOOD_DINING 1.2 FRESHNESS + 3 3 \N 0.90 freshly prepared food to order. 45 70 \N \N \N 2026-01-31 15:01:33.300509 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "An amazing outside area.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "freshly prepared food to order.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Always a lovely greeting by lovely staff.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "Deserves every success.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 65fe00e512555c14 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5634 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SPEED + 3 3 \N 0.90 The bartenders are fast and the service is good. 50 78 \N \N \N 2026-01-31 15:16:50.600732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Great atmosphere in the club.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "The bartenders are fast and the service is good.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Would recommend it to anyone looking for a good night out in Vilnius.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 105}], "unmapped": []} d5fe11fad3b1ddb3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4861 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 enough staff in order not to waste time at pick-up and dropoff 138 182 \N \N \N 2026-01-31 15:00:36.730829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "very close to the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 en 07c01d3a-3443-4031-910c-7b6feba2c100 4862 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I had a very good experience 0 27 \N \N \N 2026-01-31 15:00:36.733272 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "very close to the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "their insurance is the cheapest compared to other car rentals", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "enough staff in order not to waste time at pick-up and dropoff", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "I had a very good experience", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} c1055cabc90e0121 en 07c01d3a-3443-4031-910c-7b6feba2c100 4863 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY - 2 3 \N 0.90 make sure you arrive much earlier to give back the car. 66 103 \N \N \N 2026-01-31 15:00:41.234122 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 22, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "i am never renting from here again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} dbf27a25c3edc618 en 07c01d3a-3443-4031-910c-7b6feba2c100 4864 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 3 3 \N 0.90 Worst car rental ever. 0 22 \N \N \N 2026-01-31 15:00:41.236679 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 22, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "i am never renting from here again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} dbf27a25c3edc618 en 07c01d3a-3443-4031-910c-7b6feba2c100 4865 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 FRICTION - 2 3 \N 0.90 Chaos, long queues, small shuttle. 23 54 \N \N \N 2026-01-31 15:00:41.238398 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 22, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "i am never renting from here again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} dbf27a25c3edc618 en 07c01d3a-3443-4031-910c-7b6feba2c100 4866 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB Automotive.CarRental AUTOMOTIVE 1.1 RETURN_INTENT - 3 3 \N 0.90 i am never renting from here again. 105 132 \N \N \N 2026-01-31 15:00:41.240389 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 103, "evidence": "make sure you arrive much earlier to give back the car.", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 22, "evidence": "Worst car rental ever.", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Chaos, long queues, small shuttle.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 23}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "i am never renting from here again.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 105}], "unmapped": []} dbf27a25c3edc618 en 07c01d3a-3443-4031-910c-7b6feba2c100 54 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 I come here whenever I fly from England to visit f... 0 50 \N \N \N 2026-01-31 02:05:33.628205 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4868 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 ATTENTIVENESS + 3 3 \N 0.90 very helpful staff 134 151 \N \N \N 2026-01-31 15:00:45.385512 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "ClickRent's office is about a 3 minute drive from the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 410, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 382}], "unmapped": []} 04c3ccbe43130b0c en 07c01d3a-3443-4031-910c-7b6feba2c100 4869 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 SPEED + 3 3 \N 0.90 Check in was quick and easy and we were on the road in under 20 minutes 183 233 \N \N \N 2026-01-31 15:00:45.387721 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "ClickRent's office is about a 3 minute drive from the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 410, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 382}], "unmapped": []} 04c3ccbe43130b0c en 07c01d3a-3443-4031-910c-7b6feba2c100 4870 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I can't recommend ClickRent enough! 382 410 \N \N \N 2026-01-31 15:00:45.389769 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "ClickRent's office is about a 3 minute drive from the airport", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "very helpful staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 233, "evidence": "Check in was quick and easy and we were on the road in under 20 minutes", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 183}, {"details": null, "valence": "positive", "end_char": 410, "evidence": "I can't recommend ClickRent enough!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 382}], "unmapped": []} 04c3ccbe43130b0c en 07c01d3a-3443-4031-910c-7b6feba2c100 4871 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER - 2 3 \N 0.90 Very unfriendly lady. 0 20 \N \N \N 2026-01-31 15:00:50.894628 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "Dont so this to yourself. Not a nice way to start your holiday", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 43a80c02efe13f62 en 07c01d3a-3443-4031-910c-7b6feba2c100 4872 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 Totally not clear where the shuttle bus was leaving at the airport. 42 83 \N \N \N 2026-01-31 15:00:50.896675 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "Dont so this to yourself. Not a nice way to start your holiday", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 43a80c02efe13f62 en 07c01d3a-3443-4031-910c-7b6feba2c100 55 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Every year we come back and we never get bored, it... 0 50 \N \N \N 2026-01-31 02:05:33.629196 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4873 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY - 2 3 \N 0.90 She said it was not her problem. 84 108 \N \N \N 2026-01-31 15:00:50.898325 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "Dont so this to yourself. Not a nice way to start your holiday", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 43a80c02efe13f62 en 07c01d3a-3443-4031-910c-7b6feba2c100 4874 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 2 3 \N 0.70 Dont so this to yourself. Not a nice way to start your holiday 109 151 \N \N \N 2026-01-31 15:00:50.899946 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Very unfriendly lady.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 83, "evidence": "Totally not clear where the shuttle bus was leaving at the airport.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "negative", "end_char": 108, "evidence": "She said it was not her problem.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 151, "evidence": "Dont so this to yourself. Not a nice way to start your holiday", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 109}], "unmapped": []} 43a80c02efe13f62 en 07c01d3a-3443-4031-910c-7b6feba2c100 4875 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Highly recommended! 30 48 \N \N \N 2026-01-31 15:00:56.211732 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "the entire process was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 5f0c30362ec6d79b en 07c01d3a-3443-4031-910c-7b6feba2c100 4876 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY + 3 3 \N 0.90 reliable and reasonably priced rental car 76 113 \N \N \N 2026-01-31 15:00:56.216452 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "the entire process was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 5f0c30362ec6d79b en 07c01d3a-3443-4031-910c-7b6feba2c100 4877 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 CONDITION + 3 3 \N 0.90 vehicle itself was in great condition, almost brand new, clean, and well-maintained 202 263 \N \N \N 2026-01-31 15:00:56.218156 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "the entire process was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 5f0c30362ec6d79b en 07c01d3a-3443-4031-910c-7b6feba2c100 56 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Nice experience ! Worth to go there again. Great... 0 50 \N \N \N 2026-01-31 02:05:33.629974 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4878 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 3 3 \N 0.90 staff was extremely friendly, professional, and helpful 319 367 \N \N \N 2026-01-31 15:00:56.219954 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "the entire process was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 5f0c30362ec6d79b en 07c01d3a-3443-4031-910c-7b6feba2c100 4879 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 the entire process was seamless 134 162 \N \N \N 2026-01-31 15:00:56.222406 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "reliable and reasonably priced rental car", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "vehicle itself was in great condition, almost brand new, clean, and well-maintained", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "positive", "end_char": 367, "evidence": "staff was extremely friendly, professional, and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 319}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "the entire process was seamless", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 5f0c30362ec6d79b en 07c01d3a-3443-4031-910c-7b6feba2c100 4880 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Recommend it. 70 80 \N \N \N 2026-01-31 15:00:59.588432 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "Recommend it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "It's great for a budget rental.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the service is excellent.", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 7a04d0348e35904f en 07c01d3a-3443-4031-910c-7b6feba2c100 4881 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 It's great for a budget rental. 0 30 \N \N \N 2026-01-31 15:00:59.590734 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "Recommend it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "It's great for a budget rental.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the service is excellent.", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 7a04d0348e35904f en 07c01d3a-3443-4031-910c-7b6feba2c100 4882 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED + 3 3 \N 0.90 the service is excellent. 54 75 \N \N \N 2026-01-31 15:00:59.592559 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 80, "evidence": "Recommend it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "It's great for a budget rental.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "the service is excellent.", "intensity": 5, "primitive": "SERVICE", "confidence": 0.9, "start_char": 54}], "unmapped": []} 7a04d0348e35904f en 07c01d3a-3443-4031-910c-7b6feba2c100 4883 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 Very recommendable! 36 56 \N \N \N 2026-01-31 15:01:04.099454 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "low prices!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 134, "evidence": "a small shuttle bus runs every 15 min, however the office is very close and you can walk", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 57}], "unmapped": []} 8c924782045b5421 en 07c01d3a-3443-4031-910c-7b6feba2c100 57 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Been here twice over the last month great karting ... 0 50 \N \N \N 2026-01-31 02:05:33.631239 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 89 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great place to visit and super cheap for a lap for... 0 50 \N \N \N 2026-01-31 02:05:33.656363 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4884 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 low prices! 27 38 \N \N \N 2026-01-31 15:01:04.10211 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "low prices!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 134, "evidence": "a small shuttle bus runs every 15 min, however the office is very close and you can walk", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 57}], "unmapped": []} 8c924782045b5421 en 07c01d3a-3443-4031-910c-7b6feba2c100 4885 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB Automotive.CarRental AUTOMOTIVE 1.1 AVAILABILITY 0 2 2 \N 0.70 a small shuttle bus runs every 15 min, however the office is very close and you can walk 57 134 \N \N \N 2026-01-31 15:01:04.103746 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Very recommendable!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 38, "evidence": "low prices!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "neutral", "end_char": 134, "evidence": "a small shuttle bus runs every 15 min, however the office is very close and you can walk", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 57}], "unmapped": []} 8c924782045b5421 en 07c01d3a-3443-4031-910c-7b6feba2c100 4888 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND + 3 3 \N 0.90 I can only recommend this company in Gran Canaria!!! 0 38 \N \N \N 2026-01-31 15:01:12.580829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}], "unmapped": []} ec5bf985e55943f9 en 07c01d3a-3443-4031-910c-7b6feba2c100 4889 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 Absolutely fair and competitive prices 39 68 \N \N \N 2026-01-31 15:01:12.584749 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}], "unmapped": []} ec5bf985e55943f9 en 07c01d3a-3443-4031-910c-7b6feba2c100 5319 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 2 \N 0.80 beds weren't very clean 164 185 \N \N \N 2026-01-31 15:10:44.619489 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "kind staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "beds weren't very clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "it doesn't feel super safe there", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 129}, {"details": null, "valence": "mixed", "end_char": 138, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 en 56bb22c1-8631-4285-b549-8fa7c9944462 4890 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 COMPETENCE + 3 3 \N 0.90 The staff was amazing! Super kind and super helpful! 69 109 \N \N \N 2026-01-31 15:01:12.586694 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}], "unmapped": []} ec5bf985e55943f9 en 07c01d3a-3443-4031-910c-7b6feba2c100 4891 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 EFFECTIVENESS + 3 3 \N 0.90 they have changed our car in no time 197 227 \N \N \N 2026-01-31 15:01:12.587839 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}], "unmapped": []} ec5bf985e55943f9 en 07c01d3a-3443-4031-910c-7b6feba2c100 4892 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE Automotive.CarRental AUTOMOTIVE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 Thank you once again for your quick and efficient service 228 267 \N \N \N 2026-01-31 15:01:12.589046 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "I can only recommend this company in Gran Canaria!!!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "Absolutely fair and competitive prices", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff was amazing! Super kind and super helpful!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 69}, {"details": null, "valence": "positive", "end_char": 227, "evidence": "they have changed our car in no time", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 197}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Thank you once again for your quick and efficient service", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 228}], "unmapped": []} ec5bf985e55943f9 en 07c01d3a-3443-4031-910c-7b6feba2c100 4893 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 PRICE_TRANSPARENCY - 2 3 \N 0.90 we paid a bunch of fees that weren't mentioned when we initially booked the car 164 213 \N \N \N 2026-01-31 15:01:20.878694 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 5687 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 I don’t think I’ve ever felt safer 126 151 \N \N \N 2026-01-31 15:17:44.685759 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}], "unmapped": []} 71d1ac896ff46944 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 58 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Well run enterprise staff are extremely competent ... 0 50 \N \N \N 2026-01-31 02:05:33.632427 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 59 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Great karts, they are pretty fast. Friendly staff ... 0 50 \N \N \N 2026-01-31 02:05:33.633523 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4894 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RELIABILITY - 2 3 \N 0.90 they automatically took 60 euros out of my bank account 290 335 \N \N \N 2026-01-31 15:01:20.881917 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 4895 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 COMMUNICATION - 2 3 \N 0.90 they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee 367 453 \N \N \N 2026-01-31 15:01:20.883673 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 4896 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 RECOMMEND - 3 3 \N 0.90 Do not rent from this company 726 749 \N \N \N 2026-01-31 15:01:20.885394 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 5717 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 3 3 \N 0.90 met some great, friendly people 100 126 \N \N \N 2026-01-31 15:18:14.536064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "this club hit the mark!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "met some great, friendly people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "had a good night dancing, drinking, and having fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}], "unmapped": []} cd7b8c42da4fea36 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 4897 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.80 This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up \N \N {"General Dissatisfaction"} \N \N 2026-01-31 15:01:20.887965 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 4898 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 I still have yet to receive my 200 euro deposit back \N \N {"Lack of Recovery"} \N \N 2026-01-31 15:01:20.889751 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 4899 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED 0 1 1 \N 0.70 the lady on the phone basically told me it's my fault \N \N {"Frustration with Service"} \N \N 2026-01-31 15:01:20.89175 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 213, "evidence": "we paid a bunch of fees that weren't mentioned when we initially booked the car", "intensity": 4, "primitive": "PRICE_TRANSPARENCY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 335, "evidence": "they automatically took 60 euros out of my bank account", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 290}, {"details": null, "valence": "negative", "end_char": 453, "evidence": "they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 749, "evidence": "Do not rent from this company", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 726}], "unmapped": [{"label": "General Dissatisfaction", "evidence": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up", "confidence": 0.8}, {"label": "Lack of Recovery", "evidence": "I still have yet to receive my 200 euro deposit back", "confidence": 0.7}, {"label": "Frustration with Service", "evidence": "the lady on the phone basically told me it's my fault", "confidence": 0.7}]} b01418dacb634e1b en 07c01d3a-3443-4031-910c-7b6feba2c100 4900 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 An amazing outside area. 118 142 \N \N \N 2026-01-31 15:01:33.298155 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "An amazing outside area.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "freshly prepared food to order.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Always a lovely greeting by lovely staff.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "Deserves every success.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 65fe00e512555c14 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4933 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 cozy, personalized experience 34 63 \N \N \N 2026-01-31 15:02:07.926872 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "cozy, personalized experience", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "attentive service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "refreshing alternative to larger coffee franchises", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} cd87b42a42b457d1 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4902 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE Food_Dining.Cafe FOOD_DINING 1.2 ATTENTIVENESS + 3 3 \N 0.90 Always a lovely greeting by lovely staff. 73 105 \N \N \N 2026-01-31 15:01:33.301501 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "An amazing outside area.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "freshly prepared food to order.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Always a lovely greeting by lovely staff.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "Deserves every success.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 65fe00e512555c14 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4903 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 Deserves every success. 144 167 \N \N \N 2026-01-31 15:01:33.303024 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "An amazing outside area.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "freshly prepared food to order.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Always a lovely greeting by lovely staff.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 73}, {"details": null, "valence": "positive", "end_char": 167, "evidence": "Deserves every success.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 144}], "unmapped": []} 65fe00e512555c14 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4904 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 Great coffee. 0 12 \N \N \N 2026-01-31 15:01:37.380031 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great coffee.", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "Fresh baguettes with filling bursting out.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Friendly attentive service.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Lovely little garden, sheltered and a suntrap.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 71}], "unmapped": []} f752c586657af22e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4905 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB Food_Dining.Cafe FOOD_DINING 1.2 FRESHNESS + 3 3 \N 0.90 Fresh baguettes with filling bursting out. 13 47 \N \N \N 2026-01-31 15:01:37.384045 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great coffee.", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "Fresh baguettes with filling bursting out.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Friendly attentive service.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Lovely little garden, sheltered and a suntrap.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 71}], "unmapped": []} f752c586657af22e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4906 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB Food_Dining.Cafe FOOD_DINING 1.2 ATTENTIVENESS + 3 3 \N 0.90 Friendly attentive service. 48 70 \N \N \N 2026-01-31 15:01:37.385553 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great coffee.", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "Fresh baguettes with filling bursting out.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Friendly attentive service.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Lovely little garden, sheltered and a suntrap.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 71}], "unmapped": []} f752c586657af22e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4946 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB Food_Dining.Cafe FOOD_DINING 1.2 ATTENTIVENESS + 3 3 \N 0.90 the staff are lovely and amazing with kids 43 78 \N \N \N 2026-01-31 15:02:20.83032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "the staff are lovely and amazing with kids", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "negative", "end_char": 109, "evidence": "More highchairs are definitely needed though", "intensity": 2, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 80}], "unmapped": []} f286dea4645ed821 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4907 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 Lovely little garden, sheltered and a suntrap. 71 109 \N \N \N 2026-01-31 15:01:37.386651 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 12, "evidence": "Great coffee.", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "Fresh baguettes with filling bursting out.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 13}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Friendly attentive service.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 48}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Lovely little garden, sheltered and a suntrap.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 71}], "unmapped": []} f752c586657af22e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 60 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-59 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Wide variety of karts even an adapted one.\nStaff a... 0 50 \N \N \N 2026-01-31 02:05:33.634432 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4908 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 Recommend the home made GF almond cakes. 56 88 \N \N \N 2026-01-31 15:01:41.341577 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend the home made GF almond cakes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "the coffee is excellent!", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The staff are very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the GF options are fantastic.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 67}], "unmapped": []} b908c5ff8abc186c en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4909 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 the coffee is excellent! 20 36 \N \N \N 2026-01-31 15:01:41.343641 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend the home made GF almond cakes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "the coffee is excellent!", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The staff are very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the GF options are fantastic.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 67}], "unmapped": []} b908c5ff8abc186c en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4910 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB Food_Dining.Cafe FOOD_DINING 1.2 MANNER + 3 3 \N 0.90 The staff are very friendly 41 66 \N \N \N 2026-01-31 15:01:41.347448 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend the home made GF almond cakes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "the coffee is excellent!", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The staff are very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the GF options are fantastic.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 67}], "unmapped": []} b908c5ff8abc186c en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4911 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB Food_Dining.Cafe FOOD_DINING 1.2 FRESHNESS + 3 3 \N 0.90 the GF options are fantastic. 67 90 \N \N \N 2026-01-31 15:01:41.349745 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 88, "evidence": "Recommend the home made GF almond cakes.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "the coffee is excellent!", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "The staff are very friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "the GF options are fantastic.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 67}], "unmapped": []} b908c5ff8abc186c en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4912 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 beautiful decor 30 45 \N \N \N 2026-01-31 15:01:47.679815 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "beautiful decor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "warm and cozy even on a chilly day", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "The coffee was delicious", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "staff were extremely friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} fe9196645506a410 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5635 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Would recommend it to anyone looking for a good night out in Vilnius. 105 151 \N \N \N 2026-01-31 15:16:50.602339 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Great atmosphere in the club.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "The bartenders are fast and the service is good.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Would recommend it to anyone looking for a good night out in Vilnius.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 105}], "unmapped": []} d5fe11fad3b1ddb3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 61 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-60 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Excellent!!! Well organised and great track!! 0 45 \N \N \N 2026-01-31 02:05:33.635107 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 62 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-61 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Had a great time at Go Karts Mar Menor, very profe... 0 50 \N \N \N 2026-01-31 02:05:33.635866 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4913 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE Food_Dining.Cafe FOOD_DINING 1.2 COMFORT + 3 3 \N 0.90 warm and cozy even on a chilly day 78 113 \N \N \N 2026-01-31 15:01:47.688068 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "beautiful decor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "warm and cozy even on a chilly day", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "The coffee was delicious", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "staff were extremely friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} fe9196645506a410 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4914 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 The coffee was delicious 115 138 \N \N \N 2026-01-31 15:01:47.690754 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "beautiful decor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "warm and cozy even on a chilly day", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "The coffee was delicious", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "staff were extremely friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} fe9196645506a410 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4915 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE Food_Dining.Cafe FOOD_DINING 1.2 MANNER + 3 3 \N 0.90 staff were extremely friendly and welcoming 140 182 \N \N \N 2026-01-31 15:01:47.692516 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "beautiful decor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "warm and cozy even on a chilly day", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "The coffee was delicious", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "staff were extremely friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} fe9196645506a410 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4916 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 Highly recommended! 184 203 \N \N \N 2026-01-31 15:01:47.694683 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "beautiful decor", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "warm and cozy even on a chilly day", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "The coffee was delicious", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "staff were extremely friendly and welcoming", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 140}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Highly recommended!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 184}], "unmapped": []} fe9196645506a410 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4917 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 I highly recommend their latte! 104 126 \N \N \N 2026-01-31 15:01:50.817503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "I highly recommend their latte!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Cozy interior, friendly staff, and delicious drinks", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "a hidden gem where you can unwind in peace", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} dbce1fbd023e2564 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 63 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-62 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Really good set up, great location and great for k... 0 50 \N \N \N 2026-01-31 02:05:33.636497 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 64 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-63 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Have to say this is great fun, well run with top n... 0 50 \N \N \N 2026-01-31 02:05:33.637111 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4918 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 Cozy interior, friendly staff, and delicious drinks 56 83 \N \N \N 2026-01-31 15:01:50.819448 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "I highly recommend their latte!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Cozy interior, friendly staff, and delicious drinks", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "a hidden gem where you can unwind in peace", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 145}], "unmapped": []} dbce1fbd023e2564 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4920 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 Great food and coffee 36 56 \N \N \N 2026-01-31 15:01:55.648187 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Great food and coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "quite cheap too", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "was really good", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "which was equally good", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 81796653d57cd783 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4921 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB Food_Dining.Cafe FOOD_DINING 1.2 PRICE_LEVEL + 3 3 \N 0.90 quite cheap too 60 75 \N \N \N 2026-01-31 15:01:55.650525 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Great food and coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "quite cheap too", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "was really good", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "which was equally good", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 81796653d57cd783 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4922 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 was really good 27 41 \N \N \N 2026-01-31 15:01:55.651747 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Great food and coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "quite cheap too", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "was really good", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "which was equally good", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 81796653d57cd783 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4923 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 which was equally good 92 113 \N \N \N 2026-01-31 15:01:55.652801 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Great food and coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "quite cheap too", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "was really good", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "which was equally good", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 92}], "unmapped": []} 81796653d57cd783 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4924 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 The outside area, under cover, very peaceful and sunny 66 103 \N \N \N 2026-01-31 15:01:58.95954 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "The outside area, under cover, very peaceful and sunny", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Great coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Best wishes FIKA", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 117}], "unmapped": []} 9141e019d8e5a848 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4925 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 Great coffee 104 116 \N \N \N 2026-01-31 15:01:58.962419 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "The outside area, under cover, very peaceful and sunny", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Great coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Best wishes FIKA", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 117}], "unmapped": []} 9141e019d8e5a848 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4926 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 Best wishes FIKA 117 132 \N \N \N 2026-01-31 15:01:58.964125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "The outside area, under cover, very peaceful and sunny", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Great coffee", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Best wishes FIKA", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 117}], "unmapped": []} 9141e019d8e5a848 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4932 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE Food_Dining.Cafe FOOD_DINING 1.2 RETURN_INTENT + 3 3 \N 0.90 Will definitely be back 80 100 \N \N \N 2026-01-31 15:02:04.95214 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "a cute cosy cafe away from the town noise", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The coffee was very tasty and pancakes too", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "Will definitely be back", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 80}], "unmapped": []} 9408085fa54bc595 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4935 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 refreshing alternative to larger coffee franchises 134 174 \N \N \N 2026-01-31 15:02:07.932966 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "cozy, personalized experience", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "attentive service", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "refreshing alternative to larger coffee franchises", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} cd87b42a42b457d1 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4936 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE Food_Dining.Cafe FOOD_DINING 1.2 MANNER + 3 3 \N 0.90 The staff are wonderful very polite and friendly. 34 73 \N \N \N 2026-01-31 15:02:11.752649 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "The staff are wonderful very polite and friendly.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Very warm and cosey.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would highly recommend trying the waffles their lovely and fresh.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "their lovely and fresh.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} d32e4c898eb011b3 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4937 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 Very warm and cosey. 75 95 \N \N \N 2026-01-31 15:02:11.755399 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "The staff are wonderful very polite and friendly.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Very warm and cosey.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would highly recommend trying the waffles their lovely and fresh.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "their lovely and fresh.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} d32e4c898eb011b3 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4938 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 I would highly recommend trying the waffles their lovely and fresh. 97 139 \N \N \N 2026-01-31 15:02:11.756938 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "The staff are wonderful very polite and friendly.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Very warm and cosey.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would highly recommend trying the waffles their lovely and fresh.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "their lovely and fresh.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} d32e4c898eb011b3 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 65 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-64 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Great experience and track, Staff really friendly ... 0 50 \N \N \N 2026-01-31 02:05:33.637767 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 66 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-65 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 absolutely fantastic place best by far in Murcia. ... 0 50 \N \N \N 2026-01-31 02:05:33.638431 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4939 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE Food_Dining.Cafe FOOD_DINING 1.2 FRESHNESS + 3 3 \N 0.90 their lovely and fresh. 132 150 \N \N \N 2026-01-31 15:02:11.758501 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "The staff are wonderful very polite and friendly.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "Very warm and cosey.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "I would highly recommend trying the waffles their lovely and fresh.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 150, "evidence": "their lovely and fresh.", "intensity": 5, "primitive": "FRESHNESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} d32e4c898eb011b3 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4940 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 The atmosphere is very cosy and friendly 4 36 \N \N \N 2026-01-31 15:02:15.801894 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The atmosphere is very cosy and friendly", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "the staff they are so friendly and nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "the coffee and the food are greats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I will come again with my friends", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 111}], "unmapped": []} 2832c1098ccd773e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4941 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE Food_Dining.Cafe FOOD_DINING 1.2 MANNER + 3 3 \N 0.90 the staff they are so friendly and nice 41 74 \N \N \N 2026-01-31 15:02:15.805167 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The atmosphere is very cosy and friendly", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "the staff they are so friendly and nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "the coffee and the food are greats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I will come again with my friends", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 111}], "unmapped": []} 2832c1098ccd773e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4942 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 3 3 \N 0.90 the coffee and the food are greats 79 106 \N \N \N 2026-01-31 15:02:15.807421 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The atmosphere is very cosy and friendly", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "the staff they are so friendly and nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "the coffee and the food are greats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I will come again with my friends", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 111}], "unmapped": []} 2832c1098ccd773e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4943 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE Food_Dining.Cafe FOOD_DINING 1.2 RETURN_INTENT + 3 3 \N 0.90 I will come again with my friends 111 138 \N \N \N 2026-01-31 15:02:15.809048 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 36, "evidence": "The atmosphere is very cosy and friendly", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 4}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "the staff they are so friendly and nice", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "the coffee and the food are greats", "intensity": 5, "primitive": "TASTE", "confidence": 0.9, "start_char": 79}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I will come again with my friends", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 111}], "unmapped": []} 2832c1098ccd773e en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4945 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB Food_Dining.Cafe FOOD_DINING 1.2 ATTENTIVENESS + 2 3 \N 0.90 Service was great 31 48 \N \N \N 2026-01-31 15:02:18.531057 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Food wasn't as great as I hoped for", "intensity": 2, "primitive": "TASTE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Service was great", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 31}], "unmapped": []} 6695c08a7449aa24 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 67 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-66 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great fun for the whole family. Lovely family that... 0 50 \N \N \N 2026-01-31 02:05:33.639167 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 68 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-67 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 We had a fantastic time at this kart track. Booked... 0 50 \N \N \N 2026-01-31 02:05:33.639854 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 69 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-68 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great session. Very enjoyable despite the result! ... 0 50 \N \N \N 2026-01-31 02:05:33.64042 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4952 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB Food_Dining.Cafe FOOD_DINING 1.2 AMBIANCE + 3 3 \N 0.90 Gaming cafe with a secret garden. 0 34 \N \N \N 2026-01-31 15:02:29.038436 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Gaming cafe with a secret garden.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Only criticism is they dont advertise these parts of it at all.", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Need to let people know!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 79}], "unmapped": []} 4fdad36aa33539f5 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4953 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB Food_Dining.Cafe FOOD_DINING 1.2 ACKNOWLEDGMENT - 1 2 \N 0.80 Only criticism is they dont advertise these parts of it at all. 35 78 \N \N \N 2026-01-31 15:02:29.041475 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Gaming cafe with a secret garden.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Only criticism is they dont advertise these parts of it at all.", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Need to let people know!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 79}], "unmapped": []} 4fdad36aa33539f5 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4954 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 Need to let people know! 79 101 \N \N \N 2026-01-31 15:02:29.043812 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Gaming cafe with a secret garden.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 78, "evidence": "Only criticism is they dont advertise these parts of it at all.", "intensity": 2, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 101, "evidence": "Need to let people know!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 79}], "unmapped": []} 4fdad36aa33539f5 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4956 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 My new favourite place in Boston 0 30 \N \N \N 2026-01-31 15:02:31.928194 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "My new favourite place in Boston", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 74cc65d88535b5a9 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4957 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 I would recommend to anyone 22 46 \N \N \N 2026-01-31 15:02:33.333615 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 46, "evidence": "I would recommend to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 22}], "unmapped": []} ebccbd0fad25e9ef en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4958 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB Food_Dining.Cafe FOOD_DINING 1.2 AVAILABILITY - 2 2 \N 0.90 the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm 81 174 \N \N \N 2026-01-31 15:02:36.645571 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 174, "evidence": "the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "the food and service is amazing", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8f681eef2963d437 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4959 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE + 2 3 \N 0.90 the food and service is amazing 30 50 \N \N \N 2026-01-31 15:02:36.647575 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 174, "evidence": "the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "the food and service is amazing", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8f681eef2963d437 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 70 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-69 Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 2 \N 0.70 Absolutely great. Great value, great service and a... 0 50 \N \N \N 2026-01-31 02:05:33.640997 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 71 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-70 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great way to spend An hour or two with friends and... 0 50 \N \N \N 2026-01-31 02:05:33.641655 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 4960 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE Food_Dining.Cafe FOOD_DINING 1.2 CLEANLINESS + 3 3 \N 0.90 чистое место 15 22 \N \N \N 2026-01-31 15:02:38.881423 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "чистое место", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Рекомендую посетить", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 23}], "unmapped": []} 603e1bf29787586c ru dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4961 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 Рекомендую посетить 23 41 \N \N \N 2026-01-31 15:02:38.883495 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "чистое место", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 15}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "Рекомендую посетить", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 23}], "unmapped": []} 603e1bf29787586c ru dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4967 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 I recommend without hesitation! 104 130 \N \N \N 2026-01-31 15:03:35.425413 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 72}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3214b43e7cf601cf en 22c559a8-fabc-4916-9961-bcbd61225266 4968 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 The value for money is marvellous 83 106 \N \N \N 2026-01-31 15:03:35.437132 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 72}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3214b43e7cf601cf en 22c559a8-fabc-4916-9961-bcbd61225266 4969 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 the result is great! 72 89 \N \N \N 2026-01-31 15:03:35.439206 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 72}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3214b43e7cf601cf en 22c559a8-fabc-4916-9961-bcbd61225266 4970 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 their professionalism! 56 75 \N \N \N 2026-01-31 15:03:35.44041 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "I recommend without hesitation!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "The value for money is marvellous", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 89, "evidence": "the result is great!", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 72}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "their professionalism!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3214b43e7cf601cf en 22c559a8-fabc-4916-9961-bcbd61225266 4971 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 te tratan los mejores profesionales 40 75 \N \N \N 2026-01-31 15:03:41.921622 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 217}], "unmapped": []} 99965b08b164de95 es 22c559a8-fabc-4916-9961-bcbd61225266 4983 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 La atención y el trato son inmejorables 54 82 \N \N \N 2026-01-31 15:03:56.261988 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "La atención y el trato son inmejorables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "es muy cómodo y no duele en general", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Totalmente recomendable el tratamiento como la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 84ef3416bc1ff8ec es 22c559a8-fabc-4916-9961-bcbd61225266 5134 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-46 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 personalized 78 88 \N \N \N 2026-01-31 15:07:02.428807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "I will definitely recommend this aesthetic", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "very caring", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "personalized", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 78}], "unmapped": []} 68238a48a4861a31 en 22c559a8-fabc-4916-9961-bcbd61225266 4972 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 una calidad humana excepcional 98 126 \N \N \N 2026-01-31 15:03:41.924432 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 217}], "unmapped": []} 99965b08b164de95 es 22c559a8-fabc-4916-9961-bcbd61225266 4973 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMFORT + 3 3 \N 0.90 Me sentí comodísima y cuidada desde el minuto cero 128 164 \N \N \N 2026-01-31 15:03:41.926292 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 217}], "unmapped": []} 99965b08b164de95 es 22c559a8-fabc-4916-9961-bcbd61225266 4974 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 Te explican todo, de manera, que no te quedes con ninguna duda 166 215 \N \N \N 2026-01-31 15:03:41.927477 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 217}], "unmapped": []} 99965b08b164de95 es 22c559a8-fabc-4916-9961-bcbd61225266 4975 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo encarecidamente 217 243 \N \N \N 2026-01-31 15:03:41.929965 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "te tratan los mejores profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "una calidad humana excepcional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 98}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me sentí comodísima y cuidada desde el minuto cero", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 128}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "Te explican todo, de manera, que no te quedes con ninguna duda", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 166}, {"details": null, "valence": "positive", "end_char": 243, "evidence": "Lo recomiendo encarecidamente", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 217}], "unmapped": []} 99965b08b164de95 es 22c559a8-fabc-4916-9961-bcbd61225266 4976 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 El personal es excepcional, muy atento y profesional en todo momento. 66 108 \N \N \N 2026-01-31 15:03:47.496185 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "El personal es excepcional, muy atento y profesional en todo momento.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Se nota la dedicación y el cuidado con el que trabajan.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "Sin duda, una clínica totalmente recomendable por la calidad de sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el excelente trato al cliente.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 225}], "unmapped": []} fe14290f58cbcce6 es 22c559a8-fabc-4916-9961-bcbd61225266 4977 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Se nota la dedicación y el cuidado con el que trabajan. 110 146 \N \N \N 2026-01-31 15:03:47.499245 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "El personal es excepcional, muy atento y profesional en todo momento.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Se nota la dedicación y el cuidado con el que trabajan.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "Sin duda, una clínica totalmente recomendable por la calidad de sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el excelente trato al cliente.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 225}], "unmapped": []} fe14290f58cbcce6 es 22c559a8-fabc-4916-9961-bcbd61225266 4978 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda, una clínica totalmente recomendable por la calidad de sus servicios. 174 224 \N \N \N 2026-01-31 15:03:47.502177 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "El personal es excepcional, muy atento y profesional en todo momento.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Se nota la dedicación y el cuidado con el que trabajan.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "Sin duda, una clínica totalmente recomendable por la calidad de sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el excelente trato al cliente.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 225}], "unmapped": []} fe14290f58cbcce6 es 22c559a8-fabc-4916-9961-bcbd61225266 4979 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY + 3 3 \N 0.90 el excelente trato al cliente. 225 249 \N \N \N 2026-01-31 15:03:47.504296 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 108, "evidence": "El personal es excepcional, muy atento y profesional en todo momento.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 146, "evidence": "Se nota la dedicación y el cuidado con el que trabajan.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 110}, {"details": null, "valence": "positive", "end_char": 224, "evidence": "Sin duda, una clínica totalmente recomendable por la calidad de sus servicios.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el excelente trato al cliente.", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 225}], "unmapped": []} fe14290f58cbcce6 es 22c559a8-fabc-4916-9961-bcbd61225266 4980 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS - 2 2 \N 0.90 los labios no ,me los inyectaron mal 41 66 \N \N \N 2026-01-31 15:03:51.737056 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "ya no me dan ganas de volver", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 265}], "unmapped": []} 5107cb86f94be0c9 es 22c559a8-fabc-4916-9961-bcbd61225266 4981 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ETHICS - 2 3 \N 0.90 imponerlo después puede considerarse práctica comercial desleal o engañosa 188 238 \N \N \N 2026-01-31 15:03:51.741397 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "ya no me dan ganas de volver", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 265}], "unmapped": []} 5107cb86f94be0c9 es 22c559a8-fabc-4916-9961-bcbd61225266 4982 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT - 2 3 \N 0.90 ya no me dan ganas de volver 265 287 \N \N \N 2026-01-31 15:03:51.743287 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "los labios no ,me los inyectaron mal", "intensity": 3, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 238, "evidence": "imponerlo después puede considerarse práctica comercial desleal o engañosa", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "negative", "end_char": 287, "evidence": "ya no me dan ganas de volver", "intensity": 4, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 265}], "unmapped": []} 5107cb86f94be0c9 es 22c559a8-fabc-4916-9961-bcbd61225266 4984 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 he visto resultados desde la primera sesión 174 205 \N \N \N 2026-01-31 15:03:56.263867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "La atención y el trato son inmejorables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "es muy cómodo y no duele en general", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Totalmente recomendable el tratamiento como la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 84ef3416bc1ff8ec es 22c559a8-fabc-4916-9961-bcbd61225266 4985 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMFORT + 3 3 \N 0.90 es muy cómodo y no duele en general 206 239 \N \N \N 2026-01-31 15:03:56.265954 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "La atención y el trato son inmejorables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "es muy cómodo y no duele en general", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Totalmente recomendable el tratamiento como la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 84ef3416bc1ff8ec es 22c559a8-fabc-4916-9961-bcbd61225266 4986 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Totalmente recomendable el tratamiento como la clínica 240 284 \N \N \N 2026-01-31 15:03:56.267838 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "La atención y el trato son inmejorables", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "he visto resultados desde la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "es muy cómodo y no duele en general", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 206}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Totalmente recomendable el tratamiento como la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 240}], "unmapped": []} 84ef3416bc1ff8ec es 22c559a8-fabc-4916-9961-bcbd61225266 4987 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️ 56 116 \N \N \N 2026-01-31 15:04:01.250878 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "tanto que voy a repetir.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}], "unmapped": []} fd1bc0017b5a8e22 es 22c559a8-fabc-4916-9961-bcbd61225266 4988 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la cercanía,la amabilidad y los consejos ♥️ 78 116 \N \N \N 2026-01-31 15:04:01.255813 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "tanto que voy a repetir.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}], "unmapped": []} fd1bc0017b5a8e22 es 22c559a8-fabc-4916-9961-bcbd61225266 4989 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 tanto que voy a repetir. 40 60 \N \N \N 2026-01-31 15:04:01.257378 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Las recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "la cercanía,la amabilidad y los consejos ♥️", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "tanto que voy a repetir.", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 40}], "unmapped": []} fd1bc0017b5a8e22 es 22c559a8-fabc-4916-9961-bcbd61225266 4990 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Acudí por recomendación y sinceramente no pude elegir mejor 0 56 \N \N \N 2026-01-31 15:04:07.286879 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "estoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 250}], "unmapped": []} 5cee95e47b3a5e10 es 22c559a8-fabc-4916-9961-bcbd61225266 5320 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 2 2 \N 0.80 it doesn't feel super safe there 129 154 \N \N \N 2026-01-31 15:10:44.621208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "kind staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "beds weren't very clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "it doesn't feel super safe there", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 129}, {"details": null, "valence": "mixed", "end_char": 138, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 en 56bb22c1-8631-4285-b549-8fa7c9944462 4991 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 en clínica calme salvaron mi piel 116 143 \N \N \N 2026-01-31 15:04:07.289155 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "estoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 250}], "unmapped": []} 5cee95e47b3a5e10 es 22c559a8-fabc-4916-9961-bcbd61225266 4992 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 estoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura 144 218 \N \N \N 2026-01-31 15:04:07.291981 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "estoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 250}], "unmapped": []} 5cee95e47b3a5e10 es 22c559a8-fabc-4916-9961-bcbd61225266 4993 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 el trato de las chicas que es espectacular 218 249 \N \N \N 2026-01-31 15:04:07.294005 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "estoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 250}], "unmapped": []} 5cee95e47b3a5e10 es 22c559a8-fabc-4916-9961-bcbd61225266 4999 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 por lo atentas que son siempre 70 92 \N \N \N 2026-01-31 15:04:15.99802 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "por lo atentas que son siempre", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Un sitio genial y en el que confiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "por el gran resultado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}], "unmapped": []} df6748d1f44c94e9 es 22c559a8-fabc-4916-9961-bcbd61225266 5596 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Retail.Stores.Toy_store RETAIL 1.0 MANNER - 2 2 \N 0.70 los trabajadores hablan de asuntos personales en la tienda como si fuera la calle 85 134 \N \N \N 2026-01-31 15:16:04.763474 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "la tienda ordenada", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "mixed", "end_char": 56, "evidence": "Algunos juguetes no sirven están rotos o faltan piezas", "intensity": 3, "primitive": "AVAILABILITY", "confidence": 0.7, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 85, "evidence": "te persiguen por la tienda como en los chinos", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "los trabajadores hablan de asuntos personales en la tienda como si fuera la calle", "intensity": 3, "primitive": "MANNER", "confidence": 0.7, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "muchas cosas con oferta", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 134}], "unmapped": []} f414d917abcde8fd es e4f95d90-dbbe-439d-a0fd-f19088002f26 4994 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Quiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel 250 307 \N \N \N 2026-01-31 15:04:07.295572 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Acudí por recomendación y sinceramente no pude elegir mejor", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 143, "evidence": "en clínica calme salvaron mi piel", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "estoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 144}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "el trato de las chicas que es espectacular", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 307, "evidence": "Quiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 250}], "unmapped": []} 5cee95e47b3a5e10 es 22c559a8-fabc-4916-9961-bcbd61225266 4995 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 desde la atención telefónica q recibí me encantó 20 66 \N \N \N 2026-01-31 15:04:12.287343 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "desde la atención telefónica q recibí me encantó", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} 031f7645c4fbf8c8 es 22c559a8-fabc-4916-9961-bcbd61225266 4996 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 no puedo estar más contenta c los resultados en tan poco tiempo 108 145 \N \N \N 2026-01-31 15:04:12.290011 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "desde la atención telefónica q recibí me encantó", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} 031f7645c4fbf8c8 es 22c559a8-fabc-4916-9961-bcbd61225266 4997 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 Si dudas repetiré 146 162 \N \N \N 2026-01-31 15:04:12.291586 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "desde la atención telefónica q recibí me encantó", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} 031f7645c4fbf8c8 es 22c559a8-fabc-4916-9961-bcbd61225266 4998 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un 💯para ellas 164 178 \N \N \N 2026-01-31 15:04:12.29289 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "desde la atención telefónica q recibí me encantó", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "no puedo estar más contenta c los resultados en tan poco tiempo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Si dudas repetiré", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 146}, {"details": null, "valence": "positive", "end_char": 178, "evidence": "Un 💯para ellas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}], "unmapped": []} 031f7645c4fbf8c8 es 22c559a8-fabc-4916-9961-bcbd61225266 5753 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-42 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY - 2 3 \N 0.90 i didn't feel safe that night 66 86 \N \N \N 2026-01-31 15:18:55.609905 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 86, "evidence": "i didn't feel safe that night", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "as the security couldn't bounce him out right away", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 36}], "unmapped": [{"label": "harassment incident", "evidence": "i was harassed by a drunk man in Soho", "confidence": 0.7}]} 87fd7983ea8d0848 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 72 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-71 Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED 0 1 1 \N 0.50 Track is good but €20 for 8 minutes is a lot and t... 0 50 {general} \N \N 2026-01-31 02:05:33.642453 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5000 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un sitio genial y en el que confiar 0 36 \N \N \N 2026-01-31 15:04:16.000549 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "por lo atentas que son siempre", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Un sitio genial y en el que confiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "por el gran resultado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}], "unmapped": []} df6748d1f44c94e9 es 22c559a8-fabc-4916-9961-bcbd61225266 5001 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 por el gran resultado 54 70 \N \N \N 2026-01-31 15:04:16.003171 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "por lo atentas que son siempre", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Un sitio genial y en el que confiar", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "por el gran resultado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 54}], "unmapped": []} df6748d1f44c94e9 es 22c559a8-fabc-4916-9961-bcbd61225266 5002 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas 47 97 \N \N \N 2026-01-31 15:04:19.9254 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "todo salió de maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 204, "evidence": "Un 10 para la clínica y otro 10 para la empleada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 160}], "unmapped": []} fb5199469dd472fc es 22c559a8-fabc-4916-9961-bcbd61225266 5003 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 todo salió de maravilla 138 158 \N \N \N 2026-01-31 15:04:19.929743 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "todo salió de maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 204, "evidence": "Un 10 para la clínica y otro 10 para la empleada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 160}], "unmapped": []} fb5199469dd472fc es 22c559a8-fabc-4916-9961-bcbd61225266 5004 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un 10 para la clínica y otro 10 para la empleada 160 204 \N \N \N 2026-01-31 15:04:19.931955 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "todo salió de maravilla", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 204, "evidence": "Un 10 para la clínica y otro 10 para la empleada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 160}], "unmapped": []} fb5199469dd472fc es 22c559a8-fabc-4916-9961-bcbd61225266 5005 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato tan profesional y familiar que te dan nada más entrar 42 83 \N \N \N 2026-01-31 15:04:25.459229 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "7 cm menos de cintura con la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 317, "evidence": "gran equipo de la mejor clínica de estética de Las Palmas", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}], "unmapped": []} d4232ac849d5fce0 es 22c559a8-fabc-4916-9961-bcbd61225266 5006 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 PRICE_FAIRNESS + 3 3 \N 0.90 Los mejores precios del mercado 84 108 \N \N \N 2026-01-31 15:04:25.461547 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "7 cm menos de cintura con la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 317, "evidence": "gran equipo de la mejor clínica de estética de Las Palmas", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}], "unmapped": []} d4232ac849d5fce0 es 22c559a8-fabc-4916-9961-bcbd61225266 5007 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 7 cm menos de cintura con la primera sesión 233 263 \N \N \N 2026-01-31 15:04:25.462904 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "7 cm menos de cintura con la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 317, "evidence": "gran equipo de la mejor clínica de estética de Las Palmas", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}], "unmapped": []} d4232ac849d5fce0 es 22c559a8-fabc-4916-9961-bcbd61225266 5008 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomendable 100 x 100 108 130 \N \N \N 2026-01-31 15:04:25.464298 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "7 cm menos de cintura con la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 317, "evidence": "gran equipo de la mejor clínica de estética de Las Palmas", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}], "unmapped": []} d4232ac849d5fce0 es 22c559a8-fabc-4916-9961-bcbd61225266 5009 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RELIABILITY + 3 3 \N 0.90 gran equipo de la mejor clínica de estética de Las Palmas 276 317 \N \N \N 2026-01-31 15:04:25.466067 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "trato tan profesional y familiar que te dan nada más entrar", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 108, "evidence": "Los mejores precios del mercado", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 263, "evidence": "7 cm menos de cintura con la primera sesión", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "positive", "end_char": 130, "evidence": "Recomendable 100 x 100", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 317, "evidence": "gran equipo de la mejor clínica de estética de Las Palmas", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 276}], "unmapped": []} d4232ac849d5fce0 es 22c559a8-fabc-4916-9961-bcbd61225266 5010 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Totalmente recomendado. 195 215 \N \N \N 2026-01-31 15:04:30.288554 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 165}], "unmapped": []} a2631ee45437c015 es 22c559a8-fabc-4916-9961-bcbd61225266 73 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-72 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Class experience, great staff, great track. Couldn... 0 50 \N \N \N 2026-01-31 02:05:33.643435 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5011 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Recibí un trato impecable por todos los miembros del equipo. 81 116 \N \N \N 2026-01-31 15:04:30.292461 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 165}], "unmapped": []} a2631ee45437c015 es 22c559a8-fabc-4916-9961-bcbd61225266 5012 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber. 117 164 \N \N \N 2026-01-31 15:04:30.294762 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 165}], "unmapped": []} a2631ee45437c015 es 22c559a8-fabc-4916-9961-bcbd61225266 5013 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales. 165 205 \N \N \N 2026-01-31 15:04:30.296155 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 215, "evidence": "Totalmente recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "Recibí un trato impecable por todos los miembros del equipo.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber.", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 117}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 165}], "unmapped": []} a2631ee45437c015 es 22c559a8-fabc-4916-9961-bcbd61225266 5014 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 no ha podido ser mejor elección 66 95 \N \N \N 2026-01-31 15:04:34.123965 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "no ha podido ser mejor elección", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "la armonización que consiguió la doctora Maite acorde a lo que quería", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "gracias Maite, İris y todo el equipo por el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} 4f8f054e41325ec4 es 22c559a8-fabc-4916-9961-bcbd61225266 5015 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la armonización que consiguió la doctora Maite acorde a lo que quería 116 157 \N \N \N 2026-01-31 15:04:34.130247 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "no ha podido ser mejor elección", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "la armonización que consiguió la doctora Maite acorde a lo que quería", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "gracias Maite, İris y todo el equipo por el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} 4f8f054e41325ec4 es 22c559a8-fabc-4916-9961-bcbd61225266 74 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-73 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Brought my family here a couple of times at Christ... 0 50 \N \N \N 2026-01-31 02:05:33.645474 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5016 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 gracias Maite, İris y todo el equipo por el trato 182 215 \N \N \N 2026-01-31 15:04:34.132064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "no ha podido ser mejor elección", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "la armonización que consiguió la doctora Maite acorde a lo que quería", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 215, "evidence": "gracias Maite, İris y todo el equipo por el trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} 4f8f054e41325ec4 es 22c559a8-fabc-4916-9961-bcbd61225266 5017 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 estuvo super atendida y asesorada en todo momento 66 103 \N \N \N 2026-01-31 15:04:38.012383 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "estuvo super atendida y asesorada en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Un regalo donde triunfas seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "me han hablado maravillas, de su asesoramiento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 2b69715ffa4a4bd0 es 22c559a8-fabc-4916-9961-bcbd61225266 5018 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un regalo donde triunfas seguro 138 162 \N \N \N 2026-01-31 15:04:38.016978 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "estuvo super atendida y asesorada en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Un regalo donde triunfas seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "me han hablado maravillas, de su asesoramiento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 2b69715ffa4a4bd0 es 22c559a8-fabc-4916-9961-bcbd61225266 5019 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 me han hablado maravillas, de su asesoramiento 43 81 \N \N \N 2026-01-31 15:04:38.019321 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 103, "evidence": "estuvo super atendida y asesorada en todo momento", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "Un regalo donde triunfas seguro", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "me han hablado maravillas, de su asesoramiento", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 43}], "unmapped": []} 2b69715ffa4a4bd0 es 22c559a8-fabc-4916-9961-bcbd61225266 5020 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el tratamiento facial es impresionante, aparte de ser efectivo es saludable 80 132 \N \N \N 2026-01-31 15:04:44.412226 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 237}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 285}], "unmapped": []} f3fa2217041ffa48 es 22c559a8-fabc-4916-9961-bcbd61225266 5608 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Gran surtido de juguetes 0 27 \N \N \N 2026-01-31 15:16:17.238791 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "precios económicos", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Facilidades de reserva", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 27, "evidence": "Gran surtido de juguetes", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 6cd3bfc82f01074f es e4f95d90-dbbe-439d-a0fd-f19088002f26 75 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-74 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Very well organised and very efficient at getting ... 0 50 \N \N \N 2026-01-31 02:05:33.64673 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 76 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-75 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great set up, we did the Grand Prix. Really good, ... 0 50 \N \N \N 2026-01-31 02:05:33.647438 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 77 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-76 Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Felt was really good value for money. €18 for 8 mi... 0 50 \N \N \N 2026-01-31 02:05:33.648026 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5021 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado 134 188 \N \N \N 2026-01-31 15:04:44.414861 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 237}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 285}], "unmapped": []} f3fa2217041ffa48 es 22c559a8-fabc-4916-9961-bcbd61225266 5038 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNld2JES29nRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 maravilloso equipo de trabajo que son unas profesionales 66 112 \N \N \N 2026-01-31 15:05:02.760926 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 112, "evidence": "maravilloso equipo de trabajo que son unas profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "estoy encantada con los resultados mi piel está estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 8fc2cc8ed70c4a95 es 22c559a8-fabc-4916-9961-bcbd61225266 5091 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 mi piel ha mejorado enormemente 134 158 \N \N \N 2026-01-31 15:06:09.234503 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "me encantó tanto el resultado como la profesionalidad y el trato", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "ya mis amigas han pedido cita", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 156}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "mi piel ha mejorado enormemente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 40cbf3eb0637d7e7 es 22c559a8-fabc-4916-9961-bcbd61225266 5022 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10 190 236 \N \N \N 2026-01-31 15:04:44.416483 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 237}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 285}], "unmapped": []} f3fa2217041ffa48 es 22c559a8-fabc-4916-9961-bcbd61225266 78 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor rev-77 Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Very good and long track. Good value for your mone... 0 50 \N \N \N 2026-01-31 02:05:33.649051 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 79 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great day out for all. Thoroughly recommend a visi... 0 50 \N \N \N 2026-01-31 02:05:33.649881 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5023 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento 237 284 \N \N \N 2026-01-31 15:04:44.418435 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 237}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 285}], "unmapped": []} f3fa2217041ffa48 es 22c559a8-fabc-4916-9961-bcbd61225266 5024 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOGNITION + 3 3 \N 0.90 Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS 285 335 \N \N \N 2026-01-31 15:04:44.419855 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "el tratamiento facial es impresionante, aparte de ser efectivo es saludable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 188, "evidence": "las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 190}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Os animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 237}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "Felicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 285}], "unmapped": []} f3fa2217041ffa48 es 22c559a8-fabc-4916-9961-bcbd61225266 5025 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo 100% a cualquier familiar, amigo o conocido 56 97 \N \N \N 2026-01-31 15:04:49.18749 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} e7ef49dccc8bf8b7 es 22c559a8-fabc-4916-9961-bcbd61225266 5026 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Encantada con el trato recibido 0 30 \N \N \N 2026-01-31 15:04:49.191658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} e7ef49dccc8bf8b7 es 22c559a8-fabc-4916-9961-bcbd61225266 80 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Very good. Well run and lots of fun. 0 36 \N \N \N 2026-01-31 02:05:33.650548 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 81 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Very drively and power place.\nRegular competition ... 0 50 \N \N \N 2026-01-31 02:05:33.651044 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 82 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 1 1 \N 0.50 Grumpy man who looked like he hated everyone comin... 0 50 {general} \N \N 2026-01-31 02:05:33.65163 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5027 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 con el trabajo realizado 34 56 \N \N \N 2026-01-31 15:04:49.193599 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} e7ef49dccc8bf8b7 es 22c559a8-fabc-4916-9961-bcbd61225266 5028 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Muchas gracias al equipo de clínica Calme 99 132 \N \N \N 2026-01-31 15:04:49.195388 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "Lo recomiendo 100% a cualquier familiar, amigo o conocido", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Encantada con el trato recibido", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "con el trabajo realizado", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Muchas gracias al equipo de clínica Calme", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} e7ef49dccc8bf8b7 es 22c559a8-fabc-4916-9961-bcbd61225266 5029 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 tratamientos con efectividad y naturalidad 8 41 \N \N \N 2026-01-31 15:04:52.898313 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "tratamientos con efectividad y naturalidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "esa atencion de todo el equipo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "sin duda lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 65da6fbe15ba0296 es 22c559a8-fabc-4916-9961-bcbd61225266 5030 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 esa atencion de todo el equipo 82 104 \N \N \N 2026-01-31 15:04:52.900334 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "tratamientos con efectividad y naturalidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "esa atencion de todo el equipo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "sin duda lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 65da6fbe15ba0296 es 22c559a8-fabc-4916-9961-bcbd61225266 5031 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda lo recomiendo 100% 132 155 \N \N \N 2026-01-31 15:04:52.902296 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "tratamientos con efectividad y naturalidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 8}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "esa atencion de todo el equipo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "sin duda lo recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}], "unmapped": []} 65da6fbe15ba0296 es 22c559a8-fabc-4916-9961-bcbd61225266 83 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 If you're a karting lover don't come here, safety ... 0 50 \N \N \N 2026-01-31 02:05:33.652252 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5032 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la amabilidad y profesionalidad de Iris y de todo el equipo 18 73 \N \N \N 2026-01-31 15:04:56.668202 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "la amabilidad y profesionalidad de Iris y de todo el equipo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Excelentes profesionales, asesorándote y respondiendo a todas las dudas", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Recomiendo la clínica 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} af512c10b4469a35 es 22c559a8-fabc-4916-9961-bcbd61225266 5133 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-46 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 very caring 85 95 \N \N \N 2026-01-31 15:07:02.426117 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "I will definitely recommend this aesthetic", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "very caring", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "personalized", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 78}], "unmapped": []} 68238a48a4861a31 en 22c559a8-fabc-4916-9961-bcbd61225266 5033 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Excelentes profesionales, asesorándote y respondiendo a todas las dudas 75 126 \N \N \N 2026-01-31 15:04:56.670465 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "la amabilidad y profesionalidad de Iris y de todo el equipo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Excelentes profesionales, asesorándote y respondiendo a todas las dudas", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Recomiendo la clínica 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} af512c10b4469a35 es 22c559a8-fabc-4916-9961-bcbd61225266 5034 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo la clínica 100% 145 169 \N \N \N 2026-01-31 15:04:56.672701 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 73, "evidence": "la amabilidad y profesionalidad de Iris y de todo el equipo", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Excelentes profesionales, asesorándote y respondiendo a todas las dudas", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 169, "evidence": "Recomiendo la clínica 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} af512c10b4469a35 es 22c559a8-fabc-4916-9961-bcbd61225266 5035 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 trato de 10, muy amable y te hacen sentir como en casa 0 63 \N \N \N 2026-01-31 15:05:00.250215 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "trato de 10, muy amable y te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} 84c4d7d073adba41 es 22c559a8-fabc-4916-9961-bcbd61225266 5036 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Muy profesionales 64 84 \N \N \N 2026-01-31 15:05:00.252566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "trato de 10, muy amable y te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} 84c4d7d073adba41 es 22c559a8-fabc-4916-9961-bcbd61225266 5037 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos 85 145 \N \N \N 2026-01-31 15:05:00.25422 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 63, "evidence": "trato de 10, muy amable y te hacen sentir como en casa", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "Muy profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 64}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}], "unmapped": []} 84c4d7d073adba41 es 22c559a8-fabc-4916-9961-bcbd61225266 5040 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS - 2 2 \N 0.80 La chica de la recepción muy secona ,no me resolvió ninguna duda 0 66 \N \N \N 2026-01-31 15:05:08.36806 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "La chica de la recepción muy secona ,no me resolvió ninguna duda", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "esperaba más cordialidad y sutileza", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "se limitó a decir que ella no es doctora y a la consulta son 30", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 166}], "unmapped": []} d9685a0886ea8d24 es 22c559a8-fabc-4916-9961-bcbd61225266 5041 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION - 2 2 \N 0.80 no me dio un precio estimado de tratamiento 134 166 \N \N \N 2026-01-31 15:05:08.373862 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "La chica de la recepción muy secona ,no me resolvió ninguna duda", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "esperaba más cordialidad y sutileza", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "se limitó a decir que ella no es doctora y a la consulta son 30", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 166}], "unmapped": []} d9685a0886ea8d24 es 22c559a8-fabc-4916-9961-bcbd61225266 5042 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER - 2 2 \N 0.80 esperaba más cordialidad y sutileza 104 134 \N \N \N 2026-01-31 15:05:08.375588 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "La chica de la recepción muy secona ,no me resolvió ninguna duda", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "esperaba más cordialidad y sutileza", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "se limitó a decir que ella no es doctora y a la consulta son 30", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 166}], "unmapped": []} d9685a0886ea8d24 es 22c559a8-fabc-4916-9961-bcbd61225266 5043 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RESPONSE_QUALITY - 2 2 \N 0.80 se limitó a decir que ella no es doctora y a la consulta son 30 66 104 \N \N \N 2026-01-31 15:05:08.376921 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "La chica de la recepción muy secona ,no me resolvió ninguna duda", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "esperaba más cordialidad y sutileza", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "se limitó a decir que ella no es doctora y a la consulta son 30", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 166}], "unmapped": []} d9685a0886ea8d24 es 22c559a8-fabc-4916-9961-bcbd61225266 84 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Good afternoon. Friendly staff. Very reasonable pr... 0 50 \N \N \N 2026-01-31 02:05:33.652841 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5049 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo la clínica. 100 118 \N \N \N 2026-01-31 15:05:17.877 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} febd850813889808 es 22c559a8-fabc-4916-9961-bcbd61225266 5044 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND - 2 2 \N 0.80 he decidido ir a otra clínica donde me han tratado con más tacto y cariño 166 218 \N \N \N 2026-01-31 15:05:08.378224 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "La chica de la recepción muy secona ,no me resolvió ninguna duda", "intensity": 3, "primitive": "ATTENTIVENESS", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 166, "evidence": "no me dio un precio estimado de tratamiento", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 134}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "esperaba más cordialidad y sutileza", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 104}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "se limitó a decir que ella no es doctora y a la consulta son 30", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 218, "evidence": "he decidido ir a otra clínica donde me han tratado con más tacto y cariño", "intensity": 3, "primitive": "RECOMMEND", "confidence": 0.8, "start_char": 166}], "unmapped": []} d9685a0886ea8d24 es 22c559a8-fabc-4916-9961-bcbd61225266 5045 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo absolutamente a todo el mundo! 139 174 \N \N \N 2026-01-31 15:05:13.069251 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b es 22c559a8-fabc-4916-9961-bcbd61225266 5046 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña. 83 139 \N \N \N 2026-01-31 15:05:13.073164 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b es 22c559a8-fabc-4916-9961-bcbd61225266 5047 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 al usar anestesia durante el proceso es completamente indoloro. 56 93 \N \N \N 2026-01-31 15:05:13.075054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b es 22c559a8-fabc-4916-9961-bcbd61225266 5048 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ACKNOWLEDGMENT + 3 3 \N 0.90 Increíble la experiencia. 0 20 \N \N \N 2026-01-31 15:05:13.076479 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "Lo recomiendo absolutamente a todo el mundo!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "al usar anestesia durante el proceso es completamente indoloro.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Increíble la experiencia.", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} 25209bea301c764b es 22c559a8-fabc-4916-9961-bcbd61225266 5050 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 HONESTY + 2 3 \N 0.90 me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento. 66 116 \N \N \N 2026-01-31 15:05:17.88109 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} febd850813889808 es 22c559a8-fabc-4916-9961-bcbd61225266 5051 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Los resultados fueron los esperados 43 66 \N \N \N 2026-01-31 15:05:17.883107 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} febd850813889808 es 22c559a8-fabc-4916-9961-bcbd61225266 5052 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 estoy encantado con el trato. 36 61 \N \N \N 2026-01-31 15:05:17.884811 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Recomiendo la clínica.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento.", "intensity": 4, "primitive": "HONESTY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Los resultados fueron los esperados", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "estoy encantado con el trato.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}], "unmapped": []} febd850813889808 es 22c559a8-fabc-4916-9961-bcbd61225266 5053 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Súper recomendada 118 138 \N \N \N 2026-01-31 15:05:21.767672 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "Súper recomendada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la atención es de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "mi piel está más luminosa y cuidada que nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 50}], "unmapped": []} 05c974d37371639b es 22c559a8-fabc-4916-9961-bcbd61225266 5054 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la atención es de 10 66 84 \N \N \N 2026-01-31 15:05:21.770538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "Súper recomendada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la atención es de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "mi piel está más luminosa y cuidada que nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 50}], "unmapped": []} 05c974d37371639b es 22c559a8-fabc-4916-9961-bcbd61225266 5055 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 mi piel está más luminosa y cuidada que nunca 50 83 \N \N \N 2026-01-31 15:05:21.772859 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 138, "evidence": "Súper recomendada", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 84, "evidence": "la atención es de 10", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "mi piel está más luminosa y cuidada que nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 50}], "unmapped": []} 05c974d37371639b es 22c559a8-fabc-4916-9961-bcbd61225266 5056 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Variedad de tratamientos, se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia ofreciéndote el mejor servicio. 0 157 \N \N \N 2026-01-31 15:05:26.244125 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Variedad de tratamientos, se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia ofreciéndote el mejor servicio.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} 2d88ac713f409544 es 22c559a8-fabc-4916-9961-bcbd61225266 5057 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 todo muy limpio y ordenado. 107 132 \N \N \N 2026-01-31 15:05:26.24772 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Variedad de tratamientos, se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia ofreciéndote el mejor servicio.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} 2d88ac713f409544 es 22c559a8-fabc-4916-9961-bcbd61225266 5058 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Las chicas son muy detallistas y atentas, son maravillosas. 132 164 \N \N \N 2026-01-31 15:05:26.249087 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "Variedad de tratamientos, se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia ofreciéndote el mejor servicio.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "todo muy limpio y ordenado.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 107}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Las chicas son muy detallistas y atentas, son maravillosas.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 132}], "unmapped": []} 2d88ac713f409544 es 22c559a8-fabc-4916-9961-bcbd61225266 5059 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 un resultado y con el trato recibido 100 132 \N \N \N 2026-01-31 15:05:29.901599 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "un resultado y con el trato recibido", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda, la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "trato recibido", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 856ffc83427377bd es 22c559a8-fabc-4916-9961-bcbd61225266 5060 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda, la clínica Calme le ha dado una segunda oportunidad a mi rostro. 132 174 \N \N \N 2026-01-31 15:05:29.903807 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "un resultado y con el trato recibido", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda, la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "trato recibido", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 856ffc83427377bd es 22c559a8-fabc-4916-9961-bcbd61225266 5061 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 trato recibido 118 132 \N \N \N 2026-01-31 15:05:29.905205 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 132, "evidence": "un resultado y con el trato recibido", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda, la clínica Calme le ha dado una segunda oportunidad a mi rostro.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "trato recibido", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 118}], "unmapped": []} 856ffc83427377bd es 22c559a8-fabc-4916-9961-bcbd61225266 5062 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomiendo que vengas, no te arrepentirás. 204 238 \N \N \N 2026-01-31 15:05:35.819914 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 238, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}], "unmapped": []} 98b9b51df4c7a72d es 22c559a8-fabc-4916-9961-bcbd61225266 5063 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 AMBIANCE + 3 3 \N 0.90 Siempre con muy buen ambiente y mejores vibras. 157 192 \N \N \N 2026-01-31 15:05:35.824974 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 238, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}], "unmapped": []} 98b9b51df4c7a72d es 22c559a8-fabc-4916-9961-bcbd61225266 5064 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Además, unas profesionales de los pies a la cabeza. 134 174 \N \N \N 2026-01-31 15:05:35.827512 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 238, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}], "unmapped": []} 98b9b51df4c7a72d es 22c559a8-fabc-4916-9961-bcbd61225266 5065 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Me han dejado los labios que siempre había soñado. 45 81 \N \N \N 2026-01-31 15:05:35.829242 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 238, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}], "unmapped": []} 98b9b51df4c7a72d es 22c559a8-fabc-4916-9961-bcbd61225266 85 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great value for money. Big track 👍 0 34 \N \N \N 2026-01-31 02:05:33.65358 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5072 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 ¡Me encantan! 36 46 \N \N \N 2026-01-31 15:05:43.934857 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "¡Me encantan!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} dbbb0c02cfea6e46 es 22c559a8-fabc-4916-9961-bcbd61225266 5066 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate… 92 134 \N \N \N 2026-01-31 15:05:35.830637 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 238, "evidence": "100% recomiendo que vengas, no te arrepentirás.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "Siempre con muy buen ambiente y mejores vibras.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Además, unas profesionales de los pies a la cabeza.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "Me han dejado los labios que siempre había soñado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate…", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}], "unmapped": []} 98b9b51df4c7a72d es 22c559a8-fabc-4916-9961-bcbd61225266 5067 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la verdad que estoy encantada 36 61 \N \N \N 2026-01-31 15:05:39.417493 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "la verdad que estoy encantada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "es súper humana y se preocupa todo momento de hacerte sentir bien", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda pienso seguir visitando la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}], "unmapped": []} ae9ec924c55fca5d es 22c559a8-fabc-4916-9961-bcbd61225266 5068 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 es súper humana y se preocupa todo momento de hacerte sentir bien 66 113 \N \N \N 2026-01-31 15:05:39.422311 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "la verdad que estoy encantada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "es súper humana y se preocupa todo momento de hacerte sentir bien", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda pienso seguir visitando la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}], "unmapped": []} ae9ec924c55fca5d es 22c559a8-fabc-4916-9961-bcbd61225266 5069 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda pienso seguir visitando la clínica 138 174 \N \N \N 2026-01-31 15:05:39.424161 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "la verdad que estoy encantada", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "es súper humana y se preocupa todo momento de hacerte sentir bien", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Sin duda pienso seguir visitando la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}], "unmapped": []} ae9ec924c55fca5d es 22c559a8-fabc-4916-9961-bcbd61225266 5070 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el resultado final es increíble 90 116 \N \N \N 2026-01-31 15:05:43.931344 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "¡Me encantan!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} dbbb0c02cfea6e46 es 22c559a8-fabc-4916-9961-bcbd61225266 86 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Very good. Karts drive amazing and good a great ra... 0 50 \N \N \N 2026-01-31 02:05:33.654246 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5071 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 El procedimiento fue profesional 66 92 \N \N \N 2026-01-31 15:05:43.93356 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "el resultado final es increíble", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El procedimiento fue profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 46, "evidence": "¡Me encantan!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}], "unmapped": []} dbbb0c02cfea6e46 es 22c559a8-fabc-4916-9961-bcbd61225266 5073 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda la recomiendo 100% 118 142 \N \N \N 2026-01-31 15:05:48.581459 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "sin duda la recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "Magnifico trato y profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "solo puedo decir que volveré a repetir sin duda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "utilizó también en casa el tratamiento que me recomendaron", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 87}], "unmapped": []} c9597dc9d7bbba37 es 22c559a8-fabc-4916-9961-bcbd61225266 5074 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 Magnifico trato y profesionalidad 143 173 \N \N \N 2026-01-31 15:05:48.583032 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "sin duda la recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "Magnifico trato y profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "solo puedo decir que volveré a repetir sin duda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "utilizó también en casa el tratamiento que me recomendaron", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 87}], "unmapped": []} c9597dc9d7bbba37 es 22c559a8-fabc-4916-9961-bcbd61225266 5075 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 solo puedo decir que volveré a repetir sin duda 56 86 \N \N \N 2026-01-31 15:05:48.583985 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "sin duda la recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "Magnifico trato y profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "solo puedo decir que volveré a repetir sin duda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "utilizó también en casa el tratamiento que me recomendaron", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 87}], "unmapped": []} c9597dc9d7bbba37 es 22c559a8-fabc-4916-9961-bcbd61225266 5076 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.70 utilizó también en casa el tratamiento que me recomendaron 87 118 \N \N \N 2026-01-31 15:05:48.584865 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 142, "evidence": "sin duda la recomiendo 100%", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 173, "evidence": "Magnifico trato y profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 143}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "solo puedo decir que volveré a repetir sin duda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "utilizó también en casa el tratamiento que me recomendaron", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.7, "start_char": 87}], "unmapped": []} c9597dc9d7bbba37 es 22c559a8-fabc-4916-9961-bcbd61225266 5077 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 el trato exquisito y la atención personalizada hacen que te sientas como en casa 38 104 \N \N \N 2026-01-31 15:05:52.792868 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia en su campo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 es 22c559a8-fabc-4916-9961-bcbd61225266 5090 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 ya mis amigas han pedido cita 156 182 \N \N \N 2026-01-31 15:06:09.233149 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "me encantó tanto el resultado como la profesionalidad y el trato", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "ya mis amigas han pedido cita", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 156}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "mi piel ha mejorado enormemente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 40cbf3eb0637d7e7 es 22c559a8-fabc-4916-9961-bcbd61225266 5078 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia en su campo 284 347 \N \N \N 2026-01-31 15:05:52.794607 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia en su campo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 es 22c559a8-fabc-4916-9961-bcbd61225266 5079 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad 487 548 \N \N \N 2026-01-31 15:05:52.795726 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "el trato exquisito y la atención personalizada hacen que te sientas como en casa", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 38}, {"details": null, "valence": "positive", "end_char": 347, "evidence": "los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia en su campo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 548, "evidence": "Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} f179812299a1d253 es 22c559a8-fabc-4916-9961-bcbd61225266 5080 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUROMDUzN2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica 0 92 \N \N \N 2026-01-31 15:05:55.602083 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "las instalaciones están muy limpias y cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 92}], "unmapped": []} 95b2f9cd653be0f2 es 22c559a8-fabc-4916-9961-bcbd61225266 5081 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUROMDUzN2xnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 las instalaciones están muy limpias y cuidadas 92 122 \N \N \N 2026-01-31 15:05:55.604978 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "las instalaciones están muy limpias y cuidadas", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 92}], "unmapped": []} 95b2f9cd653be0f2 es 22c559a8-fabc-4916-9961-bcbd61225266 5636 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 amazing atmosphere!! 25 43 \N \N \N 2026-01-31 15:16:53.308715 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "amazing atmosphere!!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff and customers are friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Always a good vibe", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea9114d65b2557be en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5082 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel... 0 83 \N \N \N 2026-01-31 15:06:00.623764 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Sin duda alguna seran siempre mi clínica de confianza!!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} fa3eea20f1dbcd4c es 22c559a8-fabc-4916-9961-bcbd61225266 5083 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad... 83 139 \N \N \N 2026-01-31 15:06:00.62604 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Sin duda alguna seran siempre mi clínica de confianza!!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} fa3eea20f1dbcd4c es 22c559a8-fabc-4916-9961-bcbd61225266 5084 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RELIABILITY + 3 3 \N 0.90 Sin duda alguna seran siempre mi clínica de confianza!!! 139 182 \N \N \N 2026-01-31 15:06:00.627641 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Sin duda alguna seran siempre mi clínica de confianza!!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} fa3eea20f1dbcd4c es 22c559a8-fabc-4916-9961-bcbd61225266 5085 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato es increíble ❤️ 182 203 \N \N \N 2026-01-31 15:06:00.629898 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel...", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad...", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Sin duda alguna seran siempre mi clínica de confianza!!!", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El trato es increíble ❤️", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 182}], "unmapped": []} fa3eea20f1dbcd4c es 22c559a8-fabc-4916-9961-bcbd61225266 5086 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas 116 186 \N \N \N 2026-01-31 15:06:05.533935 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 258, "evidence": "recomiendo este tratamiento al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "felicitarles a todas por su nueva clínica en Bilbao", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 276}], "unmapped": []} fc78b1af9ffab4c7 es 22c559a8-fabc-4916-9961-bcbd61225266 5087 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 recomiendo este tratamiento al 100 % 226 258 \N \N \N 2026-01-31 15:06:05.536926 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 258, "evidence": "recomiendo este tratamiento al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "felicitarles a todas por su nueva clínica en Bilbao", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 276}], "unmapped": []} fc78b1af9ffab4c7 es 22c559a8-fabc-4916-9961-bcbd61225266 5088 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOGNITION + 3 3 \N 0.90 felicitarles a todas por su nueva clínica en Bilbao 276 314 \N \N \N 2026-01-31 15:06:05.539262 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 186, "evidence": "me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 258, "evidence": "recomiendo este tratamiento al 100 %", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "positive", "end_char": 314, "evidence": "felicitarles a todas por su nueva clínica en Bilbao", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 276}], "unmapped": []} fc78b1af9ffab4c7 es 22c559a8-fabc-4916-9961-bcbd61225266 5089 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 me encantó tanto el resultado como la profesionalidad y el trato 36 83 \N \N \N 2026-01-31 15:06:09.22882 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "me encantó tanto el resultado como la profesionalidad y el trato", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "ya mis amigas han pedido cita", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 156}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "mi piel ha mejorado enormemente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 134}], "unmapped": []} 40cbf3eb0637d7e7 es 22c559a8-fabc-4916-9961-bcbd61225266 5092 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 logro bajar 5 kilos con sus tratamientos 34 62 \N \N \N 2026-01-31 15:06:13.379064 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 62, "evidence": "logro bajar 5 kilos con sus tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "la verdad muy amables todas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "la atención de la directora un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 92}], "unmapped": []} 52c8585bafcd527e es 22c559a8-fabc-4916-9961-bcbd61225266 5093 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 la verdad muy amables todas 66 90 \N \N \N 2026-01-31 15:06:13.380549 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 62, "evidence": "logro bajar 5 kilos con sus tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "la verdad muy amables todas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "la atención de la directora un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 92}], "unmapped": []} 52c8585bafcd527e es 22c559a8-fabc-4916-9961-bcbd61225266 5094 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 la atención de la directora un amor 92 124 \N \N \N 2026-01-31 15:06:13.382042 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 62, "evidence": "logro bajar 5 kilos con sus tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 90, "evidence": "la verdad muy amables todas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "la atención de la directora un amor", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 92}], "unmapped": []} 52c8585bafcd527e es 22c559a8-fabc-4916-9961-bcbd61225266 5637 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 The staff and customers are friendly 78 109 \N \N \N 2026-01-31 15:16:53.31237 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "amazing atmosphere!!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff and customers are friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Always a good vibe", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea9114d65b2557be en 78e1db2d-21eb-4072-8fd7-88f6beef833b 87 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Good karting circuit with a lot of choice. For ad... 0 50 \N \N \N 2026-01-31 02:05:33.65481 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 88 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Excellent place for Supermoto riding. Fresh facili... 0 50 \N \N \N 2026-01-31 02:05:33.655553 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5095 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 me ha encantado la atención 30 50 \N \N \N 2026-01-31 15:06:18.155399 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 101}], "unmapped": []} 77edb42f21456eee es 22c559a8-fabc-4916-9961-bcbd61225266 5096 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 Desde el primer momento noté una mejoría 54 80 \N \N \N 2026-01-31 15:06:18.158446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 101}], "unmapped": []} 77edb42f21456eee es 22c559a8-fabc-4916-9961-bcbd61225266 5097 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 calidad-precio super bien 135 157 \N \N \N 2026-01-31 15:06:18.160092 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 101}], "unmapped": []} 77edb42f21456eee es 22c559a8-fabc-4916-9961-bcbd61225266 5098 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Estoy pensando en hacerme otro tratamiento 101 135 \N \N \N 2026-01-31 15:06:18.162372 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "me ha encantado la atención", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 80, "evidence": "Desde el primer momento noté una mejoría", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "calidad-precio super bien", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "positive", "end_char": 135, "evidence": "Estoy pensando en hacerme otro tratamiento", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 101}], "unmapped": []} 77edb42f21456eee es 22c559a8-fabc-4916-9961-bcbd61225266 5099 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda el mejor centro de estética en el que he estado 139 178 \N \N \N 2026-01-31 15:06:22.645815 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 178, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd es 22c559a8-fabc-4916-9961-bcbd61225266 5100 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 gracias a su amabilidad 116 136 \N \N \N 2026-01-31 15:06:22.64975 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 178, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd es 22c559a8-fabc-4916-9961-bcbd61225266 5101 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 relación calidad precio insuperable 178 205 \N \N \N 2026-01-31 15:06:22.651379 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 178, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd es 22c559a8-fabc-4916-9961-bcbd61225266 5102 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 resultó la mejor que me he hecho nunca 49 78 \N \N \N 2026-01-31 15:06:22.652921 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 178, "evidence": "sin duda el mejor centro de estética en el que he estado", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 136, "evidence": "gracias a su amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "relación calidad precio insuperable", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 178}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "resultó la mejor que me he hecho nunca", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 49}], "unmapped": []} 8dcc898da3001bcd es 22c559a8-fabc-4916-9961-bcbd61225266 5103 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Sin duda se ha convertido en mi clínica de confianza 109 143 \N \N \N 2026-01-31 15:06:26.608926 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda se ha convertido en mi clínica de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} 8bfe445255ebdb1b es 22c559a8-fabc-4916-9961-bcbd61225266 5104 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables 56 116 \N \N \N 2026-01-31 15:06:26.612616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda se ha convertido en mi clínica de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} 8bfe445255ebdb1b es 22c559a8-fabc-4916-9961-bcbd61225266 5105 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos 38 92 \N \N \N 2026-01-31 15:06:26.614376 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 143, "evidence": "Sin duda se ha convertido en mi clínica de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 109}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} 8bfe445255ebdb1b es 22c559a8-fabc-4916-9961-bcbd61225266 90 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 -1 star: On our 2nd round all other carts (200cc a... 0 50 \N \N \N 2026-01-31 02:05:33.657048 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5106 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CLEANLINESS + 3 3 \N 0.90 la limpieza facial profunda 0 30 \N \N \N 2026-01-31 15:06:30.923625 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "la limpieza facial profunda", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "a un precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "los tratamientos de dermocosmetica son muy buenos", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}], "unmapped": []} ecbd985f9e6d92df es 22c559a8-fabc-4916-9961-bcbd61225266 5107 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Lo recomiendo 100%. 164 182 \N \N \N 2026-01-31 15:06:30.926357 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "la limpieza facial profunda", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "a un precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "los tratamientos de dermocosmetica son muy buenos", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}], "unmapped": []} ecbd985f9e6d92df es 22c559a8-fabc-4916-9961-bcbd61225266 5108 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY + 3 3 \N 0.90 a un precio asequible 118 139 \N \N \N 2026-01-31 15:06:30.928476 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "la limpieza facial profunda", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "a un precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "los tratamientos de dermocosmetica son muy buenos", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}], "unmapped": []} ecbd985f9e6d92df es 22c559a8-fabc-4916-9961-bcbd61225266 5109 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT + 3 3 \N 0.90 los tratamientos de dermocosmetica son muy buenos 78 116 \N \N \N 2026-01-31 15:06:30.930619 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 30, "evidence": "la limpieza facial profunda", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "Lo recomiendo 100%.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "a un precio asequible", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "los tratamientos de dermocosmetica son muy buenos", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 78}], "unmapped": []} ecbd985f9e6d92df es 22c559a8-fabc-4916-9961-bcbd61225266 5110 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 sin duda volveré a acudir 106 126 \N \N \N 2026-01-31 15:06:35.103276 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la experiencia fue muy buena", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 es 22c559a8-fabc-4916-9961-bcbd61225266 5638 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Always a good vibe 0 17 \N \N \N 2026-01-31 15:16:53.314067 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "amazing atmosphere!!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "The staff and customers are friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 17, "evidence": "Always a good vibe", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} ea9114d65b2557be en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5111 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 El trato es fenomenal 43 66 \N \N \N 2026-01-31 15:06:35.106506 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la experiencia fue muy buena", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 es 22c559a8-fabc-4916-9961-bcbd61225266 5112 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 la experiencia fue muy buena 36 61 \N \N \N 2026-01-31 15:06:35.108332 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la experiencia fue muy buena", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 es 22c559a8-fabc-4916-9961-bcbd61225266 5113 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 3 3 \N 0.90 me asesoraron con las cremas a utilizar para mi tipo de piel 66 106 \N \N \N 2026-01-31 15:06:35.110089 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 126, "evidence": "sin duda volveré a acudir", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "El trato es fenomenal", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "la experiencia fue muy buena", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 106, "evidence": "me asesoraron con las cremas a utilizar para mi tipo de piel", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 66}], "unmapped": []} 8a9ee07088701722 es 22c559a8-fabc-4916-9961-bcbd61225266 5114 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 la chica se ha convertido en mi esteticista de confianza 164 203 \N \N \N 2026-01-31 15:06:38.797539 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "la chica se ha convertido en mi esteticista de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "mereció la pena porque ahora la tengo estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la técnico me explicó que debido al estado en el que llevé la piel", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}], "unmapped": []} eb5a16b42c0a6da0 es 22c559a8-fabc-4916-9961-bcbd61225266 5115 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 mereció la pena porque ahora la tengo estupenda 115 151 \N \N \N 2026-01-31 15:06:38.799488 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "la chica se ha convertido en mi esteticista de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "mereció la pena porque ahora la tengo estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la técnico me explicó que debido al estado en el que llevé la piel", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}], "unmapped": []} eb5a16b42c0a6da0 es 22c559a8-fabc-4916-9961-bcbd61225266 5116 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMMUNICATION + 2 3 \N 0.80 la técnico me explicó que debido al estado en el que llevé la piel 56 103 \N \N \N 2026-01-31 15:06:38.801511 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 203, "evidence": "la chica se ha convertido en mi esteticista de confianza", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "mereció la pena porque ahora la tengo estupenda", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 115}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "la técnico me explicó que debido al estado en el que llevé la piel", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 56}], "unmapped": []} eb5a16b42c0a6da0 es 22c559a8-fabc-4916-9961-bcbd61225266 5117 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 destaco la amabilidad y atención desde el momento de entrada a la clínica 66 116 \N \N \N 2026-01-31 15:06:44.469799 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 399}], "unmapped": []} 6d802bbf490c08ce es 22c559a8-fabc-4916-9961-bcbd61225266 5118 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 la profesional que me atendió es DOCTORA 54 82 \N \N \N 2026-01-31 15:06:44.473029 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 399}], "unmapped": []} 6d802bbf490c08ce es 22c559a8-fabc-4916-9961-bcbd61225266 5119 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 SPEED + 3 3 \N 0.90 rapidez con la que me atendió dicha doctora 116 152 \N \N \N 2026-01-31 15:06:44.475164 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 399}], "unmapped": []} 6d802bbf490c08ce es 22c559a8-fabc-4916-9961-bcbd61225266 5120 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 la Doctora consiguió más de lo que esperaba 367 399 \N \N \N 2026-01-31 15:06:44.476843 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 399}], "unmapped": []} 6d802bbf490c08ce es 22c559a8-fabc-4916-9961-bcbd61225266 5121 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 100% recomendable 399 414 \N \N \N 2026-01-31 15:06:44.479616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "destaco la amabilidad y atención desde el momento de entrada a la clínica", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "la profesional que me atendió es DOCTORA", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "rapidez con la que me atendió dicha doctora", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 399, "evidence": "la Doctora consiguió más de lo que esperaba", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "positive", "end_char": 414, "evidence": "100% recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 399}], "unmapped": []} 6d802bbf490c08ce es 22c559a8-fabc-4916-9961-bcbd61225266 5122 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS - 2 3 \N 0.90 Pésima atención al cliente. 276 303 \N \N \N 2026-01-31 15:06:50.413194 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 303, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "se quedaron con 30e a cuenta por que yo pasé a consulta.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": [{"label": "Customer dissatisfaction with pricing", "evidence": "el día anterior abone 129 por otro tratamiento .....", "confidence": 0.7}]} 15f45765c3d6234c es 22c559a8-fabc-4916-9961-bcbd61225266 5123 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE - 2 3 \N 0.90 no sentir seguridad y profesionalidad. 186 220 \N \N \N 2026-01-31 15:06:50.418498 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 303, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "se quedaron con 30e a cuenta por que yo pasé a consulta.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": [{"label": "Customer dissatisfaction with pricing", "evidence": "el día anterior abone 129 por otro tratamiento .....", "confidence": 0.7}]} 15f45765c3d6234c es 22c559a8-fabc-4916-9961-bcbd61225266 5124 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND - 2 3 \N 0.90 Tristemente no lo recomiendo 239 263 \N \N \N 2026-01-31 15:06:50.422093 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 303, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "se quedaron con 30e a cuenta por que yo pasé a consulta.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": [{"label": "Customer dissatisfaction with pricing", "evidence": "el día anterior abone 129 por otro tratamiento .....", "confidence": 0.7}]} 15f45765c3d6234c es 22c559a8-fabc-4916-9961-bcbd61225266 5125 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 VALUE_FOR_MONEY - 2 3 \N 0.90 se quedaron con 30e a cuenta por que yo pasé a consulta. 303 347 \N \N \N 2026-01-31 15:06:50.424908 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 303, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "se quedaron con 30e a cuenta por que yo pasé a consulta.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": [{"label": "Customer dissatisfaction with pricing", "evidence": "el día anterior abone 129 por otro tratamiento .....", "confidence": 0.7}]} 15f45765c3d6234c es 22c559a8-fabc-4916-9961-bcbd61225266 5126 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.70 el día anterior abone 129 por otro tratamiento ..... \N \N {"Customer dissatisfaction with pricing"} \N \N 2026-01-31 15:06:50.426461 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 303, "evidence": "Pésima atención al cliente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 276}, {"details": null, "valence": "negative", "end_char": 220, "evidence": "no sentir seguridad y profesionalidad.", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 263, "evidence": "Tristemente no lo recomiendo", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 239}, {"details": null, "valence": "negative", "end_char": 347, "evidence": "se quedaron con 30e a cuenta por que yo pasé a consulta.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 303}], "unmapped": [{"label": "Customer dissatisfaction with pricing", "evidence": "el día anterior abone 129 por otro tratamiento .....", "confidence": 0.7}]} 15f45765c3d6234c es 22c559a8-fabc-4916-9961-bcbd61225266 5127 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Un gran descubrimiento, no sólo buenas profesionales sino buenas personas 36 92 \N \N \N 2026-01-31 15:06:54.45967 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Un gran descubrimiento, no sólo buenas profesionales sino buenas personas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "buenas personas y encima les encantan los perros", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Desde el primer día me he sentido genial", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0396bea0772222a3 es 22c559a8-fabc-4916-9961-bcbd61225266 5128 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 MANNER + 3 3 \N 0.90 buenas personas y encima les encantan los perros 92 126 \N \N \N 2026-01-31 15:06:54.462186 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Un gran descubrimiento, no sólo buenas profesionales sino buenas personas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "buenas personas y encima les encantan los perros", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Desde el primer día me he sentido genial", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0396bea0772222a3 es 22c559a8-fabc-4916-9961-bcbd61225266 5129 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 Desde el primer día me he sentido genial 0 36 \N \N \N 2026-01-31 15:06:54.464217 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Un gran descubrimiento, no sólo buenas profesionales sino buenas personas", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "buenas personas y encima les encantan los perros", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 36, "evidence": "Desde el primer día me he sentido genial", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0396bea0772222a3 es 22c559a8-fabc-4916-9961-bcbd61225266 5130 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 Inmejorable!!!acudí para probar la depilación láser y no puedo estar más contenta 0 83 \N \N \N 2026-01-31 15:06:57.978365 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Inmejorable!!!acudí para probar la depilación láser y no puedo estar más contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "sobre todo a la directora por toda la dedicación y paciencia con mi hijo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}], "unmapped": []} dc0fc3fc35adc15e es 22c559a8-fabc-4916-9961-bcbd61225266 5131 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 sobre todo a la directora por toda la dedicación y paciencia con mi hijo 83 134 \N \N \N 2026-01-31 15:06:57.98184 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "Inmejorable!!!acudí para probar la depilación láser y no puedo estar más contenta", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 134, "evidence": "sobre todo a la directora por toda la dedicación y paciencia con mi hijo", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}], "unmapped": []} dc0fc3fc35adc15e es 22c559a8-fabc-4916-9961-bcbd61225266 5204 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 con rapidez 88 96 \N \N \N 2026-01-31 15:08:26.506062 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "nos resolvió el problema con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "con rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "un excelente profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}], "unmapped": []} b9237b8096f70242 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5132 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-46 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 I will definitely recommend this aesthetic 116 145 \N \N \N 2026-01-31 15:07:02.424626 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 145, "evidence": "I will definitely recommend this aesthetic", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "very caring", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 88, "evidence": "personalized", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 78}], "unmapped": []} 68238a48a4861a31 en 22c559a8-fabc-4916-9961-bcbd61225266 5135 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-47 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 the consistently excellent service and attention from all the staff 83 133 \N \N \N 2026-01-31 15:07:06.729222 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "the consistently excellent service and attention from all the staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "It's a pleasure to go to places where they make you feel so welcome", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I've always been satisfied", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b1feb7ec3356448b en 22c559a8-fabc-4916-9961-bcbd61225266 5136 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-47 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 It's a pleasure to go to places where they make you feel so welcome 134 179 \N \N \N 2026-01-31 15:07:06.732153 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "the consistently excellent service and attention from all the staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "It's a pleasure to go to places where they make you feel so welcome", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I've always been satisfied", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b1feb7ec3356448b en 22c559a8-fabc-4916-9961-bcbd61225266 5137 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-47 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS + 3 3 \N 0.90 I've always been satisfied 56 78 \N \N \N 2026-01-31 15:07:06.733325 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 133, "evidence": "the consistently excellent service and attention from all the staff", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "It's a pleasure to go to places where they make you feel so welcome", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "I've always been satisfied", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}], "unmapped": []} b1feb7ec3356448b en 22c559a8-fabc-4916-9961-bcbd61225266 5138 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 ATTENTIVENESS + 3 3 \N 0.90 The staff was incredibly attentive and friendly 10 56 \N \N \N 2026-01-31 15:07:11.512007 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 178}], "unmapped": []} 0932fd813ab441e6 en 22c559a8-fabc-4916-9961-bcbd61225266 5139 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 COMPETENCE + 3 3 \N 0.90 She's a true professional 83 107 \N \N \N 2026-01-31 15:07:11.514075 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 178}], "unmapped": []} 0932fd813ab441e6 en 22c559a8-fabc-4916-9961-bcbd61225266 5754 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-42 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY - 2 3 \N 0.80 as the security couldn't bounce him out right away 36 73 \N \N \N 2026-01-31 15:18:55.611961 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 86, "evidence": "i didn't feel safe that night", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 73, "evidence": "as the security couldn't bounce him out right away", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 36}], "unmapped": [{"label": "harassment incident", "evidence": "i was harassed by a drunk man in Soho", "confidence": 0.7}]} 87fd7983ea8d0848 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5718 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 had a good night dancing, drinking, and having fun 130 164 \N \N \N 2026-01-31 15:18:14.538267 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 82, "evidence": "this club hit the mark!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "met some great, friendly people", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "had a good night dancing, drinking, and having fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 130}], "unmapped": []} cd7b8c42da4fea36 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 91 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Great family fun 0 16 \N \N \N 2026-01-31 02:05:33.657707 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 92 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE Entertainment.GoKarts ENTERTAINMENT 1.2 SPEED + 2 2 \N 0.70 Watched our son and grandchildren race each other.... 0 50 \N \N \N 2026-01-31 02:05:33.658359 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5140 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RECOMMEND + 3 3 \N 0.90 I wholeheartedly recommend Clínica Calme 138 171 \N \N \N 2026-01-31 15:07:11.515416 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 178}], "unmapped": []} 0932fd813ab441e6 en 22c559a8-fabc-4916-9961-bcbd61225266 5141 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-48 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 RETURN_INTENT + 3 3 \N 0.90 You'll definitely want to come back! 178 205 \N \N \N 2026-01-31 15:07:11.516746 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "The staff was incredibly attentive and friendly", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 107, "evidence": "She's a true professional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "I wholeheartedly recommend Clínica Calme", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 138}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "You'll definitely want to come back!", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 178}], "unmapped": []} 0932fd813ab441e6 en 22c559a8-fabc-4916-9961-bcbd61225266 5142 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-49 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 EFFECTIVENESS - 2 3 \N 0.90 the asymmetry is much more noticeable 41 78 \N \N \N 2026-01-31 15:07:14.373848 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "the asymmetry is much more noticeable", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 121, "evidence": "horrible", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 114}], "unmapped": [{"label": "Overall dissatisfaction", "evidence": "Very disappointed with my lip filler results.", "confidence": 0.9}]} a56c7a436c1eb60d en 22c559a8-fabc-4916-9961-bcbd61225266 5143 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-49 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 CRAFT - 2 3 \N 0.90 horrible 114 121 \N \N \N 2026-01-31 15:07:14.375946 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "the asymmetry is much more noticeable", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 121, "evidence": "horrible", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 114}], "unmapped": [{"label": "Overall dissatisfaction", "evidence": "Very disappointed with my lip filler results.", "confidence": 0.9}]} a56c7a436c1eb60d en 22c559a8-fabc-4916-9961-bcbd61225266 5144 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 Clínica Calme - Medicina estética, estética avanzada y quiromasaje rev-49 Healthcare.Clinics.Specialized_clinic HEALTHCARE 1.1 UNMAPPED 0 1 1 \N 0.90 Very disappointed with my lip filler results. \N \N {"Overall dissatisfaction"} \N \N 2026-01-31 15:07:14.377359 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 78, "evidence": "the asymmetry is much more noticeable", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 121, "evidence": "horrible", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 114}], "unmapped": [{"label": "Overall dissatisfaction", "evidence": "Very disappointed with my lip filler results.", "confidence": 0.9}]} a56c7a436c1eb60d en 22c559a8-fabc-4916-9961-bcbd61225266 5145 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 3 3 \N 0.90 el sercicio es el peor 202 227 \N \N \N 2026-01-31 15:07:24.912889 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 153}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "mi casa parece zona de guerra", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "No puedo entender como nadie trabaja con ellos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 227}], "unmapped": []} 3378a0fe8ac02fd6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 93 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Excellent outdoor track with a selection of karts ... 0 50 \N \N \N 2026-01-31 02:05:33.658969 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5152 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min. 90 134 \N \N \N 2026-01-31 15:07:31.999711 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "El agua corría sin parar, tuve que cerrar el agua del grifo hasta que se solucionara el problema.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} f53f42107b6c449c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5146 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.80 respuesta que tiene q venir albañil q ya me llamarán 153 195 \N \N \N 2026-01-31 15:07:24.916795 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 153}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "mi casa parece zona de guerra", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "No puedo entender como nadie trabaja con ellos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 227}], "unmapped": []} 3378a0fe8ac02fd6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5147 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS - 2 3 \N 0.80 mi casa parece zona de guerra 164 189 \N \N \N 2026-01-31 15:07:24.917836 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 153}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "mi casa parece zona de guerra", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "No puedo entender como nadie trabaja con ellos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 227}], "unmapped": []} 3378a0fe8ac02fd6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5148 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS - 3 3 \N 0.70 No puedo entender como nadie trabaja con ellos 227 267 \N \N \N 2026-01-31 15:07:24.918617 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 227, "evidence": "el sercicio es el peor", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 202}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "respuesta que tiene q venir albañil q ya me llamarán", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 153}, {"details": null, "valence": "negative", "end_char": 189, "evidence": "mi casa parece zona de guerra", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "No puedo entender como nadie trabaja con ellos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.7, "start_char": 227}], "unmapped": []} 3378a0fe8ac02fd6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5149 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 realizó con gran profesionalidad 164 197 \N \N \N 2026-01-31 15:07:28.259499 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "realizó con gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trabajo se ha realizado en tiempo y forma", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 117}], "unmapped": []} 62b40b9aea9bd3e4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5150 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 El trabajo se ha realizado en tiempo y forma 83 116 \N \N \N 2026-01-31 15:07:28.263403 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "realizó con gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trabajo se ha realizado en tiempo y forma", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 117}], "unmapped": []} 62b40b9aea9bd3e4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 94 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 Service is top! Price affordable, all good 👍 0 44 \N \N \N 2026-01-31 02:05:33.659498 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5151 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés 117 164 \N \N \N 2026-01-31 15:07:28.267661 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "realizó con gran profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 116, "evidence": "El trabajo se ha realizado en tiempo y forma", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Agradecer a la Srta. Jazmina de la Oficina por su implicación e interés", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 117}], "unmapped": []} 62b40b9aea9bd3e4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5761 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-44 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY 0 1 1 \N 0.90 Response from the owner 0 24 \N \N \N 2026-01-31 15:19:01.89132 gpt-4o-mini {"spans": [{"details": null, "valence": "neutral", "end_char": 24, "evidence": "Response from the owner", "intensity": 1, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 8dd733145dba57d9 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5153 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 El agua corría sin parar, tuve que cerrar el agua del grifo hasta que se solucionara el problema. 37 103 \N \N \N 2026-01-31 15:07:32.003562 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "El agua corría sin parar, tuve que cerrar el agua del grifo hasta que se solucionara el problema.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} f53f42107b6c449c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5261 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.70 Servicio urgente \N \N {"Service Delay"} \N \N 2026-01-31 15:09:31.838483 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 88, "evidence": "Me responden que la responsable está al teléfono y no puede responder.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 122, "evidence": "Que me llamarían en breve, y estoy esperando.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": [{"label": "Service Delay", "evidence": "Servicio urgente", "confidence": 0.7}]} ba52b97d149021b6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5154 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muchas gracias de 13 islas empresas yo tuve buenas días de navidad. 145 186 \N \N \N 2026-01-31 15:07:32.005544 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "El agua corría sin parar, tuve que cerrar el agua del grifo hasta que se solucionara el problema.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 186, "evidence": "Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}], "unmapped": []} f53f42107b6c449c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5155 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 Fueron muy rápidos en arreglar la avería 0 38 \N \N \N 2026-01-31 15:07:36.447734 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Fueron muy rápidos en arreglar la avería", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "finalmente consiguieron solucionarlo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}], "unmapped": []} 783ed4bf0a625fa1 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5719 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 2 3 \N 0.90 the club was kept clean 56 75 \N \N \N 2026-01-31 15:18:20.800314 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "the club was kept clean", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "mixed", "end_char": 116, "evidence": "The music was a good mix, but too loud for the small room", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Bar service and coat service was good", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 30}], "unmapped": []} 08b00936c10b2a2a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5156 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 finalmente consiguieron solucionarlo 82 113 \N \N \N 2026-01-31 15:07:36.450408 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Fueron muy rápidos en arreglar la avería", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "finalmente consiguieron solucionarlo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}], "unmapped": []} 783ed4bf0a625fa1 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5157 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 dejaron todo muy limpio 56 78 \N \N \N 2026-01-31 15:07:36.451628 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Fueron muy rápidos en arreglar la avería", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "finalmente consiguieron solucionarlo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}], "unmapped": []} 783ed4bf0a625fa1 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5158 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Gracias a Giovanni por un trabajo tan bueno 115 152 \N \N \N 2026-01-31 15:07:36.452858 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Fueron muy rápidos en arreglar la avería", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 113, "evidence": "finalmente consiguieron solucionarlo", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "dejaron todo muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "Gracias a Giovanni por un trabajo tan bueno", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 115}], "unmapped": []} 783ed4bf0a625fa1 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5159 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS - 2 3 \N 0.90 la atención telefónica ha sido NEFASTA 36 66 \N \N \N 2026-01-31 15:07:41.634956 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "profesional bastante incompetente", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 164}], "unmapped": []} 0802de73da4eeeb9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5160 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.90 profesional bastante incompetente 85 118 \N \N \N 2026-01-31 15:07:41.637369 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "profesional bastante incompetente", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 164}], "unmapped": []} 0802de73da4eeeb9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5639 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 FRICTION - 2 3 \N 0.90 The system you have is stupid and discriminatory. 174 215 \N \N \N 2026-01-31 15:16:56.387206 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 215, "evidence": "The system you have is stupid and discriminatory.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "neutral", "end_char": 104, "evidence": "Thank you for your response.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 283, "evidence": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 216}], "unmapped": []} bf7a92434c577c6a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5161 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 nos dejan colgados 367 384 \N \N \N 2026-01-31 15:07:41.640106 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "profesional bastante incompetente", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 164}], "unmapped": []} 0802de73da4eeeb9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5162 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 no pueden venir…no hasta mañana 394 426 \N \N \N 2026-01-31 15:07:41.641913 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "profesional bastante incompetente", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 164}], "unmapped": []} 0802de73da4eeeb9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5163 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 se nos está inundando la casa desde hace más de 24 hrs 164 203 \N \N \N 2026-01-31 15:07:41.643713 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 66, "evidence": "la atención telefónica ha sido NEFASTA", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "negative", "end_char": 118, "evidence": "profesional bastante incompetente", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "negative", "end_char": 384, "evidence": "nos dejan colgados", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 367}, {"details": null, "valence": "negative", "end_char": 426, "evidence": "no pueden venir…no hasta mañana", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 394}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "se nos está inundando la casa desde hace más de 24 hrs", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 164}], "unmapped": []} 0802de73da4eeeb9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5164 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 supo desde el primer momento el tema de la averia y solucionado 56 102 \N \N \N 2026-01-31 15:07:45.031907 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 102, "evidence": "supo desde el primer momento el tema de la averia y solucionado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "hoy antes de la hora , ( perfecto) llegado el fontanero", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "estupendo profecional, gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 19184f98da3e8be5 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5165 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 hoy antes de la hora , ( perfecto) llegado el fontanero 36 61 \N \N \N 2026-01-31 15:07:45.035029 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 102, "evidence": "supo desde el primer momento el tema de la averia y solucionado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "hoy antes de la hora , ( perfecto) llegado el fontanero", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "estupendo profecional, gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 19184f98da3e8be5 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5166 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 estupendo profecional, gracias 103 128 \N \N \N 2026-01-31 15:07:45.040836 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 102, "evidence": "supo desde el primer momento el tema de la averia y solucionado", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 61, "evidence": "hoy antes de la hora , ( perfecto) llegado el fontanero", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 128, "evidence": "estupendo profecional, gracias", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 19184f98da3e8be5 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 95 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Great outdoor track! F-300 carts were quick! (Quic... 0 50 \N \N \N 2026-01-31 02:05:33.660031 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 96 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 I have been here numerous times. Very easy to book... 0 50 \N \N \N 2026-01-31 02:05:33.660519 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5167 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 Siempre hacen lo mismo 0 20 \N \N \N 2026-01-31 15:07:47.949212 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Siempre hacen lo mismo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "Encima que hay poco aparcamiento por la zona", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "Se cogen DOS", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 56}], "unmapped": []} 9a8351dbb7eb6188 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5168 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 Encima que hay poco aparcamiento por la zona 20 56 \N \N \N 2026-01-31 15:07:47.951741 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Siempre hacen lo mismo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "Encima que hay poco aparcamiento por la zona", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "Se cogen DOS", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 56}], "unmapped": []} 9a8351dbb7eb6188 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5169 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.80 Se cogen DOS 56 66 \N \N \N 2026-01-31 15:07:47.953287 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 20, "evidence": "Siempre hacen lo mismo", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 56, "evidence": "Encima que hay poco aparcamiento por la zona", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 20}, {"details": null, "valence": "negative", "end_char": 66, "evidence": "Se cogen DOS", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 56}], "unmapped": []} 9a8351dbb7eb6188 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5170 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Primera vez que un seguro y el servicio técnico me sorprende 0 66 \N \N \N 2026-01-31 15:07:51.037517 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Primera vez que un seguro y el servicio técnico me sorprende", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "no dilación no lentitud tiempo record el arreglo", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "muy conforme con el servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 104}], "unmapped": []} 82623ea7dc9a4bf8 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5171 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 no dilación no lentitud tiempo record el arreglo 66 103 \N \N \N 2026-01-31 15:07:51.04069 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Primera vez que un seguro y el servicio técnico me sorprende", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "no dilación no lentitud tiempo record el arreglo", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "muy conforme con el servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 104}], "unmapped": []} 82623ea7dc9a4bf8 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5172 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 muy conforme con el servicio 104 126 \N \N \N 2026-01-31 15:07:51.042231 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Primera vez que un seguro y el servicio técnico me sorprende", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "no dilación no lentitud tiempo record el arreglo", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "muy conforme con el servicio", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 104}], "unmapped": []} 82623ea7dc9a4bf8 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5173 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 han realizado un trabajo muy notable 37 66 \N \N \N 2026-01-31 15:07:54.003578 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "han realizado un trabajo muy notable", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "han cumplido a la perfección", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido una atención", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b0b3e238023db5f3 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5174 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 han cumplido a la perfección 70 92 \N \N \N 2026-01-31 15:07:54.006655 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "han realizado un trabajo muy notable", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "han cumplido a la perfección", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido una atención", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b0b3e238023db5f3 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5175 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Hemos recibido una atención 0 30 \N \N \N 2026-01-31 15:07:54.008321 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "han realizado un trabajo muy notable", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 37}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "han cumplido a la perfección", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 70}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "Hemos recibido una atención", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 0}], "unmapped": []} b0b3e238023db5f3 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5176 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy recomendable. 90 106 \N \N \N 2026-01-31 15:07:58.421063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5177 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 rapidez 30 37 \N \N \N 2026-01-31 15:07:58.427073 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5184 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 todo un profesional en cuestión de 20 minutos me la solucionó 66 107 \N \N \N 2026-01-31 15:08:05.333747 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "todo un profesional en cuestión de 20 minutos me la solucionó", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "ejecutó el trabajo de forma excelente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "Totalmente satisfecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 7475cd463c3130a6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 97 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 A repeat visit here for us. We really like go-kart... 0 50 \N \N \N 2026-01-31 02:05:33.661173 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5178 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 eficacia 39 47 \N \N \N 2026-01-31 15:07:58.428751 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5179 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 amabilidad 49 58 \N \N \N 2026-01-31 15:07:58.43116 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5187 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 2 \N 0.90 La primera persona a la que enviaron fue muy profesional 90 134 \N \N \N 2026-01-31 15:08:09.91509 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 316, "evidence": "mi comentario negativo es por la organización de la empresa", "intensity": 3, "primitive": "ORGANIZATION", "confidence": 0.7, "start_char": 276}], "unmapped": [{"label": "Task Prioritization", "evidence": "no velan por la necesidad real del cliente, sino por la optimización de sus recursos humanos", "confidence": 0.6}]} b693af0a3616faec es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5180 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 tanto de la joven que llama como el operador que vino acasa 60 98 \N \N \N 2026-01-31 15:07:58.432444 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "Muy recomendable.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 37, "evidence": "rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 47, "evidence": "eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "amabilidad", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 49}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "tanto de la joven que llama como el operador que vino acasa", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 60}], "unmapped": []} 9c1e93a101180a91 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5181 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 verdaderos profesionales, rápidos y sobre todo límpios en su trabajo 56 98 \N \N \N 2026-01-31 15:08:01.812636 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 98, "evidence": "verdaderos profesionales, rápidos y sobre todo límpios en su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "El contacto con la persona de la oficina también muy bien", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Muy contenta con los trabajos realizados", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} edfb15d8c163fc2e es f19a68b9-cddc-4584-8e74-630ce1a6b24b 98 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE Entertainment.GoKarts ENTERTAINMENT 1.2 MANNER + 2 2 \N 0.75 Use it every year. The kids love it. Nice size tra... 0 50 \N \N \N 2026-01-31 02:05:33.662094 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5182 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY + 3 3 \N 0.90 El contacto con la persona de la oficina también muy bien 99 132 \N \N \N 2026-01-31 15:08:01.814931 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 98, "evidence": "verdaderos profesionales, rápidos y sobre todo límpios en su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "El contacto con la persona de la oficina también muy bien", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Muy contenta con los trabajos realizados", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} edfb15d8c163fc2e es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5183 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy contenta con los trabajos realizados 43 75 \N \N \N 2026-01-31 15:08:01.816646 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 98, "evidence": "verdaderos profesionales, rápidos y sobre todo límpios en su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "El contacto con la persona de la oficina también muy bien", "intensity": 5, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 99}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "Muy contenta con los trabajos realizados", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 43}], "unmapped": []} edfb15d8c163fc2e es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5185 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 ejecutó el trabajo de forma excelente 108 138 \N \N \N 2026-01-31 15:08:05.336478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "todo un profesional en cuestión de 20 minutos me la solucionó", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "ejecutó el trabajo de forma excelente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "Totalmente satisfecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 7475cd463c3130a6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5186 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Totalmente satisfecho 139 161 \N \N \N 2026-01-31 15:08:05.337933 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 107, "evidence": "todo un profesional en cuestión de 20 minutos me la solucionó", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "ejecutó el trabajo de forma excelente", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 108}, {"details": null, "valence": "positive", "end_char": 161, "evidence": "Totalmente satisfecho", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 139}], "unmapped": []} 7475cd463c3130a6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5197 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 3 \N 0.90 El chico se esmero 3 h y picó intentando localizarla 56 92 \N \N \N 2026-01-31 15:08:18.715053 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "Simone fue muy muy amable y cariñoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El chico se esmero 3 h y picó intentando localizarla", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "hay que tener paciencia", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 197}], "unmapped": []} b910125eb78afa73 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5188 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 2 \N 0.80 no han enviado a nadie para tratar la humedad del pasillo 195 236 \N \N \N 2026-01-31 15:08:09.917515 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 316, "evidence": "mi comentario negativo es por la organización de la empresa", "intensity": 3, "primitive": "ORGANIZATION", "confidence": 0.7, "start_char": 276}], "unmapped": [{"label": "Task Prioritization", "evidence": "no velan por la necesidad real del cliente, sino por la optimización de sus recursos humanos", "confidence": 0.6}]} b693af0a3616faec es f19a68b9-cddc-4584-8e74-630ce1a6b24b 99 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 UNMAPPED - 1 1 \N 0.50 It is absolutely ridiculous that you brag about gi... 0 50 {general} \N \N 2026-01-31 02:05:33.662777 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5189 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 2 \N 0.70 mi comentario negativo es por la organización de la empresa 276 316 \N \N \N 2026-01-31 15:08:09.919208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 316, "evidence": "mi comentario negativo es por la organización de la empresa", "intensity": 3, "primitive": "ORGANIZATION", "confidence": 0.7, "start_char": 276}], "unmapped": [{"label": "Task Prioritization", "evidence": "no velan por la necesidad real del cliente, sino por la optimización de sus recursos humanos", "confidence": 0.6}]} b693af0a3616faec es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5190 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.60 no velan por la necesidad real del cliente, sino por la optimización de sus recursos humanos \N \N {"Task Prioritization"} \N \N 2026-01-31 15:08:09.920953 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "La primera persona a la que enviaron fue muy profesional", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 236, "evidence": "no han enviado a nadie para tratar la humedad del pasillo", "intensity": 3, "primitive": "RELIABILITY", "confidence": 0.8, "start_char": 195}, {"details": null, "valence": "negative", "end_char": 316, "evidence": "mi comentario negativo es por la organización de la empresa", "intensity": 3, "primitive": "ORGANIZATION", "confidence": 0.7, "start_char": 276}], "unmapped": [{"label": "Task Prioritization", "evidence": "no velan por la necesidad real del cliente, sino por la optimización de sus recursos humanos", "confidence": 0.6}]} b693af0a3616faec es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5193 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED 0 1 1 \N 0.60 5 días después me llama un vecino que está mojándose el coche la avería \N \N {"Service Delay"} \N \N 2026-01-31 15:08:12.684288 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 185, "evidence": "me contestan pues ya lo sabes", "intensity": 3, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "Poco profesionales", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 186}], "unmapped": [{"label": "Service Delay", "evidence": "5 días después me llama un vecino que está mojándose el coche la avería", "confidence": 0.6}]} c0aa3c745dcda2b8 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5194 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5MW9POVVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Enrique es muy profesional, educado y amable. 85 118 \N \N \N 2026-01-31 15:08:15.331571 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Enrique es muy profesional, educado y amable.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}], "unmapped": []} 6bcda5222185bb3c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5195 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQ5MW9POVVREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación. 34 118 \N \N \N 2026-01-31 15:08:15.334804 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 118, "evidence": "Enrique es muy profesional, educado y amable.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 34}], "unmapped": []} 6bcda5222185bb3c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5196 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 Simone fue muy muy amable y cariñoso 164 197 \N \N \N 2026-01-31 15:08:18.711821 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "Simone fue muy muy amable y cariñoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El chico se esmero 3 h y picó intentando localizarla", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "hay que tener paciencia", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 197}], "unmapped": []} b910125eb78afa73 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 100 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE Entertainment.GoKarts ENTERTAINMENT 1.2 VALUE_FOR_MONEY + 1 1 \N 0.50 A bit expensive, so it is a rare pleasure :D But t... 0 50 \N \N \N 2026-01-31 02:05:33.663445 \N \N \N \N a510c278-87b9-45f4-9d0a-e60ff4f30662 5198 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ACKNOWLEDGMENT + 2 3 \N 0.80 hay que tener paciencia 197 218 \N \N \N 2026-01-31 15:08:18.716858 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "Simone fue muy muy amable y cariñoso", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "El chico se esmero 3 h y picó intentando localizarla", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 218, "evidence": "hay que tener paciencia", "intensity": 4, "primitive": "ACKNOWLEDGMENT", "confidence": 0.8, "start_char": 197}], "unmapped": []} b910125eb78afa73 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5199 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 poca seriedad, 0% recomendable, y mentirosos. 200 239 \N \N \N 2026-01-31 15:08:23.61502 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 200}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "una hora antes de la hora que tenía que venir a mi domicilio a reparar me llaman de la oficina diciéndome que el escayolista está enfermo.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 145}], "unmapped": []} df84a58cd7082fb4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5200 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 2 3 \N 0.80 dándome más de 15 días de excusas. 83 113 \N \N \N 2026-01-31 15:08:23.616594 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 200}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "una hora antes de la hora que tenía que venir a mi domicilio a reparar me llaman de la oficina diciéndome que el escayolista está enfermo.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 145}], "unmapped": []} df84a58cd7082fb4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5201 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY - 2 3 \N 0.80 no pueden venirme hasta el 9 de Junio 118 144 \N \N \N 2026-01-31 15:08:23.61765 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 200}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "una hora antes de la hora que tenía que venir a mi domicilio a reparar me llaman de la oficina diciéndome que el escayolista está enfermo.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 145}], "unmapped": []} df84a58cd7082fb4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5202 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.80 una hora antes de la hora que tenía que venir a mi domicilio a reparar me llaman de la oficina diciéndome que el escayolista está enfermo. 145 227 \N \N \N 2026-01-31 15:08:23.618895 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 239, "evidence": "poca seriedad, 0% recomendable, y mentirosos.", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 200}, {"details": null, "valence": "negative", "end_char": 113, "evidence": "dándome más de 15 días de excusas.", "intensity": 4, "primitive": "COMMUNICATION", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 144, "evidence": "no pueden venirme hasta el 9 de Junio", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.8, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "una hora antes de la hora que tenía que venir a mi domicilio a reparar me llaman de la oficina diciéndome que el escayolista está enfermo.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 145}], "unmapped": []} df84a58cd7082fb4 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5203 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 nos resolvió el problema con eficacia 56 83 \N \N \N 2026-01-31 15:08:26.503671 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "nos resolvió el problema con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "con rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "un excelente profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}], "unmapped": []} b9237b8096f70242 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5205 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 un excelente profesional 46 67 \N \N \N 2026-01-31 15:08:26.508506 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "nos resolvió el problema con eficacia", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 96, "evidence": "con rapidez", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 67, "evidence": "un excelente profesional", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 46}], "unmapped": []} b9237b8096f70242 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5206 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 muy profesional el sr. fontanero 56 83 \N \N \N 2026-01-31 15:08:28.774143 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 83, "evidence": "muy profesional el sr. fontanero", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 51, "evidence": "todo correcto", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 39}], "unmapped": []} dd45d27ac703cc1c es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5208 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 2 3 \N 0.90 se han desentendido 118 134 \N \N \N 2026-01-31 15:08:32.15257 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "se han desentendido", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "sólo hacen tirarse la pelota unos a otros", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Llevo más de dos meses esperando la reparación de una avería", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} c1434c4a12f6cbfa es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5209 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 sólo hacen tirarse la pelota unos a otros 66 101 \N \N \N 2026-01-31 15:08:32.156557 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "se han desentendido", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "sólo hacen tirarse la pelota unos a otros", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Llevo más de dos meses esperando la reparación de una avería", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} c1434c4a12f6cbfa es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5210 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 Llevo más de dos meses esperando la reparación de una avería 0 54 \N \N \N 2026-01-31 15:08:32.158033 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 134, "evidence": "se han desentendido", "intensity": 4, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 101, "evidence": "sólo hacen tirarse la pelota unos a otros", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 54, "evidence": "Llevo más de dos meses esperando la reparación de una avería", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 0}], "unmapped": []} c1434c4a12f6cbfa es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5211 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 un servicio rápido y excelente 66 90 \N \N \N 2026-01-31 15:08:34.234575 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "un servicio rápido y excelente", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ya está solucionado el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}], "unmapped": []} d92eec3ef91a2a10 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5212 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 ya está solucionado el problema 45 66 \N \N \N 2026-01-31 15:08:34.23814 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 90, "evidence": "un servicio rápido y excelente", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ya está solucionado el problema", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 45}], "unmapped": []} d92eec3ef91a2a10 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5218 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy recomendable 132 149 \N \N \N 2026-01-31 15:08:42.613548 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 149, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 0252b0a234840fc6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5213 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 He recibido una atención perfecta por parte de esta Empresa. 0 56 \N \N \N 2026-01-31 15:08:39.331759 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo en mi casa.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Califico con sobresaliente el resultado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8bfcdd78be068d9a es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5214 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 orden y limpieza en los dos días en que realizaron su trabajo en mi casa. 80 124 \N \N \N 2026-01-31 15:08:39.333839 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo en mi casa.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Califico con sobresaliente el resultado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8bfcdd78be068d9a es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5215 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Les recomiendo esta Compañía. 145 171 \N \N \N 2026-01-31 15:08:39.335278 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo en mi casa.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Califico con sobresaliente el resultado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8bfcdd78be068d9a es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5216 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Puntualidad 78 86 \N \N \N 2026-01-31 15:08:39.337258 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo en mi casa.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Califico con sobresaliente el resultado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8bfcdd78be068d9a es f19a68b9-cddc-4584-8e74-630ce1a6b24b 101 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 I overall had a nice experience with Clickrent. I ... 0 50 \N \N \N 2026-01-31 02:05:46.974091 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 102 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 The initial price looks to good to be true - no on... 0 50 {general} \N \N 2026-01-31 02:05:46.975564 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5217 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 Califico con sobresaliente el resultado. 57 85 \N \N \N 2026-01-31 15:08:39.33874 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "He recibido una atención perfecta por parte de esta Empresa.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 124, "evidence": "orden y limpieza en los dos días en que realizaron su trabajo en mi casa.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 171, "evidence": "Les recomiendo esta Compañía.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "positive", "end_char": 86, "evidence": "Puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "Califico con sobresaliente el resultado.", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8bfcdd78be068d9a es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5219 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Grandes profesionales en todos los niveles 36 66 \N \N \N 2026-01-31 15:08:42.632213 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 149, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 0252b0a234840fc6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5244 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 servicio y rápido 12 22 \N \N \N 2026-01-31 15:09:11.257649 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "buen profesional el señor que me arreglo las averías", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "servicio y rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 49ea752397b24669 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5220 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 una gestión eficiente de todo el proceso 85 118 \N \N \N 2026-01-31 15:08:42.670847 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 149, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 0252b0a234840fc6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5221 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 Puntualidad, profesionalidad 118 132 \N \N \N 2026-01-31 15:08:42.688642 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 149, "evidence": "Muy recomendable", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 132}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Grandes profesionales en todos los niveles", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "una gestión eficiente de todo el proceso", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 132, "evidence": "Puntualidad, profesionalidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}], "unmapped": []} 0252b0a234840fc6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 103 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 Choose a different company!\nWe get here by foot be... 0 50 \N \N \N 2026-01-31 02:05:46.976567 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5222 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 excelentes profesionales 164 188 \N \N \N 2026-01-31 15:08:48.007424 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 3508095a4bd541b0 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5223 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 trato del cerrajero excelente 42 66 \N \N \N 2026-01-31 15:08:48.010563 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 3508095a4bd541b0 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5224 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 gestión impecable 24 41 \N \N \N 2026-01-31 15:08:48.012672 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 3508095a4bd541b0 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5242 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RETURN_INTENT + 3 3 \N 0.90 Les contactaría nuevamente ante una futura incidencia 145 184 \N \N \N 2026-01-31 15:09:07.762231 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "se encargaron de sustituir y reparar la cocina y la dejaron como nueva", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Pendientes y atentos en toda la gestión", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 184, "evidence": "Les contactaría nuevamente ante una futura incidencia", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} b31c02030a36ca93 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5225 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY + 3 3 \N 0.90 todo facilidades en la gestión y solución 66 103 \N \N \N 2026-01-31 15:08:48.014341 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 3508095a4bd541b0 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 104 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 Save your money and your holiday and book with som... 0 50 {general} \N \N 2026-01-31 02:05:46.977453 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 105 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Very good service, pickup was easy and so was the ... 0 50 \N \N \N 2026-01-31 02:05:46.978335 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5226 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 no duden en contactar con ellos 103 126 \N \N \N 2026-01-31 15:08:48.024173 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 188, "evidence": "excelentes profesionales", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "trato del cerrajero excelente", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 42}, {"details": null, "valence": "positive", "end_char": 41, "evidence": "gestión impecable", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 24}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "todo facilidades en la gestión y solución", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "no duden en contactar con ellos", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 103}], "unmapped": []} 3508095a4bd541b0 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5227 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Excelente trabajo y atención recibida 0 38 \N \N \N 2026-01-31 15:08:52.708564 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}], "unmapped": []} db8698ccd809b3d7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5237 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 3 \N 0.90 el fontanero que resolvió la avería, también muy bien 131 174 \N \N \N 2026-01-31 15:09:03.195883 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "el fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 131}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "el único problema a reseñar fue los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}], "unmapped": []} 671db7ad547530aa es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5228 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 solución una avería de agua que terminó con cambio de plato de ducha y azulejos 39 93 \N \N \N 2026-01-31 15:08:52.710347 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}], "unmapped": []} db8698ccd809b3d7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5229 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 Amabilidad y solvencia de las señoritas 94 126 \N \N \N 2026-01-31 15:08:52.711633 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}], "unmapped": []} db8698ccd809b3d7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 106 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Rented cars from them 2 separate times during my s... 0 50 \N \N \N 2026-01-31 02:05:46.97912 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 107 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Where should I start. There is one mini bus that w... 0 50 \N \N \N 2026-01-31 02:05:46.979746 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5243 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 buen profesional el señor que me arreglo las averías 29 70 \N \N \N 2026-01-31 15:09:11.255595 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "buen profesional el señor que me arreglo las averías", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "servicio y rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 49ea752397b24669 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5230 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION + 3 3 \N 0.90 Buena comunicación con el perito y la empresa 127 158 \N \N \N 2026-01-31 15:08:52.712942 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "Excelente trabajo y atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "solución una avería de agua que terminó con cambio de plato de ducha y azulejos", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 39}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "Amabilidad y solvencia de las señoritas", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 94}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "Buena comunicación con el perito y la empresa", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 127}], "unmapped": []} db8698ccd809b3d7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5231 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 La mejor empresa del sector y eso es difícil decirlo 36 78 \N \N \N 2026-01-31 15:08:59.35923 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 318, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 278}], "unmapped": []} 61f47b838d1c6b13 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5238 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED - 1 2 \N 0.80 el único problema a reseñar fue los tres días que tuve que esperar 174 215 \N \N \N 2026-01-31 15:09:03.198046 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "el fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 131}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "el único problema a reseñar fue los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}], "unmapped": []} 671db7ad547530aa es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5317 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 2 \N 0.90 great location 10 25 \N \N \N 2026-01-31 15:10:44.611256 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "kind staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "beds weren't very clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "it doesn't feel super safe there", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 129}, {"details": null, "valence": "mixed", "end_char": 138, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 en 56bb22c1-8631-4285-b549-8fa7c9944462 5232 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias 80 145 \N \N \N 2026-01-31 15:08:59.361782 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 318, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 278}], "unmapped": []} 61f47b838d1c6b13 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5233 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!! 188 236 \N \N \N 2026-01-31 15:08:59.364124 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 318, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 278}], "unmapped": []} 61f47b838d1c6b13 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5234 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 CLEANLINESS + 3 3 \N 0.90 Angel su pintor, que dejó todo muy bien,!! 241 276 \N \N \N 2026-01-31 15:08:59.367523 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 318, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 278}], "unmapped": []} 61f47b838d1c6b13 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5235 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOGNITION + 3 3 \N 0.90 A todos y cada uno de ellos GRACIAS por un servicio del 10...... 278 318 \N \N \N 2026-01-31 15:08:59.369212 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "La mejor empresa del sector y eso es difícil decirlo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 145, "evidence": "su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 236, "evidence": "Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!!", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 276, "evidence": "Angel su pintor, que dejó todo muy bien,!!", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 241}, {"details": null, "valence": "positive", "end_char": 318, "evidence": "A todos y cada uno de ellos GRACIAS por un servicio del 10......", "intensity": 5, "primitive": "RECOGNITION", "confidence": 0.9, "start_char": 278}], "unmapped": []} 61f47b838d1c6b13 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5236 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 muy amable la señora que me atendió por teléfono 85 130 \N \N \N 2026-01-31 15:09:03.192616 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 130, "evidence": "muy amable la señora que me atendió por teléfono", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 85}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "el fontanero que resolvió la avería, también muy bien", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 131}, {"details": null, "valence": "negative", "end_char": 215, "evidence": "el único problema a reseñar fue los tres días que tuve que esperar", "intensity": 2, "primitive": "SPEED", "confidence": 0.8, "start_char": 174}], "unmapped": []} 671db7ad547530aa es f19a68b9-cddc-4584-8e74-630ce1a6b24b 108 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 I’ve never seen a business so dedicated to fleecin... 0 50 {general} \N \N 2026-01-31 02:05:46.980402 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5240 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 se encargaron de sustituir y reparar la cocina y la dejaron como nueva 66 113 \N \N \N 2026-01-31 15:09:07.758805 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "se encargaron de sustituir y reparar la cocina y la dejaron como nueva", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Pendientes y atentos en toda la gestión", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 184, "evidence": "Les contactaría nuevamente ante una futura incidencia", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} b31c02030a36ca93 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5241 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 Pendientes y atentos en toda la gestión 113 144 \N \N \N 2026-01-31 15:09:07.760951 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "se encargaron de sustituir y reparar la cocina y la dejaron como nueva", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 144, "evidence": "Pendientes y atentos en toda la gestión", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 184, "evidence": "Les contactaría nuevamente ante una futura incidencia", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 145}], "unmapped": []} b31c02030a36ca93 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5245 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Muy buen servicio 0 15 \N \N \N 2026-01-31 15:09:11.258682 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 70, "evidence": "buen profesional el señor que me arreglo las averías", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 29}, {"details": null, "valence": "positive", "end_char": 22, "evidence": "servicio y rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 12}, {"details": null, "valence": "positive", "end_char": 15, "evidence": "Muy buen servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 49ea752397b24669 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5246 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Recomendado. 56 66 \N \N \N 2026-01-31 15:09:13.870062 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy profesionales, y el trabajo finalizado de muy buena calidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4774c1eb2978fb78 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5247 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 Muy profesionales, y el trabajo finalizado de muy buena calidad. 0 66 \N \N \N 2026-01-31 15:09:13.872617 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "Recomendado.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Muy profesionales, y el trabajo finalizado de muy buena calidad.", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}], "unmapped": []} 4774c1eb2978fb78 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5248 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 2 3 \N 0.90 muy atentos 116 128 \N \N \N 2026-01-31 15:09:17.185684 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 128, "evidence": "muy atentos", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "solucionando todos los problemas rápidamente", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "la experiencia ha sido muy buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 94}], "unmapped": []} 1d80bc2b9278baf6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5249 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 2 3 \N 0.90 solucionando todos los problemas rápidamente 130 162 \N \N \N 2026-01-31 15:09:17.189599 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 128, "evidence": "muy atentos", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "solucionando todos los problemas rápidamente", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "la experiencia ha sido muy buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 94}], "unmapped": []} 1d80bc2b9278baf6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 109 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB Automotive.CarRental AUTOMOTIVE 1.1 VALUE_FOR_MONEY + 1 1 \N 0.50 Everything was great!\n\nHad 200€ deposit taken upon... 0 50 \N \N \N 2026-01-31 02:05:46.980971 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5250 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 la experiencia ha sido muy buena 94 122 \N \N \N 2026-01-31 15:09:17.193054 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 128, "evidence": "muy atentos", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "solucionando todos los problemas rápidamente", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 130}, {"details": null, "valence": "positive", "end_char": 122, "evidence": "la experiencia ha sido muy buena", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 94}], "unmapped": []} 1d80bc2b9278baf6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5251 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 el trabajo del pintor, el Sr. Ángel, que realmente se nota que disfruta su trabajo 92 139 \N \N \N 2026-01-31 15:09:22.04253 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "el trabajo del pintor, el Sr. Ángel, que realmente se nota que disfruta su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "incluso trabajando fuera de su horario para terminar la tarea", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "la empresa se esforzó por ofrecer un buen servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3baa0c273608f04e es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5252 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 incluso trabajando fuera de su horario para terminar la tarea 139 183 \N \N \N 2026-01-31 15:09:22.045478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "el trabajo del pintor, el Sr. Ángel, que realmente se nota que disfruta su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "incluso trabajando fuera de su horario para terminar la tarea", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "la empresa se esforzó por ofrecer un buen servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3baa0c273608f04e es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5253 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 la empresa se esforzó por ofrecer un buen servicio 56 93 \N \N \N 2026-01-31 15:09:22.046806 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 139, "evidence": "el trabajo del pintor, el Sr. Ángel, que realmente se nota que disfruta su trabajo", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 92}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "incluso trabajando fuera de su horario para terminar la tarea", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 93, "evidence": "la empresa se esforzó por ofrecer un buen servicio", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 56}], "unmapped": []} 3baa0c273608f04e es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5254 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 AVAILABILITY + 2 3 \N 0.90 Puntualmente a las 11.30 horas estaba en mi puerta! 90 116 \N \N \N 2026-01-31 15:09:26.122501 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Puntualmente a las 11.30 horas estaba en mi puerta!", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "amable y profesional!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Descubrió la avería en un tris", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 78}], "unmapped": []} 4ba349b263125471 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5255 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 2 3 \N 0.90 amable y profesional! 139 157 \N \N \N 2026-01-31 15:09:26.12538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Puntualmente a las 11.30 horas estaba en mi puerta!", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "amable y profesional!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Descubrió la avería en un tris", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 78}], "unmapped": []} 4ba349b263125471 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 110 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Much more to pay on arrival, only credit card acce... 0 50 \N \N \N 2026-01-31 02:05:46.981516 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 111 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 This company is a scam based on my experience. The... 0 50 {general} \N \N 2026-01-31 02:05:46.982042 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5256 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 3 \N 0.80 Descubrió la avería en un tris 78 104 \N \N \N 2026-01-31 15:09:26.127173 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Puntualmente a las 11.30 horas estaba en mi puerta!", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "amable y profesional!", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Descubrió la avería en un tris", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 78}], "unmapped": []} 4ba349b263125471 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5257 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT2pseGIxTjBiMmMzZVZsbmNtSm1hV2hEYjBsR2IxRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 tuvieron mucho esmero por atendernos 22 61 \N \N \N 2026-01-31 15:09:28.673088 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "tuvieron mucho esmero por atendernos", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "positive", "end_char": 10, "evidence": "Buen trato", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}], "unmapped": []} 01d61591ef758d72 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5259 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 Me responden que la responsable está al teléfono y no puede responder. 41 88 \N \N \N 2026-01-31 15:09:31.83491 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 88, "evidence": "Me responden que la responsable está al teléfono y no puede responder.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 122, "evidence": "Que me llamarían en breve, y estoy esperando.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": [{"label": "Service Delay", "evidence": "Servicio urgente", "confidence": 0.7}]} ba52b97d149021b6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5260 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 Que me llamarían en breve, y estoy esperando. 90 122 \N \N \N 2026-01-31 15:09:31.837434 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 88, "evidence": "Me responden que la responsable está al teléfono y no puede responder.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 122, "evidence": "Que me llamarían en breve, y estoy esperando.", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 90}], "unmapped": [{"label": "Service Delay", "evidence": "Servicio urgente", "confidence": 0.7}]} ba52b97d149021b6 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5262 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 El técnico fue muy atento y correcto 36 66 \N \N \N 2026-01-31 15:09:35.307857 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "El técnico fue muy atento y correcto", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "lo ha realizado rápido y de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "Estoy contenta con el servicio de la empresa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ebca39f9febc324 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5263 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 lo ha realizado rápido y de calidad 90 117 \N \N \N 2026-01-31 15:09:35.310991 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "El técnico fue muy atento y correcto", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "lo ha realizado rápido y de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "Estoy contenta con el servicio de la empresa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ebca39f9febc324 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 112 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB Automotive.CarRental AUTOMOTIVE 1.1 UNMAPPED - 1 1 \N 0.50 A word of caution! I don't usually publish article... 0 50 {general} \N \N 2026-01-31 02:05:46.98267 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5264 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 Estoy contenta con el servicio de la empresa 0 39 \N \N \N 2026-01-31 15:09:35.31281 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 66, "evidence": "El técnico fue muy atento y correcto", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 117, "evidence": "lo ha realizado rápido y de calidad", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "positive", "end_char": 39, "evidence": "Estoy contenta con el servicio de la empresa", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 0ebca39f9febc324 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5265 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 2 2 \N 0.90 estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema. 0 134 \N \N \N 2026-01-31 15:09:39.697674 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 363, "evidence": "odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5272 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY - 3 3 \N 0.90 me dejaron 3h esperando 118 136 \N \N \N 2026-01-31 15:09:45.494459 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "me dejaron 3h esperando", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 204, "evidence": "me colgo el telefono", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "me profirio varios apelativos y no cariñosos", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 232}], "unmapped": []} 1d413ee7667f29e9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5266 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 PRICE_FAIRNESS - 2 3 \N 0.90 estoy muy descontento con la empresa "13 islas", particularmente por el precio abusivo de sus honorarios. 135 186 \N \N \N 2026-01-31 15:09:39.70566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 363, "evidence": "odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5267 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 PRICE_FAIRNESS - 2 3 \N 0.90 ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos. 292 339 \N \N \N 2026-01-31 15:09:39.708797 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 363, "evidence": "odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 113 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB Automotive.CarRental AUTOMOTIVE 1.1 SPEED - 2 2 \N 0.70 We reserved one car for 3 days for the price of 50... 0 50 \N \N \N 2026-01-31 02:05:46.983398 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5268 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 UNMAPPED - 2 3 \N 0.70 odio q me tomen por idiota. 340 363 \N \N \N 2026-01-31 15:09:39.711238 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 134, "evidence": "estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema.", "intensity": 3, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 186, "evidence": "estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 339, "evidence": "ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 292}, {"details": null, "valence": "negative", "end_char": 363, "evidence": "odio q me tomen por idiota.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 340}], "unmapped": []} e1b271f118fa05d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5269 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 arreglo todo perfecto 20 41 \N \N \N 2026-01-31 15:09:42.145208 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "arreglo todo perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super amable muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "de 10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": []} fa502b984297d88f es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5270 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 super amable muy profesional 41 66 \N \N \N 2026-01-31 15:09:42.148161 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "arreglo todo perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super amable muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "de 10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": []} fa502b984297d88f es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5271 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND + 3 3 \N 0.90 de 10 66 72 \N \N \N 2026-01-31 15:09:42.151596 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "arreglo todo perfecto", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 20}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "super amable muy profesional", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "de 10", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}], "unmapped": []} fa502b984297d88f es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5273 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMMUNICATION - 3 3 \N 0.90 me colgo el telefono 186 204 \N \N \N 2026-01-31 15:09:45.497954 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "me dejaron 3h esperando", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 204, "evidence": "me colgo el telefono", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "me profirio varios apelativos y no cariñosos", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 232}], "unmapped": []} 1d413ee7667f29e9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5274 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ETHICS - 3 3 \N 0.90 me profirio varios apelativos y no cariñosos 232 267 \N \N \N 2026-01-31 15:09:45.499534 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 136, "evidence": "me dejaron 3h esperando", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 204, "evidence": "me colgo el telefono", "intensity": 5, "primitive": "COMMUNICATION", "confidence": 0.9, "start_char": 186}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "me profirio varios apelativos y no cariñosos", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 232}], "unmapped": []} 1d413ee7667f29e9 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5763 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-45 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 The owner is such a nice person with such great ideas. 25 68 \N \N \N 2026-01-31 15:19:04.831958 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Love the place as such, decoration, music, drinks, people, all perfect,", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "The owner is such a nice person with such great ideas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Simply love this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 219f699dc19d01a2 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 114 a3813665-ea23-4fb0-aab7-b282ef9443e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB Automotive.CarRental AUTOMOTIVE 1.1 MANNER + 2 2 \N 0.75 Overall service experience was very good! One cons... 0 50 \N \N \N 2026-01-31 02:05:46.983865 \N \N \N \N 07c01d3a-3443-4031-910c-7b6feba2c100 5275 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 un profesional como la copa de un pino 66 97 \N \N \N 2026-01-31 15:09:49.379315 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD Y SU PROFESIONALIDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "me resolvió la fuga de agua ( que era difícil de buscar)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} 6a94e91a30b21105 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5276 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 MANNER + 3 3 \N 0.90 ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD Y SU PROFESIONALIDAD 139 195 \N \N \N 2026-01-31 15:09:49.382943 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD Y SU PROFESIONALIDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "me resolvió la fuga de agua ( que era difícil de buscar)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} 6a94e91a30b21105 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5277 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS + 3 3 \N 0.90 me resolvió la fuga de agua ( que era difícil de buscar) 38 82 \N \N \N 2026-01-31 15:09:49.385287 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 97, "evidence": "un profesional como la copa de un pino", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 195, "evidence": "ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD Y SU PROFESIONALIDAD", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "me resolvió la fuga de agua ( que era difícil de buscar)", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 38}], "unmapped": []} 6a94e91a30b21105 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5278 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 ATTENTIVENESS + 3 3 \N 0.90 atención recibida 27 48 \N \N \N 2026-01-31 15:09:52.41244 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 65}], "unmapped": []} 5813930af98a3276 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5279 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RELIABILITY + 3 3 \N 0.90 puntualidad 50 60 \N \N \N 2026-01-31 15:09:52.415159 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 65}], "unmapped": []} 5813930af98a3276 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5280 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE + 3 3 \N 0.90 profesionalidad 65 78 \N \N \N 2026-01-31 15:09:52.416489 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 48, "evidence": "atención recibida", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "puntualidad", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "profesionalidad", "intensity": 5, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 65}], "unmapped": []} 5813930af98a3276 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5764 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-45 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Simply love this place. 0 20 \N \N \N 2026-01-31 15:19:04.833997 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Love the place as such, decoration, music, drinks, people, all perfect,", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "The owner is such a nice person with such great ideas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Simply love this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 219f699dc19d01a2 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5777 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 CONDITION + 3 3 \N 0.90 The kart track is in great condition. 36 61 \N \N \N 2026-01-31 16:45:15.332683 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "The kart track is in great condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "had a lot of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "a great memory for everyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 0b8b3618e93d74d2 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5778 22c747a6-b913-4ae4-82bc-14b4195008b6 Go Karts Mar Menor Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Entertainment.GoKarts ENTERTAINMENT 1.2 RECOMMEND + 3 3 \N 0.90 had a lot of fun. 80 95 \N \N \N 2026-01-31 16:45:15.335903 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 61, "evidence": "The kart track is in great condition.", "intensity": 5, "primitive": "CONDITION", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "had a lot of fun.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "a great memory for everyone.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 134}], "unmapped": []} 0b8b3618e93d74d2 en a510c278-87b9-45f4-9d0a-e60ff4f30662 5281 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 RECOMMEND - 3 3 \N 0.90 No se lo recomiendo ni a mis propios enemigos. 90 126 \N \N \N 2026-01-31 15:09:55.619845 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "No se lo recomiendo ni a mis propios enemigos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "fontanero chulo y mal educado que enviaron a reparar una chapuza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "reparar una chapuza que él mismo había hecho hace unos meses atrás", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 92}], "unmapped": []} c2304a153ebc96d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5282 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 COMPETENCE - 2 3 \N 0.80 fontanero chulo y mal educado que enviaron a reparar una chapuza 56 92 \N \N \N 2026-01-31 15:09:55.622324 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "No se lo recomiendo ni a mis propios enemigos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "fontanero chulo y mal educado que enviaron a reparar una chapuza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "reparar una chapuza que él mismo había hecho hace unos meses atrás", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 92}], "unmapped": []} c2304a153ebc96d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5283 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 EFFECTIVENESS - 2 3 \N 0.80 reparar una chapuza que él mismo había hecho hace unos meses atrás 92 134 \N \N \N 2026-01-31 15:09:55.62443 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "No se lo recomiendo ni a mis propios enemigos.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 92, "evidence": "fontanero chulo y mal educado que enviaron a reparar una chapuza", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.8, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "reparar una chapuza que él mismo había hecho hace unos meses atrás", "intensity": 4, "primitive": "EFFECTIVENESS", "confidence": 0.8, "start_char": 92}], "unmapped": []} c2304a153ebc96d2 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 4944 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB Food_Dining.Cafe FOOD_DINING 1.2 TASTE - 1 2 \N 0.80 Food wasn't as great as I hoped for 0 30 \N \N \N 2026-01-31 15:02:18.528293 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 30, "evidence": "Food wasn't as great as I hoped for", "intensity": 2, "primitive": "TASTE", "confidence": 0.8, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 48, "evidence": "Service was great", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 31}], "unmapped": []} 6695c08a7449aa24 en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4955 acb2e9f2-5951-476b-a5a5-71cf81009e6f Fika ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB Food_Dining.Cafe FOOD_DINING 1.2 RECOMMEND + 3 3 \N 0.90 I love their waffles 0 24 \N \N \N 2026-01-31 15:02:30.407662 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 24, "evidence": "I love their waffles", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} d96b7c412a18550d en dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5306 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2xCMFNVeGZVekUzWjNjMVNIbFRZVTUyYTJReWEwRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:10:28.611088 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f unknown 56bb22c1-8631-4285-b549-8fa7c9944462 5610 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSUNVczctd2FREAE Retail.Stores.Toy_store RETAIL 1.0 PRICE_LEVEL + 3 3 \N 0.90 'Oi esa precio side' 0 22 \N \N \N 2026-01-31 15:16:20.338445 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "'Oi esa precio side'", "intensity": 5, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 0}], "unmapped": []} 177e796a7fbc8a8f es e4f95d90-dbbe-439d-a0fd-f19088002f26 5611 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 2 3 \N 0.90 Siempre encuentro aquí lo que ando buscando 56 85 \N \N \N 2026-01-31 15:16:22.285794 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "Siempre encuentro aquí lo que ando buscando", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}], "unmapped": [{"label": "Price Comparison", "evidence": "Aunque alguna vez lo he conseguido más económico en otro lado.", "confidence": 0.7}]} 73942d78e0234d15 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5284 72e6644d-1c89-4757-be12-c195e666b2db 13 Islas ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB Home_Services.Plumbing.Plumber HOME_SERVICES 1.0 SPEED + 3 3 \N 0.90 acudieron muy rápido 66 81 \N \N \N 2026-01-31 15:10:00.719006 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 81, "evidence": "acudieron muy rápido", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "enseguida detectaron el problema y pusieron solución", "intensity": 5, "primitive": "EFFECTIVENESS", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "el buen talante de la persona que acudió", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 119}, {"details": null, "valence": "positive", "end_char": 174, "evidence": "Un servicio muy bueno", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 152}], "unmapped": []} dd88136fd3a77fb7 es f19a68b9-cddc-4584-8e74-630ce1a6b24b 5775 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-49 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 2 \N 0.90 great atmosphere 21 38 \N \N \N 2026-01-31 15:19:16.919033 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "great atmosphere", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "negative", "end_char": 59, "evidence": "very slow bar service", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 40}], "unmapped": []} a1a2c5f766454902 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5307 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 the bunks in the room where I was accommodated, were old and shabby 66 113 \N \N \N 2026-01-31 15:10:35.244764 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 546, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "complaint about noise and discomfort", "evidence": "there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace", "confidence": 0.8}, {"label": "health concern", "evidence": "I have a transplanted kidney, taking immunosupression", "confidence": 0.7}]} a50dd57839c8c7a8 en 56bb22c1-8631-4285-b549-8fa7c9944462 5308 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 humidity and dust come to your lungs 205 233 \N \N \N 2026-01-31 15:10:35.248103 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 546, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "complaint about noise and discomfort", "evidence": "there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace", "confidence": 0.8}, {"label": "health concern", "evidence": "I have a transplanted kidney, taking immunosupression", "confidence": 0.7}]} a50dd57839c8c7a8 en 56bb22c1-8631-4285-b549-8fa7c9944462 5309 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS - 2 3 \N 0.90 He didn't care if I am okay and where I am going to spend the night 307 358 \N \N \N 2026-01-31 15:10:35.250035 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 546, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "complaint about noise and discomfort", "evidence": "there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace", "confidence": 0.8}, {"label": "health concern", "evidence": "I have a transplanted kidney, taking immunosupression", "confidence": 0.7}]} a50dd57839c8c7a8 en 56bb22c1-8631-4285-b549-8fa7c9944462 5310 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 2 3 \N 0.90 blaming me for expressing my opinion here on Google and threatening me 487 546 \N \N \N 2026-01-31 15:10:35.252649 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 546, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "complaint about noise and discomfort", "evidence": "there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace", "confidence": 0.8}, {"label": "health concern", "evidence": "I have a transplanted kidney, taking immunosupression", "confidence": 0.7}]} a50dd57839c8c7a8 en 56bb22c1-8631-4285-b549-8fa7c9944462 5341 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 si buscas un sitio tranquilo y centrico este es tu sitio 60 98 \N \N \N 2026-01-31 15:11:10.481299 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "el staff es super Amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "si buscas un sitio tranquilo y centrico este es tu sitio", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} 769b52d0044e9fef es 56bb22c1-8631-4285-b549-8fa7c9944462 5311 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.80 there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace \N \N {"complaint about noise and discomfort"} \N \N 2026-01-31 15:10:35.254662 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 546, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "complaint about noise and discomfort", "evidence": "there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace", "confidence": 0.8}, {"label": "health concern", "evidence": "I have a transplanted kidney, taking immunosupression", "confidence": 0.7}]} a50dd57839c8c7a8 en 56bb22c1-8631-4285-b549-8fa7c9944462 5312 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.70 I have a transplanted kidney, taking immunosupression \N \N {"health concern"} \N \N 2026-01-31 15:10:35.25681 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 113, "evidence": "the bunks in the room where I was accommodated, were old and shabby", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 233, "evidence": "humidity and dust come to your lungs", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 358, "evidence": "He didn't care if I am okay and where I am going to spend the night", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 307}, {"details": null, "valence": "negative", "end_char": 546, "evidence": "blaming me for expressing my opinion here on Google and threatening me", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 487}], "unmapped": [{"label": "complaint about noise and discomfort", "evidence": "there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace", "confidence": 0.8}, {"label": "health concern", "evidence": "I have a transplanted kidney, taking immunosupression", "confidence": 0.7}]} a50dd57839c8c7a8 en 56bb22c1-8631-4285-b549-8fa7c9944462 5313 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GcE1VVXdkek42Um5CUFUzWm5iREpmUVVNNGNtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED - 3 3 \N 0.90 Desepcionante 0 12 \N \N \N 2026-01-31 15:10:36.539566 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 12, "evidence": "Desepcionante", "intensity": 5, "primitive": "UNMAPPED", "confidence": 0.9, "start_char": 0}], "unmapped": []} b9e2a69ec81fbd34 en 56bb22c1-8631-4285-b549-8fa7c9944462 5686 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 the immaculate positive vibes 82 106 \N \N \N 2026-01-31 15:17:44.682534 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 106, "evidence": "the immaculate positive vibes", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "I don’t think I’ve ever felt safer", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 126}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "Definitely go when you have time!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 195}], "unmapped": []} 71d1ac896ff46944 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5315 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Parfaitement située à 2 pas de la plage, des cafés et commerces 0 66 \N \N \N 2026-01-31 15:10:39.771063 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "son équipe sympa et accueillante", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Parfaitement située à 2 pas de la plage, des cafés et commerces", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "J’ai déjà hâte d’y retourner", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} c19f16f18456796b fr 56bb22c1-8631-4285-b549-8fa7c9944462 5316 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 J’ai déjà hâte d’y retourner 92 118 \N \N \N 2026-01-31 15:10:39.773094 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "son équipe sympa et accueillante", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "Parfaitement située à 2 pas de la plage, des cafés et commerces", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "J’ai déjà hâte d’y retourner", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 92}], "unmapped": []} c19f16f18456796b fr 56bb22c1-8631-4285-b549-8fa7c9944462 5609 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURCejVYdUx3EAE Retail.Stores.Toy_store RETAIL 1.0 RECOMMEND + 3 3 \N 0.90 Siempre con muy buenas ofertas y una atención excepcional. 0 56 \N \N \N 2026-01-31 15:16:18.627851 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 56, "evidence": "Siempre con muy buenas ofertas y una atención excepcional.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} b31954382516574f es e4f95d90-dbbe-439d-a0fd-f19088002f26 5321 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED ± 1 2 \N 0.60 the photos look nothing like the hostel 107 138 \N \N \N 2026-01-31 15:10:44.622755 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 25, "evidence": "great location", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 10}, {"details": null, "valence": "positive", "end_char": 50, "evidence": "kind staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 40}, {"details": null, "valence": "negative", "end_char": 185, "evidence": "beds weren't very clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 154, "evidence": "it doesn't feel super safe there", "intensity": 3, "primitive": "SAFETY", "confidence": 0.8, "start_char": 129}, {"details": null, "valence": "mixed", "end_char": 138, "evidence": "the photos look nothing like the hostel", "intensity": 2, "primitive": "UNMAPPED", "confidence": 0.6, "start_char": 107}], "unmapped": []} abf760b490f93604 en 56bb22c1-8631-4285-b549-8fa7c9944462 5342 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACKNOWLEDGMENT + 3 3 \N 0.90 Gracias 99 105 \N \N \N 2026-01-31 15:11:10.48315 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 58, "evidence": "el staff es super Amable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 34}, {"details": null, "valence": "positive", "end_char": 98, "evidence": "si buscas un sitio tranquilo y centrico este es tu sitio", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 105, "evidence": "Gracias", "intensity": 5, "primitive": "ACKNOWLEDGMENT", "confidence": 0.9, "start_char": 99}], "unmapped": []} 769b52d0044e9fef es 56bb22c1-8631-4285-b549-8fa7c9944462 5322 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I will definitely book to stay longer on my next trip to Gran Canaria. 66 113 \N \N \N 2026-01-31 15:10:51.098233 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The beds are comfortable and it's not too hot at night, there is plenty of airflow.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}], "unmapped": []} 39bfd1abe9970a5a en 56bb22c1-8631-4285-b549-8fa7c9944462 5323 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 It has a sense of community, and everyone seems very laidback and easygoing. 284 335 \N \N \N 2026-01-31 15:10:51.101623 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The beds are comfortable and it's not too hot at night, there is plenty of airflow.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}], "unmapped": []} 39bfd1abe9970a5a en 56bb22c1-8631-4285-b549-8fa7c9944462 5324 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 The rooms were comfortable and there are lockers for your belongings. 213 267 \N \N \N 2026-01-31 15:10:51.103687 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The beds are comfortable and it's not too hot at night, there is plenty of airflow.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}], "unmapped": []} 39bfd1abe9970a5a en 56bb22c1-8631-4285-b549-8fa7c9944462 5325 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 Everyone is very friendly and I was made to feel very welcome by both the staff and other guests. 113 179 \N \N \N 2026-01-31 15:10:51.10539 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The beds are comfortable and it's not too hot at night, there is plenty of airflow.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}], "unmapped": []} 39bfd1abe9970a5a en 56bb22c1-8631-4285-b549-8fa7c9944462 5326 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The beds are comfortable and it's not too hot at night, there is plenty of airflow. 267 284 \N \N \N 2026-01-31 15:10:51.107621 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I will definitely book to stay longer on my next trip to Gran Canaria.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "positive", "end_char": 335, "evidence": "It has a sense of community, and everyone seems very laidback and easygoing.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 284}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "The rooms were comfortable and there are lockers for your belongings.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 213}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Everyone is very friendly and I was made to feel very welcome by both the staff and other guests.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "The beds are comfortable and it's not too hot at night, there is plenty of airflow.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 267}], "unmapped": []} 39bfd1abe9970a5a en 56bb22c1-8631-4285-b549-8fa7c9944462 5327 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 El ambiente es agradable, relajado y acogedor, ideal para desconectar. 100 157 \N \N \N 2026-01-31 15:10:55.398361 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "El ambiente es agradable, relajado y acogedor, ideal para desconectar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "Sin duda, un lugar al que volvería y que recomiendo totalmente.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8c3bb4080f37c799 es 56bb22c1-8631-4285-b549-8fa7c9944462 5328 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 El personal fue lo máximo: siempre atentos, amables y con muy buena energía. 157 203 \N \N \N 2026-01-31 15:10:55.400759 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "El ambiente es agradable, relajado y acogedor, ideal para desconectar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "Sin duda, un lugar al que volvería y que recomiendo totalmente.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8c3bb4080f37c799 es 56bb22c1-8631-4285-b549-8fa7c9944462 5329 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 Sin duda, un lugar al que volvería y que recomiendo totalmente. 203 246 \N \N \N 2026-01-31 15:10:55.402434 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "El ambiente es agradable, relajado y acogedor, ideal para desconectar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "Sin duda, un lugar al que volvería y que recomiendo totalmente.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8c3bb4080f37c799 es 56bb22c1-8631-4285-b549-8fa7c9944462 5330 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca. 57 100 \N \N \N 2026-01-31 15:10:55.404355 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 157, "evidence": "El ambiente es agradable, relajado y acogedor, ideal para desconectar.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 100}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "El personal fue lo máximo: siempre atentos, amables y con muy buena energía.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 246, "evidence": "Sin duda, un lugar al que volvería y que recomiendo totalmente.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 203}, {"details": null, "valence": "positive", "end_char": 100, "evidence": "La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 57}], "unmapped": []} 8c3bb4080f37c799 es 56bb22c1-8631-4285-b549-8fa7c9944462 5331 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I always come back here whenever I'm in Las Palmas. 0 45 \N \N \N 2026-01-31 15:11:01.326171 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 207, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 208}], "unmapped": []} d514f3d74a71212c en 56bb22c1-8631-4285-b549-8fa7c9944462 5332 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 The staff is very kind and helpful 46 75 \N \N \N 2026-01-31 15:11:01.327707 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 207, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 208}], "unmapped": []} d514f3d74a71212c en 56bb22c1-8631-4285-b549-8fa7c9944462 5333 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot 80 157 \N \N \N 2026-01-31 15:11:01.328593 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 207, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 208}], "unmapped": []} d514f3d74a71212c en 56bb22c1-8631-4285-b549-8fa7c9944462 5338 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Always very clean and tidy 84 109 \N \N \N 2026-01-31 15:11:06.494796 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "all the staff is very helpful and friendly, especially my man Miguel!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 57a5970cff2d38a5 en 56bb22c1-8631-4285-b549-8fa7c9944462 5334 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 The beds are comfy and I also appreciate the fact that there are curtains 158 207 \N \N \N 2026-01-31 15:11:01.329491 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 207, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 208}], "unmapped": []} d514f3d74a71212c en 56bb22c1-8631-4285-b549-8fa7c9944462 5392 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 Cerca de la playa 0 20 \N \N \N 2026-01-31 15:12:10.258292 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 59, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b es 56bb22c1-8631-4285-b549-8fa7c9944462 5335 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 On weekends they always organize something to go out all together and have some fun 208 267 \N \N \N 2026-01-31 15:11:01.331183 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 45, "evidence": "I always come back here whenever I'm in Las Palmas.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "The staff is very kind and helpful", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 46}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 80}, {"details": null, "valence": "positive", "end_char": 207, "evidence": "The beds are comfy and I also appreciate the fact that there are curtains", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "On weekends they always organize something to go out all together and have some fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 208}], "unmapped": []} d514f3d74a71212c en 56bb22c1-8631-4285-b549-8fa7c9944462 5336 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 Very nice and cozy hostel 0 27 \N \N \N 2026-01-31 15:11:06.491391 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "all the staff is very helpful and friendly, especially my man Miguel!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 57a5970cff2d38a5 en 56bb22c1-8631-4285-b549-8fa7c9944462 5337 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 all the staff is very helpful and friendly, especially my man Miguel! 28 83 \N \N \N 2026-01-31 15:11:06.493246 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 27, "evidence": "Very nice and cozy hostel", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "all the staff is very helpful and friendly, especially my man Miguel!", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 28}, {"details": null, "valence": "positive", "end_char": 109, "evidence": "Always very clean and tidy", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "positive", "end_char": 192, "evidence": "big beds with comfy mattresses", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 164}], "unmapped": []} 57a5970cff2d38a5 en 56bb22c1-8631-4285-b549-8fa7c9944462 5343 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 The atmosphere is comfortable and friendly. 56 85 \N \N \N 2026-01-31 15:11:17.684493 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "You can join in with the group activities or have some privacy, and everyone respects your preferences.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 155}], "unmapped": []} 00586297ba124302 en 56bb22c1-8631-4285-b549-8fa7c9944462 5354 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 2 \N 0.80 La relación precio-calidad está buena. 288 316 \N \N \N 2026-01-31 15:11:26.42135 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "se disfrutaron mucho los espacios comunes y el buen rollo del lugar.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 287, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 250}, {"details": null, "valence": "positive", "end_char": 316, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 288}], "unmapped": []} cfe25f561a0c1162 es 56bb22c1-8631-4285-b549-8fa7c9944462 5344 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 3 3 \N 0.90 I really got a good night's sleep. 139 166 \N \N \N 2026-01-31 15:11:17.687298 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "You can join in with the group activities or have some privacy, and everyone respects your preferences.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 155}], "unmapped": []} 00586297ba124302 en 56bb22c1-8631-4285-b549-8fa7c9944462 5345 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AVAILABILITY + 3 3 \N 0.90 The hostel has everything you need, including a large kitchen and two terraces. 104 155 \N \N \N 2026-01-31 15:11:17.689478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "You can join in with the group activities or have some privacy, and everyone respects your preferences.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 155}], "unmapped": []} 00586297ba124302 en 56bb22c1-8631-4285-b549-8fa7c9944462 5351 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 2 3 \N 0.90 Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente. 56 116 \N \N \N 2026-01-31 15:11:26.415879 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "se disfrutaron mucho los espacios comunes y el buen rollo del lugar.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 287, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 250}, {"details": null, "valence": "positive", "end_char": 316, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 288}], "unmapped": []} cfe25f561a0c1162 es 56bb22c1-8631-4285-b549-8fa7c9944462 5346 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 You can join in with the group activities or have some privacy, and everyone respects your preferences. 113 183 \N \N \N 2026-01-31 15:11:17.691274 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "You can join in with the group activities or have some privacy, and everyone respects your preferences.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 155}], "unmapped": []} 00586297ba124302 en 56bb22c1-8631-4285-b549-8fa7c9944462 5353 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 2 2 \N 0.80 Las instalaciones son algo antiguas, pero todo funciona bien. 250 287 \N \N \N 2026-01-31 15:11:26.419421 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "se disfrutaron mucho los espacios comunes y el buen rollo del lugar.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 287, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 250}, {"details": null, "valence": "positive", "end_char": 316, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 288}], "unmapped": []} cfe25f561a0c1162 es 56bb22c1-8631-4285-b549-8fa7c9944462 5359 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY + 3 3 \N 0.90 y es bastante seguro. 205 223 \N \N \N 2026-01-31 15:11:32.12446 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 148, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "está literalmente a 3 minutos de la playa.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "y es bastante seguro.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 258d4b65ea93277e es 56bb22c1-8631-4285-b549-8fa7c9944462 5347 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 It's also very conveniently located close to the ocean. 155 189 \N \N \N 2026-01-31 15:11:17.693898 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "The atmosphere is comfortable and friendly.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 166, "evidence": "I really got a good night's sleep.", "intensity": 5, "primitive": "COMFORT", "confidence": 0.9, "start_char": 139}, {"details": null, "valence": "positive", "end_char": 155, "evidence": "The hostel has everything you need, including a large kitchen and two terraces.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 104}, {"details": null, "valence": "positive", "end_char": 183, "evidence": "You can join in with the group activities or have some privacy, and everyone respects your preferences.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 113}, {"details": null, "valence": "positive", "end_char": 189, "evidence": "It's also very conveniently located close to the ocean.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 155}], "unmapped": []} 00586297ba124302 en 56bb22c1-8631-4285-b549-8fa7c9944462 5348 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 todo estaba muy limpio 30 50 \N \N \N 2026-01-31 15:11:21.202343 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 50, "evidence": "todo estaba muy limpio", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 75, "evidence": "ambiente acogedor, tranquilo", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 51}, {"details": null, "valence": "positive", "end_char": 24, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 12}], "unmapped": []} 565895cbf2fa4e75 es 56bb22c1-8631-4285-b549-8fa7c9944462 5352 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 2 3 \N 0.90 se disfrutaron mucho los espacios comunes y el buen rollo del lugar. 204 249 \N \N \N 2026-01-31 15:11:26.417753 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 116, "evidence": "Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente.", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 249, "evidence": "se disfrutaron mucho los espacios comunes y el buen rollo del lugar.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 204}, {"details": null, "valence": "positive", "end_char": 287, "evidence": "Las instalaciones son algo antiguas, pero todo funciona bien.", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.8, "start_char": 250}, {"details": null, "valence": "positive", "end_char": 316, "evidence": "La relación precio-calidad está buena.", "intensity": 3, "primitive": "VALUE_FOR_MONEY", "confidence": 0.8, "start_char": 288}], "unmapped": []} cfe25f561a0c1162 es 56bb22c1-8631-4285-b549-8fa7c9944462 5360 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21acGJ6Vk5RbE00U0dsYVVsOUdhVTVGT0V0dk9FRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 NON_INFORMATIVE 0 1 1 \N 1.00 0 0 {empty} \N \N 2026-01-31 15:11:32.126744 gpt-4o-mini {"reason": "empty", "non_informative": true} e6c4516fb49d808f unknown 56bb22c1-8631-4285-b549-8fa7c9944462 5355 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien. 16 92 \N \N \N 2026-01-31 15:11:32.115204 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 148, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "está literalmente a 3 minutos de la playa.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "y es bastante seguro.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 258d4b65ea93277e es 56bb22c1-8631-4285-b549-8fa7c9944462 5356 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 había muy buen ambiente y se preocupaban por hacerte sentir incluido. 134 179 \N \N \N 2026-01-31 15:11:32.118634 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 148, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "está literalmente a 3 minutos de la playa.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "y es bastante seguro.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 258d4b65ea93277e es 56bb22c1-8631-4285-b549-8fa7c9944462 5357 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 la relación calidad precio es inmejorable. 118 148 \N \N \N 2026-01-31 15:11:32.120478 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 148, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "está literalmente a 3 minutos de la playa.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "y es bastante seguro.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 258d4b65ea93277e es 56bb22c1-8631-4285-b549-8fa7c9944462 5377 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMPETENCE - 2 3 \N 0.90 La manager es inadecuada para su puesto 135 167 \N \N \N 2026-01-31 15:11:54.713158 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 89, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 167, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 178}], "unmapped": []} 6d7573a1f2084cb9 es 56bb22c1-8631-4285-b549-8fa7c9944462 5358 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 3 3 \N 0.90 está literalmente a 3 minutos de la playa. 150 182 \N \N \N 2026-01-31 15:11:32.122566 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 16}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "había muy buen ambiente y se preocupaban por hacerte sentir incluido.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 134}, {"details": null, "valence": "positive", "end_char": 148, "evidence": "la relación calidad precio es inmejorable.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 182, "evidence": "está literalmente a 3 minutos de la playa.", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 150}, {"details": null, "valence": "positive", "end_char": 223, "evidence": "y es bastante seguro.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 258d4b65ea93277e es 56bb22c1-8631-4285-b549-8fa7c9944462 5378 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 todo se olía a marijuana 178 203 \N \N \N 2026-01-31 15:11:54.715061 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 89, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 167, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 178}], "unmapped": []} 6d7573a1f2084cb9 es 56bb22c1-8631-4285-b549-8fa7c9944462 5361 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 2 3 \N 0.90 opción económica y para pasar la noche o unas cuantas por un módico precio 0 78 \N \N \N 2026-01-31 15:11:38.270174 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 198}], "unmapped": []} dbf8c9bfc3551cc3 es 56bb22c1-8631-4285-b549-8fa7c9944462 5362 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT + 2 3 \N 0.90 colchón cómodo 78 95 \N \N \N 2026-01-31 15:11:38.272542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 198}], "unmapped": []} dbf8c9bfc3551cc3 es 56bb22c1-8631-4285-b549-8fa7c9944462 5363 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 2 3 \N 0.90 Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar 96 164 \N \N \N 2026-01-31 15:11:38.274888 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 198}], "unmapped": []} dbf8c9bfc3551cc3 es 56bb22c1-8631-4285-b549-8fa7c9944462 5364 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY + 2 3 \N 0.90 en seguida, mandó un whatsapp para avisarnos 164 197 \N \N \N 2026-01-31 15:11:38.27709 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 198}], "unmapped": []} dbf8c9bfc3551cc3 es 56bb22c1-8631-4285-b549-8fa7c9944462 5365 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ACCESSIBILITY + 2 2 \N 0.70 se encuentra muy cerca de la playa de las canteras 198 232 \N \N \N 2026-01-31 15:11:38.278719 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 78, "evidence": "opción económica y para pasar la noche o unas cuantas por un módico precio", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "colchón cómodo", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 164, "evidence": "Miguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 96}, {"details": null, "valence": "positive", "end_char": 197, "evidence": "en seguida, mandó un whatsapp para avisarnos", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 232, "evidence": "se encuentra muy cerca de la playa de las canteras", "intensity": 3, "primitive": "ACCESSIBILITY", "confidence": 0.7, "start_char": 198}], "unmapped": []} dbf8c9bfc3551cc3 es 56bb22c1-8631-4285-b549-8fa7c9944462 5366 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 S'il était possible de mettre 6 étoiles, je le ferais ! 0 41 \N \N \N 2026-01-31 15:11:44.952052 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "S'il était possible de mettre 6 étoiles, je le ferais !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 152}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 67102e385792cf32 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5367 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel est un super hote et les volontaires sont super sympas. 41 83 \N \N \N 2026-01-31 15:11:44.95653 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "S'il était possible de mettre 6 étoiles, je le ferais !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 152}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 67102e385792cf32 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5390 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 personal amable y responsable 30 54 \N \N \N 2026-01-31 15:12:10.254822 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 59, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b es 56bb22c1-8631-4285-b549-8fa7c9944462 5372 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 great value for money; it's hard to find a place this close to the beach at such an affordable price 210 284 \N \N \N 2026-01-31 15:11:50.396814 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "positive", "end_char": 434, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 388}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 043b81797d81e030 en 56bb22c1-8631-4285-b549-8fa7c9944462 5368 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED + 3 3 \N 0.90 L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager. 83 152 \N \N \N 2026-01-31 15:11:44.959314 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "S'il était possible de mettre 6 étoiles, je le ferais !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 152}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 67102e385792cf32 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5369 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours. 152 205 \N \N \N 2026-01-31 15:11:44.961215 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "S'il était possible de mettre 6 étoiles, je le ferais !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 152}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 67102e385792cf32 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5370 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria ! 205 267 \N \N \N 2026-01-31 15:11:44.962823 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 41, "evidence": "S'il était possible de mettre 6 étoiles, je le ferais !", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 83, "evidence": "Miguel est un super hote et les volontaires sont super sympas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "positive", "end_char": 152, "evidence": "L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager.", "intensity": 5, "primitive": "LOCATION", "confidence": 0.9, "start_char": 83}, {"details": null, "valence": "positive", "end_char": 205, "evidence": "Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours.", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 152}, {"details": null, "valence": "positive", "end_char": 267, "evidence": "Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 205}], "unmapped": []} 67102e385792cf32 fr 56bb22c1-8631-4285-b549-8fa7c9944462 5640 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RESPONSE_QUALITY 0 2 2 \N 0.80 Thank you for your response. 83 104 \N \N \N 2026-01-31 15:16:56.390645 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 215, "evidence": "The system you have is stupid and discriminatory.", "intensity": 4, "primitive": "FRICTION", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "neutral", "end_char": 104, "evidence": "Thank you for your response.", "intensity": 3, "primitive": "RESPONSE_QUALITY", "confidence": 0.8, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 283, "evidence": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 216}], "unmapped": []} bf7a92434c577c6a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5371 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 the hostel has a warm and welcoming atmosphere 157 197 \N \N \N 2026-01-31 15:11:50.393829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "positive", "end_char": 434, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 388}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 043b81797d81e030 en 56bb22c1-8631-4285-b549-8fa7c9944462 5612 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE Retail.Stores.Toy_store RETAIL 1.0 UNMAPPED 0 1 1 \N 0.70 Aunque alguna vez lo he conseguido más económico en otro lado. \N \N {"Price Comparison"} \N \N 2026-01-31 15:16:22.289626 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 85, "evidence": "Siempre encuentro aquí lo que ando buscando", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 56}], "unmapped": [{"label": "Price Comparison", "evidence": "Aunque alguna vez lo he conseguido más económico en otro lado.", "confidence": 0.7}]} 73942d78e0234d15 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5373 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS + 3 3 \N 0.90 The staff was incredibly kind, helpful, and always available 388 434 \N \N \N 2026-01-31 15:11:50.398747 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "positive", "end_char": 434, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 388}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 043b81797d81e030 en 56bb22c1-8631-4285-b549-8fa7c9944462 5374 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would definitely recommend Pura Vida to anyone 487 523 \N \N \N 2026-01-31 15:11:50.40066 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 197, "evidence": "the hostel has a warm and welcoming atmosphere", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "great value for money; it's hard to find a place this close to the beach at such an affordable price", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "positive", "end_char": 434, "evidence": "The staff was incredibly kind, helpful, and always available", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 388}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "I would definitely recommend Pura Vida to anyone", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 487}], "unmapped": []} 043b81797d81e030 en 56bb22c1-8631-4285-b549-8fa7c9944462 5375 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 se siente una mala vibra que en ningún otro sitio 56 89 \N \N \N 2026-01-31 15:11:54.706548 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 89, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 167, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 178}], "unmapped": []} 6d7573a1f2084cb9 es 56bb22c1-8631-4285-b549-8fa7c9944462 5376 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 COMFORT - 2 3 \N 0.90 me sentí incómoda, inferior y juzgada entre mujeres 90 134 \N \N \N 2026-01-31 15:11:54.711258 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 89, "evidence": "se siente una mala vibra que en ningún otro sitio", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 134, "evidence": "me sentí incómoda, inferior y juzgada entre mujeres", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 90}, {"details": null, "valence": "negative", "end_char": 167, "evidence": "La manager es inadecuada para su puesto", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 135}, {"details": null, "valence": "negative", "end_char": 203, "evidence": "todo se olía a marijuana", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 178}], "unmapped": []} 6d7573a1f2084cb9 es 56bb22c1-8631-4285-b549-8fa7c9944462 5379 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE - 2 3 \N 0.90 Horrible, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato' 56 116 \N \N \N 2026-01-31 15:12:01.181969 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "Horrible, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "ruido de sus cenas familiares todas las noches hasta las 23", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}], "unmapped": [{"label": "Overall experience", "evidence": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'", "confidence": 0.7}]} d5edb8eac522a08e es 56bb22c1-8631-4285-b549-8fa7c9944462 5380 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado 116 162 \N \N \N 2026-01-31 15:12:01.185459 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "Horrible, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "ruido de sus cenas familiares todas las noches hasta las 23", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}], "unmapped": [{"label": "Overall experience", "evidence": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'", "confidence": 0.7}]} d5edb8eac522a08e es 56bb22c1-8631-4285-b549-8fa7c9944462 5381 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS - 2 3 \N 0.90 Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia 162 227 \N \N \N 2026-01-31 15:12:01.187384 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "Horrible, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "ruido de sus cenas familiares todas las noches hasta las 23", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}], "unmapped": [{"label": "Overall experience", "evidence": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'", "confidence": 0.7}]} d5edb8eac522a08e es 56bb22c1-8631-4285-b549-8fa7c9944462 5382 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RESPONSE_QUALITY - 2 3 \N 0.90 ruido de sus cenas familiares todas las noches hasta las 23 227 267 \N \N \N 2026-01-31 15:12:01.189296 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "Horrible, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "ruido de sus cenas familiares todas las noches hasta las 23", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}], "unmapped": [{"label": "Overall experience", "evidence": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'", "confidence": 0.7}]} d5edb8eac522a08e es 56bb22c1-8631-4285-b549-8fa7c9944462 5391 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY + 3 3 \N 0.90 seguro 25 30 \N \N \N 2026-01-31 15:12:10.256422 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 59, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b es 56bb22c1-8631-4285-b549-8fa7c9944462 5383 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.70 Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida' \N \N {"Overall experience"} \N \N 2026-01-31 15:12:01.191508 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 116, "evidence": "Horrible, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 162, "evidence": "Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 116}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 162}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "ruido de sus cenas familiares todas las noches hasta las 23", "intensity": 4, "primitive": "RESPONSE_QUALITY", "confidence": 0.9, "start_char": 227}], "unmapped": [{"label": "Overall experience", "evidence": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'", "confidence": 0.7}]} d5edb8eac522a08e es 56bb22c1-8631-4285-b549-8fa7c9944462 5384 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 2 3 \N 0.90 I would not recommend it to anyone. 118 144 \N \N \N 2026-01-31 15:12:03.705181 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "I would not recommend it to anyone.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}], "unmapped": [{"label": "Threatening behavior regarding reviews", "evidence": "they threaten customers who leave bad reviews", "confidence": 0.8}, {"label": "Customer disengagement", "evidence": "I do not care to have a further conversation with this establishment", "confidence": 0.7}]} 74a7069ed9a5c506 en 56bb22c1-8631-4285-b549-8fa7c9944462 5385 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.80 they threaten customers who leave bad reviews \N \N {"Threatening behavior regarding reviews"} \N \N 2026-01-31 15:12:03.707749 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "I would not recommend it to anyone.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}], "unmapped": [{"label": "Threatening behavior regarding reviews", "evidence": "they threaten customers who leave bad reviews", "confidence": 0.8}, {"label": "Customer disengagement", "evidence": "I do not care to have a further conversation with this establishment", "confidence": 0.7}]} 74a7069ed9a5c506 en 56bb22c1-8631-4285-b549-8fa7c9944462 5386 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 UNMAPPED 0 1 1 \N 0.70 I do not care to have a further conversation with this establishment \N \N {"Customer disengagement"} \N \N 2026-01-31 15:12:03.709375 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 144, "evidence": "I would not recommend it to anyone.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 118}], "unmapped": [{"label": "Threatening behavior regarding reviews", "evidence": "they threaten customers who leave bad reviews", "confidence": 0.8}, {"label": "Customer disengagement", "evidence": "I do not care to have a further conversation with this establishment", "confidence": 0.7}]} 74a7069ed9a5c506 en 56bb22c1-8631-4285-b549-8fa7c9944462 5387 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 SAFETY - 2 3 \N 0.90 I felt very uncomfortable and unsafe here. 41 73 \N \N \N 2026-01-31 15:12:06.182258 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 73, "evidence": "I felt very uncomfortable and unsafe here.", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "I do not recommend at all", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 75}], "unmapped": []} 2294c5327d144884 en 56bb22c1-8631-4285-b549-8fa7c9944462 5388 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND - 2 3 \N 0.90 I do not recommend at all 75 95 \N \N \N 2026-01-31 15:12:06.184343 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 73, "evidence": "I felt very uncomfortable and unsafe here.", "intensity": 4, "primitive": "SAFETY", "confidence": 0.9, "start_char": 41}, {"details": null, "valence": "negative", "end_char": 95, "evidence": "I do not recommend at all", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 75}], "unmapped": []} 2294c5327d144884 en 56bb22c1-8631-4285-b549-8fa7c9944462 5389 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 lo recomiendo 47 59 \N \N \N 2026-01-31 15:12:10.25229 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 59, "evidence": "lo recomiendo", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 47}, {"details": null, "valence": "positive", "end_char": 54, "evidence": "personal amable y responsable", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "positive", "end_char": 30, "evidence": "seguro", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Cerca de la playa", "intensity": 5, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 0}], "unmapped": []} e66d1fbd378be07b es 56bb22c1-8631-4285-b549-8fa7c9944462 5399 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RECOMMEND + 3 3 \N 0.90 I would recommend pura vida anyone coming to Las Palmas! 211 253 \N \N \N 2026-01-31 15:12:24.282606 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 253, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel treats the guests like his family, always willing to help with anything.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 211, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Amazing stay for a month - the best hostel I have ever been to.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 60a7318290f510ce en 56bb22c1-8631-4285-b549-8fa7c9944462 5400 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS + 3 3 \N 0.90 The hostel is very clean, with volunteers always working to keep the space nice 118 158 \N \N \N 2026-01-31 15:12:24.285804 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 253, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel treats the guests like his family, always willing to help with anything.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 211, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Amazing stay for a month - the best hostel I have ever been to.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 60a7318290f510ce en 56bb22c1-8631-4285-b549-8fa7c9944462 5401 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 MANNER + 3 3 \N 0.90 Miguel treats the guests like his family, always willing to help with anything. 56 103 \N \N \N 2026-01-31 15:12:24.287626 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 253, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel treats the guests like his family, always willing to help with anything.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 211, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Amazing stay for a month - the best hostel I have ever been to.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 60a7318290f510ce en 56bb22c1-8631-4285-b549-8fa7c9944462 5402 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 AMBIANCE + 3 3 \N 0.90 There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out 158 211 \N \N \N 2026-01-31 15:12:24.290513 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 253, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel treats the guests like his family, always willing to help with anything.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 211, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Amazing stay for a month - the best hostel I have ever been to.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 60a7318290f510ce en 56bb22c1-8631-4285-b549-8fa7c9944462 5614 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB Retail.Stores.Toy_store RETAIL 1.0 AVAILABILITY + 3 3 \N 0.90 Puedes conseguir cualquier juguete, porque siempre están actualizados. 27 82 \N \N \N 2026-01-31 15:16:24.605654 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 26, "evidence": "Muy atentos y eficientes.", "intensity": 5, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 82, "evidence": "Puedes conseguir cualquier juguete, porque siempre están actualizados.", "intensity": 5, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 5256180edaa3f42b es e4f95d90-dbbe-439d-a0fd-f19088002f26 5403 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 VALUE_FOR_MONEY + 3 3 \N 0.90 Amazing stay for a month - the best hostel I have ever been to. 0 56 \N \N \N 2026-01-31 15:12:24.292514 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 253, "evidence": "I would recommend pura vida anyone coming to Las Palmas!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 211}, {"details": null, "valence": "positive", "end_char": 158, "evidence": "The hostel is very clean, with volunteers always working to keep the space nice", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "positive", "end_char": 103, "evidence": "Miguel treats the guests like his family, always willing to help with anything.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 211, "evidence": "There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 158}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Amazing stay for a month - the best hostel I have ever been to.", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 0}], "unmapped": []} 60a7318290f510ce en 56bb22c1-8631-4285-b549-8fa7c9944462 5404 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ETHICS - 3 3 \N 0.90 I got a fraud charge for $75 from this hostel 22 60 \N \N \N 2026-01-31 15:12:29.014951 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 60, "evidence": "I got a fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "there was dirt on the sheets too", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "when we asked if we could move rooms they wouldn’t move us", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "negative", "end_char": 309, "evidence": "we had to book a hotel to stay in that night and cancelled", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 263}], "unmapped": []} d6ff02948d4d2a52 en 56bb22c1-8631-4285-b549-8fa7c9944462 5405 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 CLEANLINESS - 2 3 \N 0.90 there was dirt on the sheets too 174 197 \N \N \N 2026-01-31 15:12:29.016769 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 60, "evidence": "I got a fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "there was dirt on the sheets too", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "when we asked if we could move rooms they wouldn’t move us", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "negative", "end_char": 309, "evidence": "we had to book a hotel to stay in that night and cancelled", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 263}], "unmapped": []} d6ff02948d4d2a52 en 56bb22c1-8631-4285-b549-8fa7c9944462 5406 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 ATTENTIVENESS - 2 3 \N 0.90 when we asked if we could move rooms they wouldn’t move us 210 253 \N \N \N 2026-01-31 15:12:29.019612 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 60, "evidence": "I got a fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "there was dirt on the sheets too", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "when we asked if we could move rooms they wouldn’t move us", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "negative", "end_char": 309, "evidence": "we had to book a hotel to stay in that night and cancelled", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 263}], "unmapped": []} d6ff02948d4d2a52 en 56bb22c1-8631-4285-b549-8fa7c9944462 5407 eda7c0dc-663b-489f-a684-2dfe8988e0c6 Pura Vida Hostel ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Travel_Hospitality.Hotels.Hostel HOSPITALITY 1.0 RELIABILITY - 3 3 \N 0.90 we had to book a hotel to stay in that night and cancelled 263 309 \N \N \N 2026-01-31 15:12:29.021198 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 60, "evidence": "I got a fraud charge for $75 from this hostel", "intensity": 5, "primitive": "ETHICS", "confidence": 0.9, "start_char": 22}, {"details": null, "valence": "negative", "end_char": 197, "evidence": "there was dirt on the sheets too", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 174}, {"details": null, "valence": "negative", "end_char": 253, "evidence": "when we asked if we could move rooms they wouldn’t move us", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 210}, {"details": null, "valence": "negative", "end_char": 309, "evidence": "we had to book a hotel to stay in that night and cancelled", "intensity": 5, "primitive": "RELIABILITY", "confidence": 0.9, "start_char": 263}], "unmapped": []} d6ff02948d4d2a52 en 56bb22c1-8631-4285-b549-8fa7c9944462 5615 21353ceb-2835-41a5-90f4-8609c60051a4 Jugueterias Nikki ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB Retail.Stores.Toy_store RETAIL 1.0 ATTENTIVENESS + 2 3 \N 0.90 Buena atención 0 13 \N \N \N 2026-01-31 15:16:26.895598 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 13, "evidence": "Buena atención", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 66, "evidence": "ayudaron mucho para dar con el regalo que buscaba", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 14}], "unmapped": []} 3b0040bbbf9ddc85 es e4f95d90-dbbe-439d-a0fd-f19088002f26 5623 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great vibe and great DJ 88 111 \N \N \N 2026-01-31 15:16:41.479538 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Highly recommended to come visit and have fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 158}], "unmapped": []} 638e24fc9310df0a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5624 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Friendly staff and the bar owner were incredible amazing person 112 157 \N \N \N 2026-01-31 15:16:41.480378 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Highly recommended to come visit and have fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 158}], "unmapped": []} 638e24fc9310df0a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5625 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RETURN_INTENT + 3 3 \N 0.90 Definitely, I will come visit again when I'm in the country 158 203 \N \N \N 2026-01-31 15:16:41.481277 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Highly recommended to come visit and have fun", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 111, "evidence": "Great vibe and great DJ", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 88}, {"details": null, "valence": "positive", "end_char": 157, "evidence": "Friendly staff and the bar owner were incredible amazing person", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 112}, {"details": null, "valence": "positive", "end_char": 203, "evidence": "Definitely, I will come visit again when I'm in the country", "intensity": 5, "primitive": "RETURN_INTENT", "confidence": 0.9, "start_char": 158}], "unmapped": []} 638e24fc9310df0a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5626 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 great music 18 29 \N \N \N 2026-01-31 15:16:43.476185 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 29, "evidence": "great music", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "I really enjoyed my time there", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}], "unmapped": []} 78f829d13abf0fd3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5627 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 I really enjoyed my time there 30 56 \N \N \N 2026-01-31 15:16:43.47804 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 29, "evidence": "great music", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 18}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "I really enjoyed my time there", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 30}], "unmapped": []} 78f829d13abf0fd3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5633 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Great atmosphere in the club. 78 104 \N \N \N 2026-01-31 15:16:50.598166 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 104, "evidence": "Great atmosphere in the club.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 78}, {"details": null, "valence": "positive", "end_char": 78, "evidence": "The bartenders are fast and the service is good.", "intensity": 5, "primitive": "SPEED", "confidence": 0.9, "start_char": 50}, {"details": null, "valence": "positive", "end_char": 151, "evidence": "Would recommend it to anyone looking for a good night out in Vilnius.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 105}], "unmapped": []} d5fe11fad3b1ddb3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5661 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 best place to go and have fun 35 63 \N \N \N 2026-01-31 15:17:18.621079 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Greatest club in Litauen love it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "best place to go and have fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "perfect DJ", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 64}], "unmapped": []} 20917b7bf09ef685 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5628 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 1 2 \N 0.90 the crowd had good energy 360 384 \N \N \N 2026-01-31 15:16:47.506511 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 384, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 229, "evidence": "properly measuring every ingredient in the drink", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 421, "evidence": "friendly staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Drink prices are reasonable", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 295}], "unmapped": []} 56e1322becebb520 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5629 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 2 2 \N 0.90 The bar is extremely clean 164 185 \N \N \N 2026-01-31 15:16:47.510103 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 384, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 229, "evidence": "properly measuring every ingredient in the drink", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 421, "evidence": "friendly staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Drink prices are reasonable", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 295}], "unmapped": []} 56e1322becebb520 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5630 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 2 2 \N 0.90 properly measuring every ingredient in the drink 188 229 \N \N \N 2026-01-31 15:16:47.511847 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 384, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 229, "evidence": "properly measuring every ingredient in the drink", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 421, "evidence": "friendly staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Drink prices are reasonable", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 295}], "unmapped": []} 56e1322becebb520 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5631 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 2 2 \N 0.90 friendly staff 408 421 \N \N \N 2026-01-31 15:16:47.513508 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 384, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 229, "evidence": "properly measuring every ingredient in the drink", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 421, "evidence": "friendly staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Drink prices are reasonable", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 295}], "unmapped": []} 56e1322becebb520 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5632 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY + 1 2 \N 0.90 Drink prices are reasonable 295 319 \N \N \N 2026-01-31 15:16:47.515145 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 384, "evidence": "the crowd had good energy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 360}, {"details": null, "valence": "positive", "end_char": 185, "evidence": "The bar is extremely clean", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "positive", "end_char": 229, "evidence": "properly measuring every ingredient in the drink", "intensity": 3, "primitive": "CRAFT", "confidence": 0.9, "start_char": 188}, {"details": null, "valence": "positive", "end_char": 421, "evidence": "friendly staff", "intensity": 3, "primitive": "MANNER", "confidence": 0.9, "start_char": 408}, {"details": null, "valence": "positive", "end_char": 319, "evidence": "Drink prices are reasonable", "intensity": 2, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 295}], "unmapped": []} 56e1322becebb520 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5644 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS ± 2 2 \N 0.70 the bathrooms were clean... Just wet 164 197 \N \N \N 2026-01-31 15:17:02.589794 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 197, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 199}], "unmapped": []} d7f7910380474612 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5645 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_LEVEL - 2 2 \N 0.90 the drinks and tickets were expensive 43 75 \N \N \N 2026-01-31 15:17:02.592369 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 197, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 199}], "unmapped": []} d7f7910380474612 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5646 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 2 3 \N 0.90 the drinks were STRONG and what I could see of the performance was amazing 97 139 \N \N \N 2026-01-31 15:17:02.594621 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 197, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 199}], "unmapped": []} d7f7910380474612 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5662 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 perfect DJ 64 74 \N \N \N 2026-01-31 15:17:18.622648 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 34, "evidence": "Greatest club in Litauen love it", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 63, "evidence": "best place to go and have fun", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 35}, {"details": null, "valence": "positive", "end_char": 74, "evidence": "perfect DJ", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 64}], "unmapped": []} 20917b7bf09ef685 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5647 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS + 2 3 \N 0.90 The staff was very nice and they were well equipped for anything 199 239 \N \N \N 2026-01-31 15:17:02.596045 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 197, "evidence": "the bathrooms were clean... Just wet", "intensity": 3, "primitive": "CLEANLINESS", "confidence": 0.7, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 75, "evidence": "the drinks and tickets were expensive", "intensity": 3, "primitive": "PRICE_LEVEL", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 139, "evidence": "the drinks were STRONG and what I could see of the performance was amazing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 97}, {"details": null, "valence": "positive", "end_char": 239, "evidence": "The staff was very nice and they were well equipped for anything", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 199}], "unmapped": []} d7f7910380474612 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5648 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE - 2 2 \N 0.90 That fact ruins the atmosphere. 106 132 \N \N \N 2026-01-31 15:17:05.195917 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 132, "evidence": "That fact ruins the atmosphere.", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "100% recommend to visit for a drag show or a live event.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 83}], "unmapped": [{"label": "DJ Quality Complaint", "evidence": "The dance DJs they book are pretty poor.", "confidence": 0.8}]} 81b679ea07736757 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5651 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS - 2 3 \N 0.90 I received my cocktail in a dirty glass 56 83 \N \N \N 2026-01-31 15:17:09.479591 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 263}], "unmapped": []} 53231551c3b0cf4b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5652 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.90 she didn’t measure the proportion, and I had a feeling that she dropped only leftovers 84 139 \N \N \N 2026-01-31 15:17:09.482439 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 263}], "unmapped": []} 53231551c3b0cf4b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5668 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE ± 1 2 \N 0.80 it has a small stage but we didn't like their music very much 56 98 \N \N \N 2026-01-31 15:17:25.46219 gpt-4o-mini {"spans": [{"details": null, "valence": "mixed", "end_char": 98, "evidence": "it has a small stage but we didn't like their music very much", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 56}], "unmapped": [{"label": "Overall Experience", "evidence": "If you want to see a different kind of entertainment night, you can choose this place.", "confidence": 0.7}]} a5e32a4a20f65f25 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5653 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 No respect to clients. Avoid her, awful experience. 218 258 \N \N \N 2026-01-31 15:17:09.484666 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 263}], "unmapped": []} 53231551c3b0cf4b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5654 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 1 2 \N 0.80 Though place is rather cozy 263 284 \N \N \N 2026-01-31 15:17:09.486877 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 83, "evidence": "I received my cocktail in a dirty glass", "intensity": 4, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "negative", "end_char": 139, "evidence": "she didn’t measure the proportion, and I had a feeling that she dropped only leftovers", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 84}, {"details": null, "valence": "negative", "end_char": 258, "evidence": "No respect to clients. Avoid her, awful experience.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 218}, {"details": null, "valence": "positive", "end_char": 284, "evidence": "Though place is rather cozy", "intensity": 2, "primitive": "AMBIANCE", "confidence": 0.8, "start_char": 263}], "unmapped": []} 53231551c3b0cf4b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5655 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 I loved this place. 81 95 \N \N \N 2026-01-31 15:17:11.686173 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "I loved this place.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome??", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 249a728e98f4e3f7 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5656 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? 0 81 \N \N \N 2026-01-31 15:17:11.689143 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 95, "evidence": "I loved this place.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 81, "evidence": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome??", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 249a728e98f4e3f7 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5663 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_FAIRNESS + 2 3 \N 0.90 Door charge plus coat check was 6 euros quite fair. 0 43 \N \N \N 2026-01-31 15:17:23.46219 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 105}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 93d5aa74d64b7f8c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5664 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Not packed but great vibes love it. 44 70 \N \N \N 2026-01-31 15:17:23.464567 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 105}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 93d5aa74d64b7f8c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5665 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 2 3 \N 0.90 Friendly bartenders and ticket person. 71 104 \N \N \N 2026-01-31 15:17:23.466416 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 105}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 93d5aa74d64b7f8c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5666 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE + 2 2 \N 0.70 Music was good it was quite a mix so depends on your preference. 105 147 \N \N \N 2026-01-31 15:17:23.467582 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 105}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 93d5aa74d64b7f8c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5667 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 Definitely visit if you’re a foreigner. 148 179 \N \N \N 2026-01-31 15:17:23.46829 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 43, "evidence": "Door charge plus coat check was 6 euros quite fair.", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "Not packed but great vibes love it.", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 44}, {"details": null, "valence": "positive", "end_char": 104, "evidence": "Friendly bartenders and ticket person.", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 71}, {"details": null, "valence": "positive", "end_char": 147, "evidence": "Music was good it was quite a mix so depends on your preference.", "intensity": 3, "primitive": "TASTE", "confidence": 0.7, "start_char": 105}, {"details": null, "valence": "positive", "end_char": 179, "evidence": "Definitely visit if you’re a foreigner.", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 148}], "unmapped": []} 93d5aa74d64b7f8c en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5679 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER - 2 3 \N 0.90 we missed the smile on staff’s faces 82 114 \N \N \N 2026-01-31 15:17:39.729218 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 114, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5680 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ATTENTIVENESS - 2 3 \N 0.90 the woman, who was working at the coat check rudely refused to give my coat back 145 195 \N \N \N 2026-01-31 15:17:39.732313 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 114, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5681 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 COMPETENCE - 2 3 \N 0.90 a bartender did not even know what that is 233 267 \N \N \N 2026-01-31 15:17:39.735628 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 114, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5682 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.90 the Dj was without experience and doesn’t understand the basics of Dj’ing 392 442 \N \N \N 2026-01-31 15:17:39.737428 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 114, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5683 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 2 \N 0.90 the environment its self is pretty cozy and chill 487 523 \N \N \N 2026-01-31 15:17:39.740138 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 114, "evidence": "we missed the smile on staff’s faces", "intensity": 4, "primitive": "MANNER", "confidence": 0.9, "start_char": 82}, {"details": null, "valence": "negative", "end_char": 195, "evidence": "the woman, who was working at the coat check rudely refused to give my coat back", "intensity": 4, "primitive": "ATTENTIVENESS", "confidence": 0.9, "start_char": 145}, {"details": null, "valence": "negative", "end_char": 267, "evidence": "a bartender did not even know what that is", "intensity": 4, "primitive": "COMPETENCE", "confidence": 0.9, "start_char": 233}, {"details": null, "valence": "negative", "end_char": 442, "evidence": "the Dj was without experience and doesn’t understand the basics of Dj’ing", "intensity": 4, "primitive": "CRAFT", "confidence": 0.9, "start_char": 392}, {"details": null, "valence": "positive", "end_char": 523, "evidence": "the environment its self is pretty cozy and chill", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 487}], "unmapped": []} e205c92d55b3e60f en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5695 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 1 2 \N 0.90 The staff were mostly friendly 157 182 \N \N \N 2026-01-31 15:17:55.102867 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 182, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 272, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 334, "evidence": "spending your money elsewhere", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 307}], "unmapped": []} 8742114c1c7aa17a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5696 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ETHICS - 2 3 \N 0.90 this is one of the most blatant forms of discrimination 226 272 \N \N \N 2026-01-31 15:17:55.106298 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 182, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 272, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 334, "evidence": "spending your money elsewhere", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 307}], "unmapped": []} 8742114c1c7aa17a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5697 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 2 \N 0.70 it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement 83 157 \N \N \N 2026-01-31 15:17:55.108052 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 182, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 272, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 334, "evidence": "spending your money elsewhere", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 307}], "unmapped": []} 8742114c1c7aa17a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5698 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 3 \N 0.80 he was refused entry 205 223 \N \N \N 2026-01-31 15:17:55.109542 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 182, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 272, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 334, "evidence": "spending your money elsewhere", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 307}], "unmapped": []} 8742114c1c7aa17a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5699 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 UNMAPPED - 2 3 \N 0.80 spending your money elsewhere 307 334 \N \N \N 2026-01-31 15:17:55.111318 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 182, "evidence": "The staff were mostly friendly", "intensity": 2, "primitive": "MANNER", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "negative", "end_char": 272, "evidence": "this is one of the most blatant forms of discrimination", "intensity": 4, "primitive": "ETHICS", "confidence": 0.9, "start_char": 226}, {"details": null, "valence": "negative", "end_char": 157, "evidence": "it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement", "intensity": 3, "primitive": "UNMAPPED", "confidence": 0.7, "start_char": 83}, {"details": null, "valence": "negative", "end_char": 223, "evidence": "he was refused entry", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 334, "evidence": "spending your money elsewhere", "intensity": 4, "primitive": "UNMAPPED", "confidence": 0.8, "start_char": 307}], "unmapped": []} 8742114c1c7aa17a en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5706 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY - 2 3 \N 0.90 it became not only a waste of money but more concerning, a fire hazard. 469 516 \N \N \N 2026-01-31 15:18:04.482384 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 516, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "it was nearly impossible to get a good view of the stage", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "it was incredibly hot", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 558, "evidence": "I would not recommend going for any event they organise", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 516}], "unmapped": []} 74db9a7bf96a0640 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5707 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 ACCESSIBILITY - 2 3 \N 0.90 it was nearly impossible to get a good view of the stage 164 205 \N \N \N 2026-01-31 15:18:04.484699 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 516, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "it was nearly impossible to get a good view of the stage", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "it was incredibly hot", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 558, "evidence": "I would not recommend going for any event they organise", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 516}], "unmapped": []} 74db9a7bf96a0640 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5708 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 COMFORT - 2 3 \N 0.90 it was incredibly hot 205 227 \N \N \N 2026-01-31 15:18:04.486159 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 516, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "it was nearly impossible to get a good view of the stage", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "it was incredibly hot", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 558, "evidence": "I would not recommend going for any event they organise", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 516}], "unmapped": []} 74db9a7bf96a0640 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5709 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND - 2 3 \N 0.90 I would not recommend going for any event they organise 516 558 \N \N \N 2026-01-31 15:18:04.487492 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 516, "evidence": "it became not only a waste of money but more concerning, a fire hazard.", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 469}, {"details": null, "valence": "negative", "end_char": 205, "evidence": "it was nearly impossible to get a good view of the stage", "intensity": 4, "primitive": "ACCESSIBILITY", "confidence": 0.9, "start_char": 164}, {"details": null, "valence": "negative", "end_char": 227, "evidence": "it was incredibly hot", "intensity": 4, "primitive": "COMFORT", "confidence": 0.9, "start_char": 205}, {"details": null, "valence": "negative", "end_char": 558, "evidence": "I would not recommend going for any event they organise", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 516}], "unmapped": []} 74db9a7bf96a0640 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5710 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 2 3 \N 0.90 we would like to comeback 157 174 \N \N \N 2026-01-31 15:18:07.547943 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "we would like to comeback", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "trying to be for the community", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 139}], "unmapped": [{"label": "Ambiance and Experience", "evidence": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside", "confidence": 0.6}]} 294efb58a0385703 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5711 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 2 2 \N 0.80 trying to be for the community 139 162 \N \N \N 2026-01-31 15:18:07.55127 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 174, "evidence": "we would like to comeback", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 157}, {"details": null, "valence": "positive", "end_char": 162, "evidence": "trying to be for the community", "intensity": 3, "primitive": "MANNER", "confidence": 0.8, "start_char": 139}], "unmapped": [{"label": "Ambiance and Experience", "evidence": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside", "confidence": 0.6}]} 294efb58a0385703 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5722 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 this is the place you must visit if you are in Vilnius! 106 144 \N \N \N 2026-01-31 15:18:25.856777 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5723 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Always good vibes. 27 44 \N \N \N 2026-01-31 15:18:25.859871 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5724 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Very polite and professional staff. 45 76 \N \N \N 2026-01-31 15:18:25.861401 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5725 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 They make the best events!!!! 77 102 \N \N \N 2026-01-31 15:18:25.862898 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 144, "evidence": "this is the place you must visit if you are in Vilnius!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 106}, {"details": null, "valence": "positive", "end_char": 44, "evidence": "Always good vibes.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 27}, {"details": null, "valence": "positive", "end_char": 76, "evidence": "Very polite and professional staff.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 102, "evidence": "They make the best events!!!!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 77}], "unmapped": []} bf189a221c01960b en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5726 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AVAILABILITY - 2 3 \N 0.90 quite a few people couldn't even get into the area/room where they could see the show 66 126 \N \N \N 2026-01-31 15:18:28.797899 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "quite a few people couldn't even get into the area/room where they could see the show", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "It would be better to charge a little more for tickets instead of selling too many", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 228}], "unmapped": []} 44ced1ba5a80b7c4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5727 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_FAIRNESS - 2 3 \N 0.90 It would be better to charge a little more for tickets instead of selling too many 228 284 \N \N \N 2026-01-31 15:18:28.800867 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 126, "evidence": "quite a few people couldn't even get into the area/room where they could see the show", "intensity": 4, "primitive": "AVAILABILITY", "confidence": 0.9, "start_char": 66}, {"details": null, "valence": "negative", "end_char": 284, "evidence": "It would be better to charge a little more for tickets instead of selling too many", "intensity": 4, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 228}], "unmapped": []} 44ced1ba5a80b7c4 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5728 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 2 3 \N 0.90 Great gay club in the city, lots of young people, music is also mostly really nice! 0 75 \N \N \N 2026-01-31 15:18:32.417299 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 75, "evidence": "Great gay club in the city, lots of young people, music is also mostly really nice!", "intensity": 4, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "negative", "end_char": 104, "evidence": "bartenders could at least try to be friendly.", "intensity": 2, "primitive": "MANNER", "confidence": 0.8, "start_char": 76}, {"details": null, "valence": "positive", "end_char": 126, "evidence": "For the rest, it's a cool party!", "intensity": 4, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 105}], "unmapped": []} ba73df9f9ca5438e en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5731 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Such a vibe! 0 10 \N \N \N 2026-01-31 15:18:36.142144 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I went back the day after", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 920c6eab116db000 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5732 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 the people were so friendly 45 70 \N \N \N 2026-01-31 15:18:36.144597 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I went back the day after", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 920c6eab116db000 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5733 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 the drinks were strong 75 95 \N \N \N 2026-01-31 15:18:36.146658 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I went back the day after", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 920c6eab116db000 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5734 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 I went back the day after 116 138 \N \N \N 2026-01-31 15:18:36.149264 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 10, "evidence": "Such a vibe!", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 70, "evidence": "the people were so friendly", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 95, "evidence": "the drinks were strong", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 75}, {"details": null, "valence": "positive", "end_char": 138, "evidence": "I went back the day after", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 116}], "unmapped": []} 920c6eab116db000 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5735 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY - 2 3 \N 0.90 expensive and not worth your money 30 58 \N \N \N 2026-01-31 15:18:39.316638 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 58, "evidence": "expensive and not worth your money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 141, "evidence": "Taste was weird and awful", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "we did not see what liquer was poured into the drinks, and if it was measured", "intensity": 4, "primitive": "CRAFT", "confidence": 0.8, "start_char": 75}], "unmapped": []} d3a2fe4e1718438d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5736 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE - 2 3 \N 0.90 Taste was weird and awful 118 141 \N \N \N 2026-01-31 15:18:39.319831 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 58, "evidence": "expensive and not worth your money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 141, "evidence": "Taste was weird and awful", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "we did not see what liquer was poured into the drinks, and if it was measured", "intensity": 4, "primitive": "CRAFT", "confidence": 0.8, "start_char": 75}], "unmapped": []} d3a2fe4e1718438d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5737 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT - 2 3 \N 0.80 we did not see what liquer was poured into the drinks, and if it was measured 75 132 \N \N \N 2026-01-31 15:18:39.321664 gpt-4o-mini {"spans": [{"details": null, "valence": "negative", "end_char": 58, "evidence": "expensive and not worth your money", "intensity": 4, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 30}, {"details": null, "valence": "negative", "end_char": 141, "evidence": "Taste was weird and awful", "intensity": 4, "primitive": "TASTE", "confidence": 0.9, "start_char": 118}, {"details": null, "valence": "negative", "end_char": 132, "evidence": "we did not see what liquer was poured into the drinks, and if it was measured", "intensity": 4, "primitive": "CRAFT", "confidence": 0.8, "start_char": 75}], "unmapped": []} d3a2fe4e1718438d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5756 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Some very nice people. 0 22 \N \N \N 2026-01-31 15:19:00.194316 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "A seperate living room with fashion tv show on whole wall.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "good prices on drinks.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 111}], "unmapped": []} 4c62336a0ef8d0c3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5757 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 A seperate living room with fashion tv show on whole wall. 56 92 \N \N \N 2026-01-31 15:19:00.197654 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "A seperate living room with fashion tv show on whole wall.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "good prices on drinks.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 111}], "unmapped": []} 4c62336a0ef8d0c3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5758 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 PRICE_FAIRNESS + 3 3 \N 0.90 good prices on drinks. 43 60 \N \N \N 2026-01-31 15:19:00.199109 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "A seperate living room with fashion tv show on whole wall.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "good prices on drinks.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 111}], "unmapped": []} 4c62336a0ef8d0c3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5759 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SAFETY + 3 3 \N 0.90 Friendly and safe. 93 110 \N \N \N 2026-01-31 15:19:00.200936 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "A seperate living room with fashion tv show on whole wall.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "good prices on drinks.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 111}], "unmapped": []} 4c62336a0ef8d0c3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5760 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-43 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 Loved it. 111 118 \N \N \N 2026-01-31 15:19:00.202575 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 22, "evidence": "Some very nice people.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 92, "evidence": "A seperate living room with fashion tv show on whole wall.", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 56}, {"details": null, "valence": "positive", "end_char": 60, "evidence": "good prices on drinks.", "intensity": 5, "primitive": "PRICE_FAIRNESS", "confidence": 0.9, "start_char": 43}, {"details": null, "valence": "positive", "end_char": 110, "evidence": "Friendly and safe.", "intensity": 5, "primitive": "SAFETY", "confidence": 0.9, "start_char": 93}, {"details": null, "valence": "positive", "end_char": 118, "evidence": "Loved it.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 111}], "unmapped": []} 4c62336a0ef8d0c3 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5762 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-45 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 Love the place as such, decoration, music, drinks, people, all perfect, 45 92 \N \N \N 2026-01-31 15:19:04.829149 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 92, "evidence": "Love the place as such, decoration, music, drinks, people, all perfect,", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 45}, {"details": null, "valence": "positive", "end_char": 68, "evidence": "The owner is such a nice person with such great ideas.", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 25}, {"details": null, "valence": "positive", "end_char": 20, "evidence": "Simply love this place.", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 0}], "unmapped": []} 219f699dc19d01a2 en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5765 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 MANNER + 3 3 \N 0.90 Very friendly staff 0 20 \N \N \N 2026-01-31 15:19:08.471661 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.7, "start_char": 24}], "unmapped": []} 45bd9c1288c9e01d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5766 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CLEANLINESS + 3 3 \N 0.90 the club was very clean 36 58 \N \N \N 2026-01-31 15:19:08.475009 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.7, "start_char": 24}], "unmapped": []} 45bd9c1288c9e01d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5767 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 The Dramatica Show was amazing! 60 85 \N \N \N 2026-01-31 15:19:08.477838 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.7, "start_char": 24}], "unmapped": []} 45bd9c1288c9e01d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5768 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-46 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 TASTE + 2 3 \N 0.70 good drinks 24 34 \N \N \N 2026-01-31 15:19:08.479758 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 20, "evidence": "Very friendly staff", "intensity": 5, "primitive": "MANNER", "confidence": 0.9, "start_char": 0}, {"details": null, "valence": "positive", "end_char": 58, "evidence": "the club was very clean", "intensity": 5, "primitive": "CLEANLINESS", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 85, "evidence": "The Dramatica Show was amazing!", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 60}, {"details": null, "valence": "positive", "end_char": 34, "evidence": "good drinks", "intensity": 4, "primitive": "TASTE", "confidence": 0.7, "start_char": 24}], "unmapped": []} 45bd9c1288c9e01d en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5771 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 RECOMMEND + 3 3 \N 0.90 I highly recommend visiting this place! 81 113 \N \N \N 2026-01-31 15:19:14.723254 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5772 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 AMBIANCE + 3 3 \N 0.90 atmosphere is great 54 72 \N \N \N 2026-01-31 15:19:14.726109 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5773 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 CRAFT + 3 3 \N 0.90 Cocktails are the best 36 56 \N \N \N 2026-01-31 15:19:14.728013 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5774 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-48 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 VALUE_FOR_MONEY + 3 3 \N 0.90 worth visiting! 27 43 \N \N \N 2026-01-31 15:19:14.729286 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 113, "evidence": "I highly recommend visiting this place!", "intensity": 5, "primitive": "RECOMMEND", "confidence": 0.9, "start_char": 81}, {"details": null, "valence": "positive", "end_char": 72, "evidence": "atmosphere is great", "intensity": 5, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 54}, {"details": null, "valence": "positive", "end_char": 56, "evidence": "Cocktails are the best", "intensity": 5, "primitive": "CRAFT", "confidence": 0.9, "start_char": 36}, {"details": null, "valence": "positive", "end_char": 43, "evidence": "worth visiting!", "intensity": 5, "primitive": "VALUE_FOR_MONEY", "confidence": 0.9, "start_char": 27}], "unmapped": []} 960117482638adfc en 78e1db2d-21eb-4072-8fd7-88f6beef833b 5776 4f4bb448-0dee-4e36-b2a2-20f0357fece8 Soho Club rev-49 Entertainment.Nightlife.Gay_night_club ENTERTAINMENT 2.0 SPEED - 1 2 \N 0.90 very slow bar service 40 59 \N \N \N 2026-01-31 15:19:16.923354 gpt-4o-mini {"spans": [{"details": null, "valence": "positive", "end_char": 38, "evidence": "great atmosphere", "intensity": 3, "primitive": "AMBIANCE", "confidence": 0.9, "start_char": 21}, {"details": null, "valence": "negative", "end_char": 59, "evidence": "very slow bar service", "intensity": 2, "primitive": "SPEED", "confidence": 0.9, "start_char": 40}], "unmapped": []} a1a2c5f766454902 en 78e1db2d-21eb-4072-8fd7-88f6beef833b \. -- -- Data for Name: executions; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.executions (id, pipeline_id, job_id, business_id, status, stages_requested, stages_completed, current_stage, input_summary, result_summary, error_message, started_at, completed_at, created_at, stage_metrics, total_duration_ms, synthesis) FROM stdin; 3e58b59d-8f95-4f22-becb-05fa9dff8d31 reviewiq \N \N failed {normalize,classify,route,aggregate} {normalize} \N {"job_id": "", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": false, "stages_run": ["normalize"]} classify failed: No module named 'openai' 2026-01-24 20:53:18.037272+00 2026-01-24 20:53:18.073838+00 2026-01-24 20:53:18.037272+00 {"classify": {"error": "No module named 'openai'", "success": false, "records_in": 0, "duration_ms": 2, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}} 3 \N aff10960-b178-4e18-a476-0662807570b8 reviewiq \N \N failed {normalize,classify,route,aggregate} {normalize} \N {"job_id": "", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": false, "stages_run": ["normalize"]} classify failed: OpenAI API key is required when llm_provider is 'openai' 2026-01-24 20:53:53.03081+00 2026-01-24 20:53:53.458375+00 2026-01-24 20:53:53.03081+00 {"classify": {"error": "OpenAI API key is required when llm_provider is 'openai'", "success": false, "records_in": 0, "duration_ms": 393, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}} 393 \N b4abf5b8-bfd7-43df-b60e-c7edeef92f14 reviewiq \N \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 20:58:22.2239+00 2026-01-24 20:58:22.427848+00 2026-01-24 20:58:22.2239+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 186, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 8, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}} 195 \N 9a37214b-3cc4-4fe5-88d2-584729f01a7a reviewiq 8bd29859-482d-4e52-a026-3c30432e7cc5 \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "8bd29859-482d-4e52-a026-3c30432e7cc5", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 21:08:35.927289+00 2026-01-24 21:08:36.034901+00 2026-01-24 21:08:35.927289+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 48, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 40, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 4, "records_out": 0}} 95 \N 9422dba8-cb8a-49d4-a953-4be2e5a96023 reviewiq 8bd29859-482d-4e52-a026-3c30432e7cc5 \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "8bd29859-482d-4e52-a026-3c30432e7cc5", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 21:12:17.007815+00 2026-01-24 21:12:17.268448+00 2026-01-24 21:12:17.007815+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 241, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 14, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}} 255 \N 3d07f279-ee3d-420c-adab-eea51e396eec reviewiq 1fe4acc1-c4fa-423d-a6ef-9b6cd302d770 \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "1fe4acc1-c4fa-423d-a6ef-9b6cd302d770", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 23:08:40.628799+00 2026-01-24 23:08:40.942434+00 2026-01-24 23:08:40.628799+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 297, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 7, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 1, "records_out": 0}} 306 \N 1c653e1c-bfd2-431b-825a-00f417ea844e reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 23:11:20.832362+00 2026-01-24 23:11:20.849588+00 2026-01-24 23:11:20.832362+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 10, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 2, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 1, "records_out": 0}} 14 \N a86f2960-7c15-419a-9fec-48aaa0694513 reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 23:18:40.83002+00 2026-01-24 23:18:40.879855+00 2026-01-24 23:18:40.83002+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 15, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 28, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 2, "records_out": 0}} 47 \N b354e6c2-5f76-47d4-977d-29500e8b84b0 reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N failed {normalize,classify,route,aggregate} {} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} \N 'str' object has no attribute 'get' 2026-01-24 23:23:31.513449+00 2026-01-24 23:23:31.519757+00 2026-01-24 23:23:31.513449+00 \N \N \N 28d55b94-bf67-4042-8ecc-6dd6a906d89c reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 23:26:40.130066+00 2026-01-24 23:26:40.682234+00 2026-01-24 23:26:40.130066+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 450, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 8, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 10, "records_out": 0}} 539 \N b5181d32-5865-47aa-aa1f-c739084c72b6 reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N failed {normalize,classify,route,aggregate} {} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": false, "stages_run": []} normalize failed: invalid input for query argument $7: '10 months ago' (expected a datetime.date or datetime.datetime instance, got 'str') 2026-01-24 23:31:12.114742+00 2026-01-24 23:31:12.335513+00 2026-01-24 23:31:12.114742+00 {"normalize": {"error": "invalid input for query argument $7: '10 months ago' (expected a datetime.date or datetime.datetime instance, got 'str')", "success": false, "records_in": 0, "duration_ms": 207, "records_out": 0}} 210 \N d3121599-ff86-4945-92b7-5037d4bec3fe reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N failed {normalize,classify,route,aggregate} {normalize,classify} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": false, "stages_run": ["normalize", "classify"]} route failed: invalid input for query argument $8: '' (expected a datetime.date or datetime.datetime instance, got 'str') 2026-01-24 23:35:50.72577+00 2026-01-24 23:39:53.718583+00 2026-01-24 23:35:50.72577+00 {"route": {"error": "invalid input for query argument $8: '' (expected a datetime.date or datetime.datetime instance, got 'str')", "success": false, "records_in": 0, "duration_ms": 43, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 242553, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 354, "records_out": 0}} 242955 \N 5e175496-2ad8-4af2-919d-ef7d3d088b26 reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N failed {normalize,classify,route,aggregate} {normalize,classify} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": false, "stages_run": ["normalize", "classify"]} route failed: invalid input for query argument $8: '' (expected a datetime.date or datetime.datetime instance, got 'str') 2026-01-24 23:45:06.565167+00 2026-01-24 23:48:59.88424+00 2026-01-24 23:45:06.565167+00 {"route": {"error": "invalid input for query argument $8: '' (expected a datetime.date or datetime.datetime instance, got 'str')", "success": false, "records_in": 0, "duration_ms": 20, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 230635, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 2634, "records_out": 0}} 233307 \N 96baa57d-2587-40c8-bce3-e1d30c48d43f reviewiq acb2e9f2-5951-476b-a5a5-71cf81009e6f \N completed {normalize,classify,route,aggregate} {normalize,classify,route,aggregate} \N {"job_id": "acb2e9f2-5951-476b-a5a5-71cf81009e6f", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-24 23:53:02.752464+00 2026-01-24 23:56:34.225277+00 2026-01-24 23:53:02.752464+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 26, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 211113, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 2, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 315, "records_out": 0}} 211462 \N f6f85bc0-1182-4fa4-9846-d4742a0d5b0b reviewiq 02fd4b63-1220-43ad-be5f-9e86e37753d0 \N running {normalize,classify,route,aggregate} {} \N {"job_id": "02fd4b63-1220-43ad-be5f-9e86e37753d0", "stages": ["normalize", "classify", "route", "aggregate"], "business_id": null} \N \N 2026-01-25 01:15:46.584457+00 \N 2026-01-25 01:15:46.584457+00 \N \N \N 24c3cd38-7c5a-4844-a543-d653cfc34be6 reviewiq a3813665-ea23-4fb0-aab7-b282ef9443e4 \N completed {synthesize} {} \N \N \N \N \N 2026-01-29 17:20:58.220454+00 2026-01-29 17:20:31.136475+00 \N \N {"actions": [{"owner": "Marketing", "action": "Implement transparent pricing display on website and during booking", "effort": "quick_win", "impact": "+0.4 ★ estimated", "evidence": "95 complaints about unexpected charges at pickup.", "priority": "critical", "impact_stars": 0.4, "success_metric": "Customer complaints about hidden costs drop below 20/month", "complaint_count": 96}, {"owner": "Operations", "action": "Train staff to provide timely updates during wait times", "effort": "moderate", "impact": "+0.2 ★ estimated", "evidence": "40 minutes waiting without updates caused frustration.", "priority": "high", "impact_stars": 0.2, "success_metric": "Reduce complaints about wait times by 50%", "complaint_count": 50}, {"owner": "Customer Service", "action": "Enhance customer communication regarding service hours", "effort": "moderate", "impact": "+0.1 ★ estimated", "evidence": "Complaints about lack of service availability after hours.", "priority": "high", "impact_stars": 0.1, "success_metric": "Decrease after-hours service complaints by 40%", "complaint_count": 32}, {"owner": "Marketing", "action": "Feature 'no hidden charges' guarantee in marketing materials", "effort": "quick_win", "impact": "+0.1 ★ estimated", "evidence": "Competitors are perceived as having clearer pricing.", "priority": "medium", "impact_stars": 0.1, "success_metric": "Improve customer perceptions of value in surveys", "complaint_count": 96}, {"owner": "Operations", "action": "Introduce a customer feedback system post-transaction", "effort": "moderate", "impact": "+0.1 ★ estimated", "evidence": "Lack of real-time feedback leads to unresolved issues.", "priority": "medium", "impact_stars": 0.1, "success_metric": "Increase customer satisfaction scores by 20%", "complaint_count": 96}], "verdict": "Current rating of 3.4 ★ is driven down by 96 complaints about hidden costs.", "evidence": [{"quote": "55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No da...", "weight": "critical", "context": "About hidden costs that lead to significant dissatisfaction.", "sentiment": "damaging"}, {"quote": "Adrian S. is such a nice guy! Good work...", "weight": "high", "context": "Highlights the warmth of staff service.", "sentiment": "praising"}, {"quote": "40 minutos esperando en el aeropuerto a la van....", "weight": "critical", "context": "Frustration due to long wait times.", "sentiment": "damaging"}, {"quote": "Buena experiencia y legales, no como la competencia Gold Car...", "weight": "high", "context": "Positive remark about honesty compared to competitors.", "sentiment": "praising"}, {"quote": "A fuir Clickrent et Do you spain, des voleurs !...", "weight": "critical", "context": "Severe distrust expressed regarding ethics.", "sentiment": "damaging"}, {"quote": "Acudí el otro día por primera vez y no pude estar más contento...", "weight": "high", "context": "Positive experience with service quality.", "sentiment": "praising"}], "headline": "Staff praised, hidden costs frustrate customers", "momentum": "declining", "narrative": "ClickRent Gran Canaria receives positive feedback for its staff warmth and service reliability, which are highlighted in 174 and 75 reviews, respectively. Customers frequently mention the friendly service, with one stating, 'Adrian S. is such a nice guy! Good work...' This positive sentiment reflects a strong foundation in customer service that the company can build upon to enhance overall satisfaction. However, the core issue lies in hidden costs, generating 96 complaints with a staggering 57.1% complaint rate in the value category. Customers report feeling misled by additional charges, as evidenced by the quote, '55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No da...'. The lack of transparency in pricing is eroding trust and driving potential customers away, as evidenced by complaints about ethics and honesty, which amount to 63 complaints combined. The current rating reflects these serious concerns and must be addressed to improve customer perception and retention. The path forward involves addressing hidden costs immediately to reduce dissatisfaction, while simultaneously leveraging the strong customer service reputation to enhance loyalty.", "strengths": [{"quote": "Adrian S. is such a nice guy! Good work...", "title": "Staff Friendliness", "mention_count": 174, "marketing_angle": "Feature staff testimonials prominently in promotional materials"}, {"quote": "Buena experiencia y legales, no como la competencia Gold Car...", "title": "Service Reliability", "mention_count": 75, "marketing_angle": "Highlight 'no hidden surprises' in advertisements"}, {"quote": "Buena experiencia y legales, no como la competencia Gold Car...", "title": "Honesty", "mention_count": 59, "marketing_angle": "Communicate commitment to ethical practices in marketing"}], "rating_gap": 0.6000000000000001, "root_cause": "Lack of transparency regarding additional fees and charges during booking.", "generated_at": "2026-01-29T17:20:58.215931", "review_count": 503, "insight_count": 1201, "current_rating": 3.4, "momentum_detail": "Negative feedback increased 10% over the last six months", "primary_problem": "Customers feel deceived by undisclosed hidden costs", "potential_rating": 4.0, "category_headline": "Value perception is the weak link in an otherwise strong experience", "timeline_headline": "Steady negative feedback with no seasonal patterns observed", "sentiment_headline": "Customers appreciate staff warmth but are troubled by hidden costs", "strengths_headline": "Staff friendliness is a key differentiator with 174 praises", "primary_problem_code": "V1.01"} 87c591a5-18b7-4f36-af0e-218c0af6c46e reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {normalize,classify,route,synthesize} {normalize,classify,route} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["normalize", "classify", "route", "synthesize"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route"]} \N 2026-01-29 18:36:00.212761+00 2026-01-29 18:56:38.529707+00 2026-01-29 18:36:00.212761+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 121, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 1237672, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 506, "records_out": 0}, "synthesize": {"error": "cannot import name 'Synthesis' from 'reviewiq_pipeline.stages.stage5_synthesize' (/app/packages/reviewiq-pipeline/src/reviewiq_pipeline/stages/stage5_synthesize.py)", "success": false, "records_in": 0, "duration_ms": 1, "records_out": 0}} 1238309 \N c5f69a83-f843-4204-af45-61d8d44265fc reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-29 18:58:49.497421+00 2026-01-29 18:59:19.710305+00 2026-01-29 18:58:49.497421+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'action_plan'", "success": false, "records_in": 0, "duration_ms": 30194, "records_out": 0}} 30199 {"actions": [{"owner": "HR", "action": "Implement mandatory respect training for all staff", "effort": "quick_win", "impact": "+0.5 ★ estimated", "evidence": "Complaints about staff respect totaled 13, indicating a serious gap.", "priority": "critical", "impact_stars": 0.5, "success_metric": "Respect-related complaints reduced to 3/month", "complaint_count": 13}, {"owner": "Operations", "action": "Launch an anonymous feedback system for staff interactions", "effort": "moderate", "impact": "+0.3 ★ estimated", "evidence": "Customers reported feeling uncomfortable speaking their minds.", "priority": "high", "impact_stars": 0.3, "success_metric": "Increase in positive feedback regarding staff interactions by 30%", "complaint_count": 8}, {"owner": "Operations", "action": "Enhance cleanliness protocols, especially during peak hours", "effort": "moderate", "impact": "+0.2 ★ estimated", "evidence": "Cleanliness complaints comprise 7 reviews indicating an area of concern.", "priority": "high", "impact_stars": 0.2, "success_metric": "Cleanliness ratings improved by 40% in feedback", "complaint_count": 7}, {"owner": "Marketing", "action": "Improve communication around safety protocols and services", "effort": "long_term", "impact": "+0.1 ★ estimated", "evidence": "Safety is praised but requires clearer communication to enhance customer assurance.", "priority": "medium", "impact_stars": 0.1, "success_metric": "Customer awareness of safety measures increases by 50%", "complaint_count": 5}], "verdict": "Customer satisfaction at Soho Club is hindered by respect-related complaints despite positive experiences with staff warmth.", "evidence": [{"quote": "We missed the smile on staff’s faces...", "weight": "critical", "context": "Indicates a lack of respectful engagement from staff.", "sentiment": "damaging"}, {"quote": "Amazingly friendly staff, but they need to be more respectful.", "weight": "critical", "context": "Balancing praise with the need for respect.", "sentiment": "mixed"}, {"quote": "El mejor club gay en Vilnius.", "weight": "important", "context": "Highlights the safety and positive environment.", "sentiment": "praising"}, {"quote": "The club's cleanliness could be improved during busy nights.", "weight": "important", "context": "Points to an area that requires actionable improvement.", "sentiment": "damaging"}, {"quote": "Cocktails are the best and worth visiting for.", "weight": "important", "context": "Reflects customer satisfaction with offerings.", "sentiment": "praising"}, {"quote": "If you speak your mind, the consequences are staggering...", "weight": "critical", "context": "Reflects concerns about ethics and communication.", "sentiment": "damaging"}], "headline": "Staff warmth shines, but respect issues persist", "momentum": "stable", "narrative": "Soho Club has garnered a current rating of 3.7 stars, with 125 reviews reflecting a blend of satisfaction and areas needing improvement. Positive feedback highlights the warmth of staff, with 38 mentions praising the courteous security and bartenders. Customers appreciate the club's safety, noting it as the best gay club in Vilnius. However, the club faces significant challenges, particularly concerning respect and ethical treatment, which have been highlighted in 21 complaints, including statements like 'we missed the smile on staff's [faces]' and concerns about local persecution. These issues have led to a 50% complaint rate within the relationship domain, indicating a critical need for immediate attention to customer interactions and staff training in respectfulness. Addressing these issues could realistically elevate the club's rating to 4.0 stars, enhancing overall customer satisfaction and loyalty. \\n\\nTo improve the customer experience, Soho Club should focus on enhancing staff training regarding respect and ethical interactions. Initiatives to foster a more inclusive environment could reduce complaints significantly. By addressing these core issues, Soho Club has the potential to boost its reputation and ensure a more welcoming atmosphere for all patrons.", "strengths": [{"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "title": "Staff Warmth", "mention_count": 38, "marketing_angle": "Feature staff testimonials in advertising campaigns to highlight friendliness."}, {"quote": "La noche de los Viernes me encanta, me siento seguro.", "title": "Safety", "mention_count": 23, "marketing_angle": "Emphasize safety in promotional materials."}, {"quote": "Amazing place, worth visiting! Cocktails are the best...", "title": "Cocktail Quality", "mention_count": 19, "marketing_angle": "Promote cocktail specials to attract more customers."}], "rating_gap": 0.29000000000000004, "root_cause": "Inadequate staff training on respectful customer engagement leads to negative interactions.", "generated_at": "2026-01-29T18:59:19.692560", "review_count": 125, "insight_count": 210, "current_rating": 3.71, "momentum_detail": "Customer feedback remains consistent with no significant fluctuations.", "primary_problem": "Customers feel a lack of respect from staff interactions", "potential_rating": 4.0, "category_headline": "Respect and ethics are critical weaknesses in customer experience", "timeline_headline": "Stable feedback pattern with a strong focus on staff behavior", "sentiment_headline": "Positive experiences outweigh negatives, but respect issues linger", "strengths_headline": "Customer praises staff warmth but highlights respect concerns", "primary_problem_code": "P1.01"} 16495738-f193-493e-bfcc-e47f65419887 reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-29 19:01:28.500095+00 2026-01-29 19:02:11.237764+00 2026-01-29 19:01:28.500095+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 42724, "records_out": 0}} 42730 {"actions": [{"owner": "Human Resources", "action": "Implement staff training focused on customer respect and engagement", "effort": "moderate", "impact": "+0.4 ★ estimated", "evidence": "Missed the smile on staff’s ...", "priority": "critical", "impact_stars": 0.4, "success_metric": "Decrease in respect-related complaints below 5/month", "complaint_count": 13}, {"owner": "Management", "action": "Establish a customer feedback loop to address concerns in real-time", "effort": "quick_win", "impact": "+0.3 ★ estimated", "evidence": "Customers feel unheard regarding ethical concerns", "priority": "high", "impact_stars": 0.3, "success_metric": "Feedback resolution rate above 70%", "complaint_count": 8}, {"owner": "Operations", "action": "Enhance cleanliness standards and conduct regular inspections", "effort": "moderate", "impact": "+0.2 ★ estimated", "evidence": "Club cleanliness mentioned negatively multiple times", "priority": "medium", "impact_stars": 0.2, "success_metric": "Cleanliness complaints drop below 3/month", "complaint_count": 7}, {"owner": "Marketing", "action": "Promote the club's safety features more prominently in marketing", "effort": "moderate", "impact": "+0.1 ★ estimated", "evidence": "Customers appreciate the safe environment", "priority": "medium", "impact_stars": 0.1, "success_metric": "Increase in positive safety mentions by 25%", "complaint_count": 5}], "verdict": "Customer rating of 3.7 ★ reflects a warm atmosphere overshadowed by respect and ethical concerns.", "evidence": [{"quote": "At first everything seemed kinda okay, although, we missed the smile on staff’s ...", "weight": "critical", "context": "Highlights lack of respect from staff", "sentiment": "damaging"}, {"quote": "El mejor club gay en Vilnius . La noche de los Viernes me en...", "weight": "high", "context": "Affirms strong safety perception", "sentiment": "praising"}, {"quote": "Amazing place, worth visiting! Cocktails are the best and at...", "weight": "medium", "context": "Highlights the club's offerings", "sentiment": "praising"}, {"quote": "Also if you speak your mind, amount of state and local persecutions is staggering...", "weight": "critical", "context": "Indicates ethical concerns affecting customer experience", "sentiment": "damaging"}, {"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "weight": "high", "context": "Praises staff and their friendliness", "sentiment": "praising"}, {"quote": "Além, a balada fede a suor....", "weight": "medium", "context": "Points to cleanliness issues", "sentiment": "damaging"}], "headline": "Staff warmth appreciated, but respect issues persist", "momentum": "improving", "narrative": "Soho Club has successfully cultivated a warm and welcoming atmosphere, as evidenced by 38 praises highlighting staff friendliness, such as one customer stating, 'Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...' However, this positive sentiment is overshadowed by a concerning 10.4% complaint rate regarding respect and ethics, with 21 customers flagging issues such as the lack of staff smiles and perceived local persecutions. The club must address this disconnect to enhance the overall experience and increase customer loyalty.\\n\\nThe core problem lies in the negative perceptions around respect and ethical interactions, which have led to 21 complaints. A significant quote illustrates this sentiment: 'At first everything seemed kinda okay, although, we missed the smile on staff’s ...'. To elevate the customer experience, Soho Club should implement targeted training programs aimed at enhancing staff engagement and respect towards customers. With a potential rating of 4.1, addressing these issues could yield significant improvements in customer satisfaction and retention.", "strengths": [{"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "title": "Staff Warmth", "mention_count": 38, "marketing_angle": "Feature staff testimonials in promotions to attract new customers"}, {"quote": "El mejor club gay en Vilnius . La noche de los Viernes me en...", "title": "Safety Perception", "mention_count": 23, "marketing_angle": "Highlight safety features in social media campaigns"}, {"quote": "Amazing place, worth visiting! Cocktails are the best and at...", "title": "Quality of Offerings", "mention_count": 19, "marketing_angle": "Leverage high-quality offerings in advertising materials"}], "rating_gap": 0.3899999999999997, "root_cause": "Inadequate staff training on customer engagement and respect", "generated_at": "2026-01-29T19:02:11.228710", "review_count": 125, "insight_count": 210, "current_rating": 3.71, "momentum_detail": "Negative feedback down 10% compared to 6 months ago", "primary_problem": "Customers report a lack of respect from staff", "potential_rating": 4.1, "category_headline": "Respect and ethics are the critical pain points for customers", "timeline_headline": "Feedback patterns indicate persistent issues with staff interactions", "sentiment_headline": "Positive experiences dominate, but respect issues affect 17% of reviews", "strengths_headline": "Customers consistently praise staff warmth and safety", "primary_problem_code": "P1.01"} 20faee21-9b15-4ee6-bbf6-d0079d40f38c reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-29 23:34:50.659429+00 2026-01-29 23:35:24.009239+00 2026-01-29 23:34:50.659429+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 33331, "records_out": 0}} 33337 {"actions": [{"owner": "HR", "action": "Implement respect training for all staff members", "effort": "moderate", "impact": "+0.3 ★ estimated", "evidence": "Customers missed the smile on staff's faces.", "priority": "critical", "impact_stars": 0.3, "success_metric": "Respect-related complaints drop below 5/month", "complaint_count": 13}, {"owner": "Operations", "action": "Conduct comprehensive safety audits and address hazards", "effort": "high", "impact": "+0.2 ★ estimated", "evidence": "Risk alerts about police presence cause customer anxiety.", "priority": "critical", "impact_stars": 0.2, "success_metric": "Safety complaints decrease by 50%", "complaint_count": 5}, {"owner": "Facilities", "action": "Increase cleaning frequency and create checklists", "effort": "quick_win", "impact": "+0.1 ★ estimated", "evidence": "Complaints about cleanliness indicate need for improvement.", "priority": "high", "impact_stars": 0.1, "success_metric": "Cleanliness complaints drop below 3/month", "complaint_count": 7}, {"owner": "Finance", "action": "Review and adjust pricing strategy to enhance value perception", "effort": "moderate", "impact": "+0.1 ★ estimated", "evidence": "Customers feel pricing does not match the experience.", "priority": "high", "impact_stars": 0.1, "success_metric": "Value-related complaints drop below 5/month", "complaint_count": 5}, {"owner": "Management", "action": "Document commitments made to customers and track promises", "effort": "medium", "impact": "+0.1 ★ estimated", "evidence": "Claims of discrimination must be taken seriously.", "priority": "medium", "impact_stars": 0.1, "success_metric": "Relationship complaints decrease by 50%", "complaint_count": 8}], "verdict": "Current 3.7 ★ rating reflects successful staff engagement but highlights urgent safety issues.", "evidence": [{"quote": "At first everything seemed kinda okay, although, we missed the smile on staff’s ...", "weight": "critical", "context": "Indicates gaps in staff engagement and warmth.", "sentiment": "damaging"}, {"quote": "El mejor club gay en Vilnius . La noche de los Viernes me en...", "weight": "important", "context": "Highlights positive safety perceptions.", "sentiment": "praising"}, {"quote": "I went to Soho club last night to watch the dramatica drag show, and while the s...", "weight": "important", "context": "Customer dissatisfaction with perceived pricing value.", "sentiment": "damaging"}, {"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "weight": "critical", "context": "Praise for staff friendliness and service.", "sentiment": "praising"}, {"quote": "We were charged for entrance telling if you are 2 people you have to pay...", "weight": "critical", "context": "Indicates issues with transparency and ethics.", "sentiment": "damaging"}, {"quote": "Amazing place, worth visiting! Cocktails are the best and at...", "weight": "important", "context": "Affirmation of the club's offerings.", "sentiment": "praising"}], "headline": "Customers appreciate staff warmth but express safety concerns", "momentum": "improving", "narrative": "Soho Club has successfully cultivated a positive atmosphere, evidenced by a 157% increase in positive feedback and a current rating of 3.7 ★. The warmth of the staff is consistently praised, with 38 mentions, such as one customer stating, 'Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...' This indicates that the club's personnel are a significant asset in creating a welcoming environment. However, the club faces critical challenges regarding safety and respect, with 5 complaints each related to safety and respect, suggesting an urgent need for improvement in these areas.\\n\\nTo address these pressing issues, immediate action is necessary. Complaints regarding respect highlight a gap in staff training, with quotes indicating that customers feel the staff lacks warmth. Implementing respect training could significantly improve this perception. Furthermore, safety concerns, including alarming risk alerts about police presence and potential discrimination claims, necessitate immediate audits and corrective measures. Addressing these issues could elevate the overall customer experience and improve the rating by approximately 0.5 stars, leading to a potential rating of 4.2 ★.", "strengths": [{"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "title": "Staff Warmth", "mention_count": 38, "marketing_angle": "Feature staff testimonials prominently in promotions"}, {"quote": "El mejor club gay en Vilnius . La noche de los Viernes me en...", "title": "Safety Perception", "mention_count": 23, "marketing_angle": "Highlight safety measures in marketing communications"}, {"quote": "Amazing place, worth visiting! Cocktails are the best and at...", "title": "Quality of Offerings", "mention_count": 19, "marketing_angle": "Promote signature cocktails in social media ads"}, {"quote": "Pati geriausia Miglė...", "title": "Employee Recognition", "mention_count": 3, "marketing_angle": "Encourage employee recognition programs"}], "rating_gap": 0.4900000000000002, "root_cause": "Inconsistent staff training and safety protocols create customer distrust.", "generated_at": "2026-01-29T23:35:23.992422", "review_count": 125, "insight_count": 210, "current_rating": 3.71, "momentum_detail": "Positive feedback up 157%", "primary_problem": "Safety and respect issues are undermining customer confidence", "potential_rating": 4.2, "category_headline": "Value perception suffers with high complaint rates", "timeline_headline": "Improving trends in customer feedback over the past six months", "sentiment_headline": "Positive feedback surges, but safety concerns linger", "strengths_headline": "Staff warmth is a cornerstone of customer satisfaction", "primary_problem_code": "P1.01"} ad8e8352-c6b3-4958-b1e5-3d5d87e7c78b reviewiq \N \N completed {normalize,classify,route,aggregate,synthesize} {normalize,classify,route,aggregate} \N {"job_id": null, "stages": ["normalize", "classify", "route", "aggregate", "synthesize"], "business_id": null} {"success": true, "stages_run": ["normalize", "classify", "route", "aggregate"]} \N 2026-01-29 23:40:36.100969+00 2026-01-29 23:40:36.393865+00 2026-01-29 23:40:36.100969+00 {"route": {"error": null, "success": true, "records_in": 0, "duration_ms": 0, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 252, "records_out": 0}, "aggregate": {"error": null, "success": true, "records_in": 0, "duration_ms": 15, "records_out": 0}, "normalize": {"error": null, "success": true, "records_in": 0, "duration_ms": 4, "records_out": 0}, "synthesize": {"error": "invalid input for query argument $1: 'unknown' (invalid UUID 'unknown': length must be between 32..36 characters, got 7)", "success": false, "records_in": 0, "duration_ms": 10, "records_out": 0}} 283 \N b8d196f4-4121-45bb-a51f-96a257eaa8e9 reviewiq 6cd0d4dc-2f8e-46e9-b8c7-4e1e73d0b3c0 \N completed {synthesize} {synthesize} \N {"job_id": "6cd0d4dc-2f8e-46e9-b8c7-4e1e73d0b3c0", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-29 23:40:51.65073+00 2026-01-29 23:41:09.340436+00 2026-01-29 23:40:51.65073+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 17684, "records_out": 0}} 17688 {"actions": [{"owner": "Customer Experience", "action": "Implement post-service surveys to collect customer feedback", "effort": "quick_win", "impact": "+0.5 ★ estimated", "evidence": "No reviews indicate a lack of customer engagement.", "priority": "critical", "impact_stars": 0.5, "success_metric": "Achieve a minimum of 50 completed surveys per month", "complaint_count": 0}, {"owner": "Marketing", "action": "Launch a referral program to encourage customer reviews", "effort": "moderate", "impact": "+0.3 ★ estimated", "evidence": "A strong word-of-mouth strategy can build credibility.", "priority": "high", "impact_stars": 0.3, "success_metric": "Generate at least 20 customer reviews within three months", "complaint_count": 0}, {"owner": "Digital Marketing", "action": "Enhance online presence through social media engagement", "effort": "moderate", "impact": "+0.2 ★ estimated", "evidence": "Increased engagement can lead to more customer touchpoints.", "priority": "high", "impact_stars": 0.2, "success_metric": "Increase social media interactions by 30% over the next quarter", "complaint_count": 0}], "verdict": "Current zero rating reflects an absence of customer feedback but indicates a recent drop in complaints, signaling potential for improvement.", "evidence": [], "headline": "Building a foundation for positive customer experiences", "momentum": "improving", "narrative": "Despite receiving no customer reviews to date, the absence of complaints over the last three months suggests a notable shift towards an improved customer experience. This is evidenced by a 100% reduction in complaints compared to the prior period, indicating that foundational elements of service may be aligning positively with customer expectations. However, the lack of specific feedback also highlights a critical gap in customer engagement and insight collection that must be addressed to foster loyalty and growth. \\n\\nTo capitalize on this momentum, the business should focus on actively soliciting customer feedback through surveys and other channels to gather insights that can inform service enhancements. Establishing a structured feedback loop will enable the identification of strengths and weaknesses, ultimately guiding the business towards a more customer-centric approach. Engaging customers will not only help generate reviews but also elevate the brand's reputation over time.", "strengths": [], "rating_gap": 3.5, "root_cause": "Absence of structured feedback mechanisms hampers insight generation.", "generated_at": "2026-01-29T23:41:09.336954", "review_count": 0, "insight_count": 0, "current_rating": 0.0, "momentum_detail": "Complaints down 100% vs prior 3 months", "primary_problem": "Lack of customer feedback limits understanding of service quality", "potential_rating": 3.5, "category_headline": "No clear categories established due to absence of reviews", "timeline_headline": "Significant improvement in complaint volume over three months", "sentiment_headline": "No sentiment data available to assess customer feelings", "strengths_headline": "No specific strengths identified to leverage for marketing", "primary_problem_code": "V0.01"} 171e653a-9a6c-4a9c-a3b9-2377c7587834 reviewiq a3813665-ea23-4fb0-aab7-b282ef9443e4 \N completed {synthesize} {synthesize} \N {"job_id": "a3813665-ea23-4fb0-aab7-b282ef9443e4", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-29 23:41:37.790261+00 2026-01-29 23:42:04.562054+00 2026-01-29 23:41:37.790261+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 26756, "records_out": 0}} 26769 {"actions": [{"owner": "Marketing", "action": "Conduct competitor analysis to justify premium pricing or match", "effort": "medium", "impact": "+0.3 ★ estimated", "evidence": "Customers expressed frustration over unexpected fees, e.g., '55€ te cobran a mayores...'", "priority": "critical", "impact_stars": 0.3, "success_metric": "Complaints about hidden costs drop below 20/month", "complaint_count": 96}, {"owner": "Operations", "action": "Optimize delivery processes to ensure timely service", "effort": "medium", "impact": "+0.2 ★ estimated", "evidence": "Customers reported waiting 40 minutes for service, e.g., '40 minutos esperando...'", "priority": "high", "impact_stars": 0.2, "success_metric": "Average wait time under 15 minutes in feedback", "complaint_count": 50}, {"owner": "Management", "action": "Document commitments and track promises made to customers", "effort": "simple", "impact": "+0.2 ★ estimated", "evidence": "Complaints about trust issues, e.g., 'A fuir Clickrent et Do you spain, des voleurs!'", "priority": "high", "impact_stars": 0.2, "success_metric": "Customer trust complaints drop below 5/month", "complaint_count": 32}, {"owner": "HR", "action": "Implement respect training for staff to improve interactions", "effort": "simple", "impact": "+0.1 ★ estimated", "evidence": "Racially charged complaints about staff behavior, e.g., 'treated us very bad, she was so racist.'", "priority": "medium", "impact_stars": 0.1, "success_metric": "Complaints about staff interactions drop below 10/month", "complaint_count": 25}], "verdict": "The current rating of 3.4 ★ reflects a significant decline in customer sentiment driven by hidden costs and service delays.", "evidence": [{"quote": "55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No da...", "weight": "critical", "context": "Demonstrates issues with hidden costs that frustrate customers", "sentiment": "damaging"}, {"quote": "40 minutos esperando en el aeropuerto a la van....", "weight": "critical", "context": "Highlights significant punctuality issues", "sentiment": "damaging"}, {"quote": "Buena experiencia y legales, no como la competencia Gold Car...", "weight": "moderate", "context": "Indicates some customers appreciate the honesty of services provided", "sentiment": "praising"}, {"quote": "Adrian S. is such a nice guy!🙏 Good work...", "weight": "moderate", "context": "Reflects positive staff interactions that enhance customer experience", "sentiment": "praising"}, {"quote": "A fuir Clickrent et Do you spain, des voleurs !...", "weight": "critical", "context": "Reveals customer distrust due to perceived unethical practices", "sentiment": "damaging"}], "headline": "Customer trust erodes amid rising complaints and hidden costs", "momentum": "declining", "narrative": "Additionally, punctuality issues plague the customer experience, with 50 complaints reflecting long wait times at the airport. A customer lamented, '40 minutos esperando en el aeropuerto a la van...', demonstrating the direct impact poor service delivery has on customer satisfaction. Recent momentum shows a decline in sentiment, with complaints rising by 166% over the past three months. This declining trajectory underscores the urgency for ClickRent to address these core issues head-on to restore customer trust and improve the overall experience. The solution lies in implementing recommended fixes such as conducting a competitor analysis to justify premium pricing and optimizing delivery processes to enhance punctuality.", "strengths": [{"quote": "Adrian S. is such a nice guy!🙏 Good work...", "title": "Staff Warmth", "mention_count": 174, "marketing_angle": "Feature staff testimonials in marketing materials"}, {"quote": "Buena experiencia y legales, no como la competencia Gold Car...", "title": "Service Reliability", "mention_count": 75, "marketing_angle": "Emphasize reliability and transparency in communications"}], "rating_gap": 0.6999999999999997, "root_cause": "Lack of transparency in pricing and inefficient delivery processes contribute to customer dissatisfaction.", "generated_at": "2026-01-29T23:42:04.555435", "review_count": 503, "insight_count": 1201, "current_rating": 3.4, "momentum_detail": "Complaints up 166% vs prior 3 months", "primary_problem": "Customers are frustrated by hidden costs and poor punctuality", "potential_rating": 4.1, "category_headline": "Value perception severely undermined by hidden costs and delays", "timeline_headline": "Complaints have surged 166% in the past three months", "sentiment_headline": "Customer sentiment declines sharply with rising complaints about costs", "strengths_headline": "Staff warmth and service reliability are highly praised by customers", "primary_problem_code": "V1.01"} c2f94d94-4541-4e58-85f4-fca816638e52 reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 01:04:18.970184+00 2026-01-30 01:04:59.698789+00 2026-01-30 01:04:18.970184+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 40712, "records_out": 0}} 40718 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "actions": [{"owner": "Human Resources", "action": "Implement respect training for all staff members.", "effort": "moderate", "impact": "+0.6 ★ estimated", "evidence": "Customers noted missing smiles from staff, impacting their experience.", "priority": "critical", "impact_stars": 0.6, "success_metric": "Staff respect complaints drop below 2/month.", "complaint_count": 13}, {"owner": "Management", "action": "Document commitments and track promises made to customers.", "effort": "quick_win", "impact": "+0.4 ★ estimated", "evidence": "Ethical concerns reported, indicating a trust gap.", "priority": "high", "impact_stars": 0.4, "success_metric": "Ethics-related complaints decrease by 50%.", "complaint_count": 8}, {"owner": "Operations", "action": "Increase cleaning frequency and create cleaning checklists.", "effort": "moderate", "impact": "+0.3 ★ estimated", "evidence": "Complaints about cleanliness noted by several patrons.", "priority": "high", "impact_stars": 0.3, "success_metric": "Cleanliness complaints drop below 3/month.", "complaint_count": 7}, {"owner": "Safety Officer", "action": "Conduct safety audits and address any immediate hazards.", "effort": "moderate", "impact": "+0.2 ★ estimated", "evidence": "Safety concerns raised by multiple customers.", "priority": "medium", "impact_stars": 0.2, "success_metric": "Safety complaints decrease by 50%.", "complaint_count": 5}, {"owner": "Finance", "action": "Review pricing strategy and consider offering value tiers.", "effort": "complex", "impact": "+0.2 ★ estimated", "evidence": "Customers feel the pricing is not aligned with the experience.", "priority": "medium", "impact_stars": 0.2, "success_metric": "Value-related complaints decrease by 50%.", "complaint_count": 5}], "verdict": "Current rating of 3.7 ★ reflects a significant increase in complaints, particularly concerning staff respect and ethical practices.", "evidence": [{"quote": "At first everything seemed kinda okay, although, we missed the smile on staff’s ...", "weight": "critical", "context": "Indicates lack of staff warmth affecting experience.", "sentiment": "damaging"}, {"quote": "This is one of the most blatant forms of discrimination...", "weight": "critical", "context": "Highlights ethical concerns that harm customer trust.", "sentiment": "damaging"}, {"quote": "Amazing place, worth visiting! Cocktails are the best and at...", "weight": "moderate", "context": "Praise for offerings, a strength to leverage.", "sentiment": "praising"}, {"quote": "El mejor club gay en Vilnius . La noche de los Viernes me en...", "weight": "moderate", "context": "Shows strong safety perception among visitors.", "sentiment": "praising"}, {"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "weight": "moderate", "context": "Recognition of staff, reinforcing a customer connection.", "sentiment": "praising"}, {"quote": "Além, a balada fede a suor....", "weight": "critical", "context": "Expresses cleanliness issues that need addressing.", "sentiment": "damaging"}], "headline": "Declining customer sentiment signals urgent need for improvements", "momentum": "declining", "narrative": "Soho Club has established itself as a vibrant venue with a strong reputation for safety and quality offerings, receiving 38 positive mentions for staff warmth and 19 for its drinks. However, the recent surge in complaints, which has risen by 1350% over the past three months, highlights critical issues that must be addressed to restore customer trust and satisfaction. Notably, 13 complaints regarding staff respect have been recorded, with patrons expressing disappointment, stating, 'At first everything seemed kinda okay, although, we missed the smile on staff’s...'. Such feedback suggests an urgent need for respect training and immediate addressing of complaints to enhance the customer experience.\\n\\nMoreover, ethical concerns have surfaced, with customers feeling disheartened by the perceived discriminatory practices, as one reviewer pointed out, 'this is one of the most blatant forms of discrimination...'. This points to the necessity of documenting commitments and tracking promises made to customers. Addressing these core issues, alongside increasing cleaning frequency and conducting safety audits, will be imperative to rebuilding Soho Club’s reputation and improving its overall rating. Immediate action is required in these areas to stabilize customer sentiment and reclaim lost ground.", "strengths": [{"quote": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi...", "title": "Staff Warmth", "mention_count": 38, "marketing_angle": "Feature staff testimonials in marketing materials to enhance trust."}, {"quote": "El mejor club gay en Vilnius . La noche de los Viernes me en...", "title": "Safety Perception", "mention_count": 23, "marketing_angle": "Emphasize safety features in promotional campaigns."}, {"quote": "Amazing place, worth visiting! Cocktails are the best and at...", "title": "Quality Offerings", "mention_count": 19, "marketing_angle": "Promote signature cocktails in all advertising channels."}], "rating_gap": 0.3899999999999997, "root_cause": "Inconsistent staff training and failure to address complaints in a timely manner, leading to negative customer interactions.", "generated_at": "2026-01-30T01:04:59.686200", "review_count": 125, "insight_count": 210, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "primary_problem": "Customers report a lack of respect and ethical treatment", "potential_rating": 4.1, "category_headline": "Value perception is the most pressing issue for patrons", "timeline_headline": "Steady decline in customer satisfaction over the past quarter", "sentiment_headline": "Customer sentiment is declining, with a 1350% rise in complaints", "strengths_headline": "Staff warmth is a standout asset with 38 positive mentions", "primary_problem_code": "P1.01"} 5af31c2c-c4e4-4300-9e00-4776a944e23d reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": []} \N 2026-01-30 01:15:22.326189+00 2026-01-30 01:15:51.564606+00 2026-01-30 01:15:22.326189+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 29222, "records_out": 0}} 29228 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "strengths": [{"title": "Warmth of Staff", "percentage": 30.4, "top_quotes": ["Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi..."], "risk_of_loss": "Staff turnover could erode this advantage.", "mention_count": 38, "leverage_action": "Highlight positive staff in promotional material; 'Meet our team' section."}, {"title": "Safety Perception", "percentage": 18.4, "top_quotes": ["El mejor club gay en Vilnius . La noche de los Viernes me en..."], "risk_of_loss": "Negative safety incidents could undermine this strength.", "mention_count": 23, "leverage_action": "Promote safety measures in marketing materials."}, {"title": "Quality of Offerings", "percentage": 15.2, "top_quotes": ["Amazing place, worth visiting! Cocktails are the best and at..."], "risk_of_loss": "Inconsistent quality could diminish customer loyalty.", "mention_count": 19, "leverage_action": "Feature top offerings in advertising campaigns."}, {"title": "Employee Recognition", "percentage": 0.0, "top_quotes": ["Pati geriausia Miglė...", "Labiausiai mldc barmenas klubo istorijoje dirba- E...", "Apsauga kultūringa, barmenai paslaugūs o barmenė Ž..."], "risk_of_loss": "", "mention_count": 4, "leverage_action": "Create employee spotlight sections in monthly newsletters."}], "report_date": "January 2026", "generated_at": "2026-01-30T01:15:51.546931", "report_title": "Reputation Health Report: Soho Club", "review_count": 125, "action_matrix": [{"owner": "HR", "action": "Implement respect training for all staff", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★", "success_metric": "Reduction in respect-related complaints by 50% within 60 days."}, {"owner": "Management", "action": "Document commitments and track promises made to customers", "effort": "low", "impact": "medium", "deadline": "Week 2", "quadrant": "quick_win", "expected_lift": "+0.2★", "success_metric": "Decrease in ethics-related complaints by 40% within 60 days."}, {"owner": "Facilities", "action": "Increase cleaning frequency and create checklists", "effort": "medium", "impact": "high", "deadline": "Month 1", "quadrant": "major_project", "expected_lift": "+0.4★", "success_metric": "Cleanliness complaints reduced to <5/month within 90 days."}, {"owner": "Safety Officer", "action": "Conduct safety audits and address hazards", "effort": "medium", "impact": "high", "deadline": "Month 1", "quadrant": "major_project", "expected_lift": "+0.3★", "success_metric": "Safety complaints reduced to <3/month within 90 days."}], "business_name": "Soho Club", "insight_count": 210, "tracking_kpis": [{"metric": "Respect Complaints", "measurement": "Count reviews mentioning 'respect', 'staff', 'disrespect'", "current_value": "13/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 3/month"}, {"metric": "Cleanliness Complaints", "measurement": "Count reviews mentioning 'clean', 'dirty', 'cleanliness'", "current_value": "7/month", "target_30_day": "< 5/month", "target_60_day": "< 3/month", "target_90_day": "< 1/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "3.7★", "target_30_day": "3.8★", "target_60_day": "3.9★", "target_90_day": "4.0★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "red", "score": 5, "trend": "declining", "complaint_count": 13}, {"name": "Cleanliness & Environment", "color": "red", "score": 5, "trend": "declining", "complaint_count": 7}, {"name": "Value & Pricing", "color": "red", "score": 3, "trend": "declining", "complaint_count": 5}, {"name": "Safety & Security", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 5}], "overall_risk": "medium", "highest_risk_area": "Respect and Ethics", "immediate_attention": "Critical issues regarding respect and ethics require urgent intervention."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Lack of Respect from Staff", "effort": "quick_win", "evidence": ["At first everything seemed kinda okay, although, we missed the smile on staff’s ..."], "solution": "Implement respect training. Address complaints immediately.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Perceived disrespect by staff towards customers.", "revenue_impact": "€1,300/month (estimated 4 lost customers × €330 avg)", "complaint_count": 13}, {"rank": 2, "title": "Ethics and Transparency Issues", "effort": "quick_win", "evidence": ["Also if you speak your mind, amount of state and local persecutions is staggerin..."], "solution": "Document commitments. Track promises made.", "timeline": "2 weeks", "urt_code": "R1.02", "root_cause": "Lack of transparency in staff interactions and pricing.", "revenue_impact": "€1,500/month (estimated 5 lost customers × €300 avg)", "complaint_count": 8}, {"rank": 3, "title": "Cleanliness Concerns", "effort": "medium", "evidence": ["Além, a balada fede a suor...."], "solution": "Increase cleaning frequency. Create cleaning checklists.", "timeline": "1 month", "urt_code": "E1.03", "root_cause": "Insufficient cleaning practices leading to poor environment quality.", "revenue_impact": "€1,700/month (estimated 5 lost customers × €340 avg)", "complaint_count": 7}], "executive_summary": {"momentum": "declining", "one_liner": "Strong staff warmth overshadowed by critical respect and ethics issues.", "rating_gap": 0.18999999999999995, "key_insight": "13 customers cited lack of respect from staff - fixable with immediate training.", "health_label": "Needs Attention", "health_score": 47, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "potential_rating": 3.9, "estimated_revenue_at_risk": "€4,500/month"}} 9905b61f-aa5a-4747-892b-65c35bebce20 reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 01:17:42.406302+00 2026-01-30 01:18:14.223838+00 2026-01-30 01:17:42.406302+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 31803, "records_out": 0}} 31808 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "strengths": [{"title": "Warm Staff Service", "percentage": 30.4, "top_quotes": ["Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi..."], "risk_of_loss": "Staff morale and training could diminish this strength.", "mention_count": 38, "leverage_action": "Promote staff interactions in marketing, highlighting their warmth."}, {"title": "Safety Perception", "percentage": 18.4, "top_quotes": ["El mejor club gay en Vilnius . La noche de los Viernes me en..."], "risk_of_loss": "Safety concerns could overshadow positive perceptions.", "mention_count": 23, "leverage_action": "Feature safety measures prominently in marketing materials."}, {"title": "Quality Offerings", "percentage": 15.2, "top_quotes": ["Amazing place, worth visiting! Cocktails are the best and at..."], "risk_of_loss": "Customer dissatisfaction could impact this strength.", "mention_count": 19, "leverage_action": "Highlight top cocktails and offerings in promotions."}], "report_date": "January 2026", "generated_at": "2026-01-30T01:18:14.212459", "report_title": "Reputation Health Report: Soho Club", "review_count": 125, "action_matrix": [{"owner": "HR/Training", "action": "Implement respect training for all staff", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★", "success_metric": "Reduction in respect complaints by 50% within 60 days."}, {"owner": "Management", "action": "Document and publicly share service commitments", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★", "success_metric": "Ethics complaints drop by 50% within 60 days."}, {"owner": "Operations", "action": "Increase cleaning frequency and create checklists", "effort": "medium", "impact": "high", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.2★", "success_metric": "Cleanliness complaints drop to <3/month in 90 days."}, {"owner": "Safety Officer", "action": "Conduct safety audits and address hazards", "effort": "medium", "impact": "high", "deadline": "Week 3", "quadrant": "major_project", "expected_lift": "+0.1★", "success_metric": "Safety complaints drop to <3/month."}], "business_name": "Soho Club", "insight_count": 210, "tracking_kpis": [{"metric": "Respect and Staff Complaints", "measurement": "Count reviews mentioning 'respect', 'staff', 'service'", "current_value": "13/month", "target_30_day": "< 8/month", "target_60_day": "< 4/month", "target_90_day": "< 2/month"}, {"metric": "Ethics Complaints", "measurement": "Count reviews mentioning 'ethics', 'trust', 'commitments'", "current_value": "8/month", "target_30_day": "< 4/month", "target_60_day": "< 2/month", "target_90_day": "< 1/month"}, {"metric": "Cleanliness Complaints", "measurement": "Count reviews mentioning 'clean', 'dirty', 'hygiene'", "current_value": "7/month", "target_30_day": "< 4/month", "target_60_day": "< 2/month", "target_90_day": "< 1/month"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "red", "score": 5, "trend": "declining", "complaint_count": 13}, {"name": "Value & Pricing", "color": "red", "score": 3, "trend": "declining", "complaint_count": 5}, {"name": "Cleanliness", "color": "red", "score": 4, "trend": "declining", "complaint_count": 7}, {"name": "Safety", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 5}], "overall_risk": "high", "highest_risk_area": "Staff Respect and Ethics", "immediate_attention": "Critical issues in staff respect and ethics demand immediate intervention."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Respect and Staff Training Needed", "effort": "quick_win", "evidence": ["At first everything seemed kinda okay, although, we missed the smile on staff’s ..."], "solution": "Implement respect training. Address complaints immediately.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Staff training on respect and customer engagement lacking.", "revenue_impact": "€1,300/month (estimated 4 lost customers × €330 avg)", "complaint_count": 13}, {"rank": 2, "title": "Ethics and Transparency Issues", "effort": "quick_win", "evidence": ["Also if you speak your mind, amount of state and local persecutions is staggerin..."], "solution": "Document commitments. Track promises made.", "timeline": "1 week", "urt_code": "R1.01", "root_cause": "Lack of transparency and accountability in operations.", "revenue_impact": "€1,000/month (estimated 3 lost customers × €330 avg)", "complaint_count": 8}, {"rank": 3, "title": "Cleanliness Concerns", "effort": "medium", "evidence": ["Além, a balada fede a suor...."], "solution": "Increase cleaning frequency. Create cleaning checklists.", "timeline": "2 weeks", "urt_code": "E1.02", "root_cause": "Cleaning protocols not stringent enough.", "revenue_impact": "€1,000/month (estimated 3 lost customers × €330 avg)", "complaint_count": 7}], "executive_summary": {"momentum": "declining", "one_liner": "Strong customer experiences overshadowed by declining sentiment and critical issues.", "rating_gap": 0.18999999999999995, "key_insight": "41 complaints regarding staff respect and ethics indicate urgent need for training and documentation.", "health_label": "Needs Attention", "health_score": 47, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "potential_rating": 3.9, "estimated_revenue_at_risk": "€3,300/month"}} 9e6139ff-88f3-459e-88d1-f448e5b57acd reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 01:22:37.054638+00 2026-01-30 01:23:14.586052+00 2026-01-30 01:22:37.054638+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 37512, "records_out": 0}} 37520 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "strengths": [{"title": "Friendly Staff Recognition", "percentage": 30.4, "top_quotes": ["Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi..."], "risk_of_loss": "Staff turnover could diminish this positive reputation.", "mention_count": 38, "leverage_action": "Promote featured staff in social media and website to bolster positive image."}, {"title": "Safe Environment", "percentage": 18.4, "top_quotes": ["El mejor club gay en Vilnius . La noche de los Viernes me en..."], "risk_of_loss": "Incidents reported can undermine this recognition.", "mention_count": 23, "leverage_action": "Highlight safety protocols and positive experiences in marketing materials."}], "report_date": "January 2026", "generated_at": "2026-01-30T01:23:14.571680", "report_title": "Reputation Health Report: Soho Club", "review_count": 125, "action_matrix": [{"owner": "HR/Training", "action": "Implement respect training for all staff", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.5★", "success_metric": "Customer complaints about staff decrease by 50% within 60 days"}, {"owner": "Operations", "action": "Increase cleaning frequency and create checklists", "effort": "medium", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★", "success_metric": "Cleanliness complaints drop below 3/month within 60 days"}, {"owner": "Management", "action": "Review pricing strategy and display all fees upfront", "effort": "medium", "impact": "high", "deadline": "Week 2-4", "quadrant": "major_project", "expected_lift": "+0.4★", "success_metric": "Pricing complaints drop to <2/month within 90 days"}, {"owner": "Marketing", "action": "Feature staff in marketing materials", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★", "success_metric": "Positive staff mentions increase by 20% in next 3 months"}], "business_name": "Soho Club", "insight_count": 210, "tracking_kpis": [{"metric": "Staff Respect Complaints", "measurement": "Count reviews mentioning 'staff', 'respect', 'treatment'", "current_value": "13/month", "target_30_day": "< 7/month", "target_60_day": "< 3/month", "target_90_day": "< 1/month"}, {"metric": "Cleanliness Complaints", "measurement": "Count reviews mentioning 'clean', 'dirty', 'hygiene'", "current_value": "7/month", "target_30_day": "< 5/month", "target_60_day": "< 3/month", "target_90_day": "< 1/month"}, {"metric": "Pricing Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'expensive'", "current_value": "5/month", "target_30_day": "< 3/month", "target_60_day": "< 1/month", "target_90_day": "< 0/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "3.7★", "target_30_day": "3.8★", "target_60_day": "4.0★", "target_90_day": "4.2★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "yellow", "score": 6, "trend": "declining", "complaint_count": 13}, {"name": "Value & Pricing", "color": "red", "score": 3, "trend": "declining", "complaint_count": 5}, {"name": "Facility & Cleanliness", "color": "yellow", "score": 5, "trend": "declining", "complaint_count": 7}, {"name": "Experience & Journey", "color": "red", "score": 2, "trend": "declining", "complaint_count": 4}], "overall_risk": "high", "highest_risk_area": "Respect & Staff Conduct", "immediate_attention": "Serious complaints about respect and treatment of customers demand urgent action."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Respect Issues with Staff Conduct", "effort": "quick_win", "evidence": ["At first everything seemed kinda okay, although, we missed the smile on staff’s faces.", "Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta pa..."], "solution": "Implement respect training for all staff, emphasizing warm greetings and positive interactions.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Lack of respect training for staff, impacting customer perceptions.", "revenue_impact": "€1,300/month (estimated 4 lost customers × €330 avg)", "complaint_count": 13}, {"rank": 2, "title": "Cleanliness Issues in the Venue", "effort": "quick_win", "evidence": ["Apvemta salė, stiklai. Niekas nieko netvarko.", "The bathroom was also just wet like someone had just covered every surface in water?"], "solution": "Increase cleaning frequency and create cleaning checklists to ensure hygiene standards.", "timeline": "1 week", "urt_code": "P1.03", "root_cause": "Inconsistent cleaning schedule and oversight.", "revenue_impact": "€700/month (estimated 2 lost customers × €350 avg)", "complaint_count": 7}, {"rank": 3, "title": "Pricing Transparency and Perceived Value", "effort": "major_project", "evidence": ["La estrada cuesta 6€ y cada cerveza otros 6€.", "Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR."], "solution": "Review pricing strategy and clearly display all costs to customers before checkout.", "timeline": "2-4 weeks", "urt_code": "P1.04", "root_cause": "Lack of clear pricing information leading to customer dissatisfaction.", "revenue_impact": "€1,000/month (estimated 3 lost customers × €330 avg)", "complaint_count": 5}], "executive_summary": {"momentum": "declining", "one_liner": "Customer satisfaction declining sharply due to respect and pricing issues.", "rating_gap": 0.29000000000000004, "key_insight": "13 complaints about staff respect highlight critical first impressions; addressing this could recover lost patrons.", "health_label": "Needs Attention", "health_score": 43, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "potential_rating": 4.0, "estimated_revenue_at_risk": "€5,000/month"}} 34eb7e8c-7c1b-4fa7-b935-025987a023e0 reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 01:25:13.915565+00 2026-01-30 01:26:06.62655+00 2026-01-30 01:25:13.915565+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 52687, "records_out": 0}} 52697 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "strengths": [{"title": "Warm and Helpful Staff", "percentage": 30.4, "top_quotes": ["Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi..."], "risk_of_loss": "Inconsistent staff behavior could undermine this strength.", "mention_count": 38, "leverage_action": "Feature positive staff experiences in marketing; celebrate staff like Miglė and Eivydas."}, {"title": "Strong Safety Record", "percentage": 18.4, "top_quotes": ["El mejor club gay en Vilnius . La noche de los Viernes me en..."], "risk_of_loss": "Maintaining safety during peak hours is critical to retain customer trust.", "mention_count": 23, "leverage_action": "Promote safety measures in advertising to attract more patrons."}], "report_date": "January 2026", "generated_at": "2026-01-30T01:26:06.605311", "report_title": "Reputation Health Report: Soho Club", "review_count": 125, "action_matrix": [{"owner": "HR/Training", "action": "Implement respect training for all staff focusing on customer greetings.", "effort": "low", "impact": "high", "deadline": "Week 2", "quadrant": "quick_win", "expected_lift": "+0.4★", "success_metric": "Positive mentions of staff behavior increase by 50% within 60 days."}, {"owner": "Management", "action": "Review and clarify pricing strategies, ensuring clear communication.", "effort": "medium", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★", "success_metric": "Price-related complaints drop by 50% within 30 days."}, {"owner": "Facilities", "action": "Create and implement a cleaning checklist for high-traffic areas.", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★", "success_metric": "Cleanliness complaints decrease by 50% within 60 days."}, {"owner": "Operations", "action": "Assign dedicated cleaning staff during peak hours on weekends.", "effort": "medium", "impact": "high", "deadline": "Week 3", "quadrant": "major_project", "expected_lift": "+0.4★", "success_metric": "Reduction in negative feedback regarding cleanliness."}], "business_name": "Soho Club", "insight_count": 210, "tracking_kpis": [{"metric": "Customer Complaints on Staff Demeanor", "measurement": "Count reviews mentioning 'staff', 'demeanor', 'rude'", "current_value": "13/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Price-Related Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'fee'", "current_value": "5/month", "target_30_day": "< 3/month", "target_60_day": "< 1/month", "target_90_day": "< 0/month"}, {"metric": "Cleanliness Complaints", "measurement": "Count reviews mentioning 'clean', 'dirty', 'bathroom'", "current_value": "7/month", "target_30_day": "< 4/month", "target_60_day": "< 2/month", "target_90_day": "< 1/month"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "red", "score": 5, "trend": "declining", "complaint_count": 13}, {"name": "Value & Pricing", "color": "red", "score": 3, "trend": "declining", "complaint_count": 5}, {"name": "Facility & Cleanliness", "color": "yellow", "score": 4, "trend": "stable", "complaint_count": 7}, {"name": "Safety & Security", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 5}, {"name": "Experience & Journey", "color": "red", "score": 2, "trend": "declining", "complaint_count": 4}], "overall_risk": "medium", "highest_risk_area": "Staff Respect & Demeanor", "immediate_attention": "Address staff behavior and pricing transparency to mitigate complaints."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Staff Demeanor Creating Negative Experiences", "effort": "quick_win", "evidence": ["At first everything seemed kinda okay, although, we missed the smile on staff’s faces.", "Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta pa..."], "solution": "Implement respect training focused on greeting customers warmly, especially at entry points where first impressions are crucial. Quotes indicate staff demeanor at entry can deter customers.", "timeline": "2 weeks", "urt_code": "P1.01", "root_cause": "Staff failing to provide a warm welcome; lack of training in customer engagement.", "revenue_impact": "€5,200/month (estimated 16 lost customers × €330 avg)", "complaint_count": 13}, {"rank": 2, "title": "Pricing Transparency Issues", "effort": "quick_win", "evidence": ["La estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR"], "solution": "Revise the pricing display on entry and on menus to clearly outline costs upfront. This allows customers to understand charges before committing, addressing concerns raised in multiple quotes.", "timeline": "1 week", "urt_code": "P2.01", "root_cause": "Unclear pricing structure leading to customer confusion and dissatisfaction.", "revenue_impact": "€1,400/month (estimated 4 lost customers × €330 avg)", "complaint_count": 5}, {"rank": 3, "title": "Cleanliness Concerns in Venue", "effort": "quick_win", "evidence": ["The bathroom was also just wet like someone had just covered every surface in water?", "Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro"], "solution": "Create a cleaning checklist and assign dedicated staff during peak hours (especially on weekends) to maintain cleanliness, particularly in high-traffic areas like bathrooms. Quotes suggest cleanliness is a major concern.", "timeline": "1 week", "urt_code": "P3.01", "root_cause": "Inadequate cleaning schedules leading to unsatisfactory conditions.", "revenue_impact": "€1,000/month (estimated 3 lost customers × €330 avg)", "complaint_count": 7}], "executive_summary": {"momentum": "declining", "one_liner": "Strong atmosphere undermined by respect and pricing issues.", "rating_gap": 0.29000000000000004, "key_insight": "41 customers expressed dissatisfaction with staff demeanor and pricing transparency, indicating room for improvement.", "health_label": "Needs Attention", "health_score": 52, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "potential_rating": 4.0, "estimated_revenue_at_risk": "€6,600/month"}} d3421b7d-5b85-41c5-86d0-87f3915e52e0 reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 01:29:36.073484+00 2026-01-30 01:30:10.899162+00 2026-01-30 01:29:36.073484+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 34811, "records_out": 0}} 34816 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "strengths": [{"title": "Warm and Friendly Staff", "percentage": 30.4, "top_quotes": ["Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi..."], "risk_of_loss": "Staff turnover or burnout could erode this advantage.", "mention_count": 38, "leverage_action": "Feature positive staff stories in marketing to enhance brand image."}, {"title": "Safety Perception", "percentage": 18.4, "top_quotes": ["El mejor club gay en Vilnius."], "risk_of_loss": "Safety complaints could diminish if not monitored.", "mention_count": 23, "leverage_action": "Promote the club's commitment to safety and security on social media."}, {"title": "Quality Offerings", "percentage": 15.2, "top_quotes": ["Amazing place, worth visiting! Cocktails are the best and at..."], "risk_of_loss": "Quality must be maintained to retain positive perception.", "mention_count": 19, "leverage_action": "Highlight best-selling cocktails in marketing materials."}], "report_date": "January 2026", "generated_at": "2026-01-30T01:30:10.884487", "report_title": "Reputation Health Report: Soho Club", "review_count": 125, "action_matrix": [{"owner": "Manager", "action": "Implement a new greeting protocol for staff: 'Welcome to Soho Club!' with a smile before ID checks.", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★", "success_metric": "'Missed smiles' mentions drop from 13/month to <3/month."}, {"owner": "Operations", "action": "Enhance cleaning protocols: Assign a dedicated cleaning crew during peak hours (10pm-2am) to clean every 30 minutes.", "effort": "medium", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★", "success_metric": "Bathroom complaints drop from 7/month to <2/month."}, {"owner": "Manager", "action": "Install illuminated pricing board at entrance showing entry and drink prices clearly.", "effort": "low", "impact": "high", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.2★", "success_metric": "'Confusing pricing' mentions drop from 5/month to <2/month."}, {"owner": "Operations", "action": "Create a cleaning checklist for staff to ensure consistent hygiene standards are met.", "effort": "medium", "impact": "medium", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.1★", "success_metric": "Overall cleanliness complaints drop from 15/month to <5/month."}], "business_name": "Soho Club", "insight_count": 210, "tracking_kpis": [{"metric": "Respect/Attitude Complaints", "measurement": "Count reviews mentioning 'staff', 'rude', 'unfriendly'", "current_value": "13/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Cleanliness Complaints", "measurement": "Count reviews mentioning 'clean', 'dirty', 'hygiene'", "current_value": "7/month", "target_30_day": "< 5/month", "target_60_day": "< 2/month", "target_90_day": "< 1/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "3.7★", "target_30_day": "3.8★", "target_60_day": "3.9★", "target_90_day": "4.0★"}, {"metric": "Pricing Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'fee', 'expensive'", "current_value": "5/month", "target_30_day": "< 3/month", "target_60_day": "< 1/month", "target_90_day": "< 1/month"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "red", "score": 6, "trend": "declining", "complaint_count": 13}, {"name": "Value & Pricing", "color": "red", "score": 3, "trend": "declining", "complaint_count": 5}, {"name": "Facility & Cleanliness", "color": "yellow", "score": 5, "trend": "declining", "complaint_count": 7}, {"name": "Experience & Journey", "color": "red", "score": 2, "trend": "declining", "complaint_count": 4}], "overall_risk": "high", "highest_risk_area": "Respect and Cleanliness", "immediate_attention": "Address rising complaints about staff respect and cleanliness - 68 negative mentions in total."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Staff Attitude and Respect Issues", "effort": "quick_win", "evidence": ["At first everything seemed kinda okay, although, we missed the smile on staff’s faces.", "Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta pa..."], "solution": "Implement a new staff greeting protocol (starting Monday): (1) Staff to smile and say 'Welcome to Soho Club!' before any ID checks, (2) Train to engage positively with guests, emphasizing friendliness, (3) Monitor interactions for two weeks with spot checks. The quote about missing smiles indicates that initial impressions are crucial for guest satisfaction.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Staff prioritizing control over hospitality; lack of greeting and engagement protocol.", "revenue_impact": "€1,300/month (estimated 4 lost customers × €330 avg)", "complaint_count": 13}, {"rank": 2, "title": "Cleanliness and Hygiene Complaints", "effort": "medium", "evidence": ["The bathroom was also just wet like someone had just covered every surface in water?", "Apvemta salė, stiklai. Niekas nieko netvarko."], "solution": "Enhance cleaning protocols: (1) Assign a dedicated cleaning crew during peak hours (10pm-2am on Fri/Sat) to clean bathrooms and floors every 30 minutes, (2) Implement a visible 'Last Cleaned' sign in bathrooms with timestamps, (3) Create daily cleaning checklists for staff. The quote about wet bathrooms indicates guests expect better hygiene standards.", "timeline": "1 week", "urt_code": "P1.03", "root_cause": "Inadequate cleaning frequency and lack of cleaning protocols.", "revenue_impact": "€660/month (estimated 2 lost customers × €330 avg)", "complaint_count": 7}, {"rank": 3, "title": "Discrimination and Pricing Complaints", "effort": "medium", "evidence": ["La estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "Baisus klubas, nevertina savo pastovių klijentų."], "solution": "Clarify pricing strategy: (1) Install illuminated pricing boards at the entrance showing entry and drink prices clearly, (2) Train staff to explain pricing structures and offer value tiers (e.g., happy hour specials), (3) Create a clear pricing sheet for guests upon entry. The quote about pricing indicates guests are unsure of the value.", "timeline": "2 weeks", "urt_code": "P1.04", "root_cause": "Confusing pricing structure leads to negative perceptions of value.", "revenue_impact": "€660/month (estimated 2 lost customers × €330 avg)", "complaint_count": 5}], "executive_summary": {"momentum": "declining", "one_liner": "Strong safety perception undermined by respect and cleanliness issues.", "rating_gap": 0.29000000000000004, "key_insight": "13 customers mentioned missing smiles from staff, indicating a need for improved staff engagement.", "health_label": "Needs Attention", "health_score": 47, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "potential_rating": 4.0, "estimated_revenue_at_risk": "€3,300/month"}} cc972095-5e33-4542-96b0-0eaa3c9f3010 reviewiq 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {synthesize} {synthesize} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 01:36:23.460226+00 2026-01-30 01:37:02.688372+00 2026-01-30 01:36:23.460226+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 39197, "records_out": 0}} 39204 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 13}, {"color": "#FB8C00", "label": "Ethics", "value": 8}, {"color": "#FDD835", "label": "Cleanliness", "value": 7}, {"color": "#43A047", "label": "Safety", "value": 5}, {"color": "#9E9E9E", "label": "Price Level", "value": 5}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.05}, "rating_trend": [{"month": "Mar", "value": 5.0, "month_date": "2025-03"}, {"month": "Apr", "value": 5.0, "month_date": "2025-04"}, {"month": "May", "value": 3.5, "month_date": "2025-05"}, {"month": "Jun", "value": 2.0, "month_date": "2025-06"}, {"month": "Jul", "value": 4.58, "month_date": "2025-07"}, {"month": "Aug", "value": 5.0, "month_date": "2025-08"}, {"month": "Sep", "value": 5.0, "month_date": "2025-09"}, {"month": "Oct", "value": 4.08, "month_date": "2025-10"}, {"month": "Nov", "value": 2.15, "month_date": "2025-11"}, {"month": "Dec", "value": 1.67, "month_date": "2025-12"}, {"month": "Jan", "value": 3.12, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 127}, {"color": "#F44336", "label": "Negative", "value": 68}, {"color": "#9E9E9E", "label": "Neutral", "value": 15}], "momentum_trend": [{"month": "Mar", "negative": 0, "positive": 1, "month_date": "2025-03"}, {"month": "Apr", "negative": 0, "positive": 1, "month_date": "2025-04"}, {"month": "May", "negative": 1, "positive": 1, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 1, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 9, "month_date": "2025-07"}, {"month": "Aug", "negative": 0, "positive": 2, "month_date": "2025-08"}, {"month": "Sep", "negative": 0, "positive": 0, "month_date": "2025-09"}, {"month": "Oct", "negative": 5, "positive": 6, "month_date": "2025-10"}, {"month": "Nov", "negative": 9, "positive": 4, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 2, "month_date": "2025-12"}, {"month": "Jan", "negative": 13, "positive": 11, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 0, "month_date": "2025-03"}, {"month": "Apr", "value": 0, "month_date": "2025-04"}, {"month": "May", "value": 1, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 0, "month_date": "2025-08"}, {"month": "Sep", "value": 0, "month_date": "2025-09"}, {"month": "Oct", "value": 5, "month_date": "2025-10"}, {"month": "Nov", "value": 9, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 13, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 80}, {"color": "#8BC34A", "label": "4★", "value": 13}, {"color": "#FFC107", "label": "3★", "value": 8}, {"color": "#FF9800", "label": "2★", "value": 6}, {"color": "#F44336", "label": "1★", "value": 18}]}, "strengths": [{"title": "Warmth of Staff", "percentage": 30.4, "top_quotes": ["Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesi..."], "risk_of_loss": "High turnover could diminish the friendly atmosphere; consider implementing a staff recognition program.", "mention_count": 38, "leverage_action": "Feature Žydrė in social media posts with highlights on her exceptional service. Create a 'Staff Spotlight' section on the website to recognize team members."}, {"title": "Safety Perception", "percentage": 18.4, "top_quotes": ["El mejor club gay en Vilnius . La noche de los Viernes me en..."], "risk_of_loss": "Inconsistent security presence may lead to safety concerns; ensure security staff is well-trained.", "mention_count": 23, "leverage_action": "Post weekly safety updates on Instagram to reassure patrons about security measures in place."}, {"title": "Quality of Offerings", "percentage": 15.2, "top_quotes": ["Amazing place, worth visiting! Cocktails are the best and at..."], "risk_of_loss": "Increase in competition could impact patronage; ensure unique offerings are consistently available.", "mention_count": 19, "leverage_action": "Create a monthly cocktail feature on the menu and promote through social channels to keep offerings fresh and appealing."}], "report_date": "January 2026", "generated_at": "2026-01-30T01:37:02.653620", "report_title": "Reputation Health Report: Soho Club", "review_count": 125, "action_matrix": [{"owner": "Manager", "action": "Implement respect training for all staff by end of this week: Schedule a training session and create a checklist for respectful service practices.", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★ based on complaint volume addressed", "success_metric": "'respect' mentions drop from 13/month to <5/month"}, {"owner": "Manager", "action": "Create a clear pricing menu to display at entrance within 2-4 weeks: Design and print pricing information for customers to see before entry.", "effort": "medium", "impact": "high", "deadline": "Week 4", "quadrant": "major_project", "expected_lift": "+0.2★ based on complaint volume addressed", "success_metric": "'price' mentions drop from 5/month to <2/month"}, {"owner": "Cleaning Crew Supervisor", "action": "Develop a cleaning checklist for all common areas by end of this week: Assign cleaning crew to check and clean every hour during peak times.", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.1★ based on complaint volume addressed", "success_metric": "'cleanliness' mentions drop from 7/month to <3/month"}, {"owner": "Marketing Coordinator", "action": "Post weekly safety updates on Instagram: Highlight security measures in place to reassure patrons.", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.1★ based on complaint volume addressed", "success_metric": "'safety' mentions remain stable at <5/month"}], "business_name": "Soho Club", "insight_count": 210, "tracking_kpis": [{"metric": "Respect Complaints", "measurement": "Count reviews mentioning 'respect', 'staff interaction', 'service'", "current_value": "13/month", "target_30_day": "< 5/month", "target_60_day": "< 3/month", "target_90_day": "< 1/month"}, {"metric": "Pricing Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'fee'", "current_value": "5/month", "target_30_day": "< 2/month", "target_60_day": "< 1/month", "target_90_day": "< 1/month"}, {"metric": "Cleanliness Complaints", "measurement": "Count reviews mentioning 'clean', 'dirty', 'messy'", "current_value": "7/month", "target_30_day": "< 3/month", "target_60_day": "< 1/month", "target_90_day": "< 1/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "3.7★", "target_30_day": "3.9★", "target_60_day": "4.0★", "target_90_day": "4.2★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "red", "score": 6, "trend": "declining", "complaint_count": 13}, {"name": "Value & Pricing", "color": "red", "score": 3, "trend": "declining", "complaint_count": 5}, {"name": "Facility & Cleanliness", "color": "yellow", "score": 5, "trend": "stable", "complaint_count": 7}, {"name": "Experience & Journey", "color": "red", "score": 4, "trend": "declining", "complaint_count": 4}], "overall_risk": "high", "highest_risk_area": "Respect and Value Perception", "immediate_attention": "47 complaints in the last 90 days highlight respect and pricing issues."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Respect and Staff Interaction", "effort": "quick_win", "evidence": ["At first everything seemed kinda okay, although, we missed the smile on staff’s faces.", "Bet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės."], "solution": "Implement respect training for all staff: (1) Schedule a training session for all personnel by end of this week; (2) Create a checklist of respectful service practices for staff to follow; (3) Verify through customer feedback post-training. Quote 'we missed the smile on staff’s faces' shows this fixes customer interaction issues.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Lack of respect in interactions with staff leads to negative experiences.", "revenue_impact": "€2,600/month (estimated 100 lost customers × €26 average transaction)", "complaint_count": 13}, {"rank": 2, "title": "Pricing Transparency", "effort": "moderate", "evidence": ["I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances...", "La estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato."], "solution": "Review pricing strategy: (1) Create a clear pricing menu to display at entrance and on the website; (2) Train staff to explain pricing tiers clearly at the door; (3) Monitor customer feedback regarding pricing clarity. Quote 'La estrada cuesta 6€' indicates this fixes confusion over costs.", "timeline": "2-4 weeks", "urt_code": "P2.01", "root_cause": "Unclear pricing strategy leads to customer frustration regarding entrance fees and drink prices.", "revenue_impact": "€900/month (estimated 35 lost customers × €25 average transaction)", "complaint_count": 5}, {"rank": 3, "title": "Cleanliness and Maintenance", "effort": "quick_win", "evidence": ["Apvemta salė, stiklai. Niekas nieko netvarko.", "The bathroom was also just wet like someone had just covered every surface in water?"], "solution": "Increase cleaning frequency: (1) Develop a cleaning checklist and schedule for bathrooms and common areas; (2) Assign cleaning crew to check and clean every hour during peak times; (3) Verify cleanliness through customer feedback. Quote 'The bathroom was also just wet' highlights the need for immediate cleaning improvements.", "timeline": "1 week", "urt_code": "P3.01", "root_cause": "Inconsistent cleaning practices lead to dissatisfaction with the environment.", "revenue_impact": "€1,500/month (estimated 60 lost customers × €25 average transaction)", "complaint_count": 7}], "executive_summary": {"momentum": "declining", "one_liner": "Positive atmosphere overshadowed by respect and pricing issues.", "rating_gap": 0.29000000000000004, "key_insight": "41 customers expressed dissatisfaction with respect and pricing - immediate action required.", "health_label": "Needs Attention", "health_score": 48, "current_rating": 3.71, "momentum_detail": "Complaints up 1350% vs prior 3 months", "potential_rating": 4.0, "estimated_revenue_at_risk": "€3,500/month"}} 78ffc658-5f14-49d4-a5b2-4871107c511a reviewiq 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {synthesize} {synthesize} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 14:36:51.888785+00 2026-01-30 14:37:32.636328+00 2026-01-30 14:36:51.888785+00 {"synthesize": {"error": "'ReportSynthesis' object has no attribute 'actions'", "success": false, "records_in": 0, "duration_ms": 40645, "records_out": 0}} 40724 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 22}, {"color": "#FB8C00", "label": "Safety", "value": 21}, {"color": "#FDD835", "label": "Price Level", "value": 18}, {"color": "#43A047", "label": "Overall Satisfaction", "value": 11}, {"color": "#9E9E9E", "label": "Durability", "value": 11}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.62}, "rating_trend": [{"month": "Mar", "value": 4.08, "month_date": "2025-03"}, {"month": "Apr", "value": 3.5, "month_date": "2025-04"}, {"month": "May", "value": 5.0, "month_date": "2025-05"}, {"month": "Jun", "value": 4.71, "month_date": "2025-06"}, {"month": "Jul", "value": 4.87, "month_date": "2025-07"}, {"month": "Aug", "value": 3.03, "month_date": "2025-08"}, {"month": "Sep", "value": 4.32, "month_date": "2025-09"}, {"month": "Oct", "value": 4.67, "month_date": "2025-10"}, {"month": "Nov", "value": 4.94, "month_date": "2025-11"}, {"month": "Dec", "value": 4.28, "month_date": "2025-12"}, {"month": "Jan", "value": 4.44, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 1816}, {"color": "#F44336", "label": "Negative", "value": 228}, {"color": "#9E9E9E", "label": "Neutral", "value": 66}], "momentum_trend": [{"month": "Mar", "negative": 8, "positive": 31, "month_date": "2025-03"}, {"month": "Apr", "negative": 2, "positive": 12, "month_date": "2025-04"}, {"month": "May", "negative": 0, "positive": 20, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 12, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 28, "month_date": "2025-07"}, {"month": "Aug", "negative": 18, "positive": 18, "month_date": "2025-08"}, {"month": "Sep", "negative": 12, "positive": 58, "month_date": "2025-09"}, {"month": "Oct", "negative": 4, "positive": 41, "month_date": "2025-10"}, {"month": "Nov", "negative": 0, "positive": 17, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 13, "month_date": "2025-12"}, {"month": "Jan", "negative": 22, "positive": 133, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 8, "month_date": "2025-03"}, {"month": "Apr", "value": 2, "month_date": "2025-04"}, {"month": "May", "value": 0, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 18, "month_date": "2025-08"}, {"month": "Sep", "value": 12, "month_date": "2025-09"}, {"month": "Oct", "value": 4, "month_date": "2025-10"}, {"month": "Nov", "value": 0, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 22, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 873}, {"color": "#8BC34A", "label": "4★", "value": 169}, {"color": "#FFC107", "label": "3★", "value": 37}, {"color": "#FF9800", "label": "2★", "value": 8}, {"color": "#F44336", "label": "1★", "value": 41}]}, "strengths": [{"title": "Overall Satisfaction", "percentage": 25.4, "top_quotes": ["10/10 buenísima experiencia y me lo he pasado pipa...", "A mis hijos les encanta!! Vamos cada semana."], "risk_of_loss": "Complacency could erode this; ensure continuous engagement with satisfied customers.", "mention_count": 287, "leverage_action": "Feature customer testimonials on the website and social media: 'Hear what our guests are saying about their amazing experiences at ClickRent!'."}, {"title": "Warmth of Staff", "percentage": 21.4, "top_quotes": ["La atención por parte de Roberta y su hija es estu...", "trato inmejorable por parte del personal"], "risk_of_loss": "Staff turnover could diminish this strength; implement a staff recognition program.", "mention_count": 242, "leverage_action": "Highlight Roberta and Roberto in monthly newsletters: 'Meet Roberta and Roberto, the stars of our customer service team!'."}, {"title": "Performance Level of Karts", "percentage": 19.9, "top_quotes": ["+1 star: Because the 400cc carts are INSANE!..."], "risk_of_loss": "Neglect in maintenance could impact performance; schedule regular performance reviews for karts.", "mention_count": 224, "leverage_action": "Post weekly updates on kart performance and maintenance on social media to assure customers of quality."}], "report_date": "January 2026", "generated_at": "2026-01-30T14:37:32.613678", "report_title": "Reputation Health Report: ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "review_count": 1128, "action_matrix": [], "business_name": "ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "insight_count": 2130, "tracking_kpis": [], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 22}, {"name": "Safety & Environment", "color": "yellow", "score": 5, "trend": "stable", "complaint_count": 21}, {"name": "Value & Pricing", "color": "red", "score": 4, "trend": "declining", "complaint_count": 18}, {"name": "Overall Satisfaction", "color": "green", "score": 8, "trend": "stable", "complaint_count": 11}], "overall_risk": "medium", "highest_risk_area": "Respect from Staff", "immediate_attention": "Respect training for staff is crucial - 22 complaints in the last 90 days"}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Staff Respect", "effort": "quick_win", "evidence": ["El trato de las trabajadoras hacia los clientes ha sido nefasto", "Gente grosera y maleducada"], "solution": "Implement respect training for all staff: (1) Schedule a training session on customer service for all staff by next week, (2) Create a respect customer service script to guide interactions, (3) Conduct a follow-up survey to assess improvements. Quote 'El trato de las trabajadoras hacia los clientes ha sido nefasto' shows this fixes customer respect complaints.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Inadequate training on customer respect and communication.", "revenue_impact": "€1,320/month (estimated 20 lost customers × €66 avg transaction)", "complaint_count": 22}, {"rank": 2, "title": "Safety Issues", "effort": "moderate", "evidence": ["Just get in kart and go", "el deposito de gasolina esta entre las piernas al descubierto"], "solution": "Conduct safety audits of go-kart operations: (1) Hire a safety consultant to perform an audit by the end of the week, (2) Develop a safety briefing for customers before they start their race, (3) Implement a safety checklist for staff to follow before each rental. Quote 'Just get in kart and go' indicates the need for better safety measures.", "timeline": "2-4 weeks", "urt_code": "P2.02", "root_cause": "Lack of safety audits and inadequate communication about safety protocols.", "revenue_impact": "€1,260/month (estimated 18 lost customers × €70 avg transaction)", "complaint_count": 21}, {"rank": 3, "title": "Pricing Concerns", "effort": "strategic", "evidence": ["El precio es algo excesivo", "Honnêtement je met 1 étoile 18 euros les 8 minutes"], "solution": "Review pricing strategy and introduce value tiers: (1) Conduct a market analysis within two weeks to compare prices with competitors, (2) Develop a tiered pricing model that offers clear value for different customer segments, (3) Communicate these changes to customers through social media and email. Quote 'El precio es algo excesivo' shows this fixes pricing complaints.", "timeline": "1-2 months", "urt_code": "P3.03", "root_cause": "Perceived high pricing without clear value communication.", "revenue_impact": "€1,080/month (estimated 15 lost customers × €72 avg transaction)", "complaint_count": 18}], "executive_summary": {"momentum": "improving", "one_liner": "Strong offerings and staff warmth offset respect and safety issues.", "rating_gap": 0.04999999999999982, "key_insight": "22 customers expressed concerns about staff respect - addressing this can improve retention.", "health_label": "Stable", "health_score": 68, "current_rating": 4.55, "momentum_detail": "Complaints down 24% vs prior 3 months", "potential_rating": 4.6, "estimated_revenue_at_risk": "€3,600/month"}} d196f180-5192-41a6-a103-d8f9a148c04e reviewiq 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {synthesize} {synthesize} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 15:03:07.993513+00 2026-01-30 15:03:57.70351+00 2026-01-30 15:03:07.993513+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 49599, "records_out": 0}} 49613 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 22}, {"color": "#FB8C00", "label": "Safety", "value": 21}, {"color": "#FDD835", "label": "Price Level", "value": 18}, {"color": "#43A047", "label": "Overall Satisfaction", "value": 11}, {"color": "#9E9E9E", "label": "Durability", "value": 11}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.62}, "rating_trend": [{"month": "Mar", "value": 4.08, "month_date": "2025-03"}, {"month": "Apr", "value": 3.5, "month_date": "2025-04"}, {"month": "May", "value": 5.0, "month_date": "2025-05"}, {"month": "Jun", "value": 4.71, "month_date": "2025-06"}, {"month": "Jul", "value": 4.87, "month_date": "2025-07"}, {"month": "Aug", "value": 3.03, "month_date": "2025-08"}, {"month": "Sep", "value": 4.32, "month_date": "2025-09"}, {"month": "Oct", "value": 4.67, "month_date": "2025-10"}, {"month": "Nov", "value": 4.94, "month_date": "2025-11"}, {"month": "Dec", "value": 4.28, "month_date": "2025-12"}, {"month": "Jan", "value": 4.44, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 1816}, {"color": "#F44336", "label": "Negative", "value": 228}, {"color": "#9E9E9E", "label": "Neutral", "value": 66}], "momentum_trend": [{"month": "Mar", "negative": 8, "positive": 31, "month_date": "2025-03"}, {"month": "Apr", "negative": 2, "positive": 12, "month_date": "2025-04"}, {"month": "May", "negative": 0, "positive": 20, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 12, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 28, "month_date": "2025-07"}, {"month": "Aug", "negative": 18, "positive": 18, "month_date": "2025-08"}, {"month": "Sep", "negative": 12, "positive": 58, "month_date": "2025-09"}, {"month": "Oct", "negative": 4, "positive": 41, "month_date": "2025-10"}, {"month": "Nov", "negative": 0, "positive": 17, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 13, "month_date": "2025-12"}, {"month": "Jan", "negative": 22, "positive": 133, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 8, "month_date": "2025-03"}, {"month": "Apr", "value": 2, "month_date": "2025-04"}, {"month": "May", "value": 0, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 18, "month_date": "2025-08"}, {"month": "Sep", "value": 12, "month_date": "2025-09"}, {"month": "Oct", "value": 4, "month_date": "2025-10"}, {"month": "Nov", "value": 0, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 22, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 873}, {"color": "#8BC34A", "label": "4★", "value": 169}, {"color": "#FFC107", "label": "3★", "value": 37}, {"color": "#FF9800", "label": "2★", "value": 8}, {"color": "#F44336", "label": "1★", "value": 41}]}, "strengths": [{"title": "Overall Satisfaction", "percentage": 25.4, "top_quotes": ["'10/10 buenísima experiencia y me lo he pasado pipa...'", "'A mis hijos les encanta!! Vamos cada semana.'"], "risk_of_loss": "Negative experiences could overshadow positive feedback if not addressed. Monitor customer sentiment closely.", "mention_count": 287, "leverage_action": "Highlight customer satisfaction in marketing materials: Create a monthly spotlight on positive experiences shared by customers on social media platforms like Instagram and Facebook."}, {"title": "Warmth of Staff", "percentage": 21.5, "top_quotes": ["'La atención por parte de Roberta y su hija es estu...'", "'Trato inmejorable por parte del personal.'"], "risk_of_loss": "Potential turnover of staff may reduce this strength; consider implementing a recognition program for staff.", "mention_count": 242, "leverage_action": "Feature Roberta and other staff in a 'Meet Our Team' section on the website and in Google Business posts to promote their excellent service."}, {"title": "Performance Level of Karts", "percentage": 19.8, "top_quotes": ["'+1 star: Because the 400cc carts are INSANE!'"], "risk_of_loss": "Failure to maintain karts could lead to declining performance satisfaction; ensure regular maintenance schedules.", "mention_count": 224, "leverage_action": "Post updates about kart performance improvements on social media and encourage customers to share their experiences with the karts."}], "report_date": "January 2026", "generated_at": "2026-01-30T15:03:57.581443", "report_title": "Reputation Health Report: ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "review_count": 1128, "action_matrix": [{"owner": "Manager", "action": "Schedule respect training for all staff this week: Organize a training session with a focus on customer interaction and respect protocols.", "effort": "medium", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★ based on respect complaints addressed", "success_metric": "'respect' mentions drop from 22/month to <10/month"}, {"owner": "Operations Manager", "action": "Conduct a safety audit within the next two weeks: Hire a safety consultant to assess the current safety measures and suggest improvements.", "effort": "medium", "impact": "high", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.3★ based on safety complaints addressed", "success_metric": "'safety' mentions drop from 21/month to <10/month"}, {"owner": "Finance Manager", "action": "Review and restructure pricing strategy within the next month: Analyze competitor pricing and develop tiered pricing options.", "effort": "high", "impact": "high", "deadline": "Month 2", "quadrant": "major_project", "expected_lift": "+0.4★ based on pricing complaints addressed", "success_metric": "'price' mentions drop from 18/month to <8/month"}, {"owner": "HR Manager", "action": "Implement a recognition program for staff: Set up a monthly recognition award for staff who deliver exceptional service.", "effort": "low", "impact": "medium", "deadline": "Week 2", "quadrant": "quick_win", "expected_lift": "+0.1★ by enhancing staff motivation", "success_metric": "'staff recognition' mentions increase from 0 to >5/month"}, {"owner": "Marketing Manager", "action": "Create a 'Meet Our Team' section on the website: Feature staff members who receive positive feedback to highlight their contributions.", "effort": "low", "impact": "medium", "deadline": "Week 2", "quadrant": "quick_win", "expected_lift": "+0.1★ by enhancing staff visibility", "success_metric": "'staff' mentions increase from 0 to >5/month"}], "business_name": "ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "insight_count": 2130, "tracking_kpis": [{"metric": "Respect Complaints", "measurement": "Count reviews mentioning 'respect', 'staff behavior', 'customer treatment'", "current_value": "22/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Safety Complaints", "measurement": "Count reviews mentioning 'safety', 'hazard', 'risk'", "current_value": "21/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Price/Cost Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'fee'", "current_value": "18/month", "target_30_day": "< 8/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "4.5★", "target_30_day": "4.6★", "target_60_day": "4.7★", "target_90_day": "4.8★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "yellow", "score": 7, "trend": "stable", "complaint_count": 22}, {"name": "Safety & Environment", "color": "red", "score": 5, "trend": "declining", "complaint_count": 21}, {"name": "Value & Pricing", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 18}, {"name": "Offering & Durability", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 11}], "overall_risk": "medium", "highest_risk_area": "Respect and Safety", "immediate_attention": "22 complaints regarding disrespectful staff and 21 regarding safety issues require immediate action."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Respect towards customers during service interactions", "effort": "moderate", "evidence": ["'El trato de las trabajadoras hacia los clientes ha sido nefasto'", "'Gente grosera y maleducada'"], "solution": "Implement respect training for all staff: (1) Schedule a training session for all staff by the end of the week, (2) Develop a respect-focused customer service manual, (3) Monitor customer feedback weekly to assess improvements. Quote 'El trato de las trabajadoras hacia los clientes ha sido nefasto' indicates this fixes the negative perception of staff behavior.", "timeline": "1-2 weeks", "urt_code": "P1.01", "root_cause": "Lack of staff training in customer service and respect protocols.", "revenue_impact": "€3,300/month (estimated 100 lost customers × €33 avg transaction)", "complaint_count": 22}, {"rank": 2, "title": "Safety concerns regarding kart operations", "effort": "moderate", "evidence": ["'Al iluminado lo vimos en la siguiente carrera que acabó Segundo y todo el rato mosqueado.'", "'Corriendo con el 2° Kart mas rápido del lugar. El deposito de gasolina esta entre las piernas al descubierto.'"], "solution": "Conduct safety audits and implement mandatory pre-race briefings: (1) Hire a safety consultant to perform an audit in the next two weeks, (2) Develop a standard operating procedure for safety briefings before each race, (3) Train staff to deliver these briefings consistently. Quote 'Just get in kart and go' shows the need for structured safety measures.", "timeline": "2-4 weeks", "urt_code": "P2.01", "root_cause": "Inadequate safety protocols and lack of pre-race safety briefings.", "revenue_impact": "€1,200/month (estimated 40 lost customers × €30 avg transaction)", "complaint_count": 21}, {"rank": 3, "title": "Pricing perceptions and value offered", "effort": "strategic", "evidence": ["'A bit expensive, so it is a rare pleasure :D'", "'El precio es algo excesivo'"], "solution": "Review pricing strategy and introduce tiered pricing options: (1) Analyze competitor pricing within the next month, (2) Develop three distinct pricing tiers based on service levels, (3) Communicate the new pricing structure clearly on the website and at the venue. Quote 'El precio es algo excesivo' indicates that customers feel they are not getting good value.", "timeline": "1-2 months", "urt_code": "P3.01", "root_cause": "Lack of transparent pricing and perceived value for the service provided.", "revenue_impact": "€900/month (estimated 30 lost customers × €30 avg transaction)", "complaint_count": 18}], "executive_summary": {"momentum": "improving", "one_liner": "Strong performance overshadowed by respect and safety concerns.", "rating_gap": -0.25, "key_insight": "22 complaints about respect indicate a critical area of improvement that could enhance customer retention.", "health_label": "Stable", "health_score": 70, "current_rating": 4.55, "momentum_detail": "Complaints down 24% vs prior 3 months", "potential_rating": 4.3, "estimated_revenue_at_risk": "€4,500/month"}} c2b451ba-7f4c-4016-9089-0b7b1e42eba0 reviewiq 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {synthesize} {synthesize} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 15:11:24.294581+00 2026-01-30 15:12:08.310494+00 2026-01-30 15:11:24.294581+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 43986, "records_out": 0}} 44001 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 22}, {"color": "#FB8C00", "label": "Safety", "value": 21}, {"color": "#FDD835", "label": "Price Level", "value": 18}, {"color": "#43A047", "label": "Overall Satisfaction", "value": 11}, {"color": "#9E9E9E", "label": "Durability", "value": 11}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.62}, "rating_trend": [{"month": "Mar", "value": 4.08, "month_date": "2025-03"}, {"month": "Apr", "value": 3.5, "month_date": "2025-04"}, {"month": "May", "value": 5.0, "month_date": "2025-05"}, {"month": "Jun", "value": 4.71, "month_date": "2025-06"}, {"month": "Jul", "value": 4.87, "month_date": "2025-07"}, {"month": "Aug", "value": 3.03, "month_date": "2025-08"}, {"month": "Sep", "value": 4.32, "month_date": "2025-09"}, {"month": "Oct", "value": 4.67, "month_date": "2025-10"}, {"month": "Nov", "value": 4.94, "month_date": "2025-11"}, {"month": "Dec", "value": 4.28, "month_date": "2025-12"}, {"month": "Jan", "value": 4.44, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 1816}, {"color": "#F44336", "label": "Negative", "value": 228}, {"color": "#9E9E9E", "label": "Neutral", "value": 66}], "momentum_trend": [{"month": "Mar", "negative": 8, "positive": 31, "month_date": "2025-03"}, {"month": "Apr", "negative": 2, "positive": 12, "month_date": "2025-04"}, {"month": "May", "negative": 0, "positive": 20, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 12, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 28, "month_date": "2025-07"}, {"month": "Aug", "negative": 18, "positive": 18, "month_date": "2025-08"}, {"month": "Sep", "negative": 12, "positive": 58, "month_date": "2025-09"}, {"month": "Oct", "negative": 4, "positive": 41, "month_date": "2025-10"}, {"month": "Nov", "negative": 0, "positive": 17, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 13, "month_date": "2025-12"}, {"month": "Jan", "negative": 22, "positive": 133, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 8, "month_date": "2025-03"}, {"month": "Apr", "value": 2, "month_date": "2025-04"}, {"month": "May", "value": 0, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 18, "month_date": "2025-08"}, {"month": "Sep", "value": 12, "month_date": "2025-09"}, {"month": "Oct", "value": 4, "month_date": "2025-10"}, {"month": "Nov", "value": 0, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 22, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 873}, {"color": "#8BC34A", "label": "4★", "value": 169}, {"color": "#FFC107", "label": "3★", "value": 37}, {"color": "#FF9800", "label": "2★", "value": 8}, {"color": "#F44336", "label": "1★", "value": 41}]}, "strengths": [{"title": "Overall Customer Satisfaction", "percentage": 25.4, "top_quotes": ["10/10 buenísima experiencia y me lo he pasado pipa..."], "risk_of_loss": "Rising complaints could erode this; maintain service quality.", "mention_count": 287, "leverage_action": "Highlight positive experiences in marketing: Use Google Business posts to share quotes like '10/10 buenísima experiencia' and promote weekly deals to attract repeat customers."}, {"title": "Warm Staff Interactions", "percentage": 21.5, "top_quotes": ["A mis hijos les encanta!! Vamos cada semana. La gente es ate..."], "risk_of_loss": "Negative staff interactions could tarnish this; ensure ongoing training.", "mention_count": 242, "leverage_action": "Feature positive staff interactions in social media campaigns: Share stories of warm staff experiences weekly on Instagram to reinforce positive image."}, {"title": "High Performance Karts", "percentage": 19.8, "top_quotes": ["+1 star: Because the 400cc carts are INSANE!..."], "risk_of_loss": "Maintenance issues could degrade performance; regular upkeep is essential.", "mention_count": 224, "leverage_action": "Create a maintenance schedule for karts: Post about maintenance checks and upgrades monthly on social media to assure customers of kart quality."}], "report_date": "January 2026", "generated_at": "2026-01-30T15:12:08.287876", "report_title": "Reputation Health Report: ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "review_count": 1128, "action_matrix": [{"owner": "Manager", "action": "Schedule a staff respect training session this week: Focus on customer interaction techniques and role-playing.", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.3★ based on respect complaints addressed", "success_metric": "'respect' mentions drop from 22/month to <10/month"}, {"owner": "Operations Manager", "action": "Implement pre-race safety briefings next week: Staff to outline safety protocols before each race.", "effort": "medium", "impact": "high", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.2★ based on safety complaints addressed", "success_metric": "'safety' mentions drop from 21/month to <10/month"}, {"owner": "Financial Analyst", "action": "Conduct a pricing review this week: Analyze current pricing vs competition and consider tiered offerings.", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.1★ based on pricing complaints addressed", "success_metric": "'price' mentions drop from 18/month to <10/month"}, {"owner": "Maintenance Supervisor", "action": "Create a monthly maintenance schedule for karts: Ensure all karts are regularly maintained for performance.", "effort": "medium", "impact": "high", "deadline": "Month 2", "quadrant": "major_project", "expected_lift": "+0.3★ based on durability complaints addressed", "success_metric": "'durability' mentions drop from 11/month to <5/month"}], "business_name": "ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "insight_count": 2130, "tracking_kpis": [{"metric": "Respect Complaints", "measurement": "Count reviews mentioning 'respect', 'staff', 'rude'", "current_value": "22/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 1/month"}, {"metric": "Safety Complaints", "measurement": "Count reviews mentioning 'safety', 'hazard', 'danger'", "current_value": "21/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 1/month"}, {"metric": "Price Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'expensive'", "current_value": "18/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "4.5★", "target_30_day": "4.6★", "target_60_day": "4.7★", "target_90_day": "4.8★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "yellow", "score": 5, "trend": "stable", "complaint_count": 22}, {"name": "Safety & Environment", "color": "yellow", "score": 4, "trend": "improving", "complaint_count": 21}, {"name": "Value & Pricing", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 18}, {"name": "Offering & Durability", "color": "green", "score": 7, "trend": "stable", "complaint_count": 11}], "overall_risk": "low", "highest_risk_area": "Respect and Safety", "immediate_attention": "Respect and safety training is crucial - 22 and 21 complaints respectively."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Staff Disrespect", "effort": "quick_win", "evidence": ["El trato de las trabajadoras hacia los clientes ha sido nefasto", "Gente grosera y maleducada"], "solution": "Implement respect training for staff: (1) Schedule a training session for all staff this week, (2) Use role-playing scenarios to practice respectful interactions, (3) Review feedback and adjust training as needed. Quote 'El trato de las trabajadoras hacia los clientes ha sido nefasto' shows this fixes the disrespect issue.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Staff lack proper training in customer interaction and respect.", "revenue_impact": "€2,200/month (estimated 30 lost customers × €73 avg transaction)", "complaint_count": 22}, {"rank": 2, "title": "Safety Concerns", "effort": "moderate", "evidence": ["thou no pre safety talks like uk... Just get in kart and go", "Corriendo con el 2° Kart mas rápido del lugar."], "solution": "Conduct safety audits and implement pre-race briefings: (1) Schedule safety audits by next week, (2) Develop a short safety briefing for customers before each race, (3) Ensure staff are trained to deliver these briefings effectively. Quote 'thou no pre safety talks like uk... Just get in kart and go' shows this fixes the safety concerns.", "timeline": "2-4 weeks", "urt_code": "P1.02", "root_cause": "Lack of safety protocols and briefings for customers.", "revenue_impact": "€1,800/month (estimated 25 lost customers × €72 avg transaction)", "complaint_count": 21}, {"rank": 3, "title": "High Pricing Perception", "effort": "strategic", "evidence": ["El precio es algo excesivo", "Honnêtement je met 1 étoile 18 euros les 8 minutes"], "solution": "Review pricing strategy and introduce value tiers: (1) Conduct a price sensitivity analysis this week, (2) Introduce tiered pricing for different kart experiences by next month, (3) Monitor customer feedback on pricing perceptions. Quote 'El precio es algo excesivo' shows this fixes the pricing perception issue.", "timeline": "1-2 months", "urt_code": "P1.03", "root_cause": "Customers perceive prices as high without perceived value.", "revenue_impact": "€1,500/month (estimated 20 lost customers × €75 avg transaction)", "complaint_count": 18}], "executive_summary": {"momentum": "improving", "one_liner": "Strong overall satisfaction overshadowed by respect and safety issues.", "rating_gap": 0.04999999999999982, "key_insight": "22 complaints about staff disrespect indicate a need for immediate training to maintain positive experiences.", "health_label": "Stable", "health_score": 69, "current_rating": 4.55, "momentum_detail": "Complaints down 24% vs prior 3 months", "potential_rating": 4.6, "estimated_revenue_at_risk": "€4,500/month"}} 1b261f3a-bf80-4b9e-ac60-0fa1af8e202a reviewiq 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {synthesize} {synthesize} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 15:27:04.117192+00 2026-01-30 15:27:51.57791+00 2026-01-30 15:27:04.117192+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 47432, "records_out": 0}} 47448 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 22}, {"color": "#FB8C00", "label": "Safety", "value": 21}, {"color": "#FDD835", "label": "Price Level", "value": 18}, {"color": "#43A047", "label": "Overall Satisfaction", "value": 11}, {"color": "#9E9E9E", "label": "Durability", "value": 11}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.62}, "rating_trend": [{"month": "Mar", "value": 4.08, "month_date": "2025-03"}, {"month": "Apr", "value": 3.5, "month_date": "2025-04"}, {"month": "May", "value": 5.0, "month_date": "2025-05"}, {"month": "Jun", "value": 4.71, "month_date": "2025-06"}, {"month": "Jul", "value": 4.87, "month_date": "2025-07"}, {"month": "Aug", "value": 3.03, "month_date": "2025-08"}, {"month": "Sep", "value": 4.32, "month_date": "2025-09"}, {"month": "Oct", "value": 4.67, "month_date": "2025-10"}, {"month": "Nov", "value": 4.94, "month_date": "2025-11"}, {"month": "Dec", "value": 4.28, "month_date": "2025-12"}, {"month": "Jan", "value": 4.44, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 1816}, {"color": "#F44336", "label": "Negative", "value": 228}, {"color": "#9E9E9E", "label": "Neutral", "value": 66}], "momentum_trend": [{"month": "Mar", "negative": 8, "positive": 31, "month_date": "2025-03"}, {"month": "Apr", "negative": 2, "positive": 12, "month_date": "2025-04"}, {"month": "May", "negative": 0, "positive": 20, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 12, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 28, "month_date": "2025-07"}, {"month": "Aug", "negative": 18, "positive": 18, "month_date": "2025-08"}, {"month": "Sep", "negative": 12, "positive": 58, "month_date": "2025-09"}, {"month": "Oct", "negative": 4, "positive": 41, "month_date": "2025-10"}, {"month": "Nov", "negative": 0, "positive": 17, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 13, "month_date": "2025-12"}, {"month": "Jan", "negative": 22, "positive": 133, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 8, "month_date": "2025-03"}, {"month": "Apr", "value": 2, "month_date": "2025-04"}, {"month": "May", "value": 0, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 18, "month_date": "2025-08"}, {"month": "Sep", "value": 12, "month_date": "2025-09"}, {"month": "Oct", "value": 4, "month_date": "2025-10"}, {"month": "Nov", "value": 0, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 22, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 873}, {"color": "#8BC34A", "label": "4★", "value": 169}, {"color": "#FFC107", "label": "3★", "value": 37}, {"color": "#FF9800", "label": "2★", "value": 8}, {"color": "#F44336", "label": "1★", "value": 41}]}, "strengths": [{"title": "Overall Satisfaction", "percentage": 25.4, "top_quotes": ["10/10 buenísima experiencia y me lo he pasado pipa...", "A mis hijos les encanta!! Vamos cada semana."], "risk_of_loss": "Complacency from strong satisfaction may lead to neglecting ongoing improvements.", "mention_count": 287, "leverage_action": "Feature positive experiences in social media: 'Join the fun - our customers love their karting adventures!' Highlight quotes in posts."}, {"title": "Warmth and Friendliness of Staff", "percentage": 21.4, "top_quotes": ["La atención por parte de Roberta y su hija es estu...", "y trato inmejorable por parte del personal,sobre t..."], "risk_of_loss": "Negative staff interactions could erode this strength quickly.", "mention_count": 242, "leverage_action": "Utilize Roberta's positive mentions in marketing: 'Meet Roberta, one of our friendly staff members who make karting enjoyable!' Use in Google Business posts."}, {"title": "Performance Level of Karts", "percentage": 19.8, "top_quotes": ["+1 star: Because the 400cc carts are INSANE!...", "Corriendo con el 2° Kart mas rápido del lugar."], "risk_of_loss": "Failure to maintain karts could lead to negative experiences.", "mention_count": 224, "leverage_action": "Promote high-performance karts in targeted ads: 'Experience the thrill of our 400cc karts!' Highlight performance in promotional materials."}], "report_date": "January 2026", "generated_at": "2026-01-30T15:27:51.563979", "report_title": "Reputation Health Report: Go Karts Mar Menor", "review_count": 1128, "action_matrix": [{"owner": "Manager", "action": "Implement respect training for staff next week: Schedule a 2-hour session for all staff and create a daily checklist for respectful behavior.", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★ based on respect complaint volume addressed", "success_metric": "'respect' mentions drop from 22/month to <10/month"}, {"owner": "Operations", "action": "Conduct mandatory safety briefings before karting sessions: Start next week and visually display safety protocols at the entrance.", "effort": "medium", "impact": "high", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.3★ based on safety complaint volume addressed", "success_metric": "'safety' mentions drop from 21/month to <10/month"}, {"owner": "Manager", "action": "Review pricing strategy by next week: Assess competitor prices and introduce discount packages for multiple races.", "effort": "medium", "impact": "medium", "deadline": "Month 2", "quadrant": "major_project", "expected_lift": "+0.2★ based on value complaint volume addressed", "success_metric": "'price' mentions drop from 18/month to <10/month"}, {"owner": "Marketing", "action": "Promote positive customer experiences via social media weekly: Highlight positive quotes and staff members in posts.", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.1★ based on positive sentiment", "success_metric": "'experience' mentions increase by 15%"}, {"owner": "Operations", "action": "Implement monthly audits of kart condition: Schedule and document findings to ensure safety and performance.", "effort": "medium", "impact": "high", "deadline": "Month 1", "quadrant": "major_project", "expected_lift": "+0.3★ based on durability complaint volume addressed", "success_metric": "'durability' mentions drop from 11/month to <5/month"}], "business_name": "Go Karts Mar Menor", "insight_count": 2130, "tracking_kpis": [{"metric": "Respect Complaints", "measurement": "Count reviews mentioning 'respect', 'rude', 'disrespectful'", "current_value": "22/month", "target_30_day": "< 15/month", "target_60_day": "< 10/month", "target_90_day": "< 5/month"}, {"metric": "Safety Complaints", "measurement": "Count reviews mentioning 'safety', 'dangerous', 'hazard'", "current_value": "21/month", "target_30_day": "< 15/month", "target_60_day": "< 10/month", "target_90_day": "< 5/month"}, {"metric": "Price Complaints", "measurement": "Count reviews mentioning 'price', 'expensive', 'overpriced'", "current_value": "18/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "4.5★", "target_30_day": "4.6★", "target_60_day": "4.7★", "target_90_day": "4.8★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 22}, {"name": "Safety & Environment", "color": "red", "score": 4, "trend": "declining", "complaint_count": 21}, {"name": "Value & Pricing", "color": "yellow", "score": 5, "trend": "stable", "complaint_count": 18}, {"name": "Overall Experience", "color": "yellow", "score": 7, "trend": "improving", "complaint_count": 11}], "overall_risk": "medium", "highest_risk_area": "Respect and Safety", "immediate_attention": "22 complaints regarding staff respect must be addressed - immediate training needed."}, "analysis_period": "Last 12 months", "critical_issues": [{"rank": 1, "title": "Staff Disrespect at Kart Track", "effort": "quick_win", "evidence": ["El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los kar...", "El trato de las trabajadoras hacia los clientes ha sido nefasto"], "solution": "Implement respect training for staff: (1) Schedule a 2-hour training session for all staff on respect and customer interaction by next week, (2) Establish a daily checklist for staff to remind them of respectful interactions, (3) Monitor feedback for improvement every week. Quote 'El trato de las trabajadoras hacia los clientes ha sido nefasto' indicates this fixes customer dissatisfaction.", "timeline": "1 week", "urt_code": "P1.01", "root_cause": "Lack of respect training and immediate complaint resolution protocols.", "revenue_impact": "€1,320/month (estimated 40 lost customers × €33 avg transaction)", "complaint_count": 22}, {"rank": 2, "title": "Safety Concerns on Karting Experience", "effort": "moderate", "evidence": ["....thou no pre safety talks like uk... Just get in kart and go", "Corriendo con el 2° Kart mas rápido del lugar. El deposito de gasolina esta entre las piernas al descubierto"], "solution": "Conduct safety audits and briefings: (1) Implement a mandatory 10-minute safety briefing for all customers before karting starting next week, (2) Conduct a safety audit of all karts and tracks every month, (3) Create a visible safety checklist at the entrance. Quote '....thou no pre safety talks like uk... Just get in kart and go' shows this fixes safety concerns.", "timeline": "2-4 weeks", "urt_code": "P1.02", "root_cause": "Lack of safety protocols and briefings before karting sessions.", "revenue_impact": "€1,260/month (estimated 30 lost customers × €42 avg transaction)", "complaint_count": 21}, {"rank": 3, "title": "Perceived High Pricing for Kart Experience", "effort": "strategic", "evidence": ["A bit expensive, so it is a rare pleasure :D", "El precio es algo excesivo"], "solution": "Review pricing strategy and introduce value tiers: (1) Assess current pricing structure and competitor pricing by the end of next week, (2) Introduce a discounted package for multiple races to offer better value by next month, (3) Promote these packages via social media and on-site signage. Quote 'El precio es algo excesivo' indicates this fixes customers' value perception.", "timeline": "1-2 months", "urt_code": "P1.03", "root_cause": "Customers feel the pricing does not match the experience quality.", "revenue_impact": "€720/month (estimated 20 lost customers × €36 avg transaction)", "complaint_count": 18}], "executive_summary": {"momentum": "improving", "one_liner": "Strong performance overshadowed by staff respect and safety concerns.", "rating_gap": 0.04999999999999982, "key_insight": "22 customers cited staff disrespect, impacting overall satisfaction and repeat visits.", "health_label": "Stable", "health_score": 72, "current_rating": 4.55, "momentum_detail": "Complaints down 24% vs prior 3 months", "potential_rating": 4.6, "estimated_revenue_at_risk": "€4,320/month"}} 7f587582-e868-43fb-b90f-22eee399f8ad reviewiq 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {synthesize} {synthesize} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["synthesize"], "business_id": null} {"success": true, "stages_run": ["synthesize"]} \N 2026-01-30 15:48:37.466036+00 2026-01-30 15:49:34.107903+00 2026-01-30 15:48:37.466036+00 {"synthesize": {"error": null, "success": true, "records_in": 0, "duration_ms": 56615, "records_out": 0}} 56629 {"charts": {"issues_pie": [{"color": "#E53935", "label": "Respect", "value": 22}, {"color": "#FB8C00", "label": "Safety", "value": 21}, {"color": "#FDD835", "label": "Price Level", "value": 18}, {"color": "#43A047", "label": "Overall Satisfaction", "value": 11}, {"color": "#9E9E9E", "label": "Durability", "value": 11}], "rating_gauge": {"max": 5.0, "min": 1.0, "target": 4.0, "current": 4.62}, "rating_trend": [{"month": "Mar", "value": 4.08, "month_date": "2025-03"}, {"month": "Apr", "value": 3.5, "month_date": "2025-04"}, {"month": "May", "value": 5.0, "month_date": "2025-05"}, {"month": "Jun", "value": 4.71, "month_date": "2025-06"}, {"month": "Jul", "value": 4.87, "month_date": "2025-07"}, {"month": "Aug", "value": 3.03, "month_date": "2025-08"}, {"month": "Sep", "value": 4.32, "month_date": "2025-09"}, {"month": "Oct", "value": 4.67, "month_date": "2025-10"}, {"month": "Nov", "value": 4.94, "month_date": "2025-11"}, {"month": "Dec", "value": 4.28, "month_date": "2025-12"}, {"month": "Jan", "value": 4.44, "month_date": "2026-01"}], "sentiment_pie": [{"color": "#4CAF50", "label": "Positive", "value": 1816}, {"color": "#F44336", "label": "Negative", "value": 228}, {"color": "#9E9E9E", "label": "Neutral", "value": 66}], "momentum_trend": [{"month": "Mar", "negative": 8, "positive": 31, "month_date": "2025-03"}, {"month": "Apr", "negative": 2, "positive": 12, "month_date": "2025-04"}, {"month": "May", "negative": 0, "positive": 20, "month_date": "2025-05"}, {"month": "Jun", "negative": 1, "positive": 12, "month_date": "2025-06"}, {"month": "Jul", "negative": 2, "positive": 28, "month_date": "2025-07"}, {"month": "Aug", "negative": 18, "positive": 18, "month_date": "2025-08"}, {"month": "Sep", "negative": 12, "positive": 58, "month_date": "2025-09"}, {"month": "Oct", "negative": 4, "positive": 41, "month_date": "2025-10"}, {"month": "Nov", "negative": 0, "positive": 17, "month_date": "2025-11"}, {"month": "Dec", "negative": 4, "positive": 13, "month_date": "2025-12"}, {"month": "Jan", "negative": 22, "positive": 133, "month_date": "2026-01"}], "complaints_trend": [{"month": "Mar", "value": 8, "month_date": "2025-03"}, {"month": "Apr", "value": 2, "month_date": "2025-04"}, {"month": "May", "value": 0, "month_date": "2025-05"}, {"month": "Jun", "value": 1, "month_date": "2025-06"}, {"month": "Jul", "value": 2, "month_date": "2025-07"}, {"month": "Aug", "value": 18, "month_date": "2025-08"}, {"month": "Sep", "value": 12, "month_date": "2025-09"}, {"month": "Oct", "value": 4, "month_date": "2025-10"}, {"month": "Nov", "value": 0, "month_date": "2025-11"}, {"month": "Dec", "value": 4, "month_date": "2025-12"}, {"month": "Jan", "value": 22, "month_date": "2026-01"}], "rating_distribution": [{"color": "#4CAF50", "label": "5★", "value": 873}, {"color": "#8BC34A", "label": "4★", "value": 169}, {"color": "#FFC107", "label": "3★", "value": 37}, {"color": "#FF9800", "label": "2★", "value": 8}, {"color": "#F44336", "label": "1★", "value": 41}]}, "strengths": [{"title": "Overall Satisfaction", "percentage": 25.4, "top_quotes": ["10/10 buenísima experiencia y me lo he pasado pipa...", "A mis hijos les encanta!! Vamos cada semana."], "risk_of_loss": "Negative experiences could overshadow positive feedback; ensure ongoing quality.", "mention_count": 287, "leverage_action": "Feature customer testimonials on social media: 'Here's what our customers say about their experience with Go Karts Mar Menor!'. Highlight direct quotes from satisfied customers to attract new visitors."}, {"title": "Warmth of Staff", "percentage": 21.5, "top_quotes": ["La atención por parte de Roberta y su hija es estu...", "y trato inmejorable por parte del personal,sobre t..."], "risk_of_loss": "Staff turnover could erode this; establish a recognition program.", "mention_count": 242, "leverage_action": "Create a 'Staff Spotlight' section on the website: Feature Roberta and other praised staff with photos and stories. Promote this via Facebook and Instagram."}, {"title": "Performance Level of Karts", "percentage": 19.9, "top_quotes": ["+1 star: Because the 400cc carts are INSANE!..."], "risk_of_loss": "Neglect in maintenance could lead to performance complaints; ensure regular checks.", "mention_count": 224, "leverage_action": "Post regular updates on kart performance and maintenance schedules: 'We keep our karts in top shape for your enjoyment!' on Google Business and social media."}], "report_date": "January 2026", "generated_at": "2026-01-30T15:49:34.085637", "report_title": "Reputation Health Report: Go Karts Mar Menor", "review_count": 1128, "action_matrix": [{"owner": "Manager", "action": "Implement respect training for all staff next week: Schedule a 2-hour training session focusing on customer interaction.", "effort": "low", "impact": "high", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.2★ based on reduction in respect-related complaints.", "success_metric": "'respect' mentions drop from 22/month to <10/month"}, {"owner": "Safety Officer", "action": "Conduct safety audits of karting procedures: Implement mandatory pre-race safety briefings for all customers before each racing session.", "effort": "medium", "impact": "high", "deadline": "Week 3", "quadrant": "major_project", "expected_lift": "+0.3★ based on reduction in safety-related complaints.", "success_metric": "'safety' mentions drop from 21/month to <10/month"}, {"owner": "Marketing Manager", "action": "Review pricing strategy: Conduct a customer survey on pricing perceptions within the next week.", "effort": "medium", "impact": "medium", "deadline": "Week 2", "quadrant": "major_project", "expected_lift": "+0.2★ based on improved pricing perception.", "success_metric": "'price' mentions drop from 18/month to <10/month"}, {"owner": "Web Manager", "action": "Create a 'Staff Spotlight' section on the website: Feature Roberta and other praised staff with photos and stories.", "effort": "low", "impact": "medium", "deadline": "Week 2", "quadrant": "quick_win", "expected_lift": "+0.1★ based on enhanced staff recognition.", "success_metric": "'staff' mentions increase from 0 to 5/month"}, {"owner": "Operations Manager", "action": "Post regular updates on kart performance: Share maintenance schedules on Google Business and social media.", "effort": "low", "impact": "medium", "deadline": "Week 1", "quadrant": "quick_win", "expected_lift": "+0.1★ based on transparency in operations.", "success_metric": "'performance' mentions increase from 0 to 5/month"}], "business_name": "Go Karts Mar Menor", "insight_count": 2130, "tracking_kpis": [{"metric": "Respect Complaints", "measurement": "Count reviews mentioning 'respect', 'staff behavior', 'rude'", "current_value": "22/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Safety Complaints", "measurement": "Count reviews mentioning 'safety', 'danger', 'hazard'", "current_value": "21/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Price Complaints", "measurement": "Count reviews mentioning 'price', 'cost', 'expensive'", "current_value": "18/month", "target_30_day": "< 10/month", "target_60_day": "< 5/month", "target_90_day": "< 2/month"}, {"metric": "Average Rating", "measurement": "Monthly average of new reviews", "current_value": "4.5★", "target_30_day": "4.6★", "target_60_day": "4.7★", "target_90_day": "4.8★"}], "report_version": "2.0", "risk_scorecard": {"indicators": [{"name": "Staff & Service", "color": "yellow", "score": 7, "trend": "improving", "complaint_count": 22}, {"name": "Value & Pricing", "color": "yellow", "score": 6, "trend": "stable", "complaint_count": 18}, {"name": "Facility & Cleanliness", "color": "yellow", "score": 5, "trend": "improving", "complaint_count": 21}, {"name": "Experience & Journey", "color": "green", "score": 8, "trend": "stable", "complaint_count": 11}], "overall_risk": "low", "highest_risk_area": "Respect and Safety", "immediate_attention": "Address the 22 complaints regarding staff behavior and the 21 safety issues."}, "analysis_period": "Last 10 years", "critical_issues": [{"rank": 1, "title": "Respect issues with staff behavior", "effort": "quick_win", "evidence": ["El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los kar...", "El trato de las trabajadoras hacia los clientes ha sido nefasto"], "solution": "Implement respect training for all staff: (1) Schedule a 2-hour training session next week with a focus on customer interaction for all staff, (2) Create a checklist to ensure all staff demonstrate respectful behavior during customer interactions, (3) Conduct follow-up surveys to assess improvement in staff interactions. Quote 'El trato de las trabajadoras hacia los clientes ha sido nefasto' indicates this fixes customer dissatisfaction with staff behavior.", "timeline": "1 week", "urt_code": "P1.02", "root_cause": "Lack of staff training in customer interaction and respect.", "revenue_impact": "€2,200/month (estimated 25 lost customers × €88 avg transaction)", "complaint_count": 22}, {"rank": 2, "title": "Safety concerns in karting experience", "effort": "moderate", "evidence": ["Just get in kart and go", "Corriendo con el 2° Kart mas rápido del lugar. El deposito de gasolina esta entre las piernas al descubierto"], "solution": "Conduct safety audits of karting procedures: (1) Implement mandatory pre-race safety briefings for all customers, scheduled before each racing session, (2) Review and update safety equipment and signage around the track, (3) Regularly check safety measures in place with a monthly audit. Quote 'Just get in kart and go' indicates this fixes the lack of safety awareness.", "timeline": "2-4 weeks", "urt_code": "P1.03", "root_cause": "Insufficient safety protocols and lack of pre-race safety briefings.", "revenue_impact": "€2,100/month (estimated 25 lost customers × €84 avg transaction)", "complaint_count": 21}, {"rank": 3, "title": "Perception of high pricing", "effort": "strategic", "evidence": ["El precio es algo excesivo", "Honnêtement je met 1 étoile 18 euros les 8 minutes"], "solution": "Review pricing strategy: (1) Conduct a customer survey to gather feedback on pricing perceptions within the next week, (2) Introduce value tiers where customers can choose different package options, (3) Implement a promotional campaign to communicate value. Quote 'El precio es algo excesivo' shows this addresses pricing concerns.", "timeline": "1-2 months", "urt_code": "P1.04", "root_cause": "Customer perception of pricing not aligned with expectations for value.", "revenue_impact": "€1,800/month (estimated 20 lost customers × €90 avg transaction)", "complaint_count": 18}], "executive_summary": {"momentum": "improving", "one_liner": "Strong performance overshadowed by safety and respect issues.", "rating_gap": 0.15000000000000036, "key_insight": "22 customers expressed dissatisfaction with staff behavior - fixable with respect training.", "health_label": "Stable", "health_score": 74, "current_rating": 4.55, "momentum_detail": "Complaints down 24% vs prior 3 months", "potential_rating": 4.7, "estimated_revenue_at_risk": "€4,500/month"}} 95d77d54-3b95-4456-9c25-72bc9b838aab reputation 72e6644d-1c89-4757-be12-c195e666b2db \N failed {classify,report} {} \N {"job_id": "72e6644d-1c89-4757-be12-c195e666b2db", "stages": ["classify", "report"], "business_id": null} {"success": false, "stages_run": []} business_id is required 2026-02-01 03:13:33.102475+00 2026-02-01 03:13:33.108258+00 2026-02-01 03:13:33.102475+00 \N 0 \N c0b87493-85be-42c0-bdf3-546b9a419288 reputation 22c747a6-b913-4ae4-82bc-14b4195008b6 \N failed {classify,report} {} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["classify", "report"], "business_id": null} {"success": false, "stages_run": []} business_id is required 2026-02-01 03:19:39.346966+00 2026-02-01 03:19:39.353773+00 2026-02-01 03:19:39.346966+00 \N 0 \N 862d444d-b1a5-4a13-8a75-2d8a046315f0 reputation 22c747a6-b913-4ae4-82bc-14b4195008b6 \N failed {classify,report} {} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["classify", "report"], "business_id": null} {"success": false, "stages_run": []} business_id is required 2026-02-01 03:20:43.536239+00 2026-02-01 03:20:43.539077+00 2026-02-01 03:20:43.536239+00 \N 0 \N 94a0eb49-5021-4817-bbc4-0b17a484d939 reputation 22c747a6-b913-4ae4-82bc-14b4195008b6 \N failed {classify,report} {} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["classify", "report"], "business_id": null} {"success": false, "stages_run": []} business_id is required (provide business_id or job_id) 2026-02-01 03:22:20.463938+00 2026-02-01 03:22:20.487446+00 2026-02-01 03:22:20.463938+00 \N 2 \N 20dd8ce4-3b02-445d-8d9f-fedd2b8c653d reputation 22c747a6-b913-4ae4-82bc-14b4195008b6 \N failed {classify,report} {report} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["classify", "report"], "business_id": null} {"success": false, "stages_run": ["report"]} 'dict' object has no attribute 'success' 2026-02-01 03:23:03.755981+00 2026-02-01 03:23:03.793528+00 2026-02-01 03:23:03.755981+00 {"report": {"error": null, "success": true, "records_in": 0, "duration_ms": 15, "records_out": 0}, "classify": {"error": "column reference \\"review_id\\" is ambiguous", "success": false, "records_in": 0, "duration_ms": 3, "records_out": 0}} 25 \N cf854383-479d-46fb-834b-461c948e3cb6 reputation 22c747a6-b913-4ae4-82bc-14b4195008b6 \N failed {classify,report} {report} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["classify", "report"], "business_id": null} {"success": false, "stages_run": ["report"]} \N 2026-02-01 03:24:25.504547+00 2026-02-01 03:24:25.547156+00 2026-02-01 03:24:25.504547+00 {"report": {"error": null, "success": true, "records_in": 0, "duration_ms": 17, "records_out": 0}, "classify": {"error": "column reference \\"review_id\\" is ambiguous", "success": false, "records_in": 0, "duration_ms": 4, "records_out": 0}} 28 \N 1d44f4fb-8fa8-4491-8cd9-c6b070f58ded reputation 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {classify,report} {classify,report} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["classify", "report"], "business_id": null} {"success": true, "stages_run": ["classify", "report"]} \N 2026-02-01 03:25:38.237874+00 2026-02-01 03:25:38.263304+00 2026-02-01 03:25:38.237874+00 {"report": {"error": null, "success": true, "records_in": 0, "duration_ms": 6, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 3, "records_out": 0}} 13 \N 6a34f508-de38-4d4a-a6e6-ac11aae97d36 classification 22c747a6-b913-4ae4-82bc-14b4195008b6 \N failed {fetch,classify,save} {} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["fetch", "classify", "save"], "business_id": null} {"success": false, "stages_run": []} Fetch failed: column f.review_text does not exist 2026-02-01 03:34:59.649977+00 2026-02-01 03:34:59.682691+00 2026-02-01 03:34:59.649977+00 \N 12 \N 9bcdfcea-8136-4cd9-8cdd-60bc9492f8db classification 22c747a6-b913-4ae4-82bc-14b4195008b6 \N completed {fetch,classify,save} {fetch,classify,save} \N {"job_id": "22c747a6-b913-4ae4-82bc-14b4195008b6", "stages": ["fetch", "classify", "save"], "business_id": null} {"success": true, "stages_run": ["fetch", "classify", "save"]} \N 2026-02-01 03:36:26.962121+00 2026-02-01 03:36:55.778196+00 2026-02-01 03:36:26.962121+00 {"save": {"error": null, "success": true, "records_in": 0, "duration_ms": 32, "records_out": 0}, "fetch": {"error": null, "success": true, "records_in": 0, "duration_ms": 10, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 28753, "records_out": 0}} 28802 \N d62ec2ee-9649-490e-b38a-c330a398e1ec classification 4f4bb448-0dee-4e36-b2a2-20f0357fece8 \N completed {fetch,classify,save} {fetch,classify,save} \N {"job_id": "4f4bb448-0dee-4e36-b2a2-20f0357fece8", "stages": ["fetch", "classify", "save"], "business_id": null} {"success": true, "stages_run": ["fetch", "classify", "save"]} \N 2026-02-01 03:44:06.87228+00 2026-02-01 03:44:51.614698+00 2026-02-01 03:44:06.87228+00 {"save": {"error": null, "success": true, "records_in": 0, "duration_ms": 29, "records_out": 0}, "fetch": {"error": null, "success": true, "records_in": 0, "duration_ms": 11, "records_out": 0}, "classify": {"error": null, "success": true, "records_in": 0, "duration_ms": 44684, "records_out": 0}} 44734 \N \. -- -- Data for Name: fact_timeseries; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.fact_timeseries (id, business_id, place_id, period_date, bucket_type, subject_type, subject_id, taxonomy_version, review_count, span_count, negative_count, positive_count, neutral_count, mixed_count, strength_score, negative_strength, positive_strength, avg_rating, i1_count, i2_count, i3_count, cr_better, cr_worse, cr_same, trust_weighted_strength, trust_weighted_negative, computed_at, created_at) FROM stdin; 34 Go Karts Mar Menor unknown 2026-01-30 day urt_code O2.03 v5.1 1 4 0 4 0 0 14 0 14 4 0 1 3 1 0 0 13.066667 0 2026-01-30 10:23:18.542689+00 2026-01-30 10:23:18.542689+00 35 Go Karts Mar Menor unknown 2026-01-30 day urt_code O1.03 v5.1 1 5 0 4 0 1 15 1 14 4.8 0 2 3 1 0 0 12.22 0.7 2026-01-30 10:23:18.54768+00 2026-01-30 10:23:18.54768+00 36 Go Karts Mar Menor unknown 2026-01-30 day urt_code E1.04 v5.1 1 6 0 6 0 0 18 0 18 5 0 3 3 0 0 0 14.37 0 2026-01-30 10:23:18.548367+00 2026-01-30 10:23:18.548367+00 37 Go Karts Mar Menor unknown 2026-01-30 day urt_code O3.02 v5.1 1 5 0 5 0 0 13 0 13 5 1 2 2 0 0 0 11.548572 0 2026-01-30 10:23:18.549077+00 2026-01-30 10:23:18.549077+00 38 Go Karts Mar Menor unknown 2026-01-30 day urt_code P1.01 v5.1 1 20 3 16 0 1 59 9 50 4.3 0 10 10 0 1 0 50.09714 8.4 2026-01-30 10:23:18.549739+00 2026-01-30 10:23:18.549739+00 39 Go Karts Mar Menor unknown 2026-01-30 day urt_code R1.02 v5.1 1 3 3 0 0 0 12 12 0 2 0 0 3 0 0 0 11.566667 11.566667 2026-01-30 10:23:18.550369+00 2026-01-30 10:23:18.550369+00 40 Go Karts Mar Menor unknown 2026-01-30 day urt_code V1.03 v5.1 1 1 1 0 0 0 4 4 0 3 0 0 1 0 0 0 3.8666666 3.8666666 2026-01-30 10:23:18.551189+00 2026-01-30 10:23:18.551189+00 41 Go Karts Mar Menor unknown 2026-01-30 day urt_code R3.03 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 0 0 0 3.4 0 2026-01-30 10:23:18.551806+00 2026-01-30 10:23:18.551806+00 42 Go Karts Mar Menor unknown 2026-01-30 day urt_code O1.02 v5.1 1 15 0 15 0 0 56 0 56 4.8 0 2 13 2 0 0 41.397144 0 2026-01-30 10:23:18.552363+00 2026-01-30 10:23:18.552363+00 43 Go Karts Mar Menor unknown 2026-01-30 day urt_code R4.04 v5.1 1 1 1 0 0 0 4 4 0 3 0 0 1 0 0 0 3.8666666 3.8666666 2026-01-30 10:23:18.552987+00 2026-01-30 10:23:18.552987+00 44 Go Karts Mar Menor unknown 2026-01-30 day urt_code O2.02 v5.1 1 6 0 6 0 0 18 0 18 5 0 3 3 0 0 0 15.6104765 0 2026-01-30 10:23:18.553484+00 2026-01-30 10:23:18.553484+00 45 Go Karts Mar Menor unknown 2026-01-30 day urt_code J2.01 v5.1 1 2 1 0 1 0 4 4 0 2 0 1 1 0 0 0 3.84 3.84 2026-01-30 10:23:18.554009+00 2026-01-30 10:23:18.554009+00 46 Go Karts Mar Menor unknown 2026-01-30 day urt_code A3.01 v5.1 1 5 0 5 0 0 14 0 14 4.8 0 3 2 0 0 0 11.02 0 2026-01-30 10:23:18.554587+00 2026-01-30 10:23:18.554587+00 47 Go Karts Mar Menor unknown 2026-01-30 day urt_code V4.03 v5.1 1 18 2 16 0 0 66 8 58 4.388889 0 3 15 2 0 0 52.454285 7.68 2026-01-30 10:23:18.555155+00 2026-01-30 10:23:18.555155+00 48 Go Karts Mar Menor unknown 2026-01-30 day urt_code V4.01 v5.1 1 8 1 7 0 0 24 2 22 4.75 0 4 4 2 0 0 15.6 1.6 2026-01-30 10:23:18.555696+00 2026-01-30 10:23:18.555696+00 49 Go Karts Mar Menor unknown 2026-01-30 day urt_code A1.02 v5.1 1 1 0 0 1 0 0 0 0 5 0 1 0 0 0 0 0 0 2026-01-30 10:23:18.55621+00 2026-01-30 10:23:18.55621+00 50 Go Karts Mar Menor unknown 2026-01-30 day urt_code A1.01 v5.1 1 1 0 1 0 0 2 0 2 5 0 1 0 0 0 0 1.96 0 2026-01-30 10:23:18.556742+00 2026-01-30 10:23:18.556742+00 51 Go Karts Mar Menor unknown 2026-01-30 day urt_code E1.01 v5.1 1 3 0 3 0 0 6 0 6 5 0 3 0 0 0 0 4.4 0 2026-01-30 10:23:18.557358+00 2026-01-30 10:23:18.557358+00 52 Go Karts Mar Menor unknown 2026-01-30 day urt_code V2.05 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 1 0 0 3.2 0 2026-01-30 10:23:18.557997+00 2026-01-30 10:23:18.557997+00 53 Go Karts Mar Menor unknown 2026-01-30 day urt_code R4.03 v5.1 1 7 0 7 0 0 24 0 24 5 0 2 5 0 0 0 18.457144 0 2026-01-30 10:23:18.558571+00 2026-01-30 10:23:18.558571+00 54 Go Karts Mar Menor unknown 2026-01-30 day urt_code O1.01 v5.1 1 4 1 3 0 0 10 2 8 3.75 0 3 1 0 0 0 8.086666 1.92 2026-01-30 10:23:18.559118+00 2026-01-30 10:23:18.559118+00 55 Go Karts Mar Menor unknown 2026-01-30 day urt_code O2.01 v5.1 1 1 0 1 0 0 2 0 2 4 0 1 0 0 0 0 1.6666666 0 2026-01-30 10:23:18.55982+00 2026-01-30 10:23:18.55982+00 56 Go Karts Mar Menor unknown 2026-01-30 day urt_code P2.02 v5.1 1 1 0 1 0 0 4 0 4 4 0 0 1 0 0 0 3.3333333 0 2026-01-30 10:23:18.560377+00 2026-01-30 10:23:18.560377+00 57 Go Karts Mar Menor unknown 2026-01-30 day urt_code J1.02 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 4 4 2026-01-30 10:23:18.560908+00 2026-01-30 10:23:18.560908+00 58 Go Karts Mar Menor unknown 2026-01-30 day urt_code R1.03 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 4 4 2026-01-30 10:23:18.561464+00 2026-01-30 10:23:18.561464+00 59 Go Karts Mar Menor unknown 2026-01-30 day urt_code O4.04 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 0 0 0 3.6 0 2026-01-30 10:23:18.562041+00 2026-01-30 10:23:18.562041+00 60 Go Karts Mar Menor unknown 2026-01-30 day urt_code V1.02 v5.1 1 3 0 3 0 0 8 0 8 5 0 2 1 1 0 0 5.8999996 0 2026-01-30 10:23:18.562593+00 2026-01-30 10:23:18.562593+00 61 Go Karts Mar Menor unknown 2026-01-30 day urt_code J2.02 v5.1 1 1 0 0 1 0 0 0 0 5 1 0 0 0 0 0 0 0 2026-01-30 10:23:18.563159+00 2026-01-30 10:23:18.563159+00 62 Go Karts Mar Menor unknown 2026-01-30 day urt_code P3.01 v5.1 1 4 0 4 0 0 12 0 12 5 0 2 2 0 0 0 8.3 0 2026-01-30 10:23:18.563701+00 2026-01-30 10:23:18.563701+00 63 Go Karts Mar Menor unknown 2026-01-30 day urt_code R3.05 v5.1 1 2 0 2 0 0 6 0 6 5 0 1 1 0 0 0 4.75 0 2026-01-30 10:23:18.564254+00 2026-01-30 10:23:18.564254+00 64 Go Karts Mar Menor unknown 2026-01-30 day urt_code V1.01 v5.1 1 3 1 2 0 0 12 4 8 4.3333335 0 0 3 0 0 0 9.533333 3.2 2026-01-30 10:23:18.564835+00 2026-01-30 10:23:18.564835+00 65 Go Karts Mar Menor unknown 2026-01-30 day urt_code O1.05 v5.1 1 3 0 3 0 0 12 0 12 5 0 0 3 0 0 0 9.44 0 2026-01-30 10:23:18.565417+00 2026-01-30 10:23:18.565417+00 66 Go Karts Mar Menor unknown 2026-01-30 day urt_code J1.01 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 3.84 3.84 2026-01-30 10:23:18.565997+00 2026-01-30 10:23:18.565997+00 67 Go Karts Mar Menor unknown 2026-01-30 day urt_code R3.04 v5.1 1 2 0 2 0 0 4 0 4 5 0 2 0 0 0 0 3.4166665 0 2026-01-30 10:23:18.566595+00 2026-01-30 10:23:18.566595+00 68 Go Karts Mar Menor unknown 2026-01-30 day urt_code P1.02 v5.1 1 3 2 1 0 0 10 8 2 3.6666667 0 1 2 0 0 0 8 7 2026-01-30 10:23:18.56716+00 2026-01-30 10:23:18.56716+00 69 Go Karts Mar Menor unknown 2026-01-30 day urt_code P2.05 v5.1 1 1 1 0 0 0 2 2 0 5 0 1 0 0 0 0 1.55 1.55 2026-01-30 10:23:18.567698+00 2026-01-30 10:23:18.567698+00 70 Go Karts Mar Menor unknown 2026-01-30 day urt_code E4.01 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 3.9 3.9 2026-01-30 10:23:18.568469+00 2026-01-30 10:23:18.568469+00 71 Go Karts Mar Menor unknown 2026-01-30 day urt_code R2.01 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 1 0 3.9 3.9 2026-01-30 10:23:18.569065+00 2026-01-30 10:23:18.569065+00 72 Go Karts Mar Menor unknown 2026-01-30 day urt_code E1.03 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 0 0 0 3.7333333 0 2026-01-30 10:23:18.56968+00 2026-01-30 10:23:18.56968+00 73 Go Karts Mar Menor unknown 2026-01-30 day urt_code P2.01 v5.1 1 1 0 1 0 0 2 0 2 5 0 1 0 0 0 0 1.3 0 2026-01-30 10:23:18.570247+00 2026-01-30 10:23:18.570247+00 74 Go Karts Mar Menor unknown 2026-01-30 day domain O v5.1 1 44 1 42 0 1 144 3 141 4.681818 1 14 29 4 0 0 116.63619 2.62 2026-01-30 10:23:18.570982+00 2026-01-30 10:23:18.570982+00 75 Go Karts Mar Menor unknown 2026-01-30 day domain E v5.1 1 11 1 10 0 0 32 4 28 4.6363635 0 6 5 0 0 0 26.403334 3.9 2026-01-30 10:23:18.571844+00 2026-01-30 10:23:18.571844+00 76 Go Karts Mar Menor unknown 2026-01-30 day domain P v5.1 1 30 6 23 0 1 89 19 70 4.366667 0 15 15 0 1 0 72.580475 16.95 2026-01-30 10:23:18.572394+00 2026-01-30 10:23:18.572394+00 77 Go Karts Mar Menor unknown 2026-01-30 day domain R v5.1 1 18 6 12 0 0 62 24 38 3.9444444 0 5 13 0 1 0 53.357143 23.333334 2026-01-30 10:23:18.572934+00 2026-01-30 10:23:18.572934+00 78 Go Karts Mar Menor unknown 2026-01-30 day domain V v5.1 1 34 5 29 0 0 118 18 100 4.5 0 9 25 6 0 0 90.55428 16.346666 2026-01-30 10:23:18.573506+00 2026-01-30 10:23:18.573506+00 79 Go Karts Mar Menor unknown 2026-01-30 day domain J v5.1 1 5 3 0 2 0 12 12 0 2.2 1 1 3 0 0 0 11.68 11.68 2026-01-30 10:23:18.574101+00 2026-01-30 10:23:18.574101+00 80 Go Karts Mar Menor unknown 2026-01-30 day domain A v5.1 1 7 0 6 1 0 16 0 16 4.857143 0 5 2 0 0 0 12.9800005 0 2026-01-30 10:23:18.574653+00 2026-01-30 10:23:18.574653+00 81 Go Karts Mar Menor unknown 2026-01-30 day overall all v5.1 1 149 22 122 3 2 473 80 393 4.409396 2 55 92 10 2 0 384.19144 74.83 2026-01-30 10:23:18.575322+00 2026-01-30 10:23:18.575322+00 82 Go Karts Mar Menor ALL 2026-01-30 day urt_code O2.03 v5.1 1 4 0 4 0 0 14 0 14 4 0 1 3 1 0 0 13.066667 0 2026-01-30 10:23:18.576162+00 2026-01-30 10:23:18.576162+00 83 Go Karts Mar Menor ALL 2026-01-30 day urt_code O1.03 v5.1 1 5 0 4 0 1 15 1 14 4.8 0 2 3 1 0 0 12.22 0.7 2026-01-30 10:23:18.576698+00 2026-01-30 10:23:18.576698+00 84 Go Karts Mar Menor ALL 2026-01-30 day urt_code E1.04 v5.1 1 6 0 6 0 0 18 0 18 5 0 3 3 0 0 0 14.37 0 2026-01-30 10:23:18.577241+00 2026-01-30 10:23:18.577241+00 85 Go Karts Mar Menor ALL 2026-01-30 day urt_code O3.02 v5.1 1 5 0 5 0 0 13 0 13 5 1 2 2 0 0 0 11.548572 0 2026-01-30 10:23:18.577801+00 2026-01-30 10:23:18.577801+00 86 Go Karts Mar Menor ALL 2026-01-30 day urt_code P1.01 v5.1 1 20 3 16 0 1 59 9 50 4.3 0 10 10 0 1 0 50.09714 8.4 2026-01-30 10:23:18.578552+00 2026-01-30 10:23:18.578552+00 87 Go Karts Mar Menor ALL 2026-01-30 day urt_code R1.02 v5.1 1 3 3 0 0 0 12 12 0 2 0 0 3 0 0 0 11.566667 11.566667 2026-01-30 10:23:18.57909+00 2026-01-30 10:23:18.57909+00 88 Go Karts Mar Menor ALL 2026-01-30 day urt_code V1.03 v5.1 1 1 1 0 0 0 4 4 0 3 0 0 1 0 0 0 3.8666666 3.8666666 2026-01-30 10:23:18.579657+00 2026-01-30 10:23:18.579657+00 89 Go Karts Mar Menor ALL 2026-01-30 day urt_code R3.03 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 0 0 0 3.4 0 2026-01-30 10:23:18.580214+00 2026-01-30 10:23:18.580214+00 90 Go Karts Mar Menor ALL 2026-01-30 day urt_code O1.02 v5.1 1 15 0 15 0 0 56 0 56 4.8 0 2 13 2 0 0 41.397144 0 2026-01-30 10:23:18.580758+00 2026-01-30 10:23:18.580758+00 91 Go Karts Mar Menor ALL 2026-01-30 day urt_code R4.04 v5.1 1 1 1 0 0 0 4 4 0 3 0 0 1 0 0 0 3.8666666 3.8666666 2026-01-30 10:23:18.581323+00 2026-01-30 10:23:18.581323+00 92 Go Karts Mar Menor ALL 2026-01-30 day urt_code O2.02 v5.1 1 6 0 6 0 0 18 0 18 5 0 3 3 0 0 0 15.6104765 0 2026-01-30 10:23:18.581881+00 2026-01-30 10:23:18.581881+00 93 Go Karts Mar Menor ALL 2026-01-30 day urt_code J2.01 v5.1 1 2 1 0 1 0 4 4 0 2 0 1 1 0 0 0 3.84 3.84 2026-01-30 10:23:18.582419+00 2026-01-30 10:23:18.582419+00 94 Go Karts Mar Menor ALL 2026-01-30 day urt_code A3.01 v5.1 1 5 0 5 0 0 14 0 14 4.8 0 3 2 0 0 0 11.02 0 2026-01-30 10:23:18.582992+00 2026-01-30 10:23:18.582992+00 95 Go Karts Mar Menor ALL 2026-01-30 day urt_code V4.03 v5.1 1 18 2 16 0 0 66 8 58 4.388889 0 3 15 2 0 0 52.454285 7.68 2026-01-30 10:23:18.583539+00 2026-01-30 10:23:18.583539+00 96 Go Karts Mar Menor ALL 2026-01-30 day urt_code V4.01 v5.1 1 8 1 7 0 0 24 2 22 4.75 0 4 4 2 0 0 15.6 1.6 2026-01-30 10:23:18.584073+00 2026-01-30 10:23:18.584073+00 97 Go Karts Mar Menor ALL 2026-01-30 day urt_code A1.02 v5.1 1 1 0 0 1 0 0 0 0 5 0 1 0 0 0 0 0 0 2026-01-30 10:23:18.584593+00 2026-01-30 10:23:18.584593+00 98 Go Karts Mar Menor ALL 2026-01-30 day urt_code A1.01 v5.1 1 1 0 1 0 0 2 0 2 5 0 1 0 0 0 0 1.96 0 2026-01-30 10:23:18.585143+00 2026-01-30 10:23:18.585143+00 99 Go Karts Mar Menor ALL 2026-01-30 day urt_code E1.01 v5.1 1 3 0 3 0 0 6 0 6 5 0 3 0 0 0 0 4.4 0 2026-01-30 10:23:18.585722+00 2026-01-30 10:23:18.585722+00 100 Go Karts Mar Menor ALL 2026-01-30 day urt_code V2.05 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 1 0 0 3.2 0 2026-01-30 10:23:18.586316+00 2026-01-30 10:23:18.586316+00 101 Go Karts Mar Menor ALL 2026-01-30 day urt_code R4.03 v5.1 1 7 0 7 0 0 24 0 24 5 0 2 5 0 0 0 18.457144 0 2026-01-30 10:23:18.58705+00 2026-01-30 10:23:18.58705+00 102 Go Karts Mar Menor ALL 2026-01-30 day urt_code O1.01 v5.1 1 4 1 3 0 0 10 2 8 3.75 0 3 1 0 0 0 8.086666 1.92 2026-01-30 10:23:18.587557+00 2026-01-30 10:23:18.587557+00 103 Go Karts Mar Menor ALL 2026-01-30 day urt_code O2.01 v5.1 1 1 0 1 0 0 2 0 2 4 0 1 0 0 0 0 1.6666666 0 2026-01-30 10:23:18.588073+00 2026-01-30 10:23:18.588073+00 104 Go Karts Mar Menor ALL 2026-01-30 day urt_code P2.02 v5.1 1 1 0 1 0 0 4 0 4 4 0 0 1 0 0 0 3.3333333 0 2026-01-30 10:23:18.588613+00 2026-01-30 10:23:18.588613+00 105 Go Karts Mar Menor ALL 2026-01-30 day urt_code J1.02 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 4 4 2026-01-30 10:23:18.589122+00 2026-01-30 10:23:18.589122+00 106 Go Karts Mar Menor ALL 2026-01-30 day urt_code R1.03 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 4 4 2026-01-30 10:23:18.589728+00 2026-01-30 10:23:18.589728+00 107 Go Karts Mar Menor ALL 2026-01-30 day urt_code O4.04 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 0 0 0 3.6 0 2026-01-30 10:23:18.590275+00 2026-01-30 10:23:18.590275+00 108 Go Karts Mar Menor ALL 2026-01-30 day urt_code V1.02 v5.1 1 3 0 3 0 0 8 0 8 5 0 2 1 1 0 0 5.8999996 0 2026-01-30 10:23:18.590838+00 2026-01-30 10:23:18.590838+00 109 Go Karts Mar Menor ALL 2026-01-30 day urt_code J2.02 v5.1 1 1 0 0 1 0 0 0 0 5 1 0 0 0 0 0 0 0 2026-01-30 10:23:18.591407+00 2026-01-30 10:23:18.591407+00 110 Go Karts Mar Menor ALL 2026-01-30 day urt_code P3.01 v5.1 1 4 0 4 0 0 12 0 12 5 0 2 2 0 0 0 8.3 0 2026-01-30 10:23:18.591951+00 2026-01-30 10:23:18.591951+00 111 Go Karts Mar Menor ALL 2026-01-30 day urt_code R3.05 v5.1 1 2 0 2 0 0 6 0 6 5 0 1 1 0 0 0 4.75 0 2026-01-30 10:23:18.592492+00 2026-01-30 10:23:18.592492+00 112 Go Karts Mar Menor ALL 2026-01-30 day urt_code V1.01 v5.1 1 3 1 2 0 0 12 4 8 4.3333335 0 0 3 0 0 0 9.533333 3.2 2026-01-30 10:23:18.593038+00 2026-01-30 10:23:18.593038+00 113 Go Karts Mar Menor ALL 2026-01-30 day urt_code O1.05 v5.1 1 3 0 3 0 0 12 0 12 5 0 0 3 0 0 0 9.44 0 2026-01-30 10:23:18.593577+00 2026-01-30 10:23:18.593577+00 114 Go Karts Mar Menor ALL 2026-01-30 day urt_code J1.01 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 3.84 3.84 2026-01-30 10:23:18.594097+00 2026-01-30 10:23:18.594097+00 115 Go Karts Mar Menor ALL 2026-01-30 day urt_code R3.04 v5.1 1 2 0 2 0 0 4 0 4 5 0 2 0 0 0 0 3.4166665 0 2026-01-30 10:23:18.594618+00 2026-01-30 10:23:18.594618+00 116 Go Karts Mar Menor ALL 2026-01-30 day urt_code P1.02 v5.1 1 3 2 1 0 0 10 8 2 3.6666667 0 1 2 0 0 0 8 7 2026-01-30 10:23:18.595136+00 2026-01-30 10:23:18.595136+00 117 Go Karts Mar Menor ALL 2026-01-30 day urt_code P2.05 v5.1 1 1 1 0 0 0 2 2 0 5 0 1 0 0 0 0 1.55 1.55 2026-01-30 10:23:18.595871+00 2026-01-30 10:23:18.595871+00 118 Go Karts Mar Menor ALL 2026-01-30 day urt_code E4.01 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 0 0 3.9 3.9 2026-01-30 10:23:18.59639+00 2026-01-30 10:23:18.59639+00 119 Go Karts Mar Menor ALL 2026-01-30 day urt_code R2.01 v5.1 1 1 1 0 0 0 4 4 0 1 0 0 1 0 1 0 3.9 3.9 2026-01-30 10:23:18.597004+00 2026-01-30 10:23:18.597004+00 120 Go Karts Mar Menor ALL 2026-01-30 day urt_code E1.03 v5.1 1 1 0 1 0 0 4 0 4 5 0 0 1 0 0 0 3.7333333 0 2026-01-30 10:23:18.597513+00 2026-01-30 10:23:18.597513+00 121 Go Karts Mar Menor ALL 2026-01-30 day urt_code P2.01 v5.1 1 1 0 1 0 0 2 0 2 5 0 1 0 0 0 0 1.3 0 2026-01-30 10:23:18.597988+00 2026-01-30 10:23:18.597988+00 122 Go Karts Mar Menor ALL 2026-01-30 day domain O v5.1 1 44 1 42 0 1 144 3 141 4.681818 1 14 29 4 0 0 116.63619 2.62 2026-01-30 10:23:18.598679+00 2026-01-30 10:23:18.598679+00 123 Go Karts Mar Menor ALL 2026-01-30 day domain E v5.1 1 11 1 10 0 0 32 4 28 4.6363635 0 6 5 0 0 0 26.403334 3.9 2026-01-30 10:23:18.599198+00 2026-01-30 10:23:18.599198+00 124 Go Karts Mar Menor ALL 2026-01-30 day domain P v5.1 1 30 6 23 0 1 89 19 70 4.366667 0 15 15 0 1 0 72.580475 16.95 2026-01-30 10:23:18.599738+00 2026-01-30 10:23:18.599738+00 125 Go Karts Mar Menor ALL 2026-01-30 day domain R v5.1 1 18 6 12 0 0 62 24 38 3.9444444 0 5 13 0 1 0 53.357143 23.333334 2026-01-30 10:23:18.600287+00 2026-01-30 10:23:18.600287+00 126 Go Karts Mar Menor ALL 2026-01-30 day domain V v5.1 1 34 5 29 0 0 118 18 100 4.5 0 9 25 6 0 0 90.55428 16.346666 2026-01-30 10:23:18.600828+00 2026-01-30 10:23:18.600828+00 127 Go Karts Mar Menor ALL 2026-01-30 day domain J v5.1 1 5 3 0 2 0 12 12 0 2.2 1 1 3 0 0 0 11.68 11.68 2026-01-30 10:23:18.601357+00 2026-01-30 10:23:18.601357+00 128 Go Karts Mar Menor ALL 2026-01-30 day domain A v5.1 1 7 0 6 1 0 16 0 16 4.857143 0 5 2 0 0 0 12.9800005 0 2026-01-30 10:23:18.601872+00 2026-01-30 10:23:18.601872+00 129 Go Karts Mar Menor ALL 2026-01-30 day overall all v5.1 1 149 22 122 3 2 473 80 393 4.409396 2 55 92 10 2 0 384.19144 74.83 2026-01-30 10:23:18.602511+00 2026-01-30 10:23:18.602511+00 \. -- -- Data for Name: issue_events; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.issue_events (id, issue_id, event_type, span_id, old_value, new_value, metadata, created_at) FROM stdin; 1 ISS-2614e29f829cd485 span_linked SPN-0ed2638990f2 \N \N \N 2026-01-24 18:27:49.438299+00 2 ISS-eca57e771e862c9c span_linked SPN-5af47728377a \N \N \N 2026-01-24 18:27:50.499635+00 3 ISS-135a3b29604f06dc span_linked SPN-78e0c7bccc85 \N \N \N 2026-01-24 18:27:59.155523+00 4 ISS-6f49ff283cab40fe span_linked SPN-7031a752d9f2 \N \N \N 2026-01-24 18:27:59.161996+00 452 ISS-e685bc07e94b18ea issue_created SPN-57524e267b88d074 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-29 18:56:38.412004+00 453 ISS-fe5c50a4044aa2f4 issue_created SPN-18f68275c72f5e5d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-29 18:56:38.41641+00 454 ISS-cad89fbe0a3953e1 span_added SPN-3c10e41a8cc4ebb9 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.02"} 2026-01-29 18:56:38.417819+00 455 ISS-e4723a84baf4cc25 issue_created SPN-6bddf8e186892ded \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.01"} 2026-01-29 18:56:38.419592+00 456 ISS-d6819a88b82e967a issue_created SPN-8760f555701b920e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.420961+00 457 ISS-3b8c83f268f333f1 issue_created SPN-3d298e043e6ec9ed \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.01"} 2026-01-29 18:56:38.422129+00 11 ISS-41697d28e2218161 span_added SPN-7804bdeef7d99cb5 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-24 23:56:34.19742+00 12 ISS-d90ab89aaef2274d issue_created SPN-7318d16076544f1a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-24 23:56:34.209921+00 13 ISS-cad89fbe0a3953e1 issue_created SPN-69a6c9879625fdae \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-24 23:56:34.211424+00 14 ISS-078ab863a4a516d9 issue_created SPN-1b0f518b14f73684 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "V1.03"} 2026-01-24 23:56:34.212522+00 15 ISS-7be158d5b9729a85 issue_created SPN-f45220df23f09ea6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-24 23:56:34.213702+00 16 ISS-7be158d5b9729a85 span_added SPN-2fd349fe0ec0098d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.853816+00 458 ISS-e685bc07e94b18ea span_added SPN-eb2827c7e8268134 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-29 18:56:38.423215+00 459 ISS-3b8c83f268f333f1 span_added SPN-1a80606abd277dfd \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.01"} 2026-01-29 18:56:38.424074+00 19 ISS-cad89fbe0a3953e1 span_added SPN-940b8a4f29955dc2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-25 04:14:06.864353+00 460 ISS-35555dc37e49b8ae issue_created SPN-520211286aa47c54 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.04"} 2026-01-29 18:56:38.4251+00 461 ISS-8f3874d8e5c3eb69 issue_created SPN-f39fd612c8c8af14 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.426238+00 462 ISS-04b6e508781a2350 issue_created SPN-682caba9b164a5a1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A2.03"} 2026-01-29 18:56:38.427219+00 463 ISS-e3fac9553b7a3594 issue_created SPN-b90db27917e506f5 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.01"} 2026-01-29 18:56:38.428338+00 464 ISS-35555dc37e49b8ae span_added SPN-5bd76973f624a4ce \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.04"} 2026-01-29 18:56:38.429507+00 25 ISS-7be158d5b9729a85 span_added SPN-53c6fe547d0c87a0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.870756+00 465 ISS-f785405e77359e08 issue_created SPN-36913ae2cff8b6bb \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.430501+00 27 ISS-7be158d5b9729a85 span_added SPN-a22554cc2462a1b0 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.872452+00 466 ISS-6a7bcea38f5e9028 issue_created SPN-b227041cd180dbcf \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.04"} 2026-01-29 18:56:38.431484+00 467 ISS-fe1e5ecd5bbcf245 issue_created SPN-27424bc0d3b405a7 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.02"} 2026-01-29 18:56:38.432446+00 468 ISS-f785405e77359e08 span_added SPN-be43869e17440cfe \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-29 18:56:38.433478+00 469 ISS-191ee4738f1076aa issue_created SPN-56d5379b87943c83 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.03"} 2026-01-29 18:56:38.434438+00 32 ISS-7be158d5b9729a85 span_added SPN-e99ce51306264a81 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.877361+00 33 ISS-7be158d5b9729a85 span_added SPN-f877f02dc3990312 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.878286+00 34 ISS-7be158d5b9729a85 span_added SPN-d77e5b594cbbec57 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.879045+00 470 ISS-d6819a88b82e967a span_added SPN-a2d38a4118142c59 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.435306+00 36 ISS-7be158d5b9729a85 span_added SPN-4485081b6b8239da \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.880973+00 471 ISS-dd796399381127dc issue_created SPN-ec8a6edd4a548e4f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.03"} 2026-01-29 18:56:38.436197+00 472 ISS-e685bc07e94b18ea span_added SPN-cc405bb661acfc6a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.01"} 2026-01-29 18:56:38.437056+00 39 ISS-d90ab89aaef2274d span_added SPN-ced39cd3397112e2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:06.883318+00 473 ISS-d6819a88b82e967a span_added SPN-f0c015871f351a8e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.438133+00 474 ISS-098fa9745f36247a issue_created SPN-0d1945e2c6a2baab \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A4.01"} 2026-01-29 18:56:38.439157+00 475 ISS-cc9313fbff47f93e issue_created SPN-bcedab1d5115af67 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-29 18:56:38.440525+00 476 ISS-e685bc07e94b18ea span_added SPN-d443870ed1377b70 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-29 18:56:38.441536+00 477 ISS-a75a01dae15a2d78 issue_created SPN-822bd8a98fe1d77d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E2.02"} 2026-01-29 18:56:38.442581+00 478 ISS-098fa9745f36247a span_added SPN-e8aa567a49f110da \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A4.01"} 2026-01-29 18:56:38.443501+00 46 ISS-7be158d5b9729a85 span_added SPN-4879fcd6c00fe8a9 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.889638+00 479 ISS-cad89fbe0a3953e1 span_added SPN-bdf340c4e55eb56b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-29 18:56:38.444374+00 480 ISS-f785405e77359e08 span_added SPN-83b6f6125729cf82 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-29 18:56:38.445218+00 49 ISS-7be158d5b9729a85 span_added SPN-b9ab5793735bafb9 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.892147+00 481 ISS-cad89fbe0a3953e1 span_added SPN-e551d240e2e00e7a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-29 18:56:38.446185+00 482 ISS-030f1fbb76e75ab1 issue_created SPN-b9507baa7eeae8d3 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.01"} 2026-01-29 18:56:38.447094+00 54 ISS-7be158d5b9729a85 span_added SPN-5176dd2010bf9326 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.897533+00 483 ISS-f785405e77359e08 span_added SPN-d2200ae5075e6b35 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.462142+00 56 ISS-7be158d5b9729a85 span_added SPN-afbf0a91bd5a8519 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.899289+00 484 ISS-e3fac9553b7a3594 span_added SPN-2b759cae81ee4450 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.01"} 2026-01-29 18:56:38.470377+00 58 ISS-7be158d5b9729a85 span_added SPN-47fe608ccade71a1 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.900984+00 485 ISS-fe5c50a4044aa2f4 span_added SPN-29afaf9e7fc42ffd \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-29 18:56:38.472059+00 486 ISS-030f1fbb76e75ab1 span_added SPN-599b1e5daa8db68d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.01"} 2026-01-29 18:56:38.477978+00 487 ISS-7be158d5b9729a85 span_added SPN-9a1b34efa473ab9d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-29 18:56:38.478928+00 62 ISS-7be158d5b9729a85 span_added SPN-069078a1b4486c3e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.904724+00 63 ISS-7be158d5b9729a85 span_added SPN-65d9d084761d008a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.905497+00 488 ISS-d6819a88b82e967a span_added SPN-fcc8f5d10056605a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.479826+00 489 ISS-fe5c50a4044aa2f4 span_added SPN-f18ac0cc5979b8e4 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-29 18:56:38.48126+00 490 ISS-e685bc07e94b18ea span_added SPN-f04dd9df7c80d933 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-29 18:56:38.482219+00 491 ISS-5c67a50db3628fc0 issue_created SPN-bb65732f91d971a6 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.483375+00 68 ISS-7be158d5b9729a85 span_added SPN-cdf0c42d3073b5a1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.910603+00 69 ISS-7be158d5b9729a85 span_added SPN-b43e484827679580 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.911476+00 70 ISS-d90ab89aaef2274d span_added SPN-bfbcf590410b43c2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:06.912552+00 492 ISS-3b8c83f268f333f1 span_added SPN-d4dea3d3379648c3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.01"} 2026-01-29 18:56:38.484132+00 72 ISS-7be158d5b9729a85 span_added SPN-d24d78148c536488 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.914267+00 493 ISS-6a7bcea38f5e9028 span_added SPN-4313d1d7b70f74ea \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.04"} 2026-01-29 18:56:38.48507+00 494 ISS-6a7bcea38f5e9028 span_added SPN-8c897f233c073db3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.04"} 2026-01-29 18:56:38.486166+00 495 ISS-ce05b5f63a1a6314 issue_created SPN-d936799277b3b4d7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P2.02"} 2026-01-29 18:56:38.487241+00 496 ISS-f785405e77359e08 span_added SPN-ea87242d0e3fe7e4 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-29 18:56:38.488503+00 497 ISS-6a7bcea38f5e9028 span_added SPN-4ee283236a356869 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.04"} 2026-01-29 18:56:38.489559+00 78 ISS-7be158d5b9729a85 span_added SPN-18a64cdaee85d11d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.918922+00 498 ISS-fe5c50a4044aa2f4 span_added SPN-ecdc4023f11893bc \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-29 18:56:38.490468+00 80 ISS-7be158d5b9729a85 span_added SPN-92bf48df42780941 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.920859+00 499 ISS-35555dc37e49b8ae span_added SPN-0f7826e84644a8a4 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.04"} 2026-01-29 18:56:38.49133+00 500 ISS-d6819a88b82e967a span_added SPN-0c26f098973f1fa9 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.49221+00 83 ISS-7be158d5b9729a85 span_added SPN-ffebfe89aa9c07bc \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.923112+00 84 ISS-7be158d5b9729a85 span_added SPN-f9c5ebae95ab153c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.924396+00 501 ISS-f785405e77359e08 span_added SPN-e851bd0bfb5ba211 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.493134+00 86 ISS-7be158d5b9729a85 span_added SPN-9e5cdab9fc9bfb76 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.926221+00 502 ISS-d6819a88b82e967a span_added SPN-fe94961a71954411 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.494034+00 88 ISS-7be158d5b9729a85 span_added SPN-fef7a2a88046daaa \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.927967+00 503 ISS-d6819a88b82e967a span_added SPN-5a3ff3555c7f73f1 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.494782+00 90 ISS-cad89fbe0a3953e1 span_added SPN-107ce7c9301f5fd2 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.02"} 2026-01-25 04:14:06.929608+00 504 ISS-3b8c83f268f333f1 span_added SPN-59e7e12c5956fe55 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.01"} 2026-01-29 18:56:38.495649+00 505 ISS-fe5c50a4044aa2f4 span_added SPN-697c956c567dbf70 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-29 18:56:38.496566+00 506 ISS-e3fac9553b7a3594 span_added SPN-3b1758c5e959263a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.01"} 2026-01-29 18:56:38.497613+00 507 ISS-fe5c50a4044aa2f4 span_added SPN-2088b8220d935497 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-29 18:56:38.498439+00 508 ISS-078ab863a4a516d9 span_added SPN-93944d9250951e41 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.03"} 2026-01-29 18:56:38.49934+00 509 ISS-3b8c83f268f333f1 span_added SPN-6adf4f351ca37aab \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.01"} 2026-01-29 18:56:38.500251+00 510 ISS-f785405e77359e08 span_added SPN-e8409179b62b1796 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.50126+00 98 ISS-7be158d5b9729a85 span_added SPN-0c59758ad1d83d45 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.937159+00 511 ISS-e685bc07e94b18ea span_added SPN-172f36705d5c25c2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-29 18:56:38.502125+00 512 ISS-cad89fbe0a3953e1 span_added SPN-4b6dd782cd7784cf \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.02"} 2026-01-29 18:56:38.502971+00 101 ISS-7be158d5b9729a85 span_added SPN-4cd6890b5b4bb6b0 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.939711+00 102 ISS-7be158d5b9729a85 span_added SPN-4cc1b4660b3f41bd \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.940499+00 513 ISS-f785405e77359e08 span_added SPN-cf6bdfd8522d0a35 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.504005+00 104 ISS-7be158d5b9729a85 span_added SPN-e1725060cb0b31e6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.942791+00 514 ISS-e685bc07e94b18ea span_added SPN-ce8657ca5340dff0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.01"} 2026-01-29 18:56:38.505128+00 106 ISS-7be158d5b9729a85 span_added SPN-1a3a4b93dfecc944 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.944442+00 515 ISS-d6819a88b82e967a span_added SPN-3e15772693deed6f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-29 18:56:38.506115+00 516 ISS-3b8c83f268f333f1 span_added SPN-42e900c07877e4c1 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.01"} 2026-01-29 18:56:38.507021+00 109 ISS-7be158d5b9729a85 span_added SPN-52c4c2f6b769746a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.946778+00 517 ISS-f785405e77359e08 span_added SPN-a050e527a0d27bfd \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-29 18:56:38.508036+00 518 ISS-3b8c83f268f333f1 span_added SPN-abc4ec558816dc30 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.01"} 2026-01-29 18:56:38.509266+00 519 ISS-f785405e77359e08 span_added SPN-69f53f2a87aa4b88 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-29 18:56:38.510233+00 113 ISS-d90ab89aaef2274d span_added SPN-181b2c580ccbb467 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.02"} 2026-01-25 04:14:06.951037+00 114 ISS-7be158d5b9729a85 span_added SPN-f274020a140ce09f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.955016+00 520 ISS-92c6065f803ac990 issue_created SPN-70204c4dbc6e619f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.05"} 2026-01-29 18:56:38.511286+00 521 ISS-f785405e77359e08 span_added SPN-856a2f5d644e317e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-29 18:56:38.512092+00 522 ISS-195897e06fb577b5 issue_created SPN-0ea0e71b3b91400d \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "R2.01"} 2026-01-29 18:56:38.512872+00 523 ISS-e4723a84baf4cc25 span_added SPN-dbab87b82c00f555 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "R1.01"} 2026-01-29 18:56:38.513852+00 524 ISS-fe5c50a4044aa2f4 span_added SPN-78ba83d850dc0f75 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-29 18:56:38.514957+00 525 ISS-35555dc37e49b8ae span_added SPN-acddf49a3dc1f9e7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.04"} 2026-01-29 18:56:38.51575+00 526 ISS-e0ea31c0c57819f8 issue_created SPN-ffbe09dd4cb388a4 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "V4.03"} 2026-01-29 18:56:38.518171+00 752 ISS-e685bc07e94b18ea span_added SPN-27b3e33e8f33519f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.686132+00 123 ISS-7be158d5b9729a85 span_added SPN-275078c4f329038d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.964348+00 753 ISS-d0352eb16fd469de issue_created SPN-decdbd90bdbe4211 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J3.01"} 2026-01-30 10:21:11.688006+00 125 ISS-7be158d5b9729a85 span_added SPN-f6abe0385b546313 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.965835+00 754 ISS-a434d9b15f750efe span_added SPN-145047dd74f5bed5 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O3.02"} 2026-01-30 10:21:11.690123+00 127 ISS-41697d28e2218161 span_added SPN-ed80fe815322bb4a \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:06.967797+00 755 ISS-cad89fbe0a3953e1 span_added SPN-138069bfb4d51fab \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.691957+00 756 ISS-75558e64a721aa47 span_added SPN-03ba493c7180d67f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V4.01"} 2026-01-30 10:21:11.69379+00 757 ISS-41697d28e2218161 span_added SPN-3e86257960bde6c3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.695548+00 758 ISS-fe5c50a4044aa2f4 span_added SPN-df9026e737ec936b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.697323+00 759 ISS-ef07fa1dbe32cea7 span_added SPN-985b5b6f0c41384e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P3.01"} 2026-01-30 10:21:11.699327+00 133 ISS-d90ab89aaef2274d span_added SPN-0bcace744b0c6558 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:06.973287+00 134 ISS-7be158d5b9729a85 span_added SPN-a578c8dd6ad7c2f0 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.974109+00 760 ISS-e685bc07e94b18ea span_added SPN-a32672abb4b8a7bb \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.701244+00 136 ISS-7be158d5b9729a85 span_added SPN-9a6ac7c016cb8d8f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.97639+00 761 ISS-d0352eb16fd469de span_added SPN-df6b004db38d2fd0 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J3.01"} 2026-01-30 10:21:11.703132+00 762 ISS-ee569d4829223b48 span_added SPN-dc1e1ad7108e607b \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O1.03"} 2026-01-30 10:21:11.704965+00 763 ISS-e685bc07e94b18ea span_added SPN-0533c4904ecba774 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "V1.01"} 2026-01-30 10:21:11.706755+00 140 ISS-7be158d5b9729a85 span_added SPN-74812842c4777058 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.97987+00 141 ISS-41697d28e2218161 span_added SPN-b04d8432dccd344d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:06.980566+00 764 ISS-ee569d4829223b48 span_added SPN-d69bc98fb78f7358 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.708527+00 765 ISS-cad89fbe0a3953e1 span_added SPN-203be958c9d83596 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.710401+00 144 ISS-7be158d5b9729a85 span_added SPN-f325972c2daf50b7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.983223+00 766 ISS-e685bc07e94b18ea span_added SPN-2542e48077441343 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.712413+00 767 ISS-e685bc07e94b18ea span_added SPN-73fddb9accf758ce \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.714196+00 768 ISS-e0ea31c0c57819f8 span_added SPN-af75eab0292619cb \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "V4.03"} 2026-01-30 10:21:11.716111+00 769 ISS-8280826420651a3f span_added SPN-1ac4d5f17e1e68a8 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "V3.01"} 2026-01-30 10:21:11.717871+00 149 ISS-7be158d5b9729a85 span_added SPN-3897e88edd332ffd \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.987634+00 150 ISS-7be158d5b9729a85 span_added SPN-33e93946266bf7c4 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:06.988408+00 527 ISS-e4723a84baf4cc25 span_added SPN-6ce8edbcfa6cdbae \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.01"} 2026-01-30 10:21:11.151805+00 528 ISS-e4723a84baf4cc25 span_added SPN-e4ba127f92459501 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.01"} 2026-01-30 10:21:11.156478+00 529 ISS-f785405e77359e08 span_added SPN-4688cc485e980f34 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.159739+00 154 ISS-7be158d5b9729a85 span_added SPN-0ab5de4ed600320a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.991904+00 530 ISS-ee569d4829223b48 issue_created SPN-391e5b370de23af9 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O1.03"} 2026-01-30 10:21:11.168122+00 156 ISS-7be158d5b9729a85 span_added SPN-cb0acf44d4bb07da \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.993783+00 531 ISS-fe1e5ecd5bbcf245 span_added SPN-4db12a6acd6fe99c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.02"} 2026-01-30 10:21:11.17297+00 158 ISS-41697d28e2218161 span_added SPN-7c27d1c2f928da00 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:06.995391+00 532 ISS-08bed4a863dfaafe issue_created SPN-148ef3e35ad4ea67 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O2.02"} 2026-01-30 10:21:11.176151+00 533 ISS-1d4fe8b431ce1ca4 issue_created SPN-a5bb25400f5df785 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E2.03"} 2026-01-30 10:21:11.179335+00 161 ISS-7be158d5b9729a85 span_added SPN-d9083f3f342a9d96 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:06.997766+00 162 ISS-41697d28e2218161 span_added SPN-1d27f317527163b7 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-25 04:14:06.998547+00 534 ISS-cad89fbe0a3953e1 span_added SPN-13f243370b022be0 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.182603+00 164 ISS-d90ab89aaef2274d span_added SPN-f893e397a6730d4e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.000217+00 165 ISS-7be158d5b9729a85 span_added SPN-5a46cab13a9540be \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.001129+00 166 ISS-7be158d5b9729a85 span_added SPN-40f559c973c9ba49 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.002129+00 535 ISS-cc9313fbff47f93e span_added SPN-be6beb2f43c1b3a4 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.185562+00 536 ISS-d6819a88b82e967a span_added SPN-ed0d4f1e09793158 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-30 10:21:11.1884+00 537 ISS-fe5c50a4044aa2f4 span_added SPN-51953e48cb1582de \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.19099+00 170 ISS-7be158d5b9729a85 span_added SPN-bdadedeec416429e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.008984+00 171 ISS-7be158d5b9729a85 span_added SPN-5a2787b4dfa9499c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.009836+00 172 ISS-d90ab89aaef2274d span_added SPN-fe4fc6637df42b26 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.02"} 2026-01-25 04:14:07.01062+00 538 ISS-5e3ed53e0be7f3c0 issue_created SPN-d8a31b096aabb00d \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O4.03"} 2026-01-30 10:21:11.193697+00 539 ISS-d6819a88b82e967a span_added SPN-c693d08d4d060b95 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-30 10:21:11.196686+00 540 ISS-078ab863a4a516d9 span_added SPN-fe33d43fc1317fe2 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.03"} 2026-01-30 10:21:11.199442+00 541 ISS-113fccdc173f39ed issue_created SPN-be4c5b6bae2452e1 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R4.04"} 2026-01-30 10:21:11.202577+00 542 ISS-098fa9745f36247a span_added SPN-37769576f6b1b883 \N \N {"valence": "V±", "intensity": "I1", "urt_primary": "A4.01"} 2026-01-30 10:21:11.205495+00 543 ISS-d6819a88b82e967a span_added SPN-6e2b5f16ce43b606 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-30 10:21:11.208319+00 179 ISS-7be158d5b9729a85 span_added SPN-b5927e53e6a8f0cd \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.016135+00 544 ISS-113fccdc173f39ed span_added SPN-956bc2d46fc1c9c6 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R4.04"} 2026-01-30 10:21:11.210764+00 181 ISS-41697d28e2218161 span_added SPN-a28145a64922d657 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-25 04:14:07.018058+00 545 ISS-e685bc07e94b18ea span_added SPN-81a382ecb0485ddd \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "V1.01"} 2026-01-30 10:21:11.213561+00 546 ISS-191ee4738f1076aa span_added SPN-02a88cc6b8ce22d6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.03"} 2026-01-30 10:21:11.216591+00 547 ISS-271321674127096e issue_created SPN-f7e6d9722955335d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.01"} 2026-01-30 10:21:11.219302+00 185 ISS-7be158d5b9729a85 span_added SPN-1077b0426a84984b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.021588+00 186 ISS-d90ab89aaef2274d span_added SPN-43c2759fc6d4b324 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.022327+00 548 ISS-d90ab89aaef2274d span_added SPN-8ce2d48294a864a9 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-30 10:21:11.222183+00 188 ISS-d90ab89aaef2274d span_added SPN-cef1f8014cc867ed \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.023887+00 189 ISS-7be158d5b9729a85 span_added SPN-f886195468a4214f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.024966+00 549 ISS-41697d28e2218161 span_added SPN-af14aa921d2c7a8a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-30 10:21:11.225418+00 550 ISS-8280826420651a3f issue_created SPN-be6e52379d73789b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V3.01"} 2026-01-30 10:21:11.228309+00 551 ISS-fe5c50a4044aa2f4 span_added SPN-b37cb89a61cc0e58 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.231242+00 193 ISS-41697d28e2218161 span_added SPN-bbcc9251ceadf0c5 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.028486+00 552 ISS-e685bc07e94b18ea span_added SPN-cdfca85da8ac47bc \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.01"} 2026-01-30 10:21:11.234227+00 195 ISS-7be158d5b9729a85 span_added SPN-c50b66178ee13c3c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.030067+00 553 ISS-fe5c50a4044aa2f4 span_added SPN-1747c24c0026d700 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.237505+00 554 ISS-7a748c1b9bf5d444 issue_created SPN-68aefe1caec827ae \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.05"} 2026-01-30 10:21:11.240609+00 198 ISS-7be158d5b9729a85 span_added SPN-0df5b8c725003fde \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.032518+00 199 ISS-7be158d5b9729a85 span_added SPN-a3296d5903a1a27f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.033322+00 200 ISS-7be158d5b9729a85 span_added SPN-9f752a5dd20e38fe \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.034428+00 555 ISS-5403c6a364f75355 issue_created SPN-22fc9f96e423dee6 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O4.04"} 2026-01-30 10:21:11.24342+00 556 ISS-e685bc07e94b18ea span_added SPN-26c9e050dfaf7873 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.246837+00 203 ISS-7be158d5b9729a85 span_added SPN-e36e28a16ff120db \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.037244+00 557 ISS-75558e64a721aa47 issue_created SPN-b75249e2dac4d6ca \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V4.01"} 2026-01-30 10:21:11.249661+00 558 ISS-cc9313fbff47f93e span_added SPN-10680e8c75c91e06 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.252372+00 559 ISS-6a7bcea38f5e9028 span_added SPN-4a002ac3166844d4 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "E1.04"} 2026-01-30 10:21:11.255408+00 560 ISS-91b7998fc96d9d94 issue_created SPN-81806b44af1c34b8 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O2.03"} 2026-01-30 10:21:11.258019+00 561 ISS-5e3ed53e0be7f3c0 span_added SPN-a3a0fce01d9f66f8 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O4.03"} 2026-01-30 10:21:11.261418+00 562 ISS-7be158d5b9729a85 span_added SPN-8dc423acc45f509f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-30 10:21:11.267296+00 563 ISS-dd796399381127dc span_added SPN-48f3d9524a2df5ca \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.03"} 2026-01-30 10:21:11.270139+00 211 ISS-41697d28e2218161 span_added SPN-2370626ee7c01678 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.044389+00 564 ISS-cc9313fbff47f93e span_added SPN-fe9e651c75b68a07 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.273434+00 565 ISS-e685bc07e94b18ea span_added SPN-8f65535e807c6d04 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.276426+00 214 ISS-7be158d5b9729a85 span_added SPN-3d835dbde9699dc6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.046656+00 566 ISS-fe5c50a4044aa2f4 span_added SPN-a9019e22a75d3e72 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.279375+00 567 ISS-fe5c50a4044aa2f4 span_added SPN-a5073b359f8d9e7f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.282534+00 568 ISS-f785405e77359e08 span_added SPN-8a1372a5214fd85d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.285359+00 569 ISS-f07d7cc62ddfbed9 issue_created SPN-3cb0afc889ff3d44 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P3.05"} 2026-01-30 10:21:11.288617+00 570 ISS-3b8c83f268f333f1 span_added SPN-5b1a9350c050d7c6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.01"} 2026-01-30 10:21:11.291413+00 571 ISS-e3fac9553b7a3594 span_added SPN-40a90fcada46145c \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.01"} 2026-01-30 10:21:11.294467+00 221 ISS-7be158d5b9729a85 span_added SPN-344dabee9da1ee5b \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.052877+00 222 ISS-41697d28e2218161 span_added SPN-543d228589ba244e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-25 04:14:07.053788+00 572 ISS-e685bc07e94b18ea span_added SPN-be22e4a5305bd760 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.297403+00 224 ISS-7be158d5b9729a85 span_added SPN-55db8f5805286894 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.055492+00 573 ISS-a434d9b15f750efe issue_created SPN-f745b37e8d3b32a2 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O3.02"} 2026-01-30 10:21:11.30041+00 574 ISS-3456b545c929e40e issue_created SPN-82e750b36e275e17 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O1.04"} 2026-01-30 10:21:11.30304+00 575 ISS-f785405e77359e08 span_added SPN-476d28765337fc2e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.305761+00 576 ISS-c16a71e2a54d7a0f issue_created SPN-723786b290da2ead \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P2.04"} 2026-01-30 10:21:11.308263+00 229 ISS-7be158d5b9729a85 span_added SPN-b532b93e3c7ee213 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.06072+00 577 ISS-3456b545c929e40e span_added SPN-03dcea00612a3d6c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.04"} 2026-01-30 10:21:11.310599+00 578 ISS-f785405e77359e08 span_added SPN-123f85066203800e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-30 10:21:11.313102+00 579 ISS-f785405e77359e08 span_added SPN-ccf2e11a4be6cdb0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.315871+00 580 ISS-4ada940a859c600c issue_created SPN-27d285a128d34bbd \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P2.01"} 2026-01-30 10:21:11.318208+00 581 ISS-6a7bcea38f5e9028 span_added SPN-4a0745019944b25a \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "E1.04"} 2026-01-30 10:21:11.320467+00 582 ISS-d90ab89aaef2274d span_added SPN-7a52fe7a79b85095 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-30 10:21:11.322778+00 583 ISS-cd62494890a5c56f issue_created SPN-51c98795a3795550 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P4.01"} 2026-01-30 10:21:11.324968+00 584 ISS-e0ea31c0c57819f8 span_added SPN-910b0671168d0474 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.327109+00 585 ISS-b587e768bb4d59db issue_created SPN-b96883dfa2899cc3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.03"} 2026-01-30 10:21:11.329248+00 586 ISS-41697d28e2218161 span_added SPN-159f94e83d23b89d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.331673+00 587 ISS-95a4d4ade69194d1 issue_created SPN-1db98ca32829203f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J2.02"} 2026-01-30 10:21:11.333975+00 241 ISS-7be158d5b9729a85 span_added SPN-2f2cff9d8b3c53f4 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.070817+00 242 ISS-41697d28e2218161 span_added SPN-fb92c1259da987c1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.071557+00 588 ISS-e3fac9553b7a3594 span_added SPN-2ca36e061dacd8b7 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.01"} 2026-01-30 10:21:11.336322+00 589 ISS-8280826420651a3f span_added SPN-4b66ad5b165dc89b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V3.01"} 2026-01-30 10:21:11.338655+00 590 ISS-7a748c1b9bf5d444 span_added SPN-950bd3e0484a3a03 \N \N {"valence": "V±", "intensity": "I1", "urt_primary": "J1.05"} 2026-01-30 10:21:11.340918+00 246 ISS-7be158d5b9729a85 span_added SPN-940d9f8fc7ec2038 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.074691+00 591 ISS-6a7bcea38f5e9028 span_added SPN-3930f5e4142ae8d1 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "E1.04"} 2026-01-30 10:21:11.343144+00 592 ISS-ee569d4829223b48 span_added SPN-ea1ebed6c978af9e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.345333+00 593 ISS-f785405e77359e08 span_added SPN-ff189097c59f8efc \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.347541+00 594 ISS-e685bc07e94b18ea span_added SPN-9b8db09fbde5484a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.01"} 2026-01-30 10:21:11.3499+00 251 ISS-d90ab89aaef2274d span_added SPN-e50a58a7f9dfcc8f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.080642+00 595 ISS-e6b6dd8da4de4df5 issue_created SPN-300c4ca9a7235b81 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V2.05"} 2026-01-30 10:21:11.352112+00 253 ISS-7be158d5b9729a85 span_added SPN-55364a33557846b4 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.082682+00 596 ISS-ee569d4829223b48 span_added SPN-6eed7dd60a402f29 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.354362+00 255 ISS-7be158d5b9729a85 span_added SPN-a1307e73378b98ad \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.085017+00 597 ISS-e0ea31c0c57819f8 span_added SPN-f3331587a6cc5d46 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.356578+00 598 ISS-f785405e77359e08 span_added SPN-aabea9247f5e2bbd \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.358781+00 258 ISS-d90ab89aaef2274d span_added SPN-e928fb90dc181a8f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.088445+00 599 ISS-41697d28e2218161 span_added SPN-93850d2013a7e799 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-30 10:21:11.360885+00 600 ISS-e0ea31c0c57819f8 span_added SPN-63f27e8056e5a1f4 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.363227+00 601 ISS-a434d9b15f750efe span_added SPN-b917ab34679df789 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O3.02"} 2026-01-30 10:21:11.365891+00 262 ISS-7be158d5b9729a85 span_added SPN-ba7771d47381a4c2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.092713+00 602 ISS-95a4d4ade69194d1 span_added SPN-121bc2b2ea02439a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J2.02"} 2026-01-30 10:21:11.367976+00 603 ISS-d6819a88b82e967a span_added SPN-9d502352868882a6 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-30 10:21:11.37019+00 265 ISS-d90ab89aaef2274d span_added SPN-3b4966145cb2014d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.095885+00 604 ISS-ee569d4829223b48 span_added SPN-97110383f4b0afd5 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.03"} 2026-01-30 10:21:11.37262+00 605 ISS-75558e64a721aa47 span_added SPN-f87b329b066e00aa \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V4.01"} 2026-01-30 10:21:11.375032+00 606 ISS-4ada940a859c600c span_added SPN-fc50de1492f561e7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P2.01"} 2026-01-30 10:21:11.377445+00 269 ISS-d90ab89aaef2274d span_added SPN-46783cdca95994ae \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.02"} 2026-01-25 04:14:07.10014+00 607 ISS-191ee4738f1076aa span_added SPN-015cd07b56cb9555 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E1.03"} 2026-01-30 10:21:11.380147+00 608 ISS-f785405e77359e08 span_added SPN-41083e1fb52ebe3f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.382794+00 609 ISS-95a4d4ade69194d1 span_added SPN-2dcc7d015f0b0b08 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J2.02"} 2026-01-30 10:21:11.385318+00 273 ISS-7be158d5b9729a85 span_added SPN-e3804c5f016fa114 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.104687+00 274 ISS-7be158d5b9729a85 span_added SPN-5be105b73277b23f \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.105774+00 275 ISS-7be158d5b9729a85 span_added SPN-8941b8a23d3e81c2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.10681+00 610 ISS-f07d7cc62ddfbed9 span_added SPN-50b6d73e5b3d3f3b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P3.05"} 2026-01-30 10:21:11.387645+00 277 ISS-d90ab89aaef2274d span_added SPN-5c9f84470ee25dca \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.109217+00 278 ISS-7be158d5b9729a85 span_added SPN-260e4c65d1fb9754 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.11018+00 611 ISS-95a4d4ade69194d1 span_added SPN-f9aa285c05e081dc \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J2.02"} 2026-01-30 10:21:11.390059+00 280 ISS-7be158d5b9729a85 span_added SPN-28f0bac8ac763313 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.111698+00 612 ISS-18073f3a78b59ede issue_created SPN-4ce1b903cc6e18ad \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A3.01"} 2026-01-30 10:21:11.39236+00 613 ISS-41697d28e2218161 span_added SPN-0cae672441422afe \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-30 10:21:11.394748+00 283 ISS-7be158d5b9729a85 span_added SPN-3fba9fe2590e20ce \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.114122+00 284 ISS-41697d28e2218161 span_added SPN-1535b5f23746d9c3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.115212+00 285 ISS-cad89fbe0a3953e1 span_added SPN-cd609e35736b9715 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-25 04:14:07.116043+00 286 ISS-7be158d5b9729a85 span_added SPN-47d3f27a72af1764 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.11696+00 614 ISS-3701555d3346a7ce issue_created SPN-4a9b5a8641b05986 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.05"} 2026-01-30 10:21:11.397793+00 288 ISS-7be158d5b9729a85 span_added SPN-19bc42d6af03d38d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.119076+00 615 ISS-3b8c83f268f333f1 span_added SPN-922325c2866be20e \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "E1.01"} 2026-01-30 10:21:11.400732+00 290 ISS-7be158d5b9729a85 span_added SPN-f90e56a4f32a994c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.120993+00 616 ISS-e685bc07e94b18ea span_added SPN-72bad6c4d6088571 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.403026+00 617 ISS-cad89fbe0a3953e1 span_added SPN-b367cb1038555e0b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.405603+00 618 ISS-f785405e77359e08 span_added SPN-eb79055e23c0ef4c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.407886+00 619 ISS-e0ea31c0c57819f8 span_added SPN-ab6cedd308f41a12 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.410047+00 295 ISS-41697d28e2218161 span_added SPN-9ce0d178f28a2505 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.125361+00 620 ISS-e685bc07e94b18ea span_added SPN-248781a17c913772 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.412153+00 297 ISS-7be158d5b9729a85 span_added SPN-03a66f22bf2a267e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.12729+00 298 ISS-7be158d5b9729a85 span_added SPN-bf0ac7bd54e2c8c8 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.128256+00 299 ISS-7be158d5b9729a85 span_added SPN-385529f6636c80f1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.129396+00 300 ISS-41697d28e2218161 span_added SPN-ffb26593182ce612 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.130234+00 301 ISS-7be158d5b9729a85 span_added SPN-56aaa323e40d6a7f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.131028+00 302 ISS-7be158d5b9729a85 span_added SPN-f5b20a9acd3c4d2f \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.131815+00 621 ISS-a434d9b15f750efe span_added SPN-9b5d85612bb8b670 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O3.02"} 2026-01-30 10:21:11.41431+00 622 ISS-9d6e8372fac5f41c issue_created SPN-f418884ef5defb4e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A3.02"} 2026-01-30 10:21:11.416565+00 623 ISS-fe5c50a4044aa2f4 span_added SPN-c35e549072bc2bea \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.418944+00 624 ISS-fe5c50a4044aa2f4 span_added SPN-c4bae320d497e502 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.421091+00 625 ISS-41697d28e2218161 span_added SPN-1b7b0d8cc371cef8 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.423262+00 626 ISS-41697d28e2218161 span_added SPN-edccea6fed96bca9 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.425343+00 627 ISS-75558e64a721aa47 span_added SPN-bbba3f31f78dcf08 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V4.01"} 2026-01-30 10:21:11.427438+00 628 ISS-f785405e77359e08 span_added SPN-58cc9c3df222e07d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.429514+00 629 ISS-cad89fbe0a3953e1 span_added SPN-0e532dfa83789596 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.02"} 2026-01-30 10:21:11.431662+00 630 ISS-e0ea31c0c57819f8 span_added SPN-6079e040f505d209 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.433664+00 631 ISS-01d6eec572e0e029 issue_created SPN-4b9d35458e245f9c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J2.01"} 2026-01-30 10:21:11.435501+00 632 ISS-f785405e77359e08 span_added SPN-50386b2d398056fb \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.437386+00 633 ISS-078ab863a4a516d9 span_added SPN-24416d32209468eb \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.03"} 2026-01-30 10:21:11.439284+00 316 ISS-7be158d5b9729a85 span_added SPN-36ca87d87909342f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.144412+00 634 ISS-f785405e77359e08 span_added SPN-279306dffd1c05bf \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.44115+00 635 ISS-e0ea31c0c57819f8 span_added SPN-6f563014ac195a96 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "V4.03"} 2026-01-30 10:21:11.442882+00 636 ISS-e685bc07e94b18ea span_added SPN-7c1509089d29b2a0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.01"} 2026-01-30 10:21:11.444819+00 320 ISS-7be158d5b9729a85 span_added SPN-83515013604615fe \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.147925+00 637 ISS-75558e64a721aa47 span_added SPN-aadcc27c320542e3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V4.01"} 2026-01-30 10:21:11.447102+00 638 ISS-fe5c50a4044aa2f4 span_added SPN-d477e9e5ba57de7b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.449386+00 639 ISS-ee569d4829223b48 span_added SPN-4cd8a92182f53a65 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O1.03"} 2026-01-30 10:21:11.451197+00 640 ISS-19a583cc00e8d7df issue_created SPN-a9139cd9b49854f3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A2.02"} 2026-01-30 10:21:11.453283+00 641 ISS-cc9313fbff47f93e span_added SPN-190c6e21f591cd3a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.455486+00 642 ISS-0b3ad42a9be5e266 issue_created SPN-e326d4217ace0b94 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "E3.01"} 2026-01-30 10:21:11.457785+00 643 ISS-cad89fbe0a3953e1 span_added SPN-44a78c6a52229763 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.459799+00 644 ISS-95a4d4ade69194d1 span_added SPN-7e240cebce303418 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J2.02"} 2026-01-30 10:21:11.461969+00 329 ISS-d90ab89aaef2274d span_added SPN-fa0ef5810c985a59 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.156079+00 330 ISS-7be158d5b9729a85 span_added SPN-99e93bbdb3cd1655 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.157076+00 331 ISS-d90ab89aaef2274d span_added SPN-1c9adf9954cfeac3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.158198+00 332 ISS-7be158d5b9729a85 span_added SPN-688206b57e08cf56 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.159115+00 645 ISS-cad89fbe0a3953e1 span_added SPN-56d35a77716185d4 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.466971+00 646 ISS-cc9313fbff47f93e span_added SPN-8be7b26230b7d0a7 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.469143+00 647 ISS-e3fac9553b7a3594 span_added SPN-50e24b89c4548282 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.01"} 2026-01-30 10:21:11.470989+00 648 ISS-fe5c50a4044aa2f4 span_added SPN-2bab64dae910386c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.472846+00 337 ISS-7be158d5b9729a85 span_added SPN-a6d6de1575f1ce10 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.163718+00 649 ISS-f785405e77359e08 span_added SPN-80ab879ad29d3e23 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.47483+00 650 ISS-9138b3638df2c9d6 issue_created SPN-c161607febe7285c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P2.05"} 2026-01-30 10:21:11.476975+00 651 ISS-a434d9b15f750efe span_added SPN-c1f2c74c7a200f27 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O3.02"} 2026-01-30 10:21:11.479137+00 652 ISS-dd796399381127dc span_added SPN-d0b978cb2d15b674 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.03"} 2026-01-30 10:21:11.481205+00 653 ISS-271321674127096e span_added SPN-35a24a44da48ff98 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.01"} 2026-01-30 10:21:11.483121+00 654 ISS-1d4fe8b431ce1ca4 span_added SPN-d50ae9914aac6419 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E2.03"} 2026-01-30 10:21:11.48518+00 344 ISS-7be158d5b9729a85 span_added SPN-f1586d9e0e28f96c \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.170195+00 655 ISS-e685bc07e94b18ea span_added SPN-d50a05c27937f683 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.48714+00 656 ISS-3701555d3346a7ce span_added SPN-20115b3abee9b678 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.05"} 2026-01-30 10:21:11.489036+00 657 ISS-fe5c50a4044aa2f4 span_added SPN-351991b576524539 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.490895+00 658 ISS-ef07fa1dbe32cea7 issue_created SPN-f9d8b297dc5de821 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P3.01"} 2026-01-30 10:21:11.492718+00 659 ISS-fe5c50a4044aa2f4 span_added SPN-d8d67b4759b8bd23 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.494594+00 350 ISS-7be158d5b9729a85 span_added SPN-f4836d421505fcd8 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.175989+00 660 ISS-f785405e77359e08 span_added SPN-95a7c4023f8e149f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.496638+00 661 ISS-e53778b2e61bb5d2 issue_created SPN-a29ec1506d5b8e5b \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R4.03"} 2026-01-30 10:21:11.498486+00 662 ISS-f785405e77359e08 span_added SPN-02650a249143372f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.500494+00 663 ISS-f785405e77359e08 span_added SPN-10a0d519daa28793 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.02"} 2026-01-30 10:21:11.502474+00 664 ISS-fe5c50a4044aa2f4 span_added SPN-40e852fd12d1ef86 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.50435+00 665 ISS-7be158d5b9729a85 span_added SPN-fa9e50e32bf98bee \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-30 10:21:11.506146+00 666 ISS-75558e64a721aa47 span_added SPN-390f64fee7748a61 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.01"} 2026-01-30 10:21:11.50798+00 667 ISS-e53778b2e61bb5d2 span_added SPN-75d36b861b03f672 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R4.03"} 2026-01-30 10:21:11.510071+00 359 ISS-d90ab89aaef2274d span_added SPN-f83e70d8634a9be2 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.02"} 2026-01-25 04:14:07.183607+00 360 ISS-7be158d5b9729a85 span_added SPN-64cb271d457efc50 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.18462+00 361 ISS-d90ab89aaef2274d span_added SPN-0caf5865668e6832 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.185636+00 362 ISS-d90ab89aaef2274d span_added SPN-bd260cefa30a5f06 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.186784+00 668 ISS-6c64d9e3edbfb946 issue_created SPN-4b808d60bf7f17f7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R3.04"} 2026-01-30 10:21:11.511888+00 669 ISS-3456b545c929e40e span_added SPN-bc72ffb8f0290b72 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.04"} 2026-01-30 10:21:11.513849+00 365 ISS-7be158d5b9729a85 span_added SPN-56c29d0870142a51 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.189255+00 670 ISS-5403c6a364f75355 span_added SPN-fb4e94b32b77346e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O4.04"} 2026-01-30 10:21:11.515774+00 671 ISS-a434d9b15f750efe span_added SPN-1c0f5b6e78142e33 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "O3.02"} 2026-01-30 10:21:11.517597+00 672 ISS-fe5c50a4044aa2f4 span_added SPN-e10e78cbca99dfa5 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.519514+00 369 ISS-7be158d5b9729a85 span_added SPN-d6ea301e8b8b2ed6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.192656+00 673 ISS-fe5c50a4044aa2f4 span_added SPN-75020be9bb85cc92 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.521353+00 371 ISS-7be158d5b9729a85 span_added SPN-aca7f61fa446cfc8 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.194676+00 372 ISS-41697d28e2218161 span_added SPN-c392736392ec5420 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.195583+00 674 ISS-fe5c50a4044aa2f4 span_added SPN-dc11ae56cda65222 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.523253+00 675 ISS-ef07fa1dbe32cea7 span_added SPN-0106b53693d20a97 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P3.01"} 2026-01-30 10:21:11.525643+00 676 ISS-e4723a84baf4cc25 span_added SPN-c82a6d8f3410c4d6 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.01"} 2026-01-30 10:21:11.52771+00 376 ISS-d90ab89aaef2274d span_added SPN-556c1a9c7918f6ed \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.200501+00 677 ISS-d6819a88b82e967a span_added SPN-d5676e89bf4589e7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.02"} 2026-01-30 10:21:11.529595+00 378 ISS-41697d28e2218161 span_added SPN-502f9ac70fd3b4f3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.206996+00 379 ISS-7be158d5b9729a85 span_added SPN-cd1b720d40e12056 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.207833+00 678 ISS-e0ea31c0c57819f8 span_added SPN-b39a48760170f96d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.531408+00 381 ISS-7be158d5b9729a85 span_added SPN-33884741cdfd0e0a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.210095+00 679 ISS-f96b272182c47b6f issue_created SPN-e7eb7623e3c988ff \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P4.03"} 2026-01-30 10:21:11.533379+00 680 ISS-f785405e77359e08 span_added SPN-7239a70cc615ea0e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.535476+00 384 ISS-d90ab89aaef2274d span_added SPN-980e2b3a9d53a525 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.212698+00 681 ISS-e0ea31c0c57819f8 span_added SPN-0b1d84cdbed37497 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.53737+00 386 ISS-7be158d5b9729a85 span_added SPN-8218d6d3242a501e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.214526+00 387 ISS-7be158d5b9729a85 span_added SPN-c2839057057d9246 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.215522+00 682 ISS-41697d28e2218161 span_added SPN-e73f427caf7c5ec9 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.539487+00 683 ISS-ee569d4829223b48 span_added SPN-03d368f31fee3489 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.541408+00 684 ISS-ee569d4829223b48 span_added SPN-6c7ed61a7406a786 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.543296+00 391 ISS-7be158d5b9729a85 span_added SPN-e04766df8c68b97a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.219388+00 685 ISS-cc9313fbff47f93e span_added SPN-3dfaf804cf6359ed \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.01"} 2026-01-30 10:21:11.545296+00 686 ISS-e53778b2e61bb5d2 span_added SPN-0fb9c997b10934c1 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R4.03"} 2026-01-30 10:21:11.547222+00 687 ISS-ee569d4829223b48 span_added SPN-7f1c579aa313c530 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.549089+00 688 ISS-e3fac9553b7a3594 span_added SPN-a5f114b8f3f5fd3e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.01"} 2026-01-30 10:21:11.551777+00 689 ISS-e0ea31c0c57819f8 span_added SPN-b086b168916e6345 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.556371+00 690 ISS-01d6eec572e0e029 span_added SPN-82aa99b038d76ffa \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J2.01"} 2026-01-30 10:21:11.558976+00 398 ISS-7be158d5b9729a85 span_added SPN-40c2b3008249e620 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.226404+00 691 ISS-e0ea31c0c57819f8 span_added SPN-47370758e201fd56 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.561202+00 400 ISS-7be158d5b9729a85 span_added SPN-269d9b73d1db8efa \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.228471+00 692 ISS-030f1fbb76e75ab1 span_added SPN-1535f2a5feaff0b0 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.01"} 2026-01-30 10:21:11.563174+00 693 ISS-e3fac9553b7a3594 span_added SPN-9ea7e8994ad0c894 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "J1.01"} 2026-01-30 10:21:11.565042+00 694 ISS-dd796399381127dc span_added SPN-a52ae9307a0f48ef \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.03"} 2026-01-30 10:21:11.566955+00 404 ISS-7be158d5b9729a85 span_added SPN-93935d2fbe773f24 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.232057+00 405 ISS-7be158d5b9729a85 span_added SPN-dc6a16f80e28524f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.232907+00 695 ISS-d6819a88b82e967a span_added SPN-9168351e4e6ad0aa \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.02"} 2026-01-30 10:21:11.568947+00 407 ISS-d90ab89aaef2274d span_added SPN-e89ec6d9c79fd002 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.02"} 2026-01-25 04:14:07.234882+00 408 ISS-7be158d5b9729a85 span_added SPN-5494d867a940a4f0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.236035+00 696 ISS-d6819a88b82e967a span_added SPN-d4f4789ee7432fb3 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.02"} 2026-01-30 10:21:11.571041+00 410 ISS-7be158d5b9729a85 span_added SPN-089c4fad8da82aa2 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.237967+00 697 ISS-7a748c1b9bf5d444 span_added SPN-142b421d082b281f \N \N {"valence": "V±", "intensity": "I1", "urt_primary": "J1.05"} 2026-01-30 10:21:11.572967+00 412 ISS-7be158d5b9729a85 span_added SPN-844e3c0a1309609a \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.239669+00 698 ISS-41697d28e2218161 span_added SPN-2c3c677f6a27058c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.574994+00 699 ISS-7a748c1b9bf5d444 span_added SPN-bd16347532028e92 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.05"} 2026-01-30 10:21:11.577129+00 700 ISS-e685bc07e94b18ea span_added SPN-71819d5359533f61 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.579302+00 701 ISS-e685bc07e94b18ea span_added SPN-ae535cef738f020d \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "V1.01"} 2026-01-30 10:21:11.581265+00 417 ISS-7be158d5b9729a85 span_added SPN-b9831aa569c99d81 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.243886+00 418 ISS-7be158d5b9729a85 span_added SPN-2eb310cb5e8ac092 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.244717+00 419 ISS-7be158d5b9729a85 span_added SPN-00b1e34437db124c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.245539+00 420 ISS-7be158d5b9729a85 span_added SPN-9b7fe7f516ff792e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.246447+00 702 ISS-cc9313fbff47f93e span_added SPN-ca0484e9148e0f47 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.01"} 2026-01-30 10:21:11.584068+00 703 ISS-cc9313fbff47f93e span_added SPN-6560402c8164398e \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.587968+00 423 ISS-7be158d5b9729a85 span_added SPN-ff1ccea4864eeb78 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.249021+00 424 ISS-7be158d5b9729a85 span_added SPN-fbf879c5c5233ee6 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.249864+00 704 ISS-078ab863a4a516d9 span_added SPN-0ea08129a6794e4a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V1.03"} 2026-01-30 10:21:11.590353+00 426 ISS-7be158d5b9729a85 span_added SPN-c9ad88b5fbbaabb5 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.251751+00 427 ISS-7be158d5b9729a85 span_added SPN-88b69b246bbb397c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.252816+00 428 ISS-7be158d5b9729a85 span_added SPN-ad06f69632b4bec0 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.253711+00 429 ISS-7be158d5b9729a85 span_added SPN-89b0f8bcb164c34d \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.254519+00 430 ISS-d90ab89aaef2274d span_added SPN-3cdac599c3150ca1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.255491+00 705 ISS-b587e768bb4d59db span_added SPN-07fe9a9823f017c1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.03"} 2026-01-30 10:21:11.592346+00 432 ISS-d90ab89aaef2274d span_added SPN-6e2b80f10e12b4a9 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-25 04:14:07.25712+00 706 ISS-e685bc07e94b18ea span_added SPN-21c5a57a216271fe \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.01"} 2026-01-30 10:21:11.594469+00 434 ISS-7be158d5b9729a85 span_added SPN-893ac995202587e7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.259077+00 707 ISS-f785405e77359e08 span_added SPN-01bee5854bf40f09 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.596446+00 708 ISS-fe5c50a4044aa2f4 span_added SPN-bd92c6e429c6f6c5 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.598382+00 437 ISS-7be158d5b9729a85 span_added SPN-1d230c80a132e8be \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.261813+00 438 ISS-7be158d5b9729a85 span_added SPN-ed55c968ff1f9e78 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.262705+00 439 ISS-7be158d5b9729a85 span_added SPN-299238c763602631 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.263439+00 440 ISS-7be158d5b9729a85 span_added SPN-ed2550ecd851d028 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.264252+00 441 ISS-7be158d5b9729a85 span_added SPN-cd3dcaff73e8195c \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.264997+00 442 ISS-7be158d5b9729a85 span_added SPN-2a5ca28e6bd18bf8 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.265983+00 443 ISS-41697d28e2218161 span_added SPN-3b8acb7b4e968aec \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-25 04:14:07.266827+00 444 ISS-7be158d5b9729a85 span_added SPN-1b13a0341667c70b \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.267725+00 445 ISS-7be158d5b9729a85 span_added SPN-c3210ac91a35d8ef \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.268617+00 446 ISS-7be158d5b9729a85 span_added SPN-582cf639bf5e3a1f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.269679+00 447 ISS-41697d28e2218161 span_added SPN-517bfca327311b08 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.02"} 2026-01-25 04:14:07.270469+00 448 ISS-d90ab89aaef2274d span_added SPN-9e8f14956ec2364f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "A1.02"} 2026-01-25 04:14:07.271309+00 709 ISS-195897e06fb577b5 span_added SPN-d436875d661d6cb8 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R2.01"} 2026-01-30 10:21:11.600284+00 450 ISS-7be158d5b9729a85 span_added SPN-d54847e6b20438c9 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.02"} 2026-01-25 04:14:07.273045+00 451 ISS-7be158d5b9729a85 span_added SPN-b7e0b4dc835344f6 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.02"} 2026-01-25 04:14:07.274008+00 710 ISS-d6819a88b82e967a span_added SPN-581eccaeddf57bca \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-30 10:21:11.602432+00 711 ISS-fe5c50a4044aa2f4 span_added SPN-b9880423cd2cc765 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.604321+00 712 ISS-95a4d4ade69194d1 span_added SPN-bb774bb1a168d2eb \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J2.02"} 2026-01-30 10:21:11.606152+00 713 ISS-41697d28e2218161 span_added SPN-762c2b859363ff55 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.608+00 714 ISS-098fa9745f36247a span_added SPN-6e11f33bea2d5a87 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A4.01"} 2026-01-30 10:21:11.60984+00 715 ISS-95a4d4ade69194d1 span_added SPN-04ad8facfeb33126 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J2.02"} 2026-01-30 10:21:11.611673+00 716 ISS-3456b545c929e40e span_added SPN-0f61e647afd6a19e \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.04"} 2026-01-30 10:21:11.613423+00 717 ISS-fe5c50a4044aa2f4 span_added SPN-790f0676b2bda46d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.615553+00 718 ISS-ef07fa1dbe32cea7 span_added SPN-ca97df064fdf9dae \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P3.01"} 2026-01-30 10:21:11.617507+00 719 ISS-f785405e77359e08 span_added SPN-be2001164e73630f \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.61937+00 720 ISS-3b8c83f268f333f1 span_added SPN-623eedfc4d375fe0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.01"} 2026-01-30 10:21:11.621534+00 721 ISS-030f1fbb76e75ab1 span_added SPN-5c321f076b793e2d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.01"} 2026-01-30 10:21:11.623482+00 722 ISS-f785405e77359e08 span_added SPN-75c35a0414af00f4 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.625343+00 723 ISS-3b8c83f268f333f1 span_added SPN-ee9c3c54342d5ba5 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E1.01"} 2026-01-30 10:21:11.627534+00 724 ISS-e53778b2e61bb5d2 span_added SPN-83d66bf95996d43b \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R4.03"} 2026-01-30 10:21:11.629382+00 725 ISS-1d4fe8b431ce1ca4 span_added SPN-4e4c3ec076a9144a \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E2.03"} 2026-01-30 10:21:11.631415+00 726 ISS-41697d28e2218161 span_added SPN-dcb54ef1e3ecdee7 \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.633394+00 727 ISS-ee569d4829223b48 span_added SPN-f8299ce5a5960263 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.635371+00 728 ISS-e4723a84baf4cc25 span_added SPN-7f906effcf99bf52 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "R1.01"} 2026-01-30 10:21:11.637192+00 729 ISS-01d6eec572e0e029 span_added SPN-e19339cd51b89d84 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J2.01"} 2026-01-30 10:21:11.639233+00 730 ISS-d6819a88b82e967a span_added SPN-391610222ad70a37 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "R1.02"} 2026-01-30 10:21:11.641374+00 731 ISS-e0ea31c0c57819f8 span_added SPN-b4ad728fb6afd843 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "V4.03"} 2026-01-30 10:21:11.643328+00 732 ISS-fe5c50a4044aa2f4 span_added SPN-09e5b914fe19804a \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "E4.01"} 2026-01-30 10:21:11.645278+00 733 ISS-d90ab89aaef2274d span_added SPN-163e76dc10192193 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "A1.02"} 2026-01-30 10:21:11.647415+00 734 ISS-cc9313fbff47f93e span_added SPN-8e537558f4fc0f51 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "P1.01"} 2026-01-30 10:21:11.649342+00 735 ISS-41697d28e2218161 span_added SPN-7651de995f214ff1 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.02"} 2026-01-30 10:21:11.651237+00 736 ISS-030f1fbb76e75ab1 span_added SPN-c11ae4fb952f7052 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.01"} 2026-01-30 10:21:11.653024+00 737 ISS-fe5c50a4044aa2f4 span_added SPN-aa19e6e7238845b0 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.654842+00 738 ISS-cad89fbe0a3953e1 span_added SPN-107be62b32f747ff \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.656629+00 739 ISS-030f1fbb76e75ab1 span_added SPN-24161ea795d2d3ec \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.01"} 2026-01-30 10:21:11.658423+00 740 ISS-f785405e77359e08 span_added SPN-34aaf1041a942e7d \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.660339+00 741 ISS-cad89fbe0a3953e1 span_added SPN-5dff464ecc0d54bc \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "V1.02"} 2026-01-30 10:21:11.664766+00 742 ISS-cc9313fbff47f93e span_added SPN-1f8d168685842a76 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.01"} 2026-01-30 10:21:11.666766+00 743 ISS-ee569d4829223b48 span_added SPN-9a742f0e5831170d \N \N {"valence": "V±", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.66859+00 744 ISS-e3fac9553b7a3594 span_added SPN-b04e9958d6af71bd \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J1.01"} 2026-01-30 10:21:11.670389+00 745 ISS-e3fac9553b7a3594 span_added SPN-8890a96098468e3e \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "J1.01"} 2026-01-30 10:21:11.672316+00 746 ISS-f12b3ae1ef7e5611 issue_created SPN-585b37495a973254 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "J4.01"} 2026-01-30 10:21:11.674336+00 747 ISS-6a7bcea38f5e9028 span_added SPN-2fcf838c785356e7 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "E1.04"} 2026-01-30 10:21:11.676193+00 748 ISS-c16a71e2a54d7a0f span_added SPN-d63060ad7d18a9c4 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "P2.04"} 2026-01-30 10:21:11.678033+00 749 ISS-fe1e5ecd5bbcf245 span_added SPN-31e267c18a1c1f93 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "E1.02"} 2026-01-30 10:21:11.680171+00 750 ISS-f785405e77359e08 span_added SPN-e3317bdffc5c6473 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "P1.02"} 2026-01-30 10:21:11.682229+00 751 ISS-030f1fbb76e75ab1 span_added SPN-a5c93efa59540ff7 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.01"} 2026-01-30 10:21:11.684191+00 770 ISS-fe5c50a4044aa2f4 span_added SPN-f40e9ee7d9509692 \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "E4.01"} 2026-01-30 10:21:11.719773+00 771 ISS-3456b545c929e40e span_added SPN-547c93a4471cd78e \N \N {"valence": "V-", "intensity": "I3", "urt_primary": "O1.04"} 2026-01-30 10:21:11.721711+00 772 ISS-e685bc07e94b18ea span_added SPN-73d4de7648b6e971 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "V1.01"} 2026-01-30 10:21:11.723546+00 773 ISS-ee569d4829223b48 span_added SPN-0931d51821e3a8b7 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "O1.03"} 2026-01-30 10:21:11.725686+00 774 ISS-b587e768bb4d59db span_added SPN-d17b29045fe74fe5 \N \N {"valence": "V-", "intensity": "I2", "urt_primary": "J1.03"} 2026-01-30 10:21:11.727421+00 775 ISS-7a748c1b9bf5d444 span_added SPN-886da466ac6f6fc9 \N \N {"valence": "V-", "intensity": "I1", "urt_primary": "J1.05"} 2026-01-30 10:21:11.729213+00 \. -- -- Data for Name: issue_spans; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.issue_spans (id, issue_id, span_id, source, review_id, review_version, is_primary_match, intensity, review_time, created_at) FROM stdin; 1 ISS-2614e29f829cd485 SPN-0ed2638990f2 google test-review-b063df39 1 t I3 2026-01-15 14:30:00+00 2026-01-24 18:27:48.970522+00 2 ISS-eca57e771e862c9c SPN-5af47728377a google test-review-b063df39 1 t I2 2026-01-15 14:30:00+00 2026-01-24 18:27:50.361635+00 3 ISS-135a3b29604f06dc SPN-78e0c7bccc85 google test-review-58dfba96 1 t I3 2026-01-15 14:30:00+00 2026-01-24 18:27:59.152491+00 4 ISS-6f49ff283cab40fe SPN-7031a752d9f2 google test-review-58dfba96 1 t I2 2026-01-15 14:30:00+00 2026-01-24 18:27:59.160725+00 452 ISS-e685bc07e94b18ea SPN-57524e267b88d074 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.409328+00 453 ISS-fe5c50a4044aa2f4 SPN-18f68275c72f5e5d google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.416103+00 454 ISS-cad89fbe0a3953e1 SPN-3c10e41a8cc4ebb9 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.417565+00 455 ISS-e4723a84baf4cc25 SPN-6bddf8e186892ded google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.419115+00 456 ISS-d6819a88b82e967a SPN-8760f555701b920e google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.420615+00 457 ISS-3b8c83f268f333f1 SPN-3d298e043e6ec9ed google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.421879+00 11 ISS-41697d28e2218161 SPN-7804bdeef7d99cb5 google 1 t I2 2026-01-24 23:56:34.187325+00 2026-01-24 23:56:34.195157+00 12 ISS-d90ab89aaef2274d SPN-7318d16076544f1a google 1 t I2 2026-01-24 23:56:34.187325+00 2026-01-24 23:56:34.209435+00 13 ISS-cad89fbe0a3953e1 SPN-69a6c9879625fdae google 1 t I2 2026-01-24 23:56:34.187325+00 2026-01-24 23:56:34.21106+00 14 ISS-078ab863a4a516d9 SPN-1b0f518b14f73684 google 1 t I2 2026-01-24 23:56:34.187325+00 2026-01-24 23:56:34.21216+00 15 ISS-7be158d5b9729a85 SPN-f45220df23f09ea6 google 1 t I2 2026-01-24 23:56:34.187325+00 2026-01-24 23:56:34.213416+00 16 ISS-7be158d5b9729a85 SPN-2fd349fe0ec0098d google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.851629+00 458 ISS-e685bc07e94b18ea SPN-eb2827c7e8268134 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.423004+00 459 ISS-3b8c83f268f333f1 SPN-1a80606abd277dfd google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.423863+00 19 ISS-cad89fbe0a3953e1 SPN-940b8a4f29955dc2 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.864098+00 460 ISS-35555dc37e49b8ae SPN-520211286aa47c54 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.424834+00 461 ISS-8f3874d8e5c3eb69 SPN-f39fd612c8c8af14 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.425967+00 462 ISS-04b6e508781a2350 SPN-682caba9b164a5a1 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.426974+00 463 ISS-e3fac9553b7a3594 SPN-b90db27917e506f5 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.428075+00 464 ISS-35555dc37e49b8ae SPN-5bd76973f624a4ce google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.42918+00 25 ISS-7be158d5b9729a85 SPN-53c6fe547d0c87a0 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.870475+00 465 ISS-f785405e77359e08 SPN-36913ae2cff8b6bb google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.430224+00 27 ISS-7be158d5b9729a85 SPN-a22554cc2462a1b0 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.872216+00 466 ISS-6a7bcea38f5e9028 SPN-b227041cd180dbcf google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.431125+00 467 ISS-fe1e5ecd5bbcf245 SPN-27424bc0d3b405a7 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.432183+00 468 ISS-f785405e77359e08 SPN-be43869e17440cfe google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.433186+00 469 ISS-191ee4738f1076aa SPN-56d5379b87943c83 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.434184+00 32 ISS-7be158d5b9729a85 SPN-e99ce51306264a81 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.876969+00 33 ISS-7be158d5b9729a85 SPN-f877f02dc3990312 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.878077+00 34 ISS-7be158d5b9729a85 SPN-d77e5b594cbbec57 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.878862+00 470 ISS-d6819a88b82e967a SPN-a2d38a4118142c59 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.435099+00 36 ISS-7be158d5b9729a85 SPN-4485081b6b8239da google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.880786+00 471 ISS-dd796399381127dc SPN-ec8a6edd4a548e4f google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.435946+00 472 ISS-e685bc07e94b18ea SPN-cc405bb661acfc6a google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.436819+00 39 ISS-d90ab89aaef2274d SPN-ced39cd3397112e2 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.883107+00 473 ISS-d6819a88b82e967a SPN-f0c015871f351a8e google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.437742+00 474 ISS-098fa9745f36247a SPN-0d1945e2c6a2baab google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.438853+00 475 ISS-cc9313fbff47f93e SPN-bcedab1d5115af67 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.440106+00 476 ISS-e685bc07e94b18ea SPN-d443870ed1377b70 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.441284+00 477 ISS-a75a01dae15a2d78 SPN-822bd8a98fe1d77d google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.442351+00 478 ISS-098fa9745f36247a SPN-e8aa567a49f110da google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.44324+00 46 ISS-7be158d5b9729a85 SPN-4879fcd6c00fe8a9 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.889415+00 479 ISS-cad89fbe0a3953e1 SPN-bdf340c4e55eb56b google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.444158+00 480 ISS-f785405e77359e08 SPN-83b6f6125729cf82 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.445022+00 49 ISS-7be158d5b9729a85 SPN-b9ab5793735bafb9 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.891828+00 481 ISS-cad89fbe0a3953e1 SPN-e551d240e2e00e7a google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.445946+00 482 ISS-030f1fbb76e75ab1 SPN-b9507baa7eeae8d3 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.446866+00 483 ISS-f785405e77359e08 SPN-d2200ae5075e6b35 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.460805+00 484 ISS-e3fac9553b7a3594 SPN-2b759cae81ee4450 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.470009+00 54 ISS-7be158d5b9729a85 SPN-5176dd2010bf9326 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.897336+00 485 ISS-fe5c50a4044aa2f4 SPN-29afaf9e7fc42ffd google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.471476+00 56 ISS-7be158d5b9729a85 SPN-afbf0a91bd5a8519 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.899088+00 486 ISS-030f1fbb76e75ab1 SPN-599b1e5daa8db68d google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.47763+00 58 ISS-7be158d5b9729a85 SPN-47fe608ccade71a1 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.900765+00 487 ISS-7be158d5b9729a85 SPN-9a1b34efa473ab9d google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.478666+00 488 ISS-d6819a88b82e967a SPN-fcc8f5d10056605a google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.479591+00 489 ISS-fe5c50a4044aa2f4 SPN-f18ac0cc5979b8e4 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.480978+00 62 ISS-7be158d5b9729a85 SPN-069078a1b4486c3e google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.904526+00 63 ISS-7be158d5b9729a85 SPN-65d9d084761d008a google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.905265+00 490 ISS-e685bc07e94b18ea SPN-f04dd9df7c80d933 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.481967+00 491 ISS-5c67a50db3628fc0 SPN-bb65732f91d971a6 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.483164+00 492 ISS-3b8c83f268f333f1 SPN-d4dea3d3379648c3 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.483936+00 493 ISS-6a7bcea38f5e9028 SPN-4313d1d7b70f74ea google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.484833+00 494 ISS-6a7bcea38f5e9028 SPN-8c897f233c073db3 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.485781+00 495 ISS-ce05b5f63a1a6314 SPN-d936799277b3b4d7 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.486978+00 68 ISS-7be158d5b9729a85 SPN-cdf0c42d3073b5a1 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.90995+00 69 ISS-7be158d5b9729a85 SPN-b43e484827679580 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.91122+00 70 ISS-d90ab89aaef2274d SPN-bfbcf590410b43c2 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.912347+00 496 ISS-f785405e77359e08 SPN-ea87242d0e3fe7e4 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.487945+00 72 ISS-7be158d5b9729a85 SPN-d24d78148c536488 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.914048+00 497 ISS-6a7bcea38f5e9028 SPN-4ee283236a356869 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.489153+00 498 ISS-fe5c50a4044aa2f4 SPN-ecdc4023f11893bc google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.490219+00 499 ISS-35555dc37e49b8ae SPN-0f7826e84644a8a4 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.491119+00 500 ISS-d6819a88b82e967a SPN-0c26f098973f1fa9 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.492011+00 501 ISS-f785405e77359e08 SPN-e851bd0bfb5ba211 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.492894+00 78 ISS-7be158d5b9729a85 SPN-18a64cdaee85d11d google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.918684+00 502 ISS-d6819a88b82e967a SPN-fe94961a71954411 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.493808+00 80 ISS-7be158d5b9729a85 SPN-92bf48df42780941 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.920634+00 503 ISS-d6819a88b82e967a SPN-5a3ff3555c7f73f1 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.494593+00 504 ISS-3b8c83f268f333f1 SPN-59e7e12c5956fe55 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.495413+00 83 ISS-7be158d5b9729a85 SPN-ffebfe89aa9c07bc google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.92293+00 84 ISS-7be158d5b9729a85 SPN-f9c5ebae95ab153c google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.924134+00 505 ISS-fe5c50a4044aa2f4 SPN-697c956c567dbf70 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.49622+00 86 ISS-7be158d5b9729a85 SPN-9e5cdab9fc9bfb76 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.925969+00 506 ISS-e3fac9553b7a3594 SPN-3b1758c5e959263a google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.497334+00 88 ISS-7be158d5b9729a85 SPN-fef7a2a88046daaa google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.927728+00 507 ISS-fe5c50a4044aa2f4 SPN-2088b8220d935497 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.498234+00 90 ISS-cad89fbe0a3953e1 SPN-107ce7c9301f5fd2 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.929339+00 508 ISS-078ab863a4a516d9 SPN-93944d9250951e41 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.499104+00 509 ISS-3b8c83f268f333f1 SPN-6adf4f351ca37aab google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.500019+00 510 ISS-f785405e77359e08 SPN-e8409179b62b1796 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.501021+00 511 ISS-e685bc07e94b18ea SPN-172f36705d5c25c2 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.501903+00 512 ISS-cad89fbe0a3953e1 SPN-4b6dd782cd7784cf google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.502764+00 513 ISS-f785405e77359e08 SPN-cf6bdfd8522d0a35 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.50355+00 514 ISS-e685bc07e94b18ea SPN-ce8657ca5340dff0 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.504906+00 98 ISS-7be158d5b9729a85 SPN-0c59758ad1d83d45 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.936944+00 515 ISS-d6819a88b82e967a SPN-3e15772693deed6f google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.505774+00 516 ISS-3b8c83f268f333f1 SPN-42e900c07877e4c1 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.506791+00 101 ISS-7be158d5b9729a85 SPN-4cd6890b5b4bb6b0 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.939537+00 102 ISS-7be158d5b9729a85 SPN-4cc1b4660b3f41bd google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.94026+00 517 ISS-f785405e77359e08 SPN-a050e527a0d27bfd google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.507768+00 104 ISS-7be158d5b9729a85 SPN-e1725060cb0b31e6 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.942552+00 518 ISS-3b8c83f268f333f1 SPN-abc4ec558816dc30 google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.508803+00 106 ISS-7be158d5b9729a85 SPN-1a3a4b93dfecc944 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.944227+00 519 ISS-f785405e77359e08 SPN-69f53f2a87aa4b88 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.510021+00 520 ISS-92c6065f803ac990 SPN-70204c4dbc6e619f google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.511088+00 109 ISS-7be158d5b9729a85 SPN-52c4c2f6b769746a google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.946591+00 521 ISS-f785405e77359e08 SPN-856a2f5d644e317e google 1 t I3 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.51185+00 522 ISS-195897e06fb577b5 SPN-0ea0e71b3b91400d google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.512666+00 523 ISS-e4723a84baf4cc25 SPN-dbab87b82c00f555 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.513561+00 113 ISS-d90ab89aaef2274d SPN-181b2c580ccbb467 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.950494+00 114 ISS-7be158d5b9729a85 SPN-f274020a140ce09f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.954591+00 524 ISS-fe5c50a4044aa2f4 SPN-78ba83d850dc0f75 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.514714+00 525 ISS-35555dc37e49b8ae SPN-acddf49a3dc1f9e7 google 1 t I2 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.515559+00 526 ISS-e0ea31c0c57819f8 SPN-ffbe09dd4cb388a4 google 1 t I1 2026-01-29 18:56:38.397714+00 2026-01-29 18:56:38.517493+00 754 ISS-a434d9b15f750efe SPN-145047dd74f5bed5 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.689703+00 755 ISS-cad89fbe0a3953e1 SPN-138069bfb4d51fab google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.691564+00 756 ISS-75558e64a721aa47 SPN-03ba493c7180d67f google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.693326+00 757 ISS-41697d28e2218161 SPN-3e86257960bde6c3 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.695147+00 758 ISS-fe5c50a4044aa2f4 SPN-df9026e737ec936b google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.696918+00 123 ISS-7be158d5b9729a85 SPN-275078c4f329038d google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.964161+00 759 ISS-ef07fa1dbe32cea7 SPN-985b5b6f0c41384e google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.698928+00 125 ISS-7be158d5b9729a85 SPN-f6abe0385b546313 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.96565+00 760 ISS-e685bc07e94b18ea SPN-a32672abb4b8a7bb google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.700811+00 127 ISS-41697d28e2218161 SPN-ed80fe815322bb4a google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.967509+00 761 ISS-d0352eb16fd469de SPN-df6b004db38d2fd0 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.702722+00 762 ISS-ee569d4829223b48 SPN-dc1e1ad7108e607b google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.704566+00 763 ISS-e685bc07e94b18ea SPN-0533c4904ecba774 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.706363+00 764 ISS-ee569d4829223b48 SPN-d69bc98fb78f7358 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.70809+00 765 ISS-cad89fbe0a3953e1 SPN-203be958c9d83596 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.709976+00 133 ISS-d90ab89aaef2274d SPN-0bcace744b0c6558 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.973105+00 134 ISS-7be158d5b9729a85 SPN-a578c8dd6ad7c2f0 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.973915+00 766 ISS-e685bc07e94b18ea SPN-2542e48077441343 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.711786+00 136 ISS-7be158d5b9729a85 SPN-9a6ac7c016cb8d8f google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.976165+00 767 ISS-e685bc07e94b18ea SPN-73fddb9accf758ce google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.713787+00 527 ISS-e4723a84baf4cc25 SPN-6ce8edbcfa6cdbae google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.149077+00 528 ISS-e4723a84baf4cc25 SPN-e4ba127f92459501 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.155435+00 140 ISS-7be158d5b9729a85 SPN-74812842c4777058 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.97968+00 141 ISS-41697d28e2218161 SPN-b04d8432dccd344d google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.98039+00 529 ISS-f785405e77359e08 SPN-4688cc485e980f34 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.158837+00 530 ISS-ee569d4829223b48 SPN-391e5b370de23af9 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.16743+00 144 ISS-7be158d5b9729a85 SPN-f325972c2daf50b7 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.983008+00 531 ISS-fe1e5ecd5bbcf245 SPN-4db12a6acd6fe99c google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.172156+00 532 ISS-08bed4a863dfaafe SPN-148ef3e35ad4ea67 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.175494+00 533 ISS-1d4fe8b431ce1ca4 SPN-a5bb25400f5df785 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.17858+00 534 ISS-cad89fbe0a3953e1 SPN-13f243370b022be0 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.181971+00 149 ISS-7be158d5b9729a85 SPN-3897e88edd332ffd google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.987445+00 150 ISS-7be158d5b9729a85 SPN-33e93946266bf7c4 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.988213+00 535 ISS-cc9313fbff47f93e SPN-be6beb2f43c1b3a4 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.184947+00 536 ISS-d6819a88b82e967a SPN-ed0d4f1e09793158 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.187718+00 537 ISS-fe5c50a4044aa2f4 SPN-51953e48cb1582de google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.190431+00 154 ISS-7be158d5b9729a85 SPN-0ab5de4ed600320a google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.991586+00 538 ISS-5e3ed53e0be7f3c0 SPN-d8a31b096aabb00d google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.193108+00 156 ISS-7be158d5b9729a85 SPN-cb0acf44d4bb07da google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.993517+00 539 ISS-d6819a88b82e967a SPN-c693d08d4d060b95 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.196041+00 158 ISS-41697d28e2218161 SPN-7c27d1c2f928da00 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.995193+00 540 ISS-078ab863a4a516d9 SPN-fe33d43fc1317fe2 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.198856+00 541 ISS-113fccdc173f39ed SPN-be4c5b6bae2452e1 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.201662+00 161 ISS-7be158d5b9729a85 SPN-d9083f3f342a9d96 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.99759+00 162 ISS-41697d28e2218161 SPN-1d27f317527163b7 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:06.998347+00 542 ISS-098fa9745f36247a SPN-37769576f6b1b883 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.204825+00 164 ISS-d90ab89aaef2274d SPN-f893e397a6730d4e google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.000003+00 165 ISS-7be158d5b9729a85 SPN-5a46cab13a9540be google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.000888+00 166 ISS-7be158d5b9729a85 SPN-40f559c973c9ba49 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.0019+00 543 ISS-d6819a88b82e967a SPN-6e2b5f16ce43b606 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.207701+00 544 ISS-113fccdc173f39ed SPN-956bc2d46fc1c9c6 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.210242+00 545 ISS-e685bc07e94b18ea SPN-81a382ecb0485ddd google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.212916+00 170 ISS-7be158d5b9729a85 SPN-bdadedeec416429e google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.008727+00 171 ISS-7be158d5b9729a85 SPN-5a2787b4dfa9499c google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.009634+00 172 ISS-d90ab89aaef2274d SPN-fe4fc6637df42b26 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.010386+00 546 ISS-191ee4738f1076aa SPN-02a88cc6b8ce22d6 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.215924+00 547 ISS-271321674127096e SPN-f7e6d9722955335d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.218672+00 548 ISS-d90ab89aaef2274d SPN-8ce2d48294a864a9 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.221497+00 549 ISS-41697d28e2218161 SPN-af14aa921d2c7a8a google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.224533+00 550 ISS-8280826420651a3f SPN-be6e52379d73789b google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.227656+00 551 ISS-fe5c50a4044aa2f4 SPN-b37cb89a61cc0e58 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.230566+00 179 ISS-7be158d5b9729a85 SPN-b5927e53e6a8f0cd google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.015953+00 552 ISS-e685bc07e94b18ea SPN-cdfca85da8ac47bc google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.233547+00 181 ISS-41697d28e2218161 SPN-a28145a64922d657 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.017839+00 553 ISS-fe5c50a4044aa2f4 SPN-1747c24c0026d700 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.236801+00 554 ISS-7a748c1b9bf5d444 SPN-68aefe1caec827ae google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.2396+00 555 ISS-5403c6a364f75355 SPN-22fc9f96e423dee6 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.242825+00 185 ISS-7be158d5b9729a85 SPN-1077b0426a84984b google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.021405+00 186 ISS-d90ab89aaef2274d SPN-43c2759fc6d4b324 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.022145+00 556 ISS-e685bc07e94b18ea SPN-26c9e050dfaf7873 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.24585+00 188 ISS-d90ab89aaef2274d SPN-cef1f8014cc867ed google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.023689+00 189 ISS-7be158d5b9729a85 SPN-f886195468a4214f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.024728+00 557 ISS-75558e64a721aa47 SPN-b75249e2dac4d6ca google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.248982+00 558 ISS-cc9313fbff47f93e SPN-10680e8c75c91e06 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.251761+00 559 ISS-6a7bcea38f5e9028 SPN-4a002ac3166844d4 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.254727+00 193 ISS-41697d28e2218161 SPN-bbcc9251ceadf0c5 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.028274+00 560 ISS-91b7998fc96d9d94 SPN-81806b44af1c34b8 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.25745+00 195 ISS-7be158d5b9729a85 SPN-c50b66178ee13c3c google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.029878+00 561 ISS-5e3ed53e0be7f3c0 SPN-a3a0fce01d9f66f8 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.260754+00 562 ISS-7be158d5b9729a85 SPN-8dc423acc45f509f google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.266648+00 198 ISS-7be158d5b9729a85 SPN-0df5b8c725003fde google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.032288+00 199 ISS-7be158d5b9729a85 SPN-a3296d5903a1a27f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.033095+00 200 ISS-7be158d5b9729a85 SPN-9f752a5dd20e38fe google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.034142+00 563 ISS-dd796399381127dc SPN-48f3d9524a2df5ca google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.269479+00 564 ISS-cc9313fbff47f93e SPN-fe9e651c75b68a07 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.272486+00 203 ISS-7be158d5b9729a85 SPN-e36e28a16ff120db google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.037009+00 565 ISS-e685bc07e94b18ea SPN-8f65535e807c6d04 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.275729+00 566 ISS-fe5c50a4044aa2f4 SPN-a9019e22a75d3e72 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.278722+00 567 ISS-fe5c50a4044aa2f4 SPN-a5073b359f8d9e7f google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.281916+00 568 ISS-f785405e77359e08 SPN-8a1372a5214fd85d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.284725+00 569 ISS-f07d7cc62ddfbed9 SPN-3cb0afc889ff3d44 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.287505+00 570 ISS-3b8c83f268f333f1 SPN-5b1a9350c050d7c6 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.290851+00 571 ISS-e3fac9553b7a3594 SPN-40a90fcada46145c google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.293787+00 211 ISS-41697d28e2218161 SPN-2370626ee7c01678 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.044179+00 572 ISS-e685bc07e94b18ea SPN-be22e4a5305bd760 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.296683+00 573 ISS-a434d9b15f750efe SPN-f745b37e8d3b32a2 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.299781+00 214 ISS-7be158d5b9729a85 SPN-3d835dbde9699dc6 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.046455+00 574 ISS-3456b545c929e40e SPN-82e750b36e275e17 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.302476+00 575 ISS-f785405e77359e08 SPN-476d28765337fc2e google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.305135+00 576 ISS-c16a71e2a54d7a0f SPN-723786b290da2ead google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.307758+00 577 ISS-3456b545c929e40e SPN-03dcea00612a3d6c google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.310115+00 578 ISS-f785405e77359e08 SPN-123f85066203800e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.312529+00 579 ISS-f785405e77359e08 SPN-ccf2e11a4be6cdb0 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.315311+00 221 ISS-7be158d5b9729a85 SPN-344dabee9da1ee5b google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.052634+00 222 ISS-41697d28e2218161 SPN-543d228589ba244e google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.053568+00 580 ISS-4ada940a859c600c SPN-27d285a128d34bbd google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.317693+00 224 ISS-7be158d5b9729a85 SPN-55db8f5805286894 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.055316+00 581 ISS-6a7bcea38f5e9028 SPN-4a0745019944b25a google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.319983+00 582 ISS-d90ab89aaef2274d SPN-7a52fe7a79b85095 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.322286+00 583 ISS-cd62494890a5c56f SPN-51c98795a3795550 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.324501+00 584 ISS-e0ea31c0c57819f8 SPN-910b0671168d0474 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.326629+00 229 ISS-7be158d5b9729a85 SPN-b532b93e3c7ee213 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.060513+00 585 ISS-b587e768bb4d59db SPN-b96883dfa2899cc3 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.32877+00 586 ISS-41697d28e2218161 SPN-159f94e83d23b89d google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.331153+00 587 ISS-95a4d4ade69194d1 SPN-1db98ca32829203f google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.333524+00 588 ISS-e3fac9553b7a3594 SPN-2ca36e061dacd8b7 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.335801+00 589 ISS-8280826420651a3f SPN-4b66ad5b165dc89b google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.338086+00 590 ISS-7a748c1b9bf5d444 SPN-950bd3e0484a3a03 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.340427+00 591 ISS-6a7bcea38f5e9028 SPN-3930f5e4142ae8d1 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.342671+00 592 ISS-ee569d4829223b48 SPN-ea1ebed6c978af9e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.344863+00 593 ISS-f785405e77359e08 SPN-ff189097c59f8efc google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.34704+00 594 ISS-e685bc07e94b18ea SPN-9b8db09fbde5484a google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.349449+00 595 ISS-e6b6dd8da4de4df5 SPN-300c4ca9a7235b81 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.351603+00 241 ISS-7be158d5b9729a85 SPN-2f2cff9d8b3c53f4 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.070592+00 242 ISS-41697d28e2218161 SPN-fb92c1259da987c1 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.071353+00 596 ISS-ee569d4829223b48 SPN-6eed7dd60a402f29 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.353868+00 597 ISS-e0ea31c0c57819f8 SPN-f3331587a6cc5d46 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.356094+00 598 ISS-f785405e77359e08 SPN-aabea9247f5e2bbd google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.358302+00 246 ISS-7be158d5b9729a85 SPN-940d9f8fc7ec2038 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.074487+00 599 ISS-41697d28e2218161 SPN-93850d2013a7e799 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.36039+00 600 ISS-e0ea31c0c57819f8 SPN-63f27e8056e5a1f4 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.362681+00 601 ISS-a434d9b15f750efe SPN-b917ab34679df789 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.365178+00 602 ISS-95a4d4ade69194d1 SPN-121bc2b2ea02439a google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.367527+00 251 ISS-d90ab89aaef2274d SPN-e50a58a7f9dfcc8f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.080453+00 603 ISS-d6819a88b82e967a SPN-9d502352868882a6 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.369678+00 253 ISS-7be158d5b9729a85 SPN-55364a33557846b4 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.082427+00 604 ISS-ee569d4829223b48 SPN-97110383f4b0afd5 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.372077+00 255 ISS-7be158d5b9729a85 SPN-a1307e73378b98ad google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.084775+00 605 ISS-75558e64a721aa47 SPN-f87b329b066e00aa google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.374487+00 606 ISS-4ada940a859c600c SPN-fc50de1492f561e7 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.376881+00 258 ISS-d90ab89aaef2274d SPN-e928fb90dc181a8f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.088199+00 607 ISS-191ee4738f1076aa SPN-015cd07b56cb9555 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.379426+00 608 ISS-f785405e77359e08 SPN-41083e1fb52ebe3f google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.382252+00 609 ISS-95a4d4ade69194d1 SPN-2dcc7d015f0b0b08 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.38485+00 262 ISS-7be158d5b9729a85 SPN-ba7771d47381a4c2 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.09247+00 610 ISS-f07d7cc62ddfbed9 SPN-50b6d73e5b3d3f3b google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.387119+00 611 ISS-95a4d4ade69194d1 SPN-f9aa285c05e081dc google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.389516+00 265 ISS-d90ab89aaef2274d SPN-3b4966145cb2014d google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.095548+00 612 ISS-18073f3a78b59ede SPN-4ce1b903cc6e18ad google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.391885+00 613 ISS-41697d28e2218161 SPN-0cae672441422afe google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.394237+00 614 ISS-3701555d3346a7ce SPN-4a9b5a8641b05986 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.396573+00 269 ISS-d90ab89aaef2274d SPN-46783cdca95994ae google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.099885+00 615 ISS-3b8c83f268f333f1 SPN-922325c2866be20e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.400088+00 616 ISS-e685bc07e94b18ea SPN-72bad6c4d6088571 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.40253+00 617 ISS-cad89fbe0a3953e1 SPN-b367cb1038555e0b google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.405015+00 273 ISS-7be158d5b9729a85 SPN-e3804c5f016fa114 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.104328+00 274 ISS-7be158d5b9729a85 SPN-5be105b73277b23f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.105463+00 275 ISS-7be158d5b9729a85 SPN-8941b8a23d3e81c2 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.10658+00 618 ISS-f785405e77359e08 SPN-eb79055e23c0ef4c google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.407377+00 277 ISS-d90ab89aaef2274d SPN-5c9f84470ee25dca google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.108945+00 278 ISS-7be158d5b9729a85 SPN-260e4c65d1fb9754 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.10994+00 619 ISS-e0ea31c0c57819f8 SPN-ab6cedd308f41a12 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.409567+00 280 ISS-7be158d5b9729a85 SPN-28f0bac8ac763313 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.111496+00 620 ISS-e685bc07e94b18ea SPN-248781a17c913772 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.411701+00 621 ISS-a434d9b15f750efe SPN-9b5d85612bb8b670 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.413842+00 283 ISS-7be158d5b9729a85 SPN-3fba9fe2590e20ce google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.113942+00 284 ISS-41697d28e2218161 SPN-1535b5f23746d9c3 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.114951+00 285 ISS-cad89fbe0a3953e1 SPN-cd609e35736b9715 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.115838+00 286 ISS-7be158d5b9729a85 SPN-47d3f27a72af1764 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.116711+00 622 ISS-9d6e8372fac5f41c SPN-f418884ef5defb4e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.416047+00 288 ISS-7be158d5b9729a85 SPN-19bc42d6af03d38d google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.118714+00 623 ISS-fe5c50a4044aa2f4 SPN-c35e549072bc2bea google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.418477+00 290 ISS-7be158d5b9729a85 SPN-f90e56a4f32a994c google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.120679+00 624 ISS-fe5c50a4044aa2f4 SPN-c4bae320d497e502 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.420597+00 625 ISS-41697d28e2218161 SPN-1b7b0d8cc371cef8 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.422805+00 626 ISS-41697d28e2218161 SPN-edccea6fed96bca9 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.424871+00 627 ISS-75558e64a721aa47 SPN-bbba3f31f78dcf08 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.426978+00 295 ISS-41697d28e2218161 SPN-9ce0d178f28a2505 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.125076+00 628 ISS-f785405e77359e08 SPN-58cc9c3df222e07d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.429064+00 297 ISS-7be158d5b9729a85 SPN-03a66f22bf2a267e google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.127041+00 298 ISS-7be158d5b9729a85 SPN-bf0ac7bd54e2c8c8 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.128053+00 299 ISS-7be158d5b9729a85 SPN-385529f6636c80f1 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.129122+00 300 ISS-41697d28e2218161 SPN-ffb26593182ce612 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.130029+00 301 ISS-7be158d5b9729a85 SPN-56aaa323e40d6a7f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.130794+00 302 ISS-7be158d5b9729a85 SPN-f5b20a9acd3c4d2f google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.131595+00 629 ISS-cad89fbe0a3953e1 SPN-0e532dfa83789596 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.43114+00 630 ISS-e0ea31c0c57819f8 SPN-6079e040f505d209 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.433082+00 631 ISS-01d6eec572e0e029 SPN-4b9d35458e245f9c google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.435071+00 632 ISS-f785405e77359e08 SPN-50386b2d398056fb google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.436942+00 633 ISS-078ab863a4a516d9 SPN-24416d32209468eb google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.438872+00 634 ISS-f785405e77359e08 SPN-279306dffd1c05bf google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.440699+00 635 ISS-e0ea31c0c57819f8 SPN-6f563014ac195a96 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.442501+00 636 ISS-e685bc07e94b18ea SPN-7c1509089d29b2a0 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.444407+00 637 ISS-75558e64a721aa47 SPN-aadcc27c320542e3 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.446584+00 638 ISS-fe5c50a4044aa2f4 SPN-d477e9e5ba57de7b google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.448734+00 639 ISS-ee569d4829223b48 SPN-4cd8a92182f53a65 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.450818+00 640 ISS-19a583cc00e8d7df SPN-a9139cd9b49854f3 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.452782+00 641 ISS-cc9313fbff47f93e SPN-190c6e21f591cd3a google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.454893+00 316 ISS-7be158d5b9729a85 SPN-36ca87d87909342f google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.144196+00 642 ISS-0b3ad42a9be5e266 SPN-e326d4217ace0b94 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.457123+00 643 ISS-cad89fbe0a3953e1 SPN-44a78c6a52229763 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.459248+00 644 ISS-95a4d4ade69194d1 SPN-7e240cebce303418 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.461492+00 320 ISS-7be158d5b9729a85 SPN-83515013604615fe google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.147742+00 645 ISS-cad89fbe0a3953e1 SPN-56d35a77716185d4 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.466538+00 646 ISS-cc9313fbff47f93e SPN-8be7b26230b7d0a7 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.468536+00 647 ISS-e3fac9553b7a3594 SPN-50e24b89c4548282 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.470567+00 648 ISS-fe5c50a4044aa2f4 SPN-2bab64dae910386c google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.472398+00 649 ISS-f785405e77359e08 SPN-80ab879ad29d3e23 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.474389+00 650 ISS-9138b3638df2c9d6 SPN-c161607febe7285c google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.476508+00 651 ISS-a434d9b15f750efe SPN-c1f2c74c7a200f27 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.478628+00 652 ISS-dd796399381127dc SPN-d0b978cb2d15b674 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.480784+00 329 ISS-d90ab89aaef2274d SPN-fa0ef5810c985a59 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.155885+00 330 ISS-7be158d5b9729a85 SPN-99e93bbdb3cd1655 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.156728+00 331 ISS-d90ab89aaef2274d SPN-1c9adf9954cfeac3 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.157986+00 332 ISS-7be158d5b9729a85 SPN-688206b57e08cf56 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.158888+00 653 ISS-271321674127096e SPN-35a24a44da48ff98 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.48271+00 654 ISS-1d4fe8b431ce1ca4 SPN-d50ae9914aac6419 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.484755+00 655 ISS-e685bc07e94b18ea SPN-d50a05c27937f683 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.486651+00 656 ISS-3701555d3346a7ce SPN-20115b3abee9b678 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.48863+00 337 ISS-7be158d5b9729a85 SPN-a6d6de1575f1ce10 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.163408+00 657 ISS-fe5c50a4044aa2f4 SPN-351991b576524539 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.490489+00 658 ISS-ef07fa1dbe32cea7 SPN-f9d8b297dc5de821 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.492311+00 659 ISS-fe5c50a4044aa2f4 SPN-d8d67b4759b8bd23 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.494144+00 660 ISS-f785405e77359e08 SPN-95a7c4023f8e149f google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.496059+00 661 ISS-e53778b2e61bb5d2 SPN-a29ec1506d5b8e5b google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.49806+00 662 ISS-f785405e77359e08 SPN-02650a249143372f google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.500046+00 344 ISS-7be158d5b9729a85 SPN-f1586d9e0e28f96c google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.169943+00 663 ISS-f785405e77359e08 SPN-10a0d519daa28793 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.501973+00 664 ISS-fe5c50a4044aa2f4 SPN-40e852fd12d1ef86 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.503905+00 665 ISS-7be158d5b9729a85 SPN-fa9e50e32bf98bee google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.50575+00 666 ISS-75558e64a721aa47 SPN-390f64fee7748a61 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.507555+00 667 ISS-e53778b2e61bb5d2 SPN-75d36b861b03f672 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.509662+00 350 ISS-7be158d5b9729a85 SPN-f4836d421505fcd8 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.175765+00 668 ISS-6c64d9e3edbfb946 SPN-4b808d60bf7f17f7 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.511501+00 669 ISS-3456b545c929e40e SPN-bc72ffb8f0290b72 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.513372+00 670 ISS-5403c6a364f75355 SPN-fb4e94b32b77346e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.515326+00 671 ISS-a434d9b15f750efe SPN-1c0f5b6e78142e33 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.5172+00 672 ISS-fe5c50a4044aa2f4 SPN-e10e78cbca99dfa5 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.519076+00 673 ISS-fe5c50a4044aa2f4 SPN-75020be9bb85cc92 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.520931+00 674 ISS-fe5c50a4044aa2f4 SPN-dc11ae56cda65222 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.522822+00 675 ISS-ef07fa1dbe32cea7 SPN-0106b53693d20a97 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.525175+00 359 ISS-d90ab89aaef2274d SPN-f83e70d8634a9be2 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.183365+00 360 ISS-7be158d5b9729a85 SPN-64cb271d457efc50 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.184336+00 361 ISS-d90ab89aaef2274d SPN-0caf5865668e6832 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.185315+00 362 ISS-d90ab89aaef2274d SPN-bd260cefa30a5f06 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.186307+00 676 ISS-e4723a84baf4cc25 SPN-c82a6d8f3410c4d6 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.527275+00 677 ISS-d6819a88b82e967a SPN-d5676e89bf4589e7 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.529173+00 365 ISS-7be158d5b9729a85 SPN-56c29d0870142a51 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.189072+00 678 ISS-e0ea31c0c57819f8 SPN-b39a48760170f96d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.530966+00 679 ISS-f96b272182c47b6f SPN-e7eb7623e3c988ff google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.53291+00 680 ISS-f785405e77359e08 SPN-7239a70cc615ea0e google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.535038+00 369 ISS-7be158d5b9729a85 SPN-d6ea301e8b8b2ed6 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.19244+00 681 ISS-e0ea31c0c57819f8 SPN-0b1d84cdbed37497 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.536969+00 371 ISS-7be158d5b9729a85 SPN-aca7f61fa446cfc8 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.194461+00 372 ISS-41697d28e2218161 SPN-c392736392ec5420 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.195378+00 682 ISS-41697d28e2218161 SPN-e73f427caf7c5ec9 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.53886+00 683 ISS-ee569d4829223b48 SPN-03d368f31fee3489 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.540988+00 684 ISS-ee569d4829223b48 SPN-6c7ed61a7406a786 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.542865+00 376 ISS-d90ab89aaef2274d SPN-556c1a9c7918f6ed google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.199972+00 685 ISS-cc9313fbff47f93e SPN-3dfaf804cf6359ed google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.544876+00 378 ISS-41697d28e2218161 SPN-502f9ac70fd3b4f3 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.206554+00 379 ISS-7be158d5b9729a85 SPN-cd1b720d40e12056 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.207628+00 686 ISS-e53778b2e61bb5d2 SPN-0fb9c997b10934c1 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.54677+00 381 ISS-7be158d5b9729a85 SPN-33884741cdfd0e0a google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.209881+00 687 ISS-ee569d4829223b48 SPN-7f1c579aa313c530 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.548658+00 688 ISS-e3fac9553b7a3594 SPN-a5f114b8f3f5fd3e google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.551245+00 384 ISS-d90ab89aaef2274d SPN-980e2b3a9d53a525 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.212484+00 689 ISS-e0ea31c0c57819f8 SPN-b086b168916e6345 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.555677+00 386 ISS-7be158d5b9729a85 SPN-8218d6d3242a501e google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.214225+00 387 ISS-7be158d5b9729a85 SPN-c2839057057d9246 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.215223+00 690 ISS-01d6eec572e0e029 SPN-82aa99b038d76ffa google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.558339+00 691 ISS-e0ea31c0c57819f8 SPN-47370758e201fd56 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.560751+00 692 ISS-030f1fbb76e75ab1 SPN-1535f2a5feaff0b0 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.562744+00 391 ISS-7be158d5b9729a85 SPN-e04766df8c68b97a google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.219103+00 693 ISS-e3fac9553b7a3594 SPN-9ea7e8994ad0c894 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.564612+00 694 ISS-dd796399381127dc SPN-a52ae9307a0f48ef google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.566483+00 695 ISS-d6819a88b82e967a SPN-9168351e4e6ad0aa google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.5685+00 696 ISS-d6819a88b82e967a SPN-d4f4789ee7432fb3 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.570625+00 697 ISS-7a748c1b9bf5d444 SPN-142b421d082b281f google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.572491+00 698 ISS-41697d28e2218161 SPN-2c3c677f6a27058c google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.574552+00 398 ISS-7be158d5b9729a85 SPN-40c2b3008249e620 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.226155+00 699 ISS-7a748c1b9bf5d444 SPN-bd16347532028e92 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.576678+00 400 ISS-7be158d5b9729a85 SPN-269d9b73d1db8efa google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.228184+00 700 ISS-e685bc07e94b18ea SPN-71819d5359533f61 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.578831+00 701 ISS-e685bc07e94b18ea SPN-ae535cef738f020d google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.580843+00 702 ISS-cc9313fbff47f93e SPN-ca0484e9148e0f47 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.583485+00 404 ISS-7be158d5b9729a85 SPN-93935d2fbe773f24 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.231852+00 405 ISS-7be158d5b9729a85 SPN-dc6a16f80e28524f google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.232678+00 703 ISS-cc9313fbff47f93e SPN-6560402c8164398e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.587471+00 407 ISS-d90ab89aaef2274d SPN-e89ec6d9c79fd002 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.234608+00 408 ISS-7be158d5b9729a85 SPN-5494d867a940a4f0 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.235646+00 704 ISS-078ab863a4a516d9 SPN-0ea08129a6794e4a google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.58992+00 410 ISS-7be158d5b9729a85 SPN-089c4fad8da82aa2 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.237779+00 705 ISS-b587e768bb4d59db SPN-07fe9a9823f017c1 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.591884+00 412 ISS-7be158d5b9729a85 SPN-844e3c0a1309609a google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.239423+00 706 ISS-e685bc07e94b18ea SPN-21c5a57a216271fe google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.59397+00 707 ISS-f785405e77359e08 SPN-01bee5854bf40f09 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.596023+00 708 ISS-fe5c50a4044aa2f4 SPN-bd92c6e429c6f6c5 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.597969+00 709 ISS-195897e06fb577b5 SPN-d436875d661d6cb8 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.599882+00 417 ISS-7be158d5b9729a85 SPN-b9831aa569c99d81 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.243696+00 418 ISS-7be158d5b9729a85 SPN-2eb310cb5e8ac092 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.244466+00 419 ISS-7be158d5b9729a85 SPN-00b1e34437db124c google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.245282+00 420 ISS-7be158d5b9729a85 SPN-9b7fe7f516ff792e google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.246225+00 710 ISS-d6819a88b82e967a SPN-581eccaeddf57bca google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.601797+00 711 ISS-fe5c50a4044aa2f4 SPN-b9880423cd2cc765 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.603907+00 423 ISS-7be158d5b9729a85 SPN-ff1ccea4864eeb78 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.248793+00 424 ISS-7be158d5b9729a85 SPN-fbf879c5c5233ee6 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.249679+00 712 ISS-95a4d4ade69194d1 SPN-bb774bb1a168d2eb google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.60575+00 426 ISS-7be158d5b9729a85 SPN-c9ad88b5fbbaabb5 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.251516+00 427 ISS-7be158d5b9729a85 SPN-88b69b246bbb397c google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.252541+00 428 ISS-7be158d5b9729a85 SPN-ad06f69632b4bec0 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.253497+00 429 ISS-7be158d5b9729a85 SPN-89b0f8bcb164c34d google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.25427+00 430 ISS-d90ab89aaef2274d SPN-3cdac599c3150ca1 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.255283+00 713 ISS-41697d28e2218161 SPN-762c2b859363ff55 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.607569+00 432 ISS-d90ab89aaef2274d SPN-6e2b80f10e12b4a9 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.256924+00 714 ISS-098fa9745f36247a SPN-6e11f33bea2d5a87 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.60944+00 434 ISS-7be158d5b9729a85 SPN-893ac995202587e7 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.258845+00 715 ISS-95a4d4ade69194d1 SPN-04ad8facfeb33126 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.611241+00 716 ISS-3456b545c929e40e SPN-0f61e647afd6a19e google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.613016+00 437 ISS-7be158d5b9729a85 SPN-1d230c80a132e8be google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.261596+00 438 ISS-7be158d5b9729a85 SPN-ed55c968ff1f9e78 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.262521+00 439 ISS-7be158d5b9729a85 SPN-299238c763602631 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.263255+00 440 ISS-7be158d5b9729a85 SPN-ed2550ecd851d028 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.264051+00 441 ISS-7be158d5b9729a85 SPN-cd3dcaff73e8195c google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.264816+00 442 ISS-7be158d5b9729a85 SPN-2a5ca28e6bd18bf8 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.265732+00 443 ISS-41697d28e2218161 SPN-3b8acb7b4e968aec google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.266621+00 444 ISS-7be158d5b9729a85 SPN-1b13a0341667c70b google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.267447+00 445 ISS-7be158d5b9729a85 SPN-c3210ac91a35d8ef google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.268393+00 446 ISS-7be158d5b9729a85 SPN-582cf639bf5e3a1f google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.269474+00 447 ISS-41697d28e2218161 SPN-517bfca327311b08 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.270226+00 448 ISS-d90ab89aaef2274d SPN-9e8f14956ec2364f google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.271094+00 717 ISS-fe5c50a4044aa2f4 SPN-790f0676b2bda46d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.614874+00 450 ISS-7be158d5b9729a85 SPN-d54847e6b20438c9 google 1 t I2 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.27281+00 451 ISS-7be158d5b9729a85 SPN-b7e0b4dc835344f6 google 1 t I3 2026-01-25 04:14:06.844485+00 2026-01-25 04:14:07.273803+00 718 ISS-ef07fa1dbe32cea7 SPN-ca97df064fdf9dae google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.617001+00 719 ISS-f785405e77359e08 SPN-be2001164e73630f google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.618959+00 720 ISS-3b8c83f268f333f1 SPN-623eedfc4d375fe0 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.621058+00 721 ISS-030f1fbb76e75ab1 SPN-5c321f076b793e2d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.623072+00 722 ISS-f785405e77359e08 SPN-75c35a0414af00f4 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.624924+00 723 ISS-3b8c83f268f333f1 SPN-ee9c3c54342d5ba5 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.627091+00 724 ISS-e53778b2e61bb5d2 SPN-83d66bf95996d43b google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.628968+00 725 ISS-1d4fe8b431ce1ca4 SPN-4e4c3ec076a9144a google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.630994+00 726 ISS-41697d28e2218161 SPN-dcb54ef1e3ecdee7 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.632961+00 727 ISS-ee569d4829223b48 SPN-f8299ce5a5960263 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.634891+00 728 ISS-e4723a84baf4cc25 SPN-7f906effcf99bf52 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.636814+00 729 ISS-01d6eec572e0e029 SPN-e19339cd51b89d84 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.638788+00 730 ISS-d6819a88b82e967a SPN-391610222ad70a37 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.640887+00 731 ISS-e0ea31c0c57819f8 SPN-b4ad728fb6afd843 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.64289+00 732 ISS-fe5c50a4044aa2f4 SPN-09e5b914fe19804a google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.644854+00 733 ISS-d90ab89aaef2274d SPN-163e76dc10192193 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.646956+00 734 ISS-cc9313fbff47f93e SPN-8e537558f4fc0f51 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.648915+00 735 ISS-41697d28e2218161 SPN-7651de995f214ff1 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.650842+00 736 ISS-030f1fbb76e75ab1 SPN-c11ae4fb952f7052 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.652632+00 737 ISS-fe5c50a4044aa2f4 SPN-aa19e6e7238845b0 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.654445+00 738 ISS-cad89fbe0a3953e1 SPN-107be62b32f747ff google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.656213+00 739 ISS-030f1fbb76e75ab1 SPN-24161ea795d2d3ec google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.658043+00 740 ISS-f785405e77359e08 SPN-34aaf1041a942e7d google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.659898+00 741 ISS-cad89fbe0a3953e1 SPN-5dff464ecc0d54bc google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.664299+00 742 ISS-cc9313fbff47f93e SPN-1f8d168685842a76 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.66632+00 743 ISS-ee569d4829223b48 SPN-9a742f0e5831170d google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.668167+00 744 ISS-e3fac9553b7a3594 SPN-b04e9958d6af71bd google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.670005+00 745 ISS-e3fac9553b7a3594 SPN-8890a96098468e3e google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.671843+00 746 ISS-f12b3ae1ef7e5611 SPN-585b37495a973254 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.673897+00 747 ISS-6a7bcea38f5e9028 SPN-2fcf838c785356e7 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.675775+00 748 ISS-c16a71e2a54d7a0f SPN-d63060ad7d18a9c4 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.677617+00 749 ISS-fe1e5ecd5bbcf245 SPN-31e267c18a1c1f93 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.679753+00 750 ISS-f785405e77359e08 SPN-e3317bdffc5c6473 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.681764+00 751 ISS-030f1fbb76e75ab1 SPN-a5c93efa59540ff7 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.683734+00 752 ISS-e685bc07e94b18ea SPN-27b3e33e8f33519f google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.685692+00 753 ISS-d0352eb16fd469de SPN-decdbd90bdbe4211 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.687572+00 768 ISS-e0ea31c0c57819f8 SPN-af75eab0292619cb google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.715614+00 769 ISS-8280826420651a3f SPN-1ac4d5f17e1e68a8 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.71749+00 770 ISS-fe5c50a4044aa2f4 SPN-f40e9ee7d9509692 google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.719302+00 771 ISS-3456b545c929e40e SPN-547c93a4471cd78e google 1 t I3 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.721296+00 772 ISS-e685bc07e94b18ea SPN-73d4de7648b6e971 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.723141+00 773 ISS-ee569d4829223b48 SPN-0931d51821e3a8b7 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.724969+00 774 ISS-b587e768bb4d59db SPN-d17b29045fe74fe5 google 1 t I2 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.727023+00 775 ISS-7a748c1b9bf5d444 SPN-886da466ac6f6fc9 google 1 t I1 2026-01-30 10:21:11.131226+00 2026-01-30 10:21:11.728811+00 \. -- -- Data for Name: issues; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.issues (id, issue_id, business_id, place_id, primary_subcode, domain, state, priority_score, confidence_score, span_count, max_intensity, entity, entity_normalized, taxonomy_version, created_at, updated_at, job_id) FROM stdin; 84 ISS-08bed4a863dfaafe O2.02 O open 1 1 1 I1 \N \N v5.1 2026-01-30 10:21:11.174816+00 2026-01-30 10:21:11.174816+00 22c747a6-b913-4ae4-82bc-14b4195008b6 66 ISS-8f3874d8e5c3eb69 P1.02 P open 1 1 1 I3 bartender bartender v5.1 2026-01-29 18:56:38.425558+00 2026-01-29 18:56:38.425558+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 67 ISS-04b6e508781a2350 A2.03 A open 1 1 1 I2 \N \N v5.1 2026-01-29 18:56:38.426729+00 2026-01-29 18:56:38.426729+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1 ISS-2614e29f829cd485 test-business-d8c3476f test-place-d8c3476f O1.01 O open 3 1 1 I3 \N \N v5.1 2026-01-24 18:27:48.948505+00 2026-01-24 18:27:48.948505+00 8bd29859-482d-4e52-a026-3c30432e7cc5 2 ISS-eca57e771e862c9c test-business-d8c3476f test-place-d8c3476f J1.01 J open 2 1 1 I2 \N \N v5.1 2026-01-24 18:27:50.222234+00 2026-01-24 18:27:50.222234+00 8bd29859-482d-4e52-a026-3c30432e7cc5 3 ISS-135a3b29604f06dc test-business-ca8fef85 test-place-ca8fef85 O1.01 O open 3 1 1 I3 \N \N v5.1 2026-01-24 18:27:59.151155+00 2026-01-24 18:27:59.151155+00 8bd29859-482d-4e52-a026-3c30432e7cc5 4 ISS-6f49ff283cab40fe test-business-ca8fef85 test-place-ca8fef85 J1.01 J open 2 1 1 I2 \N \N v5.1 2026-01-24 18:27:59.159693+00 2026-01-24 18:27:59.159693+00 8bd29859-482d-4e52-a026-3c30432e7cc5 87 ISS-113fccdc173f39ed R4.04 R open 1 1 2 I3 \N \N v5.1 2026-01-30 10:21:11.201+00 2026-01-30 10:21:11.209726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 76 ISS-a75a01dae15a2d78 E2.02 E open 1 1 1 I2 \N \N v5.1 2026-01-29 18:56:38.442123+00 2026-01-29 18:56:38.442123+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78 ISS-5c67a50db3628fc0 P1.02 P open 1 1 1 I3 segurança segurança v5.1 2026-01-29 18:56:38.482678+00 2026-01-29 18:56:38.482678+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 79 ISS-ce05b5f63a1a6314 P2.02 P open 1 1 1 I2 \N \N v5.1 2026-01-29 18:56:38.48668+00 2026-01-29 18:56:38.48668+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 93 ISS-91b7998fc96d9d94 O2.03 O open 1 1 1 I1 \N \N v5.1 2026-01-30 10:21:11.256919+00 2026-01-30 10:21:11.256919+00 22c747a6-b913-4ae4-82bc-14b4195008b6 86 ISS-5e3ed53e0be7f3c0 O4.03 O open 1 1 2 I2 \N \N v5.1 2026-01-30 10:21:11.192456+00 2026-01-30 10:21:11.259786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 80 ISS-92c6065f803ac990 A1.05 A open 1 1 1 I2 \N \N v5.1 2026-01-29 18:56:38.510652+00 2026-01-29 18:56:38.510652+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 65 ISS-35555dc37e49b8ae E4.04 E open 1 1 4 I3 \N \N v5.1 2026-01-29 18:56:38.42458+00 2026-01-29 18:56:38.515361+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 99 ISS-cd62494890a5c56f P4.01 P open 1 1 1 I3 \N \N v5.1 2026-01-30 10:21:11.324008+00 2026-01-30 10:21:11.324008+00 22c747a6-b913-4ae4-82bc-14b4195008b6 102 ISS-e6b6dd8da4de4df5 V2.05 V open 1 1 1 I3 \N \N v5.1 2026-01-30 10:21:11.35108+00 2026-01-30 10:21:11.35108+00 22c747a6-b913-4ae4-82bc-14b4195008b6 98 ISS-4ada940a859c600c P2.01 P open 1 1 2 I2 \N \N v5.1 2026-01-30 10:21:11.317199+00 2026-01-30 10:21:11.37635+00 22c747a6-b913-4ae4-82bc-14b4195008b6 72 ISS-191ee4738f1076aa E1.03 E open 1 1 3 I2 \N \N v5.1 2026-01-29 18:56:38.433986+00 2026-01-30 10:21:11.378774+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 94 ISS-f07d7cc62ddfbed9 P3.05 P open 1 1 2 I3 \N \N v5.1 2026-01-30 10:21:11.286831+00 2026-01-30 10:21:11.386585+00 22c747a6-b913-4ae4-82bc-14b4195008b6 103 ISS-18073f3a78b59ede A3.01 A open 1 1 1 I2 \N \N v5.1 2026-01-30 10:21:11.391372+00 2026-01-30 10:21:11.391372+00 22c747a6-b913-4ae4-82bc-14b4195008b6 105 ISS-9d6e8372fac5f41c A3.02 A open 1 1 1 I2 \N \N v5.1 2026-01-30 10:21:11.415537+00 2026-01-30 10:21:11.415537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 107 ISS-19a583cc00e8d7df A2.02 A open 1 1 1 I2 \N \N v5.1 2026-01-30 10:21:11.452325+00 2026-01-30 10:21:11.452325+00 22c747a6-b913-4ae4-82bc-14b4195008b6 108 ISS-0b3ad42a9be5e266 E3.01 E open 1 1 1 I1 \N \N v5.1 2026-01-30 10:21:11.456602+00 2026-01-30 10:21:11.456602+00 22c747a6-b913-4ae4-82bc-14b4195008b6 109 ISS-9138b3638df2c9d6 P2.05 P open 1 1 1 I2 \N \N v5.1 2026-01-30 10:21:11.475977+00 2026-01-30 10:21:11.475977+00 22c747a6-b913-4ae4-82bc-14b4195008b6 88 ISS-271321674127096e A1.01 A open 1 1 2 I3 \N \N v5.1 2026-01-30 10:21:11.218121+00 2026-01-30 10:21:11.482299+00 22c747a6-b913-4ae4-82bc-14b4195008b6 104 ISS-3701555d3346a7ce O1.05 O open 1 1 2 I3 \N \N v5.1 2026-01-30 10:21:11.396024+00 2026-01-30 10:21:11.488193+00 22c747a6-b913-4ae4-82bc-14b4195008b6 91 ISS-5403c6a364f75355 O4.04 O open 1 1 2 I2 \N \N v5.1 2026-01-30 10:21:11.242216+00 2026-01-30 10:21:11.514872+00 22c747a6-b913-4ae4-82bc-14b4195008b6 73 ISS-dd796399381127dc R1.03 R open 1 1 4 I3 \N \N v5.1 2026-01-29 18:56:38.435714+00 2026-01-30 10:21:11.566065+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 13 ISS-078ab863a4a516d9 V1.03 V open 1 1 5 I3 \N \N v5.1 2026-01-24 23:56:34.21189+00 2026-01-30 10:21:11.589488+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 81 ISS-195897e06fb577b5 R2.01 R open 1 1 2 I3 \N \N v5.1 2026-01-29 18:56:38.512472+00 2026-01-30 10:21:11.599466+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 74 ISS-098fa9745f36247a A4.01 A open 1 1 4 I3 \N \N v5.1 2026-01-29 18:56:38.438617+00 2026-01-30 10:21:11.609043+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 101 ISS-95a4d4ade69194d1 J2.02 J open 1 1 7 I3 \N \N v5.1 2026-01-30 10:21:11.332853+00 2026-01-30 10:21:11.610824+00 22c747a6-b913-4ae4-82bc-14b4195008b6 64 ISS-3b8c83f268f333f1 E1.01 E open 1 1 11 I3 \N \N v5.1 2026-01-29 18:56:38.421607+00 2026-01-30 10:21:11.626652+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 111 ISS-e53778b2e61bb5d2 R4.03 R open 1 1 4 I3 \N \N v5.1 2026-01-30 10:21:11.497654+00 2026-01-30 10:21:11.628541+00 22c747a6-b913-4ae4-82bc-14b4195008b6 85 ISS-1d4fe8b431ce1ca4 E2.03 E open 1 1 3 I3 \N \N v5.1 2026-01-30 10:21:11.1778+00 2026-01-30 10:21:11.630349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 62 ISS-e4723a84baf4cc25 R1.01 R open 1 1 6 I3 \N \N v5.1 2026-01-29 18:56:38.418442+00 2026-01-30 10:21:11.636423+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 75 ISS-cc9313fbff47f93e P1.01 P open 1 1 11 I3 \N \N v5.1 2026-01-29 18:56:38.439818+00 2026-01-30 10:21:11.665869+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 68 ISS-e3fac9553b7a3594 J1.01 J open 1 1 10 I3 \N \N v5.1 2026-01-29 18:56:38.427632+00 2026-01-30 10:21:11.671417+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 70 ISS-6a7bcea38f5e9028 E1.04 E open 1 1 8 I2 \N \N v5.1 2026-01-29 18:56:38.430919+00 2026-01-30 10:21:11.675351+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 97 ISS-c16a71e2a54d7a0f P2.04 P open 1 1 2 I2 \N \N v5.1 2026-01-30 10:21:11.307149+00 2026-01-30 10:21:11.677187+00 22c747a6-b913-4ae4-82bc-14b4195008b6 71 ISS-fe1e5ecd5bbcf245 E1.02 E open 1 1 3 I3 \N \N v5.1 2026-01-29 18:56:38.431975+00 2026-01-30 10:21:11.679332+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 77 ISS-030f1fbb76e75ab1 O1.01 O open 1 1 7 I3 \N \N v5.1 2026-01-29 18:56:38.446582+00 2026-01-30 10:21:11.683315+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 95 ISS-a434d9b15f750efe O3.02 O open 1 1 6 I2 \N \N v5.1 2026-01-30 10:21:11.299086+00 2026-01-30 10:21:11.689015+00 22c747a6-b913-4ae4-82bc-14b4195008b6 92 ISS-75558e64a721aa47 V4.01 V open 1 1 6 I3 \N \N v5.1 2026-01-30 10:21:11.248441+00 2026-01-30 10:21:11.692907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 110 ISS-ef07fa1dbe32cea7 P3.01 P open 1 1 4 I3 \N \N v5.1 2026-01-30 10:21:11.491916+00 2026-01-30 10:21:11.698531+00 22c747a6-b913-4ae4-82bc-14b4195008b6 82 ISS-e0ea31c0c57819f8 V4.03 V open 1 1 13 I3 \N \N v5.1 2026-01-29 18:56:38.516261+00 2026-01-30 10:21:11.715198+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 89 ISS-8280826420651a3f V3.01 V open 1 1 3 I2 \N \N v5.1 2026-01-30 10:21:11.22703+00 2026-01-30 10:21:11.717084+00 22c747a6-b913-4ae4-82bc-14b4195008b6 61 ISS-fe5c50a4044aa2f4 E4.01 E open 1 1 29 I3 \N \N v5.1 2026-01-29 18:56:38.415814+00 2026-01-30 10:21:11.718893+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 96 ISS-3456b545c929e40e O1.04 O open 1 1 5 I3 \N \N v5.1 2026-01-30 10:21:11.301899+00 2026-01-30 10:21:11.720865+00 22c747a6-b913-4ae4-82bc-14b4195008b6 60 ISS-e685bc07e94b18ea V1.01 V open 1 1 26 I3 \N \N v5.1 2026-01-29 18:56:38.407212+00 2026-01-30 10:21:11.722727+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 83 ISS-ee569d4829223b48 O1.03 O open 1 1 13 I3 \N \N v5.1 2026-01-30 10:21:11.166497+00 2026-01-30 10:21:11.724574+00 22c747a6-b913-4ae4-82bc-14b4195008b6 100 ISS-b587e768bb4d59db J1.03 J open 1 1 3 I2 \N \N v5.1 2026-01-30 10:21:11.328279+00 2026-01-30 10:21:11.72663+00 22c747a6-b913-4ae4-82bc-14b4195008b6 14 ISS-7be158d5b9729a85 J1.02 J open 1 1 125 I3 \N \N v5.1 2026-01-24 23:56:34.21301+00 2026-01-30 10:21:11.505339+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 112 ISS-6c64d9e3edbfb946 R3.04 R open 1 1 1 I2 \N \N v5.1 2026-01-30 10:21:11.511093+00 2026-01-30 10:21:11.511093+00 22c747a6-b913-4ae4-82bc-14b4195008b6 113 ISS-f96b272182c47b6f P4.03 P open 1 1 1 I2 \N \N v5.1 2026-01-30 10:21:11.532433+00 2026-01-30 10:21:11.532433+00 22c747a6-b913-4ae4-82bc-14b4195008b6 106 ISS-01d6eec572e0e029 J2.01 J open 1 1 3 I3 \N \N v5.1 2026-01-30 10:21:11.434666+00 2026-01-30 10:21:11.638296+00 22c747a6-b913-4ae4-82bc-14b4195008b6 63 ISS-d6819a88b82e967a R1.02 R open 1 1 17 I3 \N \N v5.1 2026-01-29 18:56:38.420287+00 2026-01-30 10:21:11.640432+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 11 ISS-d90ab89aaef2274d A1.02 A open 1 1 28 I3 \N \N v5.1 2026-01-24 23:56:34.208783+00 2026-01-30 10:21:11.646535+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 114 ISS-f12b3ae1ef7e5611 J4.01 J open 1 1 1 I3 \N \N v5.1 2026-01-30 10:21:11.673475+00 2026-01-30 10:21:11.673475+00 22c747a6-b913-4ae4-82bc-14b4195008b6 69 ISS-f785405e77359e08 P1.02 P open 1 1 33 I3 \N \N v5.1 2026-01-29 18:56:38.430009+00 2026-01-30 10:21:11.681178+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 10 ISS-41697d28e2218161 O1.02 O open 1 1 31 I3 \N \N v5.1 2026-01-24 23:39:53.666969+00 2026-01-30 10:21:11.694768+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 115 ISS-d0352eb16fd469de J3.01 J open 1 1 2 I2 \N \N v5.1 2026-01-30 10:21:11.687148+00 2026-01-30 10:21:11.702303+00 22c747a6-b913-4ae4-82bc-14b4195008b6 12 ISS-cad89fbe0a3953e1 V1.02 V open 1 1 17 I3 \N \N v5.1 2026-01-24 23:56:34.210707+00 2026-01-30 10:21:11.709556+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 90 ISS-7a748c1b9bf5d444 J1.05 J open 1 1 5 I2 \N \N v5.1 2026-01-30 10:21:11.238992+00 2026-01-30 10:21:11.728419+00 22c747a6-b913-4ae4-82bc-14b4195008b6 \. -- -- Data for Name: registry; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.registry (id, pipeline_id, name, description, version, module_path, stages, input_type, config, is_enabled, created_at, updated_at) FROM stdin; 4a773fcb-dfa0-4f27-b31c-d8f8a6808106 reputation Reputation Analytics Pipeline Primitives-based classification and reputation scoring. Generates business-facing analytics reports with domain breakdown, key drivers, and actionable insights. 2.0.0 reviewiq_pipeline.reputation_pipeline:ReputationPipeline {classify,report} BusinessInput \N t 2026-02-01 03:10:49.060973+00 2026-02-01 03:10:49.060973+00 f4d45665-9851-48ae-913c-718444282ca8 reviewiq ReviewIQ Classification Pipeline Classifies reviews using URT taxonomy, detects issues, and aggregates metrics for dashboards. 1.0.0 reviewiq_pipeline.pipeline:ReviewIQPipeline {normalize,classify,route,aggregate,synthesize} ScraperV1Output \N t 2026-01-24 19:10:36.027375+00 2026-02-01 03:10:49.064166+00 d693f827-304e-4eb5-af4c-c252692d334c classification Primitives Classification Pipeline LLM-powered span extraction and primitives classification. Processes reviews and stores results in detected_spans_v2. 1.0.0 reviewiq_pipeline.classification_pipeline:ClassificationPipeline {fetch,classify,save} BusinessInput \N t 2026-02-01 03:31:35.493988+00 2026-02-01 03:31:35.493988+00 \. -- -- Data for Name: review_facts_v1; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.review_facts_v1 (review_id, business_id, job_id, run_id, rating, review_time_utc, raw_timestamp, author, language, created_at) FROM stdin; ChdDSUhNMG9nS0VJQ0FnSURXcWZuODFBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Yurena auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ4ejRYY3l3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago manu Montesdeoca Viera auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURhMk5xU1JnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Antonio Jurado Torres auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURTa3JuQ1hBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Nacor Domínguez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQwektyc3R3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Maria Diepa Santana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwemVLMFRREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Nayra Domínguez Hernandez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwMmJQUUNBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Patricia Raquel Cardenes Arbelo \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVbUtLNkhnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Aarón Hernández Delgado \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVaUllM2d3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Abel Galindo Rodríguez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURrZzV2VE9BEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Alexis Nieves \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURFM2JlTDNRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago mari pino dominguez gil \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZNC1lN25BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Isabel Mujica Rodriguez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURZc1pQQkVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Sergio \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURZOUpIR1FBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Maria \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNZLVlPc2tBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Romina Quiroga \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURvb0lEbmRREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 Edited 6 years ago Pedro De La Torre \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvazlpSTVBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Claudia Benitez Delgado \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJaFoydjlRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Geny Rodriguez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJOU9pYVdREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago joni campos lorenzo \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJOE0tVlZ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Fran portillo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJOTh2aXRRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Nestor Marin Siruela \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJeS1YcE93EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Pablo Alonso \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJODluWUtREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Antonio Jesús Montenegro Trujillo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJOVphUWdRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Silvia Alvarado Méndez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJbWZEQzR3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Maria Perdomo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJb3NLcHdRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Olan Gil batista \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUR3dG83WWt3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago inmalamia inmalamia \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURRcDRxX09REAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Saúl Cruz \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURnOFp5bFRREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Jonay Llebri \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURReUotZlpnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2017-02-02 02:54:28.050328+00 9 years ago Daniel Rodríguez Hernández \N 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2026-01-01 02:54:28.050328+00 a month ago Borja Jerez lopez es 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2026-01-01 02:54:28.050328+00 a month ago Sam Ortega es 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2026-01-01 02:54:28.050328+00 a month ago Amanda Lorenzo es 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2025-12-02 02:54:28.050328+00 2 months ago Angie Medina es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2025-01-31 02:54:28.050328+00 a year ago Jorge Sánchez Batista es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2023-02-01 02:54:28.050328+00 3 years ago susana quevedo gonzales es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2019-02-02 02:54:28.050328+00 7 years ago Davinia Suarez Gonzalez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNiNVBYcHhRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2025-01-31 02:54:28.050328+00 a year ago LUCAS CORRAL GONZALEZ auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2022-02-01 02:54:28.050328+00 Edited 4 years ago Amhu. auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURzdVpiVjRnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2021-02-01 02:54:28.050328+00 5 years ago JOSÉ auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURrOV9mT3JnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2021-02-01 02:54:28.050328+00 5 years ago Rafael Hernandez Morín \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwMTZHYTR3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago antonio franco \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwbUxycEJ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago Brais López Rodríguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZbFBtcXJBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago María Teresa Martínez Granados \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvZ09lLXB3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago Daniela Mederos \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvaTdXS1ZBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago elioms__ \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvMC1fUFBnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago Arabia Suárez Segura \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvNHRQc3hRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago NOELIA FALCON \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvN055NmNBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago Fabiola Hernández Saavedra \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvME0tUVJBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 1 2020-02-02 02:54:28.050328+00 6 years ago Edgar Hernández \N 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2026-01-01 02:54:28.050328+00 a month ago Pedro es 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2025-08-04 02:54:28.050328+00 6 months ago Alejandro RP es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2024-02-01 02:54:28.050328+00 2 years ago AINOHA ROMOJARO es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNNd3ZfaHZ3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2020-02-02 02:54:28.050328+00 6 years ago tony8tld auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURTd2ZqMjRRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2021-02-01 02:54:28.050328+00 5 years ago Encarnacion Jorge Machin auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNpdmYzZTJnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2021-02-01 02:54:28.050328+00 5 years ago Carmen Rodriguez Salazar \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNjX01TQ1BBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2021-02-01 02:54:28.050328+00 5 years ago Crabafre auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNNbll2V2FREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2020-02-02 02:54:28.050328+00 6 years ago Juan Luis Rincon Garcia auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM0bzRHSlNREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2020-02-02 02:54:28.050328+00 6 years ago Jessi Cabrera \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURvcl9XclVBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2020-02-02 02:54:28.050328+00 6 years ago Mellissa Lorenzo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvMHBTZjNnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2020-02-02 02:54:28.050328+00 6 years ago Carolina Barreiro Galera \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvcE1pOFp3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2020-02-02 02:54:28.050328+00 6 years ago José Luis Pasabant \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNRdDdpN21RRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 2 2019-02-02 02:54:28.050328+00 7 years ago Daniel Rodriguez Dorta \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Marcos Castellano Navarro auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Brenda es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNpNHZpS19RRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 Edited 5 years ago Juan Almeida es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQwZ0xpODN3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago David Nuñez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURZOU95dlN3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Juan A. Montiel-Nelson auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ2X0oyazVRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago Jose Pozo Peligros auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNNcnRuMkl3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago marian d. auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ4bmVDX3RBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 5 years ago Abian Socorro Rodriguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQ2X0lTX1lnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago Ines Santana auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUN4LV9DQUVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2024-02-01 02:54:28.050328+00 2 years ago H Bueno auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVZ2FDeXB3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago CARMEN S. auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvbUtQLW9BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Luis Miguel GonzálezMedina auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVd3ZyTV9nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Celeste Trujillo auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURSMjV6bklBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2024-02-01 02:54:28.050328+00 2 years ago Diario Ciclista auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURrbUpMLWJBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Antonio Semidan Hernández Perera auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvai1PajRRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 Edited 6 years ago Miguel Pérez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNDdHF5R0pnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 Edited 5 years ago Anyelo Anyelo auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ4al82NXNRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 5 years ago sergio hernández de león auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNobzdMdERnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2024-02-01 02:54:28.050328+00 2 years ago Davinia Ramirez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURlcmVfYVJ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2023-02-01 02:54:28.050328+00 3 years ago Maika Masdías Bonome \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNHOWQ3WS1nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago Fernando Noteimporta \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQ2eElHbkF3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago Lionel Cabrera Jiménez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNxcFp1YkZBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago Jose Campos auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUR5aE1Qc2p3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago ALICIA QUEVEDO VENTURA \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUR5dU9UY3NBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2022-02-01 02:54:28.050328+00 4 years ago JUAN ANTONIO HERNANDEZ auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURpNU9LcXhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 5 years ago Enma Perez Mejias \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURzMW9lRG13RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 5 years ago Domingo Perera Garcia auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURzNkl2OVRnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2021-02-01 02:54:28.050328+00 5 years ago Matías Vázquez Rodríguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURNeExDaEJBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Aida Peña auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURNeVBXQW1nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Daniel Pulido \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURNb0kyVEJREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Bogdan G \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQwaGV6RFB3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago MAria Elena López Salvatella \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwMzZ2VXpRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago El Nene Bomba \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwOE8zYW1BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago CINETELEMANIACOS \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVMzhXUllBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Yaiza Cardona \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVOTlmRFpnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Priscilla Sosa Sosa \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVeW9ELWp3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Jose Manuel Arteaga \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVN3RLVmNREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Pere Domínguez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVMHBTOGJ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Patricia Ramírez R. \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURrdTdPYjRRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Oswaldo Lemus Borges \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM0MlBHYkh3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Ramon Aires \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURZek5LVVlBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago usuario 97 \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURvZ2N1aU93EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Mario \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvcDQyQjZRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Carla García Melián \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvdTZPdmtBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Yessica Benitez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvNDZHcXlBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Korneel Ostyn \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvb19tRjJRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago raquel rodriguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvd3N6VHNBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Gladys Diaz \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvOE1xNmFnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2020-02-02 02:54:28.050328+00 6 years ago Maria Luisa Alguacil Araujo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJOTdTRXRBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Ru Mr \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJMmJyb1J3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Guayarmina \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJMW9YNkVREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Tara Gallardo hernandez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJMnEyOUlREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Richard Alfaro \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJNG9QVGZREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Rei Neko \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJdExyYzlBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Elba Santana Hernandez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJb0ozeG9nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Elizabeth Santiago \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJNS0tVmpRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Juan Miguel Santana Padrón (Lobo Poseídon) \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUR3MzZ5ODF3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago delia alcantara \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNnOElQdjBRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2019-02-02 02:54:28.050328+00 7 years ago Javier Martin Santana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNBd1pLM0JREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2018-02-02 02:54:28.050328+00 8 years ago Ryuichi Lanzo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUN3bGJfQjZRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 3 2018-02-02 02:54:28.050328+00 8 years ago Xotaele xotaele \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Isabel Tomé H es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Ismael Nef Martínez es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago javipower chuck auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago rosa delia martel rodríguez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Mucho Mushasho es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Samuel Romero Arbelo auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago Octavio Arencibia es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNRek9QWXlBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2017-02-02 02:54:28.050328+00 9 years ago Carmen Diepa auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJanN6RzRRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Rebeca Brito Ramos auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQwZ09xWUJBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Cecilia Glez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMyOEtuMkp3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago p auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURtejk3bjR3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Yurena auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQwbWFDOV9nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Bernardo guagueros por el mundo auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZek5tSHVRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Belen Lopez Brito auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJcE91ZXBRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 Edited 6 years ago Juan Ramirez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJbnNHQzFRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago ERNESTO CORTIGUERA MARTIN auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNoMmYzODFBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2024-02-01 02:54:28.050328+00 2 years ago rosa ss auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNCcThYM0tBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Alicia Torres Martín auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURzNlp2YWhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Francisco M auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURDaFBfczBBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Montse AlvarezMedina auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUR5em9uTlFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago francisco López (franlopez731) auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvZ1pHdDNnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Maria Luisa Sanchez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURxaktDMndnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago Fran auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZdlpESG9nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Javier Falcon Brito auto 2026-01-31 18:46:40.235474+00 ChRDSUhNMG9nS0VJQ0FnSUM0enI0WRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Fayna Maria Alfonso Rodriguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNXLVBQdFVBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Jose Rodríguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQ0anUyQkt3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Veronica Cruz auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURTMnA2STFBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Luis Hernández Rodríguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNDcXFibWNREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago nira peich auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvMXZQYmhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Jorge AG auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNKMV9IT25RRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2024-02-01 02:54:28.050328+00 2 years ago Claudio Rivero Armas \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNSck83REhREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2024-02-01 02:54:28.050328+00 2 years ago JORGE LM \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURCaGZMbFN3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Joseba Catalan \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNCeGRfYU93EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Adonay González auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQtazV2NHdRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Jose Luis auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMtNktLQVZ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2023-02-01 02:54:28.050328+00 3 years ago Miriam Martín \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNtZ2RtQjJ3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago nieves alonso auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNHdU0zNC13RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago Julia VG auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ2MXFITHlRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago Marta García \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURxdkxxVkd3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago socramxiii auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURLekotODVBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago Teresa Goncalves auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNLcTVmWEJREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago María Eugenia Castiñeira auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUR5aF91UVNBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2022-02-01 02:54:28.050328+00 4 years ago Saray Cepero Matos auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURpdVBIOGZnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Carolina Oliveira auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNpczREelRnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Israel Ramirez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNpbVl1Y0N3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Maricarmen auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURDOXFEX2tRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago juana jesus garcía auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNDMkt1SWdRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago jose mendez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQ4aTllaUNREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Eugenio Domínguez Martel \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ4eGJLcmhnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Kiliam Fierro auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ4cWQ2RWlRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Chaxiraxi De La Nuez Santana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvaTc3QmFBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 Edited 5 years ago Team Miguel Xd auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNzN1pYOWNnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Miriam Peñate Garcia auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNzbnI3Vi1RRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2021-02-01 02:54:28.050328+00 5 years ago Cristina Lozano Chico \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURNdDZya0NBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago loida Gnz \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURNLXRHVU5REAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Jota \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNNdDVueTdBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Miguel Torres auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNNdDhIYnd3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Sara Cala auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNNNmVfOElBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Alex Pérez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNNb2ZEUDNRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Pedro Velasco Santana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQwbmVDd2R3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Gustavo Torres Dominguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQwN3NiXy1nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Boris M. Vega Molina \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQwMnFINUtBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Agustina Martinez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQweXJhN1pnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Chano Hb \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwbGNpc0JREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Carmelo Santana Santana \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwdWUyempBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Antonio Montenegro Trujillo \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwaEtQSzhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Dunia Roque \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwMk5qckx3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Antonio Medina \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwMEx2T3hRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago rosa solarez garcia \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVdDhqLTlnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Set Mrs \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVbDdpSVRnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Pedro Romero \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVdTZLMDNBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Nicol Montesdeoca \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVeTVlSm13RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Carlos Santiago \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVMXBHb2FnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Manuel Felip Cabrer \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVeV83REVREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Aarón Medina \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVMC1ENkZnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Vicente Subiela \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVaFBLbTFRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Natalia Ortega Ramirez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURraV9hVDdBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Carlos Dgz \N 2026-01-31 18:46:40.235474+00 ChRDSUhNMG9nS0VJQ0FnSURFdmFkcRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Nayra Rodríguez Pérez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM0bU1iV0ZnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Ana Tejera \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM0NEphemRnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Manuel artiles torres \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURZbF92YmNnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago angharad montesdeoca santana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURZMi0zYkh3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Kirian González Jiménez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZX2FqbnNBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago familia perruna dog \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNZMV9ia1J3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Nuviye Nuviye \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJOG9uZW5BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 Edited 6 years ago Dani M \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvaEptTDhRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Rubén López López \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNveDVfc1NBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Mapi Gonzalez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvMjd1NkxnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Oliver Vega \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvN3FMRU53EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Elena Fleitas \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvNk5iRXJRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Aytami Herrera \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvaU9XMU1REAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2020-02-02 02:54:28.050328+00 6 years ago Ismael Breval Garcia \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvb1B5cWZBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Falcón Grimón, Jorge \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJcDhiY2JREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago juan saavedra \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJeTk3RXJBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Jaime Lomba \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJOXA2SExREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Erwin Paetow \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJaXZtbnJRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago MIGUEL Y MARTA CABALLERO GALVAN \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJa3BqanF3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Pino Rodriguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJN0xHZGd3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Angelica Clarke Ruiz \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJek56Z0V3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago lola sosa \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJdEt1RlFBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Tomás Pérez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJX19xckNREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Iván Carlos Peralta Soler (Vani Taperal) \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJLTdfdTZRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Ascen \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJaTVDYU1BEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Alicia Diaz Gil \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJazlQeUlREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago marta zubeldia \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJay1PMExnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago NBT \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJdGJiU1RREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Marta \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJaHRDRGF3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Edu V. \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNBOS0yejVnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago fRANCISCO jAVIER CÁRDENES Quintero \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNRLXBtSG1BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago Pino Sm \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNRcU9Tel9BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2019-02-02 02:54:28.050328+00 7 years ago José Rodríguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURnLUo3dHhnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2018-02-02 02:54:28.050328+00 8 years ago Germán Udiz \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURReVplSHB3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 4 2018-02-02 02:54:28.050328+00 8 years ago mabehegor \N 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2025-12-02 02:54:28.050328+00 2 months ago Lucia Ramírez es 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2026-01-01 02:54:28.050328+00 a month ago Guaci Calderin Santana es 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2026-01-01 02:54:28.050328+00 a month ago Airam Hernández es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago javiervazquezsalinas es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Borja Cámara Millares es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Lili Sv es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Jonathan Sanchez es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 Edited 5 years ago Carlos Alberto Benitez Ruiz es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Edertano -- es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Judith Rodriguez es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Naira Afonso Infantes auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago beatriz deniz auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Hacomar Caraballo Diaz auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Lazaro Crespo Arzola auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Derek Alemán Torres auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Jesus alberto Medina trujillano auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Miguel Brito auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Gio auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURYLXNqYnpRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2025-01-31 02:54:28.050328+00 a year ago Agnieszka auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Alvaro Lopez es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Enrique Santamaría es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago MARU QUESADA DOMINGUEZ es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURCejVYdUx3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago JUAN DAVID HIDALGO auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVczctd2FREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Alfonso Collado auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 Edited 6 years ago Antonio Jesús Peña Domínguez es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Domingo Sanchez es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURNcVp5YUJnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Guacy Sos es 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Juan Francisco Sánchez Ramos es 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQ4ZzRibGFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago José Heriberto Ramos tejera auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURVbWM3bGhRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Margarita Batista auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURHZy0tTWVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Glayson Wagner Rodrigues auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURrcC1yTmd3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Agustín santana auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwanBXOWpnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Marian d auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNqNzRUeEl3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2025-01-31 02:54:28.050328+00 a year ago Loli Rodriguez Garcia auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM4bllMRDJnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Yaiza Soriano Sosa auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvdU9PTTBnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Juan Perez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNpdFlxeVVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Pepe Reina auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZNDhYU3dRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago CAROLINA GARCIA SANTANA auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNNaFpLVFFBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Jovita Falcón Santana auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURtNjYzZUJnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Jennifer Aleman Medina auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURoNmE3azBRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Josué Betancor auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURzaXBMS3lnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Cristina Mauricio Quintana auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNTLTl6RzV3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Maria Jesús Melián Pérez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQ4a2JuOVZREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Luis Déniz auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZNVlfTWdnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Juan Manuel Goya Luis auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURDNGR1YVNREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago raquel perez gadea auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvaE5YTUVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Jim Álvaro auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJcnJxbWpRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Edu Suarez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNveFlUMG13RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Sara Rey auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJdUozaG5BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Rafael Vallespin Montero auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNZbWViWTJBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Toni Torres auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJOUp6YkZREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Juan Toledo auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ2X0wyN3R3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Rosa Maria Hernandez Santana auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJOGZxQ2JnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago LAURA CASTELLANO CARRILLO auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNJaWI2cWhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Crastoby _____ auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNacHVMdWJnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Isabel León auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURzbWU2bEhnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Mercedes Pérez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURZMHJTQXdRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2025-01-31 02:54:28.050328+00 Edited a year ago Victor Tnk auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURDNmQ2UXh3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Aida Oval auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURlMFphZ1hBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Ruyman Figueroa auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURpck1LNmlBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Valentín Acosta Matos auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNvbVpER0JREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Tania Ferrera Lopez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUN5ck1PSU9nEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 Edited 4 years ago Juan Oval Gonzalez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVamNPTVBBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago David Ramos Rodríguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJaUpDYmVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Carmen M.c auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURNa01QZXJRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Beatriz Olloquiegui auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJbV91Ulp3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Jacob Prada Rodriguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNJdzdMSVN3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Marisela Hernandez Perez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwbV9mTmFBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Azuleida Santana auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvd19uMjJ3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Oliver Garcia Jimenez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNteW9lSUFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Abian cruz auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUR5cHFURm93RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 Edited 4 years ago Marta Dominguez Deniz auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNpeW95WElBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Víctor M. Úbeda Tarajano auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwZ2JTZ2hRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Tere diaz Melian auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNNcVlfSFlREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 Edited 4 years ago Antonio Quintino Nuez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUMwNTk2WUlnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Susana Zambrano auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJbHBTekhBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Paqui Rodriguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNtM0otZk93EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Minerva Almeida Reyes auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNmdE1uN213RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2025-01-31 02:54:28.050328+00 a year ago isabel lopez artiles auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNwODlYaXJ3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Jose javier Rojas vargas \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNwbWUzLUV3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Ariadna Rodriguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURSdzlpVkd3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Raul Toledo auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNScFlPb2dRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2024-02-01 02:54:28.050328+00 2 years ago Vanessa Paleo Melian auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURCOUpiNGhnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Lidia Ares Tejera \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQtNmVmdWFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Julio Díaz auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURtcmFhTzFnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2023-02-01 02:54:28.050328+00 3 years ago Maria Garcia Brito auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNtazllZk1REAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Jose Daniel Roque auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNtMnVYalFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Alg Lara auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNtMkl6YmdBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Jeanette A.R \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNHc2E2NlZBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Daniel Diepa \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNHdnAzTDlBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Davinia Rodríguez Afonso auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ2eFoycjlRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Azzay Rodram auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM2NGZUTEFnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Diego del Rosario Quesada \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURhMnRLZ3F3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Antonio Santana Calero auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURhNU5laVNBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Jose Rodriguez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURhdU51ZGV3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Samia Yamal Rodriguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNxN2FlQ3hBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Yure auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNLeC1tUnVnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Jose Marrero auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUR5dDVPUFpREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2022-02-01 02:54:28.050328+00 4 years ago Ylenia Rivero Almeida auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUN5MEkta1N3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago TheSarimari auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURTNTl6aHBBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Campa87Lp \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURTMVptZFJREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Nuria Brandon Davila \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURTeGF6dnlBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Salvador gonzález auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURpM09md3NBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago vicente ramirez gonzalez auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNpM095WlJnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Luis Sánchez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNpNUx5SnJBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Sara Marrero \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURDOXRLcjdnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Ángel Sánchez Barreto auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURDbE1yUzN3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Maykel Valdes Perdomo auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNDdDlYbV93RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Silvia Bello Marrero auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNDMmRHdVlREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Jose Montero auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNDdHEybjhBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Gustavo A. Machín auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURjeDdUSHJ3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Fátima Pérez auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURjbG8tWmlnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Isabel Jiménez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNjMmIzT2R3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Diego Santana auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNjMXByUzF3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago Elina Materan auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNjaU9TVGhnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2021-02-01 02:54:28.050328+00 5 years ago toño santles santles auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNzcXVPd3FnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago María Reyes auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNzalAtY3NRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago JUANA MARIA PULIDO CABRERA auto 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURNZ1B5dW9RRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Laura Martel Lacapria auto 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNNNWJXYlV3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Helena Espino Fernández \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQwem8yeDVnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago MIGUEL Santana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUQwNU82NE5nEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago DOMINGA SH \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUMwOU5lcmxBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Jorge Martin \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVeFphR2JnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago ANTONIO Henríquez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVc2MzQ1BBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Carlos CG \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURVZ09fX1lBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Jay DeLosMuertos \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVbDVLNndnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago pablo andres morales gallego \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVdV9hNGxRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Patricia Godoy \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVNWRlaS13RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago David Pérez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVOGFQbS1BRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Mandy Marrero \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNVc1luTEFREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Anne-Hélène BERNARD \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVeE5LUDV3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Angela Arias Marín \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNVMExuZzdnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Rosa ana Matias \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNreGNmc2hBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Ana Alfonso Hernández \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUQ0dEpDQTlRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Guaya M \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM0eWVlaWNnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Cris MedSan \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM0eWRiaDBRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Ruth MQ \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM0eXBEcjB3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Carlos Sánchez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM0MU03anJ3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Francisco Javier Marrero Castillo \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUM0dVBuZkJnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Alejandro MORENO VEGA \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUM0Z0ltUXF3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Diego Aguiar \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNZeDZiZ1p3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Mar Cabrera Rodríguez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNZazdXRWRREAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Liliana Acosta \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNZdmMtMGVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago MARIA SANTANA GONZALEZ (MICROPIGMENTADORA) \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNZM01xV0J3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago GABRIEL García González \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURvb19ieTRRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Juan Carlos Millán \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURvaE9PYkhnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago beLinda perez armas \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvbjV2b3FBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago francisco sosa medina \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvcjllN3BBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Francisca Hernandez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvajVfMnJRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago JORGE LUIS MORENO NAVARRO \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvdzk3N2tRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago jenifer batista falcón \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvN3FUVHh3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Juan Manuel Rodriguez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNva2VTcXVRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago antonio sanchez \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvN3R6N3VnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Candida \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNveHBEZUxBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Echedey Cruz Hernández \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNvOUtxVzhnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2020-02-02 02:54:28.050328+00 6 years ago Miriam Lorenzo Diaz \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJMzdDQWtRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Francisco Medina Cruz \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJNTdQUVVBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago FernanGamer HDModzz \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJazhIVDV3RRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Graciela Magdalena Mora \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJbHNPNTVRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago José maria Ramírez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJNXQtQVVnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Mar Heras \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJcHFybHFRRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Jose .Granja \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSURJc0p6bTNnRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Miriam Mendoza Garcia \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSURJZ1AyM2J3EAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Angie Godoy Sánchez \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUR3eUw2VUNBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Dani \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNneFBYTUlnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Sebastián \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUNncFBDdkJBEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Ayose Guzman \N 2026-01-31 18:46:40.235474+00 ChdDSUhNMG9nS0VJQ0FnSUNRa1BybjFBRRAB Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Luis Quintana \N 2026-01-31 18:46:40.235474+00 ChZDSUhNMG9nS0VJQ0FnSUN3MTdic1ZnEAE Jugueterias Nikki 21353ceb-2835-41a5-90f4-8609c60051a4 e4f95d90-dbbe-439d-a0fd-f19088002f26 5 2019-02-02 02:54:28.050328+00 7 years ago Fátima Pérez \N 2026-01-31 18:46:40.235474+00 Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-12-02 02:53:29.812219+00 2 months ago LAURA SANTANA LORENZO auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-10 02:53:29.812219+00 3 weeks ago Dolores Rosales auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-10 02:53:29.812219+00 3 weeks ago Marian Panayotov auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-12-02 02:53:29.812219+00 2 months ago Bengi Canarion auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-10-03 02:53:29.812219+00 4 months ago Nara Escalero Romero auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-01 02:53:29.812219+00 a month ago Sara Rivas auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-10-03 02:53:29.812219+00 4 months ago C R auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-01 02:53:29.812219+00 a month ago erik hernandez auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-08-04 02:53:29.812219+00 6 months ago RAMON RIVERO AGUILAR auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-09-03 02:53:29.812219+00 5 months ago Chany Herrera auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-05-06 02:53:29.812219+00 9 months ago Margarita Malillos Betancor auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Santiago Reyes Molina auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 2 2023-02-01 02:53:29.812219+00 3 years ago Judit Lorente auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Alfonso Martel Santana auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQ5MW9POVVREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Manuel del Toro Robaina auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2024-02-01 02:53:29.812219+00 2 years ago morgana S auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Yani Frugoni Lopez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Paco Hernández Garcia auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Margarita Marrero Monzón auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago Juan Alberto Afonso Gonzáles auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-10-03 02:53:29.812219+00 4 months ago Almudena Cano auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-06-05 02:53:29.812219+00 8 months ago Consuelo Mariño Casillas auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-08-04 02:53:29.812219+00 6 months ago Rosa Maria Rodriguez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago Javier Gonzalo Susial auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-05-06 02:53:29.812219+00 9 months ago Manuel Pulido auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-06-05 02:53:29.812219+00 8 months ago LA PETIT GOURMET CANARIAS auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-01-31 02:53:29.812219+00 a year ago Lola Gutier auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2s5U2FuaHJTV2hvZW5kRlJrUk5ZVWhIZEZkS1VuYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-12-02 02:53:29.812219+00 2 months ago ramon gonzalez mendez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Juliansv S auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-11-02 02:53:29.812219+00 3 months ago Armando Lorenzo auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-12-02 02:53:29.812219+00 2 months ago Omar Ross auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Héctor PD auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Joe Vincent auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-01-31 02:53:29.812219+00 a year ago Udo Helms auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2pseGIxTjBiMmMzZVZsbmNtSm1hV2hEYjBsR2IxRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-11-02 02:53:29.812219+00 3 months ago javier auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago Filomena Vázquez Viñas auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Milena Vasileva Halacheva auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago Pedro Antonio Moreno Acosta auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-07-05 02:53:29.812219+00 7 months ago Ely Santana auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago FoodStore auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-03-07 02:53:29.812219+00 11 months ago PEDRO DANIEL MERCADO GARCIA auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-10 02:53:29.812219+00 3 weeks ago Isidro Córdoba auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-04-06 02:53:29.812219+00 10 months ago Sil Nog auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Sandra Santana es 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Zulema Villar es 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2tweVUwcHljVFV6TkRWUFJsWkdlRlZRWVRaRFNuYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-09-03 02:53:29.812219+00 5 months ago Jesús Jaime Rodríguez Díaz-Romeral es 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Silvia Martí auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNYMFBHLVZBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-01-31 02:53:29.812219+00 a year ago Begoña Familiar auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Américo Morales auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Gloria Canola es 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNJZ1p5Wm5BRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-05-06 02:53:29.812219+00 9 months ago Yadira González Rueda auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUR6MUtIRnRRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Eduardo auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUN3LTRud3FRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago Silvia auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQzLW9Td1J3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Cook5350 auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJLXRqOVAycjh2emp3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-07-05 02:53:29.812219+00 7 months ago Sonia Elena Torres Pérez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURyX2FPT2JBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Tino Tino auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2tGR1JVRTVXRzFpUVc1bmVrTldNRkZtWkdKNWRIYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-08-04 02:53:29.812219+00 6 months ago Ismael antonio De la fuente acosta auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUMteEkzd3lnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Néstor Odón Montesdeoca Suárez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUN4emFUanR3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago FRANCISCO BRAZUELO GRUND auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNYb2FqcnRBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-06-05 02:53:29.812219+00 Edited 8 months ago Jonathan Perez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago Jose J. auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNReHBXNXd3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago Noe Meneses auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNBeE55cXN3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Toni Vico auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNSZ3ItVUpBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago hELENA rAMÍREZ auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQ1eUsySFNBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago Faly Nuñez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2023-02-01 02:53:29.812219+00 3 years ago Güimar Del Pino Perez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNic05QaVhnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Ayoze Sánchez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VQdV94b2FLbDl5bXF3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-06-05 02:53:29.812219+00 8 months ago Cristo J auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURfMjU2b1BBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Lourdes Trujillo García auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNqdUliUmN3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Maria Isabel Acosta Alvarez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUN5MFBLM0hREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2026-01-01 02:53:29.812219+00 Edited a month ago Gran Canario auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURkeUp1eGhRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Begoña GP auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQ5NXNYYXJnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago carolina Pérez Vega auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2sxUVUzb3hMVm8wTlV4Mk5ETjVVRWQwZGpZekxXYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-09-03 02:53:29.812219+00 5 months ago Chari Cabrera auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQ5dmVXY0xREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago Mari Perez Medina auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNROEtqSm13RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago PABLO DE LA FE RUIZ auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-05-06 02:53:29.812219+00 9 months ago Ramón Rodriguez Quevedo auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Pedro Monge auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Cris auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURsenFEbllREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Carmen Saga auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNoNmVfUnJRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago Rosi Castro Garcia auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUROby0zMVpBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 Edited a year ago Fanny Rodriguez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMxeXVybWJBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago MELCHOR MORALES SORIANO auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURCdk9IOHdRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Francisco Javier Vargas Pérez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNOc1BUeWZnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Maria Hernandez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNSanRhQndRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago yassiel perez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQtd2R2MkN3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2023-02-01 02:53:29.812219+00 3 years ago Sergio Perez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUROanRfSlFnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Tony auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNYaGNDN293RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Miguel Talavera auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUR2bk9yZmdBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Rosa Del Rosario auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnTUNRN1BmcExREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago Alberto Garcia De Celis Borrell auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNIOXJ1RFpBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Eduardo Mateos Santana auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNMMHAyeFNnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Maria del Carmen Montesdeoca auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNRcnNQVHZBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago Miguel Salazar Alonso auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNqek5XTldnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Juan Ramón Jerez López auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURMaHJycktBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Jose Antonio Gonzalez Artiles auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNSZ2VTY0JREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago El AlmaZen auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNKOEpTajJRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Alexis bandurria auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURYd1BUbDZRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 3 2025-01-31 02:53:29.812219+00 a year ago Juani Sosa auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNqdC1MRXFnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-01-31 02:53:29.812219+00 a year ago Silvia Suárez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURfcXFiQldnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Dailos Leon perez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUREaUxPQ1FnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago Laly Santana Reyes auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNheXBuMjVBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2022-02-01 02:53:29.812219+00 4 years ago María José San auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURaLWNhcEh3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Virginia Hernández Cardenes auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Juana Hernandez Jiménez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNENzlHWGJ3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago FRAJUNI auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNIOE9LdVpnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Begona Miguez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNwNDVIc0N3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2024-02-01 02:53:29.812219+00 2 years ago Remedios Azorín Placeres auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNMcnNfdWZBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago tiojuan apartamentos auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUM5enYtYjB3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago María González Tuñón auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQtdmJIYzVRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2023-02-01 02:53:29.812219+00 3 years ago Luciano Monroy Altamirano (Ryuzakira) auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2pWMVVFNVVkbWd5Ym1nNFQxQnJUbWRmWTI1a1ptYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-12-02 02:53:29.812219+00 2 months ago Laly Ramirez De Armas auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNleUlYa2NBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago fermin artiles romero auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUR0bmN2SDJRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago antonia estupiñán auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUQ3aFBUZkVREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Miguelito Notimporta auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUMxcXBmejZBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Jorge S.F. auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNqalpXN3p3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Eva Pérez rosales auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQtaWV5cWl3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Lega Gal auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTURnMGE2NG53RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-03-07 02:53:29.812219+00 11 months ago Gervasio auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURkbkluU293RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Inma Martín auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUN2cVlUTTNRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2025-01-31 02:53:29.812219+00 a year ago giovanni bellei auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURMODdfSHlnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Mónica Domínguez Marcos auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURkZzdfeTNRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Rosadelia Alamo auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNQNU5uTVNnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Manuel Rivero Navarro auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUMxcXI2aTdBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Maria Garcia auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNheXJxeTlRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2022-02-01 02:53:29.812219+00 4 years ago Silva marrero álvarez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Miriam Falcon auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQ5X05ESzJBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Carla Rivero auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMyek9LT1JnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 3 2023-02-01 02:53:29.812219+00 3 years ago Jorge Santana auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNEcktqNGhBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Humberto Cabrera Garcia auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURYcDV6c0xREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago J.M. P.R. auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURGd2U2X013EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago Pablo g. auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURPamZuV01REAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago juan antonio leon auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNlallpM1FBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago karuzo chris auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnTUN3OUxId1FBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-04-06 02:53:29.812219+00 10 months ago tony alvarez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURUazZlRmRBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Antonia Gutiérrez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNfOHJhejVBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Tere Espino auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNqeDduTGpnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago mito perez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNObl83Yzd3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Héctor Camilo Daleffe auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUROMWZXWHpBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Marta Alemán auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNsbXRlMFl3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Rafael Afonso auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURkdTdXVWVBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Fernando Peña auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNsN2E2UWh3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2024-02-01 02:53:29.812219+00 2 years ago Chamaida S.R. auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURPdUludEh3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago L B auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNocXJlSXVnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Maria Teresa Lartuna Marti auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNOODlDcm13RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Manuel Garcia Gallardo auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUMtdmRqUTFnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago SOLELUNA auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUR5a1pTQk1REAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 3 2022-02-01 02:53:29.812219+00 4 years ago Celia Santana auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Ana Garcia auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQ5bExQVHV3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago José Manuel Domenech Cabrera auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURabGJ2TnhRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2024-02-01 02:53:29.812219+00 2 years ago Rayco auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VPM3FxOExFaFpiYVpREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-06-05 02:53:29.812219+00 8 months ago toñi perez ruiz auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNKdE9PbmZ3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Luz Marina Sánchez Padrón auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUM5bHA3MmlRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Alexis Guadalupe auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUREaDVpNmt3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Calixto Montero auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNobGYzbHhBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 Edited 2 years ago Juanjo Garcia auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURNdUxfYUp3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2020-02-02 02:53:29.812219+00 6 years ago Tony Hernandez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNEdXVPWEd3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago BIANCA QUEVEDO PERERA auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNqNE1qdUpBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-01-31 02:53:29.812219+00 a year ago Maria Romero Quintana auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUMtcmJ2M3pnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago L S M auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUMwX0pYVl9BRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2020-02-02 02:53:29.812219+00 6 years ago Emilio Hernández auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNscmJxdV93RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Fran Medina auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMtLXZybUN3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Nelson Alonso auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMxdUptM1lnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Diego Vera Palmés auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNLMThpNUp3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2022-02-01 02:53:29.812219+00 4 years ago Nicolás Peña Marrero auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNRZ2ZtWDBBRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 3 2019-02-02 02:53:29.812219+00 7 years ago Javi auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2026-01-29 02:53:29.812219+00 2 days ago Desiree Brito auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2xZMGRtdFlhM1JQU1RjdFUweHNXVkpsYTA1MWFXYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-29 02:53:29.812219+00 2 days ago U S auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT25GVFQzTnpYMFJOY0VoVWJrZDBVSFl4Vlc5eVltYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2026-01-27 02:53:29.812219+00 4 days ago cristina azcarate gonzalez auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT2tkQ1RFNTBTWEZITldwVmJFZFdOMDlsTVhKeVNHYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2026-01-24 02:53:29.812219+00 a week ago Antonia Baez Lopez auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT25GMloyWXlWMUZsUXpWWmFtUkZTVWxNY1Mxa1kyYxAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-12-02 02:53:29.812219+00 2 months ago Sandra Sosa auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT25oVE9WWlROVkJtTUd0UVJrSTNaVFYzU1ZJMVJsRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-10-03 02:53:29.812219+00 4 months ago Vanessa fr auto 2026-01-31 18:46:40.494199+00 Ci9DQUlRQUNvZENodHljRjlvT21ORWIxTmZNbXBqZWxOVmVGbHRSRXAzWjBWSlRrRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-08-04 02:53:29.812219+00 6 months ago Jonathan Falcón sanchez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnTUNBdE1xdGhRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Alejandro Hernández auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURfX0xxMktREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Jose Tomas Vega Ceballos auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNYcloySmR3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago natalia rosales auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURiOE9UcFVREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2025-01-31 02:53:29.812219+00 a year ago Michelle Pitcher auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUR6eThDNXZnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Candy{小糖} auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUN6aF9Qc19nRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Rita Talavera auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUN6LTV2dENBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Clari Heredia auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURkek9TUGVREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Carmen Delia Rodríguez García auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUR0LWVEdkdBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2025-01-31 02:53:29.812219+00 a year ago Belén auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNKbnBXU3lRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 4 2024-02-01 02:53:29.812219+00 2 years ago sergio camacho navarro auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURoM0l1a2tnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Bela Barcelona auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURoeEwzMXF3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2024-02-01 02:53:29.812219+00 2 years ago Pedro Pablo Quijada auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQtdmJmT25RRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2023-02-01 02:53:29.812219+00 3 years ago Desatasco Mario Lopez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURXOEpPZU1REAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2023-02-01 02:53:29.812219+00 3 years ago Pere Domínguez auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNXbnJUUkRREAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2023-02-01 02:53:29.812219+00 3 years ago Juan Diaz Melian auto 2026-01-31 18:46:40.494199+00 ChRDSUhNMG9nS0VJQ0FnSUNXOXZoUBAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Rosana CH auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURtODRITWd3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2023-02-01 02:53:29.812219+00 3 years ago Vicky Arévalo auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNpNjd6NkhnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2021-02-01 02:53:29.812219+00 5 years ago rafael pacheco pallares auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNpaTQ3eENBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2021-02-01 02:53:29.812219+00 5 years ago Sergio S auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNDM0s3a2pnRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2021-02-01 02:53:29.812219+00 5 years ago Manuel Beceiro Lopez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURjMk9PWTN3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2021-02-01 02:53:29.812219+00 5 years ago Marii Dee jotaa auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURzcVlmZmNBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2021-02-01 02:53:29.812219+00 5 years ago Rayco Manuel Alonso Oliva auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURNcjY2SGRBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2020-02-02 02:53:29.812219+00 6 years ago Ezequiel Suarez Diaz auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURNdzZtdEh3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2020-02-02 02:53:29.812219+00 6 years ago Antonio Rodriguez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNNdWJ6NzJRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2020-02-02 02:53:29.812219+00 6 years ago JUAN ABRANTE NEGRIN auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQwcVAyUzdRRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2020-02-02 02:53:29.812219+00 6 years ago adrián López Rodríguez auto 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUQwZ0pQel9BRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2020-02-02 02:53:29.812219+00 6 years ago Cristina Rosales auto 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUMwdHBxMlFnEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2020-02-02 02:53:29.812219+00 6 years ago Yessenia Yabeta Candia \N 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSURVdElETkpBEAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 1 2020-02-02 02:53:29.812219+00 6 years ago eloi arohcna \N 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNVdnJHMUR3EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2020-02-02 02:53:29.812219+00 6 years ago Adrian Negrin suarez \N 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNvODRDOU9REAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2020-02-02 02:53:29.812219+00 6 years ago ACORAIDA MENDEZ \N 2026-01-31 18:46:40.494199+00 ChZDSUhNMG9nS0VJQ0FnSUNBN091Zk13EAE 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2019-02-02 02:53:29.812219+00 7 years ago Sol \N 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSURROThQejd3RRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2019-02-02 02:53:29.812219+00 7 years ago ELIZABETH CASTELLANO SUÁREZ \N 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VJQ0FnSUNnaWM3VG9BRRAB 13 Islas 72e6644d-1c89-4757-be12-c195e666b2db f19a68b9-cddc-4584-8e74-630ce1a6b24b 5 2018-02-02 02:53:29.812219+00 8 years ago Lorena mujica garcia \N 2026-01-31 18:46:40.494199+00 ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-06-05 02:51:52.019028+00 8 months ago Zander auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-06-05 02:51:52.019028+00 8 months ago Yasha Paola Zink auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-09-03 02:51:52.019028+00 Edited 5 months ago Faith M. auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-09-03 02:51:52.019028+00 Edited 5 months ago Lydia Richard auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNqdHVHVzhnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago Tansy Ryan auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Pablo Nava González auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago anonyme auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Federico Arena auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago Nikola Tucaković auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Sara Paolicchi auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURCZ3NXNE9REAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2023-02-01 02:51:52.019028+00 3 years ago Tim Nowak auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURkNE5mRE9nEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 Edited a year ago OneDev auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURXOHZfb3lnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2023-02-01 02:51:52.019028+00 3 years ago Divine Adventure auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2026-01-30 02:51:52.019028+00 a day ago Hristiyana Todorova auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-10-03 02:51:52.019028+00 4 months ago Julia Gonzáles león auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-09-03 02:51:52.019028+00 5 months ago Amanda Toledo batreto auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago santiago arias auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago Jorge Antón auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Wilmar Pereira auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNLa2JHc2lnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2022-02-01 02:51:52.019028+00 4 years ago Júlia Jiménez \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURKaTRMMk5BEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Isabel Moreno Martínez auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Éric Lacabe auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURCdnVuR21nRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2023-02-01 02:51:52.019028+00 3 years ago Jesus Jaimez Serrano auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago Yaiza Munoz auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 Edited 2 years ago R L auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURrbWZHSU53EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2020-02-02 02:51:52.019028+00 6 years ago Julio Minguillon \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURrOFpUZVJ3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2020-02-02 02:51:52.019028+00 6 years ago Jorge Tirado \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURXaWJYWVdBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2023-02-01 02:51:52.019028+00 3 years ago Juan de la Torre García auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURKaTl5VVpBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Violeta Moreno Martínez auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURrMFlpNEtnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2020-02-02 02:51:52.019028+00 6 years ago Mary Carmen Calvente Pérez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNveW91aTl3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2020-02-02 02:51:52.019028+00 6 years ago Nicolás Osuna García \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNObnVDbGVnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Jojakim Sames auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNabXJLR3pRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2024-02-01 02:51:52.019028+00 2 years ago Christo Bn auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT21GcE1VVXdkek42Um5CUFUzWm5iREpmUVVNNGNtYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2026-01-29 02:51:52.019028+00 2 days ago Robert Herrera auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQ3MWZMVkZREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 1 2025-01-31 02:51:52.019028+00 a year ago Elena C.M. auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2026-01-17 02:51:52.019028+00 2 weeks ago Andrew Collett auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURqcllYN19nRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2025-01-31 02:51:52.019028+00 a year ago Stefania Garone auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2023-02-01 02:51:52.019028+00 Edited 3 years ago Manuela Schäffer auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2025-05-06 02:51:52.019028+00 9 months ago Dert Al auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNTeVBEZFZREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2021-02-01 02:51:52.019028+00 Edited 5 years ago Gerardo Sáenz De La Torre \N 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT21acGJ6Vk5RbE00U0dsYVVsOUdhVTVGT0V0dk9FRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2025-11-02 02:51:52.019028+00 3 months ago Quis Norris auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNBcmViYkFREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 2 2018-02-02 02:51:52.019028+00 8 years ago Moon Shine \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURNcm9TY3VRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2020-02-02 02:51:52.019028+00 6 years ago Andy F. \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2024-02-01 02:51:52.019028+00 2 years ago CELESTE GÓMEZ VICENTE auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURveUozTW5BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2020-02-02 02:51:52.019028+00 Edited 6 years ago Javier LaChica \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2023-02-01 02:51:52.019028+00 3 years ago Andrei Mur auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURCdThITzlRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2023-02-01 02:51:52.019028+00 3 years ago TanYahable auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2025-04-06 02:51:52.019028+00 10 months ago Polo doro auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNBODU3bWlRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2018-02-02 02:51:52.019028+00 8 years ago Karin Casadei \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNRclBtR2RREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2019-02-02 02:51:52.019028+00 7 years ago studio -mt \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN3azlQa2VREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2018-02-02 02:51:52.019028+00 8 years ago Alvaro Florindo \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNCaS11YzhRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2023-02-01 02:51:52.019028+00 3 years ago angel auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUMydk8yYkRnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2023-02-01 02:51:52.019028+00 3 years ago Giulia Di Simone auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURVdElDa2t3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2020-02-02 02:51:52.019028+00 6 years ago eloi arohcna \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURJc3BtSmxnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2019-02-02 02:51:52.019028+00 7 years ago Jacek Sztorc \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNJNGFIajRRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2019-02-02 02:51:52.019028+00 7 years ago Christian Rodríguez Plana \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNBZ01lN093EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2019-02-02 02:51:52.019028+00 7 years ago Lou Keay \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURRd01YZWRBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 3 2018-02-02 02:51:52.019028+00 8 years ago Cristina Cleotina \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQ4dmNYdWVnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2021-02-01 02:51:52.019028+00 5 years ago Awais Yousaf \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNoNUp5QWt3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2024-02-01 02:51:52.019028+00 2 years ago Emilia Koc auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQyLTViS1pnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2023-02-01 02:51:52.019028+00 3 years ago Pedro E Garcia auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNoalAyZWhRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2024-02-01 02:51:52.019028+00 2 years ago Sara Czajkowska auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURCM09xRTJBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2023-02-01 02:51:52.019028+00 3 years ago Cosimo Simeone auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2025-11-02 02:51:52.019028+00 3 months ago Miguel Giménez auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNzeTRQZnFBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2021-02-01 02:51:52.019028+00 5 years ago Olvi \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNval82SENBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2020-02-02 02:51:52.019028+00 6 years ago PABLO ESTEBAN \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNocE9DX0dnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2024-02-01 02:51:52.019028+00 2 years ago Vanessa De Oliveira auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURNa2JDcHlBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2020-02-02 02:51:52.019028+00 6 years ago Maru Urrutia \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2023-02-01 02:51:52.019028+00 3 years ago Berta BB auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURBamU2VjdBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2017-02-02 02:51:52.019028+00 9 years ago Christopher Parada \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNRekxEMjlnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2019-02-02 02:51:52.019028+00 7 years ago Consulting Ocean \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURXOE4yanFnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2023-02-01 02:51:52.019028+00 3 years ago Michele Gatto auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURRdU1QbGpnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2019-02-02 02:51:52.019028+00 7 years ago Adria Creixell \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNBbnE2QlVnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2019-02-02 02:51:52.019028+00 7 years ago Sebi Bin \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VPYk5sdGJmcWNpSWJREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2025-06-05 02:51:52.019028+00 8 months ago Maracot auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNfanRPcU1BEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2025-01-31 02:51:52.019028+00 a year ago Jonis auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNscDQ3RmhnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2024-02-01 02:51:52.019028+00 2 years ago Roji Magar auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURCOF9MZnBBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2023-02-01 02:51:52.019028+00 3 years ago Viera Semánik Orosová auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNCX0xqWW9BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2023-02-01 02:51:52.019028+00 3 years ago Shakira Rodriguez Moares auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNBMDh6WTNBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2022-02-01 02:51:52.019028+00 Edited 4 years ago Alice B auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR5dzU3M0hREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2022-02-01 02:51:52.019028+00 4 years ago Romain Farneti \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNzMjdQaWZREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2021-02-01 02:51:52.019028+00 5 years ago Jose Alberto Cerejido Cortes \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNNZzlyTDRBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2020-02-02 02:51:52.019028+00 6 years ago Eduardo lizardo gonzalez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNNeWNLcV93RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2020-02-02 02:51:52.019028+00 6 years ago Sara Rey \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNZek51cXR3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2020-02-02 02:51:52.019028+00 6 years ago Francois Ungerer \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURRcDV5SVBBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2019-02-02 02:51:52.019028+00 Edited 7 years ago Saúl Cruz \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN3LU9XZ1RBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2019-02-02 02:51:52.019028+00 7 years ago Valeri R \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURnLUliRjFBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2019-02-02 02:51:52.019028+00 7 years ago Elena Vietinghoff \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNBcmVXNGxnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 4 2018-02-02 02:51:52.019028+00 8 years ago Kevin Flores \N 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-17 02:51:52.019028+00 2 weeks ago Shauna R auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-10-03 02:51:52.019028+00 4 months ago Paola Suardi auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-01 02:51:52.019028+00 a month ago Denise Orlando auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-12-02 02:51:52.019028+00 2 months ago Alevtina Olkhovskikh auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-01 02:51:52.019028+00 a month ago Fedor Ivanov en 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-06-05 02:51:52.019028+00 Edited 8 months ago Elisa Cefis auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-07-05 02:51:52.019028+00 7 months ago Michael Haslam auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-03-07 02:51:52.019028+00 11 months ago Rzgr auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Simon Pfiffner auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQzMEwtb09BEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Tim Coors auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Aoife O' Brien auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-03-07 02:51:52.019028+00 11 months ago Clarissa Pambianco auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Juliette Navas Boffa auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Inka T auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Elisa Grifone auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago alina paul auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNLc1ozVUhnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Alexandra Stoicheva \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Elisa Ferrari auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM3OElmdGpBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 Edited a year ago Letizia Montuori auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNHNXR1WHZBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Morgan Cavanagh auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Veronika Bínová Bolechová auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago TBag auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Jacob Medina auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Isabelle Dapprich auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Klaudia Jaśkowiec auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNjcTcyZXd3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Elise Perton \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURLektIZktREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Anna-Lea S. \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURLX3JyX1d3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Flambetta Foco Loco \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQxdWRYbTZ3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Vlad Simon auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Flavia Indellicati auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNLaWJmY3ZRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 Edited 2 years ago Serafyma Nikiforova auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Bella Szutor auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNnaU5tdHFBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Ági Janó \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago jake purcell auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Joe Hennah auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Kosuke Nishio auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQwdmJqalV3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Kyle Milne \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURyaDliX1BnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Lucero Segura J auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNjcV9uMU9REAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Josephine Sonneveld \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURQbVBIdjVBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Jack Monk auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNLemZMQmRBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Alexander Velev \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNveDh5bFVnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago fabio leone \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURTby1fLW9BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Yen Il sun \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNncEtMSjFBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Stefano \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNRX3RMeG5RRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Sofie Brodova \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURwMUwyaGlRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Joao Ferri auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNvbXFfeWtnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago rego justforregistration \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUMxZ3BHcklBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Jessica Tran auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURDb01PVGd3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Ricardo Sanchez Sanchez \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURyaDhqWFBBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Ева Прилипенко auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNod1lYNEhREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago James Colter auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNNX2ZfVGRREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Valentina Jackson \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURNNi1hRTVBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Chris Redmond \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURQemRPbW1nRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Toni - auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURnaUxHdXBRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Neil Williams \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNBMGFXUXhBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Angelo Mauro \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR1MEpQc0lREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Juan Carlos Alvarez Parada auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNLbXZiQ2xRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Sandro Cacciatore \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNHMUpPd21BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Martin Alklid auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURnaWRfRDd3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Kamil \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURSemNtTjNRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago David Fernandez Carretero auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-17 02:51:52.019028+00 2 weeks ago david estevez alonso auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-11-02 02:51:52.019028+00 3 months ago Sofi Iazzetta auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-24 02:51:52.019028+00 a week ago Barbara Agbaba auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-11-02 02:51:52.019028+00 3 months ago ANTU auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-11-02 02:51:52.019028+00 3 months ago Charlotte Lechat auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-01 02:51:52.019028+00 a month ago Markos Paris es 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-07-05 02:51:52.019028+00 7 months ago Dori Galeote Benavides auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Alejandro Guerrero auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Adrian Bordas Garcia auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Louise François auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago beatriz del toro auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-06-05 02:51:52.019028+00 8 months ago Noemi Porteiro Pena auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago 22Marzo Y. auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-04-06 02:51:52.019028+00 10 months ago Matteo Dalessandro auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Marc Duris auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Pietro S. auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNyLWZxVU1REAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Gaspar Giner auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Jordy Ocon cordoba auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Juan Lago auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Jesus Cabello auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Sara García auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Nahuel Marchi auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Julian Pröve auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Eveling Cordova Alvares auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURQdWUtYS1RRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Mehdi Poyard auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNoNUo2UkRnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Juan Carlos Martin Yuste auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-12-02 02:51:52.019028+00 2 months ago Dunia Gomez es 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Mariola Martínez auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Silvia PD auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR1dTYzdUlnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 Edited a year ago ana c.s. auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Cora Jiménez auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago LAURA POZA auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Iván Blanco auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNDcDlXZDN3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago David robles guzman \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago AS82 auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURLX295VGxnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Isa V \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Greta Carlevaro auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQ3bDlMVzF3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Fernando García Ruiz auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Bruna Calabuig auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 Edited 4 years ago Elena Fortunato auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Javier Blanco de Torres auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUROcnNxZTBBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Lautaro Arozarena auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURvX0o3aHJ3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago César Domínguez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Vicente Blasco auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Samantha Villalobos auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQyMGQzUWJ3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Jose A. auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago roberta frigerio auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR5amF1SVdBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Ismael Orgeira \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-07-05 02:51:52.019028+00 7 months ago Xavier Casado auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago T auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Lixber Reguera auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQteEtmWXJBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Slim Bim auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURyaDdMTXJRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 Edited a year ago Tamara Pérez auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURLNUl6c0Z3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Rocío Cañizares \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUMtcV9DTkNBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Anastasia Markhel auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Коля Уксус auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Claudia Nicolas auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNLeDdxYjZBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Alberto g \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Mônica Lourenço auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURVcFBXQXFnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Ayose Hernández Torres \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNLcWNxZmZBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Lucia González Ois \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 Edited 4 years ago sandra garrido asensio auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQxd0lMbVlnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago amir hasaniha auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURJbzRPbUJREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 Edited 6 years ago Casi Do \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUMydVlDZWpRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Xabitxu Fidalgo vazquez auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-06-05 02:51:52.019028+00 8 months ago Lucas Buenos aires de andrade auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQzMHNPVTZBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Janus Rosholm auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUMwNW9IUGNREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Martina Lema \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Sílvia auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Jose castro auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM2bTZtTXp3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Imanol Bracero auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURyaDZxbDhnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Tere Juárez auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-08-04 02:51:52.019028+00 6 months ago Bayron Galviz auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Victoria Vargas Blanco auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Sude Ely auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Aina Calabuig auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-06-05 02:51:52.019028+00 8 months ago Ariadna janoher albalat auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-06-05 02:51:52.019028+00 8 months ago Carmen Abad auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURRajl2NkFnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Raquel M. \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNYd2ZqT2x3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 Edited a year ago Ginela Mates auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-04-06 02:51:52.019028+00 10 months ago Hernan Zochi Matos auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR4X09IVkR3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Valentina Pelosi auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURJdjh6WW1BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Miriam Alcántara \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURwMUxmaW1nRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Matyáš Červený auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURhMnR2V1pREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago chloe saura petegnief auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Wilson Eduardo Suárez Uribe auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURqak9mZXJRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Ivan Ñoti auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Juan Guillermo Arboleda auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN3OGQtTldREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Julio Martin de Dios \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURVMGRLQUp3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Gianluca Ardizzoni \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQwNXZhTERnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Diego Gomez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNOcllTSXRRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Suelen Souza auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURRNWF1OFl3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Carlos Olmo Bosco \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Fabio Espinosa Calatayud auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURyaDVpNTl3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Yeva Prylypenko auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUM4NjlhQ0pREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Miguel Tejedor Muñoz \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUMwNTVXd3Z3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago ALEJANDRA BELLO \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN5amFMX1lnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago alex patino \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURpM1B2VXF3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Jonny Mendoza \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 Edited 4 years ago Maria Elena Abad auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNxNGRMWXpBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago TwoMillionWays auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM4OE1McWpBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Valeria \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURKMGV2RVF3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 Edited 2 years ago lara fanciullini auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNvLU16LURREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Maria Prato \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNOeUstSVlnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 Edited 2 years ago Vex Vampires auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURxbmFHeXV3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Jordi Piqué auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURRcE03eUZREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Waterman Rex \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUN3OGFxUFd3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2017-02-02 02:51:52.019028+00 9 years ago Konstantin Miller \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURqcmNpS2NBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Juan Pablo Agudelo orjuela auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURKeTV6a3l3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago N_I_M auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN4OU0zbi13RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Silvia Marongiu auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURoMi1TV1NnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2024-02-01 02:51:52.019028+00 2 years ago Vad ElVady auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUMtejlPMU9REAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Alejandro Rodríguez Ojeda auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNlMHVLQURnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Maoka Gutierrez auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN1b1ptY3VRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Maria Eduarda Chaves Pacheco auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNPNGI2Z3ZnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Talía Hernández auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQyNEkzekRBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Dalia C auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNtem9YOVFREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Melle Boots auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQ2d3BqVF9BRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago luisina acosta auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURLMUk2MFlnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Maria Morales Potenciano \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNDcXItVUxBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Soufiane Derbal \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUM4NC1lczJ3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago pablo tort \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUQwNXEydVJBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Crisolino Ramos Ramos \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURZN1lQOHFnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Oliver Sebe \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURZOG9MUVlnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Antonio Viguer Gonzalez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURJcjZxNHBBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Yuliia Kistanova \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURJOUtqNEtBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Hassanain OpenYourEyes \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNJeDZmMk1nEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Julija Kuceruka \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURRb3N6d1FnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Mathias Genta \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURnZ2ZiWEtBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Magdalena Lena \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNBM3NTdGdRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Diana Cornejo \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNRb3V1MndBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2018-02-02 02:51:52.019028+00 8 years ago Claudio Pino \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUR1dTZQd0NREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Mafi Martínez auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURrazdEMk5nEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Joaquín Vega \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURDN2NQTnFRRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago brian bonilla \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNHbU1xMXZnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Francisco Bazzolo auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURZd2VyaEJnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago sandra gutierrez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURJeS02aHh3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Ada García \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN1MmJfSThnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago Andre Gustavo Cavalli auto 2026-01-31 18:46:41.561412+00 Ci9DQUlRQUNvZENodHljRjlvT2xCMFNVeGZVekUzWjNjMVNIbFRZVTUyYTJReWEwRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2026-01-30 09:51:52.019028+00 17 hours ago Fer Rodriguez auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUM3c0kyZmJnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2025-01-31 02:51:52.019028+00 a year ago Sabrina Mile auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUQteHVqTjF3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago T. O. auto 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUN1NWRHa2t3RRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2023-02-01 02:51:52.019028+00 3 years ago ML C auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNtbDh1WVV3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Rozemarijn van der Kaaij auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUM2aC1QT0N3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago Michael Díaz auto 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNLX2NqcFZREAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2022-02-01 02:51:52.019028+00 4 years ago khalid fettach \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURTcklUMzdnRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Michael Moore \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNTb00zZlB3EAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2021-02-01 02:51:52.019028+00 5 years ago Cristina Jimenez \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNzMnJ6QTBBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Jan Bieron \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSURNNjlMajhBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago Eugenia Belgrano (Eugebel) \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSURZdTkyTUpBEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2020-02-02 02:51:52.019028+00 6 years ago JCG \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUNnbktPR2hBRRAB Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago fabrizio chiapparin \N 2026-01-31 18:46:41.561412+00 ChZDSUhNMG9nS0VJQ0FnSUNBNXR2UldnEAE Pura Vida Hostel eda7c0dc-663b-489f-a684-2dfe8988e0c6 56bb22c1-8631-4285-b549-8fa7c9944462 5 2019-02-02 02:51:52.019028+00 7 years ago Leo Borges \N 2026-01-31 18:46:41.561412+00 ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Rita auto 2026-01-31 18:46:41.688601+00 Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-11-02 02:48:06.625702+00 3 months ago Carolina Bravo de Laguna Ruíz auto 2026-01-31 18:46:41.688601+00 Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-11-02 02:48:06.625702+00 3 months ago Arrate Alvarez auto 2026-01-31 18:46:41.688601+00 Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 3 2025-11-02 02:48:06.625702+00 3 months ago Iraya Sanc auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Estefanía San auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-06-05 02:48:06.625702+00 8 months ago Laura Exposito auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 Edited a year ago Consulta médica auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-03-07 02:48:06.625702+00 11 months ago Juega con Alexia auto 2026-01-31 18:46:41.688601+00 Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-11-02 02:48:06.625702+00 3 months ago Rubén Díaz auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Josue Olivares Delgado auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 Edited 3 years ago Miguel Jimenez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Paula Hernández Padrón auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Zuleica Ojeda Navarro auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Good Market auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Genelva Cózar Blanco auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Davinia Álvarez Sosa auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Maite H auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Cristina Hernandez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Ri auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNld2JES29nRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Alexandra Muñoz auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 2 2025-01-31 02:48:06.625702+00 a year ago La Ink auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Gabriel Hernández Cabrera auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Nacho Menéndez Rato auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Paloma Diaz auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-03-07 02:48:06.625702+00 11 months ago Cynthia Cárdenes Vega auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Ángela Falcón auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Ainhoa Romero Cabrera auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Estefania Galvan Moran auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Innairis Domínguez Rodríguez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago cofradia castillo romeral auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago yovanka Monagas auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUROMDUzN2xnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Mapi Marrero acosta auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Tahiwali Chong escudero auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago vicky op auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Manuel Ángel auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-06-05 02:48:06.625702+00 8 months ago Mia Quot auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Ariadna Ascanio auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Noemi Guerra auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago A M auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Maria otilia Saez Núñez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Esther Rodríguez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago O Rivemay auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Noelia Guerra Deniz auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2024-02-01 02:48:06.625702+00 2 years ago rocio diaz oliva auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-03-07 02:48:06.625702+00 11 months ago Gemma Baez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Carmen García Lopez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxa29xMmVBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Eliana Vega Déniz auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHdnYzQm53RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Pablo Alejandro Lorenzo Rivero auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnTURBaU9Ia3J3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-03-07 02:48:06.625702+00 11 months ago Fátima Bermúdez Suárez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMtekthU1hREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago DaniDoreste auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNsLWJXTDdBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Marta Guerra auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMtXzlIOUpnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago maikel sanabria de la guardia auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNyek5MWlJnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Gema Ramos auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURlMGR6ZzJBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Merci S auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUQyMHRDcUF3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Barby Bri auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMxNUlYZ2hBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Yaiza Quevedo auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNEeDRQTzdRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Minerva A auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUR1XzhUR1RREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Azahara SB auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Carla Rodriguez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxaE5pSVpREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Irene Tuscolano auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNsMS1lM2xnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago marianela zambrano auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNHckx2SlBBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Elisabet auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURoaTZtcmJ3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Belén Oviedo parrondo auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURtOU5qWEVnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Nauzet González auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMxLUpXYmtRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Javier López auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHLW91LW5BRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Rima Isa auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURIek1QRXVnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Sara Alemán amaya auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQ5Z3EzVy1BRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Lara Mata auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHOFpHcWdnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Nadia Vega auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxN042VEt3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Carlota Madrigal auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURXOGJpTm9nRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Nedriel miu auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNlbGNLMkxREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago María Guerra Suárez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxLUotSUNnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Eleazar Fernández auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQyNS1xTW9BRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Raquel Rodríguez García auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNMdnRmdmVREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Yurena Hernández Suarez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNweDkzdGJBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Jenny Díaz Hdez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUM5LUxpWGJREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Daniela Uzcategui auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMxaE5xemdBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Paula Viqueira auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURkdk0zQnl3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Lurdes Guillen auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VMbmtwWkRaeW96dzZRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-06-05 02:48:06.625702+00 8 months ago Melanie Castellanos auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURwODdXSmFBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago vicky melian flores auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMyeEl6a2NBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Rafael Arcas auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMxLUwzVFdnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago M S auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURtdHNtTmdnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Daira Rodríguez rodriguez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNld2FpVE5BEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Jose Suarez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMteDdUWHlBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Leandro Juan Rodriguez Perera auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Namibia Hernández Alegre auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHLXNlRzN3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago valeria rivas auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURXaVlQSGx3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Patriotic 69 auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURPOGEzOHNBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Daniela Uzcátegui Pineda auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNHbkppb1FnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Goretti PB auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURwcS1MNjBnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Nereida Alejandro Ramírez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNlOTZyelFBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Jonay Santiago del Valle auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNaX051TFh3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Dulce Salas auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHdElQQTFBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Mercedes Arias auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURld2NyQWh3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago J B auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNaX0l2NHhRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Sara Navarro Pulido auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURWOWVIUjl3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Victoria Be Ibarra Prieto auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMxLUpmdDZ3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Najwa Gonzalez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNScGRhazZnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Milagros Mellado Fonseca auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURkaGUyQVJREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Sonia D auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURaemZUZm93RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 Edited a year ago Gabriel Lopez Martín auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURSLXZYYXVRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Alvaro GO auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMtaS1uT0d3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Begoña De La Guardia auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMyby1teU1BEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Sandra Queder auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMtdE5mTjFBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Juani Rodríguez Espin0 auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VObm8xdi1Xazh1VzdBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-06-05 02:48:06.625702+00 8 months ago Samuel David Ortega Pichardo auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQtanZXQ3pnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Lidia Olivares Rodríguez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURXc2R1eHlRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Jessica Ramírez Ramírez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURla3Y3ZGxBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago inma melian auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNHMnEtUUdnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Anghara García Dávila auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUMxeXAtRm5RRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Melania Saavedra auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUQ5bXJlcWtBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago yaiza reyes auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNHdEpfbmlBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Víctor PC auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNqLTdXNkxREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-01-31 02:48:06.625702+00 a year ago Alazne ___ auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNaX00yLVFnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2024-02-01 02:48:06.625702+00 2 years ago Acoidan Sarmiento auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURlMHVXOGdnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Nereida Delgado auto 2026-01-31 18:46:41.688601+00 Ci9DQUlRQUNvZENodHljRjlvT2tKbWNXazBWVVpLYzBGb2RUbE5abTlhWDJKRFNYYxAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2025-11-02 02:48:06.625702+00 3 months ago Laura Toledo auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNaX0llZXJBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago A M.R auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUQybDRydmZREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Omayra Déniz Guedes auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNld2FITnFBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Consuelo I Rodriguez auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUQtbnE2dVRREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Sara Alvarado auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURoc0xHYjZ3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Yesica Del Carmen Tadeo Florentino auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURkM3RmclZnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2025-01-31 02:48:06.625702+00 Edited a year ago Eva S auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUQtanRYd0FnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Clara Aviles auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUMtOC0tcEhnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2024-02-01 02:48:06.625702+00 Edited 2 years ago ESMERALDA MARTIN GARCIA auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNaZ29iOHR3RRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Marixili Cayola S. auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURXMGN2MHRnRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2023-02-01 02:48:06.625702+00 3 years ago Pilar Alvarez auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURaN2ZTVjVRRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Yaiza G auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURaemN2RVJBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Dunia Rodriguez Santiago auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURaall1M0FREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Noelia Gil S. auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURaOWJiLVVBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago Omar Gil Santiago auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURaOWRpaW1nRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2024-02-01 02:48:06.625702+00 2 years ago C.A.S. auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURwNWN2VElREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2024-02-01 02:48:06.625702+00 2 years ago Barbara Romero auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNSXzdMbzVBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2024-02-01 02:48:06.625702+00 2 years ago sabrina sosa auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURla3ByblFBEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2023-02-01 02:48:06.625702+00 3 years ago Katherine Villanueva Valencia auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSUNPazRxQTZBRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Ruyman Pulido auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNXbHJLcFF3EAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2023-02-01 02:48:06.625702+00 3 years ago Ruben Diaz auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSURtOU1ibUpnEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Cynthia Mayor auto 2026-01-31 18:46:41.688601+00 ChdDSUhNMG9nS0VJQ0FnSURtLU1DdW9RRRAB Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 1 2022-02-01 02:48:06.625702+00 4 years ago Daniela Mederos auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNHcE5tMkpREAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Kevin Monzón auto 2026-01-31 18:46:41.688601+00 ChZDSUhNMG9nS0VJQ0FnSUNHeEpTaU9nEAE Clínica Calme - Medicina estética, estética avanzada y quiromasaje 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 22c559a8-fabc-4916-9961-bcbd61225266 5 2022-02-01 02:48:06.625702+00 4 years ago Irene Cruz García \N 2026-01-31 18:46:41.688601+00 Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago E K en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Jan Hodgson en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Ross M84 en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Thomas G en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Per-Erik Broz en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Debgc en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Kelly Short en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Elena Cabezas en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Juan Acurero en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Jack Burt en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago David “Chucklebrothers” Eardley en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Gary Cliffe en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Marta Pascua es 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Jose Luis Alvarez es 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Aru es 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Juan Antonio es 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago israel cervantes es 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Mery Lopez es 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Manuel Zapata es 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Paul Miller en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-09-02 01:52:39.833374+00 5 months ago Mattias Verlinden en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago 9884booth en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-06-04 01:52:39.833374+00 8 months ago Brian Cottrell en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Michael Farrell en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Kalid A en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Richard Warren en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Lucy Wilkinson en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago John Smith en 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Arthúr Ó en 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Jamie Walker \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-12-01 01:52:39.833374+00 2 months ago Linus Ring \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Sam Barman \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Marcin Cichoń \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Andrea Torri \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Nigel Cox \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago claire Gray \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago emma webborn \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago Dave Lowe \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-31 01:52:39.833374+00 a month ago Rod \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago June P-bell \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Kenneth Madsø \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Rob T \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Martin S. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Rebecca Tarrant \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Michelle White \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Drew Wilson \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Olusegun Ilesanmi \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-31 01:52:39.833374+00 a month ago Kenneth Jenkins \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Michael Reid \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago sven van raemdonck \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago John Saunders \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago David Hopkins \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Kiran Merrick \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago austen blakemore \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-11-01 01:52:39.833374+00 3 months ago Peter Dingenen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Angela Stout \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Henry Murray \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Jonathan “Bech” Mayer \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Thomas HIll \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago A French \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Dima Shirokov \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2025-01-30 01:52:39.833374+00 Edited a year ago Stein Ove Helset \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago carol allan \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago Victoria tanner \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago dave skilton \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago steven helsen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Fredrik Blomström \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Karl Young \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2024-01-31 01:52:39.833374+00 Edited 2 years ago Jo Nas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Ian Maynard \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Alan Walker \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Honest Jock \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Lidia Reshnivetska \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Rob Wagner \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Samuel Lambert \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Tony Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Silver Surfer \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Diana Baryseva \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Christine Ashby \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNRbWVPS3N3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-04-05 01:52:39.833374+00 10 months ago Kaitlin Hunter \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Arne Willemyns \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Nigel Hudson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Laith Hofayz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Rikard Eklund \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Shamus Carroll \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Steve Davies \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago John Maxwell \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1aDRhNXVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Gill Brindley \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1dk9hMUl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Amy \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago S Constance \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURBMXBTZHhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Renata Kehoe \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago nigel cox \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Tomas Thumb \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Gary Pattinson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Steven Moulaert \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Cathy Boshell \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Vincent McColgan \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago les fitzsimons \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Drew Morrow \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Dom Dwyer \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURELXNPVG1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Miriam Dore \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Steve Hall \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Matthew Cook \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNHdDQ3Q1ZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Юрий Сорокин \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago vicki wardle \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURaMXBxZTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Dan Norton \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT201UU1YcDVTVzFOTVRocFJrVnpWbkUyYTFoMU5XYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Larry Dalton \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURHNDlXN2tBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago thomas lazenby \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Cathy Diver \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNneUplNFp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Lukas Wojciak \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRbHYtRzVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Ian Crawford \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZa1p2MmxnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago David Swift \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMwdl8zVHFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago vincent tonner \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwenZ2QWp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Trefor Woodcock \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwaHV5aVFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Trefor Woodcock \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2poMFFXUjBRM04wYWtwRUxXTjRNVmR6TWtrd1QxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Dawn Dixon \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago jmsgdt \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMwcU5lbmZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Bohumil Mara \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Ciaran Rouse \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNvOVp1MTJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Chris B \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4OC1XLWxnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Neil Postlethwaite \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURrbi1TTkVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago stgnats \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNHbXBhQ2V3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Eoin Tyrrell \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnN003a05BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Chris Leater \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2023-01-31 01:52:39.833374+00 3 years ago Thor “Torre” \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Pauline Memoli \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPOUlEVkxnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago David Cabanes \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURvb0l5RUZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Hanne Diels \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Paddy Bellew \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBN1lpel9BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Karen Snowe McCaul \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMwcTZpWjV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago brian cox \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUREMnZmNjVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Ollie Fox \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM3djh6YzRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Paul Shanley \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ5bXNhVEVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Karol Gucwa \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Theresa Poole \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3eWItcUhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago David Kettley \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURqX1lDbnRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Daniel Pease \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPMExiaVhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Meow Supanunt \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1eTlIb0pnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Patrick Bigaj \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXMzlpTUdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Monica Cunningham \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNnd192X3BRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Debbie Law \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1elBxWnhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Amy \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRM2Z2amRnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Chris McNamara \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2t0UmIySnZlR05FUldrME9UTkdjM2xUTjAxU09WRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago Darren Soley \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURiNWVIeWdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Thomas Burke \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRaS1XM0FREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago peng 917 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1eWJ2aGh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago khal ali \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwd0pidkVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Matteo Kcah \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRaDRlY21BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago karl kindred \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM1b2U3RXpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago FFA Loughborough \N 2026-01-31 18:46:45.062634+00 ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago peter hill \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwNktTZkFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Andrew Mcclelland \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNWak8zaUVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Darren Waddup \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURoaVo2d0t3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Casper Davidsson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURuLWFYV3lBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Steven Lewis \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNaXJUSjhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sebby Carey \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNudnFEOVpBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Alan Gemmell \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNHanU3Tm1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago nicola howard \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Donal Hegarty \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1eU1lQkxBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Carolyn Cartwright \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPMXNiUEd3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Tommy M \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VNeXd1c1NtbV91bEF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-06-04 01:52:39.833374+00 8 months ago La Salu \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVbHE2MlZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Nigel Drummond \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNJemRDMmZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Keith Shrs \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRa2FqZEdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Shaun Massey \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBcU9IUDN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Carrie Hill \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25Vd1VpMDNZVGxKUlMxclQyVldXVVExVkhaUVpsRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago Julia Griffin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVdU9iUmtRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Anya Beetham \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURidXJtcjlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Patricia Sutton \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURncHJyTEdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Dave van Zundert \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNKb1kyaWRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Lisa Mooney \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNValptNmp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago John MacDonald \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRLXZqUnhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago David Small \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNSaTY2Vk9REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago cb2011 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1bGZIYktREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Mark Sowerby \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwcl9fX0J3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Incognito \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2024-01-31 01:52:39.833374+00 2 years ago R D \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBaWJHUG53RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Kelly Ayres \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnc3NUVjZBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Hoover Damm \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnaWFTcFhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Matthew Rason \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNZc011d2RBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jose Albalad \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxNXNubWlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Fadi Mohsen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtb3JYLTZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Chris Clarkson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Jenny King \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVbGZPRFRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Barry Dunmore \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVZzg3U19RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Tony Lännbrink \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBMy1UdW1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2017-02-01 01:52:39.833374+00 9 years ago Steven Franchi (Big Boy) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4X19EbnpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Christine Mcclafferty \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM3bktDRVV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Sam Wheeler \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURReW9LbXFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 Edited 9 months ago ExzaktSounds (ExzaktSounds) \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNbU5PeGZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Mary Quiroz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1bUoyMXpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Tasha Taylor \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVMHJ6cElBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago James Fraser \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNEdFlyVURnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago William Whitelock \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNjc3ZhVEN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Emma Cowie \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQwa3ZmY1NREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sean Kirk \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Kenny Ranson (South Shields Mag) \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVc2NDVkhREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Colin Fitzpatrick \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNudWFtSEZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Sam Downes \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnMEtfajR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Susan Lamb \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNdDR6LUdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Christian Fleming \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRNzlhZnNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Steven Hall \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1b3ZhSFZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Donna Marie O'Neill \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwN0tpNWJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Margaret Thompson \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURONnQ3OUdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jonas Bleakley \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURMeThibU9nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Kristo Ruuto \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZdVpPbTFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Emma Green \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNZNC1QeU1BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jan Ivan Engstrøm \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNKNUtMZXdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago oisin smyth \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM5LVBDTmp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Alejandro Baño marin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVOS1LZTBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Ritchie Antony John Antony \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZM2FmSTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Stefan Vandevorst \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR5bG9TNVRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Paul Hunter \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVcU42X0VBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Len Waite \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2MjcyajdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Kerry Pettitt \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURndElHU0NREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Victoria Solarz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMtOE5TYzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Helen Thomas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBcE9pWGpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago HYWEL Roberts \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNMGRENkh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Lowe Rönnlund \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURzLVBpaFJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago XXX XXX \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRNktIaEZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Paddock Motors \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQwcmJPZ1RREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sjef \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnck1MS0FnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Spencer Brooks \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVMzZiNGNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Cr0wm4n \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNlNzlYdm13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago obozhdi \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM3N0pMcGhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Marina Martinez Moya \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnc3JhellnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Steve Jones \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURtOFp2aXBnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Francisco Javier Martos Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURKOE1EVUJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Adrian \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1OXR5b0d3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago LUKE DAVIS \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURzNkxuUDdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Shane Brown \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRd3NHek5nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Martin Lakey \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVOXJyMjV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Brian H \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZbDZUUmdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Daren Moyse \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNQMklIUUR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Jerry Ryan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURCOXQtVUZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Marcos González Rubio \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNCaWNqZ0RREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago noikki 991 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVcnFla013EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Shane Rowbottom \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURONklMN2F3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Robert McFagan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR6cXEtV1B3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago David Kane \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUNZdFA3OUp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-06-04 01:52:39.833374+00 8 months ago Edyta Teeuwen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNLMElTay1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Mark .MacRae \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNlLVllR01REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago V V \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVME5tc1dBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Karola McCartan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR3dk9DN0dnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 Edited 6 years ago Colin Odoherty \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNzOGF5cEZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago john gallop \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURyblozTGF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Daniel Bergenhus \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQyMDczQnNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Colin Male \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVbzV2NjRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Peter Clark \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1ZzZhVVdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Phil Bevan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNvNzhlUkt3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jose GR \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURia3FmLWJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Mikael Karlstein \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRdy1ucWlnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Kenneth Macindoe \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnbHBtVDdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago David Schult \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVbmF5Q2J3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Kim Fishpool \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBNzQ2bjJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Lynn Eardley \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRaEx1a3NBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Mark Magee \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNndTVIdUdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Mike Hooper \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURvei0ycU5BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sinead Mcloughlin \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVaG8tcU5REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Tony Dalton \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURJbGFidmlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago David David \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURodkxtUHdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Stephen Watterson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQyMU1uZXJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Melanie Lucas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnXzVIclJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Neil Duncan \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURyMEtQajVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago tony paxton \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURaaXVqYVNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago paulius patackas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMwN05hNE9REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Chris Lewis \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4djlHcWxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago hib1000 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhNktyMzlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Niklas Hamrin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1dmZEZnNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Francisco Javier Alcaina Ortiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNPbXRXUzF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Nuria \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNaenViY0F3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Paul Thomas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVZzl5YURBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago gill cross \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBMmRfTWhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Cathie Williams \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1d3ZYQXF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago joe burnam \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVNEozeEdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago James K. \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRd29IY2l3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Lars Christian Oppegaard \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPNjlUZjNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Alex Soetekouw \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ0Z1BteU93EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sara Cross \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVMVBDZUJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Momax Momo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURROFlHcFZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Steve Sumner \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMwMktMd1N3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago mark Dee \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURReHZUX0pBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2016-02-02 01:52:39.833374+00 10 years ago Tomas Johansson \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Javier Coy \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Irene \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago Luis Bernabe \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Juan Molina Soler \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Cristina Navarro Carrilero \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago José Manuel Pereira doblado \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2026-01-23 01:52:39.833374+00 a week ago Krzysztof Komornicki \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago aaron hernandez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Virginia Calderon \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Ольга Авдей \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago ivan acebedo \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Colin Gohorry \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Anna Parens García \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ5czdMMjNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Verónica Lirón \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago guy 17 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago april cox \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Celina D. \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2026-01-09 01:52:39.833374+00 3 weeks ago Peter Arandt \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago R. Rodríguez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Dries Kinet \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago alberto nieto duran \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago García \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Vanessa Justo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Angela Vigil Toledo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Raimond Ruiz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Lucía Sánchez Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Carles Font \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Christian Zuerrer \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Hugo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Marcus Neitsch \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Moi Manrique \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-09-02 01:52:39.833374+00 5 months ago David Esteve \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-07-04 01:52:39.833374+00 7 months ago Mat_teo \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2poYWRtVTRkbnB1WHpCdFJGQk1Tak5SVDBKM1pIYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Mélissa Estercq \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Sargento Highway \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Jesús Olmos Soler \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago Denzel Andrés \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Enrique Martinez Bel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Álvaro París \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Anaïs Teyssier \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago Daniel “Seb” Seb \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Francisco Javier Urraco Moreno \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jorge Mora \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Fadil&Carina Kujaj \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Angel Lillo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Holtser \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Eli Pardo \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-10-02 01:52:39.833374+00 4 months ago Pedro Saura \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Maarten van der Ploeg \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago asadoalhorno \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-10-02 01:52:39.833374+00 4 months ago pelu comur \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Rodrigo Morcuende Soto \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 Edited 3 years ago GAM3R BAY \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xsa1ltNXNVVXhETm5FMlVVMXhObkYwUmtkU2RHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago Svitlana Ostroushchenko \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Germina Ruginė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Carlota Elosegui \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2022-01-31 01:52:39.833374+00 4 years ago Iñigo Fernandez bolea \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtbjd1UXpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Etienne Claessens \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xSNmRYbG9MWFZLVGw4ME9GSjFXRkl6UWpoSU4zYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-08-03 01:52:39.833374+00 6 months ago Mariela Delgado \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Abraham S.S. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Tim Pisane \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Lucia Rodríguez Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Jose Luis Lopez Baños \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Andreas Hellesøy \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Raúl Mulero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Cartagenero \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Xavi Lopez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Susana Fidalgo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNBdGZDRTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Javier Aguilar Pérez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Sanny Busse \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Marianna Hop \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Miguel Garcia Gallego \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Albertikoko \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Adrian Lucian Caleap \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tKU2IyZ3RTR3d3WldwTGJXbDZWM1ZtVVhJNWJHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Mr Galio \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Mónica Mao \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago CAAIS CASTILLO \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago ICP \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25FemVHNXBhbWxxYWw4NU5YaDVOVkUxVnkxa04zYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Javier Rivas Curto \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago versys detailer \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-08-03 01:52:39.833374+00 6 months ago Miguel Ruiz Viedma \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Alberto Torrecillas (Al-T) \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Bernardo Pérez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Seve Conesa \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Jaime M. Gomez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-06-04 01:52:39.833374+00 8 months ago José antonio Mateo olmos \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Cristina Vázquez Borrajo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Diego Cruz \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-10-02 01:52:39.833374+00 4 months ago Santi Jiménez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Joseu \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-03-06 01:52:39.833374+00 11 months ago estela garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUREMzVpWHRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Lucien de Winter \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Mireia Acosta \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-04-05 01:52:39.833374+00 10 months ago Nicky Lorent \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21GU1QwSmhNbkZ6TkRVM1lVa3lTbGRWYlhOcFRtYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago florent thonnon \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Ruben Colomer \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURld3VhTTdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Tania Tamargo \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2toVU5WbzBWRVJZTVd4R1ltUlBWVlpLZHpKd1VuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago Carmen Munteanu \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago jose luis p.f \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago jose castellanos \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1bXNTdWN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Mikael Degeer \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jose Maria Vv \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Laura Murillo Santano \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Alfonso Moreno Alba \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-08-03 01:52:39.833374+00 6 months ago MIGUEL RUIZ \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-10-02 01:52:39.833374+00 4 months ago WEH \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-04-05 01:52:39.833374+00 10 months ago Paul Baxter \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUREMW8tM09nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Eva fernandez Jiménez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Andrea \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago Daniel Lareo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-04-05 01:52:39.833374+00 10 months ago Fabricio Napolitano \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-01-30 01:52:39.833374+00 a year ago Eduardo C López \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Maren Oosterhof \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNIOUptUWdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Jose M Aguilera Palomino \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Alejandro Amador Martínez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25GTGQyUjFWWHBSTVVWc1VEUnBjbUZuUkhwWlFXYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-09-02 01:52:39.833374+00 5 months ago Enrique B . G \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM1OFoyVzNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Sara Martinez Gandia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-01-30 01:52:39.833374+00 a year ago Luisa Rodríguez Tomás \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNWMS1pdE13EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Teo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Noel Boix \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tGa09XMTNOM2gzTjFwa1NqbG9VR3RMY1ZBd1VHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Bombom Bombom \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Luis Miguel Hueva Espinilla \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-03-06 01:52:39.833374+00 11 months ago Celena N. Gutierrez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2025-01-30 01:52:39.833374+00 a year ago Juan José Cánovas Jiménez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Jandro Castillos \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-09-02 01:52:39.833374+00 Edited 5 months ago jose martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNXZ3RXem93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Carmen Padilla \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Ángel Miralles \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago José Da Silva \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago ALEX B . R \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Roman Jesus Gonzalez Fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago manuel campillo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Fran Avatel \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-10-02 01:52:39.833374+00 4 months ago Domingo García \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Javier Tinoco Olmos \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago JOSE ANTONIO HERNANDEZ GARCIA \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Coco \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Oswaldo rene Sierra martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jessica Amante Peluqueros \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago Dagrunn Øvregård \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Alicia Rodriguez Iglesias \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Javier Fenoll Aledo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago JOSE \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Henry Borau \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Ainhoa \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Javi Rios \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Jose Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2019-02-01 01:52:39.833374+00 7 years ago Rachel \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Marcin Gorayski \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xaSFJqbHpZM28zTVcxSlFYWnlhMll6Y25sUFFVRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago W. KREBIL \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago marcos p.f \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Salva Paredes \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Felipe Rives Grau \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Alexander Waigandt \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Do Naoual \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-06-04 01:52:39.833374+00 8 months ago Alejandro Sanchez Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Brenda De Bie \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago FIORE MARTINEZ \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pGdlozUm9ialEzUkZVNVpYVTRMUzFOZEY4M1VVRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 5 months ago Belén Mondéjar \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Vanesa Fernández \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sandra Ballet \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Arne Cederblad \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Inigo Angel \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Paco Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Jose Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Magalie Lietaert \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago KAROLYNA ANDREA \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-01-30 01:52:39.833374+00 a year ago F.A \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago JJ “MagicaFe” Contreras \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jose M Vides Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Laura Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Javier Porras Navarro \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21obmVFd3hkV1k0VFU5bVEwTm5SMGhETUVaWVRuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Icechurry \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Álvaro García \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Tim Bruyninckx \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago GONZALO BORREGUERO \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2025-01-30 01:52:39.833374+00 a year ago JP KinG \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago José Antonio Martínez Fernández \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-04-05 01:52:39.833374+00 10 months ago Miriam Gil Lopez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jose Sánchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Maria Martinez Lucas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Revo García \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Alejandro \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Carlos Braojos \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2pneGRGSnpibk5xUXpSWFNGSk9lVEpDWkhneWMwRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Christophe Ducros \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Manuel Alcaraz Ros \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2021-01-31 01:52:39.833374+00 5 years ago Jose Vázquez Parente \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2020-02-01 01:52:39.833374+00 6 years ago Luis Felipe Alburquerque Briganti \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago LUIS \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2024-01-31 01:52:39.833374+00 2 years ago Francisco Ginés González \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Jose Gómez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Amf 82 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Rafael Valencia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Sergio Montoya \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Ami Lari \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago jaymon security \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Estherlaura Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURTcGNqZll3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Jo Neu \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Carlos Perez Sierra \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Adrián García \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago andespand espandcad \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2024-01-31 01:52:39.833374+00 2 years ago Geoff Oosterbaan \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago jose ruiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 Edited 3 years ago Nayara \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jesus Miguel Lopez Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Hubert Podgórski \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Dislol \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Juan M. Ros \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-06-04 01:52:39.833374+00 8 months ago M G G \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jorge MM \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Lonaxon \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Javier Fernández Villalón \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Jorge Vazquez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Pedro Jose \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2020-02-01 01:52:39.833374+00 6 years ago Rafael Aragon Campillo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Alfonso Hernández \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Sirakusa Von Z \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Noelia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Rodrigo Lizano \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Miguel Carlos Cuadrado \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago David Perez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago SamuMan Manrique Salamanca \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Carlos Camacho \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURybnJQbnR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Dennis Fiedler \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Alpana Zurdo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Ayrton Dupont \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Fernando Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Harry Brestel \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 Edited 5 years ago Issam halal \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Manuel Guerrero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago David Herreros Lopez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2t0Mk4xQmFWWEZTTldrNVRrbDFlbmR0VldvNVltYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago Isabel Sánchez Ruiz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago SILVIA GARCIA \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Andres M M \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago antonio rodriguez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Claudia Bustamante Ros \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Scherezade Gosalvez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Felipe byLogic \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago elcristian12xd \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTMWY3TWxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Alex Curious Life \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2024-01-31 01:52:39.833374+00 Edited 2 years ago Sophia Sophia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwcnZ6TnFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Angelillo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Dirk Remmert \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ1aXZuVGRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Heliodoro Cuesta (Helio TVsetup) \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago J. U. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Julian Martín \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Sand \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago JUAN CARLOS \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Dani Triviño \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago José Luis Mateo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Hubert Reith \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Cesar Moreno \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 Edited 3 years ago Dimetu \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21wVlZYTTBabXBhYzBkbmRTMTJSMXBZTldWcGJWRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago Kim Koivuranta \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago alex _tremiste_ \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ3bkxfMlp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-01-30 01:52:39.833374+00 a year ago Rémi Tessier \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Jennifer Olmos Fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBNGVmN0tnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-03-06 01:52:39.833374+00 11 months ago Miguel Ángel \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Maria Alcantara \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago AloMurSan \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhd09uTGpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Maximo Iñiguez Sevilla \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xCalNUbDNSWEYyU2kxblptbFhRVlF3WjJWdFFuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago Rune Heggland \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2017-02-01 01:52:39.833374+00 9 years ago José Javier \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURob0xHYXJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Manuel Ortiz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Miguel Ángel Gómez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Dominik Novotný \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Martín Gutiérrez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Eric Deliers \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Herminio Hernandez Navalón \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Tomás García Muñoz (Tommy_147) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 Edited 11 months ago Josema Pinar Laredo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Manu Bermejo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago José Miguel Juan Vicente \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xOeWNqQnJSMU4yUmpWTk9EWmpia1J6WmpocU9YYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2026-01-09 01:52:39.833374+00 3 weeks ago Thomas Gillisson \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 Edited 7 years ago David fernandez. POLLI \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Emilio Gil López \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNMaDk2bEtREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Eduardo Francisco Garrido Zorrilla (El Edu) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Francisco Manuel Castejón (FranCastejón) \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Asier Delicado \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Gineso7 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Carlos García Martínez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago paloma neira \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago leflao brigitte \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Carlos Ferrús Ferri \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Alejandra.calle@gmail.com Markelasier2 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Adrián Valverde \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Carlos Martin \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Isabel González \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-01-30 01:52:39.833374+00 a year ago Ade suarez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Karima 14 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwcDZPMDNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Rafa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2022-01-31 01:52:39.833374+00 4 years ago Fernando Cantero martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago ignacio ruano mateo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Antonio Francisco Benitez Rubio \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Diego Cuesta \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURXdjl2VHVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Natalia Martinez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21KclZuVmFXRzFuVW1obWFXczNObGhaTW5SRFpYYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Fayrouz Grine \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRNWVMMHFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Bernard Preneel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNYMy1XcnJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Cristian Murcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRMGN5MWVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago hugo hernández sánchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Brisa Celeste \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Oscar Pujante \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Edurne Pascua \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2cU92dFZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago J. Alba \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25GR00wNHRVbTV4WjA5bE5GTkRkSEZyTW1FNWRGRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2026-01-23 01:52:39.833374+00 a week ago Anfran89 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM3dHBlYlRnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Romain Tenye \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN4cXFQN0tBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Nacho Tomás \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Rodro Diaz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Enrique García Fernández \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Joaquin Ingles \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago ManuFlosoYT \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNMFBfRk93EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Carlos Fernández Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNnOUpyWjR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago raul escudero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2022-01-31 01:52:39.833374+00 4 years ago Martina Muñoz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURkXy15UHRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago J P \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ4ODRxNnBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago A. M. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Sergio Lzn (sergio351) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURXOU9ub2tnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Victor Lanuza \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3N2RlZFRnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Jose Manuel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Victor Plaza \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Claes Fast \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2020-02-01 01:52:39.833374+00 6 years ago JOSE LUIS CARRASCO BARRAGAN \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRMXJXSVh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago José Peñalver \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwck0yQzlnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago RICARDO SAGUAR PEINADO \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Kristina Luneva \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Luis Valentin López Llamas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Almudena Perez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMzaE1PbjdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Pedro Muñoz \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xCNGRXUXllSGxLT1hWeVFsRk1Tams1UkUxeGRHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago Marien Martinez Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDMzlXQjJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Nobody \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Antonio Sanz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2enVIT3ZnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Rodrigo de la iglesia diez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhek03cUxnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Linda Bounaj \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT205WWVVdzFYM0J3YkcxSFNHNWpOMmszY21wSlZHYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2025-07-04 01:52:39.833374+00 7 months ago Allan van Weelie \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Alexis R.V \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtNWVuQ3Z3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jesus ignacio Egidos garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Elias Rodriguez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2016-02-02 01:52:39.833374+00 10 years ago Radu Antonio Trif \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ4LV9xYVR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Miriam \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2024-01-31 01:52:39.833374+00 2 years ago M. Ángeles S. Olmos \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhaHVEbWJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Manuel \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Pau Bustamante \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1anVUWFhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago J. GarMat \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNPa3I2MXN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Dobrin Dimitrov \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago gutierrez_ Racing_ \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNMcHJQMFZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Rodrigo Atienza Pérez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Cricri Divas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Aldimir \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21Wa1ZsRTVPSE5MYzNKaWRXZ3llRFZHZEdoYU4wRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Jolanta Wojtaszek \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Hajar H \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR0aXJuTXp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2025-01-30 01:52:39.833374+00 a year ago Humano \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Eduardo Barreiro \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Alex Mckee \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Francisco Perez ruiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURKMk9pcDVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Tommy Hansson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Antonio Madrid hernandez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago David \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURkdU9mZFh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Rafa Conde \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ3b3FudHl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago EL COCHE ESCUELA \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ5LXVUX0l3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago danielius tamasauskas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Angelika Heinemann \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Carlos Carrasco \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Ramon Saura \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURvcVBETHFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Kurt Gustafsson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Antonio Corral \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Manuel Choco \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURQaUlQT3NRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Xoox Zick \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago hanane massoudi \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago biafitication \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxMk9IUmhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Alba Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2017-02-01 01:52:39.833374+00 9 years ago Enrique Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Carlos Leiva \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURfanN2MGhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Joaquin Martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDeWRiMzdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Pilar Sainz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNveF9DS3hRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 Edited 5 years ago Francesca Sarabia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Joaquin Poveda \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2dC1XZzJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago sven jahnke \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRNGZPbFN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2017-02-01 01:52:39.833374+00 9 years ago Taser Face \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhNXNDNTNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Miguel Angel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jero García \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4bXVlQWtRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Jose Chicoy Madrona \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNHOGNEdEJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Adri Pelayo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnZQUTlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Abel G.Zaragoza \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURMN3A3MGNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Enrique Fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnZ2QzV0l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Juan vicente Panadero Pérez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1d2NMQWFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago rosa maria MM \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2cFpieUdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Armando Miguel Valle Miranda \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnJPVm9RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago César Pastor Oliver \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNvdXBPMXZBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Sergi Planas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURYMy15RTZBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Martin Luithardt \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVd3JXVHpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jona Pollkläsener \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNneHZ1VFRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Antonio Nicolás Carrasco (Nico) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURvM0tEOTJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Mustafa Guendesli (Mustafa Gündesli) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURJM05YVjd3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Iván de Diego \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURSMzVUNHNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Ove Lilleengen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Juan Pablo Ibañez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Agustin Parra Navarro \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2LUw3OW5BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago JuanJhon Gonzalez Lopez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhd09TdFVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Tina Mels \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2OExlakxnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago SOLE DOMINGUEZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago no name \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnbk5ma093EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago David Alejandro Fernandez Celi (xXSharkTeamXx) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURac2RURXF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Ignacio Soler Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Thomas Even \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-01-30 01:52:39.833374+00 a year ago Nacho \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURvbk1PQU1REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Raymond Kristiansen \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnbzlqcVBREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Yves Delvaulx \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURoby1IV3Z3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Andre \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNCeTRxSXRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago MIGUEL ANGEL MGLIMPIEZAS \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNId1A3SGxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Gava Paula Cristina \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNyNkpqRlRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Marlon Ortiz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Antonio Hernández López \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcFoza1V3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Alberto Fdez. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Iván Díaz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVdXFfUVB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Juan José Fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURheE9DMlNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Carol Gonzalez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ4aTZfWHpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Rocio PH \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnd0lIeHB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 Edited 9 months ago San Adrian Valle \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPM3NfZjhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago ruben acosta \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxb3ZUYXpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago massi-nissa benzerrouk \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2019-02-01 01:52:39.833374+00 7 years ago Enrique Ruiz Gimeno \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnNXB1OW1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2017-02-01 01:52:39.833374+00 9 years ago Antonio Vicente Sánchez Mercader \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNEMEpua05BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago pierre david \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDc192NHdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Dolores García León \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURrcTUtZjZRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Fernando Martínez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNNdm9QaGZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Celedonio Garro sanchez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQtNDRYNUJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago irenita lover \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURndklhUURnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Bohor \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURKLWMyYVJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago alfredo barrero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2NDZETkxREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago ricardo gomez montero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 Edited 4 years ago Joaquín Rodríguez Díaz \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tobWF6WnVSbFJzYjJsWk1tRTROM0JEWDJWTGVrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Roberto H M \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQtamZYTGF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Maria Angeles Martínez Castejón \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Bianca Miranda \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2cmJxS0dnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Anahi Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNKekstU0hBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago silvia perez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwOG9TRV93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Ali Guerr \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhcmJxZG13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Pedro M \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRNjRLc0l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Oscar \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25CclQwNVlUMkZYYkZGVlZrbGFNVkZvU1ZBelJuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2026-01-23 01:52:39.833374+00 a week ago Tjeerd Huiberts \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwZzV1aDRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago José Antonio Castellano Ordúñez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPNk1lZnpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Evaristo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRektYYWJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2017-02-01 01:52:39.833374+00 9 years ago Gonzalo Aboal Sanjurjo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Jorge Mora Lorca \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNheThDUTlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Dani Barceló \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Adrian Romero \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1MmNYNS1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Maria Grueiro \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3NHA2S0NnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Pedro \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM5bE9UeGFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Яна Брушневская \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 Edited 5 years ago Adri Alelú \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jesús Saura \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwMG9XLW1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2024-01-31 01:52:39.833374+00 2 years ago Maria Salazar \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Игорь Тарасов \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Lili T \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Eva Romo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Marcolo 22 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Antonio Angel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Eli Girona \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDbXBtVzB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 Edited 5 years ago Daniel Serrano \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Andres Trajines \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhbnFLWVlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Arturo Lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM5OC1pY3JRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Miguel Costa Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Luis \N 2026-01-31 18:46:45.062634+00 ChRDSUhNMG9nS0VJQ0FnSUNRcTRNORAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Fredrik Wendt \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURSNmVUSUp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Leonard Visser \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR5a3YyOTJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Saul Algaba \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2019-02-01 01:52:39.833374+00 7 years ago The Noob PvP \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3bF9MZUl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago jorge fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Antonio Rodriguez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDcU9YU3FnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Víctor B. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Anita Flow \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago carole battaglini \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Christian Ruiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR5eGM2UnBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Flaka Garelli \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRNVl2N2hRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Alejandro Willy \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ2bllQTkRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago luis carlos Alzate \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago TopFreak \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPMGRtelpBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Emerito Alvarez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLam9YVUd3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jonatan Rodas lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1LTRYS3dnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Ami Lari \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3a2JpMHB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Alejandro Trinidad García de las Bayonas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBMklXUFVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago alex guillo \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2xvM2NEZEJiRjlsYTBNemMyZ3lSVTVvU2swNU4xRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-10-02 01:52:39.833374+00 4 months ago sonia parijs \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURHX2RMMVdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Omar Calzon \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Jose C BRT \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNleklDZjF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago emiel steenbeke \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhNUttdnFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Marie Josephe Oliver \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQtMHZtd2FREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago alex martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLcGY2eV93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago FJ Publicidad \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURlbklYVXl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Izarin humano \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25VeVdEUmpPRE5JVkRkVk1HOW9SM3BSUXpsblVtYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Pedro L. C.C \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURnZ3ZXUGtRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Kyle Ross \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURScmN1WUhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago G. E. R ER \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNczZEclJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jesus Marco \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTa3VHNmhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2021-01-31 01:52:39.833374+00 5 years ago Fer Lopez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURiOE95cFBnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Vladyslav Siedik (Smeni_naski) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURzaFBxZjJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago César \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Viktor R \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQwcU5QdUJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Pedro Pardo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago RUBEN BLASCO TORRES \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDc01yRFJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2021-01-31 01:52:39.833374+00 5 years ago Gérard Otte \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ0aVBPSnFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago M P C \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNYbDdEUmpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Pedro Albacete \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNxM0x2S1pnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Efren Aaron Marin Garijo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURzaXNiU1JREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Kuki \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Ruben López \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnMnNyOURBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Juan Carlos \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2022-01-31 01:52:39.833374+00 4 years ago Fernando Cantero martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1OGFQMzlnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Luis Ramirez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNtM2VtZ1NREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Didier dic \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURrMy1ENnFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Humberto Castro \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Rocio Sánchez Méndez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURGamVtTzFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Matti Huppunen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtdlp2QWh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Quique SALVADOR RODRIGUEZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURNeHUtQl93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago raider vfr \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMwel9IUk1REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Matti Puotila \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUREN01ER0tREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Diana P \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBZzRfNmdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Gorka ojembarrena saracho \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhNkliQ2ZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Meme Man \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLOGVQY2FREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Perii Blessed \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNmczV6V1J3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago JOSE MARIA PEÑUELAS VILA \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Cris Sml \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLOVlhNXJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Nacho Drift \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2cVpEeHV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago TwichLive \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT213NVVuRkxXRTFhU25ONlFtWktlVE5aY1RCSGRIYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-12-01 01:52:39.833374+00 2 months ago Stefan Andersson \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURycDR6ZGFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Willem Van Herpen \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2020-02-01 01:52:39.833374+00 6 years ago noel fernandez (Nemesix) \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNxd05xa1Z3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jose 8 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNoOFltN21BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago José Luis Menchón Sánchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLak0yUXh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Daniel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNyNWVyNThnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago angel murcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLcFlHd3RRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago francisco bianqui \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1clB6SzRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago LUIS MIGUEL HUEVA ESPINILLA \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURWbVBmV2R3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Pablo Pedro Alvarez Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2eVlMaVR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jose Alberto Benito \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRcjZiM253RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago arrison Hernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhaXNldmRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Felix de la Encarnacion Lara \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNEMy1qRjlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Adrienne De Winter \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Samuel Rabadán García \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtNGEyajdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Celine LEGAY-BILO \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQyMWVybDJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Montserrat Albarrán Gómez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNsZ0w3U0RREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Maria Alburquerque Molina \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURNdEoyVnZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Raphaël Bonte \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1MFpfcFBnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Paloma Burguillo Garzón \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURvb2FyQ2JnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Rainer Krause \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNEdXVXdk5BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Neus Antón \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnB1TnBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago ENCARNI PONCE SANCHEZ \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLcTQ3X1R3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Adoracion Serrano Diaz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2019-02-01 01:52:39.833374+00 7 years ago Mar Tovar \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Juan Herrera \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURid2Z5UmVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Alexandra Grosse \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPN1p5SjJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Joaquin Galiano Hernandez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwMC1MY2hnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Hugo López \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNOW9iMU5BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Mari Carmen Lardin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwODRpcDNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago marga pastor \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVOE83SWJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Olivier Joyeux \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ4czd6eW93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Pedro Fernandez Villanueva \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURCZ0lxVU13EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Lorena Ros \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVdWV6ZzZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago INN \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhenBhTUVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Juan Marques \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVNlBqVW9RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sara Rölvåg \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURlaWF6azRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago jose antonio verdu \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR2aWFtaldREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Pasi Riikonen \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPMV82R2V3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Ivan Mesa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcGVYRGNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jose Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhaVlDLWJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago RUTHY MT \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhc0lpMTVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago VíctoR de LaRa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURBMGFYZUtBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Guillermo Huertas Moreno \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR0aXNhNFFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Selenia Gomez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNBNVlUQVNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago C. S. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhNy1YWkR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago MARINA ESPINOSA \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwMk5YZDZnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Luis SANCHEZ BENITEZ \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhNzVxTEZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago M RR \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jessica Alvarez Ortiz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNWcHJpcFBREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Joaquin Navarro \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURncmRQdExBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2017-02-01 01:52:39.833374+00 9 years ago MARIA LUISA ABOAL SANJURJO \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNzMGIzblR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Angeles Gea Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2019-02-01 01:52:39.833374+00 7 years ago dual_Coroyale \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURCeU9UOG9RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Joke Spaanderman \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURXZ0lucVVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago antonio prats rodriguez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNHdEs2VUdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Petra Kirchner \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1bmFLLXJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Belén San Pe \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhblBISjlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago MANUEL GARRIDO RUIZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURINUlDVXFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Philipp Pires Marques \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTd1p5cW5RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Antonio Oton \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNrM3VPUUZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Rafał Konieczkowski \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTURBNFplVTVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-03-06 01:52:39.833374+00 11 months ago emiliano roldan \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN2NUs3cmdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Gonzalo Fernández \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcGY3OFJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Juanjo Peinado \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVdU52WWxBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Emiliano Romero Sevilla \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDNVpHTnNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Alberto Valero \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1cC1iUjN3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Javier Manzanares \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtMW95RzZBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Kolckt Kolckt \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM5cTV1ZnJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Karel Rosé \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURZdXFDcU1BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Serching \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2s0eGVsTjVSV1pQYVMxaU4xcENUbGRPVjFwcVRtYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago Johan Engberts \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTM1pyOWlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Francisco Canovas Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2016-02-02 01:52:39.833374+00 10 years ago Aitor Sanchez Gimenez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3MkpDRjNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 Edited 8 years ago Andrei Stirbu \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago beatriz m gonzalez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwMzgzeDFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Cristian Moisès Moreno Ortiz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ4bS03S0NnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago harval17 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURndDh2ZGpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Javi Juaneda Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLNWE2bUpREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Francisco Trigueros \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3dUxQQ05BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Guillotina 1312 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR3bU8zZ0J3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Laila Haugslett \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURtbTRqTS1RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago J G \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4cXQtRHh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Francisco Jose Montiel Barnes \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURxaU0yaWF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Reyes Alcañiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhNC1XUGdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Vanessa Rama Fondo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURJb0t2SGp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago El sech \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDdklDYnVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Serla Paredes \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDNTdMYlZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Rodrigo Cobos, CFA \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURJNDhUUnFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago David Ayala \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhbzhfOWp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago C GA \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDcFp2dVVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Pablo Linares \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRM1lHNzhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Cristina Balsalobre \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2cUpDdVl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Domi Perez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNCb2NqZzhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Lucie Otter \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNhMF9POElREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Angel Lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNLdVlXb3R3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Monica Lopez Lopez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUNJb3J5MFB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Emilia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2022-01-31 01:52:39.833374+00 4 years ago jota Candenas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Laura Martínez Rodríguez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNPMmNyd1pnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Nico Ma \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Juan Antonio Martinez Gomez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Mariam navarro del castillo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Gonzalo Olmos \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhdU4teWJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Anabel García \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM0anFXNUxBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jose Angel Mora \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM4aHFlVDFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Luis \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDc2JicFBBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago jose manuel gil anton \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZc2Zqbmx3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Nico Gimeno \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhemV6YzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Javier Martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwcHAtcWdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Javier González \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Murielle Deredec \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNHOHFiSVVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Dinamita \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRaXAySGV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Davproxd \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNYai1lMTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago anne maclellan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURJOUoteVRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago ANTONIO GRANADOS VELASCO \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVanJpOS1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Juanma ma \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1eU9PUWdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Víctor Giménez Bravo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVN3ByVGtBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Ricardo Martos Lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1Xzh2SWhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Fabio Grigoletto \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2bk1YM1BnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Janire Fernandez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPNHNfR2dBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Juan Antonio Sanchez Hernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURncU5pX0lREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Juan Manuel Gálvez Velasco \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2MXZUMDRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Daniel Velasco Morata \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNBa01hSFlREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago JOSE FCO. MARIN-BALDO GOMEZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwLVpuSTl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Paco C \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURkNy1UcFNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Dominique Dubuisson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQweTdDa3BBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago javier fito ramirez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago israel martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago annick dheedens \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXM2RqNUJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago ROSA CARCELES \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQtNjl5V3JnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Dani Riquelme \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVcGFUMWhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Dave Baert \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR4aFBlVlZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Daniel Bermejo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ4Xy02ZWV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Gines Vazquez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM4eTV1QkhBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago José A. \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3Mk4tTWl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2016-02-02 01:52:39.833374+00 10 years ago dani Villa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Miriam Losada Del Olmo \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Pablo Martinez Valero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNIbWVhMFh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Chris De Haas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNjcG9qSG13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Pajaro 16 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMweV83LXRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago JUAN FRANCISCO GARCIA-TALAVERA \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNzaGZPWHl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Sergio Rebolledo Gadea \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURaMHB5QzBnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Carlos Torres \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Salvador Arce Futos \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRbVlYLUF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Álvaro. G \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxZ01iZnZRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Inma Beltran \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURRaExTU2R3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-04-05 01:52:39.833374+00 10 months ago Luna Yona \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhN08yYzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago pablito Skywalker \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVNWZTc3NRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Carlos Cuesta \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhOVBHU3p3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago jeronimo jover menchon \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago RAUND 1 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPOEplVTlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago camping sanjavier \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVdnRmNU5nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sagrario ruiz garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNodHV1R05REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago JUAN JOSE MARTINEZ ALAVA \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURudHBuRVFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Ariel Peñalver \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURROXNPSTJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago MARLENE HUARACHI \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURfb2F1Qm5BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Javier Caste \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdm9QLThnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Enrique Mínguez Hernandez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR4d3BDY3FRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Maik Krause \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURROVlxUWpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2017-02-01 01:52:39.833374+00 9 years ago Josefa Martínez Ruiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJR25pOTNSMHFiS3RBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-07-04 01:52:39.833374+00 7 months ago Jhony \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ3aWJfYXhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Angel Alonso \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1NE95WkdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Carlosvs 07 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2020-02-01 01:52:39.833374+00 6 years ago Ernesto Polozhaev \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNzczkzaUNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 Edited 5 years ago Angelcp19xd \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN4NXJud3J3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Frank Darko \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURicXVyb3B3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Yolanda Broncano Leon \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNlMDZpbmtRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Sergio Quesada Contreras \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBM2RfSDh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago María Cheztez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2017-02-01 01:52:39.833374+00 9 years ago Andrés Moreno López \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNJaDlpcWVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago victor antelo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTURJeEtxZENnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago John Alexander Taborda Lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURJeWVQWTRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Alessandro Pilati \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2Z1AtekVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago MineMike _ YT \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Valentin Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURxb2RpRkVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Emilio Santos (Emiliako) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMtOWFUaGlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Adrián Botías \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBcHVLcGxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 Edited 3 years ago Miguel Marin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 Edited 5 years ago Javi Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVLXYtb3d3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago JOSE CRUZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRd2NuY3h3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Jose Toribio \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURXaU8tNVd3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Pilar Alvarez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1aDZiUm5RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Jose l Lajarin g \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNpa0pPdUh3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Francisco Javier García Fuente \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURndTZmOWVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago francisco jose Murcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRdWFpeUJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Jesus Fernandez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNzOUlyU3BRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago David Samper \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURzbUtxcUlREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago TAXI DAMIAN ROCHE \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNneHNxMEZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Raul Ibanez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDOHYydnZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago angeles fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR4bWFhWlJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Colibribribri \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR4ZzRxMTRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Multiservicios Raul \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Ivan Pujante Carrillo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNkaFBPeWJnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago M Brad (mbradauskas) auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURTemJEU21RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Ignacio Arcas Muñoz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXcU1iekNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Bente Krogh \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNpaVpQN0VBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago s. montoya saura \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURZazh5bmdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Felix Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1eE8ySzh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago antonio jime \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNXa3FEbXRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Merche \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURrXzVmLVlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Gabby Gabs \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURndXJ5RDNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Rubén Gutiérrez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURld1BHcGpnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Javier Imbaud \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURSMW9fQUNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2024-01-31 01:52:39.833374+00 2 years ago Pedro Bezares \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURrcDZ2VkRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Gust \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Maximo Carrillo Lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Leonardo Conzoñhio \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhOTk2cnFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Skitel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1cThuVTJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Raclos \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURvcU1mR1BnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Gonzalo Carrillo Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR2aXBLRzZnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Fernando Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNicUxHa1hBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Remik \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhak1EbnVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Juan Francisco Zapata Parra \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBa2V6dzFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2019-02-01 01:52:39.833374+00 7 years ago Catalina enrique jimenez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURndG9xaWNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2018-02-01 01:52:39.833374+00 8 years ago Javier Higuera \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNWcHVuU1h3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago David Eduardo Chica Castillo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNOC1iRlBnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jose Maria Pablos \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLaG9TTjB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Ruben Alarcon Lopez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxbE9mX3NBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Carlos Almela Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBbnFmVnRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2017-02-01 01:52:39.833374+00 9 years ago Victor M. Vieira \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMwbDdtaC1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Juan José Arenas Saura \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNSOXV2R1VBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Hector Amoros \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNvc0lEaXVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago SR.SHENNIX24 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDbzVfc2tBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Dmytro Khatonka \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRNTdXb0x3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago DANIEL PONCE \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhMktENjR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Pablo Sanchez Tarancon \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNEM3ZMeGFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Julio Galindo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVanNxb1ZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2020-02-01 01:52:39.833374+00 6 years ago Cape qk \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDZ3ZYTldREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2021-01-31 01:52:39.833374+00 5 years ago Alejandro Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNsbUs2VU9BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Lorenzo Garcia Vera \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDZ3JIMWhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Jay \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURjbS03WFlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Mar HS \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2eDZMTUJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Tomás Soler (BYXxTOMASxX YT) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwc04yS3B3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Meri Morelli \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZMDVEVi13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago José Luis González Bragado \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDam9DQ0xnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Maika Ramirez Escalona \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1d055WWt3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Evin \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMwMXY3dGRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Daniel Jhong \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLem9hcEdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Deiny Ramírez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQwOWNmcXJnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Rubén Oliver Díaz \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1c0xmNFJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Frank Siemers \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLN0tQcnJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Pedro Muñoz escudero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPN01HZ0x3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago israel gonzalez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ2NDhpbUJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Joaquín F.A. \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNLODVuSjl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2022-01-31 01:52:39.833374+00 4 years ago Beatriz Alcaraz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Javier Pérez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago youssef has \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURSdjllenp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Martin Bedorf \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1dVlYMUtnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Profe Iván \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDeFBIQlhREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago elandaluz 77 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwZ0oza1pBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Aarts Bouwtotaal \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwOHVtQUZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 Edited 2 years ago Hector Soulie \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3cjdUT3NBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Jose Manuel Abellan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURSMGNtVkhnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Josemi Garcia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVX00yc2x3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Kike Cardena sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBam92a3NnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago José Nieto \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNnOFlYWWl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Mathias \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwdV9IQnFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Fernando Peixoto \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ4di1POUR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Gerar \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Fabian Dorz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR5My1Pem53RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Thomas Piuma \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Didac \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURncmE2bDdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2016-02-02 01:52:39.833374+00 10 years ago John Drebin \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVamJiTVl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Ana Paiva \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNCcTZLby1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Luis Gomez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPbU9tUUdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago juan manuel sanchez cuesta \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURtal9HcGFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Estrella Pérez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURrcV9mVVNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago German Esquiva Vegara \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTLXNqOHFRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago TKM \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNJcE5fMTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Enrique L \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNeVppcjRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago JUAN REY \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVd1BfbUJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Carlos González Mato \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1bktfZnNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago RCH \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3N3NDQzlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Sandy Meier \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVbGU3UndRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Sassiss Said \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhemJYNHBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2022-01-31 01:52:39.833374+00 4 years ago Katiaa Corcuera \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURKd2FDZXNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Ag Desc \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQyOGZ6ZW93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Kike Fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMtd2R1LWZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Loli Atienza \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXX0o3OUNREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago JULIO GASSETTE \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1bmJHQWdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago XXMUSCLORXX Isaac \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQwcGJLRi1BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago IZMAN IGOR \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhcHF5eTZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Victor Ambrosi \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcGRmdUZBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Manuel T T \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNzcE42cnpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Tresillo Crack \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMtNVplMnZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Estefania Ferrer \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRM2RTTGVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Juan Ramon Recondo Rodriguez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZMl96am5nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jochem Jelsma \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ2bHFXUkJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Robert villum Nielsen \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPOTdHUWl3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Nadia Larinouna aliouane \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVN0tYOENnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Ruben Vicente Navarro \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVNjVhVDVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Alexandru ionut Popovici \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNja2NPRXdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Sasa Peruseski \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxck9xUjRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago daniel senñai \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURDajhENjRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Miguel Angel Garre \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURncGJqVzRRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Javier \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBdW92dFVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Dani76_YT \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRdDZuZmFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 Edited 8 years ago Mauricio C.G. \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURXeXRxdnlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Abderrahim Barber \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNRMDh6THh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2017-02-01 01:52:39.833374+00 9 years ago jose antonio suarez quintas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLa3VxS1JnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Isabela Vichera \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMxd192ZlN3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago marcel heemskerk \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Encarna O.G. \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURnZy1mbktBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Wojciech Kosecki \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 Edited 7 years ago Piedad Quiñones \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPXzRYenlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago sergio S \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVOVBQWUR3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago ʋɛʀօ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 Edited a year ago Gonzalo Montañez Sánchez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURrbnFfRGFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Daniel Murcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2aUlMWGJREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago María José Tomás Simón \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNnMnZEemlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2019-02-01 01:52:39.833374+00 7 years ago Regi martín \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnLTRfVkJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Mita Trejo Monserrate \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBLWZhbjBRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Caridad Cano \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLcGY3SzJBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Manuel Vergel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2eTU3b3NBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2022-01-31 01:52:39.833374+00 4 years ago Sonia Muñoz Ortega (Sonimor) \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNheGVHR2lRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago María Del Mar Ruiz Plaza \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 Edited 6 years ago Daniel Anton \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhb3Z6WE1BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Miguel Angel Zapata Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhOTliTm9nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Philippe Vanderpoorten \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPXzdDNjBBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Concepcion Muñiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2026-01-09 01:52:39.833374+00 Edited 3 weeks ago Eugenio “Ryo567” Martínez Seguín \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3N2JQYjVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Aleksander Kjeldsen \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT21GT1luUllNakJWTkRGVVdrUmlZVzQyUjFCRlQxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2026-01-23 01:52:39.833374+00 a week ago Pedro Espejo Celdran \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT201SFZtZ3RWRkZ3TjNwaFoycFFabk4zYUVadVNrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-11-01 01:52:39.833374+00 3 months ago stephen corbett \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2psdFZuVmhibDl2V0hSMlV6YzVSa1JJZVV4R1lVRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-10-02 01:52:39.833374+00 4 months ago Eva S M \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2swMlYwTjJVM1ZvZFVGc01FMVFNSEZhT0Vsc2VuYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago Jose Narvaez \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT214UVkweDJTelJJZDIxM1ZWbzRjSFE0Y1ZBeVVrRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-09-02 01:52:39.833374+00 5 months ago arnold Csiki \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNIMGQ2OGVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-09-02 01:52:39.833374+00 Edited 5 months ago 0nsu.332 \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tobFZ5MXpXbTUzZFZOSFVGZFVkamhDY25wRlRFRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-08-03 01:52:39.833374+00 6 months ago Ilona s \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnTUNvNFo2Ymh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Daniel Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUNvNkw2Y0pnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-05-05 01:52:39.833374+00 9 months ago Mija Naumann \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUR3cFA2X1dREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-04-05 01:52:39.833374+00 10 months ago joe carlin \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnTUNneS03SVFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-03-06 01:52:39.833374+00 11 months ago Laurentiu Cristian Hurdubei \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNfLWJITzNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago michel jonckers \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNmbnM3cWtRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Susana Perez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURucll1dkRREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Zaneta St \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURIdGNXdTZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Keket666 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNIazczWXFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Candice CandiceCrabb \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ3XzhlLVFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago teodora vazquez cirillo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM3N3ZMS1B3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago debbie stanley \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURidDlHM193RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Egon Spaanderman \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURicTRxcmNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Mathew Thomas \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNicXUtdDZ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago dani perez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNUNDhLd19nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Olena \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNUdHQ3SHRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2025-01-30 01:52:39.833374+00 a year ago Martin Nienhuis \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM5cGZtWl93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago Fabricio Gabriel Robalino Ordoñez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURkbjdYM0JREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2025-01-30 01:52:39.833374+00 a year ago M. JOSE L.A. \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURGcl9TRzVnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Влад Филоненко \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNGb2R6dFVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Arturo Fabrega Vazquez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ1c1BmWUdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Ana Tomero \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNaZ2ZQVDV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago TITOS_ESP \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURwNmVmMkxREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Teresa Espinosa \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURwME12UzBBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Tristan Egenschwiller \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwdTg3dWtnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago José Luis Liébana García \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNwOGZySnB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Flacoagudelo1977 Flacoagudelo1977 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNwM3MtRFZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Monica puigvert Abellán \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURKbi1fdGp3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Neil Dunkley \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNKNGRydlRnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago DoWy Lpa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR4LTYtTkp3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2024-01-31 01:52:39.833374+00 2 years ago Gregorio Escudero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURSakl2cVFBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago David Gómez Fernández \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNSM3NqTzV3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2024-01-31 01:52:39.833374+00 2 years ago Julio Pérez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMteVlDTnRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Emilio Alonso \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUMtX3NYZ1pnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Samuel Gibson \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURlN1BPZWVREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Francés \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURld0pHM21RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Santiago Imbaud \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNlcnRMTG9nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago JEFFERSON TR \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNleUxqSTVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Cristina Lelea \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1M3BfS09BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Falito Siles \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUR1N3JUdXpBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Nicolas Ortega Torres \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR1bVBuMkx3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Thomas Doenges \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1eThpRk93EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Antonio Sánchez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN1aHRtT1p3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Harald Sæther \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN1Z3VyTXF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Þorsteinn Árni Steindórsson \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPaGRXV0F3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Slm Plm \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURPd3FDRFZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Francisca Saez Martinez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURPN09LVC13RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago VIP Multiservicios \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNPNzRXbm93RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago Maksym Kalynovych \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQydnUtUGxnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago Chema Pa \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMyOFlhZTlBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2023-01-31 01:52:39.833374+00 3 years ago Sonia 01 \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURXZ2Z5M3lnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2023-01-31 01:52:39.833374+00 3 years ago C T R \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURtOF9EaTRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2023-01-31 01:52:39.833374+00 3 years ago cordobes.s DAEWOO ** \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNteGZUTWdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Laurent Crucilla \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNtMU5hNjVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Juan Pedro Alcaraz Martin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURHay1lVjRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Álvaro Fernández \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURHdHFlaGFnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Raquel Cardeñosa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURHdHNTeE5BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Sergio Cegarra \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2MXVxdndRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Socry Fernandez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ2dUt5VFFREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago ionica Tunea \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQ2OExDT3NBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Jesús \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2eTV2VUJnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Ysabel Arocha \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2ZzV2cGVBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Josefa Noguera \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2M2JfWkpnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Cristina \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2LWRxTmx3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Marcos Veiga Abel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM2Nk9HMDFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago PATRICIA RODRIGUEZ \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM2OExPWkdREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Carla Nieto \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhcXJET01REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Tamara Ramirez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhLUlLdXJ3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Lourdes guillamón \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURhdU5UbnRnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Jesús Sánchez Lopez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURhcU1fbERBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Pedro Monreal Nicolás \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhcHJ2UTR3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Jose Gutiérrez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNheXRPMzlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Sara sara \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNhd3JyRjhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Carolina Rey \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURxeTVteER3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago JOSE LUIS Luque \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURxd2RYS0h3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Sergio Fernandez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURxN3VXaTF3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Blue Almela Martínez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURxOXRTSVlBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Dario García Capel \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxZzVYb3dBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2022-01-31 01:52:39.833374+00 4 years ago Sandra Guerrero \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNxZ3RYOW5BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Alexejs Rublovs \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLclpiVFVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago rafael gonzalez marin \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLNWI2RzZRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Paco Aroca navarro \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURLcGY3ekNBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Juan Zapata Ruiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLeHVhWWtBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago javier perez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLckp1NHhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2022-01-31 01:52:39.833374+00 4 years ago Encarnacion SOLER GIMENEZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURLdE1Yem5RRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Bikram Jit Singh \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLbzlxRWJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Alejandro Fernández Pérez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNLenE2dXVBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Sergio Corvalan Saez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNLaE5xMUl3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago David Martinez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR5Z3RqdmZREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 4 years ago Stephen Bedford \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN5c2Rfb2tnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2022-01-31 01:52:39.833374+00 Edited 4 years ago Jurgen Hantsche \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURTMWRXVG5nRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Gabriel FG \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURTMHRTT1VBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Hosteleriaventaonline \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNpMXQyZFdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago ALFONSO CROS PÁRRAGA \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNpMXJUSXlRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Alejandro Porras villada \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDMjdHTzdBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Maribé DS \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDMF9LR3hnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago José Lorente \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDdzRDUkRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Luis Pulido Cózar \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNDaFpUQWdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Pedro Gomez García \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDX28zMEdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2021-01-31 01:52:39.833374+00 5 years ago Pepe Soler \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNDcnR2ZkdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago IBC LOS YEBENES \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQ4NmMzRktBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Mohamed EL FAL \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM4eXRfME9REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Sonia galan \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURzNXFMeVBBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2021-01-31 01:52:39.833374+00 5 years ago Kelly O'Hare \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURNXzZqWGx3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2020-02-01 01:52:39.833374+00 6 years ago Miriam Uceda \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURNbXNMVW53RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Gines Martinez Castillo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNeXFhdERnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jorge Baizan \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURNX05qanNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2020-02-01 01:52:39.833374+00 6 years ago Olga Alcaraz Garcia \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURNdE1DRkRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago José Miguel Gonzalez Ruiz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdDZuTGpRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Miguel Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNLTRDRHB3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Sempc San Javier \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNd2JDVG5BRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Salvi Blazquez Sanchez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNX3VuRTFnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Cristofer Gonzalez alonso \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnZfZzh3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Antonio Alarcon \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNNdnN1NFhREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Javi Luque \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnNPX3dRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago JOSE LUIS RAMIREZ MARTINEZ \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdnNQV3hBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Fran Maestre \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNNdm9POHlnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Adrian Gv \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQwZzdhR2FnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sami Del Rio \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQwM1lTdFV3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Adrian Rabasco \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQwNXV1bzBBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Rosa Torres \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUQwa3ItZU1nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Ola Svensson \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQwcUs3ZHBnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Angelik Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUMwemR2MzJRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jacek Oleszczuk \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVeF9XTkNnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Elena Arias \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVcS1tTmF3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago iñigo irazabal ramiro \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVdWJ5empnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Francisco J. Martínez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVbVptVHdnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago P Fisher \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVc2RqY3VBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Matilda R- Stopps \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVa2ZyT3d3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Matthew Smith \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVcnFUZ0hBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Dan “DaniHG195” 16 \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVdHZ5T0dnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jesús Miguel Sánchez Martín \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVdlBtcVZ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Isabel Gomez Martínez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVOUo2T1FBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Juan Benzal Imbernon \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURVdVAzRkRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Miguel Fernández Rodríguez \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURVbUtyNzNnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Colin Day \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNVLTZLM1ZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Martin Skogseth \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNVdUtMT3h3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jessica Santiago \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURramVyQUZnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Matas Viselga \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUM0eFpMamxRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Alexander Montilla \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM0cnBuMFlREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Alejandro Marin \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUM0d012dFdnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Samuel López Martínez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURZejdIVkdBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Konstantin Dobryden \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURZcDV2aDdRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Alexandru Vasile Ichim \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURZcThYNTNRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Jose Manuel Ejotaa \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURZMHRDblB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Susana González \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURZNVBEelRBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Sandra M. \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZNDRIcmhBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Carlos Martínez García \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNZX2JtZWJBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 3 2020-02-01 01:52:39.833374+00 6 years ago Jesús Montesinos \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNZNU5Xd3lRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Christian Carretero \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURvbUt5ZVB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2020-02-01 01:52:39.833374+00 6 years ago Andrea Avilés \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNvdXBuamVnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2020-02-01 01:52:39.833374+00 6 years ago Rober \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUR3NC0zSklREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Salva Valera \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURneEtpRnFBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago alba buendia serrat \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnaTgzNE5BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Pablo Hernández-Mora Sáenz \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBc2NEOWhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Jorge Camuñas \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBOHMtU1BnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Encarni espinosa monteagudo \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRbExDV1NnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Madalena Messias \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBMVBubnhnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Jose Carlos Samper \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUN3MGREbUtBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 2 2019-02-01 01:52:39.833374+00 7 years ago Ian Raven \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBcDZpRWx3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Sotix Shep \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBdk5EUU1BEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Денис Тульских \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNROVk2Q3R3RRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 7 years ago Vera Vera \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3blpHT3FnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Juando García \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNRb29YNmJ3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Kate Barrett \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBd0pDUElBEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2019-02-01 01:52:39.833374+00 7 years ago Miguel Garrido \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURncTVIMFBREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2019-02-01 01:52:39.833374+00 Edited 7 years ago Sergio \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNnMTdXMk1REAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Natalia Gonzalez \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURBNEt5UlB3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago Waldemar Lehn \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNBek1fUTZRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 4 2018-02-01 01:52:39.833374+00 8 years ago David Reverte López \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURRaTlmdDRBRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Debi Buckingham \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSURBb0stbDVRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Jaume Tarí \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURRdDhMNk5nEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago Sergio Macia \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUN3MGVIUDhRRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 5 2018-02-01 01:52:39.833374+00 8 years ago alejandro pretel \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-12-31 01:52:39.833374+00 a month ago ceceliamichaeloneill en 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-01-30 01:52:39.833374+00 a year ago David Van \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Iveta \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2022-01-31 01:52:39.833374+00 4 years ago Samuel Burgess \N 2026-01-31 18:46:45.062634+00 ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2023-01-31 01:52:39.833374+00 3 years ago Ian Routledge \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-09-02 01:52:39.833374+00 Edited 5 months ago Elena Santa \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-08-03 01:52:39.833374+00 6 months ago Holly \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-08-03 01:52:39.833374+00 6 months ago Tarkan Akdogan \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-09-02 01:52:39.833374+00 5 months ago Henk Verfaillie \N 2026-01-31 18:46:45.062634+00 Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB Go Karts Mar Menor 22c747a6-b913-4ae4-82bc-14b4195008b6 a510c278-87b9-45f4-9d0a-e60ff4f30662 1 2025-08-03 01:52:39.833374+00 6 months ago Fred Mayhem \N 2026-01-31 18:46:45.062634+00 ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Gabriela Stankevic auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2025-12-30 18:34:31.336452+00 a month ago Antony Maiolla en 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2024-01-30 18:34:31.336452+00 2 years ago Tomas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Eamonn Maguire auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 Edited 3 years ago Heidi Kwang auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Chlo auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Ieva Bagdonaitė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2020-01-31 18:34:31.336452+00 6 years ago Joseph Duggan Lyons en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago abc auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2025-12-30 18:34:31.336452+00 a month ago Helga auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2025-10-31 18:34:31.336452+00 3 months ago Dani Viajante auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2026-01-01 18:34:31.336452+00 4 weeks ago Edvinas D-as auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2025-11-30 18:34:31.336452+00 2 months ago Cat Lover auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2025-11-30 18:34:31.336452+00 2 months ago R. Violetovienė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 Edited 3 years ago Serhii Diachuk auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Denys Poltoratskyy auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Leo Leo auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Shiny Box auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2022-01-30 18:34:31.336452+00 4 years ago new chere auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT21sclYzQnpTa1pUTkdJeE5GY3hUV2RMZDFOa2JFRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2025-11-30 18:34:31.336452+00 2 months ago Marius Daukantas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURCc3ZXZFVREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2023-01-30 18:34:31.336452+00 3 years ago Sarvar Tukhtamishev auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURHN0wyWHNBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2022-01-30 18:34:31.336452+00 4 years ago Lukas Strelnikovas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURzcHZtR2lBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2021-01-30 18:34:31.336452+00 5 years ago Greta Bartuškaitė auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURnb01XcURREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2019-01-31 18:34:31.336452+00 7 years ago Askin Kocak auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNBNU9UR3VRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2019-01-31 18:34:31.336452+00 7 years ago Augustas Med \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNnbWRlSkl3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2018-01-31 18:34:31.336452+00 8 years ago algimantas bernatavičius \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURBMEpDODN3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 1 2018-01-31 18:34:31.336452+00 8 years ago Петя Карпович \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2025-01-29 18:34:31.336452+00 a year ago Aleksandr Panzin en 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2025-06-03 18:34:31.336452+00 8 months ago Daria Zaikina auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURsMU1fOGR3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2024-01-30 18:34:31.336452+00 2 years ago Astrantius Mon \N 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2025-11-30 18:34:31.336452+00 2 months ago Tadas V auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2025-05-04 18:34:31.336452+00 9 months ago Aurimas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2024-01-30 18:34:31.336452+00 2 years ago Yuliya Betsiankova auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMxM3ZxZFVnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2024-01-30 18:34:31.336452+00 2 years ago Anatolijus Filipovas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNBdzU2UjhBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 2 2019-01-31 18:34:31.336452+00 7 years ago Christianas Konpan \N 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2025-10-01 18:34:31.336452+00 Edited 4 months ago Jonas Šimeliūnas en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURlc3MyLW1nRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2023-01-30 18:34:31.336452+00 3 years ago Daniel Clark \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2025-01-29 18:34:31.336452+00 a year ago Jc b23 auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2024-01-30 18:34:31.336452+00 2 years ago Živilė Jasinevičiūtė auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2025-01-29 18:34:31.336452+00 a year ago Diego auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2020-01-31 18:34:31.336452+00 6 years ago dontlookatme auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2023-01-30 18:34:31.336452+00 3 years ago Emilija Zenovic auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2025-01-29 18:34:31.336452+00 a year ago Benas Rukas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNXdHV2RVlREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2023-01-30 18:34:31.336452+00 3 years ago Ibrahim Al Mamoori auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNzZ3NEQWx3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2020-01-31 18:34:31.336452+00 6 years ago Dominykas Miežinis \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNBMEpieFZnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 3 2019-01-31 18:34:31.336452+00 7 years ago Aleksandr Lebedev \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-01-29 18:34:31.336452+00 a year ago Hak Bén auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-10-01 18:34:31.336452+00 4 months ago Ciarán Meers en 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-07-03 18:34:31.336452+00 7 months ago fetlock flowers auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2023-01-30 18:34:31.336452+00 3 years ago Merve Esra en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2018-01-31 18:34:31.336452+00 8 years ago Quinto Fabio Massimo auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2023-01-30 18:34:31.336452+00 Edited 3 years ago Pune Thomas en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2024-01-30 18:34:31.336452+00 Edited 2 years ago Yuri Zanozin en 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURRdXN5dU5nEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2019-01-31 18:34:31.336452+00 7 years ago Wojciech Maciej \N 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-10-01 18:34:31.336452+00 4 months ago Jelena Šulžickienė auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-10-01 18:34:31.336452+00 4 months ago Karina Petrova auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-07-03 18:34:31.336452+00 7 months ago Artur Michał auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2015-02-01 18:34:31.336452+00 11 years ago Alex SkroBot auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2018-01-31 18:34:31.336452+00 8 years ago gintautas Gailius auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VMcUZrX0x0enBMUHpBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2025-07-03 18:34:31.336452+00 7 months ago Péter Viczán auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNoaGZLWC13RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2024-01-30 18:34:31.336452+00 2 years ago Mykolas Fedaravicius auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQtbk56OVJREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2023-01-30 18:34:31.336452+00 3 years ago D R auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURDcmVTYWFREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2021-01-30 18:34:31.336452+00 5 years ago S Gilbert auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNNbzRqSmdnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2020-01-31 18:34:31.336452+00 6 years ago Kotryna Fijalkauskaite auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURZbGEtX2JREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2020-01-31 18:34:31.336452+00 6 years ago Botagoz Sadvakassova auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNBdmF1VFdBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2019-01-31 18:34:31.336452+00 7 years ago Marius Janulevičius auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNncmZtbTV3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2019-01-31 18:34:31.336452+00 7 years ago Aistė Nėniūtė \N 2026-01-31 18:46:45.737998+00 ChRDSUhNMG9nS0VJQ0FnSUNBcWVaUxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2018-01-31 18:34:31.336452+00 8 years ago Marius Mariukas \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNBenJYOGZREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 4 2018-01-31 18:34:31.336452+00 8 years ago Šarūnė Siautėlaitė \N 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-10-01 18:34:31.336452+00 4 months ago Dalton James Cryztoff auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-12-30 18:34:31.336452+00 a month ago Sevda K. auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-07-03 18:34:31.336452+00 7 months ago Eirik Johansen auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURONDRqNmJ3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Saule Visniauskaite auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-10-01 18:34:31.336452+00 4 months ago Ugne Mosinaite auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-11-30 18:34:31.336452+00 2 months ago Batonas Tvirtas auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-10-31 18:34:31.336452+00 3 months ago Yana Kanapickiene en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago AndrewG GE en 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Anthony Lava auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-08-02 18:34:31.336452+00 6 months ago Jose auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Nicolas Dula en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Dina Mihle en 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Daniel Aston auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Alicia en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-07-03 18:34:31.336452+00 7 months ago Rokas en 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Tigran Avagyan en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-07-03 18:34:31.336452+00 7 months ago MOHAMMED MSAOURI en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Jelly Bear en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Ofir Sharon auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Netia Ingram auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Karolis Ruzgas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Sander B auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Benita Guzikaitė en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Skirmantas Mikuckis en 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNNMjRpZzFRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Julie \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM4NHZHeDNRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Natalija Rankauske \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURBcWY2OS1nRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2015-02-01 18:34:31.336452+00 Edited 11 years ago hvaerdette \N 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25GYWRWWlZSRVpNUnpoUE5XSXhORmMxTFVWYVMyYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-09-01 18:34:31.336452+00 5 months ago Adomas Grigolis \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURnLVlxbS1nRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2017-01-31 18:34:31.336452+00 9 years ago Roberto Faria \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQtM2RuT3NBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago LéLé Cocoon \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNCdDRyZDBBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Gabriela Stankevic \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Md Arman Hossain auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Sari S auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Mindaugas Vilkas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-07-03 18:34:31.336452+00 7 months ago Rhoda V auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Rokas Hegarty auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Karolina J auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Vika Rudziankova auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Govinda Valciukaite auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Do “D” K auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2018-01-31 18:34:31.336452+00 Edited 8 years ago Sakurako Sakurako auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-04-04 18:34:31.336452+00 10 months ago Tomas F. auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2017-01-31 18:34:31.336452+00 9 years ago Victor G.Onrubia auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Vakare Zuozaite auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Sergei Zhenikhov auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2018-01-31 18:34:31.336452+00 8 years ago Ulrich Beck auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Celia Álvarez auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Audrius Basiulis auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Iratxe Azkarraga Alava auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Koletta Jurskyte auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Marianita Quintero auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago UV Music auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-10-31 18:34:31.336452+00 3 months ago מעוז פטל auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 Edited a year ago archi auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-11-30 18:34:31.336452+00 2 months ago John Alexander Serna Correa auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Eivūnas _ auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 Edited a year ago Neringa Janciunaite auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Vadim Korsak auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Ilija Edgar Muromec auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-05-04 18:34:31.336452+00 9 months ago Лавка Лавка auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Larisa Belkina (belsbox) auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Doniyor Rahimov auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Jarek Kotek auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2026-01-01 18:34:31.336452+00 Edited 4 weeks ago Mantas Kybartas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Augustė D. K. auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Osvaldas Gavelis auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Dovydas Auškalnis auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Andrejus Tiskevicius auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Joana Šliažaitė auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Laurynas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Juan Lopez auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Agne Paliukaityte auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Haroldas Daunora auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-03-05 18:34:31.336452+00 11 months ago Ivan M. C. 2 auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Šarūnė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Vytenis Jomantas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNxcExPcFh3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Haroldas Adamonis auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Francisco Javier Cano Las auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Francisco Elvira Iglesias auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUN2cDlmNUV3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Ирина Безносова auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Махир Мухаммад auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnTURvbkwtWERREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-05-04 18:34:31.336452+00 9 months ago Antanas Jonušas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnTUNvb3BuMXdBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-05-04 18:34:31.336452+00 9 months ago Andrew S auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNMdk1Ea3B3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Elizaveta Kudrytskaya auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURWbHBiMC1RRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Dovilė Ilčiukaite auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNGeXJEMWt3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Rosangeles Oropeza auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2pWUlZUbG5jWGwzZFZZME5EZzFiVXRMVVVadWVGRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-12-30 18:34:31.336452+00 a month ago J auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT201T1ZIRTNXRzVqY2xKRFdEWk1NakpVVWtsdU9WRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-12-30 18:34:31.336452+00 a month ago Olga Stelberg auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2xod2IxUnllR0pSWkZKQ1lqWndXR3B0U1ZOd1EwRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-11-30 18:34:31.336452+00 2 months ago Tomas Kvedaravičius auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2pnNGVtOTFMVEZZTUZabFgzaHlNR1p4WjNwSk5GRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-11-30 18:34:31.336452+00 2 months ago Evelina Grig auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT21wRlZEZFNXbmh0YkhkSmVqbDBVRGg2VUZKR1gwRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-10-31 18:34:31.336452+00 3 months ago Evaldas Urbonas auto 2026-01-31 18:46:45.737998+00 Ci9DQUlRQUNvZENodHljRjlvT2tKTVZVMVVaME5JVEhFMFJtdGpjVFI0WkZCYU1GRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-08-02 18:34:31.336452+00 6 months ago Andrew Mirams auto 2026-01-31 18:46:45.737998+00 ChRDSUhNMG9nS0VJQ0FnTUNZM294eBAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-06-03 18:34:31.336452+00 8 months ago Erik Jankovskis auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnTUNvdTRYX3J3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-05-04 18:34:31.336452+00 9 months ago abdullah asif auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnTURnNzhlUlBnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-03-05 18:34:31.336452+00 11 months ago Kaushal Kishor auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNmNFlYSUdBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Afsheen Waqas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUR2N3FDazhnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Arminas Pov auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNIMzVERXVRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago Shiv Mishra auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNIaTY2c2hnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2025-01-29 18:34:31.336452+00 a year ago tomas stankaitis auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNSaXY2WE1REAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2024-01-30 18:34:31.336452+00 2 years ago Audrius Petkevičius auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUQtcmFuUGZREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Rūta Venckienė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUMtX19xcmx3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Agnė Juškėnaitė auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtczZtLWZBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Laura Grube auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtM3VtR0lREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago carolina cherney auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMtM3VIdkVREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Verónica Hernández Savariego auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUMtM3VHcnFnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Rosa Maria Redondo auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUR1MTZyMVl3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Vitālijs Jakovļevs auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURPNWZtUDNRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago vllad1k auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURPeWFYLVhnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Степан Чириков auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNPcWY3WkJnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Gabrielius Andrius auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNPMnZHV0xBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Anna Lomonosova auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURXOXVEVENREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2023-01-30 18:34:31.336452+00 3 years ago Agnė Aleksandravičiūtė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUQ2XzV5TnBnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Gabrielė M. auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM2cm9DeU93EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Evaldas Balakauskas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM2b0piemV3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Darek Liavsevic auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNhOU11Y0pBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Titas Netitas auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURxX28zOTRnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2022-01-30 18:34:31.336452+00 4 years ago Darius Saročka auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURDN1pUcEp3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Sarunas Saduikis auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURDMW9fdkF3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Kristina GL auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNDb05IcHhBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Itsonly Nata auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM4OU42czRnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Martynas Riauba auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM4OUlMSzlnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago saimonas Palkauskas auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM4OUlLUUJBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Nadia Derendiajeva auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM4OUx6X0tnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Dalius Bastys auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM4OUt5N3VBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Karolina Skurdelite auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM4OUl6ZU9REAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Kiril Sss auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM4OUl5MFRREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Kasia Avižen auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUM4OU1URHB3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Cell auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUM4NkxYQWZBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Evanas Grinvaldas (Ev) auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURjOW9UYkpBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Dia Diana auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURjOW9UVlB3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Anisija Leonovaitė auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURjOUl5ek9nEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Kristina Jakavonytė auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURzOXF1TnhBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Melanie Montcler auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNzcllHR2xRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2021-01-30 18:34:31.336452+00 5 years ago Agnė (KatinasBeŪsų) auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURNek1udkRBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Jaroslav T auto 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUMwNV9pcFB3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago Sergej Troscenkov auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURrLUs3RnFBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2020-01-31 18:34:31.336452+00 6 years ago 4 chebureky Prosecco Bar auto 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURJanJDUmd3RRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Marta K. \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNRd2F6U2pRRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Saulius Cepkauskas \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURRMzU3LTdnRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago irakli kalmaxelidze \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURBN01EbEdBEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Romualdas Bilinskas \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNRN0pyTEh3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Damiano Papadimitriu \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURRenRETGNnEAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2017-01-31 18:34:31.336452+00 9 years ago Vytautas Povilas Jurgaitis \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNBdTlPUUp3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2017-01-31 18:34:31.336452+00 9 years ago Laurynas \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSURBczRHazlBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2016-02-01 18:34:31.336452+00 10 years ago Paul Ratner \N 2026-01-31 18:46:45.737998+00 ChdDSUhNMG9nS0VJQ0FnSUNnc1o2WWhBRRAB Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2015-02-01 18:34:31.336452+00 11 years ago Aleh Kviatsinski \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURnaExLQ0d3EAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2019-01-31 18:34:31.336452+00 7 years ago Mindaugas Dauksys \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSURRM18tY2NREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2018-01-31 18:34:31.336452+00 8 years ago Ruta Rafaele Tumanovaite \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNnXy1TYUdREAE Soho Club 4f4bb448-0dee-4e36-b2a2-20f0357fece8 78e1db2d-21eb-4072-8fd7-88f6beef833b 5 2015-02-01 18:34:31.336452+00 11 years ago Vladas Vaitkus \N 2026-01-31 18:46:45.737998+00 ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Ian Hannon \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Paul Bechtold \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-11-25 14:24:28.077452+00 2 months ago Patrick Scherschinski Luca de Tena \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 1 2025-11-25 14:24:28.077452+00 2 months ago Francisco javier Rodriguez limones \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 1 2025-11-25 14:24:28.077452+00 Edited 2 months ago ECEM HOGAR \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-10-26 14:24:28.077452+00 3 months ago Alex Q. \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 1 2025-08-27 14:24:28.077452+00 5 months ago SoyWilliams \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-06-28 14:24:28.077452+00 7 months ago Quique Con Q \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-03-30 14:24:28.077452+00 Edited 10 months ago Jose Gerardo \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-03-30 14:24:28.077452+00 10 months ago B F \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-01-24 14:24:28.077452+00 Edited a year ago David Rodríguez \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Salvador Bosch \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Ievgen Chernenko \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Markus Kramer \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2020-01-26 14:24:28.077452+00 6 years ago Ero Martinez Garcia \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-12-25 14:24:28.077452+00 a month ago Andy Cabrera Ramírez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-01-24 14:24:28.077452+00 a year ago Derians Jose Diaz \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 1 2024-01-25 14:24:28.077452+00 2 years ago Iker Gomez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Noelia Lopez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Sara Elizondo Santana \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Leonardo Romeo \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Jordi Antonell Bladé \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago Adrián Pérez Roger \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago Camilo \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2020-01-26 14:24:28.077452+00 6 years ago FernanGamer HDModzz \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Adrián Rodríguez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Eli Lopez \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2020-01-26 14:24:28.077452+00 6 years ago Nestor Lobato \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnTUNvNHNIX2pRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2025-05-04 01:27:20.564007+00 9 months ago Tamas Mayer \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNzNGJ1Mnd3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2021-01-30 01:27:20.564007+00 5 years ago Gerard O'Reilly \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUROei1YcmRnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2024-01-30 01:27:20.564007+00 2 years ago John Mortimer (Kelpieman) \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ2aHNlMjRBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2022-01-30 01:27:20.564007+00 4 years ago Giuseppe Perna \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNoaFB5MDJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 1 2024-01-30 01:27:20.564007+00 2 years ago Laura Mitchell \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNCNWFpUUtnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2023-01-30 01:27:20.564007+00 3 years ago Jean-Denis Zafar \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQzalBIQVp3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2025-01-29 01:27:20.564007+00 a year ago Turk Telekom \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUROdVBETmVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2024-01-30 01:27:20.564007+00 2 years ago Ger kelleher \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMxeFl1NERBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2024-01-30 01:27:20.564007+00 2 years ago Diana Spiczak-Brzezińska \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNkbllEdWZREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 5 2025-01-29 01:27:20.564007+00 a year ago Trav eller \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-05-29 14:24:28.077452+00 Edited 8 months ago JOSE MANUEL MORENO CASTAÑO \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-04-29 14:24:28.077452+00 9 months ago Jaime Jesús García Mendoza \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-01-24 14:24:28.077452+00 Edited a year ago Daniel PM \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-01-24 14:24:28.077452+00 a year ago Juan Mora \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-01-24 14:24:28.077452+00 a year ago Alessandro “L” Sandri \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Dražen Zavoreo \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Bohdan Savchenko \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Daniel P. G. \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2018-01-26 14:24:28.077452+00 8 years ago Daniel Medina Claesson \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Flavio \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Pepe \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Cristobal Ceballos vega \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Ancor Santana Martín \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Monica Campos Guerra \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Alfredo Rodriguez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Jesus Tanausu Gonzalez Gonzalez \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-10-26 14:24:28.077452+00 3 months ago Adrián Santana García \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-02-28 14:24:28.077452+00 11 months ago cristopher munizaga \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2025-01-24 14:24:28.077452+00 a year ago Stian Øvstebø \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Adrian Nuez Sosa \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Alejandro Tavio \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago C Cdrs \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago JOSÈ RODRIGUEZ \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Eduardo Rodriguez \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 Edited 4 years ago Ignacio Santana Rodríguez \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago The Garden Lanzarote. Profesionales de jardinería. \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 4 2021-01-25 14:24:28.077452+00 5 years ago Paco Hornero \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago Itaca \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago Guillermo Cedrés \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE R. Fleitas Peluqueros b974ebf3-33d3-44a4-98c9-960a1060a831 \N 5 2024-01-25 19:19:03.793912+00 2 years ago Pablo Yanez Ortega \N 2026-01-31 18:46:53.941416+00 Ci9DQUlRQUNvZENodHljRjlvT2tOallVdG1jR2hyYnpjelMzcGhjMWMyV0VGU00zYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2026-01-24 11:49:12.382088+00 5 hours ago m b \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-23 16:49:12.382088+00 a day ago George-Adrian Dumitrascu \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Judit Nolasco \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Manuel Moranchel \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Rui Rego Soares \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2024-01-25 14:24:28.077452+00 2 years ago Marc Sherwood \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago ANGEL RODRIGUEZ \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Marco Santana Alonso \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2023-01-25 14:24:28.077452+00 3 years ago Idafen Santana Pérez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Rubén Cabrera \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Jesus Rb \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago jose manuel caamaño pais \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Ayoze Lopez ROMERO \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Abel Redondo Santana \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2022-01-25 14:24:28.077452+00 4 years ago Jonay Fuentes \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 4 2022-01-25 14:24:28.077452+00 4 years ago BLAS MANUEL GARCIA PEREZ \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago Santiago Ruiz \N 2026-01-31 18:46:53.941416+00 ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2021-01-25 14:24:28.077452+00 5 years ago Gabriel R. Castillo \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2020-01-26 14:24:28.077452+00 6 years ago alberto hernandez rodriguez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2020-01-26 14:24:28.077452+00 6 years ago Airam Sánchez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2020-01-26 14:24:28.077452+00 6 years ago Alfonzo Arteaga \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2019-01-26 14:24:28.077452+00 7 years ago Goretti Cabrera Suárez \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE R. Fleitas Peluqueros 6d40ae44-21b9-48eb-98fe-7e95b472793a \N 5 2019-01-26 14:24:28.077452+00 7 years ago Jose Ignacio Zaballos \N 2026-01-31 18:46:53.941416+00 ChZDSUhNMG9nS0VJQ0FnSUNIXzhyZVFBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en ff01b08c-232c-45ab-ad99-95ada18becae \N 3 2025-01-29 01:27:20.564007+00 a year ago Alex S. \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21GbFltcEZSVk56Wm1wTmFIQjJUbVZLWDFOV1MyYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Andy Smith \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2t0MGJUYzBhVkoyUTNaQlFVOWFORjh4Y1hsM2NtYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Tom-Erik Blix \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUR3NjRyRlRBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago jules bowen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNuakstU3lRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago I.C. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtcl9HRzJBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Jorge Ceballos \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUQtMDVyNWdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Fabian Sendlmeier \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUQteU1EUFNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago JMM Errazu \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUMteWNhbW9BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Jinny \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUMtb2FyRzV3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Gonzalo Ruiz García \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUMtLXRmN29RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2023-01-30 01:21:43.597199+00 3 years ago roque viera \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURla3BQMG1RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Yerai Berenguer \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURlb0lXSWZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Silvia S. R \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNlbThuTU13EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Pino Santana \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNlbXJ5ckVREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2023-01-30 01:21:43.597199+00 Edited 3 years ago Ani Alemán \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUR1XzlxdnFnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Lidia D.R. \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUR1a2RHelZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 3 2023-01-30 01:21:43.597199+00 3 years ago Laura Caravella \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUN1MzQzLVF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Alberto FL \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUN1LW8tY1VREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Esther González Lahoz \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURPNEw2UXBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2023-01-30 01:21:43.597199+00 3 years ago JUAN CARLOS CAMPILLO \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNPb3FYV1p3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2023-01-30 01:21:43.597199+00 3 years ago Susy Rosales Jimenez \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNPdlAzdnBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Alejandro Suarez Rosales \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUQyd2REZ21BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Reidun Nyberg \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUQyanJMQWRnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2023-01-30 01:21:43.597199+00 3 years ago Carmensa \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUMyNzRqdHRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Luis Planelles \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURXX1lPdm9nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Ángel Luis Duque Toledo \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURXM3ItU0V3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Matt Kavanagh \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURtcmNfbGpRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2023-01-30 01:21:43.597199+00 3 years ago Débora \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNtenB2UHFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago oskar johansson \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURHeV8zNy1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago L P \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURHa2RIcWpBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago Irene Caballero Alvarado \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURHZ09MY1VnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Jose Avelino Lamuño Garcia \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNHdV9ySzNBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Casper Ackermann \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNHcU5TUzRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago graziano brogi \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUQ2czl5QVVREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Ángeles Hernández \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUQ2X1ppUV93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Jaakko Kuusisaari \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUQ2N2JLc2tRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago jose Ramirez \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUQ2NnVucW1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago sara trufi \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUQ2M0ptOGRREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Pilar Barrios \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUM2c0lYbHd3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Tarún Masand \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURha2ZMUHN3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Yolanda Garzon Ruiz \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURha2ZLVHNBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago José Manuel Begines Garzón \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURhX3VYelhREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Blanca Serradilla \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURhNU5mSVl3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Jose Rodriguez \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNhenRqWlh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Margarita Rodriguez \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNheklpdnVRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago María Concepción Hernández \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNhaUxHSkF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago joshua yang \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNhMExIWjJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago Maria Delia Roca Martinez \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURxbi1DQ1dnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 2 2022-01-30 01:21:43.597199+00 4 years ago Angelica Gonzalez Gonzalez \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURxbDVhSnVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Veronika Dimova \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURxd3FfU3RBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago abella garcia ortega \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNxaDQyTERREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago inma herrera \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNxNXZIZGJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago Gernot Mauritz \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNxekwySnZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 4 2022-01-30 01:21:43.597199+00 4 years ago Victor Castelló \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURLM2N6X3hRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d \N 5 2022-01-30 01:21:43.597199+00 4 years ago Adela Martel \N 2026-01-31 18:46:49.787047+00 Ci9DQUlRQUNvZENodHljRjlvT20xNFIzWTFNblIxVDNneU15MTZVamswWnpZMlNuYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2026-01-08 00:56:15.537548+00 3 weeks ago Andreea Antal \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25WVFpuSnBPVmhGYWtWMlkwSjZUa0pXY2pGbVdFRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-01 00:56:15.537548+00 4 weeks ago Hannah Ramrachia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQtNTdQVkd3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Nelly \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR2b29DdzdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-01-29 00:56:15.537548+00 a year ago J S \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNvNG9HUi1RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Suzach \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURod2ZhaFpBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jacek Obral \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT201RmJFRjRkalpYY21sa2RsOVdZWE5xY0RGd1VWRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-10-01 00:56:15.537548+00 4 months ago Alex Jackson \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURWczh2UHNnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Ehud R. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR4MjktTW5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Roberto Murgia \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tSUlFUbDZWbDlCTVdGelZrbHdiRVZVUm5wSmNuYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago TA Legner \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNwLXRfNW53RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Santiago Tacoronte \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMtMDVhclNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Ada \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNpeDQtNk13EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Vik Dowlul \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNieXRfZ0lBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Christiaan Viljoen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VNdjhvTG5oN2JIRE1BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 8 months ago Andreea Soric \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQtbDZDYU13EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Melitta Gress \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2t4M1pHTXdObUprV25kVU1URTJkWFI1TFhvNFFsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-10-01 00:56:15.537548+00 4 months ago Elizaveta Privalenko \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNiZ2RTMk1REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Paolo Remogna \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21OWWVXRjNRbkUzUTJsS2VIQjJSazR3VlZGT2NsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Hans Gunnarsson \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xRdGJITkxXbXRWYXpGWlRWUmlWVWRuUkc5YWRIYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Reidar Biørn Michelet \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN2MTlhSUFREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2025-01-29 00:56:15.537548+00 a year ago Maria Ben \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNPM09fWjVRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Kevin Blood \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCX0pmZjBRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Viktoriya Kronos \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURfMWFMM253RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Markus Schering \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURodVBpd3pBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Gene “Gino” Takooree \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNodzlfMFNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Tryggvi Torfason \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURObS1yTEpBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Magda Cho \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNvNk1tbVdBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Oceana Jenkins \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2s5NFVVeFZObWMyTTJwa1pFczVWbHBsUWtwdlNHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Paweł Burkiewicz \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURnOW95S0dREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 Edited 4 months ago Amerah Bukhari \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURvMkphRy13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Fernando Camara \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURvcWNQMlB3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Alice Glenister \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNic1p1Xzl3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Lukas Senkus \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURmejl1X0dnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Simon Eugen Matell \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURBc1otcl9nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Monique Ternier \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURWbDRMT1pREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago FKennedy & MWilliams \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNqcW9mNmhnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Roger Elliott \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURnbnVMNjNRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-03-05 00:56:15.537548+00 11 months ago Ilja Bobkevic \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNZX05YaGVnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Sven “knorke” Teresniak \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUN3MV9HbWtRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2025-04-04 00:56:15.537548+00 10 months ago Karesnik Kyrisnik \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURIallTSnF3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago christine samaan \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURIcmM2ODNBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Andra Elena Petrescu \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURlbzREVXZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Tim Matcham \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSeE1taE5BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Urban Scribe \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tWSVEzcEtSMkpxYUVsYU4yOXlWRFZxTTNCSFNVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-08-02 00:56:15.537548+00 6 months ago Suresh Jangid \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNUdF8zbGhnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2025-01-29 00:56:15.537548+00 Edited a year ago Pierre Wilter \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR0M3YtNlRBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Billy Blue \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUROX05YUlNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jo K \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ1MmRLUTRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Sonia Brady \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMxMHRYNFNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Tomasz Krupa \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtbElhOWJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Thorvald Nilsen Myhre \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN5cUpEaFh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Louise Adams \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURMbWZickdBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Arne \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNIdzU3RlBBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Andrei Popov \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNKNmJEWkpREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago jihane \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURCek8zU1pBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Johanna Elena Kasparick \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURSdmRqaC13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago nona m \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMydE83ZF9RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago laura win \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNIMy1yeTRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Luis Dina \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNONlotT1pBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Timo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNYek9Ld0xBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Jeremy OSullivan \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURtbElhbjF3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Truls Bakken Bye \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURkcktUSnp3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Ronald Santos \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMtN1pPc2l3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Mr J \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNmM28zQU9REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Bore Sköld \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNVN2RPMmxRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Varis Vagotins-Vagulis \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR2a0piU1F3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-08-02 00:56:15.537548+00 Edited 6 months ago Remus Avram \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN1clpIMjlRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2023-01-30 00:56:15.537548+00 3 years ago Sjors van Hoogdalem \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pCcWVGWjRiek5rU1dGVllYQnlRMk5JYTJWVmJHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago george parathiro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURaNU1TQUJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago J S \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNteGJEM2dRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Jakob \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNmNGFfNWJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-01-29 00:56:15.537548+00 a year ago Clara \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tKWGFFUnFOM280UTNOWExVOUZjbXA0ZVU0MFkzYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago tadej pogacar \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNwNTZqRFJREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Dan Jones \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNXb3RhQ09REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2023-01-30 00:56:15.537548+00 3 years ago Ras G \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMtcklDeGdnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Carina Fürst \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURXcG9laU53EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Sophie \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN1N2JiTjZnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2023-01-30 00:56:15.537548+00 3 years ago Sjors van Hoogdalem \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNHaXAyaEN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 4 years ago Saga Liw \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURWb3Ayc0ZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Felix B \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNxMmJUYUJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Julien Denos \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURqaXMyN0pBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Christos machlianis \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNsZ0t1eDFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Dagmara Bandura \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURvd2N6cnZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Brian Mc Namara \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNncDktWXRBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Sacide Karadaşlı \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNoc0wzbTZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago S McKie \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR4dE1XaXhnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Alex Malgaroli \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNfb2F2Tkh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Sarah Hunter \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURlOVpILXh3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago SunnyNicky \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURlMWQtekJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Aziz Daluiso \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNPaTdUSy1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago tony byrne \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN6dGNiak5BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Albert Triganon \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURXOV9uWWNnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Assunta Walderdorff \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURoMk1peVd3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Robin Wied \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNtMFpxMUxnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Yuliya Zemlytska \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtb0pDcHR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Sanya Samad \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURtazZiNjZRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 Edited 3 years ago Mainly Spain \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNmd2JfM1VBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Paula Petcu \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM4cmZYd3VnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 Edited 5 years ago Cristian Ormeno \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNseXNYYmdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Sophie Scheepers \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQzcnVQYUhBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Erman Karaca \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNscmI3aklREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Göran Johanson \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCaVl1cjZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Ari Järves \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXdS1pbzRBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Tami Brink \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQwNW9yY0FnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Rita Ahonen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNXeUtXd1NREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Don Dubbsen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtOXI2aXV3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 Edited 4 years ago Dávid Simon \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURIbXBDWGtBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Marcos Oliveira \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURPb05Xc2Z3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Aliaksei Vladyka \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNXd0txdnpBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Lars Jørgen Nilsen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURXeXQ2YUN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Bhikhu Vadera \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM5NzRUV2RnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Del Gui \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25CMGMxQnNMVEpVY1ZKNk1GOVNkVUpYTm5aUlZXYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago Régis Routier \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tocmJuTkdXVTB3WVhoWE9VRlFjME5XTVVkdk1VRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-01 00:56:15.537548+00 4 weeks ago Jens Schneider \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25Gd1gzQlVjV1p5YjJOS1EyOWpabmhuTFRCcWMwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2026-01-22 00:56:15.537548+00 a week ago BR \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21Kc1drbHFNM1ZVWlY5QlFVOTVTR0o0UzFwVFlYYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago Sami Garam \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pRMlpGaEtiV2d3VW1oNmVscGhYMlpoU1U4dGRFRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2026-01-01 00:56:15.537548+00 4 weeks ago Pepelvis \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT201SVVITmZjMjFQVFRsTVoyMU5PVFpxWm5OMlVWRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Alessio Tonin \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21KVFkxZEdVRFZQYlVneFpUTmxObHBhTTBOaGIwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-12-30 00:56:15.537548+00 a month ago Josue leonardo Fernandez Dominguez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xSSk0ySTNlVFE0WTNScmJXWmpOSHBoWDIxVWFsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago Izabela Jobda \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pWUFlteDRNa2hOZUdKUFprUkJMVWxNTkVkRlVYYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Carmen Chen \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xOS05XMWxMVWh4VGt0UFUxWktiMk5yYTNwak1YYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-12-30 00:56:15.537548+00 a month ago Elena Rollini \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUN3XzRIZEVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Nathalie Schröder-Langbehn \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNJNElHck5BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Peter Ampfl \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pRdGNXRjZOMEpZWkZWWVNUQjFibEpIV0hWcU9WRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago cintia mena brenes \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT201U05HbzBWM3BrVUVGclEzZ3pVRGxsT1d4dVlVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago alvaro gonzalez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tOa0xUUmpkelZZTkRSbGMxWjFTakF3YTI5Q01WRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Maria Jose Siesto Campaña \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMtekozS1p3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Olexis \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xCV1pVUTRObFZIVjJoblVrMWhhMVl5YzFGTVptYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Marta \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21WRU1sOXlaVUZFZW5kcWVGVnZXVzlaVUZSVlUwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-12-30 00:56:15.537548+00 a month ago Dmitrij Dan \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNUeHJfOEp3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 Edited 6 months ago Matilde \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pKVFUzUk5MVGswVG1STVFVRm1iR3hSWmpkYVpHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Rubén J. F. \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25sclgwMTJha2hpUVd0YWFXNXhkbnBwUTBadFFtYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-11-30 00:56:15.537548+00 2 months ago Daniel \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ3cHI2eS1RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Sara Montalbán \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNMcm9fSXRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Iraide Esteban \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2w5ZlRWOUthbmxYY2pRNE0zZ3plRmxIYld4cldYYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Felipe Rafael Barrientos Sanchez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2kxNFdrWm1jMEpYTjBWa1dWVlNWM3BVVm5wQ1UzYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2025-11-30 00:56:15.537548+00 2 months ago Olivia Rincón García \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tsWFV6UjJhSE16TTFONVUyWkViRWQxU1ZCSlUzYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-11-30 00:56:15.537548+00 2 months ago MARIO ALEXIS NARANJO HENRÍQUEZ \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM3bExfbkJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago dalia ortiz \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURMbzZXZGFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Néstor \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25oamJqbDRiMUowTXpneVlYRjROVWRsYlVkVlltYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-08 00:56:15.537548+00 3 weeks ago Lorena Robaina Calderín \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNOX19PNG5nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Roberto Hermoso \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURkbnA2SlpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Ernesto José González Veiga \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMtaU56NERnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Maryna Sudarikova \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURQbl82MmF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago An LL \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMwbmNiVmdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Berto Tabares \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNwMV8tbkRnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Yurena Morales Verona \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURCazd2VU53EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Edu Padrón \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURfd3Z1QnZnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago DJ L’ARTIGAS \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXeUxLaTlnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Belen Benitez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURaX00zbDhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Igor Rosell \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xRek9GOW1OMGRKVGtoUlduTktSbmhPVTIxNGFGRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago yonathan García \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tOWlJFZEtNVnAyWXpNMmVIUmhVR1JKUVZwVFpsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago Andrea Urbano \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VNeWlrOEd1MXRfUFR3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 8 months ago Alejandro Bolaños Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNRenMzb3RRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Dani Berardi \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pGbGJWZFFXSE16WkVGSmJrMVpOMXAyY1ZGWVQwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-11-30 00:56:15.537548+00 2 months ago Manuel Barrachina \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR0dV9iOThRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Jaime Pulido \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURoeTVuVUFREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Thomas R \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNqOVBLUXhRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago G. L. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURXN0xtV1hBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Sandra Zafra \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNGczRTdFpBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Raquel Herran \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNaN2J6V19BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago CARLOS GUIRADO \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2s1QlUyVnpOa2hSUjBVeE1XSnZaRFkxYTNoRFYwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Shirley Fatela \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSa18ydkF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Mónica Martín \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR4M05XSmxRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Grima \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VKR1ZwNk8yeUlfN2pnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 8 months ago Guadalupe Martín \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURPdnVHOFZREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Mercè Reñé Panadés \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2t4UGJsRmhSbTlSZFdkblJIaDZYMmxtTmw4emJHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-12-30 00:56:15.537548+00 a month ago JOSE ANTONIO LAF. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR5Nk42WGJREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 Edited 9 months ago Lidia Gil \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tWRE5VTk1TRkJrT0VoRlkzZFViR2xVWDJaRFFVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago Carmen Muñiz \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURwbk1EMzVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Lisa John \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURwcjY2WE1nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Rafael Morales \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR2bTZTS1RnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Vic O \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNRLXZpZDV3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Jukka Vuorinen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN0b3VYU2d3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Iván S.H. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURUbGNua0RREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago André ScyFy \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNneHFieXNBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-03-05 00:56:15.537548+00 11 months ago María García Álvarez de Sotomayor \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNXbm96ZG5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Carlos Guerra \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNveXF5MUp3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Martin \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR4NjRySlRREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Julio Alberto Murillo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQtanRfSlJREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Rafael Serrano nuñez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNzbnJDdmR3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Antonio N. \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pSeVpYaFpiRXhtVG5ONVdUQk1WakV0ZDJkQmRrRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Shaylor5 \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xKUldVWkZja1JDV0ZaelZHb3dOa3BzY1ROVldIYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago Amrit Balani \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25kek9HZGlTSFZWWlRWaVN6SndVMGhhV0cxaE1rRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Iván R.L. \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xoT2QzTmxUekJGTmtNMFYzQTNjelpXVW5KNE1WRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Alvaro Ricote \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pWUU5WcEVXbFpWVm10dldFdE9Wa1JaWDJOUFowRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-09-01 00:56:15.537548+00 5 months ago S CC \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURaM0pIeThBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Dominik \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQxa2NIajBnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Nadine R. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURDeFlUakVREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Anzhela Svyatenko \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMzOHNQMTJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-01-29 00:56:15.537548+00 a year ago Thoralf Schade \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNQdE82TC1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Gregor Vaas \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNSd2ZuYXN3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Hans-Joachim Hauschild \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURhMHQ3andnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2022-01-30 00:56:15.537548+00 4 years ago Sergio Olivar \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURDem9fZXFnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2021-01-30 00:56:15.537548+00 5 years ago Alba García Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNGNjdtVDJnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Javifer Fernandez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURGMVppamRBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Miki Louro \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNkbXRQVi1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Paquita Hermosilla \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURYMDlteFJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Emma Zerpa Gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURPOTZHQVNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Orlando luz gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURoazh6V2ZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Mit Lage \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT214a1RXd3hTMnhRYzBKb1ZUTjRNMmN3ZEVWcVJIYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago Andreas Eitelbach \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21wdGVYRXhaV3RpYlV0MFpYQnZkbXcyUkRsWFQwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Cristina G \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNWei12cFJREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Marta Rodríguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN1dWZhT2FnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Leticia Marrero Juan \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtcjZPR1dBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago icewallace3 \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCcV9HVzd3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago maria lisset suarez flores \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMxLVpLWVBBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Kai Schlegtendal (chief_ehrenfeld) \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VMU3h4WXJBemZlU0dnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago Jero Vera \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN2aHYya1RREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Izaskun Pizarro \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtbThqQ3FnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 Edited 4 years ago Juan Carlos Millon Ramírez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tGUmVraHlWalZXWW5oZmQxWlJRM3BhU1dSbE9VRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago marian diaz borges \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURROWNYNWhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Lotta Book \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VLbmF5X3JLcTczdlZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago PJ \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURGMkxpTl93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago OSCAR FERNÁNDEZ LÓPEZ \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMtOHR5T0xnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Pilar Vioque \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtMHQtSjZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Cathaysa Betancor \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25sRmFqZFRRazVJTTJaZmJWcFdXWFJqV0d4TmMzYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-15 00:56:15.537548+00 2 weeks ago cloticloti gr \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNqNnVycFlnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Pili Castillo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURoai1idEdnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Krzysztof Obrał \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNGamFEbzlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Alberto Fonseca Rodriguez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM5NTdxLW5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago leticia MM \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURENU9EZ25nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Helen Pinto \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURmclByTTFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Lalita Kreklau \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xkVlVuTnRPR1pVYnpKbGJVTklVREJtYUhNME1YYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Luis Medina \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURRdU82dW1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Kate \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR4d2N6WnRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carlos Gutiérrez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2eExubEpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Marta CP \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21SQ1VHb3dSMmswYld3NGRHWnRWVkV5Y1RReFdVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago diego f. \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xJNGIzQjFia2h1VW5waFpqUlpVWFJwWkROc1pGRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago S. M. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNOaTVqd1FREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Raquel Platero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM3MHVUNGhRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Thomas Rook \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURldExxZ1BnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Néstor González Barreto \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURWbjZUaWNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Carlos G Almonacid \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xKNlptNUNjMmxrT0dWeFJITm1kRGw1V0hka2RrRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Micha Westerkamp \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2w5bFYwNWhRMlpWZDBkUGVrRlVXR1pDZEdJNWEwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago Adolfo Sancho \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURQNl9LX1JREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago eric manise flecha roja \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNEbE1YNi13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2025-01-29 00:56:15.537548+00 a year ago Jens Kammerer \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURmLWNUeVhnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Oti Rodriguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNmNjlhbFB3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Bego Sane \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tsTVh6ZFFWVXhZY1Zaa1VtNW9kRGgzTW5vMmNHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago alejandro ruano \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21adFVsUlJkbkJsY1ROQlN6SnhUM1Z3TFhaNmNsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Max \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUR3OXRuS21BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Guinet Clement \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25kNVJGZzRWa2R1Tmt0dFlsQmFiV0k1UzI5S1VuYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2026-01-01 00:56:15.537548+00 4 weeks ago sandra kester van \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN4eS0tSWZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Gaia Concutelli \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMzeHFlSzRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Timo Tuominen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNnOTc2a2J3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-03-05 00:56:15.537548+00 11 months ago Carocha \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR1N0liVzlnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Antonio Doreste Miranda \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR2MklhVUN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 Edited 6 months ago Luisbel Leyva \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtXzRIS2pnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 Edited 8 months ago I CG \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURyN0xTanBnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Eliska Potlukova \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNaai1QSmpBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Jorge goncalves \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ3b3QzM0pBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Elena Garcia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNtMHM3Y01REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Gabriel R. Castillo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXOG9hcHpBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 Edited 3 years ago María Eugenia Laforet Ariza \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT201Wk5YUkVaWFJtZEdKYVVHaFBaSGR5T1hkUWMwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago GERMÁN PÉREZ \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xoUlREWkpXa1ZvYmt0ak5YSldPUzEzZFdaUlIzYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago agustin bartra \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNncG9qVDNRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago J Cab \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VOckNvN0dteGVlb1JBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago Rubén López López \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJWFNyOUxnNExiSUFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 8 months ago Aristeo Acosta \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VOamt1S3VvdHFxdXN3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-06-03 00:56:15.537548+00 8 months ago Manuel López \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21aMVkxWndTMHBZU3kxMVVuRXdkMHd5VTFCMmQwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Álvaro Pérez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURMM012ci1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Nacor Domínguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNhc011UVZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2022-01-30 00:56:15.537548+00 4 years ago Sergio León Jiménez Caro \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQydEl5ZzlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Zaira Gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN2el9PSGVnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago roberto galvan \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN4MWFtYzFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Luis de Santos \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURJbmZuSXBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Mom \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURoamJlTEdREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Eduardo Ponce Maya \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNqcnFqT0tREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Rocio Inmaculada Bañez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xCUFRrZFhUVnB4TjNOTlIwVkZjSE52TVVRNFRFRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Antonia García \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNkcVBEYjFnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Philipp Lawrenz \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xKamVuaHdjMVJqU3paT2VrdHhUWFZJUWxGdWQyYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Estefania Ferrer Llorens \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNsd3RhZlpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Vanesa Barreiro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR0cDZfM1NBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Juan Mari Unsain de Zuloaga \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURyaC1DelVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Narci Mar \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pJMVJFSnpXbVJQY3pSQk9YVlBVSHBrZW5GRU9IYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-10-01 00:56:15.537548+00 4 months ago Birk Virkus \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2poM1lscExZa0p0WlRobFRYYzVhRzl3U1V0NGNWRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Juan Miguel Domínguez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNubmVpdndBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Ayeisha \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQzaGE3bFh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago yasmina reyes \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURBc2RQVE9REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Gabriel \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25FeVUxZzJUSGRqVEdoek9GZ3ROV3AwUzNOVlMxRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Aarón González \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNIajlmUUR3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Adán Toribio saavedra \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xWSWNUWk9aM3BvV1dkcVRsYzVOMHN5YUd0eFIxRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Eva Signes Lopez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2twSWRUUXhUbVl0VDA5RmJtc3dRbFZUWkhGV09HYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Mari \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUREb2QtU0RnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Jaime Pardo Alvarez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURfME12b2l3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Gontzal Diez Basurto \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNiNXBiM1ZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago N GM \N 2026-01-31 18:46:47.445884+00 ChRDSUhNMG9nS0VJQ0FnTUNnNWVZZBAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Sara Ingarfield \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNEbE5TdVRREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Michela Sala \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURsdkx5U0xREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2024-01-30 00:56:15.537548+00 2 years ago Jonas P. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNIZ3VXQzBnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Elisa Gris Martinez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pkVGEzVkplbE0yVTFOd1pFSnVaVkU0ZEVJNFJIYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Fouad Elmoudden \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR2NHFTWXpBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Guido Wolf \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNnMW95TGxnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2025-03-05 00:56:15.537548+00 11 months ago Jota Cerrese \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT210bFdGbDBURXB0VTJkMFptNXFOMUp3U2tZd1pYYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Natalia Gomez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR2blBXOUJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Andre Reuber \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNidElpNkJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago David \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURJeDlib1pBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Marta O ́shanahan \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN4aVBHblZREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Μανωλης Γλατζης \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25CRFFrUnFhak5KVjNNeFQyODVZMFpZY0ROamJWRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago Maria Revuelta Arias \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNvc0x5dXJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Patricia Gont \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ3MS1tc2d3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-01-29 00:56:15.537548+00 a year ago Francisco \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM3OGNYYmZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago francisco sierra \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNEcmZPN1V3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-01-29 00:56:15.537548+00 a year ago Juan Antonio Mirabal \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURPbmJTZzZRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Sara Issaoui \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT205UmRYRmxUV2hUYkVGUk1sRTVZbWc1WkhkeWNHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Michele Ciliberti \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUN3eExpOEd3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Jose Del Moral \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURIaXVpZ3hnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Laura Lázaro \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xsd2VqUmtXa3d3V2pCWmJFRXRlalJ4VkZwM2NrRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago richi iglesias \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURybGYyTnZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago E. Pérez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21Oa1NtRkdPSEJ1VEZOSk1VTXdWVWRaUVhOU2NGRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago jonay frances \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQzc19fU2Z3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Mac 629 \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURuNzVXRUVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago marcos rios \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNua1BxUEdnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Werner Kodric \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNlMllPNk53EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Daniel Alvarez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMzblBqR2RBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Eligia Reyes Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURwbWRiQW1RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Alvaro Sánchez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21reWRuRk5hbVp5Tm5GeU5XRnRXbmh2YjNkUFprRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-10-31 00:56:15.537548+00 3 months ago Leticia Gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNBOUpDa0NREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago David Troya \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURVN01LVmNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Lore Cereal \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNmbExubXZnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-01-29 00:56:15.537548+00 a year ago Gustavo Marco \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUROcW8zc1NREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Le Patron \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURhN2Eyd2xBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Héctor Chafla \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNMeXN6bml3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago José María Plácido Suárez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNsa2VpLWVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Jose Luis Núñez Bravo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURvOUp5WmxBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Aile Cg \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNWcmJ1LUZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Yamila Castillo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNKeTREc0N3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Paul Kalhorn \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMycjh5UmxRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 Edited 3 years ago Javier Martin Zurita \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ1MnVtYmxRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carlos Herrero \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pOSGJuTnRjRzVaWlhkdFREaFBibU4yV1dKak0xRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago GCarmen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR0eE9xNzJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Julian Lohne \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ1OXBXMzBnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago santi paleo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNsM0lIbjlnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Kpasa! \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNWNU42QWZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Ana María DG. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNXMllmakJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Patricia Benito \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNJMmVlVEJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Carlos Carrión \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNPNWRMLW5nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Esther Ureña Calle \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURacnRub1BnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago barrapan \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURaeDZyNWN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Eduardo Adrián de Val \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25BMFV6ZE1kVXRVTnkwemVEbHFXbWRrWTNodVUxRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Juan Romero Lora \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT20xYWJtNUpiMVIxWlhoMFpHRnhUV0ZtTkhwS2RHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Belen Martin \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURvamREZm5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Maribel Suarez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2s1UGFraENkazkzV1dOeU1HMXpOVkptWkVaV1JFRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-09-01 00:56:15.537548+00 5 months ago Manuel Angel Gonzalez Lopez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURfM2RQNmlnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Cesar Garcia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNZNzhMMVNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago JOSE ANTONIO LORA \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ3NmRfc3V3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Laura Pano Sepúlveda \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNwellTYW5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Noelia Linares \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNaNXFMamRREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2024-01-30 00:56:15.537548+00 2 years ago jose luis goizueta \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2sxR1Yyb3dOVVJFTm0xWlEwVjJSMGR0WkZVMlRFRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Sonia Gonzalez Joven \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xkTVRtWlFkVEZLVFRJeU9HZEthakF4ZDFSdk1HYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Lola Herrera Legido \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURweE1DVUR3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Giuseppe M \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VLU1o3T3pFNUwyOVN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-06-03 00:56:15.537548+00 8 months ago Cedric Homann \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUROeXJ5cm1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago C & T \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURmbk9tVmZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Martha Rodríguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN2MXNtZENBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago aida elorriaga \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURoOGEzdV9BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2024-01-30 00:56:15.537548+00 2 years ago Maureen Wadley \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURYdnZQQW9RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Tim Tom Noack \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR6aHFYUTVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Maria Viera Galvez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURmdG9HMUlBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-01-29 00:56:15.537548+00 a year ago Johanna Manninen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNuNV83R053EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Alain Alain \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURRcE02SGxnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Julie B \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNKMTlyMkxBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Koen Luiken \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQtcHZUSFRBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago david vid \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtLTZtTEl3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Elena Lozano De Benito \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURROU51V2xRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-04-04 00:56:15.537548+00 10 months ago Cristina Acosta \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNEenBuTTBRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Cristian Martín Cardona \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNRZ2JmaUlREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Cyntia Gutierrez Nuñez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURCbDVyeEZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Hubertus Schmidt \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNoaTdTZTZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Josu H C \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNWcmVUbjNnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jesús García Alfonso \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQxcW91T0V3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Sascha Dronszkiewicz \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURoN0tMVWNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Raquel Gonzalez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tkVlpGaFVWMlZPZVROMGJEY3dhMjAyVVhSU1ZHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Oliver Castillo Rodríguez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR1dmVHTnRBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Joel Pérez Izquierdo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNEcXBTMkRnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Consuelo Rodriguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURKcExYVWRBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Aida Salas \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURReE11dEtnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Irene Morales Hernandez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNIcE5lLWJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Car Hernández \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN4bU9ETFZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jorge CC \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN1MTg2WVFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Natalia Martínez Tamará \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQyd2RXeFZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Nieves Úbeda \N 2026-01-31 18:46:47.445884+00 ChRDSUhNMG9nS0VJQ0FnSURxbi0xVhAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Vicen Gallego \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNKcHU3YklBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Maripi \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2w4dFQyWTBOMDVLZFVkQ1ZqVXpOSFp2VlhadVQyYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-08-02 00:56:15.537548+00 6 months ago Chany Morales Vega \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMyMDctV01REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Brigitte Gansen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURkLVBMVUVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Ruth SZ \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURMajlfMTR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Yo Misma \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNNMGVXUXp3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago José Luis Mesa \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQydS1HTHhnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Ana Sampedro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURab1luWGFBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Pablo Alvarez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURlOTZEdkF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago ANTONIO FERMU \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUREcmY3ZExREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago L MCL \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCa3BQbDVRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Macarena Kanerotika \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM5OGJPWFNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Martina Galasso \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXczgzcW1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Alexandra Mejias Herrera \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNHaDlDLWpRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago cecilia cecio \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURDbW9meDNRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Diana Mm \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM2b19QQXpnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago melisa solera delgado \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNqdHJqOTRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago andres cabral \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMyaXNLZkt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Sophie Cottin \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNONGNhdGxRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Kurt C \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKc3YzVzdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago José Oliva \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURUNGJtbXJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Mar M \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURBNXNXRHZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-03-05 00:56:15.537548+00 11 months ago Francisco José Santana Bernal \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNRcnNHSzJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Toñy Sosa moreno \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ5eXFxdVdREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-01-29 00:56:15.537548+00 a year ago Gunilla Xxxx \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNleUkzUjh3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Victor \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2prNFlrcFhZMXBqU3paYVpFNUhXbWRsZERGYWNXYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Lucia L \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURhMkkzbWNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 4 years ago S \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNwMkszYnR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carmen Quintana \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURwbl8zNkNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Emilia R.G. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ2c2ZUUXFnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2022-01-30 00:56:15.537548+00 4 years ago Gus Vega \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURPc2V6am5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Astorg \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ2ay02LVJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Rubén Moreno \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURDX2VqbURBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Disfrutar De los pequeños detalles \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNXNkkzT013EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Luce Burello \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQyNE5lNjZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Emilia Fernández carnero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURTXzh1ZjZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2021-01-30 00:56:15.537548+00 5 years ago Gloria Muñoz \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMxOWJhOEZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Ligita Viluma \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURzOGZpVUpBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2021-01-30 00:56:15.537548+00 5 years ago Raúl Rodríguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNCMU8yQ0pREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2023-01-30 00:56:15.537548+00 3 years ago Meli LH \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNldWFHaVN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Christian Reyes Nicholas \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNpaGF1eW53RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Noemi Vidal \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNwNTcyckNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Pierre P. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR6aG9UTHR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Victor Gutierrez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKd3RPVWpnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Susi Rodriguez Hernandez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VMTGtudEwtbDhHMG5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 8 months ago Salvador Verdugo Domínguez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMtNXNUTXNRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Eduardo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM2bTZUYjhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 Edited 4 years ago Christian Pérez Miranda \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURacjZ6My1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Tara \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNCb2F1NmNnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2023-01-30 00:56:15.537548+00 3 years ago Saruca Calixto Toledo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNQME1MMXVRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Rut Osambela \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMtdXI3MlNnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Fernando Vélez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR2ckt1cTVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Catrin Reuber \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN1cThEbHdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2023-01-30 00:56:15.537548+00 3 years ago Ezequiel Donadio \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNKLXFleG5nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago José Carlos Olivero Ortega \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNocGNHS0l3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Joelle Weber \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURhN2RYNzlRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago M Rm \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNybk12VjBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Thomas Klevås \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR1LTRlZGNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Simon Richter \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCcjV1NjVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Ana Maria Ronda Martínez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT210MlNXSllNbGRsVVhwUVFWbFdiR016YVZkYVRYYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Raquel Padrón \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURSa2JUS1BBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago R TP \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMxeGRxRFJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Patricia Silva \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMxcVlmazBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago irina Silva Suárez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURKaTlhd1V3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Reducing Body \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQyaGRxZm1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Pilar S \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ1cXUtTS1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Vicente M. Ferrer Navarro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURSdGVxNll3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago jennifer granados \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNhcDV1X3l3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Alfonso Otero \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ3OElPV1F3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Laura Manzano Fernandez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURWNF9pV0RnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Mario Ramos \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURleWFPWkVREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Constanza Fornieles \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNiNXJxWW9nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Titanium Time \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURNa19peVh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Ismael García-Romeu Díaz de la Espina \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN2MzVMTERREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Misael Domingo Rodriguez Lamas \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCMmZtYW93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Marko Paasonen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURCOUsyRGRBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2023-01-30 00:56:15.537548+00 3 years ago Lin da \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNCNjZybkJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2023-01-30 00:56:15.537548+00 3 years ago Guacy Sos \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN4cjZyQ1FBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2024-01-30 00:56:15.537548+00 2 years ago RAMON SANCHEZ \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUREbDVMeDJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago SENDER59 \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKeVAyZHVBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Francisco Hernández Ramos \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNRX3JlaFJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Ruben \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNxanF2RTBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Janel K \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNoNzhHZ1dBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Ardiel Estevez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURhN3FqRzRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Manuel Regal \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURTbnJpZ21RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Miguel Ángel Díaz Rodríguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNpdHJTY01BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago IvanJack7x \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlME5EVWh3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago María Sofía Rodríguez Sánchez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNQcHYzZFNnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Gazmira Morales Rodriguez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURScjV1VHZnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Miguel Orihuela Naranjo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNINklMRExREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Kelly Parra \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMwcnYzTzh3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Lara Palacio \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMza05IWG5BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago miguel Nogueira romeo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNhaktET1hBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago ALICIA SUAREZ RIVERO \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCc1lfWTZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Jesus Madero \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pRelZ6RXpla3BxWDJsRGNFUkJWMEY0UW1wbGQxRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Ana Bodero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXN1B2RnlnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Jordi Masferrer \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURDLVBLRjB3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Miguel Velázquez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xwMlFVUk5OVkpwVWtwNFZuaHBiVVJoVkhBMFVsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-12-30 00:56:15.537548+00 Edited a month ago Antonio SANTANA CRUZ \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNhaDRyR3l3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Smart Max \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21FNWFHSTVYMnQwUmtndFpGVllNalpqVG1kSGQwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-07-03 00:56:15.537548+00 7 months ago Miguel Ángel Calvo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMyM0tHcGZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Rosa Jimena \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2tvMVFYVXlTV1kxVmtWVWJXdG1jblJIU3paelZsRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago MANUEL CAMARENA ROSA \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURSeUtYdWR3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Uwe Böhler \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNBMlotWFJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Miriam Paréns \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN1N1pIMXBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2023-01-30 00:56:15.537548+00 3 years ago Victoria Hernandez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNPczhYbTlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Maria de la Luz Martin Miguel \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNua0ktZlNnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Jose luis Gascon andreu \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN4bW9EUW5RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago yelzhar \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUR3cEtyRDl3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Luis Cabrera \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNNbTRQaHR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Victor Moreno \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ3b29QS19nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Mayte Doldom \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNNMGRYTVp3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Laura Esther \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCeE15VjJnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Felix Hartmann \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ3cWJDeE5BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2025-01-29 00:56:15.537548+00 a year ago francel iadevaia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR1X2FPSkdnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago cristina flores \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURucjR6QXdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Nadia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNsd3Vic0JBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago ma pepi \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCbG9yUHdnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2023-01-30 00:56:15.537548+00 3 years ago winnie \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNmck5uM0pnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Susanna Koponen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKbHUyUm5BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Cristina \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURMeHBDUVJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Lucia Cobi \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURqaXNTWWZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago jose garcia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNIeDRXRmNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago benito rivera \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM2bTgtbHRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Dieter Assenmacher \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCa3BQRWhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago nuria martinez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNNcy1qZ1h3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Oscar Muñoz \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNKdjk3UzZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Fernando Hernández \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURsX09QZkZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Ottone Tassi \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNwMGVhUGV3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carlos V. A. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtbzUtNFFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Valme Pozo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURocDVtejZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago tsti ydy \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtdUpiTDl3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Jimena Aristu \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21aNmJETkRSM0pOZG13elJEQkxORVpmY0RrNFozYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Virginia Gallinal Socorro \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNsek1lbV93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Nerea Vidal \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSa3JyX2F3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Marily García-Vaca Pérez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNhNktxaU5BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Pato Marcos \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtdmF5aTR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Guilhem Martin \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNqMTlQQmRnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Simon von Styp \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNYbmVYenpRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Will Fernández \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNDaU5xWmxnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Verónica Monzon Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQwd1BpNjZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Pepelu Corleone \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMxZ3VtanJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Linda Lopez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSbktQOGZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Nils M \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNmc3J1aGhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Constantinus Flavius Valerius \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUNRX3YzVHJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Mariano Gutierrez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNlb0l5elBBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Mauro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURha296cklnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Pilar Barquín \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2MzdIakJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Duncan Stone \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNza0lDVHV3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago javi \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURnM3N5WFJREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Cristina Diaz Alonso \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURac01fNUl3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago SusanneVerena \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNadWQzQ1hnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jovanetta Martínez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR4cmZLRWxRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Montse \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURIa1lESkt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago J \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN0bE0yNkNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Helen Martín \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR5bnBXSjdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2022-01-30 00:56:15.537548+00 4 years ago Toni Lionblanco \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN4cU9ENHp3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Luis Ruiz de Alarcón Quintero \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ5bW9QSFhnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Consulta médica \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN4aGRUSTZnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Luis Fernández López \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURqajViR3p3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago julie VICENZI \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNKcnBxdXpnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carolina Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlakxyaTNBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Alicia Pozo Hernández \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM3MkplNGdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Pedro Tello \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtaGFTTml3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Beatriz Fernandez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNHMWZDd21BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Rafael García Cuerva \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNSbU4yV3hBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Cameli Orosa \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN1eDUzWEd3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Alberto M.L. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURSeVkyR3NBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Irene Santana Cabrera \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNvbHBleVdREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago René Padrón \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN4cklIdW9nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Élisabeth B \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURQdnFuZjFBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Jm Bl \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtcmN5b0dnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Jorge AG \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNYOTlUd0R3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago eduard tapia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNzNzk3OEJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Balbu \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtbmZqeFZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Luz Marina Sarmiento Santana \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNScnYtTE9REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago David \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXcWIyUnFBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 Edited 3 years ago Mercy Delgado \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQzLWQ3ME5BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Josue R.S \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNxcl9MNkJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago MIGUEL ANGEL SANTANA \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURPbl9LUFd3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago lola sosa \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURZMjhQeEtBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Andres Rodriguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNhMjVicVNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Maria Angeles \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURGeU9PR1FBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Dani Cabrera \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMtME9lanJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Jesus D.A \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNobmNlN2RnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Isabel Valdés \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURWXzltc2ZREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jonas Jansen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURtdXQ3QjVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Ivan San Juan \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN0aVBtQUt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Cristina González \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMwaXYzT2lRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Melanie Lebourgeois \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNIODdiakFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Oliver \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQxb3ZXRm53RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago m w \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQycXV1d21RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Guille Carvajal \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURPdU1mNS1RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Jorgelina Cabrera Reyes \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURJa29tR0xBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Airam Peraza \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlemRyeDV3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Claudia Maldonado Morales \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURha1lxR1FBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago José Manuel Begines Díaz \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXN19qTHVBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago CENTRO NEO PSICOLOGOS SCP \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNtdTdfS2J3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Danne Johansson \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ2ai1PanZRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Jose Lorenzo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ0czRtVk5nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago J SC \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURGcHFLeGhnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Beatriz Quiros \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtZzliMTF3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Jesus Abad Rica \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURXdjQtODhnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Alfonso C. Saavedra Romero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQxN3AySWdnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Manuel Ramos Santana \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNscF9tTlhnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Guille Crucera \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURldDdidm13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 Edited 3 years ago B Perez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQzanRmeURBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Antonio I Torres \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURGNXF5cHZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Erenia Portillo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM2c09hbjhRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 4 years ago Pili Ballabriga \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMwci1US1pnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Laura Cucculelli \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURCMHBuWFpREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Ramón González Peña \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNwal9IdjFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Luz Coba \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNldllLYUVREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago VH7 _pro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURDcGJiNVZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Jorge Andres Otero \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNDX3J1d2N3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Antonio Mendoza Cano \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURicjhpN3N3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Marisa Marcos \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ2X3FyRGZREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 4 years ago Macpalomax \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT210bGF6bFVNR05oYlVkVE5WWnpRMkpwVVZGNVFVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-12-30 00:56:15.537548+00 a month ago Елена \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNpdVBMNmJBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Alby Santana \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNEX04tRU5REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Johan Järvinen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNpNXJqUFZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Inmaculada García Suárez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN1MVBQTHdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Vanesa Del Pino Gil \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQtcXZ1eWRREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Antonio Francisco Manzano Acosta \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNlMkp5NE9nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Mariona Figueras Barceló \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQwaWY2ZlF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2020-01-31 00:56:15.537548+00 6 years ago Mª Luisa Mellado \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNzejZ1US13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Daniel Diaz \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURIcFAzX0RREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Maria Soraluce \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM0emNDLUF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Clemente Bobis \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM1aXNxbTlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago MARI CARMEN LR \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURNczdfaEt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2020-01-31 00:56:15.537548+00 6 years ago maria Cristina Dosil López \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQxLXRPWTJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Rolf Schu \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlM3RiMDJBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Joseba Mendiguren \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURTOGIyTElREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Cristobal Rodriguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURramFDQ01BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Anaëlle Rgmt \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNJbDRMMEh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-05-04 00:56:15.537548+00 9 months ago Familia Pascual \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUN3NHJMM29BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago María Jesús Brito Cabrera \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2cmEydEpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Matthes Müller \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtN01lUzlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Carmen RS \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURqMXJYZGlRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Isabel Sánchez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURlc3JxWm5BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Fran Garcia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURqdmE3NFpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Olivia Rodriguez Benitez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtMnJQYUpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago José Ramón Melián \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNuaV9YcnR3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago El correo que uso \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURSMEotdUN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago jacqueline jansen \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNONGY2MXFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Meritxell Ribas Boned \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURwcXBHZHZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jose Fernández linares \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlcjk2dHJnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Fermín S \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURKM0x2bERnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Ksb Haba \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM3NXZDbmN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago María Maeso \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURVZ3I2OTlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Alexandre Sanjorge \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR4cUpteDRRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Naira Bethencourt \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNHLVlmVTdnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Francisco Fernández de Piñar Lorenzo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURSaS1yV0hBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Sandra Pozo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNsa1pxYWdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Uwe Kohn \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURZMTlTc0pnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Rosa Maria Martin Ojeda \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR4ME0yMFZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Victor Manuel Garcia Perez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNHb3ZfVUdBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Luis Valdivia \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNYM2RqV3BBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Azuleida Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURseEphNzJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Alfredo “INNOVALIA” Rivero Gil \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURkMHNlSzBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Angela Steen \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR4b3VlN1Z3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago michele lenci \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNiOHZmT0pBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Aouatif Fetah \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNteGVLeV9nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Nicole Schröder \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURxcm9MMjBRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Andrea Santana Gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURvM3B5YWZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Ana Maria Begines Diaz \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ2cnJEcVJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Luis Recuero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNPeWVLMTlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Elisa Moreiras \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUREZ2JQVmlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Manolo Dominguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNEdy1xOFRREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago luis sainz-rozas \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURHX29YRFlBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago J.M. P.R. \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCZ1BXOWpRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Laura Blumberg \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNLeUtYSU1nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago ESCUELA INFANTIL LITTLE STAR \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURwODVmVTZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jan K \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNheE5uZ1lBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Isma Rosa orte \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN4djl1RFpREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago María \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURxdHFtazJBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Carlos Artiles Mendoza \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNpbWZETWdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2021-01-30 00:56:15.537548+00 5 years ago Pablo Atoche \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUROZzdXOS1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Suzanne \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ2amIzUzB3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Maria Gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMyOEtuTUV3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Alexis Martín Falcón \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNWNjd1ZVhnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carmen Delia Navarro Chinea \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURJenF2QW5nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Candido Arias \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN6NGZuek13EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Nicolas Claver Sanchez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ2M09tclZ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago intruder intruder \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURZMklhSDF3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Antonio Lopez Diaz \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURZNUk2N2hnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago JUAN JOSE PAREJO CURADO \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2eUw3V0RBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago maría luisa ortega \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlOE8zdnVBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Lidia Sanchez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VKaTZ1YWU0LXQyMTRBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-06-03 00:56:15.537548+00 8 months ago helder antunes \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ5aGRyc2lnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Julia Kurt \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURjNi11R2FBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Roberto \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ4cGNLSjJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago and Lp \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ1Nm83YWNREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago esmeralda de la fuente \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURENnJmUWFBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Remi Bordón \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN4dC1ucGx3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago FERNANDO MENDOZA \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM4b3ZiTkJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Ángeles Rodríguez Cuellar \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNpaWNDNm13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Ach Wasweissich \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNwdmZTX0hREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago skatehip SK \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURhbUlmdDRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 4 years ago CRM \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ4Ny1HeHhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago nicolas jose garcia fontes \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtenRITTJ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Oliver Schröder \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURSN3NtT0hBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago D&L \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCbHFyV3BRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Pino Santaella \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURDanBuOUxREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2021-01-30 00:56:15.537548+00 5 years ago Miguel García \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURkbDZteDNnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Maribel López \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNlclp5QXJnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Rosa Perez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNoaGVDMndRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2024-01-30 00:56:15.537548+00 2 years ago Caribay Segura \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNtNU8zSDJnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Janet \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURabXN6S0FREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Desiree Estupiñan Estevez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURKdGJLQUxREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Alicia Gabriel \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ5eElIcC1nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago samuel Rodríguez Montero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ4NzgzQjdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Mireya Gloria Jiménez Jaén \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNObDlPSmFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago luiyis agudelo \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQtNk9fQVhREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Rosy Calderín \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURhN29ha3h3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Luis Carlos Lorenzo Martin \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURaX3F2WXVBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Romen Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURTNjhfNHB3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago cristina castellano rodriguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURZMjZQdWJnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Francisco Javier Muñoz Gonzalez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNDMjlUa09BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Jesus Poch \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUROejR1Xy1BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Fco. Javier Hernando de Diego \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURqMGRMSGxnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Mayela Gómez Medina \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNscFlqcTZBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Carles Caldentey \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ2ek9LcWhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago AVMC \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNxdkxiWmVnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago luis Calvo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR0NWJLcDdBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Benno Weber \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2aU9pZ0lBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago jacob brito \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUR1bklUZUxREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Olga Garcia Jorqui \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQyMU5UYThBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago gloria rodriguez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSbklHR05BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Adrian Rey Nieto \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURDX3NhSDNnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Cristina Hernandez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM4NmZuOGdnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago noemi benitez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2t4cmMydFRlRFptVFVWeE5YcHJTSE51V2pGNGRHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-01 00:56:15.537548+00 4 months ago Juan carlos Cárdenas Martines \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURPNWJLQjlBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Prudencio Castro \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURzeHFLZEt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Jose Carlos Ramirez Marrero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKczhpTTRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Vanisha Lilaram \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURTajhlZGNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Alberto Garcia-Beltran \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURtNDZqZGFBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago sara enguita \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURHMzdIMlNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2022-01-30 00:56:15.537548+00 4 years ago carmen rg \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURjOGZfVXB3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago antonio javier trejo perez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNsb0szTlh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Soledad Villalba \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURLLVkyTzZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago NBC New Beauty Concept \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURScjZLbnpRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Javier Martín \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURObVl6dTJRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago JUAN MANUEL RAMOS QUEVEDO \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNKXy16X2N3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Ruben Molina Torres \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNhXzRET0hBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Juan AB \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNZaTVUVzlRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2020-01-31 00:56:15.537548+00 6 years ago Rafa Fdez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUM3amVmUy13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Antonio Campos Garcia \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ4bTctS09REAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago BENJAMIN SUAREZ FALCON \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURMOF9hS3RRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Alfredo Cortes \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNBbzVpV0xBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago L Viladomat \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQxeGVfV25BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Rafael Pérez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM4MXZ5eE53EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Francisco Tomas lorenzo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQwek83S3VBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2020-01-31 00:56:15.537548+00 6 years ago Julio Ortega sanabria \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURTcmRERFNnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago juan Manuel Gonzalez Matel \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURrdVBlVm93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Rosario Torre González \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xGeFRuSkhXVGR1UzJkak1YbFNNVXA2ZFUxVk4wRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-08 00:56:15.537548+00 3 weeks ago juan llompart \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURCOU5PUllREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Francisco Granados Lobato \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2pab1ZFWkZhelpMVkVaVWFVNVhNbFEwYUZGZmIxRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-12-30 00:56:15.537548+00 a month ago Melanie Rousseau \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNXb05HWHJnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Jose Salinas Martinez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xJdFNXUlNlVFozYXpreFVIbElUbUZxZEdRMlZuYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Virginia Ladislao \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xKcWFHODRWblZ2VldKUllWOVRWMVZvV2tSeVFWRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-10-31 00:56:15.537548+00 3 months ago marco cerritos \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtN1pUajlRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Daniela Gonzalez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25Gd2R6SlNjVk5GYjNaUWVrOHpObmd5VTI5d09XYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Tomas Alcaide Parrado \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNXZ1A3dWhBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Anabel Tikal \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21WRE5tSlVUbXhwVVVoaFdrTkJWSEo2VDFkblVHYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago Maria Patasanu \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMwNXZ5by13RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Anigio \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNweXFhOUZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jacqueline Couanes \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21KUGJHSnNPRVI1Y3pkSVYxOUNVa3BYVW01b1JFRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-08-02 00:56:15.537548+00 6 months ago Alejandro Henriquez Portillo \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURvbUk3T25nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 2 2020-01-31 00:56:15.537548+00 6 years ago M x \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURpOFpPdGN3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago Ricardo Sosa \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUN1aGFQNWJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Esther Campusano \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2NVlXUlpnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Pablo Rodriguez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25FM2RrNUxZbEp0VEZWS2VVeHpTMU5CTkVkT1JIYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago Manuel Bacariza \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURzdXVta1dnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 Edited 4 years ago YAIZA RAMOS HERNÁNDEZ \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNZNUo2RHFnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2020-01-31 00:56:15.537548+00 6 years ago Miguel Angel San Miguel \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCcTlUSDVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago José A. Cabrera S. \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNZMnVENFRnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-06-03 00:56:15.537548+00 8 months ago JORGE HERNÁNDEZ \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURRM2UzdDNBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Irmak Tosun \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURBd3RpMTNRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Levi Jimenez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURfazYtWXVRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Melania Saavedra \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQyX09lZklnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Pablo Reca Camacho \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNmN2Jqc1NREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Andreas Bruegger \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUR2eE03N2hnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Guacimara Hernandez Rodriguez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN2aXBqbG93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-01-29 00:56:15.537548+00 a year ago Schlappe \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURQMHJXaFlBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Gloria González Valido \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNQcXIyRWJ3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Carmelo Sarmiento \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQzdVlTWG9nRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago David Gil \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMzaDRUSUd3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Jose Antonio Domínguez Hernández \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUMzdXJlMW9BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Maria Grazia Ticca \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNYNFBELVB3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Mari Celi Gil \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSURueUlpWFdnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Richard Harris \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNOdGZyYlJREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Juana Boned \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNucXB5QU9nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Carmelo M.H \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ3Z0lhREt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Florian Bouché \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURiNzllSjh3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Eneko GH \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNibTllQ1N3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Paco Nogales \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN6bzV5Q3pRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Joana Perera García \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNEMkxfTHVRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago jose serrano santana \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUQ5eXFDSU53EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Patricia Sánchez Gonzálvez \N 2026-01-31 18:46:47.445884+00 ChRDSUhNMG9nS0VJQ0FnSUN0cU9RcBAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Pilar Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUN0MU9XR213RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Violet Hill \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNOa0tHbGpBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Javier Manjavacas \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURGcDRuaXV3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Bimbache 39 \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURadDhITnVnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Michelle Kouhiho Miranda \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNwM0pXZGtRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jose carlos santana ramirez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURKNUpienJBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Ramón Infante \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSbWFyYWNBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Christoph Helbig \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSaXFtUkZBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Antonio Borras Hernandez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURCeWZId3N3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Nuhacet Monzón \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCNWVxT213RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Örs Jakab \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCMnRDYW93RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Rubén García-Pando \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQtb1lPdXFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Marisa Hernandez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUMtcE9EMVF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2023-01-30 00:56:15.537548+00 3 years ago Airam Santana \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNPOC1DbzNRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Cristóbal Ramírez \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNsMjQ3S25RRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago Pedro Juan Díaz Batista \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNSbnVqeVZnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Juan Carlos Tacoronte \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSURZaTlTMXdRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 Edited 2 years ago Agustín Morales \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUQ4cGZHSDRnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago roberto trinidad perez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUM2NDRyTGVBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2022-01-30 00:56:15.537548+00 4 years ago Miguel González González \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnSUNDbEtxUVhnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2021-01-30 00:56:15.537548+00 5 years ago patricia afonso \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnSUNCaHF2Nmd3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Juanma Falcon \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xFM2FuRXplblZHUzNGelJ6aHBXR3BmTUZCUlNXYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-28 01:56:15.537548+00 23 hours ago Nelson Martínez Legón \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xoclVHRnVZblpZTFdaMlkwTktUblpsYVdOWFdVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2026-01-22 00:56:15.537548+00 a week ago Peter Wallgren \N 2026-01-31 18:46:49.787047+00 Ci9DQUlRQUNvZENodHljRjlvT2tWRlVHWXRNMjFtY2pCaFJEQnVhVFZ3YzBOb2JVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2026-01-08 00:56:15.537548+00 3 weeks ago Mijanur Sikdar \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT214RFp6RXdUeTFFUm5sdWRGZHBXVmQwU2xsMlExRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-11-30 00:56:15.537548+00 2 months ago Cristina Drosu \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT21aaGMwWXhVV1ozZW1OeVJubHdTekJhWW5GRmFuYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-10-31 00:56:15.537548+00 3 months ago Francisco Montero Jiménez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2t0UFIzWlVOVU42WjJSS0xXdGZVR1ZrVEhFMExVRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-10-31 00:56:15.537548+00 3 months ago Alex HateLove \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT25GeVRVOVFTM0Y2U0ZCMk9GSmFUbkl4UWs5RFJXYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-09-01 00:56:15.537548+00 5 months ago laura vega larios \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xFNVNtWmhNRVUzUkZOTFdqVmZSRzVGWlZsc2RGRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-09-01 00:56:15.537548+00 5 months ago Cristina Rguez \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2trMk56SXRlRlJwYlhsQ1gyeFZRWEprVjNGNU4wRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago Luca Mazzia \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2xVNGJHRTNkUzA0VVROYWNsTXRSVUZSUmxBeFQwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago Eneida Padrón Fuentes \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2t0MWN6WTBaalZNVlc5a2QyTlhhblZ1VGw4eGFuYxAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago María \N 2026-01-31 18:46:47.445884+00 Ci9DQUlRQUNvZENodHljRjlvT2taeVJtMVRRMmx4Y2pCUlNXcDZkM2h5YkhacFMwRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-07-03 00:56:15.537548+00 7 months ago Roland Bohnhof \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VKemgtcmVXd0tMcFBnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-07-03 00:56:15.537548+00 7 months ago matthias mühlberger \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNvcU5UWFR3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Manuel Muñoz González \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNJNTdfUlhREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Dolores Roman \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNJOEtQaUhnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-05-04 00:56:15.537548+00 9 months ago Juvy Salac \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTUR3bExlY2pBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2025-04-04 00:56:15.537548+00 10 months ago Mariano Auyanet Romero \N 2026-01-31 18:46:47.445884+00 ChdDSUhNMG9nS0VJQ0FnTURRdThTN3B3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Agata Sasiadek \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNRenJ1cUpBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Didier Huet \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNRdXRxcU13EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-04-04 00:56:15.537548+00 10 months ago Elena Moraru \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTURnb2JDbGFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Javier Alvarez \N 2026-01-31 18:46:47.445884+00 ChZDSUhNMG9nS0VJQ0FnTUNncXVhVmFnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-03-05 00:56:15.537548+00 11 months ago Daniel Bennasar Sans \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURYbnV5NHZ3RRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago PM sainz sola \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURuMjdLODJBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Roberto Muresan \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNuM0xQMFFREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Juan \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNIeF83SmdnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 Edited a year ago Maria Caldera \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNEZ2ZuVmV3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2025-01-29 00:56:15.537548+00 a year ago Nayra González \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUM5LXEzekVREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2025-01-29 00:56:15.537548+00 a year ago Carol Garcia Lopez \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURObl9iVmhRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago B Jaldu \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUMxNnN2ak9BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago urotanke \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNWbmJLajBBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Tara P \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURscUxPbUx3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Paloma \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNsOF9mQ29BRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Tere R G \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNsMF9PVVh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Juan Luis Martin Rodriguez \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURKMjYzWVhBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Ramon Calvo \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURKM09yUkhBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago G Lücke \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNKXy0yaEt3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2024-01-30 00:56:15.537548+00 2 years ago Mérida Reyero \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUN4OFAyc09nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 3 2024-01-30 00:56:15.537548+00 2 years ago Luisa MC \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNSMTd1c2NREAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago jose ramos \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNSM2ZmaFF3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Renata Skora \N 2026-01-31 18:46:49.787047+00 ChRDSUhNMG9nS0VJQ0FnSUNSb3VCaRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Jesús B. R \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNSdkxEbFVnEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago LOLY LÓPEZ CASTELLANO \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURodWVYc1Z3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Juancho Lorenzo \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNoeVpQLUh3EAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Yeray Rodriguez Castellano \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNoNU5HaExBEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 4 2024-01-30 00:56:15.537548+00 2 years ago JESUS LEAL \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUNoa01HM09nEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2024-01-30 00:56:15.537548+00 2 years ago Kostas Komninos \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSURCMDdDWE1BEAE https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Alejandro Ochoa \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURCdWJDZGtRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago RUBEN BRION LIJO \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURCOUlmTjFnRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Mario \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSURCMExfWWxBRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 1 2023-01-30 00:56:15.537548+00 3 years ago MARIA URIARTE \N 2026-01-31 18:46:49.787047+00 ChdDSUhNMG9nS0VJQ0FnSUNCNDlycXFRRRAB https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en 02eaebc6-8054-4714-b06e-c567e55c6a10 \N 5 2023-01-30 00:56:15.537548+00 3 years ago Javier Villa \N 2026-01-31 18:46:49.787047+00 ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Elvinas Palcauskis auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-03-31 01:25:52.343796+00 10 months ago Onni Virtanen auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Ville Lappalainen auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Iyad Zaaroura auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Saeed Mekdachi auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago ovidiu morosan auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-05-30 01:25:52.343796+00 8 months ago Fred Toft auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Marta G auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Kyrylo Shevchenko auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Viktoria Turcsik auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago baby auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago ionut lungu-ionita auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-01-25 01:25:52.343796+00 a year ago Katarzyna Krok-Jalocha auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Ildiko Toth auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Zarima Utsijeva auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Djamshid Ghavami auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago K Hu auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Bence Nemes auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Bruhs (leon) auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Torben auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago Jorge Gomis auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Tony Kelly auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Dorina Németh auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-07-29 01:25:52.343796+00 6 months ago K. B. auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-07-29 01:25:52.343796+00 6 months ago Imane Tejari auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Sergi Toda auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-07-29 01:25:52.343796+00 6 months ago Ian Pasin auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago ian taylor auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-31 01:25:52.343796+00 10 months ago Matthias Kullmann auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Tim West auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Pepa Želizko auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Arron Bhourlay auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Robert Turner auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Colin Alden auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Addetto Difesa auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Max auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Smirres lordling auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Hugh Fraser auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Alexander Gligorijevic auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Alexander Hellberg auto 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Sylvie Tubez auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago Zoltán Kerékgyártó auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Yung yury auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Sam Shahoud auto 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURmcnUzYlJnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-01-25 01:25:52.343796+00 a year ago Lucia Illuminati \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUMzaVByQ2FBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Mona Stoicescu \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Vanessa Ribeyre \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Peter Pan \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Alina Jühlke \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago René Mösezahl \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Florian R. \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Niklas Florea \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jakob Gossen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago María Teresa Guerra Guerra \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-27 01:25:52.343796+00 3 months ago julia carrera andres \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-09-27 01:25:52.343796+00 4 months ago A \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Manu Nikolic \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-01-25 01:25:52.343796+00 a year ago Yuliya Kutynska \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jorge García \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Lisa Graf \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago Mônica Areal \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-09-27 01:25:52.343796+00 4 months ago Pedro Cabrera \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Jose Blesa Martínez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21SQ1FrODNNVnAyUW13eFdtbHRWRk4wYTJkRlprRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-07-29 01:25:52.343796+00 6 months ago Rosi \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago Anna Wellein \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Nicole Vieira \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Jy R \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago ERIC MOYA MASFERRER \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Alexandra \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Aitana Villalba Plata \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-03-01 01:25:52.343796+00 11 months ago Hanna P. \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 Edited a year ago Oliver Sust \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Fabian Sanchis \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Lars Häusermann \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Sara Iglesias \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Chris Toph \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Maria Teresa Casanas Lopez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Mario Fdez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-01-25 01:25:52.343796+00 a year ago Lara Töpel \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Mario Massa \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago simon llovet garcia \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-06-29 01:25:52.343796+00 7 months ago Víctor Guzman \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Kreuzmann \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Aitana González \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Florian Hofbauer \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-08-28 01:25:52.343796+00 5 months ago Alessandro Rolla \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 Edited a year ago Alejandro San Martín \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Cristina R N \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Nikola Nikola \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-07-29 01:25:52.343796+00 6 months ago Támara Yamila Torres \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2taRmMwSnRVMXBXZW1wSVVERTFjbmMyYm1SbFVIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Jose Chiappetta \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Miriam Lisa Füssl \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-06-29 01:25:52.343796+00 7 months ago Gilbert GIOVAGNOLI \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago v p \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago david Hernandez Papis Martinez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-05-30 01:25:52.343796+00 8 months ago Vic \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-31 01:25:52.343796+00 10 months ago Madda Fogliata \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Noémi Szabó \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago Laura Machado \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-04-30 01:25:52.343796+00 9 months ago Annabella Castelli \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25oMk9VbzFlVXBsVG10MGNYVkJYek5vYkRrelEyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago antonio jose rivero marquez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWTWJrUlNiRUpLV2kxVFYxcGtSVEZXUWtocmNtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Marius Saborosch \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago E. W \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago S. K. \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Marco Löhner \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tkblpUQnhla1pIZWxCR2JraE1WM2hLU0ZCV2JVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago AnGeLoUs P.g \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Jose Alexander \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-07-29 01:25:52.343796+00 6 months ago tomasadrian perez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Jose Miguel vt \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-09-27 01:25:52.343796+00 4 months ago maria perez perez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2prM01Yb3pTemxpYVV4YWNUQjNjVkZVTlhFMlgxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-08-28 01:25:52.343796+00 5 months ago Klaudia Sajdikova \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-01-25 01:25:52.343796+00 a year ago T R \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago IMAGI 10 \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Zorica Mijović \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago J. L. \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Jessica Laganà \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Jose Manuel Cabrera Santana \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Un arabe liberal \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago Elisabeth Steinbauer \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Clara Färber \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-01-25 01:25:52.343796+00 a year ago Didac Mora \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tGdWJGWlZWMVo1U1RJeVZGaEpSV3N6VVVScU1rRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago Nora Fdez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jonas Medler \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-06-29 01:25:52.343796+00 7 months ago Isabel Cenamor \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUMzMXZ2aXJ3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Jose Manuel Taboada \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURJOUxxSHlnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Nathalie Paradis \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNZb2ViVGFnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago Jaime Perez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xSVlkwSjVXbmgwUzJwNVFVTm9WM0V0YlZOUlNsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Josue Heredia Heredia \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Javier Rodriguez ferruz \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Damien REVILLIER \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Victoria Guedes \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-31 01:25:52.343796+00 10 months ago Jule Schneider \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Tati Fernández \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Carlos Fernandez gonzalez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Tony Pasta \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-01-25 01:25:52.343796+00 a year ago Steffen Meinecke \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-04-30 01:25:52.343796+00 9 months ago Christian Cotting \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25kUmFGTmphamxZWXpBd2NGRndiMjlhWjFWdFltYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-27 01:25:52.343796+00 3 months ago Pablo Rodríguez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-27 01:25:52.343796+00 3 months ago Kenny Miller \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Sol Alcaraz \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Cristi Coca \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago David Karma \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 Edited 11 months ago Aurélie MANZANARES \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jaime \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alan TVSHT \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Sandra \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Juan Manuel Diaz \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago François Anselm \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-03-01 01:25:52.343796+00 11 months ago Christoph Seidler \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tKT2FIaExkaTFCZVZaRVkwMHhSMnhhWlVaUFduYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago gego16 \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Aitor Aguirre \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Ainara MG \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago ElíasMB \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago H K \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2w4MVVuZzRlazlJVkVseWQzRTNZeTFUVlZSdmJVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 Edited 5 months ago Antonio García \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Rafa Martinez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago drew \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Masoud Taheri \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-01-25 01:25:52.343796+00 a year ago Lolina \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNnbWJhNzN3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Paula Aragones \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Sara Velasco \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago ignacio moreno \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25WSlJGRjZlbXMxUlcwME9VOXhVSFJFU0VkUU1IYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago edu marco \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Cristina Gómez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago STEFFY G. R. \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Miguel Villegas Gallardo \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-01-25 01:25:52.343796+00 a year ago Alessandra Z. \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Virginia pedruelo garcia \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago alejandro serrano \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago Miguel \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Jonny Star \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago Nacho \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Rebeca Gonzalez Romero \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Emel Isciler \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psa01VRkJOVWsxWTNJeFNrRkljakZuWkRsNk4yYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Toni Domene \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jose Luis Damian \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Firat Sahin \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Robert Grochowski \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-06-29 01:25:52.343796+00 7 months ago Monsito De La Luz Pulido \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Eloi G \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago J.M. Aviram \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Naïs Álvarez Cardoso \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Jan Šimon \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Elena Rodríguez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Victor Brondino \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Isabel Ramos \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Andre Eckert \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-03-01 01:25:52.343796+00 11 months ago Diego De Las Fuentes \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jeremy Marguerit \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Francisco J. S. Hernandez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Miguel Rodríguez Romero \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Carmen Almagro \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago M. \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Nuria Monio \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Manuela Gonzalez Ortega \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Julio Gonzalez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago eva gonzalez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Silvia Olivera \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIOVBEQjlBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago NEUS GARCÍA SABATER \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Ana CG \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-04-30 01:25:52.343796+00 9 months ago Feluco110 ESP \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago miguel paz \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago ale piku \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago carmen Buzón \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Martín Alejandro Bobadilla Pérez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-04-30 01:25:52.343796+00 9 months ago Fran Moreno, Prozovet \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuMF9PZmVnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Rosario Jimenez Ginzo \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURudnMyQ3lRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Marta Minguez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Anna Teuber \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIdUl2M09REAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago german R \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNZb2ZxWlBREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago Alvaro Gr Gc \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURub2NhSC1nRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Francisco Amable Rodriguez Gabriel \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Nico Marila \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuN18yM2xRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Carlos Suarez Rozo \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-01 01:25:52.343796+00 11 months ago Arturo Olmedo \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Adelaida Ruiz jimenez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xOWlQzVnBSamd0YWs0MVl5MXhRWGN4U21oYWFXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Lidia Silva \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIOUxDR3NnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago JM Wences \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xCelpsRjZNR1IzY21zMWJtOWlVbU5zY1dsMlpuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Damaso Garcia \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Roberto Fernández \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Armand \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Mona Breitschwert \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Nare Yanez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Isaí Alemán Pérez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIeFBTYldnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Beatriz Brito \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Antonio Porras Ruiz (Antrax1978) \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Luis Miguel Garces Galindo \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Javier Gabrielloni \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Sandra López Gómez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2taUGRHVnhXbXd4WTNsUlJ6STRjRzFZY1hkdWNrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Patrick Ittner \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2w5UVEycDBTUzFRV2sweWFrcHljbUpDVUVOcVdFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Andreas Rust \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIdm9XNXF3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Javier Ariza \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNId2NXWTd3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Zuleima Suarez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago JOSE JULIO OLMO \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago László Dávid \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21WS1lXcDVielpDV2xWVFNubFJVRGhtWXpkMlgxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-09-27 01:25:52.343796+00 4 months ago Javier Arcos \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUN3d3I2cjR3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Leane Aittahar \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Esperanza Rodriguez Moreno \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VLRzdyN19VeG9xdkFnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-05-30 01:25:52.343796+00 8 months ago Mattia \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3NjhQSy1RRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Elisa Balderas Zúñiga \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTUNvMktEWTh3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Jose \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Ana Covelo \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago J.V. H.C. \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-03-31 01:25:52.343796+00 10 months ago Patrick adober \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuck5mSWZBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alejandro J. G. \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s0MWRtMVBlSGRPT1VkWmFITXpWRWxNVVY5M1VGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Alisa Albrecht \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuMXJhOHJRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Lelvia Rincón \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNIMzVhY3FRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago gregorio ramirez gonzalez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Anny Michelle Arias Ruiz \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNueXU3ak5REAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alfredo Hinojosa Aragon \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xrMVVsVXlNakUzYzNCR2NWUnJTM2N0UzNWV1pGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Michael Aguilar \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Belen Paez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-01-25 01:25:52.343796+00 a year ago Xavier ÁLVAREZ ROVIRA \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuaHVyXzhRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Oscar Fernández \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago MARÍA ROSARIO GARCÍA RUANO \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Suso Rodríguez Fernández \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago jose-vidal sanchez-biezma gonzalez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3d3BDNmpBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Mireya San Segundo \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21WMFR6a3hZMVZHV1hndFRGSXhaakJqV2pjNGRHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Ing. Viera Kratochvílová \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNubnRheTBBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Marynel Moreira \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21sTVdsWnNkMXBKU1ZoWFlYQnhWM1JzVldzMFdFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago Baldo Jimenez Fuentes \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Elena García Gómez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21OTU5EQjVWMGxJU0cxd1pqTmxObmd5T0hCRVZHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-08-28 01:25:52.343796+00 5 months ago Sergio Martinez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuOWFpVjBBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Adrián NL \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTURncTZMdVdBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-03-31 01:25:52.343796+00 10 months ago Sergio Morales Marrero \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-03-31 01:25:52.343796+00 10 months ago Richard Rasshofer \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tkbU1tUnZZVk0zYlV4dFRHZDJkM05hUkdwU2JIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Carmelo Gomez De Segura \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jaime \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURuX3RiSjRBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Azucena Hoyos Sordo \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago javier godoy \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURINXZtbkJREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Raul Gomez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIX3UyX2J3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jose Agudo \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3X2NQY01BEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago olga reb \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alicia Latorre \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VKUE41NHJwaXFfX0tnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago Miguel Angel de la Torre Gomez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago sergio Caceres \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Lara Julier \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUM3aWVXSTVnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Yaiza Cruz \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNvcGJqbklnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-04-30 01:25:52.343796+00 9 months ago ALESSANDRO CICUZZA \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIeExUTjBRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alexis Melian \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3aTVXR0lREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Andrés Forastero \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNILTltRUpBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Giova Perdomo \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCMFpGUkhjbEpPZUhnelpuTnhSekJuTFdNemVuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Karmen Rega \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuOVluRDBRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Mar Cabrera García \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4bFNpMWZjRGxaU3paRFoyNHdhRzQxV1dkSWJWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-07-29 01:25:52.343796+00 6 months ago Oddy Huang \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Vilmos Hart \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNINFlmSjJ3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Néstor Acosta Delgado \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxakxYZEpaWEkyUmt4TWNGVTJXaTFNT0RsdFVVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Viktor Reimer \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3M0tPejZRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Hugo Conde Araujo \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIcW96NlZnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Diego Oca \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNJMXZ6aUZ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Christopher S \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Gauthier Vancayzeele \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNIdVp1bFFREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Juan Miguel \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pkdVRWTlhia0pJVUdoWVlUQXlkbTV1UkhoTWJtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Federico Guinaldo \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIMlBMZ2NBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago joswerk dj \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURINXBUOW13RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Antonio Barreiro Pazos \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNuek5EdExnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alejandro Ruiz \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUM3cGUyaWl3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jorge Zapatero \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUM3ejVHeDhnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago kiko \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Ivan Auvinen \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIb2Z6ajRRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Chaxiraxi \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUM3ejlHdmJ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jonas Lagos \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuLXB1ZndBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Ricardo Izquierdo lara \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3ZzhpUE9nEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Víctor Javier Barrera Castarnado \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3aGJ2Rm93RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Victor Alcazar Dominguez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUNINkltMlpBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Luis Purrinos \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3cnNtRzhRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Pablo Campos escalera \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUQ3eU9TRjBRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Daniel Frito \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3aEpyMlNBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Alejandro Espi \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuM3VUNnp3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Isabel SantaMaria Perez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VPVHc0b2ItMEo3bERBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-05-30 01:25:52.343796+00 8 months ago Maite Morales \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURId2FqYV9nRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Nohemy Nuñez \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3cU8yNUJnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Gabriela Cervantes Alcoba \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT20xdFZYVXhTRk54UzBKTk9UZDBOblp6UWsxVFoxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Marcelo Cruz \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIaU8tdlJ3EAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Rodrigo Sancho \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pNNFl6aFJlbmN3V1U5Tk1HVkdiVVpLTkc1VWFrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago COVIRAN MALAGON \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQza2R1LUlBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-01-25 01:25:52.343796+00 a year ago Henryk D \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4dmJqbGljR0pXVEdsemNUWklRbWcyV1VaTFdHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-06-29 01:25:52.343796+00 7 months ago Marcelo Agüero \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURYOHAtN3h3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Patricia Cuevas \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pGMVMzUllUbXh3WXpaMVVXeHhTMmd3VFhnNFQxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Thalia1999 \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNJNmJYc0hBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-04-30 01:25:52.343796+00 9 months ago Douwe Jong De \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIdkktRGlRRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-01-25 01:25:52.343796+00 a year ago joan carrion \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUM3NXVHWW93RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago JRF \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIbG8ydGNnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago antoni vidal \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSUQ3cU0zWGRREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago pedro Nuñez gracia \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURILTZHeGxnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Mark Schilhan \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURYdFpETmNREAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Fanny Del aguila \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT210d1FVbFBkVTVaTlVGeGJDMVZOVEpMV1Y5YVYwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago Joerg Hofmann \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xodWRqSkJOMVJ3VlVoalkwMXFUWE5JWkhac2FYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-27 01:25:52.343796+00 3 months ago Lucian Nistoroiu \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xCb1psbFhPVm8yVkhWT1MzWmpTV1JTTm1VM1JVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Marcel Gatt \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tabFRWTTJSVnBpUldWRE0wVnlhRlJXWDFCUFJYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago W/M de pelis \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT210bWJXb3RXRFpxYkRGR1lqbEtkWGcyU1hsME5YYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Edwin Chalarca \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tkVlRIRlZhMHQ2ZURObFpDMXJVVE5VZGxCaFJFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Ivan W \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2paWlNYQkJWVmd0TUROb09TMU1VbHA1TWtOaU1YYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Pablo Campos \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s5SlVHSmFiWEUwTjJGaWQxcGpVVU0wWkRaRFVXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-09-27 01:25:52.343796+00 4 months ago Denushan Sarveswaralingam \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xnd2JUaDJjbHBxVlVwQlQzaFBURTlWTUZKV09XYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Dan Feldmesser \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21weWMzRnhTMkZaY0RCU2MyWXpWMFZ0TVdKbGFHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Thair Alhroub \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xWeGRqbEdhMlZGUlhsbFNWQm9kVk5YWms5b1FVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-09-27 01:25:52.343796+00 4 months ago Julian Nevado \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25aMFVUQXpNVlJLUjNKRFRHbzNPVWR1VkVreFoyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-09-27 01:25:52.343796+00 4 months ago Luis Bailón Rodriguez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pJM1JqRnROUzFQVjNZME4xRnhUR28xYTBobGEwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Juanvill Juanvill \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25CalpHaDJlVnBzWldGQ1ZtdDFMVnA1WjIxeWFtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Miguel Ángel De Miguel Barril \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xSR2JtRkdVVkJtTURVNVFteGxjRjlxWjIxNVozYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Zied OUNISSI \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tWdlJYRklVVXBxUzI1UE5VVjBNMWxzUTNKdVdsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Thomas Lommatzsch \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25NM2FYZGlUbWh5WjJKVmNHNVJVRmxIVHpRNVUwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Cristiano Fernandes \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25WdVgySmpXV1pyU1doRE5UWjRkVUZ3WmxwUFVIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-08-28 01:25:52.343796+00 5 months ago Rabih Mekdachi \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2twbVVXaEhTRTlrVGpSWmRFVlRaM1Z6Wm5ONk9FRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Juan Gumiel \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tGRExXazNRVjk2V210c05ucHdRVFUwWkV3d1ZtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Marián Mokoš \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xWQmFEWnRXVmd6UlRseU55MUxhRFpLU0ZCME5XYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-08-28 01:25:52.343796+00 5 months ago Dios Creador \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21OUVVYQXRWRmQ2VnpCWk1sOTVTVmhDY0VSM1dsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-08-28 01:25:52.343796+00 5 months ago Antonio J Garcia Martínez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxNmEwMUpNV1ZJUTJKRFJYcFdOSEp4ZDJkUWVrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-07-29 01:25:52.343796+00 6 months ago Juanca Ramirez Mendez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21VNGExSlVaRFF3Wmtsbk5HczRVbVJ2ZFRWYVZYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-07-29 01:25:52.343796+00 6 months ago Rebaz Farman \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xoVE9HWnBiRGgwZERCaFRGSnhNR1JNWVhaSGExRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-07-29 01:25:52.343796+00 6 months ago Inma Canovas \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xaak4yMWxlVms0YzNSeE4wTkJRVFI2TjNodlRrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-07-29 01:25:52.343796+00 6 months ago Marta Rodriguez \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSUNuOG83bTd3RRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-01-25 01:25:52.343796+00 a year ago Tomáš Lu \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURIN3QtUExnEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Jesus Miguel Brtito Gutiérrez. \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIcXRpSjlnRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Tahereh Sss \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURIX09TQm1BRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Auger Berzosa Pratcorona \N 2026-01-31 18:46:53.730858+00 ChdDSUhNMG9nS0VJQ0FnSURid19mc3hBRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Isaac \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnSURic2QyUFpBEAE ClickRent Gran Canaria | Alquiler de Coches y Furgonetas a3813665-ea23-4fb0-aab7-b282ef9443e4 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-01-25 01:25:52.343796+00 a year ago Iulia Rauta \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-21 16:49:12.382088+00 3 days ago Paweł Wache \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21oWFZuZzRTMGxDVEVNMFlrSjZlVGx0VEZWQloxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-21 16:49:12.382088+00 3 days ago Katja Fenn \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-21 16:49:12.382088+00 3 days ago Claudia Di Benedetto \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-20 16:49:12.382088+00 4 days ago Cosmin Anghelache \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-20 16:49:12.382088+00 4 days ago Maximilian V \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-20 16:49:12.382088+00 4 days ago La auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-20 16:49:12.382088+00 4 days ago I Rak \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-20 16:49:12.382088+00 4 days ago Olaf Kaiser \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-20 16:49:12.382088+00 4 days ago Alejandro García Díaz \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-19 16:49:12.382088+00 5 days ago ALEJANDRO DDR \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwcFdHVmhaRVZUVTJkWFNHTnFOMVpwUldKV01sRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 \N 4 2026-01-18 16:49:12.382088+00 6 days ago Ca Mu \N 2026-01-31 18:46:55.602693+00 Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-18 16:49:12.382088+00 6 days ago Kurt Bahner \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Anna Sotke \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0WU9WWnJSalZaT0RCclVVcERSSEJDV0hwdWJVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Aldo Muscia \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2026-01-17 16:49:12.382088+00 a week ago Virginie SOULIER \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Henna Starla \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Sandra Hofmann auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2026-01-17 16:49:12.382088+00 a week ago Fernando MIGUEL MONTES \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Yudeisy Brito Paz \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25oaVozRlZVamRvY2pkSFJFSkllalJXWDIxMFFuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2026-01-17 16:49:12.382088+00 a week ago Braulio Gopar Quevedo \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pjM2VIWllkbFJLWVdsbFUzSm5aamxpV2tadFdrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 \N 5 2026-01-17 16:49:12.382088+00 a week ago Andreea Popa \N 2026-01-31 18:46:55.602693+00 Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Zivilek Kaubriene auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-17 16:49:12.382088+00 a week ago Karsten Knorr auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Susanne Frühling auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tSQ00xTk9XR2REVVd4WlRteHhOSEJ4WDFSSGFrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-17 16:49:12.382088+00 a week ago Arnold K \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-17 16:49:12.382088+00 a week ago Arnold K auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-17 16:49:12.382088+00 a week ago Eduardo Almeida \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Jarosław Dudek auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xrNFluWkZabFJtWDNKTVVVWjBRV1U0VWpaZlVIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-17 16:49:12.382088+00 a week ago Ghofran Alwan \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-10 16:49:12.382088+00 2 weeks ago Hannes Wolk \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Chill The Pill auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2026-01-10 16:49:12.382088+00 2 weeks ago José Ramón López \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Sebastian Ostermeyr \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-10 16:49:12.382088+00 2 weeks ago Niina Lumus \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-10 16:49:12.382088+00 2 weeks ago Antti Lumus auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Nancy Müller \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Aleaquilani Aquilani \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-10 16:49:12.382088+00 2 weeks ago Carlos Moreno \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Aaron \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-10 16:49:12.382088+00 2 weeks ago juliana santamaria \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Michał Kryński \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-10 16:49:12.382088+00 2 weeks ago Borja Basozabal \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21od09EQXdTVE4wVlhKd2NVbHRVMUE1TFZFMFZWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Belén Bustabad Fernández \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xrNE5uVTVVM0Z6TnpKemEwd3dVR3h1WWpWbE4zYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2026-01-10 16:49:12.382088+00 2 weeks ago BerndE \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pZdFozQlRNVkZPVXkxWWRYaE5jVVpFTUY5clYzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 Edited 2 weeks ago Csaba Pál \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25ZMGFHbzJTRkJvVFRGaFMxVTRXVlp5WTNkb2FFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 \N 5 2026-01-10 16:49:12.382088+00 2 weeks ago Rebecca Wilkinson \N 2026-01-31 18:46:55.602693+00 Ci9DQUlRQUNvZENodHljRjlvT25aTlh6azBVRVEzVm5SeVNFSlpkMVk0ZDBKU1kwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-10 16:49:12.382088+00 2 weeks ago Virginie Clerc \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Danuta Fi \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21odVgwWldjamhtY1dSR0xXSnBjVEJUUkdodE5HYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2026-01-03 16:49:12.382088+00 3 weeks ago qilu zhang \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Marcos Cabrera \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Jay Jay \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Stefan Delil \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Gerda Grinkeviciute auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Dorotea Cinquino \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Paula Urrea \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4d1NGVkdURjlHWkRnNVRESmpWbloyU1dkdFJrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Сергій Василенко \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xwb1MzUTFSbmhJYkdOaFlrMVNNRE5QYjNvdFJrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Michael Petruch \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21KYWJHWnZjVEV3T1hCaE1XTkJiWGR4WVZwRE1FRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Lluís Llinàs \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2026-01-03 16:49:12.382088+00 3 weeks ago Michel Berni \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Kareem Jano auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWWFVHeHhNbWxpTW1SVVJFNVZSa3hLWlVaRFEwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Maik Krüger \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Manu gaigier \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Benjamin Barbaud \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Birgit R \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Erik Schobesberger auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Attila H auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25WbVYxbG1NeTFsVUV0SlIxbFNWak16Wld0MU5HYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Tiago Alves \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Robert Parrish auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 2 2026-01-03 16:49:12.382088+00 3 weeks ago Rick Westerink \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Guilherme Cavalcante auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25Ka1oyMUpaM1ZhWjNCdFpFRjZMWGxQVW1WT1JVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Alaa Kharboutli \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Сергей Круть \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 Edited 3 weeks ago Oleksii Vyacheslavovich auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Alexander Reimchen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago andy armitage auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago ismael iñigo costoso \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Julianne Markussen auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2026-01-03 16:49:12.382088+00 3 weeks ago Gusnadi Wiyoga auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Dejan Bileski - BD Media Bonn auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Heike Franke \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Oleksandr Velychko \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago SIMONE MUSELLA \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxb05qWk5SVE5IVTIxMGNYQldXREpuT1VNMWNFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Kalle Tasch \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2026-01-03 16:49:12.382088+00 3 weeks ago Mimiko \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-27 16:49:12.382088+00 4 weeks ago Alexis Vega \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-27 16:49:12.382088+00 4 weeks ago Dávid Kuhl \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-12-27 16:49:12.382088+00 4 weeks ago Robert Hartmannsberger \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-27 16:49:12.382088+00 4 weeks ago Nino Amoruso \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-27 16:49:12.382088+00 4 weeks ago Dustin \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25SVFIzaFJkRVJwTFZaNk56QmpSWGh6U21aMmFGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-27 16:49:12.382088+00 4 weeks ago Владимир Шапецкий \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Aya ElAttar auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pkclJEQklibk5vVnpaSGQwY3hXV0ZXYzJKNVNIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Adnan Cetinkaya \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Alexis Vega Sosa \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-12-25 16:49:12.382088+00 a month ago piero \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Alexandra R.R. \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Andrea Seipel \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Namık Akkılıç auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xFeVJFNDBiMkpUZWtSNVUzUmtYMmxRUW01WmFHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-12-25 16:49:12.382088+00 a month ago Magalie Sire \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-12-25 16:49:12.382088+00 a month ago adam sheikh auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Llŷr auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Danny van der Ven auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Martyna Wilk-Nowicka auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-10-26 16:49:12.382088+00 3 months ago Bart v Haren auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xaVU4yTjRkWGs0VFhWcWNWa3pka1ZoWlV0NmJGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 \N 5 2025-12-25 16:49:12.382088+00 a month ago Vural Aybar \N 2026-01-31 18:46:55.602693+00 Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-12-25 16:49:12.382088+00 a month ago wim en anneke auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Nick Schäfer \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago HabdamalneFrage!? \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-12-25 16:49:12.382088+00 a month ago Siffbude \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Pedroluis Santana \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Tuomas Nirvi auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Florian Reisig \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago David A. Brandt Klug auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0U2VVVlNZaTEwZFRKbmVIZDVaMVppY21rME1XYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Iris Stoffregen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-12-25 16:49:12.382088+00 a month ago Shai Goorevitch auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Fanny Guamán Landívar \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s5VlYyZHpVRnBzYjAwNGVreDJPRmMyZDBKU2IxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Angelo Mendes \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWclFVRkhVblE0YldsTGJsSmFlbWhpTVhSbFVHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Nelson Carvalho \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tWMGJHNW5VMGg0VFVvMVJ6TXhWRWRRU1hGVWRXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Joao Goncalves \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25Sd1ZsbFVRa2hUUmtoa2MxVk1Na3R2YjBObGVYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago João Miranda \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-12-25 16:49:12.382088+00 a month ago Makwakkwak Mak \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-12-25 16:49:12.382088+00 a month ago Hervé COESSIN de la FOSSE \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Alberto goñi \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Kjetil Grytbakk \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Kiko Gonzalez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Leire ballesta mendioroz \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Beñat De Carlos Iparragirre \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Judith Class \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago SZNUTER \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Louise Anderson auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0bE1IUkhXa294Vm01MWQzUTVXV2hqVTFWdGVVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Elena Veleva \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-12-25 16:49:12.382088+00 a month ago Karin L. \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Roberto Pérez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25CNVJrTXdXa0ZwU2xKRlRXbFdkV3BLTW5kNWVHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 2 2025-12-25 16:49:12.382088+00 a month ago Camille Strauch \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Mercedes Rein- Loring \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-12-25 16:49:12.382088+00 a month ago Jazmin Be \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Sergio Ruiz Galián \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Frank M \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Cristina del Carmen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Alexander John \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Javier Mo Montero \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago kasia dabrowska auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Einar Dahlen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-12-25 16:49:12.382088+00 a month ago Raquel Saavedra Benitez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-12-25 16:49:12.382088+00 a month ago Ollipower 1963 w \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25SSGNtUndlRGt4Y2tKcFMyWnFMV3B5V25aQmEzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-11-25 16:49:12.382088+00 2 months ago Lander Urrutia Muruaga \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Rol And \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Alexis González \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Andrea González \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Tom Hinten \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Raf iosi auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Kurt Bimsberger \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Michael Schäfer \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Lucia Cojocaru auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Guillaume Laboudigue \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Joanna Lewandowska auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Leonard Mana auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Adrianna Kluge auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago KayS auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Honorata Wieczorek auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Damian Wieczorek auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Rom An \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Wolfgang Stange \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Ferhat \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago NAVARRO BATISTA: BERNARDO \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Alayn G.O \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Randy Beaumont auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xSRmNGbDZiMEZPWHkxbVppMWpObU5tWWprMVpuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-11-25 16:49:12.382088+00 2 months ago Lena K \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25VNVNGRndaRjg0ZVhoa1QzaFpXazAzUTJFeWNIYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Luis Ventosa Castro \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psQlJreFdOeTF6TFV0bVkyWnFjblpYU2toM01XYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Patryk Biernat \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago maria Viñolas Salustiano \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT20xaVFUWmphakZOYkZKVlowUmtYekJKVVhKNWVXYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Maximilian Korzekwa \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Patrizia Schulte \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Belinda F. \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT200d2ExVk9hbWR6Tld4UlMwOVdjbkJMWTJreGNVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Mónika Ács \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago rafael garces enamorado \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21waVNFMVZWRmhwTURocllWVmhUa2w1VW10bGNtYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-11-25 16:49:12.382088+00 2 months ago Mariana david Mrn \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 3 2025-11-25 16:49:12.382088+00 2 months ago Meeli Tali-Aruväli \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Fynn Hüttersen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Aurelie Ottolini \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago chiarita reyes \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago francois francois \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago DJ Dan \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago lei zhang \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago jenny wei auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-11-25 16:49:12.382088+00 2 months ago Sandra Ballesteros \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tsT2RYbFhRbUZYY0d4NFYzbE5ZV2xLVTB0amRsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago el ju \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Guglielmo Cattaneo \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Wierd auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Xavi Ordoñez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Wolf Hernalsteen \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Felipe Juan Padilla Pires \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Salvatore Altieri \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Miguel \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25wWWJWSlJVSGh0Y0hsa1ZHTmlTamRTT0d0VGJYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Patrice Bravard \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25wRVRFOVVSSEYwVEdaS05uQkhUVFo0TkRaNExYYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Paula Rodriguez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Iliass Bololo \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Didac Poveda \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Javier Pereiro \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25NMVMwb3paazVVVEVkc01tMWxNemxYV1ZKUFdsRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Mihai Noana \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21oekxWTm5TaTFWTUZaS05HVm9TbGRRZGxKVVNuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Christian Huber \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Alvaro Ubeda Sanchez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago Paz Alvarez \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Martijn Wieringa auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Mimi \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Casa Doranda \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 4 2025-10-26 16:49:12.382088+00 3 months ago Josef Spieler \N 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 1 2025-10-26 16:49:12.382088+00 3 months ago Darren Hastings auto 2026-01-31 18:46:53.730858+00 Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB ClickRent Gran Canaria | Alquiler de Coches y Furgonetas 901fc70c-9775-470b-bb25-13c3e2770325 07c01d3a-3443-4031-910c-7b6feba2c100 5 2025-10-26 16:49:12.382088+00 3 months ago MrHajoge \N 2026-01-31 18:46:53.730858+00 ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-03-30 16:42:20.988499+00 10 months ago Liz Scarbro en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-04-29 16:42:20.988499+00 9 months ago Jo Lo en 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-09-26 16:42:20.988499+00 4 months ago becky fenton-ree en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-05-29 16:42:20.988499+00 8 months ago BetiK en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-02-28 16:42:20.988499+00 11 months ago jakub Giemza en 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-07-28 16:42:20.988499+00 6 months ago Ricki Dunning en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-04-29 16:42:20.988499+00 9 months ago Rev Dr Val Ogden en 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-09-26 16:42:20.988499+00 4 months ago Tatjana Kirilova en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-02-28 16:42:20.988499+00 11 months ago Holly Wilson en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-01-24 16:42:20.988499+00 a year ago kristaps piesis en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-01-24 16:42:20.988499+00 a year ago Kenzie Nuttell en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-03-30 16:42:20.988499+00 10 months ago Sonia Maximilian en 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4 2025-11-25 16:42:20.988499+00 2 months ago Agnes Emsina en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-02-28 16:42:20.988499+00 11 months ago Katie Hazelden en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-02-28 16:42:20.988499+00 11 months ago Adrian Mickevic en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-02-28 16:42:20.988499+00 11 months ago Irina Svinarova en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-03-30 16:42:20.988499+00 10 months ago Tommy Leigh en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-03-30 16:42:20.988499+00 10 months ago Wiktor Komar en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-03-30 16:42:20.988499+00 10 months ago Gytis Zubrickas en 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-03-30 16:42:20.988499+00 10 months ago Nikos radev en 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 4 2026-01-17 16:42:20.988499+00 a week ago Silly fisheee en 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-06-28 16:42:20.988499+00 7 months ago саида абдуллаева ru 2026-01-31 18:46:55.644779+00 ChZDSUhNMG9nS0VLcVBvSmFWbU1Yb2VREAE Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-05-29 16:42:20.988499+00 8 months ago Bartlomiej Szczurek unknown 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2kxd05VOUxTWFl4YW5KUGMyWjFaalV4Y2xSRGVIYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 3 2025-10-26 16:42:20.988499+00 3 months ago Anetta Kdr unknown 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT2pOVmQzTjJkVVo2WmtkaGRtNXlSRkpKV1dkak9IYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-08-27 16:42:20.988499+00 5 months ago John Douglas unknown 2026-01-31 18:46:55.644779+00 Ci9DQUlRQUNvZENodHljRjlvT25KT2VUZzNORzl2VUdkTVNreHFWVzgxYkRoTGJIYxAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-08-27 16:42:20.988499+00 5 months ago Andrei Henciuta unknown 2026-01-31 18:46:55.644779+00 ChdDSUhNMG9nS0VOR0RzLXUzd3Qyd3JBRRAB Fika acb2e9f2-5951-476b-a5a5-71cf81009e6f dc1f090b-61f5-4bb2-a9ad-c76ecbb0cd82 5 2025-06-28 16:42:20.988499+00 7 months ago Vali constantin unknown 2026-01-31 18:46:55.644779+00 \. -- -- Data for Name: review_spans; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.review_spans (id, span_id, business_id, place_id, source, review_id, review_version, span_index, span_text, span_start, span_end, profile, urt_primary, urt_secondary, valence, intensity, comparative, specificity, actionability, temporal, evidence, entity, entity_type, entity_normalized, relation_type, related_span_id, causal_chain, is_primary, is_active, review_time, confidence, usn, taxonomy_version, model_version, ingest_batch_id, created_at, job_id, urt_path) FROM stdin; 2444 SPN-8ce22343243fe454 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE 1 0 Nos a gustado mucho el sitio. Era la primera vez . Mi hijo de 8 se montó por primera vez y salió super contento . 0 113 standard O4.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O4.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.128979+00 22c747a6-b913-4ae4-82bc-14b4195008b6 \N 3812 SPN-462245f6aa4b21f9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM4aHFlVDFBRRAB 1 0 El mejor karting para correr y pasar un tiempo espectacular!!! 0 62 standard V4.01 {O1.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.834684+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3815 SPN-851a00917b9671dc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB 1 0 Buena atención 0 14 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.855237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3816 SPN-abd27bb1c32ccd92 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB 1 1 buena pista pa motos 18 38 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.867176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3818 SPN-34c1ccc655c9f357 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIbWVhMFh3EAE 1 0 Fantastische kartbaan ik zeg doen 0 33 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.885121+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3819 SPN-a6d8e834b9a888ec Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhemV6YzRRRRAB 1 0 Espectacular, trato, circuito. De 10 0 36 standard V4.03 {P1.01,O2.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+P1.01+O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.886772+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3822 SPN-d289e50e75b78154 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMweV83LXRRRRAB 1 0 nunca había estado en un karts. me ha encantado 0 48 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.9188+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 70 SPN-f5cd1df50eba0060 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB 1 0 Great coffee. 0 13 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-04-29 23:35:50.73221+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:32.534562+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 135 SPN-ea6e72b54b1fe268 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 0 Amazing place for a coffee and a sweet treat! 0 42 standard O1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-02-28 23:45:06.591819+00 high URT:S:O1.03:+3:11TC.ES.N v5.1 gpt-4o-mini 2bfd798f 2026-01-24 23:46:27.732399+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_03 136 SPN-d3738de6a76a9711 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 1 Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte! 43 109 standard E1.02 {A1.02,O1.02} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-02-28 23:45:06.591819+00 high URT:S:E1.02+O1.02+A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 2bfd798f 2026-01-24 23:46:27.824872+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_02 137 SPN-4e09a726a39368e3 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 2 A big plus is the Garden, a hidden gem where you can unwind in peace. 110 164 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:45:06.591819+00 high URT:S:E1.03:+2:22TC.ES.N v5.1 gpt-4o-mini 2bfd798f 2026-01-24 23:46:27.832204+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_03 93 SPN-52c30b37011d4e16 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE 1 1 The coffee was very tasty and pancakes too. 55 88 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732236+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:58.294771+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_02 195 SPN-6efb0a7869012caa Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 2 We got a tiramisu to takeaway which was equally good. 93 134 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-28 23:53:02.757587+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6d0ae075 2026-01-24 23:54:19.976994+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 243 SPN-1d27f317527163b7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 2 On arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. We didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders. 466 685 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340047+00 high URT:S:O1.02:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:58.469407+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 350 SPN-2fd349fe0ec0098d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB 1 0 Navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local. 0 78 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-25 01:27:48.342082+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:35.09461+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 351 SPN-b4769e821303ba7e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB 1 1 impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti quand le vol est à 9h. 79 164 standard J1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.342082+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:35.098155+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 352 SPN-e31a7efa6fb962b1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB 1 2 Voiture neuve et en bon état. 165 192 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.342082+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:35.101828+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 252 SPN-cb0acf44d4bb07da ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 0 There is one mini bus that will take you from and to the airport. 0 66 standard A4.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340081+00 high URT:S:J1.01:0:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:36.467411+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 3201 SPN-232cf9ff7c6a5be8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE 1 0 buena atención 0 14 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:18.497414+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3202 SPN-c4ce6d5467e3e589 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE 1 1 mi hijo disfruto mucho de los Karts 17 52 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:18.502117+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 250 SPN-1236a73ce21c2b5e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB 1 1 Some of the cheapest prices for rental cars I found on GC. 104 144 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-18 01:27:48.340068+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:25.372098+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1 SPN-4248f5c04cd2 test-business-a1d6f9fb test-place-a1d6f9fb google test-review-0b5f8f89 1 0 food was absolutely terrible 4 32 standard O1.01 {} V- I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-15 14:30:00+00 high google:test-review-0b5f8f89:1:0 v5.1 mocked-gpt-4o-mini batch-a1d6f9fb 2026-01-24 18:26:58.311416+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 2 SPN-a346d4044a41 test-business-a1d6f9fb test-place-a1d6f9fb google test-review-0b5f8f89 1 1 waited 45 minutes 38 55 standard J1.01 {} V- I2 CR-N \N \N \N \N \N \N \N \N \N \N f t 2026-01-15 14:30:00+00 high google:test-review-0b5f8f89:1:1 v5.1 mocked-gpt-4o-mini batch-a1d6f9fb 2026-01-24 18:26:58.330336+00 8bd29859-482d-4e52-a026-3c30432e7cc5 J.J1.J1_01 3 SPN-a44e98aa9ca9 test-business-a1d6f9fb test-place-a1d6f9fb google test-review-22e6d3da 1 0 steak was cooked to perfection 22 52 standard O1.01 {} V+ I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-18 19:00:00+00 high google:test-review-22e6d3da:1:0 v5.1 mocked-gpt-4o-mini batch-a1d6f9fb 2026-01-24 18:26:58.338168+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 4 SPN-2478ac72d898 test-business-a1d6f9fb test-place-a1d6f9fb google test-review-c74308b7 1 0 Average food, nothing special 0 29 standard O1.01 {} V0 I1 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-20 12:00:00+00 high google:test-review-c74308b7:1:0 v5.1 mocked-gpt-4o-mini batch-a1d6f9fb 2026-01-24 18:26:58.347328+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 253 SPN-dc9d0699e1929da2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 1 We waited 50min for one. 66 88 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-12-26 01:27:48.340081+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:36.469125+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 353 SPN-e6cbf7f2db649732 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB 1 0 Fatal experiencia. Por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hicieron un examen microscópico digno de investigación CSI de todo el coche hasta que encontraron dos pequeños daños, uno pude demostrar en el momento que no me correspondía por fotos que hice previamente. El otro en el momento no pude por las prisas por no perder mi vuelo; un punto en la luna por el que me cargaron 800€. Luego he contactado nuevamente mostrando evidencia de este daño en las fotos que hice al recoger el vehículo pero no responden. 0 486 standard V1.03 {O1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2026-01-25 01:27:48.341586+00 high URT:S:J1.03:-3:33TC.ES.N+O1.02 v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:51.222102+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 79 SPN-5e90f5b2c3fb6bd8 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE 1 2 The coffee was delicious, and the staff were extremely friendly and welcoming. 110 174 standard O1.01 {A1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-05-29 23:35:50.732218+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:56.463831+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 193 SPN-a143816f4da219bb Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 0 Shopped off here for a very late breakfast and was really good. 0 61 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-28 23:53:02.757587+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6d0ae075 2026-01-24 23:54:19.974431+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 194 SPN-958b2489616fb75a Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 1 Great food and coffee and quite cheap too. 62 92 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-28 23:53:02.757587+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6d0ae075 2026-01-24 23:54:19.975691+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 95 SPN-6c09a994b3e778ca Fika unknown google ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE 1 0 This local coffee shop offers a cozy, personalized experience around town. 0 66 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-24 23:35:50.732238+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:10.777424+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 251 SPN-f133b34e5657f0a6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB 1 2 Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times and return was also very unproblematic and quick. 145 263 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.340068+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:25.372803+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 361 SPN-0bcb3d1891e2c805 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB 1 3 So if you want to avoid headache - stay away from it. 198 233 standard R1.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.340202+00 high URT:S:R1.01:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:20.797511+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 362 SPN-cdf14b4e0b996ff1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB 1 0 Quick service, friendly staff 0 30 standard P1.01 {J1.01} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2026-01-24 01:27:48.340786+00 high URT:S:A1.01+J1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:33.830831+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 357 SPN-7d93738692f37568 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE 1 1 Das Auto neu und in einem TOP-Zustand. Die Rückgabe lief superschnell und der Shuttle vom und zum Flughafen war schnell, der Fahrer ebenfalls superfreundlich. 140 290 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.341406+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:03.351294+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 363 SPN-aeb9f1c39aa622c7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB 1 1 definitely I will use Click Rental in the future! 30 66 standard R1.01 {} V+ I2 CR-N S1 A1 TF ES Click Rental brand click rental future use \N \N f t 2026-01-24 01:27:48.340786+00 high URT:S:R1.01:+2:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:33.83334+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1792 SPN-865ee6dd018e2b49 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE 1 0 The space is great and the atmosphere is welcoming. 0 56 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-30 18:34:31.336452+00 high URT:S:E1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:06.986234+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 365 SPN-f2aa49e00e65562d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB 1 1 Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. 408 516 standard A1.02 {} V0 I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2026-01-22 01:27:48.343146+00 high URT:S:A1.02:+0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:49.536693+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 1793 SPN-2f006e3f6095f4c0 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE 1 1 We also got outstanding service from the bartender! 57 97 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-30 18:34:31.336452+00 high URT:S:P1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:06.987836+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 356 SPN-1399086c4fe521ee ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE 1 0 Superfreundlich, schnell und unkompliziert. Das Büro in mehreren Sprachen flexibel. Carlos hat's prima gemacht, Kompliment! 0 139 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Carlos staff carlos \N \N \N t t 2026-01-25 01:27:48.341406+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:03.347288+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 364 SPN-53c6fe547d0c87a0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB 1 0 Samochód wydano jako „bez uszkodzeń” Zdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. Po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu. Pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. 0 408 standard R1.01 {O1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2026-01-22 01:27:48.343146+00 high URT:S:J1.02+O1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:49.535832+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 355 SPN-80f52ba97c46c053 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB 1 2 Viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. Si no añades el seguro opcional que ellos te venden te querrán hacer pagar por daños que no te corresponden. 587 688 standard R1.01 {} V- I3 CR-N S2 A3 TR ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.341586+00 high URT:S:R1.02:-3:22TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:51.226524+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 354 SPN-940b8a4f29955dc2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB 1 1 Solo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tienen son falsas reviews positivas (es fácil hacerlo..pregunta a alguien que trabaje en Marketing). 487 586 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.341586+00 high URT:S:V1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:51.2241+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1426 SPN-e0f6b3fc5abc5823 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 1 we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. 267 426 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:R1.01:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:37:51.68757+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 500 SPN-422cd7091ef776d5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 1 Had 200€ deposit taken upon delivery and unlocked upon return. Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :) 103 218 standard V1.01 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340094+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:58.263001+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 598 SPN-7c27d1c2f928da00 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 2 We got a car and as we were driving down to Puerto rico the car electrics went down twice on the motorway. We recorded a video and safely got to the place but called them numerous times as wanted to swap the car. They do not provide replacement services so we had to guess....drive back!!!! Yes, we drove a faulty car back to be able to get a new one. They seemed to know nothing about it despite my 100calls about the issue. 426 685 standard O1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340081+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:37.201397+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 369 SPN-aaa663977814edc9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB 1 2 Der Transfer zur Mietstation dauerte nur ca. 10 Minuten. Die Fahrzeugführer und - Rückgabe ging auch sehr schnell. Sie dauerte nur ein paar Minuten, eben so lange wie man für den Papierkram braucht. 366 516 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-21 01:27:48.343161+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:05.878815+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 373 SPN-9ea99725aece8ac2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB 1 0 è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... 0 307 standard J1.02 {O1.03} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2026-01-21 01:27:48.343156+00 high URT:S:J1.02+O1.03:+2:22TH.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:33.631443+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 374 SPN-ee1f980c5f4b2f80 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB 1 0 Alles gut abgelaufen, danke! 0 29 standard J1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-21 01:27:48.342901+00 high URT:S:J1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:37.508133+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 378 SPN-3358cf5b54003eed ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB 1 1 Un coche muy nuevo!! 100% recomendable!! 74 103 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-20 01:27:48.343167+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:55.641192+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 377 SPN-63d44b05bdcecadd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB 1 0 Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!! 0 73 standard J1.01 {} V+ I3 CR-N S2 A1 TC ES Valentina staff valentina \N \N \N t t 2026-01-20 01:27:48.343167+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:55.640303+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 367 SPN-72888b6d04e49858 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB 1 0 Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 100% in Ordnung. 0 134 standard O2.05 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-21 01:27:48.343161+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:05.853332+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O2.O2_05 371 SPN-976ab1ebca9070fe ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB 1 1 Wir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz. Keine Erklärung, keine Transparenz, kein Entgegenkommen – nur das starre Festhalten an einem völlig überzogenen Preis. 486 617 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-21 01:27:48.343159+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:27.665397+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 375 SPN-99c3e92543f53729 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB 1 0 Nice experience with great people , very nice and new cars !!! 0 61 standard P1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-21 01:27:48.340788+00 high URT:S:E1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:42.666374+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 368 SPN-a22554cc2462a1b0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB 1 1 Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (nationaler Terminal). Kommt man im Terminal 1 (internationaler Terminal) an, muss man auch nach rechts, aber ganz zum Ende vom Terminal 1 gehen. (ca. 300 m) Ein Schild 'Meetingpoint' haben wir trotzdem nicht gesehen. 134 366 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-21 01:27:48.343161+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:05.87628+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 372 SPN-aa3d37717165be21 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB 1 2 Der Eindruck entsteht unweigerlich, dass hier bewusst Druck aufgebaut wird, um Kunden vor Ort zu überrumpeln und zu teuren Zusatzkosten zu zwingen. Wer nicht mitspielt, verliert Zeit, Nerven – oder geht, so wie wir. Nach erheblichem Zeitverlust und einer maximal unangenehmen Abholung haben wir den Mietwagen konsequent abgelehnt. Und ganz ehrlich: Das war die einzig richtige Entscheidung. Fazit: Dieses Verhalten hat nichts mit kundenorientiertem Service zu tun. Wer Transparenz, Fairness und einen respektvollen Umgang erwartet, sollte diesen Anbieter meiden. So gewinnt man keine Kunden – so verliert man sie. 617 1035 standard V1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-21 01:27:48.343159+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:27.66801+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 379 SPN-e99ce51306264a81 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB 1 0 El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. 0 139 standard A1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-20 01:27:48.340859+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:10.669827+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1434 SPN-36b4a03b8170d3f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 2 The car was completely new - 1900km only! Everything worked perfectly and smoothly. 79 139 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:25:52.343796+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:19.633467+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 382 SPN-b4404d1205078285 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB 1 3 En general ha sido buena experiencia. 427 457 standard R1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-20 01:27:48.340859+00 high URT:S:R1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:10.672015+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 67 SPN-f6b2f85aea73cf65 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE 1 0 I lovely place to relax & enjoy a soft drink & freshly prepared food to order. 0 78 standard O1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-30 23:35:50.732046+00 high URT:S:O1.03:+3:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:16.785095+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_03 68 SPN-a36f25f85520c5d0 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE 1 1 Worth the few minutes wait. 79 103 standard J1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-30 23:35:50.732046+00 high URT:S:J1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:16.788497+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f J.J1.J1_01 69 SPN-37604a901501e5d9 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE 1 2 Always a lovely greeting by lovely staff. 104 136 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-30 23:35:50.732046+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:16.789625+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 5 SPN-c3302bf4b3d9 test-business-56bf5298 test-place-56bf5298 google test-review-6d959dcd 1 0 food was absolutely terrible 4 32 standard O1.01 {} V- I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-15 14:30:00+00 high google:test-review-6d959dcd:1:0 v5.1 mocked-gpt-4o-mini batch-56bf5298 2026-01-24 18:27:16.860205+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 6 SPN-0dcab21ec014 test-business-56bf5298 test-place-56bf5298 google test-review-6d959dcd 1 1 waited 45 minutes 38 55 standard J1.01 {} V- I2 CR-N \N \N \N \N \N \N \N \N \N \N f t 2026-01-15 14:30:00+00 high google:test-review-6d959dcd:1:1 v5.1 mocked-gpt-4o-mini batch-56bf5298 2026-01-24 18:27:16.863319+00 8bd29859-482d-4e52-a026-3c30432e7cc5 J.J1.J1_01 7 SPN-4f95adb06b7d test-business-56bf5298 test-place-56bf5298 google test-review-f193e227 1 0 steak was cooked to perfection 22 52 standard O1.01 {} V+ I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-18 19:00:00+00 high google:test-review-f193e227:1:0 v5.1 mocked-gpt-4o-mini batch-56bf5298 2026-01-24 18:27:16.866679+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 8 SPN-5bb8c6bdc282 test-business-56bf5298 test-place-56bf5298 google test-review-1287c8f3 1 0 Average food, nothing special 0 29 standard O1.01 {} V0 I1 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-20 12:00:00+00 high google:test-review-1287c8f3:1:0 v5.1 mocked-gpt-4o-mini batch-56bf5298 2026-01-24 18:27:16.870721+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 9 SPN-0ed2638990f2 test-business-d8c3476f test-place-d8c3476f google test-review-b063df39 1 0 food was absolutely terrible 4 32 standard O1.01 {} V- I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-15 14:30:00+00 high google:test-review-b063df39:1:0 v5.1 mocked-gpt-4o-mini batch-d8c3476f 2026-01-24 18:27:47.747141+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 10 SPN-5af47728377a test-business-d8c3476f test-place-d8c3476f google test-review-b063df39 1 1 waited 45 minutes 38 55 standard J1.01 {} V- I2 CR-N \N \N \N \N \N \N \N \N \N \N f t 2026-01-15 14:30:00+00 high google:test-review-b063df39:1:1 v5.1 mocked-gpt-4o-mini batch-d8c3476f 2026-01-24 18:27:47.761832+00 8bd29859-482d-4e52-a026-3c30432e7cc5 J.J1.J1_01 11 SPN-bae47b55aeaf test-business-d8c3476f test-place-d8c3476f google test-review-adce42df 1 0 steak was cooked to perfection 22 52 standard O1.01 {} V+ I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-18 19:00:00+00 high google:test-review-adce42df:1:0 v5.1 mocked-gpt-4o-mini batch-d8c3476f 2026-01-24 18:27:47.790489+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 12 SPN-e1c9726ce6cf test-business-d8c3476f test-place-d8c3476f google test-review-23919f56 1 0 Average food, nothing special 0 29 standard O1.01 {} V0 I1 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-20 12:00:00+00 high google:test-review-23919f56:1:0 v5.1 mocked-gpt-4o-mini batch-d8c3476f 2026-01-24 18:27:48.020497+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 13 SPN-78e0c7bccc85 test-business-ca8fef85 test-place-ca8fef85 google test-review-58dfba96 1 0 food was absolutely terrible 4 32 standard O1.01 {} V- I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-15 14:30:00+00 high google:test-review-58dfba96:1:0 v5.1 mocked-gpt-4o-mini batch-ca8fef85 2026-01-24 18:27:59.119864+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 14 SPN-7031a752d9f2 test-business-ca8fef85 test-place-ca8fef85 google test-review-58dfba96 1 1 waited 45 minutes 38 55 standard J1.01 {} V- I2 CR-N \N \N \N \N \N \N \N \N \N \N f t 2026-01-15 14:30:00+00 high google:test-review-58dfba96:1:1 v5.1 mocked-gpt-4o-mini batch-ca8fef85 2026-01-24 18:27:59.125972+00 8bd29859-482d-4e52-a026-3c30432e7cc5 J.J1.J1_01 15 SPN-d0588945ce94 test-business-ca8fef85 test-place-ca8fef85 google test-review-face2761 1 0 steak was cooked to perfection 22 52 standard O1.01 {} V+ I3 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-18 19:00:00+00 high google:test-review-face2761:1:0 v5.1 mocked-gpt-4o-mini batch-ca8fef85 2026-01-24 18:27:59.129792+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 16 SPN-f13d3e46f0d3 test-business-ca8fef85 test-place-ca8fef85 google test-review-95de34a9 1 0 Average food, nothing special 0 29 standard O1.01 {} V0 I1 CR-N \N \N \N \N \N \N \N \N \N \N t t 2026-01-20 12:00:00+00 high google:test-review-95de34a9:1:0 v5.1 mocked-gpt-4o-mini batch-ca8fef85 2026-01-24 18:27:59.133615+00 8bd29859-482d-4e52-a026-3c30432e7cc5 O.O1.O1_01 385 SPN-b8dc6de92671101d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB 1 2 Fahrer war jeweils sehr freundlich und hilfsbereit. 290 330 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-19 01:27:48.343174+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:23.178375+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 381 SPN-e5c1e2c9ead49464 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB 1 2 Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. 308 426 standard P3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-20 01:27:48.340859+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:10.671377+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 380 SPN-f877f02dc3990312 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB 1 1 La entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. 140 307 standard J1.01 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-20 01:27:48.340859+00 high URT:S:J1.02:±2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:10.670729+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 386 SPN-f7f76f08e91722f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB 1 0 Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan. 0 85 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.343194+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:34.030292+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1435 SPN-608ce60438d4c6d8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 3 Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :) 140 241 standard V1.03 {V1.01} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-04 01:25:52.343796+00 high URT:S:P1.01+V1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:19.634154+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 80 SPN-62547c72a9aff8db Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 0 Amazing place for a coffee and a sweet treat! Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte! 0 139 standard O1.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-02-28 23:35:50.732223+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:09.273201+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_03 81 SPN-6a3d0bd2598e0586 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 1 A big plus is the Garden, a hidden gem where you can unwind in peace. 140 194 standard E1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732223+00 high URT:S:E1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:09.273871+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_02 82 SPN-8ac3d85cf6576d87 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 2 If you haven’t been there yet, you’re missing out! 195 233 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732223+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:09.274249+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f R.R1.R1_01 72 SPN-7b28d66421491600 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB 1 2 Friendly attentive service. 52 76 standard A1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-04-29 23:35:50.73221+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:32.53628+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 73 SPN-98be8f0c84d96afe Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB 1 3 Lovely little garden, sheltered and a suntrap. 78 118 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-29 23:35:50.73221+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:32.537139+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 74 SPN-31f3bbfca0a475a3 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB 1 0 the coffee is excellent 15 36 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-26 23:35:50.732215+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:44.863708+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 75 SPN-b8e3b3a4997cfe3a Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB 1 1 the staff are very friendly 38 64 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-26 23:35:50.732215+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:44.865579+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 76 SPN-ce2b2f2b10584237 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB 1 2 the GF options are fantastic 66 95 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-26 23:35:50.732215+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:44.868228+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_02 77 SPN-9c58ca7de4b1d95c Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE 1 0 Such a lovely café with beautiful decor and fair prices. 0 56 standard E1.01 {P1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-29 23:35:50.732218+00 high URT:S:E1.01:+2:21TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:56.457302+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 78 SPN-5340f7164c88283c Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE 1 1 The igloo garden is a fantastic idea – warm and cozy even on a chilly day. 57 109 standard E1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-05-29 23:35:50.732218+00 high URT:S:E1.02:+3:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:56.461506+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_02 86 SPN-8f4eb51b6d90b0dd Fika unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB 1 0 Such a lovely new cafe on historic Red Lion St just opposite Centenary Methodist Church. 0 83 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-29 23:35:50.732229+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:33.619067+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 87 SPN-d1d0b31950d9e101 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB 1 1 The outside area, under cover, very peaceful and sunny - well, today at least. 84 134 standard E1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-29 23:35:50.732229+00 high URT:S:E1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:33.619954+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_02 83 SPN-af858c2caaaa3dc1 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 0 Great food and coffee 30 50 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-28 23:35:50.732226+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:21.427578+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 85 SPN-c0dae11f2e4451ea Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 2 which was equally good 67 90 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-28 23:35:50.732226+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:21.428597+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 88 SPN-71140b08d9a7e901 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB 1 2 Great coffee. 135 147 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-04-29 23:35:50.732229+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:33.620909+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 89 SPN-a048dd5666d3ef23 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB 1 0 Nice coffee, very tasty cheesecake 😋 0 34 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-26 23:35:50.732232+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:46.588474+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 90 SPN-c91c14f8345e1449 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB 1 1 excellent service 36 53 standard A1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-26 23:35:50.732232+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:46.589337+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 91 SPN-ab43a599c09c1e83 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB 1 2 I recommend this place 👌 ♥️ 55 82 standard R1.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-09-26 23:35:50.732232+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:46.58984+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f R.R1.R1_01 92 SPN-d397e0ef5a2cb459 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE 1 0 This is a cute cosy cafe away from the town noise. 0 54 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-02-28 23:35:50.732236+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:58.292806+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 71 SPN-12c7f22d6c8a40b7 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB 1 1 Fresh baguettes with filling bursting out. 15 50 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-29 23:35:50.73221+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:36:32.535777+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_02 1736 SPN-e1f75d144e40a34f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE 1 2 If you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. It won’t be super easy but you will get some great connections there for sure :) 348 487 standard P1.01 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:45.111542+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 96 SPN-f69aa59ca3ea125c Fika unknown google ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE 1 1 Unlike chain cafes, it provides a more intimate atmosphere and attentive service. 67 118 standard E1.02 {} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-24 23:35:50.732238+00 high URT:S:E1.02:+2:22TC.ES.B v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:10.778401+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_02 97 SPN-9ab865e3de54fd07 Fika unknown google ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE 1 2 making it a refreshing alternative to larger coffee franchises. 119 158 standard E1.03 {} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-24 23:35:50.732238+00 high URT:S:E1.03:+2:22TC.ES.B v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:10.778913+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_03 98 SPN-350f0142066328f4 Fika unknown google ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE 1 0 I had a lovely experience today at Fika. 0 37 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-24 23:35:50.732241+00 high URT:S:J1.01:+2:21TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:23.425657+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f J.J1.J1_01 99 SPN-f9ffafdacd8fac05 Fika unknown google ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE 1 1 The staff are wonderful very polite and friendly. 38 80 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-24 23:35:50.732241+00 high URT:S:A1.01:+2:21TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:23.429929+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 100 SPN-c56a85cf14302f03 Fika unknown google ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE 1 2 I would highly recommend trying the waffles their lovely and fresh. 81 132 standard O1.02 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-01-24 23:35:50.732241+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:23.43311+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_02 101 SPN-dbed0a27b26bb9bb Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE 1 0 The atmosphere is very cosy and friendly 0 37 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-30 23:35:50.732244+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:35.889157+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 102 SPN-85052714d74b2b5e Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE 1 1 the staff they are so friendly and nice 38 75 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-30 23:35:50.732244+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:35.889967+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 103 SPN-dcb4db36ba9948e1 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE 1 2 the coffee and the food are greats 76 106 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-30 23:35:50.732244+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:35.890306+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 104 SPN-7804bdeef7d99cb5 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB 1 0 Food wasn't as great as I hoped for. 0 34 standard O1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-25 23:35:50.732246+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:43.802612+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_02 105 SPN-0386930543d8b38c Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB 1 1 Service was great 35 54 standard A1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-25 23:35:50.732246+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:43.807357+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 106 SPN-6a0a61eab1119cad Fika unknown google ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB 1 0 the staff are lovely and amazing with kids 27 60 standard A1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-02-28 23:35:50.732248+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:52.14477+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 107 SPN-7318d16076544f1a Fika unknown google ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB 1 1 More highchairs are definitely needed though 64 97 standard A1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732248+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:52.145908+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_02 108 SPN-d038187312e7979e Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB 1 0 Amazing place for activities after school or on weekends. 0 57 standard E1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-02-28 23:35:50.73225+00 high URT:S:E1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:38:57.521084+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 109 SPN-8caf0354727f2149 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE 1 0 Lovely café with a nice and cosy atmosphere 0 42 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-02-28 23:35:50.732252+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:07.871725+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 110 SPN-da066b2ff7efa929 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE 1 1 friendly staff 43 58 standard A1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732252+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:07.874088+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f A.A1.A1_01 111 SPN-93a6cab24c55e49d Fika unknown google ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE 1 2 delicious sweet treats 59 82 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732252+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:07.874632+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 112 SPN-2aac612386444275 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB 1 0 Gaming cafe with a secret garden. 0 30 standard E1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-30 23:35:50.732254+00 high URT:S:E1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:21.402989+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 113 SPN-69a6c9879625fdae Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB 1 1 Only criticism is they dont advertise these parts of it at all. 31 83 standard V1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-30 23:35:50.732254+00 high URT:S:V1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:21.40463+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f V.V1.V1_02 114 SPN-1b0f518b14f73684 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB 1 2 Need to let people know! 84 106 standard V1.03 {} V± I2 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-03-30 23:35:50.732254+00 high URT:S:V1.03:±2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:21.405701+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f V.V1.V1_03 115 SPN-b62cd1437ced20ae Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB 1 0 I love their waffles 😍😍😍 0 24 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-30 23:35:50.732256+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:27.03502+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 116 SPN-4b04a4e166a24db8 Fika unknown google ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB 1 0 My new favourite place in Boston 0 30 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-30 23:35:50.732257+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:31.563282+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_01 94 SPN-4b5ef3b694d4e148 Fika unknown google ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE 1 2 Great place to chill after shopping or with a book. 89 129 standard E1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-02-28 23:35:50.732236+00 high URT:S:E1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:58.296507+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_02 389 SPN-975243479293cc6a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB 1 1 Immer wieder gerne. 99 117 standard R1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.343184+00 high URT:S:R1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:42.076594+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1438 SPN-058475f349442294 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 2 About the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance. 219 487 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:25:52.343796+00 high URT:S:V1.03:-3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:40.242174+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 391 SPN-509dc4bd1a251d4c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB 1 0 Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100% 0 118 standard A1.01 {R1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.341282+00 high URT:S:A1.01+R1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:53.622925+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 392 SPN-3470ea56f6a87fa2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB 1 0 Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. 0 218 standard J2.02 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.341218+00 high URT:S:J2.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:04.842295+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 400 SPN-1a13173008361340 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB 1 1 This car rental service I can recommend. 46 78 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES car rental service service car rental service \N \N \N f t 2026-01-18 01:27:48.340472+00 high URT:S:V1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:44.022828+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 117 SPN-d42c5b10c2891a8c Fika unknown google ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB 1 0 Very good place I would recommend to anyone 0 43 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-30 23:35:50.732259+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:36.607259+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_02 118 SPN-23c95d479e42fce8 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB 1 0 the food and service is amazing 10 36 standard O1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-17 23:35:50.732261+00 high URT:S:O1.03:+3:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:45.650681+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f O.O1.O1_03 119 SPN-f45220df23f09ea6 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB 1 1 the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm 37 139 standard J1.02 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2026-01-17 23:35:50.732261+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:45.651261+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f J.J1.J1_02 120 SPN-887645de3bfef5f0 Fika unknown google ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE 1 0 Очень приятное, чистое место. 0 27 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-28 23:35:50.732264+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:53.636685+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f E.E1.E1_01 121 SPN-acd0d10f158d5914 Fika unknown google ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE 1 1 Рекомендую посетить. 28 49 standard R1.01 {} V+ I2 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-06-28 23:35:50.732264+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:39:53.63835+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f R.R1.R1_01 394 SPN-639af9f644b990a6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB 1 0 Nous avons loué une voiture chez Click & Print pour notre séjour à Gran Canaria. La vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver. Le véhicule était impeccable, récent et parfaitement conforme à la réservation. L’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique. 0 366 standard O1.03 {J1.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340845+00 high URT:S:O1.03+J1.02:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:18.845998+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 398 SPN-aa949ccfb583081b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB 1 0 Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the car 😀 0 92 standard J2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340509+00 high URT:S:J1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:35.900553+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 397 SPN-4384d32fc909765a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_60 1 0 Everything was very easy and fast, the staff is super, kind and nice! 0 78 standard J1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340533+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:30.311717+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 3203 SPN-c4f2a16c69cbbcf9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE 1 2 bonita experiencia 54 72 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:18.504438+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 396 SPN-e30afd6b8b2f1c1b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB 1 0 With car was everything good. 0 27 standard O1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340718+00 high URT:S:O1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:23.191147+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 3204 SPN-76706be7b1f74d90 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE 1 0 Está genial!!! Circuito guapo, con Cars de diferentes cilindradas, tanto para niños como adultos. 0 97 standard O2.03 {O4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O2.03+O4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.720158+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3205 SPN-fabe3197c48e90ad Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE 1 1 Cafetería buena, y tasas las instalaciones muy cuidadas. 98 154 standard E1.01 {O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.01+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.722354+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 236 SPN-23b1eca677588707 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB 1 1 the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. 86 174 standard V2.02 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.34003+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:29.524146+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_02 404 SPN-e6dfc13a040ea931 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 0 We get here by foot because didn't want to spend hours of waiting for a shuttle bus. Negative atmosphere in the office people are not happy with service. One lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. Took ages to get the car. 0 267 standard E1.04 {E1.02,A1.02} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340043+00 high URT:S:J2.02+E1.02+A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:12.361312+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_04 406 SPN-5bb7674dca951176 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 2 Received damaged car. Waited shuttle as the driver needed to check damage on the car. And he was waiting another employee(not sure why it takes 2 person) We asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him). 392 617 standard J2.02 {A1.02} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.340043+00 high URT:S:J2.02+A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:12.36262+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 249 SPN-3f927724c6489e92 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB 1 0 Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend them! 0 103 standard R1.01 {J1.02,P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340068+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:25.371491+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 402 SPN-a8070612445b1b8c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB 1 1 Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). 157 265 standard A4.01 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.340068+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:59.162507+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 409 SPN-670b06ee7d042253 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB 1 0 Polecam. Wszystko sprawnie. 0 25 standard J1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.342965+00 high URT:S:J1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:27.640483+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1794 SPN-7912f586c3bff176 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB 1 0 Excellent service. Even saw management take care of customer concerns. 0 75 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:P1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:15.406511+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1795 SPN-14622acef35e0a12 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB 1 1 As long as you dont mind LGBTQ this is a great place to spend a friday. 76 126 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-01-31 18:34:31.336452+00 high URT:S:A3.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:15.407437+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A3.A3_01 1796 SPN-9c6bc66451c98e2f Soho Club unknown google ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE 1 0 Excellent music and atmosphere 0 30 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-03 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:20.853251+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 415 SPN-817221051d58449c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB 1 1 Sin duda volveré a alquilar con esta compañía 140 178 standard R1.01 {} V+ I3 CR-N S1 A3 TF ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.341123+00 high URT:S:R1.01:+3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:53.387253+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 511 SPN-e7683a6b5e45a3d5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB 1 1 Ansonsten perfekt! 118 136 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.34167+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:53.157212+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 412 SPN-4879fcd6c00fe8a9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB 1 0 Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. 0 83 standard A4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.341275+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:45.039064+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1371 SPN-212caeca2249defd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE 1 2 I would book again. 127 144 standard R1.01 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340616+00 high URT:S:R1.01:+2:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:01.326635+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 278 SPN-966ef7dd194b3f56 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB 1 2 Great service 105 118 standard A1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340135+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:15.526438+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 410 SPN-94ce5c33f74514d2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB 1 0 Me sorprendió tener que pagar 35 euros por algo así como "gastos de repostaje" que aparecía en la letra pequeña del contrato. 0 118 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.341857+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:36.239644+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 414 SPN-a0b2d4b59467e23a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB 1 0 Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , como el chico que recibió el vehículo, Dani , una atención excelente . 0 139 standard P1.01 {A1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.341123+00 high URT:S:O1.01+A1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:53.384631+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 411 SPN-eed81c7a016a22b1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB 1 1 Una sensación como de engaño encubierta. 119 151 standard R1.02 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.341857+00 high URT:S:P1.03:-2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:36.240321+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 413 SPN-fb536e472ebf09e3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB 1 1 Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet. 83 186 standard P1.01 {} V- I3 CR-W S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.341275+00 high URT:S:A1.03:-3:33TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:45.039804+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1439 SPN-81e1481a05dc370f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 3 When asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough. Asked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back. 488 685 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:25:52.343796+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:40.243812+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 417 SPN-b9ab5793735bafb9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB 1 1 Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. Al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. 139 366 standard J1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.341077+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:08.538531+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 422 SPN-75b29672bbd8e010 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB 1 0 Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. Dort mussten wir vielleicht 15 Minuten warten bis wir an die Reihe kamen und das auch nur weil der Herr vor uns keine Kreditkarte hatte und somit die Kaution nicht hinterlegen konnte. Also unbedingt eine echte Kreditkarte dabei haben und keine Debit Karte, die wird nicht akzeptiert. 0 335 standard J1.02 {J1.03} V0 I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340873+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:38.199859+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 424 SPN-a4e7aefbb9662764 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB 1 2 Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf Deutsch eingestellt. Wir waren eine Woche auf der ganzen Insel unterwegs und wir waren sehr zufrieden damit. Das zurückgeben ging bei der selben netten Mitarbeiterin sehr flott und ohne Beanstandungen. Die Kaution war einen Tag später auch schon wieder freigegeben. Alles in allem sehr zu empfehlen. Gebucht hatten wir über Check 24 und mussten vor Ort auch außer der Kaution nichts bezahlen. 442 823 standard O1.02 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340873+00 high URT:S:O1.02:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:38.201423+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 416 SPN-0005e0b34bdce43d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB 1 0 Una experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada de competitivos. No alquilar con esta empresa. 0 139 standard V1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.341077+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:08.534233+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 425 SPN-5176dd2010bf9326 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB 1 0 Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. Al llegar finalmente a la oficina la información tampoco fue precisa. 0 218 standard A3.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.340864+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:04.478159+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_04 418 SPN-7272f7de9fcc04be ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB 1 2 Total alquiler coche 1 dia 421€. es de muerte de susto la estafa de esta empresa. Me han devuelto 285€. No es justo que esto pase tanto dinero publicidad engañosa. 366 487 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.341077+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:08.540559+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 649 SPN-a3296d5903a1a27f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB 1 1 40 minutos esperando en el aeropuerto a la van. 267 303 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.34115+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:00.276866+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 419 SPN-74ff3092474384b6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB 1 0 Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. 0 227 standard A4.04 {} V- I2 CR-N S2 A1 TC ES Clickrent Company clickrent \N \N \N t t 2026-01-11 01:27:48.340893+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:21.28299+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 297 SPN-89fd6cee237130fb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 3 the employees do not care 166 189 standard P3.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.34015+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:37.390226+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_01 420 SPN-8bf393fab71e933f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB 1 1 Así mismo se niega a devolverme el dinero ya que según ellos no son responsables. 227 284 standard A4.05 {} V- I2 CR-N S2 A2 TC ES Clickrent Company clickrent \N \N \N f t 2026-01-11 01:27:48.340893+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:21.283811+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_05 421 SPN-a0ef3e98e1585018 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB 1 2 Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero. 284 353 standard R1.01 {} V- I3 CR-N S3 A1 TC ES Clickrent Company clickrent \N \N \N f t 2026-01-11 01:27:48.340893+00 high URT:S:V1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:21.284412+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 427 SPN-afbf0a91bd5a8519 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB 1 2 Al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. 366 487 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340864+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:04.479446+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 423 SPN-daee5deae590ff6e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB 1 1 Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer Zeit den Schlüssel ausgehändigt hat. 335 442 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.340873+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:03:38.200939+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 428 SPN-13113479233cd2c7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB 1 3 Muy mala experiencia. Nada recomendable. 487 515 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340864+00 high URT:S:R1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:04.479846+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1440 SPN-8779521a4b50b631 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 4 The car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast. 686 835 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:25:52.343796+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:40.245232+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 438 SPN-9849438ae31fbcd9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 3 Wir würden hier wieder mieten. :) 292 319 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.34079+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:54.956683+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 332 SPN-65d9d084761d008a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB 1 0 Very difficoult to get to from the airport. 0 37 standard A4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.340414+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:52.465083+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 440 SPN-a7172131500dccf3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB 1 0 My experience was good. I was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. 0 139 standard J1.02 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.340421+00 high URT:S:J1.02+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:08.966066+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 439 SPN-77183e51ca2a2458 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_65 1 0 Great experience using ClickRent. Quick check in and check out and regular shuttles. 0 83 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES ClickRent brand clickrent \N \N \N t t 2026-01-11 01:27:48.340558+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:02.503328+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 445 SPN-f49bade9f0983c35 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB 1 1 Das Auto war sauber und gepflegt. 37 66 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341807+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:40.284845+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 446 SPN-1163d94251237415 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB 1 2 Reservierung dort, gerne wieder 👍🏻 67 100 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341807+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:40.28754+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 436 SPN-069078a1b4486c3e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 1 Da wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt. Wir nahmen dann für 12 € ein Taxi. 83 164 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.34079+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:54.955743+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1581 SPN-1e53e9e41c113417 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_64 1 1 especially considering the amazing price 67 101 standard V1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:V1.01:+3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:47:57.366139+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 437 SPN-da55835c54694087 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 2 Bei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit der Dokumentation von vorhandenen Schäden, die man bei der Abholung bekommt, abzugleichen. 164 292 standard J1.03 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.34079+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:54.956104+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 449 SPN-07501633b60ec9f8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB 1 0 deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche. 0 139 standard J2.02 {J1.03} V- I2 CR-N S3 A2 TR ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341659+00 high URT:S:J2.02:-2:33TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:01.019299+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 450 SPN-401cffbf7aaa81dd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB 1 1 Somos clientes desde hace años 0 30 standard R1.01 {} V+ I1 CR-N S1 A1 TH ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341659+00 high URT:S:R1.01:+1:11TH.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:01.020705+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1737 SPN-56d5379b87943c83 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE 1 0 Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfortunately this is not the case. It's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. 0 197 standard E1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E1.03:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:04.426259+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_03 448 SPN-252dc0101d236d48 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB 1 1 Un robo 198 205 standard R1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341672+00 high URT:S:P1.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:51.308102+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 444 SPN-bbbc527ab08f7ac3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB 1 0 Super freundliches Personal, zuverlässig. 0 36 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341807+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:40.282805+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 447 SPN-ce32cac74e47653f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB 1 0 Impuestos inventados para sacarte el dinero. 96e más tuve que pagar por el combustible.. Era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito. 55e más por entregar el coche fuera de horario laboral. 0 197 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341672+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:51.307059+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 443 SPN-eec7535abb6c5788 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB 1 0 Buen trato del personal y buen precio de alquiler. 0 50 standard V1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.342614+00 high URT:S:A1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:05:26.315984+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 258 SPN-0113fc999894e237 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 0 Everything was great! 0 22 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340094+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:59.384049+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 261 SPN-eafa9e1829910e3a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 0 Much more to pay on arrival, only credit card accepted and not very helpful. 0 83 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340097+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:10.774607+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1442 SPN-fb752adb4b79e972 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 1 They told me that if I returned the car with a full tank, I would be refunded the full amount except for the €35 fee, and if I returned it half-full, I would receive a partial refund depending on how much petrol remained when I returned the car. The staff member completed everything and told me I would receive the refund within a few days for the remaining half tank of fuel. 267 487 standard V1.01 {} V0 I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:25:52.343796+00 high URT:S:R3.01:0:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:55.111823+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 433 SPN-0d935ac7864ca43b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB 1 0 Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. La navetta era già pronta per accompagnarci all'aeroporto. Arrivati in soli 5 minuti. Direi servizio eccellente. 0 194 standard J1.03 {A1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.34084+00 high URT:S:J1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:38.987201+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 434 SPN-d290f303c9967922 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB 1 1 Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. 194 388 standard V1.01 {} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.34084+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:38.987876+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 257 SPN-58732b6a62398560 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB 1 2 To make matters worse, the staff were incredibly aggressive. 135 175 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340089+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:48.998241+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 1801 SPN-74b7349522fcd38d Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB 1 0 Super service, kind bartender, loved it! 0 40 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:44.080298+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 254 SPN-cd32f578e26f03bb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 2 They do not provide replacement services so we had to guess....drive back!!!! 288 353 standard J1.03 {} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f f 2025-12-26 01:27:48.340081+00 high URT:S:J1.03:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:36.469788+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 430 SPN-5dc34da59f0644bb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB 1 1 Eigenartig fanden wir im Nachhinein auch, dass wir bei der Anmietung ein Fahrzeug-Upgrade erhalten haben, nachdem die (leider sehr unfreundliche) Mitarbeiterin am Schalter erfahren hatte, dass wir über CHECK24 eine deutsche Vollkaskoversicherung ohne Selbstbeteiligung abgeschlossen hatten. Im Nachhinein ergibt für uns einiges mehr Sinn – Schelm, wer Böses dabei denkt. Anscheinend ist dies eine Masche bei dieser Autovermietung, wie man den anderen Google Bewertungen entnehmen kann, die wir besser im Vorhinein gelesen hätten. 564 1038 standard R1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340843+00 high URT:S:A1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:27.379692+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 431 SPN-b1d0583e1ef53950 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB 1 2 Die einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughafen. 1038 1116 standard P1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340843+00 high URT:S:A1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:27.380268+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 432 SPN-51ca85511e893f06 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB 1 3 Wir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutzen und können nur dringend davon abraten. 1116 1196 standard R1.03 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340843+00 high URT:S:R1.03:-3:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:27.380787+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_03 3206 SPN-5d8b66f12e101e55 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXdjl2VHVnRRAB 1 0 La verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo recomiendo para cumpleaños como para pasar una tarde divertida buen sitio y trato espectacular 0 190 standard P1.01 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.740584+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 259 SPN-015dbb96276b1a31 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 1 The car was completely new - 1900km only! 23 61 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340094+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:59.385797+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 3207 SPN-220c44fd4bfd12b2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KclZuVmFXRzFuVW1obWFXczNObGhaTW5SRFpYYxAB 1 0 12 euro les 8 minutes moteur ados . 0 35 standard V1.01 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:V1.01:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.759348+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 260 SPN-a396fd81a7a9d73f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 2 Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :) 62 157 standard V1.03 {P1.02} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340094+00 high URT:S:A1.01+P1.02:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:59.386427+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 256 SPN-c490cb242b280910 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB 1 1 They used every trick in the book to squeeze more money out of me the second I landed. 84 134 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340089+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:48.997132+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 263 SPN-674f09b6aa2392b3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 2 The car was good and it was brand new. 335 368 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-10-27 01:27:48.340097+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:10.775759+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 262 SPN-a65c95ae1236b80c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 1 Pick up from airport was bad, vague instructions and phone was computer voice. 84 134 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340097+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:10.775159+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 266 SPN-15ab67a40880c059 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 2 It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. 140 197 standard J1.02 {} V- I2 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.3401+00 high URT:S:J1.02:-2:22TR.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:23.544058+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 267 SPN-d3a3e91ed5ec9a9b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 0 I've never encountered such disrespectful customer service and a complete lack of professionalism. 134 174 standard P1.02 {} V- I3 CR-N S3 A1 TC ES @ClickRent company @clickrent \N \N \N t t 2025-11-26 01:27:48.340117+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:35.949534+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 268 SPN-30d48cf2bd056c63 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 1 We were severely let down by the service, and our sightseeing plans were ruined. 175 223 standard J1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340117+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:35.950237+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1738 SPN-b66a30a4162019e0 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE 1 1 The staff were mostly friendly which was the only positive. 197 239 standard P1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01:+1:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:04.427237+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1813 SPN-cd3d1c2f5c8bd485 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE 1 0 Really good club!!! 0 19 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:13.188486+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1739 SPN-a2d38a4118142c59 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE 1 2 this is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. He was not drunk, he was not loud and he left rather embarrassed as result of his treatment. 239 335 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:04.428036+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 234 SPN-9c4e2d16bb68f081 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 2 Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. 104 143 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2025-12-26 01:27:48.339742+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:17.709914+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 239 SPN-09a2287f3d010643 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 1 Took ages to get the car. 94 116 standard J1.02 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2026-01-18 01:27:48.340043+00 high URT:S:J1.02:-2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:43.894725+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 281 SPN-04394a081a956fa4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB 1 2 It was simply a scandal! NEVER AGAIN!!! 370 404 standard A1.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340137+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:27.819459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_03 265 SPN-6c7aca3a335d4b5b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 1 They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. 43 139 standard V4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.3401+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:23.543279+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 240 SPN-5e4c39ff0a25ac21 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 2 Was charged 35€ for their fuel policy as we booked not via their website. 117 174 standard V4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-18 01:27:48.340043+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:43.895269+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 264 SPN-218a6cdd2ff40b97 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 0 This company is a scam based on my experience. 0 42 standard R1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t f 2025-11-26 01:27:48.3401+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:23.541613+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 233 SPN-23b914653cec784a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 1 I was happily assisted/helped by a guy named Ivan which greeted me with a smile. 43 103 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Ivan staff ivan \N \N \N f f 2025-12-26 01:27:48.339742+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:17.70641+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 237 SPN-2c6e73595d612415 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB 1 2 AND THIS IS WHAT I CONSIDER AS CHEATING!!! 175 210 standard R1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2026-01-18 01:27:48.34003+00 high URT:S:P1.04:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:29.52479+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 232 SPN-2cf41faf32cee149 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 0 I overall had a nice experience with Clickrent. 0 42 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-12-26 01:27:48.339742+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:17.699208+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 269 SPN-5a827b36ec4def22 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 2 I received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! 1030 1098 standard P3.02 {} V- I2 CR-N S2 A1 TR ES @ClickRent company @clickrent \N \N \N f f 2025-11-26 01:27:48.340117+00 high URT:S:A1.02:-2:22TR.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:35.950629+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 238 SPN-8a7d911002fb0d25 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 0 Negative atmosphere in the office people are not happy with service. 56 93 standard E1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2026-01-18 01:27:48.340043+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:43.893954+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_04 3208 SPN-dcb54ef1e3ecdee7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRNWVMMHFBRRAB 1 0 Lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc) maar er is ook keuze voor 400cc vanaf 18 jaar 0 146 standard O1.02 {J1.03,O4.03} V± I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+J1.03+O4.03:±2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.776846+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 241 SPN-a39ad59a61cc7631 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 0 Left at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got "line busy" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas 0 366 standard J1.02 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340047+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:58.467592+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 242 SPN-d9083f3f342a9d96 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 1 Refused to drop off at Maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up 366 466 standard A3.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340047+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:58.46859+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_02 279 SPN-568939cdcf28146b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB 1 0 We booked a car through their system 2 weeks before our departure. 0 66 standard J1.01 {} V0 I1 CR-N S1 A1 TH ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340137+00 high URT:S:J1.01:0:11TH.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:27.817166+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 244 SPN-42e681f313b522ce ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 0 Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup service was arranged very well and they took good care of us. 0 194 standard J1.01 {J1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340057+00 high URT:S:A1.01+J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:14.569456+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 270 SPN-69d71ad10f1649d2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB 1 0 We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to Gran Canaria. 0 118 standard V4.04 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340126+00 high URT:S:P1.02:0:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:50.308465+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 272 SPN-aa2452d6cc0fc830 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB 1 2 Also a very slowly service, we had to wait in the queue for over 1,5 hours. 150 205 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340126+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:50.309991+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 294 SPN-c8f746726711e871 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 0 The car rent itself is ok 0 25 standard O1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34015+00 high URT:S:O1.01:+1:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:37.380821+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 3209 SPN-75c8078624cb2ca2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNYMy1XcnJRRRAB 1 0 Circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi 0 95 standard O1.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.794277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3305 SPN-65b42b1548fa6bcc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB 1 2 la pista es fantástica y la tienen supercuidada 73 121 standard O2.03 {E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O2.03+E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:54.22229+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 331 SPN-0321ce5035dcb766 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB 1 2 DO NOT RECOMMEND. 145 163 standard R1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340406+00 high URT:S:R1.01:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:40.904045+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 330 SPN-3458bd7f864bf220 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB 1 1 a complete lack of professionalism. 107 135 standard P2.05 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340406+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:40.898996+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_05 293 SPN-3a1839f483282533 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 2 everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great. 265 366 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-10-27 01:27:48.340148+00 high URT:S:O1.03:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:16.533735+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 292 SPN-480135eaa7b1b6b3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 1 we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us. 106 174 standard A2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-10-27 01:27:48.340148+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:16.533312+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A2.A2_02 295 SPN-4c75d6cde30cb915 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 1 the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. 27 103 standard J1.01 {J1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t f 2026-01-04 01:27:48.34015+00 high URT:S:A1.03+J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:37.384002+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 291 SPN-829b11bdd6848785 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 0 The instructions for the shuttle were too vague. 0 45 standard A1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-10-27 01:27:48.340148+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:16.532373+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 273 SPN-b6d9188d85508801 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB 1 0 Overall service experience was very good! 0 36 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-12-26 01:27:48.340133+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:02.28488+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 271 SPN-f97fe33b08320f19 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB 1 1 they wanted 130€ for the second reservation. 118 150 standard V1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t f 2025-11-26 01:27:48.340126+00 high URT:S:P1.03:-2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:30:50.309539+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1444 SPN-9d669b4ac06c7b4a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 3 Based on my experience, I would stay away from this company — they made my holiday stressful. 675 724 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:25:52.343796+00 high URT:S:R1.02:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:38:55.113407+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 276 SPN-0c59758ad1d83d45 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB 1 0 It was a bit stressful looking for the meeting point for the mini bus at the airport 0 75 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340135+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:15.524584+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 3213 SPN-15b5b60a2b4f70cf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB 1 2 Lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor. 100 166 standard O2.03 {} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O2.03:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.857076+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 333 SPN-6c6398ea0eea27c7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB 1 1 When criticised their policies they refuced to give the car that we already paid and also refused to refund our money. 38 139 standard A4.05 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340414+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:52.46668+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_05 247 SPN-b3278856c9580422 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 3 The car was great, brand new with only 8 km driven with it. 354 399 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340057+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:14.573726+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 248 SPN-2e0c464f165ae5f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 4 Overall great company, we will book again directly with them. 400 448 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340057+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:14.574171+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1740 SPN-ec8a6edd4a548e4f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE 1 3 Honestly they could do better and so could you by, spending your money elsewhere. 335 396 standard R1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:R1.03:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:04.428541+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_03 337 SPN-a40b692573a65d2f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB 1 2 checkin was dreadfully slow and inefficient and car was smaller than booked 145 203 standard J2.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340417+00 high URT:S:J2.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:03.454318+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_03 338 SPN-1ffd8cac293de667 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB 1 0 My experience was good. 0 21 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t f 2026-01-11 01:27:48.340421+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:15.019235+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 277 SPN-c349fa36eb2cb2c2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB 1 1 after that everything was very good 76 104 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340135+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:15.52591+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 336 SPN-0175962f783ae8c2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB 1 1 there is no office at the airport despite being mentioned during the booking phase 58 118 standard R1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340417+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:03.451424+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 335 SPN-42d5674150f49db7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB 1 0 shuttle bus took forever to arrive 27 56 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2026-01-04 01:27:48.340417+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:03.448878+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 275 SPN-48e0d0a72dc17007 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB 1 2 the service was excellent all the way, car was clean and nice for the group! 130 183 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES service, car offering service, car quality \N \N f f 2025-12-26 01:27:48.340133+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:02.289876+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 334 SPN-6ba716d7ea65b68c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB 1 2 We got literally robbed!!! 140 166 standard R1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f f 2026-01-11 01:27:48.340414+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:52.467985+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 274 SPN-7c5fba59e78bf8ce ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB 1 1 One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. 37 129 standard A1.04 {} V- I2 CR-N S2 A3 TC ES instructions for shuttle pickup service improvement instructions for shuttle pickup feedback \N \N f f 2025-12-26 01:27:48.340133+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:02.286059+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 282 SPN-9f172867bc083343 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 0 Really really happy with the service. 30 60 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t f 2025-01-25 01:27:48.34014+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:40.426706+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 280 SPN-b92585578517d544 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB 1 1 She returned a few minutes later to inform us that there was NO CAR for us! 138 188 standard A1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-11-26 01:27:48.340137+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:27.818617+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_03 246 SPN-e2a47125a98842b9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 2 In the end booking directly with them would have been cheaper. 308 353 standard V1.01 {} V- I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340057+00 high URT:S:P1.03:-2:22TC.ES.B v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:14.57295+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 285 SPN-23b633c80b532c62 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB 1 0 We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank 0 97 standard V1.03 {} V- I2 CR-N S2 A2 TC ES Doyouspain platform doyouspain negative \N \N t t 2025-12-26 01:27:48.340143+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:52.700112+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 284 SPN-5083c82df9c1102b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 2 We got an upgraded car for no additional cost which was brand new with 400km on it. 140 203 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-01-25 01:27:48.34014+00 high URT:S:O2.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:40.429537+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O2.O2_01 288 SPN-4537906574dc3f2c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB 1 0 We got a good deal from ClickRent for a car with full insurance during black Friday. 0 83 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES ClickRent brand clickrent \N \N \N t t 2025-12-26 01:27:48.340145+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:05.352589+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 300 SPN-0705346e928153f9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB 1 0 Smooth rental when booking directly with full coverage. 0 54 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340153+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:48.459789+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 304 SPN-7f9afa7e8f186d41 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB 1 1 They are not located at the airport, but there is a regular shuttle bus from and to the airport. 63 134 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340159+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:58.145823+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1741 SPN-125c3600eada9a25 Soho Club unknown google ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB 1 0 I had the best night in my life Amazing atmosphere 0 56 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-03 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:18.848143+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 289 SPN-e17f427c144abb56 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB 1 1 Everything went smooth; pickup, drop-off and the refund of the deposit for the gas. 84 139 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-12-26 01:27:48.340145+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:05.356519+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1742 SPN-fc2a46cae04028d3 Soho Club unknown google ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB 1 1 Everyone is Super friendly 57 83 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-03 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:18.848848+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 298 SPN-b99b7086c2d672f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 4 They were just overwhelmed with the number of customers coming! 191 233 standard A1.02 {} V0 I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.34015+00 high URT:S:A1.02:0:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:37.392711+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 301 SPN-f5b25001ad981f64 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB 1 1 Return was extremely quick and the shuttle was ready to bring us to the airport. 55 116 standard J1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-10-27 01:27:48.340153+00 high URT:S:J1.02:+3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:48.47137+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 302 SPN-04fe86ccff1cb5f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB 1 2 One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there. 117 218 standard O1.02 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-10-27 01:27:48.340153+00 high URT:S:O1.02:±2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:48.484668+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 283 SPN-142504a4ee90e507 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 1 Great prices and no hassle return of the car with full cover insurance which was not expensive at all. 61 139 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-01-25 01:27:48.34014+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:40.428444+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 305 SPN-5db7fcde499c83e6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB 1 2 For a precise location, I recommend that you ask someone on arrival. 136 185 standard A1.04 {} V0 I1 CR-N S3 A3 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340159+00 high URT:S:A3.01:0:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:58.148989+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 287 SPN-634a133a5ed46b6a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB 1 2 overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff! 129 195 standard P1.01 {} V+ I2 CR-B S2 A3 TF ES Clickrent company clickrent positive \N \N f f 2025-12-26 01:27:48.340143+00 high URT:S:O1.01:+2:22TF.ES.B v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:52.715902+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 290 SPN-8269ff6b453e448e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB 1 2 The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport. 140 197 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2025-12-26 01:27:48.340145+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:05.359089+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 299 SPN-e7f6af9aaca0fe15 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 5 Never again with this provider 235 261 standard R4.03 {} V- I3 CR-N S1 A3 TF ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.34015+00 high URT:S:R1.03:-3:11TF.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:37.398113+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 286 SPN-e96d27f4816ece98 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB 1 1 the reviews from 'Doyouspain' are negative 98 128 standard R2.02 {} V- I2 CR-N S1 A1 TC ES Doyouspain platform doyouspain negative \N \N f f 2025-12-26 01:27:48.340143+00 high URT:S:V1.01:-2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:31:52.710829+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 296 SPN-f265fc6158a576cc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 2 somebody who was waiting behind me when returning the key was then given first shuttle unfairly. 105 164 standard J4.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.34015+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:37.386332+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J4.J4_03 306 SPN-c5451f5e15bc0be7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 0 I do not recommend this company. 0 30 standard R1.01 {} V- I3 CR-B S1 A1 TC ES company business company \N \N \N t f 2025-11-26 01:27:48.340164+00 high URT:S:R1.01:-3:11TC.ES.B v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:14.988096+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 696 SPN-4f281b594a45950e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 2 I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). I asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. 392 570 standard P3.02 {} V- I2 CR-N S2 A2 TC ES @ClickRent company @clickrent \N \N \N f t 2025-11-26 01:27:48.340117+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:35.816075+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 316 SPN-3b47c1913f4f710d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB 1 2 Never got our car and had to pay full price due to a flight delay they refused to accommodate. 158 227 standard A1.02 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340176+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:38.451578+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 3210 SPN-0ce3c8067c7698d2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRMGN5MWVnEAE 1 0 Un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los mejores karts que he probado, tienen un buen mantenimiento, le doy la enhorabuena a los mecánicos y al personal de pista, lo pasé genial, volveremos pronto 0 255 standard O1.03 {P2.02,R3.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.03+P2.02+R3.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.819863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 310 SPN-9682f649b2d02885 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 4 I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience. 293 358 standard O1.03 {} V- I3 CR-W S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340164+00 high URT:S:O1.03:-3:22TC.ES.W v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:14.991038+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 315 SPN-51dd57a589669b62 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB 1 1 Book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. 99 157 standard J1.02 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2025-10-27 01:27:48.340176+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:38.449078+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 322 SPN-0d87f74da17b08f4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB 1 2 Therefore they refused to handout the car, and we had to return to the airport empty-handed. 127 189 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-12-26 01:27:48.340189+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:03.617984+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 311 SPN-13c1d475d8a72297 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 0 I dont recommend. 0 17 standard R1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t f 2026-01-04 01:27:48.340172+00 high URT:S:A1.01:-2:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:26.24609+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 319 SPN-40b4d99eaad1927a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 2 I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. 224 307 standard V2.03 {} V- I2 CR-W S2 A3 TC ES \N \N \N \N \N \N f f 2025-03-31 01:27:48.340181+00 high URT:S:P1.03:-2:22TC.ES.W v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:53.222929+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 308 SPN-561013b0986cdd3f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 2 This is an unreasonable condition that other companies do not impose. 140 189 standard V2.03 {} V- I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340164+00 high URT:S:P1.03:-3:22TC.ES.B v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:14.990359+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 321 SPN-6c02dd01b24c1619 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB 1 1 ClickRent simply didn't accept that we didn't want to buy additional services. 74 126 standard P3.02 {} V- I2 CR-N S2 A1 TC ES ClickRent company clickrent \N \N \N f f 2025-12-26 01:27:48.340189+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:03.61741+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 307 SPN-9ffa16d40a4fc22c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 1 They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. 31 139 standard A4.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340164+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:14.989931+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 317 SPN-b9b37d439efc54a5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 0 Renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since I was telling about the scratches before leaving. 0 174 standard P1.02 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-03-31 01:27:48.340181+00 high URT:S:A1.02:±2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:53.220715+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 313 SPN-e0deea29d7116164 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 2 the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 195 261 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340172+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:26.250346+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 309 SPN-e0f019b3dae33d30 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 3 Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. 190 292 standard A4.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340164+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:14.990692+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 318 SPN-ea84aaa585ecd727 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 1 I had a small worry about the return since price of the rent was quite cheap compared to other rental companies. 175 223 standard V1.01 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f f 2025-03-31 01:27:48.340181+00 high URT:S:P1.02:-2:22TC.ES.W v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:53.221786+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 691 SPN-af931615c8cac61b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB 1 1 It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN!!! 564 883 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340137+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:05.021396+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 325 SPN-7a4a6a8a43676f8c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB 1 2 Terrible experience, don’t come. 327 353 standard V4.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340194+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:18.083482+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 327 SPN-d4c7138053aa0d15 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB 1 1 Getting and returning car is a nightmare be prepated to miss your flight. 93 139 standard J1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.340202+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:29.596406+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 343 SPN-40782f0825fa2760 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB 1 0 We arrived with a confirmed booking, only to be told there was no car available for us. 0 83 standard A1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340428+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:37.866598+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 3211 SPN-3ffde1ae7948e72e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB 1 0 He estado allí varias veces y siempre nos han atendido super bien. 0 67 standard P1.01 {R2.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+R2.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.853935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 329 SPN-69e6088b287ad7a8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB 1 0 despite our prior reservation, there was no car for us. 36 75 standard J1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-11-26 01:27:48.340406+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:40.872626+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 340 SPN-1ea884fe5e3a0220 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB 1 2 the car was available immediately. 70 101 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-11 01:27:48.340421+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:15.675507+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 347 SPN-ab0fd87c21027a77 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 1 Car was new, less than 5000km driven and was as promised. 109 151 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t f 2025-01-25 01:27:48.340431+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:51.244044+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 348 SPN-4affa510480ba7a8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 2 After returning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes. 151 246 standard J1.03 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f f 2025-01-25 01:27:48.340431+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:51.250042+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 710 SPN-09995ef788b26a1b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25WSlJGRjZlbXMxUlcwME9VOXhVSFJFU0VkUU1IYxAB 1 0 Coche nuevo, limpio y fragante. Ningún problema 0 45 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.342229+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:20.899523+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_01 711 SPN-cbc96bc846f9e3cd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB 1 0 Checkpoint schwer zu finden, Shuttle kam nach 20 Minuten nicht, sind gelaufen 0 78 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.342072+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:28.052472+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 341 SPN-59196cc33418cdeb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB 1 0 Excellent team in Gran Canaria. 0 30 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t f 2026-01-04 01:27:48.340426+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:27.307161+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 345 SPN-736fed82818aeaaf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB 1 2 This is utterly unacceptable. Avoid at all costs. 197 227 standard R4.05 {} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340428+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:37.868225+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 342 SPN-86782eb0eba858dd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB 1 1 They were very helpful and arranged that I could take the car 1 day earlier. 31 103 standard P3.02 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340426+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:27.311297+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 339 SPN-8c0dd4e7177cba83 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB 1 1 the service was good 45 66 standard J2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2026-01-11 01:27:48.340421+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:15.274362+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 346 SPN-e36383125a6d3abb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 0 Staff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insurances. 0 109 standard P1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f f 2025-01-25 01:27:48.340431+00 high URT:S:A2.02:0:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:51.230372+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 344 SPN-e4769fb140dfa4e5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB 1 1 The staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. 84 196 standard P2.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f f 2025-11-26 01:27:48.340428+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:35:37.867652+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_03 452 SPN-b43e484827679580 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB 1 1 W punkcie trwała kłótnia z trzema niezależnymi rodzinami. Jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. 246 384 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34122+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:17.116934+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1458 SPN-ce17bd551b135add ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 1 We got an upgraded car for no additional cost which was brand new with 400km on it. 165 218 standard V1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:O3.01:+3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:39:56.375475+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1473 SPN-6018f3abd3434e38 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB 1 2 The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. 135 227 standard A4.04 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:25:52.343796+00 high URT:S:A4.04:0:21TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:05.751114+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 455 SPN-11c4ffa5f05764dd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB 1 1 Hatte 2 kleine Kinder dabei. 267 295 standard J1.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341169+00 high URT:S:J1.01:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:30.702923+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1474 SPN-47b598d6f51e10a4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB 1 3 For a precise location, I recommend that you ask someone on arrival. 228 284 standard A3.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2026-01-04 01:25:52.343796+00 high URT:S:A3.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:05.752031+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_01 1477 SPN-159fe8173707966a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 0 The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. 0 174 standard V4.04 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:25:52.343796+00 high URT:S:R1.01:-3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:20.973452+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 463 SPN-d0e81532dde5ee98 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB 1 0 Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione. 0 98 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341106+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:16.622177+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 464 SPN-ecdb5832ee05ac54 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB 1 1 Per quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata. 99 134 standard J1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341106+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:16.624213+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 465 SPN-7c16480217215600 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB 1 2 Nel complesso, comunque, lo consiglierei. 135 164 standard R1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341106+00 high URT:S:R1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:16.625792+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1059 SPN-1d82e97f279426e9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB 1 1 Proceso rápido, sencillo y transparente. 67 97 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341519+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:59.874952+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 462 SPN-67525cb9dd18ae3a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB 1 2 Definitivamente NO recomiendo ClickRent. Terrible experiencia. 586 628 standard R4.05 {} V- I3 CR-N S1 A1 TC ES ClickRent brand clickrent \N \N \N f t 2026-01-04 01:27:48.341159+00 high URT:S:V1.02:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:05.691655+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 453 SPN-bfbcf590410b43c2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB 1 2 Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy. 384 487 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34122+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:17.119056+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 458 SPN-d1b1d11c5adbc477 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB 1 2 Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за "заправку" автомобіля 35€. В кінцевому випадку ми значно переплатили. 174 292 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341165+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:51.375846+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 457 SPN-d24d78148c536488 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB 1 1 По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не приймає картки American express. 66 174 standard A4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341165+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:51.374795+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 454 SPN-d6590e9c71824db6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB 1 0 Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholzeit da und sie haben uns die halbe Stunde warten lassen, weil wir kein Upgrade wollten. Dabei haben wir die ganze Zeit auf unser fertiges Auto geschaut (Vertrag und Kennzeichen lag bereits vor, da online eingecheckt). 0 267 standard R1.02 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341169+00 high URT:S:J2.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:30.699534+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 461 SPN-e3268bb4a6284dff ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB 1 1 Claramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona. 486 586 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341159+00 high URT:S:R1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:05.688914+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1478 SPN-5bd56b65db21279f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 1 the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 175 224 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:25:52.343796+00 high URT:S:J1.01:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:20.974335+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 467 SPN-18a64cdaee85d11d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB 1 1 J’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. Leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent. Pratique malheureusement courante chez certains loueurs low-cost. À éviter absolument. 307 487 standard J1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341085+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:26.071375+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 468 SPN-0d7937a85cd66119 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB 1 0 L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré. Il ne veut rien savoir au guichet et nous dit de partir. Je lui demande le remboursement et il me répond de voir avec Do you spain. 0 307 standard A1.02 {} V- I3 CR-N S3 A2 TC ES Clickrent company clickrent negative \N \N t t 2026-01-04 01:27:48.341075+00 high URT:S:A1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:43.10162+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 314 SPN-e928fb90dc181a8f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB 1 0 Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. 0 98 standard P2.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340176+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:38.442106+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_03 472 SPN-ffebfe89aa9c07bc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB 1 0 Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. Dit informatiepunt was echter nergens te vinden. Meerdere mensen gaven aan dat we ter hoogte van de Spar moesten wachten en dat daar elke 10 minuten een busje zou komen. Na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien. 0 307 standard J1.02 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.34089+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:08.429849+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 473 SPN-f9c5ebae95ab153c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB 1 1 We hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. Na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto. 308 487 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34089+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:08.431476+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 475 SPN-9e5cdab9fc9bfb76 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB 1 3 Ook bij het terugbrengen van de auto verliep alles traag. Het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht. 755 835 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34089+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:08.434068+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 477 SPN-fef7a2a88046daaa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB 1 0 Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. Na een uur zoeken hadden we de super slecht vindbare plek gevonden. Helaas niemand aanwezig. Sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. Onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas. 0 392 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340888+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:25.344925+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 469 SPN-92bf48df42780941 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB 1 1 Nous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la preuve que mon permis est bien valide. 307 392 standard V1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341075+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:43.10469+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 471 SPN-9909cf23a6bd7f74 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB 1 3 A fuir Clickrent et Do you spain, des voleurs ! 487 523 standard R1.02 {} V- I3 CR-N S1 A1 TC ES Clickrent, Do you spain company clickrent, do you spain negative \N \N f t 2026-01-04 01:27:48.341075+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:43.108426+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 476 SPN-9e7bbf61fe8bc5a7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB 1 4 Al met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder op Gran Canaria. 836 895 standard R4.03 {} V- I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34089+00 high URT:S:R1.02:-2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:08.434874+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 470 SPN-cdaf95ec093114f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB 1 2 Contacter Do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. Ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ... 392 487 standard A3.05 {} V- I3 CR-N S2 A2 TR ES Do you spain company do you spain negative \N \N f t 2026-01-04 01:27:48.341075+00 high URT:S:A1.02:-3:22TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:43.106787+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_05 466 SPN-ec43f8d4e1498b19 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB 1 0 Ils ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. J’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. Leur réponse ? La partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». Évidemment faux : il s’agissait clairement d’une seule et même rayure. Mauvaise foi totale. 0 307 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341085+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:26.067929+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 303 SPN-90892eb83ee8f438 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB 1 0 Great customer experience, quick and easy rental process. 0 61 standard J2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340159+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:32:58.140443+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 479 SPN-107ce7c9301f5fd2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB 1 2 Daarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn. 685 786 standard V1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340888+00 high URT:S:V1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:25.351153+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_02 1020 SPN-556c1a9c7918f6ed ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 1 Renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since I was telling about the scratches before leaving. I had a small worry about the return since price of the rent was quite cheap compared to other rental companies. Also terms on the agreement was bad for a person renting the car. I was quite anxious during the holiday about the rental even though I had full insurance from booking.com. If I would have had some problems, first I would have had to pay ClickRent and after that claim the money from booking.com. 134 469 standard V1.01 {P1.02} V- I2 CR-B S2 A2 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.340181+00 high URT:S:A1.02+P1.02:-2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:30.897446+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 481 SPN-62770b598bfe0931 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB 1 1 Wir waren sehr zufrieden und kommen gern wieder. 290 320 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340879+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:35.130012+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 487 SPN-9112b868a86edf30 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB 1 0 Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the day before my booking started. They were very helpful and arranged that I could take the car 1 day earlier. 0 174 standard P3.02 {J1.02} V+ I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340426+00 high URT:S:A1.01+J1.02:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:01.441848+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 485 SPN-faa6c1c3315415ea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB 1 0 We had a very nice experience renting from ClickRent. So nice people, and we got all the information we needed. 0 118 standard P1.01 {A1.01,O1.01} V+ I2 CR-N S2 A1 TC ES ClickRent brand clickrent \N \N \N t t 2026-01-04 01:27:48.340434+00 high URT:S:R1.01+O1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:55.636415+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 486 SPN-fe4ca85874b4b808 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB 1 1 The car was just as expected, clean and everything was on top. 118 164 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340434+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:55.646185+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 482 SPN-61a9c378fbb5dd44 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB 1 0 Worst car rental ever. Chaos, long queues, small shuttle. 0 56 standard J1.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340455+00 high URT:S:J2.02:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:46.672143+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 483 SPN-97641d519deee027 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB 1 1 If you have a flight to catch make sure you arrive much earlier to give back the car. 57 103 standard J3.02 {} V0 I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340455+00 high URT:S:J3.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:46.673033+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J3.J3_02 484 SPN-6cb63ec0ed219a71 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB 1 2 Personly, i am never renting from here again. 104 134 standard R4.03 {} V- I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340455+00 high URT:S:R1.03:-3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:46.673436+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 3212 SPN-24c90fa989a62c6b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB 1 1 Los precios son muy asequibles. 68 99 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.855593+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 510 SPN-1d033c841a409229 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB 1 0 Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleicht verbessert werden. 0 118 standard J2.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.34167+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:53.154931+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 3214 SPN-67219b12d0e5652e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE 1 0 Uno de los mejores circuitos de la region de Murcia. 0 53 standard O2.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.870978+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 490 SPN-5e93d011e4ea005b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 1 Also the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 218 284 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340172+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:16.510279+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 489 SPN-a422c0e3f9319970 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 0 I dont recommend. The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. 0 218 standard V2.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340172+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:16.508449+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_02 255 SPN-612e156ee3d7590d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB 1 0 I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs. 0 83 standard R1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340089+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:48.994962+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 502 SPN-c8b089437d912bdf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB 1 1 To make matters worse, the staff were incredibly aggressive. The woman behind the desk actually started shouting at me, insulting my intelligence by yelling "it's not my fault you can't read" when I questioned the charges. She even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there. Completely unprofessional, predatory, and nasty. 564 757 standard P1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340089+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:12.431705+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 503 SPN-4cd6890b5b4bb6b0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB 1 2 Oh and the shuttle bus is terrible so takes ages to pick up and drop off your car. 757 804 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340089+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:12.433428+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 499 SPN-b26c397c36059775 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 0 Everything was great! The car was completely new - 1900km only! Everything worked perfectly and smoothly. 0 103 standard O1.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340094+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:58.2607+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 497 SPN-afd0843e0344b55e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB 1 1 Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately on returning the car. 118 218 standard V1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340135+00 high URT:S:P1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:49.305738+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 498 SPN-d350c33a986b425e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB 1 2 Pick up and return was simply and very quick. Great service. 218 258 standard J1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340135+00 high URT:S:J1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:49.306916+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 494 SPN-abb137b3e11edba5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 1 But the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. You need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. And the employees do not care. They were just overwhelmed with the number of customers coming! 25 319 standard J1.01 {J1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.34015+00 high URT:S:A2.03+J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:37.889936+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 495 SPN-89bfff115969cca0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 2 Never again with this provider 319 347 standard R4.03 {} V- I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34015+00 high URT:S:R1.01:-3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:37.892291+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 1743 SPN-8b89f7eeecd01731 Soho Club unknown google ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB 1 2 Can’t wait to come again 💕 84 104 standard R2.01 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-07-03 18:34:31.336452+00 high URT:S:R2.01:+3:11TF.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:18.849303+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R2.R2_01 1744 SPN-5292ba4a414eb188 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB 1 0 I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! 0 139 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Miglė staff miglė \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:27.00296+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 509 SPN-a87bacba0c5f5a67 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB 1 1 Wenn es mit dem Shuttle zur Station nicht klappt... 139 174 standard J1.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.341804+00 high URT:S:J1.01:+0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:43.943274+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 506 SPN-4cc1b4660b3f41bd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB 1 0 Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!He leído otro testimonio y le ha pasado lo mismo! 0 267 standard V1.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.341843+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:34.498618+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 507 SPN-5e7633978848f377 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB 1 1 Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!Me encargaré que que ningún conocido alquile ahí ladrones de poca monta! 267 487 standard V1.03 {} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.341843+00 high URT:S:P1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:34.502654+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 505 SPN-c30102f3a666e5f2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB 1 0 Aeroportdan 1 km aralıdır. Servis əladır 0 38 standard A4.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.342455+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:23.983612+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 508 SPN-e1725060cb0b31e6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB 1 0 Standort des Shuttlebus sehr schlecht gewählt.. Das versaut das ansonsten gute Ergebniss ,da können sich die Angestellten noch so bemühen.. 0 139 standard A4.01 {A1.02} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.341804+00 high URT:S:J1.02+A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:43.940962+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1484 SPN-6dd3c391daab26b1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 2 Returning the car was easier than I thought. They were not trying to find small scratches from the car. I also got the full deposit back in two days. I think it is better to be safe than sorry. If you rent from ClickRent you should read the agreement and take photos of every small scratches. I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. 366 646 standard V1.01 {} V+ I2 CR-B S2 A3 TC ES \N \N \N \N \N \N f t 2025-03-31 01:25:52.343796+00 high URT:S:J1.01:+2:22TC.ES.B v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:47.054731+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 514 SPN-a36ce178111042ba ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB 1 2 Nem fogom többet öket választani. 366 396 standard R1.01 {} V- I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.34153+00 high URT:S:R1.01:-3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:06.131612+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 522 SPN-09030c035930f332 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB 1 0 Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen. 0 96 standard J1.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.342442+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:50.940137+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 524 SPN-9898e18a6a4fc460 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB 1 0 Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes 0 66 standard J1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.342232+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:05.255524+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 525 SPN-5118a76302d86395 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB 1 1 el coche impoluto y nuevo 67 90 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.342232+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:05.259964+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 516 SPN-52c4c2f6b769746a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB 1 0 Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich angekommen. Bei der Nachfrage, ob die Uhrzeit der Abholung angepasst werden kann, bekam ich nur eine patzige und freche Antwort dass es nicht möglich sei und man am Flughafen mal richtig nach dem Shuttle schauen sollte. 0 266 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.34105+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:28.475019+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 519 SPN-71af7516404130d7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB 1 0 La mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. Unico inconveniente risolto da un buon servizio della navetta. 0 197 standard V4.01 {J1.02} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.340895+00 high URT:S:P1.03+J1.02:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:38.831276+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 515 SPN-7d2927910a838855 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB 1 0 Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Валентине. 0 106 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Валентина person валентина \N \N \N t t 2025-12-28 01:27:48.341377+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:12.505224+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 518 SPN-8ddb7251c176a134 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB 1 2 Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte man mir einen Schaden am Fahrzeug. Wie gut, dass ich vorab ein Video vom Zustand des Fahrzeugs gemacht habe. Scheint wohl eine Masche zu sein. ClickRent nie wieder! 487 646 standard R1.01 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.34105+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:28.480111+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 517 SPN-a1495fc81637d104 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB 1 1 Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert werden, während ich auf das Fahrzeug wartete, lästerte die Angestellte (geschätzt auf 60 Jahre kurze graue Haare) auf Spanisch mit Ihren Kolleginnen und Kollegen ab, während ich vor Ihr stand. Das freche Lächeln der Dame empfand ich als extrem provokant. 266 487 standard P1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.34105+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:28.479325+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 513 SPN-a9f7e0a9da0f8b43 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB 1 1 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. 266 366 standard A4.05 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.34153+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:06.126301+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_05 520 SPN-ae9243ab8ed52afb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB 1 1 Ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. Anche con questa formula ClickRent si è dimostrata la più vantaggiosa. 197 307 standard V4.01 {} V+ I3 CR-B S3 A1 TH ES \N \N \N \N \N \N f t 2025-12-28 01:27:48.340895+00 high URT:S:P1.03:+3:33TH.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:38.833133+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 523 SPN-b1a52a7dc6e537db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB 1 0 Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática. 0 75 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carmen staff carmen \N \N \N t t 2025-12-26 01:27:48.342276+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:55.738612+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 521 SPN-f5c25bf389f1fa14 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB 1 0 Lamentables. No se merecen ni que me canse escribiendo 0 54 standard V4.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.342622+00 high URT:S:O1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:46.220159+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 1485 SPN-24d82a5268702342 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 3 I gave only 3 stars because of the stress from the other reviews and terms in the agreement. 646 703 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:25:52.343796+00 high URT:S:R1.02:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:47.055486+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1487 SPN-47c01075c280e5af ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB 1 1 With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we didn't want to buy additional services. Therefore they refused to handout the car, and we had to return to the airport empty-handed. 140 319 standard R1.02 {} V- I3 CR-N S2 A1 TC ES ClickRent company clickrent \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:58.241459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 529 SPN-960de538266c60e4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB 1 0 Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora. 0 197 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341972+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:24.073915+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 539 SPN-097796637e0eb9c1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB 1 1 Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung. Gerne wieder 54 106 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341751+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:09.45197+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 542 SPN-75b378c5ad3419e8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB 1 0 Es gut alles gut funktioniert. Auch der transfer. 0 45 standard J1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341525+00 high URT:S:J1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:29.128328+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 964 SPN-3b68c649839d399b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB 1 1 De auto was in goede staat en de borg was onmiddellijk terug. 51 97 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES auto offering auto \N \N \N f t 2025-04-30 01:27:48.342184+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:18.255806+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 532 SPN-e87d7186fa3b1284 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB 1 1 La pieza entera cuesta 120 euros. 158 183 standard V1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341915+00 high URT:S:P1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:41.335323+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 533 SPN-107ab7b57285c84f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB 1 2 De vergüenza. 187 200 standard O1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341915+00 high URT:S:P1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:41.336215+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 530 SPN-214aa712d67cff1f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB 1 0 me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto 0 139 standard V1.03 {A1.03} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341919+00 high URT:S:J2.03+A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:31.066982+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 535 SPN-28e7bf6ee7c7f4e6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB 1 0 My amable 0 9 standard P1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341905+00 high URT:S:A1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:50.701844+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 540 SPN-50762f68b4ebf767 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB 1 0 Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!! Es werden nur von einer Bank ausgegebene Kreditkarten akzeptiert (keine Debitkarte oder american express) ansonsten bekommt man kein Fahrzeug gemietet 0 218 standard A4.04 {J1.03} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341569+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:19.159265+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 536 SPN-764989efae2fbf90 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB 1 0 Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina. 0 157 standard V1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341847+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:55.661254+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_02 538 SPN-9b98a65678f776f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB 1 0 Wartezeit bis zum Mietvorgang hat gedauert (20 min. ) 0 54 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341751+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:09.451222+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 541 SPN-b6cf3cd5775f0140 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB 1 1 Wenn man dies beachtet ist alles sehr easy 218 253 standard J2.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341569+00 high URT:S:J1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:19.16122+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 531 SPN-cec4539955ff3151 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB 1 0 Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado "peritaje". 0 157 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341915+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:41.334082+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 534 SPN-e359719ae1d587e0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB 1 0 Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji. 0 98 standard P3.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.34191+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:46.455199+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_01 527 SPN-f274020a140ce09f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB 1 1 50 minutos esperando en el aeropuerto para ser recogidos. 79 113 standard J1.01 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.342195+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:13.609902+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 543 SPN-275078c4f329038d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB 1 1 Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map. 46 92 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341525+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:29.131827+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 544 SPN-f1a4904e8280a15f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB 1 2 Kaution wurde schnell zurück überwiesen. 93 123 standard J1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341525+00 high URT:S:J1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:29.133122+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 545 SPN-11b94677a0f079f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB 1 0 Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig. 0 157 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341515+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:41.010182+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1488 SPN-f59f1b6201c70e78 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB 1 2 Simply the worse company ever. 320 347 standard R1.01 {} V- I3 CR-N S1 A1 TC ES ClickRent company clickrent \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:R1.01:-3:31TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:41:58.242213+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 324 SPN-5260b17d1835dc7d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB 1 1 The car given does not match what we ordered. 290 327 standard O4.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340194+00 high URT:S:O1.01:-3:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:18.075708+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O4.O4_01 549 SPN-ed80fe815322bb4a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB 1 0 Bilen var bra, men resten var dårlig. 0 34 standard O1.02 {} V± I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341355+00 high URT:S:O1.02:±2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:58.248201+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 550 SPN-30dfff570fd2da6b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB 1 1 Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro. 35 83 standard J1.02 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341355+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:58.249416+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 553 SPN-2451d4f74cf33aab ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB 1 1 Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2. 79 139 standard J1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341163+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:07.775063+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 551 SPN-1c5859796f417972 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB 1 2 Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler enda 1 uke etter hjemreise. 84 164 standard V1.03 {} V- I2 CR-N S2 A2 TR ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341355+00 high URT:S:P1.03:-2:22TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:58.24997+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 552 SPN-3dfe058f9526fce2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB 1 0 Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit. 0 78 standard P1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341163+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:07.774027+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 555 SPN-9018a18c369588d3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 0 Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. 0 267 standard V1.03 {} V- I3 CR-N S3 A1 TC ES ClickRent company clickrent negative \N \N t t 2025-12-26 01:27:48.34114+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:39.101165+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 554 SPN-9c371f713284051b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB 1 2 Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden. 140 218 standard J1.01 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341163+00 high URT:S:J2.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:07.775514+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 548 SPN-ad2468b78e95b8ff ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB 1 0 No se les ocurra alquilar en esta empresa! Son unos estafadores! Lean las reseñas de la oficina en Tenerife norte! Van a flipar! Alquile un Volkswagen y supuestamente me multaron! Me cobran de mi cuenta 50 euros por tramitación! Ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan! 2000 euros de fianza por un Audi a1? Eran chicos asturianos! Estoy seguro que se inventarán algo para.msrgsrles el dinero! Hay reseñas que te ponen los pelos de punta! Con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! Estafadores! 0 564 standard R1.01 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341371+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:47.350082+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 546 SPN-ebad14ee528ad595 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB 1 1 Da jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran. Jeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. De stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass. Dette blir jeg da belastet med 420 euro for. Hadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig. 157 420 standard V1.03 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341515+00 high URT:S:J1.03:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:41.010856+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 547 SPN-f6abe0385b546313 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB 1 2 Ta bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen. 420 487 standard R4.03 {} V- I3 CR-N S2 A3 TF ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341515+00 high URT:S:J1.02:-3:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:41.011378+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 326 SPN-cce6417d9a89fce5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB 1 0 Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients. 0 92 standard J1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-25 01:27:48.340202+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:29.59235+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 559 SPN-a578c8dd6ad7c2f0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 4 Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. Al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en Internet. 797 1037 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.34114+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:39.103758+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 563 SPN-35d7c65b66b9b7f9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB 1 0 Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person gab es ebenfalls nicht. Es hat über 1 1/2 Stunden gedauert, bis jemand kam und das auch nur, weil ein anderer Kunde in der Vertragsabteilung in Madrid angerufen hat. 0 218 standard J1.03 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341121+00 high URT:S:J1.03:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:56.913976+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 564 SPN-dfede51d4866372b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB 1 1 Danach war dann alles soweit in Ordnung. 218 248 standard J1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341121+00 high URT:S:J1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:56.916412+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 565 SPN-e947051828dba8c1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB 1 0 Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. La señorita nos atendio rapidamente y Byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. 0 267 standard J1.03 {A1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341092+00 high URT:S:J1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:07.24979+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 569 SPN-74812842c4777058 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB 1 0 Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spanische KI-Hotline, keine Ausschilderung und eine nicht brauchbare Wegbeschreibung vorab. Da nur ein Shuttle zu dem Zeitpunkt fuhr und die Schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden. 0 307 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341027+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:36.711048+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1814 SPN-c54e7c4a2732a2c8 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE 1 0 Best baser 0 10 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:19.776672+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 560 SPN-798c3e95e4989b28 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 5 Repito, ClickRent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. No reserves con ellos. 1037 1117 standard V1.03 {} V- I3 CR-N S3 A1 TC ES ClickRent company clickrent negative \N \N f t 2025-12-26 01:27:48.34114+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:39.104156+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 557 SPN-7cb5d416f774286d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 2 Además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. Si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. 487 617 standard V1.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.34114+00 high URT:S:P1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:39.102447+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 561 SPN-9a6ac7c016cb8d8f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB 1 0 Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante. 0 267 standard R1.02 {A1.03} V- I3 CR-W S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341132+00 high URT:S:J1.02+A1.03:-3:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:46.972925+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 562 SPN-9f92329225cbd93a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB 1 1 pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. 267 408 standard J1.01 {} V+ I1 CR-B S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341132+00 high URT:S:J1.02:+1:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:46.974211+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 566 SPN-b94460035bf17b23 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB 1 1 Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. 267 335 standard R3.05 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341092+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:07.250942+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R3.R3_05 567 SPN-d322352cff14e2a7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB 1 0 Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. 0 319 standard V1.03 {P1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341067+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:14.820031+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 568 SPN-dc271d48c3a22899 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB 1 1 Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok. 319 396 standard V1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341067+00 high URT:S:P1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:14.821254+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 570 SPN-b04d8432dccd344d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB 1 1 Da es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte Inspektion der Schäden am Auto und machten nur oberflächliche Fotos und Videos. Bei der Rückgabe wurde dann vorne unterhalb der Frontschürze(!) ein Mini-Kratzer festgestellt, welcher angeblich durch uns verursacht wurde. 307 487 standard O1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341027+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:36.711724+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 488 SPN-4c70311712b3af4a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB 1 0 shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. 0 267 standard J1.01 {J1.02,O1.02,A2.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340417+00 high URT:S:J2.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:09:07.408918+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 572 SPN-6237eb14fb1804e5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB 1 0 Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterwegs. Am besten einfach bei Clickrent anrufen und nachfragen! Ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine Buchung dort bekannt ist ;) Denn der Weg zu Fuß vom Flughafen zieht sich. 0 267 standard J1.02 {J1.03} V0 I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340886+00 high URT:S:J1.02:+0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:46.139885+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1501 SPN-3c3ab422355296df ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB 1 1 car had undocumented damages that the staff was very reluctant to document, car was smaller than booked 139 218 standard O1.01 {P1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:25:52.343796+00 high URT:S:O1.01:-3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:42:47.826444+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 579 SPN-bee4cd19e63a07be ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB 1 0 Strongly suggest to choose this company . Very reliable and not trying to rip off . 0 73 standard R1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340665+00 high URT:S:R1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:19.654595+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1802 SPN-92bc9d8c1edc9c75 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB 1 0 Love this place!! Worth visiting, best music!? 0 46 standard E4.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E4.04:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:49.043234+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 576 SPN-5a3d2d9d15c53a30 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB 1 2 Das Auto war neu und in einem super Zustand. Würden wieder dort buchen. 119 164 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.34085+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:00.977734+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 578 SPN-7b7e4e8d82d6e0f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB 1 1 Oltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta. 319 426 standard A4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340793+00 high URT:S:E1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:14.797052+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 574 SPN-fcad98d7c5df1458 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB 1 0 Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert. 0 83 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.34085+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:00.975954+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 580 SPN-2eb336519cd55a12 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB 1 0 Null !! Terrible Horrible 0 25 standard J2.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340626+00 high URT:S:J2.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:30.847181+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_03 581 SPN-95cfd28cadafeb87 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB 1 1 Waiting in the queue for 100 minutes is not the way to start your trip. 25 83 standard J1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340626+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:30.847879+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 3215 SPN-f8299ce5a5960263 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE 1 1 Algunos karts estan algo descuidados. 54 91 standard O1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.03:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.87249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3216 SPN-2e7c01a2fd122a91 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE 1 2 Buena organización. 92 111 standard J2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:J2.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.873695+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3217 SPN-effafdd84826ea62 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE 1 3 Fresca terraza para tomar algo mientras esperas y Bar. 112 166 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.874982+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 573 SPN-6e0e52fca7458663 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB 1 1 Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo angeblich über mietwagen-billiger.de alle Versicherungen ohne Selbstbeteiligung mit drin waren!), also super Preis-Leistungs-Verhältnis! 267 392 standard V4.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340886+00 high URT:S:P1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:46.14047+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 582 SPN-98cd9ebb0df00050 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB 1 2 No Bueno 83 91 standard V4.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340626+00 high URT:S:J2.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:30.848395+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 583 SPN-bb4ca1a4adb141f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_63 1 0 Great price performance ratio, very friendly and service oriented team, even German speaking with Daniel. 0 98 standard V4.01 {A1.01} V+ I2 CR-N S2 A1 TC ES Daniel staff daniel \N \N \N t t 2025-12-26 01:27:48.340551+00 high URT:S:P1.02+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:35.873745+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 599 SPN-bbc1a092f88235b1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 3 Although they are very polite and helpful at the pick up point this isnt enough to recommend them. 685 748 standard P1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340081+00 high URT:S:A1.01:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:37.201753+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 594 SPN-67e1853ac705e8ea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB 1 0 Overall service experience was very good! One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. 0 139 standard J2.01 {E1.02} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340133+00 high URT:S:J1.02+E1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:21.509555+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 595 SPN-44a7268d219abb60 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB 1 1 After we got to the shuttle, the service was excellent all the way, car was clean and nice for the group! 139 218 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340133+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:21.510292+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 593 SPN-f9567a1636b208fa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB 1 1 But overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff! 267 335 standard P1.01 {A1.01} V+ I2 CR-B S2 A1 TC ES Clickrent company clickrent positive \N \N f t 2025-12-26 01:27:48.340143+00 high URT:S:R1.01+A1.01:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:13.559581+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 591 SPN-0ab5de4ed600320a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB 1 1 The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport. 158 227 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340145+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:04.457676+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 320 SPN-7c7387fb4c55fd84 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB 1 0 This is absolutely the worse experience I've ever had, trying to rent a car. 0 73 standard V4.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340189+00 high URT:S:J1.03:-3:11TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:03.615508+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 3218 SPN-618dd798a94bc340 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE 1 4 Buena actividad para cumpleaños o despedidas. 167 211 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.875836+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 1512 SPN-d333d47df77aab7e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 1 The car was awesome and brand new like 1000 clicks on the odo. 67 113 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:25:52.343796+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:43:33.388331+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 600 SPN-c9e584defdede711 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 0 Save your money and your holiday and book with someone else. Left at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got "line busy" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas 0 366 standard J1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340047+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:00.390962+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 586 SPN-33e93946266bf7c4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB 1 0 Impossible to find the meeting point. No one was there, no sign, customer service with automated voice message. 0 109 standard J1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340496+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:51.929741+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 587 SPN-f2011b63849526b0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB 1 1 We had to walk 30 minutes on bad road with luggage to find the office. 110 157 standard J1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340496+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:51.930534+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 597 SPN-2ec82e3e3918799b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 1 We had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. 267 426 standard A4.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340081+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:17:37.200785+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 585 SPN-3897e88edd332ffd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB 1 1 The only thing is that the shuttle from the airport is not simple to get. 31 83 standard A4.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340522+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:42.539037+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 997 SPN-6ba2ea08e1feb0ac ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE 1 1 Lange Wartezeit 62 79 standard J1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342689+00 high URT:S:J2.01:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:39.662511+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 588 SPN-68d3b70187d3d91b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB 1 2 Don't rent anything from here. 158 182 standard R4.05 {} V- I3 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340496+00 high URT:S:J1.04:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:51.930943+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 3219 SPN-9e54dc9ee24e0bc7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE 1 0 Lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento. 0 101 standard P3.01 {P1.01,J2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01+P1.01+J2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.8914+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 606 SPN-07b9218aae8178d3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 0 I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan which greeted me with a smile. 0 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Ivan staff ivan \N \N \N t t 2025-12-26 01:27:48.339742+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:16.467414+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 607 SPN-5a46cab13a9540be ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 1 You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern Europe. Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. 139 307 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.339742+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:16.468019+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 608 SPN-40f559c973c9ba49 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 2 Also the shuttle to the rental is not that easy to find, even though the location on the website is indicated (as one shuttle drives up and down). We decided to walk which takes around 15-20 minutes. 307 426 standard A4.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.339742+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:16.468624+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 609 SPN-36522ccb33ebd632 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 3 The car I was offered is a VW Taigo with apple carplay. Very comfortable ride. 426 487 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES VW Taigo offering vw taigo \N \N \N f t 2025-12-26 01:27:48.339742+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:16.469+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 603 SPN-9b7cb5d07495af25 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 3 Car given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. To add insult to injury they decided to take £381.50 out of my account (I guess for good measure). Presumably this is how they make their money – it is nothing short of a scam. 675 1035 standard R1.02 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340047+00 high URT:S:O1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:00.392654+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 604 SPN-f893e397a6730d4e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 4 We detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. Predictably, we received no response from them. 1035 1165 standard R4.05 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340047+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:00.393267+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 612 SPN-4a5abbc29cbf44db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB 1 1 viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual 197 267 standard J1.02 {} V0 I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341954+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:30.534549+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 613 SPN-fe0adb113677a233 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB 1 2 no vuelvo!!! 267 277 standard R1.02 {} V- I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341954+00 high URT:S:R1.02:-3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:30.535147+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 614 SPN-dc5b31d345a63dc7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB 1 0 Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv 0 66 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341853+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:38.448599+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 615 SPN-bdadedeec416429e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB 1 1 bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft 66 113 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341853+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:38.449683+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 605 SPN-579eb5972318af85 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 5 Lesson learned – we’ll be booking with a reputable company next time. 1165 1215 standard R1.01 {} V0 I1 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.340047+00 high URT:S:R1.01:0:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:00.393645+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 631 SPN-a28145a64922d657 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB 1 1 再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗? 90 157 standard O1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341315+00 high URT:S:O1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:52.990913+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 611 SPN-70703be8299a8f47 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB 1 0 te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso 0 197 standard V1.03 {P1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341954+00 high URT:S:P1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:30.53355+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1513 SPN-f26a340328e425fa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 2 Great family experience made our stay worthwhile in Gran Canaria. 114 158 standard R2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:25:52.343796+00 high URT:S:R2.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:43:33.389561+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_01 1520 SPN-3f05ac740d219b2c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB 1 1 their insurance is the cheapest compared to other car rentals 86 126 standard V1.01 {} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:25:52.343796+00 high URT:S:V1.01:+3:33TC.ES.B v5.1 gpt-4o-mini fd155577 2026-01-29 04:43:59.279563+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 3220 SPN-438dee897b10b1b3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE 1 1 Las instalaciones están en buenas condiciones 102 147 standard E1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.892812+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 617 SPN-fe4fc6637df42b26 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB 1 1 seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto 290 570 standard A1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341767+00 high URT:S:A1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:48.324943+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 1521 SPN-70d58b6826aa6278 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB 1 2 They also have enough staff in order not to waste time at pick-up and dropoff 127 179 standard P3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:25:52.343796+00 high URT:S:P3.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:43:59.282146+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_01 1797 SPN-e7d33eec25a8cdb0 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB 1 0 Nice to come back home to vilnius, and to know you can relax. Loved loved loved. 0 83 standard E4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-01-31 18:34:31.336452+00 high URT:S:E4.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:26.287001+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 620 SPN-2e0f4576b2004cd0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB 1 0 El coche estaba impecable, el trato del personal excelente. 0 61 standard O1.01 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341727+00 high URT:S:O1.01+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:07.336013+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 621 SPN-10dca471043a216f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB 1 1 Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos. 62 109 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES clickrent brand clickrent \N \N \N f t 2025-11-26 01:27:48.341727+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:07.338747+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1798 SPN-e5ca102d5a7a95a2 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB 1 0 Good place, perfect club LGBT. Best place. 0 38 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:35.130471+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 625 SPN-8d2e3eec55513701 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB 1 0 Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwertiges Fahrzeug, sehr sauber, Prozesse sehr gut und bestens organisiert 0 157 standard J1.02 {O1.01,E1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341651+00 high URT:S:J1.02+O1.01+E1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:25.800048+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 627 SPN-b5927e53e6a8f0cd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB 1 1 Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11. 194 267 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341642+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:33.649789+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 619 SPN-5fed08c618625b4b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB 1 1 Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !! 66 157 standard V1.03 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341742+00 high URT:S:P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:56.692365+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 626 SPN-669aad8400744211 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB 1 0 Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. 0 194 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341642+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:33.649037+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 624 SPN-6be9e87680c1a17d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB 1 1 largas esperas para recoger o devolver coche 196 227 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341716+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:20.430884+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 622 SPN-70f5ab860d2f0211 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB 1 0 explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos 0 470 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341718+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:13.312572+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 623 SPN-b807bb50acec9836 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB 1 0 Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe 0 194 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341716+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:20.430086+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 618 SPN-d76b2d8b4197a639 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB 1 0 Das Personal war sehr freundlich, aber abgezockt wird man trotzdem. 0 66 standard V1.03 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341742+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:56.689525+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 630 SPN-dfb783b89e363487 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB 1 0 我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。 0 90 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341315+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:52.990356+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 632 SPN-2b4fbdeef975d45b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB 1 2 最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。 157 205 standard E1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341315+00 high URT:S:E1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:52.991325+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_02 1799 SPN-9a66303040b004e4 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB 1 1 Nice stuff 39 49 standard P1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01:+1:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:35.131213+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1800 SPN-1199d26aedf05d4a Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE 1 0 I want to come back! Great place. 0 30 standard R1.01 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:R1.01:+3:11TF.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:39.642045+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_01 643 SPN-bbcc9251ceadf0c5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB 1 2 Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum. 139 189 standard O1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341185+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:32.829797+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 645 SPN-c50b66178ee13c3c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB 1 1 Se pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa. 139 188 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341167+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:46.396533+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 637 SPN-0664e89db78e15d7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB 1 2 Nicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden. 164 232 standard V4.04 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341222+00 high URT:S:P1.02:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:12.305862+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 644 SPN-0a8cf030306ee0a9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB 1 0 Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar. 0 139 standard V1.03 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341167+00 high URT:S:P1.02:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:46.39576+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 635 SPN-1077b0426a84984b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB 1 0 Schwierig zu finden nach Ankunft am Flughafen. 0 42 standard A1.04 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341222+00 high URT:S:J1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:12.303107+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 647 SPN-3b8cc0cb1544c478 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB 1 3 No repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen. 246 319 standard R1.03 {} V- I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341167+00 high URT:S:R1.02:-2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:46.397347+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_03 636 SPN-43c2759fc6d4b324 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB 1 1 Bei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nicht gemacht habe und bei der Rückgabe zu Problemen geführt hat. 42 164 standard A2.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341222+00 high URT:S:A1.02:-2:22S2.A2.TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:12.304791+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A2.A2_02 642 SPN-64ccad67357043db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB 1 1 Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur schwer nachvollziehbare Zahlungen leisten. 66 139 standard V1.03 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341185+00 high URT:S:J3.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:32.827501+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 633 SPN-8f77d630b80db991 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB 1 0 Lange Wartezeiten, schlechter Service. 0 30 standard J1.01 {A2.02} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341313+00 high URT:S:J2.02+A2.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:01.544071+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 638 SPN-cef1f8014cc867ed ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB 1 0 Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der Buchung der Versicherung, und diese auch noch alle Daten nach Aussage erhalten haben, einem nochmal eine Versicherung berechnen und dies dann anders verkaufen. 0 276 standard V1.03 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341207+00 high URT:S:A1.02:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:22.320857+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 634 SPN-e100efad169baf98 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB 1 1 Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser krank war mussten wir einen neuen Mietwagen für den doppelten Preis buchen. 30 164 standard V1.01 {P2.03} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341313+00 high URT:S:J3.03+P2.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:01.545423+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 646 SPN-e48994c84153e56f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB 1 2 No sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear. 188 246 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341167+00 high URT:S:E1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:46.396923+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 639 SPN-f886195468a4214f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB 1 1 Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären. 276 319 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341207+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:22.321483+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 641 SPN-f9b6336d3444b316 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB 1 0 Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort. 0 66 standard J1.01 {A2.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341185+00 high URT:S:J2.02+A2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:32.825267+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 648 SPN-0df5b8c725003fde ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB 1 0 Primero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar. 0 267 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.34115+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:00.274855+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 650 SPN-9f752a5dd20e38fe ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB 1 2 Llegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. 303 525 standard J1.02 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.34115+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:00.277481+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 946 SPN-1f725b932956618b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE 1 0 ClickRent's office is about a 3 minute drive from the airport in a brand new check in centre which has many check-in desks and very helpful staff. The shuttle bus from the airport is super easy to find and Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip! Check in was quick and easy and we were on the road in under 20 minutes. All their cars are brand new and ours had less than 12k miles on the clock. Returning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning. 0 486 standard J1.03 {A1.01,O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.340461+00 high URT:S:J1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:46.421879+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 652 SPN-63486bbacb837081 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB 1 1 Una empresa así no merece la confianza de ningún cliente. Pésima gestión, trato nulo y una sensación clara de haber sido engañado. No volveré jamás. Y ojalá esta reseña ayude a otros a evitar pasar por lo mismo. 392 570 standard R1.02 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341119+00 high URT:S:R1.02:-3:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:09.161421+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 653 SPN-d9d6e89569d791da ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB 1 0 Wir können uns nur Positiv über diesen Autovermieter äußern. Wenn man den Anweisungen folg um zu dem Treffpunkt zu kommen, kommt man auch tatsächlich an. Es war eine Promte und unkomplizierte Abwicklung beim abholen und zurückgeben des Fahrzeugs. 0 218 standard J1.03 {A1.01,O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341117+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:22.74275+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 655 SPN-096885140260dd11 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB 1 2 Können den Vermieter nur weiter empfehlen. 267 303 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341117+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:22.743984+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 659 SPN-b65956542e4485dd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB 1 0 Diese Autovermietung ist absolut nicht zu empfehlen. Erst mal muss man sich am Flughafen samt Gepäck und Kindern quälend lange durchfragen, wo der Standort eigentlich ist. Es gibt keinerlei Hinweisschilder. Kaum eine Person am Flughafen kennt die Firma. Es hat fast 30 Minuten gedauert, bis wir mit Hilfe anderer Personen erfahren haben, wo man per Shuttle abgeholt wird. Auch dort war kein Schild angebracht. Niemand kam. Wir mussten die Hotline von Click Rent anrufen und uns durch eine KI Ansage kämpfen die nur spanisch sprach. Weitere 20 Minuten später wurden wir dann endlich abgeholt. 0 486 standard J1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341072+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:48.43078+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 660 SPN-aa685256e0d66623 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB 1 1 Vor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik... ohne Worte. 486 558 standard O1.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341072+00 high URT:S:O1.01:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:48.432043+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 657 SPN-1305ed56462e40ba ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB 1 1 N'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). 45 174 standard A4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341113+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:34.600691+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 651 SPN-aa5b75bd21e86508 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB 1 0 Auténtica estafa y cero profesionalidad. Hice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. Me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. Ni el 50%, ni el 10%, ni un céntimo. Prometen una cosa por teléfono y luego desaparecen. No respetan sus propias políticas. No dan soluciones. No muestran transparencia. Simplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse. 0 392 standard R1.03 {A1.03,V1.03} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341119+00 high URT:S:P1.03+A1.03+V1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:09.160687+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_03 654 SPN-d80acdaedb82e955 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB 1 1 Sehr nettes Personal und das Auto war auch sehr neuwertig. 218 267 standard P1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341117+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:22.743565+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 656 SPN-e36e28a16ff120db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB 1 0 Temps d'attente de 1h30 pour récupérer le véhicule 0 45 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341113+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:34.599637+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1526 SPN-26d9728d925fd7b8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE 1 1 Check in was quick and easy and we were on the road in under 20 minutes. All their cars are brand new and ours had less than 12k miles on the clock. 290 392 standard J1.01 {O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-05-30 01:25:52.343796+00 high URT:S:J1.01+O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:44:22.268486+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1527 SPN-f4403aa3ba2a9d38 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE 1 2 Returning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning. 392 487 standard P1.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-05-30 01:25:52.343796+00 high URT:S:J1.01+P1.01:+3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:44:22.268976+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1528 SPN-dec7d53b77a8f388 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB 1 0 Very unfriendly lady. Not returning here again. 0 43 standard P1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:25:52.343796+00 high URT:S:P1.02:-3:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:44:29.452981+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 1017 SPN-0d0f3ef96c74a1b2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB 1 1 What truly stood out was the exceptional customer service (especially from the picking up driver). The staff was extremely friendly, professional, and helpful, making the whole experience smooth and stress-free. 308 469 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.340465+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:09.131833+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 667 SPN-17ccf4a97c472eb8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB 1 3 Ehk siis peate minema teisele korrusele õue ja station 2 juurde. 353 396 standard J1.03 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340866+00 high URT:S:J1.03:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:22.407386+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 668 SPN-2370626ee7c01678 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB 1 4 Auto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav. 396 487 standard O1.02 {} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340866+00 high URT:S:O1.02:+-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:22.408076+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 671 SPN-aeb894abfc732160 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB 1 2 Über das Auto ansich kann ich nichts negatives sagen. Die Rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine Schlange aufzufinden war. 617 704 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340852+00 high URT:S:O1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:42.56127+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 706 SPN-c13c1e6afc851fd3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pNNFl6aFJlbmN3V1U5Tk1HVkdiVVpLTkc1VWFrRRAB 1 0 todo perfecto 0 13 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.343091+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:03.63561+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 665 SPN-0d2803a12dc7a6c0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB 1 1 Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. 186 276 standard A1.04 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340866+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:22.405971+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 670 SPN-1ae43f0927ec77d8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB 1 1 Bei der Autovermietung angekommen mussten wir schockierend feststellen dass es auf Gran Canaria Schlangen gibt. In dieser reite sich unsere Herde weitere 30 Minuten ein um anschließend eine super günstige Kaution von 2000€ zu zahlen. 486 617 standard V1.03 {} V- I2 CR-N S2 A1 TC ES clickrent service clickrent \N \N \N f t 2025-11-26 01:27:48.340852+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:42.560867+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 672 SPN-279787415beea2a6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB 1 3 Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob man es rechtzeitig zum Flieger schafft, kann ich nur ans Herz legen, entscheidet euch für clickrent. Persönlich hatte ich noch nie so ein unbeschreibliches Erlebnis bei einer Autovermietung. 704 835 standard J2.02 {} V+ I3 CR-N S3 A1 TC ES clickrent service clickrent \N \N \N f t 2025-11-26 01:27:48.340852+00 high URT:S:R1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:42.561679+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 663 SPN-3234eb13539965df ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB 1 1 Goede medewerkers, vooral Antonio is heel vriendelijk. 211 248 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Antonio staff antonio \N \N \N f t 2025-11-26 01:27:48.340876+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:59.344083+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 664 SPN-3a2855f4ae7f2dbf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB 1 0 Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et auto saame kätte Clickrent-st. Seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. 0 186 standard V1.03 {P1.02} V- I2 CR-N S2 A2 TC ES Economy Car Rentals service economy car rentals \N \N \N t t 2025-11-26 01:27:48.340866+00 high URT:S:J1.02+P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:22.405302+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 662 SPN-87fd77799b8adf31 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB 1 0 Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. Bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. 0 211 standard J4.02 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340876+00 high URT:S:A1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:59.342675+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J4.J4_02 666 SPN-b6c8b972c6485ef7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB 1 2 Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui pole varem käinud cran canarial. 276 353 standard P3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340866+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:22.40673+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 687 SPN-85d5d1867bc0406c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 0 I do not recommend this company. They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. This is an unreasonable condition that other companies do not impose. 0 211 standard A4.04 {} V- I3 CR-W S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340164+00 high URT:S:P1.02:-3:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:54.17237+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 688 SPN-55db8f5805286894 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 1 Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. 211 307 standard A4.01 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340164+00 high URT:S:J1.02:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:54.173119+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 683 SPN-68482fb5fc775869 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB 1 0 AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no car for us. No prior contact — all we were offered was a refund and “goodbye.” Our entire trip was thrown into chaos due to a complete lack of professionalism. 0 267 standard A1.03 {J1.02} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340406+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:31.168849+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_03 684 SPN-752acdb4cc68ce43 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB 1 1 Better save yourself the stress and choose another company! DO NOT RECOMMEND. 267 319 standard R4.05 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340406+00 high URT:S:V1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:31.16942+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 680 SPN-4158c67352a74086 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB 1 1 Totally not clear where the shuttle bus was leaving at the airport. 62 106 standard A4.01 {} V- I2 CR-N S2 A1 TC ES shuttle bus service shuttle bus \N \N \N f t 2025-11-26 01:27:48.340463+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:18.93583+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 676 SPN-ab71346b9276d51e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB 1 0 It's great for a budget rental. 0 30 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340468+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:08.994635+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 677 SPN-0691f3717bd942f3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB 1 1 A little further from the airport than other companies but the service is excellent. 31 83 standard J1.02 {A1.03} V+ I3 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340468+00 high URT:S:J1.02+A1.03:+3:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:08.995182+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 681 SPN-330de3cd10d35aed ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB 1 2 Dont so this to yourself. Not a nice way to start your holiday. 107 152 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340463+00 high URT:S:R1.01:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:18.936263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 678 SPN-d288a02ee295cdce ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB 1 2 Recommend it. 84 95 standard R4.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340468+00 high URT:S:V1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:08.99573+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 399 SPN-05d39c6277e5a686 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB 1 0 Last two times was everything perfect and easy. 0 45 standard J1.03 {} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.340472+00 high URT:S:J1.03:+3:22TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:44.021701+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1540 SPN-4279905acc094f77 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE 1 0 Absolutely fair and competitive prices, new cars, clear policy, no credit card needs! 43 103 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:25:52.343796+00 high URT:S:V1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:45:18.225057+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 3267 SPN-dbb21b8954af6f4d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB 1 1 Hay Karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años para que te dejen subir. Hablan idiomas. 109 252 standard O3.02 {A2.02} V+ I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O3.02+A2.02:+1:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.198904+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 689 SPN-c06421ae04657e32 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 2 I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience. 307 373 standard R1.02 {} V- I3 CR-W S2 A1 TH ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340164+00 high URT:S:R1.02:-3:22TH.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:54.173709+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 679 SPN-00150b200fd87334 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB 1 0 Very unfriendly lady. She said it was not her problem. 0 61 standard P1.01 {} V- I2 CR-N S2 A1 TC ES lady staff lady \N \N \N t t 2025-11-26 01:27:48.340463+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:18.935024+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 675 SPN-3d835dbde9699dc6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB 1 2 Lediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert! 307 377 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340828+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:57.814851+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 686 SPN-543d228589ba244e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB 1 1 The car given does not match what we ordered. Terrible experience, don’t come. 366 414 standard O4.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340194+00 high URT:S:O1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:23:38.750147+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O4.O4_01 707 SPN-59b6baf1cbe9e702 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB 1 0 Super rápidos!!! Atententos y coches super nuevos!! 0 51 standard J1.01 {O1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.34295+00 high URT:S:A1.01+O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:07.874381+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 704 SPN-253e552811078151 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 2 The car was great, brand new with only 8 km driven with it. 335 377 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340057+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:59.709011+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 699 SPN-8731e5d015e0d4e9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 0 This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. In every other country you take the car full and return it full — simple. 0 267 standard V1.03 {J1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.3401+00 high URT:S:P1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:46.14517+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 695 SPN-4084e0f0bf4191b9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 1 I booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explore the island of Gran Canaria. I did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. Everything seemed professional. 245 392 standard J1.02 {} V0 I2 CR-N S3 A1 TC ES @ClickRent company @clickrent \N \N \N f t 2025-11-26 01:27:48.340117+00 high URT:S:J1.02:0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:35.815573+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 693 SPN-b532b93e3c7ee213 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB 1 1 Also a very slowly service, we had to wait in the queue for over 1,5 hours. 396 448 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340126+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:15.381054+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 698 SPN-0348c1a59132db5b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 4 In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). We lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so NEVER AGAIN @ClickRent! 675 835 standard J1.02 {} V0 I2 CR-W S2 A1 TC ES @ClickRent company @clickrent \N \N \N f t 2025-11-26 01:27:48.340117+00 high URT:S:J1.02:0:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:35.81727+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1544 SPN-a901d2d783847132 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB 1 1 Upon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. Now flash to today, and they automatically took 60 euros out of my bank account. I also still have yet to receive my 200 euro deposit back. 240 469 standard V1.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-01 01:25:52.343796+00 high URT:S:V1.03:-3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:45:36.296421+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 3221 SPN-5d2ede093769ab34 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2cU92dFZ3EAE 1 0 Excelente infraestructura y lugar idóneo. Hacia tiempo que no acudía y ya seas ajeno o aficionado pasarás un buen rato y sentirás la competencia de una buena carrera de karts. Para ir en grupo o simplemente tomarte algo y disfrutar de la carrera. 0 246 standard E1.03 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.904752+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3222 SPN-e6b093f9a7ec8acd Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25GR00wNHRVbTV4WjA5bE5GTkRkSEZyTW1FNWRGRRAB 1 0 Circuito de 50seg en buenas condiciones 0 39 standard E1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-23 01:52:39.833374+00 high URT:S:E1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.918733+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3223 SPN-6c04416d195b31f4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3dHBlYlRnEAE 1 0 Mon cœur balance entre le Go Karts Mar Menor et celui de Ciudad Quesada. Vraiment très bon moment sur place. 0 108 standard V4.03 {} V+ I3 CR-S S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.S v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.928655+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 705 SPN-bc523a8e1356ec69 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 3 Overall great company, we will book again directly with them. 377 426 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340057+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:59.711271+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 697 SPN-6721761c4a0b054c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 3 When I took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that I delete the photos and started threatening us with the police. It was simply a scandal! 570 675 standard P1.02 {} V- I3 CR-N S2 A1 TC ES @ClickRent company @clickrent \N \N \N f t 2025-11-26 01:27:48.340117+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:35.816745+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 700 SPN-df59fe20bed71904 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 1 It has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. I’ve contacted them multiple times with no response. I ended up losing €67, and the car rental itself was €70 — so I basically paid double. 267 396 standard V4.05 {} V- I3 CR-N S3 A2 TR ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.3401+00 high URT:S:J1.03:-3:33TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:46.146731+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_05 701 SPN-e6093d6b1929bea8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 2 Based on my experience, I would stay away from this company — they made my holiday stressful. 396 455 standard R2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.3401+00 high URT:S:R1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:46.147535+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 694 SPN-eebf8cbc5f49921f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 0 I've rented cars from many rental companies, large and small, and I've never encountered such disrespectful customer service and a complete lack of professionalism. Our entire group was treated very unfairly/We were severely let down by the service, and our sightseeing plans were ruined. 0 245 standard P1.02 {} V- I3 CR-N S2 A1 TC ES @ClickRent company @clickrent \N \N \N t t 2025-11-26 01:27:48.340117+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:24:35.814848+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 1551 SPN-62935ac4cda3fa26 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE 1 1 I would recommend this place to rent from if you want to be in and out in a timely manner. Have a clean fresh stylish vehicle to sport with great pricing. 319 426 standard A1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:A1.01+V1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:45:56.123967+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1553 SPN-ac86d47ba8709b94 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE 1 1 Clearer Instructions at the Airport: There should be clear signs indicating where to go upon landing. They mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. Providing a detailed map or directions in the confirmation email would solve this issue. 120 366 standard A4.04 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:A4.04:-2:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:46:08.66345+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 708 SPN-20fa751797976096 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21sTVdsWnNkMXBKU1ZoWFlYQnhWM1JzVldzMFdFRRAB 1 0 Muy buen precio y muy buenos en gestión y todo. 0 47 standard V1.01 {A1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.342797+00 high URT:S:P1.01+A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:12.690407+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 709 SPN-1ad07efea0972af9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB 1 0 Ze vragen 1200 euro voor een bluts die al aanwezig was. 0 61 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.342405+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:16.642655+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1554 SPN-7ef40445952dc94d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE 1 2 Staffing at the Office: There was only one person working in the office. When a full shuttle bus arrived, the wait time became frustratingly long. Unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. This was a waste of time and could be easily avoided with better staffing. 368 634 standard J1.01 {J1.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:J1.01:-3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:46:08.664107+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 584 SPN-394c2411eeff97bc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB 1 0 The car and the service were great. 0 30 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340522+00 high URT:S:O1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:42.538083+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1559 SPN-4245326a50cbc5d6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB 1 1 The only thing is that the shattle from the airpors is not simple to get. 31 83 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:A1.04:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:46:30.677796+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1563 SPN-4f791a291208bfef ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB 1 0 First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs and no one to pick you up. Had to call to ask for the shuttle. 0 174 standard A1.04 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:25:52.343796+00 high URT:S:A4.04:-3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:46:53.365767+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1385 SPN-517bfca327311b08 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB 1 1 They then pointed out the smallest scratches so I understood this was a money making effort. Upon return they checked forensically for damage even under the car. But couldn’t find anything. At last they found something they liked, sand in the car. Surprising given the destination?! They wanted to charge 50 EUR for a deep clean! I refused but they were adamant. 218 469 standard V1.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340526+00 high URT:S:O1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:03.35595+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1567 SPN-15ebf83bb2825405 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 1 Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. 90 157 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:O2.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:47:08.847134+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O2.O2_01 1568 SPN-585e65ce0e3a0172 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 2 When I returned the car they just quickly check the car and told me everything is OK. I get back my deposit immediately. 157 241 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:47:08.847953+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1569 SPN-354692f7ea41841b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 3 Suggest buy their full insurance. 241 270 standard A1.02 {} V0 I1 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:A1.02:0:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:47:08.848497+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 1578 SPN-83e28176546ff0e0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_63 1 0 Great price performance ratio 0 30 standard V2.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:25:52.343796+00 high URT:S:V2.04:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:47:49.02733+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_04 1579 SPN-57ea148967ac3ad0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_63 1 1 very friendly and service oriented team, even German speaking with Daniel 31 83 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:47:49.028017+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1589 SPN-32d6a3ede51108d6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_69 1 1 whole rental went really smoothly, car was clean and brand new 67 113 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:48:36.209378+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 719 SPN-fb92c1259da987c1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB 1 1 si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con Isofix ya que son mucho más seguras para los bebés pero solo es una crítica constructiva para mejorar! 267 353 standard O1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341708+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:02.536863+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 721 SPN-ae536b4a28188b78 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB 1 1 Wir waren 30 Minuten zu spät zur Abgabe, war gar kein Problem. 157 203 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341327+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:10.695845+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 718 SPN-0e9e7cb1b3ba8a94 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB 1 0 Mi experiencia fue muy satisfactoria gracias a Valentina ya que nos explicó todo muy bien y nos ayudó y nos asesoró en todo momento para hacer la gestión de la mejor manera, muy contentos con el trato y con el coche que fue exactamente el que elegí. 0 267 standard P1.01 {O1.01} V+ I2 CR-N S3 A1 TC ES Valentina staff valentina \N \N \N t t 2025-10-27 01:27:48.341708+00 high URT:S:A1.01:+2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:02.53636+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 714 SPN-2f2cff9d8b3c53f4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB 1 0 Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores 0 164 standard R1.02 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.342068+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:38.685004+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 713 SPN-3cbe1b748ce31c21 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kUmFGTmphamxZWXpBd2NGRndiMjlhWjFWdFltYxAB 1 0 Tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen, después de que el coche se averíe y sea imposible repostar te cobran un repostado de 103€ 0 164 standard V1.03 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.34207+00 high URT:S:P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:34.664015+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 722 SPN-49602cea0693e7c8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB 1 0 Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! C’est scandaleux. 0 139 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341317+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:21.770319+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 715 SPN-5110521a2b829c5a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB 1 0 Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. Con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total. 0 218 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341978+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:47.30606+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 717 SPN-5403bf7f1f4513a4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB 1 1 Nos atendió Hugo, muy profesional y servicial. 84 118 standard P2.01 {} V+ I2 CR-N S2 A1 TC ES Hugo staff hugo \N \N \N f t 2025-10-27 01:27:48.341799+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:54.809629+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_01 712 SPN-733a5a9a56812903 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB 1 1 Mitarbeiter dort brauchen 30 Minuten pro Buchung, keine Empfehlung 79 116 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.342072+00 high URT:S:J2.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:28.053167+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 725 SPN-764528cb85bb6beb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB 1 0 Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches. 0 85 standard V4.01 {O1.01,A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341309+00 high URT:S:P1.03+O1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:29.027672+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 726 SPN-940d9f8fc7ec2038 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB 1 1 El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche. 85 195 standard A4.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341309+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:29.028533+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 723 SPN-a911beaaa739482c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB 1 1 Autant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. 139 276 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341317+00 high URT:S:J2.02+E1.02+A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:21.77124+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 724 SPN-d322d8fb92ecba93 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB 1 2 Passez votre chemin il y a beaucoup mieux ! 276 308 standard V4.03 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341317+00 high URT:S:R1.01:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:21.771745+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 1641 SPN-f8732741996e2c02 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB 1 2 easy process 28 41 standard J2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:25:52.343796+00 high URT:S:J2.01:+2:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:52:19.681914+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 720 SPN-ecb76c63703a5483 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB 1 0 Alles lief äußerst schnell und unkompliziert. Das Personal war sehr nett. Sowohl Abholung als auch Abgabe lief sehr routiniert, entspannt und reibungslos. 0 157 standard P1.01 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341327+00 high URT:S:J1.03+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:10.695152+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 727 SPN-eedbad9d44ebfff5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB 1 0 Estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do início ao fim. 0 98 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341303+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:40.022112+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1590 SPN-cbc25fc9562898ac ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_69 1 2 Compared to other experiences with car rental on this island, this company is a real treasure. 114 179 standard R1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:R1.02:+3:22TC.ES.B v5.1 gpt-4o-mini fd155577 2026-01-29 04:48:36.210435+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 729 SPN-44fee0f290200dd5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB 1 2 O horário da abertura da loja foi pontual. 140 174 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341303+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:40.024053+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1604 SPN-d8e606a69f9d4014 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB 1 0 Waiting in the queue for 100 minutes is not the way to start your trip. 0 75 standard J1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:25:52.343796+00 high URT:S:J1.01:-3:33TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:49:37.067114+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 731 SPN-8211c99b2d8595a1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB 1 1 Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden niet moeilijk om wat zand in het interieur. 408 508 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341262+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:48.841133+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1606 SPN-725ff84a5f338017 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB 1 1 Not professional at all. 99 119 standard P1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-29 01:25:52.343796+00 high URT:S:P1.02:-3:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:49:44.315594+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 735 SPN-e34a626fb1068b0c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB 1 0 Entregamos el coche lavado con el depósito lleno, impecable. Antes de llevárnoslo hice un vídeo del estado del auto. 0 106 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341195+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:13.40422+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 739 SPN-15c27419502a61bf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB 1 1 Los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás habia cogido uno) me enseñaron amablemente a usarlo y así estar cómoda. 197 366 standard O1.02 {} V+ I2 CR-N S2 A2 TH ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341175+00 high URT:S:O1.02:+2:22TH.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:24.920069+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 734 SPN-0b888c0d1d10548f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB 1 2 Si vais a alquilar coches, no recomiendo nada esta empresa. 470 510 standard R1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341256+00 high URT:S:V1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:01.349023+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 728 SPN-1b8cfe10dc4370bf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB 1 1 O dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro. 99 139 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341303+00 high URT:S:P1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:40.023483+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 732 SPN-52b9dafe3a839b33 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB 1 0 Experiencia pésima: Aunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero. 0 290 standard R1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341256+00 high URT:S:J2.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:01.347257+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_03 738 SPN-598e5e7f28256926 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB 1 0 He alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo decir que es la mejor en la que he contratado. El trato humano que tienen es de 10, siempre muy cercanos. 0 197 standard P1.01 {O1.01} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341175+00 high URT:S:A1.01+O1.01:+3:22TH.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:24.918917+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 737 SPN-6f39d7a0ffbec793 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB 1 2 Son unos jetas. Querían cobrar del seguro el rasguño. Desde luego no son de fiar. He alquilado otros vehículos en otras compañías y no he tenido estas murgas. No me ofrecieron ninguna confianza. Tanto es así que antes de que nos dijeran lo del rasguño ya me comenté a mí marido: estos no s van. 307 487 standard R1.01 {} V- I3 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341195+00 high URT:S:A1.03:-3:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:13.405492+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 772 SPN-731e9b4d15d16f81 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s0MWRtMVBlSGRPT1VkWmFITXpWRWxNVVY5M1VGRRAB 1 0 Nette Mitarbeiter, es hat alles reibungslos funktioniert. 0 57 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342697+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:47.903523+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 730 SPN-960ab81848f684b7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB 1 0 Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van Clickrent. Kennelijk was Localrent slechts een tussenpersoon. Ik was daar behoorlijk kwaad om geworden. Clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. Hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. Uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. 0 408 standard V1.03 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341262+00 high URT:S:P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:26:48.840558+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 736 SPN-e50a58a7f9dfcc8f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB 1 1 Al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfecto en la chapa en el maletero. Le dije que teníamos fotos hechas cuando lo recogimos y que había ese y otros 2 pequeños arañazos (pequeñísimos). Pero estaban fotografiados. Al ver que teníamos fotos, la cosa cambió. 106 307 standard R1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341195+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:13.405038+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 741 SPN-037e215524d3d359 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB 1 0 Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mitarbeiter bemerkt. Nach Abgleich mit den bekannten Schäden, die im Computer vermerkt sind, wurde mir der Schaden glücklicherweise nicht angelastet. Ich bin absolut zufrieden. 0 267 standard R1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341155+00 high URT:S:R1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:35.185233+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 742 SPN-55364a33557846b4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB 1 1 Einen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem Voucher bei der Adresse. Eine Bandansage über die angegebene Telefonnummer über den Abholpunkt am Flughafen, welche in einer fremden Sprache zu hören ist, ist bei Verkehrslärm am Flughafen schwierig zu verstehen. Ich habe lange gebraucht diesen Punkt zu finden. 267 570 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341155+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:35.187591+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1613 SPN-94c5ca2e493c7738 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB 1 1 not trying to rip off 42 63 standard R1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:R1.02:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:50:18.288512+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1626 SPN-a7e25ba1fefc5850 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE 1 1 a very simple, easy car hire at a very good price for a very good car 99 134 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:O1.04+V1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:51:11.356813+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1628 SPN-f39b3e515a04b361 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE 1 1 I strongly recommend this rental in Las Palmas 57 92 standard R1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:25:52.343796+00 high URT:S:R1.02:+3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:51:21.376002+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 750 SPN-5476afd21a5282ba ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 2 Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un Seat Ibiza, pero bueno. 442 570 standard V1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340834+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:29.426149+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 3224 SPN-7c679a8737610f1f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN4cXFQN0tBEAE 1 0 Experiencia más que recomendable, y los dueños son encantadores. 0 64 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.939973+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3225 SPN-49e81821826aa125 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE 1 0 Circuito bastante grande y a buen precio. 0 42 standard V1.01 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.950186+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3226 SPN-66b3c1086e39b6a9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE 1 1 Esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente. 43 136 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.95137+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3227 SPN-266b1e8d880d3edd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB 1 0 Uno de los mejores circuitos de Karts de Murcia. Buenos coches y muchas curvas para pasar un buen rato. 0 104 standard O2.03 {E1.03} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+E1.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.961599+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 746 SPN-a1307e73378b98ad ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB 1 1 Nel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. Arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo). Fortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!! 486 754 standard V1.03 {A1.03} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340897+00 high URT:S:J1.02+A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:58.305738+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1730 SPN-2296b2db719fd9dd Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB 1 1 I don’t think I’ve ever felt safer and happier at a club. 204 246 standard E4.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:E4.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:16.74232+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 743 SPN-c926c79f097ef712 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB 1 0 Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Vermieter in Las Palmas sagte uns als er den Aufkleber von clickrent erblickte ungefragt, dass ClickRent ein sehr guter Vermieter und sehr zuverlässig sei. Das war für uns angenehm zu hören und sehr beruhigend. 0 267 standard R2.02 {} V+ I3 CR-N S2 A1 TC ES ClickRent brand clickrent \N \N \N t t 2025-10-27 01:27:48.341109+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:43.230526+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 745 SPN-e54730578ca3e111 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB 1 0 Esperienza pessima, non noleggiate l’auto in questo Rent: Pagato con Booking 30€ di noleggio per una Fiat 500 per 3 giorni + 50€ di assicurazione completa. Arrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). Abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza. 0 486 standard V1.03 {J1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340897+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:58.304294+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 784 SPN-ee7140e7b9865fdc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB 1 3 Zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-Vegeta i San Jose besplatan u odredjenim ukicama. 285 367 standard A4.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341912+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:52.066429+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_02 762 SPN-ba7771d47381a4c2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 0 The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup). When we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. So we didnt know how to ask for the shuttle to come to the airport to pick us up. 0 408 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340148+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:14.172248+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 763 SPN-958cdb9580bb31d2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 1 Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were picked up within a few minutes. 408 487 standard J1.03 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340148+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:14.173426+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 764 SPN-51e3b48c1e49b2bb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 2 After that, everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great. 487 617 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340148+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:14.173882+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 761 SPN-56db66cdd5891d69 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB 1 1 One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there. 139 239 standard O1.02 {} V± I2 CR-N S2 A1 TC ES Nissan Micra Car Model nissan micra \N \N \N f t 2025-10-27 01:27:48.340153+00 high URT:S:O1.02:±2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:02.425857+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1639 SPN-2e69ef7cb1f803fd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB 1 0 Nice people 0 12 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:25:52.343796+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:52:19.661456+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1640 SPN-8502ae413ca86b73 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB 1 1 no hidden fees 13 27 standard V1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:25:52.343796+00 high URT:S:V1.03:+3:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:52:19.674937+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 785 SPN-0b2cb3b0206acfc6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB 1 4 Sve preporuke! Hvala vam i do skorog vidjenja. 368 410 standard R1.01 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341912+00 high URT:S:R1.01:+2:21TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:52.067183+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 753 SPN-35512496abfb6bf7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 5 La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial, un Seat Ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. Perfecto todo. 835 1005 standard O1.01 {} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340834+00 high URT:S:O1.01:+3:33TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:29.427844+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 3228 SPN-c2b319f9ad1b5cc2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB 1 1 Además el precio es bastante asequible. 105 143 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.963344+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 766 SPN-d6f37cc68575d732 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 1 About the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance. 267 487 standard V1.03 {J1.02,A1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340097+00 high URT:S:P1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:30.767862+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 755 SPN-39f6bf215ad6424c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB 1 1 Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit erst mit 8:00 Uhr angegeben war. Freundliche und schnelle Kontrolle, sowie sofortige Freischaltung der 2000.€ Kaution, welches mit die Kreditkartenapp nach 2 min. schon bestätigt hatte. 290 470 standard J1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340795+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:43.348815+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_04 751 SPN-35e37a27f8f72a08 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 3 Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la simpatía de verdad. Miró el coche, y todo perfecto. Mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. Lo dicho, muy cercana. Gracias Mery. 570 754 standard P1.01 {O1.01} V+ I3 CR-N S2 A1 TC ES Mery staff mery positive \N \N f t 2025-10-27 01:27:48.340834+00 high URT:S:A1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:29.426594+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 752 SPN-6f0539beb3744f8c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 4 Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. 754 835 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340834+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:29.427087+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 3229 SPN-0b4991da74c7b2f3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB 1 0 Una experciencia única!!! Lo recomiendo 100%. Buen personal, buen trato, buenos karts y buena pista. 0 101 standard P1.01 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.974773+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1642 SPN-5c1355c5b480cda1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB 1 3 good cars 42 51 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:25:52.343796+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:52:19.686932+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 768 SPN-e1c364fd6c8a2619 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 3 The car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast. 685 835 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340097+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:30.768853+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1650 SPN-33b0b0c9429425f9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB 1 0 Nice experience with great people 0 34 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-21 01:25:52.343796+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:53:06.151698+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 770 SPN-9e4ea9f282e8991e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxakxYZEpaWEkyUmt4TWNGVTJXaTFNT0RsdFVVRRAB 1 0 Es war alles perfekt. 0 21 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342973+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:39.363928+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 771 SPN-0d9116f7143116d6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkbU1tUnZZVk0zYlV4dFRHZDJkM05hUkdwU2JIYxAB 1 0 Muy buena experiencia y muy recomendable. 0 41 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342809+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:43.540081+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1651 SPN-fc463c8957e34337 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB 1 1 very nice and new cars 35 56 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-21 01:25:52.343796+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:53:06.153996+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 773 SPN-00eb4925461a0c67 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WS1lXcDVielpDV2xWVFNubFJVRGhtWXpkMlgxRRAB 1 0 Tienen pocos trabajadores y la fila rápida es mentira. 0 54 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342625+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:52.159166+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 776 SPN-7a07db107571c6f2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB 1 1 Lo recomiendo. 67 76 standard R1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.342576+00 high URT:S:R1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:03.749096+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 783 SPN-15ea6aac03808ae5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB 1 2 U ponudi smo dobili Peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji Citroën Berlingo, u koji smo mogli svi da se smestimo bez problema( 2 odraslih i 4 dece,od toga 2 odrasle dece), plus prtljag. 104 284 standard O1.02 {} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341912+00 high URT:S:O1.02:+3:33TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:52.065794+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 779 SPN-46783cdca95994ae ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB 1 0 Trato al cliente pésimo. Las dos mujeres q nos atendieron, desde el principio brillaron por sus malas formas y poca colaboración. Una joven y otra más mayor. 0 164 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341949+00 high URT:S:A1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:21.143692+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 781 SPN-5a6b0f5435401f01 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB 1 0 Izuzetno ljubazno osoblje, spremno da pomogne. 0 42 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341912+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:52.064104+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 777 SPN-5fabfa0e7e2ce19b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCelpsRjZNR1IzY21zMWJtOWlVbU5zY1dsMlpuYxAB 1 0 Presentar una reclamación en las oficinas de protección al consumidor en España y en Bruselas. Esto funciona. 0 92 standard J4.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342528+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:08.533397+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J4.J4_02 780 SPN-73a051ea57f027f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB 1 1 No alquilaré más y no recomendaré a esta gente. Falta de educación. 164 210 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341949+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:21.146212+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 774 SPN-a22978dd984eee26 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2taUGRHVnhXbXd4WTNsUlJ6STRjRzFZY1hkdWNrRRAB 1 0 Super amable, profesional, sin problemas y buena gente! :) 0 58 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342583+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:56.755851+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 782 SPN-b061763c9613089a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB 1 1 Za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista. 43 103 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341912+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:52.065047+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 769 SPN-b7352341c842075e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGMVMzUllUbXh3WXpaMVVXeHhTMmd3VFhnNFQxRRAB 1 0 Publicidad engañosa 0 19 standard R1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.343098+00 high URT:S:V1.01:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:35.042913+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 775 SPN-ed7813a31b7a6d3e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB 1 0 Muy contento con el servicio recibido y el trato del personal. 0 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342576+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:03.748422+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1652 SPN-1d7ae5dbf613764a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 0 Preislich top! Wir haben nur 160€ bezahlt. 0 40 standard V1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:25:52.343796+00 high URT:S:V1.01:+3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:53:19.55018+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 787 SPN-4f5d2ab22212046f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB 1 1 Al final alquilamos con otra compañía. NUNCA VOLVERÉ A ALQUILAR CON CLIKRENT. 164 218 standard R1.01 {} V- I3 CR-N S1 A1 TC ES CLIKRENT company clikrent negative \N \N f t 2025-09-27 01:27:48.341859+00 high URT:S:R1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:04.381246+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1655 SPN-57a90a9297ff6df1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 3 Wir würden hier wieder mieten. 284 308 standard R2.01 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-11 01:25:52.343796+00 high URT:S:R2.01:+2:11TF.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:53:19.722221+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_01 789 SPN-2d25aeef78ea47ea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB 1 1 la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo. 307 366 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341849+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:14.5149+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 790 SPN-820d6d52bce9f4f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB 1 0 Todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabajadores un encanto todos. 0 139 standard O1.03 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341845+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:22.449602+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 791 SPN-56c7b5d38434b7e9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB 1 1 El unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un 10 140 205 standard A1.02 {} V0 I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341845+00 high URT:S:A1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:22.450338+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_02 792 SPN-e5973f581a770231 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkblpUQnhla1pIZWxCR2JraE1WM2hLU0ZCV2JVRRAB 1 0 Tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entrega del vehículo todo perfecto, sin duda lo mejor para alquilar un coche, muy profesionales en lo suyo y los empleados estás siempre de muy buen humor, eso es imprescindible en estas empresas. 0 267 standard J1.01 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341823+00 high URT:S:J1.01+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:27.944711+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 797 SPN-cbe1a9f9503bd271 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB 1 0 Achtung! Habe 95 € umsonst bezahlt. Die Firma hat kein Büro am Flughafen. Man wird darauf hingewiesen, dass ein Shuttlebus am Parkplatz stehen soll – aber dort ist nichts zu finden. Telefonisch ist niemand erreichbar. 0 197 standard J1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341549+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:54.120798+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 799 SPN-260e4c65d1fb9754 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB 1 0 Un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4 llamé para cancelar y me dijeron que por qué no era antes de 24 horas no la devolvían …. Pedí que me cambiaran de coche por q el que reserve era demasiado grande y me dijeron que no!!!! 0 290 standard J1.02 {J1.03,P1.02} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341523+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:04.741005+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 998 SPN-68a0f18b57112379 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE 1 2 Auto aber super 80 91 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342689+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:39.664253+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1815 SPN-6ecbe33e377a3917 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE 1 0 Very good 😻😻 0 12 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:25.488732+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 798 SPN-5c9f84470ee25dca ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB 1 1 Sehr unseriös, gehört dringend gemeldet! 197 227 standard R1.02 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341549+00 high URT:S:A1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:54.1221+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 796 SPN-8941b8a23d3e81c2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2taRmMwSnRVMXBXZW1wSVVERTFjbmMyYm1SbFVIYxAB 1 0 Muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancelación gratuita” y no especifican q tienes 24h de antelación para cancelar . No reembolsan y tampoco t dan una alternativa para cambiar el coche por el mismo precio 0 263 standard V2.03 {P1.02} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341674+00 high URT:S:J1.02+P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:45.750125+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 786 SPN-8ec1c5b82a27b1b0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB 1 0 Nada recomendable, intentan engañarte de todas las formas posibles. Si no cedes a sus cobros extras te niegan la recogida del vehículo. Una experiencia muy desagradable. 0 164 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341859+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:04.379598+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 793 SPN-a2d474a1614a4a4a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25oMk9VbzFlVXBsVG10MGNYVkJYek5vYkRrelEyYxAB 1 0 El trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!! 0 98 standard P1.01 {O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341763+00 high URT:S:A1.01+O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:32.105258+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 788 SPN-e3804c5f016fa114 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB 1 0 La recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar al sitio, porque nadie nos avisó que había bus que nos recogía, al llegar, nos atendió una chica joven de pelo largo liso que no pudo ser más desagradable y maleducada, nos cobró obligatoriamente cosas que nos queríamos y el trato fue pésimo. 0 307 standard V1.03 {A1.03} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341849+00 high URT:S:J1.02+A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:14.514353+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1761 SPN-bdf340c4e55eb56b Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB 1 1 I paid for a ticket to see the event, not for a chance to see the event. It would be better to charge a little more for tickets instead of selling too many. 245 335 standard V1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:V1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:01.228135+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_02 804 SPN-7befec27c1bce4b1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB 1 3 Fazit: echte Empfehlung! 267 290 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341521+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:22.362009+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 805 SPN-28f0bac8ac763313 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB 1 0 Contratado el alquiler del vehículo y el seguro a través de Booking, me dicen que de ese seguro no se responsabilizan porque no es el que ellos trabajan, que en cualquier caso, primero les tendré que pagar a ellos y después reclamar a Booking. 0 267 standard J1.02 {P1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341305+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:35.358832+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 809 SPN-3fba9fe2590e20ce ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB 1 1 Man wird zum Standort geshuttelt und ist dann im Nirgendwo und hat keine Möglichkeit, sich anderweitig zu orientieren, da man dem Unternehmen dort quasi ausgeliefert ist und nicht mehr einfach dort weg kommt! 267 392 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.3413+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:50.988229+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 810 SPN-1535b5f23746d9c3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB 1 2 Zudem haben die Fahrzeuge nicht ausreichend Power, um problemlos die Berge hochzukommen. 392 455 standard O1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.3413+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:50.988983+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 814 SPN-fcedec3e5f6a9934 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB 1 0 Das einzig schlechte war die Abholung vom Flughafen, die hat sich verzögert, weil es unterwegs einen Autounfall gab und die Fahrerin im Stau stand. 0 157 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341111+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:17.192874+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 802 SPN-06dd8cf932967972 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB 1 1 Personal freundlich und alles digital. 157 185 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341521+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:22.36097+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 800 SPN-170662038957237f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB 1 1 en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar nada dinero perdido sin poder utilizarlo ….: cuidado con este sitio 290 420 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341523+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:04.74166+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 808 SPN-2e96a7bb3a45397b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB 1 0 Kreditkarte muss noch mindestens 6 Monate gültig sein, sonst wird sie nicht zur Hinterlegung der Kaution akzeptiert! Deshalb wurde ich genötigt, vor Ort eine Versicherung von zusätzlich 156€ zu zahlen, die ich dann problemlos mit der Kreditkarte zahlen konnte! Genauso wie die Tanksicherheit von 200€! 0 267 standard A4.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.3413+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:50.986004+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 813 SPN-47d3f27a72af1764 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB 1 1 Ein Stern Abzug allerdings, da es fast 5 Wochen gedauert hat, bis die Blockierung der Kaution auf der Kreditkarte aufgehoben wurde. Vor Ort wurde uns zugesagt, das diese direkt am gleichen Tag storniert wird, da alles mit dem Auto in Ordnung war. Hat uns persönlich zu lange gedauert. 164 366 standard J1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341214+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:00.12981+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 812 SPN-99a5dacf8a1bf1f2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB 1 0 Freundlicher Service. Die Mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich Angst gemacht. Es hat alles super geklappt und alle Mitarbeiter waren freundlich. 0 164 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341214+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:00.127337+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 811 SPN-cd609e35736b9715 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB 1 3 Bitte macht nicht den selben Fehler, auf diese günstigen Abzocker reinzufallen. Ich hab Lehrgeld bezahlt. 455 516 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.3413+00 high URT:S:V1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:50.989502+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 806 SPN-e9538fa13c387c12 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB 1 1 Así mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo). 267 319 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341305+00 high URT:S:P1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:35.359516+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 803 SPN-f84cd04c3a82df5d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB 1 2 HINWEIS: der Shuttlebus holt einen auf der Abflugebene gegenüber Ausgang 2 ab NICHT gegenüber der unteren Ankunftsebene wo die ganzen Busse stehen! 185 267 standard A1.04 {} V0 I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341521+00 high URT:S:J1.03:0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:22.361544+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 807 SPN-f9da75e169c9e46d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB 1 2 No obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado. 319 392 standard P1.01 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341305+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:35.360808+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 815 SPN-2538a56f90522636 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB 1 1 Ich hatte auch einen Super Wagen bekommen, gebucht war Seat Ibiza o.ä. und bekommen habe ich einen Audi A1 😁 ohne Extrakosten o.ä. 158 233 standard O1.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341111+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:17.215927+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 824 SPN-622940ee2946334f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_68 1 0 I had a smooth rent, great customer service, and very nice affordable cars 0 74 standard J1.01 {A1.01,O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.340569+00 high URT:S:J1.01+A1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:50.953022+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 817 SPN-19bc42d6af03d38d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB 1 0 Bei der Auto Abholung musste ich ewig warten… vor Ort habe ich dann erfahren das die sich 1000€ vormerken/ abbuchen und ich die in einem Zeitraum von einem Monat zurück erwarten kann…. 0 164 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341101+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:29.455356+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 818 SPN-93923e4abba2358e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB 1 1 Das Auto selbst eine Zumutung für die Landschaft…. Dafür war das Auto leider gar nicht geeignet. Bei 30-40 km/h eine schaltempfehlung vom 1. Gang gegeben. Über diese knapp 40 km/h kam man keines Wegs drüber… Zumindest passten gequetscht 4 Koffer in die Schrott Karre. PEUGOT 208 Online haben wir Seat Ibiza „oder ähnliches“ gemietet. Das Auto hatte schon einige Schrammen und Farbe ist abgeblättert. Man hatte schon die Sorge das einem was angehangen wird. 164 487 standard O1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341101+00 high URT:S:O1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:29.456715+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 819 SPN-cf6582ed5ced76dd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB 1 2 Die Rückgabe ging jedoch zügig und das Geld kam glücklicherweise auch schnell zurück - am selben Tag noch. 487 558 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341101+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:29.457167+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 823 SPN-d6bd30d7f5cb152e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB 1 1 Would definitely use again and recommend 31 63 standard R4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.340676+00 high URT:S:R1.03:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:45.458964+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 577 SPN-f325972c2daf50b7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB 1 0 Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. Al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo. 0 319 standard V4.05 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.340793+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:14.796274+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_05 837 SPN-3e454ec48be4eef2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB 1 0 Personal atento y amable. 0 25 standard P3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342453+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:01.637902+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_01 821 SPN-ccca775c6c420bef ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB 1 1 Le reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire les papiers été rapide. Le retour du véhicule a été rapide aussi. Le personnel super sympa. 290 420 standard O1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.340799+00 high URT:S:O1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:38.331189+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1762 SPN-b3db8123e56c87e6 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB 1 0 Great gay club in the city, lots of young people, music is also mostly really nice! 0 78 standard E4.01 {O1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:10.294483+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 826 SPN-8c156355f928e36c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkdVRWTlhia0pJVUdoWVlUQXlkbTV1UkhoTWJtYxAB 1 0 Todo Oks perfecto. 0 17 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342999+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:00.862088+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 828 SPN-2cec889826b5cc26 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21OTU5EQjVWMGxJU0cxd1pqTmxObmd5T0hCRVZHYxAB 1 0 Buenas experiencia buen trato y rápido 0 38 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342801+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:10.833363+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 829 SPN-538f2bdafb54e48b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WMFR6a3hZMVZHV1hndFRGSXhaakJqV2pjNGRHYxAB 1 0 Vynikajúce služby, ochotní personál doporučujem 0 45 standard P3.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342768+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:15.096988+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 830 SPN-55841791f5a55614 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xrMVVsVXlNakUzYzNCR2NWUnJTM2N0UzNWV1pGRRAB 1 0 Excelente trato por parte del equipo. 0 36 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342707+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:19.228337+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 827 SPN-5d906b3451a391bf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCMFpGUkhjbEpPZUhnelpuTnhSekJuTFdNemVuYxAB 1 0 Personale gentilissimo, servizio impeccabile! 0 42 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342928+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:06.533939+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 825 SPN-6a7dea58e1d5c93c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT20xdFZYVXhTRk54UzBKTk9UZDBOblp6UWsxVFoxRRAB 1 0 excelente recomendada 0 20 standard R4.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.343086+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:55.409558+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 816 SPN-d4c067ab21853186 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB 1 2 Und der geblockte Kreditkartenbetrag wurde sofort wieder freigegeben nach Abgabe. Top Service, super nette Mitarbeiter. 234 303 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341111+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:17.249483+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 754 SPN-91f9679ed1e45f2f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB 1 0 Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min Fahrt zur Station, schnelle und sehr freundliche Bearbeitung und herausgabe der Schlüssel. Fahrzeug ( JEEP ) war sauber und stand schon direkt vor der Station. Tolles Fahrzeug, welches wir nach 14 Tagen wieder an der Station abgeben konnten. 0 290 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340795+00 high URT:S:O1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:43.347757+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 840 SPN-88d4ca69ab54bee9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB 1 0 Nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur l'île 0 85 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342136+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:16.14967+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 844 SPN-f13896a6da827dda ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB 1 0 Mi experiencia ha sido perfecta con esta compañía. Hay un transporte que te recoge en el aeropuerto y te lleva hasta la oficina y viceversa. 0 139 standard J1.03 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341831+00 high URT:S:J1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:35.438905+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 846 SPN-5ea479ff533d227d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB 1 0 Transfer hat etwas gedauert, Auto OK, Abgabe nur unkompliziert, wenn man Vorort eine zweite Vollkasko direkt von Clickrent bucht. 0 139 standard J2.02 {O1.01} V0 I1 CR-W S2 A2 TC ES Clickrent Company clickrent \N \N \N t t 2025-08-28 01:27:48.341815+00 high URT:S:J2.02+O1.01:0:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:43.341927+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 842 SPN-0298c6ffa3d46de9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSVlkwSjVXbmgwUzJwNVFVTm9WM0V0YlZOUlNsRRAB 1 0 Todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el coche en la oficina y a la hora de la entrega igual todo perfecto y sin problema 0 194 standard P1.01 {J1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341992+00 high URT:S:A1.01+J1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:21.137346+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 843 SPN-04d51448e87ba51b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2prM01Yb3pTemxpYVV4YWNUQjNjVkZVTlhFMlgxRRAB 1 0 Neodporúčam, som sklamaná. Pri požičaní auta sme si zaplatili základné poistenie. Bohužiaľ, pri parkovaní na parkovisku sa mi podarilo jemne oprieť auto o vyvýšený obrubník. Odrel sa lak sotva na 1cm. Z účtu mi strhli 480 eur!!! Faktúra bola za poškodenie podvozku, ktorý som naozaj nepoškodila a nemám to ako ani dokázať. 0 335 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341851+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:27.286533+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 845 SPN-4c966f954bd47b29 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB 1 1 La atención fantástica, sin engaños ni palabrerios raros, gracias chicos ! 139 186 standard R1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341831+00 high URT:S:A1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:35.510561+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 832 SPN-688ca8d1ebb36a17 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB 1 1 Elige la retención de 1000€. 67 90 standard V1.01 {} V0 I1 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.342679+00 high URT:S:P1.03:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:26.790087+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 841 SPN-83c277ec9ad50fdc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB 1 1 Et l'accueil très chaleureux 86 110 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.342136+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:16.150386+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 831 SPN-a4dc4f443fad7ec1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB 1 0 Cuidado con que te ofrezcan seguros que ya tienes contratados. 0 66 standard V1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342679+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:26.782461+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 836 SPN-bf9228caeaba744b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB 1 1 pero mejor aún el trato recibido por parte del personal. 100% recomendable 20 83 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.342461+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:48.845587+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 839 SPN-d9a4ca0ecada52bc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psa01VRkJOVWsxWTNJeFNrRkljakZuWkRsNk4yYxAB 1 0 La mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el personal, el traslado, y el precio, fantastico 0 139 standard V4.01 {A1.01,P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342304+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:08.287615+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 847 SPN-e844cc3f5e74afe8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB 1 1 Wir buchen beim nächsten Mal wieder bei seriösen Autovermietern. 140 182 standard R2.02 {} V- I2 CR-B S2 A1 TF ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341815+00 high URT:S:R1.01:-2:22TF.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:43.342489+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 838 SPN-f6db2e21244907dc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB 1 1 Nos han dado un coche de gama superior. 26 60 standard O4.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.342453+00 high URT:S:O2.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:01.6387+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O4.O4_01 834 SPN-fc01ef3bb47b155e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xOWlQzVnBSamd0YWs0MVl5MXhRWGN4U21oYWFXYxAB 1 0 Todos muy amables y el servicio y el coche muy bien 0 51 standard P1.01 {A1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342518+00 high URT:S:A1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:37.196262+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1660 SPN-cc031b9543c9b767 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB 1 2 Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen. 470 570 standard V1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-10-27 01:25:52.343796+00 high URT:S:V1.01:+2:22TF.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:53:40.565048+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 849 SPN-9ce0d178f28a2505 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB 1 0 Alquile un coche con ellos atraves de Booking con el seguro extra que ofrece Booking (155€) Cuando fui a recogerlo era un coche muy inferior al que yo reserve, pero aparentemente estaba bien de carroceria, el chico que me atendio, me reprocho que contratase el seguro con Booking e intento venderme un seguro extra (200€+) recalcando que solo así estaríamos cubiertos completamente, no lo entendí y le dije que no; 0 370 standard O1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.34168+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:06.395045+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1663 SPN-cce33348a7b81bb3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB 1 2 Le personnel super sympa. 410 435 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:25:52.343796+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:53:52.27108+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 851 SPN-03a66f22bf2a267e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB 1 2 Por último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiendo que teníamos que coger un vuelo); En GC estas obligado a rellenar la H Reclamaciones in situ (lo confirme llamando a la Policía local) lo que es absurdo porque con los nervios y la presion del vuelo no te deja pensar con claridad, pero aún así lo hice, y tengo claro que no voy a para de poner reclamaciones en todo sitio donde proceda. 670 1030 standard J1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.34168+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:06.397019+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 852 SPN-754ef0fde8e3ff0c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB 1 0 Tutto molto bene. 0 18 standard O1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341579+00 high URT:S:O1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:15.801414+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 853 SPN-bf0ac7bd54e2c8c8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB 1 1 Unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di Gran Canaria. Dovreste sempre specificare di recarsi alla porta 2 delle “salidas “ 18 139 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341579+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:15.802156+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 854 SPN-cc5d5f11da4586f9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB 1 0 War sehr gutes Erlebnis mit der Autovermietung. 0 42 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341563+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:25.152772+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1665 SPN-cf21b51cfb14ba6a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB 1 1 Lediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert! 246 307 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:25:52.343796+00 high URT:S:J1.01:-2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:54:27.101881+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 856 SPN-f34515d3c277d1d7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB 1 0 Nos dieron un Fiat 500 que estaba en perfectas condiciones. Lo cogimos a todo riesgo y no hemos tenido ningún problema con el vehículo. 0 139 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341556+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:36.213635+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 859 SPN-f62573a9e1720e44 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB 1 1 Abholung & Rückgabe schnell & easy. Vorher checken ob man eine Versicherung bspw über Check 24 o.ä. schon abgeschlossen hat, wobei man es im Schadensfall leichter hat, wenn man die Versicherung dort abschließt. 139 319 standard J1.02 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341534+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:43.826719+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 861 SPN-ffb26593182ce612 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB 1 1 Pague un VW Tiguan y me dieron un Kia Stonic, decían que era la misma gama... 139 197 standard O1.02 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341527+00 high URT:S:O1.02:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:59.670824+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 860 SPN-385529f6636c80f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB 1 0 Si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. Meten miedo para que contrates el seguro a todo riesgo. 0 139 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341527+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:59.669859+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 848 SPN-3e40014f3611de69 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWTWJrUlNiRUpLV2kxVFYxcGtSVEZXUWtocmNtYxAB 1 0 Shuttle-bus nicht auffindbar oder nicht existent. Telefonisch nicht erreichbar, es geht nur ein Bot ans Telefon, über eine Tastenkombination kann Support angefragt werden, nach 10min in der Warteschlange haben wir niemanden erreicht. 0 218 standard A3.05 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341765+00 high URT:S:J2.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:35:48.779281+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_05 857 SPN-c0e2579c7135ae7e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB 1 1 El personal fue muy amable con nosotros. 140 174 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341556+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:36.214538+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 858 SPN-cfdeeb76669bf01d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB 1 0 Guter Service, die vor Ort abgeschlossene Versicherung für 189€ lohnt sich. Das Auto wird bei Abgabe nicht mal angeschaut. 0 139 standard V1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341534+00 high URT:S:A1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:43.825876+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 862 SPN-56aaa323e40d6a7f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB 1 2 Tienes que perder 30 minutos entre que te llevan al coche y lo recoges, cosa que no pasa con las otras compañías. 197 284 standard J1.02 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341527+00 high URT:S:J1.02:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:59.671596+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1763 SPN-83b6f6125729cf82 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB 1 1 Only one minus that bartenders could at least try to be friendly. 79 116 standard P1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:10.295552+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 864 SPN-19a707bf25947ef4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB 1 4 Espero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas cosas. 388 469 standard R1.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341527+00 high URT:S:R1.01:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:59.672533+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 865 SPN-c2d41e624ca12e33 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB 1 0 Questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione. Assolutamente senza complicazioni e senza problemi. 0 139 standard J1.03 {A1.01} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341517+00 high URT:S:J1.03:+3:33TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:07.05743+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1803 SPN-4f877e799fad495f Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB 1 0 Good music for dancing, wide choice of cocktails. 0 49 standard E4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:E4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:47:55.578249+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 867 SPN-4d9ec9de1ee6d868 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB 1 0 Muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repostar y entregar el coche. Te pasan a buscar desde el parking de Salidas del aeropuerto y te dejan en las salidas. Ha sido muy facil todo. 0 246 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341489+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:15.030645+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 869 SPN-c0b34f0aa61d2798 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB 1 0 Experiencia muy negativa. Evitad esta empresa si podéis. Alquilamos un coche con mi familia y desde el primer momento fue una experiencia pésima: Nos aseguraron un modelo de coche que luego “no tenían”. Aceptamos el cambio por no tener otra opción. 0 267 standard J1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341386+00 high URT:S:J1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:35.068437+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 868 SPN-2e11e4c86317230e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB 1 1 Eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. En nuestro caso esa un seguro sobre la franquicia, por lo que hemos tenido que dejar el depósito igualmente con ellos y, en caso de daños, se los pagas a Click Rent y después reclamas al seguro de la agencia. Lo específico porque nunca me había pasado y al reservar con la agencia, no lo dejan muy claro la verdad. 246 486 standard V2.03 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341489+00 high URT:S:P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:15.031507+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 872 SPN-51717d980642a736 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB 1 3 Cuando pedimos la hoja de reclamaciones, "no la encontraban". Solo tras insistir y amenazar con llamar a la policía, nos la entregaron, no sin antes levantar la voz y faltarnos al respeto. 685 835 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341386+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:35.069764+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 866 SPN-82dc09a328219cf7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB 1 1 Alla mia prossima visita a Gran Canaria, noleggerò di nuovo solo da clickrent. Un grande ringraziamento al personale molto cordiale.. grazie per tutto;) 139 227 standard P1.01 {} V+ I2 CR-N S2 A1 TF ES clickrent company clickrent \N \N \N f t 2025-08-28 01:27:48.341517+00 high URT:S:A1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:07.058117+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 874 SPN-98ba6629c3041a40 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB 1 0 Reservé un coche y acudí puntualmente el día acordado para recogerlo. El vehículo no estaba disponible, no ofrecieron ninguna alternativa útil, y el personal se mostró completamente despreocupado y poco profesional. Sin disculpas, sin compensación y sin ninguna solución concreta. Nos dejaron literalmente tirados, con todos los planes arruinados y altos gastos extra. 0 290 standard A1.03 {A1.03} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341373+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:46.513573+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_03 871 SPN-bde9f68ed008d529 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB 1 2 A la entrega, una empleada se tiró directamente al suelo y señaló un roce no visible a simple vista, diciendo que lo habíamos hecho nosotros. No nos dieron parte de daños previos, ni fotos, ni comprobación alguna al inicio. Solo nos dijeron literalmente: "no es mi problema que no le hicierais fotos". Resultado: penalización de 380 € sin pruebas. 426 685 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341386+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:35.069292+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 870 SPN-e152bce3d1a3a6c9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB 1 1 En recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su seguro “a todo riesgo”, que además exigía un depósito! . Nos advirtió que, si no lo hacíamos, tendríamos problemas al devolver el coche. Y así fue. 267 426 standard V1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341386+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:35.068948+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 863 SPN-f5b20a9acd3c4d2f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB 1 3 No me dijeron a que hora tenia que devolver el coche. Según ellos, me retrasé 30 minutos y me han cobrado 40e de penalización. 284 388 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341527+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:59.672143+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 885 SPN-f01b400f459e27b7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB 1 0 Fast & professional. 0 20 standard J1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.340727+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:34.385301+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 886 SPN-46a64999d8181a31 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB 1 1 Really recommend! 21 38 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340727+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:34.385911+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 748 SPN-70744cdd8199abfb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 0 La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. De hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. 0 366 standard R1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340834+00 high URT:S:J1.02+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:29.424972+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 749 SPN-2928a76870ae3187 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 1 Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. 366 442 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340834+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:29.425674+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 3230 SPN-d4a5e759eaf980a7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB 1 1 Lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos. 102 178 standard O3.02 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.976141+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 880 SPN-f2092507a0487bea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB 1 2 Uma VERGONHA. Não devia ser permitido se aproveitarem desta maneira dos clientes. São absolutamente ridículos.!!!! 205 290 standard A1.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341335+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:10.147198+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_03 3231 SPN-4117c9e74afb076e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB 1 0 Buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles porque suele haber menos gente alli y las esperas son mas cortas. 0 168 standard J1.03 {A1.01} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:J1.03+A1.01:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.987699+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_03 877 SPN-1dcfbc2a96435203 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB 1 1 Sin embargo, no lo recomiendo para nada. 686 711 standard R1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341365+00 high URT:S:V1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:58.052438+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 881 SPN-36ca87d87909342f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB 1 0 Un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún no tengo el dinero de la fianza que te cobran sin avisar el día de la reserva. El vehículo no era el que reservé y no hay opción según ellos , o ese y otro modelo pagando la diferencia. 0 276 standard V1.03 {O1.02} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341307+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:18.42748+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 878 SPN-3a8ee11522869145 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB 1 0 Não sei deixem enganar por estes burlões.!!!! Alem do staff ser todo arrogante, mal dispostos e estúpidos. 0 98 standard P1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341335+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:10.146016+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 882 SPN-c3d190c08249855e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB 1 1 Una vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno a otro. Incompetentes , mentirosos , ESTAFADORES y nada profesionales NADA RECOMENDABLE 276 392 standard R1.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341307+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:18.42817+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 884 SPN-cea64b8d950f9880 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB 1 1 Je ne vous recommande en aucun cas ce lieu ! Un vrai coût qui n’était pas prévu dans notre budget vacances avec nos enfants ! Dégoûté !!! 683 757 standard V1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341216+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:27.65814+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 875 SPN-d5e9e4917ce50197 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB 1 1 Conclusión: Empresa poco fiable, nada profesional y sin atención al cliente. Si quiere evitarse problemas, costes adicionales y frustraciones, busque otro lugar para alquilar. 290 370 standard R2.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341373+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:46.514528+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 883 SPN-e0346a5bc762749d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB 1 0 Une honte entre le prix affiché sur le site internet et la finalité. Nous payons 195,29€ sur le site, une fois sur place on nous demande de payer en plus soit 1000€ de caution soit 393€ pour l’assurance. Nous avons voulu prendre la caution avec la carte de crédit de ma femme mais ils n’ont pas voulu car elle n’était pas à mon nom alors que ma femme était présente. Nous étions dans l’impossibilité de changer de loueur car nous étions au milieu de nulle part avec deux enfants en bas âge 2 et 5 ans. Nous avons donc pas eu le choix de payer les 393€ supplémentaires + 50€ supplémentaires car nous rendons le véhicules hors des horaires d’ouvertures. Donc au lieu de payer 195,29€ la location nous avons eu une facture total de 638,29€ !!!!! + une caution de 200€ pour l’essence !!!!! 0 682 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341216+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:27.657431+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 890 SPN-d0ba845cd34a3b22 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB 1 0 Very good cars. Lots of Audi cars. 0 30 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.340439+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:03.715157+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 891 SPN-648ea43e93159a50 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB 1 1 Very good service and the person is polite. 31 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340439+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:03.720056+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 892 SPN-59cd394e376ee33f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB 1 2 They will take you on a very short shuttle from the airport to their office (takes almost 5 mins). You need to wait a maximum of 1 hour i think. We waited close to 30 mins. 67 174 standard J1.02 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340439+00 high URT:S:J1.02:0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:03.724512+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 893 SPN-a696d758c4e62682 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB 1 3 Their office is air-conditioned and very well kept. 175 215 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340439+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:03.729353+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_01 896 SPN-b33e753fa2dcdf85 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 1 Highly recommended for your car hire. 67 98 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340436+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:16.962747+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 897 SPN-8f78a85cd10f989f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 2 The car was awesome and brand new like 1000 clicks on the odo. 99 143 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340436+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:16.963533+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 894 SPN-1c19335730033f09 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB 1 4 I would recommend you to take a car from here. 216 253 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340439+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:03.731572+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 899 SPN-10282947138888be ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4bFNpMWZjRGxaU3paRFoyNHdhRzQxV1dkSWJWRRAB 1 0 Muy malo 0 8 standard O1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-29 01:27:48.342957+00 high URT:S:O1.01:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:21.847868+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 889 SPN-a6858b7cc7cbcd1a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB 1 0 I had a very good experience, they have a good fleet of cars, very close to the airport and their insurance is the cheapest compared to other car rentals. 0 157 standard O1.02 {P1.03,J1.02} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.340443+00 high URT:S:O1.02+P1.03+J1.02:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:46.562158+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 887 SPN-83515013604615fe ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB 1 0 It would be very important to better mark where the shuttle is. Like a sign maybe. 0 83 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.340614+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:41.910587+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 888 SPN-b49482dfeda8f375 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB 1 1 but apart from that point everything was fine. Thank You 84 118 standard V4.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340614+00 high URT:S:O1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:41.911532+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 1764 SPN-cf3d036d8a056cee Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE 1 0 Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks were strong… and I especially liked all the different area’s in the club. 0 157 standard P1.01 {O1.01,E4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01+O1.01+E4.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:18.256416+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 901 SPN-768ea4ac3a4d0b0a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB 1 1 No vuelvo a alquilar un coche aquí. 218 244 standard R4.03 {} V- I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-07-29 01:27:48.341839+00 high URT:S:J1.04:-3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:29.967668+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 898 SPN-797d8226d330e441 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 3 Great family experience made our stay worthwhile in Gran Canaria. 144 194 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.340436+00 high URT:S:R1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:16.964228+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 902 SPN-8d51062afc094d8b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB 1 0 Es nefasto el servicio de esta empresa. Me cargaron a mi tarjeta 50 € por una “gestión administrativa” de una supuesta multa que todavía no ha llegado a mi casa. Encima el coche que me dieron no le andaba el GPS ( osea un coche de gama media alta que no le ande el gps RARO). No se podía ver los avisos de radares , señales de tráfico ni nada 0 307 standard V1.03 {O1.02} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-07-29 01:27:48.341667+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:43.073528+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 930 SPN-a5a73946b0ac11f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB 1 0 🫡😉👍 0 3 standard V4.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.34074+00 high URT:S:V1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:36.52549+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 3232 SPN-ffbaabab2d630554 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB 1 1 Los miercoles (no verano) también tienen una oferta de 2x1 en los karts 169 238 standard V1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.989067+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3444 SPN-7f6b7e8742c03d31 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE 1 3 Volveremos. 159 169 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:03.694794+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 909 SPN-43b2c5de418bc95a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB 1 0 Very friendly and helpfull staff. Quick and correct in service. 0 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-29 01:27:48.340624+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:09.497089+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 910 SPN-c04a4b2f8962e3c5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB 1 1 Close to the airport so very well recomended. 67 101 standard A4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-29 01:27:48.340624+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:09.497778+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 907 SPN-4b18d6266da5734c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB 1 0 The girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recommend. 0 98 standard P1.02 {} V- I3 CR-N S2 A1 TC ES girl with tattoo staff girl with tattoo \N \N \N t t 2025-07-29 01:27:48.340632+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:00.837928+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 1841 SPN-f267501f4d3006b1 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE 1 1 Tūsas buvo super. 79 95 standard E4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:E4.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:04.942648+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 906 SPN-b55009c6831b29c1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB 1 0 One of the best rental car experiences I've had. Great service 0 62 standard J1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-29 01:27:48.340649+00 high URT:S:J1.03:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:53.789863+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 429 SPN-47fe608ccade71a1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB 1 0 Bei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 500 € in Rechnung gestellt. Laut Vermieter handelt es sich um einen Kratzer im unteren Bereich der vorderen Stoßstange, praktisch im Unterboden unterhalb der Frontschürze. Wir haben das Fahrzeug bei Übernahme und Rückgabe umfassend fotografiert – lediglich den Unterboden nicht, da man sich dafür unter das Auto hätte legen müssen und der Boden auch noch nass war. Wir haben diesen Schaden definitiv nicht verursacht. Zudem befindet er sich an einer Stelle, an der es nicht möglich ist, dass er durch Dritte entstanden sein könnte. Auffällig war außerdem, dass der Mitarbeiter bei der Fahrzeugrücknahme als Erstes gezielt den vorderen Schweller kontrolliert hat. 0 564 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.340843+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:27.376044+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 3233 SPN-f7d753a8f5472f91 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNMFBfRk93EAE 1 0 Esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. Echamos una tarde bastante divertida. Los karts estan bien y el circuito es aceptable. Volvería a ir. 0 182 standard O2.03 {V4.03} V+ I2 CR-S S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03+V4.03:+2:21TC.ES.S v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:24.999208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 916 SPN-81b19e2587fd4852 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE 1 1 Eso si el coche estaba nuevo y fue un gusto conducirlo. 197 233 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.341984+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:36.340029+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 914 SPN-1c9adf9954cfeac3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE 1 1 pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el tanque lleno, al saber q tenía seguro franquicia se aprovecho pero perdió un cliente y varios q me aseguraré de q no les hagan mas reservas y si alquilan con ellos asegúrense bien sobre todo bajos sacarle videos, parecían majos pero mira el calma existe amigo q dios te de el doble de lo q me deceastme 486 804 standard R1.01 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.342338+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:28.524229+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 904 SPN-3c4c2c2c43b7d459 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB 1 2 Con total confianza te dicen“ no hace falta que le saques fotos, nosotros ya las tenemos” obvio le saqué igualmente! Porque buscan cada punto débil del cliente para cobrar extras. No volvería a alquilar con ellos y no los recomiendo 487 617 standard R1.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-29 01:27:48.341667+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:43.074701+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 912 SPN-5803c7f60d4933cf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VKUE41NHJwaXFfX0tnEAE 1 0 personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir 0 83 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.342849+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:18.547096+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 915 SPN-688206b57e08cf56 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE 1 0 Alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te lleva y te trae. Nosotros no lo vimos y fuimos andando y tuvimos que pagar un suplemento por dejar el coche antes de las 8. 0 197 standard V1.03 {J1.03} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.341984+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:36.339396+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 905 SPN-ab452908aec24340 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21SQ1FrODNNVnAyUW13eFdtbHRWRk4wYTJkRlprRRAB 1 0 Půjčení vozu na týden přes Booking vyjde cca na 1400,- Kč. Je u sebe potřeba mít fyzicky kreditní kartu, jinak vas donutí zaplatit ještě komplexní pojištění a půjčení vás tak vyjde na 4.500,-Kč! Nestačí mít kartu v mobilu. 0 218 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-29 01:27:48.341311+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:49.204382+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 911 SPN-c282747f827e0243 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4dmJqbGljR0pXVEdsemNUWklRbWcyV1VaTFdHYxAB 1 0 Excelente y rápido atención 0 27 standard J1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.343094+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:13.944396+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 931 SPN-f989ddfb2e614a46 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VPVHc0b2ItMEo3bERBEAE 1 0 Buen servicio,mejor precio 0 26 standard V1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.34306+00 high URT:S:A1.01+P1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:40.010046+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 908 SPN-fa0ef5810c985a59 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB 1 1 Not professional at all 99 121 standard P2.05 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-29 01:27:48.340632+00 high URT:S:A1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:00.838782+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_05 1678 SPN-4fd7ec78e34c1347 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB 1 0 La vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver. Le véhicule était impeccable, récent et parfaitement conforme à la réservation. L’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique. 0 319 standard A4.01 {O1.01,A1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:25:52.343796+00 high URT:S:A4.01+O1.01+A1.04:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:55:33.056538+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 918 SPN-e4c2ebd9a07abac9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB 1 0 Wir haben bei Hertz gemietet, völlig unkompliziert, Tankuhr wird bei der Rückgabe kontrolliert. Vollkasko. 0 106 standard J1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.341968+00 high URT:S:J1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:50.115941+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 919 SPN-79085e9834878100 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB 1 1 Navi ist in mehrere Sprachen einstellbar, das Schwierigste ist, bei der Rückgabe, die Einfahrt zum Parkhaus zu finden, sie befindet sich links der Taxihaltestelle bevor man die Überdachung erreicht. 106 246 standard J1.02 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.341968+00 high URT:S:J1.02:+0:31TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:50.116447+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1765 SPN-e551d240e2e00e7a Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE 1 0 Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. 0 194 standard V1.02 {O1.01} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:V1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:30.982454+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_02 921 SPN-1d6296c8e0f178a8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB 1 1 Die Abholung am Flughafen mit dem Shuttlebus war zunächst etwas kompliziert beschrieben durch den Vermittler Aurumcars, dafür kann ClickRent ja aber nichts, man muss im Flughafen auf dem 1. Stock bei dem Abflug 1 (fast am Ende des Flughafens) rausgehen Richtung Parkplatz (car park meeting point), dort hat der Shuttlebus auf der Fahrtspur gewartet, wie im Screenshot markiert. Rücktour zum Flughafen mit dem Shuttlebus war auch unproblematisch. 366 685 standard J1.03 {} V0 I1 CR-N S3 A1 TC ES Aurumcars Brand aurumcars \N \N \N f t 2025-06-29 01:27:48.341917+00 high URT:S:J1.03:-0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:00.380448+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 923 SPN-d05c06795c5e5d4d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB 1 1 Preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. A la hora de devolver el coche lo mismo súper rápido y sencillo, nos volvieron a acercar al aeropuerto. 267 366 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.341757+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:11.972296+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 924 SPN-5b9f98ad90f2bcfc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB 1 2 Ha sido buena experiencia, si vuelvo a canarias repetiré con ellos. 366 410 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.341757+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:11.972753+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 927 SPN-779584ad6db99379 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB 1 2 Conseil, fuyez donc ClickRent avant de vous faire plumer. 586 634 standard V1.01 {} V- I3 CR-N S1 A1 TC ES ClickRent Company clickrent \N \N \N f t 2025-06-29 01:27:48.341678+00 high URT:S:V1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:25.468299+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 928 SPN-72f09fad23ada857 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE 1 0 El coche sin ningún problema todo muy bien el señor trato de ayudarme 0 66 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.341542+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:32.989469+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 922 SPN-807af43fb3f0c114 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB 1 0 Atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado del aeropuerto. El proceso de alquilar el coche fue súper sencillo y la chica que nos atendió fue un amor, contagiaba su alegría. Nos lo explicaron todo súper bien. 0 267 standard P1.01 {J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.341757+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:11.971522+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 917 SPN-87645cb1cf2a339b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGdWJGWlZWMVo1U1RJeVZGaEpSV3N6VVVScU1rRRAB 1 0 Siempre alquilamos el coche aquí cuando venimos a la isla. Además de que la relación calidad-precio es buena, el servicio de Kevin es espectacular y siempre te hace sentir súper bienvenida, es un gusto volver a contar con él cada vez que venimos! 0 202 standard V4.01 {P1.02,A1.03} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.34198+00 high URT:S:R1.01+P1.02+A1.03:+2:22TH.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:41.684543+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 929 SPN-a6d6de1575f1ce10 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE 1 1 tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido en la renta y seguro una señora se introdujo en la conversación diciendo que no que era imposible que la política de la compañía no permitía 66 266 standard A4.05 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.341542+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:32.990428+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_05 925 SPN-b76eda22d9b6c0aa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB 1 0 La politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la restitution de la voiture. Pour un bouclier légèrement abîmé sous caisse (leger frottement sur un bas côté de la route) ils m'ont réclamé 420€ sur mon dépôt de garantie. Le bouclier était déjà légèrement abîmé sur les 2 côtés. On suppose qu'ils ont demandé la même somme aux clients précédents sans pour autant changer le bouclier. Cela fait donc 1260€ gagnés sans rien faire. 0 486 standard V1.03 {} V- I3 CR-N S3 A2 TC ES ClickRent Company clickrent \N \N \N t t 2025-06-29 01:27:48.341678+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:25.46614+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 944 SPN-00e3db80d8b14722 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB 1 0 I do not recommend at all. This company is a scam and will take your money. They claim fake damages and make you pay for them. 0 139 standard R1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.340618+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:39.164113+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 945 SPN-2ee8a9e679d3cb62 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB 1 1 I recommend renting from companies that are based at the airport (not this one) 140 188 standard A4.01 {} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-05-30 01:27:48.340618+00 high URT:S:P1.02:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:39.164701+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 395 SPN-ced39cd3397112e2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB 1 1 À notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. Un simple message indiquant un délai ou une présence visible éviterait cette situation. L’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. Personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme. 366 685 standard P1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.340845+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:18.846771+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1766 SPN-b9507baa7eeae8d3 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE 1 1 Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old fashioned. 194 267 standard O1.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:30.984126+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 942 SPN-96bc73d01e254592 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB 1 0 Parfait à tous les niveaux ! Location à moindre coût, voiture impeccable et accueil au top. Tout s’est fait rapidement, sans mauvaise surprise. Une agence fiable et sympa, je recommande les yeux fermés ! 0 194 standard O1.03 {P1.01,A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.341714+00 high URT:S:O1.03+P1.01+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:31.970132+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 943 SPN-d9053d0114824641 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB 1 1 ATTENTION : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne passez pas à côté, comme nous...... :) 194 290 standard J1.02 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-05-30 01:27:48.341714+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:31.971044+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 933 SPN-0aae95b446cf51f2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNZb2ZxWlBREAE 1 0 La experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hicimos, factura de 385€ según su valoración, triste que hayan negocios para robar al consumidor. 0 164 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.342506+00 high URT:S:P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:49.621427+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 934 SPN-3616a2819bc3ba1b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB 1 0 No recomiendo. Alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para reparar un raspón en la parte inferior del parachoques el cual ya estaba. 0 197 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.342294+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:57.524211+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 963 SPN-3b65a8093254033a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB 1 0 Juanma is erg attent en aardig tegenover de klanten. 0 50 standard P3.01 {} V+ I2 CR-N S2 A1 TC ES Juanma staff juanma \N \N \N t t 2025-04-30 01:27:48.342184+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:18.254669+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_01 935 SPN-4299d3d87c867f99 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB 1 1 Ponen los alquileres muy baratos pero luego te estafan. 198 223 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-05-30 01:27:48.342294+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:57.525006+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 932 SPN-50c0dbb8889bff13 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VLRzdyN19VeG9xdkFnEAE 1 0 Trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per contestare il danno e non rispondono più 0 139 standard A3.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.342667+00 high URT:S:J2.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:44.475374+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_03 962 SPN-6d1f4d6a750e261e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE 1 2 Bus jedzie z lotniska ale warto się przejść bo jest blisko. 98 139 standard A4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342335+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:06.305455+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 936 SPN-856d0094471444e2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB 1 0 Servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el que se apreciaba ligeramente ya que los daños que nos atribuyen no se ven a simple vista. 0 194 standard R1.01 {J1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.34229+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:06.684168+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 940 SPN-aefffcc56f040cb3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE 1 1 Bei der Rückgabe nur Ärger. Man wollte uns anhängen, dass unter der Stossstange Kratzer wären. Wir hatten Fotos gemacht und haben rumdiskutiert ohne Ende. Sehr unfreundliches Personal. Da hilft absolut kein günstiger Preis. 211 366 standard P1.02 {J1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-05-30 01:27:48.341792+00 high URT:S:A1.03+J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:24.358987+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 937 SPN-dcd589bf8eea38db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB 1 1 Tocará reclamar, no lo recomiendo para nada. 194 227 standard R4.05 {} V- I3 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-05-30 01:27:48.34229+00 high URT:S:J1.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:06.684977+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 941 SPN-f246b0beacec25ec ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE 1 2 Es gibt viele andere Anbieter in der Nähe. 366 399 standard V2.05 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-05-30 01:27:48.341792+00 high URT:S:R1.01:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:24.360047+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_05 1767 SPN-369d73c52c4cb074 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB 1 0 The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere 0 83 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-01-31 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:42.355948+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1768 SPN-b4dbfd7f189d25fe Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB 1 1 staff is extremely friendly 😄 84 109 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-01-31 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:42.357287+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1769 SPN-d2200ae5075e6b35 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB 1 0 I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjoys. 0 98 standard P1.02 {O1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:53.031192+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 950 SPN-b3c270b01e960df9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNvMktEWTh3RRAB 1 0 Buena experiencia y legales, no como la competencia Gold Car que me estafaron 0 83 standard R1.01 {R1.02} V+ I2 CR-W S2 A1 TC ES Gold Car Company gold car Competitor \N \N t t 2025-04-30 01:27:48.342674+00 high URT:S:R1.01+R1.02:+2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:04.106263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1770 SPN-2b759cae81ee4450 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB 1 1 Straight nights suck but worth exploring in Vilnius. 99 129 standard J1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-01-31 18:34:31.336452+00 high URT:S:J1.01:-2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:53.032039+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 J.J1.J1_01 953 SPN-30f95560f12fe354 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB 1 2 Omasta mielestä voin suositella. 158 182 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34251+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:19.256578+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 959 SPN-3985df2de1f93f67 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB 1 1 Te recogen y te llevan al aeropuerto en un vehículo de la empresa. 67 116 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342409+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:50.657741+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 952 SPN-444de425f7e9a064 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB 1 1 Hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alettu perimään. 84 157 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34251+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:19.256042+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 961 SPN-3848b0c04f88b93c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE 1 1 Najtańszy depozyt. 79 97 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342335+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:06.30488+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 949 SPN-0fad0835704b47bc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNvcGJqbklnEAE 1 0 Esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno RUBATO 150 euro 0 98 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342899+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:59.085024+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 954 SPN-0fbe5314982a9e82 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE 1 0 Muy mala experiencia, contraté un Peugeot 5008 o similar y me dieron un Citroën Berlingo, primero querían hacerme ver que era la misma categoría, después culparon a Booking, en ningún momento valoraron solucionar el problema incluso planteando yo la posibilidad de pagar un suplemento, muy mala atención, la chica que me atendió era bastante desagradable. 0 290 standard O4.01 {J1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342469+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:28.818719+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O4.O4_01 947 SPN-382074b90f6a1e07 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJNmJYc0hBEAE 1 0 Goede service en aardig mensen 0 30 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.3431+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:50.657377+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 951 SPN-b7309f626d969be2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB 1 0 Kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. Henkilökunta oli mukavia. 0 83 standard P1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.34251+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:19.255235+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 960 SPN-cd3e000994961ab6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE 1 0 Super obsługa. Auto zarezerwowane wcześniej przez internet. Żadnych problemów. 0 78 standard J2.01 {J1.01,P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342335+00 high URT:S:A1.01+J1.01+P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:06.304016+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 956 SPN-d1156acaf14f7543 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE 1 0 super buen trato por parte del personal, como siempre calidad precio razonables, de resto todo fenomenal, coches espectaculares, personal espectacular, y precios espectaculares. 0 139 standard P1.01 {O1.01,P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342457+00 high URT:S:A1.01+O1.01+P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:39.317725+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 958 SPN-d38be4cae2b8c448 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB 1 0 Nuestra experiencia fue buena. Atienden rápido. Muy amables. 0 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342409+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:50.65697+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 948 SPN-f407c2f36c80b3b4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMXZ6aUZ3EAE 1 0 Kevin estaba muy amigable y nos ayudaba mucho, gracias! 0 55 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Kevin staff kevin \N \N \N t t 2025-04-30 01:27:48.342979+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:54.784073+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 955 SPN-f4836d421505fcd8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE 1 1 la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie. 290 335 standard A4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342469+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:28.819405+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 965 SPN-328bf639a67eb648 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB 1 2 Precies de ervaring die je wilt als je een auto huurt! 98 134 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342184+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:18.256382+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1771 SPN-2359679139db2ab4 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB 1 0 Great club for gay and not so. 0 30 standard A3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:A3.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:03.070031+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A3.A3_01 967 SPN-ada06aa9a2ea8ee7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE 1 1 Fazit: NIE MEHR CLICKRENT!!!! Nie! Nie! Hände weg! Wer es trotzdem macht, ist selber schuld! 290 370 standard R1.01 {} V- I3 CR-N S1 A1 TC ES CLICKRENT brand clickrent \N \N \N f t 2025-04-30 01:27:48.342066+00 high URT:S:R1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:26.494803+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 968 SPN-8d6d5fee635518d6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB 1 0 Tuvimos una experiencia muy favorable con ellos. Nos dieron el coche que alquilamos (Fiat 500), son flexibles con la entrega, no pusieron pegas a la entrega y la devolución de la fianza fue instantánea. 0 194 standard J1.03 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342053+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:33.577266+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1772 SPN-496ebacbf3734f0e Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB 1 1 Dramatica show blew... my mind. 31 60 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:03.071006+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 970 SPN-e970dc2572726bdc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE 1 0 Acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coches, el trato de los empleados no puede ser mejor. 0 139 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.342041+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:40.996359+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 975 SPN-0ae2cfffb034aca9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE 1 1 In den 4 Tagen ist alles problemlos verlaufen, konnten die ganze Insel umfahren und Orte erreichen die man mit dem Bus nie gesehen hätte. 118 194 standard J1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341783+00 high URT:S:J1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:17.740319+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 977 SPN-a01d6d45e148fb4b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB 1 0 siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e siccome gli uffici distano 2,5 km e sono in mezzo al nulla abbiamo dovuto trovare un taxi che ci portasse. 0 218 standard J1.03 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.341761+00 high URT:S:J1.03:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:29.161516+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 966 SPN-61c28ddcbc67fa57 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE 1 0 ACHTUNG! Diesen Anbieter unbedingt meiden!!! Bei der Rückgabe wurde ein Abrieb und Farbrückstände am Handgriff der hinteren Türe moniert. Nur weil ich das Innere nicht gut kontrolliert habe, wurden mir Euro 360.- belastet. Zuerst wurde mir ein Betrag von Euro 600.- mitgeteilt, der dann gesenkt wurde. 0 290 standard V1.03 {} V- I3 CR-N S3 A1 TC ES CLICKRENT brand clickrent \N \N \N t t 2025-04-30 01:27:48.342066+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:26.494028+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 978 SPN-7c0bf95d20c2f4b6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB 1 1 Una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore. 218 290 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341761+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:29.162121+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 969 SPN-a2e8bc656f982e1e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB 1 1 Todo genial, repetiremos con ellos 194 224 standard V4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342053+00 high URT:S:R1.01:+2:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:33.577836+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 976 SPN-bde9b6a19135218e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE 1 2 Einfach nur bei Übergabe Schäden abfotografieren damit man am ende nicht blöd dasteht. 194 246 standard P2.04 {} V0 I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341783+00 high URT:S:A3.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:17.740781+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 979 SPN-cf6e2d37de52743f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB 1 2 Morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. Inoltre maleducati e da quello che leggo neanche troppo onesti!da evitare! 290 392 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341761+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:29.162526+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 980 SPN-cff89667e2ab7f4c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB 1 0 Hat alles gut geklappt. Haben den ShuttleBus nicht gefunden, hätten aber jederzeit anrufen können. Auch Zu fuß kann man den Standort relativ einfach erreichen. 0 174 standard A4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.341157+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:42.75755+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 972 SPN-d84d410ba5b7059e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE 1 0 Die Mitarbeiter waren alle sehr freundlich und hilfreich. 27 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.341974+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:07.321269+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 973 SPN-de77b318d396a26a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE 1 1 Die Station ist außerhalb des Flughafens, es kann zwar zu Wartezeiten kommen aber dafür ist der Wagen günstiger und man ist gut aufgehoben. 68 164 standard V1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341974+00 high URT:S:J1.02+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:07.322482+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 971 SPN-f9067ff5faa261ab ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE 1 1 Me atendieron Amelia y Kevin y la verdad que fueron súper simpáticos y cercanos conmigo. El nivel de inglés de Amelia es buenísimo para poder hablar con ella, además es muy amable y el trayecto al aeropuerto con Kevin fue genial, me sentí muy segura. 139 319 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342041+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:44:40.99695+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 981 SPN-06fb461839dfc1e2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB 1 1 Auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt Zusatzleistungen zu buchen. 175 233 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341157+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:42.758225+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 982 SPN-c9d4444aad198338 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB 1 2 Unterboden wurde kontrolliert, die Bordsteinkanten in GranCanaria sind sehr hoch, wenn man das beachtet und kein Schaden verursacht läuft alles schnell und reibungslos. 234 335 standard J1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341157+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:42.759388+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 983 SPN-d42d90fd627af19c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB 1 3 Shuttle zum Flughafen mit Abgabe hat nicht mal 10 Minuten gedauert. 336 377 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.341157+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:42.759826+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 984 SPN-06ddd2bd1494316d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB 1 0 Wir haben uns im Vorfeld über sämtliche Autovermietungen informiert. Hatten dann bei Clickrent direkt gebucht - mit der ‚höheren‘ Preiskategorie. Bei Abholung wurde alles super einfach und schnell erklärt. KEINE Kaution (lediglich die übliche 200€ Pauschale für Sprit), keine extra Kosten, kein dummes gequatschte a la „wissen sie denn was es kostet wen bla bla bla“, sondern einfach eine schnelle und einfache Übergabe. Zum Auto selbst kann ich nur sagen dass er sauber und vollgetankt war! Alles in allem wie gehofft, damit der Urlaub nicht stressig anfängt/aufhört. 0 408 standard J1.03 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.34107+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:56.380414+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 985 SPN-b1a0557dd72014f0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB 1 1 Bei Abgabe kam der Kommentar „you book full coverage“ so dass lediglich nach der Sauberkeit im Innenraum geschaut wurde und ob wirklich vollgetankt war. Kein nerviges Kontrollieren, keine Fotos raussuchen, kein auf die Knie gehen um sich Schäden zeigen zu lassen (leider selbst so bei Goldcar erlebt). 2 Minuten später hatte ich bereits eine Benachrichtigung meiner Bank dass das Geld wieder freigegeben war! 408 682 standard J1.02 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34107+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:56.381297+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 989 SPN-5a4bf636d284febf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB 1 0 Good service, perfect cars, low prices! Very recommendable! 0 66 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.34047+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:14.74321+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 990 SPN-c4c893b6b0642311 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB 1 1 Regarding, how to get to the office, just wait outside without checking owing the street in front of the airport building: a small shuttle bus runs every 15 min, however the office is very close and you can walk, if you don’t have any luggage. 67 266 standard J1.02 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34047+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:14.743735+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 991 SPN-bb0ea99670516b1a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB 1 2 While taking the car, take photos of the car before renting, as including under the bumper. 267 319 standard P2.04 {} V0 I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34047+00 high URT:S:A2.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:14.744162+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 988 SPN-f83e70d8634a9be2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_66 1 1 And their support is not doing anything so far, if they refund me what they unjustly charged, I will come here for an edit but in the first place, how could you trust such a company with your credit card authorization? Never again! 85 265 standard R2.02 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34056+00 high URT:S:A1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:03.692082+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 1773 SPN-4cf351afc879f618 Soho Club unknown google review_40 1 0 Really liked the atmosphere. 27 30 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-01-31 18:34:31.336452+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:15.287649+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1774 SPN-08321e2e704897e0 Soho Club unknown google review_40 1 1 Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and you guys just picked it up and saved my night so thanks a lot! 32 139 standard A1.04 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:15.288502+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A1.A1_04 995 SPN-086faf309cd88ff6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURncTZMdVdBEAE 1 0 Un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado desde y hacia el aeropuerto igual. 0 132 standard J1.01 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342805+00 high URT:S:J1.01+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:29.728889+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 993 SPN-0caf5865668e6832 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB 1 1 Fahrer von Shuttlebus sehr unfreundlich 31 63 standard P1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342807+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:24.892249+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 996 SPN-4bc7655bbe5979de ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE 1 0 Shuttlebus hat nicht geklappt, mussten mit Taxi hin fahren. 0 61 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342689+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:39.661666+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 992 SPN-64cb271d457efc50 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB 1 0 sehr schwer im Parkhaus zu finden 0 30 standard A1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342807+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:24.891604+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 994 SPN-bd260cefa30a5f06 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB 1 2 auch der Mitarbeiter im Büro bei Fahrzeugrückgabe sehr unfreundlich 64 113 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342807+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:24.892914+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 999 SPN-45c975d3b1e02386 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUN3d3I2cjR3RRAB 1 0 Super location de voiture les personnes sont top !! Super gentil l'accueil est rapide et précis vraiment parfait merci 👍 0 106 standard A1.01 {J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342627+00 high URT:S:A1.01+J1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:46.131811+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 747 SPN-a5cdd3d2520cafda ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB 1 0 Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada. Primero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. Muy bordes y te castigan por no coger su seguro. Muy mal. 0 486 standard V1.03 {J1.02,P1.03} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.340848+00 high URT:S:A1.03+J1.02+P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:05.550317+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1948 SPN-7c2cc1f1ca6082df Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE 1 0 Great karts, they are pretty fast. 0 35 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.628683+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1003 SPN-56c29d0870142a51 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB 1 1 Shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut. 109 164 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342351+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:05.389407+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1005 SPN-2893afc1c62f8c4b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB 1 0 Alles gut, guter Anbieter, das einzige Problem, Shuttle zum Flughafen funktioniert gut 0 85 standard J1.02 {J1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342292+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:13.839643+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1011 SPN-c392736392ec5420 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB 1 1 Noi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data una Kia Picanto merdosa che non riusciva a salire le strade manca poco. 175 292 standard O1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.341734+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:42.455885+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1012 SPN-076161c8c93200eb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB 1 2 Oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e avevo preso anche un biglietto del traghetto specificando il modello che avevo prenotato: altra inculata di 110 euro di assicurazione di traghetto quando avevo già la casco (non c'era scritto da nessuna parte durante la prenotazione). Veramente scorretti e poco chiari. 293 487 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.341734+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:42.456278+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1001 SPN-9dd6fb9669be21c8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE 1 1 Mitarbeiter Huan war super freundlich und hilfsbereit, danke dafür. 67 113 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Huan staff huan \N \N \N f t 2025-03-31 01:27:48.342556+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:55.021599+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1009 SPN-a0bf809a28fefdce ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB 1 2 Sie haben uns dann vor Ort gelassen ohne eine Möglichkeit irgendwie ein Mietauto zu bekommen und was wir schon bezahlt hatten über die Agentur bekamen wir ebenfalls nicht zurück obwohl wir kein Mietauto bekommen haben. Nie wieder würde ich über diese Agentur oder mit ClickRent ein Mietauto kaufen!! 487 675 standard A4.05 {} V- I3 CR-N S3 A3 TC ES ClickRent Brand clickrent \N \N \N f t 2025-03-31 01:27:48.342047+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:28.568168+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_05 1010 SPN-aca7f61fa446cfc8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB 1 0 Esperienza molto negativa! Per raggiungere la sede è necessario prendere una navetta che ti preleva all'aeroporto ma questo passaggio non è chiaro quando si fa la prenotazione. 0 174 standard A1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.341734+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:42.454788+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1026 SPN-cd1b720d40e12056 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE 1 1 Dificultad para obtener la información sobre punto de recogida. 74 118 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342394+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:49.372535+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1008 SPN-d6ea301e8b8b2ed6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB 1 1 Wollten vor Ort außerdem nur die Kreditkarte des Hauptfahrers dafür. Keine andere Kreditkarte einer anderen Person, keine EC Karte, kein Bargeld, kein Paypal oder Revolut war in Ordnung. Wir waren vor Ort und hatten dann keine Möglichkeit zu bezahlen obwohl wir genügend Möglichkeiten hatten zu bezahlen. 307 487 standard A4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342047+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:28.567708+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 1006 SPN-d9b2647b319e1032 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB 1 1 aber vom Flughafen zu der Firma mussten wir zu Fuß laufen, per Telefon kann man unmöglich jemanden erreichen um Shuttle zu bestellen, antwortet immer Computer, keine Chance. 85 195 standard A3.03 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342292+00 high URT:S:J1.04:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:13.840306+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_03 1013 SPN-e3a16cc63334734d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB 1 0 Nice people, no hidden fees, easy process, good cars. 0 53 standard P1.01 {J1.01,P1.01,O1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.340735+00 high URT:S:A1.01+J1.01+P1.01+O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:47.879872+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1004 SPN-e4dbd5e8f93211bb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB 1 2 Je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení. 164 227 standard A1.04 {} V- I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.342351+00 high URT:S:J1.03:-1:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:05.389917+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1002 SPN-f20e48a11103121f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB 1 0 Výborná služba. Dobrá cena, dostali jsme za zaslání cévní Seat Ibiza ve výborné výbavě. 0 109 standard V1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342351+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:05.388591+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1019 SPN-b02345f51549ae08 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 0 I rented a car in Gran Canaria from ClickRent. It was a couple of kilometers away from the airport. A taxi there cost 7 €. 0 134 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.340181+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:30.896554+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1016 SPN-53cb5c2c0fdc1f92 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB 1 0 I had an excellent experience with ClickRent and would highly recommend them to anyone in need of a reliable and reasonably priced rental car. The entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient. The vehicle itself was in great condition, almost brand new, clean, and well-maintained. 0 307 standard O1.03 {J1.03} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.340465+00 high URT:S:O1.03+J1.03:+3:33TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:09.130948+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 1018 SPN-ccb901b06f613d76 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB 1 2 Overall, fantastic service, great cars, and a team that genuinely cares about customer satisfaction. I will definitely be using ClickRent again in the future! 470 570 standard R1.01 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.340465+00 high URT:S:R1.01:+3:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:09.132446+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1014 SPN-adda6299082ceb1e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE 1 0 Plane got delayed, they don’t care to manage shuttle bus for delayed flight’s 0 78 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.340671+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:56.89618+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 1015 SPN-4fa4db377edfb01d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE 1 1 Also did not get a refund or partly refund, cancels the calls several times, I do not recommend them, no interest in customers needs 79 164 standard A4.05 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.340671+00 high URT:S:P1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:56.896925+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_05 1021 SPN-f9c45137aac629c7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 2 Before returning the car I vacuumed it completely clean since I had heard stories about interior needing to be completely clean. The agreement also states that a car having sand could result in a cleaning fee. I also recorded every conversation with the staff. Returning the car was easier than I thought. They were not trying to find small scratches from the car. I also got the full deposit back in two days. 469 706 standard J1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.340181+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:30.897879+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1681 SPN-9e2762f91b2fcf2c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB 1 1 Aunque los conductores del shuttle son muy amables 0 45 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:25:52.343796+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:55:43.80011+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1023 SPN-6c10ef827624efaa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE 1 0 El servicio del alquiler del coche fue genial. 0 42 standard J1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342514+00 high URT:S:J1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:38.24212+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1684 SPN-20f99adcc0398643 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB 1 2 Das Auto war neu und in einem super Zustand. 119 155 standard O2.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:O2.01:+3:22TC.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:55:58.669868+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O2.O2_01 1025 SPN-502f9ac70fd3b4f3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE 1 0 Coche de gama muy inferior al contratado, sin previo aviso antes de contratar. 0 73 standard O1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342394+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:49.371912+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1685 SPN-55f9af7eeb3d5c91 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB 1 3 Würden wieder dort buchen. 156 179 standard R2.01 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-12-26 01:25:52.343796+00 high URT:S:R2.01:+2:21TF.ES.N v5.1 gpt-4o-mini fd155577 2026-01-29 04:55:58.671636+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_01 1028 SPN-33884741cdfd0e0a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB 1 0 bitte diese Unternehmen nicht buchen wegen Schäden die nicht vorhanden waren und über die Vollkasko abgerechnet wurden 0 98 standard J1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342387+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:56.423253+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1027 SPN-95df3449ce204cf3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE 1 2 Exigencia de un seguro añadido para la cobertura de llantas y cristales. 119 164 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342394+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:49.372923+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1024 SPN-b703e0c3e44879e1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE 1 1 Aparte el viaje de vuelta al aeropuerto con Kevin fue muy ameno, repitiria! 43 88 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Kevin person kevin \N \N \N f t 2025-03-01 01:27:48.342514+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:38.242875+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1775 SPN-da9ca2d150f7eff4 Soho Club unknown google review_41 1 0 The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. 0 118 standard P1.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-30 18:34:31.336452+00 high URT:S:E1.04+P1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:21.681051+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1776 SPN-29afaf9e7fc42ffd Soho Club unknown google review_42 1 0 i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night 0 174 standard E4.01 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:E4.01:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:27.348164+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1029 SPN-d4d240e48a4cac88 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB 1 1 Sie müssen die Schäden akribisch dokumentieren Foto und Video dringend erforderlich und niemals mit Selbeteiligung buchen 99 157 standard J1.03 {} V0 I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342387+00 high URT:S:J1.03:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:56.423809+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1030 SPN-e8211d9d5c226e96 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE 1 0 Voiture louée pour une semaine en février. Voiture de 6000km, aucun défaut, prise en charge relativement rapide, retour sans encombre et prix très raisonnable. 0 139 standard J1.01 {O1.01,P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342364+00 high URT:S:J1.01+O1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:03.253944+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1031 SPN-9ba89564f464abd4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE 1 1 On conseille vivement 140 160 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342364+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:03.254525+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1032 SPN-44d88ed44db00417 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnbWJhNzN3RRAB 1 0 Todo súper bien, el coche iba perfecto y el personal muy amable. Kevin súper apañao y simpático, esperamos volver y que nos recoja. 0 139 standard O1.01 {A1.01} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342204+00 high URT:S:O1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:08.576677+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1033 SPN-2a0cee06eac585e0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB 1 0 Alles hat hervorragend geklappt. Der Treffpunkt des Shuttles ist zwar nicht ausgeschildert, aber leicht zu finden (2.OG Abflüge, Ausgang 1, 20 Meter nach rechts). 0 139 standard J1.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342182+00 high URT:S:J1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:15.302927+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1686 SPN-672820927c95847b Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB 1 0 Highly recommended to come visit and have fun with open-minded and positive attitude. I love this place. I came here twice in a row. Open dance floor and dance moves. Great vibe and great DJ. 0 194 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-01 18:34:31.336452+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:22.972578+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1687 SPN-c07319a7e47af3d0 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB 1 1 Friendly staff and the bar owner were incredible amazing person. 194 239 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-01 18:34:31.336452+00 high URT:S:P1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:22.98109+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1688 SPN-b83df0fe09d048c6 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB 1 0 Nice pub with great music! I really enjoyed my time there. 0 58 standard E4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-30 18:34:31.336452+00 high URT:S:E4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:31.078778+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1038 SPN-7b6c22d6894e2b82 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB 1 1 El coche muy nuevo y en muy buenas condiciones 84 118 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342144+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:31.649256+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1040 SPN-d011d07a2fa5a9f4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE 1 1 Bei der Rückgabe lief alles reibungslos ab. Mit dem Auto gab es keine Probleme. 157 215 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342138+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:41.320263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1041 SPN-3aedeb2ad011d92a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE 1 2 Man muss aber aufpassen, ob beim Auto bereits Schäden sind. 215 267 standard O2.05 {} V0 I1 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342138+00 high URT:S:J1.02:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:41.320743+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O2.O2_05 1037 SPN-46f4df5905a7cc18 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB 1 0 Muy contento con el servicio , el personal espectacular , muy simpático y amable ! 0 83 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342144+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:31.648571+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1036 SPN-5b60b5d208dce5bf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE 1 1 Simplemente unos ESTAFADORES 360 383 standard R1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342178+00 high URT:S:A1.03:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:23.362286+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1043 SPN-8218d6d3242a501e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB 1 1 Además te entregan el coche roto para poder estafarte. No vuelvo a contratar. 218 270 standard R1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342074+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:48.559197+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1042 SPN-8901b07658c0d3a5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB 1 0 No os confiéis, HACED FOTO A TODO que las palabras luego no valen. Leeros bien el contrato, y mirad que entra en el seguro y que no. Contratamos un seguro al 100% pero luego no te cubre ni bajos, ni lunas etc. 0 218 standard V2.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342074+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:48.558502+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 1039 SPN-980e2b3a9d53a525 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE 1 0 Lief im Grunde alles gut, nur anfangs war der Mitarbeiter recht unfreundlich, da er merhmals nachhakte, warum wir kein teureres Auto mieten wollen. 0 157 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342138+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:41.319611+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 1044 SPN-c2839057057d9246 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE 1 0 55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No dan opción a dejarlo aparcado y las llaves en un buzón? 0 157 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342062+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:59.639431+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1034 SPN-ee6139b9b7aa8c2d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB 1 1 Autos und Mitarbeiter sind top. 140 164 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342182+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:15.303806+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1046 SPN-a2b2a9cee396c853 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE 1 2 En fin, todo eran pegas. No contrato nunca más con esta compañía. 366 414 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342062+00 high URT:S:R1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:59.640654+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1689 SPN-0f78bc3eed4b58c4 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB 1 0 The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or super pop music. But, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and I were singing along. 0 290 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:59.397857+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1690 SPN-ba1804233240d440 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB 1 1 The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards. 290 430 standard P1.01 {E1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01+E1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:59.399127+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1049 SPN-ffbcdd44866b68f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB 1 2 La peor experiencia que he tenido en un viaje de ocio. Por supuesto no repetiría ni gratis. 335 396 standard R1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342059+00 high URT:S:R1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:10.031695+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_03 1691 SPN-57524e267b88d074 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB 1 2 6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Drink prices are reasonable I guess, paid 10 euro for a Negroni and I was sleepy so I had a Black Russian and a White Russian, those were only 8 each. 430 670 standard V1.01 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:V1.01:±2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:59.399841+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1056 SPN-ade7f811005b2cac ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB 1 1 Az autó átvétele gyorsan ment. Átvétel után gondosan lefényképeztünk minden sérülést az autón! Ez a leadásnál jól jött! Mivel a lökhárító alján volt egy kisebb horzsolás, ami nem szerepelt az autó sérülései között, de fényképpel tudtuk bizonyítani hogy az már ott volt. 290 490 standard J1.03 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.341755+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:47.79017+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1050 SPN-5ff907d62f0035d2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB 1 0 Servicio pésimo. Contratamos por Internet un coche con este establecimiento, y no especifican que están fuera del aeropuerto, pero eso no es todo. Al llegar y firmar la documentación, nos informan de que tenemos contratado el servicio con todo riesgo y que la fianza que se nos pide son 200 euros en concepto de combustible. Tras hablar con ellos para ampliar un día más el alquiler de coche nos indican que no es posible y que no disponen de coche. 0 366 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.341993+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:30.525147+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1067 SPN-30a1bf4a6d7c5c15 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB 1 2 el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que muchos otros sitios. 276 358 standard O1.01 {P1.01} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341346+00 high URT:S:O1.01:+3:33TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:21.885546+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1054 SPN-6062a14c2bcd2f22 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB 1 4 Desde luego nos han arruinado el viaje haciéndonos perder un día, y el trato de dejar durante horas a 4 personas tiradas en la autovía a su suerte, cuanto menos no es de ser empaticos, ni profesionales, y mucho menos personas. En resumen estafadores, malos profesionales y pésima empresa, no repetiría con ellos nunca. 1396 1556 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341993+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:30.526821+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1051 SPN-90c169502cabfd72 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB 1 1 Aquí es donde empiezan nuestros problemas, le indicamos antes de salir del establecimiento que el coche hace algo raro el motor al acelerar y que en la parte delantera tiene un golpe. Nos sale la persona que nos atendió y nos dice que el coche está totalmente revisado, y que el golpe saben que lo tienen, que podemos irnos tranquilamente ya que el seguro a todo riesgo nos cubre de cualquier incidente. 366 646 standard O1.04 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341993+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:30.525682+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_04 1057 SPN-a1e0fcdb3ff45193 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB 1 2 Az autó egy szinte új Fiat 500 cabrio volt. 9800 km volt benne. Hibátlanul működött végig. A személyzet rendkívül kedves volt. Az autó kiváló. A depositunkat azonnal felodották. Csak ajánlani tudjuk a céget!! 490 670 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341755+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:47.790728+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1055 SPN-abb2dd937009b042 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB 1 0 Utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. Felvettek minket a reptéren. A találkozási ponthoz fel kell menni a 2. emeletre (Departures). A 2. kijáraton kimenni. Átmenni a gyalogátkelőn, a parkolóba, ott jobbra fordulni. Kb. 25 méterre van egy kis épület, az mellett kell várni. (Érdemes telefonálni) 0 290 standard A1.04 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341755+00 high URT:S:J1.02:0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:47.789615+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1058 SPN-d1463cc4ba4a95a5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB 1 0 Muy buena experiencia y servicio por parte de Juan Manuel y Néstor. 0 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Juan Manuel y Néstor staff juan manuel y néstor \N \N \N t t 2025-03-01 01:27:48.341519+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:59.873867+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1048 SPN-e04766df8c68b97a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB 1 1 A todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafiantes. 276 335 standard P3.04 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342059+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:10.031109+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_04 1047 SPN-e53b97f4cbdb31a8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB 1 0 Nefasto servicio de atención al cliente en gran canaria. Contratamos todo riesgo y a los 32km se nos rompe el coche el cual no nos dan uno de sustitución, nos cobran la fianza de gasolina y además una cantidad desorbitada por una futura reparación sin saber que es. 0 276 standard P2.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342059+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:10.030405+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_03 1060 SPN-9e2947d09f68a436 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB 1 2 El coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito. 98 164 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341519+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:59.875603+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1061 SPN-475d24a337d4bd41 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB 1 3 Sin lugar a duda volveremos a repetir con ellos! 165 203 standard R1.01 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341519+00 high URT:S:R1.01:+3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:59.877026+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1062 SPN-e4e2fcaa8efeddca ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB 1 0 Wir hatten über Booking eine Reservierung für einen Kleinwagen. Bekommen haben wir einen tollen Fiat 500. 0 98 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.341396+00 high URT:S:O1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:10.396461+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 1075 SPN-c4b03cbe54aa9fd0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE 1 0 we had a very nice experience with this company. got a great car (brand new Peugeot 2008 diesel , fully equipped, with 700km) with zero deductable, unlimited milege, full to full, 350Euros for 7 days. 0 197 standard O1.03 {P1.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.340519+00 high URT:S:O1.03+P1.01:+2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:54.743041+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 1064 SPN-24a2fe1fd6d5a965 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB 1 2 Auto war ansonsten top. 218 241 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341396+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:10.397582+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1065 SPN-78ff82114e8a92db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB 1 0 Tenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experiencia ha sido muy positiva. Tienes el Transfer gratis hasta la oficina, que son 5 minutos de trayecto, si llega. 0 197 standard J1.02 {J1.03,A1.01,O1.01,P1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.341346+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:21.884012+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1076 SPN-1a3be15f3f2ea12b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE 1 1 although their office is not inside the Las Palmas airport, the shuttle was comfortable and fast, it was easy to find their bus, their office is near and brand new, their staff was kind and professional. 197 335 standard J1.02 {E1.01,A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.340519+00 high URT:S:J1.02+E1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:54.743606+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1074 SPN-93935d2fbe773f24 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_62 1 1 We landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van but nobody … 30 139 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.34054+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:47.270821+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1069 SPN-269d9b73d1db8efa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB 1 1 Wir haben sogar Fotos vom Auto gemacht vor der Abholung, aber die Kratzer die man dann gefunden hat (mit viel Abtasten auf den Knien) waren UNTER der Stoßstange. Da wird auch bei der Übergabe nicht gemeinsam geschaut. Es ist auf jeden Fall Masche. Die Bilder sprechen für sich..... 218 396 standard J1.02 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341115+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:29.793626+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1071 SPN-d83a40903c3f6337 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE 1 0 We had to wait a while for the shuttle from the airport to the office 0 66 standard J1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.340689+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:40.26862+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1072 SPN-77cbe635d0d30643 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE 1 1 however the overall experience was great. Carlos in the office was very friendly! 66 118 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carlos staff carlos friendly \N \N f t 2025-03-01 01:27:48.340689+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:40.269068+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1692 SPN-18f68275c72f5e5d Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB 1 3 Just wish the crowd was larger! Especially for a Saturday night but the crowd had good energy, I’ve that they have events twice a month with a bigger crowd- I guess that’s when they open the other section with the stage. 670 860 standard E4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:E4.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:59.401549+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1063 SPN-40c2b3008249e620 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB 1 1 Am Anfang hatten wir ein Problem, da die Frau am Schalter sagte ich solle eine Jungfahrergebühr bezahlen obwohl diese laut Check24 bereits inbegriffen ist. Nun wird reklamiert. 98 218 standard V1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341396+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:10.397164+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1066 SPN-d81842987da5eb04 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB 1 1 La atención de todo el personal es fantástica, tanto el chófer del Transfer como en la oficina (me atendió la chica canaria). 197 276 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341346+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:21.88509+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1068 SPN-f8fbdcad4eff6f24 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB 1 0 Achtung. Nicht mieten. Abzocke bei Rückgabe! Haben gerade 230 Euro extra bezahlt. Die günstigen Preise werden durch kleinste Kratzer bei der Rückgabe finanziert, die man sich dann teuer bezahlen lässt. Sicher nicht durch uns verursacht. 0 218 standard V1.03 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.341115+00 high URT:S:P1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:29.792826+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1077 SPN-dc6a16f80e28524f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB 1 0 This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up, despite my reservation being almost a month ago. Take a look at their TripAdvisor reviews for more accurate reviews then these good reviews. 0 218 standard V3.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.340479+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:14.037126+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V3.V3_02 1079 SPN-e89ec6d9c79fd002 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB 1 2 I tried to call to talk to them, and they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee (which they have taken out today, almost a month later). The more frustrating part, is that I asked them insistently to send me a copy of the contract, which they didn't send me - not in my junk mail, nowhere to be found. So now, almost 300 euros later, and the lady on the phone basically told me it's my fault. 396 634 standard V4.05 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.340479+00 high URT:S:A1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:14.038805+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_05 1080 SPN-5494d867a940a4f0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB 1 3 This place sucks. Do not rent from this company, and also, take a look at their reviews in trip advisor - those are far more accurate. 634 704 standard R1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.340479+00 high URT:S:J1.02:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:14.039162+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1693 SPN-19066dd843e8f641 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB 1 4 Overall, I had an okay time- friendly staff, good music and well prepared drinks. 860 920 standard P1.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:V0:0:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:36:59.402373+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1777 SPN-049d66a3d47fc910 Soho Club unknown google review_43 1 0 Some very nice people. Friendly and safe. 0 41 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:45.875445+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1082 SPN-7dca379acac1a4f3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURILTZHeGxnRRAB 1 0 Alles perfekt! 0 14 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343127+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:31.241725+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1778 SPN-49a5fc1d7fd1b245 Soho Club unknown google review_43 1 1 Several big rooms, and good prices on drinks. 42 78 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:O1.03+V1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:45.876181+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 2100 SPN-96cddfd998e28b16 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSaTY2Vk9REAE 1 0 Great track 0 11 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.852893+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1087 SPN-5ed487db5b66c912 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURYOHAtN3h3RRAB 1 0 De 10, repetiré sin dudarlo! 0 28 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343096+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:00.422192+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1094 SPN-2b8100f149222a6b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3eU9TRjBRRRAB 1 0 Muy buena experiemcia con ellos , Sin sorpresas ,todo excelente 0 61 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34305+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:30.99574+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1088 SPN-dc94c5f620a62ad6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQza2R1LUlBEAE 1 0 Depozyt większy niż w ofercie. 0 30 standard V1.01 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343092+00 high URT:S:P1.01:-1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:04.812446+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1081 SPN-05e8a178f134a389 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURYdFpETmNREAE 1 0 Antonio es el mejor!!! 0 22 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES Antonio Staff antonio \N \N \N t t 2025-01-25 01:27:48.343137+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:23.464907+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1093 SPN-0907c704312dde88 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3aEpyMlNBEAE 1 0 Carlos Y Dani son muy simpáticos! Muy muy recomendable 0 54 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343052+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:25.812845+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1090 SPN-12aef90647b3d3a7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3cU8yNUJnEAE 1 0 muy buen servicio y el coche genial 0 35 standard O1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343083+00 high URT:S:A1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:13.604408+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1086 SPN-1742162a68f8cafb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIdkktRGlRRRAB 1 0 Gran servicio de Nestor y Carmen 0 30 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343102+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:56.316615+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1092 SPN-48046dd0264e516a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuM3VUNnp3RRAB 1 0 Muy bueno el servicio estoy encantada Dani y Néstor 0 51 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343054+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:22.305438+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1089 SPN-53bcf53d1df3d011 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIaU8tdlJ3EAE 1 0 Tanto Carlos como Fran encantadores 0 34 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343089+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:09.780444+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1085 SPN-57b8899bbd6a29e0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3NXVHWW93RRAB 1 0 Buena gente. Lo recomiendo 0 26 standard P1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343104+00 high URT:S:A1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:51.749676+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1083 SPN-6f015823974fc98c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3cU0zWGRREAE 1 0 Muy buen servicio 0 17 standard J2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343117+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:38.345098+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 1084 SPN-c025540b594d0a7f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIbG8ydGNnEAE 1 0 Muy simpático y atento 0 22 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343109+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:45.59199+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1694 SPN-6173c045d922820d Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB 1 0 Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for hours without there being a dull moment. The bartenders are fast and the service is good. Great atmosphere in the club. 0 194 standard E1.04 {P1.01,J1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-03 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:07.969762+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1100 SPN-407690281983ed36 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3ejlHdmJ3EAE 1 0 Muchas gracias por la atención de Carmelo a por el vehículo Muy atento y amable 0 78 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES Carmelo staff carmelo \N \N \N t t 2025-01-25 01:27:48.343039+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:57.403576+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1104 SPN-a6287ea188e3c963 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3ejVHeDhnRRAB 1 0 Carmelo muy amable y simpático, todo perfecto. 0 46 standard A1.01 {} V+ I3 CR-N S1 A1 TC ES Carmelo staff carmelo \N \N \N t t 2025-01-25 01:27:48.343029+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:12.45348+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1110 SPN-cf30301515d44b15 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB 1 0 Voiture nickel 0 14 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342988+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:40.678114+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1099 SPN-21aa0863bd36a4b1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuLXB1ZndBRRAB 1 0 Buen trato muy profesionales en especias Carlos y Néstor 0 56 standard P2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343041+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:51.127869+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_01 1113 SPN-55fb54f7b50fb569 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3M0tPejZRRRAB 1 0 Todo perfecto, trato de 10 y super fiable. Totalmente recomendable. 0 67 standard R2.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342975+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:49.228395+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R2.R2_02 1097 SPN-5cc93103b6d22d6a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3aGJ2Rm93RRAB 1 0 Dany y Antonio gente súper amable y simpatica 0 45 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES Dany y Antonio person dany y antonio \N \N \N t t 2025-01-25 01:27:48.343045+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:42.486287+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1106 SPN-614f065e2a476bea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuek5EdExnEAE 1 0 Muy buen servicio. Ysaac, nestor y carmen muy majos y atentos 0 62 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343013+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:21.740841+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1109 SPN-8920c8c4787fa958 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIdVp1bFFREAE 1 0 Me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias Nestor ,Dany ... 0 85 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342995+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:34.228196+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1101 SPN-8ce6763e96ce00b7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIb2Z6ajRRRRAB 1 0 Un maravilloso servicio por parte de Carmen y Néstor muchas gracias por la amabilidad y cortesía 0 85 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Carmen y Néstor staff carmen y néstor \N \N \N t t 2025-01-25 01:27:48.343037+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:01.856101+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1112 SPN-8ee70f4e895bf9cd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIcW96NlZnEAE 1 0 Muy amables en el servicio y profesionalidad por parte de Fran y de Carlos que estuvieron atentos en todo momento. 0 109 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342977+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:44.948778+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1105 SPN-aba525e7b2266d74 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3cGUyaWl3RRAB 1 0 Carmen ha sido encantadora y todo muy claro explicado 0 53 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carmen staff carmen \N \N \N t t 2025-01-25 01:27:48.343021+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:16.554561+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1108 SPN-abe73a094335852e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIMlBMZ2NBEAE 1 0 Sergio muy amable y nos acercó para no perder el avión súper bien 0 65 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Sergio staff sergio \N \N \N t t 2025-01-25 01:27:48.343001+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:29.857958+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1111 SPN-b390ac676f0986f0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB 1 1 Personnel très serviable et très efficace 15 54 standard P3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342988+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:40.678821+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 1107 SPN-b78251a98d0d19cf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINXBUOW13RRAB 1 0 Todo perfecto y sencillo, muchas gracias Dani por el gran trato! 0 65 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES Dani staff dani \N \N \N t t 2025-01-25 01:27:48.343003+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:25.346943+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1095 SPN-bf44329738a19f47 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnNtRzhRRRAB 1 0 Muy buen trato, y trabajadores muy amables 0 42 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343048+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:34.6958+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1096 SPN-c48473ff9c54232a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNINkltMlpBEAE 1 0 Atención personal de primera por parte de su personal, Carlos y Antonio. Muchas gracias por todo. 0 83 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343047+00 high URT:S:A1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:38.843783+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1098 SPN-f4b5c9701554980e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzhpUE9nEAE 1 0 Buena experiencia. Extraordinario el trato de Carlos y Néstor. 0 62 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343043+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:46.6193+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1103 SPN-fca5cc3bcdeb3cf4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB 1 1 Para repetir sin duda 67 85 standard R4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.343035+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:08.339757+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 1695 SPN-81a00797079991a8 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB 1 0 Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing. 0 92 standard E1.04 {E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-01 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:19.815702+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1115 SPN-fb0fd1f85b72ff00 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB 1 0 Todo perfecto, coche nuevo 0 25 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342969+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:00.475203+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1124 SPN-bfdbf8a0e561d14e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE 1 1 repetiré seguro! 139 143 standard R1.01 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342857+00 high URT:S:R1.01:+3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:38.760575+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1125 SPN-c4c88fe9d129175f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE 1 0 Servicio de 10. Vehículo nuevo y precio súper competitivo. 0 61 standard O1.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342839+00 high URT:S:O1.01+P1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:45.712195+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1127 SPN-30aa91733311bf56 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3X2NQY01BEAE 1 0 coches super nuevos y más amables no pueden ser. Todo facilidades. 0 66 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34283+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:49.691875+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1130 SPN-4565d146417b82f8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB 1 1 súper recomendaciones para Isaac y antonio los mejores sin duda 118 164 standard A1.01 {} V+ I3 CR-N S2 A1 TC ES Isaac y Antonio person isaac y antonio recommendation \N \N f t 2025-01-25 01:27:48.342815+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:10.030594+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1126 SPN-1338903f29aa4f1d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE 1 1 Personal muy amable y atento. Repetiremos. 62 92 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342839+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:45.712853+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1131 SPN-16cf8ecee9164f60 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuX3RiSjRBRRAB 1 0 Totalmente recomendable, Dany y Antonio muy majos...trato muy agradable, además nos recomendaron sitios de la isla acertados para nuestros gustos. 0 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342813+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:14.559735+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1129 SPN-28ebc8e42dbb905a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB 1 0 Una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendaciones 0 118 standard P2.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342815+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:10.029931+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1114 SPN-3a65335d177ffbc1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNINFlmSjJ3RRAB 1 0 Un servicio excelente por parte de Antonio que nos guió y recomendó sobre que hacer y tambien a Carmen y Nestor 0 106 standard P2.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342971+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:54.178306+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1122 SPN-42049240fda260da ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB 1 1 Adrian war super lieb und hat uns direkt am Terminal abgeholt 46 88 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Adrian staff adrian \N \N \N f t 2025-01-25 01:27:48.342865+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:31.347921+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1119 SPN-67d8e192af2a6a45 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3aTVXR0lREAE 1 0 Recién me atendió David Martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, sino como visitante). :-) 0 106 standard P2.04 {} V+ I3 CR-N S1 A1 TC ES David Martín staff david martín \N \N \N t t 2025-01-25 01:27:48.342907+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:12.644837+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1123 SPN-6a7287581b5539db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE 1 0 Carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car también muy amable y atento 0 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342857+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:38.759897+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1118 SPN-7166bf31d6d084f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNILTltRUpBEAE 1 0 Muchas gracias a Carmen y Carlos que me atendieron en la oficina y sobretodo a Antonio que desde el primer momento quiso ayudar en todo lo posible aconsejándome y recomendando cosas para hacer, un servicio de 10 gracias Antonio! 0 202 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Antonio staff antonio \N \N \N t t 2025-01-25 01:27:48.342911+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:08.986505+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1121 SPN-80b90704976e16eb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB 1 0 einfache Abwicklung, keine versteckten Kosten 0 45 standard V1.03 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342865+00 high URT:S:J1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:31.347427+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1120 SPN-98f29bf6163e0904 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3aWVXSTVnRRAB 1 0 Servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el personal lo mejor de lo mejor 0 139 standard P1.01 {O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342893+00 high URT:S:A1.01+O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:24.659171+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1116 SPN-c4b9a67776526450 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB 1 1 Carmen esta muy amable 26 49 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carmen staff carmen \N \N \N f t 2025-01-25 01:27:48.342969+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:00.475919+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1128 SPN-f80a8f84236232e0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIX3UyX2J3EAE 1 0 Trato genial! Carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en la isla 0 106 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342824+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:53.794144+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1132 SPN-55d2ed879f6af7ec ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB 1 0 Muy rápido y cómodo el alquiler. Al llegar nos atendió Carlos y nos llevó de vuelta Nestor. 0 83 standard J1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342811+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:21.277545+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1696 SPN-385eda3acddd32d1 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB 1 1 The staff and customers are friendly 93 123 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-01 18:34:31.336452+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:19.816851+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1697 SPN-3c10e41a8cc4ebb9 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB 1 0 We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free. I feel sorry for the administrators, it's quite strange approach. The system you have is stupid and discriminatory. 0 174 standard V1.02 {R1.02} V- I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:V1.02:-3:22TH.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:36.934117+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_02 1137 SPN-88c9fa420d875f5b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNubnRheTBBRRAB 1 0 Super buen trato de parte de Carmen! Nos atendió muy amablemente, nos dio recomendaciones de la isla. Muchisimas graciss Carmen por tu carisma 0 139 standard A1.01 {} V+ I2 CR-N S2 A1 TC ES Carmen staff carmen \N \N \N t t 2025-01-25 01:27:48.342793+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:35.857332+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1142 SPN-92e6d18b8d9ab43d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB 1 1 no vale la pena hay opciones mucho mejores y dentro del aeropuerto 99 134 standard J1.04 {} V- I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342739+00 high URT:S:J1.04:-2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:53.949827+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_04 1143 SPN-6ad8a8874ab99934 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE 1 0 Rapidez, eficacia, claridad y trato directo, sin marear la perdiz. Alquiler de un día para otro, del sábado para hoy domingo. 0 139 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342732+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:03.438991+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1149 SPN-549fb4a97fc10b43 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB 1 1 Volvería a repetir, nos transmitió mucha confianza. 84 118 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342713+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:21.904534+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1141 SPN-089c4fad8da82aa2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB 1 0 Está fuera del aeropuerto, horario muy corto y por dejar el coche antes de las 8:00 te clavan 50€ 0 98 standard V1.03 {P1.03} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342739+00 high URT:S:J1.02+P1.03:-2:22TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:53.948998+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1144 SPN-1db8e74425aa6e78 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE 1 1 Encantada con el trato telefónico y en persona. Gracias Carlos y Antonio 140 182 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342732+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:03.439728+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1133 SPN-2231f4d6ec12caf8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB 1 1 Los dos chicos de 10 :) 83 104 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342811+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:21.278469+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1148 SPN-25e0ecff44bad19b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB 1 0 Nos atendieron muy amablemente y con instrucciones claras. Económico pero el servicio muy bueno. 0 83 standard P1.01 {P1.01,A1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342713+00 high URT:S:A1.01+P1.01+A1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:21.903676+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1135 SPN-52453d773dbde889 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB 1 0 Dani y Antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno. 0 98 standard P4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342799+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:31.735362+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P4.P4_01 1136 SPN-5a0107477b876913 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB 1 1 Todo fue genial y a unos precios insuperables! 99 129 standard V1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342799+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:31.736057+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1145 SPN-5bc9562f38ad5aa4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuaHVyXzhRRRAB 1 0 Muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, Antonio y Néstor y por las gestiones en la oficina. 0 135 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342723+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:07.566605+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1146 SPN-83ef8f4472c0b4dd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE 1 0 Carlos y Fran son eficientes, te ayudan en todo. Son geniales. 0 73 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carlos y Fran staff carlos y fran \N \N \N t t 2025-01-25 01:27:48.342715+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:14.443456+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1147 SPN-844e3c0a1309609a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE 1 1 Lo unico a mejorar son las indicaciones para ir al punto de recogida. 74 126 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342715+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:14.444135+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1134 SPN-a6ab784bf2e5439d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuOWFpVjBBRRAB 1 0 Carlos y Néstor muchas gracias por el trato recibido. Me solucionaron todo rapidísimo, si vuelvo a alquilar será con ustedes. 0 118 standard P1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342803+00 high URT:S:A1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:25.393049+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1140 SPN-f56007faa0513c31 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE 1 1 Mención especial a la atención y amabilidad de Carlos, Fran y Nestol. 46 88 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carlos, Fran y Nestol staff carlos, fran y nestol \N \N \N f t 2025-01-25 01:27:48.342746+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:46.557164+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1698 SPN-6bddf8e186892ded Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB 1 1 I support clubs by buying drinks and coming back. No need for manipulative bullshit. 175 223 standard R1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:R1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:36.93539+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_01 1152 SPN-2f994c6f69911606 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE 1 1 Desde luego repetiremos, muchas gracias. 140 174 standard R1.01 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342703+00 high URT:S:R1.01:+2:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:31.383466+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1153 SPN-eee04c91783e6206 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIMzVhY3FRRRAB 1 0 Ha sido todo muy fácil y agradable, destacando Dany y Antonio en el transporte desde el aeropuerto y la atención en sus instalaciones. 0 139 standard J1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342701+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:36.115748+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1157 SPN-8a27c028017fd3ec ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE 1 1 Estrené coche! 100% recomendable. 84 108 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342676+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:52.934849+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1161 SPN-51c6e2404206f553 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE 1 0 Carlos és Fran mindenben a segitségünkre voltak. Nagyon kedves és segítőkész volt mindenki. A hab a tortán az volt amikor Carlos az anyanyelvünkön, magyarul szólt hozzánk. 0 164 standard A1.01 {R1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342607+00 high URT:S:A1.01+R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:11.840119+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1162 SPN-22a9fb6215a12a61 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE 1 1 Ha bárki autót szeretne bérelni Gran Canarian jó szívvel ajánlom neki a srácokat! Kiváló ár/érték arány. 165 233 standard V1.01 {} V+ I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342607+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:11.841142+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1160 SPN-1c2b0a7529e518a7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB 1 1 Gracias Isa ( a mi llegada), Carmen y Antonio al recoger el coche. 43 83 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342629+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:04.17229+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1154 SPN-2aa599813c882976 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuMXJhOHJRRRAB 1 0 Los empleados muy amables y cordiales, siempre dispuestos ayudar. La información que dan es muy acertada 0 98 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342699+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:40.888218+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1155 SPN-2c567174c37648a0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuck5mSWZBEAE 1 0 Impecable servicio de alquiler de coches. Muy útil para recorrer la isla. Perfecta atención por parte de Carlos, Fran y Néstor. 0 109 standard P1.01 {J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342695+00 high URT:S:A1.01+J1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:46.423608+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1151 SPN-4433e27df5f9a927 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE 1 0 El trato al público ha sido maravilloso. En especial Sergio y Vanesa nos dieron recomendaciones de sitios chulísimos que no nos podíamos perder. 0 139 standard P2.04 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342703+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:31.382951+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1150 SPN-5e2aef07e14fd1fd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNueXU3ak5REAE 1 0 La experiencia con esta empresa ha sido genial, el trato con Carlos y Antonio fue magnífico, es un placer trabajar con profesionales como ellos, su amabilidad y dedicación con el cliente es de 10. 0 174 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342705+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:25.834442+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1163 SPN-5efccb7b26b46b55 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB 1 0 Muchas gracias a todo el equipo de Click en Ojos de Garza, Carmen, Antonio, Nestor y sus compañeras que nos han atendido perfectamente y con gran amabilidad. 0 157 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342601+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:21.295254+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1156 SPN-833389f54df8743f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE 1 0 Excelente experiencia! Amabilidad en la atención al cliente y buena relación calidad- precio. 0 83 standard V4.01 {P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342676+00 high URT:S:A1.01+P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:52.934263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 1158 SPN-8e9b000c94655f18 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3NjhQSy1RRRAB 1 0 Servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones de coche según nuestras necesidades 0 139 standard P1.01 {P1.01} V+ I3 CR-N S3 A1 TC ES Carmen staff carmen \N \N \N t t 2025-01-25 01:27:48.342672+00 high URT:S:A1.01+P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:57:57.735827+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1165 SPN-c9cd380473c889fa ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNId2NXWTd3RRAB 1 0 Todo perfecto. Súper rápido y sin ningún problema tanto en la reserva como con el coche. Gracias Antonio por tu ayuda y gestión. 0 139 standard J1.01 {A1.01} V+ I3 CR-N S3 A1 TC ES Antonio staff antonio \N \N \N t t 2025-01-25 01:27:48.342593+00 high URT:S:J1.01+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:26.767647+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1164 SPN-d8ec3d1d021544cb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB 1 1 Repetiremos sin duda. 158 182 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342601+00 high URT:S:R1.01:+2:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:21.296181+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 1166 SPN-ea42ed165a2b36b8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdm9XNXF3RRAB 1 0 Fuimos atendidos por Carlos y Antonio y la experiencia fue estupenda. Muy amables y en lo relativo al coche todo genial. 0 106 standard P1.01 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342587+00 high URT:S:A1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:31.635372+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1167 SPN-31280b656ab40e7b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE 1 0 Recomendable 100%. Fuimos atendidos por Carlos y fue muy amable con nosotros. 0 83 standard A1.01 {} V+ I3 CR-N S1 A1 TF ES Carlos staff carlos \N \N \N t t 2025-01-25 01:27:48.342582+00 high URT:S:A1.01:+3:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:38.562097+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1168 SPN-1a7a10f29b1729d5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE 1 1 Si volviéramos a la isla sin duda repetiríamos. 84 118 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342582+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:38.562825+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1699 SPN-8760f555701b920e Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB 1 2 Its a never seen system when a single person or a couple is less welcome than a group of 3. 224 284 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:36.936396+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1170 SPN-f6e477d15ee3ac98 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB 1 1 Nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta. 67 116 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34258+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:50.806037+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1171 SPN-a220798674efb354 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB 1 2 Muy recomendable. 117 134 standard R1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34258+00 high URT:S:R1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:50.806723+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1172 SPN-bc74c174b9991bdf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE 1 0 Excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo . 0 118 standard O1.01 {P1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342578+00 high URT:S:O1.01+P1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:57.532561+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1700 SPN-3d298e043e6ec9ed Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB 1 0 every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathroom I’ve ever seen in a public place. 0 139 standard E1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-01 18:34:31.336452+00 high URT:S:E1.01:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:37:45.050283+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1176 SPN-8ebb3b27321cf358 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB 1 1 Volvería allí para alquilar otro coche por necesidad. 84 118 standard R1.01 {} V+ I2 CR-N S2 A3 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34257+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:10.039622+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1182 SPN-50af94eac08a1d70 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE 1 1 Recomendable 100%. 157 176 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342537+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:32.806037+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1180 SPN-b395a7b3c7018e86 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB 1 1 Alquiler económico y el vehiculo en excelentes condiciones. 99 134 standard V1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342546+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:26.150142+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1181 SPN-0a233830376946bd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE 1 0 Excelente servicio. Las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy atentas. Los compañeros que atienden en la oficina, muy serviciales. 0 157 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342537+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:32.805269+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1174 SPN-7eef90c93764f55c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIeFBTYldnEAE 1 0 Una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta compañía 100% 0 98 standard P1.01 {R1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342574+00 high URT:S:A1.01+R1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:02.140325+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1178 SPN-9860a538829297e9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB 1 1 luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra hija unos detalles, estamos muy agradecidos con los chicos y la empresa, muchas gracias!! 218 335 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342565+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:18.902473+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1175 SPN-b50c460c2edd922e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB 1 0 Encantado con el servicio que ofrecen y sobretodo con Dani que me entendió super bien. 0 83 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Dani staff dani \N \N \N t t 2025-01-25 01:27:48.34257+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:10.038699+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1179 SPN-bbb317b1c6a8692c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB 1 0 Sorprendido con este nuevo Rentacar en Canarias, tanto Carlos como Fran han tenido una muy buena atención. 0 98 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carlos, Fran Staff carlos, fran \N \N \N t t 2025-01-25 01:27:48.342546+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:26.149472+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1169 SPN-ced151168f7ef36c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB 1 0 Nos atendieron Carlos y Francisco. Fueron simpáticos y amables. 0 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES Carlos y Francisco staff carlos y francisco \N \N \N t t 2025-01-25 01:27:48.34258+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:50.80522+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1183 SPN-f3e6a141e6f67675 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOUxDR3NnRRAB 1 0 Tramitar la reserva con los chicos fue de maravilla!! Especialmente Carlos, Néstor y Fran nos hicieron las cosas muy fáciles, además de que no te piden muchos requisitos y es barato, con coches a estrenar para disfrutar de la isla en condiciones. 0 218 standard V1.01 {A1.01,P1.01,O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34252+00 high URT:S:J1.01+O1.01+P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:38.199579+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1173 SPN-f4528b4826fc7b53 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE 1 1 Muy amables , buen trato. Gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪 119 188 standard P1.01 {} V+ I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342578+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:57.533088+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 2250 SPN-9864db72e31b6e88 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNKNUtMZXdnRRAB 1 0 Brilliant evenings fun . For all ages . 0 39 standard A3.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.59398+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 1184 SPN-fb20ab858876f3e0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB 1 0 Me fue super bien , me Costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mismo vinieron a buscarme un equipo genial 0 139 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342516+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:44.934749+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1701 SPN-eb2827c7e8268134 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB 1 0 Was hard to see the performers and the drinks and tickets were expensive. 0 78 standard V1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-03 18:34:31.336452+00 high URT:S:V1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:07.343089+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1702 SPN-1a80606abd277dfd Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB 1 1 The bathroom was also just wet like someone had just covered every surface in water? Seems strange, I've seen swimming pool bathrooms less wet. 78 174 standard E1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-03 18:34:31.336452+00 high URT:S:E1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:07.343943+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1188 SPN-4ebdd645c6543c56 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIdUl2M09REAE 1 0 Todo perfecto!! Rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron hasta detalles de sitios y comidas que probar gracias a Dany, Antonio y Néstor todos super amables 0 218 standard O1.03 {A1.01} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342504+00 high URT:S:O1.03+A1.01:+3:33TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:59.624163+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 1191 SPN-0a9b35940ca9a6de ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE 1 2 Besonders hervorzuheben ist der exzellente Abholservice – einfach perfekt! Wir können diesen Autoverleih ohne Einschränkung weiterempfehlen und würden jederzeit wieder hier buchen. 319 426 standard J1.01 {} V+ I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.3425+00 high URT:S:J1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:09.830348+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1192 SPN-52140f77f65f7287 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURudnMyQ3lRRRAB 1 0 Hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropuerto, nos dieron recomendaciones y tips para nuestras vacaciones. 0 174 standard J1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34249+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:14.893923+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1190 SPN-1b9c96ef39090ddb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE 1 1 Die Preise sind sehr fair, und die Fahrzeuge waren in einem top Zustand. 267 319 standard V1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.3425+00 high URT:S:P1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:09.829881+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_02 1185 SPN-2f458172d1ff9662 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB 1 1 Bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable. 139 197 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Bea staff bea \N \N \N f t 2025-01-25 01:27:48.342516+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:44.93601+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1194 SPN-673e432e701b7c8e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE 1 0 Gran servicio, gran atención, buenos precios. 0 50 standard V1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342467+00 high URT:S:A1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:32.124232+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1197 SPN-6f9179dba1bc5dba ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE 1 0 La comunicación y la acogida ha sido increíble! Nos vinieron a buscar al aeropuerto y también nos llevaron al finalizar las vacaciones. 0 139 standard P4.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342465+00 high URT:S:J1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:40.824662+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P4.P4_01 1193 SPN-71c11a35f5e8b0a0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuMF9PZmVnEAE 1 0 Destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el precio muy económico. 0 109 standard V1.01 {A1.01,P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34248+00 high URT:S:J1.01+A1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:20.442445+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1186 SPN-91e5192ad97cf5d5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuN18yM2xRRRAB 1 0 Antonio y Dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del coche, super atentos y muy amables. 0 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342512+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:48.790398+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1199 SPN-bafcc2e37b811e7d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE 1 0 Muy buen servicio de Carmen, muy amable y rapida, además nos han encantado las recomendaciones de Antonio sobre que ver en la isla. 0 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342463+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:49.186342+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1187 SPN-d73384199a71982a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURub2NhSC1nRRAB 1 0 Muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en el aeropuerto pero por lo demás perfecto 0 139 standard P1.01 {O1.01,J1.02} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342508+00 high URT:S:A1.01+O1.01+J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:54.30226+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1266 SPN-ebc7f9333a2a1b87 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB 1 2 Totalmente recomendable. 205 227 standard R4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342222+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:07.211094+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 1196 SPN-f377ed5341e94dd2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE 1 2 Mi experiencia con el staff de Gran Canaria es de 5 estrellas 🌟 140 183 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342467+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:32.125404+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1195 SPN-f626c5864309c175 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE 1 1 Desde luego que volveré a reservar con esta empresa cuando vuelva a Gran Canaria o me coincida en otro aeropuerto. 51 139 standard R4.03 {} V+ I3 CR-N S3 A3 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342467+00 high URT:S:R1.01:+3:33TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:32.124968+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_03 1200 SPN-51a88e34c152dc7f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE 1 1 Por otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. Excelente servicio. 139 218 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342463+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:49.187039+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1703 SPN-31a81092ac22a239 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB 1 2 But on the other hand the drinks were STRONG and what I could see of the performance was amazing. And the bathrooms were clean... Just wet. 174 263 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-03 18:34:31.336452+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:07.344262+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1779 SPN-ff77493a6018cc13 Soho Club unknown google review_43 1 2 A seperate living room with fashion tv show on whole wall. 79 123 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:E1.03:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:45.876718+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_03 1203 SPN-0fac6271af118164 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB 1 1 el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran ) y mal , a una velocidad excesiva 118 196 standard J2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342434+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:06.658742+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 1204 SPN-ac813c461e195589 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB 1 2 No volvería a usar ni recomendaria a nadie 196 227 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342434+00 high URT:S:R1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:06.659284+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1206 SPN-db568537013a0984 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE 1 1 Hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. Si volvmos a Gran Canaria alquilamos aqui fijo. 246 319 standard O1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342425+00 high URT:S:O1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:17.983601+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1207 SPN-939f2c55ce12268c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB 1 0 Trato inmejorable de Carlos, Antonio y Dany. Tres personas muy amables que se portaron conmigo en todo momento de 10. Se nota que dan todo por su empresa y los clientes, a día de hoy esto se agradece. 0 197 standard A1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342416+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:26.981132+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1210 SPN-be4d19bc78de0a66 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE 1 1 Si volvemos por ahí, sin duda repetiremos 175 210 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342411+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:38.074925+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1212 SPN-afebcef991f1d602 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB 1 1 Rückgabe ohne Probleme. Gutes Auto (VW Taigo). 92 122 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342407+00 high URT:S:J1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:47.360381+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1214 SPN-745caf622c20a663 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB 1 1 Una compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷 290 358 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342403+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:55.292693+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1201 SPN-2351cb38cce38f6d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOVBEQjlBRRAB 1 0 Reservamos dos coches con ClickRent para recorrer la isla, y fue la mejor decisión. Coches muy cuidados y un personal excelente, especialmente Néstor, Carlos y Fran que nos ganaron con su amabilidad. 0 174 standard P1.01 {A1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342451+00 high URT:S:O1.03+A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:54.516249+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1205 SPN-242ca1700d799880 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE 1 0 El servicio genial! Somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un poco lio para buscar el punto de recogida, es salir por la segunda planta del aeropuerto puerta 2 y todo recto! NESTOR , FRAN Y DANY, gracias por el servicio! 0 246 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342425+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:17.983135+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1202 SPN-26ffc88d0248a7d1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB 1 0 Experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte el dinero 0 118 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342434+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:06.658046+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1213 SPN-32e26c027da3724f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB 1 0 La experiencia ha sido increíble, desde el trato de Isabel que fue la chica que nos atendió y nos comentó todo lo que teníamos que saber, hasta los chicos Carlos, Néstor y Antonio que nos recogieron y nos trajeron de vuelta al aeropuerto y nos comentaron cosas que podíamos hacer y sitios que visitar. 0 290 standard P1.01 {R1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342403+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:55.291968+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1215 SPN-9d4ce8e8e86f32c9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB 1 0 Coche impecable y trato de 10. Carmen, Nestor y Antonio lo pusieron todo muy fácil. 0 83 standard P1.01 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342401+00 high URT:S:A1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:04.43111+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1209 SPN-bb68856f0d4f1903 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE 1 0 Magnífico servicio. Antonio y Néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una amabilidad magnífica. E Isabel nos solucionó todo en la oficina en nada de tiempo. 0 174 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342411+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:38.073325+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1211 SPN-ed334d45c40850fb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB 1 0 Die Abholung war etwas schwierig, da wir den Treffpunkt am Flughafen erst später gefunden haben. 0 92 standard A1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342407+00 high URT:S:J2.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:47.359514+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1341 SPN-3b8acb7b4e968aec ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUMzaVByQ2FBEAE 1 0 Very bad 0 8 standard O1.02 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34078+00 high URT:S:O1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:09.96232+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1704 SPN-ce10dc5b92e1cbd2 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB 1 3 The staff was very nice and they were well equipped for anything. Changed my phone while watching the performance, had a good time. 263 353 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-03 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:07.344782+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1218 SPN-6431d4a2311eb40f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB 1 1 La flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable. 140 205 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342399+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:16.434566+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1219 SPN-b46fe4faf9be0424 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB 1 2 Muchas gracias por todo y repetiré sin duda. 206 241 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342399+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:16.435001+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1780 SPN-d985905bb7f6f91e Soho Club unknown google review_44 1 0 Response from the owner 0 23 standard R3.02 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-01 18:34:31.336452+00 high URT:S:R3.02:0:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:45:52.470446+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R3.R3_02 1222 SPN-4c87f757c9564d77 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE 1 2 Voiture à rendre avec le plein sans le nettoyage à faire. 158 197 standard J1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342397+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:30.883535+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1227 SPN-91399a1e1a7f66f0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB 1 2 Nos tocó un coche nuevo a estrenar 183 213 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342357+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:52.884044+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1228 SPN-9ce8499a578a7c5e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB 1 3 Aconsejo rellenar el depósito en Canary Oil 214 252 standard J1.01 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342357+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:52.88454+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1229 SPN-f1e04f74463d1565 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE 1 0 Experiencia inmejorable, el coche nuevecito y la atención fantástica. 0 66 standard O1.01 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34235+00 high URT:S:O1.01:+3:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:03.143264+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1231 SPN-882e2a9c850147a9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE 1 2 Tenemos intención de volver a Gran Canaria y sin duda alquilaremos el coche con ellos otra vez. 117 183 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34235+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:03.182419+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1232 SPN-daa1a269004f07d2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB 1 0 Coche nuevo y en perfectas condiciones. Trato muy amable de personas que se esfuerzan para que el cliente quede satisfecho. 0 139 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342348+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:14.098656+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1233 SPN-2eb310cb5e8ac092 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB 1 1 Tuve un problema con el horario de cierre, pero no fueron ellos los culpables. Se debía a un error del portal donde reservé. 139 227 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342348+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:14.099598+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1221 SPN-474d482d968339f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE 1 1 pour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre, juste la caution de 1000 euros. 79 157 standard V1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342397+00 high URT:S:P1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:30.883043+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1217 SPN-756214230bc98500 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB 1 0 Un servicio más que excepcional; los chicos que me atendieron Carlos y Antonio fueron super amables y muy profesionales. 0 139 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Carlos y Antonio staff carlos y antonio \N \N \N t t 2025-01-25 01:27:48.342399+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:16.433828+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1220 SPN-b25e023cecf8192c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE 1 0 Tout c'est bien passé pour nous, merci à Dany et Antonio pour leur professionnalisme. 0 78 standard P2.01 {} V+ I2 CR-N S2 A1 TC ES Dany et Antonio staff dany et antonio \N \N \N t t 2025-01-25 01:27:48.342397+00 high URT:S:A1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:30.881911+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_01 2289 SPN-9aaf43774be7e4ed Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR6cXEtV1B3EAE 1 0 Brilliant day racing 0 20 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.698023+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1216 SPN-b9831aa569c99d81 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB 1 1 La información para llegar al microbus de cortesía es un poco confusa. Para el aeropuerto de Las Palmas hay que subir a la primera planta para llegar al punto de encuentro. 83 188 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342401+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:04.43169+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1230 SPN-decc41e3d9d7e286 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE 1 1 Antonio, Carmen, y el resto de gente que nos atendió fueron súper amables. 67 116 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34235+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:03.167356+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1226 SPN-e4aeaa4e15a98215 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB 1 1 Son muy claros explicándote las cosas y eso se agradece 140 182 standard P4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342357+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:52.883526+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P4.P4_01 1223 SPN-f86c4990415f180f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE 1 0 Inmejorable servicio, coches a estrenar , ademas los chicos super majos 0 66 standard P1.01 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342378+00 high URT:S:A1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:38.76091+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1705 SPN-df687c88fa6be48a Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE 1 0 This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks. Their events are amazing and plentiful. 100% recommend to visit for a drag show or a live event. 0 174 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:23.220146+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1706 SPN-520211286aa47c54 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE 1 1 The reason for two stars is the fact that the dance DJs they book are pretty poor. That fact ruins the atmosphere. Last time I danced to a good DJ set there was in 2015 😞 174 290 standard E4.04 {} V- I2 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:E4.04:-2:22TH.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:23.221141+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1236 SPN-23cdf763453c6e51 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE 1 1 Coches nuevos, en condiciones y limpios. 366 398 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342344+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:22.080939+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1781 SPN-ae15c3357a2c76ca Soho Club unknown google review_45 1 0 Simply love this place. The owner is such a nice person with such great ideas. Love the place as such, decoration, music, drinks, people, all perfect. 0 139 standard E1.04 {P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2017-01-31 18:34:31.336452+00 high URT:S:E1.04+P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:00.125472+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1240 SPN-bad78c2ad1cadae6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB 1 0 Nueva franquicia de ClickRent, Aunque está fuera del aeropuerto, merece la pena. Transfer gratuito a/desde el aeropuerto a la campa donde tienen los coches. Flota de coches nuevos, nosotros estrenamos un Fiat500 cabrio de hecho. 0 211 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342315+00 high URT:S:O1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:43.583429+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 1241 SPN-05db6e52a9c7df98 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB 1 1 Trato súper profesional y exquisito por parte de Carlos, Néstor y Antonio que nos atendieron siempre con una amabilidad extrema y una sonrisa. 211 319 standard A1.03 {} V+ I3 CR-N S3 A1 TC ES Carlos, Néstor y Antonio staff carlos, néstor y antonio \N \N \N f t 2025-01-25 01:27:48.342315+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:43.583995+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_03 1247 SPN-ecaf568da13920fc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB 1 1 Además, hemos ido andando y a medio camino Fran se ha parado con el mini bus (que ponen de cortesía desde el aeropuerto hasta el punto, pero con las prisas se nos había pasado) y nos ha llevado el tramo que faltaba. 202 366 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES Fran staff fran \N \N \N f t 2025-01-25 01:27:48.342296+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:05.766885+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1245 SPN-05121ce97eb2e936 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE 1 2 Nach einer Stunde nach dem wir den Gang am Flughafen zig mal abgelaufen haben und nebenbei telefoniert haben. Haben wir ein anderes Auto von Sixt gemietet. 570 646 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342298+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:54.638748+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1234 SPN-3bd61226f6099ccd ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB 1 2 Muy buen comportamiento con el cliente, especialmente Dani y Antonio. 227 275 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342348+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:14.10017+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1244 SPN-5c9b54cfbc27a12a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE 1 1 Eins müsst Ihr wissen. Diese Firma hat KEIN Büro oder Office am Flughafen wo ihr jemanden fragen könnt. Keine Aufschrift mit Click rent NICHTS. Anrufe werden nicht angenommen. Oder es wird gesagt sie arbeiten von 8-20 Uhr und es wird wieder aufgelegt. 366 570 standard A3.05 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342298+00 high URT:S:J1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:54.63756+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_05 1238 SPN-7e48be0d9debde99 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB 1 1 Habe das Auto für 5 Tage gemietet mit Vollkasko bei jeglichen Schäden. Die Kaution bei der Abgabe sofort erstattet bekommen. 45 139 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342326+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:32.632321+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1306 SPN-562be8e9e040b95f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB 1 3 Wir sind daher sehr zufrieden mit ClickRent. 675 711 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341982+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:47.562448+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1246 SPN-a2371d1b086f1c67 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB 1 0 La atención de Carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarnos las opciones que teníamos y nos ha recomendado la mejor para nosotros) ha sido agradable, risueña y atenta. 0 202 standard P1.03 {} V+ I3 CR-N S3 A1 TC ES Carmen staff carmen \N \N \N t t 2025-01-25 01:27:48.342296+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:05.76642+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_03 1237 SPN-af0161d421044e43 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB 1 0 Sehr zufrieden, Schnell zuverlässig und freundlich. 0 45 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342326+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:32.631821+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1235 SPN-b1385445d02543c4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE 1 0 Empresa seria, coches de calidad y personal cualificado y serio. Iniciamos nuestras vacaciones alquilando en CLICKRENT, nos vinieron a buscar Antonio y Dani al aeropuerto, 2 chicos muy amables y profesionales, nos recomendaron de camino a CLICKRENT varios sitios donde comer, visitar, etc.. Al llegar a CLICKRENT nos atendieron Carmen y Nestor, muy bien también, nos explicaron toda clase de dudas etc... Sin duda volvería a alquilar con ellos. 0 366 standard P1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342344+00 high URT:S:A1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:22.08019+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1248 SPN-b18a337a6a252075 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB 1 2 Por otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho. 366 426 standard P2.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342296+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:05.767263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1239 SPN-ee460d88bdc8ede6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB 1 2 Nur zu empfehlen. Danke an Antonio und Carmen Isaac. 139 179 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342326+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:32.632659+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1782 SPN-383f3bb1a8dd83b1 Soho Club unknown google review_46 1 0 Very friendly staff, good drinks and the club was very clean. 0 66 standard P1.01 {O1.01,E1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01+O1.01+E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:10.969339+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1250 SPN-3692a12eca60c2b4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE 1 1 el coche una pasada totalmente nuevo lo estrenamos muchas gracias 139 186 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342284+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:13.733183+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1252 SPN-fd0f2819a13ae97f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB 1 1 Si volvemos, no dudaremos en volver a contratar con ClickRent. Muchísimas gracias por todo. 194 246 standard R1.01 {} V+ I2 CR-N S2 A1 TF ES ClickRent company clickrent \N \N \N f t 2025-01-25 01:27:48.342269+00 high URT:S:R1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:21.675926+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1255 SPN-fbf879c5c5233ee6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB 1 2 All'andata la navetta inesiste. 119 144 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342258+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:31.331525+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1256 SPN-474c87686e72f973 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE 1 0 Ha sido un placer , coger el coche con ClickRent, servicio formidable te recogen en el aeropuerto y te vuelven a llevar. 0 118 standard J1.01 {A1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34225+00 high URT:S:J1.01+A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:40.750873+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1258 SPN-4bfae466efb12bc1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE 1 2 Recomiendo alquilar con ellos. 175 203 standard R1.01 {} V+ I2 CR-N S1 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34225+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:40.752139+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1265 SPN-13cdfc11e778aa80 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB 1 1 No está en el aeropuerto, pero ofrecen bus en 5 minutos. 164 205 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342222+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:07.210609+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1262 SPN-670e63a1fb964839 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB 1 0 Recomiendo al 100% esta empresa de alquiler de coches. Nos recogieron en el aeropuerto en seguida, no tienes que esperar prácticamente nada, ya que hacen viajes cada 15 min aprox. 0 188 standard J1.01 {A1.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342234+00 high URT:S:J1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:58.003201+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1259 SPN-6a016e9dc65f5836 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE 1 0 Muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del aeropuerto a su oficina y las personas que te atienden en ella. Gracias Isaac y gracias Antonio , son muy amables 🙌🏼😊. 0 194 standard P1.01 {J1.01,P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342237+00 high URT:S:A1.01+J1.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:51.047922+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1260 SPN-91e632f0ccb0582a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE 1 1 También te regresan al aeropuerto cuando entregas el coche . 194 238 standard A4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342237+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:51.048441+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1264 SPN-9dc40b5a65b3885e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB 1 0 Todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. Tanto al recoger el coche (Dany/Fran) como al devolverlo (dos personas distintas), todo facilidades y amabilidad. 0 164 standard V4.01 {J1.02,P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342222+00 high URT:S:A1.01+J1.02+P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:07.210085+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 1257 SPN-a595db4518668662 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE 1 1 El personal es amable y encantador. Antonio, Carmen y Néstor fueron en magnífico con nosotros. 119 174 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34225+00 high URT:S:A1.02:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:40.751677+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1263 SPN-b239423d852acf62 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB 1 1 Destacar la atención inmejorable de Isaac y Antonio, ambos muy atentos y recomendándonos lugares para visitar y comer en la isla. Muy amables, agradables y profesionales. 188 319 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342234+00 high URT:S:A1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:58.003944+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1253 SPN-dbddb435dd75dbf8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB 1 0 Hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive. 0 83 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342258+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:31.330306+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1251 SPN-e2eeeffc5447ee62 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB 1 0 Recomendable 100%. Agradecer a Carmen y Nestor lo amables que han sido. No conocíamos esta empresa de alquiler de vehículos y hemos quedado encantados con la profesionalidad y trato de ellos. 0 194 standard P1.01 {R1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342269+00 high URT:S:A1.01+R1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:21.675411+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1249 SPN-faa9e373303ff6a7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE 1 0 Todo muy bien muy agradecidos muy buena la empresa y el personal Dani, Fran y el otro chico que nos buscó en aeropuerto muy atentos 0 139 standard P1.01 {R1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342284+00 high URT:S:A1.01+R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:13.732413+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1254 SPN-ff1ccea4864eeb78 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB 1 1 Orario di apertura ore 8 ma se hai l'aereo presto aiuto! 84 118 standard A1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342258+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:31.331059+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_01 1342 SPN-1b13a0341667c70b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURmcnUzYlJnEAE 1 0 Not easy to pick up the car 0 27 standard J1.02 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340765+00 high URT:S:J1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:14.253716+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1268 SPN-9d0d9fe1c978d819 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB 1 1 La entrega del coche fue sencilla gracias a Antonio y a Dani. 158 204 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342213+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:17.864339+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1707 SPN-f39fd612c8c8af14 Soho Club unknown google ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE 1 0 The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. She didn’t measure the proportion, and I had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. That was too much. And finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) I was literally shocked and about to throw up. That’s disgusting and unacceptable. No respect to clients. Avoid her, awful experience. 0 486 standard P1.02 {} V- I3 CR-N S3 A1 TC ES bartender person bartender staff behavior \N \N t t 2025-06-03 18:34:31.336452+00 high URT:S:P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:39.63339+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1270 SPN-5fc3707c1c95d252 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE 1 0 Cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan... 0 83 standard O1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34219+00 high URT:S:O1.01:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:28.582317+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1271 SPN-c9ad88b5fbbaabb5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE 1 1 La oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora estipulada. 84 157 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34219+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:28.582987+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1708 SPN-2482242197c8bb86 Soho Club unknown google ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE 1 1 Though place is rather cozy 487 511 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-06-03 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:39.634481+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1783 SPN-3c72629d701a1fc7 Soho Club unknown google review_46 1 1 The Dramatica Show was amazing! 67 93 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:10TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:10.971205+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1784 SPN-599b1e5daa8db68d Soho Club unknown google review_47 1 0 The worst long island on the Planet! 0 30 standard O1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-01-31 18:34:31.336452+00 high URT:S:O1.01:-3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:23.220308+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1275 SPN-94eadc39ff0c4824 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB 1 2 Nous recommandons sans hésiter cette nouvelle agence de location ! 266 308 standard R1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34215+00 high URT:S:R1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:38.514318+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1276 SPN-cf1f39ad5ef47e80 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB 1 0 Nos atendieron rápido y nos dieron todo tipo de facilidades. 0 66 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342148+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:48.126547+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1277 SPN-2fb7276895256ee8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB 1 1 El coche muy nuevo y limpio. 67 92 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342148+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:48.127137+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_01 1280 SPN-03b2a843bf875c0f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE 1 1 Hubo un poco de confusión al principio para que nos recogiera el bus. El bus se toma en el punto de encuentro que hay si sales a la calle por la puerta 2 de Salidas. 78 194 standard J1.02 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342146+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:58.295567+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1278 SPN-46eedf7c9494dcaf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB 1 2 Sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos consejos para nuestra estancia. 93 195 standard P2.04 {} V+ I3 CR-N S3 A1 TC ES Sergio staff sergio \N \N \N f t 2025-01-25 01:27:48.342148+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:48.127523+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1272 SPN-7aad89641e8d835f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE 1 2 Mis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agradables. 158 227 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34219+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:28.583428+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1274 SPN-b007c3859b0cfff4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB 1 1 Restitution de la voiture ce matin avec Carlos et navette aéroport avec Nestor ! Navette sans attente à l’aller comme au retour, le chauffeur nous a aidé à chargé ou déchargé nos valises ! 118 266 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34215+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:38.513855+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1273 SPN-d14dedd9e85f2958 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB 1 0 L’agence de location vient d’ouvrir ! Les voitures sont neuves, le personnel est très professionnel et très sympathique ! 0 118 standard P2.05 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34215+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:38.513305+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_05 1279 SPN-d7d6c222c6737369 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE 1 0 Muy buena experiencia. Alquilamos un coche para conocer la islaa muy buen precio. 0 78 standard V1.01 {J1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342146+00 high URT:S:P1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:58.294967+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1269 SPN-df4ac11c8b516bbc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB 1 2 Un equipo encantador que te hace sentir muy bien ❤️ ojalá siga así! 205 253 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342213+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:17.864715+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1283 SPN-88b69b246bbb397c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB 1 1 La unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de Booking para llegar al sitio de recogida, ya que no son claras. Deberia de empezar diciendo que hay que SUBIR a la planta de SALIDAS (no queda claro que hay que subir, ya que dice “ve a la salida” y se entiende que es a la salida del recinto. Sin embargo cuando llamas por telefono al numero de contacto que dais para la recogida, las instrucciones son mucho mas claras. 564 1024 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342132+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:09.422152+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1709 SPN-457408894cdbd0b5 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB 1 0 The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? I loved this place. 0 118 standard A3.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-30 18:34:31.336452+00 high URT:S:A3.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:45.62189+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A3.A3_01 1710 SPN-682caba9b164a5a1 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB 1 0 They only have the phone scan option for the drink menu. 0 56 standard A2.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-30 18:34:31.336452+00 high URT:S:A2.03:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:56.231258+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A2.A2_03 1286 SPN-281a45dd95ea0fc1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE 1 0 Super expérience de location. Nous avons été prit en charge par une navette à l’aéroport. La prise et la restitution du véhicule a été très rapide. 0 157 standard J1.03 {E1.02,A1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342124+00 high URT:S:J1.03+E1.02+A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:26.881458+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1287 SPN-7759f3c559439491 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE 1 1 Nous avons louer une fiat 500 toute neuve. Merci à Nestor et Carlos très sympathique et serviable. 157 218 standard O1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342124+00 high URT:S:O1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:26.882046+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1711 SPN-b90db27917e506f5 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB 1 1 I left immediately. 57 76 standard J1.01 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-30 18:34:31.336452+00 high URT:S:J1.01:-3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:38:56.231861+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 J.J1.J1_01 1289 SPN-19521b9501532ece ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB 1 1 Respecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. No tuvimos ningún problema ni en el check-in ni check-out. Hemos probado otras compañías de alquiler de coches,pero está ha sido la mejor así que volveremos sin duda a contratar con ellos. 486 617 standard J1.01 {O1.01} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342116+00 high URT:S:J1.01+O1.01:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:37.077259+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1712 SPN-7a273d32c58fa5c4 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB 1 0 Nice place, great events! 0 25 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-31 18:34:31.336452+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:03.021686+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 2290 SPN-561cfbc282b16e9c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUNZdFA3OUp3EAE 1 0 Top!!! 0 6 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.710345+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1713 SPN-a437d3cffb860f29 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB 1 0 Greatest club in Litauen love it like it best place to go and have fun perfect DJ SUPER FIVE STAR LIKE THE SOHO IN LONDON YEAAAAAH 0 130 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:08.779185+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1292 SPN-ad06f69632b4bec0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE 1 0 La experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de seguros que se ofrecen el página web no se corresponden con las ofrecidas en la oficina. Sin embargo, pudimos contratar la póliza completa allí sin problema. 0 267 standard J1.02 {P1.02} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342075+00 high URT:S:J1.02+P1.02:±2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:03.137558+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1293 SPN-9ff1840282c18b78 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE 1 1 El vehículo estaba muy nuevo y en perfectas condiciones. 267 307 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342075+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:03.138316+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1290 SPN-198e1f7d4676ba5b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE 1 0 La atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del minibus de cortesía como los recepcionistas a la entrega y recogida de llaves. 0 157 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342078+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:44.565022+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1294 SPN-34caeae4cb108d97 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE 1 2 El personal fue muy amable y puntual, tanto Carmen que nos atendió en mostrador como Nestor y Antonio que nos recogieron y nos llevaron al aeropuerto. 307 396 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342075+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:03.138878+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1284 SPN-40e2c579895d0448 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB 1 0 Encantados con Antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia nosotros y hacia su trabajo. También con Isaac que nos adesoró de todas las gestiones del coche de alquiler y su atención fue estupenda. La vuelta creemos que la hicimos con Carlos un chico muy cercano q tb era muy agradable y atento con las maletas e indicaciones para nuestro vuelo de vuelta. 0 366 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342128+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:19.263908+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1295 SPN-66f7c86c842bf1b7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE 1 3 Nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia. 396 455 standard O3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342075+00 high URT:S:E1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:03.139384+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O3.O3_02 1291 SPN-aadadeb6223053ef ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE 1 1 Recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evitarás disgustos innecesarios. 158 239 standard V1.03 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342078+00 high URT:S:P1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:44.565554+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1296 SPN-deb4a656ecc9f694 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB 1 0 Wir sind pünktlich vom Flughafen abgeholt worden und haben eine nette Mitarbeiterin getroffen und einen neuen Fiat 500 bekommen. 0 134 standard J1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342064+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:13.611052+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1714 SPN-6c32156c968bbf97 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE 1 0 Door charge plus coat check was 6 euros quite fair. 0 45 standard V1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:V1.02:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:28.598241+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_02 1715 SPN-ae7b5fa3fb2a58a1 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE 1 1 Friendly bartenders and ticket person. 46 78 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:28.598894+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1299 SPN-29bcea7ed5b50ace ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB 1 0 Très bon service ; l’agence est à 2 minutes en navette ! La prise en charge est rapide et efficace. 0 98 standard J1.03 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342033+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:24.84643+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1300 SPN-d0af584187315094 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB 1 1 Les explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans forcer à prendre l’assurance. 99 179 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342033+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:24.847721+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1716 SPN-9a18e3153f7d7077 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE 1 2 Music was good it was quite a mix so depends on your preference. But generally quite good. Quite young crowd. Mixed good for an Eastern European country. Definitely visit if you’re a foreigner. Drinks are cheap! 79 195 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:28.599321+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1305 SPN-9a94e74b08a2cca2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB 1 2 Bei der Rückgabe wurde eine 0 8 15 (normale) Rücknahme gemacht. Das die Vermietung kein Büro im Flughafen hat, findet man sofort heraus wenn man sich damit beschäftigt. Der Transfer hat bei uns sehr gut funktioniert - der shuttle kam an den beschriebenen Ort zur vereinbarten Zeit. 487 675 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341982+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:47.56215+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1310 SPN-50632c366749980b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE 1 0 Ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza interior y exterior... 0 118 standard E1.01 {} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341961+00 high URT:S:E1.01:+2:22TH.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:10.508169+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_01 1298 SPN-3cdac599c3150ca1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB 1 2 Auf meine e-mail habe ich noch keine Antwort erhalten. 232 270 standard A3.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342064+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:13.612183+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_03 1307 SPN-6e2b80f10e12b4a9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE 1 0 Descontento con el servicio. No lo recomiendo. 0 40 standard R4.05 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341976+00 high URT:S:A1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:01.287868+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R4.R4_05 1308 SPN-7707c4419af53076 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE 1 1 Lo peor y de ahí mi reseña. Me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( Más que el precio del alquiler del coche los 3 días que lo contraté). 40 155 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341976+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:01.288706+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1297 SPN-89b0f8bcb164c34d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB 1 1 Die Rückgabe hat auch super geklappt, aber die Kaution wurde uns von der Kreditkarte abgezogen und NICHT wieder zurückgebucht. 134 232 standard V4.04 {P1.01} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342064+00 high URT:S:J1.02+P1.01:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:13.611637+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 1303 SPN-8aa29945614b9a97 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB 1 0 Wir waren etwas skeptisch wegen der vielen Meinungen, dass sehr akribisch nach Macken und Dellen gesucht wird. Wir haben das Personal bei Abholung des Wagens auf die vielen schlechten Bewertungen angesprochen. Die Mitarbeiter vor Ort waren sehr offen transparent. Wir haben den Vertrag per Email geschickt bekommen und auf unsere Nachfrage hin auch die bereits dokumentierten Schäden an unserem Mietwagen. Auf uns wirkten die Mitarbeiter vor Ort fair und transparent. 0 366 standard P4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341982+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:47.561146+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P4.P4_03 1301 SPN-c40d3f879bf90e40 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB 1 2 Aucun problème sur cette location. Notons aussi que le personnel est très agréable, courtois et patient. 180 253 standard P1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342033+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:24.848119+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_03 1309 SPN-cea45c55f57f076f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE 1 2 Por el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleados. 155 227 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341976+00 high URT:S:A1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:01.289296+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1304 SPN-e5665b2f216e5e6e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB 1 1 Natürlich müssen sie einem wahrscheinlich deren Versicherung anbieten. Ich würde immer empfehlen eine Versicherung für einen Mietwagen zu haben- egal über welchen Anbieter abgeschlossen. 366 487 standard V1.01 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341982+00 high URT:S:P1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:47.561813+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1343 SPN-7bec9531f6f9b1d0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE 1 0 Very good service from Carmen and Francisco. 0 42 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340758+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:18.59469+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1717 SPN-4e1005b005ffaea8 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB 1 0 If you want to see a different kind of entertainment night, you can choose this place. it has a small stage 0 98 standard E4.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E4.01:0:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:51.312937+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1718 SPN-5bd76973f624a4ce Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB 1 1 but we didn't like their music very much 99 126 standard E4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:E4.04:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:39:51.314015+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1315 SPN-52caa384dadf66d0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE 1 0 Das Auto war sauber und die Abholung und Abgabe hat einwandfrei funktioniert. 0 83 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341855+00 high URT:S:E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:36.848968+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 E.E1.E1_01 1316 SPN-1d230c80a132e8be ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE 1 1 ABER: ich hätte beinahe sehr viel Geld für einen Schaden zahlen müssen, der schon am Auto dran war bevor ich es abgeholt habe. Ich habe zum Glück vorm losfahren ein langes und detailliertes Video von der Außenseite des Autos gemacht, wo man die Delle drauf erkennt. Andererseits hätten sie mir die Delle in Rechnung gestellt, da keine Schäden auf dem Blatt vermerkt waren. Sie haben den Schaden auch nicht im Nachhinein vermerkt, sodass der nächste Mieter in dieselbe Falle getappt wäre. 83 366 standard J1.02 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341855+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:36.849704+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 3234 SPN-9ecb6c03be8ab579 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNnOUpyWjR3RRAB 1 0 Increíble experiencia, y un muy buen trato. Volveré más veces. 0 62 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.009429+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1318 SPN-888a431395c3fc1f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE 1 1 Muy contentos con el coche, con la ruta que hemos conseguido hacer en una semana. 290 340 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341635+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:44.319717+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1319 SPN-ed55c968ff1f9e78 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE 1 0 Hemos tenido buena experiencia con este rentacar. La última vez que vinimos a la isla alquilamos con Orlando, y nos quitaron la fianza por un arañazo que ya traia el coche. 0 164 standard J1.02 {A1.01} V± I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341625+00 high URT:S:J1.02±2:22TH.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:54.314904+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1320 SPN-dd0912308ec6bcf4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE 1 1 Clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. El transfer al aeropuerto no son ni 5 min, y nos informaron sobre los seguros adicionales pero no presionaron para coger algun seguro extra, por lo que todo bien. 164 366 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341625+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:54.315805+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1321 SPN-31d60faf8ffb7749 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE 1 2 La proxima vez que vengalos alquilaremos tambien aqui. Gracias! 366 404 standard R1.01 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341625+00 high URT:S:R1.01:+2:11TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:54.316274+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1312 SPN-893ac995202587e7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE 1 0 Esperienza negativa. Premetto che le indicazioni Google per raggiungerlo sono approssimative. Si trovano in mezzo al nulla. In più quando ti danno l'auto non ti mostrano i danni e con la scusa del paperless non ti danno neanche un contratto con dettagli auto. 0 267 standard A1.04 {E1.02,A1.02} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341941+00 high URT:S:J1.02+E1.02+A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:27.933217+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1325 SPN-9871475efd3a79ba ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 0 Super freundlich, Autos im tollen Zustand und unkomplizierter Ablauf. 0 73 standard P1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341532+00 high URT:S:A1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:23.307189+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1317 SPN-d4d8b72c33b71a0d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE 1 0 Hemos realizado una reservación a través del booking en Polonia, donde al llegar a Gran Canaria nos han dado otra información de costes , pero al conocer bastante bien el idioma en la oficina nos han ayudado muchisimo por lo que estamos muy agradecidos a Sñra Carmen, ojalá mas personas que le den su corazón al trabajo❤️👏🏼 0 290 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Sñra Carmen staff sñra carmen \N \N \N t t 2025-01-25 01:27:48.341635+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:44.318881+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1323 SPN-d6a8a3682a153052 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE 1 1 La empresa está situada a escasos 5 minutos del aeropuerto. 290 335 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341536+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:04.163505+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1324 SPN-e58e094a64a053c7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE 1 2 Si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio. 335 396 standard V2.04 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341536+00 high URT:S:R1.02:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:04.16392+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_04 1314 SPN-fc57cb426d1c13c5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE 1 2 Preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilità a risolvere senza derubare e gentilezza da parte di altre compagnie. Sono proprio una trappola per turisti come da location e struttura prefabbricata in mezzo al nulla. Da evitare come la peste. 358 487 standard R1.02 {E1.03} V- I3 CR-W S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341941+00 high URT:S:A1.03+E1.03:-3:33TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:27.934958+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1326 SPN-299238c763602631 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 1 Ein Punkt Abzug, weil man sie leider am Flughafen gar nicht finden konnte und die Kommunikation nur mittels eines Einheimischen per Telefon geklappt hat. 73 174 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341532+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:23.30802+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1719 SPN-915138f1c0ef316f Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB 1 0 nice mix of People, and really nice service 20 61 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-02 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:11.885317+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 2051 SPN-26df1acc6a7f8e0a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE 1 0 Nice location 0 13 standard A4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:A4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:40.324995+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 1329 SPN-cd3dcaff73e8195c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 4 Nach einer langen Anreise war das wirklich nicht toll. 307 347 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341532+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:23.309126+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1330 SPN-1ba62aabae9d2359 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 5 Ansonsten waren wir mit dem Service vor Ort und dem Auto zufrieden. 347 396 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341532+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:23.309518+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1332 SPN-20596f788abf9851 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE 1 1 A mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final de nuestras vacaciones nos volvieron a llevar junto con nuestras maletas. Muy puntuales y eficaces. 174 319 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341292+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:34.47277+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1333 SPN-0dc2e231e2628c80 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE 1 2 el coche que nos proporcionaron para el uso de nuestra estancia en la isla de Gran Canaria prácticamente nuevo. Volveremos a contar con vosotros en nuestro regreso a la isla. Muchas gracias de corazón. 319 426 standard O1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341292+00 high URT:S:O1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:34.473285+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1335 SPN-2a5ca28e6bd18bf8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB 1 1 Es war etwas schwierig, die Shuttlebus-Haltestelle zu finden. Man findet vielleicht die richtige Haltestelle, aber es ist kein Bus da. Dann ist man unsicher, ob es wirklich der richtige Treffpunkt ist. Man möchte schließlich nicht umsonst warten. Ein paar Fotos vom Treffpunkt und dem Bus selbst hinzuzufügen, wäre sehr hilfreich! Wir sind stattdessen zu Fuß zur Anmeldestelle gegangen (ca. 15-30 Minuten). 139 366 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341266+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:49.339383+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1336 SPN-e94dd921f4236bed ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB 1 2 Dort wurden wir herzlich begrüßt. Es gab mehrere Anmeldeschalter, aber es war nicht viel los, sodass die Anmeldung maximal 10 Minuten gedauert hat und wir direkt losfahren konnten. Das Auto war fast neu, makellos und sehr gepflegt. 366 525 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341266+00 high URT:S:A1.01+O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:49.339677+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1337 SPN-0d0ee5b036b6b162 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB 1 3 Zum Schluss verlief die Schlüsselübergabe unkompliziert, und innerhalb von 10 Minuten waren wir am Flughafen. Dieses Mal haben wir den Shuttlebus genommen. 525 617 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341266+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:49.339952+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1339 SPN-b4fc00af7020e4ad ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB 1 1 Das Auto wurde sehr schnell übergeben, und auch die Rückgabe lief reibungslos. Das Auto wurde geprüft, und wir waren schon auf dem Weg mit dem Transfer zum Flughafen. Die Kaution wurde sofort auf die Karte zurückerstattet👍🏻 174 348 standard J1.03 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341161+00 high URT:S:J1.03+O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:05.405611+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1331 SPN-22ccbfcbc1b4d7fc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE 1 0 Recomiendo al 100 X 100 esta empresa de alquiler de vehículos. Trato amable, cercano y muy profesional de todo el equipo humano. A destacar a Carlos y Fran. 0 174 standard P1.01 {A1.02,O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341292+00 high URT:S:A1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:34.47218+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1338 SPN-5061d4dd18b4cf5b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB 1 0 Alles war perfekt! Das Einzige, was unklar war, war der Treffpunkt für den Transfer, deshalb sind wir schließlich mit dem Taxi gefahren. Trotzdem gebe ich fünf Sterne, da der Service ausgezeichnet war. 0 174 standard A3.04 {J1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341161+00 high URT:S:A1.03+J1.02:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:05.404749+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_04 1328 SPN-5a0f8770d77ed154 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 3 Man könnte einfach kleine Schilder aufhängen oder jemanden am Flughafen positionieren um dies zu erleichtern. 224 307 standard A1.04 {} V0 I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341532+00 high URT:S:A3.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:23.308834+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1340 SPN-caeaafea09ea2efe ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB 1 2 Leute, die über Betrug schreiben: Macht immer zusätzliche Versicherungen auf externen Websites, und erstellt vollständige Video- und Fotoaufnahmen des Autos, bevor ihr die Mietstation verlasst. So werdet ihr keine Probleme haben😉 348 487 standard P2.04 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341161+00 high URT:S:A2.02:+0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:05.406124+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 1327 SPN-ed2550ecd851d028 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 2 Dann wurden wir von dem Shuttle nach ungefähr 30 min erst iwo am Straßenrand eingesammelt. 174 224 standard J1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341532+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:23.308433+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1361 SPN-b50d64ccd2dc2b57 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB 1 0 Excellent service! 0 18 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34064+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:31.79008+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_03 1359 SPN-8edf2736eef00d69 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE 1 0 Car pick up was seamless and Carmen from the Gran Canaria branch who served us was wonderful. So friendly and made it all very easy. 0 139 standard J1.01 {A1.01} V+ I3 CR-N S2 A1 TC ES Carmen staff carmen \N \N \N t t 2025-01-25 01:27:48.340658+00 high URT:S:J1.01+A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:21.624899+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1351 SPN-89bbe786b5194d66 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE 1 1 I strongly recommend this rental in Las Palmas. 57 92 standard R1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340695+00 high URT:S:R1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:48.988569+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1360 SPN-838a4ac9d7d70d23 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE 1 1 Car is excellent and brand new. 140 164 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340658+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:21.625856+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1357 SPN-e74519bba3509ff8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB 1 0 Car rent with shuttle from airport, but very close, so it takes about 5min from airport there. 0 98 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340685+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:14.923432+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1358 SPN-ac9740e8780f233e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB 1 1 Also the People there are nice and helpfull, speak good english, so no problem to find with them. Thanks Dany, Carlos and Antonio :-) 98 179 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340685+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:14.924095+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1354 SPN-4f9993cde2653e66 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB 1 0 Excellent service , very quick and efficient bookings, thanks again to Carlos ,Antonio and their Colleagues 0 106 standard J1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340691+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:05.042243+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1356 SPN-26d0aa1fac0c9793 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB 1 2 And brand new vehicles 😁 165 189 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340691+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:05.043412+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1350 SPN-77bebbe91e12203f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE 1 0 Very professional, kind, effective and entertaining. 0 56 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340695+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:48.988077+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1352 SPN-b6e7eae5c020c2db ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE 1 2 Carmen, Antonio (shuttle service) and Isaac have been dealing with me. 93 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340695+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:48.989019+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 84 SPN-dc5781fa8f934a53 Fika unknown google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 1 quite cheap too 51 66 standard V1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-28 23:35:50.732226+00 high URT:S:P1.01:+1:11TC.ES.N v5.1 gpt-4o-mini 3acc67f3 2026-01-24 23:37:21.428215+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f V.V1.V1_01 1348 SPN-cecd03e13c20323b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE 1 0 Everything went fast and without any problems. 0 45 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340699+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:40.535784+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1349 SPN-51f3685e401366dc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE 1 1 Really recommend that car rental company. 46 82 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES car rental company service car rental company \N \N \N f t 2025-01-25 01:27:48.340699+00 high URT:S:R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:40.536594+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1346 SPN-88885be2aa69ff2c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB 1 0 Everything went smoothly. 0 24 standard J1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340702+00 high URT:S:J1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:34.502726+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1347 SPN-6b933abf5955be97 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB 1 1 Car was in excellent shape and the shuttle bus is very convenient. 25 82 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340702+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:34.503203+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1345 SPN-d28364b192ef4489 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB 1 0 The whole experience was painless from getting picked up by Antonio who was very nice to checking in with Carlos who was also very very good so very happy 0 139 standard J1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34071+00 high URT:S:J1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:27.96277+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1344 SPN-a0a22dc8d73f141c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE 1 0 Adrian S. Is such a nice Guy!🙏 Good work 0 40 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES Adrian S. Staff adrian s. \N \N \N t t 2025-01-25 01:27:48.340751+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:23.171423+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1720 SPN-2253b7133339a863 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB 1 1 they was really helpfull found it and giving it back 62 103 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-02 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:11.886235+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1721 SPN-b1a5edf5c100fbe2 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE 1 0 Great queer club! Excellent drinks, cool staff and a good dance floor. 0 70 standard O1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:19.430475+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1379 SPN-6531f5915cf6fc21 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE 1 0 Excellent service. Large variety of brand-new cars, in good condition - even if you book last minute. The staff was very friendly, and both the pick-up and drop-off was smooth. 0 174 standard P1.01 {O1.01,J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340531+00 high URT:S:A1.01+O1.01+J1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:35.099382+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1377 SPN-4bed66ae3dbc56f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_61 1 1 Booked and received a Fiat 500 with less than 1000km on the odo. 62 103 standard O1.02 {} V0 I1 CR-N S3 A1 TC ES Fiat 500 Car fiat 500 \N \N \N f t 2025-01-25 01:27:48.340536+00 high URT:S:O1.02:0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:27.188542+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1378 SPN-c3210ac91a35d8ef ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_61 1 2 Meeting place could be better advertised but once we figured that out, no problems getting the shuttle to the off site office- less than a 5 minute drive. 104 196 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340536+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:27.18911+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1368 SPN-20b61731ff64e7ce ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB 1 2 Will defo recommend 👌 175 197 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34062+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:52.416063+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1375 SPN-7f6477dac2a4c171 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_64 1 0 Honestly, astounded at how amazing the service from these guys has been - especially considering the amazing price! 0 117 standard V4.01 {P1.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340555+00 high URT:S:A1.03+P1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:17.131261+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 1373 SPN-737056751412e0ea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_67 1 0 We have rented car several times in different cities, but so far clickRent experience was the best one. Everything was smooth and clear. 0 139 standard J2.01 {A1.01} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340562+00 high URT:S:J1.03+A1.01:+3:22TH.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:12.6592+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 1374 SPN-ee643254e47af8e3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_67 1 1 Huge thanks to Carlos for super fast and friendly service! And of course a ride from Fran and Antonio was super welcoming. 139 227 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340562+00 high URT:S:A1.02:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:12.659858+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1372 SPN-6dcfc025de521acb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_69 1 0 Really nice and helpful people (and they speak good english), whole rental went really smoothly, car was clean and brand new. 0 139 standard P1.01 {J1.01,O1.01} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340608+00 high URT:S:A1.01+J1.01+O1.01:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:05.808414+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1369 SPN-bd2d414b7ec28889 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE 1 0 The station is about 5 minutes from the airport, the shuttle worked excellently. 0 75 standard J1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340616+00 high URT:S:J1.03:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:01.319769+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_03 1370 SPN-1af804aec3fafc81 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE 1 1 My car was like new, check-in and check-out were very well organized. 76 126 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340616+00 high URT:S:O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:01.322392+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_02 1366 SPN-f298a855dc6f1193 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB 1 0 Excellent, friendly and beyond helpful service at both collection and drop off for car. 0 83 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34062+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:52.414979+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1367 SPN-a0f1d7e9389d0230 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB 1 1 Shuttle to and from airport takes away the stress of trying to figure out the complicated roads in the area. Very quick and easy. 84 174 standard J1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34062+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:52.415598+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1363 SPN-6216d555b610aba1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB 1 0 Employeey were nice. 0 20 standard P1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340622+00 high URT:S:A1.01:+1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:43.194153+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1364 SPN-8033f65ff09f5d0c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB 1 1 We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. 21 118 standard J1.02 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340622+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:43.194757+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1362 SPN-d71d776283937831 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB 1 1 When we arrived we got a bit lost and couldn’t find “el punto de encuentro”. If that’s your case, go to the uppermost floor and exit on gate number 2. Right opposite to gate 2 there’s a parking. Cross the street and enter the parking. Look right and walk a bit until you see the Punto the encuentro. There you’ll find clickrent team and their shuttle. 18 305 standard J1.02 {} V0 I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34064+00 high URT:S:J1.02:0:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:31.790708+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1722 SPN-25fd6bd64eca10c0 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB 1 0 Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood. 0 139 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-30 18:34:31.336452+00 high URT:S:E1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:36.505506+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1723 SPN-18665fc4f0b740a4 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB 1 1 I ended up losing my phone, but they contacted me the next day so I could come right over and get it back. 140 218 standard P3.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-30 18:34:31.336452+00 high URT:S:P3.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:36.507245+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P3.P3_04 1393 SPN-a63a1a4b6f78f5d2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE 1 0 I really enjoyed my first experience renting from Click Rent located in Gran Canary. Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward. They really goes up and beyond to make sure we’re satisfied. This auto rental provided the best service we have ever had when renting a car. 0 267 standard P1.01 {O1.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340501+00 high URT:S:A1.03+O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:33.861082+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1382 SPN-5fd3e77cc260d4cb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 1 When I returned the car they just quickly check the car and told me everything is OK. I get back my deposit immediately. 174 246 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340529+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:48.439817+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1390 SPN-32c827c3459aa240 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE 1 0 Everything was fine overall. They didn’t charge us any additional fees, and the car was new and comfortable. 0 118 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340503+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:24.868102+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_01 1387 SPN-f54db594071a0def ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB 1 0 Amazing service! I’ve rented a car for more than a week, it was easy, efficient and spotless. I was mostly grateful for the service that Carmen provided me, she was kind, efficient and provided with all the information that I needed. She even gave me a list with recommendations of sightseeing by car. 0 290 standard P1.01 {J1.02,O1.02} V+ I3 CR-N S3 A1 TC ES Carmen staff carmen service \N \N t t 2025-01-25 01:27:48.340524+00 high URT:S:A1.03+J1.02+O1.02:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:14.008287+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1388 SPN-20a115a471215442 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB 1 1 Their shuffle driver Nestor was also helpful with helping with my bags, and he always driving between the airport and the office, so it was fast to get to the airport. 290 388 standard P3.02 {J1.03} V+ I2 CR-N S2 A1 TC ES Nestor staff nestor service \N \N f t 2025-01-25 01:27:48.340524+00 high URT:S:A1.02+J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:14.00973+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 1389 SPN-f3a30dcefc6b5b2a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB 1 2 I’ve made the booking through booking.com and payed for insurance, which was not necessary, since Clickrent has a better coverage of damages. 388 487 standard O3.02 {} V- I2 CR-B S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340524+00 high URT:S:P1.02:-2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:14.010557+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O3.O3_02 1386 SPN-9e8f14956ec2364f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB 1 2 The person handling my return was also rude even to my family including kids! Don’t use this company. 469 516 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340526+00 high URT:S:A1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:03.356782+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 1381 SPN-8e609756f4c3e546 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 0 They have a shuttle bus between airport and their office, so very easy to get and return your car. Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. 0 174 standard J1.02 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340529+00 high URT:S:J1.02+O1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:48.439216+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1380 SPN-9ffd08072d84b678 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE 1 1 Its further away from the terminal, so you have to ride their free shuttle to get to the airport, but neither the lenght of the ride or the waiting times for the shuttle were long. 174 292 standard A4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340531+00 high URT:S:J1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:35.100035+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1724 SPN-a7cfc0cc4c330a87 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB 1 2 Definitely a place I’ll visit again if I’m in Vilnius. 219 258 standard R2.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-30 18:34:31.336452+00 high URT:S:R2.01:+2:22TF.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:36.507611+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R2.R2_01 1392 SPN-b7e0b4dc835344f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE 1 2 There was only one person working in the office. When a full shuttle bus arrived, the wait time became frustratingly long. Unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. This was a waste of time and could be easily avoided with better staffing. 309 487 standard J1.02 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340503+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:24.869204+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_02 1785 SPN-6f1ccfd0a4ef8219 Soho Club unknown google review_47 1 1 But the best reaction ever! After negative opinion kindly Bartender served us free better one long islands. Thanks guys! 32 106 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-01-31 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:23.221026+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1384 SPN-582cf639bf5e3a1f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB 1 0 Avoid at all cost. First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs and no one to pick you up. Had to call to ask for the shuttle. 0 218 standard A4.01 {E1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340526+00 high URT:S:J1.02+E1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:03.355024+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1391 SPN-d54847e6b20438c9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE 1 1 There should be clear signs indicating where to go upon landing. They mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. Providing a detailed map or directions in the confirmation email would solve this issue. 120 307 standard A4.04 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340503+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:24.868735+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_04 1786 SPN-e3631d687cecdcb2 Soho Club unknown google review_48 1 0 Amazing place, worth visiting! Cocktails are the best and atmosphere is great. 0 78 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:29.731767+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1402 SPN-6314c0cd5b2762f9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 0 Really really happy with the service. Great prices and no hassle return of the car with full cover insurance which was not expensive at all. 0 139 standard V1.01 {P1.01,J1.01,O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.34014+00 high URT:S:A1.01+P1.01+J1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:14:06.839796+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1398 SPN-dfcc24dad8a69da4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 0 First time customer and didn’t take any additional insurances because I had rental car insurance from my credit card company. Therefore they made 2000€ authorization on my credit card. 0 197 standard V1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340431+00 high URT:S:J1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:59.098014+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 2351 SPN-20c663854790f903 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhNktyMzlRRRAB 1 0 Great! 0 6 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.688748+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1399 SPN-cb6944d47cf79dec ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 1 Staff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insurances. 197 276 standard P1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340431+00 high URT:S:A2.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:59.098733+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1400 SPN-85e00e2b64a81b76 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 2 Car was new, less than 5000km driven and was as promised. After returning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes. 276 426 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340431+00 high URT:S:O1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:59.099274+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_03 1401 SPN-1edac777de2d9a9b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 3 Would use their services again and would recommend. 426 467 standard R1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340431+00 high URT:S:R1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:59.099746+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1396 SPN-af637a9eb2240494 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE 1 1 The staff was amazing! Super kind and super helpful! 158 197 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340474+00 high URT:S:A1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:43.804735+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1403 SPN-7ef9a4962cbebaef ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 1 Will use this company again and highly recommend it to others. No hidden charges. We got an upgraded car for no additional cost which was brand new with 400km on it. 139 266 standard R1.01 {} V+ I2 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.34014+00 high URT:S:R1.01:+2:33TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:14:06.840413+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1397 SPN-9576b939e7b536df ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE 1 2 They offered us straight away two other options when we have arrived and they have changed our car in no time….Thank you once again for your quick and efficient service and your kindness! 198 319 standard J1.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340474+00 high URT:S:J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:43.805209+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1395 SPN-628f6f4e671e744e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE 1 0 I can only recommend this company in Gran Canaria!!! Absolutely fair and competitive prices, new cars, clear policy, no credit card needs! 0 157 standard V1.02 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340474+00 high URT:S:P1.01+O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:43.803121+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_02 1394 SPN-88260aadd9a83e01 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE 1 1 We would definitely rent from them again. Very professional and excellent service. I would recommend this place to rent from if you want to be in and out in a timely manner. Have a clean fresh stylish vehicle to sport with great pricing. 267 426 standard V4.01 {P1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340501+00 high URT:S:J1.02+P1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:13:33.861765+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_01 1725 SPN-36913ae2cff8b6bb Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE 1 0 At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. Excuse me, but since when there is some kind of limit of taking your belongings back!? We were also incredibly dissatisfied with the staff at the bar. We asked for a San Francisco cocktail and a bartender did not even know what that is and told us to look at the menu. We were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. 0 469 standard P1.02 {P1.01} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:56.077296+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1726 SPN-b227041cd180dbcf Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE 1 1 Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj was without experience and doesn’t understand the basics of Dj’ing (Synchronizing 2 songs at once, going from one song to the other so that there is no pause). It felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. 469 675 standard E1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:E1.04:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:56.077903+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1727 SPN-27424bc0d3b405a7 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE 1 2 Overall, the environment its self is pretty cozy and chill but the service is tragedy. People working there clearly hate the job and do not give a damn about customers. 675 757 standard E1.02 {P1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:E1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:40:56.078552+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_02 3235 SPN-819ade0bf96d3259 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE 1 0 Bajo mi punto de vista esta muy bien. 0 38 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.020261+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3236 SPN-7f906effcf99bf52 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE 1 1 Pero el servicio en el circuito no es honesto, deberían ser más amables 39 111 standard R1.01 {P1.01} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R1.01+P1.01:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.021889+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_01 390 SPN-79da7d87ac7e5719 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB 1 0 Alles top, Super Preis! 0 23 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.342903+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:47.896597+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1261 SPN-e77a6d9c09f94788 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE 1 2 Buen trato, buenos precios . 238 263 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342237+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:04:51.049202+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 435 SPN-18720e832f76149f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 0 Wir haben für eine Woche ein Auto gemietet. Preislich top! Wir haben nur 160€ bezahlt. 0 83 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-11 01:27:48.34079+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:54.954659+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 235 SPN-777206131d42c171 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB 1 0 The initial price looks to good to be true - no one can expect to get a car for that price. 0 85 standard V1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.34003+00 high URT:S:P1.01:0:22TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:28:29.522774+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 628 SPN-c5a46a4de1559c97 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB 1 0 Nous avons payé 300 € pour 9 jours. Et 60 € de carburant et 5 € de lavage. C'est ce que nous avons payé. 0 85 standard V1.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341508+00 high URT:S:P1.01:0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:40.449799+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 640 SPN-82c578d1f5e628f6 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB 1 2 Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen. 319 367 standard V1.01 {} V- I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341207+00 high URT:S:P1.01:-2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:20:22.32199+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 674 SPN-bcda833348ce4fcc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB 1 1 Auch das Preis-Leistungs-Verhältnis überzeugt auf ganzer Linie. 267 307 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340828+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:57.810528+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 716 SPN-a5d355ac1c20d787 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB 1 0 Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio. 0 83 standard V1.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-27 01:27:48.341799+00 high URT:S:P1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:25:54.808959+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 740 SPN-5853dbc3b4919697 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB 1 2 Me vine por el precio pero me quedo por el equipo que tienen. 366 409 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341175+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:24.920587+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 744 SPN-ddadde155f21e946 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB 1 1 Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und zahlte nur 19 € für 2 Tage. 267 353 standard V1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341109+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:43.231177+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 756 SPN-b82d43b0104076ea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB 1 2 Wir ( 6 Fahrgäste ) wurden umgehend wieder mit dem Shuttlebus zum Airport LPA gebracht. Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen. 470 610 standard V1.01 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340795+00 high URT:S:P1.01:+2:22TF.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:43.349495+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 795 SPN-48d9e340dffbb06b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB 1 1 aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :) 158 205 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-27 01:27:48.341676+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:39.914183+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 758 SPN-cec942585dfd7d29 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB 1 1 Not worth the cheaper rates. 99 123 standard V1.01 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340176+00 high URT:S:P1.01:-1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:28:53.893245+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 833 SPN-40858a3f528b11bb ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5UVEycDBTUzFRV2sweWFrcHljbUpDVUVOcVdFRRAB 1 0 Günstig und unkompliziert, nahe am Airport mit shuttle service 0 62 standard V1.01 {J1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342585+00 high URT:S:P1.01+J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:31.135452+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 835 SPN-9f5e9fe52f411d07 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB 1 0 Magnifico el precio 0 20 standard V1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.342461+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:34:48.844798+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1728 SPN-e682cad405465906 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE 1 0 Greatest club in Lithuania,best place to go in the midnight. 0 60 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:01.910473+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 801 SPN-6055b67935e0a659 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB 1 0 Super Mietwagen Station zu sehr fairen Preisen. Die Station liegt außerhalb des Flughafens aber mit dem Shuttlebus kein Problem und nur wenige Minuten bis dort hin. 0 157 standard V1.02 {J1.02,A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341521+00 high URT:S:P1.01+J1.02+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:32:22.360208+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_02 528 SPN-b4ea47875333cc4c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB 1 0 Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable 0 90 standard V1.03 {R1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.34208+00 high URT:S:P1.01+R1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:19.220042+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 974 SPN-60ceae5d417eb14f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE 1 0 Haben uns für ClickRent entschieden weil es mit Abstand das billigste war (Moderner VW polo 4 Tage ~85€ + junger Fahrer) 0 118 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.341783+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:17.73956+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1091 SPN-96d1d592f06bbad5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURId2FqYV9nRRAB 1 0 Buenos precios y Carmen y nestor excelente su atencion 0 54 standard V1.01 {A1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.343074+00 high URT:S:P1.01+A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:53:18.648389+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1139 SPN-92f8f82c09dc49ee ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE 1 0 Muy buena relación calidad precio en sus autos. 0 45 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342746+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:46.556548+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1159 SPN-0af81ec2823d1bb9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB 1 0 El precio inmejorable y la atención mejor. 0 42 standard V1.01 {A1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342629+00 high URT:S:P1.01+A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:58:04.171427+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1177 SPN-c9005d7ef74ad1f5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB 1 0 He reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba Antonio esperándonos, nos ayudó con las maletas e incluso nos recomendó la mejor manera de aprovechar las vacaciones. 0 218 standard V1.01 {A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342565+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:59:18.901845+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1224 SPN-a5a972aae4e7a646 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE 1 1 otro punto importante muy bien de precio 67 97 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342378+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:38.761474+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 405 SPN-9890c86630e57cb7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 1 Was charged 35€ for their fuel policy as we booked not via their website. Was charged another 60€ for managing the damage. (windscreen chip costs €1200). Couldn't find any of this info in terms and conditions. 267 392 standard V4.04 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.340043+00 high URT:S:P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:02:12.362074+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 328 SPN-80ed01f5da08bc2e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB 1 2 After I returned home, my credit card was charged additional 180 eur without any documentation. 140 203 standard V1.03 {} V- I3 CR-N S3 A2 TH ES \N \N \N \N \N \N f t 2026-01-25 01:27:48.340202+00 high URT:S:P1.02:-3:33TH.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:29.600641+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1355 SPN-4de2b568d644a47d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB 1 1 no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc) 107 164 standard V1.03 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340691+00 high URT:S:P1.01:+2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:05.042967+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 658 SPN-b1754d4775b960ae ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB 1 2 On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. Des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible. 174 366 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341113+00 high URT:S:P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:34.601523+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 376 SPN-d9dbea2122289c23 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB 1 0 Too many hidden charges 0 23 standard V1.03 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-21 01:27:48.340743+00 high URT:S:P1.02:-2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:47.429274+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 537 SPN-a3365871c151d69a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB 1 0 El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa” 0 271 standard V4.04 {J1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.341759+00 high URT:S:P1.02+J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:13:01.608942+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 610 SPN-6ed1f9e99ba464e2 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB 1 0 Annoncer sur Booking 43 €.pour 10 jours Pour payer finalement 283 € 0 66 standard V4.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.342449+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:20.602716+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 1729 SPN-be41ebeb74a8e9de Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB 1 0 This was my first time at any drag show and it’s definitely not the last. I was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and I’ve never left a party more energized. 0 203 standard E1.04 {E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:16.741484+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 393 SPN-e2796d1700223cad ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB 1 1 Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto. 218 284 standard R1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2026-01-18 01:27:48.341218+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:01:04.845789+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 903 SPN-8614fdc70d7c44f9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB 1 1 Y a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos no abren hasta las 8. Te dicen ellos mismos que lo dejes en tal parking claramente las tienen a todas pensada para robar dinero. 307 487 standard V4.04 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-07-29 01:27:48.341667+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:43.074162+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 245 SPN-ab3303b0319e3824 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 1 They did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. 195 307 standard V1.03 {} V- I2 CR-W S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.340057+00 high URT:S:P1.02:-2:22TC.ES.W v5.1 gpt-4o-mini a6642792 2026-01-25 01:29:14.570895+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1731 SPN-e798f083427b1bf1 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB 1 2 I’m not religious but Drag at soho is my new church. Definitely go when you have time! (Plus the bartender‘s cute) 247 335 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:E1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:16.742719+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1732 SPN-77a7d908f43726a7 Soho Club unknown google ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB 1 0 Great place to relax- does not matter u are gay or straight. 0 61 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-03 18:34:31.336452+00 high URT:S:A3.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:26.569935+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A3.A3_01 855 SPN-2f889a02e3da5858 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB 1 1 Als junger Fahrer mit weniger als 3 Jahre Führerschein wird nochmals eine Gebühr von 120€ erhoben oder man nimmt die volle Versicherung für 220€ wo alles inklusive ist. (Preis für 7 Tage Mietdauer) 43 174 standard V4.04 {} V0 I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341563+00 high URT:S:P1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:25.153678+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 926 SPN-a87898cd736d9986 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB 1 1 Cerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€. Allez expliquer cela à l'assurance ensuite pour vous faire rembourser. 486 586 standard V4.04 {} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-06-29 01:27:48.341678+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:25.467886+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 1787 SPN-a58ca492496451f7 Soho Club unknown google review_49 1 0 Nice club with great atmosphere 0 30 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:40.61299+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1045 SPN-561db746e6276f7d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE 1 1 No sólo con eso, nos han cobrado 50€ de la fianza por concepto de “Limpieza adicional” por un poco de barro que había en la alfombrilla del conductor ya que ha llovido 3 días en la isla y tuvimos que dejar el coche a las 6 de la mañana. 157 366 standard V1.03 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.342062+00 high URT:S:P1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:59.6402+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1285 SPN-4e2f08af8ae568a7 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB 1 1 En general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era importante, era que no te cobran mucho depósito....Fueron 200€ y te dejan hacerlo con tarjeta de débito, hemos probado en otras compañías y te retienen muchísimo más y obligatoria la tarjeta de crédito, así q para nosotros fue una facilidad...Las furgonetas de traslado y coches de alquiler son nuevos. 366 682 standard V4.04 {} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342128+00 high URT:S:P1.02:+2:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:19.264408+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V4.V4_04 426 SPN-180a1bb432c9e23e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB 1 1 Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! Totalmente desproporcionado pero no quedaba otra. 218 366 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-11 01:27:48.340864+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:04:04.478967+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 629 SPN-4f19e066562d5189 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB 1 1 Quand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 jours 85 145 standard V1.01 {} V0 I1 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341508+00 high URT:S:P1.02:0:22TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:19:40.450581+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 957 SPN-78f34d814f846d69 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE 1 1 lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ de franquicia resumido, y cuando llegas a la oficina te dicen que tienes que dejar 200€ de franquicia eso lo veo mal, es como si digo te vendo una pulsera por 15€ y cuando llegas al establecimiento te la vendo en 30€. 139 366 standard V1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.342457+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:43:39.318448+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 556 SPN-b54a1b9269ca6be9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 1 Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de Gran Canaria. En la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). Sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. 267 487 standard V1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.34114+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:39.101901+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1842 SPN-ad5afa2abb48803d Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB 1 0 El mejor club gay en Vilnius . La noche de los Viernes me encanta. 0 66 standard E4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-30 18:34:31.336452+00 high URT:S:E4.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:10.712145+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 474 SPN-c5e0e05dfe04996d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB 1 2 Eenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. Vervolgens kregen we te maken met onduidelijke en hoge kosten. We moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij ClickRent de schade zou dekken. Daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent. 488 754 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.34089+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:08.432939+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1376 SPN-cbe2c9ffec7d60c8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_61 1 0 Really good value - New Cars - Friendly genuine service. 0 61 standard V1.01 {O1.01,A1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.340536+00 high URT:S:P1.01+O1.01+A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:27.186909+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 456 SPN-2a338e58c432c3e8 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB 1 0 Ціна на авто яку запропонувала ця компанія була найкраща. 0 66 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.341165+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:51.373449+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1073 SPN-01995214d696b14d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_62 1 0 NOT PROFESSIONALS/. SCAMMERS 0 30 standard R1.02 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.34054+00 high URT:S:A1.01:-3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:47.2698+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 987 SPN-056795d9ecebe618 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google review_66 1 0 Rented a car from their office in Gran Canaria, and they ended up overcharging my security deposit. 0 85 standard V2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-30 01:27:48.34056+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:03.691059+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_02 1365 SPN-9223dcf70e566321 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB 1 2 They send back the deposit on that day. I really recomend it! 119 164 standard J1.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340622+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:11:43.195365+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 1242 SPN-00b1e34437db124c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB 1 2 Por poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la campa para la devolución de los coches. 319 396 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342315+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:43.584419+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1102 SPN-00df6734abc45017 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB 1 0 Agradecer a Daniel por su entrega, confianza y profesionalidad! 0 66 standard P2.01 {} V+ I3 CR-N S3 A1 TC ES Daniel staff daniel \N \N \N t t 2025-01-25 01:27:48.343035+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:54:08.339064+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_01 480 SPN-06720962ee420e66 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB 1 0 Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach, die Abholung (Transfer) hat super geklappt. Wichtig ist es, den Sammelpunkt auf dem Abflugdeck (Etage 1 Ausgang 1) aufzusuchen und ggf. einfach paar Minuten zu warten. Die Übergabe verlief schnell und das Fahrzeug war sehr sauber. 0 290 standard J2.01 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.340879+00 high URT:S:J1.03:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:35.126712+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 733 SPN-07ab80365e316659 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB 1 1 Hoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en Canarias). 290 470 standard R1.01 {} V- I3 CR-N S3 A2 TR ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.341256+00 high URT:S:J2.03:-3:33TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:27:01.348241+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1225 SPN-07b676470d7759b4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB 1 0 Carmen nos atendió genial en la oficina. El chico que nos llevó del aeropuerto a la oficina y viceversa (Antonio) muy majo y atento 0 139 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342357+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:02:52.882904+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1208 SPN-0b624de5acac7c8c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB 1 1 Cabe destacar que Dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas técnicos con el programa, hizo todo lo posible para que se llevara a cabo dicha ampliación, muy preocupado por dar un buen servicio. 197 366 standard P3.05 {} V+ I2 CR-N S2 A1 TC ES Dany staff dany positive \N \N f t 2025-01-25 01:27:48.342416+00 high URT:S:A1.02:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:01:26.981847+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_05 504 SPN-0bc40fcb13069c57 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB 1 0 Buen servicio y personal amable 0 30 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.342918+00 high URT:S:A1.01:+2:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:10:18.584366+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 558 SPN-0bcace744b0c6558 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 3 La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. Lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. 617 797 standard V2.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.34114+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:14:39.10307+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 2352 SPN-f4b9afb4a059cee6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPbXRXUzF3RRAB 1 0 Dpm 0 3 standard V4.03 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 low URT:S:V4.03:0:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.700326+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1334 SPN-8c13c82f722d2308 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB 1 0 Wir haben das Auto einen Tag vor der Einreise über Check24 gebucht. Die Vollkasko war bereits inbegriffen. Für 4 Tage kostete ein Mittelklassewagen ca. 100 €. 0 139 standard V1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341266+00 high URT:S:P1.02:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:49.338784+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 1000 SPN-a1944eddaa303b50 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE 1 0 Die Autovermietung ist fair und kann nur weiterempfohlen werden! 0 66 standard R1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-31 01:27:48.342556+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:46:55.020969+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1733 SPN-85947c2692b98b5f Soho Club unknown google ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB 1 1 Strong coctails, great music, relaxing athmosphere. 62 103 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-03 18:34:31.336452+00 high URT:S:O4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:26.571256+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O4.O4_04 1788 SPN-9a1b34efa473ab9d Soho Club unknown google review_49 1 1 but very slow bar service 34 58 standard J1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:40.61486+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 J.J1.J1_02 3237 SPN-e19339cd51b89d84 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE 1 2 y creo que en la carrera los del F200 no deberían estar con los F400 112 178 standard J2.01 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:J2.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.022903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 661 SPN-0d78d3ec88e99652 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB 1 2 Das SCHLIMMSTE aber war, das uns 6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Reinigungskosten von der Kaution "gestohlen" wurden, WEIL etwas Sand auf den Sitzen und im Fußraum zurückgeblieben ist. UNFASSBAR! Wir haben schon dutzende Male Mietwagen um Urlaub gebucht, doch sowas ist uns bisher niemals untergekommen. Das war definitiv das erste und auch das LETZTE MAL das wir hier Kunde waren!!! 558 754 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-11-26 01:27:48.341072+00 high URT:S:P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:21:48.432568+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1311 SPN-103d0453e9059789 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE 1 1 pero destacar del personal especialmente Carlos muy profesional atento, amable siempre aconsejando el vehículo a mis necesidades 118 205 standard P2.01 {} V+ I2 CR-N S2 A1 TC ES Carlos staff carlos praise \N \N f t 2025-01-25 01:27:48.341961+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:10.508797+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_01 1117 SPN-11f1ff3f0d3c0d11 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuOVluRDBRRRAB 1 0 Servicio excepcional y trato muy profesional y agradable del personal que me atendió. Muchísimas muchísimas gracias a Isaac, Carlos y Antonio. 0 139 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342942+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:55:04.728581+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 366 SPN-1265988bc10d3d10 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB 1 2 Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. I teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;) 516 646 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-22 01:27:48.343146+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:58:49.537169+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1007 SPN-12d5b3651d1e11c9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB 1 0 ClickRent kann ich nicht empfehlen. Mussten für ein Mietauto eine sehr hohe Kaution bezahlen. Oder wir könnten uns nochmal versichern und weniger Kautiom bezahlen, obwohl wir uns schon über die Agentur über die wir gekauft hatten vollständig versichert waren. Also sie wollten uns praktisch doppelt versichern, damit wir nicht so eine hohe Kaution gezahlt hätten. 0 307 standard V1.03 {} V- I2 CR-N S2 A1 TC ES ClickRent Brand clickrent \N \N \N t t 2025-03-31 01:27:48.342047+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:47:28.565961+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 526 SPN-181b2c580ccbb467 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB 1 0 Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto. 0 78 standard A1.04 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-26 01:27:48.342195+00 high URT:S:A1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:12:13.606435+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1198 SPN-1850ab5089007ffc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE 1 1 La atención ha sido excelente tanto por parte de Isa e Isaac, como por parte de Antonio y Néstor. 139 205 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342465+00 high URT:S:A1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:40.825351+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 512 SPN-1a3a4b93dfecc944 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB 1 0 Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 0 266 standard V1.03 {O1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-12-28 01:27:48.34153+00 high URT:S:J1.02+O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:11:06.11662+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 767 SPN-3b4966145cb2014d ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 2 When asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough. Asked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back. 487 685 standard P3.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-10-27 01:27:48.340097+00 high URT:S:A1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:29:30.76841+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P3.P3_02 2353 SPN-2821de591091c9ec Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaenViY0F3EAE 1 0 Excellent 0 9 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.71011+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 876 SPN-1a7aa0837efbb7e3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB 1 0 Experiencia muy negativa con esta empresa de alquiler de vehículos. Cuando llegamos, después de haber escogido el seguro a todo riesgo, se nos cobró una fianza de 200€ (en vez de bloquear el depósito se nos cobró con un datáfono). Al devolver el coche, sin ningún desperfecto, nos dicen que la fianza se nos devolverá en unos días, ya que ya se había “desbloqueado el depósito”. Tras 2 semanas sin rastro del dinero, decidimos escribir un correo al que nadie contesta. Llamamos por teléfono y conseguimos que 4 días después nos contestaran pidiendo el número de reserva, contestamos al momento y dejan de respondernos. Hace 2 días (una semana después de que nos contestaran al primer correo), volvemos a llamar y nos dicen que ya sale como proceso finalizado y que según ellos ya nos habían desbloqueado el depósito, MENTIRA, les decimos que es imposible ya que nos habían cobrado en la oficina con el datáfono (no hay ningún dinero bloqueado) y nos dicen que ya lo miraran y que en unos minutos nos llamarían. Nos contestan a la tarde al correo que habíamos enviado hace una semana, pidiendo el comprobante del cobro, se lo enviamos y seguimos sin saber nada. Espero que me devuelvan mi dinero lo antes posible. 0 685 standard V1.03 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-08-28 01:27:48.341365+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:58.051193+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 873 SPN-1d0ac9a11c86dcac ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB 1 4 Una empresa que actúa así no merece confianza. Cobros injustificados, trato agresivo y prácticas de estafa. No la recomendaría bajo ningún concepto. 835 925 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341386+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:37:35.07019+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 822 SPN-1c9a7f5e821bb0a5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB 1 0 Efficient service, good daily rate. 0 30 standard V1.02 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.340676+00 high URT:S:J1.02+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:45.458003+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_02 3238 SPN-593643054b6fc559 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURkXy15UHRnRRAB 1 0 Muy divertido para ir con amigos Recomiendo la modalidad de grande prix es la mejor relación calidad precio 0 107 standard V2.04 {O4.04} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V2.04+O4.04:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.052958+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 3239 SPN-06f6ff8fc15c7fc9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ4ODRxNnBRRRAB 1 0 La mejor pista de la zona sin duda ! El circuito es una pasada, los precios son bastante más bajos que en otros circuitos y el trato es excelente! Recomendable 100% 0 164 standard V1.01 {V1.01,P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O2.03+V1.01+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.063599+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1288 SPN-225241fdbeeedee3 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB 1 0 Escribo esta reseña para destacar la atención recibida por parte de Antonio. Nos fue a recoger en el minibus al aeropuerto para ir a coger el coche y desde el principio fue muy amable. Nos comentó sobre la Isla y también nos recomendó algunos lugares que a él le gustaban. Luego a la vuelta tuvimos la suerte de volver a encontrarlo y nos llevó de vuelta al aeropuerto. A mí hija se le olvidó el teléfono en el minibus. Pensábamos que ya lo habíamos perdido, pero 30 minutos después recibimos su llamada, diciéndonos que nos habíamos dejado el telefono en el minibus. Y Antonio fue tan buena persona que volvió al aeropuerto para entregárnoslo. Ojalá hubiera más personas así. 0 486 standard P1.01 {} V+ I3 CR-B S3 A1 TC ES Antonio staff antonio positive \N \N t t 2025-01-25 01:27:48.342116+00 high URT:S:A1.01:+3:33TC.ES.B v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:37.076643+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 778 SPN-27772f282d08326a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKT2FIaExkaTFCZVZaRVkwMHhSMnhhWlVaUFduYxAB 1 0 La peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen un precio en su pagina y luego pagar más de ultima hora en la oficina 0 197 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.342142+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:30:13.443696+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1281 SPN-29b0bfa1edc473de ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE 1 2 Tanto Antonio como Dany que nos atendieron fueron muy amables. Esperamos volver :) 194 246 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.342146+00 high URT:S:A1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:58.296022+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1267 SPN-2b7d4f9bfd8207cc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB 1 0 Carmen y Néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un inicio de viaje buenísimo con su amabilidad y cercanía. 0 157 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342213+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:05:17.863591+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 920 SPN-36e03ace416bfe32 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB 1 0 Auto gemietet für eine Woche, das Auto hatte bereits Vorschäden, von denen ich Fotos gemacht habe, das war bei der Rückgabe kein Thema. Mir wurde angeboten, eine Versicherung von ClickRent für das Auto abzuschließen, dies habe ich aber abgelehnt und die Kaution mit der Kreditkarte hinterlegt weil ich durch Aurumcars bereits eine Versicherung hatte. Die Kaution wurde mir bei der Abgabe des Fahrzeugs wieder freigegeben wurde. 0 366 standard J1.01 {O1.02} V- I2 CR-N S2 A1 TC ES ClickRent Brand clickrent \N \N \N t t 2025-06-29 01:27:48.341917+00 high URT:S:J1.02+O1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:41:00.379459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J1.J1_01 879 SPN-389a38150f0ddfea ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB 1 1 Cobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira. Como tinha seguro, não puderam cobrar extras de outra maneira. 98 205 standard V1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.341335+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:38:10.146763+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 3240 SPN-2f745499d0a94b14 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE 1 0 El mejor karting de la zona del mar menor. La pista está en muy buenas condiciones y los karts muy bien cuidados. 0 114 standard O1.03 {E1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.03+E1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.077208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 323 SPN-344dabee9da1ee5b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB 1 0 we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total) or else we were charged a 1200 euro deposit. 0 290 standard V1.03 {P1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340194+00 high URT:S:J1.02+P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:34:18.070459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 895 SPN-348b6331ec5e5008 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 0 No hassle, no waiting, excellent staff especially Gabrielle. 0 66 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Gabrielle staff gabrielle \N \N \N t t 2025-08-28 01:27:48.340436+00 high URT:S:A1.01:+3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:16.961927+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1070 SPN-3282097376bac407 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE 1 0 Got a 5 mm scratch - 450 euros…. Never again!! 0 46 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.340722+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:51:33.622385+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 575 SPN-30e9e5ca16dfe11c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB 1 1 Die Kaution war etwas hoch, aber ansonsten super. 84 118 standard V1.01 {} V± I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.34085+00 high URT:S:P1.02:±1:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:16:00.977084+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 3241 SPN-2f3d38e9ac93c5da Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE 1 1 Lo tienen todo muy bien organizado y siempre están pendientes de la seguridad. 115 194 standard J2.01 {E4.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J2.01+E4.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.078829+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 370 SPN-3bf9ace4fa2d5db0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB 1 0 Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war kein Missverständnis, sondern ein Paradebeispiel dafür, wie man Kunden vergrault. Bei der Abholung wurden wegen absoluter Kleinigkeiten künstliche Probleme aufgebaut. Plötzlich gab es Diskussionen um den Führerschein, obwohl dieser gültig und völlig unauffällig war. Zusätzlich wollten wir einen Zusatzfahrer eintragen lassen – ein Vorgang, der bei seriösen Vermietern Standard ist. Hier wurde daraus jedoch ein Geschäftsmodell gemacht. Für den Zusatzfahrer und angebliche „Probleme“ sollten auf einmal hunderte Euro zusätzlich gezahlt werden. Der ursprünglich gebuchte Preis war damit praktisch wertlos. 0 486 standard V1.03 {J1.02,A1.02} V- I3 CR-W S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-21 01:27:48.343159+00 high URT:S:P1.03+J1.02+A1.02:-3:33TC.ES.W v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:59:27.663609+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 986 SPN-40a03391741414d5 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB 1 2 Das einzige was verbessert werden könnte ist die Beschreibung zum Shuttlepunkt und ggf. eine Telefonnummer bei der man direkt mitteilen kann dass man da ist (die Servicenummer ist Schwachsinn). 682 786 standard A3.04 {} V- I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-04-30 01:27:48.34107+00 high URT:S:J1.01:-1:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:45:56.381815+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A3.A3_04 939 SPN-41ab9540edc378ec ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE 1 0 Ja, es ist super günstig, aber man hat nur Ärger. Kein Shuttle am Flughafen vorhanden, hatten uns nach 20 min schon ein Taxi organisiert. Die angegebene Telefonnummer ist nur ein Servicecenter landesweit und es gab nur automatische Ansagen! 0 211 standard J2.02 {J1.02} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.341792+00 high URT:S:P1.01+J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:24.356992+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 349 SPN-434d7a80b08794f1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w4MVVuZzRlazlJVkVseWQzRTNZeTFUVlZSdmJVRRAB 1 0 Un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabajadores y el precio delo más competitivo. 0 139 standard V1.01 {A1.01,P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-25 01:27:48.342152+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 02:57:20.314516+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 388 SPN-4485081b6b8239da ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB 1 0 Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafen. 0 98 standard A4.01 {E1.02} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2026-01-18 01:27:48.343184+00 high URT:S:J1.02+E1.02:±2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:42.075758+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A4.A4_01 1313 SPN-472b954846a87041 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE 1 1 Poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. Sciocca io a non controllare ma chissà come mai hanno quasi tutte auto bianche. 267 358 standard V1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.341941+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:08:27.934358+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1322 SPN-47307d2172fab345 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE 1 0 Agradezco el trato de esta empresa por su profesionalidad y su servicio . Alquile un coche pequeño que ha ido de maravilla, y la atención tanto de Carmen que nos gestionó la reserva , entrega y devolución Como dee los chicos encargados de llevarnos y traernos al aeropuerto fué fantastico. 0 290 standard P1.01 {O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.341536+00 high URT:S:A1.03+O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:09:04.163027+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1809 SPN-1b2969b3c9123341 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE 1 0 Good cocktails and good music 0 29 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:28.78785+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1053 SPN-4b02c9717d751d9b ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB 1 3 Además de esto sin nuestra autorización y sin habernos informado en el momento de recoger el coche mientras esperamos a la grúa nos realizan un cargo de 1400 euros, en concepto de reparación, sin ni siquiera estar el coche en sus instalaciones ni ser visto por alguien cualificado como puede ser un mecánico o un perito. Tampoco nos atienden a esta reclamación, y tenemos que incluso llamar a la policía para que se personen y nos den una hoja para poder reclamar. 1036 1396 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341993+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:30.526538+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 673 SPN-4b487d6371202cf9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB 1 0 Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden. Das Personal war äußerst freundlich und hilfsbereit, und die Abwicklung verlief dank des vorab möglichen Online Check unterwegs zur Filiale ins besonders zügig. Das Fahrzeug war in einwandfreiem Zustand sogar ein besseres Modell als ursprünglich gebucht. 0 267 standard P1.01 {A1.01,J1.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.340828+00 high URT:S:O1.03:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:57.807425+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 2209 SPN-40dd770cdaadfe90 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 8 Plenty of free parking next to the track. 880 922 standard A4.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:A4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.951596+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_02 2210 SPN-e3cf3ea7110a1f02 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE 1 0 Es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos. 0 86 standard E1.04 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:E1.04+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:10.626258+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2211 SPN-47aea87e617e3111 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE 1 1 Hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito. 87 178 standard O3.02 {E1.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O3.02+E1.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:10.628978+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2212 SPN-0fff004a1b91268a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE 1 2 La atención por parte de Roberta y su hija es estupenda, te asesoran que motor de coche coger y son muy amables. 179 292 standard P1.01 {P2.04} V+ I3 CR-N S3 A1 TC ES Roberta staff roberta \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+P2.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:10.631459+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2297 SPN-3f3b849234f32495 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQyMDczQnNnRRAB 1 0 Excellent.\nVery enjoyable. 0 26 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.795844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1022 SPN-521a2a1f1787b4c0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 3 I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. I gave only 3 stars because of the stress from the other reviews and terms in the agreement. 706 883 standard V2.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-31 01:27:48.340181+00 high URT:S:P1.03:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:48:30.898279+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 459 SPN-52b0538dbc018de9 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB 1 3 Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням. 292 348 standard V2.03 {} V0 I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.341165+00 high URT:S:A1.01:0:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:51.376732+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 1189 SPN-5637a6b0e761f208 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE 1 0 Unser Erlebnis bei ClickRent war absolut positiv! Wir wurden hervorragend informiert und das Team stand uns mit allen wichtigen Details zur Seite. Das gesamte Team war nicht nur freundlich, sondern auch äußerst vertrauenswürdig, sodass wir uns vom ersten Moment an wohlgefühlt haben. 0 267 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.3425+00 high URT:S:A1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:00:09.829394+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 478 SPN-583d2c6b0223a77e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB 1 1 Er werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. Dan moest ik maar via de creditcard van me vrouw €200 borg betalen. Daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! Ja maar niet bij ons zei de man achter de balie. Ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine. 392 685 standard V1.03 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-04 01:27:48.340888+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:08:25.348435+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1282 SPN-596d9b1fd6ff0406 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB 1 0 Excelente experiencia. Hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin embargo la regogida fue a tiempo y el trayecto a las oficinas es realmente corto. Antonio, el encargado del traslado fue sumamente amable y nos dio hasta jna hoja de recomendaciones para visitar en Gran Canaria (hecha a mano por el!! Un puntazo!) En las oficinas, me atendio Carmen que en todo monento fue amable y clara con las condiciones del alquiler. El vehiculo estaba en perfecto estado (era una marca desconocida para mi), y facil de conducir. A la vuelta, la devolucion fue rapida y sencilla y en cero coma, antonio te deja en el aeropuerto. Sin duda repetiria con esta compañia. 0 564 standard P1.01 {J1.01,O1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342132+00 high URT:S:A1.01+J1.01+O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:06:09.421473+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_01 1810 SPN-5d569154962c631f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE 1 0 Fantastic atmosphere. 0 20 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-01-31 18:34:31.336452+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:39.859243+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 616 SPN-5a2787b4dfa9499c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB 1 0 pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más 0 290 standard V1.03 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-26 01:27:48.341767+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:18:48.324117+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 794 SPN-5be105b73277b23f ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB 1 0 Hat alles super geklappt, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten wo genau sie einen abholen vom Flughafen. 0 157 standard A1.04 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.341676+00 high URT:S:J1.02:±2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:31:39.913035+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1138 SPN-64668d150d842fcf ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3d3BDNmpBRRAB 1 0 Nos vinieron a buscar en un mini bus un chico llamado David Pérez muy majo que nos hizo el viaje muy ameno aconsejándonos lugares y actividades que realizar en Tenerife 0 139 standard P2.04 {J1.01} V+ I2 CR-N S2 A1 TC ES David Pérez person david pérez positive experience \N \N t t 2025-01-25 01:27:48.342758+00 high URT:S:A1.01+J1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:56:40.029451+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P2.P2_04 312 SPN-68d0614585ea8364 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 1 the Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. 18 194 standard V2.02 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f f 2026-01-04 01:27:48.340172+00 high URT:S:P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini a6642792 2026-01-25 01:33:26.248623+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_02 1302 SPN-6a579611e1528fcc ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMXZ2aXJ3RRAB 1 0 La semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en los bajos del coche, que por supuesto yo no ocasione... No contestan reclamacion, me siento engañado y espero que no le suceda a otra persona. 0 218 standard R1.01 {A1.02} V- I2 CR-N S2 A2 TR ES compañia company compañia \N \N \N t t 2025-01-25 01:27:48.341986+00 high URT:S:J1.02+A1.02:-2:22TR.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:07:31.643296+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_01 1789 SPN-e1dedf6a19c4d1e4 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB 1 0 Police camera near the entrance. The same ones are in central police station cell blocks. 0 78 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:A4.01:0:21TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:51.551985+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A4.A4_01 1790 SPN-fcc8f5d10056605a Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB 1 1 Also if you speak your mind, amount of state and local persecutions is staggering in this country. 79 139 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:51.554203+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1791 SPN-80571671502ee80e Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB 1 0 Nice friendly club. People who working there very friendly and polite 0 66 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:46:57.879007+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 571 SPN-6b829ab0cf9a2fe0 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB 1 2 Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag wurden zudem noch weitere 60 € vom Konto ohne Angabe von Gründen abgebucht. Seit drei Wochen versuche ich clickrent zu erreichen, aber die E-Mails werden ignoriert. Werde die Sache jetzt meinem Anwalt übergeben, denn dieses Vorgehen scheint Masche zu sein... 487 685 standard V1.03 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-12-26 01:27:48.341027+00 high URT:S:J1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:15:36.712303+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 3242 SPN-9c374f657e7fe421 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE 1 2 Puedes ir con tu kart o moto. 195 222 standard O4.03 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.080474+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 1078 SPN-7695d5a23e2f045c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB 1 1 Upon our arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. Now flash to today, and they automatically took 60 euros out of my bank account. I also still have yet to receive my 200 euro deposit back. 218 396 standard V1.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.340479+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:52:14.03833+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 383 SPN-7950f5c8aa459b93 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB 1 0 Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug! 0 85 standard J2.01 {O1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-19 01:27:48.343174+00 high URT:S:A1.01+O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:23.177262+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_01 900 SPN-800865fb1e903106 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB 1 0 De vergüenza. Teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y nos dijeron que teníamos que aparcar en otro sitio, nos cobraron 55€, cuando el precio normal según la encargada del parking era de 16€. 0 218 standard V1.03 {J1.02} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-07-29 01:27:48.341839+00 high URT:S:P1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:39:29.967117+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_03 1811 SPN-a8f3b85eb3560558 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB 1 0 Fancy place with good music! 0 28 standard E4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-30 18:34:31.336452+00 high URT:S:E4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:52.982705+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1052 SPN-87ecd193862f08a4 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB 1 2 Salimos del establecimiento a la autovía y tras recorrer tan solo 30 km el vehículo nos deja tirados. Sin ni siquiera ver el coche el encargado de tienda nos dice que eso es por negligencia nuestra y que se desentienden de la cobertura. No nos dieron asistencia en carretera, tanto es así que cuando vino la grúa tuvimos que pagarnos un taxi de nuestro bolsillo, para volver al establecimiento. Al llegar allí no nos atienden, no nos dan hoja de reclamaciones, y tampoco coche de sustitución. 646 1036 standard J4.04 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-01 01:27:48.341993+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:50:30.526171+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J4.J4_04 1035 SPN-89da9bd183cea228 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE 1 0 CUIDADO CON ESTA GENTE! Nos dan un coche que a los 10 minutos se avería (el cual estaba contratado con seguro a todo riesgo), no nos dan coche de sustitución y encima nos hacen un cargo de 1400€ por una avería mecánica que ni ha podido ser valorada porque seguíamos tirados en carretera esperando a que llegara la grúa ( la cual tardo 3 horas en llegar). 0 360 standard O1.04 {O1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-03-01 01:27:48.342178+00 high URT:S:J2.03+O1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:49:23.361746+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 O.O1.O1_04 1383 SPN-89de063d8ef7cd70 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 2 Suggest buy their full insurance. 246 275 standard V2.03 {} V0 I1 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-01-25 01:27:48.340529+00 high URT:S:P1.01:+0:11TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:12:48.440459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V2.V2_03 913 SPN-99e93bbdb3cd1655 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE 1 0 alquile un coche, con douyou spanish, con seguro contratado por douyou spanish y cuando llegó ya me dicen q si quiero seguro con ellos de 120eur, lo cual me sorprendió pues en la entrega el mismo chico q me ofrece el seguro fue directo a 2 sitios del coche q ni a simple vista se veían total q como tenía seguro de fianza se agarró de eso la culpa fue mía porq no saque fotos al coche porque el coche nuevo por tos lados pero en los bajos q ni hay se me pasaría por la cabeza sacar fotos pues mira para mi un atraco perfecto ya no alquilaremos más con esta gentuza 0 486 standard R1.02 {A1.03} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-06-29 01:27:48.342338+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:40:28.523576+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1243 SPN-9b7fe7f516ff792e ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE 1 0 Unser Flug hatte Verspätung deswegen konnten wir nicht zu der vereinbarten Uhrzeit da sein. Bei Ankunft haben wir jedoch uns Dumm gesucht wo der Shuttle Minibus sein konnte. Wir haben jeden gefragt. Keiner kennt diese Firma. Wir wurden von oben nach unten geschickt und wieder zurück. Keine Person kein Minibus war vor Ort. Keiner hat uns versucht zu erreichen. Keiner hatte eine Aufschrift mir unseren Namen. 0 366 standard A1.04 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-25 01:27:48.342298+00 high URT:S:J1.02:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:03:54.635785+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 850 SPN-a033aaa7a8818f76 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB 1 1 A la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y me llama y me dice que tiene unos arañazos, le digo que yo no he podido ser y me dice que si tengo fotos. Le digo que no vi necesario tirarme al suelo para hacer fotos y me dice que ellos me enviaron al mail con los no daños del vehiculos (una ficha con dibujo de lapiz...). Me ha retenido 380€ del deposito y las dos señoras que estaban nos trataron fatal,. 370 670 standard P1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-28 01:27:48.34168+00 high URT:S:A1.03:-3:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:36:06.396107+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_02 3243 SPN-4e6ca7b6d5ee20b5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXOU9ub2tnRRAB 1 0 Personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones en muy buen estado. 0 119 standard P3.01 {O1.01,E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01+O1.01+E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.092479+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 669 SPN-bdf44980b6bd911a ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB 1 0 Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder, Auskünfte über die Autovermietung clickrent am Flughafen, haben wir uns dazu entschieden uns selbst auf die Suche zu begeben. Damit angefangen haben wir uns erstmal am Flughafen durchgefragt und wurden in sämtliche Himmelsrichtungen geschickt um dort im Endeffekt keinen Shuttlebus aufzufinden. Aber mit der Zeit wurde unsere Herde der Suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 Rumirrende die auf der Suche nach Clickrent waren. Nach gerade mal anderthalb Stunden haben wir den Abholort vom Shuttle am Flughafen entdeckt. Wie schon geahnt ist dieser wirklich auf keinste Art und Weise ausgeschildert. 0 486 standard A1.04 {} V- I2 CR-N S2 A1 TC ES clickrent service clickrent \N \N \N t t 2025-11-26 01:27:48.340852+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:22:42.559614+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 451 SPN-cdf0c42d3073b5a1 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB 1 0 Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. 0 246 standard J2.02 {} V- I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-04 01:27:48.34122+00 high URT:S:J1.02:-2:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:06:17.115344+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 J.J2.J2_02 384 SPN-d77e5b594cbbec57 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB 1 1 Einzige Kritik: Keine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis auf das obere Stockwerk (Abflughalle). Nach rechts gehen bis ca. Abflug Gate 2-5 wäre sehr hilfreich. Musste anrufen und dann bekam ich ein Youtube Video vom Standort zugeschickt. 85 290 standard A1.04 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-19 01:27:48.343174+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:00:23.177945+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1812 SPN-6445ca7cb601e173 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE 1 0 Nice :) 0 7 standard V4.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-30 18:34:31.336452+00 high URT:S:V4.03:+1:10TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:05.950011+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V4.V4_03 460 SPN-e7cba09e3837d22c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB 1 0 El servicio fue lamentable! Primero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto. Además de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos. Por último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática. 0 486 standard P1.05 {} V- I3 CR-N S3 A1 TC ES ClickRent brand clickrent \N \N \N t t 2026-01-04 01:27:48.341159+00 high URT:S:A1.03:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:07:05.684391+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 P.P1.P1_05 938 SPN-f1586d9e0e28f96c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnTUNZb2ViVGFnEAE 1 0 MUCHO CUIDADO! Nos sentimos estafados! Al devolver un coche nos reclaman que hay un daño nuevo en los bajos delanteros del vehículo. El cual por supuesto no fue durante nuestro alquiler (es un desperfecto por rozadura que te darías cuenta al momento). No había ni rastro de arenilla o restos en el arañazo que según ellos había sido durante nuestro alquiler y además en el vídeo que hicimos al alquilarlo se ve algo de rugosidad en la zona pero dicen que no se ve claro. Resumen: UNOS ESTAFADORES! 0 360 standard R1.02 {O1.02} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-30 01:27:48.34199+00 high URT:S:J1.02+O1.02:-3:33TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:42:12.586676+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 R.R1.R1_02 1353 SPN-d156b55f22ad7e61 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE 1 0 Carlos in Gran Canaria was very helpful, didn't try hard sell on additional cover over what I had chosen, a very simple, easy car hire at a very good price for a very good car. 0 164 standard V1.01 {P1.01,O1.01} V+ I2 CR-N S2 A1 TC ES Carlos Staff carlos \N \N \N t t 2025-01-25 01:27:48.340693+00 high URT:S:A1.01+P1.01+O1.01:+2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 04:10:55.219703+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 V.V1.V1_01 820 SPN-f90e56a4f32a994c ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown google Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB 1 0 Le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer la vidéo avant notre arrivée. J'ai du appelé le service qui parle anglais. ( moi qui parle pas un mot d'anglais c'était compliqué) Suite a mon appel, ils ont envoyé la vidéo. ( avant sa aurait étais plus simple). 0 290 standard A1.04 {J1.03} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-09-27 01:27:48.340799+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 gpt-4o-mini e61c9df8 2026-01-25 03:33:38.330563+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 A.A1.A1_04 1734 SPN-be43869e17440cfe Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE 1 0 Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as I see most these reviewers are tourists. Guys, Lithuanians in general aren’t the most easy going people. So please don’t be offended if you can’t find people to talk to very easily. 0 307 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:45.109807+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1735 SPN-fd0499e1dec3c963 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE 1 1 The club however definitely deserves a 4.5+ rating. 308 347 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:10TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:41:45.110895+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 3244 SPN-d5d4032bdfa5708d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3N2RlZFRnEAE 1 0 Vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque parezca poco, luego una vez estás en ello te parece justo 0 157 standard V1.01 {V1.01,V3.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+V1.01+V3.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.103727+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3245 SPN-e625a697d353e401 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE 1 0 Esta bien 0 9 standard O1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.558757+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3246 SPN-21c5a57a216271fe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE 1 1 pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo pues dara dos vueltas solo, deberian haber dos modalidades, una por tiempo y otra por ejemplo 5,10,15 vueltas segun precio. 11 233 standard V1.01 {V1.04} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O4.03+V1.04:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:25.561053+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1745 SPN-cc405bb661acfc6a Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB 1 0 I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances, I was seriously disappointed by the venue. The organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. I could only stand to watch one third of the show as I couldn’t squeeze through the crowd in the first segment so there wasn’t a single place I could stand where I would be able to see more than a quarter of the stage. Later, I managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. After I secured my spot, I was hopeful that I would finally enjoy the show but watching through the second segment of the show was torture, I had barely any space to stand, I still could only watch the performers from the waist up because I couldn’t see over the people in front of me (and I’m 5’5, average height) plus it was so hot I was feeling faint. After that, I left not watching the third and final part of the show. 0 1030 standard V1.01 {J1.01,V1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:A4.01+J1.01+V1.01:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:49.277387+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1746 SPN-f0c015871f351a8e Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB 1 1 This is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. I would not recommend going for any event they organise. 1031 1165 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:49.278401+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1747 SPN-0d1945e2c6a2baab Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB 1 2 In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I expected a designated seat. I expected to be able to watch the show fully, and that's the minimum requirement. In addition, it shouldn't matter what time I enter the event as a paying customer. The event was obviously so over-booked that it was impossible to have a remotely decent view of the stage. 1166 1305 standard A4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:A4.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:49.27908+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A4.A4_01 1748 SPN-bcedab1d5115af67 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB 1 0 It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback. 0 267 standard P1.01 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:P1.01:±2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:59.707629+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1749 SPN-b40e164939a38d14 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB 1 1 I gave it 5 stars for at least trying to be for the community and being the only one, still. 267 319 standard R1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:R1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:42:59.708266+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_04 1750 SPN-45b2ee6c2a9b1dfa Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB 1 0 Quite crowded, good music, nice guys. 20 56 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-01-31 18:34:31.336452+00 high URT:S:E1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:07.781021+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1751 SPN-d443870ed1377b70 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB 1 1 A little expensive the cocktails, but the entrance was very cheap. 0 61 standard V1.01 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-01-31 18:34:31.336452+00 high URT:S:V1.01:±2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:07.781591+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1752 SPN-d5a4a8e72767a250 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB 1 0 I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark! 0 83 standard E4.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-30 18:34:31.336452+00 high URT:S:E4.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:19.364558+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1753 SPN-a060b06e5c2baadf Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB 1 1 It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a good night dancing, drinking, and having fun. 84 179 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-30 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:19.365174+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1754 SPN-99bdf8c29597437b Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB 1 0 I had fun. Bar service and coat service was good and the club was kept clean. 0 83 standard P1.01 {E1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:P1.01+E1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:34.30766+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1755 SPN-822bd8a98fe1d77d Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB 1 1 The music was a good mix, but too loud for the small room. 84 118 standard E2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:E2.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:34.308334+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E2.E2_02 1756 SPN-82f93e3fee5ef872 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB 1 2 The club wasn’t very full, even after 1am. 119 151 standard J1.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:J1.01:0:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:34.308906+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 J.J1.J1_01 1757 SPN-63ccc979016933f8 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE 1 0 The best club in Vilnius. Always good vibes. 0 41 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:49.062415+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1758 SPN-61b415b24d99314f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE 1 1 Very polite and professional staff. 42 75 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:49.063397+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1759 SPN-71c4ce58d2c62d1c Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE 1 2 They make the best events!!!!this is the place you must visit if you are in Vilnius! :) 76 139 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:43:49.065854+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1760 SPN-e8aa567a49f110da Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB 1 0 Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into the area/room where they could see the show (I'm not talking a bad view, I mean absolutely no possibility of seeing it at all). 0 245 standard A4.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:A4.01:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:44:01.227485+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A4.A4_01 1804 SPN-e7b9da68249c6d0c Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB 1 0 The club is owned by the guy with the style, who actually cares about the place :) 0 78 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:00.495902+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1805 SPN-c30bb3004c7cc68d Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB 1 0 Quite a fun and safe club 0 25 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-04 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:04.890948+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1806 SPN-a0af349f88e9a309 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB 1 0 Nice gay club. I rather pop music but its ok. 0 45 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2017-01-31 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:12.890791+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1807 SPN-0ad39db910715109 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE 1 0 amazing service 0 15 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:21.927249+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1808 SPN-6e8e7ce4a892cac6 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE 1 1 nice club 16 25 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:48:21.927932+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1816 SPN-f18ac0cc5979b8e4 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB 1 0 Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas Bet - muzika. Aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? Visiškai nesvarbu koks DJ bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. Atrodo, jog be Lady gaga, Rihanna, Geltonos - nieko daugiau nėra. 0 370 standard E4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-30 18:34:31.336452+00 high URT:S:E4.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:48.390884+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1817 SPN-f04dd9df7c80d933 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB 1 1 Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€. Tuomet visi pasiemam po kokteilį ~44€. Bandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€. 370 490 standard V1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-12-30 18:34:31.336452+00 high URT:S:V1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:48.391494+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1818 SPN-993ccad8cba609c8 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB 1 2 Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt. 490 570 standard E4.04 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-12-30 18:34:31.336452+00 high URT:S:E4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:49:48.39186+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1819 SPN-bb65732f91d971a6 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB 1 0 Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. Ele começou a dizer que não podíamos entrar. Nao falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo "nao". Falava em Lituano algo mas não entendíamos e tentamos falar em inglês. Perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. Ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. Ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do Bolt. Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar. 0 564 standard P1.02 {} V- I3 CR-N S2 A1 TC ES segurança staff segurança \N \N \N t t 2025-10-31 18:34:31.336452+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:00.200445+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1820 SPN-d4dea3d3379648c3 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB 1 1 Além, a balada fede a suor. 565 590 standard E1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-31 18:34:31.336452+00 high URT:S:E1.01:-2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:00.201153+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1821 SPN-8edc3f59389b03a7 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 0 Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. Tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti. 0 218 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-30 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.828298+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1874 SPN-ed59a462a3622cf8 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE 1 0 Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi! 0 85 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:44.039712+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1822 SPN-4313d1d7b70f74ea Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 1 Vis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. Stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. Nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). 218 487 standard E1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:E1.04:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.829+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1823 SPN-8c897f233c073db3 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 2 Jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį. 487 570 standard E1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:E1.04:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.829787+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1824 SPN-d936799277b3b4d7 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 3 Šviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties. 570 754 standard P2.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:P2.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.830282+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P2.P2_02 1825 SPN-ea87242d0e3fe7e4 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 4 Fotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). Jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita. 754 925 standard P1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.831154+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1826 SPN-4ee283236a356869 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 5 Smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą. 925 1095 standard E1.04 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:E1.04:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.83162+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1827 SPN-9262c402ed03783b Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 6 Tikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. Labai norisi tikėti, kad Vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi. 1095 1245 standard R2.01 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:R2.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:50:42.831946+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R2.R2_01 1828 SPN-ecdc4023f11893bc Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB 1 0 Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. Iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda. Situacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. 0 267 standard E4.01 {} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2026-01-01 18:34:31.336452+00 high URT:S:E4.01:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:00.116855+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1829 SPN-0f7826e84644a8a4 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB 1 1 Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė. 267 353 standard E4.04 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-01 18:34:31.336452+00 high URT:S:E4.04:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:00.117416+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1830 SPN-ff5fb9274c0bcf3c Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB 1 2 Tikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų. 353 426 standard E4.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2026-01-01 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:00.117894+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1831 SPN-0c26f098973f1fa9 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB 1 0 Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. Šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. Darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. Tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. Nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. 0 486 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-30 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:23.95985+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1832 SPN-e851bd0bfb5ba211 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB 1 1 Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. Būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. Nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. Pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. 486 682 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:23.960506+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1833 SPN-fe94961a71954411 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB 1 2 Labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. Tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. Vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. Mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. 682 883 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-30 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:23.961183+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1834 SPN-5a3ff3555c7f73f1 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB 1 0 Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių"? 0 267 standard R1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-30 18:34:31.336452+00 high URT:S:R1.02:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:31.297566+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1835 SPN-2bc30aad3474cb30 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB 1 0 Le personnel est très accueillant et gentil. 0 45 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:40.10132+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1836 SPN-7268d3e8e9b28f7b Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB 1 1 Contents d y être allé pour supporter un établissement LGBT. 45 92 standard R1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:R1.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:40.101862+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_04 1837 SPN-59e7e12c5956fe55 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB 1 0 Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro 0 56 standard E1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-01 18:34:31.336452+00 high URT:S:E1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:45.152864+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1838 SPN-697c956c567dbf70 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB 1 0 מועדון מאד יפה אבל דיי ריק בשישי בערב. 0 34 standard E4.01 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-31 18:34:31.336452+00 high URT:S:E4.01:±2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:53.193445+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1839 SPN-3b1758c5e959263a Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB 1 1 נאלצנו לחתוך מוקדם.אולי בפעם אחרת. 35 61 standard J1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-31 18:34:31.336452+00 high URT:S:J1.01:-2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:51:53.194169+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 J.J1.J1_01 1840 SPN-87fe11c501ae768b Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE 1 0 Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi. 0 78 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Žydrė staff žydrė \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:04.94184+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1843 SPN-2088b8220d935497 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB 1 0 Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем. 0 98 standard E4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:E4.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:24.330401+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1844 SPN-93944d9250951e41 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB 1 1 Вход 4€ вроде бы, сдерли 6. 99 118 standard V1.03 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:V1.03:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:24.331132+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_03 1845 SPN-6adf4f351ca37aab Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB 1 2 По окончании шоу музыка не музыка, места потанцевать нет. 119 157 standard E1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-29 18:34:31.336452+00 high URT:S:E1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:24.331781+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1846 SPN-1501451639176a65 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB 1 0 Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. 0 186 standard E4.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:E4.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:35.349895+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1847 SPN-415c08e7f5c9ea3f Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB 1 1 Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10! 187 227 standard O1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:35.350551+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1848 SPN-7c858c9b615fb5fc Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE 1 0 Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai Soho🙂⭐ 0 164 standard E4.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:E4.01+P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:42.036417+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1849 SPN-e8409179b62b1796 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB 1 0 muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo 0 290 standard P1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:P1.02:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:48.032457+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1850 SPN-825c88316acae0ae Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE 1 0 El ambiente y la música regular. 36 60 standard E4.04 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-29 18:34:31.336452+00 high URT:S:E4.04:0:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:55.923752+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1851 SPN-172f36705d5c25c2 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE 1 1 La estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato. 0 85 standard V1.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:V1.01:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:52:55.924452+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1852 SPN-7bf114425361713f Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB 1 0 Гарне місце для тих хто хоче знайти себе! 0 41 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-01 18:34:31.336452+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:00.904799+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 3872 SPN-888a27727cbf9a52 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2Z1AtekVREAE 1 0 Muh bien 0 8 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:12.039393+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1853 SPN-c8f931b6877c32fd Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE 1 0 tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei 0 194 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:P1.01:+3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:06.529877+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1854 SPN-4b6dd782cd7784cf Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB 1 0 Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų. 0 139 standard V1.02 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:V1.02:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:14.994072+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_02 1855 SPN-cf6bdfd8522d0a35 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB 1 1 apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. 139 197 standard P1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:14.994551+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1856 SPN-ce8657ca5340dff0 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE 1 0 Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR 0 56 standard V1.01 {} V- I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-05-04 18:34:31.336452+00 high URT:S:V1.01:-3:33TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:20.628212+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V1.V1_01 1857 SPN-3e15772693deed6f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE 1 0 Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. 0 118 standard R1.02 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:R1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:33.036405+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_02 1858 SPN-42e900c07877e4c1 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE 1 1 Apvemta salė, stiklai. Niekas nieko netvarko. 119 145 standard E1.01 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:E1.01:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:33.037133+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1859 SPN-a050e527a0d27bfd Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE 1 2 Savininkas labai geros nuomonės apie save. Žiūri iš aukšto. 146 182 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:33.037913+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1860 SPN-2d795bba34a73f2c Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB 1 0 Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :) 0 85 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:37.573843+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1861 SPN-abc4ec558816dc30 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE 1 0 Месту срочно необходим ремонт. Грязно очень. 0 36 standard E1.01 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:E1.01:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:48.509019+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_01 1862 SPN-db226cd7e61a6bc5 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE 1 1 Музыка и выпивка хороши. 36 60 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:48.512301+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1863 SPN-19f1cf012f5f8c09 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE 1 2 Контингент - весёлые и интересные, яркие люди. 60 98 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-30 18:34:31.336452+00 high URT:S:P1.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:48.513704+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1864 SPN-fed4865d417c1128 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB 1 0 Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. 0 83 standard E4.01 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:59.394103+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1865 SPN-69f53f2a87aa4b88 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB 1 1 Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba. 84 139 standard P1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-01-31 18:34:31.336452+00 high URT:S:P1.02:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:53:59.394784+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1866 SPN-bf38aceda3d5767d Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE 1 0 отличный клуб, всё было просто пркрасно 0 38 standard E4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-04 18:34:31.336452+00 high URT:S:E4.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:04.979419+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1867 SPN-baf3597cd69ef59f Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB 1 0 Gera muzika, draugiški žmonės. 0 30 standard E4.04 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:E4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:10.557938+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1868 SPN-70204c4dbc6e619f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE 1 0 жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. 0 66 standard A1.05 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:A1.05:-2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:19.882548+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A1.A1_05 1869 SPN-f51026554727afcc Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE 1 1 в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую) 66 118 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-01-31 18:34:31.336452+00 high URT:S:E1.04:+3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:19.883159+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1870 SPN-c6221272ad5b8d01 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE 1 0 Очень классная клуб 💃 0 21 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:24.438356+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1871 SPN-2418635db8ee2db5 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE 1 0 Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat. 0 63 standard E4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:E4.04:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:29.1753+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1872 SPN-444cb34d513f4fd7 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB 1 0 Pati geriausia Miglė 0 20 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES Miglė staff miglė \N \N \N t t 2026-01-29 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:33.870096+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1873 SPN-c0c0bced26c04175 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB 1 0 visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻 0 66 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:O1.01:+3:10TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:39.048707+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1875 SPN-2e229ced5afd690f Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB 1 0 Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kolektyvas!!! 0 106 standard A3.01 {P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:A3.01+P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:54:49.618921+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 A.A3.A3_01 1876 SPN-732790bc8283ce16 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB 1 0 Klubas fainas😊 0 15 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:05.555026+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1877 SPN-856a2f5d644e317e Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB 1 1 Bet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės 15 75 standard P1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2023-01-30 18:34:31.336452+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:05.55586+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_02 1878 SPN-397377989fe5fa10 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB 1 0 Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt 0 98 standard E4.01 {P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:E4.01+P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:14.126829+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1879 SPN-3c9a92c0c9d663e4 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB 1 0 Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!! 0 60 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES Eivydas staff eivydas \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:19.992022+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1880 SPN-ee6b4c9c389393e7 Soho Club unknown google Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB 1 0 Poprawne. 0 9 standard V4.03 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-03 18:34:31.336452+00 high URT:S:V4.03:0:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:25.993118+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V4.V4_03 1881 SPN-0ea0e71b3b91400d Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE 1 0 Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius. 0 78 standard R2.01 {} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:R2.01:±2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:31.243308+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R2.R2_01 1882 SPN-dbab87b82c00f555 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB 1 0 No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy bien! 0 98 standard R1.01 {} V± I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-01-31 18:34:31.336452+00 high URT:S:R1.01:±2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:35.739737+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R1.R1_01 1883 SPN-f3d92edcab1431fd Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE 1 0 Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋 0 56 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:40.270979+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 P.P1.P1_01 1884 SPN-78ba83d850dc0f75 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE 1 0 Отличная музыка, много посетителей, небольшой минус за интерьер 0 63 standard E4.01 {E1.04} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2015-02-01 18:34:31.336452+00 high URT:S:E4.01+E1.04:±2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:44.766596+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1885 SPN-c3d69179131306f0 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE 1 0 Fainas klubas, draugiška atmosfera, rekomenduoju 0 48 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-30 18:34:31.336452+00 high URT:S:E4.01:+2:22TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:50.007381+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1886 SPN-5309e2521e4885b3 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB 1 0 Muy bien. Felicidades 0 21 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-05 18:34:31.336452+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:54.788665+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V4.V4_03 1887 SPN-f1a66bf2c838f427 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE 1 0 geriausias klubas Vilniuje 0 25 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:55:59.59238+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1888 SPN-8ef0330a1e343f13 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB 1 0 Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜 0 45 standard R2.01 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:R2.01:+3:11TF.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:04.232252+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 R.R2.R2_01 1889 SPN-acddf49a3dc1f9e7 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE 1 0 самий сільський клуб у світі 0 28 standard E4.04 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:E4.04:-2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:08.637653+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_04 1890 SPN-6002a64f0f0f13c9 Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB 1 0 Viskas ok 0 9 standard V4.03 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-01-31 18:34:31.336452+00 high URT:S:V4.03:0:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:13.777048+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V4.V4_03 1891 SPN-a5b008c5f5ff7779 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE 1 0 Muy chulo 0 9 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-01-31 18:34:31.336452+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:18.351234+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E1.E1_04 1892 SPN-f7705f7bed40576f Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE 1 0 Really good club, de locos 0 26 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-30 18:34:31.336452+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:23.809234+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 O.O1.O1_01 1893 SPN-b644db8c1a40a2ae Soho Club unknown google ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB 1 0 Gera mokykla 0 12 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-29 18:34:31.336452+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:29.04797+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 E.E4.E4_01 1894 SPN-51bcc379bd673733 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE 1 0 Супер 0 5 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-30 18:34:31.336452+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:33.556397+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V4.V4_03 1895 SPN-ffbe09dd4cb388a4 Soho Club unknown google ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE 1 0 Nieko gero.. 0 12 standard V4.03 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-30 18:34:31.336452+00 high URT:S:V4.03:-1:11TC.ES.N v5.1 gpt-4o-mini 6601288b 2026-01-29 18:56:38.395987+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 V.V4.V4_03 1896 SPN-3862227504f8e410 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB 1 0 The track is exciting and well-designed 26 65 standard O2.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.302159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1898 SPN-91edb9b13f74ad99 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB 1 1 the prices are super affordable 71 102 standard V1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.384502+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1897 SPN-2900cdada49d4c5f Go Karts Mar Menor unknown google review_75 1 0 Great set up, we did the Grand Prix. Really good, lap times, well organised, decent go karts 0 92 standard O1.02 {J3.01,E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O1.02+J3.01+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.302776+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1899 SPN-1c84216fb2d604c1 Go Karts Mar Menor unknown google review_76 1 0 Felt was really good value for money. €18 for 8 mins. Doesn't sound a lot, but it's plenty when your out there (around 8 laps of a 1km circuit). 0 145 standard V4.01 {V1.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+V1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.387876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 1900 SPN-bee5b97a03f88a03 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE 1 0 nice venue. good track. 0 23 standard E1.04 {O1.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04+O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.385483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2354 SPN-de233e0534f167db Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVZzl5YURBEAE 1 0 Loved it! 0 9 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.721912+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1902 SPN-bbff13d8b5dd7ab7 Go Karts Mar Menor unknown google review_76 1 1 Massive outdoor screen display where you can see your lap times and also live video feed. 146 236 standard E3.01 {O4.04} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E3.01+O4.04:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.553062+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_01 1901 SPN-e0ff3e2a139d032d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE 1 1 friendly people and they speak english 24 62 standard P1.01 {A2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+A2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.553021+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1904 SPN-d5838b55b740f0a3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE 1 2 really had agood day 63 83 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.556182+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1905 SPN-6dec347c5ad42214 Go Karts Mar Menor unknown google review_76 1 2 Nice cafe onsite and good views for those watching. No need to book as they continually race. 237 328 standard E1.04 {A1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.04+A1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.556959+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 1907 SPN-e8beb2e0064f6636 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE 1 2 Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package which includes practice time, real F1 grid start based on lap times longer race time, medals plus lots more 192 421 standard V1.04 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.04+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.586633+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_04 1908 SPN-c20884c47e3e6cac Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB 1 0 Brilliant. Really good track. 0 29 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.587857+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1910 SPN-c8d61c807c191d0c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB 1 1 Cheap prices. 30 43 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.676452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1911 SPN-2731f76be1c14a46 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB 1 0 We went on a Wednesday as people here have suggested it is good value and I can confirm we got double the minutes for the same price 50 183 standard V4.01 {} V+ I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.982343+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 1912 SPN-7090c13991b639ff Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB 1 2 Definitely going again.\n\nPlenty of parking. 44 87 standard A4.02 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:A4.02:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.982324+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_02 1914 SPN-c6a2ae183c4ebdf9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB 1 1 Staff are friendly and helpful- we speak limited Spanish and we managed to easily converse 185 276 standard P1.01 {P2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.984713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1915 SPN-62b0b83bc56ab77b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE 1 0 Really nice set up, great circuit, 1100m. Karts are good and well balanced. 0 76 standard O1.02 {E1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.351342+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1916 SPN-6415049980a4b1df Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB 1 0 Very good. Well run and lots of fun. 0 36 standard V4.03 {J3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03+J3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.35136+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1918 SPN-b81f2a0318dd141b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE 1 1 Friendly happy staff. 77 98 standard P1.01 {P1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.354321+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1920 SPN-bdba0972de7376d1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB 1 0 Very drively and power place. Regular competition on cart and motorbike. 0 72 standard O1.02 {O2.02} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 medium URT:S:O1.02+O2.02:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.411948+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1921 SPN-592e9ea4ceb45183 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB 1 0 Friendly folks. They only speak Spanish, but they'll be happy to let you write down your list of drivers and cars on a piece of paper. 0 135 standard P1.01 {A2.02,A3.02} V+ I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+A2.02+A3.02:+2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.502186+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1923 SPN-9157696be36b41a1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE 1 0 I come here whenever I fly from England to visit family. I've traveled the south coast of the UK testing tracks out and coming over to Spain I've also tested a few tracks out. This track is by far my favourite. 0 210 standard O1.02 {} V+ I3 CR-B S3 A1 TR ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:33TR.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.616953+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1903 SPN-6c853310b72fdb72 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE 1 0 carts to suit all ages and all are well maintained 32 83 standard O1.04 {A3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.04+A3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.555329+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 1906 SPN-3c5dc146b9aab51b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE 1 1 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights 85 190 standard O2.02 {} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O2.02:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.558333+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1909 SPN-2a9798d8e2ca62a7 Go Karts Mar Menor unknown google review_77 1 0 Very good and long track. Good value for your money. Definitely coming back soon. Even if we were about 10 people on the track, it was not really crowded. 0 154 standard V4.01 {O1.02,E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.01+O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.590216+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 1913 SPN-d29adcdee3b41629 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB 1 0 Great day out for all. Thoroughly recommend a visit. 0 52 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:47.984094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1917 SPN-e44ff0131500f64f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB 1 0 Great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. He absolutely loved it and dad (a former saloon car racer) enjoyed it too! Great value, friendly team and highly recommended for a fun afternoon. 0 231 standard P1.01 {A3.02,P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+A3.02+P1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.354224+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1919 SPN-d7478e21614853ae Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE 1 2 Extra good value on Wednesdays 99 128 standard V4.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.383944+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 1922 SPN-841d0ae27943d0f1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB 1 1 In the off season, they can put together a race for the whole family in different car types, even tandem for the little ones. During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars. 137 384 standard A3.02 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A3.02+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.616945+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 1925 SPN-2c0cae43c806dc4c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE 1 1 Staff are wonderful and happy to help. I asked if I could pay for 2 sessions and do 16 consecutive minutes instead of 2 sessions of 8 minutes and they had no issue in me doing so. I asked to use the same kart every time I go so I could compare lap times with my previous sessions and they had no issues accommodating that. 211 534 standard P3.02 {O4.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.02+O4.03:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.619578+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 1927 SPN-ed0d4f1e09793158 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB 1 1 Also we paid for 8 minutes but only got to drive 6 minutes! Noticed it when we looked at the paper with the scores when we got home… There was not a single soul there other than me and my girlfriend, so that they cutted down our time with 2 minutes is NOT ok. It's never ok, but especially when there are nobody else there. Rip off! Added a picture to show that we didn't get 8 minutes. I drove 6 rounds, one of them was 1 min 3 sec and the rest was under 1 min. 59 522 standard R1.02 {V1.03,O3.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:R1.02+V1.03+O3.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.642244+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 1930 SPN-80bd312e693c4385 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB 1 1 Staff helpful 60 73 standard P2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:P2.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.693524+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 1932 SPN-bd02442c8b075cba Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB 1 1 Friendly staff who speak English and very good with kids. 83 139 standard P1.01 {A2.02,A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+A2.02+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.716441+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1933 SPN-148ef3e35ad4ea67 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB 1 0 A bit short track so many turns and not so high speed 21 74 standard O2.02 {} V- I1 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:O2.02:-1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.026659+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1936 SPN-42bea028279d1fce Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 0 They installed a new timing system this week. You enter your cred and picture is taken for the log. Once you start driving, the lap time comes up on the big screen. If you lead the race, your picture shows up as well. The kids Love it!! 28 267 standard O3.02 {E3.01} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O3.02+E3.01:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.56873+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 1937 SPN-3777732816b4d3eb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 1 Seems to get the fastest times in the morning before the track is too warm. However, when windy, dust is making it a bit slippery. So that makes it the best time to drive in the evening 269 456 standard E2.03 {O1.02} V0 I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E2.03+O1.02:02:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.578208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E2.E2_03 1939 SPN-4c50e5ff34cd45c9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 2 Prices are ok. (cheaper in Norway funny enough :-)) 458 510 standard V1.01 {} V+ I1 CR-B S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01:+1:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.580998+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1943 SPN-bad94ec4da20aea1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB 1 0 Well run enterprise staff are extremely competent and are very comfortable when dealing with the customers. 0 107 standard P2.02 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P2.02+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.596503+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 1924 SPN-be6beb2f43c1b3a4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB 1 0 Grumpy man who looked like he hated everyone coming there… 0 58 standard P1.01 {P1.04} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+P1.04:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.619013+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1926 SPN-182db6d8899f84e0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE 1 2 Will definitely come again and recommend to people 535 584 standard V4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.6422+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1931 SPN-51953e48cb1582de Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE 1 0 If you're a karting lover don't come here, safety is just not there. You can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. Be aware that there are no marshalls with flags on the track. Maintenance of the karts is not great. They could do a lot better for such a nice track. 0 384 standard E4.01 {R1.02,O1.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01+R1.02+O1.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.695861+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 1934 SPN-2d2886f625139a2b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB 1 0 Good afternoon. Friendly staff. Very reasonable prices for an adult/child kart. 0 79 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:P1.01+V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.028141+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1938 SPN-202d205ccc621de8 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB 1 0 Great value for money. Big track 👍 0 34 standard V4.01 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.01+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.579144+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 1940 SPN-492601f47e89c404 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB 1 0 Been here twice over the last month great karting track to have fun with friends 0 80 standard O1.02 {} V+ I2 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.581342+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1941 SPN-0779f459a89072f8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 3 Friendly staff! 512 527 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.594123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1944 SPN-9f29896641d78f5e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 4 AC-conditioned room with a view over the track and race monitors 528 593 standard E1.04 {E2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.04+E2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.596784+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 1945 SPN-a5bb25400f5df785 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 5 Bring some water with you as you get very thirsty in 36 degrees! 595 660 standard E2.03 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E2.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.620381+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E2.E2_03 1946 SPN-2b0ae1d0f5218b16 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB 1 0 Good karting circuit with a lot of choice. For adults and kids. Also nice investments done during the last years. 0 115 standard O4.03 {E1.03} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O4.03+E1.03:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.627019+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 1953 SPN-e1ee7c0306986bd9 Go Karts Mar Menor unknown google review_59 1 0 Wide variety of karts even an adapted one. 0 42 standard A3.02 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A3.02+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.730093+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 1955 SPN-eddf30efd32d76fb Go Karts Mar Menor unknown google review_59 1 1 Staff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry. 43 143 standard P2.01 {O3.04} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P2.01+O3.04:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.754702+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 1958 SPN-0b883ee3c59883c5 Go Karts Mar Menor unknown google review_59 1 2 The track is actually pretty strenuous if (like me) you've not done it recently.\nDemanding and twisty with\nvaried corners. 144 265 standard O1.02 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.757329+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1963 SPN-fe33d43fc1317fe2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 1 -2 stars: La jefa had absolutely no understanding for our reasoning and complaints. After shelling out 180€ in total for two rounds (2 rounds x 3 people x 400cc), we felt a little cheated. It would cost them so little, next to nothing, to give us a couple of extra rounds to set things right. 247 540 standard V1.03 {R4.04,V1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.05+R4.04+V1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.0268+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_03 1966 SPN-cb56f7234ba8218f Go Karts Mar Menor unknown google review_61 1 0 Had a great time at Go Karts Mar Menor, very professionally run and the karts (even the 200) we're nice and quick around the track. 0 132 standard O1.02 {J2.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+J2.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.05277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1969 SPN-3a3416c5489ff73f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB 1 0 Very friendly welcoming staff who speak great English and were really happy for my husband to have a drive around despite none else being on track. 0 147 standard P1.01 {A2.02,A3.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+A2.02+A3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.056537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1971 SPN-4bb3895f019f7879 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 4 Some good aspects: - Most of the employees are helpful and service minded. - The track is good. - Times are shown on a big screen visible for the drivers. 829 984 standard P1.01 {O1.02,E3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+O1.02+E3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.058796+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1980 SPN-1bc8142dc5aa1078 Go Karts Mar Menor unknown google review_64 1 0 Great experience and track, 0 27 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.554438+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1928 SPN-131f84d11f4d1acd Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB 1 0 Only 8 minutes racing but track is very good 0 45 standard O2.02 {V4.01} V+ I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O2.02+V4.01:+2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.644493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1929 SPN-2fe55ead73b5875c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB 1 0 Every year we come back and we never get bored, it's now like a family tradition. 0 82 standard R3.03 {} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:R3.03:+3:33TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:48.693399+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_03 1935 SPN-0deb99cd3bb677e4 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB 1 0 Nice experience ! Worth to go there again. Great assistance. 0 62 standard P3.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.567573+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 1942 SPN-1c0dde3ed118c6f3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB 1 0 Very good. Karts drive amazing and good a great range of selection to choose from 0 81 standard O1.02 {O2.02,O4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O1.02+O2.02+O4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.594968+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1947 SPN-189ec101939c0004 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 6 Good ice cream for sale 662 685 standard O3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.627042+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 1949 SPN-3ec981abf24b52d2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 7 55 sec with the F-300 is the time to bit:-) F-200 good for kids F-400 is fun, but Very hard to drive fast! Exhausting. F-300 good fun 687 821 standard O1.02 {O4.04} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+O4.04:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.635368+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1954 SPN-6da5a7796a693c7c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB 1 0 Great place to visit and super cheap for a lap for the kids on 100cc = £10. 0 76 standard V1.01 {V4.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.753516+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1957 SPN-d8a31b096aabb00d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB 1 1 You can't go on with the younger kids if they want to go themselves. 77 146 standard O4.03 {} V- I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O4.03:-1:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.756964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 1959 SPN-5f9be8c45e1315ab Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB 1 2 Fun and great track! Facilities are fab 147 186 standard E1.03 {O1.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03+O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.781515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 1960 SPN-e2295c42ffb84f17 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE 1 0 A very good family run kart track. Extremely friendly..low prices ,choice of karts slow-fast and children's karts and doubles. 0 127 standard V1.01 {V1.01,O3.02} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+V1.01+O3.02:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.790122+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1961 SPN-ff199ec78ff60b9d Go Karts Mar Menor unknown google review_60 1 0 Excellent!!! Well organised and great track!! 0 45 standard J2.01 {O1.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:J2.01+O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.002576+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 1965 SPN-10a8d96b46f6a703 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 2 +1 star: Because the 400cc carts are INSANE! 541 585 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.052854+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1967 SPN-be4c5b6bae2452e1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 3 Would easily have given 5 stars if the boss had been more forthcoming and set things straight. Being service minded is more important in order to earn money (in the future), than saving scraps in the moment. Will never spend money here again. 586 828 standard R4.04 {P3.05} V- I3 CR-N S3 A3 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R4.04+P3.05:-3:33TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.056482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_04 1975 SPN-9bfd354164819c55 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB 1 0 Great family fun 0 16 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.463447+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1976 SPN-99deb5fc7c6c3c01 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB 1 0 Great and competitive karting track. A challenging circuit where you can enjoy with family and friends. 0 103 standard O2.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-31 01:52:39.833374+00 high URT:S:O2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.496359+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1979 SPN-f68b45103686b2ea Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE 1 0 Amazing opportunities for the young and old, even 2 seated cars for parent and child if the little one isn't old enough to take the wheel. 0 139 standard A3.02 {O3.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:A3.02+O3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.528767+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 1981 SPN-65eb89de555f3e8f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE 1 1 Also has cafe and roof top viewing 165 197 standard O3.02 {} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.555753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 1983 SPN-cc462712a831291f Go Karts Mar Menor unknown google review_64 1 1 Staff really friendly and helpful. 28 62 standard P1.01 {P3.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.557828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1987 SPN-6c65d4228e331727 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB 1 1 And the staff was helpful 68 93 standard P2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P2.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.59498+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 1950 SPN-1826d4bad64a7fa1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE 1 1 Friendly staff and a good track. Not so big but big fun. 36 91 standard P1.01 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.636112+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1951 SPN-c2926c39d64a21e3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB 1 0 Excellent place for Supermoto riding. Fresh facilities, very helpful and pleasant staff. Worth a visit! 0 103 standard P1.01 {E1.01,V4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.01+V4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.660001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1952 SPN-4547ebfe99b6e7de Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB 1 0 The track is long and full of turns. Fast go-karts, which further enhances the driving experience and puts a smile on your face 😁 47 177 standard O2.02 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O2.02+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.728217+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1956 SPN-78e5973345215802 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB 1 0 Very nice track and quiet decent Karts, at the least the 300. Telemetry is very good! 0 86 standard O2.02 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O2.02+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:49.756485+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1962 SPN-c693d08d4d060b95 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 0 -1 star: On our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), but we (400cc carts) only got the standard 10 min. This meant that we didn't get the two extra rounds, without the other carts, that we paid for. 0 246 standard R1.02 {O3.03,V1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:R1.02+O3.03+V1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.004064+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 1964 SPN-c1a25ab24e603fc8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE 1 0 Great experience for children and adults. Friendly, helpful staff. 0 67 standard P1.01 {P2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:P1.01+P2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.026828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1968 SPN-80f0d5eee868ee50 Go Karts Mar Menor unknown google review_61 1 1 Very well set up for a stag /hen visit as a nice bar area and pool / table football games as well as plenty of seating indoors and out. But we went as a family 10years up and we all had a great time. 134 335 standard E1.03 {A3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03+A3.01:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.056498+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 1970 SPN-31864708d6b69a95 Go Karts Mar Menor unknown google review_61 1 2 A definite recommendation from us, 337 368 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.058679+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1972 SPN-26a07662179880d5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 5 Tips for improvement: 1) Always let the 400cc start first 2) Take the time on the two extra laps for 400cc. These two rounds are the most important to time since this is where one can excel. 3) Let the 400cc have two extra minutes (as it actually says) instead of two extra rounds. 4) Be more service minded. 985 1293 standard J2.01 {P3.05} V0 I2 CR-N S3 A3 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:J2.01+P3.05:02:33TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.067905+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 1973 SPN-a957993fd2d6f0de Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB 1 0 Nice track, good safety in place and organisation 0 49 standard E4.01 {O2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:E4.01+O2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.075895+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 1974 SPN-8da699b2d09b7af1 Go Karts Mar Menor unknown google review_62 1 0 Really good set up, great location and great for kids. 0 54 standard A4.01 {E1.03,A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:A4.01+E1.03+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.462616+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 1977 SPN-c3bf96bd4ac88f96 Go Karts Mar Menor unknown google review_63 1 0 Have to say this is great fun, well run with top notch kit. 0 59 standard O2.01 {J2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.01+J2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.497396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 1978 SPN-5c5f9f655a2d1b85 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE 1 0 Watched our son and grandchildren race each other. You can ride with your kids or for the more experienced you can go around pretty fast and obviously slower for children. Really enjoyable for everyone. 0 202 standard O4.03 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O4.03+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.527808+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 1982 SPN-52d94b64f9623f48 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE 1 0 Excellent outdoor track with a selection of karts for all ages and abilities. The pilot day deal 2x1 on Wednesday is great value. The staff are lovely and helpful. The step from F300 to F400 is significant. 0 206 standard P1.01 {O4.03,P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+O4.03+P1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.557369+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1984 SPN-b5d0fbe08e7e32d9 Go Karts Mar Menor unknown google review_64 1 2 Loved our visit and will be back. 63 96 standard V4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.571809+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 1993 SPN-8348143a699591a9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE 1 0 Very friendly family run go cart track, brilliant fun for all the family. 0 74 standard P1.01 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.097339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1994 SPN-e4879df4d3801b67 Go Karts Mar Menor unknown google review_67 1 0 We had a fantastic time at this kart track. Booked on line for two us at 1130am and when arrived we were the only people there. You check in at the cafe and its a straightforward job. 0 186 standard J2.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:J2.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.148251+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 1996 SPN-cf0f49a2c1393edb Go Karts Mar Menor unknown google review_67 1 1 Staff in the cafe were very friendly. 187 224 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.151297+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1985 SPN-04c645832d2576a2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB 1 0 Very nice track. Smooth and big kerbs. The carts were good enough. 0 67 standard O2.02 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O2.02+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.572622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1986 SPN-fca0b47910620053 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE 1 0 Service is top! Price affordable, all good 👍 0 44 standard V1.01 {V1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.594963+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 1988 SPN-e7172cf67fa5f74d Go Karts Mar Menor unknown google review_65 1 0 absolutely fantastic place best by far in Murcia. great carts and the track is amazing 0 86 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.604475+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 1989 SPN-d80c527a94b57ce8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE 1 0 Fantastic track and karts. Cant believe it wasn't busier the day we went. Big outdoor track with decent options for karts depending on your level. 0 147 standard O2.02 {O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.02+O3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.628272+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 1990 SPN-d279650e89aa6f74 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE 1 0 Great outdoor track! F-300 carts were quick! (Quick enough anyway) big board outside to check your lap times, also a free printout from reception! Cheapest and BEST in the area! 0 178 standard V4.01 {O1.02,E3.01} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01+O1.02+E3.01:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:50.933873+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 1992 SPN-584bafae2532401b Go Karts Mar Menor unknown google review_66 1 0 Great fun for the whole family. Lovely family that run it. 0 58 standard P1.01 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:P1.01+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.094609+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1997 SPN-5d7c2afb2e07f193 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE 1 0 Great place to come for ages 6+. Friendly staff, well looked after go karts and the track was really good. 0 107 standard P1.01 {O1.04,O2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+O1.04+O2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.151677+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1998 SPN-fe05f06da2b1ba09 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB 1 0 A repeat visit here for us. We really like go-karting here. Good track layout, staff are friendly and helpful and it's reasonably priced. 0 138 standard P1.01 {O1.02,P1.01} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.02+P1.01:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.171364+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2001 SPN-37769576f6b1b883 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB 1 1 A bit out the way so a car is needed. But for a good afternoon out racing it's ideal. 139 223 standard A4.01 {V4.03} V± I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:A4.01+V4.03:±1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.19933+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2002 SPN-bcefd74ff9874c14 Go Karts Mar Menor unknown google review_69 1 0 Absolutely great. Great value, great service and a great track. We went as a family with a teenager and a 9 year old and everyone was catered for. Faster karts for dad and older son and slower kart for younger daughter. The staff separated 0 240 standard A3.02 {V4.01,P3.01,O1.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:A3.02+V4.01+P3.01+O1.02:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.208658+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 2003 SPN-92300e4e8b4e6f67 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB 1 0 Awesome fun, very friendly staff... and if you go on a Wednesday, you will get twice the time for the same price 0 112 standard P1.01 {P1.01} V+ I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+P1.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.255265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2006 SPN-644868bd6fe1a6d0 Go Karts Mar Menor unknown google review_70 1 1 It's a good track too with plenty of opportunities to overtake and challenge your driving skills. 179 276 standard O1.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.350708+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2009 SPN-69aafa4f92c76b8e Go Karts Mar Menor unknown google review_70 1 2 We'll certainly be returning again soon. 277 316 standard V4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.352085+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3252 SPN-391610222ad70a37 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB 1 1 pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber pagado 30 pavos por 10 minutos me he tirado toda la sesion esquivando karts 19 194 standard R1.02 {J3.01,E4.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:R1.02+J3.01+E4.01:-3:S3A3TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.074666+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 2010 SPN-956bc2d46fc1c9c6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB 1 1 It's a great shame to your business and managers or owners of this venue. We will not return to your venue and will tell everyone we know the same if you do not put this right. I understand there are rules, but this situation was so absurd that there are no words for it...but shame on you. 515 802 standard R4.04 {P1.05} V- I3 CR-N S3 A3 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.04+P1.05:-3:33TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.718677+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_04 2011 SPN-0951d065c37c2336 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB 1 0 Worth the money! 0 16 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-31 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.725176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2012 SPN-704e0f11325907b9 Go Karts Mar Menor unknown google review_71 1 0 Track is good 0 13 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.738427+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2014 SPN-13f243370b022be0 Go Karts Mar Menor unknown google review_71 1 1 but €20 for 8 minutes is a lot and the track is small. Longer time would be better 14 97 standard V1.02 {V3.01} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:V1.02+V3.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.740966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2019 SPN-b2871a1c687a7c54 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB 1 2 You can buy a drink and have a game of pool here too 332 382 standard O3.02 {} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.02:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.753019+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 1991 SPN-6672b23716d71315 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE 1 1 All staff very polite and helpful, we've been a few times this holiday, Don't waste your time with other Karting tracks...just go here! You won't be disappointed 👍👍 179 342 standard P1.01 {R3.04} V+ I3 CR-B S2 A1 TR ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+R3.04:+3:21TR.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.094605+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1995 SPN-5120f766e52ef3cd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB 1 0 I have been here numerous times. Very easy to book through their WhatsApp. Staff are friendly and helpful. Had a brilliant time with my group of 12 people and will be returning very soon. 0 187 standard P1.01 {P1.01,V4.03} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:J2.01+P1.01+V4.03:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.149159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 1999 SPN-5db0e958104cd4e3 Go Karts Mar Menor unknown google review_68 1 0 Great session. Very enjoyable despite the result! 😁😁 0 53 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.171389+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2004 SPN-6119f4a1ede0d4f8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE 1 0 Use it every year. The kids love it. Nice size track. Different engine sizes for all ages and experiences. 100, 200, 300 and so on. Amazing how many pay extra for 300 but get over taken by 200s :-) 0 197 standard O4.03 {V4.03} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O4.03+V4.03:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.256721+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2008 SPN-6e2b5f16ce43b606 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB 1 0 It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednesdays to each customer, but didn't allow a single parent a chance to make ONE lap with his 2nd child instead of all those extra 8 minutes!!?!! A single parent raced for about 6 minutes with one child and had more than 8 minutes left. He asked to give a 2nd child a chance to do just ONE lap (with same parent) and you refused. We had to pay for a new ticket worth 16 minutes to do ONE lap with 2nd child. Absurd! 0 514 standard R1.02 {O4.03,V1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:R1.02+O4.03+V1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.351676+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 2016 SPN-e5279685eb882334 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE 1 1 But the place and service are great! We celebrated a kid's birthday and the menu was very rich!! 46 141 standard P1.01 {O2.02,V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+O2.02+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.741574+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3247 SPN-76cd6ce1984d0068 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB 1 0 Fantástico sitio para pasar la tarde con niños y/o amigos. 0 58 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.04:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.043298+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3248 SPN-17477dac6b19c4a8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB 1 1 Varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para que padres puedan montar con niños pequeños,y karts adaptados para personas con discapacidad. 59 250 standard O3.02 {A2.01,A3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O3.02+A2.01+A3.01:+2:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.046142+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3249 SPN-2ec982ecc2e983d2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB 1 0 Roligt ställe för en fartfylld upplevelse. 0 43 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.059057+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3250 SPN-343e68e9bb8e4319 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB 1 1 Ok priser! 44 53 standard V1.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+1:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.061478+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3251 SPN-f6505cfbaef45c60 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB 1 0 La pista muy buena 0 18 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.072521+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3253 SPN-b4ad728fb6afd843 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB 1 2 NUNCA MAS VOY A PASAR POR ALLI!!!!!!!! 195 232 standard V4.03 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:-3:S2A1TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.076858+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3254 SPN-49e55324f4a66f78 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRMXJXSVh3EAE 1 0 Buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la velocidad, y si vas de acompañante dispone cafetería, bar donde tomarte algo mientras contemplas las carteras. 0 212 standard V1.01 {A4.02,O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01+A4.02+O3.02:+2:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.090407+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3255 SPN-77e55e85460be3ee Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwck0yQzlnRRAB 1 0 Buen circuito y buena organización. 0 35 standard O1.02 {J2.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+J2.01:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.102764+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3256 SPN-2bdbec4b69500a0d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE 1 0 Una experiencia inolvidable! 0 28 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.114451+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3257 SPN-fcf9c1ce6778af29 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE 1 1 Los encargados muy atentos y profesionales . 29 73 standard P3.01 {P2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P3.01+P2.01:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.116049+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2000 SPN-bcc91de3504f4b0d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB 1 0 Everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces 0 97 standard V4.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.172998+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2005 SPN-46db35ff763ffb4c Go Karts Mar Menor unknown google review_70 1 0 Great way to spend An hour or two with friends and family. The whole setup was made very easy and we literally turned up and was on the track within 5 minutes. No messing about. 0 178 standard J2.01 {J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:J2.01+J1.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.267863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2007 SPN-e412166ffb490643 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE 1 0 family friendly and lovely atmosphere. Helpful staff 0 52 standard P1.01 {P2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+P2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.350713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2013 SPN-81a382ecb0485ddd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE 1 0 A bit expensive, so it is a rare pleasure :D 0 45 standard V1.01 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:-1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.738927+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2015 SPN-b5edcb51aa884ee3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB 1 0 This is the second time I have been here: once with a few friends and this second time with young family. It's been a great experience both times, good value and good service. 0 176 standard R3.01 {V4.01,P1.01} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:R3.01+V4.01+P1.01:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.741564+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_01 2017 SPN-59ffb368b1569e75 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB 1 1 It's a good track suitable for those new to go karting whilst being suitable for more experienced drivers due to the different power vehicles available. 177 331 standard O4.04 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O4.04+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.750428+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2018 SPN-95da9b7271d70ebb Go Karts Mar Menor unknown google review_72 1 0 Class experience, great staff, great track. Couldn't ask for more. 0 66 standard V4.03 {P1.01,O1.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+P1.01+O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.752988+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2020 SPN-ca2148210abe44b4 Go Karts Mar Menor unknown google review_73 1 0 Brought my family here a couple of times at Christmas and it was so much fun! Great for all ages and especially those looking for adventure! 0 141 standard A3.01 {} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:A3.01:+3:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.781091+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2021 SPN-530c708367689f48 Go Karts Mar Menor unknown google review_73 1 1 The staff are friendly and the helmets and go karts cleaned after every use. 142 219 standard P1.01 {E1.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.783128+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2022 SPN-f89e73e2bcab525c Go Karts Mar Menor unknown google review_73 1 2 Minimal waiting times 220 241 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.784898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2023 SPN-9c2c4ae3c06c0135 Go Karts Mar Menor unknown google review_74 1 0 Very well organised and very efficient at getting players on and off with little fuss. 0 86 standard J2.01 {J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:J2.01+J1.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:51.795776+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2024 SPN-431f2a190cf9fd92 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB 1 0 The kart track is in great condition. 44 82 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:53.488483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2061 SPN-d98d0073a6223b0f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 6 The atmosphere is very welcoming and authentic giving a true racing experience. 560 639 standard P1.01 {R3.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04+R3.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.966294+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2025 SPN-27ad1bf62fb8b0ea Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB 1 1 My son and nephew drove in the 40 km/h class and had a lot of fun. My daughter and I drove in the mixed class at 60 km/h and above. That was also a lot of fun and a great memory for everyone. 83 272 standard O1.05 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:O1.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:53.490577+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2026 SPN-63af4257d022946e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE 1 0 The kids (age 12 & 14) had a fantastic time. 35 80 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:56.714791+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2027 SPN-81d1e49fec7a9906 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE 1 1 The staff were really friendly 81 111 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:56.71728+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2028 SPN-e21ea6416bfbef57 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE 1 2 the prices are very reasonable. 116 147 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:56.719621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2029 SPN-ab7aeea949e4065e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE 1 3 All in all a brilliant experience. 148 180 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:56:56.722089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2030 SPN-ad50f9f13332ace7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNRbWVPS3N3RRAB 1 0 Really fun experience, only takes about 1/2 hour to do but definitely worth it. 0 79 standard V4.01 {J1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-04-05 00:52:39.833374+00 high URT:S:V4.01+J1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:01.224231+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2031 SPN-be4304de9b8fa8a6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB 1 0 Fabulous. 0 9 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:04.7481+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2052 SPN-641bd2efe4131529 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE 1 1 a variety of different effects in the motors. 15 60 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:40.326858+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2032 SPN-3ba74913087a28e2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB 1 1 Friendly helpful service guiding autistic son to complete a first solo drive. They were patient and kind and he absolutely loved it. 11 145 standard P1.03 {P1.01,A3.02} V+ I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:P1.03+P1.01+A3.02:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:04.750163+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_03 2033 SPN-612acd4edbdbe703 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB 1 2 So much so we went back a week later. 147 184 standard R4.03 {} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:R4.03:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:04.751752+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2034 SPN-0dd1d4be4361f485 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB 1 3 Timing was excellent as we had the course to ourselves, which helped! 186 254 standard J1.02 {E1.02} V+ I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:J1.02+E1.02:+3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:04.755022+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_02 2035 SPN-97b64911ca9c7504 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB 1 0 One of the best tracks I've done in Spain, well-maintained karts and helpful, friendly staff. 0 93 standard P1.01 {P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:07.851304+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2036 SPN-aeba7654c489d26b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB 1 1 Prices are a bit higher than similar tracks around, but they are not that strict on actual run times, so it evens out. 94 212 standard V1.01 {V4.01} V0 I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.01:0:21TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:07.853823+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2037 SPN-d929657c12672e75 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB 1 0 Brilliant service and great fun. 0 32 standard P1.01 {E1.04} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:P1.01+E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:14.288285+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2038 SPN-91922845fce61000 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB 1 1 I recommend them. 33 50 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:14.289782+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2039 SPN-b3ad86b57d30f628 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 0 Had a great time and really enjoyed our race. 44 89 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:20.150195+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2040 SPN-13e4d408aa253fb3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 1 Easy check in experience 90 114 standard J2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:20.152211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2041 SPN-80b9019ec9ef6daa Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 2 reasonable cost 116 131 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:20.154266+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2062 SPN-71a76e07ff31a696 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 7 They have karts for all ages and abilities and are superbly priced. 640 708 standard V1.01 {V1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A3.01+V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.96747+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2042 SPN-f23b0d372d20f710 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 3 a good fun track with good karts. If you can, pick the F300 Karts because we went in F200 and got well beaten by the drivers in the faster Karts! 136 283 standard O1.02 {P4.03} V+ I2 CR-B S3 A3 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.02+P4.03:+2:33TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:20.156449+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2043 SPN-d91d3fc6b9e5a017 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 4 Nice roof terrace for spectators and a cafe/bar for food & drinks. 284 351 standard E1.04 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:E1.04+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:20.15792+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2044 SPN-ef0b3c0950612dd6 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 5 Highly recommend it for a bit of fun. Karts for all ages although the kids race we watched was organised chaos albeit at low speeds! 352 485 standard V4.03 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:20.158944+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2045 SPN-7e299cf1834e6d44 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 0 Great Great Go-kart track, friendly helpful staff. 0 50 standard P1.01 {P1.01,P2.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.01+P1.01+P2.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:29.520543+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2046 SPN-f29ea8a01b007585 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 1 Easy to find off motorway EP7, easy parking. 51 95 standard A1.04 {A4.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:A1.04+A4.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:29.522338+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_04 2047 SPN-7e292e01af66f9e5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 2 Good shop and cafe on site. 96 123 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:29.523926+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2048 SPN-b457188bf8067e4e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 3 Good prices too: €12 for 8mins, very reasonable (especially compared to UK in £GBP). 125 209 standard V1.02 {V1.01} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.02+V1.01:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:29.52565+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2049 SPN-8fe878e2afb100ad Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 4 Great track, 10 varying turns, about 1.2km long. We used F200 karts (fast enough). F100 for smaller children, F300 and F400 for enthusiasts. 210 352 standard O1.02 {O2.01,O3.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.01+O3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:29.527287+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2050 SPN-cded22c6f44b027e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 5 Highly recommended. 353 370 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:29.528523+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2053 SPN-02a88cc6b8ce22d6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE 1 2 Maybe a longer straight to be able to fully use the effects of the faster cars. 61 140 standard E1.03 {O4.03} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03+O4.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:40.328985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2054 SPN-0d507b6c48883eb6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE 1 3 I think U will leave pleased- Enjoy! 141 177 standard V4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:40.331195+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2055 SPN-941196ab5eedb163 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 0 ‼️AMAZING‼️Amazing go karting, very professional and authentic. 0 63 standard P1.01 {O2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+O2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.955678+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2056 SPN-5b917d646efa85c4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 1 Well kept and unique track which is a pleasure to race on! 64 123 standard O1.03 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.03+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.957981+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2057 SPN-afc91e5668d3f6a4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 2 And the karts are well maintained to the best standards. 124 180 standard O1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.960363+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2058 SPN-d2bb09f2224264a5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 3 They have amazing staff there getting you on the track quickly and efficiently and helping with any problems on the track. 181 303 standard P3.02 {J1.01,P2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.02+J1.01+P2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.962034+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 2059 SPN-8e9df276baddd785 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 4 Great facilities with food and drink available, a good main room with a view of the karts and an amazing roof terrace overlooking the complex! 304 447 standard E1.03 {O3.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.03+O3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.963472+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2060 SPN-efc61adebd869688 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 5 We have been going for years and has never failed to disappoint even in the hottest temperatures or heavy rain. 448 559 standard R2.01 {O1.04} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R2.01+O1.04:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.964974+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R2.R2_01 2063 SPN-cd2613aa6fabfa17 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 8 I would highly recommend a few races here no matter the time of day it is always one of the highlights of our trip! 709 824 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.96872+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2064 SPN-190e294b68cdb39d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 9 Thank you to all of the crew here who never fail to offer the best service and giving the best experience! 825 931 standard P3.05 {R2.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.05+R2.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.969969+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_05 2065 SPN-cbaa708d37835c02 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 10 All of the best and look forward to our visit next week!! 932 986 standard R4.03 {} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:44.970837+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2066 SPN-b029127186b7370f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB 1 0 Very well organised. 0 20 standard J2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J2.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:52.422691+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2067 SPN-f7ea61576205b69a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB 1 1 Staff very helpful and friendly. 21 53 standard P1.01 {P2.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:52.42493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2068 SPN-21953dea6f1216d7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB 1 2 Karts are good and grades to your ability and age. 54 104 standard O1.02 {O4.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:52.42838+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2069 SPN-49859f08b3e9ae74 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB 1 3 Will go again. 105 119 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:52.431028+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2070 SPN-2bb9d2e3a1ee3465 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB 1 4 The roof top seating over looking the track and digital score boatf 120 187 standard E1.03 {E1.04} V+ I2 CR-N S2 A1 TC EI \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 medium URT:S:E1.03+E1.04:+2:21TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:52.432728+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2071 SPN-d541860a777764d1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB 1 0 Great venue, good customer service. 0 35 standard E1.04 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:E1.04+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:55.755317+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2072 SPN-0433413cdeb31bee Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB 1 1 Some of the younger staff speaks English well. 36 82 standard A2.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:A2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:55.757495+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A2.A2_02 2073 SPN-c1683de40fd2bbf9 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB 1 2 Has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in. 83 179 standard A1.02 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:A1.02+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:55.759605+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 2074 SPN-8f82951fae444202 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB 1 3 Parking is good, and accessibility by bike is good as it has a new bike lane going right by the track. 180 282 standard A4.02 {A2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:A4.02+A2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:55.76214+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_02 2075 SPN-862787af16a523f9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB 1 0 Great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just managed to drive her own kart (1 proud dad). Great fun 0 156 standard O1.01 {A3.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.01+A3.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:59.250407+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2076 SPN-722e6ef9c408a753 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB 1 1 very reasonable prices too 161 187 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:57:59.251958+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2077 SPN-53188ccb50cc96d5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNktTZkFnEAE 1 0 Great time Great price for all the family highly recommend will go again 0 72 standard V1.01 {R4.03} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.737888+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2078 SPN-4a32f746fae17c4e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNWak8zaUVREAE 1 0 Excellent circuit, staff very good, great fun and a must visit 0 62 standard O1.02 {P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.751249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2079 SPN-93d731614622d758 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURoaVo2d0t3EAE 1 0 Really fun place did a few 180 tough, and really funny and good personel 0 72 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.766428+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2080 SPN-7d4278611d3b8be1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURuLWFYV3lBRRAB 1 0 Outstanding track and karts you'll have a blast 0 47 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.778894+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2081 SPN-0b9713319e7b5835 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNaXJUSjhnRRAB 1 0 Perfect time to go is on a Wednesday as it it 2x1 (you pay once and your time gets doubled). 0 92 standard V1.01 {A1.01} V+ I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01+A1.01:+3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.817495+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2082 SPN-197e41f443d0a8d5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNudnFEOVpBEAE 1 0 Excellent Go Kart track, friendly staff, excellent location. 0 60 standard P1.01 {P1.01,A4.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+P1.01+A4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.830263+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2083 SPN-ab005624fde92d89 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNHanU3Tm1nRRAB 1 0 Took family for a birthday treat and they all had a great time, reasonably priced, 0 82 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.841868+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2084 SPN-d700bc9c9eefc690 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE 1 0 Loved this place. 0 17 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.852184+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2085 SPN-68aefe1caec827ae Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE 1 1 Could do with more time in track, but great fun. 18 66 standard J1.05 {} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:J1.05:±2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.854002+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_05 2086 SPN-089651329f11470a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1eU1lQkxBEAE 1 0 Well organised, not too expensive and great fun...especially at night 0 69 standard V1.01 {V1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:J2.01+V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.865376+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2087 SPN-7be47afb24b623bd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPMXNiUEd3EAE 1 0 Excellent fun time,even though my grandson almost lapped me 🏎😀🤪 0 63 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:01.875187+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2088 SPN-293bcae821660cd0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VNeXd1c1NtbV91bEF3EAE 1 0 Great track and experience! 0 27 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.261232+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2089 SPN-152a5ba108c45bb4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVbHE2MlZREAE 1 0 Great place. Staff are excellent. Fantastic track. 0 50 standard P1.01 {O1.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.273295+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2090 SPN-faaed39641a60dc5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJemRDMmZBEAE 1 0 Great fun good track.well run nice little cafe bar 0 50 standard O1.02 {J2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.284807+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2091 SPN-4bd73854b1346412 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRa2FqZEdREAE 1 0 12yr old and 7yr old on the F100 go carts. Had a brilliant time can't wait to go back. 0 86 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.296896+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2092 SPN-8c536256e0ad312d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBcU9IUDN3RRAB 1 0 Kids loved it. Fairly priced too. Great service 0 47 standard V1.02 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V1.02+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.309033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2093 SPN-635644c372b70331 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25Vd1VpMDNZVGxKUlMxclQyVldXVVExVkhaUVpsRRAB 1 0 Fabulous experience 0 19 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.76985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2094 SPN-8a21d4c15bbbf11f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVdU9iUmtRRRAB 1 0 so fun , enjoy it every time I go ! the new board is great :) 0 61 standard R3.01 {O1.02} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:R3.01+O1.02:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.7831+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_01 2095 SPN-5e467bc0bb655857 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURidXJtcjlRRRAB 1 0 Brilliant place, excellent for a family experience 0 50 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.796079+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2096 SPN-408dcec9508a6128 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURncHJyTEdnEAE 1 0 Nice, well organized and good track and carts. Good prices also 0 63 standard V1.01 {J2.01,V1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+J2.01+V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.807866+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2097 SPN-abfc11c6b4f8aa17 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKb1kyaWRREAE 1 0 Great place,, spotlessly clean and very friendly accommodating staff. 0 69 standard P1.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.819985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2098 SPN-dc0300d972739021 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNValptNmp3RRAB 1 0 Great fun track and good for smaller kids with them having the dual karts. 0 74 standard O1.02 {A3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+A3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.831068+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2099 SPN-d797cd29bb3ae025 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRLXZqUnhBRRAB 1 0 Great track. Carts for all ages. Friendly staff. 0 48 standard P1.01 {A3.02,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+A3.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.842566+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2101 SPN-975fc4a156c5ae50 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1bGZIYktREAE 1 0 Good course and all the carts in good order. Friendly staff 0 59 standard P1.01 {O1.03,P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O1.03+P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:02.866968+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2102 SPN-22fc9f96e423dee6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwcl9fX0J3EAE 1 0 Fun but very hard for us old people 😂 0 37 standard O4.04 {} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O4.04:±2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:03.16214+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2103 SPN-cb2100803d206f87 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB 1 0 Went on the off chance we could rise. Managed to get on the go carts. 0 70 standard A1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:A1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:03.455807+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 2104 SPN-19793ad11d9fdee3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB 1 1 Price was reasonable 71 91 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:03.458035+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2105 SPN-3e8b6246229c726b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB 1 2 good customer service 96 116 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:03.459979+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2106 SPN-ae527dc28731e937 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB 1 0 Great place. 0 12 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:11.41545+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2107 SPN-78c46d5bee2b3b4d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB 1 1 Go karts to suite everyone from kids aged 6+ to adults. 13 69 standard O4.03 {A3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O4.03+A3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:11.416375+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2108 SPN-929b9ca2d56bbac3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB 1 2 Kids are 8 euro for around 8-10 mins and on Wednesdays it's 2 for 1. 70 140 standard V1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:11.417266+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2109 SPN-01b5a083f633a3fa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB 1 3 They have a cafe which is reasonably priced. 141 185 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:11.418057+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2110 SPN-098a2f96bb83799e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB 1 4 All in all a great day out. Will deff recimmend.👍 186 232 standard V4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:11.418786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2111 SPN-803e73d390f0c731 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvb0l5RUZBEAE 1 0 Nice karting with the possibility that kids can race to on their own level 0 74 standard O2.03 {A3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:O2.03+A3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.276843+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2112 SPN-db53ff015e2c9823 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE 1 0 Very enjoyable racing today. Great track and great facilities with very nice guys. 0 82 standard O2.03 {E1.03,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03+E1.03+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.288005+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2113 SPN-b32aac5bd867dc11 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE 1 1 Definitely recommend 83 103 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.289171+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2114 SPN-b9b9a41ad586e836 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBN1lpel9BRRAB 1 0 Great track.. really quiet this time of year. Went 3 times during holiday​ and each time it was just us on the track. 0 117 standard O2.03 {J1.04} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+J1.04:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.302329+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2115 SPN-f81cf14a119bec84 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwcTZpWjV3RRAB 1 0 Good fun for all abilities and all ages from 4 yrs up. We'll organised. 0 71 standard A3.01 {J2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:A3.01+J2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.31437+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2116 SPN-821dd9b46839aec5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUREMnZmNjVRRRAB 1 0 The best place in the area for karting without a doubt, the staff are very friendly and professional. 10/10 0 107 standard P1.01 {P2.01,V4.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+P2.01+V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.32601+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2117 SPN-e2e5831bb3432993 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM3djh6YzRnRRAB 1 0 Brilliant go-karting. Track and karts are top class. Very friendly staff. 0 73 standard P1.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.337349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2118 SPN-1e33cf7381d9cac1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ5bXNhVEVBEAE 1 0 Great track, carts and Staff. Overall recomended 0 48 standard O2.03 {P1.01,V4.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03+P1.01+V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.349583+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2137 SPN-5973fd73057f451b Go Karts Mar Menor unknown google ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB 1 0 Good location great track 0 25 standard A4.01 {O2.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:A4.01+O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.279552+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2119 SPN-b37cb89a61cc0e58 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB 1 0 Health and safety standards are not very high witnessed 2 accidents and were only there for an hour 0 100 standard E4.01 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E4.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.361457+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2120 SPN-586fe9bd1624ddec Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB 1 1 Apart from that excellent track 101 131 standard O2.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.363072+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2121 SPN-618e3096f39ac975 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3eWItcUhnEAE 1 0 Very nice staff and a good track. Had a good time with the family, well worth a visit. 0 87 standard P1.01 {O2.03,V4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+O2.03+V4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.37492+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2122 SPN-62af1a7f99ef2555 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURqX1lDbnRnRRAB 1 0 Always good fun at go karts Mar Menor, well and truly beaten by my son this time 😁😁 0 83 standard V4.03 {} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.385422+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2123 SPN-98765c9c3014541b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPMExiaVhnEAE 1 0 Good fun Good time fantastic place 0 34 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:12.749532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2124 SPN-7c550929d320b39c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1eTlIb0pnEAE 1 0 Super track. Very professional team. 0 36 standard P1.01 {P2.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03+P2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.039298+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2125 SPN-ebf964ff84f7fd51 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXMzlpTUdnEAE 1 0 My 2 grandchildren loved this place. Reasonable prices and a good track. 0 72 standard V1.01 {O2.03,V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+O2.03+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.10993+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2126 SPN-7ffc0264e78852a9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNnd192X3BRRRAB 1 0 Great place especially when they have the deals on 👍 0 52 standard V1.01 {V4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:V1.01+V4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.121542+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2127 SPN-cdfca85da8ac47bc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE 1 0 Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to another venue. 0 108 standard V1.01 {J1.02,R1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:J1.01+J1.02+R1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.132669+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2128 SPN-613b140fcefc6b89 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1elBxWnhRRRAB 1 0 Good facility, helpful staff. Nice little cafe, good gokarts, and covered area to watch from. 0 93 standard P1.01 {E1.03,O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.03+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.161401+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2129 SPN-444e83f73290500a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRM2Z2amRnEAE 1 0 Great track, fast carts. Trust me, 10 mins is plenty on these carts. You'll be wrecked 0 86 standard O1.02 {O2.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.173797+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2130 SPN-67d3d03b6e2ef72b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0UmIySnZlR05FUldrME9UTkdjM2xUTjAxU09WRRAB 1 0 Kids love it there 0 18 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.185063+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2131 SPN-f49a25ff23e57454 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURiNWVIeWdRRRAB 1 0 My grandson really enjoyed it well worth a visit. 0 49 standard V4.03 {V4.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.195955+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2132 SPN-ce1e2dd119faec20 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRaS1XM0FREAE 1 0 Fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plenty of poke. I will be visiting again before I leave fingers crossed. 0 168 standard O2.03 {P1.01,O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+P1.01+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.207127+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2133 SPN-46a3431e14c0f257 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1eWJ2aGh3RRAB 1 0 It's a great 8 mins spent We really enjoyed it will come back soon 0 66 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.218625+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2134 SPN-040bc5c70d22f1b8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwd0pidkVBEAE 1 0 Always great to come back. Been waiting 4yrs..All fun for all the family. 0 73 standard R3.04 {V4.03} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:R3.04+V4.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.230183+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 2135 SPN-cb906f3410238b20 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRaDRlY21BRRAB 1 0 Jus been to the Go Karts at Mar Menor..1st class professional and well marshalled circuit.....Great value for money ....and fast karts....loved it. 0 148 standard P1.01 {P2.01,O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01+P2.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.259145+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2136 SPN-484ccabd089ca4a7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM1b2U3RXpnRRAB 1 0 We go everytime we'rein Spain, Go-Karts on a track exactly what you'd expect. 0 77 standard J3.01 {} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:J3.01:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.269515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 2138 SPN-1747c24c0026d700 Go Karts Mar Menor unknown google ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB 1 1 ....thou no pre safety talks like uk... Just get in kart and go 25 89 standard E4.01 {} V- I2 CR-W S3 A3 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E4.01:-2:33TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:13.281951+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2139 SPN-a8f5e2357d678f29 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1aDRhNXVBRRAB 1 0 Great place to enjoy on holiday, not too expensive 0 50 standard V4.01 {V1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:15.646109+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2140 SPN-8cba8d40bfded762 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE 1 0 Came here whilst on holiday in April and loved it. My boys had such a fab time and haven't stopped going on about it. 0 117 standard O1.05 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:16.68751+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2141 SPN-4207252fdc727470 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE 1 1 My youngest had to go round on his own because he was the youngest in our group but he had extra laps and was so happy. 118 237 standard O4.02 {P3.02} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O4.02+P3.02:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:16.690788+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_02 2142 SPN-9bd7df35e569d13e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE 1 2 Really easy to find, you can either pre book or pay when you arrive. 238 307 standard A1.04 {J2.01,A4.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A1.04+J2.01+A4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:16.693161+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_04 2143 SPN-fe94b0c1e4707dbf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE 1 3 Choosing from a variety of different go karts, drinks and snacks available not sure about any other food options. 308 422 standard O3.02 {} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 medium URT:S:O3.02:+2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:16.695259+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2144 SPN-90c5ced8aade8eaa Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE 1 4 We will definitely be returning when we visit next. 423 472 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:16.697789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2145 SPN-5acd7e85f660bc9e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1dk9hMUl3EAE 1 0 Absolutely brilliant!! Well organised, reasonably priced and the kids loved it as did the adults!! A fun activity to do whilst away on holiday xx 0 145 standard V4.01 {J2.01,V1.02,O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+J2.01+V1.02+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:20.476505+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2146 SPN-b3d9c664bf51002e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB 1 0 Great circuit, not very crowded and has the best price around. 0 62 standard V4.01 {E1.04,V2.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.01+E1.04+V2.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:21.453295+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2147 SPN-f7e6d9722955335d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE 1 0 Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25 minute drive… 0 115 standard A1.01 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:A1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:23.949151+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_01 2148 SPN-8ce2d48294a864a9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE 1 1 and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. No mention of needing to reserve 116 246 standard A1.02 {V2.03} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:A1.02+V2.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:23.950819+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 2149 SPN-9e163b279829c9bb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNHdDQ3Q1ZBEAE 1 0 Best lap in the area they say and best that I have seen myself. It's just great. All kinds of karts, 100, 300, 300, 400 cm2. This is the place to go to have super good karting experience 0 186 standard O1.02 {O3.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O3.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:23.961246+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2150 SPN-0e54267e5fc936c3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE 1 0 Granddaughter is rating this , she is nine and says the go carts went fast , lots of laps 0 91 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:23.990571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3988 SPN-10c089921c47ffd5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXeXRxdnlBRRAB 1 0 Bueno 0 5 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.893142+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2151 SPN-7ef5f8f042496534 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE 1 1 and the chappie was nice who put her helmet on 92 138 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:23.992276+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2152 SPN-db7e8157ef0aa82f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE 1 2 Nice place 139 148 standard E1.04 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 medium URT:S:E1.04:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:23.994118+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2153 SPN-746f052fca4d610c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURaMXBxZTVRRRAB 1 0 Took my daughter for her first time karting here. We all had a great time. Would go again definitely. Muy Bien. 0 111 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.005209+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2154 SPN-0a7ca6fed44b3f1e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201UU1YcDVTVzFOTVRocFJrVnpWbkUyYTFoMU5XYxAB 1 0 Good real race track. Proper kerbs on all corners. 0 50 standard O2.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O2.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.016483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 2155 SPN-9ccd4ddb83c9ed07 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURHNDlXN2tBRRAB 1 0 Take the kid a few times a months all the staff are first rate...have now joined a group to race at the track again well organised and friendly/helpful staff 0 157 standard P1.01 {J2.01} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+J2.01:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.026622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2156 SPN-27bbb0207adee35e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE 1 0 Incredible fun. 0 15 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.036417+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2157 SPN-002e91915e3f199a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE 1 1 For around €20 you can get in 8 long laps on an excellent track. 🤩 16 82 standard V4.01 {O1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01+O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.037957+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2158 SPN-b2fd6047831d5108 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNneUplNFp3EAE 1 0 Great Team there, very friendly. good prices.first 3 Winners get a medal 💪✌️we had an team. event with our football club. 0 121 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.048241+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2159 SPN-d530d6d7fc8b8074 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRbHYtRzVBRRAB 1 0 Took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. Great fun . Highly recommended. 0 116 standard V4.03 {} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.085255+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2160 SPN-b4daa960b9a3ea95 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZa1p2MmxnRRAB 1 0 Great range of karts including 2 seaters for children up to 5 to go with a parent. Really friendly staff, all in all a fabulous way to spend a few hours. 0 155 standard P1.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.117662+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2161 SPN-e14e8bda09b1324c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwdl8zVHFBRRAB 1 0 Fantastic place! A good range of karts and a nice long outdoor track with food and drink on site. Great fun for all the family. 0 127 standard O3.02 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.129375+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2162 SPN-cb61ab3685ad357e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwenZ2QWp3RRAB 1 0 Great fun if your at a loose end. Cheap fun. Friendly staff. Definitely worth a go 0 83 standard P1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.140349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2163 SPN-d560ee0edf94c51f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwaHV5aVFBEAE 1 0 Very nice place to enjoy a spare hour. For all ages. Good prices. Staff ok 0 74 standard V1.01 {E1.04,P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+E1.04+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.151177+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2164 SPN-f44d8a520b0ac97f Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2poMFFXUjBRM04wYWtwRUxXTjRNVmR6TWtrd1QxRRAB 1 0 Brilliant day for adults and kids. 0 34 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.163365+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2165 SPN-9cb1069c8a8d091b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE 1 0 Karts for all ages, nice circuit and friendly staff. 0 52 standard P1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O3.02+P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.176375+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2166 SPN-a0ea419f8bd7b04e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE 1 1 You should make a reserve if you don't want to wait 53 104 standard A1.02 {} V0 I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:A1.02:01:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.178348+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 2167 SPN-8f5e726d0cf92ccd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMwcU5lbmZREAE 1 0 Cool place to race. I was surprised by variaty of cars available. I can't hardly imagine to ride their fastest model without some experience. Price was decent. 0 159 standard V1.03 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.189086+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_03 2168 SPN-4346dd445f855e6d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE 1 0 Friendly staff with a good choice of go karts. 0 46 standard P1.01 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.218418+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2169 SPN-1edf33366a4992fe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE 1 1 Great fun, 5/6 laps in total and the go kart I used (f-300) had plenty of power, hands were aching by the end. 47 157 standard O1.02 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.220231+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2170 SPN-1a938802d1f8655e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNvOVp1MTJnRRAB 1 0 Great fun, well run and organised. Give it a go. 0 48 standard J2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:J2.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.23205+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2171 SPN-3b29e2d363953fe6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4OC1XLWxnRRAB 1 0 Such a great experience from enquiring about our Stag event, through to looking after us ensuring everyone had an amazing time. 0 127 standard P3.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.2433+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2172 SPN-077bfb0bab54e636 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURrbi1TTkVREAE 1 0 Absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car to get there 0 113 standard V4.03 {A4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03+A4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.254348+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2173 SPN-36d9bc34e80f83a7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNHbXBhQ2V3EAE 1 0 Proper karting track and decent karts. Staff all quite friendly and I thought it was good value for money. Various levels of karts. The 2seater karts for kids were great fun too. 0 178 standard P1.01 {O3.02,P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01+O3.02+P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.28408+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2174 SPN-6e798b2a4db2bcfd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnN003a05BEAE 1 0 Top place to go staff are very helpful and are a great laugh. They have an amazing track and it's fun for everyone 0 114 standard P1.01 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.295078+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2175 SPN-d9caeb132ae3d1a4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE 1 0 Fun.. 0 5 standard V4.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.306419+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2176 SPN-af14aa921d2c7a8a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE 1 1 but the steering wheel was so hard to move so it really hurt. Last 2 minutes was living hell for my under arms 6 116 standard O1.02 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.308053+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2177 SPN-653b304d8728f826 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE 1 0 Great fun for the children and the adults enjoyed it too! 0 57 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.319728+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2178 SPN-be6e52379d73789b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE 1 1 Only criticism was that they don't give you long enough on the track! 58 127 standard V3.01 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V3.01:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.321716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V3.V3_01 2179 SPN-c2e9af59c220b757 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPOUlEVkxnEAE 1 0 We had a nice time together with friends. Nice variety of karts for different skills. Not expensive, lot of fun. 0 112 standard V4.01 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:24.334945+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2180 SPN-e2ffecb981c2a813 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB 1 0 Very fun track where you can have some good races with your friends 0 67 standard O1.05 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O1.05+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:25.670659+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2181 SPN-97434c12f3cfafbf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE 1 0 Lots of fun, great track. 0 25 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:31.879711+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2182 SPN-d4d0a41a0e070211 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE 1 1 Following all hygiene rules. 26 54 standard E4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:31.881201+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 2183 SPN-cc7940eeb22a8e99 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE 1 2 The karts are fast and some of the bends tricky. 55 103 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:31.882262+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2184 SPN-54d65b1e234ce40e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE 1 3 The staff were friendly, helpful and safety focused. 104 156 standard P1.01 {P3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:31.883122+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2185 SPN-9ceb46cb0634cc3c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE 1 4 Would take the family again. 157 185 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:31.88388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2186 SPN-6ce8edbcfa6cdbae Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB 1 0 They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD FRIENDS AND FAMILY TRAVELING FOR HOURS TO BE THERE FOR MY SONS BIRTHDAY😡. 0 173 standard R1.01 {R1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-12-31 01:52:39.833374+00 high URT:S:R1.01+R1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:34.833956+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_01 2187 SPN-e4ba127f92459501 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB 1 1 WHAT A LIE....WHEN I RANG I GOT HUNG UP ON.possibly Wanted the day off because we were probably the only persons arriving on the day. 174 308 standard R1.01 {R1.01} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-12-31 01:52:39.833374+00 high URT:S:P1.02+R1.01:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:34.839909+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_01 2188 SPN-4688cc485e980f34 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB 1 2 Most important they text me.They hadn't the decency to call Us!! 309 370 standard P1.02 {P4.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-12-31 01:52:39.833374+00 high URT:S:P1.02+P4.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:34.842305+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2230 SPN-68427b77849178b9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURReW9LbXFBRRAB 1 0 Who doesnt like a go kart? Top value and fun 0 44 standard V4.01 {O1.05} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01+O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.051752+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2189 SPN-19b475c13a100483 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBMXBTZHhRRRAB 1 0 We had a great meal here tonight. Lovely food and excellent service !!! 0 71 standard O2.03 {P3.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:O2.03+P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:36.142947+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2190 SPN-c7ee8d435572c981 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB 1 0 Been coming here once a year since about 2019 0 45 standard R3.03 {} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R3.03:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:43.691753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_03 2191 SPN-f5ea773fbde6748c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB 1 1 now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs that track each kart when races are going on. 46 193 standard E1.04 {P1.01,A1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04+P1.01+A1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:43.693917+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2192 SPN-bef9972816b07d32 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB 1 2 You definitely feel the speed jump on the F300s 194 240 standard O1.02 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:43.695622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2193 SPN-3428b831ee5a75ae Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB 1 0 Nice place.. very friendly family run business. 0 47 standard P1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:46.153157+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2194 SPN-375c4c12c72a5db4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB 1 1 Good for children and adults. 48 77 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:46.154282+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2195 SPN-2d1eca4aed8c5a15 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB 1 2 Not normally a long wait. 78 103 standard J1.01 {} V+ I2 CR-N S1 A1 TR ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:J1.01:+2:11TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:46.155332+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2196 SPN-a5544ac23537e419 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB 1 3 Good prices 104 115 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:46.15635+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2197 SPN-f2afba7c11b8dbf7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB 1 0 Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace 0 88 standard O2.02 {O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O2.02+O3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:50.069743+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2198 SPN-de5de008533d7c04 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB 1 1 free entry you just pay to race 93 124 standard V1.01 {V1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V1.01+V1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:50.072377+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2199 SPN-c786cc7dc3310a71 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE 1 0 A fun place for drivers and spectators alike. 0 46 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:56.769355+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2200 SPN-9e2aa2debcff5fed Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE 1 1 Has a viewing terrace and a bar for a coffee or beer. 47 99 standard O3.02 {E1.03} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:O3.02+E1.03:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:58:56.771001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2201 SPN-c4308f45d13f0248 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 0 Great GoKart racing track next to Murcia airport, San Javier. 0 61 standard O1.02 {A4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+A4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.939087+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2202 SPN-e08b74c6836e328d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 1 Decent sized track, well laid out and a challenge for novices and experienced 'GoKarters'. 62 152 standard O2.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O2.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.941494+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2203 SPN-6739c1ca59c0080d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 2 They have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young child passenger) the races are segregated as much as possible so the younger, novice riders in 100cc karts and 2 person karts race together. 153 390 standard O3.02 {O4.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O3.02+O4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.943372+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2204 SPN-be76eb7efa54049f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 3 I have tried 200 and 300cc karts and both are great fun. 391 448 standard O1.02 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.945304+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2205 SPN-5146fde76f1eb8fb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 4 The race marshalls are very quick to deal with any spin offs or breakdowns. 449 524 standard P2.02 {J4.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P2.02+J4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.946716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 2206 SPN-ab55c5bf92bbe327 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 5 The track is about 1km long and a decent time for a 200/300cc kart is around 1 minute per lap so average 60km/hr. Very fast when you are only a few centimetres off the ground ! 525 703 standard O1.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.948018+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2207 SPN-0d6adce0d45e9658 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 6 There is a cafe / bar which serves soft drinks, coffee, wine and beer along with snacks. 704 793 standard O3.02 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O3.02:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.949284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2208 SPN-d169442d1a532744 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 7 The staff are friendly and they have a lovely old dog who plods around the bar area. 794 879 standard P1.01 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:06.950482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2213 SPN-d5f92f57f850ec9e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE 1 3 En los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el atardecer, porque no hace tanto calor. 293 431 standard A1.02 {E2.03} V0 I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:A1.02+E2.03:02:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:10.634042+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 2214 SPN-76627ca829cb6b51 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE 1 4 Y está abierto hasta las once de la noche. 432 474 standard A1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:A1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:10.636237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_01 2215 SPN-713c93b175dc0b05 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE 1 0 Great fun 0 9 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.889448+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2216 SPN-26c9e050dfaf7873 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE 1 1 expensive at 19 euros for 8 minutes 14 49 standard V1.01 {V4.01} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.01:-2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.891972+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2217 SPN-510ea1acb04a5466 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBaWJHUG53RRAB 1 0 Great fun and friendly 0 22 standard P1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.05+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.905592+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2218 SPN-dd592bf7c0a00d6e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnc3NUVjZBRRAB 1 0 Very good track. Lots of different levels of cars to choose from. 0 65 standard O2.03 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.917303+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2219 SPN-77b0297ea87f2dfb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnaWFTcFhnEAE 1 0 Great track and selection of karts. Good viewing areas and toilets 0 66 standard O2.03 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.92927+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2220 SPN-a04aaa95de6f492d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNZc011d2RBEAE 1 0 Friendly staff. Great track. Go there! 0 39 standard P1.01 {O2.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.941289+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2221 SPN-54ca9854a9e03194 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxNXNubWlRRRAB 1 0 Friendly and service minded personal, spend a day here and never brake. 0 71 standard P1.01 {P3.01,O1.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01+O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.954471+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2222 SPN-9adf3513b47a9df7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtb3JYLTZ3RRAB 1 0 Great afternoon out, brilliant value and awesome track 0 54 standard V4.01 {O2.03,O1.05} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01+O2.03+O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.966999+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2223 SPN-4e869f9de5cec91d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB 1 0 Great track 0 11 standard O2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.97983+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2224 SPN-b75249e2dac4d6ca Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB 1 1 not much time for your money 13 41 standard V4.01 {V1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+V1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.981598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2225 SPN-ce8ce2081e2e62c6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVbGZPRFRBEAE 1 0 Decent karts, minimal wait and friendly staff. Would def go again. 0 66 standard P1.01 {O1.02,J1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+O1.02+J1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:15.993354+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2226 SPN-dcc7e3db4b922f6d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVZzg3U19RRRAB 1 0 Great track and several carts to choose from 100 to 400cc 0 58 standard O2.03 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.005263+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2227 SPN-ea432d57dd27fb49 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBMy1UdW1nRRAB 1 0 - fun for all the family and best prices in the area. Vroom Vroom 0 66 standard V1.01 {O1.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:V1.01+O1.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.018467+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2228 SPN-056a4d5e5395376b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4X19EbnpBRRAB 1 0 Nice place to take children big and small xx 0 44 standard O4.04 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O4.04+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.029746+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2229 SPN-0fd2859d0d31435c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3bktDRVV3EAE 1 0 Very professional good and fast go karts 0 40 standard P1.01 {P2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+P2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.041068+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2231 SPN-87b0f7cf72356b70 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNbU5PeGZnEAE 1 0 Perfect for 'kids' of all ages. Friendly atmosphere. 0 52 standard P1.01 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O4.04+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.061375+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2232 SPN-98c6181ee20f3207 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1bUoyMXpRRRAB 1 0 Such a fun amazing experience for all the family xxx 0 52 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.072045+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2233 SPN-a9783d8350d2ac4d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVMHJ6cElBEAE 1 0 Great place to take the kids but as good for adults 0 51 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.082106+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2234 SPN-2ce1084131a36285 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNEdFlyVURnEAE 1 0 Very good value and well organized. 0 35 standard V4.01 {J3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.01+J3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.092813+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2235 SPN-fc802a51fdd20a16 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNjc3ZhVEN3EAE 1 0 Good fun, well organised. Worth a visit. 0 42 standard O1.05 {J3.01,V4.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.05+J3.01+V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.10504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2236 SPN-40e287fd8514ce2e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQwa3ZmY1NREAE 1 0 Great day out, well organised and nice facilities. 0 50 standard O1.05 {J3.01,E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05+J3.01+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.114739+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2237 SPN-cfeecc6fa2b0d114 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE 1 0 Ideal for kids starting out 0 27 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.124875+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2238 SPN-807b8786e00985db Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE 1 1 you will need a car to get there though 29 68 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:A4.01:0:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.126055+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2239 SPN-5776d86e195f0fbd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVc2NDVkhREAE 1 0 We loved it couldn't get Conor of the track 0 43 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES Conor customer conor \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.135508+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2240 SPN-11abc09b875dcb2d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNudWFtSEZBEAE 1 0 Loads of fun at a reasonable price 0 34 standard V1.01 {O1.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.146752+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2241 SPN-86378e4d060d735e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnMEtfajR3RRAB 1 0 This was on my husbands bucket list. He really enjoyed it 0 57 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.156803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2242 SPN-3cc76f5b7778f40a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNdDR6LUdnEAE 1 0 Loved it great place fun for all the family 0 43 standard O1.05 {O4.04} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05+O4.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:16.166995+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2243 SPN-697ce54a9de966c5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNzlhZnNBRRAB 1 0 Fantastic place to take the big kids and even the small kids 0 60 standard A3.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.486161+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2244 SPN-01029f78c6f1ff34 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1b3ZhSFZnEAE 1 0 Love this place visit every year we are over 0 44 standard R4.03 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.505893+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2245 SPN-f614347bfe49ef48 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwN0tpNWJ3EAE 1 0 This is great for the kids definitely go back again and again 0 61 standard A3.01 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:A3.01+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.520362+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2246 SPN-01eb693dc71b1533 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURONnQ3OUdnEAE 1 0 Good karts and the track was big and amazing 0 44 standard O1.02 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.535862+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2247 SPN-902fe42320831c6a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURMeThibU9nEAE 1 0 Good price, nice ride. 0 22 standard V1.01 {O1.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.551029+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2248 SPN-1f1c2800c6c4e787 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdVpPbTFnRRAB 1 0 Quite loved the experience the go parts were so fast!!!! 0 56 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.564789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2249 SPN-5de5fb9c551c5509 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNZNC1QeU1BEAE 1 0 Nice service, nice track and nice staff. Will be back 0 53 standard P1.01 {E1.03,R4.03} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.03+R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.579022+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2251 SPN-a85a7fbb531ec86b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM5LVBDTmp3RRAB 1 0 Very good people and very good installations 0 44 standard P1.01 {E1.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.608442+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2252 SPN-d66aeb4b07b9fbcb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVOS1LZTBRRRAB 1 0 Great place to go and best prices for the karts by far 0 54 standard V1.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.622317+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2253 SPN-0045ef2f63bc77a4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZM2FmSTVRRRAB 1 0 Nice outside track. Choice of f300 and f400 karts. 0 50 standard O3.02 {E1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.636204+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2254 SPN-71f3fcd283f8081b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR5bG9TNVRBEAE 1 0 Great set up, very friendly and helpful. 0 40 standard P1.01 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.653649+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2255 SPN-0f9717c8a991845e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVcU42X0VBEAE 1 0 good value for money. kids love it 0 34 standard V4.01 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.666933+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2256 SPN-6ba085cf6f80f654 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2MjcyajdnRRAB 1 0 Superb! Great fun and well organised 0 36 standard J2.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:J2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.680653+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2257 SPN-0ecc1968c3ae9ec9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURndElHU0NREAE 1 0 Fun little go kart track, great for all ages 0 44 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.693563+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2258 SPN-a5527599b4fdc368 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtOE5TYzRRRRAB 1 0 Very clean and well organised. 0 30 standard E1.01 {J2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:E1.01+J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.718634+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2259 SPN-7449b4bd404385ff Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBcE9pWGpBRRAB 1 0 Fantastic morning all of us really enjoyed it. 0 46 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.810603+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2260 SPN-73f562a3d9d1398f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNMGRENkh3EAE 1 0 The best go kart place close to Torrevieja. 0 43 standard V2.05 {} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V2.05:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.833066+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_05 2261 SPN-b9062b8e9deee5e7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURzLVBpaFJ3EAE 1 0 Reasonable prices, friendly staff. 0 34 standard P1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V1.01+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.888723+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2262 SPN-0a61f3de72260e7d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRNktIaEZ3EAE 1 0 Great track with very helpful staff 0 35 standard P1.01 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.90546+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2263 SPN-5ad73ca8e18d1c1c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQwcmJPZ1RREAE 1 0 Very nice employees, nice race track! 0 37 standard P1.01 {E1.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.955541+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2264 SPN-cba03d9e84226fe0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnck1MS0FnEAE 1 0 Very good not busy got straight on 0 34 standard J1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:J1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:17.98856+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2265 SPN-1e91aae13e73fecd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVMzZiNGNnEAE 1 0 Very good enjoyed it alot 0 25 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:18.033381+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2266 SPN-4858ce27776ea0e2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNlNzlYdm13RRAB 1 0 Was there several times. Karts are fast. 0 40 standard O1.02 {} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:18.061345+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2267 SPN-e59faddac9a4a1a9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM3N0pMcGhRRRAB 1 0 Always a nice experience. 0 25 standard R2.01 {} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:R2.01:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:18.083363+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R2.R2_01 2268 SPN-cb3796cdac30d99a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB 1 0 Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto, muy juen trazado, escapatorias perfectas 0 170 standard E1.03 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:E1.03+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.40177+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2269 SPN-391e5b370de23af9 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB 1 1 la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era muy agradable el tacto 172 293 standard O1.03 {O2.01} V- I1 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:O1.03+O2.01:-1:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.403705+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2270 SPN-98b9c9f58c8a69f4 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB 1 2 pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto 295 368 standard P1.01 {R4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P1.01+R4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.40596+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2271 SPN-03c292a04feaf80e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE 1 0 Kids both loved it and already want to go back. 0 47 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.555045+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2272 SPN-0c2896b3290a5b7c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE 1 1 5 types of car. Slowest are F100 (6yrs+) and Tandem (for adults and kids 6 yrs+) which go around together. These were 8 euros for 8 minutes. Next up are F200 (min age 12) 12 euros / 8 mins; and F300 (min age 16) 17 euros for 8 mins. Then fastest for adults only are F400s, which are very fast. Depending on numbers sold F300s normally race with F200s or F400s. 48 408 standard V1.01 {V1.01} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+V1.01:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.556613+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2273 SPN-0958a71e8e4691b4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE 1 2 Track is large 1100m with several corners. Fastest lap times are sub 1 minute for fastest cars. 409 505 standard O1.03 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.03:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.558303+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2274 SPN-4b20d939d610603d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE 1 3 There is a very good electronic leaderboard and split timing measuring your fastest lap and gap to car in front. 506 618 standard O3.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.56059+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2275 SPN-14f962a102b4cf81 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE 1 4 Overall very good and will probably go back. 619 662 standard V4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:20.574536+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2276 SPN-3df021ae83583852 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnc3JhellnEAE 1 0 Great track, well run! 0 22 standard O1.02 {J3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+J3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.532808+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2277 SPN-bcea35114dbba10e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURtOFp2aXBnRRAB 1 0 Nice place, reasonably priced. 0 30 standard V1.01 {E1.04} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+E1.04:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.54665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2278 SPN-a008829e953a515d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKOE1EVUJnEAE 1 0 Great karts and awesome track 0 29 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.560622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2279 SPN-56ac4ee6d22aaf97 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1OXR5b0d3EAE 1 0 Another brilliant time , thank you. 0 35 standard V4.03 {} V+ I3 CR-N S1 A1 TR ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.573222+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2280 SPN-f454c15264c80775 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzNkxuUDdBRRAB 1 0 Turned up, drove carts, good times 0 34 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.58532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2281 SPN-aa04f380712f8af7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRd3NHek5nEAE 1 0 Great morning & safe staff 👌 0 28 standard E4.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:E4.01+P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.597123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2282 SPN-7f572e54798bad3a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVOXJyMjV3RRAB 1 0 Great place for all ages 0 24 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.608769+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2283 SPN-6d280da798e9141f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZbDZUUmdBRRAB 1 0 Perfect go karts.. Friendly staff 0 33 standard P1.01 {P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.6239+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2284 SPN-89e8d47471a7a920 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNQMklIUUR3EAE 1 0 Excellent track. 0 16 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.63598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2285 SPN-622499ad115beed4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCOXQtVUZnEAE 1 0 Great stuff, great circuit 0 26 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.649085+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2286 SPN-abed95e0b1be663e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNCaWNqZ0RREAE 1 0 Very good cars and track!!!! 0 28 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.661397+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2287 SPN-02d71a683e3b2994 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVcnFla013EAE 1 0 Relaxed atmosphere great fun 0 28 standard E1.04 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.673921+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2288 SPN-c94584d689e1bfad Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURONklMN2F3EAE 1 0 Just so good. 0 13 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.685345+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2291 SPN-fb8f84c39019a5db Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLMElTay1BRRAB 1 0 Good circuit ,well run 0 22 standard O1.02 {J3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+J3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.722424+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2292 SPN-24dd564700fd9714 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlLVllR01REAE 1 0 Great day 0 9 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.735085+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2293 SPN-30a2bc0c371e90e1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVME5tc1dBEAE 1 0 Great for all ages 0 18 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.746779+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2294 SPN-56377385aea5f960 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR3dk9DN0dnEAE 1 0 Very good karts good track 0 26 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.758858+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2295 SPN-fdcede2a3ab3552f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNzOGF5cEZnEAE 1 0 Great fun great place 0 21 standard V4.03 {E1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03+E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.770864+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2296 SPN-3726035bf69d4cfc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURyblozTGF3EAE 1 0 Best on the coast 😃 0 19 standard V4.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.784772+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2298 SPN-bf8d53b98d95f016 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVbzV2NjRnRRAB 1 0 Well run and good carts. 0 24 standard J3.01 {O1.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:J3.01+O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.808403+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 2299 SPN-eee62b6e650c1007 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1ZzZhVVdBEAE 1 0 Another great experience 0 24 standard V4.03 {} V+ I2 CR-N S1 A1 TR ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.823723+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2300 SPN-641e37b6e43e4174 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNvNzhlUkt3EAE 1 0 Very good track 0 15 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.838617+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2301 SPN-e8d7bd0a247bb751 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB 1 0 Estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba para tener una perspectiva más amplia. 0 137 standard E1.03 {O2.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.03+O2.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:24.875282+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2302 SPN-866ab955c4dfb471 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB 1 0 Great track with performing karts! 0 34 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:28.898606+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2303 SPN-53e137652a1c133d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB 1 1 The twin brothers are doing a great job to give you a real racing experience from beginner to advanced drivers. 35 146 standard P2.02 {O4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P2.02+O4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:28.901306+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 2304 SPN-f982699d7e441b17 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB 1 2 Also good covid rules and disinfecting of karts and helmets. 147 207 standard E3.04 {E1.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E3.04+E1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:28.903403+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_04 2305 SPN-d71d0c3ed0556295 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB 1 0 Hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable. 0 80 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:37.911159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2306 SPN-4872f069e9e608d8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB 1 1 Las medidas higiene son visibles en todo momento. Cuando la gente deja los cascos le aplican un spray para la desinfección. Las mesas de la terraza son limpiadas en el momento que se dejan libres. 81 277 standard E4.03 {E1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E4.03+E1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:37.914896+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 2307 SPN-c39e0a3afc5e6f13 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB 1 2 La gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad. 278 393 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:37.917057+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2308 SPN-1577c898baad625d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB 1 3 El circuito y los coches estupendos. 394 430 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:37.918774+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2309 SPN-e6f5c6caffcb3997 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB 1 4 Sin duda volveremos a celebrar algún otro evento con ellos. 431 489 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:37.92065+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2310 SPN-153bffd026705512 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB 1 0 Brilliant place. 0 16 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:41.347372+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2311 SPN-79c7f0079d4b6401 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB 1 1 Lovely staff, very helpful and friendly. 18 59 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:41.348495+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2312 SPN-249e9e996ffeb2c9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB 1 2 Very very reasonable rates. 61 88 standard V1.01 {V1.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01+V1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:41.349364+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2313 SPN-6f25fa0120c10fe5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB 1 3 Will definitely go back with the grandchildren. 90 137 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:41.350237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2314 SPN-bf0debd80eb2f4a7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB 1 4 Food good too. 139 153 standard O2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:41.351232+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2315 SPN-edec4e1c189fe6ed Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE 1 0 Lugar fantástico, situado en uno de los lugares con más encanto de España, el mar menor, en el término municipal de San Javier, no necesita apellidos. 0 152 standard A4.01 {E1.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:A4.01+E1.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:48.613434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2316 SPN-fc4791d96993d322 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE 1 1 Con una amplia terraza donde tomar algo. 153 194 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:48.616008+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2317 SPN-7867f6c98b9981c5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE 1 2 De fácil acceso y un circuito genial para entrenamientos y competiciones. 195 269 standard A4.01 {O1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:A4.01+O1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:48.618658+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2318 SPN-757d9c81d138b3e6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE 1 3 Lo recomiendo. 270 280 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:48.621395+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2319 SPN-506c76dcb9d2c82c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB 1 0 Excellent , staff friendly and courteous 0 40 standard P1.01 {P1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:50.048662+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2320 SPN-0b349050076f7126 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB 1 1 great choice of karts for all ages 42 76 standard O2.02 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.02+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:50.052249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2321 SPN-e9f45eb7f1ce225d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB 1 2 If your part of a group and you decide not to go on a kart there is a Nice seating area to get a Drink or just chill and watch 78 206 standard E1.02 {E1.04} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.02+E1.04:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:50.054509+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_02 2322 SPN-cf0b10a4df4acdea Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB 1 0 Staff are really helpful 28 52 standard P2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:59.788504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_03 2323 SPN-65effd915e249d89 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB 1 1 Everyone had a blast. 54 75 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:59.790805+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2324 SPN-04f7d57762bd4bf6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB 1 2 Great value 76 87 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:59.792392+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2325 SPN-086a19cc81022557 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB 1 3 Will definitely be back & would highly recommend. 100% 89 144 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 09:59:59.794461+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2326 SPN-3393a331a555a66b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE 1 0 Circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras. 86 251 standard P1.01 {O1.02,E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:00.958447+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2327 SPN-f5493a1cf62e5167 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE 1 1 Nosotros cogimos los de 300 recomendados por la mujer que nos atendió. Me gustó que su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero, porque nosotros queríamos los de 400. 252 465 standard R1.02 {P2.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R1.02+P2.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:00.960436+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 2328 SPN-e318b04d120f1bef Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE 1 2 Los karts funcionan bien y la pista también estába bien asfaltada. 466 533 standard O1.01 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:00.962564+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2350 SPN-56ff563ae9e16cc3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4djlHcWxRRRAB 1 0 "Don't crash" 0 13 standard E4.01 {} V0 I1 CR-N S1 A2 TC EI \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 medium URT:S:E4.01:0:12TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.677149+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2329 SPN-a09066df4d867b00 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE 1 3 Yo disfruté muchísimo. Más de lo que esperaba. 548 592 standard V4.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:00.964534+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2330 SPN-95ef09b687ba1bdd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE 1 0 Pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. He estado en otras pistas indoor y esta es la que más me ha gustado con diferencia. 0 169 standard O1.02 {O1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.586887+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2331 SPN-10c4886efef7c263 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE 1 1 Disponen de un parking amplio y una terraza con sombra mientras se espera. 170 245 standard A4.02 {E1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:A4.02+E1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.589564+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_02 2332 SPN-cab295aa74bb687d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE 1 2 Remarcar el personal amable. 246 272 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.59149+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2333 SPN-7df8c48dba01908f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE 1 0 Really good experience 0 22 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.983081+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2334 SPN-005d19bcd59af74d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE 1 1 proper go karts super track 25 52 standard O1.02 {O2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+O2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.98534+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2335 SPN-612bafe4ccddaf07 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE 1 2 friendly faces and great service 53 85 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.98735+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2336 SPN-3790a5373b69e937 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE 1 3 at a great price 86 102 standard V1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:09.989046+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2337 SPN-2df02397e75c1071 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURia3FmLWJnEAE 1 0 Good track 0 10 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.019834+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2338 SPN-babea1fd6c521e4d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRdy1ucWlnRRAB 1 0 Good. Would go back. 0 20 standard V4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.038819+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2339 SPN-07fd4eca28dfa483 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnbHBtVDdBRRAB 1 0 Great family fun. 0 17 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.053926+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2340 SPN-aafad1c4aa195578 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVbmF5Q2J3EAE 1 0 Great fun 0 9 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.070965+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2341 SPN-5fc322ce931c3266 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBNzQ2bjJBRRAB 1 0 brilliant and not expensive 0 27 standard V1.01 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.085116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2342 SPN-b1f284a7c0f46e03 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNndTVIdUdBEAE 1 0 Goo fun 0 7 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.09682+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2343 SPN-9c3bb18fb8d30a8b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURJbGFidmlRRRAB 1 0 👌👍👍 0 3 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 medium URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.607468+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2344 SPN-6d48c71ca5588878 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURodkxtUHdRRRAB 1 0 Top notch setup 0 15 standard E1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.617513+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2345 SPN-43ab09814c2b9915 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQyMU1uZXJBRRAB 1 0 Absolutely 💯 fun 0 16 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.627525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2346 SPN-d8f8b09d9b3def87 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnXzVIclJBEAE 1 0 Excellent afternoon out 0 23 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.638202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2347 SPN-f114624979f78b8b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyMEtQajVnRRAB 1 0 Great 0 5 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.646902+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2348 SPN-0957c34cd883ea43 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURaaXVqYVNBEAE 1 0 Good experience 👌 0 17 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.657104+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2349 SPN-2a07055fa5f33653 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMwN05hNE9REAE 1 0 Great day out 0 13 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.667217+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2355 SPN-39d9cd902c090ecf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBMmRfTWhBRRAB 1 0 Great place :) 0 14 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.73547+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2356 SPN-325dd305029c8782 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1d3ZYQXF3RRAB 1 0 Lots of fun 0 11 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.746126+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2357 SPN-1e3e2348504f0706 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVNEozeEdBEAE 1 0 Great place. 0 12 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.755834+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2358 SPN-f8a4ce92ad1ca2de Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRd29IY2l3RRAB 1 0 A lot of fun. 0 13 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.767222+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2359 SPN-8543ffa3a8d7867c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPNjlUZjNnRRAB 1 0 Top 0 3 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.781812+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2360 SPN-7f2b7772fea50a8d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ0Z1BteU93EAE 1 0 Fabulous morning 0 16 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.796682+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2361 SPN-cf9df520e89d3e9a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURROFlHcFZnEAE 1 0 Awesome Place 0 13 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:14.807372+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2362 SPN-8c8ca7eb372e337f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE 1 0 Honestly one of the best places I have been karting. 0 53 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:20.364974+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2363 SPN-d3bfebe72aa94ed8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE 1 1 Grippy track, fantastic mixed layout, well maintained carts 54 113 standard O1.02 {O1.03,O3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O1.03+O3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:20.367284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2364 SPN-98547f2f26d35fdd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE 1 2 most importantly, LOVELY staff 118 148 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:20.369069+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2365 SPN-b0718bc75123c92c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE 1 3 truly a great place to go for a fun bit of karting 151 202 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:20.370994+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2366 SPN-a4fe36402092c9e8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB 1 0 Fabulous track and an exciting way to pass time in the region. 0 62 standard O1.02 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:22.534009+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2367 SPN-c3c8b8e7949f5023 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB 1 1 Well organised system, observing safety rules. 63 109 standard J2.01 {E4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:J2.01+E4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:22.536115+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2368 SPN-f306482e5ac96d03 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB 1 2 You can even drive with your children. 110 148 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:22.537957+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2369 SPN-dc8f089f0d12b1b7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB 1 3 For €12 or less you get 10 circuits of excitement and are provided with a race helmet. 149 235 standard V4.01 {O3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01+O3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:22.539806+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2370 SPN-c22db5bb361dbf2b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB 1 4 Highly recommended. 236 255 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:22.541382+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2371 SPN-8b558b39b7767d29 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURELXNPVG1nRRAB 1 0 Very enjoyable experience here. Have been a few times now and the whole family loved it 0 87 standard R4.03 {} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+2:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:24.669122+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2372 SPN-08cf6863b5bbdc79 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB 1 0 Been here 2 times now in the evening, always very busy so you have to wait around an hour before it's your turn if you don't book a timeslot, which is reasonable. 0 163 standard J1.01 {J2.04} V0 I2 CR-N S3 A3 TR ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:J1.01+J2.04:02:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:34.084033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2373 SPN-e7096afa2447285a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB 1 1 The track is pretty good, lots of variety of turns and straights. 164 230 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:34.085934+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2393 SPN-7eeea57803ae6ba8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE 1 4 We will be back again. 94 116 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:00.288208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2374 SPN-4db12a6acd6fe99c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB 1 2 But I absolutely dislike the karts comfort, I drive the F300 which is pretty quick but once you crash or take short turns and end your turn, I'm always hurt in my back or the insides of my knees (which is in between the fuel tank) because I have a fragile body and I always have a helmet that tilts up in my view so every bump I have to tilt it back down but that's something that the staff can't notice beforehand so I don't blame them. 231 672 standard E1.02 {O1.02} V- I3 CR-N S3 A2 TR ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:E1.02+O1.02:-3:32TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:34.087744+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_02 2375 SPN-afa405ba898f40ea Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB 1 3 Next time I'll make a reservation and wear something less thin and a smaller helmet that still fits 673 766 standard R4.05 {} V0 I1 CR-N S3 A3 TF ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:R4.05:01:33TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:34.089645+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_05 2376 SPN-8f1d0c99d315c8e2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE 1 0 Love coming to this track,been coming for a couple of years,very nice track 0 75 standard R4.03 {O2.03} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03+O2.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:35.523038+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2377 SPN-27e0421a097d0923 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE 1 1 very friendly staff 76 95 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:35.523773+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2378 SPN-6d77ac73731b6292 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE 1 2 very reasonable price good fun 100 130 standard V1.02 {V4.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.02+V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:35.524396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2379 SPN-1dddc7d2e68a43cd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE 1 3 here we go again for the 3rd time this week 131 175 standard R4.03 {} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:35.525152+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2380 SPN-339da656d64a6216 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB 1 0 the Marshalls were excellent in helping them 52 96 standard P2.02 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P2.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:42.706858+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 2381 SPN-202a66f5623d895c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB 1 1 Great track and cars 98 118 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:42.709079+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2382 SPN-00a8e5b8c0fe13f9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB 1 2 very reasonable prices 123 145 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:42.711282+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2383 SPN-39ffd87dec754260 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE 1 0 Very good fun. 0 14 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:45.92786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2384 SPN-83c52547732c4b78 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE 1 1 Good quality karts from 2 seaters upto very fast karts. 15 71 standard O2.01 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O2.01+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:45.929944+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2385 SPN-e8910ae761665c7e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE 1 2 Open 10.30am-10pm. 72 90 standard A1.01 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:A1.01:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:45.931891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_01 2386 SPN-42de009bdcc76cca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE 1 3 good track has timing devices and lots of other GPS trackers for people viewing. 91 170 standard O3.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O3.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:45.933709+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2387 SPN-b7dd5ae0b66d21ac Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB 1 0 Great place to have a laugh and battle your friends on the track. 0 65 standard O1.05 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:O1.05+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:48.735917+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2388 SPN-53866c152af5d6db Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB 1 1 Very good staff and facilities 66 96 standard P1.01 {E1.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 high URT:S:P1.01+E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:00:48.738171+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2389 SPN-37d8eb29d58a7316 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE 1 0 Brilliant fun this morning. 0 27 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:00.280571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2390 SPN-1bd7f5d910e0040e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE 1 1 Very friendly staff. 28 48 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:00.283137+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2391 SPN-990307857cfe5990 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE 1 2 Great karts and a fun track. 49 77 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:00.285235+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2392 SPN-ffaac94a9e99ec66 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE 1 3 Fair value too. 78 93 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:00.286672+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2394 SPN-936e3da761ef19af Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMwMktMd1N3EAE 1 0 great course 0 12 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:47.904045+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2395 SPN-d85f6af8a2342880 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB 1 0 Las instalaciones están estupendas. 0 36 standard E1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:48.321383+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2396 SPN-7a89d96dd0354b47 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB 1 1 Fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un bar bastante grande y muy agradable. 37 174 standard E1.02 {O1.05} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:E1.02+O1.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:48.323715+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_02 2397 SPN-c07adf48f852dd48 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB 1 2 Me sorprendió muy favorablemente 175 205 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:48.32984+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2398 SPN-42e2544d0a8eb151 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURReHZUX0pBEAE 1 0 :-D 0 3 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2016-02-02 01:52:39.833374+00 medium URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:01:51.844838+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2399 SPN-1408d007d4d58312 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 0 Desde bien pequeño a mi hijo Iker le encantan los Karts. Yo creo que empezó con 5 años. De todos los sitios que hemos visitado para que sienta la velocidad, este es de los mejores. 0 181 standard O1.02 {} V+ I3 CR-B S2 A1 TH ES Iker customer iker \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:03.468075+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2400 SPN-783219e2f0b487e8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 1 Coches en perfecto estado, y lo más importante una pista en condiciones, grande. 182 263 standard O1.03 {O2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.03+O2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:03.470878+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2401 SPN-fff7c5c90d11830b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 2 Y el trato es muy bueno. 264 288 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:03.473041+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2402 SPN-d5ae3c86409c9a52 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 3 Todos los veranos venimos a 1000 Palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al menos. 289 394 standard R4.03 {} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:03.475188+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2403 SPN-f65d474b4be057c1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 4 En verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente. 395 481 standard P2.04 {E2.03,E1.04} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P2.04+E2.03+E1.04:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:03.477062+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_04 2404 SPN-46e19d39d299a6ca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 5 Recomendable 100% Desde luego nosotros volveremos. 482 528 standard V4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:03.4786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2405 SPN-fe626a957af1df3d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 0 Un karting para apto para tora la familia y todo tipo de pilotos. 0 66 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:07.334787+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2406 SPN-13bfd47af401d350 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 1 Disponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y exigentes. 67 177 standard O1.03 {O4.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O1.03+O4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:07.338284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2407 SPN-7251dc72ce495a71 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 2 La pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duración que van desde los 48 segundos hasta el minuto, dependiendo de la experiencia y el kart elegido para disfrutado. El trazado no es fácil, es técnico y necesita ser estudiado para mejorar los tiempos. 178 479 standard O2.04 {O1.02} V+ I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O2.04+O1.02:+3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:07.340905+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 2408 SPN-ba506a0adca2c86a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 3 En cuanto a los kart pude probar los F-300 y los F-400. Los primeros destinados a un público más general cumplen su función con creces, te exigen un control minucioso del acelerador para sacarle todo el rendimiento en cada curva y evitar que el motor quede bajo de revoluciones. 480 759 standard O1.02 {O2.04} V+ I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02+O2.04:+3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:07.343756+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2409 SPN-05487a4526f5dae1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 4 Los F-400, destinados a un público que busca el siguiente nivel, muy físicos en comparación los F-300, el tacto con el gas debe ser más suave, encontrar el balance perfecto entre gas, freno y volante para un trazado perfecto. 760 987 standard O1.02 {O2.04} V+ I3 CR-S S3 A2 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02+O2.04:+3:32TC.ES.S v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:07.347254+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2410 SPN-4a9ef0476540a4a1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 5 Sin duda una pista de referencia en el levante. 988 1028 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:07.349456+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2411 SPN-438c53c8bec5451b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB 1 0 La verdad que tiene unas instalaciones geniales. 0 49 standard E1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:14.851607+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2412 SPN-44a819bb4121b8f0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB 1 1 Cerca del Aeropuerto de San Javier y al lado de la discoteca Maná. 50 117 standard A4.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:A4.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:14.854224+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2413 SPN-f8ad0c5f2690eba2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB 1 2 Tiene una terrrazs para poder tomar algo mientras esperas tú turno. 118 186 standard E1.03 {J1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03+J1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:14.856202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2414 SPN-b960278aed706694 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB 1 3 Los precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar para pasar el rato con la familia o los amigos. 187 328 standard P1.01 {P1.01,P3.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01+P1.01+P3.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:14.858377+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2415 SPN-421812afecc071f6 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB 1 0 Me ha parecido una experiencia muy divertida. 0 46 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:16.475181+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2416 SPN-10680e8c75c91e06 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB 1 1 Es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el público podría mejorar porque no es que sean demasiado amables. 47 208 standard P1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:16.477482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2417 SPN-ff8158cadffe64b2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB 1 2 También entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que hacía allí. 209 318 standard E2.03 {P1.04} V0 I1 CR-N S2 A2 TC EI \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 medium URT:S:E2.03+P1.04:02:22TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:16.480632+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E2.E2_03 2418 SPN-c179a574dd2172e7 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB 1 0 Una experiencia divertida y recomiendo en familia o con amigos! 0 64 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:22.866243+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2419 SPN-4a002ac3166844d4 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB 1 1 Pero con prudencia! Intentad poder participar sin los coches más rápidos el ambiente será más agradable! 65 168 standard E1.04 {E4.01} V± I2 CR-N S2 A3 TC EI \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:E1.04+E4.01:±2:23TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:22.871695+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2420 SPN-cd9b4abc877b443d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE 1 0 Probamos ayer la primera vez y ha sido una muy buena experiencia 0 65 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:25.351557+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2421 SPN-08a221bfaf01b1b8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE 1 1 las instalaciones están impecables 66 100 standard E1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:25.354447+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2422 SPN-3ec688e689527017 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE 1 2 el personal muy atento y amable en todo momento,los chicos de la pista un 10 también 103 188 standard P3.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:25.356905+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2423 SPN-81dd48782d5bae4c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE 1 3 repetiremos!! 189 202 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:25.360567+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2424 SPN-9f4eb23560f31d3d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB 1 0 Si te gustan los karts, esta pista es obligatoria! La mejor pista de karts, servicio, atención, coches, todo! 0 109 standard V4.01 {O1.02,P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.01+O1.02+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:32.235247+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2425 SPN-a5316d312000f733 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB 1 1 Tiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adultos. Varios tipos de coches. Pista muy divertida. 110 261 standard O3.02 {O1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O3.02+O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:32.237587+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2426 SPN-e6d5671f93edd4ec Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB 1 2 Cada año repito, y ya son unos cuantos. Diversión asegurada! 262 320 standard R4.03 {V4.03} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:R4.03+V4.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:32.239931+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2427 SPN-7111e947d9ed083c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB 1 0 Cal reservar, sinó potser et quedes amb un pam de nas. 0 54 standard J2.01 {A1.02} V0 I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:J2.01+A1.02:02:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:37.043909+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2428 SPN-a5073b359f8d9e7f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB 1 1 Ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins. 55 121 standard E4.01 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:37.046744+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2429 SPN-127ced99ff80a8cc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB 1 2 És destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom. 122 219 standard O2.04 {E3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.04+E3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:37.048941+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 2430 SPN-dc386a13c0f34d12 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB 1 3 14 euros volta amb F200 per 8 minuts. F300 19€. F400, 30€ però 10 minuts i sense F200s pel mig. 220 313 standard V1.01 {V2.01} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+V2.01:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:37.050652+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2431 SPN-7a52fe7a79b85095 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB 1 0 Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. 0 157 standard A1.02 {} V- I2 CR-N S2 A2 TR ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:A1.02:-2:22TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.296067+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 2432 SPN-51c98795a3795550 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB 1 1 Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. 158 362 standard P4.01 {R1.03} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P4.01+R1.03:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.298463+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P4.P4_01 2433 SPN-910b0671168d0474 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB 1 2 Ahora tengo que decirle a mi peque que no lo celebraremos allí. Me parece una vergüenza. 363 449 standard V4.03 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:V4.03:-3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.300911+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2434 SPN-3db9e3142ba4d861 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB 1 0 Muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió en una sesión 0 114 standard P1.01 {P3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01+P3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.772477+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2435 SPN-a6811beafb921329 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB 1 1 esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos tocó 116 221 standard J1.01 {J1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:J1.01+J1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.774911+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2436 SPN-cda0f7272704302b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB 1 2 todo muy bien 223 236 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.777049+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2437 SPN-81806b44af1c34b8 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB 1 3 si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje 238 335 standard O2.03 {} V- I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 medium URT:S:O2.03:-1:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.779153+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2438 SPN-ba7d4f3b7062c640 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB 1 4 repetiremos seguro 336 350 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:44.78119+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2439 SPN-84ee17d6b841627a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB 1 0 tolle rennbahn mit schnellen karts für verschiedene leistungsklassen. 0 70 standard O1.02 {O4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:48.805744+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2440 SPN-88e48229b888e057 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB 1 1 kleines bistro mit essen und getränke. 71 110 standard O3.02 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02:01:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:48.808203+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2441 SPN-9b9e3b1983741ba2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB 1 2 freundliches und kompetentes personal, 111 149 standard P1.01 {P2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:48.810246+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2442 SPN-29d07b7ef4bf93ee Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB 1 3 gutes preis / leistungsverhältnis. 150 184 standard V2.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V2.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:48.812141+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 2443 SPN-1c9a64fcee4172c4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB 1 4 geeignet mit gruppen um eigene renne durchzuführen 185 233 standard O4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:48.813511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2496 SPN-3476051e7aaae868 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 0 Una experiencia genial . 0 24 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.705353+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2445 SPN-80abc6f87bcd4e12 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE 1 1 El trato muy bueno, simpáticas las dos mujeres . Y los chicos de pista que ponen los cascos y te asignan un karts también. 114 238 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.130251+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2446 SPN-b55165481b7dd77b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE 1 2 Te dan gorritos de papel para ponerte con el casco. ( Por higiene) Y después los desinfectan entre carrera y carrera. 239 356 standard E4.03 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.131088+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 2447 SPN-12d6b2cd7b207e7e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE 1 3 Nos a encantado , volveremos 357 384 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.131999+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2448 SPN-e0ff51438945db07 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB 1 0 No le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y lo hemos pasado de lujo 0 124 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.620551+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2449 SPN-4eb798e840216c55 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB 1 1 instalaciones completísimas 125 152 standard E1.03 {O2.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:E1.03+O2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.623095+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2450 SPN-488dafb59b69bef5 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB 1 2 el personal super amable y los chicos de pista igual 153 205 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.625114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2451 SPN-cd79e793dc963303 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB 1 3 me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en familia 206 316 standard E1.02 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:E1.02+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:02:55.626978+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_02 2452 SPN-b96883dfa2899cc3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB 1 0 Mucha gente, pistas llenas, reservar sirve de poco cuando están petados. 0 73 standard J1.03 {A1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:J1.03+A1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:01.726248+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_03 2453 SPN-47b4fef1ae64158b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB 1 1 Pero buen precio y los mejores de la zona y alrededores 74 128 standard V1.01 {O1.02} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V1.01+O1.02:+2:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:01.728485+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2454 SPN-48993c0217b3e203 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB 1 0 Es entrar y ya sabes que vas a sentir pura adrenalina, cada Kart está pensando para que cualquier persona pueda sentir la velocidad, es pura emoción. 0 151 standard O1.02 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:02.409198+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2455 SPN-5a2a6820e8ff8c1d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB 1 1 Los precios también son emocionantes, es que con esa calidad precio que quieres que te diga. 152 245 standard V2.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V2.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:02.411334+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 2456 SPN-d787d9dea6324edb Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB 1 2 Ha ido hasta Pedro Acosta (seguramente han ido más personas famosas). 246 316 standard R4.03 {} V+ I2 CR-N S3 A1 TH ES Pedro Acosta customer pedro acosta \N \N \N f t 2025-10-02 00:52:39.833374+00 medium URT:S:R4.03:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:02.413211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2457 SPN-10009137cbb67e1b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB 1 3 El circuito, que es el más largo de la Región de Murcia, se hacen competiciones de todo tipo(las que se puedan hacer en ese circuito). 317 452 standard O2.03 {} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O2.03:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:02.415468+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2458 SPN-3f97fd97c6f9501e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB 1 4 Si quieres sentir adrenalina pura tienes que venir aquí. 453 504 standard V4.03 {O1.02} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03+O1.02:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:02.417246+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2459 SPN-098c5391d53046ac Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB 1 0 La pista está en buenas condiciones 58 93 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-23 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:04.159371+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2460 SPN-fa535e2186de4245 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB 1 1 el personal es amable y atento 96 126 standard P1.01 {P3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-23 01:52:39.833374+00 high URT:S:P1.01+P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:04.161181+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2461 SPN-788aa1048d150a2f Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB 1 2 Las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble. 128 230 standard E1.04 {E1.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-23 01:52:39.833374+00 high URT:S:E1.04+E1.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:04.163092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2462 SPN-207e7af853f64c72 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB 1 0 Zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. Netjes geregeld alle materiaal ontsmet en wij waren met z'n 3en in de baan dus alle tujd en ruimte. 0 166 standard E4.03 {J2.01} V+ I2 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E4.03+J2.01:+2:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:12.361071+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 2463 SPN-4fe0eef41a8c3b21 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB 1 1 Leuk parcourt met bochten en lekker in de buitenlucht. 167 221 standard O2.03 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:12.363208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2464 SPN-edc6cdf8e1dfa15b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB 1 2 We gaan zeker nog eens. 222 242 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:12.365153+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2465 SPN-9a51775e5fdafdf7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE 1 0 Super geile Kart Bahn, Go-Cart. Sehr gutes Strecken Design. 0 60 standard O2.03 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O2.03+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:14.999955+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2466 SPN-73d7dc7f54981a0a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE 1 1 Mittwochs doppelte Fahrzeit. 61 89 standard V2.05 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V2.05:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.002805+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_05 2467 SPN-78aa3daf9404a5c9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE 1 2 Hat Sehr viel Spaß gemacht. 90 117 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.004629+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2468 SPN-1dab34b7e74e1582 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE 1 3 Preise für Getränke und Essen (Snacks) sind auch OK. 118 170 standard V1.02 {} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V1.02:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.006452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2469 SPN-a6deb38a1c3a191b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE 1 4 Wir kommen gerne wieder. 171 194 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.00804+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2470 SPN-36ce67679155e61a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB 1 0 de todos los kartodromos que he ido, probablemente este sea el mejor. 0 70 standard V4.01 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:V4.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.517124+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2471 SPN-31f1241cc49a04f5 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB 1 1 los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me parece que va super rapido y me encanta el layout de la pista. curvas perfectas y muy balanceado. 71 271 standard O1.02 {O2.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-12-01 01:52:39.833374+00 high URT:S:O1.02+O2.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.519447+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2472 SPN-a3a0fce01d9f66f8 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB 1 2 eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en 2018, van mucho mas rapido y te adelantan facil. aun asi si sabes conducir rapido como yo pues no te pasan, solo en rectas. 272 498 standard O4.03 {} V± I2 CR-W S3 A2 TC ES \N \N \N \N \N \N f t 2025-12-01 01:52:39.833374+00 high URT:S:O4.03:±2:32TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.521439+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2473 SPN-1bd74c4e8194b939 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB 1 3 tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis que dar un aumento al chaval. 499 621 standard P1.01 {} V+ I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-12-01 01:52:39.833374+00 high URT:S:P1.01:+2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:15.523384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2606 SPN-0c8176bc7ca3ed09 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB 1 1 pero entiendo que la apuren 121 148 standard R3.05 {} V0 I1 CR-N S1 A1 TC EI \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 medium URT:S:R3.05:01:11TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:35.392086+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 2474 SPN-24c61f5887b3c2f9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 0 Ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. De eerste keer twee heats in de F400 gereden, welke 110 km/u gaat! Erg gaaf! De tweede keer de rest van het gezin mee genomen. De kinderen reden in de F200 (60 km/u) en mijn vrouw en ik reden in de F300 (80 km/u). Beide keren waren een groots succes! 0 310 standard O1.02 {O4.03} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.03:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.299473+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2475 SPN-7b7fda1ef9b36a7d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 1 Het circuit is 1100 meter lang en de lay out is leuk om te rijden 314 380 standard E1.03 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.301667+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2476 SPN-6a1939d76b8857a8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 2 Het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen, rubber, etc.) 383 497 standard E1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.303868+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2477 SPN-09a21de63c5bbccc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 3 Veiligheidsvoorzieningen zijn dik in orde. 500 542 standard E4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.305572+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2478 SPN-d44819b87cafcb8f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 4 De verschillende karts rijden allen prima! Daarbij hebben de diverse karts ook nog verschillende chassis, zodat er altijd wel een goede match is met je been lengte. 545 709 standard O1.02 {O4.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.307456+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2479 SPN-eb69bd8fdab56813 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 5 Overige faciliteiten zijn ook zeker prima. 712 754 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 medium URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.308891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2480 SPN-94a1e171544947ae Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 6 Mooi overzicht op de baan vanaf het terras op het dak van het clubhuis. 757 828 standard E1.03 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.310473+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2481 SPN-d8eda8e3098a1648 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 7 Volgende vakantie in Spanje gaan we zeker weer! 830 877 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.312324+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2482 SPN-24f62fff5ff36ebf Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21GU1QwSmhNbkZ6TkRVM1lVa3lTbGRWYlhOcFRtYxAB 1 0 Super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session 0 88 standard O1.02 {E3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02+E3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:21.424973+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2483 SPN-961cec998064a4e8 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB 1 0 Trato excelente. 0 16 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:22.611773+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2484 SPN-419e2c19e75a66f3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB 1 1 Circuito muy grande y divertido. Lo pasamos genial 17 67 standard O1.02 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.02+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:22.613863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2485 SPN-0b6e498a7b6374e9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE 1 0 Uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de competición. 0 109 standard O1.02 {O4.03} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:24.665866+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2486 SPN-6a4528f8426a9891 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE 1 1 Las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y un ancho de pista considerable. 110 242 standard E1.03 {E4.01,O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03+E4.01+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:24.668306+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2487 SPN-22d407a59a016ad9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE 1 2 Ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competitivo. 243 349 standard V2.05 {O4.04} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V2.05+O4.04:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:24.670058+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_05 2488 SPN-3ab4f590a7dd298f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE 1 3 Mi sitio favorito! 350 365 standard R4.03 {} V+ I3 CR-N S1 A1 TH ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:24.671362+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2489 SPN-1e5ee3d82d4d7881 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB 1 0 Muy buena pista, ma de un kilómetro de recorrido 0 49 standard O1.02 {O2.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:28.753611+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2490 SPN-5d80035e59f5b5b5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB 1 1 muy bien de precio 52 69 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:28.756046+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2491 SPN-bf9127b9be85f289 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB 1 0 Классная атмосфера, невероятные эмоции 23 61 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:29.059667+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2492 SPN-fcd94ac10e0a55cf Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB 1 1 хотим приехать снова 63 83 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:29.061697+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2493 SPN-7737a7bf6a9c4447 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB 1 0 Nunca doy un " top " pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones. 0 101 standard O4.04 {V4.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04+V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:30.006014+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2494 SPN-d0fe7b647d57cd22 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB 1 1 Todo cuidado al detalle. 102 126 standard O2.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:30.008211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 2495 SPN-c3013a71dbbe8eb0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB 1 2 ( Mejor reservar antes de ir por si acaso tiene sesión nocturna ) 127 191 standard J2.01 {A1.02} V0 I1 CR-N S3 A3 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:J2.01+A1.02:03:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:30.009997+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2497 SPN-b5d137fba7dfaff7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 1 Un circuito muy cuidado , karts muy bien puestos a punto 25 82 standard O2.02 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O2.02+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.707283+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2498 SPN-9fe3fa9c9733d7d3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 2 un personal tanto pista como recepcion de 10 85 130 standard P1.01 {P2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+P2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.708928+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2499 SPN-d1e48c6a05b3964a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 3 Siempre que voy a Los Alcazares es visita obligada . 133 186 standard R4.03 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.710542+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2500 SPN-9939adb7babadf7f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 4 Los F400 una pasada . 187 208 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.711835+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2501 SPN-2c19ea3051367881 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 5 Si vais por alli no dudeis en acercaos alli para pasar un rato increible. 209 283 standard V4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.71306+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2502 SPN-68e7bc3ada8eec3c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 6 Tienen Bar , Wc y todo lo necesario ! 284 317 standard O3.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:32.714705+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2503 SPN-996bbb3198edcb53 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURld3VhTTdBRRAB 1 0 Todo el personal súper amable!!. Una experiencia genial 100% recomendada y repetiremos seguro!! Mil gracias!! 0 109 standard P1.01 {R4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+R4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:33.663222+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2504 SPN-25ef44ec7f6bac76 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB 1 0 No he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están mal.. tienen crono para los corredores y una terraza elevada para los visitantes. 0 180 standard E1.03 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:E1.03+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:36.667886+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2505 SPN-832e92dfe0fadbb6 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB 1 1 Recomendable . 181 194 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:36.669962+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2506 SPN-19b9910e0f4a4135 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB 1 0 Un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo. 0 89 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:37.328731+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2507 SPN-5859baa1719c7e50 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB 1 1 No trataron de lujo 91 110 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:37.330721+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2508 SPN-64a717ee4c3eb6c5 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB 1 2 los karts son muy buenos. 113 137 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:37.332806+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2509 SPN-a60a3c7d9f4b002c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2toVU5WbzBWRVJZTVd4R1ltUlBWVlpLZHpKd1VuYxAB 1 0 O experienta unica! Vom mai veni de câte ori vom avea ocazia! 0 61 standard V4.03 {R4.03} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:38.146697+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2510 SPN-b3bdd6872dd6c030 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB 1 0 Un circuito muy amplio y rápido 0 31 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:38.314739+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2511 SPN-172ddce8d5d68427 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB 1 1 los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un F-200 que están muy bien. 33 157 standard V1.01 {V4.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:38.317665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2512 SPN-f357c16353ce0286 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB 1 2 Ya si quieres más velocidad tienes el de F-300 en donde ya es algo más técnico. Y si quieres sentir la sensación de conducir un kart de competición de 4t tienen el de 400cc que tira muy bien! 159 352 standard O3.02 {O1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02+O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:38.320006+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2513 SPN-00c7be191c7a7bc7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB 1 3 Ahora para este año han innovado organizando un campeonato para amantes del karting que está bastante bien de precio y muy bien organizado, en donde habrán distintas modalidades de correr el circuito muy interesantes. 354 574 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02+V1.01:+2:22TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:38.322826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2514 SPN-a151254fd5227f8a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB 1 4 Sin duda alguna es uno de los mejores de la Región de Murcia. 576 631 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:38.325116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2515 SPN-c651a4eb88f20095 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB 1 0 La pista y los coches muy bien 0 30 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:44.119945+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2516 SPN-8a1372a5214fd85d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB 1 1 pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal alos niños sobre todo..porke seve k con los mayores no tiene huevos 31 198 standard P1.02 {P1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P1.02+P1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:44.122611+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2517 SPN-3cb0afc889ff3d44 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB 1 2 asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar cara al público. K se valla al campo a trabajar 267 413 standard P3.05 {R4.03} V- I3 CR-N S2 A3 TF EI \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:P3.05+R4.03:-3:23TF.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:44.12505+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_05 2518 SPN-c8abd9cdefed7ac2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB 1 3 por lo demás bien..todo 414 437 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 medium URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:44.126861+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2519 SPN-f93d9a43b29640b5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB 1 0 Un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar 0 72 standard O1.05 {A4.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05+A4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:44.48843+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2520 SPN-72bad6c4d6088571 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB 1 1 la diversión no es barata... 82 109 standard V1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01:-2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:44.490056+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2521 SPN-682937a5f8e04a7b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB 1 0 superbe karting pas loin de la mer 0 35 standard A4.01 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:A4.01+O1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.018557+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2522 SPN-28fba63515b31875 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB 1 1 super ambiance 38 52 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.022754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2523 SPN-fd7a09f861667a2b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB 1 2 course adaptée au enfants ( 1 course sur 2 , enfants , adultes ) 53 116 standard A3.02 {O4.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:A3.02+O4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.025176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 2524 SPN-e62f018ee3874aee Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE 1 0 Gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado. 0 97 standard E1.04 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.04+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.264102+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2525 SPN-b56fcb5a52fc7023 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE 1 1 Personal muy amable 98 117 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.266849+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2526 SPN-9992226834651fce Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE 1 2 buenos precios en la cafetería 120 150 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.268903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2527 SPN-258b6a9b578ba59f Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB 1 0 Muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante y divertido, desde curvas a fondo, rectas largas y curvas cerradas, yo recomiendo ir de noche porque parece que estas en el gran prix de barehin 0 246 standard O2.03 {R3.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O2.03+R3.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.753918+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2528 SPN-159f94e83d23b89d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB 1 1 hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les vendría nada mal 248 365 standard O1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:O1.02:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.756317+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2529 SPN-6853edf7854b37ff Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB 1 2 y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando para arriba y ellos la colocaron y me quedo muy buen video, muchas gracias por hacerme disfrutar todos estos años 367 578 standard P3.02 {P1.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P3.02+P1.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:46.758829+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 2530 SPN-ee7bffab9d640f52 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB 1 0 Excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo 0 92 standard O1.05 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:51.990888+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2531 SPN-b367cb1038555e0b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB 1 1 le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros 93 174 standard V1.02 {V3.01} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.02+V3.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:51.993671+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2532 SPN-8af8fd44862fc42c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB 1 0 ¡Buenísimas máquinas, la verdad! 👍😎 0 36 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:53.142611+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2533 SPN-5b1a9350c050d7c6 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB 1 1 Pero el asfalto deja un poco que desear. 🤔 Se nota bastante deteriorado en algunos tramos. 🚧 Estaría genial que lo arreglaran pronto para disfrutarlo a tope. 💯 ¡A ver si se animan! 💪👏 38 223 standard E1.01 {O1.03} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:E1.01+O1.03:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:53.144257+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2534 SPN-9b8db09fbde5484a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB 1 0 Honnêtement je met 1 étoile 18 euros les 8 minutes 0 51 standard V1.01 {V1.02} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:V1.01+V1.02:-3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:53.384946+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2535 SPN-300c4ca9a7235b81 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB 1 1 A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez 54 146 standard V2.05 {V1.02} V- I3 CR-W S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:V2.05+V1.02:-3:23TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:53.387385+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_05 2536 SPN-4c5eef66f178468f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE 1 0 Circuito muy recomendable. 0 26 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:55.181206+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2537 SPN-1f641d361afb88f5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE 1 1 Buena categoría F-400 con motores Subaru. :) 27 71 standard O2.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:55.18367+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2538 SPN-0b43ea30984f7107 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE 1 2 Buen servicio, mejores mecánicos :) 72 107 standard P2.02 {J2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P2.02+J2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:55.18606+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 2539 SPN-c8d83504d06131c0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1bXNTdWN3EAE 1 0 Muy simpático et muy adaptado para los peques! 0 46 standard P1.01 {A3.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+A3.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:56.557625+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2540 SPN-e677e9a904e09722 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2poYWRtVTRkbnB1WHpCdFJGQk1Tak5SVDBKM1pIYxAB 1 0 Karting génial adapté. Autant pour les adultes , que les enfants. 0 65 standard O1.01 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.01+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:57.382642+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2541 SPN-6d9bbfeed3149d20 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tKU2IyZ3RTR3d3WldwTGJXbDZWM1ZtVVhJNWJHYxAB 1 0 10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc 0 73 standard V4.01 {O1.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.01+O1.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:03:57.700038+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2542 SPN-c6f9db5cb7ee74b1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xsa1ltNXNVVXhETm5FMlVVMXhObkYwUmtkU2RHYxAB 1 0 Najlepszy GoKart na którym byliśmy, bardzo polecam, syn bardzo zadowolony. 0 75 standard V4.01 {O1.04} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:V4.01+O1.04:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:00.073371+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2543 SPN-5d5b8e4832049bcc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 0 Un sitio amplio, buena organización. 0 37 standard E1.03 {J2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03+J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:01.26104+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2544 SPN-5b2719931c3eedcd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 1 Fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches y muy atentos. 38 152 standard P3.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01+P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:01.264094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2545 SPN-f2dcc15ba0dfc4b8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 2 El cumpleaños tmb muy bien organizado. 153 191 standard J2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:01.267403+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2546 SPN-dc75b3118372f1b6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 3 La pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos. 192 276 standard O3.02 {E1.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O3.02+E1.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:01.269504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2547 SPN-52eeb51bb2e22e16 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 4 Tiene terraza exterior y una en la planta de arriba donde se ve la pista entera con detalle. 277 370 standard O3.02 {E1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O3.02+E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:01.271973+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2548 SPN-b4d5482f8ea43e1c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 5 No sé qué más decir, que nos gustó y que volveremos. 371 420 standard V4.03 {R4.03} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:01.273822+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2584 SPN-3e284b507805b136 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE 1 4 para pasar un buen rato con los amigos y familiares 151 203 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.376515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2549 SPN-71e5931726d08c6f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB 1 0 Para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas 0 97 standard O1.02 {O2.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:03.564591+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2550 SPN-fd7bba9512222356 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB 1 1 que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato 98 173 standard V1.01 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:01:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:03.567159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2551 SPN-9aa3e788c465401a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB 1 0 Una actividad divertida para niños y mayores. 0 46 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:04.959808+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2552 SPN-dfa370a0dbc9ce80 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB 1 1 Para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto. 47 143 standard A3.02 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:A3.02+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:04.961595+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 2553 SPN-c231d02153142596 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE 1 0 Experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el césped natural muy muy bien cuidado. 0 135 standard O2.02 {O2.04,E1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:O2.02+O2.04+E1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:06.603295+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2554 SPN-642a50e079a500b6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE 1 1 Los trabajadores muy amables y nos atendieron muy bien. 136 191 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:06.605477+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2555 SPN-0a8999b1a3140c86 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE 1 2 Una mañana de risas y momentos con los amigos. Especial. 192 247 standard O1.05 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:O1.05+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:06.607173+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2556 SPN-8437923ffea814aa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5czdMMjNBRRAB 1 0 Instalaciones nuevas . Circuito grande con distinto tipo de categorías . Marcador electrónico . Tienes una pequeña cafetería para tomar bebidas q tienen pantallas de seguimiento y mirador hacia el circuito . Disponen de billar y futbolín exterior con mesas . 0 258 standard O2.03 {E1.03,O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03+E1.03+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:06.748478+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2557 SPN-e3e79c292451125f Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB 1 0 Un karting de 10, todo en muy buenas condiciones, los karts, el circuito... 0 76 standard O1.02 {O1.03,E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.02+O1.03+E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:09.908486+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2558 SPN-f7ca4d766d9ee8db Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB 1 1 Y además con un buen precio. 77 104 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:09.910825+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2559 SPN-fc86a5830dde1ccd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB 1 0 Espectacular la atención al no ser de Murcia no sabíamos de que teníamos que reservar en este caso hicieron una excepción y no permitieron correr 0 147 standard P3.02 {R3.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P3.02+R3.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:11.864626+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 2560 SPN-4720567b641f2aa5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB 1 1 así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien 148 229 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:11.86813+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2561 SPN-83b407fe8c6e983c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB 1 0 Probablemente mi circuito favorito de Murcia. Es mucho más friendly y para todos los públicos que otros en los que he estado. 0 126 standard P1.01 {A3.01} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:V4.01+A3.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:13.526195+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2562 SPN-222dd712a0a02302 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB 1 1 También tiene muy bien organizada toda la zona fuera del circuito. 127 192 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:13.528054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2563 SPN-6fe2403a4ddd2416 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 0 Los mejores karts de toda Murcia! 0 33 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.511336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2564 SPN-efffab1c0d2bf9df Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 1 Desde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionantes carreras y cada vez es mejor que la anterior. 37 186 standard R3.03 {R2.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R3.03+R2.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.514004+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_03 2565 SPN-771e0dc0c26e77ad Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 2 La pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción y nos hace sentir la adrenalina al máximo. 187 330 standard O2.03 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.516013+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2566 SPN-59b990a9d54c304d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 3 Lo que realmente destaca es el trato del personal. Siempre son amables, atentos y están dispuestos a ayudarnos en todo momento. Nos hacen sentir como en casa, lo que hace que cada visita sea aún más especial. 332 542 standard P1.01 {P3.01,R3.04} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+P3.01+R3.04:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.51827+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2567 SPN-08f5568d29073142 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 4 Además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de la velocidad. 543 657 standard E4.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.520174+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2568 SPN-1c069450ddda3c11 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 5 Si buscas una experiencia divertida y emocionante, no busques más. ¡Definitivamente volveremos el próximo año para seguir con nuestra tradición de carreras! 659 813 standard V4.03 {R4.03} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.522249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2569 SPN-048ebb2257151e1c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB 1 0 Tres belle piste de 1100m. 0 26 standard O2.03 {O2.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O2.03+O2.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.944661+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2570 SPN-b0d0a4c546697d9a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB 1 1 Karting tres performants et très bien entretenus. 27 76 standard O1.02 {O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.946418+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2571 SPN-1262e9c3a162a856 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB 1 2 Une très belle ambiance 78 101 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.947957+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2572 SPN-60fc6efbe59badbd Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB 1 3 avec des professionnels très compétents 103 142 standard P2.01 {P2.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:P2.01+P2.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:16.950848+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 2573 SPN-d2169a945e6a05f2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB 1 0 Personal encantador y muy amables. 0 34 standard P1.01 {P1.02} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:P1.01+P1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:21.928964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2574 SPN-dba5ffec490ec280 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB 1 1 Instalaciones bien cuidadas. 35 63 standard E1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:E1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:21.93216+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2575 SPN-24c87c50dbf9ae83 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB 1 2 Circuito muy entretenido. 64 89 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:21.934288+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2576 SPN-46739901db88c516 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB 1 3 Buen sitio para pasar un buen rato. 90 125 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:21.936317+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2577 SPN-b3616b263d4f8ab1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB 1 0 Muy agradable entretenido para niños y adultos. 0 47 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.321174+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2578 SPN-4b2de54fb7f5eff5 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB 1 1 El personal muy familiar. 48 73 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-12-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.323344+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2579 SPN-23d5c09a35a872df Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB 1 2 Volveremos. 91 102 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-12-01 01:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.325192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2580 SPN-a4d1737f3a9303fa Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE 1 0 Los monitores muy simpáticos y agradables 0 41 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.36891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2581 SPN-0f64425ab3a81e1a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE 1 1 los coches para todas las edades y condiciones 43 89 standard O4.03 {A3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O4.03+A3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.370962+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2582 SPN-a2be37213dd018e7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE 1 2 la pista e instalaciones muy bien 91 124 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.37297+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2583 SPN-70a07db38d3b236b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE 1 3 el precio muy asequible 126 149 standard V1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:22.374801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2585 SPN-c46948340bc26bca Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB 1 0 Hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos sin duda. Ahora mi hijo va aquí y le encanta. 0 147 standard R4.03 {R2.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03+R2.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:26.072461+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2586 SPN-3773e37f49bc8d2d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB 1 1 Es un sitio muy buena y la atención siempre es muy agradable! 149 211 standard P1.01 {E1.04} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+E1.04:+2:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:26.073547+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2587 SPN-a0b6303043f1ca89 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB 1 2 Nos encanta ir ahí y seguiremos durante muchos años mas 🤩 213 267 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:26.074354+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2588 SPN-7204b4f347fb77c9 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25FemVHNXBhbWxxYWw4NU5YaDVOVkUxVnkxa04zYxAB 1 0 Fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los F200 y una gran experiencia, salió superfeliz 0 140 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:26.111317+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2589 SPN-b7005b87ae837ead Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE 1 0 Los Karts y el circuito están muy bien. Varias potencias y circuito divertido. 0 79 standard O1.02 {O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.486704+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2590 SPN-1db98ca32829203f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE 1 1 Lo que no me gustó fue la desorganización que tienen para atenderte. Hay una única persona tanto para atender el bar como para darte los tickets y la verdad que el proceso es bastante lento. 81 271 standard J2.02 {J1.01,P3.04} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:J2.02+J1.01+P3.04:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.489438+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 2591 SPN-2ca36e061dacd8b7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE 1 2 Si quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo menos ya que una vez haces una ronda, no puedes hacer de seguida otra, tienes que bajarte y esperar una ronda más. 273 488 standard J1.01 {J2.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:J1.01+J2.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.491401+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2592 SPN-4b66ad5b165dc89b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE 1 3 Al final hicimos solo una tanda y estuvimos en el complejo una hora. Duro para los acompañantes y pesado para los conductores. 490 617 standard V3.01 {J1.01} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V3.01+J1.01:-2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.493735+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V3.V3_01 2593 SPN-0d568899d4254619 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE 1 4 Por lo demás genial. 619 636 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 medium URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.496049+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2594 SPN-c1895d868f928b8f Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB 1 0 Los karts y la pista es buena 0 29 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.973654+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2595 SPN-eb79055e23c0ef4c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB 1 1 pero el personal es malísimo y grosero con los pilotos 30 85 standard P1.02 {P1.01} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:P1.02+P1.01:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.976309+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2596 SPN-ab6cedd308f41a12 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB 1 2 un sitio pésimo que no recomiendo para nada 86 128 standard V4.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:V4.03:-3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:30.978598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2597 SPN-50f163c64bfff906 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE 1 0 panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czekał mnie 2 godzinny spacer do domu). Przechodziłam obok nich przypadkiem i zaszłam zapytać, czy pomogą. Pomogli :) Dzięki nim udało się przejechać połowę trasy, a resztę spokojnie przejść i bezpiecznie dotarłam do domu przed zmrokiem. 24 318 standard P3.02 {P2.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P3.02+P2.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:33.798174+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 2598 SPN-060fafd64b1f2a16 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE 1 1 panowie byli mili i można było się dogadać po angielsku. 342 399 standard P1.01 {A2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+A2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:33.800488+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2599 SPN-389f9afa57fcd10b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE 1 0 Genial! Lo hemos pasado muy bien. 0 35 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:34.003533+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2600 SPN-99c7d7c3730b40b1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE 1 1 Los coches están en perfecto estado 36 71 standard O1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:34.005726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2601 SPN-831d2eca316aeae1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE 1 2 nos han tratado muy bien 74 98 standard P1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:34.007894+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2602 SPN-cd8a9e0aba6aa401 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE 1 3 Un circuito en muy buen estado también 100 138 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:34.009885+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2603 SPN-707e1634be64c313 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE 1 4 buen precio 141 152 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:34.012259+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2604 SPN-bf8e6b938fcb5fa5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtbjd1UXpnRRAB 1 0 Mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc tot 400cc. vanaf 16 jaar. 0 123 standard O2.03 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:35.136226+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2605 SPN-6eed7dd60a402f29 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB 1 0 No le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó un poco los tiempos 0 119 standard O1.03 {O1.02} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.03+O1.02:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:35.389487+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2607 SPN-897fe89231d92b44 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB 1 2 por lo demás estaba todo bien mantenido y pasamos buena tarde 150 211 standard O1.03 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.03+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:35.394226+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2608 SPN-8ee52a7838357799 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB 1 0 Buen sitio para karting 0 23 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:36.870225+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2609 SPN-248781a17c913772 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB 1 1 es un poco caro 25 40 standard V1.01 {} V- I2 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V1.01:-2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:36.872129+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2610 SPN-acdab88267b6b0ff Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xSNmRYbG9MWFZLVGw4ME9GSjFXRkl6UWpoSU4zYxAB 1 0 Un buen sitio para llevar a los peques y hacer una actividad diferente. 0 71 standard O4.04 {A3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O4.04+A3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:39.754089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2611 SPN-8dc423acc45f509f Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB 1 0 Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. 0 119 standard J1.02 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:J1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:41.427201+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_02 2612 SPN-48f3d9524a2df5ca Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB 1 1 Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. No es nada serio, y menos cuando reservé con dias de antelación. No se lo toman muy en serio, independientemente de la temporada que sea. 120 372 standard R1.03 {R2.01} V- I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R1.03+R2.01:-3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:41.432879+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_03 2613 SPN-7eef1ba8ed52a284 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB 1 0 A great venue to enjoy karting with the family, or group of friends 0 68 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-04-05 00:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:42.831171+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2614 SPN-4074be1713724043 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB 1 1 Roberta and her twin boys will make you VERY welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁 70 136 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Roberta staff roberta \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:42.833599+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2615 SPN-4fd79192cbe85dba Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB 1 0 Es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo. 0 98 standard O1.05 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:45.393097+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2616 SPN-40a90fcada46145c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB 1 1 Si es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa hora tomando algo con los colegas mientras veíamos a la gente correr y lo pasamos bien. 99 287 standard J1.01 {E1.04} V± I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J1.01+E1.04:±2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:45.395577+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2617 SPN-52802ac744849f60 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB 1 2 En cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante grande. 288 393 standard O1.02 {O2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:45.397792+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2618 SPN-deff37514ff339b0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB 1 3 Totalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia! 394 485 standard V4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:45.400383+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2619 SPN-f3331587a6cc5d46 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB 1 0 Le pongo una estrella porque no se lo puede poner menos 0 57 standard V4.03 {} V- I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:V4.03:-3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:46.725116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2620 SPN-aabea9247f5e2bbd Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB 1 1 los empleados le hablan mal a los corredores 59 104 standard P1.02 {P4.01} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P1.02+P4.01:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:46.72706+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2621 SPN-93850d2013a7e799 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB 1 2 encima te controlan el kart en pista como les dé la gana 107 164 standard O1.02 {R1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:O1.02+R1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:46.729132+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2622 SPN-63f27e8056e5a1f4 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB 1 3 si quieres pagar para que los empleados te griten y te controlen el kart como les dé la gana, este es tu sitio ideal 166 280 standard V4.03 {P1.02} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:V4.03+P1.02:-3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:46.731409+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2623 SPN-d88f06042817ec82 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUREMW8tM09nEAE 1 0 Mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectaculares. 0 106 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:47.049272+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2624 SPN-b06c3c4b57807c41 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB 1 0 Richtig genial. Der beste Zeitvertreib in der Umgebung für einen guten Preis. 0 78 standard V4.01 {V1.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-09 01:52:39.833374+00 high URT:S:V4.01+V1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:50.755845+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2625 SPN-0c91328d4a8c5a16 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB 1 1 Alles ist Save und ein Mitarbeiter spricht sogar deutsch. 79 137 standard E4.01 {A2.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-09 01:52:39.833374+00 high URT:S:E4.01+A2.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:50.758065+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2626 SPN-560e01f71dc95f2a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB 1 2 Wir fühlten uns gut informiert und sicher. 138 178 standard P4.01 {E4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-09 01:52:39.833374+00 high URT:S:P4.01+E4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:50.76002+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P4.P4_01 2627 SPN-0a2a0872bdc67be6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB 1 0 Un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares 0 78 standard O1.05 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:52.003436+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2628 SPN-f124b2b88cba7c3a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB 1 1 nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera 80 155 standard O3.02 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.02:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:52.005816+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2629 SPN-4b416deae871dcf5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB 1 2 lo recomiendo, te lo pasas genial y acabas entre risas 158 213 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:52.008046+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2630 SPN-c7c6b3dbf2834b2f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB 1 3 encima puedes tomar algo en la cantina 216 254 standard O3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:52.010328+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2631 SPN-0df4bd08599b6828 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB 1 4 los cars y el circuito están muy bien 256 291 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:52.012793+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2632 SPN-e38b9611b1163923 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE 1 0 Karting sympa, personnel plutôt agréable. Le lieu est joli. 0 59 standard O1.01 {P1.01,E1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.01+P1.01+E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:54.107622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2633 SPN-be22e4a5305bd760 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE 1 1 Petit bémol le prix est un peu cher le les 8 minutes de circuit 60 124 standard V1.01 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:-2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:54.11082+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2634 SPN-f745b37e8d3b32a2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE 1 2 dommage que les biplaces ne puissent pas être avec les karts ''adultes'' 128 199 standard O3.02 {} V- I1 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O3.02:-1:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:54.113363+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2635 SPN-d2b6a9d6dc03a03b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB 1 0 Muy divertido gran pista y precios muy. Buenos. 0 47 standard V1.01 {V1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O1.01+V1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:57.01739+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2636 SPN-43968df371ca4a00 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB 1 1 Genial 49 54 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:57.020061+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2637 SPN-af9009eae0f28831 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB 1 0 Super bien! Si te gusta la velocidad, este es tu lugar. 0 56 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:57.248681+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2638 SPN-08a9feb5775ebd47 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB 1 1 He probado otras pistas, pero ésta está bien y también el precio. 57 123 standard V1.01 {O1.02} V+ I2 CR-B S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+O1.02:+2:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:57.250957+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2639 SPN-9b5d85612bb8b670 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB 1 2 El único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad. 124 224 standard O3.02 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.02:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:57.253009+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2640 SPN-59f7ba4264a9311e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB 1 3 Pero guay la verdad!! 225 242 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:57.25523+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2641 SPN-658b90f8660194ca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE 1 0 Proper circuit, alles prima verzorgd, de karts ook tip top in orde 0 67 standard O1.04 {O2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.04+O2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:59.10448+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2642 SPN-071ea40a2ca176e3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE 1 1 Keuze uit :\nKids-Kart / Duokart / 200cc / 300cc / 400cc\nKinderen vanaf 12jaar kunnen in 200cc al karten 👌 68 172 standard O3.02 {A3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.02+A3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:04:59.106735+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2643 SPN-15e636ffb32a719b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB 1 0 Muy buenas intenciones 0 22 standard R1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:R1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:06.015611+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 2644 SPN-9c9510942b86f4a7 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB 1 1 los kart van muy bien 24 45 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:06.018801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2645 SPN-b7ea183841942fad Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB 1 2 el personal te atiende de 10 48 76 standard P3.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-11-01 01:52:39.833374+00 high URT:S:P3.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:06.021491+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2646 SPN-5252f3a6e308906c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB 1 0 Los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos, que disponen de una carrera de clasificación y carrera después para ver el ganador. 0 186 standard V1.01 {V1.02,O2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+V1.02+O2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:07.550749+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2647 SPN-afdb3caa4c0d1aef Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB 1 1 La atención al cliente es buena 187 218 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:07.552928+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2648 SPN-09090d1ca06e77ca Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB 1 2 el ambiente es agradable y cómodo. 220 253 standard E1.04 {E1.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+E1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:07.555272+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2649 SPN-7ca865bb5a3412f3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 0 Para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria. 0 87 standard O4.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.678527+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2650 SPN-88912c048994c78d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 1 Hay que reconocer que el trazado y su estado está muy bien. Rápido, con pianos y escapatorias cuidadas y un mantenimiento habitual de pista considerable que hace disfrutar al rodar por él. 88 277 standard O2.02 {O1.04,E1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.02+O1.04+E1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.680711+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2651 SPN-b917ab34679df789 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 2 Quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados. 278 378 standard O3.02 {} V- I1 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.02:-1:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.682433+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2652 SPN-121bc2b2ea02439a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 3 Le daría un 5 estrellas de no ser por la gerencia. Desde mi punto de vista demasiado obtusos y cuadriculados a la hora de hacer la reserva de carreras. No permiten reservas de menos de 10 personas ni permiten reservar los karts de 400cc para grupos... Ni en días de baja demanda te permiten organizar carreras para grupos de menos de 10 personas. 379 728 standard J2.02 {P1.02,J3.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:J2.02+P1.02+J3.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.684226+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 2653 SPN-9d502352868882a6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 4 En mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables que favorezcan las experiencias positivas y el agrado de los clientes. 729 900 standard R1.02 {V4.03} V- I3 CR-N S2 A2 TC EI \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R1.02+V4.03:-3:22TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.685708+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 2654 SPN-97110383f4b0afd5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 5 A eso le sumamos el mal estado de los karts... Con algunas unidades muy por debajo de las otras, neumáticos gastados y poca revisión de los vehículos... 901 1055 standard O1.03 {O2.05,J3.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.03+O2.05+J3.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.687212+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2655 SPN-f87b329b066e00aa Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 6 Lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un quiero y no puedo. 1056 1175 standard V4.01 {} V- I2 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.01:-2:21TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.688615+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2656 SPN-20fc4ba992b60199 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 7 Aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí. 1176 1251 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 medium URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:08.689951+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2657 SPN-6bb224b2b5a72f0a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 0 Var en trivelig kveld. 0 22 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:10.225891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2658 SPN-baae496020a3ba20 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 1 Det er andre ting å gjøre der om man ikke vil kjøre go cart. Diverse spill, airhockey, billjard og et lite lekeland for de aller minste. 23 160 standard O2.02 {A3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O2.02+A3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:10.228246+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2659 SPN-8bb264c49bc438ed Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 2 Selve bane anlegget byr på tre forskjellige baner. En for de aller minste, en junior bane og en bane for de eldre. På de to minste banene er go cartene tilpasset banen slik at det blir jevnere racing. 162 364 standard O4.03 {O2.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O4.03+O2.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:10.230238+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2660 SPN-82e750b36e275e17 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 3 Opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der. 365 455 standard O1.04 {} V- I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.04:-1:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:10.232078+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2661 SPN-5dffb00e31c6b4b8 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 4 På den største banen kan man variere på selve go cartene, noe som gjør det litt utfordrende å kjøre. Banen i seg selv var også ganske gøy å kjøre. 456 604 standard O2.02 {O4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O2.02+O4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:10.233938+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2662 SPN-55300daf21c4a733 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 5 Absolutt verdt besøket og gøy for hele familien. 605 647 standard V4.01 {A3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.01+A3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:10.235607+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2663 SPN-d806dabeb8155370 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 0 Superleuk circuit👌👍 0 20 standard O4.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O4.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.753086+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2664 SPN-24fbeb1498a2cc83 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 1 De track is heel proper en goed onderhouden alsook een nette cafetaria. 21 92 standard E1.01 {O1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E1.01+O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.755683+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2665 SPN-25daf02000527b6b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 2 Prijzen voor de drankjes zijn zeer correct. 93 136 standard V1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.757832+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2666 SPN-2bcb06541fc28b96 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 3 Afhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc. 137 226 standard O2.02 {O4.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O2.02+O4.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.759656+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2667 SPN-fe9e651c75b68a07 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 4 Super Fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is. 227 317 standard P1.01 {} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:±2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.761672+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2668 SPN-2ff10f767e1c4912 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 5 Onze zoon vond het top! 318 341 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.763995+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2669 SPN-6f5c74e0cb86934e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 6 Tot nog eens 😉 342 354 standard R4.03 {} V+ I2 CR-N S1 A1 TF EI \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 medium URT:S:R4.03:+2:11TF.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:12.766089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2670 SPN-92f5f4ab23719b20 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE 1 0 Espectacular!! Un gran circuito de Karts con cantidad y variedad de coches. 0 76 standard O2.03 {O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03+O3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:14.212465+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2671 SPN-1507cf6c4964483f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE 1 1 Zona de cantina con aire acondicionado. 77 115 standard E2.03 {} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E2.03:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:14.214913+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E2.E2_03 2672 SPN-7987e78a5cba438a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB 1 0 Muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien 0 75 standard V1.01 {V4.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-04-05 00:52:39.833374+00 high URT:S:V1.01+V4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:14.829279+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2673 SPN-549b2998de6c8b71 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB 1 1 lo encontré seguro y muy profesional me gusto mucho 78 130 standard E4.01 {P2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:E4.01+P2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:14.832345+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2674 SPN-3ea66355acfb3965 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB 1 2 Me mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia 132 221 standard P1.03 {P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:P1.03+P1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:14.833789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_03 2675 SPN-7cc9fb1534d34f9b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB 1 0 Espectacular circuito 0 21 standard O2.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:18.761675+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2676 SPN-52cb7bcccd8bc6b2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB 1 1 y trato inmejorable por parte del personal,sobre todo de Roberto 21 86 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES Roberto staff roberto \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:18.763752+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2677 SPN-35f659a5803f8635 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB 1 2 Sin duda volveré a ir !!! 88 113 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:18.765386+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2678 SPN-e77d39b7233345e0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE 1 0 Llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiempo que siempre hace en la zona, lo cuidado que está todo... 0 159 standard R3.04 {P1.01,E1.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:R3.04+P1.01+E1.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:18.793114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 2679 SPN-aa59f39c82e71800 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE 1 1 Sin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, restaurante, es un complejo muy completo tanto para si vas a rodar, como si vas a ver a los tuyos rodar!! 161 365 standard O1.02 {A4.02,V2.05,O2.01} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:O1.02+A4.02+V2.05+O2.01:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:18.795102+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2680 SPN-6d7f20f71862c197 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE 1 2 ¡Parada obligatoria sin duda! 367 394 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:18.796723+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2681 SPN-bebd11403709f317 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB 1 0 El mejor karting 0 16 standard O1.02 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.749807+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2682 SPN-34a6c94438059a6c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB 1 1 el personal es majo 17 36 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.751868+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2683 SPN-bdbafe7101e3d87d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB 1 2 los karts van de lujo y no están capados 38 79 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.753879+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2684 SPN-25afdd2f058e6c2d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB 1 3 sin duda un lugar para ir y repetir 80 115 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.756341+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2685 SPN-059fb4620dc4e019 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB 1 0 Her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige. 0 89 standard O2.02 {O3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O2.02+O3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.870088+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 2686 SPN-8646a44251467082 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB 1 1 En liten bar med refrescos har de også :-) 90 132 standard O3.02 {} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O3.02:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.872309+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2687 SPN-11cb53a206d51378 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB 1 2 De minste (under 12, 100cc) kan ikke kjøre samtidig med voksne. 133 194 standard J2.02 {O4.04} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:J2.02+O4.04:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:22.874228+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 2688 SPN-0293c2019ff0748d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB 1 0 Gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos. 0 90 standard O1.05 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:25.912236+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2689 SPN-6fa84708b9bc05b2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB 1 1 Tienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final te luce 🫶🏼 91 200 standard V1.01 {V4.01} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.01:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:25.914355+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2690 SPN-f418884ef5defb4e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB 1 0 No me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo carrera, tuvimos que dividirnos en dos grupos, unos con los 100 y otro grupo con 200-300 0 189 standard A3.02 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:A3.02:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:28.80703+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 2691 SPN-c35e549072bc2bea Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB 1 1 nosotros íbamos a pasar un rato, pero en carrera estaba el típico Alonso fracasado, pero que se piensa que va a batir no se que récord, circulando a toda leche y provocando que algunos tuviéramos que hacer trompos para no chocarnos, y los del circuito parece que les daba igual 191 470 standard E4.01 {P3.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01+P3.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:28.809742+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2692 SPN-c4bae320d497e502 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB 1 2 Al iluminado lo vimos en la siguiente carrera que acabó Segundo y todo el rato mosqueado. Lo peor, los padres que pare un que lo animaban a hacer todo eso. 472 628 standard E4.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 medium URT:S:E4.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:28.812163+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2693 SPN-1b7b0d8cc371cef8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB 1 3 Los coches iban bien aunque nunca sabes si les tocan la potencia vía radio. 630 705 standard O1.02 {R1.03} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 medium URT:S:O1.02+R1.03:±2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:28.814245+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2694 SPN-edccea6fed96bca9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB 1 4 La dirección de los coches, muy muy dura. 707 743 standard O1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:28.815853+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2695 SPN-8ab95d9cf2815986 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 0 Una pedazo de experiencia. 52 78 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.282143+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2696 SPN-96a3f9a1f0e417c9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 1 Todo el personal es super amable y dispuesto. 79 124 standard P1.01 {P3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.285693+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2697 SPN-2a0903f6ed84c5df Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 2 Los coches bien mantenidos y cómodos. 126 163 standard O1.03 {E1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.03+E1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.288457+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2698 SPN-e59864e2be2499d2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 3 Se cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos. 165 257 standard E4.03 {E4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E4.03+E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.29103+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 2699 SPN-862e4a565d3d99fc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 4 Relación calidad/precio inmejorable. 259 295 standard V2.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V2.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.293113+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 2700 SPN-37b7466dcb8e77e8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 5 Repetiremos seguro en futuros cumpleaños y eventos. 297 343 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.296482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2701 SPN-14335c10d6c35890 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB 1 0 Soy habitual de los circuitos de karting, me he recorrido muchos en toda España y este es con diferencia mi favorito 0 117 standard V4.01 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.634873+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2702 SPN-c7d839da248a7493 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB 1 1 el personal es amable, te dicen trucos para bajar los tiempos 119 180 standard P1.01 {P2.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+P2.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.637113+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2703 SPN-d5d5f367baceb1d1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB 1 2 da gusto correr con karts donde el mantenimiento lo hacen a la perfección 184 258 standard O1.04 {O2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.04+O2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.639583+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2704 SPN-4105a4d0d17d195f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB 1 3 Cada año que vengo tienen alguna novedad y eso dice mucho de una empresa 260 333 standard R3.05 {R2.01} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R3.05+R2.01:+2:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:33.641827+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 2705 SPN-3bff73acba59904b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB 1 0 Experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena. 0 83 standard P1.01 {P2.04,O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:P1.01+P2.04+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:36.012953+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2706 SPN-595485b681371253 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB 1 1 Dia perfecto para pasar un buen rato tanto en familia o grupo de amigos 84 155 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:36.015826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2707 SPN-8a7febdc67cfcf57 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB 1 0 Buen sitio para ir con los hijos y pasar una buena tarde. 0 58 standard A3.01 {O4.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:A3.01+O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:36.9512+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2708 SPN-20b6441c2020cef7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB 1 1 La pista es grande y amplia, es muy divertida. 59 106 standard O1.02 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:36.953387+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2709 SPN-56707f048aff7c1c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB 1 2 Tiene cafetería. 107 123 standard O3.02 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O3.02:01:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:36.955041+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2710 SPN-10cbf2f40bd86ffa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB 1 3 Al finalizar puedes comprar fotos que te hacen. 124 169 standard O3.02 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O3.02:01:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:36.956537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2711 SPN-098c825d91ab9b9c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 0 De los mejores karting que he probado 0 37 standard O1.02 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.02:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:37.973538+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2712 SPN-5e34372c623e0057 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 1 los coches funcionan bien, el trazado es bueno y esta en buenas condiciones 39 115 standard O1.01 {O1.04,O2.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.01+O1.04+O2.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:37.975883+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2713 SPN-ed62474db4f7c1cc Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 2 los empleados son simpáticos y están siempre atentos 117 170 standard P1.01 {P3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01+P3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:37.978159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2714 SPN-8f65535e807c6d04 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 3 Pero hay un pequeño problema que es el PRECIO del karting, si solo vas a pasar un rato y no vas a compartir es algo caro y apenas te dan tiempo 172 317 standard V1.01 {V4.01} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V1.01+V4.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:37.980433+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2715 SPN-a9019e22a75d3e72 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 4 aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas personas o no están experimentadas o no tienen ni cuidado ni respeto 319 482 standard E4.01 {J3.01} V- I2 CR-N S3 A3 TR ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:E4.01+J3.01:-2:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:37.982764+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2716 SPN-34b5279100ef13a2 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 5 por lo demás todo perfecto. Recomendable 👌 484 521 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:37.984446+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2717 SPN-9fce62f779e0b312 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE 1 0 Pasamos un día estupendo!! Buenas instalaciones y con un bar para tomar algo. 0 78 standard E1.03 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:40.321324+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2718 SPN-b968bccd50e60de3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE 1 1 Recomendado,nos gustó. 79 100 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:40.324108+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2738 SPN-705ef463cc26e421 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB 1 0 Muy buen lugar para pasar un buen rato 0 39 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:58.443649+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2719 SPN-bb7c5835d6a45c02 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNIOUptUWdBRRAB 1 0 Fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para participar, como para pasar un rato tomar unas cervezas, refrescos y picoteo, que es lo que tomemos allí mientras veíamos a las personas participar! 0 246 standard E1.04 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:40.702045+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2720 SPN-36a44a39106aae70 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE 1 0 Super tolle Bahn und klasse Karts. 0 34 standard O1.02 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:43.638886+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2721 SPN-e6719000014ffa53 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE 1 1 Wir sind so begeistert. Mein Sohn hat heute seinen Geburtstag dort gefeiert und er war so glücklich hier. 35 141 standard O1.05 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:43.641254+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2722 SPN-9dfd7c15ede476dc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE 1 2 Super netter, freundlicher und hilfsbereiter Mitarbeiter. 142 199 standard P1.01 {P1.02,P3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P1.02+P3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:43.643809+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2723 SPN-c48858c51174526e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE 1 3 Wir hatten sehr viel Spaß. 200 226 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:43.645374+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2724 SPN-ee2578de7a6cafd1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB 1 0 El personal del circuito es un encanto,los karts siempre a disposición del cliente 0 82 standard P1.01 {A1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:P1.01+A1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:48.047571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2725 SPN-4b4be029c207d7a8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB 1 1 lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo 85 180 standard V1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 high URT:S:V1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:48.050478+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2726 SPN-5badeaa0f4f5b5e4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB 1 2 A parte son tan simpáticos que te dejan la gran mayoría de veces unos minutillos más en la pista si no hay gente esperando para entrar 182 316 standard P1.01 {R3.05} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 high URT:S:P1.01+R3.05:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:48.052589+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2727 SPN-bcab8450050ae9a9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB 1 3 Muy satisfecho,lo recomiendo 318 345 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:48.055376+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2728 SPN-445733a52bfb5a82 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB 1 0 Gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular, el circuito genial, las instalaciones de 10 0 147 standard O1.02 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:49.364908+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2729 SPN-bde6d266c4234b90 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB 1 1 el personal súper atento 150 174 standard P3.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:49.36653+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2730 SPN-3740bc76bf9f45ba Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB 1 2 Recomendable 100%. Volveremos 176 203 standard R3.05 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R3.05:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:49.368179+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 2731 SPN-e7fbfc169e6836b1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB 1 0 Circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curvas; 6 a derechas y 4 a izquierdas. 0 133 standard O2.03 {O2.04} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:O2.03+O2.04:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:52.330917+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2732 SPN-ef5a1bcb91ae07a0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB 1 1 La flota de los F300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo que llevo llendo al circuito. 135 262 standard O1.03 {O2.02} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:O1.03+O2.02:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:52.333439+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2733 SPN-a88a7b924ee3bd4c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB 1 2 Si tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en Verano pues da mucho gusto también. 264 398 standard A4.01 {V4.03} V+ I2 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:A4.01+V4.03:+2:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:52.335527+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 2734 SPN-fa25068d46a1a82c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB 1 3 Como anécdota tienen un perro guardián llamado Pepo, muy majo. 400 461 standard E1.04 {} V+ I1 CR-N S3 A1 TC ES Pepo staff pepo \N \N \N f t 2025-03-06 01:52:39.833374+00 medium URT:S:E1.04:+1:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:52.33748+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2735 SPN-a60025a7334ab4f7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE 1 0 Ha sido un regalo sorpresa para mis hijos y han salido encantados! Buen circuito y divertida experiencia que seguro que repetiremos. 0 133 standard O1.05 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:56.636844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2736 SPN-950bd3e0484a3a03 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE 1 1 Nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope. 134 207 standard J1.05 {} V± I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:J1.05:±1:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:56.638949+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_05 2737 SPN-bbba3f31f78dcf08 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25GTGQyUjFWWHBSTVVWc1VEUnBjbUZuUkhwWlFXYxAB 1 0 Hay circuitos mucho mejores y con mejor atención al cliente 0 59 standard V4.01 {P3.01} V- I2 CR-W S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.01+P3.01:-2:11TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:56.807854+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2739 SPN-e2995f9a12174e4a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB 1 1 precios razonables 41 59 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:58.445661+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2740 SPN-968c59fbe921fe17 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB 1 2 el staff muy majo, te atienden y ayudan 61 101 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:58.447809+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2741 SPN-b20df9118f53e354 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB 1 3 Circuito en muy buenas condiciones y los karts también 103 158 standard O1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:58.449534+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2742 SPN-476d28765337fc2e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 0 Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. 0 238 standard P1.02 {P1.01} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:P1.02+P1.01:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:59.74234+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2743 SPN-723786b290da2ead Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 1 Explicaciones las justas para alguien que no ha llevado nunca un kart 239 309 standard P2.04 {P3.01} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P2.04+P3.01:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:59.74434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_04 2744 SPN-03dcea00612a3d6c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 2 en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. 313 625 standard O1.04 {J2.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:O1.04+J2.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:59.746207+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2745 SPN-123f85066203800e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 3 También escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. 626 730 standard P1.02 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P1.02:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:59.748386+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2746 SPN-8c9905e827d30d7b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 4 circuito y maquinaria bien 745 771 standard O1.02 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:O1.02:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:59.750357+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2747 SPN-ccf2e11a4be6cdb0 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 5 personal penoso 773 776 standard P1.02 {} V- I3 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-08-03 00:52:39.833374+00 high URT:S:P1.02:-3:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:05:59.753348+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2748 SPN-519cd958609452d7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNBdGZDRTVRRRAB 1 0 Muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!! 0 80 standard P1.01 {R4.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:P1.01+R4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:01.129904+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2749 SPN-d0884cac4629c6a6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM1OFoyVzNRRRAB 1 0 Perfecto para pasar la tarde con amigos! Y tomar luego un refrigerio 0 68 standard E1.04 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:01.712678+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2750 SPN-bcc8916050cca827 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE 1 0 Como siempre muy recomendable, el circuito y no los kart en perfecto estado. 0 77 standard O1.04 {O2.05} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.04+O2.05:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:04.750248+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2751 SPN-4641e95b64dc5906 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE 1 1 Grandes profesionales 78 98 standard P2.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P2.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:04.752489+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 2752 SPN-3302f69158f8ac0d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB 1 0 Beste GoKart -Bahn in der Region, liegt zwar etwas außerhalb von Torrevieja, ist aber sehr groß angelegt. 0 107 standard O1.02 {A4.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O1.02+A4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:07.530726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2753 SPN-3e3b7e7ae1c832de Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB 1 1 Der Preis ist besser als bei den Konkurrenten in Torrevieja. 108 166 standard V1.01 {} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:V1.01:+2:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:07.533291+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2754 SPN-3e08595a2b86e399 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB 1 0 Un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el F300 por 19e pero si tienes la posibilidad de coger el F400 sin duda vas a disfrutar. 0 173 standard V4.01 {O1.01,O3.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.01+O3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.028284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2755 SPN-47aac388274c85b0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB 1 1 Suelen hacer 1 tanda de adultos y una de niños y así sucesivamente. 174 242 standard J1.03 {} V0 I1 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:J1.03:01:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.030949+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_03 2756 SPN-98e797a56105d849 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB 1 2 Sin duda uno de los mejores karting que he probado. 243 295 standard V4.01 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.033023+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2757 SPN-27d285a128d34bbd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB 1 3 En cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata, que no ha corrido nunca, que alguien le explique lo básico. 296 451 standard P2.01 {P4.01} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P2.01+P4.01:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.034939+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 2758 SPN-58cc9c3df222e07d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE 1 0 El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los karts y reírse de los grupos de amigos (especialmente de las mujeres) que corren porque ellos se creen mucho mejores conductores y un supuesto jefe de la pista que da vergüenza que trabaje de cara al publico con la poca consideración y educación que tiene (por no recalcar sus deplorables actitudes machistas). 0 441 standard P1.02 {P2.02,R1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.02+P2.02+R1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.894114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2759 SPN-0e532dfa83789596 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE 1 1 Muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad y delimitarme esta misma, un paseo en una barca del retiro seguro que hubiese sido muchísimo mas emocionante. 442 653 standard V1.02 {O1.02} V- I3 CR-W S3 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.02+O1.02:-3:32TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.896189+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2760 SPN-6079e040f505d209 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE 1 2 Ya se a que sitio no volver y no recomendar jamas! 654 688 standard V4.03 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:-3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:11.897546+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2761 SPN-fc50de1492f561e7 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB 1 0 Falta más explicación del manejo por parte de los instructores a los niños 0 75 standard P2.01 {P4.01} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:P2.01+P4.01:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:12.379966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 2762 SPN-015cd07b56cb9555 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB 1 1 más zonas sombreada en la terraza para el público 78 127 standard E1.03 {E1.02} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:E1.03+E1.02:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:12.383714+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2763 SPN-d3d87b3efa721546 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNWMS1pdE13EAE 1 0 Buen circuito para pasar un buen rato 0 37 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:15.894522+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2764 SPN-3930f5e4142ae8d1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB 1 0 Muy bonita pista de carreras, pero nada más. 0 44 standard E1.04 {} V± I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:E1.04:±2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:15.968212+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2765 SPN-ea1ebed6c978af9e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB 1 1 Los karts están en mal estado 45 75 standard O1.03 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.03:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:15.970056+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2766 SPN-ff189097c59f8efc Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB 1 2 y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático! 77 169 standard P1.02 {P1.01} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P1.02+P1.01:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:15.972712+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2767 SPN-76a05720f72b7fcd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE 1 0 Divertidos 0 10 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:21.901461+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2768 SPN-53c85e9f8d2c27f4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE 1 1 Hay horas con muy poca gente donde te puedes divertir mucho 11 71 standard J1.03 {O1.05} V+ I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:J1.03+O1.05:+3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:21.903117+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_03 2769 SPN-f52984c324e12770 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE 1 2 Precios razonables 72 90 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:21.904465+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2770 SPN-bcacf3f3234f5d25 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE 1 3 Mucho aparcamiento 91 108 standard A4.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:21.905845+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_02 2771 SPN-e2fafde76171a601 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 0 De los mejores sitios de karts que he visitado 0 47 standard O1.02 {} V+ I3 CR-B S1 A1 TH ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.876025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2772 SPN-41c93408af6831dd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 1 gente muy amable 49 65 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.876953+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2773 SPN-fec21f26abddee52 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 2 buenas medidas de seguridad frente al covid 67 110 standard E3.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:E3.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.877723+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_04 2774 SPN-8f2170e00eea7cac Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 3 los coches son una pasada, gran variedad 113 153 standard O1.02 {O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+O3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.878564+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2775 SPN-7b060cad5d27b8a6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 4 él precio es más que correcto 164 193 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.879621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2776 SPN-6329c056e4e96706 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 5 Los F200 son los que utilizamos. 195 227 standard O4.01 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O4.01:03:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.880256+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_01 2777 SPN-4a0745019944b25a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 6 Recomendación, si se va por la noche llevar prendas largas, por los mosquitos. 228 304 standard E1.04 {} V- I1 CR-N S3 A3 TC EI \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 medium URT:S:E1.04:-1:33TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:26.880975+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2778 SPN-41083e1fb52ebe3f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB 1 0 El trato de las trabajadoras hacia los clientes ha sido nefasto 0 64 standard P1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:33.537514+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2832 SPN-8422a1aba354fd3a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB 1 3 Esperamos volver y repetir pronto 230 260 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:56.503405+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2779 SPN-2dcc7d015f0b0b08 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB 1 1 guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas maneras que solo podemos echar una ronda porque cierran pronto y tienen más gente, cuando ya teníamos reserva para tres rondas 66 296 standard J2.02 {O3.02,P1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:J2.02+O3.02+P1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:33.54011+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 2780 SPN-50b6d73e5b3d3f3b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB 1 2 que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje 298 367 standard P3.05 {P4.05} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P3.05+P4.05:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:33.542196+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_05 2781 SPN-f9aa285c05e081dc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB 1 3 Mala organización y mal trato 369 393 standard J2.02 {P1.02} V- I2 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:J2.02+P1.02:-2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:33.543898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 2782 SPN-337a43132b81c310 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUREMzVpWHRBRRAB 1 0 Supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er zijn duokarts.👌 0 116 standard O2.03 {O4.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03+O4.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:37.974558+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2783 SPN-db409e383c35c22b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE 1 0 Circuito grande. Los niños lo pasaron muy bien. 0 48 standard O1.05 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:45.028767+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2784 SPN-4ce1b903cc6e18ad Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE 1 1 La única pega es que no pueden compartir circuito niños y adultos. 49 114 standard A3.01 {O4.03} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A3.01+O4.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:45.031025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2785 SPN-814e9361272dba67 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE 1 0 El lugar es espectacular, el circuito bellísimo 0 47 standard E1.04 {O2.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:E1.04+O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:59.675281+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2786 SPN-0cae672441422afe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE 1 1 pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no existe la traccion, es como circular en cemento pulido, muchos parches baches hoyos y desniveles, las líneas de meta y pianos, deberían de ser anti deslizantes, porque resbala todo muchismo 49 338 standard O1.02 {O2.01,O1.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-04-05 00:52:39.833374+00 high URT:S:O1.02+O2.01+O1.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:59.680487+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2787 SPN-4a9b5a8641b05986 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE 1 2 me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para correr ni hacer tiempos, ni con un kart y con moto totalmente inviable 340 511 standard O1.05 {O1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:O1.05+O1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:59.685901+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2788 SPN-42c287bbae0ca03d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE 1 3 ojalá lo reasfalten y lo pinten como deberían y se convierta en uno de los mejores circuitos que tenemos 513 618 standard O1.02 {} V0 I2 CR-B S2 A3 TF ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:O1.02:02:23TF.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:59.689569+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2789 SPN-922325c2866be20e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE 1 4 porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa en un circuito, La Pista 620 740 standard E1.01 {O1.02} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:E1.01+O1.02:±2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:06:59.728119+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2790 SPN-f86acbb8cdbc3e48 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE 1 0 Circuito muy chulo. 0 19 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:01.832841+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2791 SPN-3a07752918350b65 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE 1 1 Los karts funcionan genial 20 46 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:01.836516+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2792 SPN-2d7838a6e78b8752 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE 1 2 el personal está muy atento para que todo vaya sobre ruedas. 49 109 standard P3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:01.838948+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2793 SPN-485e3e13467c7880 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE 1 3 Fue una tarde muy divertida. Repetiré seguro. 110 155 standard V4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:01.840936+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2794 SPN-5c3ddbcaa3f46f35 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tGa09XMTNOM2gzTjFwa1NqbG9VR3RMY1ZBd1VHYxAB 1 0 Estupendo sitio para disfrutar 0 30 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:05.947287+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2795 SPN-9cf97a8f81f6e774 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB 1 0 Atención fenomenal 0 18 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:15.779951+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2796 SPN-e2251e8258fea696 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB 1 1 vehículos en buen estado 20 44 standard O1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:15.781889+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2797 SPN-080255ee40dcc0b3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB 1 2 circuito seguro 46 61 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:15.783658+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2798 SPN-3bf4fede6717ed97 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB 1 3 diversión asegurada 63 82 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:15.785033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2799 SPN-4b9d35458e245f9c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE 1 0 Pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando habíamos reservado días de antelación 0 133 standard J2.01 {R1.01} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:J2.01+R1.01:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:23.716584+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2800 SPN-50386b2d398056fb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE 1 1 pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando les estábamos hablando bien, ningún respeto por los clientes 135 294 standard P1.02 {P3.01} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P1.02+P3.01:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:23.719409+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2801 SPN-276a984ee27f4981 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE 1 0 La primera vez y no la última. 0 31 standard R4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.340755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2802 SPN-33c8592ea084b6c4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE 1 1 Ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de personas que estan allí que en todo momento te hacen sentir como en casa. 32 203 standard P1.01 {O4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+O4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.343031+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2803 SPN-52b21aa1b9088a49 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE 1 2 Para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy estables y que se lo van a pasar muy bien. 204 346 standard E4.01 {O1.04} V+ I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E4.01+O1.04:+3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.346004+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2804 SPN-cfb1e2dedc5544fe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE 1 3 Un 10!!!! 347 351 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.348184+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2805 SPN-959905719c279c71 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB 1 0 Hemos ido varias veces, los kart y el circuito como siempre bien. 0 66 standard O1.04 {} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.04:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.870278+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2806 SPN-24416d32209468eb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB 1 1 La única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo por el mismo dinero por ser el día del piloto hasta ahí ok. 67 227 standard V1.03 {R1.03} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.03+R1.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.872381+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_03 2807 SPN-279306dffd1c05bf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB 1 2 Pues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si nos van a sacar y uno de los chicos que estaba allí me responde de bastante malas maneras que estamos en temporada alta que que me creía, y le intenté explicar que en la web no pone nada de temporada alta ni baja y el hombre pasó de mí básicamente. y ni me avisaron de nada cuando compré los ticket. 228 623 standard P1.02 {P4.01,V2.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.02+P4.01+V2.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.873428+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2808 SPN-6f563014ac195a96 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB 1 3 Por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo. 624 718 standard V4.03 {O1.04} V± I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+O1.04:±2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:36.874155+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2809 SPN-8599535b88b91e49 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE 1 0 Reservamos para un cumpleaños, y nos pusieron todas las facilidades. 0 69 standard P3.02 {J2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.02+J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:42.892343+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 2810 SPN-258b5b13bfea49e2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE 1 1 Son muy majos , sin duda volveremos a ir . 70 112 standard P1.01 {R4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+R4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:42.895284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2811 SPN-3e0c30c3a2740e41 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE 1 2 Si le hablas por Instagram te responden enseguida, muy atentos. 113 175 standard A3.03 {P3.01} V+ I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A3.03+P3.01:+3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:42.897522+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_03 2812 SPN-5a604fc6790bd9ee Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB 1 0 Schöne weitläufige Kartstrecke 0 30 standard O2.03 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O2.03+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:45.060192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2813 SPN-31489e91e96a8324 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB 1 1 mit sehr netten Personal 31 55 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:45.062883+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2814 SPN-816f7bbe0c0a2bb4 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB 1 2 Gerne wieder. 57 70 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:45.067464+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2815 SPN-d3ed803560293f45 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB 1 0 ¡No había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante! 0 90 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:46.342713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2816 SPN-7397ee6b0ae0fb0a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB 1 1 El personal muy amable y cercano (también bastante tranquilizador). 91 159 standard P1.01 {P1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+P1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:46.345698+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2817 SPN-af854b5b0084848f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB 1 2 Un plan perfecto para ir con amigos. 160 196 standard O4.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:46.347901+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2818 SPN-111a824d78b9aba5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB 1 3 ¡Repetimos y lo recomendamos sin ninguna duda! 197 242 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:46.351014+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2819 SPN-a57caa8de265485f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB 1 0 Magnifico circuito de karting outdoor con karts de calidad 0 59 standard O2.01 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.1911+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2820 SPN-f59f5e6faa1131f3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB 1 1 a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan economico 62 169 standard V1.01 {V2.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01+V2.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.192369+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2821 SPN-5ae4890e5242b032 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB 1 0 Top, on a passé un très bon moment 0 35 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.729794+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2822 SPN-a72ee4737227ebe9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB 1 1 réceptionniste qui parle français 37 70 standard A2.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:A2.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.732692+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A2.A2_02 2823 SPN-610ae3e01bc55d2e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB 1 2 le prix est très abordable pour 4 personnes 72 116 standard V1.01 {V4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.735145+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2824 SPN-f4b322791066d15e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB 1 3 les moniteur au top, le circuit aussi 118 155 standard P2.02 {O2.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P2.02+O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.737715+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_02 2825 SPN-7c7251e5d3bb7e22 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB 1 4 Pour ceux qui passe leur vacances à côté franchement à faire 157 217 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 medium URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:49.740288+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2826 SPN-87ac34a299fe5387 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB 1 0 Disfrutamos mucho. Nosngustabir 0 31 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:54.301976+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2827 SPN-7c1509089d29b2a0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB 1 1 pero los precios son demasiado caros para el tiempo de pista 32 93 standard V1.01 {V1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V1.01+V1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:54.304914+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2828 SPN-aadcc27c320542e3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB 1 2 Es minpercepción. Iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir cada semana 94 203 standard V4.01 {V1.01} V- I2 CR-N S2 A3 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01+V1.01:-2:23TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:54.307552+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2829 SPN-0306db0a991f8e76 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB 1 0 Hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena. 0 83 standard V4.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:56.496728+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2830 SPN-298d094dde76c171 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB 1 1 El personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la GoPro 84 178 standard P1.01 {P3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:56.499066+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2831 SPN-af28b186cac3ca0d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB 1 2 el circuito y los karts estaban en buen estado. 181 229 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:56.50124+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2833 SPN-2ceb359794e32f04 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNXZ3RXem93RRAB 1 0 Estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente 0 72 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:58.33404+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2834 SPN-45ce62c627e51004 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB 1 0 El trato del personal inmejorable 95 128 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:59.506443+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2835 SPN-b36f24230a4506aa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB 1 1 las instalaciones súper limpias y cómodas con todas las atenciones 130 197 standard E1.01 {E1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.01+E1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:59.508353+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2836 SPN-193a1197c8455a85 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB 1 2 los vehículos a tope de gama 201 230 standard O2.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:59.509424+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2837 SPN-001209a49a3fb431 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB 1 3 La verdad que repetiremos la experiencia. 232 273 standard R4.03 {} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:08:59.510311+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2838 SPN-871313b3c0e5650b Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21obmVFd3hkV1k0VFU5bVEwTm5SMGhETUVaWVRuYxAB 1 0 Buena experiencia para montar en karts. 0 39 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:00.136593+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2839 SPN-b212ab3425a45fdd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 0 Lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica 0 90 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:04.171591+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2840 SPN-9f934c0e6597d170 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 1 nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección 92 173 standard P1.01 {P4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:04.174096+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2841 SPN-71041943e3a04868 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 2 los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento 175 266 standard O1.04 {J4.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.04+J4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:04.17621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2842 SPN-e326d4217ace0b94 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 3 siempre puedes topar con alguna persona q se piensa q está en la F1 y no se da cuenta q hay más gente pero vamos, como en cualquier lado 268 405 standard E3.01 {} V- I1 CR-S S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 medium URT:S:E3.01:-1:21TC.ES.S v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:04.178336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_01 2843 SPN-63dc46fc7b0fb829 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 4 Tanto los señoritas de la cafetería y atención general como los chicos de los karts fueron e hicieron la estancia súper agradable 407 537 standard P1.01 {P3.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:04.180297+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2844 SPN-0514fd357e525e3c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 5 Repetiremos seguro 539 555 standard R4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:04.182043+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2845 SPN-48c9bf0be1b8001e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE 1 0 Ha estado muy bien. Hemos ido a un cumpleaños y ha sido muy divertido. Las instalaciones están bastante bien y hemos pasado un rato muy agradable. 0 147 standard E1.04 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:06.56063+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2846 SPN-1f2d901c42efc3bf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE 1 1 Repetiremos. 148 159 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:06.563669+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2847 SPN-8b280d42d3eabe8d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB 1 0 He ido varias veces a rodar en los Karts de 200, 300 y 400. Siempre perfecto. 0 78 standard O1.04 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.04:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:06.65627+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2848 SPN-9963f864e26e9fb0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB 1 1 Actualmente también ruedo con la pitbike y la pista siempre muy limpia. 79 150 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:06.658532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2849 SPN-7650a0da8f5e5394 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB 1 2 Además hay bar por lo que puedes quedarte a comer, almorzar... 151 212 standard O1.02 {A1.03} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+A1.03:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:06.660628+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2850 SPN-40faae9d0214a2b4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURTcGNqZll3EAE 1 0 Schöne Strecke zum Pitbiken, teilweise etwas rutschig aber sonst sehr spaßig. 0 77 standard O1.02 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:10.539025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2851 SPN-f94a7e110cc3155a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB 1 0 Encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindaron. 0 105 standard P1.01 {V1.01,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01+V1.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:10.698839+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2852 SPN-9ade1ab71925ca77 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB 1 1 El trato con los organizadores fue buenísimo y los karts estaban en muy buen estado. 106 191 standard P1.01 {O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:10.701265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2853 SPN-3f80a032544e2b50 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB 1 2 El mejor circuito de karting de la zona del mar menor sin duda. 192 256 standard O1.02 {} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:10.703621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2854 SPN-0e08488a006b47a6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB 1 3 Fuimos un grupo de 10 personas y repetiría mañana mismo. Muy recomendable. 257 327 standard R4.03 {} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:10.705959+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2855 SPN-44a78c6a52229763 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB 1 0 Bien. Pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho menos tiempo. Nos sacaron d la pista a los 11 minutos. 0 154 standard V1.02 {O3.03} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.02+O3.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:15.787791+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2856 SPN-cc2b7aa9453b0cd0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB 1 1 Pero para pasar un buen rato está bien. 155 195 standard V4.01 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:15.790889+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2857 SPN-7e240cebce303418 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB 1 2 El cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el coche de mi hermano y después viendo q no podían arrancarlo le dieran otro coche, todo eso mientras esperábamos en la línea de salida sin movernos. 196 443 standard J2.02 {O1.01} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:J2.02+O1.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:15.793269+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 2858 SPN-4c5ce4ea53540c2f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB 1 3 Por todo lo demás bien. La pista está en buenas condiciones y se agradece. 444 513 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:15.795973+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2859 SPN-38b2820bf62b1133 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE 1 0 Una gran pista 0 14 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:16.478871+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2860 SPN-f5ac3bd9d3f2cf77 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE 1 1 buen precio 17 28 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:16.48116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2861 SPN-30db161388d97a66 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB 1 0 Buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cilindrada. 0 109 standard O3.02 {O2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:18.264971+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2862 SPN-7e28028d0ec76b07 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB 1 1 Tiene una gran pantalla donde aparecen los tiempos y los dorsales. Desde el mirador también se puede seguir con las carreras. 110 236 standard E3.01 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E3.01+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:18.270122+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_01 2863 SPN-592cb4fee588f8f5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB 1 2 Hay un bar y servicios públicos. También hay zona de sombra y un gran parking gratuito. 237 325 standard A1.03 {A4.02,E1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:A1.03+A4.02+E1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:18.275718+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_03 2864 SPN-54b7f81f5a14d872 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB 1 3 Es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos. 326 409 standard V4.01 {V1.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01+V1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:18.280175+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2865 SPN-e3f073e31fef6099 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE 1 0 Es un sitio más que recomendable para ir y pasar un buen rato. El ambiente es bueno. Es entrar por la puerta y empiezas a sentir la adrenalina. 0 146 standard E1.04 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:20.719885+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2866 SPN-07c496ea391bc4f3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE 1 1 He perdido la cuenta de las veces que he ido y he disfrutado como un niño. He llevado, por primera vez, a varias personas de mi entorno y siempre quieren repetir. 148 312 standard R3.03 {O1.05} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R3.03+O1.05:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:20.722377+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_03 2867 SPN-ddc56773ae9a3480 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE 1 2 Los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos. 313 402 standard P1.01 {P3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:20.724035+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2868 SPN-d477e9e5ba57de7b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE 1 3 La única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de cinturón, para ir más seguro. 404 535 standard E4.01 {O1.01} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E4.01+O1.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:20.725646+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2869 SPN-c785e7b75f8b5688 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE 1 4 Por lo demás, todo excelente. 536 558 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:20.727316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2870 SPN-20115b3abee9b678 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 0 Wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis. 0 80 standard O1.05 {} V- I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:-3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.555095+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2871 SPN-351991b576524539 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 1 Omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zaten, opteerden we voor de F200 karts. Eenmaal vertrokken zagen we dat er ook ook zwaardere karts in onze sessie zaten welke niet enkel sneller maar ook zeer agressief reden. We werden meerdere keren van de baan gereden en ook verbaal uitgescholden. 81 431 standard E4.01 {O1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E4.01+O1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.557828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2872 SPN-f9d8b297dc5de821 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 2 Door de organisatie werd hier niets op gezegd. 432 478 standard P3.01 {J4.01} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01+J4.01:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.560324+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2873 SPN-d8d67b4759b8bd23 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 3 Gevolg was enkele blauwe plekken, gekneusde ribben en tieners.die over stuur waren. 479 563 standard E4.01 {} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E4.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.563145+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2874 SPN-95a7c4023f8e149f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 4 Toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze ons niet verstonden. 564 683 standard P1.02 {P4.02,R3.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.02+P4.02+R3.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.565434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2875 SPN-a29ec1506d5b8e5b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 5 Ons zien ze hier nooit meer terug . 684 713 standard R4.03 {} V- I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:-3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.567652+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2876 SPN-f4245dcf38c401c0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE 1 0 Circuito espectacular con un fantástico trato. 0 47 standard O1.02 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.585473+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2877 SPN-60e7ab517da1a7fe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE 1 1 Ha sido mi primera experiencia y no dudaré en repetir. 48 103 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.588113+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2878 SPN-f7c93154f1d345b8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE 1 2 Además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempos en pista. 104 216 standard E1.03 {O2.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03+O2.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.590119+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2879 SPN-7b1b3c33c8e50f24 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE 1 3 ¡Volveré sin dudarlo! 217 235 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.592163+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2880 SPN-73988f6ca0c6f755 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE 1 0 Super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec 0 93 standard O1.05 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.681137+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2881 SPN-56d35a77716185d4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE 1 1 8 min to troszkę mało za tę cenę 96 128 standard V1.02 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.02:-2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.683769+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2882 SPN-ff41d8b6ce1f5ff7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE 1 2 ale tor i same gokarty super 131 159 standard O1.02 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.685696+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2883 SPN-3c586f79eba5de65 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE 1 3 Zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja 162 232 standard V4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:26.687761+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2884 SPN-dbe63f7fb34df4ef Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xaSFJqbHpZM28zTVcxSlFYWnlhMll6Y25sUFFVRRAB 1 0 Sehr gut für Kinder bis 14 Jahren 0 33 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:30.911061+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 2885 SPN-22afc713564877fa Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE 1 0 Uno de los mejores lugares para pasártelo genial con tus amigos y familia. 0 75 standard O4.04 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:31.114738+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2886 SPN-6cbdc4e5e673d6f1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE 1 1 Además los karts y la seguridad es máxima 76 117 standard E4.01 {O1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E4.01+O1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:31.117527+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2887 SPN-8eefabc95000abe6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE 1 2 la atención y simpatía de los trabajadores increíble 119 172 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:31.119945+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2888 SPN-73cb84e21fa2d61e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE 1 3 encima en su restaurante se come de lujo 175 216 standard O2.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:31.122022+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2889 SPN-c805358d2fd3fa40 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE 1 4 Repetiremos seguro. 239 256 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:31.123524+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2890 SPN-4e44e75a843a10a6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE 1 0 Buen diseño del trazado 15 38 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:32.944018+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2891 SPN-8ffbe84a46fcc5a0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE 1 1 Asfalto en muy buenas condiciones 41 74 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:32.946748+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2892 SPN-ff5b552cb9e174b0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE 1 2 Kars modernos 77 90 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:32.949178+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2893 SPN-88ae4f8c660aabea Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE 1 3 Trabajadores profesionales 92 118 standard P2.05 {P2.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P2.05+P2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:32.950913+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_05 2894 SPN-c1eeaa1b3a1f75ad Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE 1 4 Entras allí y te olvidas del mundo exterior . Los médicos de la seguridad social deberían recetar este circuito para combatir el estrés. 121 258 standard E1.04 {O1.05} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04+O1.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:32.952835+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2895 SPN-38adf61361725616 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE 1 0 Me encanto el trato recibido por el personal del circuito. 0 58 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:36.737598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2896 SPN-7989d26b074278d0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE 1 1 Tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra. 59 153 standard O4.03 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O4.03+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:36.738716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2897 SPN-f9efb77dbf833cb6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE 1 2 La zona de ocio amplia. 154 177 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:36.739663+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2898 SPN-802b7441cd64b3ca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE 1 3 Muy buen sitio para ir solo, con amigos o con familia. 178 231 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:36.740627+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2899 SPN-25c9372a50405e8e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE 1 0 El personal es agradable y atento. 0 34 standard P1.01 {P3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:37.003453+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2900 SPN-44a5a69a91d98cbb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE 1 1 Tienen una pista en condiciones de uso bastante aceptable. 35 94 standard O1.04 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.04:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:37.006384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2901 SPN-03d368f31fee3489 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE 1 2 Los Karts están en buen estado. Quizás debería mejorar su nivel de frenada. 95 171 standard O1.03 {O1.02} V± I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.03+O1.02:±2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:37.008798+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2902 SPN-035b2348e089d525 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE 1 3 Pero es una buena actividad en la que divertirse en grupo. 172 228 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:37.011344+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2903 SPN-8606202eff0049b7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB 1 0 Volvería una y mil veces más, me encanta este karting 0 54 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:39.445632+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2904 SPN-4f5db7f156ebc861 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB 1 1 los karts son un tiro y la pista es perfecta 56 101 standard O1.02 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:39.446909+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2959 SPN-a9d5952179bc3d35 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE 1 1 Zufahrt und Beschreibung passt auch. 16 53 standard A1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:A1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.433784+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_04 2905 SPN-2808e236c61250da Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB 1 2 un kartodromo genial para echar un buen rato y hacer buenos tiempos 103 171 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:39.448045+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2906 SPN-55469c2d656e3445 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB 1 0 Llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin. 44 130 standard R4.03 {} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:40.3463+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2907 SPN-c12e29a9ac4b5ea4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB 1 1 Ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como las chicas de la barra, la organizacion, el detalle y el mino. 131 293 standard P1.01 {J2.01,O2.04} V+ I3 CR-N S2 A1 TR ES manolo staff manolo \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+J2.01+O2.04:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:40.348274+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2908 SPN-da7acd3239f6c9da Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB 1 2 Vuestros asturianos favoritos recomiendan 100% vuestro negocio. 294 356 standard V4.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:40.350225+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2909 SPN-eb4ff60a1200ec1a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB 1 0 Me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no sabemos cómo es el funcionamiento de las áreas de diversión 0 160 standard P2.01 {P4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P2.01+P4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:45.860409+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 2910 SPN-02650a249143372f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB 1 1 Pero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepotencia 161 267 standard P1.02 {R1.01,J3.01} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.02+R1.01+J3.01:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:45.862611+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2911 SPN-10a0d519daa28793 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB 1 2 Yo creo que la educación ante todo 268 299 standard P1.02 {} V- I2 CR-N S1 A2 TC EI \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.02:-2:12TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:45.865035+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2912 SPN-6c7ed61a7406a786 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB 1 0 Oude en slecht onderhouden karts. 68 102 standard O1.03 {O2.02} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.03+O2.02:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:46.094436+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2913 SPN-3dfaf804cf6359ed Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB 1 1 Onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn. 103 183 standard P1.01 {P1.02} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+P1.02:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:46.09606+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2914 SPN-0fb9c997b10934c1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB 1 2 Heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe. 0 76 standard R4.03 {} V- I3 CR-W S3 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:-3:31TF.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:46.09732+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2915 SPN-be2da8dbe7d8c144 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 0 Buen ambiente en el circuito 0 28 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:47.477264+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2916 SPN-82a3af174c21cd42 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 1 karts divertidos de conducir 30 58 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:47.480913+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2917 SPN-193b2330a3e24abd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 2 equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente 60 205 standard P1.04 {P3.05} V+ I3 CR-N S3 A1 TC ES Diego staff diego \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:P1.04+P3.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:47.483459+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_04 2918 SPN-dd683c4988229709 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 3 equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente 60 205 standard P1.04 {P3.05} V+ I3 CR-N S3 A1 TC ES Roberto staff roberto \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P1.04+P3.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:47.485649+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_04 2919 SPN-0a7015bd55979224 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 4 equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente 60 205 standard P1.04 {P3.05} V+ I3 CR-N S3 A1 TC ES Chema staff chema \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P1.04+P3.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:47.488575+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_04 2920 SPN-89ddefeaa172e10c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 5 equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente 60 205 standard P1.04 {P3.05} V+ I3 CR-N S3 A1 TC ES J.Leon staff j.leon \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P1.04+P3.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:47.490381+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_04 2921 SPN-6bceb5664c0381a7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE 1 0 Cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y seguridad al tener amplias vías de escape. 0 136 standard O1.02 {E4.01} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+E4.01:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:49.273932+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2922 SPN-42ab4f0c3866edfb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE 1 1 Excelente equipo electrónico que controla los tiempos a la perfección. 137 208 standard O1.04 {O2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.04+O2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:49.276392+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 2923 SPN-28f6a61a217573e9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE 1 2 Tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más intensa los Fascinantes F-400 209 335 standard O4.03 {O2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O4.03+O2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:49.278529+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 2924 SPN-cf562f35602a5dbd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB 1 0 El mejor circuito de Karting en la zona sin ninguna duda. 0 57 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:50.333501+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2925 SPN-824a82edeb9ce930 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB 1 1 Desinfectan los karts y los cascos antes y después de cada uso. 58 122 standard E3.04 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E3.04:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:50.335818+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_04 2926 SPN-47a14088c84f89f4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB 1 2 Perfecto para estar con amigos y familia en la terraza o en el porche. 123 194 standard E1.04 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:50.337989+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2927 SPN-0936137db15ff4d5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB 1 3 Desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas 195 292 standard A1.05 {A2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:A1.05+A2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:50.340618+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_05 2928 SPN-5746ac4e304bb16f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE 1 0 Espectacular amigos, todo muy bien organizado y un personal muy simpático. 0 74 standard P1.01 {J2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+J2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.527138+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2929 SPN-40e852fd12d1ef86 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE 1 1 Lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezados. 75 179 standard E4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E4.01:-2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.528571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 2930 SPN-0bec23bd8e9a5147 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE 1 2 Volveremos a encontrarnos amigos, muchas gracias. 180 228 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.529818+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2952 SPN-8746b939c9639c7a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE 1 2 con precios asequibles 74 96 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:06.233801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2931 SPN-71c363426d9675cc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURybnJQbnR3RRAB 1 0 Eine wirklich tolle Bahn. Tolle Auswahl an Fahrzeugklassen. Die Bahn ist eine tolle Herausforderung und macht somit besonders viel Spaß. 0 136 standard O1.02 {O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+O3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.85372+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2932 SPN-2517ed5a1321731a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB 1 0 Muy buenas instalaciones y bien diseñadas las medidas de seguridad. 0 68 standard E1.03 {E4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03+E4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.919994+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2933 SPN-7f1c579aa313c530 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB 1 1 El mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viejas. 69 173 standard O1.03 {O1.04} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.03+O1.04:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.922209+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2934 SPN-9ed7e0bb3c54ac3e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB 1 2 Por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de movilidad. 174 280 standard V1.02 {A2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V1.02+A2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:54.924569+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 2935 SPN-a408bafdfd89c672 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE 1 0 Experiencia 100% recomendable. 0 30 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:58.519803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2936 SPN-efe908ed733bd718 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE 1 1 El circuito está genial 31 54 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:58.52157+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2937 SPN-79f3d04a28cced02 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE 1 2 el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles. 57 151 standard P1.01 {P2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+P2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:58.523628+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2938 SPN-6f840f2fa2ee6ce3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE 1 3 Volveremos!! 152 163 standard R4.03 {} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:58.52645+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2939 SPN-dddcf413409e669f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB 1 0 Muy buen circuito para correr y echarse unas risas, muy recomendable. 0 70 standard O1.01 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.01+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:59.79388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2940 SPN-152006e28e2d289d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB 1 1 Y la cantina también muy bueno todo, sobretodo los granizados de limón. 71 142 standard O2.01 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O2.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:59.795726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2941 SPN-26a23729172aebee Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB 1 2 Aparte no es muy caro de precio. 143 175 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:59.797293+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2942 SPN-1ff7924b89daf6df Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB 1 3 Muchas gracias por el servicio 👌🏻👌🏻 176 210 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:09:59.798675+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2943 SPN-f7c6a105c8ccc0ac Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB 1 0 Es un sitio genial , lo tienen todo super bien cuidado 0 55 standard E1.01 {O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-04-05 00:52:39.833374+00 high URT:S:E1.01+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:02.985354+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2944 SPN-4c89ec1554f0d010 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB 1 1 el personal es de 10 58 78 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:02.987411+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2945 SPN-25da52f4e8dc0014 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB 1 2 Repetiremos 79 89 standard R3.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-04-05 00:52:39.833374+00 high URT:S:R3.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:02.989177+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_03 2946 SPN-f9574c984c38e853 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE 1 0 El lugar es increíble. 0 22 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:05.046121+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2947 SPN-84d1eb52f4011433 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE 1 1 Incluso siendo principiante, te lo pasas genial. 23 72 standard O1.05 {E3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.05+E3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:05.047662+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2948 SPN-3b8b6d0a84f2b833 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE 1 2 El personal muy atento en todo momento. 73 112 standard P3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:05.049337+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2949 SPN-09ba336af9a1a29a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE 1 3 Ojalá podamos repetir pronto. 113 142 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:05.05092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2950 SPN-f00f8cc4d5215c6d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE 1 0 Un circuito 10, rápido y muy técnico 0 36 standard O1.02 {O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:06.229772+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2951 SPN-06b10915a4343739 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE 1 1 los dueños son gente muy cercana 38 71 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:06.23185+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2953 SPN-a5f114b8f3f5fd3e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB 1 0 Esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 y después 15 personas (8 ajenas). 0 133 standard J1.01 {J3.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:J1.01+J3.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.288674+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2954 SPN-b086b168916e6345 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB 1 1 No volveré ni lo recomendaré 134 162 standard V4.03 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:-3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.291725+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2955 SPN-82aa99b038d76ffa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB 1 2 Se llamó 2semanas antes y no se reservaba..Esperamos 35 minutos de reloj y luego se fue sumando gente a la sesión sin previo aviso. En el marcador ni se veían los nombres de los 7. 178 360 standard J2.01 {J1.01,P3.05} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:J2.01+J1.01+P3.05:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.29704+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 2956 SPN-47370758e201fd56 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB 1 3 Reafirmo no volveré ni recomendaré 361 395 standard V4.03 {} V- I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:-3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.299869+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2957 SPN-1535f2a5feaff0b0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB 1 4 también se salió la rueda de un car y el circuito dejaba que desear. 398 464 standard O1.01 {O2.02} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.01+O2.02:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.301912+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 2958 SPN-e1f52ac964d0cb78 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE 1 0 Wetter war top. 0 15 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-05-05 00:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.431684+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2960 SPN-8be7b26230b7d0a7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE 1 2 Das Personal auch sehr nett, das Englisch könnte besser sein. 54 114 standard P1.01 {P2.01} V± I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:P1.01+P2.01:±2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:08.435467+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2961 SPN-bc09e564ae236d68 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB 1 0 Heel vriendelijke mensen en heel proper zowel buiten als binnen. 0 65 standard P1.01 {E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:13.991434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2962 SPN-fa78952c0e8b3048 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB 1 1 Ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super 66 150 standard O2.03 {O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O2.03+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:13.996439+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 2963 SPN-2f3e7322e65321a7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB 1 2 en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke mensen 151 255 standard P3.05 {A2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P3.05+A2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:13.999455+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_05 2964 SPN-5018997925479e82 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB 1 0 Divertido. 0 10 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:14.770851+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2965 SPN-5037caa178775db0 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB 1 1 Y no es caro. 11 24 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-10-02 00:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:14.773356+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2966 SPN-c819379a8add9609 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB 1 2 Buen trato 25 35 standard P1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:P1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:14.775259+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 2967 SPN-fbe49a865cc3a6cf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE 1 0 El trato amable de sus dueños Roberto y Diego es tan solo la bienvenida a una experiencia divertida, y que va a más con el paso de las vueltas a su circuito. 11 171 standard P1.01 {O1.02} V+ I3 CR-N S3 A1 TC ES Roberto y Diego staff roberto y diego \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.446489+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2968 SPN-3ed2f36fe3ea3e9f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE 1 1 Gracias por todo! 172 186 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.452392+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2969 SPN-b032aa9027fa5d7a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE 1 0 De los mejores recintos que he conocido. 0 40 standard O1.02 {} V+ I3 CR-B S1 A1 TH ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.982631+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2970 SPN-6bd6c5689318519c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE 1 1 Las instalaciones y los Karts están muy bien 41 85 standard O2.01 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O2.01+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.985132+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 2971 SPN-4bc32327554cbc6e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE 1 2 el servicio atento y los extras también 87 126 standard P3.01 {O3.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P3.01+O3.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.987773+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 2972 SPN-3134234392ab0efa Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE 1 3 Y el precio es asequible. 128 153 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.99311+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2973 SPN-d542cd02e8a8bd0f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE 1 4 Hay vueltas específicas para niños y dúos con niños. 154 206 standard O3.02 {A3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O3.02+A3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:15.995826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2974 SPN-4eb8f397cffd5cbe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE 1 0 Super endroit propre et bien animé en fin de journee 0 53 standard E1.01 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.01+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.6416+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 2975 SPN-af08d6c128821ef4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE 1 1 Piste professionnelle 54 75 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.644496+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2976 SPN-243ba1d4262ca96a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE 1 2 Super accueil 76 89 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.646667+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2977 SPN-50e24b89c4548282 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE 1 3 En fonction de l heure ou vous allez il peut y avoir 1h d attente 90 156 standard J1.01 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:J1.01:-2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.648531+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2978 SPN-7d53cab9037dc56c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE 1 4 A refaire 157 164 standard V4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.650488+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2979 SPN-0951152766cea714 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE 1 0 Circuito divertido, pantalla con resultados, buena relación calidad -precio. 0 77 standard V4.01 {O1.02,O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.02+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.704056+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 2980 SPN-2c3c677f6a27058c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE 1 1 La 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la dirección de los coches estaba muy dura. 78 209 standard O1.02 {} V- I2 CR-W S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:-2:33TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:20.707778+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 2981 SPN-a0d70ce934b573de Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE 1 0 Doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem. 0 70 standard O4.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:25.985646+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 2982 SPN-336d90a0c279aec1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE 1 1 Dzieciaki bawiły się bardzo dobrze. 71 106 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:25.987953+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 2983 SPN-9ea7e8994ad0c894 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE 1 2 Trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt sezonu (sierpień). 107 226 standard J1.01 {J1.03} V- I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:J1.01+J1.03:-1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:25.989916+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 2984 SPN-ef97cee0f5011dc4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE 1 3 Polecam. 227 234 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:25.991651+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2985 SPN-78c92c268cc57760 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB 1 0 Un día estupendo en familia 0 27 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:26.129821+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2986 SPN-9747878e2f8cce1c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB 1 1 muy buena atención por parte del personal y muy amables 29 84 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:26.132381+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2987 SPN-b5fa491a061c28d0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB 1 2 una terraza con vistas a toda la pista excelente 86 135 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:26.134698+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 2988 SPN-23652d526b7443cf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB 1 3 Repetiremos sin duda 137 157 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:26.136741+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 2989 SPN-9147564ae8df9828 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE 1 0 Fui el finde pasado con 7 amigos y nos trataron de lujo. 0 57 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:27.011074+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 2990 SPN-e7c73d347c6e89ea Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE 1 1 Karts en perfecto estado y disfrute asegurado! 58 103 standard O1.03 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 high URT:S:O1.03+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:27.013546+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2991 SPN-12a63ee7822eb67a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 0 Me gustó la experiencia 0 23 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:29.247004+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2992 SPN-cc2ce246151f9e64 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 1 tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 euros que fue la que elegimos, también dependía de la cilindrada 25 189 standard V1.01 {V2.01} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+V2.01:03:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:29.249283+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 2993 SPN-37948a1fe5e1490c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 2 Incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte. 191 279 standard O3.01 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O3.01:03:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:29.251886+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_01 2994 SPN-60b1f8aa8a0d588a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 3 Está bien para echar el rato. 281 310 standard V4.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:29.253364+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 2995 SPN-6321962d3cd6a2ef Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 4 Las pistas están bien 312 333 standard E1.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.03:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:29.255014+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2996 SPN-4cd8a92182f53a65 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 5 los karts como es lógico con las ruedas desgastadas 335 382 standard O1.03 {} V- I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.03:-1:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:29.256378+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 2997 SPN-e3cb890442b9f9e8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB 1 0 Diese Go Kartbahn ist lang, bietet viele Möglichkeiten zum von unterschiedlichen Kategorienen an. 0 97 standard O3.02 {O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O3.02+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:32.101966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 2998 SPN-3b5a76c0b0fbd83d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB 1 1 Zum zuschauen sind einige aussichtsreiche Standpunkte angeboten, oben auf der Terasse oder bei schlechtem Wetter im Gebäude. 98 222 standard E1.03 {O3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03+O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:32.104276+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 2999 SPN-11bc30ca57b59dca Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB 1 2 Man kann beim Gruppenrennen Namen zuordnen und auf der Taffel werden die Zeiten angezeigt. 223 314 standard O3.02 {E3.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O3.02+E3.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:32.10615+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3000 SPN-67f84e7949f8707f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB 1 3 Nach dem Rennen kann ein Ausdruck mit Rennzeiten kostenlos mitgenommen werden. 315 392 standard O3.04 {V1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O3.04+V1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:32.107903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_04 3001 SPN-c03381e1d0f8902e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE 1 0 Een super leuke namiddag gehad! Een lange baan met toffe bochten. 0 66 standard O1.02 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:33.606529+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3002 SPN-72943991c7295af5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE 1 1 Voor herhaling vatbaar! 67 89 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:33.609068+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3003 SPN-d971ba5b966d8e2a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB 1 0 Es un buen lugar para pasar la tarde con los amigos. 0 53 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:34.71906+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3004 SPN-a5888b8a46ac0854 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB 1 1 Esta bien localizado y tiene aparcamiento amplio para coches. 54 116 standard A4.01 {A4.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:A4.01+A4.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:34.720922+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3005 SPN-81add7e36dbacc2d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB 1 2 Si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si lo desea. 117 225 standard O3.02 {A3.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+A3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:34.722498+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3006 SPN-b245025ea7373ccd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB 1 0 La pista mejor mantenida que he visto, curvas preciosas y kars mantenidos. 0 75 standard O1.03 {O2.03} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.03+O2.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:36.896843+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3007 SPN-b886a6851177bcbc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB 1 1 Para los cascos utilizan una máquina para limpiarlos. 76 130 standard E1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:36.898403+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3008 SPN-eaa4531ca6fa5b24 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB 1 2 Tiene una pantalla grande y de buena calidad que te dice los tiempos. 131 201 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:36.89932+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3009 SPN-cb3f917150d5f7f1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB 1 3 Volvería a conducir 202 218 standard R3.05 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R3.05:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:36.900121+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 3010 SPN-71058b6cd65a8ebd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB 1 0 Gente muy agradable. 0 20 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:38.231547+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3011 SPN-0897ab50144362cb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB 1 1 Día de equipo muy divertido con comida incluida. Un 10 para echar una jornada de entrenamiento. 21 117 standard O1.05 {O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.05+O3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:38.235907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3012 SPN-582b63b6396aec47 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB 1 2 Recomendado! 118 129 standard V4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:38.238913+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3013 SPN-0e97aae35410d3d3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE 1 0 Esta muy divertido sirve para todas las edades. 0 47 standard O1.05 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:41.798589+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3014 SPN-e3c6f877e81bd0d5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE 1 1 Y es un buen sitio para hacer carreras. El Vplaza para peques con adultos. 48 123 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:41.800771+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3015 SPN-154ca896494390f7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE 1 2 Y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás volver a conducir. 124 239 standard P3.02 {J4.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P3.02+J4.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:41.803595+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_02 3016 SPN-cadb6f3d79863360 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB 1 0 El mejor karting de la región sin duda 0 39 standard O1.02 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:43.224467+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3017 SPN-f8c3cf234b060857 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB 1 1 los karts muy bien mantenidos y la pista igual 41 88 standard O1.03 {O2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:O1.03+O2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:43.227537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3018 SPN-5dd6ae91f3627099 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB 1 2 es un circuito donde es difícil tener un accidente, es muy seguro 98 161 standard E4.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:43.229935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3019 SPN-fe3d2cc0e13a4727 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE 1 0 Excelente alternativa para un fin de semana divertido con los amigos. 0 70 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:44.511289+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3020 SPN-2a27a179f1165f61 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE 1 1 Buen trato del personal 71 93 standard P1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:44.513193+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3021 SPN-e8876a4be3b68002 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE 1 0 étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en Europe je peux vous dire que celui-ci fait parti de mes préférés 8 155 standard V4.03 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:45.375054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3022 SPN-5d5953ae56dc1568 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE 1 1 le matériel est en super état 156 186 standard O1.03 {O2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.03+O2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:45.377804+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3023 SPN-2d86fe60e00ee1bb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE 1 2 le personnel est sympathique 190 218 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:45.3803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3024 SPN-48f83abdd3c18906 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE 1 3 Je recommande vivement. 220 243 standard V4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:45.382567+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3025 SPN-25a1a8b0ea645d0b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE 1 4 Idéal même pour les enfants en bas âges. Les parents qui veulent faire découvrir le karting à leurs enfants peuvent y aller sans soucis il dispose de karting by place. 244 414 standard A3.01 {O3.02} V+ I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:A3.01+O3.02:+2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:45.384744+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3026 SPN-3146d06908ee681c Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pGdlozUm9ialEzUkZVNVpYVTRMUzFOZEY4M1VVRRAB 1 0 Toda una experiencia cada verano 0 32 standard R4.03 {} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:R4.03:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:46.052152+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3027 SPN-fad1ce6d4812ce7a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB 1 0 Buen trato 0 10 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:49.105006+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3028 SPN-b6ed5c12b4ddee0d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB 1 1 circuito adecuado y largo 12 37 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:49.107326+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3029 SPN-bf22b9f66ac06ede Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB 1 2 Los coches tienen buen mantenimiento. 39 77 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:49.109601+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3030 SPN-ee66718ce462ec31 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB 1 3 Diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera invertida. Recomendado. 78 197 standard O1.05 {O3.02} V+ I3 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.05+O3.02:+3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:49.112078+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3031 SPN-0a96972ed46ece16 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB 1 4 El mejor de la zona con diferencia. 198 231 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:49.11371+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3032 SPN-94e1800c0b101d3a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB 1 0 Muy bueno el servicio 0 21 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:50.32661+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3033 SPN-93f311334e9918ce Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB 1 1 los karts en muy buen estado 23 51 standard O1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:50.329192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3034 SPN-8a99ca5f4eeeb1b4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE 1 0 He sido asiduo a este Karting desde sus inicios y ha evolucionado de una manera sobresaliente. 33 128 standard R4.03 {O1.04} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:R4.03+O1.04:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:52.359779+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3035 SPN-62627b8ef87a9151 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE 1 1 Después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un biplaza. El trato genial! 129 257 standard P1.01 {A3.02} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+A3.02:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:52.362415+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3036 SPN-0dc882c4ed7a8f80 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE 1 2 Siempre volveré. 258 274 standard R4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:52.364573+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3037 SPN-fec00943deedb729 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE 1 0 Hemos ido unas tres veces este mes y somos de Murcia centro, sin duda los mejores calidad precio. 0 98 standard V4.01 {R3.03} V+ I3 CR-B S2 A1 TR ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.01+R3.03:+3:21TR.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:54.092844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3038 SPN-ae8e6a2c763ea753 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE 1 1 Me encanta el personal muy atentos y simpáticos. 99 147 standard P3.01 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P3.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:54.094993+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3039 SPN-b4953369de907984 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE 1 2 En cuanto a karst muy competitivos e igualados unos con otros 148 208 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 medium URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:54.097925+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3040 SPN-5d39378d2f79a937 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB 1 0 Esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchísimo. 0 105 standard O3.02 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O3.02+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:54.60532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3041 SPN-d681f59b83c0be96 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB 1 1 Los chicos muy simpáticos. 106 132 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:54.608219+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3042 SPN-5cae19ada6cbdcb7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB 1 2 Y lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1. 133 206 standard V1.01 {V4.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V1.01+V4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:54.610032+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3043 SPN-b571dc4b8ce4b37e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB 1 0 Está bastante guay, tienes su entrada y los karts muy bien 0 59 standard O1.02 {O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-06-04 00:52:39.833374+00 high URT:S:O1.02+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:55.555753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3044 SPN-a4e9bc53346c5186 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB 1 1 Y tienes cosa hay que pillarle truco 60 95 standard J2.01 {} V0 I1 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-06-04 00:52:39.833374+00 medium URT:S:J2.01:01:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:55.557465+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3045 SPN-db90691273bd3ab4 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2pneGRGSnpibk5xUXpSWFNGSk9lVEpDWkhneWMwRRAB 1 0 Super circuit ! Trop bien pour les grands et les petits !!! 0 59 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-08-03 00:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:10:56.285123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3046 SPN-c037e0e027e5d6ac Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB 1 0 Excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande 0 85 standard O1.05 {} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:02.848659+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3047 SPN-46e12ab345b624f2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB 1 1 la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!! 89 168 standard O2.01 {O2.03} V+ I3 CR-N S3 A1 TR ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O2.01+O2.03:+3:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:02.853198+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 3048 SPN-0caac94985d9d4d9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB 1 2 La dueña es encantadora y se preocupó de que no faltara detalle. 170 234 standard P1.01 {P3.02} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+P3.02:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:02.855141+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3049 SPN-c2858b5601bdcef1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB 1 3 Me sorprendió el precio de todo ya que pensaba que sería bastante más caro. 236 312 standard V1.02 {} V+ I2 CR-B S2 A1 TR ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.02:+2:21TR.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:02.857041+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3050 SPN-3b340eafa7e87a2c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB 1 4 Lo recomiendo sin duda 314 329 standard R4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:02.858863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3051 SPN-6f6b3a3710f61bc1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE 1 0 La verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida. 0 87 standard O1.02 {O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.001784+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3052 SPN-19b3482bb20a235a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE 1 1 Siempre hay mucha gente en verano. 88 122 standard E1.04 {} V0 I1 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04:01:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.003919+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3053 SPN-8fda797efaf47106 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE 1 2 Recomiendo llamar y reservar. 123 151 standard J2.01 {A1.02} V+ I2 CR-N S3 A3 TF EI \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:J2.01+A1.02:+2:33TF.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.005876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3054 SPN-cb388e4cbdd3940d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE 1 0 Solo puedo decir cosas buenas de este karting. 0 47 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.794535+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3055 SPN-2b02830995236ea9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE 1 1 Pista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran fin de semana allí, son una gente fantástica y agradable. 48 208 standard P1.01 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.796816+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3056 SPN-254fc21b9b8aaac2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE 1 2 Mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla. 209 305 standard J3.01 {J1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J3.01+J1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.79912+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 3057 SPN-621ace4842d30ba0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE 1 3 Las instalaciones super limpias. 306 334 standard E1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.80122+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3058 SPN-ac6be69dabbd55ea Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB 1 0 La opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tus amigos 0 109 standard V4.01 {V1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01+V1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.833517+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3059 SPN-81ae1109221e95a4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB 1 1 la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo 111 199 standard O2.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O2.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.835091+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3060 SPN-a61c24096bc7af88 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB 1 2 Siempre que vamos acabamos muy contentos 201 239 standard R3.01 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:R3.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:04.836434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_01 3061 SPN-cb098e177f94df91 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE 1 0 Dit is een fantastische race track! Niet alleen het circuit is cool, het is er (zelfs in het weekend) betrekkelijk rustig 0 122 standard O1.02 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:05.69658+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3062 SPN-5ae6ea814e6b5e17 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE 1 1 de service is snel, goed en vriendelijk 124 163 standard P1.01 {J1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+J1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:05.699671+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3063 SPN-f52f336c11e485e2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE 1 2 de drankjes ( inclusief sterke drank) zijn er spotgoedkoop 167 225 standard V1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:05.702626+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3064 SPN-c138e91f76d59578 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE 1 3 Er zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving en voor volwassen van 200 tot 400cc ... ook eigen motors zijn welkom! 227 396 standard O2.01 {O3.02} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O2.01+O3.02:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:05.704492+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 3065 SPN-685b1e69cdcac48d Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2t0Mk4xQmFWWEZTTldrNVRrbDFlbmR0VldvNVltYxAB 1 0 Fenomenal para una tarde en familia 0 35 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:08.879192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3066 SPN-14cebaaeffcc0b21 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB 1 0 Flott bane med godt opplegg. 0 28 standard O2.03 {O1.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:O2.03+O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:09.546745+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3067 SPN-a9139cd9b49854f3 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB 1 1 Ikkje så flinke i engelsk. 29 55 standard A2.02 {P2.01} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2025-09-02 00:52:39.833374+00 high URT:S:A2.02+P2.01:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:09.547891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A2.A2_02 3068 SPN-e8ba670c3bb7789d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB 1 0 Sitio muy agradable para pasar un buen rato entre amigos o en familia 0 70 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:10.46031+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3069 SPN-89ec78693985338f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB 1 1 personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática 72 158 standard P1.01 {P2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+P2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:10.462826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3070 SPN-3e623da475a1f3a5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE 1 0 Allt fungerar som det skall 0 29 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:13.720173+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3071 SPN-d6152e5a026fc966 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE 1 1 trevlig personal 34 50 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:13.722777+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3072 SPN-680602dd7e98826c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE 1 2 Drivers day på onsdagar. Dubbel tid 52 86 standard V1.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 medium URT:S:V1.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:13.725047+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3073 SPN-7470c3621c3da1e1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE 1 0 Sitio para pasar un buen rato y divertirte compitiendo. Tienen vehículos para todas las edades y para personas minusválidas. 0 127 standard O1.05 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:16.300923+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3074 SPN-190c6e21f591cd3a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE 1 1 la señora que te recibe y atiende es bastante seca. 143 194 standard P1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:16.304396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3075 SPN-bd16347532028e92 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE 1 0 Muy corto el tiempo 0 19 standard J1.05 {} V- I2 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:J1.05:-2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:16.860525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_05 3076 SPN-5310013f3e5711c5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE 1 1 el sitio bien 20 33 standard E1.04 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 medium URT:S:E1.04:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:16.863672+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3077 SPN-71819d5359533f61 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE 1 2 pero un poco caro 34 51 standard V1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:-2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:16.866404+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3078 SPN-fa9e50e32bf98bee Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB 1 0 Anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañero y a mi hoy un poco antes de lo que yo habia calculado. 0 157 standard J1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:J1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:18.468982+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_02 3079 SPN-20e4bc9b178d686a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB 1 1 El chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta. 158 248 standard P4.01 {J1.02} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:P4.01+J1.02:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:18.471891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P4.P4_01 3080 SPN-390f64fee7748a61 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB 1 2 Me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la ultima vuelta por unos segundos. 249 381 standard V4.01 {R1.02} V- I3 CR-N S3 A3 TR ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.01+R1.02:-3:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:18.474387+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3081 SPN-75d36b861b03f672 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB 1 3 Estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido. 383 463 standard R4.03 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:R4.03:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:18.476731+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3082 SPN-4b808d60bf7f17f7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB 1 4 Para mi la atencion y valoracion al cliente es lo mas importante. 464 527 standard R3.04 {} V- I2 CR-N S1 A2 TH EI \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 medium URT:S:R3.04:-2:12TH.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:18.478988+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 3083 SPN-6658ad72a291ece0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE 1 0 Un buen lugar para disfrutar con amigos. 0 40 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:20.281689+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3084 SPN-2bab64dae910386c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE 1 1 Lastima que muchas veces hay participantes de otras categorías superiores que no respetan a los F200 y van a fuego creando peligro y choques innecesarios. 41 195 standard E4.01 {P1.02} V- I3 CR-N S3 A3 TR ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01+P1.02:-3:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:20.28476+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3085 SPN-40b72fcafd5070c3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB 1 0 Una pista genial. Muy cuidado todo 0 34 standard O2.02 {O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O2.02+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:21.237746+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3086 SPN-96441ded6eecf6f4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB 1 1 un trato espectacular, y los trabajadores super cercanos 36 92 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:21.240216+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3087 SPN-9e6d0c55d2cde3de Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB 1 2 Un gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de ti. 94 199 standard E1.04 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:21.242496+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3088 SPN-c55a708d77c8c41f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB 1 3 Además de las vistas al mar menor. 200 233 standard E1.04 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E1.04:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:21.244749+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3089 SPN-dd433d3e722d2360 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE 1 0 Un circuito lleno de adrenalina siempre super limpio y listo para las carreras 0 79 standard E1.01 {O1.04} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:E1.01+O1.04:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:25.331907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3090 SPN-bd173a6a6f5c7e31 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE 1 1 para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para llevar el karts así limite 80 207 standard O2.03 {O1.02} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:O2.03+O1.02:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:25.336632+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3091 SPN-55f6c61df2b1b10a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE 1 2 al resumir un super circuito y de gente especializada Enel karting 208 273 standard P2.01 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-03-06 01:52:39.833374+00 high URT:S:P2.01+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:25.35089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 3092 SPN-095feed7eba63cee Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB 1 0 Buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien! 0 102 standard O1.02 {O4.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:25.364812+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3093 SPN-8eab75f1d72b98e6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB 1 1 Muy cuidado todo, y Con buena tecnología de control de tiempos!! 103 168 standard O2.04 {E3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O2.04+E3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:25.367192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 3133 SPN-a972fbbc71c5e49d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB 1 3 Volveremos, sin duda. 91 111 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:49.407412+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3094 SPN-486dad0a2ea0a1d1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB 1 2 Para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! Recomendable!!! 169 271 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:25.368283+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3095 SPN-e5a0ecee061e177b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB 1 0 Es la tercera vez que voy. 0 26 standard R4.03 {} V+ I1 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R4.03:+1:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:30.091033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3096 SPN-bc72ffb8f0290b72 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB 1 1 Pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera vuelta se rompió los frenos, si, del todo. 27 169 standard O1.04 {O1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.04+O1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:30.092349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 3097 SPN-1be790aee3d1bfc5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB 1 2 Mala suerte? Quizás. 170 190 standard R1.02 {} V0 I1 CR-N S1 A1 TC EI \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 medium URT:S:R1.02:01:11TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:30.093271+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 3098 SPN-c6fa23ce051824f4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB 1 3 les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera vez que he tenido problemas con ellos. 191 328 standard J4.03 {R2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:J4.03+R2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:30.094094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J4.J4_03 3099 SPN-73a68ecbea6cc6f6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE 1 0 Siempre ha sido un sitio familiar y muy bien atendido. 0 55 standard R3.04 {P1.01} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R3.04+P1.01:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:31.221018+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 3100 SPN-80ab879ad29d3e23 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE 1 1 Pero ña chica nueva deja mucho qie desear en el trato con el cliente. 56 126 standard P1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:31.2233+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3101 SPN-d0a93bc7e0c57f25 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE 1 2 Le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello. 127 205 standard R3.05 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 medium URT:S:R3.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:31.225419+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 3102 SPN-c161607febe7285c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE 1 3 Pero si ham de tomar nota. 206 229 standard P2.05 {} V- I2 CR-N S2 A3 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P2.05:-2:23TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:31.227506+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_05 3103 SPN-218feec974fceb7a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE 1 0 Coches rápidos, circuito duro y Expectacular, instalaciones muy adecuadas, parking propio, y personal agradable. 0 112 standard O1.02 {E1.03,A4.02,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03+A4.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:32.620968+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3104 SPN-c5c1daf706fef5c9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE 1 1 Mi experiencia y la de mi hijo ha sido muy muy buena. Y repetiremos seguro. 114 189 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:32.623416+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3105 SPN-d4cf01ec5380103c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 0 Karting moderno y bonito, te sientes un piloto. 0 47 standard O2.03 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:35.672469+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3106 SPN-0d6ad5020e49e216 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 1 Llevado por una familia que te asesora y ayuda en tus dudas. 48 108 standard P2.04 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P2.04+P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:35.674964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_04 3107 SPN-f313665a62d35a90 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 2 Instalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por meta. También tienen cámaras que van en tu casco para grabar la carrera. 109 283 standard O1.02 {E1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:35.677104+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3108 SPN-1c537063967282cf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 3 Desde la cafetería y la terraza que encima hay ves perfectamente el circuito. 284 363 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:35.679297+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3109 SPN-5b3a8b0dedc98207 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 4 Si tienes suerte ves los aviones de la Base aérea de San Javier ya que la pista del aeropuerto está a 300 m. 364 473 standard A4.01 {} V+ I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 medium URT:S:A4.01:+1:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:35.68162+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3110 SPN-b8169501339a3209 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 5 Bonita jornada. 474 486 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:35.683447+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3111 SPN-cc2f02e54ab86b5c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE 1 0 Muy buenas instalaciones. Se hace bastante ameno esperar tu turno porque tienen una terraza a la sombra para esperar. 0 117 standard E1.03 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.041898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3112 SPN-ae535cef738f020d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE 1 1 Un poco más caro que otros Karts. 118 151 standard V1.01 {} V- I1 CR-W S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:-1:21TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.044139+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3113 SPN-3a37e84598a3b095 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 0 Perfecto para pasar una tarde de ocio diferente. Tienen distintos paquetes dependiendo del tiempo que quieras estar. 0 117 standard O2.03 {O4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03+O4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.987002+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3114 SPN-2cf3ae1ad8e05548 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 1 De precio muy bien. 118 137 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.988722+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3115 SPN-a69a7d37d2e42876 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 2 Estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver. 138 216 standard R4.03 {V4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R4.03+V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.989929+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3116 SPN-00ac2fedf42151d9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 3 El personal un 10. Muy amables y ayudando en todo momento. 217 276 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.99127+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3117 SPN-3cf22f063f261a39 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 4 Cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al Mar Menor. 277 381 standard E1.04 {O2.03} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04+O2.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.99253+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3118 SPN-d3588e0875922052 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 5 Recomendable. 382 391 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:39.993604+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3119 SPN-8725777d1fe1a11e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB 1 0 Venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fondo. No necesitas más velocidad para pasarlo muy bien 15 minutos. Vueltas de 1 minuto sabiendo coger las curvas y con cuidado de no patinar, 👍😃😃😃👍 0 253 standard O1.02 {O4.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:40.603845+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3120 SPN-3a7108bcf92252c2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB 1 1 Buena atención 256 270 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:40.604866+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3121 SPN-285ae14fa45f815b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB 1 2 no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momento. 273 368 standard O3.04 {O2.03} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.04+O2.03:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:40.605917+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_04 3122 SPN-fb4e94b32b77346e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB 1 0 Ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. No puede salir un niño de 13 años con tíos de 40 que no hacen nada más que comérselo en la pista. 0 189 standard O4.04 {A3.02} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O4.04+A3.02:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:41.742447+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3123 SPN-1c0f5b6e78142e33 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB 1 1 Además creo que fueran 10 min en vez de 8 tampoco estaría mal!! 190 254 standard O3.02 {V4.01} V- I1 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O3.02+V4.01:-1:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:41.745492+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3124 SPN-58c4a969bd1f69bb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB 1 2 La organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utilizan. 255 359 standard E4.03 {J3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E4.03+J3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:41.748618+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 3125 SPN-552ca95db15557c5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB 1 3 El circuito es bueno con su curvas cerraditas y un par de rectas buenas. 360 430 standard O2.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:41.75123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3126 SPN-cec6e7e95ece0224 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB 1 0 Muy buen servicio 0 17 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:42.143901+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3127 SPN-c29cfd38d62e9151 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB 1 1 el niño encantado , ya quiere volver 20 56 standard V4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:42.148255+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3128 SPN-4b87ce9a1c3fc3c5 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB 1 0 Eine sehr tolle kartbahn. 0 25 standard O1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:46.333642+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3129 SPN-510c3f77bd872bdd Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB 1 1 Ich konnte hier sogar mit meinem 4 Jährigen Sohn zusammen fahren. 26 91 standard A3.02 {O4.03} V+ I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2025-07-04 00:52:39.833374+00 high URT:S:A3.02+O4.03:+2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:46.336327+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_02 3130 SPN-0aa1f4641b378606 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB 1 0 Nos lo pasamos genial. 0 22 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:49.396713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3131 SPN-fa101cd9f263ab83 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB 1 1 El precio está muy bien 23 46 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:49.402985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3132 SPN-4042382d56410a1b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB 1 2 la atención de los trabajadores también. 49 90 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:49.405263+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3134 SPN-a52ae9307a0f48ef Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB 1 0 Cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espera y luego tuvisteis a los crios esperando más de 2 horas. 0 160 standard R1.03 {J1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:R1.03+J1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:51.050418+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_03 3135 SPN-9168351e4e6ad0aa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB 1 1 Además los biplazas los tenéis limitados para que gasten menos. 161 225 standard R1.02 {O1.02} V- I2 CR-N S2 A2 TC EI \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R1.02+O1.02:-2:22TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:51.054786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 3136 SPN-d4f4789ee7432fb3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB 1 2 Y presumis de 40 años de experiencia, y tanto... 226 271 standard R1.02 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R1.02:-2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:51.057288+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 3137 SPN-e10e78cbca99dfa5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE 1 0 Inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran imprudencia por parte de la empresa que solo se explica por el afán recaudatorio dada la cantidad de usuarios que se concentra un domingo por la tarde. 0 244 standard E4.01 {R1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E4.01+R1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:51.527517+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3138 SPN-75020be9bb85cc92 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE 1 1 Te encuentras constantemente con karts que te están adelantando con el riesgo de choque que ello conlleva. 245 352 standard E4.01 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E4.01:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:51.531161+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3139 SPN-dc11ae56cda65222 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE 1 2 De hecho mi hija de 15 años tuvo un choque con un kart que se quedó cruzado en mitad de la pista y que no pudo sortear. Resultado tras visitar Urgencias: 3 días de reposo absoluto debido al fuerte traumatismo producido en los 2 tobillos. 353 589 standard E4.01 {O1.05} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E4.01+O1.05:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:51.53404+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3140 SPN-f029d56f495b9fba Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB 1 0 Très bon accueil rapport qualité prix👍🏼 0 40 standard V4.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.01+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:53.281614+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3141 SPN-7f8da69c946da3a2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB 1 1 Sécurité top et très beau circuit. 41 76 standard E4.01 {O2.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:E4.01+O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:53.284232+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3142 SPN-ba567341e7ab2947 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB 1 2 Mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit. 77 162 standard R3.03 {P3.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:R3.03+P3.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:53.286521+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_03 3143 SPN-a42322c5b3f8c537 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB 1 3 Excellente soirée. 163 181 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:53.288148+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3144 SPN-01421b87fe493905 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB 1 4 Les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min. 182 276 standard A3.01 {J2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:A3.01+J2.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:53.290755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3145 SPN-563041275462429a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE 1 0 Buena pista, merece la pena. Distintas opciones. 0 49 standard O1.01 {O3.02} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.01+O3.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:55.662803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3146 SPN-0c3ead5796c30820 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE 1 1 La cafeteria muy agradable y buenos precios. 50 93 standard V1.01 {E1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:11:55.665137+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3147 SPN-0106b53693d20a97 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE 1 0 Atención al cliente muy deficiente. 0 36 standard P3.01 {} V- I3 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01:-3:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:02.75539+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3148 SPN-c82a6d8f3410c4d6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE 1 1 Nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble. 37 118 standard R1.01 {V1.03} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R1.01+V1.03:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:02.760141+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_01 3149 SPN-d5676e89bf4589e7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE 1 2 Una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabajador que sea. 119 233 standard R1.02 {R2.03} V- I2 CR-N S2 A3 TC EI \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R1.02+R2.03:-2:23TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:02.763587+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 3150 SPN-b39a48760170f96d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE 1 3 No recomiendo 234 245 standard V4.03 {} V- I3 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:-3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:02.766853+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3151 SPN-5e3cb71b521ac90a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB 1 0 Trato fantástico, llame por teléfono y me atendieron al momento 0 64 standard P1.01 {J1.01,A3.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+J1.01+A3.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:03.966185+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3152 SPN-280584c4f125783d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB 1 1 aún apesar de que ese día llovió, solo la estancia fue agradable 66 131 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:03.96885+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3153 SPN-8f2dd9d876fa1eb2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB 1 2 tenían buena conservación en los vehículos 133 175 standard O1.03 {O2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.03+O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:03.971451+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3154 SPN-dc5e7fe0e7d92803 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB 1 3 seguridad en la pista 177 198 standard E4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:03.973477+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3155 SPN-73da3c18160f3fd4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB 1 4 un sistema de clasificación que incitaba a mejorar en carrera 201 261 standard O2.04 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O2.04+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:03.975309+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 3156 SPN-60595ffc82395016 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE 1 0 Los trabajadores son muy amables, hay un ambiente súper bueno 0 61 standard P1.01 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:04.204123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3157 SPN-10772adb8d549aa6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE 1 1 he ido 4 veces y en las 4 veces ha sido la experiencia de 10 63 124 standard R3.01 {} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R3.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:04.205964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_01 3158 SPN-5db216194faa880e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE 1 2 el circuito muy guapo y los Karts también. Espectacular 👌 126 182 standard O2.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:04.207754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3159 SPN-a4f8a755e5df2cfb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB 1 0 El sitio es muy bonito y al aire libre 0 38 standard E1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:05.521632+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3160 SPN-cb979ad5fc812274 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB 1 1 si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan 40 131 standard A1.02 {J1.03} V0 I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:A1.02+J1.03:02:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:05.523742+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 3161 SPN-c1f2c74c7a200f27 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB 1 2 Por este motivo no pude usar la pista 133 170 standard O3.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:05.526789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3162 SPN-cc8080bcd7627d66 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB 1 3 pero entre al lugar y la atención muy agradable, me explicaron todo 172 239 standard P1.01 {P4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:05.529356+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3163 SPN-6bc8efd5a503ef41 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB 1 4 Seguro volveré 241 255 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:05.531738+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3164 SPN-d8755340d4ea6bfd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTMWY3TWxRRRAB 1 0 Un sitio muy divertido y con grandes profesionales 💯✨ 0 53 standard E1.04 {P2.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.04+P2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:08.774771+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3165 SPN-e7eb7623e3c988ff Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB 1 0 Su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor. 0 95 standard P4.03 {R1.02} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P4.03+R1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:11.844452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P4.P4_03 3166 SPN-7239a70cc615ea0e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB 1 1 Por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los clientes. 96 203 standard P1.02 {R3.01} V- I3 CR-N S2 A3 TR ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.02+R3.01:-3:23TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:11.846525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3167 SPN-0b1d84cdbed37497 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB 1 2 Me reitero experiencia cliente 0 y de respeto ya ni hablamos. 204 265 standard V4.03 {P1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+P1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:11.848047+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3168 SPN-49b7bfc4f001f410 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE 1 0 Muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos. 0 100 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:12.573701+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3169 SPN-142b421d082b281f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE 1 1 Quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido. 101 185 standard J1.05 {O1.05} V± I1 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:J1.05+O1.05:±1:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:12.576129+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_05 3170 SPN-d36a221907960afe Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE 1 2 Repetiremos muy recomendable 186 212 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:12.57883+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3171 SPN-d0b978cb2d15b674 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE 1 0 Los horarios son orientativos. 0 30 standard R1.03 {A1.01} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R1.03+A1.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:14.446488+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_03 3172 SPN-8d3626ace55decd7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE 1 1 Es la opción que tienes porque lógicamente no hay un circuito en cada esquina. 32 111 standard A4.01 {} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A4.01:01:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:14.447672+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3173 SPN-35a24a44da48ff98 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE 1 2 Cerciórate muy bien que está abierto para no darte el paseo. Busca teléfono y llama con anterioridad por que al menos fuera de temporada los horarios no son como marcan. 113 282 standard A1.01 {R1.03} V- I3 CR-N S3 A3 TR ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:A1.01+R1.03:-3:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:14.44901+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_01 3174 SPN-cd021f5b4e16d68d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE 1 0 Le circuit donne vraiment envie 0 31 standard O2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:17.667907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3175 SPN-ca0484e9148e0f47 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE 1 1 mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréable 😡 32 137 standard P1.01 {J1.01} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+J1.01:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:17.671154+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3176 SPN-6560402c8164398e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE 1 2 je conseille plutôt d'aller à Go-Karts Orihuela Costa qui eux sont beaucoup plus courtois 138 226 standard P1.01 {} V- I2 CR-W S3 A1 TC EC \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:-2:31TC.EC.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:17.675006+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3177 SPN-69ddba2478629f4f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE 1 0 Primera vez que mi hija de siete años pilotaba un kart. Espectacular, ha salido eufórica de su carrera. 0 104 standard O1.05 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:20.890174+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3178 SPN-610e3b771303e15d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE 1 1 Los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infantil, todos corren en la misma pista, mejor este método que la pista infantil ). 105 285 standard J2.01 {E1.03} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:J2.01+E1.03:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:20.893046+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3179 SPN-d9fc8e5ea37cbf92 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE 1 2 Lo hemos pasado en grande. Volveremos seguro 286 327 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:20.897487+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3180 SPN-4de851b0c0649ac1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB 1 0 Hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el gran circuito que tenéis. 0 125 standard O1.01 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.01+O2.03:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:21.772876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3273 SPN-6baecc2ecb40b7a5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE 1 1 Volveré sin duda. 113 130 standard V4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:S2A1TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.242001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3181 SPN-105e0e1fb130e130 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB 1 1 Excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin duda alguna y los más grandes también. 126 263 standard P1.01 {P3.01,P3.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+P3.01+P3.05:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:21.774025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3182 SPN-76abdc7f5a49a24d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB 1 2 Geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞O simplemente pasear 🏆🥇🥈🥉😘 264 356 standard E1.04 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E1.04+E1.03:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:21.775847+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3183 SPN-fcd15ca88cb2a161 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwcnZ6TnFBRRAB 1 0 Muy buen sitio para pasar en familia y divertirse un rato. A los niños les encanta, pero los que disfrutamos somos los padres. 0 126 standard O1.05 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:21.979839+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3184 SPN-2c5c042789c2737d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB 1 0 Es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos. 0 80 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:23.394064+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3185 SPN-d50ae9914aac6419 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB 1 1 Se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart. 81 172 standard E2.03 {J1.05} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:E2.03+J1.05:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:23.397581+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E2.E2_03 3186 SPN-d50a05c27937f683 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB 1 2 Merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado. 173 268 standard V1.01 {A1.01} V± I2 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+A1.01:±2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:23.400088+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3187 SPN-0dcad89ec212f4b3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE 1 0 Schöne Bahn, gutes Personal 0 27 standard P1.01 {O2.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:28.950317+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3188 SPN-0ea08129a6794e4a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE 1 1 nur schade das im July und August Mittwochs die 1 für 2 Regelung nicht gilt. Da habe ich mich schon verarscht gefühlt... 29 149 standard V1.03 {R1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.03+R1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:28.9527+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_03 3189 SPN-39fabd5e7c1dcfaa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB 1 0 La verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos seguro de lo contentos que quedamos 0 134 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:30.051092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3190 SPN-e73f427caf7c5ec9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB 1 1 igual el tiempo que duró se nos hizo muy corto 136 183 standard O1.02 {V4.01} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+V4.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:30.053539+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3191 SPN-d567c05a8458035b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB 1 2 Volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo. 185 282 standard V1.01 {R4.03} V+ I2 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+R4.03:+2:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:30.055671+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3192 SPN-62a49a13128c73b6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB 1 0 Estupendo circuito. Si te gusta el Karting es el lugar ideal para quemar adrenalina. 0 85 standard O2.03 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:32.283065+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3193 SPN-16ff8dfb4bf2390d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB 1 1 Los coches están bastante a punto. 86 120 standard O1.04 {O2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.04+O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:32.285602+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 3194 SPN-c76b5eafc6dfa190 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB 1 2 Las sensaciones son muy buenas. 121 152 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:32.287511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3195 SPN-f2a6fbdbb882b8b9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB 1 3 He pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista. 153 251 standard E1.04 {R3.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04+R3.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:32.289186+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3196 SPN-f89ec838233616a0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ1aXZuVGRREAE 1 0 Prueba tus habilidades de conducir y diviértete 0 47 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:12:32.744231+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3197 SPN-09ecdfcc89e2bcb9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE 1 0 Estupendo mini karts, que parece un circuito de Fórmula Uno por la calidad de sus coches y de las instalaciones. 0 113 standard O2.01 {E1.03} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.01+E1.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:04.477935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 3198 SPN-07fe9a9823f017c1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE 1 1 No le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me tocó correr había demasiados coches...no recuerdo exactamente cuántos, peri sí mas de 12, y a veces estaba algo complicado, sobre todo cuando hay mucho Alonso y "Shumaker" !!!! 114 387 standard J1.03 {E1.02} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:J1.03+E1.02:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:04.479924+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_03 3199 SPN-08259651ca84b74e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE 1 0 Mi hijo disfruta enormemente. 0 30 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:10.574204+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3200 SPN-38e4dce770463d94 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE 1 1 Magníficas instalaciones. 31 55 standard E1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:10.576624+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3258 SPN-ef583aebde522b99 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE 1 2 El mejor karting de nuestra zona ! 74 108 standard V4.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:S2A1TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.117581+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3259 SPN-6af4e82a6814e6e5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB 1 0 Simplemente espectacular. Buen circuito,, aunque sé hace corto el tiempo por lo divertido que es. 0 97 standard V4.03 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03+O1.02:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.129624+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3260 SPN-50e03a9b119abf81 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB 1 1 Ya llevo dos veranos seguidos y repetiré 98 138 standard R4.03 {} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:R4.03:+2:S3A1TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.131287+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3261 SPN-3081498b47e21fe8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB 1 0 Una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. Tienen muy buenos frenos. 0 115 standard O1.02 {E4.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+E4.01:+2:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.141922+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3262 SPN-c44c63678071e091 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB 1 1 Repitiria sin dudarlo 116 136 standard V4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:S2A1TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.143508+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3263 SPN-6334b826cb92d517 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMzaE1PbjdBRRAB 1 0 El mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instalaciones y los karts , de 10 0 129 standard V4.03 {P1.01,E1.03,O1.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03+P1.01+E1.03+O1.02:+3:S2A1TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.155131+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3264 SPN-a3db327ea7f6783a Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCNGRXUXllSGxLT1hWeVFsRk1Tams1UkUxeGRHYxAB 1 0 Muy buena experiencia 0 21 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-11-01 01:52:39.833374+00 high URT:S:V4.03:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.168679+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3265 SPN-09e5b914fe19804a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDMzlXQjJnRRAB 1 0 Bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo pero bonita experiencia 😘💙 0 127 standard E4.01 {P1.01} V± I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E4.01+P1.01:±2:S3A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.183453+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3266 SPN-09d016fb31dee291 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB 1 0 Muy divertido. Amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). Hierba. Bien organizados. 0 108 standard O1.02 {J2.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+J2.01:+2:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.197813+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3268 SPN-00bcc05aaf143f59 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB 1 2 Hay ranking de vuelta rápida automático por el número del kart en una pantalla para cada carrera. También lo pueden imprimir. Procuran no mezclar tipos de karts. No atascan la pista con demasiados coches a la vez. 253 463 standard O3.02 {J3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O3.02+J3.01:+2:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.199897+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3269 SPN-564e640857f1fdef Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2enVIT3ZnRRAB 1 0 Buen karting. Muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos por el mismo precio. Al menos en septiembre q he estado yo.... 0 163 standard V4.01 {O1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.02:+2:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.210464+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3270 SPN-c202fe026b51a228 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhek03cUxnEAE 1 0 Magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est super attentif toujours souriant merci à vous 0 145 standard P1.01 {P3.01,O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01+O1.02:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.220136+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3271 SPN-163e76dc10192193 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT205WWVVdzFYM0J3YkcxSFNHNWpOMmszY21wSlZHYxAB 1 0 Lastig om een heat te boeken in het weekend 0 43 standard A1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:A1.02:-2:S2A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.230755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A1.A1_02 3272 SPN-174f7871b3f51b28 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE 1 0 Trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi primera visita. 0 112 standard P1.01 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.03:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.241182+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3274 SPN-d20f788ff036c892 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtNWVuQ3Z3RRAB 1 0 Un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron genial una buena experiencia y el precio económico 0 151 standard V4.01 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01+E1.04:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.251423+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3275 SPN-0d98accf289cfac8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB 1 0 Gran circuito y karts muy divertidos. 0 38 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.26197+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3276 SPN-5d85a39506d8a90a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB 1 1 Trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. Espero q sigan así mucho tiempo porque se merecen lo mejor. 39 188 standard R3.01 {P1.01,R2.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:R3.01+P1.01+R2.01:+3:S3A1TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.262967+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_01 3277 SPN-43c5e26d70367894 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB 1 0 es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy encantado 0 108 standard O1.02 {E1.03} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2016-02-02 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:S3A1TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.272817+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3278 SPN-104f3a27d7428b73 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB 1 1 i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros 109 189 standard V1.01 {} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2016-02-02 01:52:39.833374+00 high URT:S:V1.01:+2:S3A3TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.273613+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3279 SPN-a643d821d1a42191 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4LV9xYVR3EAE 1 0 Un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el personal muy amable y cercano ademas de unas buenas medidas de seguridad. 0 168 standard P1.01 {O1.02,E1.04,E4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02+E1.04+E4.01:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.283911+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3280 SPN-28a7220168d74af8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB 1 0 El paseo en los Karts muy bien, lo disfrutamos. 0 48 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.29427+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3281 SPN-8e537558f4fc0f51 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB 1 1 La atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuito, dejó bastante que desear. 49 176 standard P1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:-2:S2A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.295476+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3282 SPN-264d165c24960d37 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhaHVEbWJBEAE 1 0 Mi hijo de 9 años se lo ha pasado genial. Buen precio y un trato bueno. Karts y pista en buenas condiciones. 0 110 standard V4.01 {P1.01,O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01+P1.01+O1.02:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.307754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3283 SPN-53e84fe0241ebd63 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE 1 0 Experiencia formidable con mis hijos, sobre todo en la carrera infantil!!! 0 75 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.318766+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3284 SPN-21455111d9ba86c3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE 1 1 Personal muy agradable!!! 76 101 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.319632+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3285 SPN-c3b81b09591eebab Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE 1 2 Repetiré sin duda 102 118 standard V4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:S2A1TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.320349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3286 SPN-b7fd4f6fb84112c2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1anVUWFhnEAE 1 0 Genial. La mujer rubia súper encantadora. Los chicos de pista súper atentos a que todos estuviéramos agusto. Súper recomendable este sitio. Volveré seguro 0 154 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.331857+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3287 SPN-0235f33e3234bd82 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNPa3I2MXN3RRAB 1 0 No está ni tan bien, ni tan mal .. relativo calidad -precio .. Cars antiguos y la pista un poco pequeña ! 0 105 standard V4.01 {O1.03,E1.03} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.03+E1.03:01:S2A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:31.341438+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3288 SPN-2a022fd438145aab Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE 1 0 Los mejores karts a los que he ido 0 34 standard O1.04 {} V+ I3 CR-B S1 A1 TH ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.04:+3:11TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:38.73556+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 3289 SPN-986b28950ded0350 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE 1 1 Muy bien de precio 35 53 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:38.737502+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3290 SPN-c727130f9eef9bde Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE 1 2 cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas , te das 4 vueltas y se termina 56 189 standard V4.01 {O1.02} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.02:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:38.738977+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3291 SPN-cb70388cb8eff25d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE 1 3 Los karts bien mantenidos sin ningún problema, la pista igual 190 253 standard O1.03 {E1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.03+E1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:38.740253+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3292 SPN-d9197aa0ff1da774 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE 1 4 sus trabajadores muy agradables 256 285 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:38.741453+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3293 SPN-ecb2cd82d21b796d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB 1 0 una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio 0 88 standard O2.02 {E1.01,O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.02+E1.01+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:41.777863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3294 SPN-c76641cd6c159c21 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB 1 1 personal muy agradable y amable 90 121 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:41.78088+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3295 SPN-96c6819286143acd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB 1 2 Desde Galicia vine y me quedé con ganas de volver, repetiré 123 183 standard R4.03 {V4.03} V+ I3 CR-N S3 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03+V4.03:+3:31TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:41.783023+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3296 SPN-d3a9191d1de27a9f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE 1 0 Sin duda alguna, el mejor circuito para alquilar un Kart de 400cc, circuito divertido y técnico, y además el kart monta motor Subaru de competición y ruedas a la altura para ir muy fino. 0 189 standard O1.02 {O2.01} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.01:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:41.787665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3297 SPN-b3293cf86c1cb4f3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE 1 1 Sin duda volveré. 190 204 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:41.79169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3298 SPN-b243c6ac421517e2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNMcHJQMFZBEAE 1 0 Grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidado. 0 102 standard P1.01 {O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:46.316747+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3299 SPN-3808a1a4feee951a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE 1 0 Siempre un diez, un trato perfecto para ir con niños o para ir a competir. 0 75 standard P1.01 {A3.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+A3.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:50.011846+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3300 SPN-c2ce59ecdf10e50b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE 1 1 La opción de ir con un grupo grande y hacer una carrera completa es la mejor. 76 154 standard O2.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:50.014493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3301 SPN-120f873ceb41bbd0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE 1 2 El circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curvas, aquí hay pianos y césped, que si apuras y te sales es completamente seguro. 155 335 standard E4.01 {O2.03} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E4.01+O2.03:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:50.016574+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3302 SPN-7efd4f1f94f0d068 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE 1 3 Tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada. 336 425 standard O3.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:50.018621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3303 SPN-e83b98a381fffa39 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB 1 0 El personal es muy cercano 0 26 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:54.218717+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3304 SPN-50885036fd2e0278 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB 1 1 su flota de Karts están en muy buen estado 28 71 standard O1.03 {O2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.03+O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:54.220727+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3306 SPN-08abdd768ef26f34 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB 1 3 organizan eventos increíbles 123 151 standard O2.03 {} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O2.03:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:54.224345+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3307 SPN-b43c0a250bb19821 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB 1 4 un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos 180 267 standard A3.01 {O4.04} V+ I3 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:A3.01+O4.04:+3:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:54.226066+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3308 SPN-3d4fb86c7643f3b2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE 1 0 Magnifique piste pour passer un bon moment. 0 44 standard O2.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:56.128054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3309 SPN-0ec3377a00a80a27 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE 1 1 Différentes catégories de kart, casques ionnisés, Charlotte et masque obligatoires. 45 129 standard O3.02 {E4.03} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02+E4.03:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:56.130488+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3310 SPN-10de7a18ff6bf696 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE 1 2 Une équipe au petit soin. 130 153 standard P3.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P3.01+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:56.132673+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3311 SPN-e21fb79acd742936 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE 1 0 Sehr gute Bahn, gute Benziner. 0 30 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:59.782021+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3312 SPN-de5b592ccf6ad720 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE 1 1 Freundliche Mitarbeiter. 31 55 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:59.78368+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3313 SPN-6442042be2df21cd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE 1 2 Helme wurden nach der Nutzung desinfiziert. 56 99 standard E4.03 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E4.03:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:59.785043+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_03 3314 SPN-b77bc7a83d7f8da0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE 1 3 Gutes Preis / Leistungsverhältnis. 100 135 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:14:59.787301+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3315 SPN-7d47f5175b5880b3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE 1 0 Super buena atención 0 20 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:02.698874+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3316 SPN-bfb714e1fed271b0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE 1 1 la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definitivamente repetiría 22 139 standard R4.03 {V4.03} V+ I2 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03+V4.03:+2:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:02.699769+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3317 SPN-61145df4aa3e205e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE 1 0 Estupenda la experiencia. 0 25 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.195528+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3318 SPN-8fab0c409945d7b8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE 1 1 Los F 300 van muy bien. 26 49 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.198505+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3319 SPN-8a6be165fe6fd425 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB 1 0 Muy contentos con ellos! 0 24 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.342975+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3320 SPN-c15a76264735c58d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB 1 1 Las instalaciones impecables 25 53 standard E1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.345474+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3321 SPN-a6ca2eb7f90a27fd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB 1 2 los vehículos de maravilla 55 81 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.347249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3322 SPN-db21997fe4a3b767 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB 1 3 lo mejor el personal! 84 105 standard P1.01 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.349242+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3323 SPN-620b10acda831628 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB 1 4 Muy recomendables para cualquier público y situación, incluso eventos. 106 176 standard O4.04 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.350598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3324 SPN-2794bba66e40d721 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21Wa1ZsRTVPSE5MYzNKaWRXZ3llRFZHZEdoYU4wRRAB 1 0 Cudne miejsce dla całej rodziny 0 31 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:06.972229+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3325 SPN-c78d466cc5a341b1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE 1 0 Mes enfants ont adoré le karting Mar Menor 0 43 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:13.40384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3326 SPN-64fe6a2e3fcb0105 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE 1 1 on a payé 10 euros pour 8min 46 74 standard V1.01 {} V0 I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01:01:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:13.405751+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3327 SPN-7651de995f214ff1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR0aXJuTXp3RRAB 1 0 Para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tienen en su local 0 115 standard O1.02 {} V- I2 CR-W S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:-2:22TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:17.541028+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3328 SPN-997401faf3aa70d9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE 1 0 Es el mejor lugar de Karts de toda la peninsula Ibérica... nisiquiera la pista de Alonso de Asturias es tan completa y afable. 0 127 standard O1.02 {O2.04} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.04:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:17.811935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3329 SPN-98fbce154edd62b2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE 1 1 Además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones 128 219 standard E1.03 {O2.02,O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03+O2.02+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:17.812966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3330 SPN-7792d200e09f1828 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE 1 2 la atención profesional de los responsables y los clientes asiduos como "el Garre y su vaquilla corneadora" no os dejaran indiferentes. 221 357 standard P2.01 {P1.01,E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P2.01+P1.01+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:17.813756+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 3331 SPN-25061f73ec46064a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE 1 3 Recomiendo la actividad en el Mar Menor. 358 395 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:17.814642+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3332 SPN-01bee5854bf40f09 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE 1 0 Los Auxiliares de Pista son prepotentes y son conscientes de que los kars no frenan , se les comenta y dice : " ah ya, esque el latiguillo esta suelto" 0 153 standard P1.02 {P2.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.02+P2.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:18.304425+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3333 SPN-bd92c6e429c6f6c5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE 1 1 Corriendo con el 2° Kart mas rápido del lugar. El deposito de gasolina esta entre las piernas al descubierto ,el asiento de plastico hace daño en la espalda. No hay protecciones en los laterales. 155 352 standard E4.01 {O1.02,O2.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E4.01+O1.02+O2.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:18.306125+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3334 SPN-d436875d661d6cb8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE 1 2 Todos los años vamos y siempre tienen algun fallo, pero este año se han lucido. 353 433 standard R2.01 {O1.04} V- I3 CR-W S2 A2 TH ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R2.01+O1.04:-3:22TH.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:18.308349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R2.R2_01 3335 SPN-581eccaeddf57bca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE 1 3 RESPUESTA AL NEGOCIO: VOSOTROS HABEIS BORRADO LA RESEÑA DE MI PAREJA, YO NO HE BORRADO NADA. OS DENUNCIARÉ 100% 434 542 standard R1.02 {R1.01} V- I3 CR-N S3 A3 TR ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R1.02+R1.01:-3:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:18.310151+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R1.R1_02 3336 SPN-5ac0cd4724a8e9bc Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xOeWNqQnJSMU4yUmpWTk9EWmpia1J6WmpocU9YYxAB 1 0 Kul bana och vettiga Cartar. 0 28 standard O1.01 {O2.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-09 01:52:39.833374+00 high URT:S:O1.01+O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:21.842293+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3337 SPN-905341344420018e Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT21wVlZYTTBabXBhYzBkbmRTMTJSMXBZTldWcGJWRRAB 1 0 Mukava rata ja hyvät autot. 0 27 standard O2.03 {E1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:O2.03+E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:22.634597+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3338 SPN-940289c55f1ee206 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE 1 0 Buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tándem para or con niños. 0 122 standard O2.03 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O2.03+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:25.351869+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3339 SPN-4492402da261f7ec Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE 1 1 Carreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posiciones de los karts. 123 241 standard O3.02 {E3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O3.02+E3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:25.35444+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3340 SPN-c130cc9364e61acf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE 1 0 Superbe accueil une demoiselle parlait le français ! 0 53 standard P1.01 {A2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01+A2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:31.187597+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3341 SPN-5957e4f029c7e743 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE 1 1 Un très beau circuit ! 54 76 standard O2.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:31.188555+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3342 SPN-0bdeeee744204b57 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE 1 2 Qu'une hâte revenir vite pour battre mon record ! 77 125 standard R3.05 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R3.05:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:31.189981+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 3343 SPN-82f58fcd3c304c32 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE 1 0 El circuito es muy bueno y el servicio también 0 46 standard O1.02 {P3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:31.947463+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3344 SPN-c11ae4fb952f7052 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE 1 1 pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida 47 144 standard O1.01 {E1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.01+E1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:31.948963+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3345 SPN-22046bcf5b9a161b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE 1 0 Circuito muy divertido técnico y muy bien cuidado 0 50 standard O2.02 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O2.02+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:32.183945+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3366 SPN-87759d2674d0df99 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB 1 0 Buen circuito, bien cuidado 0 27 standard E1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:54.020592+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3640 SPN-ab6490b1ab1badda Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvb2FyQ2JnEAE 1 0 Sehr gepflegte Anlage 0 21 standard E1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:E1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:42.007397+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3346 SPN-aeea75958154a363 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE 1 1 Trato muy muy agradable tanto de los dueños como del personal 53 114 standard P1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:32.189129+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3347 SPN-1c55fbcecce14ce9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE 1 2 Cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo 117 194 standard E1.04 {E1.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E1.04+E1.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:32.192664+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3348 SPN-352ff87beabab450 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE 1 3 100% recomendable 197 212 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:32.195905+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3349 SPN-b9880423cd2cc765 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ3bkxfMlp3EAE 1 0 Pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre karting c'est vraiment trop dangereux 😰 0 138 standard E4.01 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:35.497012+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3350 SPN-212ccc483170e673 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB 1 0 Fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌. 0 78 standard O1.02 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:38.60434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3351 SPN-5519bb32e7d604a9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB 1 1 Tiene cafetería con terraza fantástica 79 115 standard O2.03 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:38.606642+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3352 SPN-aa9d72c5abc7c0d8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB 1 0 Posiblemente la mejor pista de Murcia. 0 38 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:40.913549+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3353 SPN-b45b7741fdede153 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB 1 1 Si sois 10 o más se pueden hacer calentamientos, clasi y carreras. 39 106 standard O2.02 {A1.02} V+ I2 CR-N S3 A2 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O2.02+A1.02:+2:32TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:40.916237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3354 SPN-04ad8facfeb33126 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB 1 2 Pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora. 107 202 standard J2.02 {A3.04} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:J2.02+A3.04:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:40.918547+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 3355 SPN-b3b176f004614951 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURKMk9pcDVBRRAB 1 0 Roligt, bra. Helt ok cartar. 0 28 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:42.343537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3356 SPN-5ba27b1a03f34d68 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNMaDk2bEtREAE 1 0 Un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que hay. 0 105 standard E1.04 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04+O1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:45.084028+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3357 SPN-73cfc0f64a104f23 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB 1 0 KARTING DE LUJO¡¡¡ perfecto para pasar un buen rato con los amigos,familia. 0 76 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:48.034702+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3358 SPN-0edfa3b184e5c692 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB 1 1 los chicos encantadores y muy atentos¡¡¡¡ 77 118 standard P1.01 {P3.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:48.037161+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3359 SPN-712ae60f007a12ca Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB 1 2 comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta genial. 119 226 standard E1.04 {O2.03} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:E1.04+O2.03:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:48.038794+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3360 SPN-76801d41f01df641 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB 1 3 muy bien localizado.. 227 248 standard A4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:A4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:48.040469+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3361 SPN-ff91162f1ad8e357 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB 1 4 MUY RECOMENDABLE¡¡¡¡¡ 249 268 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:48.041907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3362 SPN-bb774bb1a168d2eb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBNGVmN0tnEAE 1 0 Nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de nuestra cita reservada 0 123 standard J2.02 {P1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:J2.02+P1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:53.15091+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_02 3363 SPN-872ead75942d5b86 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB 1 0 Es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona, súper divertido y rápido 0 127 standard O1.02 {O2.04} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.04:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:53.503384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3364 SPN-bbad6a288e7ccb70 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB 1 1 pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas cosas 128 233 standard P1.01 {R1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+R1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:53.506379+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3365 SPN-5e657ee2ef85d8ad Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB 1 2 5 estrellas se queda corto. 235 261 standard V4.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:53.508641+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3367 SPN-1543609f8fc106d2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB 1 1 gente excepcional 30 47 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:54.023328+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3368 SPN-e7c2c9da0e0de013 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB 1 2 los karts están muy bien cuidados y muy competitivos 49 102 standard O1.03 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.03+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:54.026078+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3369 SPN-0a34f6db71564d80 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB 1 3 es ideal para pasar un día genial con amigos y pasarlo en grande 104 169 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:54.029352+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3370 SPN-242b80427c079685 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB 1 4 Repetiría sin duda alguna 💪 171 196 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:54.031492+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3371 SPN-27fda4a6ff986d61 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB 1 0 Genial. Un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer carreras en grupo con los amigos. 0 130 standard O1.01 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.01+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:58.990845+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3372 SPN-925ce81896ca42eb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB 1 1 Buen precio y karts en buen estado. 131 166 standard V1.01 {O1.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2017-02-01 01:52:39.833374+00 high URT:S:V1.01+O1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:58.992592+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3373 SPN-1e5d5a8659aa26ac Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB 1 0 Excelente atención. 0 19 standard P3.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.006048+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3374 SPN-0922b2c74b2ef486 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB 1 1 Muy buena pista . Buenos coches. 20 52 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.00823+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3375 SPN-35d5f8c996228ced Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB 1 2 Precios asequibles. 53 72 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.01043+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3376 SPN-5dad1c9b6982af65 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB 1 3 Repetiremos! 73 85 standard R4.03 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.012382+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3377 SPN-227927debbafc182 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURfanN2MGhnRRAB 1 0 Muy agradable el personal y circuito muy intretenido. 0 53 standard P1.01 {O1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.025484+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3378 SPN-8718cee8a9092c03 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDeWRiMzdBRRAB 1 0 Trato perfecto, mis niños disfrutaron un monton 0 47 standard P1.01 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.039063+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3379 SPN-ff7eedd22e4b2654 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNveF9DS3hRRRAB 1 0 Maravillo Kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza y cuidado! por estar a la última en todo! y por pedazo de pantalla gigante! 0 175 standard V4.01 {O2.02,P3.01,E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01+O2.02+P3.01+E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.050888+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3380 SPN-1318f39ae317ed02 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE 1 0 Estupendo el trato, la pista está en perfectas condiciones con escapada de sobra. 0 82 standard P1.01 {O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.063282+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3381 SPN-e6baf975b7a38b59 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE 1 1 El kart de 400 funciona sobradamente para ir muy rápido. 83 138 standard O1.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.065481+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3382 SPN-f9169566a5c5179d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2dC1XZzJBRRAB 1 0 Sehr gute Rennstrecke hat sehr viel Spaß gemacht. Sehr empfehlenswert. Jederzeit gerne wieder 0 93 standard V4.03 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.077164+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3383 SPN-c949d504e95e6d3c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRNGZPbFN3EAE 1 0 Es un circuito muy divertido. Su trazado es muy acertado para permitir adelantamientos en gran parte de la pista. Los F200 van muy bien. 0 138 standard O1.01 {E1.03,O1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.01+E1.03+O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.087896+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3384 SPN-dd1dde6da83421ad Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhNXNDNTNBRRAB 1 0 Excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, respecto al circuito es bastante amplio con curvas rapidas y muy cuidado 0 172 standard V4.03 {O1.03,P3.01,P1.01,E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.03+P3.01+P1.01+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.101275+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3385 SPN-fc4d33c92629105b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB 1 0 Por 50€ disfrutas mucho. 0 24 standard V4.01 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.113717+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3386 SPN-38b54af28b2ad07a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB 1 1 Buen circuito y buena atención. 25 56 standard O1.01 {P3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.01+P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.115253+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3387 SPN-b6e5c34905772527 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB 1 2 Hasta te dan tu medalla :) 57 83 standard R3.05 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R3.05:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.116477+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 3388 SPN-2c9fdc189ac20ea2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4bXVlQWtRRRAB 1 0 Una pista muy divertida y unas instalaciones cuidadas al detalle. Todo es perfecto 0 82 standard V4.03 {O1.01,E1.01,O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.01+E1.01+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.128852+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3389 SPN-92701602dc6dbb28 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNHOGNEdEJBEAE 1 0 Nos lo hemos pasado como niños pequeños. El circuito esta de lujo y los trabajadores super simpáticos, repetiría sin duda! 0 122 standard V4.03 {O1.01,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.14004+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3390 SPN-acb4cdd5525128b7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnZQUTlBRRAB 1 0 Muy buena experiencia, los Kars van muy bien y el trazado-asfalto una pasada. Se pasa una buena tarde de risas con los amigos en un ambiente muy familiar. 0 154 standard V4.03 {O1.02,E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03+O1.02+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.150622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3391 SPN-384f8c3fe77194c7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURMN3A3MGNBEAE 1 0 10/10 buenísima experiencia y me lo he pasado pipa 0 50 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.16112+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3392 SPN-40af97b4714125cd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnZ2QzV0l3EAE 1 0 EL MEJOR CIRCUITO DE ESPAÑA. IMPRESIONANTE LAS INSTALACIONES.\nLA PANTALLA GIGANTE ES EL NO VA MÁS.\nTODO EL MUNDO QUIERE REPETIR DESPUÉS DE PROBAR LOS KARTS.\nCOMIDA ESPECIAL 0 175 standard V4.03 {E1.03,O1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03+E1.03+O1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.172374+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3393 SPN-822cdf8b27cebbbb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1d2NMQWFREAE 1 0 El personal muy amable y simpáticos. Lo hemos pasado muy bien sobretodo las niñas (13 años) 0 91 standard P1.01 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.185693+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3394 SPN-b19f4d8d430bd031 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2cFpieUdBEAE 1 0 Grandísima experiencia.\nRepetiremos!! 0 37 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.196325+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3395 SPN-0cadb6f05e646649 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnJPVm9RRRAB 1 0 Impresionante la pista, con todo detalle de gran calidad. Y repetir y repetir. Disfrutas muchísimo. Volveremos!! 0 112 standard V4.03 {O2.02,O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03+O2.02+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.207074+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3396 SPN-5481f22937027332 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTUNvdXBPMXZBRRAB 1 0 Servicio muy bueno. Personal estupendo 0 38 standard P3.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.217737+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3397 SPN-642b2b097500a5f0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURYMy15RTZBRRAB 1 0 Tolle Kartbahn. Für Anfänger und Fortgeschrittene gut geeignet. 0 63 standard O4.04 {O1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O4.04+O1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.228053+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3398 SPN-890919d822be0a64 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVd3JXVHpBRRAB 1 0 Sehr lange Strecke (1,1km), top Preise und kinderfreundlich! Also schwer zu empfehlen! Besser als die Konkurrenz 0 112 standard V4.01 {V1.01,A3.01} V+ I3 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01+V1.01+A3.01:+3:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.238359+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3399 SPN-3bbefe2cbc63e283 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNneHZ1VFRBEAE 1 0 Circuito muy divertido en un lugar privilegiado junto al mar menor. Si quieres pasar un buen rato con tus amigos no dudes en pasarte por Go Karts. 0 146 standard O1.01 {A4.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.01+A4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.248715+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3400 SPN-533eda338c972716 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURvM0tEOTJBRRAB 1 0 Sehr schöner Platz. Gut zu erreichen 0 36 standard A4.01 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:A4.01+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.258868+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3401 SPN-b3c3f7a87f706a68 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJM05YVjd3RRAB 1 0 Circuito muy chulo, variedad de coches con distintas potencias para alquilar. Te puedes tomar algo mientras ves a la gente correr. 0 130 standard O1.01 {O4.03,E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.01+O4.03+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.273299+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3402 SPN-51204faed7ceae6f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURSMzVUNHNBRRAB 1 0 Bra bane, lett og tilpasse fra liten til stor. Området ser ryddig og fint ut.\nKan anbefales👍 0 92 standard O4.04 {E1.01,E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O4.04+E1.01+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:15:59.283812+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3403 SPN-04b26bedfd75da0b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE 1 0 Un sitio estupendo para disfrutar de un buen día de Karts. 0 59 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:01.968153+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3404 SPN-a6b92a19e34ddc08 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE 1 1 Además de la carrera puedes comer allí y saldrás más que satisfecho. 60 129 standard O1.05 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.05+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:01.969024+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3405 SPN-f6e3586ec3ed17bc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE 1 2 Un 10 para la dirección del establecimiento que se nota que año tras año se van superando. 130 218 standard R3.05 {R2.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:R3.05+R2.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:01.969808+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 3406 SPN-91b3eb385450a594 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB 1 0 lo hemos pasado genial, grupo de 10 0 36 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.261651+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3407 SPN-0b36d4cffc097834 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB 1 1 estupendo el personal, muy majos 38 70 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.263899+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3408 SPN-8aa7bd4d9986763a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB 1 2 carreras, organización, pista amplia 72 108 standard O1.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.265829+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3409 SPN-25b1401ba0c1eae7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB 1 0 Buen circuito, con bastantes curvas. 0 37 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.671975+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3410 SPN-156c4fa01962d977 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB 1 1 Genial para niños y mayores. 38 65 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A3.01:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.674342+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3411 SPN-aa19e6e7238845b0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB 1 0 Presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mantenimiento 0 110 standard E4.01 {O1.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E4.01+O1.03:-3:S3A3TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.691082+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3412 SPN-375f04c0f218ccc9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB 1 1 el personal de pista muy bien 112 139 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.69434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3413 SPN-75beeb81f1882d61 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2LUw3OW5BRRAB 1 0 Ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. Podio, contador de vueltas, pole, medallas y comida. Un plan diferente Enel mar menor. 0 183 standard O1.05 {O3.02,A3.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05+O3.02+A3.01:+3:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.708931+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3414 SPN-4329e94668946613 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhd09TdFVREAE 1 0 Me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato 0 89 standard V4.03 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.05:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.723652+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3415 SPN-6423fc11cd4f14f7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2OExlakxnEAE 1 0 Una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales 0 95 standard O1.05 {J2.01,O1.02,A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05+J2.01+O1.02+A3.01:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.740341+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3416 SPN-2855eefdb6bf4ddf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB 1 0 Muy buen sitio para si te interesa el tema. 0 44 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.753523+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3417 SPN-fc094eeb1ab253f6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB 1 1 Buenos precios y un servicio amable y simpático. 45 92 standard P1.01 {P1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01+P1.01:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.75562+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3418 SPN-2663872699273f94 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnbk5ma093EAE 1 0 Increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a cualquier persona. Todo muy bien. Gracias ! 0 144 standard O2.02 {P1.01,E3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O2.02+P1.01+E3.01:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.768726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3419 SPN-3321195a92c079be Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURac2RURXF3RRAB 1 0 Buen karting, coches potentes, circuito rapido e interesante, precios aceptables. 0 81 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+V1.01:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.786094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3420 SPN-a9500e7c88a8ace2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB 1 0 Bonne piste et sensation. 0 25 standard O1.02 {O1.05} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+O1.05:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.800117+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3421 SPN-107be62b32f747ff Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB 1 1 Un peu excessif pour le 400cc 30€ les 10min 26 69 standard V1.02 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.02:-2:S3A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.802637+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3422 SPN-24161ea795d2d3ec Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE 1 0 Mal, realmente mal los karts le patinan las ruedas, falta de ralentí 0 69 standard O1.01 {O1.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.01+O1.03:-3:S3A3TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.819735+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3423 SPN-34aaf1041a942e7d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE 1 1 te tratan mal me parece muy malo esto 71 107 standard P1.02 {} V- I3 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P1.02:-3:S1A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.822076+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3424 SPN-04866eaf8c87e44c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURvbk1PQU1REAE 1 0 Fin og stor bane med bra tidtaker system 0 40 standard O1.02 {E3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:O1.02+E3.01:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.836641+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3425 SPN-774d54144648351a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbzlqcVBREAE 1 0 Muy buen sitio, lo pasamos genial. La pista bien, material muy bien, duchas, barra, el pack completo! 0 101 standard V4.03 {O1.02,O2.01,O3.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03+O1.02+O2.01+O3.01:+3:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.852511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3426 SPN-d788592bcc80679e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURoby1IV3Z3RRAB 1 0 Sehr nette Leute. Preis und Leistung stimmt absolut!! Sehr empfehlenswert! 👍👍👍 0 79 standard V1.01 {V2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01+V2.04:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.864435+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3427 SPN-9094ebfcf97330f2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCeTRxSXRBRRAB 1 0 Experiencia emocionante garantizada. Gran trato del personal. Muy aconsejable 0 77 standard O1.05 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05+P1.01:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.878112+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3428 SPN-22dee9c8c6dabe19 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNId1A3SGxRRRAB 1 0 Adrenalina maxima! 0 18 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.892316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3429 SPN-0843aac80540cccc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNyNkpqRlRREAE 1 0 Increíble la experiencia, muy buen trato e instalaciones. 0 57 standard O1.05 {P1.01,E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05+P1.01+E1.03:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.906388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3430 SPN-9fb2646abca09bcc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE 1 0 Divertido. No parece peligroso. 0 31 standard O1.05 {E4.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05+E4.01:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.919156+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3431 SPN-5dff464ecc0d54bc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE 1 1 Relativamente caro. 12 euros por 8 minutos 32 74 standard V1.02 {} V- I2 CR-N S3 A2 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.02:-2:S3A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.92121+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3432 SPN-fa05a134cbf3e0f0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcFoza1V3EAE 1 0 Una circuito espectacular!! El mejor espacio para sentirte piloto!! Un personal a pie de pista excepcional!!!! 0 110 standard O1.02 {P1.01,O1.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01+O1.05:+3:S2A1TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.932272+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3433 SPN-1f8d168685842a76 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE 1 0 El señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones. 0 90 standard P1.01 {P1.02} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+P1.02:-3:S2A2TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.945118+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3434 SPN-a4556e24744ea9bb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE 1 1 El resto todo bien 91 108 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:S1A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.946803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3435 SPN-9bd4411be94a1dfb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVdXFfUVB3EAE 1 0 Divertido. Los coches de 300 van bastante bien 0 46 standard O1.02 {O1.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+O1.05:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.957528+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3436 SPN-cc85b179127f624a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURheE9DMlNnEAE 1 0 Tienen un trato magnífico, siguen todas las precauciones respecto a COVID 19, divertido, limpio, trato inmejorable, regreso con toda seguridad. 0 143 standard P1.01 {E4.03,E1.01,O1.05} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+E4.03+E1.01+O1.05:+3:S3A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.968017+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3437 SPN-cfd8de3003f7f3f7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ4aTZfWHpBRRAB 1 0 A mis hijos les encanta!! Vamos cada semana. La gente es atenta y amable. 0 73 standard P1.01 {P1.01,P3.01} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03+P1.01+P3.01:+3:S2A1TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.97869+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3438 SPN-db0fde6202114211 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnd0lIeHB3RRAB 1 0 Una pista extraordinaria, circuito seguro y divertido. 0 54 standard O1.02 {E4.01,O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+E4.01+O1.05:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:02.989454+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3439 SPN-6b95bbc7d4eb11d9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPM3NfZjhnRRAB 1 0 Gran sitio, para pasar una mañana y un gran día. Buenos precios y buen precio para comer. 0 89 standard V1.01 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+V4.03:+2:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:03.00106+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3440 SPN-43b2d9b43a631ff3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxb3ZUYXpRRRAB 1 0 Magnifique\nLe personnel et sympa\nPas prise de tête\nPlusieurs kart dispo surtout les 400cc woah le feu\nMerci à vous 0 114 standard O1.02 {P1.01,J2.01,O3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01+J2.01+O3.02:+3:S2A1TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:03.011118+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3441 SPN-eddffe9ab3abbcaf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE 1 0 Sitio enorme, con un servicio excepcional. 0 43 standard E1.03 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:03.688462+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3442 SPN-6385d324896d8710 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE 1 1 Estaba todo muy limpio y desinfectado 44 81 standard E1.01 {E4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.01+E4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:03.690821+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3443 SPN-e0d3dc49d7594d6e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE 1 2 además el tiempo de carrera comparado con el precio estaba estupendamente. 84 158 standard V4.01 {J1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01+J1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:03.692641+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3445 SPN-26e9bed5699c1066 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkdU9mZFh3EAE 1 0 Son muy amables 0 15 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:07.027543+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3446 SPN-42c65bbe31967736 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE 1 0 Los miércoles tienen una oferta genial para grupos grandes. 0 60 standard V1.01 {A1.02} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+A1.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:10.344412+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3447 SPN-7e23a5fa8ca485ac Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE 1 1 Está genial de precio e instalaciones 61 97 standard V1.01 {E1.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01+E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:10.347224+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3448 SPN-43a141c94e5afbe7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3b3FudHl3RRAB 1 0 Una pista estupenda siempre que voy por esa zona término haciendo unas visitas 0 78 standard R3.04 {O1.04} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:R3.04+O1.04:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:12.052214+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 3449 SPN-6116fe02ba39c22b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhd09uTGpnRRAB 1 0 Muy buenas instalaciones para pasar un buen rato de karts. 0 58 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:14.369799+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3450 SPN-ab02ef9dbaca96ed Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE 1 0 Soy cliente habitual y ayer estuve de nuevo como cada mes 0 58 standard R4.03 {} V+ I2 CR-N S3 A1 TH ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+2:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:14.518321+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3451 SPN-174a72ff3c2bf71b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE 1 1 siempre recibo un trato excelente 60 93 standard P1.02 {} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:14.519334+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3452 SPN-3be09051b3a185c1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE 1 2 los kart van de maravilla el circuito esta cuidado 95 145 standard O1.02 {E1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:14.520288+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3453 SPN-b73bb7867971b7d5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE 1 3 el personal tiene un trato excelente 148 184 standard P1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:14.521103+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3454 SPN-045a76aa03000703 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE 1 4 para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio 185 259 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:14.521855+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3455 SPN-b2035bcdc3659631 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB 1 0 Das Personal ist sehr freundlich, auch im Restaurant. 0 54 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:18.504457+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3456 SPN-9e2baa40bc36142d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB 1 1 Die Preise nicht billig, aber durchaus im Durchschnitt..... 55 113 standard V1.01 {} V0 I1 CR-S S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01:01:11TC.ES.S v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:18.506748+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3457 SPN-f255ca8a824387d1 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xCalNUbDNSWEYyU2kxblptbFhRVlF3WjJWdFFuYxAB 1 0 Bra gokarter og gøy bane 0 24 standard O1.02 {E1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-12-01 01:52:39.833374+00 high URT:S:O1.02+E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:18.536755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3458 SPN-7d013a855b8a830a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE 1 0 Excelente circuito, muy grande por lo que la sensación de competencia es increíble. Una gran experiencia. 0 106 standard O1.02 {O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:20.94729+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3459 SPN-7820daf5082ef88e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE 1 1 Apto solamente para amantes del motor 107 143 standard O4.04 {} V0 I1 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04:02:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:20.949759+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3460 SPN-9cc318b273336b2a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB 1 0 Tras probar varios circuitos de Karts de la Región de Murcia, este es sin duda el mejor por el que he circulado. 0 114 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:27.370595+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3461 SPN-762c2b859363ff55 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB 1 1 Sin embargo los Karts no han sido los mejores (aunque no por ello malos). Los que tienen un volante de asas (no sé cómo llamarlo) en vez de uno redondo son bastante incómodos. 115 293 standard O1.02 {E1.02} V- I2 CR-W S3 A3 TC ES \N \N \N \N \N \N f t 2017-02-01 01:52:39.833374+00 high URT:S:O1.02+E1.02:-2:33TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:27.373265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3462 SPN-f76455d409c263f3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB 1 2 Por lo demás una experiencia increíble para ir con un grupo de amigos. 294 359 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2017-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:27.375334+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3463 SPN-504cb37a789b2c55 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE 1 0 La pera!!! Siempre hacemos una carrera familiar y se portan muy bien! 0 70 standard P1.01 {R3.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+R3.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:27.565598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3464 SPN-0f61e647afd6a19e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE 1 1 Es verdad que había un kart que se estropeó pero el resto muy bien! 71 137 standard O1.04 {} V± I2 CR-N S2 A2 TR ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O1.04:±2:22TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:27.567978+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 3465 SPN-e6e04d67514f020c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB 1 0 Para pasar un rato muy bueno y con un personal magnífico. 0 58 standard P1.01 {V4.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:30.02162+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3466 SPN-46b732bbf4aa33c7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB 1 1 Los coches están muy bien. 59 85 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:30.024445+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3467 SPN-09bc5faf1f00e750 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB 1 2 Perfectamente organizado. 86 111 standard J2.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:J2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:30.026529+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3468 SPN-8add41bb4ff0a843 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB 1 3 Repetiré. 112 121 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:30.028756+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3469 SPN-5569ed9357a1787a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURob0xHYXJBRRAB 1 0 Un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encantados ellos y nosotros,lo recomiendo 100% 0 140 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:31.758127+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3470 SPN-8ffc3a2fedae453d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB 1 0 Avions juste besoin de renseignements très bien accueil 0 56 standard P1.01 {A3.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+A3.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:36.129413+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3471 SPN-5bec63d072058c74 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB 1 1 cerise sur le gâteau une des employése parlait français 60 116 standard A2.02 {P1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:A2.02+P1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:36.131733+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A2.A2_02 3472 SPN-59de0eb04c6c4110 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB 1 2 Nous irons avec les enfants 117 142 standard R4.03 {} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:36.134048+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3473 SPN-103230518a0e0da0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB 1 0 Menudo circuito!!!!!. Amplio divertido. Creo que no hay ninguno de estas características en los alrededores!!!. 0 111 standard O2.03 {O1.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:38.600567+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3474 SPN-cb82019f208f1aa4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB 1 1 El personal es excelente. 112 137 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:38.605952+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3475 SPN-45f9cf6e195e5eeb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB 1 2 El problema es que después de probar este los demás saben a poco. 138 203 standard O1.02 {} V+ I3 CR-B S2 A1 TF EI \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TF.EI.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:38.607859+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3476 SPN-55b65de2d8fcf9d4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURvcVBETHFBRRAB 1 0 Bra anläggning för både vuxna, tonåringar och barn! 0 51 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:42.858266+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3477 SPN-e86d8254328d813b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE 1 0 Me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras 0 87 standard R3.04 {O1.01} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:R3.04+O1.01:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:44.731033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 3478 SPN-6e11f33bea2d5a87 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE 1 1 lástima que me pilla muy lejos de casa y no tengo ninguno más cerca 89 157 standard A4.01 {} V- I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:A4.01:-2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:44.733038+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3479 SPN-b0d91c69f3848c86 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE 1 2 pero éste en cuestión me gusta bastante y es de los mejores que hay 158 226 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:44.7349+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3480 SPN-2d328169377d2a17 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE 1 3 aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también 228 314 standard O1.02 {R2.04} V+ I2 CR-B S3 A1 TR ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+R2.04:+2:31TR.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:44.737877+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3481 SPN-9e8214620c54edcd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE 1 4 Muy recomendado para pasar un gran rato entre amigos!! 316 368 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:44.739356+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3482 SPN-97d7180248cf29a5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE 1 0 Los mejores Karts que he probado. Un circuito largo y divertido, unos Karts potentes pero cómodos 0 98 standard O1.02 {O2.01,E1.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.01+E1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:45.152971+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3483 SPN-ac2f48ba015ac3ab Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE 1 1 un trato absolutamente excepcional 102 136 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:45.155262+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3484 SPN-e301b3be37005020 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE 1 2 Sin ninguna duda repetiré 138 161 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:45.157353+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3485 SPN-31bb9e3e47320bde Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB 1 0 Gran lugar para pasar unos momentos de diversión y soltar adrenalina. 0 70 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:51.071561+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3486 SPN-9d8ad8f80c42c465 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB 1 1 Karts de todas las edades y tipos de conducción. 71 120 standard O3.02 {A3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02+A3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:51.07463+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3487 SPN-972ca687274c04cf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB 1 2 Lo recomiendo 100 x 100 121 142 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:51.077219+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3488 SPN-f4758f6e2c774d92 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE 1 0 Los coches están bien 0 21 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:52.99942+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3489 SPN-cdbb60e33fdf4ab7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE 1 1 la atención muy buena 23 44 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:53.002112+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3490 SPN-12e823824fab4c08 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE 1 2 Pasamos un rato estupendo soltando adrenalina, para repetir por supuesto 46 118 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:53.004428+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3491 SPN-ecef398f4263675f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE 1 0 Trabajadores majísimos 0 22 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:53.164833+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3492 SPN-ecaeba5b9798b292 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE 1 1 genial para un día con amigos o familia 25 65 standard O4.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:53.167397+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3493 SPN-18606027bc2b7de8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE 1 2 Siempre que vamos a karts elegimos este sitio 67 112 standard R4.03 {} V+ I2 CR-B S2 A1 TH ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:R4.03:+2:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:53.169113+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3494 SPN-f4cd3804d3896531 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE 1 0 Son muy majos, siempre con una sonrisa en la boca 0 50 standard P1.01 {P1.04} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+P1.04:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:59.324742+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3495 SPN-986fe1db2734f9a1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE 1 1 la pista es una pasada 53 75 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:59.327266+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3496 SPN-23f0323f3ea00f62 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE 1 2 Muy recomendable para ir tanto con amigos como con la familia 77 138 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:16:59.329211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3497 SPN-67de7dc31e306177 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE 1 0 Es el mejor circuito de karting de la Región de Murcia y de levante no solo por los karts, higiene y circuito sino por el trato y servicio al cliente. 0 152 standard V4.01 {O1.02,E1.01,P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01+O1.02+E1.01+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:00.058254+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3498 SPN-8d0c0f9e8a188b52 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE 1 1 Se crea afición sana y competitiva y eso es de agradecer!! 153 209 standard R3.04 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R3.04+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:00.061878+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 3499 SPN-23a19d0ea6cfe8f4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURQaUlQT3NRRRAB 1 0 Toll Strecke, super Anlage. Sehr Empfehlenswert. 0 48 standard O2.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:03.594884+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3500 SPN-3e9b687372aa4409 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE 1 0 Somos de Galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de acudir por lo menos unas 3-4 veces al Go Karts Mar Menor 0 156 standard R4.03 {} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:04.227168+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3501 SPN-9b343543f994a450 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE 1 1 personal de 10, circuito de 10 y Karts de 10 158 203 standard O1.02 {P1.01,E1.03} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01+E1.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:04.229247+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3502 SPN-a449eec22ac8cd44 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE 1 2 muy recomendable la experiencia con el F400! 205 249 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:04.231213+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3503 SPN-b70036e88afa17da Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE 1 3 Tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vuelta rápida, una pasada! 251 370 standard O2.04 {E3.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.04+E3.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:04.2331+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_04 3504 SPN-b945f6d61acaa0ea Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE 1 0 Un gran lugar con gente muy agradable 0 37 standard P1.01 {E1.04} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:06.91427+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3505 SPN-a252cd0ef589049c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE 1 1 a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la trataron muy bien 38 156 standard P1.02 {P3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:P1.02+P3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:06.916807+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3506 SPN-3d4ed68d2c87c603 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE 1 0 Super kartbaan 0 14 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:11.276321+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3507 SPN-ae88abc6a059dd29 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE 1 1 vriendelijke mensen 15 34 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:11.279365+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3508 SPN-ff2501abd98bcb76 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE 1 2 lekkere koffie 35 49 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:11.282512+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 3509 SPN-1d1582afb503cde4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB 1 0 Accueil sympathique. 0 20 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.731012+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3510 SPN-c334f6af85a39318 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB 1 1 Explication facile via whatsapp pour se renseigner. Réponse rapide. 21 89 standard P4.01 {A3.03} V+ I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P4.01+A3.03:+2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.733982+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P4.P4_01 3511 SPN-5eb16518d5a704a7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB 1 2 Nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands. 90 182 standard O2.02 {A3.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.02+A3.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.739417+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3512 SPN-4982054dbc293303 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB 1 3 Un moment sympathique à partager entre amis ou en famille. 183 239 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.741931+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3513 SPN-be9aafb92cc57753 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE 1 0 A mi hijo le encanta ir. 0 24 standard R4.03 {} V+ I3 CR-N S1 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:+3:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.85221+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3514 SPN-b0de6f9fb972b695 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE 1 1 Esta vez ha tenido salida desde la parrilla!!! 25 72 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.854911+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3515 SPN-b4f7696ea779a937 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE 1 2 Las vistas desde la terraza del "pitlane" son fantásticas 73 129 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:14.856837+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3516 SPN-37a6ae0c32ec3d6d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE 1 0 Circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divertido. 0 105 standard O4.03 {O1.02} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O4.03+O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.100965+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 3517 SPN-96dda073be925d44 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE 1 1 Emplazamiento y clima idílico 106 134 standard A4.01 {E1.04} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:A4.01+E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.104251+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A4.A4_01 3518 SPN-4d92454b8db98ec8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnNXB1OW1nRRAB 1 0 Es un lugar genial para hacer unas carreras con los amigos y la familia. Tiene posibilidad de hacer reservas para celebrar eventos. 0 131 standard O4.04 {A1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O4.04+A1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.116151+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3519 SPN-1a4fa7e03bfbcb32 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNEMEpua05BEAE 1 0 Un plaisir de faire du karting avec les enfants et le petit fils wyatt 0 70 standard V4.03 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.126718+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3520 SPN-529448ff61157023 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB 1 0 Inmejorable, las instalaciones y los equipos en perfecto estado 0 64 standard E1.03 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.125867+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3521 SPN-be9dc276f6f09781 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB 1 1 los empleados muy amables 67 92 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.136634+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3522 SPN-8c56a1b70ae0984b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDc192NHdRRRAB 1 0 Esta muy bien, además ahora tienen mucho cuidado con el tema COVID, cuando usas un coche desinfectan tanto el coche como el casco. 0 130 standard E3.04 {E1.01} V+ I2 CR-N S3 A1 TR ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E3.04+E1.01:+2:31TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.137682+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E3.E3_04 3523 SPN-6ce37e6447b41352 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB 1 2 Gran ambiente de carreras 94 119 standard E1.04 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.138021+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3524 SPN-1cb23037377eccf7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrcTUtZjZRRRAB 1 0 Dia bueno de karts, perfecto para ir en familia y amigos. Genial atención y cumple totalmente con las expectativas. Un saludo. 0 126 standard V4.03 {P1.01,O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03+P1.01+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.148677+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3525 SPN-9cc239108f669443 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNdm9QaGZBEAE 1 0 Una pista perfecta para pasar muy buenos ratos.. Muy buena gente... Un 10 0 73 standard O1.02 {P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.160344+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3526 SPN-9a9fa4e9ea0cea2b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQtNDRYNUJREAE 1 0 Todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin 0 78 standard O3.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O3.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.173649+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3527 SPN-f7dfc7316efd007b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURndklhUURnEAE 1 0 Un buen sitio para pasar un buen rato 0 37 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.185615+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3528 SPN-1d2d0054a693600d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURKLWMyYVJREAE 1 0 Para grupos es genial,mas de 10 personas,muy buen precio. 0 57 standard V1.01 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V1.01+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.196152+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3529 SPN-41937ecaa484d914 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2NDZETkxREAE 1 0 Genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones 0 83 standard O1.02 {E1.03,O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.206925+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3530 SPN-de92b4b70f563745 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE 1 0 Muy divertido el circuito, personal simpático 0 45 standard P1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.217561+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3531 SPN-9a742f0e5831170d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE 1 1 y aunque los karts están muy usados mantienen la emoción 46 102 standard O1.03 {O1.02} V± I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.03+O1.02:±2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.218801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3532 SPN-525dcefbab7fc5b6 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2tobWF6WnVSbFJzYjJsWk1tRTROM0JEWDJWTGVrRRAB 1 0 Todo fenomenal 0 14 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.229824+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3533 SPN-a46146cea5f26c87 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQtamZYTGF3EAE 1 0 Muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancados. 0 102 standard E1.04 {E1.03,R2.04} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.04+E1.03+R2.04:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.24034+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3534 SPN-d01b89c5af44a042 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE 1 0 Un trato muy amable y familiar. 0 31 standard P1.01 {R3.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+R3.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.250425+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3535 SPN-b0a801de13fb3c64 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE 1 1 Los karts, las instalaciones y las vistas estupendas. Un 10!❤️ 32 94 standard O1.02 {E1.03,E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+E1.03+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.251644+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3536 SPN-ad862ec30e06d1dd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2cmJxS0dnEAE 1 0 Mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. Y la merienda genial 0 94 standard V4.03 {O4.04,O2.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O4.04+O2.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.260832+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3537 SPN-e6046c675efeb153 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNKekstU0hBEAE 1 0 Buena experiencia! Cuidado con el cars si eres principiante 😅 0 61 standard V4.03 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.271915+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3538 SPN-4bd32a9d116dfad0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwOG9TRV93RRAB 1 0 Très bonne expérience à passer en famille pour ceux qui aiment la course auto. 0 79 standard V4.03 {O4.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03+O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.281619+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3539 SPN-dc666f94afe066e1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhcmJxZG13RRAB 1 0 Buenas instalaciones y coches con el rendimiento y conducción que se espera.\nMuy recomendable. 0 94 standard O1.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.292918+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3540 SPN-ce722fd8aebdff50 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRNjRLc0l3EAE 1 0 Circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agradable. Plan perfecto para un día de diversión. 0 144 standard O1.02 {O1.03,P1.01,V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+O1.03+P1.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.30441+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3541 SPN-4acaa911cfca0714 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25CclQwNVlUMkZYYkZGVlZrbGFNVkZvU1ZBelJuYxAB 1 0 Superleuk 0 9 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-23 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.316828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3542 SPN-44b1fab06d3555aa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwZzV1aDRRRRAB 1 0 Un buen sitio para montar en car, Una pista espectacular. 0 57 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.327338+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3543 SPN-5b8d4536a2c64b8d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPNk1lZnpBRRAB 1 0 Diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia. 0 94 standard V4.03 {O1.02,O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.02+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.337916+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3544 SPN-da49d0c11e10d12f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRektYYWJnEAE 1 0 Excelente lugar para pasar un dia con los karts y celebrar cumpleaños. Muy buena pista y raida 0 94 standard O1.02 {O4.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.02+O4.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.351168+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3545 SPN-ab6e256080bbaf1f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB 1 0 Muy buenas instalaciones y personal muy amable 0 46 standard P1.01 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.362782+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3546 SPN-e28cc1ea8d2e0c6d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB 1 1 el mejor circuito de la región de Murcia 48 88 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.364309+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3547 SPN-dc1763143c525c7a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNheThDUTlRRRAB 1 0 buen trazado de circuito y oersonal amable, buen trato con el cliente. Excelente servicio 0 89 standard P1.01 {P1.01,P1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01+P1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:20.37524+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3548 SPN-790f0676b2bda46d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB 1 0 No nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente con kar que corren mas y nos hagan sentirnos inseguros 0 153 standard E4.01 {J3.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E4.01+J3.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:21.441943+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3549 SPN-ca97df064fdf9dae Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB 1 1 y no son nada atentos ni simpaticos 155 189 standard P3.01 {P1.01} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.01+P1.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:21.445054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3830 SPN-41734109d303d900 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB 1 1 trato supermamable 21 39 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.979436+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3550 SPN-23a0e280f2c892fb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxMk9IUmhnRRAB 1 0 Me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vuelva repito seguro lo recomiendo al 100 x 100 0 145 standard P1.01 {P1.01,E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+P1.01+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:25.087453+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3551 SPN-2703c2c74308478e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE 1 0 Es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico 0 100 standard O2.03 {P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O2.03+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:27.489903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3552 SPN-a7dd811954ed0712 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE 1 1 he pilotado los karts de la categoría F-400 y son impresionantes la potencia que tienen 102 191 standard O1.02 {} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:27.491746+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3553 SPN-8ebb6e633136510d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE 1 2 también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla 193 294 standard O2.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O2.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:27.493646+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3554 SPN-42c3b61740190f21 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE 1 3 nuestros hijos también montaron en los karts y se lo pasaron en grande 296 367 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:27.495639+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3555 SPN-1eefd0941399b858 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE 1 4 Saludos desde Albacete a Manolo, Andrei y Roberta por tratarnos tan bien 369 442 standard P1.01 {} V+ I3 CR-N S3 A1 TC ES Manolo, Andrei y Roberta staff manolo, andrei y roberta \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:27.498537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3556 SPN-39fc33c590c2ec4c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE 1 0 Enhorabuena por vuestro Karting, sois los mejores de Murcia con diferencia, cada día vais a mejor los karts super cuidados y super rápidos, los mejores que he probado 0 167 standard O1.02 {O2.02} V+ I3 CR-B S2 A1 TR ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+O2.02:+3:21TR.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:30.42292+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3557 SPN-a75a220726bf33c0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE 1 1 las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de dentro del bar el recorrido virtual es increíble 171 318 standard E1.03 {E3.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:E1.03+E3.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:30.425186+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3558 SPN-64c4243cbe354e33 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE 1 2 volveremos pronto! 320 335 standard R3.04 {} V+ I2 CR-N S1 A1 TF ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:R3.04:+2:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:30.427008+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_04 3559 SPN-7bafa9ea22fb3e2a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwcDZPMDNBRRAB 1 0 Buen circuito, buen plan para despejarse 🏎️ 0 43 standard O1.01 {V4.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.01+V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:34.510342+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3560 SPN-be2001164e73630f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 0 Gente grosera y maleducada 0 26 standard P1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:49.875304+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3561 SPN-623eedfc4d375fe0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 1 coches muy sucios y llenos de aceite sin mantenimiento 27 82 standard E1.01 {O1.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.01+O1.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:49.87805+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3562 SPN-5c321f076b793e2d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 2 el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bien y olían a quemado 84 205 standard O1.01 {E4.03} V- I3 CR-N S3 A3 TR ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.01+E4.03:-3:33TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:49.880292+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3582 SPN-abd02b4c5e2a3bfc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB 1 1 los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos 60 142 standard P1.01 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.034436+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3563 SPN-75c35a0414af00f4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 3 no te salgas de la pista o des un golpe a otro coche porque al salir te hablan mal y delante de la gente(gritan me vas a hundir el negocio,aquí no vuelves a entrar y eso solo se lo dice a los niños porque no se atreve con los adultos 208 444 standard P1.02 {R1.02} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02+R1.02:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:49.882109+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3564 SPN-ee9c3c54342d5ba5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 4 un hombre de ojos azules y vestido muy sucios y olor sobaco 445 506 standard E1.01 {E4.03} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.01+E4.03:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:49.884193+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3565 SPN-83d66bf95996d43b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 5 nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches 507 591 standard R4.03 {} V- I3 CR-W S2 A1 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:R4.03:-3:21TF.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:49.885611+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3566 SPN-7263c7e2222da4fb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB 1 0 Un gran circuito muy divertido y con diferentes zonas 0 54 standard O1.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.91326+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3567 SPN-2a94f602075205e1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB 1 1 precios razonables,merece la pena 55 87 standard V1.02 {V4.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.02+V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.91482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3568 SPN-410fc183f7d6ca94 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1MmNYNS1BRRAB 1 0 Muy buena experiencia para niños y adultos. Disfrutamos toda la familia 0 72 standard V4.03 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.927134+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3569 SPN-c337fbcb92f9716c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3NHA2S0NnEAE 1 0 Una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. Sin duda repetiremos!!! 0 119 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.941057+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3570 SPN-bf2501bca448cedf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM5bE9UeGFnEAE 1 0 Первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось. 0 84 standard V4.03 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.954026+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3571 SPN-9731fc9b2a8eade1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB 1 0 Un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼 0 92 standard O1.02 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.967208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3572 SPN-47c281d1dfdb5651 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB 1 1 el mejor circuito y el mejor precio 93 128 standard V1.02 {O1.02} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V1.02+O1.02:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.968261+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3573 SPN-5432567d05bddbee Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE 1 0 Personal muy agradable 0 22 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.97955+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3574 SPN-0aea916894d7d29b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE 1 1 circuito guapísimo, para pasar un buen rato👍 25 69 standard E1.04 {V4.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04+V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.980577+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3575 SPN-b04e9958d6af71bd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwMG9XLW1nRRAB 1 0 Con reserva tuvimos que esperar 2h y 15'. Me pregunto para qué sirve hacerla. Gracias. 0 86 standard J1.01 {J2.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:J1.01+J2.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:51.991759+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 3576 SPN-a81b550cfe89ebac Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE 1 0 Супер, карты свежие, трасса крутая 0 35 standard O1.02 {O2.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.005601+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3577 SPN-0404813b9bc96ed6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE 1 1 в среду акция двойное время 37 64 standard V2.05 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V2.05:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.006518+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_05 3578 SPN-1fceca9c90b8e36c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE 1 2 одни из лучших картингов где я был. 66 101 standard V4.03 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.007452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3579 SPN-61cbefbd6159a548 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB 1 0 Tres bien bonne experience avec un score final 0 46 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.018094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3580 SPN-65ec8c224cf606bb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB 1 1 12euro 8mn Je recommande 47 71 standard V1.02 {} V+ I2 CR-N S3 A1 TC EI \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 medium URT:S:V1.02:+2:31TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.019652+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3581 SPN-890a5bfb21c3dcf0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB 1 0 un circuito de lugo super bonito y cuidado buen anbiente 0 57 standard E1.04 {E1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:E1.04+E1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.03353+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3583 SPN-bf446e551a0a6a05 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE 1 0 Buenos profesionales 0 20 standard P2.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P2.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.044645+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 3584 SPN-897dee8e0b0b3811 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE 1 1 precios razonables 22 40 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.045875+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3585 SPN-27fc2e01c9244675 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE 1 2 circuito rapido, divertido y seguro 43 78 standard O1.02 {E4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+E4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.046622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3586 SPN-ed8fd4e1a4861ac4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE 1 0 Los kar van mas fuerte que otros de otros sitios con mismo motos 0 65 standard O1.02 {} V+ I2 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.057218+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3587 SPN-3382f386355db306 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE 1 1 ambiente acojedor y cercano. 66 94 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.058101+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3588 SPN-ff1348d9762ba420 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE 1 2 Circuito muy largo al que volvere 95 127 standard O1.02 {R4.03} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+R4.03:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.058982+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3589 SPN-d0d73d3fa522c840 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB 1 0 Fantástico, la pista es enorme 0 31 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.072169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3590 SPN-0a2d74bb63222885 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB 1 1 el personal muy atento. 34 56 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2026-01-30 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.073032+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3591 SPN-117da2c53a0ceccf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDbXBtVzB3RRAB 1 0 El mejor kart de la región. Coches en buen estado. Pista en muy buen estado. Buena organización. Buen trazado. 0 110 standard O1.02 {O2.05,J3.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+O2.05+J3.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.083248+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3592 SPN-e60f34b90718585c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE 1 0 Muy bien y entretenido como siempre. 0 37 standard V4.03 {R3.01} V+ I2 CR-N S1 A1 TH ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+R3.01:+2:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.093515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3593 SPN-8890a96098468e3e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE 1 1 Un poco lentos para cobrar pero bien 38 73 standard J1.01 {} V- I1 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:J1.01:-1:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.094493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 3594 SPN-8cd687919db94224 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhbnFLWVlBEAE 1 0 Bien organizado. No está muy masificado y la pista está en buenas condiciones 0 77 standard J3.01 {E1.03,O2.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:J3.01+E1.03+O2.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.106801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 3595 SPN-c55479d943bf5cbd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM5OC1pY3JRRRAB 1 0 Muy buena gente y muy bien organizados. 0 39 standard P1.01 {J3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P1.01+J3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.1176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3596 SPN-e6e79713d10fde03 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB 1 0 Los Kars más pequeños corren bastante , bien cuidados 0 54 standard O1.02 {O2.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.128166+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3597 SPN-8fff6e70344b08bd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB 1 1 bien de precio 56 70 standard V1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.12907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3598 SPN-0464c7414abe7b15 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB 1 2 gente muy agradable muy recomendable volveremos 73 119 standard P1.01 {R4.03} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.129944+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3599 SPN-7131a0432d43c6c4 Go Karts Mar Menor unknown google ChRDSUhNMG9nS0VJQ0FnSUNRcTRNORAB 1 0 Har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen. 0 88 standard O3.02 {A3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O3.02+A3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.139397+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3600 SPN-1bb036a67dc229a5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURSNmVUSUp3EAE 1 0 Fantastische kartbaan. Fijn rijdende karts in verschillende klasse. Komen zeker terug. Fam Visser 0 97 standard O1.02 {R4.03} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.148613+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3601 SPN-390852a2a85ece55 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5a3YyOTJRRRAB 1 0 Buen precio, buen circuito, buenos karts y muy buen trato. Completamente recomendable! 0 86 standard V1.02 {O1.02,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.02+O1.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.157578+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3602 SPN-585b37495a973254 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB 1 0 Cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsables deberían hacer algo y no lo hicieron 0 139 standard J4.01 {E4.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:J4.01+E4.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.167092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J4.J4_01 3603 SPN-10366c5c3ebea98b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB 1 1 por lo demás todo genial 140 163 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.1679+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3789 SPN-7f5ba5e4fd475c74 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB 1 0 Buen trato 0 10 standard P1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.649876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3604 SPN-8ffb94b2e56774ea Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3bF9MZUl3EAE 1 0 Sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente 0 92 standard P1.01 {P2.01,E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P1.01+P2.01+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.176948+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3605 SPN-719fdfaef4eb932c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE 1 0 Me lo.pase como un enano... seguro que vuelvo. 0 47 standard V4.03 {R4.03} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.187278+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3606 SPN-507d6d81013dc3af Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE 1 1 Solo un karting con un pequeño bar. Pero eso era lo que buscaba. 48 111 standard O3.02 {O4.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02+O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.188092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3607 SPN-ec5a4cd7a9ef8818 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDcU9YU3FnRRAB 1 0 Buen sitio para pasar con familia, lo tienen todo muy bien organizado 0 69 standard J3.01 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:J3.01+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:17:52.197564+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 3608 SPN-1565aed9eec458ab Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB 1 0 Lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómodo y nada peligroso 0 118 standard O1.01 {A3.01,E4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.01+A3.01+E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:01.479504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3609 SPN-f20183e12f832d71 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB 1 1 personal atento 119 134 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:01.482203+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3610 SPN-acf91980b66a1cdd Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB 1 2 gran variedad de coches 137 160 standard O3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:01.484767+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3611 SPN-7196877de65422d0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB 1 3 yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y muy buen ambiente que se agradece 161 296 standard O1.05 {E1.04} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05+E1.04:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:01.486946+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3612 SPN-23092c4bbfea4a84 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB 1 0 Todo muy bien 0 13 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:08.262755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3613 SPN-4e4c3ec076a9144a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB 1 1 a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos, en la 2 tanda 15 130 standard E2.03 {O1.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E2.03+O1.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:08.265202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E2.E2_03 3614 SPN-f838c132d24901f7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNmczV6V1J3EAE 1 0 Muy bien 0 8 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.731146+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3615 SPN-fde3cfd738bc2f0e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB 1 0 Tienen un kart de 400. 0 22 standard O3.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:O3.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.75125+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3616 SPN-f2b23392eff49ab0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB 1 1 El trato muy agradable y facil de llegar :) 23 66 standard P1.01 {A4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:P1.01+A4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.752786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3617 SPN-9f01ac5d25148711 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLOVlhNXJRRRAB 1 0 Mucha variedad de Karts de alquiler, un trato familiar y excelente. Siempre repetimos! 0 86 standard P1.01 {O3.02,R4.03} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+O3.02+R4.03:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.76593+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3618 SPN-e5dfdc04cb602611 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2cVpEeHV3RRAB 1 0 Muy buen trato y los Karts van muy bien 0 39 standard P1.01 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.778226+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3619 SPN-9195f282050b1c4b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURycDR6ZGFREAE 1 0 Super goede cartbaan. Alles netjes 0 34 standard E1.01 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.789234+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3620 SPN-887fc2f782569001 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE 1 0 El circuito está bien 0 21 standard E1.03 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.801255+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3621 SPN-decdbd90bdbe4211 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE 1 1 pero los mismos karts de misma categoría corren de manera distinta, unos más que otros. 23 110 standard J3.01 {O1.04} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:J3.01+O1.04:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.80268+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 3641 SPN-6ef4b8af1fb9049b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNEdXVXdk5BEAE 1 0 Ge ido varias veces y me lo paso pipa 0 37 standard V4.03 {R4.03} V+ I3 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03+R4.03:+3:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:42.016815+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3622 SPN-3049362fe0c69feb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxd05xa1Z3EAE 1 0 Un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100 0 73 standard P1.01 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.816222+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3623 SPN-69dc491dfd13865d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNoOFltN21BRRAB 1 0 Estuve con mis hijos. Todo muy divertido. 0 41 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.838634+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3624 SPN-f84ae670f4894871 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLak0yUXh3RRAB 1 0 Un muy buen lugar para pasar el día en moto 0 43 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.851999+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3625 SPN-96e36a48ae3b5d67 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNyNWVyNThnRRAB 1 0 Magnificad instalaciones para disfrutar com familia o amigos 0 60 standard E1.03 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.03+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.862187+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3626 SPN-bd9a41210793e343 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcFlHd3RRRRAB 1 0 Magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda. 0 84 standard P1.01 {E1.03,O1.02,R4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.03+O1.02+R4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.872639+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3627 SPN-5b340564824ececf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1clB6SzRnRRAB 1 0 Atención estupenda y Karts en muy buen estado. 0 46 standard P3.01 {O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P3.01+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.883399+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3628 SPN-b499d1b2f7878ef2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURWbVBmV2R3EAE 1 0 Variedad de karts y la pista está bastante bien. He disfrutado bastante . 0 73 standard V4.03 {O3.02,E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03+O3.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.893757+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3629 SPN-b5f3844de18a1c49 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2eVlMaVR3EAE 1 0 Genial, tanto las instalaciones, como el personal.\nUn sitio de 10, repetiremos 0 78 standard P1.01 {E1.03,V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.03+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.90482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3630 SPN-e75754262bdccd94 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRcjZiM253RRAB 1 0 Fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados .. 0 87 standard V4.03 {O1.02,E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03+O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.91525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3631 SPN-6d228650272cc858 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhaXNldmRREAE 1 0 Un sitio para pasar un muy buen rato divirtiendo te 0 51 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.926056+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3632 SPN-15a1d5c906149e81 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNEMy1qRjlRRRAB 1 0 Heel leuk en echt goed georganiseerd 0 36 standard J2.01 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:J2.01+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.938636+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3633 SPN-2c2aae637cf1cf5c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB 1 0 Buen trazado 0 12 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.948601+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3634 SPN-145047dd74f5bed5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB 1 1 pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables 14 99 standard O3.02 {O1.03} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O3.02+O1.03:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.94956+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3635 SPN-1621080a0fdf2948 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtNGEyajdBRRAB 1 0 Grand circuit. Accueil sympathique et tarif interessant 0 55 standard P1.01 {E1.03,V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.03+V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.959606+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3636 SPN-92cd1b60496d3538 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQyMWVybDJBRRAB 1 0 Muy bien organizado, vistas al mar y el personal muy amable. 0 60 standard P1.01 {J2.01,E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+J2.01+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.968946+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3637 SPN-e0a5d5937a41057a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNsZ0w3U0RREAE 1 0 Muí guai para echar un rato bueno a los car 0 43 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.979295+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3638 SPN-06bf0651cc78ae60 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURNdEoyVnZ3RRAB 1 0 Superbe circuit, le personnel est très gentil et les tarifs abordables. 0 71 standard P1.01 {E1.03,V1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01+E1.03+V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.988123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3639 SPN-590391aed95f3170 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN1MFpfcFBnEAE 1 0 Muy bien los críos se lo pasaron en grande, y los mayores también. 0 66 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:41.997355+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3642 SPN-9ea402ecda5b37ef Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURiOE95cFBnEAE 1 0 Хорошее место что-бы весело провести время 0 42 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.255019+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3643 SPN-86f9a8e883e1ddd6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURzaFBxZjJBRRAB 1 0 Es un buen Karting para todos y si quieres echar unos piques con tus amigos Adelante! 0 85 standard O1.01 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.01+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.272143+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3644 SPN-93e75f723f0dbbb6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE 1 0 Los karts van todos muy igualados 0 34 standard O1.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.291146+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 3645 SPN-32f0bbc78019a2b5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE 1 1 el trato fue muy bueno por parte del personal. Un 10. 37 89 standard P1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:P1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.293991+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3646 SPN-c8aa47d1dea44765 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQwcU5QdUJ3EAE 1 0 Sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato 0 74 standard A3.01 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:A3.01+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.310853+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3647 SPN-13c05bcd8c84de6d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB 1 0 Los mejores kart de todo levante con diferencia!!! 0 51 standard O1.02 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.326074+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3648 SPN-5769c0783a7e153a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB 1 1 Muy recomendable y unos precios muy economicos!!! 5** 52 104 standard V1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.328593+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3649 SPN-40c58719c7261b51 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDc01yRFJREAE 1 0 Sans plus j I retourne demain on Vera bien il était tard il allait fermer 0 73 standard V4.03 {A1.01} V0 I1 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 medium URT:S:V4.03+A1.01:02:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.343088+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3650 SPN-13622ce70fbdf555 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ0aVBPSnFRRRAB 1 0 Me encanto el circuito, es muy rápido y divertido. Quiero volver 0 64 standard O1.02 {E1.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+E1.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.358546+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3651 SPN-b4307b20cb14f276 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNYbDdEUmpRRRAB 1 0 Buen sitio para ir con niños 0 28 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.37563+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3652 SPN-28c0e8c3f9cb0ccc Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxM0x2S1pnEAE 1 0 Muy divertido y buena atención, un sitio de diez 0 48 standard E1.04 {P3.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04+P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.390901+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3653 SPN-b82e4e6650e2f87b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURzaXNiU1JREAE 1 0 Genial,el personal muy amable y atentos con los niños lo recomiendo 100% 0 72 standard P1.01 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:P1.01+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.405485+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3654 SPN-10fec4fe704b6ba0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB 1 0 Buena experiencia 0 17 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.417742+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3655 SPN-31e267c18a1c1f93 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB 1 1 pero podrían acolchar los asientos para hacerlo más llevadero 19 80 standard E1.02 {} V- I1 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:E1.02:-1:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.419883+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_02 3656 SPN-f5d9c06c2a2946d0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnMnNyOURBEAE 1 0 Pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok 0 91 standard E1.03 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.440277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3657 SPN-e3317bdffc5c6473 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB 1 0 Trato malo mal educados y groseros 0 35 standard P1.02 {} V- I3 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02:-3:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.453501+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3658 SPN-a5c93efa59540ff7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB 1 1 y el kart no frenaba y me han echao por salirme de la pista 36 94 standard O1.01 {E4.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.01+E4.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.455042+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3659 SPN-653a589aca5d6456 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1OGFQMzlnRRAB 1 0 En general bien. Buen circuito y precios razonables. 0 52 standard V1.01 {V1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01+V1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.466439+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3660 SPN-9c7656387ccf3548 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNtM2VtZ1NREAE 1 0 Endroit sympathique\nPas trop chère.bon rapport, qualité prix. 0 61 standard V2.04 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V2.04+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.478305+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 3661 SPN-4f0167d1ef068387 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURrMy1ENnFRRRAB 1 0 La atención muy buena y una pista fantástica. Nos lo pasamos de cine 0 68 standard P3.01 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P3.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.488712+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3662 SPN-27b3e33e8f33519f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB 1 0 El precio es algo excesivo 0 26 standard V1.01 {} V- I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01:-2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.49922+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3663 SPN-79ee01b1fad627a4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB 1 1 pero el trato excepcional muy atentos 27 64 standard P1.02 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:P1.02+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.500931+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3664 SPN-9e94b5d19838e5d1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURGamVtTzFBRRAB 1 0 Hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa 0 59 standard P3.01 {O3.02,O1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P3.01+O3.02+O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.512114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3665 SPN-86ef770922a9171e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtdlp2QWh3RRAB 1 0 Buena gente y pista divertida. Almuerzos cumplidos a precios normales. 0 70 standard V1.01 {O1.02,V1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.02+V1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.522966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3666 SPN-e400f5fe1cc5a3a7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURNeHUtQl93RRAB 1 0 Superdivertido un buen sitio para pasar un rato agradable con amigos y familia 0 78 standard E1.04 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.533757+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3667 SPN-c4665e414be8810e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMwel9IUk1REAE 1 0 Käykää ajamassa. 0 16 standard V4.03 {} V+ I2 CR-N S1 A1 TC EI \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 medium URT:S:V4.03:+2:11TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.54598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3668 SPN-1b29830f410df66e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUREN01ER0tREAE 1 0 Eine sehr schöne Anlage. Ein Besuch lohnt sich. 0 47 standard E1.04 {V4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.04+V4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.557063+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3669 SPN-18b69a473c6e3976 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBZzRfNmdRRRAB 1 0 Muy divertido, estupendo para pasar un buen rato en familia. 0 60 standard E1.04 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:E1.04+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.568047+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3670 SPN-9d41a0a3797c0a7d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhNkliQ2ZBEAE 1 0 Es un buen sitio, además tienen coches para niños. 0 50 standard O3.02 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O3.02+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.579789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3671 SPN-df7fe7c225237812 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLOGVQY2FREAE 1 0 Muy buen sitio para pasar el día 0 32 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:44.591405+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3672 SPN-17243993b1e00ea4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE 1 0 Muy buen trato 0 14 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.573719+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3673 SPN-8118ae2b5c257182 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE 1 1 Instalaciones perfectas 15 38 standard E1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.575998+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3674 SPN-480330ba690be37e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE 1 2 Muy muy buena experiencia 39 64 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.578191+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3675 SPN-47fdad51b40733ff Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE 1 0 Super karting......on s'y amuse bien 0 36 standard V4.03 {O1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.591989+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3676 SPN-2fcf838c785356e7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE 1 1 Seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣 37 114 standard E1.04 {} V- I1 CR-N S3 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04:-1:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.594086+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3677 SPN-d0d96e353aecae13 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB 1 0 Trabajadores muy agradables 0 27 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.60799+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3678 SPN-5613b1d62961de8e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB 1 1 buen circuito muy divertido el trazado 29 68 standard O1.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.609972+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3679 SPN-4f0d2a3e2ed9d2a9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB 1 2 los kart en buenas condiciones 70 99 standard O2.05 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.611983+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_05 3755 SPN-cb3043ba9723e5d6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM5cTV1ZnJnRRAB 1 0 Leuk om te zien 0 15 standard O1.05 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.918007+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3680 SPN-700870074be1663b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5eGM2UnBRRRAB 1 0 Lindo lugar para todas las edades.\nDiversión y seguridad. Un lugar para seguir volviendo 👍 0 90 standard A3.01 {E4.01,V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:A3.01+E4.01+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.624071+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3681 SPN-a4f910e8fc0cc9a3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRNVl2N2hRRRAB 1 0 Es estupendo. La pista de karts es brutal, cuando conduces un kart te da un subidón. 0 84 standard O1.02 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.636512+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3682 SPN-42a8db12521f8bfd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2bllQTkRBEAE 1 0 Con la Manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y cascos. 0 102 standard E1.04 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.651339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3683 SPN-c1a6f3dd81be226d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB 1 0 Buen sitio, repetiría. 0 22 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.662939+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3684 SPN-4f837d547ebb2c9e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB 1 1 Cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios. 23 101 standard O2.05 {O1.02} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.05+O1.02:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.664397+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_05 3685 SPN-ddd9fd26dbed7cb6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPMGRtelpBEAE 1 0 Buenas instalaciones y mejor equipo! Sitio fantástico, enhorabuena 0 67 standard E1.03 {O2.05} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03+O2.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.675977+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3686 SPN-e2f27309979db2d9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLam9YVUd3EAE 1 0 Excelente 0 9 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 medium URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.688515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3687 SPN-709b9e04e6e04d8d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1LTRYS3dnRRAB 1 0 On a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe 0 92 standard V4.03 {V1.01,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+V1.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.70168+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3688 SPN-f5be1c9e82e4eeb4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3a2JpMHB3RRAB 1 0 Excelente precio y trato. Merece la pena viajar mas por venir aquí. 0 67 standard V1.01 {P1.01,V4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.01+P1.01+V4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.714341+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3689 SPN-68633e8ba3debd8f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURBMklXUFVREAE 1 0 Un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos de la zona. 0 112 standard A3.01 {O1.02} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:A3.01+O1.02:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.726441+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3690 SPN-ffd6e3a6f212bcb6 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT2xvM2NEZEJiRjlsYTBNemMyZ3lSVTVvU2swNU4xRRAB 1 0 Leuke plaats 0 12 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-10-02 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.739189+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3691 SPN-a494b66a4f416830 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURHX2RMMVdBEAE 1 0 Nos lo pasamos increíble, el precio es genial. Los coches van de lujo. 0 70 standard V4.03 {V1.01,O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+V1.01+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.752823+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3692 SPN-dadb22a406b16cf9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE 1 0 Una pista realmente divertida. 0 31 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.764356+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3693 SPN-d63060ad7d18a9c4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE 1 1 Puede que les falte un poco de asesoramiento para los conductores más novatos. 32 109 standard P2.04 {} V- I1 CR-N S2 A3 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P2.04:-1:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.765974+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_04 3694 SPN-0e815a8301ec958a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNleklDZjF3RRAB 1 0 Zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen. 0 93 standard P1.01 {O1.04,E4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.04+E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.776334+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3695 SPN-ae8820ebde15079c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhNUttdnFnRRAB 1 0 Bien moins cher que celui de Torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏 0 89 standard V1.01 {E1.04,P1.01} V+ I2 CR-B S3 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+E1.04+P1.01:+2:31TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.786954+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3696 SPN-4c71032e1839613f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQtMHZtd2FREAE 1 0 Buen sitio par ir buenos precios buena atencion volvere seguro 0 63 standard V1.01 {P1.01,V4.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V1.01+P1.01+V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.800502+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3697 SPN-091f28efe736c1a3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcGY2eV93RRAB 1 0 Un gran circuito ya sea para ir con vehículo privado o para alquilar un Kart con unos amigos 0 92 standard O4.03 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O4.03+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.812887+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_03 3698 SPN-beca3e7e4e11a10b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURlbklYVXl3RRAB 1 0 Trato familiar, instalaciones impresionantes,una auténtica gozada!! Totalmente recomendado. 0 91 standard P1.01 {E1.03,V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+E1.03+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.824454+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3699 SPN-0344f9dafe66ace5 Go Karts Mar Menor unknown google Ci9DQUlRQUNvZENodHljRjlvT25VeVdEUmpPRE5JVkRkVk1HOW9SM3BSUXpsblVtYxAB 1 0 Me encanta. 0 11 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-09-02 00:52:39.833374+00 medium URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.836726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3700 SPN-07f5f3e8afb4d45e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURnZ3ZXUGtRRRAB 1 0 Mejor circuito de toda la zona. Buenos karts y buenos precios. Recomiendo 100% 0 78 standard V1.01 {O2.05,V1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.05+V1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.848808+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3701 SPN-627261701af64741 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURScmN1WUhnEAE 1 0 Muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores. 0 83 standard O1.02 {P1.01,E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.861192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3702 SPN-082cce8ef1d5441c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNczZEclJREAE 1 0 Me encantó la pista, los Karts y la gente que me atendió es un sitio genial un 10 para ellos!!!! 0 96 standard O1.02 {O2.05,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+O2.05+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.877841+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3703 SPN-ac0f132e8c776051 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTa3VHNmhnRRAB 1 0 Gran circuito y en perfecto estado de mantenimiento. Muy amables. 0 66 standard O1.03 {O1.02,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.03+O1.02+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:18:46.891387+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3704 SPN-d525b5c34aac4a7a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdnB1TnBRRRAB 1 0 Muy buen ambiente para disfrutar el dia con amigos. 0 51 standard E1.04 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.764361+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3705 SPN-d3876ee954c633ca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLcTQ3X1R3EAE 1 0 Buen circuito, buena ubicación y excelente atención por su personal. 0 68 standard O1.02 {A4.01,P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+A4.01+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.779716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3706 SPN-138069bfb4d51fab Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE 1 0 Está bien pero es poco tiempo para lo que cuesta. 0 50 standard V1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.79333+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3707 SPN-03ba493c7180d67f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE 1 1 Está mejor el de Orihuela y más tiempo. 51 89 standard V4.01 {} V- I2 CR-W S3 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01:-2:31TC.ES.W v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.795408+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3708 SPN-cc40afcbca673202 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB 1 0 El mejor de la zona. 0 20 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.809557+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3709 SPN-3e86257960bde6c3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB 1 1 Solo cuatro estrellas porque la cafetería puede mejorar bastante. 21 86 standard O1.02 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.81166+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3710 SPN-d8d9d69b736b1ce7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURid2Z5UmVnEAE 1 0 Genial, unkompliziert! Tolle Strecke 0 36 standard O1.02 {J2.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+J2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.826399+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3711 SPN-4b7e89b11286aa94 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPN1p5SjJBRRAB 1 0 Buen trato. Muy simpáticos. 0 27 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.839857+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3712 SPN-c834b7da2ab6dbe2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwMC1MY2hnRRAB 1 0 Un buen sitio para pasar un ratito divertido 0 44 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.853795+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3713 SPN-8d7352189ca3a78c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNOW9iMU5BEAE 1 0 Un buen lugar para divertirse, sobre todo a los que les guste la velocidad. 0 75 standard O1.05 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.868548+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3714 SPN-755d9ee7696c4d3f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwODRpcDNRRRAB 1 0 Muy bien, mi hijo y sobrinos disfrutaron 0 40 standard O1.05 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.880445+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3715 SPN-f2c97aff47acfa6d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVOE83SWJnEAE 1 0 Super pas trop chère et mon fils a adoré 0 40 standard V1.01 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.892766+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3716 SPN-3dc8036d986dde84 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ4czd6eW93RRAB 1 0 Buen circuito y la atención muy buena también. 0 46 standard O1.02 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.903576+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3717 SPN-2540877f2a12e16b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCZ0lxVU13EAE 1 0 Buen lugar para pasar un buen día con amigos o familia 0 54 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.91698+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3718 SPN-9e59fdb506eea9e9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVdWV6ZzZ3RRAB 1 0 Buen circuito y organización. Los karts funcionaban todos similares (para que haya igualdad). 0 93 standard O1.02 {J3.01} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+J3.01:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.928444+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3719 SPN-67c8fc533a59e240 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhenBhTUVREAE 1 0 Un lugar muy divertido para ir con los amigos, familia... 0 57 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.94401+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3720 SPN-c12da73d31c07db8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVNlBqVW9RRRAB 1 0 Riktigt bra till bra pris! Känndes seriöst och samtidigt roligt! 0 64 standard V1.01 {O1.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01+O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.955192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3721 SPN-c01ef1ce95b63ca4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURlaWF6azRnRRAB 1 0 Buen trato y perfecto para pasar un buen rato 0 45 standard P1.01 {O1.05} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P1.01+O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.966808+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3722 SPN-4d6ca08d57ea995b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR2aWFtaldREAE 1 0 Oikein hyvä. Suosittelen kokeilemaan 0 36 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.978936+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3723 SPN-44a50d6227dd18b7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPMV82R2V3EAE 1 0 Buena pista y coches rápidos según cilindrada escogida 0 54 standard O1.02 {O4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.988555+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3724 SPN-62e0d07f524e8f97 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGVYRGNREAE 1 0 Muy buen circuito y muy buena gente 😉 0 37 standard O1.02 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:02.998514+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3725 SPN-7e74ea8a9f92b1ee Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhaVlDLWJnEAE 1 0 Los críos se lo pasaron genial\nEl trato es muy bueno\n👍👍👍 0 56 standard O1.05 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:03.008966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3726 SPN-b029748398e9c50b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhc0lpMTVnRRAB 1 0 Para pasar un rato excelente con los precios bastante competitivos 0 66 standard V1.01 {O1.05} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+O1.05:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:03.02054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3727 SPN-bcba83f89fc5028b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURBMGFYZUtBEAE 1 0 Circuitazo y los karts muy igualados! 0 37 standard O1.02 {J3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:O1.02+J3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:03.029651+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3728 SPN-53651c26064f28de Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR0aXNhNFFnEAE 1 0 Todo perfecto!!! Muchas gracias 0 31 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:03.039385+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3729 SPN-6a8f2a4888e14007 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNBNVlUQVNREAE 1 0 Sehr schnelle Karts. Da lohnt sich der Besuch. Sehr zu empfehlen sind die 300ccm. Sehr schnell..... 0 99 standard O1.02 {V4.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02+V4.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:03.048878+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3730 SPN-e47b41081c176096 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhNy1YWkR3EAE 1 0 La simpatía de los instructores, y el buen asesoramiento a los participantes. Repetiremos 0 89 standard P1.01 {P2.04} V+ I2 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01+P2.04:+2:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:03.057969+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3731 SPN-287414072715edab Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwMk5YZDZnRRAB 1 0 Un rato divertido para los que les guste estas cosas claro. 0 59 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.650734+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3732 SPN-483c3710081a9f98 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhNzVxTEZnEAE 1 0 Volvimos después de 8 años y como sube la adrenalina. Nos encantó. 0 66 standard O1.05 {R4.03} V+ I3 CR-N S2 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05+R4.03:+3:21TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.667721+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3733 SPN-766b970ec416b41f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB 1 0 Instalaciones muy cuidadas. 0 27 standard E1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.685716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3734 SPN-c578cb26b557041a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB 1 1 Con varias opciones para niños y adultos. 28 69 standard O3.02 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.687842+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3735 SPN-8576de1c64a00329 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNWcHJpcFBREAE 1 0 Todo de 10, lo recomiendo sin ninguna duda. 0 43 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.701661+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3736 SPN-a2d5745355dd7700 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURncmRQdExBEAE 1 0 Unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos. 0 98 standard O1.05 {} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.05:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.713687+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3737 SPN-35fa4470503aeba9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNzMGIzblR3EAE 1 0 Muy buen sitio para pasar una tarde de domingo 0 46 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.729014+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3738 SPN-3a52afcacaba6b47 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB 1 0 Bien para adultos. 0 18 standard O4.04 {} V+ I1 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2019-02-01 01:52:39.833374+00 high URT:S:O4.04:+1:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.74729+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3739 SPN-df9026e737ec936b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB 1 1 Para chicos me parece un poco peligroso. 19 59 standard E4.01 {} V- I2 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:E4.01:-2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.74814+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3740 SPN-8e1d1ae505abe484 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURCeU9UOG9RRRAB 1 0 Erg leuk Ongedwongen sfeer en redelijke prijzen. 0 49 standard E1.04 {V1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.04+V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.757881+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3741 SPN-1ac66eede2ccfae8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURXZ0lucVVnEAE 1 0 Lo pasamos de lujo, la gente del circuito muy atenta. 0 54 standard P3.01 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.76963+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3742 SPN-7c519714b1d748e4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNHdEs2VUdREAE 1 0 Das Fahren mit Kindern ist gut 0 30 standard O4.04 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O4.04+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.780167+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3743 SPN-63c79551a56042c9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1bmFLLXJBRRAB 1 0 Genial para pasar un rato con los amigos conduciendo karts 0 58 standard O1.05 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.790169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3744 SPN-45794ed1bdb39655 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURhblBISjlBRRAB 1 0 Excelente diseño, coches muy cuidados y personal profesional!!! 0 63 standard E1.03 {O1.03,P2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03+O1.03+P2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.801034+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3745 SPN-8a063641a987684c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURINUlDVXFRRRAB 1 0 Preis Leistung stimmt perfekt 0 29 standard V2.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V2.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.810967+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 3746 SPN-042f23073b9117ae Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTd1p5cW5RRRAB 1 0 Siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de crisis, enhorabuena!!! 0 118 standard R3.05 {E1.03,E4.01} V+ I3 CR-N S3 A1 TH ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:R3.05+E1.03+E4.01:+3:31TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.820908+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R3.R3_05 3747 SPN-1ffd3be56811359a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNrM3VPUUZ3EAE 1 0 Super jazda za 12 euro 10 minut szaleństwa, polecam 0 51 standard V1.01 {V1.01} V+ I3 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05+V1.01:+3:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.830898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3748 SPN-985b5b6f0c41384e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnTURBNFplVTVBRRAB 1 0 Mala atención reservas fatal 0 28 standard P3.01 {J2.01} V- I3 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2025-03-06 01:52:39.833374+00 high URT:S:P3.01+J2.01:-3:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.841155+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3749 SPN-2e6da1a41cb194b3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN2NUs3cmdBRRAB 1 0 Para pasar un buen rato 0 23 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.85511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3750 SPN-b067ca01243bfc8b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLcGY3OFJBEAE 1 0 Un circuito espectacular y muy buena atención lo recomiendo 0 59 standard E1.03 {P3.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03+P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.865401+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3751 SPN-f829874828b39a4d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVdU52WWxBRRAB 1 0 Un buen sitio para pasar un buen rato, ¡¡¡Super divertido!!!..... 0 65 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.874975+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3752 SPN-decdb53b9defdb05 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDNVpHTnNnRRAB 1 0 Muy buenos, buen circuito y buen precio. De los mejorcitos 0 59 standard V1.01 {V1.01} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.03+V1.01:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.88665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3753 SPN-020ad44ff2268e34 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1cC1iUjN3RRAB 1 0 Muy buena opción para pasar un buen rato 0 40 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.896744+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3754 SPN-9d3226b7314a7030 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNtMW95RzZBRRAB 1 0 Een hele mooie en leuke baan met rechte en moeilijke bochten 0 60 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.906777+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3756 SPN-82011727e5a6b623 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURZdXFDcU1BEAE 1 0 Circuito grande y ancho, para novatos y expertos. Coches de todas las categorías,. 0 82 standard E1.03 {O3.02,A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03+O3.02+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.927687+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3757 SPN-55f17d0db9a277be Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTM1pyOWlBRRAB 1 0 Estupenda pista, muy bien organizados y buenos karts. 0 53 standard E1.03 {J1.03,O1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.03+J1.03+O1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:21.937635+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3758 SPN-1cf28ea15905662b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB 1 0 Mi mejor experiencia en los karst 0 33 standard V4.03 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2016-02-02 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.129558+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3759 SPN-a32672abb4b8a7bb Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB 1 1 pero se podría mejorar un poco más el precio,es un poco caro 34 94 standard V1.01 {} V- I2 CR-N S1 A2 TC ES \N \N \N \N \N \N f t 2016-02-02 01:52:39.833374+00 high URT:S:V1.01:-2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.132778+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3760 SPN-1ae28e53288fb56e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3MkpDRjNRRRAB 1 0 Lugar excelente i divertido para los aficcionados de moto i karting!!! 0 70 standard V4.03 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.151419+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3761 SPN-a6fd3e88115ea30f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE 1 0 Estupenda atención 0 18 standard P3.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.165731+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3762 SPN-50be656d55f30462 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE 1 1 buen circuito 20 33 standard O2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.168164+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3763 SPN-cf60cfc548994367 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwMzgzeDFRRRAB 1 0 Muy buena gente. Gracias 0 24 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.18594+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3764 SPN-74198a02cb2d1b5b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4bS03S0NnEAE 1 0 Buenos karts,buen trato El mejor plan para pasar la tarde 0 57 standard V4.03 {O1.02,P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.02+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.200913+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3765 SPN-bc1a16008e73d087 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndDh2ZGpRRRAB 1 0 Muy buen circuito y muy buena atención 0 38 standard O2.03 {P3.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.215422+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3766 SPN-dd6c4429fb1da2d4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLNWE2bUpREAE 1 0 Experiencia muy buena para pasar con los pequeños y los no tan pequeños. 0 72 standard V4.03 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.228026+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3767 SPN-02ca57d615be396f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3dUxQQ05BEAE 1 0 Un trazado para auténticos leones, trato exquisito, recomendable 100% 0 69 standard O2.03 {P1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O2.03+P1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.238958+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3768 SPN-d8f3dd1f77864a53 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR3bU8zZ0J3EAE 1 0 Veldig tøff bane. Vi vil kjøre mer! 0 35 standard O2.03 {V4.03} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O2.03+V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.251499+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3769 SPN-d42c706aae6ff0ad Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURtbTRqTS1RRRAB 1 0 Buen circuito para hacer karts y muy entretenido 0 48 standard O2.03 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.263153+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3770 SPN-9be08c0f308e4721 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4cXQtRHh3RRAB 1 0 Experiencia increíble, muy segura y recomendable! 0 49 standard V4.03 {E4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03+E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.274128+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3771 SPN-86214c164d490fa8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURxaU0yaWF3EAE 1 0 Genial pista. Muy bien para peques. 0 35 standard O2.03 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.284454+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3772 SPN-b9ec995c3aad9727 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhNC1XUGdRRRAB 1 0 Peefecto todos se lo pasaron pipa 0 33 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.295179+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3773 SPN-09eaaff9899504c2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJb0t2SGp3RRAB 1 0 Una pista buena y buena atención personal y la pista está en un buen estado 0 75 standard O2.03 {P3.01,O1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O2.03+P3.01+O1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.306453+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3774 SPN-153053a48ad9b454 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDdklDYnVRRRAB 1 0 Buenos karts a muy buen precio con buenas medidas de prevención del covid. 0 74 standard V1.01 {V1.01,E4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+V1.01+E4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.318021+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3775 SPN-ba7b305fabbee7cb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDNTdMYlZREAE 1 0 Pasamos una buena tarde. El sitio está bien. 0 44 standard V4.03 {E1.04} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03+E1.04:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.328965+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3776 SPN-cc9bfe9f5bc773b4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJNDhUUnFBRRAB 1 0 Buen circuito y lugar donde pasar un día de motor. 0 50 standard O2.03 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O2.03+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.339334+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3777 SPN-be5e59eb2b3e921a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhbzhfOWp3RRAB 1 0 Todo perfecto y muy amables 0 27 standard V4.03 {P1.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.351933+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3778 SPN-68bf47f0541073ca Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDcFp2dVVBEAE 1 0 Sitio muy divertido para pasar en familia 0 41 standard V4.03 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.362302+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3779 SPN-563d76c7b633ef26 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRM1lHNzhRRRAB 1 0 el mejor karting de la zona con diferencia. A destacar el trato de sus gerentes . 0 82 standard V4.03 {P1.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03+P1.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.372565+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3780 SPN-a87e4f7ae9c3f14d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2cUpDdVl3EAE 1 0 Una pasada... Recomendable 100x100...de los mejores que he visitado. 0 68 standard V4.03 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.384607+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3781 SPN-0b236a20e3e92229 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNhMF9POElREAE 1 0 Buena diversión pero hay que coger los de 300 0 45 standard V4.03 {O4.04} V+ I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O4.04:+2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.394438+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3782 SPN-98c3075c9e40e727 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLdVlXb3R3RRAB 1 0 Velocidad, seguridad y buen precio. Una tarde super divertida 0 61 standard V4.03 {O1.02,E4.01,V1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.02+E4.01+V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.40466+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3783 SPN-6234319fe7560c4b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTUNJb3J5MFB3EAE 1 0 Una experiencia inolvidable 0 27 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.417735+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3784 SPN-a36ae98f32270d31 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE 1 0 Mucha variedad de karts 0 23 standard O3.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.428012+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3785 SPN-df6b004db38d2fd0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE 1 1 lo malo que mezclan karts de todas las cilindradas 24 74 standard J3.01 {} V- I2 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:J3.01:-2:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:19:56.429345+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 3786 SPN-4a9bbf971b8a0f6c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURwLVpuSTl3RRAB 1 0 Karts muy potentes, pista grande y es muy divertido 😃 0 53 standard O1.02 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.6016+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3787 SPN-36dca9294cab9cd8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURkNy1UcFNREAE 1 0 GENIAL, ENDROIT BIEN TENU 0 25 standard E1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:E1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.618276+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3788 SPN-8e3e3be5f4e6c26a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQweTdDa3BBRRAB 1 0 Circuito grande y bien preparado con muchos coches 0 50 standard E1.03 {A1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03+A1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.63578+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3790 SPN-ed6c969bfe101d8d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB 1 1 karts muy cuidados 13 31 standard O2.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O2.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.661909+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3791 SPN-a44ceaa0382e262b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE 1 0 Muy buen trato 0 14 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.674237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3792 SPN-55d53d8da68ca5ba Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB 1 0 Leuke carting 0 13 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.675864+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3793 SPN-533422ba7bb0a02d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB 1 1 wel best reserveren 15 34 standard J2.01 {} V0 I1 CR-N S2 A3 TF ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:J2.01:02:23TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.678265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3794 SPN-5957c56e067d673c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE 1 1 buena pista de karts 16 36 standard O2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.678533+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3795 SPN-2c6d8ed511f67d4f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXM2RqNUJBEAE 1 0 Unas instalaciones muy bien acondicionadas 0 42 standard E1.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.703582+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3796 SPN-4cab54262e003484 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNPMmNyd1pnEAE 1 0 El mejor sitio para ir a montar karts del mar menor 0 51 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.704054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3797 SPN-17e8aa47a8b53959 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQtNjl5V3JnRRAB 1 0 Uno de los mejores circuitos de karting de toda España 0 54 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.729192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3798 SPN-dc1e1ad7108e607b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE 1 0 A sacar alguna pega, la pista bacheada 0 38 standard O1.03 {} V- I1 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.03:-1:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.732388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3799 SPN-272276738bb5c122 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE 1 1 pero genial 40 51 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.74444+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3800 SPN-d25af0d8823a6d0c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVcGFUMWhnRRAB 1 0 Echt een aanrader lang parcour toffe karts 0 42 standard O1.02 {E1.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+E1.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.753141+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3801 SPN-5e4a59657150261e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB 1 0 Buena pista. 0 12 standard O2.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2021-01-31 01:52:39.833374+00 high URT:S:O2.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.754196+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3802 SPN-08e17d0124c88752 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB 1 1 Y precios que no son caros 13 39 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.763046+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3803 SPN-32f802d4f4eec011 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR4aFBlVlZnEAE 1 0 De 10 todo! 0 11 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.763598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3804 SPN-771cbf05ca48aef8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB 1 0 Mejor circuito de la Costa. 0 27 standard O2.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O2.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.781347+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3805 SPN-6eb66825dfbfdeb9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4Xy02ZWV3EAE 1 0 Buen estado de los karts, limpieza y seguridad 100% 0 51 standard O1.03 {E1.01,E4.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.03+E1.01+E4.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.782236+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3806 SPN-d1759c7ca2877777 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB 1 1 Rápidos y limpios 28 45 standard J1.01 {E1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:J1.01+E1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.782339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_01 3807 SPN-8becc108a8a8b67c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM4eTV1QkhBEAE 1 0 Sitio agradable con parking. Buenos karts 0 41 standard E1.04 {A4.02,O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.04+A4.02+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.797703+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3808 SPN-d3bc7aa67a0a9559 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhdU4teWJnEAE 1 0 Estupendo diseño del circuito y muy buena la gestión!!! 0 55 standard O2.03 {J2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+J2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.798432+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3809 SPN-faeefaefe11cad17 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3Mk4tTWl3RRAB 1 0 un circuito increible y sus servicios tambien 0 45 standard O1.02 {V4.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2016-02-02 01:52:39.833374+00 high URT:S:O1.02+V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.81718+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3810 SPN-0b6585d2bf802b2d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM0anFXNUxBEAE 1 0 Muy amables y muy buen servicio. 0 32 standard P1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.817728+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3811 SPN-d19ef515a14bd97c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE 1 0 Buenos precios 0 14 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.833262+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3813 SPN-0e89140a30d457e5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE 1 1 buena atención 17 31 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.834778+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3825 SPN-eabe965d398a183d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNzaGZPWHl3RRAB 1 0 La pista es divertida y los karts están bien 0 44 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.931438+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3827 SPN-2755bd25865c9719 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURaMHB5QzBnRRAB 1 0 El mejor Karting al que he ido, así de sencillo. 0 48 standard V4.01 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.950873+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3829 SPN-144dff4f6d8c70cf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB 1 0 Magnífico circuito 0 18 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.970188+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3832 SPN-507983bbae1a2b1c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRbVlYLUF3EAE 1 0 Los coches van muy rápido y funcionan bien 0 42 standard O1.02 {O1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02+O1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.001241+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3834 SPN-ffc4cb6a8fb6db2d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxZ01iZnZRRRAB 1 0 Muy buen trato 0 14 standard P1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.019214+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3836 SPN-18f98f1c47168d65 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURRaExTU2R3EAE 1 0 Perfecto 0 8 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-04-05 00:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.03688+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3838 SPN-1cc09c73aea2fdd8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhN08yYzRRRRAB 1 0 El circuito super cuidado y los karts increíbles 🙌 0 50 standard O2.02 {O1.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.02+O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.055614+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_02 3840 SPN-1d4ccb0eef44dee2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhOVBHU3p3RRAB 1 0 Buen trato, buena pista y buenos karts 0 38 standard P1.02 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P1.02+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.077135+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3953 SPN-93b0d7d3cb3bfa06 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURrcDZ2VkRBEAE 1 0 Zeer leuk 0 9 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.033393+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3814 SPN-d7b9c7a75de577e9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDc2JicFBBEAE 1 0 Buen sitio para recrearse mayores y ninos. 0 42 standard A3.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.853538+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3817 SPN-b103001028830329 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZc2Zqbmx3RRAB 1 0 Buen sitio para dar gas buen asfalto 0 36 standard O2.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.868253+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_01 3820 SPN-daf428a2e9ebb9ab Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNjcG9qSG13RRAB 1 0 El mejor sitio para pasar un rato con los amigos 0 48 standard V4.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.901947+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3821 SPN-9ea4817a221c6aa3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwcHAtcWdBRRAB 1 0 Los karts buena potencia y circuito bastante largo 0 50 standard O1.02 {O2.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.903191+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3823 SPN-0533c4904ecba774 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE 1 0 C est un peu cher 0 17 standard V1.01 {} V- I1 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V1.01:-1:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.919861+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3824 SPN-4e2fea7cb65204c2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE 1 1 mais c'est cool !!! 18 37 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.929111+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3826 SPN-e70c8b250671bd4c Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNHOHFiSVVBEAE 1 0 Nos ha encantado la experiencia 0 31 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.949347+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3828 SPN-9c7dd384853e0184 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRaXAySGV3EAE 1 0 Entretenido para niños y mayores en un buen ambiente. 0 53 standard A3.01 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:A3.01+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.968909+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3831 SPN-ce7a53817eb02fb4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURJOUoteVRBEAE 1 0 Un muy buen rato de risas y competición sana 0 44 standard V4.03 {E1.04} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03+E1.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:00.981241+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3833 SPN-63649317693ea9d5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVanJpOS1nRRAB 1 0 Excelente circuito muy moderno y detallado. 0 43 standard O2.03 {O2.04} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03+O2.04:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.002971+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3835 SPN-9bd91fdf89f11a55 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1eU9PUWdnRRAB 1 0 He ido a varios de la región y este es el mejor que he probado. 0 63 standard V4.01 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.020732+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3837 SPN-85387243420939b8 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVN3ByVGtBRRAB 1 0 Buenísimo un trazado espectacular. Quedé primero 0 48 standard O2.03 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O2.03+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.038482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3839 SPN-02d3a2e5f8b80f5c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1Xzh2SWhBRRAB 1 0 MOLTO BELLO E DIVERTENTE, DA ANDARCI ANCORA 0 44 standard V4.03 {} V+ I3 CR-N S1 A1 TF ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.057156+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3841 SPN-07ccb2c97c8aa06a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2bk1YM1BnEAE 1 0 Circuito de Cars económico en el que tanto pequeños como grandes disfrutan mucho 0 80 standard V1.01 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.079216+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3842 SPN-70facc2604364071 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPNHNfR2dBRRAB 1 0 Una gran experiencia con una muy buena atención 0 47 standard V4.03 {P3.01} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+P3.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.091053+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3843 SPN-2e68929c8cce2d30 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURncU5pX0lREAE 1 0 Buen lugar para descargar adrenalina con los amigos y familia. 0 62 standard V4.03 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.03+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.105159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3844 SPN-965493d386d7bb3f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ2MXZUMDRRRRAB 1 0 El circuito perfecto y ofertas muy prometedoras 0 47 standard O2.03 {V1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O2.03+V1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.117314+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O2.O2_03 3845 SPN-0f21ca30285a0e1a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNBa01hSFlREAE 1 0 Una pasada y todo muy bien orfanizado 0 37 standard J2.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:J2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:01.128836+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J2.J2_01 3846 SPN-cfb93c31201c8ea2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE 1 0 Трасса хорошая 0 14 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.762763+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3847 SPN-d69bc98fb78f7358 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE 1 1 но картинги старые! 15 34 standard O1.03 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.03:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.767619+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3848 SPN-eeffb95b33ff76bf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOEplVTlBRRAB 1 0 Muy bien todo, lo pasamos genial. 0 33 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.785891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3849 SPN-6d238ec60927fa97 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVdnRmNU5nEAE 1 0 Esta genial para hacer una carreterita 0 38 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.796911+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3850 SPN-9d9388d4b59800f3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNodHV1R05REAE 1 0 Muy actualizado asequible y entretenido 0 39 standard V4.01 {V1.01,O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01+V1.01+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.807355+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3851 SPN-3a3e7ac5774a925e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURudHBuRVFnEAE 1 0 Simplemente increíble!!!! 0 25 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.816587+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3852 SPN-d515bb96e341af96 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURROXNPSTJnRRAB 1 0 Atención buena ideal para hacer prácticas . 0 43 standard P3.01 {V4.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:P3.01+V4.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.827599+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3853 SPN-56814934e8105552 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURfb2F1Qm5BRRAB 1 0 Un buen circuito y buenos Kart. 0 31 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.837584+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3854 SPN-e35cc9c3963f2b1e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNdm9QLThnRRAB 1 0 Buena atención del personal y muy buenas instalaciones. 0 55 standard P3.01 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P3.01+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.849242+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3855 SPN-76c87284af981aa3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR4d3BDY3FRRRAB 1 0 Das lohnt sich für das Geld immer wieder 0 40 standard V4.01 {} V+ I2 CR-N S2 A1 TR ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:21TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.862019+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3856 SPN-ffacc9c3ebd2b2c5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURROVlxUWpRRRAB 1 0 El mejor circuito y karts,mejor servicio y atención del personal 0 64 standard O1.02 {P3.01} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.02+P3.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.874147+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3857 SPN-4041faa9a25a62d0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJR25pOTNSMHFiS3RBRRAB 1 0 Un circuito increíble 0 21 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-07-04 00:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.888839+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3858 SPN-054b5c147edd8c9d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQ3aWJfYXhRRRAB 1 0 Buen sitio 0 10 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.901693+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3859 SPN-f082d3cc137bdf19 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1NE95WkdBEAE 1 0 Simplemente los mejores es lo que puedo decir después de tantos años 0 68 standard V4.03 {R3.01} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+R3.01:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.914545+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3860 SPN-2132dcedfbb61490 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB 1 0 Buenos karts... 0 15 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.926427+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3861 SPN-203be958c9d83596 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB 1 1 Pero los precios.... Los precios.... Poco tiempo.... 16 68 standard V1.02 {J1.05} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.02+J1.05:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.927402+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_02 3862 SPN-6517009455b6df6e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNzczkzaUNREAE 1 0 Genial para pasar un buen rato 0 30 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.938634+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3863 SPN-42da8c0850b75bb7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN4NXJud3J3RRAB 1 0 De mis favoritos, muy bueno 0 27 standard V4.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.949793+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3864 SPN-8563c416f4e82ac4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURicXVyb3B3RRAB 1 0 War cool 0 8 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.962892+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3865 SPN-f5f3c810ae1fc265 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNlMDZpbmtRRRAB 1 0 Uno de los mejores circuitos que he probado 0 43 standard O1.02 {} V+ I3 CR-B S2 A1 TH ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TH.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.973657+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3866 SPN-793965f93a4189f2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBM2RfSDh3RRAB 1 0 Los F300 muy divertidos y rápidos. 0 34 standard O1.02 {} V+ I2 CR-N S3 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:31TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.986018+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3867 SPN-5a9378be566edc75 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE 1 0 Circuito grande y bien cuidado 0 31 standard E1.01 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N f t 2017-02-01 01:52:39.833374+00 high URT:S:E1.01+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.996642+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_01 3868 SPN-2542e48077441343 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE 1 1 a mi parecer un poco caro 33 57 standard V1.01 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:V1.01:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:11.997769+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3869 SPN-dcfbd6932e70abbd Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNJaDlpcWVREAE 1 0 Está muy bien! 0 14 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:12.008472+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3870 SPN-9157d9e6d369a8fb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnTURJeEtxZENnEAE 1 0 Muy divertido 0 13 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-05-05 00:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:12.018939+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3871 SPN-37dfbb634bf30575 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURJeWVQWTRnRRAB 1 0 Divertente e ad un prezzo onesto 0 32 standard V4.01 {V1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01+V1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:12.029241+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3873 SPN-f6a497a983e4fee2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB 1 0 Muy buen ambiente, seriedad... 0 31 standard E1.04 {R1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:E1.04+R1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:12.049981+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3874 SPN-a8271d211e0f4fb9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtOWFUaGlBRRAB 1 0 Trazado espectacular, buen grip. 0 32 standard O1.02 {O2.02} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O2.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.189024+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3875 SPN-0d6ad5ba3d28636b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNBcHVLcGxRRRAB 1 0 Unas carreras 🏁, unos bocatas, unos refrescos. Chulo, chulo 😎. 0 62 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.206148+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3876 SPN-d927cc0f2a199ad3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB 1 0 Barato, divertido y en general una buena opción 0 47 standard V4.01 {O1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01+O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.218662+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3877 SPN-5d35b18657447ebc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVLXYtb3d3RRAB 1 0 El personal es muy diligente y educadisimo 0 42 standard P1.02 {P3.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.02+P3.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.230322+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3878 SPN-99c6f058da42325d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURRd2NuY3h3RRAB 1 0 Muy divertido con niños 0 23 standard O1.01 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.01+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.242621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3879 SPN-e668174f6ca711b6 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURXaU8tNVd3EAE 1 0 Divertido para pasar un buen rato 0 33 standard O1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.25499+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3880 SPN-988a2f918aa81c25 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN1aDZiUm5RRRAB 1 0 Nos gustó mucho 0 15 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.269384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3881 SPN-cd57b56dc9662740 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNpa0pPdUh3EAE 1 0 Gran circuito, genial atención 0 30 standard O1.02 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.280573+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3882 SPN-8bf41e51d3915d53 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURndTZmOWVBEAE 1 0 Muy bien y el trato fenomenal 0 29 standard P1.01 {O1.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:P1.01+O1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.292396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3883 SPN-bc45a5f0135e8e09 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNRdWFpeUJnEAE 1 0 Muy buenas. Las f200 0 20 standard O1.02 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.305961+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3884 SPN-9c5e70dd79eeb7dc Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNzOUlyU3BRRRAB 1 0 Muy chulo 0 9 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.317736+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3885 SPN-2606b0951ee6b109 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURzbUtxcUlREAE 1 0 Muy bueno 0 9 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.329399+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3886 SPN-5ae4264375ed5a97 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNneHNxMEZ3EAE 1 0 Perfecto para pasar un rato divertido. 0 38 standard O1.01 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.341733+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3887 SPN-1cc995e69739e292 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR4bWFhWlJREAE 1 0 Fantásticos karts un momento muy divertido 0 42 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.355359+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3888 SPN-bb5e6ef2a41192f0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR4ZzRxMTRRRRAB 1 0 Me gusta mucho 0 14 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.366824+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3889 SPN-3eacc8c32323f185 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE 1 0 Circuito estupendo y muy atentos 0 32 standard O1.02 {P3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02+P3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.379434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3890 SPN-83013f3572ac3e90 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTemJEU21RRRAB 1 0 Karts en buen estado, pista divertida y bien organizado 0 55 standard O1.03 {O1.02,J2.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.03+O1.02+J2.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.391389+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3891 SPN-71bd7f3cf69440c2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNXcU1iekNBEAE 1 0 Rigtig god oplevelse for hele familien 0 38 standard O1.01 {A3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01+A3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.402967+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3892 SPN-c44d2f725e0e0784 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNpaVpQN0VBEAE 1 0 Muy bien. 0 9 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.417511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3893 SPN-73fddb9accf758ce Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURZazh5bmdnRRAB 1 0 Algo caro. La verdad 0 20 standard V1.01 {} V- I2 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01:-2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.428528+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3894 SPN-42e6f45e7001c194 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1eE8ySzh3RRAB 1 0 No se puede ser mejor👍💯\nEnhorabuena 0 35 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.439571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3895 SPN-23045d97a3224fce Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNXa3FEbXRRRRAB 1 0 Buen sitio pata disfrutar de las karts 0 38 standard O1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.452211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3896 SPN-be174fa48760db20 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndXJ5RDNRRRAB 1 0 Gran sitio de entretenimiento para la familia 0 45 standard O1.01 {A3.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.01+A3.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.466959+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_01 3897 SPN-bf8a5793c6bae78d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURld1BHcGpnRRAB 1 0 Exelente atención. Son los mejores!! 0 36 standard P3.01 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:P3.01:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.477307+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3898 SPN-af75eab0292619cb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURSMW9fQUNnEAE 1 0 Se puede mejorar 0 16 standard V4.03 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 medium URT:S:V4.03:-1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:25.489146+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3899 SPN-886da466ac6f6fc9 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPXzdDNjBBRRAB 1 0 Corto viaje 0 11 standard J1.05 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 medium URT:S:J1.05:-1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:34.870351+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_05 3900 SPN-1fad3b3902d2c8f4 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB 1 0 Los mejores. 0 12 standard V4.01 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:34.884279+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3901 SPN-2ae2e9d4118351b1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3N2JQYjVRRRAB 1 0 Bra go kart 0 11 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:20:34.899846+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3902 SPN-0ea7d2320ce9cb62 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB 1 0 Choix de kart 0 13 standard O3.02 {} V+ I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O3.02:+1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.829754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3903 SPN-2d31090d338c5959 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB 1 1 personnel sympa 17 32 standard P1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.832132+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3904 SPN-7c630bc37e7704da Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR5My1Pem53RRAB 1 0 Sehr schön 0 10 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 medium URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.84384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3905 SPN-557abde935f07435 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE 1 0 El mejor karting 0 16 standard V4.01 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.857598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3906 SPN-80ab88e36c351de2 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVamJiTVl3EAE 1 0 Esperaculo, adrenalina e velocidade 0 35 standard O1.02 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.871897+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3907 SPN-e09cb7fc3fae9a37 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNCcTZLby1nRRAB 1 0 Simplemente genial! 0 19 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.883149+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3908 SPN-b7339390c50b3da7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPbU9tUUdREAE 1 0 Bonita experiencia 0 18 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.894826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3909 SPN-f1e54d0f56c2b496 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURtal9HcGFnEAE 1 0 Una buena pista 0 15 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.906105+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3910 SPN-b175e5626442eb6d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURrcV9mVVNnEAE 1 0 Muy chulos y economicos 0 23 standard V1.01 {V4.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V1.01+V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.917711+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3911 SPN-539cfbcec1beb8f7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURTLXNqOHFRRRAB 1 0 Genial !!! 0 10 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.930691+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3912 SPN-37ce9905163f2206 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNJcE5fMTVRRRAB 1 0 Que buenos ratos 0 16 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.941784+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3913 SPN-bc65228ae2e87655 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNNeVppcjRRRRAB 1 0 Circuito Kars de 10 0 19 standard E1.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E1.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.952863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3914 SPN-581442ce4ff852a7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVd1BfbUJREAE 1 0 Los chicos de pista muy majos 0 29 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.964935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 3915 SPN-4a60ac66aeea4931 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1bktfZnNnRRAB 1 0 El mejor 0 8 standard V4.01 {} V+ I3 CR-B S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.975755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3916 SPN-eb19b47e4b591ca5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3N3NDQzlRRRAB 1 0 Schön war es wieder 0 19 standard V4.01 {} V+ I2 CR-N S1 A1 TR ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:V4.01:+2:11TR.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:02.989431+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3917 SPN-a39afa0cc581543f Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVbGU3UndRRRAB 1 0 Très bien, à faire 0 18 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.003035+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3918 SPN-0931d51821e3a8b7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhemJYNHBRRRAB 1 0 Los kars deberían de restaurarlos . 0 36 standard O1.03 {} V- I2 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.03:-2:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.018472+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_03 3919 SPN-12343050ac5318fe Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURKd2FDZXNRRRAB 1 0 Toujours parfait. 0 17 standard J3.01 {} V+ I3 CR-N S1 A1 TH ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:J3.01:+3:11TH.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.030139+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J3.J3_01 3920 SPN-d17b29045fe74fe5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQyOGZ6ZW93RRAB 1 0 Hasta arriba de gente 0 21 standard J1.03 {} V- I2 CR-N S2 A2 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:J1.03:-2:22TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.046252+00 22c747a6-b913-4ae4-82bc-14b4195008b6 J.J1.J1_03 3921 SPN-1c6cb6b89252cceb Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMtd2R1LWZBEAE 1 0 Buena 0 5 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 medium URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.0591+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3922 SPN-83dc98704e4cca2c Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwcGJLRi1BRRAB 1 0 Todo correcto,\nVolveré 0 22 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.070504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3923 SPN-75197433592dd57e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhcHF5eTZ3RRAB 1 0 Zeer leuke karting 0 18 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.085091+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3924 SPN-b308018c4eca4e9b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMtNVplMnZ3RRAB 1 0 Genial!! 0 8 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.097857+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3925 SPN-2b177527179995fa Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRM2RTTGVREAE 1 0 Buenísimo, buenísimo... 0 23 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.109559+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3926 SPN-def38480edf1f572 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZMl96am5nRRAB 1 0 Pittig episch 0 13 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.120172+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3927 SPN-130daf8d32a332b8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2bHFXUkJREAE 1 0 Fedt 0 4 standard V4.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.133171+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3928 SPN-65a94c6b9a221296 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDZ3JIMWhRRRAB 1 0 Super!!!! Sehr zu empfehlen 0 27 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.739112+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3929 SPN-f605a479f3499cae Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURjbS03WFlBEAE 1 0 Dos palabras: im - presionante. 0 31 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.753708+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3930 SPN-db8e7c0c92391ca9 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2eDZMTUJREAE 1 0 Karts muy divertidos y a un buen precio. 0 40 standard V1.01 {V1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05+V1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.766828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3931 SPN-29185a00e63b065a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNwc04yS3B3RRAB 1 0 Giornata molto divertente 0 25 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.78044+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3932 SPN-931e79e609a45f4a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNZMDVEVi13RRAB 1 0 Cojonudo, lo hemos pasado bomba!!! 0 34 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.791946+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3933 SPN-118c34c3d7711ff0 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDam9DQ0xnEAE 1 0 Para pasar un rato divertido 0 28 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.805644+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3934 SPN-fcdd70234f64bd85 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1d055WWt3RRAB 1 0 Snelle karts heel leuk daar 0 27 standard O1.02 {O1.05} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.818468+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3935 SPN-bfd3e2fba518d126 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMwMXY3dGRREAE 1 0 Para pasar un rato divertido!!!! 0 32 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.830146+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3936 SPN-aa16f090feb12cad Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNLem9hcEdREAE 1 0 Excelente experiencia 0 21 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.841844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3937 SPN-6531a541703b9542 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUQwOWNmcXJnRRAB 1 0 Muy divertido y completo 0 24 standard O1.05 {O3.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05+O3.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.854712+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3938 SPN-37f0d92f05d56696 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1c0xmNFJ3EAE 1 0 Gross und schnelle Organisiert 0 30 standard E1.03 {J1.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03+J1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.864979+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3939 SPN-02dbeb0ae2a7c51b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLN0tQcnJRRRAB 1 0 Muy agradable 0 13 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.874471+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3940 SPN-e2b4300447808334 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURPN01HZ0x3EAE 1 0 Buena pista 0 11 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.887393+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3941 SPN-4e35254e932bd390 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ2NDhpbUJnEAE 1 0 Muy bien 👍 0 10 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.897855+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3942 SPN-1839ea45508fe07e Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNLODVuSjl3RRAB 1 0 Un rato divertido 0 17 standard O1.05 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.908075+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3943 SPN-6af6e1044ac8e698 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB 1 0 Por el trato 0 13 standard P1.02 {} V+ I2 CR-N S1 A1 TC EI \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 medium URT:S:P1.02:+2:11TC.EI.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.920308+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3944 SPN-908000168372fe8d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB 1 0 Super karting 0 13 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.930445+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3945 SPN-73d4de7648b6e971 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB 1 1 mais un peu chère 15 32 standard V1.01 {} V- I1 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01:-1:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.931244+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3946 SPN-66e7df07d73038c0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURSdjllenp3RRAB 1 0 Mooie baan! 0 11 standard E1.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.941347+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3947 SPN-2402e243ac7632a5 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUR1dVlYMUtnEAE 1 0 Circuito, instalaciones y profesionales de 10. 0 46 standard V4.03 {E1.03,P2.01} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03+E1.03+P2.01:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.951553+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3948 SPN-eb214de2af565dcf Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUN3cjdUT3NBRRAB 1 0 Buena manera de desestresarse 0 29 standard O1.05 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O1.05:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.964629+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3949 SPN-efd0b196f80d6eaf Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURSMGNtVkhnEAE 1 0 El mejor circuito de la región 0 30 standard V4.03 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.978297+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3950 SPN-04e7030f74f75011 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNVX00yc2x3RRAB 1 0 Muy divertida genial 0 20 standard O1.05 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.05:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:03.989328+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_05 3951 SPN-5b333af1552f22b3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBam92a3NnRRAB 1 0 Un circuito muy largo y técnico 0 31 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.001386+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3952 SPN-dcdc8f2957e85d75 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNnOFlYWWl3RRAB 1 0 Muy bien ! 0 10 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.021878+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3954 SPN-d866b431057ad5f4 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUQ4di1POUR3EAE 1 0 Fantástica pista de Kart para disfrutar 0 39 standard E1.03 {O1.05} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:E1.03+O1.05:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.034435+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3955 SPN-c589bcbfac3336d7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE 1 0 Muy atentos 0 11 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.048753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3956 SPN-ed74d44f5c4eea11 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE 1 1 buen precio 14 25 standard V1.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2022-01-31 01:52:39.833374+00 high URT:S:V1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.049956+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3957 SPN-5d39c782f2a73bf1 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB 1 0 Excelentes precios 0 18 standard V1.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V1.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.06109+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V1.V1_01 3958 SPN-fef4d0c349a45370 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB 1 1 atención 21 29 standard P3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N f t 2025-01-30 01:52:39.833374+00 high URT:S:P3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.06237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P3.P3_01 3959 SPN-4416550a20ef0850 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhOTk2cnFRRRAB 1 0 Buen circuito y adrenalina a tope!! 0 35 standard O1.02 {V4.03} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:O1.02+V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.073089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3960 SPN-305689af1e03f5e6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR1cThuVTJnRRAB 1 0 Buena pista, mañana volveremos 0 30 standard O1.02 {R4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:O1.02+R4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.084498+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3961 SPN-1ac4d5f17e1e68a8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURvcU1mR1BnEAE 1 0 Muy bien pero poco tiempo 0 25 standard V3.01 {V4.03} V± I2 CR-N S1 A2 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V3.01+V4.03:±2:12TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.09559+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V3.V3_01 3962 SPN-543f3735014b60f5 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUR2aXBLRzZnRRAB 1 0 El circuito está chulisímo 0 26 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.107916+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3963 SPN-65fdb3a0e0be5cb7 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNicUxHa1hBEAE 1 0 Petarda naprawdę warto 0 22 standard V4.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:V4.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.120222+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_01 3964 SPN-5f75ba942d1bc99a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhak1EbnVBRRAB 1 0 Diversión si te gusta la velocidad. 0 35 standard V4.03 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.133511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3965 SPN-7ac7791ff09a1b87 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBa2V6dzFnRRAB 1 0 Buen lugar para cumpleaños. 0 27 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.144854+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3966 SPN-8c4d34436759020b Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURndG9xaWNBEAE 1 0 Circuito grande y cuidado con un paisaje bonito 0 47 standard E1.03 {O1.02} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:E1.03+O1.02:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.155931+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3967 SPN-67bdfa094af9f25a Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNOC1iRlBnEAE 1 0 Buen circuito ,los cart y el personal 0 37 standard O1.02 {P1.01} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02+P1.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.168985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3968 SPN-da4c7300dd25aa4a Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLaG9TTjB3RRAB 1 0 El mejor calidad precio de toda Murcia 0 38 standard V2.04 {} V+ I3 CR-B S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V2.04:+3:21TC.ES.B v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.180289+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 3969 SPN-23fcc003447a4344 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURxbE9mX3NBRRAB 1 0 Buenas instalaciones con calidad precio. 0 40 standard V2.04 {E1.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V2.04+E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.192183+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V2.V2_04 3970 SPN-885428d07fc69489 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBbnFmVnRnRRAB 1 0 Tienen motos y karts. Lo recomiendo 0 35 standard O3.02 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O3.02+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.206011+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3971 SPN-c64f01f0387731f2 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUMwbDdtaC1nRRAB 1 0 Muy bueno para correr con karts 0 31 standard O4.04 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O4.04:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.217785+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3972 SPN-139bf2dc12971589 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNSOXV2R1VBEAE 1 0 Excelente trato 0 15 standard P1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:P1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.230041+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_02 3973 SPN-51ffa189190bbe26 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNvc0lEaXVBRRAB 1 0 Super chulo me encanta 0 22 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.243258+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3974 SPN-094848b72e96b498 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDbzVfc2tBRRAB 1 0 Классная траса и смотровая площадка 0 35 standard O1.02 {E1.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.257302+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3975 SPN-eb0faadea4602881 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURRNTdXb0x3EAE 1 0 Buen lugar para descargar adrenalina 0 36 standard O4.04 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2018-02-01 01:52:39.833374+00 high URT:S:O4.04+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.268906+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O4.O4_04 3976 SPN-4687d8a5d082134d Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhMktENjR3RRAB 1 0 Circuito grande, largo y amplio. 0 32 standard E1.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.283142+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_03 3977 SPN-f1697672164d44ac Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNEM3ZMeGFBEAE 1 0 Buenas carreras, buenas instalaciones 0 37 standard O1.02 {E1.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2025-01-30 01:52:39.833374+00 high URT:S:O1.02+E1.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.295461+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3978 SPN-f40e9ee7d9509692 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNVanNxb1ZnEAE 1 0 Dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet 0 60 standard E4.01 {P1.04} V- I3 CR-N S2 A3 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:E4.01+P1.04:-3:23TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.307383+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E4.E4_01 3979 SPN-547c93a4471cd78e Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNDZ3ZYTldREAE 1 0 Líquido dé frenos en mal estado. 0 32 standard O1.04 {E4.01} V- I3 CR-N S3 A3 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:O1.04+E4.01:-3:33TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.322203+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_04 3980 SPN-2fff6c54b8dcb02f Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNsbUs2VU9BEAE 1 0 Bastante completo y divertido 0 29 standard O3.02 {V4.03} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O3.02+V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:04.335227+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O3.O3_02 3981 SPN-7283b49bc97b476b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURPOTdHUWl3RRAB 1 0 Les enfants ont adorés 0 22 standard V4.03 {} V+ I3 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2023-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.783614+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3982 SPN-4aba218ee057d539 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVN0tYOENnEAE 1 0 Buen circuito 0 13 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.797026+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3983 SPN-283ebc075dfccff0 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURVNjVhVDVnRRAB 1 0 Buena experiencia 🙉 0 19 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.812503+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3984 SPN-f3340633a7a241d3 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNja2NPRXdBRRAB 1 0 Perfeto 0 7 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.827678+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3985 SPN-c04eb8064d62ab17 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNxck9xUjRnRRAB 1 0 De cine 0 7 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.843882+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3986 SPN-dcb206912f3c2ced Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURDajhENjRnRRAB 1 0 Me encanto 0 10 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2021-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.860469+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3987 SPN-c3b6e395fa62d121 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURncGJqVzRRRRAB 1 0 Karts para disfrutar en familia 0 31 standard A3.01 {V4.03} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:A3.01+V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.874673+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3989 SPN-dc9fac2738448df7 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNRMDh6THh3RRAB 1 0 Por su trazado y atención 0 25 standard O1.02 {P3.01} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2017-02-01 01:52:39.833374+00 high URT:S:O1.02+P3.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.906983+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3990 SPN-a676f7e6f116d5e8 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURLa3VxS1JnEAE 1 0 Es un sitio espectácular 0 24 standard E1.04 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:E1.04:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.921272+00 22c747a6-b913-4ae4-82bc-14b4195008b6 E.E1.E1_04 3991 SPN-a1a12e91d355e232 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUMxd192ZlN3EAE 1 0 Leuk circuit 0 12 standard O1.02 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2024-01-31 01:52:39.833374+00 high URT:S:O1.02:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.933683+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3992 SPN-6ad6cec4f150fcff Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE 1 0 Circuito impresionante 0 22 standard O1.02 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:O1.02:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.946442+00 22c747a6-b913-4ae4-82bc-14b4195008b6 O.O1.O1_02 3993 SPN-2f9ce736d91a3af3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURnZy1mbktBEAE 1 0 Woow super 0 10 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.960823+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3994 SPN-ff5e7ecd1186404b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB 1 0 Muy familiar 0 12 standard A3.01 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:A3.01:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.972277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 A.A3.A3_01 3995 SPN-20d5f2d941e51ff3 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURVOVBQWUR3EAE 1 0 Genial 0 6 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2020-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.984246+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3996 SPN-8861c60f3fca7e63 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB 1 0 Los niños disfrutaron 0 21 standard V4.03 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:V4.03:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:10.995486+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3997 SPN-9f7d533155a3b5e1 Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUM2aUlMWGJREAE 1 0 Volveremos!!🏎️🏎️🏎️🏎️ 0 19 standard R4.03 {} V+ I3 CR-N S2 A1 TF ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:R4.03:+3:21TF.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.009134+00 22c747a6-b913-4ae4-82bc-14b4195008b6 R.R4.R4_03 3998 SPN-6c0d4edfad68f3ea Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSUNnLTRfVkJ3EAE 1 0 Encantada.. 0 11 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.02202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 3999 SPN-e11f66f3b0786d0b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURBLWZhbjBRRRAB 1 0 Increíble! !!! 0 14 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2019-02-01 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.038093+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 4000 SPN-364350549d05a5c6 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURLcGY3SzJBRRAB 1 0 Grandes Profesionales 0 21 standard P2.01 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:P2.01:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.051705+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P2.P2_01 4001 SPN-93c083da05e29535 Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUM2eTU3b3NBRRAB 1 0 deaearque dejan 0 15 standard V4.03 {} V0 I1 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 low URT:S:V4.03:01:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.068052+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 4002 SPN-2005ff401893d6fa Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNheGVHR2lRRRAB 1 0 Divertido!! 0 11 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.086532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 4003 SPN-f48ffcffc61ed3ae Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB 1 0 Trato familiar 0 14 standard P1.01 {} V+ I2 CR-N S2 A1 TC ES \N \N \N \N \N \N t t 2026-01-30 01:52:39.833374+00 high URT:S:P1.01:+2:21TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.099637+00 22c747a6-b913-4ae4-82bc-14b4195008b6 P.P1.P1_01 4004 SPN-41785db4bc54e62d Go Karts Mar Menor unknown google ChZDSUhNMG9nS0VJQ0FnSURhb3Z6WE1BEAE 1 0 Fantástico 0 10 standard V4.03 {} V+ I3 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+3:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.111502+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 4005 SPN-20d5b0125160b85b Go Karts Mar Menor unknown google ChdDSUhNMG9nS0VJQ0FnSUNhOTliTm9nRRAB 1 0 Aangenaam. 0 10 standard V4.03 {} V+ I2 CR-N S1 A1 TC ES \N \N \N \N \N \N t t 2022-01-31 01:52:39.833374+00 high URT:S:V4.03:+2:11TC.ES.N v5.1 claude-sonnet-4-5-20250929 541cd4c2 2026-01-30 10:21:11.126463+00 22c747a6-b913-4ae4-82bc-14b4195008b6 V.V4.V4_03 \. -- -- Data for Name: reviews_enriched; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.reviews_enriched (id, source, review_id, review_version, is_latest, raw_id, business_id, place_id, text, text_normalized, rating, review_time, language, taxonomy_version, urt_primary, urt_secondary, valence, intensity, comparative, staff_mentions, quotes, embedding, trust_score, classification_model, classification_confidence, processed_at, created_at, job_id) FROM stdin; 1 google test-review-0b5f8f89 1 t 4 test-business-a1d6f9fb test-place-a1d6f9fb The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. the food was absolutely terrible! we waited 45 minutes for cold pasta. mike the waiter was rude and dismissive. never coming back. 1 2026-01-15 14:30:00+00 en v5.1 O1.01 {J1.01,A1.01} V- I3 CR-N {} {} {} 0.85 mocked-gpt-4o-mini {} 2026-01-24 18:26:58.170289+00 2026-01-24 18:26:57.555723+00 8bd29859-482d-4e52-a026-3c30432e7cc5 2 google test-review-22e6d3da 1 t 5 test-business-a1d6f9fb test-place-a1d6f9fb Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. great experience! the steak was cooked to perfection and sarah provided excellent service. a bit pricey but worth it. 5 2026-01-18 19:00:00+00 en v5.1 O1.01 {A2.01} V+ I3 CR-N {} {} {} 0.9 mocked-gpt-4o-mini {} 2026-01-24 18:26:58.333171+00 2026-01-24 18:26:58.061378+00 8bd29859-482d-4e52-a026-3c30432e7cc5 3 google test-review-c74308b7 1 t 6 test-business-a1d6f9fb test-place-a1d6f9fb Average food, nothing special. The ambiance was nice though. Wait time was reasonable. average food, nothing special. the ambiance was nice though. wait time was reasonable. 3 2026-01-20 12:00:00+00 en v5.1 O1.01 {} V0 I1 CR-N {} {} {} 0.7 mocked-gpt-4o-mini {} 2026-01-24 18:26:58.343214+00 2026-01-24 18:26:58.076739+00 8bd29859-482d-4e52-a026-3c30432e7cc5 1268 google ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE 1 t 1271 Soho Club unknown Fui un sábado por la noche y la verdad es que estaba bastante vacío. El ambiente y la música regular.\nLa estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato. fui un sábado por la noche y la verdad es que estaba bastante vacío. el ambiente y la música regular. la estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato. 3 2025-01-29 18:34:31.336452+00 es v5.1 V1.01 {} V- I2 CR-N {} {"E4.04": "El ambiente y la música regular.", "V1.01": "La estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato."} {0.071669266,-0.005905126,-0.003900445,-0.031311408,-0.09620756,0.015447217,0.012144295,0.059948564,0.03679947,0.016119806,0.0019379116,-0.05384776,-0.07203905,-0.02314356,0.07141211,-0.0065977005,0.055598233,0.077483214,0.04315351,0.07624012,0.04168799,-0.018633433,-0.046134,0.07103406,0.003402688,-0.06552492,-0.029425094,0.031419583,-0.023902278,-0.073670894,-0.066417694,0.103168555,0.034077507,-0.023981689,-0.015934464,-0.07018132,0.059542283,-0.05282861,-0.07690657,0.11105801,-0.09414366,0.05302128,-0.07690096,-0.06436708,0.042950224,-0.036498968,-0.023692517,0.08002039,0.037466366,0.017887546,-0.032370716,0.020562124,0.0026671672,-0.02246513,-0.004658098,-0.077110894,0.05438182,0.01620746,0.13434426,0.061700575,-0.0054945955,0.004625209,-0.048077922,0.04277106,0.029726366,-0.021702034,0.0047317483,0.011770847,-0.016008489,0.033235073,0.014888135,-0.115224294,0.082478404,-0.04017119,-0.028673906,0.028580796,-0.012259341,-0.07679427,-0.038963936,-0.061314505,0.008028445,-0.07185965,-0.05225084,-0.055844698,0.016124014,-0.007841645,0.034932278,0.026239969,0.057453547,0.0034918478,0.012359691,0.0680617,-0.12543418,-0.030423548,-0.017743649,0.0067942506,0.041362025,-0.022169907,0.037421208,0.06972849,0.102404684,0.05057841,0.07993996,0.028654695,-0.029367082,0.009415265,0.07441994,0.03765148,-0.0030804593,-0.0022756136,-0.058742765,0.0171058,-0.033006735,-0.05158842,-0.016269762,0.032826558,0.0038760556,-0.031556975,0.01662601,-0.03505166,0.053283967,-0.0268636,0.019722782,0.027702726,-0.040320437,-0.06813199,0.0471389,1.04480524e-32,-0.028075162,-0.017940884,-0.012470885,-0.07921698,0.025798509,-0.03139674,-0.050941948,0.006863588,-0.06655524,0.050023496,-0.004720288,0.05368488,-0.04496912,0.053802103,0.09015893,0.026310723,0.015591862,-0.029763091,0.072009504,-0.03413482,-0.085398756,-0.075246,0.028516084,0.03522362,-0.06138395,0.07220052,0.03277375,-0.04141612,-0.043570407,0.028739603,-0.022425195,0.0689618,0.08992859,-0.060885992,-0.026314193,-0.013550235,0.008246831,0.054165825,0.010677854,-0.045118082,0.035271134,0.020561352,-0.033645116,-0.03197613,-0.031967454,-0.006737097,0.06534844,0.028903045,0.09569321,0.0051815654,-0.039171256,-0.063416466,-0.101587534,0.04239283,0.0021280097,0.0042947507,-0.028068485,0.02098852,0.0051361416,-0.018460026,0.0005913531,-0.006596497,0.04092012,-0.02290338,-0.03919285,0.03518931,0.04034462,-0.047989104,0.07990217,-0.06625472,-0.118296586,-0.024927985,0.032237265,0.021891799,-0.035364,0.019551564,-0.023293436,-0.017440004,0.010132352,0.04053687,-0.11705423,0.023838378,0.05617552,0.03616439,0.04465612,0.10777316,0.036259823,0.00928297,-0.02579639,0.10633249,-0.03486334,0.04000083,-0.0411637,-0.042772774,0.112611264,-1.10275814e-32,-0.0045430167,-0.0039996877,0.007068827,0.006139209,-0.02755858,-0.009154189,-0.07802724,0.015515239,-0.0015591783,-0.007212968,-0.08837233,-0.074176505,0.095214166,-0.03709946,-0.0135933,0.07612085,-0.028912999,-0.038001396,-0.00899561,-0.019779122,-0.023652202,-0.009540875,0.055754133,0.019039663,-0.013393855,-0.031371325,-0.0102161355,0.022821937,-0.030791245,-0.04936228,0.038280077,-0.0033326256,0.05223193,-0.024549346,-0.00879634,-0.00072582375,0.085892886,0.031095833,0.0071074907,0.09322413,-0.03294888,0.09926533,-0.008136833,-0.0881699,0.05497759,0.019473692,-0.030696897,-0.06478217,-0.01623351,-0.091013044,0.18582346,-0.08451261,-0.028295156,-0.05541864,-0.0103647765,0.03191425,0.0077019692,-0.08983783,-0.050945718,-0.028106304,0.10340767,0.030898944,-0.086195834,-0.06446055,0.057231527,0.11106201,-0.0037032878,-0.008231451,-0.018881554,-0.026754534,0.033849813,-0.030158551,-0.07921314,-0.01327177,-0.11159677,-0.02124776,-0.09129483,0.04546901,0.0622932,0.026256204,-0.016280841,0.025495166,0.007938586,-0.050496086,-0.0003353382,-0.029820444,-0.0028510995,-0.0016228384,-0.04444702,0.091297224,-0.0049677514,0.001609927,-0.0399293,-0.05139612,-0.0024435248,-4.6646406e-08,0.028582074,-0.062691174,-0.012403383,0.0029185975,0.013120678,-0.020668343,-0.0054559973,-0.010215558,0.0028649261,0.079473905,0.033969436,-0.09310736,0.0067058937,-0.0098742135,-0.054595303,0.05657477,0.08377781,0.057534862,-0.06505297,-0.036751177,0.09551204,0.05276933,0.023026926,-0.05106635,-0.013906231,-0.00210774,-0.07283502,0.042620577,0.0077314326,-0.05546381,-0.04590586,0.024781268,-0.016142517,-0.1470946,-0.045808457,-0.0017432735,-0.06680831,-0.0988587,-0.026241582,0.06961883,0.06993702,-0.10396779,-0.083445266,-0.05723356,-0.0062404275,-0.048854332,-0.014899967,-0.010980067,-0.0114880195,0.09517313,-0.03575093,-0.017838513,0.015621528,-0.014894044,0.042414937,-0.0012975655,-0.012793462,0.048101366,-0.04523705,0.026104156,0.03983216,-0.041119248,0.03161165,-0.0755519} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:55.922544+00 2026-01-29 18:36:00.655041+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 269 google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB 1 t 272 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nice people, no hidden fees, easy process, good cars. nice people, no hidden fees, easy process, good cars. 5 2025-03-31 01:27:48.340735+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"J2.01": "easy process", "O1.01": "good cars", "P1.01": "Nice people", "V1.03": "no hidden fees"} {-0.038506076,0.024223302,0.059071828,0.036397208,-0.0816413,0.010317323,0.031381276,-0.009530523,-0.062245313,0.0057539344,0.08117679,-0.0056502693,0.041404806,-0.0067964564,-0.045858715,-0.06540022,0.06202672,-0.07897628,-0.015915863,-0.074104935,-0.07635404,-0.05510384,0.023517359,-0.018374143,-0.021941744,0.00603193,0.005721303,0.08137963,0.031715114,-0.00915493,-0.01696513,0.06871258,0.03504484,-0.01696192,0.06751236,0.01937744,0.05670155,-0.047779556,-0.06835735,-0.06030821,0.029506281,-0.053162307,-0.04411808,0.0251784,0.0049360255,-0.0011810048,0.09997969,0.062125895,0.06713747,-0.07395964,0.028531324,-0.02245583,-0.025925372,-0.0705736,-0.07453542,-0.048623916,-0.064769715,0.028886719,-0.022401584,-0.047672376,0.0037456786,-0.046593137,-0.059831083,-0.006875358,0.0060593444,-0.028765935,-0.071354255,0.005814996,0.05343713,-0.06579904,0.02441442,-0.0043631555,-0.044512924,0.018128451,-0.064792626,-0.056445986,0.081501104,0.006362744,-0.0070181107,0.031186417,-0.007300271,-0.041588437,-0.040971354,0.033048615,-0.006356042,-0.05547352,0.016830739,-0.019446518,-0.016357344,0.028297164,0.007958344,0.033107564,-0.056425888,-0.05005836,-0.024459178,0.0059441333,0.037914485,0.06481727,-0.037524942,0.07142523,0.066225216,0.116830446,0.029856551,0.03146516,-0.06299065,0.08852663,-0.023096869,0.08823983,-0.010313064,-0.0115137175,-0.089186184,-0.020934435,-0.051094357,-0.0050911875,-0.018160561,0.029175889,-0.0460354,-0.005980695,0.050979543,0.009298348,0.005354411,0.00048413454,-0.015255937,0.016101642,-0.006437207,-0.0016490469,-0.027286803,-2.8108426e-33,-0.021581817,0.11634211,-0.010004283,0.057157204,-0.085892685,0.045228362,-0.06465848,0.056619424,-0.08559351,0.10763433,0.05474166,-0.015218666,-0.038397882,0.004948948,0.06332802,-0.017288484,-0.076294206,-0.010949192,-0.04586098,0.014382827,-0.01192993,0.02664386,0.036344588,0.05041884,0.0376583,-0.033615217,0.005964354,-0.039571587,0.1447322,-0.004201903,-0.04061982,0.07334653,0.042412743,0.034418494,-0.040402096,0.06453649,-0.08178959,-0.10495222,0.017995339,0.011973842,-0.02702005,0.032467123,-0.07134782,0.008727506,0.044785623,0.075608715,0.018048722,-0.014207363,0.022976033,0.041316435,-0.06061515,0.013770216,-0.045631096,0.040845085,-0.09142866,-0.036393456,0.011456775,0.046905193,-0.03677353,-0.035726037,-0.017763663,0.023579407,-0.051816512,-0.07332977,-0.048234534,-0.08724073,0.025542498,0.036368698,0.062749766,0.027886597,0.076161735,0.07708346,0.031169752,-0.024951782,0.022589447,0.09443527,-0.025210125,0.006105985,0.020492738,0.02866493,0.031203467,0.03113221,-0.067182146,0.024848567,0.1317946,0.016499732,-0.008540851,-0.03575333,-0.018746052,-0.003173468,-0.059280396,0.047891203,0.023617653,0.031216178,-0.022961082,1.5581369e-33,0.02291358,-0.031692,0.088951446,0.035454165,-0.014547862,0.017039513,-0.051052947,0.0072098607,0.10008776,0.12899978,-0.15206556,0.008066796,0.119289644,0.025503332,0.016160099,-0.080597185,0.11356536,-0.015005946,-0.032266807,0.005743031,0.017818928,0.13323547,-0.058930814,0.06794478,-0.024971789,-0.0019438041,-0.0959265,-0.011724433,0.013582999,-0.025247043,-0.011603521,0.013925119,-0.11133739,-0.01625735,-0.07823248,-0.022489337,0.005489188,0.07139798,0.009804686,0.050680913,-0.053293355,-0.024729738,-0.0021261796,-0.028518055,-0.011836533,0.008332336,-0.010485027,-0.09933255,0.016840382,-0.069969185,0.046906266,0.0004185149,-0.013989037,0.04506071,-0.07722723,-0.026264543,0.08402091,-0.000831283,0.04742893,-0.0014363395,-0.027065007,0.07363982,-0.03166465,0.05804796,-0.035515543,-0.09160181,-0.0008704687,-0.010887603,-0.08748562,-0.071485475,0.01051726,-0.023101443,-0.057875786,0.020316264,-0.054534752,0.031979203,0.09033931,0.009492499,0.05670424,-0.07757341,0.034075797,-0.046023402,0.039583042,-0.017095799,0.0361366,-0.019058656,0.0058941785,-0.12766798,0.04502995,0.035434492,-0.035713635,0.03722394,-0.007968819,0.059662376,-0.11194535,-2.1895746e-08,0.048679817,-0.0048987935,-0.008798678,0.063044466,-0.06468185,-0.030847982,-0.016723685,0.17013472,-0.058165886,0.009703437,0.010048633,-0.0076496615,-0.024297606,0.008962025,-0.018487945,0.029727159,0.022460405,0.09006891,0.0018241531,0.00080792356,-0.04156048,0.06368156,-0.049204346,0.113975145,-0.018736392,-0.026572485,0.0760032,0.0013364049,0.04024044,0.003096427,-0.07937868,0.017999178,0.0823005,0.014600636,0.015368645,-0.024667,-0.06932208,-0.0045004054,-0.029588558,-0.037392315,0.022821395,0.10879046,-0.036589585,-0.044078354,0.021674916,-0.041032273,-0.07382353,-0.12073769,-0.04889904,0.012127141,0.027828865,-0.01643646,-0.0063735065,0.060401887,0.030930173,-0.03172361,0.025227103,-0.0024050854,0.060785133,0.033609703,0.024561424,-0.011646005,0.021920957,0.0594327} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:19.602348+00 2026-01-25 01:27:50.75433+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 6 google test-review-1287c8f3 1 t 9 test-business-56bf5298 test-place-56bf5298 Average food, nothing special. The ambiance was nice though. Wait time was reasonable. average food, nothing special. the ambiance was nice though. wait time was reasonable. 3 2026-01-20 12:00:00+00 en v5.1 O1.01 {} V0 I1 CR-N {} {} {} 0.7 mocked-gpt-4o-mini {} 2026-01-24 18:27:16.868263+00 2026-01-24 18:27:16.836685+00 8bd29859-482d-4e52-a026-3c30432e7cc5 161 google ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB 1 t 164 R. Fleitas Peluqueros unknown Rafael. Muy buen barbero. Profesional y buen talante. rafael. muy buen barbero. profesional y buen talante. 5 2021-01-26 01:15:46.601549+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.302488+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 162 google ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB 1 t 165 R. Fleitas Peluqueros unknown Excelente servicio y de un profesional al que le gusta su trabajo excelente servicio y de un profesional al que le gusta su trabajo 5 2024-01-26 01:15:46.601556+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.318185+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 163 google ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE 1 t 166 R. Fleitas Peluqueros unknown Profesional por Excelencia !!!\ny ciertamente gran conversador ,recomendable !! profesional por excelencia !!! y ciertamente gran conversador ,recomendable !! 5 2023-01-26 01:15:46.601561+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.333717+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 164 google ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB 1 t 167 R. Fleitas Peluqueros unknown Te hacen sentir muy cómodo y buenos profesionales te hacen sentir muy cómodo y buenos profesionales 5 2026-01-25 01:15:46.601566+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.345572+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 165 google ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB 1 t 168 R. Fleitas Peluqueros unknown Muy amables, profesional, cliente para toda la vida. muy amables, profesional, cliente para toda la vida. 5 2021-01-26 01:15:46.601629+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.354622+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 166 google ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB 1 t 169 R. Fleitas Peluqueros unknown Espectacular,,arte es lo que tiene espectacular,,arte es lo que tiene 5 2024-01-26 01:15:46.601641+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.366066+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 167 google ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB 1 t 170 R. Fleitas Peluqueros unknown La mejor barbería de la zona de guanarteme la mejor barbería de la zona de guanarteme 5 2023-01-26 01:15:46.601647+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.383167+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 168 google ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE 1 t 171 R. Fleitas Peluqueros unknown No te puedes morir sin ir antes 💈✨ no te puedes morir sin ir antes 💈✨ 5 2021-01-26 01:15:46.601652+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.407465+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 169 google ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB 1 t 172 R. Fleitas Peluqueros unknown Peluqueros muy trabajadore peluqueros muy trabajadore 5 2020-01-27 01:15:46.601658+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.414574+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 170 google ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE 1 t 173 R. Fleitas Peluqueros unknown Buen servicio buen servicio 5 2023-01-26 01:15:46.601663+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.424118+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 171 google ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB 1 t 174 R. Fleitas Peluqueros unknown Buen trato buen trato 5 2022-01-26 01:15:46.601668+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.437631+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 172 google ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB 1 t 175 R. Fleitas Peluqueros unknown La mejor peluquería de la ciudad 👌🏽 la mejor peluquería de la ciudad 👌🏽 5 2021-01-26 01:15:46.601673+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.446382+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 173 google ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE 1 t 176 R. Fleitas Peluqueros unknown Malísimo malísimo 1 2024-01-26 01:15:46.601678+00 ca v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.459366+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 4 google test-review-6d959dcd 1 t 7 test-business-56bf5298 test-place-56bf5298 The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. the food was absolutely terrible! we waited 45 minutes for cold pasta. mike the waiter was rude and dismissive. never coming back. 1 2026-01-15 14:30:00+00 en v5.1 O1.01 {J1.01,A1.01} V- I3 CR-N {} {} {} 0.85 mocked-gpt-4o-mini {} 2026-01-24 18:27:16.857691+00 2026-01-24 18:27:16.828202+00 8bd29859-482d-4e52-a026-3c30432e7cc5 5 google test-review-f193e227 1 t 8 test-business-56bf5298 test-place-56bf5298 Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. great experience! the steak was cooked to perfection and sarah provided excellent service. a bit pricey but worth it. 5 2026-01-18 19:00:00+00 en v5.1 O1.01 {A2.01} V+ I3 CR-N {} {} {} 0.9 mocked-gpt-4o-mini {} 2026-01-24 18:27:16.864942+00 2026-01-24 18:27:16.834392+00 8bd29859-482d-4e52-a026-3c30432e7cc5 7 google test-review-b063df39 1 t 10 test-business-d8c3476f test-place-d8c3476f The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. the food was absolutely terrible! we waited 45 minutes for cold pasta. mike the waiter was rude and dismissive. never coming back. 1 2026-01-15 14:30:00+00 en v5.1 O1.01 {J1.01,A1.01} V- I3 CR-N {} {} {} 0.85 mocked-gpt-4o-mini {} 2026-01-24 18:27:47.610123+00 2026-01-24 18:27:47.263388+00 8bd29859-482d-4e52-a026-3c30432e7cc5 8 google test-review-adce42df 1 t 11 test-business-d8c3476f test-place-d8c3476f Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. great experience! the steak was cooked to perfection and sarah provided excellent service. a bit pricey but worth it. 5 2026-01-18 19:00:00+00 en v5.1 O1.01 {A2.01} V+ I3 CR-N {} {} {} 0.9 mocked-gpt-4o-mini {} 2026-01-24 18:27:47.770324+00 2026-01-24 18:27:47.36575+00 8bd29859-482d-4e52-a026-3c30432e7cc5 9 google test-review-23919f56 1 t 12 test-business-d8c3476f test-place-d8c3476f Average food, nothing special. The ambiance was nice though. Wait time was reasonable. average food, nothing special. the ambiance was nice though. wait time was reasonable. 3 2026-01-20 12:00:00+00 en v5.1 O1.01 {} V0 I1 CR-N {} {} {} 0.7 mocked-gpt-4o-mini {} 2026-01-24 18:27:47.805938+00 2026-01-24 18:27:47.376419+00 8bd29859-482d-4e52-a026-3c30432e7cc5 10 google test-review-58dfba96 1 t 13 test-business-ca8fef85 test-place-ca8fef85 The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. the food was absolutely terrible! we waited 45 minutes for cold pasta. mike the waiter was rude and dismissive. never coming back. 1 2026-01-15 14:30:00+00 en v5.1 O1.01 {J1.01,A1.01} V- I3 CR-N {} {} {} 0.85 mocked-gpt-4o-mini {} 2026-01-24 18:27:59.11628+00 2026-01-24 18:27:59.081585+00 8bd29859-482d-4e52-a026-3c30432e7cc5 11 google test-review-face2761 1 t 14 test-business-ca8fef85 test-place-ca8fef85 Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. great experience! the steak was cooked to perfection and sarah provided excellent service. a bit pricey but worth it. 5 2026-01-18 19:00:00+00 en v5.1 O1.01 {A2.01} V+ I3 CR-N {} {} {} 0.9 mocked-gpt-4o-mini {} 2026-01-24 18:27:59.127251+00 2026-01-24 18:27:59.085218+00 8bd29859-482d-4e52-a026-3c30432e7cc5 12 google test-review-95de34a9 1 t 15 test-business-ca8fef85 test-place-ca8fef85 Average food, nothing special. The ambiance was nice though. Wait time was reasonable. average food, nothing special. the ambiance was nice though. wait time was reasonable. 3 2026-01-20 12:00:00+00 en v5.1 O1.01 {} V0 I1 CR-N {} {} {} 0.7 mocked-gpt-4o-mini {} 2026-01-24 18:27:59.131735+00 2026-01-24 18:27:59.087185+00 8bd29859-482d-4e52-a026-3c30432e7cc5 1270 google ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE 1 t 1273 Soho Club unknown Praeitą šeštadienį apsilankiau jūsų klube, tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei, super, ačiū, iki kitų kartų! praeitą šeštadienį apsilankiau jūsų klube, tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei, super, ačiū, iki kitų kartų! 5 2024-01-30 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūs"} {0.00281785,0.06198824,-0.03295563,-0.048154693,-0.1439875,-0.013794689,0.04314683,0.029864047,-0.013782225,0.056065496,0.071183346,-0.031202063,-0.012780668,-0.016560137,0.010798302,-0.08770902,0.042403728,-0.0055406485,-0.015801659,-0.04224159,-0.0016636979,-0.087350875,-0.057567947,-0.03777314,0.008876865,0.042018466,0.026439521,0.04608581,0.046818748,0.0009252217,-0.053799603,0.092739135,0.016856795,-0.040829875,0.042857427,0.09550565,-0.09879271,-0.065217726,0.021248102,0.038231745,-0.016468681,-0.028388882,-0.044115078,-0.042425964,0.073987246,-0.0010458282,-0.010004071,0.023125678,0.05155189,0.006446836,-0.07431444,0.023560084,-0.008590974,-0.00114269,-0.03654096,-0.11003664,-0.05415593,0.00026157167,0.022360219,0.03328261,0.011495412,0.05164891,0.011068907,0.014254609,-0.0029402787,-0.07156634,-0.117208056,0.06254166,-0.085034646,0.05394268,0.04525872,0.008113604,-0.02563426,0.07006905,-0.09013528,0.029978639,0.04756577,-0.045744374,0.054026667,-0.043299444,-0.023874026,-0.059046704,0.00039035644,-0.00041695044,-0.07142382,0.010083737,0.07353394,-0.021739118,0.021125259,0.001825301,-0.0015190748,0.028123874,-0.06792834,-0.07772658,-0.03317646,0.087461896,-0.105455436,-0.018302543,-0.058766123,0.012126324,0.01930903,0.0038958879,0.050067175,0.012589556,-0.15101348,0.08740279,-0.0076998873,-0.066391595,0.08574341,0.05212715,-0.08213584,0.0011487125,-0.064906545,-0.084674336,-0.037295055,0.024142196,0.013605845,0.01782896,-0.038532764,0.030946404,0.041013427,-0.05981182,-0.0068712393,0.007460062,0.011278151,-0.098763876,0.08568462,2.7898592e-32,-0.026279422,-0.07602296,0.004592377,-0.04753791,0.08923243,-0.0524379,-0.05589516,-0.08464234,-0.033207737,0.01033072,-0.025482468,0.009713314,0.0041975146,-0.038406935,0.028340029,0.06940659,0.026515428,-0.05147474,-0.017762868,-0.007972009,0.017894657,0.0027540557,0.07623744,-0.0014803065,-0.06724801,0.016811542,0.028836375,-0.042148486,-0.00024834005,0.031130575,0.052489877,-0.029587086,-0.06170342,-0.040855836,-0.05975274,0.015335272,-0.0435944,-0.059059072,-0.07690336,-0.033520084,-0.050226644,-0.008933926,-0.012132479,0.13683803,-0.03623056,0.041167006,0.027182383,-0.026251685,0.11204088,-0.04515828,-0.09842159,-0.03742082,-0.0110735865,-0.07074889,0.01174209,0.0144738825,0.011484737,0.067047946,0.019702114,-0.064123616,0.030997014,-0.029210277,0.019181523,0.03656367,-0.05135751,-0.06663519,-0.00013593471,-0.00857751,0.10652724,-0.100188404,-0.06040714,-0.0002806275,-0.05974895,0.01721809,0.00921648,-0.022880433,0.05234151,0.007899494,0.03388903,-0.0031367452,-0.08797124,0.012883942,0.0058389585,-0.0127827,0.07803592,0.036635637,-0.023263535,-0.04035303,0.0802987,0.04439798,-0.019537663,0.019812137,0.09346775,-0.0029213442,-0.023260297,-2.5424512e-32,0.023399513,-0.0053590867,0.006839614,0.003301772,0.0696949,0.023025263,-0.04033184,0.059229754,-0.0123719815,0.030627873,-0.06693835,-0.065877795,0.04341054,-0.009002523,-0.069074705,0.069759786,0.14403813,0.08845074,-0.045658432,-0.025373949,-0.017416587,0.015088656,0.030533947,0.0149972895,-0.08176172,-0.005298856,0.061420973,-0.05277286,-0.10456068,0.0043979506,0.046325114,-0.019570703,-0.088772886,0.12124703,0.021053843,-0.03285994,0.076355904,-0.0092063295,-0.022662539,0.057484243,0.049410716,0.06490003,-0.00489912,0.050093077,-0.038706433,-0.074968964,-0.04515349,0.0004300387,-0.07261048,-0.07238975,0.06817926,-0.022186305,-0.058996398,-0.073578715,0.06627573,0.028124548,0.05658961,-0.02662412,-0.049301893,0.03627669,0.03894322,-0.059179,0.036729496,0.06642414,0.049865566,0.08077381,0.0062614772,0.08029096,-0.043821998,0.033063546,-0.021105817,-0.10076998,-0.10316209,0.03235627,-0.048867024,-0.027141793,0.011252285,0.021902112,0.014580759,-0.025267579,-0.029142058,-0.052663986,-0.07403088,0.008313006,0.013818589,0.039905492,0.0004365151,0.061053272,0.07292507,0.0624077,0.034716416,0.064694434,0.0722974,0.001814237,0.040089846,-7.4511426e-08,-0.06675842,-0.028027518,-0.03851742,0.046394695,0.015064677,-0.052828345,-0.024923619,-0.0668107,0.015798088,0.02173229,-0.020939888,0.00029464974,0.0014733034,0.011069386,0.03731854,0.116727725,0.049750596,0.13647614,-0.0020092302,-0.032752562,0.0803971,-0.0058287866,-0.040253054,0.026437802,-0.037654053,0.04261088,0.0025967024,-0.012870853,0.026821267,-0.056462996,-0.018712247,0.021472836,-0.021767847,-0.10596379,-0.021815889,0.05194052,-0.015351403,-0.003376257,0.0012531449,-0.0044148574,-0.010406819,0.003130249,0.06731071,-0.024279634,-0.0049995985,0.07196438,0.043382235,0.02065343,-0.02519527,-0.056362,-0.108300306,0.014833095,0.03730552,-0.0025372289,-0.008494173,0.02287414,-0.01802317,0.02260946,0.025277011,-0.033580016,0.08553601,0.047206577,-0.07317386,-0.07133352} 1 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:06.528895+00 2026-01-29 18:36:00.658596+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 65 google ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE 1 t 68 Fika unknown Such a lovely café with beautiful decor and fair prices. The igloo garden is a fantastic idea – warm and cozy even on a chilly day. The coffee was delicious, and the staff were extremely friendly and welcoming. Thank you, JW 😁\nHighly recommended! such a lovely café with beautiful decor and fair prices. the igloo garden is a fantastic idea – warm and cozy even on a chilly day. the coffee was delicious, and the staff were extremely friendly and welcoming. thank you, jw 😁 highly recommended! 5 2025-05-29 23:35:50.732218+00 en v5.1 E1.01 {P1.01} V+ I2 CR-N {} {"E1.01": "Such a lovely café with beautiful decor and fair prices.", "E1.02": "The igloo garden is a fantastic idea – warm and cozy even on a chilly day.", "O1.01": "The coffee was delicious, and the staff were extremely friendly and welcoming."} {-0.045318577,0.07646007,0.016714394,0.08980295,-0.037393022,0.021828985,0.064455114,-0.054021858,-0.0168749,0.02721785,-0.07076957,-0.0331079,-0.038006067,0.0075116707,0.038416535,0.02903495,0.094753616,-0.05543371,0.011680463,-0.10148601,-0.010119918,-0.022240717,0.014402882,-0.0055838125,-0.020901611,0.06547059,-0.05375626,0.051023755,-0.0077082515,-0.007875354,-0.053704645,0.05495743,-0.013131456,0.0059269867,0.013481638,0.003515025,0.037475508,-0.13714035,0.07848363,0.08298647,-0.05019484,-0.037220966,0.07398905,-0.04635858,-0.050124746,0.035509113,-0.050650872,0.048605226,0.01312092,-0.02776127,-0.06356305,0.037260223,0.0017867499,-0.11952193,0.02461109,-0.027909713,-0.04387179,-0.044298176,-0.00952664,0.07774533,0.057076693,0.0016324503,-0.015354546,0.12441055,0.0010443344,-0.08132018,-0.047048293,0.04044757,0.024847506,-0.06850245,0.021609267,0.002216728,-0.008633219,-0.08121763,-0.04881036,0.020863002,0.005437799,-0.0076380046,-0.0037185221,0.007791832,0.040735144,0.03025022,0.12534516,0.026252527,-0.09361193,-0.04677393,0.031185536,0.0120424945,0.05381774,-0.019758737,0.010923544,-0.02003327,-0.07417566,0.031933296,-0.016966775,0.021169657,0.059498735,-0.05633888,-0.03903277,0.0025918463,-0.04225277,0.007861451,0.04165073,-0.015393035,0.024693808,-0.043432903,-0.080400094,0.016416902,0.056159943,0.04428548,-0.027244227,-0.07351752,-0.032264747,0.05636743,-0.0066265482,0.01136126,0.09647554,-0.010790236,0.015133199,0.027371192,-0.033088434,-0.033744793,0.005297587,0.045551322,-0.120702095,0.07875262,-0.004663549,-1.5322281e-33,-0.009734502,0.001853733,0.006776978,-0.01032862,0.08489888,-0.057405476,-0.039520524,-0.024465946,-0.10904667,0.04847866,0.016954241,0.040818114,-0.0029099914,-0.0030346264,-9.5418305e-05,-0.03536897,-0.07667159,-0.010371519,-0.06898224,0.01663046,-0.009334143,0.020621568,0.03638707,0.022934932,-0.036529534,0.05825153,0.09060811,-0.011523435,-0.05204105,0.018083477,0.036410686,-0.07880102,-0.11019437,-0.008907516,-0.04513531,-0.1046274,-0.043236446,-0.035769213,0.004892185,0.05524403,-0.035247542,0.002138048,-0.013931788,-0.0031038173,0.017936645,0.07735075,0.044359107,-0.0049019167,0.03751337,-0.050738156,-0.04121008,0.06200034,-0.09160175,0.061731856,0.039822698,0.0007402924,0.03870508,0.098806895,0.12261674,0.010047466,-0.00630811,0.055000275,-0.045558903,-0.09097209,0.016119624,-0.085405596,-0.022919374,0.05947041,-0.027159764,0.0074128145,0.08012672,-0.044023346,0.08020477,-9.092792e-05,0.026538895,-0.018348347,-0.029022273,0.08918231,0.018146437,0.06964864,0.121345185,0.067907944,0.057832733,0.0005178998,-0.05419435,-0.04535661,0.04899744,0.0015583977,-0.07492096,0.015332162,-0.06154012,0.0018061323,0.07989801,-0.022814188,-0.015533477,-1.7554333e-33,0.051033538,-0.018467546,-0.025241833,-0.026942858,0.006835328,0.01853908,-0.0035570366,-0.013054649,0.018899962,0.02914882,-0.03040918,0.12681265,0.08682015,0.042356007,-0.066747,-0.021679882,0.024507783,-0.038830604,-0.063734286,-0.024840383,-0.0077897757,0.005977137,-0.07400677,-0.039943755,-0.09877424,0.03116566,0.006550112,-0.056700848,-0.06902588,0.0534458,0.0044578533,0.008606643,-0.013529293,-0.037770554,0.067183696,-0.0024417846,-0.01697987,-0.10769797,-0.0884071,0.058308996,0.040553197,-0.06083113,0.02646947,0.057807855,0.06995555,0.016367879,-0.10864321,-0.043514572,-0.022506515,0.0041930047,-0.012733864,0.018135488,-0.1082883,-0.027599169,-0.012031019,-0.05824398,0.028583042,0.0067726113,-0.07425504,-0.003020271,-0.040101167,0.06406459,0.024804078,-0.0009544941,0.0487549,0.05560102,0.06801231,-0.1484802,0.02389976,-0.010645333,0.03760887,-0.08535651,-0.030151164,-0.039444916,0.07380182,0.0069823978,0.105037995,0.037064455,-0.0055909054,-0.06944808,0.058573518,0.023798184,0.032436673,0.028499307,0.06879341,-0.052061815,0.02405828,-0.0010553107,0.011052233,0.07455868,0.026742509,0.082629874,-0.078989185,-0.011081992,0.045965955,-4.23296e-08,-0.015256331,-0.009018321,0.030252773,0.07550911,-0.0021337774,-0.08892205,0.032634962,0.0053182403,-0.0065087145,0.045054965,-0.019188903,0.028845578,0.014266231,0.12010831,0.0044841603,-0.047311995,0.034319613,-0.018114543,0.0057642255,0.06810084,-0.008091761,-0.022740534,0.046008643,-0.083962694,-0.01353129,-0.042595033,0.014547738,-0.0974472,0.058816444,0.008761727,-0.071854554,0.030441323,-0.023440607,0.07359314,-0.059180357,-0.06023807,0.01680373,-0.011258711,-0.07074539,-0.07902876,-0.033105146,-0.10372265,0.00059871865,-0.009165445,-0.04278327,0.09312041,-0.048575427,0.013584675,-0.05823991,0.06649107,-0.09240419,-0.027129963,0.028271161,0.034510776,0.008766879,-0.03182913,-0.03184326,-0.0014891411,0.064139545,-0.008383084,0.014392595,0.0005657734,-0.07857023,-0.02606462} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:53:57.102122+00 2026-01-24 23:35:51.029017+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 83 google ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE 1 t 86 Fika unknown Очень приятное, чистое место. Рекомендую посетить очень приятное, чистое место. рекомендую посетить 5 2025-06-28 23:35:50.732264+00 ru v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Очень приятное, чистое место.", "R1.01": "Рекомендую посетить."} {0.074841395,0.074717134,0.0062395628,0.012915237,0.003740049,0.029289333,0.1003441,0.099041864,-0.0027516375,-0.01847901,0.018891066,0.059445728,-0.030000959,0.06898568,0.04899061,-0.09105302,-0.02712937,0.085595325,0.06393452,0.042604756,0.015191697,-0.028295262,0.11298599,0.02055942,-0.049663708,-0.008130021,0.003969741,-0.020355497,0.04938233,0.0905566,0.017825333,0.018899659,-0.027036766,-0.013013075,-0.011182236,0.09340402,0.022365132,-0.020110702,-0.023925582,0.05888648,-0.063165486,-0.047121044,-0.07804047,0.049774364,0.017237121,0.03273988,-0.056898534,-0.010947873,-0.0033666133,-0.04380694,-0.09024328,0.01294613,-0.06276509,0.019035712,0.041608665,-0.038379367,-0.04606059,-0.024467196,-0.08696187,-0.09517165,-0.031360835,-0.0022191675,-0.00054515636,0.022915553,-0.0056650676,0.014775352,0.023357388,0.09901765,0.01777838,0.07891132,0.027955491,0.019933864,-0.07994441,0.0007346648,-0.090509534,-0.081290476,0.011040935,-0.017147345,-0.0865347,0.04637423,0.038214177,0.0072915456,-0.03532072,-0.04927339,-0.018692011,-0.028123556,0.058560133,0.030591954,-0.029160658,0.05800215,-0.06697339,0.04043964,0.04784911,0.004981252,-0.057761278,-0.046141274,-0.007071804,-0.06813513,0.14008422,-0.01749518,-0.017187072,-0.022622729,0.038614973,0.043036886,-0.13393089,-0.0022317586,-0.08348891,-0.13557835,-0.0062157637,0.0064589377,-0.034534294,-0.050504446,-0.028931055,-0.06737556,0.0062021487,0.03686284,-0.031686105,-0.045181207,0.030341083,0.011522736,0.025225941,-0.007373247,0.016833331,0.0011568194,0.018508,-0.035657268,0.06653822,2.6145645e-33,-0.027874155,-0.06663927,0.0050122393,0.003625479,-0.10894191,0.05023415,0.0032983324,-0.044501785,0.014190401,0.018680556,0.017271405,0.025223024,0.015119373,-0.07079564,0.06560499,0.021358265,0.04810196,0.08341707,0.07585687,0.09476018,-0.018497642,0.029273124,-0.034814186,0.07067429,0.039621614,-0.022532608,-0.016975118,-0.031288054,-0.016271865,-0.025529843,0.037981715,-0.0037134553,-0.018566443,-0.0037899383,-0.0700025,-0.06453996,0.005167407,0.080299616,0.09620964,-0.001144537,0.0905854,-0.13332632,0.045213457,-0.023577582,0.0539538,0.019330032,0.061524227,0.007776029,-0.03701291,0.023630751,-0.026775321,-0.025522057,-0.0071137715,0.039442368,0.022192154,0.020685392,-0.05871776,-0.037340783,-0.124161795,-0.058607344,0.02911078,-0.107991315,-0.07833815,-0.04642312,-0.024640251,-0.0062609194,0.04331647,0.011905821,0.060324166,0.034658138,-0.11961043,-0.035357863,-0.04244019,0.01258571,0.07057214,-0.02821915,-0.030532386,0.04616429,-0.040963218,0.04469934,-0.065505356,0.0760464,-0.040364403,0.022071488,0.106581695,0.052376457,0.036343426,-0.020783594,0.005483068,0.10063952,-0.10426969,-0.05264801,0.032693896,0.107455336,0.01563439,-6.7039016e-33,0.01648256,0.0050877193,-0.094052054,0.09062734,0.03710377,0.064964786,0.0075238515,0.06296312,-0.020032765,0.049703486,-0.04557218,-0.13700901,-0.034924693,-0.025161974,-0.07744885,-0.0018248088,0.028563827,0.026183546,-0.11620398,-0.0027915149,-0.037221078,0.026161863,0.028812487,-0.042107947,-0.008756803,-0.044447083,0.116600014,-0.057285406,-0.061400287,0.05858187,0.0038792146,-0.036009304,-0.057066265,0.09475678,-0.022551006,0.011016365,0.02986984,-0.061301492,-0.06174041,0.112139635,0.01214807,0.055996023,0.027317345,0.014145953,-0.039620657,-0.009170521,-0.038340684,-0.060075518,-0.0024860727,-0.045858312,0.02280266,0.055010874,-0.051864162,-0.10191585,0.06458471,-0.031935416,-0.024223657,-0.041865565,-0.026759509,0.010994799,0.052965455,-0.04994967,0.015955176,-0.006368209,-0.029640313,0.020177381,-0.028765604,0.01765203,0.04223895,0.045916263,0.017821128,-0.02499196,0.0220951,0.051253445,-0.0053667417,-0.021838887,-0.09031555,0.021304175,0.03611467,-0.010798847,-0.01464763,-0.03198111,-0.016093653,-0.12929724,-0.062349383,-0.02230001,-0.018900473,0.015865419,0.005569697,-0.037991144,0.0065723434,0.030802252,-0.008306381,0.019885566,-0.006753088,-3.545667e-08,0.07560882,-0.09331972,0.074256286,-0.00016293878,-0.044201497,-0.06263685,0.033028796,0.06308841,-0.071184434,0.04683469,-0.03700579,-0.032670453,0.011094245,0.045760956,-0.06837857,-0.0022588333,0.04716031,0.027143495,-0.01046816,-0.04130559,0.036495384,-0.05831817,-0.081403755,-0.028348433,-0.01628424,-0.0019152256,0.028569218,-0.023113491,-0.034520324,-0.025479486,0.02248186,0.0071034,-0.027196564,-0.019800203,-0.0048479,-0.04965943,0.08511209,0.04535023,0.03666826,-0.042139675,0.032526653,-0.037267927,0.06767331,0.06108482,-0.030368911,0.028429348,-0.03813687,-0.023452058,0.044868086,0.019273117,0.009839976,0.051535793,-0.026826054,-0.05773573,-0.0192655,0.11470521,0.053367794,0.03618249,-0.093827516,-0.06266332,-0.03407558,0.05145986,-0.009581186,-0.057855215} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:56:34.183536+00 2026-01-24 23:35:51.086236+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 63 google ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB 1 t 66 Fika unknown Great coffee. Fresh baguettes with filling bursting out. Friendly attentive service. Lovely little garden, sheltered and a suntrap. great coffee. fresh baguettes with filling bursting out. friendly attentive service. lovely little garden, sheltered and a suntrap. 5 2025-04-29 23:35:50.73221+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"A1.01": "Friendly attentive service.", "E1.01": "Lovely little garden, sheltered and a suntrap.", "O1.01": "Great coffee.", "O1.02": "Fresh baguettes with filling bursting out."} {-0.08248224,0.053939417,0.034924343,0.02387157,-0.001224816,0.021048453,0.071977764,-0.014396587,0.03979098,-0.026294718,-0.015081208,-0.013227289,0.020137478,-0.0838705,-0.04707345,-0.07545572,0.14232156,-0.05362396,0.020249337,-0.013968951,-0.042314332,-0.011508266,0.07804168,0.01522223,-0.008081045,0.042244017,0.032137476,-0.020175647,0.017145788,-0.044494595,0.016357623,0.0956566,-0.024436668,-0.050394714,-0.091319025,0.08291813,0.13965192,-0.06935589,0.049011547,0.041835576,-0.053148996,-0.032401524,0.019790001,-0.05252819,0.015204928,0.039080635,-0.024307977,-0.046891052,0.0040326472,-0.059285518,-0.003696953,0.04292599,-0.010083706,-0.040165935,-0.069908604,-0.05950643,-0.05117958,-0.021439046,0.0026706674,0.059401643,0.02328062,-0.020507244,-0.04688468,0.06855669,-0.015274561,-0.099949084,-0.082090855,0.012209576,0.0190174,-0.01971142,-0.047424365,0.06260232,0.068148226,-0.070694774,-0.06568048,0.02781943,-0.02314638,-0.020922724,-0.057737123,-0.050844066,-0.009692823,-0.009222311,-0.010578944,0.094255626,-0.032430932,-0.08581663,0.063535154,-0.013031391,0.061467126,-0.037463043,-0.011335983,0.035233404,-0.021198966,0.10306657,-0.10394267,-0.042650986,0.04761635,0.026538713,-0.043480806,0.013102139,-0.0009827962,0.10224956,0.05519891,-0.023437548,-0.021480296,0.012411018,-0.045551267,-0.0109444475,0.0783719,-0.035171777,0.005735961,0.029555967,-0.0553192,-0.011980523,0.004128332,0.067316696,0.057247277,-0.11749888,-0.034260325,0.017938681,-0.04315694,0.011901788,-0.049485393,-0.024182152,-0.038902685,0.028148828,0.06257641,5.1676385e-35,-0.040082995,0.067728154,0.07697499,0.08489018,-0.0029483703,-0.04466592,-0.135196,0.030133847,-0.093772806,0.005271789,-0.040319163,0.026508007,-0.011457946,0.07989445,-0.029682627,-0.04821553,-0.06888901,0.023290375,0.03222366,-0.036404975,-0.057106555,0.024396565,0.05298208,0.033909906,0.02731511,-0.0367486,0.08781401,-0.00036348717,-0.025603747,0.014665288,0.024665428,-0.026903767,-0.00074956263,-0.013198412,-0.0664624,0.0617871,-0.0450161,-0.012524812,0.05067524,0.05785755,-0.024829116,-0.019257272,0.019515142,0.005458685,-0.09472154,0.0077940216,0.03463001,0.01888757,0.02393108,-0.04394802,-0.037343234,-0.039687663,-0.039063316,0.09898682,-0.021130258,0.04099967,-0.027029596,0.08947919,-0.023617296,-0.026309695,0.08212827,0.021112591,-0.051454708,-0.03300976,-0.0017722351,-0.03139323,-0.007031941,0.012923141,0.041859474,-0.028623192,0.001063411,0.008307289,0.10616428,0.007373438,0.096838325,0.010574126,0.024169752,0.031840738,0.05459083,0.08006843,0.07697302,-0.06794165,-0.061634228,-0.00674217,-0.03950444,0.05471123,0.052821178,-0.015376045,-0.006666098,0.038163077,-0.054032095,-0.031403914,0.07325242,-0.035981447,-0.07578442,-1.8229871e-33,0.08849283,0.011974703,-0.029385155,0.06420674,0.034870487,0.029404148,-0.022345385,0.009939128,-0.061126575,-0.018103983,-0.023753643,-0.022085683,0.14432564,0.02405317,-0.12186087,0.032536346,0.0124722505,-0.016758163,-0.026909472,-0.053951677,-0.0808409,0.0057970667,-0.08797614,-0.025068058,-0.04785157,0.116347544,-0.057575405,0.018199604,-0.11771634,-0.032082733,-0.013545053,-0.038024575,-0.013373349,-0.022572905,-0.0082396045,0.08456877,-0.030874675,-0.026581386,0.01879172,0.10943548,-0.0832306,-0.038484212,0.014113011,0.018409967,0.07036394,-0.027215917,-0.037416663,-0.0414928,-0.045971368,0.0233358,0.027660763,0.061442863,-0.10544427,0.020351186,-0.04316137,0.012754284,-0.07213596,0.043881346,-0.058198094,-0.04196842,-0.023234546,0.097050965,0.018519586,0.030357232,0.06920156,-0.037731342,-0.08792684,-0.03701111,0.014292289,0.02119865,0.067987286,-0.03961905,0.0025191875,0.016489984,0.07092548,0.0027295114,0.07725574,-0.103723295,-0.06448363,0.018182978,0.011726853,-0.0015944995,0.016481219,0.025808262,0.0037660063,0.015235116,0.02088164,-0.08519615,0.055388022,-0.003042007,0.013203139,0.048151594,-0.10239372,-0.0052201427,0.12581655,-2.9192408e-08,0.017122017,-0.003326898,-0.08161062,0.10265119,-0.020947006,-0.08637957,-0.012313928,0.01865249,-0.048855357,0.02599272,-0.008484765,0.06894888,-0.057954405,0.010881331,-0.01649124,-0.036228586,0.04902163,0.050599683,-0.005593444,0.017759958,0.022955552,0.047633957,0.024231547,-0.010519212,0.037662037,-0.0028653755,0.022684012,-0.09371578,0.058798645,-0.06367951,0.015727235,0.07035955,-0.01964734,-0.0059684054,-0.035885207,0.03394927,-0.0687311,0.01670306,-0.008667265,-0.019854628,0.0039308965,-0.021212265,-0.09144229,-0.026728049,-0.094870634,0.052609026,-0.026130505,0.014914645,-0.05001916,0.105233386,-0.02085861,0.037916396,0.1075679,0.011273356,-0.0014005887,0.019608546,-0.07506,0.018497523,0.028360574,-0.0075016567,-0.060758084,0.039554745,-0.03484721,-0.045877643} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:53:34.152281+00 2026-01-24 23:35:51.019457+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 1271 google ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB 1 t 1274 Soho Club unknown Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų, apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. Tai jei norite blogios nuotaikos ir prarastų pinigų welcome to Soho. nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų, apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. tai jei norite blogios nuotaikos ir prarastų pinigų welcome to soho. 1 2023-01-30 18:34:31.336452+00 lt v5.1 V1.02 {} V- I3 CR-N {} {"P1.02": "apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties.", "V1.02": "Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteili"} {0.02731128,0.11715757,0.0174636,-0.035924476,-0.10409453,-0.020397464,0.03967946,-0.015614067,0.0029488592,-0.026300684,0.044100624,-0.044007033,-0.031411387,0.014478104,-0.029934805,-0.07688303,0.03687506,0.05602173,-0.07934417,0.020251269,0.028846214,-0.063703485,0.017671721,-0.025265632,-0.020724641,-0.047337476,0.051285584,0.010896526,0.028234098,-0.041049164,-0.032419328,0.035200953,-0.06001239,-0.021994786,0.04547388,0.06144597,-0.036693644,-0.021973385,-0.02032316,0.08632517,-0.0246325,-0.095222495,-0.087901525,-0.038408246,0.024869315,0.025468096,-0.061057903,0.016261082,0.063987605,-0.04449859,-0.08940413,-0.032976296,0.004780865,-0.042279188,-0.011477078,-0.02355463,-0.011329037,0.0116983205,-0.011088402,0.026587602,0.0888713,-0.026366368,0.03703574,0.015524419,0.016895879,0.03874509,-0.005248384,0.09187614,-0.04266387,0.02440752,0.05699921,-0.051233325,-0.025389425,0.011017751,-0.057161625,0.012352382,0.013953151,0.045329466,0.042594682,-0.083073944,0.07142077,-0.020180121,-0.073900014,0.0037470418,-0.011611239,0.02522299,-0.009630031,0.0037351535,0.06037336,-0.00619538,-0.07000015,0.05147928,-0.11234021,-0.103047214,-0.036464162,-0.01905065,-0.08182739,0.07244934,-0.053773593,0.0059847473,0.025303297,0.023038963,0.027582396,0.0014852728,-0.0804751,0.036881767,0.058290612,-0.054147806,0.021790667,0.08792278,-0.06754931,-0.020694183,-0.07979855,-0.04510971,0.008988656,0.015272479,0.02046667,0.024987483,-0.055606347,0.004660843,0.08499412,-0.03431879,-0.020970102,0.0340939,-0.08287102,-0.016529102,0.026067825,2.2522353e-32,-0.019837858,0.014914913,-0.013107267,-0.020200849,-0.019474793,-0.013234985,-0.1285672,-0.019999469,-0.055498865,-0.041548267,-0.01870146,-0.054631017,-0.031338207,-0.0226904,0.064079255,0.004637631,0.11522974,-0.025874307,-0.031296663,0.001452894,0.0067534787,0.042666953,0.00044105898,-0.030567704,-0.019529497,-0.03252494,0.012338358,-0.056365892,-0.06347157,-0.0020824138,0.0775823,-0.06806059,-0.018207395,-0.044459514,-0.035885938,-0.006479816,-0.063449085,-0.037554145,-0.035965182,-0.090906024,-0.15706332,0.009733682,0.017314661,0.089807846,-0.033814576,0.113166034,-0.00096820196,0.06010424,0.13191912,-0.048128475,-0.07216884,0.01278535,-0.08676665,-0.011049606,0.027250363,0.0019893511,0.026833769,0.004303898,0.02148391,-0.10485464,0.019403543,0.03404709,-0.05128414,0.0021688936,-0.042666994,-0.04321691,0.013526062,0.050883263,0.012046512,-0.075589575,-0.10197644,-0.02246894,-0.019774403,0.09573099,-0.049750026,0.036628947,0.0438631,-0.023595318,0.01335796,0.040192246,0.0055371835,-0.025587732,0.007573563,-0.012279482,0.044872854,0.040589113,0.049470153,-0.031011667,0.08262297,0.07646887,0.018452331,0.017976219,-0.012624666,-0.037690062,-0.04937818,-2.1345415e-32,0.054842394,0.0026597076,-0.0034485036,-0.0345036,0.07422596,0.08680642,-0.091230854,0.004576132,-0.03880981,0.027157618,-0.034391556,-0.07770525,0.036490884,-0.034071337,0.02119665,0.060683295,0.070488624,0.07388121,-0.05353504,-0.056051068,-0.0021556458,0.04063658,-0.04774982,-0.011021017,-0.08855697,0.039768584,0.03337748,0.02593649,-0.1964003,0.027405344,0.024001315,-0.039153304,-0.087688364,-0.019213693,0.062410377,0.023852916,0.07989756,-0.043466993,-0.053980924,0.005820904,0.022014856,0.035607312,0.013597627,0.03484812,-0.07694602,-0.05561117,-0.090172455,-0.0016288711,-0.014613989,-0.0029666738,0.0694785,0.04428532,-0.02031531,-0.06553604,0.05458353,0.08321214,-0.003994601,-0.054309886,-0.02298796,0.0028212639,0.0043627764,-0.04230252,-0.00028689278,0.06254175,-0.012999918,-0.005894394,-0.037566982,0.10517959,-0.045693114,0.019929206,-0.0403147,-0.037351638,-0.048056766,0.010031106,-0.13682467,-0.021188343,-0.030641047,0.002125429,0.0190453,-0.031218186,0.047688305,-0.032718785,-0.05798204,0.05244507,0.07855432,0.0010105188,0.080666885,0.053932626,0.06626985,-0.016848743,0.040799037,0.04573715,-0.033012625,0.048983376,0.03697184,-6.563068e-08,0.023735857,-0.06450868,0.013488987,0.0027987552,-0.0016178858,-0.10710225,0.03272205,-0.050313853,-0.051052365,0.090025805,-0.025201878,0.05275043,-0.051360972,-0.006964573,-0.03305567,0.07613532,0.062442802,0.06940863,-0.018438118,-0.01816669,0.112755,-0.028599206,-0.05234455,0.026252247,-0.018765459,0.036626033,0.10678392,0.04386761,0.06816754,-0.0398865,0.0012600676,0.014532611,-0.0111638075,-0.07241011,-0.04166491,0.10383194,-0.03613735,0.025115946,-0.0023090248,-0.008931505,-0.06523924,-0.056440853,0.09084817,0.05709178,-0.0011126696,0.037547503,0.033616494,0.01600745,0.024337567,0.022842275,-0.10864041,0.02952694,0.081289805,0.060598604,-0.039007124,-0.0332705,-0.013910461,0.08344507,0.036263913,-0.008649052,0.08463755,-0.011460714,0.017494522,-0.025211325} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:14.989533+00 2026-01-29 18:36:00.660622+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 73 google ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE 1 t 76 Fika unknown The atmosphere is very cosy and friendly even the staff they are so friendly and nice,the coffee and the food are greats i enjoyed and I will come again with my friends.Thank you Fika 😊 the atmosphere is very cosy and friendly even the staff they are so friendly and nice,the coffee and the food are greats i enjoyed and i will come again with my friends.thank you fika 😊 5 2025-03-30 23:35:50.732244+00 en v5.1 E1.01 {} V+ I2 CR-N {} {"A1.01": "the staff they are so friendly and nice", "E1.01": "The atmosphere is very cosy and friendly", "O1.01": "the coffee and the food are greats"} {0.03354372,-0.0034288955,0.07304507,0.06470515,-0.011480245,-0.029215816,0.05426241,-0.092353955,-0.024284221,-0.012560929,0.019375313,-0.0711246,-0.028539497,-0.035111047,0.045700245,-0.059393767,0.09549447,-0.1494223,-0.030656165,-0.042385012,-0.08008661,-0.045410838,-0.012452009,0.053297672,-0.039271716,-0.006996799,-0.017982913,0.07067271,0.022561165,-0.0508446,-0.029636085,0.09278656,0.017265595,0.046069235,-0.041087087,0.13451986,0.0818014,-0.14890687,0.036769155,0.067928866,-0.057624053,-0.0057910113,0.062046614,-0.027123885,-0.0067259427,-0.0080768345,-0.074518256,-0.05900274,0.062926166,0.04109953,-0.016294155,0.038611483,0.023252247,-0.012054079,0.051952228,0.028615955,0.0017648988,-0.08033001,-0.0064735212,-0.012987716,0.03288531,-0.032510787,-0.056130078,0.043597538,0.003012992,-0.12133553,-0.110868305,0.03922207,0.03697408,-0.10620915,-0.024354747,0.0013986588,0.071708135,-0.063211106,-0.043613862,0.040148277,-0.068341166,-0.08699943,0.00018314291,0.053509347,0.1291507,-0.027719988,-0.009700287,0.06269944,-0.10561949,-0.10888777,0.03562808,-0.056994874,-0.0598631,0.037883855,0.051142536,0.1272393,-0.0047260774,-0.029769156,-0.024143258,0.021485452,0.016810732,0.05834638,-0.0027158798,0.02945915,-0.0009844493,0.103403375,0.012923252,0.04090981,-0.04844484,-0.04321224,-0.028950667,0.024713594,0.06720668,-0.02006586,-0.07098095,0.023310894,-0.033191007,-0.046701793,0.008283692,0.08350385,0.059596505,-0.031549722,-0.033412054,-0.05182763,0.035072923,0.036921293,0.0010331983,0.018455306,0.012666334,-0.0295609,0.023420036,-1.4924665e-33,-0.0018481659,0.043217994,0.028072525,0.021762997,0.058438208,-0.046062786,-0.09020278,-0.03541886,-0.08059402,-0.017953543,-0.019230664,0.043117076,0.013161976,-0.021465978,-0.00037243252,-0.049796887,-0.04796596,0.0119408155,-0.071175896,0.02656919,-0.02869196,-0.017846303,0.0016289325,0.10738936,-0.0037681793,-0.0060818605,0.044477414,-0.005386685,0.030603861,0.02973143,0.03317479,0.02986438,-0.037575785,-0.008402381,-0.059646856,-0.009411945,-0.031702727,-0.036192235,0.022987263,0.021928834,-0.035239864,0.018170744,0.031950723,-0.017418038,-0.020806285,0.06872904,0.02286941,-0.023954406,-0.022926027,-0.032794606,-0.112366125,-0.011699104,0.0023899993,0.12859899,0.049789313,-0.00045303066,0.028375478,0.057167113,0.02528655,-0.054830454,0.053040307,0.06597304,0.016892146,-0.0933769,0.05836116,-0.008018557,-0.005958362,0.021862125,0.12327916,0.015324813,0.036509924,0.04775505,-0.005151497,0.01339463,-0.015364919,0.0125693455,-0.03979232,-0.019226667,0.054590363,0.09279728,0.045286365,0.059456162,5.4057466e-05,-0.0050419974,-0.031155588,-0.02443071,0.05842074,-0.062273487,-0.02957278,0.08953457,-0.05368281,0.02255397,0.12165757,0.0011882355,-0.054613862,2.751926e-34,0.12346662,-0.0012749585,-0.07275109,-0.046750274,-0.054755032,0.02535224,-0.023569304,0.05259895,0.008112501,0.091044135,-0.05756064,0.074631885,0.043667253,0.015376194,-0.03496287,0.025890015,0.08320633,0.00441963,-0.06524562,-0.03818584,-0.013749683,0.06377399,-0.040534545,-0.03989782,-0.02117949,0.04732594,-0.038696572,-0.056087192,-0.0988812,-0.042954423,-0.0021282753,0.02049268,-0.041947626,0.052080106,0.06338235,0.048224032,-0.0063981093,-0.018881451,-0.05970046,0.036692012,-0.025237793,-0.029552251,-0.01796102,-0.015777495,0.0048628217,-0.0029540493,0.0014171258,-0.082504794,-0.054867003,-0.08351194,0.028533068,-0.026255103,-0.106806666,-0.039434403,-0.0040126513,0.0041122916,0.026961511,0.021347532,-0.014875531,-0.046051707,-0.0069582546,-0.006317641,0.004292637,0.06408835,0.06492116,-0.05211603,-0.020856613,-0.032666057,-0.0061538704,-0.006467854,-0.016036093,-0.014023266,-0.09840175,0.11352177,0.04733968,0.0063027777,0.09627537,-0.030006059,-0.033651277,0.0046472223,-0.021178462,0.034462992,0.016288035,-0.008140062,0.013476626,0.03721122,0.04389304,-0.0074629015,-0.024567295,0.08138364,-0.020621836,0.015206053,0.006098826,-0.05417754,0.047678415,-3.1623795e-08,0.009717244,-0.049646605,0.056281358,0.08316764,-0.06727855,-0.11962534,0.013275352,-0.0064380197,-0.020842118,0.08837215,-0.028145317,0.050904855,-0.04333123,0.06173373,0.052096147,0.029727703,0.029363627,0.08276019,-0.021373734,-2.3944025e-05,-0.0074365847,0.037499167,-0.04452743,0.017159615,-0.016142083,0.031965513,-0.015615239,-0.09342164,0.016286885,-0.022286464,-0.05163476,-0.013666614,-0.044889636,-0.008694438,-0.018168807,-0.02766817,-0.051125914,-0.076850295,-0.014272844,-0.045942172,-0.044755507,-0.13326864,-0.0892414,0.040823225,-0.025660293,0.021254925,0.041781515,0.012890321,-0.07013896,0.04756302,-0.032143727,-0.0236808,0.06539307,-0.007944936,0.027459845,-0.028675413,-0.028985914,0.06091254,0.11034895,0.03422609,0.03841278,0.0708064,-0.092042156,0.0048097568} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:26.183449+00 2026-01-24 23:35:51.052596+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 74 google Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB 1 t 77 Fika unknown Food wasn't as great as I hoped for. Service was great food wasn't as great as i hoped for. service was great 4 2025-11-25 23:35:50.732246+00 en v5.1 O1.02 {} V- I2 CR-N {} {"A1.01": "Service was great", "O1.02": "Food wasn't as great as I hoped for."} {0.005105397,0.06744559,0.04850008,0.042765006,-0.037980247,-0.01261283,0.01201029,-0.04198035,-0.038595147,-0.03728761,0.08914838,0.069611244,0.034116086,0.019111253,0.03961507,-0.126182,0.16694991,-0.12762815,-0.06719283,-0.052007597,-0.07326787,0.05816641,0.007433298,0.0016153018,-0.04723446,0.073288344,-0.027313275,-0.026223835,-0.02851162,-0.014726061,-0.033865895,-0.021491334,0.033051185,0.014489281,0.0045658066,0.04746751,0.096889675,-0.116662055,-0.028137008,-0.03264424,0.023343509,-0.013302698,-0.0013408841,-0.023755003,0.019413166,-0.057057183,0.012830399,-0.05942539,0.035849206,-0.01598816,-0.0077876276,-0.0012485249,-0.016672675,-0.074447036,0.058533758,0.020408321,-0.035792895,-0.011932751,-0.049287587,0.0047067516,-0.06152313,-0.020892581,0.039766952,-0.0440885,0.026753072,-0.097442985,-0.07355092,-0.029211147,-0.028249325,-0.02132363,-0.07833731,0.033633165,0.090247385,-0.026512673,-0.022351442,0.02901015,0.050915457,-0.086419046,0.020142883,-0.004377154,0.021305995,-0.024127357,-0.022425827,0.11826601,-0.07218689,-0.08938341,-0.0020228915,-0.047345463,0.047208723,-0.011924684,0.06327028,0.01447939,-0.010412457,-0.0092284875,0.006966831,-0.038955968,-0.058479898,-0.078267105,0.0070995195,0.08764777,0.0010435933,0.061691787,0.023673428,-0.045990415,0.012181744,-0.0038565493,-0.038897004,0.05227424,-0.04645644,0.035084233,-0.029801013,0.091607995,0.0012885694,0.009394127,-0.026435327,0.060671587,-0.0007850243,-0.05100586,-0.0073124594,0.05203845,-0.012686566,0.077930644,-0.032781385,0.037303846,-0.091749124,0.033609502,0.1715357,-2.4070714e-33,-0.083404034,-0.06048221,0.09974489,-0.009433965,0.086330265,0.0081234425,3.0259544e-05,-0.0036753658,0.043633595,0.008886337,-0.008705955,0.03136005,0.03349128,0.0014512113,0.061278448,-0.058494095,-0.10662804,0.057101794,0.018431652,0.044925075,-0.06236911,-0.03150471,0.037367202,0.015652062,0.075729296,0.009113688,0.003950681,-0.029747503,0.010392597,-0.027263941,0.04098135,0.012598692,0.062285032,0.025914658,-0.011629567,-0.030962437,0.026933575,-0.057063304,-0.025647389,-0.015139456,0.026825553,0.03067291,0.045374546,0.039268035,0.0023440726,0.035528045,0.034031324,0.0072595156,-0.04181919,-0.040657226,-0.005344387,-4.7380585e-05,0.038606457,0.021781111,-0.03610192,0.0076595815,0.047626913,0.05670336,-0.029602729,-0.048570488,0.018374996,-0.0061319573,0.027324261,-0.08995303,0.021532707,-0.03302408,0.03939916,-0.03610326,-0.011510632,0.023419837,0.0060026455,-0.015491021,0.0070859967,-0.027521975,-0.0070804087,0.04146007,-0.07131422,-0.059233095,-0.005841208,-0.034698,0.09623862,0.007002378,0.0010403318,-0.015123117,0.077682965,0.058420904,-0.020206703,-0.12149122,0.06929554,0.06786058,-0.10863454,0.046742026,0.024388047,-0.0052813343,-0.010189372,1.0377777e-33,-0.022122784,0.054983553,0.014539164,0.07362111,-0.028235996,-0.07670443,-0.06305034,-0.039542835,-0.019855725,0.06163454,0.020019498,0.039331846,0.036592808,0.044257082,-0.101586066,0.08506363,0.009689573,0.016190585,0.030561337,-0.034498814,-0.054392222,0.12889728,-0.0029048063,0.070445314,-0.06899873,0.077659674,-0.05782207,0.04150427,-0.06709126,-0.123876534,0.035658173,0.0016960191,-0.008418145,-0.015846604,0.025062915,0.058543775,0.0059560896,0.017920623,-0.098783866,-0.015022557,0.034702,-0.052612457,-0.039009985,0.08598831,-0.020327037,-0.025696022,0.036989555,-0.14472012,0.0268735,0.018948566,-0.0971446,-0.06634374,-0.08318208,0.0028684067,-0.03055831,0.018614992,0.050915953,-0.07515655,-0.03551375,-0.07617775,-0.066230774,-0.014689979,-0.035122592,0.033220023,0.088998914,-0.035100568,0.081702694,-0.053361386,-0.047505133,-0.043192632,-0.08317256,-0.02613329,-0.017829377,0.12235219,-0.07244533,-0.017819354,-0.040763866,-0.0020292758,-0.03860875,-0.0030298717,0.0010595988,-0.041011717,-0.020747775,-0.025486942,-0.0017259463,0.069379464,0.018631484,-0.0036809072,0.03859032,0.118816905,-0.012607104,-0.039712843,0.006276502,0.03658585,0.09166227,-2.3653811e-08,0.06842856,0.0056564016,-0.038179595,0.07599265,-0.008877125,-0.08492715,0.033575237,0.013865351,0.03844643,0.1131773,-0.110207364,0.057244778,-0.03900995,0.03006335,0.05735196,0.019311678,0.05074926,-0.015673833,-0.004957921,0.07298676,0.002130402,0.06938882,-0.042790584,-0.02828207,-0.0017617216,0.0264354,-0.029661052,0.013799653,0.033420067,0.027652923,0.044511773,-0.03295578,-0.039403334,0.011740274,-0.0016237312,-0.05201451,-0.04469698,-0.081570104,0.049527887,-0.04281192,-0.012548155,0.06158654,-0.04224314,-0.0039764317,-0.00079451175,0.071534805,-0.060730573,0.062479228,-0.02582346,0.013626752,0.022604557,0.047349606,0.027882019,0.0054299696,0.059211317,-0.058228884,0.0152537655,-0.013861442,0.036859225,0.07050014,0.0062864777,0.0007487186,-0.1249633,-0.0070646154} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:33.334618+00 2026-01-24 23:35:51.055826+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 75 google ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB 1 t 78 Fika unknown I have been twice since it opened and the staff are lovely and amazing with kids. More highchairs are definitely needed though. i have been twice since it opened and the staff are lovely and amazing with kids. more highchairs are definitely needed though. 5 2025-02-28 23:35:50.732248+00 en v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "the staff are lovely and amazing with kids", "A1.02": "More highchairs are definitely needed though"} {0.013789926,0.01209183,0.025908042,0.014166972,-0.09083836,-0.05473736,-0.07461803,-0.014976679,0.034217328,-0.010744327,-0.0030514116,0.03047979,0.031545285,0.010144754,0.08990149,-0.017394152,0.1017241,-0.03473747,0.026245508,-0.06017748,-0.07297842,-0.056201573,-0.025322454,0.055756833,-0.0554396,-0.036430813,-0.052264716,0.013686987,-0.027585285,-0.04160289,-0.0062271697,-0.0030707018,-0.039682645,-0.019607123,-0.061803173,0.18592694,0.10271943,-0.0519775,-0.014644557,0.0033349365,-0.03273782,-0.03562282,0.0069182017,0.020962391,-0.0068984,0.03392409,0.025828041,-0.071621835,0.01828879,-0.004239107,0.07438908,-0.08123285,0.13550507,-0.043870714,0.01523616,0.058845736,0.02191449,-0.09483752,0.005954389,-0.024781693,-0.014270516,0.057062555,-0.01741537,-0.038379002,-0.0041469764,-0.055052344,-0.054029927,0.018967878,0.0082944725,0.0263542,0.012819864,-0.019663243,0.07222182,-0.005888318,0.028394187,-0.025439486,-0.05895474,-0.09552527,0.038130753,-0.053574238,0.009667145,0.027989743,0.025908634,0.014172249,-0.074475765,-0.006667661,0.050624065,-0.039706636,-0.07142881,0.010048344,0.11127042,0.1093718,-0.005889481,-0.02507152,-0.04425056,-0.013962497,-0.100219615,0.030883957,-0.043740813,0.0056914734,-0.030462593,0.070941694,0.097176045,0.0034543062,-0.06216979,-0.046148397,0.027609909,-0.01289294,-0.009892542,-0.0018358119,-0.016645074,0.0047994214,-0.0045741685,-0.048757166,-0.08724633,0.00070075796,0.03205957,-0.051388625,-0.044462547,0.04478482,0.08180635,0.034767736,0.07906533,-0.020195648,-0.06482807,-0.055063147,0.024762444,-1.8083693e-33,-0.061184343,0.052463412,0.008829846,0.033831738,0.096660495,-0.055402875,0.0032366102,0.008821641,-0.029936688,0.038330454,0.061950907,0.0010135603,-0.019818448,0.030730717,0.014529468,-0.053932462,-0.018717106,-0.0020197283,-0.061774142,0.0036538432,-0.10093677,-0.031719424,0.00014893436,0.059643827,0.045658108,0.0033168034,0.013454679,0.02913144,0.07330683,0.0069539063,-0.012900854,-0.08375587,0.0019553069,0.006505384,-0.082005076,0.077693865,0.028624326,-0.05094519,0.012054836,-0.07334713,-0.080709666,0.015520459,0.117593035,0.07081753,-0.038568284,0.070234925,0.07185133,-0.01812521,-0.053409167,0.03816191,-0.015175797,-0.008476169,-0.033344205,0.058036182,-0.048577078,-0.041220862,0.011557547,-0.008549013,0.03990304,-0.007927157,0.050189,0.04954839,-0.030591203,-0.021562686,-0.009265058,0.025119547,0.0053826906,-0.000106221065,0.070425935,-0.048972517,-0.006739061,-0.006014552,0.014991955,-0.022358168,-0.0071783094,0.0642653,-0.043383162,-0.07271222,0.12269145,-0.056206428,0.056840725,0.016427996,0.076428905,0.08827631,-0.038171787,-0.022927353,0.03703657,-0.053255584,-0.041970037,0.087522745,-0.035006315,-0.01609931,0.08355054,0.033721503,-0.038536828,3.5268352e-34,0.056175794,0.039124873,0.016950147,-0.054092042,0.01411476,0.015194379,-0.053076033,-0.0388337,-0.050131958,0.03767784,0.019024603,0.022250837,-0.056075163,0.006105629,0.0033651695,-0.040847786,0.017028622,0.046009645,0.03653191,-0.09613561,0.088211596,0.071255274,-0.018478183,-0.018440878,-0.031160664,0.0064556394,-0.06573579,-0.032838162,-0.02680293,-0.008222353,-0.06481539,-0.0985507,0.064572036,0.012177187,0.049520593,-0.028179664,-0.026996648,0.085106924,-0.040939942,-0.008791334,0.04001561,-0.0831055,-0.030511813,0.06862582,-0.029802307,-0.028277991,-0.051418506,0.013436759,0.055546205,-0.029104518,-0.07816292,-0.07917416,-0.01399934,-0.14097738,-0.054613512,0.049351707,0.024740364,-0.04778224,0.08277216,-0.009532339,-0.023636755,0.042762082,-0.05885019,0.069022045,0.054352917,-0.0737011,0.008274232,-0.048976522,-0.08533588,0.0113322325,-0.05882707,-0.028490521,0.027833214,0.0017115562,-0.030139843,0.0024306613,0.09647164,-0.06622064,0.014119429,0.061123986,-0.039867025,-0.019113626,-0.0030561744,-0.014140115,0.0541854,-0.013957251,0.050015476,-0.055213287,-0.029701684,0.047386315,0.03515945,0.07804568,0.027198518,-0.004129802,0.026812177,-2.83099e-08,0.02713403,0.0067996695,0.034084033,-0.07090413,0.0014427266,-0.11587779,0.084656775,0.035468545,-0.037213,0.08297665,0.037386157,0.062166624,-0.036973435,0.0020192747,0.045069672,0.037742186,0.066412345,0.06407897,-0.074017964,0.0041318885,0.005993095,0.09321838,0.06909223,-0.053631116,-0.064386256,0.038566377,0.008939125,0.012357559,-0.08221179,0.05814593,0.06200431,-0.0255634,0.0067220395,0.04805454,0.019702898,0.00069304876,-0.1839172,0.042942386,-0.0033557925,-0.0064848224,-0.059714038,-0.066048086,-0.009237283,0.07480968,0.05536037,-0.018166404,-0.055390015,0.107267,0.035071738,0.020744521,-0.086683966,-0.02866411,0.04150403,-0.0426249,-0.0033416157,-0.0050103483,0.02391639,0.028593438,0.021803848,0.023059418,0.057584815,-0.056623824,-0.0037896691,0.11766845} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:40.889716+00 2026-01-24 23:35:51.058707+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 77 google ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE 1 t 80 Fika unknown Lovely café with a nice and cosy atmosphere, friendly staff and delicious sweet treats! lovely café with a nice and cosy atmosphere, friendly staff and delicious sweet treats! 5 2025-02-28 23:35:50.732252+00 en v5.1 E1.01 {} V+ I2 CR-N {} {"A1.01": "friendly staff", "E1.01": "Lovely café with a nice and cosy atmosphere", "O1.01": "delicious sweet treats"} {0.034189593,-0.03945411,-0.002403716,0.08640079,-0.07066342,0.050969545,0.036062825,-0.07347845,-0.024795607,0.0015066724,0.06599883,-0.07547594,0.0029114946,-0.030998314,0.02258068,-0.045509078,0.109908916,-0.075327665,0.100873895,-0.04552837,-0.07272268,-0.04137507,0.02010942,0.051333837,-0.046462107,0.048262607,0.010106168,0.028955905,-0.0035200547,-0.07430884,-0.034909822,0.07273293,0.039876293,0.0142590245,-0.016242044,0.064861715,0.04360151,-0.110377654,0.08407946,0.028729325,-0.080499366,0.024445701,0.031204024,0.0093291905,-0.013654082,-0.0001415685,-0.038224507,-0.03846869,0.02055299,-0.0076222327,-0.039637744,0.007430704,0.00066777837,-0.076104134,-0.0034489993,-0.0165102,-0.07222397,-0.10935236,0.018569957,0.03616235,0.058514245,-0.024308579,0.011883129,0.020501617,0.01682673,-0.07574491,-0.079711504,0.048996817,0.045131564,-0.11992182,-0.025311211,0.0076426817,0.052623786,-0.028192008,-0.035176292,0.021305624,0.0052214884,-0.035586864,0.006964331,-0.008615943,0.0072962227,0.017411772,0.025196332,0.051204618,-0.052518636,-0.10366932,0.034081195,-0.0670147,0.06625903,-0.011817531,0.037633106,0.071891926,-0.057513196,-0.017208856,-0.071574725,-0.048196428,0.005104721,0.0065105148,-0.054406736,0.062223084,-0.02579417,0.077070154,-0.007891622,0.006310413,-0.0058424557,-0.0039297724,-0.056506526,0.012497905,0.051514238,0.02500967,-0.0023471764,0.016415875,-0.058212012,-0.03003149,-0.008604071,-0.0028104836,0.045901462,-0.056032203,0.029167723,-0.030965582,0.028022371,0.033284597,-0.065016724,-0.03181744,-0.020679299,0.03443391,0.031895302,-1.8527174e-33,-0.029621476,0.07511529,-0.01630903,0.04055617,0.1090056,-0.015878677,-0.03133124,0.002342264,-0.06061511,0.024881657,0.031955097,0.012290617,0.027324164,-0.0044270298,-0.04076593,-0.0605714,-0.012040425,0.013831599,0.0077221664,0.011913996,-0.06823757,-0.00041884297,0.045548636,0.033747956,0.00015033562,-0.02678321,-0.012465856,0.02833557,0.034895953,0.025474893,0.041977692,-0.033421215,-0.0056353263,0.0006920569,-0.061923694,-0.053766027,-0.078341976,-0.05803915,0.022335911,0.08463708,0.027958917,0.022673933,0.0017256712,0.06645759,-0.05251935,0.0030679968,0.002985164,0.037022028,0.063605405,-0.044065412,-0.08571615,-0.028487064,-0.017110854,0.1632473,0.030056367,-0.055442944,-0.030534873,0.06773547,0.07604872,0.009413625,0.092838965,0.07119853,-0.022763668,-0.1243405,0.050402123,-0.08623547,-0.013696333,0.02565906,0.041687757,-0.0012662929,0.06771324,0.010590107,0.09199011,-0.026882054,-0.05188111,0.031534623,0.0014156841,0.02354787,0.06296407,0.05927183,0.026990443,0.040349863,-0.016247563,0.023472453,-0.048784435,0.0151980575,0.043698415,-0.10304547,-0.087580636,0.037654605,-0.07469882,0.024578044,0.11633227,-0.00018027745,-0.027509788,2.3038626e-34,0.07464569,-0.0492074,-0.02463623,-0.03240689,-0.05757407,0.008828029,-0.04537502,-0.018280443,-0.035225652,0.042997655,-0.06961605,-0.015498016,0.062323127,-0.016562656,-0.09683311,0.098552346,0.06407652,0.039212164,-0.06428509,-0.056360338,-0.05265166,0.075283155,-0.04537913,0.025583675,-0.013549359,0.10177621,-0.0069281245,-0.046095107,-0.1020652,-0.0069248327,-0.07713123,-0.057780787,-0.013514413,-0.007332915,0.045139343,0.07522656,-0.030619279,-0.0391441,-0.0079913875,0.09147725,-0.005211472,-0.01857737,-0.01902094,0.09279195,0.06552064,-0.033302587,-0.06064366,-0.058862668,-0.028333945,-0.042951543,0.05175378,-0.034135528,-0.09433417,-0.041813653,-0.043650385,0.0060526542,0.014301748,0.08322527,0.015178705,-0.087403186,-0.009290129,0.0018452875,0.033335894,0.09828971,0.06960514,0.0029979015,-0.015667254,-0.057427846,0.009535553,-0.0057745213,-0.032957315,0.031197293,-0.02044109,0.019349908,0.05078348,0.0314434,0.13643263,-0.09038969,-0.011381514,0.027736679,-0.0061614052,-0.002312388,0.046343405,0.03045374,-0.018035844,0.025191337,0.0044080494,-0.030684253,0.0069286274,0.04815219,-0.013163262,0.06356842,-0.0518931,-0.03021889,0.065974094,-2.5244775e-08,0.05969128,-0.09156158,-0.06932128,0.09430079,0.030883137,-0.07734584,0.0057343347,-0.062139317,-0.038691178,0.08633648,-0.017479448,0.04855239,-0.06906283,0.07220556,0.018222503,0.0014544833,0.014722176,0.15360491,-0.026919287,0.039542668,-0.013464047,0.058830515,0.022302134,-0.06345329,-0.02504967,-0.070266366,-0.0053821844,-0.07022958,0.017242981,-0.06977722,0.008926486,0.033841092,-0.039273247,0.040339172,0.01168153,-0.010380818,-0.066397496,-0.039626352,-0.0813169,-0.008262294,-0.08289457,-0.07958368,-0.098486744,-0.039285652,-0.086582154,-0.01679293,0.032422468,0.12513119,-0.015737725,0.06351607,-0.051259823,0.029014733,0.06930507,0.0060925204,0.02747744,-0.010086918,-0.030278947,-0.004715606,0.060626727,0.084833875,0.013046482,0.022128204,-0.009010577,-0.04040948} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:55.541578+00 2026-01-24 23:35:51.065706+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 78 google ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB 1 t 81 Fika unknown Gaming cafe with a secret garden. Only criticism is they dont advertise these parts of it at all. Need to let people know! gaming cafe with a secret garden. only criticism is they dont advertise these parts of it at all. need to let people know! 5 2025-03-30 23:35:50.732254+00 en v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Gaming cafe with a secret garden.", "V1.02": "Only criticism is they dont advertise these parts of it at all.", "V1.03": "Need to let people know!"} {0.016163966,0.0041757296,0.018281735,-0.015326243,0.035308547,0.014608708,0.06164943,-0.10644216,-0.023678198,0.0032068768,-0.019820057,-0.05083476,0.022988837,-0.050162587,0.07386462,-0.08761651,0.13781932,-0.050573666,0.06564918,-0.07692629,-0.013478595,-0.025243947,0.00443052,-0.00920747,-0.010013808,-0.010866569,-0.018809404,0.13352637,-0.060027424,-0.021504689,-0.017075177,0.09593653,0.022153314,-0.0034615358,0.009118759,0.037213836,-0.00542201,-0.09504969,-0.004170087,-0.03198033,-0.062636144,-0.0153898625,0.02224083,0.0048559615,0.027758319,0.02557598,-0.014523943,-0.05210559,0.024580998,-0.033674773,0.023018688,-0.04752981,0.04752081,-0.11700293,-0.04092204,-0.066787906,-0.07488298,0.009142532,0.07143359,0.06394937,0.12399798,-0.0984677,-0.071205206,0.06952094,0.043463707,-0.05597911,-0.072531156,0.058786523,0.041891728,-0.1306708,-0.0023763974,-0.033666417,0.032904793,-0.08253285,-0.04719672,0.08242031,-0.025395079,0.001264972,-0.0062407954,-0.039955974,0.046439745,-0.010891145,0.045707256,0.05847426,-0.038879946,-0.010621079,0.044431865,-0.008331638,0.007921727,-0.024212463,-0.02658004,0.027135098,-0.03438524,0.06840357,-0.008822193,-0.020530472,-0.041940622,-0.0637465,-0.06670841,0.07693351,-0.1005629,0.120501556,0.06393685,-0.03954347,0.02243391,-0.026526298,-0.0809695,0.065323174,0.08451262,0.057692118,-0.04027082,0.03371102,0.0035457131,-0.0071002985,0.020222591,-0.011181479,0.08603793,-0.03202404,0.04038748,0.049767647,0.014549025,0.058155645,-0.01823741,0.00029009907,-0.0011540862,0.061784834,-0.06024058,-2.204173e-33,0.0067092315,0.073567644,0.023000307,0.01937959,0.085903086,-0.00908638,0.0122206565,-0.03081018,-0.0021716289,0.11090837,0.054142505,-0.034075584,-0.030775769,0.04700896,0.081757404,-0.021228634,0.025543695,-0.021559829,-0.003545048,-0.018574888,-0.013202745,0.021206614,0.036787644,-0.021533195,0.0063724876,-0.03182285,-0.008072529,0.062875636,0.10656318,0.04385864,0.0046091927,-0.0782115,-0.022640038,0.019600576,-0.024513625,-0.036248956,-0.023099827,-0.10442616,0.009729103,0.044359535,-0.017634176,0.0172799,-0.073197804,0.023262454,-0.0133618,0.048133947,0.018710915,-0.051344078,0.0060796356,0.055181153,-0.069532685,0.048617307,-0.10212608,0.06683995,0.00053570874,-0.100272305,0.02646528,0.0009439322,0.084541425,0.0012726267,-0.0021863743,0.11812499,-0.05480442,-0.05818147,-0.07290606,0.032056738,0.041613925,0.005236362,-0.0063995817,-0.050637487,0.047763176,0.014714311,0.045315173,-0.023968702,-0.014363268,-0.011154442,-0.14688131,0.04106268,0.024464652,0.062619746,0.08828666,0.011884423,-0.022683373,0.057019096,-0.04742575,0.014114682,0.07478307,-0.024187718,-0.06057761,-0.0035895691,-0.08944195,0.025316475,0.035573814,0.047824286,-0.017156068,9.1381e-35,-0.04339792,-0.0030901143,-0.047527086,-0.009015409,-0.018281886,0.03348469,-0.068609275,-0.047519397,0.03820891,0.07202506,-0.07714557,0.08544717,0.009658821,0.026336383,-0.03243156,0.010741639,0.071867876,0.030919047,-0.037309833,0.0027014816,-0.008593907,0.036995962,-0.0739616,-0.0037469445,0.027948428,0.023489494,0.030934798,-0.0026231918,-0.053529467,0.009039699,-0.05811068,0.029929046,-0.0029813084,0.045926694,0.06532667,-0.025513643,-0.04738415,-0.04209809,-0.025426129,4.844372e-05,0.0056303795,-0.046690162,-0.0723075,0.06550492,-0.04424144,-0.06478229,0.004204256,-0.062322423,0.028917935,-0.00091396004,0.018540818,0.0111819105,-0.043860257,-0.065968685,-0.0407745,-0.043050952,-0.042455137,0.08273962,0.006619496,-0.0016960646,0.07284829,0.04600584,-0.038489465,0.022577561,0.089255564,0.05894359,0.018631613,0.011206738,0.04278434,-0.035489943,-0.013583373,0.0039971555,-0.020155462,-0.0035751583,-0.06679072,0.017007165,0.11409839,0.030742697,-0.017251544,-0.013965588,0.0779296,-0.015534178,0.028302917,0.0017860008,0.13833107,-0.032922335,0.011864878,0.014482922,-0.070323214,0.08143631,0.02633681,0.06648622,-0.0030537727,-0.013357976,0.08778902,-2.6150659e-08,0.03671372,-0.051653992,0.021363368,0.010243986,0.017890252,-0.069729686,0.0805263,-0.037020296,-0.0026216938,0.0668966,-0.017461464,0.00073922967,-0.020812588,0.04711029,-0.0033643988,0.0073931566,0.02228734,0.03970878,-0.063221514,0.046508186,-0.046172127,0.027234009,0.016742801,-0.12140614,-0.04602899,-0.07946226,0.009473109,-0.101563714,0.029538583,0.0059500774,-0.045084022,-0.051019255,0.008891521,0.04156621,-0.052597966,-0.019907895,0.0010004942,-0.042521313,-0.045452822,-0.02477396,-0.17250472,-0.1615605,-0.008239774,0.007087305,-0.061250307,0.052199673,-0.0009795674,-0.017359806,-0.077152915,0.019421596,-0.052309908,0.018815188,0.06776964,-0.021091575,0.015936747,0.040583517,-0.0412669,0.03392983,0.028836383,0.053467695,-0.07938094,0.003598412,-0.06300417,0.0073722126} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:56:06.325607+00 2026-01-24 23:35:51.069006+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 82 google Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB 1 t 85 Fika unknown It is okay, the food and service is amazing the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm which sucks as we wanted to get coffee and some treats. it is okay, the food and service is amazing the only problem is the times on google maps and facebook as it says it's open till 6:30pm and 8pm on facebook but it closes at 4pm which sucks as we wanted to get coffee and some treats. 4 2026-01-17 23:35:50.732261+00 en v5.1 O1.03 {} V+ I3 CR-N {} {"J1.02": "the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm o", "O1.03": "the food and service is amazing"} {0.023194008,-0.04153375,0.06635485,-0.005849564,-0.023561066,-0.004351907,-0.038350664,-0.07096661,-0.058893193,-0.010404951,-0.037541665,0.07274726,-0.059987184,0.036381114,0.07232672,-0.051054306,0.09791605,-0.12014513,-0.07210019,-0.035049986,-0.08771043,-0.037459437,-0.01323021,0.025253512,-0.0019116453,-0.026340904,-0.0077565247,-0.060814604,0.020110171,-0.02240326,-0.0012534913,-0.015631283,-0.0008040723,-0.010825054,0.0191402,0.030325122,0.078603394,-0.08851728,0.033234276,0.031575568,0.08099959,-0.031400375,-0.027325084,0.03549568,-0.0021414703,0.027960375,0.025421616,-0.06763768,0.09316016,0.006866922,0.03643271,0.00492458,0.035376683,-0.016639378,0.0085720075,0.07374346,-0.048292067,-0.014922067,0.05976654,0.059007026,0.03187126,0.014303381,-0.0482092,0.07338183,0.08261984,-0.026212908,-0.11821325,-0.09279192,0.016307293,-0.06447108,-0.031272657,0.03807319,0.0563151,0.0061305515,-0.02733761,-0.013974799,-0.020038333,-0.0723262,0.05545206,0.047049157,0.071872346,-0.04577133,0.03515629,0.036535226,-0.030677557,-0.08270111,0.02262597,0.009529448,0.053552028,-0.0046741804,0.046163417,0.09085496,0.024442984,0.06578701,0.005031907,-0.032085314,-0.020560201,0.0050498233,-0.01314747,0.040725093,-0.028388688,0.11505846,0.017153278,0.017657425,0.030964669,-0.0066990308,-0.04563388,0.07879438,-0.016097132,0.017353509,0.005009908,0.04036334,0.029268783,-0.046615083,-0.027682215,0.05891599,0.030089341,-0.069475405,0.06782681,0.01395661,-0.0342153,0.07250528,0.0048369267,-0.03270424,-0.0026878251,0.011209626,0.034948654,1.2146874e-33,-0.05634562,-0.020823509,0.030236876,-0.013294545,0.077638015,-0.028221382,-0.05783729,-0.03644686,-0.046136163,0.0048587187,0.024060978,-0.028108766,-0.05671888,-0.035028003,0.0657333,0.012719352,0.07753707,0.07551425,-0.010852625,0.0024265042,0.029632077,-0.15953054,-0.05986124,0.008250194,0.021562433,0.056958508,0.058085088,0.053950537,0.10567415,0.0004921671,-0.047430735,-0.00686237,-0.035004884,0.033944633,0.024521407,-0.0117050065,-0.006397119,-0.0025703192,-0.02806964,-0.0059210206,-0.036208395,0.0337302,-0.05878761,-0.033016376,0.016528258,0.07129951,0.023616826,-0.0759715,-0.0097389985,0.04666857,-0.06612492,-0.03475895,-0.02981717,0.07726518,-0.066361636,0.048096474,-0.029935567,-0.018436998,0.004515986,-0.04408977,0.07705603,0.019279478,0.006166104,-0.11285636,0.02514444,0.013694033,0.025311839,0.06350515,0.042104095,-0.012488241,0.036296047,-0.0059046214,0.029085932,-0.044484258,0.026103072,0.106917165,0.0032051404,-0.05379813,-0.005508743,0.04889635,0.20754683,-0.02148053,0.09198812,-0.026037702,-0.06373142,0.010016622,-0.0023380155,-0.015468217,-0.022724848,0.11383798,-0.13302481,0.066436134,0.05270322,0.09241734,-0.07950546,-6.4687316e-34,-0.016545238,-0.039208673,-0.017001059,-0.009601514,-0.054473355,-0.09045332,0.0040082107,0.03847329,0.056469012,0.11760252,-0.0474222,0.0017295718,0.033090692,-0.016530735,-0.021273158,0.023682682,0.08930928,0.008770172,-0.021028135,-0.02906221,-0.088611946,0.07561633,-0.109345205,-0.008966383,0.053032506,0.07264105,-0.06573429,0.009212971,-0.054271672,-0.03667897,-0.022827724,-0.07332315,0.062455136,0.0016530638,0.02664259,0.058235854,-0.044410408,-0.003967477,-0.00065860135,-0.047135647,0.018591965,-0.05002505,-0.12475117,0.022141889,-0.012258267,0.046161223,0.023543661,-0.036729187,-0.10673532,0.057702836,-0.0026392967,-0.029933061,-0.032549225,-0.057033837,0.012706523,0.013970957,0.012360946,0.006133188,-0.03930321,-0.061803397,0.012120816,-0.044025186,-0.015768249,-0.0022765782,0.09827015,-0.09276148,0.024024876,-0.037447058,0.0467593,-0.002082472,-0.015798045,0.0010038909,-0.06324163,0.05965547,-0.026070679,0.0030059353,0.15888278,0.028311057,-0.043010227,0.00792798,-0.0013966247,0.06418201,0.016412484,-0.07402398,-0.009127489,-0.0010610613,0.077752925,-0.021049278,-0.05106098,0.08514003,-0.014660383,0.04666158,-0.10724959,0.08169458,0.029702397,-3.231205e-08,0.060836457,-0.04829056,-0.042301454,0.04429475,-0.037339665,-0.09899292,0.047414005,-0.043213334,0.045863207,0.09457862,-0.022633312,0.0074059386,-0.076650254,-0.008586949,-0.025859108,-0.03485566,0.043062847,-0.027074095,-0.016317805,0.07529144,0.007029911,0.05212513,0.019769683,0.018129863,0.0017373285,0.011888088,-0.022700096,-0.0115440395,-0.00839365,-0.020107446,-0.0019222854,0.018076265,-0.041132484,0.023672346,-0.026327528,-0.11026325,-0.04083253,-0.10119184,-0.026767524,0.011143211,0.04714817,-0.048092436,-0.018117325,-0.009019213,-0.075930096,0.064431906,-0.005710301,0.00782696,-0.006788146,0.0052414234,-0.085762665,-0.0032441653,0.034825493,-0.076130435,0.080995455,-0.056586802,0.016181573,-0.029120702,0.058827993,-0.0032006034,0.0062476047,0.004325167,-0.10078583,0.0047601783} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:56:27.268317+00 2026-01-24 23:35:51.082329+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 68 google ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB 1 t 71 Fika unknown Such a lovely new cafe on historic Red Lion St just opposite Centenary Methodist Church. The outside area, under cover, very peaceful and sunny - well, today at least. Great coffee. Best wishes FIKA. such a lovely new cafe on historic red lion st just opposite centenary methodist church. the outside area, under cover, very peaceful and sunny - well, today at least. great coffee. best wishes fika. 5 2025-04-29 23:35:50.732229+00 en v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Such a lovely new cafe on historic Red Lion St just opposite Centenary Methodist Church.", "E1.02": "The outside area, under cover, very peaceful and sunny - well, today at least.", "O1.01": "Great coffee."} {0.041595925,0.034010284,-0.020446727,0.09152112,-0.028444353,0.025281504,-0.034650788,-0.046565108,0.005826692,-0.05252009,-0.03185673,-0.03269286,-0.073635146,-0.018948285,0.07268395,-0.043008868,0.037587706,-0.07321282,0.06448881,-0.0028637021,-0.10276618,-0.016755406,0.004016157,0.025802933,-0.021765716,0.06978735,-0.004555982,0.020841032,0.0031753988,-0.057050068,-0.059851386,0.028319517,0.021481482,0.044499915,-0.035826713,0.029727925,0.05682156,-0.050068893,0.06309872,0.0460295,-0.05216374,0.020421054,0.070526436,0.003200298,0.014084639,-0.006654931,-0.04642093,-0.018947316,0.035031177,-0.004203474,-0.08282753,0.061726447,-0.0028483775,-0.062710494,0.017084228,-0.024502398,0.020531388,-0.06336971,-0.0047958605,0.031752016,0.07023917,-0.038692664,-0.06291975,0.05026859,-0.03202827,-0.09482724,-0.113286085,0.049462225,0.03338562,-0.07170172,-0.055397663,-0.022499805,0.034362733,-0.10059348,-0.05601301,0.023508815,0.023600304,0.017985063,-0.06417941,0.028812716,0.07470013,0.0061396346,0.025390752,0.07003727,-0.036847614,-0.034505207,0.04045906,-0.0727387,0.020951904,-0.044620924,0.024441192,0.07065078,-0.12007361,0.01870478,-0.018514486,0.024007663,-0.04029298,-0.03440453,-0.03239924,0.08089049,-0.04181322,0.06474281,0.03225577,-0.009212973,0.0134982,-0.019579545,-0.09660808,0.04795256,0.06955954,-0.050379895,0.045126643,-0.015769433,-0.07649774,0.008480094,0.04080966,0.016814148,0.056548677,-0.08744659,0.014513081,0.022180876,-0.0023670932,-0.02296009,0.00069564657,0.011619898,-0.0116993105,-0.04277001,0.009465967,-9.770032e-34,0.014135753,0.032902196,0.025390524,-0.009937334,0.1274173,-0.018303014,-0.038748827,-0.04345214,-0.09095596,-0.0035094675,0.044350795,0.065152854,-0.007797034,-0.049104642,-0.080230646,-0.11139944,-0.020957272,0.0140219005,-0.03874728,-0.002132714,0.06341059,0.04928858,0.01709584,-0.0010991836,0.051399585,0.020194776,-0.006010191,0.03748635,0.021232842,0.0244438,0.016075881,0.005350353,-0.034726296,0.010559199,-0.037753418,-0.045874085,-0.052266974,-0.04676796,0.0065490273,0.04607647,-0.005359736,0.046698604,-0.0006039507,0.049717654,-0.010042633,0.019912412,0.02157047,0.025472118,0.041104984,-0.003439883,-0.07805006,-0.031706207,-0.06519457,0.13022591,-0.011429175,-0.09139851,-0.03521614,0.077809565,0.09048585,-0.05638684,0.083481446,0.033567775,-0.0012210208,-0.06287623,0.05996554,-0.03999239,-0.0021153938,0.06835599,0.08819002,0.036281474,0.097557314,0.03321572,0.04515568,-0.053345967,0.042264532,-0.03648125,-0.024635233,0.081713736,0.03571598,0.08979608,0.046237532,0.07346214,-0.026162459,0.017265666,0.0540817,0.014462576,0.06257753,-0.039307117,-0.09601466,0.020339383,-0.057213854,0.09922823,0.09700953,-0.058098484,-0.015416163,6.544068e-36,0.1093796,-0.08410574,-0.013711641,0.03509488,-0.067164734,-0.041711815,-0.010573742,0.0060926937,-0.020252373,0.06302569,0.030385718,0.027735619,0.07143401,0.029329868,-0.09911372,0.011975436,0.07309393,0.049878307,-0.07854787,-0.049188763,-0.03039029,0.07389294,-0.027768165,0.052183505,0.033122905,0.029365482,-0.021450682,-0.019437026,-0.14162813,-0.10002296,-0.10583559,0.03916899,-0.05315036,0.05453824,-0.005239453,0.013371009,-0.02906796,0.0060266624,0.0048916643,0.07721529,0.065122,-0.011616643,-0.0111158015,0.08022039,0.06324078,-0.05511825,-0.054925207,-0.023257066,-0.027264565,-0.019298458,0.043865647,-0.064829856,-0.07376896,-0.0015784777,-0.02009945,0.061986536,-0.032531735,0.03560265,-0.049107566,0.040065702,-0.019818202,-0.022855805,-0.04181907,0.033808906,0.07664874,0.007831091,0.005945576,0.019087153,0.021700306,0.025656814,0.054451738,-0.026998075,-0.09755848,0.05801607,0.05765209,0.055442233,0.10271272,-0.012870723,-0.044038527,0.03383002,0.01627258,-0.04113135,-0.04536668,0.031232461,0.05961788,-0.077298865,0.044269916,-0.063325614,-0.019266633,0.079749376,-0.020735014,0.002956568,-0.0175267,-0.040829238,0.03968365,-2.7530444e-08,-0.008764662,-0.058691032,-0.07691026,0.09997339,0.038576998,-0.055290654,0.044264443,-0.13202567,-0.073023915,0.040102843,-0.07789503,0.07044238,-0.0034381165,0.09677262,0.027102187,-0.027611673,0.03871133,-0.026896724,-0.0079403985,0.041022643,0.031085497,0.004808569,0.034769803,0.043367945,-0.043326117,0.028345626,-0.0035278082,-0.104430445,0.07453533,-0.078281194,-0.017034423,0.025023445,-0.046239328,0.0539331,-0.030695911,-0.019031396,-0.0104869185,-0.002170858,-0.075441554,-0.03247017,-0.044248454,-0.11954212,-0.066019565,-0.012203573,-0.09314806,0.021421041,-0.026333136,0.012420251,-0.040634464,0.02588841,0.0018960579,0.06878076,0.08796453,0.0015527244,-0.045701,0.030277327,0.01228295,0.07167101,-0.024318833,0.0077910684,0.05757027,0.005725129,-0.05515586,-0.017483864} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:54:31.187417+00 2026-01-24 23:35:51.041007+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 69 google Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB 1 t 72 Fika unknown Nice coffee, very tasty cheesecake 😋, excellent service. I recommend this place 👌 ♥️ nice coffee, very tasty cheesecake 😋, excellent service. i recommend this place 👌 ♥️ 5 2025-09-26 23:35:50.732232+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"A1.01": "excellent service", "O1.01": "Nice coffee, very tasty cheesecake 😋", "R1.01": "I recommend this place 👌 ♥️"} {-0.03175896,-0.016820282,0.06313137,0.05258189,-0.079555444,0.056408126,0.052484453,-0.012075061,-0.013859738,-0.063108996,-0.026738446,-0.010436842,0.003033949,-0.04334052,-0.052003827,-0.04869639,0.120023206,-0.07229264,0.08363687,-0.022807362,-0.0063517233,-0.084497586,0.08607541,0.053203672,-0.00021958492,0.10531503,-0.046759162,0.024473919,-0.00894022,-0.043237187,-0.05102739,-8.8243454e-05,-0.045730613,0.01415702,-0.0004446709,0.02098167,0.11393072,-0.02331899,0.034198225,0.0385379,-0.032107107,0.045234572,0.0028687825,0.0053841225,0.004458556,0.062114675,-0.05672726,0.0022589776,-0.004405273,0.00928945,-0.06570121,-0.008145186,0.054869667,-0.059122846,0.028085295,-0.0005475724,-0.0039430447,-0.067383595,0.005428821,0.018594798,-0.0030495387,-0.028953638,-0.0063728276,0.03985079,0.07435368,-0.10548781,-0.114861675,0.037883114,-0.0045157545,-0.051456757,-0.06381399,0.07136112,0.05748329,-0.024413697,-0.052632645,-0.032418333,0.05735906,-0.021884395,-0.027634928,0.07471375,-0.005207104,0.014138775,0.027741548,0.0919959,-0.05607109,-0.09477158,0.0053128223,-0.07111073,0.05068578,-0.056959607,0.033985533,0.05065661,-0.016264439,-0.031033468,-0.02979289,-0.050034925,-0.022083597,-0.03477937,-0.04552612,0.016927628,-0.005862511,0.049768865,0.011028671,-0.045433905,0.015947096,0.05136864,-0.02836788,0.07520385,0.08306336,0.00874729,0.016009435,-0.02037877,-0.04546222,-0.035186935,-0.03409709,0.06884856,0.00776026,-0.041092075,0.049136974,-0.03081566,-0.054553375,0.049400497,-0.02905583,0.019811857,-0.0069356584,-0.047187533,0.10588713,-3.797655e-33,-0.02944277,0.06719397,0.06402472,0.04117086,0.11335943,-0.035823617,-0.037677877,0.053209677,-0.119998425,0.05242774,-0.00826189,0.010764552,0.021698259,0.08600467,-0.10853585,-0.02179782,-0.041913252,-0.024788056,-0.029029911,0.049165614,-0.009547169,-0.045625784,-0.033772055,0.10830602,-0.02411629,0.00072121224,-0.0575545,0.04641612,-0.007975438,0.01791613,0.0076386784,0.009189092,-0.023662267,-0.004717572,-0.044750605,-0.04170145,-0.023021942,-0.02684478,-0.0100456355,0.057176076,0.000111498935,0.0132258795,-0.0060562273,0.011428516,-0.041301537,-0.013588722,0.021921612,0.045996845,0.045302622,-0.07189235,-0.078232944,-0.0071506347,-0.015212907,0.12955374,0.035555556,-0.042402986,-0.020808117,0.060125344,0.09434071,-0.004144773,0.09166051,-0.009210254,-0.05696597,-0.1134995,-0.047746997,-0.053479522,0.023171708,0.024008542,0.12836725,0.01040217,0.010155022,-0.002447883,0.07213015,0.03810452,0.02047184,0.048147786,-0.08001891,-0.009881167,0.065233774,0.082585335,0.04773223,-0.06278212,-0.03685485,-0.056747872,0.005151522,0.027704947,-0.0070922403,-0.09724632,-0.04495165,0.022785502,-0.10915165,-0.019487614,0.095705345,0.026696194,-0.06235618,1.256973e-33,0.088537104,0.021703407,-0.0115020005,0.008769077,-0.035434525,-0.02261152,-0.05177502,0.041757595,-0.0006140961,0.03780146,-0.024805427,-0.031650558,0.01342524,0.05591941,-0.09124998,0.09211869,0.0232708,0.039613627,-0.037868153,-0.03343047,-0.06976192,0.078601405,-0.08508496,0.0703279,-0.027274625,0.06459545,0.0076178014,0.03011494,-0.0140841305,-0.028072637,-0.10235086,-0.04523867,0.018353622,-0.014892608,-0.036914624,0.08374255,-0.05085649,-0.003072079,0.006890914,0.14036128,-0.0013312694,-0.009729388,-0.02556683,0.07725496,0.03033608,-0.013744971,-0.050726146,-0.021673966,-0.03220024,-0.002745686,0.005004528,-0.035067517,-0.023360139,-0.015171938,-0.03906146,0.034358997,-0.046644304,0.035104092,-0.031231456,-0.03536379,-0.022973342,0.05180047,0.015424188,0.0654635,0.08446913,-0.013178757,-0.012161637,-0.03135957,-0.013852798,0.023017175,0.009292757,0.052717797,0.00946636,0.12664245,0.032727815,-0.060163964,0.12040051,-0.037398346,-0.017263358,0.011291932,-0.03839767,-0.013633213,0.018296197,-0.043694463,0.04827736,-0.021469364,0.054314986,-0.024729483,-0.032189406,0.04591374,-0.05592795,0.038463645,-0.08179064,-0.048764206,0.017925382,-2.3922915e-08,0.10446446,0.0013078436,-0.031921096,0.11938485,0.016732598,-0.13395174,-0.032337554,-0.06361967,-0.08839004,0.006368797,0.004545309,0.10335308,-0.081388935,0.02144876,-0.004213047,0.01084725,0.05669842,0.095391795,-0.019622514,-0.041206077,0.042391118,0.065435335,-0.02620807,0.0011128339,0.004332732,0.0140118925,0.052169636,-0.0090611745,-0.03125098,-0.061371915,-0.027087329,0.026241101,-0.04257799,-0.011868961,-0.015824586,0.059066463,-0.08782125,-0.099931,-0.00317287,-0.075682074,-0.065007,-0.120595165,-0.054808367,-0.03909093,-0.062334634,-0.0020359652,0.0060184454,0.017647488,-0.052155863,0.044952624,0.0055936025,0.017586827,0.01771947,0.0387918,0.02456199,0.029895976,-0.0075523504,-0.054448426,0.046538368,0.019597694,0.055661377,0.062315565,-0.0179761,-0.09479108} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:54:41.618497+00 2026-01-24 23:35:51.043079+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 71 google ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE 1 t 74 Fika unknown This local coffee shop offers a cozy, personalized experience around toen. Unlike chain cafes, it provides a more intimate atmosphere and attentive service, making it a refreshing alternative to larger coffee franchises. this local coffee shop offers a cozy, personalized experience around toen. unlike chain cafes, it provides a more intimate atmosphere and attentive service, making it a refreshing alternative to larger coffee franchises. 5 2025-01-24 23:35:50.732238+00 en v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "This local coffee shop offers a cozy, personalized experience around town.", "E1.02": "Unlike chain cafes, it provides a more intimate atmosphere and attentive service.", "E1.03": "making it a refreshing alternative to larger coffee franchises."} {-0.07319104,-0.06930711,0.02917413,0.014835464,-0.0013961062,0.013195737,-0.012540905,-0.0044600554,0.0021354107,-0.04655953,0.0057460964,0.041846704,-0.011624178,-0.015321994,-0.07051991,-0.07120004,0.059963413,0.003006628,0.07976514,-0.05115906,-0.04619728,-0.08476226,0.04268303,-0.017182784,-0.069726035,-0.026347494,0.036405772,0.059231583,-0.040674027,-0.054636236,0.016886875,0.10033175,0.0030392339,-0.03957638,0.02592277,0.08477554,0.063484654,0.024463441,-0.018412502,0.035883687,-0.020671956,-0.018609516,0.0054138987,-0.03186363,0.046815414,-0.08320956,-0.025835078,-0.015489784,-0.051045783,0.09151772,0.012835913,0.04879321,0.06607176,-0.086246885,0.07183417,0.011198239,0.005812414,0.003216803,0.03997345,0.02081464,0.13602315,-0.027269725,-0.105256096,-0.01449064,0.07006721,-0.055259034,-0.039710283,0.09024175,0.017105129,-0.05423297,0.036273286,-0.04349385,0.017666271,0.008362828,-0.044759158,0.018923268,0.006675842,-0.060958616,-0.042560715,0.042472687,-0.0758322,0.0773851,0.051895257,0.01911875,-0.054740787,-0.035875596,-0.003356937,0.012861953,-0.009072494,0.0067784796,0.012356238,0.054413814,0.020117788,-0.09773461,0.012731419,-0.007767937,-0.0025154091,0.07384697,-0.048481464,0.03256497,0.01768581,0.011172134,-0.022650447,-0.054656494,0.040573,-0.006224684,-0.025442125,-0.0023421994,0.13159426,0.027498107,-0.0080962805,0.022525432,-0.08582434,-0.046334825,-0.10883832,-0.0014499681,-0.022263521,-0.034299843,0.12371575,0.07324878,-0.067971356,0.059058208,-0.037337482,-0.014919263,-0.027284358,-0.020626372,-0.007919545,-8.993345e-34,-0.050947595,0.024496496,0.0006011603,-0.07661888,0.17766963,-0.052271936,0.057111688,-0.021821028,-0.03048745,0.038793415,-0.08318888,0.044907466,-0.022323176,-0.033514787,-0.051249973,0.018160358,-0.016120447,-0.00050426065,-0.07801467,0.010080529,0.0753982,-0.012674153,0.04305499,0.023027144,0.012546174,-0.012928147,0.003510752,0.053142242,0.061733,-0.0070229885,0.047370594,0.0042261933,0.03913944,-0.007900411,-0.03616931,-0.04667341,0.08066383,-0.018270286,-0.00140276,-0.010798054,-0.048853487,0.018579224,0.00921199,0.0462402,-0.04548077,0.019201007,0.02635118,0.023582982,-0.06837108,-0.018999461,-0.010503673,-0.022674315,0.020888321,0.071537204,0.07153079,-0.069971696,0.010557986,0.019140486,0.112949535,0.005827712,0.08145571,-0.023937073,-0.0042896396,-0.074923046,0.026667554,0.0032599655,0.04425982,-0.035979886,0.13361982,-0.073026344,0.00012184121,0.019019112,0.010028588,0.05531137,0.07244295,-0.0063885464,-0.09435117,0.037040446,-0.009233544,0.006652371,-0.011016679,-0.022756746,0.010236343,0.038643412,0.05053301,0.024108863,0.033854775,-0.049750738,-0.0671977,0.0385038,-0.019302623,-0.03300562,-0.003985435,0.024717126,-0.031433575,9.234659e-35,0.076152146,-0.007993939,-0.03926693,0.031089285,-0.088229254,0.04186393,-0.057010222,-0.11118466,-0.036137916,0.0022999705,0.0016176843,-0.009267425,0.07755019,0.020056713,-0.02226616,0.046862654,0.07099177,0.01835333,-0.050021186,-0.044043023,-0.03971849,0.0013710962,-0.096096314,-0.007475635,-0.04460943,-0.009914643,0.00020814128,0.0033432199,-0.1203969,0.07566295,-0.032132063,-0.0110522425,0.0061853225,0.06680495,0.03179073,0.08580511,-0.051595192,0.016044969,0.0066563436,0.04789471,0.038310695,-0.09055423,-0.013600704,0.080296665,-0.013112118,-0.047678288,-0.06986531,-0.058760982,-0.058901027,0.028654682,0.053686336,0.007896981,-0.018379409,-0.026464665,-0.05153534,0.039651714,-0.021329332,0.057449162,-0.01669365,0.004015246,0.027023071,-0.07936094,-0.004247247,0.08297588,0.050202698,0.047275122,-0.09596504,-0.0010856952,0.03159658,-0.050263632,-0.011385822,0.00061833806,0.057475667,0.1192024,-0.051229067,-0.017701935,0.10306373,-0.050823938,-0.001736114,-0.030481933,-0.042121578,-0.09584306,-0.011052784,-0.013771621,0.064317875,0.088922255,0.096311875,0.03994843,0.0066548986,0.01502913,0.06054491,0.054201677,-0.1212581,-0.07290437,-0.007576576,-3.1033586e-08,0.01046651,-0.05304326,-0.03013169,0.07865768,-0.02256911,-0.013680499,0.06261963,0.03136892,-0.022996517,0.08180155,0.013971466,0.0019984976,-0.07866459,-0.016408002,0.03136441,0.037082557,0.055439126,0.10454037,-0.042901196,0.031238962,-0.046237588,0.07361875,0.011549786,-0.0040598265,-0.035114724,-0.032782093,0.0023330478,0.011874992,0.08546058,-0.032092832,0.047078397,0.0021397413,0.04227797,0.0024877912,-0.04714971,0.033951167,-0.068813264,0.0595735,0.037802298,-0.05706498,-0.12187986,-0.11202375,-0.104379095,-0.03811267,-0.13073145,-0.023539972,0.01755462,0.040900968,-0.020091105,0.07110356,0.0032810718,0.06194759,0.09982393,-0.10011059,0.016781043,-0.017691351,0.012373054,0.0075014993,0.041257404,0.017701415,-0.033846244,-0.030874413,-0.0251685,-0.0070872246} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:03.194838+00 2026-01-24 23:35:51.047194+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 174 google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB 1 t 177 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan which greeted me with a smile. You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern Europe. Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. Also the shuttle to the rental is not that easy to find, even though the location on the website is indicated ( as one shuttle drives up and down) We decided to walk which takes around 15-20 minutes.\n\nThe car i was offered is a VW Taigo with apple carplay. Very comfortable ride. i overall had a nice experience with clickrent. i was happely assisted/helped by a guy named ivan which greeted me with a smile. you can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern europe. do not be surprised if you need to wait for 2+ hours if the check in is understaffed. also the shuttle to the rental is not that easy to find, even though the location on the website is indicated ( as one shuttle drives up and down) we decided to walk which takes around 15-20 minutes. the car i was offered is a vw taigo with apple carplay. very comfortable ride. 4 2025-12-26 01:27:48.339742+00 en v5.1 P1.01 {} V+ I2 CR-N {Ivan} {"A1.04": "Also the shuttle to the rental is not that easy to find, even though the location on the website is ", "J1.01": "You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as m", "O1.05": "The car I was offered is a VW Taigo with apple carplay. Very comfortable ride.", "P1.01": "I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan wh"} {0.032861527,0.009188547,0.07795235,0.016920093,-0.043784767,0.05047148,0.027390206,0.011394958,-0.05769152,-0.011221659,0.03255361,0.0166977,-0.0751394,0.056079708,0.00540512,-0.012619556,0.15608402,-0.12609772,0.07390717,0.015067196,-0.07473134,-0.10618405,0.023280837,-0.01656387,0.0058777435,-0.0431466,-0.012222818,0.012282584,0.03491566,-0.050683435,-0.04377758,0.06412742,0.0464716,-0.05342073,-0.022816109,0.0044168024,0.03373437,-0.12047728,-0.10388131,-0.0067539415,0.00353343,-0.012776144,0.0058395104,0.073848076,-0.014565256,-0.040014956,0.0651534,0.07057382,0.09505544,0.011157477,-0.0030554538,-0.040951174,0.0631328,-0.09387827,-0.086179025,0.044403054,-0.008109746,0.00485673,0.0452128,0.002689652,0.041449536,-0.030880336,-0.026784739,0.007972731,0.023889614,-0.0076100724,-0.054580033,-0.020682253,0.04160623,-0.06409085,-0.04162044,-0.021837879,0.009474191,0.048170544,-0.00056542753,-0.03694086,0.024157682,0.022845365,0.02250517,-0.05707343,-0.0020455024,0.0023168807,-0.045965973,0.046701133,0.047932055,-0.06987814,0.036475547,0.087044105,-0.01610898,0.059570972,0.036580354,0.03609759,-0.06840078,-0.06722719,0.033211574,0.07126585,-0.009837648,0.042913154,-0.043885283,0.010779841,0.07106963,0.105666704,-0.020899206,-0.06519456,-0.08484722,0.009941974,-0.024916718,0.03522369,0.021375958,-0.0035926101,-0.009647481,-0.00933648,0.035499815,-0.06611819,-0.10754294,0.015945757,-0.018598227,0.0119757475,0.10910895,-0.0022285206,0.072065175,-0.017915992,0.077445604,-0.017794745,0.0482128,-0.014762828,0.04820142,2.1138946e-33,-0.024556085,0.03515243,-0.08394791,0.039141845,-0.008043452,-0.057195235,-0.05142226,-0.051616725,-0.11395868,0.035300016,-0.044769816,-0.023150152,-0.065706074,0.0025356195,0.012098426,-0.0037932664,-0.03361012,0.0015123397,-0.079917155,-0.04472034,0.040485732,-0.0040261825,-0.03101382,0.042313557,0.025821166,0.00913366,-0.0047176033,0.002569782,0.11093591,0.038439948,-0.123218216,-0.0027257309,-0.08725724,-0.017797481,-0.00797009,0.016016226,-0.060416147,-0.07305374,-0.051549345,-0.031800777,-0.00196107,-0.006833901,-0.0882753,0.0022989062,-0.029648539,0.032621104,0.014873629,-0.055312034,-0.03276251,0.028301595,-0.13780376,-0.025902258,0.030249309,0.0152921295,-0.12045737,0.100046985,0.061979067,0.023259804,-0.026317516,0.009164729,-0.00793345,0.02888108,0.0045236223,-0.0648811,-0.053032607,0.019886216,-0.022039905,-0.00030692542,0.026306603,0.04441757,0.042507708,0.061960958,0.061754648,-0.028513715,0.070783585,-0.013884858,-0.071900025,-0.040475972,-0.061250687,0.058602516,-0.006443579,0.029019253,0.035167582,0.053675298,0.058363073,0.03088142,0.016343432,-0.012829787,-0.045867316,0.062991716,-0.06828441,0.061648015,0.017555203,0.011441503,-0.0045377663,-2.8720795e-33,0.06442868,-0.06383301,0.046594474,-0.010578367,-0.05474878,0.04608518,-0.06285992,0.06505144,-0.08695227,0.0031440305,-0.042880774,-0.0013575325,0.05972971,-0.023962123,-0.03361189,0.016790463,0.13130422,-0.0459182,0.011856366,-0.02776697,0.090936996,0.011186995,-0.014015035,0.0037934266,-0.027581407,0.0022395009,-0.002981068,0.087592036,-0.033862848,0.000569602,-0.030743279,0.047745224,0.05826759,-0.010368851,0.043203793,0.10597251,0.04762303,0.084282,-0.035045445,0.06230808,0.015740966,-0.07163881,-0.016852938,-0.023909148,0.082500264,-0.011413897,-0.061655674,0.018459618,-0.056541122,0.030065222,0.060174264,0.0288891,-0.031353142,0.025054347,0.041600034,-0.03536954,0.035073128,-0.11194572,0.009106119,0.011227139,-0.08529882,-0.039293386,-0.012930792,-0.041566633,-0.0059235822,-0.12312042,0.01863074,-0.018085942,-0.04403227,0.0024105283,-0.063598804,0.001999592,0.007159386,0.0076884087,0.0006031106,-0.0028722864,0.14588688,0.031241167,0.02397091,-0.07239903,0.013623965,0.01723194,0.0807795,0.027399251,0.0006074854,0.1208819,0.018663265,-0.08813193,0.013068237,0.08243828,0.0073609874,0.104104385,-0.067576274,-0.010531047,-0.062572084,-5.2366882e-08,0.017324366,0.027508622,0.0069559654,-0.016028026,-0.013932175,-0.05868059,-0.04447738,0.06430441,-0.071391255,0.008310979,0.011095465,-0.0068133534,-0.036222175,0.07342706,-0.01614989,0.028668785,0.049684413,0.10851855,-0.032770332,0.014827798,0.04836032,0.028508106,0.02601426,0.023485959,-0.0077031623,0.005073833,-0.039282754,-0.02705639,0.062449045,-0.09380047,-0.09495644,0.059845768,-0.07626851,0.018223995,-0.08016554,-0.046338942,-0.01896348,-0.00785259,0.0012354167,0.061667074,0.05592595,-0.046971615,-0.054582525,-0.03260137,-0.015647523,-0.021036709,-0.031370632,-0.086024575,-0.010088941,0.03223791,0.026441628,-0.013658934,-0.020086002,0.088926665,0.06624995,0.0035201514,0.033029307,-0.05421406,0.07134737,0.053650714,0.041515294,-0.021678625,-0.11536305,0.070199296} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:36:20.727813+00 2026-01-25 01:27:49.891851+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 67 google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB 1 t 70 Fika unknown Shopped off here for a very late breakfast and was really good. Great food and coffee and quite cheap too. We got a tiramisu to takeaway which was equally good. shopped off here for a very late breakfast and was really good. great food and coffee and quite cheap too. we got a tiramisu to takeaway which was equally good. 5 2025-07-28 23:35:50.732226+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Shopped off here for a very late breakfast and was really good."} {-0.011342598,0.018124351,0.058125895,0.08760072,-0.042791855,0.003873824,-0.0026950918,-0.07151654,-0.05305093,-0.043018974,0.018424887,-0.03312786,-0.022811912,-0.02612762,0.029582025,-0.08070243,0.12392316,-0.15963359,0.035083894,-0.090744555,-0.07802468,-0.032344326,0.036637176,-0.01065227,0.067169726,0.05392191,-0.0061052055,-0.0028769828,-0.01605198,-0.031437144,-0.0555739,0.07463769,-0.006027186,-0.040572368,-0.023420427,0.03268461,0.10910592,-0.14689937,0.043532263,0.023737801,0.0061589847,0.07512032,0.020352766,-0.032193832,-0.05498516,0.043798745,-0.00022032598,0.028778393,0.08283441,0.021740694,-0.013729903,0.054821763,-0.008171463,-0.06736708,-0.017998064,0.02674498,-0.057396032,-0.08183389,0.020091427,0.0051815794,-0.02448956,0.016066642,-0.016371345,0.031626184,0.024722077,-0.09930281,-0.18784155,-0.025516748,-0.0022230835,-0.033225514,-0.013605121,0.045526486,0.031147297,0.0015487738,-0.09119351,-0.014054523,0.10121618,-0.047135454,-0.009562647,0.00861243,-0.055636358,0.0016583784,0.012650682,0.044788465,-0.057697643,-0.024428755,0.060581625,0.099582866,0.08689372,-0.08205835,0.13341787,0.05552225,-0.0064362325,-0.0031376726,0.04328217,-0.065066,-0.020108027,-0.00015688654,-0.022199038,0.03631053,0.060946338,0.10893078,0.029379942,-0.04067392,-0.05139478,0.016396912,-0.03886998,0.078987256,-0.0130603155,0.007014859,-0.02668814,0.05108789,0.01870357,0.015287749,-0.00912195,0.055434763,0.02380193,-0.049689874,-0.036672533,0.0027298077,-0.025932277,0.038184676,0.0071925884,0.023611382,-0.060449425,0.027414117,0.0050361976,5.1769244e-34,0.005337861,0.009883168,-0.013951251,-0.011303433,0.07222679,-0.008749487,-0.048038814,-0.03292961,-0.04086352,0.042460833,-0.04704093,0.01870302,-0.03025976,0.03513175,0.0014878884,0.0040368596,-0.050056968,0.053756334,0.024359943,0.012107805,-0.012339042,-0.02586059,0.012146572,-0.005502696,-0.03561774,0.03673256,-0.00038208143,0.015771724,-0.004186286,0.0154944,0.019571403,-0.047276676,-0.015452054,-0.01178532,-0.040996823,-0.0038032413,-0.012270465,-0.108598344,-0.028601542,0.07025112,0.023135893,0.043109458,0.046347883,0.06156688,-0.05658962,-0.03769277,0.04675836,0.039254818,0.03501998,-0.059810713,-0.09100487,-0.035247363,-0.004111994,-0.044601366,-0.09103358,-0.01868755,0.0006858166,0.0373771,0.04301455,0.0071001556,0.05122939,0.029681288,-0.03413795,-0.11112169,-0.059033874,-0.05143738,-0.024364442,-0.033965543,0.0068347803,-0.031685498,0.039035637,0.008688589,0.04955304,-0.004631089,0.13963768,0.060068004,-0.010224038,-0.006522842,0.07113354,0.023523554,0.08988289,-0.026620619,-0.013863931,-0.013851022,0.04098526,0.060234435,0.009118447,-0.055640824,-0.012914381,0.058098327,-0.07305903,0.024889776,0.038575023,-0.010242482,-0.0029819447,-1.4520639e-33,-0.0025047145,0.00021223215,-0.05851051,0.039982747,-0.023104602,-0.03058416,-0.036086854,0.036585305,-0.004711333,-0.009731561,-0.03497942,0.023019252,0.11121774,0.010402087,-0.044318423,0.06389181,0.17393708,-0.005070205,-0.01702448,-0.11487941,-0.08948021,0.074397646,-0.043903172,-0.055507645,-0.08096907,0.13588662,-0.002434995,-0.016264385,-0.14554681,-0.06364889,-0.038649827,-0.051361956,-0.0025216735,0.045971505,0.06652789,0.07091252,-0.0016409685,-0.040241737,0.015968801,0.088260666,-0.019086521,0.017747415,-0.0044864775,0.07692175,-0.011889552,-0.01155175,-0.06536218,-0.007059561,0.018894807,0.03163915,-0.018236076,-0.019712916,0.0038349463,-0.03381505,-0.027826082,-0.0260323,-0.0006854429,-0.011766929,-0.040426534,-0.037238177,-0.05950508,0.05059934,0.0152694145,-0.0009647343,0.07528197,0.028579608,0.022875959,-0.05788495,0.013771087,-0.01852863,-0.019441362,-0.09408204,0.00038969348,0.016422492,0.039346073,0.061335023,0.08940756,-0.017264212,0.020092387,-0.001753319,-0.020911537,0.007378654,0.007382555,-0.05749642,0.0014964932,0.042691138,-0.020861693,-0.026673175,0.0854351,0.07224491,0.033691563,0.031978462,-0.012482277,-0.009491358,0.074929655,-2.7778556e-08,0.06785981,0.034652837,-0.042906348,0.15976684,-0.027909447,-0.100241564,0.033577878,-0.005184571,0.036074754,0.048250284,-0.035983674,0.04450351,-0.08374383,-0.05743272,0.02543982,0.016594753,0.07904774,0.07980486,-0.0009125014,-0.035932884,0.03416199,0.04524472,0.056432452,-0.0032785286,-0.0070439605,0.018003628,0.032128125,-0.0031541714,0.02926485,0.0012831604,-0.04362766,0.051780198,-0.06596839,-0.034943435,0.0053097676,-0.09258573,-0.072930455,-0.020496981,0.017662564,-0.060741924,-0.036045816,-0.0833853,-0.107307956,-0.015425763,-0.049099706,0.06193359,-0.052864905,-0.0031485832,-0.018603357,0.0015457676,-0.056106597,0.0025388128,0.08350656,0.054985087,-0.008515547,-0.059918925,-0.05259001,-0.074166015,0.040915832,-0.025202276,-0.031959612,0.016782267,-0.1173832,0.011741281} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:54:19.972572+00 2026-01-24 23:35:51.036943+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 70 google ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE 1 t 73 Fika unknown This is a cute cosy cafe away from the town noise. The coffee was very tasty and pancakes too. Great place to chill after shopping or with a book. Will definitely be back this is a cute cosy cafe away from the town noise. the coffee was very tasty and pancakes too. great place to chill after shopping or with a book. will definitely be back 5 2025-02-28 23:35:50.732236+00 en v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "This is a cute cosy cafe away from the town noise.", "E1.02": "Great place to chill after shopping or with a book.", "O1.01": "The coffee was very tasty and pancakes too."} {0.012691289,-0.059541143,0.026895022,0.08052341,-0.05060513,0.053786367,0.03842401,-0.09059321,-0.048002128,-0.062501684,0.0054348656,-0.026674736,0.009277641,-0.08034885,-0.0021713907,-0.07547558,0.115881175,-0.10383152,0.080648206,-0.06256809,-0.12585293,-0.0098624015,-0.020219652,0.08949519,0.05400952,0.08694829,0.04657749,-0.01412747,-0.03257713,-0.015926724,-0.011070604,0.029068446,-0.0011175943,-0.018682647,-0.0004694849,-0.02612702,0.096513614,-0.07885238,0.096828006,0.032612115,-0.065631695,0.03301595,0.011592046,-0.048005495,0.028767657,0.018765017,-0.03310528,-0.10991869,0.069875054,-0.0069666617,0.034408394,0.0044873273,-0.0032341725,-0.04404957,0.009534721,0.05340441,0.019136647,-0.05775776,0.078689896,0.09087045,0.044571254,-0.08506278,-0.02009586,0.05267585,0.058325466,-0.092254564,-0.110736854,-0.009572068,0.082092546,-0.09538962,-0.025966527,0.032094136,0.06675452,-0.036251277,-0.04895022,0.044436,-0.007341851,-0.010944205,0.0007508605,0.016801786,0.022975245,-0.028164577,0.014219753,0.0038452495,-0.0884343,-0.05982941,0.044369385,-0.047946423,0.039719082,-0.015845558,0.02904884,0.07899417,-0.06581322,0.025189105,-0.020082075,-0.034290206,-0.055284888,0.020149028,0.012153052,0.06724138,-0.024161179,0.11927514,0.033468444,-0.06971502,0.012541662,-0.02112004,-0.010436084,0.00019684977,0.050730947,0.019407231,-0.032398645,0.0336123,-0.04883062,-0.010668934,0.011530442,0.043350603,0.06392424,-0.06170953,-0.0064718723,-0.0057889987,0.018129978,0.037739504,-0.039865967,0.0004325171,-0.025669172,-1.3467257e-05,0.052828934,9.203524e-34,-0.054762468,0.04977486,0.009261935,-0.00027699058,0.15155907,-0.049049664,-0.00024345702,-0.043943025,-0.07204601,0.045814447,0.030592937,-0.017347,0.024399271,-0.0064618653,-0.046733275,-0.037168708,-0.028977621,0.01649945,-0.020030942,-0.020367209,0.005668643,0.02602876,-0.011956142,0.06516015,-0.0036123912,0.012339133,-0.043083254,-0.0022938333,0.038816847,0.026654566,-0.018563563,0.025254242,-0.017544053,-0.0027961426,-0.08288597,-0.045779474,0.0042158584,-0.03405921,0.0023877388,0.0366999,0.01119149,0.012771532,-0.012659454,0.042237982,-0.04162,0.021559153,0.012709852,0.032528806,0.025231319,-0.07263938,-0.0969918,-0.048660986,-0.047373407,0.11523155,0.030831585,-0.027472466,0.0029557298,0.012511672,0.116763264,-0.021012224,0.10781415,0.08608781,0.0019094073,-0.14053163,0.02315933,-0.018718967,-0.049279626,0.02288717,0.063290566,-0.026816089,0.102425925,-0.019413106,0.029449996,-0.014423108,0.035177104,0.013104186,-0.10072666,-0.004353596,0.020971365,0.022443743,0.029564584,-0.04076872,-0.009712024,0.019149039,0.0021353576,0.05632606,0.08544672,-0.12860449,-0.08243387,0.027737573,-0.0750689,0.057939254,0.13154335,0.003029467,-0.057217717,-3.018362e-33,0.07549276,0.011586445,-0.07960547,-0.037830744,-0.079639666,0.029567923,-0.033908512,0.0029905096,-0.053520516,0.0053505837,-0.044787567,-0.040683948,0.13050024,0.021495035,-0.065497935,0.067481905,0.07009793,-0.010214996,-0.032364186,-0.0020917882,-0.06940326,0.031533163,-0.076890185,-0.01836701,-0.05498705,0.07476459,-0.016289534,-0.044298135,-0.06392599,-0.026563074,-0.14213735,-0.024168335,0.061293248,0.009217424,0.051906593,0.058921758,-0.043217447,-0.070002206,-0.008212478,0.038267184,-0.019457815,-0.0012416014,-0.025311286,0.072573595,0.02530182,-0.0074428166,-0.042852666,0.003868427,-0.0045672506,0.016801495,0.08801605,0.014450163,-0.02871645,0.0075724414,-0.038946517,0.02087263,0.030681418,-0.008605697,4.041539e-05,-0.037526913,-0.04075345,-0.01726357,-0.019410277,0.01461762,0.106485024,0.046959203,-0.050186627,-0.058742095,0.043707255,-0.055021122,0.017615011,-0.009995683,-0.06245979,0.015342689,0.020718083,0.031201625,0.09160172,-0.0800329,-0.018795596,0.0039259424,0.007745037,0.006941278,-0.018837035,0.00074640976,0.02391451,-0.04664311,0.015923481,-0.048669867,0.0034721289,0.062759176,0.015386201,0.045769136,-0.02853814,-0.0696326,0.053847756,-3.57179e-08,0.02080224,-0.058156755,-0.03057787,0.07758328,0.08591281,-0.06345276,0.055986598,-0.061994195,-0.035197724,0.08508804,-0.049220636,0.024740258,-0.0205292,0.06363587,-0.0499304,0.008476582,0.08123101,0.07750359,-0.002399084,0.01236526,0.02728088,0.027646905,-0.0019680546,0.00691373,0.020118622,-0.029753383,0.035866518,-0.0022065071,0.0015337412,-0.05934187,-0.05359108,0.015724653,-0.03725207,0.0033747924,-0.004719159,-0.036687452,-0.0078257155,-0.045052975,-0.024953166,-0.06783359,-0.12639782,-0.1298361,-0.07509634,-0.02452,-0.08166091,-0.0044534625,0.013182287,0.009450972,-0.03164185,0.078944065,-0.07479787,0.022081757,0.09886138,-0.0027094253,0.036657456,0.0059482297,-0.09240844,0.022611968,-0.021731598,0.0029524204,0.0054443115,0.037156034,-0.063790895,-0.03996097} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:54:52.822925+00 2026-01-24 23:35:51.044629+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 72 google ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE 1 t 75 Fika unknown I had a lovely experience today at Fika. The staff are wonderful very polite and friendly. Very warm and cosey. I would highly recommend trying the waffles their lovely and fresh. i had a lovely experience today at fika. the staff are wonderful very polite and friendly. very warm and cosey. i would highly recommend trying the waffles their lovely and fresh. 5 2025-01-24 23:35:50.732241+00 en v5.1 J1.01 {} V+ I2 CR-N {} {"A1.01": "The staff are wonderful very polite and friendly.", "J1.01": "I had a lovely experience today at Fika.", "O1.02": "I would highly recommend trying the waffles their lovely and fresh."} {-0.0010340773,0.032210357,0.062286496,0.052658487,-0.08843848,-0.012563324,-0.00772256,-0.082271576,-0.023722,-0.032567658,-0.007453877,-0.10516036,-0.09034217,0.008544419,0.03745114,-0.04081591,0.082393125,-0.10258396,0.048029795,-0.034449525,-0.0714781,-0.031146858,0.017084602,0.026967593,-0.0020765457,-0.005208591,-0.006092192,0.049173266,-0.029236516,-0.061883435,-0.051700562,0.04993407,0.0036936654,0.039052993,-0.021554824,0.07560021,0.042172387,-0.05560415,0.035559006,0.046620436,-0.02695327,-0.020197753,0.05187109,-0.054438803,-0.036906157,0.0065143467,-0.04291903,0.011277173,0.028974812,0.050379533,-0.044450436,0.0012832719,0.09888502,0.0066459286,0.013096415,-0.011935983,0.045539975,-0.05323089,-0.027038367,0.0026906112,-0.019019077,-0.08104373,-0.039020605,-0.0018411629,0.0038066423,-0.12256236,-0.1784751,0.05158099,0.015763886,-0.08126496,-0.0785148,0.011563472,0.07707076,-0.004709036,0.0151154315,0.029026398,-0.042822335,-0.039026905,-0.010338155,0.005956155,0.012679544,-0.05358062,0.055615067,0.051854286,-0.025527142,-0.10409246,0.06674557,-0.017926386,0.042104095,0.038501468,0.08524651,0.1273675,-0.053687807,-0.036187813,0.07024153,0.0671305,-0.025914572,0.050414555,-0.038581464,0.06675963,-0.045749966,0.055967934,-0.02750713,-0.058411095,-0.061461657,-0.027470775,-0.0045935255,-0.014143296,0.022557098,-0.07830836,-0.0081359735,-0.016666863,-0.025303945,-0.03666405,-0.0120788645,0.011321004,0.056882188,-0.009733778,0.027353149,-0.01294775,0.03693838,0.004440243,-0.005201832,0.008633115,0.023877589,0.033692606,-0.015211902,-1.219015e-33,-0.0019594422,0.1066897,-0.051921707,-0.021201069,0.09183285,-0.057271082,-0.022008551,-0.04348089,-0.01170162,-0.0045234766,0.048068665,0.06805169,0.00463504,-0.10330003,-0.06651409,-0.044384625,-0.035088465,0.03868738,-0.08974006,0.079746574,0.07276632,0.016289191,0.028124884,0.049508497,0.0037604156,0.0032212485,-0.025510624,-0.0037861683,0.022815073,0.034651242,0.025785409,0.009091129,-0.031209104,-0.050461136,-0.06887832,0.027604213,-0.073312186,-0.016425505,-0.032427143,-0.03516109,0.038725603,-0.045591544,0.0591911,0.0619595,-0.041553836,0.035500742,-0.017411757,0.07527116,0.0022841212,0.043979958,-0.008010908,-0.026605021,0.008875181,0.10260168,0.046699073,-0.052581154,0.049186856,-0.018000802,0.01795675,-0.06966021,0.044552285,0.06814125,-0.030466318,-0.0845612,-0.029645873,-0.08612968,0.0065571247,0.0416707,0.07641968,0.018140549,0.09151905,0.043372545,0.014670102,0.019300854,-0.02231362,-0.0434833,-0.003912362,0.01542757,0.045065682,0.06714837,0.10007727,0.06481,-0.014927169,-0.013303189,-0.0018118422,0.01841755,0.021096913,-0.0062900516,-0.037371743,0.10355927,-0.039019737,0.040029168,0.098055564,0.011931006,-0.049834732,6.2206004e-34,0.12149344,-0.042354543,-0.06344067,0.03806547,-0.04809864,0.048274577,-0.047713358,-0.0032415793,0.011219861,0.060240034,-0.03609006,0.04322424,0.030595949,0.0065301103,-0.049989417,0.022916071,0.09167991,0.024557825,0.03547788,-0.12159874,-0.018056087,0.08207571,0.026890296,0.036411315,-0.03445872,0.03513505,0.03881036,-0.03902162,-0.11500292,-0.07123339,-0.09149952,-0.056814652,0.017940426,0.037982453,0.031639908,0.051057678,-0.033860505,0.030622045,-0.024256451,0.10811031,0.066268034,-0.053005718,-0.028852316,0.01935109,-0.034563053,-0.07995317,-0.017663471,-0.04115394,-0.10026394,0.0027564068,0.031116202,-0.021411845,-0.09891587,-0.058079116,-0.079647385,0.10749461,-0.018312825,-0.03003091,-0.07918102,0.009676034,-0.041108374,-0.010657084,0.026074942,0.043701008,0.06679693,-0.006722828,-0.018776909,-0.023478497,0.036032498,0.02208965,-0.041440755,-0.00852218,-0.037219785,0.024505442,0.065073185,0.028987959,0.07838568,-0.018431364,-0.026686667,0.010673748,-0.033907846,0.008207744,-0.0014360589,0.026585711,0.08958701,0.01701064,-0.011159792,-0.037327945,-0.018485108,0.07404172,0.018627675,0.05312791,0.10212052,-0.030198114,0.010524815,-2.9936984e-08,0.03006152,-0.010880613,0.011331253,0.09566875,0.0046698386,-0.12437218,-0.050571676,-0.05352336,-0.063184805,0.053646244,-0.093977354,0.037079137,0.000701489,0.045490075,0.09817946,0.009508746,0.04504215,0.06390424,-0.094997995,-0.019168455,-0.017513176,0.06120394,0.017679818,0.08207733,-0.062025398,0.06536884,0.005329488,-0.056783933,0.009064588,-0.033887394,-0.08849792,-0.008443556,-0.030477023,-0.010491651,-0.013771787,0.011528022,-0.04508759,-0.07441334,-0.024819097,-0.006819029,-0.07314766,-0.073160164,-0.057677884,2.906116e-05,-0.044421047,-0.032200743,-0.033386745,0.010203299,-0.05967212,0.070133805,-0.014591996,0.061388932,0.02511148,0.117094144,-0.03346985,0.037343375,0.03784504,-0.042801842,0.0816473,0.0656082,0.004827419,0.044407133,-0.042067304,0.009422896} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:14.75823+00 2026-01-24 23:35:51.049158+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 277 google Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB 1 t 280 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nice experience with great people , very nice and new cars !!! nice experience with great people , very nice and new cars !!! 5 2026-01-21 01:27:48.340788+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"O1.01": "very nice and new cars", "P1.01": "Nice experience with great people"} {-0.020452043,0.08448803,0.08691069,-0.009676965,-0.06457953,-0.00062178937,0.0037484844,-0.020690452,-0.08307452,-0.013816304,0.080315426,0.034580946,0.06474522,0.006030759,-0.049349252,0.014034496,0.027054401,-0.0517324,-0.036613915,-0.022952424,-0.08471778,-0.104997836,-0.0001796312,0.029467938,-0.08163486,0.04788558,-0.03930532,0.09281432,0.053214513,-0.011201412,-0.058462314,0.08581335,0.027854446,0.0058850697,0.010331199,-0.002231717,0.047423314,-0.08201359,-0.04485064,-0.09475204,0.026271714,-0.022387424,0.00340118,0.008668591,0.030934233,0.025676882,0.085811175,-0.009084783,0.10756558,-0.06951615,0.016043866,-0.036369424,0.031863485,-0.12242733,-0.09901925,0.052851353,-0.031115731,-0.01218812,-0.051350053,-0.074860096,0.055547327,0.0048251413,-0.012006369,0.017972475,-0.027267748,-0.039311294,-0.06097969,0.032211628,-0.0042783855,-0.0062826467,-0.04492757,0.04427392,0.057345696,-0.012359533,-0.059921216,0.0067332983,0.03242479,-0.043061525,-0.04558865,-0.019605331,0.050588533,-0.038901847,-0.017801141,-0.006891378,-0.03104203,-0.08435385,0.021452915,-0.03402715,-0.023225004,0.05561482,-0.017345209,0.05781014,-0.04381014,-0.027543154,-0.060591612,-0.018922746,0.020473758,0.017303249,0.01618119,0.029041145,0.037943922,0.06631231,0.020858139,0.0038606338,-0.05659908,0.11816731,-0.047205202,0.054851487,-0.06217192,-0.035740796,0.022790106,0.00869579,0.0035022285,0.0023667288,-0.09520991,0.02271803,-0.044365235,0.040709596,-0.0058990945,0.012404909,0.0138787925,-0.030942667,0.0050754016,0.025794132,0.048230775,-0.0011629247,0.041874077,-3.6055354e-33,-0.062195487,0.065671474,0.012233858,0.10757279,-0.010531004,0.046224564,-0.09289179,0.038133863,-0.08572577,0.01688804,0.019675044,0.007829035,-0.008500403,-0.032159884,-0.031506337,-0.031729583,-0.16175534,-0.052246552,-0.09020865,0.0141366115,-0.049102154,0.011911292,-0.012663216,0.0768471,0.047707673,0.06704668,0.040726725,-0.012749336,0.10045888,0.006742442,-0.03086856,0.063444555,-0.0016410968,0.019837795,-0.051272206,0.06391739,-0.042878732,-0.076279044,-0.016711302,0.040786903,0.039383102,-0.026619254,-0.08637835,-0.026761908,-0.053651165,0.07986367,0.011519909,-0.01921879,0.027111135,-0.030634338,-0.09557151,-0.04596596,-0.047211323,0.057912767,-0.004359154,0.0049680523,0.010963676,0.01276073,-0.020146603,-0.0659002,-0.00534455,0.08015951,-0.0016282591,-0.08163323,-0.009178372,-0.028206838,0.017125685,0.03735381,0.028019018,0.06542728,0.05036677,0.026195193,-0.028064402,-0.0036458564,0.04362851,0.020736946,-0.03270822,-0.011242853,0.02491181,0.006370412,0.040633082,0.0666945,-0.029614689,-0.037746664,0.11751899,0.04370627,-0.07450758,-0.075706944,-0.021451313,0.060106635,0.015742024,-0.012571541,0.09482625,0.010482321,0.043514285,-2.7906302e-34,0.048753113,0.03538044,0.05006009,-0.011977154,0.0054291678,-0.0032815617,-0.06515081,0.08238319,0.015316522,0.13149254,-0.02612965,0.06610234,0.05817974,0.03237786,-0.039301116,-0.09064898,0.107687786,-0.002546974,-0.07914455,-0.039932244,0.023714906,0.060802724,-0.03338696,0.0020544524,-0.06095434,-0.02767536,-0.029436558,-0.007241809,-0.001663039,-0.078215785,-0.01163067,0.02296553,-0.06358568,-0.026533563,0.040892273,0.0055659716,-0.009337943,-0.0114275385,-0.06027228,0.02228547,-0.033847257,-0.058334135,-0.006714963,0.023087056,0.030944036,-0.043411605,0.0013252047,-0.113830976,-0.028572954,-0.0071481816,0.047711715,-0.040611755,-0.01217935,-0.044854563,-0.05025706,-0.069797985,0.13466465,-0.012508405,0.04004571,0.010242618,-0.015270788,0.01619402,-0.06261343,0.011200254,0.0074966005,-0.13735518,-0.006960333,-0.0012577096,-0.06508124,-0.014795434,-0.020954764,0.04055566,-0.12569977,0.07171953,-0.057115514,-0.07122515,0.05573531,-0.03396732,0.037543327,-0.050769243,-0.010069246,0.017511945,0.088456914,0.032955237,0.03166537,0.07050202,-0.041592043,-0.048620496,-0.00818782,0.06469398,0.010953364,0.13968782,-0.06288602,0.020502819,-0.11020852,-2.2063915e-08,0.015758382,0.047317784,-0.055367924,0.05266015,0.031469528,-0.08564737,-0.024408618,0.05920988,-0.09684572,0.0040918468,-0.006313028,0.008434761,-0.0027010452,0.03941013,0.07628416,0.042028394,0.031237446,0.08324179,0.0111157615,-0.031854343,0.02268425,0.08484992,-0.014559435,0.11612042,0.00081633317,-0.05195214,0.033507656,-0.05285841,0.044242416,-0.058907174,-0.075145945,0.018004091,0.07182147,0.015454208,0.027863938,-0.012877384,0.012736553,0.017655827,0.034059834,-0.09553169,0.038122717,-0.053952083,-0.05359523,-0.02748268,-0.04206631,0.010695084,-0.016824204,-0.04772594,-0.055370644,0.0033962205,-0.0059836432,-0.018269777,-0.038244445,0.113248944,0.03813489,-0.0210089,-0.038306046,0.02679802,0.07242163,-0.005160737,-0.00067510316,0.05175765,-0.06831984,0.11684763} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:53:06.141428+00 2026-01-25 01:27:50.784521+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 64 google Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB 1 t 67 Fika unknown Been twice and the coffee is excellent! The staff are very friendly and the GF options are fantastic. Recommend the home made GF almond cakes. Delicious. been twice and the coffee is excellent! the staff are very friendly and the gf options are fantastic. recommend the home made gf almond cakes. delicious. 5 2025-09-26 23:35:50.732215+00 en v5.1 O1.01 {} V+ I3 CR-N {} {"A1.01": "the staff are very friendly", "O1.01": "the coffee is excellent"} {-0.017955614,-0.043380708,0.0564368,0.08847485,-0.08589917,0.031103162,0.01855043,-0.070089534,0.015872,-0.02606387,-0.040921155,-0.028683402,-0.05526606,-0.04864874,0.048509695,-0.091388054,0.13226137,-0.09854055,0.0050896048,-0.079865485,-0.016571885,-0.08264879,0.027139438,0.023467805,-0.043619264,0.005715445,-0.018489577,-0.031345826,-0.013520203,-0.033959355,-0.022808958,0.05137862,-0.045547202,0.012220556,-0.12716495,0.08186334,0.06394737,-0.05057347,0.044185318,0.01592571,-0.057835437,-0.022613255,0.031254604,-0.061533537,-6.926195e-05,-0.01594674,0.048993804,-0.091362245,0.02590536,0.01402692,-0.0058115995,-0.06472183,0.060290497,-0.063074745,0.073810905,0.02161521,-0.049643394,-0.05677144,0.020804696,0.05224426,-0.027438056,-0.008782893,-0.04556917,0.020427713,0.035075735,-0.090546295,-0.094062105,-0.012441283,0.053369697,0.002792956,-0.017251601,0.056899562,0.038805395,-0.07119576,-0.0001333313,0.038132224,-0.0009878174,-0.029256966,-0.0137447165,0.014921425,0.021633068,-0.008151699,0.09266415,0.05299147,-0.057851966,-0.024611358,0.07371556,-0.037621353,0.009823004,-0.039769974,0.10882552,0.098225646,0.10200609,0.06261794,0.008275028,-0.003106663,-0.07156132,-0.020040805,0.0017031691,0.057005525,-0.0731141,0.11570512,0.011592207,-0.014018089,0.023183234,-0.024675062,-0.004655222,-0.012494019,0.11847048,-0.0024777004,0.023366554,0.042274807,-0.024528982,0.003848442,-0.016585445,-0.0010079531,0.11306971,-0.05207085,0.010895644,0.009802406,-0.014969546,-0.057676177,0.027411899,-0.04871539,-0.051180426,-0.036626935,0.043007936,3.3354216e-34,-0.03559276,0.08128347,0.13558157,0.042540945,0.07971087,0.018605705,-0.02778666,-0.00093583856,-0.06363537,-0.011994418,-0.03528832,0.0793108,-0.042037193,0.07169599,-0.0462041,-0.01789229,-0.06310937,0.043674853,0.019655043,0.010657107,0.035510577,0.03189887,0.004509401,0.044805,0.031047123,0.0027541658,0.03718011,-0.0007120696,0.00043811853,0.002262159,-0.019999705,0.020005213,-0.021007072,0.023491858,-0.07114025,-0.0017657198,0.051028486,-0.0026361172,-0.025414303,0.039106857,-0.060334224,-0.014768605,0.10754056,-0.030601524,-0.09334207,-0.0077114035,-0.010976932,0.06813902,-0.03604983,0.027220087,-0.052882012,0.0057526985,0.026126342,0.15913874,-0.014985142,-0.05184034,-0.034464348,-0.017521145,0.12225389,0.01515701,0.1026367,0.04906108,-0.036275655,-0.0059030415,-0.04175245,0.048544336,-0.038844112,-0.00828173,0.11111808,0.027666165,0.069839716,0.02773619,0.059300266,-0.06650292,-0.016315103,-0.029210092,-0.027482403,-0.018475909,0.05126833,0.073822625,0.014317916,0.027949793,-0.0022496171,0.072065726,-0.08514717,0.026293088,-0.009775277,-0.06254593,0.0036198103,0.113729924,-0.09107714,0.022265892,0.13992317,0.013700556,-0.055947747,-7.874936e-34,0.068582214,0.005936322,-0.05992812,0.0113226175,0.050058313,-0.019327449,0.028520744,-0.00046881713,-0.0074748467,-0.008630362,0.0081428,0.044606816,0.043918833,0.043216728,-0.05273623,0.03269641,0.02933322,-0.08003182,-0.0028842373,-0.114939585,-0.042121846,0.056093555,-0.030889425,-0.030208288,0.014312777,0.04253628,0.021291532,-0.02225794,-0.17337382,-0.08033234,-0.01174485,-0.04399518,0.028191784,-0.010158536,0.07129987,0.05133307,-0.08333181,0.014959079,0.010061441,0.06295796,-0.0018449819,-0.01000657,-0.017805893,0.057170276,0.040907554,0.00014264083,-0.0004019495,-0.04047963,0.030044511,0.039406467,-0.03280072,-0.077899836,-0.13476512,-0.0474754,-0.0113296695,-0.0016963865,0.023773346,0.047145445,-0.03385355,0.031353958,-0.036619864,0.05547705,0.02727708,0.044937544,0.079824254,-0.031550303,0.025463955,-0.02262084,0.028073084,-0.002680029,-0.019478392,-0.029586421,-0.0187866,0.045699984,0.045736965,0.021808302,0.078037456,-0.1060911,-0.030827146,0.01202136,0.019560615,-0.019443922,0.02147714,-0.008045533,-0.02747089,-0.016650781,0.07782378,-0.06584785,-0.005571169,0.08339766,-0.037851356,-0.026825573,-0.041216075,-0.023797948,0.043000262,-3.2152244e-08,-0.023719197,-0.0035329221,0.011335327,0.040174767,-0.0096712755,-0.07973746,0.021154862,-0.038133245,-0.06814295,0.0275127,-0.03215912,0.023995806,-0.047726627,0.038011063,-0.01663568,-0.04489269,0.11227609,0.09683131,-0.09017499,-0.017793922,-0.015501327,0.03632143,0.0024983585,-0.03159494,-0.08272881,0.023250518,0.047981787,-0.061190195,-0.018923784,-0.044467013,-0.060845133,-0.011268603,0.008138193,0.06450612,-0.038812153,-0.04196335,-0.06655673,-0.00013899275,-0.027310902,-0.063059114,-0.05349555,-0.11510642,-0.025826264,-0.02090992,-0.061466884,0.025769182,-0.024534836,-0.0016269061,-0.024009803,0.12981054,0.0005317115,0.046019986,0.06161613,0.022016125,0.006869238,-0.06402913,-0.04854738,0.004798804,0.027961386,0.0010839038,-0.019951127,-0.04787592,-0.0018886,0.010958691} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:53:45.19486+00 2026-01-24 23:35:51.024196+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 66 google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE 1 t 69 Fika unknown ⭐ 5/5 ⭐\n\nAmazing place for a coffee and a sweet treat! Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte! 🥰\n\nA big plus is the Garden, a hidden gem where you can unwind in peace. If you haven’t been there yet, you’re missing out! ⭐ 5/5 ⭐ amazing place for a coffee and a sweet treat! cozy interior, friendly staff, and delicious drinks – i highly recommend their latte! 🥰 a big plus is the garden, a hidden gem where you can unwind in peace. if you haven’t been there yet, you’re missing out! 5 2025-02-28 23:35:50.732223+00 en v5.1 O1.03 {} V+ I3 CR-N {} {"E1.02": "Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte!", "O1.03": "Amazing place for a coffee and a sweet treat!"} {-0.0064072986,-0.009494042,0.055540405,0.06795319,0.011040193,0.022659147,0.030828325,-0.092476144,-0.020554852,-0.014146224,-0.011917615,-0.018808672,0.0011009392,-0.08662457,-0.0029403653,-0.03639787,0.06718279,-0.056975644,-0.015766269,-0.080887794,-0.007966964,-0.015492286,0.072137006,0.124487214,0.016864067,0.060334694,-0.04388455,0.068644404,-0.047674756,-0.052358083,-0.00077855185,0.09534082,-0.04815186,-0.061979253,-0.06495145,0.068426535,0.09143516,-0.096101336,0.08303843,0.05562786,-0.04219888,-0.037993625,0.06195569,0.0015390636,-0.022335205,-0.030381277,-0.09395111,-0.017258583,0.03285274,-0.021229634,0.028460728,0.020997155,-0.02467523,-0.05502607,-0.011653097,-0.0012115871,-0.04325858,-0.06385053,0.017294152,0.07029029,0.05829897,0.021407966,-0.012363232,0.05556119,-0.027777752,-0.10605935,-0.0736999,0.0016970905,0.022732433,-0.04398191,-0.036217656,-0.013395891,0.07864682,-0.06406078,-0.07993471,-0.016926767,-0.03704436,-0.043257087,-0.08013513,0.05293082,-0.005860216,0.02283793,0.09299611,0.105644,-0.09551509,-0.020329805,0.038565665,-0.014289809,0.12143141,-0.08617479,0.0419497,0.03837831,-0.06457138,0.03238414,-0.028265588,0.005954219,0.026196165,-0.029252058,-0.08137513,0.029412491,0.026143793,0.021533059,0.013058741,-0.02925968,0.040781274,-0.023816297,-0.056304667,0.04380063,0.1068684,-0.043234885,-0.0036627727,-0.034475747,-0.05095749,-0.000804426,0.011603678,0.023407018,0.07794952,-0.08109747,-0.0073411446,-0.04554933,0.014783822,0.03671878,-0.074812636,-0.028673254,-0.05668181,0.033508703,-0.039233435,-2.5325422e-34,-0.0053488384,0.05562211,0.07020761,0.083224386,0.0510843,0.0023190754,-0.05589676,-0.03698124,-0.085363254,0.046099745,0.027342891,0.028379535,-0.03550416,-0.045363873,0.011582914,-0.048472125,-0.09513435,0.0108294375,-0.014073001,-0.01340039,-0.029865092,-0.038670607,-0.042814683,0.09941871,-0.016771333,0.048924863,0.05586997,0.0009766927,0.007703762,0.03227369,-0.032547377,0.016354064,-0.035430364,-0.04088031,-0.018503312,-0.026682511,-0.026213046,-0.0019304213,0.042505905,0.065797426,0.0045324555,-0.0040214565,-0.011999996,0.050242383,-0.00810912,0.016230304,0.029415397,0.03063996,0.07065069,-0.046318706,-0.08708442,-0.0052911495,0.008906853,0.10080561,0.042562537,-0.030845156,0.018451631,0.0958281,0.03261473,-0.005574982,0.07031223,0.017639982,-0.012408341,-0.085088305,-0.0147931585,0.030455306,-0.012113121,-0.0012108545,0.090362996,0.011644365,0.027778365,0.07026169,0.07887695,0.041724104,0.039085016,0.007500121,-0.031458456,-0.005986776,0.03224912,0.11594031,0.032220475,-0.037488405,-0.043380897,0.027212149,-0.0133860875,-0.05747266,0.08733573,-0.06741058,-0.046043828,-0.035083946,-0.033750232,-0.06903276,0.13272795,-0.0341712,-0.11533611,-1.20335265e-33,0.093848914,-0.056486506,0.01943209,-0.006065309,-0.018904386,-0.008713833,-0.003170938,0.018415302,0.016214097,0.042301655,-0.080312595,0.1071079,0.09315304,0.02975466,-0.044017766,0.02178708,0.08164237,-0.020850977,-0.04336575,0.001726275,0.02326231,-0.008359098,-0.061397467,0.016555047,-0.006131543,0.08471115,-0.014916481,-0.08432377,-0.0782586,-0.064733826,-0.03884656,-0.108172186,0.00060591876,-0.03515895,0.021470014,0.014111717,-0.02960258,-0.016996719,-0.037351593,0.058100943,-0.0028868183,-0.03735571,0.0132493125,0.11585178,0.028488934,-0.040599994,-0.034982536,0.0012156354,-0.040608764,0.008647619,0.0013159628,0.002201822,-0.05308515,-0.0072374004,-0.015400912,-0.004342519,-0.012987288,0.08060157,-0.06303632,0.008399249,-0.02511336,0.10310478,-0.026478544,0.10348072,0.042001553,0.027922142,-0.028086143,-0.0032101145,-0.006481637,-0.006682121,-0.00732675,-0.007079298,-0.014848985,0.02171603,0.02176808,-0.039580774,0.12383577,-0.02357233,-0.009415083,0.05274684,0.013174179,0.039291356,-0.0010110991,-0.052132014,0.03332385,-0.026201114,0.06313965,0.024225134,0.021726904,0.018433167,-0.03654616,0.073520645,-0.1447245,-0.058963615,0.08279258,-3.6297507e-08,0.0666134,-0.00991774,-0.036120214,0.0030141256,0.0014315923,-0.08154536,-0.010003666,0.02620145,0.019358812,0.13024125,0.030092642,0.019361375,-0.019690733,0.015598576,0.0037610864,-0.026926003,0.0933834,0.08845772,-0.024807028,-0.030578563,0.027140561,0.01204845,0.020798609,-0.074200176,-0.026212454,-0.062249273,-0.012700449,-0.038206637,0.030797327,-0.09065326,0.0034070371,0.042735685,-0.033366453,0.04643786,-0.039468285,0.01433343,-0.03558885,0.0030517108,-0.042899188,-0.0028294795,-0.13946506,-0.18079911,-0.05794972,-0.014826973,-0.098312974,0.01575138,0.02953422,-0.015188907,-0.018396094,0.060953777,-0.09104879,0.0032386882,0.057687536,-0.0051640696,0.016269293,-0.002596123,-0.021080153,0.0068296883,-0.029092697,0.026465558,-0.034913834,0.023145227,-0.042190976,-0.005093614} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:54:08.279334+00 2026-01-24 23:35:51.032745+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 136 google Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB 1 t 139 R. Fleitas Peluqueros unknown Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado super mala la atención! no tienen buenos modales y mal educados en su totalidad jamas volveria! quieres pasarla mal este es el sitio indicado 1 2025-08-28 01:15:46.600987+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.847021+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 137 google ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB 1 t 140 R. Fleitas Peluqueros unknown Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado. se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado. 5 2025-06-29 01:15:46.600995+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.899878+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 366 google ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE 1 t 369 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Superfreundlich, schnell und unkompliziert. Das Büro in mehreren Sprachen flexibel. Carlos hat's prima gemacht, Kompliment!\nDas Auto neu und in einem TOP-Zustand. Die Rückgabe lief superschnell und der Shuttle vom und zum Flughafen war schnell, der Fahrer ebenfalls superfreundlich.\nAlles in allem mehrfach fünf Sterne! superfreundlich, schnell und unkompliziert. das büro in mehreren sprachen flexibel. carlos hat's prima gemacht, kompliment! das auto neu und in einem top-zustand. die rückgabe lief superschnell und der shuttle vom und zum flughafen war schnell, der fahrer ebenfalls superfreundlich. alles in allem mehrfach fünf sterne! 5 2026-01-25 01:27:48.341406+00 de v5.1 A1.01 {} V+ I3 CR-N {Carlos} {"A1.01": "Superfreundlich, schnell und unkompliziert. Das Büro in mehreren Sprachen flexibel. Carlos hat's pri", "O1.01": "Das Auto neu und in einem TOP-Zustand. Die Rückgabe lief superschnell und der Shuttle vom und zum Fl"} {-0.05163585,0.012725124,-0.10714789,-0.031769242,-0.04072058,0.06458039,-0.031352177,0.12160201,-0.10188089,-0.010832866,0.042976655,-0.0070115193,0.004385325,-0.008172713,-0.07187709,-0.033184834,-0.006463846,0.0054596346,-0.055816714,0.021898588,0.029526457,-0.048848167,-0.035274763,0.106186524,-0.020071,-0.030191356,-0.09702671,0.037776932,0.027773473,-0.08467019,-0.053575557,0.069746464,-0.0038015328,0.004456579,0.0036265694,-0.018889984,-0.016766889,0.007437438,0.06559704,-0.045808226,-0.07688504,-0.027237184,-0.04670195,-0.07301325,0.01875872,0.0046771076,-0.030403955,0.058588203,-0.014059243,0.0061050155,-0.11557232,-0.035879917,0.073072344,0.0386252,0.048817072,0.055521462,-0.023583665,-0.105116546,0.026496975,-0.022243368,0.032128528,-0.06994473,-0.07756962,0.038985055,-0.019048925,0.023762934,-0.081930526,-0.031800263,-0.0036241387,0.14775445,0.105102,-0.103860736,0.038786694,0.021382058,0.09812952,-0.016434744,-0.072368,-0.0011362749,0.037412208,-0.026161896,0.07015866,-0.087533526,-0.0511097,-0.056778505,0.0040387963,0.0041624536,0.01885697,0.0020102044,-0.033771455,0.041382823,-0.04367123,-0.049503203,-0.10893215,-0.019514842,-0.10062179,0.0061714593,-0.035237357,-0.032932866,-0.0038975114,0.014490841,0.05499189,-0.06338197,0.0682592,0.048387565,0.039521407,-0.017374275,0.0277112,0.022795735,0.036253676,0.0003597021,-0.0127801495,-0.07154473,0.015888182,-0.048344627,-0.06484238,-0.00739945,-0.004769411,-0.023850784,-0.11284864,-0.031452123,0.050098054,0.06855127,-0.023033522,0.024374424,0.03936204,0.0617011,0.015395387,1.3668163e-32,0.008511485,-0.008816058,-0.035946026,-0.020525273,0.021472286,-0.012138972,-0.08221361,0.0415794,0.034704186,0.059637647,0.01006482,0.11665047,-0.023859847,0.0062703304,0.048654232,-0.07220515,-0.04642717,-0.085376106,0.04319542,-0.054412786,0.006301581,0.06482841,-0.051477686,0.035404436,0.02660343,-0.014021577,0.012905971,-0.062048618,-0.026450712,0.08691054,-0.012417736,0.015029274,-0.084217146,0.02411831,-0.029523756,-0.06061565,-0.09952526,-0.028951474,0.009949393,-0.0107890535,0.048642423,-0.021448813,-0.08303445,-0.009084976,-0.018172193,-0.053266805,0.048576515,0.084138185,0.08904609,-0.050813485,-0.012865816,-0.044725355,-0.0027604334,0.0060663787,0.07697359,0.044767484,0.038335063,0.061535545,0.012700121,0.03636835,-0.042976946,0.0113735385,0.035503987,0.029726388,0.0059339274,-0.06099508,-0.035861075,-0.024635449,-0.025012163,-0.0149611235,-0.03765325,-0.025361927,0.100837626,-0.004887121,-0.010725314,0.050059088,0.025271013,0.0142187495,-0.051497772,0.00493544,-0.053320866,0.06698701,0.066825375,-0.0051270584,0.015957816,-0.031654496,-0.031602222,-0.055206552,0.023137085,0.023355063,-0.07554732,-0.03569808,0.0097581,-0.042941455,0.0015176272,-1.3852653e-32,0.019397514,0.022349093,0.05402824,0.017491385,-0.0033821124,0.09769841,-0.09390424,-0.015779778,-0.057565596,-0.040633064,-0.0037313236,0.079270996,0.14023525,-0.002549589,0.041530948,-0.049779963,0.08529589,-0.075146735,0.022744216,-0.02598847,0.09059978,-0.019154577,-0.028772892,0.047972724,0.044473525,0.026566206,0.03515828,0.11294478,-0.0404059,0.077299275,0.06390174,-0.0009395476,-0.018477654,0.041490894,0.01913218,0.041001696,0.05366139,0.12221815,-0.07961866,-0.019647181,-0.041283697,0.04787877,-0.0034992578,0.025335887,0.09874825,-0.082076,-0.09060528,-0.07507197,-0.034273446,-0.069187395,-0.07202914,-0.020891933,0.026100473,-0.011660595,-0.02104555,-0.004022831,0.01640572,-0.06772982,-0.02708122,-0.023848126,0.0685831,0.050388817,-0.019241761,-0.007180949,0.034788072,-0.045200255,-0.12679155,-0.027638538,-0.036182154,-0.021541722,0.038788717,0.009379729,-0.047246087,0.052882057,-0.088352084,0.079350196,0.004698815,0.027195388,-0.031623807,0.03365869,-0.031224914,0.043873865,0.0035830543,0.07437707,-0.029950038,0.020339144,-0.054058976,-0.021597585,0.041838568,-0.015328635,0.029345054,0.04549357,0.021939242,-0.04365372,0.021046255,-5.5039724e-08,-0.0029558798,0.030585224,0.02924188,0.013619516,0.06055449,-0.10524316,-0.0475351,-0.109440394,-0.021761447,-0.0011792528,-0.041614175,-0.07800237,0.036960892,0.042139675,-0.02304645,0.05031763,-0.050344843,0.028038999,-0.022893785,0.0151900565,-0.026003858,-0.062250804,0.04157535,-0.053845733,-0.026820024,-0.010317505,0.009730342,-0.08415222,0.03519059,-0.0040363674,-0.0378607,0.06375084,0.025320726,0.03782159,-0.025063366,-0.0053720977,0.003640518,0.07961109,-0.082709886,0.0032278276,0.11867094,-0.027679453,-0.056273703,-0.0012916289,-0.030423539,-0.03726576,-0.013472823,-0.0042811865,0.08012798,0.06705648,-0.07366778,0.049835697,0.036471616,0.0615183,0.059619017,0.10127043,0.004420863,-0.0028601852,-0.042115796,0.05836326,-0.0032079034,0.06200712,-0.045376107,0.077069275} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:58:03.339466+00 2026-01-25 01:27:51.128661+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 62 google ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE 1 t 65 Fika unknown I lovely place to relax & enjoy a soft drink\n& freshly prepared food to order. Worth the few minutes wait. Always a lovely greeting by lovely staff.\nGames available to play, board, card & computer. Dogs welcome too.\nAn amazing outside area.\nDeserves every success. i lovely place to relax & enjoy a soft drink & freshly prepared food to order. worth the few minutes wait. always a lovely greeting by lovely staff. games available to play, board, card & computer. dogs welcome too. an amazing outside area. deserves every success. 5 2025-03-30 23:35:50.732046+00 en v5.1 O1.03 {} V+ I2 CR-N {} {"A1.01": "Always a lovely greeting by lovely staff.", "J1.01": "Worth the few minutes wait.", "O1.03": "I lovely place to relax & enjoy a soft drink & freshly prepared food to order."} {0.032735072,-3.48134e-05,0.099190086,0.042587038,-0.045743506,0.013067641,0.06647522,-0.11403024,0.017381897,-0.050178584,0.0076105422,-0.042928223,-0.013845638,0.011592736,0.038331077,-0.01765529,0.085963175,-0.123492144,0.040653206,-0.0059839687,-0.07080893,0.033113725,0.04912305,0.046350315,-0.0858003,0.045997955,-0.00054295507,0.075356156,0.027460098,-0.053671267,0.009256478,0.076505534,0.044326115,0.023921119,0.053862024,0.08235696,0.042607762,-0.1384905,0.068423636,0.037965942,0.0007115094,-0.031358737,0.03207595,0.03931156,-0.012466919,0.030089112,-0.074227415,-0.0062888404,0.08391854,0.01789916,-0.029223692,0.025163943,0.03688421,-0.0348907,-0.04327277,0.016282318,-0.037248924,-0.10382348,0.016966652,0.012895745,0.03483229,0.025696587,-0.0013085296,0.085183084,-0.022339175,-0.092103586,-0.10407147,0.04809162,0.008482197,-0.113913454,-0.035954785,0.039171055,0.07222774,-0.0133540835,-0.075952694,-0.082598135,-0.0013022944,-0.07411377,0.0031447506,0.010598731,-0.010790681,-0.038310714,0.011547389,0.05706898,-0.088147216,-0.036297727,0.032101993,-0.005194887,-0.0061424104,-0.06509937,-0.022333011,0.048467856,-0.052931197,-0.015258668,-0.026927667,-0.0010049706,-0.007815541,-0.027537927,-0.0595951,0.05269018,0.0260854,0.1354111,0.036245104,0.0039065476,-0.017747082,0.011333991,-0.14172758,0.10104756,0.025530161,-0.025532188,-0.070744835,0.041572962,-0.033232827,-0.028649341,-0.00075166003,0.044234347,0.034879778,-0.044407368,0.021240959,-0.03119243,0.027228473,0.042098943,-0.058065433,0.00083925005,0.010120166,0.01983015,0.041443575,-1.5503503e-33,0.031220136,-0.012281986,0.035945836,0.079419166,0.04702025,-0.044589166,-0.019858234,-0.023076847,-0.075364344,0.020742834,0.020753045,0.003196393,-0.014360713,0.0029062044,-0.01575857,-0.05203428,0.03274114,-0.0008848673,-0.0013691483,-0.0039390735,-0.06648862,-0.06674349,0.019562071,0.054994024,-0.033196587,0.0148904305,-0.018089,-0.018776342,0.07717318,0.014699913,0.0020790815,-0.031761248,-0.03850352,-0.06293507,-0.030774372,-0.012255941,-0.08479067,-0.05273621,-0.005005111,0.06212353,-0.015701551,0.015946794,0.009420709,0.030666176,-0.0139185535,0.012252758,0.018422654,0.024163084,0.03371308,-0.0392294,-0.113039464,-0.020175131,-0.0115631865,0.089816675,-0.03155279,-0.06756412,-0.015814537,0.016708836,0.03786847,-0.019441335,0.07329518,0.028258817,-0.0333545,-0.080175385,0.015153467,-0.08437446,0.017442496,0.017445317,0.057441115,-0.011005983,0.035032287,0.054775987,0.052865483,0.0143124955,0.0113011,0.050665375,-0.0077105747,-0.0142172305,0.052956223,0.008519151,0.06426699,0.03922597,-0.0813706,0.078867935,0.05271158,0.008783325,0.048088808,-0.124260075,-0.0746902,0.014762581,-0.07785849,0.028587371,0.09924027,-0.037898768,-0.063925005,-5.182147e-34,0.09007535,-0.11504224,-0.0313467,0.0106767295,-0.0027684656,-0.030643849,-0.044312473,0.08507917,-0.015741203,0.09249112,-0.08869233,0.08437571,0.06448939,-0.021324301,-0.06291275,0.03691584,0.08134649,0.06408948,-0.02757082,-0.04070375,-0.03616518,0.0940511,-0.011218126,-0.029295538,-0.0027337212,0.08364591,0.008230864,0.0070755794,-0.095434636,-0.036961447,-0.0386213,-0.05498237,-0.029842462,0.037268475,0.040826023,0.065080374,0.023998009,-0.09284826,-0.032985236,0.06853275,0.01538318,-0.0043912656,-0.037606496,0.041245855,0.04468614,0.0007064026,-0.041074246,-0.0653287,-0.050540317,-0.0049663,-0.0012474527,0.006569819,-0.043110657,-0.06848698,0.016206497,0.05277622,-0.04620588,-0.0060956012,0.003795602,-0.07555568,-0.09076028,0.09366579,-0.02609339,0.057178322,0.06723672,-0.03723445,0.0062336605,-0.011404932,-0.009627581,-0.070408575,-0.079068914,0.0066977018,-0.08100886,0.014078709,-0.0077777277,0.035246044,0.1106246,-0.07362385,-0.014539811,0.021256367,-0.0034633197,0.03137916,-0.0002290395,-0.005496771,0.036523715,-0.038599305,0.024337793,-0.016283767,-0.012913498,0.0060286582,0.064026624,0.113699935,-0.048038714,-0.030375058,0.010629949,-3.4620733e-08,0.011634788,-0.05077444,-0.041844297,0.04277189,0.03141319,-0.120550245,0.04069863,-0.04509997,-0.020657497,0.037237838,0.011343911,0.013576564,-0.046738055,-0.023720419,0.061401337,0.04986611,0.037189722,0.06785311,-0.03955165,0.006669985,0.06436527,0.057031564,0.02724004,0.010803958,-0.038937498,-0.027060453,0.032730985,-0.060263086,0.022584947,-0.0587513,0.0079758,0.08056364,-0.018096084,0.0090395,0.024174945,-0.0951511,-0.016199164,-0.081510894,-0.062421005,-0.024758762,-0.09075046,-0.059403457,-0.097579814,-0.029170817,-0.034259472,0.023646588,0.031703953,0.013269319,-0.028312698,0.040437743,-0.14436495,-0.0045805564,0.09388178,0.015470977,0.012928312,0.011811037,-0.06518396,-0.06997036,0.0918298,0.030549131,0.02659308,0.09892956,-0.059996657,0.0064909193} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:53:21.372249+00 2026-01-24 23:35:51.012806+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 138 google ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB 1 t 141 R. Fleitas Peluqueros unknown Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!! sin duda la mejor barbería de las palmas. llevo arreglandome la barba unos 3 años y rafael tiene unas manos de oro. muy profesional y un trato exquisito. comentar que usa unos productos de primera categoría. un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. un saludo rafa!!! 5 2020-01-27 01:15:46.601001+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.913438+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 139 google ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB 1 t 142 R. Fleitas Peluqueros unknown El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael el trato de rafael es inmejorable siempre con una sonrisa y buena predisposición. muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. he ido a muchas barberías pero como esta ninguna. gracias rafael 5 2026-01-25 01:15:46.601007+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.932916+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 140 google ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB 1 t 143 R. Fleitas Peluqueros unknown Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP peluquería de 10: me corté el pelo con raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. y el precio desde luego es bajo por tan buen servicio. top 5 2023-01-26 01:15:46.601057+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.946509+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 141 google ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE 1 t 144 R. Fleitas Peluqueros unknown Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️ fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️ 5 2026-01-25 01:15:46.601069+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.954921+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 142 google Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB 1 t 145 R. Fleitas Peluqueros unknown El mejor servicio, el mejor trato y profesionalidad. el mejor servicio, el mejor trato y profesionalidad. 5 2025-11-26 01:15:46.601134+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.963794+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 143 google ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE 1 t 146 R. Fleitas Peluqueros unknown Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, "preciso y bonito". Recordarles. ⭐️⭐️⭐️⭐️⭐️ desde la primera vez que vine a r. feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de rafa. me ha entregado un servicio y atención excepcional, digno de volver. desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. he aprendido mucho sentado en una silla junto a rafa y he disfrutado de muchos momentos alegres. y le sumas el resultado del arte que tiene rafa ñara dejarte estilisticamente el pelo, como dije antes, "preciso y bonito". recordarles. ⭐️⭐️⭐️⭐️⭐️ 5 2023-01-26 01:15:46.60116+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.975025+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 144 google ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE 1 t 147 R. Fleitas Peluqueros unknown La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado. la verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. están cualificados, responden cualquier duda y te tratan de forma muy profesional. además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. volveré encantado. 5 2023-01-26 01:15:46.601171+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.008257+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 180 google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB 1 t 183 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Where should I start. There is one mini bus that will take you from and to the airport. If they knew what to expect from their booking times they should have more cars to pick up people. We waited 50min for one. As we arrived the queues weren't that bad but the time they took with one person took forever. As it was our turn, we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. We got a car and as we were driving down to Puerto rico the car electrics went down twice on the motorway. We recorded a video and safely got to the place but called them numerous times as wanted to swap the car. They do not provide replacement services so we had to guess....drive back!!!! Yes, we drove a faulty car back to be able to get a new one. They seemed to know nothing about it despite my 100calls about the issue. Anyway....avoid this place! Although they are very polite and helpful at the pick up point this isnt enough to recommend them. where should i start. there is one mini bus that will take you from and to the airport. if they knew what to expect from their booking times they should have more cars to pick up people. we waited 50min for one. as we arrived the queues weren't that bad but the time they took with one person took forever. as it was our turn, we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with revolut they refused. we always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. we got a car and as we were driving down to puerto rico the car electrics went down twice on the motorway. we recorded a video and safely got to the place but called them numerous times as wanted to swap the car. they do not provide replacement services so we had to guess....drive back!!!! yes, we drove a faulty car back to be able to get a new one. they seemed to know nothing about it despite my 100calls about the issue. anyway....avoid this place! although they are very polite and helpful at the pick up point this isnt enough to recommend them. 1 2025-12-26 01:27:48.340081+00 en v5.1 A4.01 {J1.01} V- I2 CR-N {} {"A4.01": "There is one mini bus that will take you from and to the airport. If they knew what to expect from t", "O1.01": "We got a car and as we were driving down to Puerto rico the car electrics went down twice on the mot", "P1.01": "Although they are very polite and helpful at the pick up point this isnt enough to recommend them.", "R1.01": "we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid wi"} {0.008341007,0.06078445,0.021062184,0.0070905555,-0.01403049,0.0053376807,0.11246579,0.0014164854,0.02354617,-0.028259784,0.05983706,0.026683588,0.019688424,-0.025732266,-0.0040306025,-0.033715893,0.07670445,-0.04450173,-0.029169343,0.123226635,-0.056341846,-0.06612436,-0.07322712,0.010321593,-0.00819768,0.042933002,0.016602486,0.07212667,-0.064232506,-0.07705357,0.08612788,0.03815297,-0.0045146495,-0.039266378,0.04192753,-0.009327136,0.018485915,-0.06385908,0.0075706835,-0.05528874,0.04378701,-0.004699425,0.026372759,0.020340322,0.02469986,0.021586059,0.057895668,0.03264075,0.060975134,-0.03729758,0.025974402,-0.05062243,0.028159704,-0.029389715,-0.1202282,-0.05610676,0.07713093,-0.038317047,0.025155472,-0.04011263,0.025844933,-0.008260727,0.047296584,0.037408493,-0.11919049,0.039303523,-0.025814155,0.03975185,0.070268944,-0.001511332,0.039959565,-0.026406849,0.025856258,0.0707695,0.015392863,0.052912064,-0.026454007,0.010019862,0.060878064,-0.039951053,-0.013009785,-0.090951435,-0.02561867,0.05140127,0.01428295,0.018588783,-0.04552685,0.045490794,-0.016048314,-0.05591327,0.009409868,0.091085605,0.083590806,-0.0400478,0.07791494,0.013332931,-0.013093327,-0.07106734,-0.019115733,0.020577352,0.103051774,0.06540673,0.011415463,-0.027372034,0.025198994,0.035329398,-0.017491246,-0.00013222267,0.05019025,-0.000410177,-0.007056161,-0.018867413,-0.0021523943,0.026253745,-0.05877063,0.06313785,-0.03839433,0.06576254,-0.011518074,-0.037993185,-0.015768578,0.041130785,-0.048656262,-0.022379471,0.03909722,0.09949198,0.06912906,1.9944139e-33,-0.06745352,0.07788261,0.0003000289,-0.03698737,0.03815729,-0.02523299,-0.02436616,0.045064066,-0.02911898,0.03422017,-0.03234078,-0.06335866,0.11296788,-0.055155203,-0.06608527,-0.009774287,-0.052983962,-0.06842367,-0.026557893,0.010082845,-0.014555636,-0.050499354,0.046029832,-0.0069026914,0.0129863145,-0.02275514,-0.08291784,-0.032754723,0.1518224,-0.02303652,-0.023664372,0.014903142,0.07808079,0.04501283,-0.027991265,-0.0035298748,-0.015768731,0.032425944,-0.13809997,-0.07561145,-0.087064385,-0.004728699,-0.09038788,0.01897117,0.02713338,0.049305372,0.06566476,-0.06642063,-0.112274535,0.034744434,-0.12974532,0.015290016,-0.043224346,0.045479733,-0.079209894,-0.017425468,0.02812117,0.09818866,0.034065,-0.087359905,0.057159577,-0.0038970292,-0.02533216,0.018478138,0.008385311,-0.024222476,0.052584823,-0.0024633505,0.0057903337,-0.04553704,0.07388213,0.04818075,0.024086853,0.028783986,0.044072375,0.016132819,-0.08794195,-0.004883326,-0.0032130652,-0.030733598,-0.060391538,-0.027320722,-0.039186288,0.010436943,0.084871635,0.015208417,0.018257003,-0.0320966,0.0017527924,0.068669714,-0.108324,0.080080844,-0.013622727,0.07181607,0.073994875,-3.9269843e-33,-0.015194829,-0.038852513,0.025895203,-0.005765711,-0.020629786,-0.06941778,-0.074881546,-0.005609956,0.09576364,-0.009288618,-0.091856025,0.004479238,0.061927523,-0.018772272,0.002192345,-0.082553856,0.048315853,-0.040916573,0.022029134,-0.0014744013,0.026674034,0.048368786,0.02738276,0.071867116,-0.009800344,0.12460755,0.043825045,-0.029513184,0.013619147,-0.07900519,-0.022480877,-0.07250501,0.053410314,0.029289976,-0.059722897,-0.01699203,-0.0058601913,0.090835236,-0.078122385,-0.012727282,-0.004347012,0.028171042,-0.04858824,-0.057440888,-0.01419849,-0.08483012,0.06548234,-0.04387593,-0.009762786,-0.047652215,-0.010774961,-0.053032298,0.008868887,0.09067585,-0.016962932,-0.0012986152,0.08796465,0.016372323,0.015469449,0.00038359067,-0.0079729855,-0.03801818,0.030368034,0.042574156,0.0340116,-0.02633128,0.01952839,-0.039283123,0.08406184,0.001912192,-0.020728668,0.04687104,-0.019889157,0.013198477,0.069493055,0.028522842,0.0012377104,-0.026054515,-0.03697361,-0.10936995,0.06550834,-0.022576267,0.020126222,0.020730268,0.048451487,0.021077417,0.056943383,-0.09583833,0.017687596,0.03828524,-0.006877476,0.04127309,0.0006501701,0.060625866,-0.061912082,-5.8533303e-08,0.0037399405,0.006097537,0.061399743,-0.0074326736,-0.032187454,-0.11804708,-0.045741543,0.044571955,-0.14437625,-0.041391015,0.011173106,0.015782278,0.01002876,-0.019490857,-0.016970282,-0.04037688,0.06511331,0.010644724,-0.07024722,0.042458273,-0.044588488,0.053959753,-0.0642996,-0.06568066,-0.0067111766,-0.01352307,0.047164813,-0.047794998,0.049462795,-0.09034605,-0.14437243,-0.0067019546,0.03692052,-0.015150141,-0.06637348,-0.10114358,0.02674662,-0.04667839,0.024584997,-0.0155946575,-0.027773282,-0.026348386,-0.028244544,-0.036975536,-0.0031868147,-0.06413615,-0.10187103,-0.012110908,0.030072086,-0.009645448,-0.033244576,-0.123377755,0.029624557,0.09924414,0.024101488,-0.04988692,-0.016912455,0.037976887,-0.036132216,0.08824025,-0.0290716,0.0074947067,-0.029183406,0.025505176} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:37:51.676542+00 2026-01-25 01:27:49.921845+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 81 google ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB 1 t 84 Fika unknown Very good place I would recommend to anyone very good place i would recommend to anyone 5 2025-03-30 23:35:50.732259+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Very good place I would recommend to anyone"} {0.0061439504,-0.016381558,0.0010405927,0.0060425964,-0.0790609,0.042687446,0.010773205,-0.042982887,-0.05234245,-0.03653834,0.031111814,0.07503993,-0.015651936,0.017916007,0.02646025,-0.01323499,0.115468286,-0.10308631,0.07384499,-0.11743809,-0.058297515,0.008224251,0.11179309,-0.045853972,-0.091798395,-0.006990273,-0.03985081,0.04549076,0.033509098,0.03795882,0.023894522,0.0063295956,-0.015827991,0.0042077233,0.014102265,0.07210819,0.025247736,-0.0500245,0.020911014,0.061336886,-0.047070093,0.05796675,0.06362575,-0.05812164,-0.013423495,0.022064328,0.022328306,-0.053069945,0.14333959,-0.01495849,0.05155278,-0.03651267,0.058335196,-0.016579805,-0.068500526,-0.00844132,-0.09056789,-0.060912404,0.014212964,-0.090158336,0.11651081,0.006596899,-0.07433664,-0.011736385,0.09510777,-0.030024514,-0.00093060016,0.0866599,0.03532235,-0.12128428,-0.048747335,-0.056790512,0.033940457,0.025821766,0.016825164,-0.0134653635,0.022744946,-0.012756521,-0.030993989,-0.026295977,0.029792638,0.0061244112,0.06398659,0.013107659,-0.043379657,-0.0382941,0.03471947,-0.081159696,-0.00049003854,0.016157797,0.06219921,0.11377381,-0.060870856,-0.0010622104,-0.011043854,0.07467969,-0.040099964,-0.021611316,-0.037113555,0.09144131,0.0126169855,0.04507113,-0.012801061,0.0008919539,-0.01739557,0.012374027,-0.023743,0.11206387,-0.014671658,0.028111441,-0.05441857,0.059148323,0.01658158,0.042991467,-0.021584976,0.017230522,0.047497615,-0.039340332,0.038445044,-0.054040022,-0.024467347,0.029494746,0.026172131,0.0027910548,0.0058486206,-0.029690413,-0.060357332,-4.4879665e-33,-0.0054025315,0.06359203,-0.0025510609,-0.00229551,0.062015444,0.026995732,-0.04312643,0.022108406,-0.05009534,0.0108357165,0.04207359,-0.034765944,-0.019074552,-0.007391191,0.015329576,0.001958384,0.017996833,-0.021767078,-0.09563141,-0.00058191293,-0.036131896,0.010456194,-0.036014013,0.009804545,-0.017489718,-0.008059211,0.0077298195,0.030952841,0.13053323,0.019060887,-0.05905182,0.012049949,-0.022457218,-0.08662774,0.0713016,0.06973353,-0.031386226,0.01902062,-0.010141105,-0.026005892,-0.0042934995,0.04334118,-0.009608802,0.071206145,0.015292689,0.03798313,0.008723305,-0.010256786,0.05257936,0.006282155,-0.079109475,-0.03832652,-0.06924014,0.050989583,-0.012764245,0.03262535,-0.023041371,0.032533713,0.06460928,-0.028091548,0.046176627,0.047275037,-0.06116497,-0.06313702,-0.10962818,-0.1110584,0.0009105374,-0.0062884013,0.06077332,0.00021706506,-0.025341272,0.028959332,0.13271937,0.049421825,-0.035746872,0.048333563,-0.15867661,0.04877137,0.007610312,0.06335455,0.066663265,0.019700008,-0.030600078,0.061205547,0.12545618,-0.03494887,0.026463827,-0.09481019,-0.050798982,-0.015359861,-0.0516804,0.012299742,0.05580563,-0.05061838,-0.03624581,1.8223487e-33,0.056528315,-0.023236051,0.060169373,0.099982634,-0.044998787,0.025756765,-0.10899111,-0.0022825955,0.048487075,0.074081354,-0.0930987,0.031981934,0.07941703,0.0582139,0.023697378,0.018222753,0.059801627,-0.012301152,-0.058654685,-0.07811843,-0.020702861,0.057531018,-0.011436833,0.024575554,-0.013850381,0.009939151,-0.06175334,-0.00017313298,-0.08612227,-0.0076636467,-0.07079852,-0.01523332,-0.044664666,0.09607325,-0.034674723,0.08188027,-0.00097573164,-0.003880405,-0.01693318,0.045386955,0.06756777,0.009979844,-0.048334237,-0.009808464,-0.010643918,0.00021244868,-0.02346938,-0.008671056,0.046326604,-0.02854597,-0.03187021,0.036738534,-0.011827038,-0.071419924,-0.040163286,0.00018242089,0.015144155,-0.0015693888,-0.012197849,-0.034986395,-0.05492075,0.07692231,-0.058986057,0.035344053,0.05511732,-0.015805513,-0.049148213,-0.020433603,-0.052245054,0.017074807,-0.04499549,-0.026237456,0.0024429986,0.055355262,-0.057874765,0.002450186,0.15565753,-0.00617983,-0.024987377,0.026106166,0.026885027,-0.046678856,-0.08128951,-0.022205537,0.053901456,-0.038917072,0.03403038,-0.028301017,-0.029663939,0.020022988,-0.05417263,0.0430609,-0.08237495,-0.09977559,0.013112294,-1.8875221e-08,0.019231519,0.042273067,0.038745347,0.05309987,-0.10469912,-0.09825111,0.08247894,-0.011764758,0.008621135,0.06793001,0.009556562,0.0063096043,-0.050123427,-0.04463726,-0.050070472,-0.048517663,0.08220153,0.03297367,-0.07645414,0.018468967,0.032959968,0.09945202,-0.0022631248,0.014686302,-0.03172118,0.06558718,0.08554593,-0.018614013,-0.027563911,-0.06746582,-0.026707094,0.045754917,0.047235608,-0.03539423,0.0035088607,-0.029669257,-0.00790081,-0.09431269,-0.0014016273,-0.07138925,-0.060870938,-0.07033826,0.02997156,0.03868557,0.038836446,0.027696159,0.09358803,0.029110193,-0.05223361,0.04573927,-0.06079011,-0.051686227,-0.010160103,0.028703595,-0.032516684,0.0046330635,-0.038406793,-0.057603896,-0.06521784,0.067278236,-0.027956458,0.037702084,-0.073793456,0.03026156} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:56:19.926666+00 2026-01-24 23:35:51.080024+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 79 google ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB 1 t 82 Fika unknown I love their waffles 😍😍😍 i love their waffles 😍😍😍 5 2025-03-30 23:35:50.732256+00 en v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "I love their waffles 😍😍😍"} {-0.08613952,0.0041396376,0.06734369,-0.017839955,-0.020474924,-0.031411525,0.09565112,-0.07059374,0.07485575,0.013552347,0.0021126415,-0.05910935,0.049653005,-0.10397829,-0.060962517,-0.022692738,0.055341218,-0.04161171,0.013335318,-0.011390058,-0.08376701,-0.013177135,0.06048569,0.03539338,-0.02714773,0.053509515,0.01596118,0.0010318807,-0.011023921,-0.03236634,0.010021831,0.063197106,-0.011563729,-0.003629778,0.016261088,-0.016577285,0.11233287,-0.011692551,0.0034036997,0.059658285,-0.015704561,0.010072263,0.055060692,-0.053736806,-0.07789903,-0.032793835,-0.040043652,0.006316035,0.043215755,0.0779474,-0.017418077,-0.010354577,0.08668914,-0.025571737,0.04435646,0.04333251,-0.018357167,-0.041574173,-0.002429752,-0.02530795,-0.018060219,0.010650827,0.025255613,-0.04333606,0.01662241,-0.043002874,-0.11706173,0.040897112,-0.0040879585,-0.016468318,-0.09829059,0.10647144,-0.013034461,0.027637044,-0.0063060853,0.095456794,0.021195814,-0.025981983,-0.03765806,0.014005212,-0.010900903,-0.05975893,0.061182175,-0.006403423,0.00798359,-0.085418224,-0.020769581,-0.030155066,0.06038115,-0.031698026,-0.0064292355,-0.005049629,-0.024477841,0.012997082,0.029159933,-0.0807026,0.012398222,-0.011557965,-0.07406135,0.08539122,-0.044552583,0.020008633,-0.0045488933,-0.047828414,-0.044839345,0.003583804,-0.02223419,0.07550019,0.044455502,-0.075246006,0.06762473,-0.033206534,0.0077487626,-0.040861152,-0.01701947,-0.056187954,0.03638102,0.0048696073,-0.031751893,-0.036290385,0.007843031,0.09251714,-0.06652776,-0.03739255,-0.017914603,-0.044149544,-0.035367038,-3.1065476e-33,-0.09889277,0.1151099,-0.030241927,-0.028868053,0.104456045,-0.01934367,-0.015787233,0.03915235,0.020271795,-0.021391233,-0.056623843,0.04972393,-0.03646887,-0.069068246,-0.07132938,-0.057052612,-0.04176257,-0.036301408,7.829471e-05,0.112347096,-0.039305527,0.036583867,0.04981329,0.0588315,-0.033404157,-0.023276573,-0.03148932,-0.024528714,-0.08588281,0.07310141,0.08365019,-0.04202158,-0.020551557,-0.025181301,-0.0829308,-0.01668485,-0.035489567,-0.0565441,0.009994185,0.05393774,0.06999589,-0.05451853,0.012095098,0.10858153,-0.00295329,0.038151406,-0.029703883,0.07915655,0.10100048,0.00788165,0.013690577,0.032248393,-0.029313266,0.062474687,0.031536825,-0.038361136,-0.00090057566,-0.042589277,0.037433773,0.005747701,-0.0336017,0.11083382,-0.044079382,-0.04055294,-0.05529832,0.012222295,0.02794354,0.020577166,0.027103411,0.03808395,0.0015901561,-0.030119099,0.0070950896,0.0074541736,0.0077953283,-0.09542393,0.036099367,-0.030558847,0.019398427,0.022867803,0.124952406,-0.028605273,-0.008141698,-0.083148,-0.044036042,0.015575439,-0.042309593,-0.02951933,0.017080534,0.013765142,-0.09661795,-0.030620605,0.14948626,0.00039053164,-0.088366374,2.6234103e-33,0.089762546,0.005861899,-0.029637292,0.012078403,-0.045411967,0.01578446,-0.049378168,0.030477874,-0.042841606,0.0029011518,0.028729238,-0.031530082,-0.06247118,0.061754525,-0.000117612726,0.047969952,0.12248754,0.029313996,0.049817882,-0.07590287,-0.049119864,-0.043046437,-0.05295649,0.097353876,-0.0201916,0.040750492,0.09657451,0.0017235702,0.007837862,-0.030402875,-0.054690607,-0.067956634,-0.022344831,-0.0077126855,0.07642623,0.010333566,-0.14554389,0.013979179,-0.059063166,0.02468565,-0.044227112,-0.01522664,0.032045674,0.07699692,-0.02805443,0.056367822,0.030197734,-0.01537972,-0.11266676,0.0030556284,0.013326416,-0.053795166,0.02576051,-0.031652216,-0.07727666,0.090495735,0.012192349,0.046791397,-0.041935455,-0.017913694,-0.056300968,0.06641636,0.039086465,0.110148594,0.06709416,-0.024859766,-0.0026804742,-0.08767287,0.011639625,-0.057050243,-0.07462393,0.005889871,-0.010370863,0.03207538,0.017050529,0.005936894,0.044856824,-0.00929096,-0.035135508,-0.017777992,-0.00582285,0.012204361,-0.012219771,0.051434483,0.06717775,0.074880436,0.015899587,0.022428537,0.011363204,0.0950243,0.023716146,0.06167129,0.011476603,-0.036198128,0.079021536,-1.6770386e-08,0.0647354,-0.0037688254,0.015894208,-0.01598978,0.029811503,-0.045059554,-0.08700486,-0.057690397,-0.055155516,0.062349427,0.069802366,0.06633661,-0.07434068,0.06527875,0.056841616,0.04632948,0.043092545,0.026937062,-0.012489632,-0.010324122,-0.04286018,0.03272068,0.0573112,0.089719735,0.019227292,-0.05013054,-0.016862426,-0.05582644,0.029164232,-0.020327955,0.0040712957,0.041272283,-0.065899104,0.04494392,0.023246964,-0.0038933347,-0.011016805,-0.022332089,0.021724084,-0.041233577,-0.09928463,-0.008054992,-0.020825038,-0.0709339,-0.07202199,-0.06735254,0.008792104,0.068231106,-0.01376007,0.083363496,0.014032662,0.05053656,0.03352499,0.14164124,-0.03657678,0.0024147902,0.018728225,-0.05728267,0.019076413,-0.0022908938,0.04187786,0.122118354,0.046302162,-0.09135969} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:56:10.786463+00 2026-01-24 23:35:51.071869+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 76 google ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB 1 t 79 Fika unknown Amazing place for activities after school or on weekends. amazing place for activities after school or on weekends. 5 2025-02-28 23:35:50.73225+00 en v5.1 E1.01 {} V+ I3 CR-N {} {"E1.01": "Amazing place for activities after school or on weekends."} {0.056526598,-0.023935955,0.068421274,0.057230555,-0.062473923,0.014912947,-0.0008493938,-0.044376593,-0.017645141,0.031345814,0.077898115,0.04711263,-0.0027161425,0.08562005,0.06609179,-0.04309187,0.12210251,-0.08044388,0.08049989,-0.14878748,0.018660257,-0.005804051,0.033238973,0.050930366,-0.036599416,0.10203084,-0.032740574,0.0007019736,0.015765201,-0.04480171,0.004409892,0.042779814,0.00086124864,-0.0003081073,0.029820085,0.15424986,0.05412214,-0.06654819,-3.1833195e-05,0.008586093,-0.067930795,0.053956542,0.021672722,-0.0051843794,-0.02457455,-0.04617368,0.022285061,-0.07631672,0.13012993,0.01092642,0.11048501,-0.018220754,0.012547308,-0.026554445,-0.030594664,0.02781967,-0.11551273,-0.10045868,0.062043134,-0.07059947,0.04789763,0.061923184,-0.017120639,0.02253213,-0.042043068,-0.03523967,-0.108589,0.08515443,0.05239304,-0.06681633,-0.03864035,0.003088598,0.0039891843,-0.013489636,0.00432884,0.03165236,-0.01957913,-0.015205023,0.006578309,0.029404571,0.025241787,-0.048944913,0.026712578,0.01689242,-0.014442968,-0.059072796,-0.044647794,0.0045034965,0.051724955,-0.037037533,0.002531581,0.019727476,-0.100958034,-0.014041865,-0.042043783,-0.025169456,-0.074164554,-0.010516747,0.002980249,0.058392283,-0.016864685,0.064823836,0.0019458212,0.0011299498,-0.04802772,-0.014333136,0.017369524,0.035481986,0.026697649,-0.010188219,-0.017126504,-0.0057518748,-0.0012369266,-0.0057962644,0.007741955,0.07746714,0.09845435,-0.015911361,-0.05045237,0.007163912,0.0475238,0.056344904,0.03204557,0.003953808,-0.03623823,0.0030669142,-0.04020353,-2.4001736e-33,0.015054503,-0.021082293,0.073903024,0.030098945,0.08596975,-0.008842109,-0.019578366,-0.04346411,-0.044034097,0.0065387455,0.059332475,-0.00907683,0.022455974,-0.022825444,0.09561413,-0.03263869,-0.036114737,0.030472625,-0.054212317,-0.0010878479,-0.037968393,-0.087613784,0.0076917177,-0.006639608,-0.010191005,0.0011831662,0.05001745,0.011299775,0.09407325,0.008104985,-0.019651344,-0.07101036,-0.047332145,-0.0017886081,0.04388414,0.040225673,-0.0051308484,-0.04070842,0.021233737,-0.0045588813,0.068748824,-0.036940567,-0.034811594,0.03508864,0.06797194,0.0677314,0.06507179,-0.027749727,0.09254593,-0.03150897,-0.048319116,0.0002992031,-0.06743518,-0.056801226,-0.028643372,0.057613954,0.0032036426,0.030560719,0.07354821,-0.02517658,0.03384258,0.06881289,-0.048223168,-0.096155316,-0.031919412,-0.020788545,0.072763726,0.019521171,0.084507324,-0.0118239615,0.036806613,0.022037242,0.060814362,-0.010175137,0.026364027,0.018839657,-0.106549986,-0.024510114,-0.04840678,0.08519847,0.075188994,-0.0605432,-0.020305635,0.01370935,0.08202952,-0.043370824,0.046698987,-0.142409,-0.12055187,-0.049185757,-0.046392243,0.0025504988,0.021428721,0.0114289615,-0.021365883,4.2561216e-34,0.09305419,-0.11753374,0.021045582,-0.010402974,-0.009602603,-0.024479857,-0.056861214,0.0014356051,-0.02665429,0.0340223,-0.0888537,0.036772236,0.035617556,-0.0068752826,0.035505228,0.009636226,0.06698838,0.06178851,-0.057868365,0.0054656765,-0.019986395,0.051975828,-0.01752775,-0.01298653,-0.0023433387,0.045638956,-0.11816283,-0.0176368,-0.044285994,0.0786006,-0.06818499,-0.02421078,0.0064951675,0.034303993,-0.019369204,0.07723955,-0.058948915,0.000262555,-0.05321236,0.02347653,0.09577926,-0.06357654,0.0009054617,0.07114718,0.026514716,0.055506214,-0.088281915,0.049458932,-0.060855307,-0.052045006,-0.039566305,0.018297056,-0.07788866,-0.053093545,0.10237205,0.020456448,0.00792079,-0.016107354,-0.068927296,-0.025315624,-0.0080466075,0.019923897,-0.08331852,0.10440026,0.061490417,-0.028301978,-0.05960139,-0.016796762,-0.12639527,-0.0038896743,-0.052501168,0.007964257,-0.02595003,0.0023597525,-0.090109706,0.026934162,0.12606879,0.005048023,0.016340854,0.061869975,-0.021422895,-0.012493506,-0.045981545,-0.044918787,0.0023164246,0.017693156,-0.029870195,0.008477056,0.006157456,0.042675234,0.022987515,0.06538462,-0.12062249,-0.015084598,-0.013715051,-1.8133182e-08,0.02406665,0.021869216,-0.03347344,0.019333499,-0.03349743,-0.115299724,0.0833623,0.026565863,0.04385216,0.052472077,0.01349533,-0.09004219,0.030464739,-0.0017228395,0.0048125666,0.0010379947,0.06785494,0.046823036,0.012364696,0.05137409,0.0070198034,-0.0105603505,-0.0019804223,-0.0016951361,-0.076858394,0.011580598,0.00993272,-0.039588936,0.048601363,-0.0026392671,-0.006611275,-0.007076725,0.01325262,-0.020969803,-0.0038234177,-0.089256056,-0.030135695,-0.06074038,-0.060893275,-0.008356526,-0.05689404,-0.10257716,0.010894356,-0.028468203,0.0145653095,0.10462713,0.036643595,-0.010277925,0.029470546,0.031441975,-0.11741219,-0.020187126,0.021088159,-0.05752057,0.0445582,0.022604177,-0.033261467,-0.044566613,-0.029982306,0.03952236,0.048837807,0.006028189,-0.083315365,0.058710165} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:55:45.28567+00 2026-01-24 23:35:51.063461+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 183 google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB 1 t 186 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Much more to pay on arrival, only credit card accepted and not very helpful.\n\nPick up from airport was bad, vague instructions and phone was computer voice. Ended up walking 20min to the place which was all the way in the back of a parking lot further away.\n\nAbout the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance.\n\nWhen asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough.\nAsked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.\n\nThe car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast. much more to pay on arrival, only credit card accepted and not very helpful. pick up from airport was bad, vague instructions and phone was computer voice. ended up walking 20min to the place which was all the way in the back of a parking lot further away. about the rental. i rented via booking.com. turned on the booking.com insurance and when i arrived at the place to pick up the car it took forever. then they told me that i have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. i choose the 1200€ downpayment, handit over my revolut credit card. but this wasnt accepted so i was forced to pay the 150€ extra insurance. when asking if i can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough. asked if i could cancel the booking and make a new one and they werent helpful just told me its on me if i want to do that and i had to figure out with booking.com about the payment and getting money back. the car was good and it was brand new. make sure you read all the thing you need before arriving. return was very quick and easy and shuttle back to airport was fast. 2 2025-10-27 01:27:48.340097+00 en v5.1 P1.01 {} V- I2 CR-N {} {"A1.04": "Pick up from airport was bad, vague instructions and phone was computer voice. Ended up walking 20mi", "O1.01": "The car was good and it was brand new. Make sure you read all the thing you need before arriving. Re", "P1.01": "Much more to pay on arrival, only credit card accepted and not very helpful.", "P1.02": "When asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site", "V1.03": "About the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived a"} {0.029032877,0.079469524,-0.01115055,0.00041726546,0.0095986035,0.021918446,0.07524258,0.0443568,0.07134046,-0.0031269256,0.08290613,0.0034532775,0.055143595,-0.00050445687,0.008323134,-0.03717887,0.014085337,-0.08067856,-0.04486001,0.08631209,-0.083343,-0.018588128,-0.06651482,8.926958e-05,0.056448754,0.0004964655,0.041462746,0.06895759,0.031153759,0.0028190522,0.026811594,0.056213923,0.037662756,-0.06489339,-0.030426797,-0.0522697,-0.011885011,-0.10119995,-0.039990783,-0.004163944,0.019504335,0.0391162,0.005773462,0.04663204,0.052760236,0.0019777187,0.060596578,0.083369315,0.011335348,0.04061981,0.06444672,0.06053955,-0.06786741,-0.102539234,-0.11939973,-0.026801247,0.054759704,-0.0060387724,-0.04354834,-0.02437174,0.059284043,0.011874942,-0.021041721,0.033651914,-0.061302856,-0.035647705,-0.043381233,0.0032778326,0.04052413,0.03297082,-0.012701147,-0.03982723,0.027950482,0.036635205,0.046812963,0.01383287,-0.022856161,0.036722396,-0.018232157,-0.040125754,0.03697833,-0.011537511,0.021620365,0.027957223,0.032835733,-0.072493725,-0.023393586,0.017181799,-0.009026234,-0.09070621,0.05231953,-0.03985407,0.071572095,0.04822019,0.08339193,0.012550022,-0.002468921,-0.024712594,-0.01771512,0.003451379,0.08379386,0.01392636,-0.0011784253,-0.06103716,-0.0236436,0.0266974,0.07330376,0.027522918,0.052463118,-0.032062985,-0.019030929,0.0070850006,0.06409928,-0.011846139,-0.006413849,0.10400151,-0.06372558,0.039361354,0.053757038,-0.035293583,0.037278958,0.00550537,-0.014202765,-0.029324293,0.017589515,-0.02024665,0.11334976,2.0408062e-33,0.020009844,0.054498624,-0.08658986,-0.00023171787,0.026634993,0.0023217297,-0.041896667,0.057348967,-0.025503516,0.0038021386,0.03204575,-0.068795405,0.03783744,-0.043319132,-0.030352086,0.099793285,0.011056197,0.047988884,-0.016558962,0.088265136,0.0080612665,-0.020718621,0.11001579,-0.037475757,0.019811144,0.020489441,-0.02031894,-0.0330574,0.074735865,-0.025363164,-0.033322413,-0.0064124544,0.03225594,0.027155943,-0.015891144,0.06201359,-0.021162651,-0.013782053,-0.071267724,-0.04411225,-0.02087763,0.006913327,-0.12646931,-0.009963511,0.043306828,-0.0116693685,-0.04969072,-0.0661341,-0.08502307,0.030258771,-0.13989474,-0.021430412,-0.05509894,0.076729044,-0.08565801,0.039970588,-0.0026806374,0.1368223,0.028102282,-0.093478754,-0.0053716777,-0.039846055,0.015203233,-0.013468158,-0.030250775,-0.071948834,-0.010189778,-0.082202256,-0.009125496,-0.038702115,-0.012786776,0.06900938,0.051438976,0.0022620787,0.008578013,0.05885797,-0.07681557,-0.035360023,-0.022184595,0.075412,-0.07787526,0.06757517,-0.009995453,-0.06337989,-0.02359447,0.014937616,0.08084249,0.017971104,0.022143835,0.02346454,-0.00967308,0.028672075,-0.010386122,-0.06960173,0.140335,-2.9597326e-33,-0.043598637,-0.07880028,0.024886806,-0.005979961,-0.09010927,0.0064191576,-0.048140656,0.030956758,0.0054439027,-0.0077783465,-0.021294381,0.016028773,0.03746636,-0.09899004,0.02926601,-0.05708169,0.015808173,-0.0365404,0.067862816,0.016150521,0.037965447,0.08379339,0.010897091,0.01964748,-0.005785435,0.07598236,0.03345488,0.03159549,-0.010657108,-0.022846643,-0.055622987,-0.0048065362,-0.01499229,0.06980493,0.0006946745,0.049106847,0.006647853,0.1579672,-0.09950711,-0.014139124,-0.04918373,-0.021931855,-0.025563221,-0.06474537,0.06901033,-0.14102896,0.030150047,-0.06579084,0.10550037,0.011898586,0.082511865,-0.042253513,0.029385522,0.052863505,-0.018476859,-0.017467434,0.055547915,-0.022870267,0.010174632,0.027645292,-0.07381192,0.018404478,-0.008419858,-0.036279853,-0.0062768385,-0.018693218,-0.05679994,0.013295487,0.08130101,-0.021023775,-0.16644864,0.053580098,0.033872306,0.023283636,0.07764303,0.021241434,0.057759862,-0.03838876,-0.04085393,-0.08111489,0.0015020057,-0.04331956,0.0024553346,0.036695603,0.05441352,-0.020683022,-0.018181384,-0.07965475,-0.0107712345,0.010205448,-0.01718325,0.019772999,-0.02261843,-0.049354885,-0.02954108,-5.4071776e-08,-0.06550933,0.060299136,0.050360534,-0.008945269,0.02880968,-0.09906352,-0.04621248,0.10957676,-0.06599792,-0.089102276,-0.047555685,-0.008438131,0.030792417,-0.027996097,-0.07384289,-0.030114558,0.020619577,-0.019524693,-0.013913562,0.024332475,0.031134253,-0.0026356038,-0.06747996,-0.034268066,-0.018938271,0.007832515,-0.03197172,0.031586953,0.033066507,-0.08282103,-0.075099446,-0.008719026,0.055286843,0.033357788,-0.034652833,-0.13318384,0.04844762,0.0015792962,0.008127366,-7.543892e-05,0.050636612,-0.016036445,0.009833651,-0.028705318,-0.030521479,-0.020259384,-0.030069737,-0.057230026,0.06118197,-0.016140804,-0.008382096,-0.048422813,0.080165915,0.08454036,0.014824609,-0.025981402,0.023709979,0.023766853,0.0010332869,0.15243092,-0.10451788,-0.06951334,-0.022728575,-0.039396297} 0.94 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:38:40.234166+00 2026-01-25 01:27:49.936318+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 80 google ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB 1 t 83 Fika unknown My new favourite place in Boston my new favourite place in boston 5 2025-03-30 23:35:50.732257+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "My new favourite place in Boston"} {0.054183267,-0.059381112,0.08803602,-0.022803238,0.009983917,0.019385235,0.013615873,-0.044106554,0.015220049,0.0035849814,-0.006973703,-0.0068102973,-0.046044663,-0.015903786,-0.031919338,0.015516666,0.10623756,-0.030516248,0.011826962,0.0051821503,-0.023071686,0.029552026,-0.055448566,0.054223437,0.012603697,0.082131386,0.06437874,0.1459603,0.0077165924,-0.04357748,-0.0029576137,-0.0052544605,0.0044831466,0.05758285,0.04722667,0.015380604,0.00747916,-0.043319747,0.13056257,0.03851599,0.026845437,-0.013238821,0.031482115,0.06167871,-0.034658715,0.040447097,-0.0068010264,-0.018875431,0.1386712,0.03978071,0.017975902,-0.048324697,-0.03450556,-0.03497096,-0.02212934,-0.009633615,-0.041178945,0.013445205,-0.011974232,-0.054247696,0.06678232,-0.02481898,-0.013379338,0.025675582,0.0103228185,-0.038138032,-0.14660755,0.07637792,-0.009653871,-0.025910461,-0.0006459012,0.05351897,0.0738033,0.036580358,0.0062523973,0.01203062,-0.04965743,0.05930929,-0.014936902,0.050806098,0.07915656,-0.07536424,-0.049153056,0.059408445,-0.052815937,-0.1072528,-0.03129742,0.03914053,0.019971807,-0.02634209,0.0017636131,0.0706105,-0.08310786,-0.05392756,-0.047084488,-0.041212518,-0.101372115,0.046579428,-0.013030575,0.06338306,-0.0628278,0.093906455,0.0031488498,0.058112778,0.010757976,-0.027121771,-0.009277931,-0.027477281,0.029300066,-0.054920588,0.06180332,-0.027424376,0.01680806,0.007862433,0.0060488796,-0.024101323,0.02038421,0.013882177,-0.013588316,0.037025373,0.05899009,0.04051029,-0.0055432585,-0.036265675,-0.07765507,-0.010020342,-0.071524605,-3.520603e-33,-0.02106508,0.012504004,-0.0031531926,0.054894026,0.02263569,-0.0060790908,-0.10725052,-0.03939049,-0.040285513,-0.05667172,0.061063427,-0.0031183006,-0.097038396,-0.06948194,0.0034545448,0.026214903,0.00069071434,-0.046800815,-0.10019274,-0.009220678,-0.0969213,-0.005688183,-0.00792643,0.04588167,-0.10258812,-0.02325317,0.10420702,-0.096861206,-0.0053404486,0.0059962743,-0.0139901405,0.09818549,0.009215159,0.014127769,-0.009482334,-0.004831585,-0.014746274,-0.027547177,0.058309846,0.05935281,-0.011955729,-0.023352735,-0.004120544,0.09149132,0.034693863,0.020381065,-0.0062210076,0.023566931,0.09753788,-0.08606099,0.033140406,-0.09228533,-0.0797616,0.049942847,0.014229417,-0.05782286,-0.03828506,0.0001324749,0.061099447,-0.038043406,0.003592308,0.05543794,0.03890495,0.0068039345,0.017811058,-0.008080264,0.038008958,0.0073542534,0.027419392,0.061115164,-0.01394512,-0.011992021,0.008306652,0.014960501,-0.06809922,-0.017344812,-0.024079394,0.06520828,-0.0337632,-0.062460866,0.03275457,-0.040623862,-0.028202366,0.029121177,0.037426036,-0.04266025,0.028158752,-0.12511784,-0.09777084,-0.0038678993,-0.06131811,-0.07258321,-0.019110542,-0.017324287,-0.048863124,1.0860629e-33,0.067726284,-0.09834103,0.025786433,0.016186751,-0.07256936,-0.035052463,0.018861411,0.025216956,0.041839324,0.092341214,-0.06974262,0.011683577,0.117991954,0.07096403,0.06953316,0.0475503,0.03043802,0.022705637,-0.06460777,-0.06003049,0.02300012,0.022959786,-0.06498522,0.029375523,-0.0100324545,0.028427424,-0.061733752,0.04296291,-0.087034754,-0.06931199,-0.054856062,0.06828904,0.008183728,0.0049582906,-0.035731047,0.15593158,0.04634577,-0.040595874,0.036422107,0.036060326,0.03140023,-0.12700099,0.018736783,0.07843621,0.056531087,-0.052062824,-0.03737554,0.05168792,0.0028515279,-0.00044170272,-0.05785498,0.040918358,-0.08932252,0.005187031,-0.014896494,0.08606021,-0.0118613895,-0.00025928344,-0.022834472,-0.10091746,-0.034218974,0.009232359,-0.088876344,0.06682234,0.0041813375,0.024402896,0.00039795428,-0.015025806,-0.04922866,0.116712645,-0.07050707,0.06632932,-0.03997614,0.017690713,0.040530942,0.013038327,0.062884085,0.010431213,-0.05180467,0.07713427,-0.066383764,0.075978756,-0.06233935,0.041404832,0.08233167,0.0034783937,0.03235058,0.04541606,-0.04338874,-0.0070279213,-0.03284125,0.0733362,-0.107596286,-0.02796331,-0.0821928,-1.41956145e-08,0.028451497,0.05830349,-0.025420781,0.02639147,0.05714662,-0.07409078,-0.029266581,0.06959416,-0.005250523,0.011311745,-0.062031224,0.010112176,0.00090676703,0.025357867,0.0538722,0.009254351,0.044129286,-0.07583008,-0.03576662,0.026667967,-0.04993365,0.07913079,0.048924416,-0.0068849316,-0.06767299,-0.017934069,0.010790404,-0.0023966532,0.012245625,0.049147427,0.076248005,0.04194601,-0.0032482883,-0.030520473,-0.048362054,-0.0077759754,-0.022930544,-0.0032683553,0.030161865,-0.11393715,-0.039644394,-0.058833234,-0.105627805,-0.006109936,-0.075752884,0.0013108806,0.07391768,-0.009001406,0.0033009972,0.01900192,-0.093212664,0.0038854994,-0.036420953,0.06341901,0.03597308,0.019541355,-0.02809519,0.016734205,-0.0043513216,0.02250221,0.0074271555,0.028954484,-0.043733865,0.0056451634} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-24 23:56:15.501947+00 2026-01-24 23:35:51.076337+00 acb2e9f2-5951-476b-a5a5-71cf81009e6f 128 google ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE 1 t 131 R. Fleitas Peluqueros unknown I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again i came here after getting a haircut elsewhere that i wasn't happy with. they did an amazing job fixing it and refused to take my money when i tried to pay. complete class act, would highly recommend and will be back when i stay in las palmas again 5 2024-01-26 01:15:46.600123+00 en v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.560282+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 129 google ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB 1 t 132 R. Fleitas Peluqueros unknown I will definitely be back again. Raul is amazing. i will definitely be back again. raul is amazing. 5 2024-01-26 01:15:46.600715+00 en v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.639655+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 130 google ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE 1 t 133 R. Fleitas Peluqueros unknown Good masters working there! David is simple a rockstar 🙌 good masters working there! david is simple a rockstar 🙌 5 2022-01-26 01:15:46.600736+00 en v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.654128+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 131 google ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE 1 t 134 R. Fleitas Peluqueros unknown Great service great service 5 2022-01-26 01:15:46.600744+00 en v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.730659+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 132 google Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB 1 t 135 R. Fleitas Peluqueros unknown Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10 rafa es mi nuevo referente en el sector. atención profesional y dedicada por alguien con muchísima experiencia en este campo. cortes modernos o clásicos, barba perfecta. 10/10 5 2025-10-27 01:15:46.60076+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.74435+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 133 google Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB 1 t 136 R. Fleitas Peluqueros unknown De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria. de profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria. 1 2025-11-26 01:15:46.600769+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.764086+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 134 google Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB 1 t 137 R. Fleitas Peluqueros unknown La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal. la primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal. 1 2026-01-25 01:15:46.600775+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.770408+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 135 google ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE 1 t 138 R. Fleitas Peluqueros unknown Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder. super friseur, schönes ambiente. ich habe mir haare und bart schneiden lassen – beides top. kann ich zu 100% empfehlen! ich komme definitiv wieder. 5 2025-03-31 01:15:46.600966+00 de v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:47.785414+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 145 google ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB 1 t 148 R. Fleitas Peluqueros unknown Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar poco que decir de este gran nuevo negocio llevado por una gente excepcional. un trato muy a la altura de los gustos más exigentes. y una calidad de trabajo que en pocos lugares de las palmas se podrá encontrar 5 2020-01-27 01:15:46.601176+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.02482+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 146 google ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB 1 t 149 R. Fleitas Peluqueros unknown Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\nMuy buen trato, y muy profesionales.\nSi viviera aquí, sin duda ya tendría peluquería donde ir. fui de casualidad, por que no resido en las palmas, y fue un acierto. muy buen trato, y muy profesionales. si viviera aquí, sin duda ya tendría peluquería donde ir. 5 2023-01-26 01:15:46.601181+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.061694+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 147 google ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB 1 t 150 R. Fleitas Peluqueros unknown La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo! la primera vez que vengo, soy de barcelona. me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo! 5 2023-01-26 01:15:46.601186+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.069141+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 148 google ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE 1 t 151 R. Fleitas Peluqueros unknown Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda. probablemente el mejor barbero / peluquero de la ciudad. exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. recomendable 100% pedir cita previa dada la demanda. 5 2018-01-27 01:15:46.601191+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.084898+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 149 google ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB 1 t 152 R. Fleitas Peluqueros unknown Profesionales de trato muy amable y cercano.\nSin duda alguna la mejor barbería de la zona. profesionales de trato muy amable y cercano. sin duda alguna la mejor barbería de la zona. 5 2026-01-25 01:15:46.601257+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.099316+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 150 google ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE 1 t 153 R. Fleitas Peluqueros unknown professionale! precisione! brava! molto consigliato!\n\nprofessional! accurate! well done! highly recommended!\n\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable! professionale! precisione! brava! molto consigliato! professional! accurate! well done! highly recommended! ¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable! 5 2025-01-25 01:15:46.601391+00 it v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.109393+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 151 google ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB 1 t 154 R. Fleitas Peluqueros unknown Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\nSiempre Obran El Milagro.\nBuenas Tertulias De Lo Divino y De Lo Humano. una peluquería profesional. los hermanos fleitas nunca fallan. siempre obran el milagro. buenas tertulias de lo divino y de lo humano. 5 2026-01-25 01:15:46.601415+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.131552+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 152 google ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB 1 t 155 R. Fleitas Peluqueros unknown Increíble trato, excelente servicio y muy rapido increíble trato, excelente servicio y muy rapido 5 2025-04-30 01:15:46.601459+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.144743+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 153 google ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE 1 t 156 R. Fleitas Peluqueros unknown El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales. el mejor sitio de gran canaria para pelarse sin duda, grandes profesionales. 5 2025-01-25 01:15:46.601467+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.164395+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 154 google ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE 1 t 157 R. Fleitas Peluqueros unknown Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\nRecomiendo👍 mejor barber en las palmas. no veo la hora de volver de croacia para cortarme el pelo. recomiendo👍 5 2024-01-26 01:15:46.601496+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.17664+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 155 google ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE 1 t 158 R. Fleitas Peluqueros unknown Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️ profesjonell, bra pris, hyggelig! anbefales på det sterkeste ✂️ 5 2025-01-25 01:15:46.601503+00 no v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.195438+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 156 google ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE 1 t 159 R. Fleitas Peluqueros unknown Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver, pequeño ,pero acojedor, buen profecional y muy cercano al cliente , rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver, 4 2021-01-26 01:15:46.601509+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.205079+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 157 google ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB 1 t 160 R. Fleitas Peluqueros unknown Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico. esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico. 5 2021-01-26 01:15:46.601515+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.223798+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 158 google ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB 1 t 161 R. Fleitas Peluqueros unknown Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta 5 2024-01-26 01:15:46.601524+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.274576+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 159 google ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE 1 t 162 R. Fleitas Peluqueros unknown Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto increíbles, atencion, trabajo perfecto, unos crack, rafitaaaaa un artista con esas manos te deja perfecto 5 2023-01-26 01:15:46.601529+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.283451+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 160 google ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB 1 t 163 R. Fleitas Peluqueros unknown Profesionales, rápidos. Buen precio! Recomendados. profesionales, rápidos. buen precio! recomendados. 5 2024-01-26 01:15:46.601543+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:15:48.295785+00 02fd4b63-1220-43ad-be5f-9e86e37753d0 1272 google ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE 1 t 1275 Soho Club unknown Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 eur 2 2025-05-04 18:34:31.336452+00 lt v5.1 V1.01 {} V- I3 CR-N {} {"V1.01": "Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR"} {-0.10904591,0.11410934,-0.047811728,0.0044697504,-0.07848642,-0.05469025,0.041009665,0.05385919,0.005897528,-0.0064827455,0.0524005,-0.17634818,-0.027905807,-0.0121945115,-0.06376006,-0.04283374,-0.045232214,-0.026889099,-0.08453295,0.00053037546,-0.001011621,0.030351365,-0.021625757,-0.014133842,0.053888485,-0.035136875,-0.017940056,-0.015827077,0.07114814,-0.116644695,-0.052574817,0.022677444,0.06941923,-0.0016919513,-0.02767517,-0.09708741,-0.057498895,-0.070517175,-0.036637396,0.10755167,-0.048105706,0.024395969,-0.025173146,-0.011254376,-0.0031365633,0.00903117,-0.10874812,0.05149774,0.044373672,0.05053273,-0.12953687,-0.008289745,-0.05298321,-0.013400446,-0.008457459,-0.10273093,-0.03596141,0.026175551,0.018576875,0.007512948,0.093442775,0.034374192,-0.022825036,0.08104669,0.0125947,-0.018589104,-0.014597486,-0.044306736,-0.03973751,0.022468762,0.042428393,-0.049870994,0.05442538,-0.048769876,-0.1078951,-0.019459382,0.041872498,-0.018639581,-0.007032503,-0.05809992,-0.008618919,-0.021405542,0.0031260636,0.04611931,-0.021541681,-0.013538196,-0.004146024,0.024829518,0.01704481,0.01801132,0.031161841,0.0055894046,-0.046222594,-0.08381556,-0.02134072,0.07557618,-0.022643646,-0.016126227,-0.01715228,0.057916176,0.02582619,0.038367026,0.0049029165,0.027940463,-0.07153422,0.03559144,0.030081736,-0.024224147,0.041976534,0.10463895,-0.067656554,-0.024637135,-0.088198245,-0.1003083,-0.04601517,-0.010518936,0.001569749,-0.042207655,0.024658283,0.011122214,0.06638214,-0.07032536,-0.0472036,-0.05891183,-0.031136882,0.04141061,0.08747131,6.663466e-33,-0.040683877,-0.047104932,0.00806425,-0.01756232,0.0032475628,-0.03427734,-0.04665478,-0.034027617,-0.10142144,0.0072781383,-0.07903382,0.044574995,-0.049969092,-0.03269653,0.029477503,0.03129605,0.02103383,-0.011821722,-0.0100230705,0.10601123,0.056284435,-0.020926211,0.0071235504,-0.056269247,-0.0026539955,0.048344307,-0.0066496697,-0.026014665,-0.08249443,0.0002964771,0.075102925,-0.062708326,-0.084406234,0.008583975,-0.07427041,-0.0063776784,-0.010755425,-0.0050785253,0.017659632,-0.025156021,0.022698313,0.054093853,-0.016763521,0.0715918,0.036788452,0.02312635,0.060560387,0.022337519,0.09370487,0.0039617685,-0.12198434,-0.015064474,-0.060538013,-0.022428451,0.05540367,0.013940282,0.010463577,0.03692566,-0.020407539,0.0071038622,0.025389165,-0.025921218,0.00428719,-0.09279852,0.0026568028,-0.047737423,-0.023503462,-0.010872273,0.030610783,-0.15254736,-0.051379178,-0.052375432,0.074005224,0.054802798,-0.045905475,0.016422158,0.055436127,-0.05894383,-0.056453303,0.028120307,-0.035229657,-0.0088809505,0.0072298567,-0.036551096,0.04851351,0.05082166,-0.025876155,0.0012229903,0.061285004,0.10796708,-0.007911744,0.02365028,0.01542564,0.024519311,-0.021484435,-6.738714e-33,0.015879218,0.044859886,-0.026367204,0.033104658,0.028937936,0.05177104,0.036888484,0.10665928,0.012415396,0.008266687,0.014249646,0.013574492,0.11415731,-0.01113449,-0.038100295,0.088937886,0.09788337,0.066548884,-0.06477928,-0.061679903,-0.052493148,0.15117161,-0.034411523,0.05800086,-0.004750994,0.025387889,0.044658605,-0.0027360872,-0.09155175,-0.0066168155,0.04433171,-0.08094288,-0.033180624,0.02632042,0.02298965,-0.09276737,0.051732887,0.00085255597,-0.0008636834,0.029052885,0.06434871,0.08353185,0.0065711816,0.026165172,0.03527192,-0.06629815,0.0014143246,0.0011576524,-0.055502977,-0.08733889,0.115483336,-0.057670206,-0.031768538,0.07683212,0.079608925,0.0943687,0.003838555,-0.0011105931,-0.022300165,0.004849412,0.07642785,0.055143036,0.030087233,0.034359872,0.032332838,0.09661006,0.011513369,0.07457606,0.019485503,-0.00024307905,-0.02595896,-0.065691434,-0.015332194,-0.02666222,-0.06832588,-0.0016527866,-0.02358736,0.015681164,0.045477252,-0.07661437,-0.0066312724,0.04999363,-0.047761653,-0.020002943,0.022007966,-0.030558275,0.056324568,-0.00089715817,0.062640324,0.018594677,-0.054213837,0.05783234,-0.059300356,0.054477528,0.053519,-2.8032835e-08,0.049664073,-0.053964626,-0.0330646,0.025922403,0.07062518,0.0169361,-0.033528794,-0.030333742,-7.6931894e-05,0.08609838,0.07218203,-0.040075123,-0.004068678,-0.005197945,0.043741018,-0.018807031,0.04961381,0.1738806,-0.004383793,-0.039525356,0.11722426,0.04413406,-0.029367998,-0.06437142,-0.0010769252,0.032843575,0.032878846,0.022766242,-0.006712398,-0.0012942026,-0.058414154,0.074884385,0.011776101,-0.0658137,0.056733176,0.06460332,0.00606483,0.023366118,-0.003679323,0.0068715303,0.0019965898,-0.043581203,0.012125232,-0.039290164,-0.0298578,0.011010449,0.014547234,0.008433681,0.012705831,-0.021682037,-0.05331569,-0.0204918,-0.0036202988,0.013540123,-0.005158214,0.012317553,-0.023372684,-0.0011439967,-0.09729149,0.014438687,0.083782725,-0.026437411,-0.061854664,-0.006756186} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:20.62734+00 2026-01-29 18:36:00.662808+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 177 google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB 1 t 180 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Save your money and your holiday and book with someone else.\n\n1.\tLeft at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got "line busy" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas\n\n2.\tRefused to drop off at Maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up\n\n3.\tOn arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. We didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders.\n\n4.\tCar given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. To add insult to injury they decided to take £381.50 out of my account (I guess for good measure). Presumably this is how they make their money – it is nothing short of a scam.\n\n5.\tWe detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. Predictably, we received no response from them.\n\nLesson learned – we’ll be booking with a reputable company next time. save your money and your holiday and book with someone else. 1. left at the airport with no way of contacting. tried calling 17 times over the period of an hour but got "line busy" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. had to book a €50 taxi to maspalomas 2. refused to drop off at maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up 3. on arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. we didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders. 4. car given was full of dents and scratches. on dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. to add insult to injury they decided to take £381.50 out of my account (i guess for good measure). presumably this is how they make their money – it is nothing short of a scam. 5. we detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. predictably, we received no response from them. lesson learned – we’ll be booking with a reputable company next time. 1 2025-12-26 01:27:48.340047+00 en v5.1 A4.01 {J1.01} V- I3 CR-N {} {"A4.01": "Left at the airport with no way of contacting. Tried calling 17 times over the period of an hour but", "R1.01": "On arrival to the office, we were told the car we'd booked was no longer available and we'd have to ", "R1.02": "Car given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for t", "R2.01": "Lesson learned – we’ll be booking with a reputable company next time.", "V1.01": "We detailed all the above in an email to the complaints team, requesting that they reconsider the ch"} {0.022083426,0.08946911,0.04344144,0.06807527,-0.012908045,-0.027163094,0.017279107,0.042833764,0.08219107,-0.01459217,0.032736477,0.032444082,-0.01922163,0.013084144,0.037471972,0.0068905842,-0.0020468417,-0.037384834,-0.028575052,0.07705982,0.06610769,-0.086618766,-0.08634611,-0.01727143,0.066348396,0.016114937,-0.008384215,0.036906593,-0.05842841,-0.058272135,0.02351624,0.09231601,-0.0015359622,-0.114188105,0.024113571,-0.003923558,0.10907596,-0.07550875,0.005245356,-0.020450048,0.03154846,0.01911933,0.010721104,0.024705248,-0.019571772,-0.0052824584,0.042133804,0.07967538,-0.004062456,0.00881031,0.04140657,0.0055580884,0.017530732,0.0027452505,-0.076513834,-0.05582269,0.074614145,0.04230071,0.008360049,-0.018123532,-0.04397627,0.0063267327,-0.0066075027,0.02222096,-0.05820401,0.04550734,-0.121519625,-0.13589552,0.023961348,0.095145255,-0.045219626,-0.047519825,0.051678553,0.0056600305,0.019202145,-0.036962178,-0.03439753,-0.015400654,0.04394985,0.031308014,-0.01948058,-0.015747817,-0.011045511,0.0144973975,0.008299595,-0.035796445,0.050689112,0.05193332,0.04572636,0.011141017,0.046768483,-0.07898693,0.0025392494,0.08049638,-0.027518073,-0.017697623,0.014176184,0.05280205,-0.0013542072,0.038279556,0.071408994,0.09899589,-0.029235674,-0.032491814,-0.024245847,0.045426067,0.013272,-0.06031514,-0.05515821,-0.05547682,-0.025621822,0.00060445676,0.019277714,-0.01739794,-0.029740294,0.0889205,-0.028563768,0.016853126,0.067225575,-0.10151589,0.040313095,0.06362732,0.03483601,0.048147187,0.0045486167,0.031047085,0.04272526,2.2688951e-33,-0.027135825,0.038130604,0.03452698,-0.016032837,0.07038671,-0.09631361,-0.05758649,0.07392477,0.023403015,0.04747376,-0.04189997,-0.020259662,0.043409873,-0.13012302,0.004326819,0.08889374,0.019843,-0.027046788,0.00453819,0.035913743,0.07255117,-0.05040025,0.0064937104,0.009749177,0.008102306,0.058595546,-0.04462589,-0.008873786,0.13913405,-0.014925808,-0.076125376,0.01258492,0.0960464,0.06603534,-0.07241449,0.021563536,-0.053241048,-0.039499924,-0.095553055,-0.056720693,-0.036604863,-0.011054926,-0.024087233,0.0063577807,-0.03442497,-0.035611235,-0.023040518,-0.0241206,0.005544524,0.10828146,-0.06258623,-0.0059707235,-0.012711443,0.05244707,-0.112817176,-0.040814735,-0.016896727,0.06406769,0.06479136,-0.014952043,0.06541274,-0.036047366,0.08327972,0.0023719314,-0.029215131,-0.053826112,0.0054739127,0.030277682,-0.04956458,-0.070645675,-0.044222463,0.060612194,0.058568586,-0.023278102,0.030525928,0.013019425,-0.017416075,-0.028558565,0.04619082,-0.04531704,0.02137503,0.0005974607,-0.011902616,-0.042017728,0.03435946,0.043888196,-0.007825682,-0.061363686,-0.024492048,0.10109547,-0.13238037,-0.0016411487,-0.03926648,0.008053121,0.06372111,-4.305152e-33,0.03731413,-0.059450455,-0.010630113,-0.008663236,-0.05960451,0.06240454,0.017931167,0.0425624,0.008153817,0.016052613,-0.08087553,0.012262858,-0.0008747439,-0.012283412,-0.058333926,-0.046695933,0.05180046,-0.021282699,0.00022246997,-0.009358329,0.016886907,0.07981099,0.0039867717,0.05740091,-0.07080069,0.07029916,-0.0226358,-0.015637206,-0.04159673,-0.05946428,-0.001289731,-0.01978946,0.0019706667,0.03896541,0.00222686,0.027364828,0.0054952754,0.074991114,-0.015236527,0.038760494,-0.00065203506,-0.013072646,-0.0323103,0.056555416,0.13683897,-0.08471821,-0.02324388,-0.02922615,0.1537373,-0.007216788,0.0058956444,-0.019644087,-0.08643542,0.11357211,-0.0034174956,0.027423246,0.08135772,-0.10534187,0.045586612,0.0036265366,-0.07873607,-0.048460625,-0.03977025,-0.06506498,0.051656533,-0.057795104,-0.051002167,-0.0076541086,0.13374309,0.04077138,-0.020200936,-0.009462435,0.0043119392,-0.011979374,0.08712447,0.06448557,0.007180968,-0.06655345,-0.04260785,-0.027456434,-0.00868076,-0.060495712,0.02749785,0.04630681,-0.0075402646,0.029823987,0.06420338,-0.043776955,-0.0055357544,0.028442932,0.014745499,0.031104276,0.03128375,0.04080445,-0.06095982,-5.943208e-08,-0.0193472,0.059898976,0.015084122,-0.017776305,-0.0009188952,-0.06577007,0.015111462,0.03396174,-0.13230929,-0.0058781775,-0.038540818,-0.010722439,-0.09894656,0.040362064,-0.058366917,0.01389172,0.0522802,-0.024752304,-0.03749245,0.020396128,-0.018494163,-0.02146971,-0.096196085,0.021652857,0.017156163,-0.060483135,0.0056062615,0.10976849,0.0592776,-0.054381847,-0.093028545,0.016232757,-0.014909688,-0.03523569,-0.09798426,-0.06827378,-0.052902143,0.013556626,0.018033119,-0.021164702,0.026007026,-0.085301995,-0.029586231,-0.018024787,0.0154343825,0.039011344,-0.13699186,-0.03637365,-0.021267574,0.005173714,-0.034053337,-0.044006,-0.029866097,0.13997285,0.032910667,-0.051664878,-0.033027936,0.0010457593,0.028552005,-0.039729696,0.0061747553,-0.080042034,-0.061592985,0.002801297} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:37:13.489413+00 2026-01-25 01:27:49.913652+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 328 google Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB 1 t 331 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit. Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2. Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden. das auto war super und die mitarbeiter sehr freundlich und hilfsbereit. der shuttlebus hält nicht am busbahnhof am flughafen, sondern oben vor ausgang 2. allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer wartezeit verbunden. 3 2025-12-26 01:27:48.341163+00 de v5.1 O1.01 {A1.01} V+ I2 CR-N {} {"J1.01": "Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2.", "J2.02": "Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden.", "O1.01": "Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit."} {-0.026230093,0.05125474,0.012435728,-0.06580153,-0.02562445,0.08763997,0.03718182,0.09019631,-0.07326008,0.04402969,-0.008929687,0.0018406801,-0.017241316,-0.0058939285,-0.06776507,-0.026094444,0.03244445,0.0025015515,-0.06302198,-0.053477857,0.042692296,-0.014884251,0.024830302,0.085524715,-0.087968275,0.0262545,-0.06844906,-0.03756163,-0.01724528,-0.030490663,-0.04911231,-0.005683827,-0.07133371,0.05976841,0.04992439,-0.06333295,0.020115983,0.0059891003,0.041896503,-0.06862025,-0.11037971,-0.055336516,-0.02644086,-0.03347895,0.081397146,0.06492216,0.025597485,-0.02854336,0.031269345,0.02567318,-0.031727426,-0.019933946,0.092285834,-0.019266075,0.08134003,-0.033250023,-0.021484697,-0.009554011,0.04094686,0.044749502,-0.07693533,-0.008610681,0.03228208,0.011610698,-0.010136812,0.001349037,-0.047876187,0.03119808,-0.006287351,0.03648844,0.027234565,-0.05635601,0.010430761,-0.02578606,0.070312746,-0.02438859,-0.09823438,0.045004778,0.06005597,-0.023952816,-0.055002905,-0.094645076,0.037402697,0.025139427,-0.027491441,0.011229478,-0.010452681,0.03484678,0.051864587,0.07582604,-0.09408444,-0.09367761,-0.0070589622,0.030356163,-0.0773262,-0.0006397435,0.027466016,-0.055816077,0.047809616,0.014886265,0.032379042,-0.06847063,0.021300329,0.06496346,0.012565562,0.007648758,-0.016364604,-0.014107381,0.0020864895,-0.06252906,-0.017632054,-0.039455526,0.054922137,-0.05604144,-0.08287121,0.0013676315,0.008742953,-0.078929305,-0.030901408,-0.009197214,-0.08058837,-0.032330133,0.021052444,0.14644794,0.033084936,0.024750885,0.06726706,1.2725903e-32,-0.07483846,-0.096515566,0.014196005,0.031211905,-0.062271353,-0.031069806,-0.06297023,0.007512205,0.0453129,0.015596746,-0.015454684,0.040323235,0.013130485,0.042077467,0.015548638,-0.027052838,-0.014635188,-0.050575092,0.036692597,-0.039741497,0.016959533,-0.0029965795,-0.020882694,0.022972843,0.06735956,-0.019165404,0.00691999,0.056067053,0.016331635,0.08274082,-0.014982345,-0.014854327,-0.054222256,0.06892661,-0.052218348,-0.05480482,-0.042458843,0.047079097,-0.064336576,-0.024777753,-0.021752752,-0.039894033,-0.1469377,-0.08812786,0.026133161,-0.019970195,-0.00045268165,0.028410265,0.040777206,-0.021916062,-0.033314455,0.0027648753,-0.05703763,-0.046864383,0.018146042,0.08343626,-0.009137705,0.09764571,-0.030739203,0.026080197,-0.033950426,-0.05564826,-0.018507447,0.029365089,0.055143133,0.033620965,0.046775486,-0.020122072,0.03237255,0.033722226,-0.017455349,-0.050162792,0.1222619,0.02638114,0.06133955,0.061592378,-0.0026672725,0.05430859,-0.10245195,0.04596241,-0.089574724,0.040429108,0.10522877,-0.048835028,0.09713753,-0.013393286,-0.059265144,-0.04957741,0.020705774,0.06630221,-0.05489702,0.017570505,0.05218389,0.06241044,0.009771932,-1.5302071e-32,0.03150293,0.056269012,-0.038270984,-0.01542744,-0.07478826,0.08417866,-0.04287949,-0.013804685,-0.026295282,0.06485982,0.0026827618,0.03956943,0.06447243,0.029065765,-0.0312105,-0.036673345,0.11241462,0.0027601745,-0.01454757,0.042570256,-0.03017993,-0.043747656,0.026102694,-0.03941793,0.012605399,0.006187856,-0.046882022,0.1397196,-0.045075543,0.011310662,0.044398595,0.018957434,0.021640316,0.02661045,-0.032245494,-0.05105447,0.005863173,0.10776474,-0.00405791,-0.009158882,-0.05207698,-0.034944773,-0.023368113,0.03593953,0.039023243,-0.0739085,-0.12724261,-0.08295124,0.019420354,-0.063663654,-0.022030232,-0.045209344,0.06633604,-0.050950367,0.016713437,0.047323875,0.058282524,-0.078529514,-0.052594487,0.01854865,0.11433731,0.0032204965,0.05947037,0.025440326,0.0046325456,-0.112824924,-0.09853103,-0.041216057,0.009844405,0.009024361,0.13649689,0.03672257,-0.07320181,0.06548453,0.022753615,0.026450632,0.022786893,0.035579953,-0.024214005,0.019815678,-0.057708982,0.06970319,0.016920745,-0.0011682909,-0.14198811,-0.007625674,0.005036606,0.012286768,-0.01545895,-0.030538142,0.016868846,0.024054224,-0.035531465,-0.024617406,-0.079108894,-5.3699967e-08,0.029333426,0.017711706,-0.01700838,0.0055012302,-0.07242231,-0.12766534,-0.024350846,0.08350575,-0.08305316,0.024124991,0.017789315,0.05334717,-0.0741948,0.09265225,-0.05499759,-0.015643386,-0.027336344,-0.021162868,-0.050317146,0.00945169,0.026306218,-0.11212898,-0.012581518,-0.045081288,-0.0031027033,0.026982823,0.02595057,-0.107597835,0.07092205,-0.057354636,-0.06294711,0.042161938,-0.014348247,-0.03714912,-0.08337616,-0.009146006,0.028908715,0.0034132148,-0.030960182,0.022842733,0.10376412,0.03159144,0.01831422,-0.03894854,0.055476394,0.01789353,-0.04749093,-0.032647453,-0.06492897,0.029750623,-0.038008228,0.035141524,-0.004615987,0.04331764,-0.018714791,0.06946037,0.009025773,-0.078795664,-0.013985654,0.0091417665,0.017316667,-0.0013684428,-0.046452545,0.010634547} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:14:07.772068+00 2026-01-25 01:27:50.980142+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 197 google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB 1 t 200 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I do not recommend this company. They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. This is an unreasonable condition that other companies do not impose. Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience i do not recommend this company. they required a deposit to be paid with a credit card and refused to accept a debit card, but i don’t have a credit card. this is an unreasonable condition that other companies do not impose. additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. i have rented cars all over the world, but this is the first time i’ve had such a disappointing experience 1 2025-11-26 01:27:48.340164+00 en v5.1 V1.03 {} V- I3 CR-W {} {"A4.01": "Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves on", "V1.03": "I do not recommend this company. They required a deposit to be paid with a credit card and refused t"} {0.06948122,0.024719844,0.03012411,0.0033025548,-0.026262995,0.03512769,0.0529532,0.011420884,0.01157525,-0.056783166,0.028197967,0.03811311,-0.053041514,0.05583013,0.043594886,-0.045096595,0.0888993,-0.09212814,0.078518935,-0.015970198,-0.020417152,-0.089099124,-0.0078090946,0.0077365544,0.045364298,0.02994475,-0.007415527,0.05499551,0.02508018,-0.0051613376,-0.01625117,0.047127813,0.03358068,-0.026072431,0.062623516,0.03583474,-0.048081223,-0.017241415,0.01459566,-0.011834771,0.024249969,0.031053629,0.027858399,-0.0068154274,0.020669645,-0.053548,0.0013685842,0.099812105,0.053685863,-0.017831467,0.07726798,0.020977074,0.072665796,-0.06761716,-0.116056666,-0.05808541,0.023399701,0.026751576,-0.01899728,-0.06700364,0.08284338,-0.07563387,-0.0072185257,0.03959647,-0.031750802,0.034293767,-0.04473816,-0.0024830436,0.013991409,-0.054674827,-0.0044491966,-0.058171343,-0.010313151,0.02975665,-0.025285946,0.09729874,0.027206415,0.044115927,0.049542427,-0.023141619,-0.050168637,-0.015162566,0.06444666,0.030145587,0.018780353,-0.038160365,-0.008795409,0.011729447,-0.023385456,0.0078771915,-0.011046341,0.049182817,-0.014576021,-0.0564966,-0.03875318,0.031898115,0.0017075791,-0.045350313,-0.08697066,-0.034518316,0.10346082,0.14401606,-0.050754406,0.010248485,0.028924992,-0.0027186126,0.06471399,-0.033011124,0.09229157,-0.0023781974,-0.043650195,-0.045790114,0.029958036,-0.04073561,-0.12759407,0.06686304,-0.032185677,-0.012360877,0.09675715,0.0056255534,0.027140154,0.0030635349,0.018584954,-0.031391203,-0.016968833,0.0044635274,0.022781057,2.1591495e-33,-0.043498628,0.022673896,0.035022296,-0.0059247953,0.012024555,-0.04131911,-0.08050365,0.11801951,-0.0457872,0.038957357,-0.052878905,-0.046887595,0.07698595,-0.04778356,0.02440528,0.047439463,-0.058110025,-0.009836277,0.05684995,0.036443032,0.022546852,-0.037940424,0.03884769,0.0070229173,0.06113152,-0.024207678,-0.05084748,-0.00043107657,0.18276206,0.04382458,-0.06537598,0.014647335,-0.002943748,-0.0024163313,-0.022846542,0.01476146,-0.08436607,0.056029845,-0.03209465,-0.060451027,-0.005627879,-0.06482614,-0.10699827,-0.04477344,-0.007601936,0.0033387442,0.03447586,-0.095117316,-0.03186156,0.10546053,-0.097469635,0.035435997,-0.13895822,-0.044782836,-0.055804927,-0.016567035,0.017942823,0.033387452,0.053143755,-0.050842404,-0.055146836,0.056810785,-0.08082247,-0.034319233,0.011200697,-0.048000313,-0.00915922,0.006809028,-0.012531618,0.0567915,0.10648756,0.008228794,0.070366055,0.0026057085,-0.02145288,-0.004058634,-0.022102537,0.059531998,-0.05209895,0.07392726,0.020012934,-0.039673775,0.033744156,-0.0013817509,0.044922333,0.04347939,0.083305635,-0.04420338,-0.022866227,0.02276963,-0.04901116,0.043304794,0.014744222,0.00053551066,0.050848514,-2.3082088e-33,0.048610922,-0.05476461,0.021736063,-0.06548903,-0.083058864,0.041923672,-0.025911288,0.07157368,0.037875798,0.05379099,-0.09393973,0.04089058,0.06588886,0.03255835,0.0049874936,-0.013212802,0.053710673,-0.07035562,-0.036981057,-0.060713906,0.053014476,0.023366736,0.08795189,0.009050344,-0.0059979083,0.059578598,-0.017520586,0.034196038,-0.061010484,0.009454419,-0.03924254,0.046336237,0.007157755,0.022053823,-0.041865565,-0.03304659,-0.043855682,0.122390136,-0.030627921,0.008912488,-0.020521674,-0.08835003,0.018377738,0.034125783,0.08554381,-0.09061371,0.022335656,-0.099294156,0.015690593,-0.00552275,-0.0014805624,-0.08145421,-0.077539586,0.062072337,-0.026160283,0.023748327,0.050811417,0.0062354594,0.019416742,-0.012269587,0.024585392,-6.1034687e-05,0.045691278,0.019151956,-0.03777314,-0.080571875,0.013998376,0.043399233,-0.0011617573,-0.02949778,-0.02817251,0.024937619,0.006774175,0.10097614,-0.068261564,0.082217135,0.13636035,0.012145718,-0.062738605,-0.11707282,0.023554498,-0.036903355,-0.0007248176,0.057552874,0.058317184,-0.03390664,-0.057391033,-0.11143189,-0.047566634,0.06487979,-0.050565135,0.018430844,-0.0479674,-0.0025515403,-0.023875166,-5.0989957e-08,-0.06364245,-0.002055045,0.020603022,0.010760657,-0.032161526,-0.057155576,0.037897367,0.032950066,-0.08360718,-0.020765344,0.047687303,0.013725969,-0.06268804,0.08133286,-0.10926566,-0.003040137,0.056337215,-0.0019205889,0.011205199,0.045358576,-0.027139401,-0.023122456,-0.0039448533,-0.0016550933,-0.0050609685,-0.018667603,0.014682388,-0.062330168,0.13337374,-0.13920379,-0.07368674,0.07080546,0.061957687,-0.020164963,-0.00737773,-0.071009934,0.04773393,-0.010477343,-0.0773343,0.024920221,0.035392385,0.0021412557,-0.058693103,-0.08024965,-0.015555645,-0.0028449728,-0.052821364,0.008236065,0.053874448,0.032940045,-0.00071899337,-0.034998238,0.016224967,0.07548119,0.014605143,-0.061458867,-0.047357365,-0.03079631,-0.04536529,0.019240351,-0.008340859,0.03708996,0.020346725,0.013449992} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:41:13.712165+00 2026-01-25 01:27:50.005848+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 359 google Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB 1 t 362 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hold dere unna denne bedriften. Bilen var bra, men resten var dårlig. Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro. Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler enda 1 ukeetter hjemreise. hold dere unna denne bedriften. bilen var bra, men resten var dårlig. kontrollen ved retur av bilen tok under 1 minutt og kostet 35 euro. hun var enig i at bilen var strøken, og lovte å refundere 285 euro dagen etter. 200 euro mangler enda 1 ukeetter hjemreise. 1 2025-12-26 01:27:48.341355+00 no v5.1 O1.02 {} V± I2 CR-N {} {"J1.02": "Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro.", "O1.02": "Bilen var bra, men resten var dårlig.", "P1.03": "Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler end"} {-0.020837102,0.04265766,-0.014067566,-0.0471759,-0.03456299,0.056300834,0.07361359,0.1319405,-0.056606814,-0.0054091504,-0.0142684,-0.0590596,-0.02884089,-0.061269406,-0.079345375,-0.07172943,-0.089380674,0.077217855,-0.0054394044,0.014492734,0.0054245614,-0.04013606,-0.008621457,0.002191711,0.028784683,-0.018985443,0.06566873,0.01564238,-0.006574126,-0.07960228,0.11034328,0.014710078,-0.07935762,-0.06851707,0.0040417244,0.0704304,-0.03656588,-0.072517656,-0.048607323,0.07062696,-0.039490253,-0.059465893,-0.10876498,-0.085838586,0.06488688,0.0675085,-0.024742618,0.044600785,-0.009019297,0.029667502,0.05516073,0.011621299,0.025008809,-0.042544268,0.052628357,0.011480336,0.0062113474,-0.033451654,0.028446434,-0.084915556,0.007894247,0.02938233,0.01793381,-0.042188376,-0.052534517,-0.051193472,-0.020422833,0.004037084,-0.031961136,0.043044638,0.034335636,-0.09403832,-0.128373,0.029500257,0.007178868,0.010271317,0.025213795,-0.042374283,0.042139348,-0.036603924,-0.031562068,-0.07209861,-0.06016997,-0.011279945,0.007352099,-0.072778605,0.022443421,0.030924236,0.09334268,0.010416618,0.016053582,-0.0070042163,0.02316885,0.0112452675,-0.0074536595,-0.038508072,0.018719029,0.07290894,0.041119576,0.061642468,0.06422393,0.046422016,0.00547603,0.007600612,-0.14929779,-0.059679165,0.12247372,-0.01633565,0.037484106,-0.058968123,-0.06556866,-0.034263358,0.015830591,-0.13062671,5.3570377e-05,0.0442701,-0.059347726,-0.105207704,0.044540543,-0.011118751,0.051053505,0.11734049,0.017533427,0.031138428,0.018693097,0.019024422,0.026268927,1.301157e-32,-0.07399144,0.015015331,-0.0026693838,-0.039766617,-0.12144189,0.00080387696,-0.013884538,-0.02608722,0.05647321,-0.06919199,0.0016728406,0.0048897886,-0.10554243,-0.048438493,-0.026786005,0.025315886,0.09227465,-0.0177187,-0.025407324,0.04117439,-0.01669133,-0.049724713,0.059423637,0.0050630416,0.06852222,-0.08768644,-0.0321979,-0.055394784,0.033746697,0.013410145,0.03900468,0.0020098332,0.0421226,0.016039029,-0.07839172,-0.012701645,-0.01586335,0.02738097,-0.030810904,0.0013790108,0.08529591,0.001492982,0.02520225,-0.005888914,0.060330592,0.03796539,0.04047558,0.021441286,0.025827637,-0.05991074,-0.022273723,0.0049629197,-0.07469403,-0.0333963,-7.3505806e-05,-0.028228061,-0.036322605,0.05037402,-0.053170156,-0.04147945,0.01056033,0.06701417,0.047831453,0.033819795,0.02109893,0.01242245,0.035999354,0.027062368,-0.019029386,-0.08200093,-0.071323656,-0.0030611916,0.053292397,0.024308104,-0.004801139,0.004027452,0.0077340445,0.04766564,-0.0019172289,-0.07290995,-0.06417407,-0.024304856,-0.06073052,-0.06321037,0.09178204,-0.027796594,0.032313198,-0.0942298,0.049814213,0.053964965,-0.003245458,-0.048549052,0.025549164,-0.054449365,0.065817036,-1.4133246e-32,-0.030676974,0.05766699,-0.03704432,0.09022937,0.011572938,0.054520253,0.036243234,0.0755339,-0.031919632,-0.013017179,-0.04290226,-0.089981936,0.07114646,0.00014717343,-0.03612761,0.037142,0.04439965,0.06772346,-0.0014296445,-0.06663961,0.00498628,-0.03530882,0.10297721,0.06595331,-0.044095762,0.039101813,0.045310825,-0.007374932,-0.04301454,0.008041625,0.024978863,-0.041684717,0.025588607,0.055935737,-0.02162545,-0.05240775,0.054350276,0.036200583,-0.01072396,0.06466256,0.0027218382,-0.027062109,-0.014032116,-0.055875294,0.022127772,-0.04889128,-0.013720991,-0.070559435,0.0871604,-0.138494,0.077110715,-0.005220429,0.02699844,-0.03823889,-0.015265627,0.055863027,0.032175004,-0.044169024,0.057511184,0.0021090019,0.01946852,0.03999863,0.010946399,0.05639277,0.0074319136,-0.048927482,-0.053137347,-0.09043418,0.007872995,-0.0688496,0.005456788,-0.01857287,0.08959794,0.032882385,0.031671606,0.054543205,0.008127098,0.054699928,0.07622818,-0.07259333,-0.07986578,-0.072547525,0.0076752026,-0.07238656,0.025053337,-0.07651592,-0.034166493,-0.0275749,-0.028941272,-0.035063375,-0.05619457,0.056952797,0.022321058,-0.015011981,-0.012007166,-4.726901e-08,0.042925987,-0.039956458,-0.033037327,0.062963665,0.112571456,-0.045422696,-0.030407706,-0.09326866,-0.05914521,0.020272953,-0.034857802,0.04808312,0.04216153,-0.013048103,-0.0017261448,0.031472366,-0.0009037548,0.077261,-0.04654498,-0.051660568,0.0723405,0.010376071,-0.077672586,-0.018512752,0.01692519,0.02596926,0.019769607,0.13840862,0.05395342,-0.0977473,0.065674074,0.0540401,0.024685204,-0.04393961,0.04408156,0.033234917,0.0131123755,0.10354077,0.01892452,0.08320287,-0.0054708724,-0.028862499,-0.028333185,-0.03530196,-0.000354944,-0.034301404,-0.05195973,0.044001766,-0.023648117,-0.0064117177,-0.026523199,-0.0050385073,0.081543304,-0.01585605,0.03866522,0.034512557,0.010289908,0.013505884,-0.097362064,-0.04006946,-0.03009725,-0.107313305,-0.04068531,0.031927526} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:58.246223+00 2026-01-25 01:27:51.087014+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 469 google Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB 1 t 472 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable prestación servicio excelente, sin sobrecostes y según lo contratado. muy fiable. recomendable 5 2025-12-26 01:27:48.34208+00 es v5.1 P1.01 {R1.01} V+ I2 CR-N {} {"P1.01": "Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable"} {-0.04831364,0.018890902,-0.00044692503,-0.025549488,-0.11431123,-0.009700588,-0.009008094,0.051001057,-0.03416854,0.01014926,0.046985086,0.08886466,-0.04088863,0.029151985,0.06285937,-0.029509442,0.090285055,-0.017026996,0.058278605,0.013965512,0.11429874,-0.0452221,-0.104422756,0.09266903,-0.08996708,-0.020745162,-0.033637308,0.007585934,-0.025796738,-0.07708863,0.011356221,0.11037579,0.00024727941,-0.029882785,-0.02871524,-0.010889134,0.049430627,-0.065352105,-0.018075775,0.08641014,-0.10751413,-0.022336906,-0.013242979,-0.06678091,0.023303071,-0.09540245,0.025947515,0.049396124,0.0655497,0.022364534,-0.05046519,-0.06550148,-0.020779613,0.027891222,0.022595312,-0.024226462,-0.030887133,-0.031495683,0.0028317573,-0.031188613,-0.00931141,0.043560673,-0.074309856,0.013029324,0.076746,0.031155363,0.030615667,-0.027082564,-0.0026922852,0.058608722,0.04831882,-0.04698853,0.06881627,0.07061631,-0.040624496,0.03219987,0.019866686,0.032055058,-0.019998273,-0.10570387,0.003240495,0.040093817,0.008350634,0.006342167,0.01993971,-0.0085901795,-0.07636119,-0.016828557,0.06445586,-0.036445007,0.060053054,0.06446544,-0.0389783,-0.010642091,-0.058555167,0.02775537,-0.03812809,-0.08399918,0.037999857,0.023300676,0.09785801,0.022630392,0.0593594,0.018352667,-0.003614813,0.02642767,0.046883687,0.00930971,0.030623905,0.11565423,-0.04074369,-0.011950206,-0.03995372,-0.017081296,-0.124196544,0.023958238,-0.005220269,0.0017665741,0.0015454023,-0.05232619,0.070457995,0.08007634,-0.004485931,-0.08929636,0.015472277,-0.10021771,0.07529614,4.5799486e-33,-0.019956376,-0.083858036,0.017269118,0.1166483,-0.06122209,0.0017043232,-0.047584627,-0.042646516,-0.029614855,0.050064176,-0.03597347,0.07573515,-0.01901109,0.013703149,0.043515094,-0.058971867,0.021988424,0.009204013,-0.0029379013,0.015173941,-0.024044137,-0.028569613,-0.0051262635,-0.018105399,-0.0050273812,0.033044755,-0.026246013,-0.045029443,-0.008606853,0.057358094,-0.033966254,-0.01190702,0.015134881,-0.012196945,-0.035866052,-0.024340812,-0.049625646,-0.02647783,-0.0362225,-0.046077088,0.0013264007,0.021166682,-0.05690345,0.045202166,0.022453047,0.009686369,0.045112047,0.043152075,0.10719898,0.015471733,-0.053080484,-0.05631226,-0.08767358,-0.0109046865,-0.059755806,0.04008659,-0.028577743,0.06210836,0.03249735,-0.066369556,0.018813098,-0.082819335,-0.012454043,-0.040406704,-0.123104505,-0.07923075,0.011990973,0.038713746,0.095419295,0.03192448,-0.070049815,-0.04334472,0.028162042,0.10357779,0.025147885,0.010544563,0.059940293,0.02718551,0.0033125945,0.04270349,-0.01168791,-0.020445919,-0.02157165,0.024582861,0.08459647,0.0980393,0.11757215,0.030518314,-0.015790148,0.104505055,-0.031843536,0.11128124,0.036672078,0.0032968624,0.047284696,-6.572001e-33,0.01939145,-0.027933327,0.03840395,0.06916859,-0.016446682,0.06114335,0.025720423,-0.03980655,-0.02564574,-0.043148987,-0.09621972,-0.0800487,0.08803523,-0.069186054,-0.07654638,0.05122607,-0.041495103,-0.09944604,-0.04583219,0.0101613635,-0.05802607,0.10313068,0.05964705,-0.07818834,-0.009167808,-0.059129354,-0.04451278,0.028657919,-0.059762936,0.02052311,0.004703963,0.010403802,-0.041155513,0.00032311233,-0.044255964,0.08288846,0.0035707091,0.05133747,0.013881563,0.05251676,0.027483383,0.016292954,-0.037542466,-0.047613613,-0.04390659,-0.023990814,-0.0023831106,-0.15192088,0.0072480696,-0.003283325,0.04858758,0.018372707,0.016042445,-0.0058282292,0.04864012,-0.044658072,-0.07150056,-0.08460984,-0.047281273,0.00761708,0.02526665,0.035889927,-0.020527568,-0.009115183,0.14377442,-0.001194902,-0.00192101,-0.0194419,0.04302472,0.038457274,0.013905082,-0.010172512,-0.023329934,0.010362538,0.0029269888,-0.044992417,-0.022361,-0.043463405,-0.035426497,0.025177183,0.02699489,-0.010614079,0.009463264,-0.0223129,-0.054932736,-0.012303985,0.012228327,-0.071541175,-0.013849474,0.092990965,-0.017629772,0.020451657,-0.023786202,0.009663882,0.011635554,-2.8940548e-08,-0.030509196,-0.043258056,0.047778577,0.021932017,0.018889755,-0.13177341,-0.021589082,0.023482462,0.0458855,0.08178015,-0.022652548,-0.018861525,-0.007958021,0.028288374,-0.055573344,0.016184036,0.08595058,0.11725471,-0.05299591,-0.0361704,0.060968753,-0.0055941264,-0.040245984,-0.03427584,0.015083161,0.067588046,-0.0010230208,0.0031547495,-0.004115228,-0.01496495,-0.039269548,-0.04087793,0.028324645,-0.11731796,-0.09129062,0.016978512,-0.01969756,-0.014248337,-0.016478151,-0.005527258,0.07312695,0.0021814355,-0.040731195,0.017225463,-0.04456723,-0.10087501,-0.07629607,0.12039799,-0.022573756,0.027126925,-0.043948956,-0.008242176,0.07709751,0.0011837619,0.012689845,-0.008047317,0.06800811,0.012934208,-0.01081294,0.055335093,0.03241816,-0.0098517295,0.08003311,-0.10878851} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:19.076234+00 2026-01-25 01:27:51.496702+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1276 google ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB 1 t 1279 Soho Club unknown Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba. viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba. 3 2020-01-31 18:34:31.336452+00 lt v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus.", "P1.02": "Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba."} {0.015514456,0.09374817,-0.008467133,-0.0048939665,-0.101751,0.038762886,-0.007341102,0.041155927,0.03561976,-0.030757835,0.13165256,0.012831356,-0.027457243,-0.005931268,0.03580656,-0.0036701332,-0.04999418,0.12025129,-0.07909484,0.047726206,0.06273037,-0.020114595,-0.050113797,0.059451487,-0.01427973,0.007717139,-0.0006737672,-0.03572983,0.037176196,-0.05351824,0.057584707,-0.030124765,-0.06806099,0.035967164,0.0067180926,0.02469135,-0.07122831,0.006570051,0.06496764,0.06901784,0.0055210334,-0.053927336,-0.018379021,-0.09906162,0.022078825,-0.011401702,-0.08689549,0.040117424,0.027278315,0.008612015,-0.13578779,-0.012788117,-0.08533176,-0.04837045,-0.001805978,-0.15868564,0.017065452,0.004487195,-0.0074749026,-0.0025066342,0.08398373,-0.0039970805,-0.03144608,-0.014860333,-0.066590905,-0.028609302,-0.064178936,0.03116192,-0.024906313,-0.029706966,0.014058001,-0.071797185,-0.017668338,0.034071676,-0.12112302,-0.002860879,-0.054084226,0.017595401,-0.053153135,-0.035637453,0.07887908,-0.007921867,-0.06311672,0.09600884,0.007962654,0.05520087,-0.04199883,0.002416067,0.059514716,0.004706128,0.006138656,0.059180304,-0.050513297,-0.0005674827,-0.024445057,0.011114028,-0.050396852,0.016320856,-0.01997367,0.018686058,0.019370316,-0.015670242,0.026823433,-0.024624797,-0.13704279,0.027592365,-0.027227212,-0.10220567,0.041517626,-0.014266265,-0.08051987,-0.018924449,-0.109675616,-0.112457,-0.054114785,0.053906158,0.0011259038,-0.026243627,-0.025437865,-0.030133585,0.02389289,-0.026835306,0.11361689,-0.0215195,0.0045441873,-0.09876229,0.053331252,1.6378555e-32,-0.056085166,0.0060273153,0.031080285,0.042122968,0.025124462,-0.0031741362,-0.057559475,-0.09444841,-0.0015054675,-0.07003117,-0.08269267,0.06915934,-0.14321288,0.012628978,0.04392631,0.036983702,0.035736136,0.005542078,-0.050473433,-0.09161396,0.0076062833,0.013690992,0.003174255,-0.004267382,-0.035849992,0.057273325,0.025454808,-0.07354497,-0.05374319,0.034694333,0.117718324,0.074942626,-0.07404014,-0.07769648,-0.04805678,0.020548146,0.015489929,-0.0023279395,-0.04231622,-0.010004011,-0.04221636,-0.028929016,0.0642409,0.08716271,0.0077631734,0.03475236,-0.012027805,0.011681908,0.07312761,0.022272795,-0.08326476,-0.034887653,-0.0074983514,0.034936197,0.007370148,-0.03832759,-0.03296972,0.087191045,-0.027090445,-0.082012385,0.010992656,0.0073901885,-0.028021768,-0.023165178,-0.04028544,-0.04404914,-0.005158518,0.042041034,0.059600398,0.0032294507,-0.017368233,-0.02944583,-0.010651314,0.033976067,-0.0074218195,-0.030759716,0.013947473,0.07658395,-0.017876634,0.09214358,-0.077730864,-0.044536255,0.00021518287,-0.03448382,0.060459014,0.04252715,0.008268251,-0.023209805,0.04567452,0.02983401,-0.080574855,0.09681803,0.061948042,0.077252574,0.0359245,-1.7258161e-32,0.088812426,-0.016475767,0.052582,0.062430654,0.05325224,0.010668088,-0.114869475,0.038613357,-0.046973377,-0.01088892,-0.085328154,-0.043439444,0.05281893,0.0071022036,-0.04201198,0.056875724,0.1221571,0.04216792,-0.080971844,-0.02615059,-0.037476555,0.117445536,-0.0077859284,0.07088641,-0.07932929,-0.0020420267,0.08822319,-0.06394728,-0.04231955,-0.020232769,0.07587947,0.0010981106,-0.01596827,0.07032417,-0.05830881,-0.035460263,0.05160354,0.03125731,-0.02739658,0.01644459,0.09599098,-0.023839409,0.024019238,-0.0035442316,-0.0020512156,-0.08010586,-0.08854955,-0.053145867,0.0006936506,-0.004389119,0.1051147,0.018424023,-0.043513678,0.014563423,0.05218794,0.027613448,-0.010426869,-0.01676623,-0.04921916,0.0069752936,0.023489105,0.023220483,-0.07060128,-0.025876366,0.025361743,0.01308391,-0.025873449,0.0046277,0.013459855,0.0069556306,0.015986051,-0.066082716,-0.056070868,0.0015785798,-0.020958642,0.0019037034,-0.07733061,0.02464442,0.029912079,-0.029603591,0.011688861,-0.011596292,-0.0353633,-0.028599173,0.0136167295,-0.048549503,-0.017135557,-0.055995014,0.054582234,0.016520066,-0.029908005,0.04348902,0.03150321,0.04646533,-0.04410351,-5.453303e-08,0.026195858,-0.026710026,0.060852602,0.05331072,-0.066384554,-0.04828098,-0.05359947,0.04565396,-0.05855476,0.040224094,-0.014846367,0.013442658,-0.023262657,0.05051416,0.0413749,-0.02155232,0.05477885,0.13783805,0.016385034,-0.040124644,0.049954906,-0.030799171,0.07171407,0.013927539,-0.06460512,0.009507733,0.00924921,-0.0049933693,0.044700004,0.003436125,-0.015313882,0.041064247,0.019746123,-0.040161878,-0.048753604,0.08295698,-0.007707371,-0.050669406,-0.030578027,-0.0060357447,0.050262466,-0.07840702,0.05196338,-0.017462185,-0.039510317,-0.03820735,0.07696613,-0.013167186,-0.02799818,0.05191906,-0.022236716,0.0053410106,0.061416563,-0.025418451,-0.09718985,-0.0065273405,0.035917904,0.051869825,0.018101763,-0.09073094,0.10236775,-0.010651616,0.01806709,0.026484562} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:59.391962+00 2026-01-29 18:36:00.669244+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 200 google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE 1 t 203 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I rented a car in Gran Canaria from ClickRent. It was a couple of kilometers away from the airport. A taxi there cost 7 €. I took precise photos of every little scratch the car had prior to renting which were not on the report. Renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since I was telling about the scratches before leaving.\n\nI had a small worry about the return since price of the rent was quite cheap compared to other rental companies. Also terms on the agreement was bad for a person renting the car. I was quite anxious during the holiday about the rental even though I had full insurance from booking.com. If I would have had some problems, first I would have had to pay ClickRent and after that claim the money from booking.com.\n\nBefore returning the car I vacuumed it completely clean since I had heard stories about interior needing to be completely clean. The agreement also states that a car having sand could result in a cleaning fee. I also recorded every conversation with the staff.\n\nReturning the car was easier than I thought. They were not trying to find small scratches from the car. I also got the full deposit back in two days. I think it is better to be safe than sorry. If you rent from ClickRent you should read the agreement and take photos of every small scratches. I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. I gave only 3 stars because of the stress from the other reviews and terms in the agreement. i rented a car in gran canaria from clickrent. it was a couple of kilometers away from the airport. a taxi there cost 7 €. i took precise photos of every little scratch the car had prior to renting which were not on the report. renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since i was telling about the scratches before leaving. i had a small worry about the return since price of the rent was quite cheap compared to other rental companies. also terms on the agreement was bad for a person renting the car. i was quite anxious during the holiday about the rental even though i had full insurance from booking.com. if i would have had some problems, first i would have had to pay clickrent and after that claim the money from booking.com. before returning the car i vacuumed it completely clean since i had heard stories about interior needing to be completely clean. the agreement also states that a car having sand could result in a cleaning fee. i also recorded every conversation with the staff. returning the car was easier than i thought. they were not trying to find small scratches from the car. i also got the full deposit back in two days. i think it is better to be safe than sorry. if you rent from clickrent you should read the agreement and take photos of every small scratches. i would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. the shuttle bus worked well and i was at the airport in 10 minutes after returning the car. i gave only 3 stars because of the stress from the other reviews and terms in the agreement. 3 2025-03-31 01:27:48.340181+00 en v5.1 V1.01 {V1.01} V- I2 CR-W {} {"R1.02": "I gave only 3 stars because of the stress from the other reviews and terms in the agreement.", "V1.01": "I rented a car in Gran Canaria from ClickRent. It was a couple of kilometers away from the airport. "} {-0.007591801,0.081796356,0.041702557,0.013518179,-0.006904163,-8.407655e-05,0.0642041,0.016501555,0.01994405,0.029283246,0.106678635,-0.0154673485,0.044922136,0.034079835,0.015104833,-0.06093788,0.07484675,-0.0030042692,-0.028022442,0.05552687,-0.026943158,-0.044290867,-0.02615862,-0.040292453,0.074239485,0.010403364,0.0067574866,0.060170196,0.0077438545,-0.06611783,0.0048260675,0.026035588,0.009510913,-0.0705615,0.039362118,0.006372747,-0.03568308,-0.12489194,-0.043887097,-0.0372075,-0.015826333,-0.0049347566,0.0037611849,-0.04429131,0.008820102,0.013102257,0.10660574,0.079670295,0.0215053,-0.0070907525,0.018482188,0.018484414,0.010087934,-0.04788925,-0.1253868,-0.05015914,0.048887383,0.009547416,-0.009424034,-0.016565982,0.0060485364,-0.0237583,-0.019996125,0.026559873,0.054752685,-0.0010913701,-0.031703115,-0.027792655,-0.015857322,0.003889642,0.05782139,-0.07043054,0.024024907,0.016738884,0.009497235,0.0077870362,-0.03058023,0.06284777,0.015732395,-0.11143446,0.02587414,-0.003788504,-0.008581145,-0.036441654,0.028312534,-0.045524713,0.03653864,0.053030286,0.06481834,0.010699725,0.06775418,0.039102767,0.014826426,0.0006297629,0.09934566,-0.004608999,0.006544245,0.020881386,0.06359418,0.038172424,0.100907244,0.07851398,-0.087449096,-0.11122281,-0.009435887,-0.0004740563,0.052861713,-0.02601454,-0.01803156,0.0014520135,-0.027092554,-0.00153934,0.037991326,0.00026861165,0.0058249035,0.039519224,-0.04585307,0.03211466,0.0407236,-0.0341772,0.045464598,0.018117195,-0.053193707,0.003251387,0.018005993,-0.022066021,0.110308655,1.2392209e-33,-0.013004062,0.068203814,-0.045196664,-0.036414545,0.059372656,0.00963897,-0.0020596895,0.113837816,-0.027193341,0.07024817,0.026335882,-0.034745634,0.003998189,-0.112178974,-0.026010975,0.16373217,0.0067719743,-0.03861124,-0.039973255,0.010219703,-0.016818345,-0.010558567,0.071317166,0.054624595,0.0016144889,0.0028295424,-0.022917265,-0.050424006,0.038766023,0.0005536591,0.0005994774,0.01434641,0.026897524,0.03906754,-0.01414629,0.0817166,0.0030798155,0.032896236,-0.113701284,-0.03836108,-0.034864016,-0.02053292,-0.048438206,-0.038145114,-0.010055847,-0.03997532,-0.024438616,-0.04225801,-0.12916507,0.05569792,-0.015630832,-0.0066967816,-0.037299532,0.03718829,-0.1261353,0.05654424,-0.018093674,0.041118134,0.0044907457,0.01988731,0.06381696,0.04739555,0.022772769,-0.02049887,-0.11046122,-0.04624405,0.0061508575,0.008759239,0.05887065,-0.056423597,0.036198825,0.03877985,0.048437826,-0.02708271,0.015553019,0.010968003,-0.08319065,-0.049562,-0.01406634,-0.011036988,0.0037156092,-0.038637158,-0.025464313,-0.002182606,-0.06587943,0.057929166,0.08083496,0.016961355,0.011005605,0.032919355,-0.018634975,0.03441811,-0.010657092,-0.055844102,0.06644332,-2.9322844e-33,0.02641312,-0.05128322,0.01665932,-0.059855036,-0.11429846,0.052343484,-0.09858523,0.014969331,-0.054472692,0.03768701,-0.07420907,-0.018929396,0.052098252,-0.03132759,-0.038633328,0.003798434,-0.02076756,-0.08156513,-0.019370954,-0.0031297354,0.060684122,0.08090166,0.05302414,0.09911416,-0.061147667,0.062474746,0.016879924,0.026967617,0.012676613,0.009547113,0.037224833,-0.018996274,-0.076795995,0.015500293,0.077839896,-0.026250508,0.11811051,0.032753635,-0.09166022,0.0025589087,-0.0035657638,0.0034693086,-0.021940283,-0.03845326,0.089184806,-0.13168526,0.0009230253,-0.06345418,0.09761948,0.033000052,0.09602323,-0.010957385,-0.008050336,0.049316317,-0.013360065,0.0027589211,0.033715025,-0.08548351,-0.03141436,0.037920848,-0.015892062,0.020487694,-0.07632092,-0.031109994,0.022761725,-0.09775167,-0.022034703,-0.032235228,0.102542974,-0.025774771,-0.10432429,-0.02447303,0.01297331,-0.059071947,0.029691303,0.08284983,0.099485606,-0.04379565,-0.02320042,-0.031722795,0.051649556,-0.07141149,0.08763483,0.045418758,0.043068934,-0.044285387,0.0045377766,-0.1251803,0.050136562,0.09388302,-0.009392208,0.049661208,-0.0059765144,-0.040783595,-0.022683706,-5.8980447e-08,-0.025169227,-0.009629273,0.068352714,0.02442041,0.0008027945,-0.12926129,-0.012630551,0.11215577,-0.049286876,-0.0055708047,-0.011751662,-0.085069634,-0.032347903,-0.013094032,-0.0980075,-0.0051019946,0.044023942,0.029769406,-0.030611606,-0.008073346,-0.042810608,0.013428364,-0.0827857,-0.012494909,-0.03212127,-0.0695743,-0.018633138,0.012139558,0.014047511,-0.056019913,-0.108656995,-0.0030781806,0.093125634,-0.04668819,-0.09496629,-0.12505727,0.04715825,0.002408311,0.029241515,-0.044286143,0.013731921,0.010349595,0.03184461,-0.018615965,-0.027625559,-0.012336898,-0.03963558,-0.08770351,0.031015046,-0.029323168,-0.039873913,-0.0071064406,0.0090280445,0.13937646,-0.015551076,-0.009217778,-0.0016944259,0.054214466,0.028738255,0.049714085,-0.014621701,-0.028985813,-0.07757377,-0.019812798} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:41:47.045735+00 2026-01-25 01:27:50.01768+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 255 google Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB 1 t 258 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Strongly suggest to choose this company . Very reliable and not trying to rip off . strongly suggest to choose this company . very reliable and not trying to rip off . 5 2025-12-26 01:27:48.340665+00 en v5.1 R2.02 {} V+ I2 CR-N {} {"R1.02": "not trying to rip off", "R2.02": "Strongly suggest to choose this company . Very reliable"} {-0.07567695,-0.043979898,-0.031221729,-0.018529508,-0.03129007,-0.004365297,-0.015076002,0.029657729,0.021761393,-0.083897874,-0.0111089805,0.02736615,-0.046788555,0.014974296,-0.04290679,-0.042265806,0.09592889,-0.083209194,0.05382808,-0.087706916,-0.04552331,-0.061150003,-0.0042285398,0.018221056,0.07536179,-0.015767148,-0.008778319,0.109224625,-0.015311134,-0.06672699,-0.010852995,-0.029498143,0.0011813431,-0.035235602,0.035828833,0.010015157,-0.02959663,-0.045707524,-0.049752682,0.010403458,-0.04096954,0.022384671,-0.010176969,0.007786139,-0.029217683,-0.005970526,-0.018348133,0.058803495,0.04295571,0.10360067,-0.021187358,-0.069880664,0.053396635,-0.009135345,-0.057118688,0.021128649,-0.09627078,0.004701329,-0.024641393,-0.040943503,0.013621361,-0.05468704,-0.045014054,0.07859339,0.04511045,0.05886323,0.009156617,0.0028401609,-0.014787675,-0.11047206,-0.051413935,-0.08612961,0.030136513,0.12320785,-0.047294997,0.04869236,0.054047585,-0.06593304,-0.047762398,0.027220268,-0.037572302,-0.0014913583,-0.043287817,0.013702152,0.025299462,-0.07041473,0.07450808,0.010421102,0.035587363,-0.0676057,0.058867835,0.120061554,0.07936992,-0.02241807,-0.04401624,0.110287465,-0.04154192,0.003257779,-0.02860952,0.009462234,-0.0107194055,0.043649,-0.027024738,-0.040395286,-0.008225249,-0.09189154,-0.02411058,0.0415354,0.088645674,0.06646953,-0.06411893,0.07736353,-0.046030324,-0.05042436,0.015099713,0.017413788,-0.13400666,0.025515497,0.0768759,-0.0019834514,0.052680306,0.04783278,-0.010098193,-0.0015375658,-0.037274197,-0.027963715,0.031191353,-2.1587085e-33,-0.060927417,0.10832403,0.033132955,-0.0136617925,-0.020008793,0.036743235,-0.00074864185,0.05716646,-0.04513579,0.030623037,-0.09893521,0.030595163,-0.041352,-0.034376822,-0.01490752,0.027271375,-0.01587736,0.080885515,-0.018976621,0.0044689863,-0.042039312,-0.0054372405,0.022728913,0.013874583,0.047829773,-0.09645016,0.048206188,0.0430679,0.079543374,0.034363627,0.018010473,-0.069307655,-0.043517973,-0.06405665,-0.0053841127,0.057256855,-0.09734562,-0.04093553,-0.030170914,0.013238584,-0.05405202,0.030488063,0.015029214,0.013357225,0.006572635,-0.010951954,0.012426573,0.0076506482,0.032724574,0.042831235,-0.10260352,-0.010207963,-0.051647853,0.09005965,0.025952633,0.011929892,0.04085198,-0.014753441,0.08851644,0.034607645,-0.021153556,0.037615985,-0.08266047,-0.051875927,-0.052416112,0.04083427,0.01185034,-0.031155394,-0.008628617,0.014727316,0.07928747,-0.0380368,0.08789724,-0.0030610682,-0.046979476,0.0059283683,-0.0808138,0.02651482,0.029881222,0.06505969,0.023651017,0.022944795,0.035431817,0.014043306,0.067714795,0.03405681,0.034810934,-0.112844676,-0.06318156,0.14642172,0.025749162,0.02717691,0.032603767,0.06349425,0.013859896,1.3883969e-33,0.013964757,0.0070610936,0.08951413,0.09704301,0.0309399,-0.023938088,-0.057918042,0.055272844,0.04952799,0.02653736,0.018501978,0.041667745,-0.019579044,-0.012239269,0.0047140485,0.008817348,0.011490709,-0.1416464,-0.015147029,-0.08482781,-0.020052247,0.060120806,-0.11004039,0.032859385,-0.038313996,0.043581005,-0.07494382,0.017462594,-0.0031070395,0.012201417,-0.040066134,-0.015784599,-0.08371296,0.07381965,-0.004002295,0.023399306,0.03608822,0.10567079,-0.006205766,-0.018818723,0.018869009,0.013728848,-0.028133959,-0.069331184,-0.058465526,-0.11278684,0.059657488,-0.014879336,0.06067016,0.056693405,-0.036995377,-0.0039043033,-0.030527396,0.008728139,-0.013969514,0.028027251,0.050372217,0.027287388,-0.056934133,-0.0396455,0.0015999195,0.055096947,0.031180907,0.070871726,0.082685016,0.032521877,0.04824901,0.005038305,-0.03188917,0.009729708,0.027301848,0.0049975985,0.08334515,-0.037454106,-0.045499895,-0.023462592,0.032331195,-0.0142349545,-0.03573791,0.0013328869,0.04265509,-0.06879637,0.0041050008,0.060901217,0.028764745,0.06286494,-0.010135539,-0.07194897,-0.009720612,0.048780803,-0.018042129,-0.02997045,-0.08182626,-0.026550036,0.0024160594,-2.47928e-08,0.009360155,-0.05185219,-0.006686152,0.009916232,-0.007831802,-0.12041558,0.03523719,0.010821352,-0.013503927,0.034932476,0.050853677,-0.07180235,-0.061046105,0.09658819,-0.12126846,-0.072626255,0.041591883,0.13437445,-0.030425554,0.079428315,0.0036727663,0.043968767,0.024449984,-0.020821434,-0.014297729,-0.031243157,-0.044313103,0.062097665,0.080354616,-0.0120803155,-0.05761682,0.04089507,0.03718903,-0.009834786,-0.03641543,-0.065320015,0.042050894,-0.0061772596,-0.014497858,0.076048814,0.008057735,-0.04236125,-0.041054197,0.015348345,0.084327266,-0.04103655,0.0302178,-0.036572043,0.03228291,0.009657689,0.0010263304,-0.03806382,0.08495573,0.018719159,0.0086306175,-0.057619616,-0.048918303,-0.03395157,-0.018342748,0.11829235,-0.006074803,-0.12652124,0.03979335,0.070763744} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:50:18.283168+00 2026-01-25 01:27:50.667731+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 229 google Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB 1 t 232 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The car and the service were great. The only thing is that the shattle from the airpors is not simple to get the car and the service were great. the only thing is that the shattle from the airpors is not simple to get 4 2025-12-26 01:27:48.340522+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"A1.04": "The only thing is that the shattle from the airpors is not simple to get.", "O1.01": "The car and the service were great."} {-0.039465476,0.08370748,0.07075571,0.00036443034,-0.016414657,0.006644431,0.045581058,-0.0035206052,-0.07531971,-0.04381641,0.07039918,0.10049867,0.06954144,-0.017358644,0.022794077,-0.0661004,0.13293795,-0.14647771,-0.07153226,-0.07948581,-0.07194923,-0.01664768,-0.03168807,0.010511457,-0.05468219,-0.0005667441,-0.082033165,0.05753446,0.013901879,-0.056939065,0.0113438545,0.014777744,-0.00409052,-0.03072701,0.018283922,-0.01968227,0.07691204,-0.06109586,-0.05358886,0.024428077,-0.024008142,-0.053319927,-0.021528926,0.017841542,-0.014240404,-0.035171725,0.07233431,0.010391888,0.096479826,-0.024020055,0.03515758,-0.026267385,0.055757944,-0.05196759,-0.05349551,0.017071495,-0.08659949,0.028423434,-0.04780654,-0.06299393,-0.023405394,-0.022978872,-0.02058025,0.006272844,0.01804608,-0.08602258,-0.06345287,-0.09244535,0.07785933,-0.0427076,-0.07786112,0.04855605,0.039312385,0.029901393,-0.014786128,0.055278614,0.053396672,-0.07003536,0.029450951,-0.010092971,0.07822502,-0.061896715,-0.05555267,0.04967982,0.012568365,-0.08773797,0.023171416,-0.072035745,-0.004228405,0.023636486,0.037592866,0.03983951,0.0005608009,-0.04110772,0.036347467,0.02171756,0.011083712,-0.0140979905,-0.0023400784,0.05853152,0.068282045,0.08095221,0.017699687,-0.040792007,-0.04797962,-0.008040202,-0.043022342,0.07676928,-0.03610994,-0.0026000056,-0.018871443,0.011074036,0.04421376,-0.043795556,-0.07394862,0.10344529,-0.043486755,0.0011178199,-0.006643028,0.015396079,-0.0024928905,0.016094629,0.043477908,0.06343222,-0.044159465,-0.007456417,0.100639634,-3.2484544e-33,-0.05269802,0.08647671,0.007368218,0.031158775,0.0040184655,-0.004730447,-0.027699048,0.011767197,0.023824718,0.05600465,-0.031151047,0.037264887,-0.013141767,-0.09058277,0.08744189,-0.02003352,-0.08565882,0.0014250714,-0.106296256,-0.052658882,-0.084742256,0.011456015,-0.017809397,0.007959733,0.11341809,0.034049384,0.004090911,0.034879662,0.05812149,0.034394536,-0.0009325954,0.039767012,0.017695365,0.048869066,-0.03045626,0.02707765,-0.067080595,-0.080675624,-0.06365787,-0.04221086,0.016986223,0.029588412,-0.06829712,0.06111928,-0.041190047,0.06518727,-0.017015364,-0.001778394,0.0151083935,-0.008382543,-0.040760957,0.02332604,-0.050763715,0.031589374,-0.023681523,0.10646742,0.07073813,-0.0077809244,-0.022606745,-0.031268533,0.00024571986,-0.00077922444,0.050360385,-0.06169959,-0.035105716,-0.016963672,0.011687099,-0.008697649,-0.008337745,0.05083095,-0.00389336,0.014176018,0.01713274,-0.07364672,0.05264435,0.017806077,0.023703884,-0.07826239,-0.026386384,-0.026753567,0.07055853,0.024235252,0.06982096,0.013023716,0.09551878,-0.032145664,0.01664502,-0.031623952,-0.023492709,0.044295732,-0.05124151,0.07644883,0.0131835155,-0.011104355,0.048917547,1.0349912e-33,-0.010962395,0.0285777,0.0051376424,0.013484491,-0.03390775,0.044850167,-0.060917247,0.05289717,-0.04753511,0.13310377,-0.058712725,0.038078945,-0.025781635,-0.0018767748,-0.017319659,-0.015869457,0.050284956,-0.05668095,0.036575742,0.010379281,-0.021563299,0.11151525,0.021427944,-0.05458954,-0.08691167,0.026539134,-0.04660581,0.016365796,0.0004032669,-0.04937949,0.043062836,0.01631871,-0.00332498,0.006479894,-0.012355034,0.025705533,0.03202207,0.044569913,-0.05972429,-0.04179763,-0.012327838,-0.13610229,-0.061631095,-0.021772122,0.005727337,-0.066476464,0.062818296,-0.120394856,-0.0047107884,0.013362867,0.042116404,-0.067289494,-0.08165265,0.129702,-0.051108982,0.0413952,0.117447205,-0.025686475,-0.0075389077,-0.025201619,0.048474256,-0.016898826,-0.07878232,-0.040343236,0.015050677,-0.10616878,0.08555031,-0.06108602,-0.022407435,-0.04618199,-0.06608027,-0.046860874,-0.003080816,0.090838835,-0.023516979,0.008132203,0.017696748,0.0060413633,-0.045717757,-0.026631793,-0.009461359,-0.012927745,-0.023620376,0.010615219,0.064085886,0.0037076257,0.054599266,-0.103033155,-0.0010364095,0.09789364,-0.002464492,0.03772039,-0.0068688365,0.029896421,-0.019822074,-2.8208387e-08,-0.00643979,0.12998201,0.040597763,0.045643423,-0.048520435,-0.04519421,0.006703932,0.07493457,-0.056552373,0.0839995,-0.031860095,0.0054376097,-0.031705532,0.05423715,0.046493493,-0.0018889788,0.011329012,0.021557333,-0.043906942,0.009374711,-0.06149298,0.10131183,-0.027636599,0.01084477,0.013460311,0.032573,0.016097024,-0.017030673,0.07157219,-0.018369377,-0.08442785,-0.019520303,0.055845384,-0.03523227,-0.07605441,-0.02975162,-0.030920656,-0.08021984,-0.017414657,-0.03869612,0.05950031,0.034903992,-0.08983966,0.050517157,0.06425209,0.075560465,-0.049495965,-0.049092807,-0.095426016,0.018834643,0.013526543,-0.0078091784,-0.03563274,0.06477112,0.047403064,-0.0697455,0.0049914983,-0.0341708,0.02122789,0.08238125,-0.06956429,0.052696176,-0.09464528,0.066483} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:46:30.664065+00 2026-01-25 01:27:50.142+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1487 google ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE 1 t 1490 Go Karts Mar Menor unknown Loved this place. Could do with more time in track, but great fun. loved this place. could do with more time in track, but great fun. 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"J1.05": "Could do with more time in track, but great fun.", "V4.03": "Loved this place."} {0.028977927,-0.004123229,0.012071165,0.018391144,-0.07545767,0.036809564,-0.024139566,-0.051679753,-0.051355865,-0.040496662,-0.01227079,0.0037447468,0.0058424417,0.046341505,-0.0034523592,-0.0047100764,0.08799491,-0.022418251,0.043309376,-0.0584537,-0.018541789,-0.023678076,0.050071143,0.072690494,-0.08994887,0.069547184,-0.07175779,0.0893808,-0.02362609,-0.034219544,-0.044290632,0.06931742,0.005631813,-0.011656903,0.027833436,0.014068217,0.039349064,-0.06274256,0.040899158,0.031620305,-0.0089006815,0.04522512,0.06691794,0.04737909,0.0052122534,0.07967074,0.0063830256,-0.083834484,0.04740178,0.06383365,0.052479967,-0.038809758,0.04604574,-0.0815256,-0.06174579,0.0692522,-0.02881504,-0.050232027,-0.018922571,-0.09773777,0.060125448,-0.011490811,-0.021180915,0.018512983,-0.021222873,-0.07746147,-0.05055902,0.06815881,0.059775863,-0.03244327,0.029281812,0.05739357,0.061302416,-0.014826819,0.015476124,0.04822439,-0.061972547,-0.02261903,-0.052690648,-0.0043864474,0.0539284,-0.017305978,0.044424262,-0.020224188,-0.05070259,-0.13028055,0.014189103,0.04039504,0.035131995,-0.07553268,0.025282757,0.078880556,-0.05191888,-0.072480574,-0.016584331,0.0057113543,-0.05897636,0.07867033,-0.006245841,0.01947327,0.015844177,0.070693076,0.005305838,0.03130662,-0.03847011,0.042056885,-0.012562415,0.12405965,0.020815838,-0.0031893451,0.069177166,0.0069876793,0.012273271,0.006161242,0.033872794,0.024269411,-0.023563515,0.051650222,0.02434453,0.02767708,-0.0070322906,0.02491939,0.012072324,0.018889228,0.009109536,-0.0129275415,0.07376802,-2.671452e-33,-0.0031797762,0.016557097,0.022980819,-0.05873595,0.12352245,0.0027638131,-0.08718241,-0.05371982,-0.1130012,0.029569667,0.043516543,-0.062166814,0.00016273388,-0.07207444,0.036702644,-0.07218992,-0.0412746,-0.008957449,-0.04950374,0.022186488,-0.039388157,-0.037770264,-0.029533764,-0.010282162,0.04115683,0.011882121,0.002357003,-0.029586751,0.072956495,-0.0042541563,-0.04167073,0.019055761,-0.10443536,0.03202224,0.02583656,-0.014453319,-0.053733423,-0.0367483,-0.00016200208,0.026557846,0.049528673,-0.028075634,-0.014534703,0.04196495,-0.041466013,0.036335766,0.01607813,0.04551902,0.077967755,0.004096269,-0.08116618,-0.037664395,-0.06463237,-0.0053074774,0.07301667,-0.0064213388,0.015114842,0.03609458,0.02777148,-0.015548866,0.10041842,0.04920964,-0.04351703,-0.109507345,-0.028186152,-0.035473697,0.017132847,-0.017883167,0.07729639,0.012417004,-0.0044831475,-0.049810145,0.03842353,-0.00012572955,0.06203682,0.008443321,-0.06386185,-0.018498268,-0.047044583,-0.010028186,-0.004255403,-0.016074164,-0.020792145,0.025747303,0.07459069,-0.009067243,0.053458977,-0.17275979,-0.106158465,0.025582677,-0.052379467,0.01956696,0.004778789,0.020795817,-0.023396358,1.3503247e-33,0.11797395,0.027020294,0.06165001,0.0062684994,0.050453708,0.013001342,-0.06468432,0.04405127,0.074549,0.07134418,-0.030526409,0.01258202,0.0479852,0.019082185,-0.1182704,-0.02144122,0.05548041,0.020955091,-0.007676751,-0.039100755,-0.019602353,0.020395711,-0.017523108,-0.011311789,-0.022761226,0.06625094,0.019711811,-0.026587598,-0.016183898,0.00371608,-0.08240744,0.036706105,0.015147561,-0.061801825,0.00500756,0.104055054,0.054381277,0.018969454,-0.043218978,-0.02997573,0.0019900172,0.021700088,0.012351548,-0.0049521253,-0.0031242343,0.015717778,-0.04140631,0.055775046,-0.11084164,-0.0024552182,-0.0123680495,-0.059228186,-0.03254954,-0.068201564,0.03586683,-0.0401655,0.06869876,-0.06644683,-0.010133104,-0.043379378,-0.118575744,0.07348768,-0.05207511,0.04123268,0.095359564,-0.022234933,-0.028017186,-0.090185925,-0.05842459,0.06903701,-0.10463175,0.032186005,-0.020951532,0.05038001,-0.011014791,-0.06913593,0.04629335,-0.01837963,0.020271363,0.050473854,-0.00022169342,0.048988905,-0.03846696,-0.025316393,-0.007140547,0.13801205,-0.07026876,-0.0050287456,-0.017774262,0.035051167,0.09598178,0.10676709,-0.028656764,-0.034454107,-0.07983486,-2.2993465e-08,-0.010964104,0.11075327,-0.07891628,-0.03165007,0.047440797,-0.05117468,0.104327336,0.0042465096,-0.017797913,0.02921678,0.088085815,-0.030921172,0.007045165,0.067021325,-0.008161163,-0.045155346,0.058367196,0.1278883,-0.016461473,0.028856223,0.04777888,0.05150802,-0.02563248,-0.0019188469,-0.05570064,-0.010041794,0.022163603,0.040919423,0.07115374,-0.11278196,-0.021266231,0.049830087,-0.013258647,0.046454143,-0.02142898,-0.11002002,-0.04336151,0.014109527,-0.033041686,0.03980643,-0.074617185,-0.06255297,-0.022260867,-0.039395336,0.017815804,0.014042716,0.039995514,-0.013476619,-0.03508522,-0.047596294,-0.09496698,-0.03281365,-0.04029475,0.07384042,0.08001519,0.052442413,-0.057473626,0.0067769145,-0.054415554,0.08697308,-0.058536716,-0.032424174,-0.060423214,0.06612076} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.850404+00 2026-01-30 02:01:09.518244+00 22c747a6-b913-4ae4-82bc-14b4195008b6 250 google Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB 1 t 253 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Null !!\nTerrible\nHorrible\nWaiting in the queue for 100 minutes is not the way to start your trip.\nNo Bueno null !! terrible horrible waiting in the queue for 100 minutes is not the way to start your trip. no bueno 1 2025-12-26 01:27:48.340626+00 en v5.1 J1.01 {} V- I3 CR-N {} {"J1.01": "Waiting in the queue for 100 minutes is not the way to start your trip."} {0.009322026,0.012980697,-0.055261035,-0.033164226,-0.039274625,0.03244584,0.054724213,-0.0002733408,-0.04395117,0.026281355,0.031756878,-0.088365585,-0.04945164,-0.02056614,-0.052189257,0.041364662,0.053477652,-0.12328872,0.031647548,-0.013278479,0.0024140673,0.02951287,0.005551117,0.05111537,-0.028325867,0.030941194,0.0057777506,-0.0011778951,0.044293217,-0.063293464,-0.112628,0.068713196,-0.03831646,-0.05746116,0.06381187,0.07358901,0.04887558,-0.068693526,-0.035891768,0.01992997,0.06756796,0.015926633,-0.041536838,0.07652865,0.019931605,-0.07969495,-0.040646587,0.034333367,0.0950481,-0.047579266,0.030692292,0.013625311,0.0094456235,-0.019501269,-0.011023021,0.08773058,0.0058750785,-0.058158044,-0.0067915735,0.0052603986,-0.088662244,-0.06240355,0.007690616,-0.009282758,0.034624882,-0.004227858,-0.09705351,-0.06471721,0.02843822,0.044134397,-0.0022826751,0.0015982505,-0.08382152,0.07071246,-0.026343009,0.010163708,-0.018777017,-0.038206104,-0.022795586,-0.016897948,-0.01966066,-0.09351455,-0.039444406,-0.030172274,0.049473375,-0.0948199,0.0382929,0.042137835,0.02339406,0.010593273,0.03543838,0.07211536,-0.018503346,0.014587672,-0.06148678,0.09240564,0.008831108,0.046453144,-0.04058724,0.062186357,0.056576088,0.034964614,-0.01885865,0.017290728,-0.067320414,-0.021276284,0.053797342,0.021808637,-0.026721226,-0.03637303,-0.01706596,-0.008606853,0.12713099,-0.0026846514,-0.090565845,0.047702163,-0.057055935,0.044112794,0.059291266,0.016550671,0.0894849,0.012623746,-0.02780292,-0.043928906,0.004248333,-0.04719805,0.14818464,-1.9981457e-33,0.00090668985,0.011902568,0.057112772,0.0352149,0.02781911,0.02113408,-0.08378347,0.10212324,0.02662036,-0.053688336,-0.054307695,-0.06912361,-0.011512392,0.003990697,-0.04382919,0.048201486,0.0434016,0.00023900434,-0.03374437,-0.041757464,0.05834869,-0.09423362,-0.051051732,-0.0026597965,0.025027856,0.041124687,-0.078215025,-0.0604319,0.027647119,0.07497005,-0.024544915,0.014624289,-0.025614226,-0.009744024,-0.051287185,0.04519768,-0.004370548,-0.0089816945,-0.05707486,-0.051417343,-0.08709457,-0.0046187905,-0.10219961,-0.0046225335,-0.04042908,-0.10417174,0.06439208,0.016857417,0.0089357775,0.09525105,-0.09839478,-0.03306815,0.014525903,0.06573865,-0.007530577,0.034051508,0.087102994,-0.0053899367,-0.082335465,-0.009361497,0.06921325,0.065451756,-0.008124275,-0.060861364,0.056411758,0.031705763,-0.026893266,-0.08273757,0.0029268265,-0.1155673,0.05184287,-0.03187477,0.08145859,0.00028067216,0.04734496,0.04349762,-0.050498582,-0.031707123,0.006726293,-0.029548844,0.033175465,-0.047712903,-0.024475288,-0.045250013,-0.001120772,0.032131653,0.07099067,-0.056289125,-0.018497303,0.0012327955,-0.07998999,0.022847582,0.01160807,0.06461763,0.041016217,4.610981e-34,0.037258804,-0.017107185,-0.0002643577,0.034968305,0.0536188,-0.044968534,0.049472515,0.011922667,0.05656688,0.028244184,-0.06681584,-0.018813366,0.028174479,-0.035547562,0.060982924,0.021255527,0.14051966,0.0010954889,-0.07249655,0.0761253,0.0069536734,0.037185177,-0.08652943,-0.024365954,-0.04634613,0.05411567,0.06090647,-0.024012113,-0.086881936,0.016364066,-0.018007219,0.010788214,-0.04362637,-0.0016981453,0.027327849,0.017370569,0.06749072,0.0719627,0.0064821914,0.06735654,0.025169652,0.015144547,0.0073979013,-0.038222615,-0.008273189,-0.009943042,0.059022017,-0.048804127,-0.052219916,0.016108533,-0.065324605,0.012426919,0.021408888,0.0803087,-0.02201067,-0.022820165,-0.057694945,-0.084717706,0.03591462,-0.03320306,-0.027884172,0.014562418,-0.021124987,0.033497732,0.052236922,-0.05458341,-0.030211419,0.10234422,-0.0053521595,-0.0654328,-0.07460989,-0.018812515,-0.05201576,0.04401529,-0.07046018,0.07141724,0.023080934,-0.063179076,0.023854977,-0.05864857,0.008701231,0.019164685,-0.03401237,-0.03972536,0.046556097,0.06459796,0.042824056,-0.06506912,0.008114586,0.041541427,0.00755897,0.05490187,-0.008679525,0.034561254,-0.04188986,-2.5998116e-08,0.028315416,0.020998642,0.087327816,0.066030085,0.110017,-0.1332868,-0.033780534,0.039853305,-0.01584393,0.04400246,-0.04895252,-0.0150495125,0.0023067936,0.025909778,0.0294157,0.03642507,-0.07716208,0.022852482,-0.049080662,-0.07350245,-0.049861535,0.06383828,-0.07227211,-0.07409885,0.009801655,0.07542073,0.13517925,0.0054138927,0.12453854,-0.060445033,0.02918805,0.073318,-0.05628042,0.040908497,-0.08692111,-0.01117271,0.06747097,0.059197716,-0.049271397,-0.068154015,0.027955014,-0.016015857,-0.027581802,-0.031313777,0.038953245,0.004542544,-0.05992971,0.024745032,-0.01740229,-0.06496721,-0.048312094,-0.03975904,-0.019782795,0.072846375,0.061552577,-0.01820897,0.034217034,-0.019889312,-0.0098521635,0.07857639,-0.014763615,-0.06587098,-0.05816918,-0.00029155667} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:37.059261+00 2026-01-25 01:27:50.508571+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 304 google Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB 1 t 307 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Passer par la plateforme DoYouSpain. Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. La plateforme vous en endors en disant qu'il fallait aller dans la politique de carburant. Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok passer par la plateforme doyouspain. mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. la plateforme vous en endors en disant qu'il fallait aller dans la politique de carburant. des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok 3 2025-12-26 01:27:48.341067+00 fr v5.1 J1.03 {P1.02} V- I3 CR-N {} {"J1.03": "Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h p", "P1.03": "Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font"} {-0.08366415,0.10699413,0.0074167354,-0.08257715,-0.057298232,0.09049244,-0.065624095,0.18365528,-0.028606724,-0.096376725,0.0037113936,-0.089829884,-0.024550054,-0.0006000817,-0.030502267,-0.09195906,-0.006295975,0.010543801,0.010871863,0.07024801,0.014865545,-0.004484558,-0.036734696,0.06527281,0.021508217,0.08824184,-0.04843041,0.025947459,0.037898652,-0.032103155,0.016979076,0.048754204,0.056013953,-0.07631518,0.04223476,-0.063989565,0.009654276,-0.020574026,-0.050788213,0.06415838,-0.034243282,-0.013807423,-0.08668013,-0.04254941,-0.025638167,0.014695208,0.05542995,0.07722477,-0.076703236,-0.024444668,0.011829798,0.063211076,0.05601781,-0.03216805,0.017089885,-0.060577497,-0.020117557,-0.012716046,0.042439554,0.0025087378,-0.054295048,0.038446303,-0.038106948,0.020692747,-0.09522253,-0.025146773,0.047556315,-0.064615466,-0.06421413,0.08013866,0.09000767,-0.035112947,-0.022263354,-0.03493105,0.023498453,0.035345912,0.028066961,-0.040751774,-0.015951002,-0.14977016,0.019580303,-0.022826763,0.04470143,-0.0282306,-0.015069605,-0.03550133,-0.03701539,0.07463623,0.026766183,-0.00019996369,0.033015225,0.01904489,-0.021798598,-0.046457548,0.05251322,0.03475556,-0.02089428,-0.06979194,0.02050638,0.07316531,0.02580038,-0.054998036,-0.06375721,0.019707808,-0.040774364,0.036918614,0.023508623,0.046778552,-0.03708602,-0.014514721,0.039653927,-0.026865209,-0.069542006,-0.10724661,-0.034478284,-0.105469055,-0.010059761,-0.07777071,-0.05595999,0.015590839,-0.009356611,-0.065355405,-0.026160724,-0.027248666,-0.011288872,-0.038701188,0.07233344,8.1705174e-33,-0.05123609,-0.0065996144,-0.036978178,-0.05852963,-0.026964104,-0.013347445,-0.041207682,0.11071092,0.0666732,-0.019636694,-0.0046808063,0.001280518,0.0011583843,0.033954542,0.024407553,-0.012928717,0.0524267,0.00961729,0.0030707363,-0.020854795,-0.035699487,-0.024654152,0.12641689,0.08881621,0.015044511,0.061923392,-0.03403956,-0.10358647,-0.040064335,0.03584445,-0.008332044,-0.026858147,-0.007673471,-0.022005286,-0.04476088,-0.026132219,-0.0472834,0.005232759,-0.036293443,0.02040428,0.081226915,0.016601713,-0.05147137,-0.04927438,0.033485584,0.03812274,0.026569244,0.03985047,0.021750227,-0.0028111713,0.02926534,-0.006201826,-0.03950481,0.016340684,-0.010171075,0.051211286,-0.1093799,-0.0127265295,-0.04984536,-0.0781008,0.0014793947,0.045642097,-0.027651437,-0.035792556,-0.08232597,0.044897553,-0.01419774,-0.034929674,-0.020392984,-0.028757395,-0.022284344,-0.030872311,-0.07469623,0.05320216,0.07432946,0.033980414,-0.024167141,0.043623414,-0.028236603,0.06149213,-0.09194619,0.0034022063,-0.03674636,-0.0733211,0.02943618,0.042344064,0.08094869,0.0058721937,0.04272732,0.08481964,-0.005197599,-0.097509906,0.02171215,-0.044242293,0.06905899,-1.13377415e-32,-0.036345482,0.025349164,-0.037359267,0.0076568713,-0.009660514,0.04004399,0.017106224,0.11057018,-0.03967129,0.0012250678,-0.08510513,0.035754066,-0.028747836,-0.106660105,-0.018191263,0.061338004,-0.004465401,-0.0051613827,-0.0013435422,-0.05268221,0.0075819427,-0.034793064,0.094291605,0.040161304,0.04227093,-0.02412977,-0.008695291,0.01711736,0.015038874,-0.021273667,-0.016693419,-0.027011601,0.04327339,0.05812224,-0.045259662,0.07481154,0.055558033,0.0732518,-0.035989083,0.070013575,-0.057794593,0.007958364,0.04661094,0.0596268,-0.020382019,0.0038780165,-0.027104493,-0.08132825,-0.03031997,-0.024077194,0.09902387,-0.00090225815,-0.0009750613,0.04116235,-0.06422703,0.0006994465,-0.0024576765,-0.017898275,-0.08349334,-0.027739817,0.05747178,0.09224033,-0.019562699,-0.024920454,0.07741392,-0.051821478,-0.01350549,-0.06359365,-0.013006585,-0.04656194,0.025689378,-0.07122679,0.072777964,0.054062437,-0.04759736,-0.011330592,0.027054103,0.053504433,0.018386625,0.031129794,-0.11667651,-0.01728495,-0.041100103,-0.0069135916,0.019526767,-0.05203878,0.053889412,-0.024856623,0.023110796,0.06590622,0.010731027,0.06303548,0.02167142,0.015773898,0.0426441,-5.765432e-08,0.09195677,-0.13580117,-0.072730996,0.0008237914,-0.014816009,-0.063310154,-0.07746231,-0.03435282,-0.009842648,0.047724422,0.144794,-0.017270822,-0.019111456,-0.042201728,-0.106885254,0.00382249,0.03151142,-0.009551483,-0.07606708,-0.084611826,0.010228872,0.012284586,-0.0114758,-0.06813533,-0.015920047,-0.039408438,-0.0805893,-0.08837602,-0.008252119,-0.013492572,0.031071981,0.07701762,0.044596195,-0.08350061,0.05697218,-0.03596823,0.037561417,0.002173419,0.008216135,0.035873443,0.091834106,-0.033574924,-0.04846329,-0.028499315,0.08375452,-0.07419301,-0.085404195,0.03748915,0.0130366245,0.03583577,-0.013158631,0.05983917,-0.05596407,0.06571875,-0.020249367,-0.066256404,0.017804427,-0.06532181,-0.0020874545,-0.05369166,-0.01109861,0.015686601,0.03621437,-0.02540742} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:15:14.817811+00 2026-01-25 01:27:50.890511+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 641 google ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB 1 t 644 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Agradecer a Daniel por su entrega, confianza y profesionalidad! Para repetir sin duda agradecer a daniel por su entrega, confianza y profesionalidad! para repetir sin duda 5 2025-01-25 01:27:48.343035+00 es v5.1 A1.01 {} V+ I3 CR-N {Daniel} {"A1.01": "Agradecer a Daniel por su entrega, confianza y profesionalidad!", "R1.01": "Para repetir sin duda"} {-0.06762925,0.11590623,-0.030236997,-0.033997387,-0.10791424,0.011787124,0.049266007,-0.03504049,0.024243204,0.016284777,0.057530716,0.003226211,-0.03858587,0.006053382,-0.02131662,0.005722309,-0.06690253,0.11206217,0.002970218,-0.018481495,0.075370155,0.021064226,-0.041018203,0.062292777,-0.044587012,-0.012400057,0.0122027835,-0.028909506,-0.003968082,-0.064315416,0.020590963,0.07018925,-0.0152929835,-0.029560816,-0.035233345,0.048422653,0.022392461,0.023027113,0.056672987,0.05027051,-0.11976666,-0.0019828128,-0.004277281,-0.08907343,-0.028666232,-0.07278311,0.025261832,0.02388374,0.018151283,-0.103452004,-0.047292385,-0.030987388,0.06189805,-0.066443406,0.025264379,-0.0008544784,0.058419622,0.005652884,-0.011062212,0.042705163,0.0048142583,0.05508216,-0.021148829,0.04860893,0.016864995,-0.063853405,-0.00088662835,0.015502415,-0.05744841,0.052690554,0.050795153,-0.078329265,0.06214598,0.016011003,0.056749653,0.035991706,-0.04189992,0.0029160532,-0.044145323,-0.049283195,0.05107085,-0.0010650206,-0.0011662152,0.007098595,0.016562887,-0.042898882,0.011565444,-0.008882307,0.059174407,0.009606901,0.041071244,0.098696776,-0.09323754,-0.0018533629,-0.06714931,-0.014071742,-0.029208267,-0.017759211,-0.021321338,0.07202251,-0.0067365034,0.09144009,0.06867866,0.021867294,-0.031034801,0.0029681032,0.055755086,-0.006670112,-0.014217656,0.05407977,0.02072533,0.008485872,-0.06809896,-0.005492821,0.026851868,0.07033806,-0.06389053,0.032337423,-0.021927206,-0.12006055,0.0042966963,0.10172473,-0.060884945,-0.038811807,-0.07262165,-0.06329508,-0.027874947,5.771455e-33,0.0031864613,0.027654955,-0.06865556,0.07922196,-0.08896547,-0.019554162,-0.04768333,0.019922456,0.0388382,0.0060309586,0.041469302,0.054463163,-0.016933383,0.066928744,-0.022906655,0.07204271,-0.01971425,0.05070881,-0.026898976,0.035969567,0.014257174,0.040387627,-0.034469247,-0.017605318,0.0020810352,-0.0020640835,0.044793874,-0.046509925,0.0018503917,0.0368434,0.034839246,0.020103836,0.022070553,-0.044964954,0.045713987,0.003987016,0.0491604,0.032047033,-0.036088426,-0.015771076,0.0693144,0.030868588,0.04283998,0.01995964,-7.5822136e-05,0.05651105,0.090753146,-0.041846614,0.0566803,0.073382095,-0.026937973,-0.05946116,-0.0039299713,-0.01217033,0.025080958,-0.013564706,-0.057535168,0.029992286,0.023396837,-0.07530775,-0.044113256,0.010609381,-0.07755402,0.03313571,-0.036862608,-0.088132,0.002534006,-0.01909877,0.102237865,-0.02029417,-0.09912595,0.06291673,0.01910183,-0.01637685,-0.04392277,-0.045130797,-0.049011536,0.0061528306,-0.014325571,0.095826104,-0.0061588096,-0.03428599,0.02265877,-0.06401109,0.13304111,0.04760829,0.08406669,-0.00881743,0.068219565,0.12578696,0.0055031665,0.06314923,0.0072540226,-0.025948333,0.07440803,-7.2773805e-33,0.08066627,0.012494076,0.027193142,0.0062725064,0.041692175,0.011229947,-0.013282477,0.051295415,-0.064176165,-0.13232416,-0.08605063,-0.1437802,0.1278629,-0.0042413785,-0.054381423,-0.006778529,-0.06441795,-0.057128865,-0.11393184,-0.0015821862,0.0130472435,0.09913827,-0.0044477824,-0.022947738,-0.013173522,-0.07486636,0.03255509,-0.007621403,-0.06429756,-0.026409697,0.08486199,0.0016496383,-0.07649996,0.04108747,-0.039691765,0.009103541,0.055951744,-0.024878653,-0.041293874,0.076518364,-0.06981016,0.032150015,-0.043765254,-0.020306956,0.0175958,-0.019924987,-0.015191827,-0.12988071,0.026244419,-0.09573476,-0.017745862,-0.059167575,-0.028386205,-0.07230203,0.10195883,-0.07513364,0.12298377,-0.07623095,-0.07209211,0.030403018,0.100774184,0.037391335,0.044081498,0.040550902,0.050088763,-0.005615475,-0.010805457,0.029024638,0.011697025,0.07731652,0.065938324,0.013282135,0.011383574,-0.04136334,-0.037922338,-0.02295051,-0.05525164,0.001343424,-0.029936876,0.048360825,0.02986732,-0.05650776,0.012620482,-0.0055260244,-0.010926501,-0.008446629,-0.022579338,-0.017421596,-0.03393118,-0.01734223,-0.015286807,-0.028153365,-0.012881307,-0.023838615,0.027423304,-3.323227e-08,-0.039716974,-0.023691295,-0.033084385,-0.013340219,-0.005610842,-0.0734455,-0.037801106,-0.018892368,-0.023324465,-0.027493259,-0.06942649,-0.031032622,-0.07376699,0.049238525,0.03857753,-0.07881845,0.07927652,0.05878345,-0.0056840074,-0.0808175,0.07599498,-0.011195211,-0.07103481,0.011538417,-0.0073813736,0.06722027,0.04187068,0.04588366,-0.025580892,-0.046920933,-0.03578348,-0.0059389393,-0.016557563,-0.080565296,-0.01619425,-0.026801506,-0.008595456,-0.008131296,-0.004988712,0.017924707,0.10055261,0.016756715,0.041076567,0.0032839961,-0.03949219,-0.06292375,-0.036314975,0.09691388,-0.01050326,0.040655557,-0.040803675,-0.009175717,0.009123527,-0.014052793,0.009985207,0.047293507,0.037039418,0.04528685,-0.16933055,-0.024202172,0.11792111,0.00498873,0.017724274,-0.06397411} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:08.338052+00 2026-01-25 01:27:52.175278+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 185 google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB 1 t 188 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown A word of caution! I don't usually publish articles like this, but I'll make an exception this time. This topic concerns the car rental company @ClickRent, which operates in the Spanish market.\nNEVER AGAIN @ClickRent https://clickrent.es/ I've rented cars from many rental companies, large and small, and I've never encountered such disrespectful customer service and a complete lack of professionalism. Our entire group was treated very unfairly/We were severely let down by the service, and our sightseeing plans were ruined.\nDescription of the incident:\nI booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explore the island of Gran Canaria. I did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. Everything seemed professional. On the day of our arrival at Las Palmas Airport (LPA - Gran Canaria), we all went to the meeting point in front of the airport terminal, and within a few minutes, a shuttle bus took us to the rental company's office. One of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was no car for us! I was a bit shocked, but politely asked, "What next?"—expecting a response/help from her. The lady informed me that I would receive a refund on my card within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). I asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When I took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that I delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN @ClickRent, or specifically this office: "Practicante Casto Moros, 35219 Ojos de Garza, España" (I have no idea how this company operates, what its structures and offices are like, or how they work together – I'm just a customer and I'm not interested).\nSo, I emailed someone who runs the @ClickRent booking system. I also received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! I asked for the matter to be escalated and contacted a manager – I received a reply that the matter had been escalated and someone would contact me. Today, two weeks have passed since this report, and absolutely NO ONE has contacted me! In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). We lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so NEVER AGAIN @ClickRent! a word of caution! i don't usually publish articles like this, but i'll make an exception this time. this topic concerns the car rental company @clickrent, which operates in the spanish market. never again @clickrent https://clickrent.es/ i've rented cars from many rental companies, large and small, and i've never encountered such disrespectful customer service and a complete lack of professionalism. our entire group was treated very unfairly/we were severely let down by the service, and our sightseeing plans were ruined. description of the incident: i booked a 9-seat minibus for 7 days with @clickrent (through their online booking system) to explore the island of gran canaria. i did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. everything seemed professional. on the day of our arrival at las palmas airport (lpa - gran canaria), we all went to the meeting point in front of the airport terminal, and within a few minutes, a shuttle bus took us to the rental company's office. one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. she returned a few minutes later to inform us that there was no car for us! i was a bit shocked, but politely asked, "what next?"—expecting a response/help from her. the lady informed me that i would receive a refund on my card within a few days, and that was it. nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply nothing. i asked to contact the manager, but was informed that it wasn't possible because it was sunday (no comment). i asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). at this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. when i took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that i delete the photos and started threatening us with the police. it was simply a scandal! never again @clickrent, or specifically this office: "practicante casto moros, 35219 ojos de garza, españa" (i have no idea how this company operates, what its structures and offices are like, or how they work together – i'm just a customer and i'm not interested). so, i emailed someone who runs the @clickrent booking system. i also received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! i asked for the matter to be escalated and contacted a manager – i received a reply that the matter had been escalated and someone would contact me. today, two weeks have passed since this report, and absolutely no one has contacted me! in the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). we lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so never again @clickrent! 1 2025-11-26 01:27:48.340117+00 en v5.1 P1.02 {} V- I3 CR-N {} {"J2.01": "I booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explor", "J4.01": "I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no c", "P1.02": "I've never encountered such disrespectful customer service and a complete lack of professionalism. O"} {0.026048554,0.069399305,0.023273919,-0.0013929718,-0.008624968,-0.013709261,0.060673106,0.008175416,-0.00091341045,-0.00786828,0.11881625,0.060515713,0.015407341,0.047920004,-0.010405963,-0.051019147,0.060313765,-0.054896254,0.00018433738,0.079722695,0.023970129,-0.04083541,-0.074204534,0.052902956,-0.020507429,-0.056043107,0.015915865,0.023267275,-0.037816044,-0.06757982,-0.06315864,0.06433373,0.019698178,-0.048546474,0.051904432,-0.012131426,-0.0051141186,-0.089066036,-0.007843362,-0.08751513,0.0035377038,-0.048564766,0.02347488,0.021712154,-0.043251462,-0.014969348,0.10145542,0.052126333,0.016128521,-0.041296065,-0.002382236,-0.031957924,0.073855296,-0.036741536,-0.14172213,-0.07302232,0.05567719,0.011128841,0.049608503,0.058645915,0.01965701,0.030508393,-0.0092105735,0.04059658,-0.035750434,0.008437302,-0.03741674,-0.029240103,-0.008852968,0.03688371,0.114844255,-0.041997083,0.014413617,0.08721108,0.0002942532,0.019656744,0.022510406,0.03051019,0.058210094,-0.05286814,-0.017098373,-0.05306865,-0.004900223,0.019061401,0.011484232,-0.0466026,0.023660501,0.026068887,0.09918779,-0.03202547,0.031787306,0.08173092,0.013322314,-0.009653538,0.04660052,-0.0033981083,-0.0037730066,0.029158654,-0.004650256,0.04678907,0.11979645,0.13567911,-0.040154357,-0.077691786,-0.055385422,0.04328658,0.049644317,-0.024836615,0.00061107276,0.012827934,-0.055315856,0.018835196,0.07796621,-0.02310384,-0.0983427,0.041700907,-0.05909376,0.060729112,0.006577662,-0.1004364,0.005807009,0.0045105387,-0.033225182,-0.0024375115,0.019812899,-0.008362493,0.077356145,9.52949e-34,-0.076281644,0.016489467,-0.08025481,0.04729434,0.113547854,-0.019489033,-0.02840159,0.028267859,-0.05716681,0.032650884,0.00058396393,-0.06970203,-0.011105389,-0.10648446,-0.030885117,0.09960803,0.028841207,-0.017110623,0.003502984,-0.029950717,0.043330986,0.05382988,0.0070379516,0.012221939,-0.05224353,0.06705967,-0.039063822,-0.0076088496,0.04827372,0.03909563,-0.057105225,0.014346085,0.03734083,0.044721298,0.03308396,-0.03204687,0.027007818,-0.016880395,-0.13879186,-0.03988894,-0.05542801,-0.020328525,-0.060413167,0.021994295,-0.07037235,0.008802535,0.03744802,-0.038033865,-0.05893372,0.08584206,-0.10198954,-0.014356008,-0.0127536645,0.03675739,-0.13399595,0.083357796,-0.015395632,0.026193438,0.04237757,-0.057955507,0.0789945,0.04337012,0.0474912,-0.043510072,-0.028076688,-0.071577474,0.023382822,0.0095210355,0.10919609,-0.01638989,0.036203966,0.0618801,0.04868739,0.017194666,0.011873849,-0.03614556,-0.033376213,0.053889573,0.0015364642,-0.03287006,0.045490224,-0.022549024,0.0146209365,0.029135797,-0.017039496,0.060025968,0.07899433,0.0070600756,-0.05681348,0.09275736,-0.051504478,0.08935059,-0.015038497,0.0043392675,0.05627798,-3.2124777e-33,0.022626162,-0.08698328,0.03755388,-0.07640792,-0.071441315,-0.008819768,-0.10928237,-0.010466473,-0.077125564,0.017737132,-0.10522656,-0.06276851,0.054959785,-0.033365052,-0.05288374,-0.0044525564,0.10738406,-0.06804462,-0.1015074,0.022826359,0.025059579,0.0534804,-0.0074728834,0.06691718,-0.017543284,0.037557017,0.045768984,0.04086811,-0.02237191,-0.006305575,0.008336178,-0.014623563,-0.04214809,0.04652744,-0.023457503,0.0023423426,0.04380694,0.07408173,-0.034523766,0.029361524,0.019708807,-0.014159378,-0.019302303,-0.035504483,0.017927274,-0.06154229,0.043704383,-0.110085875,0.01754931,-0.0112036755,0.0038171962,-0.034853894,-0.003445142,0.057903957,0.042659517,-0.03146981,0.07872696,-0.068902835,-0.02521165,0.013794274,-0.009937713,-0.016706478,-0.08921682,-0.029202014,0.04032776,-0.036856163,-0.026519235,-0.06345284,0.076654434,0.012318411,0.010224058,0.004537575,-0.02466877,-0.02541836,0.013030611,0.019319091,0.0134044895,-0.0222139,-0.018751752,-0.08153498,0.056908146,-0.108780056,0.054216955,0.0053343605,0.015310226,-0.0033263993,0.033982802,-0.08203296,0.030335117,0.037397545,0.0063846163,0.054874793,-0.030897897,0.009662672,-0.041526232,-5.6482914e-08,-0.020505037,-0.0068712914,-0.012128283,-0.008349442,0.021491073,-0.111780785,-0.05225475,0.08312924,-0.09448628,0.036130704,-0.018539345,-0.067481525,0.004714728,0.032174896,-0.038711496,0.018297082,0.06005651,-0.0014931714,-0.062429965,0.008981602,-0.03392026,0.038812622,-0.05310955,-0.00015849936,-0.05988357,-0.03374739,-0.015090251,0.035182826,0.065463305,-0.07597738,-0.15898412,0.027973432,-0.0661123,-0.07747531,-0.10174433,-0.022367734,0.016265867,-0.016911779,0.024082111,0.0055454364,0.017665634,-0.0037803887,-0.03883987,-0.00092906004,0.0477582,0.05523371,-0.06914052,0.018877853,0.02371345,0.019292707,-0.013625896,-0.05369706,0.011291887,0.14334626,0.018948723,-0.108656295,-0.0007997371,0.05006411,0.00806802,0.09824136,-0.015038879,0.018013628,-0.068789646,-0.031274397} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:39:08.036821+00 2026-01-25 01:27:49.943131+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1278 google ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB 1 t 1281 Soho Club unknown Gera muzika, draugiški žmonės. Man labai patiko! gera muzika, draugiški žmonės. man labai patiko! 5 2025-01-29 18:34:31.336452+00 lt v5.1 E4.04 {P1.01} V+ I2 CR-N {} {"E4.04": "Gera muzika, draugiški žmonės."} {-0.037512347,0.117813416,0.005283226,0.018123781,-0.054146215,-0.083859935,0.07507197,0.0736622,0.0017868776,-0.02263439,0.039261412,-0.053526986,-0.023112413,0.06305424,0.03279527,-0.032873187,-0.038823653,0.047738012,0.02734877,0.028158998,0.02898165,-0.1103309,0.036443084,0.03553178,-0.000546891,0.010672131,0.03886716,0.043700892,0.042595025,-0.041423764,-0.048420724,0.05921161,0.014546619,-0.0021441816,-0.033451248,0.04809626,-0.004272111,-0.01497643,0.030794112,0.103055045,-0.011006676,-0.008752259,0.003767298,-0.029982433,0.009293201,0.002895696,-0.079725385,-0.05550695,0.0016504718,0.028288582,-0.19327779,-0.017100561,0.03222146,0.0420177,0.06137402,-0.15565413,-0.022052,-0.027169121,-0.0032724456,-0.032048933,0.0032767644,-0.015914863,-0.058809694,0.0108873,-0.035268456,-0.04825463,-0.08006407,0.019031376,-0.051900916,0.05527582,0.07179651,-0.0111469105,-0.001045829,-0.05524048,-0.12100387,0.061952572,0.0090413485,-0.04654257,-0.028031291,-0.044046395,0.07523639,-0.03782496,-0.043696992,0.05219845,0.0024929163,0.031128183,-0.046384893,-0.022741932,0.051330518,-0.05898256,0.0075303097,0.05948586,-0.027512312,0.000845218,-0.026395451,0.0440178,-0.045874495,-0.006950718,-0.04165726,0.08639665,0.009955576,0.039238833,0.054213773,-0.040800236,-0.11663297,0.023845663,-0.024928905,-0.016539695,-0.025543077,0.045864068,-0.056585517,-0.05285496,-0.03598762,0.0072600814,0.0044406946,0.034293134,-0.018323531,0.08062783,-0.04094207,-0.016851712,0.027852718,0.0029514292,-0.022908168,-0.021601666,0.067101546,0.018252956,-0.004683671,4.28593e-33,-0.0029786257,-0.03616153,-0.056271788,0.002492983,0.02938666,0.004055158,-0.04641522,0.0010985417,-0.04768966,0.009241805,-0.01960364,0.041159183,-0.07443687,-0.008815504,-0.08583038,0.08889712,0.12436242,-0.057965204,-0.008776981,0.06151294,0.062047016,0.021648053,0.040356442,0.024213988,-0.0049793115,0.04261422,0.032032073,-0.054581635,-0.00062023086,0.034033384,0.03257163,-0.0661658,-0.03575306,-0.007826503,-0.07549229,-0.0042557935,-0.11449697,-0.04097209,-0.0401972,-0.0101909805,0.020906145,-0.040867776,-0.010077591,0.0062486576,-0.013218191,0.050374247,0.0133350445,-0.009187403,0.0924523,-0.02123299,-0.15039977,0.008265167,-0.14151871,0.046203967,-0.04824354,-0.062044807,0.023072248,-0.028609501,-0.035416346,-0.023057835,0.0008573494,-0.005019679,-0.006199615,0.0065265032,0.061938543,-0.04913919,-0.012401839,0.07139188,0.026496727,0.04572545,0.01953346,-0.04392037,-0.009702388,0.06319512,-0.010840894,-0.064886555,-0.040171135,-0.01601644,-0.0043864045,0.016540924,-0.07749375,0.028032638,-0.018751467,0.032617383,-0.02615667,0.08634163,0.0097267,-0.012807703,0.0022662212,0.03168063,-0.090366036,-0.059427533,0.10969671,-0.007312858,-0.041267112,-3.960741e-33,0.0195654,0.011828231,-0.0055248006,-0.012304052,0.092686646,0.03274693,-0.026619872,0.10590617,-0.04949935,0.057812303,0.07614305,-0.0814673,0.025490738,0.030188007,-0.08417952,0.06932715,0.050579786,0.050420504,-0.014722545,-0.08001991,0.007388849,0.103739835,0.0068683145,0.06489784,0.021873506,0.028867964,0.10201893,-0.017674016,-0.047225345,0.07715739,-0.09250442,-0.024359895,-0.06084393,-0.064687505,0.06465907,-0.028154338,0.059839886,0.040710483,-0.024655165,0.07452539,-0.027286962,0.035179064,-0.026191773,0.04353629,0.008735011,0.056136787,-0.09865231,0.023398167,-0.059695363,-0.08215583,0.0021519163,0.0009293853,-0.00094151526,-0.08876664,0.061356578,0.07479313,0.024153817,-0.027854154,-0.013550633,0.00611044,0.0013898133,-0.011729251,0.020904556,0.045709122,-0.032527007,0.08186107,0.05292989,-0.0046429364,0.027138866,0.020487761,0.05787559,-0.011212678,-0.043249793,0.057917647,-0.12294053,0.05934786,-0.041751724,0.0342931,0.09753413,-0.057349198,0.06415105,-0.046466857,-0.04313839,0.08975851,0.06555907,0.0028770887,0.019550994,0.011595419,0.010263817,0.015567303,0.029046241,0.12756367,0.047626864,0.04240851,0.03425562,-2.646794e-08,-0.019822147,-0.07311056,-0.034105513,0.027050141,0.040276185,-0.03738043,-0.06784524,-0.048626278,-0.04496551,0.0537041,-0.006405484,0.019789634,-0.0098602725,0.042531073,0.013151984,0.0896544,0.103023134,0.07260181,0.00685046,-0.024175692,0.104462825,-0.04880038,0.012795621,-0.027822157,-0.03758946,0.015847618,-0.012324199,-0.0015542544,-0.024116227,-0.0311842,-0.023992145,0.05427898,0.015231921,-0.014338698,0.0083853565,0.05799333,-0.025670454,-0.131233,-0.05352292,-0.049049634,0.029972376,0.032956894,0.0703532,-0.035068423,0.019537399,-0.067733474,0.081851624,-0.06445013,0.03174531,0.025518503,-0.06297713,0.017842347,0.066631176,0.005000573,0.025379723,0.022780417,0.025527751,-0.0058839107,-0.07512034,0.018714277,0.12493106,-0.0226474,-0.006822109,-0.07011188} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:10.556767+00 2026-01-29 18:36:00.672258+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 188 google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB 1 t 191 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown It was a bit stressful looking for the meeting point for the mini bus at the airport but after that everything was very good. Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately on returning the car. Pick up and return was simply and very quick. Great service it was a bit stressful looking for the meeting point for the mini bus at the airport but after that everything was very good. insurance was £184. car only had 14000 kms on clock. i paid £186 deposit and got it back immediately on returning the car. pick up and return was simply and very quick. great service 5 2026-01-04 01:27:48.340135+00 en v5.1 A4.04 {} V- I2 CR-N {} {"A4.04": "It was a bit stressful looking for the meeting point for the mini bus at the airport but after that ", "J1.01": "Pick up and return was simply and very quick. Great service.", "V1.01": "Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately"} {0.06855337,0.08563087,0.02678749,0.015822796,0.023811514,0.06921348,0.06757023,0.060210906,-0.03078603,0.0027555476,0.039883725,0.04166468,0.03229328,-0.015378858,0.0034706253,-0.034688152,0.072382525,-0.1398694,-0.029168101,-0.015728267,-0.075982705,-0.029009031,-0.032910842,-0.0046453048,0.014014401,0.035121284,0.057715163,0.076049134,0.01641105,-0.035447415,0.0042387843,0.019804038,-0.0108687775,-0.019890064,0.03677596,-0.006724848,0.055144735,-0.080103986,-0.025798677,-0.07881278,0.012754805,0.011749264,-0.027259268,0.0078799585,0.04716988,0.012121441,0.10078972,0.024204357,0.06766391,-0.016442822,0.05576877,-0.04656009,0.017456967,-0.08273173,-0.087001994,-0.0019932473,-0.027893761,0.03744852,-0.01856598,0.0019621965,-0.009522008,-0.010292195,-0.0096094785,0.052303802,-0.007935628,-0.025440048,-0.04767049,-0.09407269,0.048867807,-0.04467731,-0.01585776,-0.034603775,0.015497767,-0.004695314,-0.0062649953,0.0350429,0.029694654,-0.04267931,-0.016587423,-0.018816197,-0.03099288,-0.024584325,-0.0057151266,0.07878946,0.06409606,-0.097769804,-0.0071406597,-0.011242956,-0.0131269,-0.040255137,0.03955591,0.012534466,0.000977863,0.007044543,0.027874075,-0.020362154,-0.021815686,0.004899562,-0.041646767,0.019222477,0.06437742,0.14743125,0.007873899,0.022408267,-0.07680687,-0.0062229056,0.01391913,0.026590573,0.029934041,-0.007240429,0.019145513,0.022096217,0.056999486,-0.019944804,-0.043357946,0.040518247,-0.09909883,-0.0071737287,0.052459974,0.0061844224,0.013658483,0.041115552,0.01732378,0.0035749185,-0.08685143,0.035879653,0.09219379,1.7789913e-33,-0.06421233,0.0849844,-0.014514035,-0.05236398,0.0555422,-0.051464386,-0.05589663,0.026585171,0.036475457,0.05547388,-0.0502248,-0.044800885,0.02918305,-0.14973933,-0.016328147,0.0518942,-0.038023856,0.09480152,-0.07103109,0.072081566,-0.045949075,-0.03840273,0.05708449,-0.061276678,0.11148115,0.07030916,0.030466879,-0.035801888,0.19734141,0.023804892,-0.09244178,0.070290685,0.003654125,0.009492468,-0.048085853,0.0049837837,-0.074702516,-0.054217145,-0.08997836,-0.037026018,-0.044257104,-0.014222983,-0.04943363,-0.024527276,-0.029388783,0.009068609,-0.027296616,0.02985939,0.02129685,-0.010000751,-0.11381014,-0.012151273,-0.059951082,0.007014688,-0.038009346,0.028512353,0.029321449,0.0521256,0.016037969,0.019858707,0.06112831,-0.012980826,0.02439597,-0.023621324,0.006380614,-0.021994727,-0.013649333,-0.044543523,0.016020164,-0.028833872,-0.006358859,0.089605436,0.105635,-0.020070562,0.029786492,0.021414012,-0.05216294,-0.05893278,-0.013146799,0.04315263,0.011139465,0.01879433,0.028284498,0.016843729,0.08609101,0.02951585,0.04271344,-0.031717934,-0.08292514,0.041049384,-0.06946733,0.007038593,-0.006450507,0.025550347,0.031436905,-2.8503442e-33,0.013680582,-0.04867163,0.036825843,-0.046383128,-0.0800298,-0.004233171,0.007666704,0.055654407,0.014454414,0.1544486,-0.05142916,0.0230683,0.06391233,-0.029166726,-0.046846952,-0.027064094,0.08176835,-0.099823356,0.08922417,-0.017678719,0.08198878,0.07914655,0.029968627,-0.020844221,-0.04807812,0.06367878,0.0020729883,-0.0022680424,-0.03680354,-0.09159594,-0.044099778,0.003563236,0.0069146906,0.009071203,-0.022975823,0.017778711,0.023795027,-0.0050933408,-0.028196583,-0.016616046,0.013830248,-0.021304501,-0.011682858,-0.016168315,0.13266014,-0.108558305,0.01136295,-0.08400432,0.048796646,-0.006480376,0.03454041,-0.05654415,-0.04340116,0.07629807,-0.029840566,-9.556686e-05,0.049407568,-0.067531645,0.023288328,-0.05710686,-0.018001286,-0.011900408,-0.027433842,0.031603318,-0.032648873,-0.05244669,0.032729022,-0.06615344,0.0482873,-0.03448481,-0.061697643,-0.023131166,0.05052854,0.049801677,0.011545975,0.060563553,0.04890031,-0.02461935,-0.026870212,-0.05386106,0.02067931,-0.04360597,-0.008395834,-0.0053126393,0.035086676,-0.0034047712,0.021846212,-0.05940745,0.015096798,0.110101014,-0.03401237,0.011530134,0.028857773,0.00030066347,-0.06307436,-4.249981e-08,-0.030915273,0.097774744,0.02179545,-0.0054408098,0.01204583,-0.14121068,0.0018214481,0.09234331,-0.09148114,0.008878117,-0.02411788,0.0110072605,-0.047517188,0.032975703,-0.06360741,-0.03181831,0.013361353,0.008119734,-0.018127017,-0.004992759,-0.0057350025,0.05515848,-0.06819059,-0.027188051,-0.014469949,-0.010062508,0.003925922,0.05085919,0.020606942,-0.14277872,-0.15572232,0.024586754,0.04595694,0.019355224,-0.09627673,-0.09307044,0.07046343,0.0676721,0.03632383,-0.04152526,0.055583674,-0.05656476,-0.03815026,-0.007138588,0.03730712,0.033936314,-0.11692091,-0.038841683,-0.002435203,-0.025324874,0.010693744,-0.024644516,0.024758788,0.08987569,0.03418626,-0.022394208,-0.039846424,-0.026240433,-0.09175696,0.07362495,-0.07810617,0.011177288,-0.08307694,0.03486229} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:39:35.77109+00 2026-01-25 01:27:49.953623+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 270 google Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB 1 t 273 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown 🫡😉👍 🫡😉👍 5 2025-06-29 01:27:48.34074+00 en v5.1 V1.01 {} V+ I1 CR-N {} {"V1.01": "🫡😉👍"} {-0.04159648,-0.024681844,0.07789313,-0.0061493795,0.01700141,0.0012620792,0.123739734,-0.0019714984,0.05898101,-0.042165723,0.05919734,-0.071298815,0.12670384,0.025150234,-0.013801282,-0.06401195,-0.021355392,-0.023679031,-0.04567589,0.007490754,-0.08093087,0.016425312,0.040201917,0.034072693,-0.09147523,0.04133277,-0.002853666,-0.005185526,0.062337432,-0.039861426,0.016891893,0.019184565,0.0059393686,-0.08973695,0.018257715,0.004333123,0.017572027,-0.064441234,-0.069254994,0.042006828,-0.060051624,-0.03753312,0.056897145,-0.06448095,0.056737937,0.01103915,-0.07329033,-0.020127784,0.027193882,-0.011539093,0.0023958834,0.012943192,-0.028637422,0.019964809,0.039231885,-0.0068726814,-0.045336515,-0.04935057,-0.005421429,-0.06290538,-0.022794457,0.010759212,-0.023640057,0.034320682,0.004889344,0.046750322,-0.003959344,-0.020562692,0.03360624,0.019879775,0.031905137,-0.03548585,0.016404673,-0.07183539,0.0040331427,0.017643683,0.10610596,0.057150863,0.022820631,0.07726643,0.001922145,0.0010011792,-0.03953869,0.094376735,-0.07560355,-0.02297961,-0.05163906,0.04907487,0.0015072109,0.06700942,-0.021575624,-0.008754833,0.037345413,-0.004958468,-0.14376108,0.008767925,0.029117338,-0.06848653,-0.06965745,0.2016071,0.069737814,0.013741274,0.046000566,0.028606342,-0.06500324,-0.031802826,-0.005563406,-0.026715687,0.05690473,0.005330985,-0.03942999,-0.090377755,-0.05602488,-0.042722795,0.09392713,0.039891586,-0.010925389,0.013202102,-0.05678617,0.013316579,0.054072823,0.022605894,-0.032937486,-0.028672146,-0.060659382,-0.052034505,-0.011009859,-3.732175e-33,-0.053454284,0.019247385,-0.011910361,-0.051424447,-0.05691945,0.09403994,-0.02074666,0.009040342,-0.08258306,0.025001345,-0.02177451,0.032146197,-0.030521747,-0.06434665,0.013967873,0.0021832036,-0.01438177,-0.009548994,0.033302356,0.004304347,0.013000467,-0.094980195,0.00192887,0.05273992,-0.01874149,-0.032592937,0.020492798,-0.052109413,-0.072497435,0.006648592,0.040096834,0.011900066,-0.024748564,0.059731632,-0.075582676,-0.06174587,0.10610479,0.030054709,-0.036454372,0.09228551,0.05460007,-0.07359532,-0.10164799,-0.06725764,0.03295858,0.07058107,-0.00859229,-0.080612496,0.018725017,0.016663926,-0.027808052,0.055218086,-0.11782145,0.0496947,0.068743944,-0.02931822,0.044047173,-0.0015659702,-0.04306151,-0.014342461,0.02779269,-0.021841021,-0.012736732,-0.0048946883,-0.07752441,-0.03581855,0.03526649,-0.016275022,0.035997145,-0.076998234,-0.0364635,0.019315181,0.14490332,0.043413263,-0.05068521,-0.057032295,-0.0140589345,0.036263432,0.09071672,0.01871388,0.03701204,-0.059723653,0.039852966,-0.1062863,0.055444624,0.0081621725,0.00654181,-0.13666254,0.013402728,-0.036087662,-0.10515211,-0.04107495,0.10685234,0.04151977,-0.028887331,1.7208842e-33,0.026480658,0.048815884,0.005490127,-0.001391575,-0.05297075,-0.02145854,0.024485864,0.07472569,-0.014458883,0.015904933,0.082771614,-0.009765089,-0.032709587,0.045814,0.006659783,0.058391128,0.09902666,0.05495619,-0.0218432,-0.010202736,0.004449693,-0.06067708,-0.051282477,0.03624225,-0.026190829,0.08490896,0.048903078,0.031969685,0.012468504,0.04404857,0.0038532019,0.0066296654,-0.029003065,-0.03176261,-0.036200784,-0.016958112,-0.04746515,0.0282131,-0.052128065,0.04404007,0.023716522,-0.030862004,0.06039234,0.14124909,0.019009825,0.04032259,-0.05329114,0.0080478825,0.04458785,0.015697872,-0.00058741745,-0.079826035,0.019716278,-0.02361012,-0.0004719552,0.033659473,0.009357292,0.030934682,-0.00922575,-0.0070980694,-0.09390095,-0.0061980546,-0.027863963,0.070215665,-0.02126127,-0.03449252,-0.024521206,-0.06158762,-0.000156979,-0.08331835,0.1345557,0.0048048776,-0.11719952,0.010331117,-0.07008248,0.04685564,-0.015254113,0.056446522,0.035431437,0.027824547,-0.031410027,0.043146674,0.013090137,-0.08882382,-0.024595553,-0.08598979,0.026616117,0.0058399076,-0.035868756,-0.0097702285,0.032193806,0.11353256,0.035904802,-0.10130632,-0.008436723,-1.3915482e-08,-0.016802981,-0.03533716,0.039053205,-0.026382321,0.042283334,0.029138908,-0.12076364,0.028423108,0.09129873,0.012096032,0.10415974,0.06550143,-0.035149496,0.053158335,0.00045355168,-0.040980432,0.010962302,0.09504905,0.018136367,-0.074384674,0.07732599,-0.016657714,-0.022133676,0.0072447346,-0.037848927,0.05254645,-0.06029514,0.037682787,-0.017852606,-0.044202387,0.0074683204,-0.05273522,0.01115039,0.03726249,-0.01574406,-0.0670154,-0.014720609,0.06336036,-0.0010368091,0.039268114,-0.045321584,-0.0024890753,0.06805379,-0.0077991495,-0.010861146,-0.05609189,0.037291594,0.057777576,-0.042702444,-0.014693895,-0.0022483554,0.05930097,0.028002553,0.052715607,0.047251187,0.033071566,0.03134423,0.048919775,0.010956189,0.042034797,0.11250049,0.04773152,-0.008580998,0.0063750017} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:36.523812+00 2026-01-25 01:27:50.755097+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 210 google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB 1 t 213 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown First time customer and didn’t take any additional insurances because I had rental car insurance from my credit card company. Therefore they made 2000€ authorization on my credit card.\n\nStaff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insurances.\n\nCar was new, less than 5000km driven and was as promised.\n\nAfter rerurning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes.\n\nWould use their services again and would recommend. first time customer and didn’t take any additional insurances because i had rental car insurance from my credit card company. therefore they made 2000€ authorization on my credit card. staff was ok. not the friendliest staff but they didn’t try to force or sell any additional insurances. car was new, less than 5000km driven and was as promised. after rerurning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes. would use their services again and would recommend. 5 2025-01-25 01:27:48.340431+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Car was new, less than 5000km driven and was as promised. After returning the car, they checked that", "P1.01": "Staff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insuranc", "R2.01": "Would use their services again and would recommend.", "V1.03": "First time customer and didn’t take any additional insurances because I had rental car insurance fro"} {-0.02232262,0.06147409,0.018465966,-0.003962189,0.013595999,0.01582023,0.06667128,-0.013837593,0.025831789,0.015430102,0.12768692,0.05204821,0.040638287,0.0047458895,0.014249216,-0.019220628,0.019498477,-0.11882319,-0.08883499,0.059020586,-0.0687893,-0.012411385,-0.047148608,0.026515715,0.03707167,-0.022349812,0.04021459,0.061529204,0.025885716,0.05427767,-0.0079241535,-0.011214304,0.08115472,-0.0015924362,-0.015623856,-0.060718298,-0.012602102,-0.0800154,-0.077162795,-0.055458013,-0.010721935,0.020662293,-0.038508292,0.025331555,0.053586196,0.0074521773,0.11018416,0.074790545,0.015149397,0.0212621,0.029477363,0.0070023127,-0.012658861,-0.11708493,-0.112095274,-0.053269852,0.02885175,0.016189579,0.01109239,0.06374016,0.056042545,-0.029689396,0.0032595429,0.081485555,-0.01359465,0.014893467,-0.05166763,-0.015635278,0.00011005284,0.008850688,0.069642656,-0.07644826,0.022332286,-0.000845886,0.035012484,0.07249944,-0.033127163,-0.011013312,0.06374055,-0.09729356,-0.02706584,-0.07702999,0.056357153,-0.0030829723,0.0022256398,-0.01090653,-0.007170077,-0.0041635684,-0.024918515,-0.038008265,0.05738563,0.031120379,0.029296855,-0.014065099,0.021756481,-0.040968623,0.0033038883,-0.055643927,-0.1027004,-0.0047405283,0.016843734,0.0024107965,-0.033555664,-0.016579468,-0.030574102,-0.0038021111,0.090691306,-0.0051932,0.007878726,0.043023456,0.039146084,-0.014812748,0.003962533,-0.067919254,-0.056007262,0.03519042,-0.10486703,0.017013818,-0.017131345,0.054968264,0.03311595,0.034628037,-0.0037818926,-0.041568737,-0.031163752,0.06713162,0.060192097,3.6215166e-33,-0.017344428,0.117888674,-0.07026732,-0.025631426,0.062232446,-0.00978515,0.007316461,0.03677227,-0.024215523,0.008688094,0.01693591,0.041858446,0.06294317,-0.065945245,-0.01934422,0.08368746,-0.013044043,0.057241008,-0.04147892,0.11240686,-0.010489604,-0.00933872,0.124952845,0.0123618115,0.03759668,-0.0075777834,-0.016087202,-0.05547405,0.13704015,0.019170353,-0.021182917,0.044269122,0.04839314,0.0074738725,-0.030241657,0.11531527,-0.031127801,-0.027288066,-0.04494176,-0.0309455,-0.017674714,-0.045077365,-0.0011477546,-0.05880601,-0.0006877366,-0.06067442,-0.07205759,0.011095942,-0.069665834,0.0636185,-0.13283913,0.021573352,-0.040284485,0.07562502,-0.029669024,0.011324251,0.012703164,0.055469275,0.01865389,-0.07364381,0.0069467034,0.011847283,0.012983861,-0.01988596,-0.029999698,-0.022965882,-0.016401244,-0.024908561,0.031729735,-0.038357176,-0.010091044,0.055215504,0.041727763,-0.017114148,-0.09966582,-0.01583528,-0.049142238,-0.029234357,0.011416324,0.07877484,0.0047857612,-0.029016322,0.0813095,-0.012127205,-0.01601483,0.04166775,0.0053717494,0.057685226,-0.031291053,0.04270156,0.02850878,0.013587296,0.04026459,0.020088566,0.107862845,-5.430311e-33,-0.045680698,-0.0018577874,0.014608696,-0.061122574,-0.0522765,-0.0084085055,-0.1277418,0.041209765,-0.02666766,0.013802366,-0.0035763846,0.013271006,0.024533754,-0.035569392,0.021586193,-0.06417334,0.04487607,-0.06122135,0.042881854,-0.044262424,0.04899314,0.018929202,0.057860218,0.09364269,0.034152303,0.037253965,-0.019374445,-0.007967992,0.028848536,-0.06331613,-0.017184712,-0.012095263,-0.040345572,0.0818291,0.038695216,0.005689231,0.031378727,0.12005095,-0.06373382,0.0038334725,0.017434236,-0.046183154,0.014942356,-0.011456759,0.032895423,-0.14583386,0.09265266,-0.12152682,0.026056927,0.00046297346,0.059982557,-0.082843125,0.053099968,0.04852078,-0.07599947,-0.016310345,0.08913151,-0.060746636,0.031324137,-0.05495467,-0.0048513464,0.0317374,0.037586015,0.049250953,-0.04181234,-0.057250336,-0.04010655,0.0003289947,0.06772434,-0.07489832,-0.08434389,-0.028191688,-0.036981106,-0.019666245,0.01167055,0.0352391,-0.046386316,-0.06618783,-0.08079047,-0.073038585,0.052620564,-0.066687725,-0.014780416,0.043162957,0.05930152,-0.038783286,0.05990982,-0.14548497,0.0047163586,0.07709524,-0.06283158,0.026732454,-0.093272835,-0.02344097,-0.048827305,-4.8149246e-08,-0.03985212,0.07589355,0.051414583,-0.020378672,0.0320558,-0.08286113,-0.06775982,0.04874942,-0.092029445,-0.0047189244,0.042898078,0.041460518,0.0170365,-0.06060778,-0.03851697,-0.05485823,-0.0045145433,0.006501267,-0.020422496,0.026894907,-0.008504319,0.051857386,-0.025576113,-0.06191781,-0.04780729,-0.015899735,-0.06097397,0.024050068,0.053498186,-0.042848185,-0.12570935,-0.040082157,0.04902786,0.005015019,-0.07185256,-0.063459694,0.02589926,0.006565038,-0.027019827,-0.047405466,0.059684087,0.017394405,0.040227883,0.00030955125,-0.008768899,-0.040785514,-0.084414475,-0.041655526,0.11579291,-0.048911277,-0.036973823,-0.0066429502,-0.015596607,0.11280769,0.029419767,-0.02823212,0.032247506,0.007504948,-0.0060954564,0.08084611,-0.10102989,-0.034626346,-0.020829778,0.017120842} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:43:16.751835+00 2026-01-25 01:27:50.052013+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1279 google ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE 1 t 1282 Soho Club unknown жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую) жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую) 5 2020-01-31 18:34:31.336452+00 ru v5.1 A1.05 {} V- I2 CR-N {} {"A1.05": "жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше.", "E1.04": "в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую)"} {0.034761857,0.040379222,0.07710861,-0.0036548339,-0.027993264,0.02891982,0.08494189,0.021386694,-0.030328834,-0.02821154,0.036820877,0.054984454,0.043024562,0.086249314,-0.00036341485,-0.026279062,0.015272053,0.010846726,-0.05815275,0.029905036,0.035352018,-0.008205476,0.056114208,0.020817554,0.04539942,-0.054814745,0.012392811,-0.020959603,0.07986772,-0.0049951724,0.0339864,-0.039103944,-0.016577052,-0.055050332,-0.02866564,-0.0026105228,0.04720613,-0.021103423,0.034525182,0.10912482,-0.03957222,-0.11623291,-0.13780743,0.072740205,0.05016136,0.06421674,0.02293578,0.02883896,0.0714051,-0.024171164,-0.09860466,0.006942895,-0.051402375,0.0013564302,0.03036934,-0.06875486,-0.02021312,0.02091258,-0.0713664,0.0043162387,0.0182089,-0.042267483,0.046188656,-0.026873255,-0.037189387,-0.013584344,0.0254749,0.026156304,-0.036863524,0.09458474,-0.016285155,-0.016847236,-0.13220568,9.173687e-05,-0.115996234,-0.08200886,0.036378264,0.022767065,-0.005674313,0.026242226,-0.002667819,-0.014418573,-0.038576305,0.016438922,-0.054405212,-0.01536824,0.0786245,0.0068427506,0.029689409,-0.00040067875,-0.06707877,0.106682375,0.026042014,0.015103048,-0.05056672,-0.087753765,-0.048769176,0.041443754,0.07480444,-0.012375308,-0.0012643929,-0.02263722,0.038819976,0.009087848,-0.08863948,0.041658632,-0.058899444,-0.121475965,-0.0030635775,-0.027085947,-0.051017024,-0.016477572,-0.014784712,0.0045986604,0.020375997,0.028705318,0.013651229,-0.061071966,-0.0091819195,-0.06297005,0.06626972,-0.028071936,0.022481289,0.05836434,-0.01854782,-0.072607964,0.055812586,1.478942e-32,0.03798791,-0.009265128,-0.04574928,0.044872794,-0.11864535,0.030970871,-0.058362763,0.038518954,-0.0481426,0.08667467,0.016431224,-0.010427359,0.013056991,0.005056392,-0.018029384,0.025250288,0.08033694,-0.02733041,0.030961776,0.107812144,-0.0063576577,0.055880778,-0.07646992,0.033632018,0.014683579,0.0144073125,0.035296556,-0.04750651,0.01661493,-0.036516134,0.052792862,-0.06281129,0.022721846,-0.030284405,-0.025998784,-0.05290042,-0.04619925,0.12749153,7.249722e-05,0.021343209,0.0711119,-0.08431847,-0.017482197,-0.008965065,0.10415892,0.024574017,0.024114847,0.023128824,0.010782772,-0.043787267,0.020765362,0.00045088158,-0.010646425,0.009620116,0.05080042,-0.0007556047,-0.09068524,0.026968215,-0.08186889,-0.0431255,-0.093272395,-0.09325729,-0.034401167,-0.013950044,0.019219875,-0.010678132,-0.013368781,-0.02879903,0.04529404,0.0022726504,-0.022656491,0.015377787,-0.01756564,0.052811854,-0.05141093,-0.038122773,-0.0326533,0.03144968,0.046937484,0.018848194,-0.056078155,0.022702742,-0.0142439855,-0.007805175,0.045391306,0.046900615,0.032897647,-0.117417574,-0.060322423,0.09285457,-0.13575797,-0.029044203,0.0243759,-0.0067823688,0.03436641,-1.5049829e-32,0.097035944,0.044019725,-0.110557616,0.08876989,0.00095883815,0.049530495,0.051339835,0.025854416,0.0020590276,0.09284354,-0.08127859,-0.13387471,-0.017431097,-0.00598928,-0.0039405376,0.0046117357,0.07122936,-0.008034479,-0.14542496,-0.044229552,-0.0939109,0.056137785,0.06818081,-0.02035923,0.008299943,0.0125142485,0.123693645,0.0069238427,-0.10434656,-0.00012551798,-0.026117014,-0.010241175,-0.022132194,0.031485423,-0.022899674,0.08424051,0.02894948,0.000709782,-0.04915543,0.028145652,-0.03191775,0.01061263,0.047726233,-0.020698952,0.021905517,-0.07030267,-0.043650374,-0.07154685,0.005006139,-0.014258217,0.10154688,0.0008342742,0.0036849752,-0.06369801,0.044146817,-0.0036331157,-0.012207221,0.0006040636,0.06445203,0.03478231,0.013490169,-0.0114062745,0.07463779,-0.030265369,-0.08770982,0.020219281,-0.00792487,0.045995552,0.036512274,0.020281352,0.043120965,-0.019906664,0.08743927,0.0315011,-0.033118643,0.014863223,-0.11095853,0.06370573,-0.01420491,0.04809328,-0.004258379,-0.044242498,-0.040278047,-0.09255535,-0.088393986,-0.085421085,-0.0422277,0.008462177,0.042206783,-0.0219534,-0.029549986,0.012127497,-0.03217921,0.057575054,0.10651291,-5.938637e-08,0.082215324,-0.023375278,0.011080128,-0.0076277945,0.019116212,-0.021908367,-0.0019858025,-0.0115926545,-0.055297147,0.058096845,0.037845965,-0.0063641975,0.004821501,0.034296833,-0.08622749,0.078516535,0.027952129,-0.06056676,0.032320857,0.012573787,0.045128357,-0.01125204,-0.069535464,-0.03435909,-0.031576626,-0.06702412,-0.018192725,-0.0257418,0.011561264,-0.0327544,0.011449975,0.03876807,0.04160123,-0.060892425,0.058641233,-0.08014724,0.06726253,0.07617534,0.022481447,-0.00934284,0.0671088,-0.0035793907,0.07032702,0.02497803,-0.062960796,-0.01506377,-0.050453994,-0.05635424,0.034411658,0.05166284,0.012732927,0.021228047,-0.053121008,-0.038940795,-0.081462696,0.060542036,0.011089649,0.021622263,-0.049985886,-0.008691157,-0.08400983,0.042332932,-0.0016826248,-0.095525034} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:19.879985+00 2026-01-29 18:36:00.674163+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 187 google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB 1 t 190 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Overall service experience was very good! One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. After we got to the shuttle, the service was excellent all the way, car was clean and nice for the group! overall service experience was very good! one constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. after we got to the shuttle, the service was excellent all the way, car was clean and nice for the group! 5 2025-12-26 01:27:48.340133+00 en v5.1 J2.04 {A4.04} V± I2 CR-N {} {"J2.04": "Overall service experience was very good! One constructive feedback is to have the instructions for ", "P1.01": "After we got to the shuttle, the service was excellent all the way, car was clean and nice for the g"} {-0.042124093,0.022476994,0.057060897,0.022924284,-0.07517007,0.023922551,0.053455204,-0.00869102,-0.076784246,-0.040431906,-0.0118778655,0.08411884,0.049636863,0.0254565,0.008395612,-0.02110859,0.17515835,-0.077543996,-0.028243288,-0.05685919,-0.051458385,-0.03842078,0.04695353,0.020917911,-0.047472946,0.0034622934,-0.014854486,0.028020939,0.017221441,-0.07919701,-0.04444487,0.0465008,0.024394132,-0.021132704,0.0049884105,0.074378416,0.07704411,-0.049829744,-0.00015780293,-0.045988232,-0.035874598,-0.037062436,0.011434369,0.008629036,-0.025900295,-0.08428017,0.06822711,-0.053139012,0.047561534,-0.009057576,0.028181491,-0.061948046,0.109839045,-0.09895668,-0.055184856,0.029105987,-0.01898451,-0.036079902,-0.038599383,-0.056875467,-0.043821197,0.014931686,-0.012184499,0.024441956,0.03488496,-0.050595257,-0.056260906,-0.093870156,0.06745499,-0.10504874,-0.07303095,0.051269248,-0.012115097,0.023326252,0.009790392,0.067286134,0.03163806,-0.0068264473,-0.022384165,-0.022013457,0.088368714,-0.014091668,-0.030409822,0.07628246,1.8346955e-05,-0.11758225,0.0014637881,-0.032452747,-0.039605536,0.07318053,0.09145361,0.03258525,-0.005313303,-0.06287396,-0.013297614,0.048598632,-0.07139359,-0.062470984,0.005045877,0.016326442,0.04523573,0.13685477,-0.007561241,-0.050512034,-0.05673812,-0.016879782,-0.0111526055,0.021016093,-0.007324243,-0.023883542,0.0071343333,0.011022164,0.020093663,0.05366643,-0.056416176,0.09528576,-0.011981329,-0.010979561,0.0058207465,0.0056047314,0.013282869,-0.012794738,0.11300318,0.050709687,-0.024841174,0.037487626,0.14669536,-1.0275815e-34,-0.05731171,0.022090297,0.03666633,0.07660895,0.007827912,-0.024365447,-0.09947946,-0.010217811,-0.01076814,0.0139584625,-0.030674135,0.049846116,0.06849948,-0.026204687,0.031183429,0.020984877,-0.12152908,0.0006720836,-0.036597263,-0.006667386,-0.0498834,-0.00839471,-0.009234423,0.016777515,0.098483995,0.013524122,0.0068650013,0.032131065,0.08909384,0.014600524,-0.08185263,0.039634336,-0.043701418,0.048135087,-0.023499383,0.054642394,-0.030159304,-0.041976977,-0.060806185,-0.029565584,-0.06684525,-0.0014723175,-0.072111815,0.046621248,-0.0024349827,0.0564508,-0.007658346,-0.08908555,-0.02040158,0.05839049,-0.074439794,0.005989752,0.036599725,0.044457514,-0.008121474,0.037726358,0.10256134,0.035755593,-0.016436614,0.0009123031,0.02567397,0.022437941,-0.010564694,-0.04636336,0.008124395,-0.006934469,-0.013454725,-0.022326062,0.06057407,0.018731426,-0.02755874,0.042917,0.0059412224,-0.0067814025,0.051717866,-0.03405558,-0.0627522,-0.034279734,0.014852023,0.025514955,0.06722433,0.06589388,0.047631606,0.021907471,0.097687356,-0.013428143,-0.0016825892,-0.03563133,-0.005453397,0.06554545,-0.013456501,0.060943305,0.028967403,0.08698017,0.02527688,-6.794688e-34,0.055768006,0.057679225,0.008276213,0.0498043,-0.08057248,-0.018126741,-0.051684283,0.033962205,0.013621255,0.07192855,-0.038154442,0.050927587,0.011175619,0.013017617,-0.03877046,-0.054094322,-0.0007467665,-0.0013370161,0.01804875,-0.017494371,0.061470136,0.050936148,0.01769879,-0.032812156,-0.05812851,0.01262172,-0.014269622,0.050949372,-0.065248474,-0.075768,0.057570614,0.047677595,0.10018572,-0.010632407,-0.00957655,-0.0006912293,0.04716543,0.08814924,-0.010082732,0.00065163,-0.027638026,-0.051882487,-0.08339441,-0.05697186,0.033524845,-0.059855375,0.01114073,-0.07474214,-0.050344706,0.008053133,-0.08624711,-0.06778895,-0.104959585,0.025276624,0.013085912,-0.03293089,0.077950925,-0.05831259,0.012154188,-0.005707258,-0.050400898,0.06014661,-0.013924936,-0.023828698,0.039354224,-0.13906088,0.09711071,-0.022631869,-0.07946343,0.015391236,-0.091349564,-0.039612185,0.0076159337,0.12494858,0.03028292,-0.023892056,0.060728606,-0.07464873,-0.06302512,-0.041329585,-0.030924158,-0.017566482,-0.03930397,-0.00030951394,-0.008610111,0.08750404,0.04369192,-0.05060118,-0.03019793,0.046494737,0.023730224,0.025655117,-0.0017226133,-0.033684168,-0.007639528,-3.4663582e-08,-0.014180789,0.0812546,0.0373989,0.03906494,-0.01637824,-0.045631643,-0.007020968,0.04992592,-0.084064305,-0.02974235,-0.0120413145,-0.0027584967,-0.10890476,0.08635966,0.01886414,0.027393728,0.040809326,0.090664506,-0.053425744,-0.026302142,0.015249865,0.05265752,-0.0007982689,0.0037099007,-0.014732546,0.021778518,-0.0051600877,-0.00435433,0.0015689147,-0.11154961,-0.06771072,0.0072920374,0.021508602,0.0501144,-0.048308242,0.0027647277,0.0041890275,-0.040053613,0.042333167,0.015013865,-0.015858933,0.008345564,-0.05735148,-0.031452183,0.040797744,0.07915653,-0.077591635,0.01187152,-0.10744955,0.040855635,0.034260046,-0.03646599,-0.03391191,0.083354294,0.10747912,0.004156065,0.015716558,-0.046786886,0.04672694,0.08545267,-0.039404646,0.06166255,-0.14860535,0.0037287707} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:39:23.989033+00 2026-01-25 01:27:49.950916+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 196 google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB 1 t 199 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Great customer experience, quick and easy rental process. They are not located at the airport, but there is a regular shuttle bus from and to the airport. The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. For a precise location, I recommend that you ask someone on arrival. great customer experience, quick and easy rental process. they are not located at the airport, but there is a regular shuttle bus from and to the airport. the shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. for a precise location, i recommend that you ask someone on arrival. 5 2026-01-04 01:27:48.340159+00 en v5.1 J2.01 {} V+ I2 CR-N {} {"A3.01": "For a precise location, I recommend that you ask someone on arrival.", "A4.01": "They are not located at the airport, but there is a regular shuttle bus from and to the airport.", "A4.04": "The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and s", "J2.01": "Great customer experience, quick and easy rental process."} {0.1005513,-0.05583766,-0.008489976,0.03336483,-0.0009794275,0.0537503,0.05098307,0.025904316,0.061833452,0.025821822,0.027354395,0.06021846,-0.01769228,-0.03123993,0.08702543,-0.04806404,0.06348747,-0.066173576,0.037103876,-0.062493253,0.081435464,0.015269361,-0.0031598143,-0.015772164,0.02484472,0.01899914,0.042460002,0.0396593,0.06741951,0.0104067875,-0.022595556,0.012322965,-0.006639672,0.030258635,0.019324625,0.06378494,0.0010697929,0.008657419,0.11397696,-0.047307502,0.02895088,0.009650745,-0.03962485,0.014486524,-0.025412047,-0.08438361,0.01692149,-0.030789727,0.08809423,-0.025306914,0.05983844,-0.055575892,0.09653199,0.0742116,-0.011954389,-0.017449852,-0.016202535,-0.048649658,0.04390678,-0.005661422,0.026259417,0.017709292,-0.00766356,0.0035826662,-0.06595202,0.012726601,0.0002017821,-0.0031258983,0.05383916,-0.18954597,-0.020486247,-0.01709738,0.008131833,-0.00055010454,0.010584004,0.05289224,0.09040479,0.05367123,0.04040816,0.005454977,-0.030005028,-0.016661422,0.084900804,0.07593006,-0.05089929,-0.0036782674,-0.040492605,0.007217257,-0.014579805,0.007626566,-0.0067419093,-0.0012750392,-0.07330031,-0.022025121,-0.041681133,-0.021733977,-0.041086696,-0.017921248,0.003805233,0.02090242,0.008498537,0.09952252,0.01914372,0.0036981206,-0.05164922,-0.016412932,-0.045244418,-0.025195934,0.03379765,-0.0062371,-0.056158897,-0.032637272,0.0131504,0.0004382984,-0.030021992,0.061937306,-0.035797343,-0.07249636,0.011735149,-0.073546916,-0.07553018,-0.0116151115,0.095352076,0.060889885,-0.005195608,-0.01936881,-0.012274737,-1.9656749e-33,-0.061152756,0.033736322,0.0015582996,0.042043786,0.034658793,-0.05972454,-0.037348706,0.024064254,0.017367264,-0.019524146,-0.11629916,-0.007825157,0.034815893,-0.049602974,-0.012381845,-0.006156189,0.025072122,-0.08361681,0.013859204,0.009324042,-0.021260595,-0.025920361,-0.0110897515,0.0025469556,0.06506373,0.057140343,-0.0070352973,0.000984158,0.10188391,0.044162616,-0.099547796,0.06661666,0.0036414973,0.023574483,-0.0800634,-0.04445203,-0.051743273,0.049999777,-0.061368138,-0.020300765,0.016163496,-0.012510955,-0.10261205,0.040235788,0.04692545,0.023239851,-0.004111353,-0.006037264,0.1754667,-0.009170021,-0.07030647,0.031440843,-0.03009525,-0.006518999,0.015553332,-0.00366653,-0.014717738,0.026842317,0.09056599,-0.00817414,0.026604667,0.052507598,-0.00066899107,-0.003745259,0.10634488,-0.027739778,-0.03775643,-0.004940494,0.107549116,0.039922453,0.013171968,-0.01625823,0.08930548,0.0614687,0.070499025,-0.06260204,-0.13008095,0.03268152,-0.025582314,0.037221476,0.0066831354,-0.0027872159,-0.050965406,0.090962425,0.08999719,-0.07075383,-0.009357593,-0.029070841,-0.035176415,-0.04516147,-0.0581458,0.044474363,0.0009030937,0.04054857,-0.008454096,-2.15496e-34,0.109989524,-0.05396709,-0.07425653,-0.07645335,-0.08223337,0.06359327,0.02724153,-0.03317095,-0.025499312,0.063121244,-0.1605879,0.02710822,0.02608811,-0.004050723,-0.047506344,0.0049066246,0.059370928,-0.008900772,-0.07096168,-0.012575087,0.0021627306,0.005970756,0.0354268,-0.0802376,-0.05554934,-0.0057270383,0.04457756,0.10154229,-0.12380721,0.0031800342,-0.12424505,0.0058704377,0.078625955,0.024252823,-0.03861791,-0.0066929464,-0.025904924,0.017656906,0.016712766,-0.012563221,-0.0019387148,-0.06639168,-0.036573607,-0.006770506,0.098655514,-0.001423207,-0.03499192,-0.07043793,-0.010838508,-0.08962802,0.033293474,-0.03596308,-0.09180958,0.08003094,0.036286376,0.03870645,0.015828008,-0.01169101,0.09902781,0.01647058,-0.046953227,-0.028596284,-0.004083529,0.017886119,-0.057527144,-0.0046522315,0.012852109,-0.0069534113,-0.059639577,0.0041549695,-0.08937446,-0.030787898,0.018674208,0.10853892,-0.008593558,0.06729979,0.117915384,0.020423254,0.006671075,-0.14962114,0.038899854,-0.02507764,-0.066982806,0.026177462,-0.03383833,0.027703255,0.07388806,-0.04143921,0.0030524023,-0.024036651,-0.030253127,0.058106024,-0.012355288,-0.048133634,0.0389358,-4.4507804e-08,-0.018707113,0.030190254,0.053901877,0.011093876,-0.013071022,0.017113898,0.013802645,0.071358345,-0.039628606,-0.004521217,0.005584729,0.019447586,-0.04345111,0.0049422397,-0.038316417,0.051766742,-0.016717449,0.009677706,-0.0130056,-0.055905566,-0.055345893,-0.025065534,0.09035594,0.023353696,0.043485973,-0.043459598,-0.056272466,-0.10184173,0.035737965,-0.08496985,-0.076326266,0.024717312,0.047187533,-0.013001771,0.00859822,0.029032968,-0.0050902925,0.012271163,0.0031299284,0.036224373,-0.044374667,-0.13961443,-0.065453745,-0.04432451,-2.1360811e-05,0.07772374,-0.03132571,0.018958049,-0.005028226,0.047005218,-0.017378116,-0.010077586,-0.010738804,-0.04691698,-0.046268977,-0.018686142,-0.07417744,-0.08500224,-0.033372577,0.045934357,-0.008533956,0.11900492,-0.05577562,-0.015454081} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:41:05.73774+00 2026-01-25 01:27:50.003408+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1627 google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE 1 t 1630 Go Karts Mar Menor unknown Superleuk circuit👌👍\nDe track is heel proper en goed onderhouden alsook een nette cafetaria.\nPrijzen voor de drankjes zijn zeer correct.\nAfhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc.\nSuper Fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is.\nOnze zoon vond het top!\nTot nog eens 😉 superleuk circuit👌👍 de track is heel proper en goed onderhouden alsook een nette cafetaria. prijzen voor de drankjes zijn zeer correct. afhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc. super fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is. onze zoon vond het top! tot nog eens 😉 5 2026-01-30 01:52:39.833374+00 nl v5.1 O4.04 {} V+ I3 CR-N {} {"E1.01": "De track is heel proper en goed onderhouden alsook een nette cafetaria.", "O2.02": "Afhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc.", "O4.04": "Superleuk circuit👌👍", "P1.01": "Super Fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is.", "R4.03": "Tot nog eens 😉", "V1.02": "Prijzen voor de drankjes zijn zeer correct.", "V4.03": "Onze zoon vond het top!"} {-0.08814239,0.052940898,0.05911683,-0.045592718,-0.025092084,0.0018360427,0.0658302,0.103226334,-0.029221376,-0.018772509,0.0063742083,-0.041474182,-0.032952543,-0.05560058,-0.089189395,-0.05037772,0.01845712,0.06642137,-0.054214325,-0.0009866426,0.030583622,-0.061876852,0.077448785,-0.002927115,-0.033288117,0.03739342,0.02451637,0.010356348,0.031568527,-0.02857966,0.057254378,0.02451933,-0.051902343,0.04164235,-0.016543902,-0.0031617081,0.026367424,-0.0622086,0.0248178,0.06508168,-0.027774774,-0.06284702,-0.11672833,-0.106323846,0.061084095,0.07422092,-0.075946845,0.011382772,-0.12565422,-0.009303377,-0.014997516,-0.03161516,0.10998305,-0.003409503,0.04423429,0.0034448488,-0.054838367,-0.003956958,0.07162386,-0.02247363,0.07496429,-0.013462036,-0.041967325,0.025891343,0.01578352,-0.06568454,-0.09400488,0.0719882,-0.07574952,0.09657979,0.037387755,-0.029953094,-0.020412154,0.0067537064,-0.050604,0.034294404,-0.02723907,-0.06278478,-0.04284684,-0.0031598343,0.0716684,-0.057730135,0.0750444,-0.021301078,0.045027122,0.0127406,0.022539513,0.030415075,-0.014954086,0.012843286,-0.04019366,0.00011602808,-0.05627323,-0.022649847,-0.012056421,0.048563745,-0.0071290373,0.04889527,-0.010853384,0.0097114025,0.05046058,0.008655572,0.017055914,0.025533743,-0.06137483,-0.052300345,0.05195539,0.05686549,0.15501834,-0.0010378807,-0.019524876,-0.10456861,-0.016552735,-0.07694158,-0.012660475,0.0010755111,-0.05995992,-0.013023751,0.032791264,-0.014115479,-0.011432854,0.035082262,-0.029583013,0.012511419,0.001223724,0.09156655,0.054764323,1.6993687e-32,-0.060214832,-0.054385465,0.0037222854,-0.12124444,0.02238639,-0.014404551,-0.06162417,-0.03358889,-0.021352494,0.004239726,-0.0289826,-0.0022035341,-0.047404017,-0.039330848,-0.00084445503,-0.0082799075,0.016222145,-0.02955725,-0.046356756,-0.018494217,0.062880106,-0.03570118,0.014463174,-0.0015440484,0.0043663615,-0.0383258,0.015116289,-0.056236472,0.0117489705,0.020401776,-0.009304424,-0.10872026,-0.009160018,0.02336404,-0.1162784,-0.021640219,0.025717625,0.009076678,-0.01800494,-0.11180689,0.04146283,-0.061456256,0.01600558,0.02223995,-0.0955023,0.17536685,0.032031223,-0.018999359,0.0254208,-0.0406383,-0.057550207,0.008938968,-0.070747465,-0.0412599,0.06100853,-0.020537509,0.04052642,0.07899774,0.06263429,-0.034909368,0.030633463,0.044552065,0.02315827,-0.025415428,0.06256575,-0.025596203,-0.0145287085,-0.004843182,0.05865111,-0.07325945,-0.061001558,0.02022138,0.089128904,-0.00046785755,0.06148373,0.058526408,-0.016398838,-0.012168823,-0.020418437,0.06919674,-0.10569405,-0.03145445,-0.014701848,-0.008713662,0.072767146,0.0040438264,-0.040089823,-0.07296452,0.066037916,0.1198849,-0.02803945,-0.021965917,-0.055725414,-0.019482717,-0.07099608,-1.5477583e-32,0.030854795,0.1440002,-0.027356442,0.05314796,-0.0061116903,0.07901172,-0.034401685,0.022909459,0.02142953,-0.03628419,0.026958458,-0.033211403,0.009159793,0.030940406,0.0014766713,-0.014373117,0.0058198604,0.01852929,0.03622927,-0.07339425,0.024786582,0.00564438,-0.017298233,0.13266084,-0.05310111,0.043330543,0.08781956,0.0020589628,-0.058868926,-0.013115452,0.047235414,-0.028479094,0.020268718,0.06410313,-0.022050988,0.0065111415,0.014522416,0.005226412,-0.06589429,0.012009165,0.0022570547,-0.018594593,-0.04334571,0.08173744,0.001833957,-0.08081982,-0.06168787,-0.067587174,-0.0006288374,-0.0651369,0.02772334,0.049501374,-0.029186325,-0.028150436,0.030672124,0.039315503,0.008330177,-0.10962233,-0.06204875,-0.0848447,0.09205705,0.041749183,0.038889583,0.037100293,0.054095715,-0.030348884,-0.09514165,0.037504043,-0.01864162,-0.040929712,0.020023378,-0.026686752,-0.041698463,0.054251887,-0.052431986,-0.02271139,0.05405402,0.044126555,0.02509449,-0.050422683,-0.08195604,-0.012553392,-0.027268404,-0.031323686,0.017447624,0.03823177,0.021682266,0.012509936,-0.015717879,0.01917829,0.08385657,0.10780092,-0.014616119,0.093441054,-0.045680366,-5.4629485e-08,-0.030914806,-0.03239466,0.0077254213,0.044182263,0.055277593,-0.10000728,0.054384984,0.016200604,-0.04617735,0.027688444,-0.003332959,0.0066509866,-0.05688523,0.057947457,0.04966597,0.013727824,-0.04211154,0.09830681,-0.017609391,-7.637577e-05,0.013724177,-0.033702996,0.0010819465,-0.0051612156,-0.039207548,-0.00034790632,0.02737074,0.00038569697,0.10019188,-0.10181577,-0.001386657,0.053279534,0.01742253,0.048906747,0.034371056,0.019265153,-0.09609442,0.052658215,-0.05497532,0.0864761,-0.0151009625,-0.09985417,0.089670084,-0.002536963,-0.067577176,-0.01373902,0.029719774,-0.0011651777,0.060692847,-0.02124665,-0.08700259,-0.014910865,0.07616494,0.044525232,0.032348786,0.027287396,-0.072818786,0.03750483,-0.07300295,0.005022096,0.04926564,0.021255981,-0.06863852,0.050111577} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:12.749134+00 2026-01-30 02:01:10.095743+00 22c747a6-b913-4ae4-82bc-14b4195008b6 520 google ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB 1 t 523 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un servicio más que excepcional; los chicos que me atendieron Carlos y Antonio fueron super amables y muy profesionales. La flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable. Muchas gracias por todo y repetiré sin duda un servicio más que excepcional; los chicos que me atendieron carlos y antonio fueron super amables y muy profesionales. la flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable. muchas gracias por todo y repetiré sin duda 5 2025-01-25 01:27:48.342399+00 es v5.1 A1.03 {} V+ I3 CR-N {"Carlos y Antonio"} {"A1.03": "Un servicio más que excepcional; los chicos que me atendieron Carlos y Antonio fueron super amables ", "O1.01": "La flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable.", "R1.01": "Muchas gracias por todo y repetiré sin duda."} {0.0069468482,-0.011420572,-0.03678569,-0.028135346,-0.02255349,-0.009427782,0.102437526,0.0035227342,-0.026489258,-0.009881193,0.048019707,-0.022459809,-0.112345435,-0.003844686,0.009591041,-0.022659598,0.00088224467,0.015404859,0.0011768983,-0.009725906,0.06351043,-0.04249907,-0.025116457,0.123637415,-0.144438,-0.031540796,-0.034779336,0.012483198,-0.059468567,-0.08788294,0.021041578,0.05294767,0.08278638,-0.031861637,-0.045316562,-0.014094486,0.08258886,-0.09979888,0.0045076045,0.07065486,-0.12500851,0.047351163,0.024905114,0.0073700505,-0.014571515,-0.13125773,0.0129079055,0.033467,0.04457969,0.04979068,-0.041312493,-0.027240518,-0.014600356,0.00914617,-0.008304689,0.038191214,0.01404131,0.01025003,0.026833598,0.037472695,0.0048889164,0.039445583,-0.024685776,0.041348625,0.0040355395,-0.08093368,-0.0083723115,-0.0032264786,-0.031081306,0.07440971,0.071353614,-0.07512607,0.067641124,0.057961445,-0.015404998,0.06773594,-0.02757705,-0.023062792,-0.033984255,-0.0009784047,0.005927917,-0.0104364,0.02582226,-0.06770261,0.014904259,-0.03193411,-0.071390465,-0.014047368,0.0728663,0.011986037,0.019946061,0.07169076,-0.041256517,0.002345144,-0.063375354,0.039064918,0.05758401,-0.047568154,-0.04460212,0.028916085,0.0715076,-0.00016046454,0.07202522,0.059399366,-0.01553201,0.007995262,-0.0093891425,0.0033692075,0.011207905,0.032755073,-0.059393328,-0.05548962,-0.04871179,-0.02052074,-0.07947963,-0.00061687035,-0.018828902,-0.04939123,-0.020621717,-0.086026825,0.042568356,0.0764281,-0.051964086,-0.031046283,0.02516931,-0.03772183,0.005485679,1.393225e-32,-0.007824314,-0.011817834,-0.008161675,0.08532114,0.016211227,-0.06270256,-0.010897406,0.008141219,-0.034487657,0.0063876915,-0.020188563,0.1192223,0.006914131,0.011516666,0.04424631,0.049440503,-0.0472284,-0.016758328,0.030348513,0.028732823,-0.043164946,0.074229605,0.028535869,-0.012548054,0.014849567,0.016009929,-0.06355524,-0.054626103,-0.015416569,0.074307,-0.040988084,0.031973947,0.0420492,-0.055263184,0.0019932252,-0.029240627,-0.041138977,-0.019848593,-0.049625453,-0.008843429,0.030771358,0.035790756,0.02380954,0.04369568,-0.06197713,0.0032566958,0.057019353,0.092355125,0.10480316,0.015839437,-0.048074555,-0.10292296,-0.027194051,0.015795521,-0.007705126,0.072483085,-0.08894201,0.07046945,0.0111067565,-0.060468197,0.064392745,-0.015496994,0.04061267,0.021796115,-0.050466053,-0.07076716,0.057273008,0.022909503,0.13337845,0.073404595,-0.09128337,-0.012982625,0.018977344,0.033118695,0.036214124,0.026046898,0.03719935,-0.027013877,-0.028262144,0.03513568,-0.033321038,-0.038531654,-0.017534029,0.024207978,0.07889872,0.07407904,0.036617607,0.06479027,0.029891692,0.15188141,-0.038439292,0.08037624,0.12158623,-0.08025992,0.0059735514,-1.4574852e-32,-0.065347195,-0.0070350375,0.031097056,0.04512004,-0.017101713,0.023468059,-0.04343181,-0.060458247,0.020271115,-0.044522088,-0.09889792,-0.09363647,0.06693998,-0.086407006,-0.058937844,0.07776954,-0.033014685,-0.08335598,-0.03717865,-0.041365415,-0.0009041728,0.08327765,0.038363677,-0.035418376,-0.017442824,-0.057931438,-0.006110063,-0.010103146,-0.04062283,-0.023841696,0.05420001,-0.022336492,0.011678558,-0.03018445,-0.047449276,0.0536722,0.039999448,0.019322071,0.028430538,0.081269175,-0.00808632,0.07197397,0.00053442013,-0.0036242139,0.01738626,-0.0002687715,-0.063385196,-0.1726665,0.017922541,0.00060046185,-0.04650585,-0.0694694,-0.12677565,0.013732412,0.01633186,-0.044057123,0.011384246,-0.064032696,-0.115245774,-0.0027858133,0.014270339,0.0042438814,-0.060304306,0.0013174195,0.1108943,-0.011747932,-0.026198735,-0.008630812,0.021450493,0.054224633,0.11422748,-0.018849496,-0.09327687,0.0718517,-0.062470924,0.004567122,-0.033250257,-0.024456292,-0.036937002,0.025696872,0.033173688,-0.030319579,0.038902186,-0.015110132,0.0056978897,0.007574927,-0.045300715,0.00054743106,0.019741943,0.043445677,0.022349508,-0.058236435,-0.03149251,-0.097652726,-0.025643473,-5.3004285e-08,-0.006149218,-0.06386912,-0.023008764,0.008717694,-0.015103545,-0.010770455,-0.038431644,0.011134722,0.005678915,0.0634315,-0.0054462254,0.012292284,0.03423969,0.02530318,-0.013921224,-0.018949274,0.08493262,0.07519058,-0.06339501,-0.076149195,0.0032620635,-0.018339569,-0.019311467,-0.002066639,-0.035298012,0.05749362,-0.04312164,0.04064633,-0.015993068,0.0043597375,-0.06172366,-0.024969546,-0.011104575,-0.092863664,-0.01184786,-0.059396747,-0.00025180122,-0.053797297,-0.05574196,-0.025343174,0.07928485,0.021395886,-0.106698975,0.03088485,0.014162514,-0.1085715,-0.00079255557,0.013946349,-0.03443217,0.072046146,-0.0085555585,-0.050178707,0.022654168,0.06706351,0.067020245,-0.06999411,0.004504607,0.05111044,-0.024371756,-0.02209612,0.071222305,0.08497084,0.081520446,-0.11850895} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:02:16.432961+00 2026-01-25 01:27:51.721017+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 194 google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB 1 t 197 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The car rent itself is ok\n\nBut the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. You need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. And the employees do not care\n\nThey were just overwhelmed with the number of customers coming!\n\nNever again with this provider the car rent itself is ok but the service is very bad. very slow in returning the car and the organization with shuttle is very bad. you need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. and the employees do not care they were just overwhelmed with the number of customers coming! never again with this provider 1 2026-01-04 01:27:48.34015+00 en v5.1 J1.01 {J3.03,P1.02} V- I3 CR-N {} {"J1.01": "But the Service is very bad. Very slow in returning the car and the organization with shuttle is ver", "O1.01": "The car rent itself is ok", "R1.01": "Never again with this provider"} {0.009991023,-0.029079452,0.05327206,0.0071355957,-0.10455735,0.082947664,0.070198156,-0.04710927,0.027429588,0.009324047,0.050255768,0.11023368,-0.005314411,0.02921848,0.030305387,-0.062487267,0.13237692,-0.04837624,-0.054577406,-0.021185575,-0.041020934,-0.080234945,-0.061068047,0.014419144,0.0024190922,-0.035071436,-0.044557914,0.036374845,0.055397566,-0.024946228,-0.030195402,0.0095380265,0.073797055,-0.03540764,-0.004114772,0.038996533,-0.042012054,-0.09454771,-0.05636806,-0.027434729,0.02780331,0.03278714,0.0010582175,0.01267979,0.029952498,-0.06613868,0.042374145,0.009594534,0.09649672,-0.050541278,0.057324562,0.029090226,0.042639792,-0.03668282,-0.060965527,-0.031527326,0.042683527,-0.0020521411,0.033399906,-0.0003959198,0.06877621,-0.043643426,-0.021169417,0.03979366,0.009388125,0.0051458385,-0.08116079,-0.062107448,0.029085102,-0.046117622,-0.025949065,-0.041789234,0.014946017,0.0547645,0.027436601,0.096345544,0.028311733,0.052933924,0.10771119,-0.04861054,0.041229982,-0.060618438,-0.015065737,0.030000303,-0.006816048,-0.05415635,0.015026935,-0.043991737,0.0126450155,0.051595468,0.08581857,0.11553752,0.06602237,-0.041425414,0.018027963,0.03577008,-0.024854042,-0.073932305,-0.049466237,-0.0013145985,0.056357004,0.10898478,-0.0017290211,-0.01560564,-0.078058966,-0.068801224,0.039415464,-0.005784204,-0.04679089,0.0009298025,0.002736367,0.006945952,0.06565708,-0.02806805,-0.09125588,0.112293005,-0.038263246,0.013730094,0.021437306,0.0554894,-0.049499538,-0.025973666,-0.0029469344,-0.03338293,-0.021444144,0.031650517,0.08370901,3.0985598e-33,-0.10164634,-0.012603868,0.013083782,0.018169524,0.019246228,-0.054113973,-0.017011805,0.06956976,-0.038802132,-0.01488031,-0.0051076803,-0.0203189,0.038683493,-0.046045195,-0.009183893,0.05814787,0.00064398,0.030148566,-0.03271817,-0.024316156,-0.014760269,-0.026187971,0.002877356,0.008842853,0.042061657,0.02177623,-0.00041104705,0.0014118612,0.14318623,0.043395597,-0.039240047,0.015438791,-0.0044247517,0.012878234,0.0149781,0.031218149,-0.018282058,0.05030945,-0.08527979,-0.09166516,-0.049500223,-0.02995149,-0.09714714,0.0055804844,0.023758583,-0.02661582,0.09284291,-0.112415545,-0.030496774,0.101731785,-0.058132295,0.04332053,-0.04472651,0.083737455,-0.06017332,0.06055147,0.0714695,0.035951767,-0.019905921,-0.053339288,-0.018083863,0.046991967,0.014558029,-0.0387605,0.055954315,-0.043373913,-0.023191705,-0.001856009,0.0565959,0.060627382,0.1004553,0.025976533,0.029550308,-0.034094114,0.0175639,0.011475647,-0.07724218,-0.012132509,-0.009239439,-0.010060306,0.07342464,-0.0134733915,0.045476176,0.00019136429,0.014514049,0.04410642,0.043595754,0.012829597,0.030536737,0.1415425,0.0050716973,0.066105485,0.014181364,0.051987685,0.039007757,-4.3670166e-33,-0.0142645715,-0.010749017,-0.018587908,-0.06902931,-0.0778108,-0.0008586948,-0.12483198,0.020696921,0.006262465,0.067718126,-0.09316109,-0.028535763,0.06793986,-0.011572114,0.01892161,-0.015694436,0.062541604,-0.07158793,-0.011854707,-0.009811031,-0.03260365,0.016058708,-0.024827126,0.07946761,-0.008642401,0.039677233,-0.09100813,0.0499775,0.0037230637,-0.0030605886,-0.023236167,-0.009963484,-0.02289585,0.031792514,0.01641836,-0.057010874,-0.0014375148,0.08961167,-0.04614193,-0.0047148783,0.01654736,-0.10721347,-0.025316264,-0.09395898,0.097129375,-0.0941943,0.09889813,-0.1009512,-0.00788287,0.05744655,-0.01990587,-0.07877197,-0.04743112,0.03255797,-0.021913154,-0.0006514616,0.027815104,0.017943902,-0.013282502,0.038962506,0.07751349,-0.050006654,0.052687485,-0.011702117,-0.008233082,-0.109799266,0.06667844,-0.07084545,0.020385414,-0.05438237,-0.05408091,-0.044263076,-0.031540263,0.028220782,-0.00032989364,0.05254844,0.053309303,-0.008774385,-0.07016106,-0.06995474,0.04864641,0.040706083,0.0045965584,0.032803413,-0.009924337,-0.011152892,0.073976144,-0.067827865,-0.044157602,0.06122079,-0.074783005,0.019564243,-0.11627602,0.016276749,0.0009502176,-4.8544667e-08,-0.015596628,0.011486876,0.07187077,-0.04706702,-0.038027238,-0.1263407,0.0138623435,0.040764023,-0.08062067,0.03367479,0.037740167,-0.04512067,-0.046441134,0.064933926,-0.024078853,0.041308735,0.03169123,-0.01910653,-0.04525756,0.011403063,-0.014682851,0.019640973,0.026612926,-0.01924322,-0.031565588,0.012929334,-0.012202933,-0.021176506,0.09023943,-0.10800471,-0.044957273,-0.007452807,0.034295514,0.014500885,-0.098870255,-0.06361287,0.051295545,-0.0418116,0.0047069546,0.032880623,0.072481014,0.018060131,-0.06795795,-0.008427908,-0.016344037,0.05631258,-0.035687577,0.040596273,-0.06652742,-0.009767381,-0.05494846,-0.07137036,-0.0926781,0.013606505,0.06365819,-0.089592874,0.023367928,-0.03756677,0.014803318,0.050677065,-0.081875056,0.036568824,-0.06252742,-0.0089911325} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:40:42.966394+00 2026-01-25 01:27:49.992518+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 203 google Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB 1 t 206 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.\nGetting and returning car is a nightmare be prepated to miss your flight.\nAfter I returned home, my credit card was charged additional 180 eur without any documentation. So if you want to avoid headache - stay away from it. stupidest instructions of meeting point you can imagine, they are trying their best not to have clients. getting and returning car is a nightmare be prepated to miss your flight. after i returned home, my credit card was charged additional 180 eur without any documentation. so if you want to avoid headache - stay away from it. 1 2026-01-25 01:27:48.340202+00 en v5.1 A4.04 {} V- I3 CR-N {} {"A4.04": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clie", "J1.01": "Getting and returning car is a nightmare be prepated to miss your flight.", "R1.01": "So if you want to avoid headache - stay away from it.", "V1.03": "After I returned home, my credit card was charged additional 180 eur without any documentation."} {-0.017382395,0.013424123,0.036998753,0.0037672173,-0.04407404,0.043307807,0.035963327,0.0067569413,0.040873423,-0.06249589,0.0253773,-0.0022250635,-0.05852492,0.0032266388,-5.7737205e-05,-0.0795607,0.025117403,-0.15471433,0.007981947,0.053331394,-0.0668246,0.0024954795,-0.050081916,0.0995772,0.0108925905,0.010068417,0.016641984,0.0387173,-0.007568943,0.03189423,0.03441888,0.081959456,0.0076426067,-0.003958507,-0.0014754961,-0.0215159,0.03633113,-0.023580587,-0.029442988,-0.047988113,-0.0005433305,-0.023761358,-0.025328895,0.06594425,0.10069697,0.0036864218,0.025619704,0.08270356,0.06154028,0.035143554,0.014934748,0.012863584,-0.045191966,-0.1124484,-0.082871355,0.07734261,0.012327917,0.0688283,-0.025920898,-0.013133486,0.015185358,-0.050275855,-0.033020217,0.052758843,-0.047912866,0.007280657,-0.011712011,-0.044070624,-0.023248764,-0.023152087,-0.017868262,-0.059215013,-0.012571951,0.049499843,0.063632995,0.052845318,-0.015511794,-0.005828823,0.043175098,0.011359256,0.01565959,0.009073229,-0.019696552,0.046817716,0.07269779,-0.05797151,0.0048107235,0.0151061,0.028537557,-0.0033991535,0.053860508,-0.053810086,-0.018402029,-0.0234023,-0.020104423,0.03030504,-0.023523973,-0.021041285,-0.0069162166,0.020140652,0.09561721,0.10610248,-0.015462788,-0.023787543,-0.07793639,0.017159458,0.0778234,0.041289985,0.046443645,-0.004700591,-0.050469104,0.009068815,0.06237808,-0.0964094,-0.07846226,0.09496312,-0.06390024,0.022997128,0.09525952,-0.02145084,-0.05248153,0.0038512652,0.061241146,0.02105924,-0.006315256,-0.006431483,0.045756366,6.4880474e-34,-0.03660748,0.061009575,0.023868546,-0.055313725,-0.027035046,-0.006034898,-0.08347561,0.026893074,0.008173031,0.0075269,0.0007683289,-0.05721219,0.1330205,-0.04819975,-0.05383452,0.038923938,0.0016311831,0.03867879,-0.017354894,-0.018938001,0.040788632,-0.102174066,0.049810395,-0.005408102,0.075242065,0.06382538,-0.06788911,0.024015827,0.10102151,0.01299916,-0.06520012,0.016268045,0.023375427,-0.0015543834,-0.046229597,0.14586048,-0.04083474,-0.061206046,0.005345257,-0.04723917,0.021910988,0.039358173,-0.106857926,-0.019895356,-0.01985465,-0.017207246,-0.03321184,-0.03430915,-0.0135439485,0.098853804,-0.11716435,0.024349287,-0.0013706242,-0.008202702,-0.033565298,0.04560819,0.019019295,-0.0006439961,0.00865664,-0.07972282,-0.004728907,0.015232216,-0.090398066,-0.005405158,-0.07580972,-0.030164488,-0.049842983,0.023573633,0.0037975938,-0.0022083507,0.06495563,0.09243426,0.030895915,0.01207862,-0.041349493,0.019461581,-0.042398423,-0.0060479585,0.06921654,-0.0042853765,-0.023777299,-0.006904891,0.029305631,0.06552219,0.10353046,0.048010547,0.07292222,-0.010745025,-0.019573173,0.054080807,0.0023335123,-0.02159833,-0.007350507,0.030422727,0.05344048,-7.903304e-34,-0.005816616,-0.042026933,-0.072815925,-0.045566425,-0.08441738,-0.03552528,0.00018434526,0.028841432,0.0473902,0.050707184,-0.0816825,0.0052766697,0.005200387,-0.049187116,0.073244706,-0.02705174,0.05194552,-0.015413932,0.03220005,-0.01887607,0.07700345,-0.02561242,0.06428074,-0.06433869,0.016426696,0.0066858632,0.040349726,-0.01278792,0.0022457947,-0.056699503,-0.0026882445,-0.020710088,0.0152014615,0.0708871,-0.02758409,0.029932637,-0.05242439,0.08275298,-0.07056259,0.003427045,0.006716093,-0.02359627,-0.042845402,-0.024450682,0.07187051,0.011671576,0.08555777,-0.044849463,-0.026914714,0.02352809,-0.015888179,-0.089942016,-0.042762835,0.048366707,-0.12226907,0.061075747,0.094106756,-0.032325942,0.01881877,-0.033951618,0.04846358,-0.022983298,-0.008845051,0.035522714,0.049746506,-0.10816464,0.011610112,0.05163191,0.047438845,0.007854871,-0.11863911,-0.033034503,-0.007210904,0.02590199,0.012715545,0.04390274,-0.00043307713,0.005616419,-0.07741284,-0.11103839,0.06848934,-0.03727011,-0.010945548,0.10534171,0.042953957,-0.018189844,0.016307617,-0.03839363,-0.020344542,0.049228244,-0.040161245,0.016940719,-0.03917825,0.09500429,-0.07936752,-4.2203144e-08,-0.12758216,0.053008392,-0.00058091147,0.029150272,-0.0025790434,-0.050663065,-0.0001119749,0.043454506,-0.12591675,-0.054585688,0.030099016,-0.036858577,-0.06673234,0.06915206,-0.00056329113,0.036082875,0.05716021,-0.013623243,-0.055848293,0.004285536,-0.110138364,0.043148503,-0.032447733,0.0038095615,-0.006143925,0.045526836,0.035635397,0.16242573,0.09471195,-0.1736165,-0.120187335,0.039800297,0.031614505,0.029835872,-0.06575972,-0.047772385,-0.004311933,0.033338536,-0.004731495,0.028855357,-0.03773689,-0.001551307,-0.016999496,-0.02200088,0.055986818,0.023474604,-0.041577086,0.02053592,0.0125066675,-0.07495747,-0.057315845,-0.013671052,-0.023454035,0.06539179,0.056499902,0.024998184,0.0046122484,0.0076236357,0.0027433243,0.020340705,-0.05190203,0.057797592,-0.10374563,-0.016306128} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:24.0992+00 2026-01-25 01:27:50.033314+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 205 google Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB 1 t 208 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very difficoult to get to from the airport. When criticised their policies they refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!! very difficoult to get to from the airport. when criticised their policies they refuced to give the car that we already paid and also refused to refund our money. we got literally robbed!!! 1 2026-01-11 01:27:48.340414+00 en v5.1 V1.01 {} V- I3 CR-N {} {"A4.01": "Very difficoult to get to from the airport.", "V1.01": "When criticised their policies they refuced to give the car that we already paid and also refused to"} {0.07436909,0.082053445,0.020175034,0.06494775,0.051486865,-0.021563584,0.08004334,0.01475579,-0.018385401,0.043084957,0.053585466,0.058566127,0.034596734,0.030531533,-0.03920106,0.010587453,0.009010754,-0.1584139,-0.042084605,-0.04014682,-0.011902965,-0.03835817,0.023489123,0.06516272,0.032094885,0.093560524,0.0042576636,0.10376381,0.07059604,-0.044114638,-0.0025988175,0.025742862,-0.07604321,0.043425784,0.01035687,0.0019748546,0.10052176,-0.064705886,0.029374637,-0.10068526,0.047079362,-0.016555427,0.038366918,0.0019560554,0.023692869,-0.06287093,0.02318596,0.052308764,0.03860938,-0.03048651,0.07807349,0.030165143,0.02272412,-0.10239171,-0.033337153,-0.051269133,-0.0042099454,0.0513415,0.0073698037,-0.04564925,0.011419205,0.020841213,-0.05542031,0.04084103,-0.08936217,-0.069128126,-0.05731909,-0.08338121,0.028655434,-0.020871531,-0.0065678586,-0.08120336,0.05344518,-0.029210256,0.008302526,-0.010261283,0.050053567,0.035918187,0.0027374972,-0.0012498812,0.018217344,-0.08850777,-0.0402863,0.05696222,0.09553431,-0.09076084,-0.01473824,-0.057773337,0.017376464,0.0005530909,0.029731307,0.018290736,0.018616749,-0.023010999,-0.023823543,-0.04622498,0.037735697,-0.0028459681,-0.023768436,0.0619757,0.051117197,0.15812486,-0.03492963,-0.033098556,-0.04283345,0.008882735,0.02486799,-0.019947305,0.013657741,-0.012742174,-0.024821315,0.03745214,0.023902053,0.012718961,-0.044476636,0.03742982,-0.06389299,-0.0090125445,-0.0037219077,-0.022623977,-0.021057555,0.06893688,-0.057568513,0.038120594,-0.0343162,0.010830451,-0.027971929,-8.65901e-34,-0.0391439,0.04119197,-0.03368358,0.027914586,-0.027267,-0.06548489,-0.0993261,0.06380829,-0.004232136,0.06457462,0.006478509,0.0017211535,0.036147192,-0.04444758,0.039760754,0.034287766,-0.10803478,0.01382801,-0.017229833,0.019271748,0.0433325,-0.0070164856,0.05165404,0.055161674,0.09004293,0.013595959,-0.093701825,0.014339939,0.106870726,0.04466601,-0.038996495,0.116643704,0.0497278,0.024462413,-0.079214334,-0.04482362,-0.024163099,-0.05441505,-0.10389643,-0.03299479,0.0061594094,-0.056798648,-0.04347009,0.020880468,0.025970004,0.033115245,-0.042902183,-0.030734945,0.016634773,0.0017039347,-0.058703803,0.027672501,-0.0696516,-0.005219557,-0.015375924,-1.3366204e-05,0.0012281687,0.06556313,0.031772397,0.005130605,-0.031690013,0.091222726,-0.036491822,-0.012654767,-0.005057827,-0.0098529905,0.016188696,0.027731393,-0.057010513,0.014653801,0.009019275,0.064683534,0.022492807,0.0033930452,-0.02754078,-0.029216487,-0.026151745,0.013171868,0.030554635,-0.0010004515,-0.02915965,0.050282784,0.04500781,-0.028122386,0.115118906,-0.00900773,0.030603146,-0.084076904,-0.024403036,-0.028295364,-0.104875095,0.037544243,0.04918059,-0.0036125144,0.028180258,-1.2266241e-33,0.037685577,0.028763568,-0.059887342,0.0015477833,-0.07273872,0.014765999,0.038943477,0.061012454,0.04661469,0.06657484,-0.07302021,-0.05023714,0.07261926,0.021905165,-0.015649244,-0.08712376,0.12719317,-0.009831023,-0.037721824,-0.07327524,0.045830186,0.07852398,0.047338583,-0.029057773,-0.10705924,0.042269588,0.034996647,0.0025506767,-0.028991222,-0.07223365,0.023392055,0.050295383,-0.019752702,0.034891933,-0.031446263,0.03824638,-0.056642406,0.051154964,-0.058928434,-0.0012978248,-0.06470851,-0.036716055,-0.039789643,0.06013685,0.02644539,-0.024721788,-0.009857983,-0.0979905,0.061197545,-0.088641144,0.055364694,-0.0046174284,-0.05814777,0.08282164,-0.0062526073,0.033050414,0.03396815,-0.04919202,0.08689761,-0.040327534,-0.03423848,-0.017141692,-0.08614404,0.051831942,0.011642396,-0.047287293,-0.01971811,-0.010829566,0.07132321,0.023885563,0.027923632,-0.06393601,0.022445837,0.15776072,0.026001228,0.08057593,-0.010328322,0.043504544,-0.046483755,-0.012326919,0.052417345,-0.06620677,-0.026511032,0.009399123,0.014296138,0.027847603,0.076088056,-0.12211241,0.03887061,0.043482464,0.004161899,-0.04613879,-0.05651164,0.0039206967,0.037292115,-3.0758336e-08,-0.01947207,0.01493043,-0.0038560687,0.06683878,-0.032327116,-0.05249869,0.0040072417,0.055141833,-0.100828156,-0.038234457,-0.001960683,0.032874532,-0.0937236,0.010205349,-0.061764978,0.069421604,-0.030788649,0.027047453,0.009890903,-0.03794415,-0.055223964,0.0058710286,-0.1138697,-0.03759233,-0.015727866,0.014986934,-0.005636094,-0.014264878,0.0956972,-0.02516361,-0.11264822,-0.007713015,-0.008371537,-0.03335572,-0.152284,-0.0015273776,0.06315489,-0.048917968,-0.009722971,-0.07621483,0.015856585,0.00086456817,-0.0028250855,-0.0085178,-0.020094557,0.029456358,-0.12929763,0.076066844,0.020428808,0.0149856005,-0.05211763,-0.015206214,-0.020990359,0.09452516,0.039090354,-0.05980149,-0.030821739,-0.061972704,-0.085666955,0.029664196,-0.0052656513,0.04103201,-0.010804984,0.03045822} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:39.403374+00 2026-01-25 01:27:50.037684+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1280 google ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE 1 t 1283 Soho Club unknown Очень классная клуб 💃 очень классная клуб 💃 5 2025-01-29 18:34:31.336452+00 ru v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Очень классная клуб 💃"} {0.023013713,0.059779365,0.05430497,0.024618147,-0.039028607,0.07137655,0.12648016,-0.002796946,-0.011389794,-0.051616207,-0.009187191,-0.03969716,0.07150854,0.020412004,-0.07077884,-0.03469949,0.011537479,0.0033813452,-0.08122839,0.02011473,0.013538732,-0.046261955,0.071611926,0.068649545,0.023075616,-0.023173554,-0.048210073,-0.05839014,0.02708262,-0.058903567,0.04035141,0.01782775,0.07437765,-0.050393265,0.08122359,-0.033381246,-0.03826022,-0.0036799582,-0.01294757,0.066884495,-0.09686331,-0.077887595,-0.03931587,0.0151890535,-0.00913875,0.0015196648,-0.046397753,0.00014639359,0.05818934,0.034406226,-0.115723945,-0.07859512,-0.0016381997,-0.0041048354,0.03663761,-0.053841103,-0.059504665,-0.04885877,-0.025423229,-0.031726614,0.086872265,0.00797121,-0.06230971,0.008665349,-0.06739071,-0.024117874,0.055547472,-0.024718786,-0.030169506,0.05862531,0.026882574,-0.058347404,-0.03295718,0.0837258,-0.0008652296,-0.10789993,0.01933779,0.00031045842,-0.021232346,0.04378193,-0.02007661,0.06276876,-0.09545368,0.019173864,-0.09301163,-0.079495504,-0.05391589,0.0068818307,0.038782433,0.055660818,-0.07274681,0.06536957,-0.012441536,-0.033901934,-0.0845594,-0.0026968268,-0.043276936,0.01542864,0.030449798,0.04194405,0.034779605,0.060534917,0.08699816,0.0460897,-0.079407685,-0.024453698,-0.036289845,0.004260445,-0.01068068,-0.010354243,0.024100017,-0.083064824,-0.05573694,-0.07058007,0.049977392,-0.009601492,0.07698844,-0.059819408,-0.0023820158,-0.009532043,0.08924765,-0.0074530123,0.0077319136,0.016565312,-0.07029264,-0.029183105,0.024559418,6.293992e-33,-0.022696426,-0.072190166,-0.012845924,0.03867247,-0.14640549,0.010063587,-0.07209371,-0.0059792213,-0.045000363,0.03556848,-0.03166816,0.065629244,-0.012363261,-0.025686605,0.04221661,0.05223601,0.043078672,0.00071333785,0.09176395,0.09909653,-0.033500593,-0.017929481,-0.012343589,0.025117695,0.00570901,-0.037031017,0.05775524,0.0036508793,-0.009176441,0.02033978,0.07970042,0.016883854,-0.05766879,0.0015739739,-0.08683749,-0.046722636,0.046200655,0.11743687,0.012606915,0.07996442,0.047469284,-0.05793002,-0.08860579,0.021266924,0.07334766,0.06787904,-0.03516193,0.002937192,0.023772685,-0.036072403,0.0010942987,-0.015992636,0.001798084,0.13112237,0.11720558,0.10150165,0.042319126,-0.019907698,-0.040836375,-0.05557461,-0.052617393,-0.028172873,0.030774815,0.031030368,-0.012854346,-0.08746105,0.046390824,-0.012050587,-0.04260663,-0.052013017,-0.11357394,0.027668366,0.041398223,0.047968958,-0.07228376,-0.046474718,-0.09717035,0.0065817772,-0.040881794,0.08290995,-0.0078618005,-0.027175074,0.04643554,0.003521226,0.033126056,0.05661531,0.0077281706,-0.10981032,-0.01644729,0.048392117,-0.12892489,-0.06779449,0.03930665,0.03180206,-0.014056135,-7.60344e-33,0.09283767,-0.07106069,-0.0067208605,0.052146398,-0.009302267,0.03187747,-0.012910845,0.1044481,-0.03700191,0.085735716,0.014056079,-0.03840163,-0.034399595,0.051423475,0.039765473,0.020490587,0.117112875,0.032999154,-0.10954612,0.011159049,-0.10564651,-0.01645046,-0.09021221,0.01685972,-0.049199987,0.051393043,0.06166616,0.011136933,-0.09830968,0.05427861,-0.031180093,0.019829862,-0.024808886,0.039484475,-0.025534652,0.027623901,-0.0011629241,-0.049020022,-0.054295674,0.010702877,-0.002360231,0.0750743,0.023026748,0.028015189,0.04478707,-0.032636575,-0.060570095,-0.03777926,0.0115186935,-0.059757445,0.021427337,0.028750889,0.015157511,-0.04542214,0.0632396,-0.016089834,-0.017896252,0.01376131,0.07743909,0.037598122,0.031949077,-0.034082074,0.026743652,-0.036942087,-0.0006269369,0.008255795,-0.014958547,0.028574256,0.04470812,0.11744459,0.041648574,-0.017308967,-0.028945915,0.050493512,-0.04985468,0.062976025,-0.07097682,0.1146395,0.04037859,0.073385015,-0.022308793,-0.029846441,0.011316282,-0.0609063,0.022672847,-0.08622829,-0.023333758,0.029811399,0.04163401,-0.018450474,-0.016581824,0.024603555,-0.009787995,-0.017896198,-0.008008171,-2.5864425e-08,0.012592126,-0.04616318,-0.04481867,-0.010758588,0.026675003,-0.0022273716,-0.04427237,-0.019276777,0.015207611,-0.076496184,-0.026981631,0.014100612,-0.02671356,0.10219615,-0.028718844,0.03147057,0.014431835,0.04350409,0.05136421,-0.011605734,0.09665537,-0.06743102,-0.043237925,-0.052963786,-0.011130867,0.0015841387,-0.03437382,0.12355777,-0.036201864,-0.054866474,0.005766595,0.014573597,-0.038119894,0.029062927,0.021820242,-0.035923507,0.017209671,0.031100394,-0.044531554,-0.03744254,0.0044504204,-0.014079544,0.047188025,-0.0062155896,-0.06259775,-0.040482067,0.040706996,0.024271263,0.018586773,-0.019473659,-0.068198845,0.024035426,-0.05879907,0.041737653,-0.0011014979,0.061729617,0.104839794,0.0048780525,-0.010625087,0.037922617,-0.08532508,0.01565787,-0.036542576,-0.05915432} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:24.437222+00 2026-01-29 18:36:00.675569+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1281 google ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE 1 t 1284 Soho Club unknown Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat. super miejsce. polecam. fajna muzyka,fajni ludzie,fajny klimat. 5 2024-01-30 18:34:31.336452+00 pl v5.1 E4.04 {} V+ I2 CR-N {} {"E4.04": "Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat."} {-0.10010233,0.054581262,-0.018717017,-0.07859683,-0.0043562097,-0.008858856,0.08472694,0.15710802,0.011421963,0.028970525,-0.0016121315,-0.0141561935,-0.0129482215,0.06394772,-0.04824395,0.0065239104,-0.02265884,0.0519967,-0.046357434,-0.01214066,0.095650844,-0.10282451,0.04750232,0.009308995,-0.021411391,0.02720123,-0.025905369,0.09561895,0.019003848,-0.012971799,0.013907835,0.093997784,0.01667377,-0.009342754,0.018217467,0.034799904,0.028019425,-0.07182174,-0.010447473,0.0659985,-0.08283933,0.028012758,-0.06327935,-0.024039172,0.040913384,0.048636917,-0.0011572691,0.042839617,-0.06485514,-0.043107294,-0.1246617,-0.116818845,0.030005207,0.033647723,0.06332681,-0.03689437,-0.06802189,0.003496375,0.042900346,-0.031217396,-0.01904843,-0.028057663,-0.095211595,0.019841105,-0.016145442,-0.07055156,-0.09297855,-0.0036470678,-0.0061848806,0.09828355,0.050218616,-0.08378127,-0.039203268,0.05455038,-0.0699827,0.016386919,-0.037649076,-0.02044261,-0.028417435,-0.01918678,0.07877961,-0.09288953,0.022727478,-0.10178306,0.017869664,-0.0036719015,0.026952833,0.03139274,-0.0072497553,-0.009823565,-0.0035198715,-0.002201361,-0.06621893,-0.020196589,-0.04682817,0.03275414,-0.004071325,-0.019971523,-0.023618955,0.05805627,0.06347657,-0.031245708,0.0805642,0.04775503,-0.03507263,-0.042903498,0.036041636,0.0042615654,-0.03491547,-0.034364745,-0.06850333,-0.053147502,-0.04287747,-0.076626085,0.00040528286,0.031814452,-0.020964945,-0.0073150718,-0.00496707,-0.003861226,0.06701351,0.006661357,-0.032158338,0.08509019,0.06659765,0.06257588,-0.015261993,5.1570337e-33,0.016953371,-0.02383597,0.030530833,-0.048768107,0.02596635,-0.008059372,-0.04641757,0.003946447,-0.0335834,0.021299701,-0.0114653455,0.006339821,0.0129802115,-0.07112748,-0.006307928,0.038289502,0.013239405,-0.06939942,0.009350439,0.042945992,0.06600042,0.005818929,0.060398843,0.058495928,0.008076822,-0.016178483,0.051912524,-0.04744409,0.011031255,0.06678311,0.00808439,-0.09190916,-0.08622471,-0.0055288607,-0.107555866,-0.025248367,-0.01098829,-0.092765085,-0.05223557,-0.035257842,-0.012449877,-0.06347401,-0.06594989,0.08173529,0.037072387,0.059666365,0.013619285,0.0037246924,0.05677697,0.029818956,0.00050969323,-0.06385814,-0.12204708,-0.010095905,-0.05713013,0.119478025,0.009251429,0.04624005,0.03924566,-0.042456932,-0.014144106,-0.033354685,0.010067534,-0.019835332,0.058091234,-0.059974737,-0.00964767,0.025946913,0.010360628,0.06493777,-0.002699345,-0.05816936,0.05661508,0.052402142,-0.008673962,0.0012328681,-0.013419649,-0.014457805,-0.084243715,0.03009681,-0.094529726,0.07151679,0.03924048,-0.016431151,0.04484912,0.037501458,0.050462406,-0.05764914,-0.014126232,0.07627954,-0.021363288,0.027530422,0.11634583,-0.034928605,-0.08151857,-3.0942545e-33,0.0579768,0.03102601,-0.01850833,0.043295443,0.03641244,0.042794194,-0.019059539,0.016053302,0.05339256,-0.00523565,0.010361282,-0.15278478,0.053585876,0.0061252727,-0.017287849,0.045608725,0.018069671,0.054256927,0.008964707,-0.022691956,-0.0014539782,0.007846271,0.083868034,0.14091377,-0.04962442,-0.009462693,0.079791635,0.008291014,-0.061401658,0.031887814,-0.04231013,-0.095274456,-0.017938646,0.0017474432,0.000561928,0.0060716663,0.08684626,0.032164022,-0.010962947,0.025840273,-0.044343736,0.045055553,-0.015226681,0.056695405,-0.009495697,-0.06642032,-0.078849,0.0372641,-0.0324787,-0.18025775,-0.027186826,-0.003923502,-0.026259484,-0.019853964,0.049865447,0.056179907,0.01395362,-0.016275711,0.032737628,0.035305586,0.10801876,-0.10812542,-0.03862836,0.035918295,0.12968299,0.013118875,-0.005156238,0.028030984,0.008055461,0.055982124,0.07285377,-0.052846327,-0.06890136,0.062120166,-0.0031000886,0.025896864,-0.024529511,0.105747834,0.024875814,-0.02247398,0.025939943,0.021580772,-0.092588566,0.065432735,0.06774685,-0.034211446,0.011888787,0.007574621,0.024194798,-0.065114796,0.044213448,0.08820219,0.00261474,0.048355907,0.049631502,-2.537335e-08,-0.0060480256,-0.026950281,-0.08334078,0.037811518,0.09599081,-0.07851197,-0.04901714,-0.029786646,-0.023564013,-0.024865527,-0.007169062,0.011882584,0.059777275,0.058497645,0.01539704,0.05683964,-0.0156148,0.054942958,0.017664813,0.0752562,0.0514015,0.004595499,-0.027802058,0.005594278,-0.07944624,0.05425016,0.038329978,0.003928162,0.04502586,0.0049562952,-0.056766372,0.038213972,0.028875543,-0.009226793,-0.03994765,0.052750383,-0.048783652,0.011318645,-0.06317537,0.023865776,0.025185293,0.011923223,0.093636274,-0.016672838,-0.028728064,-0.021291452,0.041070066,-0.016882235,0.027195705,-0.0265293,-0.064852364,0.028792664,0.028967954,0.051732507,0.025579745,-0.026516614,0.010649308,-0.036608137,-0.086244576,-0.046295635,0.09753439,0.062573776,-0.037595507,0.0061468966} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:29.174103+00 2026-01-29 18:36:00.677133+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 545 google ChZDSUhNMG9nS0VJQ0FnTUNZb2ZxWlBREAE 1 t 548 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hicimos, factura de 385€ según su valoración, triste que hayan negocios para robar al consumidor. la experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hicimos, factura de 385€ según su valoración, triste que hayan negocios para robar al consumidor. 1 2025-05-30 01:27:48.342506+00 es v5.1 P1.02 {} V- I3 CR-N {} {"P1.02": "La experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hi"} {0.009210073,0.09995033,-0.0663499,0.00041191897,-0.06133215,-0.017684793,0.077446364,0.063313946,-0.006241614,0.036662485,0.10291573,-0.052501716,0.045672275,0.001559432,-0.03805211,-0.055340204,0.060061853,0.011093655,-0.023459548,0.0335531,0.080456935,-0.033435456,-0.047643706,0.08863848,-0.0856772,0.026788201,-0.011606427,-0.08609495,0.025315264,-0.06957492,-0.046801746,0.08045362,0.114785224,-0.06439832,0.00879932,-0.034511212,0.008102984,-0.044879645,-0.08010821,0.072429985,-0.044127896,0.0171716,-0.084424645,-0.076954626,-0.030439014,-0.034564987,0.0011710351,0.102724165,0.043245442,0.007027996,-0.055009376,0.06672761,-0.0268708,-0.0405149,-0.013468196,-0.04941891,0.00995952,-0.03377404,0.0038313624,0.046198238,0.058711257,0.059262082,-0.008130044,-0.02530965,0.09973121,-6.2833125e-05,-0.0037232148,-0.06398957,-0.0920486,0.07683492,0.027773371,-0.0991253,0.03816343,-0.017753199,-0.0048624286,0.028628075,0.051463444,-0.005663969,-0.008707801,-0.063774176,0.03756995,-0.0576087,-0.023782069,-0.007918737,0.030072972,-0.0137558095,-0.000978222,0.035124786,0.07885609,0.023544347,-0.0449511,0.07051948,-0.09829162,-0.0647107,-0.051655907,-0.0029212413,-0.036777828,-0.03383185,-0.014260517,0.055229686,0.047141273,0.041837063,0.037655346,-0.08691586,-0.008845141,-0.016430084,0.026352579,-0.053982574,0.04532916,0.11402648,-0.075036794,-0.036050852,-0.011880526,-0.09567171,-0.04461969,0.025833897,-0.031134345,-0.057958964,-0.095112756,-0.04147065,0.07877688,-0.029113628,0.031315483,0.018677494,0.02302976,-0.056096174,0.03670888,1.2929646e-32,-0.055113148,-0.07568971,0.0477086,0.005394561,-0.036350943,0.059314035,-0.013425447,-0.028994083,-0.0019846638,-0.01793958,0.015548552,0.08118337,-0.01827756,0.062057454,0.07318097,0.064702265,-0.015352078,-0.08354047,-0.0027126498,0.036020402,-0.032615922,-0.0023173639,-0.0009844371,0.05741483,-0.027177233,0.035085436,-0.077874176,-0.050557006,-0.023125598,0.018561192,-0.0098685175,0.015866691,-0.004361781,-0.05305553,-0.07243017,0.013667066,-0.017640268,0.055835884,0.0074342648,-0.060277864,-0.03110038,0.03642004,-0.031203168,0.012121283,-0.010544919,0.06583933,0.11052029,-0.06131979,0.0040821265,-0.015978608,-0.029741652,-0.03181643,-0.08396489,0.008528121,-0.030641494,0.007896064,-0.044336524,0.035916515,-0.0068493085,-0.05545075,0.009192023,-0.020965425,0.03415341,-0.065674886,-0.062000863,-0.04076175,0.045671135,-0.003128858,0.09659203,-0.00079223467,-0.064662196,0.04164888,-0.012957222,0.010782447,-0.050727263,-0.0023231884,-0.0009816014,-0.0009431617,0.004529109,0.071344435,0.0073393886,-0.090104304,0.07424358,-0.031669457,0.058106743,0.07806512,0.016736075,0.018425293,-0.022726754,0.074206434,0.020805163,0.07785772,-0.008369303,-0.0006588178,0.07970791,-1.5702336e-32,-0.014757163,0.013533882,0.0030430222,0.04885176,-0.021396855,0.05670836,-0.10139675,-0.0167234,-0.05881023,-0.07055723,-0.050425835,-0.07449379,0.1433736,0.023549914,0.00580355,0.07667249,0.038776867,0.00082969974,-0.063948065,-0.09630193,-0.04527847,0.06171662,0.015788743,0.008074396,-0.013973754,-0.05977681,7.3402865e-05,0.0495947,-0.095841855,-0.013249214,0.06183421,0.051249735,-0.010814751,-0.008225502,-0.045634966,0.033432916,0.03674481,0.03262436,0.008383377,0.007936992,-0.022891412,0.02567941,0.049803425,-0.087954134,-0.013437209,-0.03233788,-0.026876535,-0.14319222,0.01636331,0.0011737262,0.13903785,-0.018608313,-0.061095078,0.0035318038,-0.006037771,0.01730669,-0.12040845,-0.0723987,-0.03127806,0.020672655,0.030069895,0.04272491,-0.11951935,0.036587022,-0.03684855,-0.060466435,7.550514e-05,0.03909673,0.035738878,-0.019496355,0.025803365,0.056966733,0.002879653,0.014100459,-0.0774509,0.008406652,-0.045203872,0.012592595,0.030298823,-0.07552689,-0.06671393,-0.0073162555,0.058023117,-0.052294627,-0.09682382,-0.04770263,-0.030562386,0.00035368017,-0.019340167,0.05689298,-0.10808878,-0.008625651,-0.08566773,-0.09244387,0.0104448395,-5.690618e-08,-0.0033148723,-0.06913358,0.044077534,0.033061825,0.043923784,0.014941156,-0.009784247,0.0477772,-0.012947341,0.13071083,0.032785736,-0.020836787,-0.06269627,0.020447949,-0.04841834,0.05152477,0.10247197,0.07212367,0.002547805,-0.09944772,0.07193649,-0.026135925,-0.038015228,0.022913683,-0.0062592304,-0.004032582,0.017084805,0.0056392406,0.032093678,-0.07081758,-0.008959369,-0.009474647,0.040618446,-0.08455345,-0.022728898,-0.026981113,-0.04770066,0.03880117,-0.049606238,-0.010406922,0.0553779,0.008364139,-0.05057762,-0.026378587,-0.12864082,-0.043853674,-0.015086319,-0.021098908,0.006513999,0.0022052494,0.026311917,0.05086942,0.051747862,0.045362115,0.056108914,-0.030087499,0.040620383,0.07621411,-0.0038469946,-0.0042252685,0.09633141,0.019241946,0.009822991,-0.022064235} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:49.620424+00 2026-01-25 01:27:51.814954+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 215 google Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB 1 t 218 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Worst car rental ever. Chaos, long queues, small shuttle.\n\nIf you have a flight to catch make sure you arrive much earlier to give back the car.\n\nPersonly, i am never renting from here again. worst car rental ever. chaos, long queues, small shuttle. if you have a flight to catch make sure you arrive much earlier to give back the car. personly, i am never renting from here again. 1 2026-01-04 01:27:48.340455+00 en v5.1 J1.01 {} V- I3 CR-N {} {"J1.01": "Worst car rental ever. Chaos, long queues, small shuttle.", "R1.01": "Personly, i am never renting from here again."} {0.08134427,0.013670419,0.07563504,0.045209385,-0.069,0.02611604,0.03132896,-0.021265402,0.012739627,0.01876679,0.037645303,0.100673154,0.01836532,0.07181529,-0.05037044,-0.043569997,0.12703605,-0.12065643,0.020701401,-0.023849579,-0.054934077,-0.010828864,-0.056304224,0.003810737,0.038678173,0.050117712,-0.036382835,0.09110786,0.014723374,-0.05959306,-0.027068043,0.05211008,0.039882794,-0.024217986,0.018454235,0.007104911,-0.016934007,-0.09366601,0.036590133,-0.04607711,0.07143542,0.07409,0.034116123,-0.02170803,-0.050751835,-0.08134065,0.018736541,0.010907451,0.09265965,-0.0876531,0.04065664,0.051814124,-0.0009137128,-0.037309736,-0.033807606,-0.06885784,0.004567882,0.05861705,0.014814017,-0.014038374,0.057796806,-0.049370106,0.006178904,0.063974306,-0.0068734423,-0.05017291,-0.020008044,0.021392511,0.06746777,-0.024245463,-0.04731397,-0.0013368424,-0.030808143,0.014824434,0.037087973,0.03437233,0.067588374,0.0007464916,0.048165746,-0.04080953,-0.009535438,-0.052206617,-0.045381248,0.0136148315,-0.0089623025,-0.09124805,0.02082813,-0.009196653,0.038585626,0.035109702,0.07579308,0.029570151,0.037389196,-0.017323725,-0.019505754,0.014612173,-0.030965243,-0.0396857,-0.031570505,0.021228192,0.10236773,0.08160918,0.017143544,-0.005479022,-0.031673957,-0.024827054,0.039743334,-0.0405118,-0.03416054,-0.047769975,-0.04910296,0.03096653,0.04910348,-0.065688975,-0.09058258,0.094991304,0.028408982,0.031440042,-0.00071452156,0.048891786,-0.021423616,0.0061055245,0.042788513,-0.00095759926,-0.0014315714,0.028694082,0.01624577,-2.6597374e-33,-0.0386959,0.00048312152,-0.04510396,0.07123715,0.09384402,-0.026463471,-0.04638518,0.07991808,-0.0016685026,0.019140085,0.08032588,-0.07144542,0.0009496665,-0.02524791,0.04133746,0.08149888,-0.013025269,-0.018068304,-0.041052993,-0.078728825,-0.02692219,-0.013218133,0.048859682,-6.0654215e-06,0.065775625,-0.05492965,-0.022578329,-0.002384908,0.074696526,0.04263993,-0.06986541,0.06211494,-0.018210925,0.028193245,0.021778233,0.010159842,-0.0555592,-0.0061388663,-0.091460675,-0.00983388,-0.04023835,-0.024053665,-0.15434967,0.046153124,0.074106656,0.009813826,0.08206449,-0.04179018,0.027105477,0.0322551,-0.09376592,-0.037925072,-0.062994465,0.036712967,-0.100231156,0.07982237,0.06880166,-0.04830771,-0.056567352,-0.011201316,-0.03609642,0.06152628,0.031112479,-0.09221397,0.013512117,-0.10202427,-0.016786965,0.010051318,0.050808005,0.06404479,0.09036272,0.007351873,0.0009752133,-0.046328153,0.105043694,-0.017347407,-0.061592758,-0.017296392,-0.007075236,-0.003940257,0.03018544,-0.008298459,-0.016066631,0.023213783,0.042685173,0.027519409,0.043971542,-0.0821142,0.027959483,0.025823813,-0.014096329,-0.003060871,0.060472023,-0.025194474,0.04408957,1.5277168e-34,-0.0003998512,-0.100334205,0.018374413,-0.019033188,-0.081297,0.00873963,-0.051836196,-0.0013289477,-0.013130088,0.029273193,-0.17031118,-0.0012407727,0.12375088,0.02722834,0.06528404,-0.017206054,0.11603133,-0.07533672,-0.017401068,-0.0031264613,0.049145598,0.04371179,0.0055403532,0.067133844,-0.03781815,0.016496133,-0.061002932,0.06973815,-0.02297928,0.018865712,-0.053438805,0.03766974,0.026656104,0.024389042,-0.010931985,0.07147005,0.044411667,0.054031264,-0.07320253,-0.043629967,-0.036862426,-0.06069653,0.02476781,-0.049667027,0.08796521,-0.053246167,0.021413712,-0.029914211,0.0026281879,0.015750084,-0.026237829,-0.021808714,-0.13310191,0.11817031,-0.023156427,-0.014149943,0.011003405,0.031204682,0.039099373,0.09470549,-0.021113805,-0.031394526,-0.02181911,0.009870432,-0.033393398,-0.08037654,0.0054712114,-0.066678315,0.0060416455,-0.053618558,-0.027654046,-0.023636475,-0.041013803,0.013172441,-0.03505466,0.08061088,0.09651377,0.016606158,-0.0010588524,-0.06509465,0.04735894,0.016839705,-0.0037641828,0.044498872,-0.028873889,-0.0062086023,0.05253381,-0.049280956,-0.0060395068,0.008676139,-0.05392159,0.06822836,-0.09162629,0.0012567185,-0.052125525,-3.501835e-08,-0.025388354,-0.02613672,0.031159975,-0.029959043,0.0077443076,-0.088921875,0.009104857,0.14050026,-0.07116226,0.009747028,0.030887349,-0.00095808186,-0.025694905,0.012591763,-0.048329562,0.048029456,0.0026305872,0.031170014,-0.046121858,-0.07072327,-0.044035006,0.050899394,-0.017181944,-0.0007050021,-0.033850137,-0.046186443,-0.0011071354,-0.021648293,0.10921863,-0.125152,-0.069210105,0.034823492,0.011341038,0.00096320873,-0.048162606,-0.012145317,0.008446932,-0.049286798,-0.017991818,0.048955735,0.034306798,-0.026174203,-0.043647252,-0.055517953,-0.043048818,-0.004032803,-0.0075626434,-0.026756728,-0.005125596,-0.04582316,-0.022977877,-0.037692357,-0.1081482,0.100708015,0.10641902,-0.07172078,-0.031079784,-0.030963466,0.007096182,0.07001532,-0.029244848,0.086371034,-0.07817517,0.013704202} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:44:09.844405+00 2026-01-25 01:27:50.06793+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 207 google Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB 1 t 210 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown My experience was good. I was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. Would use their services again. my experience was good. i was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. would use their services again. 5 2026-01-11 01:27:48.340421+00 en v5.1 J1.01 {} V+ I2 CR-N {} {"J1.01": "My experience was good. I was a bit vary of the negative experiences by former clients, but the serv"} {-0.08729917,0.052510068,0.059642777,-0.036393523,-0.0449502,0.031194057,-0.014107492,0.019910032,-0.024163453,-0.08604084,0.06869873,0.134466,0.10054211,0.007287025,0.036229488,-0.0033269967,0.16524027,-0.09993003,-0.0018995235,-0.033404466,-0.12465315,-0.047103204,-0.060906414,-0.010971221,0.007915714,-0.044984546,-0.0138098765,0.04886587,0.00072431576,0.012771881,-0.031055707,0.036885303,-0.006435092,-0.049330074,0.009321529,0.04339744,-0.014222634,-0.054341756,-0.07315178,0.004734426,0.009271947,-0.030778175,-0.050738256,-0.027151015,0.03139082,-0.058274478,0.095420904,0.023320783,0.012088698,-0.042699605,0.022315476,-0.04236546,0.04144225,-0.038353324,-0.08857139,0.031594735,-0.020175748,0.07669771,-0.07383103,-0.025743484,0.060755342,-0.021503678,-0.023869472,0.03391511,0.048121564,0.022685993,-0.062305193,-0.115666375,0.00054286065,-0.041032057,-0.028497253,-0.03706997,-0.014368554,-0.009063284,-0.01201971,0.0047232807,0.044159997,-0.014886397,0.029892448,-0.051193118,0.08042298,0.011393584,-0.05504336,0.047849678,-0.024748717,-0.091589324,-0.012885152,-0.020667706,-0.03290062,0.04389094,0.1336984,0.1040668,-0.0034070502,-0.051235326,0.058787894,0.005507331,-0.0064915526,-0.006437556,-0.004832446,0.020833138,0.05398101,0.07947106,-0.026768694,-0.04913667,-0.04767527,0.0006453947,-0.023632465,0.062129628,-0.056368455,0.035752315,0.014355099,0.02136455,-0.019570755,0.01793934,-0.04577164,0.07241982,-0.041848723,0.044073325,-0.0149262315,0.06147752,0.008102879,0.043378107,0.04692749,-0.024709601,-0.012738821,0.03092473,0.11936566,-2.519401e-33,-0.076115,0.039934747,-0.009377069,0.0056447224,0.025800271,0.0043922532,-0.010478558,0.0115873115,-0.029763859,0.01582982,0.057670847,0.058844667,0.05145766,-0.07096643,-0.020387318,0.041918334,-0.08160309,0.018728077,-0.07304719,-0.012261503,-0.021657312,0.038415045,0.030765595,0.022348965,0.06424109,0.0022028366,0.034926645,0.035477724,0.08542075,0.011155891,-0.030357154,0.030701634,-0.033653565,0.013062262,-0.018887721,0.11840564,-0.048438173,-0.05870179,-0.035016153,-0.08137472,-0.076626234,0.0565087,-0.0070443694,-0.0014282032,-0.021579402,0.015724646,0.0046472703,-0.09075923,-0.10706485,0.0032942267,-0.076905586,-0.0016443455,-0.033668354,0.12705232,-0.051491935,0.09390309,0.039566275,0.033549655,-0.037992932,-0.033175286,0.069127895,-0.03217432,0.0008623878,-0.08799507,-0.004172846,-0.023019772,-0.036563702,-0.027688555,-0.012017605,-0.0055650547,0.047050174,0.006035674,0.050151426,-0.028955983,0.017781816,-0.03720038,-0.07187233,-0.0349992,0.007046548,0.019404603,0.052136626,0.0018781117,0.02995986,0.03326455,0.11074022,0.076735154,0.00443171,-0.094262406,-0.057604693,0.09771067,0.023118367,0.067789175,0.051487315,0.031252544,0.09682196,1.3262127e-33,-0.036968745,0.024095256,0.02900306,0.03948001,-0.046294294,-0.045550827,-0.12024796,0.079384446,-0.009307412,0.06530829,-0.01829729,0.051896624,-0.013823567,-0.008702067,-0.06347779,-0.012298001,-0.022378622,-0.0806802,0.056316253,-0.06404714,0.070890486,0.027944218,0.04867248,0.0012341079,0.008674378,-0.0008680561,-0.023905993,0.007781847,-0.041433107,-0.1132498,0.025034513,0.0063223424,0.032944873,0.019954575,0.035306834,0.04963196,0.049492016,0.021465747,-0.02561959,-0.018084237,0.00946053,-0.0711805,-0.038683955,-0.048156958,0.023123085,-0.069179945,0.052835107,-0.094585046,0.027886331,0.03232606,-0.012274479,0.0012219165,-0.046291053,0.038337164,-0.06538463,-0.028930686,0.11840195,-0.026654093,-0.04610262,-0.019993335,0.021036342,0.04034279,0.008546372,0.0006198793,0.051082723,-0.1328505,0.046058908,0.012770644,-0.024340123,-0.06589287,-0.052093342,-0.030403987,-0.055513334,0.03910366,0.0090164635,0.0002578342,0.03191361,-0.07800535,-0.09417227,-0.01665645,-0.057460632,-0.023932418,-0.013772363,0.026984712,0.028241638,0.014045499,0.045772176,-0.10196111,-0.007875527,0.0887587,-0.025499545,0.036323868,-0.047891606,-0.011067355,-0.01630379,-2.524612e-08,-0.016996425,0.07187722,0.050391097,0.026137756,-0.03571848,-0.04142326,-0.02019349,0.07250497,-0.112713784,0.027046045,0.014507284,-0.018330049,-0.06666532,0.0220623,-0.016280325,0.016671706,0.12600717,0.021372978,-0.03684814,0.05567189,0.028085254,0.13226949,-0.019292641,-0.017988527,-0.044671424,0.016830638,-0.012455055,0.037753396,-0.031878065,-0.12593079,-0.12473164,0.042717412,0.103109784,0.021339195,-0.044088524,-0.057199754,0.012100869,-0.02862407,0.0032311995,-0.024041329,0.05446751,0.05152927,-0.008861507,-0.003898187,0.052066993,0.027520223,-0.037065588,0.0027173085,-0.03697134,0.059756275,0.0001847851,-0.012120265,-0.0146645615,0.06596599,0.05412651,-0.052636202,0.041631922,-0.0013304491,0.03316539,0.08597635,-0.066161655,0.011077072,-0.062849596,0.03015515} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:52.122315+00 2026-01-25 01:27:50.041242+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1283 google ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB 1 t 1286 Soho Club unknown visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻 visada geriausia vieta sugrįžt, o eivydas daro nuostabiausius kokteilius💗🫶🏻 5 2024-01-30 18:34:31.336452+00 lt v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻"} {0.016872203,0.079126954,-0.062495295,0.028773706,-0.05923023,0.026471576,-0.009740461,0.059155934,0.06156049,0.0029600945,0.07774823,-0.1009431,0.039034214,0.03749045,-0.03228677,-0.02663177,-0.0783496,-0.0040810294,-0.07864914,-0.0535151,-0.062012132,-0.036745455,-0.030507281,0.05211097,-0.021750445,0.017425658,-0.051823556,-0.031246312,0.008880009,0.009793863,0.036035124,0.08765251,0.098530054,-0.002826176,0.058715563,-0.07082937,-0.03290605,-0.06093004,-0.014244563,0.07741754,-0.04888132,-0.030086115,0.015647398,0.046192516,-0.08158703,0.011221678,-0.023958482,0.09317145,0.029807106,0.038088106,-0.05504395,-0.029751386,-0.09337498,-0.001220674,-0.05868648,-0.005225684,-0.0006150308,-0.022226611,-0.06700664,0.025247237,0.093251094,0.072093084,0.03890379,0.041556578,-0.057345018,0.012761324,0.014167912,-0.013958779,-0.058284078,0.04269788,0.03851324,-0.014694518,-0.033099625,0.013123074,-0.06958012,-0.014305179,0.011653032,-0.034896504,0.0011189887,-0.07212445,-0.03228195,0.03019459,-0.025213206,-0.03348301,0.00058844447,-0.041399077,-0.00018109781,0.01945443,0.07947501,0.020588215,0.0053603044,0.04058796,-0.03956846,-0.05675309,-0.026469713,0.05415003,-0.05870243,-0.05517739,-0.051359516,-0.02964959,0.07086336,-0.018626697,-0.011620842,0.034648813,-0.08015687,-0.01897725,0.012146716,-0.07038754,-0.023725992,0.0245622,-0.07026419,-0.08396748,-0.050660226,-0.056397904,-0.070738986,0.061386663,0.04600278,-0.0320268,-0.117457174,-0.0008876049,0.027461912,-0.05457969,-0.004613286,-0.061387468,0.029182998,-0.08645164,0.04896721,8.222534e-33,-0.0012462641,-0.068548,-0.049627997,-0.053879533,0.006790592,0.009206316,0.03977442,-0.0056429375,-0.032737855,0.027727988,-0.048590284,0.013791935,0.005817989,0.01079006,-0.029879253,0.087935224,0.0426621,-0.02433519,-0.048773505,0.07174108,-0.012031279,0.061210934,0.054407913,-0.048476405,0.016575703,0.04757356,-0.052547134,-0.0016724131,0.024774455,0.046139255,0.027443906,-0.082152575,-0.068993345,-0.04679094,-0.028132664,0.01720953,-0.03451868,-0.01666876,0.020283256,0.041636106,0.06302033,0.07635667,0.09810086,0.033759955,0.03329897,0.055481456,0.027676586,0.036249403,0.051164597,-0.03214428,-0.036690794,-0.042518694,-0.052059416,-0.06359182,0.06641459,-0.026587438,-0.07171769,0.1236238,-0.11511806,-0.06231409,0.018997919,-0.07019586,-0.025207061,-0.07851592,0.021161968,-0.023783876,-0.08357568,0.027703295,0.046581306,-0.049900092,-0.059291285,-0.0065706223,-0.055192713,0.08769174,-0.03357551,-0.014649255,0.063404486,-0.029519515,-0.017947098,-0.009789855,-0.08433964,0.055669945,0.026727553,-0.00979298,0.027162034,0.010971499,0.025386851,0.02556533,0.01663226,0.027327068,-0.016923983,0.026020814,0.09672362,0.013355577,0.025971226,-8.481872e-33,-0.01757018,0.0033240523,-0.040116716,-0.024061631,0.015373525,0.02581072,-0.13378833,0.061855994,-0.06725251,-0.009874509,-0.0071801282,-0.07962369,0.022586,-0.009767646,-0.024071878,-0.008666625,0.21598919,0.051327586,-0.048703168,-0.047427632,-0.109254055,0.028700564,-0.034808263,-0.0984808,0.010809747,-0.0007324747,0.0678724,-0.08182027,-0.08698157,0.042864442,-0.0117969,0.019316174,-0.09810059,0.088505335,0.014650853,0.020758722,0.06671392,-0.059298977,-0.041831784,0.06486809,0.023744099,0.0028227721,0.08391255,0.0872916,-0.06505173,0.007831594,-0.07006103,-0.027920809,-0.06042857,0.02234917,0.085891515,-0.10073623,0.04876915,0.021111237,0.09377101,-0.0012103379,0.023257276,-0.054377835,-0.0042355377,-0.08015653,0.040420264,0.03431,-0.05859012,-0.031529963,-0.0061414735,0.07850321,-0.027710741,0.11517116,0.017202845,0.029040126,0.024060177,-0.05682746,-0.098501176,0.019052977,-0.12585317,0.00021961716,-0.027477827,-0.032029852,0.036648355,-0.008529025,-0.044229925,-0.06324237,0.0107428925,-0.05457372,0.06542868,-0.034511957,-0.00015863182,0.011824301,0.05101399,0.049875516,-0.050310902,0.011037774,0.0027695943,0.022432309,0.033581782,-3.279576e-08,-0.009180592,-0.065198176,-0.02665658,-0.01747463,-0.05881827,0.0016162278,0.009814409,3.113792e-05,0.023161976,0.088121094,-0.008620053,-0.012636552,0.014506799,0.039309356,-0.009516845,0.042686302,0.07237809,0.101101965,0.0420854,-0.03847648,0.032448594,-0.034091238,-0.04181428,-0.0207651,-0.050899446,0.040645555,0.016650511,-0.0040514017,-0.012841958,-0.006601578,0.048050314,0.024971534,0.04825825,-0.05366412,-0.021058735,0.03045662,0.05332616,-0.00983858,-0.01417673,-0.02111522,0.1102366,0.10878,-0.015604278,0.012728743,0.08612374,-0.05443525,0.083589,0.010097545,-0.023321524,-0.012171241,-0.031271324,-0.006496103,0.06806809,0.06706717,-0.0030554675,-0.016332367,0.08724737,0.018777154,0.014833696,0.05769618,0.016997974,0.07179083,0.08938533,-0.01316116} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:39.047302+00 2026-01-29 18:36:00.680831+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 211 google Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB 1 t 214 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We had a very nice experience renting from ClickRent. So nice people, and we got all the information we needed. The car was just as expected, clean and everything was on top. Thank you so much! we had a very nice experience renting from clickrent. so nice people, and we got all the information we needed. the car was just as expected, clean and everything was on top. thank you so much! 5 2026-01-04 01:27:48.340434+00 en v5.1 P1.01 {A3.01} V+ I2 CR-N {} {"O1.01": "The car was just as expected, clean and everything was on top.", "P1.01": "We had a very nice experience renting from ClickRent. So nice people, and we got all the information"} {-0.025908222,0.03810274,0.08830478,0.056436762,0.0011040346,0.031367008,-0.022869658,-0.012116081,-0.06070182,-0.032252457,0.010439763,0.11508718,0.032932054,0.01437334,-0.04439312,0.024127144,0.031782635,-0.012776176,0.0064836047,-0.032714993,-0.040547505,-0.06766243,0.02827175,-0.08840892,0.00818556,0.04272385,-0.04689405,0.08490112,0.024062164,-0.053522427,0.036671333,0.014034317,0.101879,-0.052169885,0.0600547,-0.0063593118,-0.037097465,-0.10082653,-0.04397655,-0.035170425,0.015727371,0.01659448,-0.013361008,0.01996901,-0.05351711,0.02746294,0.048475116,0.024793975,0.08760747,-0.04087219,-0.016032672,0.016256725,0.030107358,-0.08191638,-0.13205396,0.023381583,0.04396555,-0.007899518,0.03716674,-0.0667469,0.058810696,0.008172015,-0.045256957,0.072171785,0.06084085,-0.023919215,-0.07165165,0.03162317,-0.024859132,-0.08755933,-0.020717148,0.0059779966,0.02852854,-0.0508812,0.04399474,-0.009755095,-0.007282717,0.004785976,0.019683432,-0.04957953,-0.013427594,-0.04015297,-0.032010928,0.046245318,-0.007148558,-0.025891518,0.031121822,0.023585092,-0.017911592,0.015401786,0.035803955,0.052043855,-0.016441079,-0.008483353,0.0039335107,0.03492651,-0.06675393,-0.061948385,0.0072510308,0.03645247,0.033376392,0.06560322,0.016936243,-0.09289073,-0.06008452,0.03729504,0.047771033,0.054914203,-0.040688384,0.004497035,-0.012461012,0.016039945,0.030964369,-0.009416069,-0.02430081,-0.043795753,-0.022155046,0.014031141,0.09460873,-0.058993496,0.08272069,-0.057129137,0.00979757,-0.045350842,0.009608484,-0.011216815,0.110740684,-2.7217358e-33,0.01837373,0.061961394,-0.026253713,0.106356174,0.057636943,0.051261995,-0.018832505,0.05906077,-0.12571986,0.1315402,0.09804247,-0.021143341,-0.052258912,0.00037606558,-0.048490264,0.042309705,-0.07854022,-0.009382586,-0.08509683,-0.017690655,-0.027443696,0.026292022,-0.0036580754,0.043723434,0.050666083,0.0027763601,-0.027738718,0.059144985,0.031617913,0.018150168,-0.07129372,0.012378156,0.007833381,0.008355707,-0.030123685,0.014335919,-0.09448401,-0.04840841,-0.092210606,-0.0051816595,0.0390331,-0.05452119,-0.021900002,0.00026090993,-0.07757179,0.027305774,0.048074327,-0.04074751,0.023720127,0.06107971,-0.029011518,-0.067093246,-0.07662968,0.03286195,-0.10489641,0.05901873,0.01218104,-0.0071477722,0.0059080743,-0.049115833,0.060667694,0.028394526,0.02850844,-0.16244687,-0.012140708,-0.08577553,-0.013801668,0.012003422,0.06515092,0.05787356,0.008663895,0.023106579,0.027803859,-0.023007832,0.07363652,0.045584656,-0.121917024,-0.052900575,-0.0019381532,0.051219862,0.051477384,-0.010058287,0.024926627,0.012999338,0.021255067,0.026254343,0.050510965,0.0033261809,0.0035781749,0.086363114,0.04364919,0.03626202,-0.030562693,-0.072893195,0.030566914,-6.317839e-35,-0.0035171648,-0.015169923,0.033510614,-0.036693547,-0.0427643,0.06912242,-0.14041388,0.0323174,-0.02256916,0.093825504,-0.045966133,-0.012165418,0.050968565,-0.03732631,-0.03831954,0.06871777,0.06601903,-0.08461793,-0.04167143,-0.07826586,0.008965029,0.07717598,-0.02115446,0.037120305,-0.008761961,0.009282693,0.0004429246,0.111629814,0.058098536,0.005145122,-0.023535743,-0.029967653,-0.039334673,0.03872152,0.0032654868,0.051815186,0.07343582,0.013206658,-0.059833053,-0.01898533,0.001974861,-0.106713004,-0.024364796,-0.014639806,0.059491035,-0.1373611,-0.037187535,-0.039752256,-0.018977484,0.017551735,0.05972001,-0.0015049838,-0.029367503,0.0014848931,-0.0108933635,0.051656775,0.06866354,-0.0011122839,0.044011705,0.034460586,0.00865294,0.04408975,-0.07953333,-0.014280484,-0.03668148,-0.10704852,0.07862936,-0.10875368,-0.08133897,-0.032217074,-0.1067941,0.0024534634,-0.009768316,-0.062734626,0.0020212284,0.002471072,0.13502353,0.0066388664,-3.3144443e-06,-0.07928925,0.024850992,0.0053941193,0.043747865,0.031229595,0.045364134,-0.0022802919,-0.018769005,-0.070634566,0.027298639,0.031625602,-0.05098966,0.10874004,-0.049846124,-0.035339408,-0.063359894,-3.6062882e-08,0.008023255,0.02787973,0.00824123,0.003211678,0.0094125355,-0.066960685,0.046766125,0.14602087,-0.062305797,0.010089604,-0.011256977,-0.021630188,-0.06530878,0.043720577,-0.008112418,0.0072969683,-0.00053357997,0.09710932,-0.02047919,-0.040873867,0.015572863,0.04667888,0.004781868,0.08534257,-0.0014191322,-0.045606133,-0.018534122,0.031521436,0.033990595,-0.060086846,-0.020444637,0.012865975,0.015676979,-0.069202736,-0.025375511,-0.05129006,0.006474798,-0.036060788,0.0023536447,-0.031040434,0.036603473,-0.003601029,-0.05592382,0.030687446,-0.007347985,0.037231945,-0.05182261,-0.07311512,-0.0034704981,-0.05760671,-0.048224322,-0.06130023,-0.07911271,0.11692914,0.026044497,-0.06301632,-0.021642346,0.012299867,0.07704962,0.037186652,0.009575018,0.06939897,-0.08203722,0.055146847} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:43:23.692755+00 2026-01-25 01:27:50.054747+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 214 google Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB 1 t 217 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I had a very good experience, they have a good fleet of cars, very close to the airport and their insurance is the ceapest compared to other car rentals. They also have enough staff in order not to waste time at pick-up and dropoff. i had a very good experience, they have a good fleet of cars, very close to the airport and their insurance is the ceapest compared to other car rentals. they also have enough staff in order not to waste time at pick-up and dropoff. 5 2025-08-28 01:27:48.340443+00 en v5.1 O1.01 {A4.01} V+ I2 CR-B {} {"O1.01": "I had a very good experience, they have a good fleet of cars, very close to the airport", "P3.01": "They also have enough staff in order not to waste time at pick-up and dropoff", "V1.01": "their insurance is the cheapest compared to other car rentals"} {0.047502466,-0.006847317,0.061681367,0.06414764,-0.04970485,0.03314253,0.026828993,0.026884694,-0.04545833,-0.016317977,-0.003434522,0.054619126,-0.011169356,0.030647367,0.0144845825,-0.013885471,0.11620629,-0.16312826,0.026822561,-0.08550547,-0.052176017,-0.073210694,0.05790447,-0.028143452,0.033563565,0.024894528,-0.008930975,0.09536419,0.041627347,-0.008667088,0.0025605499,0.06726512,0.00588016,0.020847535,0.008520226,0.06479902,0.008204716,-0.048691135,0.02148504,-0.035293736,0.048050944,0.016445488,-0.0013646672,-0.018851409,-0.043986943,-0.120911755,0.050617058,0.04600755,0.078043446,-0.029038442,0.0809965,-0.037094016,0.10576844,-0.08356485,-0.074447766,-0.0070691057,-0.06598211,-0.00042295805,-0.017126657,-0.03734355,0.06447845,-0.018024528,-0.030322747,0.019388428,-0.031623732,-0.032485094,-0.037623264,-0.020087883,0.0072104014,-0.11281118,-0.025015816,-0.06633307,-0.020641495,0.059577756,0.022584613,0.06661254,0.03754677,0.0033098743,0.04464625,-0.0035421543,0.037035525,-0.010459891,-0.018919103,0.07371483,-0.0007303597,-0.101766035,-0.009016806,-0.057992652,-0.07374795,0.05882097,0.09738352,0.04624085,-0.0138068395,-0.04254633,0.009292933,0.06143242,-0.0058436287,0.0023879446,-0.029618459,-0.017319636,0.047291078,0.08825942,-0.00421442,-0.027245495,-0.09605166,-0.010360542,0.0322667,-0.041946404,0.03198587,0.02362582,0.0021293415,0.024802873,-0.0024026386,0.011518111,-0.12075816,0.10766196,-0.030577324,0.007120169,0.025330313,0.00021880174,0.00035892907,-0.0013287492,0.06033894,0.00592233,0.022514427,0.024586808,-0.0061769434,-1.01941065e-33,-0.07213171,0.06564113,-0.030798,0.024690088,0.03623125,-0.06829572,-0.089440174,0.049017068,-0.0067851255,0.023272194,-0.069687314,0.015930796,0.04654679,-0.08795205,0.049666952,0.047437087,-0.07375014,-0.029199164,-0.054154553,-0.014520361,-0.018286765,-0.0073536397,0.03649304,0.03700948,0.115500465,0.024881687,0.027652547,0.037264664,0.12202541,0.04862385,-0.09012209,0.08268535,-0.024211843,0.026312439,-0.08179609,0.06739283,-0.10245402,-0.0031389005,-0.0910595,-0.029161548,-0.046997774,-0.03093274,-0.07990038,0.042296212,0.023060463,0.033589203,-0.011220728,-0.058986407,-0.01143283,0.013002401,-0.07302664,-0.030367272,-0.10455899,0.041599616,0.008499171,0.09281351,0.038184937,0.02499101,0.016943717,-0.028492937,-0.035090733,0.04319769,-0.044269655,-0.018090777,0.029323943,-0.0049482277,-0.006006838,0.02213315,0.06034518,0.07141147,0.04254479,0.019298902,0.029870436,-0.021830685,0.019679474,-0.036971617,-0.09827294,0.01645185,0.034698308,0.102442406,0.038732607,0.014171543,0.02013862,0.019213673,0.11513025,-0.0102750035,0.06341521,-0.022793746,-0.049538527,0.015364413,0.0066040275,0.042769574,0.028547183,0.0025651504,0.012611217,-5.4424227e-34,0.041355204,0.0039187064,0.0109343715,-0.006966422,-0.08869267,0.036488086,-0.0067439745,0.009645165,0.012852928,0.0061204205,-0.13064721,0.050868724,0.02199744,-0.010473377,0.012480681,-0.049255088,0.08517111,-0.104418494,-0.0051236944,-0.07606899,0.07844245,0.0085911285,0.017366538,0.006101292,-0.01637673,-0.013699813,-0.10710101,0.030112466,-0.026873423,0.0023063433,-0.014527139,0.0296863,0.05046522,0.029241454,-0.0064974246,0.028410703,0.007335062,0.07576409,-0.045266133,0.016930755,0.00904015,-0.110977866,-0.033383325,-0.057328586,0.075550824,-0.02930785,-0.01383607,-0.07158282,0.013834868,-0.060621377,0.044616424,-0.03736887,-0.15400791,0.059360527,-0.03200028,-0.018386588,0.0754607,-0.010569867,-0.015888846,-0.010001967,-0.006624627,0.015511378,0.050257724,0.05371093,-0.031060351,-0.13340876,-0.019539053,-0.02247792,0.005112706,-0.023411041,-0.06247145,-0.06944672,0.024828896,0.0939936,-0.049627036,0.027563507,0.10223181,-0.021664776,-0.027760772,-0.06382626,0.009990268,-0.019098965,-0.03534045,0.062328406,0.021486131,0.0772013,0.01924262,-0.087322116,-0.0029640682,0.115029834,0.0025435635,0.04522782,-0.034321934,-0.03942648,-0.018858358,-3.3053126e-08,0.025924694,0.021154834,0.05773128,-0.0192487,-0.04795285,-0.10676769,-0.031712547,0.09970584,-0.08745392,0.0070891418,0.05292002,0.029730037,-0.06817489,0.04506495,-0.039730962,0.017732553,0.04567281,0.09370401,-0.021947816,0.0011924407,-0.038558584,0.03190224,-0.057656795,-0.0058897748,-0.014781143,0.001804211,-0.06511831,-0.0799397,0.044069514,-0.044311576,-0.12579064,0.043538325,0.05666215,0.0075274496,-0.017098611,-0.024249846,0.042484198,-0.053544678,0.006437731,0.0039401273,0.040162716,-0.05344815,-0.053192176,-0.03493628,-0.0031686218,-0.025471108,-0.05318312,0.004501957,0.02522457,0.048515253,0.022467645,-0.0006390979,-0.08283273,0.03854552,0.050593276,-0.059400026,-0.029635264,-0.066545255,-0.0128915645,0.041231193,-0.07511722,0.021473616,-0.01651769,0.062271852} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:43:59.27366+00 2026-01-25 01:27:50.064785+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 226 google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE 1 t 229 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Everything was fine overall. They didn’t charge us any additional fees, and the car was new and comfortable. However, there are a few things they could improve:\n\n1. Clearer Instructions at the Airport: There should be clear signs indicating where to go upon landing. They mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. Providing a detailed map or directions in the confirmation email would solve this issue.\n\n2. Staffing at the Office: There was only one person working in the office. When a full shuttle bus arrived, the wait time became frustratingly long. Unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. This was a waste of time and could be easily avoided with better staffing.\n\nIn conclusion, while the car and lack of hidden fees were positive aspects, these operational inefficiencies need to be addressed for a smoother customer experience. everything was fine overall. they didn’t charge us any additional fees, and the car was new and comfortable. however, there are a few things they could improve: 1. clearer instructions at the airport: there should be clear signs indicating where to go upon landing. they mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. providing a detailed map or directions in the confirmation email would solve this issue. 2. staffing at the office: there was only one person working in the office. when a full shuttle bus arrived, the wait time became frustratingly long. unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. this was a waste of time and could be easily avoided with better staffing. in conclusion, while the car and lack of hidden fees were positive aspects, these operational inefficiencies need to be addressed for a smoother customer experience. 3 2025-01-25 01:27:48.340503+00 en v5.1 V1.03 {O1.01} V+ I2 CR-N {} {"A4.04": "Clearer Instructions at the Airport: There should be clear signs indicating where to go upon landing", "J1.01": "Staffing at the Office: There was only one person working in the office. When a full shuttle bus arr", "V1.03": "Everything was fine overall. They didn’t charge us any additional fees, and the car was new and comf"} {0.021153783,0.0003615628,0.104250394,0.07125431,-0.025114184,0.035331566,0.0116136875,0.045871288,-0.010949927,-0.0078073936,0.025403738,0.037654325,0.011489034,0.0007924227,0.041260663,-0.06737191,0.111685425,-0.10602369,-0.03215548,0.0013614846,-0.046416976,-0.032058377,-0.0020460545,-0.015002596,0.07760688,0.035876725,0.0063293125,0.029755276,0.051581085,-0.014391994,-0.01592648,0.029806372,0.067472294,-0.032366693,0.03998698,0.042046785,0.05948548,-0.06566155,0.012405545,-0.050540622,0.045638006,0.0155330645,-0.039891466,0.07786446,-0.0072026444,-0.013056871,0.103762135,0.02884157,0.083070874,-0.0271231,0.03852909,-0.044599194,0.045906924,-0.11243471,-0.11916011,-0.017663764,0.042578585,-0.021898448,0.034982793,-0.012502891,-0.03021673,-0.043426443,0.0408705,0.032427225,-0.03385557,-0.045353323,-0.042726982,-0.13432178,0.08231474,-0.009118198,-0.019392777,0.06329218,0.0010053976,0.061606783,0.02667859,0.035821375,0.065869994,0.098900236,0.07919273,-0.06830695,0.041378755,-0.07184472,-0.0028778028,0.05373248,-0.033351637,-0.029185094,0.047080643,-0.014999394,-0.045979142,0.03890861,0.14132139,0.0026112047,-0.008139474,-0.047311105,-0.032630034,0.06187616,-0.010661405,0.005672223,-0.038525566,0.006432685,0.0698785,0.15160626,0.022193734,-0.022726595,-0.075837865,0.019989952,0.022069834,-0.03132403,-0.014431686,-0.00064057583,0.056768477,-0.06859963,-0.0128524685,0.07720374,-0.10051911,0.030060973,-0.025145445,-0.021319369,0.0025249494,-0.029781735,-0.052931,-0.025650633,0.020777479,-0.043400835,-0.037800774,0.03928592,0.04752658,2.1716349e-33,-0.06143481,0.045363028,0.01974419,0.032664083,0.02478874,-0.030346232,-0.03331803,0.053624235,-0.019008758,0.02501786,-0.027277332,-0.014191062,0.05333108,-0.06875483,-0.03363,0.05207231,-0.06756671,0.0140742725,-0.002674932,-0.002782131,-0.029436065,-0.05783993,-0.018297961,-0.01144282,0.031329665,0.047176674,-0.009455977,0.03395374,0.10323001,-0.012146893,-0.14097214,0.05460826,0.081392884,0.07924915,-0.002404334,0.0052700387,-0.011611537,-0.041088454,-0.013508929,-0.0068222,-0.08574593,-0.018556567,-0.055342764,-0.0019757296,-0.013466041,0.04541549,-0.0021696445,-0.041241925,-0.056443248,0.077158295,-0.08602413,0.0186855,0.011140769,0.060630415,-0.096815124,0.020110382,0.016291056,0.036364716,0.014346895,-0.058169294,0.06509292,0.032634225,0.010887313,-0.012072169,0.004833182,-0.0928318,-0.024818322,0.02898444,0.07326106,0.017025024,0.061404083,0.042145446,0.013769373,0.019417614,0.07934445,0.019203903,-0.041669123,-0.05013454,-0.037178714,-0.042352915,0.05487543,0.006699285,0.024188304,0.019790662,0.052006535,0.0026355314,0.066772476,0.014475461,-0.062455334,0.05275305,-0.03005636,0.0862191,-0.0446361,0.046182394,0.068597205,-3.008862e-33,0.062249836,-0.038580153,-0.009194775,-0.0077720545,-0.0801294,-0.003708814,-0.036978755,-0.029170064,0.0197226,-0.009521708,-0.08517489,0.019946953,0.018272487,-0.01830121,-0.055183366,-0.028767684,0.07014579,-0.02456875,0.024524907,0.014079474,0.051272094,0.039565105,-0.041817077,0.0359794,-0.010447445,0.03912712,-0.039450176,0.04563842,-0.014606625,0.010706376,0.01907087,-0.0014628714,0.076439016,0.049528155,0.021316925,0.005631323,0.0293526,0.07766104,0.011594122,0.021528265,-0.028336072,-0.08599852,-0.030181317,-0.011739788,0.12220234,-0.053406063,0.033499196,-0.059633203,-0.018246831,0.03806001,0.0076929335,-0.049533177,-0.09707672,0.07690016,-0.028054921,0.0038934075,0.062207043,-0.06130194,0.06179999,0.053276952,-0.0710329,-0.025478737,0.03353833,-0.06659779,-0.05537496,-0.09635652,0.10308759,-0.044844933,0.021613663,-0.023175819,-0.13548478,-0.06175738,-0.0118622305,0.04510461,0.0446712,0.09385565,0.049606904,-0.06197262,-0.05540828,-0.06334202,0.0054491325,0.0023839632,-0.08076459,-0.025589341,-0.041780345,0.067962155,0.06141338,-0.07992217,-0.02996347,0.02976618,-0.013804136,0.0035501847,-0.010594254,0.0020772154,-0.0477338,-6.036887e-08,-0.0034144192,0.058965035,0.040908054,-0.012588542,0.027974287,-0.08295135,-0.004101505,0.082214944,-0.09672509,-0.004460782,-0.05903095,-0.043409776,-0.03820402,0.09691432,-0.0086351875,0.058875844,0.036503926,0.03302155,-0.08362143,-0.027167097,-0.064818665,0.055773403,-0.09438986,-0.03929972,0.015434653,-0.021196479,-0.046977364,0.016952801,0.019749753,-0.1057913,-0.081932485,-0.00991405,-0.0173643,0.03126914,-0.08824041,-0.10272245,-0.049744744,0.011211711,0.0129256295,-0.0015155595,0.008263103,0.025613653,-0.05548821,-0.04767572,0.006418227,0.051018823,-0.094096914,0.055164505,-0.071648374,0.022605939,0.018363962,-0.055166762,-0.057436667,0.08533809,0.06175856,-0.022626916,-0.01460682,0.007332009,0.017450808,0.09639386,-0.075721644,0.036669,-0.10813309,-0.014749008} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:46:08.660168+00 2026-01-25 01:27:50.121598+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1286 google ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB 1 t 1289 Soho Club unknown Klubas fainas😊\nBet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės klubas fainas😊 bet žmonės, ar galit neapmyžt tualeto dangčiu... kaip kiaulės 3 2023-01-30 18:34:31.336452+00 lt v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Klubas fainas😊", "P1.02": "Bet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės"} {-0.105529726,0.102543674,0.01096707,0.03884818,-0.09459091,-0.022122841,0.05615292,0.04273511,0.051825188,0.027312694,0.031417478,-0.088161774,0.05619388,-0.0021894982,-0.027202563,-0.035513625,-0.03335322,-0.018363312,-0.045604393,0.019807944,-0.051242452,-0.027352953,0.017146818,-0.02257812,0.056522563,-0.047160655,0.008611811,0.041178357,-0.04344034,-0.026259169,-0.05765014,0.07277706,-0.03576146,-0.009937993,0.0066190683,-0.0025871505,-0.08792344,-0.059077915,-0.018042065,0.04773074,0.029026339,0.046242613,-0.06733116,-0.009588176,0.062401544,0.09863373,-0.044807293,0.083017506,-0.07976102,0.006842937,-0.10920008,-0.082178876,0.07785003,0.04465322,0.041805543,-0.04117349,-0.011138589,-0.012362929,-0.0065297894,0.02842762,0.10901565,0.020196859,-0.06276614,0.010547338,-0.08278037,-0.031472463,-0.042275753,0.07909648,-0.10187085,0.060555458,0.03316339,-0.053290747,-0.030909382,0.02322815,-0.06440552,0.04332228,0.037803736,-0.053567845,0.046262607,-0.09447683,-0.02304847,-0.03427952,-0.039832763,0.027021404,-0.0127070295,-0.018306313,0.0014875261,-0.0027754956,0.019159107,0.0056894566,-0.010328867,0.023899784,-0.103571296,-0.043379106,-0.0551447,0.0071816593,-0.05868226,0.005868907,-0.0462675,0.019115577,0.051572222,0.062783465,0.055555485,-0.060311824,-0.12109907,0.044001397,0.03095418,-0.038427778,-0.03906248,0.08739181,-0.03401051,-0.044318862,-0.03265557,-0.058730032,-0.030436907,0.08037218,-0.06695607,-0.02227457,-0.10725828,0.030949036,0.03446289,-0.09413669,-0.022781365,-0.04839146,-0.0059090834,0.027814671,0.066083275,5.30903e-33,-0.043925725,-0.042614132,-0.077465355,-0.0045646825,0.004563298,-0.0065391934,-0.084935024,-0.0148641905,-0.021045372,-0.07474941,-0.07193719,-0.0012494557,0.004602495,-0.06393552,-0.0105589945,0.0830816,0.0019109962,-0.012195253,0.0068501285,0.070625,-0.02870318,0.029479397,-0.019597268,-0.041822474,-0.051272046,-0.024182236,0.028703649,-0.0982027,-0.06919406,0.02708675,0.10454666,-0.05553271,-0.08027419,0.033100728,-0.07357535,0.015784524,-0.04418895,-0.075290315,-0.04164311,-0.07517128,-0.017653918,-0.027988512,-0.018052999,0.10713877,-0.028807629,0.18481651,-0.049170807,-0.01987328,0.07648729,-0.049591307,-0.041664258,0.038384728,-0.005162302,0.03224635,0.038371738,0.019371375,0.005176975,0.024168894,0.0022239538,-0.08693005,0.0102614695,-0.0008172785,-0.0013318958,0.009950296,-0.06778379,-0.024244135,-0.020449884,-0.028145341,0.014095526,-0.06848255,-0.004720706,-0.0059165913,0.02579429,0.03581549,-0.050978426,-0.012616892,0.08373357,-0.021703256,-0.027046237,0.024010371,-0.032740794,-0.039846368,-0.025582874,-0.03216105,0.07864766,-0.026168056,0.009826353,-0.034628067,0.11092682,0.032293085,-0.04643059,0.041714124,0.036972057,-0.0044897064,0.012642593,-4.7461558e-33,0.042302903,0.06797305,-0.011302816,0.06308,0.043377306,0.03255405,-0.075238764,0.034613535,0.0019746535,-0.021242877,-0.01406286,-0.048828535,0.065927096,0.015379284,-0.0022409658,-0.0020292632,0.08633165,0.07071729,0.01766514,-0.02901139,-0.028101599,-0.0032445283,-0.044598974,0.060589857,-0.06164802,0.056267023,0.004824664,-0.008412737,-0.07111361,0.020554787,0.05007382,-0.0049437718,-0.027059492,0.031030452,0.050376274,-0.0040169195,0.16058911,-0.023579229,-0.08592962,-0.0030452062,0.039732255,0.052865464,-0.04302847,0.03755944,0.01273806,-0.05365169,-0.03849349,0.005528274,-0.04604232,-0.04923172,0.14236411,0.03199546,-0.0076850816,-0.055997893,0.077231094,0.09164873,0.056689907,-0.05004786,-0.02127927,0.052511346,0.058795493,0.028695503,0.042417165,0.03984724,-0.054700322,0.03250456,0.039933622,0.075940564,0.016789319,0.049216885,-0.06063065,-0.005297337,-0.021605138,0.014809737,-0.08791242,0.054135166,-0.012879731,0.066989705,0.05962604,-0.0037309877,0.0031049843,-0.026238738,0.058566555,0.09155719,0.021140039,-0.06913896,-0.008131687,0.043407384,0.045382567,-0.0039806636,-0.029910007,0.03418309,0.05140477,0.08970556,0.0017002396,-2.97012e-08,0.04374243,-0.06967683,-0.0017720792,0.040523738,0.03218257,-0.09003611,-0.07626024,-0.07439871,0.032797024,0.021253001,0.012729765,0.07685844,-0.02517127,0.033297233,0.010330757,0.08935651,0.0011477107,0.054301962,0.0073822164,-0.0048874556,0.14143363,0.0069784685,-0.060985558,0.0060315626,0.012254483,0.020271663,-0.027776401,0.057651777,0.010996316,-0.07700192,-0.026843749,0.051837485,0.005246136,0.021048507,-0.017389037,0.10793251,0.013682082,0.010697722,-0.010232076,0.07568877,-0.017870612,-0.016476905,0.113088444,-0.02951973,-0.0101598995,-0.012836844,0.058345124,-0.011639604,0.045274746,8.5473876e-05,-0.12225071,0.036004256,0.09006377,0.029842896,-0.0042873183,0.046258237,-0.027842369,0.010568447,-0.051612817,0.0006616171,0.029411474,-0.0054971543,-0.016064491,0.000912385} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:05.55315+00 2026-01-29 18:36:00.685546+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 213 google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB 1 t 216 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very good cars. Lots of Audi cars. Very good service and the person is polite. They will take you on a verry short shuttle from the airport to their office (takes almost 5 mins). You need to wait a maximum of 1 hour i think. We waited close to 30 mins. Their office is air-conditioned and very well kept. I would recommend you to take a car from here very good cars. lots of audi cars. very good service and the person is polite. they will take you on a verry short shuttle from the airport to their office (takes almost 5 mins). you need to wait a maximum of 1 hour i think. we waited close to 30 mins. their office is air-conditioned and very well kept. i would recommend you to take a car from here 5 2025-08-28 01:27:48.340439+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"E1.01": "Their office is air-conditioned and very well kept.", "J1.01": "They will take you on a very short shuttle from the airport to their office (takes almost 5 mins). Y", "O1.01": "Very good cars. Lots of Audi cars.", "P1.01": "Very good service and the person is polite.", "R1.04": "I would recommend you to take a car from here."} {0.014362281,0.01365025,0.082339264,0.035830677,-0.11073006,0.051336825,0.040783588,-0.013343439,-0.025405807,0.0068634436,0.02389736,-0.005757088,-0.031027438,0.0037628012,0.002034536,0.00035042872,0.14881948,-0.19671065,-0.057136405,-0.022525676,-0.0490831,0.018004151,-0.0009295442,0.014413011,-0.03126158,0.07203608,-0.020035293,0.07810082,0.06759051,-0.0042340783,0.016554441,0.025916483,0.043737445,0.029295702,0.005123903,0.0117161535,0.050701566,-0.09486513,0.029364068,-0.016083652,0.027386464,-0.02363881,0.028458012,0.024089102,-0.015871469,-0.035058577,0.008373007,0.011947097,0.12725551,-0.017923549,0.0047085807,-0.027405908,0.0062958878,-0.03645966,-0.09079265,-0.04939774,-0.039279543,0.049856175,-0.048644792,-0.035938986,0.054617636,-0.048213962,-0.007980085,0.008505961,-0.061788578,0.015914474,-0.07779,-0.0685062,0.04066096,-0.06537518,-0.043609034,0.0033546868,0.010528482,0.060871504,-0.059604757,-0.07348488,0.044651438,-0.0069120615,0.059383105,-0.058072712,0.061001644,-0.010247437,-0.08086607,0.016732352,-0.033934288,-0.06472663,0.0049654064,0.033002794,-0.04733638,0.0414735,0.019649483,0.0070047113,-0.024359439,-0.071272634,0.016311731,0.08185378,0.0093535865,0.022600476,0.002468041,0.030577889,0.07583877,0.117847644,0.0072507462,-0.0128847435,-0.13004084,0.043578558,-0.055230323,0.022542374,-0.027450811,-0.010392637,-0.014737067,0.006362843,-0.040013034,-0.017467218,-0.09014122,0.10007647,-0.04652023,-0.0064757117,-0.0022313537,-0.032628477,-0.0038191243,-0.08320579,0.097169705,-0.01113153,0.010419924,0.0023396888,0.041872207,-1.3689385e-33,-0.07195106,0.024012154,0.001497465,0.07678021,0.02543238,-0.07023178,-0.05647841,0.0146228885,-0.025491673,0.008973541,-0.06382629,-0.040060766,-0.033996414,-0.04460176,0.030530645,0.055128265,-0.027074477,-0.056899905,-0.09103237,-0.023461612,0.0001552218,-0.07025488,0.013353487,0.044109624,0.060112417,0.020555247,0.024442522,-0.02660935,0.119883195,0.020476973,-0.09140419,0.07286507,-0.07357772,-0.0057925656,-0.068418704,0.033441685,-0.12097082,-0.014588394,-0.008979966,0.004362482,0.07675407,0.007145504,-0.05561293,0.049158856,0.04435219,0.045342922,-0.029171053,0.0049344483,0.039122652,0.024352275,-0.07251671,-0.03426195,-0.05560388,0.008031167,-0.036966167,0.07194953,0.05291678,0.09235607,-0.05386386,-0.0035697373,-0.003582959,0.048904747,0.008223498,-0.030262358,-0.040491994,0.012574903,-0.031024646,0.045799404,0.053848002,0.03035162,0.08024256,-0.014811693,0.017108584,-0.020110974,0.023932911,0.016535778,-0.033110887,-0.01637976,-0.051178075,0.088824876,-0.0083242245,0.058881767,-0.020594945,0.022079663,0.099321686,-0.00064556376,-0.067552984,-0.06645208,-0.021282095,0.029312512,-0.069537394,0.03501298,-0.017922007,0.048497837,-0.012522374,-1.9953941e-33,0.15944049,-0.0041806335,-0.007905368,0.032420803,-0.019982314,0.033231307,-0.055463232,0.08969496,-0.007191503,0.08276311,-0.08997275,0.02805154,0.09323284,-0.03602259,0.013518756,-0.035901174,0.18555252,-0.071997926,-0.028867792,-0.041756112,0.035823897,0.011681939,0.03043946,-0.023599146,-0.08530972,0.028980581,-0.047682293,-0.012509102,0.006182422,-0.007068518,-0.00419591,-0.049277563,0.023615938,0.037984557,0.014922753,0.014347481,0.028779704,0.01101897,-0.04798369,0.034093734,0.04741179,-0.021768218,-0.02145183,-0.00021048331,0.005003647,-0.054449107,-0.039164107,-0.06769537,0.0052586845,-0.05189584,0.10395237,-0.040140048,-0.081125244,0.06256612,-0.06333319,-0.047007214,0.014794481,-0.06919538,0.052442692,0.0058953413,-0.0788245,-0.027118085,-0.008228884,0.004844313,-0.06925397,-0.10852754,-0.020916143,-0.019844148,-0.030820616,-0.02918163,-0.00045957643,-0.016539903,-0.008336829,0.10906212,-0.05414594,-0.020444078,0.065295815,0.0007032431,0.089009084,-0.049472548,0.008724458,-0.022362826,-0.04671925,0.03796469,0.024259541,0.055440314,0.024349011,-0.046759013,0.039767053,0.082196824,0.052466385,0.09098916,-0.022214858,-0.010439027,-0.074755095,-4.066326e-08,0.009279325,0.0046677734,0.040499404,0.07684844,-0.09070159,-0.08778104,-0.013439107,0.011807513,-0.042741936,-0.018010926,0.0021669688,-0.002821773,-0.037955333,0.02192612,-0.039208073,0.021853115,0.01102457,0.08106094,-0.007756542,-0.06072954,0.018079964,0.0015119814,0.026562216,0.086348206,-0.0042153536,-0.009328926,0.0057682763,-0.075501025,0.048561294,-0.006461767,-0.089188464,0.047552276,0.008210391,0.0074322033,-0.023704227,-0.050924953,0.047094386,-0.062629916,-0.0033863292,-0.014835032,0.060295537,-0.025939489,-0.10387389,-0.05256015,0.007425333,-0.039245594,-0.029621342,-0.052606054,-0.07522246,0.0781016,0.05218016,-0.0011066669,-0.056247033,0.11782829,-0.045273665,-0.0023778863,-0.030547932,-0.08742873,0.015594961,0.02269106,-0.022218945,0.05642147,-0.06737474,0.058076844} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:43:48.585478+00 2026-01-25 01:27:50.060121+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 217 google Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB 1 t 220 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very unfriendly lady. Not returning here again. Totally not clear where the shuttle bus was leaving at the airport. She said it was not her problem. Dont so this to yourself. Not a nice way to start your holiday very unfriendly lady. not returning here again. totally not clear where the shuttle bus was leaving at the airport. she said it was not her problem. dont so this to yourself. not a nice way to start your holiday 1 2025-11-26 01:27:48.340463+00 en v5.1 P1.02 {} V- I3 CR-N {} {"A1.04": "Totally not clear where the shuttle bus was leaving at the airport. She said it was not her problem.", "P1.02": "Very unfriendly lady. Not returning here again."} {0.104617566,0.011262649,0.061156884,0.049604602,0.0007061324,0.01466427,0.09846009,-0.0060574957,-0.045498066,-0.021867512,0.015559975,0.035392493,-0.012640093,-0.011147975,-0.003023755,-0.0071901856,0.021882689,-0.07508287,-0.11107982,-0.012340235,0.019337265,-0.013192645,-0.060946036,0.05028343,-0.03798238,0.026676135,0.030688321,0.016199023,-0.013123695,-0.024667647,-0.050293107,0.057357527,-0.04128038,0.022572437,0.024251956,0.06883292,0.050995797,-0.10489587,0.07353867,-0.065253444,0.0017425544,0.018536603,0.047111753,-0.014340174,0.0022742955,-0.007424881,0.01903734,-0.033494428,0.12462282,-0.0073255706,0.045828566,-0.021556646,-0.016703628,-0.00069589546,0.02555397,-0.03007456,0.017938979,-0.03686205,0.020941805,-0.035379663,-0.010931015,0.00026475775,0.032873962,0.053326294,-0.018820578,-0.020992598,-0.072820395,-0.11987637,0.13502829,-0.029586738,-0.008287866,0.06715754,-0.031622123,0.016410483,-0.008831215,-0.042217076,0.053713758,0.029342262,0.03767507,0.05224534,0.020246387,-0.027728312,0.0015595304,0.10723782,-0.032383323,-0.06523013,-0.00659265,-0.007959993,0.05622144,0.08879465,0.011263205,0.026709147,0.07399132,0.036437523,-0.041080743,-0.05625783,-0.07179291,-0.023005249,-0.042304922,0.065320365,0.01730358,0.17581818,0.04154275,0.054781772,-0.06533637,-0.011986295,-0.025261734,-0.036321037,-0.06310528,-0.07547067,-0.021085147,-0.0077001583,0.00360245,-0.019895054,-0.021662397,0.05244314,-0.023559615,-0.0015579052,0.02241014,-0.0559075,-0.04910028,-0.005953057,0.032790992,0.06368298,-0.07854363,-0.0453531,0.07101068,8.048614e-34,-0.07777583,0.010774746,0.07893531,0.020259328,0.09826157,-0.013747995,-0.10620939,-0.00828967,0.059663028,-0.055471614,-0.011458005,-0.015199735,0.034351863,-0.13142659,0.0015007782,0.0014270443,-0.03757008,0.07735523,-0.018378077,0.047823355,0.07049301,-0.090264775,-0.007066473,-0.010238482,0.0144575685,0.049601372,0.0029328011,0.037951246,0.1293254,0.027154285,-0.09401928,0.01396877,0.09045608,0.035718225,0.019240629,-0.038482845,0.01334564,0.0188163,-0.11112416,-0.035180535,-0.036350094,-0.016507234,-0.026517613,0.05392192,-0.05624749,0.01150046,0.027011711,-0.028609024,0.035444688,0.039686248,-0.08808834,0.053983,0.079656884,0.008110108,-0.007741126,-0.05263549,0.01891158,0.05175868,0.063265525,-0.0011690899,0.080538765,0.04361081,0.03850136,-0.08455223,0.05975914,-0.054931033,-0.006495855,0.057343613,0.017680533,-0.012790138,0.023034979,0.03679966,0.033628136,0.03659742,0.015985182,0.10298369,-0.034249622,-0.024775423,0.04617669,-0.07032217,0.031268366,0.009443874,-0.009289398,0.0021535666,-0.01734864,-0.0073080305,-0.011246398,-0.015129798,0.005137383,0.054581154,-0.050465837,0.12436187,0.037164483,0.03981441,-0.050961778,-2.296383e-33,0.055129763,-0.00587024,-0.047767337,-0.080890425,-0.08326177,-0.05568685,0.017947698,0.10030167,0.039081838,0.061997574,-0.013609781,-0.07049943,0.06287389,0.0083265025,-0.022095798,-0.028759267,0.13017143,0.04586712,-0.093846135,0.013206247,-0.02464569,0.05057575,0.0053421995,-0.055891212,-0.062285855,0.10591268,0.016126607,0.0061048153,-0.12915371,-0.0802956,0.017731322,-0.007146361,0.024364337,0.033568647,-0.003099978,-0.0131312385,-0.048014786,0.02238188,0.012473017,-0.029978039,-0.013619434,6.189757e-05,-0.030742917,0.019803949,0.10451414,0.008202988,0.01993089,-0.031203976,0.109221764,-0.010657513,-0.03136317,-0.051627107,-0.038246248,0.00979757,0.03585569,-0.018076355,0.026757406,-0.04051737,0.052241683,-0.095213205,-0.047936365,-0.10571137,0.003254374,-0.05825652,0.011745721,-0.09545242,0.0412645,-0.008854793,0.011326061,-0.0055764876,0.027999302,-0.011654179,-0.031863626,0.045361623,0.011441293,0.05649209,0.029358229,-0.048721667,-0.014095162,-0.028901093,0.032052506,0.013886745,-0.06106923,-0.052049138,0.026538724,-0.06631922,0.042865723,-0.021683427,0.0037569974,0.03242527,-0.006821403,0.0146031,0.005319687,0.0655696,-0.034639057,-3.584809e-08,0.0025236902,0.010750384,-0.011097187,-0.025851281,0.018061528,-0.071589366,0.0110396305,0.016837861,-0.0927177,-0.058625814,-0.07174874,0.04801226,-0.053680893,0.06550698,-0.037161585,0.04747798,0.0103839105,0.031717822,-0.016806537,-0.1286692,0.0063312394,-0.020299297,-0.007343969,0.012662136,0.019292952,0.042134836,0.028167406,-0.012437923,0.061846033,-0.12553124,-0.073774554,0.010401316,-0.040488984,-0.062006764,-0.09715418,0.019615028,0.0646873,0.0012043494,-0.01648286,-0.038588922,-0.035530236,-0.04400217,-0.008086234,0.016768722,0.009229059,0.033160202,0.020997318,0.04831653,-0.14363727,-0.006283138,-0.0573197,-0.043894116,-0.017856447,0.069618165,-0.028217629,-0.024535732,-0.09902815,-0.072746985,-0.045317657,0.036939587,-0.07700652,0.07344427,-0.104449645,0.026747642} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:44:29.451501+00 2026-01-25 01:27:50.073952+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1289 google Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB 1 t 1292 Soho Club unknown Poprawne. poprawne. 4 2025-07-03 18:34:31.336452+00 pl v5.1 V4.03 {} V0 I1 CR-N {} {"V4.03": "Poprawne."} {-0.03598122,0.034707386,-0.020610804,-0.017273141,-0.057066962,-0.042474058,0.16215749,0.032205656,0.03691492,-0.05070005,-0.029152937,-0.071769305,0.021478504,0.023951111,0.0014702659,0.0021274982,-0.04640945,-0.013223432,0.009535353,0.012915277,-0.029839823,-0.061039302,0.04666608,-0.017067509,-0.024718981,-0.004453777,-0.031865977,0.05864902,-0.042223547,-0.07801484,0.11923358,0.10057774,-0.025332725,-0.053573728,-0.081346795,0.015425615,0.065138616,0.031582862,-0.0025970747,0.05495294,-0.010410768,0.020512095,-0.034166068,-0.057210162,0.05564915,0.029289097,0.00416738,-0.021420235,-0.037638128,0.07357854,0.07416634,-0.13252823,-0.052109573,-0.007258044,0.040232517,-0.042612825,0.09823523,0.050502893,0.021450574,0.039780986,0.016884802,0.02692713,-0.1309174,0.13099277,-0.059512936,-0.013163701,0.0058973758,-0.03412109,-0.0698001,-0.04514381,0.069536045,-0.06141523,0.01201241,0.011605711,-0.06123622,0.0066479393,-0.0029333346,-0.016445376,-0.010593013,0.04338315,-0.0056334697,-0.002731529,-0.049533356,-0.01776296,-0.0006889098,-0.017238194,0.007903188,0.047441326,0.025808388,0.021515962,-0.060835678,0.039766416,-0.008244648,0.099847086,-0.011532075,0.067636795,-0.023551913,-0.11286917,-0.085370764,0.09413799,-0.03368365,-0.020033816,0.10261669,0.050136477,-0.02210359,-0.08336694,0.013662811,-0.0005224864,0.005553234,0.024469227,-0.020862436,-0.030505432,0.11406687,-0.0015858529,0.008831631,0.01718332,-0.063818485,0.035689186,0.041290827,-0.0364498,0.03541026,0.048317067,-0.013716683,-0.0009112281,0.01106725,-0.07547537,-0.0129523715,-2.9354204e-33,0.037183464,-0.049100127,0.05781467,0.058399193,0.088584445,-0.007963464,-0.009151675,-0.051597334,-0.0016093772,0.014387651,-0.027244763,-0.0311422,-0.068577,0.004977473,0.039304633,0.05574377,-0.061664704,0.054840054,-0.06368196,-0.039221104,-0.0019334616,0.026387364,0.02807481,0.09439565,0.059140112,-0.01566163,0.048557166,-0.0873621,0.012173718,0.030169893,-0.01768937,-0.0079050325,0.016400345,0.00040826248,0.01469074,-0.08402147,0.007560523,-0.10640694,-0.064772025,0.06135577,0.018964201,-0.06108946,-0.016580014,0.06321166,0.018071102,0.001997507,0.010493853,0.06520112,-0.0069757737,0.013695286,-0.004731705,-0.02911692,-0.07340414,0.10121701,-0.11897345,0.06611383,-0.041447405,0.008918925,0.10795376,-0.029431496,0.04960419,0.11746778,0.07685584,-0.09993686,-0.027434075,-0.041156873,0.004151074,0.004798358,-0.023614086,0.042684052,0.017902806,-0.046491023,-0.02065278,0.06298957,0.07999286,-0.03289979,0.039868273,0.051806413,0.040869787,-0.07373524,0.048270103,-0.05084689,-0.009858598,-0.022863582,0.03832528,0.013358075,0.010937083,-0.013793913,-0.036686916,0.039694738,-0.024238115,0.00082565093,0.04103859,-0.07445603,-0.10162683,3.513915e-33,-0.05853648,-0.046237893,0.010379717,0.0039434116,0.04901954,0.00083647866,-0.08166473,0.036177367,-0.03517258,-0.02853651,-0.06598574,-0.043772366,0.11917865,0.03017983,-0.02534385,0.08073415,0.09532501,-0.054014802,-0.003996235,0.004811096,-0.06473593,-0.06296923,-0.03836327,0.03389432,-0.01088175,0.034301624,0.023545146,0.03221296,0.0018542979,-0.022292953,-0.039192293,-0.014924315,-0.0090034455,-0.022807723,-0.026301472,0.08533768,0.115351535,-0.03098035,-0.036677543,-0.030129386,-0.030418314,-0.080756456,-0.011332072,0.1309694,0.01810654,0.02802462,-0.13775542,0.040602848,0.03412303,0.033624973,-0.057129025,0.056609344,0.043691475,-0.042124197,0.04294288,-0.061643682,-0.042126726,-0.0784729,-0.015466556,-0.07598934,0.044182505,-0.029542536,0.037006002,0.035074707,0.07752564,0.05452688,-0.024057036,0.0649935,-0.03201142,0.017329559,0.05320359,-0.07996021,-0.029364768,-0.088528834,-0.036827717,0.0154575035,-0.026294503,0.0075224917,0.024383673,-0.036151797,-0.006395604,0.035251163,0.011403949,0.01935107,-0.013877976,0.0013644929,0.020286582,0.032291934,0.065552235,0.02274167,0.030010417,0.07484314,0.03089295,0.018782262,0.07849598,-1.673094e-08,-0.004456493,-0.02207765,-0.005695672,0.01052467,0.041096743,0.006918348,0.016980883,0.04726458,-0.037598483,-0.077100515,0.015448327,-0.036194704,0.039989844,0.061061382,0.05911038,0.056273382,-0.03722428,0.026090773,-0.048999786,0.02272601,0.0031128663,0.037092626,0.011705051,-0.043306496,-0.055496935,0.05369498,-0.029388087,0.028603835,-0.024208227,-0.0152687915,-0.031555217,0.1336492,-0.07682002,-0.012088055,-0.11018147,0.053157505,0.0155319115,0.025983928,-0.07531355,-0.021054866,0.022750966,0.06490641,0.11768206,-0.036824778,-0.05650778,0.004773177,0.06253174,0.0019625048,0.051418643,-0.072308175,0.018100806,0.06724661,0.03959345,0.052506674,-0.010187198,-0.0015794329,-0.049374584,0.016084028,-0.027667152,-0.00732063,-0.025398994,-0.044634685,0.14085439,0.002079205} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:25.992196+00 2026-01-29 18:36:00.691715+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1291 google ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB 1 t 1294 Soho Club unknown No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy bien! no lo conozco todavía! ha sido un error! iremos pronto y ,por lo que dice la gente, va a estar muy bien! 5 2020-01-31 18:34:31.336452+00 es v5.1 R1.01 {} V± I2 CR-N {} {"R1.01": "No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy b"} {-0.014258892,0.031041745,0.0156053975,-0.049264792,0.025619091,-0.027778018,0.061341804,0.0146939345,-0.057112113,0.008943909,0.0456983,-0.021265397,0.0006746762,-0.01609602,-0.012334058,0.007815641,-0.070827626,0.016757328,0.031805646,0.061012466,0.038705856,0.028913185,-0.082420535,0.10564559,-0.08116025,-0.07622107,-0.0016664051,0.021133756,-0.044636898,-0.06513906,0.020371595,0.084659085,0.011087953,-0.008097538,0.009403109,-0.013137262,0.025930617,-0.064091004,-0.010722571,0.052923057,-0.084421255,0.04753368,-0.049903367,-0.00894761,-0.035384327,-0.054161035,-0.0025263026,0.062183544,0.05489864,-4.0640327e-05,-0.033355176,0.004920091,0.01086085,0.012870642,-0.044207122,0.03906613,-0.0040616565,0.013480374,0.053155232,0.044455525,0.037552074,0.044502757,-0.103326716,0.0028122277,0.043105323,-0.019013258,0.09051186,-0.04264274,-0.1423348,0.048442204,0.0785394,-0.0083363615,0.053443223,0.044800144,-0.03494535,0.05146423,0.013806904,0.021846607,-0.027628975,0.010986388,-0.055942368,-0.01824908,0.005439567,-0.055811707,0.056705937,-0.034052093,-0.03390869,0.072135955,0.07345096,-0.05109678,-0.020381028,0.049163315,-0.020846331,0.05682188,-0.014662942,0.04688499,0.032524113,-0.041520894,-0.009690253,0.012169351,0.07197326,0.047722496,0.054189943,0.019808104,-0.0056864033,0.050053205,0.015810298,0.0072631002,0.024779832,0.009345608,-0.011506102,-0.05616585,0.06505362,0.038951118,-0.02383516,-0.04878357,-0.0037338918,-0.06449875,-0.044032726,-0.084895074,0.04547798,0.052073136,-0.013832855,-0.040833566,-0.004738493,-0.04390795,0.032987658,4.0010268e-33,-0.010337289,-0.02984333,0.011821044,0.048640426,0.0013551809,0.07570923,-0.08621904,-0.021651853,-0.0763727,-0.026799075,-0.100878015,-0.07691977,-0.0096583385,-0.025253406,0.023391923,0.11997768,0.039331246,-0.03900611,0.02189702,0.108845025,-0.08636329,-0.03577858,0.03150935,0.045729373,-0.046630315,0.11339394,0.028688174,-0.07521534,-0.02283565,0.063777074,-0.05964376,-0.015687004,0.051555313,0.029456189,-0.020435128,-0.09934337,0.051166195,0.07900842,-0.035491776,-0.039606217,0.056463007,0.061416287,-0.07744302,-0.022110354,0.013907488,-0.04016911,0.09676209,0.04858296,0.06381835,0.0058503808,-0.07955041,-0.026346039,-0.06745779,-0.05001191,0.056836177,0.0010952285,-0.051821064,0.07608772,-0.01669588,-0.043816872,0.04636731,0.021266669,0.010356966,-0.041059084,-0.03399417,-0.066201724,0.018135656,0.13299751,0.11838567,0.037465077,-0.0005687321,-0.076722585,-0.05368914,0.04324438,0.0105780335,-0.008111165,0.0684445,0.016917387,0.023996737,-0.060655005,0.041634537,-0.01396879,0.0114083,-0.0099345725,0.0071757357,0.072629295,0.06367843,0.049992304,-0.08371483,0.12563483,0.0014294413,0.049970444,0.05169737,-0.051582955,0.0019427977,-5.5016534e-33,-0.02800013,-0.007774761,-0.009291656,-0.0013308178,-0.032908056,-0.004631834,0.03737545,-0.033372078,-0.043267284,-0.095488615,-0.062024955,-0.13815573,0.04446207,-0.007911281,-0.0409188,0.035366748,-0.032003358,-0.054867826,-0.053530257,-0.05113369,0.023486804,0.009434703,0.06499699,-0.030322853,-0.061492573,-0.050494574,0.014858187,0.089936875,-0.060886897,0.010826562,0.0656987,0.02641271,0.023210319,0.023853466,0.027712382,0.016867053,0.038459253,-0.0004080745,0.007213091,0.044459313,-0.050589282,0.105976745,-0.07391125,-0.026496872,-0.012400388,0.08042954,-0.0146739725,-0.17891029,-0.06326264,-0.07039762,0.04899566,-0.038151413,-0.015693195,-0.017911078,0.0036846884,-0.029209476,-0.02131981,-0.022849184,-0.05144706,-0.004641585,-0.024156732,0.012853099,-0.0017991122,-0.08994274,0.113475986,-0.00078983733,-0.04516863,0.06441774,0.08684181,0.099826,0.111345015,0.031305626,-0.11394761,0.0030206058,-0.067910604,-0.03334569,-0.08469673,-0.019201001,-0.021438058,0.042533766,-0.014801063,0.017223053,0.05346912,-0.019718485,-0.030324483,-0.049025305,0.02788647,0.08306156,-0.03984585,0.06458499,0.029105764,0.02989412,-0.035609026,-0.03315216,0.029974405,-3.1656192e-08,-0.0009322294,-0.022222454,0.009358278,-0.04524093,0.03274339,-0.07203719,-0.06429084,-0.007184864,0.04484686,0.0325687,-0.053961813,-0.059742715,-0.05301007,0.036878664,-0.0032338402,0.0730556,0.07772832,0.06911872,-0.034258623,-0.047459163,0.07429589,0.01356835,-0.05631967,0.0011627608,0.0022991272,-0.015786123,-0.013981188,0.008612642,-0.048191074,-0.06577573,-0.033346146,-0.038543925,0.008321288,-0.109118715,-0.027741602,-0.03265965,0.010951982,-0.014121031,0.028557396,-0.02321691,0.115148835,0.019727025,-0.05425819,-0.00336817,-0.064933464,-0.114862576,-0.024185339,-0.013716034,-0.019086704,0.045214396,-0.052895796,-0.010411484,0.00889057,0.010011001,0.059327483,-0.04111943,0.012929111,-0.035085037,-0.030851956,-0.018904364,0.09154574,0.09302553,0.045090437,-0.062308736} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:35.737541+00 2026-01-29 18:36:00.697807+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1292 google ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE 1 t 1295 Soho Club unknown Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋 patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋 5 2024-01-30 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋"} {-0.013576412,0.091981374,-0.050652687,-0.012878759,-0.059398435,-0.0034010026,0.036711365,0.033408552,0.027164998,0.00034365512,0.04236999,-0.095593885,0.029899115,-0.021697842,-0.009216877,-0.054703582,-0.04474873,0.08245485,0.023721773,-0.015771693,-0.03662169,-0.044258103,0.016344596,0.019481001,-0.04556647,-0.012932445,-0.016569167,0.00023172282,-0.007692567,0.00033535468,-0.049751773,0.063486986,0.0027010334,-0.013456939,0.0068886215,0.057398897,0.014428381,-0.026534058,0.12501511,0.06661242,-0.023774602,-0.0005417512,-0.032624606,-0.078424454,0.09372178,-0.0028616025,-0.053602196,0.02033565,0.012443938,0.016409699,-0.09184015,0.070389464,0.015582321,-0.030855369,0.021647178,-0.12302018,0.009460635,-0.068613365,0.0054043657,-0.0097486535,0.0111705,0.024800971,-0.038597368,0.0002837092,0.037107162,-0.051772732,-0.07017537,-0.0045007733,-0.010171354,0.018379562,0.09090151,-0.045947697,-0.0021386438,0.008697712,-0.100853376,-0.025617812,0.023046328,0.018723259,-0.028300853,-0.07764045,-0.011849953,-0.030174885,-0.020458573,-0.00025997736,-0.046847176,0.04562023,-0.06447476,0.033930533,0.039728064,-0.0066224923,-0.00018626907,-0.0024736447,0.014220682,0.045446735,0.0042372555,-0.025863554,-0.023045044,-0.09910611,-0.14634952,0.038968123,0.014629344,-0.002967286,0.026432676,0.01977125,-0.12486917,0.056312498,-0.0018989169,-0.026507296,0.036425848,0.058508784,0.00756392,-0.06517674,-0.060682032,-0.08959601,-0.03147777,0.009685174,-0.0036547643,0.04502666,-0.048379846,-0.042476136,0.04201226,-0.030368758,-0.037280332,0.017174944,-0.00096555334,-0.03529279,0.06422666,4.0279534e-33,0.036319602,-0.055966087,0.022140415,0.009808199,0.018244209,-0.026597613,-0.020689493,-0.009458011,-0.06893991,-0.02404627,-0.060756832,-0.01828942,-0.11588435,0.009817899,-0.052607518,0.06289703,0.0136942435,-0.038870048,0.005587406,0.02234599,-0.0047970423,0.06748039,0.086712755,0.06915176,0.08185767,-0.044449154,0.02622037,-0.074824855,-0.056283344,0.065950714,0.08692715,-0.093465246,-0.0018847545,-0.045521844,-0.040673397,-0.041750982,-0.025340643,-0.011529042,-0.046086673,0.041759737,0.02851477,-0.038299948,0.039748166,-0.0056605637,-0.07462031,0.02647398,0.085550755,-0.022276957,-0.0005459254,0.008077299,-0.08838497,0.018144833,-0.10869862,0.014807713,-0.07418241,-0.09343552,-0.017508589,0.030364025,0.032381542,-0.023366103,0.082854606,-0.04593734,0.054893605,0.014713501,-0.0224023,-0.010569205,0.0008238324,0.0022993644,0.10914951,-0.053571094,-0.092810415,0.024450986,0.0028097422,0.060022194,-0.031128202,0.032301787,-0.018610679,-0.027975138,0.0037643674,0.023797857,-0.030183624,0.008163775,-0.0473939,0.0423473,0.044961434,0.10846049,0.06226395,-0.045687154,0.0034129198,0.07006129,-0.078866936,0.016888168,0.08846972,0.024332661,0.044957224,-5.1983545e-33,0.008041096,-0.046271138,-0.044128112,-0.049868952,0.037294786,-0.049841333,-0.066328116,0.051230703,9.576591e-05,0.032031458,-0.0120855095,-0.067969136,0.0544758,0.026061075,-0.067706816,0.10882279,0.13031991,0.08122125,-0.04679797,-0.057393543,-0.01669488,0.025888398,-0.029988175,-0.052718025,-0.07396247,0.035112314,0.055811223,-0.0263361,-0.032732755,0.040807735,-0.011629892,-0.030122673,-0.03707672,0.011023389,0.020040752,0.029570393,0.06975117,0.0408612,0.009837076,0.06662784,0.003862772,0.042621277,0.0385935,0.030300649,0.03267692,-0.033937607,-0.078177415,0.014811504,-0.060879905,-0.060956173,0.0632157,-0.023737097,0.04521472,-0.045910932,0.10080225,0.022346336,0.024478622,0.015029217,-0.048309743,-0.010920529,0.006605414,-0.016021434,-0.0051039634,0.039054006,0.034828205,0.09489524,-0.0001380562,0.03976111,0.049519375,-0.042369075,0.0048291734,-0.1156836,0.0022165545,0.11901408,-0.10470585,0.008152464,-0.032023486,-0.0041167773,0.08273394,-0.038644925,-0.068316765,-0.08060468,-0.043931607,0.047533672,0.017875843,0.0010183526,0.10899674,0.0374668,0.06890416,-0.018929277,0.05288089,0.08342465,0.041307483,-0.096273005,0.07575835,-2.5579288e-08,-0.0013239552,-0.08564874,-0.08040977,0.014231305,-0.04481488,-0.075622894,0.033428505,-0.02765506,0.014190619,-0.05440612,0.08463114,0.04009998,-0.020589443,-0.018597791,0.058754746,0.036511775,-0.012567555,0.10996268,0.0072358693,-0.06670633,0.071785524,-0.055235643,0.04240954,-0.060184296,-0.0953104,0.031893536,-0.032831907,-0.03479443,0.0096217375,-0.042586267,0.027989829,0.033059116,-0.020257084,-0.0751514,0.0106346905,0.040572677,-0.029602984,-0.039451513,0.021720506,-0.00037333003,0.06752903,-0.052582238,0.061033804,0.016011087,0.0061907666,-0.0053075803,0.12227599,0.06509421,0.015302804,-0.05865529,-0.082573414,0.08874359,0.09655407,0.0017569584,-0.022139126,0.07364304,-0.0354067,0.035791386,-0.005512249,-0.027624303,0.13173604,0.05583256,-0.033858,-0.05963614} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:40.270029+00 2026-01-29 18:36:00.69999+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 220 google ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB 1 t 223 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Good service, perfect cars, low prices! Very recommendable!\nRegarding, how to get to the office, just wait outside without checking owing the street in front of the airport building: a small shuttle bus runs every 15 min, however the office is very close and you can walk, if you don’t have any luggage.\nWhile taking the car, take photos of the car before renting, as including under the bumper. good service, perfect cars, low prices! very recommendable! regarding, how to get to the office, just wait outside without checking owing the street in front of the airport building: a small shuttle bus runs every 15 min, however the office is very close and you can walk, if you don’t have any luggage. while taking the car, take photos of the car before renting, as including under the bumper. 5 2025-04-30 01:27:48.34047+00 en v5.1 V1.01 {O1.01,V1.01} V+ I2 CR-N {} {"A3.04": "While taking the car, take photos of the car before renting, as including under the bumper.", "A4.01": "Regarding, how to get to the office, just wait outside without checking owing the street in front of", "V1.01": "Good service, perfect cars, low prices! Very recommendable!"} {0.01296798,0.040546164,0.09209607,0.022843285,-0.062179115,0.05320667,0.040395923,0.023933712,-0.0037272219,-0.0074230647,0.013903728,0.084114745,-0.02676386,0.0010532723,0.037068926,-0.048569735,0.1390672,-0.055843845,-0.004566287,-0.013234645,-0.003591523,-0.066980936,-0.0056989593,0.0010206458,0.0021282115,0.052226163,-0.00019373221,0.009782811,0.027386446,-0.0015001346,0.023475256,0.005980053,-0.015495868,0.043179095,0.05155036,0.03710293,0.10660078,-0.035827216,0.082803935,-0.0156859,0.03876496,-0.0023728039,-0.0061008106,0.012080879,0.008139639,-0.06429951,0.06397817,0.013623003,0.14109343,-0.03834617,0.0017130466,-0.04154057,0.059792116,-0.007300774,-0.07844172,-0.020027308,-0.04595424,-0.010938431,-0.01481776,-0.03489102,-0.00024437686,-0.0614487,-0.026676016,0.054251477,-0.06139821,0.043085374,-0.017496428,-0.06957928,0.083628915,-0.03722708,-0.06864738,0.04609154,-0.008208047,0.0058371373,-0.047945987,0.030540975,0.057904772,-0.0035150645,0.033139817,-0.0083829425,-0.0031364588,0.008074005,-0.030797787,0.07578623,-0.04402993,-0.03491668,-0.019406628,0.037869703,-0.05298316,0.029493893,0.0074910424,0.03245513,-0.0644224,-0.046200823,-0.07874397,-0.00075319916,-0.040283278,-0.05368089,-0.033836894,0.021445602,0.05341168,0.112496264,0.06224444,0.009057467,-0.058736995,-0.009111769,-0.02836497,-0.031752106,-0.015524861,-0.0038328508,-0.00034663337,-0.045261145,0.028713046,-0.027192919,-0.09554193,0.053986594,-0.056263268,-0.01824593,0.0109062465,0.041245617,0.007765433,-0.034702193,0.07278192,-0.03542078,-0.007284392,-0.0191323,0.106123894,2.2478863e-33,-0.080281734,0.037022054,0.044220865,0.07717747,0.036598988,-0.036733344,-0.05038309,0.023904506,0.0060173078,0.044523954,-0.076869525,-0.0077929255,0.019756889,-0.062126204,0.011607404,0.04944152,-0.019517392,-0.029545832,0.011233966,-0.009900632,0.019532887,-0.1638684,-0.016117042,0.016539719,0.10857672,0.01301479,0.029941596,-0.015562635,0.22065036,0.02830486,-0.10766791,0.057848565,-0.056402683,0.036961664,-0.034111824,-0.028091608,-0.101873696,-0.012894383,-0.020277781,-0.045397844,-0.038384095,-0.030037375,-0.06932325,0.023569424,0.055076517,0.0573074,0.0408708,-0.02160677,0.072088465,0.03280348,-0.024550185,-0.006583233,-0.055535298,0.032962106,-0.06761612,0.029609872,0.02926222,0.02736234,0.0369631,-0.011366273,0.018545093,0.021728227,0.023630876,0.005301893,0.025327355,0.014917608,-0.03959614,0.049294267,0.10478389,0.026565751,0.08123805,0.028297175,0.041384205,-0.00089587894,0.069836915,0.041180786,-0.023721175,-0.031959996,-0.044749282,0.04984286,0.01295253,0.009063028,0.01884506,0.018428251,0.14338547,0.024171134,0.041439056,-0.028541546,-0.055767357,0.034162667,-0.06449817,0.018179892,-0.042654496,0.0564353,-0.054952137,-2.9160457e-33,0.10112847,-0.0915267,-0.0082067,-0.05015502,-0.059469614,0.034617633,-0.035517137,0.026261935,-0.010909683,0.08734436,-0.12747474,-0.024377463,0.06886508,0.00063585397,0.006445243,-0.036943935,0.1194609,-0.06668905,-0.06538773,0.029674632,-0.021668065,0.050403975,0.042454317,-0.014776373,-0.03956095,0.016073084,-0.07587247,0.07586812,-0.03177003,-0.0029567438,-0.031355806,0.030617606,0.049687248,-0.028163763,-0.031102827,0.031966526,-0.013224653,0.016821748,0.0694623,0.08925023,0.015681867,-0.08505105,-0.02118934,-0.018399337,0.057943985,-0.05531063,-0.052929815,-0.1071117,-0.07478539,-0.009666143,0.029531052,-0.05090546,-0.1021894,0.059983414,0.017196884,-0.038467955,0.018736785,-0.056539875,0.010856534,0.018664666,-0.026247842,-0.055846766,0.012864691,0.040282726,-0.056687403,-0.10666609,0.043933127,-0.04646605,-0.0117561305,-0.0034237301,-0.06467994,-0.02340822,-0.006815025,0.10690475,-0.04625964,0.024869435,0.13162877,-0.02421095,0.00632063,-0.07893268,-0.018284867,-0.038181737,-0.05648908,-0.026498118,-0.04463443,0.043018673,0.011450431,-0.08357651,-0.026289811,0.08726824,-0.011983233,0.06028485,0.0007228622,0.012774207,-0.013317798,-5.045912e-08,-0.010155881,0.061435934,0.09058271,-0.024246704,-0.03305797,-0.08152952,-0.0029083584,0.027709424,-0.042943053,-0.024880517,0.09009532,-0.07724006,-0.06955634,0.12789007,-0.06349187,0.05398761,0.08468502,0.0021076242,-0.020771915,-0.02546063,-0.023277018,-0.03654624,-0.017799802,0.03778347,0.048958905,0.0075985054,0.023424286,-0.05167666,0.08518967,-0.057101525,-0.07863262,0.04408373,-0.017026164,0.005279696,-0.08097185,-0.048354845,0.061259508,-0.031675275,0.0008518165,0.035855588,0.0139379995,-0.048625644,-0.08651613,-0.06690128,-0.017728858,0.038314376,-0.03534368,-0.010743628,-0.066401914,0.049924463,0.003239001,-0.054794583,-0.030876547,0.021399742,0.03429874,-0.028652633,0.015116697,-0.016992876,0.009743565,0.052940838,-0.055255283,0.046491116,-0.09129964,0.021116272} 0.73333335 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:45:00.482411+00 2026-01-25 01:27:50.090116+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 497 google ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB 1 t 500 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Recomendable 100%. Agradecer a Carmen y Nestor lo amables que han sido. No conocíamos esta empresa de alquiler de vehículos y hemos quedado encantados con la profesionalidad y trato de ellos. Si volvemos, no dudaremos en volver a contratar con ClickRent. Muchísimas gracias por todo. recomendable 100%. agradecer a carmen y nestor lo amables que han sido. no conocíamos esta empresa de alquiler de vehículos y hemos quedado encantados con la profesionalidad y trato de ellos. si volvemos, no dudaremos en volver a contratar con clickrent. muchísimas gracias por todo. 5 2025-01-25 01:27:48.342269+00 es v5.1 A1.01 {R1.01} V+ I3 CR-N {} {"A1.01": "Recomendable 100%. Agradecer a Carmen y Nestor lo amables que han sido. No conocíamos esta empresa d", "R1.01": "Si volvemos, no dudaremos en volver a contratar con ClickRent. Muchísimas gracias por todo."} {-0.019871006,0.019752724,0.0034626042,-0.015299847,-0.08833087,0.04995506,0.057538293,0.039308015,-0.04845308,0.033756923,0.01884984,0.018819293,-0.032282505,0.03389151,0.054509915,0.061279,0.057244435,0.04338572,-0.0038777322,0.084256224,0.036231697,-0.09083811,-0.015802452,0.097014375,-0.048813205,-0.06327204,-0.008332307,-0.0066347853,-0.08626502,-0.0034546389,-0.017183764,0.07548313,0.080280975,-0.048524346,-0.010995485,-0.019993382,0.04921593,-0.09114866,-0.047192033,0.09393544,-0.12649561,0.005484454,-0.046775762,-0.042702455,0.02579935,-0.16034172,0.077285044,0.091407076,0.029712213,0.009679182,-0.05295793,-0.017106613,0.019231245,-0.0870945,-0.02216335,0.035824295,-0.049304046,-0.021872314,0.056143116,-0.024240686,0.026717594,0.03876496,-0.07208535,0.08320032,0.00708576,-0.073797494,-0.013947182,0.04632871,-0.04860986,0.049516223,0.057895903,-0.08574426,0.018476933,0.004030052,-0.012189212,0.026986554,0.052829646,-0.02403163,-0.06613155,-0.025116533,-0.038668685,-0.0023736593,0.060111754,-0.08121165,0.016248466,0.015444045,-0.0025148478,-0.0010760847,-0.03350965,-0.041813966,-0.008542472,0.02440099,-0.030663056,-0.044084735,-0.030938597,0.015063751,-0.012588119,-0.042857125,-0.00081435015,0.035919815,0.013264019,0.059090953,0.035800014,0.027608583,-0.07587238,0.04444939,0.025526969,0.016833361,-0.00870591,0.060000945,-0.066326775,0.018644702,-0.021924956,0.022136971,-0.0227927,0.05142709,-0.02181447,-0.020704737,0.04858901,-0.043409076,0.035310067,0.0120514985,0.006578178,0.020313784,-0.011114404,-0.10004202,0.06938858,1.2799632e-32,-0.047659144,0.030279554,0.016323494,0.046900213,-0.030698419,0.043934755,-0.069506325,0.01157872,-0.0018225133,0.032098036,-0.03307479,0.08035884,0.06063605,0.0240668,0.05151502,0.08987364,-0.036289018,0.06174674,-0.010184826,0.020119324,-0.018213203,0.05511981,-0.02028545,-0.008367383,-0.018093444,0.017840756,0.05731563,-0.053661987,0.0004716167,0.059195604,-0.017689703,0.018044755,0.0019304414,-0.10754737,-0.017353455,0.05503762,-0.039781254,0.028273668,0.002012406,-0.0058684777,-0.045724556,0.008146652,0.006766114,0.007218793,-0.03416486,0.07600584,0.1654919,0.0043923343,0.06777902,0.041758187,-0.09588713,-0.060605347,-0.09985411,0.015569156,-0.03259094,0.004263351,-0.061628748,0.013192916,-0.0011426779,-0.09983936,0.014548048,-0.06173164,0.0042276676,-0.11066436,-0.092855126,-0.0037774267,0.05947346,0.022313021,0.124180995,0.035733927,-0.098369986,0.037897136,0.023848075,0.037795655,0.00044966105,0.02857447,0.054186337,0.014298019,-0.011762203,0.07837746,-0.045992345,0.019465536,0.009235061,0.036666006,0.12454387,0.04021814,0.13925119,0.004289317,-0.0214622,0.18252547,-0.018970998,0.06456499,0.03569925,-0.013183758,0.0040409686,-1.4185741e-32,-0.01370405,-0.010124581,0.031693913,0.021803258,0.03856366,0.01187369,-0.024013955,-0.029093465,-0.0021518753,-0.08174156,-0.07440468,-0.12874448,0.067030974,-0.08909741,-0.06449753,0.04324782,-0.05054306,-0.10319052,-0.09162156,-0.0060739815,0.05212771,0.038708404,-0.0016540872,-0.012252391,0.00015047823,-0.05336441,-0.06627018,-0.010986948,-0.037033636,-0.018029546,0.002994554,-0.0083263535,-0.032310355,-0.012129759,-0.07961362,0.09131315,-0.041223656,0.019453935,0.03653862,0.09871518,0.040721394,0.024217814,-0.015785672,0.024220483,-0.010232397,-0.05622644,0.0175192,-0.16895325,0.039694678,-0.08187361,0.032430716,-0.035771087,-0.042211596,0.0035522806,0.05564932,-0.044389404,-0.012509148,-0.07776103,-0.039686445,0.027882867,0.009997652,0.087216265,-0.002817086,0.004368042,0.07044396,-0.07024431,-0.023651578,0.017146984,-0.03260737,0.025564473,0.0733065,-0.013591996,-0.016304173,0.05821903,-0.041532554,-0.08497191,-0.014916862,-0.07615474,-0.018960413,0.022459242,0.013529415,-0.008462044,-0.022011979,-0.050084215,0.021534935,0.08400284,-0.02246971,-0.017886676,0.009976874,0.0038193082,-0.012652597,0.011679259,-0.015614973,-0.084572166,-0.01580697,-5.8405448e-08,0.04070125,-0.04318587,0.032421686,0.0037595758,-0.097020335,-0.01653529,-0.043910164,0.018651268,-0.061217748,0.06659316,0.05009445,-0.0051565105,-0.06965257,0.024517437,-0.050264478,-0.04153938,0.10094377,0.0781072,-0.05303334,-0.026097093,0.08072502,0.021476606,-0.03901168,-0.00044840496,-0.047739398,0.06312311,-0.0086640455,-0.022814916,-0.0037029248,-0.033835564,-0.026083125,-0.0019582054,-0.056428064,-0.054563604,-0.041454755,-0.045606658,-0.032634497,-0.01425758,-0.050735544,-0.046922006,0.10261266,-0.020120325,-0.037346315,0.048698608,-0.013150519,-0.10277864,0.041304775,-0.03540291,-0.0065673683,0.025048295,-0.030337289,-0.078963205,-0.00046638574,-0.028389115,-0.025035648,0.01796555,-0.008659433,0.04688892,-0.047524225,0.015827896,0.06308282,-0.035703003,-0.015219329,-0.044496287} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:21.674486+00 2026-01-25 01:27:51.635015+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 499 google ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE 1 t 502 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo muy bien muy agradecidos muy buena la empresa y el personal Dani, Fran y el otro chico que nos buscó en aeropuerto muy atentos y el coche una pasada totalmente nuevo lo estrenamos muchas gracias todo muy bien muy agradecidos muy buena la empresa y el personal dani, fran y el otro chico que nos buscó en aeropuerto muy atentos y el coche una pasada totalmente nuevo lo estrenamos muchas gracias 5 2025-01-25 01:27:48.342284+00 es v5.1 A1.01 {R1.01} V+ I2 CR-N {} {"A1.01": "Todo muy bien muy agradecidos muy buena la empresa y el personal Dani, Fran y el otro chico que nos ", "O1.01": "el coche una pasada totalmente nuevo lo estrenamos muchas gracias"} {0.01071224,-0.01804358,0.03195434,-0.044188716,-0.0049312552,0.015337063,0.11194624,0.035421744,-0.004277955,-0.04945141,0.059643272,0.004168311,-0.019919539,-0.0713599,0.04614399,0.002994053,0.03202725,0.021448014,-0.043005817,0.002904128,0.015174856,-0.12201134,-0.090461165,0.12427288,-0.08372548,0.016484128,-0.032544225,0.057312082,-0.044736028,-0.07616413,-0.021171965,0.104165435,0.084926255,0.006702149,-0.02827199,-0.023739807,0.043116868,-0.060500283,-0.034148555,0.026851568,-0.112976916,-0.07667958,-0.06598014,-0.040219434,0.017859187,-0.037882235,0.07241401,0.020374482,0.05448265,-0.010160156,-0.039726216,-0.015931726,0.093254514,-0.04319127,0.015171231,0.008764241,-0.01537234,0.023201864,0.09701956,0.035253808,0.0134502705,-0.027805077,-0.0062756534,0.07297109,-0.016469443,-0.035398792,-0.01576673,0.010013241,-0.044723425,-0.04876098,0.048893925,-0.11676947,-0.014847932,-0.017192066,-0.047398776,0.0711877,0.0155229885,0.001886593,0.03379622,-0.034216795,0.042168215,-0.033045456,-0.040522162,-0.026685648,0.029500093,0.03332705,-0.048231427,-0.027172498,-0.0063093808,0.024478184,-0.03565413,0.056463085,0.018045055,-0.045221414,-0.032180935,0.018551277,0.009516354,-0.04806419,-0.040467326,0.036719974,0.04409993,0.14494929,0.08652811,0.03767058,-0.09921269,0.009562134,0.04554472,-0.03844165,0.026116524,0.004422742,-0.06840971,-0.057973318,-0.048955675,-0.022561228,-0.06756572,-0.023354487,-0.060476866,-0.0017377803,-0.06594013,-0.05444463,-0.019002866,-0.066893674,-0.08787287,-0.069131024,-0.06449698,-0.060801744,0.031102983,1.2457553e-32,-0.053614385,0.067153096,-0.00023519051,0.04666774,0.007656733,0.006111776,-0.03267396,0.03136085,-0.008236259,-0.01202323,-0.06342386,0.06494704,0.009324716,0.0523042,0.039681397,-0.030081855,-0.031243796,-0.06319863,0.030765437,-0.015849866,-0.011791562,-0.033333357,-0.060422104,-0.018561639,0.05495999,0.052815054,0.0047382386,-0.034670524,-0.058496464,0.07406345,-0.020175286,0.054147813,0.017062245,0.01465832,-0.07358027,-0.05443706,-0.0040066126,0.019898053,5.1765637e-05,-0.023208579,-0.020327892,0.008402541,-0.07409542,0.03821607,-0.104219906,0.06192757,0.085704334,0.029386481,0.1434519,0.02433377,-0.107804164,-0.028904138,-0.113108516,0.0024043785,0.03878616,-0.0046573468,-0.064175844,-0.03852475,0.008977182,-0.08491748,-0.035999525,0.05637663,-0.012986873,-0.014934209,0.015628487,0.055615842,0.0155031355,0.01585216,0.099024996,0.04110544,-0.028291255,-0.022840573,-0.02450243,0.03082196,0.0743263,0.013051411,-0.025490645,-0.029969601,-0.002378391,0.035086714,-0.012591873,0.046490803,0.10919582,0.05303264,0.11620348,0.041532762,0.04283872,0.073051125,-0.02358132,0.15005033,-0.038942393,0.05069219,0.07763439,0.0293367,0.012228107,-1.3740856e-32,0.027497249,0.022876501,-0.003947309,-0.04238039,0.020128407,0.043776352,0.045692965,-0.032125212,-0.013272162,0.013350773,-0.09009621,-0.104848795,0.062121008,0.01882775,0.0017527716,0.06075172,-0.00084491447,-0.07552928,-0.104035586,-0.0517872,0.038805634,0.004320989,0.04490869,0.01598528,-0.041512616,-0.03905893,-0.039129242,0.021843005,-0.03776857,-0.022559788,0.00046825773,-0.042172465,-0.0074753645,0.07899126,-0.002556775,-0.0012230799,0.025613097,0.05643409,0.0062144026,0.015681032,-0.05190133,-0.004929696,0.043612435,-0.010380543,0.04504198,-0.022115655,-0.00118268,-0.2374085,0.01571247,-0.09564965,0.04373605,-0.09106522,-0.08657698,0.049713597,0.040715277,0.013336021,0.10594333,-0.07159608,-0.08301926,-0.08081607,0.073291324,-0.014347597,0.0065455795,0.015206021,0.051413096,-0.016740978,0.016229143,-0.047298446,0.018751828,-0.018038714,0.05459902,-0.05519044,-0.013988432,0.058430027,-0.08843724,-0.053240556,-0.042424273,0.017621724,0.0027530396,0.0023995154,0.040821716,0.018511407,0.0008424036,-0.022680702,-0.01755338,0.00023050356,-0.00037716763,0.0017951919,-0.008421867,0.017654546,0.03268156,0.030535076,-0.11151221,-0.029115656,0.021998767,-4.7805138e-08,-0.017403055,-0.08655217,0.028308755,0.007398573,0.04079517,-0.036378026,-0.024321418,0.016959418,-0.026473293,0.011940704,0.039943885,-0.032886427,-0.016968891,0.05520863,0.033663843,-0.00056353124,0.07022704,0.106806554,-0.0007827115,0.0051255724,0.04850315,0.021401988,-0.008031407,-0.001495523,0.033604722,0.007944507,-0.044699334,-0.03300583,-0.008165467,-0.026919158,-0.07468043,-0.0031393152,-0.0035313303,-0.11606465,-0.09317762,-0.033082064,0.018651664,-0.014797588,-0.08915635,-0.027370663,0.085276686,0.027714504,-0.08917285,0.025560003,0.03805523,-0.051389813,-0.042834595,-0.05324929,-0.046765607,0.05622533,0.002546778,-0.039386626,0.07615733,0.054881677,0.013115686,-0.05961774,-0.064362004,0.012870357,-0.033223145,-0.035780936,0.012667499,0.050509367,0.026256848,-0.037030388} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:13.731279+00 2026-01-25 01:27:51.639604+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1293 google ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE 1 t 1296 Soho Club unknown Отличная музыка, много посетителей, небольшой минус за интерьер отличная музыка, много посетителей, небольшой минус за интерьер 4 2015-02-01 18:34:31.336452+00 ru v5.1 E4.01 {E1.04} V± I2 CR-N {} {"E4.01": "Отличная музыка, много посетителей, небольшой минус за интерьер"} {-0.008371205,0.046777517,-0.0037347395,0.0029563513,-0.00713388,-0.0034608336,0.14618728,0.03600262,0.0016505437,-0.0147672715,0.039305545,0.05551756,0.057285115,0.0747892,-0.018151438,-0.06280223,0.00854782,0.017375596,-0.00919126,-0.0022427442,0.0012595417,-0.025911387,0.09399022,0.048878446,-0.0867368,-0.03356741,-0.023754997,0.020123743,0.054259423,0.025166443,0.015523722,0.025903419,0.067808226,-0.059824098,-0.012611641,0.088068105,-0.004972882,-0.07242986,0.0071085915,0.07249937,-0.07040058,-0.066768475,-0.0798301,0.061409824,-0.0036021336,0.056378502,-0.03194654,0.002714397,0.0022974056,-0.0033478336,-0.11294055,0.03067222,-0.027097994,0.014202455,0.06485363,-0.1362952,-0.043738138,0.018040648,-0.054879468,-0.03653264,0.009714824,-0.0035795297,0.005182784,0.014584962,-0.0180411,0.0019948352,-0.0072658635,0.07214021,-0.006283051,0.025680475,0.056915585,-0.0136707835,-0.09532391,-0.04999994,-0.099977255,-0.10156164,0.009144594,-0.03117673,-0.08373555,0.09273797,-0.014449056,-0.06484309,-0.08169351,-0.04408953,-0.010309776,-0.037249133,0.05773299,0.05386277,-0.014048242,0.055706054,0.019616136,0.090388104,0.024329279,-0.017211707,-0.013077887,-0.02417152,-0.0005702208,-0.11199421,9.987016e-05,0.0010264309,-0.044159338,-0.08701934,0.10517653,0.05968762,-0.11196561,0.00233896,-0.05598317,-0.09531068,0.023121327,0.03506265,-0.047074497,-0.049560156,-0.012817017,-0.08716868,0.0032937585,0.00803678,0.0003492368,-0.056775033,0.043180827,0.0012113983,0.039542843,-0.0013137042,-0.00832762,0.048011966,0.031963814,0.043132734,0.043644864,9.179471e-33,0.007181984,-0.049435206,-0.033997763,0.02520743,-0.08720877,0.020887392,0.018161792,-0.002503891,0.025027758,0.0010190363,0.04293273,0.0191643,0.046296883,-0.077142596,0.018374814,-0.016487679,0.052755024,-0.01738685,0.053997867,0.11916494,-0.014516887,0.027848437,-0.04282731,0.0032739714,0.0018295449,0.020801838,-0.01973606,-0.05845357,0.04985787,-0.04111558,0.026058711,0.030603968,-0.08681911,-0.012876978,-0.045094248,-0.07787376,-0.0072789104,0.08165262,0.034222443,0.048550285,0.043417722,-0.09719441,0.053071048,-0.010752129,0.11685423,0.033375774,0.009942458,0.03454186,-0.012743432,-0.014132548,-0.011016336,-0.010227083,-0.01315093,-0.0037685854,0.020444775,0.0034572014,-0.043358214,0.004077627,-0.060551226,-0.022328798,0.02883238,-0.06959318,-0.01480947,-0.022621892,-0.035450317,-0.047014154,0.03126135,0.01671859,0.062134862,0.08767493,-0.07383591,-0.0112426365,-0.032080833,0.09650935,0.020224515,0.0072348127,-0.026387902,0.02262638,0.014391811,0.05331533,0.0007319305,0.08537961,0.08666346,0.02071775,0.061030112,0.029780941,0.030513646,-0.11180274,-0.011340502,0.07427388,-0.16562463,-0.037634373,0.03380443,0.068700865,-0.009930523,-9.827538e-33,0.09819601,-0.006482151,-0.02566454,0.11143005,0.062265858,0.049436536,-0.040563773,0.06457021,0.038631056,0.13514556,-0.01919168,-0.10301771,-0.003922691,-0.018237792,0.008566184,-0.008056842,0.07673892,-0.028078059,-0.16249946,-0.048387095,-0.08496526,0.0029663807,-0.029737225,-0.02389237,-0.06528334,-0.031000637,0.07853525,-0.06996772,-0.033499405,0.025319302,-0.026491258,-0.057306163,-0.03636395,0.07660718,0.029985221,0.069042325,0.047204543,-0.043680012,-0.07206452,0.08821556,0.03861219,0.035518758,0.0815408,-0.0029430438,-0.023154413,-0.08754045,-0.05171224,-0.06406262,-0.019894883,-0.03001709,0.025420608,0.015567395,-0.029527873,-0.10437227,0.062699266,-0.03658253,0.008979828,-0.004414385,0.0588276,0.015345838,0.06671949,-0.033656046,0.04691156,-0.025067654,-0.039078653,0.025385456,-0.030316794,0.032350577,0.0363891,0.036473837,0.025777157,-0.06515602,0.10877888,0.05113245,-0.017646678,0.026254611,-0.06626396,0.088656165,0.09103585,-0.03175837,0.060144264,-0.038588777,-0.0466093,-0.042667825,-0.0886905,-0.02084403,0.009379898,-0.023388702,0.053360492,-0.07771992,-0.0016049629,0.024772733,0.041415583,0.061900627,0.0057411143,-4.072607e-08,0.02940112,-0.11880439,0.035288665,-0.0047913124,-0.025968788,-0.018940482,0.055745073,-0.0123230675,-0.046708073,0.061194126,-0.019577194,-0.050562613,0.00048639704,0.0173244,-0.11696832,0.025040582,0.014174831,-0.020244747,0.039719425,-0.015549932,0.045004755,-0.032167356,-0.036162235,-0.06794613,-0.054399308,-0.0209359,0.00082563556,0.009579423,-0.012533073,-0.032555673,0.0069691115,0.007162106,-0.011351542,-0.045980174,-0.033792242,-0.0071706492,0.015057286,0.04687509,0.0029605376,-0.06451786,0.04683442,-0.030464886,0.043423016,-0.010117379,-0.022526069,-0.0003631111,-0.044617504,-0.043784734,0.03245144,0.033467866,0.036078937,0.058471963,0.042642206,0.0075138453,0.009127798,0.07600442,0.0853083,0.017465353,-0.03146094,-0.10410624,-0.00195252,0.039060716,0.018299038,-0.01086735} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:44.765066+00 2026-01-29 18:36:00.701629+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 223 google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB 1 t 226 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up, despite my reservation being almost a month ago. Take a look at their TripAdvisor reviews for more accurate reviews then these good reviews.\n\nUpon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. Now flash to today, and they automatically took 60 euros out of my bank account. I also still have yet to receive my 200 euro deposit back. I tried to call to talk to them, and they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee (which they have taken out today, almost a month later). The more frustrating part, is that I asked them insistently to send me a copy of the contract, which they didn't send me - not in my junk mail, nowhere to be found. So now, almost 300 euros later, and the lady on the phone basically told me it's my fault.\n\nThis place sucks. Do not rent from this company, and also, take a look at their reviews in trip advisor - those are far more accurate. this place is complete shit, i'm sorry to say it - such a hassle which is somehow continuing to pop up, despite my reservation being almost a month ago. take a look at their tripadvisor reviews for more accurate reviews then these good reviews. upon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. now flash to today, and they automatically took 60 euros out of my bank account. i also still have yet to receive my 200 euro deposit back. i tried to call to talk to them, and they totally disregarded my mentioning that when i spoke with them in person, they were not going to charge me this extra fee (which they have taken out today, almost a month later). the more frustrating part, is that i asked them insistently to send me a copy of the contract, which they didn't send me - not in my junk mail, nowhere to be found. so now, almost 300 euros later, and the lady on the phone basically told me it's my fault. this place sucks. do not rent from this company, and also, take a look at their reviews in trip advisor - those are far more accurate. 1 2025-03-01 01:27:48.340479+00 en v5.1 R1.02 {} V- I3 CR-N {} {"R1.02": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop ", "V1.03": "Upon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, on"} {-0.0063191685,0.05221576,-0.031127319,-0.0027448633,0.013023139,0.016840078,0.071758054,-0.0029203992,0.045002203,-0.0035117674,0.016133064,-0.050516523,0.059930224,-0.020549817,-0.048151877,-0.047544662,0.042066086,-0.015621829,-0.055409234,0.080982335,-0.03389347,-0.01588792,-0.04599504,0.070279665,0.054092042,0.019458452,-0.004282889,0.018432349,-0.07034222,-0.02777363,0.0025145018,0.0859297,-0.046997152,-0.07713437,0.073095486,0.01727598,-0.070191234,-0.07191016,-0.050785583,-0.04002922,0.009542669,-0.013564713,0.041908987,0.016373705,0.092372485,0.08062518,0.074686244,0.091624245,-0.055668928,0.0110236555,0.054533232,-0.02183925,0.008012263,-0.049716096,-0.11176675,0.00023779599,0.06962198,0.046333034,0.037467107,-0.0290984,0.011305244,0.034078736,0.009091839,0.037641544,-0.043589883,0.05962887,-0.085525505,-0.00054540596,-0.037798684,0.060493004,0.011435541,-0.09383824,0.019420374,0.06484081,0.07586756,0.08082609,-0.0331242,0.036546856,0.04907761,-0.068504736,0.00054291735,-0.06922951,-0.021205746,-0.021386728,0.03561897,-0.07073108,0.09083108,0.011229409,0.07515008,-0.050855175,0.055137474,0.033183597,0.03895254,0.023090782,0.046574537,0.025575213,-0.009082379,0.01776322,0.0050838976,-0.012762264,0.101187125,0.05705261,-0.064693026,-0.02737628,0.0216669,0.00052606553,0.040565588,0.05890968,0.00095853733,-0.0023217127,-0.032552477,-0.042772137,0.013822707,-0.001807292,-0.013953405,0.07693529,-0.053186666,0.04600663,0.09951348,-0.040345524,0.03345786,0.065558575,-0.05651337,-0.007295712,0.036358465,0.0480367,0.038216572,-1.0711681e-33,-0.059025493,0.08303137,-0.053491298,-0.04158084,-0.01687625,-0.040506642,-0.0034724278,0.09011494,-0.07056286,0.04061235,-0.03884157,-0.042703208,0.09964878,-0.029099146,-0.10614698,0.030099154,0.08850715,-0.036219258,0.00077250804,0.063930586,0.0145958755,0.034370452,0.0504918,-0.04345857,-0.037408102,0.009110446,-0.070478044,-0.0025845675,0.040811326,-0.00043073378,-0.05742401,-0.009883978,0.08432425,0.040192872,0.017461339,0.031604543,0.020009857,-0.001450425,-0.0617054,-0.046235643,-6.543746e-05,-0.0004660096,-0.082806095,0.0044677695,0.017475497,0.039221764,0.0065050297,-0.06405941,-0.060093302,0.017619763,-0.112414844,-0.01926415,-0.045082647,0.1575536,-0.057312444,-0.026750008,-0.009755065,0.029531108,0.03144011,-0.053862415,0.050806295,0.050413284,-0.03752204,-0.0051162,0.015914457,-0.09899363,0.019086672,0.027405981,-0.055445023,-0.094993204,0.019551734,0.053673558,0.09698744,0.009826137,-0.047421243,-0.0056369663,-0.009541381,0.009228212,-0.04885295,-0.009402765,-0.006806407,-0.038151596,0.0005158425,-0.01634891,-0.034834124,-0.007031081,0.05352794,-0.016511718,0.014570108,0.013219562,-0.07551116,-0.033650175,-0.015800422,-0.018126432,0.04869,-1.621228e-33,-0.0038496177,-0.0017073039,0.019160576,-0.01091874,-0.04279944,0.019221881,-0.10578154,0.026040368,0.018849941,-0.010978378,-0.04729656,-0.04784596,0.025285423,-0.06478964,-0.010783881,-0.05842056,0.010562521,-0.0457393,-0.0054277247,-0.012290025,0.008031105,-0.012434472,0.034449592,0.056965955,-0.057214197,0.06384446,0.07390294,0.0064557823,-0.030911397,0.03385054,-0.026278215,0.024076335,-0.03508093,0.057735126,0.025527706,-0.029196024,0.011938187,0.07228459,-0.06297663,-0.0041120416,-0.07050486,-0.0026258496,-0.07334588,-0.06572466,0.083680496,-0.08997848,0.055420417,-0.06646397,0.027717961,0.028071618,0.035952047,-0.07323394,0.062128495,0.044603046,-0.05805558,-0.016819378,0.06752722,-0.045438215,0.06843738,-0.007341712,0.04315392,0.02055988,-0.015575026,-0.051134694,0.048290454,0.0002158033,-0.00453916,-0.021143226,0.12541412,0.040236574,-0.042927064,0.006097196,-0.02252043,0.01888914,0.091445334,0.053599242,0.03297285,-0.059554115,0.008558251,-0.04155905,0.10873307,-0.029340189,0.08876662,0.013245772,0.038354583,-0.025478333,-0.03697971,-0.048076812,0.006139464,-0.0064076483,0.026182033,-0.015707102,0.008589282,0.044944454,-0.036455616,-5.165876e-08,-0.0149113955,0.0026758516,-0.0045530805,-0.01111554,0.049394734,-0.09773193,-0.020968607,0.11005905,-0.10347129,-0.065029114,-0.015105721,-0.0620634,0.029484034,-0.03829632,-0.037034594,-0.011070194,0.0018453833,-0.02840055,-0.04427307,0.07706265,-0.04417689,0.073131435,-0.059835307,-0.16095845,-0.012201509,-0.09967629,0.036711697,0.11551386,0.051880307,-0.10577674,-0.08366781,-0.013628601,0.049998555,-0.053199258,-0.11163488,-0.055656172,0.021685874,-0.000313137,-0.02530994,0.01401875,-0.061155632,-0.017403588,0.012974597,-0.019847969,0.0601673,0.0009357457,-0.042438727,-0.042612012,0.06241848,-0.069356866,-0.067837015,-0.0009387008,0.02680577,0.16787463,-0.000469558,-0.08716674,-0.04468801,0.03137819,-0.038145274,0.058834862,-0.1095541,-0.06869753,-0.029512798,0.006325882} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:45:36.287687+00 2026-01-25 01:27:50.104681+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 224 google Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB 1 t 227 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Impossible to find the meeting point. No one was there, no sign, customer service with automated voice message.. We had to walk 30 minutes on bad road with luggage to find the office. Don't rent anything from here. impossible to find the meeting point. no one was there, no sign, customer service with automated voice message.. we had to walk 30 minutes on bad road with luggage to find the office. don't rent anything from here. 1 2025-12-26 01:27:48.340496+00 en v5.1 A1.04 {} V- I3 CR-N {} {"A1.04": "Impossible to find the meeting point. No one was there, no sign, customer service with automated voi", "R1.01": "Don't rent anything from here."} {-0.01218281,-0.04223645,0.022291735,0.051069185,-0.04981266,0.043096393,-0.0058246353,-0.044966787,0.07445863,-0.062389057,0.0067704264,0.00016093907,-0.014617207,-0.02296923,0.056820866,-0.019820388,-0.0016181389,-0.06796922,0.0813236,0.02043284,0.014794294,0.048723686,-0.017224858,-0.015262043,0.058160033,-0.009950065,-0.0040889108,0.033717282,0.017400675,0.026537485,0.021716984,0.043927975,0.123226896,0.02313064,0.15610361,0.017931476,0.087632924,0.013382481,0.046860635,-0.02252392,-0.00027306168,0.037290234,0.034306657,-0.021215672,-0.013816568,-0.0336918,-0.028325854,0.053965393,0.06075093,-0.011441126,0.019700946,0.0013971849,-0.013865776,0.00056309736,-0.018581584,0.042776845,0.043831617,0.011677778,-0.0005256286,-0.043919146,0.03272854,-0.030702306,-0.06424958,0.035034664,-0.062183253,0.027442863,-0.026766216,-0.06591005,0.051753037,-0.111093886,-0.028500075,-0.022657955,-0.0077125663,-0.08456489,0.07704758,0.05346839,0.035525627,-0.0053781155,0.065888904,-0.008441365,-0.07164637,0.012375128,0.013259348,0.10045876,0.0005997136,-0.033716727,-0.010951954,0.05930657,0.022003405,-0.027014643,-0.072436236,0.05211622,-0.121185474,-0.008500072,-0.022355521,-0.009124464,-0.024192134,0.07550428,0.024901003,0.065728664,-0.01099808,0.08172489,-0.0081968075,-0.08104277,-0.06470503,0.009144589,-0.007691209,0.0030732555,0.04028833,0.03468735,-0.04094568,-0.083093464,0.039012246,-0.054117683,0.022888638,0.03468084,-0.04672187,-0.015578904,0.04347291,-0.06879936,-0.00563075,0.007388724,0.031084267,-0.026341354,-0.06280749,0.05021923,0.050204687,-7.7767455e-34,-0.016360663,0.057898775,0.04570132,0.0087391315,0.082550496,0.0214982,-0.0735047,0.014071628,0.022028789,0.026823277,0.04788086,-0.0076856376,0.087822534,-0.08960033,-0.039992806,0.0090005165,0.06428032,0.00751886,-0.083881035,-0.019969521,0.028335573,-0.06380544,0.019631358,0.021480618,0.047960628,0.04406168,6.867909e-05,0.027941415,0.13666163,0.007695642,-0.09577031,0.015935576,0.049791053,-0.011660343,0.036634192,0.024313327,-0.046965875,-0.06155209,-0.065733284,-0.029343143,0.012701576,0.02654497,-0.014917202,-0.020430274,0.013895546,0.05211502,0.017398292,0.052292027,0.124792054,0.05727643,-0.065120205,0.025571147,-0.14681602,0.04489499,-0.04813424,-0.0072172163,-0.026849307,-0.023116188,0.06973665,-0.05144284,0.031504102,0.06713966,0.029708717,-0.0064939903,-0.041722093,-0.19825362,-0.08469535,-0.101730555,0.098236024,0.017724471,0.106254034,-0.0046277395,0.047975257,0.011521413,-0.050233863,0.0032474229,-0.048827615,0.062585056,0.053581376,0.022124786,0.031741858,-0.042341523,0.040761176,0.016615177,0.051462404,-0.04440759,0.016528338,-0.01608912,-0.09094969,0.009962916,-0.06412003,0.009330073,-0.054866303,0.06217006,-0.011856983,-1.7284893e-33,0.03772773,-0.073715046,-0.0052211736,-0.10003859,-0.026302984,0.019235108,0.008880256,-0.06846491,0.048780847,0.06370499,-0.02561675,-0.0014662881,0.07899927,0.02361789,0.052943677,0.10489302,0.12718126,-0.05913835,-0.0016629224,-0.0046136207,0.03598297,-0.017592391,0.0032358025,-0.007912925,-0.017739419,-0.04638608,0.027021466,-0.022638356,-0.036122262,0.014396004,-0.096370965,0.067837134,-0.047218252,0.13074438,-0.034174122,0.0625758,0.009694238,0.022687966,-0.028221995,-0.030142305,0.039777994,-0.001144747,-0.054134585,-0.0011329001,0.061891492,-0.037627235,-0.009861982,-0.0077316975,-0.06379525,-0.044310708,-0.03123721,-0.021091145,-0.05151351,-0.033702515,-0.07814547,0.11575565,-0.0012534136,-0.067007296,0.08468941,-0.028456181,-0.011344245,-0.008330197,-0.04456982,0.029949736,0.03980501,0.02598478,0.009021901,-0.002050778,0.013616227,0.033895526,-0.016576758,-0.04865609,-0.042791035,-0.055320047,-0.014873036,0.05467837,-0.019624263,-0.0059893066,-0.089589976,-0.13999027,0.049404405,0.063971415,-0.07245718,-0.040872645,0.007154586,0.04178118,0.016705418,0.0169002,-0.025196679,0.07521854,-0.07051137,0.0049616965,-0.057604145,-0.021162888,-0.04132591,-3.693158e-08,-0.09757816,0.083114825,0.023555307,-0.034876604,0.029184388,-0.0824772,0.05827995,0.0707256,0.011639646,0.10700565,-0.03049859,-0.059998922,-0.06942247,0.059637826,0.00422162,-0.028998373,-0.0023736244,-0.0070601623,-0.052539483,-0.033709235,-0.053702645,0.0109190075,-0.030237038,0.008510057,0.008654042,0.0122456625,-0.005266537,0.10668303,0.008194747,-0.09233324,-0.049907032,0.06596174,-0.10471569,-0.022937054,-0.017646054,-0.009060409,-0.07152426,0.009180089,-0.013214875,0.04974364,-0.033919066,0.024203615,-0.023600312,-0.025885917,0.010519109,0.09284254,-0.040373303,-0.034990344,0.03270795,-0.06236994,-0.06407812,0.006317069,-0.04065035,-0.02251282,-0.052786253,0.014623911,-0.014442247,-0.020870285,0.009651157,-0.015416506,-0.05613902,0.009598715,-0.13234434,0.004874108} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:45:46.40787+00 2026-01-25 01:27:50.108799+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1721 google ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB 1 t 1724 Go Karts Mar Menor unknown Muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien y lo encontré seguro y muy profesional me gusto mucho.\nMe mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia. muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien y lo encontré seguro y muy profesional me gusto mucho. me mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia. 5 2025-04-05 00:52:39.833374+00 es v5.1 V1.01 {V4.01} V+ I3 CR-N {} {"E4.01": "lo encontré seguro y muy profesional me gusto mucho", "P1.03": "Me mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia", "V1.01": "Muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien"} {0.03958853,-0.02941456,0.027820293,-0.010290578,-0.00086356536,-0.0128127085,0.045255933,0.044043183,-0.010862932,0.048091482,0.016147248,-0.043171518,-0.0076278723,-0.014895242,0.0021557529,-0.030919649,0.0031665089,-0.019116316,-0.02140785,0.017548671,0.060021456,-0.09407873,-0.04804075,0.08720573,-0.019697925,-0.080396175,-0.018950677,-0.011967981,-0.027781254,-0.022402752,-0.0049044136,0.101672046,0.07895533,0.02304716,-0.01970186,0.00355907,0.058694743,-0.06141527,-0.08122787,0.051751956,-0.13279358,-0.01127985,0.015765347,-0.101460874,-0.026641395,-0.066584446,0.109467514,0.114576615,0.040994577,-0.046412513,-0.04926101,0.041984666,-0.04608483,-0.004383754,0.037843354,0.0697155,0.025037888,-0.07454799,0.0519597,0.009918285,-0.06485612,0.022864217,-0.10418161,0.0060421578,0.026364641,-0.0018854889,0.015356608,0.04300995,-0.0525998,0.051393446,0.08487515,-0.10646184,0.06955173,-0.017911442,-0.006171722,0.070858076,0.035522003,-0.0024926367,0.01431644,0.009811481,0.015744532,-0.02218279,0.021502914,-0.049927335,0.03128043,-0.009317105,0.012830584,-0.044500813,0.07226091,-0.022368804,0.015915215,0.100913055,-0.06563722,0.001524149,-0.053024136,0.0029980245,0.02863459,-0.045103204,-0.026613748,0.08602746,0.06549424,0.072574176,0.13064478,0.033876255,-0.018000813,0.013400255,0.09526801,0.03207278,0.00644088,0.026931982,-0.012970223,-0.027852831,-0.12581868,-0.0055509345,-0.07228293,-0.02106089,0.027575077,-0.0268624,-0.084472105,-0.07425051,-0.014999223,0.029728238,-0.06441481,-0.043717828,-0.047269974,-0.052741412,0.012652176,1.3549582e-32,0.0104562,-0.05698766,0.020465132,0.011381535,-0.013182986,0.034709718,0.0061800284,0.0664304,-0.047459487,-0.039179362,0.06486274,0.054757714,-0.0019307293,0.005880101,0.029007332,-0.0008559377,0.010599418,0.008731512,0.048238397,0.009918374,0.00075727445,-0.024660604,0.01218222,-0.02011988,-0.02201544,0.029448804,-0.035575114,-0.038047016,-0.010801244,0.058452047,-0.0047047823,0.008373083,0.0418301,-0.11641491,-0.016704388,-0.021821508,0.051745344,0.0030464649,-0.019589266,-0.041173644,0.014038385,-0.0043008067,0.04542772,-0.04546107,-0.035815716,0.065633535,0.1213659,0.009919726,0.028526139,0.014109488,-0.03786155,-0.07928104,-0.106444,0.061825775,-0.026907088,-0.0049344725,-0.009194738,-0.04763246,0.004793771,-0.09743385,-0.041508242,-0.021234073,0.019022815,-0.06257458,-0.07904418,0.0046597794,0.039429333,0.05525187,0.19285727,0.02139299,-0.12356426,0.023942383,0.011299738,0.015018276,0.09395461,0.092937395,0.023783574,-0.018812342,0.040275253,0.04162027,-0.028917639,0.02290877,0.021064105,0.059255216,0.15188046,0.116358906,0.044502895,0.034682333,-0.018516188,0.09012956,0.02286734,0.05588383,0.06324483,-0.01859301,0.023229748,-1.3458079e-32,0.004034496,-0.049424455,0.039503478,0.0007189959,0.0063141817,-0.006587439,-0.03177105,0.008907206,-0.03241584,-0.11795912,-0.030313497,-0.16949598,0.12646839,0.03321329,-0.024469342,-0.0028780906,-0.0035595717,-0.108158596,0.002915207,-0.052468363,-0.012212913,0.028442137,0.09064923,0.0010182546,-0.007830653,-0.061483968,-0.03454574,0.042493016,-0.03849883,-0.019524751,0.042559717,-0.009702426,-0.058129437,0.027224548,-0.01660689,-0.004640392,-0.049685676,-0.017111065,-0.012986088,0.06681013,0.008084453,0.038807776,-0.032470748,-0.0063327374,0.016575288,-0.03863318,0.022873957,-0.15035911,0.03749509,-0.0464321,0.05839856,-0.010760311,-0.09332707,0.0026080708,-0.019797666,-0.02776193,0.02976148,-0.03340874,-0.10267806,-0.048552,-0.007419694,-0.0115824565,-0.06290708,0.022156326,0.1284182,0.031047393,0.03596991,0.052057013,-0.004166367,-0.034967214,0.025593571,-0.009209858,-0.022165535,0.006292658,-0.034309622,-0.008990966,-0.03153736,-0.08778563,0.0759145,0.10280386,-0.02222906,-0.0067650313,-0.017885452,-0.04403429,-0.027345583,-0.04003727,-0.039510828,-0.022391908,0.04518325,0.023891475,-0.008136238,0.024273813,-0.0034854875,-0.12070348,0.016884524,-4.5850765e-08,-0.023094336,-0.06076071,0.030953554,0.0068333778,0.038572624,-0.03275726,-0.07902683,0.054579403,0.0009911834,0.030071609,0.029076466,0.0047196657,-0.060704622,-0.033147898,-0.04843421,0.008304666,0.10289938,0.06663683,-0.012188684,-0.09228571,-0.015630694,0.0049939957,0.0040292847,0.04350489,-0.04780532,0.025446314,-0.018402196,0.018045703,-0.010444544,0.0021632768,-0.04399411,-0.020706818,-0.0153373,-0.066176675,-0.022160921,-0.060371038,-0.03131076,-0.05200657,-0.06872816,0.059624653,0.101657644,-0.016636577,-0.091923214,0.033496056,-0.071726926,-0.0070354035,-0.004331374,0.024023117,-0.00012258811,-0.014065741,-0.012621021,0.004821194,0.0221144,0.02562833,-0.035503145,-0.039862975,-0.028896607,-0.009380656,-0.06868332,0.06659143,0.024493251,0.04743737,0.006513925,-0.0882488} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:14.826355+00 2026-01-30 02:01:10.466832+00 22c747a6-b913-4ae4-82bc-14b4195008b6 252 google ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB 1 t 255 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excellent service!\n\nWhen we arrived we got a bit lost and couldn’t find “el punto de encuentro”. If that’s your case, go to the uppermost floor and exit on gate number 2. Right opposite to gate 2 there’s a parking. Cross the street and enter the parking. Look right and walk a bit until you see the Punto the encuentro. There you’ll find clickrent team and their shuttle. excellent service! when we arrived we got a bit lost and couldn’t find “el punto de encuentro”. if that’s your case, go to the uppermost floor and exit on gate number 2. right opposite to gate 2 there’s a parking. cross the street and enter the parking. look right and walk a bit until you see the punto the encuentro. there you’ll find clickrent team and their shuttle. 5 2025-01-25 01:27:48.34064+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"A4.01": "When we arrived we got a bit lost and couldn’t find “el punto de encuentro”. If that’s your case, go", "P1.01": "Excellent service!"} {0.04950074,-0.06328321,-0.02377881,-0.04204218,-0.021918805,-0.016413035,-0.016802035,-0.018845145,0.019743757,0.009571767,0.04554594,0.009566886,-0.04407698,-0.021656439,0.076393366,-0.020393532,0.023487275,-0.019867122,-0.013252073,-0.091682166,0.040102236,-0.11080108,-0.07837249,0.016766435,-0.099444546,-0.02088864,-0.043950383,0.074957356,-0.06212087,-0.11933811,-0.06805613,0.031212062,0.017489862,-0.008287227,0.040271085,0.056803923,0.034496825,-0.07729021,0.08302604,-0.033038676,-0.03577213,-0.007186712,-0.011024062,0.00635066,0.006832194,-0.026735248,-0.0013196827,0.015647562,0.21196297,-0.02133528,0.05484629,0.02604812,0.10584128,-0.0039008025,-0.043412797,0.04673246,0.00054255343,0.0027375773,0.07126401,0.037949838,0.10404301,0.016080363,-0.04505382,0.079496264,-0.101393595,-0.09525362,0.0061654,-0.04283523,0.00955215,-0.07229072,0.03436929,-0.03553615,0.009260875,0.001902277,0.04106219,0.0783417,0.028984135,0.015228836,-0.010470562,-0.09687521,-0.0112582985,-0.053565357,-0.036272746,0.08039209,0.015302358,0.027724592,0.018884515,-0.00020257081,0.06578935,0.0630736,-0.030280367,-0.032821447,-0.055219017,-0.014669096,-0.004895006,0.041271605,-0.03667625,-0.027126329,-0.09018973,0.061598882,0.0308323,0.089252084,-0.0047079585,-0.04027235,0.009207567,0.0049012587,0.034439307,0.054920197,0.027277492,0.0033246558,-0.0029168306,-0.028385084,0.06342452,0.056158777,-0.11682642,0.008034303,-0.017703963,0.008021259,-0.0006866264,-0.058508087,0.07295213,-0.04887753,-0.020302977,-0.00046048334,-0.062346898,-0.009590939,0.08395692,-4.5016433e-34,-0.0009810702,2.8965505e-05,0.00341367,0.054238472,0.073574044,0.011781305,-0.050729994,0.060070608,-0.0921944,0.021252874,-0.049258713,-0.051700268,0.04676033,-0.064853385,0.0009832559,0.011448124,-0.06416675,-0.040038966,-0.014263247,-0.02146636,-0.012735791,-0.043506097,-0.01728179,-0.046922423,0.018044053,0.07476295,-0.06763693,-0.06573146,0.0755676,0.03960032,-0.02815351,0.038635314,-0.0015841146,0.07491109,0.04561172,-0.036974385,0.07109513,-0.028488802,-0.07277709,-0.068546355,0.007050859,-0.0079652015,-0.06617305,0.0017777149,-0.044015303,-0.022049015,0.10037905,-0.040573925,0.1759318,-0.05661226,-0.01726113,-0.004082741,-0.035522666,-0.0762275,0.047801666,-0.033576123,0.033414286,0.07898357,0.024689315,-0.02183951,0.039705705,0.10501777,0.020530056,-0.028497322,0.023902427,-0.085651055,-0.0791982,0.0037467994,0.07845952,-0.056492858,-0.0025135723,-0.029591195,0.06939949,0.04341883,0.020724906,0.022165915,-0.048642386,0.002267833,0.03592033,0.016347993,0.017206782,-0.035939753,-0.0025136615,0.08336321,0.0913015,0.059132546,0.019739,0.055428635,0.0012384357,0.07508616,-0.10553872,0.104016304,-0.0059984904,-0.018078132,0.03991049,-1.7744905e-33,0.017024342,0.005628418,0.03183187,-0.092427835,-0.012803267,0.052293267,-0.04425712,0.0041595045,0.026951298,0.0797587,-0.062373642,0.044963416,0.114863805,-0.066466294,-0.044005264,0.01077457,0.0066045467,-0.006742123,-0.08875864,0.008070512,-0.019607758,0.054471783,0.03579411,0.004679677,-0.017433878,0.0015446696,0.07888027,0.1089074,-0.11005017,-0.013945275,-0.015450368,-0.060558002,-0.05236004,0.02977753,-0.05200674,0.015578414,0.029518278,0.020243082,-0.06063526,-0.0050611217,-0.052328303,-0.026672587,0.014939702,-0.0044266665,0.017182626,-0.03588725,0.05378314,-0.0033692038,-0.06648961,0.05930193,0.04453562,-0.045223255,-0.09720316,0.027812611,0.045322318,0.027134942,0.009072225,-0.027769743,0.011675825,-0.027285773,-0.00574176,-0.013254345,-0.042177934,0.07964053,0.025633655,-0.018138357,0.0097574,0.04598383,-0.088353254,0.03672971,-0.046774145,0.0377869,-0.031827606,0.011098338,-0.012936753,0.046218883,-0.015444124,-0.035031695,0.023792937,-0.008229175,0.065082915,-0.023363367,-0.05558285,-0.012031132,0.046713583,0.043180354,0.026208948,0.060534507,0.029843723,-0.032155696,-0.02036948,0.020551426,-0.002822625,-0.034637675,0.024503155,-4.514689e-08,-1.4782086e-05,0.035341784,0.013301949,0.0054113558,0.018367264,-0.07764879,-0.030744746,0.015356252,-0.023858164,-0.0730987,-0.0053781806,-0.0064594448,-0.016735094,0.059054453,0.010702971,0.01598846,-0.003845618,0.070156395,-0.020682726,0.006184258,-0.057335082,-0.06460855,0.012871526,0.004187197,0.028971318,-0.016799776,-0.041403625,-0.08991928,0.0577954,-0.102026366,-0.031995744,-0.02728087,0.019843057,-0.0479344,0.004374241,0.060943138,-0.095255606,-0.01165337,0.0017055991,0.008508777,0.047956575,-0.017568504,-0.06544488,0.01817521,-0.045428943,0.108304605,-0.016390363,0.0657152,-0.07258583,-0.03508046,0.010575017,-0.119771674,0.04162543,0.023919633,0.07922045,0.014996412,-0.056741353,-0.028493453,0.06293618,0.107027195,-0.026685677,0.10835854,-0.13719037,-0.039918743} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:53.78737+00 2026-01-25 01:27:50.650508+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 494 google ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE 1 t 497 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del aeropuerto a su oficina y las personas que te atienden en ella. Gracias Isaac y gracias Antonio , son muy amables 🙌🏼😊.\nTambién te regresan al aeropuerto cuando entregas el coche .\nBuen trato, buenos precios . muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del aeropuerto a su oficina y las personas que te atienden en ella. gracias isaac y gracias antonio , son muy amables 🙌🏼😊. también te regresan al aeropuerto cuando entregas el coche . buen trato, buenos precios . 5 2025-01-25 01:27:48.342237+00 es v5.1 A1.01 {J1.01,P1.01} V+ I2 CR-N {} {"A1.01": "Muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del ae", "J1.01": "También te regresan al aeropuerto cuando entregas el coche .", "P1.01": "Buen trato, buenos precios ."} {0.04225615,0.07142603,-0.008715661,-0.05519051,-0.079447076,-0.0040900335,0.1344047,-0.006417645,-0.066598065,-0.015014342,0.094750576,-0.024812076,-0.07634988,-0.09930885,-0.005547638,0.03970874,0.027767176,0.01075714,-0.029922327,-0.02153907,0.06094635,-0.061262984,-0.055555034,0.14215614,-0.06294809,0.025026988,-0.047359984,0.07136609,-0.011827572,-0.054060176,-0.046909947,-0.000102998856,0.059642274,0.050247274,-0.039951533,-0.023952318,0.02285675,-0.038275816,0.002902408,0.054920167,-0.09702992,0.0056939065,-0.034990206,0.013947663,-0.024075221,-0.059817016,0.04061612,0.05577687,0.0019891362,0.021856358,-0.07379626,-0.0064411126,0.05945871,-0.017408997,-0.0064615207,0.07336635,0.0024206643,-0.041392487,0.07447223,-0.016470827,-0.004531926,0.0027703887,-0.0194153,0.039436728,0.044638153,-0.049776852,-0.046943266,0.007821314,0.02751999,-0.011740272,0.041001633,-0.117209285,0.0076178783,0.033530787,-0.10840161,0.1017235,0.001992704,-0.035601676,0.02396415,0.007981331,0.098969184,-0.04463439,-0.036192928,-0.036496665,0.031954736,-0.020021712,-0.03561215,-0.033510387,0.028920418,0.009097002,-0.05129603,0.07719987,0.035892934,-0.040584557,-0.02954424,0.023566749,0.03763275,-0.026290778,-0.035410654,0.0062519973,0.051300213,0.055308495,0.083460614,0.105569884,-0.07499208,-0.009418542,0.07615211,-0.053807054,0.030526573,0.011440462,-0.11446547,-0.03869794,-0.011331561,-0.07736618,0.0029458702,0.033046067,-0.03663278,-0.020150019,-0.03299765,-0.077702574,0.041554835,0.02121082,-0.031045273,-0.024951946,0.006873734,-0.054620534,0.028577575,1.2691269e-32,-0.0078236675,0.02077843,0.023516485,0.084297694,0.0114031695,0.035282046,-0.05591735,0.013408607,-0.022384986,0.035223458,-0.07710006,0.031299967,-0.015316527,0.01285081,0.09995342,-0.024619367,-0.047481056,-0.03632824,0.030037867,-0.013866849,-0.08349854,-0.045263164,-0.089214906,0.028466718,0.02092232,0.035289012,-0.023098577,-0.04247266,-0.025961736,0.06564687,0.04084608,0.111414924,-0.0383347,-0.021418264,-0.08645997,-0.060960893,-0.04606181,0.03396912,0.0014506391,0.009475825,-0.035992403,-0.016433464,-0.009420303,0.018886106,-0.02551438,-0.04755663,-0.0055933045,0.021270314,0.07019989,-4.1282095e-05,-0.066286035,-0.015696822,-0.08999188,0.019142466,0.034082126,0.009802506,-0.02536454,0.009884851,-0.011812064,-0.037036624,0.00025019734,0.06605335,0.0090389205,-0.0024081797,-0.04061151,0.0076849815,0.020647204,0.048864447,0.10364331,0.08663754,-0.035525918,-0.018751511,-0.03649869,0.018791206,-0.013304415,0.015768996,-0.044043254,-0.053307194,-0.06210351,0.06370967,-0.02442321,-0.031323448,0.09174073,-0.008413715,0.06283241,-0.0015106098,0.0073428424,0.014869671,-0.0077476786,0.08079911,-0.038056664,0.08312906,0.057640467,0.029774534,0.007052455,-1.3443792e-32,0.015901338,0.020666389,-0.040729553,-0.04845678,-0.040334728,0.06335018,-0.0052930703,-0.113836385,-0.051293876,-0.0023069214,-0.07645738,-0.07311419,0.05805928,-0.040090624,0.0406595,0.08063883,-0.027566543,-0.08157895,-0.08467373,-0.08947696,0.08820723,-0.076196685,0.04628107,0.01857111,-0.038666245,-0.056706645,0.046030186,-0.02016827,0.0275252,0.024627708,0.023707673,0.028963841,0.054247543,0.12730084,-0.007564206,0.035412088,0.026379624,0.05608454,0.014973995,-0.015214159,-0.020289715,-0.016025478,0.076628454,0.0010752168,0.0573168,0.004528545,-0.0011543077,-0.17235029,-0.025418226,-0.05525344,0.0615977,-0.10714946,-0.07685415,-0.005749697,0.074512064,0.058838267,0.027286332,-0.10929519,-0.07572989,-0.06625189,0.06197047,0.03525074,-0.053951982,-0.018088449,0.019543512,-0.03327685,-0.062400144,0.034460265,-0.00082655024,0.016934048,-0.0013261327,-0.045718927,-0.03470272,0.03243885,-0.06395467,0.0075428863,-0.033074755,0.056276545,-0.04344426,-0.015134745,-0.010188761,0.09293057,0.082992405,-0.03337267,-0.010935352,-0.0028982363,-0.0439057,-0.025664467,-0.018598877,0.096599594,0.01032547,0.052119214,-0.04547582,-0.16357556,-0.038191848,-5.4053785e-08,-0.014073489,-0.047490403,0.07483532,0.023307838,0.031154403,0.0661475,-0.011032382,-0.011469116,0.022438334,0.03575814,-0.0333867,-0.036251623,0.030584047,0.11531608,0.030018026,0.028939763,-0.013923752,0.027968692,0.001471052,-0.057856373,0.013035441,-0.0074625746,-0.023284044,0.046458807,-0.041168343,0.036472246,-0.1051621,-0.009488735,0.01687833,0.06619879,-0.048441272,0.016589824,0.019878112,-0.08915025,-0.009721523,0.01755771,0.0048746145,-0.050925847,-0.14266002,-0.06140654,0.040598404,0.024675751,-0.053241167,0.00043741014,0.058779377,-0.09190555,-0.003897599,0.0018844705,-0.031163119,0.05583782,0.017484954,-0.04723305,0.08804578,0.07529999,0.033445526,-0.029943647,-0.032750584,-0.016957182,0.016446885,-0.044318475,0.06281491,0.082444705,-0.036270835,-0.02219023} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:51.046871+00 2026-01-25 01:27:51.624535+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1396 google ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE 1 t 1399 Go Karts Mar Menor unknown Watched our son and grandchildren race each other. You can ride with your kids or for the more experienced you can go around pretty fast and obviously slower for children. Really enjoyable for everyone. watched our son and grandchildren race each other. you can ride with your kids or for the more experienced you can go around pretty fast and obviously slower for children. really enjoyable for everyone. 5 2024-01-31 01:52:39.833374+00 en v5.1 O4.03 {V4.03} V+ I2 CR-N {} {"O4.03": "Watched our son and grandchildren race each other. You can ride with your kids or for the more exper"} {0.013762781,0.030230882,0.017925963,0.027720917,-0.09447974,0.04828051,-0.04744952,-0.050300777,-0.03325415,-0.00907127,-0.006768531,-0.010235193,-0.0010961405,0.04397374,-0.04832063,-0.026150102,0.16480422,0.0061604683,-0.00930246,-0.029056301,-0.008145219,-0.03581916,0.02618764,0.0652525,-0.06931221,0.091844104,-0.1034415,0.023612961,0.0042462526,-0.010716349,-0.027436268,-0.016461765,0.04794361,-0.0057152505,-0.13927582,0.014473577,0.051136304,-0.038992178,-0.045058742,0.007193924,0.0073570674,0.0031205162,0.011896386,-0.0027442048,0.04164755,0.055368796,0.056222696,-0.06830145,0.029532706,0.03508681,0.03532501,-0.018203534,0.12207414,-0.047160935,-0.020063229,0.029965522,-0.10012919,-0.038232025,0.011164515,-0.014706518,-0.015269043,0.00741751,-0.040102497,0.035709627,-0.09954071,-0.10218816,-0.051287245,-0.015098213,0.06823099,-0.07306618,-0.003181847,0.015057762,0.06000749,0.0054225377,-0.02267486,0.02655384,0.06073333,-0.0784695,-0.0832347,-0.093741834,0.015102956,-0.06670097,0.049416047,-0.0059961267,0.09727045,-0.034994967,0.0361452,0.053096,-0.02462585,0.013049678,-0.018408693,0.08817478,0.008171489,-0.05307463,-0.016128594,0.047817443,-0.029395862,0.016764136,-0.023348615,0.0049311207,0.03514244,0.032352734,0.05040509,0.07666879,-0.052178327,0.048824612,0.032736853,0.020570364,0.010921411,0.022345709,0.02724088,-0.008342855,0.0832085,-0.0005788624,-0.09448245,-0.0015656684,-0.039190657,0.03498752,-0.011970427,0.071681194,-0.063694894,-0.026597593,0.030890875,0.027945831,0.058251686,-0.1100186,0.096055865,1.2002411e-34,-0.09228516,-0.058846403,0.01516546,0.00584056,-0.03817637,0.052346747,-0.030152215,-0.097855955,-0.09379078,-0.0036727139,0.030037457,0.005600248,0.021124607,-0.032355376,0.08209337,-0.001570082,-0.13150543,-0.054834977,-0.080248035,0.035977215,0.0105903745,0.018474648,-0.036644574,0.03315961,0.032953724,0.0153951,0.05718147,-0.05692141,0.106812336,0.039750822,-0.11570278,0.0016048744,-0.11778851,0.013330518,-0.0042854045,0.013103988,0.03849571,-0.024705976,-0.058262866,0.10563513,0.002056066,-0.11704551,-0.072761945,-0.031584747,-0.08122731,0.057666488,0.07123621,0.09804751,-0.09400219,0.033521697,-0.05337946,-0.034930617,-0.054474473,-0.05711748,-0.017213734,0.10174744,0.07627353,0.029573416,-0.10830288,0.044437476,0.013116129,0.010201071,-0.012246096,-0.016649205,-0.1100042,0.016633766,0.04250621,0.024334557,0.03667838,-0.060100876,-0.004163271,-0.04567078,-0.03111352,-0.032110106,0.083017915,-0.024762996,0.035117898,-0.0027608701,-0.0064897393,0.006410373,-0.032651056,0.05582794,-0.031133318,-0.019457227,0.09207444,-0.038698405,-0.06559221,-0.018036151,-0.012709633,0.002147597,-0.036764044,-0.05226672,0.047686443,0.059824523,-0.025667856,-1.5414234e-33,-0.0049331137,-0.013579332,0.0807515,0.029659953,0.048805255,-0.034894034,0.04405284,-0.026303845,0.0020303167,0.04049292,-0.055615675,-0.032154478,0.090546615,0.020272588,-0.032330416,-0.07426254,0.05057493,0.031170566,0.03553533,-0.037415046,0.06001974,0.012100796,-0.00562009,-0.04169982,0.036792755,0.007965563,0.009103821,0.046229336,-0.030374488,0.050565675,-0.013083944,0.059644084,0.03884642,-0.01463477,-0.032320384,0.12049534,0.012709394,0.011571837,-0.06139915,-0.040983755,-0.011930218,-0.033558667,0.0047775633,0.010773242,0.012369266,0.0660411,-0.0083530955,0.04070476,-0.09695265,0.01522414,0.013168835,0.04120844,-0.064473145,-0.015444761,0.026667662,-0.037843745,0.06207472,-0.061164595,-0.01647462,-0.028719747,-0.0031478044,-0.006973472,-0.08169043,0.1037065,-0.0048898305,-0.053649995,-0.043852948,-0.011615538,-0.044571623,0.015547063,-0.13564046,0.01393336,-0.07103096,-0.0047516436,-0.014874906,-0.03848608,0.025666965,0.05091293,0.06479861,0.054442458,0.008965892,0.041378226,0.11899725,-0.009116749,-0.038031027,0.021755036,-0.044063635,-0.026237546,-0.016492737,0.030531334,0.1348457,0.045327127,3.637673e-05,-0.005009209,-0.049677253,-2.6364914e-08,0.03557913,0.062622584,0.004060237,-0.059456863,0.04934913,0.026504079,0.014868155,0.043215107,-0.08534991,0.070037246,0.03346982,0.015365063,0.03317928,0.033264026,0.09112978,-0.006656268,0.065892555,0.029604675,-0.0025243508,0.057672206,0.040405158,0.044578813,-0.024818337,0.0293203,0.005631273,-0.05122374,0.008879098,-0.0005937063,-0.028106168,-0.07220707,-0.007163428,0.026052644,-0.03826536,-0.015621738,-0.0045858333,-0.107376516,-0.07311467,0.10142007,0.053722743,0.006963915,-0.043118596,0.053896986,-0.00542965,0.014665758,0.008186496,0.045144,-0.036747638,-0.07213793,0.005561817,-0.018004283,-0.045836303,-0.06309691,-0.052702248,0.029454084,0.076391235,0.06890759,-0.05380278,-0.0718527,-0.041405313,-0.0008863001,0.036492832,0.014827513,-0.028482256,0.035763085} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.496397+00 2026-01-30 02:01:09.222943+00 22c747a6-b913-4ae4-82bc-14b4195008b6 190 google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE 1 t 193 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown First time using this company. Really really happy with the service. Great prices and no hassle return of the car with full cover insurance which was not expensive at all. Will use this company again and highly recommend it to others. No hidden charges. We got an upgraded car for no additional cost which was brand new with 400km on it. first time using this company. really really happy with the service. great prices and no hassle return of the car with full cover insurance which was not expensive at all. will use this company again and highly recommend it to others. no hidden charges. we got an upgraded car for no additional cost which was brand new with 400km on it. 5 2025-01-25 01:27:48.34014+00 en v5.1 V1.01 {V1.03,V1.04} V+ I3 CR-N {} {"V1.01": "Really really happy with the service. Great prices and no hassle return of the car with full cover i"} {-0.081666164,0.038721535,0.0016802313,-0.004589573,0.006869691,0.044868458,0.07951248,0.012291313,0.004047801,-0.035203617,0.061570544,0.017196745,0.041027956,-0.04470794,-0.06292403,-0.086384095,0.082939185,-0.120880015,-0.067929,-0.0216924,-0.063923396,-0.057709377,-0.0021174254,0.005945875,0.0017199658,-0.054455277,0.022726525,0.0544453,-0.009367008,-0.053754818,-0.01062565,-0.009353759,0.013313096,-0.06389555,0.0058111367,-0.036475472,-0.056082238,-0.049084216,-0.10480241,0.055280853,-0.008040508,-0.029626397,-0.09138084,0.03714978,0.06436389,0.011118465,0.052153643,0.09015519,0.08659251,-0.0017865129,0.0024875584,-0.077402964,0.050622948,-0.05551607,-0.0722124,-0.041574817,-0.04548084,0.039165772,-0.048810422,0.0033362422,-0.007536498,-0.060888525,-0.024804313,0.044512957,0.028792527,-0.011573223,-0.019969672,-0.05068543,0.011430356,-0.05581029,0.00016197201,0.056276917,0.038790487,0.03667923,-0.030157318,0.025067624,0.06258466,0.0013003068,0.01231903,-0.057513114,0.07307926,-0.021919806,-0.031715244,-0.041486517,0.002945025,-0.078424945,-0.041025154,-0.009428114,0.02816671,-0.048136145,0.06216008,0.011536066,-0.0064536394,-0.092329934,-0.044954944,0.092923865,-0.008598557,-0.047135,-0.04375433,0.013319135,0.035290755,0.051056977,-0.007144621,0.013275827,-0.059437457,-0.026288286,0.025001656,0.0941889,0.04094354,0.083300866,0.051023487,-0.030106772,-0.05652574,-0.059429843,-0.029537076,0.06621969,-0.021759799,-0.0053435494,0.11527306,-0.0032147244,0.027386421,0.030096725,0.018288903,-0.019904194,-0.05848191,-0.016408904,0.0679521,2.334506e-33,0.0028341343,0.08969073,-0.029350225,-0.02918713,-0.044084866,0.0035897319,-0.044798553,0.047741715,-0.030261094,0.1013443,-0.06632636,0.04474573,0.067168325,-0.03568932,-0.017624164,0.01344029,-0.08324666,0.09287857,-0.012074759,0.0232157,-0.017840756,2.9998107e-05,0.07939996,0.021172361,0.05833709,0.02298506,0.043767646,-0.052569486,0.14041409,0.038677502,-0.05952236,0.024188435,-0.019788574,0.015131397,-0.037814293,0.09283832,-0.1267636,-0.06559324,-0.025579613,-0.020718165,-0.024839971,-0.04702119,-0.07718499,-0.033371113,-0.058202337,-0.01573412,0.03696109,-0.029740553,0.0032808222,0.04078036,-0.10509732,0.042458605,-0.114392504,0.06880247,0.003424313,0.10631627,0.053485624,0.017885601,0.03821875,0.026396252,0.015476181,-0.022324804,-0.028861912,0.0014439704,-0.059739072,-0.0021291883,-0.043150954,-0.055195633,0.030933898,0.00763878,0.035464004,-0.021420142,0.031973418,-0.0010795094,-0.028376382,0.06182353,0.005819024,-0.017405108,0.027115794,0.037067335,-0.04166458,0.018902188,0.06518063,0.035966605,0.054530047,0.025066637,0.020720309,-0.022731887,-0.07892633,0.07968724,0.02344506,0.033868976,-0.038878698,0.056132965,0.05789825,-4.9914653e-33,-0.054594893,0.07388428,0.09128288,-0.058480207,-0.06957396,-0.01753439,-0.059683632,0.083135575,0.01335859,0.09034353,-0.073736556,0.03674531,0.023284199,-0.011836331,0.02710494,-0.049498864,0.08542109,-0.08812991,0.0042806077,-0.04067997,-0.078060806,0.06491905,-0.029907938,-0.016592234,-0.042955305,-0.019665744,-0.036820106,0.043625705,0.03069145,-0.06557038,-0.010106241,-0.021948867,-0.059574578,-0.0016187779,-0.0731991,0.021430599,0.07238236,0.087489575,0.0009895356,-0.012542895,0.006569794,-0.06030941,-0.0049247984,-0.03498595,0.002888257,-0.09611002,-0.033472035,-0.07209559,0.012938343,0.027813323,-0.02348069,-0.06912085,-0.013885266,0.049863532,-0.06556717,-0.0075604217,0.04965017,0.03736342,-0.06343351,-0.025446327,0.08145802,0.040294643,-0.013828005,0.054378677,0.016821772,-0.049268205,0.08197327,-0.058072444,-0.012940474,-0.031974517,-0.073072866,-0.056516506,-0.041402586,0.024735715,-0.04740141,0.022406006,0.027058966,-0.061806757,-0.034768686,-0.046875644,0.055209875,-0.047773868,-0.0067547113,0.014807425,0.017797958,-0.033776663,0.04253444,-0.10465343,-0.008944233,0.060576696,-0.030730158,0.0014734875,-0.10936403,0.0022339984,-0.05051952,-4.392953e-08,-0.042198174,0.09981432,0.050747685,0.03395112,0.008219129,-0.105650954,0.023401616,0.053639803,-0.107587844,0.016217222,0.03027185,-0.028773962,0.014395813,0.07335349,-0.041616995,-0.008728299,0.06498444,0.068830535,-0.03100177,0.037450913,-0.049265746,0.07189774,-0.0432914,-0.007379961,0.023894269,-0.010137726,0.027802492,0.055385843,0.08016744,-0.09783031,-0.1243516,0.04528825,0.07737513,0.071564645,-0.068314254,-0.062348295,0.017301323,-0.012947289,-0.033265635,0.015468194,0.046633314,0.02624529,0.008412943,0.020970391,0.030117314,-0.0015527637,-0.070537984,-0.07951103,0.023379732,-0.034310207,-0.054945763,0.0019272243,0.04736652,0.071386665,0.06798373,-0.0027288601,0.013929208,-0.013038639,-0.018561564,0.15492308,-0.04327054,-0.07482315,0.005879208,0.059674695} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:39:56.364377+00 2026-01-25 01:27:49.967334+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 232 google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB 1 t 235 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown They have a shuttle bus between airport and their office, so very easy to get and return your car. Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. When I returned the car they just quickly check the car and told me everything is OK. I get back my deposit immediately.\n\nSuggest buy their full insurance. they have a shuttle bus between airport and their office, so very easy to get and return your car. car condition is very good. i rented for a mini copper and get a new audi a1 in good condition. when i returned the car they just quickly check the car and told me everything is ok. i get back my deposit immediately. suggest buy their full insurance. 5 2025-01-25 01:27:48.340529+00 en v5.1 A4.01 {} V+ I2 CR-N {} {"A1.02": "Suggest buy their full insurance.", "A4.01": "They have a shuttle bus between airport and their office, so very easy to get and return your car.", "O2.01": "Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition.", "V1.01": "When I returned the car they just quickly check the car and told me everything is OK. I get back my "} {0.056796618,0.05741529,0.106855184,0.04914695,-0.051022742,0.06956289,0.037907064,0.019565457,0.008621443,-0.03710745,0.07698672,-0.007741191,-0.044109486,-0.035918538,0.0062910686,-0.056272686,0.08107743,-0.12264173,-0.0642617,-0.041470468,-0.10250223,-0.0008093486,-0.06665959,-0.012028606,0.042413816,0.06207597,0.008776602,0.07512954,0.049591426,-0.018319756,0.040387806,0.015293788,-0.04788839,-0.012829616,0.03757199,-0.013487199,-0.033560388,-0.07922531,-0.0050816936,-0.049498264,0.001943931,0.015688673,0.009726977,0.016911903,0.011529546,-0.01054198,0.052553497,0.06459478,0.15358636,0.010807513,0.060613457,-0.060297385,0.045652926,-0.02139777,-0.060209498,-0.050297044,0.03364941,0.023656925,-0.018400386,-0.057305124,0.10398721,-0.07221013,0.018132053,0.05182458,-0.035338726,-0.00041251647,-0.018478382,-0.043375336,0.01641244,-0.04027647,-0.0078097573,-0.05653358,0.017971354,0.07602323,0.011479379,0.028797641,0.011721275,0.0065858695,0.09894995,0.018145049,-0.010051496,-0.004817248,-0.027038153,0.012573733,0.051847223,-0.046978813,0.012623865,-0.009480458,-0.041780706,0.015201537,0.030775242,0.03483967,-0.021211285,-0.08559446,0.010533767,0.024596954,0.034431946,-0.0102593135,-0.041909978,0.022477886,0.075297415,0.1243809,-0.024632694,-0.0114539405,-0.094484024,0.01708785,-0.00706374,0.034362435,-0.017892169,-0.050512042,0.00882664,0.016021216,0.060763046,0.0038134851,-0.06514378,0.06521501,-0.07735814,-0.009987111,-0.018806517,-0.01824149,-0.03270448,-0.0540927,0.07729939,-0.012312699,0.014079361,-0.012924988,0.02054723,-1.9267752e-33,-0.03987041,0.05698295,-0.05635864,-0.007620957,0.050722063,-0.11654637,-0.04333736,0.043928728,-0.0035665254,0.004056766,-0.09953151,-0.00956469,0.009804505,-0.13470963,-0.004255085,0.06878671,-0.01316558,-0.005764178,-0.07913712,0.009821534,0.00041970544,-0.044456765,0.040784463,0.0076220813,0.10971996,0.06624728,0.027829753,-0.04669322,0.07992158,0.0225377,-0.055689905,0.08698038,0.01137077,-0.032525692,-0.107087225,0.030371455,-0.08602569,0.06040823,-0.020689469,-0.03525143,0.044487953,-0.045299567,-0.05140778,0.039058458,0.07203933,-0.031999286,-0.052172516,-0.022466758,0.0064859255,0.0011609478,-0.06673608,-0.03769049,-0.04845734,0.034921404,-0.031018477,0.0055969106,-0.015959932,0.04454837,-0.026744481,-0.015663039,0.04000261,0.054048777,-0.028791962,-0.0148786325,-0.015120142,0.011509303,-0.0033994142,0.030597677,0.038511604,0.033714045,0.055884473,0.014084123,0.045094267,-0.0057377797,0.028658984,-0.03185424,-0.083876446,-0.06271593,-0.027964393,0.00013864074,-0.030095436,-0.0063678003,0.044728752,0.07123777,0.026648216,0.007071837,0.003210663,-0.028371356,-0.0013698159,0.026182743,-0.027212719,0.04254068,-0.028313907,0.017811446,0.05584275,-4.7281631e-35,0.08258043,-0.05469395,-0.03183788,-0.058653142,-0.12541665,0.03879057,-0.0059806462,0.075918645,0.025245186,0.10278187,-0.06830953,0.053935446,0.021299174,-0.015071254,0.01864534,-0.040667836,0.118912295,-0.080291755,0.0034344052,-0.05301269,0.052657757,0.018605402,0.09468739,-0.022866579,-0.061690375,0.057390273,-0.032530688,0.028020084,-0.010737952,-0.058055386,0.02389523,-0.042167824,0.0051390147,0.06527936,0.021965839,-0.04866203,-0.0017869818,-0.014280599,-0.09755768,0.07054221,0.067998745,-0.029744577,-0.027601982,0.019380644,0.07321409,-0.09132218,0.02245257,-0.10766203,0.060934383,-0.032327864,0.14201705,-0.09351783,-0.024648713,0.12421528,-0.070871726,0.017702872,0.06978755,-0.06615411,-0.041242503,0.041893773,-0.010051156,-0.0074308924,0.014871549,-0.008700065,-0.08228046,-0.11747118,0.02404979,-0.028697236,0.047903918,-0.02628036,-0.045026347,-0.028223814,-0.010280847,0.012823356,0.023192642,0.09168677,0.041281454,-0.021955376,-0.0035549358,-0.04419992,0.027563613,-0.017079115,-0.022058615,0.052097455,0.06844365,0.0049012667,0.021791635,-0.05810481,0.027578115,0.09801115,-0.020224404,0.033368338,-0.019778633,-0.027580246,-0.071158335,-3.928854e-08,-0.01844627,0.03441115,0.09063062,0.022635607,-0.016861524,-0.05933895,-0.027294904,0.04192542,-0.06554768,-0.04605037,-0.04400345,-0.04231662,-0.06667911,0.0059410706,-0.049111962,0.042559486,-0.0007863971,0.01429653,-0.020163711,-0.06414914,-0.100006215,0.0025687418,0.01638173,0.017278347,-0.060807005,0.0096927965,0.0066346982,-0.02882321,0.058732733,-0.021806303,-0.13172719,0.01385391,0.12020272,0.014264178,-0.06326207,-0.09311287,0.1361817,0.024532972,0.0053019677,-0.024407396,0.04024118,-0.044052333,-0.051137272,-0.03920975,0.0023337132,-0.025058499,-0.011093423,-0.058882296,0.04537329,0.013905185,0.049958263,-0.04324061,-0.06384558,0.12173648,-0.06811192,-0.045119938,-0.076548256,-0.03667014,-0.04873236,0.031649616,-0.032633185,0.039854236,-0.0065642865,0.03862678} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:47:08.837507+00 2026-01-25 01:27:50.166824+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 266 google Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB 1 t 269 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown With car was everything good. with car was everything good. 5 2026-01-18 01:27:48.340718+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "With car was everything good."} {0.03168442,0.09119449,0.0313951,0.05402069,-0.03800164,0.0049915393,0.0094572,-0.000976284,-0.091329336,-0.015701465,0.12413666,0.11710814,0.05887891,0.046991233,0.0010707014,-0.024733894,0.08857625,-0.0656096,-0.071555234,-0.016674558,-0.112441614,0.042128503,0.07234439,-0.013457372,-0.010660301,0.058804084,-0.029100217,0.011946424,0.040018946,-1.1827909e-05,-0.025442116,-0.016306229,-0.011772471,-0.049109202,-0.0695477,0.0024613852,0.050859116,-0.06301187,0.012208669,-0.027765581,0.0009186761,0.0012986201,0.037229154,-0.0022345097,0.013052993,-0.013129332,0.11547381,-0.012389869,0.12696579,-0.06110232,-0.0059711896,0.019292323,-0.022350013,-0.06684886,-0.044055097,0.049310625,-0.017254882,0.038225967,0.012092381,-0.03948286,-0.020429695,0.0072840126,-0.009345888,0.004296955,0.042595178,-0.05488517,-0.07380434,0.06593147,0.007565501,0.14843637,-0.024346132,0.0148453545,0.022851875,-0.04339079,-0.049947288,0.038320974,0.023857962,-0.05671401,0.04151083,0.0049419953,0.021665258,-0.016294198,-0.038436566,-0.0020226582,0.032068785,-0.047283128,0.038357783,-0.013178445,-0.09305551,0.038536564,-0.011917522,-0.016356312,-0.014521415,0.02460225,0.03813652,-0.058876693,0.02497439,-0.05989113,0.024072904,0.11684648,0.009046312,0.0717631,0.033829615,-0.0021813328,-0.0049496656,0.06619678,0.05705848,0.04122451,-0.0021929645,-0.012452144,0.018299969,0.034161713,0.02649025,0.04340694,-0.050043736,0.018402142,0.0073311157,-0.0007741047,-0.025840936,0.018718585,-0.0005855108,-0.02735707,0.025535522,0.08395562,-0.031111427,-0.016075943,0.14501014,-5.1944794e-33,-0.0066929017,0.00085620774,0.009548305,0.09427695,0.009201646,0.03415099,-0.047803737,0.026130907,-0.014496545,-0.0033392361,0.050071348,-0.03744116,-0.057393942,-0.06284795,0.050677568,0.024632167,-0.07836702,0.01826313,0.009523903,0.07837088,-0.043076005,-0.012323319,0.016753418,-0.02725243,0.06822874,0.080716446,0.0185316,0.004127129,0.027550576,-0.0036017832,-0.020632,0.09368578,0.019691447,0.058721855,0.021166597,0.07675217,-0.09297601,-0.032610226,-0.029204672,0.06598755,0.019638894,-0.020426432,-0.030353436,-0.06372963,0.0088469805,0.025577988,-0.042438332,0.035667304,-0.055042766,0.009622771,-0.101276256,-0.060678974,0.035222195,-0.02766802,-0.12164927,0.07191288,0.009010844,0.07984233,-0.03325685,-0.0017129531,-0.04798194,0.05815864,0.051961966,-0.1092145,-0.08559271,-0.04776913,0.052563697,0.032835178,-0.043408666,-0.021994114,-0.04523374,0.0150319515,-0.044583548,0.028338352,0.013810305,0.06457175,-0.09472072,-0.03756242,-0.08975143,-0.0066343383,0.06450317,-0.0064093955,0.018529853,-0.038498983,0.1456488,0.030921595,-0.04422386,-0.079736896,0.018440029,0.09029376,-0.055264033,0.019232048,0.021498458,-0.088441364,-0.011388332,3.915249e-33,0.03892977,0.034864105,0.044293493,0.0664346,-0.020985339,0.004692676,-0.07101439,-0.089646846,0.01308798,0.080243304,0.026916526,-0.013689088,0.03681247,0.010642834,0.068562634,0.028711786,0.06646657,-0.048356045,0.034499053,0.044339083,0.028305132,0.064210765,0.04275428,0.008531207,-0.05809627,0.025734581,-0.11898475,0.011589971,-0.054898355,0.006967814,0.08525017,-0.022770211,-0.051211946,-0.0096017355,-0.020573873,0.019536069,-0.016915247,-0.038757805,-0.06497637,-0.094869606,-0.046549127,-0.05034487,-0.034377918,0.15215349,0.039769333,-0.050291266,-0.044729244,-0.046760555,0.031968765,0.04768382,0.009310623,-0.0340455,-0.07380466,0.019450912,-0.036536437,-0.0035234303,0.112490125,-0.07954842,-0.011914301,-0.05604968,-0.11477347,-0.016412314,-0.028463578,-0.1058498,0.049937155,-0.08571428,-0.016937925,-0.061487935,-0.027541526,-0.05436079,-0.07219992,0.012002385,-0.019173132,0.097045414,0.020638067,0.034280285,0.0038835213,-0.043538157,0.05683931,-0.03989655,-0.04445442,0.036770977,-0.050578512,-0.021313189,-0.0014304187,0.030292697,-0.013302858,-0.10055817,0.0071993195,0.06926352,0.017149264,0.040921256,0.04151656,0.051278375,-0.03834029,-1.7284965e-08,0.016265798,0.049283583,-0.03908579,-0.044102307,-0.09885508,-0.013772015,0.07198809,0.047694188,-0.04457169,0.08952409,-0.09076074,0.0052533275,0.007585313,0.072935335,0.025034958,-0.015982755,0.079223804,0.016293766,-0.08717955,0.052099966,-0.022413861,0.050081138,-0.003339305,0.058117926,0.059136163,0.0046141786,-0.010159011,0.007374418,0.051965367,0.03133468,0.006378638,-0.074741326,-0.030912397,0.013877017,0.012573673,-0.00736661,0.023408957,-0.017147698,0.06286219,-0.053829063,0.026646964,0.076860435,-0.058590874,-0.008628354,-0.03846201,-0.01262604,0.018044524,-0.07312848,-0.094649054,0.019582769,0.049691815,0.020552184,-0.056564245,0.050749037,0.08781446,-0.07371978,-0.01578393,-0.03434317,-0.018545214,-0.009241647,-0.042227853,-0.015051736,-0.035892107,0.055791575} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:49.239231+00 2026-01-25 01:27:50.743597+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 274 google ChZDSUhNMG9nS0VJQ0FnSURmcnUzYlJnEAE 1 t 277 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Not easy to pick up the car not easy to pick up the car 4 2025-01-25 01:27:48.340765+00 en v5.1 A1.04 {} V- I2 CR-N {} {"A1.04": "Not easy to pick up the car"} {-0.0065496224,0.06809708,0.026459897,0.05903123,-0.001453533,0.034835186,0.057759274,0.05194331,-0.026873998,0.01544852,0.01773526,0.018956315,-0.044493694,0.06463835,-0.04131784,-0.055149343,0.08358422,-0.09025892,-0.021621676,0.046830475,-0.123208806,-0.04472455,0.0012182954,-0.0468816,-0.006591482,0.0007558673,-0.040775098,0.071431875,0.030340612,-0.019539768,-0.044302188,0.04427812,0.02243343,-0.06483771,-0.044622663,-0.062351093,0.03454493,-0.0118645225,0.006912274,-0.004086699,-0.001672978,-0.051255975,-0.01960752,-0.010866988,-0.0685785,-0.021489628,0.04428508,0.04920622,0.12035675,-0.06645916,0.033351578,0.014666587,0.025062202,-0.025041942,-0.09548452,0.07724199,0.028972471,0.007851978,0.0027661351,0.008930615,0.021743909,-0.0661211,-0.012239158,0.0050917906,0.029602833,-0.04816797,0.04442143,-0.09433233,0.0075508147,0.027620379,0.006686081,0.03537403,-0.053913247,0.018180376,0.059993166,-0.05703865,0.021828234,-0.050430603,0.059182268,0.026830709,-0.022594612,-0.038727462,-0.042361323,0.12836051,0.0034451752,-0.037161786,0.0112495,0.045137838,0.005861728,0.021946818,-0.04994389,-0.016044723,-0.029172584,-0.053102016,0.012907656,-0.0013035677,0.07132296,0.014987096,-0.12664148,0.042098276,0.07054487,0.12500401,0.054420877,0.013834973,-0.08148598,0.043049827,0.028432628,0.006584539,-0.032135025,-0.03311885,-0.03438681,-0.006680471,0.05635415,0.08234467,-0.086493835,0.027166367,-0.041224282,0.010071525,-0.035106648,0.015089296,-0.039714035,-0.07675979,0.02944853,0.08217512,0.019447856,0.002489294,0.0894483,-4.3443872e-33,0.026943903,0.056173556,0.0066741477,0.0065923203,-0.030102547,-0.04448704,0.00433341,0.019438973,0.0004890566,0.06565244,0.04413571,-0.017840285,-0.011483323,-0.08140766,0.11444992,0.0141052045,-0.10676083,0.0003215334,-0.04960861,-0.059412148,0.0033518956,0.0064476356,0.02466782,-0.04376362,0.05602038,0.04154357,-0.020320764,0.00984249,0.069512896,0.0118748015,-0.02740142,0.028220493,-0.016757086,0.07000886,0.0071775108,0.030798143,-0.028433125,-0.0035555332,-0.032468494,-0.005780181,-0.0335334,-0.002497236,-0.06361157,0.060060937,0.004617276,0.05993053,-0.010070516,-0.07342648,-0.0706897,0.010849122,-0.009009896,-0.07935198,-0.052533943,0.0049618864,-0.030658811,0.08556981,0.06562941,0.04211698,0.019681573,0.029639283,0.011822865,0.09738188,-0.0062149526,0.026742468,-0.009315293,-0.03507314,-0.019453773,0.044348232,0.023579702,0.03252272,-0.018961392,0.00214048,0.006117311,-0.08309458,0.081265815,0.047334608,0.07345458,-0.09421786,-0.02617931,-0.035054278,-0.0017487018,0.027785176,0.015135387,0.008138421,0.07912931,0.0060292617,-0.07489321,-0.12951608,-0.007782254,0.05091605,-0.025699157,0.063264884,-0.009773199,-0.038646445,0.023097254,3.6856733e-33,0.01828544,-0.09549103,0.07667596,0.06022885,0.0040673083,0.027067887,0.05594515,0.017037194,0.030766184,0.027098734,-0.108955175,0.021997599,0.06691938,0.022309078,0.17706707,0.014161657,0.0706508,0.027246458,-0.082618505,-0.018727332,-0.022652028,-0.05554582,-0.027700597,0.015388862,-0.10299008,-0.005709872,-0.08488076,-0.04441751,-0.03735257,-0.032584056,-0.043017846,-0.07713697,-0.039519876,-0.00916394,-0.030524021,-0.00090568943,-0.055235248,0.111202195,-0.03651524,0.033580486,-0.09779429,0.015484449,-0.017916244,0.033838566,0.017304394,-0.05756797,0.052722767,-0.026413161,0.05694957,0.09452587,0.05032997,-0.031939838,-0.05030028,0.08630679,0.03033989,0.016028332,0.119557045,0.05169946,0.07429457,0.04943659,-0.028116643,0.07013574,-0.07827872,0.023487179,0.0058922116,-0.14911643,-0.02614294,-0.009131462,-0.031014837,0.012510111,-0.016996345,-0.009543415,0.031143412,-0.026736392,-0.0052157,0.061605815,0.027293295,-0.0072186603,0.0059857424,-0.17821571,0.040349536,-0.017239695,-0.010241908,-0.04488136,-0.075843774,0.031383604,0.022031052,-0.060236797,0.00984284,-0.0039314143,-0.005769585,0.084548555,0.102785744,0.05420625,-0.06367339,-1.5056012e-08,0.06392171,-0.019742686,0.016749002,-0.08181056,0.008106397,0.038053162,0.012279394,0.06597653,-0.044550546,-0.017145906,0.023852628,-0.029875714,-0.044436615,0.07718472,-0.04233795,0.014238685,0.03755579,0.0005499152,-0.03988258,0.023439838,-0.050788995,0.013548419,0.0076186825,0.050647177,0.001084046,-0.06430224,-0.04364669,0.04735698,0.034146562,0.008262701,-0.05050343,0.06491432,0.03323294,0.06453248,0.047352683,-0.004458534,-0.018372662,-0.016279656,-0.04809321,-0.10373433,0.07283106,0.0246766,-0.08222256,-0.015642432,-0.07058458,0.062199675,0.0058877766,-0.044236243,-0.051576305,0.057226364,0.01321003,-0.09484686,-0.0422921,0.082844034,0.06989779,0.04425682,-0.028736012,-0.07086162,0.0014559734,0.015267833,-0.039565254,0.087631226,-0.029546954,0.048336554} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:45.511934+00 2026-01-25 01:27:50.772879+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 237 google review_63 1 t 240 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Great price performance ratio, very friendly and service oriented team, even German speaking with Daniel.\nWEITER SO 🌟👏 … great price performance ratio, very friendly and service oriented team, even german speaking with daniel. weiter so 🌟👏 … 5 2025-12-26 01:27:48.340551+00 en v5.1 O2.01 {J2.01} V+ I3 CR-N {} {"O2.01": "Have to say this is great fun, well run with top notch kit."} {-0.04231069,0.07930218,-0.015532425,-0.044741042,-0.04401647,0.0115930345,0.0037903076,0.006674581,-0.10465994,-0.011538635,-0.032625347,0.0011415749,0.01888023,-0.034107894,0.008274517,0.040222958,0.0823783,0.0067686173,0.08723341,-0.034838695,-0.06802784,-0.010658904,0.081584275,-0.025470687,-0.12512532,0.07371933,-0.043049335,0.046036296,-0.024301913,-0.0844084,0.0059557897,0.03554591,-0.011608133,-0.007731957,-0.02678339,0.024643073,0.10214317,-0.14208867,-0.053355806,-0.018703528,-0.0074891862,-0.04362065,0.016401365,0.020798028,-0.033029236,0.0735664,0.063078,-0.049243256,0.068509586,0.012195363,0.029931286,-0.093255,-0.0017429426,-0.047043514,-0.003750587,0.10687125,-0.053476635,-0.058199793,-0.058232866,-0.06209118,-0.017240146,-0.005423893,-0.04059679,0.005128873,0.040545925,-0.08171084,-0.010314561,0.003933696,0.056302574,-0.08117567,-0.04990613,0.041481603,0.05537814,0.008437602,-0.02262514,0.0728779,0.013671917,-0.040312927,-0.038454976,0.014234301,-0.0008066561,0.04359286,-0.048939507,-0.033864334,-0.030248608,-0.04291557,0.018284619,0.03583161,0.03967231,0.034758627,0.0025855757,0.007624223,0.022982566,-0.00650058,-0.00058559724,0.044834152,-0.0020374225,-0.035185833,-0.0902395,0.03885771,-0.010973985,-0.045610406,0.033188466,-0.013884552,-0.026089203,0.020652877,-0.006668647,0.05483709,0.008223421,-0.042822752,0.016686054,-0.069745935,0.045788646,-0.025455644,-0.0014192546,-0.03427914,-0.08083963,0.017486926,-0.007944706,0.021614043,0.046423376,0.0035305808,0.08808629,0.010771745,0.052314535,-0.04163817,0.098743476,-2.1356324e-33,-0.0062777344,0.029517319,-0.007668895,0.1134291,0.07768298,0.029359894,0.06006715,-0.09070316,-0.12676793,0.055076636,-0.015272195,0.03721066,-0.06634241,0.06935467,0.05900613,-0.11143771,-0.07169384,-0.025838133,-0.036997836,0.045799315,-0.02548261,-0.036181837,-0.039459545,0.04521155,0.10414406,0.059101257,0.088119715,0.00014195855,-0.013592886,0.04474715,-0.09566559,0.006598489,-0.046823833,0.04570148,-0.006406463,0.0072017703,-0.06436785,-0.04435329,-0.023250375,0.046794493,0.016256286,-0.018958284,-0.036383744,0.031007368,-0.022767946,-0.00131696,0.047879025,0.06655335,-0.029402893,0.0017858167,-0.019818716,-0.0011408665,0.04493415,0.050076976,-0.0029834884,-0.023045406,0.04198354,-0.0040802606,0.043217212,0.02395809,0.014971309,0.065075114,-0.10659589,0.043311078,-0.03821367,0.06425854,0.034072537,-0.022517601,0.034064677,0.007571276,0.042327937,-0.022677904,0.0048122946,0.0011409824,0.024765287,0.048840392,-0.036111683,0.003091659,-0.06641359,0.0073443013,0.023071283,0.079871394,-0.009611426,-0.038526203,0.0477523,-0.024557905,-0.014226336,-0.13124895,-0.03705009,0.018514624,-0.01379733,-0.07259868,0.043794777,0.062552266,0.025407342,1.1124466e-33,0.075981006,0.029061887,0.055698786,0.07177931,0.056814548,-0.012533999,0.019518416,0.022288542,0.03085162,0.08649508,-0.009015031,0.06352963,-0.05903496,0.021699164,-0.028726442,0.02284805,-0.0051781414,-0.054162305,0.051577866,-0.09561646,0.06295268,0.113434665,-0.094632484,-0.09848381,-0.06499851,0.006178604,-0.09016944,0.060197365,-0.021482281,0.015755527,0.010524328,-0.000615359,0.06475156,-0.0466333,-0.039178945,0.031284608,0.06321961,0.027996326,-0.0024964234,-0.09333722,0.0019748036,0.011385239,-0.059443012,-0.008360525,-0.058346055,-0.05370187,0.026865773,-0.022351766,-0.072960064,0.03396745,-0.0029146138,-0.008238119,-0.02825919,-0.048717655,-0.006486269,-0.11696068,0.03698157,0.020738427,0.060997427,-0.004047786,0.009123698,0.051913675,-0.03915301,0.017493937,0.06583256,-0.13102159,-0.0031116544,-0.047505885,-0.041329022,0.0031103005,-0.1081812,0.052705698,0.0089921495,0.049977798,-0.029989645,-0.07868849,0.0299759,-0.03902133,0.09397186,0.03604827,-0.039864853,-0.08038119,-0.015691143,-0.0029072575,0.027327297,0.06277446,-0.06911601,0.062477525,-0.025988575,0.069081046,0.06504064,0.098159134,-0.0015829976,0.035217468,-0.0073855314,-2.9003404e-08,0.00026020614,0.07374182,-0.1004849,0.037317045,0.03696025,0.0019470935,0.06975457,0.028106721,0.0061052144,-0.02151394,0.117907174,-0.049549885,0.010357368,0.09130219,-0.029177193,0.0070015634,-0.002968664,0.14580235,-0.03963003,-0.02300772,0.03142747,0.046075504,0.03482139,0.07814001,-0.06851798,-0.058863048,-0.0036907727,-0.0011376559,0.0690818,0.030308932,-0.095962755,-0.0078549795,0.024427976,0.03888091,-0.0053520296,-0.022515634,-0.043689746,0.02924672,0.04189894,0.013984087,0.024923626,-0.069285184,-0.016592372,-0.025838375,-0.114697985,-0.02412983,-0.097945906,-0.07795076,-0.07566953,0.018556532,0.05370197,-0.0063390452,-0.039203223,0.0317473,0.098290496,0.08503183,-0.024011718,0.039314926,0.009454926,0.02946151,-0.033160735,-0.033929925,-0.052435182,0.042332787} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.472865+00 2026-01-25 01:27:50.1866+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1311 google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE 1 t 1314 Go Karts Mar Menor unknown Came here whilst on holiday in April and loved it. My boys had such a fab time and haven't stopped going on about it. My youngest had to go round on his own because he was the youngest in our group but he had extra laps and was so happy. Really easy to find, you can either pre book or pay when you arrive. Choosing from a variety of different go karts, drinks and snacks available not sure about any other food options. We will definitely be returning when we visit next. came here whilst on holiday in april and loved it. my boys had such a fab time and haven't stopped going on about it. my youngest had to go round on his own because he was the youngest in our group but he had extra laps and was so happy. really easy to find, you can either pre book or pay when you arrive. choosing from a variety of different go karts, drinks and snacks available not sure about any other food options. we will definitely be returning when we visit next. 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"A1.04": "Really easy to find, you can either pre book or pay when you arrive.", "O1.05": "Came here whilst on holiday in April and loved it. My boys had such a fab time and haven't stopped g", "O3.02": "Choosing from a variety of different go karts, drinks and snacks available not sure about any other ", "O4.02": "My youngest had to go round on his own because he was the youngest in our group but he had extra lap", "R4.03": "We will definitely be returning when we visit next."} {0.060039956,0.03940128,0.0411682,0.06450382,-0.060227014,0.036798462,-0.011469142,-0.054038227,-0.06489909,0.007065246,0.03871048,-0.012299881,-0.056392062,0.051382236,0.12597597,-0.08457169,0.10901399,-0.1298032,0.043895856,-0.12431853,-0.08857348,-0.06192693,0.0001933859,0.05195994,-0.017748635,0.049242966,-0.022181872,0.01504647,0.003398055,-0.028165637,-0.030896438,0.05927446,-0.014413675,-0.026938407,-0.02610374,0.041849334,0.08233435,-0.1529244,-0.04400671,0.05085722,-0.0013051971,0.018908178,-0.0069087865,0.00790844,0.06946803,0.036625095,-0.017473057,-0.0035886196,0.05522376,0.06500585,0.093413554,-0.04830554,0.080249675,-0.08273629,-0.017220875,0.017042754,-0.03981065,-0.08523413,0.017851245,-0.07779189,-0.017771056,-0.020900825,-0.025556007,0.005417755,-0.11626017,-0.087221995,-0.05448085,0.009981384,0.09110317,-0.0068490803,-0.007944057,0.034011617,0.08555059,0.016980397,0.0009414755,-0.00091144716,0.013017326,0.0005860049,0.018186606,-0.0048336037,0.017564623,0.0011353558,0.017873999,0.014914169,-0.041698825,-0.06744811,-0.0050353026,0.07169977,0.01941461,-0.035780694,0.04615936,0.05783328,-0.036706634,0.00048969156,-0.030336013,0.0029113633,-0.0740383,-0.010788356,0.028238934,-0.025000485,0.06487323,0.07079596,0.062500976,0.05882674,-0.0515859,-0.03928299,0.021676257,0.0541151,0.043410733,-0.010764338,-0.056675296,0.0733467,0.08043021,-0.073300034,-0.08592139,0.032398563,0.025160449,-0.025201028,0.0037234977,0.016272245,0.008719222,0.055546187,0.047157947,0.031269766,-0.0030208516,-0.043027025,-0.00011409697,1.6053131e-33,-0.056878757,-0.029638298,0.011133131,-0.010340473,0.049262173,-0.044188924,0.041587174,-0.18434647,-0.033062022,-0.04151855,0.020356463,-0.015679423,0.011811151,-0.05098727,0.056997832,-0.031519074,-0.080443576,-0.035107706,-0.008326334,-0.012601129,-0.020805445,-0.058277335,0.047100216,0.06845382,0.07173972,0.05932951,0.027804818,-0.027476214,0.022722792,0.006203613,-0.07704651,-0.021447925,-0.031715933,-0.0010485965,-0.06079219,0.025857937,0.014088545,-0.020750722,-0.010506522,0.053731352,0.00408188,-0.057705294,-0.017100077,0.030489003,-0.017252378,-0.0011740626,0.03674985,0.032523073,0.029438248,-0.008434839,-0.08272167,-0.038496047,-0.05877762,-0.01185492,-0.080984734,0.052131016,0.016607914,0.0046017882,-0.035642248,-0.09926444,0.10943069,-0.00040262632,-0.011671713,-0.11403305,-0.12456015,-0.025676494,0.030204762,-0.033182696,-0.017294897,0.0009827897,0.028549528,0.05483976,-0.023578089,-0.12120089,0.11228493,0.04383581,0.010839653,-0.007594654,0.052084252,0.046932437,0.07112808,0.050889898,-0.0116017675,0.058115445,0.018751727,-0.013717001,-0.021859972,-0.060582615,0.01428888,-0.018963978,-0.020503048,-0.012763378,0.07254653,0.057209965,0.05690266,-2.5114924e-33,0.08568135,0.012797048,0.052626334,0.0007329733,0.0062678903,-0.021928918,-0.0097684115,0.018000595,0.06869448,0.031969577,-0.13017952,0.056779392,0.079748176,-0.025388524,-0.020866647,0.024295641,0.09449582,0.06675596,0.10203693,-0.015249602,0.062080327,0.02549184,-0.028021554,-0.09445833,0.03930504,0.06710496,0.004300648,0.005610245,-0.06607329,-0.039671365,0.0012348492,-0.043965347,0.047270447,-0.026112415,0.067574464,0.056405917,-0.011089204,0.09352812,-0.09064363,0.08018114,0.02945915,-0.06269671,-0.009726574,0.05235767,0.042064942,0.022814507,0.02960324,0.027269881,-0.0077916253,0.011385564,0.013372149,0.00010590904,-0.081267886,-0.029237697,0.0023251597,0.018792015,0.024520963,-0.0358786,-0.051923756,-0.0037122965,-0.07398325,-0.025754964,-0.016768504,0.012166914,0.0029553843,-0.08161133,-0.022229707,-0.0620505,-0.030190524,-0.0020306755,-0.18891414,-0.0081496695,-0.057117634,-0.020232411,-0.00579449,0.002798898,0.019649187,0.0033668801,-0.006307982,0.062236514,0.0486604,0.041087877,0.0063906075,0.025280997,0.04005838,0.01581769,-0.05777414,-0.025150571,-0.013271366,0.059453413,0.088697426,0.016672261,-0.012114243,0.037971925,0.015560517,-3.837052e-08,0.056442924,0.08342965,-0.04064167,0.047702976,0.0760521,-0.08289327,0.02015243,0.02849802,0.009316505,0.05733384,-0.03429321,0.05148659,0.010823204,-0.022330081,0.022887096,0.04058914,0.047254555,0.046288595,-0.0074784467,-0.005629074,0.0023715815,0.0027744777,0.009366159,-0.020733634,-0.040548936,-0.035068385,-0.048236102,0.020344207,0.034543283,-0.08126744,-0.027344901,0.03796377,-0.0665854,0.027805615,-0.03141674,-0.13097699,-0.054972697,0.06839642,-0.00043785712,-0.016402284,-0.043322936,-0.009998887,-0.026817068,-0.011467582,-0.0808169,0.08307738,-0.07128788,-0.041483823,-0.0013407842,0.012638779,-0.085107364,-0.059974384,-0.013916191,0.070176005,0.051026754,0.044877537,-0.020838393,-0.054975715,0.049698655,0.019816345,-0.043556333,-0.07159857,-0.061160002,0.054019306} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:16.683069+00 2026-01-30 02:01:08.935274+00 22c747a6-b913-4ae4-82bc-14b4195008b6 245 google ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE 1 t 248 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The station is about 5 minutes from the airport, the shuttle worked excellently. My car was like new, check-in and check-out were very well organized. I would book again. the station is about 5 minutes from the airport, the shuttle worked excellently. my car was like new, check-in and check-out were very well organized. i would book again. 5 2025-01-25 01:27:48.340616+00 en v5.1 A4.01 {} V+ I3 CR-N {} {"A4.01": "The station is about 5 minutes from the airport, the shuttle worked excellently.", "O1.01": "My car was like new, check-in and check-out were very well organized."} {0.06094412,-0.04619745,0.030288598,0.01993125,-0.04513051,0.043742392,-0.01714474,0.049199745,-0.031543076,-0.011850696,-0.023201037,0.08985504,-0.018340267,-0.03642206,0.019354168,-0.044934105,0.13119233,-0.11591151,-0.042785887,-0.043013982,0.0019043472,-0.06478657,0.01826911,0.026669767,0.029760394,0.012967071,0.0022031462,0.037790287,0.03667277,-0.03277643,-0.08966283,0.057963833,0.06344875,-0.0111951465,0.0063105794,0.073953204,0.03860393,-0.053790983,0.076047845,-0.05948398,0.0063115368,0.030316098,4.253123e-05,0.11587271,-0.0045982376,-0.05209942,0.0779471,-0.021384219,0.12410226,-0.020325016,-0.005298872,-0.005859193,0.09717002,-0.029535884,-0.057742484,0.056425832,-0.021230955,-0.028075924,0.022631757,-0.019302912,-0.022404682,-0.03474423,-0.045947123,0.00076762616,-0.01380603,-0.030573623,-0.05252762,-0.06552242,0.0825405,-0.11384207,-0.04662054,0.06512505,-0.043524258,-0.0051223943,-0.004692627,0.017962355,0.060310032,0.025794165,0.07386679,-0.040832292,0.030890306,-0.027150815,0.020854294,-9.9059886e-05,0.005087619,-0.07307717,0.033031028,0.0730372,-0.03898035,0.055508852,0.06185813,0.07591712,-0.025674332,-0.06005023,-0.03255997,0.05024629,-0.04113581,0.005940755,0.038219918,0.010339255,0.05589695,0.1269222,-0.024296697,-0.030874843,-0.0571851,-0.06182407,-0.010567361,0.032611217,-0.00796131,-0.027906403,0.011012698,-0.0068753636,0.025798053,0.0432441,-0.073941275,0.150213,0.014910505,-0.014947108,-0.015547773,0.02018046,-0.06983409,-0.021979516,0.10015528,0.0700418,-0.079100825,0.03377845,0.114705555,-2.59461e-33,-0.073237054,0.0223199,0.018681265,0.087751694,-0.008664439,-0.053010117,-0.09931715,0.021978954,0.029887501,0.03513478,-0.08791045,0.0055915127,0.01960135,-0.07338294,-0.019311346,0.015145484,-0.06457297,-0.01100902,-0.050118346,-0.042929597,0.0009840805,-0.15345804,-0.050784014,-0.03528294,0.10140148,0.03840392,-0.047912005,-0.0027896164,0.0889243,0.021360617,-0.103873566,0.07016241,0.016811654,0.040553622,0.0064263437,-0.03617381,-0.03330695,0.012494101,-0.028148606,0.016125388,-0.017884003,-0.0064734053,-0.03439379,0.00028898654,0.036688346,0.024163807,0.013029698,-0.031783056,0.13470466,0.07167242,-0.079446346,0.033638358,-0.022451572,-0.029037183,-0.00061151374,0.053872067,0.04840176,0.04883361,0.043475147,0.07107376,0.024864797,0.0992613,0.037927035,-0.04035938,0.09301548,0.06348605,-0.10246571,0.013923825,0.08158845,0.058731552,0.03216052,-0.0020037415,0.083218016,0.029688457,0.036505867,-0.0018340106,-0.059805285,-0.024366634,-0.05020054,0.047648594,0.09566549,0.01756961,-0.050366636,0.032439552,0.057410847,-0.019283785,0.02292457,-0.025429884,-0.03586554,0.020911574,-0.01099409,0.06605953,-0.0008091758,0.03733649,-0.012082049,1.4720541e-33,0.07087164,-0.03693164,0.00046089877,-0.029501108,-0.13490923,-0.0052078087,-0.06245827,0.0824231,0.0010315231,0.10768331,-0.105827905,-0.035101365,0.062545285,-0.008177002,-0.08064073,-0.0060144365,0.10203821,-0.052093856,-0.059817348,-0.01563982,0.07534511,0.010607764,-0.011005794,-0.026016138,0.0046794275,0.010985351,0.04458412,0.03614121,-0.038638268,0.00065505854,-0.035193443,0.021999162,0.05667908,0.006809286,0.022794168,0.0006914722,-0.00999241,0.079510555,0.034761857,-0.03529585,-0.022576679,-0.037747674,-0.033169445,-0.045923978,0.05770024,-0.0520136,-0.015362601,-0.014764605,0.018848024,0.01772152,0.0076301647,-0.103310615,-0.07641951,0.033865754,0.048218608,0.012117718,0.03450063,-0.080773674,0.02203388,-0.017135259,-0.04344685,-0.048039354,0.036521744,0.0011925534,-0.02077523,-0.06877105,0.06338679,0.009389692,0.04506655,0.026102956,-0.054056454,-0.025267212,0.026727019,0.07882006,-0.013422081,0.053788375,0.0894773,0.031058325,-0.035187885,-0.074737765,-0.0058821044,0.04080197,-0.07848726,-0.05739086,0.011321583,0.0978579,0.031295795,-0.066854276,0.003939757,-0.06752199,0.022338245,0.051720455,-0.033500116,-0.0067299656,-0.045173775,-3.190145e-08,-0.033208854,0.056850184,0.011347365,-0.013343005,0.01846576,-0.039942477,0.02018214,-0.01661588,-0.099562176,-0.04339253,0.012419953,0.006478331,-0.0519106,0.05963983,0.0135571975,-0.02170048,-0.01645119,-0.003017589,-0.028347244,-0.029466597,-0.038652033,-0.015718393,0.03525321,0.018273745,0.039323602,0.024933953,0.025947355,-0.0032697022,0.08629975,-0.097117335,-0.017042955,0.033059902,-0.06446309,0.0071732285,-0.07601014,-0.02474422,-0.010797316,0.018988872,-0.016333401,0.05473073,2.5467292e-05,-0.07454989,-0.080912784,-0.028454969,0.003457088,-0.01717358,-0.033836182,0.012215512,-0.04982293,-0.022547647,0.018579774,-0.049690157,-0.048626345,0.001321759,0.09864207,-0.02752086,-0.061478198,-0.041672297,0.0038798111,-0.008088446,-0.09956092,0.0650751,-0.12579396,0.019424472} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:48:52.13103+00 2026-01-25 01:27:50.226563+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 248 google ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB 1 t 251 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Employeey were nice. We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. They send back the deposit on that day. I really recomend it! employeey were nice. we walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. they send back the deposit on that day. i really recomend it! 5 2025-01-25 01:27:48.340622+00 en v5.1 P1.01 {} V+ I1 CR-N {} {"J1.01": "We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus.", "P1.01": "Employeey were nice.", "V1.05": "They send back the deposit on that day. I really recomend it!"} {-0.001484964,0.07802013,0.07622886,0.046620205,-0.01934693,0.027051387,0.06650585,-0.06542926,-0.042499557,-0.057628155,0.047901716,0.13079892,-0.024303935,0.048126306,0.024019744,-0.035899594,0.0828963,-0.03425495,0.041304205,-0.083167285,-0.0561066,-0.066866815,-0.023853134,-0.019471407,0.038860142,0.038200162,-0.019404616,0.04461891,0.01929453,0.0034395196,-0.03666644,0.040576715,-0.0063802926,-0.028504003,0.018605944,0.049556896,0.047106247,-0.054536935,0.017715618,-0.013054999,-0.026103364,0.043131337,0.10692206,-0.0038809832,-0.07316509,-0.049868092,0.07190725,-0.011930081,0.016216347,0.040255904,0.121516086,-0.0482336,0.07811073,-0.0070181983,-0.038595464,-0.032083858,0.03845698,0.0017685132,0.0005971459,-0.061360262,-0.015244923,-0.031528637,0.03902886,0.03366238,0.020143766,-0.08146346,-0.11455408,-0.04952401,0.061749622,-0.10877045,-0.06542435,-0.066959135,-0.022040166,-0.017667066,0.0116796605,0.024849162,-0.007591605,-0.015159909,0.00061146193,-0.06165365,-0.0053121326,-0.054384872,-0.017818196,0.082959004,0.008307062,-0.0922391,0.042299543,0.00558295,0.046517674,0.021074979,0.11472557,0.10419837,-0.022872964,-0.0542493,-0.0067090853,-0.044947878,-0.06655008,0.0754846,-0.0327072,0.060797255,0.07807792,0.16414264,-0.005503269,-0.016023204,0.0182231,-0.014697484,0.049877692,-0.050483935,-0.029998781,-0.04785547,-0.012125709,0.079780415,0.03216945,-0.019773237,-0.009430915,0.02168173,-0.04948843,0.01595184,-0.010314357,-0.033254247,0.06592069,0.059758823,0.016903067,0.008118226,-0.10413694,0.015087909,0.10037662,-3.0484464e-33,-0.021099655,0.09297093,-0.049454737,0.07948044,0.093284644,-0.04553578,-0.018266218,0.069949396,-0.006026514,0.03580004,-0.042071357,-0.00714845,0.028656319,-0.02054355,-0.040731102,0.009047666,-0.05758258,0.03900492,-0.010999519,0.054428488,0.01843657,-0.0063433,-0.020846196,0.041802958,0.063739814,0.008374173,-0.05062213,0.03542776,0.078104556,0.0146107795,-0.013452446,0.044770088,0.06706977,9.2011294e-05,-0.059296146,-0.033462394,-0.061784722,-0.02430986,-0.041327175,-0.041345306,-0.005335201,-0.009062132,0.014325511,0.007189949,0.026908355,0.047502026,-0.019432722,-0.0066383956,-0.013460806,0.03571271,-0.087147124,-0.026988199,-0.043445908,0.04470277,-0.07877986,-0.06378936,0.0336841,0.0067376117,-0.012027076,-0.05459554,0.075666614,0.10395256,0.009883176,-0.12948179,-0.03127704,-0.08764086,0.014851529,0.006151586,0.087644115,0.0161893,0.03601772,0.11016558,0.0013108127,-0.04808394,0.01102415,0.026578438,-0.07688359,-0.029167332,0.0015024715,-0.0058814376,0.09171878,-0.06255361,0.008675344,0.034544624,0.05207542,0.023672892,0.058866553,-0.09023321,-0.016371777,0.061917678,0.0018683431,0.019809516,0.07864369,0.008674236,0.03656505,9.717274e-34,0.07421852,-0.0021491353,-0.016441436,-0.07695885,-0.035932396,0.015195431,-0.05770189,0.015686512,-0.012890077,0.07541121,-0.08722265,0.007295127,0.022927137,0.007149264,-0.057689518,-0.041701302,0.03184476,-0.07889047,0.023796739,-0.03237052,0.039092697,0.089142755,0.056181002,0.021564683,-0.015704932,0.04512473,-0.021709504,0.007469976,-0.0866831,0.028691141,-0.061867483,0.047126837,0.014619943,0.036082197,0.035566684,0.027476948,-0.031845987,0.010987244,-0.024051022,0.042610805,0.016208777,-0.055794753,-0.031716187,0.0478649,0.064149,-0.04973636,-0.008461457,-0.06746266,-0.0055479915,-0.051846683,-0.0209447,-0.019197136,-0.1014206,0.0061398507,-0.024421245,0.015304646,0.050117362,-0.07936693,0.00056640734,-0.017016413,-0.14418411,-0.030288618,0.07303427,0.034344833,-0.02328966,-0.14307818,0.055182543,-0.043641206,-0.0686814,-0.013616417,-0.06362665,-0.008718326,0.019202746,0.10350014,0.02397059,-0.005670309,0.14003296,-0.07476721,-0.07514604,-0.017748589,-0.0648559,0.032617882,-0.001635305,-0.0035192852,0.07435455,0.02401353,0.021938317,-0.09318297,-0.047284316,0.048257705,0.0065168203,0.0024401913,-0.02788736,-0.0019296673,-0.014558089,-3.464866e-08,-0.05394125,0.089491084,0.039274637,-0.0014154753,0.026396817,-0.18395376,0.015480743,0.054489397,-0.015978344,0.0005333348,0.012685011,0.0030383212,-0.06318177,0.0018472566,0.056038458,0.038484316,0.043792292,0.015707904,-0.048251268,-0.028671209,0.032759584,0.04084564,-0.057044946,-0.033712316,-0.028739532,0.015446757,-0.026330896,0.0067632026,0.04655078,-0.03404542,-0.059948623,0.039806936,0.0041621844,-0.03651545,-0.03551179,-0.015544544,0.06453218,-0.09649973,0.020457018,-0.017317217,-0.037545368,-0.019957075,-0.067931555,-0.02275947,0.0116907675,-0.0014445838,-0.041205842,-0.007417609,-0.08072334,0.008421606,0.0029244581,-0.049129583,-0.01676557,0.051055368,0.043193556,-0.09311753,-0.05812858,-0.06696387,-0.006747038,-0.0030124886,-0.01942215,0.06977041,-0.075675204,0.006118654} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:24.96409+00 2026-01-25 01:27:50.253329+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 249 google Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB 1 t 252 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very friendly and helpfull staff. Quick and correct in service. Close to the airport so very well recomended. very friendly and helpfull staff. quick and correct in service. close to the airport so very well recomended. 5 2025-07-29 01:27:48.340624+00 en v5.1 P1.01 {J1.01} V+ I2 CR-N {} {"A4.01": "Close to the airport so very well recomended.", "P1.01": "Very friendly and helpfull staff. Quick and correct in service."} {-0.012184864,-0.00038267774,0.016230525,-0.0033985106,-0.073199384,0.014126016,0.06499713,-0.024260024,-0.042488005,-0.008896896,0.032791253,0.020872263,-0.0467339,0.044573665,-0.032963324,-0.0363048,0.08464213,-0.12501842,-0.010285724,-0.104021534,-0.023177689,0.04000892,0.07125572,0.025694521,-0.08630332,-0.02259784,-0.008233373,0.045594726,0.055187564,-0.030509058,-0.026667815,0.063768856,0.0013659393,0.012191376,-0.025159562,0.104784526,0.09302562,-0.011665421,0.009532061,0.0071149487,-0.054499447,-0.048153024,0.040070083,0.0010350589,-0.023431053,-0.0056703673,-8.769208e-05,0.0054185516,0.08616433,0.01807392,0.02647275,-0.068395846,0.08891647,-0.012404653,0.016764166,0.029674241,-0.021087494,-0.048309863,-0.022260264,-0.06849514,0.024454627,-0.024635626,-0.09924811,0.017198646,-0.013500388,-0.026358686,-0.075528845,-0.08729807,0.079963475,-0.16877367,-0.07580605,-5.4267824e-05,0.07484814,0.05463842,-0.017327448,-0.006879722,0.041538585,-0.03764654,-0.015455503,-0.054406196,0.034732208,-0.022049798,0.030241847,0.079120636,0.006426154,-0.10198067,0.031001138,-0.056100175,0.0049255574,0.029404394,0.08532487,0.10589231,-0.010390812,-0.06294975,-0.048104562,0.030039046,0.0035215102,-0.00015052727,-0.1088848,0.061249945,0.00526919,0.09365502,0.008475161,0.010328244,-0.052650787,0.014198612,-0.040261716,0.029402392,0.030516183,0.0055279387,-0.045244236,0.0005276811,-0.09082328,-0.012483464,-0.004685006,0.042245246,-0.026059126,-0.024005206,-0.004143104,-0.05641079,0.00016851438,0.050947625,-0.025155745,0.0051452606,0.012897554,0.025657639,0.07723192,-1.3785341e-33,0.0015701256,0.14761521,0.0032658349,0.03420736,-0.0070455456,-0.033158444,-0.11235009,0.03338586,-0.012612346,0.04754175,-0.056987077,0.044269748,0.021302858,-0.05714162,-0.005781257,-0.023588616,-0.038516022,0.03828158,-0.107974924,0.05972149,-0.04160191,-0.078697555,-0.012779831,0.025605658,0.13221957,-0.023322843,0.0066611515,0.031946316,0.16067621,0.03722343,-0.050177958,0.02261197,-0.031773224,-0.02546241,-0.031039406,0.009391628,-0.108167514,-0.06581284,-0.032729022,-0.035899088,-0.010591281,0.029353272,0.0025678477,0.047147185,-0.0022386806,0.04428651,0.0063838507,-0.0004944151,0.052911453,0.019430006,-0.04981024,0.01424541,-0.04921293,0.1069505,-0.0034646573,0.011304307,0.05576837,0.04358638,0.017399915,-0.023229765,0.07167284,0.059507124,-0.044419203,-0.027632583,0.035008177,-0.085970804,-0.03133805,0.032734722,0.12628303,-0.04168803,-0.0145186875,0.06302722,0.09995088,0.054046977,-0.08060884,0.06463572,-0.045212183,-0.03229951,0.071661144,0.08494032,0.025028616,0.072777286,-0.011720813,0.049269054,0.0362435,-0.07197663,0.017383816,-0.06238027,-0.10250174,0.076407805,-0.049668934,0.058045294,0.028922861,0.048918977,-0.084665835,-3.3222154e-34,0.0735923,-0.0002796426,0.008059766,0.0320149,-0.06645666,0.01416894,0.0032420945,0.05260301,0.03462226,0.10287643,-0.11268787,0.008234167,-0.0009474567,-0.0041185776,-0.022755874,-0.016338391,0.04423728,-0.022583365,-0.0010932061,-0.06699993,0.030697864,0.07194066,0.0067573707,-0.04280474,-0.035026673,0.04663412,-0.027352815,-0.026851013,-0.14675203,-0.05912038,-0.060871538,0.0065163346,0.021364108,0.008372507,-0.06249769,0.05893454,-0.010997572,0.019160323,-0.0096240435,0.07057237,0.018775137,0.029672416,-0.059228428,-0.046937708,0.007885067,-0.063269846,-0.012983472,-0.043425903,-0.087811485,-0.053753298,-0.0078001753,-0.03356454,-0.058889024,-0.025558416,-0.01157262,-6.733574e-05,-0.042328496,-0.05123158,0.01402792,-0.05243901,-0.04391797,0.0050113723,0.013740421,0.105106644,0.0574951,-0.096818015,0.03179829,0.018250953,-0.014279559,0.01495256,0.019553203,-0.01713176,0.053265188,0.06703661,-0.0050081643,-0.06548342,0.108343236,-0.09863675,0.001061862,-0.007418132,-0.02475005,-0.02259233,-0.020210968,-0.0020496752,-0.029657563,0.02914929,0.08349104,-0.033675753,0.028561957,0.04592406,0.011613274,0.037583206,-0.04880453,-0.036386304,-0.03858579,-2.6040992e-08,0.011005895,0.025350798,0.007145984,0.067034334,-0.039235048,-0.10046361,0.023745747,0.053113595,-0.036934536,-0.031936977,0.026853176,-0.021545287,-0.073769,0.055425484,0.058106102,-0.0064478572,-0.005767224,0.083551034,-0.08698624,-0.012151386,0.023551974,0.05819571,-0.02986626,0.06413505,-0.021996608,0.030742237,-0.007600536,-0.030317796,-0.0038896766,0.01940589,-0.0730267,0.048307646,0.00943577,-0.007553606,-0.00025657163,0.048770446,-0.0017015318,-0.09044617,0.008091565,0.013751817,-0.036717728,-0.039426047,-0.09904971,0.038887788,0.066813834,-0.0024908648,0.049916413,0.014179988,-0.05443422,-0.040378682,0.016692692,-0.004276343,0.03918006,0.012322863,0.00824754,-0.014701738,-0.028709562,-0.08170734,0.023759924,0.08382553,-0.0602955,0.0447747,-0.08194666,0.034822866} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:32.651702+00 2026-01-25 01:27:50.260964+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 251 google Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB 1 t 254 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recommend. Not professional at all the girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recommend. not professional at all 1 2025-07-29 01:27:48.340632+00 en v5.1 P1.02 {} V- I3 CR-N {"girl with tattoo"} {"P1.02": "The girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recom"} {-0.07617096,0.11385547,-0.0109934285,0.047331996,-0.038794003,-0.022368867,0.091148674,-0.033588648,-0.02662522,-0.040220343,0.041302055,-0.048798695,0.010913971,0.00868894,-0.094326854,0.0062063118,0.12997656,-0.031862542,-0.03211826,0.0042877216,-0.07630783,-0.073029555,0.09915891,0.054797247,-0.07403624,-0.0880016,0.026219698,0.0038935659,-0.033861537,-0.011716118,-0.09191169,0.010525009,-0.069830514,0.07512216,-0.04928185,0.013267533,0.027962552,0.038617667,0.02246897,0.02011708,0.010606789,-0.05243926,-0.0032896346,-0.020326022,0.03418944,-0.008859758,0.073324345,0.042850032,-0.024300301,-0.12836759,-0.04446723,-0.05637341,0.01484927,-0.0040903627,-0.04698108,-0.017669557,0.061386663,-0.067106895,0.0203954,0.017173724,-0.018082773,-0.075550176,-0.010392465,0.02306857,0.071723804,0.033595327,-0.0014033634,-0.01225206,0.03717624,-0.029739788,0.0015533456,-0.0398843,0.050658457,0.14443159,0.029819963,0.08192381,0.0708897,-0.008820125,-0.033477165,-0.06641931,0.007337273,-0.025267031,0.029678443,0.020823741,0.028805058,0.04299714,0.013890447,-0.07095182,0.01787958,-0.027053662,0.06583937,0.10782482,0.09029243,-0.034806725,0.010976663,-0.08158501,0.008286694,0.009079545,-0.005404399,0.095059,-0.02351212,0.0262236,-0.021965336,-0.04957613,0.034628097,-0.075101815,0.036101643,-0.096328765,-0.0413146,-0.051756278,0.026728049,0.0063973786,-0.06544739,0.005112399,0.03408319,-0.031465426,0.04909701,0.011274624,0.007699836,-0.0455577,0.02850185,-0.016994525,-0.082360074,-0.01805977,-0.07694353,-0.08442335,0.04955419,1.1151594e-33,0.025980081,0.06235435,0.021854032,-0.076335445,0.099873155,0.096340545,-0.083078936,-0.026846806,0.008186415,-0.006696708,-0.0335403,-0.028922683,-0.050060302,-0.02477492,-0.006118943,0.12611684,-0.08690032,0.044141162,-0.041910138,0.04318666,0.056000307,0.092098154,-0.03690414,-0.0021165735,-0.12863983,0.11115229,0.035901424,-0.010227765,0.023110572,0.026929533,-0.08287059,0.033783954,0.07797564,-0.015693953,0.07226051,-0.0049539027,0.012570161,-0.022334237,-0.018628893,0.07720696,0.06736178,0.015086793,0.06949421,0.07510286,-0.054662626,0.056531847,-0.020785391,-0.06820604,-0.02905928,0.01666045,-0.04670485,-0.0282922,0.028571408,0.053100485,-0.05719142,0.064793006,0.02523532,-0.036796793,0.020740954,0.004845786,-0.033524286,0.041730452,-0.036616813,-0.051109172,-0.04596123,-0.06522443,-0.04987229,-0.03770829,0.025895864,-0.08717256,-0.039430495,0.1126879,0.05846962,0.03332948,-0.089553416,0.0033606119,0.04241518,-0.028804675,0.026596071,-0.010128182,0.044077013,0.0349329,0.017081039,0.008233896,0.03204759,-0.016541442,-0.00041605695,-0.06467564,0.038713284,0.08654736,-0.07535889,0.08033577,0.05255582,-0.03997099,-0.04422854,-3.194813e-33,0.092468984,-0.0006875465,-0.0030230011,0.04266254,0.061818097,-0.065428264,-0.04084634,0.10112045,0.08126581,0.04571442,0.101002194,-0.17287043,0.070187315,0.053281408,0.028603906,-0.026352985,-0.015969252,-0.020304607,-0.020664457,-0.063303076,0.026070964,0.02959335,0.054970138,0.061975945,-0.016264742,0.0076461164,0.10451358,-0.0006403461,-0.037412,0.0366892,-0.016514217,0.017646946,0.018094685,0.024586612,-0.017904654,0.059069287,-0.023225974,0.004989409,0.034132574,0.020337174,0.010415958,-0.06742644,-0.09315766,-0.027026787,0.051088292,-0.07252397,-0.03819626,-0.04565261,-0.01272743,-0.053484958,-0.044142883,-0.052794356,-0.02962486,0.0043395143,0.010036209,-0.08606408,0.063346826,-0.007973675,-0.0010068819,0.06871808,-0.049613792,-0.04237989,-0.041328985,-0.04898694,0.026716525,-0.015502237,0.021204675,-0.009195075,-0.040940482,-0.023286344,0.038909115,0.037438102,-0.051678907,-0.012013699,-0.07810497,-0.0421685,-0.022092823,-0.0006528442,0.018545244,-0.017347258,-0.019085342,-0.095363975,0.042410485,0.049232446,0.036433384,0.11579322,-0.014771772,0.033827547,-0.03255791,0.02734116,0.021504037,-0.06309956,0.024212804,0.005216307,-0.0026863457,-3.1058242e-08,0.045755416,0.039823774,0.05863715,-0.023751495,0.015493579,0.025018018,-0.12867506,-0.10633053,0.0056828256,0.033348415,-0.08529282,0.045403264,0.013151428,-0.027162258,-0.04841365,-0.006321653,0.07872666,0.052443307,-0.023312818,0.0062095234,0.002460521,-0.0036366596,-0.00012228268,-0.045509994,0.0023093391,-0.03767338,-0.07561602,0.0732198,-0.11191386,0.006281514,-0.01874829,-0.021019416,-0.021449992,-0.01728408,0.007371727,-0.02095906,-0.023841586,-0.053344414,0.046577882,0.022108212,0.010299109,-0.03414172,0.017306333,-0.00050939893,-0.005431038,-0.023733217,-0.0170089,-0.07858447,-0.033145335,-0.005101506,0.032451734,-0.015753731,-0.014785318,0.08255518,-0.023142207,-0.05515871,0.048778553,0.013907862,-0.058472246,0.071627595,0.06520809,-0.03728945,0.021246467,0.012249083} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:44.311706+00 2026-01-25 01:27:50.621388+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 281 google Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB 1 t 284 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer la vidéo avant notre arrivée.\nJ'ai du appelé le service qui parle anglais. ( moi qui parle pas un mot d'anglais c'était compliqué)\nSuite a mon appel, ils ont envoyé la vidéo. ( avant sa aurait étais plus simple).\nLe reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire les papiers été rapide.\nLe retour du véhicule a été rapide aussi.\nLe personnel super sympa. le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer la vidéo avant notre arrivée. j'ai du appelé le service qui parle anglais. ( moi qui parle pas un mot d'anglais c'était compliqué) suite a mon appel, ils ont envoyé la vidéo. ( avant sa aurait étais plus simple). le reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire les papiers été rapide. le retour du véhicule a été rapide aussi. le personnel super sympa. 5 2025-09-27 01:27:48.340799+00 fr v5.1 A4.04 {} V- I2 CR-N {} {"A4.04": "Le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer", "O1.01": "Le reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire ", "P1.01": "Le personnel super sympa."} {0.00280206,-0.010623113,0.0008414617,-0.2092489,-0.004512135,0.0793804,0.027251912,0.07638726,0.026116336,0.02208876,-0.012315941,-0.014018249,-0.009290827,0.0075130956,0.00508772,-0.11458257,-0.031276673,-0.013374174,0.011362215,0.022528619,-0.016877053,-0.01952858,-0.00851491,0.05334226,-0.045241803,-0.007360875,0.008317252,0.030723874,0.01436745,-0.02441681,0.0058641876,0.028940914,-0.033451542,-0.010021539,-0.01942477,-0.033390503,0.04379196,-0.057465002,-0.04548905,0.055649385,-0.019490503,-0.046707284,-0.010286966,-0.03159375,0.049072836,0.068371736,0.06747866,0.028422253,-0.046511047,-0.074307404,-0.051988717,0.029754741,0.041418776,-0.06672896,-0.07667277,0.023504935,-0.02245068,-0.06441508,0.120597064,-0.05167317,-0.0015199307,-0.03727015,0.050829023,0.047889337,-0.021294108,-0.07115639,0.029985646,-0.08089219,0.01394723,0.051865965,-0.01104285,-0.014154953,-0.0815142,-0.081407905,-0.059567396,-0.03665138,-0.014888275,-0.01966994,-0.04032923,-0.21141233,0.08976315,-0.039789934,0.028862545,0.084623866,0.001097545,-0.021860205,0.013873341,0.058435816,0.035758287,-0.078783676,-0.03386584,0.028648268,-0.11852429,-0.020153351,-0.004621177,0.012214935,0.012102318,-0.079989776,-0.014016458,0.057656657,0.113476805,-0.032665838,-0.021775384,0.05473184,-0.08355266,-0.006857752,-0.03653489,-0.026236476,-0.051845398,0.03414298,0.011676178,-0.012597898,-0.016034018,-0.1028117,-0.062014416,0.0048746136,-0.06594385,-0.11135705,-0.045071132,-0.033536877,0.013945981,-0.07616187,-0.024386108,0.008564985,0.031786446,-0.0017927459,0.14935103,9.822428e-33,-0.064910516,0.020266838,-0.016845059,-0.024743522,0.083871804,-0.013472608,-0.03001041,0.04866693,0.0015630701,0.029193085,-0.06857439,0.033857252,-0.027005758,0.0043417765,-0.039937332,0.012248456,0.011710618,-0.028583465,-0.028673993,-0.03967996,-0.04652805,-0.003455456,0.053110756,0.16640317,0.08036537,-0.041191068,-0.01594541,-0.06190662,-0.019188726,0.030985134,0.06172029,-0.013269515,-0.002517667,0.038853385,-0.024875415,-0.03318465,-0.025283108,0.03852564,-0.015356465,0.04857622,0.0026610566,0.032639123,-0.04797709,0.015072754,-0.08640887,0.072095506,-0.020985829,0.10030601,-0.019267848,-0.044757493,0.03204957,0.042782336,-0.051908657,-0.022212295,-0.02139878,0.041395057,-0.013408988,0.08680214,-0.009783716,-0.03417689,0.041695964,0.03062167,0.004296307,0.016531702,-0.0463187,-0.046582494,0.08342024,0.015582681,0.1293637,0.028052682,-0.034822363,0.05188162,0.082338214,-0.028952157,0.10479154,0.053458203,-0.0453956,0.028467692,-0.006966956,0.0047574323,-0.062926814,-0.022320857,0.011716189,-0.028868575,0.07233217,-0.049007326,-0.014393742,-0.007815781,-0.036888868,0.010367489,-0.034121327,0.059551243,0.055712122,0.009297257,0.014770819,-1.0196848e-32,0.0028583906,0.07833134,-0.024069734,0.098254,-0.001298523,0.031767376,0.047398195,-0.006588983,0.011155053,-0.012797708,-0.057563324,-0.068168595,0.022996893,0.020309424,-0.032707836,0.039327625,-0.01918865,-0.028191952,-0.05796948,-0.035836168,-0.023201939,-0.086445965,0.039534062,0.0051253624,-0.01629777,0.007590745,0.025023866,0.028511574,-0.06843519,-0.039871223,0.028491195,0.033041432,-0.02890525,0.026692173,-0.0076233973,0.0761992,0.12683067,0.064457886,-0.07887678,0.054308787,0.023090426,0.064480714,0.052825086,-0.029661935,-0.017815577,-0.048587084,-0.04279792,6.588676e-05,-0.09128014,-0.004376408,0.010226318,0.0057013743,0.033751793,0.009337448,0.063145615,0.06453813,-0.010744191,-0.102587625,-0.021632046,-0.013137694,0.083141,-0.011804896,-0.030738607,0.049397174,0.09170134,-0.033841122,-0.06744991,-0.017345725,-0.03369387,0.051922407,0.038152277,-0.041994005,0.0009897795,-0.011632684,-0.06746469,0.038854066,0.051655933,-0.045108706,0.027250782,0.004737228,-0.1538228,-0.07694092,0.02309866,0.0012919639,-0.016030297,0.08714309,0.023769546,0.027575938,0.050189823,-0.034466136,0.038791787,0.030992627,-0.010935009,-0.034550875,-0.024339767,-5.715311e-08,-0.0063776555,-0.083177164,-0.069947176,0.049690425,0.03186838,-0.060219742,0.010616802,0.015029956,0.01008134,-0.015527574,-0.05512984,-0.053624537,-0.057246003,0.0423952,-0.0045017567,0.118785,0.019353433,0.079795115,-0.062617764,-0.009420201,0.03022855,0.009577106,0.0060168183,-0.05708131,-0.062265802,0.029412286,-0.02274336,-0.049685486,0.05218699,-0.1082573,-0.101890914,0.038607333,0.03312821,-0.05026373,0.02999186,-0.0071467664,-0.012647293,0.09396207,0.035482354,0.021415012,0.041479465,0.0140423095,0.002880806,-0.07346633,0.02371011,0.023947442,-0.04248217,0.017283766,0.011547001,0.058882903,-0.083490916,0.016500492,0.07077819,0.06309689,0.0331095,0.025487583,0.059278294,-0.0723233,0.035179608,0.0011353166,-0.057606902,0.0670897,-0.04478441,-0.025774885} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:53:51.909771+00 2026-01-25 01:27:50.80145+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 257 google Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB 1 t 260 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Efficient service, good daily rate.\nWould definitely use again and recommend efficient service, good daily rate. would definitely use again and recommend 5 2025-09-27 01:27:48.340676+00 en v5.1 J1.01 {V1.01} V+ I2 CR-N {} {"J1.01": "Efficient service, good daily rate.", "R2.01": "Would definitely use again and recommend"} {-0.116407044,-0.009667777,0.00046273216,0.020279448,-0.062008783,-0.027895493,-0.0010505217,-0.0313779,-0.030493539,-0.02685191,0.019422315,0.11088238,-0.038562953,0.05022949,0.06735125,-0.007047653,0.11334366,-0.030044852,-0.009422779,-0.08243155,-0.098904416,-0.024355201,0.017420692,0.020851921,0.025207331,-0.016050681,-0.004053895,0.054085784,-0.00847522,-0.023603689,-0.0026381696,0.070727736,-0.052842762,-0.010100171,-0.007729586,0.012289348,0.025939247,-0.032642014,-0.037459955,0.03181655,-0.017787497,-0.04963892,-0.08370838,-0.032504804,-0.027950512,0.0044846614,0.018705616,0.024018338,0.08894794,0.041821852,0.080188885,-0.06942782,0.021699106,-0.016715556,0.012261507,0.03402935,-0.06646219,0.0010208564,-0.012547715,-0.040040318,0.034782436,0.036417283,-0.04313705,0.025970941,0.051626813,-0.011973773,-0.029735027,-0.013673581,0.030307565,-0.03650606,-0.076040015,0.083830774,0.006956795,-0.018488089,-0.042772908,0.0030822232,0.03575508,-0.10236557,0.00054510584,-0.029947195,-0.0059260307,-0.014455964,-0.04640106,0.018968463,-0.0032236648,-0.09201564,0.011688716,-0.0866722,-0.008014002,-0.0326429,0.10393447,0.18041863,0.08706646,-0.040405422,-0.0063931826,0.058580894,-0.076451376,-0.010440961,-0.05013313,0.045184057,0.030978775,0.060591236,-0.0417028,-0.020273995,-0.03822743,-0.0555114,0.009298083,0.11045924,0.011523426,0.070017375,-0.011983541,0.035941284,-0.050435036,-0.005446949,0.00036280477,0.09300102,-0.008788788,-0.027480643,0.03239295,0.086247034,0.0045791906,0.024949137,0.04021689,-0.03798,-0.023460422,-0.0022376797,0.11337529,-2.0606677e-33,-0.082147375,0.09223971,-0.010055343,-0.081602395,0.019112073,0.0164314,-0.019798066,0.043898623,-0.03315928,-0.07070583,-0.059705663,0.045106918,-0.00618955,0.060008075,0.008517458,-0.03127252,0.046631657,0.107474364,0.027950471,-0.004607996,-0.0071031144,0.016638333,0.018520713,0.040516183,0.06743093,-0.027392222,0.111205004,0.028730594,0.15028508,-0.016466036,0.06830881,-0.034535795,-0.08688365,-0.013096223,-0.024601,0.061435286,0.00509285,-0.016478777,-0.055202495,-0.029443974,-0.04168446,0.07714428,0.005010089,-0.00769403,-0.029593397,-0.007905869,0.0026804109,-0.02588434,-0.017982477,-0.009140959,-0.0052615656,0.06676594,-0.056472708,0.089878574,-0.041752182,0.05010006,0.012105456,0.008441709,0.019018948,0.012084267,0.074735545,-0.07283841,-0.038233865,0.0062033096,-0.023141485,-0.03441648,0.018510086,0.029044215,-0.03793278,0.0427596,0.043879185,-0.054627158,0.12416041,-0.0003095727,0.021575883,-0.01095865,-0.03228435,-0.06981939,-0.060881972,-0.0024917887,0.06308091,-0.015815949,-0.013687223,0.027403567,0.06732563,0.032016795,0.03187223,-0.04564872,-0.026580432,0.08925474,-0.053641032,0.07037947,-0.023785146,0.044428173,0.017135175,1.1503059e-33,0.010831822,0.077114925,0.015785122,0.10641418,0.005516632,-0.0007496649,-0.08339953,0.06614043,-0.010744979,0.03265774,-0.061806828,0.020059306,-0.007257855,0.038485546,-0.0310624,0.0018232011,-0.0559534,-0.12682201,-0.031752747,0.018623738,-0.05146049,0.124036305,0.004799692,-0.018405192,-0.020938627,0.035789277,-0.11000451,0.04731047,-0.047754392,-0.051204283,-0.04523298,-0.060810257,0.04583532,-0.013273818,0.020127438,0.042796165,0.082068235,0.018050862,-0.016170705,0.09137692,0.018213134,0.0069563105,-0.046598,-0.035675064,-0.038767483,-0.010962023,-0.02672587,0.007746251,-0.029928911,0.06765486,0.006922591,-0.04831687,-0.077082716,-0.007637007,-0.036898106,-0.032752488,-0.015450502,-0.035694703,-0.11123004,-0.03692618,0.005737665,-0.008677921,-0.03743103,0.08093097,0.09210418,-0.05827134,0.084762104,-0.046500564,-0.03459601,-0.0039606886,-0.025902066,0.04368164,-0.01388429,0.052949212,-0.062500834,0.0056646853,0.036989767,-0.029154764,-0.023568232,0.08495769,-0.100642584,-0.043251928,0.005032449,-0.055197686,-0.043147843,-0.071387224,0.0628863,-0.05160107,0.013379962,0.03401828,-0.061962854,-0.050362945,-0.092164196,0.06303403,0.023263676,-1.9052987e-08,-0.021205518,-0.0041164076,0.05607484,0.09016146,-0.017989013,-0.11505156,0.026948512,0.07292441,0.006235193,-0.03989191,0.036513407,-0.041731745,-0.08251939,0.0381936,-0.035831083,-0.035236076,0.09045315,-0.020118406,-0.05457124,0.0024935775,0.04791442,0.110086374,0.039467435,0.013889315,-0.0144818695,0.08289254,0.053263765,0.06752948,-0.021821111,-0.04401355,-0.05778741,-0.010072909,0.039068975,-0.023386559,-0.06190085,-0.058719717,-0.075947344,-0.07450743,-0.030390155,0.05328683,0.06343203,-0.00767439,-0.00928413,0.022006148,0.08868512,-0.07157656,-0.03802866,-0.024745937,0.018429745,-0.018138872,-0.059937794,-0.007233011,0.058276225,0.0118225925,0.06977169,-0.012646631,0.01918842,-0.015990723,-0.053701926,0.11757547,0.021059109,-0.06380569,-0.075795196,-0.010355483} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:50:32.971357+00 2026-01-25 01:27:50.706334+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1294 google ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE 1 t 1297 Soho Club unknown Fainas klubas, draugiška atmosfera, rekomenduoju fainas klubas, draugiška atmosfera, rekomenduoju 5 2021-01-30 18:34:31.336452+00 lt v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Fainas klubas, draugiška atmosfera, rekomenduoju"} {0.010012933,0.08765988,-0.07342722,0.026571332,-0.07220425,-0.03856352,0.014966731,0.012364727,0.028049525,-0.003322964,0.02244206,-0.09235129,-0.040630493,0.019899571,0.00689683,-0.061332878,0.0016137166,0.032915033,0.0008699004,0.029569857,0.033913087,-0.045175396,-0.032342397,-0.025833728,0.007999398,-0.039078437,0.023424305,-0.017991815,-0.023942217,-0.10889895,-0.03135792,0.046414945,0.0040042126,-0.043761704,0.03962066,0.07839522,-0.068332374,-0.026418624,0.0043652407,0.024778955,-0.039261173,-0.021274304,0.001333846,-0.005879803,0.079449676,0.059804607,-0.05863309,0.075529486,0.066420466,0.01662833,-0.12125736,-0.047202364,-0.08534197,0.039057232,0.10345552,-0.1432508,0.0013809185,-0.005226225,0.00045986305,-0.0058753025,0.061189782,-0.0010850311,-0.05331923,-0.005695341,-0.061532766,-0.05131935,-0.051268652,0.07993229,-0.06929019,0.08335563,0.04841032,-0.018022388,-0.039576862,0.008418162,-0.032229483,-0.010011406,-0.04444448,0.0072535146,-0.021186965,-0.060223203,0.037030187,-0.06077543,-0.036386997,-0.07048079,-0.07408745,0.018033827,0.012330564,-0.061212417,-0.025352478,0.011861503,0.047119725,-0.0057433057,-0.048846297,-0.04193831,0.00663912,0.020961603,-0.038009327,0.069319345,0.023505786,0.030625742,-0.019440508,0.024491565,0.008716151,-0.038211625,-0.16724108,0.03525,-0.06727645,-0.054570187,0.029278763,0.03426083,-0.10224032,-0.025322631,-0.05162983,-0.03896289,-0.0050845915,-0.00218363,0.021946907,-0.01780621,-0.032698132,0.05015972,0.03495184,-0.051962126,0.06582022,0.006930747,0.055876024,-0.013676291,-0.031519193,4.612728e-33,-0.018983742,-0.055744033,-0.03791418,-0.013449078,0.052531585,-0.08666773,-0.06726832,-0.08337294,-0.004493657,-0.014810185,-0.079143,0.042713586,-0.028356805,0.014290154,0.009388808,-0.0097429855,0.058209497,-0.015583849,-0.07696885,0.088406965,0.027961908,0.025865756,0.026518656,0.023475772,-0.011396249,-0.015119323,0.048085354,0.0024248331,0.009545259,0.054494083,0.005061592,-0.089276426,-0.06553428,-0.029763533,-0.06046958,0.017587528,-0.04233565,-0.03419863,-0.109638624,-0.031810753,0.0016180605,-0.08650058,-0.029548315,0.042007964,0.014893813,0.036278747,0.014293406,0.015328059,0.10123191,-0.016482819,-0.0806245,-0.0058934395,-0.019459585,-0.054013237,-0.012050675,-0.019193377,-0.024849607,0.0031387967,-0.028563501,-0.020998534,0.02890891,0.007863635,-0.043308094,0.01313028,-0.06273528,-0.025809787,0.06205456,0.053535655,0.04957677,-0.06132366,-0.022822607,-0.061317697,0.015010445,0.0531028,-0.016566193,0.016804885,-0.025177635,0.03478301,-0.021547925,0.055520404,-0.050000142,0.010073912,0.014691876,0.0036565855,0.04581314,0.016645037,0.0050345375,-0.041944645,0.077441454,0.03407677,-0.09176594,0.035059076,0.06395754,-0.010735372,0.034895286,-6.9070175e-33,0.05284021,0.028891923,0.012884712,0.055624653,0.09349362,0.11224504,-0.013547155,0.112506025,-0.005064089,-0.0035619123,-0.049758557,-0.118384294,0.04686527,-0.04882317,0.003216215,0.011131546,0.06804193,0.055655327,-0.08572885,-0.05427356,-0.061386444,0.07576603,0.0470893,0.017039383,-0.004119616,0.02357105,-0.015620612,0.023682691,-0.10370151,0.019803083,-0.013986173,-0.057647437,-0.0424802,0.1119705,-0.03552172,0.0036612442,0.08490627,0.016681118,-0.029580759,0.07339719,0.09786503,0.075427875,-0.0123232,0.05448424,-0.0249124,-0.050236978,-0.10583162,0.035669617,0.035854734,-0.12846902,0.10612738,0.044076744,-0.008305974,-0.05374059,0.09792415,0.05307806,0.07243737,0.017701583,0.009673328,0.11188101,-0.010578576,-0.104050845,0.043335065,0.045773704,0.028930029,0.028199399,-0.0022414627,0.03288173,-0.06149377,0.07102867,0.03280148,-0.07555689,-0.09441032,0.10495051,-0.053604204,0.042975478,-0.10140889,0.02862274,0.01153238,0.01195443,0.021640494,-0.075497456,-0.029429043,0.08612496,0.04270041,-0.06171833,0.06385157,-0.07352945,0.019570915,0.010376871,0.011495183,-0.021140762,0.010239349,0.059619315,0.07048442,-2.9960496e-08,0.021529166,-0.014129215,0.013189296,0.014316291,0.052087724,-0.11109878,-0.011398567,0.037848108,-0.04300802,0.043010127,-0.013909305,0.018586103,0.004856915,0.049869675,0.063326724,0.00093271106,0.03350652,0.09110218,0.009738731,0.0011182827,0.10983774,-0.021419387,-0.013814365,-0.07312958,-0.037139427,0.0023327048,0.0582043,0.051857606,0.006423617,-0.04081254,-0.054118887,0.046245,-0.033887733,-0.04632885,-0.088684835,0.057912268,-0.010158322,0.0072788727,-0.05674318,0.029262949,-0.011507065,-0.052744552,0.059978317,-0.01917462,-0.019719986,-0.024087511,-0.0017361678,0.0447734,-0.044281047,-0.05545188,-0.04541598,0.0127562815,0.10281912,-0.03976634,0.023965983,0.017604,-0.0043424717,0.021839881,0.01650354,-0.007826106,0.14673981,0.052718077,0.037631012,-0.031434074} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:50.006229+00 2026-01-29 18:36:00.703758+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 258 google ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB 1 t 261 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Car rent with shuttle from airport, but very close, so it takes about 5min from airport there. Also the People there are nice and helpfull, speak good english, so no problem to find with them.\nThanks Dany, Carlos and Antonio :-) car rent with shuttle from airport, but very close, so it takes about 5min from airport there. also the people there are nice and helpfull, speak good english, so no problem to find with them. thanks dany, carlos and antonio :-) 5 2025-01-25 01:27:48.340685+00 en v5.1 A4.01 {} V+ I2 CR-N {} {"A4.01": "Car rent with shuttle from airport, but very close, so it takes about 5min from airport there.", "P1.01": "Also the People there are nice and helpfull, speak good english, so no problem to find with them."} {0.11798879,-0.0653905,0.057115696,0.09694648,-0.03315589,0.032651078,0.044574615,0.022681534,0.0037407556,0.039500862,0.030374061,-0.034019202,-0.054334886,0.059914164,0.040962245,0.0048665926,0.051946547,-0.07715394,-0.02782994,-0.09523398,0.06437772,-0.032298554,0.01508763,-0.041818667,0.07033277,-0.0023389012,0.06461937,0.025015814,0.094654135,0.014476702,0.015293377,0.048426017,0.021714995,0.03491467,-0.008365041,0.066643484,0.0126972515,-0.045201905,0.06845928,-0.04918879,0.0058918404,0.09753018,0.021974167,0.0024521707,-0.019267313,-0.048015885,0.089330494,0.054590296,0.10973887,-0.05251475,0.027899174,0.030583575,0.030051874,-0.012465316,-0.08344521,0.026297169,-0.01426407,0.0077151377,0.015311068,-0.045465074,-0.007703911,0.01972343,-0.061443992,0.016851993,-0.073819384,-0.021993466,-0.016220165,-0.013182669,0.0008178978,-0.090342484,-0.051424224,-0.0020344707,-0.018986609,0.026148798,0.03737987,0.05691466,0.10627962,0.078022934,0.06486392,-0.04958315,0.018023033,0.04873957,0.016466416,0.029667392,-0.0422871,-0.055199344,-0.035724908,0.05406884,-0.050623212,0.046705384,0.01609238,0.010624065,-0.05181588,0.000690891,-0.01887284,0.003768577,0.022686467,0.038389325,-0.039796174,0.009358082,0.04178089,0.084065504,0.014688534,0.011828242,-0.080710486,0.057229742,-0.0053336867,0.021735167,-0.027767869,0.02757126,-0.021485934,-0.033740263,-0.033231404,-0.031897012,-0.051768854,0.13098522,0.011982328,-0.02987578,0.04229045,-0.03262128,-0.0036988864,-0.010741372,0.040579375,-0.03409981,0.024774946,0.08824193,0.053661846,7.3690956e-34,-0.050892126,0.04414495,-0.003965638,0.09464876,-0.013247249,-0.023760144,-0.05792013,0.06954171,0.01017788,0.018372219,-0.0040482692,-0.04904629,-0.0013414953,-0.058897145,-0.022358414,0.018158998,0.060074784,-0.057716053,-0.08061982,0.0059539713,0.03836583,-0.09159266,-0.019907555,-0.0061424053,0.07410433,-0.023669243,0.00040912692,-0.07883731,0.16222721,0.037538834,-0.100965686,0.06330731,-0.01972797,-0.022014095,-0.038381085,-0.063030876,0.011549285,-0.012637121,-0.063302174,0.003899436,0.0052026967,0.008132418,-0.07428453,0.021336667,0.012427604,-0.021176035,0.018478883,-0.0062973015,0.11895927,0.031829257,-0.039525397,-0.030791825,-0.05846896,-0.0132062035,0.02045576,0.06857367,-0.0076435306,0.029356858,0.046499483,-0.044897895,-0.017305018,0.036900572,0.052811556,0.008612017,0.07286813,-0.014699974,-0.031612787,0.042594288,0.08752853,0.0006310704,0.005273999,0.01744469,0.06407986,0.018017983,-0.0012525483,0.01557684,-0.07716023,-0.050506894,-0.008431691,0.124483,0.036405653,-0.006217312,-0.054514796,0.04398118,0.07044216,-0.03526261,0.0034546987,-0.01164979,-0.016600946,-0.04391822,-0.046657138,0.054473326,0.0092504285,-0.032631103,0.01885802,-2.3823626e-33,0.077540554,-0.07911134,0.024461187,-0.021314044,-0.048673794,0.008880092,-0.0008381081,0.06746936,0.011271513,0.0263269,-0.21211056,-0.09429196,0.096020356,-0.036178373,-0.046597455,0.0162648,0.08429774,-0.050863195,-0.0168673,0.027544253,0.0055771414,0.030245088,0.034270078,-0.044397287,-0.005162881,-0.04076487,-0.028657407,0.070109285,-0.045469925,0.06441224,-0.1043038,0.04456634,0.025956877,-0.038575586,-0.11291695,0.05463627,-0.011799597,0.077311896,-0.029921079,0.024428802,0.033047583,-0.09462294,-0.070997454,-0.11624465,0.08027136,-0.030906223,-0.07289492,-0.09477423,0.010616696,-0.09069455,0.09460652,-0.019735258,-0.1004255,0.043402907,0.0421829,-0.06081191,-0.00024502032,-0.047203142,0.046232946,-0.013628023,-0.05213841,0.015412945,0.041872047,0.009333929,-0.048094757,-0.052084144,-0.019847253,-0.012577093,-0.0008480377,-0.027672939,-0.046253823,-0.021903615,-0.004164163,0.1023944,-0.05000555,0.034859944,0.12481678,0.035056815,0.06712754,-0.0784874,0.09685857,-0.015238501,-0.0069564725,-0.079418115,-0.006277363,0.050090898,-0.013952797,-0.0014146249,0.013835765,0.003406817,-0.046752468,0.057627946,-0.035942074,-0.047280475,-0.045491513,-3.7296402e-08,0.044375814,0.0041504656,0.03207553,-0.011080466,-0.041339807,-0.052247725,0.031332064,0.11679326,-0.0077860137,-0.028819408,-0.03842868,0.053683177,-0.009977606,0.026259186,-0.06839847,0.03608265,-0.00077507604,-0.010990048,-0.000669579,-0.09536063,-0.023722522,-0.03112093,-0.008034949,0.031718757,0.022135058,-0.014030517,-0.019095454,-0.09049676,0.029333038,-0.120797545,-0.08272564,0.014642977,-0.05772699,-0.032668892,0.03434767,-0.021565545,-0.025008094,-0.06643259,-0.049775407,0.04537635,0.026288832,-0.05397523,-0.079146676,-0.088361785,-0.014046928,-0.00475844,-0.031136425,-0.0554876,0.013253785,0.0052703586,0.027324826,-0.009999607,-0.06456189,-0.02588585,0.04533339,-0.024744596,0.0017174885,-0.05195225,0.046576805,0.018117843,-0.045029398,0.046560816,-0.09054072,0.006603672} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:50:41.345718+00 2026-01-25 01:27:50.714559+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 259 google ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE 1 t 262 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We had to wait a while for the shuttle from the airport to the office however the overall experience was great. Carlos in the office was very friendly! we had to wait a while for the shuttle from the airport to the office however the overall experience was great. carlos in the office was very friendly! 5 2025-03-01 01:27:48.340689+00 en v5.1 A4.04 {} V- I2 CR-N {Carlos} {"A4.04": "We had to wait a while for the shuttle from the airport to the office", "P1.01": "however the overall experience was great. Carlos in the office was very friendly!"} {0.010955541,0.009452702,0.0074958587,0.07268285,-0.021088554,0.0130327325,0.019256998,-0.008513712,-0.0082242675,-0.030543959,0.007937819,0.06265396,-0.011974739,0.028172463,0.047961414,-0.04349075,0.0819244,-0.083506614,-0.01760488,0.013919295,0.03383362,-0.03476628,-0.029311681,0.00035919342,-0.009734904,0.0065946793,0.04519906,0.0915064,0.05544067,-0.05996232,-0.0055892724,0.010718346,0.047094535,0.009679497,-0.007625379,0.061819673,0.10302018,-0.03238618,0.07747721,-0.017278647,-0.032573972,0.027045352,0.081809096,0.058585215,-0.04269084,-0.098260894,0.09179426,-0.05264154,0.11604486,0.0047118235,-0.005695313,-0.02010271,0.08178947,0.0076343827,-0.03143063,0.036764164,0.023182701,-0.036849245,-0.037406757,-0.030780254,-0.054473437,-0.054851968,-0.039353438,0.06997809,-0.08828838,-0.051358595,-0.08644475,-0.08152715,0.105821826,-0.12658973,-0.10071574,-0.004543841,0.023969784,-0.023469444,0.032657918,0.019126743,0.036256738,0.021076974,0.015807949,-0.009811208,0.046149906,-0.06571197,-0.08600333,0.055976067,-0.02917864,-0.054646015,0.0012674857,0.010783144,0.00016294965,0.06050632,0.053033583,0.042089425,-0.0041031525,-0.0019226735,-0.06435885,0.009237176,-0.04740967,0.08866798,-0.05258307,0.026063774,0.013481883,0.09553383,0.019817354,0.024344264,-0.0348186,0.010078518,0.015142464,-0.033090897,0.0054052374,-0.056918267,-0.04897928,9.34625e-05,0.030869277,0.027650855,-0.06106981,0.08381504,-0.0047792164,-0.0102888,-0.02478705,-0.07570309,0.063397,0.031774126,0.038632087,-0.020008741,-0.05264996,0.028455434,0.10057259,-3.61376e-33,-0.04686164,0.04324839,-0.03546877,0.0914351,0.03307019,0.0386432,-0.10461771,0.00016525845,-0.021669209,0.011295328,-0.08505194,0.05677556,0.04457829,-0.040612634,-0.04935217,0.062097065,-0.06960285,0.044230312,-0.10067077,0.043635394,0.03263194,-0.07078189,-0.09334371,0.083685584,0.08007982,0.090494365,-0.0017231029,-0.02145877,0.12400167,0.02910868,-0.14878696,0.099581026,-0.016951108,-0.007937152,0.06294964,0.016787115,0.0015418617,-0.03551149,-0.012825483,-0.029654134,-0.024813144,0.004369847,0.006952389,0.07535737,-0.01673479,0.019602245,-0.017083928,0.068825245,0.09247042,0.013274504,-0.06356718,-0.03647298,0.049324803,0.05588883,0.005555544,-0.030389678,0.024488648,0.080052055,0.02126647,0.005217938,-0.0054657497,0.08739569,0.026673099,0.043556213,0.013604051,-0.06769965,-0.047342952,0.040764537,0.06333397,0.023405736,0.0016095784,0.08914635,-0.02581847,-0.028758429,-0.0031404216,0.018338434,-0.06716541,-0.035935268,0.0542582,0.024248794,0.013781224,0.02015915,0.0325838,0.0010240077,0.023251891,0.0059768925,0.049841445,-0.02000866,-0.028906299,0.11014951,-0.033058085,0.07318246,0.05469531,0.05101979,-0.0015627316,9.595381e-34,0.05303215,-0.06452279,-0.02400894,-0.04383648,0.012574108,-0.017050922,0.01096543,0.03635426,-0.013542877,-0.047247335,-0.041988786,0.0070511797,0.06448968,-0.015928738,-0.045169193,-0.024823826,0.06866794,-0.07582444,0.020382017,0.006525044,0.054868482,0.04131025,-0.0071800216,-0.047462344,-0.044359352,-0.008648733,-0.011634586,0.057658598,-0.10251199,0.010843215,-0.032153483,0.072843984,-0.050218146,0.0030810505,-0.018555364,0.1046096,-0.00583292,0.04224488,0.06295795,-0.005343954,0.021268098,-0.074529216,-0.079375155,0.02249932,0.06874026,-0.015784113,-0.034354925,-0.11434592,-0.071858086,-0.0101355165,-0.076149106,-0.020165367,-0.15227064,-0.012320987,0.018649902,-0.029059961,0.019460326,-0.03592611,0.028823761,-0.028439172,-0.10910504,-0.02472272,0.052209172,-0.015964204,0.002801458,-0.025722092,0.050999764,-0.030823238,-0.012200114,0.032120574,-0.009594103,-0.049870245,-0.054512963,0.115790345,0.034656476,0.014416591,0.019766716,-0.07407247,-0.07878423,-0.026285416,-0.044940494,0.051136807,-0.055158053,-0.03132885,-0.008527504,0.13074629,-0.00414506,-0.08885446,-0.019194132,0.06186706,-0.006980068,-0.039215785,0.00085755327,-0.08539231,-0.060097825,-2.6539198e-08,-0.029966809,0.071256265,0.067560874,-0.023256725,-0.02074727,-0.02576837,-0.019034976,-0.0050420053,-0.05105116,0.039881293,0.016070422,0.009046538,-0.03676374,0.12005859,0.032157127,0.030031253,0.059376124,0.021267023,-0.03848225,-0.022656607,-0.04765611,-0.00172711,-0.021906044,0.039679434,0.037574124,0.03556962,-0.032950506,-0.039499328,0.05536284,-0.06868109,-0.05487761,0.012836844,-0.048048925,0.014419673,-0.071067564,-0.030725883,0.014585084,-0.062000453,0.056571927,-0.05236832,0.00072858005,-0.04351282,-0.14047615,-0.013996013,0.012169411,0.008748049,-0.037949294,-0.013943854,-0.05123293,-0.0033427658,0.011914845,-0.03158095,-0.067214765,0.03081496,0.09777687,-0.049954254,-0.028352087,-0.04300044,0.014148537,0.0136208255,-0.067178816,0.008697028,-0.12299558,-0.01377675} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:50:49.976946+00 2026-01-25 01:27:50.721686+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 260 google ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB 1 t 263 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excellent service , very quick and efficient bookings, thanks again to Carlos ,Antonio and their Colleagues no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)\nAnd brand new vehicles 😁 excellent service , very quick and efficient bookings, thanks again to carlos ,antonio and their colleagues no hidden costs very surprisingly cheap (4 days under 25 euro vw t-roc) and brand new vehicles 😁 5 2025-01-25 01:27:48.340691+00 en v5.1 P1.01 {} V+ I3 CR-N {"Carlos, Antonio"} {"O2.01": "And brand new vehicles 😁", "P1.01": "Excellent service , very quick and efficient bookings, thanks again to Carlos ,Antonio and the", "V1.03": "no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)"} {-0.017426,0.034050927,-0.030107802,0.009996901,-0.011430174,0.026082667,-0.03142038,0.024349293,-0.001875623,0.009228921,0.03896951,0.03688779,-0.0005671151,0.058703233,-0.0009193406,-0.05667895,0.056631405,-0.1263127,-0.022871025,-0.005479636,-0.08832259,-0.048101306,0.016429905,0.03600553,-0.033084475,-0.03714004,-0.02488694,0.032450005,0.0035489358,-0.062712915,-0.06659869,0.032085937,0.029393388,0.026801238,0.044943854,-0.026150567,0.039839033,-0.08491209,-0.081703834,-0.033703227,-0.016250929,-0.07122463,-0.067980334,0.030201586,0.039033648,0.050417528,0.049310025,0.044199295,0.043683793,0.045031656,0.032026257,-0.06597999,0.02663185,-0.07395819,-0.072027,0.02017649,-0.05541999,-0.03288327,-0.037484426,-0.03777571,0.07705239,-0.019560961,-0.0632364,0.037392586,-0.058091853,-0.059956703,-0.06583201,-0.0376605,-0.022868352,-0.044833858,-0.035917062,0.037597302,0.09046727,0.042495433,-0.0072275633,0.021139583,0.11201749,-0.035353296,0.0349918,-0.031471148,0.02272872,-0.054889582,-0.050423503,-0.020987557,0.04829625,-0.12235234,0.02878996,-0.050994065,0.0032634921,0.0037480046,0.03665969,0.05291847,0.022044634,-0.043287672,-0.07577837,0.06997525,-0.0048911367,0.038827624,-0.019743675,0.06372525,0.043118227,0.13203046,0.014481874,-0.012181627,-0.09929084,0.05592173,0.014203919,0.06138535,-0.0023969815,-0.029483167,-0.048706688,0.027175589,-0.005390107,-0.054712478,-0.08108712,0.124319,-0.08528707,0.040715672,0.062454995,-0.019915618,0.01164292,0.0027070185,0.034266144,0.018288938,-0.04470404,-0.042499974,0.07286465,4.9111493e-34,-0.091078825,0.08619231,-0.10096856,-0.001966564,-0.022725096,0.016618105,-0.10238765,0.0029402182,-0.077467315,0.08143676,-0.07885747,0.021335885,0.028124815,0.021372737,0.014210336,-0.033119865,-0.062243845,0.025472766,-0.003209562,-0.04141835,-0.038313005,0.010400565,0.027237572,0.003790122,0.11560608,0.059395388,0.044016577,-0.06845208,0.16037762,0.06359198,-0.075599246,-0.017889543,-0.05817235,-0.022298383,0.023656901,0.0680736,-0.06192488,-0.08941896,-0.04292649,0.0032336644,0.0169129,0.022543328,-0.12969431,-0.0017130746,-0.12650199,0.033877425,-0.027967853,0.00801739,0.06486561,0.02533951,-0.10826236,-0.014997118,-0.088212244,0.008229073,-0.026490124,0.0073525137,0.023400774,0.0035921317,0.026058346,-0.038351685,0.01735525,-0.031194154,-0.052371107,-0.016343836,-0.087788396,-0.04988577,-0.028427709,-0.052141253,0.021854788,-0.03843469,-0.0027508012,0.014974296,0.087845504,-0.05747445,0.018693486,0.015714789,-0.016429935,-0.044313945,0.052857764,0.0720631,-0.02052556,0.051073395,0.08831198,-0.017931238,0.056890406,0.0039054572,0.018421913,-0.04054453,-0.041567758,0.007680919,-0.059164803,0.067656815,0.0007451549,0.019441811,0.066275835,-3.3971155e-33,0.035979055,0.032479223,0.02279299,0.049206898,-0.018209107,0.03799999,-0.05083073,0.07000243,-0.010276013,0.021684939,-0.0759202,0.041582406,-0.0073078307,-0.0052831206,0.010269007,-0.10505037,0.069035895,-0.06031276,0.0005919225,-0.04740009,0.033354234,0.08875856,0.012928794,-0.036433898,-0.046264734,0.0324222,-0.029904334,0.07141582,-0.054520354,0.0075838114,-0.03395547,-0.066454805,-0.011773177,0.0034343568,0.024153596,0.113342546,0.05824756,0.08076099,-0.05347547,0.06254431,0.004683323,-0.08990178,-0.03661276,-0.043141533,-0.019997466,-0.016215937,-0.0004566834,-0.052614912,0.030049108,-0.012299225,0.03530541,-0.073764965,-0.062204715,0.01569294,-0.040659826,0.041824896,0.0043904264,-0.005748319,0.017051188,0.0149450265,-0.008467932,0.022363322,-0.0067402646,0.025514053,0.055674586,-0.10592798,0.05044969,-0.06489462,0.020563144,-0.011449733,-0.0181736,0.018117957,-0.039913673,0.084520146,-0.03050094,-0.033278834,0.039929327,-0.030352274,0.02986732,-0.011110814,-0.011491295,-0.05236677,0.035142165,0.014724463,0.013437715,-0.0076252557,0.04368836,-0.016777083,-0.01454531,0.06258079,0.0071190246,0.044581868,-0.0068744756,0.0056218617,-0.039691668,-3.685322e-08,-0.007807692,0.038478058,0.009466395,0.08037745,-0.06453569,-0.12023374,0.022219867,0.07865487,-0.043351583,0.06516177,0.069957696,-0.025471551,-0.06488231,0.08298438,-0.03472022,0.014513303,-0.016056059,0.14766283,-0.035213485,-0.05563992,0.010657229,0.09485112,0.0057206424,0.035759512,0.022670409,0.031866636,-0.0069680503,0.064506926,0.051433515,-0.103375435,-0.0825886,0.078156866,0.040937815,0.0109247,-0.01032529,-0.042946815,-0.068847924,0.020575296,-0.019164354,0.0083695175,0.014308703,-0.0135226,-0.07842168,-0.0050145336,0.062843084,0.026754813,-0.07894634,-0.013696166,-0.067079015,-0.006741209,-0.0132971285,0.02335325,-0.02821736,0.11056949,0.044551857,-0.015007353,0.04869019,-0.05425186,0.019000849,0.082706526,-0.045639385,-0.078232974,-0.09426117,-0.006552737} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:01.668412+00 2026-01-25 01:27:50.726374+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 262 google ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE 1 t 265 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very professional, kind, effective and entertaining.\nI strongly recommend this rental in Las Palmas\nCarmen, Antonio (shuttle service) and Isaac have been dealing with me very professional, kind, effective and entertaining. i strongly recommend this rental in las palmas carmen, antonio (shuttle service) and isaac have been dealing with me 5 2025-01-25 01:27:48.340695+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Very professional, kind, effective and entertaining.", "R1.02": "I strongly recommend this rental in Las Palmas"} {0.034787316,-0.019438162,0.015478574,0.056970596,-0.13257223,0.05490329,0.07111539,-0.025528125,-0.01458806,0.007895179,-0.037338108,0.018350638,-0.04449211,0.10550239,-0.036820807,-0.011284561,0.1305576,-0.054255288,0.0617639,-0.00071795203,-0.06210036,-0.0016761236,0.016586233,-0.021883085,-0.022168484,-0.012871161,-0.037573006,0.046395887,0.016136792,-0.015675751,0.004344396,0.015410399,0.07293563,-0.01790708,0.025565928,0.08059146,-0.01938995,-0.06346135,-0.008279737,0.041415155,0.005134286,0.018770974,0.0721456,-0.034511108,-0.0396308,-0.06541887,0.024210706,0.01201358,0.08686374,-0.023231104,-0.06792112,-0.027000144,0.073082596,-0.027704388,-0.055916544,-0.00014299132,0.02538608,-0.05594289,0.023400329,-0.041439667,0.08357199,0.023287263,-0.07329124,0.06413051,0.02196423,-0.00075152505,-0.07149801,0.057170153,0.089626074,-0.13595709,-0.05269847,-0.03900117,-0.0057648625,0.07260905,0.037291937,-0.04682233,0.042732004,-0.06878735,0.0100689465,-0.032904096,-0.007342544,-0.04821579,-0.016830865,0.015573353,-0.04244979,-0.0568689,0.034562755,-0.012818897,0.04136176,0.050978806,0.03414911,0.07558399,-0.078917146,-0.08504715,-0.018813126,0.060249552,-0.048492797,-0.07117661,-0.06639065,0.106491074,0.0010641691,0.031601876,0.06048768,-0.06053146,-0.06626853,0.01884136,0.024387736,0.03123483,-0.07012132,0.041542947,-0.061876904,0.020120602,-0.058069237,-0.015791597,0.031286236,0.10434156,-0.03767974,0.047691885,0.0783311,-0.039393667,0.10106235,0.02682981,0.057995945,0.02974792,0.0057933345,-0.013899986,0.018176842,-2.1216971e-33,-0.011825242,0.025274405,-0.040305275,0.14429994,0.05648316,0.052582096,-0.065655775,0.011719228,-0.025414238,0.052515395,0.055953443,0.037545566,0.013023041,0.032798745,0.013361259,0.05448031,-0.012178468,-0.008441159,-0.059764113,-0.008495896,-0.067180194,0.044612046,-0.0045648813,0.03233911,-0.005679158,-0.018493216,0.02222445,-0.0015862262,0.122729555,0.043603603,-0.042591557,0.012817293,-0.04805319,-0.036120154,0.082784705,0.07759976,-0.0963329,-0.032550637,-0.045037027,0.033348534,-0.032433886,-0.042296797,-0.051607203,0.04895732,-0.014598567,0.03284519,0.03159951,-0.04007559,-0.013772752,0.03130175,-0.012065277,-0.017211441,-0.09184106,0.04676617,-0.023467883,0.055766597,0.029250681,0.020944769,0.014956964,-0.03515034,0.13001028,0.09775314,-0.0314391,-0.022675307,-0.057900824,-0.092549026,0.010571253,0.036905177,0.15291637,0.01248891,-0.008404905,0.051675145,0.09891544,-0.034182534,-0.04208372,-0.026975403,-0.13170698,-0.042140856,0.032778226,0.17233506,0.021113498,0.020918338,-0.00031458613,0.08314056,0.005077413,-0.013915379,0.0055671493,7.109269e-05,-0.023409681,0.078042135,0.014639951,0.032732017,0.0028681213,-0.044907488,-0.0194704,-1.29345365e-33,0.011013099,-0.04520042,0.009828895,0.029558387,-0.003568678,-0.007477952,-0.118396804,0.0036680056,0.025599541,0.027351296,-0.12380395,-0.021534735,0.031033799,-0.041428607,0.032673642,-0.039176647,-0.016776726,-0.05934962,-0.061296746,-0.018587518,0.04105056,0.11127026,0.029964702,-0.023098424,-0.06476516,-0.026271163,-0.028492002,0.11902049,-0.07558648,0.023301613,-0.055848498,0.016462125,0.0037173643,-0.0032412938,-0.0759657,0.10608803,-0.0045188237,0.041278478,-0.08481824,0.026589107,0.01573215,-0.061965827,-0.03129262,-0.055044852,0.023883944,-0.01414429,0.019118134,-0.045430247,-0.005468706,-0.055306066,-0.005472647,-0.03602535,-0.11839241,-0.037009895,-0.023272831,-0.07873478,0.044419173,-0.012819601,-0.051603053,0.042580627,-0.028456701,0.025755685,0.02782608,0.0669448,0.020282026,-0.0450084,0.002979136,-0.050315816,-0.07821241,0.02679994,0.043175004,0.025878571,-0.024913019,-0.0021041797,-0.06266333,0.019858874,0.06569268,-0.044712514,0.03499273,-0.0095288055,-0.027016433,-0.10158328,0.04152974,0.034991898,-0.013916985,0.024245199,-0.026352486,-0.07437494,-0.028866913,0.057579342,0.032508895,0.045239277,-0.09049806,-0.116344385,-0.038242355,-3.240828e-08,-0.051250175,-0.029461198,-0.022371795,-0.032392744,-0.011350871,-0.08417183,-0.004216443,0.0016189622,-0.024646806,0.012897893,0.034075797,-0.061200093,0.066085264,0.035504464,0.055209972,-0.024689445,0.061418246,0.13320993,-0.102285676,-0.0078773685,0.05307295,0.03532443,-0.026075175,0.0064879074,-0.054637946,-0.035118543,-0.018107623,-0.0026472039,-0.0019060534,-0.026484484,-0.051169887,0.05633935,0.011423292,-0.046697788,-0.004458818,-0.02623002,0.041136853,-0.09887439,-0.040221695,0.0406188,-0.056585316,-0.047305238,-0.033983313,0.0022647257,0.007689998,0.03662389,0.031774532,-0.003787111,-0.040146437,0.015747048,-0.0224649,-0.025703479,-0.03330532,0.030073743,0.010167503,-0.003905049,-0.0077466657,-0.03152001,-0.0410777,0.06444527,-0.023654284,0.0051738517,-0.067893445,-0.008365169} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:21.358646+00 2026-01-25 01:27:50.734677+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 479 google ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE 1 t 482 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena experiencia. Alquilamos un coche para conocer la islaa muy buen precio.\nHubo un poco de confusión al principio para que nos recogiera el bus.\nEl bus se toma en el punto de encuentro que hay si sales a la calle por la puerta 2 de Salidas.\n\nTanto Antonio como Dany que nos atendieron fueron muy amables.\nEsperamos volver :) muy buena experiencia. alquilamos un coche para conocer la islaa muy buen precio. hubo un poco de confusión al principio para que nos recogiera el bus. el bus se toma en el punto de encuentro que hay si sales a la calle por la puerta 2 de salidas. tanto antonio como dany que nos atendieron fueron muy amables. esperamos volver :) 5 2025-01-25 01:27:48.342146+00 es v5.1 P1.02 {J1.02} V+ I2 CR-N {} {"A1.01": "Tanto Antonio como Dany que nos atendieron fueron muy amables. Esperamos volver :)", "J1.02": "Hubo un poco de confusión al principio para que nos recogiera el bus. El bus se toma en el punto de ", "P1.02": "Muy buena experiencia. Alquilamos un coche para conocer la islaa muy buen precio."} {0.02816113,0.0060469247,0.019661801,-0.046833385,-0.10030069,-0.05479923,0.09208651,-0.02947129,0.043553203,0.003181905,0.09712874,0.014396974,0.0094791185,-0.049266953,0.0589986,0.06335426,-0.017098827,-0.003600398,-0.027996313,0.032942973,0.118995644,0.020106286,-0.12036015,0.0855186,-0.098707736,-0.030879164,0.033632156,0.029418077,-0.08379379,-0.05818719,-0.061837666,0.07792538,0.07669066,0.032471832,-0.020480106,0.03272938,0.04806112,-0.108968414,0.019049078,0.056485333,-0.04057874,-0.035684705,-0.042528138,-0.0055306097,-0.037423443,-0.046348225,0.07089648,0.04666173,0.09750366,-0.07312337,-0.06484833,0.0011647879,-0.04581149,-0.0051270844,0.010526688,0.006304836,-0.052512098,0.040286884,0.06484362,0.018461917,-0.007127721,0.05664403,0.02780966,0.054121766,-0.00011750407,0.027199669,0.0125546,-0.023964658,-0.042957887,-0.031659648,0.0896429,-0.06950578,0.024928661,-0.032678496,-0.06936108,0.04276446,0.02106595,-0.0120221395,-0.04651892,-0.03629526,-0.037046444,-0.0252571,-0.078536,-0.040335074,0.031087695,0.013065694,-0.007749666,-0.041669324,0.057465147,0.0010731283,-0.033639327,0.019012528,-0.04118551,-0.031179536,-0.002137759,0.062648214,-0.022631751,-0.09211873,-0.08969277,0.07633471,0.08671305,0.0700217,0.05913791,-0.009107253,-0.03904432,0.03233143,0.0030414597,-0.09574899,-0.00969324,0.046490513,-0.06485564,-0.06500961,-0.006181682,-0.0012105925,-0.04139082,-0.004905283,-0.013816855,0.013787564,-0.01047909,-0.09892273,0.026519751,-0.041776866,-0.049403947,0.0043159905,0.0059443023,-0.049898326,0.033113226,1.2577535e-32,-0.07114193,-0.05554586,0.003200649,0.06755168,0.031183993,0.018971665,-0.08396427,0.004144338,-0.051598936,0.0023286212,-0.017822007,0.017367916,0.0517277,-0.004697597,0.017582227,0.010476762,-0.046691783,-0.043976475,0.058820426,0.024467142,-0.06314593,-0.0165913,-0.0018953414,-0.01727999,-0.0035152356,0.023305478,-0.033761945,-0.057837963,0.06528619,0.060458686,-0.036345176,0.037620325,-0.01489685,-0.04860124,-0.099587396,-0.029769342,-0.021099873,0.004556808,-0.029816136,-0.032870952,-0.036701035,0.042552993,-0.04219818,0.048118226,-0.010353456,-0.023246799,0.041328847,0.051701576,0.09583713,0.036199186,-0.05870324,-0.11480462,-0.036055177,-0.0354788,-0.007474696,-0.020037433,-0.059182614,0.06943887,-0.007919658,-0.0057411757,0.035326883,-0.023261737,0.06841409,-0.05904284,0.002278429,0.03595557,-0.0006407879,0.10379232,0.16704814,0.04196136,0.012070604,-0.028575312,-0.124305494,0.0732393,0.027525768,0.0012975634,-0.014922299,-0.010465665,0.052806713,0.028772715,-0.036162756,0.019905668,0.069523975,0.09855526,0.058042,0.11849777,0.049400866,0.08620664,-0.009929692,0.14344323,-0.038833674,0.13775392,0.025376271,-0.017852668,0.049217544,-1.2233969e-32,-0.009556852,0.0055718403,-0.058161,-0.009154424,-0.060404066,-0.02388574,0.0025727495,-0.058405183,-0.04439592,-0.014173274,-0.11394224,-0.11286907,0.094198994,-0.059289236,-0.001007984,0.05635154,0.050192904,-0.09497595,-0.052344497,0.018337162,0.00015772357,0.011686782,0.031463414,-0.03767427,-0.055135544,-0.03806292,-0.05467496,0.05970952,-0.051171992,-0.058032077,0.011782141,-0.012191356,-0.038782988,0.041766673,-0.059142135,0.049299363,0.037073474,0.03066534,0.038253255,0.053604353,-0.0014715589,0.036184076,-0.012918513,-0.00422827,-0.054485515,0.048760373,0.083155975,-0.11700751,-0.04128106,-0.06393914,0.056472432,-0.025804913,-0.032036666,-0.021958346,0.0072766407,0.017050479,-0.00050280924,-0.051712256,-0.03265319,-0.028630199,0.03960768,-0.036607187,-0.023601685,-0.045978904,0.02513422,0.000581749,0.00090346264,-0.018621316,-0.0010799222,-0.006473516,0.0766495,-0.058147687,-0.1142211,0.02068781,-0.0015439388,0.0316564,-0.08392052,-0.006501677,-0.013210828,0.03223189,-0.02941628,-0.006546024,-0.0431522,-0.03780468,-0.032969788,0.027804803,0.026370587,0.038901955,0.006957188,0.037799396,-0.0145283565,0.007303458,-0.02718436,-0.07152957,-0.059639353,-4.9458645e-08,0.00624544,-0.03313187,0.054436143,-0.008776448,0.0029072063,-0.0067403144,-0.035474535,0.08129065,0.0036896002,0.021415802,-0.010328028,-0.024834102,-0.07067798,0.059264753,-0.0033476294,0.11491762,0.107343465,0.03436812,-0.016216166,-0.065308616,0.079234496,-0.017194208,-0.08905366,0.06638069,0.033055324,0.010575201,-0.028663574,0.0457906,-0.04952736,-0.048791934,-0.01917149,-0.029246992,-0.027944097,-0.106289744,-0.036167115,-0.032919977,-0.0059974706,-0.0020851973,0.014283107,-0.03788703,0.06796687,0.009676636,-0.044598054,0.011214015,-0.014521034,0.0015986967,0.05489986,0.024504269,-0.046576064,0.018381245,0.035565972,-0.033845853,0.10614153,0.049491,0.012992921,-0.09758712,0.01617157,0.009971554,0.0077585233,0.034610543,0.045001753,0.14267075,-0.021401988,-0.101065114} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:05:58.293983+00 2026-01-25 01:27:51.530848+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 280 google Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB 1 t 283 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min Fahrt zur Station, schnelle und sehr freundliche Bearbeitung und herausgabe der Schlüssel. Fahrzeug ( JEEP ) war sauber und stand schon direkt vor der Station. Tolles Fahrzeug, welches wir nach 14 Tagen wieder an der Station abgeben konnten. Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit erst mit 8:00 Uhr angegeben war. Freundliche und schnelle Kontrolle, sowie sofortige Freischaltung der 2000.€ Kaution, welches mit die Kreditkartenapp nach 2 min. schon bestätigt hatte. Wir ( 6 Fahrgäste ) wurden umgehend wieder mit dem Shuttlebus zum Airport LPA gebracht. Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen. klasse autovermietung. etwas wartezeit bei der abholung mit dem shuttlebus war kein problem. 5 min fahrt zur station, schnelle und sehr freundliche bearbeitung und herausgabe der schlüssel. fahrzeug ( jeep ) war sauber und stand schon direkt vor der station. tolles fahrzeug, welches wir nach 14 tagen wieder an der station abgeben konnten. die mitarbeiter waren schon 7:50 uhr da und begannen schon mit ihrer arbeit, obwohl die öffnungszeit erst mit 8:00 uhr angegeben war. freundliche und schnelle kontrolle, sowie sofortige freischaltung der 2000.€ kaution, welches mit die kreditkartenapp nach 2 min. schon bestätigt hatte. wir ( 6 fahrgäste ) wurden umgehend wieder mit dem shuttlebus zum airport lpa gebracht. alles in allem. gutes preis-leistungsverhältnis und click rent kann ohne probleme gerne gebucht werden. wir werden die angebote beim nächsten urlaub wieder nutzen. 4 2025-10-27 01:27:48.340795+00 de v5.1 O1.01 {O2.01,P1.01} V+ I3 CR-N {} {"O1.01": "Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min F", "P1.01": "Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit", "V1.01": "Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werd"} {-0.040658657,0.04346878,-0.06799737,-0.05839448,-0.04687266,0.07743803,0.034984827,0.13679317,-0.043099638,0.019694628,0.003874645,0.032866094,-0.022225404,0.0055998284,-0.007956279,-0.049147457,-0.020157514,-0.03248948,-0.10769999,0.019049508,0.062362272,-0.059527814,0.007912478,0.08834264,0.041270908,0.011703808,-0.0073124706,0.03373158,0.06787132,0.024632523,-0.07232804,0.08266005,0.011358514,0.026667815,0.06140833,0.0006956462,0.05962465,-0.0022231129,0.040362872,0.02948926,-0.0251563,-0.011152565,-0.09919271,0.022144098,-0.06605115,-0.0066811186,0.042488698,-0.0228008,-0.01519491,-0.00983917,-0.0038557085,-0.010832349,0.01576668,-0.035765797,-0.0063001183,-0.10252779,-0.10119735,-0.023657758,0.065405004,0.030686188,-0.11370881,-0.03316042,0.016505405,0.048720613,-0.057123628,-0.024555571,-0.031900346,-0.07081003,0.07479797,0.021206602,0.010363964,-0.031387065,-0.049082145,0.0028836369,0.010109685,-0.037116025,-0.019627905,0.056914516,-0.018659843,-0.10148822,0.021903004,-0.062397044,0.0017183379,0.007711355,-0.00904261,-0.098118655,0.0055524274,0.12137806,0.03871508,0.04370765,0.05357675,0.0827347,-0.0748601,-0.05008461,-0.064603984,0.019545188,0.0037528207,-0.0053040083,0.04133696,9.670619e-05,0.07956483,-0.03133929,-0.015353742,0.055524226,0.022768019,-0.07581304,0.035470698,-0.042072117,-0.062254295,-0.025897576,-0.06543088,-0.027924147,0.04625114,-0.055377312,-0.091449365,0.048565153,-0.024794867,-0.07084463,0.030230138,-0.018193498,-0.05189991,0.0012537098,0.12790982,0.039425198,0.018901147,0.028541744,0.116119586,1.5038834e-32,-0.1402489,-0.08343102,-0.028616104,-0.031368285,-0.00084738183,-0.032552417,-0.058211204,0.072556235,0.0787216,0.023802398,-0.12632985,0.029095981,-0.017194662,-0.14300205,0.0766325,0.021871872,-0.00174769,-0.05717595,0.018681409,-0.05758145,0.034514483,-0.08252583,0.00684423,0.03116954,0.036261972,0.09028021,0.0011178125,0.0034241024,0.024226684,0.068052456,0.04018943,-0.040910725,-0.007896823,0.026544888,-0.100546554,-0.021037035,-0.0647413,0.018714014,-0.06466289,-0.025803741,-0.014199806,-0.005057015,-0.03556319,0.002078421,0.06962119,-0.04481354,-0.038434673,0.036617998,0.08344803,0.059312876,-0.045981903,0.0147899315,0.045300297,-0.00564035,-0.04689565,0.12384546,0.028731503,0.068216175,0.0011530826,0.007608226,-0.051389467,0.021362288,0.02088978,-0.032354414,0.07645349,0.01394232,-0.031257093,-0.0063178544,0.0032888267,0.061723687,-0.03599489,-0.04427551,0.08656814,0.0024076642,0.07540478,0.031076329,0.08083356,0.0045614312,-0.12030717,0.025591582,0.003394318,-0.00594279,0.045382246,-0.03214852,0.03356407,-0.07603461,0.03796112,-0.006810167,-0.05639821,0.07550063,0.013679876,-0.031125482,-0.059736155,0.07341791,0.038960554,-1.5160055e-32,0.08770139,0.059951626,0.047992133,-0.004208055,0.008747549,0.035255108,0.0051296907,0.023907043,-0.037518017,0.014303059,-0.012612684,-0.008834102,0.026210096,0.033292048,-0.0044386317,0.024152191,0.022538446,0.020381909,0.05596314,0.02476057,-0.01900155,0.05761726,-0.04473079,0.011175668,0.010121781,0.013036668,-0.00055350305,0.06177727,-0.032402154,0.03365362,0.046947658,-0.023447024,-0.008901435,0.065576315,-0.072541125,-0.10060189,0.045499038,0.070162736,-0.025552334,0.03329664,0.0659696,0.009378173,-0.022291886,-0.038403213,0.045077596,-0.03155795,-0.022093983,-0.0717187,-0.016028589,-0.11196193,0.02140486,-0.049771164,-0.033650577,0.0059924624,0.07899216,0.030086454,0.06715975,-0.07535711,0.0026486884,-0.048749026,0.103270166,-0.054012448,0.027808273,-0.04749518,-0.009086806,-0.046776887,0.0021934481,0.07249578,-0.036007307,-0.0069345585,-0.008005005,0.0024689818,-0.017507033,0.0247128,-0.034368716,0.089229,0.0135749,0.077702194,0.013762215,-0.021454468,-0.08290563,0.017723652,-0.08791128,-0.0062548625,-0.082703225,0.012792454,0.06304083,-0.017965289,0.025058677,-0.046126842,0.0028087373,0.09029764,0.053444277,0.07206083,-0.022778736,-6.5388114e-08,-0.0045573725,-0.030544773,-0.0105684055,-0.033398032,0.050967127,-0.10845403,-0.065714106,0.060746353,-0.09943165,-0.03298872,0.033474337,-0.019951709,-0.037938245,0.05527607,-0.087382965,0.009443778,-0.10357156,-0.06084868,-0.02951414,-0.06656579,0.0243021,-0.06792329,0.023413125,-0.024968334,0.045269877,0.018231805,-0.013824124,0.020182109,0.03716477,-0.090724446,-0.05891843,0.013016731,-0.019289559,0.012816452,-0.08643117,-0.012576454,0.017771715,-0.0034723189,-0.041558243,0.06609642,0.062469523,-0.10514621,-0.07236484,-0.057208877,0.04410839,0.06283492,-0.038449343,0.021690147,-0.011701401,0.014031128,-0.019543506,-0.00024007192,-0.029507343,0.024430761,0.040908612,-0.049478468,-0.04636541,-0.0693125,-0.02378921,-0.03951914,-0.04553822,0.0652881,-0.07610846,0.0025918542} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:53:40.558893+00 2026-01-25 01:27:50.798735+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 284 google Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB 1 t 287 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. La navetta era già pronta per accompagnarci all'aeroporto. Arrivati in soli 5 minuti. Direi servizio eccellente. Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. Di questo daremo conferma ai lettori appena ci verrà restituita la caparra abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. la navetta era già pronta per accompagnarci all'aeroporto. arrivati in soli 5 minuti. direi servizio eccellente. ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. di questo daremo conferma ai lettori appena ci verrà restituita la caparra 5 2026-01-11 01:27:48.34084+00 it v5.1 J1.01 {A4.05} V+ I3 CR-N {} {"J1.01": "Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni d", "V1.03": "Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e prof"} {0.059696876,0.083427265,-0.024384584,-0.03426834,-0.048766863,0.055383723,0.032958675,0.12433882,0.014871067,-0.029719712,0.044419385,-0.10344791,0.0066637276,0.04533656,-0.07859975,-0.041974425,0.06667934,-0.0056534875,-0.044909023,0.10871839,-0.045633964,-0.024849713,0.013421844,0.08648603,-0.027212191,0.026663875,-0.031252045,0.055397823,-0.01356907,-0.046658292,0.0075730192,0.022501083,0.038798586,-0.06333559,0.017016245,-0.03586943,0.016232695,-0.038148485,-0.006577595,0.09601628,-0.09555788,-0.036282334,-0.18141621,0.011606949,0.08816777,-0.061188642,0.060782503,0.02720679,0.013383972,-0.04726407,0.012415569,0.00459222,0.05115611,-0.056907468,-0.10308246,-0.027952878,-0.038590916,-0.01843193,-0.015975034,0.016642941,0.020092864,-0.034281854,0.04935765,0.03553777,0.027853873,0.01603814,-0.0040978645,-0.053728297,-0.023793887,-0.022022666,0.017172225,-0.09336745,0.005306352,-0.06637604,-0.04542209,0.034526672,0.0124053685,0.006997095,0.013045603,-0.045403108,0.062144626,-0.037773144,-0.06658265,0.0913729,-0.014512777,-0.001131593,-0.053868216,-0.007930934,0.035705082,0.009862015,-0.009123301,0.0020980053,-0.095090546,-0.072260335,0.038244944,-0.014231268,-0.042211466,-0.039507326,0.034899082,0.01466245,0.049386233,-0.043144964,-0.02053952,0.018866725,-0.056610353,-0.024864143,0.10305162,-0.073361285,-0.065368615,0.0082031265,-0.07472203,-0.035087314,-0.022198817,-0.037229814,-0.04607498,0.095016755,0.055161208,-0.050250903,-0.017971052,-0.067979686,-0.008059435,-0.06741251,0.063971534,-0.06479872,-0.03616448,-0.06953335,0.024742397,1.6121347e-32,-0.06025696,-0.035959154,0.005695835,-0.0074932133,0.016433196,0.02801047,-0.06496569,-0.0038388576,0.027364327,-0.10993255,-0.08956379,0.060096964,0.0092148455,-0.020676307,0.040152572,0.037820365,0.0630001,-0.018545851,-0.039661627,-0.06943288,-0.014515431,-0.032275125,0.017782543,-0.020307148,0.0069135795,0.07634448,-0.007438225,-0.04913538,-0.07081583,0.042042736,0.05763847,0.10532489,-0.023417635,-0.04439506,-0.0155540835,0.009767164,0.00074853253,0.07625949,0.04523211,-0.053199563,-0.020160154,0.07737824,0.010154922,0.010076656,0.017909445,-0.023501603,-0.043541156,0.067538366,0.053966373,-0.0364134,-0.04927611,-0.008400919,-0.04121765,-0.07296234,0.020967323,0.0026346585,-0.027317435,0.08243931,-0.09351072,0.005534255,-0.006381584,0.08201348,-0.044897877,0.039103553,-0.0016675038,0.07402696,-0.05040179,0.09461965,0.04476917,-0.021205949,-0.064474545,0.020963723,-0.03300873,0.052419193,-0.009787282,-0.020040939,0.016125007,0.05225903,0.03005336,-0.011570361,0.044306647,-0.03784772,0.03478172,-0.012134094,0.058549628,-0.035082668,0.02361536,0.05895783,0.01776877,0.10230923,0.06814974,0.01031414,0.12626803,0.00095859315,0.045167573,-1.7278825e-32,0.07921956,-0.0010970446,-0.05055067,-0.05924654,0.03853417,0.0042403596,-0.053888746,-0.0019099566,-0.016717583,0.022214469,-0.086985186,-0.04921274,0.07526613,-0.0013380372,-0.072834246,0.100517325,-0.0016178427,-0.052684423,-0.059184182,-0.09302509,-0.017590621,-0.08268155,0.030751599,-0.06724249,-0.034800198,0.0200831,0.041553333,-0.03449637,-0.091832794,-0.07568692,-0.03145051,-0.003981982,-0.009782095,0.03799161,0.07249821,0.047420736,0.082749814,0.0066929325,0.0050637894,-0.0072375606,-0.0072613223,-0.05465251,0.024474826,-0.0432951,0.080219366,-0.030786766,-0.06453518,-0.14083545,-0.007986644,-0.08729717,0.061936073,-0.07252361,0.0106666805,-0.016439473,0.07541405,0.056706592,0.060060553,-0.084951974,-0.036152173,-0.03805808,0.08057919,-0.011137351,-0.05803959,0.006272274,0.041696608,-0.0690995,-0.07940865,-0.04472538,0.0066583236,-0.03713568,0.011628677,-0.10749814,0.02154285,-0.009081921,-0.12651229,0.057254933,0.018413153,-0.006662346,-0.02774712,-0.0068505257,-0.107091814,-0.05877125,0.008443356,0.004198536,-0.04112277,-0.03581022,-0.007693963,-0.069596976,-0.045561474,0.016700163,0.019609408,0.07910676,0.024224523,0.019703941,0.022809071,-6.390374e-08,0.08770484,-0.13696446,0.02313979,0.035970476,0.0023700139,-0.038471285,0.01697132,-0.027737778,-0.03568979,-0.009939621,-0.07143011,0.050333273,0.046938814,0.012697927,-0.0537388,0.03764711,0.059077464,0.045469545,-0.0049574906,-0.0034025153,0.023455778,-0.06492588,0.004612731,-0.03473742,0.0030773063,-0.028255446,0.001582814,0.0080642095,-0.003649732,-0.04106178,-0.010896129,-0.0076481053,0.0598058,-0.060211007,-0.06291972,0.027466943,0.06154287,0.014435305,-0.06263484,-0.039143298,0.10300173,0.026730983,-0.031631388,-0.015680572,0.13329148,-0.037281457,0.020559072,0.04582347,0.018049954,0.021456322,-0.040009998,0.036403306,0.08280005,0.034999844,-0.011545627,0.08841828,0.033674866,0.023187602,0.021113552,-0.011472972,0.022503205,0.063692436,-0.009582939,-0.030167343} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:55:04.365882+00 2026-01-25 01:27:50.810938+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 405 google Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB 1 t 408 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Das Personal war sehr freundlich, aber abgezockt wird man trotzdem.Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !! das personal war sehr freundlich, aber abgezockt wird man trotzdem.ein witerer kratzer (10cm) auf einer bereits verkratzen stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !! 1 2025-11-26 01:27:48.341742+00 de v5.1 A1.01 {} V± I2 CR-N {} {"A1.01": "Das Personal war sehr freundlich, aber abgezockt wird man trotzdem.", "P1.02": "Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d"} {-0.083613254,0.11783642,-0.035592727,-0.06532829,-0.07092514,0.0145659465,0.09765755,0.13527437,-0.09377933,0.007157109,0.045971733,-0.07734198,-0.008932261,-0.040073346,-0.088726535,0.0065796757,-0.018301457,0.015644757,0.004976123,-0.02658265,-0.03316346,-0.05059056,0.08371492,0.056909285,0.022856554,-0.0006005693,-0.014584138,0.04358496,0.0052199857,-0.021825578,0.07373575,0.012924533,0.00145824,-0.03208392,0.02672484,-0.0006976768,-0.07217792,-0.007889624,-0.058967885,0.1234314,-0.032063734,-0.033514235,-0.09356653,-0.004366774,-0.0054493747,0.03149037,0.03100665,0.08049758,-0.074675776,0.12494257,-0.07031489,-0.013618842,0.038827423,-0.025869906,0.01936071,-0.107072785,-0.060635168,0.037113782,-0.018084882,0.035488002,-0.007053388,-0.030625017,-0.07580011,0.015182076,-0.034461536,0.013506521,-0.012035446,-0.07734436,-0.0051355283,0.029273406,0.070618555,-0.10720347,-0.038735468,0.013206598,-0.07745672,-0.00989107,-0.0139697855,-0.041627884,-0.046622463,-0.008449564,0.059622083,-0.022763742,-0.004666552,-0.07199607,-0.02272214,-0.050842952,0.042271204,0.06640037,-0.0175209,-0.04191322,0.017320763,0.011508262,-0.078279674,-0.03325745,-0.08739424,0.027475392,-0.030599881,-0.0034845874,-0.03625364,0.054674745,0.031785727,-0.1133032,0.020456145,0.08828338,-0.10092724,0.00027199392,0.014557175,0.010740566,-0.03484631,0.019533116,-0.07653774,-0.062410563,-0.028222399,-0.05388939,0.14209524,-0.030754121,0.033344876,-0.09442812,0.039148577,0.0067619565,0.016201913,-0.022456702,0.0024785963,0.019704659,-0.0019015914,0.03445352,0.09615027,1.378292e-32,-0.036324337,0.061013658,-0.010264585,0.02842552,-0.13562424,0.035982545,-0.07360926,0.012458647,-0.04240426,-0.034967523,0.008639906,0.060303807,0.0253721,0.020485768,0.013152507,0.027988866,0.0146071855,0.050119545,0.019268092,0.035555203,-0.054148488,-0.02762696,-0.054667152,0.11846654,-0.013260442,0.015771916,0.02992401,0.035976395,0.019784035,-0.0031375166,0.071514614,0.052386533,-0.008092332,-0.08427272,-0.04193369,0.008641348,-0.035161536,0.04825255,-0.04122536,-0.02222221,0.020486424,-0.011762746,0.019473271,0.028902872,0.030452901,0.04766766,0.010321051,0.032598823,0.04353166,-0.051793624,-0.044230435,0.02858218,-0.02960752,0.051098753,0.027005473,0.09031053,-0.016905816,-0.035046507,-0.015792582,-0.020067355,-0.033606824,-0.018165028,-0.0034665528,-0.028880665,0.00642079,-0.12452168,0.040451247,0.0049565732,-0.049539674,0.05614793,-0.050533414,0.05741652,0.096108764,-0.041696142,0.04520048,0.069915995,-0.008338614,0.06394123,-0.109875426,-0.0060924836,-0.048598345,0.04239129,0.019384123,-0.09788625,0.024777515,-0.02513207,0.009145771,-0.04092318,0.02882662,0.12109469,-0.0155775715,-0.050772198,-0.017755236,0.00088089897,-0.02084743,-1.3120282e-32,0.06725995,0.041215047,-0.028291754,0.032237634,0.019556975,0.090287685,0.06631273,0.15315598,-0.08407583,0.0074654077,0.029396476,-0.031914894,0.116647065,-0.011332164,-0.011621484,0.023035526,-0.037092883,0.02292824,0.017598078,-0.11141467,0.045363635,0.011492019,-0.012002817,-0.032290842,-0.06211067,0.016169595,0.020893713,-0.00981886,0.008013853,0.00817258,-0.050394077,-0.036051027,-0.034761153,0.005110199,0.06457251,0.03221778,0.03139241,0.07419321,-0.04014974,0.02037114,-0.047080178,0.08647537,-0.05567117,-0.056303438,0.05859932,-0.109435774,-0.05895626,-0.090121716,-0.044712067,-0.08696516,4.196995e-06,0.01113884,0.040778603,-0.05630789,0.032347985,0.0123051135,0.014981824,-0.07457214,-0.02343605,0.03558215,0.027780848,0.057153713,0.087347195,-0.017501986,0.027585246,-0.08082096,-0.035515625,0.04893643,0.026825158,0.054300852,0.016513389,-0.057986073,0.0869472,0.07089995,-0.03893386,-0.06498882,0.043753207,0.072890796,0.0345045,0.058919292,-0.014907896,0.051458113,0.059764855,-0.037940677,0.012644584,-0.015992941,0.015371102,0.036766108,0.02507753,-0.009720833,0.0008164021,0.0049773403,-0.028022261,0.0003910927,0.03192575,-5.3217025e-08,0.026130548,0.04894372,-0.01325166,0.065207385,0.08904447,-0.05597902,-0.019619955,-0.05708565,-0.032616958,0.038541578,-0.024146376,-0.025757419,-0.06000368,0.14724305,-0.062537126,0.020432824,0.006254732,-0.030879669,-0.0006134811,-0.047288097,0.0049547306,-0.012672282,-0.041616537,-0.020077344,-0.047871925,0.11098998,-0.028373625,0.056742653,-0.00739001,-0.0005348599,-0.040443085,0.0428594,-0.017755955,-0.05723433,-0.010583826,-0.0110210255,-0.060411897,0.12526073,-0.02930669,0.06754152,0.030825077,-0.052734368,0.029262107,0.019400684,0.0142967915,-0.036518916,-0.08264282,-0.05998927,-0.013378351,0.07715164,-0.049587432,0.020282201,-0.010357309,0.025838956,-0.025360974,-0.021275962,0.026341349,-0.0148841655,-0.079357445,-0.018118665,0.0002814842,-0.03253469,-0.050863825,0.02593819} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:18:56.683833+00 2026-01-25 01:27:51.285741+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1415 google ChZDSUhNMG9nS0VJQ0FnSUR1dk9hMUl3EAE 1 t 1418 Go Karts Mar Menor unknown Absolutely brilliant!! Well organised, reasonably priced and the kids loved it as did the adults!! A fun activity to do whilst away on holiday xx absolutely brilliant!! well organised, reasonably priced and the kids loved it as did the adults!! a fun activity to do whilst away on holiday xx 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {J2.01,V1.02,O1.05} V+ I3 CR-N {} {"V4.01": "Absolutely brilliant!! Well organised, reasonably priced and the kids loved it as did the adults!! A"} {-0.016895864,0.09223239,0.0153223,0.020462345,-0.06207295,0.011301039,0.03630547,-0.05629396,-0.08779669,0.012333101,0.00050947856,0.056438923,0.010097163,0.05053407,-0.0018911231,0.039016817,0.0149007095,-0.098742545,0.0022259895,-0.03236545,-0.047168344,-0.04147605,0.025735132,0.022255473,-0.010357293,0.06056459,-0.066477574,0.009160425,-0.016510626,-0.027581204,0.036160626,0.06606424,0.054669607,-0.0062589077,-0.025184792,0.076417096,0.10549885,-0.06751564,-0.02696712,0.033636864,-0.020584343,-0.037180513,0.00993786,-0.02685388,-0.0050200913,0.04257676,-0.029967818,-0.06820217,0.06166322,0.030238876,0.061989024,-0.026797103,0.041627835,-0.102319166,-0.102949515,0.042692855,-0.03864464,-0.13625543,0.0011788071,-0.07937336,0.009104464,0.043185074,-0.015693804,0.0792041,0.029784424,-0.1421057,-0.08028864,-0.061252054,0.07083127,-0.048302427,-0.06881223,0.031011086,0.10833437,-0.014178565,-0.024982467,-0.055587266,-0.045545615,-0.07477115,-0.06533825,-0.04169452,0.019273764,-0.020192217,-0.013629097,0.027355013,-0.031372134,-0.06639109,0.010856371,-0.00012653922,-0.008138898,-0.006241116,0.030606387,0.050600655,-0.009147705,0.075468674,-0.029016478,0.03030836,-0.034039292,-0.0474143,-0.022970349,0.054408427,0.013165908,0.11133122,0.07562358,-0.010854784,-0.089344464,-0.05760714,-0.007006768,0.042231735,-0.02527168,-0.082200184,-0.028336398,-0.016008228,0.0004449311,-0.012066783,-0.042091046,0.04954643,0.009441077,-0.014516192,-0.019700522,-0.02918299,0.15240003,0.049298774,0.0077620135,0.05177915,-0.041757833,-0.03650581,0.07640569,-2.2356459e-33,-0.03653427,0.0244861,0.017810438,0.04716117,0.092129655,-0.0031795003,-0.045084484,0.014390371,-0.08383774,0.057821188,0.03678231,0.0168739,0.0044286773,0.050359175,0.031016938,-0.026577633,-0.053688277,0.017487388,0.05870139,0.060422834,-0.034868676,0.026995443,0.008187792,-0.01229848,-0.00428895,0.037480302,0.053515956,-0.0013484054,0.15944716,0.023243748,-0.0195827,-0.013479012,-0.100411266,-0.055506542,-0.005660379,0.019894103,-0.029431487,-0.07155682,-0.0036951506,0.079697974,-0.020169616,-0.07672708,0.0005699504,0.003682534,-0.06850163,0.05816629,-0.008009111,0.057352725,0.089919984,0.040433846,-0.05055317,-0.02813702,-0.061450478,-0.00020725567,0.027537301,0.0063292324,0.0014488997,0.063074484,0.044736214,-0.04019763,0.12230721,0.0035368009,-0.045855142,-0.042116463,-0.08173306,0.017625421,0.029362483,0.0072438833,0.056317218,-0.020145014,-0.04264723,0.04667899,0.04769508,-0.11788302,0.052623693,0.019842228,-0.02821084,-0.047759794,0.013965993,0.029755438,0.054973163,0.04188312,0.028568227,-0.023239868,-0.0032469817,-0.033540905,0.008455265,-0.08650849,-0.069222786,0.047051724,-0.03221328,-0.0061681215,0.040598728,0.00062954315,0.027176179,-8.642234e-34,0.05324037,0.021473972,-0.06797231,-0.042309698,0.024540918,-0.009184266,-0.049773812,-0.003191106,0.0012846031,0.079869814,-0.08167198,0.032873683,-0.014419338,-0.008853824,-0.035242215,-0.058459,0.06776183,0.032569543,0.011218074,-0.051744107,0.014912867,0.1048391,-0.004652799,-0.047288913,-0.036702234,0.04763023,-0.013128403,0.009062466,0.01767118,-0.041243292,-0.023874016,-0.033529397,0.054575957,-0.0278621,-0.02608821,0.05667929,-0.020660862,0.0039057625,-0.055614606,-0.023051504,-0.0010555341,-0.03601132,-0.083534434,0.032600645,0.04037517,-0.00858602,-0.051177133,0.024035243,-0.03920017,0.024294887,0.01856731,0.015853299,-0.09393017,-0.15969728,0.0005129553,-0.033440698,-0.025539778,-0.08723639,0.052566174,-0.026427314,-0.084469244,0.0073511223,-0.066144116,0.017111663,0.022461183,-0.060027238,-0.008921748,-0.05882112,-0.07568262,0.054050352,-0.014837388,-0.014475333,-0.0737292,-0.0014949461,0.037233427,-0.05599915,0.14217085,0.009393157,0.054010056,0.042969584,-0.02966811,-0.028426824,0.03181353,-0.04992092,0.008926328,-0.035014007,0.02018337,0.03182912,-0.086070016,0.14106226,0.08555231,0.08102707,0.032075852,-0.029444689,0.08027056,-2.4221041e-08,0.047807377,0.08424618,-0.041612547,0.019603446,0.0111553995,-0.13851978,0.07082964,-0.019923475,-0.029140227,0.07895822,-0.016058313,0.0012328054,-0.006531865,0.090972394,0.0009111695,0.00958434,0.046192046,0.09420147,-0.0264432,0.009524263,0.10955847,0.030429352,-0.06098986,0.041041967,-0.07369376,-0.0041326983,0.018796718,-0.041919447,-0.04342724,-0.021556638,0.012263906,0.030801857,-0.03748921,0.07968551,-0.08027109,-0.0916855,-0.009214303,0.03296763,-0.006043756,-0.035860576,-0.0577675,-0.099558465,-0.021752244,-0.007899192,0.03554328,0.037950296,-0.07379261,-0.021615962,-0.02139361,0.027872324,-0.057969324,-0.011009849,-0.015459555,0.026068322,0.058482938,0.028830126,-0.008045391,-0.0077835303,-0.018175736,0.061417915,0.019957101,0.0023151415,-0.081007384,0.031958465} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:20.472482+00 2026-01-30 02:01:09.281273+00 22c747a6-b913-4ae4-82bc-14b4195008b6 502 google ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB 1 t 505 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown No recomiendo. Alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para reparar un raspón en la parte inferior del parachoques el cual ya estaba. Ponen los alquileres muy baratos pero luego te estafan. no recomiendo. alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para reparar un raspón en la parte inferior del parachoques el cual ya estaba. ponen los alquileres muy baratos pero luego te estafan. 1 2025-05-30 01:27:48.342294+00 es v5.1 P1.03 {} V- I3 CR-N {} {"P1.02": "Ponen los alquileres muy baratos pero luego te estafan.", "P1.03": "No recomiendo. Alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para repara"} {-0.02657497,0.030526262,-0.052142624,-0.009976294,-0.2066732,0.01625935,0.057700012,0.04564191,0.00999524,-0.00474866,0.029420888,-0.09964623,0.06410127,-0.029765733,0.0046540843,0.008168871,0.025538981,0.01197156,-0.03166404,0.06365954,0.013524043,-0.06127847,-0.07778455,0.09453159,-0.09900034,-0.030685503,-0.032160416,-0.018840967,0.00020991122,-0.07297284,-0.008725115,0.08725718,0.07673698,-0.055797316,0.0151409255,-0.07408571,-0.007248087,-0.052919902,-0.048771113,0.06338013,-0.009591344,0.06202779,-0.032836117,-0.06048962,0.010174563,-0.01833206,0.06324774,0.12171098,0.025147246,-0.056216255,-0.05003622,-0.017370276,-0.06681359,-0.016453212,-0.011660653,-0.0715277,-0.024618907,-0.04487657,0.04673945,0.03244923,-0.012061589,0.04519159,-0.041111533,0.053711038,0.071802214,-0.03413205,0.012005288,-0.04877885,-0.07344044,0.06593292,0.09110584,-0.076190256,0.07430134,-0.028186942,-0.012437297,0.080906376,0.07920125,-0.028540224,0.042961325,-0.04466561,-0.0015852291,0.023508186,-0.019355776,-0.060860313,0.06367187,-0.058580793,0.034634084,-0.0025937294,0.0822534,-0.01598688,-0.022485638,0.093860894,-0.016255546,-0.054734,-0.02020079,-0.013207427,0.06397517,-0.034354392,-0.06707292,0.052950013,0.101720534,0.03831514,0.029751478,-0.030699935,-0.030770125,0.056406796,0.07602325,0.0048866444,0.031536896,0.042632073,-0.09796574,-0.012455242,-0.016509542,-0.053893443,-0.05367576,0.03877677,-0.02796041,-0.12280051,-0.07169485,-0.064144254,0.018321246,-0.045872595,-0.078677386,-0.04834571,-0.042737544,-0.08908942,0.07007641,1.6815573e-32,-0.07161722,-0.015587083,-0.037275936,-0.04406062,0.031709995,0.069956064,-0.06485211,-0.012833801,-0.01414959,-0.02527536,0.0050899847,0.08312996,-0.021460455,0.09051965,0.01301404,0.03404949,0.027543677,0.005702078,0.04666052,-0.010680196,-0.06556515,-0.021362722,-0.017525336,0.0037643397,-0.023532609,0.072206296,0.039337445,-0.06481959,-0.05992123,0.04411943,0.004217731,0.050181735,-0.005807934,-0.081228584,-0.07677142,-0.0109862285,0.013966434,0.05904247,0.0017237153,0.023059253,0.02175428,0.039284803,-0.008540936,0.013243611,0.07140653,-0.03172302,0.043012843,0.004830892,0.0036871997,-0.01458617,-0.054525297,-0.012583952,-0.060389146,-0.066515245,-0.022721369,-0.017042695,-0.06721635,0.03485548,-0.047159407,-0.07939409,0.011162116,-0.071294434,-0.012231679,-0.04553311,-0.075129256,0.0472684,-0.003981116,0.010036488,0.134413,0.016790586,-0.022633594,-0.013174467,0.01325747,0.04736192,-0.018058358,0.00545791,0.052664742,0.041553896,0.0677576,0.021150794,-0.08370436,0.02948016,0.022628073,0.016264612,0.07823525,0.060000923,0.09878655,0.046534147,0.011847526,0.096930094,0.013365806,0.05741002,0.07548428,-0.0347939,0.08252065,-1.653033e-32,0.016711345,0.012191881,0.020969212,-0.014143424,-0.050106514,-0.010751391,-0.031943355,0.009392676,0.01651789,-0.04171718,-0.05206008,-0.098437205,0.11510468,-0.041569166,-0.0010909989,0.035711125,0.014884037,-0.046533804,-0.06413391,-0.03892041,-0.006994572,0.0012169791,0.04298857,0.048944004,-0.0032981697,-0.038646318,-0.019763377,-0.027916336,0.044611726,0.014072281,0.00044025487,0.002759814,-0.011078701,0.016413502,-0.01067631,0.030564714,0.04170297,-0.0022461796,-0.022758152,0.09508223,-0.00693417,0.011399293,-0.032520954,-0.02617018,0.04646617,-0.011212666,0.0034962269,-0.15390131,-0.0521809,-0.074716695,0.13303779,-0.023524798,-0.06492339,0.055605903,0.029981371,0.004380006,-0.045457028,-0.08628219,-0.02376116,-0.022854598,0.01845689,0.0474355,-0.06450752,-0.0547224,0.056876693,0.03363067,-0.038713142,0.026906766,0.050927393,0.00277601,0.091597155,-0.0476087,-0.036767855,-0.031061016,-0.02282402,0.010757823,-0.036288686,0.018825384,0.018103935,-0.0056941803,-0.09262406,-0.004768139,0.045862373,-0.04214475,-0.049088463,-0.03734322,0.008784179,0.0011305865,0.0056085484,0.00080447755,-0.02076384,-0.03037851,0.030292718,-0.07985055,0.01934577,-5.4725433e-08,-0.011296805,0.025429802,0.03566783,0.09910473,0.027593344,0.029269056,-0.10560259,-0.027808927,-0.0019832258,0.119782865,0.029785104,-0.021769427,0.014594322,0.0041299714,-0.095549986,0.10824062,0.046348568,-0.002282629,0.015882095,-0.06329051,0.023709694,0.030996691,-0.021499125,0.018980853,-0.08228336,0.044599544,-0.04926824,0.035859045,-0.07093934,-0.009898908,-0.01004775,-0.02651469,-0.011533183,-0.14515994,0.042172775,-0.03253401,0.05190087,0.033093076,-0.015521648,-0.016795442,0.0972631,-0.027433893,-0.016623285,-0.007823876,-0.04235714,-0.03784902,-0.006038498,0.039258167,-0.025187256,0.014301529,0.023475196,-0.042814877,0.080975525,-0.07450731,-0.05019203,-0.052012235,0.03192599,0.042721365,-0.07537978,0.015646946,0.10474727,0.01740882,-0.035842676,-0.08625871} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:57.522515+00 2026-01-25 01:27:51.651418+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 514 google ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB 1 t 517 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carmen nos atendió genial en la oficina. El chico que nos llevó del aeropuerto a la oficina y viceversa (Antonio) muy majo y atento\nSon muy claros explicándote las cosas y eso se agradece\nNos tocó un coche nuevo a estrenar\nAconsejo rellenar el depósito en Canary Oil carmen nos atendió genial en la oficina. el chico que nos llevó del aeropuerto a la oficina y viceversa (antonio) muy majo y atento son muy claros explicándote las cosas y eso se agradece nos tocó un coche nuevo a estrenar aconsejo rellenar el depósito en canary oil 5 2025-01-25 01:27:48.342357+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Carmen nos atendió genial en la oficina. El chico que nos llevó del aeropuerto a la oficina y viceve", "J1.01": "Aconsejo rellenar el depósito en Canary Oil", "O1.01": "Nos tocó un coche nuevo a estrenar"} {-0.0014051266,0.0020118023,0.007295741,0.07305566,-0.01721899,0.0364349,0.093781695,0.030299,-0.01607041,0.01671733,0.02821088,0.01032886,-0.032403167,-0.048125405,0.0039688293,0.043539815,0.013731026,0.042296935,0.017750485,0.038581077,0.077221096,-0.034068298,-0.060659457,0.12843563,-0.04745612,0.0016483892,-0.06328429,0.015175416,-0.033310823,-0.028666066,-0.029400794,0.09065926,0.04823791,0.018528573,0.013817687,-0.052111056,-0.00561961,-0.02005433,0.0013165901,0.03603458,-0.093013965,-0.0398371,-0.05472604,-0.022291172,-0.02300727,-0.12722403,0.034277618,0.11737616,0.07887734,-0.02497116,-0.038738325,-0.06285655,0.017744683,-0.11983858,-0.030847182,-0.01373841,0.022835122,-0.076735005,0.073034406,0.016498804,0.06019883,0.036830362,-0.07309706,0.088866256,-0.045410436,-0.11315309,-0.021859229,-0.014818035,-0.03580165,-0.009938802,0.10383164,-0.07132087,-0.010620467,0.022495374,-0.051789615,0.03483167,0.056422345,0.016400335,-0.025482448,-0.057596326,0.054404248,-0.061591867,-0.002567222,-0.069556504,0.0068286736,0.00634648,0.013993294,-0.05781898,0.008113323,-0.020275867,-0.06568177,0.038882095,0.037681594,-0.0055753575,0.02159194,-0.014626322,0.059416957,-0.000891055,-0.0016630155,0.022684168,0.07857119,0.06310473,-0.016319998,0.04081149,-0.101172164,0.066011004,0.05178347,-0.07392647,0.035322398,-0.018732693,-0.07114048,-0.040826183,0.01781239,-0.05958908,-0.10179952,0.0072363126,-0.025570909,-0.07204941,-0.04769624,-0.05812917,0.03477592,-0.047602423,-0.04754133,0.0034257919,0.035874147,-0.044786066,0.10773718,1.06534546e-32,-0.07794159,-0.017300008,-0.023249267,0.050918266,0.065017365,0.031090261,0.0074827257,-0.044533473,-0.031747933,0.0010549641,-0.10002557,0.015163862,-0.03834715,0.00074697996,0.04631045,0.041440062,0.0069567664,-0.030736709,0.0704462,0.0079792775,-0.067838356,0.0012023043,-0.032165416,0.015644647,0.015219524,0.08191236,0.0028514683,-0.119869456,-0.046804324,0.08864659,0.029463863,0.043906976,-0.015394364,0.004887814,-0.062198404,-0.031867895,0.041058928,-0.00022743162,-0.032040242,0.013950831,-0.006274809,0.04320478,-0.016091378,0.020901583,-0.090406075,0.028444447,0.028601144,0.090000354,0.09232712,0.016085016,-0.038532067,-0.033820856,-0.08499308,0.00023979142,0.0062585883,0.06614294,-0.053892624,0.0009838616,0.005337053,-0.08929425,0.025738424,0.07605307,-0.013857686,-0.016476505,-0.043495182,-0.009542911,0.04648076,0.038209833,0.12174258,0.043260224,-0.09164195,0.03509542,-0.057761665,0.052600276,-0.01628907,-6.715792e-05,0.032005414,0.051025145,-0.025534172,0.049841672,-0.040708657,0.031754054,0.08195022,0.03402453,0.019343382,0.0221267,0.031694617,0.043228757,0.016059855,0.1328892,-0.012404587,0.06275369,0.06296163,-0.03606378,0.019545242,-1.2974823e-32,-0.059406534,0.018899692,-0.02384472,-0.014783558,-0.004560866,-0.021108925,-0.04752246,-0.063591294,-0.002675685,-0.08363618,-0.105266035,-0.08583956,0.087241165,-0.099951066,0.014041176,0.054122683,0.018061392,-0.046273008,-0.15760669,-0.072525136,0.02241401,-0.032847308,0.06576252,-0.056155257,-0.036929898,-0.06976644,0.030420907,-0.004874674,-0.08396232,0.049963273,0.04711927,0.031961847,0.029367678,0.041075643,-0.052422203,0.083886445,0.04941278,0.043509867,0.012162207,0.060140382,-0.00408133,0.043107588,0.096341565,-0.010113259,0.007864715,-0.002029862,0.035472028,-0.111203514,0.016108854,-0.08981078,0.08997916,-0.098046556,-0.032781336,0.026892265,0.11548974,0.0038142856,0.078820474,-0.07575729,-0.030588482,-0.041671276,0.040855754,0.04340243,-0.046455026,-0.013624115,0.016251076,-0.016953748,-0.10380921,-0.014623584,0.018659798,-0.018170934,0.018629644,-0.03552168,-0.08741379,0.07338254,-0.07269048,0.004122055,-0.06155775,0.02111791,-0.043560255,-0.029796494,-0.026826985,0.024087014,-0.019990187,-0.03706293,0.058915056,0.0101369545,0.003205718,-0.018774383,0.0067782057,0.014525347,0.007242814,0.04318676,-0.061096594,-0.15914279,-0.028448595,-4.971109e-08,-0.00570684,-0.035929866,0.05247241,0.011269583,0.021265097,0.0077124964,0.010134987,0.009510142,0.013533884,-0.001020213,0.026090076,0.044637296,0.030274145,0.029374853,0.025910353,-0.03736999,0.054785766,0.022838404,-0.05322996,-0.035978973,0.039292786,-0.008813161,-0.041026086,-0.04849962,0.0070797536,-0.025949266,-0.03459377,-0.070875406,0.04509608,-0.032682005,-0.041250493,0.04187857,-0.091730304,-0.09127982,-0.023829179,0.023223842,0.026472975,0.008872792,-0.052340154,-0.08568581,0.004310662,0.011056403,-0.022652641,0.009673109,-0.045559015,-0.05008622,-0.0009249869,-0.0026318077,-0.030436559,-0.002697915,-0.07265558,-0.10148361,0.06616424,0.068033,0.03712061,-0.055577207,-0.020250954,0.005148849,-0.0067405333,-0.05930983,0.0045386027,0.08871803,-0.0007545774,-0.013726934} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:02:52.881895+00 2026-01-25 01:27:51.70029+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1295 google ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB 1 t 1298 Soho Club unknown Muy bien. Felicidades muy bien. felicidades 5 2025-03-05 18:34:31.336452+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy bien. Felicidades"} {0.03645252,0.048581503,0.02970228,-0.013090637,-0.019003147,0.014573664,0.08735787,0.014885936,0.0065811104,0.010823342,0.07626403,-0.023252226,-0.022546101,-0.04558811,0.033256568,0.018614765,0.012013944,0.04784322,-0.07192569,0.079437524,0.033795226,0.014630114,-0.011046681,0.1028149,-0.1315624,0.012691285,-0.0044884584,0.023370948,-0.011674399,-0.041503116,-0.03840964,0.082385756,0.108905315,-0.004837424,-0.023826895,-0.008473131,0.06733255,-0.0690394,0.06255038,0.058339495,-0.1520147,-0.044174116,-0.053303782,-0.03347794,-0.037011318,-0.06480504,0.031974524,0.04019202,0.032681756,0.00049412355,-0.07282559,0.03840888,-0.026273385,0.008438255,0.060982045,-0.018687224,-0.008994761,-0.024323432,0.0071880966,0.024477417,0.016924575,0.03477062,-0.03445082,0.03724793,0.015511322,-0.061640456,0.04789411,-0.00034260578,-0.055531267,-0.006955366,0.08041487,-0.054955,0.0106969355,0.0037969064,-0.05145813,0.017001715,0.02133745,0.013580942,-0.055520833,-0.07016772,-0.049783897,-0.0442597,-0.001017048,-0.04131502,0.062251695,0.03249645,-0.05203287,0.024514394,0.017728332,-0.0021295387,-0.03864874,0.06656699,-0.004654957,-0.002345621,0.037873082,0.024255047,0.034463685,-0.12330597,-0.022570504,0.08783322,0.038068324,0.112039804,0.098914616,0.054500666,0.008699794,0.011290085,0.01360324,0.019185564,-0.026041405,0.011834303,-0.003419358,-0.027789837,-0.00078295666,0.0067820246,0.006039816,0.0017336535,0.016961444,-0.0025184045,0.024542496,-0.08614416,0.0494309,0.025563022,-0.08182624,-0.045362934,-0.041656543,-0.050352987,0.031481486,-1.7347766e-33,-0.014924946,-0.030586157,0.012436937,0.084515706,-0.054611377,0.032042302,-0.0436042,0.024525292,-0.08484014,-0.0061733904,-0.017997772,0.031556472,0.020070326,0.013674,0.025608504,0.0005571677,0.0011508256,-0.074107386,0.09308661,0.04338928,-0.03803062,-0.025291365,0.031878352,0.010403845,0.024798142,0.011361889,-0.009498884,-0.046370666,-0.08613835,0.047943115,-0.04081756,0.010360647,0.01119447,-0.043564416,-0.008277359,-0.029942531,0.026889741,0.044889893,0.022518119,0.027363487,0.025819063,0.017564103,-0.041671712,-0.029180404,0.050589047,0.1093581,0.025992565,0.013451253,0.03984426,0.004847002,-0.019598905,-0.047216237,-0.11587658,-0.015242134,-0.01681194,-0.0131606385,-0.055490796,0.054400817,-0.06659344,-0.055990726,0.087552205,-0.0148181645,0.029789617,-0.051149894,-0.05033189,-0.062130406,-0.009958866,0.08953026,0.1122111,0.039943628,-0.08328625,-0.023008673,-0.008251137,0.00405486,-0.0021174457,0.035367023,-0.026344815,-0.052027315,0.106419235,0.055002857,0.015348586,0.015872559,0.06485702,0.0019048691,0.05840331,0.101118,0.021631798,-0.0100731235,-0.042911615,0.07214939,-0.059268557,0.043194186,0.0808452,-0.08065364,-0.05573404,8.6794514e-35,0.025454652,-0.020939972,-0.024835328,0.11104002,-0.031206038,0.011604063,-0.03409727,0.042818364,-0.09593024,-0.033308107,-0.00679004,-0.16957852,0.0666137,-0.05178837,-0.007317945,0.09426813,0.0013145148,-0.07124834,-0.086635716,0.0107170865,0.010200291,0.04191203,0.010503401,-0.009634922,-0.039385073,-0.041249506,-0.07828327,-0.021638438,-0.039659053,0.010484503,0.04898675,-0.005248078,-0.05466204,-0.010107827,0.0041654175,0.016378833,0.022390006,0.024400258,0.03376839,0.04273379,-0.02090445,0.09002697,-0.0020431844,0.087346464,-0.004417242,0.020892091,-0.017487034,-0.16310729,-0.03831418,-0.007543466,0.036426656,-0.05671183,-0.06589854,-0.015911588,0.027321596,-0.019245379,-0.006847894,-0.06771665,-0.083705045,-0.026893826,-0.019082453,0.0063380445,-0.100731514,-0.01614764,0.09633891,0.023552611,-0.062412344,0.0617975,0.026235085,0.012081791,0.075357534,-0.0620576,-0.07951803,0.00084776897,-0.09291259,-0.0050626104,-0.054827157,-0.021788074,0.011773012,0.08325407,0.010578983,-0.036873918,-0.07362886,0.010187953,-0.032396417,-0.043914635,-0.009142328,-0.0012449833,0.04117955,0.034104478,-0.0019626045,0.020875156,-0.050815992,-0.071895845,0.037697736,-1.7466332e-08,-0.010593633,-0.0896871,-0.060137056,0.008504192,0.025066989,-0.008608611,-0.07580748,0.056883413,0.03050324,0.078366235,-0.080170676,0.017584242,-0.04384533,0.07765231,-0.007223638,0.04105036,0.06579872,0.07543286,0.01972501,-0.014545665,0.07206816,0.020446805,-0.020726426,0.031276908,-0.0351861,7.605366e-05,-0.07562758,-0.06898249,-0.03520484,0.035743214,-0.0012486012,0.025659192,-0.038090706,-0.07071399,-0.032763597,-0.020885278,-0.026325475,-0.06511481,-0.010624474,0.011588675,0.13099399,0.028771374,-0.052040935,-0.046801783,0.04643523,-0.12373475,0.026101748,0.06403708,-0.0035882238,0.027460394,-0.0029346356,0.043468446,0.06365661,0.08262096,0.0057310113,-2.8050046e-05,0.05336618,0.049507685,0.0064641545,-0.0051527405,0.08264817,0.121808626,0.08902506,-0.16223769} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:54.787751+00 2026-01-29 18:36:00.705139+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1296 google ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE 1 t 1299 Soho Club unknown geriausias klubas Vilniuje geriausias klubas vilniuje 5 2025-01-29 18:34:31.336452+00 lt v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "geriausias klubas Vilniuje"} {0.04825306,0.11296396,-0.044645056,-0.012403551,-0.14777738,0.035808433,0.02523638,0.002019564,0.027715387,-0.008114156,0.084729895,-0.08179211,0.010485104,-0.0010477771,0.009389194,-0.09432427,0.04352853,0.0030214966,-0.048332524,0.02914643,-0.046954654,-0.04199989,-0.04705096,0.009926929,-0.021733858,0.018415183,0.036089882,0.013096203,-0.02737899,0.0004167744,-0.06164994,-0.001044788,0.041178633,0.019813549,-0.037548114,-0.036959436,-0.04295781,-0.02457159,0.021297384,0.12551169,-0.11035596,0.0002233,-0.033102494,0.051511753,-0.0014992375,0.027557163,-0.06087748,0.053954415,0.015846072,0.008423393,-0.078635655,-0.09332292,-0.0070311953,-0.024274947,0.0024965873,-0.058556214,-0.07543752,-0.036731,0.00080974214,0.09507916,0.114551835,-0.00011106128,0.0067282473,0.011387354,-0.07390256,-0.0379886,0.026779437,0.087742925,-0.07110923,0.036094185,0.009942073,-0.049930796,-0.021711838,0.037664965,-0.07335349,0.026925553,-0.043389384,-0.015934717,0.022338148,-0.09899385,0.005398484,-0.044646498,-0.09570637,0.0064569265,0.016961336,-0.03540943,0.061445788,0.039728243,0.029783143,0.06021096,-0.046029538,-0.010511319,-0.090879895,-0.072975405,-0.05007423,0.05931848,-0.012027823,0.015779924,0.030280974,0.045365173,-0.0088944975,-0.013260372,0.09972352,0.012264427,-0.12584314,0.0363977,-0.0042989505,0.014027265,0.019143913,0.010806689,-0.08953118,0.041975114,-0.08655168,-0.053428505,-0.02155614,0.031370226,0.09267653,0.010963326,-0.06627694,0.0051189205,0.08813314,-0.028973745,0.0070810006,-0.009166298,-0.026343962,0.013627395,0.08310708,2.372737e-33,-0.06957014,-0.1492355,-0.039265998,0.035499893,0.018196443,0.025533624,-0.05485276,-0.007451077,-0.06482192,-0.019373352,-0.036994092,-0.010314551,0.011637893,-0.024996635,0.0046976283,0.076914705,-0.0076721106,-0.06786492,-0.032617413,0.020001551,0.027623406,0.036070812,0.0681717,0.048151482,-0.08928228,-0.030715806,0.0078495275,-0.05802033,-0.015018502,0.025396872,0.0686089,-0.06649956,-0.036576767,-0.045013353,-0.04434619,0.058814302,-0.00206112,-0.043506067,-0.045029014,-0.06456123,-0.050177164,0.015970584,-0.022565637,0.08930666,-0.009110006,0.06252582,-0.01380444,0.01639061,0.032090846,-0.013117007,-0.06973891,-0.009024666,-0.03235276,0.0334407,0.0023485755,0.0897352,0.047708217,0.10567205,-0.016068138,-0.103557065,0.039046105,0.095356174,-0.032583162,-0.0061899535,0.016202543,-0.029548129,0.05311275,0.014922404,0.015257708,-0.01922002,-0.032035667,-0.021017846,-0.0143492725,0.092395805,-0.09941434,0.005919048,-0.015360905,-0.063098,-0.0008848467,0.0029640866,-0.07931831,0.00787383,0.045375735,-0.003620162,0.047792803,0.009439568,-0.010094054,-0.033240624,0.034842826,0.054445162,-0.034558978,0.09315676,0.07133291,-0.031203697,0.011736712,-4.1260168e-33,0.025957363,0.0005241367,-0.0053118686,0.019855892,0.0766822,0.10576524,-0.09649501,0.016075278,-0.10968986,-0.03872492,-0.05183996,-0.10535191,0.02336747,-0.0011386065,-0.028400818,-0.011267165,0.099628985,0.06564064,-0.0513716,-0.060418755,-0.066319734,0.062225692,0.024132852,0.013766559,-0.038393825,-0.027910227,0.054776996,0.040302005,-0.18779126,0.040372584,0.037436083,-0.02212324,-0.008923612,0.019750364,0.013899573,0.02759032,0.055164415,0.021361561,0.005322305,0.0011793828,0.014808344,0.039371647,-0.02414099,0.1082145,-0.038799025,0.050074067,-0.0637389,-0.025811803,0.008797343,-0.06529118,0.06381327,0.0022809799,-0.042615842,-0.0700811,0.09716148,0.0012684306,-0.020189468,-0.11656461,0.036686584,0.06023667,0.04236195,-0.011901216,0.0042716507,0.0044569597,0.0404044,0.089385174,-0.077190354,0.09860954,0.021167187,0.051244445,0.025835754,-0.03135724,-0.09170749,0.020617804,-0.100219265,-0.0020784927,-0.047753986,0.007633041,-0.021973418,-0.0094384095,0.05742268,-0.06723258,-0.06264918,0.027405577,0.027415002,-0.022646695,0.018613124,0.042824753,0.049084034,0.067298055,0.01642632,0.031281013,-0.023426857,-0.02880374,0.06376776,-1.9664318e-08,-0.017644519,-0.040104087,0.009576116,0.0026692913,0.030817516,-0.023301508,-0.052457865,0.03326203,0.057418738,0.055010643,0.010947314,-0.002721557,0.0041537653,0.10992821,0.0025704326,0.041991986,0.036807507,0.12376659,-0.0005655848,0.023919815,0.07179217,-0.018848345,0.0077042845,0.016559536,0.020203304,-0.024104796,-0.008372399,0.036714163,0.04102089,-0.07459494,-0.024263512,0.055638235,-0.02581605,-0.0014500297,-0.10128481,0.037715834,-0.08180364,0.005224611,-0.056029815,-0.021520475,-0.01700758,-0.044445973,0.009430735,-0.015491354,-0.034561105,0.010190179,0.031359144,0.08728773,-0.021640439,-0.016291225,-0.06750017,0.012456644,0.08137052,0.076116495,-0.045316204,0.010970855,0.051600896,0.059119355,0.0031600571,-0.038181745,0.028033836,-0.000125927,0.06741328,-0.00970935} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:59.591102+00 2026-01-29 18:36:00.706286+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 191 google Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB 1 t 194 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank...It is not Clickrent who is cheating, it is the platform. Also the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name. But overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff! we rented through the platform 'doyouspain' which charges an extra 35 euro for filling the full tank...it is not clickrent who is cheating, it is the platform. also the reviews from 'doyouspain' are negative....so maybe clickrent should avoid working with doyouspain in order to keep the good name. but overall if we would book again, it would be directly with clickrent! keep up the good work and helpful smiley staff! 4 2025-12-26 01:27:48.340143+00 en v5.1 V1.03 {R1.02} V- I2 CR-W {} {"P1.01": "But overall if we would book again, it would be directly with Clickrent! Keep up the good work and h", "V1.03": "We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank"} {-0.09019362,-0.0872847,0.04069351,-0.07359067,-0.043380275,-0.033038083,0.07191391,-0.016194506,0.009444123,-0.031911887,-0.011024726,0.07632582,0.008833264,0.01741562,0.008627195,-0.027953459,0.080144994,-0.013574359,0.02368081,-0.07301902,-0.032156523,-0.032072414,0.02742032,-0.005413623,-0.02091395,-0.08341686,-0.10725729,0.06662414,0.0014102192,-0.06534949,0.015308804,0.093819804,-0.00792108,-0.045137905,0.05284484,-0.05917813,-0.10262525,-0.0127095105,-0.044672307,0.0010575368,0.04442544,-0.05019672,-0.024676474,0.10971248,-0.054604042,-0.0098399725,0.03012745,0.039110214,0.0471546,0.07934833,-0.0908376,-0.039522033,0.05808354,-0.06347635,-0.04374934,-0.08401841,0.065093994,0.07652941,0.016203871,0.003610306,0.0046552946,0.044648044,-0.07512585,0.0034848342,0.006782306,0.031054838,-0.070020206,0.07278191,0.005366587,-0.058743812,-0.008748103,-0.031141896,0.05743847,0.072415,-0.02011827,-0.0038623041,-0.004627911,0.008544497,0.01791232,-0.046763558,-0.015776733,-0.031527046,-0.03448316,-0.030562928,0.065271005,-0.01397852,0.04694325,0.032399192,0.03829679,-0.059391443,0.032786462,0.06833727,0.11180915,-8.274714e-05,-0.027998991,0.038670998,-0.02522071,0.008256798,-0.11588503,0.06772568,-0.00062441616,0.041022856,-0.04281087,-0.10896245,0.0059999507,-0.0730082,0.06246351,0.04660952,0.09438269,-0.033897914,-0.07866986,0.045670874,0.09861655,-0.02383417,-0.0028286842,-0.022250338,-0.04935798,-0.02520755,0.07140046,-0.02948169,0.06321783,0.00877354,-0.015494124,-0.01984678,0.044100355,-0.14588127,0.05256773,1.2237012e-34,-0.034046486,0.094051875,-0.049335316,0.032181945,0.0238261,0.007985975,0.016028157,0.048926376,-0.15312043,0.047692627,-0.0015333841,-0.057841677,-0.025269905,0.008930576,-0.02693485,-0.011348112,-0.010900334,0.07730023,0.033789355,0.0042992625,0.06688268,-0.010452631,0.047240518,-0.014845983,-0.00505951,-0.050278768,-0.05423644,-0.0016074231,0.18494533,0.055575598,-0.04009156,-0.07128893,-0.02077213,0.024436573,-0.0216518,0.009950957,-0.07023494,-0.102424964,-0.097662985,0.0041408003,-0.0458839,-0.022591958,-0.023938697,0.024871744,-0.07847002,0.00077047717,0.099115685,-0.09153113,0.020097049,0.0071011954,-0.016174817,-0.08107606,-0.059069354,0.036459785,-0.09471512,0.027932087,-0.02550142,-0.06547597,0.04270292,-0.02111616,0.037994523,-0.025870673,-0.045088507,-0.017400257,-0.074464664,-0.034938164,0.011308707,-0.034239292,0.047152832,0.03008257,0.02094079,-0.008764325,0.028167233,-0.031275492,0.00922299,-0.004705671,-0.05981809,0.012699525,0.05433643,0.00048060293,0.030034414,-0.08214672,-0.0015554571,0.04636176,-0.047832698,0.0320715,0.074621394,-0.0034222638,-0.048555724,0.10514666,0.01763845,-0.050260648,-0.0817043,0.00068176293,0.048211217,-1.3454365e-33,-0.08668874,-0.039819133,0.020320639,-0.012907119,-0.030122112,0.043858424,-0.039898876,-0.0135805365,0.015111168,0.050925653,-0.08075437,-0.031309012,0.010202221,-0.04139965,0.031881917,-0.0063647944,0.055709224,-0.07329866,-0.0083217565,-0.052499913,-0.05869714,-0.031167371,-0.03876092,0.063340396,0.029187998,0.029886909,0.009773279,0.048329294,0.07169647,0.05227278,0.037021138,0.06511737,-0.09454519,0.0011263201,0.0036904628,0.061917804,0.041449614,0.033053536,-0.07795378,-0.05836487,0.036424592,-0.10064051,-0.0583191,-0.020446125,-0.04185584,-0.08380944,-0.059299313,-0.006868557,0.053774647,0.0067051384,0.05481392,-0.029416062,0.037358582,-0.0896519,-0.010685784,0.0892308,0.008128336,0.030343192,0.020923646,0.007714938,0.011359487,-0.025790801,-0.053240284,0.005988459,0.004468136,-0.036878668,0.067792326,0.06584081,0.039097946,0.05169663,-0.070249476,0.039801627,0.01624461,-0.14099032,0.021084346,0.014919439,0.065287314,0.007095786,-0.016516518,-0.059819542,0.09851835,0.005857362,0.046729233,0.025735196,-0.0013036404,-0.01992621,0.0824212,0.032090597,-0.025755137,-0.00992963,0.020702908,0.027671441,-0.028028017,-0.021315414,0.04623116,-5.1603784e-08,0.012000214,0.0668569,0.06697045,0.073972374,0.0015205682,-0.065472215,0.039665587,0.10947181,-0.041026674,0.12180833,0.0063680443,-0.10507106,-0.0022142038,0.0062807687,0.011161717,-0.010205879,0.015468225,0.05415219,-0.056227487,0.03398201,0.016456239,0.06111721,-0.019827716,-0.063214,-0.0033708757,0.010472031,0.023661917,0.018942147,0.046740033,-0.028847346,0.03333978,-0.004934885,-0.07077561,0.030744115,-0.021496607,-0.0494306,-0.008387374,-0.005372751,-0.019391537,0.06895306,0.0074864957,0.028564125,0.015753107,0.06659546,-0.020014927,0.061305407,-0.094290495,-0.06649539,0.06717923,-0.062314294,0.0091250995,0.011965986,-0.016262941,0.06670498,0.079288766,-0.0150625985,0.025471732,0.014641924,-0.010254677,0.06324263,0.023393862,-0.02731164,-0.0021563293,0.027326196} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:40:05.531563+00 2026-01-25 01:27:49.971066+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 288 google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB 1 t 291 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert. Die Kaution war etwas hoch, aber ansonsten super. Das Auto war neu und in einem super Zustand. Würden wieder dort buchen. haben dort (über check24) ein mietwagen gebucht. hat alles gut und reibungslos funktioniert. die kaution war etwas hoch, aber ansonsten super. das auto war neu und in einem super zustand. würden wieder dort buchen. 5 2025-12-26 01:27:48.34085+00 de v5.1 J2.01 {} V+ I2 CR-N {} {"J2.01": "Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert.", "O2.01": "Das Auto war neu und in einem super Zustand.", "R2.01": "Würden wieder dort buchen.", "V1.01": "Die Kaution war etwas hoch, aber ansonsten super."} {-0.0325199,0.13065878,-0.070817694,-0.08127756,-0.08420825,-0.023598503,0.03314364,0.10322486,-0.021594899,0.04002577,0.009598072,-0.0031257651,-0.022134433,-0.029733324,-0.14256619,0.0036496483,-0.016581027,0.019720208,-0.023303837,-0.044849955,-0.02098779,0.0048223613,0.079445876,0.02064916,-0.0017330042,-0.056586917,-0.092603646,0.029341457,0.081001505,-0.03513504,0.06934812,0.04477244,0.0029185535,0.045429934,-0.05957825,-0.0112238005,-0.01166682,-0.00932973,-0.048882026,-0.03265205,-0.04613686,0.020161076,-0.067881554,0.02645508,0.017725172,0.04115008,-0.029197572,-0.0049878494,-0.07160028,0.07405878,-0.034003876,-0.0122414315,0.08413397,-0.0514458,0.02259562,-0.005256486,-0.06827983,0.057109047,0.09903234,-0.053905137,-0.00071435055,0.048312437,-0.06319255,-0.014860833,-0.055005826,0.058660224,-0.062238663,0.060226418,-0.0597349,0.026089212,0.0870414,-0.10458622,0.065647244,-0.04384057,-0.050146263,0.0022682378,-0.016428312,-0.07636412,-0.022030817,0.009675472,-0.018263957,0.03792182,-0.040159628,-0.038843144,0.031765062,-0.04036551,0.010652607,0.0621764,0.06953937,-0.061403178,-0.04651976,-0.0014694727,-0.06598471,0.03350928,-0.009365854,0.021390986,0.08204368,-0.019488914,0.10284663,0.051204886,0.06869191,-0.009202802,0.0038009959,0.04312001,-0.058478244,-0.027406653,-0.00066418614,-0.008972533,0.0030845515,-0.025826117,0.019846713,0.009729523,0.06179457,-0.08030655,0.011167914,-0.007992664,-0.039897457,-0.04848166,-0.05961871,-0.055822436,0.029834013,0.0024082712,-0.050078318,0.03632952,0.10468813,-0.03299594,0.028806793,1.19139254e-32,-0.058506902,-0.03718383,-0.012807845,0.033781596,-0.028555194,-0.11200338,-0.0015663232,0.048798867,-0.04634468,0.108140394,-0.01585671,0.1123997,-0.05825206,-0.026310667,0.00548432,-0.02341799,0.08857119,-0.009071977,0.08630524,-0.014561546,-0.03147576,-0.07195497,-0.021225229,-0.031724628,0.038432896,-0.037931528,0.077623665,0.0051270304,-0.011108651,0.033337906,-0.009935657,-0.06168238,-0.050987888,0.033143282,-0.084054016,-0.034883738,-0.14539683,0.11502332,-0.10623275,-0.0796332,0.083703764,0.014650846,-0.043926403,-0.05786109,0.12652747,0.038398437,0.07898374,0.0013369025,0.13304885,0.052099604,-0.029727332,-0.02452231,-0.067925125,0.03528869,-0.011972262,0.03020811,-0.08088054,0.0543615,-0.053734027,0.05992378,-0.05038297,-0.042915393,-0.03389096,0.034132946,-0.051030494,-0.029686438,-0.042870317,0.009681727,0.024547685,0.085746594,-0.06693261,0.018446818,0.10025804,-0.034094237,0.04346806,0.07234944,0.03845838,0.03847695,-0.10659534,-0.032416634,0.0057064854,-0.0050415685,0.020721057,0.00555112,0.025895385,-0.016269965,-0.010339286,-0.064268135,6.2997286e-05,0.079895645,-0.04447529,-0.068094194,-0.032768995,0.020029305,0.05527435,-1.0922738e-32,0.016241426,-0.01118867,-0.034424264,0.021984426,0.0009587535,0.03510446,-0.053689454,-0.0064246044,-0.051423248,0.03331752,-0.020774273,-0.057556484,0.058406025,0.00916728,-0.018804785,-0.014249596,0.073877186,-0.045863453,0.009630763,-0.011541205,0.019596834,0.016328696,-0.03204181,-0.023915028,0.045104187,0.1008346,0.07503399,0.035463154,-0.029352069,0.048473485,0.035321064,-0.0044354307,0.062532164,0.058756556,0.0118590705,-0.06302468,0.13282667,0.064907864,-0.04037995,0.017853692,-0.023977395,0.086202264,-0.005599924,0.009013467,-0.00058244204,-0.004907834,-0.06411934,0.0058696773,0.071725875,-0.08067714,0.09763097,-0.02203861,0.08397674,-0.062020537,0.04679685,0.032558367,0.03823634,-0.020462511,-0.0405728,0.051255275,0.060919683,-0.06698897,-0.018491128,0.015539911,-0.013186452,-0.060262077,-0.07220648,-0.044347886,0.0044592028,0.09009564,0.055760834,-0.014077353,-0.041674707,-0.02090162,-0.012659299,0.010257534,0.058919262,0.0039545093,-0.037409306,0.044095807,-0.028910004,-0.01874779,0.005865369,0.06885875,-0.019870346,-0.06817738,-0.029510621,-0.013543104,-0.0019510245,0.04575305,-0.025872417,0.061808757,0.014286276,-0.05239766,-0.039292276,-5.2742237e-08,0.0047902805,-0.03865739,-0.1107451,0.08492187,-0.032107856,-0.057959758,-0.028772384,-0.044701397,-0.092281766,0.037825193,0.023366008,-0.021199297,-0.10327785,0.0027175574,-0.005216696,-0.028836079,-0.06872654,-0.05835022,-0.07057711,0.0021972172,0.09677848,-0.01940602,-0.038087625,0.023398457,-0.031775426,0.01603485,-0.017589971,0.004848003,0.075992756,-0.037934493,0.008715417,0.12326048,0.0034085,0.0035474717,-0.025112364,0.022053272,0.025396312,0.07040142,-0.015719436,0.056372546,0.057426672,0.038951144,-0.062833495,-0.026340395,-0.050168786,-0.014432552,-0.083465725,-0.0297851,0.035795957,-0.026297366,-0.019285582,-0.008229142,0.039914843,0.054511733,-0.009769575,0.05244734,0.030701524,-0.038733598,0.01687569,0.0276225,0.050730582,-0.010405655,0.0042998125,-0.021949872} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:55:58.54875+00 2026-01-25 01:27:50.827394+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1431 google ChZDSUhNMG9nS0VJQ0FnSUNHdDQ3Q1ZBEAE 1 t 1434 Go Karts Mar Menor unknown Best lap in the area they say and best that I have seen myself. It's just great. All kinds of karts, 100, 300, 300, 400 cm2. This is the place to go to have super good karting experience best lap in the area they say and best that i have seen myself. it's just great. all kinds of karts, 100, 300, 300, 400 cm2. this is the place to go to have super good karting experience 5 2022-01-31 01:52:39.833374+00 en v5.1 O1.02 {O3.02} V+ I3 CR-B {} {"O1.02": "Best lap in the area they say and best that I have seen myself. It's just great. All kinds of karts,"} {0.057456788,-0.012098119,0.0009266487,0.044902887,-0.12630917,-0.009581971,-0.04687623,0.011694948,-0.012764864,0.018463708,-0.032560326,0.07449245,0.02718766,0.01729885,0.029630456,-0.041817002,0.17338872,-0.10844519,0.052261434,-0.07922797,-0.028434685,-0.011688936,0.01743614,0.01921651,-0.033236567,0.029552847,0.024465848,0.07754001,-0.005401833,-0.02137876,-0.09771297,0.030688798,-0.03609768,-0.028166322,-0.02955953,-0.017528245,-0.031023506,-0.10044225,-0.0054366505,-0.06648086,-0.019217975,-0.0016363207,0.072649844,-0.020083282,0.054580793,0.010983171,-0.0035908057,-0.02823876,0.072365366,-0.006191557,0.042984784,-0.096477434,0.020141248,-0.04406974,-0.042790458,-0.012665836,-0.04940593,-0.0077475947,0.00054917525,-0.036575813,0.041447937,-0.013331518,-0.015501169,0.04175058,-0.035515133,-0.08515034,-0.08876347,-0.033129558,-0.016340172,-0.024270033,0.008289001,0.023633264,-0.030679112,0.04460408,0.04642745,0.025384614,0.067073755,0.031560495,-0.039572764,0.028516376,0.08543362,0.008263952,0.045762435,-0.013349949,-0.016047895,-0.11235581,0.04754884,0.022867253,0.032259177,-0.030994253,0.055166908,0.052626427,-0.14620869,-0.030810777,-0.03611991,0.048710253,-0.046428155,-0.012716815,-0.006747807,-0.03526959,0.02539232,0.03134019,0.04695343,-0.028419824,-0.019450486,0.024584385,0.033472095,0.042434618,0.03224383,0.036385935,0.0055016805,-0.0056920727,-0.030414697,-0.0072528683,-0.00581892,0.0024961466,-0.0012588957,0.070801675,0.041256063,0.06727843,-0.072474115,-0.0089670345,0.0026509291,0.024856277,0.03627516,0.03754134,0.021183392,-2.4318083e-33,-0.083413444,-0.028501082,0.014717704,-0.050639696,0.046987023,-0.096103504,0.039188363,-0.14141871,0.01972624,0.024485892,-0.028078614,-0.007164333,0.01366019,0.020968458,0.094611116,0.0266409,-0.052995905,-0.039705228,-0.20286468,0.00020678739,0.0239442,-0.003819657,0.026475998,-0.005237472,0.036993947,0.03484074,0.08986074,-0.023665939,-0.013172425,0.040939923,-0.10072304,-0.085796,-0.0843248,-0.033806067,-0.0057018353,0.036757424,-0.09126164,-0.038713794,0.026536746,0.05693958,-0.04555335,0.03094777,-0.030842664,0.0040757703,-0.04355299,0.031502075,0.015390095,0.04779172,-0.0077151665,-0.06086501,-0.12474598,-0.01924453,0.048043717,-0.00019808473,-0.03565724,0.05709288,0.11383933,-0.024044724,-0.0015736521,0.024738535,0.019905917,0.015990641,0.0066591776,-0.037890926,-0.116882,-0.018914718,0.04607432,0.024192547,-0.013154711,0.019774709,-0.051013257,-0.026965018,0.033788312,-0.048640724,0.090166934,-0.022281503,-0.015378322,0.05566891,-0.025170594,0.033707447,-0.057636324,0.029276114,-0.024929408,0.025751274,0.05700165,0.003928563,-0.080725424,-0.074850336,0.021086989,-0.025615295,-0.046323135,0.016578129,0.045508828,0.1076046,0.013061488,4.4466003e-34,0.04279472,0.02477205,0.14359951,0.11446347,-0.02121597,-0.013553019,0.040245496,-0.0032592285,-0.019870838,0.011907982,-0.07867791,0.046813168,0.01574318,0.010793841,0.06340626,0.00033452475,0.041958857,-0.010030662,0.031949718,-0.046173822,0.023130497,0.010012276,0.03498454,-0.0704455,0.0034883707,-0.033496596,-0.093421645,-0.032312132,-0.077400535,-0.02793534,-0.037272874,-0.0053795567,0.018355364,0.024093904,0.035588015,-0.0017549426,0.09373331,0.053523883,-0.036305234,0.09144757,0.14109948,0.0128226625,0.009370266,0.023398297,0.023669833,-0.061898608,0.034729034,-0.024108037,0.020371083,-0.015780834,-0.018545317,-0.01292733,-0.05265962,0.0028790063,0.03593048,-0.08964245,0.018706484,0.03766237,-0.055685107,-0.064355664,-0.06166021,0.015478545,-0.04369897,0.092443734,0.04071868,0.048497826,-0.026671095,0.024860187,-0.05269885,-0.031250928,-0.16345859,-0.03976975,-0.07293987,0.047459565,-0.028196434,0.040231228,0.10287424,-0.031001963,0.013215334,0.07468867,0.057019684,-0.046965655,-0.079297625,0.051783625,0.07456347,0.059194215,-0.05452472,-0.06800982,-0.021802573,-0.009325604,0.0726852,0.06279552,-0.03484764,-0.02384616,-0.022260306,-3.151669e-08,-0.08649043,0.09773415,-0.008806177,0.05551707,0.006277793,-0.04708382,-0.012685334,0.041943327,-0.059115414,0.058803517,0.019379951,-0.047185026,0.024243746,-0.038072757,0.03352036,0.034768306,0.007100891,0.119063996,-0.0066308645,0.045393463,0.026530242,-0.010581369,0.06463124,-0.0071156085,0.022309812,-0.02452446,-0.012145231,-0.0038267719,-0.028969493,-0.09017655,-0.015067934,0.0063341428,-0.034890324,0.08044229,0.025118174,-0.044870622,-0.0017649826,0.056186616,0.027984733,0.031032037,-0.046026677,-0.07600071,-0.03483252,-0.026790826,-0.061802115,0.04889598,0.008230039,-0.0667504,-0.043272123,0.08394157,-0.062290944,-0.04779144,0.052062564,0.049198058,0.049488027,0.058762573,0.04220509,-0.03255317,-0.04474361,0.028590979,0.03136321,-0.0017587591,-0.027878465,0.0806099} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:23.959013+00 2026-01-30 02:01:09.334634+00 22c747a6-b913-4ae4-82bc-14b4195008b6 463 google Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB 1 t 466 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores 1 2025-10-27 01:27:48.342068+00 es v5.1 J1.02 {} V- I3 CR-N {} {"J1.02": "Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora teng"} {-0.036544338,0.121071324,-0.0020449578,-0.060465414,-0.06475921,0.045532193,0.06599504,0.009949218,0.01550437,0.018538626,0.0784033,-0.018600043,-0.024391988,-0.019520175,0.023558915,0.04464512,0.0551632,0.061582033,0.06948751,-0.0065782205,0.08797381,-0.0143747,-0.021192677,0.08787725,-0.05661536,0.058368135,-0.008660138,0.028120011,-0.08761409,-0.060550172,0.023754733,0.06413214,0.01291973,-0.100649856,-0.033332128,0.018103553,-0.026127376,-0.00934792,-0.0326052,0.07169416,-0.10238233,-0.036231693,-0.07962922,-0.041607328,0.01730534,-0.089146726,0.026473429,0.092105895,0.07639191,0.0075891353,0.009063743,-0.05904512,-0.04272276,0.030433252,0.041317567,-0.01454795,-0.018966708,0.033818807,0.10854991,0.04869068,-0.006953697,0.054015275,-0.06029531,0.020416507,-0.027356576,-0.06395998,0.02500251,-0.03212032,-0.09150574,0.06164205,0.121711485,-0.063455336,0.011233251,0.025124202,-0.114189334,0.03709407,0.0053991824,0.028785346,0.07023537,0.030741017,0.013134742,-0.019800324,-0.042415302,-0.055927865,0.032917373,-0.027150432,-0.0018300479,0.059741247,0.07672741,0.024502885,-0.00506321,0.0069708056,0.026867932,0.030963033,0.009253099,-0.038956013,-0.04232635,-0.013459461,-0.054859404,-0.012127347,0.094851725,0.057757143,0.037316907,0.022588583,-0.10269326,-0.001210237,0.013501143,0.05522799,-0.024783215,0.064259544,-0.0412484,-0.030401709,0.0053037093,-0.011313024,-0.045147933,0.04150067,-0.010942383,0.0072316835,-0.020208122,-0.0858616,0.028338974,0.023779564,-0.0055948975,-0.028743114,0.035736885,-0.11850577,0.03354282,1.1696027e-32,0.010944164,-0.0030952364,-0.034270123,0.052363664,0.0070726587,0.062121335,-0.00404913,0.029360695,0.00077575044,-0.017548922,-0.056856085,-0.023355575,-0.03181472,0.0060919076,-0.05334983,0.01123621,0.031958062,0.05704388,0.010033839,0.013696767,-0.07024002,0.012871461,-0.025141364,-0.03671645,0.009124912,0.021957152,-0.035499062,-0.011250896,-0.01980507,0.031668294,0.0156893,0.018307563,0.037517667,0.031247364,0.0019989775,-0.025571676,0.10362904,-0.019018382,-0.07844596,-0.027649531,-0.0023151143,0.037505616,-0.062099714,0.040811192,0.08325887,-0.04151456,0.076527864,-0.017966967,0.05228358,-0.012051311,-0.0054766787,0.02958478,-0.014521664,-0.095917515,-0.06171924,0.016599797,-0.10176937,0.05337052,-0.03488723,-0.09146704,0.014497053,-0.03040932,0.030523717,-0.018923845,-0.078501694,-0.052451864,0.04450423,-0.04000123,0.067052774,0.021611363,-0.01171984,0.04613196,0.0004807812,-0.0003407663,-0.01782762,-0.025649458,0.021366352,0.01917231,0.021472549,0.003527685,0.07492441,-0.03738174,0.009373805,0.023650464,0.117616735,0.024269374,0.04397153,-0.005536042,-0.0069631077,0.14908637,-0.028011808,0.012655806,-0.011587266,0.043873407,0.089219384,-1.1083012e-32,-0.012495164,-0.013434798,0.03845956,0.01478472,-0.077956945,-0.0002646213,0.017592441,0.075674355,-0.052301966,-0.10023054,-0.038609248,-0.14718409,0.07823618,-0.01083952,-0.05516933,0.073949665,-0.0044115526,-0.010039733,-0.14017309,-0.04646773,-0.027250879,0.01622265,0.025666436,0.0020780596,-0.0014972183,-0.026403083,-0.023138162,-0.06381082,-0.03933276,-0.03636155,0.06484828,-0.090241514,-0.012490454,0.02348176,-0.029209627,0.03146839,0.00015159434,0.050487343,0.0057083904,0.024548385,0.022283975,0.074938275,-0.04026889,0.0010674364,-0.065484874,-0.030597374,0.021556048,-0.15263955,0.07058085,-0.082895756,-0.01998832,-0.107086,-0.016779518,-0.005451191,0.0550248,-0.05603071,0.012206135,-0.06481124,0.0009101396,0.0051109623,0.07515399,-0.011693095,-0.0003443291,-0.05510879,0.08652672,0.04456458,-0.02617779,0.01733685,0.0037511238,0.05642462,0.05176583,-0.07477476,-0.07523929,0.05857866,-0.008501562,-0.12082675,-0.04342948,-0.049951445,-0.06538491,0.010257269,0.08582486,-0.031546775,-0.020703277,-0.05805025,-0.07097391,0.006473967,0.018439166,0.06254945,-0.016769141,0.067431636,0.015125451,0.004948651,-0.05013448,0.02635217,0.0088583,-4.2384688e-08,0.06518128,-0.051780935,0.033224236,-0.030407371,0.035245858,-0.051858444,0.016039178,-0.0018121628,0.06143443,0.057949007,0.04240101,-0.015424603,0.0052746753,-0.0028367632,0.053467907,-0.030992096,0.122000344,0.018394403,0.009066219,-0.08259932,0.11826768,0.013352484,0.035373352,-0.060007468,0.010882453,-0.026310975,-0.054266956,0.061929505,-0.02560173,0.015031833,-0.045969192,-0.0043998905,0.018526843,-0.09502976,-0.12003572,-0.041648682,0.06567269,0.041996393,-0.010495356,-0.01884179,0.04348525,-0.01791094,-0.04758949,0.03288571,-0.037202444,-0.09124748,-0.0059447316,0.025079004,-0.05061381,0.019584812,-0.034513053,-0.04495551,0.09414857,-0.03329202,0.0777964,-0.04583752,-0.048109166,0.08986881,-0.07183105,0.029549079,0.059357747,0.060977243,-0.02706012,-0.11334744} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:38.683468+00 2026-01-25 01:27:51.476023+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 285 google Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB 1 t 288 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Finger weg – seriös ist anders.\n\nBei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 500 € in Rechnung gestellt. Laut Vermieter handelt es sich um einen Kratzer im unteren Bereich der vorderen Stoßstange, praktisch im Unterboden unterhalb der Frontschürze. Wir haben das Fahrzeug bei Übernahme und Rückgabe umfassend fotografiert – lediglich den Unterboden nicht, da man sich dafür unter das Auto hätte legen müssen und der Boden auch noch nass war.\n\nWir haben diesen Schaden definitiv nicht verursacht. Zudem befindet er sich an einer Stelle, an der es nicht möglich ist, dass er durch Dritte entstanden sein könnte. Auffällig war außerdem, dass der Mitarbeiter bei der Fahrzeugrücknahme als Erstes gezielt den vorderen Schweller kontrolliert hat.\n\nEigenartig fanden wir im Nachhinein auch, dass wir bei der. Anmietung ein Fahrzeug-Upgrade erhalten haben, nachdem die (leider sehr unfreundliche) Mitarbeiterin am Schalter erfahren hatte, dass wir über CHECK24 eine deutsche Vollkaskoversicherung ohne Selbstbeteiligung abgeschlossen hatten. Im Nachhinein ergibt für uns einiges mehr Sinn – Schelm, wer Böses dabei denkt. Anscheinend ist dies eine Masche bei dieser Autovermietung, wie man den anderen Google Bewertungen entnehmen kann, die wir besser im Vorhinein gelesen hätten.\n\nDie einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughafen.\n\nWir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutzen und können nur dringend davon abraten. finger weg – seriös ist anders. bei der rückgabe unseres mietwagens wurde uns plötzlich ein angeblicher schaden in höhe von knapp 500 € in rechnung gestellt. laut vermieter handelt es sich um einen kratzer im unteren bereich der vorderen stoßstange, praktisch im unterboden unterhalb der frontschürze. wir haben das fahrzeug bei übernahme und rückgabe umfassend fotografiert – lediglich den unterboden nicht, da man sich dafür unter das auto hätte legen müssen und der boden auch noch nass war. wir haben diesen schaden definitiv nicht verursacht. zudem befindet er sich an einer stelle, an der es nicht möglich ist, dass er durch dritte entstanden sein könnte. auffällig war außerdem, dass der mitarbeiter bei der fahrzeugrücknahme als erstes gezielt den vorderen schweller kontrolliert hat. eigenartig fanden wir im nachhinein auch, dass wir bei der. anmietung ein fahrzeug-upgrade erhalten haben, nachdem die (leider sehr unfreundliche) mitarbeiterin am schalter erfahren hatte, dass wir über check24 eine deutsche vollkaskoversicherung ohne selbstbeteiligung abgeschlossen hatten. im nachhinein ergibt für uns einiges mehr sinn – schelm, wer böses dabei denkt. anscheinend ist dies eine masche bei dieser autovermietung, wie man den anderen google bewertungen entnehmen kann, die wir besser im vorhinein gelesen hätten. die einzigen wirklich freundlichen personen waren die busfahrer für den transfer zum und vom flughafen. wir mieten mehrmals im jahr fahrzeuge, werden diesen vermieter jedoch definitiv nie nie wieder nutzen und können nur dringend davon abraten. 1 2026-01-11 01:27:48.340843+00 de v5.1 R1.01 {} V- I3 CR-N {} {"P1.01": "Die einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughaf", "P1.02": "Eigenartig fanden wir im Nachhinein auch, dass wir bei der Anmietung ein Fahrzeug-Upgrade erhalten h", "R1.01": "Bei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 50", "R1.03": "Wir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutze"} {-0.088594355,0.07101854,-0.06252956,-0.045897137,-0.0110291,-0.021436589,0.04463193,0.069446236,0.0004009822,0.0013395877,0.061474275,-0.021484833,0.025767846,-0.056335215,-0.03583466,-0.07412665,-0.022066612,0.003013619,-0.053272776,0.09909864,0.054004267,-0.091200136,0.056977212,0.0098213665,-0.03545231,0.029320063,-0.0010808724,-0.012502981,-0.032380346,-0.057831228,0.033927225,0.057320878,-0.08067222,-0.07084393,0.015762385,-0.015450122,0.027829647,0.0013257497,-0.019049596,0.05338799,-0.0058580865,-0.020749401,-0.09923055,-0.023934603,0.039282605,-0.012970451,0.049833912,0.067108884,-0.018191125,-0.0295977,0.07161504,0.008243515,0.046120755,-0.09089612,0.016944189,-0.1264246,-0.04304098,-0.03174152,0.03864229,0.008153761,0.041350193,0.0017218752,0.017837266,0.009240571,0.033063833,-0.040380444,0.050000485,-0.12586673,0.037198476,0.031238297,0.029287398,-0.114086546,-0.014630079,-0.03917081,-0.06643547,0.0031087648,-0.05091197,0.029349444,-0.09265111,-0.08564418,0.084965035,-0.06305829,0.07822622,0.0044628973,-0.03656821,-0.053562082,-0.072550796,0.036723778,-0.06795761,-0.048224624,-0.04938625,0.029204851,-0.117972754,-0.013105041,0.09788366,-0.0070327623,-0.06754691,0.017509302,-0.002372558,0.04825203,0.09796134,-0.022610463,-0.052784313,0.015729507,0.04831249,-0.02066768,-0.03681896,-0.033742093,-0.052861605,0.019220427,-0.035661507,-0.043355573,-0.06251642,-0.029789023,0.017970696,-0.13699956,-0.0064629205,-0.06870761,0.00431962,-0.019537507,0.027958577,0.03999542,-0.042373642,0.021916265,0.0899884,-0.039896462,0.019638479,2.2984556e-32,0.027590128,0.018758263,0.04748652,-0.11984215,-0.056348495,0.017248694,-0.027353896,-0.031308345,0.027044613,0.020491637,-0.030900408,0.058862712,-0.010330902,-0.016116515,0.0940876,0.001978833,0.082017764,-0.022244493,0.014289178,-0.07877792,-0.028517764,0.010775746,-0.025493622,0.038998395,-0.051493883,0.104501426,-0.027366325,-0.04714243,-0.012348343,0.028629506,0.05314582,0.051275697,0.029956011,0.0071609346,-0.0878077,-0.06827469,-0.031275492,0.012542779,-0.031965956,-0.03392554,0.0059093437,-0.009336031,-0.002016388,-0.010937147,0.06286412,0.027951688,-0.02368798,0.04520171,0.023553537,0.008442556,0.038021702,-0.029416166,0.044697553,-0.00071711646,0.00554707,0.0286262,-0.01063047,-0.025077427,-0.081695005,-0.017922398,-0.055127542,-0.008281847,0.0024271936,-0.017376537,-0.013777022,0.020557923,0.0012492936,-0.007348601,-0.13326825,0.04104708,-0.11375924,0.08777207,0.10302975,-0.009573637,0.058795545,0.0874444,0.046909474,0.073384106,-0.16749677,0.046783514,-0.016015356,-0.008951298,0.0324133,-0.11927876,0.022486392,-0.022334803,0.022807682,-0.017070796,-0.024935229,0.09187108,0.014595489,0.031858213,-0.09343784,-0.0068116044,0.0032568325,-2.3205812e-32,0.053818915,0.13316822,0.010905122,0.0965259,0.024782842,0.05595151,0.014092769,0.077991955,-0.09319157,-0.058040235,-0.019036325,0.006208286,0.032394882,0.002218277,-0.057724107,0.03241831,-0.0071299407,0.060161512,-0.00049383315,-0.06511154,0.020567605,0.03386038,0.03471365,-0.0018715931,-0.008844662,0.0006423338,0.05528228,-0.031272188,-0.070021756,-0.04079773,0.07324947,-0.0069168326,0.026311075,0.03189727,-0.0025019036,0.010804489,0.0049008545,0.022225028,-0.039116953,0.031941433,-0.04432512,0.01164617,-0.060996,-0.043419275,0.04491875,-0.104232304,-0.066180244,-0.0068053487,0.015269886,-0.093851276,0.040494367,0.030530475,0.081357375,-0.01770522,0.048594974,0.018978337,-0.01165336,-0.024348421,0.027129013,0.049017806,0.074339174,0.04292343,-0.03524555,-0.033719584,0.0016029258,-0.0775013,-0.05132302,-0.021426788,0.022654036,0.13427716,-0.014843466,-0.010479164,0.022785688,0.013446468,0.051250678,0.10533281,-0.0458912,0.0021880441,0.030678075,0.059735827,-0.11317275,0.0064775785,-0.008245134,0.005387691,-0.0055785985,0.0475465,-0.02173673,0.024789264,-0.016753407,-0.03586546,0.012347678,-0.0017826358,0.06645608,-0.0018934683,0.07221689,-7.883285e-08,0.077262454,0.05395982,-0.02795658,-0.02676492,0.05692452,-0.014573359,0.07077539,-0.0014872882,-0.061665364,0.048044402,-0.032979447,-0.04238061,-0.054580584,0.035294265,-0.098522,0.05165684,0.078343235,-0.061759476,-0.026610762,-0.050194703,0.036639273,-0.09159805,-0.04003715,-0.035901066,-0.008059573,0.018516408,-0.03789502,0.013097912,-0.012061621,0.06822475,0.038770407,-0.050070725,0.0239903,-0.0049687694,-0.086724766,-0.06533371,-0.029319577,0.058937415,0.033043303,0.04609408,0.02923614,-0.039441206,0.031907804,-0.0016011258,-0.05132743,-0.031030554,0.06451877,-1.5948088e-05,-0.059717853,0.005590593,-0.060387045,-0.022733213,-0.07672618,0.026643436,-0.024791019,0.023704484,0.017054025,0.010631943,0.02541727,0.025341073,-0.05054629,-0.034541845,-0.14345846,0.09307907} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:55:22.064172+00 2026-01-25 01:27:50.817957+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 291 google Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB 1 t 294 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. Al llegar finalmente a la oficina la información tampoco fue precisa. Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! Totalmente desproporcionado pero no quedaba otra. Al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. … Muy mala experiencia. Nada recomendable. despropósito de principio a fin. al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. al llegar finalmente a la oficina la información tampoco fue precisa. abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! totalmente desproporcionado pero no quedaba otra. al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. … muy mala experiencia. nada recomendable. 1 2026-01-11 01:27:48.340864+00 es v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los co", "P1.02": "Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo e", "R1.02": "Muy mala experiencia. Nada recomendable."} {0.021991218,0.07818037,-0.032937437,-0.05956998,-0.0059284614,0.0072266827,0.09937861,0.08840976,0.07576535,0.029024716,0.09242577,-0.0015146876,-0.0022172288,0.023580957,0.031660695,-0.0009010692,0.045972,-0.014850481,-0.034575883,0.051645417,0.10108178,-0.07184086,-0.07981116,0.04532678,-0.08120516,0.004040402,0.007958368,0.016064588,-0.08396298,-0.04904918,-0.028573819,0.056914363,0.061067358,-0.053010695,0.06266724,-0.066547684,0.033550233,-0.042336665,-0.08092194,0.064850375,-0.034710634,-0.05457637,-0.11981015,-0.060833167,-0.0013160983,-0.03098012,0.07724118,0.17721091,0.045349754,-0.03702008,0.04395019,0.039465353,0.034068957,-0.04764939,-0.05141959,-0.065095395,0.019771036,0.013396861,0.07952509,0.013641657,0.022281867,0.006484726,-0.057916377,0.028410954,0.023481809,-0.035186984,0.017891275,-0.044994943,-0.033680696,0.05847684,0.027699377,-0.075637236,0.00916272,0.00446057,0.014805076,0.0579341,0.045354273,0.051817987,0.0007990123,-0.108426295,0.05491826,-0.016654551,-0.021376917,-0.05725641,0.047733348,-0.029570961,0.03003142,0.09149909,0.093729295,-0.04415078,-0.016812306,0.06766377,-0.066890575,-0.0056753634,-0.021922128,0.010849012,-0.016827574,-0.026495798,-0.044005748,0.0021423856,0.115489155,0.041990817,0.03180644,-0.012853318,-0.03735878,0.004345865,0.03800553,0.0019306169,0.021989267,0.07678775,-0.07283484,-0.07810059,-0.04084994,-0.04694435,-0.10847257,0.030551914,-0.10590692,-0.03321946,0.033775043,-0.06464459,0.009942387,-0.048658963,0.025262415,-0.028025094,0.029510984,-0.089668326,0.025766566,9.3483774e-33,-0.07314775,0.037639916,-0.06102788,-0.07474278,0.01383643,0.043422796,0.016121944,0.058152102,0.004420933,-0.01126543,-0.051497966,0.004989809,0.028137388,-0.038937017,0.05216962,0.024409985,0.059718717,0.023882257,0.010488267,-0.00027089124,-0.048910372,0.024887549,0.030914979,-0.0441995,0.038260438,0.06184356,-0.0294306,-0.0012349138,0.069760405,0.042905323,0.04566469,-0.015142262,0.004849949,0.00923851,-0.01836761,-0.05748433,-0.01502737,0.008470551,-0.05065364,-0.06796191,-0.056989532,0.002634632,-0.04262535,0.009624164,0.035468124,0.003579845,0.052047253,-0.04900722,0.005421995,-0.009506351,-0.057542313,0.020582845,-0.09327552,-0.012776739,-0.060118373,0.009152985,-0.045151997,0.010955721,-0.008921477,-0.08609244,-0.06327362,0.066177025,0.0010845623,-0.06797968,-0.050697874,-0.07543059,0.015227544,0.025676014,0.047488384,0.02264332,0.024754377,-0.005055971,0.07056283,0.074102856,-0.028869739,0.00235483,0.0053880382,0.03083754,-0.033345144,0.07342674,-0.024273423,-0.06137792,0.0352376,-0.007272433,0.061535716,0.024774961,0.07134854,0.058515396,-0.036433533,0.08881671,-0.038577612,0.11585029,-0.041224107,-0.024225375,0.1261589,-1.1059182e-32,-0.025178531,0.050703574,0.021249512,-0.027393926,-0.07693739,0.040624175,-0.010632262,-0.00087076053,-0.04980067,-0.102290586,-0.14947824,-0.032103427,0.026337624,0.018227648,-0.030029697,0.039592594,-0.043211658,-0.091084756,-0.045488536,-0.06475757,-0.0019876917,0.09030696,0.042432602,0.0730065,-0.056707215,-0.07556538,0.019830974,0.0657966,-0.015177379,-0.011026972,0.030091798,-0.0017995923,-0.008371955,0.07001006,-0.04378133,-0.004712268,0.05615173,0.018614586,-0.001893981,0.042509153,-0.005369243,0.020044295,0.0060654418,-0.12581187,0.03318208,-0.03217717,0.02377361,-0.15446521,0.023673588,-0.06944395,0.13625027,-0.035222944,-0.052082628,0.010929107,-0.010742574,0.0035984179,0.015636394,-0.033760566,-0.09206997,-0.041607656,0.050042912,0.015415285,-0.012552464,-0.012813564,0.035876498,-0.06258828,0.03055527,0.0028070873,0.064256966,-0.013716352,0.03755829,0.041924395,-0.07454523,0.012627721,-0.041409336,0.05845093,0.016799953,0.0516662,0.035675097,-0.017403312,-0.05254387,-0.0047342926,0.023311505,-0.04937556,-0.0052336925,0.0023242813,0.0023314974,-0.053878255,-0.022882162,0.048711378,-0.036087766,0.014057003,-0.06771617,0.0894044,-0.050109554,-5.1354895e-08,0.0019367366,-0.0024374975,0.059403367,0.017459873,0.031420957,-0.09146604,-0.0064939,0.037261583,-0.018100195,-0.011224602,0.026408479,-0.07828898,-0.09138306,0.07796262,-0.04356847,0.035508174,0.084743865,0.020525226,-0.019161198,-0.070613876,0.10943511,0.00971046,-0.076476105,0.03715619,0.048140757,-0.053753357,0.018777797,0.0119043635,0.010745596,-0.060045958,-0.06481807,-0.042606656,0.025760517,-0.09347895,-0.0110193,-0.06282811,-0.009355057,0.002036132,-0.021850962,0.060902927,0.13253608,-0.04929076,-0.07515759,-0.033311933,-0.019856483,-0.054276515,-0.048286837,-0.051629197,-0.037754845,-0.031055104,-0.009692087,-0.015518431,0.05533366,0.051724143,0.0329149,-0.043065887,-0.015583156,-0.0111040985,-0.037995107,0.04520792,0.041186173,-0.0040312554,-0.048661895,-0.0035101066} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:04:04.476669+00 2026-01-25 01:27:50.837707+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1297 google ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB 1 t 1300 Soho Club unknown Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜 labai patiko . atvyksiu dar daug kartų ❤🧡💛💚💙💜 5 2023-01-30 18:34:31.336452+00 lt v5.1 R2.01 {} V+ I3 CR-N {} {"R2.01": "Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜"} {-0.054065105,0.030797115,-0.011152381,-0.004070615,-0.12238161,0.019816145,0.041921742,0.06403809,0.023063691,0.006991452,0.11765683,-0.040416695,-0.015707538,0.026829008,0.0068273097,-0.063872665,-0.06701019,0.016691178,-0.021126408,-0.022882862,-0.042772893,-0.08495854,0.07038218,-0.006497749,0.048345007,0.06651478,0.020244014,0.0058000567,0.069701046,-0.026857583,0.0064121876,0.09738168,-0.049657114,-0.030084457,0.04699855,0.04548222,-0.06923469,-0.02472128,0.085769705,0.031771936,-0.024903717,-0.08002741,0.011859485,-0.06206229,0.02665595,-0.053800352,-0.085106194,-0.017073963,0.030086396,0.021698022,-0.14293522,0.0010844994,0.0024659606,0.021395635,0.050090455,-0.17570136,0.0063459943,0.016227989,-0.0071782614,-0.0056431303,-0.02573251,-0.0038125461,-0.019458018,0.08963606,-0.05728616,-0.031633396,-0.082352236,-0.052239593,-0.057407893,0.07410804,0.01658273,-0.011580457,0.011797825,0.0073101767,-0.035858404,0.012959431,0.036089987,-0.013602862,0.050343763,-0.03533246,0.110534504,0.019229004,-0.045125656,0.03329509,-0.07137959,-0.034542453,0.016832804,-0.03865497,-0.022135409,-0.028991934,0.0027454258,0.047056716,-0.041768283,-0.056288738,-0.04557459,-0.054328617,-0.027699297,-0.041244373,-0.03862595,0.03219015,-0.049374864,0.05711496,0.0038674113,0.019729994,-0.11998093,-0.023171883,-0.09421035,-0.04538263,0.040692095,0.038741894,-0.05996923,-0.04831127,-0.10131042,-0.015456981,0.012579855,0.07867147,-0.004611969,-0.0032165188,-0.05641747,0.00963389,-0.036996864,-0.052937344,-0.0139577575,-0.010488591,0.049394343,-0.05699328,0.02824366,4.5541553e-33,0.0024349273,-0.03579685,-0.05652933,-0.067197,0.0492639,-0.08633141,-0.06735527,-0.040716678,-0.06529869,0.03809285,-0.0098446915,0.049639802,-0.038281683,0.014651594,0.017937476,0.09778107,0.03288995,0.03096037,-0.006207257,0.075875774,0.05352919,0.022572424,0.06637651,0.050376125,0.006891469,-0.008351906,0.020245694,-0.003949611,-0.025402756,0.049617495,0.054591034,-0.0669418,-0.105225325,-0.02806286,-0.11266583,-0.07302454,-0.10573083,-0.08121963,0.020420097,0.023230484,-0.006952849,-0.054921176,0.049200527,-0.041091938,-0.0039933524,0.043837577,0.027032558,-0.017876789,0.034780607,-0.0021908432,-0.09657198,0.0119539,-0.04102299,0.039410178,0.024612607,-0.018348955,0.021793228,-0.008461196,-0.029104434,0.011594381,0.034592006,-0.025775967,0.043362428,-0.018362744,-0.021703787,-0.10552158,0.0062505873,0.04864379,0.07774129,-0.050308924,-0.022633502,-0.026933905,-0.06382707,-0.020556599,-0.00295584,-0.028477414,0.01587149,-0.03851097,-0.053196464,0.008410344,-0.069728956,0.050148018,-0.0039012705,-6.228503e-05,0.035492107,0.057711657,0.03714489,-0.029646069,0.015430095,-0.0009932192,-0.107712835,-0.053700373,0.037178636,0.011103247,0.048269574,-5.5141676e-33,0.07864885,0.0046052947,0.027741931,0.021897698,0.055593528,-0.03515345,0.04161769,0.11181693,0.038382802,0.12844089,0.0615434,-0.07594386,-0.0022091747,0.055997465,-0.039101806,0.047951862,0.11960763,0.0943588,-0.03634146,-0.046995882,-0.054603666,0.023537679,-0.018563291,0.09855789,0.030119551,0.016034119,0.057130188,-0.017139848,-0.0998325,-0.0029482218,-0.02924337,-0.038247373,-0.08325246,0.02539663,0.05331214,-0.02118542,0.10991377,-0.018870713,-0.07391945,0.10709848,0.050373055,0.02227543,-0.07685768,4.4954853e-05,-0.046470355,-0.09759702,-0.024469072,0.05999435,-0.0021910616,-0.08379685,0.06515225,0.040605243,0.06609062,-0.03436379,0.025292773,0.115664415,0.07294084,-0.011611905,-0.01662695,0.039439097,0.01528115,-0.03391145,0.027451979,0.032043114,-0.03822116,0.07587732,0.0074344175,-0.01770086,0.010262109,-0.026095435,0.022872737,-0.024188725,-0.02389439,0.07651181,-0.05867816,0.0337691,-0.08076471,0.06333644,0.07643795,-0.034978278,0.03803523,-0.08637879,-0.051782772,0.09960651,0.04009445,0.017491639,0.01638304,-0.007901667,0.017002875,-0.03499921,0.027292887,0.090997875,0.004865694,0.03983828,0.0053431275,-2.535445e-08,-0.018792018,-0.024707396,-0.015666563,0.034497924,0.06769416,-0.0039548315,-0.038241856,-0.10718637,-0.051363472,0.030746732,0.0028564113,0.04580296,-0.0029982512,0.02125965,0.010666448,0.066042215,0.04768703,0.11963987,0.024374498,-0.028738841,0.12263056,-0.05454892,-0.034403533,-0.021842428,-0.049147204,0.07519148,0.027953481,-0.018715909,-0.010859589,0.0116938725,-0.020344002,0.0294036,-0.03217684,-0.02637669,0.0049908226,0.07995094,0.011386355,-0.05678483,-0.014580717,0.045306064,0.020290643,0.017849388,0.0018349707,-0.02551812,0.02220264,0.048865564,0.046767432,-0.0028719462,0.0014454109,-0.0019964771,-0.109768964,0.016513577,0.032212533,0.03591991,0.0076860767,0.07506388,0.025347019,-0.026227165,-0.061333768,0.024757834,0.07634571,0.003709259,0.024079645,-0.08280243} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:04.230464+00 2026-01-29 18:36:00.708132+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 401 google Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB 1 t 404 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe, largas esperas para recoger o devolver coche, etc etc mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe, largas esperas para recoger o devolver coche, etc etc 1 2025-11-26 01:27:48.341716+00 es v5.1 P1.02 {} V- I2 CR-N {} {"J2.02": "largas esperas para recoger o devolver coche", "P1.02": "Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te "} {0.005011076,0.021128489,-0.017486872,-0.008151998,-0.06737575,0.006336986,0.07615109,0.063154265,0.006421866,0.016878525,0.029577835,-0.09631294,-0.05267451,0.040163286,-0.033272915,-0.05555704,-0.011845159,0.030608678,0.045778755,-0.040448226,-0.0070590936,-0.10695912,-0.034449544,0.0445177,-0.016745033,-0.05527301,0.0021554718,-0.031413253,-0.01757891,-0.09256468,-0.0064552645,0.06134297,-0.115675144,-0.04674466,0.04484989,0.040511,0.017469082,-0.07666735,-0.03475067,0.03934165,-0.049304027,-0.008179526,-0.09455291,-0.091574214,-0.023280825,-0.03412264,0.0452379,0.09836813,-0.020451615,-0.031360347,0.016226873,0.021974005,-0.09101045,-0.05745632,-0.026567651,0.010436081,0.075698346,-0.0060425084,0.058595944,-0.003991264,0.08471138,0.05922814,-0.03484138,-0.016870247,0.007561451,-0.079193786,-0.032818884,0.035397474,-0.059983503,-0.010377476,0.066334315,-0.10319938,-0.008824018,-0.024050722,0.0018717869,0.025951155,0.024973389,0.037773963,-0.01390618,-0.06186889,0.029722143,0.034577735,-0.012682297,-0.031740237,-0.003237282,-0.026528424,0.003424479,0.038051777,0.08112992,0.03133739,0.01616079,0.044031333,-0.05714655,0.010469824,-0.039086908,0.0043527842,0.030864693,0.0639722,-0.027255703,0.02310234,0.0883607,0.060119648,0.08421389,0.0035361806,-0.056119468,0.028295767,0.097423084,-0.04984744,0.079646744,-0.020177357,-0.09512876,-0.06295261,-0.037535004,-0.039032668,-0.047625374,0.031110512,-0.046271555,-0.10929683,0.018067626,-0.028450571,0.08146184,-0.020144694,-0.031089842,-0.121039,0.005830989,-0.04445616,0.029531544,1.4666793e-32,-0.01954162,0.06118244,-0.029480927,0.09863819,-0.015946362,0.029594151,-0.005545535,0.041113034,-0.07260418,-0.048382796,-0.05205334,0.024991682,-0.023631878,0.047947858,-0.02490781,0.07851694,-0.0008224692,0.033233684,0.065936744,0.015443031,-0.0045368345,-0.033036906,-0.04177579,0.0019046846,0.06988003,0.031538438,-0.08171877,-0.023678295,-0.024146946,0.028043145,0.014492037,0.041525032,0.05297592,-0.058773283,-0.025947133,0.0022793338,0.06884741,-0.0034970806,-0.028834833,-0.050635688,0.046276372,0.028043265,0.024576543,0.06766311,0.03375139,0.0035909472,0.057635814,-0.0675016,0.02078397,0.010989287,-0.048561465,-0.054449417,-0.08716187,-0.023871517,-0.054297984,-0.0002093338,-0.08751384,-0.018364834,-0.00014477517,-0.09980336,0.04377611,0.033602934,-0.0061749094,-0.016033178,0.045387197,-0.01357116,0.031006409,0.023900677,0.11112831,0.02236859,-0.09552281,0.03619088,0.06570751,0.002874801,0.02652888,-0.0027454353,-0.016229844,0.029931167,0.008721715,-0.00053908123,-0.06676414,-0.106573656,-0.03546988,0.010241165,0.07309816,0.07653907,0.077436194,0.016365679,0.09461025,0.08424061,-0.010581353,0.05140101,0.046023343,-0.089879565,0.058250677,-1.5171224e-32,0.04669484,-0.04085075,0.015360543,0.050157454,-0.040425222,-0.0019946026,-0.0035329883,0.025434995,0.061693292,-0.06772856,-0.11415242,-0.100843586,0.18436198,-0.0018837053,-0.061684992,0.028506124,-0.057993818,-0.057879258,0.031085076,-0.046844505,0.008193439,-0.023953399,0.04810135,0.07682836,-0.009037035,-0.036383398,-0.04945667,-0.055680975,-0.023008524,0.027248118,0.04468176,-0.036952917,0.024428992,0.09402568,-0.124434516,0.016494736,0.047299866,0.07045121,0.020016845,0.06459386,-0.007758378,0.039923247,-0.026312923,-0.0421227,-0.0021976042,-0.035062417,-0.0064068236,-0.1388835,0.026691223,-0.08356218,0.12260735,-0.032475766,-0.098411046,-0.056761626,-0.0035795888,0.07152584,0.016385088,-0.022597171,-0.06421112,0.022428842,0.09586338,0.08683943,-0.02650096,-0.014108752,0.06288383,0.005144305,-0.012024224,0.025116438,0.026911728,0.017391287,0.047574885,-0.029903354,-0.012807434,0.033099853,-0.01167104,-0.03839154,-0.014622413,-0.0025081174,0.039354086,0.018971734,-0.072919905,-0.05361228,0.035221,-0.0514856,0.033376984,-0.08199077,-0.05890367,-0.02303392,0.041008182,-0.0005558805,-0.08100182,0.004344473,0.020560002,-0.08149257,-0.002613762,-5.2652428e-08,-0.0267198,0.0036644856,-0.03044873,0.067488,0.027437245,-0.0430989,-0.017752506,0.03284995,0.020514103,0.06200534,-0.06873475,-0.03435792,-0.055806857,0.018246025,-0.046123818,0.013264199,0.057081707,0.07365524,-0.030821279,-0.02483025,0.046057895,0.07390745,-0.023098588,0.0048349015,-0.01007806,-0.017621096,0.03762387,0.07462293,-0.036664635,-0.10302303,-0.064368546,0.025132347,0.051855296,-0.040507104,0.01576045,-0.00043330566,0.037875615,0.08190038,-0.023657491,-0.00922723,0.044198755,-0.038354345,-0.069951236,-0.095147975,-0.04933072,-0.03664061,-0.069890924,0.0037754641,-0.016371634,-0.0028799018,0.03091797,-0.022112263,0.05032458,0.033242352,0.05640759,-0.032830864,-0.061975796,0.05118881,0.032162033,-0.05416117,0.023992786,0.024357636,0.056195732,-0.117991276} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:20.428609+00 2026-01-25 01:27:51.271006+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 471 google ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB 1 t 474 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Escribo esta reseña para destacar la atención recibida por parte de Antonio. Nos fue a recoger en el minibus al aeropuerto para ir a coger el coche y desde el principio fue muy amable. Nos comentó sobre la Isla y también nos recomendó algunos lugares que a él le gustaban. Luego a la vuelta tuvimos la suerte de volver a encontrarlo y nos llevó de vuelta al aeropuerto. A mí hija se le olvidó el teléfono en el minibus. Pensábamos que ya lo habíamos perdido, pero 30 minutos después recibimos su llamada, diciéndonos que nos habíamos dejado el telefono en el minibus. Y Antonio fue tan buena persona que volvió al aeropuerto para entregárnoslo. Ojalá hubiera más personas así.\n\nRespecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. No tuvimos ningún problema ni en el check-in ni check-out. Hemos probado otras compañías de alquiler de coches,pero está ha sido la mejor así que volveremos sin duda a contratar con ellos. escribo esta reseña para destacar la atención recibida por parte de antonio. nos fue a recoger en el minibus al aeropuerto para ir a coger el coche y desde el principio fue muy amable. nos comentó sobre la isla y también nos recomendó algunos lugares que a él le gustaban. luego a la vuelta tuvimos la suerte de volver a encontrarlo y nos llevó de vuelta al aeropuerto. a mí hija se le olvidó el teléfono en el minibus. pensábamos que ya lo habíamos perdido, pero 30 minutos después recibimos su llamada, diciéndonos que nos habíamos dejado el telefono en el minibus. y antonio fue tan buena persona que volvió al aeropuerto para entregárnoslo. ojalá hubiera más personas así. respecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. no tuvimos ningún problema ni en el check-in ni check-out. hemos probado otras compañías de alquiler de coches,pero está ha sido la mejor así que volveremos sin duda a contratar con ellos. 5 2025-01-25 01:27:48.342116+00 es v5.1 A1.01 {} V+ I3 CR-B {Antonio} {"A1.01": "Escribo esta reseña para destacar la atención recibida por parte de Antonio. Nos fue a recoger en el", "J1.01": "Respecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. No tuvimos "} {0.053329572,0.06920858,-3.985818e-05,-0.054154925,-0.048046716,-0.008030753,0.051311586,0.030429034,0.025878826,0.025777439,0.115933016,0.0058788396,0.009111145,-0.03767035,0.041422326,0.025890263,0.058861304,0.005590363,-0.052650563,0.010310797,0.13880031,-0.024622025,-0.08736214,0.06844793,-0.093544446,-0.005815369,-0.0068475013,0.056799807,-0.110959835,-0.052515347,-0.050184112,0.026956044,0.08462641,-0.003207847,-0.0080437325,0.022811702,0.06691647,-0.078722574,-0.039426744,-0.013211657,-0.07618001,-0.017843358,-0.047435705,0.016814867,-0.050508976,-0.057665665,0.08334313,0.029105224,0.072595894,-0.012027051,-0.02340544,0.02341696,-0.014268402,0.018269015,-0.02139258,0.026617205,-0.0132174175,0.0410293,0.13905877,0.036556333,-0.06156347,0.038935907,-0.012764144,0.04447448,-0.017956644,-0.02636638,0.027845612,-0.058246013,-0.03401574,0.037589442,0.0075429995,-0.025582196,0.03972508,0.029065548,-0.038465723,0.05443513,0.024564885,-0.036355957,0.0027587083,-0.09080839,0.031208785,-0.07412493,-0.024721563,-0.05317469,0.013488357,-0.03422829,-0.02146026,0.019342704,0.037391752,-0.029467108,0.002654733,0.050709784,-0.037099063,-0.034641758,0.028694244,-0.0063546104,-0.037295308,-0.047566246,-0.04574968,0.013103909,0.067451246,0.017684188,0.07559906,0.063534275,-0.061537024,0.06923224,0.009002687,-0.10407146,-0.0022736886,0.073165335,-0.078277156,-0.028579747,0.008757238,-0.05654932,-0.042965136,0.02730702,-0.048031464,-0.03913392,-0.033761412,-0.035788402,-0.010101066,-0.03478834,0.009212802,-0.008518681,0.05944262,0.009167601,0.1156266,1.5787177e-32,-0.04789969,0.024492038,0.02023471,0.03005852,0.044448778,0.02175794,-0.034734942,0.04815976,-0.012841728,0.0037312934,-0.053965453,-0.010323836,0.0047013625,-0.022982234,0.12049917,-0.062241334,0.0154422745,-0.044159513,-0.054010365,0.007776249,-0.062038604,-0.07307221,-0.016222287,-0.034349345,0.0047944477,0.050900668,0.050009,-0.032857675,0.043015778,0.08450228,-0.029316688,0.020595191,-0.029561227,0.0082926145,-0.04975716,-0.058675405,0.013241872,0.038427155,-0.113191746,-0.06105794,-0.06247457,-0.0029453433,-0.070503145,0.049465504,-0.03245061,-0.061826922,0.060266204,0.036922466,0.068407625,0.021885134,-0.06432605,-0.042241022,-0.045154132,-0.073507726,-0.009342408,0.025324743,-0.038450416,-0.009252763,-0.049926635,-0.041921213,0.015058494,0.0096802795,0.061622184,-0.014876481,0.027112897,0.051805574,0.005834931,0.025521077,0.13717428,0.025079425,-0.038095657,0.028958378,0.015088542,0.01793631,0.033263177,0.080294125,-0.013473597,0.006893093,-0.09876746,0.016315106,-0.008786879,-0.012063591,0.043391116,0.010071563,0.08521706,-0.02382228,0.027339822,0.018850064,-0.07561137,0.14447406,-0.03356675,0.12153137,-0.008873899,0.057558607,0.032767758,-1.5739365e-32,-0.017613865,0.04671769,0.008656754,-0.023063472,-0.056458525,0.0022583958,0.05108687,0.019031765,-0.053698096,-0.061924737,-0.111797586,-0.12153504,0.080398016,-0.07447176,-0.018088592,0.07559967,-0.021136085,-0.09129707,-0.05469515,-0.02787892,0.06541881,0.045018844,0.025170583,0.00014799066,0.031196177,-0.03291019,-0.04613006,0.04076236,-0.024044536,-0.016908975,0.014245809,0.016729891,0.018875904,0.10261741,-0.071101874,0.021733794,0.011590461,0.025888966,0.04884342,0.05070758,0.032304723,0.07395059,0.015298236,-0.101966545,-0.026180139,-0.0005131248,0.077236995,-0.13952987,-0.025410747,-0.07313493,0.04938343,-0.045832366,-0.102200724,0.031467963,0.07711306,0.019226493,0.020368902,-0.08952189,-0.058110323,-0.02944049,0.044593915,-0.04096319,-0.008261972,-0.0444599,0.047008272,-0.03117402,0.043857012,-0.006841078,0.07549219,0.02595004,0.09832918,0.019908275,-0.07078562,-0.011898332,0.011118437,0.02239425,-0.021274194,0.018826636,-0.095902644,-0.016016642,0.014468889,0.020018471,-0.00471541,-0.043950908,-0.01859346,-0.004191939,-0.018261205,0.032544084,-0.024286393,0.05628007,-0.023499368,0.055636432,-0.03380156,-0.018955462,-0.07238911,-5.7541403e-08,-0.029016739,0.0016897303,0.0060664313,-0.037153177,-0.008342588,-0.01249231,-0.00029807666,0.013331226,-0.040242754,-0.011281047,0.08192729,-0.034856085,-0.032618735,0.09945617,-0.017396737,0.044785243,0.049402766,0.03726289,-0.00668881,-0.048961625,0.09885715,-0.038302325,-0.067748874,0.049605493,-0.005016635,0.008933083,-0.06899048,-0.040376022,0.0077498797,-0.010510594,-0.08961361,-0.008144796,-0.080533534,-0.11028322,-0.100145556,-0.057151973,-0.0077355504,0.012997421,-0.048739713,0.024293872,0.12846737,-0.023533013,-0.1253823,-0.009779282,0.0441711,-0.0366931,0.017228857,-0.00506516,-0.0504516,0.044853967,-0.034509305,-0.053176533,0.072476044,0.006959225,0.036629118,-0.07811046,0.018866338,-0.029062888,0.0010129429,-0.021298058,0.032105755,0.1344534,-0.07643364,-0.056391615} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:06:37.075345+00 2026-01-25 01:27:51.50286+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 296 google Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB 1 t 299 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterwegs. Am besten einfach bei Clickrent anrufen und nachfragen! Ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine Buchung dort bekannt ist ;) Denn der Weg zu Fuß vom Flughafen zieht sich. Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo angeblich über mietwagen-billiger.de alle Versicherungen ohne Selbstbeteiligung mit drin waren!), also super Preis-Leistungs-Verhältnis!\n\nGerne wieder 👍🏻 wir haben den shuttlebus am flughafen nicht gefunden, aber der war wahrscheinlich zu der zeit unterwegs. am besten einfach bei clickrent anrufen und nachfragen! ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine buchung dort bekannt ist ;) denn der weg zu fuß vom flughafen zieht sich. ansonsten für einen unschlagbaren preis von 46 euro ein schönes kleines auto für 4 tage gemietet (wo angeblich über mietwagen-billiger.de alle versicherungen ohne selbstbeteiligung mit drin waren!), also super preis-leistungs-verhältnis! gerne wieder 👍🏻 5 2025-12-26 01:27:48.340886+00 de v5.1 J1.02 {J1.03} V0 I2 CR-N {} {"J1.02": "Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterw", "P1.03": "Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo"} {-0.011116798,0.08875487,-0.04870166,-0.06660741,-0.020712895,0.024599982,0.054189604,0.11127814,-0.029359568,-0.033837385,0.016651988,-0.04500659,0.04512487,-0.02298079,-0.12207822,-0.056554224,-0.003029267,-0.0120635545,-0.057274897,0.008131436,-0.032574758,-0.028968303,0.03562979,0.13194972,0.013053317,-0.024687571,-0.12628314,0.006927857,0.013080197,0.009866289,0.051473908,-0.0021625368,0.0022805808,0.024383489,0.0055056857,-0.010853256,0.03163134,-0.051205665,0.010662446,0.075925566,-0.06422509,0.01805236,-0.055115063,0.026525564,0.007726355,0.08333265,0.006825364,0.013642646,-0.02396048,0.077780396,-0.054344133,0.040168658,0.05620284,-0.0016829597,0.022887195,-0.03361051,-0.07106891,-0.08653468,-0.027703317,0.07493565,-0.08381267,-0.039717127,0.014745339,0.030678293,-0.08453915,0.075433284,-0.07251247,-0.045706883,-0.016806984,0.061524756,0.039480172,-0.021152217,0.04415116,-0.04289704,0.047852363,0.07863443,-0.034750663,0.039804373,-0.014177858,-0.11954403,0.06739516,-0.10473348,0.07929519,-0.00047770052,-0.013909838,-0.019327478,0.026125344,-0.014541828,0.036163043,0.005307373,0.043692503,0.02089907,-0.098857254,0.03152309,-0.064260855,-0.026340198,-0.022173703,-0.051985167,0.009057708,0.0888119,-0.001851074,-0.06828875,0.012534175,0.02610646,-0.044232413,-0.013410053,-0.048659023,0.0083346,0.015095414,-0.048545312,-0.013315967,-0.025274614,-0.0042150626,-0.014448723,-0.06392087,-0.019342346,-0.031417325,-0.10762957,0.022965115,0.0057013477,-0.047598444,0.007764037,0.02959583,-0.039088473,-0.005794542,0.062355716,0.013524832,1.5265829e-32,-0.039006293,-0.009324644,0.04909718,-0.05926756,-0.088366,-0.040282097,-0.057982996,-0.02231053,0.019566637,0.004039631,0.014013342,0.0067538237,-0.025952563,0.02689167,0.016289053,-0.11260401,0.10087677,-0.13659541,0.0011654448,-0.10198982,-0.017130714,0.027955078,0.026317775,-0.01594821,0.0834006,0.05245842,-0.07864864,0.027571674,0.051603448,0.07194074,-0.023241453,-0.013096014,-0.073539265,-0.0014837949,-0.074102,-0.03017434,-0.11853886,-0.036005393,-0.03260053,-0.054111127,-0.024086757,-0.0136463065,-0.0670531,-0.06389469,0.029754968,0.001216075,-0.06430926,0.021117065,0.09485907,-0.026329217,-0.06100218,-0.0031112295,0.03270031,-0.051308367,-0.021288969,-0.0012083732,-0.07228343,-0.015486048,-0.014291329,0.0032087117,-0.114635155,-0.014709305,0.060376827,-0.0670663,0.08848269,0.0065668384,0.07960429,-0.01208272,-0.035016518,0.0136602735,0.0041306717,-0.0123642245,0.10135798,0.037676774,0.062736265,0.05783374,0.050214943,-0.0015321673,-0.058936622,0.00018017952,-0.053647663,-0.048639458,0.04382074,0.026430508,0.024628092,-0.07652145,0.033867165,-0.03783069,0.07105422,0.11169446,-0.03318675,0.021565871,-0.010714043,0.009949473,0.003141491,-1.6078773e-32,0.073722,0.069513775,-0.027075332,0.034567144,-0.072198875,0.045047063,0.04213901,0.09402685,-0.041094318,-0.017757537,0.00588543,0.005678831,-0.027287038,-0.039286252,0.004461002,0.050425574,0.044647228,0.066596046,0.10506202,-0.023843901,0.024546864,0.011844967,-0.06325573,0.09034247,0.05056252,0.005426821,0.08037514,0.03331145,-0.07116052,-0.02130061,-0.015654584,0.033150524,0.06535231,0.056125745,-0.043926787,-0.06805294,0.08119618,0.09300619,0.0066656605,0.01870375,-0.049593303,0.053825375,0.09596742,-0.019372571,0.040586144,-0.019401107,-0.04770261,-0.007524114,-0.03529127,-0.051422633,-0.012036736,-0.029339558,-0.024271883,-0.061468832,-0.027802564,-0.009949273,0.035612922,-0.12923545,-0.07020472,-0.0044812155,0.028299967,-0.046343256,0.08364028,-0.06840616,0.028796067,-0.11704038,-0.056060553,-0.036765404,-0.006852269,0.030678574,0.050374337,0.008893879,0.01493939,0.015219738,-0.0062727886,0.017742898,0.023566036,0.056530677,-0.0058724196,0.016856972,-0.01622543,0.06814555,0.024714382,0.022608085,-0.046774313,-0.03201675,0.0645905,-0.03755019,0.004620296,-0.06859657,0.061125524,0.12308282,0.06431212,0.017493,0.014729409,-6.187499e-08,0.040462382,-0.011719449,-0.07299143,0.0030408243,0.00632949,-0.08185564,-0.013349672,0.018672785,-0.12980255,-0.031722125,0.037591767,0.037579056,-0.06780964,-0.0051158336,-0.1485286,-0.007599781,-0.07673514,0.04891295,-0.031360727,0.056835547,0.005626003,-0.004967786,-0.017256042,-0.08853993,0.020246567,-0.02272764,0.022147568,-0.07181388,0.02939471,-0.03256188,-0.019999413,0.05310579,0.014030781,-0.044426482,-0.07985683,-0.038727675,-0.0037535809,-0.005202826,-0.06923496,0.020610001,0.11005813,-0.006269488,-0.0036298397,-0.0733909,0.0023227567,-0.06225514,-0.034013644,0.07057517,0.013055114,0.052606888,-0.027037831,0.042703893,-0.0002833312,0.089321665,0.042673066,0.026024899,0.010152211,0.0026647781,0.045333065,-0.001953295,-0.0026474516,-0.046936,-0.001122772,0.02005705} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:15:46.138583+00 2026-01-25 01:27:50.855466+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 297 google Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB 1 t 300 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. Na een uur zoeken hadden we de super slecht vindbare plek gevonden. Helaas niemand aanwezig. Sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. Onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas.\n\nEenmaal aangekomen kwam het volgende ellende.\nEr werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. Dan moest ik maar via de creditcard van me vrouw €200 borg betalen. Daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! Ja maar niet bij ons zei de man achter de balie. Ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine.\n\nMet het inleveren van de auto hebben wij expres van te voren de auto gereinigd en vol getankt om nog meer betalingen te moeten doen als we naar huis willen. Gelukkig maar dat dit goed ging.\n\nDaarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn.\n\nBij andere bedrijven was het altijd van te voren boeken verzekering betalen , auto staat klaar en de vakantie kan beginnen. wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. na een uur zoeken hadden we de super slecht vindbare plek gevonden. helaas niemand aanwezig. sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas. eenmaal aangekomen kwam het volgende ellende. er werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. dan moest ik maar via de creditcard van me vrouw €200 borg betalen. daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! ja maar niet bij ons zei de man achter de balie. ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine. met het inleveren van de auto hebben wij expres van te voren de auto gereinigd en vol getankt om nog meer betalingen te moeten doen als we naar huis willen. gelukkig maar dat dit goed ging. daarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn. bij andere bedrijven was het altijd van te voren boeken verzekering betalen , auto staat klaar en de vakantie kan beginnen. 1 2026-01-04 01:27:48.340888+00 nl v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren e", "P1.03": "Er werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de b", "V1.02": "Daarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft g"} {-0.06979827,0.12855992,0.020461442,-0.049893323,-0.08724256,-0.007830242,0.12549497,0.0059099104,0.047663037,-0.040167995,-0.005076811,0.020754585,0.0257989,-0.03409567,-0.026372256,-0.059561864,0.022489963,0.046444207,-0.050042756,0.06496988,-0.027318511,-0.014632425,0.021971539,-0.023040736,0.0015951723,0.04701469,0.031066695,-0.009141453,-0.0344273,0.0067969034,0.055844102,0.03070995,0.0012917361,-0.0017556128,0.016170679,0.04768162,0.015341729,-0.033807416,-0.0004086063,0.025177483,0.01335298,-0.025864888,-0.12535164,-0.087942064,-0.0032250078,0.017608296,0.01219586,-0.010042189,-0.029228542,-0.031891067,-0.023237966,0.049970362,0.033292692,-0.04468656,-0.06685025,-0.0015779868,0.0034399743,0.04528776,0.04380827,0.0041925935,-0.0644756,-0.009737217,-0.045830604,0.031830583,-0.027211275,-0.028528195,-0.02500484,0.01089439,-0.14630972,0.053792685,0.016115326,-0.017197696,-0.07019805,-0.043071523,-0.025212673,0.056934036,-0.0041818777,-0.023582796,0.049945123,-0.08037655,0.034544386,-0.08617957,0.0007949455,-0.037872374,0.013475522,-0.0067258924,0.021744225,0.034763232,0.054857444,0.008554644,0.08127736,0.046579488,-0.030075692,-0.041006166,0.054969802,-0.047440615,-0.040145237,0.05280322,0.035924435,0.06205071,0.10363539,0.03889699,0.055156667,-0.017373677,-0.05765178,0.02848109,0.08292606,-0.010552213,0.080126286,-0.009672073,-0.06016497,-0.0498054,0.045091234,-0.09516239,-0.041421007,0.009004306,-0.050644983,-0.062280025,0.080648035,0.0156744,0.0017683461,-0.028054567,-0.0014300206,0.06897025,-0.035264835,0.02863736,0.04488597,2.0068538e-32,-0.014008976,0.0065911203,0.029898714,-0.089797705,0.033959832,0.043848168,-0.085477084,0.038086597,-0.0858185,-0.07145261,-0.046065014,-0.071094476,-0.0151663385,-0.018056016,-0.020108152,-0.0060591344,0.0070598335,-0.037604928,0.023125954,0.009672785,0.10549144,-0.015975207,0.079177946,0.029132798,0.00074032607,-0.057330318,-0.05107022,-0.07598673,0.024634892,0.034656834,0.003682286,-0.098357655,0.044300936,0.0509778,-0.13916612,0.04395715,0.0014753147,-0.03085967,-0.026958035,-0.09119512,-0.012647967,-0.023618951,0.021542182,0.052516825,-0.06237157,0.0988977,0.036858108,0.012723002,0.046898924,0.058434807,-0.020905955,-0.05320764,-0.06825985,-0.028692665,-0.038497373,0.088015854,-0.013372348,0.08029547,0.12120039,-0.044580046,-0.03845837,0.07244055,0.122702636,-0.0074389637,0.033581395,-0.047074955,-0.06529135,-0.0067351954,0.045240033,-0.07431931,-0.048190136,0.029345378,0.044641986,-0.009742426,0.038709663,0.0484525,0.005980143,-0.014297079,-0.044494893,0.047987133,-0.056864478,-0.08297348,-0.051337745,-0.018533578,0.079310335,0.0018079688,0.0633849,-0.115201145,-0.05462696,0.12759686,0.005829729,0.010982497,-0.016850669,-0.07121539,0.04266871,-1.7051113e-32,-0.00045961124,0.08331441,0.0016206894,0.07565198,0.0108243,0.00035787185,-0.0066905674,-0.011774031,-0.0021518474,-0.074170254,0.019324025,-0.012713214,0.0847312,0.04488928,-0.09142488,-0.029975286,0.041801754,0.01923459,0.05740802,0.022206465,-0.005983645,0.026989026,0.0015495088,0.14060998,-0.035159294,0.03717462,0.055672742,0.026367737,-0.010293519,-0.033154137,-0.0070912833,0.025740089,0.0010364616,0.09035034,-0.009466266,0.057322647,0.06034102,0.032453388,-0.049754664,0.012703939,-0.006476587,-0.022594629,-0.13168658,-0.05800492,-0.0029111395,0.00066275516,-0.018961197,-0.0019621646,0.022000931,-0.06296269,0.024479838,0.076411285,-0.06650269,0.06678067,0.014843637,-0.006188302,0.10129523,-0.088299684,-0.0004905904,-0.024535688,-0.0030800982,0.006190703,0.06610946,-0.04707266,0.07651438,-0.0610263,6.379206e-05,0.012131518,0.024369674,-0.057582054,-0.044433564,-0.037523467,-0.04824683,-0.007831656,-0.0007448476,0.05449359,0.020510802,0.0077204606,0.015591251,-0.09324924,-0.106423974,-0.025514983,-0.076296404,-0.023243323,-0.00639882,-0.003389146,-0.012587131,-0.048064332,-0.0071583027,0.02145145,-0.004174745,0.09348284,0.056952734,0.04158127,-0.0040179472,-5.6150228e-08,-0.007746814,-0.001245483,0.054469135,0.0071959333,0.1314033,-0.10528171,0.10584511,-0.0040254043,-0.06286548,0.0072894883,0.046521146,0.0043280222,-0.047572903,-0.06665322,-0.004614481,0.04208241,-0.013687157,-0.066004485,-0.022119151,-0.0034311006,0.09994033,0.016890824,-0.049976774,-0.0045117047,-0.005003203,-0.052245624,0.0006073784,0.041623227,0.05560661,-0.11196816,-0.012193057,0.037396636,-0.027080804,-0.04700888,-0.017900148,-0.029080873,-0.052705314,0.0128918,-0.0512876,0.020792695,0.030300116,-0.04450463,0.015967812,-0.08419024,-0.0794644,0.056785155,0.001510936,0.037588183,0.052725412,-0.008394328,-0.07796239,0.057614874,0.043016765,0.07618577,0.02428989,-0.039300703,-0.014380487,0.013130699,-0.024149228,0.021229425,0.01689684,0.09635284,-0.09930369,-0.08797704} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:08:25.337717+00 2026-01-25 01:27:50.860766+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 354 google Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB 1 t 357 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown 我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?这是我见过最差的的,以后不会再用。跟我们同去办理取车的还有三家跟我们情况一样,他们是老剧本,我们都是新入局的。最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。 我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。再说订车我定的t-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?这是我见过最差的的,以后不会再用。跟我们同去办理取车的还有三家跟我们情况一样,他们是老剧本,我们都是新入局的。最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。 1 2025-11-26 01:27:48.341315+00 zh-cn v5.1 J1.03 {} V- I3 CR-N {} {"E1.02": "最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。", "J1.03": "我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。", "O1.02": "再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?"} {-0.0043234862,0.014091328,0.02292574,-0.037345197,-0.107411504,0.08523169,0.09164344,-0.041640744,0.019340646,-0.042107802,0.17786033,-0.060417045,0.037244476,-0.06503308,0.0252881,0.030305997,-0.03164047,0.018851114,-0.08536662,0.008606206,-0.021220943,-0.06011008,-0.050693683,0.03498886,-0.0025352617,0.01195931,-0.040471774,0.027805027,0.059652165,0.04669869,-0.08550054,0.02470445,0.01487544,0.04042488,0.087675944,0.028563473,0.015163901,-0.016846742,0.06848921,-0.007495923,-0.0713976,-0.10753036,0.0031449408,-0.07181667,0.06979996,-0.022536213,-0.0636489,0.02046491,-0.07484343,-0.0576295,-0.057556286,0.03938594,-0.014788119,0.021204494,-0.015777746,0.04283438,-0.023530807,-0.030706652,0.017345916,0.0054815398,-0.09608571,0.017023265,0.030895414,0.021192506,-0.0651564,0.026633186,-0.073252164,0.02058312,-0.040472414,0.08733434,-0.053708944,-0.012993025,-0.059941225,0.06839427,-0.059218068,-0.047624983,0.014717843,0.0034121987,-0.040174227,-0.09360194,-0.06703222,-0.057789307,-0.026597423,0.019944558,-0.03562842,-0.0106314765,-0.07617803,-0.044018313,0.045960832,-0.020839399,0.07676608,0.03886752,0.018799527,0.012866969,0.015956847,-0.029306034,-0.04394043,0.026016548,0.005207796,0.015820982,0.029462568,-0.018788015,-0.047912605,-0.06582192,-0.086178795,-0.08060861,0.028692447,-0.049335424,0.046247054,-0.027782552,-0.06683185,0.0016812673,-0.017153077,-0.05282766,-0.010666466,0.0018512371,-0.07145798,-0.003282575,0.072712004,-0.004985579,0.06850851,0.07843688,-0.13025825,-0.030906819,-0.06652153,-0.1349029,0.076908045,8.515572e-33,0.008811241,-0.006245265,-0.002229118,0.0045378115,0.033246264,-0.07822887,-0.050140895,0.00025867738,-0.078043126,0.11483892,-0.02646065,-0.020402772,-0.039575107,-0.013192252,-0.075314395,0.0031129194,-0.039085615,-0.05758906,0.09905133,-0.026274791,0.067928344,0.04251947,0.029347755,0.059137214,0.008051088,0.004486155,0.0023077072,-0.035751678,0.0033799012,0.051160634,0.004022368,-0.014057015,0.02528918,-0.06511057,0.015308627,0.028543731,0.07450758,-0.010320255,0.027933516,-0.027577387,-0.0885516,-0.01986559,0.033949055,-0.039750542,0.062224686,0.01767282,0.011818021,-0.03388291,0.003906279,0.0018811766,-0.03630561,0.0124204485,0.004359752,0.013627601,0.01691483,-0.05017696,-0.064542904,0.059783395,-0.03877655,0.025794828,0.027641738,-0.032191794,-0.013762418,-0.04400456,0.009168574,0.026974566,-0.080351286,-0.07940912,0.057478882,-0.0173215,-0.075069696,0.015297213,0.009676818,0.0030811746,0.0012674747,-0.042947978,-0.051597863,0.049032,0.04998563,-0.08143795,-0.042835876,-0.03300493,-0.03548922,0.040219586,0.012915258,0.029232563,0.06786342,-0.002282635,-0.023658196,0.04934236,-0.085570216,0.021776587,0.036125388,-0.021343278,-0.013382274,-1.5569011e-32,-0.025698144,0.10820522,-0.070693724,0.00071084464,-0.025520938,0.017362438,0.042613264,-0.04373989,0.028849112,0.057651095,-0.03690804,-0.057261195,-0.06509488,-0.027021343,-0.052435935,-0.013488638,0.0106631955,0.0944007,-0.03877055,0.0042925826,0.010618529,0.10127554,-0.051861838,0.06389211,-0.05140508,0.04542612,-0.0118648745,0.0032831072,0.02307487,0.039083112,-0.00016203262,-0.09349383,-0.026647763,0.12953115,-0.070856854,-0.09307636,0.030960739,-0.06307549,-0.07617521,-0.036334146,0.029418271,-0.08092486,0.02818787,-0.04343582,0.054100137,-0.011313038,0.008485319,-0.1189459,-0.0013078349,-0.076819986,0.0052841897,0.0031577172,-0.088453695,0.024929479,-0.01695127,0.013525591,0.021974765,-0.15270132,-0.044729818,-0.048833583,-0.00056496856,0.042949606,0.029039534,0.030271357,0.03202809,-0.072874315,-0.009394885,-0.033035446,0.056604944,-0.04817195,-0.028768789,-0.028648142,0.029083395,-0.09497066,-0.0536839,0.036075916,-0.019433735,0.038379364,-0.005604833,0.019842569,-0.047515977,-0.041898306,0.05240337,0.09280184,-0.1363901,0.04391582,0.04545043,0.043056168,-0.031032527,-0.008909131,-0.040382516,-0.0018415415,0.05317925,-0.013569327,-0.011063584,-5.796198e-08,-0.038557813,-0.06879832,-0.054440077,-0.036081262,0.031280745,-0.062366717,-0.057981744,-0.043000963,0.010254149,-0.047207028,0.02817263,-0.0034358914,-0.10247975,-0.0206352,-0.10339553,-0.010796053,-0.11209507,-0.01520737,0.034099184,-0.07858245,0.0062961555,0.036524676,0.0022989388,-0.044075575,-0.032831375,0.07380972,-0.10955415,0.039662864,0.0042954064,0.08601373,0.040146563,-0.028332273,0.03208922,-0.11059777,0.038500257,-0.06486221,0.02779018,0.003222726,0.08197664,-0.007272762,-0.008679921,-0.07331295,-0.012917238,0.08568946,0.12539884,-0.020328552,0.03305486,-0.0023625758,0.019211788,-0.019631345,0.037918508,-0.040649123,0.040369954,-0.07636048,-0.019735985,0.011201603,0.01873104,0.0037235569,-0.009613832,0.010845594,0.06172381,0.036496174,-0.050317302,-0.021548817} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:52.989089+00 2026-01-25 01:27:51.058566+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 389 google Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB 1 t 392 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11. una experiencia horrible. nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11. 1 2025-11-26 01:27:48.341642+00 es v5.1 P1.03 {} V- I3 CR-N {} {"J1.02": "Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11", "P1.03": "Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que "} {0.041060593,0.10484281,-0.029933756,-0.00022921222,-0.073739566,0.0239008,0.022077262,0.05425299,-0.02602615,-0.026667563,0.064468294,-0.0042797406,0.004753158,0.06563803,-0.03775578,-0.039587952,0.028560637,0.034390915,0.0066453503,0.057727374,0.03458795,0.025745513,-0.030678274,0.06967261,-0.023853876,-0.051603332,0.007484212,-0.018573152,-0.046970356,-0.061876837,0.004622617,0.045855433,0.04899081,-0.009780554,0.021904448,-0.07060647,0.014783358,-0.037595868,-0.03777698,0.046642076,-0.012271494,-0.0012008369,-0.008951976,-0.09027573,-0.024848346,-0.054278266,0.036921535,0.092517026,0.078943424,-0.040562015,-0.05969733,-0.0038677023,-0.07437844,-0.09271713,-0.011241842,-0.009502788,-0.007693857,0.058306295,0.061157,0.04608833,0.035781533,0.05926288,-0.09084304,0.06737297,-0.018013801,-0.048200835,0.041646168,0.009202887,-0.08265577,0.14041705,0.11051899,-0.07412927,0.0071643842,0.01017222,-0.068180576,0.030453099,0.05528745,-0.010551982,-0.009462906,-0.032420214,-0.018826153,-0.07471795,-0.036231592,-0.02106912,0.07172044,0.045706622,-0.0061528995,0.013703247,0.077954926,0.014167346,0.0009815985,0.044279866,-0.04074084,-0.019843938,-0.01820074,0.008806367,0.07644982,-0.03663755,-0.11495833,0.07883371,0.084568955,0.04640119,0.0032838937,0.04929791,-0.022292767,0.047721643,0.042212717,0.020088771,0.004645414,0.019932263,-0.087798476,-0.045713868,-0.08219447,-0.15779203,-0.10322174,0.029880876,0.042504493,-0.04504971,-0.011732468,-0.032335423,0.032827433,-0.0057177525,-0.023791075,0.005116027,0.041139703,-0.12888359,-0.0076212916,1.4747056e-32,0.011080432,-0.047684282,-0.026023066,0.035743978,0.02273426,0.062669806,-0.07600221,-0.026111862,-0.025584461,-0.004772222,-0.0069283107,0.023127096,-0.024842156,0.009477534,0.07257611,0.06936463,-0.017040377,0.037504207,0.022452677,-0.007908995,-0.044915937,-0.055381324,0.0024500934,-0.021962665,-0.068241045,0.013796786,-0.03452483,-0.033666786,0.0408454,0.03851599,-0.05538935,0.0685147,-0.0031225805,-0.048225246,0.007772293,-0.009287332,0.022607923,0.007091874,-0.051215794,-0.01024384,-0.0031840387,0.022133233,-0.06885166,-0.043766756,0.06330132,0.037080232,0.083091736,0.008287782,0.058406364,-0.008688718,-0.009457653,-0.0429351,-0.023269795,0.020318119,-0.061709285,0.034437306,0.020515786,0.056263153,-0.0048089963,-0.05424626,0.055578604,-0.055289205,0.052165903,-0.05323206,-0.043769564,-0.0441763,0.050952066,0.03451037,0.123139225,0.021954507,-0.039850414,0.026614523,0.018938892,-0.022566058,0.07816607,-0.002904094,0.016741745,0.0045839734,0.018573998,-0.009389921,0.03237002,-0.0072980723,0.074393526,-0.0019170509,0.123707734,0.0875461,0.03423259,0.012923871,0.03632732,0.1586682,0.008049447,0.052951105,0.049642127,0.00622491,0.03931504,-1.4154843e-32,-0.08343002,0.030626005,0.027853655,0.036264617,-0.04441405,-0.031941142,0.0144602135,0.08512182,0.0318482,-0.08236009,-0.043547887,-0.10483557,0.10793152,0.00060887623,0.015752455,-0.015924659,0.046582825,-0.10804604,-0.045624204,-0.06951627,-0.014257195,-0.013529981,0.00077116175,-0.004435585,-0.021734465,-0.05313029,0.023838045,0.06533391,-0.012163617,-0.03627168,0.013388603,-0.026517993,-0.027264286,0.10113969,-0.033732772,0.062028337,-0.016526824,0.05013778,-0.03866201,-0.017841319,-0.009283272,0.051615022,-0.12135529,-0.028723745,0.0051135113,-0.015348402,0.061805476,-0.16727023,-0.05511448,-0.049597636,0.10309303,-0.07185907,-0.054359503,0.023766784,0.013399277,-0.011597775,-0.014223422,-0.088619076,-0.0017227433,0.012021654,0.06172372,0.031934272,-0.13712473,0.0463506,0.055511743,0.03886742,0.00898303,0.018967513,0.025758857,0.039091807,0.019550094,-0.057869703,-0.08078949,-0.027691955,-0.008637448,-0.041742783,-0.024954494,0.0022224335,0.056666397,-0.01671052,-0.0005363759,-0.03040232,0.0035072276,-0.070707254,0.0071446802,-0.040099364,-0.018017177,0.03741776,0.026952919,0.10941938,-0.0068362188,0.045362685,0.0016591575,-0.050864734,-0.028791243,-5.255196e-08,-0.0064995936,-0.04566862,-0.04407241,-0.022776462,0.041609008,-0.061895095,-0.0008574277,0.04631935,0.0052937935,0.116874486,0.039465364,-0.05521532,-0.048066355,-0.021512963,-0.009282743,0.054860644,0.094304495,0.028619194,-0.047161113,-0.10187012,0.011533548,0.055970896,-0.020850314,-0.045895644,-0.035926633,-0.0025769286,-0.012431456,0.09905862,0.024350526,-0.0061904704,-0.07428798,-0.04050559,-0.028841222,-0.119064376,-0.09054128,-0.0194004,-0.02625716,-0.0032721367,0.053999215,-0.03263694,0.093441136,-0.015129073,-0.055558126,-0.009125462,-0.08104417,-0.069400914,-0.042669054,-0.055395905,-0.010520009,-0.024729183,-0.04297642,0.028463796,-0.000682242,-0.04862064,0.038180765,-0.08759879,0.03345078,0.010721244,-0.08924373,0.031416643,0.051100157,0.051153187,0.011620924,-0.04313687} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:33.647086+00 2026-01-25 01:27:51.220273+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1432 google ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE 1 t 1435 Go Karts Mar Menor unknown Granddaughter is rating this , she is nine and says the go carts went fast , lots of laps and the chappie was nice who put her helmet on\nNice place granddaughter is rating this , she is nine and says the go carts went fast , lots of laps and the chappie was nice who put her helmet on nice place 5 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"E1.04": "Nice place", "O1.02": "Granddaughter is rating this , she is nine and says the go carts went fast , lots of laps", "P1.01": "and the chappie was nice who put her helmet on"} {0.07124711,0.07123447,0.025081594,-0.025874823,-0.03754785,0.04036939,0.011187888,0.03567942,-0.121796295,-0.01426649,0.056400396,-0.035676263,0.039611436,0.018620465,-0.019420153,-0.057916723,0.14001155,-0.024130423,-0.028523145,-0.11229943,-0.03428224,-0.008379635,0.060703248,0.0956788,-0.08793872,0.05666308,-0.1283975,-0.03311715,-0.008989098,0.004751198,-0.08625452,0.010190981,-0.0025432664,0.031175202,-0.075119115,-0.023150533,0.083688945,0.0028318942,0.019819686,0.055389445,-0.04510014,-0.026584065,-0.049820073,-0.003396509,0.039954003,0.029987859,0.018619852,-0.04411735,-0.0020240322,0.0038141813,0.04058179,0.025285896,0.058756247,-0.0649737,0.006477735,0.017191967,-0.0912007,-0.0035243742,0.052060317,-0.045272313,-0.04608855,-0.0029366615,0.030490208,-0.010056325,-0.084014915,-0.10592095,-0.047580626,-0.071413346,0.0673279,0.06636783,0.020222146,0.076455615,0.054236706,-0.04623744,-0.022047956,0.003112748,0.03327918,-0.026288856,-0.018572565,-0.039895277,-0.022625402,-0.073210485,0.059295725,0.013297971,0.012583304,-0.07863505,0.02763084,0.042244986,-0.08234218,-0.041335873,-0.049092192,0.014193422,0.006983233,-0.020522606,-0.012068713,-0.0011244819,-0.03633756,-0.041665792,0.013337811,0.0014059255,0.0018445131,0.07867025,0.057437576,0.06731119,0.07735391,0.052192733,0.09803072,0.04696352,0.041008826,0.030050479,0.040957995,0.00843771,0.09846289,-0.028918572,-0.1293521,-0.009124086,-0.07484092,0.007301343,-0.050634522,0.019909106,0.033658136,0.020140467,0.048226375,0.022269465,-0.03477898,-0.08418352,0.042084627,6.9076456e-35,-0.026283033,-0.046631105,-0.023330133,0.031936567,0.026385393,0.058690388,-0.01262549,-0.01395918,-0.056633055,0.012675015,0.035395224,-0.0732255,-0.021406924,-0.011671706,0.06742974,0.07010614,-0.12208601,-0.017269524,-0.07869386,-0.026439276,0.011839812,-0.0072925724,-0.020668156,0.01952134,0.10171862,0.09698503,0.038868673,-0.005099398,0.0026487364,0.045591276,-0.059275817,-0.045167312,-0.05393186,0.0036400412,-0.05566864,0.00871091,0.02858264,-0.03228402,0.01195385,0.042677388,-0.04878771,-0.10389606,-0.05441145,-0.041211966,-0.119388714,0.0155287115,0.09466205,0.033306032,-0.04444821,0.058988772,-0.06841179,-0.0151885385,-0.070242144,0.028636063,-0.0425443,0.01556818,0.07282495,0.03797783,-0.043782584,-0.03383597,0.087917976,0.0018506564,-0.038060047,-0.12544085,-0.0034286077,0.031643584,0.028270049,0.0063538384,0.00561642,-0.0015166652,0.069076434,0.008145446,-0.07019607,-0.10707002,0.01666412,0.036430966,0.06783238,0.020820085,-0.04240559,-0.03678412,-0.005170424,0.062432967,-0.050880663,-0.0145055475,0.040752098,-0.092486165,-0.09129772,0.0058432925,-0.05086884,-0.045522384,0.016791558,-0.025982916,0.04632044,0.040954024,-0.031249896,-1.7229358e-33,-0.00067470316,0.05716445,0.04303552,0.04579077,0.0881445,-0.0404257,-0.010737392,0.059640996,0.008276957,-0.014185047,-0.081106246,-0.03342721,-0.012487051,-0.040383596,0.065033376,0.011851696,0.078425206,0.049182147,0.045624916,-0.06326368,0.028406536,0.046282515,-0.012724446,0.054219197,-0.01278678,0.0561824,0.0115990285,-0.09535504,-0.020823523,0.00590825,-0.027088458,-0.012949244,0.057822008,0.060075488,-0.045059387,0.020899646,-0.07680662,0.044506326,-0.09145451,-0.0068390965,0.09002755,-0.08626459,0.017861322,0.03598832,0.050369557,-0.005995351,0.013429054,0.041562214,0.044882882,0.11786824,0.04358389,-0.017339682,-0.023782497,0.028592678,0.0046571074,0.010012159,0.01834065,-0.041979976,0.019949036,-0.056663513,0.022848042,0.005232807,-0.12944734,0.050145645,-0.070888564,-0.042086676,-0.09469403,-0.06990983,-0.03906423,-0.016579615,-0.04518054,0.02412153,-0.054959625,0.01643582,-0.054568406,-0.054965094,0.008385325,0.062533565,0.05627468,0.0769323,-0.029839303,0.031365376,0.058418468,0.030191956,0.0007182594,-0.03729569,-0.06993392,-0.06870934,-0.012091354,-0.002368706,0.0850783,0.080338694,-0.017855136,0.019676402,-0.04623339,-2.4683679e-08,0.05178811,0.12574002,-0.04026804,0.04265625,-0.0011154948,0.027007248,0.010029702,0.07811518,-0.10193391,0.027737435,0.11761363,0.015413255,0.027756141,-0.0065237447,0.052220453,-0.030137548,-0.00040025145,0.059682313,0.014745895,0.024301106,0.028877154,0.018283298,0.048506543,0.015608178,-0.07129871,-0.06199095,0.016019784,0.02902878,-0.07115893,-0.06736999,-0.0064985235,0.011062357,-0.046074387,-0.01989584,0.030341184,-0.08530382,-0.00726141,0.058865022,0.0085782595,0.009663767,-0.009766451,0.048409842,-0.003936267,0.026860086,0.0044916496,0.05603816,-0.0057687755,-0.08896839,0.012151664,-0.023769157,-0.037472162,-0.045432124,-0.025168102,0.08758043,0.024270443,0.045090258,-0.015183602,-0.12110303,-0.035108812,0.043719273,-0.00906675,0.015644036,-0.0024618334,0.041705243} 0.6666667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:23.987159+00 2026-01-30 02:01:09.337891+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1434 google Ci9DQUlRQUNvZENodHljRjlvT201UU1YcDVTVzFOTVRocFJrVnpWbkUyYTFoMU5XYxAB 1 t 1437 Go Karts Mar Menor unknown Good real race track. Proper kerbs on all corners. good real race track. proper kerbs on all corners. 5 2025-07-04 00:52:39.833374+00 en v5.1 O2.04 {} V+ I2 CR-N {} {"O2.04": "Good real race track. Proper kerbs on all corners."} {-0.0075235274,0.046337187,0.001475717,0.011462614,-0.04605112,0.037377845,-0.061285816,-0.0633767,-0.024086189,-0.05287725,-0.06533445,-0.03097277,-0.04810063,-0.032164577,-0.0819552,-0.041128807,0.082878314,0.052201886,0.06862392,-0.010000833,-0.070890464,-0.018726874,0.04962625,0.08192138,-0.13791586,0.086096816,-0.035591856,0.018376946,-0.027780693,-0.04803655,-0.03059598,-0.0019327078,-0.0024061191,-0.008380415,0.053654935,-0.040324498,-0.0049970523,0.019604936,0.010151472,0.025273724,-0.0023645407,-0.053503513,0.04488073,0.021400612,0.122815244,0.056214318,0.02775832,0.012941808,0.05631606,-0.047733888,0.076248825,-0.10524264,0.08950144,-0.04946421,0.027388027,0.021570291,-0.065900594,-0.004712598,0.05709986,-0.0067562517,0.04076738,-0.0067410776,-0.020111913,-0.013910976,-0.039716106,-0.06561343,-0.046650395,0.051516347,0.071226105,0.05682434,0.021684323,0.030690681,-0.043799892,-0.015941612,0.01909686,0.033000335,-0.05579617,0.024498707,-0.06308517,-0.028274309,-0.020894296,-0.017086515,0.06792389,-0.07979237,0.039472766,-0.062371798,0.056089636,-0.027389018,0.036210436,-0.014528315,-0.015783524,0.038151495,-0.044383477,-0.03898706,-0.00873004,-0.010279097,-0.013394147,0.06212789,0.028746294,0.033475894,0.0557062,0.014539389,0.012077571,0.034666054,0.03294944,0.01658422,-0.021236131,0.068374045,0.03641714,-0.0068094935,0.07035969,-0.060149033,-0.0270916,0.03792608,0.019163262,-0.03015969,-0.017265996,0.0035435571,-0.02575945,0.024190504,-0.08339916,0.019443437,-0.007617884,0.015462756,-0.058283303,-0.035619114,0.017378122,-1.3506651e-33,-0.04045767,-0.0035396214,0.05630868,-0.094928265,0.10951053,-0.038428474,-0.10205696,-0.10617222,0.0025633308,0.012338167,-0.024882015,0.0027638164,-0.028240874,-0.06859459,0.06926593,-0.07137064,-0.13925306,-0.06848214,-0.12600636,0.08236704,-0.06480066,0.02426913,-0.007618172,-0.03054407,0.06846129,0.01492369,0.030580152,-0.04562461,-0.0043240124,0.0345085,-0.04799465,-0.019317864,-0.026691684,0.0409335,-0.08955607,0.070621915,-0.005634708,-0.031834994,-0.013977843,0.031897433,0.014226215,-0.0070028617,-0.0019491496,0.026237832,-0.046413492,0.08533964,0.053272452,0.12005358,0.009630852,0.028487206,-0.014359288,-0.026898589,-0.048636276,-0.04297269,0.006497797,0.049447283,0.06940656,0.03208354,0.008920025,0.01393289,0.022120565,0.031672448,-0.02153334,-0.11659497,-0.0788493,-0.03098104,-0.03793277,0.008866498,-0.007579888,-0.01522352,-0.06488924,0.022859504,0.021553164,0.0013155823,0.035222422,-0.00977574,-0.042301223,0.028666094,-0.043599322,0.018939745,-0.04492605,-0.0026584112,0.026279585,-0.108792536,0.05714737,-0.000218172,-0.037051603,-0.05162473,-0.004962461,-0.023631211,-0.034607384,0.04827426,-0.019580755,0.04715105,-0.07882223,7.083104e-34,0.098866075,0.059046593,0.09597726,0.15334935,0.023408597,0.07070238,0.0052015623,-0.052970774,0.036369927,0.06129589,-0.023466265,0.029601993,0.08601922,0.11719629,0.019226769,-0.048876956,0.04464337,0.067607194,-0.012844499,-0.10646907,0.008240499,-0.07785073,-0.061946344,0.028226806,-0.030070515,0.0735701,-0.042371478,-0.0030936922,-0.055012517,-0.010348117,-0.049297113,-0.056363937,-0.055320613,-0.09180756,-9.886348e-05,0.062128965,0.042744204,0.032909542,-0.050845902,-0.0106649855,0.014416737,0.02481552,0.01321722,0.06831268,-0.03571358,0.023400122,0.020040916,0.08194811,-0.0871471,-0.003887615,0.01649701,0.011172735,-0.020692576,0.025548415,-0.079232655,-0.0064165783,-0.017357295,0.025959272,-0.023259802,0.018468162,-0.0711606,0.062059153,-0.04977633,-0.004811973,0.0622291,-0.048984125,-0.028131109,-0.019035429,-0.039686233,-0.030986778,-0.031494465,0.011277502,-0.059141226,-0.0119858505,0.0075590517,0.006101098,0.033890523,-0.0009724712,0.026216507,0.093166195,-0.014774958,-0.029269636,0.037602704,0.048089374,0.082068674,0.07895808,-0.052472185,-0.021506988,-0.019159215,0.115937866,0.12995677,0.07594012,-0.05617882,0.11591523,-0.056812648,-1.8809539e-08,0.005209154,0.07597319,-0.030804796,0.018456694,0.0031349529,0.027946465,0.039068323,-0.04086064,-0.052967835,-0.0580489,0.020846995,-0.019696333,-0.05264525,0.12626936,-0.0107237585,0.0063482407,-0.05564905,0.06249967,-0.04971691,0.07118577,-0.051743858,0.009959335,0.043367848,0.0064146905,-0.039263178,-0.0056777643,0.07050142,0.08796606,0.020883782,0.035185523,-0.026831977,0.06614461,0.016531965,0.019494867,0.035420373,-0.012230115,-0.08060175,0.12217275,0.06582541,0.0032838432,-0.1073656,-0.033847533,-0.00659353,-0.018427152,0.0023011316,0.0025078221,-0.015114565,0.07076448,-0.06452315,-0.025633102,-0.031153467,-0.02818561,0.0037218344,0.10973032,0.053806722,0.03799373,-0.055254836,-0.07180741,-0.0236343,0.0019345366,-0.03881636,-0.014652616,-0.015937876,0.10494403} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.014252+00 2026-01-30 02:01:09.346304+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1181 google Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB 1 t 1184 Soho Club unknown Nice pub with great music! I really enjoyed my time there. nice pub with great music! i really enjoyed my time there. 5 2025-12-30 18:34:31.336452+00 en v5.1 E4.04 {} V+ I2 CR-N {} {"E4.04": "Nice pub with great music! I really enjoyed my time there."} {0.10930396,-0.0019340146,-0.0059147915,-0.018408611,-0.06114465,0.06964719,0.008918715,-0.06467939,-0.039240487,0.02657553,-0.029426204,0.0082867425,0.058572132,-0.036017507,0.019817287,-0.031182185,0.050897706,-0.14078204,0.117182165,-0.043975253,-0.06717184,0.013751292,0.022584068,0.033164546,-0.051544253,0.032634128,0.012059229,0.13462639,0.022929877,-0.02194852,0.013147477,0.06552632,0.014853606,-0.015503074,-0.031840045,0.047492117,0.027424945,-0.17578775,0.02648184,0.07190935,0.004891307,0.04075279,0.035352606,-0.03176445,0.012016866,0.049440134,-0.052327495,-0.070671946,0.056377213,0.04458206,0.08277356,0.008184246,0.005329003,-0.059013937,-0.043746095,0.013123859,-0.023777135,-0.0039497796,0.016252981,-0.09308311,0.031376053,-0.0041178856,-0.07583366,-0.022103798,0.04000379,-0.035101317,-0.07012468,0.049140997,0.06865906,-0.053648215,-0.003383514,0.01734548,0.07179777,-0.04134557,-0.03889549,-0.010572037,-0.04422044,0.020485876,-0.025270723,0.020522943,0.07296008,-0.036135133,-0.009549669,0.0025662922,-0.08204107,-0.10558646,0.007468012,-0.055199474,-0.025314784,-0.031918805,0.058380485,0.1034218,-0.10917168,-0.00018164447,0.073072866,-0.0031544517,0.005307112,0.034976877,0.010057559,0.020569568,0.027468512,0.12987682,-0.0037138846,-0.03734823,-0.020196596,0.008384486,-0.02080884,0.12414879,0.012373763,-0.04927024,0.041282974,0.038819354,-0.0029366666,0.02625385,0.020752134,0.10960206,0.05060667,-0.005322394,-0.027764045,-0.050758637,0.050170507,0.06650335,-0.025574783,0.036545865,-0.049828097,0.03210311,0.009992056,-3.988801e-33,-0.030377664,-0.027518488,-0.030050032,-0.0041677514,0.14416006,0.006500314,-0.11794168,-0.013059105,-0.06830561,-0.009954731,0.07503782,-0.06627183,0.0034845737,-0.1158876,-0.025949754,-0.03134363,0.01040818,-0.0034818626,-0.02020851,-0.038143087,-0.078907065,0.01079899,0.0026591541,0.030678207,0.018045679,0.0174317,0.04014517,-0.04171807,0.017783444,0.0083517535,0.013008584,0.0120472405,-0.05268734,0.036179844,0.0068583563,0.007407029,-0.03764432,-0.052460685,-0.01496975,0.05654943,0.08751282,-0.024557995,0.03200604,0.06884528,-0.056800574,0.002016106,-0.05153995,0.0054010204,0.08757385,-0.01911525,-0.04035304,-0.009621348,-0.09016481,0.059894923,0.008438392,-0.010942265,-0.022949357,0.08126408,0.0689957,-0.04306455,0.05637935,0.05816764,-0.0045864396,-0.106366,0.003834336,-0.05614128,0.039473705,0.04253863,0.11279102,-0.0034928499,-0.0061349343,-0.014289939,0.08158457,-0.02634224,-0.0050313813,0.048588593,-0.10334501,-0.026112698,0.06317,0.06582019,0.05069017,0.018028468,-0.061927643,-0.004114988,-0.007181978,0.0023245316,0.08525219,-0.17158641,-0.09577889,-0.050285634,-0.08310867,0.0078068473,0.03503634,-0.024054343,-0.0029379355,2.0640627e-33,0.12279123,-0.048272982,0.00085280364,-0.014388235,-0.04176501,0.009277402,-0.076191284,0.014108437,0.0035543146,0.059083357,0.013322648,0.02291946,0.029573759,-0.04040432,-0.096752144,-0.005986426,0.043274708,0.0050276252,-0.028874902,-0.015628485,0.005427526,-0.042306833,0.03706477,-0.038622037,-0.010406775,0.061914414,-0.03408867,0.005745686,-0.007774885,-0.0104576,-0.03372005,0.004932371,-0.037942097,-0.049256735,0.036989205,0.08779063,0.09209009,-0.03182435,-0.05355487,-0.02088443,-0.0123847285,-0.006156905,-0.044167344,0.033380263,0.05862776,0.02794516,-0.026973974,0.017966287,-0.04125299,-0.073978834,0.05806999,-0.010212535,-0.006747465,-0.0584475,-0.013207072,-0.06605546,0.051487286,0.010883372,-0.0349874,-0.025551856,-0.09688098,0.061102364,-0.057458665,0.028570004,0.07291529,-0.01824045,-0.02401267,-0.048125822,-0.043278053,0.034913152,-0.07372981,-0.0070340787,-0.026059803,0.09189436,0.057318483,-0.07656351,0.11040703,-0.035554357,0.021714821,0.038604263,0.016627759,0.08831192,-0.05428583,-0.0329125,0.010995228,0.0442658,0.069780946,-0.001887696,-0.040970914,0.038248125,0.020388475,0.093030624,-0.09963069,-0.054934926,0.0054192357,-1.6165908e-08,0.005537116,0.04870738,-0.027677389,0.056201693,0.0072204163,-0.104046024,0.0033076727,0.008098461,-0.0125066135,0.034191117,-0.007819225,-0.037494157,-0.037943676,-0.005178055,-0.015149533,0.049346924,0.0023829911,0.07542171,-0.020657385,-0.021149604,0.04380993,0.050702084,0.0132819535,0.021258447,-0.029542822,-0.033487365,0.053303514,-0.04139098,0.055741545,-0.03527565,-0.022805242,0.024697177,-0.068975985,0.003273833,-0.06461638,-0.020597503,0.02357747,-0.06589819,-0.008336756,0.015604886,-0.055738654,-0.14821053,-0.034495294,-0.04936763,-0.038820367,0.010627206,0.092435084,0.09733057,-0.0499011,0.037910346,-0.038531125,0.025342312,0.0032916912,0.005425968,0.0060892194,-0.015333857,-0.040880144,0.017014477,0.03671735,0.07568293,-0.0017489531,0.0599375,-0.046267778,0.040593162} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:36:31.077039+00 2026-01-29 18:36:00.419505+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 353 google Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB 1 t 356 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Lange Wartezeiten, schlechter Service. Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser krank war mussten wir einen neuen Mietwagen für den doppelten Preis buchen. lange wartezeiten, schlechter service. wir hatten im vorfeld gebucht, der fahrer könnte im nachhinein nicht mehr geändert werden. da dieser krank war mussten wir einen neuen mietwagen für den doppelten preis buchen. 1 2025-11-26 01:27:48.341313+00 de v5.1 J2.02 {A2.02} V- I2 CR-N {} {"J2.02": "Lange Wartezeiten, schlechter Service.", "J3.03": "Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser"} {-0.124663986,0.08985202,-0.005970488,-0.067267545,-0.054149233,0.05588315,0.07849559,0.11185248,-0.038174402,0.0013225658,-0.028325148,-0.036405075,-0.009357985,0.032487113,-0.06711884,-0.036333825,0.039781585,0.042909574,-0.0028325692,0.0014397312,-0.049851276,0.020757059,-0.0013615665,0.078262776,0.019271199,-0.005843886,-0.053718854,-0.04609206,-0.036681734,0.021104952,0.015796756,-0.0025197833,-0.03245331,0.033847842,0.024127884,0.061824366,0.0224306,-0.0044687414,0.019275464,0.04749902,-0.087778844,-0.021922668,-0.046838507,0.0009907818,0.004420463,0.060736343,-0.022749092,-0.021149984,-0.08895442,0.057860043,-0.078586176,-0.06109156,0.05622649,0.0153406495,0.063438244,-0.10212118,-0.006112433,0.04266639,-0.010983197,0.022822259,-0.035085466,-0.079958454,0.040194,-0.0027805183,-0.017433135,-0.048024874,-0.061501488,0.015530756,-0.076255515,-0.067026004,0.044429205,-0.019227805,0.05274504,-0.005848641,-0.08376372,0.030075377,0.035930946,0.030298818,0.033263184,-0.12555917,0.048931375,-0.002934715,-0.021660734,0.080904394,-0.017731015,-0.055426143,-0.06780059,0.0033284095,0.06317887,0.0040360806,-0.051309634,0.07800815,-0.033385504,0.003276752,-0.061936066,-0.0011134935,-0.0034401945,-0.040645584,-0.020759376,0.0866524,0.031866286,-0.046404887,0.022302464,0.06679356,-0.04210172,-0.12469777,-0.02834111,-0.010743068,-0.05272279,-0.00550904,0.018086469,-0.009597398,-0.0629798,-0.034587394,0.012101602,-0.012599527,0.040329564,-0.073408514,0.0062465495,0.026142469,0.04927588,-0.02627569,-0.03755285,-0.021024993,0.0047157602,-0.0028919436,0.15824506,1.6904276e-32,0.019987447,-0.07905606,0.047279112,0.076642774,-0.057260267,0.0070261783,-0.030471284,-0.052032087,-0.007815681,-0.0844564,-0.04881521,0.082562044,-0.037490766,0.020458583,0.0070523713,-0.03068455,-0.018359074,-0.018974494,0.052499637,-0.06700147,-0.036690556,-0.010595983,0.025730666,0.03754649,0.09810439,-0.12418178,-0.021022905,-0.07237842,-0.094292626,0.021014957,0.08506748,-0.05861383,0.009268897,0.015217808,-0.119401686,-0.0021918642,-0.063330255,0.05913978,0.011249099,-0.080339156,0.056701995,-0.00090902176,-0.057188656,-2.503935e-05,0.041939285,0.01582054,-0.048108265,0.043645464,0.028983057,0.010120052,0.008783664,-0.0025977117,-0.04770821,0.044797067,0.027730495,0.083115764,0.021537213,0.04081361,-0.004321469,-0.059938192,-0.0037354357,-0.065460674,-0.041205395,0.08014913,0.06143621,-0.086898334,-0.032926735,-0.070506126,0.027023721,-0.029486973,-0.036463432,-0.04347003,0.11705885,0.016040536,0.006335535,0.062463284,0.051343855,0.0797923,-0.12247953,-0.056575645,-0.0088012125,-0.018006671,0.026702605,-0.057194766,0.031078178,-0.01968839,-0.016568188,-0.07675741,0.039621238,0.09701493,-0.044660043,-0.026709111,-0.06877502,0.026129771,-0.0015649885,-1.6715493e-32,0.03809219,0.046670124,-0.020596737,0.02269239,-0.029510375,0.074379355,-0.030655555,0.019935658,-0.14569354,0.031566944,-0.0015197439,-0.018310608,0.015556483,0.020648964,-0.053119753,0.056640517,0.07385686,0.049653742,0.07864732,-0.03540884,-0.0074592717,-0.009109343,0.013285511,0.013190622,0.005999413,-0.005010163,0.011905944,0.048216216,-0.06318723,-0.056268934,-0.007008256,-0.04825424,0.09049844,-0.011060604,0.07470709,-0.0008157283,0.092548504,0.04080433,0.018514223,0.00046136006,-0.0063852356,-0.012175407,-0.09347311,-0.06339703,-0.027583329,-0.06716253,-0.12314673,-0.054338764,-0.008848043,-0.027786477,0.060325265,-0.054176953,0.06262452,-0.10995119,0.055641167,0.03254872,-0.087644726,-0.019391518,-0.014587179,0.033136,0.12308639,-0.010155012,-0.010716549,0.002880099,0.061221868,-0.03425856,-0.027260361,0.043686897,0.04812272,0.023135807,0.03976424,-0.004078132,0.034807004,0.019293284,-0.02363553,-0.0493401,0.0028341142,0.07001762,-0.040800087,-0.0043039806,-0.022518054,0.03440597,0.025685448,-0.04293491,-0.020715445,-0.001674873,0.14195822,0.024446124,0.021819474,-0.03572964,0.0031492468,0.018553095,-0.0007793939,-0.024758354,0.054540657,-5.9287725e-08,0.033032246,-0.05643122,-0.0139357485,0.07595295,-0.03222282,-0.13178506,0.038556382,-0.018084858,0.008671964,0.03463639,0.012647828,-0.036011845,0.012223439,0.017776862,0.002283656,0.043708388,-0.03001788,-0.087442644,-0.03588018,0.0012326412,0.0679612,-0.062229116,0.0076065497,-0.022646205,-0.018444262,0.06028964,-0.06597497,-0.018267864,0.050587606,0.031013757,-0.00715819,0.10409615,0.020089148,-0.033319183,-0.084857,0.0396748,-0.06904455,-0.021908741,-0.051036827,0.04819828,0.0047908844,0.11648894,0.058234055,-0.023357848,0.009996049,-0.023162773,-0.101561405,0.061777715,0.05388381,-0.025144199,-0.07275238,0.0991968,0.041445464,0.018912021,-0.03827366,0.036872413,0.07468892,0.014968118,-0.026389852,0.00083843333,-0.013182098,-0.030010492,-0.030110573,0.034100074} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:20:01.542646+00 2026-01-25 01:27:51.055854+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 399 google Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB 1 t 402 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Mi experiencia fue muy satisfactoria gracias a Valentina ya que nos explicó todo muy bien y nos ayudó y nos asesoró en todo momento para hacer la gestión de la mejor manera, muy contentos con el trato y con el coche que fue exactamente el.que elegí, escogí una sillita de bebe para mi hija y de la dieron limpia y en perfectas condiciones pero si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con Isofix ya que son mucho más seguras para los bebés pero solo es una crítica constructiva para mejorar! Gracias mi experiencia fue muy satisfactoria gracias a valentina ya que nos explicó todo muy bien y nos ayudó y nos asesoró en todo momento para hacer la gestión de la mejor manera, muy contentos con el trato y con el coche que fue exactamente el.que elegí, escogí una sillita de bebe para mi hija y de la dieron limpia y en perfectas condiciones pero si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con isofix ya que son mucho más seguras para los bebés pero solo es una crítica constructiva para mejorar! gracias 5 2025-10-27 01:27:48.341708+00 es v5.1 A1.01 {O1.01} V+ I2 CR-N {Valentina} {"A1.01": "Mi experiencia fue muy satisfactoria gracias a Valentina ya que nos explicó todo muy bien y nos ayud", "O1.02": "si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con Isofix ya que son mu"} {0.00435189,0.020945722,0.00335626,-0.04018913,-0.060337283,-0.012721201,0.09867129,0.024964377,0.00082170416,0.0019469621,0.10100603,0.0074157524,0.0054317354,-0.010004742,0.06556883,0.017651401,0.028094968,0.06682882,-0.05774807,0.009742919,0.07802458,-0.08161814,-0.071180016,0.06327061,-0.13094205,-0.011050739,-0.034400403,0.0049481895,-0.014386228,-0.09139124,-0.03549748,0.0012423726,0.08526987,-0.009113525,-0.017580774,0.10367541,0.0633469,-0.0949742,-0.06435481,0.05999067,-0.13804188,0.005647024,-0.009379206,-0.024509756,-0.036552947,-0.09616039,0.043453716,-0.018876836,-0.009032463,-0.06506146,-0.13229166,-0.022273798,-0.047037628,-0.017023886,0.024667537,0.0076213293,-0.0017102413,0.068604395,0.040446393,-0.012181778,0.032699354,0.017447362,0.00028738315,0.021681786,0.06043383,-0.023606319,0.0209963,-0.008191019,-0.042788975,0.05214233,0.021080615,-0.046794984,0.03990542,0.031251993,-0.06440219,0.08456817,-0.04641687,-0.009155789,-0.021815674,-0.0050902884,0.0001462301,0.020824386,-0.025032049,-0.055425122,-0.01686249,-0.012083064,0.015776446,0.012034998,0.025889467,-0.03585474,0.0050167385,0.015653288,-0.065770715,-0.012282962,0.063401654,0.041808106,-0.025000995,-0.057738185,0.017295562,0.013134077,0.07824284,0.07006531,0.03829832,0.008402843,-0.019485397,-0.041078657,-0.020633807,-0.031044072,0.028512843,0.09725043,-0.09998248,-0.10197864,-0.040415056,-0.056555606,-0.047992814,-0.024390848,0.013212691,0.022484705,0.019099085,-0.021852886,0.02064578,-0.022597171,-0.009439289,-0.02861066,0.03320094,-0.07876153,0.03580762,1.2587767e-32,-0.0350089,-0.005466428,0.0043896907,0.088473074,-0.044903286,-0.027827876,-0.01338969,-0.015078564,-0.03382995,-0.016105907,-0.058465134,0.06707893,-0.04303734,0.113610186,0.08173935,-0.034103625,0.007993378,-0.021640005,0.056029633,0.0014760623,-0.04532886,-0.0054693073,-0.007192296,-0.12897505,0.01628138,0.005739312,0.024155896,-0.009546,-0.1280154,0.04099156,-0.027001595,0.017220007,0.012515299,0.028642697,-0.033288967,-0.064304784,0.017861499,0.0633341,-0.035108212,-0.11860617,-0.01632137,0.050162546,-0.020900326,-0.012918297,0.06484391,0.050781924,0.057597745,0.035669282,0.051528156,-0.01788091,-0.040410146,-0.024911873,0.013595321,-0.06270383,0.039110642,0.00594808,-0.054550704,0.022006324,0.0044087376,-0.03183934,-0.031871267,0.06354179,0.038612325,-0.041443612,-0.037405737,-0.011735484,-0.054326173,0.008284474,0.102988034,0.061664604,-0.09182658,-0.0147915445,-0.116413355,0.020491023,-0.00039766097,-0.0061416086,-0.015265102,-0.04471943,0.031750955,-0.020073796,-0.07395449,0.0014512829,0.054373614,0.010280588,0.041185025,0.056911964,0.04106046,0.05969439,0.0045088693,0.14576483,-0.017597534,0.028314281,0.015470256,-0.020354297,0.035791717,-1.5843385e-32,-0.037261065,0.024820343,-0.013700582,0.014886785,-0.020806408,0.0022988294,-0.06015877,-0.027698092,0.018012103,-0.011309947,-0.048978943,-0.12484054,0.04675085,0.031645384,-0.11229719,0.029848106,-0.040761508,-0.1169047,-0.0709927,-0.028895194,-0.010643142,0.06227925,0.036336645,0.0029421973,-0.050415486,-0.06267042,-0.023064971,-0.00026050082,-0.09320075,0.012439519,0.079312466,-0.031871967,-0.011059978,0.016101448,0.021027582,-0.055896092,0.020724623,0.041267924,-0.015445929,-0.03444545,-0.0011197898,0.068755426,-0.020989155,-0.021390377,-0.011727062,-0.028432969,0.05824711,-0.18125257,-0.035078455,-0.03238612,0.03749498,-0.08842671,-0.02657338,-0.049156185,0.04315513,0.014196832,-0.08433716,-0.06965668,-0.1085599,0.023180781,0.031885557,0.0073291617,-0.031117978,-0.039114974,0.07728786,0.0010018707,-0.023656284,0.009212887,-0.0471836,0.05684922,0.03776358,-0.06557277,-0.14653854,0.03255353,0.0030988501,-0.054367967,-0.05075059,0.02290045,-0.03334258,0.06880835,-0.018746298,-0.013059335,-0.03154797,-0.030450363,-0.0009174977,-0.0050048213,-0.01991593,0.116812885,0.04443843,0.077602215,0.0131278895,0.05066415,-0.079793535,-0.06827177,-0.026195878,-5.928135e-08,-0.04614851,-0.06896837,0.009179631,-0.007946445,-0.028423151,-0.009448748,0.03266097,-0.007875477,0.016124044,0.11558698,0.030740716,0.0066680014,-0.09983332,0.054236528,-0.011480027,0.025647199,0.07513501,0.087885566,-0.016202364,-0.05553639,0.102359705,-0.019419037,-0.029415965,0.02048154,0.04846356,-0.025809098,-0.0058345995,0.015050152,-0.05297922,0.11122823,-0.0044486243,-0.013343048,-0.023416094,-0.0609727,-0.10008813,-0.022693764,0.062410187,0.06075543,-0.025665304,-0.022527896,0.09119286,0.0027669617,-0.034345716,0.028388,0.0015839281,-0.0472529,-0.03513959,0.028095063,-0.064592704,0.04346168,-0.036834985,-0.029258283,0.040327393,0.02845526,0.046716146,-0.06725331,0.0035263898,0.09419189,-0.04036035,0.01434409,0.09934416,0.060072247,0.05769634,-0.04725298} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:26:02.533897+00 2026-01-25 01:27:51.263611+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 415 google ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE 1 t 418 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Absolut Finger weg. Ja, es ist super günstig, aber man hat nur Ärger. Kein Shuttle am Flughafen vorhanden, hatten uns nach 20 min schon ein Taxi organisiert. Die angegebene Telefonnummer ist nur ein Servicecenter landesweit und es gab nur automatische Ansagen!\nBei der Rückgabe nur Ärger. Man wollte uns anhängen, dass unter der Stossstange Kratzer wären. Wir hatten Fotos gemacht und haben rumdiskutiert ohne Ende. Sehr unfreundliches Personal. Da hilft absolut kein günstiger Preis. Es gibt viele andere Anbieter in der Nähe absolut finger weg. ja, es ist super günstig, aber man hat nur ärger. kein shuttle am flughafen vorhanden, hatten uns nach 20 min schon ein taxi organisiert. die angegebene telefonnummer ist nur ein servicecenter landesweit und es gab nur automatische ansagen! bei der rückgabe nur ärger. man wollte uns anhängen, dass unter der stossstange kratzer wären. wir hatten fotos gemacht und haben rumdiskutiert ohne ende. sehr unfreundliches personal. da hilft absolut kein günstiger preis. es gibt viele andere anbieter in der nähe 1 2025-05-30 01:27:48.341792+00 de v5.1 P1.01 {J1.02} V- I2 CR-N {} {"A1.03": "Bei der Rückgabe nur Ärger. Man wollte uns anhängen, dass unter der Stossstange Kratzer wären. Wir h", "P1.01": "Ja, es ist super günstig, aber man hat nur Ärger. Kein Shuttle am Flughafen vorhanden, hatten uns na", "R1.01": "Es gibt viele andere Anbieter in der Nähe."} {-0.11490791,0.05955433,-0.042302128,-0.06791351,-0.08209764,0.0017255471,0.15479088,0.0961831,-0.03565749,0.034030296,0.094168074,0.03758027,0.00690639,-0.065669805,-0.06163698,-0.029466523,-0.0033247632,-0.04715167,0.008239956,0.01396863,-0.02035466,-0.06289352,0.0068838308,0.043776654,-0.031059047,-0.050960433,-0.04337171,0.026837662,-0.014557665,-0.0465885,0.026753591,0.05504855,-0.018820215,-0.011363122,-0.0153789045,-0.0037867771,0.017223222,-0.008374705,-0.028119784,0.0716028,-0.0033260568,-0.031686954,-0.078103244,-0.025450954,0.0042987983,0.03989178,-0.024325304,0.025787836,-0.009365205,0.03564065,-0.06293678,0.055589385,0.05621435,-0.08075849,0.032937095,-0.08647423,-0.061160024,-0.025099862,0.060869966,0.048861757,0.020512633,0.005784112,-0.060304113,-0.005204539,-0.009088881,0.03261026,0.06065131,-0.09148955,0.06076374,-0.018806806,0.039112855,-0.09518112,0.0019099133,0.00025323476,-0.06087232,-0.011510731,-0.09364082,0.001980256,-0.02678611,-0.034267575,0.053502604,-0.09666627,0.065864846,-0.040634777,-0.034288097,-0.010973098,-0.055103466,0.017026687,-0.04211069,-0.006370234,-0.007925991,0.009831398,-0.09209655,-0.017056497,-0.009766785,-0.052875914,-0.009852581,-0.03011837,-0.057212006,0.0034528992,0.06020844,0.013587791,-0.05387558,0.048430607,-0.0035314173,-0.015741915,-0.09415415,-0.046242952,-0.023854263,0.016284436,0.0064644916,0.018293768,-0.058300707,-0.11037609,0.020097325,-0.0034468344,-0.05912776,-0.08507026,0.00513867,-0.054491863,0.016771829,0.013259583,-0.0029866751,0.025230438,0.041171953,0.012031605,0.07970328,1.2803808e-32,-0.012154034,0.048333205,0.061880294,0.012596073,-0.019688295,-0.02135295,-0.0823309,0.026514407,0.012881607,0.030250965,-0.04031348,0.012196319,-0.062329046,-0.013114472,0.08969293,-0.02234363,0.03224052,-0.06692931,0.044073872,-0.05655131,-0.07338269,-0.030357746,-0.057430062,0.072881065,0.0724753,0.097030945,-0.04839715,0.00071449677,0.024598625,0.042249072,0.0135143045,0.049270593,-0.031280365,-0.016964542,-0.024682289,-0.07432447,-0.0537691,0.020951565,-0.095688306,-0.06968017,0.03981535,-0.0004638478,-0.063671686,-0.041191813,0.041714955,-0.018667271,-0.033599526,-0.010444522,0.040748492,0.024148883,-0.014026329,-0.02827849,-0.0035468158,0.030771874,-0.011732439,0.08443241,-0.07188092,0.006999789,-0.04712088,-0.008742435,0.036473706,0.030682674,0.03803107,0.06620801,0.021373041,-0.03564194,0.018333334,-0.009676819,0.068508185,0.121991456,-0.052446656,0.033974778,0.10894437,0.0012818188,0.0757828,0.108861476,-0.053515162,0.11241069,-0.09994156,0.031934865,-0.04045545,0.020573989,0.0995647,-0.040469076,0.07522669,-0.039119817,0.073089056,-0.050235715,-0.003992689,0.10162686,-0.05720446,0.046228126,-0.09219475,0.008561451,-0.044652004,-1.5260983e-32,0.12932192,0.023689974,-0.011979499,0.03524481,-0.087343,0.058071304,0.08366219,0.054332815,-0.06887697,-0.012436797,0.0011553111,0.05383869,0.10548516,-0.009271523,0.032571692,-0.009394653,0.025634978,0.024850521,-0.051117655,-0.024163917,0.027846918,-0.070951335,0.051611245,0.01704133,-0.06574788,-0.017911423,0.028253345,-0.0011839025,-0.058771484,-0.03534742,0.06191721,-0.0025161554,0.0675283,0.048962902,-0.060815416,-0.002446218,0.074511096,0.09243732,0.008010395,-0.011576814,0.019361816,0.039347544,0.008206177,-0.06831173,0.01568741,-0.10009582,0.0046421015,-0.045002133,-0.07911216,-0.14204511,0.027255017,0.0014365483,0.058697455,-0.04352077,0.00769697,-0.0075059477,-0.0067540063,-0.115849726,0.02630846,0.09487554,0.1288785,-0.010818322,-0.004655348,-0.07417331,0.032087035,-0.094020985,-0.03955247,-0.00070707774,0.038249705,0.008242071,0.12549518,-0.006322663,0.021696163,0.058192715,-0.026188103,-0.0167503,0.028459454,0.064444475,0.008803735,-0.030168692,-0.043376107,-0.04380519,-0.083260134,0.06756122,-0.012528226,0.04627732,0.0484313,-0.040577285,0.043428145,-0.093318425,-0.017344229,0.06983471,-0.013844281,-0.07807591,-0.0030013623,-6.153704e-08,0.052309256,0.053056702,-0.025278162,-0.0002842973,0.027542932,-0.03848514,-0.03154645,-0.023226049,-0.08725141,-0.025348408,0.007887462,-0.027762732,-0.07067383,0.08600931,-0.02263279,0.0009824296,-0.020405376,-0.012036767,-0.013789009,0.03277451,0.00526209,-0.06665477,-0.018862208,-0.071993954,-0.06863242,0.053899057,0.003161613,-0.05257717,0.036552742,0.011142774,-0.03472875,-0.0005618164,-0.013800034,0.007499114,-0.052158654,-0.013066116,0.0042586485,0.028353233,0.005735348,-0.0071370564,0.03422249,-0.037554976,-0.045552194,0.003642798,-0.05736336,-0.0066196895,0.05923224,-0.030912159,-0.06351582,0.05682589,-0.011162285,-0.0073066796,0.04623485,-0.006248795,-0.00396795,-0.014258604,0.048189398,-0.08707812,0.03978371,0.013727577,0.03257253,0.014945216,-0.14747615,0.0672598} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:24.355746+00 2026-01-25 01:27:51.319987+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 416 google Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB 1 t 419 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio.\nNos atendió Hugo, muy profesional y servicial. una experiencia muy positiva, buen precio en el alquiler. el coche estaba super limpio. nos atendió hugo, muy profesional y servicial. 5 2025-10-27 01:27:48.341799+00 es v5.1 P1.01 {O1.01} V+ I2 CR-N {Hugo} {"A1.01": "Nos atendió Hugo, muy profesional y servicial.", "P1.01": "Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio."} {0.014383628,0.010115371,0.04179727,-0.039697148,-0.07418473,-0.027224015,0.06242033,0.06816639,-0.058316465,0.023393268,0.03232178,-0.035593018,-0.023273194,-0.047789987,-0.003059233,0.019467128,0.010654245,-0.044091843,0.043213777,0.041924175,0.09995082,-0.048545115,-0.054621033,0.0789457,-0.101702094,-0.028259145,0.006142253,-0.01554357,0.0072496496,-0.027729463,-0.008353865,0.038160518,0.0642122,-0.009460018,0.0053515066,0.014037477,0.06590255,-0.04301554,-0.03230787,0.07707645,-0.1133319,-0.014309256,-0.038707223,-0.054632064,-0.0064341226,-0.067856215,0.09443363,0.054393947,-0.020191161,-0.05288591,-0.081754565,-0.006701557,0.000840976,0.0052686925,-0.009299232,0.009437557,0.002204425,-0.037746273,0.014355644,0.026931953,0.005505256,0.041790318,-0.00928247,0.019359265,0.08361583,-0.013717218,0.009291933,0.040197205,-0.037647724,0.013303887,0.11555625,-0.13863625,0.08929669,0.0032479437,0.037273206,0.05286001,-0.011242462,0.0018251603,0.011111314,-0.053273577,0.0046695243,-0.05357919,-0.06558403,-0.014933956,-0.0122511415,-0.014959068,-0.012454965,-0.018396014,0.09421907,0.0080265505,-0.027433,0.07166047,-0.06660924,0.005358685,-0.013404387,0.02450612,0.024167752,-0.023466738,-0.045952793,0.053821817,0.03844704,0.036974818,0.12899774,0.088983566,-0.006461362,-0.051151253,0.043828074,-0.017169826,0.039707314,0.06224274,-0.03609231,-0.0289242,-0.009899741,-0.03325296,-0.05865009,-0.004902257,-0.059579916,-0.08285687,-0.050602518,-0.07072849,0.11691159,0.09027665,-0.08018399,-0.013607531,-0.0005474307,-0.03371998,0.029624688,7.396631e-33,-0.037045587,-0.026202146,0.042274553,0.026470251,-0.060617894,0.0060936296,-0.049446225,0.004090884,0.012058295,0.030559583,-0.011211951,0.114325635,0.061989747,0.035792124,-0.041476235,0.00751087,0.015921151,0.0057160947,0.10943057,0.054433465,-0.042481452,-0.010558672,-0.028357245,0.035706244,0.035721634,0.01991785,-0.01321234,-0.053285487,-0.0059029087,0.056965183,-0.0005129592,0.020063909,0.007951187,-0.078609765,-0.014839195,-0.09045334,0.016901448,0.07048933,0.008489085,-0.10242301,-0.022552967,0.03575544,-0.0066109635,0.03533244,0.050806515,-0.030350681,0.038016226,0.05388966,0.056998864,-0.00044674688,-0.02286724,-0.10124136,-0.05771168,0.03284219,0.015339135,0.008958278,-0.051467765,0.039751478,-0.053866714,-0.09019842,0.045801405,0.027612964,0.036955502,-0.034553364,-0.043548793,-0.02946202,0.022604443,0.023246441,0.15802884,-0.013457667,-0.08179668,0.009741577,-0.0025037327,0.050484553,-0.07788367,0.011688341,0.012765884,-0.015207592,0.0024617142,0.031398356,-0.024075588,0.0070400015,0.067801714,-0.027931452,0.07426146,0.122778036,0.0113797765,0.043459643,-0.021391323,0.07655522,-0.054106567,0.045375522,0.048368994,0.023112427,-0.009047458,-8.868066e-33,0.03391793,-0.017206617,-0.013951683,0.038268555,0.008269086,0.09109559,-0.06473091,-0.041608084,-0.05800326,-0.035758078,-0.051799458,-0.08669181,0.13294472,-0.022809006,-0.012122991,0.09246946,-0.01877241,-0.082312375,-0.0594765,0.012417533,0.01383164,0.020523237,0.053840626,0.030931903,-0.0597718,-0.05932244,-0.02415084,-0.0227366,-0.045641605,-0.012948575,0.06388038,0.03234829,-0.034982838,-0.0020059112,-0.009238212,0.06600674,-0.013752078,0.026007406,0.016210463,0.053179614,0.0010530482,0.02007232,0.05781497,-0.009460848,0.019639127,-0.0031902026,-0.047313645,-0.17912923,-0.024165686,-0.053457532,0.050649393,-0.058116905,-0.030049685,-0.06179446,0.020223532,-0.017951053,-0.062318217,-0.09884281,-0.11028845,-0.001474459,0.0980884,-0.030937528,-0.06950889,0.026537554,0.031620782,-0.013519474,-0.064091094,0.009912485,-0.020618366,0.022043578,0.10173401,-0.0033009637,-0.058533825,0.00841999,-0.039992247,0.051413197,-0.054870747,-0.05442282,0.005328976,0.020615723,-0.073264614,0.023310412,0.058344543,-0.012981997,-0.10403938,-0.02368702,-0.044689693,-0.028778076,0.04709163,0.040053904,-0.037999835,-0.08967455,-0.0365152,-0.16795248,-0.013343829,-4.0864528e-08,0.013969961,-0.048862178,0.062245525,0.024007441,0.008940642,-0.05640466,-0.090670824,-0.0039622406,0.06436019,0.09248805,-0.06259138,-0.056954645,-0.048599288,0.03760377,0.01111376,0.020468598,0.10617822,0.1183807,-0.039234787,-0.120448925,0.034529027,-0.023080217,-0.040618144,0.002099038,0.034213867,0.03332571,-0.058399126,-0.020159064,-0.07604286,0.03402306,-0.032994475,0.012924441,-0.020176932,-0.11543711,0.026288943,0.015567283,-0.00062583876,0.0077591017,-0.047671568,0.0073357713,0.07223177,0.08923815,-0.040168956,-0.03391589,0.00047583602,-0.040418036,-0.011712006,0.05993081,0.028830308,0.018275926,0.042027943,-0.0087084165,0.060774706,0.0076889745,-0.014684562,-0.033580232,0.029296724,0.03578224,-0.049863875,-0.01766142,0.022676015,0.046110615,-0.010069882,-0.03851744} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:54.807563+00 2026-01-25 01:27:51.323221+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1183 google Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB 1 t 1186 Soho Club unknown Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for hours without there being a dull moment. The bartenders are fast and the service is good. Great atmosphere in the club. Would recommend it to anyone looking for a good night out in Vilnius. spent saturday night here and it was a blast! hats off to the dj for blasting catchy pop music for hours without there being a dull moment. the bartenders are fast and the service is good. great atmosphere in the club. would recommend it to anyone looking for a good night out in vilnius. 5 2025-07-03 18:34:31.336452+00 en v5.1 E1.04 {P1.01,J1.01} V+ I3 CR-N {} {"E1.04": "Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for h"} {0.047912214,-0.047181953,-0.014734912,0.015512151,-0.09301895,0.07334104,0.03830707,-0.059053175,-0.057673514,-0.03871899,-0.045828704,0.054351553,-0.019520013,-0.01968164,0.06538432,0.0037412983,0.07670647,-0.061096337,0.015666306,-0.034346305,-0.089300364,-0.045462396,0.008809982,0.04187668,-0.04348016,-0.035074353,0.002594622,0.05272034,0.01765165,-0.038860407,-0.03718116,0.117822,-0.028947718,-0.0047470443,-0.04776244,-0.004212097,0.013957166,-0.092820436,0.018477323,0.08821075,0.04289646,0.059461925,-0.023447752,-0.0032773984,-0.036052402,-0.010753028,-0.074128225,-0.027066603,0.043290906,0.09896028,0.015506424,-0.033158854,0.10077541,-0.07227017,-0.011282888,0.011614209,-0.043201122,0.034694284,0.03606287,0.024095379,0.05264194,-0.0075163045,-0.055303976,-0.015047216,0.05268164,-0.062382482,-0.053045314,0.046626225,0.068382755,-0.07651631,-0.029409928,-0.009938887,-0.014726414,-0.029253934,-0.08502792,-0.02743775,-0.044267025,0.022582376,-0.008830777,0.054967,0.114656545,-0.0025274735,-0.039718743,0.018944519,-0.05342447,-0.07426398,-0.017542396,0.052133013,0.016781153,0.032783777,-0.047567386,0.084211685,-0.0859268,-0.072990894,0.014568975,0.04171265,-0.061481502,-0.019663718,0.019652039,0.047173053,0.046826735,0.1285456,-0.037889667,-0.09083876,-0.067087255,-0.02669205,-0.02440976,0.102661714,0.019947018,-0.0041377777,0.05042743,0.033996783,0.034053765,-0.039023835,0.014210847,0.08997549,0.115350775,0.056374103,-0.019938419,0.043664977,0.043501083,0.061648943,-0.007474542,0.022796612,0.004536403,0.01759226,-0.045658153,-7.3489675e-34,0.016921127,0.0046299757,-0.027198005,0.03503793,0.07434904,0.009968813,-0.08697351,-0.065586515,-0.06932858,-0.008843306,0.008400356,-0.051856395,-0.02103622,-0.07063642,0.046200976,0.04934869,0.050235067,-0.038131602,-0.09318089,-0.037707914,-0.019825358,0.020561205,-0.038721174,0.04645125,-0.02311532,0.077634156,0.07187174,-0.03780051,0.10797237,-0.020670503,-0.0040011955,-0.015026063,-0.086261064,0.06907631,0.050006792,0.044423215,-0.07243434,0.0038946588,-0.0409402,-0.058388088,0.021978293,-0.013590941,-0.06282617,0.047194257,-0.032694377,0.0024396612,-0.04303534,-0.048210375,0.07550535,-0.041047942,-0.088246725,0.088624194,-0.039198317,0.08886859,-0.027643023,0.0030041535,0.025876414,0.04760501,0.044300586,-0.039859414,0.036730666,-0.06291659,-0.015656667,-0.045639783,-0.017170794,-0.010903927,-0.026679473,-0.0685911,0.0958143,-0.054478563,0.07049041,-0.032425378,0.038938697,-0.0068413853,-0.00556754,0.021099389,-0.017518705,-0.03354132,0.081715,0.06744088,0.02446655,0.033738095,0.013428108,-0.019390276,-0.023844372,-0.08042536,0.08684231,-0.106124,-0.013746061,-0.011628149,-0.06791221,0.033248477,0.07479273,0.0038199169,0.036721345,-1.9727712e-33,0.08965293,-0.028049624,0.017362969,-0.06419723,-0.0026521897,0.008607278,-0.11938553,0.010562567,-0.0040737977,0.070145786,-0.085756116,-0.020270783,-0.021940377,0.053709384,0.03148245,0.009905764,0.09181638,0.032399394,0.0138968695,0.028851384,-0.059407853,0.079481445,0.05324642,0.020014694,-0.041494895,0.035778124,-0.0165607,0.013881597,-0.092738055,0.02868004,-0.022688491,-0.03843716,0.009060297,-0.06470555,0.041010488,0.10015074,0.1122893,0.0068345442,-0.08247872,-0.0009928085,0.0034175897,-0.032468606,0.001987184,0.0074626766,0.06170627,-0.04395117,-0.043216757,0.00033667215,-0.076069735,-0.060030222,0.062202152,0.0025022882,-0.10351073,0.015414242,-0.014883642,-0.06734585,0.033674248,-0.058448546,-0.037774935,-0.0129157305,-0.059644353,-0.012779595,-0.08113305,0.033759005,0.031364575,-0.03725933,0.06512238,-0.0072923233,-0.037097067,-0.022173086,-0.09118608,-0.021947064,-0.011831101,0.14780176,-0.008983941,-0.030006878,0.02808962,0.008089484,0.04012524,-0.024767645,0.00295024,-0.003827092,-0.05585417,-0.010297507,0.047669806,-0.033766437,0.09195301,-0.009611971,-0.023205109,0.025709745,0.0734423,0.043690283,-0.05118296,0.034511205,0.029943049,-3.1053297e-08,0.05110577,0.03382227,-0.072079435,0.082694404,-0.022414688,-0.14005968,0.016210623,0.006051495,-0.005820194,0.04402972,-0.062283482,-0.03799875,-0.005073087,0.025819452,0.028925892,0.01205361,-0.0019764989,0.036003806,-0.026413849,0.06638322,0.012263421,0.031378374,0.0440523,0.0031835064,-0.06577707,-0.0012184441,-0.02282718,-0.011205469,0.042189136,-0.07583058,-0.063125566,0.075829335,-0.005446488,-0.02008609,-0.037146833,-0.028259696,0.13050294,-0.08819376,-0.022470074,0.049565375,-0.08201799,-0.10986194,-0.040470477,-0.048465006,-0.04133414,0.015735371,0.06174671,-0.027705068,-0.026046764,0.05637237,-0.053784102,0.05741773,0.035895202,-0.018936137,0.021465855,-0.046433292,-0.04827873,0.031902876,0.0024752568,-0.01403054,0.041272793,0.0054143406,-0.077110074,-0.048091315} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:37:07.968442+00 2026-01-29 18:36:00.429379+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1184 google Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB 1 t 1187 Soho Club unknown Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing. The staff and customers are friendly always a good vibe and amazing atmosphere!! great guilty hits and uplifting mood for dancing. the staff and customers are friendly 5 2025-10-01 18:34:31.336452+00 en v5.1 E1.04 {E1.01} V+ I3 CR-N {} {"E1.04": "Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing.", "P1.01": "The staff and customers are friendly"} {-0.05338579,-0.040384553,0.008057713,-0.07088457,-0.064672574,0.042051654,0.07320093,-0.11670589,-0.005835872,-0.09095501,0.012172355,0.07849517,0.0025973166,-0.0420815,0.039872702,0.018669182,0.08860208,-0.02598085,0.030702932,-0.008588535,-0.07117311,-0.089523,0.006795677,0.07281854,-0.15143946,-0.01713757,0.0155887315,0.067702144,0.024484225,-0.03204635,-0.048080828,0.10081834,0.061225325,0.022541327,-0.04911542,0.03841649,-0.008646752,-0.083549984,-0.06934993,0.08417775,0.0010991365,0.006941849,0.02603593,0.020151023,-0.009907491,0.0008740601,0.044971872,-0.04369134,0.04040929,0.018361252,0.02330261,0.00916797,0.09140037,-0.006849787,-0.06229705,0.0011052495,0.009690541,-0.009395796,0.0011770843,-0.04202598,0.031618465,0.07023534,0.016501458,-0.008091445,0.03978118,-0.02730755,-0.07517152,0.06830126,0.07117193,-0.07118624,-0.05148529,-0.024156503,0.104481354,0.030103445,-0.084212415,0.026243377,-0.033691783,-0.07850363,-0.05764991,0.008729495,-0.0019300937,-0.123725735,-0.07023051,-0.042313494,-0.036352657,-0.07748755,0.019603677,-0.013939132,-0.02884973,0.0058619604,0.04998812,0.08606642,-0.07808861,-0.121338464,-0.025950938,0.043412242,-0.05828487,0.013817997,-0.01314497,0.013830469,0.013574807,0.10098819,0.013022982,-0.015271773,-0.055639513,-0.070504636,0.04231233,0.12201992,0.025628418,-0.047341682,-0.022147585,0.049528793,0.06093459,-0.012328036,0.05287774,0.075921364,-0.015312568,0.033509832,-0.05488696,-0.050911915,0.1189723,0.05523622,0.0096091945,0.037787586,-0.06521467,-0.014227626,-0.0297869,-1.92211e-33,-0.010906732,0.084746696,0.053136997,-0.032507904,0.07977126,0.018041084,-0.10745517,-0.049658075,-0.045441676,0.090160795,0.0036553517,-0.043712936,-0.004258412,-0.0059062014,-0.061370473,-0.014065342,-0.0720757,-0.04022415,-0.034344353,0.017551256,-0.047061354,0.017356252,-0.079946786,0.059363555,-0.07796118,0.02791025,0.036820233,0.069717534,0.08705262,-0.003662165,-0.0020825637,-0.039944105,-0.016144007,-0.018596783,0.001398025,0.03227096,-0.06811384,-0.04396232,0.04716513,0.054104187,0.04931355,0.00036177615,0.07506843,-0.00037305994,-0.034227874,0.009696521,-0.004643188,-0.0027095845,0.12688701,0.0074043395,-0.026447529,-0.04539912,0.023584425,0.04225048,0.02186224,-0.004196258,0.019881113,0.04835509,0.002328963,-0.044794515,0.086933866,0.0006085778,-0.030207613,-0.14588799,-0.041928068,0.0006812018,0.007675983,-0.05079891,0.0779508,-0.058331933,-0.04783683,0.06359,0.0440052,0.031234661,-0.028245393,0.01972911,-0.10676507,-0.05593568,0.0965253,0.048444405,0.004390059,0.019292463,-0.013644054,0.048407752,0.028612627,0.01961218,0.028913083,-0.08988573,-0.10783634,0.05110047,0.037608396,0.040570997,0.08794313,0.023742504,0.031902805,-3.5684103e-34,0.07056437,0.08863832,0.013860546,-0.002137133,0.0382947,-0.008977246,-0.086506985,-0.0003952471,-0.024056058,0.06920795,-0.0051894714,0.0510384,-0.055339668,-0.03167557,-0.027080927,-0.02456892,0.0633411,0.057607677,0.011057673,-0.07121673,-0.009475669,0.07319024,0.015238233,-0.043438725,-0.08819862,0.032870222,0.06480898,0.037848014,0.02255747,-0.026138106,-0.032330483,0.018304687,-0.03564147,-0.09317967,0.007874239,0.018876644,-0.008498427,-0.111102566,-0.064445056,0.014794992,-0.043918468,-0.043713436,0.0016512142,0.008948313,-0.022429716,-0.04361622,1.8722712e-05,0.06812844,-0.054483477,-0.05397708,-0.046583254,-0.004893206,-0.023504285,-0.052620098,0.0037927239,-0.025949363,0.032974914,0.016674126,0.009900934,-0.027808718,-0.10624132,0.0815426,0.0057744267,0.011531188,0.054975923,-0.044958614,0.036647048,-0.03611066,-0.11101187,0.024337733,-0.031899933,-0.011417667,-0.06033224,0.09003292,-0.050067168,-0.111508995,0.06739348,-0.046113342,0.011500007,-0.023472162,-0.03569619,-0.037338026,-0.02254494,-0.04813561,-0.0055715,0.07997629,-0.015710356,0.038108774,-0.046944313,0.04740405,0.039614752,0.013095741,-0.036164172,-0.032666348,0.01437354,-2.5722477e-08,0.0057302443,0.033982735,-0.0064042783,0.020879861,0.010838484,-0.069486745,0.011182469,-0.016590713,-0.056492705,-0.009043163,0.07660946,0.010898801,-0.042904373,0.070401356,0.07368476,-0.006808876,0.019788297,0.10650015,-0.04236616,0.006255163,0.07345877,0.02641047,-0.05201601,0.032285526,-0.010365813,-0.001972832,0.06736885,0.023971003,-0.037095193,-0.028649855,0.024495417,0.00047535048,0.0061009885,0.025524609,-0.05616794,-0.018240487,-0.038845044,-0.025954291,0.04358346,0.057076063,-0.061439577,-0.07566082,0.014979943,0.018596854,-0.04009461,-0.00048905454,0.061326552,0.08761154,-0.054674666,0.031113112,-0.051294655,-0.09053066,-0.009409769,0.022411194,0.03854569,0.02677724,-0.01910517,0.0754561,0.02010835,0.040538758,0.044026427,0.058433972,-0.070828035,-0.017868752} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:37:19.814211+00 2026-01-29 18:36:00.431249+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1298 google ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE 1 t 1301 Soho Club unknown самий сільський клуб у світі самий сільський клуб у світі 1 2023-01-30 18:34:31.336452+00 uk v5.1 E4.04 {} V- I2 CR-N {} {"E4.04": "самий сільський клуб у світі"} {0.02795418,0.08838635,-0.09039316,-0.008857274,-0.026538717,0.033226304,0.034742035,0.06770509,0.0055237827,-0.058602426,-0.022388075,0.01472336,0.009428084,0.05917596,-0.005039479,-0.037693113,-0.010683058,0.08183496,-0.17402989,-0.066805884,-0.024991967,-0.054829177,0.08223449,-0.0012932329,-0.0023197455,-0.0029466418,-0.025914544,-0.049386382,0.117410265,0.0014642572,0.022807125,-0.09435309,0.10764745,0.02546702,0.043817185,-0.031015463,-0.05148782,-0.07173688,0.061737776,-0.011316205,-0.08872159,-0.092915736,-0.08905233,0.07924147,-0.02753792,0.10127106,-0.021010092,-0.0032436163,0.03285992,0.046908125,-0.044136435,-0.07269169,0.018437998,0.07837122,0.047620844,-0.08733994,-0.0262258,0.048346084,-0.07375845,-0.06472812,0.012878794,-0.05038666,-0.014912217,-0.030810665,-0.06498188,0.011746451,0.037809953,0.045497634,0.016195923,0.05364738,0.05869215,-0.004974699,-0.06353176,0.030532328,-0.07059399,-0.11614803,-0.053277034,-0.0506341,0.00560431,0.025896337,0.06819441,0.024700906,-0.041752987,0.012205817,-0.027122177,-0.018957684,-0.00400549,-0.030619724,0.0033130113,0.053126525,0.0041112863,-0.043713566,0.063568026,-0.03991304,-0.026706008,-0.03502992,0.0258454,0.018496633,0.043632127,-0.019040568,-0.027203782,-0.0011730923,0.09523294,0.07349059,-0.06930513,-0.005702332,-0.07152447,-0.01649168,0.005902652,-0.068711884,0.030322013,-0.11298658,-0.023414569,-0.042301938,0.06153697,-0.024026684,0.07167911,0.012480952,-0.045321256,-0.022452658,0.034977917,-0.0145349335,0.029634189,0.0018762883,-0.07665534,-0.029583383,0.08834652,8.242293e-33,0.01531711,-0.05533996,-0.12858613,0.04372106,-0.079357766,0.028003903,0.025343616,0.0014664419,-0.043207847,0.019326743,-0.035646968,-0.04146818,-0.008940195,-0.035153423,0.052440625,0.056346424,0.01906172,0.04778372,0.026731128,0.111993104,0.049855616,-0.0042975023,0.01054289,0.023847045,0.017466228,-0.010102107,-0.019259272,-0.034364205,0.023816433,-0.01574859,0.076365896,-0.010384467,-0.11818494,-0.02958298,-0.038651295,-0.05771491,0.0024139376,0.06522449,0.019980337,0.051104717,0.058549173,-0.10667895,0.014730092,0.036436904,0.1288068,0.055453304,0.009469211,-0.00097287854,0.007030272,-0.034757234,-0.012440175,0.019753989,0.014621526,-0.004150504,0.07942499,0.08176501,0.024813795,0.042502936,-0.089435875,0.03396672,-0.033156227,-0.008359646,0.016438609,0.04404416,0.052895233,-0.06520832,-0.051172793,-0.027626282,-0.024589518,-0.008563491,-0.06995704,-0.058514405,-0.0012473228,0.07119914,-0.046550218,0.013999674,-0.0390287,-0.050730467,-0.09178475,-0.004434087,-0.14224847,0.011043851,0.01911361,0.026587095,-0.025959844,0.04181959,0.012931374,-0.084054515,-0.013783168,-0.014799286,-0.08268447,0.0049565053,0.01909911,-0.0012542412,-0.035745185,-9.106853e-33,0.07320912,-0.047523163,-0.102272026,0.024488376,-0.014974414,0.07444816,-0.03717289,0.03483876,-0.04158165,0.10610746,0.09860986,-0.11912469,-0.07104379,0.13443159,-0.013690746,0.060685426,0.04550054,0.08097957,-0.084740154,-0.03917006,-0.057555668,0.0019249277,-0.035588827,0.026689434,-0.028115189,0.031510886,0.04931506,-0.026563618,0.01344429,0.10105477,0.0024940576,0.018469544,-0.040480167,0.023293966,0.004301652,-0.014773414,0.019462297,-0.043033615,-0.038526963,-0.014960322,0.028055405,0.06743383,-0.0070305816,0.06782673,0.018760359,-0.009840937,-0.06696846,0.044044774,-0.018065212,-0.09660307,0.045867767,0.06318389,-0.02072632,-0.02002182,0.06712553,-0.05223754,-0.063758545,-0.009877586,0.025975076,-0.022068642,-0.024674132,-0.07150855,0.034339845,-0.0058205593,0.008727711,0.06457135,-0.002023871,0.05687911,0.04566211,0.04486496,0.03549073,-0.007942613,-0.0021554588,0.028431408,-0.054678682,0.002504366,-0.0423573,0.04544311,0.054251865,0.0029917017,-0.038357347,0.0028221828,-0.055522557,-0.062278107,0.044390958,-0.07937346,0.022394663,-0.010499282,0.02244714,-0.03157139,-0.018958211,0.044546716,-0.00050560496,0.034645125,0.025789091,-2.9264319e-08,0.058301125,0.0034034154,0.05428537,-0.01571818,0.020200979,-0.06945903,-0.02178849,0.049317554,-0.04662458,0.034562238,-0.11439612,0.015687162,-0.0032740005,0.07213275,-0.021199768,0.008051419,-0.018578142,0.045199145,0.06156647,-0.0012906563,0.07679334,-0.09407545,-0.009636315,-0.055800535,-0.024686337,5.7160585e-05,0.109986916,0.0075321705,0.018772703,-0.07638742,0.063180484,0.010094694,-0.024178129,-0.022159638,0.00024631477,-0.013260189,0.016363762,-0.017705565,-0.03758686,-0.018279318,-0.019044941,-0.04512652,0.027434982,0.03372229,0.034399092,-0.058626216,-0.0088446895,-0.033071432,0.03139912,-0.07185433,-0.049836658,0.056848872,0.012946953,0.040471487,-0.02855364,0.10790722,0.07807797,0.030641658,0.018035285,0.04923029,-0.00070586964,0.0548298,0.030978937,-0.12770213} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:08.636121+00 2026-01-29 18:36:00.709277+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 309 google Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB 1 t 312 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Attention : arnaque assumée\nIls ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. J’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. Leur réponse ? La partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». Évidemment faux : il s’agissait clairement d’une seule et même rayure.\nMauvaise foi totale.\nJ’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. Leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent.\nPratique malheureusement courante chez certains loueurs low-cost. À éviter absolument. attention : arnaque assumée ils ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. j’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. leur réponse ? la partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». évidemment faux : il s’agissait clairement d’une seule et même rayure. mauvaise foi totale. j’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent. pratique malheureusement courante chez certains loueurs low-cost. à éviter absolument. 1 2026-01-04 01:27:48.341085+00 fr v5.1 P1.03 {} V- I3 CR-N {} {"J1.02": "J’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients ", "P1.03": "Ils ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge"} {-0.013732892,0.07233428,-0.0359005,-0.047218435,0.06727531,-0.008110267,0.11014701,0.05930146,-0.013115953,0.05528093,0.054855384,-0.064638846,0.08312185,-0.0018111086,-0.077172846,-0.06591741,-0.0127488375,-0.025527492,-0.02134181,0.09538567,0.0074446574,-0.09363835,-0.04770428,-0.029412122,0.0018335938,-0.035311475,-0.009694503,-0.006022094,0.00785838,-0.07405222,0.02672736,0.03099404,-0.040532675,-0.036098238,0.06356662,0.008136221,-0.07556388,-0.084343195,-0.043862328,0.08086162,-0.027193798,-0.021960555,-0.16229391,-0.0737019,-0.038819022,-0.04495771,0.14798503,0.058694452,-0.059289403,-0.022256706,0.012399472,-0.026553065,-0.03262234,-0.05901518,0.0021357485,-0.078645915,-0.018903175,-0.08838832,0.03880207,-0.03016901,0.027630344,0.0065613934,-0.0611883,0.014465523,0.005552957,-0.029016359,0.023805486,-0.020655554,-0.012959253,-0.01802686,0.06329302,0.013870983,-0.042304333,-0.028830674,-0.029145956,0.026453065,0.031213194,0.024153316,-0.022500347,-0.15892586,0.07209755,-0.08947402,0.020105684,0.0032823735,0.002357076,-0.04212668,-0.03815889,-0.010699244,0.07545207,0.025098147,-0.030395607,0.096712746,-0.15684402,-0.05417995,0.113554075,-0.018670363,0.043634184,-0.02421299,0.028229801,0.06310377,0.08558711,0.010754987,-0.0012789444,0.00415499,-0.013356233,-0.06311051,0.01685143,-0.012785149,-0.030608894,0.056764163,-0.012091813,-0.050197266,-0.030014079,-0.075229496,-0.005115788,0.0076509505,0.012918155,-0.095111705,-0.028712854,-0.14439233,0.060176257,0.015987743,0.0040870206,-0.04402232,0.04733184,-0.040491946,0.030988669,1.309973e-32,-0.006819981,0.07126405,0.0024409408,-0.07334752,0.0829215,0.06197493,-0.014313966,0.06207352,0.016666647,-0.009225929,-0.045259885,0.07488413,-0.04110735,0.007928405,0.060531802,0.008624632,0.033269323,0.009814124,-0.04333126,-0.025276339,-0.11255046,-0.015428397,0.054973103,0.094252914,-0.021097258,0.007186612,0.06143206,-0.08344696,-0.07074131,0.03668107,0.04484321,0.091260344,0.046310715,0.032055642,-0.022607634,-0.0178242,-0.03193088,-0.002790382,-0.0153383715,-0.015028958,-0.004979981,0.05136991,0.09225688,-0.0014519716,-0.018768894,0.046866562,-0.037387416,0.057098642,-0.07181851,0.018956916,0.0026275374,-0.014054976,-0.0616851,-0.06708702,-0.01316427,0.050884254,-0.109569065,0.032545794,-0.0119571565,-0.09463619,0.016116802,0.008590141,0.008978361,0.0652527,-0.07682515,0.038880717,-0.031290706,0.02713802,0.06524069,-0.0009849801,-0.056978177,0.051053498,0.061881777,-0.061913602,0.07854639,0.04999334,-0.03883446,0.08100053,-0.01167721,0.020286435,-0.13871935,-0.058389325,0.028587682,-0.028611068,-0.0041349945,-0.010926463,0.052206077,0.05692085,-0.02089767,0.039704356,-0.01269572,0.0618587,-0.015266416,-0.017224459,-0.025409695,-1.4071734e-32,0.0076654227,0.0153863765,-0.01964346,0.056742985,0.012429107,-0.005611844,-0.052559923,-0.028539464,0.0058779474,-0.079473406,-0.068055995,0.051895928,-0.045963924,-0.04339141,-0.07362902,0.019510387,0.026626358,-0.06939109,-0.076287284,-0.025673902,0.03217947,0.036219988,0.037477765,0.029629363,-0.026836637,-0.03490588,0.025669735,-0.058283426,-0.047415,0.015276904,0.013549678,0.018506704,0.023891382,-0.0027348658,-0.030921714,0.049754687,0.1159744,0.039507993,-0.04024813,0.058358412,-0.010801717,0.025302278,-0.007918885,-0.04305948,-0.016299993,-0.06535306,-0.045852363,-0.10570322,-0.0028530993,-0.01417689,0.035619527,-0.023605963,0.003943558,0.09519117,-0.09857721,-0.007978119,-0.002755966,0.014919496,-0.011872562,0.048798203,0.08192806,0.047213227,-0.061459802,-0.050470352,0.012448467,-0.027544234,-0.01856635,-0.018814169,0.037759867,-0.00086644315,0.07330949,-0.054259475,-0.030108087,-0.00045257967,0.033774182,0.025008291,0.06977398,0.07424794,0.02097671,0.03419215,-0.09953933,0.012977908,-0.028149068,-0.0056174244,-0.020443637,-0.039337963,-0.01750484,-0.08944959,-0.040985804,-0.051395684,-0.012006079,0.049753975,0.029964147,-0.010325055,0.023511663,-7.127322e-08,-0.025295544,0.0031402633,0.0050362027,0.041082464,0.08891565,-0.12205582,-0.040152375,0.10872286,-0.037198428,-0.05377518,0.03738728,-0.027569156,0.044079844,-0.018757485,0.01329694,0.011259511,0.021053717,0.012387724,-0.085317105,-0.0439087,-0.047616467,0.0022030314,-0.06897802,-0.041843366,-0.046358526,0.0039989296,0.023317063,-0.14827801,0.04317114,0.0031630944,0.0006645577,0.0723252,0.079667814,-0.05470203,-0.031853467,0.034007937,0.03619247,-0.02318747,-0.013613236,0.011945976,0.018652445,-0.02281794,0.044337247,-0.04053754,0.010610465,-0.049144085,0.04347632,0.028036341,0.0049017738,0.04833598,0.009996535,0.01211258,0.078557216,0.019949578,0.00494098,-0.073696956,0.10372121,-0.008495777,0.006224299,0.0513324,0.10655093,0.0060299654,-0.05266522,0.015605847} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:07:26.061747+00 2026-01-25 01:27:50.910346+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 335 google Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB 1 t 338 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Gebucht über doyouspain mit einer vollen Versicherung. Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der Buchung der Versicherung, und diese auch noch alle Daten nach Aussage erhalten haben, einem nochmal eine Versicherung berechnen und dies dann anders verkaufen. Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären. Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen. gebucht über doyouspain mit einer vollen versicherung. personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der buchung der versicherung, und diese auch noch alle daten nach aussage erhalten haben, einem nochmal eine versicherung berechnen und dies dann anders verkaufen. leider nach 2 stunden wartezeit mit einem kleinkind keine geduld mehr gehabt dies zu klären. würde jedem empfehlen gleich für 20€ mehr bei der konkurrenz zu buchen. 1 2025-11-26 01:27:48.341207+00 de v5.1 A1.02 {} V- I2 CR-W {} {"A1.02": "Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit de", "J1.02": "Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären.", "P1.01": "Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen."} {0.009508017,0.1321673,0.045332078,0.011011254,-0.0014388013,0.05760884,-0.0171772,0.14650458,0.010725411,-0.018480487,0.009019155,-0.03618288,0.022826834,-0.030569913,-0.010781272,-0.017366793,-0.02576674,0.0715003,-0.02137135,0.008393095,-0.012711227,-0.038107745,-0.015823616,0.111022875,0.01580244,0.013226411,0.048048154,-0.046842527,0.0401478,0.023256151,0.09911137,-0.03344801,-0.07059195,-0.028128155,0.034846254,-0.015297924,0.014018007,-0.0122308945,-0.12949374,0.063181534,-0.08964947,-0.015931992,-0.06682258,0.006426964,0.028457435,0.050003745,0.07661348,0.05786444,-0.037006628,0.094845474,0.03900645,0.012056348,0.074475795,-0.092720084,0.00471458,-0.011052357,-0.056725662,0.09946289,0.078334816,0.030263897,-0.04782841,-0.07013241,0.029231304,-0.0063131186,-0.11319834,0.0048975986,0.021627307,-0.013721186,-0.029249886,-0.004953506,0.056038063,-0.0985524,-0.017795697,0.00562665,-0.09925801,-0.01627547,0.029768465,-0.009263415,0.00078469195,-0.040809672,-0.032909572,-0.07487041,-0.054243054,0.030807529,-0.052508187,-0.02676189,0.087227225,0.070762224,0.034219317,0.005706643,0.010996879,0.065654114,-0.06840833,0.034035593,-0.08073894,0.013783106,-0.058733415,-0.037270043,0.07622922,0.01485567,0.06547432,0.03169329,0.072913915,0.032083478,0.069981314,-0.054314163,0.0040459996,0.0005834322,-0.0077551375,0.024741843,0.031791992,-0.020689622,0.027751647,-0.018396672,0.12513174,0.006763437,0.03187629,-0.048059903,0.008783883,0.0032174313,0.049556,-0.07289655,0.03013974,-0.10527452,-0.042412143,-0.08210832,0.12884012,2.0066607e-32,-0.09284536,-0.045295782,-0.010638174,0.042488992,-0.073005006,0.0195291,-0.010270282,0.12663442,-0.030532544,-0.018830182,0.016717782,0.027564358,-0.0887302,0.04414342,0.051783063,-0.07111915,0.039554987,-0.02027074,0.06771525,0.0023322366,-0.014983231,-0.03524956,0.04234325,0.0224899,-0.03550921,-0.0048371307,0.05756944,-0.060946085,-0.0031152915,-0.007431024,0.08775697,-0.03887194,-0.040444728,-0.030011058,-0.04322762,-0.006713121,-0.045726955,0.064786926,-0.008993956,-0.019348914,-0.003261155,0.046369065,0.0029350643,-0.073641695,0.08641529,-0.002235166,0.09535094,0.0762702,0.033295937,-0.050162856,-0.02076477,0.011156204,-0.07751276,-0.016797047,0.013171142,-0.05988055,-0.11183211,-0.043429673,-0.036153045,-0.021984037,-0.04779544,0.021803066,0.0027726577,-0.005765835,-0.05519672,-0.0009151882,-0.006583688,-0.053561304,0.0077680717,-0.026947018,0.0043062563,0.030668387,0.044856228,-0.0039806515,0.055878554,0.016756035,0.06624682,0.08189203,-0.065340884,0.017564902,-0.06444537,-0.021956418,0.08075594,-0.013351171,0.057326887,0.011946933,0.028266478,0.025470123,0.039087255,0.049728557,-0.021654528,-0.0773117,-0.049205568,0.028767899,0.0029082466,-1.85163e-32,0.007828873,0.034405466,0.031482976,0.012174123,0.087841146,0.04405453,-0.041374415,0.093786106,-0.077546045,-0.0110016875,-0.09105401,-0.007529119,0.060863715,0.07858243,-0.081373096,0.057065837,-0.0117303375,-0.057609435,-0.0010574732,-0.102882266,-0.10301782,0.045051552,-0.01260557,-0.009918225,0.04021633,0.040793836,0.034350876,0.021059008,-0.05812159,0.028149595,0.024160074,-0.027887387,0.0085368855,-0.009030792,-0.027532162,-0.016208211,0.0031787518,0.0730829,0.011208295,0.011792758,-0.052830763,0.018966744,-0.028465774,-0.078302495,0.040631443,-0.07604707,-0.047503002,-0.13816483,-0.00119916,-0.081033535,0.03721477,-0.022779338,0.04378841,-0.07723942,-0.024264323,-0.0116781555,-0.046779614,-0.04169697,-0.006713969,-0.07630656,0.021543901,0.01687468,0.08063646,-0.025657285,-0.047471423,-0.057505626,-0.0062899287,-0.008427871,-0.05113691,-0.025924576,-0.035869755,-0.042992067,0.08722406,-0.014629973,-0.03279418,0.021941058,0.05062544,-0.0052315285,0.07647106,0.025713392,-0.068782866,0.041595478,0.01862641,-0.0892303,-0.117811106,-0.04690905,-0.00812593,0.0047552814,-0.054431267,0.01866722,-0.060877174,0.072773024,0.016555443,0.041547645,0.039472006,-6.46322e-08,0.03935439,-0.028076766,-0.049407,0.027309164,0.06267513,-0.09921487,-0.07429668,0.09407139,-0.016807273,0.09025879,-0.00055062026,-0.04922034,-0.04522853,0.029016063,-0.10061043,0.082650445,0.035510823,-0.04313453,-0.028896121,-0.034892287,0.07386765,0.031093782,-0.077857114,-0.07749974,0.0083981985,0.050765947,-0.011378312,0.01832535,-0.025795972,-0.0319096,0.014743168,0.052991875,-0.014173225,-0.04746898,-0.042747855,-0.055413745,-0.09508705,0.060239762,-0.024876885,0.045641657,0.066994734,-0.062348627,0.026629265,0.02782607,-0.027311476,-0.07310108,-0.039689466,0.0034747878,-0.030289304,0.033301402,-0.05069429,-0.03299767,0.032854494,-0.022290543,0.042724095,0.027906302,-0.004373423,-0.0010719537,-0.02960933,-0.0035658104,-0.07604182,-0.0253062,-9.5521835e-05,0.035492107} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:20:22.318565+00 2026-01-25 01:27:51.001555+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 435 google Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB 1 t 438 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado "peritaje".\nLa pieza entera cuesta 120 euros.\nDe vergüenza. estafadores. por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado "peritaje". la pieza entera cuesta 120 euros. de vergüenza. 1 2025-12-26 01:27:48.341915+00 es v5.1 P1.03 {} V- I3 CR-N {} {"P1.01": "La pieza entera cuesta 120 euros.", "P1.02": "De vergüenza.", "P1.03": "Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales"} {0.053173266,0.07463581,-0.06661479,-0.015900211,-0.0941325,0.0023173012,0.004163119,0.063744254,-0.015885185,0.02278677,-0.024611091,-0.040013205,-0.021037811,0.018127764,0.009904519,-0.010854454,0.028152095,-0.0045077433,0.044017524,0.060587425,0.043701094,-0.08204438,-0.052462187,0.057904776,-0.0137887895,0.012972561,0.022618903,-0.03529616,-0.037255447,-0.08926941,-0.061229747,0.043122247,0.01820238,-0.06365602,0.024874559,-0.100817636,0.02563619,-0.05192046,-0.090000324,0.037743036,-0.066120885,0.009981899,-0.07119651,-0.047118854,0.035214793,-0.037539933,0.016261853,0.10786655,0.050787594,-0.0037065865,-0.04728156,0.017997034,-0.07021612,-0.07326548,0.0050713858,-0.11088308,0.026549751,-0.02568399,0.04682151,0.023790715,-0.008743115,0.0037848735,-0.030609753,0.037270255,-0.0067346883,-0.09758973,-0.014930729,0.010033533,-0.07382388,0.07834932,0.05643637,-0.072179586,0.03533011,-0.024685357,-0.05367451,0.024980394,0.116476655,-0.0097384965,-0.020466188,-0.089149155,-0.02785002,-0.055720538,-0.095569685,0.00030767304,0.03812026,0.03974296,-0.011658965,0.043328155,0.06819052,-0.005704735,-0.011892117,0.051198352,-0.094952986,-0.0055658766,-0.04124495,-0.010414306,0.03678075,-0.0006629405,-0.0036459223,0.017489463,0.10068534,0.024203828,0.073000155,-0.024350008,-0.056831528,0.021075014,0.02136815,0.031041797,0.07553334,0.024853038,-0.10040666,-0.0026490183,-0.047933213,-0.02668981,-0.08114459,0.047479242,-0.005863602,-0.08300495,0.0172134,0.0011108047,0.04366261,-0.07938655,0.012865652,0.023029713,-0.032018084,-0.09476726,-0.022988373,1.0131401e-32,-0.05964064,0.05263429,-0.07511707,-0.021562243,-0.0364922,0.041552715,-0.040723316,0.004084854,-0.074174516,0.030817935,-0.09858887,0.107433304,-0.016409833,0.05752389,0.10358153,0.010711957,0.017717097,0.017172713,0.009049662,-0.033043582,-0.035073325,-0.0024323734,-0.02030365,0.03716502,-0.008367689,0.12920989,0.03877275,-0.07373009,-0.051445886,0.05711816,0.025096776,0.0016194194,0.0585036,-0.052307203,-0.035911884,0.0027400125,0.01267692,0.03269929,-0.038506433,0.012890598,0.008962684,0.03421871,-0.048005052,0.02769389,0.017440004,0.025377711,0.032847602,0.062435612,0.059060115,-0.025981106,-0.047139045,-0.049027417,-0.08528079,-0.04601756,-0.06058365,-0.037792116,-0.047600124,0.011310231,-0.019476224,-0.09596222,0.029238649,-0.041219115,0.028645838,0.025722798,-0.014249466,0.03141005,-0.021079391,0.024215272,0.106186666,0.006848953,-0.059731595,0.022100355,0.03220247,-0.009248716,0.032573674,-0.043004878,0.024473343,0.065166086,0.04594992,0.040420745,-0.070405796,-0.015102231,0.0020126672,-0.03180502,0.14608067,0.12887853,0.05114035,0.050470516,0.0007596049,0.1140965,0.038454995,0.049969144,-0.0036574034,-0.03267479,0.049215212,-1.0508238e-32,-0.017226616,0.028350903,0.029790701,0.01333475,0.020465158,-0.02440325,-0.050754845,0.0864823,0.004033853,-0.08836835,-0.08501796,-0.08825043,0.10620665,0.032141667,-0.050827075,0.0070432276,-0.0005564851,-0.09974434,-0.04610283,-0.044877075,-0.11385461,0.0031907386,0.0052659996,0.050523862,-0.026153192,-0.030841447,0.010798815,-0.016786927,-0.03547231,0.0023974956,0.0012536224,0.005740764,0.008701356,0.050620217,-0.02803113,0.030782953,0.057354204,0.08532292,0.016926287,0.093488045,-0.016018387,0.0761641,-0.031900484,-0.058152437,0.00513621,-0.011464164,-0.041520387,-0.08705662,-0.008560658,-0.059621572,0.16012745,-0.069845095,0.050789054,-0.006234819,-0.012922525,-0.0071667116,-0.026126083,-0.024831606,-0.0046984153,-0.03754048,0.042637378,0.031181965,-0.057268947,0.039644014,0.039764088,0.0973662,0.055084065,-0.017261498,0.02199549,-0.038880344,0.07551929,-0.063710794,-0.013168961,0.05800358,-0.036856942,0.037797973,-0.03504532,0.018609677,0.09376109,-0.020570736,-0.03164825,-0.00012961103,0.012103023,-0.02245651,-0.008524805,-0.06412454,-0.037044544,0.002761705,-0.036215287,0.035502233,-0.031005088,0.09187006,-0.004217293,-0.096093096,0.035314556,-4.4230287e-08,-0.025558963,-0.022485517,-0.04702951,0.12409362,0.061941333,0.02710177,-0.04202058,0.012838083,-0.0020656404,0.09702371,0.016626084,-0.0018711684,0.003404704,-0.030236633,-0.10306565,0.029128594,0.071544155,0.05240903,0.0050092638,-0.01397705,0.03971581,0.07542028,0.027519172,-0.037566293,-0.05913248,0.0028003273,-0.062962405,0.002928456,0.04806971,-0.06794992,-0.0806296,-0.0068884455,0.022306,-0.07687978,-0.027496666,0.010015997,-0.014030908,-0.000698387,0.012146992,-0.025570601,0.11723516,-0.08718063,-0.059694786,-0.085035555,-0.04616424,-0.05637676,-0.056515872,-0.059123483,-0.01274984,0.04127982,0.004245832,0.03599953,0.0648275,-0.06946051,-0.01757097,0.010795017,0.02045719,0.027947774,-0.06994789,0.02646677,0.08555664,-0.0123112,0.045849707,-0.037646838} 0.8333333 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:41.328558+00 2026-01-25 01:27:51.386149+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1186 google Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB 1 t 1189 Soho Club unknown Yeah the other review was correct, every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathroom I’ve ever seen in a public place. yeah the other review was correct, every surface of the bathrooms was indeed really really wet. nice and clean, just the wettest bathroom i’ve ever seen in a public place. 4 2025-10-01 18:34:31.336452+00 en v5.1 E1.01 {} V- I3 CR-N {} {"E1.01": "every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathro"} {0.027647998,-0.044705234,0.1040335,-0.013085992,-0.0099732075,-0.055314913,0.0032030107,-0.03023465,-0.04373442,0.024017578,-0.02893632,0.016476776,0.05247076,0.10369476,-0.055898886,-0.06879201,0.019367278,-0.0013596263,0.050983056,0.059720412,0.07696238,0.015816929,0.033796534,-0.05796752,0.04434296,0.037084833,0.07420851,0.019695036,0.034980047,-0.011169945,-0.03837429,0.06581799,0.053701036,-0.13729903,0.049830887,-0.014759131,0.060311086,-0.07542321,0.06821633,-0.019861406,-0.041980878,-0.04077531,0.05492911,0.028839473,0.06528077,0.01381918,-0.00055164675,-0.041931275,-0.02343187,-0.0023864259,0.037215978,0.024291256,0.10206512,-0.05782641,-0.09566068,-0.085945554,-0.036057267,-0.1231315,0.0110592535,-0.047385223,0.024087237,0.014300005,-0.0049237623,0.022852395,0.04413996,0.037910353,-0.10903942,0.027899811,0.036600657,-0.021994628,-0.048052043,0.099959955,0.028862733,-0.002452106,-0.049641438,-0.058555804,-0.071106866,0.05167913,-0.06394485,-0.006474582,0.077700965,-0.08919101,0.018611751,0.024124296,-0.021923456,-0.019510379,0.045085486,-0.09184025,0.019701349,-0.04153586,0.0066962396,0.026775884,-0.029025508,-0.015294986,0.0039897677,0.017846074,-0.025812214,-0.038629744,0.047164373,-0.010579653,-0.107742384,0.029919496,0.01496287,0.0129152015,0.06634705,-0.058932707,0.022193046,0.03443072,0.011852373,-0.0025813626,-0.041143503,-0.08826437,-0.03873869,0.052464407,-0.08290977,-0.01503899,-0.02864702,-0.01969122,0.0061838906,0.020131486,-0.027033845,0.02912119,-0.011293279,0.022933263,-0.036703568,-0.08489822,0.07939761,-3.9027753e-33,-0.013460318,0.0037675677,0.054193858,-0.025462994,0.031432867,0.024221532,0.030383842,-0.08928897,0.017573358,-0.0017516037,0.013942699,0.0019723058,-0.023021434,-0.022531144,-0.022556571,0.058186337,-0.025673764,-0.020122562,-0.047237717,0.07921669,0.061028745,0.090409234,-0.05279596,-0.026882911,-0.031574734,-0.035642426,-0.084338576,0.04682228,0.03924709,0.041114774,-0.050643153,-0.0275619,0.06143131,-0.0011877912,-0.029168626,0.040178787,0.03643314,-0.020340275,0.03640356,-0.02798961,-0.08421314,-0.068041876,0.0146984765,0.0024532585,-0.03836304,0.024138331,-0.07014535,-0.04745968,0.024429228,0.044746295,-0.011342897,0.10874205,-0.03787633,0.0625532,-0.01781472,-0.043345187,0.053429395,0.053315453,-0.0070184343,0.06925145,-0.0052932505,0.09546388,-0.028897423,-0.11137732,-0.09233225,-0.07032926,0.03890768,0.110075384,0.03259338,0.025624575,-0.0912483,0.06828553,0.0162674,0.025061717,-0.016787108,-0.025871871,-0.006355621,-0.043164667,0.02033751,-0.000114113995,0.051242203,0.048847787,-0.046242397,0.022533564,-0.028662596,0.08575588,0.07023808,0.04664063,-0.0635801,0.054032195,0.04699745,0.051302012,0.055885885,-0.06908237,0.037321694,-8.65742e-34,0.06160039,0.009398893,-0.0046988856,0.08669456,-0.010315348,0.040954288,-0.065638855,0.04202298,-0.052025657,0.05537479,0.06615869,0.027257513,-0.06397145,-0.046337504,0.010963512,0.079997875,0.0056343745,-0.08645739,0.034280118,-0.025647968,0.06454973,0.032143436,0.05496361,-0.021324033,-0.10748521,0.00924517,0.06803882,-0.03192114,-0.020712705,0.021417817,-0.07607297,0.09791268,-0.010769848,-0.011826962,0.031734645,-0.01897757,0.034342114,-0.025810547,-0.07189313,-0.013247296,0.031990383,-0.13588953,-0.019313296,0.007626998,0.024412967,0.07622715,0.02035254,-0.050186906,0.0100600105,-0.042602267,-0.03524227,-0.043247167,-0.0784392,-0.028335864,-0.031125126,-0.088792786,-0.042710792,-0.019125108,-0.01621318,0.11475051,-0.0035236727,0.04863645,-0.04748089,-0.011918243,-0.047756433,-0.0548856,-0.035373356,0.0021597822,0.021250559,0.00639478,-0.080562264,-0.09186585,-0.03167115,-0.009890743,0.1376432,-0.0073335944,-0.04324492,0.0021646337,-0.08177275,-0.023556741,0.011107432,0.059018023,-0.03504502,0.042159867,0.08747934,-0.04874834,-0.05284502,-0.09876109,-0.029668244,0.12891665,0.003206188,-0.013085708,-0.0069126855,-0.04085378,0.020550018,-3.40302e-08,0.008848539,0.0065104603,0.056527976,0.000408477,0.021854842,-0.028345237,0.009415907,0.061238337,0.008663738,0.01591971,-0.05829119,-0.048648365,-0.045983173,0.07432133,0.013726274,0.053591214,-0.0084177805,-0.03583227,-0.039315924,0.03326055,0.047353715,0.009729876,0.011465008,0.021892747,0.018542325,0.057736974,-0.06854429,-0.035814516,-0.08852068,-0.059861396,0.12909326,-0.08157651,-0.049618665,0.04366037,-0.005397527,0.024949688,0.06516539,-0.01864267,0.019694386,-0.06295661,-0.13242558,-0.12988518,-0.007753533,0.019268967,0.047994986,0.040694907,-0.014233194,0.004100045,-0.014959714,-0.0453873,-0.06967963,-0.008507148,-0.032978926,0.05815871,0.08489378,0.016518872,-0.031850997,-0.03759757,0.01563509,-0.005386668,0.046514627,0.04008034,-0.04293397,0.047054373} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:37:45.049285+00 2026-01-29 18:36:00.436553+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1188 google ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE 1 t 1191 Soho Club unknown This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks.\n\nTheir events are amazing and plentiful. 100% recommend to visit for a drag show or a live event.\n\nThe reason for two stars is the fact that the dance DJs they book are pretty poor.\nThat fact ruins the atmosphere.\n\nLast time I danced to a good DJ set there was in 2015 😞 this is the gay club in lithuania. pretty good crowd, interesting venue and good drinks. their events are amazing and plentiful. 100% recommend to visit for a drag show or a live event. the reason for two stars is the fact that the dance djs they book are pretty poor. that fact ruins the atmosphere. last time i danced to a good dj set there was in 2015 😞 2 2025-01-29 18:34:31.336452+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"E4.04": "The reason for two stars is the fact that the dance DJs they book are pretty poor. That fact ruins t", "O1.01": "This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks. Their event"} {0.04367544,-0.07862119,-0.03264739,0.061803043,-0.05339429,0.030712388,0.014598398,-0.12220911,0.043037646,-0.025663918,-0.03314207,0.017348083,0.008798158,-0.052653328,0.013754784,-0.04316441,0.0545439,-0.080699526,0.020832835,-0.028464748,-0.07920219,-0.103851505,0.017139731,0.052217625,-0.080821365,-0.056570124,0.03640971,0.063499734,0.033011843,-0.0023228575,0.024168462,0.11218336,-0.055008743,0.02695457,-0.06768606,0.013694203,-0.010679661,-0.15484947,-0.06470886,0.06340093,0.055937152,0.020703206,0.0322954,0.007101853,-0.01557425,0.017520545,-0.02651058,-0.021669626,-0.01118645,0.06606147,0.0003303063,-0.037689645,0.0720108,-0.11293694,0.02973737,-0.026031742,-0.032195646,0.018071061,-0.017076513,-0.020685688,0.15129815,0.026569763,-0.09404725,-0.047455758,-0.009470101,-0.060247656,-0.06190106,0.10945844,0.07505352,-0.05206124,0.01644146,-0.026032016,-0.035804864,0.0525645,-0.0215364,-0.027313672,-0.0767913,0.02341751,0.018921154,0.015477935,0.09105375,-0.096674286,-0.01940906,-0.0055572474,-0.048230376,-0.06587176,0.000804296,0.029814266,-0.011493419,0.044907454,-0.05171145,0.10012243,-0.06837452,-0.0724208,-0.007289444,0.029325988,-0.03712127,0.018615503,0.032311175,0.06049792,0.014760057,0.15911946,-0.004063134,0.00010352938,-0.078978635,-0.06108287,0.01686979,0.052822933,0.037153754,0.029085705,-0.034112908,0.01097837,0.0361636,-0.059216745,-0.026265657,0.08704468,0.08213773,0.06406193,0.009982501,0.027030542,0.008067128,0.06111597,0.058144577,0.042070184,-0.0016466775,0.025761982,-0.09755588,-9.803284e-34,0.043875102,-0.05037134,-0.003104921,0.023232508,-0.0035016106,0.038968258,-0.090201445,-0.110070296,-0.054634307,-0.011148427,0.015410308,-0.03764433,0.044300534,-0.06533384,0.014698187,-0.015449645,0.0484806,-0.05123905,-0.0796411,-0.029081706,-0.00028473366,0.079500094,-0.008171175,0.05346479,-0.06154609,0.058061868,0.04494664,0.009210631,0.111022174,0.018892907,0.03523273,-0.02800035,-0.09605871,-0.016614666,-0.015442643,0.017283157,-0.05570276,-0.033742364,0.01127541,0.0019836405,0.080221556,-0.07089672,-0.047683887,0.03467618,-0.042769473,0.08755585,-0.021066103,-0.06265496,0.099874504,-0.04741491,-0.07247863,0.03109394,-0.07746251,0.059762225,-0.03080981,-0.001643989,0.018363116,0.060828928,0.023897845,-0.043459762,0.024142869,0.026981998,-0.038618263,-0.013286041,-0.045109622,0.0033612289,0.035529535,-0.0339761,0.08042101,0.011324015,0.031875864,-0.0006317639,0.059016827,0.014973657,0.033785924,0.0036848513,-0.05439366,-0.012359204,0.036998503,0.098165445,-0.04823351,0.00981433,0.029485943,8.562963e-05,-0.0478563,-0.06532965,0.018200334,-0.06896338,-0.05001827,-0.010430348,-0.08437102,0.009902944,0.060482193,-0.041016765,0.0006200257,-2.0814499e-33,0.06784972,-0.0007687939,0.06462353,-0.025317678,0.057960615,-0.0073448583,-0.040648278,-0.0448598,0.057491455,0.10287975,-0.054772157,-0.03458581,0.053685,-0.010165947,0.08571639,0.0159565,0.08294334,0.0066292044,-0.008132006,0.012711535,-0.055493202,0.09994113,0.07354366,0.027246948,-0.05507796,0.014859055,-0.009123272,0.00048251962,-0.06526002,0.005913215,0.014797281,-0.02363506,0.007705048,-0.017450701,0.014808054,0.053059954,0.026586406,0.0094088195,-0.082962796,-0.01733153,0.009418608,-0.03254337,0.008373914,0.08123472,0.062316302,-0.053874124,-0.041594647,0.009172461,-0.041676365,-0.11369436,-0.048948143,-0.0019680038,-0.08219858,-0.00097332196,0.05010081,-0.010695685,-0.052348,0.007345893,0.001629505,0.04518461,-0.028728018,0.0011599071,-0.03699561,0.0499497,0.0141931,-0.02239603,-0.0027304885,0.010290954,-0.0665557,0.025395907,-0.05842833,-0.00095266814,-0.044149306,0.112002894,-0.02588643,-0.007986616,0.017233377,0.06847656,0.04235622,-0.021501582,0.0204344,0.020106774,-0.076326355,0.0041718218,0.088859536,0.020819426,0.023813026,0.01656098,0.015413156,0.01725845,0.03771892,0.018563407,-0.02031453,-0.032517467,0.041412897,-3.460045e-08,0.0407601,-0.016487315,-0.0329695,0.07717075,-0.044261333,-0.14480121,-0.033660054,0.06876251,-0.012287015,0.036964156,-0.077113606,-0.033939097,-0.007887244,-0.016247323,0.040611487,-0.045298673,-0.01246642,0.08229469,-0.03314109,0.07420056,0.024494074,0.014118726,0.043639276,-0.048034552,-0.0944653,-0.017539177,0.0123871295,-0.07132137,-0.012729729,-0.10723903,-0.00087254384,0.0337346,-0.0017421889,0.03931738,-0.020474283,-0.008780887,0.043249864,-0.030152945,0.03376088,0.08892618,-0.029321395,-0.101487525,0.042617686,0.008853293,-0.05870952,0.058598712,0.06286372,-0.019556742,-0.01290677,0.009606249,-0.09958759,0.07646734,-0.024237756,-0.0052325735,-0.034832124,-0.030338097,-0.09532981,0.07998676,0.0055012587,0.019638289,0.050997607,-0.014968423,-0.0724202,-0.067227654} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:38:23.218849+00 2026-01-29 18:36:00.440771+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1437 google ChZDSUhNMG9nS0VJQ0FnSUNneUplNFp3EAE 1 t 1440 Go Karts Mar Menor unknown Great Team there, very friendly. good prices.first 3 Winners get a medal 💪✌️we had an team. event with our football club. great team there, very friendly. good prices.first 3 winners get a medal 💪✌️we had an team. event with our football club. 5 2019-02-01 01:52:39.833374+00 en v5.1 V1.01 {V1.01} V+ I2 CR-N {} {"V1.01": "Great Team there, very friendly. good prices.first 3 Winners get a medal 💪✌️we had an team. event wi"} {-0.02863987,0.042218547,-0.023768883,0.03948313,-0.031851966,0.029901119,0.018025732,0.011035989,-0.0100042,0.00320609,-0.011105872,-0.083475485,0.06964128,0.009197455,-0.05831715,-0.04757884,0.0040923697,-0.18723659,0.0028637303,-0.06368,-0.03412234,-0.05945164,0.028116181,0.06778869,-0.054186486,0.03479613,0.0075038574,0.09930542,0.023900246,-0.023660699,-0.087080054,0.0024999033,0.010121782,0.02191155,0.05086685,0.087336555,0.060542792,-0.1081872,-0.038378753,0.06808266,-0.0040411204,-0.018763494,0.01975132,0.030433621,0.033777133,0.055116046,0.027930675,-0.00689931,0.015479742,0.042212404,0.04513467,0.07018283,0.042597387,-0.10906094,0.021800043,0.06390235,-0.034366693,-0.0520988,-0.05240407,-0.0474073,0.06498475,0.03163524,-0.10670144,0.011999954,-0.047881782,-0.06947773,-0.10762562,0.062355224,0.039918263,-0.105145685,0.07690213,-0.012588529,0.030569054,-0.020210868,-0.03844943,0.06077612,0.081870735,-0.027542798,0.012953923,0.026415873,0.008632448,-0.12585823,0.042783312,0.036900572,0.0042012315,-0.11342696,0.010116092,0.020341326,0.02306082,0.02434405,0.08894543,0.061493073,-0.05173851,0.026508288,0.041318696,0.041245393,0.0047768294,0.038484048,-0.03592702,0.06885782,0.029720932,0.13204566,-0.021320203,0.017438587,-0.037118506,0.023625897,-0.041789193,0.09905134,0.0007272376,0.02161988,0.023411758,0.046837375,-0.08024954,0.049103413,-0.09778776,0.100280404,-0.031508323,-0.0322754,-0.04119426,-0.07769181,0.04833947,0.061551776,-0.08028935,0.035035096,0.032504223,0.031886876,0.01583167,-3.6519186e-33,0.014934816,0.0188558,-0.03074051,0.0017875687,-0.112981364,0.045291558,-0.049178015,-0.004667903,-0.1705886,-0.03394569,0.021800306,0.00950548,0.028548913,-0.053832613,-0.0041363486,-0.038111143,-0.0683875,-0.06612347,0.008907543,0.033234548,-0.04987192,0.013536178,0.04076625,0.008238676,-0.0323918,0.036490858,-0.016367225,-0.01901554,0.06149496,0.04516048,0.011869901,-0.013520273,-0.05482545,-0.015109755,-0.060593095,0.027148338,-0.020561822,-0.08505822,-0.013843609,0.069206156,0.042332597,-0.009665446,-0.043992408,0.025217867,-0.008638417,0.04854189,-0.04711489,-0.048819363,0.08341633,-0.093879506,-0.045986976,-0.0052938526,-0.1038012,0.047026522,0.0374706,-0.014137186,-0.029174326,0.107819244,0.019193094,-0.029796595,-0.028827654,0.04436517,0.02993073,-0.072508164,-0.006586607,-0.04918005,0.056962967,0.010363218,0.043721892,-0.07455492,0.044740655,0.002618938,0.05749958,-0.035383876,0.0135575235,0.049983904,-0.032404818,0.041264635,0.09519946,0.06691266,-0.018881423,-0.011042706,-0.014868002,-0.020375099,0.056281745,0.045244705,-0.012152916,-0.08627708,-0.112373754,-0.025711829,-0.019071942,0.0685403,0.034028873,0.007246065,-0.0097396,1.05651825e-33,0.06914134,-0.0016001521,0.06849581,0.007314603,-0.009587959,-0.016135449,0.0037932803,0.07854253,-0.027824048,0.08043673,-0.0031324169,0.05270827,0.014619579,-0.01919975,-0.083161496,0.0019505668,0.08960953,0.030486152,-0.011810175,-0.054140154,-0.025099395,0.031305935,-0.006665218,-0.019924939,-0.061387427,0.048199236,-0.030273344,-0.033275563,-0.05027143,-0.050459657,0.023859859,-0.05860342,-0.032630976,-0.038239814,0.014220929,0.0775684,0.024172798,-0.048705645,0.01823543,-0.006333335,-0.051821306,-0.018842278,-0.044291195,0.09196449,0.07419814,-0.04789016,-0.02300287,-0.038581353,-0.010214693,0.017185947,0.048187636,0.02962139,-0.06800223,-0.032720145,-0.034320485,-0.018060349,-0.024414944,-0.0039020935,-0.02128751,-0.04702875,-0.044722814,0.049940854,-0.08162573,0.11086754,0.071252406,0.0047750184,-0.012967405,-0.022644108,-0.023728795,0.038378395,-0.10222362,-0.011534355,-0.004233237,0.06390573,0.038415562,-0.0061109047,0.024647607,-0.010584463,0.074460045,0.05340826,-0.04172474,0.0496899,0.030908035,0.026496837,0.015200202,0.009037443,0.08098965,0.044445027,0.032952297,0.09124332,0.01643631,0.029892486,0.014448857,-0.06577468,0.035263546,-2.2791502e-08,0.0142037505,0.04860751,-0.014756898,0.108164355,-0.07136155,-0.0737504,-0.023983624,0.021088995,0.012046527,0.06231394,-0.044695113,0.011272311,-0.10136581,-0.015757313,-0.04089366,0.022322664,-0.012724633,0.13072541,0.007902914,-0.043364123,-0.021324016,0.05139437,-0.039268102,0.045013048,-0.018256916,-0.048882205,-0.00017033736,-0.03161934,0.014415174,-0.098532856,-0.075318925,0.031043893,-0.032948744,0.031148596,0.030138453,-0.023645772,-0.045734946,-0.111088455,-0.021054395,-0.08103178,0.011854628,-0.08973928,-0.06983749,0.005149717,0.031887367,0.028282745,-0.027548492,-0.006502519,-0.066177055,-0.04585892,-0.03434421,0.04153656,-0.03367799,0.08335807,-0.012581848,0.011440477,-0.018822175,-0.02825225,0.03227732,0.03531673,0.029975496,-0.043386113,-0.096239746,0.022016965} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.04652+00 2026-01-30 02:01:09.357861+00 22c747a6-b913-4ae4-82bc-14b4195008b6 313 google Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB 1 t 316 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Vermieter in Las Palmas sagte uns als er den Aufkleber von clickrent erblickte ungefragt, dass ClickRent ein sehr guter Vermieter und sehr zuverlässig sei. Das war für uns angenehm zu hören und sehr beruhigend. Man hat ja schließlich 1000€ Kaution hinterlegt. Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und zahlte nur 19 € für 2 Tage. Klasse Laden ! ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. ein motorrad vermieter in las palmas sagte uns als er den aufkleber von clickrent erblickte ungefragt, dass clickrent ein sehr guter vermieter und sehr zuverlässig sei. das war für uns angenehm zu hören und sehr beruhigend. man hat ja schließlich 1000€ kaution hinterlegt. der preis für das fahrzeug war zudem extrem günstig. ich hatte ein sonderangebot wahrgenommen und zahlte nur 19 € für 2 tage. klasse laden ! 5 2025-10-27 01:27:48.341109+00 de v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Ver", "P1.01": "Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und za"} {-0.051823243,0.1809325,-0.04722601,0.00060800486,0.020881588,-0.0038106055,0.117614396,0.093327686,-0.10035275,-0.016957521,0.0046591335,-0.060084205,0.013503565,-0.03711923,-0.034494586,-0.0195971,-0.035326693,0.05454043,-0.053485878,0.024063334,0.019706657,-0.023311269,0.080396704,0.095111996,-0.047264315,-0.026805144,-0.06351189,0.04670142,0.0028147402,0.022913741,0.08252538,-0.022854561,-0.07284764,-0.018934684,0.04590645,-0.08770955,0.035790812,0.022935824,-0.014329858,0.03351755,-0.005028389,0.0060758824,-0.18824013,-0.048456803,-0.00904998,-0.0009976651,0.051976115,0.061999306,-0.08619255,0.0011296454,-0.049518142,-0.036454804,0.0265671,-0.07722867,-0.054609206,-0.08635705,-0.017368795,-0.022625146,0.084928684,-0.035273258,0.0142813325,-0.02093735,-0.032905746,0.018092712,-0.02033195,-0.03378663,0.00046649048,-0.020373274,0.040918235,0.05841265,0.1852067,-0.074696824,-0.0028329433,-0.01430935,-0.061245546,-0.013804436,-0.027417336,0.03612364,-0.022295652,-0.052923575,0.0481797,-0.11967008,0.010555736,0.0014453139,0.08556474,-0.003675335,-0.029163813,0.07808873,-0.010651637,0.03098384,0.02834307,0.08270204,-0.062788434,0.02010137,0.023888424,-0.009779848,0.004553323,-0.01790383,-0.00041954775,0.055785865,0.06443408,-0.058651876,0.0056194398,0.034017432,-0.028719025,0.023593323,-0.012043577,0.0060635195,-0.022957955,-0.04989739,-0.0014414942,-0.08563742,-0.046684165,-0.073026456,0.003529309,0.005641476,-0.0037781608,-0.013326607,-0.030933756,-0.050005093,0.02570947,-0.06160875,-0.03985009,-0.04490035,0.11169985,-0.05913119,0.010843676,1.8387136e-32,0.0066365926,0.0007134383,-0.049106903,-0.086947724,-0.05656008,0.033208136,-0.028516458,-0.006934481,-0.018795498,0.09838562,-0.07601846,0.012523212,-0.035875734,0.06462359,0.12347596,-0.06425013,0.0861149,-0.065079056,0.037897192,-0.0971936,-0.05520869,0.0024863922,-0.041441508,0.06312285,0.038247023,0.104084425,-0.051543172,-0.015071107,-0.009699452,0.077028945,0.11425851,-0.0028275948,0.009109078,0.013278157,-0.082590505,-0.031419486,-0.09561589,0.03917069,-0.0015828103,-0.0709834,0.035881173,0.030318227,0.038801193,-0.037995614,0.030424092,0.021406738,-0.058959186,-0.012137264,0.041734245,0.0009897433,-0.030319842,0.007731718,0.050607134,-0.0074468614,-0.0027614073,0.03585734,-0.035594594,0.060232967,-0.016945947,-0.0040443484,-0.031639934,0.0035052267,0.0695003,-0.035210997,0.04368023,-0.04594392,0.013296718,0.007617618,-0.09491534,0.034435403,-0.05235929,0.058543153,0.048809413,-0.014341708,0.09102397,0.013762578,-0.02302912,0.057884675,-0.07918331,0.059167225,-0.10209741,-0.026094085,0.06565622,-0.06414856,-0.03784658,-0.034513455,0.031454787,-0.044836067,0.03654629,0.15224451,0.024827523,-0.010639774,-0.054359194,0.018782834,-0.0045237723,-1.8481827e-32,0.02095427,0.13537058,0.028974712,0.028886521,-0.026705464,0.06734062,-0.0014030855,0.06707194,-0.13414975,-0.028300086,-0.018104816,0.055962496,0.004914929,0.045663714,0.04246241,0.05408195,-0.019012038,0.045210756,0.03568514,-0.09469267,0.04423144,0.0020441476,0.052628625,0.00728592,-0.014193241,-0.011069016,0.067433685,-0.008955643,0.00036435976,-0.0099998955,0.016899006,0.02860746,0.04343295,0.010855032,-0.06609402,-0.011230024,0.063097626,0.005187419,-0.018039398,0.008638676,-0.019198868,0.09019106,0.00043652242,-0.022600468,0.01379118,-0.09795685,-0.020177785,0.010641706,-0.0073747523,-0.15199827,0.02120305,0.057815865,0.022056548,-0.04282843,0.07835779,0.021098923,0.003653172,-0.08395092,-0.081888825,0.017535983,0.051059756,0.010932411,0.0030701924,-0.029650109,0.00842825,-0.03883403,-0.05501016,-0.019350661,0.030088631,0.013718613,0.07585382,0.009169117,-0.025045125,-0.03220861,-0.083737485,-0.008820846,-0.0130086085,0.11091897,0.016632639,-0.0072716684,-0.0118302405,0.008487112,-0.04227296,0.024236375,-0.07172064,-0.0718855,0.03337873,-0.020300616,-0.020561563,-0.037729237,-0.0020923761,0.020057634,0.082038425,0.05904044,-0.027236085,-6.4388274e-08,-0.015291439,-0.026337795,0.007827667,0.0028876448,0.033088434,0.0060367933,0.01084107,0.00063337357,-0.07060073,0.039596163,0.034114968,-0.023745598,-0.021453798,0.06669543,-0.113971904,-0.013749062,-0.0341859,-0.031047817,-0.04594767,-0.0022078045,0.06618603,-0.050436925,-0.090255424,0.026902553,0.0053480305,0.011979612,-0.05606571,-0.028155861,0.031336002,0.047499128,-0.05300435,0.020574503,0.020350704,-0.003154871,-0.008051003,-0.03489403,-0.09856601,0.006115012,-0.03650511,-0.010794511,0.06397145,-0.048122868,0.02051451,-0.008696402,0.02617923,-0.09901862,-0.03855197,-0.035890207,-0.029953202,0.044755295,-0.03410328,-0.003758916,-0.0043074843,0.016433097,-0.012550579,-0.03603303,0.013003282,-0.038051914,-0.018834496,0.021371664,0.04276721,-0.075724274,-0.08689487,0.027709689} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:27:43.229705+00 2026-01-25 01:27:50.925028+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 666 google ChZDSUhNMG9nS0VJQ0FnSUQ3cU0zWGRREAE 1 t 669 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen servicio muy buen servicio 5 2025-01-25 01:27:48.343117+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy buen servicio"} {-0.052584734,0.055074356,0.018582838,-0.03713237,-0.06086647,-0.016030014,0.12094537,-0.013789136,0.021198045,-0.038138904,0.038025893,0.0014602923,0.011916024,-0.02927309,-0.00320418,0.029264444,-0.05681892,0.08552766,-0.017444171,0.042598285,0.09430053,0.0081603015,-0.019613389,0.10067162,-0.059705563,0.0016559378,0.027394185,0.015407455,-0.037887592,-0.04325961,0.06483004,0.055322103,0.043181926,-0.034170765,0.0208413,-0.015496321,0.054791324,-0.06959309,0.013669102,0.06776651,-0.066160835,-0.0658172,-0.06806384,-0.063546136,0.01828488,-0.096746616,0.056204066,-0.0216957,0.07484825,-0.033942476,-0.13694587,-0.04810641,-0.034628335,0.03415557,0.031452954,-0.025760928,-0.07781553,0.0013562773,-0.017613553,-0.09290473,-0.039409008,0.003348036,-0.015590946,0.028674828,0.045379665,-0.014692001,-0.040324938,-0.009252758,-0.07552887,-0.008306416,0.09900331,-0.09249763,-0.008260526,0.044693746,-0.07049629,0.03605959,0.027911426,0.015100823,0.0017904644,-0.060551886,0.011030448,-0.0693123,-0.025045315,0.076317854,-0.008759053,-0.012128381,-0.006863905,0.04188183,0.053635728,-0.046210967,0.021159565,-0.054007128,-0.060121566,0.02565502,0.027365346,0.009141446,-0.03294367,-0.044666342,-0.040104493,0.108904846,0.002454868,0.013320682,0.1563869,0.029076338,-0.007920147,0.0032980456,0.07728489,-0.01684289,0.019886872,0.0032354381,-0.03620634,-0.07636922,-0.07741142,0.0354155,0.0035338898,0.0020007284,-0.015459655,-0.048084382,-0.059169013,-0.042572796,0.050567117,0.073376015,-0.08129356,-0.0010039436,-0.017091583,0.03178956,0.026449626,2.1933035e-33,-0.022772543,-0.116187565,0.06265213,0.052749623,-0.032260183,0.002367419,-0.07767216,-0.0017209159,-0.031737927,-0.04214345,-0.09279828,0.06390434,0.024605583,0.01672535,0.040716667,-0.01902704,0.03542307,0.009200936,0.07038634,0.024852894,-0.03073445,0.051146124,-0.005412387,0.032390594,-0.015984025,-0.041790225,-0.0010679835,-0.053237278,-0.019525787,0.07623079,0.088201135,-0.034009323,0.005606627,-0.045927923,-0.084362715,-0.07231971,-0.06867046,0.03339967,-0.007277245,-0.023017619,-0.018966284,0.01588938,-0.026795035,0.07054287,-0.009780642,-0.022088384,0.06648947,0.023215896,0.08543293,0.027990893,-0.02608884,-0.041492425,-0.0723424,0.026587494,0.010884098,0.018774912,0.027467487,0.09304588,-0.0134378495,-0.061862227,0.11057953,-0.04799881,0.09527452,-0.027906891,0.0183441,-0.03828152,-0.0039321315,0.09144771,0.048942894,0.006415549,-0.06484592,-0.022434339,-0.010672807,0.029970942,-0.028255234,-0.010458748,0.02154301,-0.033152543,-0.013398107,0.021774422,-0.032645527,-0.020493848,-0.0020815597,0.047364805,0.06640773,0.094044216,0.008956482,0.009887945,-0.023786852,0.08283906,-0.08011822,0.029930167,0.036221247,-0.019546945,-0.035735402,-1.5908476e-33,-0.0059637646,-0.017725207,0.04281094,0.08022602,-0.01431474,0.01583461,0.0035923321,0.03378694,-0.07504956,0.067770295,-0.006970031,-0.13252603,0.111643195,-0.030317634,-0.05390148,0.12159779,0.028947396,0.025050966,-0.07159295,-0.06307343,-0.029907165,0.09244107,0.06733554,-0.028902095,-0.065470934,0.02870174,0.01017073,0.004130028,-0.08348441,-0.027169699,0.00029356076,-0.046839405,-0.06540365,0.022012126,-0.0026813226,0.06520868,0.09169538,0.050722994,0.047751725,0.025019389,-0.028273713,0.001629484,-0.014982454,0.047194973,-0.026168484,-0.0136762215,-0.03867577,-0.08155826,0.041013096,-0.058164716,-0.02592051,0.0047205747,0.03146806,-0.026993217,0.0034886708,-0.026642825,-0.0990298,-0.035325795,-0.13880199,0.009032691,0.07133193,-0.00014674844,-0.05579686,0.035394475,0.075756565,0.01794806,-0.12885988,0.013669218,-0.0037611746,0.028132549,0.04174705,-0.08129379,-0.04112189,0.07623955,-0.05066812,0.0024039368,-0.034451082,-0.05780245,-0.03282498,-0.020682938,-0.018643446,-0.0811478,-0.06586782,0.012275953,-0.09625571,-0.032222025,0.041066665,-0.06851667,0.008415028,0.029375026,-0.00014156144,0.05843321,-0.014433572,-0.010709377,-0.013573601,-1.7187025e-08,0.010617959,-0.07362981,0.020680515,0.06481622,0.028442418,-0.048215434,-0.07750713,-0.0009508641,0.015525341,0.057902392,-0.057336517,-0.03228614,-0.014981192,0.049581323,0.0051308577,0.09437682,0.07043829,0.01914096,0.04034988,-0.064874515,0.09186274,-0.042918157,0.018691035,0.07272214,0.043872364,0.03796594,-0.055927414,0.07209957,0.025515804,0.008704531,0.045478024,0.026266327,-0.03452133,-0.041641418,-0.032047484,0.0065962956,-0.07427917,-0.013912986,-0.026351407,0.06693485,0.07048993,0.019857207,0.09402623,-0.010775317,0.065977275,0.02546256,0.027140383,0.07939903,0.009107114,-0.032134105,-0.03397181,-0.014007944,0.07717885,0.10871434,-0.014112185,0.047561422,0.07226076,0.025051504,0.061740823,0.050342884,0.008641418,0.07775811,-0.0073059807,-0.100999735} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:52:38.343732+00 2026-01-25 01:27:52.243985+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1190 google Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB 1 t 1193 Soho Club unknown The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? I loved this place. the one place you can dance at and not care about what anyone’s thinking because everyone is welcome?? i loved this place. 5 2025-11-30 18:34:31.336452+00 en v5.1 A3.01 {} V+ I3 CR-N {} {"A3.01": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome"} {0.08970801,-0.04905079,0.0010502067,-0.03991117,-0.020419575,-0.021827836,0.040387444,-0.11011581,0.039377224,-0.073889,-0.0036273932,0.018844167,0.06515521,-0.09350641,0.003384032,-0.032363772,0.069360085,-0.1369929,0.054793853,-0.027525691,-0.03547762,-0.03063447,0.017950999,0.09977781,-0.05205864,0.02649279,0.042133994,0.090473644,-0.027605552,-3.162675e-05,-0.0060178335,0.074788116,-0.027515564,0.014569604,0.018243706,0.0070808437,0.030378608,-0.07533346,-0.053879384,0.023268519,0.025247373,0.08365374,0.080972455,-0.012990918,0.046337742,-0.03550945,0.036447477,-0.10431557,0.03303065,-0.015833598,0.09695536,0.026391787,0.010187131,-0.004087883,0.057690248,0.011121645,-0.022294786,-0.013338283,0.014224841,-0.021723852,0.04623935,0.029105008,0.062033933,-0.009682215,0.0113941,-0.07260825,-0.07350517,0.06438328,0.008407491,-0.07844123,-0.062280856,-0.016165944,0.115620725,0.004815304,0.01522552,0.004734534,-0.072678864,-0.05506217,-0.050060876,0.036996767,0.04119966,-0.036410335,-0.011920994,-0.057161704,-0.045916595,-0.08033338,0.020648858,0.024123982,0.05354737,-0.05869287,-0.049726713,0.040304255,-0.09590032,-0.08296817,0.0070412857,-0.021746602,-0.04064939,-0.020362569,-0.0053103133,0.006910814,0.016394684,0.10460289,0.023287965,0.016245227,0.0010402689,-0.04008818,0.024736045,0.10858813,-0.045133326,0.018685529,-0.07196879,-0.009449557,0.07889222,0.0022486825,0.010815526,0.040244553,0.08804349,0.0224371,-0.012901292,0.059282184,0.022490839,0.046076123,0.06761849,0.064637765,-0.016656531,-0.04439907,-0.08880467,-2.9725818e-33,0.0013084935,-0.022190245,0.04804573,-0.078588754,0.11907654,0.0022257466,-0.08794699,-0.078248836,-0.020003712,0.05881677,0.15031405,-0.035339396,0.053632915,-0.021987652,0.023946853,0.034136858,-0.030047465,-0.012933004,-0.095139965,-0.007628342,-0.020498421,0.068063,-0.06544455,0.047513038,-0.11541026,0.041889302,0.005225744,0.040022504,-0.0062985965,-0.008252866,-0.03592521,0.012373971,-0.0008118168,0.006766083,0.01061042,-0.04259065,0.0044274726,-0.002519829,-0.0007060084,0.022304215,0.081952244,-0.003056667,0.036211986,0.07280116,0.031668488,0.06380358,0.027576359,0.011669747,0.03624552,-0.062136754,-0.045490023,0.0036612097,-0.022810517,0.028961018,0.029976226,-0.026412794,0.011484845,0.028307967,-0.0022297988,-0.04906357,0.0018396975,0.033674125,-0.01744624,-0.16352397,0.010841517,-0.0069452403,-0.020975536,-0.02869,0.05563744,-0.005988101,-0.024111284,-0.013767462,-0.028328937,0.032488547,0.013465373,-0.0070933313,-0.059382096,0.019444399,0.018819781,-0.063951805,-0.011374513,-0.0011465711,-0.08187634,0.07950016,0.0988144,-0.017064016,0.042091005,-0.09418975,-0.13344789,-0.037312694,-0.058295373,0.031419694,0.06243515,-0.03754524,-0.005784313,2.6125194e-34,0.051655248,-0.015602859,0.069851436,-0.009941249,-0.0080067,-0.073408335,-0.035167847,-0.033811357,0.046385482,0.111595005,-0.021100188,-0.056106042,0.09655052,0.016544268,-0.00078588125,-0.0034382392,0.076401666,0.03609463,-0.04298621,0.0503639,-0.023162128,0.08098693,-0.001417333,0.01043761,-0.060068823,0.061282154,-0.020862335,0.015927242,-0.020136021,-0.046743203,-0.047830176,0.019522764,0.00075973227,-0.0628483,0.029571483,0.07389359,-0.033498228,-0.024770534,-0.0760541,0.0035430056,0.0014932335,-0.09234802,-0.038502265,0.088378526,-0.009649995,0.0047993264,-0.07292371,0.04560029,-0.046780307,-0.08719416,-0.11221101,-0.007016229,-0.002198951,-0.032268815,0.08242281,0.06569616,0.036720265,0.067644335,-0.012898598,-0.060531992,-0.03744615,0.017978923,-0.058318455,0.045335997,0.07364409,0.031029247,-0.0019749259,0.039894562,-0.070164144,0.0030265476,-0.053862907,0.005263527,-0.0695926,0.027278736,-0.0373191,-0.0019530957,0.06692642,0.012041191,0.012217027,0.0072127213,0.0048402776,0.061998297,-0.12935908,-0.064031176,0.0789264,0.06746488,0.00039177635,-0.026415268,0.012122223,-0.020144064,0.07151943,0.040254366,-0.099471815,-0.12000693,-0.047644895,-2.480076e-08,-0.01220275,0.011659911,-0.050793115,0.052057363,0.0003488344,-0.040743373,0.015591684,0.020685405,-0.01975998,0.11176938,0.0213633,0.050076693,-0.015714599,-0.0039467015,0.0050636516,0.0071307733,0.02396433,0.012398812,-0.027701596,0.03673986,-0.014869127,0.050665036,-0.0472107,-0.06347888,-0.075114734,-0.054124054,0.044820175,0.0013760141,0.034092695,-0.03884868,0.0025262043,-0.04418506,-0.03172299,0.051572543,-0.03550263,-0.08581329,-0.021693485,-0.0152036,0.056108546,-0.022972971,-0.036844455,-0.045905463,0.010549778,-0.04437375,-0.05424409,0.026792908,0.09568201,0.029512672,-0.05570323,0.0043754624,-0.111721374,0.022934118,-0.025922647,0.031631052,0.056117956,0.026603702,-0.09321948,0.06476532,-0.013065505,0.04924842,0.046987236,0.07923912,-0.059368808,-0.010281117} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:38:45.620802+00 2026-01-29 18:36:00.445326+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1191 google Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB 1 t 1194 Soho Club unknown They only have the phone scan option for the drink menu. I left immediately. they only have the phone scan option for the drink menu. i left immediately. 1 2025-12-30 18:34:31.336452+00 en v5.1 A2.03 {} V- I2 CR-N {} {"A2.03": "They only have the phone scan option for the drink menu.", "J1.01": "I left immediately."} {0.022664925,0.0114993425,-0.011845758,-0.0075659864,0.052289795,0.023262816,0.013440926,-0.09816692,-0.0050067278,-0.08053839,0.015876444,0.02445141,-0.03426601,0.032234903,0.00773541,-0.183506,-0.04047056,-0.10311838,0.03665666,-0.031470243,-0.009619171,-0.019770818,0.06555813,-0.010232075,0.019568795,0.06519937,-0.034280516,-0.009694925,-0.021179304,-0.0041112844,0.03798385,0.07780428,0.116975166,-0.018228125,-0.05384639,-0.06965813,0.06834205,-0.00021407579,-0.00029889686,0.0033903008,0.0022657139,-0.0130980145,0.021532558,0.029103113,0.015417926,-0.014698224,-0.09559316,-0.0029326,0.089852445,0.060987446,-0.026167436,-0.0789786,0.0018600255,0.028516533,0.012483452,0.05003174,0.06264795,-0.036320128,0.038055524,0.12324649,-0.03681261,0.015784906,-0.09117163,0.094659165,-0.023936037,0.092620544,-0.050064906,0.003858106,0.04499131,-0.05216287,-0.014996702,-0.057875637,0.12275557,0.0045815534,-0.037344456,-0.0044317236,0.06883911,-0.030752407,-0.053469528,0.044576906,-0.11178677,-0.054478493,0.009738637,0.0780438,0.011366353,0.043250583,-0.0154172685,-0.027023852,-0.0033533704,-0.019269982,-0.0199464,-0.027906384,-0.10040328,-0.12747839,0.01967367,-0.015861545,-0.058292665,-0.027763402,0.015459878,0.002862844,-0.015262272,-0.0002786896,0.061820608,0.0048645013,0.014477788,-0.08559541,0.04381814,0.03345689,0.075658455,-0.021325124,-0.0056702234,0.04286129,0.15221381,-0.032427847,-0.034959156,0.0026109864,0.013336249,0.028950475,0.12452501,-0.03767319,-0.0537352,0.05750536,0.011638221,-0.087603025,-0.04887529,0.06677505,-0.01971671,-4.1430427e-33,0.0029197428,-0.015642354,0.016419724,0.029501995,0.046728525,-0.069313034,-0.016136395,0.0029204437,0.029163687,0.01950875,0.0220667,-0.0073088906,-0.032972924,-0.018770453,-0.003298077,0.005634084,-0.0087673,0.040754873,-0.08921763,-0.056189537,0.048849896,-0.07161001,0.053065933,0.055207748,0.09372801,0.14028503,0.02224461,0.025347259,0.09378259,0.027745912,-0.10776926,0.039328292,-0.02342771,0.016401377,-0.02282562,0.07320026,-0.028396152,0.025109906,0.02363326,-0.07061623,0.006586769,-0.018716134,0.01605444,0.03766877,-0.03815133,-0.0076296437,-0.05780992,0.03707999,0.07556099,0.03233572,0.0046457523,-0.0007129215,-0.036695447,-0.01794608,-0.08527438,-0.008062842,0.014499731,0.056775834,0.0016860631,-0.08613884,0.06818776,0.081794254,-0.0030396786,-0.017939795,0.006155817,-0.0014108585,-0.04435955,-0.07258171,0.05572112,-0.05200583,-0.052227445,-0.00035362353,0.048150055,-0.00043445165,-0.0028552276,0.02920793,-0.015734555,-0.027374022,0.013326841,0.0010708302,0.046059918,-0.09070302,0.05134407,0.0729013,0.11178521,-0.05457168,0.05515182,-0.09433554,0.018333096,-0.0054247524,-0.17471816,0.034061477,-0.009798787,0.024485353,-0.023547145,2.1749658e-33,0.05715457,-0.11701579,-0.036065795,-0.02575489,-0.025897315,-0.09990936,0.07062719,0.07165709,0.022701668,0.0058853086,0.027589794,0.08471571,-0.026385315,-0.053006995,0.034685437,0.087945506,0.046371233,0.012166118,-0.018883383,0.022273041,-0.050453864,-0.010676145,0.035587717,0.015905771,-0.053461295,-0.01980992,0.13987873,0.013254579,-0.025663655,-0.07652513,0.013670566,0.025880434,-0.054196324,0.07170967,0.014978086,0.029381923,-0.031349212,0.009085993,-0.056384426,0.054270726,0.04236594,-0.003204363,-0.025397256,0.08313106,0.05725053,-0.017804693,0.030490218,-0.087500915,-0.090732336,0.020640517,0.05116692,-0.06565323,0.0012329336,0.003352451,-0.054841347,0.018571548,0.08368309,-0.06643347,0.0014458272,-0.034089733,0.0041973926,0.025147518,-0.05006471,-0.049647506,0.03279231,-0.0021502976,0.009666502,0.09042518,0.02106251,-0.004380939,-0.028703766,-0.08657044,0.05039132,0.0050083743,-0.019242411,0.029853722,-0.09181316,0.008590932,-0.08821817,-0.09808319,0.06384915,0.011920738,0.012880533,0.04521341,0.048851576,0.021982068,0.07259303,-0.07829418,-0.021001637,0.020990051,0.052157536,0.0024383783,0.03075133,0.011903561,-0.008327627,-1.9601089e-08,0.027026849,-0.0032960775,0.0987377,0.028681245,0.063193955,-0.083620794,-0.061501943,0.032861352,-0.008859048,-0.0007440468,-0.0023946764,-0.03971241,0.014698698,-0.015392217,0.026354684,0.004170713,0.032495838,-0.016401896,-0.036900487,0.037998445,-0.07314999,0.014842859,0.057655606,0.057655003,-0.013986742,0.018586274,-0.017301146,-0.019125773,0.07092534,-0.017531201,-0.009145505,0.042060707,-0.039176192,0.00095817895,-0.046277694,-0.0019444112,-0.024233172,-0.03800115,0.021365764,-0.026156887,-0.02367985,-0.10536727,-0.08858766,-0.014935966,-0.06340352,0.029455647,0.004103467,0.0055740494,0.025550488,0.012094289,-0.004966759,-0.004031777,0.058389787,-0.026653808,-0.036117576,-0.046950556,0.042648666,-0.09629157,0.063869834,-0.024487149,0.08293693,0.047180075,-0.025141913,-0.010576977} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:38:56.230135+00 2026-01-29 18:36:00.446752+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1193 google ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB 1 t 1196 Soho Club unknown Greatest club in Litauen love it like it best place to go and have fun perfect DJ\nSUPER FIVE STAR LIKE THE SOHO IN LONDON YEAAAAAH greatest club in litauen love it like it best place to go and have fun perfect dj super five star like the soho in london yeaaaaah 5 2024-01-30 18:34:31.336452+00 en v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Greatest club in Litauen love it like it best place to go and have fun perfect DJ SUPER FIVE STAR LI"} {0.021459056,-0.077937916,-0.012154749,-0.045088347,-0.052079394,0.06514939,0.053073127,-0.04445879,-0.0022128874,0.017091187,-0.053493742,0.047281545,0.055000402,-0.0066657034,0.023463057,-0.03859409,0.06030022,-0.11557331,0.028926665,-0.06634957,0.042347495,-0.08083913,-0.017520398,0.028139358,-0.08179842,0.006489738,0.005814008,0.08004024,-0.019726478,-0.015142669,0.03477219,0.13508655,-0.121486165,0.013142925,-0.062222842,0.07391755,-0.03446186,-0.06902282,0.021868045,0.026535425,0.012311711,-0.044498645,-0.012864071,-0.016978314,0.026711218,-0.041334264,-0.029287614,-0.08234548,0.035533395,-0.0010091832,0.07942447,-0.055954028,0.07739777,-0.01994767,0.018807411,0.0013281329,-0.05799469,-0.0010457966,0.007483607,-0.08597389,0.012457846,0.04196778,-0.020152563,-0.05546253,0.025311302,-0.040364232,-0.05458232,0.08698553,0.043930706,-0.014914042,-0.028112806,-0.039066996,0.029452952,0.02647044,0.008417994,0.08565291,-0.016448852,-0.04578477,-0.038410038,0.025113607,0.059810255,0.0023142537,-0.010591937,0.04581362,-0.044478085,-0.10561093,0.017218595,-0.00016098114,-0.010068121,-0.048227616,0.0039550737,0.03565109,-0.16057093,0.009683035,-0.01874848,-0.022913778,-0.039825417,-0.02377866,-0.075650334,0.05550792,0.027331145,0.071810655,-0.051388454,-0.030364113,-0.027602583,-0.0785212,0.08588192,0.120717235,-0.0001184669,-0.04533336,0.028948696,0.022526117,-0.018001836,-0.0073333825,-0.012474751,0.034368873,0.066052794,0.07813783,-0.054197174,-0.095298745,-0.019223418,0.12514643,0.040291727,0.06731104,-0.08264775,0.008975166,-0.019342707,7.0458293e-35,-0.062863395,-0.026684413,0.022087038,0.00501127,0.08728628,-0.018894754,-0.07735521,0.021867925,-0.05962489,-0.01671512,0.03500405,-0.015284648,0.013049457,-0.096412055,0.0130754085,0.006673207,-0.00980954,-0.05475591,-0.14163594,-0.11081777,-0.07741386,0.0803478,0.037862536,0.033016678,-0.04583195,0.06539293,-0.009698141,-0.03613959,0.11008368,0.0541009,-0.019263694,-0.010727677,-0.043393183,0.01175231,0.004035254,0.06998096,-0.021710375,-0.0050925943,-0.039545927,-0.036267526,0.037414096,-0.024600312,-0.02106544,0.047300357,-0.03383515,0.15222807,-0.07997153,0.021697834,0.09027825,0.008497592,-0.03762933,0.0023617824,-0.10012005,0.029048556,0.018448474,-0.029670892,0.0030431335,0.04250594,0.114692345,-0.030084725,0.07950102,0.040605452,-0.020610252,-0.0042222897,-0.01564666,0.001595068,0.07783666,-0.024968356,0.011625585,-0.007857573,-0.017160673,0.02084157,0.026184365,-0.019898007,0.044992242,0.007805852,-0.035020497,-0.03720232,0.0017165672,0.08514657,-0.021848937,0.028762784,-0.002771887,-0.007646009,0.044200305,-0.040791515,0.0856,-0.0967967,-0.075384654,-0.02936293,-0.079961255,-0.04178656,0.059562985,-0.016260568,-0.003323264,-1.9477335e-33,0.09735032,-0.07332423,0.09742275,0.005626291,0.063363254,-0.003560615,-0.06845561,-0.038753446,-0.012107118,0.109419964,-0.011563998,-0.0051585217,-0.02427932,-0.0025449367,0.016598819,-0.042541213,0.039149165,0.010048206,-0.010745263,0.051804587,0.03709695,0.039807845,-0.010986217,0.034778904,-0.08331526,0.018673373,-0.0045840694,0.10088716,-0.070546016,0.018297184,-0.02164093,0.010777698,-0.04413951,-0.05640687,0.031144874,0.09788862,0.01351947,0.018561302,-0.07479537,0.026928509,-0.032467958,-0.051034044,-0.035778165,0.0867443,0.08049175,-0.08442755,-0.076098256,-0.03002081,-0.03597079,-0.018586893,0.018597769,-0.01228392,-0.030422132,-0.01984616,0.014287264,-0.022324366,0.007004047,0.054567732,-0.0712069,-0.030896679,-0.023590751,0.01122331,-0.050968394,0.07042025,0.06123955,-0.01977755,0.04916021,0.0125221135,-0.06711428,-0.0022452276,-0.07943532,0.006591562,-0.056064717,0.062368006,-0.026589544,-0.081038624,0.08763034,0.03268789,0.0074627795,-0.023328435,0.04296638,0.044870168,-0.049619216,-0.0065287943,0.06785511,0.056726877,0.10111627,0.03037727,-0.006448758,0.035489943,0.09502883,0.030649984,-0.07709369,-0.09276398,0.027500005,-2.616681e-08,-0.077996306,0.070468485,-0.02792517,0.030478412,0.035755295,-0.084473446,0.03649823,0.014668229,0.045816086,0.104049034,0.031279042,-0.037047606,-0.0034488426,0.0115600005,-0.04951931,0.010139573,-0.033894286,0.035308983,-0.0130976215,0.05229388,-0.04016425,-0.007863401,0.064208575,-0.047654305,0.019746736,-0.07021381,0.014224896,-0.074017935,0.0107512865,-0.08004558,0.032100365,0.023801882,0.019075062,0.052393533,-0.029116116,-0.011966841,0.002725329,-0.008327279,0.004278708,0.045178574,-0.04763326,-0.07931433,0.005874027,-0.023905538,-0.049819622,0.022120485,0.059077904,-0.00026379668,-0.017861055,0.033677176,-0.07351386,0.039867155,0.041279137,-0.020913456,-0.021710275,-0.05062227,-0.069285855,0.07216835,-0.028966913,0.0048266063,0.0603703,0.038947817,-0.042263255,-0.0012856763} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:39:08.778216+00 2026-01-29 18:36:00.453992+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1194 google ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE 1 t 1197 Soho Club unknown Door charge plus coat check was 6 euros quite fair. Not packed but great vibes love it. Friendly bartenders and ticket person. Music was good it was quite a mix so depends on your preference. But generally quite good. Quite young crowd. Mixed good for an Eastern European country. Definitely visit if you’re a foreigner. Drinks are cheap! door charge plus coat check was 6 euros quite fair. not packed but great vibes love it. friendly bartenders and ticket person. music was good it was quite a mix so depends on your preference. but generally quite good. quite young crowd. mixed good for an eastern european country. definitely visit if you’re a foreigner. drinks are cheap! 5 2024-01-30 18:34:31.336452+00 en v5.1 V1.02 {} V+ I2 CR-N {} {"P1.01": "Friendly bartenders and ticket person.", "V1.01": "Music was good it was quite a mix so depends on your preference. But generally quite good. Quite you", "V1.02": "Door charge plus coat check was 6 euros quite fair."} {0.026474725,0.048037034,-0.024931733,0.012061465,-0.012703425,0.0002611331,0.09379634,-0.03258074,-0.051200785,0.032439902,-0.018158529,-0.09479519,-0.020801933,0.013084233,-0.023166623,-0.1034952,0.10060892,-0.12362257,-0.0016018155,-0.03132855,-0.09462426,-0.096923366,0.021481074,0.024156189,-0.023526384,-0.029453434,0.023760572,0.01898918,0.018762032,-0.046989147,0.015707945,0.0891651,-0.023234215,-0.03653013,-0.02893891,0.017346982,0.1311321,-0.13418078,-0.05808506,0.09257137,0.017017476,0.04950707,-0.026761273,-0.0042403233,0.04356554,0.03272998,0.025487084,0.03768541,0.0036124939,0.075867005,0.0908877,0.0866352,0.012896366,-0.11119896,-0.037211657,-0.018515069,-0.025638524,-0.015153662,0.013797084,-0.018703101,-0.057057764,0.005861844,-0.057566,0.015308668,0.015851513,-0.037408736,-0.10894881,0.03280637,0.0361839,-0.027431743,-0.004041747,-0.034337025,0.05765757,-0.048087474,-0.013776882,-0.057389505,-0.058134302,-0.06052147,-0.08378387,-0.0018769256,-0.00062267634,-0.06744072,-0.1126729,0.011099923,0.010746536,-0.0996756,0.06990611,-0.018270807,-0.013972863,0.03352212,0.06963639,0.067622334,-0.037833344,-0.040863845,0.04144928,0.089991935,-0.0056483913,0.07928849,0.08386337,0.08201994,0.06174084,0.14631326,0.036962926,-0.022512974,-0.06617513,0.00692528,0.04337938,0.08080329,0.0058266367,-0.048700735,-0.02174236,0.020623218,0.039864812,-0.069361396,0.032355275,0.033019748,0.0679121,-0.06376663,0.053409543,-0.0227446,0.07179362,0.03654376,0.0050711664,0.03798459,-0.066353485,0.019873079,0.06315733,-2.5460608e-34,-0.051596384,0.0014903634,-0.03010876,0.0044336957,0.033673543,0.019654559,-0.042625945,-0.00055745215,-0.09569261,0.07634559,0.034314226,-0.024693538,-0.0053875824,-0.0008359056,0.030107832,0.015207173,-0.021271156,0.0035410095,-0.020895192,-0.023416484,-0.015794005,-0.024686057,0.02939497,0.041382853,0.0010470637,0.045728907,0.027849015,0.013346877,0.12909351,-0.012546867,-0.06106475,0.04642376,0.057759576,0.013354929,-0.06370381,0.08204674,-0.06575423,-0.063391805,-0.0010881202,-0.051854033,-0.013054365,0.009234842,-0.0053754733,-0.015108767,-0.039865226,0.06254498,-0.019462368,-0.06189554,-0.010104745,-0.053366717,-0.07127209,-0.06369507,-0.012770932,0.10860653,-0.07807995,0.029676553,0.021318223,0.08510462,0.004344065,-0.048105393,0.015435931,0.076040916,-0.00060787046,-0.065748215,0.0018243863,0.013338949,-0.038044006,-0.0025469423,0.026514273,-0.093943454,-0.0038983217,0.048030213,0.06567918,-0.0029851568,0.007639802,0.11585144,-0.0076783393,-0.02177395,0.05566601,0.10124661,-0.04981717,0.041027293,0.008776912,0.03193692,0.04462476,0.023234013,0.05758558,-0.060555466,-0.046132106,-0.0024298425,0.016249774,-0.0132668605,0.03428357,-0.062336564,0.022766912,-2.8074396e-33,0.090477794,0.060039368,0.03674984,0.010031208,-0.022797322,0.051817335,-0.08574802,0.03620298,0.06471082,0.0133129405,-0.07228156,0.01944617,0.085758135,-0.0075871227,-0.04014903,-0.0005581904,0.08336779,0.04938236,0.10974222,-0.0015171715,-0.030129895,0.031593714,0.0014279294,0.0009274498,-0.044332515,0.0040683616,-0.028681945,-0.05709824,-0.031188611,-0.028659672,-0.027907012,0.014688264,-0.00410171,-0.02355581,-0.021217246,0.0510426,0.102490276,0.035112977,-0.032687742,0.10457308,-0.06483823,-0.0060961493,0.006661079,0.012493709,0.09592199,-0.019120116,-0.09789683,-0.056121204,-0.03935494,-0.098423585,-0.006843036,0.027914029,-0.08876466,0.02394435,-0.0500492,-0.020140594,-0.029790629,-0.016989367,0.027838184,-0.04823632,-0.047983434,0.04555485,-0.06440493,0.006068843,-0.0137841655,-0.05370262,-0.054545175,-0.038840003,-0.021153044,-0.010403898,-0.04202352,-0.023437794,-0.0077674203,0.09261525,0.014821115,-0.0666287,0.0924516,0.008605029,0.06966587,0.04156597,0.027660687,-0.022283912,-0.028077722,-0.052222446,0.020085463,-0.03176328,0.022206614,-0.053507134,-0.003051106,0.06575925,-0.0068871365,0.0034510184,-0.011246825,-0.07356232,0.023423508,-3.239861e-08,-0.029910922,0.046193387,-0.012287573,0.09653244,-0.048848547,-0.12755711,-0.025819682,0.016360091,-0.06489211,0.0022264526,-0.05697134,-0.023772284,-0.051275946,-0.058558684,-0.06856677,0.06927435,-0.03196071,0.06325431,-0.018972106,0.052942242,0.081911094,0.08020539,-0.02068889,0.020634951,-0.057336282,-0.035774328,0.01800924,-0.01642693,-0.009869695,-0.09490688,-0.06906842,0.024415301,-0.017335037,-0.022110488,-0.0053394963,-0.023801021,-0.08454093,-0.031384125,-0.0017869949,0.0075542047,-0.023555016,-0.1272084,-0.08192427,-0.06218351,0.009571848,0.039010998,-0.040455524,-0.0020885237,-0.08562308,-0.011682307,0.016475793,0.03333519,0.021579318,0.0041252226,0.06482511,0.006287831,-0.012916435,0.049960088,0.06527213,0.012568724,0.0069777556,0.008999209,-0.08226043,-0.019688265} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:39:28.597014+00 2026-01-29 18:36:00.456453+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1439 google ChdDSUhNMG9nS0VJQ0FnSUNZa1p2MmxnRRAB 1 t 1442 Go Karts Mar Menor unknown Great range of karts including 2 seaters for children up to 5 to go with a parent. Really friendly staff, all in all a fabulous way to spend a few hours. great range of karts including 2 seaters for children up to 5 to go with a parent. really friendly staff, all in all a fabulous way to spend a few hours. 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"P1.01": "Great range of karts including 2 seaters for children up to 5 to go with a parent. Really friendly "} {0.045187417,0.01660343,0.037588324,0.111031055,-0.08874984,0.028013047,-0.051206857,-0.015127319,0.016089419,0.060025174,-0.0040365653,-0.007767172,-0.0030280042,0.050312277,0.04631152,-0.036775924,0.087927826,-0.10205651,0.04000107,-0.097739674,-0.028427266,-0.05201695,0.026093978,0.008926832,-0.075585686,-0.056141403,-0.016963692,0.06474693,0.0224838,-0.016668946,-0.0793775,0.028529791,0.0038417783,-0.009961248,-0.065137446,0.06638037,0.019907812,-0.025109144,-0.06506202,0.0344269,0.061313383,0.041750573,-0.014773525,-0.019377086,0.007933563,0.011963558,-0.08188234,-0.032396447,0.0234707,0.04722883,0.031325538,-0.081223145,0.049179047,-0.043409318,-5.8060534e-05,-0.06659344,-0.13925852,-0.021829149,0.076881304,0.0061715683,0.078860335,0.035790797,-0.100100935,-0.05193539,-0.10079258,-0.037473205,-0.09653908,0.07120201,-0.016767245,0.006279952,-0.0052822665,-0.0024945203,0.06971946,0.046610717,0.035028532,-0.016129902,-0.002559139,-0.045341,-0.036224913,-0.031703793,0.030171577,0.014279863,0.028063716,-0.05059013,-0.032372314,-0.07173662,0.075602695,0.010715966,-0.010081611,0.012198167,0.022890206,0.059384312,0.011316456,-0.0075201383,0.019475814,0.034448184,-0.017404413,0.034677774,0.034939304,-0.032680433,0.018785503,0.026061473,0.08274308,0.029863764,-0.073215686,0.015883252,-0.0577187,-0.0010696448,0.03673546,-0.015336448,-0.071834125,0.046122532,-0.026300618,-0.032000303,-0.06637992,-0.013186407,-0.014171359,0.041452236,-0.017953258,0.038064234,0.052267477,-0.015788,0.058744688,0.026179263,0.006176945,-0.031818684,-0.012059477,1.5396305e-34,-0.10297459,0.03965077,-0.0026022128,0.06261545,0.07379666,-0.11593656,-0.032542698,-0.15842709,-0.068080716,0.07575403,-0.009904022,0.041184872,0.011061034,-0.024977945,0.12048492,-0.003481978,-0.00968122,-0.02425045,-0.057990007,0.017059827,-0.025638493,-0.022574915,-0.010540678,0.056589507,0.047882482,0.005728479,0.11101552,0.012446632,0.04551408,0.008321904,-0.04600127,-0.038180374,-0.07431343,-0.003698872,-0.007496018,0.018764293,-0.003828692,-0.04622092,-0.05157614,0.030743454,0.014567832,-0.068549655,0.04541475,0.05541751,-0.03969439,0.027825624,-0.0008766154,0.010608361,-0.04411325,0.052692685,-0.10837101,0.009730232,-0.017521443,0.030524729,-0.0035776903,0.027611878,0.08304021,0.015646428,-0.04095249,-0.047881518,0.071228914,-0.064770974,0.03192879,-0.06691074,-0.045239285,-0.02613313,-3.33669e-05,-0.035680167,0.060042333,-0.024804773,-0.03845721,0.04596066,0.02541702,-0.06646704,0.024430804,0.019958112,-0.01854257,0.0019476871,0.0066632153,0.10284721,-0.024662707,0.03514483,0.023201648,0.031520236,0.04451286,-0.07837613,-0.08778161,-0.02931565,-0.032261927,0.030330712,-0.06449999,0.006531807,0.014639376,0.051512033,-0.010549469,-2.2870864e-33,0.08595446,0.06854428,0.06494952,0.058213975,0.024472244,-0.015789118,0.02299845,-0.0017493463,0.06351147,0.06010321,-0.09854636,0.03747434,0.06783987,0.014240225,-0.0035802198,-0.01616619,0.08232303,0.027398644,0.077203006,-0.119232826,0.014119959,-0.0030514179,-0.034864474,-0.05343094,0.06991559,0.07190271,-0.070921846,-0.008578198,-0.1436781,0.010102191,-0.043011103,-0.1136474,0.07817456,0.020035118,0.030761594,-0.01627571,0.013652679,0.08442002,-0.10042688,0.04570796,0.08887943,-0.044434033,0.0073937154,0.033005096,-0.01982755,0.025018364,0.08320981,0.0044221603,0.03624051,-0.06275414,0.049899634,0.027664525,-0.044018123,-0.042853054,0.013193005,-0.06104905,0.034852598,0.026651986,0.03398666,0.002566833,-0.025227249,-0.02917318,-0.025581902,0.097896166,0.010339079,-0.03165823,-0.03547464,-0.039231505,-0.0745713,-0.033494353,-0.09662359,0.023793174,-0.017949918,-0.015993858,-0.050212197,-0.020340152,0.048714902,0.013052941,0.05640777,0.060711052,0.02778662,-0.057811875,0.006174783,0.012676212,0.011945808,0.00653013,0.011336252,0.018838419,0.046702772,0.018901898,0.11800132,0.062456083,0.016401492,-0.048673443,-0.0023369028,-3.0714162e-08,0.019904688,0.060988404,-0.05991131,-0.01680901,-0.0054145837,-0.07022989,0.023639552,0.0295689,-0.05438314,0.12017365,-0.050455943,0.0076029017,0.033351216,-0.028869461,0.08027031,-0.009315808,-0.028290384,0.089177944,-0.017918684,0.046129428,0.04529661,0.045965638,-0.04558875,0.057011843,-0.07091691,-0.071968675,-0.01822503,-0.022259656,0.020870915,-0.012400722,0.0009490551,0.052590266,-0.069499336,0.052454963,-0.019555494,-0.05708987,-0.16607161,0.08749704,-0.013111292,0.063738935,-0.04635279,-0.06647086,-0.088699676,0.02958906,-0.032165017,0.100726694,-0.082818784,-0.0053052907,-0.07085373,-0.007815872,-0.07761693,-0.016948342,-0.009068695,-0.008678518,0.03048969,0.0012529074,0.02062307,-0.034538183,0.025995174,-0.027642438,-0.06351615,-0.061978742,-0.04794689,0.06539404} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.115601+00 2026-01-30 02:01:09.36685+00 22c747a6-b913-4ae4-82bc-14b4195008b6 321 google Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB 1 t 324 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante, pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. disfruten de sus vacaciones y no sean tontos.. un saludo y felices vacaciones . penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante, pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. disfruten de sus vacaciones y no sean tontos.. un saludo y felices vacaciones . 1 2025-12-26 01:27:48.341132+00 es v5.1 J1.02 {A1.03} V- I3 CR-W {} {"J1.02": "Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te "} {0.045629248,0.07229443,0.00015441253,-0.056437355,-0.06436186,-0.025354302,0.10692356,0.03461024,0.048943948,-0.0034942045,0.1330156,0.0037641607,0.016978769,0.0261892,0.04265016,0.010361591,0.021270065,0.011839983,-0.0037211177,0.11003447,0.07722006,-0.02198616,-0.07533024,0.061659306,-0.14500605,0.04047875,-0.03245182,-0.00022327744,-0.04687984,-0.07406087,-0.05432557,0.04803827,0.029234868,0.010315596,-0.007335874,-0.004826819,0.060663916,-0.05443755,-0.030943189,0.026959257,-0.08957688,-0.013508149,-0.03608247,0.018002491,-0.04745128,-0.022718051,0.08863585,0.02041992,0.056433555,-0.050369155,-0.014179866,0.0061531486,-0.03065939,0.03147216,-0.028062774,-0.053276367,-0.041907128,0.033763766,0.06300562,0.0076253256,0.013756927,0.04448339,-0.06461667,0.011895538,0.040650647,0.01576568,0.06522619,-0.027102364,-0.05789018,0.076398574,0.05301602,-0.0523281,0.009792028,0.033798393,-0.033824068,0.08753586,0.005943855,-0.026508862,0.010506891,-0.071673095,-0.004624461,-0.03482499,-0.039670765,-0.011387268,-0.00033429055,-0.027981123,-0.05240404,-0.02386625,0.09839999,-0.058262903,-0.021611564,0.08257559,-0.08726365,-0.029039906,-0.010516346,-0.0015344177,0.007492204,-0.0089668045,-0.051907387,0.056975234,0.1341215,0.04073568,0.028943993,0.03643948,0.00037870934,0.08595887,0.004970373,-0.057796866,-0.004145545,0.10399199,-0.07145302,0.037390746,0.020980615,-0.052901097,-0.10071961,0.005544006,-0.055942353,-0.033721108,-0.029054517,-0.045161493,0.0005762483,-0.024118608,-0.040164314,-0.015820524,0.004613933,-0.03722337,0.06598138,1.3969341e-32,-0.055517513,0.0020998553,0.03939933,0.0041658357,0.049273636,0.028230563,-0.018660013,0.0024706058,0.020058002,0.029230231,-0.094564155,0.0004635484,0.024933891,0.021968605,0.10193194,-0.059703868,0.0168682,-0.11182631,0.048993345,0.004191274,-0.040003303,0.0024205677,-0.006642655,-0.03839822,-0.03655236,0.017266974,-0.0103417495,-0.0068140365,-0.035155732,0.04438165,0.016410481,0.02003848,0.033835046,-0.009743347,-0.03905049,-0.03663376,0.025089243,0.02683349,-0.040213905,-0.12648444,-0.03391519,0.028482834,-0.02371185,0.04674136,-0.03456494,-0.00039943936,-0.00018351043,0.037131798,-0.0062890192,-0.010706713,-0.05354491,-0.04550008,-0.047172267,-0.0361105,0.0010510263,0.015258678,-0.0864879,0.016098427,-0.09167574,-0.019036243,-0.00973056,0.028847838,0.07418383,-0.028162638,-0.031685144,-0.025548164,-0.012254044,0.010189738,0.1622228,0.026842669,-0.07470147,0.023143478,-0.034953706,0.04289141,0.035157613,-0.013067225,0.03838686,-0.015527101,0.0034176202,0.001128683,-0.012659066,-0.04986827,0.06852513,0.05001102,0.06327718,-0.0015032005,0.027120637,0.008191043,-0.0681373,0.13606998,-0.050122626,0.12565131,0.03280229,-0.0025331422,0.022978667,-1.4296957e-32,-0.028025648,0.06226509,0.016690478,-0.023557713,-0.079226956,0.07139984,0.0076769637,-0.080050364,-0.08495582,-0.056769785,-0.10654634,-0.06992386,0.050644368,-0.04767507,-0.038634427,0.07049903,-0.04677596,-0.093475394,-0.05718667,-0.03723076,-0.019891791,0.08655772,-0.012888455,0.03575191,-0.016350694,-0.083071806,-0.025469564,0.045438025,-0.063788086,0.014991788,0.08749847,0.03423706,0.06557271,0.043136455,-0.0077331304,-0.0033209424,0.06952021,0.011231827,0.0012383148,0.050411075,-0.039469946,0.052021958,-0.003999439,-0.08408004,-0.038652986,0.03282179,0.035490375,-0.16398682,-0.08992252,-0.050401397,0.08823364,-0.064429395,-0.07162546,0.0049777273,0.055976354,-0.000412714,-0.0030362196,-0.097993635,-0.00911958,-0.019675782,0.05237017,-0.0055170734,-0.051311158,-0.10227544,0.08137105,0.003376435,-0.023844369,0.009776113,0.08680137,0.037012607,0.074029766,0.0048793945,-0.03401273,-0.052801963,-0.014451628,0.013650479,-0.021258386,-0.025114506,-0.07141715,-0.07720796,-0.044946074,0.0011082654,0.032146648,-0.029191336,-0.025033308,0.014071346,0.0039538364,0.028730746,-0.015068421,0.10019876,-0.018675968,0.015709864,-0.010697316,-0.03256659,-0.01941843,-5.9678214e-08,-0.03492711,-0.01823531,-0.035828173,-0.008534679,-0.026805138,0.0558079,-0.008367027,0.019542947,-0.0063649784,0.06490046,0.078595094,-0.028193045,-0.07936426,0.073299944,0.00268815,0.058417868,0.059145223,0.08798602,-0.048578687,-0.015538112,0.06138945,0.021435486,-0.08544857,0.07193982,0.09264424,-0.03089176,-0.029264012,0.010992943,0.02320357,0.036141485,-0.045577258,-0.030843034,-0.025974272,-0.11195846,-0.036985166,-8.68433e-05,-0.012467921,0.021936381,-0.0055553075,0.019945776,0.07649273,0.0017540974,-0.0916678,0.011375468,-0.021452395,-0.07455526,0.022547916,0.06283907,-0.030000117,0.044948425,0.00253352,0.0026969027,0.103055835,0.013574614,-0.018270139,-0.081368245,-0.013425368,0.050414007,-0.04997685,-0.0072475905,0.05473694,0.11096881,-0.06085485,-0.08875944} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:14:46.971093+00 2026-01-25 01:27:50.951784+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 322 google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB 1 t 325 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de Gran Canaria. En la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). Sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. Además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. Si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. Lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. Al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en Internet. Repito, ClickRent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. No reserves con ellos. doy una estrella porque no puedo dar menos. esta compañía me ha estafado. no reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. reservé un vehículo por 24h a través de doyouspain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de gran canaria. en la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. la persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en internet. repito, clickrent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. no reserves con ellos. 1 2025-12-26 01:27:48.34114+00 es v5.1 P1.03 {} V- I3 CR-N {} {"A1.02": "La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de l", "J1.02": "Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero po", "P1.02": "Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de ", "P1.03": "Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porq"} {0.016140891,0.03851642,-0.07587,-0.050687652,-0.021785596,-0.019206831,0.08474836,0.06087576,0.032155357,-0.009929404,0.0647729,-0.061398733,-0.03295604,0.009776401,0.03802207,-0.0070238546,0.005479583,0.0020020867,-0.0035009084,0.053588916,0.11845916,-0.059024643,-0.08400868,0.0715368,-0.031026922,-0.0033186078,-0.030797072,0.0010790031,-0.0516229,-0.07495874,-0.09107967,0.048675664,0.0286945,-0.011734101,0.009989025,-0.07866795,0.020929784,-0.040211968,-0.12988214,0.09839451,-0.12163692,-0.022574412,-0.06217954,-0.008688068,-0.047341634,-0.037499852,0.046807636,0.089761816,0.023254093,-0.039186217,0.01154856,0.021326726,-0.03742071,-0.041020405,-0.020501167,-0.019208668,-0.013733125,0.008271502,0.07564246,0.02260181,0.017887028,0.035230555,-0.024237433,-0.011464556,0.023455536,-0.060511038,0.032350753,0.0039055403,-0.07505417,0.056439564,0.05785541,-0.07280684,-0.04880233,0.025127495,-0.043098953,0.08073585,0.110038444,-0.00066815724,0.010948872,-0.020693237,-0.005476359,-0.026901657,-0.04318903,-0.064621985,0.0020056993,-0.05039208,-0.012546057,0.07185002,0.098388575,-0.07148459,0.005221064,0.06482097,-0.064474404,0.009780684,0.02145353,0.027967138,0.052347913,0.029036112,-0.03908478,-0.039561346,0.1623105,0.04352714,0.04278873,-0.013044667,-0.0015871593,-0.015926627,0.10586111,0.01590206,0.08552785,0.0022556563,-0.09925324,-0.010389036,-0.014972225,-0.07523459,-0.09624124,0.001994523,-0.046827473,-0.08414631,0.029070543,-0.043289583,-0.016190194,-0.047084842,0.0018254791,-0.014618517,0.04992288,-0.05975664,0.04754684,1.5399276e-32,-0.0066317506,0.027890155,-0.027139876,-0.0085682245,0.057855688,0.01700721,0.00040376137,0.0588539,-0.079087794,0.012570883,-0.059869356,0.03100341,-0.059091937,0.029152386,0.020631703,-0.015651558,0.07185284,-0.03186759,0.09645674,0.007044189,-0.038014863,0.0560277,0.032743327,-0.012876917,-0.023507394,0.040109012,-0.0042210263,-0.025697405,-0.009818771,0.05095702,0.029251419,-0.0019410794,0.015017033,-0.022272972,-0.014143976,-0.0583603,0.02579937,0.050445925,-0.060080305,-0.06650281,-0.05680067,0.053309973,0.004085947,0.024472494,-0.005397135,-0.009900883,0.05224568,0.071343735,0.045809448,0.03653445,-0.103937805,-0.017497921,-0.112261616,0.015685957,-0.04785825,-0.005097002,-0.074437805,0.023810498,-0.014593202,-0.06333391,-0.044388227,0.0129551245,0.011824604,0.017436422,-0.02520635,0.03645466,-0.0022311853,0.014566081,0.14011492,0.007676978,-0.013636743,-0.0431517,0.030893898,0.0494727,0.022089494,0.007388064,0.09525984,0.0048881704,-0.046910994,0.028639738,-0.0028676013,-0.043317422,0.03811778,0.07909236,0.01425283,0.053439166,0.08191345,0.070953764,-0.027112385,0.11312035,-0.07599038,0.09313553,0.038537953,-0.09839402,0.06253118,-1.3914263e-32,5.2454234e-05,0.018218087,0.009393647,-0.013990256,-0.020751474,0.030468827,0.032840945,-0.0139687,-0.00030710894,-0.08391756,-0.09530742,-0.065290086,0.027673611,-0.012309495,-0.09253196,0.025751393,-0.06183532,-0.11768131,-0.04350185,-0.037487373,-0.06476426,0.043634567,0.017480174,0.057559535,-0.033828393,-0.026055088,-0.04625341,0.04769494,-0.06325753,-0.03602178,0.07607599,-0.014485636,0.02507805,0.05199944,-0.07232405,-0.07605576,0.06344869,0.0981406,0.02523922,0.07688299,-0.038291555,-0.008066624,-0.00088631443,-0.10923057,0.023989053,-0.010166381,0.039772645,-0.19812903,-0.0008575067,-0.03752597,0.15214673,-0.07122478,-0.06470684,0.016263643,0.05456575,-0.029368917,0.036381077,-0.018664489,-0.07221158,-0.055909473,0.05119951,0.046265207,-0.063573904,-0.03093771,0.0668304,0.022481477,0.020061994,0.03241334,0.02583478,-0.028664103,-0.014403198,-0.022995654,-0.007418725,-0.022678047,-0.028270971,-0.005928658,-0.025958288,0.013217635,0.07418375,-0.010367685,-0.05382314,-0.027565725,0.03731115,-0.095681615,0.026394723,-0.016252521,-0.02797019,0.023979789,-0.018559542,0.06847479,-0.06068553,0.03882475,-0.054669287,0.02240882,-0.024567652,-6.341207e-08,0.0120903095,0.025276775,-0.0043938356,0.04643848,0.02760816,-0.042165097,0.040015526,0.032535966,0.037384678,0.052429024,0.04947312,-0.065572806,-0.050323308,0.029606877,-0.04847684,-0.006273455,0.04291494,0.017125508,-0.007936905,-0.05031382,0.046473198,0.039454967,-0.07288138,0.012927238,0.055756856,-0.013277158,-0.028569482,0.057314154,0.05884268,-0.0015065084,-0.054044735,-0.045198217,-0.026413413,-0.07584708,-0.007922841,-0.045456085,-0.040653024,0.024613194,-0.022729833,0.035562716,0.09464526,-0.051982865,-0.06612741,-0.043363508,0.0075438293,-0.058604676,-0.09195453,-0.01891444,0.01807575,0.08061449,0.02092215,-0.009828299,0.071683176,0.053036347,0.045372274,-0.056899905,-0.026648726,0.029027158,-0.033001453,0.040736467,0.05836193,0.008849105,-0.025114402,-0.05349176} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:14:39.09979+00 2026-01-25 01:27:50.956052+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 444 google ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE 1 t 447 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sehr positive Erfahrung! Die Mitarbeiter waren alle sehr freundlich und hilfreich. Die Station ist außerhalb des Flughafens, es kann zwar zu Wartezeiten kommen aber dafür ist der Wagen günstiger und man ist gut aufgehoben. sehr positive erfahrung! die mitarbeiter waren alle sehr freundlich und hilfreich. die station ist außerhalb des flughafens, es kann zwar zu wartezeiten kommen aber dafür ist der wagen günstiger und man ist gut aufgehoben. 5 2025-04-30 01:27:48.341974+00 de v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Die Mitarbeiter waren alle sehr freundlich und hilfreich.", "J1.02": "Die Station ist außerhalb des Flughafens, es kann zwar zu Wartezeiten kommen aber dafür ist der Wage"} {-0.045514464,0.09242623,-0.077527575,0.009629734,-0.013578466,0.038825665,0.07956543,0.06958864,-0.057021458,-0.018920055,-0.015613008,0.005595419,0.09753331,-0.03712685,-0.011078811,-0.09131121,-0.010371871,-0.018024424,0.011880604,-0.0039375755,-0.0972103,-0.063011415,0.023844196,0.04189573,0.00017472626,-0.062925965,-0.05055736,0.014603534,0.0070636217,-0.020757716,0.019104097,0.013925318,0.046251662,0.027414422,0.021749755,-0.027700627,0.09135874,-0.01637772,-0.03640556,0.09907036,-0.061630975,0.006874272,-0.05973876,-0.09095494,-0.03871048,-0.017210042,0.10746006,-0.062261,-0.04184868,0.04373144,0.009016996,0.082078055,0.038173404,0.03582027,0.004691169,-0.04954323,0.022032438,-0.01849755,-0.067283794,0.08453577,-0.006595249,-0.056467135,-0.022341663,-0.053059187,0.05578178,-0.031066876,-0.07910684,-0.002691734,-0.05843921,0.013177111,0.026730703,-0.065419234,0.03666416,-0.07595541,0.004286953,0.047656994,-0.03207286,0.009825021,0.06380407,-0.03856203,0.020494793,-0.08232345,0.008849357,0.06640745,-0.0020851053,-0.0150801325,0.028794765,0.033446446,0.026254676,-0.025208486,-0.050923094,0.07063786,-0.06800205,0.031375963,-0.048722543,0.0006616866,0.008526725,0.025406519,-0.059908804,0.10100578,0.02027582,-0.074766055,0.035010193,0.013417489,-0.09375877,-0.056747112,-0.08080477,-0.012989571,-0.0202495,-0.05447786,-0.0033523014,0.0023944043,-0.029194564,-0.004217054,0.021290328,0.078595944,-0.05795129,-0.08257194,-0.077888586,-0.03902609,0.04467204,-0.06331264,-0.052666374,0.06880073,0.0045795497,0.04731781,0.055568565,1.7090762e-32,-0.009005978,-0.0058810855,0.097702384,-0.043797605,0.0007727559,0.029685618,-0.08905325,-0.01782808,0.04641654,0.029709874,-0.019792214,0.07622122,-0.0023534023,0.019988704,-0.04075389,-0.12650114,-0.04255429,-0.04458666,0.006342566,-0.035528567,0.06424815,-0.09900522,-0.054276254,0.005510281,0.112940684,0.019851994,-0.022760617,-0.0069828406,-0.043777056,0.029253943,0.027966691,0.017249338,0.0028139686,-0.022931587,-0.062605545,-0.06034754,-0.06769865,0.07841406,-0.0289396,-0.090126485,0.06061008,0.018842826,-0.04359895,-0.035358775,0.10653518,0.0069627506,0.016518753,-0.026498828,0.105368875,0.01947782,-0.03478264,-0.0033145174,-0.049742654,-0.007978103,0.026167635,0.08731396,-0.08171115,0.019021416,0.024978094,0.009989511,-0.010079731,-0.031321142,-0.029502582,-0.09874666,0.065506145,0.047505163,0.083986826,-0.026415953,-0.01008646,0.11934359,-0.015601256,0.02476587,0.0595553,0.010266174,0.038494308,0.045460016,-0.08529569,0.10851336,-0.06707258,-0.010877009,0.0048615867,-0.06479608,0.007597626,-0.037899725,0.022352707,-0.008862587,-0.0027159206,-0.050921988,-0.0038141732,0.12691307,-0.0061801462,0.013197918,0.0908515,0.048159312,-0.03607609,-1.7793953e-32,-0.008026585,0.0027756714,-0.18026865,-0.042723797,-0.049410213,0.044607308,0.017127478,-0.0023604094,-0.044407763,0.123110406,-0.013564178,0.00029837876,0.021023616,0.021402784,-0.10216623,-0.03420378,0.10238028,0.058410976,0.016009938,-0.034279447,-0.03305115,-0.03096148,-0.00013910964,0.016297154,0.03694944,0.042834204,-0.003266609,0.0013575559,-0.06946156,0.011911056,-0.0551547,0.076205194,0.044814307,-0.00080835173,-0.014826733,-0.039598178,0.018034238,0.012990351,0.025571233,0.02030322,0.033613484,0.08849532,0.040680148,0.014766225,0.052063618,-0.019466214,-0.12003574,-0.037319906,-0.034208775,-0.026997617,-0.030142669,-0.0006417114,-0.016509619,-0.027463377,-0.030915331,0.05774067,-0.034716822,-0.10959909,-0.08540986,0.067422956,0.0302605,0.019693231,0.0031186708,0.052562125,0.03741008,-0.13068697,-0.048811935,-0.0141528,0.12573291,0.07376374,0.11046027,0.035919636,0.013365009,0.04121537,-0.0768441,-0.012704974,0.007523991,0.08211448,-0.074953765,0.051473692,-0.05894017,0.033106554,-0.03891673,-0.06580389,-0.08200778,0.009164242,0.033895448,0.049551055,0.033999547,-0.052714262,-0.019317655,-0.029539928,-0.018333098,-0.010804081,0.014033556,-6.2984824e-08,0.023094982,-0.014764381,-0.051126134,0.001391508,-0.05387916,-0.11049159,0.019694299,-0.021153523,-0.05524364,0.0422705,0.028055625,-0.0306452,-0.07434129,-0.006124189,-0.012194775,0.031562332,-0.0035183951,0.027284974,-0.02206852,-0.0055138036,0.11554608,-0.059535682,-0.02257409,0.02125513,-0.01351927,0.041364107,0.014282973,-0.09100056,-0.0027799397,0.0076465914,-0.04691637,0.055291686,-0.020214792,-0.046607666,-0.06773546,-0.0023179913,0.057199225,0.03051778,-0.031196434,0.016932586,0.014894465,0.05537745,0.002455166,-0.08435818,-0.003166213,-0.036570285,0.0175951,-0.038721472,0.061103642,0.00029264248,-0.009699645,0.034383826,0.06444214,-0.054696277,-0.045065533,0.056535807,-0.009463114,-0.04164971,-0.048249934,-0.03370735,0.025380477,-0.049234223,0.015714163,0.034169022} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:45:07.319523+00 2026-01-25 01:27:51.416+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1442 google ChZDSUhNMG9nS0VJQ0FnSUNwaHV5aVFBEAE 1 t 1445 Go Karts Mar Menor unknown Very nice place to enjoy a spare hour. For all ages. Good prices. Staff ok very nice place to enjoy a spare hour. for all ages. good prices. staff ok 4 2024-01-31 01:52:39.833374+00 en v5.1 V1.01 {E1.04,P1.01} V+ I2 CR-N {} {"V1.01": "Very nice place to enjoy a spare hour. For all ages. Good prices. Staff ok"} {0.03570025,0.050149836,0.03670297,0.059195913,-0.043301713,0.020162066,-0.0061060484,-0.06965905,-0.005533728,0.010812153,0.027246693,-0.005497556,0.01637167,-0.0006110197,0.0071396003,-0.060223408,0.101275384,-0.10968236,0.06777054,-0.11130732,-0.0941065,0.033458743,0.04054499,0.024033535,0.0074050566,0.025488667,-0.036456067,0.05133252,0.040964276,0.01092972,-0.04754558,0.048016872,0.04100404,-0.008549017,0.05112272,0.09554658,0.059774138,-0.05198134,0.008733019,0.04311271,-0.015110847,-0.016563842,-0.01138376,-0.04271012,-0.05579413,0.047135577,-0.017053276,-0.07427959,0.11016801,0.05386361,0.09044936,0.025004534,0.05713358,-0.024539337,-0.028961953,0.039556097,-0.07823295,-0.12756206,0.026824187,-0.03239945,0.016475078,0.023638984,-0.07496965,0.030908445,0.029806983,-0.09120658,-0.10298997,0.047553815,0.028287964,-0.12742847,-0.056158915,-0.041524842,0.07220868,0.0029108883,0.013729738,-0.037846424,0.059160538,-0.047242712,0.03172876,-0.04368892,0.002952062,-0.050790306,0.016928567,0.058073334,-0.04076966,-0.073245704,0.10009116,0.01871659,0.063156135,-0.029345969,0.043650456,0.13307162,-0.0888941,-0.032956373,0.058670133,0.011413079,-0.008175574,0.08818261,-0.09965345,0.012005702,0.0092126485,0.10900625,0.046415318,0.015872192,-0.07423229,0.010752536,0.003549406,0.07541164,-0.01965624,-0.047797535,-0.02168626,0.07104897,-0.039079912,-0.023285156,-0.0020479946,0.037805505,0.008065073,-0.08273689,-0.043525837,-0.02227876,0.012728726,0.061308,-0.03798379,0.03746892,-0.014088782,-0.026576519,0.0402672,-3.995178e-33,0.0032303936,0.056309734,-0.028447896,-0.038034756,0.09207809,0.0063464907,-0.029959718,0.0028558385,-0.044402946,0.065972425,0.049641132,-0.044512022,-0.03588828,-0.08641974,-0.006047198,-0.009369036,0.085324265,0.039444856,-0.04961175,0.0076407758,-0.09268616,-0.0011767568,-0.057530373,0.06573441,-0.034444783,-0.0376827,0.025997477,0.023655968,0.13908423,0.04730387,-0.035705738,-0.020285673,-0.06178468,-0.025108142,-0.03925269,0.0036820997,-0.03656467,-0.007472463,-0.022913503,0.016616546,-0.044791926,0.017352179,0.035958845,0.039158996,0.008707203,0.0433755,0.0464158,-0.0371109,0.022868918,0.045419578,-0.090411834,-0.00910333,-0.025802834,0.055700336,-0.03976555,-0.000732707,0.008370254,0.024850797,0.027068783,-0.010248531,0.047850154,0.07810724,-0.07791754,-0.068780735,-0.040606547,-0.036973186,0.023735791,0.012278797,0.09259126,0.030795563,0.013847225,0.026067685,0.08310085,0.031214511,-0.022244077,0.07287419,-0.07161253,-0.004038357,0.066630155,0.060151998,0.10358693,-0.013202144,0.014648585,-0.0009960294,0.09377226,-0.052366752,0.047067728,-0.13857886,-0.06260229,-0.0031648357,-0.056945823,-0.0027907544,0.037595928,0.0104200505,-0.014101982,1.8253772e-33,0.11589692,-0.050716434,-0.029597536,0.031966876,-0.026424915,0.01764687,-0.059138082,0.02098038,0.005082932,0.09576413,-0.13482247,0.045260523,-0.0028036053,0.0016243095,-0.023229001,-0.02185834,0.055439226,-0.018037746,-0.0328526,-0.043165714,0.0028335354,0.08942639,-0.012862435,-0.020809457,0.025822628,0.074500345,-0.114331335,0.006412351,-0.14302696,0.020343851,-0.08908097,-0.058204502,0.03279546,0.03907693,0.0072088265,0.00959829,-0.0085371,0.004706917,-0.019557403,0.049667366,0.042345647,-0.0686684,-0.014751609,0.022973849,0.027947512,-0.016751232,-0.032193057,-0.03486079,-0.031536642,-0.032219887,0.024660362,-0.00012652572,-0.035039343,-0.08678941,-0.0329099,-0.0234185,-0.0047033224,-0.006769596,-0.026801229,-0.041630056,-0.0069079013,-0.004523931,-0.021375244,0.10057644,0.045077804,-0.0118950475,-0.017720612,-0.056856353,-0.07487532,0.022532737,-0.030897442,-0.00031189417,-0.013384522,0.005417558,0.008699319,0.0023493217,0.13065584,-0.033619247,0.0032876332,0.04354779,0.0050296625,-0.034580138,-0.008872145,-0.03220424,-0.06623435,-0.01731108,0.06695719,-0.007957332,-0.04484388,0.034719005,0.018752888,0.037294615,-0.08090563,-0.00886276,0.0043905606,-2.1160297e-08,0.039784025,0.015076698,-0.01965436,0.007438778,-0.008778348,-0.1716021,0.07213506,0.042192087,0.036361706,0.12512942,0.05004981,-0.047904745,0.023577062,-0.01130424,0.0033804313,-0.00060060964,0.027169859,0.023226243,-0.059494432,0.024387822,0.09518202,0.093843125,-0.030124377,0.035560284,-0.039245345,0.01903772,0.028360555,-0.014739232,-0.026831029,-0.024130728,-0.00015949071,0.041289408,-0.026224293,0.004058453,0.013232114,-0.029476514,-0.062402193,-0.07542353,-0.075470135,-0.028373579,-0.06991655,-0.09858131,-0.083491236,-0.029759724,0.052692115,0.019411322,0.0021699092,0.06772514,-0.047859304,0.031966966,-0.069416724,0.015359382,0.045688666,-0.021232052,0.0014702937,-0.040840022,-0.025568211,-0.03255063,0.032511737,0.03702917,0.022820847,-0.00047808603,-0.091609515,0.044717293} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.148842+00 2026-01-30 02:01:09.376016+00 22c747a6-b913-4ae4-82bc-14b4195008b6 615 google ChZDSUhNMG9nS0VJQ0FnTUNvcGJqbklnEAE 1 t 618 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno RUBATO 150 euro esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno rubato 150 euro 1 2025-04-30 01:27:48.342899+00 it v5.1 J1.03 {} V- I3 CR-N {} {"J1.03": "Esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno RUBATO 15"} {-0.043640886,0.050316647,-0.014844203,-0.01373926,-0.06597977,-0.02469782,0.13582993,0.056268103,-0.007487445,-0.029471327,0.07532747,-0.033318277,-0.043101482,0.0005758974,-0.0077515375,-0.039524335,0.037116375,0.11873408,-0.021719012,0.102937534,0.04344282,-0.093856424,-0.04003318,0.12574881,-0.004580749,0.03732427,0.046021793,-0.009768724,-0.025983173,0.0022581366,-0.008576422,0.07214283,0.037918836,-0.052612275,0.06002082,-0.011982431,-0.012478373,-0.07450205,0.032455638,0.030999865,-0.057518397,-0.022167496,-0.054758575,-0.043869916,0.077011265,-0.065736674,-0.04019146,0.08792642,-0.009995626,-0.02429812,-0.0854161,-0.016372653,0.055023994,-0.008504418,-0.0039358353,-0.08489655,0.04710139,-0.0027477124,-0.018920215,0.039125662,-0.020424593,0.06775192,-0.078714,0.01875172,0.02295989,0.012535278,0.01205659,-0.04451429,-0.073959,0.11348265,0.1250429,-0.09895864,-0.021495162,0.030015305,-0.02190001,-0.027103195,0.03937235,0.014268475,-0.044310693,-0.021633608,0.06289737,-0.007070324,-0.05878238,-0.020897105,0.013216947,0.047536675,0.0008103061,0.025859525,0.053629085,0.06325132,-0.015696589,0.09251772,-0.08970956,-0.003659307,0.02827693,-0.016652945,0.019872915,-0.05114053,-0.0050147343,0.011855302,0.07584877,0.08964156,0.035154615,-0.01115909,-0.07978271,-0.0074602407,0.08636282,-0.07173088,-0.0340224,-0.0049378364,-0.10471539,-0.11039258,-0.027552366,-0.07049933,-0.06555837,0.026263671,0.02671727,-0.02041796,0.017574066,0.02181633,0.04839609,-0.0025577135,-0.055949524,0.044616513,0.019737469,-0.09026365,0.041135184,2.2095156e-33,-0.032453615,-0.031511422,-0.065665655,0.041229572,0.007302305,0.095748,-0.07155593,-0.027797773,-0.07189544,-0.020241193,-0.045943722,-0.007819879,0.0044752765,0.0040105605,0.020111075,0.07981772,0.04865473,-0.0109748505,0.07696983,-0.0053843604,0.008147809,-0.00968838,-0.029088965,-0.00883039,-0.058320977,0.0511885,-0.024861647,-0.06833297,-0.057099234,0.04693667,0.01722686,0.07180574,-0.037718307,0.0027737322,-0.033065125,0.009132238,-0.012683485,-0.020861078,-0.02294022,0.034707382,-0.02439929,0.07699901,-0.01149691,-0.024536932,0.0055966247,0.027623009,0.032048542,-0.017176121,0.04844119,-0.018861944,-0.012198462,-0.03174936,-0.06765318,0.006738833,-0.056240708,0.030405387,-0.06630605,0.05154224,-0.03828487,-0.085658826,0.06264014,0.014619331,-0.020093374,-0.024470903,0.012704929,0.042452093,0.016554248,0.006394062,0.095561266,0.021123927,-0.07094876,-0.058623485,-0.010721017,0.03674326,-0.040628564,0.00063907716,-0.011261188,0.042403024,-0.017397406,0.040674876,-0.08416936,-0.019149082,0.05655819,0.025998224,0.12233593,0.17469203,0.046053827,0.047669977,-0.016924854,0.047989488,0.060304724,0.00397798,0.04550853,-0.010115871,-0.00026379447,-3.7227304e-33,0.05029039,-0.029954553,-0.00965011,0.04852417,-0.092209324,-0.010192002,-0.14568488,0.0005731379,0.055760972,0.044358205,-0.020650066,-0.11842755,0.11751426,0.01971056,-0.033262987,0.09555947,0.015377588,-0.03864034,-0.06956685,-0.043608308,-0.058906563,0.046897683,0.036196996,0.054952916,-0.06251106,-0.07928298,0.061760325,-0.0065390454,-0.031451024,-0.036808465,0.015381523,-0.07150671,-0.034336872,-0.04807827,0.033625163,0.028198542,0.055794276,0.062097248,0.0015504506,0.032438714,-0.0979201,0.032815464,-0.050047696,-0.025320234,0.077400625,-0.029701632,-0.0364353,-0.0976401,-0.028913945,0.0011572718,0.10708011,-0.050245162,-0.0070187356,-0.01901635,-0.0059762327,-0.059011504,-0.021185173,-0.043023754,-0.038390502,-0.041626498,0.076759025,0.049071208,-0.07958218,0.04352736,-0.0034187336,0.012553696,-0.06740057,0.007637317,0.06119561,-0.018465891,0.023203218,-0.049575724,-0.060880575,0.065160446,-0.122626536,0.053220663,-0.026246987,0.079861775,0.101573914,0.0031550024,0.024823645,-0.046037253,-0.008166407,0.043980718,-0.003021102,-0.08438169,-0.021887073,0.0049345065,-0.010238836,0.0021061075,0.020926608,0.02168354,0.05282457,-0.012394914,-0.0005954073,-3.2364905e-08,0.009050464,-0.022002013,-0.052003566,0.055296063,0.041606348,-0.043499008,-0.043977037,0.03994894,0.018899497,0.0333678,-0.042034443,-0.0017891923,-0.01945543,0.055127084,-0.061431427,0.058921345,0.10888952,0.017114231,0.0036360053,-0.006546136,0.055346552,-0.02264997,-0.047427427,-0.043825712,-0.036234897,0.0016811513,0.027009027,0.03142357,-0.06089545,-0.038914803,-0.04856052,-0.049927387,0.012125442,-0.095965356,-0.018501595,0.12136065,-0.033686016,-0.01412909,0.03214513,0.005366264,0.05389495,-0.032007497,0.0061154314,-0.04976612,-0.028910477,-0.07353254,0.001248026,-0.09115007,-0.0038429014,0.011489108,-0.010942071,0.030171819,0.06887244,0.032024793,0.067395076,0.02804286,0.04771304,0.05889901,-0.009060002,-0.009796402,0.099838175,0.034712974,-0.052197065,-0.044669174} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:59.084062+00 2026-01-25 01:27:52.056472+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1195 google ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB 1 t 1198 Soho Club unknown If you want to see a different kind of entertainment night, you can choose this place. it has a small stage but we didn't like their music very much if you want to see a different kind of entertainment night, you can choose this place. it has a small stage but we didn't like their music very much 4 2023-01-30 18:34:31.336452+00 en v5.1 E4.01 {} V0 I1 CR-N {} {"E4.01": "If you want to see a different kind of entertainment night, you can choose this place. it has a smal", "E4.04": "but we didn't like their music very much"} {0.13698396,-0.059196193,-0.022883521,-0.031186098,-0.060647994,0.07346461,-0.02956636,-0.052038167,0.05837241,-0.023619037,-0.05156255,-0.019384542,0.0016772344,-0.06563544,0.035443302,-0.085826285,0.17042226,-0.1182641,0.07545725,-0.03314872,-0.008442957,-0.0033117891,-0.012181639,0.055780616,-0.02819776,0.021334082,-0.019931741,0.14255087,0.063868485,-0.064882085,0.009591472,0.090582915,-0.02979608,-0.05817795,-0.009764815,0.05029192,-0.0020114672,-0.056968268,-0.02933413,0.08424944,0.05771925,0.073537216,0.006179503,-0.041386735,-0.04764357,-0.07737368,-0.040377155,-0.115412295,0.04178862,0.07071884,0.107886545,0.015159548,0.050616868,-0.04698666,-0.028595697,0.016789574,-0.07880683,-0.021990895,0.08042666,0.0037939395,0.026975986,-0.0041086418,0.033947572,-0.004718553,0.012070084,-0.032678504,-0.04616607,0.06558431,0.044626232,-0.10264326,-0.029907089,-0.045948055,0.11866085,-0.035691377,-0.02797936,-0.009476118,-0.02178933,-0.068054505,-0.035294347,0.044675764,0.043552205,-0.042306323,0.0061612213,-0.08894348,-0.034139976,-0.0026626096,0.009393579,0.020530786,-0.06980628,-0.0007593415,-0.05962251,0.083033934,-0.09236846,-0.0020862774,0.01959952,0.005320702,-0.014701103,-0.0032175279,0.057501536,0.060961835,0.0340828,0.09581788,0.05450901,-0.003509943,-0.040582914,-0.11760776,0.037467692,0.08173564,0.00790535,-0.05567738,-0.031220373,0.078192934,0.06494938,0.00018852702,0.03755324,0.04659184,0.060725275,0.0426804,0.038002588,-0.050001867,0.10863488,0.012390396,0.056377333,0.06343955,0.015389895,-0.011339486,-0.09688001,-3.25519e-33,-0.008487354,-0.012392646,-0.04212799,-0.073826775,0.19251588,0.010728127,-0.07705926,0.02067156,-0.019198911,-0.00041420409,0.056580026,-0.052509848,0.021924691,-0.10803451,0.085514456,0.022788934,-0.0059462534,-0.00023771927,-0.08139666,-0.078584,-0.083608404,0.09197976,-0.0068245796,-0.005876722,-0.041286908,0.036162198,0.044546984,-0.014205046,-0.016020559,-0.004822755,-0.03613552,0.009129654,-0.008776325,0.0011166917,0.048307974,0.018647214,-0.03226624,-0.020870483,-0.016411379,-0.031219084,-0.013027223,0.009420592,-0.08964784,0.07167973,-0.009199083,0.09206552,0.037280995,1.2077717e-06,0.058376655,0.0059572808,0.0370962,-0.0059426045,-0.028966837,0.0018765636,0.084162116,0.06872677,-0.021016046,-0.045841146,0.074896775,-0.044809636,0.018206913,0.04458803,0.026612362,-0.04440093,-0.026338696,0.05152497,0.056292735,-0.039258573,0.049742855,-0.060425468,-0.0075083748,-0.059547417,0.08707865,-0.04119008,0.022412572,-0.029672217,-0.061760683,-0.03462284,0.073696695,0.046859514,0.033461597,-0.0054542567,0.01739531,-0.005320822,0.06606841,-0.070805974,0.06714813,-0.019393746,-0.05533183,-0.03423139,-0.08907051,0.0037800635,0.019862946,0.01755368,0.020418584,2.5357957e-33,0.117678136,-0.030707423,-0.018069247,-0.020894285,0.024734361,0.010108164,-0.02642924,-0.020098805,0.08068252,0.06674164,-0.05825819,-0.01856628,-0.008088167,-0.07537007,0.031990536,-0.06195382,0.055029135,0.013680243,0.008420047,0.049144786,-0.04478323,0.02658458,-0.06517888,-0.049080968,-0.023847919,0.041660786,-0.023189466,0.050707933,-0.10115454,-0.021245787,-0.0062435525,-0.041374154,-0.018397247,-0.065823205,0.0646139,0.09788002,-0.0014017022,-0.035465483,-0.08967267,-0.012404314,-0.074243896,-0.07247627,-0.029718418,0.085346095,0.010230362,0.08178312,-0.033138342,0.05769972,-0.005751413,-0.062604815,-0.0070337527,-0.035957143,-0.06839994,-0.035457477,-0.025781184,-0.008958816,0.0037807715,0.018990891,0.009343051,0.03537057,0.0063003,-0.037840042,-0.03406998,-0.007464489,0.004724175,0.037936304,-0.011637271,0.03225521,0.0065262867,0.067129225,-0.05150353,-0.010369877,-0.027650818,0.07456168,-0.032212112,0.0143206045,0.0502778,0.02428928,0.030020561,-0.0051070815,0.039527144,0.06662221,-0.10456314,-0.023529505,0.024365274,0.10675718,0.052929025,0.00068011286,-0.07011533,0.061602227,0.10119147,0.0011957961,-0.05299866,-0.07500186,0.029610645,-2.9579374e-08,-0.020685356,-0.015218293,-0.007978549,-0.016585354,-0.052432284,-0.05895642,0.044827066,-0.01855265,0.037444845,0.08406694,0.0039376337,-0.04534937,0.032691296,-0.0039606183,-0.048745353,0.013681855,-0.018093491,-0.028665135,-0.013602049,0.061355446,-0.012430317,0.033807784,0.02425468,-0.067578584,0.03133081,-0.00044895412,0.021894714,0.005370686,0.022087373,-0.051192332,0.0087328935,0.023310414,-0.056586336,0.023600083,0.023729855,-0.11250402,-0.06329405,-0.040362976,0.028300665,0.027173523,-0.009961921,-0.065174624,0.021265686,-0.005343597,-0.027644996,0.037366446,0.049843546,0.010369872,-0.022479892,0.019190883,-0.08841542,-0.034032278,-0.057686318,-0.006368635,0.035485454,-0.029836446,-0.035531234,0.06480076,-0.045846842,0.010730451,-0.016342098,0.0052289385,-0.024539012,0.010906896} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:39:51.310508+00 2026-01-29 18:36:00.458478+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1196 google Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB 1 t 1199 Soho Club unknown I Was there on weekend ,nice mix of People, and really nice service, i forget my Phone at the veniu and they was really helpfull found it and giving it back i was there on weekend ,nice mix of people, and really nice service, i forget my phone at the veniu and they was really helpfull found it and giving it back 5 2025-08-02 18:34:31.336452+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "nice mix of People, and really nice service"} {-0.052354135,0.020939225,0.06604701,-0.022086335,-0.050711468,-0.027648184,-0.0053485623,-0.03617167,-0.09534535,-0.024842186,0.028524412,-0.013295932,0.028307378,0.011748279,0.035513684,-0.07655787,0.07975538,-0.13923663,-0.010956432,-0.065708384,-0.039934613,-0.02968088,0.016759932,0.031200802,-0.014155211,0.010109803,-0.06898635,0.07664364,0.0079917945,-0.055107206,-0.013380012,0.10929477,-0.014541427,0.0048744967,0.00061280443,0.05446896,0.05373603,-0.1036494,-0.023255317,0.028485883,0.014319081,0.035996333,0.05081154,-0.011646292,0.05486764,-0.03549196,0.05451896,-0.0020799213,0.08982263,-0.009296982,0.13604149,-0.0143508855,0.014911603,0.025086764,-0.07177439,0.06958841,0.008487168,-0.011246939,0.046387296,0.00032361347,0.037658315,-0.0064952993,-0.0155870225,0.024781885,-0.027020518,-0.06806794,-0.09992133,-0.04422849,0.09671815,-0.08395979,0.022042908,0.024327928,0.043844156,0.012752366,-0.07153925,0.066349864,0.044025466,-0.035577897,0.00014898715,0.012459776,0.049085468,-0.024238436,0.008581382,0.103994206,0.047210243,-0.05832893,-0.0022774364,0.011869518,-0.015450564,-0.061490092,0.0989904,0.11577997,-0.10145333,-0.048020598,-0.025835562,-0.033390366,-0.054350343,-0.01168169,-0.00985158,0.06796627,0.040948074,0.055728205,0.035323367,-0.0411897,0.006004591,0.0060928403,-0.032100923,0.06333703,-0.0016659449,0.005502411,-0.022972556,0.018253867,0.020459361,-0.007824529,-0.03676083,0.08824379,0.054671936,0.018686285,0.0044475268,-0.03693131,-0.0052421233,0.026906563,0.030524282,0.012401673,0.011759238,0.03210734,0.041603345,-3.2079182e-33,0.06531019,-0.019332279,-0.032537624,0.04142545,0.06406678,0.023294691,-0.08711482,0.045629285,-0.06256925,-0.007655182,-0.029233899,0.037077345,0.041703578,-0.008297155,0.0077662114,-0.038229644,-0.020230109,-0.016287327,-0.062063035,-0.043067552,-0.022233894,-0.062122334,-0.033388283,0.023099972,0.049857773,0.09861951,0.019368697,-0.019195888,0.13916072,0.0027323398,0.005782978,-0.034737665,0.01707956,-0.015752185,0.028324613,0.04675832,-0.020304814,-0.046518203,-0.0761105,0.00016206088,0.03971854,0.043178134,-0.08342513,-0.027886147,0.023337124,0.013000078,0.0055118287,-0.030524561,0.035546627,-0.04302671,-0.11693083,-0.023091417,-0.08299793,0.012027652,-0.06007596,0.04540012,0.007985049,0.02194254,0.03476495,-0.038801443,0.0897717,0.009041611,-0.010013273,-0.08267043,-0.0041288566,-0.08732717,-0.02283235,0.009713535,0.055914562,-0.056303125,0.044507347,0.050971977,0.037363436,-0.003922145,0.029976062,0.09137337,-0.064341694,-0.01960407,-0.020375086,0.07225331,0.082542226,-0.024215883,0.021785488,0.057404835,0.050773628,-0.008766949,-0.006956605,-0.1233019,-0.054559827,0.039934814,-0.069431245,-0.007867465,0.03814047,0.018096818,-0.014418187,1.6367091e-33,-0.0073681967,0.004688954,0.024665548,-0.027748335,-0.01046902,-0.05036662,-0.02728772,0.11997516,-0.040227305,0.07236364,-0.031968046,0.017798554,0.109355785,0.009859102,0.027806764,0.024764303,0.021860193,-0.0013544329,-0.023948163,0.018312639,-0.08864972,0.054873593,0.061479684,-0.015958084,-0.027915534,0.04265298,0.04079355,-0.025191287,-0.10421778,-0.100572824,-0.017790772,-0.054671433,-0.07646841,0.0515789,0.036117245,0.090197794,0.03307309,0.0722539,-0.021581624,-0.00889051,0.048088975,-0.013253738,-0.08236558,0.02822572,-0.036958452,-0.02063294,-0.02750622,-0.041593324,-0.034539748,-0.035977505,0.010878353,-0.043845754,-0.041979857,-0.0026045046,0.027487801,-0.0027535826,0.03393888,-0.042923007,-0.061992545,-0.028436964,-0.03164907,-0.03489472,-0.07056486,0.03497783,0.05181117,-0.062642924,0.045332856,0.0064224117,-0.045361683,0.008265497,-0.06473503,-0.04162651,-0.033838987,0.083708525,0.008971382,-0.008143549,0.025430117,-0.04537591,-0.012398465,-0.029669922,0.024211131,-0.018036408,-0.04066332,-0.07025835,0.076472364,0.01768769,0.09688971,0.0427225,-0.012818235,0.044463873,-0.024425915,0.080914184,-0.086667806,-0.00067227235,0.017702756,-2.8004822e-08,0.07064989,0.099679835,-0.013599564,0.07834776,0.026610197,-0.17485215,0.08439188,0.05302674,-0.0065540425,0.04695506,-0.011019356,0.01347218,-0.12470546,-0.01898584,0.09302976,0.037450932,0.035797346,0.0060638157,0.00805942,-0.029904678,0.019640028,0.057604525,-0.021446994,-0.018597458,0.019346554,0.031148594,0.020622125,-0.009152054,0.07305749,-0.06764375,-0.026786895,-0.021947216,-0.065762535,-0.034725606,-0.07195594,-0.03585058,-0.05153106,-0.13993056,0.06603079,-0.028831258,0.02986136,-0.039185625,0.0048536737,0.026479797,0.027188826,0.061886463,0.012903534,-0.05629921,-0.018505106,-0.044910163,-0.1155915,-0.03893283,0.015660489,0.03499399,0.04874767,-0.060699917,0.029320924,-0.05584906,0.03744535,0.051609494,-0.019081704,0.0053823967,-0.19444431,0.048493646} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:40:11.884401+00 2026-01-29 18:36:00.460621+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1197 google ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE 1 t 1200 Soho Club unknown Great queer club! Excellent drinks, cool staff and a good dance floor. great queer club! excellent drinks, cool staff and a good dance floor. 5 2025-01-29 18:34:31.336452+00 en v5.1 O1.01 {P1.01} V+ I2 CR-N {} {"O1.01": "Great queer club! Excellent drinks, cool staff and a good dance floor."} {0.0029794972,-0.08601759,-0.039115712,0.04981934,-0.07900565,0.011213226,0.008968838,-0.11872118,-0.020952756,-0.0314218,0.011901647,0.011702309,-0.01615514,-0.0063567422,0.0015000968,-0.05300282,0.06707836,-0.08238566,0.06843403,-0.018770471,-0.09023226,-0.0633135,0.035757937,0.056456294,-0.10515232,0.02475684,0.002034303,0.078553215,0.00018592345,0.015727106,0.00056888966,0.13561553,0.027427036,-0.017527966,-0.065978415,0.047369942,0.080747455,-0.13073301,0.060586777,0.05350582,-0.046239726,-0.016538791,0.048375674,0.042139266,-0.016563099,0.048744995,0.047084842,-0.047821492,0.029194733,0.033782966,0.07088902,-0.02105284,0.10091428,-0.010487144,-0.029210594,0.003959974,-0.013835605,-0.103895284,-0.02768399,0.009439979,0.07911957,0.04923432,-0.08707588,0.012501071,0.016356729,-0.044672307,-0.088875026,0.0756265,0.086609736,-0.06429947,-0.01608221,0.015006379,0.04734598,0.018056264,-0.032290917,0.01297806,-0.018790966,-0.0161811,0.038753923,0.012534214,-0.006397079,-0.07869853,0.0099198725,-0.008526254,-0.05832135,-0.09833657,0.025888955,-0.038899034,-0.042968925,0.04558729,-0.034247335,0.13089849,-0.08673715,-0.112030186,0.015169295,0.008648955,-0.034561556,0.029481698,-0.08167705,0.04855191,-0.014320083,0.160885,-0.01741881,-0.04280167,-0.058950044,-0.06024155,0.038503997,0.08000246,0.052247617,-0.017416995,-0.025537668,-0.005741139,0.0072724377,0.024625054,0.04098462,0.022365153,0.07192664,0.0033463296,-0.006139591,-0.0002450965,0.012697467,0.107801236,0.038468573,0.069529556,-0.057721294,-0.005632364,0.0024772584,-3.3855354e-33,-0.015870482,0.01883004,-0.053815134,0.019039055,0.120609805,0.011582645,-0.045952234,-0.043382484,-0.07625874,0.089323446,0.04134674,0.017639507,0.013490572,-0.050810117,-0.019490313,-0.06056293,0.022536274,-0.04482278,-0.010018273,-0.061620668,-0.012216528,0.08055555,-0.019006915,0.042324457,-0.042348698,0.030823603,-0.014256618,0.04232188,0.09976992,0.028977893,-0.049383163,0.002787506,-0.049369454,0.03181609,-0.014311433,0.038212854,-0.023520488,-0.07085156,-0.012931492,0.034525566,0.055576988,-0.026157334,0.008910247,-0.0021408251,-0.057671126,0.101047345,-0.0137264645,-0.017052539,0.10930613,0.020969488,-0.083281495,0.01233493,-0.046573482,0.08154186,-0.041625638,-0.09600597,-0.038056448,0.045390535,0.036663726,-0.05474186,0.026963621,0.08938974,-0.0720317,-0.04602604,-0.057830483,-0.03528187,0.04447533,-0.073574245,0.10498112,0.003176803,-0.0051022503,0.019773684,0.069507554,0.0050644195,0.012164544,0.027905677,-0.11396519,-0.047486845,0.050085615,0.049486965,-0.0024747099,-0.01906136,0.018479778,0.0032817153,0.023084031,-0.03682423,0.050483037,-0.067645624,-0.026814453,-0.07448719,-0.1422694,-0.022546278,0.08632642,-0.027321644,0.023728453,1.2760287e-33,0.13121785,-0.051001895,0.0028132407,-0.0069412133,0.047492523,0.0077157244,-0.05662814,-0.016012508,0.032295104,0.06312537,0.017015796,0.033079036,0.01234166,-0.008036265,0.026506627,-0.01266823,0.060235187,0.0005680727,0.01413071,0.0027097284,-0.026489383,0.08070413,0.02127346,0.024418531,0.031857442,0.06758417,0.04181602,-0.01588244,-0.013742941,0.013407389,-0.04270853,0.026973758,0.025079465,-0.051810652,0.04357607,0.04709282,-0.018777853,-0.0005150686,-0.04646328,-0.035577923,0.03798278,0.003648347,-0.028151346,0.0838261,0.06766731,-0.020335807,-0.08926175,0.022605676,-0.07336491,-0.025199113,-0.077171266,-0.05341404,-0.026291166,-0.09000165,0.02656163,-0.041018892,0.03530803,-0.0030586899,-0.06463275,0.015554932,-0.08403007,0.07149636,0.0072957417,0.07174521,0.09671251,-0.02811132,-0.07029767,0.011253472,-0.024598593,0.04167162,-0.03475495,-0.018993462,0.007714617,0.10896674,-0.042054188,-0.068614185,0.10620504,-0.044273753,0.03545265,0.07673612,-0.026607672,0.022689303,-0.02182127,0.03671416,0.0414598,0.00018657271,0.040090233,0.01593454,-0.006104692,0.024579542,0.04311123,-0.041381847,-0.038068194,-0.071309626,0.038652558,-1.8724842e-08,-0.032567903,-0.009035248,-0.021172265,0.054404315,0.007424415,-0.042157903,-0.053294532,-0.030152896,-0.0034413775,0.03296441,0.018114539,0.009659781,-0.023824316,0.05764614,-0.020746239,-0.023750128,0.026580572,0.10238187,-0.046115723,-0.0022107551,-0.010368544,-0.00566696,0.042288836,0.03686213,-0.052086577,0.010554736,0.021690521,-0.07301253,-0.0128613645,-0.030484416,-0.0022998853,0.057761293,-0.002122984,0.077725925,-0.056040656,-0.014855996,-0.055616703,-0.017190756,0.02204653,0.037235614,-0.08434407,-0.12913786,-0.049602214,-0.04679733,-0.0335653,0.035967547,0.020183876,0.08722159,-0.035678342,0.009914854,-0.021987997,0.0838721,0.009808894,-0.011803053,0.016907074,-0.044458244,-0.04629422,0.039167058,-0.023917362,0.02738378,0.04633612,0.03904637,-0.036951948,-0.08076561} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:40:19.429117+00 2026-01-29 18:36:00.463008+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 324 google Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB 1 t 327 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mitarbeiter bemerkt. Nach Abgleich mit den bekannten Schäden, die im Computer vermerkt sind, wurde mir der Schaden glücklicherweise nicht angelastet. Ich bin absolut zufrieden.\nEinen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem Voucher bei der Adresse. Eine Bandansage über die angegebene Telefonnummer über den Abholpunkt am Flughafen, welche in einer fremden Sprache zu hören ist, ist bei Verkehrslärm am Flughafen schwierig zu verstehen. Ich habe lange gebraucht diesen Punkt zu finden. ich habe bei der übernahme einen vorschaden übersehen. dieser wurde bei der abgabe zunächst vom mitarbeiter bemerkt. nach abgleich mit den bekannten schäden, die im computer vermerkt sind, wurde mir der schaden glücklicherweise nicht angelastet. ich bin absolut zufrieden. einen negativpunkt habe ich: den treffpunkt am flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem voucher bei der adresse. eine bandansage über die angegebene telefonnummer über den abholpunkt am flughafen, welche in einer fremden sprache zu hören ist, ist bei verkehrslärm am flughafen schwierig zu verstehen. ich habe lange gebraucht diesen punkt zu finden. 4 2025-10-27 01:27:48.341155+00 de v5.1 R1.01 {} V+ I3 CR-N {} {"J1.02": "Einen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht ", "R1.01": "Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mita"} {-0.032841302,0.042945758,-0.14068358,-0.034791443,-0.03275715,0.0037238246,0.100916065,0.06799881,-0.022117164,-0.032820195,0.06635373,-0.07729043,0.07771202,-0.03950749,0.023523003,-0.018272515,-0.016431568,-0.073958494,-0.026522022,0.0076518925,-0.024454357,0.007147195,0.018634785,0.07703727,-0.018389802,-0.029332716,-0.08008107,-0.0033322016,0.02841747,0.05466692,0.03665784,0.006764465,-0.03693607,0.0126645975,0.037331615,0.012719859,0.06069295,0.043069337,-0.009755504,0.06938551,-0.018557897,-0.0029426604,-0.07865206,-0.056282654,-0.0069567533,-0.03982053,0.031756192,0.028061684,-0.032149255,0.04239838,0.051998727,0.038223892,0.0070458585,0.032980766,-0.0122136725,-0.046511475,-0.01780984,0.04798245,0.03198227,0.09133598,-0.037543133,-0.09644201,0.033312302,-0.0011838559,0.011265387,0.065974005,-0.05503912,-0.06615138,0.027268725,0.00577514,-0.03207694,-0.027835062,0.04574736,-0.04230666,-0.068076864,0.08920828,-0.059990842,0.03036068,0.036025878,-0.051876128,0.09790267,-0.0860902,0.09890347,0.051010523,0.0005517819,-0.045615885,-0.012574498,0.021355407,-0.0642095,-0.002664175,0.028759131,0.08509099,0.007300373,-0.0248448,-0.07314207,-0.055622883,-0.029193863,-0.052427515,-0.0176573,0.0985718,-0.030289548,-0.06139521,0.059992947,0.021497583,-0.03892774,-0.040475953,-0.018923271,-0.015251814,0.104414225,0.032500565,-0.10219476,-0.055216577,-0.002559117,-0.06592363,-0.007870692,0.07610218,-0.019942554,-0.05108325,0.015238429,-0.07018163,0.049953632,-0.043317992,0.032753427,-0.040018003,0.08515748,0.06669518,0.0786238,1.9591522e-32,0.04628758,0.07013576,0.04034317,-0.008750346,0.07681871,0.0033028498,0.061230324,0.06612206,0.008628021,0.028272063,-0.029769432,-0.03219937,-0.06287814,-0.003921756,0.027390258,-0.10535321,-0.011013971,-0.1051211,-0.036074627,-0.061252516,0.008761167,-0.001630576,0.02182357,0.002848373,0.08425413,-0.030916147,-0.12725809,0.057935018,0.044188593,0.040650565,0.048319086,-0.017006628,-0.095219366,-0.06894414,-0.049899485,-0.049676795,-0.0312631,-0.022903042,-0.0059041814,-0.11233996,0.013235311,0.0067656967,-0.030355988,-0.030864684,0.045722604,0.03453331,0.016935296,-0.027414516,0.038492423,0.050010752,-0.06819496,0.01519862,-0.03683431,-0.038391344,-0.025462475,-0.04250218,-0.05657274,-0.052919503,2.0172605e-05,-0.010402341,-0.025096754,-0.017259918,0.00321436,-0.05218734,0.011394693,0.0044745104,0.024806863,-0.064654045,0.006724255,-0.021305652,-0.0143354125,0.0371368,0.07826948,0.04063214,-0.005149668,0.034496866,-0.027892776,0.06833579,-0.12077046,-0.03034705,0.04103852,-0.09526713,-0.0017714375,-0.038466934,0.003957772,-0.04082579,0.05217422,-0.106981546,-0.01737693,0.06925212,-0.038254675,0.056829166,0.03559361,0.033608716,-0.02258286,-1.861337e-32,0.009050538,0.04374281,-0.052353244,-0.044925764,-0.057221387,0.07591364,0.07656939,-0.0007718677,-0.0720726,-0.066663586,-0.051781613,0.04965446,0.05621484,0.0028644237,-0.047277004,0.055480998,-0.026349373,0.015969863,0.032478206,-0.08772536,-0.012958186,0.021858968,-0.08995102,0.07335976,0.03998906,0.055876322,0.044734303,-0.011928868,0.051185805,0.030953854,-0.07682872,0.026197838,-0.031432755,0.08371853,-0.04354799,-0.04834764,0.050327417,0.033813134,-0.053346325,-0.019986423,0.020869318,0.016276345,-0.052194636,-0.035365093,0.02393405,-0.014903381,-0.050400287,-0.018447643,-0.036194324,-0.08172869,0.031286772,0.070006885,0.01025875,0.0709639,0.035759345,0.1166196,0.014863703,-0.07165088,-0.045276437,-0.011635308,0.002881274,0.021278251,-0.031537782,-0.062215645,0.109183684,-0.09634675,0.018305277,0.01783592,0.064991556,-0.018647885,0.027993575,-0.03387264,0.055202913,-0.021329379,-0.02045605,0.008222449,0.027365236,0.05623734,-0.086191736,0.039175484,0.045344554,0.076921344,0.0070761656,-0.037910428,-0.044882774,-0.024937022,0.13537848,0.014550133,-0.037411608,-0.07541495,-0.06392542,0.087164566,0.018000511,0.027296782,0.039945886,-6.612062e-08,0.042332448,-0.076156676,-0.045197994,-0.037170537,0.08602609,-0.07711998,-0.00046775694,-0.0016733039,-0.12505734,-0.011206793,-0.019700091,-0.0014883934,-0.04813259,0.05331852,-0.086676255,0.0060844235,-0.029731017,-0.03974362,-0.05658468,0.060284566,0.008277401,-0.05436852,-0.06792723,-0.08445241,0.031069715,-0.008757604,0.016866473,0.014709017,-0.011800966,0.068871245,-0.08098796,0.02301869,0.020185847,-0.0426145,-0.1015943,-0.00856495,0.01742806,-0.0083554,-0.052386902,0.0009912027,0.13628067,-0.05317617,0.0003884137,0.0013313021,-0.006990462,-0.07357547,0.00014321742,0.025890712,0.07908267,0.04788017,-0.08980736,-0.015183608,0.070057556,0.036572114,-0.0009695713,-0.083954126,-0.027060438,0.025719356,0.028233903,0.074539885,0.026518961,0.022895172,0.029836556,-0.019712547} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:27:35.183236+00 2026-01-25 01:27:50.965834+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 516 google ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE 1 t 519 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Inmejorable servicio, coches a estrenar , ademas los chicos super majos otro punto importante muy bien de precio inmejorable servicio, coches a estrenar , ademas los chicos super majos otro punto importante muy bien de precio 5 2025-01-25 01:27:48.342378+00 es v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "Inmejorable servicio, coches a estrenar , ademas los chicos super majos", "P1.01": "otro punto importante muy bien de precio"} {-0.009379719,0.012872147,0.006425478,-0.038394775,-0.08492474,0.029278338,0.013314748,0.08301635,-0.0004058585,0.057737723,0.034454837,0.030273637,-0.06727606,-0.010844543,-0.02207004,-0.03205476,0.0078046257,-0.016040428,-0.072241634,0.014158097,0.027641404,-0.09934919,-0.10611057,0.14064915,-0.10243281,-0.07859728,-0.054924566,0.009702266,-0.018796468,-0.05615885,-0.002157394,-0.00089545,0.14947523,0.0052418746,-0.00617784,0.023397755,0.122094996,-0.08903974,0.013846709,0.034506187,-0.090598986,-0.05348772,-0.0512588,-0.060727157,0.010847193,-0.060893215,0.051560502,0.028424373,0.036471024,-0.045514833,-0.05706654,-0.0096621895,0.01912038,0.0341518,-0.02426329,0.04628403,-0.006472359,-0.042948544,-0.00072671863,-0.007823219,-0.047827758,0.025479227,-0.03060087,0.04344943,-0.027748091,-0.019381551,-0.0075330557,-0.073392585,-0.0306422,0.07584858,0.08515544,-0.10256133,0.03567261,0.04188624,-0.026202802,0.048254512,0.0047556804,-0.017496949,0.0138450675,-0.12780622,0.05374584,-0.06207702,-0.028641703,-0.00037056266,0.008102218,-0.0035230257,-0.0044942,-0.08190001,0.11116447,-0.015942786,-0.008354792,-0.032255318,-0.06329686,0.015619422,-0.02945471,0.008401864,0.052871782,-0.08598426,-0.025778523,0.056330595,0.06636932,-0.0026330473,0.024289252,-0.0065748873,-0.0011038892,0.026348358,-0.029509565,-0.05141875,-0.010552972,0.09289121,-0.033046544,-0.0670947,-0.016711563,0.0068097617,-0.0960709,-0.015509788,-0.0021613343,-0.031047368,-0.041159745,-0.083227664,0.08197838,0.008646136,-0.027372861,-0.0033188283,-0.008713315,-0.032612402,0.079383925,5.7859797e-33,-0.013244947,-0.076248996,0.0028711366,0.059818797,-0.024843652,-0.008486822,-0.032086972,0.026338192,0.0106167095,0.017999357,-0.024801463,0.047269568,0.02551446,0.0003096275,-0.037262216,0.046995472,0.00057877187,-0.042502284,0.046882555,0.025078773,-0.068617985,0.019317722,0.011270648,-0.01587967,0.043851327,0.05502819,-0.053415388,-0.10134972,-0.07094962,0.054830886,0.037031252,0.0045396243,-0.00768321,0.0046372707,-0.034157936,-0.0067425463,0.04178293,-0.03857738,0.004677213,-0.0071493494,0.0071887113,0.01769713,-0.0017022414,-0.0145668965,-0.043716222,-0.038741767,0.06209321,0.033822056,0.12668628,-0.0006507798,-0.011265877,-0.08895297,-0.061198793,-0.033589453,0.03799058,0.044769283,-0.07872201,0.07446988,-0.005289037,-0.049179103,0.022999058,-0.06351141,0.046416935,0.020997375,-0.000364079,-0.051932104,0.062913634,0.0613386,0.11016354,0.028705655,-0.0738849,-0.06734578,0.037393775,0.028245373,-0.037114058,0.044352777,0.044339187,0.02031908,-0.0027502936,0.064446755,-0.053965073,-0.037717875,0.046220083,0.03687444,0.06867455,0.10301655,0.06434431,0.049232796,-0.025579983,0.06298236,-0.059119556,0.10106951,0.060856774,-0.031509902,-0.0055421195,-8.085309e-33,-0.014411504,0.05951796,-0.018195251,0.037582275,-0.039248794,0.06452248,-0.06831461,-0.09411569,-0.048157394,0.025101239,-0.044586163,-0.058610965,0.12466558,-0.11011819,-0.068358324,0.07653657,-0.0088760955,-0.03903254,-0.064286195,-0.026323663,-0.050186787,0.07560623,0.0027231674,0.016426161,0.0009507532,-0.045321684,-0.029095566,0.037124287,-0.09108974,-0.016354738,0.039233074,0.033787075,0.006164401,0.0037457598,0.018480744,0.054683466,0.02959513,0.047057346,0.017593421,0.08773871,-0.04150111,0.038330957,0.052937575,-0.013696339,-0.027209662,0.0039149416,-0.040342845,-0.1281229,-0.004748549,0.030456727,0.02591973,-0.034478605,-0.07509994,0.0132780215,0.029136617,0.0069763213,-0.10344017,-0.075092055,-0.0985183,-0.018693548,0.10673994,-0.0066842004,-0.06428865,0.015161836,0.038486235,0.005965902,-0.09239824,-0.07170352,-0.025486846,0.025525002,0.096421726,-0.04923723,-0.0034089277,0.080363534,-0.08654898,-0.00030745022,-0.025087336,-0.011803112,0.05004457,0.049901415,-0.019666018,-0.031820185,0.033215,-0.02983232,-0.033029545,0.025967747,-0.031457644,0.031220727,0.03555513,0.012996295,-0.034712628,0.030126449,-0.0038510591,-0.12412882,0.039614484,-3.6971617e-08,0.076796524,-0.06502361,-0.032907404,0.0359617,-0.034630507,-0.08332655,-0.06442632,0.03321961,0.00685538,0.0721134,-0.054738108,-0.007376835,-0.039479982,0.019226016,-0.006824839,-0.009709692,0.0644778,0.07285322,-0.056728445,-0.034061693,0.04721743,-0.016810799,-0.05963744,-0.08442979,0.03186207,0.017243369,-0.032281596,-0.008902572,-0.051195573,0.04357484,0.004898675,-0.0115465475,-0.004849541,-0.07579971,-0.005830123,0.089053296,-0.0015965477,-0.024425812,-0.04157625,0.004038111,0.102123834,0.032622937,-0.04279792,0.001551833,0.011460322,-0.029853264,-0.019943712,0.06882774,-0.011353033,0.08773442,-0.007757384,-0.0018133622,0.10438683,0.07619764,0.06181122,-0.03250635,0.013337088,0.034890335,0.008018804,0.039722655,0.009868931,0.08987237,0.061614923,-0.09634493} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:02:38.759282+00 2026-01-25 01:27:51.707082+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 540 google ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE 1 t 543 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy mala experiencia, contraté un Peugeot 5008 o similar y me dieron un Citroën Berlingo, primero querían hacerme ver que era la misma categoría, después culparon a Booking, en ningún momento valoraron solucionar el problema incluso planteando yo la posibilidad de pagar un suplemento, muy mala atención, la chica que me atendió era bastante desagradable, una mala experiencia la verdad y pa colmo la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie. muy mala experiencia, contraté un peugeot 5008 o similar y me dieron un citroën berlingo, primero querían hacerme ver que era la misma categoría, después culparon a booking, en ningún momento valoraron solucionar el problema incluso planteando yo la posibilidad de pagar un suplemento, muy mala atención, la chica que me atendió era bastante desagradable, una mala experiencia la verdad y pa colmo la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie. 1 2025-04-30 01:27:48.342469+00 es v5.1 A1.03 {J1.02} V- I3 CR-N {} {"A1.03": "Muy mala experiencia, contraté un Peugeot 5008 o similar y me dieron un Citroën Berlingo, primero qu", "J1.02": "la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie."} {-0.03747793,0.0893288,-0.00035688345,0.0009949687,-0.045581695,0.036231767,0.008310608,0.09624157,-0.025576644,-0.027290618,0.04702521,0.02362669,-0.031201491,-0.029732656,-0.034411974,0.016159222,0.010229769,-0.02080543,-0.05956481,0.036690287,0.02363006,-0.030373774,-0.035317753,0.09195568,-0.07810357,0.018127652,-0.0578863,0.08547265,-0.026623089,-0.0044756182,0.010684384,0.07852864,-0.031347804,-0.013821474,0.025296394,-0.01931943,0.043718662,-0.09405381,-0.02662793,-0.014783418,-0.10767904,0.0024369613,-0.08951592,-0.012733424,0.05536321,0.013371454,-0.0042954944,0.09840821,0.100855894,-0.11021874,-0.08137625,-0.028168174,0.057017032,-0.07079789,0.0060395645,-0.05664958,0.021889273,-0.015386752,0.067076184,-0.042707756,-0.0076184194,-0.055639606,-0.013112873,0.022577291,0.0017335423,-0.035304893,-0.056040026,-0.04235104,0.0067963544,0.068681315,0.067708835,-0.09073109,-0.0076403194,0.025121164,-0.042126957,0.0140843345,-0.039385255,0.045174573,0.014561223,-0.05621065,0.051904775,-0.032130346,-0.08719089,-0.037489656,0.029299172,-0.004386389,0.0024414158,0.00933584,-0.0040203244,0.02816166,-0.02730396,0.06247142,-0.013087955,-0.031714544,-0.027291542,0.02988403,0.03410591,-0.029879197,0.010999871,0.04128468,0.040348105,0.020680059,0.03819165,0.0678781,-0.14572652,0.0055831634,0.0626604,-0.02339938,-0.0019768865,-0.102743454,-0.07063342,-0.05499037,-0.05083904,-0.09040191,-0.09075809,0.015419235,-0.01823056,-0.041080683,-0.11276941,-0.008010063,-0.009855989,-0.060696196,-0.0011932786,0.007198593,-0.012257812,-0.06345283,0.045999788,1.5928311e-32,-0.014906404,-0.052288402,-0.05471873,0.057699315,0.044270698,0.04731939,-0.08344419,0.041348986,0.065051995,-0.030465124,-0.03046903,-0.037090335,-0.032285146,-0.017935773,0.0871797,-0.027147068,0.011943809,0.02215007,0.00037425838,-0.060102463,-0.0042532706,-0.048853293,0.049123663,-0.032755192,0.0902953,0.11014753,0.021592729,-0.07459887,-0.023285905,0.072763786,0.05828017,0.04421598,-0.05191334,-0.043778095,-0.056349598,-0.023329336,-0.0061624544,0.0032034444,0.0072409483,-0.017893514,-0.030768717,0.012829298,-0.10729547,0.035990406,-0.02094526,0.043142047,0.004674629,0.009774596,0.09328865,0.011216457,-0.021912053,-0.027618708,-0.008554509,-0.031747013,0.005769301,0.04072318,0.04768844,-0.00086491933,-0.012130575,-0.08087227,0.00055181107,0.079345934,-0.022041334,-0.078258984,-0.029731525,-0.025758276,0.03487504,0.05325767,0.015577814,0.07268891,-0.02306796,-0.06307415,-0.007938672,0.097516395,0.03462777,-0.023686994,-0.012615213,0.032897595,-0.05620914,0.017515078,-0.035286285,0.012964498,0.028524667,-0.014105528,0.020636227,0.045227148,0.10181175,0.10410143,0.0016233178,0.06771603,-0.038200222,0.06379938,0.035591062,0.028320946,0.039246652,-1.7560249e-32,0.037847374,-0.006074231,-0.02288435,-0.010703529,-0.027829237,0.08790026,-0.055611897,-0.054477986,-0.0078733135,0.044521213,-0.089145,-0.05018077,0.090457976,0.03340661,0.00107125,0.044429705,-0.05390802,-0.09703938,-0.099608354,-0.06367715,0.077631384,-0.0048115263,0.09076468,-0.067961805,-0.07449018,-0.029263346,-0.039493915,0.048610583,-0.037958145,-0.014623085,-0.025500415,0.020176029,-0.012914033,0.09943048,0.023121275,0.030966839,0.035453666,0.04226057,-0.07804956,0.03734727,-0.05668608,0.07908172,0.028500898,-0.0062383944,0.04175267,-0.08500839,0.022644883,-0.13802785,0.049265966,-0.012746307,0.11502563,-0.0038130987,-0.027649263,0.057397652,0.0678542,0.015565116,0.062236212,-0.09686199,-0.12312572,-0.014525147,0.043112528,-0.0011438638,-0.030247325,0.007420551,0.07915806,-0.053856924,-0.030025143,0.025373759,0.08269429,-0.0644091,0.020117147,-0.058014963,-0.026802478,0.06982948,-0.06305306,0.0690954,-0.0090919845,0.050688673,0.0251082,0.03144739,-0.027861895,0.04038848,0.051471256,-0.0056359447,-0.042856608,-0.0031920972,-0.026458532,-0.024558837,0.06756489,0.029229857,0.047644533,0.065815024,0.0063460525,-0.06460272,0.0030264137,-7.012389e-08,-0.085688435,-0.024782605,0.072073065,0.030240297,0.016402634,-0.12381018,-0.022436548,-0.013248378,-0.06838787,-0.01990589,0.021812996,-0.05889484,-0.00808035,0.056823403,-0.040968064,-0.07976151,-0.017482772,0.10331847,-0.0134188775,0.025264384,0.03478163,-0.037568465,0.0096648345,-0.011408476,-0.0010358022,-0.06944434,-0.03849928,-0.042934902,0.0066052536,-0.040474094,-0.09672308,0.037287835,-0.012873131,-0.09153979,-0.082671836,-0.029369054,-0.04509445,0.06916765,-0.08926966,0.011853949,0.0772729,-0.047412187,-0.033692427,-0.006362971,0.025875028,-0.035157956,-0.0015441736,-0.06741962,-0.000917215,0.08212789,-0.0001735956,-0.01351283,0.077213556,0.042677257,-0.06412982,-0.04863474,-0.057639986,0.051841773,-0.0155343,-0.06959622,0.05158049,0.047108617,-0.040834438,0.027083483} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:43:28.817722+00 2026-01-25 01:27:51.797452+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 547 google ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB 1 t 550 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. Henkilökunta oli mukavia. Hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alettu perimään. Omasta mielestä voin suositella. kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. henkilökunta oli mukavia. hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alettu perimään. omasta mielestä voin suositella. 5 2025-04-30 01:27:48.34251+00 fi v5.1 J1.01 {A1.01} V+ I2 CR-N {} {"J1.01": "Kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. Henkilökunta oli mukavia.", "P1.01": "Hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alett", "R1.01": "Omasta mielestä voin suositella."} {-0.018200342,0.14068434,0.017282669,-0.045500588,-0.12116591,-0.02887592,0.070083864,0.059163235,-0.012783876,-0.0031659422,0.063933305,-0.023543842,0.048444852,-0.031327795,-0.013113474,0.025174648,0.022216918,0.11842618,-0.07242317,0.024667513,0.0620704,-0.08809566,0.021429898,0.007203144,0.024754073,0.07180519,0.041021146,0.0017610253,0.014090083,0.02205094,-0.06343519,0.01710106,0.045232862,-0.02787572,0.07646906,0.027238881,-0.014200364,-0.01118898,0.022612616,0.050996892,-0.02589393,-0.03386063,-0.027971743,-0.032653198,0.030654274,-0.08155243,-0.07026105,-0.026875895,-0.020741133,0.023613514,-0.12880287,-0.009626963,-0.051792465,-0.039654933,-0.028243981,-0.091568716,-0.045661792,0.048718166,0.009893992,-0.015862267,0.0382466,0.016178217,-0.0054682987,-0.0104372455,0.044553008,-0.04994829,-0.069555506,-0.047124315,-0.037262306,0.0031080272,0.08672197,0.009179106,-0.015879711,0.076433055,-0.11764767,-0.05076218,0.047002543,0.03808858,0.018368615,0.02480272,-0.013481516,-0.0413999,0.009829367,-0.014005841,-0.0070842826,0.011428013,-0.06513677,0.007866924,0.031246483,0.0033503736,-0.052728046,0.03195557,-0.07395342,-0.0753417,0.05174638,0.028430743,-0.11160829,-0.09011803,-0.0075848103,0.036463488,0.054652218,-0.0373853,-0.02447189,0.03183735,-0.07260636,-0.036085736,0.010464223,-0.12945372,0.0047644624,0.027526576,-0.008901302,-0.10435019,0.0107209515,-0.0638281,0.031286728,0.021801226,0.00087231747,0.046285924,0.05249772,0.060636148,0.041267,-0.0018261761,-0.007629666,0.015256401,-0.009350425,-0.0165731,0.027380418,2.7089984e-32,0.013201785,-0.039735764,0.051895853,-0.024384463,-0.031065926,-0.07807032,-0.011662145,-0.10671843,-0.054901913,-0.056523677,-0.050876334,-0.07754933,-0.063566186,-0.047257897,-0.0113225095,0.05489295,0.070131116,0.0108861495,-0.0031395587,0.020770758,0.029847661,-0.015287565,0.0638893,-0.017873563,-0.05574691,0.0014735832,0.0116875535,-0.05718577,0.01256457,0.053770397,0.120751955,-0.02197067,-0.025826307,-0.05104103,-0.0923346,-0.045792706,0.042771418,-0.03337594,-0.0038588783,-0.0081673125,-0.0759002,-0.0001343706,0.050826233,0.05342344,0.048540454,0.069626,0.010158598,-0.018973386,0.10482853,-0.002687524,-0.08252791,-0.031312585,-0.07339856,-0.0107732825,0.00091480487,-0.057480305,-0.0005861239,0.017224964,-0.005649633,0.010201352,-0.035996504,-0.073377684,-0.024509491,-0.059105743,0.0048989346,-0.042415887,-0.044305608,0.020935496,0.039384723,-0.03417704,-0.055446934,-0.08114075,-0.06614271,0.06800947,-0.051767256,-0.007607452,0.054131623,-0.0055971798,0.000732527,-0.024827342,0.017512994,0.02379853,0.0104638655,-0.072892554,0.058438353,0.044361122,-0.03862515,-0.09790171,0.10955999,0.06753753,-0.0043400284,-0.014888057,0.00015708344,0.09081841,-0.07699714,-2.3816049e-32,0.0021362877,-6.661594e-05,-0.028513176,0.038425885,0.019633975,0.021827538,-0.1258558,-0.010763571,0.05087334,0.07369527,-0.024670297,-0.11179055,0.056631558,0.02681042,-0.09993771,0.11065635,0.13572043,0.077431194,0.0031353598,-0.0274077,-0.1055177,-0.032167606,0.007712348,-0.020764597,-0.007296973,0.0054054917,0.075998254,-0.035187352,-0.054482095,-0.026077464,-0.010905866,-0.05754198,-0.030661818,0.018000698,-0.0046631005,-0.01875065,0.05612867,-0.047597226,0.018475948,0.02685938,0.027021635,0.014453303,0.037606254,-0.025563799,-0.038071625,-0.035525844,-0.038689543,0.0010638089,-0.060598463,-0.071359396,0.07339029,-0.009071715,0.036784578,0.0018046936,0.03480206,0.053240467,0.010230135,0.031652797,0.008118849,-0.0390353,0.017010566,-0.027880924,-0.024530578,0.042819913,0.095827185,0.08890027,-0.015446013,0.07417556,-0.026369365,0.035085842,-0.029683378,-0.12827986,0.041732024,0.0290675,-0.025348151,-0.011252525,-0.07778141,0.027126543,0.024510793,-0.04687709,-0.027470445,-0.03733895,-0.025828058,-0.04754717,0.048000462,-0.00135837,0.052842114,0.05326051,0.025166005,0.031773698,-0.006015335,0.075562425,0.020952126,0.013378548,0.034535926,-6.953042e-08,0.017362917,-0.0873062,-0.08328421,0.019514976,-0.027992267,-0.0030071188,0.01410918,0.01404534,0.026120763,0.063208625,-0.046247117,0.049286313,0.047233764,-0.022479748,0.005902097,0.077600606,0.1669564,0.052931465,0.04037426,-0.020388963,0.06059219,-0.030634457,0.049675148,0.035809636,-0.089243755,0.010936682,0.0043746135,0.099815436,0.04731215,0.0034808535,-0.08174788,0.012238135,0.0026037432,-0.0643902,-0.057957448,0.100864634,-0.05007566,-0.008210955,0.01662965,-0.014250878,0.036994286,-0.013187527,0.117009595,-0.048198387,0.05657835,-0.0024812964,0.080951475,-0.0278678,-0.0015886365,-0.07662803,-0.110586636,0.01723803,0.058208693,0.06505008,-0.029701412,0.005041668,0.028374972,0.041559402,0.026044553,0.00076034566,0.081723765,0.06943492,-0.03756159,-0.05259646} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:43:19.253368+00 2026-01-25 01:27:51.819703+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1200 google ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE 1 t 1203 Soho Club unknown Greatest club in Lithuania,best place to go in the midnight. greatest club in lithuania,best place to go in the midnight. 5 2025-01-29 18:34:31.336452+00 en v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Greatest club in Lithuania,best place to go in the midnight."} {0.052499473,-0.0042565675,-0.042811435,0.009994293,-0.045089386,0.03087389,-0.002931244,0.010198818,0.06932504,-0.009354366,-0.06439021,0.06713367,0.00040117776,0.021608254,-0.0068619703,-0.027775912,0.09177964,-0.057360165,0.03546863,-0.10585352,-0.033083703,-0.058824603,0.04131084,0.05935267,0.014724714,-0.041585747,0.03793302,0.012814626,0.0012466403,-0.027632285,-0.058454104,0.06177948,-0.020153577,0.06777592,-0.04956449,-0.0007793301,0.03130833,-0.11870608,0.0035682323,0.032722335,0.029475002,-0.0045817327,-0.05849488,0.040176842,0.012765552,0.021018766,-0.0320507,-0.03229853,-0.015280565,0.11715496,0.031187423,-0.0062264153,-0.0027613218,-0.058936335,0.006411383,0.05249154,-0.048788033,0.008338694,0.030139955,-0.0031973831,0.08188553,-0.0076794666,-0.08569397,-0.018325748,0.012093148,-0.028782362,-0.056246508,0.12735859,0.025035026,0.008120454,0.03364814,-0.03231686,-0.02444886,-0.01039034,-0.09957183,0.026499784,-0.05836569,0.03777627,0.01501576,0.0439997,0.09662327,-0.03268891,-0.0031414689,0.027576897,0.008013308,-0.045110423,0.020918658,0.05333009,0.06505869,0.030074378,-0.044017494,0.0064964117,-0.08076093,0.00916866,0.009073007,0.05377519,-0.023453226,0.0028212767,-0.03738512,0.03786247,0.029830843,0.123784825,-0.04476438,0.027045488,-0.058052674,-0.033772327,0.036069784,0.05398078,0.009379965,-0.02018949,-0.04148712,0.0035301624,0.020618487,-0.07682386,-0.00532148,0.07290116,0.099271,0.08717939,0.010339873,0.049414437,0.022660783,0.06782135,0.012069089,0.024346013,0.016672451,0.047614053,-0.031083925,-4.38788e-33,0.045287054,-0.010061676,-0.040181562,0.007918501,-0.010439782,0.017966906,-0.091418564,-0.036189564,-0.10303399,-0.020313691,-0.0010266794,-0.04253785,0.0043443204,-0.12584184,0.08307665,0.06313214,0.050784074,-0.02185942,-0.098914295,-0.0653827,-0.029336674,0.090590164,0.013674918,0.01348755,-0.05782597,-0.0017510564,0.02035121,-0.03439992,0.03429633,0.018728891,0.01534113,-0.035723284,-0.07348396,0.019962508,-0.014653039,0.077931926,-0.08542549,-0.01641594,-0.013928989,-0.07051063,0.08379613,-0.059918553,-0.060577802,0.07257724,0.004127717,0.04037656,-0.02783886,-0.0140556,0.05841084,-0.0481855,-0.09435347,0.037851702,-0.09642731,-0.024113044,-0.017591294,0.010685749,0.033057995,0.097953625,0.019012775,-0.021211738,0.024902795,-0.078556016,-0.035093118,-0.00028596446,0.015638294,-0.041788064,0.013096057,0.0062304293,0.013990312,-0.0094450535,0.03995947,-0.02577468,0.04904156,0.034078833,-0.06731348,0.0069952463,0.011293744,0.008735411,0.02951966,0.032998588,0.005533102,0.0444789,-0.034533236,-0.040630024,0.035789117,-0.0119389715,0.061167363,-0.11157117,-0.030873273,0.02381628,-0.14388886,-0.03154876,0.11864923,0.048274465,-0.03969911,2.688717e-33,0.12778616,-0.09980785,0.035587862,0.012719505,0.044686515,0.023184478,-0.06667125,-0.00379689,0.009732908,0.124368295,-0.038007606,0.008555432,0.037293486,0.03178866,0.013667489,0.0027437299,0.17066202,-0.0041920007,-0.04362939,-0.00024017,-0.08217085,0.09174977,0.039065294,0.030864134,-0.019996759,0.025698323,0.006231889,0.027762732,-0.1375062,0.012796224,0.012602336,-0.03541944,0.0033545236,0.035862856,-0.030094992,0.08487108,0.031898327,-0.0134751415,-0.035491187,0.04143549,0.03914442,-0.024332594,-0.028622018,0.068421,0.079965405,-0.056991074,-0.013232322,-0.006246031,-0.01722773,-0.08097475,0.040419724,-0.03358129,-0.039088663,0.046802152,0.066986926,-0.008959574,-0.05737434,-0.04542214,-0.007676429,-0.05319264,-0.009325929,0.01551858,-0.08324733,0.03991049,0.019098686,0.0021799838,-0.0319596,0.09703462,-0.11677392,-0.016806334,-0.08971831,0.003151927,-0.02431794,0.14408849,0.022345416,-0.02979009,0.021075362,0.1068895,-0.008045775,-0.083611876,-0.025027338,-0.0012403813,-0.11451435,0.017218387,0.060782894,-0.033686347,0.05335641,0.020964146,0.05643402,0.0092736,0.0019954126,0.02772343,-0.011328512,0.0054870606,0.034577005,-1.5380888e-08,0.049794223,-0.005715791,-0.07864041,0.074911304,-0.04131433,-0.15762138,0.022066921,0.03360177,-0.027967483,0.08054449,-0.08266252,-0.027471386,-0.00724145,-0.017387034,-0.0014491297,0.037281636,-0.036969848,-0.027477862,-0.005613434,0.02065119,-0.011677406,0.041187108,0.05752218,-0.043137148,-0.05041301,0.00020666429,-0.023878422,-0.03502259,0.01246525,-0.013549752,0.028873933,0.026923517,0.028093843,-0.0101257535,-0.068718866,0.004189205,0.10117086,-0.038267802,0.02559507,0.03941924,-0.0425869,-0.08244839,-0.044225693,-0.010553952,-0.051565968,0.009654944,0.07137698,-0.016983148,-0.06533279,0.022219315,-0.104037,0.04669,0.013559888,0.038851175,-0.022042453,-0.028208151,-0.021898529,0.008705143,-0.05183439,0.033594448,0.12925726,-0.012626132,-0.024848832,-0.04953365} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:41:01.909593+00 2026-01-29 18:36:00.4695+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 330 google Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB 1 t 333 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar.\n\nSe pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa.\n\nNo sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear.\n\nNo repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen. realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar. se pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa. no sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear. no repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen. 1 2025-11-26 01:27:48.341167+00 es v5.1 P1.02 {} V- I2 CR-W {} {"E1.02": "No sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear.", "J1.02": "Se pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa.", "P1.02": "Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifi", "R1.02": "No repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen."} {0.05736743,0.08523083,-0.035723772,-0.05259027,-0.07343494,-0.061551157,0.13573804,0.025727196,0.007424013,0.023471849,0.028574789,0.004419894,0.016365895,0.007272109,0.072739944,0.004989669,0.027035154,-0.02477817,-0.021825014,0.09783876,0.041979175,-0.07057415,-0.01855707,0.046044264,-0.058500282,-0.066361405,0.013814008,-0.04657818,-0.05081303,-0.040097643,0.0060881823,0.10127332,0.050467208,-0.015308493,0.02339865,-0.00038400947,-0.025212035,-0.019264447,-0.053328607,0.029646246,-0.041857425,-0.00010051902,-0.020886345,0.0037925043,-0.016856816,-0.01627456,0.058575533,0.037620492,0.061876334,-0.056930855,-0.041270763,-0.0024208105,-0.015379988,-0.016443418,-0.048000064,-0.035555106,0.05768509,0.014298465,0.040675,0.047049396,0.05715649,0.09445017,-0.01275996,0.007361141,0.112727635,-0.025164412,-0.02801712,-0.04168092,-0.0036582283,0.05217888,0.11487323,-0.11820995,0.010403927,0.009295272,-0.0075217867,0.018175177,0.011394309,0.07597546,-0.00845453,-0.017514976,-0.040899426,-0.051897325,-0.039788555,-0.012691513,-0.053587135,-0.03584544,-0.022239821,-0.03455185,0.14248304,-0.0064395997,-0.0024097017,0.11263324,-0.051852893,-0.115877464,-0.063671306,0.0071613775,0.0092620095,0.022991486,-0.10232808,0.042868804,0.11311389,0.07584568,0.031525753,0.008836671,0.027922254,0.083577596,0.08508572,-0.02235071,-0.0120872855,0.07388329,-0.08736338,-0.09681665,0.036888383,-0.0037071353,-0.066013746,-0.004974319,-0.058725793,-0.0021823274,-0.08725737,-0.057212055,0.03229119,-0.016756758,-0.059553813,-0.04532821,-0.01806631,-0.062100668,0.047223203,1.7868197e-32,0.033002157,0.01923361,-0.012195975,0.035807766,-0.04994127,0.04831444,0.016116375,-0.011265722,-0.014894109,0.026611768,-0.008583561,0.017594935,0.016790392,0.12958097,-0.03245345,0.022289257,0.01866522,-0.05573307,0.0831014,0.030366503,-0.020067744,-0.05324406,-0.048872016,-0.029605944,-0.00337862,0.02078761,-0.02911961,-0.057389237,-0.059832122,0.024493253,-0.05517322,0.06467058,0.06347732,-0.056943968,-0.0046532005,-0.017981546,0.03142218,0.044988804,-0.05011114,-0.10407869,-0.0071279653,0.06603437,0.004512125,0.06009335,-0.03731645,0.03251253,0.05549824,0.011762357,-0.012463078,0.013288446,-0.027949356,-0.037970982,-0.06733689,0.018202942,-0.118083626,0.010515173,-0.076798245,-0.029906599,0.008973424,-0.05034168,0.03993858,0.017721752,-0.022566201,-0.058417466,-0.08675573,-0.08996095,0.036368184,0.03621419,0.103183664,0.047705878,-0.040633395,-0.007957232,-0.015779914,-0.0012462934,0.005232917,-0.022446476,0.02568955,0.0483975,-0.017994398,0.039203364,-0.018371683,-0.120070845,0.0483559,0.040201325,0.0719971,0.10953606,0.068112664,-0.0044307066,0.022041602,0.12049322,-0.024227621,0.059800528,0.020434493,-0.057535157,0.043465465,-1.8636223e-32,-0.043744784,-0.03564936,0.031875532,-0.0043047927,-0.021626255,0.021404978,-0.04724963,-0.048917796,0.027395837,-0.02799114,-0.10320095,-0.052662816,0.12617637,-0.03471687,-0.063237496,0.03662317,0.031989913,-0.09416829,-0.04229433,-0.06311497,-0.009317878,0.073217645,0.026846217,0.024828607,-0.025356771,-0.10948098,-0.019573068,0.07066977,-0.1155298,-0.017764214,0.05519597,0.006882402,0.020875528,0.0064896094,-0.03709867,0.017244462,0.0086381305,0.04192954,-0.004116163,0.03950606,-0.042105798,0.010101434,-0.030422222,-0.042240985,0.0015917706,-0.009744618,-0.0100673055,-0.14954334,0.04134995,-0.007865402,0.09735711,-0.04438998,-0.0200158,-0.006871463,0.050088655,0.023788126,-0.0073345867,-0.09815427,-0.031552397,-0.016346848,0.030744415,0.07661017,0.00012775902,-0.023543512,0.030489633,-0.033154897,-0.0024345366,0.017837305,0.006867951,-0.018237777,0.055359557,-0.05641649,0.0029440338,0.013697176,-0.019221392,0.017123684,-0.04328985,0.012949513,0.033972427,-0.05838997,-0.017109789,0.0016350663,0.03620555,-0.04701351,-0.0071841483,0.006878654,-0.049580693,-0.010993579,-0.06768288,0.055431314,-0.03192111,-0.0030227478,-0.03599668,-0.07910307,-0.011243578,-6.552042e-08,0.002952178,-0.0059411847,0.04334269,0.00053643715,0.060147088,-0.0059149535,0.0017199197,0.068783805,0.05715925,0.083045684,0.04336006,-0.018092241,-0.13212024,-0.041665807,-0.046024535,0.030932598,0.09393607,-0.025283374,-0.077405825,-0.05558217,0.08841299,-0.041845586,-0.08415446,-0.013198832,0.0760166,0.019858694,0.003761356,0.028517494,-0.04013029,-0.005163601,-0.014508623,-0.053325344,0.008826635,-0.06917951,0.0058070063,-0.033849906,0.016681975,0.014369514,-0.029142685,-0.042695984,0.040394463,-0.01957396,-0.06929062,-0.015252152,-0.1515599,-0.066109814,-0.013524654,0.02217285,-0.036031518,-0.034224577,-0.027131464,-0.056129362,0.09904188,0.0316739,0.06183836,-0.0954764,-0.00073486305,0.024306713,0.018539676,-0.023184884,0.063617334,0.054310866,-0.009952995,-0.08958716} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:20:46.393692+00 2026-01-25 01:27:50.986877+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 333 google Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB 1 t 336 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort. Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur schwer nachvollziehbare Zahlungen leisten. Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum. sehr lange wartezeiten. insgesamt wenig professionalität vor ort. viele kunden, inklusive uns, mussten trotz vorheriger buchung und zahlung vor ort noch weitere nur schwer nachvollziehbare zahlungen leisten. auch die fahrzeuge selber (wir hätten 2 verschiedene wagen) überzeugen wenig bis kaum. 1 2025-11-26 01:27:48.341185+00 de v5.1 J2.02 {A2.02} V- I2 CR-N {} {"J2.02": "Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort.", "J3.02": "Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur s", "O1.02": "Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum."} {-0.10286329,0.10577666,-0.02645548,-0.014089961,-0.030465214,-0.0065340544,0.054422237,0.06726873,-0.007373714,-0.036171455,0.021596726,-0.04175209,-0.002982866,-0.01008478,-0.049227413,-0.03742235,-0.030547796,0.040701073,-0.02794665,-0.06238125,-0.024592524,0.014251705,0.04943612,0.041529022,0.083548084,-0.038413867,0.02457405,0.003911056,0.070921585,0.0013152937,0.05261476,0.007889115,0.0030429896,0.052116882,0.044548526,-0.043688707,-0.012746874,0.019205378,-0.061295353,0.08237539,-0.032089755,-0.078631274,-0.178267,-0.12495834,-0.030105563,-0.064940885,0.08181854,0.005726362,-0.087593116,0.109250955,-0.0049212906,-0.051744644,0.022431433,-0.013413048,0.0051682484,-0.0077701686,0.023368057,-0.008714828,0.025542732,0.013443522,-0.0385139,-0.0059546414,0.0044477554,0.011542758,-0.026202282,-0.007864687,-0.045356665,0.0673855,-0.07715611,-0.033696648,0.049604747,-0.08997028,-0.056756552,0.062413175,-0.05559387,-0.065786056,-0.070233494,-0.033809137,-0.0029507761,-0.035056785,0.0019381118,-0.06185882,-0.028663505,0.035249427,-0.06850181,-0.027869074,0.00012468694,0.0016263459,0.064618,0.0038367994,-0.038880084,0.050656006,-0.10747497,-0.022295643,-0.02654155,-0.03545814,0.016174179,-0.037328217,0.054678842,0.001966309,-0.055373076,-0.009619634,0.03991576,-0.044620015,-0.055505075,-0.03138338,-0.0015844418,-0.041135482,0.02014532,0.060437314,-0.00058194203,-0.021782028,-0.010234751,-0.056018207,0.07872222,0.052737314,-0.0776472,0.03937359,-0.0053330916,-0.0027894564,0.025362434,-0.023442635,-0.06319166,-0.057037245,0.046092436,-0.10142099,0.07887528,2.368368e-32,0.035658196,-0.0011371073,-0.023961822,0.034137916,-0.023123147,0.04999976,0.031402733,0.014277375,0.0063529797,-0.065429434,-0.03413723,-0.03428191,0.014350692,0.013944452,0.12732163,0.0011050189,-0.010996834,-0.0507511,-0.038358454,-0.024424344,0.06957672,-0.055816397,-0.037599094,0.09029172,0.025604293,-0.0924808,0.030025078,-0.09014644,-0.02941165,0.022294378,0.11137977,-0.00806188,0.03264742,-0.087626114,0.0054108244,0.013900706,0.027544446,0.07234456,-0.030470742,-0.018354706,-0.003278563,-0.06505863,-0.00078845274,0.0037377735,0.05907963,0.035010993,0.017864672,-0.015870824,0.015137499,0.051830698,0.0001266587,0.016405243,0.034079403,0.0164205,0.108316526,0.019745858,-0.038899895,-0.049175393,-0.050222974,-0.039303992,0.00089401705,0.06177405,0.030876549,0.023907946,0.017911699,-0.04051339,-0.05368424,-0.03211604,0.05998573,-0.01755202,-0.0730374,0.077983156,0.0039857305,-0.101212084,-0.0005283047,0.043572538,-0.043815963,0.07377218,-0.0010590295,0.025754701,-0.023080794,0.018407185,0.053583734,-0.081848264,0.08466784,-0.038353283,-0.008277323,0.0068771755,0.11459429,0.1423213,0.033318985,-0.029980268,-0.02159881,-0.029550742,-0.003210343,-2.067986e-32,0.09192306,-0.00502297,-0.010915159,0.09882181,0.020301469,0.022572732,-0.06692279,0.06852729,-0.095271565,-0.0266858,-0.087625764,-0.016689578,0.07838252,0.028521037,0.028644662,0.025772123,-0.014548446,0.022872707,-0.019150093,-0.024474645,0.0672084,-0.092416815,-0.007385264,0.0034112774,0.031415213,-0.0033165768,0.016547823,0.0034978266,-0.09973369,0.053297564,0.04575668,-0.002875319,0.048456106,-0.03141984,0.0043518245,0.044012617,0.107542716,0.06754227,-0.021579146,-0.010803976,-0.028841686,-0.01549621,-0.049601004,-0.058548257,-0.015984159,-0.17046864,-0.04151318,-0.090336315,-0.045460273,-0.077391416,0.07666877,0.01506851,0.021526376,-0.04587972,0.0864871,0.05132238,-0.07986467,-0.084915504,-0.104349926,0.0019208512,0.11079194,0.027998349,0.056950416,0.083271764,0.062605985,-0.062003613,0.011908376,0.04362866,0.024006438,0.022838127,-0.0048436373,-0.0029004659,0.06967739,0.02076332,0.015921311,-0.031985007,0.029616036,0.075002685,-0.021885378,0.027855642,-0.0696934,-0.020721644,0.009962023,-0.04941117,-0.055293515,0.03388676,0.025191592,0.03763464,0.0024479297,-0.056229427,0.014179355,-0.0605528,0.07715522,-0.012929592,0.04830052,-7.1165914e-08,-0.07181732,-0.073503844,-0.025948131,0.023606358,0.084356174,-0.10122981,0.041545607,-0.068193324,-0.008715467,0.062296804,0.018516233,-0.050377216,-0.006387035,0.02842681,0.081264175,-0.00020676025,0.116879605,0.05655214,-0.041871194,-0.061681025,0.10936324,-0.028432095,-0.06012989,0.02962419,-0.0059785703,0.041863587,-0.083233885,-0.001205137,0.02780461,0.0023610443,-0.025800778,0.06756447,0.04246421,-0.07383417,0.027122188,-0.023177695,0.04146498,0.0059135333,-0.062082157,0.041416436,0.0026941614,0.031837225,0.04933598,-0.02476606,0.00089829264,-0.07897448,0.0005231883,-0.04755147,-0.014012199,-0.0074859993,-0.010750173,-0.01669301,0.07479712,0.03656936,-0.023480434,0.047604855,0.014305518,-0.013759708,-0.07425541,0.023738993,0.0059361206,-0.03335743,0.0033108066,0.029149126} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:20:32.821859+00 2026-01-25 01:27:50.993941+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 468 google ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE 1 t 471 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo muy bien. La atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del minibus de cortesía como los recepcionistas a la entrega y recogida de llaves. Recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evitarás disgustos innecesarios. todo muy bien. la atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del minibus de cortesía como los recepcionistas a la entrega y recogida de llaves. recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evitarás disgustos innecesarios. 5 2025-01-25 01:27:48.342078+00 es v5.1 A1.03 {} V+ I3 CR-N {} {"A1.03": "La atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del min", "P1.02": "Recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evit"} {0.05100392,0.07757069,0.02257809,-0.005780292,-0.007741523,-0.001702399,0.060897034,0.06336626,-0.057742804,0.03706484,0.055917256,0.012218798,0.037837382,0.015031998,-0.018404547,-0.008844537,0.046941128,0.014381464,-0.031729642,0.0135289645,0.040643383,-0.046635725,-0.080715515,0.059420493,-0.121636614,-0.003307365,-0.03342454,0.0059934957,-0.076871954,-0.09944995,-0.08544342,0.06480454,0.07521655,-0.015836429,-0.029606566,0.0017381934,0.122623354,-0.029853454,-0.040999055,-0.011821042,-0.08046398,-0.043472447,-0.03367524,-0.022232834,-0.07866064,-0.097276725,0.025470743,-0.014408348,0.026475156,-0.07262823,0.082094125,0.0132228695,-0.049098786,0.0011273541,0.006195371,0.0021153952,0.0096449405,8.4289015e-05,0.06263573,0.058442052,0.027843736,0.018207422,-0.007694974,0.015098398,0.052173346,-0.1303662,0.043874767,-0.026890796,-0.09057692,0.029115511,0.11029332,-0.08401419,0.024622643,-0.035616208,0.018639239,0.036362406,0.028310826,0.03406989,-0.04912163,-0.06814588,-0.058048762,-0.026353689,-0.023887075,-0.050107,-0.004847595,-0.0015111766,-0.074885815,-0.025047855,0.039127335,-0.03694639,-0.010454094,0.08365645,-0.06857755,0.0024110577,-0.030145932,0.0065848143,0.0020033044,-0.028858544,0.045527678,0.022023194,0.1218702,0.09789677,0.047258783,-0.0068844487,-0.03028755,0.0218481,-0.04847717,-0.050665636,-0.045648485,-0.014132097,0.0014749423,-0.022684673,-0.0003130205,0.0037157133,-0.040676292,-0.013037548,-0.0489775,-0.024932297,-0.067371346,-0.028590832,0.03791369,-0.017449096,-0.045527384,-0.031383697,0.010333731,-0.0551584,0.0729876,1.2682485e-32,-0.086434245,0.02340176,0.0045797066,0.0055205286,0.015447829,-0.0046137,-0.020976923,0.061807808,0.04128505,0.02973397,-0.064546004,0.07492637,0.0013856981,0.06562243,0.068499565,-0.05012766,-0.00941874,-0.066585496,0.011710078,0.016730485,-0.083280034,-0.04107781,0.03266312,-0.04244883,0.05085909,0.058233894,0.006173103,-0.018236179,-0.016742479,0.049472786,0.024559554,0.063563175,0.014123172,0.024632107,-0.047655366,-0.0140422685,0.03785899,0.080846496,-0.07296592,-0.043300625,0.0024452778,-0.010122434,-0.056441624,0.030607436,-0.009883332,0.033141956,0.1068691,-0.0015299586,0.09114337,-0.03466113,-0.07555166,-0.039527826,-0.057716455,-0.039336406,-0.0015436583,0.06258272,-0.013813295,-0.027113201,-0.0474336,-0.056213763,-0.005440191,0.04805616,-0.0030466137,-0.040280487,0.0042034006,0.0039505507,0.08606407,0.022637902,0.059656233,0.006214709,-0.073628835,0.033747625,-0.021189105,0.016327742,0.06254889,0.03443508,0.021433556,0.05258625,0.027957866,-0.06542379,-0.09248528,-0.049507294,0.025035203,-0.0018330764,0.11499393,0.01077666,0.043550886,0.07245052,0.0034859083,0.10215091,-0.06800312,0.11795903,0.037308812,-0.03708602,0.058032405,-1.5673632e-32,0.0061858916,0.027733162,-0.0075709354,-0.015243297,-0.06589847,0.01852575,-0.041509353,-0.009638917,-0.051582932,-0.016425781,-0.093898,-0.06402813,0.053139254,-0.006022264,-0.018844329,0.06894436,-0.0020803933,-0.076666646,-0.08068754,-0.06608528,-0.06926638,0.071946256,0.015879614,-0.05276324,-0.06489918,-0.058736373,-0.10816273,-0.04203288,-0.08731353,0.01770964,0.05627749,-0.04729692,0.022118738,0.04392105,-0.058421727,0.0024734302,0.08555276,-0.0040058205,0.03479147,0.015238559,-0.021131458,0.09106269,0.10591797,-0.009894427,-0.059240755,-0.051810756,-0.041671067,-0.16563597,-0.045966804,-0.018768977,0.08722534,-0.049276773,-0.08340825,-0.09053667,0.014448047,0.02480015,-0.028943917,-0.06910846,-0.021597046,-0.045283087,0.008462181,-0.020702844,-0.04869801,-0.028831925,0.06750593,0.0041072937,-0.013071852,-0.016814405,0.09368842,0.031605814,0.11516511,0.037432037,-0.06372967,0.024048043,-0.060899884,-0.016972698,-0.072577454,0.008878015,-0.0012320516,0.036097474,0.058864575,-0.028698144,0.0074731894,-0.06880374,-0.023991907,-0.071337886,-0.003467794,0.04205432,-0.009282759,-0.011113802,-0.022346508,0.015557162,-0.013338986,-0.040095206,-0.017068164,-6.339432e-08,-0.027440185,-0.04467459,-0.076663785,-0.0015277915,-0.008489161,-0.046341065,-0.027945036,0.061098833,-0.06606033,0.055142473,0.009619248,-0.040008005,-0.038032945,0.08557739,-0.012492211,0.013448506,0.06705527,0.05593652,-0.032855295,-0.046901606,0.06698705,0.022826664,-0.049413767,0.063604146,0.07208038,-0.017117145,-0.024286699,-0.023195669,-0.01884466,-0.003401299,-0.07402769,0.025169453,-0.04131179,-0.040041033,0.02424631,-0.0069323676,0.0052050985,0.011034336,0.029728595,-0.044727467,0.07452969,-0.052218422,-0.11808406,0.012000095,0.0080439355,-0.118637405,-0.038985144,-0.008240342,-0.027693348,0.045216538,-0.032433383,-0.043990713,0.088803984,-0.0009250161,0.056890007,-0.057859298,-0.016697675,0.04816332,-0.021145472,-0.04119599,0.02143583,0.14197984,0.078098476,-0.09292342} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:06:44.564151+00 2026-01-25 01:27:51.492263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1300 google ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE 1 t 1303 Soho Club unknown Muy chulo muy chulo 5 2019-01-31 18:34:31.336452+00 vi v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Muy chulo"} {-0.09283808,-0.030340118,0.02386897,0.020784775,-0.04245637,-0.051989883,0.1726918,-0.038764525,0.03780214,-0.025768552,0.026576862,-0.07391386,0.06512637,-0.015571568,-0.015409337,0.08750749,0.0028889817,0.051647905,-0.049804565,-0.0787111,-0.012271939,-0.012674461,-0.0518647,0.06628425,-0.028545722,-0.04821689,0.01026961,0.049903788,-0.06435842,-0.025672626,-0.0011373344,0.1326914,0.09786432,0.017299386,0.02973592,-0.0059206705,0.0054989588,0.0032008695,0.030175488,0.036402848,0.02014084,-0.027847892,0.036708757,-0.004668415,-0.014015132,-0.053896695,0.030012684,-0.04579362,0.00052587065,0.025598777,-0.09107426,0.023798447,-0.028351912,0.026013177,0.041683577,-0.0020142687,-0.04016204,0.012550434,0.034847993,-0.06441569,-0.058655627,0.009638574,-0.022445831,0.031409178,-0.0049019745,-0.05624002,0.024220336,0.025664166,-0.024706084,0.053900577,0.065418586,-0.05993253,-0.06390357,0.009057676,-0.05388791,-0.021471886,0.1026211,0.003054987,0.027569676,0.0059339483,-0.027055694,-0.014752264,0.014263902,-0.05156276,-0.0131271845,0.02548565,-0.050219145,0.011215846,-0.11969615,-0.09868398,-0.01715814,-0.02544088,0.031844195,0.0112020355,-0.024845308,0.053730357,0.005573932,-0.07564154,-0.096621126,0.14891946,0.008424704,0.02693229,0.10418781,-0.06920493,0.014911604,-0.024077423,0.025402257,-0.055630997,0.0004988971,0.0346379,0.00081315474,0.008545112,-0.03150066,0.0823471,0.09773597,-0.0065880786,0.018897727,0.06463002,-0.076808795,-0.019751118,-0.021386389,0.038833972,-0.051431358,-0.013874116,-0.08996706,-0.05181479,-0.003834885,1.50398955e-33,-0.023140406,-0.10943303,0.040414724,0.020505536,0.03244113,-0.017566152,0.010696886,-0.01612787,-0.09410799,0.014905073,-0.01602444,-0.04787381,-0.011319509,0.056717347,0.0027288045,0.00294963,-0.039367013,-0.07157922,0.03449804,-0.017129814,-0.036385518,-0.0030973216,-0.017261272,0.049333483,0.019582437,-0.03765972,0.028961945,-0.09156397,0.008551302,0.04180399,-0.012888871,0.053534817,0.06394328,-0.052925892,-0.12395847,-0.13580692,-0.04956738,0.022828393,-0.032929737,0.0126248095,-0.015766699,-0.025587097,-0.069946915,-0.008279318,-0.011335152,0.041070305,0.026437784,0.04953607,0.053761903,0.07743539,-0.074488185,-0.05454635,-0.03747381,0.054019295,0.04451404,-0.017884705,0.034697678,-0.03241046,-0.000116305404,-0.033657286,0.016068239,-0.011096598,-0.011612327,-0.027331024,-0.04999835,-0.04456556,-0.025944492,-0.013500703,0.05608138,0.025270801,-0.025749076,0.0027893763,-0.12057258,-0.017335154,-0.04254528,-0.10254795,0.036435094,0.018420503,0.04045168,0.051766705,0.07765324,0.046497725,0.10066995,0.0531028,-0.02568075,0.023426889,0.007109595,0.04458277,-0.016136605,0.042808987,-0.124877505,0.035844013,0.06382297,-0.03714374,-0.013659483,5.5275895e-34,0.03762481,-0.03659058,0.025615767,0.09686485,-0.0013460257,-0.008462974,0.087911524,0.0034173338,0.0036284225,-0.008598564,-0.039813966,-0.047842994,0.046687774,-0.015104862,0.13136922,0.12719809,0.027644208,0.065563895,-0.051639818,0.0048648175,-0.040492278,-0.025275052,-0.0139360195,-0.022002727,-0.09595604,0.030504033,-0.017246896,0.0294563,-0.007053376,0.048614565,-0.053007837,-0.042562813,-0.076126695,0.01562722,-0.028179564,-0.053879354,0.0073666363,0.10394215,-0.0027436097,0.0028046698,-0.036855485,0.089156814,0.013535666,0.12315449,0.020896982,0.029138269,0.037118394,-0.0044026654,-0.02966744,-0.05075712,-0.065338604,-0.03831079,0.0048548174,0.01937643,-0.008154493,0.014477138,-0.03410566,-0.02927621,-0.11035494,-0.04068261,-0.028665243,0.0065397467,-0.06725512,-0.008187608,0.04878601,0.1120688,-0.03434857,-0.005684771,-0.07783497,-0.011275898,0.04958778,-0.026105383,-0.078184746,-0.050579894,-0.00876012,0.02331068,-0.14483285,0.09159163,0.013226125,0.06209639,0.0013206798,0.022953562,-0.09647152,0.07649045,-0.0077336784,0.03698946,-0.012246808,-0.0017779261,0.10723185,-0.01896346,0.0037677144,0.02825866,0.036788233,-0.028900849,0.018993061,-1.5785242e-08,-0.026459297,-0.036169313,-0.05331685,0.00021005596,0.01329923,0.059914604,-0.011003196,0.036863893,0.05462128,0.053498395,0.007514625,-0.008470206,0.033685092,0.1356822,0.036718242,0.09270194,0.046209015,0.00020884763,0.053823505,0.011866151,0.06555204,0.01359809,0.044080116,0.1357747,-0.010472474,0.0825898,-0.072484866,0.058750678,-0.006026485,0.060611233,-0.019898953,0.05967339,-0.06218781,-0.033002228,6.569169e-05,-0.026631992,0.020360464,-0.01236402,-0.01749566,0.03739644,0.025674773,0.0011737942,0.07357276,-0.023177966,0.010168511,-0.027158085,0.018034939,-0.087655745,0.04610149,-0.023913385,-0.052262887,0.019425701,0.032938205,0.12448766,0.058166035,0.0020720686,0.047251146,-0.03546632,0.025299383,0.0415922,0.026176946,0.026847515,-0.022451406,-0.060773462} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:18.350089+00 2026-01-29 18:36:00.71301+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1406 google ChdDSUhNMG9nS0VJQ0FnTUNRbWVPS3N3RRAB 1 t 1409 Go Karts Mar Menor unknown Really fun experience, only takes about 1/2 hour to do but definitely worth it. really fun experience, only takes about 1/2 hour to do but definitely worth it. 5 2025-04-05 00:52:39.833374+00 en v5.1 V4.01 {J1.01} V+ I3 CR-N {} {"V4.01": "Really fun experience, only takes about 1/2 hour to do but definitely worth it."} {0.0044992715,-0.001978852,0.042510685,0.018268693,-0.08686302,-0.054390423,-0.05100903,-0.059662655,-0.027323855,-0.00336342,-0.051095374,-0.0049024234,-0.015238888,0.055369604,0.03101792,0.023032261,0.14632308,-0.07643809,0.06030908,-0.03136079,-0.032665122,-0.10459528,0.044047784,-0.04865578,-0.008866543,0.015731078,-0.026928365,0.043899782,0.025881298,-0.020862486,-0.09977347,0.09428216,-0.0097047705,0.00014141663,-0.023013838,0.064480394,0.092304334,-0.041298278,0.010782975,0.0155779105,0.05262309,0.03132918,0.06752922,-0.0026038187,-0.002123133,0.022334179,0.05977118,-0.07944148,0.03460029,0.005614563,0.09595743,-0.055105876,0.023652786,-0.04628864,-0.07514071,0.10701142,-0.08564723,-0.03706804,-0.052363507,-0.0072571654,-0.061692417,0.023298237,0.03477097,0.07135054,0.06508149,-0.068364,-0.0051230597,-0.026621977,0.06658522,-0.06997916,-0.07880373,0.0034237055,-0.036026288,-0.012605688,0.009443087,0.004881257,-0.0062967455,-0.07936613,-0.0817602,-0.015670283,0.056700286,0.047967386,0.0058570136,0.038297154,-0.06982627,-0.06920465,0.0541827,0.025173763,0.03771994,0.010226346,0.068954945,-0.022758242,-0.0395204,-0.052861642,-0.013414927,0.041272394,-0.011965219,0.104939185,-0.043104462,-0.034578905,0.014889548,0.014194697,-0.026673695,-0.031084541,-0.02633366,0.060220134,0.01001455,0.04524227,-0.01168018,0.025425442,-0.0016310492,0.0011185058,0.040512666,0.016567795,-0.033416927,0.10093358,-0.015989361,0.01906274,0.0077005946,0.011648743,0.054266762,-0.02963005,0.08755771,0.008038692,-0.013719615,-0.04345724,0.0998056,-2.47617e-33,-0.0035261128,0.06252019,0.0018716343,-0.0008531355,0.073633745,0.03757164,0.022742255,-0.039626136,-0.06664253,0.08782875,-0.0008507158,0.041044123,0.010940551,0.010694871,0.00059973507,-0.055722542,-0.025204973,0.01920663,-0.062043507,-0.06663635,-0.047771342,-0.028160343,-0.028218219,0.052045424,-0.020816982,0.039907344,-0.011806381,-0.05101008,0.09668028,-0.027421195,-0.07701877,-0.029435318,-0.11207482,-0.0020938076,0.035048615,0.055236176,0.063426964,-0.07523859,-0.0045671873,0.04568833,-0.08377743,0.056789566,0.007063149,-0.02786872,-0.029211959,-0.045997363,-0.03507368,0.018742822,-0.02294377,0.004246017,-0.088167,-0.0014059801,0.044015948,0.029926166,0.03162649,0.057073243,0.08253843,-0.036593925,-0.026850302,0.05868041,0.04151687,0.009813859,-0.043502554,-0.0030871849,-0.08820679,0.047028374,0.062655166,0.0019379491,0.074389644,-0.064493835,0.0028033552,0.03359614,0.02853573,-0.078420416,0.03711122,0.031357784,-0.038184218,-0.07648787,-0.041491847,0.09454065,0.028316857,-0.026982345,-0.035495814,-0.032003302,0.080549754,-0.018500155,0.02562486,-0.1491525,-0.013848292,-0.003919163,-0.044482585,-0.002333789,0.044512764,-0.031620555,0.05146488,1.01162e-33,0.06731407,-0.09804056,-0.019242207,0.06475891,0.10372246,-0.051569104,-0.07012384,0.084762864,-0.016340107,0.034973692,-0.059121497,0.062252533,-0.033217832,0.010221219,0.028555788,-0.066324,0.037391257,0.009831338,-0.021130616,-0.024728416,0.07166917,0.073666774,0.014022727,-0.08365581,-0.09886703,0.038489647,-0.005838157,0.0063308985,-0.017477842,0.051871035,-0.013245061,0.08393416,0.02183417,-0.076782316,-0.029962676,0.09417124,0.093808524,0.06470659,-0.0034789266,-0.018270127,-0.028326593,-0.0016709203,-0.020914167,-0.080005616,0.0032096056,0.030158022,0.0343445,-0.060297325,-0.07313303,0.0007929263,0.0024738582,0.04827317,-0.03663924,-0.10453076,0.03983322,-0.14952427,0.024212463,-0.07471024,-0.008285648,-0.060414255,-0.036022212,0.09787713,-0.03152536,0.06256645,0.041414186,-0.015319873,0.002791993,0.017234616,-0.08038426,-0.006746438,-0.06779287,0.06552641,-0.0154322805,0.048997298,-0.022867197,-0.067593925,0.057784017,-0.036742713,0.023594365,-0.021887215,-0.020070938,-0.042276505,0.0008269849,-0.04153105,0.020380178,0.07915964,-0.007087524,0.014000129,-0.05476272,0.05585979,0.08510981,0.08991354,0.020897549,-0.023790354,0.028397953,-2.3626514e-08,-0.024851216,0.08298253,-0.023698555,-0.041082405,-0.021318832,-0.037966937,-0.001275557,-0.0034643135,-0.038442507,-0.0060588387,0.05135476,-0.052822635,0.03125975,0.07669182,0.034009665,-0.04089547,0.09581645,0.049072664,-0.018048242,-0.0015519218,0.06875192,-0.00046694794,-0.06312962,-0.067330554,-0.058264554,0.038202655,0.056386102,0.017303945,0.07178318,-0.11821666,-0.03819265,-0.0026265995,-0.0073653334,0.08744315,0.0004021799,-0.08742157,0.04940594,-0.027561443,-0.07637204,0.03590715,-0.069102265,-0.039506387,0.017786155,-0.022037333,-0.03368887,0.04982235,-0.019525954,-0.060919207,0.0028663143,0.052488036,0.015370089,-0.022935428,-0.044125322,-0.009303074,0.08709213,0.018028438,0.03193602,-0.0016279718,0.049713124,0.07137569,-0.015911119,-0.059764247,-0.11092319,0.03312096} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:01.220226+00 2026-01-30 02:01:09.253541+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1202 google ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB 1 t 1205 Soho Club unknown Great place to relax- does not matter u are gay or straight. Strong coctails, great music, relaxing athmosphere. great place to relax- does not matter u are gay or straight. strong coctails, great music, relaxing athmosphere. 5 2025-07-03 18:34:31.336452+00 en v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Great place to relax- does not matter u are gay or straight.", "O4.04": "Strong coctails, great music, relaxing athmosphere."} {0.12174683,-0.016135085,-0.024068585,0.058092136,-0.034276303,0.0014935577,0.07316009,-0.11405708,0.032194044,0.0011627253,0.00267696,-5.104552e-05,0.009738161,-0.0331689,0.06765004,-0.009764571,0.13160503,-0.10353718,0.026500722,-0.019827193,-0.062301546,0.062891416,0.029805763,0.034596268,-0.098235756,0.02780763,-0.012179059,0.06750643,0.03963175,0.04504459,-0.013401299,0.08680675,-0.016124934,-0.042403203,0.023245139,0.107550144,-0.018458512,-0.14245608,0.07320945,0.047980018,-0.040866118,0.063366674,0.07085399,-0.02158129,-0.042568117,0.019600645,0.043188438,-0.059708722,0.06336177,0.0011048757,0.12175921,-0.00018155393,0.022414573,-0.016602708,-0.036740575,0.02066751,-0.10631499,-0.06957742,0.001004499,0.040217906,0.11442807,0.011753921,-0.048315007,0.03267443,0.03661414,-0.0068106693,-0.04344926,0.0638092,0.07338083,-0.06579089,-0.044145856,0.05902672,0.023524249,-0.036022235,-0.03700206,-0.08390453,-0.03166207,-0.050332204,0.034970216,0.013139131,0.098734684,-0.06617178,0.044992566,-0.027278678,-0.11594582,-0.097416535,0.056719452,-0.022016946,-0.058255382,0.011036546,0.040466074,0.04622333,-0.069885306,-0.024011735,0.009199826,0.01718372,-0.032175686,0.07610811,-0.09431498,0.027311258,0.054009754,0.09565222,0.047936387,0.043254916,-0.055657804,-0.014739227,-0.0325657,0.076729365,0.047123015,-0.032709535,-0.11590954,0.00016166359,0.011906554,0.005029846,-0.054301903,0.051682834,0.089191094,0.020397644,0.0020576692,0.003149382,-0.00629777,0.024815513,0.032305047,0.068184584,-0.025376283,-0.023731288,-0.032856673,-9.184747e-34,0.022636918,0.0029437367,-0.017575638,0.021057468,0.06429002,0.02114041,-0.046388168,-0.042672176,-0.03945154,0.063776396,0.0007774856,0.009825761,-0.014583191,0.0014731811,0.022980757,-0.06428281,-0.00068830827,0.014676453,-0.087689854,-0.050106168,-0.063005865,-0.0010250433,-0.026145373,0.03596458,-0.04634034,-0.0065658204,0.033526164,0.0019376386,-0.02958203,0.0346152,-0.08357676,-0.008721555,-0.010936765,-0.0247085,0.024137972,0.06894988,-0.021441381,0.009005166,-0.005143714,0.014402542,0.011771712,0.03731611,-0.03614338,0.012483682,0.013407257,0.06860218,-0.0006307605,0.008094793,0.05375244,-0.023530286,-0.092266865,0.006679838,-0.07375114,0.03275457,-0.01313648,-0.024032233,0.0016586705,0.043951754,0.020135215,0.021055523,-0.022539953,0.035047896,-0.026805678,-0.1283523,-0.054011557,-0.016679907,0.025164127,-0.0214789,0.10785415,0.029269164,-0.01705152,0.013229206,0.071608104,0.04838549,0.05069599,0.0036309252,-0.0862713,-0.003835039,-0.004043881,0.03393398,0.105313405,0.027591137,-0.04514246,0.02806154,-0.015753822,-0.062621824,-0.0054717585,-0.095922366,-0.057296097,-0.080279194,-0.06597562,0.023522085,0.07590692,-0.07301191,-0.030220594,-1.30696605e-33,0.036022212,-0.10416866,0.013921268,0.016337205,0.00015441795,0.01290335,-0.02884731,-0.023580823,-0.06823709,0.081003785,-0.013724399,-0.013300451,0.05064123,-0.0007136181,0.046952248,0.019846626,0.00020999699,-0.0026394185,-0.054075167,0.04229751,-0.020225825,0.02926644,0.03259571,0.018190866,0.028068872,0.054828357,-0.04242983,-0.04941767,0.09925772,0.029455302,-0.0784691,0.0335862,-0.07093125,-0.026042523,0.021566069,0.02828152,0.005894866,0.014559222,-0.1091612,-0.059040025,0.054166533,0.007047092,0.024121188,0.092060134,0.07520187,0.039151423,-0.04816319,0.044068236,-0.06110632,-0.01755298,-0.06846906,-0.034542732,-0.059717312,-0.053397212,0.06772094,-0.054271914,-0.08481451,-0.007983601,-0.123238385,-0.02876801,-0.050346766,0.038652394,-0.00043042764,0.05554709,0.023332559,0.027533084,-0.027866509,-0.025851004,-0.06642907,0.06781929,-0.04862139,-0.057364516,-0.063306466,0.021323977,0.017893607,-0.00021121082,0.10544603,-0.09244612,0.006171238,0.05149577,-0.01537529,0.0672392,-0.052672714,-0.036076043,0.028859189,-0.04199464,0.032372493,-0.023994304,-0.01483026,-0.0032259105,-0.010335702,0.047251202,-0.14618307,-0.08561673,0.05293951,-2.4372941e-08,-0.036398444,-0.030749608,-0.010304402,0.024188155,-0.07530031,-0.052220333,0.038193338,-0.011775848,0.013324857,0.021747058,0.019800572,-0.06960847,0.014190656,0.0035707885,-0.027785024,0.044455223,0.00092465396,0.08394365,-0.026877947,0.03811949,0.0338395,0.033163447,0.010692958,0.030305933,-0.0011648337,0.040965747,0.11242554,-0.042475395,0.065013304,-0.026019938,-0.009820141,0.022711694,-0.052706603,-0.011208794,-0.08230636,-0.04667476,0.028985882,-0.027008528,-0.01797866,0.0075788056,-0.07944752,-0.07495354,-0.0012351464,0.038028836,-0.055056177,-0.018443905,0.15710749,0.034467332,-0.015327636,0.04318234,-0.07988734,0.008753616,0.0125753,0.020168286,-0.0042405953,-0.009235433,-0.09299819,0.019654077,-0.03786931,0.035132203,-0.03065166,0.00531244,-0.08857803,-0.031222962} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:41:26.567642+00 2026-01-29 18:36:00.473644+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1496 google ChdDSUhNMG9nS0VJQ0FnSURVdU9iUmtRRRAB 1 t 1499 Go Karts Mar Menor unknown so fun , enjoy it every time I go ! the new board is great :) so fun , enjoy it every time i go ! the new board is great :) 5 2020-02-01 01:52:39.833374+00 en v5.1 R3.01 {O1.02} V+ I3 CR-N {} {"R3.01": "so fun , enjoy it every time I go ! the new board is great :)"} {0.065742746,-0.12158037,-0.017178778,-0.051604725,-0.06909874,0.0043954756,-0.008999698,-0.063030995,-0.038965438,0.013392911,-0.024349507,0.011491589,-0.05358678,0.051173966,-0.015019013,0.009860275,0.046243772,-0.06331936,0.053090356,0.030928811,-0.034086928,-0.108356126,-0.033078734,-0.045547176,-0.08897167,0.0012255599,-0.005475598,0.012428882,0.02972862,-0.08009741,-0.00062023517,0.095248155,0.005411488,-0.012689985,0.018361961,0.021363422,0.044213407,-0.0824235,0.019208545,-0.017785866,0.037837815,0.07399874,0.04086416,0.11200005,-0.041129377,0.20977451,0.05862202,-0.08261158,0.0932007,0.032867245,0.013610197,-0.0529583,-0.009347525,-0.024709318,-0.081223376,0.022800997,0.010535697,-0.08614609,-0.02066119,-0.12129633,-0.01910142,0.033359304,0.07471786,0.074572325,0.01618472,-0.06327059,-0.06375078,-0.023781711,-0.0026545878,0.0076263384,-0.073005185,0.06794909,0.01205796,-0.020948056,0.027430233,0.03013461,-0.042468145,-0.005255859,-0.043057248,0.01404771,0.049401086,0.015774759,0.009382302,0.0011609585,-0.053226944,-0.09260044,-0.05318314,0.05189924,0.017017417,-0.091180906,0.077610284,0.0846568,0.04460971,0.04551965,-0.08692034,-0.008832837,-0.064042255,0.03181683,-0.038534477,0.0016000234,-0.024207903,0.04090801,0.04714759,-0.016026849,-0.08150931,0.05172131,0.004844017,0.044433493,-0.010919877,-0.034292724,-0.01620769,-0.00080753886,0.07042332,0.01993939,0.021129427,9.615282e-05,-0.020284446,0.04856359,-0.028155927,0.009499239,0.081388146,-0.011449911,0.07299563,0.027477415,-0.02346438,0.049657337,0.012856634,-3.6821666e-33,-0.009052664,0.00287113,-0.06287273,0.009046719,0.05452294,0.005721848,-0.015135241,-0.05168219,-0.08239544,0.03450397,-0.042853776,-0.021388901,-0.019414311,0.06902197,-0.007252321,-0.06406858,-0.062398165,-0.08245207,0.02097498,0.02374644,-0.010108734,-0.020082746,0.042360205,0.071543165,0.050396446,0.022918936,0.0072669177,-0.0535859,0.04699041,-0.0033357514,-0.069221236,-0.062973596,-0.12544928,0.021242427,-0.0069209565,-0.02459659,-0.014742017,-0.012517921,-0.014366008,0.054873995,-0.018327754,-0.077808835,0.0029212588,0.07674738,-0.014584818,-0.063471854,0.0026126832,0.07549627,0.032676265,-0.08911473,-0.105605155,-0.061277688,0.018259598,0.06762284,-0.011054462,-0.06673412,-0.004373342,0.02285396,0.0038966814,-0.027752914,0.086986415,0.09859305,-0.009147042,0.013920346,0.015966011,0.08963793,0.023339145,0.027871814,0.013596433,-0.108937755,0.050336987,-0.040141474,0.025783772,-0.006920928,-0.0050312094,-0.00075750693,-0.05897762,-0.10419531,0.005062032,-0.041743852,0.025253767,0.029719224,-0.049229212,-0.012251329,0.025994683,-0.04225514,0.0506097,-0.10329259,0.011041722,-0.00525222,-0.02239978,-0.040018056,0.0944402,0.072561,0.06103986,1.6672053e-33,0.047367796,-0.026111497,-0.006318895,0.022813212,-0.030929334,-0.0117464,0.019110534,0.032326296,0.011714306,0.032621637,-0.0005119454,0.09098312,-0.03309647,0.03818062,-0.06121671,0.057125334,-0.03466139,0.06773144,-0.018028634,-0.11071536,-0.010408748,0.045443095,-0.063965656,-0.080283634,-0.007749624,0.024193205,0.08870536,0.04167949,0.043543763,0.011420559,-0.06941056,0.07090065,0.035981543,-0.04808693,0.024014441,0.05592016,0.07250016,-0.04073042,0.023804681,-0.035840534,-0.028315695,0.0059827087,0.014473876,0.020727525,-0.061421074,0.034378596,-0.056644924,0.03973309,-0.02018905,-0.041958317,0.02355693,-0.06855378,0.041243248,-0.11956625,0.0140430415,0.039983183,0.05619228,0.019941231,-0.0099106915,-0.017148206,-0.0126776025,0.01621905,-0.02579355,0.06199605,0.09272656,-0.046393134,-0.013654854,-0.05765486,-0.02750811,0.032340568,-0.13594899,0.05045381,-0.109190606,0.012435261,0.038740583,-0.038460843,0.06391719,0.015500875,0.05576345,0.02182245,-0.060913224,0.019559132,0.0034096846,-0.063073635,0.020198416,0.053787336,-0.011273045,0.06904624,-0.041976217,0.0072848746,0.012202316,0.065694794,-0.0029007155,-0.011052966,-0.02092103,-2.0012964e-08,0.03230001,0.06298066,0.02370669,-0.04157759,0.08078055,-0.043662738,0.024010064,-0.08795883,-0.094837815,-0.0096803615,0.08282327,-0.010488624,-0.0077254158,0.10734032,0.0958347,0.056218375,0.09267344,0.10891402,-0.0006751922,-0.10485009,0.041456737,0.028993431,0.02940962,0.0298317,-0.067245,-0.01679125,-0.0012003594,-0.05233979,0.038592737,-0.024803758,0.01777626,0.013916525,0.024367856,-0.021907842,-0.028420528,0.008598921,-0.07347441,0.0052877013,0.021533439,-0.014885803,-0.07231108,-0.07899731,-0.037954163,-0.012840357,-0.0933829,0.017577033,0.019809095,0.020403363,-0.019208845,-0.01659054,0.003409207,-0.037650622,-0.03223946,0.03727635,0.06449968,0.051286437,-0.028924484,0.069458306,0.08817472,0.04029773,-0.001658527,0.03920316,-0.0485948,0.043123335} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.781358+00 2026-01-30 02:01:09.55379+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1408 google Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB 1 t 1411 Go Karts Mar Menor unknown Brilliant service and great fun. I recommend them. brilliant service and great fun. i recommend them. 5 2025-07-04 00:52:39.833374+00 en v5.1 P1.01 {E1.04} V+ I3 CR-N {} {"P1.01": "Brilliant service and great fun.", "R4.03": "I recommend them."} {-0.0793417,-0.019001912,-0.001548126,-0.06538459,-0.09355011,0.018520527,0.023239477,-0.04743484,-0.0014617975,-0.022934401,0.0112935435,0.08882721,0.0065552397,0.06497703,0.005052787,-0.028728684,0.055124752,-0.11506061,0.061847277,-0.06021519,-0.079507485,-0.030208958,0.02655671,-0.0016967657,-0.049351394,0.027263323,-0.0649337,0.036626432,-0.075530246,-0.01894868,-0.041190386,0.036982972,-0.06336263,-0.028899567,-0.013872172,0.03506374,0.056622528,-0.08290135,-0.047057845,0.014701509,0.0057192296,-0.0018548239,0.022028733,-0.018572135,0.0031232813,0.038964678,0.017271902,-0.044689644,0.063369796,0.034945533,0.03919326,-0.10075404,0.052192118,-0.00168942,-0.06457793,-0.022085454,-0.05798453,-0.057484716,-0.036349535,-0.018144095,0.014976312,-0.025974628,-0.071325414,0.03254127,-0.008925527,0.004346294,-0.04048994,0.010494952,0.01884867,-0.10531774,-0.12266402,0.060443424,0.07617647,0.094435446,0.019670945,0.10067623,0.018997487,-0.048627984,-0.07581841,-0.06163092,-0.018491626,-0.040603183,0.059446137,0.020865712,0.0029132876,-0.13792029,0.013084472,-0.082516044,-0.027225455,-0.013736773,0.050265715,0.04883568,0.0017605363,-0.026456797,-0.039395217,0.047854323,-0.044705115,-0.06501255,-0.02775495,0.0395746,-0.009873154,0.04998419,-0.00037411577,-0.0021520953,-0.016971357,-0.011204183,-0.054902907,0.06438887,0.050420173,-0.015110433,-0.027397186,0.01691202,0.025312299,-0.012532821,0.017054671,0.08360016,-0.035758767,0.02745689,0.026865892,0.0008907385,0.040594883,0.08911735,0.0028026174,0.01239136,-0.01594555,-0.010503836,0.072389826,-7.7372346e-33,-0.043533016,0.12176165,0.030501667,-0.017067743,0.012222141,0.041317336,-0.06924039,-0.01420878,-0.04826982,0.05006613,-0.10327637,0.09979102,0.047912262,-0.032118037,-0.020558564,-0.046093475,-0.020565452,0.028277112,0.03182167,-0.020080857,-0.06339242,0.028772362,0.009691225,0.05347215,0.071302526,-0.06522932,-0.005834101,0.010574777,0.1873066,0.023214547,-0.043080784,-0.059705637,-0.09147402,0.016694158,0.038110297,0.049710635,-0.096949644,-0.08964521,-0.03358294,-0.021713424,-0.029570004,0.032628484,-0.082436375,0.045527756,-0.024141183,0.001733122,-0.035776842,0.012709837,0.08071758,-0.0030326166,-0.03545567,0.038606383,-0.07322799,0.063173674,0.026036892,0.029744426,0.04428774,0.03956756,0.03711403,-0.051289804,0.05609885,-0.032260418,-0.07590705,-0.08793794,-0.007784185,-0.027024807,0.04261391,0.01353261,0.023572432,-0.0027769755,0.038927257,0.0364378,0.18412402,-0.03542058,-0.0101487655,0.034266647,-0.032766797,-0.048802305,-0.02054496,0.05196981,0.060992014,0.029583095,-0.009786138,0.0136460485,0.058895726,-0.028653808,0.017306788,-0.11275625,-0.04916767,-0.005149419,-0.08737462,0.050669666,0.05744142,0.077274926,-0.016250486,5.495323e-33,0.06353593,0.036735687,0.0008247659,0.08834931,0.0024179511,-0.026690425,-0.09822523,0.052480027,0.01199051,0.045608096,-0.033907477,0.06040307,-0.06850776,0.026224112,-0.04783487,-0.05233452,0.013254031,-0.03164357,-0.0337792,-0.08793217,0.003378398,0.12936862,-0.012272833,-0.022722978,-0.02232029,0.047133848,-0.03740552,0.032195482,-0.03170652,0.010675666,0.016973345,0.01950226,-0.0125349555,-0.07778417,-0.027957153,0.10421727,-0.003985623,0.0930609,-0.043200724,-0.0339233,-0.02074889,0.017863173,-0.06717606,-0.045894265,-0.0454805,-0.017423049,0.015980354,0.03478411,-0.12829658,0.031931262,-0.019401802,0.01073195,-0.05711174,-0.11610549,-0.031054782,-0.06416711,0.04679526,-0.0053609563,0.010289066,-0.04913955,-0.030087162,0.056894314,-0.02805347,0.07481934,0.07114048,-0.018722547,0.058609243,-0.02601892,-0.06591638,-0.002869475,-0.033015717,0.049810726,0.043118276,0.044466857,-0.045597576,-0.08565093,0.0369265,-0.00716725,0.030873494,-0.013845964,0.037104797,-0.029188076,0.044065397,0.07316465,0.04433512,0.07012288,0.0686354,-0.020143392,-0.036067247,0.037085485,0.04896434,0.04477654,0.007005066,-0.027712187,0.027599175,-2.00762e-08,-0.026974928,0.06765296,-0.03204481,0.053161602,-0.02774784,-0.090124,-0.013926398,0.08251692,0.020581033,0.02601498,0.059558537,-0.059938103,-0.0030747314,0.0757395,0.067791685,0.016674032,0.09399189,0.0866943,-0.06813951,0.04942875,0.03291076,0.08010202,0.028272556,0.037990134,-0.013063019,0.048055198,0.02227346,-0.026383633,0.08005655,-0.010795773,-0.07143991,0.020193495,0.0589818,-0.00585749,0.0015426902,0.009240758,0.010835575,-0.071328305,0.019601228,0.031696364,-0.02384371,-0.048338883,-0.046914212,-0.03496099,0.06512872,-0.018638982,0.04315306,0.02123137,0.015000247,0.0034402953,-0.043494627,9.7479235e-05,0.013709683,0.013209748,0.03428119,-0.035824254,0.019798402,-0.02987417,0.0042464384,0.15742105,-0.01993579,0.033796452,-0.050146308,0.031839803} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:14.282629+00 2026-01-30 02:01:09.259935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 337 google Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB 1 t 340 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Une honte entre le prix affiché sur le site internet et la finalité. Nous payons 195,29€ sur le site, une fois sur place on nous demande de payer en plus soit 1000€ de caution soit 393€ pour l’assurance.\nNous avons voulu prendre la caution avec la carte de crédit de ma femme mais ils n’ont pas voulu car elle n’était pas à mon nom alors que ma femme était présente. Nous étions dans l’impossibilité de changer de loueur car nous étions au milieu de nulle part avec deux enfants en bas âge 2 et 5 ans. Nous avons donc pas eu le choix de payer les 393€ supplémentaires + 50€ supplémentaires car nous rendons le véhicules hors des horaires d’ouvertures. Donc au lieu de payer 195,29€ la location nous avons eu une facture total de 638,29€ !!!!! + une caution de 200€ pour l’essence !!!!! Je ne vous recommande en aucun cas ce lieu ! Un vrai coût qui n’était pas prévu dans notre budget vacances avec nos enfants ! Dégoûté !!! une honte entre le prix affiché sur le site internet et la finalité. nous payons 195,29€ sur le site, une fois sur place on nous demande de payer en plus soit 1000€ de caution soit 393€ pour l’assurance. nous avons voulu prendre la caution avec la carte de crédit de ma femme mais ils n’ont pas voulu car elle n’était pas à mon nom alors que ma femme était présente. nous étions dans l’impossibilité de changer de loueur car nous étions au milieu de nulle part avec deux enfants en bas âge 2 et 5 ans. nous avons donc pas eu le choix de payer les 393€ supplémentaires + 50€ supplémentaires car nous rendons le véhicules hors des horaires d’ouvertures. donc au lieu de payer 195,29€ la location nous avons eu une facture total de 638,29€ !!!!! + une caution de 200€ pour l’essence !!!!! je ne vous recommande en aucun cas ce lieu ! un vrai coût qui n’était pas prévu dans notre budget vacances avec nos enfants ! dégoûté !!! 1 2025-08-28 01:27:48.341216+00 fr v5.1 P1.03 {} V- I3 CR-N {} {"P1.03": "Une honte entre le prix affiché sur le site internet et la finalité. Nous payons 195,29€ sur le site", "R1.02": "Je ne vous recommande en aucun cas ce lieu ! Un vrai coût qui n’était pas prévu dans notre budget va"} {-0.06978187,0.08427503,-0.046686076,-0.058952622,0.012174742,0.08048414,0.003688978,0.11407829,0.008793652,0.003996448,0.07395391,-0.09819056,0.007580552,-0.045111667,-0.063612826,-0.08688936,0.012933044,0.024553088,0.0035329794,0.055395726,0.0029787843,0.0020930998,0.007199097,0.057984762,-0.058339197,-0.013197091,-0.04654174,0.035149347,0.0024302236,-0.062038355,0.049328223,0.08073202,0.02102103,-0.06184566,-0.0032019985,-0.087201476,-0.029522412,-0.04935884,-0.07366167,0.035733722,-0.05160417,-0.077888824,-0.20672907,-0.00992227,-0.029850092,0.005707192,0.07328514,0.06379616,-0.028881293,-0.055227954,-0.0130330045,-0.043231215,0.08962454,-0.07827933,-0.09874081,-0.09743997,-0.018119767,-0.039037496,0.02987408,-0.002673677,0.07401887,0.019901726,-0.032011624,0.028555416,-0.04155455,-0.011578007,-0.008900949,-0.06669428,-0.028627062,0.05234242,0.06237505,-0.044896647,-0.018519055,-0.016994832,0.015207228,0.07106739,-0.012474226,-0.01427881,-0.008792478,-0.10041487,0.014042886,-0.06369214,0.051302895,-0.024119433,0.00028533873,-0.08559938,0.0017468457,0.04541963,0.08499967,-0.039416254,-0.0038324818,0.034660112,-0.0064686113,-0.023785027,0.05556403,-0.015822055,-0.061110806,0.008842726,0.00883211,0.01630095,0.04900017,0.036803663,-0.015950238,0.0795029,-0.058836058,0.05181257,0.057972856,0.025997657,0.015072846,0.057182938,-0.033578284,-0.007493847,-0.015665727,-0.102438115,-0.092050664,0.029371995,-0.047395572,-0.044376437,0.021199593,0.021749306,0.06165825,-0.055181123,0.017151404,-0.010148634,0.00804965,-0.026095651,0.045067985,9.633493e-33,-0.037347607,0.0191237,-0.03720412,-0.063166276,-0.0064514107,0.052477404,-0.0072383145,0.049723007,0.0294324,-0.026601607,-0.038028285,0.009934853,-0.054409098,-0.053984396,0.039009295,0.0777294,0.07462039,-0.03450506,0.059922565,-0.025229892,-0.041945647,-0.019045914,0.051036336,0.068836115,0.04118285,0.049372684,0.009222229,-0.060561195,0.008713083,0.011411986,-0.0072038667,-0.050128687,0.031973988,-0.025459014,-6.397255e-05,-0.019006802,-0.033852182,-0.0029154925,-0.040679038,-0.023853846,0.04040414,0.015191669,0.044572458,-0.015267634,0.01223298,0.07971479,0.004605908,0.0067528505,0.05605359,0.04445825,-0.07911982,-0.014630334,-0.12871781,0.024147024,-0.029288158,0.023430288,-0.1134949,0.044421688,-0.071694635,-0.08816784,-0.029983234,-0.05364405,-0.02052571,-0.09215466,-0.04132034,0.008326139,0.005590976,0.030708756,-0.038569078,0.0036889364,-0.12374558,0.026659057,0.061725277,0.016503183,-0.010466731,0.072220236,-0.015322167,0.0072791018,0.007716661,-0.045310203,-0.034474432,0.020346718,-0.035474923,0.008201394,0.06653812,-0.046157707,0.017764688,0.06316524,0.022141023,0.033992033,-0.01631677,-0.0068578823,-0.025741396,0.014401434,0.04793147,-1.2908718e-32,-0.03896332,-0.02779838,0.01260358,0.07940127,0.029346028,0.02793468,-0.022067215,0.03912589,0.058493555,-0.01838325,-0.07882112,0.012264364,0.02469896,-0.037529685,0.0024389746,0.040367942,-0.04533856,-0.0668745,-0.06291008,-0.025997344,0.009129546,0.07789287,0.026670674,-0.0130258,-0.02414316,0.017458593,0.0036154108,0.010854242,-0.025153145,0.06664593,0.0063206884,0.03423895,0.01675463,0.09055382,0.010074916,0.020452809,0.07394664,0.10509429,-0.041660696,0.08040852,-0.01693623,-0.009067826,0.034534536,-0.061380804,0.047785707,-0.10140446,0.005640692,-0.1081482,0.04725867,-0.009965901,0.13249107,-0.0014525303,-0.020175526,0.042491194,-0.060306106,-0.006617101,0.048810568,-0.05641002,-0.06602986,-0.023764905,0.07941391,0.11783403,-0.098617226,0.007655879,0.009498556,-0.044694323,-0.09726651,0.03615487,0.0036941569,-0.0247555,0.004457041,-0.03910358,0.010562911,-0.03691596,-0.07609264,-0.02564856,0.052648023,0.051362682,0.053657193,-0.0023534037,-0.10232446,0.010230516,0.021708816,-0.008015966,0.027522353,-0.0022879369,-0.028943803,-0.06788386,-0.0044913543,-0.009591573,-0.048119962,0.08583498,-0.023520408,0.00058740075,-0.07664771,-5.9610734e-08,0.03346272,-0.0066625555,-0.00759365,0.047116525,0.10069372,-0.12862697,-0.03055153,0.014226341,-0.08340811,0.10221989,0.06089714,0.012650507,-0.015268161,-0.04895859,-0.06918905,-0.030668389,0.0121969115,0.034436926,-0.037822336,-0.07989147,0.076847635,0.0072774165,-0.08205687,-0.055017322,-0.050272148,-0.10838612,0.036875393,-0.026538985,0.01692777,-0.048302267,-0.019302681,0.035444725,0.109052666,-0.059601884,0.049938302,-0.05153581,0.0028236944,0.06191464,-0.042685952,0.05361979,0.057766087,-0.042763084,-0.035196293,-0.04723573,0.069603026,-0.035146598,-0.0352361,-0.034631472,0.049529895,0.053610485,-0.0803336,0.014877189,0.0012520638,0.13354738,-0.004894818,-0.0666945,-0.031794354,0.020342128,-0.020079372,0.016140735,0.0031643163,-0.094626226,0.043418996,-0.041589342} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:38:27.656452+00 2026-01-25 01:27:51.007049+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 340 google Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB 1 t 343 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Schwierig zu finden nach Ankunft am Flughafen.\nBei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nicht gemacht habe und bei der Rückgabe zu Problemen geführt hat.\nNicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden. schwierig zu finden nach ankunft am flughafen. bei der vermietung wird kein deutsch gesprochen und man soll selber vorher fotos machen was ich nicht gemacht habe und bei der rückgabe zu problemen geführt hat. nicht gerade günstig 450 € für 16 tage, habe nun einen für 400 € für 4 wochen gefunden. 1 2025-11-26 01:27:48.341222+00 de v5.1 J1.02 {} V- I2 CR-N {} {"A1.02": "Bei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nich", "J1.02": "Schwierig zu finden nach Ankunft am Flughafen.", "P1.02": "Nicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden."} {-0.018528562,0.1418999,-0.06346679,0.02042456,0.0055725263,-0.014278872,0.010029787,0.13647605,-0.057849444,-0.010549463,0.016826885,-0.039280083,0.043128237,-0.010247729,-0.05602445,-0.029914072,-0.0039778054,0.04090363,-0.064438246,0.010306048,-0.057041124,-0.13509627,0.07007946,0.022431588,-0.017430684,-0.053067464,0.01782971,-0.06460488,-0.0003118792,-0.059502784,0.09431248,0.02119239,-0.09882287,-0.027312359,0.03462463,-0.031175314,0.02687063,-0.020607304,-0.027378574,0.045692444,-0.052762292,0.055317592,-0.13272417,-0.044513073,0.059794374,0.044253662,0.071863025,0.064937405,0.025048668,-0.0368757,-0.07612013,0.017737998,-0.024199963,-0.06188788,0.020052912,-0.09581817,0.0066968203,-0.07415136,0.08458338,0.04584574,0.060807787,-0.005491328,-0.07040045,0.014490885,-0.009070257,0.0036148473,-0.023325728,-0.14564598,-0.04869392,0.044553917,0.10055412,-0.060930595,0.011207138,-0.041522026,-0.047169063,0.012098103,0.006010207,-0.0079486845,0.0098180855,-0.05327572,0.033663068,-0.07738843,0.054307178,-0.021503493,0.02181671,-0.004415894,-0.052546527,0.029384114,-0.019668845,-0.04428265,-0.011110979,0.029680202,-0.042685334,-0.013104035,-0.008531832,-0.029830135,-0.012471257,-0.038254764,0.03785041,0.059294336,0.0031881612,-0.068169065,0.044823214,0.031303674,0.019951146,0.083863005,-0.02905646,0.07102841,0.023351906,-0.046083078,-0.027322441,-0.020131478,-0.06799513,-0.059706062,0.07000572,-0.048429146,-0.008508127,-0.07307125,-0.065360904,-0.031254455,0.052419458,-0.05723324,-0.0012135782,-0.07508636,-0.0011030907,-0.023332391,-0.022312501,2.2639987e-32,0.018020654,0.030758671,-0.00028692625,-0.052398566,-0.061197467,0.007065621,0.02955656,-0.014077693,-0.046925593,0.047213797,-0.04833765,-0.0011199876,-0.09271998,0.017911999,0.035703707,-0.09879335,0.112854674,-0.051762514,0.015857147,-0.00070693373,-0.093347825,-0.074154794,0.065617755,0.06424076,0.040727574,0.07068286,-0.015268926,-0.06774088,0.00471523,0.038235277,-0.026309004,0.0736672,-0.020109974,-0.00052075787,-0.08061903,-0.053057004,0.012363189,-0.0074498216,-0.012033369,-0.033125296,0.030011859,0.049395896,-0.07608103,-0.038429357,0.11700603,0.09030624,-0.020620221,0.02337289,0.02690137,0.026968263,-0.029727437,0.039839882,-0.06468657,0.021230645,0.023498133,-0.027805487,-0.077334635,-0.019870887,0.066299275,0.016420549,0.042267963,0.053063158,0.02395145,0.013964109,0.05369265,0.004849128,0.10761539,0.026975444,-0.08319233,0.092258,-0.029017381,0.018354999,0.1225058,-0.03561711,0.08591001,0.0047474285,-0.060508616,0.018378949,-0.05837342,0.020768752,-0.111314006,-0.01014326,0.035445247,-0.0172571,-0.015952498,-0.011066284,0.045956325,0.013416102,0.033350613,0.06436534,0.014761868,0.022475772,-0.04033653,-0.03329853,0.030398076,-2.0971003e-32,0.029635219,0.07123934,-0.090106525,0.047292747,-0.06249425,0.03708266,-0.006169671,0.049364675,-0.056433916,0.016142756,0.0030947034,-0.08520771,-0.044088807,-0.024369363,-0.047388926,0.026110621,0.05075705,-0.035331227,0.015749741,-0.04091221,0.0053470866,-0.027694197,0.010206636,0.050948977,-0.00657234,0.039844323,0.039407805,-0.040317386,-0.09342807,-0.034954894,-0.03340824,0.0041297027,0.05701681,0.028334329,-0.07698092,-0.053045757,0.08436692,0.09624527,0.011935758,-0.028763505,-0.010214611,0.06058224,0.019140488,0.021175316,0.01919234,-0.06739092,-0.06158063,-0.052383184,0.059578475,-0.041076865,0.089040935,-0.03325827,0.028489087,-0.06310567,-0.07980091,-0.024306925,-0.027500309,-0.055490512,-0.0021921445,0.108936615,0.06425132,0.05699409,-0.017582396,0.015891291,0.022734037,0.0020259942,-0.06544306,-0.023682274,0.030254977,0.050379343,0.06351912,-0.022948708,0.1351776,0.092222966,-0.029086089,0.046296764,0.009079188,0.051884405,0.09300772,0.07034049,0.0020605528,0.018051367,-0.036548812,0.007699697,-0.02969302,-0.021232804,-0.024791695,-0.029283222,0.016129727,-0.057549566,-0.0033427926,0.06535957,0.053599436,-0.06027787,0.07799806,-7.126356e-08,0.035421837,-0.023175756,-0.020949384,-0.00920212,0.06698531,-0.0011845644,0.030356934,0.07706797,-0.084177546,0.02053206,0.028138964,-0.039443713,-0.035418227,0.030611807,-0.10001701,-0.0046844133,0.023347327,-0.008629153,0.02348338,-0.014124359,0.021760663,-0.029302608,-0.0014977808,-0.022166375,-0.07141913,-0.0075112046,-0.08798657,-0.01620505,0.0095909955,0.006574726,-0.029695682,0.012749429,0.006500244,4.0695868e-05,0.053464804,-0.106841385,-0.08901882,0.03547789,-0.09574063,-0.027071727,0.033019226,-0.02983804,0.043668903,-0.08224872,-0.069980405,-0.03205892,0.018280426,-0.045063607,0.025010679,0.06050166,-0.0666976,0.004080763,-0.0314306,0.046812266,-0.01303087,0.0037886593,0.077074155,-0.07446565,-0.03873186,-0.024429454,-0.0004223018,-0.104426585,-0.092681475,0.011790493} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:20:12.301314+00 2026-01-25 01:27:51.01676+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 525 google ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB 1 t 528 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nuestra experiencia fue buena. Atienden rápido. Muy amables. Te recogen y te llevan al aeropuerto en un vehículo de la empresa. nuestra experiencia fue buena. atienden rápido. muy amables. te recogen y te llevan al aeropuerto en un vehículo de la empresa. 5 2025-04-30 01:27:48.342409+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Nuestra experiencia fue buena. Atienden rápido. Muy amables.", "J1.01": "Te recogen y te llevan al aeropuerto en un vehículo de la empresa."} {0.0003138506,-0.011967495,0.0035761446,0.017020652,-0.050117694,0.031840704,0.0037436518,0.019062359,-0.031758215,0.016485326,0.088131346,-0.008416673,-0.013702732,-0.029924013,-0.01782088,0.01689075,-0.026305169,-0.021638304,0.056659497,0.019689431,0.08542139,-0.08018214,-0.037937257,0.08909509,-0.034018278,-0.048920315,-0.06751365,0.10711108,-0.021701347,-0.09113668,-0.010834697,0.099193275,0.058859188,-0.010343937,-0.022443987,0.013162565,0.041275125,0.010037629,-0.046013728,0.022602333,-0.15017502,-0.054513305,-0.08987326,-0.0029948617,-0.009303098,-0.071234874,0.075004704,0.10913752,0.032731887,-0.013115177,0.014229008,0.0019639975,0.011166762,-0.0046798717,0.022015579,0.04878939,-0.006163776,-0.033455852,0.060588416,-0.006251945,-0.001352225,0.030805953,-0.052568547,0.037668314,-0.0038889272,-0.031484444,-0.01986177,0.040022243,-0.08566611,-0.030827407,0.11399399,-0.12125015,0.00021203318,0.02882167,-0.02407337,0.08145109,0.02143645,0.045693822,0.0012700801,-0.002220182,0.112524524,-0.015588927,-0.063510664,-0.03530647,0.042196833,-0.020397192,-0.08089174,-0.039208908,0.023655728,0.033166308,-0.055577386,0.02958595,-0.041462153,-0.03978119,0.020375911,0.031876594,-0.04786728,-0.03807889,0.008080202,0.016487256,0.098998666,0.06651913,0.015869416,0.06273602,-0.14165653,-0.019633565,0.070253216,-0.061760053,0.030672565,0.008549051,-0.09452722,0.016644277,-0.06774403,-0.053808305,-0.121919386,0.06439334,-0.047159605,-0.06454903,-0.072470956,-0.11536992,0.009894945,0.0150410915,-0.03812157,-0.01745579,0.009730179,-0.10657279,-0.0018826766,5.973028e-33,-0.03412737,-0.020466274,-0.070557944,0.08505822,0.04016441,0.050940745,-0.065382205,-0.006776694,-0.003233825,-0.04039827,-0.07712637,0.063954934,0.0024951426,-0.005836377,0.09145681,-0.05029122,0.0118228495,0.036218002,-0.004898306,-0.06997885,-0.09642136,-0.030765312,-0.05147575,0.009503041,0.035717066,0.035746936,-0.023467205,-0.05944701,-0.051394146,0.05849008,0.009681797,0.063954115,-0.0131216,-0.08769398,-0.048214883,-0.038729325,0.018216053,0.06579712,0.008004454,-0.014737543,0.0071823685,0.042667035,-0.039965514,0.018286945,-0.0016155776,0.013530117,0.042897835,0.034327433,0.11830107,0.049356956,-0.029956505,-0.0328934,-0.079639696,-0.0885987,-0.009913394,0.039271098,-0.05460978,0.05927154,-0.025214773,-0.045474593,-0.04619996,0.052080024,-0.019368073,-0.046551805,-0.052459646,0.05898993,-0.010790953,0.04217415,0.12028711,0.08619584,-0.059109133,0.00064808945,-0.019631414,0.040665764,0.04129728,-0.0065287817,0.013608182,-0.0013238866,0.0030077782,-0.00015705936,-0.050874423,0.038793985,0.015174745,0.02915407,0.089336626,0.014206439,0.074814565,0.040399615,0.026791833,0.08268386,-0.011427181,0.059825372,0.0065438016,0.03787593,0.057573043,-8.073118e-33,0.06033435,-0.00082584645,0.03312771,-0.019977862,0.014826744,0.072300114,0.0079916315,0.023860335,-0.05759336,-0.049817365,-0.13730597,-0.0774706,0.10333939,-0.0012030166,-0.008622463,0.048485357,-0.0035770505,-0.1031635,-0.073612586,-0.048183292,0.039577994,-0.027205022,0.1178953,0.012025912,-0.045050662,0.0050619305,-0.030560905,0.037700336,-0.02405415,-0.017685423,-0.029628763,-0.00619759,-0.02553272,0.099516705,-0.020244258,0.06980317,0.055138618,0.05566793,-0.014345326,0.024759537,0.042204224,0.03267354,0.047832966,-0.0038693713,0.03256943,0.01895041,-0.0046915393,-0.17512612,0.027715947,-0.07796809,0.09378319,-0.028988084,-0.04710741,0.004489076,0.07927724,-0.021553222,0.010280448,-0.09912009,-0.10733819,-0.03044669,0.019614907,0.022642767,-0.036022816,-0.013487161,0.028389046,-0.032206982,0.008990857,-0.046301883,0.033836327,0.01204252,0.042735193,0.025028268,-0.039702903,0.023856401,-0.057196677,-0.047948558,-0.025055807,0.0014074079,-0.03405191,0.043477282,-0.020727538,0.059646837,0.047279254,-0.024802906,-0.031684287,0.019093659,0.024561146,-0.00999611,0.019905757,-0.012504031,0.0051570395,0.035807736,-0.055641595,-0.08038764,-0.013579064,-3.693449e-08,-0.017476633,-0.03616881,0.064176366,0.042977903,0.054191604,-0.044473737,-0.018314991,0.043690126,0.010241252,-0.035366327,-0.012225651,-0.003365126,0.033182174,0.07328472,0.007326317,-0.00028690568,0.044039167,0.081764966,-0.020313995,-0.04769617,0.060012545,0.05890305,-0.045219034,0.029505787,-0.026807237,-0.0021754354,-0.08682432,-0.03976609,0.015311013,-0.0019417219,-0.06336607,0.040359195,-0.025446527,-0.09646593,-0.09620369,-0.029181244,0.01799643,-0.008621294,-0.09223635,-0.076774724,0.088884346,0.071643524,-0.022218684,-0.0048387893,0.009593244,-0.10338858,-0.06865578,0.021089712,-0.015581412,-0.001757723,0.005220698,-0.0061268755,0.07994545,0.0577062,-0.003904052,-0.06338307,-0.05909367,-0.027034855,-0.021460628,-0.053577896,0.040014613,0.022198489,0.014850287,-0.008855179} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:43:50.655653+00 2026-01-25 01:27:51.73748+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 535 google ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE 1 t 538 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Bueno, super buen trato por parte del personal, como siempre calidad precio razonables, lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ de franquicia resumido, y cuando llegas a la oficina te dicen que tienes que dejar 200€ de franquicia eso lo veo mal, es como si digo te vendo una pulsera por 15€ y cuando llegas al establecimiento te la vendo en 30€ por eso le doy 3 estrellas, de resto todo fenomenal, coches espectaculares, personal espectacular, y precios espectaculares. bueno, super buen trato por parte del personal, como siempre calidad precio razonables, lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ de franquicia resumido, y cuando llegas a la oficina te dicen que tienes que dejar 200€ de franquicia eso lo veo mal, es como si digo te vendo una pulsera por 15€ y cuando llegas al establecimiento te la vendo en 30€ por eso le doy 3 estrellas, de resto todo fenomenal, coches espectaculares, personal espectacular, y precios espectaculares. 3 2025-04-30 01:27:48.342457+00 es v5.1 A1.01 {O1.01,P1.01} V+ I3 CR-N {} {"A1.01": "super buen trato por parte del personal, como siempre calidad precio razonables, de resto todo fenom", "P1.02": "lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ d"} {-0.029043594,-0.061409272,-0.03972878,-0.07499384,-0.043895748,-0.016728608,0.10573324,0.11593803,-0.01636373,0.0028523218,0.014682018,-0.04980699,-0.07772177,-0.033382613,0.02252971,-0.054057386,0.007228086,0.03902985,-0.026490686,0.0020846694,0.17406815,-0.069407925,-0.022267748,0.1242088,-0.0060453517,0.0017424757,-0.0018224916,-0.009564124,-0.037602168,-0.090928584,-0.010660432,0.06435605,0.056645922,-0.025144828,-0.011549289,-0.062968545,0.01747857,-0.12546347,-0.11771195,0.055893242,-0.092764385,-0.047944058,-0.025161555,-0.04499999,0.007344936,-0.037904408,0.013406539,0.08137887,-0.014687483,-0.00035052004,-0.10392524,-0.057243567,-0.055438645,0.011369593,0.015946876,0.0074925837,-0.039990958,0.029234137,0.08261265,0.06997928,0.03004828,-0.0075337137,0.002279207,-0.0010160294,0.017408269,0.020313594,0.016572574,-0.0055079563,-0.025613228,0.111334525,0.035512082,-0.074073136,0.07292717,0.064349875,0.0051420825,0.044157155,0.059237972,-0.027558357,-0.0033808178,-0.0010965071,0.024601646,-0.071019106,-0.028600536,-0.038078193,0.03635579,-0.011410248,-0.0031609565,0.032018404,0.036131818,-0.02724766,-0.027072286,0.067960456,-0.02805077,-0.0044052317,-0.06833779,0.038901497,0.07433543,-0.09666568,0.045457546,-0.0055431104,0.09245441,-0.004682614,0.10113972,0.02221617,-0.04181659,-0.044203218,0.035208054,0.05734157,0.031506263,0.08968193,-0.06306396,-0.023105094,-0.049182665,-0.0838997,-0.051184002,0.023846207,-0.037674684,-0.09314281,0.072994694,-0.064395346,0.019716745,-0.024696747,-0.033256337,-0.05274904,-0.0045560165,-0.041762646,0.018939953,1.5609995e-32,-0.0077069914,0.07874517,-0.010236249,-0.020992083,-0.027341807,0.03575335,-0.03370516,0.057927325,-0.037050176,-0.009227856,-0.059453987,0.12524946,-0.010079468,0.111989245,0.070895195,-0.045348402,-0.011717831,0.0007258796,0.09106636,0.017904472,-0.070581,-0.0060001863,0.011706332,0.09057048,-0.03791854,0.017949382,-0.0449913,0.0051117977,-0.038908735,0.031338964,-0.011800751,0.023024254,0.024246106,-0.07429735,-0.057033498,-0.02837746,0.018526329,-0.0062161726,0.016641766,0.019260434,0.058416832,0.050310288,-0.017389633,0.010948975,0.00022329057,0.011758433,-0.010826269,0.044066064,0.050041605,-0.049759686,-0.08811199,-0.039782777,-0.06947289,-0.008969803,-0.01860853,0.051125217,-0.059438806,0.059575126,-0.006754901,-0.033558402,-0.007766329,-0.005241722,0.10059642,-0.023405807,-0.071157105,-0.009832974,-0.0070487093,-0.0055949646,0.0709481,0.011576739,-0.08245787,-0.0066728974,0.08964619,-0.034192316,0.048573095,0.06522609,0.005116495,0.04670943,-0.0066383425,0.029330142,-0.053535245,0.012383539,0.02983983,0.031784084,0.03674651,0.080611266,0.015875153,0.0098559735,0.017616723,0.08032926,-0.04615166,0.005014809,0.0812346,-0.09605407,-0.017229736,-1.5432486e-32,-0.0037706755,0.027501045,0.06824619,0.053035237,0.043137245,0.009749432,0.040881637,0.0012495479,0.044118006,-0.06467347,0.0061109723,-0.09506639,0.09603514,-0.07081253,-0.03417738,0.08535699,-0.054632463,-0.12301828,-0.026133176,-0.058761254,-0.0034789643,0.031142035,0.021089777,0.06269947,-0.07309508,-0.0480147,-0.047136247,0.0038338671,-0.00990812,0.006672549,0.061564106,-0.05440921,-0.011390932,0.02170517,-0.06533151,0.0027923663,0.0014771777,0.08526478,0.036089003,0.075151436,-0.026780268,0.05360228,0.024816938,-0.03763651,-0.015828403,-0.036478832,0.007416683,-0.1801542,0.025710743,-0.054985408,0.09364891,-0.056075715,-0.08758699,-0.06609036,-0.059424676,0.012116991,-0.03432764,-0.08758357,-0.08695291,0.0037677705,0.06149503,0.005198255,-0.023539128,-0.042555977,0.08066548,0.03630464,-0.06624814,-0.007418012,0.011258542,0.000418149,0.07784452,-0.013753848,-0.02902699,0.010563679,-0.049156092,-0.022677513,-0.08159589,-0.0046121227,-0.0027019724,0.022467887,-0.027692221,0.002159983,-0.025372205,-0.05422477,0.012137462,-0.016696818,-0.03393325,0.014238222,-0.017366257,-0.0071018278,-0.059832014,0.007028002,-0.08135098,0.008289529,0.07328555,-5.9094912e-08,0.033268116,-0.03387272,-0.008081546,0.025190236,0.043590292,-0.034445312,0.009811882,0.03098273,0.062327445,0.026876323,-0.0424904,-0.03249121,-0.029532686,0.040474318,-0.00048186968,0.017922899,-0.0053790454,0.077622734,-0.039868783,-0.09376513,0.083327524,0.005671158,-0.05200898,-0.030596234,0.018780094,0.013424758,-0.017383058,0.013575582,-0.015532334,0.029680338,-0.05498456,-0.011385098,0.08084866,-0.04834426,0.0055486728,-0.06200267,-0.03178174,0.038253516,-0.11996655,0.03626888,0.09488156,-0.07364573,-0.11912473,0.033407025,-0.04079398,-0.11011526,-0.005242239,0.02383955,-0.0018266289,0.08068929,-0.027186995,-0.011423075,-0.002767132,-0.041242782,0.008902727,-0.015621345,-0.009194172,0.051237896,-0.029623473,0.022779826,0.060297325,-0.006852591,0.06290406,-0.056494553} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:43:39.315706+00 2026-01-25 01:27:51.77536+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1205 google ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB 1 t 1208 Soho Club unknown I had the best night in my life\nAmazing atmosphere\nEveryone is Super friendly\nCan’t wait to come again 💕 i had the best night in my life amazing atmosphere everyone is super friendly can’t wait to come again 💕 5 2025-07-03 18:34:31.336452+00 en v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "I had the best night in my life Amazing atmosphere", "P1.01": "Everyone is Super friendly", "R2.01": "Can’t wait to come again 💕"} {-0.026562229,-0.040831544,0.045462668,0.016773101,0.066501066,-0.05833363,0.04805955,-0.06887136,-0.017043,-0.025321959,-0.00027999803,0.0029646202,0.062090416,0.053776108,0.009245595,0.006750423,0.084519334,-0.122924484,-0.05411007,-0.013949458,-0.033012792,0.008757059,-0.0073369076,0.042957034,-0.041100908,0.006486814,0.012468416,0.032797184,0.06895196,-0.07308092,-0.09691709,0.077972084,-0.039830852,0.010103178,0.049061704,0.08754004,0.021082666,-0.14484803,0.049110398,0.08753571,0.019063633,0.057333328,0.033030238,-0.040717036,-0.0055583525,-0.016239125,0.018024566,-0.07420265,0.057086796,0.022661256,0.03237487,0.048257105,0.00015270185,0.011034795,0.079991706,0.121753566,-0.027676785,-0.061813824,0.026201123,-0.02172566,-0.081194,0.041430257,0.060279593,-0.043638658,0.053139895,-0.02723417,-0.086761884,0.11095911,0.042044323,0.05991017,-0.09323892,0.032910816,0.05032323,0.0027456614,-0.058807064,0.016189085,-0.0023615067,-0.051837403,0.021693753,0.06518029,0.0797651,-0.05519652,-0.048746374,0.020372324,-0.077473626,-0.10448218,0.036819384,0.026111402,0.03594806,0.049639653,0.0105552785,0.06652772,-0.076553725,0.03232873,-0.016503548,-0.054588724,0.015160655,-0.0035179807,-0.036351956,0.06555541,0.038628932,0.037404653,-0.0009834615,-0.007264771,0.015213971,-0.026383009,0.038719155,0.047497932,0.017936047,-0.00097524066,-0.010192281,0.064910255,0.026235536,0.006029085,0.0062727127,0.048380192,0.009135927,0.036635023,-0.05305255,-0.008975829,0.047975615,0.062101543,0.06345508,-0.0046609137,0.050227985,-0.0045091817,0.0700412,-2.7204795e-33,-0.010949138,0.041479994,-0.009648759,0.022044368,0.059237078,0.0069852797,-0.064460725,0.03701579,-0.101528354,-0.0523903,-0.029346278,0.0034664688,0.018233726,-0.06372339,-0.08177621,0.05264829,-0.03851358,-0.0204379,-0.041589625,0.03774105,-0.07526952,-0.06372864,0.005322378,0.07275281,-0.031136235,-0.005366756,0.056248657,0.0027953854,0.061300248,0.0011226463,0.04859412,0.030939985,0.025466383,0.046334624,0.0009825823,0.05403048,0.00020898556,-0.050745834,-0.0014573175,0.019796437,-0.0070045693,0.039378513,0.043295145,-0.047847286,-0.0045179543,0.012121293,-0.03253592,0.061070923,-0.07114509,-0.07308631,-0.14053176,0.006040013,-0.018775793,0.030743266,-0.017619131,-0.01630641,-0.054220315,0.06538614,-0.029989557,0.027554313,0.020263998,-0.0029960407,0.05968132,-0.11715006,0.07706286,-0.08015812,-0.003994505,0.000978239,-0.01927875,-0.0759373,0.025181182,-0.018449012,-0.025648125,-0.007964238,0.028411455,-0.020534482,-0.0039083185,-0.018176123,0.07401123,0.017892873,-0.02415883,0.028606707,-0.013334042,-0.09835148,0.049325626,0.016740194,0.044180386,-0.15218219,-0.0689319,0.05786933,-0.06756063,-0.051003367,0.13938597,-0.0056585497,-0.00012177185,6.24874e-34,0.16902715,-0.0025505705,-0.0011965538,-0.041641112,0.008808059,-0.033398572,-0.07169908,0.04647818,-0.0377521,0.06450152,0.055433586,0.08724398,0.114486225,0.0059769372,-0.014526139,-0.09311978,0.06083687,0.028733592,-0.006451656,0.03647162,-0.012109236,0.0027814312,-0.0041994555,-0.016923565,-0.03181428,0.039702475,0.024650155,0.07593717,-0.04649984,-0.053456448,0.024730178,0.025233213,-0.12550357,0.083148114,0.07719261,0.07440692,0.030786285,-0.033178095,-0.079735056,0.006277427,-0.09455412,-0.0042212657,-0.004862824,-0.018780947,-0.00911105,0.041033093,0.014544223,-0.06586383,-0.06666748,-0.028095266,0.020965325,-0.008864292,-0.0656963,0.007343835,0.0107213855,-0.01148536,0.052296594,0.0045624166,-0.0029377586,-0.0008084465,-0.054543793,-0.04949547,-0.04443605,0.060698252,0.05567761,-0.06582537,-0.041519698,0.012889042,-0.051161405,-0.024633348,-0.07865227,0.032148816,-0.11495292,0.13666688,0.02381473,-0.022883613,0.029608358,-0.07891602,-0.013464058,-0.012591423,-0.015677875,0.10651102,-0.038345844,-0.0275838,0.032732077,0.0013192444,0.12336564,-0.022383079,0.034239117,0.010230844,-0.04081462,-0.0037702597,-0.03534293,-0.070316,-0.033603758,-2.7152613e-08,-0.05601384,0.026049333,-0.040150646,-0.020343093,0.008394261,-0.067724966,-0.008780276,0.004367245,-0.05425243,0.037500348,-0.03991471,0.031827796,0.04600141,-0.011613503,0.08598409,-0.007013318,0.009708271,-0.013035134,0.019665224,-0.081420824,-0.009076914,0.0063453633,-0.059547283,0.012262444,0.07057242,-0.011394603,0.028371882,-0.04816555,0.0022043758,0.003555746,-0.035877235,-0.052253548,-0.023811216,0.01698559,-0.05314771,-0.007984221,-0.018337961,-0.028000455,0.06798538,-0.029567467,-0.03769828,-0.04958217,-0.07506069,-0.016779501,-0.05624445,0.021648612,0.11673675,0.036205135,-0.07291904,-0.0023573483,-0.018275494,-0.07436024,0.016426405,0.03177458,0.00873484,-0.013020775,-0.07244906,-3.968338e-05,0.06742626,0.00013981636,0.05166091,0.04201564,-0.1265421,-0.045790672} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:42:18.84635+00 2026-01-29 18:36:00.480349+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1206 google ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB 1 t 1209 Soho Club unknown I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ Recomend to visit for everybody! 😎 i really love that place! staff is very friendly! and ofc the best of the best bartender is miglė! ❤️ she’s soo kind and very joyful! ❤️ recomend to visit for everybody! 😎 5 2025-01-29 18:34:31.336452+00 en v5.1 P1.01 {} V+ I3 CR-N {Miglė} {"P1.01": "I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤"} {0.0024757877,-0.047301672,-0.01137719,-0.009076558,-0.09794069,0.010000754,0.06709468,-0.087697856,-0.011084069,-0.03502893,-0.010165298,-0.03624482,0.02874468,0.0056623504,0.00086004176,-0.02227823,0.06605299,-0.08550408,0.091461256,-0.028467307,-0.0497499,-0.06617891,0.0037461554,0.038585313,-0.073298275,-0.0050343135,-0.052103437,0.057102416,-0.0060210717,-0.040346157,-0.012504553,0.07694202,-0.060351346,0.0042215683,-0.07645879,0.05722352,0.07206373,-0.07391799,0.017312957,0.112700015,-0.020641815,0.09575864,-0.030319965,-0.04662742,0.008731137,0.011754434,-0.03855103,-0.032224666,0.031986155,-0.016265636,-0.0042227963,0.03509494,0.10452304,-0.085533395,0.019394608,0.025472224,-0.015740514,-0.1122887,0.039702587,0.036690455,0.0207444,0.05645942,-0.06115347,0.008355062,0.0126960445,-0.05654728,-0.10349916,0.09754729,0.03513832,-0.09911715,-0.035640333,-0.062371343,0.042691562,0.009939312,0.004358389,-0.04449062,0.010168515,0.018559244,-0.04093184,0.01729636,-0.017489003,-0.022826718,0.046418108,0.0704352,-0.048795383,-0.07337018,0.033832844,-0.04592561,0.05504264,0.0075055244,0.027472116,0.10002246,-0.087073326,-0.07596632,0.034844164,0.009821721,0.006412485,0.017155487,-0.061906427,0.038392454,0.002005213,0.11005295,-0.0051513845,-0.03327971,-0.039748352,0.035186738,0.026974404,0.06676239,0.03603598,-0.05016213,0.03157382,0.024275666,0.0059505166,-0.05368664,-0.03647938,7.1483286e-05,0.04683294,-0.030395856,-0.060467254,-0.07763124,0.035413444,0.088307716,-0.025611019,0.0415596,-0.014624849,0.04103394,0.025245259,-1.0177334e-33,-0.07131699,0.020604732,0.03740898,0.004424569,0.06385559,-0.00079482043,-0.073710725,-0.013726659,-0.07704925,-0.026715137,0.034341067,-0.08213659,-0.03977443,-0.008099219,0.018063242,0.017254867,0.029595084,-0.04384519,-0.054583207,-0.03551224,-0.006052632,-0.033077687,0.014089137,0.013120639,-0.0006041591,0.04875296,0.10041184,0.021375593,0.052538946,0.032064028,-0.032728937,0.029941708,-5.4715387e-05,-0.019820357,-0.03707456,0.026253546,-0.071475334,-0.054398358,-0.043447174,0.0073277657,0.03789773,0.023656271,0.059897892,0.100536995,-0.08631165,0.052128106,-0.028915621,-0.031326916,0.10938093,0.009016617,-0.06435627,-0.014734895,-0.033875868,0.11738739,0.040564142,0.019799512,-0.015620407,0.056698967,0.077281274,-0.07781931,0.034685567,0.025805408,-0.03385988,-0.020251399,0.036116306,-0.03930284,-0.01930555,-0.0028311915,0.10441703,-0.077477336,-0.052103717,0.059739742,0.050527304,0.016385406,-0.023839617,0.041889697,-0.03532006,0.02205492,0.04605334,0.07154456,-0.006067674,0.012582253,0.016280184,0.032488212,0.012734713,-0.054949038,0.14036421,-0.104885735,-0.12213696,0.049009163,-0.0051504197,0.02204434,0.09345097,-0.0066940906,-0.008080192,-1.6127132e-33,0.07067228,-0.05786662,0.019632682,-0.053457156,-0.06714612,-0.02968277,-0.06285799,0.01413679,-0.012454214,0.0344272,-0.06327563,0.055822793,0.0013099245,-0.043623187,-0.058841866,0.04812393,0.06783176,0.02392575,-0.06053066,-0.107968025,-0.00023430961,0.040896494,0.0031803055,-0.016853688,-0.055206183,0.04052237,-0.005864633,-0.023756485,-0.061480038,-0.06118376,-0.05381868,-0.00444641,0.011251543,-0.036573865,0.03333048,0.06243755,0.023122871,-0.06362072,-0.023537165,0.07664232,0.047822513,-0.040172,-0.025458893,0.01870611,0.05404769,0.02807589,-0.024177022,-0.05265487,-0.01751605,-0.066056535,0.0069810194,-0.019320648,-0.040527716,-0.012725148,0.026410313,-0.042387065,0.07858274,-0.0005014318,-0.07225964,-0.08793592,-0.037348986,0.08338699,0.045738343,0.09545033,0.095673256,-0.06288564,-0.034260362,-0.025997244,-0.04497725,-0.050263546,-0.04082498,0.01987369,-0.032382295,0.08584195,0.018655898,-0.0164977,0.114027366,-0.059081316,-0.01767058,0.0221523,0.022748394,0.016094409,0.0059296354,0.028647456,0.033801887,0.006534241,0.06356346,0.0152635975,0.035132673,0.03497425,0.02906634,0.07047284,-0.087108575,-0.12098351,0.07376117,-2.6887587e-08,-0.022151168,0.0122032575,-0.022024592,0.022566939,-0.052885365,-0.12911563,-0.022172116,-0.0028004374,-0.08667923,0.011211532,0.011819199,0.029575193,-0.06757897,-0.0035263817,0.013254057,0.008731229,0.05855413,0.05852206,-0.0152980015,-0.023405364,-0.020857552,0.05424861,-0.018187946,-0.008990172,-0.0867896,-0.072338566,0.0035000336,-0.0051424503,0.033949513,-0.10730559,-0.012942833,0.0017798583,-0.03134511,0.035249922,-0.015209297,0.009587341,-0.061384212,-0.061892036,0.0040659932,0.0028449686,-0.063336276,-0.16538304,-0.049999587,-0.0108071035,-0.058783684,0.045607816,0.06428215,0.07306548,0.018860372,0.0352184,-0.06076417,0.041060876,0.06107048,-0.042017985,0.0013770392,0.045632124,-0.021677574,-0.0649131,0.06166662,0.024524342,0.08157792,0.051669195,-0.03692532,0.06430136} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:42:27.00166+00 2026-01-29 18:36:00.482214+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1410 google ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE 1 t 1413 Go Karts Mar Menor unknown Nice location, a variety of different effects in the motors. Maybe a longer straight to be able to fully use the effects of the faster cars. I think U will leave pleased- Enjoy! nice location, a variety of different effects in the motors. maybe a longer straight to be able to fully use the effects of the faster cars. i think u will leave pleased- enjoy! 4 2024-01-31 01:52:39.833374+00 en v5.1 E1.03 {O4.03} V- I2 CR-N {} {"A4.01": "Nice location", "E1.03": "Maybe a longer straight to be able to fully use the effects of the faster cars.", "O2.01": "a variety of different effects in the motors.", "V4.03": "I think U will leave pleased- Enjoy!"} {0.0012535232,0.054846164,0.052745134,-0.03441542,0.0064185685,0.012355114,-0.10010365,0.033991843,-0.04821773,-0.05145481,0.095386915,0.11152267,-0.020495186,-0.051807135,0.0038528831,0.054358553,0.07067471,0.003988117,-0.04021606,0.032180965,0.020453013,-0.057649173,0.0036591543,0.059565447,-0.102174856,0.04786183,-0.07199099,0.14026263,0.0061541046,-0.08942695,-0.053009883,0.048405673,0.04059668,-0.03752203,-0.021907471,-0.056019377,0.012798029,-0.04140946,0.043059617,-0.0859366,0.028810196,-0.014519505,0.10428201,0.06897983,-0.046778694,0.060906023,0.05420506,-0.06790833,0.04944339,-0.048406295,-0.016446752,-0.06899723,0.01994883,-0.07947061,-0.06637684,-0.008719955,-0.058538392,0.0014931568,-0.031927876,-0.057108503,0.0668978,0.010223828,-0.014904992,0.014316767,0.024180332,-0.10980828,-0.050990928,-0.008593706,-0.010387347,-0.0031475767,0.04692895,0.0051841303,-0.037147358,-0.08422428,-0.02349226,-0.061391227,0.016848516,0.03209706,-0.026450355,-0.10863565,0.051730342,-0.07470681,0.01742119,0.005475486,-0.08679153,-0.024304869,0.029008897,-0.06349631,-0.02178029,-0.0049158796,0.07349265,-0.0062781954,-0.0487385,-0.013967034,-0.05169745,0.0022238824,-0.056594152,0.00020608101,0.027096255,-0.0027341826,0.051739912,0.040101893,-0.020292457,0.029294213,-0.07261924,0.11663186,-0.109609954,0.07922924,-0.032255754,-0.0031888862,0.016133811,0.07357219,-0.033660527,0.019799711,-0.083741024,-0.0038404546,-0.04019608,0.01871041,0.046503913,0.02774268,0.02465942,-0.058801368,-0.0028591957,0.046040613,0.042103894,0.036464542,-0.023653394,-3.9329918e-33,-0.06600561,0.042707853,0.035350136,0.016902875,0.08379078,0.010067112,-0.032169715,0.020201294,-0.06555915,0.06569574,-0.027407676,-0.0043932376,-0.011464246,-0.009406553,0.0040026465,-0.11624041,-0.02226693,-0.003199653,-0.129904,-0.018456845,0.017426664,-0.027977757,-0.023835475,0.050890893,0.057825845,-0.04352303,-0.008643679,0.04983071,-0.030457843,0.03508388,-0.052505955,0.08038342,-0.064022005,0.022135567,0.009608628,-0.015961414,-0.018453581,-0.059036948,0.009992947,0.02484422,0.022647636,-0.036062136,-0.053078663,0.036609333,-0.0610438,0.06881791,0.027914116,0.022521587,0.08868933,0.03142224,-0.041068852,-0.0057502263,-0.00045974096,-0.020963503,0.06523647,0.03423887,0.050987847,-0.0026984473,-0.033640776,0.024132498,-0.016022133,0.08479976,-0.020082494,-0.10464643,-0.021188749,0.011300489,0.009678627,0.021555526,0.08830108,0.07072326,-0.0263466,-0.06318961,0.057380974,0.09366757,0.0533809,-0.034895945,-0.124564104,0.015046562,-0.019495679,-0.018917821,-0.014018777,0.07609103,-0.11175438,-0.04608538,0.056478817,-0.031815376,-0.037989948,-0.076086655,0.03288984,-0.03174762,0.0034693482,0.039139494,0.030637287,0.04030367,-0.01602573,1.16126545e-33,0.06561231,-0.030555587,0.025085056,0.0072908406,0.03833153,0.06235273,0.06643479,0.13164422,-0.031264357,0.0584441,-0.0037936973,0.02150112,-0.023436451,-0.049354985,-0.0022796376,-0.025729507,0.06990089,-0.09903912,-0.051111266,-0.05560648,0.07323064,0.008473832,0.014694506,-0.034484178,0.008216639,-0.010376318,-0.052897263,-0.027712336,0.030427346,0.008524567,-0.10450933,-0.011750563,-0.023312652,-0.00079591095,-0.0061465115,-0.0011746306,-0.016281897,-0.024612738,0.025746204,-0.038422644,-0.029707257,-0.09268111,0.042613655,0.059400134,0.051083334,-0.013985945,0.0010740592,-0.01798214,0.01764142,0.080427796,0.05394419,-0.0031032623,0.004479758,0.014836437,0.040854212,-0.12391733,0.05311469,-0.090126984,0.029644083,0.014054063,-0.030802842,-0.047411744,-0.065989934,-0.012936202,0.0028168466,-0.047638547,0.0147789195,-0.00037017412,0.060555343,-0.03319707,-0.038546704,0.00410498,-0.03853183,0.037904296,-0.07347235,-0.055956688,0.1519492,0.0031749054,0.029726584,0.008329656,-0.02263214,-0.0013668819,0.03873329,-0.011169,-0.0313084,0.0368307,-0.07075706,0.028690958,0.07664848,-0.025541749,0.052711625,0.109050915,0.006631727,-0.0047888313,-0.06949094,-2.8946253e-08,0.0534985,0.0024373755,0.018450333,0.028843405,0.0024610413,0.009079663,-0.041046686,0.11309572,-0.059308648,-0.0034414176,0.086979784,0.05806115,0.06401158,0.026318137,-0.015923746,0.035585023,-0.05094075,0.03694012,0.023818268,0.017402979,0.007002919,0.108237736,-0.008630979,0.042364076,-0.026679957,-0.010737519,-0.020605627,-0.011045249,-0.036948968,-0.13160355,-0.02976009,0.04727617,0.05689711,0.028995551,0.014743807,-0.037726644,-0.076017775,0.0563392,-0.03672081,0.033050213,-0.011659936,-0.13541989,-0.016682995,0.05612553,0.01695227,-0.036583163,0.02941846,-0.05794077,-0.07526725,0.034828365,-0.05813375,0.026941005,0.014199862,0.07493316,0.08079006,0.045632675,-0.06767653,-0.059144694,-0.0726769,0.063338704,0.010335552,0.028910005,-0.057562854,0.08052107} 0.825 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:40.321947+00 2026-01-30 02:01:09.266746+00 22c747a6-b913-4ae4-82bc-14b4195008b6 318 google Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB 1 t 321 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Auténtica estafa y cero profesionalidad.\nHice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. Me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. Ni el 50%, ni el 10%, ni un céntimo.\n\nPrometen una cosa por teléfono y luego desaparecen.\nNo respetan sus propias políticas.\nNo dan soluciones.\nNo muestran transparencia.\nSimplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse.\n\nUna empresa así no merece la confianza de ningún cliente.\nPésima gestión, trato nulo y una sensación clara de haber sido engañado.\n\nNo volveré jamás.\nY ojalá esta reseña ayude a otros a evitar pasar por lo mismo. auténtica estafa y cero profesionalidad. hice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. ni el 50%, ni el 10%, ni un céntimo. prometen una cosa por teléfono y luego desaparecen. no respetan sus propias políticas. no dan soluciones. no muestran transparencia. simplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse. una empresa así no merece la confianza de ningún cliente. pésima gestión, trato nulo y una sensación clara de haber sido engañado. no volveré jamás. y ojalá esta reseña ayude a otros a evitar pasar por lo mismo. 1 2025-11-26 01:27:48.341119+00 es v5.1 P1.03 {A1.03,V1.03} V- I3 CR-N {} {"P1.03": "Auténtica estafa y cero profesionalidad. Hice una reserva por error y llamé de inmediato, en cuestió", "R1.02": "Una empresa así no merece la confianza de ningún cliente. Pésima gestión, trato nulo y una sensación"} {-0.017429838,0.032015,-0.022371732,-0.085481144,-0.07877152,-0.04527571,0.09562991,0.080127425,0.03413174,0.033598356,0.06519656,-0.01602513,-0.0072748098,0.03313703,0.017397728,-0.017391512,0.029668571,-0.011527138,-0.058935795,0.033799686,0.038085517,-0.058523655,-0.04238824,0.018982086,0.0038907605,-0.06486405,0.00096263253,0.015678596,-0.050390884,-0.044766176,-0.06782735,0.06754253,0.035853557,-0.025449693,-0.04537889,0.006341608,0.032197606,-0.06315353,-0.06491265,0.065832645,-0.022095693,-0.01617973,-0.095809355,0.022531709,-0.032314114,-0.08273773,0.05032003,0.08676647,0.026672496,-0.006602584,-0.09416387,0.023604507,0.036490656,0.028546473,-0.03641682,-0.063298374,-0.023733161,0.057407286,0.10110308,0.01267372,0.0016372532,0.016449703,-0.008049255,0.0034566268,0.059541997,0.017909968,-0.010529302,-0.026594162,-0.12110776,0.020423513,0.06745888,-0.09220806,0.016669989,-0.008800346,-0.061206125,0.058909297,0.039109137,0.07584399,0.040877882,-0.028815962,0.05137619,0.01121944,0.023721186,-0.01450187,-0.016430216,-0.01006877,0.009067346,0.08570205,0.016612928,-0.029214019,-0.006526921,0.1410083,-0.07306497,-0.035613034,0.008466804,0.030118104,-0.0715771,-0.076760404,-0.01201497,0.005056783,0.053419635,0.064430684,0.029271742,-0.036916718,-0.13681285,0.027360622,-0.020779641,0.033656627,0.06448132,0.15000144,-0.07819821,0.0031123871,-0.07533208,-0.0012707642,-0.053336106,-0.025198586,-0.07846961,0.012286294,0.04112715,-0.06451274,0.025598483,0.00849443,-0.03722999,-0.033820517,0.048925217,-0.012104421,0.07019475,1.5527641e-32,-0.010360112,0.013613832,-0.03461088,0.024319377,-0.004790967,0.02664261,0.0055958005,0.06693098,-0.075814925,-0.026252309,-0.07773968,0.056251034,-0.014650704,-0.015007835,0.026621018,0.011076384,0.0074614272,0.0017032531,0.022853695,-0.0059948293,-0.028977178,0.014756848,0.016007585,0.015026398,0.010339507,-0.006349576,-0.038730025,-0.050809335,0.019435884,0.016654892,-0.011002791,-0.067178674,0.060996078,-0.06992312,0.0060929228,-0.085085064,0.045723364,0.041478556,-0.08975578,-0.055945687,-0.086732924,0.07969928,-0.016294152,0.037299056,-0.01959861,0.015942905,0.07430962,-0.05512861,0.039681975,0.051566053,-0.06854453,-0.016221467,-0.02259152,-0.020699091,0.04112351,0.009262194,-0.063495874,0.047588866,-0.0008122413,-0.13432758,0.016969994,0.021811554,-0.0033442327,1.3788119e-06,-0.013443468,-0.026874792,-0.075802624,-0.031788506,0.1266259,0.015776806,-0.049630012,0.028788192,0.0074188807,0.04495821,-0.025768926,0.011719296,0.024573188,0.023681264,0.0026291052,0.012422024,0.04736464,-0.017262733,0.016224537,-0.019072032,0.092047684,0.05706891,0.07550318,-0.007829194,-0.06475523,0.11419114,0.047674097,0.06382609,-0.042734448,-0.0028538785,0.029293055,-1.440397e-32,-0.073623076,0.02880599,-0.0130848875,0.018366106,-0.034146838,0.0049366066,0.049921706,-0.00017118905,0.026891256,-0.10871123,-0.036485747,-0.095756784,0.0693455,0.01118806,-0.111180715,0.010017159,-0.032518413,-0.05447996,-0.034982897,-0.079525545,0.054403637,0.054867126,-0.007721022,0.051152088,0.04128839,-0.046211217,-0.04711542,0.046161912,-0.03442095,-0.063393734,0.10805931,0.013084674,0.012741362,0.058896877,0.050806955,0.0011745483,0.07644546,0.02686762,0.032689087,0.05751624,0.06585493,0.044405792,-0.03772424,-0.04483437,-0.038750205,-0.02375155,0.01465037,-0.15811709,-0.047495596,-0.051814646,0.15098017,-0.013127301,0.0376577,0.00446858,0.033530977,0.033939194,0.06573967,-0.06124537,-0.01977281,-0.0024884022,0.064884834,0.026699796,0.005675296,-0.026104316,0.083855145,-0.018378679,0.018717857,0.064637676,0.05145413,0.035132978,0.0866462,-0.014942899,-0.048610456,-0.06578569,0.042580467,0.041361474,-0.05013906,-0.034448434,-0.05010359,0.032032233,-0.018345896,0.05491664,-0.02118871,-0.042782534,-0.010128277,0.049553934,0.04456996,0.0050461683,-0.0145531725,0.018027887,-0.006648242,-0.018956114,-0.034048233,0.038133387,-0.060534447,-6.446816e-08,-0.029169332,-0.06895831,0.015402879,-0.02736507,0.018593226,-0.010742985,0.035132244,-0.01987439,0.004666064,0.017635968,0.022756465,-0.075857334,-0.14826354,0.037850447,0.040683728,-0.006678225,0.09675244,0.017853437,-0.041147202,0.0043847645,0.12567534,0.024412196,-0.07107888,-0.02918499,0.0035621976,-0.001806773,0.0025224895,0.008720945,-0.061807442,-0.05184661,-0.09057178,-0.046861675,0.0032308772,-0.09363488,-0.14559062,-0.029936835,0.044263843,-0.018153073,-0.038524464,-0.029964313,0.12555368,0.0023002888,-0.026695624,-0.014670568,-0.05695185,-0.044291914,-0.0049307123,-0.001650914,0.0016809887,-0.029135767,-0.047984328,-0.036725804,0.018207135,0.01195121,-0.04817805,-0.08919066,0.07055613,0.04928391,-0.04721128,-0.040846776,0.07579154,0.09886412,-0.027774578,-0.0038297214} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:21:09.159024+00 2026-01-25 01:27:50.941398+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 343 google ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB 1 t 346 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir haben das Auto einen Tag vor der Einreise über Check24 gebucht. Die Vollkasko war bereits inbegriffen. Für 4 Tage kostete ein Mittelklassewagen ca. 100 €.\n\nEs war etwas schwierig, die Shuttlebus-Haltestelle zu finden. Man findet vielleicht die richtige Haltestelle, aber es ist kein Bus da. Dann ist man unsicher, ob es wirklich der richtige Treffpunkt ist. Man möchte schließlich nicht umsonst warten. Ein paar Fotos vom Treffpunkt und dem Bus selbst hinzuzufügen, wäre sehr hilfreich! Wir sind stattdessen zu Fuß zur Anmeldestelle gegangen (ca. 15-30 Minuten).\n\nDort wurden wir herzlich begrüßt. Es gab mehrere Anmeldeschalter, aber es war nicht viel los, sodass die Anmeldung maximal 10 Minuten gedauert hat und wir direkt losfahren konnten. Das Auto war fast neu, makellos und sehr gepflegt.\n\nZum Schluss verlief die Schlüsselübergabe unkompliziert, und innerhalb von 10 Minuten waren wir am Flughafen. Dieses Mal haben wir den Shuttlebus genommen. wir haben das auto einen tag vor der einreise über check24 gebucht. die vollkasko war bereits inbegriffen. für 4 tage kostete ein mittelklassewagen ca. 100 €. es war etwas schwierig, die shuttlebus-haltestelle zu finden. man findet vielleicht die richtige haltestelle, aber es ist kein bus da. dann ist man unsicher, ob es wirklich der richtige treffpunkt ist. man möchte schließlich nicht umsonst warten. ein paar fotos vom treffpunkt und dem bus selbst hinzuzufügen, wäre sehr hilfreich! wir sind stattdessen zu fuß zur anmeldestelle gegangen (ca. 15-30 minuten). dort wurden wir herzlich begrüßt. es gab mehrere anmeldeschalter, aber es war nicht viel los, sodass die anmeldung maximal 10 minuten gedauert hat und wir direkt losfahren konnten. das auto war fast neu, makellos und sehr gepflegt. zum schluss verlief die schlüsselübergabe unkompliziert, und innerhalb von 10 minuten waren wir am flughafen. dieses mal haben wir den shuttlebus genommen. 4 2025-01-25 01:27:48.341266+00 de v5.1 J1.02 {} V- I2 CR-N {} {"J1.01": "Zum Schluss verlief die Schlüsselübergabe unkompliziert, und innerhalb von 10 Minuten waren wir am F", "J1.02": "Es war etwas schwierig, die Shuttlebus-Haltestelle zu finden. Man findet vielleicht die richtige Hal", "O1.01": "Dort wurden wir herzlich begrüßt. Es gab mehrere Anmeldeschalter, aber es war nicht viel los, sodass", "P1.02": "Wir haben das Auto einen Tag vor der Einreise über Check24 gebucht. Die Vollkasko war bereits inbegr"} {-0.036267176,0.03383945,-0.06635175,-0.05755119,0.017830295,0.018975869,0.06997273,0.08409781,0.019714544,-0.0506078,0.091551036,0.002862071,0.051487684,-0.013059589,-0.07234457,-0.03741528,0.03095969,-0.059437547,-0.02471256,-0.05332297,0.022732617,-0.122025385,0.03232058,0.054775734,-0.0432845,-0.014135596,-0.0749077,-0.02395572,-0.06211072,-0.032960083,0.01355904,0.021450797,-0.03953324,0.023768779,0.068135805,-0.040357664,0.06320837,-0.08435277,0.005944156,0.03322973,-0.014553852,0.007153728,-0.11258388,0.009565703,-0.03862101,0.041957557,0.057849765,-0.050463878,-0.06744835,0.011952125,-0.05002519,0.011446853,0.11204452,-0.07492307,0.0028489341,-0.037159454,-0.05956662,-0.0022963725,0.08168421,0.043824643,0.041969802,-0.032837074,-0.031410277,0.0071686194,-0.08564333,0.06663683,-0.06774977,-0.109036416,0.023793034,0.016569464,0.06240213,0.006870378,0.037840497,-0.070173144,-0.050712034,-0.021330625,0.0037522716,-0.008687702,-0.05130447,-0.087432645,0.022336926,-0.089490674,0.019244602,-0.03905402,-0.018141922,-0.08245789,0.044180308,0.0954061,0.008198999,0.06176868,-0.04520278,0.074454196,-0.06821893,0.0038277933,-0.016495066,-0.004460315,-0.008497388,-0.08621507,0.08780293,-0.0009409598,0.057178285,-0.009899328,0.039343696,0.084029004,0.03748405,0.016872926,-0.026900107,0.017176101,0.011591265,0.029802553,0.0786013,-0.013075806,0.040052112,-0.020300718,-0.052950993,0.039235197,-0.027376415,-0.042454686,-0.0049959193,-0.014034221,0.032540526,-0.045571353,0.0015783599,-0.08293804,0.0073793144,0.012261101,-0.0020852524,2.01336e-32,-0.08072781,0.064582236,0.011869108,0.032145772,0.005142081,0.03524293,-0.051261082,0.06750153,0.08674012,-0.027141856,-0.06372303,-0.048026826,-0.082273856,-0.019385286,0.030098494,-0.08544504,0.07687684,-0.08749637,-0.049915895,-0.04525622,-0.049699344,-0.07111124,0.027986564,-0.016568948,0.05083558,0.033813816,-0.07089398,-0.021263072,0.13028593,0.07006127,-0.0026581332,-0.009169838,-0.0005978135,0.07655244,0.028532503,-0.048919596,-0.004501762,0.0051296526,-0.031728927,-0.05419765,-0.010399342,-0.033508945,-0.031880766,-0.028440686,-0.007477823,-0.00908564,-8.9957895e-05,0.055785306,0.048368942,0.026503645,-0.023418467,-0.0045225886,-0.050019328,-0.09463105,-0.032052573,0.07134561,-0.06035073,0.051973093,0.0005853347,0.044150494,-0.033454437,0.022321152,0.06742152,-0.06539305,0.026267508,0.052790664,0.061166614,0.03195646,0.031058598,0.0075826957,-0.019364603,0.0037704264,0.11099595,-0.0034965232,0.1315349,0.028220639,0.06323972,0.011229005,-0.11684031,0.019636,-0.055601195,-0.056948457,0.047284864,-0.07337626,0.015122388,-0.07417828,0.04550222,0.008632529,0.018640513,0.10897313,-0.015677033,0.07341204,-0.017790265,0.019024294,-0.0149893835,-1.7446151e-32,0.08966124,0.026233906,-0.009294615,-0.027452497,-0.021396844,-0.0031759427,0.026192972,0.095270805,-0.072198264,-0.050775982,-0.03436644,0.0049170856,-0.05458786,-0.050454818,-0.008569027,0.005444831,0.15315697,-0.038486443,-0.06187703,-0.0070810034,0.016259493,0.017410643,-0.06855106,0.031952072,-0.029356569,0.09111964,-0.017217495,0.045963056,-0.041332398,-0.004705417,-0.028880497,-0.027454711,0.05643338,0.028633343,-0.018764373,-0.07205116,0.0883516,0.027480675,0.0013187192,0.06327925,-0.02751516,0.025597848,-0.023744917,-0.010726633,0.018846901,-0.009858007,0.005687254,-0.07822234,-0.049759604,-0.029978998,0.038477246,-0.047619298,-0.0686888,0.04253979,0.038802337,-0.023704013,0.013319186,-0.065730885,-0.019270716,-0.015312718,0.07172455,-0.019370276,0.06326289,-0.0094450265,0.06908546,-0.05987885,-0.04795038,-0.011113437,0.021093879,0.03084004,0.048429243,0.08933017,-0.010953173,-0.012694083,-0.0537628,0.050045535,0.020013701,0.06312883,0.015576345,-0.020907417,-0.10034612,0.08419158,-0.008462099,0.00029223785,0.010779486,0.028531851,-0.013929818,-0.05122759,-0.009204577,-0.09276135,0.033395704,0.09862146,0.036123987,0.100492716,0.015612305,-6.986396e-08,-0.015639564,0.0082820635,-0.046356734,-0.068853535,0.064213425,-0.08002468,0.031688925,0.07253052,-0.04589241,-0.037604842,0.054423306,-0.04476485,-0.051021777,0.058438744,-0.15243372,-0.00075820973,-0.010771539,-0.051111065,-0.023628866,0.0223539,0.024073822,-0.03457464,-0.0655062,0.00514425,0.004140116,0.003852511,-0.054353606,-0.06651063,0.013941023,-0.084570505,-0.035757855,0.008815142,-0.023281984,-0.0036867051,-0.014502821,-0.031014854,0.04268734,0.029253492,-0.021830035,0.04117167,0.15074971,-0.010811675,-0.041678965,-0.012805967,0.052409705,-0.023225557,-0.026027638,-0.010372595,0.0024414044,0.13605219,-0.058239985,0.0054057734,-0.016170382,0.098544545,0.008667985,-0.1089562,0.035970297,-0.02371646,-0.025578944,0.038043376,0.015129199,0.067400195,-0.043698523,-0.004229199} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:09:49.333867+00 2026-01-25 01:27:51.026036+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 462 google ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE 1 t 465 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown ACHTUNG! Diesen Anbieter unbedingt meiden!!! Bei der Rückgabe wurde ein Abrieb und Farbrückstände am Handgriff der hinteren Türe moniert. Nur weil ich das Innere nicht gut kontrolliert habe, wurden mir Euro 360.- belastet. Zuerst wurde mir ein Betrag von Euro 600.- mitgeteilt, der dann gesenkt wurde.\nFazit: NIE MEHR CLICKRENT!!!! Nie! Nie! Hände weg! Wer es trotzdem macht, ist selber schuld! achtung! diesen anbieter unbedingt meiden!!! bei der rückgabe wurde ein abrieb und farbrückstände am handgriff der hinteren türe moniert. nur weil ich das innere nicht gut kontrolliert habe, wurden mir euro 360.- belastet. zuerst wurde mir ein betrag von euro 600.- mitgeteilt, der dann gesenkt wurde. fazit: nie mehr clickrent!!!! nie! nie! hände weg! wer es trotzdem macht, ist selber schuld! 1 2025-04-30 01:27:48.342066+00 de v5.1 J1.03 {} V- I3 CR-N {} {"J1.03": "ACHTUNG! Diesen Anbieter unbedingt meiden!!! Bei der Rückgabe wurde ein Abrieb und Farbrückstände am", "R1.01": "Fazit: NIE MEHR CLICKRENT!!!! Nie! Nie! Hände weg! Wer es trotzdem macht, ist selber schuld!"} {-0.08237515,0.11211264,-0.022956144,-0.0017834877,-0.04282123,0.0016974484,0.039486624,0.071875505,0.008480007,-0.09552944,-0.10037424,-0.12551785,0.024501046,-0.065626964,-0.11437781,-0.10556427,-0.08444079,0.017766614,-0.0229034,0.07950229,-0.09913761,-0.030304883,-0.019062513,0.04196992,-0.014318967,-0.028777754,0.027820263,-0.06428582,0.006908561,-0.04259133,0.05486009,0.07598574,-0.042769644,-0.022268683,0.0023739776,-0.0016917199,0.05864557,-0.098688684,-0.08314922,0.043696746,-0.019843781,-0.014998594,-0.027742313,0.014571625,0.013427079,0.08559493,-0.005965887,0.13676485,-0.05963046,0.05379694,-0.0500371,-0.009742649,0.06904976,-0.026597545,0.016003078,-0.052638263,0.0383698,-0.020643666,0.029727928,0.007769442,0.052661177,0.078065984,-0.026597414,-0.00026159323,-0.059467997,-0.0639966,0.046872247,-0.0363754,-0.079156704,0.043152887,0.042492036,-0.11519335,-0.035993718,-0.010109768,0.048567902,0.0034783632,-0.103767835,-0.049634542,-0.02025603,-0.05928894,-0.029147333,-0.07927112,0.024748592,-0.057052378,0.007184935,-0.043445297,0.03925969,0.072165705,0.041069217,-0.041160237,0.02101384,0.038241565,-0.08235012,-0.023251042,-0.050714318,0.032484017,-0.061382964,0.024902336,-0.045967557,0.008281382,0.06668747,0.030521652,0.0034935693,0.04448039,-0.026681475,0.0288616,-0.0103183305,0.027298633,0.007153741,-0.039702367,-0.011039512,-0.06288392,0.04168443,-0.084651396,0.026861232,-0.050468575,-0.008815535,-0.08418509,0.046890777,0.024723845,0.04344222,0.087385744,-0.018240048,-0.0068624183,0.04389778,0.007948959,0.052124813,1.5953753e-32,-0.057995033,-0.028904911,-0.01794423,-0.06470727,-0.134734,-0.006218955,-0.07450138,-0.023044925,-0.083236046,0.00086454465,0.041729897,-0.051458992,-0.008118753,0.007684189,0.10882587,0.021167364,0.03992214,-0.11105065,0.01744509,0.00758636,0.009544121,0.011202367,0.08183215,0.036382824,0.0022455943,0.03655647,0.029525239,-0.037757315,0.036282215,0.012384377,0.029632581,-0.018618526,-0.055677813,0.016659047,-0.09000949,0.03693657,0.0029307026,-0.0064624604,-0.061415926,0.007859568,0.056566514,-0.05765404,-0.03661919,-0.051024035,0.024257686,0.07808073,0.004431643,0.020872787,0.059715092,-0.078755304,-0.04458256,-0.02268764,0.031529967,-0.04846295,0.062253904,0.025750134,-0.036875267,0.08104893,-0.031196201,-0.024490943,-0.06800817,-0.011744479,0.048812274,0.026068497,-0.019241136,0.012008724,-0.022293642,-0.0021389504,-0.011698772,0.02546291,-0.072772734,0.019748572,0.106855236,0.036373418,0.05895434,0.04086231,-0.008603952,0.015873618,0.00024619154,-0.016670272,-0.05155023,0.017651917,0.010164986,-0.055352572,0.10276784,-0.06654896,0.012862571,0.023563262,-0.0075288536,0.118879646,-0.04640405,-0.052452683,-0.049142867,0.02070103,0.0021131698,-1.7313812e-32,0.04284477,0.06916628,-0.028016033,0.019057306,-0.026071064,0.05382431,-0.00051117834,0.06134546,-0.069139384,-0.029847784,-0.014182511,0.0006824001,0.0792489,0.040064316,-0.040278383,-0.0051096785,0.04349936,0.057538874,0.045099907,-0.09536869,-0.026319832,-0.09200737,-0.025394479,0.06607284,-0.07763814,-0.0453009,0.03520252,-0.015838249,-0.047687404,-0.020723604,0.013140714,0.019197056,0.049682144,-0.023864318,0.00417062,0.016255116,0.084979646,0.042755395,-0.008328565,0.052134987,-0.048504706,0.047354404,-0.065395854,-0.016466884,0.087536395,-0.0042029102,-0.046648137,-0.0020660802,-0.08048769,-0.04976982,0.0656788,-0.008734657,0.08253935,-0.07939703,-0.026391525,0.017314905,0.019508306,-0.08897929,0.11000229,-0.009890633,0.026517048,0.12134346,0.062169716,0.018546373,0.08407596,-0.112740934,-0.054049063,0.013358721,0.036307737,0.055345166,0.0041748043,0.026959056,0.0067590703,0.005031606,0.03538915,0.06845308,0.014212636,0.039302856,0.05258913,0.02904888,-0.025599727,0.023392968,0.022160469,0.010268283,0.01684146,-0.025633689,0.05491001,-0.010379003,0.02698219,-0.028995363,-0.018267766,0.061923184,0.011878352,-0.03134059,0.07006565,-6.149715e-08,0.055600934,-0.00016836738,-0.04259777,0.038996615,0.051159233,-0.04334688,-0.013849175,-0.007847495,-0.12159112,0.029034384,-0.041469287,-0.052701734,-0.07342409,0.034080505,-0.047571346,0.06675428,-0.04216319,-0.032412924,-0.009705205,-0.0035086577,0.12768452,-0.030350467,0.021155493,-0.045033105,-0.09701592,0.0020904036,-0.014816307,0.015165663,-0.06623998,-0.06137025,0.011898715,0.057469673,-0.058299154,-0.02276521,-0.06877749,-0.009402707,0.025405733,0.1330116,0.007487371,0.07130553,0.018436834,-0.08888695,-0.025469767,-0.083535336,-0.057712834,-0.03988174,-0.07754979,-0.0105242515,0.022838589,0.009038567,-0.057572577,-0.015212642,0.019805703,0.023687731,0.056725528,0.06375226,0.034107532,-0.046557836,-0.06635183,0.025848484,0.0038103918,-0.028854212,-0.037167307,0.03065175} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:44:26.492641+00 2026-01-25 01:27:51.471877+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1208 google ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB 1 t 1211 Soho Club unknown It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback.\n\nI gave it 5 stars for at least trying to be for the community and being the only one, still. it was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback. i gave it 5 stars for at least trying to be for the community and being the only one, still. 5 2024-01-30 18:34:31.336452+00 en v5.1 P1.01 {} V± I2 CR-N {} {"P1.01": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music", "R1.04": "I gave it 5 stars for at least trying to be for the community and being the only one, still."} {0.037993126,0.04413925,0.046929806,0.057992756,0.0016395177,0.013291526,0.050109256,-0.07869636,-0.05334852,-0.034461148,-0.04358365,0.037467353,0.003923642,-0.006400133,0.025540913,0.014337413,0.0077049555,-0.08447888,-0.050438065,-0.031141916,-0.111971036,-0.016977267,-0.044640955,0.025193818,-0.038455978,0.027731247,-0.040245906,0.030065697,-0.022578465,0.0003881214,-0.03062646,0.099025935,0.018047858,-0.009782312,-0.12211646,0.005341581,0.078774355,-0.12335783,0.031720642,0.053392295,0.032277007,-0.014264608,0.0003182751,-0.0079999855,0.038523257,-0.022073766,0.012760039,-0.02413608,0.025760628,-0.01439018,0.14793989,0.029960033,-0.0020686793,-0.075673684,-0.03991389,0.0261763,0.0076945666,-0.024981422,0.046413235,0.016565043,0.014425071,-0.020014115,-0.060847074,0.054917987,0.08008863,-0.060532823,-0.08721408,0.0016829384,0.046558782,0.028666992,-0.010252006,0.01915956,0.067119196,-0.034571704,-0.016426498,-0.008296013,-0.028761681,-0.039576713,0.052805264,0.0627851,0.048250206,-0.06837086,-0.0066646975,0.042426873,-0.03735205,-0.055709243,0.012342467,-0.038577046,-0.0595327,0.028776586,-0.095361575,0.124653645,0.027027171,-0.030548733,-0.05385945,-0.02635941,-0.046778474,-0.021471681,-0.009694499,0.10702808,0.02680072,0.13438602,0.0013656506,-0.0942479,0.003446045,-0.035029482,-0.027208418,0.040717997,-0.055826183,0.0033962624,-0.0321777,0.043198507,0.05325799,-0.039225236,0.04839042,0.0074775415,0.022428166,0.033010148,0.03212581,0.047080673,-0.032055844,0.110963106,0.08609395,0.10055755,-0.01664575,0.07106127,0.03157789,-7.722659e-34,-0.027456008,-0.025406174,0.010626704,0.04781945,0.11766094,0.011541512,-0.01765396,-0.053820122,-0.021486588,-0.079947636,0.09911586,0.067473195,-0.0044190423,-0.026668712,0.07637505,-0.024409436,-0.021109361,0.039074693,-0.043328907,-0.027174326,0.028375221,0.032857258,-0.0023753587,0.03723158,-0.08218963,0.06959756,0.0419941,0.0142208105,0.064092286,0.0020937328,0.032186616,0.041698646,0.0740947,0.0152142625,0.049625248,0.019710315,0.099700406,-0.023387935,-0.054123435,-0.05862385,-0.021676129,-0.017135955,-0.02812576,-0.027035965,-0.03584228,0.06529563,0.0019666648,-0.048424665,-0.05173294,0.041507557,-0.047471765,0.06859105,-0.0032155975,0.05381361,-0.07851973,-0.029613685,-0.05057683,0.028858557,-0.013107995,-0.063825935,0.014466252,0.063436374,0.022820681,-0.06490051,-0.04489762,0.014426307,0.062205587,-0.015627295,-0.010638505,0.0117517095,0.005021229,0.03276586,0.015031616,-0.040772613,0.055059336,0.06558529,-0.05256305,-0.032776292,0.057279523,-0.0054519647,0.05174908,-0.03631058,-0.009812508,-0.07844874,0.05028459,-0.032369386,0.15588766,-0.08425345,-0.042401385,-0.06472135,-0.05496882,0.0259155,0.09215943,-0.029785674,0.007412799,-1.35082925e-33,0.06980262,-0.028754937,0.022042485,-0.042922694,0.017034017,-0.048894595,-0.051300243,-0.04344334,0.02040778,0.15747672,0.027647184,-0.02211137,0.10148448,-0.018533714,0.019831868,-0.035767082,-0.0043766405,0.036183093,-0.042084932,0.028711632,0.01160671,0.11519585,-0.021286804,0.054250624,-0.006947676,0.07283092,0.024865115,-0.013054891,0.01967282,-0.110221304,0.024134839,0.022642586,-0.023853064,-0.06494418,0.052749068,0.030715132,0.04059788,-0.02455362,-0.075761504,-0.045020133,0.0137677975,-0.061820563,-0.064954385,0.072320074,0.08878344,-0.032607492,-0.03336073,-0.057283506,0.0051515736,0.01190666,-0.09467053,-0.05366264,-0.037049543,0.041511968,0.042078413,-0.06925229,0.0022527373,-0.016935984,-0.054793976,0.05128867,-0.10198671,-0.026356382,-0.0388826,0.0017057342,0.099835776,-0.12773554,-0.001873792,-0.04761617,-0.07756213,-0.02767785,-0.02145835,0.028193424,-0.08309096,0.041527264,0.024194919,0.03622883,0.008711622,0.003561291,-0.050718486,0.008862166,-0.06700276,0.04581942,-0.053255897,0.043509685,0.07340207,-0.058451835,0.09762704,-0.0022544248,-0.011253754,0.09229023,0.045148805,-0.024733262,0.0009983433,-0.07775782,0.01667225,-4.113195e-08,-0.014169366,0.055363633,-0.077930026,0.07003353,0.045953337,0.012341891,-0.049165785,-0.005210383,-0.004946006,0.052858222,-0.009903336,0.011511147,-0.021523638,0.05911716,-0.009111602,-0.06565514,-0.024665693,-0.014363399,-0.0055928775,-0.03188006,-0.022866037,0.022700006,-0.0005363155,-0.026235798,-0.055665366,-0.0053737233,-0.011916344,-0.01943786,-0.01948701,-0.032503262,-0.047866706,-0.06562682,-0.08230715,0.013111659,-0.043273333,-0.022440145,0.007786178,-0.015534549,0.011573476,0.032290045,-0.055587646,-0.008311148,0.02704094,0.019259257,-0.054301478,0.07635241,-0.057756405,0.09619433,-0.052809082,-0.017704055,-0.06809054,-0.017911775,-0.046736114,-0.020368014,-0.008016116,0.018272867,-0.06804551,0.066201694,-0.029311735,-0.040412206,0.064564824,-0.045775443,-0.17490026,-0.028299319} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:42:59.705147+00 2026-01-29 18:36:00.487135+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1209 google ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB 1 t 1212 Soho Club unknown I was there in Friday night. Quite crowded, good music, nice guys. A little expensive the cocktails, but the entrance was very cheap.\nAbsolutely a good place to have a gay night in Vilnius. i was there in friday night. quite crowded, good music, nice guys. a little expensive the cocktails, but the entrance was very cheap. absolutely a good place to have a gay night in vilnius. 4 2018-01-31 18:34:31.336452+00 en v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Quite crowded, good music, nice guys.", "V1.01": "A little expensive the cocktails, but the entrance was very cheap."} {0.099009,0.012687865,-0.012277558,0.07006222,-0.047987133,0.0365385,0.012260802,-0.05656368,-0.026180979,0.005249597,-0.015596694,0.050351445,-0.007309231,-0.016672963,0.08104636,-0.039314147,0.07869014,-0.08445063,-0.036928892,-0.03225295,-0.04742119,-0.037990186,0.044072766,0.03755701,-0.048081975,-0.039246846,0.0048331707,0.056254134,0.040916868,-0.0038970488,-0.074121095,0.09988866,-0.022256397,0.00090855197,-0.04512502,0.0015115375,0.007502279,-0.15287727,0.042793985,0.055072207,0.049493074,0.04263487,-0.01895415,-0.001457455,-0.04058073,-0.0011264443,0.0052849604,-0.03090117,0.021477627,0.092522435,0.06618765,0.028853683,0.06289814,-0.068883546,-0.040851075,0.037126504,-0.03137357,-0.023356494,0.040456813,0.021755327,0.06527246,-0.0005994191,-0.09999608,-0.014184638,-0.0073434385,-0.051587407,-0.06584867,0.03387944,0.12244217,-0.061469138,0.020872217,0.027153047,-0.0075878063,-0.033601016,-0.11700663,-0.0623456,-0.052484997,0.051348414,-0.016389037,0.04642857,0.12248213,-0.057435513,-0.02485071,0.07009818,-0.048663817,-0.026075732,-0.008582089,0.039337374,0.0052414075,0.066862315,-0.016367173,0.066682905,-0.07367409,-0.061960734,0.015652621,-0.034328677,-0.08452405,0.03506444,0.023817357,0.029423304,0.03214377,0.12186961,0.021098532,-0.04004516,-0.0601952,-0.03819703,-0.03885755,0.017155804,-0.020220604,-0.009467425,-0.0072513684,-0.0044449046,0.09907499,-0.05723096,-0.0062000006,0.044910204,0.10961405,0.012052793,0.012488175,0.08562322,0.0028272283,0.05207917,0.048198186,0.039786823,-0.007910687,0.024328876,-0.038557064,-3.0718075e-33,0.040860824,-0.015657185,-0.061044555,0.04271198,0.01193983,0.009854808,-0.038224556,-0.09206966,-0.05015694,-0.0058634668,0.022790572,-0.018280122,-0.03733698,-0.08026803,0.03555317,0.028299322,0.07313704,-0.024635829,-0.07234962,-0.04451679,-0.017951014,0.020737017,-0.07021571,0.00627181,-0.085110255,0.08693507,0.04745637,0.008074475,0.07574533,-0.011103361,0.0033100832,0.022867976,-0.03743883,0.06613475,0.07205508,0.046825565,-0.03679245,-0.002738557,-0.02186697,-0.00619811,0.08735792,-0.012746155,-0.06021719,0.028644495,-0.015408148,0.05788516,-0.023881434,-0.025891077,0.103939086,-0.055974156,-0.08382315,0.07443818,-0.066758655,0.08280789,-0.06483302,0.005998078,0.022765797,0.03162308,0.054605357,0.014931809,-0.04357283,-0.02164175,-0.020917343,-0.03587777,-0.049076624,-0.013466465,-0.034063373,-0.08119312,0.07458845,-0.018893536,0.03945604,-0.03916409,0.055031203,-0.020394139,0.029071061,0.03810359,-0.05215321,0.008938098,0.09435713,0.056334533,0.0633717,0.021072395,0.0120351035,-0.028751705,-0.06428159,-0.06251816,0.019775514,-0.110259265,-0.014744532,-0.07201456,-0.06456418,0.012483993,0.05555136,-0.056604005,0.027917644,1.6427009e-34,0.075413615,-0.044739444,0.035832025,-0.023290824,0.018409276,0.036639325,-0.07194559,-0.011821258,0.04435219,0.093849905,-0.042795833,-0.014632696,0.105988234,0.057092622,0.026496924,0.045946386,0.11413877,-0.005439502,0.036025796,0.044052083,-0.102895856,0.07516711,0.052215826,0.03476809,-0.027877023,0.0485686,0.01871746,-0.020690106,-0.053426158,-0.012981438,-0.03567037,-0.03432326,-0.030605705,0.046852563,0.025841989,0.038075257,0.10238931,0.053557523,-0.06450541,-0.037860766,0.006500218,-0.028213575,0.03299462,0.09152372,0.0888976,-0.05102719,-0.043867964,-0.022539932,-0.00965581,-0.079927325,-0.015028363,0.020456783,-0.09163946,-0.022887195,-0.0057891016,-0.072846256,-0.016335784,-0.033704735,-0.006883797,0.0041087368,-0.07193259,-0.0030263257,-0.07081314,0.021119108,-0.006687939,-0.033970963,0.0157583,-0.03178334,-0.05918317,0.008949617,-0.07716896,-0.052504852,0.015977798,0.13418993,0.023469366,-0.045613866,0.03606768,0.0147255985,0.031876985,-0.028314658,-0.0061733783,0.04145924,-0.07092189,-0.052990407,0.084756196,-0.038296893,0.033849873,-0.02192578,-0.03505309,0.021335032,-0.007929055,0.03673747,-0.050516237,-0.013337167,0.040643893,-2.1062e-08,0.07026076,0.037214562,-0.052914254,0.08657863,-0.014092471,-0.15027627,0.012917921,0.05758352,0.0334516,0.06580664,-0.08993434,0.007589471,-0.0369674,0.0063500083,0.007384877,-0.0017242959,-0.0008727029,0.01853418,-0.0015746278,0.033639748,0.01927615,0.057253145,0.03647141,-0.023634505,-0.04037308,0.02626918,0.009950666,-0.03336496,0.014121866,-0.03734877,-0.047026098,0.05420315,-0.045298867,-0.030031418,-0.05584713,-0.009976881,0.1125028,-0.08445707,0.01666015,-0.0066828616,-0.050122555,-0.08027249,-0.029014884,-0.029909577,-0.017097931,0.064178765,0.05800969,-0.025527552,-0.023816518,0.036023263,-0.10056715,0.088077255,-0.037231855,0.010965819,-0.015335845,-0.07482336,-0.04671222,0.0042155082,-0.007522836,0.002932913,0.03242488,-0.008945205,-0.13663034,-0.07970836} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:43:07.779838+00 2026-01-29 18:36:00.489058+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 193 google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB 1 t 196 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup).\n\nWhen we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. So we didnt know how to ask for the shuttle to come to the airport to pick us up.\n\nEventually, we called booking.com, who could contact the shuttle via a direct number, and then we were pucked up within a few minutes.\n\nAfter that, everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great. the instructions for the shuttle were too vague. we didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup). when we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. so we didnt know how to ask for the shuttle to come to the airport to pick us up. eventually, we called booking.com, who could contact the shuttle via a direct number, and then we were pucked up within a few minutes. after that, everything went great. very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great. 4 2025-10-27 01:27:48.340148+00 en v5.1 A3.04 {} V- I2 CR-N {} {"A3.04": "The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the s", "J1.01": "Eventually, we called booking.com, who could contact the shuttle via a direct number, and then we we", "P1.01": "After that, everything went great. Very friendly and helpful staff, clean car, nice facilities and t"} {-0.03800446,-0.02573664,0.06025448,0.030290281,-0.07699716,0.011740146,0.061223216,0.051236685,0.014561403,-0.06371225,-0.005196769,0.05736032,-0.035601016,-0.013511058,0.021012764,-0.09649725,0.060623992,-0.08692676,-0.061651222,0.026830059,0.041572325,0.032659072,-0.016277086,0.0077255596,0.012380086,-0.020532541,-0.0071708597,0.023310319,0.027178438,-0.0074303853,-0.04304193,0.0828205,0.065553986,-0.0124245575,0.007926465,0.03221619,0.04891817,-0.032414325,-0.026063157,-0.0732592,-0.030448241,0.004033435,0.021909045,0.089453764,-0.030037202,-0.04188072,-0.017566115,-0.015253287,0.1068588,0.027342042,0.02414913,0.0011610774,0.02580319,-0.05954611,-0.086192824,0.07810711,0.0267686,-0.018111305,0.05169958,0.01585559,-0.06791803,-0.01528151,0.0074921018,0.0072576343,-0.057540078,-0.000101013415,-0.046309646,-0.07847453,0.08501169,-0.083518356,-0.014251928,0.035661206,0.009755416,0.06598623,0.0123184165,0.013801945,0.028128026,0.04787087,0.045769427,0.005303668,0.026692146,-0.032757804,-0.003745833,0.07927031,0.0040679625,0.01317978,0.025279336,0.09799868,0.031330034,0.05284154,0.0020129858,-0.009664381,0.011608475,-0.0029507678,-0.07988445,0.06577182,-0.027843298,-0.0170631,-0.0019070442,0.04816951,0.037571993,0.10745841,-0.0060070525,-0.04502395,-0.10597859,-0.018406685,0.0020633247,-0.003743009,0.0668627,-0.04212582,-0.007428087,-0.041309807,0.06359128,0.050803155,-0.090703994,0.027051898,-0.002122325,-0.03586559,0.061849687,-0.12541014,-0.04618174,-0.005347761,0.037290253,0.0038411398,-0.061954435,0.083245434,0.12815496,-1.0157113e-33,-0.007984018,0.008732128,0.07446837,0.12839808,0.026733547,-0.04388249,-0.07559366,0.019146826,0.015031109,-0.018447649,-0.033181295,-0.040457003,0.03856345,-0.09847294,-0.04116619,0.04559204,-0.03530543,0.0008781316,0.03225735,-0.04135971,0.04728239,-0.02901163,-0.0043336786,-0.008114765,0.09231649,0.07632345,-0.07134969,0.018101504,0.12472029,0.00455077,-0.101030156,0.0032846555,0.037555724,0.07314054,0.08687597,0.0035814026,0.058808524,-0.028263075,-0.08479339,-0.048823964,-0.04509361,0.013190957,-0.06866945,0.041164633,0.0045794277,-0.015377006,0.0019561504,-0.022417698,0.034083217,0.08791685,-0.09710883,0.032956567,0.078192204,0.005730455,-0.07128772,-0.033133257,0.058096524,0.050014798,-0.0031836133,-0.026857201,0.068251304,0.08588606,0.033585016,0.0072315563,0.039046783,-0.08325597,-0.03673506,-0.010557835,0.088854335,-0.040664442,-0.006022785,0.04614515,0.030377578,0.04302355,0.038102753,0.04472687,-0.031011555,-0.017427113,-0.0084644,0.0061597773,0.09286264,-0.0061440943,-0.002110265,0.026754292,0.06481479,0.027468551,0.042681415,0.008211745,0.00630075,0.02876653,-0.05696786,0.08970249,-0.039515186,0.06819089,0.029640723,-7.699673e-34,0.07587586,-0.039813798,-0.01795181,0.013766655,-0.084149875,-0.06450347,-0.025796026,0.026760379,0.05677448,-0.054606527,-0.032015614,0.005260911,0.08515211,-0.034960113,-0.029865213,0.011371955,0.03317749,-0.022024533,-0.074459486,0.023458816,0.032922555,0.0025711765,-0.079126,0.012258993,-0.05285132,0.032148417,0.039111488,0.050625306,-0.077292174,-0.033918854,0.0032284458,-0.039372828,0.050806638,0.0863809,-0.024009014,-0.009867216,0.02905847,0.10171772,-0.010100745,-0.045855485,-0.0145977335,-0.017913396,-0.024169674,-0.05637617,0.018728012,-0.019961726,0.03375324,-0.04200153,-0.025864229,-0.02125568,0.025099143,-0.051063083,-0.06195336,0.031556964,0.0032779563,-0.006463482,0.08144371,-0.09157759,0.10106327,0.009372788,-0.040332615,-0.043172654,-0.00015058905,-0.046352856,-0.0065096645,-0.048240803,0.053648874,-0.064790316,-0.041093215,-0.034777034,-0.026050122,-0.038294908,0.050944284,0.0568195,0.03874729,0.014597468,-0.031534616,-0.031887025,-0.084306695,-0.027036764,0.099376716,0.031413063,-0.06084454,-0.017976534,0.006794124,0.09742164,0.055289086,0.007672106,0.019084556,-0.06038036,-0.06494844,-0.0044078277,0.00022542085,0.017929059,-0.04047187,-5.371655e-08,0.0017917206,0.04222814,0.005262148,-0.0055123903,0.053780153,-0.039572965,-0.021958467,0.044580285,-0.021678682,-0.06578156,-0.10389914,-0.06281554,-0.08101571,0.11171459,-0.005855018,0.006082628,0.0253169,0.0100452425,-0.053391345,-0.036750227,-0.06544834,-0.020035416,0.0014108837,-0.018932873,-0.0046365834,-0.004827101,-0.05096927,0.05331655,0.05375444,-0.121644594,-0.09599468,-0.020211259,-0.0838936,0.01900515,-0.12744488,0.011330666,-0.0625202,-0.043291066,0.0719319,-0.050192375,-0.0023123217,0.024358314,-0.10066646,-0.015079386,0.060104772,0.068201154,-0.07647495,-0.013278154,-0.06963606,0.006118233,0.025075069,-0.08117686,0.003268855,0.0404678,0.08504471,-0.07817417,-0.018078793,-0.027800405,0.01882885,0.05531848,-0.040755846,0.07899881,-0.17539905,-0.014217259} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:40:30.144582+00 2026-01-25 01:27:49.988573+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1498 google ChZDSUhNMG9nS0VJQ0FnSURncHJyTEdnEAE 1 t 1501 Go Karts Mar Menor unknown Nice, well organized and good track and carts. Good prices also nice, well organized and good track and carts. good prices also 5 2018-02-01 01:52:39.833374+00 en v5.1 V1.01 {J2.01,V1.01} V+ I2 CR-N {} {"V1.01": "Nice, well organized and good track and carts. Good prices also"} {-0.028618349,0.017232435,0.017405733,0.063662894,-0.07543015,0.013663995,-0.05808042,0.06141793,-0.07380386,0.021747312,-0.011148131,0.04404849,-0.029854542,0.009396548,-0.04973076,-0.016523957,0.08848057,0.0025465924,-0.022478543,-0.069509126,-0.09859089,-0.048324537,0.05489276,0.048568778,-0.0897928,0.080996595,-0.05739008,0.038611647,-0.013905352,-0.06322529,-0.10016778,0.039550547,0.058647204,-0.014581956,0.02452311,-0.04483062,0.08338061,-0.060997125,-0.0012756778,-0.05234987,-0.025767282,-0.020408176,-0.010365662,0.07788047,-0.034274694,0.050616827,0.013921793,0.031305414,0.068775766,0.06824135,0.05752756,-0.040555913,0.02968662,-0.06554369,-0.027557468,0.0925667,-0.084835224,-0.012919363,0.023977397,-0.10994029,0.07832537,-0.033838928,-0.0457366,0.0035506557,0.0032107076,-0.044674274,-0.08868111,0.017987553,0.02805495,-0.020527579,0.054206572,0.049839925,0.0074696844,-0.0097063,0.013445473,3.3438122e-05,0.04532613,-0.065261245,-0.052333385,0.029655434,-0.05349643,-0.023841202,-0.013656775,-0.046997007,-0.01334414,-0.11412514,0.046461508,0.028325042,-0.0011177949,-0.024502188,0.011434061,0.06048851,-0.044284083,-0.071059965,-0.035676636,0.08233311,0.03700162,0.04305203,0.04134841,0.028503766,0.0995992,0.09159357,0.06462015,0.013964527,-0.07720292,0.019008288,-0.022953935,0.062192217,-0.0011694836,-0.03331572,-0.006222475,-0.023603905,-0.04598485,-0.03731225,-0.04376553,0.03050155,-0.036360182,0.04906877,0.04095838,-0.014527825,0.033071846,-0.034902494,0.07130372,0.040605,-0.044121813,-0.007364954,0.057634197,-3.263625e-33,-0.03437723,0.038133454,-0.03975198,-0.010690759,0.031730786,0.024426958,-0.044193503,-0.025738774,-0.08576099,0.08703503,-0.00029115975,0.05287865,-0.022430765,0.050400097,0.05506449,-0.069265276,-0.02750468,0.034383304,-0.05919895,-0.021269832,-0.09529151,0.0010418419,0.024939535,-0.005519629,0.08366772,0.029887466,0.020271217,0.007168051,0.06378521,0.020256853,-0.023190772,-0.03166168,0.006931876,0.03983123,-0.021433113,-0.014719335,-0.120598964,-0.06969241,0.036825705,-0.015139406,0.032839008,0.0003720801,-0.043110557,-0.017946403,-0.05046518,0.047981106,0.017478865,0.010380626,0.07966302,-0.03712329,-0.09555301,-0.025683407,-0.06677199,-0.004475988,-0.0017543198,-0.09458712,0.045687567,0.031849563,-0.032988045,-0.008070895,0.06091833,0.09050237,-0.030971281,-0.095649354,-0.045670886,-0.008933081,-0.031322427,0.021514548,0.08133656,0.04147193,-0.019155307,0.007355437,0.041447666,0.011384586,0.089488894,0.09777032,-0.010211945,-0.001495759,-0.05037323,0.03597873,-0.0640551,-0.02455859,-0.023086801,0.016452575,0.0050985534,0.0016609555,-0.028550413,-0.05249856,-0.04129099,-0.0016904086,-0.05663289,0.07534093,-0.026010694,0.034463547,0.02527234,5.542667e-34,0.09584609,0.09222115,0.07921316,0.058600646,-0.010931318,0.048570868,-0.04862266,0.01417602,0.04535168,0.070740946,-0.089540064,0.05838085,0.016764533,0.059050366,-0.002952231,-0.01862832,0.072569296,-0.019279577,-0.008831459,-0.15802433,-0.023671977,0.093969844,-0.07900809,0.020419791,-0.044369422,0.0006547805,-0.12939155,-0.060333278,-0.030782623,0.037434705,-0.07246326,-0.058132444,0.04402864,0.020302478,-0.04653424,0.04487933,0.06713504,0.066095114,-0.014268382,-0.00023248953,-0.005131662,-0.0056298464,0.037698235,-0.0018008696,-0.011057255,-0.06518431,-0.023336247,0.10605644,-0.0010376247,-0.019856742,0.0029554619,0.0128289005,-0.01920833,-0.08704646,-0.022624483,-0.026257193,-0.004087735,0.010160364,-0.0066311285,-0.04611329,-0.095709555,0.087983474,-0.039481204,0.08845743,0.0111873625,-0.0472598,-0.0077865366,-0.112900466,-0.064594805,-0.00640511,-0.0012494622,0.011847566,0.010245967,0.05993318,-0.023803294,-0.038973507,0.11366356,0.044553563,0.11411846,0.04606111,-0.054415062,-0.0001237647,0.03148008,0.027436676,0.022359928,0.04202975,-0.062932,-0.0058739926,0.046803456,0.07141916,0.036899786,0.07325953,-0.055305,0.022494026,-0.0736435,-1.7050093e-08,0.0143274795,0.041814283,-0.02650373,0.054666534,-0.006290236,-0.088865235,0.09179471,0.1055202,-0.05709822,0.04490079,0.08667675,-0.02488261,-0.07538209,0.04658345,0.016673408,-0.053462915,-0.027618347,0.15733653,-0.013642442,-0.0140362205,0.029369393,0.00876898,0.040958676,0.07860049,-0.05371137,-0.050368823,0.0559714,0.0034827737,-0.005444408,-0.005383878,0.0096348,0.06565718,0.067472376,-0.0058972277,0.017326545,-0.06022791,-0.09405248,0.018422248,-0.026122129,-0.04952427,-0.023063404,-0.039620843,-0.10191963,-0.014256473,0.034746956,-0.0047550634,-0.026123539,0.00733424,-0.06690918,-0.013384892,-0.07891133,-0.041761417,-0.015504808,0.013739901,0.021291602,0.015041403,-0.009492992,-0.047776286,0.0315693,0.016765729,0.05051182,-0.06756647,-0.049085602,0.02035887} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.805904+00 2026-01-30 02:01:09.566188+00 22c747a6-b913-4ae4-82bc-14b4195008b6 348 google Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB 1 t 351 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do início ao fim. O dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro. O horário da abertura da loja foi pontual. Inspeção realizada e … boa viagem! estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do início ao fim. o dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro. o horário da abertura da loja foi pontual. inspeção realizada e … boa viagem! 5 2025-10-27 01:27:48.341303+00 pt v5.1 R1.01 {} V+ I2 CR-N {} {"J1.01": "O horário da abertura da loja foi pontual.", "P1.02": "O dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro.", "R1.01": "Estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do iníci"} {0.07468371,0.044407923,-0.047993872,-0.0051198048,-0.059038144,-0.051381264,0.018298235,0.044862125,-0.05891468,0.026864821,0.0043528727,-0.006520387,0.0017598023,-0.011704714,-0.015255187,0.013060926,-0.015995087,0.04665998,0.06098931,0.1118771,0.03589348,-0.08452403,-0.008632234,0.10188396,-0.046002097,0.022493433,0.054357935,0.0013288712,-0.049558874,-0.10145897,-0.0137344105,0.15014458,0.07343124,-0.078971624,-0.026076453,-0.011767339,-0.01613907,-0.003741193,-0.017427614,0.047815043,-0.01900097,-0.027411515,-0.009164898,-0.04478992,-0.015455637,-0.04823385,0.047301713,0.052898973,-0.02362513,0.012126547,-0.06861167,0.03571855,-0.09331022,-0.049251255,-0.08607686,-0.0854147,0.050039526,-0.00066666066,0.04099594,0.014119555,0.0856994,0.045458533,-0.0010491516,0.058141652,0.041478258,-0.053630274,-0.014099558,-0.007914076,-0.0808537,0.009845951,0.10737218,-0.10820505,-0.022152038,-0.020623982,0.0053598084,-0.0010885574,-0.0045419815,0.046310335,0.05663793,-0.019961214,0.033124685,0.0032656624,0.0107782995,-0.033471987,-0.0033993102,-0.013396595,-0.025415596,-0.01735565,0.0307165,-0.06496325,0.04762811,0.047959894,-0.11368712,-0.04690725,0.007207819,-0.0487797,-0.004654809,-0.04032572,0.04849103,-0.025740987,0.065599404,0.017964635,-0.029093193,-0.003947402,-0.041619334,0.032999996,0.05696468,-0.09937281,0.06121799,0.06528492,-0.03406729,-0.09240007,-0.013811296,0.012951789,-0.08842297,-0.0047793994,-0.029000059,-0.08737992,-0.04588512,-0.049656734,-0.016055025,-0.08916022,0.03018922,-0.07406164,-0.05558934,-0.061921082,0.048117504,1.1736425e-32,-0.069830835,-0.04424089,-0.072810434,0.0058933254,0.043911066,-0.057175495,0.014871558,0.004869026,-0.031588495,0.034217775,0.007038242,0.020309838,-0.02014361,0.051873278,0.041567978,0.062098328,0.022389151,-0.004303363,0.0054546758,-0.016050134,0.0036132429,0.03731472,0.032150153,-0.052913703,0.074466355,0.09898082,-0.040397126,-0.05852841,-0.05369601,0.051335372,0.09667399,-0.0556073,0.025710212,-0.039183144,-0.025025846,-0.071044095,-0.004359055,0.029705701,-0.06263795,-0.063047536,-0.043934006,0.0003421011,0.025233362,0.043868996,-0.020733792,0.055107646,0.040207822,-0.026825266,0.035856582,0.09717303,-0.09422819,-0.07665318,-0.11839856,0.008437018,0.004284506,0.0021163295,-0.16623963,-0.015583369,0.00031697727,-0.06604895,-0.012608211,0.028326292,0.0036818571,-0.04692493,-0.06744863,-0.09725415,0.035265826,0.044613626,0.13739523,0.029220121,0.021485869,-0.0297465,-0.04205212,0.0082454765,-0.009439313,-0.010554008,0.0628216,0.03664009,-0.08561573,0.06974825,0.0353263,-0.069083214,0.06465479,0.003615887,0.030675005,0.07326184,0.059915245,0.046810556,-0.024833469,0.10394915,0.005266341,0.06537306,0.08086156,-0.04262978,0.1043532,-1.2321921e-32,-0.007827234,-0.054405168,-0.019955209,-0.0050257714,-0.040085874,-0.012820557,-0.089365445,-0.05214998,-0.024592716,0.008750336,-0.12957709,-0.02372264,0.059357613,-0.029487241,-0.08106461,-0.005397749,0.018517446,-0.10539236,-0.041615464,-0.032477144,-0.024625983,-0.009087099,0.039026804,-0.026310125,0.024583627,-0.010468296,-0.011300522,-0.04124812,-0.06417331,0.050788682,-0.016390625,0.028407441,0.009783486,0.065076284,-0.040247098,0.0052041113,0.122627765,0.037599817,-0.0625156,0.084173255,0.015437151,0.04557708,0.021574372,-0.046222433,0.0064437273,-0.004015053,0.000757831,-0.07509372,0.04084914,0.006160016,0.11962011,-0.038153842,0.017094815,-0.053469796,0.052116353,0.005428691,0.04393999,0.009701457,-0.09762656,0.029232634,0.073256634,0.040440872,-0.040541437,-0.037364632,0.07850628,0.05955627,-0.05328843,0.034401424,-0.06433634,0.033584192,0.034423605,-0.029410124,-0.026574785,0.05762071,-0.013579492,0.04556655,-0.04250106,-0.03619522,-0.0017610407,0.038844384,-0.042651072,-0.024701783,-0.006546866,0.04104564,-0.008981077,-0.03446174,-0.050145682,-0.07088898,-0.03878753,-0.012004006,0.004892382,0.028633164,-0.030336631,-0.07063589,-0.035989553,-5.137579e-08,-0.033976894,-0.14492701,0.021601578,0.016840013,0.018392107,-0.020334888,0.015275478,0.042093042,0.016425876,0.0023984325,-0.010146135,-0.025664069,-0.013070241,0.043402955,0.054143157,-0.07829043,0.09656138,0.060037583,-0.058563616,-0.06437061,0.077171035,0.0098026525,-0.052689817,0.020949077,0.041673087,-0.012050976,0.037307866,-0.02491963,0.03294171,-0.02115533,-0.019309202,0.02282067,0.014955991,0.04448077,0.0019408354,-0.03538821,0.081322774,0.04780965,-0.08994562,-0.04655544,0.043673716,0.03695176,-0.0069702254,-0.04853058,-0.023698663,0.013676125,0.019279841,-0.02464605,0.038282145,-0.014296273,-0.023945432,0.021049589,0.093767196,0.07861918,0.010333333,-0.050249092,0.04474184,-0.028708618,0.052899875,-0.030477889,0.05795664,0.1248322,0.057728507,-0.030845538} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:26:40.021059+00 2026-01-25 01:27:51.040518+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 352 google Ci9DQUlRQUNvZENodHljRjlvT21SQ1FrODNNVnAyUW13eFdtbHRWRk4wYTJkRlprRRAB 1 t 355 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Půjčení vozu na týden přes Booking vyjde cca na 1400,- Kč. Je u sebe potřeba mít fyzicky kreditní kartu, jinak vas donutí zaplatit ještě komplexní pojištění a půjčení vás tak vyjde na 4.500,-Kč! Nestačí mít kartu v mobilu. půjčení vozu na týden přes booking vyjde cca na 1400,- kč. je u sebe potřeba mít fyzicky kreditní kartu, jinak vas donutí zaplatit ještě komplexní pojištění a půjčení vás tak vyjde na 4.500,-kč! nestačí mít kartu v mobilu. 3 2025-07-29 01:27:48.341311+00 cs v5.1 P1.02 {} V- I2 CR-N {} {"P1.02": "Půjčení vozu na týden přes Booking vyjde cca na 1400,- Kč. Je u sebe potřeba mít fyzicky kreditní ka"} {-0.021557597,0.13776505,-0.05842129,-0.022380998,-0.16169496,0.04442626,0.0011611424,0.046451345,-0.031288,0.051631104,-0.0002017613,-0.06802009,-0.018781,0.012173645,-0.05487722,-0.08384121,-0.0198451,0.06275448,0.022392351,0.043922443,-0.021138212,-0.06958231,-0.035380468,-0.0044741305,0.03617961,0.004603842,0.019760912,0.043653082,0.042188074,-0.053716786,-0.022805184,0.04403543,0.046173498,-0.013199587,0.08024155,0.036700383,-0.094495855,-0.08509198,0.007898799,0.014661911,-0.009415715,0.03773121,-0.13029529,-0.013342847,0.074858725,0.007770635,0.020099929,0.05410252,-0.015957177,0.05350448,-0.040380917,0.05194274,0.017633548,-0.031010363,-0.03065974,-0.042047154,-0.08830861,0.041840103,0.07562159,0.0061807055,0.036960818,0.0061521246,-0.05913938,0.06328318,-0.025853682,-0.028564487,-0.07186836,0.012959181,-0.041431483,0.07421518,0.101546384,-0.0102705965,-0.029110808,0.005778136,-0.031054733,0.017781857,0.0032727856,-0.042962413,0.062075835,-0.04040501,0.060080968,-0.055580094,-0.06339416,-0.08602524,-9.6146636e-05,-0.014713217,0.029087987,0.039985366,-0.03010254,-0.027858388,0.09519665,0.06799691,-0.003778716,-0.026414793,-0.046697687,0.0141973,-0.051743735,0.00023594662,0.072528705,0.041373163,0.05669071,0.026716346,0.03366013,0.05477566,-0.06336425,-0.02503804,0.07079114,-0.05269701,0.038089868,0.04786809,-0.1501614,0.036056407,-0.062213246,-0.109796986,-0.034699082,0.076905325,0.017967604,0.013679987,0.061088003,-0.0023244463,0.02182106,-0.007577824,-0.069075674,0.016041035,-0.007546781,-0.09389226,0.056342784,1.5073442e-32,-0.09333163,-0.047072455,0.03464955,-0.04904223,0.03733214,-0.09064316,-0.06984403,-0.088930905,-0.045840535,0.009730216,-0.031659767,-0.042390686,0.009753889,-0.033685174,-0.015769709,0.033933073,0.059060913,-0.057128686,0.057700854,-0.0043927883,-0.013993388,-0.055568248,0.033096634,0.04356444,-0.003795997,0.057154648,0.044212326,-0.048599064,0.006667462,0.039282136,0.033322547,-0.03727863,-0.07019522,-0.04110447,-0.046365835,0.033033784,0.018742222,-0.027140459,-0.007608069,-0.06043878,-0.10200401,-0.024695909,-0.054109152,0.047300577,-0.0381725,0.07244498,-0.041672487,0.0048889136,0.06523937,0.05323901,-0.124987155,-0.030852426,-0.05897457,-0.002643744,0.0022086937,0.033853684,0.0639847,0.008065662,0.02119804,-0.039138686,0.019069778,-0.0045004,-0.035382338,-0.0037855308,-0.06785921,-0.097451374,-0.07942511,-0.08011323,0.09382111,-0.08485547,-0.07060526,0.006329128,0.011245483,-0.03724627,0.013883437,0.022971699,-0.009128352,0.0063190497,0.000522846,0.062412422,-0.09472487,0.029493704,0.022463212,-0.05040207,0.09622349,-0.035594173,-0.012361181,-0.011581861,0.111043334,0.06789195,0.015229396,0.033246037,0.04773143,0.0351819,0.03312124,-1.5169916e-32,0.023378128,0.08378389,-0.026682988,0.08412285,-0.012597373,0.038664866,0.011604991,0.03216668,0.0070164506,0.04081916,-0.034146965,-0.056109734,0.081946164,0.01957874,-0.019533196,0.08828568,0.08347197,0.0082771415,-0.00074859994,-0.031207897,-0.013762801,0.01424725,-0.028644696,0.04972342,-0.031753607,-0.023119574,0.041384596,-0.014244918,-0.08971622,-0.012823228,-0.0061572106,-0.11859041,-0.050667234,0.13854724,0.033338822,-0.053115062,0.112127684,0.0473665,-0.01805292,0.06477087,0.055272456,0.055237923,-0.008391319,-0.028913764,0.0084169395,-0.047834087,0.066340335,-0.005505532,0.037463803,-0.11343835,0.042994335,0.054483734,-0.048167232,-0.0019442615,0.03823126,0.073654376,0.0037532728,-0.06369121,-0.005758536,0.013055604,0.017762614,-0.056624454,0.03727662,0.0034114039,0.066482365,-0.03735822,-0.010928382,0.02284031,0.07873052,-0.04874478,-0.0041163163,-0.045846704,-0.019398948,0.025223538,-0.057675485,-0.009368645,0.03250193,0.0598125,0.061976455,-0.0329311,-0.028801516,0.059595175,-0.06490132,-0.016005944,0.0030559876,0.03916648,0.048114423,-0.02255326,0.009280297,-0.016713725,-0.007055376,0.08271025,0.034979537,0.02164093,-0.032901242,-4.949134e-08,-0.04474112,-0.052509338,-0.08621503,0.012890903,0.04558413,-0.08711868,-0.034097046,-0.029070813,0.011112495,0.012937517,0.058723122,-0.02636887,-0.03246394,-0.015897887,-0.034238603,0.060471993,-0.022698317,0.10414152,0.016462715,-0.021318503,0.05296539,0.033541817,-0.023900459,0.051338397,-0.0201853,0.048305526,0.00076363917,0.03730771,0.047379483,-0.02344846,-0.045864847,0.10439289,-0.061330482,-0.080875695,-0.0355522,0.004040183,-0.05655175,0.06484827,0.012904366,0.08632244,-0.007907132,-0.0923109,0.01403935,-0.031818215,-0.03125628,0.08250293,-0.0007133587,0.0051970053,0.008176607,-0.08021422,-0.1052705,0.018306272,-0.017871013,0.01843671,0.037018415,0.025042633,0.0116890175,-0.042055655,-0.054852065,-0.063881636,0.0108451955,-0.0277332,-0.11267,-0.017492676} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:39:49.203152+00 2026-01-25 01:27:51.053405+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 560 google Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB 1 t 563 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy contento con el servicio recibido y el trato del personal. Lo recomiendo muy contento con el servicio recibido y el trato del personal. lo recomiendo 5 2025-09-27 01:27:48.342576+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy contento con el servicio recibido y el trato del personal.", "R1.01": "Lo recomiendo."} {-0.00718925,0.00078610744,-0.037519693,-0.055454105,-0.058409527,-0.038697343,0.15082295,0.025343644,0.01598056,-0.009057702,0.08082701,0.03064677,-0.024550712,0.020223845,0.040835045,0.005196047,0.05468051,0.044965237,-0.019162329,0.083706565,0.0749564,-0.054718595,-0.08355053,0.07844262,-0.13167855,-0.03927131,-0.051445674,0.0013454256,-0.09124457,-0.081782565,0.02021207,0.11328266,0.114483014,0.0035012863,-0.0033384806,0.04768546,0.03957533,-0.036476485,-0.027149344,0.042604055,-0.10803997,-0.058282517,0.024750516,-0.016950265,0.02624459,-0.054530185,0.032201644,0.053197864,0.025753241,-0.009415667,-0.08124324,-0.050800465,-0.037547804,0.058419194,-0.0035660234,0.016828507,-0.005874201,0.00914241,0.017404094,-0.0015368885,-0.019828476,0.037663564,-0.024455719,0.072845235,0.103702664,0.0014905113,-0.005704555,-0.0579189,-0.066624545,-0.006717951,0.053236507,-0.05907376,0.057913855,0.070618294,0.0021436948,0.043601014,-0.013422165,0.006921827,-0.02855581,-0.043752503,-0.012740276,0.04043685,0.04118618,0.030968776,-0.021394527,-0.027918948,-0.02512745,-0.028592544,0.01830093,0.011328394,0.04508091,0.021988105,-0.0029212611,-0.02313317,-0.06549429,0.03309541,-0.03369813,-0.086040474,0.009817707,0.024545489,0.047422465,0.059309695,0.12097551,0.039906353,-0.034846473,0.046387933,-0.0024261938,-0.013312103,-0.0588976,0.087430924,-0.08003556,-0.04394377,-0.064876184,0.012775142,-0.007622875,0.003212821,-0.0050561675,0.019196954,-0.009934885,-0.034805886,0.022698846,0.027184332,-0.057632707,-0.08535649,-0.035223927,-0.034103293,0.08072139,6.262593e-33,-0.05197407,-0.018970843,0.029774666,0.06941243,0.004787635,0.012420471,-0.07502704,-0.0016031265,-0.0011165426,0.0016079036,-0.015846184,0.13317624,0.05130668,0.017021723,0.024046443,0.02066019,-0.016501004,0.038680516,0.03944726,0.07713945,-0.03822085,-0.032073982,-0.020904345,-0.012077991,0.0006013506,0.04866106,-0.010642944,-0.038583975,-0.033675246,0.03770815,0.033044465,0.06668738,0.024500893,-0.044776645,0.007109304,-0.056041226,0.039455887,0.0222249,-0.030718189,-0.015055764,0.020571634,0.04193576,-0.043541234,0.06679756,-0.024409635,-0.024312403,0.07118276,0.036878016,0.048741426,0.0063530505,-0.032252,-0.07068459,-0.07142094,-0.04916583,-0.0020487318,0.023272073,-0.04020642,0.080985494,-0.008250982,-0.089961484,0.09376993,-0.028190168,0.0529536,-0.030290293,-0.010181723,-0.045650613,0.021048246,0.01664877,0.10221101,0.021071251,-0.07960761,-0.0039636935,0.015967527,0.051177017,-0.0076461066,0.0064984215,-0.03030921,-0.048827518,-0.0034106898,0.005546634,-0.016385663,0.032575246,0.011304417,-0.0035870546,0.07073147,0.0644148,0.06349321,0.0146811325,-0.029461976,0.083651714,-0.04452915,0.07488003,-0.015310197,-0.017798394,0.048432287,-6.856719e-33,-0.04884938,-0.03891167,-0.020269254,0.030969976,-0.0042245737,-0.042392313,0.008977164,0.0077483817,0.018335892,0.03883905,-0.11629288,-0.15841067,0.10382316,0.005047059,-0.09980594,0.08547446,-0.05274602,-0.0732765,-0.14024024,-0.052450567,-0.012867796,0.07087064,0.082144886,-0.03169792,-0.019553242,-0.01831546,-0.053133324,0.022757588,0.002901098,-0.048586387,0.02807016,-0.021899689,-0.043125566,-0.027466895,-0.014757683,0.02133475,-0.020708753,0.06844211,0.05829945,0.042371534,0.004924879,0.041689973,-0.029967109,-0.040070128,-0.028595056,0.0003028588,-0.015664455,-0.14463632,0.05077261,-0.026456077,-0.004671595,-0.05530159,-0.04406372,-0.02891617,0.015354875,0.028480323,-0.01575191,-0.079613835,-0.10885525,0.0036362908,0.0005800338,0.009011683,-0.06265138,0.04702869,0.1240825,-0.003429573,0.0054402105,0.02857075,-0.036831725,0.059292525,0.031600043,-0.04174062,-0.01082862,0.0008629747,-0.048407603,-0.070216425,-0.053865157,-0.015412149,0.00021416857,0.044806022,0.02326858,-0.033026807,0.016686352,-0.041717052,-0.035678826,-0.07640017,-0.0031342974,0.0081265,-0.037011713,0.023786604,0.06489776,0.0045935498,-0.120115936,-0.040221483,-0.047525108,-2.9026692e-08,0.020373963,-0.055059686,0.029972715,0.08184786,0.061588485,-0.03902523,-0.0063970615,0.03121596,0.017648276,0.080344,-0.05513474,-0.022740303,-0.009683251,0.06710747,0.045358397,0.05590644,0.11060528,-0.017902138,-0.005281831,-0.018048974,0.13128796,-0.063797385,-0.01838539,-0.002511015,0.008575135,0.08854955,-0.04355547,-0.026450243,-0.07661536,-0.027650552,0.015522475,-0.025756814,-0.014300175,-0.09510334,-0.07278663,0.0076341163,-0.028311692,-0.056974065,0.0041976226,0.0031064705,0.103041105,0.019284138,-0.023130698,0.04331912,0.007304099,-0.041021217,-0.051719267,0.028398793,-0.04509044,0.017365728,-0.047981773,-0.08327679,0.09062118,-0.010422608,0.05308587,-0.04479104,0.10124621,0.04402876,0.007878855,0.06339911,0.04891494,0.084184855,-0.0039004835,-0.1632615} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:30:03.747159+00 2026-01-25 01:27:51.857283+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1804 google ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB 1 t 1807 Go Karts Mar Menor unknown La verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos seguro de lo contentos que quedamos, igual el tiempo que duró se nos hizo muy corto. Volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo. la verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos seguro de lo contentos que quedamos, igual el tiempo que duró se nos hizo muy corto. volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo. 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"O1.02": "igual el tiempo que duró se nos hizo muy corto", "V1.01": "Volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo.", "V4.03": "La verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos s"} {0.011523652,0.02679002,-0.075902544,-0.060390264,-0.05921251,-0.011760139,0.02751747,0.03186018,-0.04566269,0.053928193,0.07299311,0.0290426,-0.004471025,-0.025305403,0.029664801,0.049254652,0.01327585,0.049927477,-0.029318625,0.028755618,0.048288748,-0.04844485,-0.051560078,0.08200733,-0.08412058,0.031068863,0.0037293134,0.041380495,-0.06821444,-0.0734305,-0.03264283,0.033269025,0.05078636,-0.0056697954,0.00063460454,-0.0007994504,0.057543155,-0.05808808,-0.09058651,0.047868416,-0.080967054,-0.043833125,-0.07359778,-0.0017333586,-0.0174572,-0.024959434,-0.025536265,0.021036603,0.023108158,0.0009813441,-0.071978346,0.0056436653,-0.06596874,0.013799849,-0.007135211,-0.002656659,-0.056243766,0.050356716,0.0424514,0.029875906,0.025471378,0.061794758,-0.041859344,0.073993064,0.066579424,-0.0849248,0.04309813,0.046469282,-0.030741211,0.025986413,0.05602295,-0.06523392,0.03953513,0.0014808156,-0.047037125,0.06412294,0.057587564,-0.021574005,-0.04052218,-0.049908075,-0.017195992,-0.006909204,-0.04051317,-0.03934232,-0.043441363,-0.024692873,-0.04892676,0.03419303,0.0049805217,0.017748574,-0.004435829,0.075441085,-0.06452286,-0.042376973,0.007559628,0.019987108,0.022924848,-0.06377097,0.055296905,0.007174506,0.056311518,0.052526873,0.08794528,0.037765756,-0.03611917,-0.0019825818,0.009662014,-0.0859163,0.0022731845,0.03566201,-0.08268974,-0.021669704,0.00717122,-0.03242952,-0.06672916,-0.02755373,0.015376376,0.005719988,-0.010361264,-0.074126825,0.029418414,-0.034118462,-0.0004728036,-0.05891425,0.013447146,-0.06457477,0.080189936,1.2444672e-32,-0.00088448654,-0.031152742,-0.018107193,0.08969921,0.017686518,0.024631605,-0.050781015,-0.059676997,-0.07963261,0.029220553,-0.036177203,0.030079762,-0.019887708,0.0004248247,0.068248294,0.039494347,-0.001634443,-0.002459481,0.01849062,0.0857394,-0.021209808,-0.07887848,-0.008195851,-0.027540581,0.06723809,0.07464346,0.046988387,-0.051113144,-0.13140105,0.042850103,0.009441048,0.029034248,-0.01537244,-0.050831817,-0.07787202,-0.024962762,0.043719705,0.040254597,-0.06583097,-0.036736153,0.02821917,-0.025872592,-0.017529601,0.017544048,-0.0034512847,-0.050245244,0.07759763,-0.0029007844,0.10064462,0.022811944,-0.051660445,-0.09798918,-0.039672013,-0.0954395,0.027405761,0.0030555082,-0.06817471,-0.026041863,-0.03592146,-0.045808937,0.0047316565,-0.020391576,-0.04398967,-0.06938337,0.029274957,-0.04507464,0.015925858,-0.0106793735,0.10193976,0.002982748,-0.11320707,-0.014621689,-0.11778116,-0.004193463,0.0009952738,0.017608691,0.024901757,0.0051854905,0.02593183,0.072506055,-0.011137548,-0.03556391,0.016728245,0.0650491,0.14674196,0.028890396,0.011606255,0.03237025,-0.013968504,0.07422692,-0.014098506,0.06879517,0.070393644,0.007928421,0.061566588,-1.5168929e-32,-0.06276445,0.01207404,-0.032646,0.07787512,0.017139347,0.041592713,-0.060325895,-0.016468529,-0.06154143,-0.088648826,-0.099960364,-0.15101002,0.07084851,-0.014209,-0.03765634,0.066789985,-0.05140424,-0.07947643,-0.08885921,-0.022362677,-0.027300788,0.001444015,0.07725831,-0.021551546,0.027809246,-0.08778304,-0.0008926414,-0.0038630953,-0.1793651,0.016074864,0.07717771,-0.08459673,0.0069173886,0.055955425,-0.01703534,0.044972286,0.08609617,0.020477049,-0.0366308,0.050576396,0.019390069,0.09037635,-0.031941574,-0.04733713,-0.06428457,0.022777086,0.017145561,-0.15864715,0.0006859678,-0.050227646,0.101803936,-0.062165543,-0.069349356,-0.054395694,0.06817626,-0.013307303,-0.07713197,-0.031500775,-0.045661733,0.03208015,0.089205414,-0.017104527,-0.055453587,-0.04217902,0.07332694,-0.015157151,0.019013984,0.0236927,-0.09870364,0.08453273,0.03601889,-0.030976728,-0.085001506,0.09179459,0.032697376,-0.05733444,-0.041132893,0.008226902,-0.016503692,0.07799613,0.03496568,-0.007441582,-0.0086351605,-0.035678,-0.011593281,0.037033193,-0.0051531317,0.06637223,-0.016247928,-0.008146118,0.013401111,0.047352113,-0.090869926,0.006081169,-0.06175386,-5.5910956e-08,0.03224329,-0.044300765,-0.05579794,-0.012692518,0.009209689,-0.0013933759,0.019656006,0.011550114,0.02520767,0.036167577,0.013276392,-0.0055979867,-0.013088753,0.059222467,0.045736358,-0.013792855,0.07608661,0.07048168,-0.02492473,-0.023433993,0.072628625,-0.019477442,-0.02278148,-0.0066046272,0.06146356,-0.0017158746,-0.04734527,0.016491583,0.007943328,0.08940727,-0.0172582,-0.010554434,-0.023216696,-0.036749974,-0.09293228,-0.08225139,0.0042772857,0.048981175,-0.04674356,0.01453805,0.10493793,0.05527172,-0.04992013,0.04522323,-0.04587505,-0.03476317,0.0041582487,-0.04757716,-0.07173075,-0.0222003,0.0025820772,-0.05336838,0.08215277,-0.008988801,0.044095844,0.0034733922,0.059362706,0.08159683,0.020495895,-0.014181016,-0.018295918,0.084640436,-0.01709891,-0.051899713} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:30.046673+00 2026-01-30 02:01:10.770583+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1210 google ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB 1 t 1213 Soho Club unknown I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark! It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a good night dancing, drinking, and having fun. i didn't expect to find much lgbt nightlife in vilnius, but this club hit the mark! it wasn't too crowded while i was there, but i easily met some great, friendly people, and had a good night dancing, drinking, and having fun. 5 2021-01-30 18:34:31.336452+00 en v5.1 E4.01 {} V+ I3 CR-N {} {"E4.01": "I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark!", "P1.01": "It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a goo"} {0.11836858,-0.03904773,-0.03425396,0.11123089,-0.03285553,0.020196121,0.016013151,-0.08028992,0.020379653,-0.007990875,0.014488369,0.03596966,-0.009907723,0.012784676,0.08767661,0.0054156263,0.05807722,-0.046306625,0.010816149,-0.04193063,-0.087214835,-0.099599436,0.034310475,0.05223477,-0.058011178,-0.071492426,0.060142115,0.033439476,0.028056212,0.00018341448,-0.084813476,0.119638175,-0.015019776,0.030568266,-0.04320735,-0.004902268,0.017196625,-0.11773238,0.043791264,0.047359306,0.034223333,0.015941538,0.009968446,-0.023474323,-0.04539939,-0.021641847,-0.012021912,-0.04829015,-0.047501035,0.053705223,0.08109591,-0.021587392,0.08389372,-0.062167633,-0.040146507,-0.0002868089,-0.03900521,0.018531332,0.03335066,0.052807838,0.08701444,0.015080509,-0.07909408,-0.019617178,-0.014825122,-0.05536666,-0.075503714,0.053879794,0.081893824,-0.07510646,0.006435729,0.0116941165,-0.043396212,0.024204321,-0.06687763,-0.050657086,-0.02318428,0.03038758,0.019090855,0.033405136,0.113797426,-0.003725231,0.022785142,0.028409721,-0.018713024,-0.059337743,-0.021675775,0.012449127,-0.027399959,0.08511835,-0.088521846,0.08076491,-0.070852585,-0.08283169,-0.0040412406,-0.008165968,-0.08825253,0.04735334,-0.029723946,0.009203403,-0.019387389,0.13325882,-0.022698004,-0.008358486,-0.098662846,-0.04086659,-0.023621501,0.022433704,-0.027017634,0.039350733,0.010945099,-0.04963801,0.0807671,-0.043804392,0.025467666,0.022211641,0.12659323,0.06284374,0.031776763,0.13222963,-0.020151094,0.075538404,0.048951242,0.040007003,-0.012936532,0.06754013,-0.040159408,-2.179153e-33,0.028784508,0.0029754897,-0.059840906,0.06587473,0.015327847,0.00399501,-0.032877427,-0.059214108,-0.0768275,-0.014486447,0.031851072,0.038190365,-0.010562766,-0.056342468,0.047328167,0.030092908,0.049406257,-0.026259966,-0.10171213,-0.03544571,0.024418015,0.058687452,-0.024243062,0.044696167,-0.11438451,0.08496202,0.06742328,-0.021822523,0.04855827,-0.007320102,0.017324874,-0.0058623655,-0.046673108,0.064765394,0.102235846,0.07436349,0.00023684201,-0.0138885025,-0.03230601,-0.030481875,0.052396454,-0.05660474,-0.06510439,0.04610124,-0.042701874,0.08626618,-0.014101896,-0.08311327,0.060378123,-0.0053311633,-0.10140846,0.10737067,-0.10076417,0.059369568,-0.036264706,-0.029963993,-0.00079572375,0.038176797,0.053380176,-0.0033051928,-0.014958552,-0.0035160447,-0.019351536,-0.048756473,-0.015551649,-0.012331501,0.017701581,-0.086301535,0.039684378,-0.033239514,0.05504951,-0.042143524,0.045895033,0.0071420195,-0.012428783,-0.0047028325,-0.051426806,0.008406276,0.034706987,0.023446199,0.016590895,0.035434503,0.023468563,-0.046273533,-0.03362638,-0.08167172,0.08749714,-0.10439852,-0.03902098,-0.009578299,-0.037899174,-0.0071679275,0.071122654,-0.03190296,0.0007530568,-1.1746933e-34,0.077686734,-0.077381745,0.015812043,-0.09964568,0.022109976,-0.011377365,-0.06825702,-0.04919953,0.06754462,0.1329064,-0.02053086,-0.03139655,0.05432309,0.10141293,0.028485665,-0.0084398845,0.09360806,-0.0024951105,0.011120434,0.06552555,-0.08700961,0.09088767,0.006036104,0.07200804,0.002406507,0.060624488,-0.008132539,-0.023017615,-0.067366555,0.023950094,-0.008998762,0.0022813235,0.0012797903,-0.01562635,0.044593062,0.046195548,0.062938966,0.03949175,-0.055899035,-0.05070401,-0.014603599,-0.05898708,-0.02517738,0.037793018,0.08640976,-0.03000266,-0.04781175,-0.0073698414,-0.050915983,-0.06963111,-0.034970846,-0.0022442217,-0.103397764,-0.014233665,0.017240878,-0.076677814,-0.012449825,0.0010864718,-0.06870557,0.013021323,-0.050773315,0.012291899,-0.036456525,0.03671117,0.01448977,-0.038055364,0.0066200825,-0.04188181,-0.055721033,0.0022435521,-0.081220694,-0.029060338,-0.0059822854,0.1362171,-0.020685118,-0.051647846,0.048588756,0.030332759,-0.011997737,-0.021950739,-0.0627571,-0.029078772,-0.05887995,-0.028568147,0.07954096,-0.017158099,-0.005129961,-0.007623679,-0.028819105,0.034615785,0.0045389556,0.036284085,-0.061295684,-0.04133863,0.039512888,-2.9974608e-08,0.036561474,0.0056831962,-0.06526912,0.07722553,0.014126598,-0.076979265,-0.0034185234,0.026577096,0.005906644,0.08122936,-0.09699468,0.0039366647,0.027197719,0.011701711,0.01999487,-0.0033705372,0.033579044,-0.008985122,0.014578998,0.0706271,-0.017269865,0.0032209447,0.0006485635,-0.047493745,-0.027184134,0.007864642,-0.032707427,-0.07159647,-0.023400592,-0.036205426,0.0009112295,0.026586063,0.011633788,-0.008525526,-0.004209912,-0.0067276135,0.07447695,-0.030330464,0.002455448,0.052894205,-0.038961492,-0.058726568,0.00923288,-0.016598372,-0.05391067,0.077195995,0.058020405,0.0008421658,-0.02244108,0.04429677,-0.09106102,0.08324818,0.004578745,-0.014678565,-0.0017060186,-0.06975649,-0.035180986,0.062945284,0.008714211,0.0026387891,0.05148924,-0.023367561,-0.099661954,-0.058611512} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:43:19.362205+00 2026-01-29 18:36:00.491419+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1212 google ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE 1 t 1215 Soho Club unknown The best club in Vilnius. Always good vibes. Very polite and professional staff. They make the best events!!!!this is the place you must visit if you are in Vilnius! :) the best club in vilnius. always good vibes. very polite and professional staff. they make the best events!!!!this is the place you must visit if you are in vilnius! :) 5 2023-01-30 18:34:31.336452+00 en v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "The best club in Vilnius. Always good vibes.", "O1.01": "They make the best events!!!!this is the place you must visit if you are in Vilnius! :)", "P1.01": "Very polite and professional staff."} {0.047792904,-0.0463316,-0.021455104,0.074931495,-0.058265503,0.05256401,0.009405953,-0.0395851,-0.008491997,0.018405981,-0.005034582,0.038869493,-0.023284707,0.02963005,0.021587487,-0.012099639,0.06761038,-0.025924947,-0.013151595,-0.06928847,-0.056336943,-0.086045094,0.02105883,0.06077579,-0.082752794,-0.0363811,-0.008929095,0.042154506,0.05801479,-0.008455974,-0.05175891,0.059005488,0.0066543506,0.062754035,-0.055434305,0.016052514,-0.036311645,-0.10435867,0.012559957,0.00785464,-0.011431061,0.041356463,-0.049027473,-0.028848287,-0.0052516027,0.030816207,-0.05442942,-0.021330213,-0.0074203075,0.13686164,-0.009859939,-0.033788472,0.081963286,-0.067607336,-0.013907344,0.01404576,-0.062104795,0.0035769981,-0.02369066,-0.009792753,0.06544049,-0.023706526,-0.10524769,-0.026501453,0.0058522727,-0.041675936,-0.018503247,0.08416106,0.06787627,-0.10877641,0.039532226,-0.02401227,-0.021135155,0.029610688,-0.087003,-0.0058421227,-0.03543994,0.033820238,-0.026381718,0.0430915,0.08828216,0.011488678,-0.014859568,0.02281723,-0.022040667,-0.06794105,-0.043821525,-0.0066931164,0.013358685,0.075224996,-0.049679987,0.097238354,-0.061085638,-0.046780914,-0.020096365,0.0609613,-0.07479144,0.044552792,0.007966276,-0.008253087,0.023609439,0.10858864,-0.051454403,-0.0043689134,-0.059474844,-0.045667935,-0.0075287195,0.0038839667,0.011833915,0.06167201,0.017105088,-0.012776334,0.0035471595,-0.058293298,0.01429801,0.06787913,0.07936244,0.07824033,-0.018481357,0.048756517,-0.0022225233,0.048975978,0.017187955,0.0022978035,0.0062572355,0.005051696,-0.03536459,-4.706901e-33,-0.0014097992,0.057612643,-0.03416107,0.056337137,-0.046190117,0.0053487364,-0.08267084,-0.054961562,-0.040585432,-0.0130005125,0.015393331,-0.0030425563,0.032514043,-0.0825857,0.015882077,0.075479604,0.07530481,-0.068938516,-0.10895496,0.0045695864,-0.029538393,0.03867086,-0.012866648,0.025068726,-0.012885732,0.06511921,0.07041436,-0.0069996584,0.030524325,-0.014655949,0.0556803,-0.018075114,-0.095342994,0.048367355,0.015557617,0.037946884,-0.095653266,-0.007579504,-0.008760647,0.0026927358,0.057101604,-0.058240306,-0.08340122,0.09997149,0.009189101,0.05116247,-0.047808584,-0.047354855,0.10527569,-0.07588488,-0.086931214,0.047505576,-0.053912733,0.06531259,-0.001515583,-0.011944654,0.05749464,0.06595887,0.028096812,-0.026557602,0.013153266,-0.071841046,-0.05675255,0.034335207,0.00053163915,-0.064599775,-0.025502158,-0.05678437,0.048841905,-0.035747558,0.038632754,-0.032530397,0.0431583,0.06126635,-0.07363968,-0.006041461,-0.015537917,0.037655238,0.052705277,0.10250164,-0.029861338,0.07782179,-0.047582656,0.013529744,-0.025755234,-0.05130738,0.042335212,-0.07272349,0.0072350684,-0.024519648,-0.03677898,0.0065201884,0.12651366,0.019242665,0.019331945,1.7438966e-33,0.11548152,-0.0313122,0.0143742105,-0.011609295,-0.017541718,0.05211205,-0.10534247,-0.0180648,0.01150941,0.090512924,-0.08877491,0.013668189,0.0012100921,0.09595578,-0.033766482,0.03596026,0.12760228,-0.048216432,-0.012412788,-0.0028369722,-0.061347373,0.095198475,0.047412332,0.050398987,-0.034734767,0.0019869057,-0.018402465,-0.03359975,-0.078599624,0.053734813,-0.05126994,-0.013671801,0.051641792,-0.0028129509,0.038039494,0.06518824,0.07678575,-0.04852153,-0.09051775,0.030976538,0.02100701,-0.009614635,0.0036435737,-0.010405122,0.042388294,-0.081265576,-0.003500713,-0.023674265,-0.060145114,-0.07723391,0.08234302,0.000785453,-0.08421314,0.013247455,0.012697987,-0.014182903,-0.03858904,-0.020409701,0.014919116,-0.045603286,-0.030679459,-0.0356047,-0.051498402,0.094645135,-0.057289716,0.0063573634,0.06182221,0.022689806,-0.048880868,-0.027517436,-0.10217368,0.0028291298,0.030991264,0.14913508,0.0063996273,-0.025121862,0.033792477,0.024252458,0.045338646,-0.033156786,0.0025500858,-0.018783092,-0.03534981,-0.024211448,0.075294845,0.0027918322,0.015160911,-0.028913913,-0.008991243,-0.042914826,0.032215696,0.037821334,-0.016281808,0.056399144,0.019678533,-2.178043e-08,0.081244886,-0.008507801,-0.04747006,0.0785379,-0.023824673,-0.1659273,-0.027289703,0.032565337,-0.0028043494,0.053381465,-0.116244204,0.011439971,-0.05965865,0.0133022815,0.059251167,0.025766378,0.0023285064,0.041865233,-0.014547423,0.07515976,0.010189589,0.042120147,-0.019996196,0.012311781,-0.06111236,-0.026178928,-0.019765472,-0.09648523,-0.056502998,-0.07376657,-0.018373279,0.040458977,0.032732148,-0.030897856,-0.010118778,0.061883777,0.12364988,-0.086560704,0.0020683573,0.07105753,-0.044268005,-0.07528704,-0.011146018,-0.014896649,-0.07717283,0.027209219,0.084803216,-0.047308024,-0.0059717437,-0.009433242,-0.0912626,0.07063016,-0.006829788,-0.011427879,-0.042868253,-0.041877177,-0.010123416,0.021562422,-0.003348015,0.013978457,0.09290566,0.016030185,-0.04028744,-0.049474906} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:43:49.059751+00 2026-01-29 18:36:00.49729+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 195 google Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB 1 t 198 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Smooth rental when booking directly with full coverage. Return was extremely quick and the shuttle was ready to bring us to the airport. One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there. smooth rental when booking directly with full coverage. return was extremely quick and the shuttle was ready to bring us to the airport. one star less because it was quite an old car (nissan micra) with not the best exterior state, but it drove well so no complaints there. 4 2025-10-27 01:27:48.340153+00 en v5.1 J1.01 {A1.04} V+ I2 CR-N {} {"J1.01": "Smooth rental when booking directly with full coverage. Return was extremely quick and the shuttle w", "O2.01": "One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but i"} {0.03892909,0.014388446,0.04109429,0.095949516,-0.032704115,0.022892257,0.08106002,-0.018886335,-0.04166651,0.067410365,0.0032141923,0.09152111,0.00943147,0.014198344,-0.011276296,-0.06916654,0.09622337,-0.10701477,0.010828115,-0.040136296,-0.037442483,-0.035888016,-0.00075550843,-0.0035251207,0.07143819,0.04698874,-0.0096246265,0.09685522,0.09358301,-0.085763186,-0.038539607,0.062044766,0.018197982,-0.015869,-0.007816595,0.059136797,0.019984707,-0.071553245,-0.028000839,-0.04380415,0.019760724,0.045140874,0.056973502,0.029986165,-0.021338573,-0.10850486,0.06522084,0.0016368272,0.11909578,-0.008810996,0.075709835,0.013146091,-0.0028252134,-0.055984657,-0.06358155,0.033999924,-0.056726273,-0.034505922,-0.015426737,-0.07134501,-0.0028733097,-0.05196694,0.014587974,0.02294732,-0.0035121734,-0.07448132,-0.08629153,-0.0834244,0.028543046,-0.060314063,0.0024947731,0.019615851,-0.062456544,-0.008626328,-0.008515403,0.00070105534,0.122517206,0.0425906,0.013380567,-0.0070360643,0.03780983,-0.04009365,-0.05524752,-0.025945019,0.01509279,-0.064505324,0.04659754,-0.052681465,0.008010328,0.057204474,0.11465399,0.045223393,0.018267846,-0.027915396,-0.036180854,0.041885447,-0.045585092,-0.03798739,0.06894006,0.06765358,0.075639024,0.10569776,-0.05799812,-0.017232241,-0.07182522,-0.029139435,0.09737833,-0.005240611,-0.024760239,0.008667931,-0.042942546,0.03662534,0.0429529,0.036309004,-0.09448512,0.05695471,-0.03965938,-0.0005463994,0.034213476,-0.06644868,-0.03895464,-0.021515429,0.0973103,0.0072208703,-0.05150157,0.005425978,0.048438687,-1.7814857e-34,-0.072483286,0.013999655,-0.04698879,0.058750965,0.03259961,-3.696475e-05,-0.032753717,0.021241585,-0.018791476,-0.0040627536,-0.019254597,-0.0074086986,0.030555148,-0.04078552,0.023154605,0.04648154,-0.08585242,0.020800527,-0.057945844,-0.008040633,-0.04074628,0.020139238,0.00812298,0.0022439545,0.106635764,-0.036435343,0.027047625,0.018589519,0.048285868,0.05003887,-0.12176231,0.06292392,0.0066143596,0.01581235,-0.0035389983,0.03685618,-0.07095474,-0.010098053,-0.088636026,0.032719687,-0.018134547,-0.04798039,-0.13181323,0.039196823,0.02753347,0.024510914,-0.018746318,-0.027221061,-0.035306714,0.028708993,-0.079579055,0.042069394,-0.052312262,-0.0043985057,-0.10803685,0.056177787,0.06713054,0.00028397632,-0.028328186,0.018506037,-0.0020838801,0.053910665,-0.03234868,-0.075179674,-0.06103682,-0.02364075,-5.723994e-05,0.037121635,0.0074012405,0.047950204,0.045399465,0.0033816427,-0.022197157,-0.051543612,0.05547729,-0.054406624,-0.094585605,-0.024486933,0.030080117,0.008019565,0.022711754,0.029351775,-0.034328822,0.052832942,0.038714085,-0.022523893,0.034758966,-0.045730565,0.013744202,0.002008314,-0.014517361,0.0572012,0.05045907,-0.023879558,0.02604182,-2.4612119e-33,0.05312097,-0.006354917,0.0013941824,0.013027605,-0.07937526,0.010893924,-0.05844346,0.055907045,0.01660357,0.00560831,-0.08834358,-0.0142034795,0.09761495,-0.023471493,-0.036135256,-0.009679021,0.10403813,-0.06751223,0.0068620904,0.020233845,0.07653098,0.050862905,0.026974628,-0.011800719,-0.04803263,0.011334051,-0.06618688,0.1093767,-0.058156047,0.003136366,-0.006959433,0.002733747,0.0042081596,-0.018114299,0.011345454,0.09381683,0.04665908,0.047355976,-0.040484115,0.01169817,0.021235038,-0.08357959,0.015940158,0.017541545,0.09065742,-0.02987176,-0.006363846,-0.062146917,0.0020578227,0.04190711,0.007145719,-0.020216014,-0.080391385,0.12367574,0.0014041156,-0.028277982,0.017014442,0.01619288,0.015519613,0.08480316,-0.023121394,-0.02379019,0.012826827,-0.060924176,-0.040564176,-0.11973096,0.10462211,-0.09314695,-0.028445315,-0.029100548,-0.08024523,-0.07193594,-0.01911073,0.123696476,0.009980095,0.08094466,0.100502685,-0.05337435,0.0018144192,-0.015870836,-0.007877622,0.02341835,-0.058194563,-0.0057643694,-0.007047202,0.032269474,0.01253182,-0.11910021,-0.0019982853,0.08729753,0.033358466,-0.023658011,0.0002274931,-0.036539316,-0.06518295,-3.7796735e-08,-0.048626784,-0.0011783236,0.032396276,-0.01544354,-0.0036200192,-0.05022071,0.008248407,0.06345145,-0.019442962,-0.047076575,0.0010083382,-0.015252256,-0.051851492,0.07443734,-0.033484943,0.03246919,-0.028325232,0.09403396,-0.029041192,-0.091191575,-0.056832224,0.03949572,-0.0089704525,0.008330598,-0.024485774,-0.020529833,-0.00076662307,0.0020429213,0.06828046,-0.1090783,-0.1056173,0.047131598,-0.00073361077,0.007442635,-0.07773798,-0.02541147,0.040170487,-0.02703232,0.048017725,-0.0011299948,0.044805463,0.02899773,-0.020678474,-0.05963076,-0.03148574,0.018501973,-0.04638434,-0.018109733,-0.08278109,-0.027387524,0.028222358,-0.021590186,-0.08614641,0.10992464,0.06215748,-0.048373833,-0.08612986,-0.074805535,0.012898911,0.058549933,-0.055693485,0.026664568,-0.09550763,0.01628077} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:40:51.747823+00 2026-01-25 01:27:50.000424+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 356 google Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB 1 t 359 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles lief äußerst schnell und unkompliziert. Das Personal war sehr nett. Sowohl Abholung als auch Abgabe lief sehr routiniert, entspannt und reibungslos. Wir waren 30 Minuten zu spät zur Abgabe, war gar kein Problem. Jederzeit wieder und vielen Dank!!! alles lief äußerst schnell und unkompliziert. das personal war sehr nett. sowohl abholung als auch abgabe lief sehr routiniert, entspannt und reibungslos. wir waren 30 minuten zu spät zur abgabe, war gar kein problem. jederzeit wieder und vielen dank!!! 5 2025-10-27 01:27:48.341327+00 de v5.1 J1.03 {A1.01} V+ I3 CR-N {} {"J1.02": "Wir waren 30 Minuten zu spät zur Abgabe, war gar kein Problem.", "J1.03": "Alles lief äußerst schnell und unkompliziert. Das Personal war sehr nett. Sowohl Abholung als auch A"} {-0.013118571,0.058920257,-0.03753711,-0.034272175,-0.021493375,0.011582567,0.090645246,0.035413634,0.0050765155,-0.00458809,0.05765329,-0.019847294,-0.06358359,-0.010587293,-0.036741156,0.004396442,-0.11687602,0.10232226,-0.0649802,-0.0036243636,-0.040653672,-0.04497332,0.027737854,0.06430363,0.016221238,-0.02668279,0.001175067,-0.024119012,-0.01020452,-0.07610645,0.10426937,0.044608843,0.008879406,-0.026293848,0.03177058,0.061927672,-0.096435264,-0.023459367,-0.05545462,-0.0026969218,-0.091800466,-0.07903211,-0.05754516,-0.04347421,-0.026808627,0.026027013,0.020908322,0.02034142,0.0045572678,0.035289638,-0.09377012,0.031935856,-0.03031264,-0.058651533,0.06778085,-0.10080082,-0.02696344,0.011946408,0.034648534,0.03637792,0.028106814,-0.03403113,-0.012894308,0.06416751,-0.034302063,0.053248268,-0.013672971,-0.08154131,-0.033407852,0.05748058,0.0035966553,-0.07069394,-0.10936127,-0.016510874,-0.024405591,-0.042929985,-0.076149955,-0.020108951,0.03433447,-0.023181904,0.030954326,-0.018428765,0.03512877,0.0014673362,0.033539694,-0.048571855,0.06365357,0.08791744,-0.009496005,-0.005324365,-0.013844628,-0.0034338094,-0.0372633,-0.0022555434,-0.13202737,-0.037284046,0.0015527318,-0.001971423,-0.06504172,0.02693136,-0.04297945,-0.014389485,0.052473452,0.054991804,-0.039962593,-0.028572086,-0.008731268,0.00020160165,-0.10335723,0.08679014,-0.043137934,-0.086293265,-0.020757329,-0.099237025,0.10337742,0.03477614,0.019918773,-0.054341365,-0.004775607,0.010514151,0.04202303,-0.03352366,-0.0036662617,-0.021428145,-0.026668336,-0.020431967,0.10866374,1.7547918e-32,-0.085477956,-0.050202075,-0.06576486,-0.029595422,-0.059740804,-0.025356313,-0.0048369365,0.02615149,0.033172924,-0.0050782165,0.06498739,0.048527684,0.060398463,0.010580317,0.004236365,0.030501701,0.015891567,-0.06428088,0.011339669,0.012103085,0.017914413,-0.024065897,-0.03696277,0.052776583,-0.0070141014,-0.08104304,0.03658574,-0.01582512,-0.036582213,0.010411078,0.08745689,-0.034614492,-0.044484816,-0.017644435,0.0482846,-0.0491529,0.025575923,0.028871452,0.0030102632,-0.004335672,0.012916866,-0.008830564,0.029793799,0.00031180627,0.05780012,0.028850151,-0.0002638229,0.08245846,0.010929866,0.050008558,-0.05778308,0.0410584,-0.018099425,-0.00083433586,-0.02184772,0.08933304,-0.0784749,-0.0044503924,-0.049947415,0.043421965,0.04963708,0.035403937,0.028659334,-0.092971,-0.064403884,-0.07460018,-0.029939821,-0.011805201,0.00040975903,0.0073880423,-0.04354459,0.034782108,0.07465288,-0.07983593,0.017357813,0.042661436,0.0062712096,0.08382632,-0.06757246,-0.0071372925,-0.041716293,0.010301274,0.037759647,-0.07586914,0.004676277,-0.055877686,-0.003760984,-0.033509802,-0.05183064,0.11612394,-0.030456806,0.0031362295,0.036157873,0.059832517,0.058218844,-1.6997121e-32,0.051892072,0.039477773,0.015858972,0.01899169,0.110456675,0.030876962,0.013389185,0.058570243,-0.014302493,0.077766486,-0.051062938,-0.011472946,0.10242266,-0.021356395,-0.05658951,0.0083263675,0.076361164,0.0060098656,-0.03922831,-0.010249842,-0.011503608,0.09615659,-0.019052017,-0.075891264,-0.015531645,0.025475265,0.06031327,-0.040909946,-0.09478975,-0.0033576016,0.040377058,0.04018226,-0.061805397,-0.07294896,0.005345472,0.0035351864,0.03334874,0.07632133,-0.029882528,0.030945051,0.018604355,0.042648196,-0.08768754,0.0072423546,0.08239099,-0.038014244,-0.12357813,-0.11932616,-0.052007794,-0.025010565,-0.03556517,-0.014295038,0.12113835,-0.08636024,0.052415915,0.018900815,0.09831069,-0.11500898,-0.025287813,0.044798944,0.07738132,0.05477972,0.11632453,0.008302028,0.10031268,-0.06969382,-0.08872544,-0.02443774,0.011969305,0.020222232,0.0017678442,0.0105877565,-0.10214447,0.046041388,-0.05712894,0.00075841194,-0.012859601,0.057922643,-0.014683398,0.011023056,-0.01199288,0.05568937,0.011012374,-0.09538652,-0.05324508,-0.018994464,0.036734052,-0.025096722,-0.0541674,-0.055174906,0.013870053,0.031111786,-0.0044430303,0.02902351,-0.02914958,-5.857814e-08,-0.0076622325,-0.056692317,-0.008502686,0.02746362,0.06834681,-0.08502151,-0.007703853,-0.017587943,-0.06117773,0.07002272,0.007039237,-0.0053400393,0.008598794,0.096578166,-0.0074959313,0.016363643,0.067590326,-0.06261605,-0.03933889,0.0209067,0.17381428,-0.08951944,-0.080820836,-0.002434454,-0.0014477139,0.061325487,0.019883009,-0.0023598378,-0.032953274,-0.004956352,0.00022909843,0.04875778,0.010816108,0.005326941,-0.027608292,-0.027960079,0.006142548,0.02519127,-0.12563068,0.035007305,0.020023864,0.0141447,0.05353135,-0.011204311,0.008072137,-0.048312496,-0.05078169,-0.057472497,0.021295661,0.13515839,0.01824254,-0.008851856,0.0061835586,0.053935055,0.055189695,0.04426153,0.045665205,0.024189176,0.016644452,0.010732803,0.013187725,0.05131942,-0.08859812,0.029846154} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:26:10.693663+00 2026-01-25 01:27:51.068881+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 357 google Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB 1 t 360 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Não sei deixem enganar por estes burlões.!!!! Alem do staff ser todo arrogante, mal dispostos e estúpidos.\nCobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira.\nComo tinha seguro, não puderam cobrar extras de outra maneira.\nUma VERGONHA.\nNão devia ser permitido se aproveitarem desta maneira dos clientes.\nSão absolutamente ridículos.!!!! não sei deixem enganar por estes burlões.!!!! alem do staff ser todo arrogante, mal dispostos e estúpidos. cobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira. como tinha seguro, não puderam cobrar extras de outra maneira. uma vergonha. não devia ser permitido se aproveitarem desta maneira dos clientes. são absolutamente ridículos.!!!! 1 2025-08-28 01:27:48.341335+00 pt v5.1 A1.03 {} V- I3 CR-N {} {"A1.03": "Não sei deixem enganar por estes burlões.!!!! Alem do staff ser todo arrogante, mal dispostos e estú", "P1.02": "Cobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira. Como "} {0.0056189336,0.058081724,0.024331545,-0.032634255,-0.096725844,-0.021140246,0.06294196,0.0619097,-0.036812756,0.0043968456,-0.0037091372,-0.07027483,0.045627266,0.0137911085,-0.005071271,-0.03736654,-0.0052561616,-0.010708153,0.05792196,0.051097997,0.002377273,-0.044982366,-0.08078814,0.061190277,-0.0659981,0.0023161736,0.034174494,0.016902156,-0.0002035177,-0.037820593,0.011278792,0.06810568,0.018067604,-0.0295464,-0.011618958,-0.01125581,0.029122507,-0.08184436,0.03857655,0.08835996,-0.026267195,-0.030253462,-0.08941121,-0.061854012,0.076697886,-0.048589766,0.049106877,0.09467992,0.05548716,-0.02506546,-0.041892327,0.05532114,-0.025329873,-0.052926432,-0.072128996,-0.062592186,0.0918129,0.025167057,0.04161147,0.04988674,0.055404864,0.023535248,0.021177892,0.057596713,-0.0051987995,-0.06488051,-0.0810833,0.100338325,-0.10669098,0.047463495,0.06599028,-0.14664294,0.03268368,0.017860979,0.00020766107,0.083098985,-0.03341053,-0.023404712,-0.015208467,-0.090395585,-0.04636487,-0.046589356,-0.04754664,0.021357197,0.019859498,0.03935275,0.029953528,-0.029040603,0.043909833,0.010463086,0.09082507,0.07889465,-0.11668644,0.0019658315,-0.02564881,-0.025447011,0.008230117,0.028693505,-0.070598304,0.00046001238,0.02798415,0.02843435,0.057465892,-0.03828651,-0.06883012,0.039917786,0.016947791,0.01791454,0.06606024,0.055522513,-0.07427081,-0.046799,-0.10813614,-0.016147282,-0.01846457,-0.023458725,-0.027645996,-0.05452608,-0.018292584,0.020666527,0.036360897,-0.028799728,-0.016067378,-0.015395466,0.035577845,-0.08052456,0.040081173,1.3134025e-32,-0.050917134,0.019558396,-0.043917786,0.009196326,0.00070441054,-0.004847506,-0.04088128,0.01282564,-0.053789023,0.038136087,-0.051131673,0.06638938,-0.020523183,0.08385063,0.062103007,0.03495896,0.057456393,0.0013434637,-0.012388347,-0.031424496,-0.0043749847,-0.017839657,0.0064586885,0.007777808,0.008084262,0.05014075,-0.023542378,-0.06317293,-0.00093621144,0.05569031,0.027227616,-0.050877523,-0.012079227,-0.06690944,-0.108860224,-0.065459855,-0.026231503,-0.009614801,-0.052786145,-0.059510954,-0.012606834,0.017537326,0.10688007,0.035675827,-0.0053636692,0.09441638,0.06341889,-0.0058064056,0.10389563,-0.02876674,-0.06642115,-0.06627308,-0.007500811,0.058906533,0.089994885,-0.07241931,-0.080090456,-0.0060368385,0.05840683,-0.08629569,-0.002836144,0.027814146,-0.024812566,-0.0081996,-0.046981633,-0.060029015,0.009139894,0.034420315,0.1499896,-0.061695695,-0.031748533,0.07001112,-0.004481429,0.054274723,-0.039845567,-0.013954965,0.01420321,0.010773596,0.03450269,0.019079177,-0.02499439,0.057484027,0.033624716,-0.05050801,0.15628125,0.12143804,0.121211,-0.0054255202,-0.030994542,0.17817849,0.0011344989,0.065231055,-0.053832922,-0.043539226,-0.0036072477,-1.3381914e-32,-0.012738605,0.013298224,-0.024155155,-0.055824544,-0.018959695,0.023274513,-0.046385664,0.06747772,0.030452734,-0.04956519,-0.08112304,-0.016809065,0.07447595,0.02034328,-0.101828866,-0.03726056,-0.004988255,-0.07162971,-0.067447655,-0.061203927,0.0035648555,0.0121900095,0.0333442,0.021224214,-0.02480979,-0.015725613,-0.028761977,0.008873008,-0.022008186,0.016128508,0.017609894,0.008133072,-0.004942107,0.09268254,0.010238891,-0.034835156,0.0067386967,0.100853615,-0.06349675,0.06197271,0.01088602,0.0112632625,-0.035287894,-0.07734595,-0.023653746,-0.057574436,-0.013319656,-0.13475311,-0.0999238,-0.04481822,0.120123684,-0.04655021,0.012162116,-0.011333271,0.014526207,-0.023621518,0.0017207781,-0.06663832,-0.04314481,-0.028992964,0.12572086,0.06210821,-0.0003670464,-0.026568677,0.09886575,0.0050797574,-0.020311762,0.0038781548,-0.044577237,-0.025433876,0.064151675,-0.055419773,-0.041832324,0.005701544,0.006605983,-0.004267982,-0.052393578,-0.04303779,0.011313229,0.0070820213,-0.08099195,-0.05369509,0.010270746,0.015578276,-0.025729146,-0.010735784,-0.04530177,0.0054849125,-0.01047856,0.06586628,0.01095883,-0.0004191741,0.04943044,-0.0105243595,-0.03956887,-5.460001e-08,-0.029860044,-0.033251666,0.062620424,0.057874393,-0.00626098,-0.07186269,-0.035672702,-0.046479955,0.033370897,0.051413734,0.01634908,-0.12794054,-0.038169783,0.05978516,-0.010301169,0.059120636,0.025177784,0.059228025,-0.03692733,-0.13098639,0.043448012,0.03965166,-0.047133334,-0.01719628,0.009712893,-0.004879132,-0.064401604,-0.033739984,-0.011667358,-0.0034495068,-0.03092295,-0.02645655,0.0511357,-0.007678052,-0.019624854,-0.020340947,-0.012505464,0.011089403,-0.051821347,0.039081484,0.06713178,-0.11869171,0.007887921,-0.04600556,0.044508375,-0.008665068,0.027995843,0.026865428,0.0050904257,-0.05098933,-0.031031845,0.032059446,0.06831108,0.012364568,-0.03935308,0.015087407,0.044435237,-0.0053932345,-0.03105025,0.029485045,-0.009378096,-0.0005486408,-0.0004866737,0.0015462968} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:38:10.141811+00 2026-01-25 01:27:51.071656+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 360 google Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB 1 t 363 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Experiencia muy negativa con esta empresa de alquiler de vehículos.\nCuando llegamos, después de haber escogido el seguro a todo riesgo, se nos cobró una fianza de 200€ (en vez de bloquear el depósito se nos cobró con un datáfono). Al devolver el coche, sin ningún desperfecto, nos dicen que la fianza se nos devolverá en unos días, ya que ya se había “desbloqueado el depósito”.\nTras 2 semanas sin rastro del dinero, decidimos escribir un correo al que nadie contesta. Llamamos por teléfono y conseguimos que 4 días después nos contestaran pidiendo el número de reserva, contestamos al momento y dejan de respondernos.\nHace 2 días (una semana después de que nos contestaran al primer correo), volvemos a llamar y nos dicen que ya sale como proceso finalizado y que según ellos ya nos habían desbloqueado el depósito, MENTIRA, les decimos que es imposible ya que nos habían cobrado en la oficina con el datáfono (no hay ningún dinero bloqueado) y nos dicen que ya lo miraran y que en unos minutos nos llamarían.\nNos contestan a la tarde al correo que habíamos enviado hace una semana, pidiendo el comprobante del cobro, se lo enviamos y seguimos sin saber nada. Espero que me devuelvan mi dinero lo antes posible. Sin embargo, no lo recomiendo para nada. experiencia muy negativa con esta empresa de alquiler de vehículos. cuando llegamos, después de haber escogido el seguro a todo riesgo, se nos cobró una fianza de 200€ (en vez de bloquear el depósito se nos cobró con un datáfono). al devolver el coche, sin ningún desperfecto, nos dicen que la fianza se nos devolverá en unos días, ya que ya se había “desbloqueado el depósito”. tras 2 semanas sin rastro del dinero, decidimos escribir un correo al que nadie contesta. llamamos por teléfono y conseguimos que 4 días después nos contestaran pidiendo el número de reserva, contestamos al momento y dejan de respondernos. hace 2 días (una semana después de que nos contestaran al primer correo), volvemos a llamar y nos dicen que ya sale como proceso finalizado y que según ellos ya nos habían desbloqueado el depósito, mentira, les decimos que es imposible ya que nos habían cobrado en la oficina con el datáfono (no hay ningún dinero bloqueado) y nos dicen que ya lo miraran y que en unos minutos nos llamarían. nos contestan a la tarde al correo que habíamos enviado hace una semana, pidiendo el comprobante del cobro, se lo enviamos y seguimos sin saber nada. espero que me devuelvan mi dinero lo antes posible. sin embargo, no lo recomiendo para nada. 1 2025-08-28 01:27:48.341365+00 es v5.1 J1.03 {} V- I3 CR-N {} {"J1.03": "Experiencia muy negativa con esta empresa de alquiler de vehículos. Cuando llegamos, después de habe", "V1.01": "Sin embargo, no lo recomiendo para nada."} {0.0026810537,0.036450822,-0.024549313,-0.057529178,-0.08344518,-0.015588575,0.09445791,0.024347644,0.06310155,0.03020618,0.10706555,-0.042774037,0.034082506,0.0077463537,0.040940564,-0.008702195,0.06096875,-0.0012086079,-0.010114809,0.06057749,0.12543221,-0.08333384,-0.08238319,0.0515119,-0.020054586,-0.022827445,-0.020537581,0.031705696,-0.050162334,-0.044787627,-0.016956842,0.055419557,0.072004676,-0.04129772,0.031044492,-0.07389953,0.027828295,-0.030147497,-0.06771029,0.074202105,-0.06509746,0.009786117,-0.054741833,-0.076944984,-0.06670933,-0.051869567,0.06319221,0.0995383,0.024276491,-0.03067541,-0.024539365,0.035748735,-0.014559084,0.013201478,-0.051150635,-0.051634658,-0.015864044,-0.0005276605,0.057636086,0.029417839,-0.018141247,-0.006208979,-0.0076711103,0.027769146,0.08213046,-0.046155058,0.013650831,-0.013371249,-0.08030993,0.062128987,0.068919644,-0.07195322,0.032630622,-0.016940923,-0.04354095,0.101399735,-0.014905093,-0.0066848234,0.021489667,-0.07931965,0.057779558,-0.02712413,0.048597626,-0.07851912,0.012472215,-0.04046798,-0.008289547,0.051452484,0.022635015,-0.019743118,-0.006640865,0.06521703,-0.05679448,-0.022807598,-0.01621543,-0.019263402,0.02419818,0.024581958,0.053422995,0.015715625,0.11622918,0.09575293,0.0009828138,-0.009811184,-0.013258598,0.0103242975,0.032288868,-0.033184197,0.06785757,0.027684262,-0.078442976,-0.02544673,-0.00491238,-0.023131005,-0.07868625,0.0066322573,-0.06459499,-0.040376965,-0.02051907,-0.037928097,0.05128956,-0.009524733,-0.05826471,-0.075119704,0.045573555,-0.02785705,0.052668493,1.6051616e-32,-0.0043092165,-0.007795472,-0.026134653,-0.0051510413,0.049030002,0.05555956,-0.030872045,0.09297305,-0.046925258,0.05231586,-0.07054635,0.0058043795,0.025146643,0.027406428,0.07393261,0.017502632,-0.027995015,-0.091143504,0.09362839,-0.019289913,-0.012989568,-0.020001622,-0.015402672,0.0077594095,0.03327666,0.05535475,-0.03516933,-0.042027555,-0.012766182,0.058613557,-0.017947696,0.002852756,0.038126223,-0.037959997,-0.030140739,-0.05919476,-0.003009711,0.039581303,-0.06932391,-0.055618662,-0.1033573,0.053875875,-0.054425728,0.06380351,-0.03322847,-0.0209797,0.075453766,-0.023961676,0.059778996,0.056447424,-0.045055054,-0.06359391,-0.06880476,-0.058720566,-0.008877394,0.017730182,-0.115536965,-0.047470078,-0.045277465,-0.05792653,-0.005266852,0.03128299,0.0028820923,-0.08676643,-0.017388036,0.013084881,0.0070045567,-0.03957078,0.14460944,0.056426704,-0.01889791,0.002941625,0.00642533,-0.0015957187,-0.008492356,0.008005387,0.065044306,0.023747757,-0.027231121,0.033655044,0.006604629,-0.06887231,0.07631303,0.03884092,0.016097602,0.056771927,0.07192951,0.0073634833,-0.028029112,0.10525373,-0.005584275,0.08179926,0.061673418,-0.01981606,0.05948765,-1.5600775e-32,-0.047184866,0.03864919,-0.031389166,0.005709184,-0.07645993,-0.0075024995,0.0065669045,-0.012786704,0.00305228,-0.08457679,-0.07478487,-0.06151733,0.14210346,-0.018289069,-0.0886384,0.018464409,-0.041750077,-0.074073054,-0.05776733,-0.107517175,0.033208594,0.08081876,0.060750723,-0.017102664,0.0057539092,-0.06596284,-0.01316156,-0.043270726,-0.064344615,0.06559479,0.01772871,0.0055966433,0.015267858,0.046683248,-0.047126953,0.0017446262,0.03938473,-0.025660472,-0.033044513,0.031717815,0.0036969709,0.11275847,0.034729093,-0.034561258,-0.015846761,-0.00580921,0.002718449,-0.117422156,0.0491193,-0.035968315,0.08312485,-0.043061025,-0.091348656,0.028958319,0.03192904,0.022031924,0.00041215765,-0.08454288,-0.08881178,0.018151103,0.030477645,0.050437655,-0.039174132,-0.020343978,0.08826558,-0.039362457,0.013506446,0.03865443,0.06729402,0.018492918,0.07145395,-0.013934287,-0.10240772,-0.047667876,-0.015891412,-0.0028470592,-0.088733785,0.026344435,-0.06560663,0.02689652,-0.016219096,0.072140865,0.009943568,-0.012112092,-0.0089305695,-0.007350207,-0.025231369,0.028987382,-0.071676075,0.05581284,-0.023618778,0.024118809,-0.02118907,-0.001847787,-0.021273203,-6.114901e-08,-0.024203992,-0.008058185,0.012269989,-0.009593973,0.06742414,-0.025607426,0.01578886,0.04639512,0.03809125,0.04933559,0.08746367,-0.008139104,-0.12116147,-0.00071130664,-0.0052402206,0.0015737504,0.078381695,0.010191683,-0.040165722,-0.083179206,0.11228754,0.003376071,-0.08504723,-0.007478445,0.025151258,-0.012206805,-0.005541926,-0.00020640307,-0.013166714,-0.0045530437,-0.06289335,-0.028418818,0.006382584,-0.124379136,-0.06351155,-0.07085135,0.00223071,0.006365891,-0.05987674,-0.012358812,0.078550614,-0.0472184,-0.03590945,-0.008051818,-0.052041516,-0.06073773,0.021028928,0.0061839386,0.0013209652,0.050046254,-0.01758581,-0.07945159,0.067632206,0.057759635,0.081892766,-0.11399525,0.006492281,0.001679068,-0.020064756,-0.0084274225,0.11019215,0.111888446,-0.040359225,-0.08008737} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:37:58.04903+00 2026-01-25 01:27:51.09281+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1213 google ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB 1 t 1216 Soho Club unknown Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into the area/room where they could see the show (I'm not talking a bad view, I mean absolutely no possibility of seeing it at all). I paid for a ticket to see the event, not for a chance to see the event.\n\nIt would be better to charge a little more for tickets instead of selling too many. definitely overbooked their venue for the dramatica event, quite a few people couldn't even get into the area/room where they could see the show (i'm not talking a bad view, i mean absolutely no possibility of seeing it at all). i paid for a ticket to see the event, not for a chance to see the event. it would be better to charge a little more for tickets instead of selling too many. 1 2023-01-30 18:34:31.336452+00 en v5.1 A4.01 {} V- I3 CR-N {} {"A4.01": "Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into", "V1.02": "I paid for a ticket to see the event, not for a chance to see the event. It would be better to charg"} {0.03504553,-0.009858386,-0.00068964163,-0.035162475,-0.03305786,0.051330455,-0.055496536,0.051376387,0.029144587,0.08703037,-0.028057596,0.05834776,-0.0065028667,-0.03716347,6.6845714e-05,-0.093356214,0.0775563,-0.10734537,-0.051519465,0.04355174,0.022396266,-0.048670195,-0.018604971,0.07871819,0.035270672,-0.059616406,-0.04077828,0.03385445,0.03794611,0.0079298,0.013378889,0.018560262,-0.0055996217,0.007442565,0.07470469,-0.010661431,0.017491814,-0.089722,-0.025225114,0.019324876,0.07206361,0.07972698,0.0074256174,-0.01486794,0.031127332,-0.10338764,0.050931234,-0.05993339,0.015719684,0.058058977,0.03522743,-0.006335525,0.03788253,-0.09113539,-0.05585419,-0.028142007,-0.03076333,-0.02874076,0.03281563,-0.039109234,-0.019393694,-0.03664023,-0.027296294,0.01704492,-0.056761358,-0.008676243,-0.060195923,0.035846587,0.04458602,0.02601962,0.022087237,0.010462803,0.12832865,-0.05087859,0.031379197,-0.021186735,-0.042247854,-0.077884644,-0.051408205,-0.011504542,0.052817553,-0.13981453,-0.006064821,-0.03246696,0.050932787,0.008795552,0.045643795,-0.045334533,0.031445626,0.06448446,-0.0027910422,0.0378274,0.07585953,0.0034053137,-0.038984288,0.03848535,-0.039257262,0.059404932,0.076851755,0.028026504,-0.020208871,0.10487426,0.013059737,-0.0042450153,-0.04407457,-0.03437061,-0.026735151,-0.0038604042,-0.030450813,-0.031042177,-0.04186296,0.07420993,0.06724585,0.003966818,0.012459538,0.13998221,0.002142846,0.067224994,0.03687938,-0.07200849,0.073484786,0.025294363,0.04785737,0.065825224,-0.006156066,0.010920386,-0.021906236,-1.0842939e-33,-0.024979275,-0.05601316,-0.07705579,-0.10410328,0.062458515,0.023155482,-0.047093913,-0.03666342,0.012855582,0.016086467,0.053236865,-0.0015506961,0.018513547,-0.08617713,0.012104933,0.06405694,-0.008801097,0.025008952,-0.05096629,-0.00853115,-0.028018417,-0.0008395569,-0.044419147,-0.0050185723,-0.09713317,0.14694227,0.06050431,0.06755775,0.05673031,-0.011566684,-0.059877183,-0.004206992,0.050595187,-0.022269003,0.09566695,0.01899208,0.022662682,-0.05910445,0.03825206,0.067349195,-0.07831674,-0.00013500894,-0.07289832,-0.040238403,-0.055263743,0.09551846,0.0012516734,-0.05429889,0.022215676,0.048515033,-0.012128701,0.0054302453,-0.011296842,0.026510293,-0.012455872,-0.017762234,-0.039313182,-0.07615992,0.046160467,-0.032747056,0.014451244,0.014401922,0.100835755,0.010790117,-0.11527383,-0.0058149123,0.016061278,-0.016589701,0.008445429,-0.0026969041,-0.0405556,0.027041093,0.023299249,-0.03234535,0.014075335,-0.028221864,-0.019425344,0.055119716,0.09478749,0.06195351,0.04907199,-0.06422909,0.0818073,0.062943324,0.020600189,-0.015525498,0.006641679,0.035510834,-0.04721153,-0.035963397,0.00722801,-0.017230889,-0.0020739886,-0.021631388,-0.018976036,-1.633898e-34,0.023538843,0.029330514,-0.041600056,-0.041374516,-0.029908963,-0.01335781,-0.047801524,-0.07108498,0.037486177,0.033971854,-0.044982176,0.019348135,-0.01339014,-0.06560276,0.008744723,-0.102816194,0.10896334,0.01876204,0.049703255,-0.019568551,0.018906523,-0.011894556,-0.02473828,-0.02907796,0.034042757,0.032672487,0.010559741,-0.023230573,-0.06643372,-0.06518227,0.03589142,0.020601556,-0.024241403,0.0019829231,0.007437429,0.107353605,0.043320537,0.009344185,-0.009260864,-0.051975176,-0.0026900237,-0.022265494,-0.031278007,0.07994294,-0.0015010326,0.02870208,-0.030923072,-0.024988556,0.0764909,0.011154703,-0.118449755,0.0004662008,0.008196967,0.0052615106,-0.021525575,0.021628005,0.010440735,0.0036663143,0.036492612,-0.007496288,-0.0067290533,0.004929314,-0.032306757,-0.044267625,0.027904699,0.04303727,0.025155617,-0.062916495,0.007114405,0.036287136,-0.02985183,-0.05269892,-0.042803645,0.06274938,0.046975885,0.14076631,-0.06767265,0.112154864,0.041984588,-0.030245386,-0.008988567,0.0300346,-0.059286118,-0.052878752,0.10630466,0.09256501,-0.0034189266,-0.010234401,-0.08424104,0.076733194,0.04769918,-0.055706404,0.07554424,-0.00078756304,0.040586054,-3.9850114e-08,-0.04838998,0.012180344,-0.030297121,-0.11921884,0.0055050934,-0.05293526,-0.0006737258,0.07975963,-0.032145176,0.062529534,0.0046426635,-0.05640461,-0.052593168,0.039314013,-0.06662501,0.011336033,-0.026194785,-0.048759792,-0.09415646,0.031724166,-0.0004823345,-0.008285357,-0.037201535,-0.056250308,0.028108777,0.010047764,-0.06851277,0.07233455,-0.0039410116,-0.10377435,0.007564308,-0.029026713,-0.05034868,0.007840883,0.027517242,-0.06049662,-0.014332516,0.0073611303,0.027310917,0.062293436,-0.02426405,-0.090306915,0.090295784,0.07063872,0.10112611,0.083390854,-0.016636616,-0.013338798,-0.02596488,-0.043620765,-0.0033808253,-0.08861536,-0.070201874,-0.0038351538,-0.0293664,-0.012508595,0.056065228,0.1258338,-0.017502394,0.015393646,-0.021188067,-0.12085784,-0.1753515,0.050023} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:44:01.225668+00 2026-01-29 18:36:00.500024+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1214 google ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB 1 t 1217 Soho Club unknown Great gay club in the city, lots of young people, music is also mostly really nice! Only one minus that bartenders could at least try to be friendly. For the rest, it's a cool party! great gay club in the city, lots of young people, music is also mostly really nice! only one minus that bartenders could at least try to be friendly. for the rest, it's a cool party! 4 2026-01-29 18:34:31.336452+00 en v5.1 E4.01 {O1.04} V+ I2 CR-N {} {"E4.01": "Great gay club in the city, lots of young people, music is also mostly really nice!", "P1.02": "Only one minus that bartenders could at least try to be friendly."} {0.045510337,-0.027175339,-0.005264917,0.013466762,-0.08587921,0.034034926,0.026916131,-0.09867128,-0.041815884,0.011124691,0.018156169,-0.00044826255,-0.01782732,-0.016598452,0.011859937,-0.02156044,0.07453524,-0.11984708,0.044055406,-4.9952705e-05,-0.10586157,-0.08638517,-0.009274793,0.043642983,-0.12152374,0.029525854,0.007921045,0.064758025,-0.012562425,0.05460679,-0.007684106,0.12641363,0.034126725,-0.03066002,-0.1030368,0.009316376,0.067253545,-0.11918486,0.03383072,0.084952846,-0.0019676988,0.06487081,0.012165096,0.01343744,-0.0048415423,-0.0134091545,0.01895228,-0.024548493,0.021262348,0.023831887,0.09648059,0.025220754,0.058813002,-0.053639207,0.014808495,0.011211889,-0.08881825,-0.07797693,-0.010396202,0.017043795,0.0678663,0.05296343,-0.10313951,-0.018655965,0.025705198,-0.034663282,-0.051444087,0.09760505,0.08880119,-0.056983676,-0.020116005,-0.0076573854,0.020908833,-0.015132313,-0.02519145,-0.076503694,-0.023546472,0.020272719,0.031296898,0.026073726,0.02920135,-0.05960816,0.016377833,-0.023255588,-0.045229208,-0.0651251,0.00927645,-0.02583737,-0.037641115,0.06755659,-0.07757512,0.121782005,-0.08344063,-0.101690784,0.017230058,0.016761437,-0.038889606,0.029749366,-0.061647505,0.04558085,-0.025520694,0.14794986,0.055010185,-0.035011988,-0.025044402,0.011999929,-0.017254343,0.07198199,0.020770553,-0.0010569609,0.02699622,0.013721939,0.03680874,-0.014789578,0.015389841,0.032995187,0.073083036,-0.0053477464,-0.025821716,0.0060184295,0.016767865,0.08391556,0.02109949,0.10548937,-0.01987809,0.041828778,-0.030992277,-1.8489185e-33,-0.018799368,-0.046604283,-0.027687525,0.05298406,0.112090096,0.018850813,-0.01456342,-0.08622513,-0.07137731,0.008716446,0.01608824,-0.050226875,0.016586056,-0.032896742,0.03769954,-0.032239605,0.011231624,-0.033683825,-0.021748435,-0.09406077,0.009052193,0.045983315,-0.0019095754,-0.017043594,-0.056009173,0.041736405,0.06856274,0.023184745,0.11866028,-0.0014756215,-0.022709578,0.05391175,-0.05124061,0.03487264,0.0208026,0.051165592,-0.02056284,-0.06183926,-0.058908552,0.019780455,0.008111701,0.003779299,-0.028472463,0.013667876,-0.050443154,0.092569016,-0.01500737,-0.05333008,0.07284796,0.0035790238,-0.06565702,0.030489154,-0.06352687,0.10518801,-0.04347194,-0.0061468636,-0.0258529,0.060418442,0.04128537,-0.04720761,0.026922144,0.067581184,-0.010026274,-0.041766327,-0.024650833,0.018826026,0.0073149176,-0.04547489,0.14919111,0.009705835,0.006612009,0.02060926,0.04105827,-0.039598107,0.029085726,0.07093984,-0.07889799,-0.03879324,0.0466066,0.08912963,0.007124775,-0.059445642,-0.01603551,-0.0109405145,0.010442802,-0.036795586,0.09723989,-0.119032115,-0.10746684,-0.029701661,-0.07321556,-0.029719226,0.047561683,-0.0058914246,0.06504706,-1.2931947e-33,0.0866178,-0.10313796,0.06474151,-0.0378329,-0.025217365,-0.012390289,-0.04495232,-0.06369437,0.014976968,0.038350508,-0.052491874,0.023537751,0.04581803,-0.018449686,0.05197001,0.0017483396,0.023915019,0.04565835,-0.011482819,0.008256305,-0.01994411,0.051915485,0.015919186,0.045669954,0.023572294,0.003254498,-0.03002437,-0.06490589,-0.013595597,-0.020803949,-0.04940933,0.048449147,0.0014860664,-0.0822075,0.018177036,0.05962946,0.009284618,0.034508888,-0.0053292047,-0.04454977,0.030333629,-0.0034630818,0.013994906,0.05983935,0.059276123,0.066550806,-0.080183886,0.009454947,-0.06095138,-0.02549383,-0.05958372,-0.055433176,-0.06535835,-0.03008971,0.03541217,-0.05403223,-0.003398566,0.013441,-0.12327765,-0.0036325848,-0.07850721,-0.0013435958,0.006042381,0.08031183,0.08494798,-0.060187723,-0.04195195,-0.021016676,-0.025086395,0.03106381,-0.037472486,0.012775163,-0.05325696,0.09452249,-0.01766249,-0.08938172,0.13127078,-0.0409958,0.00974823,0.05694316,0.015259236,0.042288568,-0.027310008,0.008651859,0.029768808,-0.056996044,0.0903728,0.052659493,-0.009702718,0.06304726,0.01672124,0.04374721,-0.048191607,-0.112144016,0.03053368,-2.8200427e-08,-0.018141102,-0.01619132,-0.08638795,0.050655585,-0.01696621,-0.026447278,-0.052243702,-0.0034014108,-0.015098272,0.036333684,0.04154591,-0.0028162224,-0.049044643,0.005161608,-0.051797003,-0.04188952,0.027180078,0.04914675,-0.008483649,-0.0021742042,-0.044066403,0.019097462,0.00019722962,0.033501282,-0.043043975,-0.04309257,0.032966778,-0.052302215,0.029305162,-0.04124572,-0.056337193,0.027829738,-0.02482834,0.043012112,-0.014946908,-0.039981063,-0.024992956,-0.06957013,0.009429369,0.0061009736,-0.036153786,-0.12968305,-0.01658734,-0.015718736,-0.028163262,0.04886597,0.06506989,0.061652932,-0.036794133,0.03500124,-0.03212838,0.08866249,0.0026417803,-0.06799329,0.030767456,-0.024437035,-0.075324826,0.07411103,0.054357894,9.193839e-05,0.047493882,0.065203175,-0.08082352,-0.039006896} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:44:10.293089+00 2026-01-29 18:36:00.502659+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 208 google Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB 1 t 211 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the day before my booking started. They were very helpful and arranged that I could take the car 1 day earlier. ¡Muchas gracias! excellent team in gran canaria. i made a mistake when i booked the car and tried to pick it up the day before my booking started. they were very helpful and arranged that i could take the car 1 day earlier. ¡muchas gracias! 5 2026-01-04 01:27:48.340426+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the d"} {-0.02886553,0.05162487,0.024382515,-0.0145463925,-0.010506907,-0.009457966,0.012990073,0.0051417346,0.0019459284,-0.017428765,0.040208668,0.014250992,0.0012274046,0.044756353,-0.03065066,-0.046825744,-0.0020874129,-0.0873661,0.02209501,-0.0042135045,-0.007479451,-0.087145604,-0.0337811,0.08793953,-0.020462034,-0.004844236,-0.021802362,0.092795946,-0.0050337557,-0.11265836,-0.09963356,0.056252282,0.05140436,0.024153503,-0.0571708,0.04922718,0.03477836,-0.0773929,-0.011018354,-0.0012926054,-0.02564181,-0.051493756,0.024946144,-0.0222517,0.010108186,-0.035152115,0.060044985,0.013388328,0.07761499,0.002088512,0.008228178,-0.0022343479,0.082527645,-0.07809134,-0.04916598,0.116895184,0.0017782331,-0.027324574,0.0075252308,0.02807213,0.04357032,0.009571064,-0.08179767,0.020714685,-0.050840784,-0.07975952,-0.06595098,0.024983209,-0.042878963,-0.036133245,0.12741226,-0.02974049,0.015495924,-0.0030566126,-0.025269516,0.08265223,0.019365238,-0.0195082,0.06956283,-0.037750952,0.006969512,-0.07034281,0.040843844,0.032328155,0.040846635,-0.042149123,0.0029385209,0.07224612,0.053619206,-0.0672278,0.024924114,0.06425595,0.004883401,0.021684576,-0.026200771,0.0967959,0.03967462,0.011779676,-0.019416481,0.08753002,0.08233302,0.09257733,-0.015911568,-0.02548532,-0.05849066,0.0033067786,0.04837213,0.05622556,0.023914764,0.00070075324,-0.033207677,0.035732295,0.04415558,0.03142531,-0.13719298,0.028622517,-0.030894311,0.10241855,-0.11793634,-0.09962765,0.049616896,0.027070912,-0.050980605,0.045777746,0.03971323,0.04430434,0.07952346,-7.2885085e-34,-0.016085742,-0.014002796,-0.02216669,0.051731564,0.024241569,0.004283161,-0.036730032,-0.0061224713,-0.14383906,-0.017333167,-0.048050027,-0.025203235,-0.06503922,-0.08384205,0.010248362,0.080238484,-0.07579108,-0.06645487,0.020139024,-0.028808098,-0.02623275,0.030581545,-0.016028976,-0.012478498,-0.029895822,0.07340849,-0.060443725,-0.085154824,0.035235483,0.04357279,0.0063982117,0.0061935773,-0.0797699,0.052927315,-0.0019597188,0.0033518155,-0.04649579,-0.05255376,-0.08557022,-0.0043244692,0.0027168922,-0.013731332,-0.11257326,0.025185056,-0.033787105,0.026384583,0.015431507,0.01008366,0.051841598,0.044645112,-0.11100017,-0.022607269,-0.082598306,-0.027684651,-0.015924057,0.064766936,0.018703299,0.07878172,0.006804588,-0.020626804,0.05698472,0.033498883,0.007769671,-0.03743393,-0.009789513,-0.048164822,0.008346314,0.060139846,0.13288023,-0.032793004,0.033850685,-0.008928039,0.017752234,0.037902404,0.008707532,-0.025171995,-0.0047861175,-0.010764308,0.039433327,0.011981609,0.03027548,-0.007075663,0.00085121003,0.011598985,0.043320507,0.12019313,0.036255743,-0.016428383,-0.06915699,0.052493572,-0.049424533,0.08658792,0.06056064,-0.0013062772,-0.014283765,4.038731e-34,0.107447535,-0.078687884,0.045340404,-0.021419976,0.03479509,0.023529341,-0.047771513,0.039598957,-0.026609523,0.067234494,-0.061857488,0.0029046044,0.053362355,-0.056003734,-0.042573225,0.0064393147,0.08524449,-0.036982104,-0.085398674,-0.032781262,-0.017480828,0.00847655,-0.055852197,0.058324445,-0.030499946,0.030796768,0.022201648,0.00935792,-0.068462595,-0.0043309177,0.03035592,-0.11123407,-0.04006068,-0.009093155,0.070350096,-0.004327661,0.01663655,0.04931666,-0.062227845,0.051092643,-0.058442887,-0.009421696,-0.013504576,0.057055645,0.032155424,0.0061116302,0.061262645,-0.07425151,-0.025484977,0.034502964,0.026546303,-0.031467926,-0.060345106,0.022518486,0.04200484,-0.0033511906,0.12069638,-0.073482305,0.005392149,-0.05032264,-0.07121401,-0.004379845,-0.0856892,0.023180494,0.047089472,-0.025544204,-0.061525647,0.0029933315,0.023764128,-0.003155334,-0.058801733,-0.05101166,-0.031175585,0.032517616,-0.046323903,-0.0010881856,-0.004778678,-0.04282758,0.05714089,-0.06702652,0.0011584129,-0.018386167,-0.0027932636,0.038607366,0.015890172,0.07555146,0.07241977,0.042869855,0.050715327,0.09061889,0.07271745,0.09207511,0.05034606,-0.029911026,0.00031210325,-3.3071572e-08,0.030434366,0.021754304,-0.027422091,-0.008945123,-0.02173674,-0.10894555,-0.052616794,0.01113734,-0.018206928,0.073395416,0.057357363,0.017494602,-0.06688876,0.0038642613,-0.022286471,0.036199138,0.09106842,0.15909868,-0.025175318,-0.05785068,-0.016470183,0.04809893,-0.042967144,0.005157781,0.025827363,-0.06227496,-0.08310627,0.030007808,0.058277648,-0.05594204,-0.062245168,0.062357415,-0.011561038,-0.028712273,-0.0012979333,-0.014320164,-0.025263648,-0.07186244,0.057048824,-0.07470422,0.064804986,-0.03744338,-0.06812902,-0.02520695,0.016622476,0.016266556,0.011965201,-0.073430374,-0.042188924,-0.026517117,-0.03267892,-0.04955094,0.04165209,0.17055649,0.030854015,0.005910121,-0.037084788,-0.042484276,0.032258317,0.0077827275,0.011136774,0.041177236,-0.09939185,-0.0050249747} 1 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:56.790285+00 2026-01-25 01:27:50.043207+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 363 google Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB 1 t 366 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Валентине. очень хорошие люди. очень хороший опыт. рассказали, помогли, сделали скидку. особая благодарность валентине. 5 2025-12-28 01:27:48.341377+00 ru v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Ва"} {0.0015571372,0.09373596,0.022871936,0.029672494,-0.032929897,-0.032260444,0.060829304,0.002477945,-0.05354697,-0.041971978,0.0262432,0.06143208,0.010098365,0.036391072,-0.015550142,-0.019484423,0.0037323793,0.06343499,-0.068592295,-0.0070591797,0.068873,0.04692519,0.113713056,0.046385787,-0.020793865,-0.042824652,-0.028929837,0.005770139,0.064472444,0.09276645,-0.0066494336,-0.065178916,-0.015430778,-0.017980322,-0.010222196,-0.022176294,0.01547813,-0.011006596,0.04194246,0.07950264,-0.015390996,-0.09811316,-0.08882085,0.038061354,-0.06081301,0.08353395,-0.050742753,-0.0060924646,0.0059807724,-0.03773692,-0.10660783,-0.0021552772,-0.041241582,-0.019275783,-0.030465988,-0.079536065,-0.02601837,0.011602129,-0.031098261,0.04073344,-0.015655342,-0.019420069,0.04422961,0.033322934,-0.053761438,-0.015705198,-0.000120934834,0.016160412,-0.09702471,0.104856074,0.028266396,-0.042178057,-0.07051782,0.008658207,-0.094155684,-0.1296496,-0.0085705705,-0.022158278,-0.005761433,0.07358399,0.035812628,0.028396813,-0.0869682,0.025079513,-0.06268223,-0.024349254,0.034166113,0.027998446,-0.040880747,0.054619133,-0.045738168,0.04197237,-0.006736116,0.017472934,-0.07312074,-0.028646735,0.018768543,0.0153594725,0.0070035956,-0.013138446,-0.06927124,-0.07885296,0.07652601,0.026533317,-0.07170101,-0.030097594,-0.052141923,-0.06023808,0.005429129,-0.016560221,-0.023015527,-0.091064416,-0.00692716,-0.062098477,-0.036743294,0.061645996,-0.06251176,-0.067221,-0.03321721,-0.053039163,0.09572531,-0.062757224,0.034726597,0.07910249,-0.07020453,-0.081072934,-0.0056249546,1.3530038e-32,0.03891604,-0.027578404,0.023938898,6.2644863e-06,-0.11182986,-0.031470675,-0.03528027,-0.01798868,-0.056897163,0.111128196,0.03474433,0.034843378,-0.032974385,-0.05000228,0.0515715,0.03633919,0.048895497,0.030522056,0.06119427,0.09493893,0.00082964054,0.07557556,-0.034215927,0.035635803,0.015764486,-0.032101043,-0.008042603,-0.1250448,0.08095883,-0.0016047095,0.10610249,-0.04345772,-0.045893107,-0.007850949,-0.09773497,-0.079061225,-0.02133442,0.03893903,-0.023611125,0.007334645,0.018339667,-0.05721158,0.013731232,0.02675379,0.10441595,0.08456674,0.011538947,0.043276474,-0.020696757,0.017018968,-0.010306435,-0.050119597,-0.023638284,0.1428192,0.03994621,0.0066089304,-0.056604974,0.037550766,-0.0035872404,-0.03246508,-0.039373975,-0.101612836,0.008734896,0.014095888,0.007606902,-0.05832091,-0.017065711,-0.017937876,0.00087816827,0.0101789655,-0.02739443,0.0020914832,-0.09013219,0.05466706,-0.057709068,-0.024668142,-0.018643564,0.018692452,-0.02722499,0.05289591,0.0022077106,0.0134900855,0.010867031,0.04351867,0.09367995,0.054745108,-0.02440022,-0.06496803,-0.041882794,0.052671883,-0.19762395,-0.088311166,0.0097723,0.014639771,-0.03536146,-1.3398758e-32,0.07065598,-0.03421242,-0.07851698,0.16223268,-0.001062461,0.06445529,-0.05538361,-0.0039173206,0.016985152,0.055810254,-0.044353742,-0.11380842,0.030927727,0.011281116,0.04603232,-0.018049665,0.011915968,-0.007761084,-0.08902044,0.015280344,-0.058255177,-0.059442386,0.003004369,0.0082342075,0.0212363,0.025059137,0.077042,-0.03297782,-0.13010453,0.055821065,-0.04140465,0.00035301546,-0.04653316,0.089956,-0.005605588,0.045846965,0.10413604,-0.003780447,-0.08804512,0.030252034,-0.049656484,0.017003827,0.12400814,0.033572275,0.02347277,-0.056369226,-0.11439779,-0.022990823,0.08007304,-0.0010024217,0.05362447,0.084404685,-0.06038809,-0.03587738,0.07389557,-0.017700521,0.016045745,0.014446688,-0.026379492,-0.059086975,0.05834093,-0.01955521,-0.0013959785,0.00013041221,-0.0749806,0.020739397,-0.025997762,0.014910256,-0.01830861,0.024402874,-0.043928873,-0.06454495,0.03656394,0.019513495,0.034873012,0.024030974,-0.0232579,0.06039429,0.051918145,0.084703624,0.035780396,-0.03624583,0.020143153,-0.053008534,-0.023464445,-0.026970834,0.006500932,0.0016145335,0.03283204,-0.009259616,-0.013028854,0.06869574,0.026093267,-0.023441235,0.0047115968,-4.9057046e-08,0.05487755,-0.083890855,0.0540726,0.012610945,-0.018549025,-0.0043450585,0.09298996,0.020474378,-0.06978398,0.008484716,-0.028284097,-0.001672374,-0.0013950509,0.027420452,-0.029617673,-0.023305126,0.002617483,0.006356168,0.035108864,0.020349594,0.038928088,-0.056356106,-0.0251258,0.013720254,-0.048800483,-0.05039728,-0.0017971608,-0.08034789,0.054941405,-0.027609017,0.014278584,0.0050634495,-0.020709356,-0.012903025,0.08282106,0.011140985,-0.017630946,0.01684012,-0.012904725,-0.0045186477,0.010127335,0.010381118,0.08306508,-0.0032316216,0.024106164,0.016147127,0.045486744,-0.040025923,0.045573268,0.021727536,-0.017857565,0.07825713,0.0039495328,-0.0016838334,-0.02804753,0.0971883,0.10280855,0.01674281,-0.06360398,0.0017987574,-0.020615038,0.042750094,-0.017812317,0.009996669} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:12.497587+00 2026-01-25 01:27:51.107667+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 465 google Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB 1 t 468 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Checkpoint schwer zu finden, Shuttle kam nach 20 Minuten nicht, sind gelaufen, Mitarbeiter dort brauchen 30 Minuten pro Buchung, keine Empfehlung checkpoint schwer zu finden, shuttle kam nach 20 minuten nicht, sind gelaufen, mitarbeiter dort brauchen 30 minuten pro buchung, keine empfehlung 1 2025-10-27 01:27:48.342072+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Checkpoint schwer zu finden, Shuttle kam nach 20 Minuten nicht, sind gelaufen", "J2.03": "Mitarbeiter dort brauchen 30 Minuten pro Buchung, keine Empfehlung"} {-0.06335925,0.0686133,-0.015430387,-0.009378914,0.024250956,0.0668235,0.049894832,0.102382764,-0.010433792,-0.0052601253,0.052490268,-0.049508218,0.050848488,-0.024069276,-0.047541074,-0.020722937,-0.013029175,0.052449293,-0.034662634,-0.06532656,-0.05087488,-0.029412916,0.058835533,0.076981485,-0.050469358,0.019810677,-0.0023503883,-0.036318474,0.003371253,-0.042483672,0.055691447,0.0943043,-0.017483825,0.0020270208,0.09345262,0.06252619,0.016813785,-0.0050313594,-0.017233463,0.010541155,-0.05030888,-0.02320357,-0.07847327,-0.06731021,0.026590979,-0.014909144,0.022809563,-0.046077657,0.031137155,0.053618073,-0.01991591,-0.03338348,0.011384253,-7.315927e-05,-0.005954472,-0.031090299,-0.014283869,0.02337312,-0.0077953385,0.020281138,-0.01218479,-0.015455045,-0.09169218,-0.016517546,-0.008852628,-0.0421421,-0.06821055,-0.039949313,0.026823007,-0.030479489,0.08511646,-0.04152972,-0.069920436,-0.028862165,-0.06925043,-0.050379954,0.031516545,0.081905656,0.012327273,-0.11626591,0.023224723,-0.025842946,-0.003173894,0.067101195,-0.07454038,0.049588922,0.008243129,0.0943181,0.047689907,-0.012685319,0.014666066,0.018760335,-0.083100416,-0.037914265,-0.11272639,-0.06950037,-0.0010121671,0.04582283,-0.020766078,0.023239356,0.0016676218,0.009262165,0.0103971865,-0.035772588,-0.060029753,-0.000888878,0.06529417,-0.018819466,0.015231048,0.056798313,0.039368235,-0.034502733,0.014530394,-0.023711717,0.099023744,0.089702144,-0.10759211,-0.053015396,-0.015560141,0.00942495,0.028391255,-0.052755196,0.12092423,-0.05157,0.013167341,0.007824526,0.13297588,1.0965745e-32,-0.007352112,-0.04679582,-0.03506747,0.042777725,-0.006735076,-0.03651525,-0.060654886,-0.031365868,0.06089073,-0.024242893,-0.057152983,-0.0042817728,-0.039976604,-0.047155343,0.03114458,-0.05631924,0.013785983,-0.021125894,-0.039580647,-0.0209632,0.02920868,-0.09702619,-0.061983753,0.016516503,0.06513609,0.004405326,0.03983657,-0.04648397,0.0052122483,0.05415235,-0.012333267,0.022927672,-0.057419688,-0.014503747,-0.043129288,0.010668909,0.04087669,0.036321953,-0.0029726266,-0.0840698,0.022284692,-0.05821402,-0.04860013,-0.0025652864,0.08813173,-0.031906307,0.03480925,-0.009522215,0.076048195,0.03244033,-0.07997446,0.047192015,0.0689577,-0.05870667,-0.013942182,0.06294968,0.022346495,0.05101689,-0.056340862,0.07750299,0.04775387,0.005255408,-0.020647474,0.00021964709,0.085135005,-0.054354183,-0.046142098,0.018879186,0.096911825,0.01927129,-0.06332857,-0.016703106,0.11735027,0.057656452,-0.009390268,-0.043129377,-0.0030359097,0.09569515,-0.13312857,0.017394977,-0.07504,-0.090491705,-0.0946635,-0.02387247,0.123289704,-0.0113105,0.106598474,-0.049572736,-0.013692025,0.029904218,-0.072855294,-0.0015127427,0.03947601,0.062180873,-0.04937004,-1.03841525e-32,0.05542917,0.013815365,-0.05466572,0.010738326,0.068832494,0.06525776,0.021410793,0.05094903,-0.09812733,0.03645118,-0.113939725,-0.05030444,0.078642026,-0.014104195,-0.043173958,0.009479903,0.08911628,-0.024978446,-0.033611257,0.03616563,-0.009238488,0.0038767287,-0.06007569,0.02733844,-0.04271452,0.059502862,0.11611145,0.052355368,-0.03743198,0.041321147,0.025928617,-0.037357975,0.015887583,0.071630746,-0.043632336,-0.031970035,0.08105399,0.0758559,-0.038317148,0.010573646,-0.022594286,-0.034769338,-0.059424713,-0.04326918,-0.016167728,0.006473877,-0.07363556,-0.03679254,-0.11526641,-0.05369589,0.121137254,-0.0029293539,-0.013079048,-0.036995504,0.067968175,-0.022576142,-0.05309179,-0.098531514,-0.007363869,-0.0018842594,0.0999521,0.07565422,0.061764445,0.033804655,0.045582358,-0.079460755,-0.02439822,0.053814508,-0.031534772,0.02566273,-0.0057326527,0.014299261,0.11837897,0.049981155,-0.00884418,-0.07534229,0.025265135,0.030018926,-0.0049373945,-0.046250053,-0.02586132,-0.029055696,-0.054422542,-0.012908122,-0.058433916,0.060189195,0.03473314,-0.032603294,0.020993741,-0.044531945,-0.03914078,0.041326955,-0.0003778169,0.045031484,0.010516923,-4.0327215e-08,0.006051041,-0.0026282973,-0.032107793,0.025389388,0.049954567,-0.11656016,-0.04568661,0.030403445,-0.061619632,-0.0386862,0.02143377,0.020181717,-0.06328289,0.09312071,-0.039442513,-0.019585783,0.021972941,0.06274576,-0.033310715,-0.041111417,0.060878728,-0.023258017,-0.0070726248,-0.021083636,-0.039254308,0.09192594,-0.03229187,-0.013219204,0.045348637,-0.063680366,-0.0060619004,0.038911484,0.016094403,0.026165467,-0.00516788,0.08875856,-0.006528627,0.04816183,-0.04109295,0.071041875,0.012534989,-0.005579138,0.034707304,-0.02554198,-0.03296207,-0.06574179,-0.06400404,-0.008356178,0.0032267834,-0.014014578,-0.0756607,-0.035046954,0.048798867,0.044049975,0.039545264,0.10930857,-0.012004481,-0.09162627,-0.0065003466,0.07746402,0.010403614,0.013820604,-0.052727133,0.0045214244} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:28.051398+00 2026-01-25 01:27:51.48367+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 513 google ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB 1 t 516 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Výborná služba. Dobrá cena, dostali jsme za zaslání cévní Seat Ibiza ve výborné výbavě. Shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut. Je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení.\nDíky za tuhle službu. 👌 výborná služba. dobrá cena, dostali jsme za zaslání cévní seat ibiza ve výborné výbavě. shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut. je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení. díky za tuhle službu. 👌 5 2025-03-31 01:27:48.342351+00 cs v5.1 O1.01 {} V+ I3 CR-N {} {"J1.02": "Shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut.", "J1.03": "Je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení.", "O1.01": "Výborná služba. Dobrá cena, dostali jsme za zaslání cévní Seat Ibiza ve výborné výbavě."} {-0.0024845654,0.11332064,-0.027687037,0.0026430516,-0.12079002,0.0011220797,0.09770787,0.06750271,-0.006276637,-0.010478808,0.009802391,-0.029748596,0.07692996,0.015421933,-0.03944114,-0.06674824,0.02428848,0.080564246,-0.059333064,0.08210616,0.011106032,0.015753413,0.043295156,-0.033474423,-0.017199118,-0.0041138656,0.020250008,0.09102104,0.0046448363,-0.076590024,0.05199575,0.045211338,-0.011218826,-0.022315241,0.08752946,-0.011739988,-0.063535355,-0.06681128,0.045531236,0.005634796,-0.001993621,-0.0062306724,-0.10648777,0.023591634,0.009617127,-0.00023028444,-0.03924388,-0.02349818,-0.0026244742,-0.06741287,-0.09746689,-0.01881078,0.022971498,0.016775478,-0.048161242,-0.052338958,-0.05439206,0.02882367,0.05889898,-0.03400908,0.05019352,0.03584841,-0.025314579,0.0184199,-0.00611301,-0.058455393,-0.05298704,-0.014172734,-0.09461995,0.017837787,-0.00050870114,0.012341019,0.013329546,0.038688283,-0.1648078,-0.010655704,0.04083858,-0.0043282174,0.048444252,0.007510303,0.011357476,-0.01949651,-0.020001663,0.029065704,0.00031655675,0.04844716,-0.023868648,0.016572466,0.051409382,-0.008261164,0.07620713,0.08237174,0.032193556,-0.006249175,-0.055938147,-0.06216057,-0.023329372,-0.05858546,0.03128531,0.062405467,0.033483543,-0.002246094,0.08090851,0.049780644,-0.08891756,0.038121358,0.05456541,-0.09508522,-0.07842762,0.057092443,-0.117433384,-0.054061595,-0.032475173,-0.07907869,-0.02471423,0.088704474,-0.0134773115,0.03310159,-0.035451695,-0.0779834,0.009450073,0.001096756,-0.018331284,0.0104879495,0.018442245,-0.01219902,0.025056966,2.0949932e-32,-0.06704016,-0.028900499,-0.037791047,0.008079538,0.0030379263,-0.0044252067,-0.097754985,-0.0003605482,-0.08141616,-0.0039768755,-0.05147334,-0.059699975,0.05829266,-0.038640134,-0.0142953135,0.03536423,0.06139436,-0.062131617,-0.044060383,0.04071692,0.048699107,-0.014371634,0.020189147,0.009881491,-0.04839213,-0.02845938,0.016128356,-0.09079938,-0.01699012,0.026191229,0.040442385,-0.078532316,-0.05683551,-0.04930035,-0.023423731,-0.021633936,0.013803137,-0.043129347,-0.06645529,-0.05189657,-0.0034685968,-0.06159033,-0.0315016,0.06778519,0.012967995,0.0832,-0.016773874,0.0010000579,0.11951247,-0.024499396,-0.088872194,-0.022365866,-0.11096357,-0.018909797,-0.05232817,0.0289063,-0.038916502,0.040227458,0.036734078,0.002148426,-0.012712864,0.027762894,0.031386998,-0.050577957,0.03108975,-0.08856357,-0.06101077,-0.055894904,0.09561466,-0.017514225,-0.05993956,-0.019943153,0.03778152,0.050324,-0.039323226,0.002054647,0.03661773,-0.043047573,0.033140756,-0.021439975,-0.044466082,0.01613385,-0.06493452,-0.028128406,0.16220307,-0.025821097,-0.07122972,-0.026505701,0.014065865,0.041358136,-0.00897623,0.02484295,0.05694765,-0.033390503,0.02176265,-1.8478836e-32,0.032219812,0.068710916,-0.06699658,0.09500624,0.07315481,0.031242888,-0.012904158,-0.018224902,-0.023569638,0.03847149,-0.02680494,-0.04556288,0.07726513,-0.020483047,-0.0028585594,0.07877715,0.071885005,0.009745623,-0.0026556253,-0.07755698,-0.050101083,0.0027448114,-0.057454787,-0.025943708,-0.03236707,0.049489282,0.11832615,0.0019954734,-0.08135733,0.060539156,-0.04254403,-0.048606135,-0.045535885,0.053224254,0.017841484,0.01537869,0.06313795,-0.04750761,-0.061854903,-0.013915807,-0.05047938,0.026771905,0.013681814,0.010240798,0.009513862,-0.007436116,0.011581178,0.032147355,0.050229397,-0.09283614,0.07696577,0.032797102,-0.033865653,-0.010397174,0.074774094,0.07214205,0.029018765,-0.08689829,-0.0069955997,0.023367286,0.08340857,0.04690607,0.064143464,-0.030621396,0.05105089,-0.029156331,0.00037429883,0.07452608,0.031353164,-0.05557045,0.0752327,-0.06391477,-0.022051202,-0.018130708,-0.05472349,0.045264862,0.00046866966,0.038039815,-0.025750127,-0.040861465,0.034859154,0.016746445,-0.03664347,-0.007556887,0.04459651,0.041025195,-0.025338842,0.0017092929,0.06025691,-0.01243321,-0.012554236,0.038994,0.0644101,0.05828308,-0.029248543,-5.9204602e-08,-0.04449322,-0.04339833,-0.07710918,0.0070508984,0.0682072,-0.043970954,-0.029825505,-0.042927537,0.005135303,0.049289025,0.034698717,-0.01810937,-0.03362095,0.07477049,0.04639697,0.19533396,0.02136748,0.072498545,-0.031588987,-0.041684948,0.11810402,-0.029535126,-0.04900699,0.06264169,-0.043530513,0.018022636,-0.021080224,0.038729522,0.05754247,-0.114839904,-0.029689597,0.07640955,-0.010629192,-0.07156002,-0.010371603,0.0815506,-0.03736263,-0.012382976,-0.0035301847,0.032412976,0.008801986,-0.010179417,0.10672245,0.016351316,-0.05407655,0.06443911,0.037909217,-0.03532027,-0.01755674,-0.04008682,-0.114325054,0.034920983,-0.00057893584,0.0907501,-0.03265235,0.10075733,-0.007796818,-0.0058841114,-0.011007373,-0.001983424,0.014638068,0.038264472,-0.06716468,-0.0559003} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:47:05.387022+00 2026-01-25 01:27:51.695681+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 573 google ChdDSUhNMG9nS0VJQ0FnTUN3d3I2cjR3RRAB 1 t 576 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super location de voiture les personnes sont top !! Super gentil l'accueil est rapide et précis vraiment parfait merci 👍 super location de voiture les personnes sont top !! super gentil l'accueil est rapide et précis vraiment parfait merci 👍 5 2025-03-31 01:27:48.342627+00 fr v5.1 A1.01 {J1.01} V+ I3 CR-N {} {"A1.01": "Super location de voiture les personnes sont top !! Super gentil l'accueil est rapide et précis vrai"} {-0.044021867,-0.018529281,-0.0057493662,-0.058663964,0.014522729,0.054056846,0.0011840744,0.08319399,0.00440016,-0.0047490047,0.05294044,-0.056546524,0.05257714,-0.10271936,-0.07665048,-0.06749047,-0.016666342,0.0869,0.06276814,-0.0019315906,-0.0051245354,-0.06598653,0.027242476,0.03899903,-0.026622886,-0.00948262,-0.08965588,0.023971405,0.06635596,-0.027513918,0.076134674,0.053764287,0.013749275,0.0021384365,-0.015038083,0.04017554,-0.026051022,-0.07656224,0.04566245,-0.032189656,-0.071830116,-0.040642794,-0.07989273,-0.070543274,0.03665755,0.057867445,0.034254868,0.055621475,-0.090833746,-0.034788914,-0.024596326,0.029339148,0.13514471,-0.02775068,-0.03132501,0.050517168,0.0071898205,-0.18992877,0.081474334,-0.011217431,-0.00846805,0.012377569,-0.053271163,-0.032185346,-0.021780714,0.020206522,-0.004516627,-0.04681293,-0.021447476,0.07584625,0.079112165,-0.00011696717,-0.014780567,-0.0028473926,0.06510404,0.032109328,-0.043967873,-0.07008011,-0.014954017,-0.11109973,0.12251672,-0.021754593,0.061704762,0.014831497,0.019293532,-0.026153903,0.05511555,0.027876176,0.0103973625,-0.020234734,0.0120364055,-0.009089647,-0.05462973,0.012111326,-0.00060775445,0.0014683149,-0.03888943,-0.037596587,0.0031341459,-0.014426692,-0.01590678,0.0042124265,0.0011437451,0.070267625,-0.09018733,-0.04050632,0.010803513,0.008964233,0.021864092,-0.006790111,-0.015392432,-0.1107082,-0.0335784,-0.011299218,-0.048509683,0.06984138,0.025374845,-0.06735006,-0.061854895,-0.10349558,0.08260289,0.008174399,0.013011846,-0.062216483,0.053287983,0.05664437,0.04810979,5.0754456e-33,-0.03712782,0.019808698,-0.0034694215,-0.0002325487,-0.045905717,-0.036482185,-0.09884338,0.015636213,0.021273337,0.052598648,-0.06533955,-0.02813878,-0.030893486,0.08110263,0.0057753553,-0.04100369,0.035213,-0.054717973,-0.030514164,-0.01067285,-0.048873115,-0.0015923816,0.028657064,0.07439889,0.03755291,0.028083932,0.01157814,-0.01616522,-0.0459274,0.04268285,-0.0077371704,-0.07272543,-0.0150302835,0.05451107,-0.03088321,0.032651152,0.0049754544,0.009276264,0.031571876,0.06985399,0.05828886,0.006279506,0.006432659,-0.051858056,-0.089841135,0.08162842,-0.014536753,0.034044787,0.021131253,0.0211282,-0.041697334,0.016563315,-0.13490146,-0.035762105,0.043776173,0.06423963,-0.07729999,0.033023883,0.0013350295,0.010790929,0.010390913,-0.039412104,0.013610501,0.043306295,0.0046189777,-0.06164906,0.05049133,0.017151985,0.089414425,0.041022286,-0.03302087,0.03936336,0.110680714,-0.017765708,0.038244575,0.1122173,-0.028605929,0.053116478,-0.03578539,0.024680817,-0.089952804,0.010295029,-0.016143419,-0.05726706,0.08168434,-0.029084954,-0.017155731,-0.0055536055,0.009470788,0.012942626,-0.03432378,-0.029082512,0.085572034,0.0028089592,-0.061121468,-6.924049e-33,0.027445087,0.0066520344,0.06963199,0.022603072,-0.0086113205,0.05003696,-0.021803688,-0.007863015,-0.06026006,0.009528949,-0.101767585,0.045371808,0.11631758,-0.06269039,0.03840758,0.05934079,0.057019066,-0.035302997,-0.056405548,-0.012739706,-0.00073637423,-0.08197757,0.07570602,-0.020122271,0.0133468285,0.017420832,0.04370514,0.04863469,0.00936202,0.0017456121,-0.05572381,0.10839987,0.046045896,0.047961343,0.030942228,0.12255811,0.037163306,0.04620315,-0.05452388,0.043974947,-0.042091757,0.066105105,-0.0075213155,0.037577853,0.06307881,-0.03583195,-0.050228585,-0.103725806,-0.065196626,-0.06560077,0.0051234104,0.018419832,0.0044907546,-0.024151575,0.03304576,0.044822417,0.017016673,-0.08867764,-0.034716707,-0.049416903,0.11579353,0.027803417,0.017266897,0.019994494,0.04774989,-0.052967492,-0.047448657,-0.0023403242,-0.062123403,0.005861225,0.055359732,-0.0652066,0.0055195913,0.044319488,-0.099770665,-0.028585784,0.014555313,0.078435965,0.04676211,-0.032841213,-0.1504749,0.03761568,-0.038498476,-0.0011128037,-0.05510821,0.005386222,0.0022390261,-0.03763637,0.014010016,-0.092760704,-0.041393127,0.048531964,-0.03467734,-0.057791255,-0.028693808,-3.0324838e-08,0.007358788,-0.041608226,-0.020903783,0.08196835,0.09754575,-0.0985823,-0.054466594,0.01855017,-0.014226969,0.013154406,-0.09460424,0.016923476,0.0035036963,-0.010443802,-0.023098817,0.048486747,-0.07974818,0.033957597,-0.054823447,-0.04292798,-0.013556693,0.037608847,-0.011725249,-0.082335345,-0.056555852,-0.06965948,0.005387438,-0.055333983,-0.018708609,-0.118469514,-0.03380857,0.059987802,-0.061390724,-0.037893336,0.044527434,0.039624408,-0.009801843,0.064683504,-0.024923174,0.016497448,0.08467236,0.009585652,0.0143234795,0.026778394,0.007479878,-0.038727768,-0.009495429,-0.00028430464,0.018105505,0.055219673,-0.08884465,-0.01990194,0.08028283,0.07976941,0.010487867,0.083242945,-0.0026274435,-0.052854348,-0.0037607767,0.038321204,-0.015243296,0.04231882,-0.03930329,0.013304242} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:46:46.130441+00 2026-01-25 01:27:51.916737+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 580 google ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE 1 t 583 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Shuttlebus hat nicht geklappt, mussten mit Taxi hin fahren.\nLange Wartezeit\nAuto aber super shuttlebus hat nicht geklappt, mussten mit taxi hin fahren. lange wartezeit auto aber super 2 2025-03-31 01:27:48.342689+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J2.01": "Lange Wartezeit", "J2.02": "Shuttlebus hat nicht geklappt, mussten mit Taxi hin fahren.", "O1.01": "Auto aber super"} {-0.11627516,0.05107944,0.07033336,-0.01385227,-0.017515564,0.039320227,0.12627634,0.14791933,-0.035850447,-0.007724554,0.023961777,-0.0005478987,0.028456047,-0.0035889782,-0.12748371,-0.016698074,0.042530112,0.04958017,-0.0055618873,-0.023396946,0.070166916,-0.021416912,0.017461734,0.019733278,0.012701022,-0.04130535,-0.014654507,-0.021186575,-0.006416257,-0.011255693,0.003453277,0.047386985,-0.053589072,0.010193002,-0.00096121366,0.02993716,0.017214874,-0.04756002,0.070826836,-0.07917741,-0.03301345,-0.024774069,0.03037855,-0.062345654,0.018179195,0.010283539,0.0065204557,-0.031657983,-0.03253223,0.08169897,-0.06253899,-0.027955048,0.09260077,-0.024883857,0.048522666,-0.050170757,-0.02285734,0.00014821219,0.013392789,0.0049826284,-0.035107587,-0.053452794,-0.04426208,-0.04079623,-0.020631926,-0.001847181,-0.043860782,-0.072038144,-0.04623548,0.024940409,0.03459264,-0.077400304,-0.03501676,-0.04608613,-0.009874856,-0.047557283,-0.039423943,0.061580572,4.570859e-05,-0.0771877,-0.013807415,-0.015615271,0.028784556,0.04231028,-0.03352706,-0.0040074843,-0.011749571,0.005615876,-0.021689404,0.029077724,0.0042084763,-0.04056515,-0.02346787,0.031075196,-0.12792367,-0.046175,-0.05124322,0.009423068,0.043078143,0.050447915,0.032793134,0.050151207,0.0019105034,0.03981927,-0.08566643,-0.045078825,0.023397936,-0.06580942,-0.0009128594,0.008876649,0.0032491174,-0.01942611,0.035229724,-0.08313143,-0.038600318,0.03376259,-0.065979615,-0.06734673,-0.010138462,-0.022863658,-0.049279675,0.011682352,0.09079507,0.09483502,0.10006949,-0.034381747,0.111817524,5.7427785e-33,-0.120267585,-0.04053761,0.0065412237,0.06306261,-0.040235188,-0.09341516,-0.09832786,0.0026314731,0.016576633,-0.0467163,-0.031143794,-0.020936927,-0.016479293,0.0017690115,0.018865703,-0.023925673,0.03189633,-0.09925227,0.052675158,-0.059501294,0.010032592,-0.028675156,0.05607422,-0.002289189,0.058691237,-0.03148366,0.05394959,0.0272483,0.0048882286,0.063480884,0.048014514,-0.00011649435,0.016842313,0.03391685,-0.069031976,-0.017132962,0.0036638074,0.066933714,-0.034990042,-0.03969398,-0.00038127796,-0.027097477,-0.080461375,-0.037892103,0.021808056,0.0015476437,0.049349803,-0.013996947,0.0052665453,0.06752143,-0.041873105,-0.017286124,-0.020867,-0.0028757066,-0.049275152,0.06909648,-0.019308768,0.028771676,0.010147659,0.026737813,-0.019612297,-0.033334646,0.016883941,0.012688716,0.071774565,0.00021568977,0.030852826,-0.034025833,0.05280998,0.09942106,0.002351843,0.005043863,0.082737975,0.039534364,-0.007348549,0.066472925,-0.0674452,0.033131633,-0.10041337,-0.013778442,-0.11812136,-0.02265728,0.017074691,-0.05160472,0.08291928,-0.02534459,-0.02842798,-0.049151335,0.070407346,0.062268026,-0.04496806,-0.017297411,-0.0382702,0.054645192,-0.0051982976,-6.233104e-33,0.12640156,0.03396546,-0.067146815,0.027554108,-0.05897684,0.09222793,-0.004423329,-0.0065699965,-0.04225117,0.045166735,-0.050199393,0.031209048,0.11937834,0.02963142,0.013421584,-0.0017779154,0.06917924,-0.0002458889,-0.0065582627,0.020213267,-0.021938743,-0.013889667,-0.036897656,0.019589135,-0.06850073,0.0323112,-0.039518904,0.18282174,-0.036720138,0.03364393,-0.010505089,0.022797776,0.08170028,0.03849963,-0.0064941384,0.010138622,0.09176361,0.11941358,-0.025563234,0.01693374,-0.05745426,-0.016342826,-0.069926105,-0.009046433,0.08648098,-0.070895545,-0.048252303,-0.008033356,-0.060497496,-0.011241424,0.0025541696,-0.026945472,0.06305097,-0.031875826,0.022360358,0.048806265,0.013901238,-0.034211736,0.015355512,-0.003387953,0.12296043,0.038780168,0.058487326,-0.008498789,0.014454385,-0.10975854,-0.08138387,-0.07149788,0.038504574,-0.010666247,0.06877431,0.018921193,0.05614882,0.033541396,-0.017668033,-0.012799489,0.09294586,0.09240503,-0.044968575,-0.03525637,-0.026184509,0.031945735,0.036286116,0.0778011,-0.07056737,0.029166749,0.060200635,-0.06805879,0.043509174,-0.053603277,-0.036339395,0.0667588,0.022087239,-0.0015948482,-0.054612845,-2.8301779e-08,-0.036894325,0.014111087,-0.048699632,0.0144449575,-0.019023217,-0.09215741,-0.0506071,0.03766098,-0.14442354,-0.03014246,-0.0063130306,0.06442906,-0.10847638,0.09252971,-0.003980716,0.009759481,-0.013729022,0.032746196,-0.020005887,-0.05508722,0.031275652,-0.06826817,0.06047502,0.014916117,-0.06102161,0.033992544,0.032741703,-0.07630785,0.04155805,-0.10532605,-0.060333017,0.11389708,0.03850215,0.009867708,-0.077277705,0.052282978,0.005322927,0.0449202,0.020950736,0.07348671,0.08639975,0.015670221,-0.0030097538,-0.08942486,0.013913212,0.024533857,-0.032504767,-0.05132094,0.019449685,0.06308467,-0.048718758,-0.007207534,-0.010630113,0.060890842,0.019601263,0.024546856,-0.021670047,-0.06860134,-0.027607787,0.005521574,0.009233081,0.059935212,-0.051460303,-0.03427985} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:46:39.659936+00 2026-01-25 01:27:51.937796+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 602 google ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB 1 t 605 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown sehr schwer im Parkhaus zu finden, Fahrer von Shuttlebus sehr unfreundlich,auch der Mitarbeiter im Büro bei Fahrzeugrückgabe sehr unfreundlich. sehr schwer im parkhaus zu finden, fahrer von shuttlebus sehr unfreundlich,auch der mitarbeiter im büro bei fahrzeugrückgabe sehr unfreundlich. 3 2025-03-31 01:27:48.342807+00 de v5.1 J1.02 {} V- I2 CR-N {} {"A1.02": "Fahrer von Shuttlebus sehr unfreundlich", "J1.02": "sehr schwer im Parkhaus zu finden"} {0.013703652,0.046694834,0.021615567,-0.03204565,0.003018955,0.06489929,0.048137043,0.042420026,-0.02213719,-0.05781533,0.008121605,-0.03345285,0.06140041,-0.046337817,-0.028622372,-0.059261087,0.016481526,0.05055428,-0.011707193,-0.06431696,0.018097373,0.019429807,0.015660288,0.06015587,-0.08698415,0.071925476,-0.09326126,-0.05522248,0.026349088,-0.047904093,-0.0318565,0.026866412,0.06506132,-0.022466952,0.108782545,0.05793761,0.011412488,-0.033975855,-0.009197849,0.010980624,-0.08769875,-0.0048316256,-0.0028224208,-0.05263609,-0.028479215,-0.0059920596,0.053290904,-0.065936804,0.013942176,0.030435594,-0.030531917,0.002164576,0.08809532,0.009494779,0.019365055,0.018736428,-0.02718252,0.008266005,0.032493386,-0.017003989,0.06865862,-0.041577715,-0.057942692,0.02802642,-0.05469476,-0.04550526,-0.025413282,-0.030746402,0.035904616,-0.09699343,0.06998043,-0.060640305,0.0022097963,-0.025110895,-0.02419127,0.014865495,-0.0220453,0.041146573,0.0288024,-0.06906819,-0.059877437,-0.12074819,-0.018280776,0.024490643,0.011682104,-2.2063481e-05,0.014815211,0.02832345,-0.00788944,0.054402296,-0.04382148,-0.031389244,-0.11812455,-0.010017339,-0.062479854,0.0043954286,-0.099350125,-0.075773634,0.02394706,0.01421019,-0.030524122,0.09983254,0.073984824,0.03207517,-0.039850723,-0.007164709,-0.07607118,0.036892008,0.01397339,-0.0059518334,-0.0074018226,-0.073569134,0.05789051,0.005445747,-0.025047459,-0.0069311336,0.01872944,-0.10374858,-0.03778108,-0.06825475,-0.002194066,-0.04489359,0.080080435,0.00027219902,-0.03698113,0.013980148,0.053086277,1.0108745e-32,-0.05018066,-0.083118245,0.012962287,-0.017660767,0.002211238,-0.020676231,-0.079659715,0.099815525,0.008684297,0.025355443,0.014885582,0.066618495,0.024497997,-0.055230387,0.04421846,-0.02253584,0.03875742,-0.06616102,0.030361718,-0.086247675,-0.047836214,0.022823665,0.027936906,0.047846433,0.07383545,-0.0655661,0.04067636,-0.09054687,0.02360207,0.078529775,0.022665266,-0.03522045,-0.10057208,0.040981114,0.0007358031,-0.018283952,0.012461272,0.065967746,0.002874192,-0.047105424,-0.00484305,-0.0752207,-0.047701143,-0.016751805,0.06069342,-0.03231704,0.042409077,-0.032146133,0.13505557,0.024379821,-0.012210369,0.017100014,0.007875936,-0.038910914,0.031800944,0.0026778984,0.003440952,0.09358764,-0.008354524,0.03450269,-0.019060763,0.15570424,-0.023071552,0.05184321,0.095337465,-0.034082633,0.017985465,-0.01018914,0.033838306,0.059613857,-0.022509737,-0.046125773,0.064512946,0.03834336,0.04965715,-0.02448932,-0.09762362,0.05631462,-0.057087064,0.06504209,0.034397084,0.018076263,0.050009325,0.007016412,0.03339677,-0.031410065,0.0067441203,0.015607401,0.026330478,0.07278184,-0.03240156,-0.003208659,-0.021454163,0.09343736,0.0064715743,-1.2000535e-32,0.07229567,-0.0070161745,0.0031986951,-0.05334866,-0.025151525,0.08182487,-0.07429309,0.022512142,-0.113207266,-0.002243554,-0.109911315,0.08018637,0.10079826,0.012857699,-0.0012119204,0.025839336,0.016999729,-0.036929455,-0.126097,0.03027654,0.003007761,-0.0015313925,0.007721507,0.069641896,-0.046956632,0.043427918,0.085834,0.069712095,-0.09447841,0.035877258,-0.0036993274,0.046933103,-0.03021755,-0.0030221196,-0.031686224,-0.04768119,0.0076852133,0.08675055,-0.0065365266,-0.004415178,-0.035195384,0.029822102,0.016990613,-0.023299705,0.091079235,-0.03862569,-0.1270073,-0.050191946,-0.07666111,-0.018403005,-0.014165143,-0.038752276,0.0005433521,-0.124100424,0.112803586,0.017665986,-0.031313907,-0.05462904,-0.01521957,0.01987115,0.06790352,0.02097448,-0.006483633,0.09738225,-0.03421487,-0.07538657,-0.003178379,0.027977733,-0.061829694,0.04480083,-0.018360643,0.043677457,0.088928595,0.034328736,-0.0391568,0.00090997847,0.031620577,0.1093318,-0.009993222,0.0015026525,0.023562904,0.034784183,0.017382005,-0.010935977,-0.07118911,-0.06821158,-0.019162446,-0.0022245022,-0.02129771,-0.06659235,-0.004742905,-0.0048659192,-0.031958632,-0.03305162,0.055027254,-4.941837e-08,0.002988276,0.012016718,0.028750552,-0.015376339,0.030322952,-0.08398704,-0.0056395708,0.07695633,-0.0660146,-0.077783436,0.044847943,-0.047508568,-0.007827473,0.12555715,-0.050365806,-0.004738875,0.02750869,-0.0144289825,4.7666097e-05,0.013429445,0.074199684,-0.11116247,0.037964277,0.0077045104,0.0011430886,-0.041243985,-0.049780797,-0.15488449,0.030948348,-0.10665366,-0.010597074,0.05816259,0.037871957,0.001119942,-0.042822417,-0.011055805,0.034739353,0.011211327,-0.124343954,0.017779252,0.031697173,0.004648324,-0.025112886,-0.053459506,-0.03691499,-0.014534614,0.023316724,0.047749847,-0.06315577,0.034265384,-0.07255816,-0.009856534,-0.006691557,0.03407234,0.031311985,0.060972832,-0.038688,-0.098135345,-0.05006624,-0.004010443,-0.04698756,0.025582235,-0.06853954,-0.009002774} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:46:24.890168+00 2026-01-25 01:27:52.019944+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1215 google ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE 1 t 1218 Soho Club unknown Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks were strong… and I especially liked all the different area’s in the club. I went back the day after 🤗 such a vibe! i was there for a party called dramatica… and the people were so friendly, the drinks were strong… and i especially liked all the different area’s in the club. i went back the day after 🤗 5 2023-01-30 18:34:31.336452+00 en v5.1 P1.01 {O1.01,E4.01} V+ I3 CR-N {} {"P1.01": "Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks w"} {0.004279205,-0.016550548,0.0071047265,0.011825217,-0.044110235,0.029984506,0.06269948,-0.046823867,-0.009812846,-0.036127664,0.015310316,0.0075223013,0.028232437,-0.0063831136,0.070371136,-0.013283165,0.046703424,-0.13798815,0.029090932,0.0709447,-0.081515886,-0.061875675,-0.01891221,0.093195505,-0.020388525,0.06819383,0.036322705,0.07963833,0.027594466,-0.018782025,0.0151891615,0.124991015,0.004854106,-0.014246485,0.022900857,0.037574053,0.032167226,-0.078316726,0.03614427,0.06046372,0.0018713094,0.064451404,0.061398156,0.035860937,-0.011601892,-0.059771623,0.017298095,-0.050528646,0.02382121,0.022003638,0.039677724,-0.013059121,0.06486898,-0.06414289,-0.048369303,0.014415099,0.04481982,-0.00890497,0.041457325,0.022124654,-0.039258476,0.023177583,-0.006461702,0.041351967,0.0035468324,-0.031123683,-0.08730771,0.040346824,0.08625097,-0.0381861,-0.044134296,-0.03390112,0.09635951,-0.036715847,-0.07501315,-0.017461581,-0.016472427,-0.034177974,-0.043328073,0.0665901,0.022391744,-0.060715564,-0.050525706,0.03986579,-0.089834705,-0.061353166,0.0020193078,-0.08767369,-0.004340577,0.0273939,-0.05629824,0.11166002,-0.03712747,-0.05445722,-0.0045595,-0.026119366,-0.055250056,0.006456082,0.08637396,0.07533789,-0.012012608,0.123233795,0.029028941,-0.016180158,-0.0422885,-0.036325417,-0.018414479,0.08520839,0.023687722,-0.051858988,-0.02518453,0.047963157,0.051407382,0.0073148785,0.026084313,0.0009802525,0.040193778,0.0054558488,-0.06557351,-0.030386765,0.060102463,0.048141997,-0.015040212,0.042026263,0.010800358,0.06894117,0.016197667,-4.73174e-33,-0.00073823903,-0.024243658,-0.02806862,0.033702336,0.119527206,0.0307778,-0.09588367,-0.054110523,-0.07057504,-0.0048119044,0.021256499,-0.018454976,-0.026564943,-0.043780852,-0.023399083,0.005889784,-0.052059032,-0.038651116,-0.034903023,-0.0015010089,-0.080821425,0.054221418,0.03069788,-0.016799973,-0.044396922,0.09208381,0.061669264,0.013046577,0.067794524,-0.0032330328,0.051038567,0.039452687,0.033375982,0.036877885,0.023509331,0.01984518,-0.046034086,-0.103559606,-0.0035947508,0.06832519,0.049859334,0.018767264,0.01633642,0.024568474,-0.098208934,0.013914667,-0.07220733,0.013837556,-0.011272995,-0.061802328,-0.08429702,0.005997536,0.029004773,0.10473778,-0.0408759,-0.04349466,-0.011907673,0.023290161,0.012970205,-0.10380878,0.072600916,0.040710643,0.03466545,-0.12983024,-0.0007798563,-0.017303998,-0.023339985,-0.025241166,0.101264186,-0.02755788,0.005178886,0.071255736,-0.024375336,0.017067475,0.00825878,-0.029095925,-0.07735411,-0.0014700481,0.035660252,0.06273483,-0.0013959142,-0.017678384,-0.050333634,0.02452743,0.03640787,-0.0008190422,0.09796957,-0.14544171,-0.10456706,0.00881595,-0.032590356,-0.024604736,0.10647211,-0.0072827865,0.029740147,1.7648382e-33,0.11431492,-0.0064365994,0.00796328,-0.0758356,0.05294508,-0.032868538,-0.05618994,-0.0050420607,-0.04343264,0.04757906,0.029346013,0.07163727,-0.014554535,-0.063580826,0.008720171,-0.032187346,0.07686015,0.06112677,0.001880863,-0.03711333,0.011121791,0.023592595,0.024413778,-0.001195112,-0.009328177,0.016539648,0.022772154,-0.04966883,-0.045394477,-0.016098805,-0.024739517,0.037779167,-0.0154595375,-0.053487655,0.00046767612,0.111874476,-0.052513603,-0.07735479,-0.06447031,-0.05172457,-0.06394249,-0.028173996,-0.03149682,0.08387541,0.020944284,0.018062992,-0.056830056,-0.028909966,-0.051605962,0.0021652002,-0.039922763,7.251391e-05,-0.055937946,-0.023821581,0.03231089,-0.04069078,0.0779897,-0.00877853,-0.061949946,-0.021613175,-0.08009793,0.026851937,-0.030489743,-0.029840805,0.044706445,-0.042241454,-0.04562958,-0.084162824,-0.038312264,0.01420017,0.013648009,0.022070948,-0.10460965,0.20369361,0.01607945,-0.1086841,-0.04085529,-0.033644218,-0.043433305,0.0074147563,-0.052919716,0.05933955,-0.039957028,0.028260177,0.036728904,0.07279486,0.051976714,0.005452252,-0.041656185,0.07122963,0.07615429,0.039079815,-0.0075613186,-0.038563143,0.031169638,-3.2744587e-08,-0.044112105,0.020907965,-0.07305388,0.03694514,0.03542343,-0.07721798,-0.048813324,-0.008689495,-0.023649052,-0.0019529366,0.0020005715,0.038500313,-0.001730934,0.04007544,-0.0128899515,0.01554036,0.047645688,0.043560132,-0.029163724,0.029579531,0.027295321,0.02657367,-0.045300856,0.057065293,-0.040276732,-0.019283993,-0.031134902,0.0008278705,-0.015251784,-0.07742704,-0.017417785,-0.0004941173,-0.065768525,0.002725987,-0.08935536,0.04779531,0.0060115834,-0.06081489,0.032672778,0.020928353,-0.04762953,-0.14991175,-0.010564678,-0.003391795,-0.0069552516,0.09401378,0.063648686,0.06326321,-0.03965534,0.055642787,0.005223182,0.005047239,-0.012544561,0.027802508,-0.0014489221,-0.05255696,-0.05991343,0.08944609,0.036812942,0.01009668,0.05701163,0.059005007,-0.13513432,-0.029928137} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:44:18.255377+00 2026-01-29 18:36:00.504817+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 368 google Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB 1 t 371 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nous avons payé 300 € pour 9 jours.\nEt 60 € de carburant et 5 € de lavage.\nC'est ce que nous avons payé.\nQuand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 jours nous avons payé 300 € pour 9 jours. et 60 € de carburant et 5 € de lavage. c'est ce que nous avons payé. quand nous sommes partis en grèce en crète. nous avons loué une voiture pour 50€ sans caution !! 10 jours 1 2025-11-26 01:27:48.341508+00 fr v5.1 P1.01 {} V0 I1 CR-N {} {"P1.01": "Nous avons payé 300 € pour 9 jours. Et 60 € de carburant et 5 € de lavage. C'est ce que nous avons p", "P1.02": "Quand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 "} {-0.01123661,0.072990336,0.066649124,-0.08381778,-0.000640676,0.017688422,0.058706455,0.037042186,-0.006810123,-0.018916525,-0.019674316,-0.12368518,-0.05561386,-0.043208435,-0.0272895,-0.06771043,-0.04951339,0.019059096,-0.021685528,-0.045468718,0.034817263,-0.012868811,-0.018169148,0.019061415,0.043030005,-0.030856863,0.01560056,-0.0063420217,-0.025972135,-0.042773593,0.052261382,0.07189461,-0.09251958,-0.07155778,0.09122837,-0.06611706,0.0026377211,-0.1330236,-0.107714966,0.06646786,-0.038302045,-0.039424483,-0.13382487,-0.036461934,-0.049290694,0.05490657,0.05361555,0.14297485,0.023984961,-0.01684407,0.0037109023,-0.0086058155,0.051775012,-0.12636226,-0.027616793,0.011411219,0.061450195,-0.012436403,0.059139796,-0.037706874,0.012098674,0.052172165,-0.029483074,0.08395277,-0.05249366,-0.019469697,-0.032624476,-0.047287893,-0.12047246,0.031984903,-0.00040023154,-0.09467343,-0.03474481,-0.016097816,-0.02237216,0.04814318,0.04077168,-0.054302312,0.00018808746,-0.03089165,-0.0062312456,0.03180097,0.018099803,-0.013080037,0.048182398,0.014824286,0.10131495,0.06214087,0.16684368,-0.06547668,-0.01286852,-0.041670028,-0.027780332,-0.0034613274,0.022830049,0.0027304434,0.020920493,0.011117919,-0.07820436,0.07312576,-0.02264362,-0.035054076,0.03238464,0.057115626,-0.05663365,0.068628535,0.031009337,0.035974998,0.05351709,0.04888069,-0.059401974,-0.026167445,0.031639438,-0.10660029,-0.026929356,-0.039418895,0.0153400125,-0.053707335,0.054957706,-0.014161447,0.099849604,-0.027994037,-0.04569172,0.036758706,-0.030867286,-0.02657273,0.01093895,1.0674644e-32,-0.065710485,0.023479078,0.091473304,-0.08434874,0.019345678,-0.03817597,-0.02251311,0.042791538,0.010538988,-0.007981993,-0.10047966,-0.03479458,-0.0166932,-0.001385817,0.0022465684,0.013561238,0.13756453,0.007265496,0.04398496,0.0056132716,-0.055067986,-0.005488184,0.048821047,0.042873602,-0.010007504,-0.006140874,0.030143153,-0.054964885,0.049606077,0.019065294,0.00943895,-0.07843567,0.033799145,-0.01780458,-0.034851246,0.04120661,-0.0047795773,-0.0013297703,-0.053037982,-0.0022831783,-0.012145135,0.02556751,0.052992217,-0.014002485,-0.013672609,0.078023545,-0.032450724,-0.008557163,0.00032747473,-0.041837696,-0.041785326,0.03593812,-0.089247644,0.04828871,0.05237787,-0.02148788,-0.07344606,0.0075337566,-0.010666586,-0.06563079,0.00078078714,-0.04416852,0.02828981,-0.04281769,-0.07068504,0.03527336,-0.040679224,-0.00748701,0.06884112,-0.06953831,-0.10617069,0.049207542,0.06816473,0.0072392565,0.039369036,0.056994937,0.0005544088,-0.011531797,0.017080551,-0.007894916,-0.05259593,-0.04786095,0.0066953017,-0.04219809,0.10584976,-0.04206251,0.023429526,0.03168759,0.029546881,0.045700766,-0.010006647,-0.04785533,-0.030435715,-0.020951094,0.033381887,-1.0975947e-32,-0.046422504,0.03972359,-0.037833422,0.03770514,-0.020727972,0.03854497,0.010201308,0.08208296,0.0013662569,-0.028755354,-0.14916477,-0.018069152,0.046055097,-0.07013765,-0.029727783,0.03414961,0.11497603,-0.06530599,-0.0019337499,0.044033464,-0.006824956,0.028473675,0.04118578,-0.031240534,-0.024942767,-0.005693085,0.011919932,0.06618776,-0.060591236,-0.01907813,0.034271583,0.019966792,0.009722032,0.018120121,0.005530822,0.04488768,0.0843859,0.09425272,0.0051845605,0.031227862,0.019954726,-0.0028511204,0.008471173,0.0032019534,0.04584998,-0.07600549,-0.085451655,-0.11408995,-0.035031304,-0.020016452,0.064226,0.003853973,-0.0043114983,0.03973418,-0.0008775127,-0.0366981,0.07115106,-0.059773095,-0.05898582,-0.0035127571,0.0794722,0.114598654,0.0037377686,0.034372237,0.053143468,-0.04239249,-0.104341105,0.054383777,0.04453105,-0.069594465,0.0024774915,-0.03295509,-0.03222211,0.041296814,-0.09584572,-0.02533844,0.058353726,0.0036843775,0.07638163,0.0070474283,-0.10771141,-0.057979945,0.0037587387,0.0005906658,0.037540264,-0.060970012,0.06136208,-0.03574585,0.043791138,0.017079942,-0.00696914,0.06442286,0.029074417,0.0104575185,0.04090499,-4.0603844e-08,0.03458988,-0.057520617,-0.01857227,0.058884162,0.040404238,-0.11623799,0.008747028,0.035772134,-0.008457259,0.047299385,0.06010242,-0.019704632,-0.002118786,-0.008387176,-0.0033751319,0.13991807,0.010023291,0.008049583,-0.058395736,-0.06806959,0.03915085,0.07648024,-0.10722976,-0.045815926,-0.03178061,-0.025430785,0.029218705,0.01298961,-0.0019034944,-0.0797202,-0.0778867,0.031467382,0.0031698947,-0.01366009,0.024113553,0.010192122,-0.018713482,0.061384343,-0.014804271,0.0070979926,-0.012112353,-0.038503747,0.04269195,-0.10155364,0.037908927,-0.021224376,-0.045791462,-0.03330494,0.014207526,0.013925809,0.027336448,0.08412953,0.027995737,0.09914619,0.008976057,-0.05493485,-0.0034945782,-0.004920974,-0.056575518,0.054346163,-0.026643937,-0.07280503,0.048031896,-0.025345106} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:40.446379+00 2026-01-25 01:27:51.13668+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 457 google ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB 1 t 460 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown ClickRent kann ich nicht empfehlen. Mussten für ein Mietauto eine sehr hohe Kaution bezahlen. Oder wir könnten uns nochmal versichern und weniger Kautiom bezahlen, obwohl wir uns schon über die Agentur über die wir gekauft hatten vollständig versichert waren. Also sie wollten uns praktisch doppelt versichern, damit wir nicht so eine hohe Kaution gezahlt hätten.\nWollten vor Ort außerdem nur die Kreditkarte des Hauptfahrers dafür. Keine andere Kreditkarte einer anderen Person, keine EC Karte, kein Bargeld, kein Paypal oder Revolut war in Ordnung. Wir waren vor Ort und hatten dann keine Möglichkeit zu bezahlen obwohl wir genügend Möglichkeiten hatten zu bezahlen. Sie haben uns dann vor Ort gelassen ohne eine Möglichkeit irgendwie ein Mietauto zu bekommen und was wir schon bezahlt hatten über die Agemtur bekamen wir ebenfalls nicht zurück obwohl wir kein Mietauto bekommen haben.\nNie wieder würde ich über diese Agentur oder mit ClickRent ein Mietauto kaufen!! clickrent kann ich nicht empfehlen. mussten für ein mietauto eine sehr hohe kaution bezahlen. oder wir könnten uns nochmal versichern und weniger kautiom bezahlen, obwohl wir uns schon über die agentur über die wir gekauft hatten vollständig versichert waren. also sie wollten uns praktisch doppelt versichern, damit wir nicht so eine hohe kaution gezahlt hätten. wollten vor ort außerdem nur die kreditkarte des hauptfahrers dafür. keine andere kreditkarte einer anderen person, keine ec karte, kein bargeld, kein paypal oder revolut war in ordnung. wir waren vor ort und hatten dann keine möglichkeit zu bezahlen obwohl wir genügend möglichkeiten hatten zu bezahlen. sie haben uns dann vor ort gelassen ohne eine möglichkeit irgendwie ein mietauto zu bekommen und was wir schon bezahlt hatten über die agemtur bekamen wir ebenfalls nicht zurück obwohl wir kein mietauto bekommen haben. nie wieder würde ich über diese agentur oder mit clickrent ein mietauto kaufen!! 1 2025-03-31 01:27:48.342047+00 de v5.1 P1.02 {} V- I2 CR-N {} {"J1.02": "Wollten vor Ort außerdem nur die Kreditkarte des Hauptfahrers dafür. Keine andere Kreditkarte einer ", "J1.03": "Sie haben uns dann vor Ort gelassen ohne eine Möglichkeit irgendwie ein Mietauto zu bekommen und was", "P1.02": "ClickRent kann ich nicht empfehlen. Mussten für ein Mietauto eine sehr hohe Kaution bezahlen. Oder w"} {-0.10966097,0.07559036,-0.11965472,-0.049749937,-0.057411022,0.025287893,0.028958492,0.059384268,-0.01311477,-0.034770716,0.05290799,-0.017983424,-0.0028135327,0.037751894,-0.034037188,0.021041367,0.031878404,0.07597041,-0.12307862,-0.00090846146,0.0026240698,-0.035337973,-0.008108078,0.0009147156,0.0023069128,-0.005523442,-0.0044066184,0.02944199,0.036708012,-0.022060977,0.075708106,-0.01734973,-0.035590522,-0.026043357,0.057701573,-0.0052546086,-0.021770494,-0.05279381,-0.0039453413,0.02822085,-0.043136705,0.021601819,-0.13654183,-0.010047871,-0.052067712,-0.016145052,0.026614204,0.026023643,-0.016657505,-0.010255921,-0.015178828,0.030752324,0.06704619,-0.033057347,-0.07477069,-0.1350724,-0.060600135,0.049587812,0.057835925,0.019912789,-0.003911391,-0.046979204,0.07876117,-0.016162653,-0.1430877,0.016309094,-0.04602628,-0.07145991,-0.05031598,-0.10152721,0.029953072,-0.120717146,-0.02686722,-0.000495249,-0.024937304,-0.011086178,0.009406118,0.055059668,-0.090942025,-0.06030626,0.06562519,-0.05530934,-0.032407355,-0.0030155114,-0.02170087,-0.08081198,-0.022661945,0.051459905,-0.0013334415,-0.022882005,0.03434839,0.11961754,-0.023531485,-0.101213254,0.059107788,0.019163456,-0.015030111,-0.0012509697,0.06225814,-0.019707708,0.021991618,-0.07127154,0.05322176,-0.0017040228,-0.06955199,-0.03547681,0.06940627,-0.07296393,-0.0065140915,-0.0010235796,-0.08721098,-0.052782472,-0.00089462387,-0.017498814,0.0516615,-0.025045251,-0.01998807,-0.044768173,0.02837735,-0.013827509,0.11994619,-0.11159878,0.009972584,-0.0088410685,0.13577448,0.028600894,0.06782142,2.3969639e-32,-0.026895303,0.027890176,0.008238839,-0.038587138,0.038955964,0.006468303,0.050968908,0.05577064,-0.008895204,-0.025919141,-0.13105306,-0.08108918,-0.039647028,-0.08239139,-0.06676001,-4.2191867e-05,-0.042368297,-0.09281606,-0.04211118,0.016130231,0.093694024,0.016525535,-0.027525127,0.057435308,-0.002770768,0.0031213516,-0.06102977,-0.084438734,0.0056868386,0.010347528,0.09211445,-0.05979526,-0.04007066,-0.002419619,-0.12612627,0.046830256,-0.0922175,0.07645098,0.0033957888,-0.032312926,-0.05117757,0.02134508,-0.041585054,0.017957512,0.025134698,0.02770772,0.058709405,0.043053456,0.016117651,0.0020375776,0.04065402,-0.07679777,-0.042037476,0.061814576,0.08040559,0.07199343,-0.058424592,0.0069783777,-0.037641592,-0.019065306,-0.05499532,-0.014376949,-0.018516526,-0.02484689,0.0631287,-0.07425363,0.02115037,0.012337324,0.055694483,0.0330123,-0.047820106,0.050653107,0.1070096,-0.030725315,-0.03658454,0.019356802,0.019027581,0.05458759,0.0006058415,0.076911554,-0.018265214,-0.0132987015,0.050838433,-0.035943184,0.012009128,-0.024992295,-0.044567622,-0.046792503,-0.014732216,0.084505804,0.083209835,-0.041391134,0.013488305,-0.027320407,0.035595942,-2.1950727e-32,0.037660588,0.07516163,0.009811461,0.05518309,0.0533409,0.0706094,0.01377582,0.040811572,-0.028892081,-0.08173704,-0.0048442795,-0.05350071,0.048095543,0.04748279,-0.017372347,0.07381739,-0.04816902,0.100737154,0.0028583359,-0.049726997,-0.0381646,-0.044850238,-0.036332287,0.0028582227,0.042190906,0.05245568,0.0072837127,0.011191163,-0.025390608,0.09602643,-0.018112939,0.028860064,-0.0025690102,-0.04027528,0.083369724,-0.0018541723,0.016655708,0.055015244,0.001454911,0.022137463,-0.024049528,0.04174424,-0.033300523,-0.03526463,-0.0017448904,-0.041360088,-0.0039902786,-0.039890125,0.0149745615,-0.10767319,0.07249394,0.029710945,0.009806172,0.04871494,0.03682555,0.121711254,0.019324083,0.015451314,-0.02922333,0.02021314,-0.01079622,-0.0045942436,0.037923127,0.026279809,0.033164386,-0.035739645,0.045411028,-0.01108821,0.0061704223,0.016631128,-0.054980054,-0.08611497,0.06295292,-0.0067698546,0.015779126,-0.020314714,-0.07771648,0.08059075,-0.0066071777,0.06106925,-0.06571905,0.055250175,-0.11027078,-0.07809819,0.032374453,-0.012646205,0.03306757,0.044904236,0.033385396,-0.07610939,-0.024597079,0.08000533,0.063547134,0.052325655,0.074938186,-7.067007e-08,0.04451403,-0.08937506,-0.08731493,-0.037863955,0.058268722,-0.04202143,-0.015381076,0.035400465,-0.07438441,0.07204255,0.06523375,0.011498846,-0.08814217,-0.010080433,-0.0438279,0.036765598,0.021050159,-0.09789141,0.0060196347,-0.029147733,0.104229,-0.06909176,-0.07507326,-0.061484855,0.004388504,0.01710031,-0.044920485,-0.017202107,0.06576795,-0.0056293854,0.034464084,0.0306878,-0.017936047,-0.037396908,-0.043216057,0.0005144647,0.028854234,-0.03744325,-0.019851033,0.02875714,0.052451562,0.06273949,-0.009479016,-0.0048750835,0.05366994,-0.027690964,-0.022665942,-0.012987049,-0.002543756,-0.016914826,-0.08402584,-0.022792494,-0.0026199666,0.043288402,-0.001636334,-0.008871213,0.013068864,0.06705059,0.010336895,0.0051309736,-0.039291423,0.050116256,0.029910877,0.038979627} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:47:28.563647+00 2026-01-25 01:27:51.457623+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 209 google Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB 1 t 212 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We arrived with a confirmed booking, only to be told there was no car available for us. The staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. This is utterly unacceptable. Avoid at all costs. we arrived with a confirmed booking, only to be told there was no car available for us. the staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. this is utterly unacceptable. avoid at all costs. 1 2025-11-26 01:27:48.340428+00 en v5.1 R1.01 {P1.02} V- I3 CR-N {} {"R1.01": "We arrived with a confirmed booking, only to be told there was no car available for us. The staff wa"} {0.047328267,0.0035668635,0.028018951,0.03621394,-0.03149276,0.013157168,-0.051549923,-0.014639438,0.007601099,-0.006314297,0.07454981,0.032518275,0.03638451,-0.005191388,0.018861178,-0.053441692,-0.006678681,-0.11729862,0.026884163,0.044008818,-0.056405686,0.030156119,-0.04791503,0.013330675,0.030848691,-0.020152053,-0.08127797,0.05506386,0.02317616,-0.027534198,0.008504703,0.030551873,0.02130524,-0.06090333,0.12337981,-0.008535405,-0.019525506,-0.0943646,-0.035114758,-0.06734779,0.018559922,-0.00014577976,-0.05065441,0.016248712,-0.012820615,0.03173604,0.0043241424,-0.03077902,0.05109421,-0.017216543,0.040157054,-0.010940255,0.03553927,-0.045591395,-0.10935313,-0.019207632,0.024338325,-0.00077799545,0.01316433,-0.009816096,0.066030465,-0.051950756,-0.02083991,0.038020253,-0.05775595,0.0083805565,-0.08611311,-0.07152198,0.061139375,-0.0017209979,0.06761279,-0.06565868,0.047214594,0.06838441,0.005731392,-0.00873143,0.107829586,0.06943291,0.15773831,-0.059249282,-0.08237353,-0.0893596,-0.022789035,-0.027378784,0.015941711,-0.017621197,0.01373103,0.039372638,0.00032679347,0.047470283,-0.0026438807,0.006260269,-0.007900906,-0.029455569,-0.04536279,0.018175477,-0.013572624,0.036211625,-0.026451372,0.05783873,0.07978427,0.08431916,0.009336094,-0.06482747,-0.13545652,0.024896223,0.04376876,-0.02787209,-0.0077793305,-0.055226937,-0.015132013,0.034484822,0.054907948,-0.022687873,-0.04499094,0.0814316,-0.058237102,-0.0018231455,0.0016027148,-0.029104317,-0.04188255,-0.029724786,0.06623615,-0.0119423345,-0.014114631,-0.0074892957,0.06192844,-3.7351037e-34,-0.03748629,0.013936107,-0.02580251,-0.02173704,0.10007753,0.015277262,-0.054121487,0.025221873,-0.02089179,0.0025783961,0.039302737,-0.052376177,0.037114125,-0.12190843,-0.041491926,0.04966871,-0.006020722,-0.0024178391,0.0073007974,-0.03509085,-0.021205492,0.03214703,-0.020379687,-0.020275213,-0.019709095,0.021257102,-0.008214,0.019256447,0.13177733,0.044937745,-0.10589489,0.028367264,0.06290315,0.0048794225,0.011784285,0.037839588,-0.101108454,-0.019217452,-0.06555293,-0.012394705,0.023227839,-0.05264472,-0.10865905,0.049728304,0.059444293,0.03290252,0.07211879,-0.12342641,-0.05735733,0.05875841,-0.09884052,0.026211014,-0.0436734,0.0045353114,-0.09354924,-0.0023613386,0.030464804,0.038325284,0.021776171,-0.08344533,0.060619794,0.07993869,-0.024686126,-0.025613256,-0.076048955,-0.09820307,-0.03099692,0.011481873,-0.032250356,-0.036824554,0.027523668,0.0020487385,-0.0064242072,-0.004751446,0.023894629,-0.04372671,-0.058729287,0.023139568,0.088152364,-0.04055468,0.029148204,-0.007940416,0.008775417,0.064825505,0.061340094,0.008253411,0.042208448,-0.003680364,-0.017393429,0.0911414,-0.005163836,0.0460751,-0.02294352,0.015269158,0.11335215,-3.3187464e-33,-0.008627112,-0.026882702,-0.027637267,-0.06211593,-0.04361315,0.044710927,-0.06602345,-0.07903327,0.028369686,-0.0062561147,-0.10141561,0.0057643335,0.05726744,-0.017650908,0.0010074361,-0.040084902,0.033111658,-0.10463138,0.023614377,0.016260818,0.057173815,0.05000222,-0.015844213,0.046362143,-0.02599703,0.06980368,0.010861873,0.06426253,-0.039058454,-0.049613163,0.0201676,-0.04969483,-0.03640789,0.07870534,0.059615668,-0.002858621,0.06825965,0.078716695,-0.09938725,0.057787556,-0.0052628154,-0.10929033,0.022663124,0.01586861,0.057306554,-0.0457663,0.120960884,-0.11067291,0.019694878,0.017305518,0.010124672,0.006801292,-0.06509299,0.03275045,-0.042354416,0.04054845,0.026653513,-0.010237262,0.09321718,0.035677027,0.032607466,-0.020210162,0.01446816,-0.058718204,0.033543374,-0.07172307,0.02201856,-0.050967608,0.08234845,-0.0158436,-0.06413052,-0.05117611,-0.10219135,0.014737248,0.02831874,0.098248824,0.018893257,-0.08454635,-0.052397404,-0.094649985,0.0370332,0.008479263,0.011571246,0.03923809,0.053662457,-0.040767625,0.039802745,-0.08100997,-0.023016803,0.032469545,0.011965095,0.041170903,-0.03638021,0.016928505,-0.06993971,-4.6071257e-08,0.011214589,0.028289927,0.05416446,-0.047118362,0.04926286,-0.101341456,0.029609423,0.010524788,-0.11108783,0.101302795,0.0095728645,-0.03531722,-0.015734514,0.03864561,-0.031609282,0.019099928,0.02104749,0.04736941,-0.06899958,-0.016124027,-0.098564975,0.049561795,-0.050949756,0.025601363,-0.014061873,-0.044963405,-0.030113803,0.04995826,0.06430122,-0.075521626,-0.05835789,0.05854537,0.036236882,-0.013599717,-0.009391727,-0.09055988,-0.023733366,0.037039485,-0.016237035,-0.052792866,-0.012150757,0.017672334,-0.014909517,0.035896465,0.0020365333,0.07720408,-0.047824655,0.009558468,-0.0039558453,-0.016014641,-0.017796414,-0.0854058,-0.058151655,0.155157,0.037503246,-0.034873314,-0.043438178,-0.045071054,0.021046394,-0.012049709,-0.044687815,-0.023167051,-0.016705755,0.0016123654} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:43:02.079422+00 2026-01-25 01:27:50.048945+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1216 google ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE 1 t 1219 Soho Club unknown Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old fashioned. do not buy cocktails in soho - expensive and not worth your money. bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. taste was weird and awful, the discription did not mached the outcome. we had aperol spritz and old fashioned. 1 2023-01-30 18:34:31.336452+00 en v5.1 V1.02 {O1.01} V- I2 CR-N {} {"O1.01": "Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old ", "V1.02": "Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of"} {0.035935394,-0.079775415,0.023298703,-0.033096813,-0.0468754,-0.017255079,0.055533282,-0.014099609,0.011400312,-0.11235099,0.017615918,0.03512238,0.0133216325,0.017932378,0.0006926958,-0.05287226,0.07152479,-0.13675018,0.015812274,0.022762451,-0.02201537,-0.068136506,0.015986122,0.08567737,-0.00064248586,-0.0036539205,0.009484981,-0.016077965,0.012751543,-0.039590284,-0.0042416574,0.1415269,-0.040911667,-0.081586145,-0.08639738,-0.060813133,0.050527975,0.08687379,0.043077275,0.10493487,0.04903716,-0.05516806,0.00040873708,-0.047089893,-0.027189821,0.005640193,-0.017796095,-0.04199519,0.03299777,0.041167747,-0.05414321,0.02561194,0.02023989,-0.08702297,0.009841103,-0.06391544,-0.032195155,0.0073597203,-0.0012667527,0.0861004,-0.09817202,0.028649718,-0.106014445,0.041581836,0.04299257,-0.03503161,-0.008700623,0.045062713,0.0633136,-0.02210303,0.012886901,-0.06426684,0.041316267,-0.0064330786,-0.048138056,-0.013836806,0.031639054,-0.0066286633,-0.08816659,0.050652716,-0.0084926495,-0.030458985,-0.077450626,0.08617537,-0.019764509,-0.016605103,-0.03509424,-0.061285216,0.00891475,-0.014633063,-0.018227067,0.005372867,-0.09682458,-0.086322285,0.0941103,0.0900943,-0.04744802,0.0020673666,0.015652122,0.03038566,-0.0063185235,0.10887252,-0.03694544,-0.08429525,0.0075286566,-0.000106004,0.027985182,0.059980337,0.07117389,0.034978826,0.012869873,0.0389494,0.123752646,-0.04914495,-0.03776627,0.07112444,0.040029544,-0.087172896,-0.02813023,-0.085347116,-0.020817405,0.09492246,0.020299686,0.026791023,-0.042071875,-0.007530018,0.060165904,5.822493e-34,-0.04988692,-0.07149271,-0.019663569,0.035875622,0.0062917676,0.026719946,-0.025460206,-0.0027101417,0.016685326,-0.035363413,0.08720724,-0.037342563,-0.07063472,0.010917716,0.04249095,0.03131586,0.059898388,0.033500314,-0.040371653,-0.085998274,-0.061737526,-0.005794234,-0.020735936,0.003123025,-0.052320562,0.058839012,0.07667504,0.03944184,0.019116815,-0.00954462,0.031809866,0.08685144,-0.01004923,0.043202516,-0.039397635,0.03314698,-0.06683707,0.003893911,-0.013836863,-0.088504024,-0.074247934,0.080463834,0.021179931,0.04307783,-0.06628109,0.05318933,-0.06473963,-0.011025011,-0.03881295,0.001616251,-0.020410871,0.036174636,-0.013003456,0.10108456,-0.08754457,0.013211276,0.0015698457,-0.005448043,0.028073201,-0.050072834,0.026843734,0.08400393,-0.036141496,0.014948591,0.012332839,-0.019039512,-0.033749245,-0.023396896,0.022890974,-0.03939121,0.02700959,0.024282176,0.030233426,0.039365273,0.078651555,-0.01162861,-0.03648199,0.0140285175,0.15018257,0.025167221,0.04495335,-0.07249314,0.058906112,0.096537024,0.00057458744,0.0038110137,0.12336289,-0.042832427,-0.03185524,-0.015637483,-0.06367385,-0.107396305,0.018198384,0.0058301366,-0.0051865247,-3.491525e-33,0.0026518719,-0.022152392,0.042310655,0.011413731,0.01341568,-0.009853133,-0.02985294,-0.077087425,0.029240357,0.019436164,8.198054e-05,0.12400674,0.030238345,-0.035572167,0.07210544,-0.0037649716,0.06427931,-0.007296633,-0.040596906,0.0021808094,0.010952817,-0.0009968899,0.01591321,0.009470123,-0.06791466,0.004958446,0.036959488,-0.035710488,-0.07075214,-0.0063845334,0.020162301,0.028266538,0.004123453,-0.06943757,0.018471787,0.0075804074,0.02998996,-0.06226403,-0.05707466,-0.04084569,-0.0057987804,0.0049993144,-0.002469271,-0.05532344,0.10281933,-0.054232404,-0.04482461,-0.12040665,0.009337493,0.004659226,0.022280429,0.118075304,-0.043821197,0.008102808,-0.025943328,-0.09813397,0.0027150132,-0.006481209,-0.009269502,-0.04285771,-0.048396852,0.117220536,-0.08016647,-0.015485188,0.00034073164,-0.039386764,-0.029209143,-0.0013892383,0.00117697,-0.031481545,0.078197554,-0.07018975,0.04338249,0.06533779,-0.010140713,-0.04518788,0.027818732,0.010843059,-0.025838807,0.009079748,0.035648145,-0.003598563,0.001999547,0.022708405,0.02789606,-0.00093983253,0.06805245,-0.019373722,-0.052369032,0.01665317,0.025967652,-0.037465546,-0.028668365,-0.022496453,0.07992535,-4.3373696e-08,-0.026221547,0.018512677,0.020804564,0.12804757,-0.094873644,-0.091801845,-0.04273709,0.041289426,-0.093544476,0.049436726,0.032825097,-0.020034079,-0.058327954,0.022480516,-0.017409574,-0.01646458,0.022189882,0.0447028,-0.06137521,0.02275348,0.0033860288,0.047968496,0.01798168,0.015604519,-0.08277452,-0.004873201,-0.016370088,-0.034206968,0.033938397,0.0035413504,0.007387221,0.032824226,0.012738672,-0.008284576,-0.027219692,-0.00034472643,0.008697053,-0.015319732,0.03139141,0.038189527,-0.093422525,-0.18295969,0.012344614,0.0139715625,-0.0042396924,0.0005281852,0.01743838,0.00490357,-0.007222465,0.1090971,0.07409567,0.09208119,0.061484214,-0.12099926,0.017661178,-0.062336545,-0.05620575,0.014343029,-0.0021033078,-0.07600532,0.054952007,0.027427167,-0.06337736,0.013068806} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:44:30.981509+00 2026-01-29 18:36:00.507091+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1217 google ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB 1 t 1220 Soho Club unknown The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere, staff is extremely friendly 😄 the best place in vilnius to party. everyone is open minded and fun! such a great atmosphere, staff is extremely friendly 😄 5 2019-01-31 18:34:31.336452+00 en v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere", "P1.01": "staff is extremely friendly 😄"} {0.07312655,-0.008764392,-0.02768123,0.03678902,-0.029955843,0.048267916,0.035446268,-0.064156756,-0.03328231,0.015112271,0.0072363997,0.04007656,-0.01368843,0.019925449,0.047993932,0.010512155,0.09391918,-0.059708875,0.017138394,-0.044407453,-0.03666268,-0.07715369,0.040704284,0.047891766,-0.02845271,-0.014292376,-0.021910721,0.06516089,0.04724247,-0.03816284,-0.044301715,0.0788154,-0.040932078,0.04970033,0.0039303917,0.043785766,-0.004570276,-0.11450878,0.029810967,0.022391587,0.0040596006,0.042945534,-0.0562827,-0.01718962,-0.03697395,0.033201978,-0.06339727,-0.027079778,0.004827207,0.10710343,0.03803165,-0.003527312,0.07305238,-0.027383123,-0.007036333,-0.027427534,-0.049723588,-0.006099833,-0.01333439,-0.0059337863,0.042149685,-0.010712165,-0.11669591,-0.008079535,-0.0034327798,-0.081916906,-0.038611386,0.09323515,0.054787,-0.14408003,0.025801554,0.02012287,0.027871339,-0.013938826,-0.040276628,-0.03698848,-0.059205294,0.023442635,-0.015684564,0.058180973,0.12516613,0.052876763,-0.0070810644,0.03905023,-0.057628877,-0.08477337,-0.051171288,0.008550232,0.040750448,0.037114333,-0.059117038,0.09534321,-0.04214676,-0.03250676,-0.010253933,0.018531192,-0.06307424,0.027484933,-0.020153204,0.008909216,-0.0076918844,0.12530349,-0.024370324,0.00026889562,-0.04500065,-0.03825831,-0.031336352,-0.013053588,-0.01717215,0.025629697,0.03059968,-0.026998593,0.06943119,-0.051942926,0.01838465,0.01892,0.07751942,0.012560204,-0.04603305,0.0075943256,0.023909872,0.035921585,0.0026184416,0.0007934128,0.019792866,0.024558643,-0.034373466,-2.4962339e-33,0.0449718,0.034291547,-0.019949125,0.058665015,-0.010769538,0.023731278,-0.059719812,-0.05458475,-0.07204809,-0.033065733,0.020323033,-0.042839337,-0.0007197127,-0.055887647,0.008786702,0.051635217,0.041525256,-0.009734199,-0.09852295,0.028465163,-0.05256375,-0.015800793,-0.04642473,0.050438847,0.00016922869,0.071751654,0.098976634,0.003918958,0.052104406,0.0043863724,0.038673896,0.008313923,-0.07021093,0.056659512,-0.0006711353,0.023841694,-0.10283418,-0.039910186,-0.003309864,-0.03001242,0.05679908,-0.0034175587,-0.042134702,0.098997995,-0.0024548143,0.05245795,-0.009157208,-0.05637616,0.09336523,-0.067097485,-0.0952942,0.05993402,-0.025011634,0.112810194,0.01754901,-0.030405857,0.05796193,0.049798504,0.039049853,-0.032866817,-0.0022365095,-0.019279502,-0.06589573,-0.023770837,0.024763022,-0.07449964,-0.07564679,-0.052117955,0.11242251,-0.050387874,0.06162381,-0.022027852,0.074524045,0.0702411,-0.07414458,0.016860228,-0.039856076,0.028091913,0.05376636,0.045071956,-0.00022727047,0.036932692,-0.030646054,0.008962403,-0.032687902,-0.079169914,0.08149446,-0.098301046,-0.05378601,-0.008348807,-0.04612139,0.024296362,0.11658417,0.025350358,-0.03206463,3.9439612e-34,0.08520874,-0.04657092,-0.017891213,-0.021198515,0.017817352,0.029220406,-0.050128978,-0.015525443,0.057416636,0.09437744,-0.10319799,0.015496127,0.020885753,0.094048455,-0.0062755337,0.030520374,0.12430326,-0.008016496,-0.027399113,0.0010712291,-0.0844397,0.11241682,0.02249245,0.040183656,-0.013569934,0.021193802,-0.019846417,-0.09646447,-0.081518754,0.049628273,-0.09571139,-0.045968566,-0.001493549,-0.010102767,0.058885228,0.022371124,0.037090324,-0.047821697,-0.08276326,0.014596029,0.00028421913,-0.035681546,-0.01563856,0.022436233,0.036489177,-0.06675155,-0.049094945,-0.028874326,-0.08062631,-0.07950551,0.005969726,0.0007635825,-0.090583906,-0.030500885,0.038960766,-0.03971145,-0.018493198,-0.007303815,0.009145867,-0.047746174,0.004209158,0.007298619,-0.019394752,0.095446385,-0.0034557616,-0.0050541917,0.045005437,0.042264972,-0.014354296,0.0083311405,-0.09735326,0.026309498,0.029244874,0.14894865,0.034423176,-0.04502984,0.08366837,0.017490035,0.066940755,-0.02192802,-0.02393958,-0.0056831064,-0.040671457,-0.055379156,0.078841604,-0.023053842,0.072530545,-0.032760296,-0.05670714,-0.022530053,0.0072966022,0.058466192,-0.039015695,0.02642569,0.045401264,-2.1427798e-08,0.07999314,-0.0044192043,-0.0428495,0.04392612,-0.025253206,-0.19013171,-0.009449668,0.05350137,0.02248593,0.070268035,-0.045957208,0.0009482321,-0.026393592,0.011255668,0.05007681,0.026911,-0.0023682523,0.038472243,-0.04840862,0.03640101,-0.0009629593,0.080535196,-0.04711209,-0.021120489,-0.080694295,0.010137513,-0.0076153274,-0.04464713,-0.012261716,-0.059311494,-0.025331257,0.0124625135,-0.021645356,-0.015823077,-0.028055908,0.04551269,0.0811653,-0.06257387,0.0013078742,0.053637218,-0.06109207,-0.12554023,0.005829543,-0.012532443,-0.08074851,0.028383726,0.10840984,-0.041245036,-0.041342206,-0.016217137,-0.097518355,0.055378668,-0.0073316363,-0.02313,0.0005215215,-0.039109584,-0.018612098,-0.0046098595,0.027422162,0.016562492,0.052975927,0.07258572,-0.059822958,0.01764438} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:44:42.354288+00 2026-01-29 18:36:00.510441+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1218 google ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB 1 t 1221 Soho Club unknown I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjoys.\n\nStraight nights suck but worth exploring in Vilnius. i’m the gayest of the gays and this place sucks. weak drinks and rude djs with bad music no one enjoys. straight nights suck but worth exploring in vilnius. 1 2020-01-31 18:34:31.336452+00 en v5.1 P1.02 {O1.02} V- I3 CR-N {} {"J1.01": "Straight nights suck but worth exploring in Vilnius.", "P1.02": "I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjo"} {0.12842654,-0.044282403,-0.0019265872,0.051931877,-0.0077856723,0.042301953,0.02376546,-0.10438697,-0.0057090917,0.0060732258,-0.02584506,0.02753839,-0.03598831,0.0024896036,0.064003825,-0.020985216,0.043546684,-0.081253506,-0.010850787,0.0033635048,-0.04666375,-0.027580049,0.028252913,0.014128929,-0.07551698,-0.04168079,0.037665583,0.043270092,0.047494903,0.012173468,-0.027478347,0.11405149,-0.00597926,-0.0132745085,-0.03758209,-0.020715166,-0.03873278,-0.1217871,0.055260662,0.035288297,0.062030427,0.043978672,0.008640477,0.01703609,-0.03422801,-0.0068250145,0.007064898,-0.031095058,0.009586739,0.054655604,0.059414968,-0.031669777,0.05707006,-0.05949353,-0.028981611,0.03041974,-0.0229577,0.071781576,0.013317582,0.068659246,0.10723999,0.0059567164,-0.123955086,-0.034869634,0.011015505,-0.0085623,-0.043737777,0.0960015,0.07115638,-0.031773496,-0.024279587,0.015087836,-0.050893787,0.02697034,-0.0400462,-0.052295674,-0.08829112,0.018905025,0.056880273,0.051474992,0.0811305,-0.06381592,-0.015310404,-0.00088848075,-0.07971053,-0.07044118,0.007864054,0.02372818,3.1304557e-05,0.0855091,-0.05377704,0.07316642,-0.026074573,-0.08182717,0.038644556,-0.026647395,-0.056408376,0.048400804,-0.035924397,0.040278047,-0.0079091145,0.105386995,-0.008817606,-0.004251466,-0.056371346,-0.013245258,-0.057761606,0.0017675763,-0.03066718,0.03222324,-0.031885378,-0.017705731,0.08287355,-0.047249883,-0.0006844164,0.016861243,0.12168439,0.036042474,0.002690476,0.071654975,-0.062329646,0.054974694,0.030820142,0.072079085,0.0344322,0.047277883,-0.07273823,-1.812724e-33,0.034586154,-0.008406912,-0.04317227,0.035984833,0.01602184,0.0010679064,-0.021501364,-0.044904523,0.0032984891,0.061621685,0.030886792,0.007951796,-0.054830585,-0.06261362,0.028272014,0.018762521,0.108095735,-0.03670324,-0.11985702,-0.036830597,0.0058063087,0.006477858,-0.030383164,0.029887527,-0.10750758,0.029978072,0.070034996,-0.0038839409,0.07023074,-0.010643333,-0.011871549,0.03320655,-0.039935898,0.038908496,0.041284703,0.053350996,-0.01054517,0.036225818,-0.02092415,-0.019163525,0.043057896,-0.041204955,-0.06007642,0.02408974,0.009060094,0.08472519,0.017235838,-0.07971885,0.07133535,-0.0061622923,-0.06644787,0.08327987,-0.086946614,0.12064221,-0.03886514,-0.025451716,0.013826448,0.05647803,0.031460486,0.005315146,-0.051370632,-0.0034377486,0.0014483386,-0.033995878,-0.018509315,-0.016330604,0.011857008,-0.06897325,0.08068231,-0.01684678,0.06770772,-0.049451917,0.048647713,0.004052177,0.0152289495,0.022536937,-0.08461801,-0.036523193,0.071277715,0.023499003,0.03540471,0.03914627,0.01993807,-0.04681661,-0.06920365,-0.07518974,0.034808375,-0.1278347,0.05438396,-0.050815772,-0.09706525,0.018056355,0.04895033,-0.043612927,0.024422845,-1.8636328e-34,0.057332963,-0.07083091,0.0429392,-0.013971293,0.0009675155,0.013492872,-0.014613067,0.008245475,0.0763944,0.10298595,-0.04690887,-0.060662102,0.03747221,0.10862667,0.05364419,-0.009228392,0.07327521,0.011601273,-0.02048206,0.041279107,-0.08752974,0.12215798,0.033700056,0.079782695,0.030069668,0.02833259,-0.00570648,0.008560063,-0.0054599447,0.023895279,-0.008697504,-0.0027467962,-0.042464614,-0.013476137,0.06046176,-0.015882391,0.06354538,0.097520635,-0.102313,-0.06191143,-0.0009472429,-0.05534041,0.016958408,0.052120663,0.09703214,-0.07216617,0.0021763165,-0.02505485,-0.05976133,-0.08860202,-0.013121765,0.002582516,-0.08883351,-0.003911306,0.025111506,-0.0915895,-0.022509377,-0.029793028,-0.08341369,0.018512443,-0.056119706,-0.055053357,-0.051467527,0.033571955,0.051865518,-0.039714765,0.03788053,-0.03962289,-0.00039290002,0.005800595,-0.061498586,-0.024473371,-0.032519788,0.06634003,-0.025261795,-0.041959584,0.023999434,0.032226488,0.0045901584,-0.011623116,0.027091868,0.031133223,-0.06500704,-0.03290158,0.09588469,-0.038387302,0.036268704,-0.040190898,-0.0003745526,0.0035290397,-0.021183532,0.042389266,-0.09131096,-0.026269231,0.0041080713,-2.3287212e-08,0.02405203,-0.05022002,-0.01316399,0.09906008,-0.03400428,-0.06870699,-0.03559072,0.056191072,0.036290564,0.02612854,-0.06339826,-0.028022893,0.0022057104,0.020277359,0.030379623,0.015408929,0.021771206,0.05012034,-0.015388241,0.049603503,-0.02635357,0.06393779,0.030501092,-0.034937244,-0.08450089,0.002982423,0.011461178,-0.07068057,0.037284985,-0.026749793,-0.009631976,0.036164273,-0.020283196,0.006819785,-0.03667005,-0.04460118,0.13347453,-0.05539361,-0.009679376,0.055454228,-0.08525343,-0.06581283,-0.018115899,-0.025562756,-0.098890945,0.004136077,0.098082036,-0.01575582,-0.02256047,-0.00074485247,-0.076287985,0.09019554,0.00773944,-0.009358231,0.012332992,-0.08595,-0.06748074,0.07273956,-0.025698183,0.035243228,0.033893682,-0.01790759,-0.063566625,-0.11479978} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:44:53.029836+00 2026-01-29 18:36:00.513325+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1219 google ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB 1 t 1222 Soho Club unknown Great club for gay and not so. Dramatica show blew... my mind. great club for gay and not so. dramatica show blew... my mind. 5 2023-01-30 18:34:31.336452+00 en v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Great club for gay and not so.", "O1.01": "Dramatica show blew... my mind."} {0.06679042,-0.057862744,-0.050611243,-0.010214149,-0.04780873,0.0504808,0.027458707,-0.037586953,0.058888894,0.028472774,-0.009582668,0.043303505,-0.019262265,0.022074547,-0.021794543,-0.06925745,0.041567612,-0.14674446,0.011934664,0.051255215,0.0047333706,0.015024822,-0.042985007,0.031955987,-0.047685087,-0.039703056,0.063376024,0.012229023,-0.028287264,0.06393232,0.048022848,0.10546579,0.011410915,-0.0013030852,-0.027740931,0.048239026,0.0074567487,-0.10484383,0.02264862,0.04312766,-0.013019258,0.015338436,-0.0034715277,0.01716795,0.0646187,-0.04560504,0.07871222,-0.082737125,0.032109622,0.03038323,0.059713613,-0.011977013,0.044195537,-0.081344076,-0.025212057,0.067205854,-0.018794592,-0.020792017,-0.006497093,0.006368557,0.053925708,0.04035738,-0.07140867,-0.038556334,0.024920603,-0.009827274,-0.03510299,0.08505784,0.075154185,0.01894688,-0.0027029403,0.005946395,0.018151868,-0.0009561607,-0.017209657,0.045822714,-0.000868644,-0.042313732,0.07450481,0.031368963,0.046707187,-0.14493763,-0.023297504,-0.015248856,-0.018677939,-0.0661784,0.03475689,-0.10417756,-0.05889249,0.07279699,-0.057971235,0.101412825,-0.005520451,-0.03162938,-0.037403032,-0.01647549,-0.062266637,0.030518506,-0.05953215,0.06817239,-0.019795582,0.076576844,0.009606485,-0.036952127,-0.0738252,0.028782861,0.05593972,0.06812865,0.03891999,-0.014646241,-0.0752482,0.043434158,0.0246109,0.0042286967,0.0017964818,0.06018096,0.062672175,0.064543664,-0.023414232,0.010865166,0.051325724,0.060428765,0.029818775,0.09809195,0.019156303,-0.018252948,0.011190284,-6.5202644e-33,-0.06215543,-0.035103094,-0.03117106,-0.02343775,0.071654536,0.08627376,-0.02694789,-0.06364357,-0.012041251,0.021997293,0.018050794,0.02406659,-0.043316614,-0.13582514,-0.005300482,-0.018105393,0.03049695,-0.047267273,-0.03410672,-0.033654746,0.0007524581,0.15632497,-0.013046478,-0.07257854,-0.108014025,0.065577656,0.059288472,0.004575362,0.07225951,0.03515615,-0.0199637,0.035179228,-0.016370943,0.065531306,0.024110975,0.041120246,-0.036488324,-0.05634808,-0.032083757,0.067076966,0.0068432074,-0.033130266,-0.04597885,0.01170036,-0.077864945,0.08451454,-0.06640001,0.00023718386,0.062271755,0.018871471,-0.012401537,0.0018376828,-0.061442107,0.08588512,-0.0057306075,-0.012904652,-0.046583652,0.031118391,0.06649502,-0.01805055,0.007374679,0.06909879,0.06842939,0.042797588,-0.0828715,0.015209345,0.09430959,-0.047918502,0.020811277,0.01367417,-0.04006397,0.0014628514,-0.0007295423,0.0129118655,0.009553091,-0.042021424,-0.0769901,0.01613085,0.048344526,0.048520893,0.06978308,-0.025658894,0.013393112,-0.07077404,0.003152269,-0.04401095,0.054142427,-0.05184793,-0.077743106,-0.09142336,-0.048307873,-0.045432825,0.08485704,-0.04400126,0.0906874,4.2763713e-33,0.08670751,-0.062565155,-0.0006759473,-0.01468232,0.061057948,-0.0033678245,-0.01524306,-0.045942657,-0.012381196,0.08087945,-0.0056018285,-0.06423012,-0.015333131,-0.021279767,0.07289313,-0.05164395,0.058033764,-0.011490828,-0.020260137,0.0028651904,0.00062078,0.076315716,-0.0129610235,0.044682853,0.13024916,-0.020423375,0.019479485,0.101563714,-0.02626876,-0.007156488,-0.038094826,0.060561,-0.05909307,0.009489054,-0.0006882256,0.07292736,0.0017407135,0.062094,-0.013156321,-0.062146503,-0.0073967595,-0.061601177,-0.036544144,0.1611292,-0.014423442,-0.0024677385,0.014434793,0.058133226,-0.004967831,0.0049433517,-0.11422827,-0.015030167,-0.04292135,-0.07704259,0.0543772,-0.046420746,0.0029163295,0.0054943957,-0.14998886,0.021684464,-0.0394337,-0.07330348,-0.017441517,0.0010413819,0.06589918,-0.027685458,-0.017874619,-0.073548526,-0.025580594,0.053401235,-0.06711022,-0.05406109,-0.075516105,0.12069656,-0.00031287252,-0.011069351,-0.01696817,0.03342575,-0.03979849,0.034012906,-0.010369171,0.007834281,-0.037025068,0.038178463,0.08859854,-0.014004721,0.046918597,0.046897147,0.019801239,0.09728365,0.05548228,-0.04931177,0.022914711,-0.10864712,0.03784564,-2.2114715e-08,-0.100248925,-0.011747784,-0.05265339,-0.018204592,0.014401348,0.023583816,-0.045284707,0.027674986,0.01086661,0.0351579,-0.01320791,0.010314238,-0.008405645,0.01710112,-0.025970628,-0.014691611,0.0017057,0.01706882,-0.026120646,0.0402672,-0.013735336,-0.04690887,-0.02521148,0.0042831292,-0.009830455,0.006958657,-0.034759685,-0.06231942,-0.023105768,-0.024385171,0.028114237,-0.037901826,-0.09886324,0.010250621,-0.09102121,-0.037215896,0.035453863,0.020790935,0.04475186,0.044890687,-0.008315612,-0.0059701945,0.0564293,-0.0028213297,-0.02961729,0.095118634,0.064563386,0.057918433,0.01801703,-0.042435683,-0.017092282,0.05647811,-0.026386052,-0.036571987,0.005462021,-0.021532599,-0.03416021,0.11573649,-0.0156666,0.045029324,0.04176368,-0.047415514,-0.10802951,-0.084697686} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:45:03.068952+00 2026-01-29 18:36:00.515594+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 218 google ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB 1 t 221 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Outstanding Service – Highly Recommended!\n\nI had an excellent experience with ClickRent and would highly recommend them to anyone in need of a reliable and reasonably priced rental car. The entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient. The vehicle itself was in great condition, almost brand new, clean, and well-maintained.\n\nWhat truly stood out was the exceptional customer service (especially from the picking up driver). The staff was extremely friendly, professional, and helpful, making the whole experience smooth and stress-free.\n\nOverall, fantastic service, great cars, and a team that genuinely cares about customer satisfaction. I will definitely be using ClickRent again in the future! outstanding service – highly recommended! i had an excellent experience with clickrent and would highly recommend them to anyone in need of a reliable and reasonably priced rental car. the entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient. the vehicle itself was in great condition, almost brand new, clean, and well-maintained. what truly stood out was the exceptional customer service (especially from the picking up driver). the staff was extremely friendly, professional, and helpful, making the whole experience smooth and stress-free. overall, fantastic service, great cars, and a team that genuinely cares about customer satisfaction. i will definitely be using clickrent again in the future! 5 2025-03-31 01:27:48.340465+00 en v5.1 V1.01 {J1.01,A1.01} V+ I3 CR-N {} {"P1.01": "What truly stood out was the exceptional customer service (especially from the picking up driver). T", "V1.01": "I had an excellent experience with ClickRent and would highly recommend them to anyone in need of a "} {-0.1328012,-0.026061108,0.03573347,-0.031617913,-0.022177177,0.035421915,0.027715025,0.0013928972,-0.061840504,-0.044674028,0.043233436,0.12970398,-0.0003532699,0.051572602,0.013448968,0.038333505,0.052230712,-0.05893293,0.049737763,-0.012091907,-0.08023614,-0.07745563,0.019340552,-0.033647273,-0.03980204,-0.06653182,-0.08880067,0.0168665,0.016509226,-0.033627823,0.012338639,0.060953807,0.033940174,-0.09076513,0.028711895,-0.0076797735,-0.03138367,-0.050931837,-0.083721735,-0.017498286,0.022183057,-0.03087261,-0.05929857,0.01638406,-0.05573344,-0.053218596,0.0600011,0.05400228,0.023947842,-0.0029238227,-0.0062834616,-0.037852243,0.081732675,-0.081216425,-0.11353843,0.0011365517,0.028347988,0.031906586,0.011952578,-0.016933776,0.036348253,0.017237702,-0.08361156,-0.0018608626,0.06334169,-0.0030053933,-0.024758492,0.04034294,0.03792654,-0.06956121,-0.0588622,0.019272856,0.05322682,0.10538798,0.024006447,-0.00317053,-0.021114914,-0.0013096235,0.0055686585,-0.05590523,-0.03990538,-0.06804925,-0.013768492,-0.013893243,0.051547103,-0.0440803,0.033705134,0.028057788,-0.020276114,0.013069445,0.04095906,0.12840998,0.027948752,-0.038553987,0.009048258,0.017857324,-0.067805216,-0.03662573,-0.054253075,0.0056549017,0.0711392,0.07676144,-0.031919003,-0.08134948,-0.082132466,-0.050459124,-0.013039991,0.045095567,0.05373133,0.032680992,-0.04313905,-0.0055215335,0.041868906,-0.087775536,-0.087873176,-0.009203697,-0.09975599,0.041744635,0.09739886,-0.034812823,0.060019374,-0.0007763605,0.031000242,-0.04520215,0.054342218,-0.06137381,0.10142966,-7.4365547e-34,-0.008959491,0.09849496,-0.04298633,-0.0012770559,0.029807908,0.024168259,-0.04613607,0.016391305,-0.11011858,0.0137223415,-0.00429147,-0.0031465883,-0.03231684,-0.009051016,-0.010952433,0.0099464245,-0.07928881,0.032474194,-0.00019808419,-0.03348969,-0.011966627,0.067767315,-0.021730818,0.10232828,0.0412263,0.0071951016,-0.0130512165,0.06990812,0.10853471,0.041113608,-0.08279948,-0.030064246,-0.050517343,0.026457861,-0.022996895,0.022633592,-0.12356663,-0.07061892,-0.088839844,-0.048181083,0.02292519,-0.08218114,-0.04980423,0.05610631,-0.108381934,0.0048303385,0.05845715,-0.06461623,-0.031836946,0.028985627,-0.036823533,-0.08895018,-0.01655261,0.05634964,-0.07720426,0.08653046,0.0023162114,-0.00050866883,0.04049041,-0.03391671,0.09636029,-0.0051825317,0.01943367,-0.09877549,-0.03586726,-0.050983645,0.022296997,-0.028404174,0.0508049,0.07513606,0.0013787397,0.040872287,0.08127576,-0.038421378,0.08304527,-0.034164265,-0.08518421,-0.049013034,0.011455295,0.047942456,0.009038981,-0.058074076,0.016885642,-0.010849312,0.06873843,0.015085759,0.013649506,-0.025980974,-0.057240814,0.0645215,0.010482192,0.057431947,-0.0673691,0.028864218,0.039441686,-2.2272169e-33,-0.0062906677,0.00663621,0.05935542,0.015731134,-0.06150337,0.07832579,-0.10355027,-0.0057161725,-0.053945944,0.06186907,-0.039431646,0.014593502,0.0026588582,-0.014576382,-0.04767915,0.0025303985,0.05676701,-0.08562339,-0.056093276,-0.08400572,0.05627963,0.0005090607,-0.011199761,0.04300279,-0.03708096,-0.022466363,-0.021066599,0.059606455,0.07936803,0.0003095679,0.060551483,-0.002036663,-0.0019739866,-0.006123554,0.054437634,0.062599115,0.09750499,0.052187834,-0.032573946,0.0014740211,0.021837892,-0.05773037,0.024694575,0.010105121,0.025133181,-0.0923292,0.009518463,0.030309819,-0.053587403,0.04596438,0.017891547,0.013642673,-0.0067927907,-0.021221947,0.018710108,0.0011084382,0.00166686,-0.0026861015,0.006418891,0.019158248,-0.04577109,-0.044895533,-0.044690903,0.036313962,0.010259524,-0.120989926,0.110216066,0.04574793,-0.06184906,0.033530377,-0.030358657,0.044115875,0.055418864,-0.05451473,-0.010623988,-0.015304805,0.108248994,-0.02582897,-0.005746718,-0.09642389,0.038532156,0.0035765886,0.08837229,0.011811924,-0.03238994,0.02065782,0.06674359,-0.02594532,0.036489345,0.032917343,-0.004391473,0.07224564,-0.046115264,-0.0050401217,-0.031908594,-4.8224923e-08,0.0033364666,0.052737404,0.01396151,-0.041015714,0.03104563,-0.058834624,-0.026274795,0.15413705,-0.054419942,0.032812856,0.01337707,-0.060165588,-0.08423725,0.075156346,0.017172365,-0.03298085,0.04833475,0.0904272,-0.008935179,0.016474312,0.029319229,0.042604327,0.013327074,0.045324557,-0.027993875,0.010983089,0.0112726595,0.0080465935,0.049997795,-0.07273569,-0.054909583,0.05409348,-0.04548285,-0.040695935,-0.092894964,-0.021477776,-0.011615902,-0.027496433,0.0017490593,-0.0002928547,0.08720891,-0.00067468086,-0.06960574,0.006945888,-0.0056400364,-0.01334414,-0.03372505,-0.051335078,0.0022537815,-0.034779742,-0.054039348,-0.0071402066,-0.033562493,0.09119357,0.061058115,-0.046668086,-0.00067640527,-0.050486173,0.091867924,0.09849086,0.032502126,0.015519493,-0.022518741,0.06955425} 1 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:44:38.507174+00 2026-01-25 01:27:50.081068+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 256 google ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE 1 t 259 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Plane got delayed, they don’t care to manage shuttle bus for delayed flight’s\nAlso did not get a refund or partly refund, cancels the calls several times, I do not recommend them, no interest in customers needs plane got delayed, they don’t care to manage shuttle bus for delayed flight’s also did not get a refund or partly refund, cancels the calls several times, i do not recommend them, no interest in customers needs 1 2025-03-31 01:27:48.340671+00 en v5.1 J1.01 {} V- I2 CR-N {} {"J1.01": "Plane got delayed, they don’t care to manage shuttle bus for delayed flight’s", "V1.01": "Also did not get a refund or partly refund, cancels the calls several times, I do not recommend them"} {-0.018563155,-0.0637371,0.054043274,0.018814368,-0.032808162,0.020716881,0.085645325,-0.033752553,0.045923654,0.028303178,0.06505971,0.09299059,-0.044413187,-0.036003444,-0.005712321,-0.09758456,0.030199828,-0.10102304,-0.07832182,-0.007642239,-0.016557258,0.031360917,-0.07852209,0.0765303,0.007907937,-0.034439567,-0.038568918,0.025727758,-0.0067155985,0.0073426147,-0.0054952656,0.076603785,-0.018738458,0.024454545,-0.033695612,0.0025578025,-0.013140877,-0.026249086,-0.006280211,-0.041607633,0.028846344,0.023586046,-0.0077606807,0.033318993,0.017120402,-0.09177771,0.00661865,-0.081791006,0.079163894,0.0145563325,0.016044958,-0.09884582,-0.009604005,-0.073723555,0.0025745907,-0.030303838,-0.053208113,0.08384034,-0.0013740014,-0.020377463,-0.017182946,-0.07674681,-0.03058483,0.028088354,-0.052577745,0.0999862,-0.06951147,-0.04670546,0.060378447,-0.08991129,0.028678523,0.021305755,0.0108320275,0.07377741,-0.0008136914,0.080148675,0.072859,0.0059120827,-0.014363997,-0.021749232,-0.05412925,-0.11222913,-0.060134154,0.021888006,0.065924585,-0.046703763,0.035653953,-0.032418963,-0.037693344,0.037823867,0.09149789,0.028574098,0.09667883,-0.024298063,-0.0938491,0.0124933645,-0.019639377,-0.056716908,-0.013153791,0.018445253,0.007965052,0.12849239,0.0062372754,0.048879724,-0.05469582,-0.023612725,-0.005550894,0.0031656167,-0.03726313,0.012074632,-0.073949024,-0.029000385,0.062587224,0.008959691,-0.060722202,0.0042587155,-0.041189957,-0.05727462,0.057106245,-0.07915843,-0.06750819,0.12103641,0.07705761,-0.025973158,-0.07441865,-0.0010919466,-0.004484795,3.2590746e-33,-0.09702505,-0.0015679718,-0.027492663,-0.009765039,0.031296767,-0.028521607,-0.0468627,-0.0031331042,0.040303115,-0.005372094,-0.111845635,0.005733379,0.058876444,-0.117915794,0.0035669256,0.012385598,-0.036974594,0.03510883,-0.014087285,0.03270974,0.025052164,-0.03083233,0.018032564,0.008550693,0.061786767,-0.06850939,-0.021813614,-0.0021533596,0.14269993,0.026503036,-0.06228508,0.07662963,0.053280097,0.0069336975,0.0071709096,0.033027954,-0.028923584,-0.022323381,-0.04206024,-0.062122058,-0.04924449,0.005787341,-0.1472946,0.052652705,0.007830631,-0.03799123,-0.016433151,-0.011125986,0.019508176,0.085428454,-0.056385487,0.12966782,-0.0050014295,-0.009910093,0.010619112,-0.057629462,0.076429315,0.057146415,0.011154121,0.017745698,0.091122076,-0.010473143,-0.03205928,-0.058054432,0.003193454,0.029031577,0.05951421,0.034386575,-0.023160307,-0.02876459,0.03422297,0.053716913,0.07936509,0.016722424,0.009475595,-0.041757647,-0.1260922,-0.011643804,-0.01068909,0.0117989555,0.08189667,-0.06990913,0.035393093,-6.9577116e-05,0.06843564,0.00876847,0.06723061,0.030046502,0.0054665883,-0.005260784,-0.12564811,0.01838699,-0.01829091,0.10796986,0.0119445585,-3.365745e-33,-0.014739108,0.0011819372,-0.08889521,-0.020187017,-0.037190065,-0.006551209,-0.035627604,0.039249025,0.045910962,-0.012389013,-0.051188294,-0.034797557,0.04081882,0.03990538,0.02581562,-0.06240104,0.09830327,-0.061705466,-0.022163557,-0.011793075,0.025898278,0.03322869,-0.045071732,0.033851225,-0.08333908,0.044109426,-0.060373433,0.03600108,-0.040353294,-0.051420715,0.04107273,-0.01836101,-0.012994348,0.031262446,0.01865077,0.0049987454,0.004686027,0.09410806,0.003016891,-0.026228677,0.06556281,-0.042525243,0.047416832,-0.005747652,0.03925039,0.013923286,0.06915832,-0.07518083,-0.03127806,-0.008606958,-0.035936035,-0.08085703,0.029511757,0.0811231,0.032805156,-0.02827567,0.101242214,-0.050042402,0.08357395,-0.02328425,0.0076748887,-0.081810884,0.050242018,-0.051221166,0.00017205121,0.0018646817,0.12692378,-0.040113382,0.08918094,0.0017808153,0.043230798,-0.013172853,-0.010879704,0.058518317,-0.020266782,0.082102306,-0.03079171,0.03911574,-0.030459173,-0.023871755,0.073008165,-0.0036285056,-0.011095856,0.062174186,-0.015483951,0.039101493,0.060669877,-0.055044383,-0.032029703,0.0067645838,-0.016655335,-0.039068785,0.028537547,0.09520331,0.01908952,-3.3875722e-08,0.032073084,0.063194714,0.03520626,-0.006979599,0.026576927,-0.11039384,0.004333285,0.026887983,-0.07856286,-0.010939485,0.044036265,-0.064825915,-0.086584456,0.071659796,0.02594577,0.009801669,-0.006981132,0.03499259,0.009250261,-0.053228714,-0.07877167,0.029541371,0.03269284,-0.055557724,0.032111052,0.027499706,-0.008166396,0.0066143293,0.067911625,-0.09453912,-0.12204676,0.029205333,0.05773139,-0.014129807,-0.082513615,-0.06600025,0.03208467,-0.019834368,0.0011219168,-0.006712844,0.0031556862,-0.02687803,0.006951959,0.014772206,0.1430485,0.03139503,-0.057373576,0.019868609,-0.042403407,-0.031545825,-0.010374966,-0.019597443,0.0076628965,0.06750465,0.0050171455,-0.018974569,-0.010731518,-0.025777088,-0.0010314089,0.03008412,-0.046727028,-0.02168989,-0.05918277,0.085857995} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:50:25.906652+00 2026-01-25 01:27:50.684605+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 374 google Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB 1 t 377 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Es gut alles gut funktioniert. Auch der transfer. Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map. Kaution wurde schnell zurück überwiesen. es gut alles gut funktioniert. auch der transfer. treffpunkt am flughafen sollte jedoch besser beschrieben werden. evtl mit map. kaution wurde schnell zurück überwiesen. 4 2025-12-26 01:27:48.341525+00 de v5.1 J1.01 {} V+ I2 CR-N {} {"J1.01": "Es gut alles gut funktioniert. Auch der transfer.", "J1.02": "Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map."} {0.045594122,-0.009798125,-0.009592371,-0.052808862,0.023635091,0.010243358,0.08631804,0.056354333,-0.0072325924,-0.04354519,0.049634565,-0.05819406,0.065879114,-0.09318332,-0.059331283,-0.06499094,-0.09240726,0.051417615,-0.04558535,-0.01381627,-0.0853461,-0.03532985,0.018606363,-0.0038050956,0.00793709,-0.010514824,-0.0854244,-0.08802814,-0.0020795537,-0.09379979,-0.024373867,-0.02967891,-0.054788996,0.07241749,0.032899152,0.0990702,0.029013481,0.03521568,0.048135135,0.03367769,-0.080294214,-0.052588705,-0.000708419,-0.049926583,-0.017429782,0.02600615,0.039351106,0.011270672,-0.036079504,0.06788272,-0.050953172,-0.02215261,-0.024698842,0.04070631,0.017931245,0.043943573,0.038878776,-0.090366565,-0.05049559,0.0038385012,-0.0021405895,0.009453972,-0.0037294654,0.052744206,0.029389424,-0.024351891,-0.008626799,0.01664913,-0.046697535,0.04232755,-0.011688963,-0.050069775,-0.016251074,-0.010968753,0.108295694,0.012187293,-0.07999988,0.06059479,0.01953096,-0.024526073,0.05315927,-0.038931336,-0.016427366,-0.04324323,-0.045274768,-0.04269283,-0.04466283,0.020410351,0.022799196,0.013066581,-0.03973095,-0.013805271,-0.020293605,0.04291562,-0.10875423,-0.03570462,-0.08942827,-0.023291077,0.06372248,0.051777128,-0.0060644895,-0.019185627,0.10306947,0.045193646,-0.09355814,-0.08110622,0.02335743,-0.040102713,-0.02840186,-0.03363175,-0.04584774,-0.04445681,0.0041752676,-0.02167946,0.041832373,0.02723041,-0.01547908,-0.079567276,-0.035014067,-0.0039901775,-0.01020579,0.047337912,0.06490565,0.047562923,-0.01045879,0.05691649,0.04965204,1.14990854e-32,-0.026909983,0.05018485,0.04032448,0.040961765,-0.026672278,-0.08413911,-0.06760372,-0.043969475,-0.03195308,0.022599585,-0.058423568,0.003785964,-0.011891848,0.055043664,-0.03855684,-0.0068306355,0.0055253888,-0.019379977,0.026944967,-0.03700067,-0.02163403,-0.0018444805,-0.01969772,-0.014179981,0.05127461,-0.068635404,-0.0873354,0.024711946,0.0014841609,0.01197418,-0.02014444,-0.013358825,-0.0033477447,-0.021978153,-0.04087645,0.009662271,0.028972069,0.01931101,-0.0026045674,-0.051803015,0.03499963,-0.06618694,-0.025507871,-0.06989041,0.08441076,-0.00036760737,0.020996647,-4.09516e-05,0.02857668,0.090032995,-0.006033434,-0.04377144,-0.024210844,-0.09769745,0.012429462,0.011461023,-0.026658958,0.1079054,-0.025412915,0.053190935,-0.091794424,-0.03726933,0.016137976,-0.0616579,0.04786758,0.034011412,0.0151480865,-0.03928284,0.010809878,0.05582732,-0.17431647,0.013159344,0.018772712,0.082330085,0.04681829,-0.017192375,-0.10529906,0.036785524,0.0013097851,-0.019739095,-0.13381338,-0.035205275,-0.0016669251,-0.04311669,0.017701946,-0.0077439775,0.0149674155,-0.083739035,0.05353408,0.14141363,-0.04469206,0.07398571,-0.0105515765,0.012425999,0.08883872,-1.1772109e-32,0.03424157,0.017661236,-0.077087216,0.084206566,-0.05317746,0.030421074,-0.030024545,0.07835935,-8.85946e-05,0.019310977,-0.032819767,-0.032553636,0.081416756,-0.07849127,-0.030343348,-0.0359516,0.081485346,-0.03744952,0.0040696217,-0.04861313,-0.03775049,0.024618378,-0.040257048,0.04715298,-0.03400797,0.02898896,-0.012403599,0.09798724,-0.005237582,0.06998811,0.024362946,-0.017942308,0.07141295,0.021037972,-0.009030464,0.055155516,0.07727428,0.15990435,-0.026844738,0.07574826,-0.08019055,0.02879162,-0.0047892653,-0.044117644,0.040318638,0.036053486,-0.052371446,-0.098263636,-0.050551794,-0.029726863,0.10577968,0.08046625,0.021949597,-0.108322926,0.04288207,0.104140446,0.024767032,-0.0656475,0.0023054332,-0.081086636,-0.007510565,-0.013754829,0.04644695,-0.076664746,0.09629177,-0.08932163,-0.07413177,-0.028844386,0.034517467,0.05156768,0.06944345,-0.007332781,-0.0076228883,0.013343478,0.026483648,-0.04753108,0.017411243,0.0716923,-0.01771953,0.04708664,-0.019592417,0.049157742,0.06419808,0.02073835,0.0227134,0.0133961355,0.024455797,-0.013681969,0.0038965717,-0.056156978,0.03985207,0.038449336,-0.014256514,-0.07421901,-0.051024333,-4.550264e-08,0.003211629,-0.033666544,-0.075000964,0.004705932,-0.0046770405,0.057685763,0.038831353,0.022198413,-0.068622366,0.0052736416,-0.056286324,0.096673496,-0.024352213,0.045975383,-0.037836045,0.017418044,-0.030844932,0.05739323,-0.059009362,-0.0005590474,-0.009666621,-0.03252316,-0.05347043,0.0085166665,0.012031197,0.044645563,0.080414295,-0.03406683,0.06291834,-0.093074836,-0.004809906,0.035863534,0.03563535,0.07482166,-0.012734135,0.02565731,0.038068846,0.0083419345,-0.073754564,0.1682475,0.082163,0.039073415,-0.0042251963,-0.09287758,-0.09014223,0.008704834,-0.037052903,0.06546386,0.048722398,0.074215226,-0.02306718,-0.01924886,0.026763367,0.04032666,0.01879411,-0.02597034,-0.041588623,-0.03227852,0.00025110916,0.007146896,0.008434594,0.053574093,0.03511011,-0.048356976} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:29.12587+00 2026-01-25 01:27:51.163958+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 378 google Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB 1 t 381 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Guter Service, die vor Ort abgeschlossene Versicherung für 189€ lohnt sich. Das Auto wird bei Abgabe nicht mal angeschaut. Abholung & Rückgabe schnell & easy. Vorher checken ob man eine Versicherung bspw über Check 24 o.ä. schon abgeschlossen hat, wobei man es im Schadensfall leichter hat, wenn man die Versicherung dort abschließt. guter service, die vor ort abgeschlossene versicherung für 189€ lohnt sich. das auto wird bei abgabe nicht mal angeschaut. abholung & rückgabe schnell & easy. vorher checken ob man eine versicherung bspw über check 24 o.ä. schon abgeschlossen hat, wobei man es im schadensfall leichter hat, wenn man die versicherung dort abschließt. 5 2025-08-28 01:27:48.341534+00 de v5.1 A1.01 {P1.01} V+ I2 CR-N {} {"A1.01": "Guter Service, die vor Ort abgeschlossene Versicherung für 189€ lohnt sich. Das Auto wird bei Abgabe", "J1.02": "Abholung & Rückgabe schnell & easy. Vorher checken ob man eine Versicherung bspw über Check 24 o.ä. "} {-0.0045260782,0.04847113,-0.055324513,-0.015369346,-0.033305585,0.0105198715,-0.019253628,0.1272249,-0.016970474,-0.020297334,-0.016451873,-0.0021625229,0.0067124423,-0.0407814,-0.101556085,-0.07913913,0.03452889,-0.036158435,-0.03901578,-0.02671395,-0.06852547,-0.022260705,0.0055554407,0.108445026,0.03546873,-0.067425534,-0.014323005,-0.041389212,0.045714878,-0.03187437,0.0733299,-0.06250632,0.085821815,0.012234157,0.069335945,-0.020545065,0.040556144,0.023665437,-0.058136817,0.048431754,-0.0023148137,-0.032771446,-0.08576758,-0.011374388,0.010087597,-0.025100678,-0.028166818,0.05223179,-0.033193894,0.09433402,0.040342346,-0.012251935,0.031576324,-0.043275863,-0.039533067,-0.09871883,-0.037226804,0.0926689,-0.027706616,0.07679559,0.02322197,-0.07725567,-0.0507049,0.0010623491,-0.05105264,0.02488016,0.003749817,-0.051873673,-0.0018529207,0.04556057,0.00702779,-0.05619474,0.01517295,0.008250084,-0.07431602,-0.032145202,0.0629997,-0.052309185,0.0030357596,-0.10630721,0.03376137,-0.1191973,-0.032283243,0.083960116,-0.036180034,-0.0520369,0.04373754,-0.009995097,0.10164703,-0.039615232,0.007575058,-0.0036558392,-0.10593778,-0.055602584,-0.086159386,0.026267067,-0.0045175995,-0.017200496,0.047210183,0.009013579,0.02773765,0.010220033,0.048719946,-0.032702707,-0.024685338,-0.0039984323,0.0024400707,0.10079594,0.050243538,0.015698865,-0.0057375873,0.01735919,0.064734936,-0.0609342,0.046410378,0.047205467,0.002169309,-0.08725065,0.015426774,0.079991184,0.02491744,0.04933255,0.0030254177,-0.03143707,0.065042116,-0.08736516,0.12153754,1.6928951e-32,-0.07920511,-0.036417287,-0.0075341016,-0.027381709,-0.032750238,0.01752797,-0.018237878,0.094391085,-0.034051236,0.10994257,0.006213542,-0.025055168,-0.016218802,-0.009829914,0.097114705,-0.0023826356,0.065926224,-0.054899924,-0.011778575,-0.038304713,-0.019142672,-0.07061751,-0.019433502,-0.007535293,0.039429344,-0.033868287,0.069124386,0.039168015,0.07001922,-0.0033163587,0.052649256,0.002797046,-0.061537128,-0.008425012,-0.03418672,0.022668852,-0.061595,0.04828254,0.01042249,-0.04076307,0.06323982,0.05545638,-0.058681022,-0.06617528,0.037844002,-0.013846724,0.020225236,0.029376656,0.101601504,0.03235861,-0.005951208,0.040857937,-0.010760763,-0.017553732,0.06057057,0.024231877,-0.04814521,-0.022400064,0.028572736,-0.050434608,0.028042534,-0.078899786,-0.0046723005,-0.046044983,-0.0017116899,-0.044069752,0.017925613,-0.044944324,-0.035103668,0.00012840777,-0.09488907,0.0025304805,0.033286944,0.016604004,-0.017182346,0.0782161,0.025870552,0.047376834,-0.03171983,-0.018221734,-0.04923154,-0.01989076,0.10578447,-0.017375711,0.08968753,0.06385711,0.024995606,-0.008727027,0.0204811,0.09398516,0.014501926,-0.0492996,-0.16318862,0.09907882,0.034937833,-1.5769302e-32,-0.0033984052,0.053760465,-0.009996626,-0.0125567345,0.0073498036,-0.0052770255,-0.060830433,0.07820698,-0.03670431,0.040602155,-0.022858772,0.0012290181,0.020178782,0.031662345,-0.027887354,0.03318791,0.00072976534,-0.029459123,0.03780123,-0.0025181524,-0.09113363,0.11137394,0.02445816,-0.020307418,-0.016638832,0.0071697705,0.04035207,0.0432411,-0.06844226,0.008395338,0.016039347,-0.031608596,0.015866755,0.03409233,-0.052978016,-0.0075472365,0.05102014,0.092735864,-0.034195226,0.024850836,0.054710183,0.030379187,-0.08844018,-0.099152125,0.03668716,-0.10268692,-0.03698294,-0.11078998,-0.06226658,-0.06325688,0.0441667,-0.11321181,0.093470044,0.036010448,0.051042683,0.049125586,-0.023376275,-0.07670095,-0.058317114,-0.03499168,0.08017457,0.017887544,-0.0021736692,-0.03476116,0.059543006,0.031855814,-0.08216354,-0.053355936,0.027673986,0.023703963,-0.05496919,-0.019229539,0.011450971,0.07421836,-0.008073861,0.029767502,-0.039740417,-0.007714501,-0.06415331,-0.016286539,-0.047971074,0.0033419407,0.027948996,-0.03566825,-0.071642384,-0.04693508,-0.018124707,0.010839707,-0.019746866,0.034905754,0.0034467187,0.0636781,0.11166183,-0.023375448,-0.00044077012,-6.140445e-08,-0.035093,-0.002084005,-0.050173596,0.06379013,0.032427225,-0.07254841,-0.030068133,-0.013869961,-0.09690282,0.14817289,-0.059358142,-0.045489065,-0.007828926,0.01753218,-0.047639787,-0.013615143,0.04412147,0.010364452,-0.035795845,-0.007218164,0.065948516,0.010775553,-0.0029862286,-0.0018224169,0.03668751,0.0100587215,-0.03983774,0.08119883,0.027189435,-0.03953969,-0.033041723,0.09893582,0.040942274,-0.07238682,-0.020160053,0.011955076,-0.027834265,-0.012821659,-0.058342837,0.0762809,0.1360384,-0.0031130053,-0.040916704,-0.05057019,0.013711736,-0.05197448,-0.09967191,0.013292977,0.048610505,-0.0029620263,-0.013250184,-0.07972856,0.048853848,0.02533125,0.065374315,-0.066561155,0.022619864,-0.0036157218,-0.017477255,0.08182576,-0.041522294,-0.02867648,-0.0018651469,-0.05993176} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:36:43.824224+00 2026-01-25 01:27:51.173573+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 396 google Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB 1 t 399 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hat alles super geklappt, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten wo genau sie einen abholen vom Flughafen.. aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :) hat alles super geklappt, das abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten wo genau sie einen abholen vom flughafen.. aber ansonsten preis völlig fair, rückgabe lief auch unkompliziert :) 5 2025-09-27 01:27:48.341676+00 de v5.1 J1.02 {} V± I2 CR-N {} {"J1.02": "Hat alles super geklappt, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht", "P1.01": "aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :)"} {-0.011857711,0.034913383,-0.07038091,0.04563527,-0.07842422,0.014383843,0.04734698,0.08912569,-0.022271298,-0.017791456,0.015079419,-0.07100182,0.039901078,-0.066010244,-0.05038977,-0.016896598,-0.11532401,0.007855302,-0.113925904,-0.061368484,-0.040117458,-0.040464465,0.06729767,0.08093549,-0.0064765424,-0.049282655,0.009471471,-0.002536387,0.045555398,-0.03115455,0.09788843,-0.03835821,0.028465142,-0.021643016,0.045637604,-0.004329679,0.009478863,0.0003551912,0.04586289,0.04066835,-0.090000115,0.015126662,0.005678725,-0.06449732,0.08362506,0.012617257,-0.0073834625,0.04617669,-0.044800088,0.08363314,0.02077987,-0.020776844,0.0021821947,0.017301686,0.025276925,-0.074963376,-0.031949904,-0.013934888,-0.05845654,-0.00055424107,-0.0041843983,-0.041727506,-0.024763262,0.045712527,-0.08055181,0.024250407,0.004603013,-0.1295845,-0.034586232,0.07474135,0.012948449,-0.01943964,0.033687156,-0.021470215,0.030794732,0.079433486,-0.05991592,0.03163709,0.00506257,-0.0644599,0.09936328,0.015593357,0.066348106,0.012218139,-0.0011401244,-0.08777803,0.07103208,-0.0028000243,0.041213434,-0.070644945,-0.0126227075,-0.0016194549,-0.087812945,0.0024506594,-0.10477781,-0.06422038,0.043948412,-0.013984995,-0.017503321,0.07686107,-0.062326673,-0.063786894,0.03121891,0.0998294,0.005897004,0.056040753,-0.03330514,0.008126018,0.06835657,0.021893369,-0.035634074,-0.076524034,0.013578226,-0.014671538,0.039859455,0.019513663,-0.057034675,-0.14014512,-0.038966924,0.021926489,-0.031250637,0.004797428,-0.0027537658,0.07750463,-0.021531641,-0.06798117,0.051311363,1.8741544e-32,-0.021177873,-0.053808857,-0.044435512,-0.0434306,-0.029349074,-0.01668076,-0.009885204,-0.028693948,0.023416454,0.017289005,0.005037351,-0.0451992,-0.014746436,0.016991299,0.037094824,-0.0673642,0.0113134915,-0.10046327,0.022568963,0.014241951,-0.009333923,-0.06750942,-0.021992547,0.014393802,0.024315068,0.0023165876,0.023388715,0.035391208,-0.042893037,0.045795992,0.02983201,-0.04186185,-0.030057317,-0.00460176,-0.10846386,0.011431631,0.0075666737,0.006115775,-0.029209958,0.0019926392,-0.0009644817,-0.03911726,-0.008794643,-0.056251355,0.061564445,-0.00841266,-0.007928965,0.026675856,0.027321436,-0.002184602,-0.05981144,0.10501175,-0.031267516,-0.048560847,0.043352626,0.03836007,-0.037924543,-0.027647356,-0.04076129,0.056094598,-0.039003704,0.0069579296,-0.042984493,-0.054477714,-0.10008401,-0.05475536,0.13097098,-0.0027888974,0.012146496,-0.03344589,-0.027598508,-0.01979032,-0.0139055755,0.048387237,-0.049196873,0.061867494,0.08354441,0.049148675,-0.010867747,-0.0626374,-0.047320824,-0.014564402,0.06415406,-0.066141546,-0.05287607,-0.075147174,0.033916242,-0.08028852,-0.035188787,-0.0011508429,-0.021764772,0.08538581,0.056150932,0.05550137,-0.00053878885,-1.8176666e-32,-0.017685572,0.08218456,-0.0774574,0.03550414,-0.03708647,0.09658787,-0.0115473205,-0.032741673,0.02017171,0.06447647,-0.032182965,0.011461527,0.09133113,-0.0703289,0.0020104384,0.0009594951,0.03978438,0.035139587,0.045155287,0.008298909,-0.016445734,0.0013082599,-0.034612764,-0.11073044,-0.0149556,0.035532888,0.061646715,-0.0015300257,-0.07939106,0.086241566,-0.051009882,0.04043009,-0.021619009,-0.0150027005,0.0005172981,0.025937006,0.10079408,0.057672676,-0.08424967,-0.042284966,-0.035306882,0.10687474,-0.0558866,-0.019678148,0.057808865,0.05802338,-0.07920273,-0.03126627,-0.031238435,-0.031676598,0.004140622,0.0443936,0.083761685,0.0479105,-0.065342866,0.06732105,-0.05611907,-0.09923638,-0.054698497,0.040192336,0.03929132,0.027455162,0.07006561,-0.018408718,0.06977057,-0.06321934,-0.13496394,-0.043449845,0.008681632,0.0535082,0.079712845,0.0075103417,0.017379178,0.06831803,0.017565753,0.06539675,0.005279371,0.044099435,-0.06813973,0.077575825,0.046155546,0.10645618,0.051229615,-0.028756589,-0.058584634,-0.062022377,0.03407237,-0.011902691,-0.0022108012,-0.012164482,0.059105676,0.027754236,0.053765953,-0.08552309,0.029484812,-6.2792324e-08,-0.014002465,-0.033180106,-0.08593558,0.0025313634,0.09560224,-0.08437776,-0.056546055,-0.019414762,-0.058826625,0.026646217,-0.04805926,0.017038103,-0.07340173,0.0425521,-0.05943226,0.045163415,-0.015477891,0.04287337,-0.026557947,0.056709528,0.0060681924,-0.06398364,-0.033384863,-0.07312347,0.0075643505,0.03553339,-0.019816348,0.010407012,-0.014412919,0.034109056,-0.030160287,0.055784818,0.00076819066,-0.010163087,-0.05211592,0.033135537,0.033749837,0.076954834,-0.14465278,0.11104217,0.04536371,-0.008791535,0.12900819,-0.04637526,-0.014082845,-0.03815247,-0.021895278,0.009974188,0.030627877,0.055089712,0.003488988,-0.06953525,0.038730778,-0.011274382,0.011334833,0.008045323,0.029357085,-0.017411888,-0.016798183,0.039995406,-0.057072926,0.026679792,0.07797433,-0.02047727} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:39.911157+00 2026-01-25 01:27:51.250311+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 588 google ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB 1 t 591 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nos atendieron muy amablemente y con instrucciones claras. Económico pero el servicio muy bueno. Volvería a repetir, nos transmitió mucha confianza. nos atendieron muy amablemente y con instrucciones claras. económico pero el servicio muy bueno. volvería a repetir, nos transmitió mucha confianza. 5 2025-01-25 01:27:48.342713+00 es v5.1 A1.01 {P1.01,A1.03} V+ I2 CR-N {} {"A1.01": "Nos atendieron muy amablemente y con instrucciones claras. Económico pero el servicio muy bueno.", "R1.01": "Volvería a repetir, nos transmitió mucha confianza."} {-0.00954981,0.02198635,0.0018752078,-0.0025134673,-0.102375515,-0.013173046,0.06151348,0.05933592,-0.03451992,0.010354325,0.0671259,-0.008430019,0.034582548,0.0066400357,-0.038287032,0.014752728,0.020660905,0.04921527,-0.03120387,0.06707183,0.07926795,-0.06678922,-0.1024602,0.13786842,-0.007553853,0.019040843,0.019855857,-0.04460166,-0.045455545,-0.04285421,-0.03588444,0.046663508,0.12175121,-0.038076777,0.06061285,0.006345779,0.075068176,-0.06878787,0.0180085,0.040101916,-0.08823773,-0.025183177,-0.024587885,-0.027438344,-0.06639695,-0.07232355,0.10866648,0.061711196,0.06618664,-0.040589347,-0.12112407,-0.009972036,-0.010462114,6.65583e-05,-0.04723457,0.01724411,0.006614528,-0.029714514,-0.011351963,0.018064791,-0.042078245,0.011952976,0.051576152,0.045034293,0.06504134,0.02058054,-0.042260904,0.002101914,-0.104990914,-0.018197956,0.11361357,-0.04699037,0.037877098,0.029721761,-0.040248837,5.178607e-05,0.038338788,0.039744522,0.04290092,-0.048612036,-0.0004785977,-0.053572543,-0.072166994,0.0008711355,-0.007247368,0.0011943826,-0.03414638,-0.056605473,0.04786742,0.00043492802,0.006796852,0.03354696,-0.05925229,-0.054394122,0.000508072,0.0055825524,-0.06624131,-0.0800113,0.011391773,0.016271891,0.05169336,0.020286273,0.09203601,0.018824527,-0.04918279,-0.013494668,0.0014152108,-0.06560736,0.01172,0.08033425,-0.014923258,-0.06408285,-0.04408668,0.0060155056,-0.061442878,0.01942962,0.02749935,-0.019427076,-0.034061957,-0.067673795,0.066234045,-0.033835582,-0.05898841,-0.06539409,-0.022197831,-0.02554914,0.055857744,1.1107241e-32,-0.09663709,-0.06945444,-0.024734082,0.066945255,-0.041834936,0.040435415,-0.07447654,0.01705984,0.006354675,-0.07573313,-0.07823803,0.060022797,0.016657604,0.04625591,0.07436908,0.028663548,0.043687705,0.019016508,0.021581335,0.03817696,0.0021826753,-0.011549553,-0.0031568818,-0.008088251,-0.006762528,0.016689053,-0.014576017,-0.086070634,-0.042972963,0.03348977,0.05761954,0.04320828,0.0349553,-0.033166517,-0.045074027,-0.06432448,0.0094411755,0.022914782,0.0022383353,-0.005632443,-0.05422187,0.051880416,0.012283385,0.030940779,0.052331913,0.021564,0.111130595,0.029650798,0.12872608,0.018303975,-0.0018717512,-0.09331782,-0.09062877,-0.039621934,0.032929335,0.011282551,-0.04093916,0.08873887,-0.012294349,-0.03804344,-0.0005980639,-0.0014433173,0.059102237,-0.06737021,-0.008749773,0.04785551,-0.029270906,0.089001395,0.1353817,0.060101956,-0.065674014,-0.047297314,-0.084461555,0.09209626,-0.05251622,-0.011741288,0.024683636,-0.0018963709,0.022013132,-0.019694459,-0.05573318,0.008303092,0.08983074,0.04467196,0.09858119,0.11262286,0.050992668,0.07929349,0.030159691,0.05994975,0.009793137,0.08320365,0.03444083,-0.0057340707,-0.01066257,-1.0892377e-32,-0.003846859,-0.034527525,0.03813011,0.03493146,-0.042968266,-0.022771897,-0.11663619,-0.004071669,0.01836678,-0.0009542811,-0.11898664,-0.105655484,0.09920965,-0.04368845,-0.055439256,0.07442082,0.012631269,-0.07067461,-0.098908395,-0.069824435,-0.02614221,0.0071618217,0.024445344,-0.049441814,-0.07912691,-0.04184298,-0.003807591,-0.025559928,-0.01662446,-0.04216932,-0.019302882,0.00067551987,-0.079569556,-0.013988615,-0.021655075,0.090343505,0.052861586,0.0014462038,0.04212203,0.026589595,-0.0088689225,0.018510059,0.027485235,0.0022925178,-0.03810885,-0.03943443,-0.08941563,-0.17874056,0.016917529,-0.043784518,0.06080531,-0.032347042,-0.02217325,-0.01670388,-0.024969008,-0.060300704,-0.06165991,-0.012623524,-0.06211385,-0.0532615,0.017074034,-0.01139015,-0.06594019,0.044496745,0.038412444,0.033017542,-0.060579907,-0.02202385,0.035786953,0.0133708585,0.07874942,-0.0655872,-0.03382477,0.029838612,-0.042744257,0.05194634,-0.0735575,-0.028938053,0.02437212,0.06307966,0.025946215,-0.04804969,0.010735733,-0.05581845,-0.044915482,-0.010454422,0.03814547,-0.01133414,-0.0142986635,0.040383376,-0.040590756,0.025215063,-0.0015088262,-0.07934024,0.0041353717,-4.3971532e-08,0.001518599,-0.06549431,0.044256646,0.06098194,0.006918313,-0.04578275,-0.0334588,0.03995749,0.015143453,0.08671248,-0.061118133,-0.045032635,-0.018549176,0.058957543,-0.012971516,0.056498356,0.084271684,0.033503085,-0.008172727,0.008574443,0.06652172,-0.02722235,-0.06786187,0.054988615,0.023635669,0.030737765,-0.0146792075,0.034732513,-0.059538465,0.037946153,-0.019442245,-0.045544196,0.011884676,-0.059788287,-0.043914348,0.023200765,-0.025326373,-0.04425032,-0.03068168,-0.064853825,0.09761393,0.030567396,-0.0017286164,0.015643526,0.08614565,-0.019469269,-0.018761594,0.023321921,-0.0012449528,0.002397875,0.00849384,-0.03209219,0.09973916,0.022315219,-0.030844841,-0.06628551,0.07430157,0.044495758,0.0112392865,0.037410676,0.049840104,0.086525105,0.07794479,-0.07367917} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:21.901997+00 2026-01-25 01:27:51.970737+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1221 google review_41 1 t 1224 Soho Club unknown The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. Huge recomendations! the best place in vilnius for sure. safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. huge recomendations! 5 2021-01-30 18:34:31.336452+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"P1.01": "The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosp"} {0.099529624,-0.024862632,-0.00847416,0.0663284,-0.034223422,0.07063266,-0.007408621,-0.040524732,-0.056025326,0.015644036,0.01675424,0.050506465,-0.024089368,0.03388464,0.04606612,0.022465162,0.10248015,-0.0057054423,0.00867813,-0.07840431,-0.012603333,-0.036357313,0.054186303,0.034466714,-0.037620686,-0.032875787,-0.031153621,0.051853307,0.039697573,-0.02237011,-0.039264634,0.06686103,-0.017268814,0.046069458,-0.022328649,0.016805097,-0.03647588,-0.12210652,0.014620333,0.018913003,-0.005470272,0.058267973,-0.047429062,-0.023276221,-0.0674542,0.011841624,-0.059508163,-0.040869996,0.028984752,0.11773136,0.044855274,-0.0046140365,0.026971148,-0.05277086,-0.058070485,0.012255984,-0.05791751,-0.010461931,-0.014756041,-0.01461128,0.077370375,-0.02297294,-0.10961228,-0.019128064,0.011024033,-0.043518063,-0.036687512,0.06807468,0.075513676,-0.11562922,0.019964688,-0.010073014,-0.015679497,-0.0029459696,-0.08094216,-0.03839575,-0.046201527,0.036986604,-0.051953234,0.038328897,0.12310689,0.05126641,-0.014080212,0.03509764,-0.036593825,-0.048544444,-0.048935022,-0.01605275,0.027457807,0.030830147,-0.019294202,0.0548515,-0.026716491,-0.029709857,-0.025216572,0.04180975,-0.0726407,0.02354339,0.02555478,-0.027712189,0.0016665624,0.060798213,-0.027715204,0.007382575,-0.05061784,-0.07097983,-0.015430106,-0.028422877,-0.012194516,0.041342944,0.020546988,-0.028895393,0.063492246,-0.021464843,-0.018176476,0.04725561,0.076457255,0.008791381,0.043783396,0.05260183,0.0046249665,0.017388653,0.026937922,-0.014417692,0.016844846,0.011443941,-0.05414755,-1.772484e-33,0.02209424,0.06853872,-0.024026137,0.054931358,-0.03473571,0.0087304255,-0.06972888,-0.07807988,-0.06818481,-0.023805192,0.01965659,-0.03632718,-0.03804092,-0.052537765,0.03855471,0.08233379,0.07874784,-0.029336158,-0.10071473,-0.012356865,-0.03893765,-0.011616032,0.00953705,0.03756754,-0.030464415,0.010865137,0.09642833,0.008364785,0.006083706,-0.0058855694,-0.003205814,0.012774109,-0.064818196,0.043576237,0.027277693,0.0474524,-0.09527953,0.0077185077,0.00051712035,0.006263094,0.05091138,-0.0054834266,-0.08387656,0.125284,0.047085278,0.03864429,-0.020203326,-0.043859333,0.06347742,-0.074363515,-0.07899401,0.040061064,-0.05427169,0.07540823,-0.031350397,-0.006304491,0.067902096,0.0509823,0.039647155,-0.01932589,-0.031345617,-0.06411257,-0.029819308,-0.035361253,0.03181624,-0.043001987,-0.03479144,-0.0156332,0.014221182,8.1314116e-05,0.050327726,-0.0050721313,0.10471183,0.05413317,-0.032792207,-0.007826015,-0.025876582,0.06777912,0.044457983,0.065562464,0.021419855,0.055942465,-0.041717656,0.056828566,-0.050056867,-0.09893927,0.05452933,-0.07949517,-0.013829341,-0.024641566,-0.029430687,0.027604187,0.10783825,-0.0029188925,-0.02052609,-4.5372415e-35,0.072983,-0.054795798,0.008620376,0.004756917,-0.01706926,0.052229464,-0.082027294,-0.0047144406,0.02454406,0.05674233,-0.12653337,0.005893295,0.06498711,0.1150504,-0.009436181,0.07278289,0.12094897,-0.0452486,-0.023439283,-0.011914308,-0.06582115,0.08953876,-0.011294353,0.020257613,-0.047993753,0.02752585,-0.07720265,-0.052990224,-0.09517661,0.07167375,-0.07399292,-0.0266352,0.048588496,0.025712207,0.010434861,0.054848596,0.09080881,-0.052814074,-0.07782054,0.07315391,0.02825901,-0.046592224,0.032080296,-0.010155721,0.056349214,-0.08724132,-0.009963139,-0.025025852,-0.053757764,-0.076264545,0.088100545,0.049774688,-0.12101178,-0.0063541685,0.0051513948,-0.04738692,-0.033553556,-0.002335822,0.008811782,-0.048148155,-0.017761469,0.0027227919,-0.05829623,0.081705324,-0.041309465,0.010140474,0.060967706,-0.014154504,-0.042517256,-0.014585606,-0.10723199,-0.0011136731,0.045063116,0.11135255,0.0372603,-0.04715052,0.09111627,0.025912859,0.06586177,-0.016067157,-0.0059781056,-0.0011097,-0.044485405,-0.023318652,0.12308989,-0.0150166275,-0.026178662,-0.071046345,-0.025266428,-0.031177398,-0.0012078051,0.06093122,-0.08123983,0.022954823,0.00470755,-2.173047e-08,0.092190325,-0.004980006,-0.038349133,0.07565284,-0.05447427,-0.16850418,0.017806081,0.049574316,0.03471617,0.05351635,-0.092430875,-0.0037890123,-0.032230254,0.01037931,0.0013186168,0.0066689667,0.022667326,0.050668076,-0.034943424,0.08416463,-0.019269148,0.07374942,0.0026006165,-4.0483632e-05,-0.10225203,-0.014558784,-0.0054990104,-0.055316303,0.032514054,-0.04920616,-0.036256287,0.013101814,0.023882456,-0.039806843,-0.019385502,0.02627904,0.14240183,-0.037813455,-0.0054641063,0.018937798,-0.033442795,-0.09488389,-0.0219705,0.00604316,-0.0510274,-0.0074533415,0.109011434,-0.08198119,0.0068220203,0.021112382,-0.093878955,0.027431797,-0.0017468986,0.016247317,-0.020009603,-0.059960257,-0.02314135,-0.003811577,0.02179471,0.015017944,0.048552323,-0.0019937751,-0.032859877,0.010992013} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:45:21.679479+00 2026-01-29 18:36:00.520129+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1948 google ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB 1 t 1951 Go Karts Mar Menor unknown es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy encantado i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy encantado i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros 5 2016-02-02 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I2 CR-B {} {"O1.02": "es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy en", "V1.01": "i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros"} {-0.030607611,0.06798076,-0.043951266,-0.03467434,-0.06258499,-0.036566664,-0.010155596,0.08404226,0.026051344,0.014341328,0.049249746,-0.056920066,0.023827981,0.05897292,0.027408717,-0.03575191,-0.0025550167,0.04766078,-0.029235845,-0.026392514,0.085592456,-0.09091172,-0.06269646,0.010876788,-0.028349632,-0.03332979,0.055103473,-0.0010621928,-0.052319784,-0.13129039,-0.08949783,0.01430787,0.06458346,-0.018264044,-0.0061319363,-0.03925855,0.038330387,-0.050418757,-0.05796282,-0.009784112,-0.07621469,-0.0011262486,-0.028670913,-0.035175614,0.05797256,0.023230828,0.0018390055,0.06674383,0.01643567,-0.056402624,-0.021213263,-0.037873838,-0.008132859,-0.022919688,-0.0074507818,-0.046353854,-0.045021985,0.050505064,0.16112001,0.06845134,0.07258206,0.044941522,-0.098848365,0.04965436,0.038837206,-0.055087693,0.0022774602,-0.033499576,-0.08221966,-0.017722165,0.13837588,-0.11611697,0.07791852,-0.05375891,0.013412537,-0.015997415,0.059226025,-0.033344887,-0.04747562,-0.01575979,0.053963944,-0.05896796,-0.01961477,-0.06436357,0.036677755,-0.013879647,-0.03883386,0.0109646795,0.008707573,-0.025982022,-0.016307447,0.034750678,-0.037369657,-0.05535743,0.013911244,-0.017695837,-0.0013445432,-0.027504137,0.02579659,0.05422064,0.11441231,0.042441122,0.09765031,-0.019614527,-0.015500791,0.08088628,0.067093626,0.028012387,0.013426813,-0.020267492,-0.051118057,-0.004172968,-0.07915344,-0.0656566,-0.027904047,-0.026627274,0.013594645,-0.017335644,-0.04100383,-0.027620785,0.04049924,-0.066417016,-0.07325496,-0.0044225375,-0.013292252,-0.012114083,0.0610279,1.2032414e-32,-0.09362254,0.024563977,-0.065002486,-0.05030775,0.03452496,-0.010870214,-0.026378335,-0.018904822,-0.06444957,-0.0007858626,-0.063079365,0.0628482,-0.05723717,0.04347394,0.06981701,-0.043713592,0.059141275,-0.06941344,0.06647828,0.048821732,0.0047112154,-0.102222,0.04979878,0.07090032,0.014760161,0.103739165,0.058743097,-0.038953044,-0.10556529,0.035900626,-0.012007629,0.044398606,0.034790013,-0.027983883,-0.060490895,-0.026499458,0.04873555,-0.0020023028,0.0026394771,-0.0708204,0.014426642,0.01407883,-0.096066356,0.057370767,-0.025200536,0.02946381,-0.0007846544,0.040626485,0.11586971,0.016269848,-0.07201412,-0.04940913,-0.13194802,-0.013623785,0.01120215,0.050804086,-0.025284598,0.039025936,0.06240716,-0.0526007,0.030801997,0.07145991,0.012845105,0.030114,-0.017116431,0.044716056,0.040412303,-0.017858125,0.022719089,-0.039499372,-0.120513,-0.016020432,0.06224824,-0.032644078,0.014066218,0.038752474,-0.014976518,-0.025275916,-0.022956355,0.06711199,-0.09919783,-0.015889464,0.053805046,0.028766045,0.092371166,0.041583117,0.05670255,0.05529688,-0.0025425279,0.10518952,-0.010851879,0.053136524,0.034778338,-0.05869502,0.09170129,-1.2552603e-32,0.025818415,0.025754083,0.04393539,0.0036394664,-0.037904236,-0.024469804,-0.03365394,0.024321593,-0.010824717,-0.013753629,0.0063799615,-0.057367645,0.060747046,-0.06725845,0.0072188773,0.035359494,0.035254695,-0.021915361,-0.03081102,-0.05001666,-0.040856656,0.064956345,0.019535748,0.011279927,-0.057777178,-0.0018112411,-0.008658504,0.02795927,-0.07839661,0.028197836,-0.015321237,-0.11130205,0.06653946,0.039763007,-0.08241689,0.03494782,0.15017898,0.025904126,-0.019786805,0.023556065,0.041335948,0.09782095,0.009268418,-0.024381636,-0.05481052,0.008981829,0.006380988,-0.09234592,0.008583576,-0.071695566,0.15048324,-0.010564846,-0.073976435,-0.027952552,0.00023467414,-0.0064212936,-0.017617406,0.018221555,-0.07001458,-0.04456775,0.033658467,-0.0780933,-0.0703868,-0.020776337,0.07962808,-0.00790621,0.010028436,0.03852242,0.04810112,0.024107428,0.051075213,0.023871142,0.00092709955,0.008554055,-0.060816374,-0.036065057,-0.08228396,0.045290276,0.064615816,-0.010181925,0.0451647,-0.06578251,-0.0041010347,-0.008097388,0.07777578,-0.05172512,-0.05930632,0.029576067,0.082361944,-0.024614178,-0.027377132,0.04085224,-0.013335738,-0.039449103,0.020928005,-4.585636e-08,0.045178283,-0.037999317,-0.06018163,-0.031044163,0.03382539,-0.080600336,-0.0014090729,-0.017971443,-0.07484265,0.014385552,0.0058336495,0.0015037078,-0.01987072,0.0042081913,-0.0143076945,0.06556024,0.05820642,0.11431298,0.038681693,0.004633263,0.03448384,-0.011803468,-0.0041337186,-0.0024832198,-0.0068610436,0.0058220983,-0.09153594,0.027648797,0.029455738,-0.09754938,-0.030153511,-0.01228906,0.0024148717,-0.07096822,0.026521938,-0.05186279,-0.10578453,0.0065098195,-0.038401145,-0.020668367,0.009945662,-0.07238578,-0.077848874,0.017448382,-0.079150274,-0.018879479,0.018873852,-0.027385496,-0.0067126565,0.034211475,-0.063917935,-0.03126903,0.025652327,-0.003167801,0.043407615,-0.017084556,0.08016509,0.0029955518,-0.0141145475,0.031720508,0.058230463,0.02010903,-0.033931285,-0.096300565} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.271581+00 2026-01-30 02:01:11.329464+00 22c747a6-b913-4ae4-82bc-14b4195008b6 380 google ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE 1 t 383 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El coche sin ningún problema todo muy bien el señor trato de ayudarme tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido en la renta y seguro una señora se introdujo en la conversación diciendo que no que era imposible que la política de la compañía no permitía el coche sin ningún problema todo muy bien el señor trato de ayudarme tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido en la renta y seguro una señora se introdujo en la conversación diciendo que no que era imposible que la política de la compañía no permitía 3 2025-06-29 01:27:48.341542+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"J1.02": "tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido ", "O1.01": "El coche sin ningún problema todo muy bien el señor trato de ayudarme"} {0.040251955,0.03547305,-0.031629365,-0.06388559,-0.023261555,-0.027725147,0.035758212,-0.027046401,-0.06927352,0.067722306,0.1297364,0.003288785,-0.013242484,0.0453185,0.08082145,0.0015857599,0.00048046085,0.0063341176,-0.0011298314,-0.04228202,0.046388894,-0.06414751,-0.048669588,-2.4855139e-05,-0.08724945,-0.021128282,-0.00019422459,0.018351646,-0.00907057,-0.034915686,0.014416009,0.06396465,0.076290675,0.004780936,-0.012489346,-0.02694251,0.04840272,-0.09575477,0.029950889,0.073951945,-0.015993467,0.008135827,-0.025298495,-0.09586132,-0.065970205,-0.06757484,0.0110177705,0.06268747,0.03973845,-0.13818455,-0.007273944,0.012667835,-0.07133142,-0.010333621,-0.004269207,-0.07687017,0.021493338,0.037041996,0.11028185,0.050490566,0.096466325,0.059828557,-0.035022404,0.04992879,0.027737446,-0.06461272,-0.019917602,0.0046279854,-0.0636542,0.032604825,0.062212132,-0.069838494,-0.008840391,-0.027847562,0.02408878,0.017671607,-0.040639244,0.01162865,0.04497988,-0.07745006,0.0016686803,0.00804816,-0.00506534,-0.009535358,-0.027632274,-0.054646652,-0.026170073,0.047212627,0.10443527,-0.007992767,-0.034437347,0.07633264,-0.014839623,0.04447124,-0.006171547,-0.02556108,0.073640436,0.005502676,-0.05962987,-0.011682005,0.014566375,0.055764515,-0.016153522,0.03228706,-0.029969975,-0.0008981178,0.07023146,-0.018884923,-0.0035988917,0.087243296,-0.0610857,-0.08020974,0.0108424835,-0.060607962,0.017604187,0.0007333374,-0.0012233611,-0.042870797,0.003211071,-0.034069613,0.029143775,-0.07326339,-0.048862346,-0.09283374,0.05991228,-0.025248686,0.08478415,8.8989845e-33,-0.07250821,0.01027755,-0.059790213,0.0748128,-0.016365673,0.041719515,0.0045843464,0.07409751,-0.022756828,0.027043995,0.05482192,-0.02441947,0.0032567114,-0.049775824,0.06921637,0.013820631,0.020150986,-0.030447228,0.006674281,0.042819493,-0.0056396057,-0.058062773,0.01705022,0.006396473,0.018760992,-0.047497712,-0.014455981,-0.024657482,0.011791329,0.04134705,-0.041840535,0.056315918,-0.007373572,0.011311604,-0.02803791,-0.022735864,0.03346023,0.055980667,-0.10937973,-0.03493478,-0.04922145,-0.013680155,-0.054583855,0.021931227,0.06579466,0.085020155,0.071391694,-0.07655971,0.014220547,0.07497301,-0.089845695,0.04019045,-0.138504,-0.018574823,-0.028870111,0.054126225,-0.061745044,-0.008239167,-0.035996005,-0.109164864,0.03067623,-0.01996695,0.029774653,-0.023723656,0.01298606,-0.057144303,0.038252477,0.030978266,0.09887503,0.071002156,-0.07711981,-0.058748696,-0.09075517,0.04573686,-0.009590465,0.01141183,0.013553677,-0.016327268,-0.045420546,-0.028445095,0.012196667,-0.09683996,0.020198723,0.007108175,0.03335343,0.05126122,0.056381296,0.078275904,0.041448638,0.06654642,0.0064607253,0.088152595,0.027962437,-0.07528814,0.061802913,-1.1242821e-32,-0.0795466,0.011362351,-0.09334065,-0.054497734,-0.063739456,0.025088191,0.0383867,-0.051137157,0.035382845,-0.019014558,-0.08528707,-0.13963388,0.1075975,0.045585923,-0.09384813,0.049510997,-0.025669299,-0.04704798,-0.05451193,0.06381443,-0.024376927,0.059559416,-0.01489842,0.029034268,-0.06264921,-0.008228042,-0.107171826,-0.014319922,-0.060447656,0.022007054,0.054160494,-0.017945156,0.013604226,0.08891253,-0.078586854,-0.015045553,0.037566386,0.002546457,-0.037068944,0.036428124,-0.021830149,-0.022069927,-0.01427362,-0.03242465,-0.030513234,-0.022553472,0.012637025,-0.12614338,-0.065614514,-0.007786771,0.08153789,-0.0024773737,-0.018319882,-0.07531337,0.02227796,-0.0038975147,0.03792621,-0.022219531,-0.011816125,0.05265539,0.08557801,0.07796507,-0.011597756,-0.08890715,0.030649284,-0.013982573,-0.05466565,0.011326373,0.11997551,0.07138631,-0.0039092633,-0.014951277,-0.12058367,0.0063877534,-0.005906676,-0.02530576,-0.014136497,0.052908573,-0.026589535,-0.022581907,-0.014911357,0.035382092,-0.007870834,-0.046319097,-0.009565149,-0.07821147,-0.018395666,-0.016203465,0.019634701,0.056508597,-0.06775651,0.016635653,-0.10349687,-0.04595475,-0.0196805,-4.9081308e-08,-0.034247253,-0.03233436,0.019155992,0.01651985,0.026880486,-0.059082996,0.043822873,-0.007896921,0.04707671,0.06855043,0.025026426,-0.06416364,0.00795497,0.08579444,-0.03670284,0.027316472,0.10277935,0.019693691,-0.060895205,-0.04998204,0.09002403,-0.03076702,-0.06475239,0.048613977,0.015823986,-0.0047919275,-0.06426915,-0.005554364,-0.02919794,0.04499801,-0.04689928,-0.018138358,-0.014017674,-0.061296355,0.03338763,0.03355119,0.012069131,0.021458149,-0.04837941,-0.005794442,0.051084723,0.023497654,-0.08151706,-0.01035515,-0.068218045,-0.047443323,-0.040913533,-0.024052572,-0.022296574,0.060565807,-0.04420801,-0.05488225,0.028023057,0.033103786,0.07386135,-0.08793665,0.0076445867,0.05532816,-0.07341418,0.007441172,0.033309065,0.13740768,0.034237474,-0.06535536} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:32.987969+00 2026-01-25 01:27:51.181477+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 382 google Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB 1 t 385 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nos dieron un Fiat 500 que estaba en perfectas condiciones. Lo cogimos a todo riesgo y no hemos tenido ningún problema con el vehículo. El personal fue muy amable con nosotros. nos dieron un fiat 500 que estaba en perfectas condiciones. lo cogimos a todo riesgo y no hemos tenido ningún problema con el vehículo. el personal fue muy amable con nosotros. 5 2025-08-28 01:27:48.341556+00 es v5.1 O1.01 {} V+ I3 CR-N {} {"A1.01": "El personal fue muy amable con nosotros.", "O1.01": "Nos dieron un Fiat 500 que estaba en perfectas condiciones. Lo cogimos a todo riesgo y no hemos teni"} {-0.015113391,0.124648124,-0.013642095,-0.05094109,-0.00053398265,-0.05651049,0.011621438,0.038732916,-0.08113034,-0.04380784,-0.01112556,0.033416204,-0.039034076,-0.02777636,0.0033337336,-0.016098594,0.0137820225,0.045978084,-0.0645,0.078373395,0.06545534,-0.08698824,-0.05200919,0.056220062,-0.11109094,-0.04212574,0.0294283,0.05832947,-0.045113392,-0.033861663,-0.045587495,0.10168234,-0.0060683778,-0.0128578935,-0.0072979038,-0.034509543,0.04378178,-0.050455183,-0.017077396,-0.05222963,-0.03654696,-0.06588164,-0.022672892,0.0005105391,0.071411274,-0.027681805,0.03731942,0.085204594,0.07589895,-0.08002655,-0.058411133,0.014697274,-0.0025059045,-0.025017172,-0.053926956,-0.012933182,-0.0014546475,0.017877305,0.080771275,-0.024468878,0.10969748,0.04083372,-0.007805204,0.070446245,0.030945199,0.06999748,0.013695809,-0.05275841,-0.12614766,0.08015974,0.12402256,-0.10868623,-0.022218298,0.059007816,-0.041154854,0.039960854,0.012513776,-0.055322107,-0.037309304,0.066499844,-0.037965797,-0.0015805206,-0.04273109,-0.06395742,0.0050184904,0.051108427,-0.07439395,0.02241895,0.034311555,-0.032522105,-0.026760183,-0.0006648471,-0.017286262,-0.0553578,0.0096114,0.049892124,0.016784439,-0.0065411194,0.0076294956,0.0049710814,0.08550162,-0.0012881932,0.0004375722,0.06360158,-0.042805653,0.110563,0.070462644,-0.003386226,-0.018842485,0.044364743,-0.060983505,-0.050496235,-0.019030955,-0.06315049,-0.060392894,-0.033967737,-0.075879775,0.028688774,-0.028481074,0.023943624,0.045124702,-0.0029398543,-0.07305643,-0.016199106,0.008999171,-0.05109109,0.06416766,1.0847592e-32,-0.08765869,0.013918888,0.028846512,0.021760553,-0.08250315,0.0033598768,-0.06386517,-0.003862192,-0.031012883,0.02757858,-0.04303592,0.018334597,-0.041517064,-4.409732e-05,0.041616786,-0.003595649,0.0172985,-0.049127582,0.066749826,-0.002439627,-0.028838672,-0.017401038,0.040673465,-0.03985143,0.033419665,0.09490957,0.04134729,-0.04757912,-5.8984933e-05,0.07493755,-0.06960379,0.0542314,0.039907463,-0.026399715,-0.039650403,0.025365748,-0.0017584459,0.06374412,-0.06242906,-0.042333473,-0.01176167,0.036869004,-0.097091,0.016196502,-0.035917725,0.10483576,0.054573253,0.06918397,0.061555997,-0.007364198,-0.1600621,-0.0534133,-0.099784814,-0.02068088,-0.00056399085,-0.03250149,-0.019536119,-0.04811424,-0.048825163,-0.034347646,-0.05436157,0.022106247,-0.011015081,0.009544505,-0.051909715,0.0726398,0.008630307,0.03355852,0.051414672,0.068877496,-0.013253179,-0.04025066,-0.05652624,0.052778162,0.014649698,0.053990114,0.087475844,0.0025672645,-0.035446916,-0.0011773162,-0.045020156,-0.00017550358,0.03276302,0.05927901,0.11227088,0.13282295,0.035045903,0.06470013,0.024250908,0.095118076,0.04647188,0.03661875,0.091824144,-0.010717554,-0.0062383804,-1.2398259e-32,-0.015013074,-0.032539174,0.020232754,0.04653552,-0.047194146,0.0074196053,-0.0899311,-0.030762045,-0.008466919,0.03057196,-0.051722948,-0.117526755,0.07713257,0.055273987,-0.059528615,-0.0038037172,0.0341846,-0.13866603,-0.012676303,-0.026169917,0.06491993,-0.002102699,0.022028796,-0.03912192,-0.024749339,-0.028785562,-0.07906735,0.031380534,-0.077127814,-0.07774232,-0.007203246,-0.052724436,-0.0091642905,0.03275553,0.052084036,-0.0040852525,0.05826717,0.04990326,-0.007538022,0.02890245,-0.049020782,0.05913858,-0.024507161,0.021906149,0.019278418,-0.061293125,-0.022310574,-0.148022,0.08201654,-0.03624411,0.054205455,-0.02359292,-0.0074365013,0.0349315,-0.018544823,-0.014901526,0.07984678,-0.038042486,-0.0634745,-0.024795191,0.022082673,0.054004654,-0.035636228,-0.0049490063,0.09840344,-0.051587846,-0.014730165,0.01491125,0.020272525,-0.005015176,0.058025014,-0.07030047,-0.046658617,0.025674999,-0.09945053,0.019240431,-0.054216214,0.00865037,0.078923665,0.04207105,-0.021599496,-0.031239856,0.025939144,0.0037263918,0.0014101851,-0.001131968,0.014219177,0.03130022,0.037007634,0.04426614,0.0011015619,0.06465967,-0.06980647,-0.033944864,-0.112884246,-4.4797584e-08,-0.022713913,-0.027819632,-0.02832788,-0.0006821228,0.014978794,-0.045536205,0.024323117,-0.044712503,-0.011105789,0.05301523,0.029780855,-0.0313895,-0.024288906,0.014697292,-0.052747775,0.008429458,0.014094505,0.07869247,0.0024309484,-0.045292426,0.0904814,-0.05433237,-0.03104924,-0.017959395,-0.007615155,-0.04109285,-0.0050822673,0.025084313,0.031395704,0.01810715,-0.1208042,-0.0008611221,-0.010897178,-0.08701291,-0.028916117,0.0036756117,0.001630181,0.06289667,-0.018190619,-0.07686349,0.09411841,-0.0045480262,-0.053863905,-0.025860446,-0.0074407514,-0.11288332,0.030706046,-0.075967826,0.01711904,0.00578391,-0.013647375,-0.044369213,0.03205132,0.095720954,0.03450276,-0.05619131,0.012652874,0.056356866,-0.071749955,-0.043304957,0.069837555,0.06230663,-0.0020174815,0.021081509} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:36:36.212411+00 2026-01-25 01:27:51.18631+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 384 google Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB 1 t 387 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!!\nEs werden nur von einer Bank ausgegebene Kreditkarten akzeptiert (keine Debitkarte oder american express) ansonsten bekommt man kein Fahrzeug gemietet\nWenn man dies beachtet ist alles sehr easy kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!! es werden nur von einer bank ausgegebene kreditkarten akzeptiert (keine debitkarte oder american express) ansonsten bekommt man kein fahrzeug gemietet wenn man dies beachtet ist alles sehr easy 5 2025-12-26 01:27:48.341569+00 de v5.1 J1.02 {J1.03} V+ I2 CR-N {} {"J1.01": "Wenn man dies beachtet ist alles sehr easy", "J1.02": "Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!! Es werden nur von e"} {0.016740153,-0.043833032,-0.039317153,-0.018101433,-0.076254524,-0.043164663,0.08155472,0.08836697,-0.02654686,-0.025814867,-0.03208003,-0.010687319,-0.021144964,-0.021856563,-0.001564751,-0.05614796,-0.066431396,0.013072792,0.017407456,0.06297955,-0.01746147,-0.08899004,-0.08951662,0.008637926,0.06449022,0.0024188245,0.0513374,-0.038352754,-0.01512046,-0.052640047,0.022490794,-0.04089055,0.04299249,-0.0087514715,0.047197625,0.031248966,0.049837165,-0.07353871,0.027034558,-0.041423213,-0.12378423,-0.04837974,-0.055681452,0.019362543,0.030489007,0.03007598,0.019915944,0.0631011,-0.05493773,0.053715143,0.023792634,0.03473515,0.045734417,-0.07488057,0.02453426,-0.09630634,0.047430962,0.04629547,0.06500511,-0.030700121,0.0019139895,0.028148789,0.048910912,0.042428285,-0.031571675,-0.011793068,-0.017347345,-0.048453733,-0.0104072,-0.034144886,0.0015049893,-0.1674614,-0.054338165,-0.037744906,-0.014416466,0.018370066,0.012332772,0.03323262,-0.017486827,-0.0030724928,0.0073684216,-0.09595972,-0.06250027,-0.020288523,-0.021745492,-0.051848456,-0.042424414,0.012825885,-0.006698804,-0.054573257,0.046183534,0.064773224,-0.061936468,-0.04290778,-0.025027463,-0.080984354,-0.068607286,0.04330401,-0.041469023,-0.0034585341,0.076145254,0.12671962,0.001957857,0.041302647,-0.018501591,-0.046641853,0.049854696,-0.025595022,0.005426067,-0.06089109,-0.06164388,-0.056897733,-0.021576617,0.025844552,0.022753414,-0.018614616,-0.004206566,-0.11014659,0.042902805,-0.008098543,4.7982143e-05,0.0125855105,-0.0004182462,-0.04940949,0.01712721,0.046224963,0.06937929,1.9128385e-32,-0.04257739,-0.014339542,-0.007816271,-0.0051959,-0.01671351,-0.018783147,-0.05649032,-0.012865275,-0.044742964,0.030267475,-0.042705677,0.013835026,0.0056089684,0.08142774,-0.06656794,-0.025134735,-0.0065391692,-0.09682088,0.042961966,0.018994639,0.025686476,-0.051533785,0.03197522,-0.006117329,0.0929988,-0.061462916,-0.034715317,0.021509064,0.061772,0.013188127,-0.063791975,-0.1044311,-0.027715039,0.042615302,-0.078147404,0.02117745,-0.034583792,0.05638785,-0.010997992,-0.048084367,0.018544955,0.041985814,0.011189622,-0.041404255,0.0762232,0.123395704,-0.0019486491,0.055634797,0.06104715,-0.0042976574,-0.07608655,-0.04739153,-0.06812049,-0.048032403,0.023201652,0.011698762,-0.046710774,-0.023512261,0.00805099,-0.06253612,-0.09228387,-0.0230855,-0.07799607,-0.030131644,0.0003137759,0.000650456,0.0011301651,0.025031101,-0.017284986,0.03949762,-0.07476187,-0.0068445513,0.08761577,0.04846099,0.040470254,0.046729147,-0.008045484,0.09408124,-0.029878156,0.0070628873,-0.0977827,-0.0026439663,0.06544846,0.0054560914,0.04654701,0.075529255,0.036439568,-0.029369704,0.02633069,0.056972247,-0.04978262,-0.0074366285,0.022667576,0.002689251,0.097152315,-2.1350989e-32,0.02792435,-0.032983925,0.010307262,0.01074621,-0.06745616,0.01230428,-0.0060993223,0.07838936,0.027185379,-0.052617867,-0.03284685,0.023246504,0.06664031,0.06668064,-0.029007526,-0.0002348426,-0.015629202,-0.010603875,0.07703846,-0.028025327,-0.009144282,0.016069505,0.053929005,-0.004854087,0.02372209,-0.02805652,-0.06023931,0.005003591,-0.012937088,-0.038084943,-0.00049342134,7.0332803e-06,0.047427572,0.052193597,-0.1477861,-0.03281131,0.06113691,0.12687272,0.0036933734,0.09874111,0.023031088,0.06433564,-0.071035884,-0.0609682,0.031230358,-0.011365089,-0.059518643,-0.09246842,-0.106595725,-0.11572553,0.013908978,-0.013914508,-0.022054413,-0.060390007,-0.048990306,0.15677784,0.13589591,-0.020453202,0.026683778,-0.04686537,0.0048305364,0.0071234405,0.08696921,0.022335269,0.026584178,-0.062941186,0.028810898,-0.036695644,0.0647213,-0.037008274,0.007953396,-0.050611693,-0.026843727,0.07806796,0.08317124,0.041933734,-0.10687384,0.006851451,0.0219477,-0.0017621402,0.007134132,0.05308167,-0.06638979,0.023861088,-0.010648851,-0.034583043,0.018076155,-0.031210737,-0.02814677,-0.09432579,-0.09511661,0.021836352,-0.009147487,0.016601788,-0.050680872,-6.94498e-08,-0.018479906,-0.084728345,-0.019545129,-0.0074751377,0.072732545,-0.02315435,-0.002193391,0.06682357,-0.07091308,-0.023360005,-0.042306785,-0.0010040116,-0.14275365,0.021296607,-0.03826507,0.031265628,0.028736485,0.0065087425,-0.025070932,0.0051421607,0.0854962,-0.0063887355,-0.044724327,-0.011289446,0.0353344,0.049481828,0.043108165,0.029855467,0.0023768705,-0.11168825,-0.053486448,0.08163871,0.010130292,-0.044030964,-0.05378208,0.022623796,0.08741416,0.03575275,-0.08812502,0.057342608,0.009267444,-0.06403072,-0.03924046,-0.0842461,0.02005136,-0.06806029,-0.06028289,0.05708019,0.04465147,0.029642731,-0.0012321481,-0.029480971,0.067042865,0.00026345535,0.0681351,-0.049693726,-0.0848373,-0.035472285,0.019091222,-0.012667708,0.044870086,0.0108608445,0.06853917,-0.03433798} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:19.157164+00 2026-01-25 01:27:51.192403+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 385 google Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB 1 t 388 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tutto molto bene. Unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di Gran Canaria. Dovreste sempre specificare di recarsi alla porta 2 delle “salidas “ tutto molto bene. unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di gran canaria. dovreste sempre specificare di recarsi alla porta 2 delle “salidas “ 4 2025-08-28 01:27:48.341579+00 it v5.1 O1.01 {} V+ I1 CR-N {} {"J1.02": "Unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di Gran Canar", "O1.01": "Tutto molto bene."} {0.057098668,0.060774982,-0.026989063,0.025365362,-0.043394513,-0.0481473,0.092699915,0.058020413,-0.019676771,-0.014594789,0.058377367,-0.04146285,0.010303821,0.0008826869,-0.055391703,0.0066215196,0.030766902,0.046884492,-0.046152845,0.07287012,0.030521959,-0.06459865,-0.082746685,0.0737067,-0.06987252,-0.038594533,-0.07115549,0.06323344,-0.05493119,-0.11771271,-0.093899585,0.1252653,0.036350407,0.014669537,0.045071583,0.04232119,0.045581296,-0.04384632,-0.02156426,0.013524515,-0.0790614,-0.021488255,-0.052296553,0.043558344,0.008299913,-0.095484674,0.0081668645,0.044095043,0.052131776,-0.031479355,-0.08954362,-0.047399513,0.0066678906,-0.057733484,-0.04293059,0.027313296,-0.018619878,-0.051065523,0.015438472,-0.0063637327,0.055343606,-0.019424213,0.0015549907,0.010890096,-0.019552402,-0.06270808,-0.05388772,-0.056176834,-0.012964674,-0.04445368,0.047195133,-0.08520877,-0.017623546,-0.055817902,-0.014201888,-0.010666503,0.028077433,0.12286381,0.000892741,-0.030282803,0.07387486,-0.031557236,-0.044452187,0.0016847707,0.043524988,0.012057373,-0.006702992,-0.07038177,0.030434942,0.018430786,-0.088198416,0.0278625,0.008146403,-0.031597614,-0.016307056,-0.024155706,-0.08073272,-0.051150795,0.013109772,0.023556937,0.06374096,0.055091947,0.02460514,0.016642416,-0.062581405,-0.033350732,0.06883589,-0.10078139,-0.0091265375,-0.02430012,-0.09846936,-0.020734651,0.030298252,-0.060815852,-0.08028848,0.011498519,-0.026255405,-0.0891188,-0.06172543,-0.017831594,-0.029898757,-0.055109274,0.032548156,-0.00031358626,-0.014239047,0.016815891,0.06640696,1.3603473e-32,-0.0652889,-0.020007445,0.0015928393,0.06421394,0.038459778,-0.0106745465,-0.05611087,-0.040247615,0.018067855,-0.049767192,-0.08600046,0.037433,-0.01920463,-0.012405342,0.09288804,0.0019905923,0.03391654,-0.05770672,0.03295551,-0.05102272,-0.09836768,-0.026938414,-0.03265849,-0.068721026,0.041199077,0.044044908,-0.11492547,-0.04000042,-0.041972794,0.06611897,0.06356408,0.031743996,0.004376551,0.013305654,-0.027428815,-0.0845577,0.0016456664,0.008914161,-0.020542303,0.05223998,-0.08581508,0.039354388,-0.025082149,-0.008906356,0.0013833377,-0.045639783,0.0500209,0.03626663,0.1311924,0.017757675,-0.02277273,0.019548707,0.0024965855,-0.0056839334,0.012137805,0.02439561,0.021786956,0.08145826,-0.038606293,0.017005911,-0.029654367,0.040573563,0.001639437,-0.039604258,0.081688814,0.06915476,-0.012132605,0.07516341,0.07991872,0.063131355,-0.03781405,-0.013776583,-0.030189807,0.09163712,0.024650112,-0.046194404,-0.040779244,-0.019549789,0.00068725535,-0.004049504,0.029806215,-0.003920247,0.010637272,0.03269184,0.022166826,0.0088186525,0.03476096,0.070744745,0.006374789,0.068006486,-0.050597288,0.0905635,-0.0031052872,-0.043486964,0.05216352,-1.2948661e-32,0.022793531,0.05546516,-0.06812778,-0.03149819,-0.08910254,0.009121278,-0.047324337,-0.036186963,-0.03749422,0.058503695,-0.103444405,-0.08887112,0.11052896,-0.021805633,-0.05310386,0.09829979,0.004888133,-0.048653126,-0.07107148,-0.02093638,-0.0023614457,-0.052596964,0.047173034,-0.04703585,-0.087982096,0.038472794,0.022083135,-0.016238775,-0.04351314,-0.024018673,0.029350558,0.08764818,0.017585818,0.05113742,0.038512096,-0.049763527,0.06392684,0.04535338,0.03369287,-0.018333342,-0.016050467,0.03301097,0.12940915,-0.0034904575,0.04157884,0.012192507,-0.028603522,-0.07745891,-0.042713337,-0.06136925,0.033066474,-0.06809328,0.0011133793,0.036978286,0.07418323,-0.007356588,0.03839553,-0.10080736,-0.03167834,-0.07344404,0.08263663,-0.013589295,-0.13289265,0.0005526838,0.0272126,0.0044448916,-0.06244327,0.028472481,-0.04669989,0.017591946,-0.04573559,-0.06837255,-0.0048348354,0.024529053,-0.1417478,0.05665939,0.0144994585,0.0899649,0.02090448,0.056418665,-0.020264521,-0.0078303935,0.020520093,-0.045671765,-0.011617324,-0.025350085,-0.03667735,-0.087263234,0.031410623,0.011396234,0.04286065,0.03073892,0.0065517933,-0.025995418,0.05151382,-5.1040374e-08,0.044597663,-0.08521726,0.022806924,0.029374748,-0.019026104,-0.026751494,-0.04571772,0.030437585,-0.009263939,0.059367713,-0.038105916,0.015248449,0.014564807,0.055508487,0.025949864,0.096730635,0.103567705,0.038498003,0.026082294,-0.050383464,0.06607221,-0.02817847,-0.011024921,0.04259689,-0.038755063,-0.002819164,-0.025269367,-0.09120157,0.044764105,-0.08607105,0.0032708952,-0.015579609,0.051563144,-0.063697994,-0.07210914,0.08968685,0.015145962,0.0005644237,-0.031259023,-0.03869791,0.04660893,0.048644528,-0.03846267,-0.033816654,0.055376604,0.0052140728,-0.0050519723,-0.00401642,-0.052399557,0.03893493,-0.031176742,-0.02508619,0.09216825,0.07338019,0.008906439,0.027674742,-0.012404739,0.05047045,0.027371882,0.03298358,-0.0069317534,0.18211026,-0.053533,-0.025536582} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:36:15.799425+00 2026-01-25 01:27:51.198283+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 569 google ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE 1 t 572 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carlos és Fran mindenben a segitségünkre voltak. Nagyon kedves és segítőkész volt mindenki. A hab a tortán az volt amikor Carlos az anyanyelvünkön, magyarul szólt hozzánk. Ha bárki autót szeretne bérelni Gran Canarian jó szívvel ajánlom neki a srácokat! Kiváló ár/érték arány. carlos és fran mindenben a segitségünkre voltak. nagyon kedves és segítőkész volt mindenki. a hab a tortán az volt amikor carlos az anyanyelvünkön, magyarul szólt hozzánk. ha bárki autót szeretne bérelni gran canarian jó szívvel ajánlom neki a srácokat! kiváló ár/érték arány. 5 2025-01-25 01:27:48.342607+00 hu v5.1 A1.01 {R1.01} V+ I2 CR-N {} {"A1.01": "Carlos és Fran mindenben a segitségünkre voltak. Nagyon kedves és segítőkész volt mindenki. A hab a ", "P1.01": "Ha bárki autót szeretne bérelni Gran Canarian jó szívvel ajánlom neki a srácokat! Kiváló ár/érték ar"} {-0.05270348,0.12722969,-0.06624386,-0.02685642,-0.030725736,0.006877259,0.13719527,0.06939475,0.087935224,0.0053856997,0.042248007,0.008448907,0.009469645,0.07470144,-0.014607933,-0.05417827,-0.10272385,0.13695334,-0.04997691,-0.007156176,-0.01730776,-0.042476576,0.0076955613,0.004062484,0.0014381311,-0.060307097,0.03095065,0.015904203,-0.049989853,-0.0768164,0.035032872,0.026624234,-0.032777537,-0.008985411,-0.048760343,0.012081106,-0.02560512,-0.02972808,0.05477872,0.043273885,-0.04436188,-0.030828042,-0.073599204,-0.05475158,-0.050597306,-0.047054365,0.004102454,-0.022072844,-0.012146756,0.01408563,-0.10835156,-0.034835644,-0.003267445,-0.045307085,-0.04533992,-0.09129492,0.0215177,0.07004839,0.02014038,0.03237932,0.057636905,0.022140512,-0.10569728,-0.0008084739,-0.061589047,-0.043705698,-0.09668347,0.0370013,-0.07593182,0.025197113,0.06225515,-0.06592383,-0.022970721,-0.027047873,-0.061733685,-0.006057185,-0.032339837,-0.026177116,0.046661366,-0.06306719,0.055418912,-0.012848491,-0.05691906,0.006809957,0.034192435,0.034707036,0.0036557955,0.08644302,0.03970194,0.0361657,0.091875546,0.037603103,0.053877924,0.013249034,0.05025531,0.041176148,-0.033670615,-0.0053770463,-0.08022387,0.08051406,0.11398804,0.04380066,0.060709994,0.059510466,-0.00896767,0.059250277,0.042833857,-0.048485406,-0.00992341,-0.06033138,-0.026012428,-0.03535717,-0.037896246,-0.06738549,0.037442353,0.021859787,0.03075074,0.020305023,-0.0062850975,-0.04513016,0.06513919,-0.022426447,-0.07883404,-0.035230473,0.14912432,0.06756091,0.054207724,1.9735962e-32,0.019070791,0.055898245,0.00815452,0.015902396,-0.056067675,0.06755324,-0.061427224,0.026217075,-0.09421024,0.03299291,-0.08117901,-0.030824825,-0.028911253,0.019198917,-0.024979735,0.07142378,-0.009715499,-0.06902108,-0.025177347,0.024786321,0.034010805,0.046805676,-0.045457777,0.07853219,0.015591942,-0.003356376,-0.007018366,-0.080518246,-0.056680474,0.036438074,0.0067666774,0.046474434,-0.050858762,-0.00560398,-0.02109642,-0.03051045,0.030907376,0.027201299,0.036562905,-0.058603525,0.097960666,0.037347592,-0.006250973,0.06882752,-0.051786046,0.047392663,0.014406734,0.067184046,0.18147388,0.005770579,-0.08907786,-0.038744863,-0.028787617,-0.008875,0.019976947,0.00680111,-0.07584886,0.122152664,0.050850566,-0.0086293,0.05558534,-0.019466484,0.0009296203,0.032631487,0.061713915,-0.042329594,-0.010819286,-0.021030497,0.049104173,-0.05782457,-0.05414518,-0.028837336,0.02166203,-0.026004927,-0.043488793,-0.004303446,-0.030026773,-0.0013588117,-0.017624673,0.05769388,-0.064318195,-0.037263405,-0.018144606,-0.067272976,0.011369246,0.05846215,0.015704267,-0.031318706,-0.020946635,0.099166736,0.026774546,0.04322732,0.046066113,-0.050610755,-0.03859791,-1.7600828e-32,-0.007700155,-0.0051482227,-0.02846306,0.037808515,0.07864119,-0.0046413825,-0.056704473,0.0001349353,-0.071555346,-0.0065827975,-0.00430951,-0.0584705,0.1140203,-0.047565907,-0.02512519,0.020526445,-0.058191743,-0.0034849925,0.020377308,-0.010664263,-0.035850443,0.063751295,-0.022870807,0.085429765,-0.014631059,0.005960861,0.05746788,0.027486546,-0.080046795,0.030976541,-0.001456885,-0.0438269,-0.0313971,-0.002735452,-0.06247703,0.05210097,0.08817561,0.022446647,-0.04159104,0.10151455,-0.020317618,0.032373093,0.024293976,0.011011747,0.015100618,-0.0038266883,-0.06694618,-0.040110074,-0.027100703,-0.10139665,0.0064476277,0.0071141073,-0.066168696,0.00062415947,0.05726782,0.033403393,-0.025782596,-0.015332671,-0.050809048,-0.017713338,-0.028225232,0.016880043,0.024605585,-0.018802818,0.07772365,-0.054166954,-0.083579786,0.064690694,0.08038021,-0.044722226,0.11031444,-0.050828464,-0.06036614,-0.06267713,-0.088671595,0.05596785,-0.049305517,0.010164929,-0.046629827,-0.076827966,0.015722996,-0.016494693,-0.055667587,-0.030236313,-0.03078691,0.021808151,0.013595236,-0.047518905,0.012574198,0.033869084,-0.0053228782,0.023197534,0.027576102,0.059323892,0.026156506,-6.161508e-08,-0.004587122,-0.039887283,-0.03524979,0.006078986,0.011727319,-0.029626,0.041006405,0.0040406333,-0.01574214,0.102733634,0.03337195,-0.060139142,-0.003718591,0.03696433,0.044805646,0.0096044475,0.031553794,0.13058199,-0.03164449,0.000934607,0.08523871,0.0072684656,-0.047008265,0.022235055,0.017149208,0.026813123,-0.04556262,-0.02960818,0.048181947,-0.079643,-0.043385394,0.032730557,0.02736752,-0.104580216,0.012089688,0.061353263,-0.071049,-0.08048247,0.016445575,-0.05885031,0.04429213,-0.052439846,-0.020469356,0.0038032064,-0.08839438,-0.12403004,0.043713056,-0.05960973,0.043484386,0.00053305586,-0.000654175,0.011140694,-0.02591964,0.035683084,0.08356264,0.0076728202,-0.04120871,0.09127953,0.027911985,-0.03761804,0.05225908,0.0269803,-0.058097918,-0.09028634} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:11.839201+00 2026-01-25 01:27:51.901884+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 574 google ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB 1 t 577 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alquile una semana con ellos. El precio inmejorable y la atención mejor. Gracias Isa ( a mi llegada) , Carmen y Antonio al recoger el coche. alquile una semana con ellos. el precio inmejorable y la atención mejor. gracias isa ( a mi llegada) , carmen y antonio al recoger el coche. 5 2025-01-25 01:27:48.342629+00 es v5.1 P1.01 {A1.01} V+ I3 CR-N {} {"A1.01": "Gracias Isa ( a mi llegada), Carmen y Antonio al recoger el coche.", "P1.01": "El precio inmejorable y la atención mejor."} {0.028346177,0.014792342,0.031227877,-0.013540844,-0.119637065,0.03337862,0.1024625,0.014125109,-0.016164519,0.027733682,0.04682131,-0.019694582,0.028416177,-0.03498479,0.015105668,0.057085853,0.06429277,-0.003148292,-0.028119316,0.037020814,0.072750084,-0.08380879,-0.095859155,0.13113461,-0.037860896,-0.08579305,-0.04280138,0.008928313,-0.072688,-0.03012704,-0.034076266,-0.01733404,0.09861896,0.01214738,0.012846819,0.018533919,0.03761106,-0.020465283,-0.04393428,0.06856383,-0.08409094,-0.030024007,-0.023102961,0.0026853194,0.038183145,-0.116439365,0.08205131,0.0703534,-0.011998035,0.001626404,-0.04616486,-0.0047731833,-0.035643063,-0.02552356,-0.0048107216,0.04221964,0.01055862,-0.024205629,0.09022248,0.03228729,0.039133035,0.03717358,-0.0611267,0.055952698,-0.03213076,-0.03243918,0.03969471,-0.022869611,-0.08660344,-0.0175538,0.11717846,-0.10032845,0.048843823,0.026271695,-0.049071945,0.015454616,0.051904064,-0.047333598,-0.024673056,0.02966007,-0.02989938,-0.009246935,-0.029443659,-0.050759465,-0.014832927,-0.007284797,-0.016986132,-0.05905491,0.061919723,-0.03019393,-0.06827827,0.03618657,-0.08865058,-0.024774183,-0.024624936,-0.007420497,0.024275905,-0.021368412,0.007317476,0.054979373,0.0535782,0.042028286,0.06847196,0.061524976,-0.07698005,0.05099851,0.04550016,-0.017710274,-0.013893643,0.03492869,-0.024231631,-0.013557236,-0.012253071,0.009142793,-0.023215525,0.07848818,0.0014400383,-0.049747683,0.020034833,-0.067843646,0.09858923,0.03871486,-0.02955565,-0.008402682,-0.008624142,-0.06353363,0.031868245,8.0097046e-33,-0.05307653,-0.037070896,0.030501341,0.09965414,-0.024345744,0.0199592,-0.041639507,0.028831601,-0.05740435,0.0008168966,-0.014650286,0.08771539,0.008390826,0.019146392,-0.012366031,0.09717574,-0.005055595,-0.05863038,0.074539036,0.036983058,-0.064585924,-0.012050254,-0.044759892,0.0090284785,-0.0112947235,0.020494094,0.028278744,-0.08485421,-0.002235751,0.06385869,-0.016126182,0.06885204,0.014533505,-0.07513049,-0.00077297783,-0.027274515,0.027461639,0.0606594,-0.0028468552,-0.043321818,-0.027413994,0.07477982,0.02949395,-0.039761025,0.019730045,-0.05986211,0.07029253,0.061684296,0.10430128,0.0059552817,-0.013893125,-0.047428317,-0.10157825,-0.009433781,-0.025258891,0.0503639,-0.10278522,0.07541794,-0.007895668,-0.0052856104,0.009106695,0.0369654,0.026731791,0.004633019,-0.049906142,-0.0012587226,0.066046886,-0.0027906368,0.14751883,0.01928495,-0.104429625,-0.01131888,-0.0132466275,0.020672733,-0.04864422,0.016689904,0.013855414,0.014381774,-0.023252262,0.03890277,-0.029788313,0.033167228,0.07962536,0.019126954,0.054376923,0.045062743,0.053754106,0.015820453,0.010987642,0.13276935,0.06561283,0.06454683,0.10756991,-0.031016571,-0.006432301,-8.614267e-33,0.054445613,-0.04961518,0.014346154,-0.014699257,0.02460359,0.005864472,-0.023444386,-0.048067562,-0.03550187,-0.059483048,-0.015969634,-0.12006731,0.1370961,-0.10151489,-0.047347542,0.08862711,0.022334985,-0.10056396,-0.08961712,-0.031268105,-0.008384491,0.028178774,0.07372211,0.015648695,-0.044507463,-0.065732405,0.029330073,0.011734664,-0.05887428,-0.002543331,0.005366128,-0.035486642,0.00011307866,0.0007785944,-0.057243533,0.09420631,-0.047978446,0.0069390615,0.07969798,0.048304755,0.033979826,0.07507233,0.05349117,0.03987962,-0.008019719,0.029645683,-0.050334156,-0.12598266,0.014144982,-0.058173925,-0.0014014019,-0.10274167,-0.07069519,-0.092687406,0.067457825,-0.020612871,-0.0064408504,-0.08942049,-0.037066024,0.03559618,0.04071236,-0.023897732,-0.028371675,-0.037557032,0.05647333,-0.027905118,-0.06658897,0.011646835,-0.00016497062,0.059066825,0.12817954,-0.008135305,-0.124663,0.01030901,-0.06425641,-0.032535814,-0.09181439,-0.018250259,-0.013928111,-0.0026288556,-0.0350898,0.036053997,0.0099772345,-0.02994165,0.023406697,-0.016648995,-0.05700082,0.073796034,0.03099754,0.038225126,-0.01437858,-0.059392408,-0.016166124,-0.16794732,-0.0028432074,-3.9705316e-08,0.019405816,-0.035299864,0.011232583,-0.014709523,-0.022529036,0.019267634,-0.0068270066,0.024745448,0.064325035,0.06611973,0.011040611,0.008950884,-0.005388015,-0.021866,0.007425942,0.04337043,0.076204546,0.05560633,-0.029925141,-0.035015363,0.06678813,0.0027637524,-0.07647291,-0.035222515,-0.018095085,0.01938538,-0.059820294,0.025851436,-0.045910098,0.030245027,-0.048997547,0.0026876158,-0.040071186,-0.11872771,-0.00281182,0.016780524,-0.005336304,0.018121004,-0.021310708,-0.08727063,0.039224263,0.05863283,-0.053012967,-0.0052783736,-0.038143586,-0.084254734,0.0052729542,-0.00734218,0.0002871433,0.04134693,0.009305306,-0.04192615,0.080532484,0.027650304,0.014564161,-0.056567274,0.0045511047,0.0018438942,0.009974878,-0.002630967,0.04081357,0.023395956,-0.004261704,-0.082127996} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:04.17047+00 2026-01-25 01:27:51.919905+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 581 google ChZDSUhNMG9nS0VJQ0FnSUNuck5mSWZBEAE 1 t 584 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Impecable servicio de alquiler de coches. Muy útil para recorrer la isla. Perfecta atención por parte de Carlos, Fran y Néstor. Repetiremos. impecable servicio de alquiler de coches. muy útil para recorrer la isla. perfecta atención por parte de carlos, fran y néstor. repetiremos. 5 2025-01-25 01:27:48.342695+00 es v5.1 A1.01 {J1.01} V+ I3 CR-N {} {"A1.01": "Impecable servicio de alquiler de coches. Muy útil para recorrer la isla. Perfecta atención por part"} {-0.002410268,0.069578364,-0.02801763,-0.038900264,-0.07521083,-0.059385378,0.04697357,0.003200956,0.01201349,-0.010546539,0.06959398,-0.038754374,0.02796929,0.0063305586,0.017135626,-0.061913848,-0.021491334,0.010278544,0.017292477,0.019760966,0.099782184,-0.011863747,-0.09052917,0.07856379,-0.11834902,0.002322675,0.010284201,0.018240351,-0.055430498,-0.050622873,-0.01653744,0.015483411,-0.016287643,-0.0007520391,0.004708347,0.05260238,0.09242539,-0.114589885,0.03988974,0.061798654,-0.105975166,0.0069774217,-0.0074125575,-0.009593399,-0.047806773,-0.052805983,0.049548913,0.059278484,0.021255564,-0.07469082,-0.06691452,-0.0023269097,-0.0548211,-0.017736977,0.05111442,0.011908162,-0.037033305,-0.027584756,0.01907619,-0.03220327,0.04768294,0.09678805,-0.010593159,0.05581917,0.036622074,-0.017052272,0.05699018,-0.031711824,-0.05050463,-0.015286351,0.056583676,-0.08295877,0.029451638,-0.011921207,-0.05769993,0.0067673307,-0.027037099,0.003805781,-0.05860662,-0.01446075,-0.022794198,-0.04237763,0.0014799688,-0.03598087,0.00038394434,-0.017705286,0.011422188,-0.032041784,0.09935037,-0.04579158,0.00909765,0.008260387,-0.008096902,-0.00023693104,0.0011148667,0.040567577,0.0104824295,-0.042325936,-0.08729764,0.059303943,0.055116627,0.023313044,0.03676998,-0.019993821,-0.058610234,0.0479623,-0.0066705113,-0.044065747,0.0053029405,0.06335912,-0.15469371,-0.083125144,-0.048488528,-0.03210114,-0.022352763,0.044110052,0.011322276,-0.08249678,-0.032516103,-0.094663695,0.11567196,0.015549414,-0.01616371,-0.0073468657,-0.021296473,0.017893255,0.14102858,5.1623285e-33,-0.036012232,-0.0029126746,0.03575516,0.06215582,0.0061195903,0.00031576242,-0.06416175,0.041103497,0.0051195314,-0.015031756,0.006973276,0.01643842,-0.0016930674,0.02154139,0.0086298045,-0.00452999,0.023790132,-0.01684642,0.020946039,0.02666583,-0.04866164,0.060001295,0.0040929243,0.023112303,0.025948131,0.017778942,-0.04842262,-0.061637215,-0.015109913,0.038678136,0.032326024,0.011611865,-0.039544336,-0.040205594,-0.046045966,-0.037355393,0.0014704803,0.051204566,-0.0058389287,-0.011950951,0.016045902,-0.008806255,0.043912236,0.059041973,0.051563714,-0.016272904,0.055460062,0.05490831,0.05228054,0.055320486,-0.03297556,-0.05181179,-0.10702511,-0.09579039,-0.08489415,-0.012150842,-0.09060794,0.06121463,-0.03127837,-0.00802255,0.060863845,-0.075199395,0.029058792,-0.011776178,-0.016332632,-0.0017854614,0.001514196,0.07211105,0.107585356,0.064456984,-0.08550148,-0.02685583,0.012550722,0.0814945,-0.043584343,-0.042898837,0.0731051,-0.029961383,-0.010948116,0.07123664,-0.1311376,0.0023436227,0.059358783,0.0519426,-0.0016400642,0.056851145,0.04715244,0.05921133,0.04856347,0.06687396,-0.03286091,0.10493512,0.039278783,-0.062435072,0.06715476,-6.955016e-33,0.028650593,-0.041168723,-0.038871005,0.02593679,-0.028454915,0.0472569,0.0012735408,0.031531524,-0.018760653,-0.068836786,-0.13800205,-0.087899685,0.12188405,-0.11456445,-0.06970183,0.10335888,-0.04339841,-0.06453486,-0.06733921,0.07476589,0.030527944,0.041559827,0.061782885,-0.017283725,9.044558e-05,0.012216421,0.025404949,-0.019024046,-0.050507996,-0.004069951,0.08468656,-0.04988151,-0.059897292,-0.008601154,-0.060912736,0.11442535,0.0103684,0.07546411,-0.006598388,0.058636226,0.02547633,0.0018849307,-0.016006961,0.06408816,-0.032808695,0.0755465,-0.022840172,-0.120554484,-0.0067471215,-0.043068904,0.05420465,-0.0024112063,-0.027462497,-0.012390324,0.06305569,0.009063324,-0.13226064,0.003539838,-0.021709688,-0.0065380177,-0.013315539,0.049727425,-0.060678985,-0.0024636528,0.061060667,-0.028298238,-0.10850831,0.02121929,0.025893133,0.071527705,0.080080435,-0.032613114,-0.07426567,0.0015792447,0.041260093,0.031217448,-0.097972944,-0.026000168,-0.057903383,0.051210124,-0.029594906,0.015180768,-0.032496754,-0.045217518,-0.02738116,-0.041541502,0.02545438,-0.002665293,0.0008994931,0.020801488,-0.029624412,-0.03758867,-0.0382365,-0.037461754,0.008307754,-3.6804334e-08,0.074092455,-0.012653976,-0.007937058,0.018001154,-0.038917974,-0.054673694,0.012680872,0.021909324,0.02754261,0.08378946,-0.05741955,-0.047879167,-0.009948214,0.07106792,-0.07861608,0.0310172,0.03247695,0.09859333,-0.03864522,-0.056453094,0.027214522,-0.044520397,-0.065335035,-0.059007373,0.04112645,0.066742405,-0.002346975,0.013896479,-0.07066727,0.026280858,-0.002272045,-0.04903002,-0.03360107,-0.08778266,-0.0021092393,0.07282991,-0.065376446,-0.0025715975,-0.060362987,-0.09082611,0.08654492,0.06677352,-0.013198022,0.0022282905,0.04609374,-0.067522205,-0.01570086,0.039627705,0.049972475,0.051255796,0.010562905,0.02903819,0.08863155,0.01540157,0.0039907796,-0.0182998,0.03646956,0.047566228,-0.005548831,0.034048,0.06531484,0.056034315,-0.005696317,-0.089462005} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:46.422169+00 2026-01-25 01:27:51.94098+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 390 google Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB 1 t 393 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwertiges Fahrzeug, sehr sauber, Prozesse sehr gut und bestens organisiert, gerne wieder ;-) nur bei der übernahme des fahrzeugs etwas wartezeit, war aber in ordnung...alles in allem top neuwertiges fahrzeug, sehr sauber, prozesse sehr gut und bestens organisiert, gerne wieder ;-) 5 2025-11-26 01:27:48.341651+00 de v5.1 J1.02 {O1.01,E1.02} V+ I2 CR-N {} {"J1.02": "Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwer"} {0.0012881565,0.11327561,0.046870902,-0.04901387,0.0024159448,0.032443173,0.063022316,0.10422969,-0.027869748,0.036172207,-0.024439717,-0.035999205,0.07010252,-0.036404878,-0.04096741,-0.035677705,-0.06964476,0.05660247,-0.03618994,-0.03416898,-0.07510255,0.008141659,0.03675219,0.018162956,0.016971238,0.02920786,-0.110339925,-0.045371015,0.022421183,-0.014380144,0.051971894,-0.08676117,0.005605835,0.038792968,0.011196429,0.012104612,0.015223324,-0.008272064,0.011706768,0.031449538,-0.09826869,-0.026942369,-0.13775703,-0.09179708,0.0132635,0.021198383,-0.020363787,-0.008435251,-0.10116925,0.029530115,-0.061376162,-0.06273529,0.006587516,-0.010038776,0.10744257,-0.05235395,0.02367566,-0.09549569,0.013563818,-0.02343412,-0.06518185,0.012677368,0.05118764,0.023465462,-0.030216102,-0.027940936,0.062666744,0.05127331,-0.066112876,0.047888484,0.062099125,-0.064042844,0.041597072,-0.008576197,-0.009018319,-0.010992533,-0.103435524,0.024871359,-0.0127659375,-0.0722793,0.023730474,-0.038890567,0.004789714,0.0010698346,0.039416052,-0.07653113,0.036347322,-0.004544093,0.040736005,0.02262721,-0.08840384,0.00014394039,-0.09321305,0.048436347,0.008659634,0.023777375,0.0073718824,-0.06984308,0.0035243568,0.006098311,-0.016588047,-0.055081267,0.046263967,0.0014107109,-0.030754974,-0.070667274,-0.04534148,-0.07926364,-0.031678185,-0.017463582,-0.076126814,-0.078666136,0.07536034,0.02878544,-0.0042549414,0.0032230907,-0.00087020843,-0.13308929,0.02282959,-0.013407059,-0.010657078,-0.045840252,0.056865826,0.043332353,0.045884162,-0.01311961,0.058840536,8.426157e-33,-0.051428795,-0.05676756,-0.039336115,0.043678053,-0.009928949,0.033420738,-0.03945596,-0.004369001,0.042316202,0.022131987,-0.031029068,0.0015739043,0.0070847357,0.10602013,0.032187402,0.005719276,0.023718253,-0.04863868,-0.030226924,-0.045909494,-0.020299476,-0.011842597,-0.032152906,0.03375481,0.02535868,0.026269544,0.072776504,0.0038449941,-0.050975993,0.012104572,0.10147965,-0.09191787,-0.035591513,-0.004224054,-0.015656168,0.0426855,-0.040122036,0.0705081,-0.06590579,0.048887372,0.019509187,0.028790956,0.007603026,-0.057399374,0.098268926,0.07736533,-0.10092193,0.04211233,0.0006571657,0.045083653,-0.035399623,-0.021410845,-0.019598827,-0.034943458,-0.0013825232,0.08102408,-0.112891756,0.020549314,-0.035410132,-0.051725626,0.027283758,-0.07780121,-0.023149583,-0.06469439,-0.022763936,-0.038251773,-0.017359858,0.0029776872,0.019400202,0.056746576,-0.06830343,0.005168521,0.0905098,0.06140801,0.048811257,0.036895044,-0.02247946,0.044400617,-0.036422215,0.017938172,-0.01161284,0.08275746,0.05662253,-0.06726856,0.06064378,-0.05791133,-0.000102338214,-0.039338667,-0.0106353415,0.14215797,0.0070152692,-0.015479068,0.019085733,-0.06258401,-0.043052267,-9.6095245e-33,0.07711366,0.032770682,0.0095616365,0.013682566,-0.010170464,0.055140644,-0.017511452,0.02704306,-0.023143435,0.037831347,0.058180764,-0.015053604,0.12426423,-0.043174796,-0.021721587,0.03462807,0.041529264,-0.04731338,0.038045436,-0.0034858317,-0.044448547,-0.030188287,0.011969813,0.021139419,0.017220857,0.028357804,-0.013955559,0.023365492,-0.051038776,0.024616193,0.06425801,0.02480145,-0.06924755,0.020314626,-0.026650574,0.031723,0.044356845,0.04006524,-0.041110177,0.020648606,0.016659228,-0.0069291675,-0.015545485,0.035543058,0.029548498,-0.05216728,-0.20720193,-0.07867932,-0.09738515,-0.13430287,-0.0045704506,-0.040250614,0.061367974,-0.13748199,0.100904785,0.056618206,0.035330366,-0.040689323,-0.07728802,-0.03669666,0.11351912,0.06971081,0.067307405,0.036958482,-0.053500023,-0.005413621,-0.08800882,-0.021574523,0.027784064,0.05312559,0.005665864,-0.0033098904,-0.09812028,0.013866197,-0.024675133,0.025000706,-0.052988254,0.06832429,0.004652607,-0.02174141,-0.078439355,0.029661953,-0.05638379,-0.0076594492,-0.118508376,-0.015984194,0.006796644,0.081006885,-0.015848702,-0.05031217,-0.03575274,0.023932539,0.017673405,-0.043354716,0.025734754,-5.009206e-08,-0.0013720832,-0.039008524,0.028903812,0.0651873,-0.01728281,-0.07578381,0.049952377,0.028672198,-0.07430915,0.09592555,-0.031228565,0.054758046,-0.03435436,0.024791295,-0.011798132,0.024099262,0.03335648,0.016187603,-0.053670626,-0.04529191,0.029677235,0.04304223,-0.11787411,-0.030213667,0.09280953,0.03772642,0.036128107,-0.0609892,-0.00467218,-0.0073529184,0.04754263,0.012097882,-0.017537173,-0.04215975,0.0121822655,0.015243784,0.0237795,0.03310367,-0.072068654,-0.050836917,0.08728661,0.014557384,0.079020575,-0.06764765,0.004738306,-0.012638675,-0.026775602,0.028204054,-0.018558225,0.07013828,-0.0136326775,-0.0038713503,0.061258033,0.035605155,-0.012202831,0.03359261,0.02213373,-0.034984615,-0.05389809,0.00672972,0.07973582,0.016955737,0.008335425,0.063858494} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:25.798941+00 2026-01-25 01:27:51.222057+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 392 google Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB 1 t 395 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Es nefasto el servicio de esta empresa. Me cargaron a mi tarjeta 50 € por una “gestión administrativa” de una supuesta multa que todavía no ha llegado a mi casa. Encima el coche que me dieron no le andaba el GPS ( osea un coche de gama media alta que no le ande el gps RARO). No se podía ver los avisos de radares , señales de tráfico ni nada\n\nY a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos no abren hasta las 8. Te dicen ellos mismos que lo dejes en tal parking claramente las tienen a todas pensada para robar dinero.\n\nCon total confianza te dicen“ no hace falta que le saques fotos, nosotros ya las tenemos” obvio le saqué igualmente!\nPorque buscan cada punto débil del cliente para cobrar extras. No volvería a alquilar con ellos y no los recomiendo es nefasto el servicio de esta empresa. me cargaron a mi tarjeta 50 € por una “gestión administrativa” de una supuesta multa que todavía no ha llegado a mi casa. encima el coche que me dieron no le andaba el gps ( osea un coche de gama media alta que no le ande el gps raro). no se podía ver los avisos de radares , señales de tráfico ni nada y a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos no abren hasta las 8. te dicen ellos mismos que lo dejes en tal parking claramente las tienen a todas pensada para robar dinero. con total confianza te dicen“ no hace falta que le saques fotos, nosotros ya las tenemos” obvio le saqué igualmente! porque buscan cada punto débil del cliente para cobrar extras. no volvería a alquilar con ellos y no los recomiendo 1 2025-07-29 01:27:48.341667+00 es v5.1 A1.03 {O1.02} V- I3 CR-N {} {"A1.03": "Es nefasto el servicio de esta empresa. Me cargaron a mi tarjeta 50 € por una “gestión administrativ", "P1.02": "Y a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos"} {0.03069717,0.06936628,-0.05276068,-0.084764116,-0.025250355,-0.040229294,0.0746131,0.018891454,0.019694416,0.01377311,0.07693433,-0.0039810166,0.049514543,0.028914664,0.050859593,0.01154494,0.04251265,-0.016825965,-0.020458477,0.07795849,0.044207588,-0.08410254,-0.07936773,0.06767371,-0.0915534,-0.015196173,-0.02399688,-0.02597227,-0.099175245,-0.027020978,-0.022200627,0.020448027,0.057736717,0.019632319,0.05340503,-0.061524477,0.050910167,-0.08503046,-0.06014962,0.06173122,-0.019165745,-0.0259363,-0.051869683,-0.022761948,0.00068954105,-0.08328091,0.06355596,0.06463716,0.05080218,-0.078823544,-0.05051817,0.035391953,-0.034739673,-0.060090173,-0.08333167,-0.018852739,-0.047795847,0.03551671,0.09660412,0.024877664,-0.0019733368,0.01243636,-0.06255585,0.04519458,0.04180221,-0.048888877,-0.022120142,-0.058293093,-0.09387875,0.11887608,0.081764296,-0.083017625,-0.013255273,0.011283075,-0.021765295,0.041754294,0.035232577,0.026307158,0.012916252,-0.11373185,0.032183975,-0.039394505,-0.025762027,0.018998682,0.026599439,-0.034200463,-0.033197068,0.04778998,0.0617532,-0.052178904,0.03705393,0.058078676,-0.11442631,-0.046576627,-0.01572697,-0.0010520446,0.020061605,-0.029777126,-0.04192239,0.027977666,0.111660376,0.048743732,0.05330891,0.009324726,-0.025629137,0.035839025,0.0055158506,0.018089155,-0.024509033,0.097236015,-0.07595686,-0.0058789165,-0.06757536,-0.051789373,-0.1174574,-0.009149361,-0.09274954,-0.01042718,0.0007454515,-0.011628175,0.018978482,-0.03224316,-0.00429278,-0.010322611,0.06846097,-0.019318987,-0.0021374302,1.399101e-32,-0.046409342,0.026880747,0.016219249,0.0072785914,0.026351953,0.040892582,-0.04951686,0.029978247,-0.05339946,0.09004754,-0.03951933,0.025642889,-0.012385211,-0.002501333,0.09054809,0.03539548,0.03108713,-0.073861346,-0.002602545,0.01664725,0.0019182451,-0.012019176,0.020883506,-0.004696069,0.024718972,0.054672163,-0.017443368,-0.024940602,0.00038709788,0.06392468,0.0014850241,-0.013205009,0.051609725,0.017913174,-0.03237862,-0.054529306,-0.037953965,-0.02692156,-0.07538492,-0.05496599,0.0006948575,0.0019486868,-0.040368117,0.0077006724,-0.0076809977,0.03712413,0.11516594,-0.034473415,0.048618253,0.04576896,-0.049878545,-0.039017532,-0.09927791,-0.009460439,-0.018712107,0.014139891,-0.03510398,0.012579796,0.01611256,-0.1048202,-0.012891764,-0.00872305,0.046439216,-0.02276974,0.016325751,-0.050186794,-0.007818054,0.041188385,0.13291189,0.047007006,0.033159472,-0.016696984,0.045464657,0.07878539,0.015785437,0.04885838,-0.0036537861,0.019852702,-0.037399244,0.048755385,0.0024808492,-0.06830354,0.046976905,0.022065768,0.11389202,0.07022132,0.066088334,-0.008097432,-0.08238558,0.11956768,-0.058139093,0.09716921,-0.008155226,-0.03081224,0.003468048,-1.4713579e-32,-0.056929976,0.011791346,0.020341458,-0.039447982,-0.05792481,-0.0017333396,0.03949856,-0.03752816,0.023474665,-0.04184669,-0.08400301,-0.07932169,0.041005112,-0.013296903,-0.0462418,0.035038114,0.011037191,-0.11698634,-0.0395936,-0.025382971,-0.087306835,0.095659055,0.0405186,0.07143818,0.0075929896,-0.06816967,0.028626708,0.03934567,-0.025464576,-0.03242016,0.01805103,-0.042688392,0.04828804,0.11485411,-0.003727321,-0.032428622,0.07981626,0.0291229,-0.022004405,0.03718111,-0.03005876,0.036358446,0.014117643,-0.06842551,0.02113823,-0.001621753,0.02460273,-0.1300249,-0.058799952,-0.05952731,0.102026254,-0.05905186,-0.09674949,0.026020499,0.016246542,-0.013146736,0.02375016,-0.078136474,-0.020847844,-0.06993967,0.08978549,0.031891078,-0.0890768,-0.032806292,0.08348821,-0.0267455,-0.021293972,-0.008619599,-0.04159194,0.029163798,0.03017068,-0.037497398,-0.10961667,-0.0040374463,-0.04309794,0.052695923,-0.016993288,0.03128819,0.03142989,-0.06914726,-0.062051553,-0.060423747,-0.019778384,-0.039403565,-0.028512923,0.041029535,-0.014792071,-0.01934051,-0.020774843,0.08214956,-0.03737331,0.06866722,-0.013704509,0.026952181,-0.07764875,-6.0275354e-08,-0.002020087,-0.008619457,-0.023319582,-0.031436704,0.035379753,-0.08957811,0.017503824,0.004991895,0.04596036,0.044818588,0.060286816,-0.079881325,-0.084958486,0.051638693,-0.037695695,0.05411417,0.07153016,0.028757572,-0.0175092,-0.0014036855,0.0799286,0.03595688,-0.06395334,-0.007870574,0.030133538,-0.046865482,-0.04967077,0.014801858,0.040858418,-0.047540467,-0.07169395,-0.057172224,0.008080473,-0.046422195,-0.07422214,-0.06272898,-0.0006591235,-0.035738345,0.02959372,0.010316985,0.13669273,-0.027386159,-0.045636773,-0.016038153,-0.061607003,-0.033855096,0.046436228,-0.039480366,-0.018767996,0.009736925,-0.04315417,-0.037439466,0.038564257,0.028949238,0.06460192,-0.07265394,0.10212801,-0.008720786,0.019853728,0.057394404,0.03318898,0.043995775,-0.06445187,-0.056416135} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:39:43.072256+00 2026-01-25 01:27:51.234213+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 393 google Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB 1 t 396 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleicht verbessert werden. Ansonsten perfekt! die beschreibung zum shuttle am flughafen ist nicht gut. wir haben ewig gesucht. das sollte vielleicht verbessert werden. ansonsten perfekt! 5 2025-12-28 01:27:48.34167+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleic", "O1.01": "Ansonsten perfekt!"} {0.00042160662,0.0556981,-0.002146766,-0.0043869517,-0.0012484082,0.03220092,0.09647761,0.09250158,-0.048010062,0.0052169454,-0.010753293,-0.077513665,0.033505376,-0.038450498,-0.111909196,-0.08634112,-0.0025508902,0.057161923,-0.05052009,-0.002948466,-0.032183003,-0.014180676,0.029357858,0.09320555,-0.061630834,-0.06322425,-0.06577884,-0.028374953,0.015203504,-0.04266201,-0.0098255295,-0.026823066,-0.0052038436,0.04562078,0.024788769,0.06166749,0.015758306,-0.06783963,-0.045813534,-0.029016517,-0.13008283,0.02324288,0.009153232,-0.022092987,0.019228706,0.026899386,0.028018957,-0.0389448,-0.014272974,0.064952224,-0.13512495,0.03802123,0.0095709395,-0.0031983557,0.03811967,-0.023647966,0.0140933655,-0.067305006,-0.053746447,0.020768294,-0.02399161,-0.08747611,-0.014610439,0.033093188,-0.067547746,0.037067156,-0.030827772,0.018713167,0.0052188197,-0.021837406,-0.016730249,-0.039344832,-0.021691786,-0.082035325,0.030485004,0.04708938,-0.0071709193,0.11940962,0.039232798,-0.023899196,0.0454725,-0.04799819,-0.01000355,-0.020620868,-0.0096845385,0.00679761,-0.02681723,0.03168368,-0.015000717,0.034133505,-0.0014114229,-0.0188264,-0.08692897,0.0444034,-0.17036033,-0.028118681,-0.07620774,-0.031346526,0.03423219,0.051132757,-0.07870413,-0.019609436,0.11693999,0.067906395,-0.09445768,-0.042200334,-0.037021857,-0.0070005273,0.048857037,-0.01015829,-0.039498914,-0.0018313354,-0.014925445,0.012990024,0.007279556,0.0041543725,-0.007958408,-0.13824631,0.013377593,-0.017210383,-0.027812753,0.012451787,0.04693288,0.05755442,0.024857808,-0.014855992,0.10755286,1.1280346e-32,-0.043539733,-0.033269927,0.0333825,0.07360143,-0.053386204,-0.05869024,0.019163327,0.0005452136,0.024895214,-0.021627204,-0.004517961,-0.0048788986,0.0071148956,-0.009499753,-0.042477045,-0.09418249,0.02349019,-0.075569384,0.002743798,-0.061585188,0.025573337,-0.020108014,0.012841244,-0.046010904,0.06535214,-0.04433632,-0.067239136,0.024920458,-0.0017518201,0.05052704,-0.021959333,-0.0014889764,-0.034064826,-0.012307662,-0.02081401,-0.09201922,-0.028831925,0.04758478,0.015202594,-0.06004478,0.021318236,-0.01616213,-0.052957904,-0.024032973,0.071694456,-0.00042043423,-0.0016220581,0.034366187,0.11067879,0.0007147025,0.0066407756,0.031611517,0.04318932,-0.05911636,0.047777988,0.021378065,0.007587586,0.024811216,-0.0034411405,0.032680657,-0.07138176,0.027454583,0.017223505,-0.02784029,0.12084203,0.04199251,0.018244257,0.016173447,0.0038923342,0.06948593,-0.03284997,-0.09494791,-0.0056078658,0.10216599,0.020709205,0.007545889,-0.0055479473,0.04580188,-0.08014024,0.0025550458,0.029658535,-0.027262816,-0.00782985,0.012170015,-0.039269872,-0.033589248,0.015965953,-0.05950286,0.0955944,0.14428423,-0.016381452,0.04227397,0.038432464,0.08685282,0.048350938,-1.1759171e-32,0.03560814,0.07156371,-0.09945154,0.016146224,-0.08756874,0.04578942,0.0050897435,0.016515734,-0.036485948,-0.00716569,-0.07576986,-0.04383995,0.080638215,-0.0075250305,-0.10642188,0.04112839,0.093029186,0.0041305046,-0.0018235617,0.01651563,-0.04875859,-0.005866666,-0.04907461,-0.014078861,-0.026381202,0.06033499,0.06716221,0.13389365,-0.06930976,0.014421879,0.012367207,0.06930125,0.075034805,0.016239962,-0.055555295,-0.029175013,0.073160194,0.11480659,-0.020258125,0.005484247,-0.035034705,0.04208516,-0.012407485,-0.028766764,0.0517192,-0.0023951253,-0.025148667,-0.07768459,-0.06251877,-0.041145854,-0.030850407,-0.007866097,0.021970311,-0.044598926,-9.812341e-06,0.0046432856,0.013397946,-0.13247119,0.01164535,0.0019305804,0.05063629,-0.006574133,0.03946996,-0.12624794,0.10394454,-0.095728636,-0.015520511,-0.050402574,-0.043834917,0.042632714,0.10647665,0.012643554,0.09314557,0.0654587,-0.008873162,0.041344408,0.023143686,0.024137577,-0.048775285,0.013524335,0.035701603,0.05807175,0.040595353,0.027377967,-0.055031717,-0.06166355,0.028659098,-0.041046333,-0.007782707,-0.057961687,0.04057005,0.039128844,0.019542538,-0.012904956,0.05297174,-4.3906585e-08,0.0037456306,-0.03637207,-0.08501707,0.005238195,-0.01633463,-0.009498762,-0.015186667,-0.023751713,-0.11819363,-0.005052723,0.004131471,0.0403069,-0.0067565553,0.13101181,-0.08215365,0.008106307,-0.0056505487,0.05282476,-0.020903798,0.054946396,0.011648084,-0.07844284,0.044429034,-0.043475185,-0.00865258,-0.004824958,0.04582519,-0.065634415,0.07919691,-0.066941716,-0.11102333,0.042010758,0.070442975,0.03156918,-0.095180295,0.059258282,0.019697975,0.07989939,-0.09590085,0.023542257,0.0524816,0.056944262,0.005239417,-0.07067264,-0.009269508,-0.0015675611,-0.07355524,0.057611253,-0.005030528,0.0601005,-0.010988534,0.015307189,0.036909092,0.058077265,0.011513884,0.024280835,-0.048191622,-0.002594894,-0.011017478,-0.016160185,-0.024155036,0.006361387,-0.02418199,-0.012683538} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:10:53.148058+00 2026-01-25 01:27:51.23766+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 483 google ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE 1 t 486 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown CUIDADO CON ESTA GENTE! Nos dan un coche que a los 10 minutos se avería (el cual estaba contratado con seguro a todo riesgo), no nos dan coche de sustitución y encima nos hacen un cargo de 1400€ por una avería mecánica que ni ha podido ser valorada porque seguíamos tirados en carretera esperando a que llegara la grúa ( la cual tardo 3 horas en llegar). Simplemente unos ESTAFADORES cuidado con esta gente! nos dan un coche que a los 10 minutos se avería (el cual estaba contratado con seguro a todo riesgo), no nos dan coche de sustitución y encima nos hacen un cargo de 1400€ por una avería mecánica que ni ha podido ser valorada porque seguíamos tirados en carretera esperando a que llegara la grúa ( la cual tardo 3 horas en llegar). simplemente unos estafadores 1 2025-03-01 01:27:48.342178+00 es v5.1 J2.03 {O1.02} V- I3 CR-N {} {"A1.03": "Simplemente unos ESTAFADORES", "J2.03": "CUIDADO CON ESTA GENTE! Nos dan un coche que a los 10 minutos se avería (el cual estaba contratado c"} {0.030690167,0.089173004,-0.04367325,-0.063748956,-0.041219916,0.00038495843,0.059666026,0.049210396,0.0030487736,-0.019638488,0.07360419,0.0071275677,-0.016425643,0.0067015993,0.00951835,-0.05404408,0.02444059,0.024830602,-0.0057609472,0.0014322406,0.09841114,-0.04466214,-0.09416972,0.07047232,-0.06286214,-0.0038626976,0.021066315,-0.07453049,-0.03899849,-0.082864285,-0.011552765,0.0650831,0.07353873,0.033781797,-0.032979935,-0.013152767,0.100322634,-0.09794366,-0.06081898,0.055934124,-0.08248286,-0.016699042,-0.02982583,-0.014914676,0.0001145198,-0.063748084,0.07268245,0.074571006,0.04867028,0.0071606836,-0.014057834,0.025789,-0.01930607,-0.014220221,-0.025535844,0.0126981335,0.015153732,-0.038349137,0.080910474,0.017616188,0.007894258,0.024813512,-0.054957833,0.014438859,0.043498345,-0.034369364,0.026230777,-0.03443685,-0.1221898,0.09994397,0.07352441,-0.03376786,0.014851664,0.028621368,-0.016244875,0.06430696,0.07570148,-0.0063933237,-0.01769263,-0.054693807,-0.03605468,0.017694674,0.010496132,-0.07098187,-0.017675713,-0.049434986,0.023796346,0.08771467,0.059878126,-0.038526833,0.02132655,0.10434302,-0.018631434,-0.0041412013,-0.04830647,0.025325587,0.0045572952,-0.0187423,-0.024945522,-0.020904034,0.118556075,0.09743272,0.08903626,0.040959507,0.012192438,0.06394227,0.071820974,0.01859954,0.002055587,0.07768692,-0.06699819,0.016012056,-0.007983674,-0.07619483,-0.03181349,0.054721937,-0.018336887,-0.055182554,0.03269657,-0.04462804,0.043106377,-0.04917478,0.017774412,-0.07213836,-0.011187015,-0.035186406,0.0680125,1.4740188e-32,-0.09343495,0.0076404465,-0.019904805,0.0009349647,-0.009695015,-0.0055923304,-0.0045147836,0.02224644,-0.063786365,0.03187595,-0.06525664,0.06628278,-0.08145906,0.07053208,0.048590247,-0.0063573024,0.023854572,-0.023754532,0.08621107,-0.014218143,-0.0551773,-0.058603384,0.05347687,0.031031244,-0.05062938,0.022721099,0.014516409,-0.034876436,0.03467348,0.011690217,0.012273057,0.03943151,0.087497376,-0.028317785,-0.07072455,-0.024666853,0.075085014,0.04001203,0.013790792,-0.014998961,0.005354679,-0.002925585,0.028578872,0.0019024453,-0.0039367476,0.028317928,0.09712234,0.0062880996,-0.016286751,0.0058803004,-0.08029309,0.017183824,-0.09848127,-0.030572342,-0.023121532,-0.047312707,-0.014025903,0.00013928516,-0.04343499,-0.11738943,-0.0074929493,-0.0037931572,0.038704697,-0.0009026552,-0.09212238,0.012048269,0.008251348,0.056943387,0.14021242,0.060662717,-0.07456606,0.00038352888,-0.045263775,0.033497576,0.016810887,0.056593467,0.046441432,-0.0038268743,0.01761597,0.03761441,-0.060059972,-0.018450279,0.01531225,0.030609882,0.076229006,0.09650585,0.009815126,0.058930904,0.019182684,0.08180069,-0.030342054,0.10298474,0.044733014,-0.06628715,0.078896716,-1.543517e-32,0.027930131,-0.0056088944,0.036422197,0.041051935,-0.017513325,0.009672919,-0.03707989,0.029359411,-0.042752694,-0.06264663,-0.07370881,-0.12206384,0.06074419,-0.019303845,0.0040431027,-0.0167154,0.022231532,-0.096056096,-0.020593788,-0.064018,-0.014606623,0.04766205,0.03143827,0.022997616,-0.043485038,-0.07660519,-0.017602729,0.028661564,-0.09027454,-0.028021818,0.093041666,-0.030648261,0.050648253,0.06026766,-0.0620727,0.0054077203,0.049705375,0.05877978,-0.018550359,0.08046059,0.008544016,0.03600212,-0.023494188,-0.034086976,-0.017818049,-0.0012637815,-0.014259032,-0.16861278,-0.034758464,-0.009266168,0.10435593,-0.044661164,-0.05349381,-0.0963095,0.023306163,-0.0034287106,-0.010908896,-0.11423084,-0.009224739,-0.039171886,0.0385597,0.025082778,-0.060208492,-0.029827716,0.052469563,-0.02441386,-0.015169052,0.06446219,-0.011300805,0.023965593,0.02628243,-0.012610341,-0.052985918,0.01977585,-0.08277829,-0.033703007,-0.046457686,0.013338618,0.08440228,-0.027262796,-0.050016776,-0.017754681,0.0063344957,-0.10964804,-0.05710964,-0.0032567612,-0.010571671,0.042954534,0.013732463,0.058930594,-0.040601864,0.04194556,-0.07220485,-0.07568904,-0.0253385,-5.6875344e-08,-0.020391759,-0.040114112,0.020894423,0.0012913891,0.02043258,-0.028483072,-0.0003296614,0.015341368,0.056615893,0.051232338,0.022485863,-0.05088146,-0.047885448,0.017292306,-0.051155377,0.019329956,0.07712056,-0.014039124,0.0003643668,-0.09284465,0.073152445,0.026552778,-0.0044867764,0.03371849,-0.00532101,-0.00053813896,-0.029634506,0.0965362,-0.01606312,-0.012132365,-0.025549427,-0.043923665,-0.06899781,-0.07265918,0.00995302,-0.080958396,-0.021105709,0.006481263,-0.018336028,-0.037534006,0.09707823,-0.07306152,-0.14063689,-0.045194432,-0.12370248,-0.070003085,-0.06964981,-0.00091041066,-0.045016143,0.043316796,-0.043126095,-0.034570713,0.08274251,-0.013968928,0.047360104,-0.0846786,0.0025819251,0.037244666,-0.07741094,0.025297003,0.042582326,-0.0073907636,-0.020641858,-0.06432321} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:23.360765+00 2026-01-25 01:27:51.551919+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 517 google ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB 1 t 520 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hallo zusammen , bitte diese Unternehmen nicht buchen wegen Schäden die nicht vorhanden waren und über die Vollkasko abgerechnet wurden!!!\nSie müssen die Schäden akribisch dokumentieren Foto und Video dringend erforderlich und niemals mit Selbeteiligung buchen. hallo zusammen , bitte diese unternehmen nicht buchen wegen schäden die nicht vorhanden waren und über die vollkasko abgerechnet wurden!!! sie müssen die schäden akribisch dokumentieren foto und video dringend erforderlich und niemals mit selbeteiligung buchen. 1 2025-03-01 01:27:48.342387+00 de v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "bitte diese Unternehmen nicht buchen wegen Schäden die nicht vorhanden waren und über die Vollkasko ", "J1.03": "Sie müssen die Schäden akribisch dokumentieren Foto und Video dringend erforderlich und niemals mit "} {-0.017105924,0.08579412,-0.014377335,-0.06983146,0.021541689,0.08430788,-0.033215307,0.027894093,-0.013601656,-0.039239466,0.02390638,-0.0063511143,0.0107437335,-0.03272774,-0.073039465,0.02952293,-0.06637132,0.11514974,-0.0902484,0.06630955,0.049862985,-0.07014573,0.00936774,0.033852033,0.02721481,0.013204689,0.013530326,-0.022645134,0.053214043,-0.031136444,0.04455773,-0.019002637,-0.00046808727,-0.021928217,-0.004915724,-0.020284954,0.0068455082,-0.034817293,-0.074608125,0.08671214,-0.054091375,0.05371461,-0.09589899,-0.0958486,-0.012340265,-0.08523976,0.0058330465,-0.075918116,-0.021458598,-0.025443355,-0.048966,-0.01945253,0.013015931,-0.028802868,0.028656958,-0.09517916,-0.044838693,0.03162966,0.07057078,-0.01847219,0.055705514,-0.024178954,-0.010775353,0.046514016,0.027916146,-0.02083944,-0.033403017,-0.067738414,-0.029674077,-0.049512327,0.018918578,-0.074193574,-0.03268071,-0.038350865,-0.1052029,-0.065258734,-0.023521097,-0.088821374,-0.06418279,-0.07426551,0.09919853,-0.0056849066,0.03279144,-0.0052118413,-0.018561875,-0.039647017,-0.041360922,0.08631249,-0.04454085,-0.015039449,-0.05192225,0.12094241,-0.0834443,-0.050060082,-0.032866597,-0.059964165,0.0004821337,-0.07655595,0.028830966,0.08182106,-0.017222652,-0.0006765936,0.0087831365,0.043927312,-0.043778248,-0.019615483,0.045685492,0.03264939,0.008464488,-0.03914475,-0.035879046,-0.034059476,-0.06264836,-0.08886994,0.050887533,0.0039735455,-0.06831156,-0.07997086,-0.016790006,-0.041727215,0.08694863,-0.031366207,-0.018442238,0.005916689,0.09265012,-0.095878206,0.034021895,1.6562464e-32,-0.0014404821,-0.023809735,-0.02649285,0.035373025,0.056065727,0.022822162,-0.004717645,0.008667606,-0.023680415,-0.045614596,-0.010313071,0.020982726,-0.041275654,-0.0035194906,0.021568656,-0.02210176,0.02500221,-0.027549755,0.048349336,-0.021916978,0.027704395,0.0058716284,0.0038765483,0.07925163,-0.062330484,-0.048902,0.052977856,-0.036653124,0.046950243,0.055031903,0.07566634,0.057104573,-0.046791885,-0.10695932,-0.04615072,0.0072921976,-0.06625009,0.055437017,-0.021630751,-0.016436337,0.041352876,0.015455038,-0.08131146,-0.050736282,0.009631036,0.00018069995,-0.01094479,0.010540669,0.04307162,0.0011316868,-0.017305981,0.005421366,-0.007940368,-0.008145471,-0.0025215338,0.0902851,-0.034547504,-0.040167063,-0.0010947048,0.0085472865,0.053559147,0.06072042,-0.034087196,-0.04035553,0.005344652,-0.08295871,0.08309291,0.049779214,-0.023354074,-0.02241273,-0.06919678,0.03322056,0.008647688,-0.07010825,-0.00053291616,0.030135762,-0.086179115,0.05470149,-0.091962874,0.10746131,-0.07572353,-0.10833598,0.053718127,-0.14095657,0.043760836,0.0054720296,0.011490091,-0.06741827,-0.048426528,0.112648375,0.0018202317,0.03165089,0.017999433,0.03770641,0.03243233,-1.8008094e-32,0.046633683,0.06828192,-0.049708117,-0.008412576,-0.053832285,0.0851908,-0.011319199,0.04125993,-0.114705294,0.03449787,0.026021143,-0.031246753,-0.039505307,0.002211212,-0.08656088,-0.033375252,0.055082384,-0.029656721,-0.086866476,-0.08881495,-0.06180229,0.023213362,0.02141378,0.0013446375,-0.0054730624,0.040900853,0.061273634,0.013642006,-0.023151346,0.03341647,0.07311331,-0.022324538,-0.02868843,0.042808603,0.027553482,0.061397474,0.09997323,0.036792215,-0.08852925,0.014431276,0.0195081,0.092572376,-0.068295136,-0.0020752312,0.022806767,-0.01970304,-0.08030386,-0.055648446,-0.04194649,-0.10504332,0.038566444,0.045478377,0.043645907,-0.03331419,0.08006219,0.0016637286,-0.04622794,-0.00025224756,0.06147786,0.023215586,0.043910783,0.035868544,-0.0927294,-0.05028972,0.033227175,0.014026162,-0.09752501,0.026626498,0.060599323,0.03858625,0.04267573,-0.08335754,0.026940618,0.015361164,-0.07113936,0.05145721,0.022752387,0.040253893,0.0043925936,0.012328209,0.018647227,-0.049047016,0.012902334,0.025401022,-0.037478123,-0.06638392,0.049793724,-0.05274963,-0.027208574,-0.0051030004,-0.03793552,0.069249846,0.038076807,-0.023042958,0.07886264,-6.060051e-08,-0.0071572787,-0.062464196,0.0012446186,-0.02841583,0.037154198,-0.097628556,-0.009864199,0.03497175,-0.06597936,0.03860481,-0.049369723,-0.06589746,-0.025532043,0.06965382,-0.0020702481,0.10281182,0.10388721,0.01206888,0.033885773,-0.012565946,-0.027599078,-0.098365575,0.0034402853,0.0025317785,-0.100228906,0.045156255,0.0050634947,-0.014715044,0.09402314,-0.043538235,0.04445429,0.06881358,0.020171557,-0.02112213,-0.004142633,-0.020508181,-0.056898907,0.026557863,-0.050550275,-0.030485392,0.032319743,-0.052229382,0.1083117,-0.028795369,0.02840859,-0.020251708,0.11285084,0.036722142,-0.034489103,0.062014043,-0.06417792,-0.024226861,-0.0043985513,0.04087084,0.011793332,-0.05610874,0.10399944,-0.0050199525,-0.033739354,0.024938911,0.06302021,0.031282213,-0.014487186,-0.023489062} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:48:56.422039+00 2026-01-25 01:27:51.710653+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1226 google review_46 1 t 1229 Soho Club unknown Very friendly staff, good drinks and the club was very clean. The Dramatica Show was amazing! very friendly staff, good drinks and the club was very clean. the dramatica show was amazing! 5 2023-01-30 18:34:31.336452+00 en v5.1 P1.01 {O1.01,E1.01} V+ I2 CR-N {} {"O1.01": "The Dramatica Show was amazing!", "P1.01": "Very friendly staff, good drinks and the club was very clean."} {-0.019639838,-0.020628545,-0.01671921,-0.020407153,-0.0647982,0.056067888,0.018053355,-0.03857402,-0.07393907,0.0051873005,-0.00415036,-0.0064484035,-0.003777859,0.0022159533,-0.03221904,-0.087653585,0.0812218,-0.135751,0.032449666,0.004424498,-0.023024706,-0.036382545,-0.0047794534,0.070671536,-0.03412605,0.011951569,0.050263558,0.044710558,0.025439095,-0.022023534,0.0042696195,0.061760817,0.052761912,-0.0005327334,-0.05642979,0.094735146,0.10227192,-0.088303976,-0.0021829244,0.05526432,-0.014989549,0.014027243,0.04084963,-0.014647536,-0.0042812247,-0.057909627,0.015525753,-0.07570807,0.023155456,0.021475574,0.020423511,-0.0012125188,0.05686825,-0.09513693,-0.03357635,-0.02388515,0.0025126673,-0.036982764,0.0062748957,0.006617573,0.009964468,-0.033807002,-0.028011391,0.035576217,0.038814284,-0.081787206,-0.12457744,0.061164152,0.07956786,-0.089560516,-0.049701583,-0.043598343,0.108667955,-0.05439074,-0.06342708,0.030729037,0.008737772,-0.06671947,-0.027466848,-0.021690063,-0.011668724,-0.14252147,-0.04520613,0.07501659,-0.017146612,-0.08596591,0.035525948,-0.1346457,-0.020385813,0.04849059,0.03384275,0.17059056,-0.015070012,-0.050233483,-0.015012856,0.021229694,-0.033183392,0.030264284,-0.0030985405,0.07578034,-0.018014397,0.14667536,-0.00039555915,-0.07658962,-0.057985693,-0.0011375158,0.030613171,0.027021497,0.031062538,-0.026708715,-0.03244787,0.073934324,-0.028982949,-0.006157717,0.04007762,0.057933316,0.057970792,-0.00044024765,-0.070317544,-0.04792103,0.121340126,0.06415919,-0.01335701,0.040913798,-0.0118504865,0.07725225,0.08100284,-3.0917408e-33,-0.036559988,-0.012585528,-0.023751311,0.015036771,0.09914203,0.06321023,-0.08349038,-0.0070213648,-0.037695754,0.015351672,0.06715133,-0.00016771976,-0.035734586,-0.11688285,-0.014317362,0.022107922,-0.040231247,-0.0694126,-0.03977169,0.031818513,-0.036922358,0.08696691,-0.019459866,0.0036986903,-0.008333019,0.030787732,0.048059385,0.020372305,0.13614482,0.02144345,0.0042593395,0.031157572,-0.013765035,0.014031167,0.014347956,0.057708837,-0.09248375,-0.124085546,0.01811972,0.06118234,0.014630944,0.00816138,0.08131424,-0.0046676206,-0.10301115,0.032684363,-0.069733724,0.008542888,0.035288807,0.005208471,-0.017399294,-0.016459284,-0.013236823,0.09441373,-0.002282475,-0.005024687,0.011179231,0.043694254,0.027645899,-0.07287941,0.06508487,0.11681758,0.033798475,-0.041061435,-0.035166055,-0.02724087,0.03542235,-0.0178385,0.09857452,-0.09637479,-0.046384826,0.07113004,-0.010035611,-0.029068414,-0.08005149,-0.0051939944,-0.07018389,-0.021680789,0.04500988,0.10791115,0.03412689,-0.0030821932,-0.0071500205,0.009495246,0.001924288,-0.029158238,0.08026804,-0.07456194,-0.037292082,0.010885054,-0.005972244,-0.022203332,0.10687851,0.010896582,0.011488191,4.5057924e-34,0.11224178,-0.015632864,-0.010617371,-0.05456882,0.045375083,0.0018428601,-0.068630554,0.00033173166,0.0021599487,0.04896139,-0.033456597,0.04077012,-0.02337717,-0.038988695,-0.047643285,-0.042032912,0.07782166,0.018256595,0.00020202145,-0.07729354,0.050641995,0.079521134,0.015275074,-0.010380592,0.032059327,0.017287632,-0.00719362,0.025767956,-0.108053274,-0.025112338,-0.00562374,0.034838233,-0.0050585717,-0.04761318,0.0011457347,0.10841697,0.006433706,-0.04633778,-0.032248564,-0.022253482,0.02275126,-0.063141204,-0.04362777,0.09449537,0.009229126,0.0065173754,-0.043207966,-0.06001397,-0.097985335,-0.0057224,-0.026454996,0.0014293782,-0.08773094,-0.046422623,0.013162206,-0.042223945,0.04803529,-0.04359162,0.00073820254,-0.045678183,-0.07848395,0.015939219,-0.05944201,0.016077807,0.04457365,-0.05900201,0.025219608,-0.035592828,-0.035512347,-0.02097878,-0.049988233,-0.016073639,-0.025274089,0.15982065,0.018442484,-0.03371246,-0.014182983,-0.06086446,0.0029859762,0.029802805,-0.037778113,0.016718296,-0.022750186,0.018442059,0.05238184,0.07993485,0.06588323,-0.0071193427,-0.017896594,0.09989963,0.10020354,-0.03838595,0.054796424,-0.06470053,0.045797877,-1.9948104e-08,-0.023296626,-0.0099761775,0.0051178504,0.0123779345,-0.008349983,-0.09586971,-0.05000626,0.03374965,-0.035107832,0.07793367,-0.025106015,0.037966147,-0.031624258,0.021918928,0.052979685,0.029836042,0.046213496,0.052851934,-0.07272925,0.031032886,0.030825598,0.012619112,-0.028880017,0.04966618,-0.010436242,-0.0032160569,-0.02608937,-0.028918901,-0.055451166,-0.019457078,-0.0016773153,-0.005826237,-0.047274157,0.021858865,-0.047741663,0.011422854,-0.0465291,-0.031203734,0.016646467,0.021121467,-0.0402407,-0.06326808,-0.021374729,0.0041868207,0.017187972,0.08808371,0.00048177538,0.062554725,-0.022010982,-0.035621587,0.006138511,0.008474706,-0.037593473,0.030023854,-0.012874557,-0.017724475,-0.019948069,0.06847197,0.008118098,0.013521532,0.04148335,0.012701593,-0.08437119,-0.0014903747} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:10.967497+00 2026-01-29 18:36:00.529263+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1227 google review_47 1 t 1230 Soho Club unknown The worst long island on the Planet!\n\n....But the best reaction ever! After negative opinion kindly Bartender served us free better one long islands. Thanks guys! the worst long island on the planet! ....but the best reaction ever! after negative opinion kindly bartender served us free better one long islands. thanks guys! 4 2019-01-31 18:34:31.336452+00 en v5.1 O1.01 {} V- I3 CR-N {} {"O1.01": "The worst long island on the Planet!", "P1.01": "But the best reaction ever! After negative opinion kindly Bartender served us free better one long i"} {0.057999287,0.03887971,0.020072019,-0.009820269,0.017580057,-0.051357705,-0.007218678,-0.040024932,-0.02170621,-0.015450886,0.035193685,0.015587867,0.0021226422,0.017599458,-0.017170684,0.00024187252,0.008859147,-0.16206835,-0.0130621875,0.046251733,0.04873036,0.00054162747,-0.05616425,0.024863202,-0.02543605,-0.0049568904,0.05796027,0.016061932,-0.031424545,-0.05655693,-0.045018837,0.08699539,0.0077971397,-0.0137059335,-0.016701655,0.04028868,0.033430737,-0.049041566,0.02154635,0.02239194,-0.041955505,0.06384604,0.07807922,0.03823861,-0.017448496,-0.03213587,-0.012502585,-0.06371041,0.04809978,-0.032475732,-0.015076413,0.016279994,0.032749806,-0.067838125,-0.025088744,-0.07983472,-0.038104054,-0.020811759,0.047519397,0.03554732,0.0008272953,0.0038283875,-0.013539866,0.020496892,0.08357959,-0.043976046,-0.11222117,0.025735939,-0.10312587,-0.011039442,-0.012099133,-0.034045488,0.02925899,-0.035005778,-0.03861004,-0.046722688,0.00064545305,0.006777736,0.0004265745,0.08974178,0.040747475,-0.065312825,0.004279702,0.062998965,-0.0012342358,-0.050736655,0.02810259,-0.057029925,0.040122688,-0.0067622284,0.0042354167,0.03261833,0.07846709,-0.02573355,0.027604021,-0.012949909,-0.05343662,-0.019750584,-0.13094884,0.0635954,0.04005943,0.11533474,-0.061410513,-0.070747696,0.053261522,0.031727776,0.025112782,0.047075383,0.09373015,-0.006005063,-0.05784489,0.03359316,0.02265089,-0.021127928,-0.038335796,-0.035539698,0.07829387,0.030720511,-0.03317527,-0.06979664,0.058320083,0.039144948,-0.077291735,0.07497984,-0.0075339163,0.048083305,0.000679357,-2.8196884e-33,-0.036442656,0.014684734,-0.006161143,0.0015477128,0.15146221,-0.02223116,-0.04945455,-0.07537089,-0.039625052,0.058155965,0.025732653,-0.03740572,-0.07154503,0.02776521,0.0394832,0.04842574,-0.0012958954,-0.0031635053,-0.04064274,-0.064192116,0.013674518,0.032440126,0.07390911,-0.025298703,-0.078433014,-0.07378996,0.009262803,-0.02896736,0.019249871,0.003715315,-0.06805205,0.037655633,0.08133368,0.033874847,-0.004066117,-0.07973388,-0.047588963,-0.009798553,-0.03012507,0.028261682,-0.07394116,0.03500835,0.08041945,0.14459619,0.019210313,0.013809806,0.03136472,0.031041576,0.041110177,0.044222195,-0.062642045,0.0051438217,-0.04119198,0.038155,-0.045189917,0.014590104,0.028018748,0.060640737,-0.009688322,0.019110337,-0.03131613,0.046196643,0.0315729,-0.07325509,0.029710986,-0.022245815,-0.003551111,0.042714592,-0.014727303,-0.06763733,0.005004479,-0.0028203884,0.046777282,-0.059160594,0.018776188,-0.033450663,-0.026118364,0.0029988552,0.051508263,-0.02043412,0.05336583,-0.04266878,-0.013470612,0.04105481,-0.011336336,-0.0005929595,0.026016602,-0.12002577,0.036730073,0.0653331,-0.09593187,-0.028061965,0.08195697,-0.01829744,0.042379677,7.099651e-34,0.02069605,-0.09218501,0.037600096,-0.02575486,-0.058815643,-0.0683349,-0.023082163,0.038172733,-0.044460617,0.003696585,-0.048752464,0.022482548,0.028463937,0.039433885,-0.015197844,0.058903538,0.13783908,0.0041656694,-0.064515434,-0.07882685,0.08813247,0.012547134,-0.008865044,0.050792642,0.011178076,0.07634675,0.13115403,-0.02770698,-0.0434146,-0.09571023,-0.07131948,0.12148776,-0.00040122034,-0.02248028,-0.049127273,0.05733596,-0.009291533,-0.048596118,-0.0336403,-0.00072321645,0.050208386,-0.06711529,-0.030193096,0.014871553,-0.031760268,-0.039814398,-0.022378622,-0.01923486,-0.013605188,-0.028237786,-0.10406107,0.05320477,-0.084912576,0.07423752,0.03033953,-0.10370385,-0.009500019,0.05021234,-0.024754722,-0.035206597,-0.10324087,-0.019491648,-0.06476057,0.056015,0.11887006,0.0057447194,0.017965598,-0.016980547,0.023397485,-0.022068141,-0.011645068,0.032557476,-0.078131504,0.03103778,0.046127163,-0.008459497,-0.003924565,-0.10374344,-0.022141283,0.011027347,-0.0026855986,-0.0643224,-0.027653292,0.0062496667,0.041503813,-0.03331911,0.14675376,-0.028274719,0.021280479,0.025636204,0.04345244,0.03554362,-0.014906234,-0.04167927,0.071302906,-2.7487976e-08,0.025375962,0.0144814225,-0.0061909147,0.035229392,-0.019936878,-0.069580995,-0.031272847,0.13479291,-0.1045175,0.064819925,-0.07432499,0.0948009,-0.0054259803,0.0154401995,-0.033075314,0.025821673,0.014121044,0.042357177,-0.022666512,-0.03574153,-0.055105273,0.061960403,-0.010898706,-0.02506669,-0.08905684,-0.06526937,0.06487536,0.049035396,0.041918285,-0.049322955,-0.054317437,0.012517593,-0.149048,-0.021702465,-0.0081230225,-0.034623977,-0.03032887,-0.034874547,0.011856248,-0.0111636305,-0.12300941,0.03493409,-0.045750067,-0.00091566885,-0.007291305,0.030075515,0.013899501,0.09505478,0.03820634,0.002878131,0.04519067,0.0021690968,0.052805763,0.0265544,0.079634674,0.028025648,-0.041308273,0.019490095,-0.012104773,0.114650734,0.08068194,-0.0030738504,-0.038836304,-0.023069123} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:23.219244+00 2026-01-29 18:36:00.530969+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1228 google review_48 1 t 1231 Soho Club unknown Amazing place, worth visiting! Cocktails are the best and atmosphere is great. I highly recommend visiting this place! amazing place, worth visiting! cocktails are the best and atmosphere is great. i highly recommend visiting this place! 5 2023-01-30 18:34:31.336452+00 en v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Amazing place, worth visiting! Cocktails are the best and atmosphere is great."} {0.053802945,-0.03474854,0.006742775,0.03926707,-0.10255627,0.020071872,0.030957112,-0.085328296,-0.027131125,-0.06711116,-0.012893312,0.008844365,-0.01718778,0.005455919,0.027939428,-0.0034402711,0.11452866,-0.124990344,0.058005664,-0.033241864,-0.041756626,-0.0270261,0.05431304,0.08910992,-0.040362287,0.042763878,-0.029411193,0.1154047,0.03541885,-0.037043665,0.028703256,0.13778967,-0.045140143,-0.034636892,-0.032782674,0.045956768,0.048091453,-0.10078699,0.023768669,0.090209,-0.0018557815,0.09373002,0.04378005,-0.057609204,-0.03647553,0.019392526,-0.03973739,-0.0034448516,0.08670194,0.00582721,-0.017280176,0.05562737,0.050486755,-0.033222236,-0.022405405,-0.00892452,-0.08276477,-0.09099583,-0.006693691,-0.029485736,0.03322145,0.018210158,-0.078735694,0.037006374,0.023542063,-0.044959247,-0.062182937,0.10699257,0.10865253,-0.1267195,-0.030678112,-0.024671022,0.07322647,0.0026612568,-0.06882665,-0.0127634425,-0.02207411,-0.035817485,-0.06901437,0.055007942,0.053767424,-0.023461804,0.01921285,0.039005607,-0.053363983,-0.075500086,-0.017616343,-0.028738784,0.0084899245,-0.024219424,0.022019977,0.037636183,-0.0734226,-0.07935726,0.025140103,0.024854152,-0.014247743,0.035241716,-0.013970425,0.002330642,-0.0016824906,0.09559369,-0.011136386,-0.06012774,-0.030934483,-0.029080484,0.04408758,0.10191617,0.04767346,-0.031681754,-0.02717554,0.048386835,0.07070711,-0.060100626,-0.053365484,0.0893293,0.07530971,-0.034980673,-0.03580636,-0.023624673,-0.0066707553,0.048825886,0.04309663,0.049428266,0.0017674546,-0.0055768136,-0.0077627324,-2.9382365e-33,-0.02920258,0.022691282,0.035505112,0.07602416,0.08546967,-0.006518762,-0.06608439,-0.080992326,-0.08770821,0.011432925,0.022945112,-0.023973498,0.0022512898,-0.018282589,0.0060134926,-0.034952562,0.00085286197,-0.014367785,-0.07035124,-0.05427332,-0.0754148,-0.04683607,-0.039026044,0.054152127,-0.042483944,0.015265582,0.044580344,0.065495886,0.059921663,0.009479196,-0.032613575,0.058223512,-0.082876004,0.014993308,-0.018398577,0.03332721,-0.07815168,-0.017696556,0.028085902,0.04546885,0.002953866,0.03842813,-0.016037768,0.06891053,-0.019354947,0.027232302,-0.042558193,0.0080420775,0.10820725,-0.05767239,-0.08803778,-0.037033793,-0.043439947,0.112170026,-0.018592948,0.007932673,-0.01812961,0.02096356,0.06093263,-0.05089816,0.044224497,0.059541058,-0.092855886,-0.09424494,0.0004123258,-0.01820175,-0.014258048,0.0064869467,0.07346915,-0.010327945,0.030637216,0.02421959,0.08922423,0.0135314595,0.033990476,0.018004486,-0.0723055,0.0037640163,0.0801516,0.1045344,0.02886425,0.030669551,0.01787597,0.07038635,0.02487926,-0.06418797,0.053089947,-0.095158435,-0.060328685,0.011816403,-0.012576866,-0.028274655,0.08932915,-0.024949232,-0.020284647,5.07362e-34,0.12086942,-0.068864524,0.033394217,0.017719064,-0.0034000957,0.028227374,-0.051314056,0.02563193,0.0061763627,-0.0036628293,-0.0353856,0.09005976,0.06591049,-0.0100068925,-0.04608129,0.031608798,0.04677559,0.022712588,-0.019121425,-0.071091734,-0.052279223,0.027531037,0.012330719,-0.07383446,-0.05451395,0.02505327,-0.014367666,-0.028030304,-0.020968674,-0.026220845,-0.032813106,0.048359767,-0.024272518,0.00016207258,0.013833043,0.074725665,0.029350309,-0.09565418,-0.069401205,0.009244877,0.019364603,-0.010529639,-0.011641148,0.010234102,0.075953595,0.0069528027,-0.04371557,-0.050322253,-0.04794694,-0.083329506,0.030089423,0.03435058,-0.048455894,-0.021778764,0.009723666,-0.046781704,0.02142238,-0.034627926,-0.00449023,-0.03396607,-0.049403522,0.08582247,-0.023156263,0.042611048,0.08381752,-0.010986419,-0.027063925,-0.023508796,-0.015822418,-0.00088068104,-0.025020082,-0.034304127,0.0035645084,0.042990874,0.049273092,-0.033763725,0.093445815,-0.028629273,-0.0036026156,0.034875847,0.021888172,0.02695654,-0.058495175,-0.027806865,0.041820522,0.058850177,0.028549535,-0.026976094,-0.0270137,0.04882181,-0.0008579897,0.038868584,-0.10971039,-0.085646376,0.028100397,-2.139047e-08,0.019271623,0.022940917,-0.01115196,0.07903407,-0.061384838,-0.106333375,-0.0034537488,0.024458706,-0.050239086,0.06441957,0.016501468,-0.003629407,-0.037038706,0.007435873,-0.004377452,-0.029328737,0.07220173,0.12037314,-0.02117399,-0.017056644,0.046606574,0.059870005,0.02863339,0.022108117,-0.051257253,-0.023944495,0.05631684,-0.037276886,0.05549817,-0.08714527,-0.053921863,0.048328694,-0.029848872,0.04320293,-0.07661305,-0.058386333,-0.005342512,-0.06928342,-0.03437827,-0.046637822,-0.049524747,-0.18139249,-0.06281202,-0.012805816,0.0059871827,0.0057702456,0.08687169,0.062141646,-0.054685943,0.064466275,-0.04695624,0.030110827,0.026165375,-0.011321007,0.011112955,-0.013215894,-0.07166286,0.005216089,-0.009301215,0.012180111,0.0279518,0.037229154,-0.103311226,0.04044573} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:29.730702+00 2026-01-29 18:36:00.53237+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 398 google Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB 1 t 401 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown CONDUCTAS MAFIOSAS\nAlquile un coche con ellos atraves de Booking con el seguro extra que ofrece Booking (155€)\nCuando fui a recogerlo era un coche muy inferior al que yo reserve, pero aparentemente estaba bien de carroceria, el chico que me atendio, me reprocho que contratase el seguro con Booking e intento venderme un seguro extra (200€+) recalcando que solo así estaríamos cubiertos completamente, no lo entendí y le dije que no;\nEl viaje fue muy bien y por fortuna no tuvimos ningún incidente ni accidente con el vehículo.\nA la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y me llama y me dice que tiene unos arañazos, le digo que yo no he podido ser y me dice que si tengo fotos. Le digo que no vi necesario tirarme al suelo para hacer fotos y me dice que ellos me enviaron al mail con los no daños del vehiculos (una ficha con dibujo de lapiz...).\nMe ha retenido 380€ del deposito y las dos señoras que estaban nos trataron fatal,.\nPor último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiendo que teníamos que coger un vuelo); En GC estas obligado a rellenar la H Reclamaciones in situ (lo confirme llamando a la Policía local) lo que es absurdo porque con los nervios y la presion del vuelo no te deja pensar con claridad, pero aún así lo hice, y tengo claro que no voy a para de poner reclamaciones en todo sitio donde proceda.\n\nEn general después de estar mas de 1 hora alli este es como parecen que operan:\nA la gente la coaccionan para pagar un seguro abusivo que no existe\nAl que no lo paga, le hacen pagar por los daños que los primeros que los primeros hicieron\nNo alquiles coche con ellos SON MAFIAS conductas mafiosas alquile un coche con ellos atraves de booking con el seguro extra que ofrece booking (155€) cuando fui a recogerlo era un coche muy inferior al que yo reserve, pero aparentemente estaba bien de carroceria, el chico que me atendio, me reprocho que contratase el seguro con booking e intento venderme un seguro extra (200€+) recalcando que solo así estaríamos cubiertos completamente, no lo entendí y le dije que no; el viaje fue muy bien y por fortuna no tuvimos ningún incidente ni accidente con el vehículo. a la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y me llama y me dice que tiene unos arañazos, le digo que yo no he podido ser y me dice que si tengo fotos. le digo que no vi necesario tirarme al suelo para hacer fotos y me dice que ellos me enviaron al mail con los no daños del vehiculos (una ficha con dibujo de lapiz...). me ha retenido 380€ del deposito y las dos señoras que estaban nos trataron fatal,. por último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiendo que teníamos que coger un vuelo); en gc estas obligado a rellenar la h reclamaciones in situ (lo confirme llamando a la policía local) lo que es absurdo porque con los nervios y la presion del vuelo no te deja pensar con claridad, pero aún así lo hice, y tengo claro que no voy a para de poner reclamaciones en todo sitio donde proceda. en general después de estar mas de 1 hora alli este es como parecen que operan: a la gente la coaccionan para pagar un seguro abusivo que no existe al que no lo paga, le hacen pagar por los daños que los primeros que los primeros hicieron no alquiles coche con ellos son mafias 1 2025-08-28 01:27:48.34168+00 es v5.1 O1.02 {} V- I2 CR-N {} {"A1.03": "A la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y m", "J1.02": "Por último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiend", "O1.02": "Alquile un coche con ellos atraves de Booking con el seguro extra que ofrece Booking (155€) Cuando f"} {0.017908059,0.042064063,-0.06608645,-0.043892376,-0.06981772,0.022265065,0.075824395,0.045446947,0.010559868,0.0676978,0.07354113,-0.05066319,-0.009239732,0.035952024,0.050931696,-0.04922004,0.04093169,0.029469313,-0.059242126,0.096639685,0.063579656,-0.09859384,-0.047539987,0.023293564,-0.09547034,-0.043885104,-0.04285785,0.04438794,-0.04102277,-0.079846434,-0.035258524,0.089603595,0.057607293,0.015907405,0.058090813,-0.014879669,-0.03150331,-0.10273178,-0.09769823,0.03683761,-0.07856437,0.058659326,-0.090046234,-0.04500588,-0.0019416839,-0.03118025,0.05493953,0.10337347,0.04102611,-0.0327733,-0.015493565,0.034292523,-0.051377982,0.0027835462,-0.064030364,-0.01600006,0.038450472,-0.034597646,0.01604556,-0.006453739,0.053777806,-0.002535543,-0.028957432,0.032211684,-0.053053506,-0.026554508,-0.032129314,-0.008320781,-0.10849061,0.118462645,0.09829846,-0.06922755,-0.02116164,0.032918584,-0.008357834,0.017378451,0.07060565,-0.027449153,0.0068323514,-0.08380068,-0.005409402,-0.054862592,-0.016005768,-0.03641787,0.021093404,-0.106678106,-0.02476515,0.03677962,0.032338873,-0.021894936,0.022419134,0.057303544,-0.04039019,-0.033290964,0.04237392,0.047522683,-0.011500214,0.015331428,0.03664272,0.0060327495,0.1527501,0.09826804,0.097280435,0.022375384,-0.015167352,0.05540073,0.073083,-0.013487561,0.01330017,0.02111212,-0.106938235,0.029020518,0.020833824,-0.0478695,-0.084712625,0.027933227,-0.06152894,-0.0018757337,0.017762436,-0.025858749,0.014992419,-0.009002446,-0.008193545,0.030201199,-0.037730724,-0.12405867,0.031052329,1.8364332e-32,-0.015549878,-0.032153446,-0.042872682,-0.06408202,0.10012237,0.02830728,-0.04216173,0.03301068,-0.06929694,0.063453354,-0.03346847,-0.056392796,-0.015468649,0.015208179,0.037629068,0.03857439,0.015471346,-0.027654821,0.029759126,0.02072883,-0.03468604,-0.061278224,0.040006958,-0.043033466,-0.008057934,0.10201226,0.02618534,-0.089236274,0.014270036,0.036926933,-0.039505012,0.011234267,0.03510996,-0.025605993,0.00020121053,-0.041850075,-0.0037301667,-0.00031570374,-0.07932863,-0.03782759,-0.027526876,0.01049499,-0.041864872,0.047372192,-0.016693475,0.04336278,0.047480755,0.03563709,-0.036459923,0.08610045,-0.038440622,-0.029045679,-0.020834183,-0.10727326,-0.0884555,-0.052814614,-0.05863231,0.0029335478,-0.030753262,-0.058881726,0.0149050085,-0.03432444,0.01839208,-0.0007022189,-0.082787365,-0.017280914,0.010160924,-0.025023684,0.116038844,-0.026437346,-0.07890794,0.0009062221,0.0026031896,0.027651016,0.023921203,0.016441649,0.019632414,-0.0021222802,-0.012807137,-0.0040559294,-0.008735489,-0.010159947,0.07183453,0.038696006,0.0052319663,0.034894977,0.08690683,0.017615655,0.02109744,0.12694375,0.022232667,0.08806415,0.027223734,-0.069886036,0.07649394,-1.799245e-32,0.005354181,0.052632637,-0.034976967,-0.020742182,-0.03348814,-0.010433571,-0.025068905,-0.031791154,0.0873518,-0.08739837,-0.105737165,-0.10769481,0.09702378,-0.064318985,-0.053769737,0.0040412955,-0.04120091,-0.100319766,-0.0530994,-0.028634707,0.043409742,0.038714405,0.07943876,0.012285467,-0.02402439,-0.01447825,-0.057847083,0.058109652,-0.09108242,0.0109715415,0.09199809,-0.0697336,-0.012460921,0.04021624,-0.02170023,-0.012622337,0.044987623,0.08371952,-0.03185613,0.05391575,0.017513918,0.06405648,0.007757941,-0.012600474,0.014403067,-0.04862277,0.008978879,-0.13525708,0.049723994,-0.04541087,0.024493048,-0.080655314,-0.08430243,0.005086929,0.018330468,0.036344416,-0.047157437,-0.08381841,-0.053161677,0.0035609133,0.035090722,0.022228587,-0.05709257,-0.013029588,0.075709365,-0.0139534185,-0.018769598,-0.058334466,-0.007052682,0.032390267,-0.014785204,0.01163996,-0.047941945,0.013654617,0.010476446,0.029849546,-0.02176621,0.012959629,0.04468628,0.01345263,-0.05799839,-0.051068973,-0.00968358,-0.022509838,-0.015605845,0.0051089833,-0.03684022,0.05398229,-0.068621956,0.019738743,-0.043639146,0.022232704,0.011443529,0.005946551,-0.04762954,-6.4030566e-08,-0.0041955053,0.01886565,-0.008963087,-0.029067451,0.09437026,-0.11409602,-0.016594306,0.05877236,0.012695136,0.04275508,0.07918938,-0.038288727,-0.024036054,0.049657322,-0.06476693,0.05643896,0.10902099,0.009616907,-0.044425555,-0.06091013,0.07722344,0.01895715,-0.055864245,0.042873226,0.02232602,-0.005359766,-0.03136623,0.02223611,0.03392924,0.007266405,-0.027856683,-0.012504234,0.047054842,-0.07527101,-0.022648381,-0.07209172,-0.050812945,0.039323032,0.0062266616,-0.005345614,0.1021328,-0.054612383,-0.023159135,-0.009480662,0.023406107,-0.014732379,0.023343453,0.022084856,-0.017119858,0.017190581,-0.039701216,-0.07380861,0.06325525,0.030849319,0.05487215,-0.08025052,0.039332613,0.078164764,0.05269098,0.035015076,0.02075686,0.0046429643,-0.11156112,-0.09516788} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:36:06.391925+00 2026-01-25 01:27:51.25827+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1722 google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB 1 t 1725 Go Karts Mar Menor unknown No me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo carrera, tuvimos que dividirnos en dos grupos, unos con los 100 y otro grupo con 200-300, nosotros íbamos a pasar un rato, pero en carrera estaba el típico Alonso fracasado, pero que se piensa que va a batir no se que récord, circulando a toda leche y provocando que algunos tuviéramos que hacer trompos para no chocarnos, y los del circuito parece que les daba igual. Al iluminado lo vimos en la siguiente carrera que acabó Segundo y todo el rato mosqueado. Lo peor, los padres que pare un que lo animaban a hacer todo eso. Los coches iban bien aunque nunca sabes si les tocan la potencia vía radio. La dirección de los coches, muy muy dura. no me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo carrera, tuvimos que dividirnos en dos grupos, unos con los 100 y otro grupo con 200-300, nosotros íbamos a pasar un rato, pero en carrera estaba el típico alonso fracasado, pero que se piensa que va a batir no se que récord, circulando a toda leche y provocando que algunos tuviéramos que hacer trompos para no chocarnos, y los del circuito parece que les daba igual. al iluminado lo vimos en la siguiente carrera que acabó segundo y todo el rato mosqueado. lo peor, los padres que pare un que lo animaban a hacer todo eso. los coches iban bien aunque nunca sabes si les tocan la potencia vía radio. la dirección de los coches, muy muy dura. 3 2025-01-30 01:52:39.833374+00 es v5.1 A3.02 {} V- I2 CR-N {} {"A3.02": "No me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo", "E4.01": "nosotros íbamos a pasar un rato, pero en carrera estaba el típico Alonso fracasado, pero que se pien", "O1.02": "Los coches iban bien aunque nunca sabes si les tocan la potencia vía radio."} {0.021360682,0.03574143,-0.05525283,-0.12483395,-0.063151404,-0.010901003,0.06704996,-0.014686956,0.022330094,0.015035973,0.08575481,-0.048209477,-0.007979982,-0.0014519505,0.050011553,0.009182023,-0.032134976,-0.03716195,-0.015813703,-0.027344719,0.036023308,-0.022982331,-0.0682978,0.07817046,-0.091820456,-0.01555224,-0.024237588,0.022977684,-0.13840935,-0.037498407,-0.00032547102,0.093167566,0.107519105,-0.01898077,-0.027856877,-0.0098370975,0.051210996,-0.055826057,-0.008328429,0.105458826,-0.115426555,0.0027209348,0.01157884,-0.009666432,-0.11779926,-0.07765225,-0.0014340057,0.013383281,0.050159395,-0.04231116,-0.0053823707,0.054635372,-0.0059380187,0.050665524,-0.036170963,-0.020705504,-0.075909115,0.030019673,0.103663,0.040673044,-0.035546795,0.019893235,0.0027997752,0.027535837,-0.007359542,-0.030264465,0.051823,-0.032353014,-0.03178032,0.07596585,0.08908564,-0.046383135,-0.019785993,-0.03647265,-0.042565227,0.095522955,-0.0035079,-0.046637822,-0.058009796,-0.11846909,-0.011946632,-0.015043217,-0.016681388,-0.09164113,0.049949106,-0.016142907,-0.04174043,0.05903575,-0.03128071,-0.005778192,-0.08473967,0.08103177,-0.053582758,-0.02149142,0.02790994,0.02131374,0.12491088,-0.09828516,-0.001553696,0.03655371,0.15461254,0.03854416,0.02352821,0.002718061,-0.005637683,-0.008750516,0.04177621,0.0058062696,0.044412564,0.004885922,-0.09325831,0.047151558,-0.04435205,-0.052089535,-0.077015646,0.008654237,0.04444806,0.0010850679,-0.03939893,0.002467735,-0.010203313,-0.09052534,-0.030452862,0.020903718,0.03256173,0.022229474,0.023723928,1.7622172e-32,-0.014151768,0.024039797,-0.0009802995,-0.011201601,0.044403967,0.013336717,-0.06862579,0.059583627,-0.07809408,0.032264262,-0.08063181,0.065622106,0.00066693116,0.01965199,0.10365879,-0.022781316,-0.04345953,-0.040439576,0.023765156,-0.022408439,-0.062242307,-0.009669727,0.003277842,0.05852108,0.008384181,0.13363467,-0.0036156832,-0.07073745,-0.031655833,0.07634227,-0.012878328,-0.013312926,0.034370188,-0.03368721,-0.10144424,-0.01811361,0.05944362,0.022005383,0.0027211383,-0.038531747,0.032420717,-0.032287203,-0.044598743,0.04097181,0.018642614,0.017099429,0.023225663,0.0021815693,0.0077200853,0.053933647,-0.106857456,-0.028955802,-0.04630797,-0.029418588,0.021345928,-0.0004097657,-0.050175056,0.07200056,-0.039157074,-0.020133318,0.059797842,0.055502195,-0.017884884,0.023225904,-0.028885059,-0.0065253237,0.01184176,-0.008263555,0.15611617,0.039636508,-0.04591136,-0.012674996,-0.044148088,0.0054779244,0.053626675,0.057588127,-0.008567351,0.052856825,-0.0093726255,0.055671763,-0.009534016,-0.0042578927,-0.008100557,0.009395721,0.069165714,0.055366453,0.059466835,0.049480718,-0.087400824,0.08316849,0.00016018188,0.12978615,0.12108261,-0.064109854,0.0024051894,-1.7105754e-32,-0.01610681,0.09159905,-0.005951004,-0.039972164,-0.00491721,-0.006379528,0.009147455,-0.054021623,-0.05258679,-0.08495859,-0.031239644,-0.10893289,0.0027374655,-0.085907176,-0.06305146,0.0010277218,-0.00875974,-0.05802313,-0.030138284,0.0029084333,0.0011578231,0.029408699,0.07787403,0.027809657,-0.04949588,-0.061189733,-0.02509641,0.026885927,-0.024549486,0.030203614,0.067641966,0.022196967,0.037967656,0.06274566,0.042710908,-0.014887632,0.0042203367,0.06029778,-0.03785067,0.071850054,0.017457157,0.07583263,-0.038424164,-0.03596519,-0.058076616,0.036182307,0.069307365,-0.091987155,-0.04114991,-0.0014169968,0.020280637,-0.1335052,-0.0723853,-0.038567662,0.024047183,-0.002027812,0.0059385314,-0.0977279,-0.07137951,-0.021520356,0.023911593,0.049325667,-0.04085156,-0.027760968,0.047927715,-0.017064946,0.014534576,0.056080647,0.082512714,0.05364289,0.06480418,-0.02890027,-0.040947072,0.000894281,-0.02653148,0.024513267,-0.093606055,0.017915051,-0.037387498,-0.046228055,-0.009053506,0.04526409,-0.020716717,-0.06426333,0.034826696,0.03349345,0.027126078,0.06189389,-0.040539917,0.048898004,0.056086432,0.06419611,-0.004414465,-0.030566636,-0.055946928,-6.033888e-08,0.008986465,-0.0021112778,0.005891336,-0.0087051485,0.05317515,-0.03239486,0.021124663,0.0032203186,0.042740032,0.04222741,0.027601538,-0.038316812,-0.012325343,0.08568047,-0.0036278309,0.052580997,0.0038865085,0.02261845,-0.020084664,-0.029237399,0.033959508,-0.03826775,-0.034967788,0.049750056,0.034530785,0.015202344,-0.043018997,-0.021843236,0.05421528,0.049689956,-0.03792391,-0.057556223,-0.114848584,-0.029715918,-0.032320242,-0.09748693,-0.016639037,-0.032888338,-0.02620577,-0.025209254,0.08696288,-0.0740002,-0.10753778,-0.019285815,-0.023009589,-0.07312882,-0.0076791286,-0.030671263,-0.013609245,0.041095488,-0.044920493,-0.021608556,0.02993757,-0.0066969953,0.016004773,-0.067678474,0.011216201,0.037080258,-2.1711467e-05,-0.062366262,0.018156404,0.11109818,-0.058767807,-0.07680488} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:28.802891+00 2026-01-30 02:01:10.47129+00 22c747a6-b913-4ae4-82bc-14b4195008b6 400 google ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB 1 t 403 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Parfait à tous les niveaux !\nLocation à moindre coût, voiture impeccable et accueil au top. Tout s’est fait rapidement, sans mauvaise surprise. Une agence fiable et sympa, je recommande les yeux fermés !\n\nATTENTION : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne passez pas à côté, comme nous...... :) parfait à tous les niveaux ! location à moindre coût, voiture impeccable et accueil au top. tout s’est fait rapidement, sans mauvaise surprise. une agence fiable et sympa, je recommande les yeux fermés ! attention : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne passez pas à côté, comme nous...... :) 5 2025-05-30 01:27:48.341714+00 fr v5.1 O1.03 {P1.01,A1.01} V+ I3 CR-N {} {"J1.02": "ATTENTION : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne pa", "O1.03": "Parfait à tous les niveaux ! Location à moindre coût, voiture impeccable et accueil au top. Tout s’e"} {-0.0061107827,0.028561337,0.0050486615,-0.0594294,0.008360723,0.06321837,0.016876554,0.0462477,-0.00032778655,0.021289825,-0.013322977,-0.020279163,0.070649736,-0.061285388,-0.076146536,-0.04096011,-0.060590826,-0.0026676506,0.07390214,-0.0002216578,-0.0006657541,-0.01738206,-0.007847279,0.027230553,-0.016781025,-0.03294748,-0.09578409,0.02095285,0.007519077,-0.062013775,0.055386454,0.05268878,-0.029062212,-0.051365685,0.008637161,0.009107696,0.023311747,-0.035616323,0.014763215,0.06291314,-0.05954422,0.002024952,-0.1178344,-0.009944335,-0.015092361,0.016140277,0.043629266,0.0712743,-0.023241766,-0.01575022,0.020673707,0.004862091,0.07427137,-0.07492531,-0.052350868,0.005789831,-0.044211082,-0.10634235,0.05840028,-0.08376784,0.06605918,0.0006320388,0.031050099,0.027298821,-0.005012237,-0.0782239,0.016002262,-0.0333984,-0.046153847,0.03328904,0.047866896,-0.061521787,-0.053117976,-0.0058716782,0.017501248,0.034832217,-0.00023289723,0.010440902,-0.008291085,-0.11799754,0.05424925,-0.023695849,-0.0040943944,0.024238558,0.040722053,-0.10347282,-0.024125436,0.011516903,0.03567182,-0.08413459,-0.076886855,0.01204484,-0.026783654,0.0012287657,0.043085445,-0.014538693,-0.08615732,-0.06991174,-0.0682856,0.013175635,0.01781265,0.027960204,-0.033395093,0.099962406,-0.12282072,0.032430198,-0.054100588,-0.030004654,0.043650262,0.022738308,-0.016123123,-0.044259146,0.0068829553,-0.04423749,-0.025692383,0.052247334,-0.03418579,-0.07880403,-0.04226989,-0.04425002,0.031720582,-0.0073711816,-0.049679603,0.03326959,-0.015349211,-0.0052214786,0.0918647,9.867845e-33,-0.039084367,0.047287513,-0.048547547,0.03919935,0.024218684,-0.08418392,-0.091847956,0.01148027,0.02554288,0.10568701,-0.1302447,0.029924741,-0.058846626,0.03517961,0.024582118,-0.02425152,0.1246267,-0.017231004,-0.010665301,-0.030222282,-0.12108617,0.022246452,0.018877659,0.05106157,0.13270432,-0.05518384,-0.040896486,-0.03732386,-0.028283209,0.030836169,0.034214832,-0.1098715,-0.005271963,0.014276553,-0.049757645,0.00010414519,0.016290369,0.06866279,-0.010619058,0.028439943,0.017173558,0.019748751,-0.054996625,0.004303967,-0.03301174,0.09782269,-0.026825398,-0.016481372,0.076297164,-0.046951663,-0.027757768,0.029099168,-0.0694178,-0.050088104,0.0050813393,0.01023634,-0.036754463,0.07738355,0.037066966,-0.02070312,0.007601213,-0.046955,-0.008501535,-0.012303838,0.0059499666,-0.033458,0.048546094,0.06984691,0.045177333,0.016023224,-0.13485391,0.1088814,0.044078305,0.020730246,0.06710312,0.04052314,-0.036884546,-0.027090112,0.06156283,-0.018188244,0.0016252311,-0.01806395,-0.04961764,-0.048100233,0.09481163,-0.096187666,0.004165405,0.005867881,0.019163169,0.06358841,-0.0049587013,0.024386408,0.08495164,-0.012716229,0.033365767,-1.1412636e-32,-0.01286109,0.01999162,-0.042979423,0.021498779,-0.027837114,0.09129396,0.012263713,0.003404,-0.07695473,-0.010866464,-0.13624679,-0.020773524,0.07741484,-0.06419916,0.0134171,0.08846372,0.035560813,0.022989586,-0.085453935,-0.05931495,-0.05520523,-0.074180655,0.09480123,-0.085061185,-0.074513674,0.07810629,-0.0028125674,0.0041976525,-0.005803846,0.027701806,-0.01504153,0.05496582,0.0052128816,0.06813553,0.059088603,0.12065247,0.053574793,0.098951325,-0.05187583,0.022627292,-5.4989927e-05,0.05955507,0.05863001,0.04593491,0.068756394,-0.08204506,-0.093881235,-0.08929692,-0.03707655,-0.04676707,0.04520935,0.0062913587,0.019252993,0.008977615,0.08607236,0.04875451,0.02108891,-0.015167281,-0.05728532,-0.054756466,0.038103387,0.014770328,0.0024429709,-0.013335089,0.08344559,-0.029572003,-0.10277131,0.031393547,-0.005157395,0.04429526,0.04676551,-0.011899555,0.015126366,0.04561964,-0.018015286,-0.017377675,0.08501947,0.026373986,-0.018281242,-0.0065212585,-0.1599342,0.040717505,-0.0098663885,-0.012958028,0.010939117,-0.009245269,0.04971037,-0.010171315,0.06565113,-0.09249819,0.04611393,0.02186887,-0.031780023,-0.074544385,0.021713499,-5.988268e-08,0.033500727,-0.07308751,-0.021064082,0.020771015,0.0490264,-0.07632468,0.0018684008,0.01242699,-0.04647731,-0.05301978,0.0064909016,0.0034259725,-0.002518045,0.0034211972,0.017875802,0.0784429,-0.027124824,0.0630486,-0.0351656,-0.05479829,-0.011345876,0.042824186,-0.028471846,-0.045902498,-0.07460159,-0.03130125,-0.048830196,-0.08555081,0.025470164,-0.07600542,0.0031597633,0.031189047,-0.04247029,-0.03042557,-0.008758556,-0.029496977,0.052804526,0.09009561,0.013734571,-0.028026119,0.053834792,-0.0025165833,-0.00059015094,-0.009217696,-0.005733679,-0.012952611,-0.033537086,0.07369649,-0.015179596,0.07867234,-0.10482977,-0.021291701,0.05695229,0.08115004,0.01778881,-0.015222303,-0.043019023,-0.045386568,0.0023880953,-0.041805446,-0.012264797,0.08581473,-0.023999905,-0.027742377} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:31.968595+00 2026-01-25 01:27:51.267637+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 478 google ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB 1 t 481 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy contento con el servicio , el personal espectacular , muy simpático y amable ! El coche muy nuevo y en muy buenas condiciones\nMuchas gracias muy contento con el servicio , el personal espectacular , muy simpático y amable ! el coche muy nuevo y en muy buenas condiciones muchas gracias 5 2025-03-01 01:27:48.342144+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Muy contento con el servicio , el personal espectacular , muy simpático y amable !", "O1.01": "El coche muy nuevo y en muy buenas condiciones"} {-0.016340071,-0.05572635,0.025924072,-0.08383049,-0.053933907,-0.06737962,0.14883499,0.03176855,-0.0005031439,-0.021113856,0.04126982,0.037119206,-0.012493462,0.02903798,0.09157633,-0.02293778,0.030551195,0.0041111684,-0.03721385,0.042653646,0.13955222,-0.03247154,-0.061370637,0.07275954,-0.11405823,-0.033539746,-0.025453167,-0.05214956,-0.032733046,-0.11267778,-0.0072951308,0.13153422,0.076109216,-0.013133007,-0.023603657,0.0546514,0.06898635,-0.110190116,-0.009361473,0.04174026,-0.12882833,-0.030351121,0.0095717525,-0.04626677,-0.010891909,-0.08497001,0.042254183,-0.04580933,0.032542348,0.025268722,-0.1235698,-0.08707393,-0.055977874,0.0029895054,0.015315699,-0.0070066894,-0.058270235,-0.01067692,0.006616441,-0.019155035,0.040464886,0.03137006,0.036492135,0.11263274,0.05871268,-0.05753711,0.014224105,-0.0074575758,-0.046224836,-0.019154593,-0.0038655403,-0.04908686,0.03484654,0.061923534,-0.03559674,0.035410777,0.031108364,-0.017695276,0.0027200493,-0.020434722,0.008516429,0.0017207585,0.036396444,0.0134225115,0.005499514,-0.016950881,-0.054406043,0.0066122725,0.008208086,-0.054638617,0.042197812,-0.0016216899,-0.015630659,-0.019277409,-0.037214495,0.010595028,-0.049556423,-0.10475531,-0.03704306,0.046653684,0.04191445,0.057374008,0.16773416,0.067026936,-0.0318596,0.042341083,0.0061393064,-0.038661078,-0.018147333,0.06378654,-0.07113864,-0.024025772,-0.025033362,-0.00088225637,-0.006395768,0.016970428,-0.016396005,0.0068538394,0.057201453,-0.030188302,0.009173513,0.023286764,-0.057561044,-0.06858139,-0.03460416,0.0076863808,0.069277115,9.434094e-33,-0.03767793,-0.01375892,0.05780552,0.08881925,-0.03686102,-0.0053748474,-0.064267255,-0.0048570316,-0.013990476,-0.010180191,-0.034627292,0.16482969,0.05865128,0.11206966,0.020247268,-0.03231513,-0.03768929,-0.015910383,0.046833135,0.04508364,-0.03867315,-0.016450878,-0.008609338,0.0098712435,-0.014125406,0.01870354,-0.02648671,-0.031034866,-0.004117926,0.04204419,-0.029592995,0.017888725,0.0036017103,-0.0097602485,-0.05344977,0.0035553223,-0.018657727,-0.016519094,0.013546252,-0.016616771,0.0047944253,0.019723367,-0.04695044,0.032782536,-0.060941212,0.03363119,0.055897616,0.022060828,0.059736468,-0.01474877,-0.08125662,-0.08716056,-0.080260746,-0.05651684,0.004571377,0.055565193,-0.019431679,0.03744482,0.0014199531,-0.065187044,0.038186252,-0.069762796,0.046148803,-0.051514894,0.0060680057,0.016573057,-0.016469177,-0.01746461,0.10052125,0.07877319,-0.12304175,-0.0053122723,-0.049129523,0.05228817,0.016573226,0.020428017,-0.013803384,-0.03935274,0.009936869,0.058999196,-0.029412273,0.03226735,0.003996536,0.041090064,0.06976338,0.054077446,0.07235585,0.0077209254,-0.022939548,0.11443315,-0.096855275,0.03956237,0.05160777,-0.025474502,-0.01986636,-1.1141424e-32,-0.045707244,-0.016884532,-0.005313675,0.07527863,-0.0025160904,0.010228084,0.08945646,0.002899582,-0.007937881,-0.00885657,-0.074271865,-0.09300802,0.07982609,-0.026242174,-0.09017734,0.074829385,-0.042851526,-0.058326844,-0.069161355,-0.018839829,0.02256971,0.108543195,0.015315938,-0.033009164,-0.06463791,-0.009024278,-0.10727044,-0.048209623,-0.05742237,-0.037780274,0.0017418803,-0.054879565,-0.022098295,-0.01533702,-0.052774537,0.023011627,0.044978805,0.0529686,0.0032861505,0.027830431,0.0045764046,0.056742568,0.028979324,-0.0005827203,-0.0134277595,-0.0050338344,-0.028803576,-0.15730412,-0.030183418,-0.0272052,-0.02522576,-0.059289187,-0.03014052,-0.06637898,0.014467407,0.0068036597,-0.059853934,-0.08033566,-0.11299719,-0.01598264,0.021749852,0.014978099,-0.06199874,-0.001844951,0.13631944,0.015207298,-0.012059875,-0.008196586,-0.033897318,0.024207605,0.05692586,-0.033145566,-0.07222003,-0.00048362778,-0.010645982,-0.0709875,-0.039572336,-0.08577419,-0.045725096,0.017793512,0.038425777,-0.017739411,0.0112600755,-0.03631165,-0.039129246,0.02493466,-0.013615713,0.024193153,0.024620224,0.02445062,-0.02929534,0.02765404,-0.13342781,-0.016407037,0.02730366,-4.0708198e-08,-0.0078985235,-0.008182095,0.03650102,0.015222452,-0.00059515,-0.027806824,-0.019171808,0.03240395,0.0034838368,0.043557744,-0.029451912,-0.009733557,-0.040552784,0.07214007,0.07471689,0.059123613,0.10275061,0.074498236,-0.02033382,-0.07665749,0.10998282,0.008935852,0.009142809,0.043444067,0.018240785,0.07451133,-0.021063574,0.01213919,-0.05203423,0.030375514,-0.013304123,0.0006679114,0.007434606,-0.07466061,-0.08554322,-0.08372591,-0.04122482,-0.028740738,-0.0183809,0.027310055,0.064504206,0.013352066,-0.030831393,0.042534627,0.0040173964,-0.023208527,0.008286223,0.013492162,-0.040089846,0.026705498,-0.019322209,-0.054996926,0.04305875,0.040226046,0.024985543,-0.04520369,0.058385957,0.056388326,0.0027760058,0.036136523,0.06298853,0.066524476,0.04111778,-0.13180064} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:31.647344+00 2026-01-25 01:27:51.525104+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1231 google ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB 1 t 1234 Soho Club unknown Nice friendly club. People who working there very friendly and polite nice friendly club. people who working there very friendly and polite 5 2025-01-29 18:34:31.336452+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Nice friendly club. People who working there very friendly and polite"} {-0.021078754,-0.040743377,-0.0048507187,0.043259263,-0.06875759,-0.03311111,0.091430396,-0.03871736,-0.0038319915,0.013556497,0.07245664,-0.04246337,-0.04103472,0.007611772,-0.02017725,-0.046338674,0.025035962,-0.16490036,0.06661765,-0.09143167,-0.07190317,-0.011783755,-0.000245885,0.04581772,-0.101741455,-0.0014638999,0.05322482,0.09080659,0.013094461,0.017661119,-0.05397041,0.034899194,0.06652099,0.0351316,-0.044866905,0.078725934,0.08734227,-0.041566826,0.010542922,-0.01288509,-0.055365775,0.031107446,0.05026468,0.007371352,0.002122422,0.0017807652,0.032085273,-0.00196932,0.009394724,0.05307173,0.06971924,-0.035306033,0.017731225,0.0075335475,0.07383924,0.006340705,-0.073501326,-0.009499062,-0.015689064,-0.03737947,0.06302787,-0.054887615,-0.08450378,-0.0032130121,0.0051518003,-0.04401145,-0.07521589,0.04470092,0.042866226,-0.13106588,-0.021605432,-0.054333933,-0.00045618368,0.040464982,-0.03628262,-0.05245912,0.03397263,-0.017003592,0.049654618,-0.028153557,-0.0118319085,-0.049475104,-0.027402217,0.061606377,-0.025171652,-0.081552826,0.03751669,-0.027411643,0.025816385,0.012736001,0.018528627,0.13403735,-0.1155511,-0.023226786,-0.08192485,-0.016757753,0.038984045,0.08650127,-0.09130891,0.109821945,0.043552328,0.17926031,0.020671839,0.025136476,-0.044233844,0.07057775,-0.023309488,0.10115793,-0.020654602,0.005894798,-0.08006769,0.07576705,-0.12459603,0.0015832817,0.026036777,0.02385647,0.06730545,0.0017302929,-0.06994996,-0.035042025,0.0149033945,0.092475876,-0.060808398,0.043917276,0.018049164,0.003383922,-0.025893586,-1.7201806e-33,-0.0026957593,0.04754721,0.000642151,0.02226913,0.028899651,0.008160645,-0.07077667,0.067875,-0.008976574,0.015152798,0.058375604,-0.0006040683,0.048145972,-0.057874426,0.032409508,-0.02115118,-0.014182276,0.002010877,-0.10828013,0.034568205,-0.037659638,0.09104922,-0.007478412,0.05759671,0.0002963847,-0.020773279,0.038267113,-0.020591248,0.13900839,0.027914457,0.08860576,-0.047129173,-0.03685269,-0.014977917,-0.023184855,0.062191755,-0.024028538,-0.07690911,-0.01768778,-0.028376825,-0.027980426,-0.013263576,0.021000713,0.027240314,0.03192989,0.06499886,0.0024302856,-0.027867407,-0.013604584,0.016177805,-0.03388994,0.008447893,-0.039478216,0.13119926,-0.028933866,-0.027160183,0.0036155747,0.08199459,0.032432925,-0.035826713,0.030203572,0.086487904,-0.026500862,-0.043141343,-0.027515037,-0.083147325,0.018275011,0.022070983,0.09806645,-0.034821503,0.05422972,0.059282806,-0.015875915,0.056085058,-0.11517989,0.07328271,-0.08100508,0.030217992,0.03765303,0.08604886,-0.023813615,-0.01650302,-0.05513577,0.0036664326,0.054064576,0.061487816,0.010598681,-0.054924227,-0.0544385,0.0529435,-0.078624874,0.011559135,0.091261886,0.052278783,0.01277238,1.7816075e-34,0.106818095,-0.041104015,0.0025583208,0.00218606,-0.042177036,0.043313026,-0.041293286,0.055309724,-0.04395024,0.087353095,-0.07025914,-0.039254136,0.051883753,0.010242211,-0.02326678,-0.029997291,0.079167694,0.015752314,-0.073556416,0.016542776,0.009664935,0.0465815,0.003527618,0.09141539,0.022021709,0.030902999,-0.06284599,0.004079969,-0.1212144,-0.06587045,-0.019425958,0.031026725,-0.059296507,-0.033175763,0.00308002,0.03051613,-0.027362667,0.019676425,-0.018432073,0.023463905,0.032898854,0.018818825,-0.07209571,0.028929608,0.0239263,-0.034747966,0.0032160261,-0.10207673,-0.104302466,-0.04470522,0.021831501,-0.04250395,-0.029600203,-0.05420045,0.018615495,0.026416982,-0.06440482,-0.015092799,-0.023472121,-0.016080031,-0.016780961,-0.033078246,-0.036077246,0.15027285,0.00650133,-0.0712378,-0.07480653,0.034246214,-0.026003402,0.0069631482,-0.00042920248,-0.011605076,-0.037430234,0.07622233,0.009501219,-0.07885628,0.1053456,-0.057997666,0.009044614,-0.011512742,-0.023701414,-0.035318576,0.022145558,0.026021281,0.0071269074,-0.039612785,0.07954384,0.03169083,0.025052996,0.00870333,0.028626043,0.004631025,-0.057062518,-0.033887643,-0.008401996,-1.9961472e-08,0.023394607,-0.012578751,0.005966553,0.062043592,-0.005469511,-0.09964258,-0.047116954,0.059754793,-0.04345741,0.049983345,-0.0031846806,0.021388372,-0.06294093,-0.028337343,-0.004065406,0.056883447,-0.006576949,0.046861872,-0.051847197,-0.025258867,0.030198768,0.027099244,-0.054364577,0.102982484,-0.011399047,-0.047983266,-0.008410436,-0.05625117,-0.010558094,-0.057622746,-0.07189222,0.079779066,-0.025310185,0.003357296,-0.0032053092,0.041773792,-0.009189603,-0.10292462,0.0033576791,0.00038082356,-0.02497984,-0.06432226,-0.052684344,-0.019970916,0.049409363,-0.031730566,0.018434629,0.006508147,-0.020118624,-0.05012258,-0.0040304647,0.043189097,0.027142748,0.0130903125,-0.044470966,-0.01507162,-0.01991556,0.01361727,-0.015273425,0.027156366,0.04297002,0.06226861,-0.03398119,-0.0026735303} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:57.874973+00 2026-01-29 18:36:00.538186+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1232 google ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE 1 t 1235 Soho Club unknown The space is great and the atmosphere is welcoming. We also got outstanding service from the bartender! :) the space is great and the atmosphere is welcoming. we also got outstanding service from the bartender! :) 5 2021-01-30 18:34:31.336452+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "The space is great and the atmosphere is welcoming."} {0.01705034,-0.024426544,0.073734194,-0.010057312,-0.051296636,-0.03529168,0.05656919,-0.09523858,0.0021632568,0.009358208,-0.036846556,-0.0018974361,-0.00026307642,0.010438151,0.035015043,-0.022722803,0.060099468,-0.14392641,-0.0066547687,-0.018202117,-0.057503987,-0.020106386,-0.039585657,0.010632401,-0.06305669,-0.0019935216,-0.044873632,0.08241731,0.030540593,-0.04060154,-0.03206945,0.07375439,0.025824454,-0.023858374,0.0029635942,0.095727116,0.08113839,-0.16916475,-0.031740155,0.028463202,-0.00864132,0.02140403,0.03307982,0.05357708,-0.018609371,0.0014338345,0.006263321,-0.06928085,0.09697469,0.011005791,-0.018398711,0.015153135,0.07199927,-0.004145818,-0.019209405,0.0050294055,-0.0323757,-0.084230036,0.0208886,-0.08943885,-0.011322959,0.025364896,-0.049992457,0.05180498,0.048118312,-0.10113798,-0.12946615,0.069841094,0.047878202,-0.06934953,-0.060208537,0.026208447,0.030237887,-0.020774053,-0.0072512664,-0.0024705436,-0.0051308502,-0.014334431,0.050612252,0.016515695,0.115720406,-0.047548402,-0.093120106,0.07058453,-0.11106018,-0.065990806,-0.012258294,-0.02314575,-0.03636261,-0.005316642,0.033874113,0.049091782,-0.016183026,-0.02601953,-0.03981648,-0.0135564245,-0.0634651,0.020064263,-0.0015544237,0.047536697,0.02454437,0.13583852,0.026049199,0.004329214,-0.044049196,0.008633186,-0.017841276,0.12171866,0.037043706,-0.055797264,-0.01294969,0.035044935,0.030446472,0.030953944,-0.03260731,0.087914325,0.037485868,-0.032541208,0.0064015584,-0.01669238,0.06553813,0.04079157,0.03563676,0.059208993,-0.011233203,-0.011761939,0.054317724,-4.4910092e-33,-0.045164578,0.01143276,0.06545792,0.049520224,0.08758352,-0.0027900143,-0.09797244,-0.0045859125,-0.11121446,0.008701688,-0.013110766,0.0267051,0.030087266,0.0039657117,0.013603248,-0.011448269,0.009402357,-0.049788356,-0.047448814,-0.056390513,-0.0811698,-0.033537474,-0.012919769,0.0624151,0.04688098,-0.0007785549,0.0375678,-0.05085511,0.009833127,0.015594681,-0.049494132,0.03939311,0.009050393,0.04537957,-0.0056030266,0.035900846,-0.05627976,-0.048167855,-0.026812032,-0.0059367768,-0.039896373,0.026547816,0.025065077,0.041974533,-0.017350005,0.0406984,0.021062085,-0.061264995,0.05920838,0.045635946,-0.06841561,0.027054962,-0.025611866,0.083817184,-0.01030987,0.013378259,0.03742682,0.06647403,-0.04354238,-0.07692915,-0.0036056128,0.016530793,0.020285783,-0.053353656,0.058675405,-0.0132470075,0.027732382,0.033740666,0.046234746,0.019523175,-0.036759667,0.039619952,0.00878409,0.011016919,0.0049220226,0.0077717104,-0.05206368,-0.037543062,0.04045867,0.046559162,0.046953503,-0.009444225,-0.01578988,0.023112694,-0.008880873,-0.032855935,0.09395943,-0.087777086,-0.04626372,0.02990426,-0.01089512,0.028012434,0.104576916,0.050654482,-0.031332944,1.528413e-33,0.08221276,-0.029639179,-0.0023481664,-0.06045959,-0.042242292,0.0038744824,-0.043631326,0.043244023,-0.07636617,0.09291524,-0.06247285,0.08846809,0.041314278,-0.0174922,-0.07370887,0.015127652,0.074696526,0.029839162,-0.06040355,-0.05433548,0.019080954,0.12057453,-0.010727246,-0.058296926,-0.045441147,0.047832064,0.029038623,0.0009332862,-0.062673844,-0.06008483,-0.06983887,0.09304322,-0.05861063,-0.042643394,0.022197494,0.03371732,0.07453886,-0.023392862,-0.06759778,0.016808378,-0.020415656,-0.0052785617,0.0043629543,-0.018957188,0.0018008377,0.009731616,0.022009142,-0.04172413,-0.08269473,-0.03860386,-0.013358965,-0.067424215,-0.054787215,-0.028718201,0.0058498946,0.003705718,0.057166696,0.014853044,-0.018636722,-0.036057282,-0.006779293,0.019922368,0.012882586,0.03290409,0.068615735,-0.11988224,0.040536914,0.029022573,-0.098549016,0.0018939122,-0.0062713916,-0.020444363,-0.09216898,0.11501389,-0.004386612,-0.028417148,0.17160714,-0.07015491,-0.00940664,0.012913965,-0.013113991,0.05625339,0.031999107,0.049259525,0.06092853,0.0149014965,0.05233702,-0.010833522,-0.026834065,0.056972113,-0.005987912,0.048470195,-0.06404502,-0.052847266,0.05424599,-2.1141767e-08,-0.04805211,0.032016303,-0.021593755,0.056009773,-0.05703344,-0.083550155,-0.0048596147,0.025653962,-0.077493206,0.003130397,-0.008198762,0.03418903,-0.09749452,0.054452512,0.06675425,0.037381694,0.022004098,0.046872154,-0.05228635,-0.0155078275,-0.04405558,0.086004905,0.0019777946,-0.004482708,-0.08296366,-0.017202627,0.03861328,-0.023686426,0.07481147,-0.06411179,-0.038294967,0.005280701,-0.06884464,-0.006826701,-0.07083683,-0.011361847,-0.027155748,-0.06283464,0.002051295,0.0007501317,-0.05840439,-0.099569425,-0.0628493,0.019173011,-0.072269246,0.085011765,0.04743592,0.07834632,-0.060623102,-0.011096476,0.008186488,-0.0499832,0.03391817,-0.024268974,0.027411668,0.015393795,-0.05167104,0.036448512,0.07379543,0.065248765,0.054079812,0.028465541,-0.1628553,0.050231725} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:06.984534+00 2026-01-29 18:36:00.539514+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1233 google ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB 1 t 1236 Soho Club unknown Excellent service. Even saw management take care of customer concerns. As long as you dont mind LGBTQ this is a great place to spend a friday. excellent service. even saw management take care of customer concerns. as long as you dont mind lgbtq this is a great place to spend a friday. 5 2020-01-31 18:34:31.336452+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"A3.01": "As long as you dont mind LGBTQ this is a great place to spend a friday.", "P1.01": "Excellent service. Even saw management take care of customer concerns."} {0.009628882,0.0042816936,0.018559597,0.02503828,-0.07147578,0.010470976,0.0036325757,-0.1003786,-0.03941597,-0.054229483,0.044664707,0.08204646,0.0073491223,0.07881477,0.040476732,-0.042210955,0.12482594,-0.066370085,-0.02976704,-0.031148175,-0.107270345,-0.0100294305,-0.0007747272,-0.0099613415,-0.10963301,-0.0372135,-0.013487881,-0.02108899,-0.014049518,-0.03329682,-0.016046336,0.035245236,-0.015722536,0.012069967,-0.021145565,0.060493156,0.020287262,-0.10273168,0.02228871,0.01154204,-0.028248629,-0.021745672,-0.0313838,-0.044091824,-0.019032802,-0.043810993,0.07631977,-0.033221185,0.015116928,-0.059383575,0.020657677,-0.07438583,0.054380283,-0.029297777,-0.08595088,0.031057743,-0.014383299,-0.10383594,-0.024303805,-0.033838764,0.047489226,-0.015916921,-0.08454615,0.021355588,-0.0039391164,-0.005731541,-0.06112736,-0.012530895,0.045483615,-0.06563709,-0.043780975,0.026520038,0.03394496,0.068996966,-0.0033532768,0.044637255,0.0356235,-0.07148937,0.0583617,-0.03290593,-0.0017861892,-0.048359614,0.012839408,0.08000191,-0.0030866754,-0.039550167,-0.006537501,0.0038418965,-0.062036246,0.028715644,0.01824579,0.09821509,0.040900517,-0.111596234,-0.02535795,-0.020785801,-0.05647063,0.016601384,-0.025340298,0.044597283,-0.012219116,0.10267872,-0.0015982934,-0.0377182,-0.08305209,-0.040583167,-0.048797958,0.058250807,-0.040446755,0.0060520535,-0.04928553,0.006562171,0.030284176,-0.024303883,0.0011011802,0.045476396,0.036541432,-0.013082185,0.09735467,0.06573184,0.0019796735,0.080873616,0.053712018,0.05967764,0.0036149502,0.045843225,0.07817381,-1.8779248e-33,-0.043478426,0.08404758,0.01651068,-0.10016097,0.09161608,0.07570775,-0.048946716,0.0035385212,-0.019190134,0.05793649,0.01796266,0.035220902,0.010400876,-0.010691091,-0.041155342,-0.039402895,0.006503785,0.0746834,-0.06394779,-0.055933453,-0.05502659,0.0057344083,-0.055226024,0.07780278,-0.0099626845,-0.0075731743,0.06630369,0.09265521,0.13277462,0.038514312,-0.060216554,0.0036506061,-0.0045972327,0.0037589327,0.0647565,0.07536185,-0.035502143,-0.021594163,-0.045875728,-0.06653407,-0.015815083,0.004873993,-0.06937484,-0.004519002,-0.020701217,0.115543686,0.010625964,-0.0799275,-0.009478215,0.023373613,-0.017126575,0.07030192,-0.028379554,0.119759426,-0.029790753,-0.010764678,0.03104709,-0.05597568,0.074060604,-0.024135068,0.045043517,0.034271054,-0.015553557,-0.013274515,-0.06717536,-0.061986152,0.07669228,-0.04323145,0.036036715,0.011038452,-0.0006007509,0.043089163,0.12839593,-0.006931889,-0.02596387,0.04563144,-0.12667948,0.026538296,0.094154246,0.039385892,0.067710124,0.02600767,0.06769215,-0.02446118,0.050684195,-0.041031774,0.059801668,-0.058544893,-0.0701438,0.042698268,-0.02942306,0.045841876,-0.0076119737,0.050096422,0.050202098,-3.053217e-34,0.012497621,-0.075718395,0.024031837,0.02831477,-0.032136243,-0.055491984,-0.08978948,0.0073319646,0.075635895,0.08483968,-0.016649231,0.0013425492,-0.0072538606,0.037604295,0.019178431,-0.018482378,0.05695991,-0.06376343,0.00048285362,0.015967177,-0.013200833,0.11294133,-0.026697988,0.05054188,-0.024938503,0.08667585,-0.022832839,-0.044855244,-0.0052935877,-0.070617996,-0.0691388,-0.05311796,0.009449682,0.022632675,-0.010723853,-0.042983938,0.02529428,0.09650288,0.036756583,-0.038406663,0.062222816,0.010255331,-0.013239647,0.040747672,0.0103524355,-0.00510069,0.0003754905,-0.018701112,-0.039241225,0.003436838,-0.174009,-0.0054664467,0.004235461,-0.08134276,-0.023777094,-0.0858869,0.010158097,-0.015815826,-0.11942645,0.084501326,-0.025142228,0.037662093,-0.013137281,0.021267405,0.084404305,-0.098025665,0.0141087035,-0.09399877,0.0011573549,0.014281522,0.011104045,-0.026549114,-0.04288101,0.011137256,-0.023049576,-0.053964227,0.085652664,-0.07267077,-0.050875034,0.04417965,0.024425065,-0.0856872,-0.000387833,-0.025256686,0.06479426,-0.052511305,0.02421695,0.020976197,-0.020381393,0.04958997,-0.08482087,0.017378382,-0.09524631,-0.038759246,0.056468718,-3.170274e-08,-0.020281082,-0.03225894,0.030635245,0.0076134345,0.014330844,-0.08969614,0.0056732483,0.06280363,-0.007942014,0.05175402,0.05663622,-0.07604163,-0.073453315,0.072010584,-0.011166889,-0.0548618,0.113713235,0.0302306,-0.0075809844,0.00031872475,-0.00053214614,0.03214329,0.03289098,0.022998573,-0.033199098,0.05997387,-0.0008118202,-0.016611306,0.008130216,0.028400669,-0.004758112,0.043711934,0.023261521,0.043472763,-0.026015494,-0.05445345,-0.03303703,-0.031945094,0.060936045,-0.031480007,-0.010611868,0.0019661116,-0.03017293,0.016154163,0.039297815,0.05551698,0.019794488,0.012505609,-0.057996593,0.031238843,-0.059351556,0.003875465,0.04624199,0.007468259,-0.00040905862,-0.022157349,0.062635385,-0.06349957,0.017746335,0.09239947,0.014653455,-0.103582986,-0.115349025,0.012375495} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:15.403894+00 2026-01-29 18:36:00.542464+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1235 google ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB 1 t 1238 Soho Club unknown Nice to come back home to vilnius, and to know you can relax. Loved loved loved. Xxccc nice to come back home to vilnius, and to know you can relax. loved loved loved. xxccc 5 2019-01-31 18:34:31.336452+00 en v5.1 E4.01 {} V+ I3 CR-N {} {"E4.01": "Nice to come back home to vilnius, and to know you can relax. Loved loved loved."} {0.021985078,0.016063234,0.05681101,0.047651358,0.014498057,0.058785122,0.07314262,-0.06650537,-0.013266194,-0.045094505,0.007402108,0.0021465023,-0.00018209314,0.016652336,0.0017318438,0.04244056,-0.013636224,-0.036200587,-0.11105232,0.021649681,-0.06081058,-0.013263208,0.009106731,0.06833908,-0.013379053,0.0334943,-0.04525718,0.06098378,0.05944641,0.014443978,-0.05716013,0.07045034,0.019719908,0.022557955,0.04731466,0.0031992898,-0.028356405,-0.12384379,0.00016138966,-0.021816453,0.052394796,0.046933662,0.028161049,0.02588539,-0.061051466,0.030630399,-0.08454964,-0.017506823,0.06553997,0.15001924,-0.03744937,0.006367626,-0.022617286,-0.03149756,0.0121036405,0.09737738,-0.01589217,-0.0017188434,-0.016884305,0.011907553,0.012591534,-0.016401649,-0.0393491,0.026708953,-0.004368646,-0.09539694,-0.049687568,-0.030317176,0.064896375,-0.0089972615,-0.04551275,0.05674562,-0.044362158,-0.03839598,-0.07778726,-0.019574977,-0.03555926,-0.008720574,-0.027303278,-0.002665393,0.117165595,0.011428515,0.014266403,0.057567414,-0.070923455,-0.032356467,-0.0060194163,-0.016500616,0.06724058,-0.0074743535,0.041837838,0.0076715294,-0.022105638,-0.02847319,-0.07451537,-0.03829018,-0.030328158,0.06597936,-0.06349599,0.04308494,0.036984384,0.07335444,0.057031013,0.05780503,-0.09399015,-0.012627941,-0.038922668,0.027001737,-0.04892957,-0.0033404983,-0.050765537,-0.012012533,0.036746558,-0.038963966,-0.0031583004,-0.017331416,0.060526114,-0.0010565347,0.055148963,0.029747935,0.03267876,-0.0013139554,0.021279473,0.0028022376,-0.018553073,-0.05269386,0.023536438,-3.272214e-33,0.07440863,0.019926753,-0.003955211,0.11199042,-0.029703379,0.009409478,-0.082067296,-0.045984093,-0.06685047,-0.029118517,0.027669849,0.036149245,-0.024483697,-0.04280876,-0.054613773,0.013962076,0.020736285,-0.023347814,-0.066125885,0.042788837,0.013239073,0.000119818105,-0.04135661,0.042309422,-0.073845826,-0.003706265,0.056220558,-0.024368437,0.016888937,0.0068443283,0.044731352,-0.009631746,-0.021585697,0.0114854565,0.0009658077,0.050558776,-0.06021355,-0.014001633,-0.011500382,0.008760346,0.05186045,-0.020238385,-0.029554868,0.08175195,-0.015540048,-0.013061373,-0.010583762,0.011946664,0.06908392,-0.104898684,-0.111771695,0.03962097,-0.104112625,0.008745935,0.004690021,-0.0033243368,0.010456966,0.09736167,0.020910928,0.02669475,0.04107818,-0.082780965,-7.8141886e-05,-0.04913138,0.04572774,-0.094394915,-0.0110071115,-0.02680883,0.0070291627,-0.036325626,0.0016828416,0.0011123109,0.054272223,0.0047744256,-0.01356264,-0.0061134268,0.012314845,-0.012416101,0.019105457,0.017440796,0.023280708,0.05395824,-0.043788474,0.027471675,-0.032399874,-0.10386806,0.009344714,-0.13217802,-0.06806615,0.008910874,-0.05554101,0.06810847,0.14785336,-0.053831324,-0.024068004,1.2513314e-33,0.09339761,-0.049193032,-0.002824471,0.0113180345,-0.014057717,-0.044302855,-0.054467626,0.080183275,0.007461165,0.118661284,-0.010863894,-0.073377445,0.083249025,0.08324413,-0.067127295,0.056259993,0.14005633,-0.0040028077,-0.058273662,0.045523908,-0.07636935,0.11767953,-0.021221625,0.033574868,-0.04212181,0.027814094,0.029277286,-0.0058541093,-0.01614749,-0.009595489,-0.05474948,-0.024169793,-0.06613646,0.07698581,0.025096213,0.033709075,0.06468335,-0.03174602,-0.12763141,0.04040358,0.004107868,-0.04800505,0.03808383,0.019659385,0.07413018,-0.054079264,0.033883538,-0.046604414,-0.06465922,-0.024462704,0.10057323,0.004185744,-0.12008808,0.0037954515,0.05929508,-0.04591326,0.02961838,-0.06432349,0.016296443,-0.04933094,-0.08744021,-0.04402625,-0.06390009,0.06877353,0.008688605,-0.023720106,0.08865803,-0.026610285,-0.06913164,-0.010214916,-0.06107063,-0.037930436,-0.0414047,0.089227326,0.06348295,-0.048995446,0.039008267,-0.027835364,0.015875224,-0.041946605,-0.010629797,0.023683857,-0.04095073,-0.047566075,0.096839525,-0.078109086,-0.015153187,0.01283534,-0.04048012,-0.030875482,-0.0057025217,0.07218298,-0.024319641,-0.006568436,0.025744164,-2.3459274e-08,0.06590235,0.003801205,-0.08855702,0.005204882,0.014164331,-0.15298784,0.041157845,-0.011503452,-0.016103279,0.075946756,-0.08122834,0.060679615,-0.03988945,0.03322821,0.044369143,0.019198222,0.055856768,0.089401856,0.038608715,0.03599751,-0.0009397946,0.07732313,-0.0052837534,0.0039625918,-0.047745433,0.02139654,-0.010478129,-0.03400068,0.017456606,-0.044290144,0.02777074,0.026129203,-0.009674546,-0.016848367,-0.044491194,-0.012352953,0.13814493,-0.06434703,-0.04925273,0.047409177,-0.026060952,-0.060376413,-0.036800664,-0.03325939,-0.035177357,-0.040841985,0.13207972,-0.050150517,-0.038707897,0.0041076294,-0.08939667,-0.0013234457,0.031921975,0.016980285,0.0014678733,0.010821522,-0.030131498,0.033243693,0.026951503,0.04453848,0.09196157,0.10022503,-0.08882789,-0.013059791} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:26.285175+00 2026-01-29 18:36:00.547362+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 404 google ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB 1 t 407 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Esperienza molto negativa! Per raggiungere la sede è necessario prendere una navetta che ti preleva all'aeroporto ma questo passaggio non è chiaro quando si fa la prenotazione.\nNoi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data una Kia Picanto merdosa che non riusciva a salire le strade manca poco. Oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e avevo preso anche un biglietto del traghetto specificando il modello che avevo prenotato: altra inculata di 110 euro di assicurazione di traghetto quando avevo già la casco (non c'era scritto da nessuna parte durante la prenotazione).\nVeramente scorretti e poco chiari esperienza molto negativa! per raggiungere la sede è necessario prendere una navetta che ti preleva all'aeroporto ma questo passaggio non è chiaro quando si fa la prenotazione. noi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data una kia picanto merdosa che non riusciva a salire le strade manca poco. oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e avevo preso anche un biglietto del traghetto specificando il modello che avevo prenotato: altra inculata di 110 euro di assicurazione di traghetto quando avevo già la casco (non c'era scritto da nessuna parte durante la prenotazione). veramente scorretti e poco chiari 1 2025-03-31 01:27:48.341734+00 it v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Esperienza molto negativa! Per raggiungere la sede è necessario prendere una navetta che ti preleva ", "O1.02": "Noi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data", "P1.02": "Oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e a"} {0.014375313,-0.011760088,-0.037263673,0.023371754,-0.053709645,-0.008414794,0.0075258273,0.1158285,0.02027059,0.017288588,0.11078608,-0.08071176,-0.018723877,-0.0016340499,-0.056463085,-0.053012144,0.063329965,0.02440079,-0.04772603,0.063950054,-0.03259762,-0.13492441,-0.012510262,0.11431786,-0.04436853,-0.055359393,-0.10657604,0.030565858,-0.027650362,-0.011143953,-0.029206704,0.033837937,0.05579289,-0.03552042,0.06263019,-0.024310587,0.019224219,0.016979134,-0.02006559,0.083572246,-0.07822291,-0.031114422,-0.11080365,0.003268007,0.02399301,-0.04816049,-0.0022668391,0.06820636,-0.010856069,-0.07080687,-0.045186877,0.030356731,-0.044291154,0.022453254,-0.09579545,-0.018427046,-0.039823,-0.10013502,-0.005139702,-0.0039045073,-0.06596146,-0.019347768,0.037085205,-0.0314534,0.008698126,0.08573792,-0.07039911,-0.15249576,0.038385782,0.05449351,0.09748506,-0.07554302,-0.029246842,-0.0011640729,-0.05055382,0.04056139,0.034751005,-0.004660764,0.0077552474,-0.06265678,0.09710416,0.053604245,-0.03822566,-0.0014412266,0.07142266,0.03690111,-0.051896174,-0.0142377075,-0.009135201,0.04528438,0.029197939,0.019785723,-0.063728414,-0.047650434,0.00988861,0.0059333304,-0.03746252,-0.018241348,0.069299996,-0.0013096904,0.08553618,-0.0680991,-0.041536577,0.03756597,-0.003566451,-0.007744049,0.1501211,-0.06146389,-0.0024498769,0.053793613,-0.06023652,-0.033354167,-0.0125672035,-0.10187623,-0.08955454,0.032543454,0.022384627,-0.03720105,-0.016432505,-0.04402028,-0.024897013,0.0077680633,-0.01894578,-0.032870106,0.041363887,-0.049572494,0.008665981,1.7757082e-32,-0.021702034,-0.07738381,0.059956025,-0.037914686,-0.028101629,0.02821509,-0.06198049,-0.083611265,0.060358975,0.009815441,-0.1503087,-0.021468792,-0.09288039,0.05001097,0.004173254,0.01819521,0.046981774,-0.06365586,0.04851729,-0.037726168,-0.05089751,-0.017388528,-0.04159729,-0.033000402,0.039942253,0.07988879,-0.17974694,-0.043695692,-0.10916974,0.06497797,-0.016147757,0.048918597,0.03614535,-0.030222861,-0.10186422,-0.056633428,-0.04048661,0.0066544143,0.06818635,0.01819707,-0.036769517,0.0727304,-0.0031528198,-0.023335405,0.042107757,-0.0369147,0.0142085655,0.08136789,0.09327784,-0.021236643,0.017849233,-0.037483357,0.007652024,0.066905044,-0.002330927,0.05451916,0.011500014,-0.027059218,0.010788403,0.038446963,-0.018707642,0.031559978,-0.0214431,-0.045844,0.023270644,0.02100258,-0.024080133,-0.016475406,0.02207887,-0.03782833,-0.067914404,0.004933231,-0.016114892,0.00874152,0.050603237,-0.0029299937,0.0077555687,0.013001328,0.0012807484,0.022539988,0.017133025,-0.038500234,-0.0032392656,0.0026297423,-0.00404122,0.02753432,0.045509722,0.027196348,0.03315422,0.027744213,0.042111643,-0.027163668,0.011304567,0.0130838575,0.007861917,-1.8918519e-32,0.06524746,0.030617854,0.015763322,-0.035693053,-0.09313415,0.050397214,-0.036495708,-0.056949493,0.005578379,0.030119572,0.0025044496,-0.024492312,0.06770331,-0.073440745,-0.016904082,0.11909698,-0.041725367,0.031158946,-0.03464957,-0.04675496,-0.023923265,-0.057246,-0.025280071,-0.035369147,0.0057742423,-0.009813156,0.050396558,0.002272474,-0.0006968096,-0.011056283,-0.069289,0.07338639,0.028170286,0.011002472,0.034245145,-0.03640409,0.029843505,0.018902894,-0.008681808,-0.009810998,0.018061265,0.035109628,0.050642155,0.0017816987,0.019020962,-0.0026588442,0.014741399,-0.08345026,-0.0024960807,-0.050628014,0.03425824,-0.011183054,0.031546906,0.07917307,0.085862726,0.06710892,-0.055474423,-0.07214102,-0.1060805,-0.017166644,0.03571869,-0.0052633816,-0.09469909,-0.010664938,0.04122891,-0.007831353,-0.083906405,0.016946912,0.026412217,-0.02218232,-0.07902602,-0.06584236,-0.040751886,-0.04299629,-0.039936617,0.025299836,-0.06171611,0.032582402,0.03996001,0.06749605,-0.10859189,0.009287026,-0.0151077155,-0.057953693,-0.058071136,-0.006836272,-0.07221413,0.02556961,-0.01823461,0.0833675,-0.026270594,0.07522935,0.059331648,-0.007221573,0.07504179,-7.1471995e-08,0.07204575,-0.055101994,0.09121141,0.009594387,-0.013225368,-0.047697213,-0.018113256,0.01687985,0.0010722445,0.10592276,-0.02576203,0.11188982,-0.015926091,-0.09590264,-0.111657135,0.067223094,0.035902184,-0.009081024,0.0115776295,-0.03563081,0.019143835,0.004568774,-0.07226995,-0.07492447,-0.0065279417,-0.071478285,0.03814695,0.03248423,-0.052426543,0.015285708,0.014787611,-0.02282147,0.018385576,-0.1267961,-0.023367228,0.01941047,0.00085139973,0.006565334,-0.040061694,-0.032723494,0.064351626,-0.018298302,-0.03725576,-0.06722601,0.060743183,0.008961605,-0.09116783,0.032424085,0.030057464,0.04681347,-0.010966265,0.096122116,-0.015294101,0.073599055,-0.0490269,0.052940935,0.022679202,0.059029646,0.007827987,-0.021138221,0.039397318,0.045070082,-0.004619646,-0.013597587} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:47:42.452792+00 2026-01-25 01:27:51.283839+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1952 google ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE 1 t 1955 Go Karts Mar Menor unknown Experiencia formidable con mis hijos, sobre todo en la carrera infantil!!! Personal muy agradable!!! Repetiré sin duda experiencia formidable con mis hijos, sobre todo en la carrera infantil!!! personal muy agradable!!! repetiré sin duda 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"P1.01": "Personal muy agradable!!!", "V4.03": "Experiencia formidable con mis hijos, sobre todo en la carrera infantil!!!"} {-0.03715071,0.032001738,0.0039848206,0.01071438,-0.052787274,0.049421266,0.078965545,0.055300947,-0.008802738,0.03645961,0.10181319,-0.048832886,0.027315238,-0.043670144,-0.017973455,-0.0027797807,0.017984474,0.061511964,0.06577715,0.0075913076,0.045319397,-0.028636668,-0.048223626,0.05621004,-0.10112234,-0.022733979,0.014276054,0.00525847,-0.062944554,-0.04884951,0.042422652,0.08205872,0.055089034,-0.11935962,0.022031557,0.05088251,0.039882574,-0.10768517,0.0018398954,0.009422234,-0.10110546,-0.004412563,-0.0053707757,-0.066720955,0.0483151,-0.0685501,0.023176868,0.011046007,0.0048602642,-0.031668637,-0.069881275,0.022028072,-0.010773899,0.006309448,-0.024993801,0.0036940179,-0.026284274,-0.064657286,0.04743127,0.01980321,-0.0003185954,0.06308591,-0.029196123,-0.014389109,-0.016234377,-0.054031596,0.07184212,-0.0021023029,-0.062177263,0.017870476,0.09630992,-0.04180373,0.053260237,0.11062917,-0.019032707,-0.0052287835,-0.05102967,-0.0027566883,0.0084183095,-0.08399044,-0.05203073,-0.004129995,-0.06786021,-0.0033372194,0.021184962,0.007828388,-0.04932679,-0.044552676,0.021762641,-0.056525476,0.04697841,0.016898656,-0.08818221,0.0022012412,-0.076848105,-0.07445986,-0.05840406,-0.019737553,-0.06910463,0.026862495,0.050292578,0.05718891,0.08735541,0.13322881,-0.07074238,0.04794069,-0.0037625728,-0.019999702,0.016026478,0.08318228,-0.06839537,-0.03973311,-0.04775905,-0.027690427,-0.035844836,0.03545692,0.007714538,-0.07811145,-0.03297221,-0.029419545,0.018590331,0.045775883,-0.046906814,-0.054310847,-0.024203371,-0.16322918,0.07607045,4.783004e-33,-0.084207624,-0.016032966,0.07922768,0.090273775,0.0071869055,0.026454665,-0.03194811,-0.056726582,-0.008201314,-0.018144565,-0.043967985,0.059170645,-0.0047562276,0.038170762,-0.02525136,0.1255117,-0.05705055,-0.008761094,0.039246257,0.048235737,-0.07218327,-0.04289829,0.016744476,0.0033955527,0.025915055,0.025772447,0.03715314,-0.07259262,0.04348729,0.046458732,0.04602241,-0.01243123,0.015126377,-0.07842188,-0.017606433,-0.05482693,0.004068539,0.0066274954,-0.04949816,0.014387188,-0.0075973356,0.0072190766,0.030771056,0.011456709,-0.05924734,0.06745616,0.12512451,0.006534086,0.06952034,0.0027086493,0.01278517,-0.109408714,-0.068332985,0.0055676424,-0.05300921,0.056123145,-0.09069662,0.075821415,-0.03166238,-0.0850823,0.074269295,-0.0673543,-0.03463038,-0.072543375,-0.059773706,-0.080074504,0.021229511,0.06647083,0.13577652,0.013407774,-0.090270996,0.006215942,-0.053467873,0.008163298,-0.024302585,0.01892054,0.012781106,0.049775697,-0.0032632607,0.026238654,-0.04557034,0.038627118,0.058020808,-0.03489518,0.025211982,0.059608687,0.052836902,-0.006476153,-0.017519988,0.17908122,-0.024812406,0.08358955,0.03993482,0.010981851,0.039885636,-7.280563e-33,0.02605316,-0.033820186,0.0036915937,0.024343843,-0.0123635065,0.019658191,-0.03362963,0.074511565,-0.04151521,-0.08077731,-0.08465859,-0.02757246,0.13065024,-0.06911799,-0.068013735,0.031189784,0.015196916,0.030686837,-0.042302262,-0.017963935,0.028511161,0.065515526,0.017392362,-0.08075061,-0.01301464,-0.028325628,-0.02717603,0.049632132,-0.017005263,-0.06341654,0.038801625,0.049243513,-0.02310724,0.06631473,0.013487401,-0.010261704,-0.034129005,0.018417895,-0.018710494,0.06418839,-0.057509158,0.035901327,0.0049982984,0.008231969,0.006908859,-0.057887986,0.029959176,-0.13131632,-0.044186115,-0.00945917,0.051324997,-0.037364602,-0.075430945,-0.04040679,-0.011051535,-0.0029831626,0.02996378,-0.051022604,-0.00023857562,0.036413807,0.024907747,0.05131141,-0.01987113,0.02016549,0.09941045,-0.018708458,0.022561831,0.037461348,0.023588575,0.03196419,0.0856362,-0.005653591,0.018874722,-0.0021496082,-0.0418048,-0.095577314,-0.074514955,-0.017625282,0.005310301,0.015083204,-0.039293643,-0.02930144,0.048830915,-0.020024914,-0.051995143,-0.045225404,-0.02049409,-0.020616429,0.0013378307,-0.0045591695,0.01529599,0.017174682,-0.050275635,-0.05746784,-0.00048404565,-3.4329226e-08,0.010547403,-0.05340397,-0.011390216,0.039823633,0.025563424,-0.15162584,-0.0930645,0.035951827,-0.024273705,0.023821043,-0.07411965,-0.0038108903,-0.060052596,0.0854722,-0.027066898,0.024964262,0.10575639,0.09614063,-0.017015588,-0.042043224,0.08904185,0.02363715,0.0023452041,0.01269804,-0.055114686,-0.011738283,0.0060561956,-0.00024048034,-0.031496074,-0.070805706,-0.017217636,0.054069493,-0.03760096,-0.078600466,-0.05032608,-0.0058390456,-0.03219824,0.06291559,-0.043357078,0.018542694,0.114929885,0.015986888,0.011357936,-0.028305652,-0.0075924834,-0.02680003,-0.02530382,0.021753047,-0.009842867,0.06614021,-0.046697836,-0.035290387,0.08018842,0.0013438588,0.0039128,0.011194644,0.021620056,0.038193244,0.000809614,0.05368121,0.050351206,0.029121099,0.033460923,-1.9304676e-05} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.317285+00 2026-01-30 02:01:11.343182+00 22c747a6-b913-4ae4-82bc-14b4195008b6 424 google Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB 1 t 427 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabajadores un encanto todos. El unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un 10 todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabajadores un encanto todos. el unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un 10 5 2025-09-27 01:27:48.341845+00 es v5.1 O1.03 {A1.01} V+ I3 CR-N {} {"A1.02": "El unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un", "O1.03": "Todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabaja"} {-0.037849728,0.00056561053,0.004705122,-0.074801065,-0.047149837,-0.009729886,0.04638417,0.030871177,-0.020638665,0.016142385,0.061742127,0.042920966,-0.08415689,0.0005689958,0.006904666,0.011792252,-0.014549413,0.03644542,-0.03552069,-0.05059759,0.10071098,-0.115762554,-0.055572364,0.09309883,-0.09953669,-0.050894443,-0.028273791,0.0107528,-0.1170442,-0.03832009,-0.029982781,0.057068337,0.060220215,0.028519098,-0.015112895,0.009583077,0.009598399,-0.065797724,-0.0028314244,-0.0009926733,-0.076115556,-0.06008015,-0.08404779,-0.10389721,-0.0033911497,-0.08758423,0.04189044,0.029543437,0.04520806,-0.039845165,-0.021657825,-0.0015285033,0.008454373,0.029767254,-0.019472938,0.019789252,-0.09029759,-0.039887976,0.0731172,0.009423884,-0.021632127,0.06562164,-0.041276824,0.020205684,0.06254282,-0.0493711,-0.018279543,-0.0088181645,-0.07961662,0.06581126,0.09147822,-0.11753612,0.021896763,0.021767301,-0.036450695,0.08490699,0.0055289897,-0.063622884,-0.026021821,-0.0046835328,0.03858986,-0.022838168,-0.013881864,-0.05870499,-0.03225832,0.0071057375,0.026414368,0.09495878,0.04002235,0.027366163,-0.030733874,0.04681113,-0.048216674,-0.018736536,-0.07677079,0.008869396,0.0023684965,-0.0049944776,-0.08239273,0.027181964,0.0583257,0.08032682,0.098288834,0.004981414,-0.020866266,-0.027144281,0.07764878,-0.0313869,-0.023479173,0.057380993,-0.056524035,-0.04547016,-0.06549368,-0.008377822,-0.056772616,-0.0056984723,-0.10228739,-0.024123477,-0.041067876,-0.10118058,0.07528941,0.01507326,-0.021141645,0.027187932,-0.017498905,-0.040648382,-0.00035263447,1.0452324e-32,0.00063808315,0.053347558,0.008872463,0.040143386,0.009428835,0.012555706,-0.06514469,0.08137708,-0.032550275,0.07781712,-0.100174315,0.016808566,0.01372901,0.0076001384,0.035397023,0.01592182,-0.029917719,0.011977494,0.05960884,0.031822182,-0.036042158,0.0051777456,-0.067717046,-0.02282408,0.011283395,0.01807846,-0.031394333,-0.004910969,-0.02478828,0.069238305,-0.0003059206,0.011177991,0.053374313,0.0262525,-0.025794424,-0.03897863,0.04008193,0.027212342,0.017078647,-0.022330109,0.053440753,-0.00014253097,-0.02406601,0.025081681,0.0277769,0.00071438466,0.05771728,0.008293362,0.08802122,0.04352791,-0.06359033,-0.046379432,-0.03518012,-0.028347433,0.042153664,0.0067142025,-0.012774558,-0.024675494,0.05112961,-0.033874933,0.082731485,-0.09447491,-0.07944059,-0.043576874,-0.029931104,0.025807694,0.055691235,0.07505646,0.10259477,0.029854443,-0.060762443,-0.020296466,-0.019404259,0.03514808,0.025012447,0.022821896,0.07790717,0.0016250726,-0.0042181574,0.057170365,-0.0062875026,-0.014323044,0.08218744,0.038206715,0.115373574,0.11325063,0.005388789,0.018522484,-0.05849307,0.10007738,0.018554056,0.07572347,0.04558694,0.014388311,0.09130233,-1.2319808e-32,-0.00010869816,-0.025414506,-0.034411065,-0.041455597,0.018654607,0.046065714,-0.014600208,-0.06385171,-0.02077649,0.014820584,-0.07494321,-0.08272851,0.1190025,-0.038521033,-0.034298237,0.039717995,0.04600548,-0.08683561,-0.033998996,-0.012563339,-0.010128035,0.11632808,0.08394601,-0.017491514,0.02273091,-0.07018112,0.051659543,0.03138258,-0.055827934,0.049630333,0.06401137,-0.093387656,0.037294358,0.06631334,-0.049726304,0.0063946866,0.047406107,-0.005355814,-0.009982853,0.042593967,-0.009335081,-0.008612992,-0.037991803,-0.046711564,-0.014583773,0.00082351954,-0.012032014,-0.09338028,-0.046776492,-0.043273248,0.08280648,-0.086162835,-0.051022846,-0.049362417,0.031169878,-0.012187426,-0.04382829,-0.08959966,-0.02278821,-0.06332938,0.06544897,0.04470242,-0.0043778582,-0.013933503,0.045945466,0.002462366,-0.019252557,0.011207574,-0.08715384,0.010629802,0.05356726,-0.025279166,-0.10199369,0.043081276,-0.07250919,-0.050732233,-0.083919086,-0.038155146,0.0011481358,0.0032391364,-0.06753157,0.021146214,-0.0028464093,-0.025834316,-0.028999178,0.010110961,-0.028737627,0.09940617,-0.048789896,0.026187979,0.036424883,0.05218175,-0.02649489,-0.02879621,-0.050797198,-4.7389335e-08,0.0461819,-0.0037032955,-0.031771965,-0.038163535,0.079133205,-0.039130628,-0.015228336,-0.01757294,0.097097024,0.05064708,-0.035748933,-0.07753458,-0.07431213,0.047620364,0.00497591,-0.05968173,0.09752037,0.07171296,-0.039273113,-0.05784862,0.044248182,0.07606385,-0.02595694,-0.05132684,0.0013950513,0.0403571,-0.039248362,-0.029468494,-0.060075868,-0.016766628,-0.011966496,-0.043766696,-0.06639148,-0.12222282,-0.096536316,0.015076566,0.012301079,-0.00030861428,-0.028783308,-0.097637646,0.11408906,0.03475471,-0.03580725,0.03636288,-0.031400435,-0.04505788,-0.027110267,-0.029369239,-0.019375203,0.0077685667,-0.010832756,0.017886668,0.0814737,-0.02276826,0.040574457,-0.09001211,0.01176732,0.034409497,-0.048203476,0.05132082,0.14404707,0.04059551,-0.022698069,0.007096126} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:22.448577+00 2026-01-25 01:27:51.350923+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 544 google ChZDSUhNMG9nS0VJQ0FnSURIdUl2M09REAE 1 t 547 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto!! Rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron hasta detalles de sitios y comidas que probar gracias a Dany, Antonio y Néstor todos super amables cuando volvamos a las islas repetiremos seguro con ellos. todo perfecto!! rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron hasta detalles de sitios y comidas que probar gracias a dany, antonio y néstor todos super amables cuando volvamos a las islas repetiremos seguro con ellos. 5 2025-01-25 01:27:48.342504+00 es v5.1 O1.03 {A1.01} V+ I3 CR-N {} {"O1.03": "Todo perfecto!! Rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron"} {0.01064935,0.01885284,0.016950767,-0.059329208,-0.062288173,-0.059637483,0.02016003,-0.05098791,-0.06244901,0.035601053,0.0413211,0.05363627,-0.005051681,-0.008146562,0.071301386,-0.029064508,-0.019683065,0.030180147,0.016331542,-0.022020439,0.09215739,-0.054768693,-0.08931679,0.08359153,-0.12462821,-0.024348866,0.02032825,0.009158179,-0.08255202,-0.08930821,-0.04133101,0.034036417,0.070571184,0.0051853927,-0.026341539,0.031052338,0.0750035,-0.09295372,-0.0063025304,0.020905785,-0.056223556,-0.02521698,0.015512925,-0.0020517753,-0.020371662,-0.093047746,0.013062796,0.037779335,0.10588887,-0.042186618,-0.088364765,-0.05883731,-0.021186246,-0.021147477,-0.008418186,0.06785396,-0.018055217,-0.01798059,0.034741994,-0.018480385,0.026656868,0.08760044,1.46658895e-05,0.019524818,0.05311747,-0.022162104,0.014226908,0.021753129,-0.051666066,0.04278303,0.02734512,-0.01390835,0.060971078,0.04957616,-0.06931336,0.016223293,-0.0188185,-0.028819425,-0.050797846,-0.00014862497,0.0063351905,-0.0035499823,-0.0069176015,-0.016675284,0.005511256,0.014593634,-0.072019674,-0.0023568776,0.07413675,-0.06627132,0.03860489,0.04970009,-0.051567264,-0.03184569,-0.015517368,0.05458873,0.0054978947,-0.048706476,-0.04578955,0.031350292,0.109478995,0.008291973,0.03883145,0.004189039,0.015953436,0.08982109,0.012459399,-0.022194514,0.01558116,0.073396124,-0.09432548,-0.050854247,-0.030170538,0.0015396432,-0.106632374,0.028317206,-0.042360283,-0.07133397,-0.058590196,-0.09797631,0.076459765,0.05694013,0.020475876,-0.027552607,0.022654083,0.009416938,0.086973324,1.1049889e-32,-0.057239134,0.0045473124,0.05595343,0.060789175,-0.010096944,-0.017704114,-0.07775184,-0.0056213373,-0.07857556,-0.010267976,-0.08180983,-0.0168158,0.07116138,0.016560344,0.0366134,-0.024875546,0.06588827,-0.03704253,0.064764194,0.02556414,-0.06432118,-0.009249153,0.031734,-0.03338772,0.0015179858,0.052910056,0.033631638,-0.05051289,-0.009633673,0.047080316,-0.0533605,0.00952337,0.01857033,0.03926125,-0.050380237,-0.041340284,0.0044619045,-0.008348866,-0.050275598,0.018459972,0.007350493,0.043596696,-0.011949849,0.049026802,0.013589582,-0.0009158484,0.059858292,0.07536644,0.13588697,0.05500213,-0.087901585,-0.061184593,-0.1432183,-0.0786098,-0.036895774,0.04012273,-0.01837859,0.069164984,0.049397964,-0.04107891,0.055733982,-0.09468767,0.023668936,-0.06491651,-0.029648252,0.026725164,0.029118929,0.0654538,0.10713224,0.074304014,-0.0418278,-0.03452032,-0.03568204,0.051818673,0.046315767,0.013207647,0.03711736,-0.0012419145,0.0032130936,0.08002866,-0.07084493,0.012682366,0.030309025,0.07221732,0.03348061,0.031404372,0.015614193,0.09390296,-0.014577085,0.06955685,0.040707413,0.08412119,0.03012517,-0.039954226,0.062004015,-1.293145e-32,0.0017267556,0.0031435913,-0.017295,-0.0003329842,-0.039828952,-0.032473993,-0.059008088,-0.028510563,-0.036083627,-0.048398618,-0.06412144,-0.11711645,0.09629085,-0.057116486,-0.104984924,0.08101044,-0.036968023,-0.07474897,-0.060967397,0.036665674,0.05967046,0.058818474,0.07755924,-0.0058302917,0.010207764,-0.06253417,0.003976084,0.062464613,-0.080904454,-0.014096956,0.07612623,-0.09674399,-0.097981565,0.0155800255,-0.020278431,0.08599117,0.016496962,0.011264402,-0.009645071,0.06536951,0.040340506,0.017562496,-0.025047243,-0.017047325,-0.05518064,0.044422086,-0.009810211,-0.07380248,-0.048986148,-0.060919132,0.01212323,-0.055084176,-0.0634514,-0.0077369963,0.07848644,0.0027605812,-0.08605948,-0.008679757,-0.05641192,-0.031429563,-0.01949565,0.012825267,-0.06358052,0.0074931835,0.089012854,-0.029837634,-0.02001635,-0.021669483,0.014924029,0.08753472,0.05141646,-0.006901363,-0.16925384,0.032022126,-0.0060672667,-0.0042955205,-0.03576657,-0.04540872,-0.032258634,0.011273413,-0.0055947816,-0.0055838223,0.013870795,-0.03238787,-0.01739554,0.0040613636,0.002793016,0.06061324,-0.0017827371,0.04922251,-0.024450405,0.035635315,-0.075406946,-0.063279524,-0.07470915,-4.657652e-08,0.012514447,-0.021765335,-0.040618025,0.019404953,6.356849e-05,-0.07721821,-0.016151754,0.011097246,0.04434862,0.05687841,-0.02457185,-0.044236742,-0.033372797,-0.025731208,-0.01170308,0.021670638,0.100103274,0.12085252,-0.033437084,-0.10041766,0.033780314,-0.0075601055,-0.05798904,-0.028541135,0.012837077,0.05067324,0.009712936,0.015306472,0.0010641264,0.034987535,-0.05045864,-0.07404346,-0.06705657,-0.088063575,0.0046382453,-0.016578062,-0.043575373,0.029364662,0.02437388,-0.103109084,0.04123191,0.02042092,-0.08296101,-0.0037934587,-0.065378405,-0.050211743,-0.005653156,0.020455493,0.021847768,-0.005345891,-0.021794586,-0.054380223,0.113831975,0.021019569,0.08074552,-0.017696412,0.056135044,0.0036776315,0.030662803,0.045680676,0.073636785,0.024285901,-0.0037311942,-0.06835605} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:59.622979+00 2026-01-25 01:27:51.809037+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 548 google ChdDSUhNMG9nS0VJQ0FnSURuN18yM2xRRRAB 1 t 551 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Antonio y Dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del coche, super atentos y muy amables. Muchas gracias y un abrazo grande. antonio y dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del coche, super atentos y muy amables. muchas gracias y un abrazo grande. 5 2025-01-25 01:27:48.342512+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Antonio y Dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del"} {0.014949817,0.060522314,-0.014257362,-0.007519429,-0.024342531,-0.05371269,0.0578025,0.011759913,-0.058850046,-0.030631607,0.037416734,0.014642273,-0.025802262,-0.067566074,-0.02149967,0.01707135,0.014548926,0.03618386,-0.035309903,-0.022490239,0.12499821,-0.0597645,-0.041689828,0.16625753,-0.041383516,0.011284128,-0.045132164,0.045919828,-0.05225439,-0.090564996,-0.04020062,0.06922459,0.036794465,-0.004782691,0.00094024296,-0.0071241097,0.05410496,-0.035786007,-0.006135458,-0.0041624256,-0.11981597,0.0030335083,0.005615263,0.046317965,0.040099997,-0.054478236,0.01868946,0.06772041,0.049371585,0.029914027,-0.06698477,-0.023209454,0.016198,-0.026895868,-0.007771513,0.05544846,0.009520079,-0.06463335,0.07778044,-0.0003413619,0.015504648,-0.013604051,-0.06759283,0.028448967,-0.02186325,-0.018509056,-0.0521696,0.004435452,-0.034420762,0.017181443,0.05841011,-0.050705373,0.073077224,0.025968736,-0.035675626,0.049469523,-0.038055696,-0.03742574,-0.029548554,-0.013767631,0.11071368,-0.056815553,-0.040105008,-0.0892633,0.0637153,0.002973018,-0.023333155,-0.032153368,0.008785315,-0.014242852,-0.02395023,0.049073547,-0.031420387,-0.05453277,0.022727078,0.076422095,0.008294672,-0.008508236,-0.003567335,0.022110796,0.09723208,0.048012108,0.0344671,0.07350308,-0.072127685,0.06699914,0.04267606,-0.027219769,0.024143325,0.011724227,-0.08285128,-0.018505786,-0.003762156,-0.08989703,-0.08386377,0.019515004,-0.029146396,-0.036466524,-0.13805303,-0.107591406,0.024397945,-0.014774727,-0.023612795,-0.04935376,0.0545394,-0.02596064,0.056496087,1.2366303e-32,-0.0075931377,0.053317938,-0.0040527685,0.040877588,0.028010774,-0.011323671,-0.05527763,-0.019835642,-0.024381833,0.008999736,-0.08978782,0.028549928,-0.00016782811,-0.0051777335,0.06364861,-0.004830124,0.023287773,-0.04681594,0.012629588,-0.050178435,-0.121506296,-0.014186206,-0.07792488,-0.00065866037,0.0076661827,0.054188937,-0.0031406693,-0.087498486,-0.08325845,0.08547561,-0.0058472157,0.07352044,-0.041152056,0.020252712,-0.043467067,-0.086504094,-0.018063225,0.017811326,-0.0030749375,-0.0056974133,-0.0003883884,0.050903272,-0.06847216,0.037213974,-0.047021363,-0.061481573,-0.0036940963,0.11511627,0.1709213,0.022681104,-0.053113412,-0.035475783,-0.11946173,-0.03772974,0.022774588,0.020167395,-0.0050353976,0.06303532,0.032624256,-0.025866235,-0.001155563,0.059221517,0.002694501,-0.009845121,-0.03581709,0.030512087,0.020580562,0.08510294,0.099054866,0.094495736,-0.054709587,-0.047893576,-0.03098212,0.037193395,0.028072769,0.016501699,0.032617413,-0.018192878,-0.04940095,0.044489913,-0.04474359,0.008975772,0.06775528,0.0070925816,0.024178037,0.0039439066,0.0062990338,0.070859134,-0.012835712,0.039407063,-0.0074782413,0.07542575,0.1136434,-0.03598965,0.0054735322,-1.2433487e-32,0.038021103,0.039764382,0.034646112,-0.043640066,-0.01899523,0.009781808,-0.08187214,-0.08249685,-0.039104205,-0.03283815,-0.10936962,-0.06868278,0.13157013,-0.04329155,0.019311342,0.07769225,-0.0049638534,-0.10635146,-0.11147915,-0.029244952,0.08645422,-0.018098373,0.04540523,-0.034810014,-0.050507136,-0.05093432,0.049636196,0.03569067,0.046335224,0.038774163,-0.001140212,-0.017151281,0.016334852,0.09419718,0.008650006,0.07640222,0.036605764,0.055770423,-0.012991196,0.0082602,-0.04538992,0.06914583,0.038221885,-0.03442093,0.055186518,-0.009032948,-0.04993284,-0.086463004,-0.003974839,-0.09994884,0.043429855,-0.06861218,-0.051606327,0.015817145,0.08341933,0.046381086,-0.009676118,-0.05771718,-0.089551106,-0.053848468,0.032989793,-0.00013123125,-0.05661528,0.009068632,0.054626267,-0.025168661,-0.014347134,-0.029020041,-0.009116802,0.05020424,0.058716115,-0.032996688,-0.03942059,0.046998225,-0.052294347,0.027753133,-0.014558189,0.088329606,-0.064728275,0.055315007,0.026893752,0.07178704,0.037848737,-0.009513715,0.0034448775,-0.0029638354,-0.075337075,-0.030371474,0.019633083,0.022407392,0.057255186,0.029306812,-0.05040923,-0.09582936,-0.015007022,-4.4508162e-08,-0.05849247,-0.03819113,0.027609982,0.022623822,0.04683296,0.02256971,-0.04814733,-0.004326325,-0.011616004,-0.0076315,0.04373581,-0.07231099,0.022192545,0.027101591,-0.022462148,0.000565369,-0.028162312,0.09109292,0.01184848,-0.020413583,0.05873881,-0.04664497,-0.012098767,0.011537965,-0.012629113,0.023661401,-0.015562491,-0.053774428,0.008642637,-0.011876896,-0.07042854,-0.017549142,0.0013910648,-0.08218689,-0.03046741,0.0194915,-0.0017826445,0.02249261,-0.074354455,-0.07101233,0.061278254,0.011244988,-0.033700645,0.004432866,0.042685892,-0.10523486,-0.011751256,-0.039488222,-0.017886473,0.09133228,-0.0075041405,-0.09123307,0.12911652,0.06398847,0.038303558,-0.0076424195,-0.00061123364,-0.016470158,0.024503158,-0.029972196,0.098116696,0.12039292,0.009468005,-0.008764491} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:48.789259+00 2026-01-25 01:27:51.822649+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 557 google ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB 1 t 560 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown He reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba Antonio esperándonos, nos ayudó con las maletas e incluso nos recomendó la mejor manera de aprovechar las vacaciones, luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra hija unos detalles, estamos muy agradecidos con los chicos y la empresa, muchas gracias!! he reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba antonio esperándonos, nos ayudó con las maletas e incluso nos recomendó la mejor manera de aprovechar las vacaciones, luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra hija unos detalles, estamos muy agradecidos con los chicos y la empresa, muchas gracias!! 5 2025-01-25 01:27:48.342565+00 es v5.1 P1.01 {A1.01} V+ I2 CR-N {} {"A1.01": "luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra ", "P1.01": "He reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba Anto"} {0.026613895,0.08364691,0.029570295,-0.003746553,-0.07188326,-0.017306456,0.07314907,-0.049768806,-0.072716385,0.0027686316,0.03007835,-0.014475029,-0.04991651,-0.060213942,0.00953273,0.03474851,-0.011520021,-0.016483707,-0.0030700157,0.024796182,0.091878235,-0.045775037,-0.0793216,0.119614094,-0.045623068,-0.022577997,-0.036419544,0.07537179,-0.03826676,-0.028233109,0.03605327,0.037384007,0.10872884,-0.01760087,-0.041571267,0.011858327,0.056405123,-0.051760506,-0.03245077,0.039072465,-0.09520427,-0.012365087,-0.04874065,0.04307968,-0.021271268,-0.0009115209,0.0421548,0.056542132,0.06056375,-0.003255578,-0.03518905,-0.04980214,0.08028357,-0.04905189,-0.025058744,0.026724333,-0.009965067,-0.04118628,0.06487618,0.019461816,-0.008259862,0.017822547,-0.048998903,0.03917407,-0.005572147,-0.066601336,-0.04604469,0.016347233,-0.00682449,0.026595298,0.14706066,-0.08955204,-0.008955818,0.051307525,-0.06817551,0.085271075,-0.011507507,-0.035147898,0.046940584,-0.039446555,0.09285606,-0.03869156,-0.061254803,-0.022472575,0.011583013,-0.046728436,-0.011641366,-0.052802797,0.0065911966,0.03113594,-0.054564934,0.034101196,-0.028624984,-0.070664085,-0.05548392,0.042185534,0.002231004,0.0015603711,-0.082869485,0.019429713,0.111606434,0.041749727,0.06997656,0.046794202,-0.10064867,0.049733836,0.05689934,-0.029936738,0.02668556,0.040619746,-0.05776113,-0.022313876,-0.044000603,-0.068357356,-0.07769996,0.04615379,-0.023697564,-0.041324742,-0.073821194,-0.08381023,0.0018407233,-0.040124863,-0.018513752,0.0058365096,-0.00075225823,-0.1377844,-0.007710106,1.557774e-32,-0.047133945,0.004370231,-0.021525899,0.10190585,0.054937832,0.031954974,0.0023612434,-0.04395313,-0.04312346,-0.026898667,-0.065585054,0.067769796,0.0062044314,0.033771,0.018215725,-0.026100233,0.03657452,-0.051334623,0.031062244,-0.061260037,-0.08689185,0.01903324,-0.07715394,0.0068764514,0.029861042,0.047715962,-0.03552446,-0.07905873,-0.03986052,0.06765464,-0.025471281,0.11123548,-0.005080516,-0.03335589,-0.060518827,-0.006175036,0.024530506,-0.0009996272,-0.07170166,-0.03297526,-0.03409318,0.037305437,-0.03440478,0.01624445,-0.067474574,0.010623561,0.015415977,0.061435934,0.11100897,0.018547582,-0.048310783,-0.018291812,-0.047911365,-0.023387093,0.026988983,0.015959816,-0.030578185,0.015840244,0.019395433,-0.103381656,0.046747547,0.046568986,-0.016859442,0.013473198,-0.073515065,-0.02258082,0.033707112,0.037544165,0.078068204,0.08547338,-0.045911424,0.014040543,-0.073396124,0.021365171,-0.0048917877,0.025333468,-0.040525056,0.028558403,-0.04032508,0.05684746,-0.009665911,0.021701433,0.05052315,0.011732499,0.06371775,0.031003973,0.0791184,0.05984678,0.009237269,0.14665014,-0.010166198,0.0854843,0.07368442,0.01712361,0.03552176,-1.776155e-32,0.009690838,0.024126422,0.0395891,-0.050331928,0.005076658,0.028155854,-0.007004405,-0.031138504,-0.01258086,-0.051272865,-0.070952214,-0.088791765,0.06328389,-0.045103975,-0.004627704,0.04297058,0.0010552999,-0.06403253,-0.09010126,-0.0729443,0.06805018,0.05041356,0.088062584,-0.0061242203,-0.08155115,-0.10252001,0.007361824,0.018010363,-0.020164965,-0.0059669665,0.033399966,0.0060443836,-0.0013166665,0.11293437,-0.0011415163,0.009107685,0.0021944297,0.105024256,0.04536788,0.043930743,-0.0047362586,0.04281243,0.033121046,-0.022151591,0.011121516,0.0049306015,0.049928326,-0.15333061,-0.028942991,-0.107951306,0.0038676423,-0.09513415,-0.12241652,-0.009891823,0.06891461,-0.00045165364,0.062140137,-0.09646198,-0.08097504,-0.036495186,0.019608242,-0.003488392,-0.025004148,0.005529782,0.010565716,-0.007975034,-0.033639092,-0.012250339,0.06386946,0.0021972016,0.030134989,-0.04745996,-0.05251976,0.06612376,-0.06608961,0.0038764204,-0.03602866,0.04857247,-0.027835935,-0.011138422,0.022539932,0.023077318,0.03246816,-0.0533261,-0.0045780297,-0.015443334,-0.012277613,-0.010768253,0.00010257369,0.07831496,0.0012173683,0.031111997,-0.04055058,-0.11350307,-0.0035006753,-6.169293e-08,-0.04095376,-0.04057185,0.059614517,-0.012276109,0.030647835,0.00906964,-0.02515844,-0.046064332,0.0056571686,0.029095842,0.021778705,-0.021401294,-0.022868453,0.040282365,-0.007434749,-0.024612319,0.06091406,0.073286705,-0.023819793,-0.020148642,0.034990624,-0.00044996515,-0.05606535,0.027548943,-0.004714398,0.004027824,-0.06804126,-0.016543873,0.008309247,0.008559042,-0.058044635,0.030726561,-0.03238518,-0.1221366,-0.066523425,-0.027721709,0.0054245573,-0.0011895852,-0.06683167,-0.117650665,0.06465358,-0.018684834,-0.072748214,-0.002382759,-0.0033770346,-0.050301276,0.024586769,0.007517938,-0.07142105,0.06954306,-0.053080857,-0.039307255,0.12094144,0.016812377,0.029046457,-0.12857728,-0.056257825,0.025704917,-0.0058691977,-0.099723674,0.06532941,0.05547904,-0.006697226,-0.024106124} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:18.898317+00 2026-01-25 01:27:51.850023+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 561 google ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE 1 t 564 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo . Muy amables , buen trato. Gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪 excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo . muy amables , buen trato. gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪 5 2025-01-25 01:27:48.342578+00 es v5.1 O1.01 {P1.03} V+ I3 CR-N {} {"A1.01": "Muy amables , buen trato. Gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪", "O1.01": "Excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo ."} {0.034227375,0.009435223,0.0034171906,-0.013909588,-0.006667382,-0.058521956,0.038951825,0.01340562,-0.06349619,0.0007508526,0.058110975,0.023364348,-0.016030082,-0.051482704,-0.020556731,0.056551453,-0.027641322,0.020987615,-0.05560541,-0.030578261,0.115565374,-0.080653556,-0.07451906,0.096417844,-0.019984895,-0.005447503,-0.025725676,0.032841556,-0.04182731,-0.06474503,-0.048808347,0.09621745,0.09127305,-0.0059407568,0.032969322,-0.01358033,0.06880854,-0.045194298,-0.01603173,0.05611475,-0.09969387,-0.042578172,-0.003775159,-0.026718084,-0.0013091157,-0.047233768,0.050958414,0.07328761,0.06673857,0.006968318,-0.097045586,-0.007298257,0.009114422,-0.04381894,0.0034726625,0.025254847,-0.035359427,-0.03888603,0.028153664,-0.031408697,-0.0151682375,-0.0018456819,-0.05487694,0.04895838,0.042538524,-0.038039166,-0.08432222,0.015466687,-0.08040682,0.0093494365,0.07093356,-0.11270015,0.0051145623,0.0046754708,-0.07471885,0.07418953,0.017631385,0.0030278456,0.035935357,-0.014481014,0.058917392,-0.018435014,-0.023888698,-0.045833867,-0.005574664,0.022846421,-0.021906331,-0.03357203,0.0036085162,-0.0022332596,0.030956667,0.05025239,-0.032644756,-0.030891467,0.0089166965,0.047515325,0.0062841494,-0.029033473,0.014269703,-0.01610444,0.058673978,0.06083974,0.13022567,0.06784037,-0.09805975,0.008018975,0.04090848,-0.019430136,0.061914477,0.015396991,-0.09067385,-0.014958641,-0.05407109,-0.06268877,-0.0787683,-0.02155674,-0.010182429,-0.032757137,-0.09299101,-0.06545134,0.037736025,0.014244861,-0.018511279,-0.02826229,-0.013977912,-0.0591175,0.035791025,1.320917e-32,-0.09470248,-0.0073674256,-0.009698975,0.03851438,0.0012558802,-0.0100896545,-0.071427196,-0.04530996,0.024370104,0.0112590855,-0.10512489,0.07634701,0.024794988,0.01612914,0.109471984,-0.06352823,0.025474641,-0.006866757,-0.018048843,-0.016117077,-0.080149986,-0.05290926,-0.036297828,0.013537385,0.0069994014,0.04538461,-0.0022113782,-0.07907505,-0.005605578,0.08798005,0.09013248,0.103543594,-0.04552673,-0.015108704,-0.1314686,-0.024103068,-0.024762325,0.026777487,-0.025830178,-0.009141418,-0.04205325,0.0043784413,-0.050007775,0.06435489,-0.056697004,-0.05496345,0.061373875,0.034548942,0.15543361,0.009973638,-0.105547056,-0.040759828,-0.0548477,-0.07434585,0.071515374,0.0016361959,-0.02961513,0.05483442,-0.012711938,-0.07219396,-0.05971522,0.05594337,0.022393078,-0.010052766,-0.034216337,0.019315857,0.034449596,0.058714774,0.10753091,0.07060536,-0.009011787,-0.027863555,-0.027605558,0.052890122,0.03207191,-0.0074032056,-0.022126883,-0.016293235,-0.012756924,0.05086992,-0.039717745,0.06000296,0.024918543,-0.044706076,0.08828367,0.0023697482,0.07331772,0.07133173,-0.011261457,0.04321946,-0.052998412,0.06730735,0.013835249,-0.00011395361,0.031929076,-1.3559645e-32,0.061198637,0.051210973,0.014102085,0.006558455,-0.041863605,0.0389262,2.4620043e-05,-0.04881777,0.008721512,0.009785224,-0.16877893,-0.03556955,0.098512724,-0.029561006,-0.025974829,0.06346319,-0.020673698,-0.08233482,-0.12751128,-0.0787065,0.031776797,-0.008486388,0.06859921,-0.028630504,-0.062388718,-0.023399133,-0.03075959,-0.023969295,0.00860138,-0.0061144372,-0.013274325,0.022116242,-0.008614663,0.12735835,0.022726484,0.04755001,0.025613202,0.07137652,0.038149994,0.025496176,-0.0052245655,0.0036808948,0.077065,-0.039272197,0.06419964,-0.040138166,0.00423807,-0.11658065,0.04884959,-0.1304134,0.0674852,0.010060956,-0.068524204,0.011919383,0.081945054,0.06426253,0.014972183,-0.023005802,-0.13343203,-0.05766633,0.0029426208,0.010041622,-0.0160976,0.035789933,0.06121769,0.011669653,0.008745635,-0.030346408,0.021769168,-0.025386203,0.042084247,-0.007489458,0.0288531,0.04651174,-0.038915962,-0.0012667984,-0.028099049,0.07195525,-0.044305425,0.0406215,0.03557112,0.05084603,0.07143166,-0.035269435,-0.052136015,-0.066239,-0.013533756,-0.072151676,-0.0067171347,0.051937968,0.007625641,0.024304766,-0.02843711,-0.07294318,0.012737589,-5.0847884e-08,-0.025776807,-0.042261425,0.11044815,0.029583288,-0.018979622,-0.01059149,-0.036299534,0.04909327,0.02531051,0.036502935,0.02334897,-0.038084973,-0.003488684,0.10539124,0.0020957221,0.013139173,-0.023260374,0.0843061,0.0074677165,-0.054814868,0.056706272,0.0034457366,-0.037354343,0.053547263,0.00955536,0.031315964,-0.054596964,-0.1028775,-0.015426377,0.011183282,-0.06665611,0.006765741,0.016979435,-0.09112504,-0.049220912,0.025153112,-0.038359668,-0.013863301,-0.073570654,-0.031348087,0.060112383,-0.038766943,-0.03410743,-0.018145159,0.09070024,-0.063616276,-0.07355133,0.02053716,-0.026742836,0.035623085,-0.023103828,-0.020909641,0.1182502,0.0256761,0.00691515,-0.032429703,0.021388553,-0.035157096,0.009093924,-0.025628215,0.028191159,0.061313808,0.00019396571,-0.06663396} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:57.531298+00 2026-01-25 01:27:51.867799+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1241 google ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB 1 t 1244 Soho Club unknown The club is owned by the guy with the style, who actually cares about the place :) the club is owned by the guy with the style, who actually cares about the place :) 5 2026-01-29 18:34:31.336452+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "The club is owned by the guy with the style, who actually cares about the place :)"} {0.07053602,-0.013765806,0.013512096,-0.020106656,0.0006242218,-0.0032396473,0.018282585,-0.09005607,0.0240035,0.019232372,0.015907377,0.039300233,0.006233305,-0.049219467,-0.014239036,-0.021717716,-0.039504163,-0.111859076,0.012977596,0.03702649,-0.055139765,-0.061887726,0.010532724,0.008099315,-0.05575905,-0.00048084234,0.048469458,0.0821671,0.022900622,-0.0024769637,-0.017069977,0.057261445,0.073077574,-0.001305652,-0.12365476,0.0037617988,0.05204456,-0.02677807,0.007981211,0.018840706,-0.042957976,0.020907292,0.04497314,0.073804095,0.0038227395,0.09256538,0.04460968,-0.044625502,-0.04901396,0.03775959,0.027624268,-0.03466956,0.06409957,-0.053419642,0.02060941,0.07416302,-0.035492007,0.03286939,-0.0024408086,0.0345228,0.0954331,0.018438555,-0.09416306,0.045693707,0.041989513,-0.07009498,-0.06798393,0.08215141,-0.020282323,-0.115284845,0.11692286,-0.04153086,0.011251037,0.03742586,-0.051093005,0.08247929,0.025436798,0.03278605,0.042042945,-0.046561386,0.015333157,-0.0059717293,0.045578334,0.019013092,-0.055871427,0.009418814,0.029278824,-0.07027196,0.0472967,0.06361247,-0.032352246,0.044250574,-0.08272059,-0.064587735,-0.05943367,0.06416869,-0.042680275,0.12736359,-0.11072591,0.060670324,-0.01169512,0.09321749,0.0011927319,0.027304305,-0.0013065853,-0.025395509,0.029314412,0.15914485,-0.012676853,-0.032793753,-0.037298806,0.027555492,-0.024201864,0.029417815,-0.034327365,-0.029181292,0.022249972,0.00700136,-0.005092204,-0.031387236,0.03517975,0.05325833,-0.007809019,0.061512686,-0.050201677,0.013754954,0.026304565,-6.6770944e-33,-0.049957667,0.05526093,-0.029016722,-0.016896732,0.10168588,-0.02003866,-0.006793989,-0.027038233,-0.04901155,0.06281455,0.12502596,-0.08956499,-0.03263744,-0.04163093,0.08120618,0.0133162625,-0.010753053,-0.08734051,-0.086292,-0.07849297,-0.008182867,0.12279688,0.0041079996,0.015641833,-0.037365437,0.027995938,0.05218421,0.03364141,0.013396138,0.034370583,0.01634455,-0.01707023,-0.04954933,-0.027645336,-0.009336886,0.021484181,-0.03542852,-0.08067857,-0.06772738,0.011791903,-0.013610677,-0.04722059,-0.07615531,0.08511341,-0.12312696,0.015427502,0.0015647124,0.0073616295,0.019002728,-0.02217704,0.0169664,0.037449386,0.013711657,0.08079307,0.043945964,-0.10183162,0.03429132,0.029808028,0.0606241,-0.09220548,0.06408601,0.04637356,0.007569391,0.04053569,0.012007239,0.017006261,0.063415326,-0.04676294,0.0068496084,-0.002966747,0.06680917,0.060918573,-0.067615665,0.017396498,-0.08828624,-0.018876458,-0.121125974,0.047071528,0.06620546,0.020338487,-0.047931265,0.019451043,-0.009627411,0.04827211,-0.032166414,-0.009906202,0.13777946,0.006779717,0.0020729573,0.003768171,-0.02786551,-0.034011737,0.025580592,0.01124275,0.013640871,2.1792383e-33,0.022773169,-0.09124846,0.051884595,-0.07790627,0.024225008,0.018989021,-0.10961221,-0.0520469,-0.016994942,0.079110846,-0.0628964,0.04036121,-0.06301198,-0.034200802,0.057908215,-0.042965576,0.013003693,-0.033752114,-0.08597165,-0.00071396434,-0.008543425,0.029405618,0.030788692,0.03387539,-0.06015686,-0.01152447,0.006680409,0.04285421,-0.050882686,-0.044094756,-0.07137742,-0.0466649,-0.023774901,-0.06605687,-0.04715423,0.05936908,-0.111344345,0.050486147,-0.018153578,0.07562061,0.0044960794,-0.050135005,-0.04141042,0.07635849,-0.0019840542,-0.0784169,-0.032163206,-0.09885815,-0.04095944,-0.004124102,0.03546403,-0.014176227,0.028430827,0.011991467,0.0115500195,0.046839003,0.01382754,0.05693853,-0.054657154,0.054088887,0.0038066576,0.0032347958,-0.08970602,0.05412736,0.010138857,0.0016748034,-0.10810172,-0.045648463,-0.043606915,-0.03813302,-0.0013433477,-0.059854537,-0.05390485,0.055164814,-0.07366138,-0.019237706,0.15579042,0.06788749,0.012134708,-0.01547082,0.015247348,-0.05953328,0.018911475,0.034398995,0.049947508,0.041441068,0.005381213,-0.019134555,-0.03443227,0.044435993,0.072338134,0.069921896,-0.03856079,-0.01089037,0.0074649425,-2.629243e-08,-0.091676295,0.015970746,0.0609456,0.039183084,0.057007004,-0.009764972,0.027156534,-0.061501693,-0.015461396,0.112731464,-0.030662868,0.0055318475,-0.007107617,-0.0024094833,-0.037632767,-0.0042329766,-0.051004935,0.048121642,-0.100530304,0.017968295,-0.05248669,-0.018335227,-0.0054502767,0.018565495,-0.039031114,-0.024079667,-0.048092987,-0.043767307,-0.012471329,0.00490603,-0.0025383583,0.026425576,0.031903956,-0.02782523,0.02612054,0.021437887,0.015416631,-0.017998056,-0.01679646,0.0071150963,-0.08914863,-0.113974966,-0.023335204,0.07194735,0.03473035,0.07292998,0.041578528,0.050698213,-0.02885703,0.013209609,-0.040109277,-0.019693326,0.018909577,0.014583496,-0.06118537,-0.02095946,-0.039204612,0.093790025,0.031325873,-0.019929286,-0.003523942,-0.07474753,-0.003855926,-0.009234797} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:00.493332+00 2026-01-29 18:36:00.56595+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1424 google ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB 1 t 1427 Go Karts Mar Menor unknown Group had a couple of races .Staff are really helpful .Everyone had a blast. Great value .Will definitely be back & would highly recommend. 100% group had a couple of races .staff are really helpful .everyone had a blast. great value .will definitely be back & would highly recommend. 100% 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"P2.03": "Staff are really helpful", "R4.03": "Will definitely be back & would highly recommend. 100%", "V4.01": "Great value", "V4.03": "Everyone had a blast."} {-0.022175513,0.039834075,0.04697156,0.05283525,-0.07638414,0.046846937,-0.078260556,-0.06704959,-0.09397991,-0.020027304,0.024414731,-0.055206574,-0.011549647,-0.011754739,-0.054903883,-0.018232439,0.033326067,-0.061510134,-0.035354815,-0.056833107,-0.1313894,-0.04375765,-0.01678433,0.05393519,-0.01853842,-0.009175364,-0.11483983,0.046720844,0.019655745,-0.073891565,-0.055627592,0.019940302,0.011971239,0.012310656,-0.024224054,0.044886038,0.041985963,-0.03964954,-0.03448503,0.053258184,-0.013238976,0.008736512,-0.016333919,0.023011792,0.06769198,0.034307007,0.066524416,-0.026772756,0.02293235,0.022550464,0.120431334,-0.014029649,0.08331013,-0.026772948,-0.022213735,0.020070126,-0.021896224,-0.056864027,-0.010517091,-0.09180672,-0.0012490686,-0.050496865,-0.070379145,0.03548432,-0.0065978365,-0.024674166,-0.052474257,-0.005293908,0.09010356,-0.12421922,0.08377662,-0.014700772,0.09247006,0.0009335347,0.043414228,0.08243838,0.039652023,-0.026950203,-0.015662549,-0.11163924,0.02273897,0.01365424,-0.008470349,0.044937342,0.0010650199,-0.033152673,0.026227348,0.053717937,-0.0639693,0.011806807,0.060333684,0.20887858,0.0751574,-0.025523728,0.0074054543,0.042994667,0.019354558,0.041624803,0.09700225,0.05717242,0.0076299985,0.0572157,0.031874474,-0.055834986,-0.06309261,-0.057661053,-0.06952716,0.0059738285,-0.041585583,-0.05764165,0.011912437,0.036230218,0.011048489,0.036463737,-0.040161517,-0.02615925,-0.02576396,0.014419681,-0.014886298,0.063428566,0.003752086,0.021273978,0.030063376,-0.031561498,0.01321758,0.104176514,0.090966664,-2.2657606e-33,0.0020412323,-0.041398413,-0.004667229,-0.0036356095,0.051366076,-0.019558163,-0.058958836,0.014327665,-0.100914,-0.03847833,-0.029502058,0.046606526,0.04513226,-0.050254166,-0.013767959,-0.04269488,-0.05775042,-0.025560059,-0.074935615,0.0073818676,-0.032929473,0.11289324,-0.044994395,0.043712255,0.016149096,0.081111446,0.03177916,0.009556253,0.10378983,0.042979307,-0.08388648,-0.02043267,-0.03701693,-0.0015672721,-0.019341255,0.08993301,-0.027344992,-0.119160414,-0.011233937,0.026964268,0.042432662,-0.0027162929,0.0175351,-0.039618168,-0.062320463,0.0002479873,0.013700575,0.04842688,-0.031123796,0.03163832,-0.11317621,0.0015650865,-0.008841881,0.032118242,-0.0066280803,-0.018746136,-0.006310756,0.006684902,-0.04984646,0.010349433,0.09246556,0.13960892,-0.02493432,-0.038752872,-0.013037983,-0.047669746,-0.0113433115,-0.059443876,-0.003812704,-0.065124005,0.020071033,0.00057464506,-0.0025615406,-0.003962718,0.030412737,0.06549599,-0.0012646518,-0.009304898,-0.01660449,0.0017086117,0.004154306,-0.027780121,-0.032920834,0.0072511826,0.013145354,-0.011128523,0.05624307,-0.06818561,-0.02041258,-0.034791097,-0.02706911,-0.019983139,0.03109473,0.036148995,-0.01942743,-8.985008e-34,0.012101543,0.10206128,0.01976558,-0.025298037,0.10354604,0.015277988,-0.004931051,-0.015544634,-0.00247451,0.04551687,0.0039012283,0.05851211,0.10534093,0.055171296,-0.078242674,-0.020076413,0.0013883124,-0.024565287,0.039357588,-0.041582957,0.008002391,0.07959697,0.00045921095,0.0034115093,-0.0065848385,0.059519287,0.015032889,-0.021679154,-0.08048293,-0.04743302,0.0006203023,-0.071099736,0.022037772,-0.0147441765,0.012163902,0.040511083,0.062333807,0.008823096,-0.033692528,0.0128286015,-0.012298627,-0.043306716,0.0005972653,0.041852985,-0.022889078,0.01394661,0.016364064,-0.029349912,-0.013918525,-0.00963092,-0.008340243,0.026398443,-0.001808135,0.0044197044,-0.0012696983,-0.056022983,0.051092584,-0.0978477,-0.0448221,0.054021552,-0.079938844,0.0037609036,-0.030383484,0.052074127,0.025445994,-0.13964054,0.015445005,-0.07229368,-0.10977162,-0.020316213,-0.04851908,-0.009763078,0.0020004099,0.0071776947,0.009247389,0.021275114,-0.04893861,-0.037188645,0.016962146,0.050326787,0.013302779,-0.013111636,0.058499664,0.06535576,0.05532146,0.06290064,0.04725118,0.009307,0.01630289,0.10182848,0.07650298,0.020248376,0.053158328,-0.007879882,-0.03936687,-2.8060816e-08,0.071105674,0.109644145,0.036818027,0.050378893,0.068022594,-0.06527263,0.0070492774,0.052432247,-0.033298563,0.10401713,-0.043237273,-0.010474821,-0.024940353,-0.04339149,0.053111408,-0.022767682,0.015894981,0.02010704,-0.0470425,-0.052505534,0.023236299,0.009654568,0.010460289,-0.04913584,0.030023372,0.02175387,-0.050054424,-0.02801483,-0.06614219,-0.02250928,-0.0017901532,-0.015796399,-0.05244037,-0.011403869,0.022214524,-0.00676118,-0.1517511,0.062107366,0.045886658,-0.024115948,-0.017831963,-0.005890013,-0.041751068,0.070478156,0.046558145,0.0083176475,-0.064718634,0.0041921423,-0.03127402,-0.14287592,-0.009841773,-0.096805595,-0.06281675,0.099458605,-0.005259056,-0.028836036,-0.041923616,-0.0063386154,0.053248554,-0.006699882,-0.026570719,-0.09741159,-0.18542635,0.07484028} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:59.784792+00 2026-01-30 02:01:09.313103+00 22c747a6-b913-4ae4-82bc-14b4195008b6 244 google Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB 1 t 247 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown It would be very important to better mark where the shuttle is. Like a sign maybe. but apart from that point everything was fine. Thank You it would be very important to better mark where the shuttle is. like a sign maybe. but apart from that point everything was fine. thank you 5 2025-08-28 01:27:48.340614+00 en v5.1 A1.04 {} V- I2 CR-N {} {"A1.04": "It would be very important to better mark where the shuttle is. Like a sign maybe.", "V4.03": "but apart from that point everything was fine. Thank You"} {0.04407134,0.020022916,0.08132561,-0.0017161289,0.014643201,-0.016972028,-0.015336166,0.008606829,-0.03707846,-0.05094043,0.05893851,0.064143695,-0.0051529035,0.03492136,0.032139115,-0.032824837,0.06802984,-0.019998474,-0.06185805,0.00015122179,0.0001187926,0.026257189,-0.029142046,0.046343498,-0.060437635,0.04519117,0.006311975,0.029854495,-0.0033010961,-0.042896952,-0.13107789,-0.030710284,0.004666697,0.004163785,0.09779655,0.07508053,0.02280532,-0.035776373,0.0936216,-0.13198505,-0.0076787756,-0.028048292,0.059712168,0.05519381,0.011823651,0.0022958554,0.049152516,-0.082080886,0.08528376,0.0050072717,-0.0079227835,-0.05949661,0.0028086517,-0.09567019,0.008764547,0.052056745,0.007310387,-0.14580062,0.08067117,-0.06713077,-0.009298396,0.013242561,0.012270382,0.052861508,0.038697843,-0.034851484,-0.024456989,-0.07427684,0.091988005,0.009160141,0.008213517,0.032642704,-0.04079097,-0.12769923,0.013358824,0.030964755,-0.002077692,0.07248732,0.033851337,-0.028623268,-0.01472743,-0.06275403,-0.05038036,0.044400536,-0.025018426,-0.010566871,0.019919563,-0.09300968,0.06466212,0.105302945,0.022760732,-0.018145634,0.05579936,0.028355852,-0.06349398,0.009849994,-0.091686204,-0.0054787523,0.029283304,0.033093616,0.008775801,0.07341144,0.012634475,0.06218761,-0.04323305,-0.024551623,-0.023774732,-0.014079291,0.006516455,-0.08828395,-0.013055929,0.0017360086,0.089732125,0.05541252,-0.11126574,0.006802635,-0.06820821,-0.03785942,0.00272752,-0.078414954,-0.07726578,-0.06431635,0.03313813,0.044054523,-0.081224814,0.03966012,0.09235155,-3.133447e-33,0.028849946,-0.019718314,0.026268477,0.00066679524,0.042473294,0.0405224,-0.13486491,-0.020019077,-0.01869763,-0.014862482,0.017625757,-0.048630267,0.047052026,-0.034496237,-0.011935958,0.008589953,0.021184335,0.007168862,-0.09335452,-0.0038910308,-0.015346104,-0.04730236,-0.079429865,-0.09126945,0.02411703,0.12801489,-0.028153324,0.006892216,-0.03685293,0.036110725,-0.12538104,0.035797033,0.059965625,0.013996129,0.043165058,0.03227114,0.030493423,-0.021375658,-0.074406266,-0.02774668,-0.02491262,-0.016728958,-0.084893085,0.049832072,0.01594012,0.03883242,0.074722484,-0.030078283,0.071704105,0.08041321,-0.081660725,0.06241856,0.06976395,-0.10103447,-0.03611497,0.0020901586,0.07673936,0.036869492,0.0037687388,0.009552487,-0.0045434735,0.066938214,0.07535168,-0.06500633,0.04476046,0.010750819,-0.06676942,0.03263607,0.036889788,0.030603142,-0.01944993,-0.017724631,0.06591396,0.08585678,0.023737777,0.015122472,-0.11222906,-0.0055789044,0.024235247,0.0112635605,0.02476752,-0.02252449,0.03318522,-0.006785086,0.04635712,-0.06988476,0.023042422,0.0033306892,-0.028322313,0.039042734,-0.009931569,0.06760017,0.0022744664,0.056652218,-0.048224926,1.815457e-34,0.0343246,0.026674801,-0.015808994,0.013153244,-0.12095113,-0.032357287,0.020497957,0.058031365,-0.035487477,0.084136456,0.017702153,0.010211251,-0.048854712,0.00047987272,-0.06602647,0.008376515,0.028337006,0.031498156,-0.03489081,0.053498156,0.03751596,-0.005997775,-0.031414613,0.027311375,0.008292009,0.06959845,0.064280234,-0.027966075,-0.124942705,-0.011164754,0.035267133,0.075707234,0.030037751,0.0050358092,-0.015628561,-0.046363536,0.032209937,-0.037381943,-0.029460138,-0.033398096,-0.0042188633,-0.0011703328,0.0039637173,0.050378386,0.0320972,-0.01271167,0.09518394,0.00017487475,0.025313195,0.07279314,-0.05597202,-0.050556455,0.006025973,-0.016317729,0.0021336633,0.056480017,-0.0041573565,-0.022753099,0.02710244,-0.027490433,-0.016467374,-0.010505,0.038560785,-0.12720764,0.060495038,-0.052802224,0.11690746,0.030207282,-0.032471165,-0.013100748,0.044425454,-0.045595378,-0.060264956,0.024183122,0.060700394,0.024503106,0.05288918,0.002474633,-0.05010802,0.006980115,-0.0040879203,-0.034065146,-0.04665042,0.026634103,0.06566018,-0.023261253,-0.1061699,-0.03854865,-0.025310434,-0.040356636,-0.054552384,0.06223785,0.0033464255,0.009394836,-0.07371496,-3.050677e-08,-0.04435803,0.034592174,0.001640299,-0.02036164,-0.017859725,-0.004741328,0.023949595,0.0007296353,-0.07518202,-0.027899524,-0.051229708,-0.017208738,-0.09017051,0.030373141,-0.041269504,-0.01286322,-0.08982883,-0.005200915,-0.07094701,-0.043800674,-0.070072085,0.015659504,0.030966291,0.036601037,-0.036993407,0.03143929,0.038032413,0.07273798,0.031250145,-0.11841479,-0.0061898944,-0.0683003,0.022016149,-0.0321357,-0.022240527,0.047946915,0.033683386,0.053890053,0.052254032,0.057951372,-0.033834964,-0.005557423,0.013342532,0.0736093,0.03850737,0.064375415,0.034269128,0.03963082,-0.13267499,-0.09340267,0.015677378,-0.017283553,-0.04906641,0.04222125,0.047705296,-0.034348726,-0.04165482,-0.004774657,-0.010891894,0.034407116,0.03230148,0.021917505,-0.17145395,0.034839023} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:48:43.769289+00 2026-01-25 01:27:50.224075+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 411 google Ci9DQUlRQUNvZENodHljRjlvT25oMk9VbzFlVXBsVG10MGNYVkJYek5vYkRrelEyYxAB 1 t 414 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!! Gracias 😊 el trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!! gracias 😊 5 2025-09-27 01:27:48.341763+00 es v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "El trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!!"} {0.0026070648,0.022577012,0.042817395,-0.036482982,-0.07620249,-0.016506635,0.067209214,-0.014994734,-0.02001924,0.0075314986,0.04983451,0.022081027,-0.028770935,-0.038397815,0.031710707,0.045594517,0.02629541,0.049979303,-0.019076686,-0.028799014,0.066923305,-0.05365575,-0.056841295,0.10419725,-0.08647781,-0.058543615,-0.05245393,0.07539698,-0.044605758,-0.08323539,-0.04423418,0.09197385,0.08331683,0.022450117,0.0031528582,-0.0056640604,-0.015980534,-0.04122417,0.012090913,0.049177475,-0.06683151,-0.060678415,-0.005686439,-0.0033019641,-0.06758618,-0.10440111,0.07530856,0.08859249,0.012311851,-0.030291919,-0.08931283,-0.0037106478,0.047981903,0.013049153,-0.055722233,0.063273825,-0.048204243,0.0035232587,0.05109997,0.028435642,0.026280342,0.08159724,-0.045691025,0.033197597,-0.018735658,-0.045538623,0.022030836,0.0007309118,-0.059444226,0.07333773,0.08762276,-0.031997792,0.009857737,0.0049310224,-0.05036567,0.0641012,0.036794454,-0.05921399,-0.036239516,-0.035994373,-0.018938046,-0.037452463,0.004004654,-0.042264577,0.013870815,0.008712746,-0.040024646,0.029824601,0.034027647,0.0072159953,-0.0032003268,0.085316814,0.00222001,-0.07229371,-0.0070464932,0.09035685,0.05108686,-0.08846295,-0.000611641,0.020821001,0.11468521,0.03656437,0.1365204,0.014591676,-0.035874166,0.084167995,0.033679996,-0.012029382,-0.03470483,-0.0024640928,0.007968772,-0.019582147,0.009805983,0.050596174,-0.06570096,-0.005274531,-0.019025672,0.013590841,-0.054912932,0.0013419216,0.043209497,0.0065791802,-0.02842683,-0.046332177,7.021616e-05,-0.028740987,0.050400652,6.439764e-33,-0.019369587,0.045632217,-0.016716085,0.049037173,-0.00011422168,0.024540003,-0.091376856,0.05045646,-0.1126384,0.03995696,-0.04823473,0.03081469,0.013067946,0.0190411,0.022726288,0.037202924,-0.070632756,-0.015034271,0.040658172,0.054588504,-0.06118691,-0.077075936,0.02399998,0.013513286,0.003641449,0.05877658,0.01992795,-0.055144377,-0.040438965,0.053769756,-0.030997908,0.10570606,0.03004808,0.032100182,-0.07659275,-0.057490703,-0.033473924,0.020138357,-0.034006897,0.021980796,0.06983438,0.005120241,-0.04174846,0.0018565151,-0.007506511,0.04288479,0.0486719,0.054266244,0.13049485,0.007047946,-0.06515607,-0.068880074,-0.07229234,-0.117294215,-0.012597301,0.029129613,-0.051845077,0.02480988,-0.0042672143,-0.06672065,0.022444107,0.017505504,0.013519231,-0.10662063,-0.00846052,0.024002524,0.022594824,0.021010738,0.1179005,0.0068579484,-0.011730448,-0.047208607,0.01848025,0.042282667,0.08489225,0.018696541,-0.05239368,-0.04511335,0.04448775,0.054691475,-0.06759871,0.011725932,0.008513332,-0.0046217972,0.10530092,0.095395334,0.0074145454,0.0135115,0.0033171833,0.13777578,-0.022673002,0.041243706,0.0076921014,-0.020946622,0.040402934,-7.3731465e-33,-0.014576233,-0.0041527646,0.007548181,0.054880776,-0.018540606,-0.024824731,-0.051250774,0.0018522689,0.012514997,0.024450442,-0.04736343,-0.14859487,0.010073734,-0.044623777,-0.04381186,0.029439779,0.011285436,-0.121386565,-0.07262593,-0.030534383,0.006583251,-0.01772219,0.04070256,0.054999415,-0.015540174,-0.058403574,-0.024691485,0.008612086,-0.019776763,0.008987613,0.021529367,-0.03246711,-0.028715456,0.03641386,-0.006144088,0.03435959,-0.03213119,0.03556206,0.048077505,0.03871083,-0.0100743,-0.0143912025,-0.01111185,0.02051218,-0.00085128186,-0.04357606,-0.0068534254,-0.127755,-0.05588858,-0.10419562,0.089583404,-0.06933968,-0.075085156,-0.03313276,0.024360485,0.0567782,0.04132133,-0.07722015,-0.018415265,-0.039513145,-0.0027514973,0.021426607,0.01915209,-0.010297332,0.058284756,-0.03743661,0.0009380455,-0.001996064,0.012569976,0.03932421,0.066698514,-0.029468928,-0.124666534,0.019220065,-0.029742578,-0.04988719,-0.08238966,-0.05637382,0.016202755,0.008498854,-0.0035694998,0.0076531963,0.03982641,-0.0024800159,0.022328489,-0.04741743,-0.04785091,0.0613373,0.011444181,0.11243333,0.026314149,0.054224342,-0.07970071,-0.04824493,-0.019777153,-3.4070638e-08,0.04352179,0.00887118,-0.05857569,0.0011065506,0.060564347,-0.07491607,-0.045136996,0.05614449,0.039497744,0.07181115,-0.041767813,-0.054800425,-0.031058282,0.10292511,0.02204957,0.053910412,0.077314824,0.087025225,-0.019332984,-0.08004406,0.060257114,0.012772377,-0.07662328,0.033696637,0.015208411,-0.016029397,-0.05764287,-0.008665779,-0.032028574,0.0033117859,-0.03215168,0.008276202,-0.056606174,-0.09699627,0.006328982,-0.014156611,-0.04732073,-0.04639482,0.009309293,-0.077426516,0.083625056,-0.009889992,-0.058482308,-0.004304862,-0.004324763,-0.11560557,-0.04612609,0.011265071,-0.049620207,0.03686168,-0.028523155,-0.09535838,0.072123475,0.042678375,0.07090386,-0.069072984,0.06619698,-0.013102868,0.015212162,0.027782228,0.10218826,0.11893439,0.014895876,-0.11413261} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:32.101995+00 2026-01-25 01:27:51.30563+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 412 google Ci9DQUlRQUNvZENodHljRjlvT2pWTWJrUlNiRUpLV2kxVFYxcGtSVEZXUWtocmNtYxAB 1 t 415 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Abholung: Shuttle-bus nicht auffindbar oder nicht existent. Telefonisch nicht erreichbar, es geht nur ein Bot ans Telefon, über eine Tastenkombination kann Support angefragt werden, nach 10min in der Warteschlange haben wir niemanden erreicht. abholung: shuttle-bus nicht auffindbar oder nicht existent. telefonisch nicht erreichbar, es geht nur ein bot ans telefon, über eine tastenkombination kann support angefragt werden, nach 10min in der warteschlange haben wir niemanden erreicht. 1 2025-08-28 01:27:48.341765+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Shuttle-bus nicht auffindbar oder nicht existent. Telefonisch nicht erreichbar, es geht nur ein Bot "} {-0.045264762,-0.043508444,0.00040393652,-0.089071885,-0.08002679,0.008604089,0.122656755,0.1088308,0.026877614,-0.04405485,0.0060287695,0.047386374,0.019240394,-0.040951815,-0.029656446,-0.050327417,0.018559268,-0.07625323,-0.019221848,-0.05801192,-0.008786807,0.020108033,-0.045495212,0.05810528,-0.026681172,-0.03893701,0.02943286,-0.06298838,0.040040866,-0.016905697,-0.0079096975,0.035882108,-0.023440447,0.01454165,-0.010682253,0.02960132,0.028445313,-0.04983639,-0.04547707,-0.00432814,0.019157076,0.0013529654,-0.081706256,-0.016710803,0.002468134,-0.055452447,-0.0447315,-0.026643563,-0.0023917707,0.035292182,-0.09202903,0.01517548,0.09763091,-0.0058423434,0.017281644,-0.043120764,-0.04857124,0.06417034,0.057604153,0.0064501604,0.016933888,-0.0021406186,0.028907672,-0.009039042,-0.06500751,0.05083258,-0.035054564,-0.017953664,0.06729464,-0.029457998,-0.035109863,-0.018252157,-0.06942789,-0.042613503,-0.07138861,0.026973713,0.034826584,0.028474575,0.02906775,-0.042222016,-0.02948188,-0.071630456,-0.03854759,-0.039198037,-0.003751562,0.031267427,-0.004436537,-0.028148523,-0.050395582,0.027748464,-0.03189371,-0.024976676,0.014810564,-0.06770167,-0.12874453,0.019656423,-0.06594958,-0.124132484,0.03407668,0.035966042,-0.01970816,0.10208307,-0.021255782,0.03672527,-0.13452227,-0.024230978,0.0061586206,-0.061290763,0.070757516,-0.022120023,-0.032641254,-0.044434212,0.028536182,-0.045677986,-0.10956835,0.005302981,-0.055203505,-0.0971302,0.07607357,-0.0022053171,-0.040887028,-0.061143067,0.0499222,0.036632918,0.057043612,-0.025880292,0.07803589,1.3154058e-32,-0.107946895,-0.06318372,0.01581305,0.030229684,0.040967524,-0.027954835,-0.05126779,0.035428684,-0.019698001,-0.07483615,-0.07509232,0.017009808,-0.010913839,-0.027444627,0.09865796,-0.036891244,-0.022541195,-0.034268104,0.065439016,-0.036519855,-0.0059846127,0.0046391054,0.036376297,0.057767373,0.09327375,-0.02621476,-0.031391848,0.01056393,0.060693733,0.08801836,-0.061922602,0.009753379,-0.099294655,0.047922786,-0.018621596,-0.04992808,-0.050427206,0.0042445967,-0.01243581,-0.049142227,-0.031629104,-0.05604285,-0.1170536,-0.015853208,-0.02270219,0.010337202,0.01590076,-0.027754003,0.05581156,0.01665978,-0.079330206,0.032288373,0.043514714,-0.06540633,0.03631647,-0.010680268,-0.052389037,0.05872256,0.077181235,0.0068367524,0.010136288,0.0066411593,0.036545325,-0.012178482,0.10044481,0.02297461,0.00941212,0.008993049,0.069507584,-0.00041744756,-0.037434604,0.008665481,0.07408339,0.0727907,0.023761358,0.0575149,-0.095950805,-0.054134894,-0.07349372,0.060809758,0.0036760666,-0.05072028,0.063232705,-0.016646845,0.103096895,-0.031414956,0.009131342,-0.003698619,0.008729019,0.04841875,-0.07388991,0.09042013,-0.060237113,0.048948545,0.007905359,-1.430835e-32,0.08758226,-0.00429336,-0.035086792,-0.06284625,-0.05109787,-0.026188284,0.0121078575,-0.007018212,-0.08899304,0.008116629,-0.08571787,0.001021883,0.06730855,-0.024739454,-0.03001166,0.02455864,0.06835225,-0.106565796,-0.077830695,-0.0015860555,-0.009663309,-0.029596915,-0.015314122,0.029880965,-0.02833217,0.0042385524,0.010402417,0.08677939,-0.024731468,-0.05674106,0.011631716,-0.0150186485,0.057638362,0.0470494,-0.0087471735,0.020698607,0.1214342,0.06068353,0.0024651287,0.026847415,0.06360574,-0.011874829,-0.011773221,-0.10690354,0.07310057,-0.053379,-0.0855549,-0.04150592,-0.11861714,-0.09365063,0.051755626,0.01282038,0.09411205,0.062459435,0.11833539,0.0010609454,0.06758599,-0.0189553,0.039467935,-0.0044713644,0.08748742,-0.049951684,0.047148857,0.01634088,0.039895557,-0.043637123,-0.009167621,-0.021271477,-0.026190532,-0.013842495,0.10421683,-0.0052084494,0.03087525,0.09898173,-0.030291803,0.052948814,0.00086151116,-0.0070436792,-0.037819635,-0.040297452,-0.046359506,0.029781407,0.045870315,0.012452157,-0.015499786,0.029629497,0.058857046,-0.019012388,0.0066411453,-0.082669996,-0.014698744,-0.011537914,-0.01233483,0.06633144,0.0355359,-5.659456e-08,-0.052550297,-0.029691447,-0.011539927,-0.013231025,0.025641043,-0.08623801,-0.021929678,0.02820623,-0.07477498,0.016712813,0.02232127,-0.060436975,-0.048658654,0.14880835,0.07286227,0.04691468,0.01709849,0.009442628,0.010188595,-0.015069785,0.043909848,-0.063129984,-0.0015853022,-0.017515188,-0.0035689492,0.002713893,-0.02296821,-0.04613786,0.046049133,-0.172006,-0.07951927,0.025523366,0.03491863,-0.009667331,-0.039581522,-0.0005843232,-0.02358509,0.032876745,-0.040402073,0.036283594,0.06175907,0.046587363,-0.008577232,-0.02426331,0.061165642,0.06712404,-0.009013431,0.03292026,-0.037569586,0.0419801,-0.030335177,0.024988148,0.03716283,0.038210083,0.014575326,-0.061981816,-0.0015784609,-0.060678095,-0.036361143,0.0012988249,0.0482896,0.13514535,0.008371577,-0.016515493} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:48.77757+00 2026-01-25 01:27:51.308755+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 413 google Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB 1 t 416 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más, seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más, seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto 1 2025-11-26 01:27:48.341767+00 es v5.1 J1.02 {} V- I3 CR-N {} {"A1.02": "seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que n", "J1.02": "pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que tenía"} {-0.016141815,0.02373603,-0.012405131,-0.13100113,-0.114023365,-0.015355149,0.13559732,-0.02564342,0.080885835,0.012112368,0.050891742,-0.04736306,0.00707066,0.009582326,0.045346253,0.013976049,-0.013761904,-0.0072280476,0.028895073,0.061999645,0.09763604,-0.081807874,-0.07036066,0.093039274,-0.09123638,-0.0064452165,-0.04803319,-0.00029885076,-0.10782182,-0.093985185,0.019462077,0.00042498513,0.058254138,0.015384452,-0.017631946,-0.005209381,0.019720217,-0.07821872,-0.07572772,0.08674941,-0.07153658,-0.008950418,-0.021369034,-0.04845748,0.011782103,-0.056073513,0.023087762,0.11318567,0.006550588,-0.06951044,-0.017097598,-0.0433471,0.00087074714,-0.008249597,0.022680229,-0.007353031,0.009574895,0.026316863,0.06122622,0.040541887,0.0074576326,0.0567279,-0.027071206,0.03727227,-0.0027971782,0.01564828,0.053478073,-0.036127895,-0.074305356,0.14184827,0.07596611,-0.029950649,-0.0109703615,-0.016506704,-0.05834921,0.020817714,0.0026874144,-0.0009775426,0.033023186,0.011824071,0.01772722,-0.025196472,0.032031313,-0.08038833,0.01674144,-0.06652512,-0.023615453,0.04861112,0.040968623,-0.06835241,-0.02914821,0.073304005,0.016651122,0.04682999,0.042624146,0.044581424,-0.003874182,-0.039581317,0.010529034,0.04108641,0.088620715,0.075056106,0.035715472,-0.01886213,0.012127378,0.075429104,0.03572307,0.04036197,-0.0054123793,0.076015264,-0.105744794,-0.046781547,-0.023554187,0.0137862805,-0.076624,0.014424689,-0.018472306,-0.052437797,-0.029518336,-0.049344867,-0.008923098,-0.028954828,-0.017200556,0.014931135,0.04280101,-0.05447982,-0.0018376366,1.5693002e-32,-0.030582663,0.0118376855,-0.014593547,-0.026586613,0.04265383,0.10004324,-0.0059667593,0.06747237,-0.013339661,0.027316632,-0.06788031,-0.00046462353,0.014739071,-0.0154719055,0.10307665,-0.027272517,0.015851714,0.012811224,0.036175273,0.031655554,0.0116917305,0.027639145,0.01844334,-0.0019611996,-0.0057893,0.047594924,-0.004791357,-0.008308809,-0.013319125,0.052982505,-0.023903232,-0.077243105,0.051037684,-0.044753227,-0.0021938356,-0.09395685,0.04909564,0.04304972,-0.1052904,-0.009937722,-0.09929231,0.01933527,-0.07332005,0.04207111,-0.04368585,0.042802252,0.068728544,-0.015880154,-0.057443224,-0.006214658,-0.0585228,0.019524721,-0.045973413,-0.036418114,0.015979912,-0.009242535,-0.09265857,0.034564067,-0.022939827,-0.11314049,0.053065673,0.0016864188,0.018244362,-0.04680454,-0.0028720517,-0.074180596,0.054291084,0.01344841,0.12756993,-0.0025124862,0.0033984876,-0.01925464,-0.0293728,0.059205823,0.008805645,0.002997561,0.018581912,0.00038982258,-0.034654126,0.011276306,-0.0033835503,-0.07448676,0.058024827,-0.03104849,0.062363554,0.037247155,0.12808105,0.07147835,-0.004302507,0.12409208,-0.024154795,0.10159809,0.055639476,-0.072017275,0.1054857,-1.6472505e-32,-0.08044011,-0.0236548,-0.054665025,-0.012557893,-0.0032537454,-0.0014212789,0.04761833,0.02099844,0.07283452,-0.1070013,-0.08297432,-0.101610735,0.042644378,-0.012413106,0.004241509,0.015047163,-0.015235971,-0.104044154,-0.06887337,-0.010335089,0.015494391,0.06188938,-0.024041284,0.03672857,-0.025664011,-0.023820998,-0.013178273,0.026073856,-0.06620983,0.019732736,0.056319304,-0.054289058,0.029983796,0.06518174,-0.01270413,0.010397153,0.04554864,0.0097990995,0.009831624,0.031196209,-0.0063212872,0.09343499,-0.047780007,-0.03838623,-0.03147634,0.05096861,0.0027405326,-0.14250545,-0.021427764,-0.04110895,0.06156403,-0.06312572,-0.0032606693,-0.04678068,0.0203265,-0.04791342,-0.02108678,-0.063145265,-0.051517185,0.048779935,0.029781554,-0.0051829335,-0.090820834,-0.006698308,0.06660661,-0.055325918,-0.05233718,0.060524125,0.010222138,0.023873081,0.025414793,-0.029389353,-0.1456192,0.022769298,-0.023748921,0.013227972,-0.08195768,0.0653992,0.017969497,-0.074784026,0.008239725,0.01170396,-0.004227316,-0.10205679,0.040123835,-0.057803907,0.05770846,0.03965596,-0.05809388,0.04065143,0.012462905,-0.009619361,-0.018980633,-0.009850254,0.011187202,-5.986454e-08,0.035672892,-0.024031548,-0.0020302024,-0.050998237,0.05844773,-0.040772058,0.02392128,0.018514294,0.036956575,-0.022306705,0.054832492,-0.009327603,-0.07845742,0.044477828,0.0043584616,0.04148838,0.049926545,-0.07166663,-0.046894137,-0.07282281,0.11361984,-0.021202872,-0.140542,-0.004082295,0.0075641503,0.023867108,-0.010090519,-0.019090256,-0.049747456,-0.007821757,-0.03228833,-0.04732789,-0.057755616,-0.061726324,-0.026990777,-0.02757743,0.017098574,-0.014177837,-0.0033631464,-0.06680843,0.07271056,-0.05372975,-0.03907525,-0.0019682527,-0.06563692,-0.03313894,-0.0017956044,-0.052142594,-0.005686504,0.012126121,-0.061334565,-0.0531772,0.05969277,0.00573099,0.017454606,-0.09095591,0.056766376,0.048808195,-0.032259643,0.0152709065,0.09316683,0.048697993,-0.029075608,-0.07055222} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:18:48.322511+00 2026-01-25 01:27:51.314351+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 466 google ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB 1 t 469 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown No os confiéis, HACED FOTO A TODO que las palabras luego no valen. Leeros bien el contrato, y mirad que entra en el seguro y que no. Contratamos un seguro al 100% pero luego no te cubre ni bajos, ni lunas etc. Además te entregan el coche roto para poder estafarte. No vuelvo a contratar. no os confiéis, haced foto a todo que las palabras luego no valen. leeros bien el contrato, y mirad que entra en el seguro y que no. contratamos un seguro al 100% pero luego no te cubre ni bajos, ni lunas etc. además te entregan el coche roto para poder estafarte. no vuelvo a contratar. 1 2025-03-01 01:27:48.342074+00 es v5.1 P1.02 {} V- I2 CR-N {} {"J1.02": "Además te entregan el coche roto para poder estafarte. No vuelvo a contratar.", "P1.02": "No os confiéis, HACED FOTO A TODO que las palabras luego no valen. Leeros bien el contrato, y mirad "} {0.015807128,0.073302284,0.04345375,-0.029592635,-0.037717175,-0.044535726,0.001189327,0.014684909,0.0067434465,0.03474728,0.08542336,0.019259492,-0.05641479,0.0028603722,0.060587175,0.029838596,0.018279454,0.030795595,-0.066274464,0.07629726,0.05607587,-0.05374538,-0.057885744,0.054323155,-0.09601922,-0.018610127,0.003180352,0.024232008,-0.043361615,-0.109238654,0.003702745,0.09627449,0.0156128425,0.005155272,0.030181834,-0.082592934,0.09861915,-0.086813755,0.016531263,0.0413338,-0.10604139,-0.0014238745,-0.07393018,-0.047510955,0.016612235,-0.0074069276,-0.020581884,0.058741234,0.03873415,-0.031160034,-0.037975,-0.07441518,-0.046739023,0.028590763,-0.025664857,0.020201212,-0.030134667,-0.021276642,0.08422627,-0.018366091,0.05256585,0.07636162,-0.045631677,0.057226285,0.05927424,-0.003873642,0.0027435415,-0.09043467,-0.06468514,0.0685443,0.09280876,-0.045760978,0.11563361,-0.035016038,-0.0841252,-0.011137728,0.084481515,-0.031520814,-0.023610717,-0.08179071,-0.041585706,0.07613839,0.02736166,-0.037718967,0.00095688563,-0.015209468,-0.09502142,0.034112483,-0.0135528855,-0.025471695,-0.020515583,0.022295421,-0.04887587,-0.03551996,-0.005635968,0.038480174,0.012632448,-0.037215795,-0.04883458,0.012866579,0.07341963,0.04246029,0.06822708,-0.013877681,0.023173697,0.0330663,0.05031925,-0.039081242,0.0004372275,0.027915828,-0.006770846,-0.04988885,0.025885897,-0.031520132,-0.10128114,-0.09286951,-0.028624319,-0.01893206,-0.017240345,-0.010743412,0.05315949,0.015692592,-0.044373743,0.05155101,0.032013405,-0.1177023,-0.025543723,1.5900536e-32,0.068355575,-0.076636545,0.0041957474,0.057604957,-0.003665551,0.020903213,-0.022602297,-0.012849624,-0.074540086,0.0074039823,-0.1293608,-0.016301531,0.0090736905,0.046044677,0.115138076,0.06886872,0.021065751,-0.05499928,0.03096369,0.032745738,-0.027470231,-0.0985628,-0.06407421,-0.062268477,-0.0600177,0.10314602,0.028917268,-0.09750983,-0.079791695,0.061871674,-0.032729436,0.02331826,0.08779833,0.010476732,0.03296381,-0.06417005,0.022768758,0.027338652,-0.060519774,-0.0194824,0.015534307,0.046963435,-0.05385139,0.012965757,0.037357308,0.005682486,0.07964363,0.01948583,0.031512886,-0.021682557,-0.010867305,-0.008871304,-0.051291864,-0.034162402,-0.0072675315,0.00077363837,-0.10880621,0.0031738246,0.027132003,0.004382679,0.0043900427,0.01789164,-0.011424962,-0.030078953,-0.06030088,-0.023481851,0.034383178,0.03160616,0.0031220713,0.07318499,-0.08395989,-0.07381402,-0.07460093,0.08657003,0.022738071,0.035439134,0.04942885,0.027457608,-0.047694262,0.047301773,0.00952751,0.009694989,0.04853448,-0.02672451,0.05538652,0.012442288,0.102228336,0.06447959,-0.020120973,0.07194376,0.003382199,0.06821442,0.032731164,-0.06759561,-0.001896714,-1.4951906e-32,-0.018418832,0.026629807,-0.063313715,-0.040967558,-0.066220805,0.03784392,0.03990821,-0.06670549,0.030557599,-0.018605484,0.013312131,-0.07970145,0.036332414,-0.07679758,-0.057599664,0.069922425,-0.006269761,-0.0823502,-0.06790636,-0.008668353,-0.01656049,0.061911635,0.036611285,-0.025284097,-0.021174548,-0.009988482,-0.030287443,0.09686867,-0.10743557,0.045035172,0.07172228,-0.05504291,0.053875323,0.0103896735,-0.040091295,0.015775207,-0.025896939,0.00931768,-0.026708929,0.05954821,0.008819793,0.054702114,-0.050835904,0.017392216,-0.017048223,-0.028092077,-0.005348002,-0.13702162,-0.013418114,-0.07684388,0.051336583,-0.050552916,-0.017165206,-0.00083764386,0.09005753,-0.06912792,-0.094343565,-0.03447634,0.03686225,0.015750958,0.056365184,0.014824398,0.009708464,-0.09971941,0.08198188,0.050561473,-0.046926804,0.012054831,0.035890862,0.03520843,0.11260241,-0.019889617,-0.09392451,0.029823117,-0.038299046,-0.001418583,0.011196805,-0.013950399,-0.02526331,0.02598831,-0.02359445,-0.11705095,0.033996854,0.015332227,0.009831529,0.0038565188,-0.05921805,0.00783385,0.0011352756,0.016033156,-0.042348012,0.00433318,0.009943626,-0.02234409,0.013813369,-5.5574315e-08,-0.01490492,-0.00625549,0.043260116,0.024109505,-0.03763778,0.009481313,0.09731959,-0.006956652,-0.0031220797,0.083744615,-0.014233858,-0.01390843,-0.015504938,0.014672243,-0.008450878,0.10338975,0.10812172,0.022963488,-0.032956555,-0.03243006,0.06631984,-0.013912186,-0.0095965415,0.03692222,0.013819441,0.034797743,0.019526962,-0.0545822,0.01769402,-0.032204885,0.0038716933,-0.046130948,0.05753577,-0.050763823,-0.009322866,-0.050718218,-0.08190781,0.055071082,-0.009291172,-0.019975463,0.029892093,-0.0030705251,-0.015896032,-0.011628187,-0.035179265,-0.09174083,0.12373994,-0.026320105,-0.06527602,-0.005692466,0.030384663,-0.023746286,0.05335168,0.09842088,-0.0010375953,-0.11352676,0.07112839,0.054589298,-0.010088855,0.0015984932,0.108076945,0.03666756,-0.026330836,-0.09344522} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:48.557077+00 2026-01-25 01:27:51.486417+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 476 google ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE 1 t 479 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Lief im Grunde alles gut, nur anfangs war der Mitarbeiter recht unfreundlich, da er merhmals nachhakte, warum wir kein teureres Auto mieten wollen. Bei der Rückgabe lief alles reibungslos ab. Mit dem Auto gab es keine Probleme. Man muss aber aufpassen, ob beim Auto bereits Schäden sind. lief im grunde alles gut, nur anfangs war der mitarbeiter recht unfreundlich, da er merhmals nachhakte, warum wir kein teureres auto mieten wollen. bei der rückgabe lief alles reibungslos ab. mit dem auto gab es keine probleme. man muss aber aufpassen, ob beim auto bereits schäden sind. 3 2025-03-01 01:27:48.342138+00 de v5.1 A1.02 {} V- I2 CR-N {} {"A1.02": "Lief im Grunde alles gut, nur anfangs war der Mitarbeiter recht unfreundlich, da er merhmals nachhak", "J1.01": "Bei der Rückgabe lief alles reibungslos ab. Mit dem Auto gab es keine Probleme.", "J1.02": "Man muss aber aufpassen, ob beim Auto bereits Schäden sind."} {-0.045302812,0.013260021,0.002530464,-0.029591532,-0.014449007,0.042628024,0.081737116,0.02567633,-0.029168457,0.057604022,0.040275272,-0.026737265,-0.005169928,-0.029378438,-0.088978395,-0.0015433974,-0.1332094,0.09238874,-0.036972217,-0.043540396,-0.083600745,-0.0096624615,0.020520808,0.08064255,-0.10654314,0.011809147,-0.025674488,-0.031186217,-0.053993914,-0.11030046,0.022084981,0.007775088,0.012731212,0.005749668,-0.0004078526,0.033231832,-0.0968422,-0.03715608,-0.07402142,-0.053251386,-0.077073686,-0.035919823,-0.022952318,-0.048067875,0.015715308,0.097518444,0.021223722,0.028168652,0.082953796,-0.06278287,0.0034015256,0.06445401,0.029683504,-0.051167358,-0.005352561,-0.010266169,-0.008416499,0.019227732,0.026274316,0.042158652,0.03406685,0.027055206,0.033819262,0.004401215,-0.03358245,0.09787945,-0.021806622,-0.03529759,-0.06820025,0.036381323,0.01590743,-0.12090217,-0.072627254,-0.03782729,0.022384549,0.022818802,-0.06306464,-0.03964755,0.004770561,-0.029048994,-0.0625433,-0.07811794,0.05886054,0.046374377,-0.036027998,-0.10355801,-0.0200397,-0.004287333,0.099610135,0.03422548,0.014583918,-0.0732431,-0.03890149,0.0397215,-0.028976483,-0.03250602,-0.037099257,-0.013851786,-0.063124105,0.014270136,0.030120183,-0.040618643,0.011772099,0.08651629,0.0050850296,0.0027296718,0.028672274,-0.029782688,-0.02949455,0.039388936,-0.056948144,0.02342212,0.045217138,-0.056379106,0.007221538,0.030787172,-0.06437575,-0.024323132,-0.055806875,0.010011651,0.023334667,-0.0056780074,-0.0054806583,0.038866233,0.047159284,-0.033158697,0.04498733,1.5460945e-32,-0.065775625,-0.038413014,0.034292646,-0.020314444,-0.084233046,-0.06508861,-0.042807728,-0.0073639276,0.07768521,-0.03234636,-0.015003057,0.087445445,5.4999047e-05,0.031468675,-0.03975302,-0.026283791,-0.014972811,-0.05761631,0.05516194,-0.022097312,-0.044543818,0.02590334,0.022540422,-0.043215446,-0.009712654,0.023375614,0.07706037,0.0012625512,-0.0720439,0.042357687,0.011033256,-0.08960388,-0.010438872,0.06600659,-0.04998432,7.151426e-05,-0.016355416,0.029883653,-0.05145609,0.002841216,0.022127379,0.0035141718,-0.0073329564,-0.07466199,0.067850895,-0.06382888,0.032927424,0.06908541,0.039833136,0.07205444,-0.018683303,-0.028242564,-0.022162074,-0.036356952,-0.012941473,0.062665395,-0.09371127,0.06858933,0.004682208,-0.033764996,0.0066688214,0.012561686,-0.018769816,-0.046739418,-0.023207294,0.06701946,-0.006571572,-0.07923933,0.018596245,0.04815705,-0.0273025,-0.038716096,0.019520825,0.026693726,0.024745928,0.062003996,0.049308587,0.118042834,-0.03712496,0.02547129,-0.12704696,-0.03398668,0.001040531,0.02146463,0.047029417,0.0039313613,0.010242605,-0.05418945,-0.058003128,0.10505125,0.037220668,0.016659927,0.022002742,0.04648678,0.028538018,-1.5240822e-32,0.023560382,0.085774325,0.024340177,0.03307598,0.05521456,0.029480286,-0.0028192925,0.023224752,-0.0035731972,0.026437271,-0.099630244,0.020319771,0.05945017,-0.024175722,-0.03794689,-0.011832252,0.10584345,-0.0076169213,-0.08043103,-0.0038865404,-0.03436676,0.1047,0.057919957,-0.031263795,-0.01610717,-0.03053129,-0.0030323952,0.07991092,-0.0814488,-0.050130222,0.098256685,0.048915427,-0.030822236,0.056808144,0.02871611,-0.06392397,0.040125117,0.1174645,-0.10399955,-0.0057899617,-0.02888788,0.025296539,-0.05235852,-0.018026566,0.046601642,-0.025215404,-0.12600623,-0.07276053,0.037289776,0.021842862,-0.025685593,0.017009983,0.08402982,-0.051046267,0.0023659316,0.07614297,0.09751776,-0.03254292,-0.051952414,0.08161009,0.040959287,0.050674103,0.108758606,-0.052866142,0.04285597,-0.061812412,-0.10877529,-0.048974108,0.017981274,0.03619041,0.064940505,-0.028861104,-0.06625299,0.019918738,-0.022068467,0.052331313,-0.06958478,0.048226252,3.4255696e-05,-0.008811861,-0.007086429,-0.014272463,0.048346628,0.06814694,-0.13036229,-0.08421631,-0.020630354,-0.04700193,0.03909326,0.033914268,0.0073329145,0.018604951,-0.015645951,0.0022538379,-0.05545569,-5.7548615e-08,0.041480746,-0.041055035,0.039907627,0.0010699814,0.0053627794,-0.040517647,-0.024200665,0.0130507415,-0.12998636,0.021977069,0.05652606,0.009674132,-0.047437787,0.05441291,-0.036472872,0.012452078,0.018592222,0.005437516,-0.073405765,0.045657467,0.12629089,-0.06237619,-0.07591968,-0.04014937,0.049975608,-0.00699402,0.041295007,-0.04641693,-0.048879545,0.041304745,0.059740383,0.03159277,0.044169985,-0.004114909,-0.030211138,0.0007360805,0.06816317,-0.03072621,-0.12820496,0.019528013,0.027783249,0.07590736,0.08678362,-0.042190593,-0.075991586,-0.080460206,-0.050485644,-0.03000825,0.05472675,0.07228947,0.06294054,0.020789495,-0.03940821,0.06072558,0.04907451,0.011564499,0.068451524,-0.056578413,0.011802779,6.599175e-06,0.03830489,0.06641615,-0.008879009,0.006745952} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:41.317544+00 2026-01-25 01:27:51.519516+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 417 google Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB 1 t 420 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Standort des Shuttlebus sehr schlecht gewählt..\nDas versaut das ansonsten gute Ergebniss ,da können sich die Angestellten noch so bemühen..\nWenn es mit dem Shuttle zur Station nicht klappt... standort des shuttlebus sehr schlecht gewählt.. das versaut das ansonsten gute ergebniss ,da können sich die angestellten noch so bemühen.. wenn es mit dem shuttle zur station nicht klappt... 4 2025-12-28 01:27:48.341804+00 de v5.1 J1.02 {A1.02} V- I2 CR-N {} {"J1.01": "Wenn es mit dem Shuttle zur Station nicht klappt...", "J1.02": "Standort des Shuttlebus sehr schlecht gewählt.. Das versaut das ansonsten gute Ergebniss ,da können "} {0.0018620931,0.064848274,-0.012781948,-0.017154332,-0.032634232,0.06940112,0.06979854,0.105200835,0.020566147,-0.06485858,0.0618699,-0.012120875,0.03425212,-0.05443799,-0.06307093,-0.07304114,0.021216724,0.066290416,0.00465563,-0.0027821702,-0.025005538,0.023713225,-0.049504492,0.09648661,-0.054131087,-0.036122378,-0.0514101,-0.04742223,0.023371676,-0.042268697,-0.030372119,-0.043000106,-2.0647934e-05,0.037093736,0.023369603,0.030348413,0.0030562144,0.009923527,-0.023816077,0.026772792,-0.055554558,0.008090207,-0.0042920494,-0.07545601,0.024346894,-0.018339079,0.005683999,-0.07893931,-0.0061057894,0.07309558,-0.058272336,0.014504491,0.039567076,0.053316712,0.032962494,-0.044735815,0.010875309,-0.022517808,0.055502433,0.0038081391,0.031776972,0.010556451,-0.02707475,0.010961936,-0.07113838,0.024938323,0.0044458187,-0.01472712,-0.00058469985,-0.025608074,0.008821811,-0.063031144,-0.045776945,0.028139792,-0.011540321,0.0043500243,0.013418192,0.052682698,0.0011346181,-0.0013461375,0.015469541,-0.029683875,-0.08547553,-0.003910681,-0.024812823,0.027624302,0.01239976,0.022096705,-0.03735459,0.009786867,-0.04953331,-0.015552399,-0.06093874,0.009621476,-0.12952259,-0.015399679,-0.13174994,-0.06743519,-0.0024668328,0.0042865444,-0.021499176,0.08443206,0.01965952,0.086787514,-0.092765085,-0.04038781,0.02183272,-0.13027729,-0.032073244,-0.040775966,0.0121607175,-0.0048887404,-0.027521964,0.015598583,-0.07600034,0.01194189,-0.011821124,-0.09224166,-0.048421208,-0.054326843,0.01533553,-0.04755568,0.12603965,0.01661886,0.043951504,-0.037632357,0.16273913,8.2156365e-33,-0.050611667,-0.071448036,0.00891545,0.022872366,-0.024259673,-0.08375348,-0.08657055,0.0502118,0.0074335486,-0.004762891,-0.018814199,-0.009449564,0.02986477,-0.013380782,-0.012656318,-0.008879682,0.06373741,-0.07769503,0.08830639,-0.06755303,-0.02308809,-0.06498914,0.005997808,0.025887143,0.06192865,-0.04774587,-0.04764664,-0.030380769,0.0030981211,0.04921316,-0.0037719912,-0.025850048,0.019788917,0.05161262,0.0017390937,-0.046472583,-0.07703328,0.091859914,0.066780016,-0.03483061,-0.044588964,-0.031954225,-0.086622655,-0.010515955,0.03283729,-0.0024147325,0.009005312,-0.03764702,0.1279599,0.038086113,-0.040941417,0.011924164,0.016793652,0.0255837,0.032642417,-0.0309071,0.007362988,0.0816691,0.0041669975,0.066973306,-0.10440577,-0.009471682,-0.020538809,-0.02574351,0.12372547,0.020648092,-0.067512594,-0.040073942,0.036778964,-0.0019557397,-0.082392946,-0.07398843,0.049081333,0.07039854,-0.025770426,0.015062835,-0.06463975,0.09717435,-0.052110128,0.028252777,-0.05519472,0.023333354,8.8503635e-05,-0.039433107,0.08217316,-0.007897693,-0.023393583,-0.005538058,0.058229197,0.11253588,-0.031032415,0.032488633,-0.009850202,0.045831796,0.08343691,-8.4907845e-33,0.035646707,0.05950041,-0.102813706,-0.01889813,-0.06061676,0.052824914,0.01708974,0.022065423,-0.1444659,0.066837266,-0.057376537,0.044263553,0.06522904,0.023728862,-0.008923242,0.017384104,0.09915544,0.0055744504,-0.009395366,-0.0037741007,-0.012289589,0.023155369,-0.02497548,-0.013970368,0.013180455,0.07295111,0.015361389,0.13600513,-0.07149729,-0.011322736,-0.027433822,0.060568165,0.03992231,0.03451782,-0.0010285749,0.0058892607,0.025741138,0.1039539,-0.03143725,0.034887176,-0.088177845,0.009657712,-0.058918145,-0.05076149,0.1134489,0.002319939,-0.04627336,-0.03648665,-0.016716734,-0.024851087,-0.01040024,0.0025180269,0.05642777,-0.038794186,0.07179471,0.017104153,0.07301234,-0.033518128,-0.012284237,-0.049458597,0.10890525,-0.020724915,0.04728939,-0.053600036,-0.0011019388,-0.060308505,0.04742089,-0.016888974,-0.03213172,0.010343134,0.019756738,-0.0070032193,0.11858224,0.007757789,-0.093602434,0.011388903,-0.0053959056,0.0910499,-0.02983767,0.032998625,-0.02657216,0.050366335,0.031122249,-0.012558934,-0.056029487,0.03932845,-0.02775655,-0.03468562,-0.009726693,-0.042791188,-0.041592166,0.042853184,0.0026236107,0.0029334913,0.047618393,-4.2846196e-08,-0.012480078,-0.048043072,-0.06870176,-0.023838595,-0.0321504,-0.08230543,-0.032919005,-0.008614818,-0.07624974,0.006642167,0.06064071,-0.009184976,-0.026729157,0.14099239,-0.010923644,0.066208914,-0.03590197,-0.030460117,-0.0060721817,-0.035604376,0.10113149,-0.10263742,0.024686588,-0.038026504,-0.012418322,-0.041017924,0.014566958,-0.0974771,0.03525655,-0.14065132,0.033251762,0.01032807,0.04475791,0.02569883,0.03681931,0.06605748,0.03001842,0.08945858,0.009883623,0.08622604,0.012819153,0.01934209,-0.011264594,-0.002241106,0.021111542,0.082704015,-0.004525036,0.077917635,-0.048731513,0.05480007,-0.050893623,-0.08023833,0.007260643,0.02572896,0.07383138,0.007470826,-0.049925752,-0.054531924,0.012929576,-0.0075897053,-0.042840533,0.057027966,-0.060743693,0.02245853} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:10:43.934765+00 2026-01-25 01:27:51.326087+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 421 google Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB 1 t 424 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Mi experiencia ha sido perfecta con esta compañía. Hay un transporte que te recoge en el aeropuerto y te lleva hasta la oficina y viceversa. La atención fantástica, sin engaños ni palabrerios raros, gracias chicos ! mi experiencia ha sido perfecta con esta compañía. hay un transporte que te recoge en el aeropuerto y te lleva hasta la oficina y viceversa. la atención fantástica, sin engaños ni palabrerios raros, gracias chicos ! 5 2025-08-28 01:27:48.341831+00 es v5.1 J1.03 {A1.01} V+ I3 CR-N {} {"A1.03": "La atención fantástica, sin engaños ni palabrerios raros, gracias chicos !", "J1.03": "Mi experiencia ha sido perfecta con esta compañía. Hay un transporte que te recoge en el aeropuerto "} {0.05760103,0.0076230364,0.015194314,0.038747154,-0.058040354,-0.023565682,0.06589907,0.018551942,-0.07107246,0.03807732,0.03268101,-0.010721584,0.004012796,-0.022215454,-0.013355616,0.008220331,-0.016883405,0.0021715604,-0.0019882082,-0.0003628161,0.07063652,-0.036817882,-0.06547435,0.10192888,-0.07924923,0.012104381,-0.03621794,0.028042657,-0.033956125,-0.089236274,-0.08379788,0.08944765,-0.007877834,0.015400794,-0.025541,0.04514804,0.050669845,-0.058893453,-0.01414765,-0.016419187,-0.12078142,-0.020188091,-0.021988098,0.010592212,-0.02737948,-0.05396697,0.06154437,0.11916266,0.06806641,-0.043108374,-0.06143819,-0.02988184,0.02613423,0.009010137,-0.063925676,0.0732729,0.022287937,-0.07534431,0.06456158,0.018513072,0.005092513,0.06304479,-0.05021268,0.043728724,0.02843714,-0.09098221,-0.06844727,0.036421936,-0.061542638,-0.008178858,0.07508154,-0.060366686,0.0010704267,0.09805011,0.005268796,0.030503828,-0.027926771,0.030948276,-0.013966778,0.04061688,0.10182098,-0.06396302,-0.04780183,-0.023097117,0.040664043,0.011791579,-0.047883946,-0.03499087,0.0150444275,-0.016303005,-0.021100564,0.026118906,-0.05145664,-0.038051907,-0.006214404,0.020437075,-0.059640057,-0.042260442,0.016463459,0.017521668,0.061112605,0.054018345,0.028091092,0.054850545,-0.112600885,0.025025696,0.047174156,-0.0692397,0.050119605,0.009386984,-0.047457926,-0.0030966313,0.008169281,-0.049326677,-0.085579075,0.009208673,-0.080173545,-0.07634267,-0.08427368,-0.08952784,0.030166144,-0.0020809132,0.06166067,-0.015785338,0.02244775,-0.101520985,0.067843474,1.4232533e-32,-0.05145824,0.029137498,0.010226485,0.09802529,0.07201887,0.03670397,-0.05157663,-0.03873095,0.02465158,-0.04526862,-0.12286167,0.04615445,-0.008642042,0.018950744,0.007972818,-0.002247841,0.050140053,-0.043613944,0.02121778,-0.02466717,-0.033787075,-0.06187166,0.003268886,-0.02409939,0.008293123,0.039203152,-0.0022019437,-0.058916084,0.018759182,0.06827708,-0.0378482,0.05630185,-0.019588726,0.01367155,-0.04194695,-0.06224798,0.008698808,0.037090164,0.00097332895,0.010349904,0.018262744,0.02062413,-0.07855831,0.030498788,-0.028752692,-0.0020255381,0.055937815,0.04542743,0.103832915,0.030591454,-0.05806108,-0.05505331,-0.06105967,-0.121787935,-0.001938306,-0.015854014,0.030474482,0.0071611432,0.014921931,-0.071288124,0.011501828,0.07002803,-0.0066438876,-0.0813433,-0.009996547,-0.015336048,-0.0021460415,0.052856356,0.09195007,0.04177648,-0.032016978,0.012860073,-0.027965156,0.0616326,0.084140964,-0.03666839,-0.006459969,0.014429421,-0.025734495,0.024328232,-0.05134885,0.05757479,0.054337963,0.030907478,0.06801344,-0.014759778,0.049389202,0.017136391,-0.010153418,0.06150441,0.028591817,0.078458846,0.056803368,0.008447095,0.053001452,-1.5051977e-32,0.01526317,0.023073472,-0.022888428,0.008166382,-0.020613754,0.0033614729,-0.04568889,0.008169909,-0.006877138,-0.06528156,-0.102193356,-0.07626299,0.15227735,0.00039418376,0.020618506,0.053013504,0.0100660585,-0.070319116,-0.10874297,-0.048237976,0.0440484,-0.045383308,0.057043467,-0.062309705,-0.04494902,-0.06647094,0.016347675,0.03527377,-0.050280627,0.00017235623,0.03630083,-0.021506742,-0.02423648,0.089388944,-0.026513051,0.040027365,0.033055414,0.08426112,0.0013685627,0.007015451,-0.010533604,0.02017817,0.06401551,-0.015020158,-0.008827221,-0.009748906,-0.0017465833,-0.124361984,-0.035352394,-0.076796204,0.072085164,-0.09507207,-0.074285336,-0.026748778,0.1102964,0.03212168,0.07209314,-0.07696676,-0.03181729,-0.085201606,0.02212017,0.00483588,-0.047201816,-0.006330978,0.02991214,0.0045248442,-0.013404485,0.024523327,0.017952051,0.04964349,0.021984294,0.0031994486,-0.07368693,0.04169485,-0.031168848,-0.026448304,0.025263019,0.046160486,-0.008645644,0.04240047,-0.030801259,0.055726256,0.028784841,-0.080576986,0.013093135,-0.02978581,-0.019865632,-0.034691315,-0.023254286,0.05960273,0.016095746,0.048469413,-0.029697252,-0.09661982,0.019996172,-5.4184007e-08,-0.061245985,-0.042366717,0.0055706343,0.026433226,0.026231034,-0.05746071,0.0093082255,0.032811265,-0.025513325,-0.037000116,-0.026260596,-0.0095443055,0.015360101,0.042545423,0.011605751,0.009319572,0.07046698,0.13827457,-0.03453064,-0.06932138,0.05086399,-0.0012564597,-0.0028173968,0.026456755,-0.025342863,0.018310048,-0.047616743,-0.124413855,0.046037015,-0.054720163,-0.070364386,-0.0058453125,-0.014691298,-0.10287489,-0.13033946,-0.01122716,-0.017403606,0.035767023,-0.07643461,-0.08900521,0.11298546,0.045856938,-0.041143734,-0.017199349,0.006138598,-0.058165852,-0.0646315,0.005107053,-0.014406638,0.06794656,-0.039785333,-0.035073735,0.13191506,0.056008153,0.05531491,-0.018593736,-0.051112585,-0.0121629825,-0.025558596,-0.017521417,0.025062712,0.16179235,-0.035768986,-0.02175786} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:34.840531+00 2026-01-25 01:27:51.3382+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 422 google Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB 1 t 425 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown De vergüenza. Teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y nos dijeron que teníamos que aparcar en otro sitio, nos cobraron 55€, cuando el precio normal según la encargada del parking era de 16€. No vuelvo a alquilar un coche aquí. de vergüenza. teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y nos dijeron que teníamos que aparcar en otro sitio, nos cobraron 55€, cuando el precio normal según la encargada del parking era de 16€. no vuelvo a alquilar un coche aquí. 1 2025-07-29 01:27:48.341839+00 es v5.1 P1.03 {J1.02} V- I3 CR-N {} {"J1.04": "No vuelvo a alquilar un coche aquí.", "P1.03": "De vergüenza. Teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y"} {0.01835256,0.12584902,-0.021842802,-0.057483796,-0.09604862,0.03635807,0.04042708,0.082177125,0.027277473,0.004219091,0.04794517,-0.014630365,-0.04251838,0.024838017,0.030119024,-0.016836114,0.058942497,0.059613764,-0.0066038556,-0.004037498,0.047137294,-0.018056132,-0.048200697,0.10125243,-0.065325156,0.06087836,-0.007420063,-0.0053080386,-0.028713405,-0.0711632,-0.06779768,0.04364395,0.0716253,-0.0025906311,-0.012283594,-0.10712749,0.056357007,-0.049749397,-0.009129056,0.112920076,-0.046484817,0.012473077,-0.060595114,-0.05742095,-0.0035579414,-0.039727945,0.040047802,0.08822567,0.055905435,-0.05643059,0.011463388,0.03164242,-0.035210714,-0.06948545,-0.03895022,-0.040173598,0.022157623,0.018660739,0.12036689,0.047838032,0.060518425,0.038781907,-0.059147872,0.10296368,-0.031686027,-0.089008175,0.014172478,-0.029699631,-0.0545555,0.11833382,0.07384558,-0.056150284,0.016016878,-0.10699419,-0.050286975,0.041712318,0.05733551,-0.05402986,0.006889683,-0.110059865,0.027500415,-0.043819934,-0.028831262,-0.035830013,0.04030081,-0.0080985855,-0.012783699,0.07640208,0.09566027,-0.05631231,-0.04976583,0.06930058,-0.07492509,-0.01913467,-0.054276235,0.030595824,0.056795612,-0.026064822,-0.030463917,0.011438874,0.10295401,0.047649235,0.004215164,0.060602598,0.021434609,0.037815228,0.080008864,0.0181958,-0.0007257743,0.037766866,-0.07721246,-0.050435454,-0.0017980952,-0.10431449,-0.094277,0.048652787,-0.046382595,-0.040601984,0.009744343,0.0017868127,0.055640146,-0.047190115,0.008639667,-0.01118642,-0.004465479,-0.12288016,0.02110574,8.766741e-33,-0.06423392,-0.0344546,-0.016186276,-0.0029145302,0.019147867,0.012745086,-0.030768545,-0.0127539495,-0.04179806,0.014829918,0.003908469,0.011769707,-0.0005020445,-0.039097138,0.057127904,0.088409565,0.027665667,-0.02512931,0.035077315,-0.0344169,-0.043805268,-0.002830478,-7.337778e-05,0.019859351,-0.024686681,0.010934047,0.0301327,-0.023946375,-0.017382974,0.0366619,-0.00908424,0.034123566,-0.01862596,0.0035378481,-0.032497954,-0.032526437,0.00978764,0.03677266,-0.043640643,-0.06937071,0.01422241,-0.022489086,-0.052216385,-0.019129043,0.05254733,0.009626708,0.02784753,-0.022500545,0.037313223,0.0516508,-0.0586845,0.01813162,-0.11346137,0.011293265,-0.09867565,-0.013702052,0.0010133707,0.06889943,-0.018712992,-0.01394393,0.020741362,0.034299754,0.011765107,-0.08429077,-0.06799973,-0.009665329,0.024418788,-0.012612319,0.11601196,0.023461279,0.016214386,-0.024127766,-0.017353179,0.054039236,0.032406945,0.008306092,0.0066202055,0.051707905,-0.033208497,0.055162687,-0.038020134,-0.08030574,0.06738376,0.01239204,0.068545826,0.019836662,0.06868741,0.053102765,-0.018927015,0.037817128,-0.0076079345,0.068124376,0.055617135,-0.06950748,0.05642307,-9.903713e-33,-0.023621736,0.062798105,-0.03049567,-0.0031626208,-0.07104342,0.02717757,-0.018616077,-0.055238497,-0.04822959,-0.06561841,-0.14988904,-0.027002564,0.1346429,-0.017483484,0.0074919844,0.058547463,0.02629371,-0.08266305,-0.058076896,-0.042546142,-0.04112511,0.015918918,0.052065615,0.02722091,-0.042855106,-0.078580946,0.019829432,-0.012043857,-0.07770613,0.0037343018,0.054445464,-0.056610957,0.027056683,0.08100055,-0.05530712,-0.03731965,0.06836192,-0.024983343,0.004392929,0.004550795,-0.010106929,-0.0021512709,0.015599785,-0.08171799,0.030920897,0.02228672,-0.049901053,-0.11272572,-0.016002735,-0.010167939,0.1462339,-0.049894664,-0.10039067,0.0017098896,0.021472467,0.039407823,-0.016438946,-0.030433882,0.017638711,-0.016964685,0.09762983,0.04475374,-0.08993153,-0.0391847,0.03921675,0.037042107,-0.013595127,-0.022984246,0.018553086,-0.0058406987,0.035343125,0.03259714,-0.05202858,0.038590122,-0.08915898,0.022743806,0.039433822,0.026337655,0.052685793,-0.03339076,-0.091786794,-0.039685223,0.08361922,-0.022414342,-0.033963338,-0.034482297,-0.028840823,-0.023840943,0.027751755,0.080855586,-0.008091475,0.022430528,-0.024958488,-0.02513439,-0.030023402,-4.742301e-08,0.0018353958,-0.056896005,-0.021464182,0.03833008,0.049431,-0.040016647,0.00847268,0.00013104049,0.02205151,0.10695504,0.057420228,-0.098111756,-0.013220936,0.114642814,-0.062003303,0.06314882,0.09029164,-0.0033198674,-0.007557468,-0.084114134,0.058983687,0.030074995,0.021680279,0.026194356,0.020027343,0.011859455,-0.05378877,0.027111169,0.041756026,-0.091183774,-0.014367129,0.029289275,-0.0050768177,-0.1269678,0.021743288,-0.016209196,-0.048282176,0.04967367,-0.027484735,0.021605887,0.03643774,-0.096482225,-0.07310446,-0.03227967,-0.014857444,-0.061723195,-0.029676866,-0.020741481,-0.050605543,-0.0169383,0.016562372,-0.00512481,0.048284996,0.01596481,0.07627236,-0.10125122,0.022186091,-0.028454915,-0.03593199,-0.016285865,0.075074345,0.02156995,-0.0045073424,-0.057384036} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:39:29.964688+00 2026-01-25 01:27:51.34141+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1252 google ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE 1 t 1255 Soho Club unknown Wow wow 5 2022-01-30 18:34:31.336452+00 pl v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-29 18:36:00.600543+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1253 google Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB 1 t 1256 Soho Club unknown Niekad nerašau, blogų atsiliepimų, tačiau ši kartą jau nebegaliu. Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas Bet - muzika. Aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? Visiškai nesvarbu koks DJ bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. Atrodo, jog be Lady gaga, Rihanna, Geltonos - nieko daugiau nėra. Tikriausiai galvojate kodėl rašau, "biedavojuosi"? Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€\nTuomet visi pasiemam po kokteilį ~44€\nBandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€\nBet galiausiai vistiek lieka demotivuoti ir net suirze, nes tas pačias dainas per kelias valandas jau po kelis kartus girdejom ir jos tikra atgyvena. Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt niekad nerašau, blogų atsiliepimų, tačiau ši kartą jau nebegaliu. jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas bet - muzika. aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? visiškai nesvarbu koks dj bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. atrodo, jog be lady gaga, rihanna, geltonos - nieko daugiau nėra. tikriausiai galvojate kodėl rašau, "biedavojuosi"? todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€ tuomet visi pasiemam po kokteilį ~44€ bandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€ bet galiausiai vistiek lieka demotivuoti ir net suirze, nes tas pačias dainas per kelias valandas jau po kelis kartus girdejom ir jos tikra atgyvena. išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt 1 2025-12-30 18:34:31.336452+00 lt v5.1 E4.01 {} V- I2 CR-N {} {"E4.01": "Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir vis", "E4.04": "Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinau", "V1.01": "Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€. Tuomet visi pasiemam po kokteilį ~4"} {0.014670041,0.012833758,-0.049583565,0.007817608,-0.09238363,0.030670082,0.06462763,0.029161558,-0.00062694657,-0.010312966,0.03842397,-0.060554292,0.008259422,-0.024897894,0.03821122,-0.0102864355,0.07460605,0.025172047,-0.06917129,0.045654386,0.027883401,-0.1172247,-0.053437587,0.039871816,0.026936965,-0.01959476,0.025150266,0.00933618,-0.03288893,-0.03604312,-0.014680771,0.10900504,-0.034311745,-0.041743353,0.014481731,0.09692725,-0.0600999,-0.031009976,0.0016101258,0.08907453,0.0015709287,-0.029702188,-0.09744253,-0.081179805,0.053836003,0.031128943,-0.021642717,0.06260107,0.0104268445,-0.019755064,-0.14518365,-0.020616286,0.006524668,0.021041349,-0.039438065,-0.1695933,-0.031120135,0.048616033,0.066667974,0.039786447,0.012489667,-0.009100108,0.02287285,0.035992797,-0.021511378,-0.060561206,-0.080714874,0.051609058,-0.032302193,0.07072865,0.05471366,-0.014434128,-0.039177764,0.09120202,-0.09133246,0.0042279167,0.08234186,0.010055375,0.0056665717,-0.040166702,0.05514763,-0.027352741,0.008513598,-0.049923096,-0.0342921,0.020914458,0.024581261,-0.0051509575,0.004484225,-0.0015243792,0.08728001,0.123301096,-0.086269036,-0.115829095,0.05831575,0.0013567396,-0.08348342,-0.030661378,0.0340623,-0.001606025,0.018069414,0.012275824,0.033446833,-0.01626447,-0.08894962,-0.017118255,0.08934317,-0.047172703,-0.0055393265,0.07516784,-0.10672146,-0.02902072,-0.04229099,-0.05137996,-0.034974054,0.031595327,0.011184628,0.011024814,-0.0630013,0.061436567,0.014974024,-0.051342998,0.019526832,0.028655916,-0.03738058,0.015228927,0.024441294,2.6706397e-32,0.002689125,-0.03835955,0.007929615,-0.07625406,0.055766504,0.0030630413,-0.073125936,-0.065441765,-0.027472341,-0.05253299,-0.02443617,-0.04921118,-0.04524418,-0.012839489,0.016034422,0.026326481,0.054924812,-0.053767856,-0.024431095,0.038480747,0.037640736,0.07161299,0.03150581,-0.022793714,-0.09365745,0.040605817,0.028813373,-0.052846745,-0.027695032,0.013118912,0.052169524,-0.041213367,-0.059788723,-0.03968876,-0.109592535,0.004843117,-0.05344123,-0.06446235,-0.06400503,-0.038689774,-0.06352532,-0.019740975,0.021524735,0.10268289,-0.016026124,0.06294021,0.060895,-0.009820972,0.07777047,-0.0034761408,-0.0730867,-0.024012502,-0.07368323,-0.043061916,0.03453509,0.0038125096,-0.01172257,0.011800947,0.0535161,-0.055218626,-0.026163697,0.009818651,0.051644552,-0.075304784,-0.04135527,-0.038846936,-0.011548199,0.00076713605,0.08600497,-0.118551664,-0.03653129,-0.04799076,0.0077804113,0.07119052,0.023318911,0.012111985,0.05883575,-0.039569862,0.035236552,0.044921223,-0.07486977,0.010615426,0.056911167,0.0075072623,0.098717965,-0.01897071,0.018876096,-0.06455296,-0.026939845,0.05160078,-0.023426287,0.09005806,0.009603503,0.008900462,-0.023737716,-2.3389807e-32,0.083902106,0.025820652,0.03697531,0.042880297,0.055894297,0.032889925,-0.077039056,0.043247443,0.024901116,0.01246711,0.02547758,-0.109765545,0.010288857,-0.0041752765,-0.0632495,0.04714363,0.09692297,0.090443015,-0.030295622,-0.08959209,-0.060037933,0.0864456,0.016460296,0.054253742,-0.05945991,0.034508035,0.09325182,-0.025077946,-0.06959207,0.02010286,0.08695136,-0.09001295,-0.1308646,0.05018362,0.051558316,0.012706627,0.0532283,-0.020981021,-0.038357653,0.065945506,0.0466664,0.028383648,-0.033682164,-0.076039776,-0.043202322,-0.060475428,-0.03198634,0.031214558,-0.01734993,-0.06453645,0.11084671,0.011715388,-0.038947716,0.050513767,0.043016534,0.016792137,0.027137078,0.012720249,-0.069784574,0.00016879736,0.047349617,-0.0157388,-0.01521185,-0.041713685,0.003758607,0.027475106,0.03728561,0.04834028,0.0034691659,-0.02250574,-0.040751044,-0.057585765,-0.10440734,0.008190932,-0.07855968,0.022669252,-0.062367138,0.019142516,0.069625735,-0.027671246,-0.037388593,-0.015956804,-0.072409615,0.025038293,0.054273814,0.03725494,-0.024240553,0.006295766,0.09582917,0.01739315,0.001440044,0.021527462,0.0004860801,0.076921314,0.04094267,-7.3907614e-08,0.03045949,-0.066222325,0.030639518,0.011644773,0.072989054,-0.06608042,-0.04494643,-0.0592981,-0.023830298,0.07683316,0.027107107,0.02269283,-0.0015147278,-0.07329203,0.0064041754,0.023816597,0.078070164,0.07380679,-0.00035020933,0.013698606,0.11026614,-0.023953052,-0.080511786,-0.019070586,0.0055908705,-0.026304021,0.022299152,0.044255078,0.019994475,-0.052956853,0.0060257227,-0.023188248,-0.013461799,-0.088765256,-0.017221162,0.028204067,-0.0330448,-0.028966086,-0.040306713,0.09182492,0.035116863,-0.064545535,0.082628995,-0.01974816,-0.04907345,-0.006673705,0.032529086,-0.0042883446,-0.016160287,-0.00015835524,-0.08340521,0.038954057,0.061372124,0.078078136,-0.018547341,-0.021672042,-0.027276019,0.049525075,0.009129099,0.021014176,0.026232123,-0.012384637,-0.02972128,-0.04192566} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:49:48.389855+00 2026-01-29 18:36:00.60415+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1254 google Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB 1 t 1257 Soho Club unknown Sou brasileira. Fui em uma sexta com mais dois amigos homens e gays, um brasileiro e um holandês. Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. Ele começou a dizer que não podíamos entrar. Nao falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo "nao". Falava em Lituano algo mas não entendíamos e tentamos falar em inglês. Perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. Ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. Ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do Bolt. Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar.\nBom, entramos mas foi bem estranho e não ficamos à vontade. Logos fomos embora e um pouco receosos em relação ao segurança.\nSei que em situações assim fica questionável se realmente não estávamos fazendo algo "ruim" mas estávamos conversando em um volume baixo, em português, sobre como o uber foi atencioso.\nPareceu algo extremamente pessoal. Sobre nossas roupas: calça, camisetas e casacos como todo o resto da balada.\nAlém, a balada fede a suor. sou brasileira. fui em uma sexta com mais dois amigos homens e gays, um brasileiro e um holandês. estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. ele começou a dizer que não podíamos entrar. nao falamos lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo "nao". falava em lituano algo mas não entendíamos e tentamos falar em inglês. perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do bolt. foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar. bom, entramos mas foi bem estranho e não ficamos à vontade. logos fomos embora e um pouco receosos em relação ao segurança. sei que em situações assim fica questionável se realmente não estávamos fazendo algo "ruim" mas estávamos conversando em um volume baixo, em português, sobre como o uber foi atencioso. pareceu algo extremamente pessoal. sobre nossas roupas: calça, camisetas e casacos como todo o resto da balada. além, a balada fede a suor. 1 2025-10-31 18:34:31.336452+00 pt v5.1 P1.02 {} V- I3 CR-N {segurança} {"E1.01": "Além, a balada fede a suor.", "P1.02": "Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estav"} {0.028497616,0.010239292,-0.055187073,-0.048884,-0.022001667,0.002061014,0.086778805,-0.004907457,0.018361438,0.044737954,0.057018075,0.0027189523,-0.042068828,0.060184594,0.09465798,0.029148398,0.002307459,-0.0024240192,-0.04332582,0.07555701,0.103472605,-0.034323573,-0.07958747,0.035569273,-0.07262011,-0.020948846,0.04800955,-0.014926709,-0.062143166,-0.0275219,-0.03472982,0.02025939,0.06390853,0.010462215,-0.100701,-0.001756733,0.047498554,-0.09618373,-0.036401246,0.098038666,0.033940822,0.01207001,0.0034058844,-0.08291127,0.008180788,-0.045826808,0.0520396,0.06228195,0.06447587,-0.04242451,-0.00925131,0.04107102,-0.09617751,0.018127209,-0.006586144,-0.06527228,-0.011474571,-0.029917203,0.08037967,0.06772454,0.026646605,-0.004925848,0.01247572,0.053698275,-0.009101783,-0.07064756,-0.022904167,0.03528396,-0.0377587,0.09586632,0.024834542,-0.06528322,-0.0019277697,0.036935393,-0.08770045,0.09569256,-0.0050514634,0.031924985,0.002614383,-0.07935311,-0.0678537,-0.022224428,0.034673236,-0.08651703,-0.022121815,-0.024073154,0.05825624,0.022245554,-0.023883333,-0.0033153489,-0.040643893,0.08210631,-0.044479035,-0.049407776,0.03044798,-0.0076391487,0.0073004756,-0.12055684,-0.019070705,-0.024086338,0.092231296,0.0859711,0.0682172,-0.043683726,-0.0073759384,0.043874916,-0.010516969,-0.031847112,-0.013127708,0.11469873,-0.05644993,-0.05249498,-0.07377277,0.0074046617,-0.027583752,-0.06272853,0.0292499,-0.07504089,-0.008088324,0.109665215,-0.04192947,-0.09410936,0.07244203,-0.0043914197,0.081011415,0.0003722051,0.06730706,1.4005721e-32,-0.025523024,-0.08533657,-0.054846663,-0.012858933,0.03129462,0.06607697,-0.035984106,0.02967413,0.012389893,0.039107125,-0.08905721,0.13186693,-0.048725907,0.060438156,0.089783505,0.031155668,0.043413974,-0.05438458,-0.015217125,-0.050485373,-0.035059083,0.023274401,0.026874792,-0.042788554,-0.05789807,0.053090286,-0.029574718,-0.08692103,-0.06691877,0.03283768,0.021435387,-0.014659342,-0.011154001,0.012628112,-0.07387029,-0.015049855,0.04536607,0.008344272,-0.049848925,-0.029858539,0.038655084,-0.061817195,0.0077351844,0.060979266,-0.010713436,0.02971458,-0.0024650178,-0.067215785,0.038742002,0.004333141,-0.07304326,-0.041847385,-0.026753074,-0.0058528758,-0.002801337,0.0057554143,-0.10998879,0.065247856,0.025633581,-0.06647449,-0.0071022767,0.04455374,0.011789873,0.0393733,-0.044972796,-0.05270562,0.04285859,-0.00039678757,0.11144827,0.01506364,-0.019253245,-0.03740526,-0.0011552558,0.07836935,0.035128925,0.023921091,0.031070838,-0.054394282,0.011781348,0.07776758,0.035553306,0.024294272,0.027654702,0.016149307,0.041536637,0.004897509,0.016581127,0.0025860346,-0.06473145,0.097081006,-0.03078235,0.097840704,0.076573476,-0.0859179,0.06396611,-1.429774e-32,0.0041126017,0.0037439985,0.0070672245,0.007969848,0.024649689,-0.013255403,-0.01797789,-0.016053218,-0.00552599,-0.07900749,-0.052192267,-0.11495499,0.15928422,-0.038621772,-0.031389065,-0.017459625,-0.041086115,-0.06310838,0.0035631908,-0.049833186,-0.04566477,0.04237748,0.0412112,0.017603677,0.009555289,-0.049386233,0.02709049,-0.062444467,-0.04084869,-0.003295926,0.08985068,0.07431904,0.02822022,0.09324913,-0.005343618,-0.0172023,0.07558979,0.0642647,-0.008562076,0.027985385,0.06440203,0.056802884,-0.013707826,-0.09358087,-0.021457393,-0.009574156,-0.019265613,-0.10046203,-0.044728518,-0.009412811,0.067846864,-0.06532073,-0.066999875,-0.06447211,0.022046406,-0.050246414,0.016306072,-0.041501,-0.10677462,0.06441723,0.020128563,-0.023479672,-0.06448794,-0.087356664,0.051545415,0.038562402,-0.009881567,0.030539481,-0.055824474,0.068237394,0.09281218,-0.06361737,-0.060407985,0.026018467,0.008873627,0.007641125,-0.06026015,-0.017340116,-0.0126528535,-0.041389063,0.01100199,-0.022063512,-0.075664766,0.010740093,-0.014062027,-0.0012022179,-0.0060786456,0.022487035,-0.005686907,0.016508954,0.01197003,-0.019964118,-0.05923015,-0.025317002,-0.022159081,-5.178829e-08,0.016769443,-0.02632692,0.04627254,0.035507325,0.016151298,-0.0067277974,-0.0034704094,0.018919902,0.05221214,-0.008924343,0.038823854,-0.022457661,-0.041759316,0.051298622,0.023931311,0.019117452,0.053317416,0.016112123,0.014549913,-0.022440689,0.053179465,0.0044312957,-0.09845876,-0.0048989463,-0.03436865,0.017388372,-0.028359128,-0.0036715998,0.0076475744,-0.0012726623,0.050264988,-0.030488415,-0.040039957,0.015839085,-0.1274029,-0.07708639,0.072839834,-0.035806965,-0.015218781,-0.039926685,0.11767215,-0.042914096,-0.049335565,-0.10178271,-0.05724829,-0.0044393507,0.090828255,0.0082408395,-0.044230882,0.04842549,-0.07176199,0.053759724,0.07352799,-0.022151962,-0.029867198,-0.09887152,0.016179092,-0.015821565,0.020014409,0.009963583,0.029492041,0.12096605,-0.043295596,-0.02082693} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:50:00.199064+00 2026-01-29 18:36:00.608054+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 427 google Ci9DQUlRQUNvZENodHljRjlvT2prM01Yb3pTemxpYVV4YWNUQjNjVkZVTlhFMlgxRRAB 1 t 430 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Neodporúčam, som sklamaná. Pri požičaní auta sme si zaplatili základné poistenie. Bohužiaľ, pri parkovaní na parkovisku sa mi podarilo jemne oprieť auto o vyvýšený obrubník. Odrel sa lak sotva na 1cm. Z účtu mi strhli 480 eur!!! Faktúra bola za poškodenie podvozku, ktorý som naozaj nepoškodila a nemám to ako ani dokázať.\nNeodporúčam! neodporúčam, som sklamaná. pri požičaní auta sme si zaplatili základné poistenie. bohužiaľ, pri parkovaní na parkovisku sa mi podarilo jemne oprieť auto o vyvýšený obrubník. odrel sa lak sotva na 1cm. z účtu mi strhli 480 eur!!! faktúra bola za poškodenie podvozku, ktorý som naozaj nepoškodila a nemám to ako ani dokázať. neodporúčam! 1 2025-08-28 01:27:48.341851+00 sk v5.1 P1.03 {} V- I3 CR-N {} {"P1.03": "Neodporúčam, som sklamaná. Pri požičaní auta sme si zaplatili základné poistenie. Bohužiaľ, pri park"} {0.02349275,0.124436155,-0.073660955,-0.026323888,-0.13097528,-0.0020246196,0.098681174,0.056237254,-0.023697171,0.016616879,0.0063530733,0.04994141,0.062133845,0.03387257,-0.07820222,-0.024861425,-0.0004410324,0.079771325,-0.06169549,0.07419438,0.058211315,-0.036215864,0.056231845,0.061260242,-0.04683343,0.0577743,-0.028814176,0.0036197708,-0.014207357,-0.029406313,0.025912907,0.09412546,0.025607834,-0.01614795,0.03623979,-0.0033085921,-0.055662964,-0.014426279,-0.0459744,0.057889048,0.03381043,-0.024925621,-0.12799288,-0.021460928,0.029704532,0.041654125,-0.011246991,-0.02251379,-0.051706385,-0.035586115,-0.11941186,0.011118884,-0.009679537,-0.025594868,-0.07447789,-0.023629695,0.009038836,0.04129176,-0.0017867199,-0.012860361,0.040639773,-0.03759959,-0.03186276,0.028198406,0.0072157094,-0.014332427,-0.045005973,-0.015964566,-0.06076946,0.0845976,0.06505835,-0.023350144,-0.00109522,0.048373323,-0.103987835,-0.002536316,0.026115794,-0.012777298,0.04691318,-0.03455921,0.10751434,-0.032260556,-0.022282066,-0.005499321,0.008212473,0.0429902,-0.0003950326,0.02764852,0.014598449,-0.023621816,-0.018705187,0.09865012,-0.04149727,-0.05965427,-0.017169332,-0.05748654,-0.043055356,-0.12303744,0.0013158339,0.0028984693,0.058485664,-0.023606827,0.07151634,0.0066462443,-0.06877535,-0.01400017,0.013036656,-0.057839792,0.047415543,0.108772114,-0.0493818,-0.11930047,-0.02864271,-0.048936978,0.021841915,0.021861302,-0.015987802,0.038765404,0.017317,-0.032020673,-0.024547085,-0.03643958,-0.033995926,0.025599338,0.071653426,-0.0623193,-0.020941319,2.065352e-32,-0.038115922,-0.0063674967,-0.020617899,-0.008471079,0.0027961095,0.013230941,0.0034885628,-0.067105964,0.009756411,-0.009527706,-0.026826022,-0.05657264,0.055633847,0.06084173,-0.01297945,0.0702942,0.016279303,-0.02952655,-0.049340345,0.0659697,0.045668907,0.08344021,0.017352846,-0.0015572289,-0.016395776,-0.0082177045,-0.067741804,-0.052796572,0.0661497,0.008428646,0.118445374,-0.04464211,-0.08050334,-0.055680435,-0.031549994,-0.05068189,-0.012698022,-0.041052558,-0.03819056,-0.07973455,-0.032994512,-0.032422382,0.055401914,0.054074224,0.0047761616,0.051262043,0.033604946,0.032571204,0.057366952,0.0071499334,-0.0825909,-0.00066806824,-0.08629102,0.03975626,-0.018377885,0.02028686,-0.06613134,0.07034918,0.04430576,-0.03342074,0.045516975,0.03961974,0.06977136,-0.00047765434,0.07442611,-0.12232874,-0.012450607,0.044905223,0.07331742,-0.011625059,0.054526683,-0.032376718,-0.054808524,0.082210325,-0.047684103,-0.009187209,0.09398677,-0.012680602,-0.044516344,0.030346451,-0.04746687,-0.008111926,-0.007681434,-0.07559502,0.06136906,0.047072094,0.01827783,-0.042744145,0.0701474,0.12102804,0.020159123,-0.03737456,-0.011960583,0.029329177,-0.03727118,-1.9027839e-32,0.04381354,0.022825552,-0.051737394,0.038657118,0.027061813,0.008308656,-0.115710735,-0.014731444,-0.054893006,0.014459912,-0.0046902383,-0.0036259473,0.092450336,0.028275633,-0.061013628,0.028314644,0.10167986,0.036499802,-0.00083893974,-0.017960375,-0.09873339,0.056129552,-0.0920894,0.10434006,-0.042926416,-0.0062753414,0.066856764,-0.057729255,-0.085589945,0.06371906,-0.004845922,-0.057726268,-0.08079895,0.014954386,0.027009368,0.0012685658,0.07288561,-0.042318754,-0.0883512,0.026945353,-0.057568245,0.010758982,-0.009936279,-0.044861875,0.034424014,-0.047434103,0.009263647,0.012034873,-0.018411824,-0.018922836,0.09082035,0.029160324,0.009872671,-0.08556489,0.08593192,-0.035984043,0.074564055,-0.045362134,-0.05964734,0.025435075,0.05390455,-0.040205326,-0.018098393,-0.015648339,0.018850999,0.004779471,0.026382381,0.07919325,-0.008685115,-0.061866503,0.016176412,-0.025611194,-0.076405056,0.048807204,-0.04999709,0.03262776,-0.0039474904,0.097639255,0.023145134,-0.06966715,0.017634172,-0.053041615,-0.017994244,0.04944756,0.005455378,-0.0017567783,-0.012725344,-0.008353916,0.032210466,0.029919008,0.014695009,0.08064387,0.0088671995,0.061008662,-0.012038956,-5.9436783e-08,0.05982059,-0.029325254,0.00767711,0.029289199,0.04687674,-0.017197093,-0.01752068,-0.07093954,-0.061096955,-0.020607289,-0.06131309,-0.030455446,-0.005451184,0.0244668,0.029392606,0.04463564,0.07123124,0.065803476,-0.019906847,-0.06149699,0.02820135,-0.03133835,-0.08970427,0.015284637,0.014654375,0.002833548,0.046025652,0.0015842146,0.04246428,-0.10187678,-0.014038433,0.0027916664,-0.03822715,-0.055087928,0.031196129,0.019828876,0.015517471,0.06271406,0.0036081185,-0.009872889,-0.034919836,-0.07515272,0.14392307,-0.005032004,-0.09167411,0.03606322,0.0013846232,-0.15865558,0.013783811,-0.08441493,-0.10486612,0.05337299,0.042194217,0.09283141,-0.012217277,-0.011139824,0.018276993,0.01748756,-0.051410463,0.050337363,-0.016017064,0.060075533,-0.08425032,-0.029668225} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:27.284676+00 2026-01-25 01:27:51.359577+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 428 google Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB 1 t 431 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv, bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft ... Ansonst: Top sauberes fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv, bis auf die abholung: 12 wartende kunden und nur eine schalterkraft ... ansonst: top 5 2025-11-26 01:27:48.341853+00 de v5.1 O1.01 {} V+ I2 CR-N {} {"J1.02": "bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft", "O1.01": "Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv"} {0.0070700934,0.0729566,-0.05113353,-0.097123876,-0.055439968,0.040768355,0.036295816,0.12876171,-0.059555583,-0.016285855,-0.010331337,-0.052934695,-0.014620173,-0.058245994,-0.091434516,-0.026535142,-0.046602327,0.07823136,-0.07593625,0.0023183953,0.014552937,-0.066819414,0.061276447,0.00810333,0.022622932,0.06268776,-0.016684376,-0.023951069,0.07064294,0.028783608,0.007233081,0.00012279443,0.03918906,-0.03457511,0.045509458,-0.008309999,-0.09402682,-0.04123468,-0.03286827,0.012969127,0.009089079,0.020979885,-0.073566645,-0.013597559,0.047820136,0.023571268,0.0023930296,0.056864183,-0.0689576,-0.017174281,-0.062808976,-0.024545752,0.0002798468,-0.018468514,0.03281317,-0.008510185,-0.07652717,-0.09025045,0.05533341,-0.02047222,0.027007103,-0.015245926,-0.036504954,-0.028491195,-0.060939055,-0.033282567,-0.026729206,-0.061967883,-0.049155198,0.027522426,0.08393029,-0.057595205,-0.017953625,0.051463462,-0.037540004,-0.055848163,-0.050735533,0.00953574,-0.0044933674,-0.06827473,0.018410753,-0.023487836,-0.02907801,-0.035670444,-0.01082746,-0.031232627,0.02340864,0.043820452,0.004333573,-0.058877494,-0.0030329595,-0.034851518,-0.1713297,-0.016583981,-0.12186487,0.03397001,-0.024029927,-0.02249274,-0.046438448,0.049194034,0.042583164,0.03228411,0.004204464,0.024798676,-0.11941884,0.010511938,0.04854486,-0.033605676,-0.04341252,0.034640748,-0.039145984,-0.10166336,-0.024230761,-0.044150706,0.04365011,-0.07286005,0.02095657,-0.06512086,-0.02456225,0.054819778,0.015870048,-0.02637992,0.025688674,0.06815232,0.058535457,-0.0056064418,0.09815321,1.1489997e-32,-0.023151517,-0.002552682,0.024416292,0.05865043,-0.041851465,-0.076846205,-0.04290487,0.0031739247,0.0072265225,0.016137747,-0.039384145,0.008151987,0.012103854,-0.09127747,0.04178889,0.03906341,0.0982283,-0.045939695,0.034650348,-0.012070448,-0.0069134906,-0.07480229,0.021375237,0.08151789,0.024117539,0.018263603,0.04315536,-0.014089744,0.061074536,0.060202815,0.071432635,-0.06679034,-0.06788098,0.027614329,-0.08120097,0.054080322,-0.0069384025,0.033352364,0.019462844,-0.016056307,0.03475621,-0.01587037,-0.02812664,0.00898231,0.036117524,0.10431431,0.032911573,0.058407955,0.08906725,0.006763331,-0.041397683,-0.017754262,-0.023120748,-0.002093377,0.03293496,0.10216286,0.014123988,0.03423357,-0.04245886,0.044698738,-0.015761187,-0.05145225,-0.022348346,0.011902229,0.029573604,-0.003078803,-0.03292389,-0.021289282,-0.0055043916,0.0048552593,-0.078426965,0.020346904,0.11048682,0.034874655,0.037332762,-0.002705628,0.040584452,0.049337637,-0.09139248,0.108315796,-0.06460506,0.04488919,0.011404872,-0.052134693,0.00035073163,-0.13899828,-0.01915793,-0.04766934,-0.03842034,0.056282595,0.052502893,-0.019610684,0.0009437953,-0.008532766,-0.033069998,-1.0495432e-32,0.08192548,0.024249418,-0.013161349,0.020965893,-0.014320078,0.057388145,-0.010076052,0.14744957,-0.08020847,0.046283137,-0.01190505,-0.025406774,0.10314557,-0.07388285,-0.03430596,0.010859666,0.12753998,0.045100443,0.008812903,-0.07626467,0.0040512998,0.01920699,-0.011308802,-0.027391206,0.013157284,0.0873314,0.024456372,0.013578076,-0.08830285,0.027322233,0.039256383,-0.0264304,0.0055066505,0.026819397,-0.05079667,0.06145738,0.09123342,0.03569938,-0.049732383,0.029086728,0.022384766,0.04912215,0.027859485,-0.008459229,0.07894327,-0.1132792,-0.064699456,0.030046646,0.008502281,-0.12520136,0.09837951,-0.00090036454,-0.00074122235,-0.019680807,0.105977304,0.00451589,0.027910577,-0.018689519,-0.0035388672,-0.03676607,0.06769618,0.00913702,0.0098366095,0.093975894,-0.014290419,-0.07133916,-0.021011408,0.068643205,0.020457203,-0.0030596673,-0.035927627,-0.020334907,-0.0017657073,0.01975185,-0.11915303,0.02428237,0.03474826,0.095793694,0.07148945,-0.033420812,-0.111584574,0.028248334,-0.04668067,0.020375004,-0.019625003,-0.02428041,0.054445356,-0.033476878,0.041615833,-0.0509905,-0.008103217,0.0007191644,0.028150454,-0.008402954,0.008433029,-4.7085152e-08,-0.0121035455,0.023644282,-0.11445264,0.044942167,0.059631936,0.005585675,-0.03477269,0.05523455,0.013038129,0.014949903,0.03953614,0.016576175,-0.05542454,0.09060408,-0.034954417,-0.0032748803,-0.052001968,-0.021947073,-0.01902653,-0.0071323575,0.025607368,0.016371163,-0.02602193,-0.03809164,0.0063053635,-0.028460667,-0.060396455,-0.031036261,0.026452286,-0.07978277,-0.026446912,-0.008226884,0.007864113,-0.017022824,0.043443624,0.033760343,-0.09554484,0.11263159,-0.034053486,0.088685796,0.038613107,-0.04764217,0.026307726,-0.029018631,-0.015576598,0.017084526,-0.031995166,-0.060228173,0.028197758,-0.0044769356,-0.093419544,0.05438519,0.02578257,-0.04252063,-0.0118877245,0.04970764,0.0141724935,-0.09707515,-0.032432366,0.041805927,-0.009565238,-0.0074517997,-0.08932794,0.1630524} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:18:38.446945+00 2026-01-25 01:27:51.363879+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 431 google Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB 1 t 434 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nada recomendable, intentan engañarte de todas las formas posibles. Si no cedes a sus cobros extras te niegan la recogida del vehículo. Una experiencia muy desagradable. Al final alquilamos con otra compañía. NUNCA VOLVERÉ A ALQUILAR CON CLIKRENT. nada recomendable, intentan engañarte de todas las formas posibles. si no cedes a sus cobros extras te niegan la recogida del vehículo. una experiencia muy desagradable. al final alquilamos con otra compañía. nunca volveré a alquilar con clikrent. 1 2025-09-27 01:27:48.341859+00 es v5.1 J1.03 {} V- I3 CR-N {} {"J1.03": "Nada recomendable, intentan engañarte de todas las formas posibles. Si no cedes a sus cobros extras ", "R1.01": "Al final alquilamos con otra compañía. NUNCA VOLVERÉ A ALQUILAR CON CLIKRENT."} {-0.028988486,-0.00051888544,0.0017407909,-0.077818245,-0.17038144,0.0491089,0.08335164,0.02755629,-0.009772695,0.006510828,0.050929405,-0.026121473,-0.01713665,0.040192563,-0.041138392,-0.006158538,-0.0069153425,0.03800137,-0.009684228,0.04153946,0.01340085,-0.010853198,-0.047936585,0.05584636,-0.04675928,0.0015828589,-0.05570649,-0.0013895509,-0.04637627,-0.10382137,0.020952746,0.104261294,0.024075083,-0.022282898,-0.009748999,0.0090662455,-0.013118277,-0.0076061785,-0.00916526,0.07104533,-0.13742702,0.035844587,-0.030874884,0.040067453,-0.016688999,-0.14179371,-0.0066537485,-0.009041182,0.023417672,-0.0131175695,-0.0627266,-0.022902412,-0.04415765,0.023312502,-0.024865657,0.024657993,-0.014780035,0.017318156,0.03168841,-0.022127036,0.055884752,0.009393095,-0.06731278,0.020244192,-0.0042376486,0.019925717,0.021551149,-0.020733165,-0.106887184,0.089047514,0.09811087,-0.04077187,0.013163634,-0.0092156185,0.006996486,0.052682452,-0.011685254,-0.03597231,-0.009465106,-0.014539116,-0.009223462,0.012462935,-0.0636297,-0.051762547,0.04125997,-0.044961207,-0.050577313,-0.022899898,0.08821452,-0.019554546,-0.07079389,0.04823748,-0.070743926,0.0009763967,-0.047114324,0.074779734,0.0020845316,-0.037477415,0.01138791,0.032586973,0.09281758,0.057406027,0.02126049,0.02421446,-0.10305997,-0.013209008,0.049769286,-0.05497725,-0.00424558,0.013875207,-0.04958884,-0.032839283,-0.005781254,-0.06010372,-0.04061983,0.07384017,-0.015080416,-0.07106591,-0.036985096,-0.043873284,0.054300655,0.03650894,-0.012786108,-0.059539583,0.030029176,-0.11542081,0.05452942,1.6050222e-32,-0.0442449,0.04269603,-0.037496515,0.1257017,0.055025067,0.015364702,-0.07716924,-0.0039406344,-0.041793596,-0.05750811,-0.078243144,0.09777433,-0.010802612,-0.012751441,0.08059725,0.02019684,-0.00939518,0.018852804,-0.005801925,-0.0010371248,-0.014585477,0.022044923,0.007727312,-0.043373663,0.026457475,-0.062056478,0.04771231,-0.02744306,0.022402251,0.03382857,0.013892522,0.017652813,-0.06520034,-0.021512913,0.026827404,0.032577887,-0.04935816,0.021880243,0.0034237206,-0.01795505,0.029142575,0.045243055,-0.045930106,0.023227425,0.058788866,-0.011651022,0.05268254,0.05883138,0.036022935,0.01570261,-0.022965288,-0.022468984,-0.027722664,-0.07090358,-0.03991556,0.038487144,-0.07547404,0.07067214,-0.030013602,-0.022497635,0.038663227,-0.023574242,0.008763239,-0.06178877,-0.03959273,-0.015210078,-0.0076436587,0.008277659,0.14341043,-0.012838059,-0.053611793,-0.021587167,-0.029854503,0.019043881,0.0010887057,-0.03425584,0.02221894,-0.022341155,0.01277776,-0.02147223,-0.06514326,-0.018818539,-0.039949164,0.036782667,0.060628206,0.040847875,0.025124542,0.019503985,0.0023019742,0.16911288,-0.031251855,0.04695988,0.0327363,-0.06855429,0.08936998,-1.4795764e-32,-0.025647799,-0.002674514,-0.017364623,-0.0019506123,0.010251496,0.0770815,-0.04491393,-0.03870633,0.041989557,-0.060874086,-0.12910545,-0.073235735,0.11628435,-0.065641105,-0.13837047,0.06327021,-0.034827124,-0.07542511,-0.022272173,-0.058187563,0.052294422,0.023100993,0.008300016,-0.041513566,0.014642695,-0.0032268718,-0.01066992,0.010863796,-0.046588443,-0.042782113,0.05511628,-0.08046958,-0.043331437,0.0611811,-0.02104635,0.08710064,0.09754317,0.023315214,-0.026946278,0.04342517,-0.020490311,0.079592675,-0.011056945,0.020715157,-0.00022096749,-0.037095465,-0.025616013,-0.14512119,0.02151307,-0.019476702,0.12142209,-0.0018671924,-0.08356962,-0.046633333,0.05474498,0.009616576,-0.003344705,-0.10318348,0.08455116,-0.033083662,0.021047037,0.047507223,0.015014246,-0.030201562,0.1302491,-0.043275144,-0.07035225,0.028765706,-0.0032308332,0.04190039,0.02547129,-0.014260343,-0.05014438,-0.033838425,-0.02237995,-0.020338606,0.0023253781,-0.007601939,-0.01480316,0.002095535,0.012710007,-0.055025924,0.05299558,-0.010368723,0.045839977,-0.024499757,0.0069473707,-0.013629533,0.02538568,0.05022535,0.0316228,-0.011088692,0.02578339,-0.03312299,-0.0070654755,-5.6554565e-08,-0.00377421,-0.011704064,-0.11429518,0.018534767,-0.01467005,-0.02299915,-0.018233977,0.027370015,-0.0200585,0.0066712094,0.057533115,-0.073432766,0.0030804202,0.1508153,0.017274514,0.056025926,0.100099094,0.074188374,-0.07766991,-0.038807966,0.10494353,-0.0024190217,-0.14014457,0.102299556,-0.021819577,0.034576163,-0.02537598,-0.032488193,-0.01340459,0.018654024,-0.030917037,0.038338996,0.05770973,-0.08412961,-0.04277545,-0.0061878753,0.016151972,0.043588474,-0.029640827,0.033760462,0.08428384,0.014271397,-0.01660019,0.05397913,-0.021210732,-0.11788088,0.01472095,0.0177593,-0.00650273,0.07312512,0.0031244943,-0.047597207,0.07528707,0.008075805,-0.0010224611,0.0045990716,0.034448136,0.060768705,-0.011909314,0.0111213485,0.055231452,0.12533845,0.03264429,-0.023593793} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:04.37724+00 2026-01-25 01:27:51.371182+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 433 google Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB 1 t 436 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji. Zdecydowanie nie polecam. fatalna obsługa. brak pomocy. anulowali nam rezerwacje auta bez jakiejkolwiek informacji. zdecydowanie nie polecam. 1 2025-12-26 01:27:48.34191+00 pl v5.1 A1.03 {} V- I3 CR-N {} {"A1.03": "Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji."} {-0.026037652,0.15340903,-0.061609942,-0.016910994,-0.06089929,-0.01401597,0.07266983,0.11142831,-0.023987167,0.07025158,0.03740542,-0.00993828,0.007168487,0.031808093,-0.048361667,0.017534554,-0.023821939,0.044872154,-0.05604533,0.10980032,0.043582674,-0.018304028,0.034632914,-0.010359221,-0.023247799,-0.009471723,-0.010661887,0.04489687,0.022441907,-0.008800779,-0.044121463,0.032592624,0.076854534,-0.030034112,0.017942086,-0.013902696,0.061820567,-0.045216516,-0.013499608,0.059485488,-0.04943204,0.025303464,-0.12916562,-0.007800474,0.045199424,0.0375581,0.0070243343,0.05547943,-0.04392561,-0.01822828,-0.13353829,-0.06896681,0.011292112,-0.05662539,-0.009186412,-0.13282822,-0.019432744,0.066295646,-0.047276992,-0.021077154,0.043580074,0.008345091,-0.09066337,0.03119968,0.06724543,-0.040692236,0.0007238656,0.015012261,0.002991375,0.05953807,0.03293541,-0.09539076,-0.017132506,0.04284399,-0.21790844,-0.07162704,0.06793254,-0.055193253,-0.00734067,-0.049500898,0.060360126,-0.044753745,-0.057058193,-0.030839961,0.016575078,0.04065121,-0.046716247,0.06013296,0.02804724,0.024797402,-0.0399553,0.052412838,-0.009981469,-0.012252184,-0.08213635,0.0015748683,-0.004679825,-0.043563012,0.037030667,0.04272253,0.081083216,-0.016849102,0.06583418,0.019668624,0.014743874,-0.018660722,-0.025759729,-0.03941681,0.03897224,0.015238005,-0.07282612,-0.07231056,-0.07454828,-0.08686027,-0.01015109,0.06822526,-0.041301016,0.018564947,-0.017404858,-0.009504712,0.01443463,-0.029925982,-0.020584783,0.03158187,0.10382454,-0.014550349,0.06895541,9.57681e-33,-0.03251785,-0.100069694,0.0039268015,0.029285552,-0.011898069,0.0146740405,-0.01422991,-0.04073722,0.03277222,-0.0032124065,0.053889837,-0.0389227,0.020363517,-0.052118365,0.00073186425,0.06682868,-0.008410866,-0.014910177,-0.098811656,0.06432057,0.028243795,-0.017766818,-0.0020818731,0.017704083,-0.0035027573,0.013040704,0.035091,-0.064736605,-0.018970205,0.026794713,0.08465685,-0.045540374,-0.028950518,-0.029634891,-0.0048751817,-0.06149856,-0.041055135,0.0047006328,-0.011242791,-0.100037135,-0.013912508,-0.07278811,-0.08360066,0.081258975,0.042121608,0.020036254,-0.025864448,0.0129315825,0.024810893,-0.0003321484,0.030478083,-0.058784187,-0.07668627,0.021067023,-0.09702853,0.1223878,0.017393315,0.07790884,0.057611547,-0.040533353,-0.043148994,-0.005805847,-0.00786676,-0.05113555,0.033096053,-0.11510188,0.0030047195,0.0012881208,0.07171866,-0.025220228,-0.01118418,-0.053323563,0.011539727,0.008444955,-0.07736701,0.019828973,-0.015601565,-0.0021295974,-0.047523316,0.06823717,-0.008715817,0.033086542,0.05513909,-0.085567795,0.050840776,0.0706842,0.044823866,-0.017852413,-0.0064774253,0.07673053,0.014764007,0.0984327,0.024314756,-0.04173796,0.028615283,-1.0078662e-32,0.028206185,0.019618984,-0.096703626,0.024259917,0.008635773,-0.01480041,-0.08837787,-0.02521217,-0.030443566,-0.014903662,-0.030856285,-0.13748345,0.033183962,0.15143445,0.0032170024,0.024027549,0.029510247,0.04586684,-0.07121125,-0.025239551,-0.08011388,0.012913877,-0.032685604,0.06916607,0.010501036,0.008458768,0.02068064,-0.068931185,0.008308331,0.0019231497,0.050687317,-0.013354637,0.009696298,0.04575777,0.0243433,-0.0078164805,0.10858745,-0.032795627,-0.040209122,-0.008643475,0.00039000742,0.03581012,-0.059074845,-0.03087717,-0.017721472,-0.10425417,-0.026648937,0.028118653,-0.04871007,-0.07345385,0.06978894,0.021341013,0.012398293,0.0029085765,0.08657637,0.053308923,0.012273379,-0.1134724,0.06199835,-0.014487164,0.029006543,-0.07075543,0.0064348076,0.056997955,0.050251734,0.02188268,0.033367,0.016067643,0.06511197,-0.04135088,0.029301446,0.010751066,-0.09090621,-0.0020279386,-0.05479923,0.050381433,0.0125017585,0.054690972,-0.027884692,-0.082249455,-0.024271883,-0.055307426,-0.0055115265,0.08865641,0.019643344,-0.073676854,-0.025486171,-0.033069782,0.014151602,-0.043835204,-0.030135175,0.03435025,-0.015225101,0.066436864,-0.010149303,-3.672017e-08,0.0068932413,-0.04408838,-0.05076954,-0.025914317,0.075824074,-0.038129564,-0.007445474,0.044949494,0.004934654,0.026558885,0.025011497,0.018054327,-0.015659543,0.0388954,-0.024766063,-0.012348064,0.08587391,-0.01959423,-0.0024473537,0.016947484,0.044920623,-0.04181907,-0.06716814,0.01932149,-0.03783747,0.047312863,0.021690099,0.037413318,0.020686328,-0.08412675,-0.025714628,0.07194318,0.036951017,-0.0059903837,0.029165868,0.09076927,0.08562722,0.020631716,-0.073168404,0.005819401,-0.016505534,-0.03204873,0.107147805,0.011124235,-0.00013205591,-0.0074887355,0.08456333,-0.08139629,0.02033098,-0.058016237,-0.081115894,0.023455586,0.029746065,0.038196616,-0.0056419997,0.043584365,-0.0018362388,0.033758845,-0.079525515,0.034241967,0.114153855,0.070150666,-0.0050833225,-0.015492409} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:46.453211+00 2026-01-25 01:27:51.377762+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 454 google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB 1 t 457 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio pésimo. Contratamos por Internet un coche con este establecimiento, y no especifican que están fuera del aeropuerto, pero eso no es todo. Al llegar y firmar la documentación, nos informan de que tenemos contratado el servicio con todo riesgo y que la fianza que se nos pide son 200 euros en concepto de combustible. Tras hablar con ellos para ampliar un día más el alquiler de coche nos indican que no es posible y que no disponen de coche. Tras hablar con el encargado, este nos indica que si tiene un coche en concreto para darnos y que es de “ una categoría superior “ al que nosotros teníamos contratado cambiándonos un Ford focus por un sangyong tivoli.\nAquí es donde empiezan nuestros problemas, le indicamos antes de salir del establecimiento que el coche hace algo raro el motor al acelerar y que en la parte delantera tiene un golpe. Nos sale la persona que nos atendió y nos dice que el coche está totalmente revisado, y que el golpe saben que lo tienen, que podemos irnos tranquilamente ya que el seguro a todo riesgo nos cubre de cualquier incidente.\nSalimos del establecimiento a la autovía y tras recorrer tan solo 30 km el vehículo nos deja tirados.\nSin\nni siquiera ver el coche el encargado de tienda nos dice que eso es por negligencia nuestra y que se desentienden de la cobertura. No nos dieron asistencia en carretera, tanto es así que cuando vino la grúa tuvimos que pagarnos un taxi de nuestro bolsillo, para volver al establecimiento. Al llegar allí no nos atienden , no nos dan hoja de reclamaciones, y tampoco coche de sustitución. Además de esto sin nuestra autorización y sin habernos informado en el momento de recoger el coche mientras esperamos a la grúa nos realizan un cargo de 1400 euros , en concepto de reparación , sin ni siquiera estar el coche en sus instalaciones ni ser visto por alguien cualificado como puede ser un mecánico o un perito. Tampoco nos atienden a esta reclamación , y tenemos que incluso llamar a la policía para que se personen y nos den una hoja para poder reclamar.\nDesde luego nos han arruinado el viaje haciéndonos perder un día, y el trato de dejar durante horas a 4 personas tiradas en la autovía a su suerte, cuanto menos no es de ser empaticos, ni profesionales, y mucho menos personas.\nEn resumen estafadores, malos profesionales y pésima empresa, no repetiría con ellos nunca. servicio pésimo. contratamos por internet un coche con este establecimiento, y no especifican que están fuera del aeropuerto, pero eso no es todo. al llegar y firmar la documentación, nos informan de que tenemos contratado el servicio con todo riesgo y que la fianza que se nos pide son 200 euros en concepto de combustible. tras hablar con ellos para ampliar un día más el alquiler de coche nos indican que no es posible y que no disponen de coche. tras hablar con el encargado, este nos indica que si tiene un coche en concreto para darnos y que es de “ una categoría superior “ al que nosotros teníamos contratado cambiándonos un ford focus por un sangyong tivoli. aquí es donde empiezan nuestros problemas, le indicamos antes de salir del establecimiento que el coche hace algo raro el motor al acelerar y que en la parte delantera tiene un golpe. nos sale la persona que nos atendió y nos dice que el coche está totalmente revisado, y que el golpe saben que lo tienen, que podemos irnos tranquilamente ya que el seguro a todo riesgo nos cubre de cualquier incidente. salimos del establecimiento a la autovía y tras recorrer tan solo 30 km el vehículo nos deja tirados. sin ni siquiera ver el coche el encargado de tienda nos dice que eso es por negligencia nuestra y que se desentienden de la cobertura. no nos dieron asistencia en carretera, tanto es así que cuando vino la grúa tuvimos que pagarnos un taxi de nuestro bolsillo, para volver al establecimiento. al llegar allí no nos atienden , no nos dan hoja de reclamaciones, y tampoco coche de sustitución. además de esto sin nuestra autorización y sin habernos informado en el momento de recoger el coche mientras esperamos a la grúa nos realizan un cargo de 1400 euros , en concepto de reparación , sin ni siquiera estar el coche en sus instalaciones ni ser visto por alguien cualificado como puede ser un mecánico o un perito. tampoco nos atienden a esta reclamación , y tenemos que incluso llamar a la policía para que se personen y nos den una hoja para poder reclamar. desde luego nos han arruinado el viaje haciéndonos perder un día, y el trato de dejar durante horas a 4 personas tiradas en la autovía a su suerte, cuanto menos no es de ser empaticos, ni profesionales, y mucho menos personas. en resumen estafadores, malos profesionales y pésima empresa, no repetiría con ellos nunca. 1 2025-03-01 01:27:48.341993+00 es v5.1 A1.03 {} V- I3 CR-N {} {"A1.03": "Servicio pésimo. Contratamos por Internet un coche con este establecimiento, y no especifican que es"} {-0.004923981,0.042970832,-0.07135146,-0.089939125,-0.042639993,-0.059489492,0.09455857,0.044025462,-0.0028705879,-0.012173173,0.11045619,0.00074018067,-0.035160836,-0.027516037,0.08697755,-0.011570147,0.06962322,-0.002358434,-0.029148694,0.052035417,0.12017213,-0.068032235,-0.08242763,0.106863156,-0.12232237,0.021421432,-0.03376373,0.05440376,-0.11337914,-0.08280398,-0.050261196,0.05078372,0.053402677,0.0018916843,-0.026173458,-0.07919075,0.015936354,-0.06467105,-0.018289587,0.047267016,-0.14276391,-0.010087722,-0.002796869,-0.05865971,0.013807293,-0.04886036,0.029212879,0.044124134,0.05697694,-0.059825733,-0.08304151,-0.026792169,-0.02901237,-0.03126135,-0.0257746,-0.028533284,-0.07673775,-0.00820865,0.04170033,0.003314619,-0.012349127,0.0028256692,0.014954155,0.057440568,0.008466968,-0.05460263,0.025573384,-0.046305716,-0.03492524,0.11132507,0.08659872,-0.05869575,-0.0067995028,0.01622371,-0.073811695,0.11083607,0.06841416,-0.00014419256,0.034344014,-0.091945395,0.035311762,-0.019856824,0.008320838,-0.04818734,0.033155113,-0.012758777,-0.04140014,0.025951417,0.017159225,-0.024722585,-0.020848969,0.028519848,-0.00939216,-0.015894836,0.03699675,-0.007858877,0.06757352,-0.026735913,-0.005554029,-0.010026801,0.09615664,0.025263041,0.038895078,0.040582936,-0.0274873,0.056238312,0.031953827,0.0020484375,0.085588016,0.019069258,-0.09551228,-0.03210624,-0.066039965,-0.07775311,-0.11506676,0.021976026,-0.022963965,-0.052807387,0.063071124,-0.017124796,-0.002688773,-0.064777814,0.00206417,-0.03886257,0.0815571,-0.070670485,0.039357316,1.15490454e-32,-0.01885444,-0.00058611983,0.023203105,0.020360956,-0.006865389,0.029233174,-0.051023114,0.018217072,-0.03677901,0.014043611,-0.06517092,0.04551436,-0.01079585,-0.043301295,0.121025234,-0.031841442,0.007978781,-0.036446434,0.0014428714,-0.02593429,-0.031393893,-0.035025444,-0.004321405,-0.0025454757,0.011704808,0.045583386,-0.0008968752,-0.029831521,-0.035345055,0.07171416,0.025715556,-0.038578033,-0.007913292,0.010436261,-0.047304373,-0.062491708,-0.07189673,-0.017837383,-0.056869026,-0.032047853,-0.047985982,0.015613938,-0.06916903,0.03283896,-0.027736953,-0.008997607,0.026407938,0.045071784,0.007171919,0.029180001,-0.09170598,-0.013016143,0.016425861,-0.048761796,-0.0024908609,0.046142027,-0.02550147,0.01478279,-0.055679865,-0.031923007,-0.03067955,-0.027131261,0.019356607,-0.013140462,-0.03738775,-0.0023440116,0.01361863,0.010969391,0.09565577,0.08520829,-0.005978174,-0.047937553,-0.030151114,0.012247606,0.029988404,0.05691651,0.022897666,-0.0073979553,-0.09191239,0.02659146,-0.036401663,0.018460415,0.030561313,0.0019991235,0.0100651905,0.05940808,0.05355716,0.044853713,-0.025661308,0.1349319,-0.07517696,0.13068391,0.039815035,-0.03877238,0.06627382,-1.3744008e-32,-0.029957961,0.055563536,0.031501926,-0.015963094,-0.046875477,0.0532815,0.07630592,-0.09996835,-0.018055735,-0.08543344,-0.024772108,-0.07113582,0.06913879,-0.068166584,-0.029309187,0.030342354,-0.09745673,-0.097290024,-0.06639831,0.02197747,0.014248513,0.0351555,0.048752893,0.012064137,-0.017953837,-0.07749828,-0.079493426,-0.0074303974,-0.0526464,-0.04925389,0.08179604,0.03154075,0.072524585,0.07992624,-0.036747437,0.03339162,0.043863025,0.020200096,0.010748893,0.06571714,-0.03471256,0.026839327,-0.0061546853,-0.012962636,0.00089082634,-0.051177226,0.031782813,-0.16619124,0.019258957,-0.009466592,0.06599778,-0.09650654,-0.04735378,0.030223567,0.06724358,0.03345736,-0.05119825,-0.07471099,-0.13276742,0.010726507,0.09582289,0.0027721014,-0.100610055,-0.025180602,0.06545059,-0.06337214,-0.01785502,0.0010466196,0.049027305,0.009267528,0.0084206285,-0.022204766,-0.047863442,0.035516124,-0.037929013,-0.030005231,0.025231728,0.01366093,-0.033294458,-0.011885851,-0.028422274,-0.008967866,0.013170519,-0.028875276,-0.012218534,0.01106175,-0.028373675,0.025100486,-0.015612741,0.047953006,-0.020126104,0.030902844,-0.03565409,-0.03989719,-0.09166252,-5.8851764e-08,-0.011456691,-0.023530416,0.010107335,0.021689037,0.028532626,-0.015684461,0.008958414,-0.053740714,0.015076992,0.06302534,0.034029983,-0.023462286,-0.040233433,0.05565166,0.0034476237,0.0027616115,0.04025887,0.05175376,-0.0021466655,-0.015817245,0.08362986,-0.043509003,-0.10165897,0.050667316,0.055654153,-0.027260654,-0.052341525,-0.026108831,0.012338282,0.047673587,-0.062539175,-0.05024694,0.031183148,-0.09023895,-0.02797719,-0.018097807,-0.022198109,0.039065026,-0.05357428,0.004538621,0.15532619,0.04976117,-0.056680277,-0.005377329,-0.01816475,-0.04348163,0.026121488,-0.009893455,-0.064481914,0.045249186,-0.06702163,-0.044925928,0.06802844,0.050592743,0.028460547,-0.046621747,0.056045916,0.052688457,-0.0007606837,0.036599368,0.13425368,0.03688661,-0.016761435,-0.041789226} 0.98 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:50:30.523881+00 2026-01-25 01:27:51.449615+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1429 google ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE 1 t 1432 Go Karts Mar Menor unknown Very good fun. Good quality karts from 2 seaters upto very fast karts. Open 10.30am-10pm. good track has timing devices and lots of other GPS trackers for people viewing. very good fun. good quality karts from 2 seaters upto very fast karts. open 10.30am-10pm. good track has timing devices and lots of other gps trackers for people viewing. 5 2019-02-01 01:52:39.833374+00 en v5.1 O1.05 {} V+ I2 CR-N {} {"A1.01": "Open 10.30am-10pm.", "O1.05": "Very good fun.", "O2.01": "Good quality karts from 2 seaters upto very fast karts.", "O3.02": "good track has timing devices and lots of other GPS trackers for people viewing."} {-0.0071431347,-0.0015397265,0.047160696,0.057491973,-0.090682656,0.02020886,-0.010198562,-0.029134307,-0.026036099,0.01752427,-0.030744048,0.020058418,-0.03771201,0.031177048,-0.014205522,-0.058340047,0.114432774,-0.06708615,1.1538928e-05,-0.0322193,-0.07438493,-0.07952417,0.027412616,0.036840286,-0.07187557,-0.046429534,-0.01655158,0.036546573,-0.0018778162,-0.001343512,-0.066310614,0.045411192,0.00376223,-0.009515083,-0.08394713,0.0047627166,0.050748672,-0.08478319,-0.07036388,0.0010260984,0.061727725,-0.047058173,0.051966093,0.02967454,-0.009474208,0.02725772,-0.025866618,-0.027737478,0.03574129,0.078952864,0.040934756,-0.0660925,0.06064723,-0.10555038,-0.005806992,0.013263244,-0.12237161,-0.025139932,0.066740215,-0.048505943,0.106523834,0.019672068,-0.09922873,0.024015646,-0.0021589296,-0.10596362,-0.077529855,0.045898255,0.061785057,-0.040515933,0.042292353,0.0075172163,0.037458558,-0.019128572,0.0006827147,0.021111213,-0.05240877,-0.026079837,-0.067085505,0.026086893,0.08313037,-0.038977087,0.010915425,-0.05024128,-0.01619473,-0.116479866,0.051464073,0.061059177,-0.013037238,-0.026423343,0.052483626,0.1036261,-0.026112169,-0.06693195,0.03188156,0.032719612,-0.020528538,0.059879053,0.03889092,0.016860444,0.04264356,0.09188079,0.030278036,0.0742041,-0.03022906,0.012209373,-0.033302706,0.0790461,0.04844162,-0.012382519,0.008094261,0.012228467,0.0060017267,-0.05797123,-0.024251183,0.09363615,-0.057253804,0.048518714,-0.0037413214,0.035744615,0.0067922585,-0.021460222,0.046020865,0.0038772027,0.040128354,0.010126704,0.024225103,2.8143157e-33,-0.064674705,0.015924737,-0.022192854,-0.025393257,0.02383792,-0.07569906,-0.09710599,-0.13682279,-0.09221523,0.05167455,-0.024243094,0.02617845,-0.04839097,-0.0021534872,0.12825084,-0.043396406,-0.00806441,-0.033135146,-0.033108737,0.03500003,0.003454628,-0.049388386,-0.018805368,0.008074467,0.050592486,0.05176224,0.037794087,-0.03292418,0.052514534,0.013588681,-0.03752367,-0.049680542,-0.11846571,0.023042344,0.011127081,0.03504577,-0.026634926,-0.04793212,-0.013246097,0.002949391,0.012247262,-0.04317486,-0.038050376,-0.004693045,-0.07024877,0.028543308,0.0026817895,0.0030465429,0.008614335,-0.0092599075,-0.09287789,-0.023073675,-0.07336937,-0.02905438,-0.00736939,0.06717231,0.07699602,-0.056767277,-0.03701363,-0.0018765113,0.07589539,-0.017695708,-0.010970883,-0.081802525,-0.11296579,0.009082387,0.03496274,-0.009323377,0.08481158,0.015516843,-0.027755218,0.010722621,0.042113174,-0.07741511,0.091982245,0.0698826,0.0041450555,-0.031048987,-0.024787534,0.11429774,0.024401957,0.00060978637,0.012278245,0.015794741,0.024433859,-0.027821198,-0.07150101,-0.05553185,-0.012629759,0.048798747,-0.07619701,0.0025885422,-0.02563065,0.067197725,-0.015442672,-4.282971e-33,0.04408567,0.052546337,0.024477985,0.06778141,-0.023788327,-0.028442495,0.010035285,0.042799573,0.07322232,0.09180581,-0.031111283,0.04819402,0.069184795,0.0031037822,0.013129994,-0.06762956,0.1248577,0.043109596,0.017036695,-0.10732077,0.016825762,-0.013763973,-0.06616187,-0.10289144,0.019243035,0.054588716,-0.019493064,-0.011067789,-0.08373407,0.017641634,-0.0030685358,-0.066999055,0.040756132,-0.029349033,-0.016990373,0.052991617,0.08079697,0.027849719,-0.08191631,-0.03430684,0.049583018,0.03878733,-0.018465115,-0.051003546,-0.046939176,0.0442451,0.049224716,0.059483342,-0.04056305,-0.04196821,0.06058238,0.031948056,-0.051504347,-0.042015202,-0.00588618,-0.07100842,0.024050763,0.01189952,0.01707342,-0.016604953,-0.037685562,0.023255372,-0.071870096,0.03424305,0.024483886,-0.06631343,-0.028391296,-0.07347995,-0.08554795,0.0030634138,-0.084213,-1.007574e-05,-0.06730367,0.03713824,-0.012178075,-0.015436751,0.023084069,0.026332611,0.059430577,0.029997882,0.028018357,-0.072408386,-0.0013295648,-0.009520774,0.0008520292,0.058509834,-0.01197658,0.04199536,0.020721037,0.061989505,0.110616475,0.111397326,-0.05233548,0.042435557,-0.038079754,-2.875794e-08,-0.015706053,0.059513044,-0.037800208,0.005065863,-0.032934144,-0.049053133,0.024768788,0.037016243,-0.015682284,0.03830082,0.028435182,-0.0233679,-0.051173717,-0.010992282,0.038585894,-0.019983841,0.03643159,0.13385473,-0.006849292,0.05107868,0.041722048,0.06946009,0.0077950745,0.017710462,-0.092831835,-0.008784812,0.050333224,0.041507937,0.06574867,-0.021444656,0.008279496,0.09339676,-0.03741363,0.066221334,-0.04393498,-0.04655253,-0.08541703,0.086521946,0.028252061,0.056062307,-0.038352083,-0.05521782,-0.09347925,0.0023777466,-0.075286925,0.052766837,-0.02134851,-0.056783564,-0.07910405,0.017246153,-0.065707475,-0.015202908,-0.043677684,0.04444766,0.081308104,0.034329407,0.051273506,-0.07045745,-0.01794038,-0.019408485,-0.056004796,-0.04278398,-0.098268464,0.04287357} 0.825 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:45.92474+00 2026-01-30 02:01:09.326985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1257 google Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB 1 t 1260 Soho Club unknown Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. Šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. Darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. Tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. Nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. Būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. Nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. Pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. Labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. Tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. Vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. Mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. Nuo kada kažkoks vyras sprendžia kas yra lesbietė, o kas ne? Liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų. O vakarėlio aprašyme parašyta, kad įėjimas nemokamas su dress kodu, nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti, kad pretenduoti į tą nemokamą įėjimą. Atrodo klubas įstrigęs 2000 metais tiek su savo pasenusiais ir neprašytais stereotipais, tiek su playlistu. Liūdna, kad vietoje, kurioje anksčiau galėdavome jaustis saugiai ir būti savimi, to patirti nebegalime.\n\nAtsakymas: deja mano atsiliepimas nėra tik interpretacija, jis yra paremtas faktais. Mūsų draugė, kuri nebuvo apsirengusi jokiu personažu buvo pasiruošusi susimokėti už įėjimą - į klubą pateko nemokamai. Ji tikrai nebuvo jokiame svečių sąraše. Mes buvome apsirengusios personažais nuo galvos iki kojų ir kiekvieną aprangos detalę iš anksto apgalvojome, pirkome naujus rūbus ir aksesuarus dėl kostiumų. Savo nuotraukų kelti į soho klubo atsiliepimus ir viešinti savo tapatybių nenorime, jūs tai turėtumėte suprasti labiau, nei bet kas kitas. Dėl diskriminuojančio ir mizogonistinio komentaro, kurio susilaukėme iš jūsų darbuotojo - taip ir neatsakėte. Toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas. helovyno vakarėlis šiais metais soho klube labai nuvylė. kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. nuo kada kažkoks vyras sprendžia kas yra lesbietė, o kas ne? liūdna, kad net lgbt klube nepavyksta išvengti mizoginijos iš vyrų. o vakarėlio aprašyme parašyta, kad įėjimas nemokamas su dress kodu, nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti, kad pretenduoti į tą nemokamą įėjimą. atrodo klubas įstrigęs 2000 metais tiek su savo pasenusiais ir neprašytais stereotipais, tiek su playlistu. liūdna, kad vietoje, kurioje anksčiau galėdavome jaustis saugiai ir būti savimi, to patirti nebegalime. atsakymas: deja mano atsiliepimas nėra tik interpretacija, jis yra paremtas faktais. mūsų draugė, kuri nebuvo apsirengusi jokiu personažu buvo pasiruošusi susimokėti už įėjimą - į klubą pateko nemokamai. ji tikrai nebuvo jokiame svečių sąraše. mes buvome apsirengusios personažais nuo galvos iki kojų ir kiekvieną aprangos detalę iš anksto apgalvojome, pirkome naujus rūbus ir aksesuarus dėl kostiumų. savo nuotraukų kelti į soho klubo atsiliepimus ir viešinti savo tapatybių nenorime, jūs tai turėtumėte suprasti labiau, nei bet kas kitas. dėl diskriminuojančio ir mizogonistinio komentaro, kurio susilaukėme iš jūsų darbuotojo - taip ir neatsakėte. toks komentaras iš lgbt klubo darbuotojo visiškai nėra adekvatus ir priimtinas. 1 2025-11-30 18:34:31.336452+00 lt v5.1 R1.02 {} V- I3 CR-N {} {"P1.02": "Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesim", "R1.02": "Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir vi"} {-0.01422377,0.04330848,-0.030178009,-0.043018755,-0.10617351,-0.017375955,0.010613616,0.024916252,0.0031694125,-0.011806964,0.09265334,0.003023692,0.004524834,-0.046589993,-0.0030254794,-0.08317261,0.049555313,-0.010779421,-0.11848712,0.015308337,0.045366686,-0.057546414,0.003595297,-0.031555254,-0.0031034995,0.008761226,-0.0062602097,0.022259358,0.0015009536,-0.0006301873,-0.039111584,0.10216787,-0.06782173,-0.038298104,0.0467467,0.07168738,-0.06458151,0.027444163,0.01286154,0.067264125,-0.012058477,-0.0707417,-0.0901791,-0.064192414,0.02987837,0.0035891945,-0.061333727,0.036723148,0.042034548,-0.018986704,-0.14857756,-0.0018637166,0.025444053,0.04918251,-0.043416217,-0.114955895,-0.058319658,0.013299668,0.052921884,0.064822204,0.018643454,0.013115943,0.01901679,0.03865837,0.037102938,0.0015197954,-0.06365896,0.027497044,-0.039929066,0.018281095,0.028392963,-0.021153716,-0.0734048,0.09829433,-0.044555534,0.06545171,0.006951745,-0.024210654,0.0669491,-0.06391777,0.030146884,-0.018858084,-0.024054637,-0.012189987,-0.04105339,-0.023026654,0.023199044,0.012003282,0.012528061,0.010407128,0.008773989,0.04703594,-0.12305171,-0.10425719,-0.0105221355,-0.012445203,-0.10872258,0.02107595,-0.034115084,0.0027610469,0.016962383,0.008466955,0.010055588,-0.034324534,-0.14321229,0.03173728,0.0091338605,-0.029584171,0.0016126304,0.049955744,-0.09238651,-0.0189696,-0.09554249,-0.122698225,-0.008382867,0.02859346,0.039638426,0.0010172691,-0.026928138,0.042154923,0.059843186,-0.061305266,-0.013793438,0.025491329,-0.029642263,-0.050479416,0.041408878,2.5818414e-32,0.0023466428,-0.0018476681,-0.0080889035,-0.0723556,0.0817922,-0.030382369,-0.07009803,-0.040517405,-0.041247465,0.048099,-0.03931116,-0.019307973,-0.040654067,-0.124336846,0.019690212,0.03833888,0.067715175,-0.112763196,-0.025527844,0.019790636,0.06446637,0.01474515,0.05654617,0.018105114,-0.0024989408,0.0020154477,-0.026624208,-0.04509371,-0.038087465,0.043386217,0.058559507,-0.090232946,-0.044956386,-0.03363928,-0.08379334,-0.044671446,-0.07121932,-0.08132962,-0.07906676,-0.05934561,-0.08132878,-0.015852625,-0.004386663,0.075161695,-0.026429597,0.09982119,-0.019795613,0.0058084703,0.14499013,-0.015435578,-0.03814097,-0.004292,-0.045414712,-0.027027356,0.066478975,0.05333288,0.04428367,0.035964556,0.030133678,-0.04091578,0.018205961,-0.013285974,0.0032409315,0.055231493,-0.047504585,-0.067574196,-0.023349103,0.04616622,0.024818255,-0.06933521,-0.11066233,0.0008718292,-0.07344661,0.06361722,0.015993925,0.0137534095,0.035417985,-0.0038069442,0.005784126,0.03984536,-0.029715642,-0.008422614,-0.018889373,0.036966927,0.059011806,-0.017062014,-0.00028655134,-0.03802906,0.015193435,0.07146783,-0.0054891463,0.090866424,0.032860413,0.016209725,-0.039072238,-2.5251167e-32,0.04578927,0.040388744,0.01379339,0.008555992,0.053092726,0.07332909,-0.035148643,0.0436626,-0.0027093138,0.034424633,0.0044873264,-0.081402466,-0.018289207,-0.0214405,-0.03656791,0.060152967,0.098089494,0.039610334,-0.035978522,-0.024256073,-0.03912247,0.10020085,0.01582072,0.02437663,-0.07980121,0.01421771,0.018820258,0.010603174,-0.077060334,0.056266513,0.06664484,-0.026684785,-0.12036063,0.09491251,0.014221977,0.06881805,0.09891425,-0.005817591,-0.02466062,0.08183927,0.06368242,0.029125307,-0.028610516,-0.01795161,-0.07824624,-0.08122804,-0.033903547,-0.029354062,-0.05984198,-0.04583487,0.123576365,0.056120235,-0.04381011,-0.017090762,0.02446957,0.059073437,0.036676377,-0.06812931,-0.051428083,0.039373834,0.052178174,-0.08255402,-0.035429645,0.0025953003,0.0069244565,0.037244942,0.008496774,0.08235295,-0.014606814,0.039394967,-0.024384372,-0.080338106,-0.09017237,0.023413848,-0.035843123,0.047767878,-0.034474537,0.021061884,-0.012046201,-0.024686014,0.012916821,-0.049684662,-0.05935676,0.006055799,0.036734518,0.046501935,0.015262054,0.06434874,0.06258526,0.012033378,0.027635774,0.04862823,0.041408706,0.044199847,0.040225852,-7.450412e-08,-0.012201002,-0.056412358,-0.003711816,-0.022662744,0.042129558,-0.12391246,-0.003967489,-0.06469324,0.00019968004,0.05471997,0.008991452,0.04280459,-0.010243951,0.013324229,0.01305287,0.054941792,0.023842655,0.05092904,0.00644097,-0.00067968236,0.10219467,-0.07055373,-0.05629834,0.00078427535,-0.0120168,-0.0042324928,0.02761047,0.021533644,0.01492942,-0.04771204,0.003317567,0.0102279615,-0.019556185,-0.09411261,-0.084898494,0.044011272,-0.068004176,-0.06776016,-0.021077637,0.036169667,-0.0055708243,-0.015174029,0.043380093,0.0016302409,-0.02009045,0.074154116,0.07158815,0.008413963,-0.014703333,-0.054045767,-0.14944172,0.0154512925,0.07479013,0.023832431,-0.014915523,-0.012328474,0.027727824,0.076968074,0.020663409,-0.035523638,0.045677155,0.053105045,-0.053391803,-0.09096728} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:51:23.958583+00 2026-01-29 18:36:00.622624+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 407 google ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB 1 t 410 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. Felvettek minket a reptéren. A találkozási ponthoz fel kell menni a 2. emeletre (Departures). A 2. kijáraton kimenni. Átmenni a gyalogátkelőn, a parkolóba, ott jobbra fordulni. Kb. 25 méterre van egy kis épület, az mellett kell várni. (Érdemes telefonálni)\nAz autó átvétele gyorsan ment. Átvétel után gondosan lefényképeztünk minden sérülést az autón! Ez a leadásnál jól jött! Mivel a lökhárító alján volt egy kisebb horzsolás, ami nem szerepelt az autó sérülései között, de fényképpel tudtuk bizonyítani hogy az már ott volt.\nAz autó egy szinte új Fiat 500 cabrio volt. 9800 km volt benne. Hibátlanul működött végig.\nA személyzet rendkívül kedves volt. Az autó kiváló. A depositunkat azonnal felodották.\nCsak ajánlani tudjuk a céget!! utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. felvettek minket a reptéren. a találkozási ponthoz fel kell menni a 2. emeletre (departures). a 2. kijáraton kimenni. átmenni a gyalogátkelőn, a parkolóba, ott jobbra fordulni. kb. 25 méterre van egy kis épület, az mellett kell várni. (érdemes telefonálni) az autó átvétele gyorsan ment. átvétel után gondosan lefényképeztünk minden sérülést az autón! ez a leadásnál jól jött! mivel a lökhárító alján volt egy kisebb horzsolás, ami nem szerepelt az autó sérülései között, de fényképpel tudtuk bizonyítani hogy az már ott volt. az autó egy szinte új fiat 500 cabrio volt. 9800 km volt benne. hibátlanul működött végig. a személyzet rendkívül kedves volt. az autó kiváló. a depositunkat azonnal felodották. csak ajánlani tudjuk a céget!! 5 2025-03-01 01:27:48.341755+00 hu v5.1 J1.03 {} V+ I2 CR-N {} {"J1.02": "Utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. Felvettek minket a reptéren. A", "J1.03": "Az autó átvétele gyorsan ment. Átvétel után gondosan lefényképeztünk minden sérülést az autón! Ez a ", "O1.01": "Az autó egy szinte új Fiat 500 cabrio volt. 9800 km volt benne. Hibátlanul működött végig. A személy"} {-0.040756628,0.108672775,-0.041755747,0.006806995,-0.12578352,0.031433176,0.077937715,0.0415916,-0.017249387,-0.0003279439,0.05712187,0.0061645736,0.063038826,0.0565417,-0.0497294,-0.06536983,0.041879125,0.06541802,-0.10557202,-0.0054440703,0.054391835,-0.011848208,0.026565589,0.019415116,-0.0061573153,0.011888054,-0.03700741,0.0755724,-0.07576412,-0.09327847,-0.07244206,0.073866636,-0.035068076,-0.045439377,0.02362322,-0.06320523,-0.043417744,-0.01763578,0.024475433,-0.07484921,0.04152533,-0.081102766,-0.086453654,-0.032560077,-0.02217783,-0.005357414,0.024996867,-0.005823497,-0.022309206,-0.038975514,-0.06469878,3.085418e-05,0.03422436,0.015317382,-0.08607448,-0.056347944,-0.0028776755,0.053999804,0.053271014,-0.029611776,0.023244774,0.007091908,-0.05499731,0.002836577,-0.049720384,-0.049375616,-0.060258407,-0.09122571,-0.100851126,0.06680284,0.04419068,-0.058004197,-0.061116785,0.023307908,-0.07769792,-0.0055976408,0.054696683,-0.040620975,0.035938077,-0.039250832,0.0054273675,-0.0020157949,0.0056393705,-0.032516122,0.005299883,-0.005677256,-0.023734163,0.064684846,0.07727865,-0.009938218,0.01598576,0.05927876,0.0060327128,0.010986704,0.040116988,-0.045067463,-0.052216228,-0.005773456,-0.022592725,0.03446642,0.15154569,-0.017162742,0.00065612496,0.081939615,-0.06374761,0.08407826,0.08476113,-0.0029510767,-0.03763037,0.010222194,-0.03738571,-0.01992096,0.0055843946,-0.11589698,-0.035445794,0.032865547,-0.09425918,0.06637244,0.032726448,0.0782974,-0.024031095,-0.033765428,-0.016023938,0.037854824,0.08766071,0.03557184,0.065366,2.3238054e-32,-0.074675746,-0.0027610294,0.005820961,0.004708356,0.010653291,0.065521374,-0.09197878,0.058393456,0.03659457,-0.040634688,-0.10189763,-0.009407843,-0.0041452893,-0.037956122,0.013828041,0.009722239,0.035486117,-0.10969466,-0.05736818,-0.00017293988,0.015213632,0.0034293253,0.015103887,0.008964584,-0.050786078,0.024060294,-0.029174618,-0.08737737,-0.035508882,0.06264066,-0.0029141277,-0.00059516093,-0.035563692,0.014763459,-0.09948072,0.0037175987,-0.01345702,-0.028026765,-0.08171907,-0.07098274,0.043542597,-0.04173455,-0.068196155,0.034414392,-0.0765215,0.07567149,0.013911512,0.07642059,0.089350425,0.03505622,-0.033354644,-0.05232073,-0.08171931,-0.01705974,-0.0008867487,0.12864026,-0.024214612,0.040508244,0.013389501,0.0026051456,-0.097066194,0.048412222,0.09113035,-0.028599484,0.016323362,0.02070989,-0.012606252,-7.478955e-05,-0.010474104,-0.0062647182,0.00051513116,-0.054610778,0.05137037,0.048201557,0.03218037,0.002425072,0.06961553,-0.034176543,-0.022694133,-0.007960055,-0.09421869,0.004205137,-0.016291112,-0.05011384,0.071703725,-0.009385889,-0.0015373736,-0.05043689,0.029109525,0.06579233,-0.021430468,0.04422248,-0.047365967,0.026767097,-0.028432688,-2.2050223e-32,0.039929625,0.053185523,-0.006550928,0.050031662,0.03844918,0.017085066,-0.030932117,-0.00908064,0.02923318,0.0736709,-0.040032107,-0.0061627883,0.053116083,-0.01109502,0.010624356,-0.043918993,0.08272309,-0.050929368,0.03980026,0.015550002,-0.078562014,0.02951562,-0.06972916,0.10004582,-0.015316429,0.0487327,0.0026169086,0.06466034,-0.06358289,0.035079878,0.016258208,-0.07242974,-0.056429923,0.07773678,0.012183278,0.048515473,0.103492625,0.038707454,-0.10087337,0.013196018,-0.031077158,0.018606095,0.011847204,0.0062324214,0.004325442,-0.02846665,0.007040699,-0.044759396,0.012951596,-0.026321486,0.116642214,0.028659116,-0.0983875,0.083960876,-0.02801656,0.03837736,0.04890654,-0.007776214,-0.04028622,0.0021263405,0.058252122,0.040464327,0.03044993,-0.027936596,0.03324578,-0.16495381,-0.029867008,0.040748872,0.08441431,-0.0677775,0.03189353,-0.012039134,-0.07072209,-0.03605785,-0.06886213,0.08895792,0.0365291,-0.0004319978,-0.0035483956,-0.124824926,0.017139597,-0.034251697,-0.010070089,0.036465064,-0.03207557,-0.020894514,-0.05484156,0.017347721,0.08489127,0.0352264,0.055904575,0.05745076,0.0022733528,0.068849415,-0.11433767,-7.516918e-08,0.009960262,0.036180157,0.0029173393,0.047578644,0.03592068,-0.037216093,0.050110973,-0.026331376,-0.029006097,0.009038272,0.06901588,-0.08867171,0.004705912,0.06621799,-0.035073318,0.047375143,0.0106279915,0.051847108,-0.013511982,-0.01043675,0.007691833,-0.023970459,-0.061952144,0.011011259,0.0029628326,-0.038655084,-0.03187657,0.0006712741,0.085928194,-0.08259021,-0.0643418,0.031395968,0.04306306,-0.085565425,-0.017725546,0.039091278,-0.008814917,-0.004483992,-0.019821143,-0.004610825,0.023738835,-0.06625313,0.057829306,-0.04752911,-0.05904551,-0.065463424,0.016451424,-0.10589636,0.040906735,-0.024973422,-0.04504874,0.029563727,-0.042957637,0.11071294,0.055461127,-0.05722387,-0.031775903,0.0071656606,-0.009109222,-0.009537877,-0.0027975505,0.0029903566,-0.08022668,-0.030989336} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:50:47.78861+00 2026-01-25 01:27:51.291269+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 439 google Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB 1 t 442 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Trato al cliente pésimo. Las dos mujeres q nos atendieron, desde el principio brillaron por sus malas formas y poca colaboración. Una joven y otra más mayor. No alquilaré más y no recomendaré a esta gente. Falta de educación. trato al cliente pésimo. las dos mujeres q nos atendieron, desde el principio brillaron por sus malas formas y poca colaboración. una joven y otra más mayor. no alquilaré más y no recomendaré a esta gente. falta de educación. 1 2025-09-27 01:27:48.341949+00 es v5.1 A1.02 {} V- I3 CR-N {} {"A1.02": "Trato al cliente pésimo. Las dos mujeres q nos atendieron, desde el principio brillaron por sus mala", "R1.02": "No alquilaré más y no recomendaré a esta gente. Falta de educación."} {0.030267337,0.045861322,-0.02319247,-0.037625104,-0.12192106,-0.019496724,0.06474681,0.05666389,-0.009509116,-0.001947658,0.116316006,0.038657706,-0.017731652,-0.0042796046,0.046253547,0.029271888,-0.014980547,0.010214213,0.05401571,0.063740075,0.01690145,-0.054004923,-0.06475739,0.13036016,-0.07814292,0.0062359786,0.03425242,0.022403028,-0.05565454,-0.04226958,-0.051949512,0.07878793,0.10403601,-0.017482428,-0.012568194,-0.010555351,0.03875655,0.009497911,-0.012083199,0.05111555,-0.08612685,-0.04472623,-0.06798566,0.019222239,0.012577157,-0.11807676,-0.012520328,0.113419116,-0.0023894396,-0.036891375,-0.026762268,-0.06433598,0.018907221,0.05055449,-0.028823504,-0.05107597,-0.055378083,0.010355181,0.05647969,0.06621555,-0.035707213,0.08394867,-0.072235875,0.070127346,0.05143083,-0.0076995413,-0.00499784,-0.02342546,-0.100538164,0.06358903,0.08241168,-0.10579627,0.0029407274,0.0056952694,-0.02929702,0.06203731,-0.015563171,0.003146511,0.012985752,0.028769344,0.026300091,0.04256145,-0.037115686,-0.009790053,-0.014062495,-0.0048149205,-0.0016371462,-0.030587232,0.018943572,-0.041720808,-0.03574387,0.12143031,-0.091550045,-0.01437028,-0.039149728,0.06803868,0.003863576,-0.008350855,-0.006929012,0.035167865,0.06791255,0.020348208,0.038922176,0.032158542,-0.04787974,0.0074044378,0.05774241,-0.07679979,-0.016322492,0.004055099,-0.080718175,-0.0557597,-0.07250825,0.007516921,-0.024623271,-0.0143803805,0.040560972,0.008225343,-0.077183835,-0.01698943,-0.017379656,0.01964638,-0.07960138,-0.07379724,0.016769374,-0.03572397,0.049255107,1.3520708e-32,-0.019876715,-0.059589196,-0.048921414,0.09438571,0.054199003,0.058127742,0.04304791,-0.0015351223,-0.075399086,-0.048008446,-0.021617405,-0.0026263138,0.04169481,0.015560614,0.0496634,0.047695883,0.004706629,0.0044888724,0.06758928,0.046815112,-0.025760464,-0.03364556,0.0020858846,-0.023551416,-0.056026753,0.05280806,0.0025379246,-0.0076116268,0.04942181,0.04782903,0.0045514735,0.016426472,-0.026595496,-0.049873594,-0.049280364,-0.042454705,-0.004937801,0.007755211,-0.02374378,-0.068633765,-0.042855598,0.04727693,0.032784447,0.020946965,0.031905968,0.04188811,0.05414749,-0.024312906,-0.0041664336,0.021385524,-0.09436734,-0.010870896,-0.064788565,0.0038233735,0.022884097,0.06429687,-0.046207245,0.06690114,-0.05687015,-0.051659662,0.050041236,0.044457886,0.01745211,-0.05508638,-0.017669499,-0.044155076,-0.020489462,0.003918489,0.15650599,-0.01547522,0.0057066446,-0.034517277,-0.07222266,0.09381116,-0.019299954,0.007111575,0.01772711,-0.0036033965,-0.002031266,-0.0086213,-0.021530997,-0.015288498,0.05931366,0.036819622,0.09332632,0.06311583,0.021568395,0.05203303,-0.016417678,0.14207695,0.01812696,0.04838304,0.00818924,-0.009246097,0.05524802,-1.2966599e-32,0.02030518,0.00043521202,-0.0063364394,-0.009149306,-0.012052683,-0.0046422025,-0.04493388,-0.05376191,0.022403445,0.014298962,-0.082651265,-0.1209848,0.026078986,-0.058478948,-0.048161753,0.10529692,0.0140243685,-0.12867662,-0.066448085,-0.09229,-0.0337684,0.075048305,0.045230296,0.0042631007,-0.030541781,-0.107797705,-0.016247878,0.014785657,-0.04131058,-0.003656432,0.022557747,-0.019948514,0.014235762,0.0017032069,-0.023986084,0.024623105,0.07301073,-0.0060246834,0.050745245,0.051443376,-0.007495376,0.013725367,-0.039238054,-0.05454565,0.03452612,0.044707797,-0.0053806715,-0.16178556,-0.031092862,-0.008858866,0.057776544,-0.016622301,-0.04063686,-0.022808643,0.04353243,-0.058796108,0.03286693,-0.057298113,-0.05886675,-0.00015927556,0.07429976,0.007900264,-0.10535564,-0.03418188,0.065067045,-0.01494876,-0.08034943,0.048620086,0.014434905,0.060569506,0.09211185,-0.04382049,-0.087024994,0.006067874,-0.05926999,0.022796249,-0.046461415,-0.0035398898,0.004344267,0.0014632661,-0.0026091815,-0.03345038,0.0040352163,-0.016464952,0.0028955373,-0.051801544,0.017584786,0.020843277,-0.052893333,0.06491396,0.03700671,-0.033464648,-0.055644367,-0.06784411,0.0035755252,-5.0243667e-08,0.009363003,-0.09973791,-0.012739391,0.010654962,0.030116763,-0.008693429,-0.0051021604,0.0636224,0.08173745,0.1253117,-0.04946846,-0.0449358,0.0015200126,0.06301779,0.026314402,0.08068927,0.16193067,0.02422303,-0.051210076,-0.057544738,0.087635204,-0.035076175,-0.093705624,0.06518023,-0.0014423705,-0.0024170084,-0.035298735,0.029863968,-0.06933021,0.011245653,-0.046158433,0.0046437783,-0.029067164,-0.10524362,-0.008171973,0.013706723,-0.019833159,0.011416362,-0.027026568,0.02398083,0.07075158,-0.024518443,-0.05406905,-0.03808851,-0.030516777,-0.047577262,-0.006798589,0.05204516,0.012874139,0.033951014,-0.025787754,-0.07557011,0.13231556,-0.038624942,-0.004963599,-0.06253833,0.047661845,0.006390683,-0.011213936,-0.015301951,0.021840174,0.115389414,0.036319286,-0.07195271} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:30:21.140219+00 2026-01-25 01:27:51.400012+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 440 google Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB 1 t 443 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown No pongo una estrella porque no puedo ,estafada del siglo ,te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso ,viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual ,veremos a ver cuando lo entreguemos ,no vuelvo!!! no pongo una estrella porque no puedo ,estafada del siglo ,te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso ,viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual ,veremos a ver cuando lo entreguemos ,no vuelvo!!! 1 2025-11-26 01:27:48.341954+00 es v5.1 P1.03 {P1.02} V- I3 CR-N {} {"J1.02": "viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual", "P1.03": "te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159", "R1.02": "no vuelvo!!!"} {0.043933406,0.01978949,-0.05934999,-0.07419384,-0.12765242,-0.011437317,0.076025635,0.04109956,0.018740177,-0.0363439,0.028532505,-0.07818714,-0.045508366,-0.011017091,-0.009444775,-0.0032132708,0.03227903,0.0009024942,0.024205552,-0.018591901,0.056805283,-0.047841173,-0.049516536,0.1322512,-0.045298424,0.00901991,-0.0005263779,0.0061591086,-0.037431296,-0.051529735,-0.05134527,0.004957559,-0.008957729,0.027217764,0.043212652,-0.08299285,0.068730175,-0.09676026,-0.06947712,0.1004058,-0.07362208,-0.00060777133,-0.0599401,-0.008139616,-0.022170996,-0.025960557,0.018708406,0.12085524,-0.0033140653,-0.02061475,-0.044406425,-0.02222755,-0.08667377,-0.088893466,-0.021255562,-0.0074576014,0.049812604,-0.006190534,0.055115063,0.06046526,0.023726359,0.10634146,-0.04695249,0.043723863,-0.01736146,-0.056851655,0.07611138,-0.052034494,-0.06930993,0.09381283,0.07386799,-0.05740017,0.01328401,0.026260829,-0.028547343,0.062774196,0.06697306,-0.06910856,0.028595876,-0.025861457,0.0049717347,-0.052626375,-0.048304103,-0.063939415,8.468264e-05,-0.07896775,-0.053959545,0.03811266,0.09338863,-0.08319515,-0.016135564,0.05646854,-0.03906988,0.039385572,-0.020113712,0.051559728,0.07191833,0.01461584,0.00062151917,-0.013290028,0.077374056,0.019099211,0.042012654,0.0028687958,0.0071125454,0.060479384,0.12469328,0.026647553,0.06743568,8.848922e-06,-0.112265915,-0.032765638,0.029560069,-0.035454437,-0.08417627,0.0065862164,0.011061353,-0.095764235,0.028323736,0.008035488,0.03032702,0.0034730134,-0.08036175,-0.033805672,0.02723576,-0.061017554,0.0019644245,1.4174935e-32,-0.047693763,0.00831653,0.019282354,0.014915486,-0.055463474,0.035211816,0.03240248,-0.0044741845,-0.04603551,0.026690908,-0.08248235,-0.03066456,-0.005293895,0.04760176,-0.04016491,0.011227829,0.022897167,-0.03205209,0.06514508,0.058507867,-0.03716188,0.015331649,0.009608114,0.0073376754,-0.070937864,0.05474336,-0.011511884,-0.02281462,-0.030830067,0.05286627,-0.026502345,0.0074752024,0.018484265,-0.0753248,-0.075130336,-0.0214928,0.041624967,-0.0062538045,-0.020822901,0.007136163,-0.023178408,0.04155848,-0.024754679,0.012753327,0.022615945,0.058593303,0.014124043,0.049661487,0.0044653052,-0.0668781,-0.09545312,-0.043658093,-0.104491524,0.040938936,-0.032204773,-0.011224364,-0.07858965,0.013421017,-0.012005378,-0.06256555,0.0062600584,0.08257787,0.033669874,-0.005207303,-0.00914052,-0.028096346,0.018899484,0.008728267,0.11747912,0.05524479,-0.03409439,-0.035430938,-0.017391218,0.02477418,0.023501651,-0.020465845,0.08226442,-0.012102705,0.03256282,-0.0022293853,0.0015078202,-0.068145685,0.057147767,0.018036362,0.024308683,0.06572269,0.040141143,0.058535364,0.0474461,0.09874233,-0.018744208,0.017801898,0.09717476,-0.09968753,0.08388014,-1.4990246e-32,-0.0131108435,0.03762274,0.017905531,0.005993576,-0.023561161,0.0053200754,0.020569177,-0.003466646,0.025115289,-0.049410913,-0.032423094,-0.08960277,0.108756885,-0.06591356,-0.03270955,0.06381307,-0.015540211,-0.09803286,0.019361818,-0.001397785,-0.07029241,-0.01642022,0.01121721,0.09315555,-0.055624876,-0.07697684,0.027438566,-0.03033823,-0.09290729,0.04767457,0.0661246,-0.044299826,0.07027171,0.036841,-0.06029149,-0.0074308706,0.044273905,0.0031098877,0.014722471,0.029366674,-0.0691589,0.051024694,-0.0038270343,-0.038846143,0.027679475,0.03638386,0.059349094,-0.21724626,-0.022475285,-0.053582497,0.092296414,-0.039421465,-0.08216646,-0.026465546,0.04039811,0.015565357,-0.058595944,-0.0624224,-0.038307767,-0.008169743,0.028237667,0.07223642,-0.0488782,-0.024717763,0.10629565,-0.011377541,-0.037254155,-0.035732813,0.10834833,0.010400082,0.02069963,-0.0031149525,-0.093011394,0.030503696,-0.074658856,0.032667145,-0.06721276,0.018408706,0.027049389,-0.006433773,-0.032194007,-0.00081415847,0.048423104,-0.043428395,0.02948643,-0.06857647,-0.078572534,0.066378675,0.003575978,0.04093671,-0.040340498,-0.005606796,-0.010692721,-0.090262145,0.027891774,-5.336172e-08,0.010277214,0.04100777,-0.0019935197,0.07328189,0.004540401,0.011587832,-0.020298932,-0.0012474369,0.0749857,0.05821746,0.020603063,-0.014033369,0.016082253,0.0064249677,-0.074742906,0.050157133,0.05074375,0.024854425,0.0032626973,-0.02978347,0.033296473,0.048686977,-0.06959583,-0.014829344,0.023540676,0.034783877,-0.028118188,0.1002292,0.0058043567,0.0005446451,-0.032860238,-0.053654227,-0.057625867,-0.09252838,0.05559258,-0.019594591,-0.021706916,0.07835548,-0.034108,-0.059301063,0.054994337,-0.05503195,-0.09112416,-0.036474515,-0.038026474,-0.026506346,-0.06300702,-0.018359497,-0.027616454,0.061337013,0.015983008,-0.054539714,0.045262937,0.047324598,0.059085947,-0.06665931,-0.03241567,0.045111842,-0.033990417,-0.010736379,0.021020664,-0.012353791,0.025716119,-0.08758696} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:18:30.531443+00 2026-01-25 01:27:51.402495+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1259 google ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB 1 t 1262 Soho Club unknown Samedi soir début novembre. Nous sommes arrivés à 23h30. Peu de monde (voir photo). Le public est varié. Quelques filles aussi.\n\nLe personnel est très accueillant et gentil.\nIl y a une salle boîte de nuit pour danser.\n\nContents d y être allé pour supporter un établissement LGBT samedi soir début novembre. nous sommes arrivés à 23h30. peu de monde (voir photo). le public est varié. quelques filles aussi. le personnel est très accueillant et gentil. il y a une salle boîte de nuit pour danser. contents d y être allé pour supporter un établissement lgbt 3 2025-01-29 18:34:31.336452+00 fr v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Le personnel est très accueillant et gentil.", "R1.04": "Contents d y être allé pour supporter un établissement LGBT."} {0.021301866,0.040192187,-0.02126079,-0.042005114,0.017049937,0.036530774,-0.038345248,0.045835182,0.018211452,0.005779441,0.0470656,-0.0479129,-0.011177628,-0.06460956,0.02459561,-0.06514845,-0.07203594,-0.030805463,0.051088654,0.028464168,-0.035812557,-0.038639855,-0.0085095065,0.019030733,-0.048934553,-0.011480072,0.033442862,-0.033618145,0.00931,-0.02745393,0.07889164,0.021956982,0.027115174,-0.0069127935,0.017886318,-0.015688367,0.08054991,-0.1059375,0.050973326,0.089630276,-0.05972189,-0.08014295,-0.07581487,-0.0076551205,-0.024050029,0.013880038,0.07546964,0.069697246,-0.060411133,-0.016277853,0.041035224,-0.0063740783,0.08208189,-0.05250833,0.005477069,-0.01729871,-0.022484068,-0.0535365,0.04481866,0.008728277,0.014295041,0.0379069,-0.10342117,-0.00023134892,-0.030550849,-0.043611962,0.05153626,-0.08524857,0.06146762,-0.028681397,0.0749648,0.023142736,-0.011833678,-0.021831905,-0.033798117,-0.026809566,-0.038673308,0.036698285,0.034682184,-0.11852723,0.049466606,-0.06595778,0.065769784,-0.010007779,0.041759178,-0.029962907,0.025493465,0.06870817,-0.052367512,0.0012207908,-0.08178008,0.06343243,-0.050413087,0.0053191264,0.009405284,-0.036630504,0.004863627,-0.012868682,0.004355853,0.060935717,-0.03144089,0.05491159,-0.030342864,0.14215262,-0.079514526,-0.0031812456,-0.022746155,-0.01455418,-0.051086076,0.045000903,-0.045487337,-0.08193674,-0.044534698,-0.09834843,0.026128719,0.0010373787,-0.019783748,-0.055774648,-0.015349127,-0.049926743,0.035102908,-0.0020948823,0.007162331,-0.052183386,-0.034527786,0.042907935,0.05254427,9.340796e-33,-0.034013182,0.0141023,-0.014397842,0.033393744,-0.0069852206,0.016917322,-0.016745526,-0.0066579753,-0.019056914,-0.031365283,-0.07171935,0.016724277,-0.012756445,0.0029724473,-0.014955123,-0.044651464,0.072263874,0.021414246,0.06980233,-0.042228166,-0.035181258,-0.020891555,0.040503554,0.115877815,0.032358002,-9.372673e-05,0.035717603,-0.06453171,-0.010393149,0.06556337,0.007478821,-0.053236652,0.018116917,-0.022160474,0.09365189,-0.015668482,0.06818734,0.0347803,-0.0010367964,-0.033179313,0.12228583,0.000904829,0.011287748,-0.08971157,-0.01601371,0.14124964,-0.018528,-0.022067115,0.09321542,0.064108096,-0.022174863,0.076920696,-0.15189254,0.0049178014,-0.0023659172,-0.04536711,-0.08982997,-0.0348107,-0.07046362,-0.054929897,0.03020536,0.07556419,0.003776464,0.008199919,-0.025773814,-0.041681748,0.034118414,-0.04461511,0.08514585,0.013272518,-0.104769446,0.025957787,0.008919044,-0.07839806,0.07695315,0.11462849,-0.03552846,0.035698395,0.04450751,0.03842112,-0.048490353,-0.02351746,0.024706205,-0.10959409,0.033517066,0.002639406,0.024326848,0.047880042,-0.025111299,0.06121119,-0.015840124,-0.028658422,0.018036013,0.0038618685,0.017900737,-1.10104074e-32,0.026336469,0.017990984,-0.058336556,-0.0014556095,0.012198855,0.013113682,0.015664045,0.08603184,-0.0017096009,0.05681515,0.023976497,-0.0783823,0.053884905,-0.05017616,-0.047677413,0.03288381,-0.011866039,-0.07835246,-0.043326825,0.05284255,0.011491277,-0.04169585,0.060635705,-0.054049056,0.025187155,0.022487096,0.10085462,0.013170787,-0.020046405,-0.037147656,-0.009574722,0.0019377588,0.030696342,-0.0053725177,0.0307152,0.011010114,0.07112029,0.10781898,0.055436127,0.034739405,-0.023785926,0.06688925,0.00443963,0.025396053,0.031214662,-0.057747077,-0.068481505,-0.05973872,-0.050132245,-0.016745077,-0.03637104,-0.025875848,0.025757156,-0.05930049,0.035523444,-0.03407844,-0.04912389,-0.030930325,-0.08713495,0.06544191,0.06738206,0.10409009,-0.03980079,-0.03366885,0.07031592,-0.10080284,-0.10932978,-0.004388234,-0.012842428,0.021779314,0.040701658,-0.10586503,-0.020620229,0.029014809,-0.06678737,-0.07229546,0.021952476,0.09940234,0.067959376,0.08455738,-0.12426761,0.034480307,-0.050020132,-0.032457523,0.09146165,-0.023526832,0.09750397,-0.024195718,0.029912965,-0.058712948,-0.0028559368,0.014852728,-0.034954637,-0.04566539,0.07576795,-5.3308735e-08,0.0057306397,-0.095111884,-0.046014395,0.06787099,0.06666762,-0.08870208,-0.057950746,-0.04430382,-0.0024387327,-0.007872646,0.012964039,0.0008901061,-0.06329095,0.024240809,0.001658253,0.031079292,-0.056679104,-0.03478961,-0.06187311,-0.14328223,-0.028260585,-0.0752435,0.042379607,-0.078205206,-0.039172146,0.015172165,-0.052456677,-0.11519855,-0.057680912,-0.0026410627,0.019645939,0.04647071,-0.036722302,-0.08418598,0.021742769,-0.025730863,-0.0022544644,0.010348696,0.013201289,0.040000875,0.09079031,0.02118736,-0.0070588654,-0.008703611,0.066303276,-0.0030992487,0.015274694,0.0259943,-0.039986428,0.06718304,-0.09245867,-0.01311294,0.049503367,0.061911967,-0.0265224,0.030972723,-0.021424875,0.020717101,-0.010820095,0.049350906,-0.007198308,0.027601551,-0.030841202,-0.020470323} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:51:40.100238+00 2026-01-29 18:36:00.628485+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1260 google Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB 1 t 1263 Soho Club unknown Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro 4 2025-10-01 18:34:31.336452+00 lt v5.1 E1.01 {} V- I2 CR-N {} {"E1.01": "Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro"} {-0.026959661,0.121074975,-0.06493333,-0.019743644,-0.1586865,0.025030268,0.059098467,0.12512293,-0.010821684,0.018824179,0.05427197,0.0007030362,-0.0452931,-0.02714293,0.018014772,-0.05819687,-0.0055580717,0.07320497,0.016345853,0.035850134,0.045632884,-0.023085535,-0.069451705,-0.031437542,-0.004615023,0.038001172,0.024056455,-0.0005319132,0.05174591,-0.06658568,0.03219267,-0.06823352,0.07413009,-0.023388015,0.081450805,0.005125432,-0.033068147,-0.036334284,0.035946295,0.090021275,0.059442103,-0.05713883,-0.16511816,-0.06305639,0.021733971,0.018365942,-0.032105315,0.094522156,0.0028560478,-0.0064694504,-0.103371926,0.018411411,-0.03650569,0.06032662,-0.021366848,-0.016486352,0.022006614,-0.02073358,-0.0011419072,-0.02632338,0.02205489,-0.023048116,-0.059215028,-0.072509885,0.021807035,-0.06633903,-0.036527228,-0.005344788,-0.073110916,0.05473292,0.0721687,-0.028209055,-0.03525871,0.031929515,-0.1541819,-0.042727053,0.05721907,-0.07407914,-0.09719123,-0.024076853,0.06520931,0.00032328352,-0.037717007,-0.061027773,-0.034985762,0.010415569,0.007094876,-0.027895398,0.0640148,0.018435938,0.012947581,0.047956727,-0.061544046,-0.03960279,-0.0893519,-0.020085383,-0.028929124,0.028919913,0.07584019,0.020591108,0.03970439,-0.002891173,0.014880763,-0.05747764,-0.058886193,-0.0078961495,-0.01492673,-0.04573279,-0.023575589,0.019029384,-0.16140893,-0.026319971,-0.08575725,-0.03629616,-0.01861138,0.052714817,-0.01104355,-0.020249495,-0.051036462,0.009344189,0.040816195,0.013335138,-0.018551085,0.023101619,0.00045383043,-0.02623851,-0.022800677,7.718927e-33,-0.09323779,-0.13779831,-0.07298681,0.020344375,-0.04043429,0.06249656,-0.011295508,-0.08834627,-0.029348549,0.051409747,-0.0050764442,-0.06955269,-0.07223054,-0.005160321,0.027689759,0.12417879,0.034729566,-0.00064503786,0.012674966,0.041827507,0.01776617,0.037419386,-0.02160917,0.06459518,-0.056202862,0.0658137,-0.034611408,-0.024778688,0.01607316,-0.0034218426,0.10485765,-0.0037002768,-0.031180404,0.024838265,-0.068066314,-0.026522007,-0.031060915,-0.04425727,-0.010231247,-0.025224306,-0.0987651,-0.0412951,0.058384668,0.045944713,0.01196285,0.07542476,0.018814081,-0.024030589,0.1125286,0.024092924,-0.012328191,-0.03304138,-0.041203946,0.027773889,-0.03399743,-0.05484703,-0.068760335,0.021046605,0.031947896,-0.011287021,-0.018038925,0.027533304,0.023134522,-0.06457858,-0.00564133,-0.0717209,0.034607876,-0.02034457,0.041973036,-0.07609777,-0.022608574,0.009768324,0.06686315,0.08329429,-0.035048492,-0.035404548,0.008538913,0.049870167,0.034883253,0.008842867,-0.045073602,0.015977638,0.016784526,0.023847608,0.079706736,0.04917602,0.012622931,-0.041811664,0.013397499,0.0543257,0.014538946,0.07448174,-0.062908575,0.004248118,0.04478301,-7.806317e-33,0.08981645,-0.030321449,-0.110444926,0.03685345,0.0006859448,0.07365421,-0.095668525,-0.0050389525,-0.07677946,0.014385444,-0.0133821545,-0.062431596,0.0778906,0.068647906,-0.051061228,-0.008220702,0.12137889,0.03816403,-0.027211752,-0.08092775,-0.019659657,0.115614615,-0.019897629,0.087281466,-0.073301665,-0.018715095,0.041681565,0.018818526,-0.12485652,-0.016424173,-0.0058938987,-0.02761824,-0.04476115,0.056125395,0.0293433,-0.05495896,0.046202816,-0.018143194,0.020355579,-0.028214412,-0.0088952575,0.040299922,0.080455765,0.009309995,-0.021894071,-0.04488529,0.054980323,-0.02577303,0.07014727,-0.042363796,0.05139902,0.05196041,0.011611942,-0.02916696,0.045452185,0.043505065,0.0016897095,-0.07475939,-0.019733075,0.07980592,0.07535297,0.04249073,-0.0009851381,0.015178407,0.02738201,0.046541955,0.05119135,-0.058311343,0.068365574,0.05602437,-0.031962384,-0.059432857,-0.0025312428,0.01461328,-0.080426276,0.011246881,-0.065959595,0.052446198,0.026664568,-0.08947714,-0.014187189,-0.0432564,0.0044649797,0.016513575,0.0064203115,-0.037692793,-0.037075117,-0.06856561,0.024225628,-0.042017378,-0.030375449,0.026884466,0.035210658,-0.006764749,-0.0063615288,-3.0050238e-08,0.057015702,-0.042506304,-0.005569239,0.03583118,0.07647613,-0.01582932,0.00073435565,-0.029712392,-0.05181828,0.1011262,-0.029910505,-0.007891641,-0.02568115,0.037214506,0.011142303,0.0009563956,0.105313376,0.040230893,0.0062486897,-0.039231285,0.07404975,0.015123829,-0.046683956,-0.009207946,0.0185693,0.044229455,0.111735724,0.061468393,0.07210617,0.013359684,0.046983145,0.065884,0.029831111,0.03589145,0.0635233,0.015142693,0.022465644,0.07354125,-0.07597401,-0.03821905,0.0034536342,-0.033649903,0.03264486,0.028071785,-0.071219176,0.08866337,-0.047729217,-0.05232031,0.036252704,-0.04467032,-0.005222482,0.011316534,0.056527827,0.029375378,-0.03112499,0.035450246,0.0077154194,0.008389586,-0.031077342,0.0033722539,0.031688325,-0.02548264,-0.06015096,0.013804505} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:51:45.150571+00 2026-01-29 18:36:00.632565+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1261 google Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB 1 t 1264 Soho Club unknown מועדון מאד יפה אבל דיי ריק בשישי בערב.מעורב עם נשים.\nנאלצנו לחתוך מוקדם.אולי בפעם אחרת. מועדון מאד יפה אבל דיי ריק בשישי בערב.מעורב עם נשים. נאלצנו לחתוך מוקדם.אולי בפעם אחרת. 5 2025-10-31 18:34:31.336452+00 he v5.1 E4.01 {} V± I2 CR-N {} {"E4.01": "מועדון מאד יפה אבל דיי ריק בשישי בערב.", "J1.01": "נאלצנו לחתוך מוקדם.אולי בפעם אחרת."} {-0.0037241033,0.18672425,0.036241256,0.017121881,-0.01724801,-0.040023282,0.037591293,-0.03556846,0.06087848,0.01719835,0.07350109,0.007440384,-0.02869649,0.024106111,0.03348486,-0.00035392836,-0.07254478,0.1064915,0.007586505,-0.03141412,0.010079859,-0.01221783,0.05935321,-0.08581769,-0.071366556,0.0012312134,-0.031857204,-0.02447184,0.10335149,-0.06098159,-0.0201791,-0.02119072,0.05650916,-0.072125986,-0.1318406,0.059683036,0.038986836,0.07710632,0.033383954,0.042515688,0.06540238,0.0019821362,0.009102665,-0.08063368,-0.014385189,0.05576958,-0.018634485,0.045026004,-0.0060684998,0.008646848,-0.108326174,-0.0759388,-0.009876192,0.029534915,0.067807935,-0.021668648,-0.058535606,-0.045182865,0.067112274,-0.009222326,0.0013126893,0.05960448,0.026226724,0.01563575,0.047336254,0.0028437686,0.042463932,0.035969928,-0.086426996,0.049427412,0.06482131,0.011222451,0.01639747,-0.080086075,-0.11556409,-0.01809954,-0.017850386,-0.027934527,-0.032495294,0.012110694,-0.012122709,0.016124485,0.00045057267,0.004614899,0.023461886,0.013927247,0.013069525,-0.030335555,-0.055398587,0.06722664,-0.13452664,0.014466993,-0.003119657,-0.032636482,-0.08725914,0.033308428,-0.0632164,0.053908575,-0.0739033,0.047635786,0.010187053,0.01994861,-0.015699025,0.08495748,0.04836048,-0.012790372,-0.05248611,-0.108411506,0.008619596,-0.0065949745,-0.0067954506,-0.07997883,0.052886184,0.040741805,-0.015422495,0.044956986,-0.016037619,-0.036336735,-0.043385442,0.028672285,0.0054831714,0.014915846,0.07420845,-0.012862423,-0.074856505,-0.059617586,0.029906917,8.698381e-33,0.012720595,-0.0071398173,0.010479919,-0.008532513,-0.015868805,-0.03491584,-0.06971779,0.017628677,0.090293765,-0.08003054,0.008889073,-0.016131863,0.028806005,-0.06880796,-0.027042428,-0.02996442,-0.04863813,0.0027093503,-0.005739543,0.0159749,0.012034025,0.048136115,-0.042026445,0.046808206,0.07748874,0.0365296,0.039522767,-0.04922532,-0.0068786666,0.029233612,0.051858187,0.03463351,0.024087476,-0.00746736,-0.061291747,0.06607103,-0.047375806,0.0716613,-0.08729928,-0.03637148,0.0004179626,-0.042782612,-0.0134626785,-0.04584263,0.020395841,0.044624604,0.022773664,-0.0167653,-0.097893305,-0.009919308,-0.028217904,0.007384416,0.0018381141,-0.020066544,-0.010897776,0.011667534,-0.023567356,-0.017274298,-0.065242216,0.07651045,-0.037994586,-0.053084932,-0.05556717,0.07951665,-0.107371,0.00988519,0.052912407,-0.07980079,0.013341749,-0.059487637,-0.009584451,0.05906012,-0.034136202,0.06867539,-0.11203286,-0.055540226,0.0025467873,-0.03601268,0.0065072947,0.015420266,0.011510042,-0.008042382,-0.019327182,-0.020960411,0.11452405,0.024750974,-0.0109720705,-0.031135924,-0.03728298,0.032260615,-0.003193905,-0.0078194635,0.07827373,-0.09765004,-0.06298482,-8.695547e-33,0.063762896,0.0062921345,-0.038429644,0.08756342,0.04198892,0.034712996,0.026702296,0.12977332,-0.051400103,0.06628687,-0.071384154,-0.06956416,0.09378907,0.07012408,-0.03130722,-0.06349948,-0.029207114,0.020015627,-0.012154802,-0.04996032,0.018638462,0.03058576,-0.03402087,-0.0038525397,-0.029254887,0.06804287,0.044356808,-0.111148566,-0.11246024,0.0018388678,0.0014807297,-0.038389266,-0.15284139,0.004574672,0.0033896414,0.13566825,-0.0073176646,0.043966196,-0.07038713,0.03658496,0.02460385,0.05816097,0.020908648,0.03613585,-0.04419007,-0.017412657,0.026895732,0.03946833,0.009867432,-0.055478774,-0.028081158,0.0010784168,0.018599922,-0.07245072,0.016596122,0.030283041,0.076712824,0.0034015991,0.049631972,0.054452896,0.01884975,0.00072213396,0.009579513,0.05523364,-0.041336898,0.03482565,-0.03444148,0.14142843,-0.011099564,0.07487137,0.10586923,-0.018352212,0.00076707586,0.008698945,-0.021181192,0.06091471,-0.013453379,-0.00073588983,0.021464108,-0.0134385945,-0.06708742,-0.03248189,-0.04770359,0.0382697,-0.0064583845,-0.1148263,0.013497156,-0.090407334,-0.036635302,0.02346002,-0.052593853,0.013156816,0.004009727,-0.095844835,0.032572396,-6.720574e-08,0.015726777,-0.07071874,0.059183754,0.04918759,0.052749146,-0.03034288,0.11980822,0.011309087,-0.069960795,0.048826158,-0.013335119,0.10897244,0.059644744,0.04918728,0.047963347,0.026960513,0.064565256,-0.022354143,-0.049796015,-0.040365405,0.047905743,0.025929708,-0.01222032,-0.021673847,-0.042185664,-0.004822174,-0.027591027,-0.020701757,-0.08232419,0.02198808,0.036860142,0.028798496,-0.043421417,-0.08001298,0.06735566,-0.014998913,-0.06343114,0.00021672665,0.012037713,-0.028728561,0.017262006,0.024673916,-0.0040537994,0.027169822,0.013049663,-0.0008754116,0.042505473,-0.04017785,-0.07011775,0.010918025,0.014018847,0.013281571,0.103044614,-0.006106058,-0.0034760616,-0.012420056,0.029197494,-0.020694317,0.06928793,-0.039719526,0.12174763,0.063397564,0.0009600428,0.006356819} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:51:53.188544+00 2026-01-29 18:36:00.636662+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1262 google ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE 1 t 1265 Soho Club unknown Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi. Tūsas buvo super. Ačiū Artūrui 👌 apsauga kultūringa, barmenai paslaugūs o barmenė žydrė tiesiog nuostabi. tūsas buvo super. ačiū artūrui 👌 5 2026-01-29 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {Žydrė} {"E4.01": "Tūsas buvo super.", "P1.01": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi."} {-0.03727959,0.05549751,-0.051319927,0.008826356,-0.1928545,-0.012265821,0.009536459,0.07902073,-0.016417535,0.07547502,0.071945526,-0.07857228,0.020735655,-0.013138482,0.0004987394,0.045472085,-0.06070975,0.008818071,-0.03178559,-0.016108839,-0.023257744,-0.019469747,-0.020000225,0.024165185,-0.03811409,0.004061567,-0.02511302,0.007747836,0.03511483,-0.06818078,-0.05030414,0.014962472,0.07288719,-0.008970854,0.03169032,0.058670055,0.020974273,-0.06533152,0.05106542,0.06022095,-0.02209692,0.009552014,-0.06457101,-0.041346814,0.06793533,0.06227892,-0.050318953,0.08411688,-0.028520906,-0.014134821,-0.117081754,-0.019382624,-0.078714035,-0.026469082,-0.019101204,-0.060940236,0.02519475,-0.012839563,-0.03375672,0.021805344,0.09526246,9.018374e-05,-0.08336434,0.05395997,0.0071892226,-0.026952714,-0.073236786,0.027777303,-0.08517018,0.0176384,0.10933037,-0.09943443,-0.01037017,0.035449814,-0.04784103,-0.026115425,0.012966172,-0.0130321495,-0.01868205,-0.050461587,-0.0027781476,-0.019667238,-0.053741787,-0.00094469794,-0.027426727,-0.020534044,0.016257191,-0.053591628,0.0065399725,0.014530563,0.04324458,0.041322894,-0.025512692,-0.031308256,0.009386349,0.019637432,-0.06994592,-0.06563938,0.0151933385,-0.03615327,0.038201425,-0.0004357206,0.0420426,0.008260954,-0.10081614,0.018360483,-0.0077367728,0.010258106,0.041040085,0.082773075,-0.07587107,-0.057569034,-0.04179433,-0.076069966,-0.029918222,0.051023886,-0.034111086,0.020288827,-0.0016628414,0.0160036,0.01512415,-0.016294222,0.00763264,0.005802645,0.0024688519,-0.028013252,0.012253258,1.2460935e-32,0.016825346,-0.08752319,-0.046358194,-0.021083344,0.011450187,0.02863579,-0.08970171,-0.09646149,-0.0023758158,0.0021768343,-0.05750324,-0.028333189,0.014353192,-0.010604607,0.05434693,0.079103455,0.0077517466,0.034196544,-0.04752357,0.09193086,-0.018624503,0.04845799,0.046423245,-0.036543053,-0.0008380716,0.029344067,0.03694891,-0.081658855,-0.08353368,0.02533312,0.102068625,-0.06717515,-0.07004355,-0.051966246,-0.0963266,-0.071049154,-0.021112233,-0.040273193,-0.022144139,0.006612324,0.022363052,-0.015433176,0.04914362,0.07139546,0.05609444,0.03795448,0.035453662,-0.006012495,0.026688892,-0.00561326,-0.080196686,0.04316674,-0.021961432,0.002559902,-0.0044390946,0.009300009,-0.042003546,0.063526034,0.0068931715,-0.047391217,0.08090294,0.0037868568,0.039184414,-0.025346095,-0.037188258,-0.057511896,0.036951605,0.045297306,0.06302668,-0.042820785,-0.04349285,-0.08788232,-0.056934197,0.115984276,-0.098401316,-0.026040096,0.017032638,0.00434695,-0.030369615,0.02422859,-0.06926747,0.021869522,0.017844329,-0.000361405,0.08510764,0.048508137,0.044314627,-0.07003439,0.078093715,0.06939417,-0.0037055095,0.027257325,0.031923145,0.054357804,0.011354053,-1.1940713e-32,0.048418745,0.0019065656,-0.00271726,-0.0001625081,0.023035299,-0.05303994,-0.18136331,-0.0025114813,-0.02064932,0.017384175,0.03330711,-0.028872704,0.072846636,-0.003945513,-0.012202146,0.05757714,0.15333442,0.029929962,-0.06776506,-0.036035527,-0.048862137,-0.02986509,-0.027150923,-0.0450132,-0.020043656,0.029914645,0.020211786,-0.10160085,0.040818285,-0.0038319058,0.0046450594,0.014990133,-0.03631808,0.021669911,-0.039292585,0.023161553,0.098170675,-0.059720688,-0.015097116,0.09171624,0.111903824,0.09050655,0.059257846,0.015364314,-0.026920276,-7.201581e-05,0.0038037242,-0.055437237,-0.14888564,-0.08900713,0.12171141,0.038396474,0.04299496,-0.10514369,0.08386879,0.021742614,-0.011086272,-0.02213625,-0.07366842,-0.022628224,0.07936244,-0.038997248,0.029120885,-0.017810447,0.03356579,0.093133256,0.013961327,0.021208346,-0.057446957,0.0061941133,-0.024109025,-0.11198936,-0.035608634,0.038796645,-0.07930973,0.032721125,-0.07520951,0.0267419,0.037698183,0.0036433542,-0.034694236,-0.09484654,0.046788674,0.020377604,0.012731709,-0.035302937,0.03233631,-0.05285852,0.025721902,0.022357501,-0.03414704,0.00036230186,0.03615191,0.06151924,0.006179694,-4.19243e-08,0.076142065,-0.0719692,-0.005234389,0.034504227,-0.0006906358,-0.05740978,-0.0454038,-0.023759425,-0.03377053,0.03807159,-0.080833785,0.025236305,-0.015240398,0.04879241,0.020414488,0.047745377,0.04183123,0.05307206,0.01568732,-0.07987714,0.05284229,-0.011598734,-0.043162137,0.041740745,-0.06092546,0.035795994,0.03610688,-0.0009484962,0.10456783,-0.051834803,0.0043802015,0.050149497,0.030488372,-0.08561763,0.000466473,0.08812715,0.01284241,-0.009923157,-0.016555673,0.007847928,0.07052924,-0.004810908,0.07503022,0.046691045,0.0757965,0.025507176,0.04654712,0.041003007,-0.020465055,-0.08621778,-0.06817031,0.012640697,0.09688643,0.0037876184,-0.008629881,0.044744283,0.026012804,0.036297087,0.017940558,0.021806147,0.07370112,-0.020341879,-0.04829694,-0.044118196} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:04.940563+00 2026-01-29 18:36:00.639704+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1263 google Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB 1 t 1266 Soho Club unknown El mejor club gay en Vilnius .\nLa noche de los Viernes me encanta. el mejor club gay en vilnius . la noche de los viernes me encanta. 5 2025-11-30 18:34:31.336452+00 es v5.1 E4.01 {} V+ I3 CR-N {} {"E4.01": "El mejor club gay en Vilnius . La noche de los Viernes me encanta."} {0.048088107,0.038334772,0.0011829595,0.021772698,-0.0047067627,0.017438617,0.08503988,-0.06006246,0.07350767,0.048024546,0.017436812,-0.004546586,-0.02009481,0.0031828482,0.008080176,-0.017767552,-0.023621779,-0.01441309,-0.022244768,-0.023626575,0.00607642,-0.012421662,-0.06632298,0.04683784,-0.11924071,-0.0989122,0.03304002,0.0029946389,-0.04759914,-0.020814886,-0.029871061,0.04830068,0.013264415,0.04126018,-0.0674453,-0.03890505,0.013269105,-0.15490234,0.027984586,0.069272354,-0.10435928,-0.027367165,-0.06719999,-0.0022964096,0.014792786,-0.0029602796,0.00048179863,0.03151866,-0.042445015,0.012145538,-0.03522502,-0.027444836,0.0047321864,-0.024807286,0.011024037,0.03410568,-0.04796379,0.0455709,0.05791044,0.0711058,0.1330023,0.013834583,-0.08760884,-0.013789764,-0.06786431,-0.034425642,0.021870356,0.06435261,-0.014725906,-0.012420663,0.085361466,0.005780446,-0.0812403,-0.010164824,-0.00941849,0.0096544875,-0.0849316,0.0067149294,0.015247738,-0.0516538,0.024700359,-0.08733911,-0.0029557613,-0.0030305085,-0.0026285583,-0.03832207,0.048988268,0.003047989,0.045408316,0.0626878,-0.12758557,0.07817575,-0.12982284,-0.040809236,-0.036763344,-0.004047387,-0.044651333,0.023844006,-0.03228495,0.040939655,0.06141957,0.06295714,0.0586168,0.032206994,-0.1077111,0.016814739,0.021047313,-0.024716737,0.03473522,0.03344322,-0.053172097,-0.044546463,0.022368267,-0.08382085,-0.0439211,0.037549872,0.068390705,-0.023396993,0.02179777,0.036510106,0.025821751,0.043633297,-0.019704826,0.0026951574,-0.038880054,0.023000168,-0.022461593,-2.264775e-34,-0.043226615,0.002266378,-0.03254068,0.091136076,-0.0023463035,-0.030586645,-0.020200478,-0.023349255,-0.037233174,-0.06153808,0.034231827,0.02305084,0.0008393353,-0.07656342,0.093200274,0.064961284,0.097295724,-0.04926719,-0.0039129984,0.033600166,-0.017932404,0.069621526,-0.03672866,-0.01683,-0.045029517,0.03556374,0.017445117,-0.032521527,-0.054104008,0.02815459,0.055538777,0.07379821,-0.0055012843,0.032508887,0.0650494,0.012443981,0.066313036,0.053661503,0.008243038,-0.043999728,0.052935857,-0.040108092,-0.042683795,-0.030223696,-0.0012503496,0.13476244,-0.0167004,0.0024754722,0.0649806,0.006331167,-0.024331002,0.062826894,-0.13177952,0.0052524502,0.030310296,0.034293644,-0.08392673,0.04429522,0.023261884,0.016043723,0.012674662,-0.019213075,-0.008448289,0.09502928,-0.038498234,-0.068305485,0.036707986,-0.09026923,0.13510823,0.029964823,-0.033899747,-0.06073566,0.036530737,0.032029368,-0.012650547,0.023774084,-0.10209586,0.08470145,0.008525907,0.021830173,-0.010578964,-0.006656542,0.02636522,-0.060363017,5.460011e-05,-0.017845409,0.07433218,-0.03137357,0.0339073,0.040053852,-0.08801522,-0.0064192517,0.08281257,-0.08109749,0.034374844,-2.7200137e-33,0.07475236,-0.07694204,0.018041719,0.04225237,0.019438505,0.06330514,0.010191098,-0.017513001,0.016798923,0.04074467,-0.051910173,-0.13331234,0.09462035,-0.020700086,0.026461022,0.086408824,0.057877593,-0.074557476,-0.07736485,0.030547174,-0.06176272,0.061288077,0.05445704,0.08284367,0.0048775817,-0.036419865,0.028571263,0.020505788,-0.07574775,0.011654582,0.030636577,-0.036452428,0.03927812,0.015301526,0.008588204,0.034304254,0.08544725,0.07331871,0.021985944,-0.034675077,0.022316586,0.020798612,0.012761195,0.05795731,0.01124353,-0.047845855,-0.015494032,-0.059687596,-0.057986114,-0.044119522,0.016305663,-0.07624418,-0.047589853,-0.11024246,0.06875753,-0.029615488,-0.03458326,-0.07325137,-0.06824141,0.031938404,0.013287327,0.012182735,-0.024492279,0.036616225,0.039214447,-0.04763236,-0.023747124,-0.009243637,0.013287364,0.029448552,0.016229909,-0.07118987,-0.034805372,0.107150756,-0.07532288,-0.0080104135,-0.017311795,0.04956006,-0.011190905,-0.006149536,-0.059897877,-0.039928697,-0.022924842,-0.0047285818,0.053649317,-0.081382394,0.011746409,0.000627198,0.032608666,-0.044656888,0.01662424,0.03218857,-0.057065252,-0.060799435,0.002497833,-2.4946754e-08,0.04383727,-0.07249398,-0.06624615,0.07784715,0.002337004,-0.093061544,-0.01989702,0.06798807,0.029235283,0.11083437,-0.07684513,-0.010180632,-0.01897193,0.06259165,-0.022139242,0.030160593,0.06653466,0.06491241,-0.0048521147,0.0011040145,-0.036460448,0.023301387,-0.01561511,-0.094713755,-0.062126487,0.03370863,-0.016410016,-0.07191925,0.015960637,-0.04655849,-0.03122379,0.03221286,-0.06763143,-0.079461455,-0.066502385,-0.02198857,0.028562987,0.016762156,0.010930007,0.020938769,0.09432943,0.06733911,0.026638754,-0.009194379,-0.038630888,-0.0029880716,0.04777071,-0.01356654,-0.0050049108,0.064879425,-0.104133785,0.04992399,0.04012408,-0.009801809,-0.022226632,-0.022628082,-0.033391047,0.09052138,-0.033495713,0.007840873,0.042747904,0.090495065,-0.035042137,-0.12476132} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:10.710937+00 2026-01-29 18:36:00.643989+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1267 google ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB 1 t 1270 Soho Club unknown Neblogas klubas, muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo neblogas klubas, muzika gera, bet barmenė - blogiausia kokią tik esu sutikus. atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo 3 2024-01-30 18:34:31.336452+00 lt v5.1 P1.02 {} V- I3 CR-N {} {"P1.02": "muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas pr"} {-0.0108237965,0.10180104,-0.045112018,-0.052280333,-0.15608034,-0.021043291,0.056076497,0.07884464,-0.015126225,0.05989343,0.046995804,-0.0068740263,0.00024584698,-0.00984043,-0.012915003,-0.0409201,-0.01704957,0.0051360056,-0.02373979,-0.024921678,-0.054684337,-0.071407124,-0.018759815,-0.020547517,-0.03221657,-0.023837877,0.014328832,0.015561565,-0.018161077,-0.02961205,-0.011639767,0.0030796947,-0.0028134831,-0.038597498,-0.006870343,-0.041373555,-0.047119036,0.0026166227,-0.011726645,0.14836489,0.001794728,-0.0013757702,-0.10685925,-0.045427825,0.048895355,0.04706071,-0.08591787,0.06562608,0.012306295,-0.00860725,-0.11821877,-0.010412537,-0.038810924,0.022844464,0.003056503,-0.13566582,-0.05310447,-0.007026758,0.04341481,0.08044551,0.06336666,0.059570573,-0.04608148,0.04591765,0.03157203,-0.04363892,-0.025324754,0.15413809,0.02377092,0.051347986,0.12929711,-0.064563796,-0.008804357,0.058249854,-0.14333314,0.007360396,0.033703975,0.07596103,0.032424062,-0.071109995,-0.016974393,-0.070508115,-0.06818108,-0.0045846263,-0.062435895,0.036506627,-0.007633026,0.0019059776,0.014307057,0.053934015,0.0034217387,0.053474683,-0.015652101,-0.077491485,0.036640167,0.06528294,-0.07772886,0.010859941,-0.07196988,0.024063993,0.04226907,-0.026933637,0.0018366873,-0.03157034,-0.07064951,0.059912194,0.026075384,-0.03467855,0.019703675,0.06593029,-0.042406175,-0.022366446,-0.031155292,-0.08512628,-0.051844336,0.013762175,0.02485547,0.023250496,0.0007206343,-0.030393561,0.05327603,-0.0029125132,-0.03159912,-0.026397193,-0.012609335,-0.0044345167,0.06184929,2.4446397e-32,-0.012439263,-0.11838776,-0.029116174,0.01933928,0.02045086,-0.012785333,-0.1110267,-0.018399334,-0.06285953,-0.049043622,-0.05940632,-0.060322292,-0.079297416,-0.02722696,0.036739435,0.08696334,0.028438117,-0.041501816,-0.016237233,0.08972563,-0.023316646,0.016283331,0.07860758,0.006740414,-0.022152672,0.041086007,-0.007572614,-0.06095066,-0.11034791,0.020080715,0.04890552,-0.049789634,-0.020615932,-0.0019253208,-0.056209136,-0.021036265,0.023437938,-0.044752877,-0.08458892,-0.060584426,-0.0062342673,-0.032484613,-0.016657367,0.09802388,-0.011380402,0.09657663,-0.03498314,-0.011889739,0.05073134,0.0039847917,-0.039591927,0.038706932,-0.035950612,-0.014650388,0.03042069,0.018120477,-0.019106314,0.08047592,0.076046504,-0.06549157,0.017711777,0.02337361,-0.045847774,0.018379126,-0.0077177347,0.0021617068,-0.019722223,0.017793681,0.08590179,-0.1281587,-0.089951575,0.0124124475,-0.047684785,0.057592202,-0.04217757,0.037640385,-0.0031220217,-0.03062379,-0.014195373,0.070239805,-0.015548505,-0.016530953,0.00037672964,0.037302647,0.08769097,0.013456156,0.03745916,-0.011523615,0.01068217,0.076840036,-0.020079792,0.05103235,-0.029149434,0.053588856,0.016527615,-2.3905885e-32,0.010745319,0.0045457534,-0.034860186,0.047370963,0.07797037,0.064382024,-0.10589904,0.009956185,0.0026846512,0.033344228,0.0043974197,-0.054954764,0.012692721,-0.0042992462,-0.00088925887,0.00703621,0.03209988,0.04862812,-0.10942105,-0.088194296,0.04903426,0.068072386,-0.004152789,-0.00020605304,-0.00579722,0.007975009,0.044133805,-0.010757731,-0.14108498,0.0205999,0.06287942,-0.05385984,-0.06950833,0.047646146,-0.010931778,-0.007605338,0.14404236,-0.008401178,-0.0103343455,0.008292658,0.08859679,0.09856403,-0.028679866,-0.045034204,-0.048149295,-0.040894035,-0.06953002,-0.009817256,-0.06369997,-0.057712153,0.07406108,0.032740824,-0.051469907,-0.0004647361,0.067004174,0.006783746,0.019857345,-0.033068903,-0.027681839,0.05927517,0.03974719,-0.030962784,-0.0111578135,0.03343535,0.030242216,0.05586133,0.0037090324,0.08639674,-0.07368897,-0.0030146409,0.04125058,-0.046231683,-0.060842827,-0.01968203,-0.08973464,0.020177873,-0.014076944,0.026368389,0.0043435884,-0.0055793063,-0.024707705,-0.10917542,-0.0048097586,0.044129554,0.058103617,0.030328427,0.015100187,0.003671158,0.0677914,0.029585004,0.055852905,-0.0041024615,-0.022129716,0.012250185,0.053377267,-7.142708e-08,-0.020759515,-0.048920963,-0.07636253,0.0110320365,0.040893633,-0.07811091,-0.04340115,-0.034267977,0.0066636438,0.06517731,0.078033574,-0.008900785,-0.07194275,0.0068497793,0.004299362,0.014505881,0.04269749,0.086583436,-0.0324361,-0.038850266,0.091286376,-0.042673513,-0.05932565,0.02069229,-0.072150506,-0.06674022,-0.004349696,0.035064105,0.06565929,-0.0087921545,-0.0550781,0.054912243,0.002666507,-0.10371064,-0.006677034,0.030702645,-0.010020867,-0.018816167,0.0036044843,0.042737953,-0.028057588,-0.08084911,0.07645005,-0.03507,-0.060243674,0.006084243,0.08364453,0.05093914,-0.01715782,-0.023844182,-0.062180083,0.08140563,0.07628491,-0.0077030826,-0.03978696,-0.009714585,-0.018631844,0.029568292,-0.022493716,-0.027461482,0.08349372,-0.03247503,-0.03549966,-0.01338408} 1 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:48.030659+00 2026-01-29 18:36:00.653144+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1501 google ChdDSUhNMG9nS0VJQ0FnSURRLXZqUnhBRRAB 1 t 1504 Go Karts Mar Menor unknown Great track. Carts for all ages. Friendly staff. great track. carts for all ages. friendly staff. 5 2018-02-01 01:52:39.833374+00 en v5.1 P1.01 {A3.02,P1.01} V+ I3 CR-N {} {"P1.01": "Great track. Carts for all ages. Friendly staff."} {-0.0032726296,0.03941647,0.0065893317,0.005724227,-0.0627453,0.03185197,-0.025214005,0.0051951436,-0.09738109,-0.007905688,-0.0032020335,0.08208691,-0.054024197,0.011217827,-0.060271326,-0.009724085,0.06220656,-0.020207161,0.04481783,-0.07379632,-0.06224378,-0.02423364,0.026251117,0.09893955,-0.15272218,0.043198228,-0.07668278,0.053755913,-0.031001607,-0.026509069,-0.09596919,0.018002627,0.06473814,-0.03981302,-0.01996169,0.0048007467,0.09326332,-0.008111303,0.0231711,-0.024596857,-0.04005757,-0.05539007,0.0031607447,0.057283975,0.0054680756,0.024545241,-0.0033741954,-0.05035484,0.042390823,0.064435974,0.111983486,-0.07301786,0.10719714,-0.057424396,-0.009718325,0.02234998,-0.019591512,0.007801612,0.062058,-0.027263196,0.020563269,-0.06126481,-0.055159025,-0.008637387,-0.074452996,-0.055630345,-0.08579892,0.0398749,0.050249085,-0.013004149,0.023070939,0.017509101,0.059429467,-0.035835978,0.025568197,0.03581829,-0.033913936,-0.033020955,0.0031063678,-0.015199734,-0.034582637,-0.095115945,0.026090717,-0.040514685,-0.014992901,-0.07772909,0.058790293,0.031190725,-0.012419291,-0.012110358,-0.060131136,0.10641247,-0.033522006,-0.04680238,-0.0045053135,0.0021142103,0.011235218,0.07774762,-0.034165677,0.05300367,0.058021534,0.09964651,0.05665937,0.023360655,-0.07442715,0.034376357,-0.06141687,0.03010446,0.013845214,-0.023009097,0.04557047,-0.00690634,-0.019480743,0.02216066,-0.077552475,-0.025937743,-0.04899223,0.037045237,-0.025638083,0.025393182,0.04842854,0.05035756,-0.031088397,0.018398186,-0.037451997,-0.004114214,0.088540465,-4.6014965e-33,-0.045089513,0.03953799,0.016051698,-0.036662936,0.08567427,0.0048089596,-0.07142069,-0.020891488,-0.06457588,0.05694848,0.044614077,0.041731413,0.0043269363,-0.066954106,0.022143451,-0.048687804,-0.070451744,0.041511405,-0.06950175,-6.866053e-05,-0.061485525,-0.022258036,-0.0092883445,0.010765038,0.09453114,0.034295972,0.03344448,-0.010966314,0.11728493,0.039992798,-0.005870536,-0.03571297,-0.0005672372,0.025513725,-0.013575083,-0.007510552,-0.072533056,-0.03418007,-0.0020108845,-0.030859916,0.01672106,-0.031177385,0.014838841,-0.008526797,-0.097221866,0.08048122,0.06882088,0.019183664,0.01606272,0.04632678,-0.08974793,-0.015745353,-0.06288337,0.034923863,0.032215565,-0.09192795,0.067735896,0.08097691,-0.038781688,-0.06909809,0.09929523,0.11030378,-0.0066089253,-0.073653415,0.002254334,0.00014048419,-0.021995274,0.013253697,0.08885823,0.03344769,-0.017811699,0.029757649,-0.014951581,-0.027528798,0.010794034,0.0341387,-0.009278751,0.016642917,0.002506195,-0.052717663,-0.10338563,-0.033168167,-0.02969416,-0.013910757,0.044940975,-0.040187184,-0.07437987,-0.085498534,-0.061100826,0.005953575,-0.049371358,0.01523381,-0.030405229,0.117849454,-0.03440673,2.6236823e-33,0.0904471,0.09959808,0.09953257,0.03773202,0.039336413,0.032052454,-0.03223928,-0.010706865,0.0656982,0.06597676,-0.09807018,0.0205555,-0.009383324,0.10268236,-0.0056094564,-0.036154885,0.08189293,0.014188977,0.016779935,-0.1525545,0.02341754,0.04371714,-0.061520647,0.037202198,0.017014604,0.034723114,-0.039776634,-0.097341575,-0.071176626,0.048277985,-0.06597471,-0.027862942,0.038309347,-0.039693702,-0.055880845,0.01773374,-9.606685e-05,0.07079836,-0.02981758,-0.0014836065,0.031989776,0.009993919,0.032281067,0.029505525,-0.046366923,-0.0354515,0.014623458,0.08916942,-0.08125938,0.020293739,-0.020215722,-0.02416212,-0.021865914,-0.09549967,-0.029821176,0.051675163,0.031519514,-0.05817804,-0.04107673,-0.058507968,-0.052498605,0.040040456,-0.05127544,0.07192632,0.020476602,-0.034586478,-0.027418256,-0.0564123,-0.05186129,0.03261821,-0.011516915,0.050094225,-0.035528626,0.03430463,-0.053198613,-0.018298438,0.07799024,-0.030509356,0.034859616,0.06651224,-0.015725343,-0.016443672,0.059053257,0.06203507,0.06875116,0.06969731,-0.047830157,0.00028030883,-0.00024516234,0.07472397,0.089761496,0.081532314,-0.08564142,0.01671316,-0.07821293,-1.712742e-08,-0.008023479,0.08543647,-0.059363607,-0.01930804,0.032028574,-0.029779281,0.06245537,0.08553732,-0.058001816,0.044537462,0.072526604,-0.02006383,0.012994977,0.035946146,0.07701368,-0.006612841,-0.00614812,0.09514808,-0.09026697,0.03943475,-0.013879793,-0.0128503665,0.016314879,0.033982765,-0.06632189,-0.077085674,0.013425836,0.02360241,-0.009031263,-0.021825992,0.016297692,0.08426161,0.038176708,0.009121979,0.072362974,-0.047342233,-0.08704005,0.061779425,-0.014243453,0.027854333,-0.047416486,0.01573047,-0.06430475,-0.012128598,0.010826111,-0.0019910692,0.013385057,0.037027657,-0.08019268,-0.011364871,-0.07475264,-0.048526112,0.021090275,0.056477502,0.07499748,0.054160874,-0.014822505,-0.01805007,-0.010663697,0.009999555,0.04727529,-0.051057458,0.013795707,0.044896174} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.840586+00 2026-01-30 02:01:09.57608+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1265 google ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB 1 t 1268 Soho Club unknown Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10! šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10! 5 2024-01-30 18:34:31.336452+00 lt v5.1 E4.01 {} V+ I3 CR-N {} {"E4.01": "Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas", "O1.01": "Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10!"} {-0.021629546,0.09509124,-0.054534614,-0.03386882,-0.13625595,0.017955437,-0.010059052,0.02196143,0.027272606,0.008345082,0.05042935,-0.06105638,-0.002093174,0.028155968,0.0020141501,-0.09009098,0.05151078,0.04611316,-0.07428489,-0.070279345,-0.04197695,-0.08485856,-0.04089069,-0.010773068,-0.006562871,-0.037683617,0.04229096,-0.00047314123,-0.04237238,-0.03537841,-0.075142905,0.04388531,0.017199391,0.011014115,-0.012730284,0.081397936,-0.06351594,0.01777797,0.05501493,0.11049164,-0.025693115,-0.06262095,-0.022512784,-0.058662914,0.080184236,0.006344971,-0.11008997,0.015382601,0.014431924,-0.025554985,-0.1573471,-0.051051565,0.009242496,-0.011221013,0.03877413,-0.119687214,-0.03728637,0.029724097,0.012463543,0.0568428,0.09763678,0.015228094,-0.011168798,0.057375357,-0.07207691,-0.041832503,-0.03725304,0.07696005,-0.0649329,0.0023944422,0.021467179,-0.028886138,-0.032008696,0.04437961,-0.087942004,0.027196476,0.019750167,0.014457236,0.023386456,-0.08812353,0.010063455,-0.022719063,-0.04294116,-0.014183176,-0.06395555,0.015384359,-0.0141198635,0.0082634315,0.060009465,0.019005636,0.0132204145,0.088799365,-0.04410365,-0.07972876,-0.030200947,0.027885228,-0.08609565,0.06915565,-0.0728885,0.007605464,0.012270362,0.012754921,0.017475953,-0.0021199042,-0.14674163,0.013562487,0.019283412,-0.067482226,0.016549792,0.009400948,-0.09331668,-0.0075349994,-0.07832496,-0.074549295,0.02684366,0.0054700235,0.040209956,0.019877397,-0.021719553,0.059784114,0.07432135,-0.07979182,-0.019129552,-0.04230922,-0.06668998,0.023188734,0.085545145,1.9325205e-32,-0.039177574,-0.051365763,-0.016914135,0.008274728,0.023821663,-0.081285514,-0.07983035,-0.09142959,-0.067098394,-0.023204263,-0.012082705,0.01981066,-0.06785633,-0.078183755,0.05448258,0.07566417,0.01713413,-0.0155497445,-0.043261297,0.03326684,0.011125502,-0.006770309,0.007266273,0.0017622268,-0.037315615,0.03150091,0.010137936,-0.07976727,-0.01802268,0.018165883,0.0639177,-0.040600006,-0.078335084,-0.020801522,-0.10973649,-0.018963793,-0.038415235,-0.021684628,-0.046162583,-0.038399648,-0.0868995,-0.03857743,0.010597213,0.07310415,0.012747444,0.102085635,-0.013033741,0.01949294,0.14101821,-0.010657734,-0.09817204,0.016896496,-0.01190709,0.023552401,0.082639106,-0.0044642533,0.010252508,0.032462265,0.01046161,-0.03430649,0.026744617,-0.0037681782,-0.00291202,-0.0021708147,0.0044654394,-0.073790856,0.021981208,-0.014278812,0.037946314,-0.06395349,-0.036353376,-0.012951749,-0.007908496,0.065629266,-0.047696415,-0.020976441,0.07594017,-0.01129088,-0.030535333,0.015498047,0.016224967,0.006939397,0.016051445,-0.00027870364,0.07194667,0.029947532,-0.00067043386,-0.027376045,0.06933873,0.05930663,-0.024113769,0.017726362,-0.0073336307,0.016881086,0.044115484,-1.8523098e-32,0.087253466,0.027526386,-0.05638244,-0.004339982,0.065571934,0.10405562,-0.011713035,0.029139567,-0.027828695,0.042357415,-0.04441407,-0.10231654,0.043670792,0.022312053,-0.031708375,-0.004871159,0.08510127,0.102236405,-0.033078577,-0.074121386,-0.00046666828,0.052929945,-0.008045902,0.050250333,-0.003536572,0.048119873,0.020027999,0.04406795,-0.17961141,0.036392745,0.071648106,-0.09523257,-0.062046573,0.09140017,-0.023184944,-0.04351434,0.11154504,-0.015671054,-0.05509268,-0.0028361615,0.07282337,0.024561107,-0.025192702,0.055312913,-0.07301215,-0.044159055,-0.06770196,0.0029307236,-0.023167202,-0.10136727,0.09250135,0.03699901,-0.037089266,-0.06351138,0.06316798,0.06164829,0.043950435,-0.006189541,0.02814151,0.021425437,-0.0082025,-0.025258668,0.0077002305,0.045745082,0.012078224,0.027296541,0.023538742,0.08492494,-0.009594773,0.021359766,-0.015871316,-0.06274367,-0.04534928,0.019229114,-0.089163624,0.036100112,-0.07567561,0.035369504,0.008034552,0.020049961,0.006764831,-0.05434804,-0.034923624,0.030740596,0.040606976,0.03415122,0.08390307,0.062145177,0.0982567,0.0015204095,0.027843479,0.032558773,0.00018701349,0.02186242,0.042207874,-6.040788e-08,0.05331238,-0.08980783,-0.016159806,-0.011811611,-0.018815085,-0.040816043,-0.0330519,-0.006367576,-0.016794283,0.07795002,-0.0058298395,-0.004148114,-0.00030196676,0.07927683,0.0288684,0.009199535,0.099372685,0.09634086,0.0028515006,-0.035868797,0.076959334,-0.032170646,-0.01553818,-0.009418671,-0.0067927446,0.019093722,-0.0072389743,0.07344496,0.035961855,-0.057681452,-0.009822188,0.02307831,-0.013055166,-0.045111846,-0.032847922,0.07067463,-0.092010275,0.007787942,-0.037597675,0.00030640108,-0.09664394,-0.04805049,0.06194418,-0.0048850505,-0.011624792,0.041441668,0.009607545,0.009076692,0.0043397485,-0.038829245,-0.12454397,-0.010228153,0.064248785,-0.004557905,-0.022496741,-0.0014673915,0.010286728,0.058269452,0.006115498,0.0012350278,0.040581204,-0.0014059856,-0.054728188,-0.0138742495} 1 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:35.348803+00 2026-01-29 18:36:00.648463+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 445 google ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE 1 t 448 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Descontento con el servicio. No lo recomiendo.\nEstá fuera del Aeropuerto. ( Eso lo avisan en su publicidad, pero hay que tenerlo en cuenta)\nLo peor y de ahí mi reseña. Me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( Más que el precio del alquiler del coche los 3 días que lo contraté).\nPor el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleados.\nDe ahí poner 2 estrellas en vez de 1. descontento con el servicio. no lo recomiendo. está fuera del aeropuerto. ( eso lo avisan en su publicidad, pero hay que tenerlo en cuenta) lo peor y de ahí mi reseña. me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( más que el precio del alquiler del coche los 3 días que lo contraté). por el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleados. de ahí poner 2 estrellas en vez de 1. 2 2025-01-25 01:27:48.341976+00 es v5.1 A1.02 {} V- I2 CR-N {} {"A1.01": "Por el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleado", "A1.02": "Descontento con el servicio. No lo recomiendo.", "P1.03": "Lo peor y de ahí mi reseña. Me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( Más que "} {0.079374716,0.073482744,-0.025911886,-0.018957365,-0.08138135,-0.028391313,0.06596752,-0.006273047,0.028400281,-0.0017588225,0.014923466,-0.05546028,-0.053972654,-0.029014753,0.05308066,0.016803287,-0.018171174,-0.072911106,-0.00092588,0.07760368,0.1064293,-0.085545234,-0.09115878,0.07416538,-0.029499324,-0.013159489,0.0037084792,0.015448896,-0.12268606,-0.08818034,-0.014622951,0.014363045,0.05288419,-0.03311413,0.026979258,-0.08652129,0.05964417,-0.08478035,-0.10479376,0.044630967,-0.031850953,-0.042874377,-0.030067459,-0.026956422,-0.044240963,-0.06433894,0.08027294,0.11749663,0.06900039,-0.015751861,-0.026162716,0.007833839,-0.01828636,-0.07745445,0.012612573,-0.020821003,-0.011190489,-0.013401517,0.076515384,-0.011461091,-0.04675346,0.08447254,-0.051831335,0.01982638,-0.008278129,-0.13349754,0.027617985,-0.081415065,-0.091037475,0.0481605,0.066930875,-0.121824905,-0.0022819447,0.04674755,0.018327357,0.045436345,0.075520955,-0.02673418,0.056873836,-0.038806207,0.0558338,-0.02681009,-0.00779233,0.025586149,0.02496075,-0.032922648,-0.015396448,0.008434994,0.059750665,-0.060318936,0.041606274,0.034306016,-0.03034905,0.0030677924,0.076421835,0.0067152944,0.05257773,0.02874866,-0.015644569,0.016964596,0.116002046,0.0026866912,0.04454347,0.06875919,-0.07048691,0.045155544,0.0658725,-0.024822924,0.022902714,0.0065128873,-0.10348921,0.004177194,-0.04051536,-0.030370615,-0.09917001,0.019150285,-0.008189532,-0.08543943,0.01597335,-0.10098841,0.008703339,-0.006948835,-0.008199943,-0.013211679,0.018664928,-0.11242523,-0.054701608,1.2674599e-32,-0.048029788,-0.0598651,0.0074956585,0.019191112,-0.03241638,-0.010405328,-0.054234993,-0.029913459,0.013922245,-0.021009142,-0.06952006,0.06379811,0.021734806,-0.0037493003,0.057371754,-0.029928215,0.043068133,0.0030453883,0.045054402,0.030703392,-0.055283148,-0.03632444,0.0062360587,0.010196565,-0.012495206,0.026179269,-0.014318951,-0.059909895,-0.018292636,0.05385889,-0.0016897534,-0.050398387,0.02692729,-0.022486793,-0.09011279,-0.011503602,0.019282993,0.0547105,-0.07644296,-0.03048487,-0.0393732,0.06119304,-0.024231892,0.03856135,0.026475053,0.027906781,0.06717948,0.023531012,0.017623799,-0.010245426,-0.097305894,-0.04383526,-0.039930474,-0.045509562,-0.016288316,0.009276812,-0.014616683,0.0151243545,-0.012670048,-0.08196575,-0.03229045,0.0033323334,0.03502673,-0.007484682,0.011340104,0.061159544,0.03183594,0.03182676,0.12967514,0.08143262,-0.011129198,-0.015105219,0.03256252,0.053426906,0.03625261,0.0067335535,0.0042865933,0.02678703,0.002104902,0.05249397,-0.016684482,-0.012951265,0.056003463,0.03585479,0.08104018,0.056917813,0.07770541,0.025993418,-0.023906335,0.12551288,-0.01679825,0.072668836,0.057301834,-0.053802088,0.09564338,-1.3752993e-32,-0.041574374,0.026718583,0.050587058,0.0013779239,-0.036132067,0.030343197,0.07904354,0.048612736,-0.0027372811,-0.028978068,-0.0978868,-0.07539969,0.07717386,-0.035895362,0.002202497,0.03556075,-0.046808332,-0.11084688,0.010812079,-0.010435418,-0.042662382,0.035361566,0.04699211,0.018798277,-0.02390047,-0.11184174,-0.039402507,-0.022216378,-0.051689856,-0.024516756,0.03668939,-0.021492084,0.06536856,0.06254154,-0.025170961,0.0033892258,-0.014989926,0.024688814,0.028744059,0.07036423,-0.07887269,-0.005683683,0.019038266,-0.010799041,0.07653722,0.016433312,0.022438344,-0.14899518,-0.020582477,-0.11269547,0.07034468,-0.08994997,-0.08445844,0.00034078688,0.030299433,-0.0046804375,0.051356383,-0.04223384,-0.04308652,-0.04069381,0.04977304,0.04429159,-0.056248024,0.033623625,0.055879764,0.040826872,0.03533253,-0.03038244,-0.014622687,0.002230197,0.059381012,-0.043765783,-0.049409606,0.035208356,-0.007557364,-0.006348193,0.010335863,0.06741158,0.06920638,0.043212347,-0.031059857,-0.007117048,0.014503687,-0.09234203,-0.010203862,-0.03608985,0.042254537,0.0026823871,-0.030011244,0.06718571,0.024935797,0.037481993,-0.055190865,-0.06665965,-0.028812235,-5.4290652e-08,0.022643723,-0.06001593,0.0017465019,0.062345754,-0.024768896,-0.002055017,-0.0567108,0.057469916,0.064204596,0.08971872,0.018305086,-0.041863613,-0.007947778,-0.03731333,-0.023125479,0.005715594,0.051541556,0.08100178,-0.017513828,-0.0315102,0.08198386,0.0629301,-0.0125343,-0.015260338,0.020387433,0.016041672,-0.087246515,-0.010309988,-0.011902502,-0.027701207,-0.038536426,0.0024745506,-0.032064896,-0.09224132,-0.06251556,-0.046043795,-0.04539287,-0.02147561,-0.0020568864,0.0017449013,0.106055975,-0.05848198,-0.10104079,-0.02843108,0.020290134,-0.050303422,-0.102282576,-0.06018508,-0.08237512,0.007949376,-0.00865594,0.004783471,0.11536124,0.0016162032,0.035476904,-0.049247015,0.0023660876,0.0131608425,-0.0254528,0.039373484,0.1076182,0.008826421,-0.06319188,-0.039311655} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:08:01.285808+00 2026-01-25 01:27:51.418239+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 447 google Ci9DQUlRQUNvZENodHljRjlvT2tGdWJGWlZWMVo1U1RJeVZGaEpSV3N6VVVScU1rRRAB 1 t 450 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Siempre alquilamos el coche aquí cuando venimos a la isla. Además de que la relación calidad-precio es buena, el servicio de Kevin es espectacular y siempre te hace sentir súper bienvenida, es un gusto volver a contar con él cada vez que venimos! siempre alquilamos el coche aquí cuando venimos a la isla. además de que la relación calidad-precio es buena, el servicio de kevin es espectacular y siempre te hace sentir súper bienvenida, es un gusto volver a contar con él cada vez que venimos! 5 2025-06-29 01:27:48.34198+00 es v5.1 R1.01 {P1.02,A1.03} V+ I2 CR-N {} {"R1.01": "Siempre alquilamos el coche aquí cuando venimos a la isla. Además de que la relación calidad-precio "} {0.10715153,0.08686129,0.025248954,-0.10935354,-0.10634389,-0.009524888,0.051707294,-0.029293342,0.043640688,0.042872153,0.047030173,-0.042278577,-0.0013244017,-0.059024986,0.07344792,-0.025039269,-0.0008277376,-0.00940766,0.003915352,-0.022500928,0.081923775,-0.06709156,-0.069624804,0.077325344,-0.07044011,-0.0023303851,0.010478201,0.055681426,-0.04083556,-0.08749285,-0.045987133,0.0021192906,0.057710025,0.03566123,-0.028140958,0.09468868,-0.038005527,-0.07945712,-0.055539723,0.03914237,-0.0505468,-0.07217973,-0.013201132,-0.024716202,-0.052349042,-0.05080646,0.0103926305,0.024360977,0.08176873,-0.040274803,-0.049986355,-0.03996893,-0.010433871,-0.065039,0.05044954,0.048463043,-0.010165833,0.010599604,0.0783631,0.031827845,0.059329983,0.04846689,-0.01701422,0.045953173,0.026834367,-0.07581655,0.05352002,0.015007537,-0.05051743,0.022231402,0.086864,-0.070300676,0.071458824,0.03381061,-0.044259287,0.029073825,0.00862524,0.0070977495,0.008866818,-0.034531675,0.041251916,0.049047653,-0.069119684,-0.034382373,-0.014284015,-0.006878423,0.0018423279,-0.037349503,0.12501712,-0.060986437,-0.021534579,0.059354246,-0.021622092,-0.046018414,-0.025257513,0.01728706,0.005376993,-0.113318294,-0.07781395,0.019907782,0.11198364,0.06686125,0.05468511,0.045835257,0.013563899,0.007933989,0.027199678,0.00030096745,0.071450986,0.068678334,-0.078469895,-0.05108017,0.01853122,0.0287307,-0.015221546,0.037171517,-0.03690261,-0.03219149,0.044785056,-0.10555614,0.021097636,-0.0033522884,-0.03544482,-0.0145426495,0.052548036,-0.01323673,0.051676124,9.37579e-33,-0.015142985,0.009215776,0.044428874,0.06971662,0.0019410263,-0.055075094,-0.0636548,0.011310278,-0.10280805,-0.0018658242,-0.040995624,0.0024323866,-0.0056016073,0.08747967,0.042764466,0.035068847,-0.016812067,-0.052877128,0.052911855,0.04101234,-0.060417324,-0.07262356,0.015787961,0.026148586,-0.031020455,-0.0050597307,-0.035037644,-0.012067461,-0.0027750046,0.05463817,-0.031663094,0.061923467,-0.02256933,-0.064977534,-0.09983142,-0.04030705,-0.009321533,0.040321324,-0.018195426,0.009937147,-0.016800629,0.0396295,0.035846647,-0.0054777605,-0.01017906,-0.021472119,0.021612534,0.043162744,0.11703116,0.04541028,-0.030721538,-0.11404414,-0.07842714,-0.059643034,-0.019268742,0.063960955,-0.055525612,0.033452056,-0.02552839,-0.06280996,0.011241289,-0.03218189,0.050353613,-0.0010749431,0.0016040117,-0.0153188715,0.04662308,0.040296096,0.10841009,-0.014850302,-0.05633217,0.018333996,-0.05694098,-0.02609283,0.015759196,-0.0028682149,-0.023740461,-0.00013332294,0.07301856,0.076834686,-0.058582824,0.039796006,0.049312003,0.008995281,0.10220828,0.021480234,0.017509645,-0.00027528856,0.053971298,0.12960519,0.0019873576,0.033787683,0.018331327,-0.037621904,0.0015023492,-1.0574366e-32,-0.01628373,0.028569682,0.019117532,0.011371986,0.017936476,0.014901129,0.041794967,-0.019694222,-0.07578194,-0.06854892,-0.06351425,-0.08127301,0.10972545,-0.038600363,-0.039245762,0.0505628,-0.015043333,-0.059528396,-0.023085931,0.005357256,0.0051460196,-0.030603917,0.056677744,0.054970834,0.0020069082,-0.07766067,0.024351066,0.027872104,-0.15649481,-0.10849487,0.07745392,-0.020332223,-0.027211327,0.042336866,-0.020673363,0.0020591703,0.018877836,0.011452381,-0.018847052,0.07225949,0.04552235,0.04932823,-0.021973511,-0.006439543,-0.06546646,0.017760208,0.100616075,-0.13614695,0.018543893,-0.046651423,0.0769389,-0.046247393,-0.100371465,-0.017408786,0.029883342,0.016587943,-0.018713782,0.03919351,-0.04752568,-0.02431464,-0.0037091936,-0.010798746,0.0023416798,-0.036771,0.096320204,0.024797603,-0.06064731,0.0773806,0.037824064,0.022729244,0.088561416,-0.07276406,-0.15708373,-0.036304172,-0.016188882,-0.05153051,-0.026445573,-0.005601785,-0.019225717,-0.0020975198,-0.0305001,0.02782786,-0.029797498,-0.021892129,-0.0014011771,0.017232887,0.019616602,0.016213562,0.007625734,0.09656094,-0.03898371,0.009822963,-0.07477223,-0.08929352,0.004085892,-4.849319e-08,0.0067322375,0.039763294,-0.027540544,0.018529927,0.020933323,-0.015406607,-0.007702897,0.020275097,-0.009388959,0.07810821,-0.024994142,0.05146444,-0.076297514,0.0027748193,-0.012524975,0.06262087,0.07050387,0.054567676,-0.04631427,-0.07079503,0.033459805,-0.00059756706,-0.052474108,-0.027150478,0.03345513,0.015001142,-0.054140106,-0.012738187,0.04031815,0.015553071,-0.03359574,-0.024569908,-0.09763856,-0.094004944,0.015113559,-0.043103848,-0.04461751,0.008727737,0.037249368,-0.041509252,0.036266208,-0.0007194533,-0.07979162,0.009876012,-0.11143925,-0.0036644174,-0.010460996,0.06055126,-0.04153764,-0.0010660304,-0.07440949,-0.05414459,0.04056172,0.018818846,0.055535495,-0.11580167,0.022018505,0.02862317,0.017999968,0.02254904,0.09128839,0.06465143,0.02615456,-0.116205186} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:40:41.683378+00 2026-01-25 01:27:51.423251+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 450 google ChdDSUhNMG9nS0VJQ0FnSUMzMXZ2aXJ3RRAB 1 t 453 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en los bajos del coche,que por supuesto yo no ocasione...No contestan reclamacion, me siento engañado y espero que no le suceda a otra persona.Reserva CR1681909GC.Fiat 500 Matricula: 0391 MSP. la semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en los bajos del coche,que por supuesto yo no ocasione...no contestan reclamacion, me siento engañado y espero que no le suceda a otra persona.reserva cr1681909gc.fiat 500 matricula: 0391 msp. 1 2025-01-25 01:27:48.341986+00 es v5.1 J1.02 {A1.02} V- I2 CR-N {} {"J1.02": "La semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en lo"} {0.025193507,0.05097114,-0.02074445,-0.053063035,-0.07847383,-0.018440096,0.0074885422,0.08430812,-0.07201333,-0.074003,0.07688008,-0.029603906,-0.0009331015,-0.028535878,-0.016545994,-0.046408378,0.012018431,0.0049713636,-0.0027873619,0.07693265,0.08212224,-0.10309052,-0.12564296,0.07893441,-0.07861933,0.003517878,0.04228524,0.03479916,-0.07568891,-0.04868752,-0.019370556,0.07840534,0.059176255,-0.047063526,0.04064066,-0.03719856,0.063188866,-0.07365611,-0.005294903,-0.007380203,-0.09801274,-0.033643715,-0.019645872,-0.023687566,0.09657155,-0.022369513,0.06984817,0.07392378,0.04534894,-0.067237474,-0.0577184,0.058712788,0.0032251982,0.02181517,-0.022043416,0.010574712,-0.014439185,-0.0019827383,0.06669819,-0.01022396,0.046561405,0.07381238,0.023382317,0.0508314,0.044842165,0.03916121,-0.0021261089,-0.0794486,-0.09274432,0.07517504,0.08913978,-0.10895419,0.03037823,0.0423464,-0.026709294,0.050756093,0.004929995,-0.057957552,0.036183324,0.022658374,-0.0054871654,0.008800183,-0.013493408,-0.093915835,-0.013610599,0.020314453,0.024766134,0.04434035,0.09053356,-0.011826962,0.026788192,0.07509001,-0.07675627,-0.011311388,-0.049499005,0.014412528,0.022482174,0.014342518,0.01974154,-0.003977742,0.0529782,0.014148977,0.025992347,0.058397498,-0.038406115,0.0991751,0.086232,-0.008274836,-0.0027658294,0.036980797,-0.046469677,-0.015986824,-0.047707055,-0.055875342,-0.04142008,0.019025061,-0.071854435,-0.017443476,-0.016659338,-0.01291484,0.08702494,-0.0400914,-0.09627306,-0.03947206,-0.0046876585,-0.08495473,0.010145635,1.6487878e-32,-0.0728764,0.014701594,0.033852343,0.048894864,-0.004254001,0.012128252,-0.027253866,0.014781495,-0.016003015,0.014283262,-0.06070851,-0.014197052,-0.037604477,-0.016345615,0.041002184,-0.009850319,-0.0103468,-0.034461115,0.03965059,-0.019393262,-0.024671514,-0.011846905,0.039762706,-0.031117307,-0.022754714,0.101568885,0.0028189975,-0.017358558,0.041302428,0.05653442,0.025024645,0.013832082,0.02080722,-0.05569039,-0.011197384,0.010514662,-0.013531946,0.007344778,-0.088661544,-0.023148157,0.0042483527,0.036528077,-4.98536e-06,0.03777692,-0.01266274,0.029936634,0.029129917,0.017029809,0.07283876,-0.0050127488,-0.14715694,-0.0131952865,-0.09507833,-0.073008254,-0.008196245,-0.06433435,-0.06186835,-0.03432272,-0.082419276,-0.02997934,-0.04649094,0.046255685,-0.031276453,-0.043365274,-0.072419114,0.03967915,0.028748633,-0.0006169615,0.077111356,-0.0037298931,-0.048101865,-0.034760803,-0.103249386,0.07628467,-0.006342195,0.021825617,0.10809861,0.02291064,-0.035803467,-0.008171296,-0.029981343,0.0033586882,0.036434308,0.038730733,0.13485928,0.1031799,0.014832555,0.08316931,0.033289716,0.08321271,0.054793477,0.047700293,0.099316776,0.027566267,0.0013218641,-1.6925707e-32,0.00020360325,-0.046715956,0.028573355,-0.029070586,-0.08618275,0.021774843,-0.032218616,0.0041616675,0.00740983,-0.029886922,-0.02263822,-0.11213622,0.106657,0.031072903,-0.0054281405,0.08090849,0.008856598,-0.1000803,-0.08843828,-0.032224815,0.057832066,0.106272206,0.023545148,0.009780935,-0.06679965,-0.0057364623,-0.031954866,1.7185106e-06,-0.07248292,-0.026503498,0.0019891711,-0.0845175,-0.05080695,0.09996361,-0.039595444,-0.017622922,0.069462925,0.017409196,-0.024587464,0.07674889,-0.046453126,0.08205231,-0.016950788,0.014286247,-0.036493313,-0.040226247,0.03527576,-0.12066963,0.08902568,-0.022459488,0.035636522,-0.040545553,-0.04721113,-0.015470609,0.01945802,-0.029559921,0.07890027,-0.05018783,-0.05296027,-0.01300869,0.053026307,0.05197653,-0.01990044,-0.03785589,0.12469176,-0.026255105,-0.054574765,-0.041448586,0.026046786,-0.05284294,0.077945575,-0.043265123,-0.0867094,0.0060324403,-0.06617399,-0.008696864,-0.1184785,-0.0025225778,-0.008035064,0.054168,0.010770794,-0.015103558,0.0320763,0.028244236,-0.02578935,-0.045319967,-0.0046858527,-0.003832383,0.038732238,0.03434704,-0.025823275,0.017699594,-0.008895007,-0.043503676,-0.067409955,-6.622083e-08,-0.03992902,-0.011216024,0.0032013769,-0.031043094,0.02910301,0.0076301266,-0.016249187,-0.03643771,0.01687049,0.017304815,-0.017113421,-0.04845712,-0.005350183,0.023263456,-0.04722176,0.0089110425,-0.025204683,0.09961178,-0.02312774,-0.049545493,0.080500044,-0.08315268,-0.045896083,0.031966027,0.014221842,-0.037782293,-0.026717953,0.061291207,-0.0054754075,-0.013243413,-0.056617323,-0.007805136,0.04517518,-0.0819842,-0.00849259,0.024864847,0.008253757,0.120401084,-0.04997036,-0.04715738,0.08845264,-0.048731674,-0.037459444,0.0033251643,-0.024045935,-0.07351565,-0.035844464,-0.07324087,0.03506593,-0.0073786196,0.037806068,-0.06718272,0.042877067,0.062071033,0.018747907,-0.11724669,-0.022072988,0.05964881,-0.056930877,0.004521184,0.058362924,0.059159998,0.013586993,-0.054447323} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:07:31.642403+00 2026-01-25 01:27:51.434976+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 451 google ChdDSUhNMG9nS0VJQ0FnTURJOUxxSHlnRRAB 1 t 454 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tuve una experiencia excelente alquilando un coche con Click Rent en Gran Canaria. El proceso fue rápido y sencillo, y todo estuvo perfectamente organizado. Juan Manuel y Amelia fueron muy amables, profesionales y atentos durante todo el servicio. El coche estaba en perfectas condiciones, limpio y listo para disfrutar del viaje. Sin duda, recomendaría esta empresa a cualquiera que necesite alquilar un coche en la isla. ¡Repetiré sin duda en mi próxima visita! tuve una experiencia excelente alquilando un coche con click rent en gran canaria. el proceso fue rápido y sencillo, y todo estuvo perfectamente organizado. juan manuel y amelia fueron muy amables, profesionales y atentos durante todo el servicio. el coche estaba en perfectas condiciones, limpio y listo para disfrutar del viaje. sin duda, recomendaría esta empresa a cualquiera que necesite alquilar un coche en la isla. ¡repetiré sin duda en mi próxima visita! 5 2025-04-30 01:27:48.341988+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:27:51.438018+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1859 google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE 1 t 1862 Go Karts Mar Menor unknown Los mejores karts a los que he ido\nMuy bien de precio , cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas , te das 4 vueltas y se termina\nLos karts bien mantenidos sin ningún problema, la pista igual y sus trabajadores muy agradables los mejores karts a los que he ido muy bien de precio , cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas , te das 4 vueltas y se termina los karts bien mantenidos sin ningún problema, la pista igual y sus trabajadores muy agradables 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.04 {} V+ I3 CR-B {} {"O1.03": "Los karts bien mantenidos sin ningún problema, la pista igual", "O1.04": "Los mejores karts a los que he ido", "P1.01": "sus trabajadores muy agradables", "V1.01": "Muy bien de precio", "V4.01": "cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas"} {0.03195303,0.05112756,1.0326028e-05,-0.06847965,-0.10365588,0.013401362,0.0568581,0.037983257,-0.015027845,0.06678676,0.0247052,0.019707609,-0.05401787,0.04157489,0.0018149681,0.03488414,-0.07716631,-0.017045734,0.00041456535,-0.011596424,0.05890737,-0.043497,-0.108128734,0.08332785,-0.059681494,-0.068699375,0.04499387,-0.004043897,0.016635887,-0.07274817,-0.046311636,0.10223637,0.042299155,0.020369988,-0.029322414,-0.025933433,-0.0065383576,-0.031950008,-0.037756525,0.0062578334,-0.06172816,-0.049043257,-0.040899172,0.026073607,-0.025184123,-0.10286382,-0.007907737,0.042831607,0.022115445,-0.007718095,-0.08312335,-0.052037515,-0.008883513,-0.05886626,0.0075697047,-0.04575293,-0.086820856,0.0955262,0.09415427,0.05034963,0.030512901,0.049930528,-0.06015608,0.017799277,-0.023939162,-0.040512346,0.057557702,-0.012616986,-0.07432099,0.0865165,0.10636951,-0.056162704,-0.033028957,0.0005294953,0.034859058,0.0567477,0.011397461,-0.035717256,-0.073582835,-0.07431707,0.023337102,-0.011314884,-0.049983244,-0.06359032,0.028275719,0.008360657,-0.059861936,0.00034031243,0.058442276,-0.003842159,-0.011429947,0.045055732,-0.017138164,-0.055270363,-0.03440787,0.041891802,0.048646025,-0.034603134,0.037662614,0.016913924,0.16030225,0.032719553,0.026772005,0.012249346,-0.08901473,0.083528,0.09099263,-0.061053485,0.013440804,0.016719034,-0.06161406,0.027212335,-0.060418416,-0.034936853,-0.13054362,0.015728626,-0.027280029,0.03875178,-0.010217538,-0.059859168,-0.000119381235,-0.019814434,-0.0071109994,0.0125523,-0.029697234,-0.0880539,-0.0035738002,1.18518314e-32,-0.07685846,0.036775358,-0.03325354,0.08278988,-0.02847536,-0.059680864,-0.05675404,-0.105754614,-0.093030505,-0.01179248,-0.020789392,0.07169012,0.017575905,-0.008619542,0.08973022,0.048396543,-0.036028206,-0.062285256,0.023857,0.045207992,-0.022049159,-0.0209659,0.004198454,-0.012189626,0.055133,0.070839435,0.014968785,-0.05907475,-0.09286015,0.06439303,-0.08542087,0.08455336,-0.002875294,0.007896576,-0.08024339,-0.025416285,0.031380292,0.00044024482,-0.08346559,0.015429719,-0.011488119,0.0075194803,-0.054128964,0.01329344,-0.05054382,-0.03042773,0.029624404,0.04701483,0.04609841,0.015737034,-0.081082076,-0.061163086,-0.0318159,-0.091014385,0.029154792,0.011656797,-0.045077447,0.0111915,0.0078050867,-0.0074516474,0.047351606,-0.04569626,-0.020527877,0.0026955334,-0.018702023,-0.051912043,-0.002822586,0.0068526533,0.091364,0.0453393,-0.066707745,-0.056219447,-0.032064114,-0.032070734,0.07312067,-0.010217489,-0.007854847,0.073175706,-0.036692083,0.09888525,-0.038450602,-0.0047760555,0.013349059,0.025798315,0.08367446,0.052336656,0.09786017,0.04540433,0.012467073,0.12883785,-0.03547652,0.058201484,0.070949465,0.005103139,0.037804116,-1.3837944e-32,-0.04741493,0.07452993,0.06313644,0.025778236,0.0022514542,-0.009867797,0.07388493,-0.04119343,-0.01894851,-0.05145387,-0.03023147,-0.098301865,0.016968856,-0.0129439365,0.02204915,0.038572475,0.04485145,-0.08174651,-0.025970437,-0.00014496509,0.023454977,0.028836332,-0.010997575,0.009405057,-0.013258306,-0.07099953,-0.026603736,0.04212572,-0.101933464,0.009066964,0.053802293,-0.069061026,0.0045128814,0.059879806,-0.05826133,0.050704047,0.04053467,0.09068082,-0.01758893,0.07853512,0.030680932,0.059397694,-0.0134968,-0.044893682,-0.06621423,-0.008054569,0.06667152,-0.09759609,-0.03740851,-0.061848994,0.0891744,-0.005928393,-0.063757725,-0.059685703,0.05887022,-0.004047842,-0.023905737,-0.05130016,-0.016180152,-0.016529826,0.029636823,-0.03587606,0.017599551,-0.052216858,0.059997797,-0.02163393,0.008918832,-0.019979479,0.031169934,0.015516978,0.021239195,-0.0021286563,-0.08354613,0.046615474,-0.015403098,-0.03542931,-0.1555235,0.02388492,0.012490348,-0.0122154895,0.012256178,-0.07449923,-0.028362839,0.0042205337,0.012541629,-0.020861387,-0.013714077,0.069005616,0.07222708,-0.012058921,0.09126379,0.06969852,-0.025833314,-0.046536125,-0.036705453,-4.822835e-08,0.016538037,-0.049797818,-0.07292265,-0.00455952,-0.014075088,-0.0065483125,-0.052248094,-0.00779905,0.022718133,0.09312305,0.0021750045,-0.047336195,0.043640137,-0.022762751,-0.0034285241,0.059123952,0.033518437,0.07714322,-0.006450146,-0.030047787,0.0017090258,0.03414141,-0.059718706,0.006078039,0.0036666298,0.013505721,-0.05847465,0.01764852,0.010461742,0.026058242,-0.06503535,0.026330683,-0.06105659,-0.0877274,-0.014594014,-0.059283827,0.054371666,0.023300791,0.037474036,-0.011160885,0.08195712,0.061274335,-0.118276015,0.061240897,-0.056118857,-0.061761536,-0.039251406,-0.020007761,-0.04904095,-0.019701533,-0.04136672,-0.027361631,0.039703567,0.052231383,0.10208562,-0.03820127,0.036939405,0.03986062,-0.0073032384,-0.06586494,-0.009285105,0.102918364,0.01744872,-0.09605709} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:38.730191+00 2026-01-30 02:01:10.981121+00 22c747a6-b913-4ae4-82bc-14b4195008b6 441 google ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE 1 t 444 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza interior y exterior... pero destacar del personal especialmente Carlos muy profesional atento, amable siempre aconsejando el vehículo a mis necesidades ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza interior y exterior... pero destacar del personal especialmente carlos muy profesional atento, amable siempre aconsejando el vehículo a mis necesidades 5 2025-01-25 01:27:48.341961+00 es v5.1 E1.01 {} V+ I2 CR-N {Carlos} {"A1.01": "pero destacar del personal especialmente Carlos muy profesional atento, amable siempre aconsejando e", "E1.01": "Ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza"} {0.027873076,0.07291825,0.031720933,-0.015242071,-0.04631079,-0.062717915,0.0736185,0.046274476,-0.058829684,-0.0038822608,0.017445887,0.025971832,0.026576223,0.024031699,0.107300654,-0.051737633,0.033368055,-0.0143260425,-0.028373174,0.10139294,0.0638437,-0.028929286,-0.055750813,0.03265085,-0.13005291,-0.026750665,0.0013802894,0.032539923,-0.014962083,-0.08199683,0.008069804,0.051326923,0.06696417,0.01619722,0.02607835,0.0016017967,0.050875105,-0.0082482975,-0.042373855,0.037599664,-0.11689286,-0.041265376,-0.027142318,-0.04574235,-0.017476765,-0.10571603,0.03432048,-0.046468448,0.06750473,-0.037418656,-0.10785733,-0.010176872,0.030669218,0.018193165,-0.052709345,-0.0256864,0.04842594,-0.0034641905,-0.013946253,0.014463916,0.11386008,0.052369002,0.020876588,0.018574819,0.07418005,-0.09280484,-0.03268066,0.00040748942,-0.06284761,0.029645523,0.10245409,-0.1308863,-0.015459681,0.027908359,-0.024605941,-0.004441114,-0.048552003,-0.016393103,-0.06747628,-0.053196806,0.011087252,0.004334299,-0.04601691,0.017507808,-0.03582231,0.03881802,-0.03591489,0.0021813812,0.012043872,0.032879524,0.05335789,0.018647965,-0.05004005,0.017883511,0.0028662342,0.006519811,-0.03012667,-0.06501963,-0.020641455,0.029269505,0.007444745,0.014924705,0.12224623,0.08660475,-0.009547413,0.015552542,-0.001973891,-0.0132940905,-0.067757115,0.017391596,-0.025849573,-0.045106906,-0.05633543,0.01406402,-0.09409686,-0.015251941,-0.02710076,-0.019627195,0.009124805,-0.03536119,0.046153534,0.0515097,-0.035213962,-0.0318643,-0.011153538,-0.08113086,0.016663888,1.3547806e-32,-0.037753373,0.007975365,-0.00333852,0.07242927,-0.0075836265,-0.008857567,-0.0075102155,-0.010471701,0.041043267,0.025144385,-0.00024390667,0.045470756,0.05873788,0.040110666,0.057793327,0.08553984,-0.028008318,-0.0127172945,0.0039666127,0.026535735,-0.010578889,0.021179589,0.0032136496,-0.027603483,-0.004591235,0.015180498,0.015031978,-0.034668207,-0.07549375,0.040926058,0.018691108,0.010465877,0.00935514,-0.038029525,0.07118032,0.00014347662,0.008128062,0.033030424,-0.064413324,-0.064421885,-0.011871241,0.0032782916,0.030059457,0.056385953,-0.016437786,0.055671062,0.09894787,0.07476302,0.057197914,-0.033054616,-0.0154088475,-0.028822692,-0.036477752,-0.04041471,-0.034615137,0.030905357,0.025528656,0.011322435,-0.031610254,-0.060779214,0.015747316,-0.04090736,0.015469331,-0.009560173,-0.03855174,-0.07520388,0.027386513,0.058649797,0.095873445,-0.027125828,-0.100355625,-0.0075361184,-0.0073233736,0.06898624,-0.013727315,-0.00976422,-0.023802105,-0.02171552,0.031296354,-0.0012776364,-0.022827787,0.099739105,0.039514843,0.012828734,0.074864775,0.11969681,0.044688363,0.026686126,-0.007865523,0.16414772,-0.06291694,0.04648743,-0.024514006,0.014819167,-0.046601567,-1.6915205e-32,-0.057840668,-0.019051505,-0.009247801,0.010462004,0.047416847,0.0004278829,-0.051048998,0.004448211,-0.063944496,-0.009603223,-0.07108469,-0.056028064,0.08301754,0.04030225,-0.058520354,0.08913882,-0.08336159,-0.11524924,-0.10029399,-0.010271231,0.012990315,0.07584919,0.06661013,-0.02605033,-0.08455511,-0.050011016,-0.075980745,0.04769194,-0.11543889,-0.004195614,0.079802334,-0.009877877,-0.067649856,-0.017442267,-0.035727505,0.0327485,0.009542969,0.0019807587,-0.023075523,0.06675872,0.013649053,0.02818087,0.020695504,0.006657411,0.0024042986,-0.048162855,-0.05035031,-0.1976276,-0.033688527,-0.059677698,0.05060489,-0.061478876,-0.016495587,-0.0015134766,0.06521068,-0.020165484,-0.034146283,-0.0410767,-0.072106235,0.016378108,0.10049295,0.04343232,-0.048681024,-0.001866452,0.044148255,0.0048213257,-0.04715533,-0.032993786,-0.03589494,-0.028391924,0.05679166,-0.028291926,-0.11294229,0.02590545,-0.05159253,0.010175337,-0.01715166,-0.05308737,-0.014918378,0.056895684,-0.03892868,-0.062332287,-0.033503424,-0.033790763,-0.04789721,-0.015798569,-0.032603685,-0.0015887613,-0.0177654,0.0145407235,-0.009600779,0.008043926,-0.08931651,-0.0741257,-0.048453424,-6.113813e-08,-0.004494852,-0.05353332,0.009055426,0.035180755,-0.09551326,-0.13052475,0.013556722,-0.0037298326,0.0836061,0.1303394,-0.05669385,-0.07941429,-0.01807674,0.0676205,-0.044532422,0.004081325,0.101863876,0.07530735,-0.05546465,-0.06501718,0.12092129,-0.041420963,-0.030879725,0.018438602,0.032842822,0.004645909,-0.08316336,-0.046020847,-0.030171229,0.068162456,0.007841927,0.0037052883,0.028173104,-0.08371096,-0.046027873,-0.023500562,0.004679069,-0.036966257,-0.011185142,-0.037831888,0.081825174,-0.025902783,-0.054903638,0.024577497,0.014378396,-0.06495432,-0.037348043,0.07250247,-0.04340653,0.016961185,-0.012358257,-0.06959031,0.05876531,0.032303892,0.06344328,-0.008241115,0.019820414,0.09483868,-0.03818807,-0.003616546,0.0070925164,0.060241546,-0.013135697,-0.07440907} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:08:10.506451+00 2026-01-25 01:27:51.404966+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 448 google ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB 1 t 451 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir waren etwas skeptisch wegen der vielen Meinungen, dass sehr akribisch nach Macken und Dellen gesucht wird.\nWir haben das Personal bei Abholung des Wagens auf die vielen schlechten Bewertungen angesprochen. Die Mitarbeiter vor Ort waren sehr offen transparent. Wir haben den Vertrag per Email geschickt bekommen und auf unsere Nachfrage hin auch die bereits dokumentierten Schäden an unserem Mietwagen.\nAuf uns wirkten die Mitarbeiter vor Ort fair und transparent. Natürlich müssen sie einem wahrscheinlich deren Versicherung anbieten. Wir hatten unsere eigene. Ich würde immer empfehlen eine Versicherung für einen Mietwagen zu haben- egal über welchen Anbieter abgeschlossen.\nBei der Rückgabe wurde eine 0 8 15 (normale) Rücknahme gemacht.\nDas die Vermietung kein Büro im Flughafen hat, findet man sofort heraus wenn man sich damit beschäftigt. Der Transfer hat bei uns sehr gut funktioniert - der shuttle kam an den beschriebenen Ort zur vereinbarten Zeit.\nWir sind daher sehr zufrieden mit ClickRent. wir waren etwas skeptisch wegen der vielen meinungen, dass sehr akribisch nach macken und dellen gesucht wird. wir haben das personal bei abholung des wagens auf die vielen schlechten bewertungen angesprochen. die mitarbeiter vor ort waren sehr offen transparent. wir haben den vertrag per email geschickt bekommen und auf unsere nachfrage hin auch die bereits dokumentierten schäden an unserem mietwagen. auf uns wirkten die mitarbeiter vor ort fair und transparent. natürlich müssen sie einem wahrscheinlich deren versicherung anbieten. wir hatten unsere eigene. ich würde immer empfehlen eine versicherung für einen mietwagen zu haben- egal über welchen anbieter abgeschlossen. bei der rückgabe wurde eine 0 8 15 (normale) rücknahme gemacht. das die vermietung kein büro im flughafen hat, findet man sofort heraus wenn man sich damit beschäftigt. der transfer hat bei uns sehr gut funktioniert - der shuttle kam an den beschriebenen ort zur vereinbarten zeit. wir sind daher sehr zufrieden mit clickrent. 5 2025-01-25 01:27:48.341982+00 de v5.1 A1.02 {} V+ I2 CR-N {} {"A1.02": "Wir waren etwas skeptisch wegen der vielen Meinungen, dass sehr akribisch nach Macken und Dellen ges", "J1.02": "Bei der Rückgabe wurde eine 0 8 15 (normale) Rücknahme gemacht. Das die Vermietung kein Büro im Flug", "P1.02": "Natürlich müssen sie einem wahrscheinlich deren Versicherung anbieten. Ich würde immer empfehlen ein", "R1.01": "Wir sind daher sehr zufrieden mit ClickRent."} {-0.0964623,-0.015231878,-0.044727948,0.009808524,0.010121506,-0.019084182,0.04308216,0.03721679,0.00016231311,0.008070812,0.06644679,-0.06040355,0.003575297,-0.015788767,-0.009426795,-0.0023423291,0.06816979,-0.011817416,-0.086605996,-0.003449945,-0.029582905,-0.09375533,0.00081193575,0.018160392,-0.023205172,-0.006164325,0.07207234,-0.046848934,0.010978814,-0.038823366,0.14754722,-0.011654288,0.05839981,-0.063282326,0.036344938,-0.008379387,0.032379337,-0.032695092,-0.054841332,0.08619471,-0.031638753,-0.021934448,-0.15143852,-0.04297575,-0.08205861,-0.04181169,0.06707828,0.013097375,-0.062910855,-0.019098366,0.045675505,-0.044071257,-0.0021872132,-0.056245405,-0.035204507,-0.07840465,-0.104528785,0.014457698,0.023956038,0.03711506,-0.07436293,-0.06325832,-0.032505125,0.029178992,-0.052130714,0.055516463,-0.024383377,-0.060197383,0.00894618,-0.059966315,0.0021653643,-0.096971504,-0.05365222,0.017377006,-0.06630427,-0.0022605304,0.04762271,0.0029598942,-0.079027094,-0.033752896,0.04980801,-0.08133549,0.01788395,-0.0094075315,0.07653911,-0.04802617,-0.0011719348,0.10379431,0.014084707,0.047828153,-0.046749797,0.07547343,-0.127594,-0.04188654,0.064131595,0.011222145,-0.015851038,-0.0031291994,0.0859799,0.057169665,0.08047522,-0.012325016,0.0041016433,0.028903838,-0.0069417404,-0.020475967,0.02364719,-0.0042652725,0.06288333,0.056945253,-0.016220732,-0.057213385,-0.010224835,-0.04324967,0.07545655,-0.013356578,0.036034282,0.039880317,0.05240219,0.038832173,0.033035524,-0.0013383452,0.031980652,-0.02480209,0.083377965,-0.01504327,0.06000557,1.8421855e-32,-0.059373535,-0.08312058,-0.013555525,-0.033244994,0.041161835,0.09060261,-0.0042048967,0.060929794,0.059791148,0.0064266818,-0.022249296,0.022536175,-0.07723491,-0.026041223,0.098154984,-0.01151179,-0.021134095,-0.058288522,-0.043545716,-0.043419678,-0.009583401,-0.036436524,-0.0388153,0.0024238832,-0.0077786976,-0.00023764971,0.041240092,-0.099916086,0.015699092,0.024464661,0.048561774,-0.05146403,-0.037450228,0.05815684,-0.068470076,0.039721392,0.016872158,0.03716277,0.035617318,-0.047506157,-0.075598404,-0.008101264,0.010520483,0.008629673,0.059281576,0.0037402003,0.013054855,-0.008424863,0.012367967,0.024094734,0.04676015,0.00052008306,0.038425308,-0.047364805,-0.0024463676,0.059381828,-0.07714842,0.021798743,0.010089922,-0.056473974,0.004064533,0.043436147,-0.002313403,-0.12092203,0.03198922,-0.002038026,-0.042567577,-0.09511392,0.0065050307,-0.009704791,-0.030972807,0.08155931,0.06845734,0.041669987,0.023780122,0.05267868,0.020803792,0.061179843,-0.10559509,0.053340804,0.038727835,0.044509232,0.021816975,-0.056474626,-0.037490282,0.0033298726,0.055239838,-0.03595609,-0.03972575,0.07634804,0.13618442,-0.018243415,-0.07596215,0.039520584,0.008247231,-1.7663163e-32,0.014082503,0.04942549,-0.064889126,0.016994797,0.051045824,0.016266072,0.066775955,0.052561432,-0.06281467,-0.0686967,-0.057847086,-0.0043765367,0.0043655112,0.04697747,-0.046405118,0.01684142,0.038644727,0.10673738,-0.06595138,-0.060362272,-0.01048429,0.046557553,-0.00015519411,0.03615775,0.024438877,-0.00698114,0.01457047,0.041019525,-0.053881805,0.02777777,-0.001439359,0.059671912,0.09708,-0.11132199,-0.025872543,-0.0492771,-0.013395106,0.043809086,-0.0084049,0.020654272,0.07091637,0.02573315,-0.043509685,-0.08514514,0.02910501,0.0076598492,-0.00599972,-0.11326065,-0.06510304,-0.09761013,0.064937025,0.00016799486,0.024315968,0.051502112,0.07116393,0.019304074,-0.045082927,-0.12244847,-0.0014111849,0.019386094,0.08039549,0.09630206,0.0059815524,0.02914989,0.08693063,-0.032965448,0.008710232,-0.03280277,0.0044857296,0.034975667,-0.02909409,-0.0783435,-0.039498307,-0.032908786,0.08544554,0.006090453,-0.0032564003,0.003066458,-0.05344551,0.009110805,-0.08124539,0.0035823442,-0.02335456,-0.1079761,0.0050885477,-0.01890098,0.032575555,-0.0007887341,-0.052333493,0.031251892,0.0751036,0.068736605,0.038359847,0.031339098,-0.008423407,-6.652512e-08,0.012726934,-0.098483585,-0.03309069,0.0050930893,0.020802837,-0.079990506,0.0378795,-0.057849094,-0.05388361,0.07065941,-0.014611493,-0.12863249,-0.060243785,0.055724863,0.013544339,0.04758957,0.06117983,-0.027774457,-0.027456133,-0.044294097,0.076173626,-0.011284455,-0.09201697,-0.06273396,0.02955157,0.09607181,-0.067765385,0.0069233626,0.04034446,0.024592537,-0.021312306,0.07644073,0.012439927,-0.045595933,-0.120006576,-0.043565527,0.013661235,-0.028730193,-0.032629263,0.038761906,0.04978758,0.0004230561,0.03064316,-0.02120012,0.01786203,-0.031335514,0.023176773,-0.090987764,-0.017705252,0.039934512,-0.015362934,-0.034892175,0.04343901,0.01602361,-0.004846643,-0.04700032,0.042527094,0.03530008,-0.06115264,-0.024208916,0.0055143954,0.048747655,-0.11621599,0.041894466} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:07:47.559435+00 2026-01-25 01:27:51.42681+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 456 google ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE 1 t 459 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coches, el trato de los empleados no puede ser mejor.\n\nMe atendieron Amelia y Kevin y la verdad que fueron súper simpáticos y cercanos conmigo. El nivel de inglés de Amelia es buenísimo para poder hablar con ella, además es muy amable y el trayecto al aeropuerto con Kevin fue genial, me sentí muy segura.\n\nSin duda lo recomiendo. ¡Muchas gracias! acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coches, el trato de los empleados no puede ser mejor. me atendieron amelia y kevin y la verdad que fueron súper simpáticos y cercanos conmigo. el nivel de inglés de amelia es buenísimo para poder hablar con ella, además es muy amable y el trayecto al aeropuerto con kevin fue genial, me sentí muy segura. sin duda lo recomiendo. ¡muchas gracias! 5 2025-04-30 01:27:48.342041+00 es v5.1 O1.01 {} V+ I3 CR-N {} {"A1.01": "Me atendieron Amelia y Kevin y la verdad que fueron súper simpáticos y cercanos conmigo. El nivel de", "O1.01": "Acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coche"} {0.065899305,0.0141524095,0.048767738,-0.10215348,-0.042689554,0.019393165,0.07553101,-0.030553704,0.042616565,0.024806257,0.10833255,-0.044451367,-0.04317794,-0.107383296,-0.003936551,0.067535125,0.0053397757,0.022831446,-0.085250236,0.017044533,0.036433656,-0.011051634,-0.022418154,0.14205553,-0.09547742,0.08235465,0.024330506,0.029389778,-0.06781492,-0.099617966,-0.022619251,0.029271485,0.07458209,0.0044119526,-0.003527509,0.031104088,0.0014396973,-0.06340668,-0.02613072,0.0050223228,-0.115020186,-0.06374271,-0.019099342,-0.04157478,-0.10491194,-0.09024908,0.02117743,0.058324218,0.10559255,-0.003993144,-0.012398481,-0.06939055,-0.005823582,-0.0684766,0.024159519,0.035391703,-0.07785907,-0.02785238,0.09597258,0.01872507,-0.016927872,0.04957235,0.035211317,0.05598387,-0.0041248216,-0.12683219,-0.019575788,-0.028952122,-0.066114046,0.010782584,0.06706813,-0.038177866,0.05018598,0.029588992,-0.037734456,0.07805524,-0.007878371,-0.0012417646,0.0069114575,-0.0066926465,0.014157162,0.01126392,0.021646244,-0.066742964,-0.0023896652,-0.01413066,-0.037059117,-0.018441005,-0.028179914,-0.01504672,-0.011213141,0.0022433281,0.019033981,-0.013836914,-0.00040369766,0.0021224415,0.006353466,-0.03251706,-0.02461317,0.005896003,0.05609756,0.10786399,0.07866036,0.036184214,-0.08411017,-0.05211805,0.030032447,-0.06579289,0.05732373,-0.04319103,-0.12196329,-0.04175606,-0.0152745405,-0.011614796,-0.022428248,-0.014630308,0.047698803,-0.04348191,-0.0351231,-0.089318715,0.005497831,-0.041240755,-0.043220572,0.039265312,0.04619736,-0.060367346,0.06240266,1.5745798e-32,0.0005559409,0.012190069,0.029306823,0.08011252,0.044677068,-0.021510495,-0.088258296,-0.01713951,-0.059208024,-0.022490764,-0.13909057,0.017619323,-0.01671641,-0.02711562,0.078270964,0.08868816,-0.057484724,-0.0073013618,0.00558736,0.041829906,-0.014769121,-0.0129912235,-0.022990707,0.0016724311,-0.06321541,0.027283274,0.0004279299,-0.06842727,-0.037583012,0.061863936,-0.037204087,0.034964904,0.011341572,-0.016069388,-0.07653058,-0.047731344,0.0019962257,0.033182196,-0.066639096,0.018727854,-0.039419286,8.993994e-05,-0.022122623,0.014067213,-0.03739782,0.016813539,0.096880294,0.016638596,0.13012548,0.03222326,0.012773616,-0.0649955,-0.010658281,-0.045505263,0.06979976,0.06296341,-0.04871524,0.03593425,0.012373666,-0.04049401,0.059412677,0.020958051,0.08135697,-0.04187963,-0.008852793,-0.021775734,0.05520159,-0.01577338,0.13652796,0.040505677,-0.051908825,0.01766474,-0.03270308,-0.013961319,0.055987258,0.020598087,0.009218998,-0.05931625,0.065683834,0.042993143,-0.036440235,-0.0029918677,0.051914867,-0.006113952,0.10450099,-0.047333457,-0.017714156,0.04799651,-0.008480994,0.08941916,0.0023671454,0.08596309,0.017243562,-0.08222391,0.052030567,-1.6505672e-32,-0.00918945,0.02176536,-0.012419082,-0.07722567,-0.025389044,0.024061272,-0.027625943,0.054297786,-0.015943155,-0.12059461,-0.07892642,-0.10492961,0.07946091,-0.044411063,-0.017005136,0.10214261,-0.029510463,-0.05236957,-0.05505993,-0.06703231,0.00039125103,-0.020011269,0.04416241,-0.051742297,-0.036476295,-0.004486574,0.076035276,0.06995912,-0.039629176,-0.019028978,0.045523655,0.031630434,0.008264397,0.042820826,-0.011963813,-0.025291983,-0.00062432454,0.020773288,-0.022179766,-0.07893296,0.011861149,0.09074418,-0.018730136,-0.02494912,-0.0023618208,-0.014473084,0.008738958,-0.15448347,0.03480169,-0.074898824,0.023956763,-0.09954748,-0.05532843,0.03413905,0.06154645,0.019030116,0.04091226,-0.042635404,-0.025403876,-0.039363682,-0.06743353,-0.03233901,-0.018182445,-0.016377345,0.07935516,0.0012261908,0.009980987,0.06471544,-0.01825841,0.047350295,0.04220237,-0.06776503,-0.10857338,0.028430635,-0.0022765063,-0.025619011,-0.0147271985,-0.00596879,-0.049041834,0.03825669,-0.040468216,0.03662217,-0.021914879,-0.03363085,-0.009589878,0.059911825,-0.026368357,0.025042785,-0.039060462,0.03977303,0.05806384,0.045797125,-0.04286282,-0.04846602,-0.02479654,-6.025548e-08,0.02583699,-0.031078242,-0.0072141504,-0.038362004,0.044122633,0.039740216,-0.06574654,0.056200378,-0.030231295,0.060316637,-0.00992653,0.04121494,-0.027002826,0.042283,0.027024,0.067026,0.027167765,0.053975135,0.004338782,-0.100925565,0.025010446,-0.0074797953,0.033833783,-0.0019154355,0.015345986,0.045342088,-0.029435914,0.00097124506,0.04338984,-0.038935184,-0.054327544,0.047210068,-0.03365763,-0.05806587,-0.08944976,-0.08421607,-0.002513179,-0.018999359,-0.10660131,-0.016785102,0.11308749,-0.027096778,-0.0530436,-0.024961943,0.02934425,-0.036964413,0.073059626,0.008688062,-0.045027424,0.04872329,-0.078776255,-0.040072925,0.052223556,0.03488709,0.031214286,-0.043543067,-0.031594552,0.026985645,0.032987874,0.008660038,0.061613042,0.11960086,-0.013331568,-0.06194132} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:44:40.995223+00 2026-01-25 01:27:51.454234+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 467 google ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE 1 t 470 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de seguros que se ofrecen el página web no se corresponden con las ofrecidas en la oficina. Sin embargo, pudimos contratar la póliza completa allí sin problema. El vehículo estaba muy nuevo y en perfectas condiciones. El personal fue muy amable y puntual, tanto Carmen que nos atendió en mostrador como Nestor y Antonio que nos recogieron y nos llevaron al aeropuerto. Nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia. la experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de seguros que se ofrecen el página web no se corresponden con las ofrecidas en la oficina. sin embargo, pudimos contratar la póliza completa allí sin problema. el vehículo estaba muy nuevo y en perfectas condiciones. el personal fue muy amable y puntual, tanto carmen que nos atendió en mostrador como nestor y antonio que nos recogieron y nos llevaron al aeropuerto. nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia. 5 2025-01-25 01:27:48.342075+00 es v5.1 J1.02 {P1.02} V± I2 CR-N {} {"A1.01": "El personal fue muy amable y puntual, tanto Carmen que nos atendió en mostrador como Nestor y Antoni", "E1.02": "Nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia.", "J1.02": "La experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de s", "O1.01": "El vehículo estaba muy nuevo y en perfectas condiciones."} {0.042040225,0.00868001,-0.007455131,-0.050748017,-0.059029542,0.052460577,0.067086205,0.014111989,-0.05509275,0.049384072,0.066308886,0.0069638947,0.023283867,-0.03057843,0.026649343,0.006059152,-0.022217168,0.006512959,-0.050791316,0.06612032,0.11145549,-0.05768173,-0.04501941,0.11480601,-0.10135936,-0.00343394,-0.081351206,0.009348037,-0.087807655,-0.0650398,0.0056057847,0.052599028,0.08779594,0.031858984,0.018800488,-0.015002179,0.009872032,-0.11864124,-0.053596616,0.032998625,-0.12711047,-0.044619553,-0.08126126,0.0112959035,-0.0796863,-0.056775346,0.020156829,0.06081431,0.021476857,-0.010670523,-0.111267105,-0.016236983,0.049724214,-0.09731515,0.023196543,-0.019880373,-0.03622336,-0.0052284966,0.056926895,-0.0048991106,0.021281952,0.011906191,-0.0073804646,0.047098745,0.0012763898,-0.06041001,0.010840554,-0.017416015,0.016828516,0.0071340944,0.06932558,-0.03606042,0.016206466,0.030543506,-0.03610067,0.029621065,-0.0006291731,-0.011236056,-0.04255792,-0.023657877,0.0485548,-0.051442407,-0.00026580185,-0.041571405,0.015938658,-0.053022742,-0.050802954,0.00024550146,0.03327592,0.0071298913,-0.0665412,0.025202129,0.021834401,-0.0039973143,0.02063829,0.038746122,0.019178027,-0.057308163,0.024516288,0.02813375,0.046632428,0.06356716,0.054732297,0.047847956,-0.073477626,-0.016247103,0.034608636,-0.023044718,0.0028919834,-0.007891179,-0.10272672,-0.039587125,-0.01956158,-0.08851809,-0.093814336,0.0025379779,0.0103790695,-0.04972525,-0.012749396,-0.0952818,0.019435223,-0.009114422,0.0032411944,-0.0029624945,0.034747843,-0.09169846,0.038503252,1.4886656e-32,0.01416165,0.0116065135,0.0100942515,0.06932392,0.027480898,0.044111464,0.00095027854,-0.027239759,-0.014799411,-0.02503701,-0.060761724,0.105610035,0.007248553,0.033115927,0.12417758,-0.02359769,-0.038847614,-0.031522296,0.058260247,-0.03954178,-0.0336985,0.00044385737,0.022379255,-0.014963782,0.04601285,0.07673622,-0.0049194517,-0.03682962,-0.0660958,0.06381944,0.029080201,-0.0074279997,-0.078038715,-0.01862876,0.0018409756,-0.0024701622,0.026637055,0.012367842,-0.04044559,-0.06284464,-0.072741844,-0.0031058334,-0.042624958,0.019955754,-0.07574946,0.034843974,-0.009205901,0.03997944,0.11253439,0.017934047,-0.033475887,-0.024242334,-0.024641804,-0.042383965,0.0032871906,0.012483357,-0.051689584,0.010304793,-0.045184217,-0.069632664,0.077174924,-0.02152771,0.029398186,-0.07700932,-0.009978216,0.018080136,0.024667922,0.009224689,0.14407596,0.025154406,-0.0702375,-0.026210103,-0.03073016,0.08701895,-0.0023426858,0.059462465,-0.0067178705,-0.06110937,-0.04995501,0.080360144,-0.022981787,-0.025428446,0.03090888,0.00081572495,0.042327628,-0.018269775,0.07321606,0.05869346,0.020697212,0.13449833,-0.07352904,0.077344015,0.08298172,0.035009325,0.01483366,-1.7867923e-32,-0.07326683,0.006251429,-0.03603885,0.045623917,-0.019715942,0.011877307,-0.006033096,0.031162735,-0.012494261,-0.0259109,-0.08452981,-0.12169311,0.07810624,-0.045303375,-0.06470082,0.1241759,-0.028319022,-0.113363795,-0.1075142,-0.018539676,0.034374274,0.048630748,0.028379457,-0.042047165,-0.04724324,-0.05548699,0.056221094,-0.013399338,-0.09190438,0.035329066,0.067542836,0.015809344,-0.0037173326,0.053110655,-0.03341654,0.02602522,0.03236946,0.048256762,0.016791979,0.010282039,0.0005242387,0.07592649,0.08110162,-0.047214206,-0.009455416,0.02387318,0.021049445,-0.15998477,-0.01599205,-0.04693522,0.06967575,-0.08416015,-0.042225048,-0.030149138,0.07048532,-0.008992623,-0.0114628365,-0.082656346,-0.10113123,-0.030675096,0.041707482,0.009785366,-0.10905789,-0.03638292,0.071150586,-0.029989315,-0.08534422,-0.018938992,-0.017011998,0.02450776,-0.016107157,-0.053043094,-0.06919404,0.04527179,-0.051843118,-0.004215427,-0.0574909,0.0930065,-0.016731543,0.01336968,-0.007998444,0.08271562,0.001493631,-0.08166201,0.022782916,0.03901941,-0.023023477,0.000101591744,-0.02703849,0.008556802,0.010476431,0.024588296,-0.087640725,-0.048254464,-0.034736834,-6.491933e-08,-0.031076977,-0.018730188,0.019140357,0.023685832,0.047020067,-0.011720742,0.055717807,0.02027775,-0.012521116,0.019683128,0.03744862,0.012810584,-0.017302904,0.042630147,0.013365401,-0.027593477,0.031737603,0.093855426,-0.020642241,-0.033456653,0.08700861,-0.06225783,-0.08426017,0.033320773,0.009988518,0.019969165,-0.102445275,-0.0592327,-0.025437877,0.023294678,-0.013218782,0.0038260436,-0.025880517,-0.1326972,-0.096803464,-0.02578616,-0.016357118,-0.020986566,-0.12329496,-0.041055895,0.055664413,0.02934408,-0.015448965,0.020453945,0.03813002,-0.06475564,-0.0076137995,0.009856887,-0.010126372,0.038734373,-0.040268503,-0.07298201,0.08655569,0.04840486,0.01923856,-0.03187106,-0.01207171,0.11741301,0.022395395,-0.004609253,0.03699275,0.060877714,-0.025782412,-0.015071353} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:07:03.136101+00 2026-01-25 01:27:51.489396+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1269 google Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB 1 t 1272 Soho Club unknown Гарне місце для тих хто хоче знайти себе! гарне місце для тих хто хоче знайти себе! 4 2025-10-01 18:34:31.336452+00 uk v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Гарне місце для тих хто хоче знайти себе!"} {0.002051387,0.0813738,-0.0054205465,-0.014744707,-0.053775936,0.0060550882,0.14173512,0.042388156,0.012406913,-0.041314308,0.008216632,0.07214716,0.060674336,0.07637364,-0.008601266,-0.06677819,0.016153747,0.009205193,-0.03474859,-0.0095917955,0.011326668,-0.024403589,0.08467411,0.05207433,-0.03538837,0.02503312,-0.038758993,-0.0030615246,0.11280185,0.059684616,-0.008472359,0.053146504,0.057308223,-0.01364073,-0.027876789,0.026294218,-0.045692876,-0.059411757,0.00593071,0.028719047,-0.08035245,-0.0138325235,-0.1039527,0.043993805,0.024812425,0.06837655,-0.035825625,-0.016179208,-0.000967974,0.041182663,-0.1219608,0.026313541,-6.6348526e-05,0.032582317,0.060710717,-0.10750357,-0.032392025,-0.059037656,-0.059612658,-0.0587319,-0.0074896365,-0.039052684,-0.054417178,0.017633134,-0.028786605,-0.0067847143,-0.04162216,0.05507881,-0.048358664,0.050429683,0.09458749,-0.03695772,-0.10180162,-0.0042744186,-0.06961829,-0.061886817,0.008336312,-0.09057824,-0.01696842,0.045093905,0.10844249,-0.0021814553,-0.05101877,0.02561334,-0.05054289,-0.051989198,0.024779785,0.05041333,-0.023673495,0.0219889,-0.055665918,0.034613572,0.023157546,0.009153015,-0.085890144,-0.02125388,-0.0067102755,-0.036592342,0.018255146,-0.025329897,-0.0280936,0.0011083881,0.08911705,0.034695394,-0.17320704,-0.014738476,-0.031687144,-0.026308896,0.041956067,0.03696261,-0.028250564,-0.061886,0.0007429165,-0.034098905,0.01881981,0.014086264,0.072938986,0.02149023,-0.078196965,-0.0015862241,0.03974252,0.013119933,-0.008626652,0.005118306,0.0013872269,0.00051109644,0.06729042,5.546151e-33,0.021560194,-0.042930607,-0.10106882,0.03412197,-0.08363182,0.022648321,-0.016651873,-0.0195108,-0.009094447,0.10400852,-0.034950357,-0.024926035,-0.005471866,-0.039106905,0.015028634,0.019986324,0.0009157489,0.0034066949,0.06242464,0.16008823,0.048842203,0.024549985,-0.020500883,0.05322789,0.015117315,0.019965975,0.015493096,-0.033826746,0.003358418,-0.036951438,0.03855008,-0.021573603,-0.056445133,-0.012149953,-0.08594122,-0.08541523,-0.04269669,0.120688476,-0.027227059,0.055494785,0.068263985,-0.07207489,-0.09373492,-0.03777232,0.07244537,0.04909152,0.0040571187,0.019124461,0.034662034,-0.009648851,-0.044694956,-0.0141781755,-0.026799392,0.10444871,0.05422282,0.035154242,0.0048720203,-0.006138384,-0.049704354,-0.030149493,-0.035388615,-0.07779456,0.020320859,0.041222796,0.0068991045,-0.08895243,-0.0132003,-0.044029508,-0.0001658175,0.06869994,-0.059118513,-0.014793069,-0.0024422535,0.060938112,-0.037134383,-0.016857157,-0.06988017,-0.013122623,0.00790419,0.08309856,-0.050697207,-0.0039030223,0.08416236,-0.024436329,0.056696907,0.02416276,0.0015832977,-0.061528184,-0.032841887,0.01611503,-0.085693225,-0.00996415,0.09229709,0.02952848,0.0077797617,-6.627061e-33,0.10179772,-0.00522369,-0.027903512,0.03724948,-0.0062380875,0.051785663,-0.089542314,0.07704876,-0.02008516,0.049447004,0.058138337,-0.03263962,0.023973113,0.08105511,-0.020453973,-0.010390506,0.07042805,0.04990567,-0.10061648,-0.037992947,-0.03711523,-0.025156548,-0.09962954,-0.020732606,-0.040748112,0.05206341,0.13570295,-0.014643924,-0.021181684,0.07677981,-0.029154709,-0.0005189186,-0.008718828,0.009642605,0.08313559,0.06922495,0.064210474,-0.013936975,-0.06579228,0.01218681,-0.0406689,0.057592295,0.0831091,0.06296758,0.004376003,-0.027846385,-0.055832718,-0.050092034,-0.006058325,-0.072099485,0.021514185,0.003125553,0.004866307,-0.08917962,0.068652414,-0.0705221,-0.0644492,-0.018743157,0.033273693,-0.01403274,0.063117765,-0.0489673,0.030824618,-0.017371502,-0.086811416,0.056495477,0.00029318934,-0.02687836,0.046069436,0.06607076,-0.028289853,-0.045001976,0.07541168,0.104348995,-0.0047529642,0.057062633,-0.07614842,0.13516372,0.1257717,0.018465616,-0.020016637,0.0028137174,-0.04793906,-0.009437841,-0.011488369,-0.057554338,-0.07446117,0.014726171,0.042662118,-0.053131703,-0.060214113,0.052265853,-0.016377712,0.046588656,0.024915928,-2.7868783e-08,0.006212156,-0.119760446,0.0153274555,-0.02756138,-0.027751328,-0.0037866188,-0.028173326,-0.04881464,-0.028206836,-0.04446531,-0.014628085,-0.0015642368,-0.08681381,0.07640498,-0.066795886,0.0075349985,0.009992846,0.03090667,0.02727265,-0.066017896,0.074164465,-0.08238858,-0.0055481596,-0.020697342,-0.046547912,0.0015053764,0.0055067064,0.020317601,-0.039748397,-0.086237244,0.028423177,0.027285933,-0.008161203,-0.015014624,0.0037352408,0.004043922,-0.0010421384,0.0717155,0.02452562,-0.004430152,0.030653615,-0.026863681,0.020541683,0.015742313,-0.015178255,-0.025618624,-0.036529228,-0.019783452,0.02508146,-0.002220345,0.004778113,0.051501475,0.025297297,-7.454844e-05,-0.018308917,0.123788476,0.06976901,-0.003986262,0.020630617,-0.017416665,-0.07430866,0.021561146,-0.025030224,-0.095133364} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:00.903109+00 2026-01-29 18:36:00.657056+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1957 google ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE 1 t 1960 Go Karts Mar Menor unknown Magnifique piste pour passer un bon moment. Différentes catégories de kart, casques ionnisés, Charlotte et masque obligatoires. Une équipe au petit soin. magnifique piste pour passer un bon moment. différentes catégories de kart, casques ionnisés, charlotte et masque obligatoires. une équipe au petit soin. 5 2022-01-31 01:52:39.833374+00 fr v5.1 O2.03 {} V+ I3 CR-N {} {"O2.03": "Magnifique piste pour passer un bon moment.", "O3.02": "Différentes catégories de kart, casques ionnisés, Charlotte et masque obligatoires.", "P3.01": "Une équipe au petit soin."} {0.008417016,0.051192615,-0.026323082,-0.011140334,-0.049413674,0.08553306,0.07405221,0.058389075,0.05168939,0.015826365,-0.02645508,-0.0473259,-0.040642023,-0.04237863,-0.0945079,-0.11804137,-0.07500032,0.07359575,-0.02882284,0.11240786,0.025797175,-0.107482776,0.024735043,0.06115186,-0.049668036,-0.017700886,-0.010328956,-0.010984202,0.0050635305,-0.14370668,0.031057857,0.06229033,-0.03177341,-0.046417054,-0.009441528,0.026091583,-0.007436665,-0.023601731,0.001758929,0.0336141,-0.0071601374,-0.021019759,-0.075737,-0.014990155,-0.004699656,0.04098903,-0.008066177,-0.0128256995,-0.077289715,0.039928317,-0.081117585,-0.014489362,-0.036041263,-0.012199507,0.019768577,-0.07254484,-0.054816417,-0.024655683,0.11182659,-0.02524003,0.010041006,0.0118029155,0.002534447,0.070386335,-0.03601474,0.015362785,0.0071053663,-0.032850385,-0.010036956,-0.0032339883,0.085627526,-0.03973284,-0.083477,0.066882774,0.039149903,0.09581174,-0.04649665,-0.017316034,-0.054697692,-0.08403436,0.025319852,-0.03819714,-0.006366486,-0.021005332,0.021758664,-0.048152544,-0.009410174,0.06076882,0.06120648,-0.06274553,-0.041778356,0.017108208,-0.082105316,0.006626938,0.012227089,-0.049331944,0.0052824477,-0.04787781,-0.015581616,0.007362726,0.046027087,-0.016975887,0.034835305,0.068767644,-0.018871382,-0.08496997,-0.027151786,-0.09256554,-0.014184635,0.07020633,-0.0341596,-0.047368467,-0.10289736,-0.11767797,0.0653773,0.04730208,0.05144755,-0.025781881,0.015515221,-0.02964799,0.023402981,0.012228498,-0.06296549,-0.021887923,0.028396182,0.0088939285,0.0052580787,4.7668478e-33,-0.040301807,-0.041902166,-0.019189343,-0.011877389,-0.053409815,-0.0823378,-0.019494247,-0.03673159,0.03932642,-0.0106884,0.0083181495,0.08048355,-0.0035456582,-0.011997596,0.08297275,-0.020677824,0.044729874,-0.06372187,0.082256556,-0.02230088,-0.03301216,0.036231775,0.00938196,0.0906781,0.067182206,0.0083249975,0.04487233,-0.050090883,-0.116788484,0.023782264,0.13276118,-0.055834368,-0.0317052,0.024207298,-0.051744644,-0.04030803,-0.046704073,0.09466102,0.052558515,0.026851064,-0.0006981436,-0.08956367,0.009229362,0.019679956,-0.009958876,-0.022734068,0.03193191,-0.010387415,0.113048315,-0.009673518,-0.0049341545,-0.066488616,-0.08650069,0.017633572,0.018765513,0.10134405,-0.1296722,0.008012918,-0.09889699,-0.045382384,0.081387006,-0.06310379,0.009822778,0.041026298,0.07397881,-0.03484671,0.017761076,0.006760512,0.052246407,0.027467666,-0.11582551,-0.04316869,0.03485781,-0.038225852,0.03424774,0.114238225,-0.06348872,0.037016395,-0.040049557,0.026951633,-0.04794037,-0.040568624,0.016439326,0.049369313,-0.013995639,0.018723534,0.043408684,0.008692025,-0.000493641,0.057898063,-0.016054325,0.03343719,-0.020274887,0.0105557665,-0.002906127,-7.302679e-33,0.02686417,0.020951847,0.03307254,0.1270459,-0.019592443,0.087514825,-0.0056174644,-0.051022053,-0.042453293,0.08620493,-0.10808466,-0.05748487,0.06855868,-0.07211704,-0.04606994,0.0039362577,-0.0042346823,-0.0035948067,0.0064174035,0.004198399,-0.047884405,0.03532517,0.001518534,-0.09522121,0.009932144,-0.018319817,-0.008329205,-0.021715865,-0.05987235,-0.0014142754,-0.001678068,0.03548941,0.053357765,-0.0040601483,-0.01937864,0.0034358604,0.07969796,0.0575593,-0.031271964,0.060906447,-0.053877328,0.023116266,0.05614987,-0.010005167,0.05835059,-0.03703918,0.061444428,-0.034536712,0.04177364,0.027541922,0.015622485,0.036070947,-0.023564102,0.006855176,0.01714176,0.052529562,-0.024411008,-0.08152817,-0.049681675,0.0148734925,0.06549461,0.07034717,0.063108936,-0.09135967,0.0738651,0.0028931312,-0.075447,-0.09919719,-0.02711435,0.006607898,0.12653333,-0.058345124,0.037612993,-0.005028874,-0.0061918325,0.007471538,-0.0059533245,0.07356396,-0.035386447,-0.0297471,-0.032563195,0.012738219,-0.054962203,0.04925486,0.006398241,-0.015698314,0.019879362,-0.040912397,0.011699302,-0.0267435,0.06003205,0.0420746,0.022908157,0.009157304,0.013434384,-3.6305988e-08,0.06450653,0.04764582,-0.130126,0.04067817,0.050235175,-0.032912623,-0.06236706,-0.028736735,-0.075856164,0.06308549,0.0017560478,0.0047845026,0.011108555,0.05701968,0.029987225,-0.005852285,-0.015319383,0.028574452,-0.018405935,-0.0035116572,0.029065209,-0.0669102,-0.082490414,-0.11135312,-0.05599197,0.025735853,-0.06291349,-0.07603071,0.0071894857,-0.010435399,0.047404643,0.06922728,0.040162623,-0.055167135,-0.029901946,-0.0038447278,0.0010663961,0.035172112,0.018921632,0.07597567,0.06988356,-0.028441181,0.043501887,-0.018740322,-0.052338712,-0.006229646,-0.029914273,0.023139657,0.023867888,0.17108755,-0.0645805,0.015691819,0.027377516,-0.00029400404,0.022157565,0.08303152,0.040199384,-0.06397617,-0.012712529,-0.016945852,0.033461362,0.024685698,-0.03314931,-0.026548646} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:56.123791+00 2026-01-30 02:01:11.36178+00 22c747a6-b913-4ae4-82bc-14b4195008b6 458 google ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB 1 t 461 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tuvimos una experiencia muy favorable con ellos. Nos dieron el coche que alquilamos (Fiat 500), son flexibles con la entrega, no pusieron pegas a la entrega y la devolución de la fianza fue instantánea. Todo genial, repetiremos con ellos tuvimos una experiencia muy favorable con ellos. nos dieron el coche que alquilamos (fiat 500), son flexibles con la entrega, no pusieron pegas a la entrega y la devolución de la fianza fue instantánea. todo genial, repetiremos con ellos 5 2025-04-30 01:27:48.342053+00 es v5.1 J1.03 {O1.01} V+ I2 CR-N {} {"J1.03": "Tuvimos una experiencia muy favorable con ellos. Nos dieron el coche que alquilamos (Fiat 500), son ", "R1.01": "Todo genial, repetiremos con ellos"} {0.008951708,0.043042537,-0.056028675,-0.008839075,-0.033728287,-0.013895826,0.009137129,0.051627185,-0.11540543,-0.038908247,0.039602727,0.030077044,0.00063293375,-0.04266258,0.018551689,0.021557996,0.019728603,-0.039593957,-0.03737106,0.0738545,0.051771615,-0.17701434,-0.082423024,0.07714122,-0.04997865,-0.01180679,-0.011870169,0.04439534,-0.0245172,-0.12504323,-0.066931486,0.06735452,0.038169738,-0.05527507,0.010777168,-0.021850986,0.07842807,-0.0067421976,-0.029734338,-0.027115082,-0.07560083,-0.035740454,-0.019657414,-0.009564682,0.026242152,-0.08847039,0.01757653,0.06477533,0.065739736,-0.02909001,0.030721633,-0.021770524,0.0122147,-0.014560275,-0.06284785,0.009888181,-0.055507835,0.017144423,0.114069864,-0.02835405,0.13326587,0.06870487,-0.015613091,0.095003895,-0.01959395,-0.01286347,0.06705621,-0.04693928,-0.13716407,0.029979775,0.11332373,-0.10831086,0.0029756275,0.053077884,0.01393691,0.049048956,0.074279435,-0.10291665,-0.040479533,0.079903066,-0.0070065204,0.026976144,-0.079653144,-0.06738449,-0.03263616,-0.0143027995,-0.041828096,-0.014549635,0.08628534,-0.03215883,0.021450767,0.04272928,-0.055066556,-0.022183666,0.01658196,0.06306337,-0.012234434,0.004570292,-0.00797789,0.0246056,0.11279083,0.075348675,0.054130167,-0.00205124,-0.01653801,0.053635694,0.062523894,0.0017735852,0.020607164,0.022640947,-0.06834871,-0.069820754,0.025736962,-0.04844807,-0.1339686,-0.0440996,-0.07323203,-0.038390644,0.01056491,-0.032108903,0.092234336,-0.01590182,-0.06330554,-0.038079884,0.037109077,-0.021799171,-0.0043303454,9.596024e-33,-0.07963799,-0.008598741,-0.030958991,0.060564533,-0.04906726,0.04174055,0.011207715,0.008871654,-0.11433483,-0.006401664,-0.0451268,0.03259288,0.020558279,0.027177384,0.08525789,-0.006233952,0.015233623,-0.05234134,0.03755624,0.00882788,-0.08128803,-0.0025681641,-0.0054365047,-0.040670708,0.026552314,0.039563622,0.03425678,-0.030461248,-0.03287744,0.071666695,-0.03213178,0.077668756,-0.030973077,-0.012116201,0.01070628,0.008127465,0.03429172,0.021771241,-0.021287162,-0.04304509,-0.051975943,0.07541775,-0.035469588,0.043952335,-0.014584335,0.07063325,0.03278674,0.049566012,0.07734966,-0.06659826,-0.09494408,-0.037104327,-0.11674113,-0.02969557,0.029215168,0.016676666,-0.09326168,-0.015373879,-0.08848095,0.02031903,-0.062136773,0.044857282,0.028812913,-0.035680868,-0.016518246,0.069511496,0.021112394,0.021830685,0.0445715,0.032285158,-0.05960624,-0.041667655,-0.016517293,0.029278738,-0.0061421613,0.03535642,0.077044986,-0.0063920654,-0.0038734633,0.016869556,-0.06346185,-0.011813636,0.083552115,0.13078277,0.07541646,0.06979116,0.0287643,0.11966778,0.036919616,0.07412359,-0.0155267,0.05789233,0.08627244,-0.049100764,-0.008445441,-1.0589837e-32,0.022663977,-0.016641803,0.0035135022,-0.016805641,-0.062971145,0.038313117,-0.040444363,-0.060777072,0.005284487,0.010924006,-0.0211131,-0.06572798,0.057444356,-0.012610489,-0.059782706,0.0341696,0.018543597,-0.13094218,-0.042638134,-0.03257676,0.040672105,0.012419132,0.024171416,0.014473097,0.01467116,-0.035796557,-0.053836733,-0.0220631,-0.082144774,-0.008728946,-0.014252836,-0.06685973,0.026105065,0.08161049,-0.03085188,0.04080113,0.02309999,-0.016520293,0.038808953,0.03320038,-0.042296402,0.079200834,0.0023124604,-0.02697158,0.04321457,-0.0086782295,0.0077869855,-0.12768508,0.039965283,-0.019332087,0.074922614,-0.03859114,-0.055161215,0.030985385,-0.013951104,-0.06764823,-0.00438162,-0.018901763,-0.098476335,-0.00925671,0.03389732,0.09132897,-0.045587633,-0.027690848,0.071705185,0.0077988105,-0.039742522,-0.07014728,0.026793486,0.0036024007,0.097774245,-0.043206785,-0.069887936,0.03664691,-0.052116837,0.039380733,-0.06345893,-0.03786865,0.01934351,0.030098766,0.017534489,-0.005562886,0.058885116,-0.016956855,-0.0049556233,-0.0067600636,-0.057005964,0.035095844,0.06344728,0.04777016,0.0061100633,-0.024963984,-0.010517935,-0.053236816,-0.04765238,-4.938853e-08,0.006364531,-0.0098985145,-0.030289788,0.0039296173,-0.033967294,0.018641885,0.0016360247,-0.03185021,0.021191312,0.077288814,0.014518757,-0.05033369,0.0018203079,0.036117796,-0.038698766,0.007855982,0.047392894,0.13031581,-0.031280875,-0.014313132,0.037529487,-0.0065327217,-0.04308493,-0.008344605,-0.003016485,-0.04512883,-0.019030701,0.028775124,0.054876562,0.03263012,-0.12639672,-0.007877633,-0.022331685,-0.10628096,0.013814018,0.008093109,-0.0416872,0.043326102,0.0025452913,-0.006300361,0.06359314,0.0088834,-0.07131619,-0.051001083,-0.021201491,-0.09154864,-0.006116498,-0.024176117,0.014275343,-0.016081054,0.01974517,-0.0661137,0.045728497,0.08090538,0.056568604,-0.061677273,-0.036686476,0.028910367,-0.0035446822,-0.015052912,-0.013851879,0.047588807,0.05582239,-0.0054944786} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:44:33.576036+00 2026-01-25 01:27:51.460817+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 460 google ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE 1 t 463 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown 55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No dan opción a dejarlo aparcado y las llaves en un buzón?\nNo sólo con eso, nos han cobrado 50€ de la fianza por concepto de “Limpieza adicional” por un poco de barro que había en la alfombrilla del conductor ya que ha llovido 3 días en la isla y tuvimos que dejar el coche a las 6 de la mañana.\nEn fin, todo eran pegas.\nNo contrato nunca más con esta compañía. 55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. no dan opción a dejarlo aparcado y las llaves en un buzón? no sólo con eso, nos han cobrado 50€ de la fianza por concepto de “limpieza adicional” por un poco de barro que había en la alfombrilla del conductor ya que ha llovido 3 días en la isla y tuvimos que dejar el coche a las 6 de la mañana. en fin, todo eran pegas. no contrato nunca más con esta compañía. 1 2025-03-01 01:27:48.342062+00 es v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No dan opción a dejarlo a", "P1.02": "No sólo con eso, nos han cobrado 50€ de la fianza por concepto de “Limpieza adicional” por un poco d", "R1.02": "En fin, todo eran pegas. No contrato nunca más con esta compañía."} {0.009634346,0.09428755,-0.041530743,0.016264092,-0.120963655,0.007850723,0.03142006,0.059577618,-0.047350686,0.021734279,0.0227383,-0.0429533,-0.019130092,0.021766536,0.059362978,0.015232858,-0.026360154,0.020005008,0.023181805,0.07273636,0.014469231,-0.04915045,-0.058716193,0.08490215,-0.054608677,0.012716252,0.03903817,0.009593508,-0.03522735,-0.090627216,-0.03899775,0.051287048,0.06205394,-0.06314072,0.049446356,-0.09454921,0.021430325,-0.08866645,-0.07652771,0.09915931,0.018425811,-0.006714302,-0.086903945,-0.06948757,-0.024054863,-0.106747426,0.032406148,0.113290615,0.048957713,-0.04780821,0.0049246587,0.005397259,-0.044979796,-0.076771684,-0.02106506,-0.06968118,0.026274666,0.007725126,0.09058601,0.0041380622,0.052099455,0.076072045,-0.055977773,0.0379836,0.017248876,-0.11984796,0.0047315555,-0.024660012,-0.08020131,0.052364707,0.043981913,-0.13238245,0.07274988,-0.022784436,0.018542225,0.012513343,0.063994445,-0.036478426,0.0014960188,-0.051197454,0.027239129,-0.019367823,-0.07596492,-0.030300789,0.023450159,0.07229549,-0.008837255,0.060383126,0.017807147,-0.011406452,0.06987549,0.08164332,-0.05343849,0.014583378,-0.03305108,0.002811513,0.060002193,0.037195012,-0.0034362245,0.022493288,0.09889344,0.013720561,0.07103707,-0.024003962,0.009349442,0.031325314,0.038065817,0.031473722,0.017619846,0.02813644,-0.09964445,-0.05532177,-0.08069534,-0.052365415,-0.064124614,0.044038534,-0.0773088,-0.04438938,0.004634978,-0.043112725,0.06494132,-0.029731916,0.036373608,0.00043668525,0.0073958533,-0.10395035,-0.031031618,8.7472296e-33,-0.051791534,-0.05942381,-0.042644117,0.010705792,-0.018835034,0.007878393,0.0069614383,-0.036509678,-0.06626381,0.055094942,-0.05772473,0.049075227,0.028140634,0.07124102,0.06733831,0.014181999,0.04771533,-0.056119084,0.045834467,0.002298395,-0.0039693615,-0.017661575,-0.0144050205,0.02847275,0.020985063,0.051208384,0.003342715,-0.043544307,-0.019699315,0.062645964,-0.02368156,-0.025763825,0.04173355,-0.041655477,-0.05452927,-0.02859951,0.013598813,0.023681348,-0.1046446,-0.020203741,-0.03915434,0.01922031,-0.03295626,0.053419884,0.029227441,0.08806312,0.08670185,0.01013277,0.044093966,-0.028877132,-0.05945748,-0.025932347,-0.067465246,0.0065393513,0.0018219082,-0.014086593,-0.03507718,0.0112477755,0.00771261,-0.053397413,-0.021190826,0.012293019,-0.0009578132,0.013144263,-0.02876082,0.023626525,0.013418717,-0.0062988587,0.1212136,-0.041254345,-0.007835948,0.014163816,0.04972828,0.015220295,0.0018114437,-0.019187411,0.01210242,0.039467905,0.012018149,0.0077859666,-0.02775359,-0.033967454,0.035491444,-0.006859253,0.116161674,0.117819674,0.07012701,0.02735382,-0.054393545,0.09768797,0.0193047,0.09772951,0.016987583,-0.08585342,0.12275246,-1.0453582e-32,0.01329367,0.054067157,0.029406615,-0.05025353,-0.028928252,-0.014453643,-0.024990663,0.021587115,-0.0047946377,-0.08819301,-0.11198649,-0.037620008,0.036049474,0.026421716,0.0030584582,0.022966055,-0.028838785,-0.15440239,0.0031079547,-0.008033792,-0.0717504,0.028164836,0.024820864,0.011826469,-0.06276171,-0.060341913,-0.028571125,-0.007131058,-0.0059712743,0.015277935,0.01298367,-0.037192386,-0.015049621,0.044173334,-0.05785372,-0.027567916,0.01615731,0.047007028,0.010246413,0.034824997,-0.059267424,0.011497311,0.01709064,-0.06857107,0.05399289,-0.00035226898,0.021010257,-0.14824542,-0.012550403,-0.08790524,0.13017416,-0.038780082,-0.029043758,0.011272415,0.007724143,-0.0044027157,0.0038308096,-0.04393744,-0.030384485,-0.035995226,0.104427,0.040526357,-0.045558915,0.037790824,0.08605768,0.090489976,0.0164336,-0.03154173,0.025828917,-0.017752973,0.015096205,-0.06292531,-0.087135516,-0.0060619772,-0.06076948,0.0067241373,-0.10418949,0.022189511,0.10026389,0.03748325,-0.06388903,-0.018785855,-0.01715396,-0.050978143,0.006017036,-0.074701704,0.022013212,-0.002937046,0.007961032,0.06376818,-0.0066922675,0.0067834933,-0.017744869,-0.057837732,-0.013942767,-5.487458e-08,-0.022450803,-0.028563734,-0.073899195,0.060928304,0.045555316,-0.0021605364,-0.025025824,-0.037639957,0.04370119,0.15388575,-0.00219616,-0.057747293,-0.07090876,0.091325186,-0.085355416,0.0066041662,0.050136916,0.074180156,-0.010140611,-0.09455653,0.053317104,0.07249295,-0.039396208,0.0066563874,-0.0074148024,-0.011083545,-0.06924775,0.037252914,0.006766356,-0.015362238,-0.07628402,-0.004997672,-0.038455814,-0.08342497,0.013882647,-0.054367393,-0.005582808,-0.017036526,-0.01850418,-0.03872163,0.10832495,-0.10158976,-0.018343158,-0.035501275,-0.031093815,-0.07547708,-0.02172349,-0.04840391,0.001860154,-0.02570782,0.026471741,0.0033193044,0.015304625,-0.0332381,0.023725055,-0.0042993687,0.041943017,0.052676532,-0.057387903,-0.010132599,0.0059838244,-0.05732338,0.016305402,-0.025667176} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:59.637326+00 2026-01-25 01:27:51.46799+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 461 google ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB 1 t 464 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir sind pünktlich vom Flughafen abgeholt worden und haben eine nette Mitarbeiterin getroffen und einen neuen Fiat 500 bekommen.\nDie Rückgabe hat auch super geklappt, aber die Kaution wurde uns von der Kreditkarte abgezogen und NICHT wieder zurückgebucht. Auf meine e-mail habe ich noch keine Antwort erhalten. wir sind pünktlich vom flughafen abgeholt worden und haben eine nette mitarbeiterin getroffen und einen neuen fiat 500 bekommen. die rückgabe hat auch super geklappt, aber die kaution wurde uns von der kreditkarte abgezogen und nicht wieder zurückgebucht. auf meine e-mail habe ich noch keine antwort erhalten. 2 2025-01-25 01:27:48.342064+00 de v5.1 J1.01 {A1.01} V+ I2 CR-N {} {"A1.02": "Auf meine e-mail habe ich noch keine Antwort erhalten.", "J1.01": "Wir sind pünktlich vom Flughafen abgeholt worden und haben eine nette Mitarbeiterin getroffen und ei", "J1.02": "Die Rückgabe hat auch super geklappt, aber die Kaution wurde uns von der Kreditkarte abgezogen und N"} {-0.04335152,0.058639478,-0.08200374,-0.018645568,-0.0132844,0.013756129,0.042330958,0.08782915,-0.101788096,-0.056276437,-0.04152702,-0.020675616,-0.042418145,-0.06108661,-0.054935552,0.0076861903,-0.047632527,0.031668812,-0.10404616,0.025441479,-0.037344143,-0.09648002,0.015276897,0.0716828,-0.037041847,-0.031857423,0.0015550599,-0.0043497877,-0.029968211,-0.030607447,0.056166537,0.06797063,-0.027045721,1.07206915e-05,-0.0018235254,-0.022397911,-0.0037805072,-0.022091964,0.01725733,-0.029137865,-0.10957553,-0.04913047,-0.054730505,-0.027500654,0.070462905,0.07177243,0.01895128,0.09185913,0.02327713,-0.013219515,0.009681996,-0.00848058,0.04784085,-0.030689776,0.046516582,-0.05945427,-0.081487164,0.0023732916,0.034685608,0.011094763,0.08013778,0.002825774,0.04431403,0.014784426,-0.06833599,0.007566548,-0.0412201,-0.07362684,-0.09629992,-0.020633066,0.023324793,-0.121903114,0.004536305,-0.0004626546,-0.050929878,0.051004175,0.004593213,0.025734665,-0.030361924,0.013320206,0.013990705,0.036301624,0.07232397,-0.033401437,0.012878542,0.015599968,-0.011569078,0.0671895,-0.055177536,-0.016581742,0.018287458,0.0057543227,-0.029797735,-0.05391719,-0.087399274,-0.007632809,-1.9784276e-05,-0.009610073,0.008703223,0.106185205,0.01649649,-0.08170841,0.022061065,0.009322905,-0.0485774,-0.002895537,-0.016398493,-0.00796712,0.056583833,-0.011824226,-0.09197324,-0.051296115,-0.05416385,-0.06771965,0.040274847,-0.052451126,-0.0498409,0.00096227665,0.06935408,0.020890588,0.05013007,-0.0054999134,-0.02286131,0.048535574,0.019067593,-0.007776098,0.035628404,2.2203923e-32,-0.05149916,0.03370793,0.029888732,0.036895756,-0.085667565,-0.059857126,0.012139629,-0.006803788,-0.01349032,-0.006282908,-0.048832674,0.04292103,-0.004185655,-0.023581013,0.01624549,-0.07850884,-0.0032296372,-0.10825764,0.02673667,-0.0783875,0.020073151,0.012021385,0.04346583,0.07308355,0.09306614,0.013729603,-0.010369649,-0.0034986155,-0.03416346,0.043140203,0.0029436166,-0.042661,-0.022356147,0.036869857,-0.12685235,-0.014953783,-0.024238912,0.004914479,-0.0932402,-0.03841862,0.005254174,-0.0028691173,-0.046688132,-0.023717543,0.041744597,0.085070066,0.03286456,0.025408586,0.16026169,-0.043527912,-0.112315476,-0.031134466,-0.017459657,-0.02141223,0.02572869,-0.003289634,-0.065453544,-0.041928135,-0.0065810336,-0.005395297,-0.086739704,0.038062964,-0.01097646,-0.007501159,-0.032455157,0.044156544,0.04009582,-0.05625023,-0.00445689,0.018853419,-0.010415941,-0.026454428,0.10841647,0.042715292,0.023694789,0.047662403,0.026032172,-0.01543646,-0.055675205,0.022435578,-0.054550957,-0.043953124,0.028204337,0.012871933,0.05343386,0.023666717,0.002510254,-0.014235671,0.024530469,0.0982045,-0.030476084,-0.05405814,0.04067069,0.02810524,0.07008951,-2.2810794e-32,0.035137188,-0.022901908,-0.07988546,-0.00030193396,-0.04911146,0.15005921,-0.010159791,0.030083476,-0.061288863,0.025124935,-0.008267887,-0.023617888,0.020786984,0.04809117,-0.05628398,-0.019621374,0.086904004,-0.015455462,0.030158361,-0.01614864,-0.009236941,-7.879102e-05,-0.023869826,-0.021066379,-0.008813818,0.040606264,0.0020900613,0.051397994,-0.057825666,-0.036272917,-0.04654084,-0.016281322,0.0049663354,0.0982072,-0.020237504,-0.06478368,0.04978885,0.055966582,-0.039462823,0.052343164,0.010540887,0.078768134,-0.051344838,0.008883301,0.04207383,-0.028119141,-0.11285495,-0.052047696,0.10217668,-0.10862315,0.062697805,0.012813501,0.043371316,0.024834346,-0.064871535,0.04625355,0.045111522,-0.049893912,-0.049324114,0.08469642,-0.010178042,-0.004550655,0.08675362,0.001456283,0.089686684,-0.08955879,-0.060033944,-0.000596642,0.04533918,-0.0025808546,0.09540831,-0.07489577,0.07095446,0.08587912,-0.04765963,0.019575585,-0.025189556,0.05093805,-0.009984766,0.08860688,0.029667787,0.025495928,-0.030096645,0.014185648,0.026631564,-0.08340181,0.03689872,-0.032451384,0.0899123,-0.08339187,0.09118845,0.062053293,0.007125275,0.03486851,-0.016436957,-7.539473e-08,0.056649346,-0.0460097,-0.082592376,-0.011072523,0.072807975,-0.014787941,0.016941667,-0.06870034,-0.09365004,-0.018467102,-0.028686028,-0.01714892,-0.07419225,0.026622595,-0.04495105,-0.0075298334,-0.049131747,-0.0022593006,0.019827265,0.045134358,0.06310719,-0.11226527,-0.05364989,-0.080948874,-0.05014226,-0.0285427,0.02305615,-0.017358968,0.03382135,0.0018671161,-0.13094255,0.0941188,-0.02457623,-0.024976335,-0.05473658,0.045239814,0.019061526,0.043150496,-0.10050856,0.056221772,0.06891722,-0.00939832,0.034475338,-0.08244189,-0.0075939083,-0.056194466,-0.04366506,-0.08121481,0.11389325,-0.088530906,0.012218668,0.048485942,-0.045102753,0.081882134,-0.07927472,-0.008699181,-0.020993927,-0.008693946,-0.03335276,-0.05397181,-0.013925054,-0.05108045,0.03119696,0.06047469} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:07:13.607883+00 2026-01-25 01:27:51.469693+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1273 google ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE 1 t 1276 Soho Club unknown Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. Apvemta salė, stiklai. Niekas nieko netvarko. Savininkas labai geros nuomonės apie save. Žiūri iš aukšto. baisus klubas, nevertina savo pastovių klijentų. susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. apvemta salė, stiklai. niekas nieko netvarko. savininkas labai geros nuomonės apie save. žiūri iš aukšto. 1 2023-01-30 18:34:31.336452+00 lt v5.1 R1.02 {} V- I3 CR-N {} {"E1.01": "Apvemta salė, stiklai. Niekas nieko netvarko.", "P1.02": "Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "R1.02": "Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo "} {-0.011016485,0.10130215,-0.09620849,0.028982868,-0.10055581,0.010002881,0.013524091,0.06423623,0.020488491,0.010867453,0.062538624,-0.04790798,-0.016094554,0.027392076,-0.04866224,-0.044737842,0.00083465315,0.04427832,-0.016891345,-0.02250981,-0.016249064,-0.050034594,-0.0093211075,-0.010441621,0.056332454,-0.013394602,0.0028486971,0.02869643,0.012688699,-0.06385214,-0.06687281,0.01579595,0.011945097,0.010883845,0.0370831,0.030065922,-0.057166424,0.015290304,0.057388432,0.029387029,0.012147864,-0.0586664,-0.090989545,-0.028080357,0.042067762,0.032772165,-0.07461383,0.034177836,0.03209662,-0.0012680698,-0.15830317,-0.022683188,-0.05733998,0.022051034,-0.0017226746,-0.108491406,-0.038928226,0.02707677,-0.00332019,0.015769148,0.06534649,-0.061039962,-0.030810041,0.045298617,-0.04513129,0.010805023,-0.11034843,0.08501945,-0.05569388,0.038061433,0.09578246,-0.00020426643,0.010906997,0.03295663,-0.09813409,0.016711524,0.08800289,0.019165067,0.010069427,-0.04441975,0.037734203,-0.030070292,-0.09770444,0.0014086327,-0.016498057,0.061639473,0.0025221917,-0.0018260535,0.045584638,-0.014708527,-0.0006031935,0.072934516,-0.048027758,-0.100175336,-0.006707481,0.030726051,-0.04663956,0.019007683,-0.04363026,-0.018337755,0.031014174,-0.025592335,0.06173582,0.0160955,-0.10487843,0.059212014,-0.0029875145,-0.056254227,0.06405887,0.046950698,-0.12396005,-0.03186826,-0.12437564,-0.036409978,-0.02551652,0.05157315,-0.006921111,0.022940926,-0.08434103,0.016416546,0.01881885,-0.0352957,-0.010667531,-0.027854277,-0.015758056,-0.040997107,0.045995414,1.8408496e-32,-0.019129116,-0.06475065,-0.07210394,-0.049390588,0.001500104,-0.039552882,-0.027330626,-0.024090735,-0.057664048,0.0121810725,-0.11480474,-0.010194446,-0.10568472,-0.012978517,0.022646789,0.05042,0.046596635,-0.015555968,-0.004739385,0.016684012,0.0648283,-0.007757751,-7.28249e-05,-0.0039872313,-0.032541674,-0.026803639,0.037841115,-0.05120997,-0.0051213894,0.03823458,0.06558638,-0.027880061,-0.07239833,-0.049632125,-0.07977092,-0.043363333,-0.07478518,-0.036803,-0.037454106,-0.027609207,-0.059634045,0.01191764,0.02457675,0.11192836,-0.012258395,0.05202135,0.0024900627,0.013979518,0.14023939,-0.028965715,-0.08874126,-0.012050667,-0.06525033,-0.005284184,0.023511462,-0.03017212,-0.007102988,0.02789991,-0.008174101,-0.07292217,0.011239324,-0.060438983,-0.029441945,-0.047649387,-0.053418245,-0.049122903,0.012222221,0.019492017,0.034373507,-0.12525919,-0.011945966,-0.032657977,-0.070642695,0.06771995,-0.07534381,-0.002246023,0.045256387,0.004896862,0.025572818,0.032789487,-0.019658737,0.023189593,0.009965429,0.024320424,0.06619709,0.05229423,0.02169896,-0.05857358,0.028252672,0.038068864,-0.01244787,0.04667247,0.036895078,0.038614146,-0.0062228055,-1.6765031e-32,0.059054077,-0.04101168,0.0077612856,0.019163875,0.0494692,0.05623647,-0.08781916,0.041795917,0.01596323,0.030694708,-0.030025387,-0.08570535,0.0403996,-0.012828386,-0.06071506,0.050480045,0.08679622,0.06337457,-0.043114856,-0.07938362,-0.043116227,0.07746141,0.019988665,0.031653233,-0.05930462,0.045143392,0.049340896,-0.01024635,-0.13403644,0.026107552,0.012790702,-0.044720747,-0.02524502,0.051849388,0.014713942,0.025392655,0.11133562,-0.024726005,-0.05083143,0.026773037,0.12620425,0.054124687,0.018978471,0.01761591,-0.016405113,-0.0786356,-0.055915263,0.029483074,-0.00678451,-0.017572818,0.10334449,0.03896485,-0.028273044,-0.042380854,0.100564755,0.048589643,0.04684989,-0.06890727,-0.044560973,-0.038969725,0.03275178,-0.08982407,0.007849069,0.02962651,0.06277901,0.08531315,0.026400976,0.062326334,-0.04359915,0.017053185,-0.033854906,-0.1617296,-0.09237998,0.008534366,-0.07676611,0.029341407,-0.09114593,0.035513707,0.056838688,-0.036280025,0.009374378,-0.038059693,-0.009971377,0.078307524,0.034463994,-0.022520892,0.05277571,-0.030306872,0.097449236,0.023374893,-0.007017558,0.07897552,0.029218344,0.038063288,0.03998276,-5.9133374e-08,0.036838703,-0.061007276,1.1164726e-05,0.079578,0.023510665,-0.08626524,-0.04077628,-0.025799671,0.0130977165,0.06299905,-0.057501674,-0.0011613864,0.003051322,-0.0069478513,0.016296804,0.021079686,0.056962755,0.08242487,0.00037141467,-0.053883467,0.055004943,-0.004635433,0.023229122,0.024293866,-0.0329726,-3.7443915e-05,0.02051505,0.02386079,0.10416802,-0.04905285,-0.04164568,0.027871542,0.054650903,-0.05119483,0.009866278,0.10764593,-0.024489494,-0.020601358,-0.040917777,0.04428,0.0043549323,-0.04644957,0.083196744,0.021494746,-0.027195018,0.053656098,0.060461078,0.03630501,0.0014154087,-0.04845164,-0.093391865,-0.026464505,0.04742196,0.037698288,-0.023055453,0.0054041017,-0.029955944,0.07313909,0.0712225,-0.011917294,0.07661646,0.02676002,-0.054092433,0.034265835} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:33.034245+00 2026-01-29 18:36:00.664237+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1274 google ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB 1 t 1277 Soho Club unknown Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :) labai daug vyrų!!! niekas nepriekabiavo ir neišžagino :) draugiškas gėju klubas :) rekomenduoju :) 5 2025-01-29 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :)"} {-0.014028029,0.11246314,-0.08034029,-0.010522371,-0.12009714,0.011575469,0.008739944,0.051342167,0.0056470474,0.010961929,0.07618665,-0.038989414,-0.016832579,0.04572546,0.027379934,-0.10232817,0.02604319,0.03257088,-0.0165476,0.020085813,-0.028295815,-0.05722896,-0.0013192677,-0.019510131,0.015490291,0.0019312741,-0.0013667556,0.016277326,0.0038375275,-0.08318542,0.015049004,0.057541974,-0.040511973,-0.019335378,0.03164441,0.040567815,-0.08678965,-0.027969861,0.013412805,0.065809295,-0.03812402,0.012414755,-0.03086878,-0.03343453,0.062000044,0.05056307,-0.09062478,0.033490855,0.032577947,-0.001224084,-0.12277325,0.0009349613,-0.004390688,0.06316294,0.014098024,-0.16684859,-0.0035940304,-0.010732285,-0.010045182,0.052996125,0.021765616,0.01926985,0.019092511,0.037784148,-0.09448466,-0.033186216,-0.08915437,0.04711374,-0.08798663,0.11010792,0.03662818,-0.0072819465,0.0207672,-0.011302633,-0.068688475,0.06086046,0.010546346,-0.033554487,0.03971663,-0.038693566,0.07394792,-0.025992159,-0.057150755,0.024707045,-0.07832761,-0.0049291723,0.010170517,-0.046699207,0.007249044,-0.034146465,-0.035856515,0.03223821,-0.035549823,-0.05972251,-0.06457718,0.011356622,-0.09776103,0.051004987,-0.01847284,-0.023389572,-0.022635905,0.042061675,0.029640106,-0.016965719,-0.19146168,0.05711367,-0.0027757506,-0.016122635,0.056157876,0.010428845,-0.090144835,-0.01191382,-0.04254241,-0.038184516,-0.008130771,0.016420333,0.047891613,0.026009055,-0.0643232,0.011733781,0.027048001,-0.07144504,0.0065746172,-0.056398522,0.022176962,-0.0130846845,0.07929359,7.474542e-33,-0.029895943,-0.062198628,-0.064390086,0.003861106,0.036234297,-0.026139062,-0.08893229,-0.08242487,-0.06152349,0.021585567,-0.056503095,0.035807755,-0.023862896,0.021205584,-0.018831044,0.110892646,0.0102848625,-0.05490713,-0.04273429,0.057246488,0.015225664,0.048530046,0.0466093,0.0009365852,-0.01990561,0.015924964,-0.0068856073,-0.06306191,0.014742651,0.007807792,0.05352759,-0.04951926,-0.11315003,0.018487507,-0.107810006,-0.01308927,-0.07896283,-0.040088076,-0.0287666,-0.007143022,-0.011920649,-0.006875247,-0.0018616199,0.03577027,-0.021741698,0.07667031,-0.0056131016,0.018245054,0.10201432,-0.086915545,-0.09897713,0.0018105818,0.0012099235,-0.0048108334,0.04720303,0.0030794851,0.031997908,0.043469936,0.025870085,-0.028750319,-0.0028464585,0.00089477224,-0.0024146142,-0.04100676,0.02574576,-0.11285255,0.03468275,0.04460613,0.040595632,-0.11065608,-0.019303808,-0.0005199033,-0.045054357,0.023520438,-0.019779598,-0.048610117,0.034237806,-0.023917312,0.025058022,0.021799987,-0.037748124,0.03342743,-0.032977663,-0.024972973,0.06561018,0.028925642,-0.04074574,-0.06820179,0.027805543,0.049199145,-0.05781374,0.029704537,0.042665854,0.02310422,0.05407873,-8.650578e-33,0.10197805,-0.001405166,-0.031001054,0.02166099,0.09060189,0.049143914,-0.014983422,0.10274792,-0.029619655,0.0416398,-0.008604342,-0.11570336,0.009696463,0.054772984,-0.09739688,-0.0039798194,0.071663335,0.12635201,-0.014251836,-0.07100259,-0.051428266,0.08874868,-0.012671968,0.015759245,0.007059941,0.035315573,0.039219126,0.007656575,-0.08937701,0.007825359,-0.013069167,-0.06226087,-0.06378363,0.00427564,0.0660855,0.010032732,0.083851,-0.036645975,-0.054284718,0.04070658,0.05354031,0.06818055,-0.023516875,-0.00097603054,-0.04494608,-0.041150723,-0.089634456,0.056003023,-0.051176544,-0.06263329,0.08082421,-0.010238897,-0.040815875,-0.054600265,0.08581459,0.05602065,0.054318734,-0.025941726,-0.035920955,0.062845476,0.005528797,-0.020255564,0.05835134,0.015476202,-0.037954926,0.09155826,0.033976406,0.04478647,0.035441082,0.026124533,0.010167036,-0.0325078,-0.07111323,0.060984783,-0.05352067,0.008476643,-0.06668438,0.0157216,0.044793498,-0.034345664,-0.0026529534,-0.07637088,-0.045515366,0.040631715,0.05401534,0.045716006,0.014256149,0.029169418,0.05020488,0.035026927,0.041400477,0.06929354,-0.0145613905,0.09273071,0.033465825,-3.8221568e-08,-0.01745898,-0.009198301,0.045126636,0.008911434,0.08162482,-0.056192856,-0.04632051,-0.11154602,-0.037760966,0.08538508,0.027014947,0.02313226,-0.042998794,0.022908552,-0.016608132,0.07843792,0.081864424,0.14444345,0.022188865,-0.05359985,0.12063099,-0.028525142,-0.030976476,0.0063750115,-0.008497406,0.0012139672,0.02258641,-0.022308813,0.024164185,-0.09623445,-0.017799528,0.05688393,-0.027365368,-0.06983622,-0.014107535,0.033449557,-0.057423312,-0.014065833,-0.028009597,-0.023182673,-0.012674358,-0.0145386355,0.06713414,-0.016064985,-0.032311972,-0.00035789202,0.020077145,0.016704913,-0.05308416,-0.005023429,-0.14341313,-0.0069953166,0.05819576,0.032820236,0.01659297,0.054870434,0.029997963,0.032230895,-0.014306964,0.00049324107,0.062266577,0.015602813,-0.030571446,-0.0067344387} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:37.5729+00 2026-01-29 18:36:00.665997+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1275 google ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE 1 t 1278 Soho Club unknown Месту срочно необходим ремонт. Грязно очень. Музыка и выпивка хороши. Контингент - весёлые и интересные, яркие люди. месту срочно необходим ремонт. грязно очень. музыка и выпивка хороши. контингент - весёлые и интересные, яркие люди. 2 2024-01-30 18:34:31.336452+00 ru v5.1 E1.01 {} V- I3 CR-N {} {"E1.01": "Месту срочно необходим ремонт. Грязно очень.", "O1.01": "Музыка и выпивка хороши.", "P1.01": "Контингент - весёлые и интересные, яркие люди."} {0.021393664,0.07142629,-0.03358591,0.008637403,-0.066346124,-0.0019743964,0.08827042,0.009659716,-0.04139254,-0.03412708,0.034186523,0.034658097,-0.008450126,0.061437566,0.022027317,-0.08336965,0.026640477,0.038865443,0.016779363,0.023596577,0.02222933,0.017954385,0.09547872,0.01739202,-0.03812128,-0.056051023,-0.036385734,-0.021716129,0.0552219,0.08146277,0.0020135052,0.024704982,0.028752947,-0.015348602,-0.014392853,0.013690548,0.004149959,-0.05981565,0.01337656,0.10262822,-0.081687704,-0.08224233,-0.09403436,0.050739206,-0.04383144,0.06999072,-0.06597124,0.06677776,-0.03066629,0.014584365,-0.13598226,-0.02639722,-0.058005616,0.04029507,0.059826825,-0.1141748,-0.016969273,0.024843007,-0.066271454,-0.0056249364,0.0016997923,0.006292053,-0.010172594,0.023581592,-0.04172026,0.0011516818,0.006920967,0.06857436,-0.025420625,0.05148227,0.047689267,-0.025004892,-0.1153629,-0.0032379346,-0.104483195,-0.107839905,-0.015111513,-0.016621059,-0.017698029,0.038496554,0.0031317046,-0.012200182,-0.056861233,-0.015351565,-0.03401392,-0.0030678862,0.069235146,0.060836643,-0.06611471,0.026087318,-0.059365116,0.042878993,0.017468078,0.014770234,-0.04138526,-0.053524695,0.02769616,0.03341508,0.040693283,-0.0069740703,-0.041058876,-0.049479723,0.03887201,0.057538148,-0.07622265,0.03621092,-0.04511148,-0.062954225,0.058234688,0.027214708,-0.06477491,-0.06571356,-0.03052035,-0.112712495,-0.019178579,0.017793339,-8.3275845e-05,-0.092857085,0.03141848,0.001772473,0.0842947,-0.025110723,0.035200752,-0.00228894,-0.024417922,0.021792239,0.048849046,9.14729e-33,0.044261336,-0.021782381,0.005080256,-0.020785023,-0.08418832,-0.014003624,-0.021692263,-0.0009597131,0.002587308,0.06748224,0.054635283,0.030638373,-0.02304776,-0.04459942,0.06924921,-0.01686654,0.06847426,0.020557934,0.03930442,0.093926735,0.0036398673,0.07845641,-0.050955433,0.039502475,-0.016015239,-0.011122361,0.016872937,-0.057284974,0.041114215,-0.028342485,0.071158454,-0.02616167,-0.03220256,0.0050997073,-0.06443041,-0.12995392,-0.021526571,0.027966097,0.009319553,0.040588368,0.053056855,-0.093947,0.04364419,-0.018272448,0.10678604,0.03612335,0.0011263792,0.033275705,0.021556687,-0.028746353,-0.030556329,-0.0071381773,-0.059860572,0.079451345,0.012144084,0.02243614,-0.019826362,0.017103892,-0.07654737,-0.056587067,-0.037253655,-0.068542175,0.0071865567,0.002434776,-0.032022037,-0.061118845,-0.017173463,0.003642216,0.019824665,0.038232144,-0.07772892,-0.039636742,-0.0499463,0.106250174,-0.006361744,4.7223974e-05,0.033375323,0.040077813,-0.03615907,0.027411997,0.005580716,0.089177795,-0.017030718,-0.002893862,0.02988886,0.06148016,-0.015725954,-0.08361372,-0.007999249,0.03668899,-0.19756137,-0.034435466,0.01390058,0.027137749,-0.0175169,-1.1392515e-32,0.065380685,-0.017531509,-0.06520454,0.14070474,0.01578699,0.081303515,-0.01321576,0.031872775,-0.00011927843,0.08342114,-0.08786618,-0.093575254,0.04560772,-0.031440627,0.028131431,-0.023895107,0.085348405,-0.051317427,-0.100311875,-0.013375846,-0.05609667,-0.026866203,-0.038096238,-0.025607057,-0.02354974,-0.03932535,0.116149284,-0.03816637,-0.07168948,0.06776497,-0.011575817,-0.06659953,-0.057436083,0.12615983,0.0017714845,0.09448227,0.06850873,-0.031485315,-0.07334458,0.07943761,-0.015403058,0.011872638,0.114994556,0.08756847,0.04194901,-0.0790655,-0.11811798,-0.073715426,0.014473567,-0.03570556,0.033092894,0.032321386,-0.060551148,-0.1046979,0.07209386,-0.0159835,-0.006064379,-0.01912249,0.032640956,-0.009853488,0.08718707,0.008570475,0.017208839,0.0068256105,-0.09153729,0.008810293,-0.05594618,0.021465844,0.0049981405,0.006594134,0.058937017,-0.061290067,0.066093266,0.061199445,-0.0075001526,0.0052401572,-0.03050215,0.10777792,0.04501175,0.04358313,0.05302637,-0.002438285,-0.041751016,-0.053649,-0.05351488,-0.015697137,0.002125484,-0.0026143272,0.0048867217,-0.05736988,-0.019550586,0.07262755,0.00049098104,0.006199143,0.00879283,-5.0729597e-08,0.09319666,-0.10572141,0.08100713,-0.02205151,-0.02643133,-0.07168175,0.025206411,-0.015174679,-0.039026365,0.0147011075,-0.008183674,-0.008152793,-0.049007423,0.034326516,-0.09036534,-0.039157264,0.018037612,0.032139067,0.0033254155,0.04701257,0.0047779013,-0.014891378,-0.011452265,-0.117443755,-0.066495195,-0.010521296,0.027035497,-0.020952022,-0.0060164565,-0.023047606,0.016203549,0.039223332,-0.001782904,-0.04710279,0.034201555,0.01850627,0.018033627,0.06992726,0.016692404,-0.0559754,0.0603701,-0.02896944,0.056576345,0.036356147,-0.023084152,-0.0041961013,-0.04507393,-0.046225794,0.015053153,0.0120987175,0.021748442,0.04398496,0.010254276,-0.007675423,-0.023794759,0.09261904,0.029904876,0.013000749,-0.024231225,-0.025536459,0.0054362793,0.06102283,-0.03768415,0.007295829} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:53:48.507869+00 2026-01-29 18:36:00.66739+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1277 google ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE 1 t 1280 Soho Club unknown отличный клуб, всё было просто пркрасно отличный клуб, всё было просто пркрасно 5 2025-05-04 18:34:31.336452+00 ru v5.1 E4.01 {} V+ I3 CR-N {} {"E4.01": "отличный клуб, всё было просто пркрасно"} {0.0012858873,0.026597196,-0.0238847,0.009148415,-0.0036666659,0.027979603,0.11367489,0.03461286,-0.03827946,-0.005910651,-0.02767091,0.06593261,0.037618715,0.061293345,-0.025102261,0.0022710369,-0.06661997,0.053453464,-0.024281062,0.016996577,0.0031814927,-0.066876635,0.08122464,0.106693566,-0.065942235,-0.0050489446,-0.023676585,0.017185863,0.029507147,0.023634592,-0.032729674,-0.018721847,0.096217014,-0.05877283,0.011014464,0.01860176,-0.008479709,-0.0012735808,0.025365444,0.02952034,-0.049319845,-0.059129708,-0.12080144,0.042731494,0.010234917,0.06201259,-0.07631461,-0.010507964,0.09270476,-0.046381947,-0.10970267,-0.020621097,0.0053446,-0.0058326446,0.041989043,-0.0957115,-0.06176517,-0.03688463,-0.010555708,-0.09354713,0.040892713,0.04226156,-0.055079695,-0.013649493,-6.719186e-06,0.011643477,0.021298457,0.01745799,0.0054941257,0.087701276,-0.0056933668,-0.043911375,-0.057098787,0.030900413,-0.07539527,-0.06239509,0.0060271434,-0.02661196,-0.032044515,0.024743678,0.015726862,-0.018836431,-0.14584589,-0.05602862,-0.03767437,-0.03707038,-0.037072252,0.016697364,-0.032296672,0.038210765,-0.009135796,0.051804245,0.024666404,-0.027222123,-0.017845348,-0.02505453,-0.031023176,-0.05279615,0.12072131,-0.014001203,-0.0058757626,-0.019376505,0.06287656,0.01573469,-0.10568621,-0.022966554,-0.07489625,-0.043260593,0.0071877656,0.030725291,-0.06841597,-0.11544432,0.01504342,-0.03806858,-0.021466903,0.0842027,-0.04568566,-0.018101946,0.023998339,-0.027591305,0.09933673,0.024403503,0.041249964,0.04595323,-0.046285864,-0.0920334,0.06925694,8.28916e-33,0.017693833,-0.045715813,0.016707534,0.053104147,-0.052612934,0.010064487,0.02064097,0.012842286,0.02592074,0.064636126,-0.0043086363,0.034531355,0.05032003,-0.046458326,0.028536065,0.018321645,0.055233486,-0.077022254,0.02766573,0.1254168,-0.022352006,0.022203926,-0.061367005,0.06894812,0.08295654,0.019018466,-0.022249723,0.0034271174,0.0037302137,-0.016845139,0.06287025,-0.025303962,-0.01903458,-0.028210184,-0.04706832,-0.066170976,-0.011447922,0.10331068,-0.008445787,0.062271252,0.06442266,-0.12259502,-0.0082782665,0.0027211905,0.043371186,0.07187046,-0.007800945,0.032093775,-0.030313304,0.005856754,0.03319195,-0.03523045,-0.10106552,0.06613241,0.09281057,0.032327704,-0.009327051,0.0060048667,-0.071647115,-0.007852417,0.050859954,-0.028954115,0.011209268,-0.037042663,-0.0137784695,-0.039837703,0.036904637,0.033196766,-0.0060257455,-0.01318763,-0.11384169,0.041715275,-0.056268558,0.030230809,-0.04210286,-0.002498778,-0.1247859,-0.009411339,-0.052433535,0.09808534,-0.077181906,0.031963363,0.07794511,0.017879557,0.01045773,0.07419203,-0.010076856,-0.043839626,-0.043292217,0.008741263,-0.12793177,-0.10262035,0.06104941,0.03044087,-0.019017044,-1.04358346e-32,0.048333496,-0.06268841,-0.00035794338,0.098013595,-0.024412207,0.04477099,0.0030594137,0.02325874,-0.0017547053,0.11233933,0.008768104,-0.08418707,-0.007282298,0.036989305,-0.016625857,0.011579175,0.011134496,0.05930242,-0.15514405,0.00030409615,-0.07690989,0.02009439,0.019888338,-0.03461425,0.00769291,-0.0009105712,0.08972468,-0.050773602,-0.08135106,0.102407925,0.038158942,-8.212256e-05,-0.036579683,0.0404659,0.019735614,0.051346935,0.049632635,-0.07640636,-0.06455112,0.0888467,-0.019754047,0.08414382,0.095506616,-4.6005785e-05,-0.021953847,-0.044841733,-0.056997165,-0.03705654,0.030020403,-0.02310966,0.05569169,0.071458995,-0.0003231746,-0.06339554,0.044181462,0.030380847,-0.04466553,0.039670337,0.057177883,-0.029399028,0.027575547,-0.020855553,0.045475766,-0.012560763,-0.01054311,0.023503665,-0.039302215,0.08466365,0.06525959,-0.030207455,0.005633644,-0.09831814,0.038821995,0.107255206,-0.054017745,0.02649431,-0.110053726,0.123856105,0.07134883,0.09948381,0.0007463316,-0.046296045,-0.033050537,0.01931713,-0.05066137,-0.045491096,-0.023262324,-0.015172754,0.050937712,-0.068280384,-0.034699477,0.006915086,0.043929864,0.0034666848,0.036852498,-3.1852313e-08,0.023747636,-0.11028856,-0.026029438,0.023755537,0.0012169756,0.0067861895,-0.003223106,-0.044660613,-0.064637415,0.052807704,-0.01958821,0.006763611,-0.06333951,0.012665271,-0.092961,0.0039154673,0.03270436,0.0045673493,0.06153684,-0.07688256,0.074974045,-0.060996383,-0.074675865,-0.051376145,-0.0031502924,-0.052157607,0.02708484,0.02380809,-0.009326536,-0.060182407,0.0001133267,-0.022571355,0.0027451408,-0.046014488,0.083444536,0.019302728,-0.012848807,0.015807707,-0.03386514,-0.018322384,0.03892743,-0.0039374125,0.027278122,0.007837892,-0.03817499,0.015266765,-0.026370475,0.004578655,0.021550678,0.003986047,-0.014544171,0.03710013,0.009709117,0.0027838286,-0.013731066,0.09518583,0.036795016,-0.011777649,-0.03442979,-0.020244468,-0.0742523,0.04333302,0.016201314,-0.018306667} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:04.977966+00 2026-01-29 18:36:00.670605+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 472 google ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE 1 t 475 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Je recommande!\n\nSuper expérience de location.\n\nNous avons été prit en charge par une navette à l’aéroport. La prise et la restitution du véhicule a été très rapide.\nNous avons louer une fiat 500 toute neuve.\nMerci à Nestor et Carlos très sympathique et serviable je recommande! super expérience de location. nous avons été prit en charge par une navette à l’aéroport. la prise et la restitution du véhicule a été très rapide. nous avons louer une fiat 500 toute neuve. merci à nestor et carlos très sympathique et serviable 5 2025-01-25 01:27:48.342124+00 fr v5.1 J1.03 {E1.02,A1.02} V+ I2 CR-N {} {"J1.03": "Super expérience de location. Nous avons été prit en charge par une navette à l’aéroport. La prise e", "O1.01": "Nous avons louer une fiat 500 toute neuve. Merci à Nestor et Carlos très sympathique et serviable."} {-0.009367244,0.08901455,-0.011496988,-0.04397848,0.037077405,0.002093351,0.025482781,0.07662261,-0.012791934,-0.025608905,0.08528179,-0.0072546178,-0.022631446,-0.02462659,-0.048598226,-0.0070504844,0.009137033,-0.02815155,-0.036284965,0.08830843,0.04182567,-0.06625327,-0.006302171,0.014237633,-0.061548844,-0.013586513,0.019038988,0.022993125,0.050491747,-0.0843255,-0.004195385,0.013635909,-0.026397234,0.0047658463,0.05248608,-0.07112234,0.026515968,-0.06707131,-0.008740071,0.008183785,0.018527353,-0.0604383,-0.15700337,0.03294674,-0.03642729,-0.004366776,0.09519161,0.10867013,0.08862168,-0.058248296,0.0026685996,0.04710306,0.057048302,-0.08690426,-0.09927686,0.0388142,0.001341034,-0.062701814,0.046634816,-0.072338425,0.043582626,0.026935233,0.00048345528,0.081390694,-0.005344625,0.04761812,-0.009544665,-0.058159597,-0.070096046,-0.03652936,0.019441912,-0.060132585,-0.0458765,0.024741178,-0.012375158,0.06166377,0.01942682,0.014148402,-0.057376865,-0.018064529,0.025574874,0.025426742,-0.06510516,0.0057654832,0.017048385,-0.0036729942,0.016527144,0.06385965,0.12990318,-0.05816013,-0.07203418,-0.034301713,-0.009972486,-0.03593575,-0.031947564,0.04130883,-0.047013063,0.004395689,-0.06175691,0.04072384,0.06824703,0.03805505,-0.055836007,0.055271838,-0.11388421,0.11365238,0.043873385,-0.056675967,0.033962116,0.02424627,-0.060229562,-0.019546209,-0.014374337,-0.07192388,-0.09604185,0.034467097,-0.048350472,-0.06432564,0.0024947668,-0.08878794,0.056764558,-0.06071042,-0.05012895,0.012941827,0.019187544,0.061475184,0.01022837,9.136848e-33,-0.1090488,0.020019965,0.0070979814,-0.026339816,-0.0035321154,0.011399956,-0.06116082,0.02955128,0.008262896,0.03792061,-0.09528318,-0.016470576,-0.01582168,-0.015997978,0.02832847,0.027330032,0.07283441,-0.0012821138,0.05858572,-0.0026646547,-0.06635132,0.036829945,0.00255353,0.054831237,0.061093383,0.0714334,-0.029864911,-0.07058152,0.0429371,0.039955065,-0.03221317,-0.017353935,0.024972215,0.017381165,0.014350631,0.035667785,0.018757978,0.032977622,0.007246783,0.01772633,-0.0345225,0.03805238,-0.021391738,-0.0044138897,-0.066810556,0.05010256,-0.02451875,0.042225864,0.056509025,-0.042451736,-0.10438628,-0.00083694333,-0.08365315,-0.024058102,0.046429608,-0.03667346,-0.09480127,0.052336663,-0.029563399,-0.065881416,-0.04040793,0.020357888,-0.06592014,0.025842518,-0.013953691,0.02848607,-0.056942552,0.09618689,0.0544821,0.03604944,-0.092498,0.08247293,0.055541247,0.041081227,-0.0040694503,0.07812588,-0.022235822,-0.013857963,0.06114775,0.013231253,-0.08856585,0.009756397,-0.02377097,0.065970354,0.062319472,-0.030516576,0.024434816,0.070039086,0.021078492,0.004176063,0.019110003,0.048661727,-0.040467236,-0.029929893,-0.0023775008,-1.10309984e-32,-0.00015177066,0.021171466,-0.017037062,-0.023004081,-0.01217229,0.06618217,0.01051587,-0.0073079453,-0.06585903,-0.025368776,-0.12681529,-0.0053038113,0.06917883,-0.020584246,0.025656193,0.06533087,0.03457352,-0.04807202,-0.060488548,-0.0046213535,-0.028187381,0.002598114,0.036703747,-0.033194937,-0.02589565,0.025046375,0.03719225,0.06635968,-0.06299793,-0.0070566125,-0.012288359,0.05634384,0.0049184375,0.04812465,0.010834577,0.12157796,0.0754695,0.13192248,0.007893027,-0.0014687093,-0.039161757,0.018531324,0.11348069,0.025114138,0.009858313,-0.016875988,-0.09225641,-0.17573474,-0.0022943032,-0.029387558,0.043095898,0.009540591,-0.004980378,0.0575177,0.0073439176,-0.007072569,0.08878275,-0.060793824,-0.041213453,-0.04511694,0.059094947,0.05591079,-0.02310945,0.013047129,-0.021394368,-0.10190655,-0.10347875,0.022195373,0.005336678,-0.049061347,0.045689493,-0.03973187,-0.06094947,0.034577664,-0.09192848,0.040538806,0.047705557,-0.00874748,0.019818215,-0.00014539967,-0.08623394,-0.030994536,-0.037487496,-0.046736438,0.0021535172,0.06831585,0.04203128,-0.042887766,0.078775406,-0.0266915,-0.028095583,0.057528034,-0.081331514,-0.0055947322,-0.06823342,-4.8398768e-08,-0.025277859,-0.06481562,0.03949852,0.056914125,-0.018051751,-0.044842694,-0.011347324,0.010234501,-0.080471665,0.030030286,0.07018834,-0.039557196,-0.041203793,0.013155731,-0.013634557,0.04868955,-0.0132309105,0.040403217,-0.044768877,-0.071354024,-0.024971526,0.020734558,-0.081984036,-0.03830822,-0.013148746,-0.062365316,0.02762316,-0.108766414,0.09206568,-0.11623392,-0.0990306,0.057858318,-0.004669045,-0.07720411,-0.0074058403,0.018876374,-0.0012132026,0.072102934,0.036938496,-0.04602682,0.052260917,0.027633935,-0.048377097,-0.052408874,0.036362488,-0.02370821,0.017833812,-0.0727664,0.024281524,-0.0032774974,0.012942616,-0.011826248,0.030073483,0.13447574,0.0034962692,-0.022718918,-0.052704126,0.00015001246,-0.054161906,-0.015134355,-0.02942418,0.040296957,-0.015381293,-0.0041519664} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:06:26.880073+00 2026-01-25 01:27:51.504655+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 474 google ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB 1 t 477 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excelente experiencia. Hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin embargo la regogida fue a tiempo y el trayecto a las oficinas es realmente corto. Antonio, el encargado del traslado fue sumamente amable y nos dio hasta jna hoja de recomendaciones para visitar en Gran Canaria (hecha a mano por el!! Un puntazo!)\nEn las oficinas, me atendio Carmen que en todo monento fue amable y clara con las condiciones del alquiler.\nEl vehiculo estaba en perfecto estado (era una marca desconocida para mi), y facil de conducir.\nA la vuelta, la devolucion fue rapida y sencilla y en cero coma, antonio te deja en el aeropuerto.\nSin duda repetiria con esta compañia.\n\nLa unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de Booking para llegar al sitio de recogida, ya que no son claras. Deberia de empezar diciendo que hay que SUBIR a la planta de SALIDAS (no queda claro que hay que subir, ya que dice “ve a la salida” y se entiende que es a la salida del recinto. Sin embargo cuando llamas por telefono al numero de contacto que dais para la recogida, las instrucciones son mucho mas claras. excelente experiencia. hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin embargo la regogida fue a tiempo y el trayecto a las oficinas es realmente corto. antonio, el encargado del traslado fue sumamente amable y nos dio hasta jna hoja de recomendaciones para visitar en gran canaria (hecha a mano por el!! un puntazo!) en las oficinas, me atendio carmen que en todo monento fue amable y clara con las condiciones del alquiler. el vehiculo estaba en perfecto estado (era una marca desconocida para mi), y facil de conducir. a la vuelta, la devolucion fue rapida y sencilla y en cero coma, antonio te deja en el aeropuerto. sin duda repetiria con esta compañia. la unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de booking para llegar al sitio de recogida, ya que no son claras. deberia de empezar diciendo que hay que subir a la planta de salidas (no queda claro que hay que subir, ya que dice “ve a la salida” y se entiende que es a la salida del recinto. sin embargo cuando llamas por telefono al numero de contacto que dais para la recogida, las instrucciones son mucho mas claras. 5 2025-01-25 01:27:48.342132+00 es v5.1 A1.01 {J1.01,O1.01} V+ I3 CR-N {} {"A1.01": "Excelente experiencia. Hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin", "J1.02": "La unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de B"} {0.042256225,0.016754508,-0.028635694,-0.029586626,-0.09683659,-0.00924523,0.08808046,0.023885721,0.010624985,0.04438462,0.108363844,-0.026960514,0.007026688,-0.02316425,0.04813218,0.04122001,0.04361738,0.030731112,-0.060239762,0.07016437,0.13340814,-0.037980925,-0.07409305,0.11296758,-0.16134495,0.00407927,-0.04486709,0.039449282,-0.104645334,-0.07026553,-0.078104384,0.09136101,0.027745655,-0.031500485,0.010002789,0.008492202,-0.0014716296,-0.08828118,-0.031521596,0.017061185,-0.1060485,0.0042907544,-0.027924845,0.0072873062,-0.049641743,-0.09639458,0.04121548,0.057430204,0.0744731,-0.01811581,-0.051179864,0.016210275,-0.0028016134,-0.023460392,0.012290845,0.04275889,-0.04778094,-0.010686729,0.06702569,-8.53299e-05,-0.034410145,0.044775493,-0.00902608,0.053900283,0.012330481,-0.047267098,-0.007533329,-0.028310344,-0.014950436,0.00768354,0.038489286,-0.09453257,-0.043606613,-0.0028709625,-0.03097443,0.07767801,0.02635139,0.0030464046,-0.036819603,-0.030585904,0.04156219,-0.0536394,-0.026821302,-0.07431626,0.011685611,-0.046191912,-0.035177704,0.018284477,0.043826077,0.037335917,0.007502844,0.04551187,-0.053367943,-0.051124256,0.041382268,-0.0030602152,0.027499424,-0.025197068,0.037230574,0.00033269636,0.088648215,0.041771896,0.0605362,0.04453838,-0.07316081,0.010090143,0.055220082,-0.05752843,0.028203012,0.045528106,-0.11483557,-0.051601052,0.041711982,-0.05932749,-0.10848623,0.016776266,-0.04391925,-0.035802152,0.026049936,-0.05935469,0.0051915236,-0.03291771,0.073993325,-0.019260604,0.043090016,-0.07821748,0.06462851,1.2705882e-32,-0.052065507,-0.012549591,0.008458341,0.08165985,0.05704523,0.03181223,-0.058313154,0.0069939126,-0.036519054,-0.024613708,-0.08026737,0.05633137,-0.005007617,-0.025205437,0.090210356,0.0039052172,0.0149050355,-0.053399846,-0.007361239,-0.0078956485,-0.04476527,-0.0010720498,0.032788504,-0.023271384,-0.020589806,0.06153121,0.008695323,-0.05183046,-0.035592385,0.055209734,-0.013539962,0.03600365,-0.021389568,-0.033459667,-0.002116147,-0.021225771,0.01797696,0.0383896,-0.08248146,-0.0635074,-0.09485795,-0.016189495,-0.013496222,0.06381134,-0.05263816,-0.03806368,0.05414515,0.059562873,0.05823284,0.052651796,-0.028534004,-0.051365465,0.002969486,-0.065928765,-0.044632185,0.025698356,-0.026017386,0.029103143,-0.036027536,0.014000307,-0.0123720355,0.045228984,0.02629918,-0.056085378,0.029790029,0.004723734,-0.020251133,0.037215564,0.1520059,0.0445957,-0.02287368,-0.03189938,-0.03313974,0.07557912,0.044152275,0.017432904,0.023295157,-0.0028399203,-0.08033488,0.030879997,0.006820672,0.0067402013,0.023446752,0.049318746,0.038286198,-0.0009513696,0.022237478,0.03302301,-0.020100975,0.124318264,-0.029440204,0.104996294,0.10491906,0.024255488,0.083026506,-1.4342101e-32,0.024825834,0.03293379,0.023250213,-0.0018639332,0.021621093,0.021130862,-0.043006375,-0.052348,-0.041522224,-0.13233978,-0.110245615,-0.07642358,0.08378541,-0.02539051,-0.038633943,0.0603443,-0.034104835,-0.100529596,-0.11718546,-0.013916009,0.024890473,0.009282794,-0.0075160023,-0.041607782,-0.036749437,-0.04108146,-0.023068354,0.058337007,-0.06721332,-0.0033760453,0.050036278,0.062084615,0.0038104798,0.079934016,-0.031178344,0.038553853,0.038712166,0.05127848,-0.017101375,0.04371385,-0.0012381969,0.059403844,0.013159728,-0.047495686,0.04031502,0.004617278,0.07306422,-0.17093326,0.029233316,-0.010371165,0.073894285,-0.08820194,-0.08003079,-0.011202498,0.11723629,0.015262568,0.028913733,-0.12905674,-0.026428606,-0.05580451,0.046928678,-0.006679564,-0.033919785,-0.039300572,0.051490366,-0.045185365,0.032922816,-0.010595159,-0.021377716,0.025466572,-0.00076785334,-0.0013611781,-0.052551836,0.023191107,0.009398784,0.0010113289,0.023214526,0.0024813178,-0.0047278726,-0.0224783,-0.036565997,0.019137872,0.026018042,-0.06880255,-0.017483031,0.014978281,-0.02808573,0.0018849437,-0.055832773,0.025659567,-0.007085673,0.04761244,-0.038680524,-0.035259973,-0.059158705,-5.7830153e-08,0.007556612,-0.010999544,-0.041024625,-0.006755205,0.048834894,-0.016096322,-0.017070962,0.015879944,-0.007946841,0.013222728,0.05962574,-0.0077346726,-0.03372324,0.09622713,-0.029800782,0.044802327,0.027703978,0.08836799,-0.04478439,-0.057637144,0.031486697,-0.029686172,-0.055337448,-0.00027335726,0.028343126,-0.059656426,-0.08011345,-0.0102993045,0.035763964,0.02599187,-0.06423537,-0.028934265,-0.024534987,-0.11428609,-0.1084487,-0.076423064,-0.0063355546,0.017627656,-0.04836031,-0.04341125,0.1093811,0.01802449,-0.081246145,-0.0047631715,-0.011531434,-0.07098445,0.021841241,0.03829852,-0.07553547,0.09649687,-0.049131405,-0.03301723,0.10346219,0.026400654,0.025568984,-0.034788106,0.009296209,0.048759546,0.008901659,-0.016025787,0.033751637,0.060258973,-0.05238852,-0.058301046} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:06:09.420482+00 2026-01-25 01:27:51.515307+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 475 google Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB 1 t 478 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur l'île\nEt l'accueil très chaleureux nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur l'île et l'accueil très chaleureux 5 2025-08-28 01:27:48.342136+00 fr v5.1 O1.01 {} V+ I2 CR-N {} {"A1.01": "Et l'accueil très chaleureux", "O1.01": "Nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur"} {0.070415,0.07375907,-0.029795386,-0.057980075,-0.039341677,0.0005152495,0.014048999,0.056001227,0.0026380045,-0.0030661605,0.09165772,-0.092476286,0.0640682,-0.041746307,-0.022218728,-0.040886365,-0.012603466,0.016876115,0.045539577,0.024890376,-0.017378088,0.012549812,0.022358183,0.042374678,-0.104592316,-0.028573846,-0.04636122,0.028036362,0.002419859,-0.04886134,0.036812324,0.0093973745,-0.024779018,0.015092778,0.0072997063,-0.079294875,-0.007936108,-0.039881762,0.012919205,0.05476725,-0.055843115,-0.0047262283,-0.08206217,-0.039404426,-0.029410725,0.0076322323,0.059624474,0.0623205,-0.019642184,-0.04627668,0.016707035,0.032313164,0.03228449,-0.025377763,-0.088678546,-0.016372588,-0.06203918,-0.047204673,0.09227324,-0.054015644,0.1464222,0.0015219811,-0.0067483676,0.025231082,-0.11938772,-0.059616532,-0.0070826365,-0.053806424,0.005839444,0.015708908,0.080681495,-0.018625619,-0.07426575,-0.06559155,0.04613821,0.036476724,-0.053370643,0.029230814,-0.06983638,-0.18006206,0.017553372,0.0022022089,0.046682965,0.029751742,0.06627825,-0.065749474,0.054837365,0.019091466,0.062080458,-0.018546777,0.01712307,0.012824761,-0.07819349,-0.039326366,0.006645982,-0.016071042,-0.011643296,-0.05724355,0.049490735,-0.019052,-0.008871062,-0.03837934,-0.023622686,0.10675372,-0.04838685,0.07487509,-0.044354845,-0.07194096,-0.03407335,0.026389463,-0.025717776,-0.043389898,-0.009922182,0.0020807798,-0.04479559,0.03836967,0.005678515,-0.066647306,-0.052844413,-0.01668968,0.03155136,-0.02954249,-0.021716502,-0.026970344,0.040405776,-0.0011002808,0.12217599,7.4081256e-33,-0.1262563,-0.03771049,-0.06033342,0.024070095,0.05163002,-0.070943765,-0.083317414,0.066918254,-0.0009567173,0.027376698,0.0055024503,-0.012312298,0.008139897,-0.038304925,0.052120674,0.038618915,0.060010757,-0.029742159,0.015043281,0.0067646275,-0.09831361,0.00557031,0.036484554,0.034578327,0.051213216,0.0029862337,0.002152461,-0.00557182,-0.057642587,0.021437144,-0.015383067,-0.067340516,-0.009994539,0.064238384,-0.0058908137,0.069330946,0.03751668,0.042928886,-0.016624324,0.04130129,0.04076362,-0.055775106,-0.05242992,-0.005082089,0.042883176,0.007430611,0.03200545,-0.0038396225,0.027937006,0.061847046,-0.05243714,0.030897299,-0.082542345,-0.09906527,-0.025951233,0.011106118,-0.122443095,0.03281362,-0.08671543,-0.047160808,0.03517177,0.055023044,-0.006613898,-0.06076851,0.028204937,-0.008214464,0.047437098,0.04048349,0.03562548,0.028689606,-0.062893085,0.0338082,0.039210245,0.084511906,0.05001902,0.054558743,-0.073882096,0.013073634,0.012835898,-0.04278122,-0.07287089,-0.0016648961,-0.082010046,0.007843973,0.09210168,-0.0543397,-0.0025923264,0.0030764323,0.05349055,0.075491466,-0.017725049,0.02977708,-0.019612417,0.036527023,0.03439118,-1.0590169e-32,0.022887057,-0.0070108636,0.04993333,0.04257491,-0.030093635,0.035495713,-0.034138355,0.055477913,-0.042753298,-0.04341573,-0.15820803,0.012392389,0.11933247,-0.06197092,0.071683325,0.08288935,0.008249746,-0.043906912,-0.10263839,0.018303867,-0.07142501,-0.056903854,0.099197134,-0.087590426,-0.04942317,0.0012565575,0.031023556,-0.025016459,-0.053869896,0.010849865,-0.026023705,0.021358732,0.071372494,0.002911432,-0.053364914,0.046899673,0.04698807,0.06993198,-0.017932229,-0.009929643,-0.034408446,0.03888197,0.06452131,0.017476162,0.025624868,-0.06806011,-0.005588591,-0.05382071,-0.046347804,-0.04631465,0.130709,0.054976102,0.017549895,-0.010078565,0.06748101,0.10259842,-0.012682773,-0.04331579,0.0029066105,-0.0028682477,0.05643709,0.044263527,0.001435688,-0.036859848,0.0797864,-0.03063728,-0.14282995,4.919726e-05,-0.027337885,0.045078445,0.108339146,-0.038669664,-0.06341756,0.02462532,-0.036499847,-0.010734036,0.019752536,0.039041433,-0.022782821,0.049322464,-0.11559826,0.045778684,-0.029892065,0.0063345046,-0.012667757,-0.027648069,-0.033406608,-0.06865839,0.01065311,-0.0449548,0.045340694,0.045126587,-0.0647928,-0.054215893,-0.049110785,-4.3162828e-08,0.048627622,-0.020807337,-0.068037145,0.06885145,-0.008764769,-0.10130132,0.043186113,0.030938618,-0.045620278,0.067806214,0.024465615,0.029474696,0.017670346,0.031437736,-0.0763002,0.04451684,0.02509989,-0.025091967,-0.035409134,0.005095949,0.041305125,-0.06316882,-0.06423548,0.024851222,-0.05313856,-0.11182383,-0.019132037,-0.1141963,-0.018595124,-0.059942458,0.01438408,0.019622969,0.02612979,0.00792944,0.027325284,-0.045898072,0.0053428304,0.05902151,0.007880892,-0.010740793,0.066694535,0.024481038,-0.00044259228,-0.01925421,0.008567294,-0.04400632,-0.009944516,0.04267254,0.0021337771,0.06784184,-0.060323182,-0.040302876,0.039866038,0.069061264,0.03069446,0.002490333,0.023957977,-0.03244231,-0.042587344,0.06063961,-0.053979166,0.082661614,0.017709622,-0.061842468} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:16.148276+00 2026-01-25 01:27:51.517362+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 553 google Ci9DQUlRQUNvZENodHljRjlvT2xCelpsRjZNR1IzY21zMWJtOWlVbU5zY1dsMlpuYxAB 1 t 556 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Presentar una reclamación en las oficinas de protección al consumidor en España y en Bruselas. Esto funciona. presentar una reclamación en las oficinas de protección al consumidor en españa y en bruselas. esto funciona. 1 2025-09-27 01:27:48.342528+00 es v5.1 J1.01 {} V+ I2 CR-N {} {"J1.01": "Presentar una reclamación en las oficinas de protección al consumidor en España y en Bruselas. Esto "} {-0.04135818,0.00831577,-0.02367345,-0.058345895,0.026697516,0.031119278,0.13958347,0.05011093,-0.013348055,0.008650972,0.11064813,0.014297667,0.044418007,0.050461404,-0.034576446,-0.03995526,-0.03143025,-0.052558824,0.005748696,0.047934674,0.064034075,-0.028845245,-0.06118982,0.10014016,-0.055814024,-0.07364501,0.014251503,-0.028241845,-0.053278733,-0.021409614,0.015534352,0.01711542,0.091705225,-0.06295625,0.047355674,0.011114308,0.009271287,-0.049913526,-0.045606013,0.05389468,-0.08418088,-0.027676431,-0.08192679,0.007147811,-0.03205699,-0.054247383,-0.00043135774,0.036830883,-0.006012047,-0.002995881,0.05834384,0.0026005781,-0.0085682655,0.014213519,-0.013005206,-0.072364114,-0.00038746852,-0.05219807,-0.04689598,0.07640434,-0.0076047173,0.06276774,-0.044280827,0.0036031296,-0.008903962,-0.013159094,0.0035259726,0.09624951,-0.07416362,0.084556885,0.06907626,-0.072311975,0.05907166,0.0151541345,0.027789835,-0.025580078,-0.007227724,-0.0583445,-0.10106652,-0.047740694,0.064700305,0.021205477,0.00027219788,-0.045764368,0.048126843,-0.020794788,0.01219671,0.02161349,0.06454582,0.023793489,-0.0026273094,0.05557695,0.020304523,0.02546256,-0.05544795,0.0247695,0.056279447,-0.059028655,0.05977399,0.021078357,0.019217081,-0.0721984,0.06472902,-0.09125026,-0.03485816,-0.0044852346,-0.059537724,-0.063381635,-0.0011317065,0.061904892,-0.02029254,0.0004714643,-0.0032239174,-0.024896009,-0.05707553,0.06196002,0.03427437,-0.08699176,0.053849652,-0.085717745,0.075124554,0.039958533,0.0435806,-0.0774533,0.02013126,-0.031749927,0.07093349,2.3977124e-33,-0.14100021,-0.08922458,-0.04603906,0.0988989,0.04268456,0.017248228,0.007002732,0.017327929,0.044623245,-0.107110135,-0.033125103,-0.012651457,-0.021541178,0.00096021465,0.040473007,0.022069458,-0.004737856,0.0012395902,0.036126345,0.04976713,-0.052725065,-0.0280867,0.057339754,0.06289812,0.013772677,-0.006323649,-0.008940685,-0.037970025,0.0041562575,0.03380804,0.098965116,0.013949595,0.0058617233,0.023314156,0.022135898,0.11303962,0.019127792,0.004769734,-0.030510727,0.006244206,-0.01936041,0.007904549,0.0458535,0.05365895,0.045827042,-0.033200756,-0.06431956,0.034094114,-0.041096866,0.04524248,-0.010364038,-0.043072447,-0.006952367,-0.083058454,-0.08214921,0.07698809,-0.04887187,0.01468546,0.025186865,-0.032368567,-0.021866098,0.061895423,0.0083679715,-0.012461337,-0.060785692,-0.07055582,0.025383266,-0.018524103,0.053465784,-0.0084209265,-0.121668965,-0.01973301,-0.0043452266,0.058554273,0.0009342873,0.005445489,-0.04808557,0.033115357,0.00583123,0.021608863,-0.07913914,-0.083804995,0.02911057,0.034976475,0.0030490775,0.10069609,0.04718315,0.080243394,0.032777846,0.08633253,0.058180343,0.04167703,0.048978064,-0.030763118,0.07242545,-5.1431764e-33,-0.011794422,-0.024695573,0.031590264,0.03783295,-0.0043575065,-0.017507087,-0.057401754,-0.03841886,-0.04419637,-0.05431576,-0.096534714,-0.018549284,0.045135647,0.015967311,-0.014911733,0.03195379,0.007107058,0.02535651,-0.105219886,-0.05033611,-0.068493746,0.0065962565,0.0566036,-0.026171464,-0.05543819,-0.048254557,-0.06405507,0.001839635,0.017906368,-0.036185943,-0.021524714,0.027956631,-0.022939531,0.012616695,-0.073243424,0.010176351,0.07371473,-0.025209475,0.036419276,-0.004442771,0.00574931,0.052333828,-0.017334692,-0.021361278,-0.09632234,0.045012966,0.04109313,-0.114865646,0.08733133,-0.045235995,0.07970993,-0.035603337,-0.05662377,-0.10185734,0.03163708,-0.038192738,0.055810127,-0.0964436,-0.03003091,0.04369798,-0.0037305593,0.048659235,-0.033043507,-0.028606301,0.05507006,-0.024548206,-0.09120495,0.030328363,0.020687047,-0.013426923,0.08953828,0.070273094,-0.08784195,-0.055766184,-0.09132983,-0.030882409,-0.05435008,-0.023134492,-0.042376578,-0.03414218,0.027858136,-0.097466074,0.0027550464,-0.009459675,0.02344448,-0.13389385,-0.0003440365,-0.067342944,-0.043604124,0.021534082,-0.12255685,0.035299532,-0.09402205,-0.0005411854,0.0699315,-3.2448565e-08,-0.015734265,-0.012254369,-0.05451906,-0.020286202,0.05597531,-0.05738412,0.030505436,0.06350561,0.040123057,0.01422062,-0.0058291233,0.05475351,-0.012132075,0.030594684,-0.05500499,0.030361522,0.03935262,0.049544625,-0.063098416,0.019342806,0.06818764,0.053065576,-0.10402546,0.0099717835,-0.0006605741,0.0032400314,0.057976242,0.058775686,0.00967213,-0.067367695,-0.046252757,-0.021152196,-0.04037576,-0.031831615,-0.0030907532,-0.0026812125,0.01952022,0.051133525,0.008542305,-0.022309368,0.027657842,-0.067321666,-0.068503864,0.012098617,-0.043740068,-0.0594404,-0.097341,0.063426405,-0.029951649,0.018106611,0.028786898,-0.032397464,0.1258415,0.021222735,0.036204197,0.010703438,0.069858074,-0.016143244,0.024508096,-0.0022518665,0.01643401,0.019252328,0.1743215,-0.032225583} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:30:08.532029+00 2026-01-25 01:27:51.837242+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1282 google Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB 1 t 1285 Soho Club unknown Pati geriausia Miglė pati geriausia miglė 5 2026-01-29 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {Miglė} {"P1.01": "Pati geriausia Miglė"} {-0.0024695385,0.05031125,-0.031313583,-0.0020935417,-0.10818079,-0.04201307,0.057008557,-0.030855084,0.050869033,-0.06872778,0.075050056,-0.06089534,-0.0024576765,-0.005384122,0.020526972,-0.0495443,-0.028043596,-0.028902415,-0.03133891,-0.016525341,-0.05007377,-0.014710767,-0.044006698,0.017030582,-0.085205525,0.009557093,0.024330571,-0.019420428,-0.045751844,-0.017426929,0.05033904,0.12086734,0.015885474,-0.026173096,-0.036853105,-0.03081141,-0.026100744,-0.074085586,0.08791994,0.10831761,-0.08076823,-0.09005167,-0.033342093,-0.040145114,0.012381098,-0.041100696,-0.005135882,0.0608831,0.058444247,-0.0087098,-0.07771695,-0.07310252,-0.020851206,-0.033160113,-0.010759895,-0.019829273,0.037582498,-0.041360945,0.020671943,0.06115085,0.039196327,0.00029972728,-0.044100728,-0.034740664,-0.009214062,0.03379405,0.01764002,-0.04059705,-0.03556497,0.031830847,0.03601482,-0.04950279,0.010553775,0.05631537,-0.07761201,-0.04811221,-0.064709514,0.006172187,0.03831892,-0.07941866,-0.029242128,0.045422196,-0.036060903,0.018048503,0.08327461,-0.024344811,0.03630812,0.04518374,0.017986966,0.0653582,-0.02964311,0.03301218,-0.11309223,0.00063905003,-0.035263825,0.0027685973,0.011938407,-0.10640751,-0.07426855,0.1227173,0.031099599,-0.011002056,0.018272191,0.048085812,-0.08749284,0.04716178,0.007846162,-0.04509997,-0.021795215,0.014769518,-0.05264138,0.0028197228,-0.09114899,-0.10152999,-0.07594293,-0.010366802,0.03341548,0.019726094,-0.012087238,-0.06521818,0.0039896294,0.010207839,-0.035705265,0.014752617,0.012434282,-0.036687654,0.0002831806,2.7999026e-33,-0.02027236,-0.057754703,0.007617946,0.0033061525,0.019454394,0.010474806,-0.06409745,0.045598947,-0.04470642,-0.07571925,-0.00891879,-0.099728666,-0.07526722,-0.02175096,0.040391408,0.06024091,0.0061069205,-0.0073237075,0.01465515,0.01449007,0.027427094,0.052029364,0.08673555,-0.023738038,-0.017057704,0.03303,-0.005485829,-0.06992277,-0.019022992,0.06760127,0.08786631,-0.059391044,0.013990362,-0.09122597,0.0164694,-0.020941833,0.020072127,-0.07213776,-0.08950112,0.030041456,-0.014493711,0.07525077,0.038183343,0.04441378,-0.024693199,0.012360266,0.040537953,-0.019393079,0.05865339,0.03172169,-0.04660622,-0.047714848,-0.032461118,-0.0103336815,-0.0071959407,0.012156638,0.018328859,0.07255036,0.061852984,-0.0658079,0.05617752,0.041996483,0.013143028,-0.021879295,0.034223065,0.061743807,-0.016980927,0.037349593,0.11810382,0.054894716,-0.044305924,0.0074880933,0.031830683,0.07354675,-0.033886313,0.041783635,0.04462533,-0.037488926,0.014776446,0.012235111,-0.070938244,0.0046091015,0.06970233,-0.035194643,0.03504412,0.11320372,0.026796678,-0.013458492,-0.03976279,0.118009984,-0.024106802,0.12346791,0.07806697,-0.08212682,0.024108352,-2.4917288e-33,0.0487849,-0.05722361,-0.047971312,-0.08620415,0.00494105,-0.017995726,-0.14617324,0.02667507,-0.007252308,0.02837534,0.016188959,-0.046510514,0.10404275,-0.04460988,-0.04723034,0.062241193,0.07853941,0.045924313,-0.059932094,-0.029688066,-0.07375089,0.060918294,0.012968521,-0.011211545,-0.02656447,-0.033825535,0.07654428,0.016278302,-0.10762245,-0.0368624,0.019990344,-0.061226234,-0.060521778,-0.043627404,-0.004756558,0.048614457,-0.0316475,0.06084716,0.041581877,0.06332077,-0.0416909,0.025249599,0.050819688,0.091686435,-0.015961684,0.015733864,-0.08406308,-0.040254675,0.0071621872,-0.0537916,0.07894649,-0.040382266,0.008571634,-0.047975764,0.08855175,-0.062433325,0.010670121,-0.112576395,-0.025002727,-0.044113055,0.035455257,0.018684436,-0.0072500487,0.009395544,0.06865669,0.111489765,-0.08379073,0.07770273,0.06715075,0.046372697,0.078652374,-0.014502941,-0.073284455,0.055803925,-0.097766735,0.027490556,0.0016167103,0.06284808,0.008372974,0.02485214,0.03042234,-0.09413321,-0.11305098,-0.019482233,-0.007241435,-0.010781102,-0.020050252,-0.000875568,0.067796215,0.08427475,-0.028140439,0.11174706,0.014749937,-0.049574245,0.066955276,-1.8130942e-08,-0.03484866,-0.07310205,-0.055240057,0.03378792,0.008376158,-0.010642819,-0.020317793,-0.04838509,0.023907965,-0.031901065,0.023268424,0.04840827,-0.009337129,0.007584732,-0.035074268,0.05185554,0.043390293,0.056622498,0.031334817,0.0058227503,0.08609393,0.027860573,-0.007821146,0.0016555157,-0.018137366,-0.038878843,0.044939425,0.036806375,-0.0011385578,-0.046273675,0.03165627,0.050300185,-0.010288045,-0.06968556,0.023032077,0.08466613,-0.016955592,-0.02328758,-0.017167151,-0.016777536,0.05699575,0.012752,-0.030189699,-0.026473626,0.00074622425,-0.024650889,0.07962933,0.031413976,-0.017203027,-0.0632606,-0.0057471194,0.055762265,0.05213366,0.121065155,-0.0034531776,0.05018879,0.047322504,-0.017467322,-0.0084999325,0.017733416,0.10316988,0.04692182,0.097770765,-0.016832614} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:33.8688+00 2026-01-29 18:36:00.679179+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1284 google ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE 1 t 1287 Soho Club unknown Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi! barmenai aukaciausio lygio!!! net straight atejus super aptarnauja ir bendrauja,patys geriausi! 5 2024-01-30 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi!"} {-0.017414512,0.04373886,-0.042043544,0.00268166,-0.08946273,-0.010344624,0.0013573956,0.07747611,0.011146083,0.02326037,-0.0022483587,-0.017347384,-0.039496887,-0.007794019,0.033700205,0.0114073055,-0.11805908,0.04774731,0.00016256166,-0.008159067,0.023810737,-0.05524286,-0.055348825,0.040038634,-0.020379683,0.029981429,0.016416589,0.0088348165,0.0034570957,-0.056348678,0.016503507,0.09592241,0.034718994,-0.0201904,-0.044749398,0.0068973526,-0.030225119,-0.08948758,0.07626814,0.113824174,-0.044617724,0.024208935,-0.010498357,-0.032684326,0.051435843,-0.0057837362,-0.055600196,0.07268236,0.020906385,0.008018072,-0.044059012,0.010630772,0.05295854,0.037008233,-0.06523197,-0.082270205,0.010542002,0.021151608,0.0033705733,0.05006711,0.094652265,0.00041384503,-0.016877955,0.011272315,-0.042291235,-0.039345264,-0.092456274,0.07503224,-0.026036348,0.03616469,0.09909856,-0.033746477,0.013143587,0.015821237,-0.047150087,-0.050941117,-0.043922395,-0.014379502,-0.011473039,-0.05156173,0.04298132,-0.113771565,-0.017348388,-0.020516003,-0.015648542,-0.007981642,0.0069232252,-0.0044774306,0.075190395,-0.011466408,0.029165575,0.032972407,-0.022999838,-0.061260235,-0.059187997,-0.0002780534,-0.012525936,-0.14220935,-0.11937622,0.053392004,0.036203243,0.046025902,0.086398475,0.0037925413,-0.07345352,0.090760745,0.032290496,0.023019707,0.03292392,0.026473975,-0.016635347,-0.08725299,0.014330556,-0.09984208,-0.046780795,0.025581272,0.030381512,0.057737645,-0.07636831,-0.019341176,0.0457362,-0.011129724,-0.0068702665,0.03602543,0.09654211,0.060805816,0.03801885,8.938855e-33,0.02008193,-0.027854431,-0.08439125,-0.005462276,0.02248894,0.01686848,-0.0693155,-0.024639424,-0.075826176,0.007573036,0.0023437238,-0.015140849,-0.019790879,0.0289859,0.04325434,0.06964781,0.009769005,-0.060308497,0.029893698,0.03647661,-0.007123129,-0.046618715,0.0608538,0.00481114,-0.01568211,0.019691829,0.059535425,-0.029577551,0.012612323,0.046054445,0.027358547,-0.04468012,-0.05390533,-0.066518106,-0.02652692,-0.06320642,0.0016386913,-0.038246047,-0.004734425,-0.026644334,0.046232242,0.007917396,0.049081538,0.015781663,0.003982013,0.038439747,-0.026950262,-0.018509941,0.121913664,-0.021141028,-0.10456349,-0.03608211,-0.09521662,0.031644724,0.028197773,0.013223941,-0.057801474,0.12542616,0.07462334,-0.019538436,0.027012633,-0.0047060936,-0.0058599133,-0.06589882,-0.025231067,-0.023572251,0.018248381,0.060432687,0.10396597,-0.021209382,-0.03381381,-0.047926504,-0.017756458,0.067243084,-0.090617314,0.022473337,-0.0031082476,-0.030282944,0.048472192,0.07391868,-0.067495376,0.036341622,-0.025874134,-0.03175632,0.078076124,0.077428445,0.06800409,-0.08263687,-0.01940272,0.07744123,-0.032525145,0.05862944,0.11336298,0.030853184,0.01864472,-8.537207e-33,0.00027963764,-0.025495421,-0.04602439,-0.013706611,0.05662752,-0.039949775,-0.22504628,0.06522475,0.03562694,0.0125749875,0.018963266,-0.050512854,-0.02036321,-0.0010954969,-0.051221304,-0.013542951,0.08322553,0.02464842,-0.072682105,-0.009446538,-0.015099293,0.03659928,-0.02712752,0.019875247,0.001947483,-0.0058800075,0.03872298,-0.042736385,-0.024303861,0.019999234,-0.03612841,-0.025496019,-0.10091964,-0.024530116,0.011928562,0.049107313,0.09711292,0.04484447,-0.00085997087,0.043609772,0.04022391,0.054505043,-0.038475648,0.025642643,-0.020750212,-0.029091975,-0.041701406,-0.006008129,-0.15153496,-0.080162026,0.048352875,-0.03855236,-0.011165579,-0.023893652,0.05475117,-0.018353414,0.0033439416,-0.030113185,-0.09106526,-0.0115072215,0.0038262813,-0.050023012,-0.004640175,0.046921372,0.065194875,0.05487559,0.0016687158,0.05099045,-0.0021240227,0.035457883,0.0003557989,-0.053334557,-0.0951565,0.12256303,-0.04938498,0.042082675,-0.00695279,0.008129567,0.055984862,-0.015259624,0.0029957471,-0.015885923,-0.050488435,-0.030216048,0.036263824,-0.064174235,0.0003099143,-0.008320483,0.038772464,0.06655117,0.009729899,0.06176099,0.0061498187,0.029004462,0.04583554,-3.470411e-08,-0.010513987,-0.06317579,-0.0011037224,0.06819434,0.08570425,-0.07401166,-0.084258735,-0.040697765,-0.06718975,-0.051845036,-0.05674787,0.04973643,-0.093884856,0.036758736,0.032744665,0.05349558,0.05568306,0.11754402,0.006831766,-0.017819101,0.12460588,-0.017564118,-0.02558055,-0.06305546,-0.10597086,0.0041590706,-0.024827253,-0.05657705,0.008238165,-0.039313804,0.052223347,0.05326475,-0.03164658,-0.054571528,-0.025093954,0.037866246,0.0070535173,-0.058996446,-0.020841094,-0.024440108,0.05551917,0.02359656,0.024975076,-0.013535615,-0.0050056647,-0.06130557,0.08179474,0.013439741,0.064273275,-0.060437776,-0.09052293,-0.04481302,0.094629474,0.007056212,-0.00036311493,0.043634184,0.0069753346,0.028524358,-0.04593455,0.052137785,0.07628446,0.04825387,0.011558782,-0.056503974} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:44.037672+00 2026-01-29 18:36:00.682542+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1285 google ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB 1 t 1288 Soho Club unknown Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kolektyvas!!! nuostabi vieta kur gali jaustis savimi ir nieko nebijot! faini žmonės naujos pažintys ir fainas kolektyvas!!! 5 2020-01-31 18:34:31.336452+00 lt v5.1 A3.01 {P1.01} V+ I3 CR-N {} {"A3.01": "Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kole"} {1.3505204e-05,0.07742687,-0.02711921,0.0027805523,-0.012251462,0.012637784,0.034341175,0.04537509,0.05869915,0.027968226,0.043710683,-0.06386786,0.06773673,0.060814578,-0.0023352522,-0.012609297,-0.1322945,0.00435206,-0.040077012,-0.047385305,-0.047717236,0.0054891137,-0.050984308,0.027161155,-0.039337125,-0.04307437,-0.02256931,-0.046718244,-0.035922527,0.012419755,0.029645093,0.093434736,0.017293936,-0.0074358135,-0.025989546,0.046857085,-0.06812198,-0.016533848,1.0535824e-05,0.00075410295,0.0014091299,-0.038951058,-0.011122163,-0.06450657,0.00076497387,0.09831348,-0.059112065,0.04707051,0.022304153,-0.01863089,-0.12562472,-0.02229942,-0.03164185,0.062575534,0.00023882643,-0.041123945,0.031489193,-0.015447016,-0.0394239,0.019644337,0.04771101,0.042162273,0.033965018,0.041428167,-0.004030804,-0.0005363538,-0.00538704,0.030576939,-0.089849144,0.10172974,0.06194794,0.02030921,0.018009372,0.036331397,-0.0829766,0.015022869,-0.034151826,0.025210256,0.041477107,-0.054467183,0.05134208,-0.033767994,-0.0031426542,0.014699234,0.020201795,-0.0031420034,-0.023387987,-0.025315903,0.071674734,-0.011181281,-0.048332933,0.11813839,-0.037778795,-0.054757625,-0.11282403,-0.043919157,-0.07490865,-0.044696886,-0.083367474,0.008482979,0.063405015,0.032592814,0.0130089605,-0.06726022,-0.09207958,0.042181835,0.01885983,-0.12135144,-0.02055677,0.11081077,-0.03800124,-0.06205004,-0.014906281,-0.051294252,0.01164841,0.063866705,0.036353804,-0.015027701,-0.08506702,0.02679892,0.054730464,-0.09033826,-0.028052263,-0.049201965,0.036684,-0.0749546,0.013413174,1.4854581e-32,-0.0018624754,0.039425783,-0.029062085,0.023723612,0.0047317315,-0.059248023,0.023580479,-0.0651898,-0.06455296,-0.028599339,0.0061964593,0.007878854,-0.01837938,-0.012313877,0.06580228,0.10676434,0.07192921,-0.061154332,-0.0442391,0.0789862,0.009712303,0.001185497,-0.024323162,-0.008318851,-0.062740445,0.052164942,-0.002633635,-0.06801511,-0.054003514,0.012310276,-0.0043274118,0.014985698,-0.017492509,-0.023441546,-0.0022693193,-0.0220358,-0.03181922,-0.021760797,-0.036319476,-0.017679475,0.030160774,-0.025771951,0.030223561,0.018793426,0.019406522,0.08020086,-0.023954162,-0.016185546,0.077641726,-0.0511715,-0.07615605,-0.058821827,-0.020913487,-0.02359311,0.11974514,-0.016004186,-0.056017075,0.016271256,-0.034778804,-0.08663033,0.0022034138,-0.12621889,-0.058742695,-0.07359836,-0.029668622,-0.055482373,-0.0452659,-0.036232118,0.014846805,-0.024503699,0.028693637,0.046088733,-0.042320263,0.08090742,-0.023798177,0.008821054,0.03189377,-0.017423889,0.047313143,0.011156714,-0.014112843,0.0075798323,-0.033845495,-0.01963378,0.07626598,-0.034906667,0.07006351,0.00805429,-0.020940837,0.06496126,-0.043028757,0.020963063,0.11093772,-0.0014352927,-0.06571573,-1.3666006e-32,0.060935464,0.043876294,-0.09218485,0.04489302,0.052885383,0.031582724,-0.07674564,0.033659205,0.012636015,-0.037012007,-0.0009685545,-0.12138626,0.05897947,0.04983945,-0.06150151,0.0034502752,0.17016166,0.056714725,0.009828068,-0.051880684,-0.039698992,0.008598265,-0.03703394,-0.03963664,-0.059674535,0.038228016,0.024995169,-0.03789829,-0.13885045,0.020561067,-0.01204419,-0.037011057,-0.058859408,-0.022701627,0.04027833,0.023478126,0.10192821,-0.092732534,-0.041969944,0.030714765,0.010567581,0.057005927,0.016728662,-0.01645832,-0.08619185,-0.048060738,-0.055013217,-0.05743302,-0.06667008,-0.06544583,0.10811954,-0.039644495,-0.0106786555,-0.004324603,0.019497113,0.06096518,0.09922321,-0.010484837,-0.030793494,-0.051277805,-0.008991844,0.038008377,-0.023391843,0.028254695,0.0056596235,0.022198072,0.046586704,0.11648078,-0.0006599312,0.007142972,0.053721923,0.0061206743,-0.0355669,0.072729506,-0.1097441,-0.012393665,-0.018754369,-0.013258295,0.009264053,0.0029755367,-0.019295381,-0.062871784,-0.0050622714,0.012317215,-0.010233049,-0.038312975,-0.008621225,-0.03780944,0.05339674,-0.0051847063,-0.04910299,0.07130964,0.026988959,0.05720675,0.033640955,-4.3957982e-08,0.032735515,-0.079089575,-0.0748473,-0.044225767,0.025584534,-0.015745083,-0.055101573,-0.061799653,-0.024738597,0.03914736,-0.051661003,0.014856226,0.0079981,0.034135,0.0266505,0.11343106,0.16396,0.082609594,0.0029933623,-0.047172073,0.07213062,0.041700367,-0.08632687,-0.05618866,-0.048357237,0.0607757,-0.0042449925,-0.030050382,-0.0054978477,-0.02212152,-0.0012375456,0.07155759,0.043352153,-0.043929156,-0.027593646,0.08214538,0.04888903,-0.006648301,0.023105219,-0.009829115,0.030704804,0.08971061,0.0010527566,-0.011566991,0.052475948,-0.049686342,0.034913782,-0.039761875,0.0075839874,0.027186716,-0.08345569,0.099157214,0.032917447,0.062054772,0.010271837,-0.017747238,0.0963779,0.014883752,-0.0053553157,0.040492967,0.09628673,0.05779441,0.026275992,-0.026181234} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:54:49.617155+00 2026-01-29 18:36:00.684091+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 480 google ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB 1 t 483 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nos atendieron rápido y nos dieron todo tipo de facilidades. El coche muy nuevo y limpio. Sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos consejos para nuestra estancia. nos atendieron rápido y nos dieron todo tipo de facilidades. el coche muy nuevo y limpio. sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos consejos para nuestra estancia. 5 2025-01-25 01:27:48.342148+00 es v5.1 J1.01 {} V+ I2 CR-N {Sergio} {"A1.01": "Sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos co", "E1.01": "El coche muy nuevo y limpio.", "J1.01": "Nos atendieron rápido y nos dieron todo tipo de facilidades."} {0.017009528,0.028772451,-0.0034374928,-0.008556764,-0.023921136,-0.016228586,0.054064333,0.058918636,-0.057089366,-0.0004439711,0.12334742,-0.0147434175,-0.040053688,-0.022550562,0.035709467,0.0059661404,-0.018056154,0.05679352,0.006734865,0.035797097,0.080047764,-0.032922033,-0.09164032,0.12120506,-0.08851981,-0.0017717044,-0.009974372,0.06898903,-0.04399892,-0.10218786,-0.052525174,0.03903301,0.019882565,-0.029022507,-0.01194984,-0.025945712,0.07110323,-0.041827176,-0.042080104,0.0016228108,-0.14215767,-0.00042393644,-0.000433648,0.071800776,0.040165767,-0.027108707,0.012580739,0.082236156,0.11124231,0.019402217,-0.070637874,-0.06374031,0.01571943,-0.04433845,-0.0023040737,0.03986615,0.005237518,-0.022092618,0.08395028,-0.013029427,0.018685445,-0.02014735,0.027585391,0.01780632,-0.019771298,-0.042848986,-0.02987642,0.010333028,0.0020728991,0.043440178,0.07234754,-0.117256485,0.049035884,0.010634588,-0.06889304,0.0049232445,-0.048852477,0.031625405,-0.05100872,-0.02402883,0.091003604,-0.064246014,-0.07894405,-0.078772575,0.02183561,0.04499368,-0.06060492,-0.005180374,0.010396383,0.0064441934,-0.04404945,0.08838653,-0.014089285,-0.064966455,-0.013252442,0.029596599,0.019962233,-0.021511752,-0.0369613,0.029623896,0.10212062,0.06608015,0.08100088,0.067135505,-0.073676825,0.0372248,0.06561903,-0.045591213,0.038635317,0.016818287,-0.09311364,-0.022165926,-0.027782967,-0.09100789,-0.099787325,-0.017787706,-0.052850544,-0.050640617,-0.09486979,-0.02942188,0.050059207,-0.023066057,-0.01624753,-0.021553757,0.044055596,-0.0661572,0.045297984,1.3090778e-32,0.0030864333,-0.0053087263,-0.050191548,0.08697522,-0.0125659555,-0.024734644,-0.010359609,-0.041933034,-0.046360068,-0.031525504,-0.08413244,-0.012785364,0.0020785255,0.020234793,0.0832115,-0.026834948,-0.0086902995,-0.0016237163,-0.0045035593,-0.02140533,-0.05746949,-0.01606088,-0.024641875,-0.03276779,0.049360257,0.07908042,-0.018172631,-0.07779228,-0.04763633,0.07274502,-0.04953752,0.08194874,-0.04170426,-0.052324682,-0.026505226,-0.088008374,0.007135065,0.008671814,-0.015841518,-0.030181207,-0.0029958466,0.009808407,-0.082650796,0.032600146,-0.01686799,-0.017435366,0.04304188,0.12839474,0.13798821,-0.047257,-0.034055058,-0.044217825,-0.035165276,-0.012181184,0.042904127,0.0021558309,-0.015966868,0.045547307,-0.048172154,-0.019551821,0.04626189,0.060073264,-0.015764857,-0.0058186175,-0.031562287,0.04874639,-0.017797848,0.06668233,0.14699146,0.055321917,-0.04642536,-0.061842766,-0.086401656,0.04332552,0.003780436,-0.0006124582,0.016782908,0.01195829,-0.03440069,0.015122366,-0.034565948,0.05480697,0.022316176,-0.008986735,0.098281674,0.0846145,0.06244395,0.05393734,-0.03108602,0.06867947,-0.05093398,0.07822073,0.021321801,-0.014712411,0.02007326,-1.3890661e-32,0.050200477,-0.007261728,0.054082118,0.014730239,-0.0097651,0.0076215668,-0.09746995,-0.041348994,-0.015880974,-0.08506664,-0.13048768,-0.10627504,0.04963919,0.0050383015,0.049988747,0.09451783,-0.04318522,-0.09863542,-0.06925883,-0.024361879,0.08857755,-0.030329406,0.050270587,-0.04030158,-0.10130991,-0.031819057,-0.0068221954,0.03458728,-0.02525311,0.017368382,0.011041553,-0.008541199,0.032993224,0.06326934,-0.0109193055,0.0841618,0.0032643054,0.044401042,0.022390028,0.030773558,0.0045623775,0.049193684,0.06700831,-0.020294024,0.014355387,-0.035459552,-0.02123322,-0.10434753,-0.031379398,-0.057733577,0.08269836,-0.111827105,-0.056761105,0.0073419316,0.08821727,-0.0075574033,0.0017612658,-0.08352187,-0.11654418,-0.058130596,0.02588783,-0.044012647,-0.088581465,0.028233705,0.087474614,0.016498271,-0.032763224,-0.03063524,-0.006265977,0.03360292,0.01849112,0.015089038,-0.035262007,0.056637842,-0.03984031,-0.009548326,-0.03866102,0.06379554,0.00042449537,0.0058281245,-0.027850341,0.023648165,0.014035176,0.0015786628,-0.052683596,0.030090548,-0.06357729,-0.05351279,0.012957745,0.0053137285,0.049998302,0.033686545,-0.012007032,-0.084420025,-0.03782294,-5.26414e-08,-0.020242449,0.009954217,0.041041277,0.023567896,0.023634866,0.0718638,-0.020661922,-0.025996957,0.0071493103,0.032364957,0.02176893,-0.0474505,0.08417054,0.052596726,-0.008175894,0.014162067,0.0050241235,0.106267974,-0.020945633,-0.03680162,0.05601657,-0.0067504845,0.041832518,0.01965774,-0.035994507,-0.006725312,-0.04325402,0.0049590305,-0.008045923,0.008758153,-0.05591363,-0.03629458,-0.034015257,-0.099404685,-0.024674157,-0.01683428,-0.020174608,0.014021476,-0.054990914,-0.07260953,0.03763153,0.045285936,-0.10842228,0.015385257,0.024432743,-0.094381995,-0.0068025216,-0.024567246,-0.0817658,0.02297413,-0.035871428,-0.0474488,0.09245124,0.066320926,0.036841217,0.01688071,-0.022685466,0.036688402,-0.027364047,-0.011477863,0.05240019,0.0757398,0.016648648,-0.015453968} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:05:48.12524+00 2026-01-25 01:27:51.533252+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 481 google ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB 1 t 484 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown L’agence de location vient d’ouvrir ! Les voitures sont neuves, le personnel est très professionnel et très sympathique ! Restitution de la voiture ce matin avec Carlos et navette aéroport avec Nestor ! Navette sans attente à l’aller comme au retour, le chauffeur nous a aidé à chargé ou déchargé nos valises ! Nous recommandons sans hésiter cette nouvelle agence de location ! l’agence de location vient d’ouvrir ! les voitures sont neuves, le personnel est très professionnel et très sympathique ! restitution de la voiture ce matin avec carlos et navette aéroport avec nestor ! navette sans attente à l’aller comme au retour, le chauffeur nous a aidé à chargé ou déchargé nos valises ! nous recommandons sans hésiter cette nouvelle agence de location ! 5 2025-01-25 01:27:48.34215+00 fr v5.1 O1.01 {} V+ I3 CR-N {} {"J1.02": "Restitution de la voiture ce matin avec Carlos et navette aéroport avec Nestor ! Navette sans attent", "O1.01": "L’agence de location vient d’ouvrir ! Les voitures sont neuves, le personnel est très professionnel ", "R1.01": "Nous recommandons sans hésiter cette nouvelle agence de location !"} {0.060553268,0.103091046,0.007691716,-0.054362524,0.019597266,0.008071025,0.00047361615,0.03329074,-0.06648576,0.010209308,0.0733977,-0.04410285,0.024322081,-0.011140616,-0.0829028,-0.05599891,-0.08964195,0.015020383,0.07289976,0.04311884,-0.008940224,-0.018539406,0.0074819205,0.024844136,-0.063079596,-0.002847388,-0.012319745,0.03883886,0.014639807,0.00023717953,0.078359544,0.04865212,0.036236525,0.005769493,0.020795362,0.0041036815,0.049156006,-0.05984084,-0.0068735424,0.12070048,-0.0678967,-0.0018640512,-0.10192663,-0.04061348,0.017789667,-0.007332823,0.08961954,0.04709291,0.0153572,0.0050555817,0.0017644423,0.04942309,0.0747694,-0.048717063,-0.09419952,-0.0011979312,-0.022627288,-0.09959711,0.040960237,-0.06459361,0.018593011,-0.04261124,0.0023995608,0.015914459,-0.10854718,-0.1206195,-0.016349627,-0.034929056,0.057432376,-0.051541526,0.034975138,-0.028620616,-0.032754816,-0.0146291815,0.030337768,0.03392551,-0.05576,-0.007686826,-0.00624413,-0.17343505,0.08782356,-0.08227537,0.030683165,0.0538046,0.030118668,-0.07767864,0.01906584,0.049171384,0.07107675,-0.03329028,-0.01236992,0.05716896,-0.103780985,0.0124140885,-0.061049152,-0.050136972,-0.01337786,0.011469631,-0.08467681,0.016269157,-0.006751165,-0.0073446427,-0.024350742,0.107079834,-0.069651864,0.041215684,-0.034367066,-0.02580559,-0.02562543,-0.0060233898,-0.06196025,-0.028691094,-0.067104064,-0.04562364,0.0031217614,0.040444218,0.0055089756,-0.07511059,-0.100447714,-0.05084184,0.05899963,-0.025695134,-0.03267957,-0.034947537,0.034032766,-0.031703986,0.12476451,1.1596909e-32,-0.04034623,0.07972493,-0.06487137,0.07130776,0.06291704,0.019868588,-0.09037617,0.047202896,0.017428411,0.04511529,-0.01634578,0.023741005,0.013725615,-0.038766455,0.01836484,0.06844332,0.047101423,-0.027693855,0.006829097,-0.011453213,-0.096316196,-0.016028486,-0.056030557,0.060673103,0.11914265,-0.0026947823,-0.0014325404,-0.025215793,0.005070847,0.037425738,-0.0013197139,-0.047675963,0.024229985,-0.008712287,-0.012822647,0.0474101,0.026264753,0.014702806,-0.005077971,0.0068964525,-0.00425601,-0.026827767,0.0028607938,0.001536584,-0.032235604,0.030161139,0.035359602,-0.016771125,0.09391267,0.03635952,-0.06786087,-0.013073768,-0.08217026,-0.05043863,-0.013662317,-0.019467719,-0.12979451,0.022996198,0.021145672,-0.04331654,0.09317357,-0.008255462,-0.07370965,-0.0067652194,-0.000415781,-0.090249084,0.048280165,0.08686992,0.06532743,0.04655088,-0.083998695,0.0664763,0.06177492,0.04275363,-0.027261075,0.042250685,-0.08518551,0.04476763,0.034024976,0.0028510224,-0.04502823,-0.004089582,-0.005601249,-0.00083408057,0.090088464,-0.06731888,0.008954849,-0.0017366926,0.016921785,0.09994939,-0.032139778,0.013751549,0.047832996,0.035092283,0.012980466,-1.4264627e-32,-0.0018927908,-0.021373495,-0.059336483,-0.03912309,-0.043434534,0.05279955,0.03766377,0.0681682,-0.047408015,-0.087738335,-0.123238035,-0.029193886,0.07861002,-0.042853937,-0.008934574,0.14213382,-0.006050768,-0.011643554,-0.09651189,-0.016481642,-0.025941871,-0.07049223,0.041504957,-0.052958734,-0.048523422,0.017527811,0.05809257,-0.03402904,-0.026801849,0.03105678,-0.023927217,0.025401082,0.044669755,0.066619195,0.0054464643,0.08671987,0.03356417,0.08216779,-0.011677128,0.03328039,0.014196713,0.00217409,0.05859474,0.038215663,0.016873712,-0.024548547,-0.06530728,-0.122931056,-0.08393561,-0.08791622,0.04390758,-0.02154689,-0.022044264,-0.0051572197,0.026391394,0.0909281,-0.014400534,-0.06897065,-0.028765056,-0.033215657,0.09504688,0.03675686,-0.023102436,0.0149516435,0.029331796,-0.047705755,-0.079186365,0.0346347,0.0043503223,0.029508442,0.09234632,-0.07071338,-0.052317098,0.059266903,-0.04957935,-0.006801885,0.089794114,0.035256974,-0.050722472,0.056512374,-0.082705185,0.04047766,-0.035574146,-0.028273566,-0.050622016,0.007997343,0.018263198,-0.04156586,-0.01743334,-0.04470426,0.0009942858,0.008863398,-0.08199462,-0.07123934,-0.008334826,-5.523214e-08,-0.023440411,-0.018356815,0.010678471,0.027599573,0.006192155,-0.08666857,-0.009290835,0.0311227,-0.03319577,0.06803377,0.02713047,-0.007829232,-0.023659633,0.030212387,-0.0051668664,0.07738452,-0.011719697,0.062445294,-0.036208432,-0.025794152,-0.00082203076,-0.004723322,-0.054724015,-0.019581966,-0.045850664,-0.0371171,-0.037549246,-0.0976649,0.005211662,-0.11374554,-0.0056722355,0.045921862,-0.01416077,0.016514974,-0.044104617,-0.0136840865,-0.009753022,0.00037930816,-0.030689681,-0.047210593,0.07771113,0.0062924083,-0.06716393,-0.010545627,0.080178306,-0.06683325,0.011855657,0.016102128,-0.011972565,0.072882086,-0.041347474,-0.0033915392,0.06811272,0.04999566,0.069017,0.022632306,-0.011495988,-0.049169317,-0.0076122936,0.03679958,-0.06539819,0.039518856,-0.058101557,-0.024336578} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:05:38.512404+00 2026-01-25 01:27:51.535268+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 484 google ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB 1 t 487 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles hat hervorragend geklappt. Der Treffpunkt des Shuttles ist zwar nicht ausgeschildert, aber leicht zu finden (2.OG Abflüge, Ausgang 1, 20 Meter nach rechts). Autos und Mitarbeiter sind top. alles hat hervorragend geklappt. der treffpunkt des shuttles ist zwar nicht ausgeschildert, aber leicht zu finden (2.og abflüge, ausgang 1, 20 meter nach rechts). autos und mitarbeiter sind top. 5 2025-03-01 01:27:48.342182+00 de v5.1 J1.03 {} V+ I3 CR-N {} {"A1.01": "Autos und Mitarbeiter sind top.", "J1.03": "Alles hat hervorragend geklappt. Der Treffpunkt des Shuttles ist zwar nicht ausgeschildert, aber lei"} {-0.029743055,0.059668265,0.017809784,-0.05412991,-0.08564042,0.05538316,0.05755196,0.21236837,-0.051991116,0.009048494,0.037786797,-0.08511972,0.046849605,-0.037006315,-0.06577247,-0.03166932,0.002368608,0.04849156,0.010058264,-0.03246421,0.013546595,0.0027872368,0.057028633,0.06556751,-0.015247496,-0.009496296,-0.08828738,-0.0641919,-0.0121873235,-0.051093586,-0.03823162,0.007304084,-0.0030036222,0.011712609,0.053865135,0.000105111554,-0.006951424,-0.02233828,0.008392151,-0.03125095,-0.05874044,0.017619275,0.029000897,-0.025426418,0.03136217,0.0828605,0.03410938,0.017133791,-0.025365528,0.055642724,-0.029788854,0.01713849,0.11196299,-0.012434617,0.06613898,-0.023720903,0.0012409346,-0.030608792,0.025100116,-0.054684095,0.029020052,-0.059090264,-0.072802775,-0.03279415,-0.072759785,-0.035573043,-0.05160063,-0.070517786,0.002103357,0.027042413,0.01757729,-0.052627858,-0.04250065,-0.018560562,0.019383064,-0.033214856,0.017729001,0.038663484,-0.01438232,-0.096754424,0.027732678,-0.054099213,0.018899456,-0.02299617,-0.008605983,0.03329535,0.03322006,0.05929826,0.009790992,0.015727866,-0.032298103,-0.082198806,-0.07649083,0.034324702,-0.11206192,-0.013811588,-0.07758788,-0.047253825,0.041927207,-0.0064481846,0.046077564,0.04097456,0.03797047,0.12466007,-0.13040426,0.063164696,-0.023829289,-0.025570603,0.013391754,0.018869197,0.0138263535,-0.063837886,0.0370929,-0.044646677,-0.05520107,0.017195519,-0.033555586,-0.09962556,-0.014135491,-0.044664692,-0.03223965,-0.07347063,0.041845817,0.05629109,0.026344674,0.0293856,0.09526796,1.2275605e-32,-0.15765136,-0.010521401,-0.017228113,0.035068266,-0.0508874,-0.03579766,-0.07707718,0.033184413,0.051584166,-0.017550265,-0.080829844,0.060525995,-0.012726374,0.02126334,-0.03237791,-0.0682549,0.10162713,-0.047086682,0.007857591,-0.052129783,-0.07461012,0.008889578,0.003029996,0.04161355,0.07664397,-0.03732034,0.001440489,-0.008970693,-0.04491519,0.048926506,-0.060136206,-0.019721745,-0.032317348,-1.666029e-05,0.015421443,-0.012458439,0.025768584,0.060176115,-0.03360197,-0.045333955,0.06606001,-0.045210265,-0.040357683,-0.045785297,0.011077357,-0.018065622,0.022819439,-0.023481335,0.042430855,0.043065228,-0.0006358042,0.071959056,-0.03756179,-0.07345309,0.05419996,0.04341241,-0.05025627,0.014598227,-0.01959994,0.101678826,-0.030105846,-0.032348167,0.03431434,-0.04800958,0.06001084,0.067350134,0.012491585,0.007191109,0.04839214,0.11731077,-0.04841286,-0.0637531,0.074731246,0.018325076,0.06832564,0.04950272,0.05486605,-0.0120589705,-0.050777566,0.03584925,-0.10103678,0.025798373,0.028250156,-0.04107663,0.045575656,-0.105028175,-0.022880757,-0.017781029,0.025066208,0.082685255,-0.10199013,0.017044267,-0.0028989818,0.10071262,0.0012233672,-1.2673733e-32,0.060154486,0.07253077,-0.07949473,-0.0026269173,-0.039829813,0.05333627,-0.0048495247,0.07699567,-0.06262755,0.018236844,-0.09774929,0.016214231,0.08881984,0.011868563,-0.005520532,0.022714278,0.0857366,-0.030087046,-0.010940521,-0.009641615,0.055090602,-0.02328112,-0.012923565,0.019965181,0.0027007733,0.02717006,-0.002068865,0.063137285,-0.07547486,0.037815657,0.028667595,0.02785951,0.07963792,0.047361583,-0.05064575,-0.004243089,0.0773984,0.114651635,-0.049255926,0.05667559,-0.037745986,0.038835645,0.0014489935,-0.027406298,0.08951902,-0.010308325,-0.070156395,-0.056606002,-0.06643612,-0.05558249,0.020821871,-0.021074515,0.045886904,-0.046472117,0.080415234,0.010088379,0.04482822,-0.013941994,-0.0021035953,-0.009294246,0.08499486,0.016299687,0.06459854,-0.03295786,0.030088875,-0.064414665,-0.070367016,-0.01163445,-0.06931578,0.0248518,0.037897635,0.05625882,0.06418123,0.0120075075,-0.07660327,-0.0011183465,0.03030799,0.0312818,0.048773937,0.0052977605,-0.080312975,0.0701729,0.06283092,0.023309046,-0.12106167,-0.018859651,0.003517442,-0.024867777,-0.020279465,-0.04668889,-0.004855227,0.008442755,0.03788277,-0.022285419,-0.037271578,-5.538936e-08,-0.0259115,0.013191622,-0.021334548,0.033906966,-0.023007898,0.014118416,-0.025353098,0.07406242,-0.06673283,-0.06206436,0.014638999,-0.027275054,-0.0040075197,0.13303731,-0.015702946,-0.006196755,-0.030877665,-0.01185858,-0.07004032,-0.0024079422,0.07062118,0.020135563,0.036157124,-0.031780485,-0.025217708,-0.042184774,0.0025782574,-0.076385155,0.016596451,-0.096397124,-0.056621898,0.024316784,0.010166895,-0.008685348,-0.04235999,-0.012829423,-0.030467588,0.078037836,-0.09857615,0.08082949,0.06342473,0.008216194,-0.014154098,-0.061573677,-0.022972956,0.0053609204,-0.062090244,-0.010273787,-0.050371587,0.06041125,-0.03547471,0.048028503,-0.0031867598,0.04416533,0.0941414,0.036665678,-0.04516667,-0.11556441,-0.066291675,0.01867712,-0.06172666,0.0331549,-0.026738612,0.03550731} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:15.301615+00 2026-01-25 01:27:51.563964+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 486 google ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE 1 t 489 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan...\nLa oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora estipulada.\nMis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agradables. cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan... la oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora estipulada. mis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agradables. 3 2025-01-25 01:27:48.34219+00 es v5.1 O1.01 {} V- I2 CR-N {} {"A1.01": "Mis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agrada", "J1.02": "La oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora ", "O1.01": "Cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan..."} {0.01633291,0.067985065,0.03037737,-0.043416984,-0.061062127,-0.02304716,0.11470324,-0.008400933,-0.020136826,0.017086694,0.11075732,-0.00066068576,-0.028506564,-0.0076981266,0.043890268,0.07526884,-0.010708986,0.030720247,-0.035918437,0.039413486,0.07926515,-0.005693351,-0.078535035,0.11514328,-0.08121505,-0.0068331254,-0.03854869,0.06368218,-0.07183637,-0.06830172,-0.04845884,0.052582067,0.0073191887,0.017917052,-0.031593155,-0.058422163,0.070195585,-0.08148211,-0.032751195,0.04497204,-0.09283355,0.027964223,-0.0063148104,0.014102581,0.0018529932,-0.02400078,-0.029051766,0.04721045,0.032904383,-0.054726485,-0.063892014,-0.046262797,0.0622893,-0.015264486,-0.043093454,0.017854258,-0.01001554,0.011512591,0.07934844,-0.002596911,0.052117117,0.03382766,-0.0009124272,0.09165655,-0.010196743,-0.047442403,-0.038884524,-0.019675422,-0.062094558,0.033615407,0.09975787,-0.11510808,-0.004914987,0.06962188,-0.06770046,0.01992374,0.030258542,-0.021515796,-0.0100760395,-0.007922163,0.07050441,-0.005365445,-0.06501345,-0.067286156,0.0410595,0.006230301,-0.07545487,0.013365957,0.014082376,-0.028690193,-0.044287477,0.031603664,0.029928105,-0.0020019936,-0.010462551,-0.00016816004,0.09785547,-0.0117175365,-0.03298719,0.0012998387,0.090713166,0.056873053,0.029107215,0.0723361,-0.017080376,0.059822086,0.06792667,-0.031042527,0.07677068,-0.013843428,-0.07882341,-0.057725668,0.021054046,-0.060407028,-0.119661935,-0.007311106,-0.012053261,0.011412898,-0.061916966,-0.045326073,-0.009257928,-0.059801813,-0.05238805,-0.010890016,0.05433479,-0.12483787,-0.025143806,1.381926e-32,-0.014442598,-0.0075584156,0.017035833,0.06970083,0.07252791,0.012750587,-0.008743306,-0.017260289,-0.03758792,-0.049308095,-0.06200311,-0.0137573425,-0.045669973,-0.017810138,0.040861797,0.043319173,-0.058236852,-0.07131864,0.052936364,0.029047992,-0.02382069,-0.051502995,-0.058002017,-0.026426882,0.029549705,0.039110057,0.011698405,-0.023488455,-0.019363813,0.07936225,-0.052351687,0.022294058,0.012604357,-0.015901566,-0.040391628,-0.018159574,0.03826754,0.03394142,-0.058310315,-0.01790495,-0.023878982,-0.023812274,-0.07940415,0.0065226946,-0.03423691,-0.0004180203,0.110977456,0.06891737,0.034935143,0.0034306275,-0.0766714,-0.027921787,-0.037254512,2.265624e-06,0.050207768,0.005225588,0.0051964032,0.06359995,-0.0017700042,-0.017260471,0.038755137,0.045293957,-0.00888545,-0.0058458853,-0.0406268,-0.022170259,0.04632033,0.0324155,0.14016496,0.0689939,-0.0060472377,-0.0634107,-0.14165543,0.1063262,0.038540237,0.037856136,-0.034703795,-0.020402,-0.038479697,0.015780134,0.025567709,-0.009768563,0.041367464,0.043715123,0.07375508,0.031133417,0.070751384,0.045331053,-0.04353987,0.12905318,0.012318819,0.07522503,0.100314386,-0.013144613,0.00827648,-1.3596294e-32,-0.072236516,0.009626872,-0.026773805,-0.006326675,-0.02451864,0.022318548,-0.006233426,-0.092055276,0.021116937,-0.026360398,-0.0640934,-0.10669832,0.0071119615,-0.0015992704,-0.009926261,0.112556465,0.018200742,-0.100749284,-0.094498456,-0.057478245,0.02930152,0.016532272,0.003835019,-0.03141735,-0.068520784,-0.015954798,0.012460992,0.05397146,-0.06461924,2.8203433e-05,-0.0028578832,-0.071608104,0.02606071,0.032053277,-0.006995219,0.016082758,0.032973632,0.044036556,0.011800535,0.018836394,-0.054957952,0.03696797,0.010522222,-0.044483446,0.0029646044,0.0026801976,0.048088904,-0.21825548,-0.027298829,-0.04150988,0.07579019,-0.10708566,-0.019429987,0.011998579,0.058290303,-0.014721469,0.04724277,-0.03006872,-0.042899773,-0.039637074,0.05261077,-0.023046609,-0.0894297,-0.0444728,0.05052898,0.002788361,-0.029564967,0.008653029,0.023653282,-0.04004488,0.00086337666,-0.051774133,-0.06391922,0.032776568,-0.10997706,-0.0018757402,-0.023409292,0.025260653,0.030592958,-0.010454113,0.021556119,-0.0654025,0.057390373,-0.015534357,-0.0012830355,-0.0073973187,-0.053985704,0.06488705,-0.016865814,0.08734193,0.022838969,0.0629429,-0.0051829135,-0.07688317,-0.024613926,-5.7504025e-08,-0.0029507887,-0.04723303,0.0034407435,-0.020718109,-0.028362542,0.011898706,0.051254395,-0.04236515,0.035466615,0.056004155,0.023090024,-0.011245793,0.005571488,0.10317913,0.03102879,-0.012156521,0.06238379,0.059761528,-0.0119417915,-0.021136539,0.044150583,-0.009203134,-0.034740638,0.024272747,0.0061734044,0.014024209,-0.01119406,0.020080661,0.0400638,-0.03155059,-0.107360184,0.0036555326,-0.080379404,-0.053196732,-0.10538794,-0.041683484,-0.03285583,0.0054797134,-0.007769701,-0.023232996,0.05733994,0.0067329286,-0.088861614,0.029816858,-0.009392246,-0.040578924,0.020114793,-0.022640096,-0.0751317,0.011221739,-0.014047628,-0.08115164,0.09888427,0.058422826,0.045957852,-0.09114097,0.002765857,0.070956185,-0.03266817,-0.03094982,0.054444958,0.15584439,0.04191149,-0.034319367} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:05:28.581299+00 2026-01-25 01:27:51.590655+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 487 google Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB 1 t 490 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto. 50 minutos esperando en el aeropuerto para ser recogidos. servicio horroroso. imposible encontrar el punto de encuentro en el aeropuerto. 50 minutos esperando en el aeropuerto para ser recogidos. 1 2025-12-26 01:27:48.342195+00 es v5.1 A1.02 {} V- I3 CR-N {} {"A1.02": "Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto.", "J1.02": "50 minutos esperando en el aeropuerto para ser recogidos."} {0.04617719,0.10397427,-0.044237398,-0.016482262,-0.022216527,-0.04808255,0.060443226,-0.0023900673,0.0087576,-0.024346553,0.069250435,0.042271797,-0.007877135,-0.017093034,0.007287362,-0.025694026,0.013339457,0.041333504,-0.030594679,0.059218027,0.15585631,-0.024672244,-0.07062365,0.07433983,-0.10514236,0.040628444,-0.06285891,0.030437984,-0.09440652,-0.0829927,-0.05868784,0.001965953,0.034117088,-0.015502302,-0.007785075,-0.0060527967,0.08636824,-0.02364062,-0.037966374,0.011619109,-0.14316331,-0.034033645,-0.027549611,-0.0042252145,-0.033781912,-0.03956712,-0.01780767,-0.009378659,0.07489847,-0.031422254,-0.096551396,-0.07688692,0.046879616,-0.05424863,-0.013179683,-0.0013120477,-0.039842017,-0.026091402,0.041463684,-0.07198055,-0.011008865,0.026481662,-0.039793458,0.070883416,0.06643289,-0.084559634,-0.023110278,-0.06634788,0.02082352,0.010093935,-0.011669511,-0.08779196,0.040268634,0.050888438,-0.032889448,0.085553214,0.029110376,-0.0006134613,0.0015325295,-0.069739856,0.12283314,-0.10468437,-0.018370152,0.041876182,0.03848882,-0.0023017556,0.0070891413,0.05189544,0.065792836,0.03514613,-0.057268016,-0.051401082,-0.027444867,-0.033733904,0.06653388,-0.043857172,-0.06902311,0.008516599,-0.093938544,0.022720072,0.01763789,0.010847461,0.05293665,0.046883527,-0.02349897,-0.010732707,-0.023548936,-0.037447218,0.02665943,0.014672748,-0.1425652,-0.058447458,-0.0070434087,-0.065777704,-0.019431794,0.023033565,-0.058717154,-0.061518993,-0.046202887,-0.008230656,0.12546876,-0.0127593735,0.03702361,-0.038733266,0.056257926,5.520454e-05,0.08893413,5.5490283e-33,-0.0063163657,-0.0026270177,0.04039651,0.033389933,0.017537277,-0.04797869,-0.06575153,-0.029616294,0.02457202,0.05733451,-0.118782066,0.029651374,0.023047872,0.0017790695,0.10229208,-0.04179089,0.03368409,0.030593198,-0.02444405,-0.039952733,-0.049955774,-0.03812236,-0.023890005,-0.048890717,0.04496932,0.0018705281,-0.044466518,-0.04582863,0.019392693,0.07915351,0.044396866,0.0364941,-0.0798368,0.043311127,-0.018391073,-0.013002469,0.03368776,-0.011962387,-0.027419753,-0.02514638,-0.0653199,-0.045107286,-0.09670275,0.076948285,-0.043974016,-0.013064506,0.045382064,0.009978901,0.07091925,0.030267503,-0.0072956677,-0.014052597,-0.03009414,-0.048691027,0.0316891,0.048384663,0.06279892,0.014148369,-0.022237014,-0.017097775,-0.016804406,0.0006806075,0.039966963,-0.048156314,0.03794238,-0.0122026075,0.03810656,0.061068464,0.08353419,0.024071565,-0.09419874,-0.048532084,-0.014151984,0.039096165,0.0033041835,-0.00074366987,-0.014182809,-0.040721603,-0.07972715,0.03718352,0.004002724,-0.039657194,0.00597147,-0.0018290537,0.070273906,0.0393726,0.017567705,0.04538435,-0.0806947,0.0641697,-0.117895216,0.05184516,0.02110716,0.0042661754,0.051212337,-8.8078594e-33,-0.028787872,-0.037710316,-0.051885866,0.07464358,-0.03170497,0.052769274,-0.034650855,0.03804417,-0.048775695,0.05660038,-0.14909507,-0.07189842,0.15689439,-0.014026037,-0.024923248,0.074351564,-0.07264078,-0.07219652,-0.08502066,0.021521078,0.035728566,0.026970586,0.031673286,-0.06780179,-0.05167477,0.00872356,0.026122807,0.029763494,-0.09750991,-0.070401974,-0.02124243,0.00042336277,0.034157243,0.053690642,-0.04017551,0.075887084,0.047508303,0.037928633,0.010426221,-0.003840899,-0.007182809,0.045713518,0.04858266,0.012098645,0.03969217,-0.066668734,-0.0028411676,-0.098529756,0.03482622,0.02474969,-0.015435169,-0.04053565,-0.027086167,0.049693305,0.09159872,0.0043328237,-0.07983064,-0.10995965,-0.09511978,0.01541796,0.06413817,0.011697858,-0.12091125,0.087348334,0.11599284,0.004301244,-0.042104214,0.037514187,-0.06327078,0.060836475,0.0003328616,-0.0021836616,-0.026111454,0.07505967,-0.021775007,-0.022857836,0.012373954,0.012336149,-0.033504944,-0.006306955,0.015366383,-0.013442579,0.019776968,-0.0026288524,-0.0145527795,-0.010281407,0.01680997,0.013183156,-0.03995946,-0.022847006,0.020348836,0.046790354,0.0035840138,-0.014388254,-0.029974211,-3.88102e-08,0.0091804825,0.008906178,0.027143542,0.0020729916,0.030628825,-0.021261899,-0.024221856,-0.041900035,-0.016826695,-0.019881384,0.009243411,-0.01544143,0.02708254,0.07404732,0.013339275,-0.07635062,0.012124699,0.103908256,-0.022378106,-0.059615802,0.04734016,-0.023125088,0.015003308,-0.014104523,0.03332674,0.012966281,-0.033257797,-0.07097568,-0.0026032797,-0.015051391,-0.08535534,0.008178071,0.0111337425,-0.071603894,-0.10552799,0.05241051,-0.06264188,-0.009423362,-0.055160597,-0.036174282,0.08563122,0.01844459,-0.033697017,0.0031457876,0.043586623,-0.006172267,-0.009056707,-0.039745912,-0.06309866,-0.003723228,-0.03990418,0.023042457,0.081952326,0.07797885,0.105814524,0.029827397,0.026175523,0.006534642,0.020171344,0.08813634,0.0057133683,0.10439176,-0.052237473,-0.04188245} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:13.603889+00 2026-01-25 01:27:51.598356+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1287 google ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB 1 t 1290 Soho Club unknown Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt 5 2020-01-31 18:34:31.336452+00 lt v5.1 E4.01 {P1.01} V+ I3 CR-N {} {"E4.01": "Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt"} {-0.03151532,0.11514062,-0.030884832,-0.0043874215,-0.13147786,-0.049517512,-0.005407395,0.09448397,0.0028350858,0.030540684,0.072978266,0.0060130553,-0.013288542,0.039826006,-0.023785818,0.044457853,-0.04939117,0.06574545,-0.002746547,-0.0004024803,0.018102799,-0.024381306,0.014085576,-0.068672664,-0.034924258,0.06229022,0.00605092,-0.053957026,0.060443256,-0.079297096,0.0009903987,0.03864611,-0.022271406,-0.045505624,0.03691748,0.027065607,-0.047682747,-0.024086947,0.037123043,0.03901979,0.020022308,-0.082188495,-0.024926241,-0.051367156,-0.011910937,0.021523483,-0.07751652,0.030694444,0.008427754,0.030470373,-0.13451368,0.0043636546,-0.051792245,-0.01041199,-0.00795488,-0.0956506,-0.0013157079,-0.002348054,-0.049943384,0.01149726,0.07748297,0.00815079,-0.030892776,-0.012638178,0.076912105,-0.011339484,-0.05933787,0.04733162,-0.025018377,-0.018163413,0.06870385,-0.03714752,0.023264617,0.023031397,-0.14303711,0.058525275,0.06351263,0.06308345,0.059433214,-0.023982247,0.03390637,0.048636768,0.004802046,0.015022741,-0.013274572,0.055808153,0.0022642016,-0.012442665,0.022104051,0.009489573,0.028695792,-0.011572443,0.051656123,-0.08463621,0.061117694,0.0041237944,-0.031438142,-0.070905074,-0.025052687,0.044233926,0.034215942,-0.009128857,-0.017763965,0.049285337,-0.115189314,-0.03382925,-0.0119788265,-0.057822123,0.022206433,0.046704896,-0.09205107,-0.1107659,-0.05362142,-0.091929,-0.04922553,-0.008262562,0.013124414,0.051748853,0.030922696,-0.00466966,0.016391413,-0.057807975,-0.033347096,-0.044506636,0.019704875,-0.034768827,0.029373283,1.8219262e-32,-0.01720256,-0.03597009,-0.07968631,-0.039624225,0.0084726075,-0.04554752,-0.049707334,-0.037307788,-0.0008290505,-0.006671129,-0.0661888,0.009800195,-0.027225098,-0.013183201,0.032551832,0.06871493,0.06508829,-0.035170056,-0.07838347,0.028720723,-0.017349163,0.017517716,0.08408237,-0.024913536,0.06666197,0.029288916,-0.018191932,-0.08797686,-0.0162595,-0.0029903688,0.083202116,0.0014051971,-0.07646484,-0.039234385,-0.016789168,0.028481415,-0.019828647,-0.009189502,-0.05896769,-0.02365589,0.0044779712,-0.026309349,0.102004535,0.044108942,0.095031515,0.018874958,0.012558741,0.017113341,0.016746646,-0.006230662,-0.06428187,0.061200697,-0.08559602,-0.063605286,0.06953452,-0.004278713,-0.011147955,0.061323043,-0.009647465,-0.027149586,0.0039209044,-0.06818666,0.023798503,-0.035994094,0.05613721,-0.085932925,-0.05177315,0.018972196,0.06589844,-0.021969993,-0.03662516,-0.019986074,0.0015108753,0.076115385,-0.11021454,-0.019196702,-0.02899812,-0.06382297,-0.03322805,-0.0070268847,-0.053415217,-0.024731055,0.01708547,-0.018594638,0.07344184,0.006182485,-0.027836675,-0.07031119,0.04807652,0.00089324795,0.01764511,0.077172585,-0.009869549,0.03840831,-0.021202646,-1.7943626e-32,0.015037344,0.002517949,-0.07286232,0.030610977,-0.013237624,-0.007447912,-0.08433308,0.013974091,-0.032741476,0.10128106,-0.025613045,-0.052802645,0.051711407,0.008392175,0.0021665306,0.0005208886,0.16398194,0.019663963,-0.032202452,-0.02506611,-0.020962903,0.11723409,-0.048361134,-0.049135,0.04597847,0.003345974,0.045197565,-0.12287691,-0.07424737,-0.038374104,0.01290961,-0.01410761,-0.061725672,0.04324513,0.039893784,0.013018004,0.15672316,-0.031294897,-0.021894384,-0.030168539,0.09004951,0.023841964,0.015334333,0.006186607,-0.024535002,-0.07822032,-0.08594078,0.039821625,-0.07743137,-0.03607905,0.099085964,-0.019191107,0.01018072,-0.062264804,0.07869949,0.06184085,0.014828306,-0.08395273,-0.013379827,0.035186216,0.034560777,-0.05927512,-0.04144862,0.036407147,-0.0073613464,0.06441208,-0.02536418,0.048639216,-0.023825044,0.020237084,-0.0023428847,-0.05058562,-0.06356407,-0.055668976,-0.037351817,-0.00060821377,-0.05502406,0.032625306,0.018536933,-0.11483808,-0.0026780288,-0.073751695,-0.010562278,-0.0027081901,0.035285775,-0.011190789,0.09674073,-0.012821189,0.01159326,0.019321011,0.0031654078,0.0007632925,-0.029635495,0.10007732,-0.04682565,-4.9564132e-08,0.043014046,-0.049210865,-0.051563483,0.020714562,0.058600195,0.00821573,0.0011865835,0.014414674,-0.07219194,0.072700486,-0.08781845,0.05297239,-0.06429227,0.07853313,0.08717157,0.025518443,0.10428152,0.0634817,-0.037362907,-0.053059354,0.091715276,-0.037720118,-0.042890705,0.06406797,-0.04820238,-0.0034820428,0.030050768,0.020463774,0.096664906,0.010642111,-0.045185264,0.056099318,0.0010178762,-0.07754453,-0.057843022,0.09763155,0.08721779,-0.012424341,0.009282024,-0.057060283,0.049559668,0.08760782,0.07072622,0.011787689,0.03576967,-0.045509163,-0.017259492,-0.08409551,0.021084724,-0.054490507,-0.06335155,0.029788677,0.068042256,0.024613768,-0.013997741,-0.03395188,0.055827547,-0.00298336,-0.06788147,0.055633586,0.087841205,0.008391998,-0.00033644057,-0.042406682} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:14.1251+00 2026-01-29 18:36:00.688664+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1288 google ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB 1 t 1291 Soho Club unknown Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!! labiausiai mldc barmenas klubo istorijoje dirba- eivydas!!!! 5 2025-01-29 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I3 CR-N {Eivydas} {"P1.01": "Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!!"} {0.0030995188,0.05389877,-0.0047144876,0.010698258,-0.1550583,0.05077427,0.015153699,0.055096142,-0.0020116258,0.04045086,0.042029582,-0.08756725,-0.015182428,-0.01593031,0.010813658,-0.036179144,0.025573356,0.016775254,-0.002411572,0.014392577,-0.051205974,-0.09193171,0.008364384,0.026808064,-0.066132136,0.047867507,0.006290385,-0.008371429,-0.009901345,-0.05316878,-0.0061638574,0.06808759,0.038981695,-0.059422232,0.019933438,-0.025942858,0.04310934,-0.07296521,0.053191315,0.0854944,-0.037101828,-0.008919637,-0.028118331,0.010480511,0.013892929,0.0055009904,-0.060701635,0.059337612,0.059308186,0.005161999,-0.091275595,-0.06657029,-0.00041052673,-0.02966161,-0.011122135,-0.12980606,-0.050234895,-0.019534193,0.001709345,0.07947815,0.08241164,0.017971244,-0.006872426,0.07313211,-0.06196783,-0.05743757,-0.033230186,0.052729413,-0.034569994,0.07806575,0.07404484,-0.09915942,0.0009464536,0.01806505,-0.059296243,0.061066084,0.011972212,-0.042759635,0.051549636,-0.061504744,-0.017927691,-0.05274662,-0.07449267,-0.00864634,-0.053896632,-0.025841074,0.021023475,0.023551928,0.013889174,0.050260104,-0.025283283,-0.012571948,-0.13653453,-0.07067245,-0.05678321,-0.011289565,0.011101428,0.063522734,0.059207086,0.00010512267,0.01969655,0.056419183,0.048321225,-0.041827276,-0.13309984,-0.008173506,-0.012537786,-0.010745874,0.08004833,0.021703443,-0.09910123,-0.0032453693,-0.048474886,-0.043993693,-0.06828277,0.04304155,0.10224641,0.0026378243,-0.0269428,0.033944197,0.0316989,-0.0011917481,-0.011082125,-0.004309649,0.018326014,-0.035030775,0.029457835,2.270323e-33,-0.08948223,-0.13752176,-0.039663747,0.048364338,0.06444972,0.05151679,-0.06994761,-0.06097219,-0.039719574,-0.001969503,-0.042858355,0.031207519,0.041902076,-0.00981521,0.016598755,0.09555612,0.009973887,-0.070850514,-0.040198766,-0.004760673,-0.02793837,-0.00011660559,0.05305671,0.046141833,-0.060324546,0.07090969,0.030158747,-0.037125435,-0.0020750454,0.04623158,0.029538197,-0.07755006,-0.06687603,-0.06563473,-0.044849552,0.078044705,-0.049589895,-0.0364265,-0.01610001,-0.02877203,-0.0201796,0.007611305,0.009459213,0.056061186,-0.07460117,0.07366257,-0.071032956,-0.058353946,0.10824244,-0.07184488,-0.10539564,-0.019904558,0.04686344,0.0057507916,0.025108777,0.06453722,-0.009674562,0.07765756,-0.019426482,-0.073088355,0.059817217,0.13103113,-0.015350912,0.0075973454,0.030313386,-0.052047566,0.042734254,0.04159571,0.03926871,-0.044878785,-0.03140625,0.016677754,-0.025907217,0.050228216,-0.030982768,-0.011433071,-0.016546164,-0.046125576,-0.010397431,0.006577021,-0.07156836,0.024666535,0.019406864,-0.009190014,0.099728465,0.039947927,-0.018839365,-0.008170894,-0.008391134,0.057745375,-0.015574025,0.035629768,0.030109039,0.046171613,0.05977946,-5.557164e-33,0.054564886,-0.030236974,0.042559084,-0.017320115,0.05236683,0.07430938,-0.08336456,0.063165165,-0.07746622,0.034425933,-0.003634955,-0.08758989,-0.0019294624,0.013469431,-0.057863366,0.028488519,0.042386044,0.023147453,-0.08239005,-0.05897636,-0.07206342,0.040291727,-0.0028169153,0.021611756,-0.028029485,0.0019156466,-0.019556612,-0.023767818,-0.07450487,-0.007571848,0.019504707,-0.0111374,-0.043373473,-0.051042587,0.015072853,-0.0022361318,0.056045324,0.010636539,0.0018177757,0.05936649,0.045400515,0.06869402,-0.049471464,-0.007654606,-0.021188185,0.025666324,0.0004579631,-0.0833582,-0.056958392,-0.00838657,0.0649713,-0.028390834,-0.055846617,-0.07647412,0.1103062,0.011780394,0.014506618,-0.07689541,-0.032373287,0.05961541,0.03384469,-0.019861056,0.043775048,0.017402932,0.008908964,0.1143571,-0.019581096,0.048390996,0.043820206,0.021805791,0.049344495,0.0126014175,-0.11430595,0.08191205,-0.05831907,0.035932273,-0.04205561,-0.018158177,-0.019311942,-0.039489426,0.03852057,-0.115660064,-0.009722053,0.11382391,0.065871224,-0.03732881,0.011551667,-0.008517022,-0.060731478,0.049200144,0.04178863,0.011840773,-0.036132637,0.028398115,0.036221363,-2.5342615e-08,-0.04745925,-0.05252748,-0.016707916,0.02597758,0.056545988,-0.03453735,-0.12085283,-0.046345025,0.007029469,0.06448388,0.0012904761,0.0011568468,-0.02700487,0.09198815,-0.02289883,0.068786725,0.0723148,0.062626205,0.014283633,0.021193938,0.020641696,-0.0170195,0.0049636983,-0.01719006,0.019672379,-0.036792617,0.0044281916,0.012984961,0.020018075,-0.1189175,-0.045546655,0.07923268,-0.013313394,-0.019336438,-0.08698246,0.0016866226,-0.03996203,-0.046287667,-0.03617289,0.01891492,0.003539888,-0.030946089,-0.007450028,-0.009713216,0.03796826,-0.0074263895,0.02423782,0.06228567,-0.04831534,-0.033463232,-0.12393263,0.052810065,0.14729,-0.021844683,-0.012006324,0.047398366,0.0346641,0.05025249,-0.045279875,0.015929567,0.11655921,-0.031839333,0.037825607,-0.035547677} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:19.990759+00 2026-01-29 18:36:00.69017+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1290 google ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE 1 t 1293 Soho Club unknown Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius. po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius. 5 2020-01-31 18:34:31.336452+00 lt v5.1 R2.01 {} V± I2 CR-N {} {"R2.01": "Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius."} {-0.027973589,0.06641471,-0.033480834,-0.0033359637,-0.102425516,0.05891267,0.07214689,0.056387953,0.012027462,0.07655771,0.06444777,-0.029695114,0.0061141015,0.013058231,-0.04359946,-0.033401124,-0.06364845,0.036454957,0.022073617,-0.007902845,0.03254388,-0.10805253,-0.0008049442,0.026684662,-0.044658016,0.062157363,0.0278768,-0.02651551,0.012077024,-0.03043396,-0.04994361,0.024472348,0.0633954,-0.045427177,-7.9794234e-05,0.090585165,-0.028359042,-0.012578641,0.05462349,0.08350168,0.0048722425,-0.012555469,-0.048166774,-0.010051064,0.048515446,-0.0046339897,0.003937075,0.024721868,0.03377933,0.010529371,-0.06327884,-0.014661027,-0.08421829,0.016793864,-0.033762593,-0.058165584,-0.06553398,0.060607113,-0.03910681,-0.021869503,0.037104547,0.01115706,-0.056627527,0.053246044,0.009375706,0.027856339,-0.095624395,0.055784907,-0.0766213,0.041689605,0.0787984,0.0067407093,-0.014990827,0.080338374,-0.07293045,0.011562407,0.04672327,-0.03714503,0.0033781433,-0.041483436,0.0020846352,-0.048131898,-0.13801771,-0.022757014,-0.05784138,0.04009418,-0.026965007,-0.038960446,0.043782145,-0.025766665,0.023227813,0.051404804,0.0010902246,-0.063676424,0.034801297,0.02716892,-0.118251555,-0.0190983,0.024345683,-0.040919032,0.01296727,0.038605273,0.07544857,0.06782492,-0.052772373,0.0029081295,-0.041276928,-0.1159883,0.077674285,0.06627127,-0.0755684,-0.070136875,-0.03961722,-0.06926711,0.039449237,0.00411149,-0.0006957133,-0.0070057246,-0.041440543,0.04215173,0.04244834,-0.068033,-0.018018356,0.023506219,-0.01914836,-0.048016958,0.06574427,1.3209801e-32,0.0029209692,-0.074567564,0.025829835,-0.021432383,-0.006312365,-0.03797621,-0.043800134,-0.11451824,-0.029296849,-0.07163275,-0.122934245,0.053713206,-0.0012556594,0.07297397,0.037195433,0.06766251,0.08045635,0.043829832,-0.016926691,0.07378622,-0.038516946,0.038392574,0.011906483,-0.026837802,0.016423602,0.06171843,0.03502107,-0.013196732,-0.011663024,0.009634983,0.0826709,0.051091664,-0.081472956,-0.027016165,-0.105033964,-0.01618549,-0.027722234,-0.0013938941,0.024825875,-0.047006473,0.0012550928,-0.048983347,0.08005197,0.11565004,0.030192401,0.023374893,0.0010083951,0.021023516,0.072506934,-0.017274857,-0.067178816,-0.038110506,-0.02776072,0.035997458,0.036662146,-0.017767113,-0.01719738,0.03627208,-0.014639693,-0.043951385,0.005742019,0.044344798,0.08608108,-0.05218447,-0.024860559,-0.12583098,-0.055376016,0.033704076,0.03386655,-0.04818499,-0.034513958,-0.06848441,-0.12571539,0.036285035,-0.035863545,-0.016745938,0.062081657,-0.018360738,-0.06363488,0.04166082,-0.11802007,-0.0025473228,0.053383306,-0.011620548,0.08402487,0.04045801,0.034128096,-0.011051769,0.017300975,0.038978133,-0.04706008,0.039358336,0.042868998,0.06186792,-0.078743465,-1.3087316e-32,0.03882538,-0.045676235,-0.0734631,0.069911785,0.04995958,0.01553975,-0.07653579,0.0310733,-0.04655485,-0.033041406,-0.024543162,-0.08734547,0.05705914,0.005570498,-0.0148776835,0.07837148,0.12748352,0.10276044,-0.028640827,-0.045956463,-0.066790365,0.034808043,-0.030123606,0.016677964,-0.026376836,-0.0069797304,0.030989995,-0.11089527,-0.12596755,-0.0037890498,0.015839627,-0.069078244,-0.08465244,0.11388405,0.03359023,0.017193813,0.14195858,-0.05543141,0.0018681266,0.04993015,0.09953649,0.061455943,0.023918284,-0.052885536,-0.06094984,-0.063755564,0.005094446,-0.0033942203,-0.11017185,-0.05031108,0.103479885,-0.01525728,0.056659337,-0.017282346,0.04261137,0.02964137,-0.055603866,0.03922379,0.018169923,0.031912424,-0.009699563,-0.102962814,-0.019852964,-0.029216446,-0.0048176832,0.047485538,0.029623514,0.09155332,-0.026724443,-0.06118847,0.019414566,-0.06851007,-0.07328649,0.04526446,-0.025169324,0.023351505,-0.06682393,0.02224645,0.034004543,-0.0374336,-0.015194544,-0.024066985,-0.020307168,0.02407807,0.008202554,0.01620892,-0.012553003,-0.051108595,0.072799884,0.02060467,-0.03174853,0.003808678,0.046026204,0.004773085,-0.012713289,-4.0711846e-08,0.04129934,-0.038739365,0.0144393165,0.018779537,-0.017984949,-0.0043495065,-0.021610174,-0.030846842,-0.03990542,0.0083718,-0.018594623,-0.0402966,0.07474309,0.0013002822,0.06647895,0.029743072,0.07636672,0.13160554,0.0023220528,-0.019569658,0.050302394,0.013035164,-0.059887122,0.06564754,-0.0298551,0.070514575,0.028328586,-0.01855232,0.007777194,0.04736744,0.008107182,-0.02766039,-0.028669706,-0.04855165,0.031872682,0.087011844,-0.005522121,0.009763743,-0.008507438,0.07976207,-0.004354689,0.0005002643,0.07172706,0.038639635,-0.0033658792,-0.045533594,0.005729059,-0.012173137,-0.0117497975,-0.077132106,-0.055182617,0.06263737,0.0004591168,0.041282263,-0.063016884,-0.050773587,0.035817403,-0.010890052,-0.023387766,-0.009143453,0.0305121,0.065269895,-0.0054042167,-0.022795368} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:55:31.241661+00 2026-01-29 18:36:00.693674+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1443 google Ci9DQUlRQUNvZENodHljRjlvT2poMFFXUjBRM04wYWtwRUxXTjRNVmR6TWtrd1QxRRAB 1 t 1446 Go Karts Mar Menor unknown Brilliant day for adults and kids. brilliant day for adults and kids. 5 2025-09-02 00:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Brilliant day for adults and kids."} {0.008086888,0.16151486,0.081064716,0.02443958,-0.0085483445,-0.037670698,0.04007926,-0.043929726,-0.013672051,-0.039309736,0.014057433,0.07860906,0.011100668,0.027786322,0.03307432,0.034823958,-0.05759314,-0.08370361,0.0057419855,-0.032113202,-0.00781627,0.019896941,0.03385141,0.07505503,-0.03125918,0.1355267,-0.010921837,0.00010411012,-0.0491492,-0.0038680236,-0.00091690494,-0.007124164,0.024530217,-0.022544423,-0.042737436,0.01655568,0.10743747,-0.08118306,0.0006580105,0.037927307,-0.0063114986,-0.10134325,0.009937636,0.039235298,0.042844046,-0.009703756,0.042670667,-0.039198227,0.10463514,-0.004032685,0.08402957,0.029385835,0.010258162,-0.073323004,-0.022485007,0.010773945,-0.026910353,-0.112050526,0.07778631,-0.00776605,-0.06696603,0.09741363,-0.01365482,0.07107658,-0.0030561702,-0.12807998,-0.027684461,0.0030752788,-0.026853502,0.03510452,-0.13985586,0.03981355,0.101323746,0.065602906,-0.010812636,-0.026872654,-0.05436531,-0.015254667,0.017761886,-0.012193439,0.0025823351,-0.05147368,-0.007007421,-0.028905772,0.039727155,0.006869045,0.014932615,0.074880816,-0.007776093,-0.0053599575,-0.10712565,0.03324696,-0.00032259742,0.043728057,-0.044836618,-0.05847597,-0.036725387,-0.06758257,-0.0845916,0.10946091,0.02196408,0.05636374,-0.009012611,-0.034441367,0.010405137,-0.023868747,-0.02575624,0.031601753,-0.024243742,-0.1043183,-0.004000523,0.03511931,0.056447417,0.027332354,-0.033549804,0.035352957,0.03604787,-0.0020454316,-0.022869356,-0.003800328,0.07479784,0.03184343,0.029318612,0.030729491,-0.017977133,-0.019101344,0.06413333,-4.8448977e-33,-0.037915107,0.0246211,0.0921922,0.10009281,0.040254988,-0.007918976,-0.0423294,-0.066152476,-0.049813345,-0.037635896,-0.0031686807,-0.056990966,-0.010714922,-0.03170358,-0.008372273,-0.02228389,-0.06151064,0.12170019,0.049403578,0.04248135,-0.067049734,0.060742274,0.006697359,0.0027618622,-0.00814657,0.0056400876,0.05022104,-0.0058825496,0.14341846,-0.009886421,0.023300119,-0.058911983,-0.013817422,0.025714865,-0.03190278,-0.02683345,0.02971204,-0.03008876,-0.06489087,0.048184622,0.0045137526,-0.08814063,-0.02984496,0.0036552008,-0.004159296,0.0717215,0.049291834,0.011198439,0.03169914,0.00360115,-0.08115263,0.01836459,-0.01455468,-0.020451833,-0.041506376,0.034713786,0.011938924,-0.025523998,0.06251084,0.0025127258,0.003948758,0.008667472,-0.04805502,-0.020761713,-0.037336413,0.05176084,0.06715747,0.006068157,-0.036716115,0.056879535,0.038908914,-0.01983053,0.04336546,-0.11213133,0.04381246,-0.0040849866,0.07134233,-0.087321885,-0.010194709,0.0016784733,0.04161962,0.032543037,0.09037264,-0.0890206,0.056189578,-0.01484063,-0.024833243,-0.059585106,-0.08741699,-0.03256824,-0.054978594,-0.05799812,0.039779536,-0.006054406,0.029313227,2.7137459e-33,0.09034824,-0.01928813,-0.04759402,0.06218063,0.01819169,-0.08999168,-0.049562518,-0.0025903508,-0.046453573,0.060459416,0.026867166,0.056431822,0.03246808,0.05761623,-0.00973056,-0.081364565,0.093290165,0.06981216,-0.036997724,0.0810273,-0.018606564,0.08993122,-0.039544687,0.04604525,0.012258624,0.057298288,-0.03840038,0.011804231,-0.04176587,-0.030714657,-0.03523397,-0.014055072,-0.014270337,0.013246794,-0.0049075824,0.085852556,-0.03377042,-0.05544961,-0.016503314,0.028056847,-7.79317e-05,0.017083675,-0.03143079,0.09169294,-0.013315572,0.060470823,-0.013230296,0.06497857,-0.091082394,0.046875574,-0.081821375,0.011573837,-0.04371654,-0.07033934,0.017679386,-0.033145912,-0.032332532,-0.12716886,0.025265787,0.004065695,-0.121705405,-0.038179554,-0.11009246,0.013523497,-0.037521996,-0.07289931,-0.037657827,0.066021994,-0.048774857,0.07293926,-0.06518325,-0.027088655,-0.12301261,0.002751071,-0.009843331,0.013693564,0.05757918,0.063074574,-0.016842224,0.07389521,-0.037524406,0.019636486,-0.03878102,0.043637685,-0.05826549,-0.05820564,0.0044137305,-0.024742233,-0.07868108,0.092770904,0.0021532667,0.025083754,-0.02820999,0.0695805,0.012058406,-1.8237172e-08,0.066137865,0.025858864,-0.11609181,-0.034429,0.018135479,-0.07900077,0.027317474,-0.018053262,0.03102736,0.07994984,-0.01828441,-0.050850507,0.025941726,0.039955314,0.065144375,0.03940418,-0.008134413,0.039389256,-0.026047515,0.012729873,0.07173624,0.029438935,0.01328271,0.050289433,-0.01715071,-0.014821294,-0.033682838,0.031465035,-0.05837459,-0.01868919,-0.003048372,0.026179336,-0.107137814,0.04301794,0.013191804,-0.009622713,0.024202364,0.038081974,0.022635482,-0.028386062,-0.01600856,0.0012665936,0.015080319,-0.061514333,-0.032417018,0.07046677,-0.027227778,0.025138792,-0.04693109,0.038525295,-0.04136581,0.0109378295,0.050441146,0.04712237,0.027039627,0.030042147,-0.07546843,-0.0121896025,-0.06300736,-0.00069600175,0.12048594,0.06197235,-0.07822537,-0.025146764} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.161066+00 2026-01-30 02:01:09.380996+00 22c747a6-b913-4ae4-82bc-14b4195008b6 477 google Ci9DQUlRQUNvZENodHljRjlvT2tKT2FIaExkaTFCZVZaRVkwMHhSMnhhWlVaUFduYxAB 1 t 480 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen un precio en su pagina y luego pagar más de ultima hora en la oficina el que lea esto q ni se le ocurra hacer algo con esta empresa la peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen un precio en su pagina y luego pagar más de ultima hora en la oficina el que lea esto q ni se le ocurra hacer algo con esta empresa 1 2025-09-27 01:27:48.342142+00 es v5.1 P1.03 {} V- I3 CR-N {} {"P1.03": "La peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen u"} {0.013674587,0.0017342477,-0.019743824,-0.06982515,-0.11675006,-0.010393299,0.09402631,-0.012257737,0.036544167,-0.0028536979,0.06889397,0.029097041,0.023762692,-0.061843015,0.008027229,0.014093562,0.030889472,-0.011840016,-0.014545652,0.09425252,0.044255998,-0.10918877,-0.018194996,0.07268258,-0.06488767,-0.036547955,0.008034778,-0.003721218,-0.06634295,-0.080404475,0.021119772,0.05825323,0.12679745,-0.009085701,0.007849766,-0.016506605,0.02478849,-0.051564418,-0.031592194,0.018262256,-0.047242325,-0.072041914,-0.087588765,-0.04635882,0.008630251,-0.07704562,0.04558166,0.081214845,-0.028688118,-0.065594636,-0.06672178,-0.004864231,-0.0024702293,-0.026997661,0.024580007,-0.0056399927,0.0008128053,-0.037044343,0.087320924,0.015429762,0.024937153,0.04747319,-0.030079838,0.04584805,0.07771723,-0.04819328,0.034171216,-0.051140327,-0.10872954,0.033807248,0.07059466,-0.15094706,-0.009033616,0.026518498,-0.009959174,0.039783467,-0.006174015,-0.06633198,-0.020715084,0.05866777,0.015102142,-0.00021303783,-0.040713333,0.02426711,-0.01540889,-0.05212703,-0.031110423,-0.0140448725,0.072907135,-0.0196808,-0.0575425,0.03956488,-0.104895644,-0.049782142,-0.010571335,-0.018837662,0.0044063632,-0.041232817,0.0057173134,0.010947942,0.07020858,0.09021402,0.024163947,-0.02902706,-0.027434437,-0.031328272,0.088232204,-0.019593652,-0.019274205,0.11094769,-0.048770882,-0.02892357,-0.09992684,-0.013235747,-0.059642427,-0.0052650464,-0.0634654,-0.01915015,-0.02572044,-0.06722026,0.0052558994,0.050260764,-0.050422177,0.02526959,-0.015060049,-0.07865754,-0.030944543,1.3002842e-32,-0.033259474,-0.087881334,0.026913771,0.04541908,0.028085945,0.06346084,0.045499407,0.017223349,-0.017382668,0.017220786,-0.0053346516,0.039717477,0.008033675,0.04925794,0.045927577,0.06186075,-0.023825519,-0.0024001142,0.048610188,0.017738158,-0.011562712,0.029554978,-0.031606905,0.029540861,0.028203903,0.046736207,-0.051014837,-0.06491777,-0.03224899,0.058847286,-0.0020267442,0.016515607,-0.027279513,-0.070314065,-0.024218569,0.0035316967,0.026561107,0.037370175,-0.019907441,-0.08784172,-0.06870885,0.0088934135,0.036229555,-0.016378114,-0.08174571,0.06412286,0.06376699,-0.009516809,0.04481274,0.053506106,-0.055024415,-0.103412196,-0.084587395,-0.016853977,0.0058269496,-0.049268138,-0.1086897,0.0007250457,-0.012142611,-0.060981154,-0.009354444,0.013878616,-0.009461147,-0.0032525326,-0.055789206,-0.012229213,0.024115589,0.002320688,0.12833464,0.0583988,-0.015463774,-0.031946708,0.0063840975,0.04344468,-0.026140265,0.07025808,-0.010687923,-0.0005416773,-0.015779855,0.1112435,0.04241082,-0.040363397,0.08545609,-0.008035791,0.09855193,0.09191752,0.06988566,-0.0050942358,0.0005055873,0.1762196,0.008393024,0.08026527,0.062299617,0.0039418545,0.039425373,-1.5492938e-32,0.025026927,-0.043912843,0.048260618,-0.022932945,0.0060340944,-0.01028144,-0.052851606,-0.008695489,0.00683989,-0.065923005,-0.09341057,-0.11434889,0.1366086,0.00013531595,-0.04276771,0.06923789,0.04398838,-0.08180114,-0.05161156,-0.031006996,-0.026162323,0.04358113,0.085970074,0.016947992,0.030689633,-0.096940465,0.058256034,0.03641443,-0.10900135,-0.01972498,0.052477032,-0.02260417,0.042213105,0.055824716,-0.0577173,0.032581978,-0.004020488,0.03765934,0.026147759,0.034133825,-0.0035060493,-0.005765754,0.020347113,-0.029505089,-0.012424664,-0.06340578,0.016507322,-0.16264793,0.03205687,-0.04312496,0.08866397,-0.02050599,0.019504983,-0.060064573,0.011074317,-0.00916431,-0.0016549474,-0.07642362,-0.038125653,-0.04624515,0.09033955,0.07793216,-0.03247309,0.011521275,0.051188122,-0.03644914,-0.028411608,-0.013504172,-0.07920692,-3.183933e-05,0.032256722,-0.02374622,-0.061319437,0.044713315,-0.05125424,-0.011285418,-0.13172032,-0.0002919159,0.014365667,0.0030617577,-0.016662875,-0.025280971,0.0061636376,-0.016181078,-0.05438431,0.06317427,-0.011169573,0.02515488,-0.029229863,-0.004975333,-0.007410878,-0.019069906,-0.09801347,-0.08225791,-0.06801343,-5.099278e-08,0.029662136,-0.06229214,0.061981134,0.021317936,0.041885234,-0.019149614,0.046739474,0.0048155324,0.059413925,0.079944514,-0.017900284,0.020214487,-0.0016641356,-0.014141,0.0068610776,-0.018334659,0.13478017,-0.0006006998,-0.03079675,-0.06258354,0.09601487,-0.013578454,-0.030288547,-0.00794804,0.011476898,0.01818325,-0.042129587,-0.0067491326,-0.0131479055,-0.042306267,0.014629847,-0.033132482,-0.0047394796,-0.08303431,-0.07340838,-0.040324107,0.04311386,-0.02424407,-0.095775366,0.026555808,0.044815157,-0.0038564657,-0.00869685,0.0038647708,-0.11401706,0.012391256,-0.026127925,-0.015635977,-0.014579719,-0.031428147,-0.010506718,-0.021793127,0.11259803,0.01795533,0.018883724,-0.03295397,0.036445964,0.043638818,-0.006583373,-0.009245367,0.06382613,0.06687709,0.0022558968,-0.026575617} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:30:13.442234+00 2026-01-25 01:27:51.522781+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 490 google ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB 1 t 493 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. Tanto al recoger el coche (Dany/Fran) como al devolverlo (dos personas distintas), todo facilidades y amabilidad. No está en el aeropuerto, pero ofrecen bus en 5 minutos. Totalmente recomendable todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. tanto al recoger el coche (dany/fran) como al devolverlo (dos personas distintas), todo facilidades y amabilidad. no está en el aeropuerto, pero ofrecen bus en 5 minutos. totalmente recomendable 5 2025-01-25 01:27:48.342222+00 es v5.1 A1.01 {J1.02,P1.01} V+ I3 CR-N {} {"A1.01": "Todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. Tanto al recoger el coche (Dany/Fr", "J1.01": "No está en el aeropuerto, pero ofrecen bus en 5 minutos.", "R1.01": "Totalmente recomendable."} {0.03450056,0.043877136,0.017241273,-0.058606267,-0.073975705,-0.030454028,0.06881009,0.0071241683,-0.056626342,0.010187696,0.05714965,-0.048925597,-0.021619925,-0.070751116,0.0658203,0.026586525,0.041880805,0.033374656,-0.0010018424,-0.010746058,0.100897305,-0.026720248,-0.07543254,0.08682905,-0.113120325,0.018708855,-0.00614835,0.028315734,-0.055817068,-0.07241595,-0.05916906,0.09029378,0.04251832,-0.018238952,-0.01606789,-0.051969644,0.07511413,-0.07952646,-0.05826598,0.031845298,-0.103861585,-0.010835064,-0.03704091,0.05032684,-0.03267469,0.0055192476,0.03372424,0.08425794,0.13614959,-0.040572613,-0.05926611,-0.018812012,-0.0314475,0.027933566,-0.012047793,0.01772705,-0.046467338,0.010845085,0.097212695,0.042666733,0.018693991,0.032832302,-0.03125905,0.036491733,0.050812177,-0.016286211,-0.028333869,-0.013812765,-0.024473108,0.0354409,0.020816008,-0.098203436,0.058426835,-0.011684402,-0.013116545,0.051033393,-0.025594534,-0.022292353,-0.010677833,-0.05389862,-0.023751587,-0.029885022,-0.062006276,0.006947129,0.026238278,-0.0027169387,-0.018861862,0.0036048242,0.045544885,-0.041008282,-0.11356588,0.06984174,-0.051188435,-0.038888235,-0.013423967,0.022914056,0.03711699,-0.016069127,-0.02718022,0.04905458,0.085066564,0.05286684,0.054583866,0.069774725,-0.038118895,0.06843093,0.024248658,-0.046044283,0.014268517,0.008960127,-0.10953989,-0.035475336,0.056036297,-0.07135359,-0.044675283,-0.010073911,-0.048836663,-0.10835174,-0.010542351,-0.041107427,0.07486092,-0.034096785,0.01802769,-0.04677835,-0.0055751577,-0.061197523,0.11692124,1.271536e-32,-0.09712596,0.05142331,-0.0015354548,0.06655366,0.0569634,0.010696768,-0.044802476,-0.005879372,0.01159006,0.005694872,-0.06890733,-0.01559187,-0.01625636,-0.013129843,0.035909902,-0.028644832,-0.0072916523,0.007352602,-3.3700606e-05,0.007758563,-0.012934182,-0.09773661,-0.0681542,-0.013379017,0.028355315,0.05484739,-0.0063578538,-0.01355122,0.04413997,0.052783303,-0.0056819567,0.06916052,0.0041188183,0.008919221,-0.116388105,-0.08886601,-0.048299838,0.018732352,-0.02393224,0.008166549,-0.0053433715,-0.0016143563,-0.065624796,0.047257412,0.021587979,-0.010689161,0.035542384,0.03886991,0.09557484,0.04089248,-0.0358,-0.03592879,-0.037241194,-0.07728216,-0.03189739,-0.014033255,-0.02749435,0.019277511,-0.054282203,-0.038668428,-0.02330746,0.019251222,0.03514641,-0.09089974,-0.035190366,0.01671094,0.04860221,0.08688895,0.14407273,0.053451784,-0.0413711,-0.025449581,-0.030206323,0.05364833,0.025582533,-0.020700855,0.05699406,-0.016901137,-0.05501452,0.015147784,0.03265825,0.010048554,0.051022343,0.012843272,0.051220316,0.0120198745,0.05487947,0.042839263,-0.06551122,0.078760445,0.0073126517,0.12470265,0.09154243,0.0048185373,0.051336017,-1.22365575e-32,0.053406466,-0.0078401435,-0.033806298,0.021102568,-0.044381972,0.016868742,0.0024221542,-0.005829765,0.047680415,-0.032673456,-0.1151936,-0.1253415,0.12533039,-0.04907016,0.00896638,0.087830395,0.02905862,-0.117843635,-0.07590614,0.02945591,0.09014119,0.008202812,-0.011079105,-0.029400047,-0.043291,-0.027508756,-0.044127982,-0.027567538,-0.009065001,0.05364184,0.0031586592,-0.043688674,0.03932308,0.027686957,-0.019440416,0.013585145,0.03335287,0.025572708,-0.028539017,0.048059657,0.0039798273,0.029378038,0.028424248,-0.02415966,0.030279119,0.01153059,0.026811328,-0.123328745,-0.053965393,-0.041401595,0.09436462,-0.12428471,-0.09262738,-0.0077223503,0.110084854,0.04180955,0.07703684,-0.11517272,-0.030250335,-0.03146527,0.0007908927,-0.074787185,-0.013175526,-0.020064559,-0.002500186,0.007025365,-0.0018661296,0.01522229,0.010734169,0.04980502,0.044954114,0.02512088,-0.054168705,-0.0011639248,-0.065988705,-0.015156908,0.0038925726,0.07665044,-0.08045041,0.036002774,-0.07972313,0.032188565,0.031209972,-0.033389762,-0.066749886,-0.05044589,-0.038835496,-0.0040710275,-0.0072729336,0.027927483,0.020395141,0.01285182,-0.036486175,-0.018836247,-0.024317812,-5.045782e-08,0.031358216,-0.005717315,0.02595541,0.002779101,0.01741898,0.001430369,-0.008054433,0.02976945,0.0020328448,0.01575737,0.098982275,-0.045112193,-0.006602794,0.08625192,0.029218271,0.028427785,0.045057908,0.10375219,-0.026947916,-0.067098714,0.057888143,0.0070288926,0.012554233,-0.017102353,0.028623423,0.02321449,-0.012960571,-0.006602084,-0.01478132,-0.024430119,-0.08660805,-0.00139951,-0.026934452,-0.12745804,-0.030133344,-0.02039658,-0.016830154,0.06486247,-0.059744988,-0.025834896,0.078445934,0.05910564,-0.119373776,-0.013096358,0.031108076,-0.06141469,-0.009538473,-0.04693197,-0.032329164,0.028092157,0.012352717,-0.027067529,0.10499076,0.040276185,0.04618365,-0.012993648,-0.04529781,0.0028241854,-0.060545705,-0.021431107,0.019953841,0.15548205,-0.057519797,-0.030807475} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:05:07.209018+00 2026-01-25 01:27:51.610455+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 491 google Ci9DQUlRQUNvZENodHljRjlvT25WSlJGRjZlbXMxUlcwME9VOXhVSFJFU0VkUU1IYxAB 1 t 494 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Coche nuevo, limpio y fragante. Ningún problema coche nuevo, limpio y fragante. ningún problema 5 2025-10-27 01:27:48.342229+00 es v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Coche nuevo, limpio y fragante. Ningún problema"} {-0.05278552,0.020902509,0.046475682,-0.048547786,-0.05267526,-0.031601142,0.047056336,0.067481466,-0.050853208,-0.00025503544,0.06287024,-0.044140164,-0.026232574,0.018687636,0.0042996877,-0.045267742,-0.04177206,0.04154483,0.00237735,0.03913923,0.049894385,-0.032443628,-0.0678815,0.03550192,-0.054927852,-0.025510771,0.064215064,0.009550169,0.0634388,-0.08172178,-0.029923644,0.1542809,-0.03839951,-0.019217901,0.026367169,-0.060758233,0.091815025,-0.098371565,0.019044096,0.07994539,-0.099519104,0.014418604,-0.02672815,-0.0713738,0.08525641,-0.021929115,-0.017742937,0.08805958,0.025041368,-0.041276082,-0.05983131,-0.1120894,-0.041854322,0.0069635124,-0.012944699,-0.025692295,0.061158873,0.0045647025,0.01962963,0.050668508,0.11563406,0.046572477,0.04867586,0.002508994,0.07071158,-0.051714405,0.024852742,0.023732852,-0.050548468,0.06841384,0.076451495,-0.015293502,0.06428542,0.008596765,-0.009735609,-0.005935562,-0.0814551,0.03177341,-0.00745529,-0.07545762,0.015530074,-0.034069195,0.043334164,-0.060799927,0.029080063,0.011982113,-0.0804009,0.031107932,0.007610691,0.024141489,-0.060421262,0.092834905,-0.02828316,0.020974632,0.023775684,0.0039307564,-0.021291744,0.04619327,0.027468607,0.026208121,0.029658126,0.11514266,0.092319146,0.05497644,0.012640882,0.007872112,0.03884481,-0.041714817,0.053874202,0.02658731,-0.044034395,-0.054556563,0.003946373,-0.02887405,-0.063637815,-0.012677132,0.013726077,-0.03854834,-0.0737604,-0.06253005,0.056413196,0.045703795,-0.06533785,-0.012735506,-0.04081202,-0.02137498,0.07898524,2.4204634e-33,0.030189235,-0.015675232,-0.035245206,-0.0046581444,-0.047179822,-0.015011534,-0.032499976,-0.047376662,-0.013158065,-0.0015229229,-0.012102912,-0.0038428362,0.043769464,-0.004798172,-0.0065760226,-0.004798793,0.0113755455,-0.026981799,0.03456264,0.043099366,-0.018956603,0.013972635,-0.0028117176,0.0072159455,-0.019082503,0.0353549,-0.04116853,-0.04754141,-0.027040591,0.016445426,0.0057441127,-0.0064429855,-0.010990449,0.019063631,0.015688563,-0.14686936,0.0776235,0.038759112,-0.057583034,-0.03917286,0.04924825,0.03238139,-0.0017537606,0.009215282,0.08154988,0.049713872,0.049856007,0.039262958,0.09280009,-0.017528046,-0.117286004,-0.03275898,-0.08084055,-0.0061725946,0.00928722,-0.030035632,-0.06633509,0.01947121,-0.005053985,-0.0684591,0.041527644,0.025488554,0.041057874,-0.023119338,0.017687418,0.02494327,0.0025544066,0.0013574536,0.12501244,0.0057733282,-0.021223009,-0.013312534,-0.05232691,0.08700925,-0.059515033,-0.029790282,0.047880664,0.022951433,-0.033934295,-0.047047146,-0.0147002265,0.04568941,0.0032828988,-0.018277893,0.038464528,0.10741666,0.058847804,-0.0090143895,0.018684514,0.073690094,-0.09578224,0.050808,0.016696772,-0.06839922,0.06620813,-2.0092967e-33,0.029437661,-0.0042962213,-0.10865648,0.026433857,-0.0684935,0.00983007,-0.040737316,-0.024131566,0.055140052,-0.05088389,-0.042440183,-0.1334444,0.08959892,0.04416616,-0.046908222,0.06290165,0.010405996,-0.08532409,-0.044875745,0.05724617,0.014355987,0.04542727,-0.021776158,0.039586842,0.0022857843,0.023795778,0.010562763,-0.0471944,-0.06700136,0.012405207,0.10210658,-0.067846574,-0.013898084,-0.017964806,-0.023145707,-0.020969477,0.023375826,0.046606377,-0.0046949526,0.0059524677,-0.01880737,0.020629043,0.024662076,0.025376309,-0.0013425116,0.04667407,-0.0871975,-0.05747223,-0.11747029,0.0051540798,0.080648124,-0.056431647,0.01323926,-0.09004692,0.04892591,0.0061907847,-0.027258577,-0.04887492,-0.10496089,0.013899087,0.11366823,0.046986237,-0.08307868,-0.025340281,0.08017291,0.017275203,-0.06187348,0.006818949,0.114080645,0.05529226,0.031533215,0.01667221,-0.031748142,0.024985358,-0.07629817,-0.020896502,-0.10569657,0.020395199,0.035494592,0.015367112,-0.048873994,-0.0055892924,0.035152853,-0.024237156,-0.033755757,-0.008924062,-0.00056674634,0.057126,0.0566768,-0.05147087,0.013784466,-0.023234576,-0.08435388,-0.05535989,-0.027715052,-2.1860062e-08,0.04615827,-0.056162696,-0.011478994,0.051017866,0.055453986,-0.051736437,-0.03650558,-0.026283188,0.02358572,0.11510918,-0.005362689,-0.02904932,0.026493466,0.057934843,-0.06519729,0.011315102,0.11442519,0.058069777,-0.04818776,-0.15144476,0.060419835,0.015893513,-0.0046039,-0.0008645451,-0.012043749,0.043800127,0.0018545068,-0.029443905,-0.04463741,-0.029172353,-0.013396351,0.010723498,0.0062561883,-0.093841076,0.007800373,0.04908602,0.023686232,0.028544627,-0.012562469,-0.069605164,0.08124892,0.11557772,-0.016840562,-0.045136787,-0.027206045,-0.111142494,0.07020852,-0.0059889336,0.026089627,0.006531871,-0.06006811,-0.054805815,0.051528238,0.07021785,0.034659464,-0.011614761,0.027078247,0.06633214,-0.07731753,0.05114286,0.059390157,0.06274693,0.03314875,-0.029570114} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:20.898107+00 2026-01-25 01:27:51.616706+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 493 google ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB 1 t 496 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Recomiendo al 100% esta empresa de alquiler de coches. Nos recogieron en el aeropuerto en seguida, no tienes que esperar prácticamente nada, ya que hacen viajes cada 15 min aprox. Destacar la atención inmejorable de Isaac y Antonio, ambos muy atentos y recomendándonos lugares para visitar y comer en la isla. Muy amables, agradables y profesionales. Recomendaremos está empresa sin duda.\nGracias!!! recomiendo al 100% esta empresa de alquiler de coches. nos recogieron en el aeropuerto en seguida, no tienes que esperar prácticamente nada, ya que hacen viajes cada 15 min aprox. destacar la atención inmejorable de isaac y antonio, ambos muy atentos y recomendándonos lugares para visitar y comer en la isla. muy amables, agradables y profesionales. recomendaremos está empresa sin duda. gracias!!! 5 2025-01-25 01:27:48.342234+00 es v5.1 J1.03 {A1.03} V+ I3 CR-N {} {"A1.03": "Destacar la atención inmejorable de Isaac y Antonio, ambos muy atentos y recomendándonos lugares par", "J1.03": "Recomiendo al 100% esta empresa de alquiler de coches. Nos recogieron en el aeropuerto en seguida, n"} {0.024998816,0.053681225,-0.008091827,-0.021309992,-0.115391836,-0.010367413,0.061935216,0.00591771,-0.040174462,0.009378142,0.05475181,-0.0317731,-0.06446715,-0.052635852,0.031148132,0.046783555,0.02526685,0.042571504,-0.013976962,-0.037980396,0.0392876,-0.093800135,-0.03909387,0.08913257,-0.03368625,0.041014027,-0.019744247,0.07355502,-0.046007384,-0.08148287,0.03559768,0.05153847,0.04959515,-0.03672033,-0.032807477,0.054566212,0.03542018,-0.10971306,-0.03808512,0.09350512,-0.11110575,0.06566108,-0.07814457,-0.008888277,0.029107388,-0.08460381,0.040553547,0.08267348,0.036175635,0.012390112,-0.010587369,-0.0530269,0.020632343,-0.08646579,-0.0010717956,0.016835092,-0.02656569,-0.04659454,0.049537506,-0.032401413,0.012538583,0.022171613,-0.036275487,0.05725249,-0.013676662,-0.08258552,-0.021977779,-0.00013668771,-0.04460189,0.0068279565,0.055562586,-0.15171812,0.009399405,-0.030989144,-0.06363698,0.06651695,0.015072045,0.001574258,0.0166139,-0.01620341,0.124828525,-0.0010398707,-0.036483284,-0.025042364,0.02045158,-0.027340805,-0.006022368,0.009883471,0.049144458,-0.020237118,0.014589815,0.03804982,-0.0638024,-0.043609943,0.053659435,0.033788387,-0.020696335,-0.031757265,-0.036466025,-0.008243088,0.050344054,0.07429113,0.061688498,0.01867384,-0.14708003,-0.021489818,0.056494553,0.01038879,0.029172335,0.05384483,-0.13345724,-0.025246311,-0.012505749,-0.07113638,-0.036019422,0.043909878,-0.04931162,-0.048475657,0.005704504,-0.08125027,0.045284797,0.0007413173,-0.013913709,-0.033392407,0.023822768,-0.09480885,0.021587145,1.2330273e-32,-0.07390008,0.0146335205,-0.0076282113,0.06654375,0.0663905,0.007476957,-0.028965497,0.028999362,0.0064485143,-0.016929341,-0.10879887,0.0697004,0.012133573,0.025165722,0.048254497,-0.023387572,0.0021071294,0.001631902,-0.014343234,-0.062638916,-0.10175248,-0.032844316,-0.02669171,0.009234629,0.06797714,0.010570688,0.01783693,-0.037099484,-0.024557166,0.04112276,0.049939863,0.07155671,-0.05340374,-0.068800144,-0.058393218,-0.018498803,0.036452897,0.045259744,0.0070629483,-0.031628255,-0.06713005,0.015756642,0.00644675,0.033463243,-0.005504533,-0.010778261,0.01402206,0.008279101,0.09224836,0.049434613,-0.08029721,0.0066165393,-0.037712757,-0.011192291,0.0011746561,-0.005528413,-0.08135394,0.048274674,-0.045460194,-0.07505965,0.0034838468,0.048163142,0.002480041,-0.06240539,-0.035929296,0.018044833,0.02230374,0.04625732,0.09991718,0.08432525,-0.021803655,0.052376088,-0.025333246,0.022190679,-0.002348098,0.00084003323,-0.016853638,0.006656714,-0.038947742,0.07855193,-0.023718907,-0.009848913,0.051641632,-0.009223533,0.10223006,-0.009378476,0.105431095,0.074433714,0.01721323,0.12999757,0.012752575,0.09253152,0.07399921,0.0314125,0.06500784,-1.3547893e-32,0.019883558,0.011525281,-0.004678548,-0.04744653,-0.034843367,0.038564857,0.008463657,-0.009640552,-0.019461121,-0.027740275,-0.11250165,-0.07636013,0.08042079,-0.08678121,-0.050721597,0.09784296,-0.053009443,-0.05769864,-0.103941984,-0.058572505,0.10203568,0.04340304,0.07203024,-0.050720777,-0.0035615102,-0.06228758,-0.017698744,-0.031004012,-0.013723509,-0.027807165,0.021844866,-0.007742261,-0.026132952,0.10996015,-0.0652458,0.0056529297,0.030539561,0.06624929,0.0061206417,0.05636147,0.08078151,0.039836716,0.03803361,0.016228298,0.031006264,-0.0036325122,0.0053435117,-0.15938447,-0.004804152,-0.10653395,0.055371027,-0.07017745,-0.06335899,-0.006954863,0.114093244,0.055732265,0.02110972,-0.115217924,-0.10721108,-0.0061827875,0.03468602,-0.0046036467,0.028766274,-0.024091395,0.06903515,-0.007206237,-0.0050427197,0.044813488,0.031515166,0.020470215,0.029548671,0.009516402,-0.07350115,0.024601959,-0.0510107,-0.02960987,-0.010015474,0.024078889,-0.04858306,0.03215011,-0.01022197,0.046265103,0.012605306,-0.053324852,-0.008845168,0.000434099,-0.01705366,-0.04495138,-0.0099738445,0.013457808,0.013708981,0.003171212,-0.026615646,-0.0242124,-0.013626677,-5.398063e-08,-0.037594892,-0.07072957,0.07622397,0.025651656,0.040350433,-0.016207771,-0.0052633886,0.04582688,-0.043087732,0.010749546,0.008060425,-0.041266307,-0.031783152,0.11758079,-0.005432522,-0.008590672,0.03144236,0.10439366,-0.0039488752,-0.11095102,0.08500168,0.026908793,-0.041549187,0.04697327,-0.02233854,0.049931426,-0.05916469,-0.01844874,0.002513835,-0.025274714,-0.06912424,0.01623113,-0.0061905086,-0.09480033,-0.094515085,-0.068886735,0.019542426,0.0035417574,-0.11725354,-0.053512882,0.04468959,-0.01800261,-0.01085491,0.0051366347,0.0011323185,-0.08786302,-0.021790054,-0.0014277621,-0.0008282226,0.021403642,0.036276884,-0.0218681,0.10016355,-0.00056503585,-0.010479208,-0.01979374,-0.03395804,-0.021798415,-0.030699408,-0.021441683,0.029490849,0.011967374,-0.038225416,0.004728767} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:57.999588+00 2026-01-25 01:27:51.62076+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 495 google ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE 1 t 498 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ha sido un placer , coger el coche con ClickRent, servicio formidable te recogen en el aeropuerto y te vuelven a llevar. El personal es amable y encantador. Antonio, Carmen y Néstor fueron en magnífico con nosotros . Recomiendo alquilar con ellos ha sido un placer , coger el coche con clickrent, servicio formidable te recogen en el aeropuerto y te vuelven a llevar. el personal es amable y encantador. antonio, carmen y néstor fueron en magnífico con nosotros . recomiendo alquilar con ellos 5 2025-01-25 01:27:48.34225+00 es v5.1 J1.01 {A1.01} V+ I3 CR-N {} {"A1.02": "El personal es amable y encantador. Antonio, Carmen y Néstor fueron en magnífico con nosotros.", "J1.01": "Ha sido un placer , coger el coche con ClickRent, servicio formidable te recogen en el aeropuerto y ", "R1.01": "Recomiendo alquilar con ellos."} {-0.044419277,0.019238967,0.008701902,-0.015805729,-0.08348985,-0.011604503,0.09879989,0.01692653,-0.038655244,0.022035768,0.044796277,-0.009904392,0.0087811295,-0.029158266,-0.003782044,-0.0026799194,-0.023415854,-0.0016805652,0.0056545073,0.059853893,0.081238,-0.048023663,-0.048368186,0.09091111,-0.08095372,-0.058900945,-0.07763257,0.010287262,-0.07033801,-0.098170586,0.0135799395,0.064467154,0.010755296,-0.01724491,-0.020022817,0.028420884,0.02180876,-0.0751069,-0.0255175,0.026345931,-0.12573105,-0.04306176,-0.039553467,-0.009510179,0.012225865,-0.065539286,0.05533297,0.06892296,0.05064081,0.0074012224,-0.11925055,-0.02365776,-0.004128715,-0.057497315,0.015527933,0.1010679,-0.008567045,-0.054378647,0.124623045,-0.02834667,0.025163071,0.035041396,-0.06616203,0.04230653,0.049767993,-0.07734039,0.003166395,0.044489805,-0.014443646,0.002230664,0.09092346,-0.084646486,-0.0067572645,0.0466508,-0.029992891,0.058634922,-0.018479215,0.0141255595,0.016749924,0.014058188,0.047127873,-0.04477534,-0.021313207,-0.04699908,0.021123627,-0.03191088,-0.020774847,-0.040140826,0.057210624,0.003008353,-0.04639321,0.010484767,-0.01400931,-0.029957406,-0.009734535,-0.037194513,-0.014011644,0.013879197,-0.053382896,0.046137847,0.09525006,0.035455972,0.047083065,0.07160334,-0.07788065,0.03988419,0.038083512,-0.021919519,0.01620041,0.010597973,-0.11133223,0.01221725,-0.02223264,-0.09068651,-0.02171112,0.06772441,-0.036169793,-0.08110862,-0.018517157,-0.08896942,0.080331646,-0.016037786,-0.072983734,-0.02934149,0.027870268,-0.07767987,0.066836886,1.3934212e-32,-0.04484032,0.021609692,0.03844681,0.092369854,0.035674307,0.054074984,-0.106875114,0.02408337,-0.008314674,-0.030332306,-0.05708451,0.07932933,0.011656963,0.052812584,0.062561125,-0.029928476,0.035161775,0.020433113,0.0176764,-0.012146716,-0.03808055,0.01478268,-0.050158165,0.004386893,0.037708495,0.009660052,-2.477085e-05,-0.058412213,-0.06277069,0.06912909,0.027546285,0.04050976,0.021741899,-0.042642884,-0.005945309,-0.04547338,-0.0024875216,0.0091537405,-0.030534217,-0.019900871,-0.0305643,0.021539273,-0.05253985,0.06924335,-0.046842,-0.0043739146,0.08113685,0.06394519,0.046160296,-0.0056405156,-0.07427941,-0.046672177,-0.10801068,-0.051646005,0.02628572,0.04755003,-0.06612904,0.045715816,-0.0504858,-0.060169626,0.060663786,-0.0036193363,0.030342089,0.010213202,0.021894371,-0.03949221,0.071063295,0.04266522,0.12642248,0.11007971,-0.060121246,0.036966212,-0.0070263287,0.03843429,0.030093102,0.009653705,-0.04077063,-0.001254135,-0.0541041,0.035021126,-0.062463887,0.0071386746,0.04091929,0.020218574,0.040376402,-0.008907759,0.091869354,0.0169321,0.012244975,0.13530241,-0.021732755,0.056028582,0.044410445,-0.014578807,0.005300069,-1.5079656e-32,0.018694786,-0.00913157,0.007369985,-0.0067928326,-0.02046491,0.07826795,0.029278053,-0.033368986,-0.033459842,-0.0634832,-0.12696724,-0.06957784,0.18035398,-0.0916376,-0.027397607,0.090815246,-0.06492307,-0.10105441,-0.124749795,-0.018721055,0.0723757,-0.045497026,0.06335882,-0.020529447,-0.03759237,-0.03844885,0.016362602,0.025951708,-0.045770198,-0.0063917898,0.017911592,-0.008854165,-0.024101498,0.04278936,-0.03849535,0.114617914,0.032225735,0.047613185,0.050148863,0.054466497,-0.002602369,0.07800694,0.04858345,-0.026851702,0.0031884247,-0.057134215,-0.005796557,-0.13817035,0.03459528,-0.07061431,0.005415533,-0.0619872,-0.07473112,-0.021789484,0.08022057,0.014862444,-0.013306289,-0.11498547,-0.052182168,0.017662339,0.012794126,0.0071905893,-0.053793296,0.021470204,0.074088916,-0.07597644,-0.029189594,0.03080706,0.021829132,0.040955458,0.10244363,-0.035890263,-0.02599906,0.025062764,-0.034530263,-0.03259421,0.015948713,0.049323577,-0.053667698,-0.0025708524,-0.012017273,0.030511163,0.033924747,-0.06933364,-0.030700171,-0.011731539,0.03147879,0.004628498,0.0061638625,-0.011475984,0.017371701,-0.033106215,-0.046634253,-0.120160215,-0.03721888,-5.5545694e-08,0.0017710074,-0.0055509894,0.010819368,0.063538544,0.025593745,-0.014112494,-0.028881812,-0.002971205,-0.03176249,0.037915617,0.030036796,-0.014293806,0.031601805,0.03709626,0.04747909,0.0015290789,-0.0072187395,0.076706626,-0.03197495,-0.050764594,0.06593445,-0.024353404,-0.02774371,0.02150709,-0.033536784,0.08516695,-0.06998041,-0.054280728,0.028208494,0.019400274,-0.03346995,-0.006289764,-0.04848005,-0.13447206,-0.07174757,-0.0019529077,-0.02395519,-0.0019603476,-0.05231225,-0.061043154,0.06301206,0.07008989,-0.037406795,0.0312586,-0.00033722434,-0.05638219,-0.012200273,-0.023453305,-0.017397096,0.026256615,-0.02869374,-0.05601203,0.12111398,0.010859895,0.053562604,-0.025563436,-0.001093708,0.009761277,-0.007057698,0.013542585,0.048671078,0.042641547,-0.056004494,-0.08507232} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:40.749881+00 2026-01-25 01:27:51.627624+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 496 google ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB 1 t 499 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive. Orario di apertura ore 8 ma se hai l'aereo presto aiuto!\nAll'andata la navetta inesiste hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive. orario di apertura ore 8 ma se hai l'aereo presto aiuto! all'andata la navetta inesiste 2 2025-01-25 01:27:48.342258+00 it v5.1 P1.02 {} V- I2 CR-N {} {"J1.02": "Orario di apertura ore 8 ma se hai l'aereo presto aiuto!", "P1.02": "Hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive."} {0.01889279,0.090120785,-0.0054731825,-0.014105027,-0.01605158,0.058234684,-0.02591065,0.08367998,-0.05281138,0.012972874,0.09511953,-0.0639043,-0.006728772,-0.043500993,-0.0029243059,-0.07764571,0.030685779,-0.015316711,-0.09594672,-0.040787704,0.046346076,-0.016901929,0.010820249,0.093456075,-0.04121615,-0.025428066,-0.027053585,-0.0770015,-0.009629843,-0.046967376,-0.02956393,-0.019079506,0.11749036,-0.039485008,0.058850158,-0.004984215,-0.008974387,-0.018086487,-0.039188124,0.05692024,-0.013872569,-0.006676846,-0.07242596,-0.07061073,0.05733848,-0.0463215,0.036685623,-0.056554224,0.005743335,0.010263507,-0.0028554662,-0.027860684,0.023782652,-0.016999915,-0.038882907,-0.016136853,0.0014249543,-0.10438962,-0.041833453,-0.0420592,-0.051563617,0.008291802,-0.0153447315,0.06767972,0.039872274,0.020063078,-0.03178979,-0.017880784,-0.041685965,0.077697866,0.0680909,-0.027135476,0.05503523,0.09752783,0.026714282,0.03603479,0.000389505,0.025349023,-0.009439123,-0.061201327,-0.015674083,-0.029317835,0.023554517,-0.017490448,0.06397871,0.046646576,-0.044384323,0.036773495,-0.022052843,-0.041996483,-0.063664444,0.012818512,-0.042761244,-0.0016441,0.02379733,-0.010257953,-0.040966153,-0.1284222,0.034865968,0.029564362,0.07294172,0.018904181,-0.031393375,-0.003620856,-0.06080679,-0.0022151333,0.023513243,-0.10603661,-0.019884925,0.022803893,-2.0997373e-05,-0.090078644,0.091120094,-0.012729791,-0.052498493,-0.029391237,0.009724251,-0.0819177,0.026916219,-0.015644876,-0.07707312,-0.029072782,0.048763465,-0.02008284,0.021247145,0.0007677513,-0.0049155853,1.2702806e-32,-0.0262499,-0.10220644,-0.018199135,-0.077908464,0.00036274354,-0.026840013,-0.041501787,-0.09944022,-0.009760925,-0.01624727,-0.00551004,0.033274785,-0.024417225,0.00057967094,0.035796188,0.039734375,0.13424136,-0.0054774308,0.10016973,-0.044887755,-0.11785916,0.015800163,-0.024227576,-0.0013073154,-0.039229464,0.104114495,0.0070468504,-0.072525546,-0.08861259,0.051013682,0.025354644,0.06487951,-0.0029039232,-0.0047775563,-0.040663503,-0.05785408,-0.037507158,0.013786768,-0.0033734895,0.003737595,0.023108829,0.015206631,0.0152972285,-0.078944765,-0.004533658,0.04454766,-0.008419125,0.067907624,0.122989476,0.030968498,0.010166988,-0.026707288,-0.055905104,-0.047916755,0.012570196,-0.042916093,-0.11453539,0.039753936,0.022381399,-0.008890202,0.007939495,-0.03825718,-0.036842607,-0.009138982,-0.08484566,0.054445237,-0.027324622,-0.03714642,0.08285143,0.013843276,-0.036042973,-0.06749248,-0.009740233,0.12296345,-0.033261597,0.057588506,-0.024836402,0.026019305,-0.0077853394,0.02240999,-0.012039992,0.03232612,0.03578138,0.009620891,0.07449129,0.07265565,0.037881333,0.021057092,0.054414082,0.041063588,0.050456084,0.007713275,0.03480421,-0.003987257,-0.030937562,-1.22438816e-32,0.08899512,0.009842142,-0.05518214,-0.039044548,-0.010168492,-0.019527495,-0.09737857,-0.04593466,0.04436545,0.07338928,-0.0010031066,-0.067279436,0.13176635,-0.08688913,-0.07287926,0.08390714,0.05197493,0.047495496,0.07871672,-0.04655276,-0.0077751824,-0.08589005,-0.02289629,-0.0026336666,0.051074028,0.021672286,-0.011539869,0.08260665,-0.076094255,-0.029014405,0.02236576,-0.009866528,-0.056531724,-0.018915586,-0.008626702,-0.03592729,0.05922748,0.046440125,0.0020085385,0.024191609,-0.07054479,-0.023771424,0.040448133,-0.0061853025,0.009624413,0.027985912,-0.011679858,-0.0835681,-0.09243476,0.007645724,0.069457576,-0.059592284,0.15771578,-0.07788795,0.028066041,0.08449289,0.040925443,-0.07720474,-0.052112315,-0.102321886,0.10404483,-0.01856038,0.022536892,0.028699415,0.00853248,0.08369102,-0.015419572,-0.01972657,-0.09611571,0.0045260754,-0.025188502,-0.09056497,-0.06567595,-0.02264257,-0.022928221,0.040866528,-0.029262519,-0.01118163,0.025014767,0.074215166,-0.13042909,-0.020692341,0.027158342,-0.057738543,-0.017995575,-0.0021825316,0.028707935,0.009914971,-0.0077601466,0.07136458,0.037704106,0.037969902,-0.0046750004,-0.03630483,0.04183133,-4.926576e-08,0.059719667,-0.08844371,-0.040495235,0.03885081,0.047972854,-0.09958806,-0.017691707,0.00909761,0.0015953574,0.054793715,-0.019902136,0.016354004,0.031538,-0.016969303,0.0055837464,0.059834782,0.11203881,0.054325987,-0.06595407,-0.024156947,0.0142394,-0.012744445,-0.008464781,-0.11304578,0.029954268,0.03165532,-0.019012293,0.009203747,-0.011199624,-0.021625815,0.013655986,-0.0054818755,0.03449154,-0.06959772,-0.0004717497,0.06825686,0.06803831,0.031224808,-0.013912735,-0.024369435,0.036684822,-0.052765094,0.062894754,0.011301762,0.0401678,-0.06527047,-0.06868479,0.061726697,-0.022593575,0.0014472426,-0.074223615,0.026313808,0.08267896,0.037666358,0.07550863,-0.03147069,0.03476909,-0.015237207,-0.017255519,0.07454919,0.12948656,0.0069696377,0.068183824,-0.03304835} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:31.329038+00 2026-01-25 01:27:51.632196+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1505 google ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE 1 t 1508 Go Karts Mar Menor unknown Great fun but expensive at 19 euros for 8 minutes. great fun but expensive at 19 euros for 8 minutes. 3 2024-01-31 01:52:39.833374+00 ro v5.1 V1.01 {V4.01} V- I2 CR-N {} {"O1.05": "Great fun", "V1.01": "expensive at 19 euros for 8 minutes"} {0.043214995,0.033491477,0.012020062,-0.0072965375,-0.06306058,0.039192967,-0.0055116173,3.9510367e-05,0.039690137,-0.00028999752,0.01012764,-0.008633761,-0.045332413,0.09176277,0.028233605,-0.11690569,0.093775846,-0.068218715,0.019720884,-0.04703342,-0.0107805,-0.059589125,0.04386199,0.0066719865,-0.009836705,-0.04216542,0.020849204,-0.038676437,0.019642547,0.0022968245,0.027181834,0.09004285,-0.028545648,0.00625006,0.014971663,-0.011823597,0.068843834,-0.084179044,-0.06059226,0.010305199,0.032906864,-0.032272875,0.008737993,-0.001963475,0.012924717,0.046316735,0.032079726,0.01063387,0.05258479,0.08469487,0.09440893,0.0070864647,0.031377364,-0.09624139,0.018563038,0.01933243,-0.024980469,-0.072524264,0.033974692,0.024327463,-0.023075847,0.019394869,-0.060900833,0.028158246,-0.04528089,-0.110698946,-0.03782347,0.0071236505,-0.009224408,-0.005348866,-0.09556086,-0.029132532,0.01023707,-0.028792042,-0.008899389,0.07092641,0.0109992195,-0.09917595,-0.07323592,0.048469137,0.035988726,-0.08380542,0.007316743,-0.011956553,0.035007685,-0.12432918,0.13056445,0.013290685,0.060064483,-0.010438317,-0.003135208,0.019446244,-0.054099012,0.0035628893,-0.04365551,0.011867751,0.0269904,0.06846626,-0.026494008,0.080693215,-0.002033229,0.060096417,0.044253655,0.024563823,-0.06290139,0.019475695,0.05914974,0.08885533,0.05526638,-0.008488715,-0.049804874,-0.0039648945,0.042055484,-0.045018144,-0.0068758796,0.09770547,-0.027696405,-0.018339388,-0.0021364363,-0.0021131448,0.10051207,-0.007863972,0.005721781,0.07010549,-0.031477407,-0.017734619,0.08568146,-2.8903784e-33,-0.084389314,0.025438612,-0.011696909,-0.046127196,-0.028455751,0.042651486,-0.009650682,-0.0345164,-0.09755661,0.029652216,-0.04512162,0.009240124,-0.03260678,0.017693074,0.056930628,-0.06133642,0.003069381,0.017256906,0.018583851,0.0035824678,-0.04149775,-0.029016191,0.047893222,0.017611641,0.010386975,0.009044029,-0.019107249,-0.07790266,0.14305478,0.009663852,-0.07033125,-0.020751826,-0.07303463,0.03256992,-0.0029237347,0.039297733,0.026596282,-0.12717843,-0.014361065,0.034367494,0.045794915,-0.015605483,-0.07712741,-0.025290998,0.011694719,-9.768888e-05,-0.05818734,0.007886816,-0.029135076,-0.043827154,-0.06381311,0.052236922,-0.029892394,-0.009711648,0.037798844,0.05331826,0.051893316,-0.043968942,0.019634811,0.018096104,0.014778972,-0.0076279994,-0.023011314,-0.010621832,-0.08118718,0.069676116,0.081856385,0.0069014225,0.03268084,-0.07478088,-0.02545199,0.039748587,0.12523305,-0.071060814,-0.022247959,0.04227875,0.007965246,-0.05835493,0.017218446,0.042254385,0.0413087,0.050450154,0.012611474,-0.023037588,0.09433763,-0.016587017,0.016848624,-0.077206194,-0.0417656,-0.00820059,-0.08046681,-0.10028142,-0.022820925,0.0071304985,0.052504584,1.695493e-33,0.029717874,-0.06664677,-0.0026846535,0.035530847,0.09232914,-0.020037021,-0.024309274,0.06628138,-0.016437484,0.053124905,-0.08842979,-0.029857801,0.059251968,-0.00058023614,0.010398799,-0.047699872,0.08096999,0.01756932,0.055029817,0.006243039,-0.0045291423,0.05375241,-0.023698203,-0.049166806,-0.11780446,0.052690987,-0.021144066,-0.027802885,-0.08127327,0.066118576,-0.05260923,0.022526005,-0.013007857,-0.05157772,-0.04333502,0.11061543,0.034637272,0.06694984,0.0010640013,-0.053356916,-0.035366368,-0.05253564,-0.024762603,0.009987663,0.0586184,0.026043613,-0.06898124,-0.08474798,-0.088701665,0.029893078,0.044316694,0.0031844708,-0.050468624,-0.07961643,-0.040378254,-0.117726274,0.027622076,-0.07282968,0.039373253,-0.06998488,0.0322749,0.05586693,-0.08530292,0.069827706,0.04415212,-0.008626022,-0.06512736,0.009028245,0.0053277425,0.018182348,-0.0994725,0.052880015,-0.033650618,0.05475689,-0.0004584709,-0.026269201,0.003420712,0.08528185,0.12574194,0.047888648,-0.0068880515,-0.010839104,0.021501688,-0.043983612,-7.0229056e-05,0.027317192,0.0076810834,0.029648555,-0.025362667,0.05739305,0.106447875,0.017811779,0.0011400002,0.008293228,0.057530776,-1.9210587e-08,0.0148704685,-0.0004448323,-0.026515951,0.0074023237,-0.019534849,-0.122475065,0.031253565,-0.01545252,-0.00075280445,0.08104171,0.035270162,-0.08786857,0.06339663,0.035711046,-0.02534404,0.01496856,0.016503274,0.055608314,-0.023698691,0.10076393,0.010340022,0.111281045,-0.008007799,-0.0008988633,-0.040308565,0.027440602,0.010650862,0.09029675,0.022583742,-0.10099611,-0.014748744,-0.019414676,-0.027813833,0.044479795,0.007172077,-0.07019927,-0.020812958,-0.026622761,-0.0035543407,-0.018661754,-0.04890381,-0.115463756,-0.08730114,-0.054812692,0.03953707,0.037676822,-0.13467076,-0.03782991,-0.03371426,0.050858773,-0.024445156,0.05158658,0.000739026,-0.009527397,0.11636372,0.019896924,-0.011815065,-0.05120698,0.008146057,0.078348175,0.030646104,-0.055242736,-0.06752704,0.022889549} 0.75 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.88389+00 2026-01-30 02:01:09.592241+00 22c747a6-b913-4ae4-82bc-14b4195008b6 500 google ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB 1 t 503 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el que se apreciaba ligeramente ya que los daños que nos atribuyen no se ven a simple vista. Tocará reclamar, no lo recomiendo para nada. servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el que se apreciaba ligeramente ya que los daños que nos atribuyen no se ven a simple vista. tocará reclamar, no lo recomiendo para nada. 1 2025-05-30 01:27:48.34229+00 es v5.1 A1.03 {J1.02} V- I3 CR-N {} {"A1.03": "Servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el", "J1.03": "Tocará reclamar, no lo recomiendo para nada."} {-0.029544607,0.0046361573,-0.031115388,-0.099335425,-0.09517474,0.02814109,0.0024453436,0.009756514,0.026456965,-0.012453632,0.057093456,-0.0013795869,-0.046389237,0.04502327,-0.018086793,-0.023135917,0.007341456,0.028538628,0.0056714783,0.016224438,0.088457815,-0.0981229,-0.08787608,0.06628397,-0.08043039,0.025661075,-0.01392835,0.013267501,-0.026534608,-0.09525011,0.03328159,0.031256747,0.048364088,-0.03861533,-0.0029449672,-0.04604954,0.059993472,-0.065033995,-0.082337424,0.064708404,-0.045632906,0.07509307,0.005248305,-0.0700184,0.024383938,-0.056231387,0.031924564,0.005588996,0.06420402,-0.06856859,-0.09180276,0.008985636,-0.06428729,-0.04822362,-0.02476482,-0.0043590916,-0.01284698,-0.014436969,0.085188285,0.0073833033,0.047230095,-0.0055597634,-0.02340194,0.09908668,0.03302555,-0.037393104,0.034988344,-0.04090804,-0.052663375,0.067632034,-0.0006510346,-0.017584696,0.03509604,0.012010191,-0.08140787,-0.0008293487,0.034390632,-0.010591348,-0.014932578,-0.06943719,0.04067412,0.0026480046,0.014489498,-0.058732394,0.045483217,0.040971737,-0.02752054,0.008990136,0.04286016,-0.003070171,-0.097856104,0.0743122,-0.048279777,-0.035131432,-0.08980982,-0.029082127,0.04075751,-0.069750614,-0.047088306,0.04147691,0.122164056,0.064978495,0.06937956,-0.031895135,-0.035077464,0.050821148,0.009344158,0.03715682,0.025265174,0.032602105,-0.08724166,-0.00591624,-0.011909464,-0.06584423,-0.06732139,0.03652777,-0.07397641,-0.06291988,-0.074026905,-0.017372089,0.06170957,-0.070229225,-0.026514541,-0.031648602,0.06726466,-0.095130816,0.03996216,1.4945359e-32,-0.030085996,-0.043962114,-0.017549776,0.071516044,0.02737249,0.03734205,-0.020784613,-0.014196872,-0.02480889,0.016331954,-5.887683e-05,-0.013743547,-0.02072553,-0.0038828535,0.0067762802,0.042728864,-0.010084457,-0.029199893,-0.034494407,0.005171355,-0.022093438,-0.0067129424,0.017731672,-0.021765891,0.009381609,0.031608593,0.0013339994,-0.0938851,-0.023281397,0.05833078,-0.034510277,-0.004218994,-0.010038588,-0.039575227,0.0036938759,-0.0075429357,0.008921402,0.024240918,-0.063115,0.011970038,0.06295137,0.06850189,-0.12066549,-0.004066528,-0.0073209186,-0.007204841,0.065124914,0.0429118,0.027104521,-0.00086428947,-0.000550116,-0.022113057,0.003982926,-0.09357764,0.0028582348,0.06672821,-0.035242785,0.045501716,0.012860019,-0.09022054,0.029316695,-0.026534894,-0.057967935,0.013230208,-0.059626583,-0.06309178,0.054972425,0.047917385,0.12163336,0.0795414,-0.0100620845,0.038348276,-0.013743545,-0.04318605,0.038595162,0.02987366,-0.02624319,-0.02275195,-0.0061827,0.05777668,0.040125187,-0.0467175,0.07224927,-0.010393337,0.1484389,0.07411788,0.093772836,0.031878255,-0.031596947,0.05392608,0.033148497,0.14673458,0.06520707,-0.092141524,0.12253451,-1.4857915e-32,-0.016751777,0.055606514,0.008876891,-0.027693925,0.0054293573,0.023448272,-0.016309652,0.060674485,0.02665849,-0.1173959,-0.07482069,-0.18142979,0.036944553,0.0035851854,-0.026117284,-0.0058730096,-0.016117293,-0.0752162,-0.060927402,-0.029473983,-0.022207286,0.010212495,0.028842077,-0.058873232,-0.031940915,-0.06239427,-0.02522198,0.08263494,9.827432e-05,-0.0066331513,0.079700276,-0.07917371,-0.027973702,0.026950847,-0.006883396,0.059703477,0.061668754,0.03774721,-0.013805103,0.04457437,-0.03059746,0.1129724,-0.040197123,-0.08671482,-0.019513026,0.023661658,-0.03296617,-0.07608835,-0.064972475,-0.06767034,0.04199495,-0.026449379,-0.04070952,-0.013613511,0.090305775,-0.02297207,-0.059620462,-0.011997465,-0.011539397,0.02477842,0.011890554,-0.037595507,-0.09960522,-0.055886067,0.07458991,0.07574382,-0.022603985,0.03939427,-0.020822013,0.03298618,0.07399554,-0.019321065,-0.09123101,-0.0025215794,0.0009568212,-0.05370033,-0.07908587,0.029825773,-0.00040868545,-0.015393191,-0.009957701,-0.08612137,0.010373553,-0.011340688,0.026113596,0.027003266,0.05485508,-0.03867068,-0.027048081,0.027480502,0.036371514,0.044891935,0.020193502,-0.0034029097,-0.017337114,-5.2964623e-08,-0.04691619,-0.0416371,-0.013654795,-0.0057283514,0.02882743,0.028546603,0.007134506,-0.028351497,0.0034019123,-0.02161488,0.057138763,-0.040499404,0.0050502447,0.099611714,-0.011043214,0.0829061,0.064238735,0.026486076,0.0031662686,0.004802687,0.072416574,0.008752294,0.031355917,0.0054838257,-0.053199727,0.06296339,-0.0040794807,-0.016775697,0.023728503,-0.070789404,-0.06084743,-0.018817142,-0.0010127105,-0.114090204,-0.0484202,-0.07294133,-0.020515107,0.042303313,-0.0040924316,-0.06574139,0.11827086,0.048691597,0.043451875,0.029294515,-0.06271831,0.0016865664,0.061490215,-0.11367574,-0.018786334,-0.0050554285,-0.07914116,-0.02686954,0.04345961,-0.029681921,0.034154557,-0.019352058,0.10573041,0.029551255,-0.064220175,0.022316266,0.08930303,0.09504102,0.013124904,-0.050040122} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:06.680708+00 2026-01-25 01:27:51.643243+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 503 google ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB 1 t 506 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La atención de Carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarnos las opciones que teníamos y nos ha recomendado la mejor para nosotros) ha sido agradable, risueña y atenta.\nAdemás, hemos ido andando y a medio camino Fran se ha parado con el mini bus (que ponen de cortesía desde el aeropuerto hasta el punto, pero con las prisas se nos había pasado) y nos ha llevado el tramo que faltaba.\nPor otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho.\nHemos quedado muy satisfechos, sin duda los elegiremos!! la atención de carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarnos las opciones que teníamos y nos ha recomendado la mejor para nosotros) ha sido agradable, risueña y atenta. además, hemos ido andando y a medio camino fran se ha parado con el mini bus (que ponen de cortesía desde el aeropuerto hasta el punto, pero con las prisas se nos había pasado) y nos ha llevado el tramo que faltaba. por otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho. hemos quedado muy satisfechos, sin duda los elegiremos!! 5 2025-01-25 01:27:48.342296+00 es v5.1 A1.03 {} V+ I3 CR-N {Fran,Carmen} {"A1.03": "La atención de Carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarno", "J1.02": "Además, hemos ido andando y a medio camino Fran se ha parado con el mini bus (que ponen de cortesía ", "O1.02": "Por otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho."} {0.090150915,0.038919512,-0.003141094,-0.0026725081,-0.024329884,0.0015412031,0.098660596,0.063901775,-0.036098722,0.026186218,0.018358631,0.06239431,0.037761226,-0.030805206,0.010809702,0.03243477,0.016395368,-0.031104637,-0.063730665,0.07428491,0.07765544,-0.053816568,-0.0659543,0.081054404,-0.12410965,-0.031825203,-0.0099806115,-0.045768958,-0.088790074,-0.064467974,-0.008053999,0.022271972,0.08848809,-0.015161624,-0.021307362,0.01041206,0.06188331,-0.15039025,-0.060894072,0.025273632,-0.073027566,-0.06886786,-0.018394696,-0.019307243,-0.026077695,-0.021679187,0.10336444,0.039909787,0.070812315,-0.059615616,-0.06030532,0.0026014845,0.01647333,0.02802845,-0.013438127,-0.0069874357,-0.06616874,-0.011713326,0.115160145,0.04556369,-0.023064805,0.021529043,-0.0057137446,0.080743216,0.008267652,-0.04986137,0.0088543575,-0.037996266,0.0038333242,0.07271237,0.052481256,-0.04243128,-0.03003714,0.021922924,-0.031713247,0.055052508,0.049608573,-0.0020572762,-0.02115091,-0.08809679,-0.0316954,-0.07848498,-0.0009565991,-0.035872713,-0.0011708791,0.041108392,0.016703103,-0.01045322,0.009795429,-0.050818536,-0.031576622,0.06692076,-0.10757117,-0.0121060815,-0.06462504,-0.058085833,0.024001244,-0.08478465,-0.07956265,0.025343211,0.07419999,0.0655451,0.11455988,0.00455458,-0.016564474,0.07386103,0.007850281,-0.049822006,-0.038034126,0.08541394,-0.054422896,-0.002315678,-0.011109183,-0.0094953645,-0.066116884,0.0044062585,0.012402074,-0.056376886,-0.052473538,-0.05069705,-0.007850323,-0.06907817,-0.011592879,-0.045750193,0.014858775,-0.07257479,0.048105042,1.39832e-32,-0.04051347,0.0075429026,0.020200346,-0.02306921,0.035702787,0.010100398,-0.019847164,-0.017048426,-0.008953272,0.08289798,-0.035203416,0.02259949,0.05636487,0.03637838,0.087086216,6.2489205e-05,0.01990847,-0.046018846,0.004537766,0.028716171,-0.028512761,0.0036344077,-0.02452481,-0.022279702,0.01058454,0.100758426,0.04816893,-0.068529636,-0.00955072,0.063312426,0.0032297883,0.007862832,0.0013568675,-0.032601908,-0.06813104,-0.024895564,0.04092511,-0.0041386005,-0.046689212,-0.034521464,-0.026301207,-0.010214877,-0.0294897,0.024728224,-0.0621874,0.025697965,0.09341767,-0.012497049,0.042220846,0.0010449985,-0.07223175,-0.07831407,0.004041566,-0.015124707,0.05223007,0.0019704627,-0.08442089,-0.02695662,-0.009737007,-0.060106944,0.07255475,-0.053314433,0.0486312,-0.036307797,0.040701885,-0.02214052,0.04793315,0.049311012,0.19065166,0.03721327,-0.04872436,0.0010919869,-0.07112509,0.038625885,0.06712038,0.005998302,0.0009862537,-0.010703558,0.033231605,0.030058714,0.00094189815,-0.051170997,0.023987146,0.041406162,0.11276061,0.080749564,0.060838714,0.02371187,-0.13774137,0.1478089,-0.05208835,0.15623514,0.039301064,-0.028099323,0.016814962,-1.4838577e-32,0.011718926,0.032695405,-0.022255694,-0.005309605,-0.034880716,0.0045539937,-0.015228137,-0.03141327,-0.0009190138,-0.05158457,-0.12904055,-0.12782857,0.09215535,-0.075137965,-0.04026952,0.04512714,-0.00779263,-0.10585702,-0.0382999,-0.040439516,-0.010723127,0.054489713,0.023316862,-0.0005126858,-0.012166621,-0.07891164,-0.00054909254,0.030680964,-0.08867339,-0.0103701595,0.022013212,0.006003839,0.024056317,0.04941182,-0.07176219,0.029775923,0.012752992,0.032207463,0.037007343,0.012184719,-0.006428195,0.03438136,0.03149335,-0.09676403,-0.010698112,0.015407976,-0.0014862812,-0.1358488,-0.07679534,-0.045411363,0.069199406,-0.089929625,-0.08069453,-0.00064098334,0.064487696,-0.03889722,-0.006424237,-0.080175996,-0.056398362,-0.052749727,0.066396795,-0.024760293,-0.07015019,-0.020579984,0.07166574,0.0036913753,-0.0045616515,-0.0436422,0.006123069,0.026298309,0.07262522,0.009707104,0.0067153256,0.043859016,-0.01425148,0.019627914,-0.03011369,0.023137856,-0.022554683,-0.021228995,0.008231559,-0.0005643507,-0.023295606,-0.04527427,-0.031481344,0.043921206,-0.0073126974,0.024170443,-0.0116928425,0.064365685,-0.011856196,0.09250963,-0.025163839,-0.05984069,-0.05937807,-5.601676e-08,0.01962039,-0.016870843,-0.028444491,-0.018251453,0.017315697,0.055421896,-0.050134458,0.021566683,-0.053987395,0.016437026,0.058919586,0.03159946,-0.00073586166,0.057843868,0.015002959,0.0025782937,0.076028414,0.01774943,-0.03570587,0.025157904,0.07262791,0.0010101239,-0.05461791,0.048112962,0.045480926,0.027724426,-0.005373534,-0.06559537,-0.020224579,-0.058108933,-0.022353325,-0.036365177,-0.02834373,-0.06520028,-0.080126755,0.0068005403,0.0078811245,-0.0010198781,-0.00772152,-0.0055278083,0.094624035,-0.020092089,-0.045507975,0.010070601,-0.0652501,-0.03003145,0.03288139,-0.010123225,-0.045816846,-0.008122298,-0.042456612,-0.05725935,0.071298525,-0.018360602,0.02546368,-0.04343722,-0.0071258806,0.057999305,-0.002847632,0.02508936,0.06107132,0.13951087,-0.09419283,-0.04427032} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:04:05.759966+00 2026-01-25 01:27:51.654867+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 638 google ChZDSUhNMG9nS0VJQ0FnSUNuek5EdExnEAE 1 t 641 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen servicio. Ysaac, nestor y carmen muy majos y atentos muy buen servicio. ysaac, nestor y carmen muy majos y atentos 5 2025-01-25 01:27:48.343013+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy buen servicio. Ysaac, nestor y carmen muy majos y atentos"} {-0.055695105,-0.0041096746,0.024890216,0.005340079,-0.06279215,0.0090298625,0.09043608,-0.0018796611,-0.0045486744,-0.010872581,0.03050618,0.04648417,-0.008080076,0.0040542213,0.017963937,0.041945133,-0.01959808,0.038565088,-0.008064836,0.09202135,0.121165216,-0.04560261,-0.03615749,0.12777807,-0.04553736,-0.0430333,0.024956776,-0.029468233,-0.018582266,0.023079343,0.006331674,0.0051585804,0.0966965,0.009602063,0.051150516,-0.009352754,0.10935326,-0.09260145,-0.0044941097,0.04558586,-0.09415447,-0.009598016,-0.0140793305,-0.00015390707,0.018669143,-0.119464904,0.05212994,0.05895832,0.06040164,-0.059545346,-0.1212207,-0.038149774,-0.064428754,-0.045470938,0.026051896,0.02386342,-0.018618913,-0.06132629,0.02074587,-0.046425503,-0.018028814,0.033825185,-0.019040741,0.056922697,-0.01980129,-0.05198007,-0.0088481745,0.043118995,-0.021059409,-0.0381457,0.07178783,-0.068314545,0.025496818,0.03362935,-0.11862559,0.0023106139,0.050560303,-0.022697315,-0.08460949,-0.052815422,-0.06070985,-0.04301002,0.054042995,-0.01700786,0.009328634,0.0012483778,-0.0560855,-0.02792971,0.032397747,-0.040145822,0.033292674,-0.07434484,-0.019415233,0.04984733,-0.038705613,-0.008477173,0.021158187,-0.027375076,-0.011236842,0.111216486,0.031593278,0.018145056,0.12283304,0.06378926,-0.040469367,0.11302535,0.028277457,-0.030257719,-0.023021096,0.011281794,-0.06963184,-0.019028388,-0.11249443,0.012451268,-0.028523978,0.022301719,-0.0021376072,0.005409242,-0.044594824,-0.07802128,0.057215292,0.07829411,-0.029229794,0.024786048,-0.0617333,0.015797466,0.10371293,6.1951315e-33,-0.08432671,-0.071964316,0.048281476,0.03982731,-0.049624782,0.043535963,-0.031107105,-0.0070831846,-0.017997311,0.03442995,-0.06362543,0.018415354,0.052963953,-0.0034395165,0.0074819215,0.02826603,0.0050912863,0.0049312366,0.070305765,0.030204955,-0.01669685,0.048263233,0.023489267,-0.015660297,-0.021134501,0.024281248,0.004434383,-0.08570512,0.009351222,0.09978869,0.06391807,0.001566503,-0.009257664,-0.049600553,-0.011180887,-0.015107412,0.0066532963,-0.0025484078,0.00169462,-0.033346817,-0.0118236765,0.03479092,0.048044987,0.059708238,-0.016360035,0.008888019,0.11169356,0.070644885,0.10633348,0.046795744,-0.0760107,-0.08233234,-0.13402867,-0.010751812,-0.0042096307,0.0005917478,-0.037017114,0.05307129,-0.0066972375,-0.07335312,0.03837295,-0.05522963,0.042362936,-0.08086416,-0.036832042,0.011119663,0.03047241,0.056390442,0.09193415,0.076108836,-0.09200955,0.0154865775,-0.028830757,0.05660396,-0.02267836,-0.021800641,0.064416334,-0.00735481,-0.029056145,0.081419274,-0.07257023,0.08018222,0.036897574,0.07615114,0.028195154,0.061385818,0.08526653,0.015770398,-0.008710359,0.11270947,-0.06473154,0.048061844,0.06484294,-0.0340357,-0.032904476,-6.654983e-33,-0.03820271,-0.018168068,-0.030873233,-0.0012821194,0.014749203,-0.038829867,-0.019497171,0.014904653,-0.04522195,-0.03975961,-0.06917139,-0.14696673,0.11406645,-0.07501279,-0.062243722,0.07951478,-0.012567115,-0.031424124,-0.11293417,-0.023245575,-0.0018301734,0.051372703,0.027448576,-0.00999068,0.013423396,-0.0014854947,0.008200707,0.015179202,-0.02373675,0.023571638,0.033303875,-0.038096797,-0.10590632,0.020609055,-0.023877792,0.07997719,-0.041306734,0.068321206,0.030707438,1.4068105e-05,0.049898747,0.045084693,0.012874708,0.05669236,-0.056315344,0.0572597,-0.02818513,-0.056396615,-0.010248006,-0.09007955,-0.03082752,-0.037333563,-0.01996224,-0.009649475,0.08591598,-0.062471613,-0.11981474,-0.016778192,-0.08931384,0.01639741,0.09162265,-0.0092183165,-0.0739078,0.03430011,0.073557295,-0.01877767,-0.05905299,0.005303609,-0.028636256,0.0140763,0.06541923,-0.030472545,-0.08984776,0.019364612,-0.04614211,-0.025433276,-0.13701762,-0.10143284,-0.06377074,-0.020297533,0.04774631,-0.017699387,-0.04201632,-0.035427447,0.0012403374,0.017999882,0.0348808,0.054091025,0.03675061,0.021489482,0.006918332,0.024497142,-0.014805524,-0.077541746,-0.013104311,-2.960442e-08,0.019868696,-0.0027803213,0.045598507,0.0023830454,-0.08116601,-0.0391886,-0.04437129,0.027579783,0.0072649214,0.046940282,0.018998615,0.03389503,0.0018152084,0.006941959,-0.049240932,0.011412663,0.046468534,0.035730947,0.02155117,-0.1048647,0.085626416,-0.0051486623,-0.018703379,-0.028279005,-0.004887976,0.0845212,-0.031196821,0.031907864,0.020519186,-0.00725244,0.06674756,-0.04819231,-0.07656449,-0.076125674,-0.00016798648,0.015223232,-0.08201968,-0.03622592,-0.0071229683,-0.035203997,0.037530538,0.046488214,0.020194085,0.029693155,0.06570522,-0.0015766677,0.017305313,0.05023394,0.023754315,-0.0012759896,-0.056116477,-0.06746894,0.05026129,0.04218202,-0.011435459,-0.01926401,0.010212773,0.032860514,0.012602857,0.013863399,0.003588131,0.016274912,-0.02630639,-0.071904115} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:21.739596+00 2026-01-25 01:27:52.167822+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1180 google Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB 1 t 1183 Soho Club unknown Last Post (8/15 & 16/2025): Highly recommended to come visit and have fun with open-minded and positive attitude. I love this place. I came here twice in a row. Open dance floor and dance moves. Great vibe and great DJ. Friendly staff and the bar owner were incredible amazing person. Definitely, I will come visit again when I'm in the country. I already missed this place ☹️ last post (8/15 & 16/2025): highly recommended to come visit and have fun with open-minded and positive attitude. i love this place. i came here twice in a row. open dance floor and dance moves. great vibe and great dj. friendly staff and the bar owner were incredible amazing person. definitely, i will come visit again when i'm in the country. i already missed this place ☹️ 5 2025-10-01 18:34:31.336452+00 en v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Highly recommended to come visit and have fun with open-minded and positive attitude. I love this pl", "P1.01": "Friendly staff and the bar owner were incredible amazing person."} {0.028889848,-0.05730125,0.03902585,-0.00030742053,-0.092416845,0.0366372,0.04197964,-0.0859443,-0.02066939,-0.04730729,0.013977744,0.021619508,0.036243103,-0.04480452,0.03868588,0.013060087,0.08573661,-0.12356707,0.048303556,-0.038616046,-0.07544397,-0.033930402,0.016350958,0.07296448,-0.10395624,0.012727467,-0.007952719,0.090267465,0.035036948,-0.02300464,-0.009309158,0.11445892,-0.042287447,-0.002880862,-0.019947672,0.061900117,0.032630768,-0.15903516,-0.011927676,0.07244305,0.01675089,0.055576492,0.041564398,0.019839264,0.034279775,-0.03738759,0.011827962,-0.06730436,0.044266276,-0.041629754,0.021693598,0.01749187,0.11690336,-0.033250313,4.9661918e-05,0.0012557876,-0.05783698,-0.06882092,0.0020913477,-0.018561391,0.06527035,0.013171919,-0.029423077,0.02817547,0.018461205,-0.0689281,-0.07638674,0.014644745,0.07571345,-0.07015017,-0.050014142,-0.019741759,0.05771813,0.0051570437,-0.004156666,-0.06000117,-0.045566883,-0.055170745,-0.01178875,0.013401826,0.04292365,-0.060386218,-0.00904595,-0.035723362,-0.075712435,-0.09989111,-0.0028045825,0.04844599,0.012369825,0.0069158706,0.06298735,0.13294998,-0.085286975,-0.059429195,0.007122942,-0.016364112,-0.03697195,0.010196369,-0.022433363,0.054773137,0.06492645,0.14799753,0.014665004,0.0031448947,-0.047370985,-0.045427654,-0.0024645494,0.14425837,-0.0029206732,-0.017960776,-0.012708197,0.01105488,0.045234114,-0.03627589,0.019549325,0.043616973,0.056733556,0.022660388,-0.02438277,-0.051538613,0.039393887,0.04943534,0.04833369,0.049202878,-0.02719803,-0.020217644,-0.024929618,-7.827079e-34,-0.005922357,0.022466293,0.044006772,0.021464396,0.05801419,0.029371055,-0.09256631,-0.06929052,-0.04704003,0.011348673,0.07931443,-0.031397194,0.0029130618,-0.033202887,-0.026261922,0.017883608,-0.046559304,-0.0122122,-0.07163248,-0.016206993,-0.01119101,-0.02120667,-0.005361078,0.08759124,0.0013109365,0.015033732,0.07025971,-0.01430551,0.013883654,0.011362492,-0.047677048,-0.0030975805,-0.07735377,-0.019614877,0.024068918,0.03099388,-0.046067,-0.04993823,0.011039442,-0.004951436,0.016275305,-0.00026861214,-0.031359673,0.067759335,-0.0027879353,0.047985476,0.05022583,-0.03863606,0.056579262,-0.03224001,-0.11606925,-0.0019987228,-0.045878813,0.058256675,0.009533604,-0.03458674,-0.02913878,0.045556862,0.038186178,-0.03389394,0.06155314,0.052780997,-0.060243834,-0.12876813,-0.06182295,-0.054274313,0.005997961,0.029003475,0.09021518,-0.010448945,0.031427935,0.028953066,-0.0065465043,0.00371642,0.022198053,0.061221026,-0.08908508,-0.041271478,0.08862288,0.048549637,0.037058935,0.034755483,-0.03705816,0.060981292,0.047938533,-0.012817444,0.13473788,-0.14227375,-0.08569564,0.0202675,-0.014627466,0.022412509,0.09984746,0.028787209,-0.028286252,-1.616431e-33,0.09482865,-0.027218206,0.055467293,-0.06990746,-0.04263204,-0.059223443,-0.057771973,0.056596067,0.05431243,0.0076932986,-0.020548854,0.052130982,0.094923064,0.023806686,-0.03156164,-0.0024616949,0.016866982,0.036474675,-0.074053764,0.012906273,-0.01454387,0.0715984,-0.016262412,-0.026577117,-0.05333809,0.05765542,0.014340535,-1.2594294e-06,-0.03745571,-0.054135032,-0.024884954,-0.016041558,0.020536412,-0.0021148087,0.0070820674,0.08024779,0.08995543,-0.0505304,-0.030256145,0.032550517,0.0074024983,-0.0040663136,-0.009636246,0.00789795,-0.018233685,0.036279786,-0.023010828,0.014635364,-0.08645333,-0.09875757,-0.05823694,0.013336781,-0.024613272,-0.052500956,0.06696238,0.01653136,0.037644424,0.048096016,-0.011039069,-0.043511372,-0.119139574,0.07526606,-0.0045066276,0.01175159,0.09272703,-0.072388045,0.03050986,-0.012293338,-0.026648808,-0.061347436,-0.060301073,-0.0013097987,-0.07027077,0.034104723,-0.015505564,-0.027506525,0.12075209,-0.05631073,0.025485113,0.029601213,-0.011310263,0.030716067,-0.040298786,-0.05520516,0.04398186,0.06499586,0.008997957,-0.044099547,0.01189019,0.03899089,0.0008886247,0.052891362,-0.11420961,-0.07762172,-0.02542404,-4.585202e-08,-0.04924435,0.015894227,0.0093030445,0.04262002,0.002998761,-0.07662569,0.017491722,0.022045892,-0.04304601,0.05658649,0.027598247,0.00031988928,-0.04001368,-0.0018244123,0.010668368,0.0011259832,0.017471742,0.118465826,-0.01646388,-0.04706502,0.021426292,0.056146875,0.02301471,0.028330052,-0.056692045,-0.032436207,-0.023373865,0.017969878,0.0072444873,-0.08710157,-0.036483157,0.024447564,-0.013317303,0.0059447885,-0.04937385,-0.06754371,-0.047641695,-0.072791144,0.038466964,0.0034625775,-0.05653496,-0.1337856,0.0031884888,0.012870279,-0.06731648,-0.016240241,0.07325954,0.050831318,-0.04948053,0.016431505,-0.08489319,-0.036240965,0.019204782,0.046661623,0.026695954,0.0621899,-0.0912372,0.02952635,0.016862234,0.06356193,0.028570287,0.03806962,-0.10313735,-0.0073172394} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:36:22.968144+00 2026-01-29 18:36:00.414244+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1299 google ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB 1 t 1302 Soho Club unknown Viskas ok viskas ok 4 2018-01-31 18:34:31.336452+00 lv v5.1 V4.03 {} V0 I1 CR-N {} {"V4.03": "Viskas ok"} {0.024165284,0.07508284,-0.015592216,-0.00938137,-0.0021190397,0.010456609,0.07509633,-0.0019494109,0.07990491,0.017547898,0.052017923,-0.08877743,-0.068610005,0.023959793,0.0013424577,0.010600372,0.032052346,-0.014360088,-0.0642846,0.052209992,-0.03874402,-0.030135691,-0.014104085,0.00742691,-0.04051219,0.054755,0.057734102,0.007436725,0.083630435,-0.07192583,-0.03622421,-0.05970078,-0.0069998642,0.05626837,-0.08441642,0.08325774,-0.0057842056,0.013024463,-0.05791041,0.039842922,0.019593123,-0.05094756,-0.003948515,-0.08229856,0.0538506,-0.0019173186,-0.06883495,-0.034684584,0.022853695,0.036984164,-0.040684458,-0.06636006,-0.023083976,0.008584966,0.026918825,0.015854912,-0.02799142,-0.036811464,0.015362433,-0.023867846,0.023313625,-0.0038484733,-0.038216062,-0.0026546589,-0.09199941,-0.024929883,-0.13681723,0.026307765,-0.104105264,0.061761342,-0.090590216,0.0188659,0.024760485,-0.033692203,-0.013044229,0.009387249,0.024057567,-0.0551415,0.066631585,-0.057870824,0.027036054,-0.0035704349,-0.105772294,0.096224815,-0.05265465,0.063825816,0.015788583,0.0014696245,0.022835169,-0.015295951,0.051541433,0.10203817,0.05627566,0.008480612,0.1411897,0.007488168,-0.02979831,0.046566576,-0.067403905,0.11112448,-0.013839398,-0.025113357,-0.006060686,0.064014316,-0.10802878,0.017999154,0.012618575,-0.016418053,0.01148075,-0.0535025,-0.05615321,-0.01830235,0.022398911,0.043513965,-0.0033148185,0.004192029,-0.091909885,0.013339114,0.057092577,-0.061381325,0.010223778,0.007834683,0.070224516,0.04305955,0.005604332,-1.1448457e-05,0.034677193,-3.4095133e-33,0.010388646,0.030382916,-0.011215743,-0.035124913,0.012363567,0.037543844,-0.0065334216,-0.13711947,-0.051218085,-0.036614064,-0.06834021,0.06935279,-0.10566942,0.051053196,0.057015184,0.05484609,0.10880883,0.08881652,-0.13558596,-0.012238543,0.024979912,-0.03109622,-0.05277532,-0.053741273,-0.039055865,0.014004049,0.025812889,-0.049749356,-0.009688216,0.033741087,0.02264066,0.08570168,-0.01780064,0.037164997,-0.0099403495,0.0024668386,-0.053842913,0.007252435,-0.053444553,-0.03350345,0.010162045,-0.005147108,-0.074158385,0.037701562,-0.0064937053,0.052833002,0.06166156,0.08839465,0.0073434277,-0.029215205,0.0072820256,0.07369872,-0.038940497,-0.013331217,-0.028591556,-0.008175144,-0.040321283,-0.013942546,-0.050119635,0.010871527,-0.01881021,0.08330497,0.03486564,-0.052035555,-0.040185403,-0.043543685,0.023811769,-0.008463912,-0.023548234,-0.021050075,-0.03922202,-0.032593757,0.04135904,0.0086690225,-0.008279544,-0.042494923,0.05304624,0.09861543,-0.041499816,0.029654684,-0.0636229,0.050625026,0.08613683,-0.07128585,0.052030124,0.014931071,0.002708768,-0.06775205,-0.036435165,0.029083144,-0.107069775,0.014774486,0.038628317,-0.053614464,-0.06685866,2.2206223e-33,0.007321358,0.039121617,-0.06273098,0.103711285,0.05287894,0.01347568,0.12050479,0.06912134,0.0039378908,-0.053250965,0.1024149,0.012297178,-0.0056507746,-0.025467504,0.07868923,0.0026873688,0.06048142,0.053193722,-0.044731207,-0.10461836,0.026186211,0.032390993,-0.021856999,0.009084109,0.034576174,0.028047957,0.049379513,0.034180302,-0.15063566,0.0077303033,0.04739586,-0.059804093,-0.08379479,0.09753171,0.06555703,-0.003252528,0.013836871,-0.04585861,-0.020510776,0.059594803,0.0031257703,-0.08870842,-0.057830647,0.043254416,-0.0062981476,-0.009419577,-0.011775705,0.107314214,0.00492089,0.026197152,-0.00645441,-0.039294157,0.036895037,0.032729276,0.0010230738,0.034138057,0.04247996,0.015472878,-0.022914588,-0.041534834,0.0039647976,0.02916385,0.0040843156,0.023528194,-0.029345747,-0.059476674,-0.030532345,-0.10660222,0.033211827,-0.060627706,0.006427234,0.03434833,-0.12277016,-0.028380934,0.07341808,0.028283158,-0.052906632,0.06331772,0.013901368,0.04366462,-0.056918114,0.04784288,0.059424452,0.07151684,0.019008787,0.03473768,0.01498544,-0.059607197,0.019848064,0.057333563,0.004819618,-0.021542976,0.011918009,0.10286649,-0.011159806,-1.3429654e-08,-0.007434396,0.040669557,-0.043484014,-0.03896605,-0.10105663,-0.002703404,-0.06666606,-0.016183298,-0.035284076,0.047423825,-0.007825485,-0.0045960643,0.030362133,0.032404814,0.02955609,-0.018715836,0.030725578,-0.010386578,-0.03927403,-0.0008359359,-0.0030731517,-0.011236061,0.052704837,0.09997496,-0.0145416455,-0.051183823,-0.025227208,0.015938606,0.032697767,0.01591275,0.03923935,0.05950055,-0.010576182,-0.00118288,0.09398676,0.06737361,-0.115359716,-0.004458803,0.011361204,0.05133712,0.038819455,0.011995023,0.12649857,-0.01764501,-0.051335648,-0.038668588,0.0631499,-0.06907377,-0.10310302,-0.03720779,-0.015348367,0.05307299,-0.012561143,0.08207528,0.06254721,-0.08883669,0.0146039445,-0.009951351,-0.042013593,-0.032096952,0.047371034,-0.017564345,0.08643102,-0.014395125} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:13.775812+00 2026-01-29 18:36:00.711122+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 246 google ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB 1 t 249 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I do not recommend at all. This company is a scam and will take your money. They claim fake damages and make you pay for them. I recommend renting from companies that are based at the airport (not this one) i do not recommend at all. this company is a scam and will take your money. they claim fake damages and make you pay for them. i recommend renting from companies that are based at the airport (not this one) 1 2025-05-30 01:27:48.340618+00 en v5.1 R1.02 {} V- I3 CR-N {} {"A4.01": "I recommend renting from companies that are based at the airport (not this one)", "R1.02": "I do not recommend at all. This company is a scam and will take your money. They claim fake damages "} {0.04369235,-0.00734478,-0.0043283757,0.028297143,-0.007714922,0.057045836,0.057941277,-0.0021597133,-0.018636217,-0.0011486848,0.024512263,0.07009269,-0.023958042,0.09800976,0.027694134,0.021528454,0.048844993,-0.03899022,0.06784813,-0.09547992,0.02553869,-0.029203055,-0.010120985,-0.073978476,0.11569274,0.033597995,0.055569574,0.1255124,0.026016697,-0.0076896874,0.064071074,-0.004373108,-0.042285047,-0.013540325,0.053235766,0.055958334,-0.04139356,-0.03473162,0.014201728,-0.01830067,0.013844414,0.038410883,0.047548298,0.021681821,-0.04273913,-0.0042565647,-0.007938981,0.101582505,0.103323705,0.039541163,0.089330286,-0.016443197,0.041240852,0.025859725,-0.035101276,-0.068098016,-0.0011597294,0.006593913,0.003742915,-0.08518804,0.059418704,0.034451358,0.0019199431,0.049669612,-0.008089638,0.014071911,-0.018662086,-0.01790186,0.052281708,-0.085297935,-0.05042064,-0.10079932,0.036423773,0.05133608,0.043149915,0.14516419,-0.0048113805,-0.028200245,-0.024801962,-0.004720911,-0.036971062,0.03093938,-0.02594217,0.01172407,0.007532378,-0.09106226,0.021675173,0.012907619,-0.015085809,0.066868916,0.07811147,0.04149127,0.07119915,0.03251268,-0.0094832415,0.04436867,-0.039865274,-0.026041204,-0.06017305,-0.008424198,0.049687255,0.031753995,-0.056223046,-0.030391958,0.021970047,-0.08846538,0.050990537,-0.086663894,0.051687967,0.03190863,-0.04592304,0.0032954242,-0.019137388,-0.02730908,0.0021528548,0.0706475,-0.031534024,-0.016230457,0.08296803,-0.030375509,0.067427725,0.00865292,0.08127985,0.000897605,-0.0002252926,-0.067692496,0.017277949,-1.2991298e-33,-0.032350216,0.044029266,-0.0543981,0.019000072,0.038602278,-0.034911755,-0.009275906,0.08122702,-0.034147542,0.058405895,-0.05710341,-0.0351942,0.0014724785,-0.068580054,0.018478958,0.0827552,0.0552138,-0.031050099,-0.0138434,0.04457533,-0.035841342,-0.06962721,0.03054118,0.0081275785,0.06509792,-0.04405032,0.018990248,-0.009172548,0.12534632,0.03806667,-0.08224043,0.044341274,-0.0253222,0.0036528734,-0.06977876,0.022918385,-0.095274895,0.010348447,-0.12448449,-0.008160368,-0.050870366,-0.047162164,-0.026466357,0.018639239,0.075150676,0.022128558,-0.01840112,-0.04433546,0.0151716,0.025275817,-0.09336163,-0.035075497,-0.11070821,0.037312485,0.0025108526,0.027033057,0.061041385,0.022676893,0.10228554,-0.022675473,-0.067376584,-0.006715181,0.008810023,0.016740883,-0.012419136,-0.07212623,0.018749775,-0.02031132,0.0031875218,-0.024802117,0.086490646,0.012418329,0.05473456,-0.0043784655,-0.06066809,-0.032617655,-0.05732765,0.10248279,0.0023478805,0.11267913,0.06610597,0.0018147375,0.022747887,0.0747952,0.033922747,-0.009639081,0.0646752,-0.04769825,-0.058833905,0.056834817,-0.02726464,0.061850507,0.0029847932,-0.056516714,-0.027164856,1.2709684e-34,0.016114186,-0.033427473,-0.0036175577,-0.087242596,-0.054298762,-0.0055683963,-0.02122036,0.04928999,0.0013469472,0.04503011,-0.12126392,-0.043663092,0.04957068,-0.053877704,-0.0004174551,-0.030512497,-0.011608273,-0.079666205,-0.0021342363,-0.013105171,0.0141606275,0.030088056,0.054215517,-0.0017528475,-0.014579046,0.01633706,0.017271962,0.10752626,-0.030371554,0.10814426,-0.041069265,0.084587775,-0.024631312,0.04330728,-0.046675414,0.0049280976,0.03443187,0.04481398,-0.041182473,-0.041803636,0.03239959,-0.021211727,-0.040179767,-0.09774541,0.047523696,-0.11569598,0.0016796915,-0.06372505,0.022609355,-0.08143497,0.0042554834,0.0018088147,-0.097444214,0.017678432,-0.0064230296,-0.0032385227,0.0003041038,-0.015271884,-0.008028398,-0.028937073,-0.043952893,0.0152130565,0.06509469,0.00040393262,-0.04380676,-0.014294148,0.024867646,-0.014400863,-0.022472192,0.052741226,-0.033707056,-0.035715394,0.048622202,0.09148571,0.020107081,-0.030484894,0.17483766,0.06188245,-0.016973885,-0.07493864,0.021148939,-0.041895002,-0.040828094,0.022854283,0.06960662,-0.069347344,0.028688744,-0.055919018,-0.036190286,0.038990796,-0.044595234,-0.034320366,-0.042293176,-0.049838617,0.040515907,-3.6358916e-08,-0.06561796,0.02917248,0.031903416,0.027313499,-0.12121723,-0.09548634,-0.010168913,0.001701021,-0.03114408,-0.019565955,0.026621599,-0.02777572,-0.0191299,0.104286574,-0.18358974,-0.015639685,0.05249211,0.018891424,-0.019652415,0.020416118,-0.05147133,0.053377055,-0.03204809,-0.024385314,-0.031999316,0.023165856,-0.04247532,-0.055053156,0.095382676,-0.054829076,-0.11515918,0.06800183,-0.005988473,-0.02220192,-0.036277983,-0.043605756,0.09090589,-0.07789672,-0.08190901,0.063886784,-0.0031683317,-0.050900094,-0.029900288,-0.022275686,0.027341302,-0.04617937,-0.05346027,-0.055672284,0.011201243,-0.0035999948,0.010488628,0.03863769,-0.052362222,-0.0036894747,-0.006640758,-0.02575256,-0.03777549,-0.012806571,-0.036496237,0.08694928,-0.04522009,-0.01644884,0.027082166,-0.007888303} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:00.637132+00 2026-01-25 01:27:50.231768+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1182 google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB 1 t 1185 Soho Club unknown Decided last minute to come here with a friend on a Saturday night around 1:30 am. The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or super pop music. But, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and I were singing along. The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards.\n\n6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Drink prices are reasonable I guess, paid 10 euro for a Negroni and I was sleepy so I had a Black Russian and a White Russian, those were only 8 each.\n\nJust wish the crowd was larger! Especially for a Saturday night but the crowd had good energy, I’ve that they have events twice a month with a bigger crowd- I guess that’s when they open the other section with the stage.\n\nOverall, I had an okay time- friendly staff, good music and well prepared drinks. decided last minute to come here with a friend on a saturday night around 1:30 am. the music honestly wasn’t too bad! i was scared, thinking it would be local baltic music playing or super pop music. but, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and i were singing along. the bartender here is top notch! the bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards. 6 euro entry but they gave me a free entry ticket to return next weekend, but i won’t be in town. drink prices are reasonable i guess, paid 10 euro for a negroni and i was sleepy so i had a black russian and a white russian, those were only 8 each. just wish the crowd was larger! especially for a saturday night but the crowd had good energy, i’ve that they have events twice a month with a bigger crowd- i guess that’s when they open the other section with the stage. overall, i had an okay time- friendly staff, good music and well prepared drinks. 4 2025-01-29 18:34:31.336452+00 en v5.1 P1.01 {E1.01} V+ I3 CR-N {} {"E4.01": "The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or ", "P1.01": "The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with ", "V1.01": "6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Dr"} {0.034990765,0.04330681,0.06343527,-0.017450714,-0.038815137,0.009578819,0.07918318,-0.054235477,-0.023950497,-0.10039604,-0.049355045,-0.049956236,0.0023839218,-0.0034949319,-0.025268806,-0.081634924,0.07831338,-0.09929729,-0.049802877,0.0119822435,-0.075771116,-0.119274355,0.00496211,0.02314616,-0.008205204,0.024121162,0.012760956,0.008652102,0.016953072,-0.036344774,0.0066229114,0.05122384,0.03727852,-0.07357785,-0.033380575,-0.022373443,0.08263631,-0.11027585,-0.008008241,0.0845336,0.059309714,0.0409523,0.00024308257,0.030815674,0.014070824,0.030395674,0.017369453,-0.0028869184,0.0037072825,0.020984925,0.0067237504,0.012608529,0.05757866,-0.033081345,-0.018525684,0.013763584,0.03465012,-0.038466346,0.03952789,0.04688841,-0.08651239,-0.0013180885,0.005047759,0.036197457,0.0065032635,-0.020322017,-0.120801136,0.055449486,0.0131095145,0.02299714,0.0038152514,-0.026627533,0.07566767,-0.0006444262,-0.020840796,-0.07472647,-0.04637339,-0.054750558,-0.026330326,0.075501025,0.029650187,-0.052765734,-0.05822557,-0.010600303,-0.022659183,-0.06687021,0.06030761,-0.007281718,0.032448355,0.04707795,-0.012870848,0.10424777,0.027075274,-0.10758178,0.11353913,0.056986563,0.010654834,0.016481264,0.038210105,0.055277795,0.05960247,0.13346578,0.03534038,-0.06704621,0.037927758,-0.01572973,-0.022339102,0.16990557,0.008870235,-0.039644413,0.039172992,0.0568032,0.057726398,0.008286909,0.004932953,0.058868542,0.036689725,-0.028583987,-0.008222904,-0.014872779,0.049051736,0.11007164,0.015459705,0.06493862,-0.046823565,0.0511948,0.044577416,3.213238e-33,-0.040649638,-0.019369645,-0.058907874,0.007426463,0.08100289,0.015068124,-0.11108948,-0.0324924,-0.04306895,0.034487613,0.032528173,-0.024870042,-0.012046617,-0.021068636,0.053612344,0.013745942,0.00602456,-0.0065546744,-0.04787531,-0.049853534,0.017505756,-0.02696725,-0.0009793886,0.016434202,-0.035013244,0.045828044,0.03958195,-0.018890709,0.10456733,-0.044714853,-0.080782965,0.008830991,0.03656405,0.014777612,-0.029546943,0.049114212,-0.0396493,-0.033203095,-0.059128,-0.06928957,-0.025515283,0.022262761,0.009227641,0.0070927856,-0.05650987,0.052392818,-0.045386337,-0.05701231,-0.10036974,0.013531287,-0.10105061,0.012329672,0.047270223,0.11821127,-0.12512796,0.0045280084,0.03632667,0.04620437,0.016941546,-0.08597111,0.055863343,0.059909683,0.025605334,-0.015403673,0.032727107,-0.02372521,-0.012906428,-0.016170973,0.07875057,-0.10755077,0.027414413,0.09968713,0.025413804,0.011572669,0.026948143,0.05460329,-0.040629283,-0.070207916,0.065369755,0.025719374,0.055413473,-0.012659223,-0.015080511,0.048135187,-0.031430352,0.026295766,0.104018845,-0.10631859,-0.007896648,0.02766274,-0.07696321,-0.0148225855,0.021115327,-0.028649494,0.008789979,-4.5189555e-33,0.11603139,-0.05875349,0.06827325,-0.016980832,0.028728964,-0.010894902,-0.08979072,-0.033942487,0.042088397,0.04534308,-0.0608695,0.087737985,0.056968812,-0.032644466,0.012340477,-0.034556545,0.08670486,0.069046974,0.007955957,-0.067016244,-0.02774765,0.0661416,0.05857324,0.029161273,-0.09798368,0.095015354,0.052446894,-0.043453798,-0.09676797,-0.063054726,-0.036185484,-0.014371464,0.023408078,-0.056650747,0.03882082,0.07336317,0.07554452,-0.022501158,-0.11208882,-0.010085711,0.0043689804,0.019228796,-0.011164761,-0.016292784,0.06173379,0.022484683,-0.0064960783,-0.053253,-0.02173661,-0.07713104,-0.0018595187,-0.0053894087,-0.058782324,0.04077051,0.01716365,-0.08751369,0.049297825,-0.08452389,-0.036255892,-0.009256153,-0.08777562,0.05689838,-0.0076911836,0.00551277,0.02413819,-0.089261785,-0.01706486,-0.027458424,0.015564804,-0.03079627,-0.033179317,0.01254958,0.015213834,0.041091893,0.021073239,-0.012875601,0.014070896,-0.027004756,0.018246178,-0.015083132,0.010371337,-0.019032225,0.03639105,0.0054423288,0.03904376,0.0026151966,0.05989377,-0.03303862,-0.01603387,0.1008331,0.037371073,0.048201658,-0.022806747,0.0026294314,0.056102954,-5.0905445e-08,0.02156716,0.005203257,-0.03963275,0.0877901,-0.024440074,-0.107304014,-0.06010315,-0.051938485,-0.08506169,-0.015686678,-0.01859869,-0.072621815,-0.023865543,-0.0032931748,-0.07218221,0.0022892163,0.0031408179,0.013704795,-0.05230539,0.06270675,-0.021253511,0.057538822,-0.01118907,-0.009436442,-0.054349124,-0.015360468,-0.005300531,0.058862492,0.024636116,-0.033579208,-0.07047309,0.021848243,-0.078013174,-0.00022013232,-0.016468972,-0.12171095,-0.034722738,-0.04349574,0.029095685,0.042652037,-0.09040255,-0.113131434,-0.046677932,0.004325529,-0.0095737735,0.014271308,-0.03649243,0.054000083,-0.012040993,0.034260057,0.0004313813,-0.0040709632,0.0016114443,0.039009433,0.016445229,-0.021647727,-0.026215162,0.08219865,0.029902538,-0.019227272,0.04624168,-0.011076081,-0.13028352,-0.013709713} 0.92 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:36:59.395047+00 2026-01-29 18:36:00.424334+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 508 google ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE 1 t 511 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super obsługa. Auto zarezerwowane wcześniej przez internet. Żadnych problemów. Najtańszy depozyt. Mocno polecam. Bus jedzie z lotniska ale warto się przejść bo jest blisko. super obsługa. auto zarezerwowane wcześniej przez internet. żadnych problemów. najtańszy depozyt. mocno polecam. bus jedzie z lotniska ale warto się przejść bo jest blisko. 5 2025-04-30 01:27:48.342335+00 pl v5.1 A1.01 {J1.01,P1.01} V+ I3 CR-N {} {"A1.01": "Super obsługa. Auto zarezerwowane wcześniej przez internet. Żadnych problemów.", "J1.01": "Bus jedzie z lotniska ale warto się przejść bo jest blisko.", "P1.01": "Najtańszy depozyt."} {-0.1215844,0.10232927,-0.03323066,-0.02426407,-0.09938767,0.00815469,0.10563526,0.110709846,-0.06822594,0.054100655,-0.012863481,0.054414634,0.023403168,0.041081358,-0.0017205713,0.01298397,0.045577906,-0.017036067,-0.05836125,0.018242469,0.066314094,-0.037502795,0.0606808,-0.02902363,-0.044300463,-0.0032658973,-0.0038021046,0.11514925,0.029929284,-0.0715095,-0.028391197,0.04742814,0.014390357,-0.0078006852,0.049968213,-0.0564162,0.037356865,-0.04086343,-0.011094503,0.055227946,-0.0143889,-0.01651097,-0.14727385,-0.028745623,0.009186483,0.02246216,0.023528976,0.06311945,-0.050748583,-0.038994968,-0.09261418,-0.10946103,0.03888729,-0.01087528,-0.0035700295,-0.05015773,-0.01211617,0.08963047,0.006596974,0.011281211,0.031242251,-0.0039715744,-0.13800476,0.006896358,0.029958557,-0.012286055,-0.010683743,0.08417834,-0.042591494,0.038656708,0.033522613,-0.026227089,-0.034992103,0.035997063,-0.100735664,-0.07578465,0.060554177,-0.07186907,0.007854372,-0.02904104,0.054939438,-0.10775509,-0.027343819,-0.013332724,0.04496999,0.01010067,-0.019730506,0.03561118,0.04939989,-0.0145467445,-0.022794146,-0.021869713,-0.006072093,0.0044991784,-0.047254372,0.013669734,0.025844261,-0.10167961,0.019323332,0.07063789,0.08384764,-0.041090712,0.15847717,0.03206066,0.011424552,0.019483788,-0.011190602,0.06024717,-0.0016375715,0.027559925,-0.054349106,-0.082132414,-0.035134908,-0.09533335,-0.027284075,0.016784102,-0.041385844,0.010693718,-0.061188888,-0.050355118,-0.0062753484,-0.0043905303,-0.0131301405,0.0648252,0.095161654,0.066272154,0.058619197,1.3556015e-32,-0.045134563,-0.018995218,-0.056412444,0.0054065143,-0.013720109,0.06841643,-0.03682635,0.06398046,-0.025614731,0.029780556,-0.02290927,-0.010605479,0.028321303,-0.03196334,0.00298758,0.046851162,0.004213863,-0.04392908,-0.045959614,0.070018105,0.046434343,-0.026644541,0.00026839616,0.044490032,0.0075014443,0.03315266,0.026247691,-0.02936309,0.010748662,0.018447613,0.08445039,-0.047153525,-0.087517306,0.019528462,-0.027135061,-0.049375556,-0.0130615095,-0.034516204,-0.014651792,-0.10161784,-0.016683519,-0.070709385,-0.12544179,0.06717108,0.027182063,0.0044007683,0.0033777899,0.025544422,0.083466485,-0.0026367218,-0.02406413,0.0029770916,-0.12174561,0.018634487,-0.08705834,0.11462125,-0.010921353,0.0519605,0.0855787,-0.018607982,0.03108438,-0.03575427,0.055399597,-0.042689107,0.06438105,-0.12080287,0.01800162,0.030214818,0.016988806,0.071916394,-0.010882116,-0.07239271,0.11930327,0.05523991,0.0019381945,0.019906962,-0.00791475,0.018795956,-0.08961096,0.00649768,-0.06539486,0.009650507,0.07211236,-0.058639836,0.05044082,0.006253008,0.038044013,-0.035900194,-0.009641739,0.082875624,-0.028310183,0.08866104,0.0021652053,0.0066485633,-0.01562398,-1.2742604e-32,0.0041820686,0.041487746,-0.07674274,0.050066948,-0.002315851,0.00060624274,-0.05591385,-0.05540198,-0.03145305,0.0366192,0.008130362,-0.043679316,0.07305867,0.0040895776,0.0057302723,-0.039194334,-0.017968845,-0.057878792,-0.03828639,0.0075010154,-0.063404135,0.01525265,-0.010443606,0.08042861,-0.06496694,-0.026933065,0.040205043,-0.033166043,-0.011224923,0.05993726,-0.021706045,-0.04370435,-0.026199639,0.037812453,-0.003259483,0.01968973,0.0690291,0.028141608,-0.033529606,0.045018207,-0.006786456,0.025993222,-0.090555385,0.003786534,0.022303263,-0.06335089,-0.06907302,-0.034042373,-0.041841306,-0.08906709,0.08298661,0.051964696,-0.025544055,0.007407333,0.069977395,0.08651294,0.028280761,-0.09652285,0.03489251,0.029317047,0.08420628,-0.08029156,0.017236102,0.0017121173,0.059143074,-0.039768696,-0.014698811,0.050548866,0.08114475,-0.02343793,0.05238826,0.020729814,-0.05886918,0.027377883,-0.07064646,0.041312452,-0.022255559,0.10238057,-0.019876422,-0.06608601,0.027192103,0.0008022879,0.012876084,0.013370506,-0.029894467,-0.050060723,0.008389851,-0.012618951,-0.002247849,-0.07197423,-0.023876028,0.032815043,0.0038671028,0.08396729,-0.029191615,-4.5555225e-08,-0.021355849,0.0061773905,-0.015062091,0.038139317,0.050618827,-0.10485345,-0.044176687,0.0075388355,-0.011292576,0.036323573,0.0122099025,-0.0032082612,-0.057334427,0.0778049,0.020468105,0.047165416,-0.010891086,0.0113215055,-0.022623084,0.0020074563,0.061130136,-0.023889327,-0.10789688,0.032096308,-0.013479769,0.033481706,0.028871888,-0.002211144,0.075490244,-0.05224997,-0.082205236,0.036791366,0.043166395,-0.058158886,0.020488625,0.07736679,0.0013557232,-0.02155593,-0.050393235,0.024906896,0.027928425,-0.022224082,0.08279883,0.004014295,-0.03079371,-0.038900632,0.04786912,-0.11505397,0.06672618,-0.023293206,-0.048322644,0.014635674,0.023966849,0.05742674,0.03914622,0.008143448,-0.027416198,-0.06434188,-0.0611161,0.08290059,0.04144253,0.09419212,-0.055923074,-0.04161111} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:44:06.303008+00 2026-01-25 01:27:51.673172+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 511 google ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB 1 t 514 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Coche nuevo y en perfectas condiciones. Trato muy amable de personas que se esfuerzan para que el cliente quede satisfecho. Tuve un problema con el horario de cierre, pero no fueron ellos los culpables. Se debía a un error del portal donde reservé. Muy buen comportamiento con el cliente, especialmente Dani y Antonio. coche nuevo y en perfectas condiciones. trato muy amable de personas que se esfuerzan para que el cliente quede satisfecho. tuve un problema con el horario de cierre, pero no fueron ellos los culpables. se debía a un error del portal donde reservé. muy buen comportamiento con el cliente, especialmente dani y antonio. 5 2025-01-25 01:27:48.342348+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"A1.01": "Muy buen comportamiento con el cliente, especialmente Dani y Antonio.", "J1.02": "Tuve un problema con el horario de cierre, pero no fueron ellos los culpables. Se debía a un error d", "O1.01": "Coche nuevo y en perfectas condiciones. Trato muy amable de personas que se esfuerzan para que el cl"} {0.02203737,0.037696943,-0.042265125,-0.08099634,-0.06501959,-0.035683814,0.09907309,0.019462958,-0.02032114,-0.02407283,0.06486625,0.005079366,0.027595077,-0.005802379,0.039860997,-0.07346594,-0.00994059,0.051046554,-0.004267454,0.021005828,0.0014581098,-0.06103947,-0.14545812,0.076367594,-0.11645915,-0.05043175,-0.02309243,-0.02314341,-0.06382872,-0.024775555,-0.050977424,0.082717575,0.018795786,0.032331795,0.0062723546,-0.02488379,0.030681852,-0.0851855,-0.02446671,0.02127907,-0.07486005,-0.008590003,-0.081604294,0.016756065,-0.044951197,-0.12969424,0.007964176,0.04256237,0.0047888835,-0.021683397,-0.12300135,-0.026604231,0.008706121,-0.0072233262,-0.0276767,0.0115922205,-0.005829338,-0.0021998065,0.033868633,0.015910067,0.033933718,0.014298695,0.035262894,0.06508007,0.07814576,0.004748759,-0.031233883,0.0019252105,-0.04353774,0.038157057,0.0028270169,-0.05960188,-0.06798959,0.017463079,0.011624857,0.022319024,-0.036041465,0.04859294,-0.0076847905,-0.005532692,0.026007183,-0.0117576765,-0.006560921,-0.05217321,0.0046039545,-0.019635858,-0.040271964,0.014404322,0.019077543,-0.039523553,-0.004682617,0.12167768,-0.017334282,-0.02025014,-0.013690608,0.009938607,0.03461074,-0.033247583,-0.019771418,0.039330643,0.055526957,0.09662891,0.08447154,0.046854917,-0.06305239,-0.004397416,0.104043625,-0.012995098,-0.007555581,0.054742735,-0.091130875,-0.035470683,0.024275564,-0.05456661,-0.026575245,0.0119368555,-0.06771006,0.012595344,0.040158384,-0.046972007,0.03636298,0.060273793,0.005411184,-0.040815488,-0.021280047,-0.050436933,0.10384089,1.2767824e-32,-0.026425863,0.018963978,-0.0036345602,0.040716972,0.0032083022,0.024363404,-0.029781224,0.01630739,-0.061597373,-0.052587174,-0.011351258,0.0076189567,-0.0052578994,0.023166163,0.02648091,0.017719274,0.03518109,0.03168128,0.12440661,0.008687363,0.014439261,-0.048671328,0.015934568,0.022384075,0.008949959,0.027964905,-0.030836934,0.04030916,0.011331021,0.040482514,0.019820957,0.0017466847,0.028760584,0.011653596,-0.023270614,-0.03585027,-0.008840259,0.020259857,-0.009396746,-0.026534539,-0.05580611,0.051276606,0.009899502,0.032378923,0.018123759,0.049801197,0.032740504,-0.018408075,0.016141865,0.05841002,-0.124475196,-0.007678391,-0.08873218,0.03901988,0.0032864609,0.014617118,-0.024490364,0.04619579,-0.005002922,-0.1068274,0.033133507,-0.037474733,-0.0697653,-0.07212654,-0.025669169,-0.039882407,-0.030753644,-0.013703706,0.08990326,0.040680557,-0.10084153,-0.032464676,-0.05566262,0.07087306,-0.05420547,-0.043482862,-0.061795913,0.009807003,0.008535771,0.00091534003,-0.024947409,-0.04577715,0.036625147,0.07088296,0.030947618,0.075523935,0.057414602,0.060249798,-0.014147795,0.10587907,0.004426045,0.089496955,0.040658157,-0.008005852,0.10037903,-1.3824838e-32,-0.041853745,-0.031868115,-0.06787611,0.07557213,-0.044527527,-0.02871829,-0.020604605,-0.03595803,0.019253366,-0.058832813,-0.089059904,-0.112414844,0.0706339,-0.0071125156,-0.08808784,0.068659775,-0.0152064655,-0.12605901,-0.061718,0.024665382,0.09025633,0.015998954,0.039133087,-0.07315782,0.0056709554,-0.054875117,-0.022760682,-0.031631384,-0.13812676,-0.025971727,0.08757335,-0.047431115,-0.034216516,0.09007961,-0.022191621,-0.021325562,0.017407343,0.049289342,-0.03205757,0.0628602,0.028289927,0.044173945,-0.013055091,-0.022835534,-0.0042756,0.05442361,0.041908897,-0.17409913,-0.0041613257,-0.014341316,0.020016434,-0.081839666,0.00783884,-0.06959719,0.030061783,0.027536523,0.028764969,-0.054124705,-0.018406503,-0.04395516,0.050980233,0.03189569,-0.07312679,-0.015492766,0.11863465,-0.0010508733,-0.049214073,0.10267988,0.0067742304,0.039558504,0.05528661,-0.08480418,-0.10664351,-0.014761363,0.007984846,-0.019005986,-0.081245944,0.0073514287,-0.03341142,0.027890738,-0.03171312,0.020391408,0.018697744,-0.019126719,-0.008527651,-0.03957652,0.0010670243,0.0090930965,-0.03502917,0.0185038,-0.026455322,0.049636155,-0.0830649,-0.052772917,0.0011095863,-5.6202367e-08,-0.058531117,-0.057661556,-0.06490919,0.043123562,0.066614844,-0.092847675,-0.045639597,0.009333145,0.023401245,0.096598364,-0.059350297,-0.10457205,-0.047349475,0.0316508,0.048788287,0.056775633,0.10865109,0.018934434,-0.036606606,-0.023228323,0.067733765,0.019777847,-0.012423336,0.011896311,0.02126393,0.013812385,-0.0026867155,0.011863083,-0.045454234,0.056516495,-0.07307996,-0.0009016667,0.05898385,-0.0641211,-0.012300726,0.040822446,-0.049734365,0.009980759,-0.05089591,-0.05445994,0.066531375,0.043607768,0.009232071,-0.017631238,-0.02590181,-0.062086977,-0.034475643,0.04495136,0.018255726,-0.026286272,-0.056792542,-0.07198529,0.11266193,0.060415532,0.05554696,-0.056858335,0.05037901,0.04625318,0.0028131828,-9.159809e-05,0.08601607,0.13890958,0.024842108,-0.07260707} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:03:14.097572+00 2026-01-25 01:27:51.687132+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 512 google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE 1 t 515 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Experiencia inmejorable, el coche nuevecito y la atención fantástica. Antonio, Carmen, y el resto de gente que nos atendió fueron súper amables. Tenemos intención de volver a Gran Canaria y sin duda alquilaremos el coche con ellos otra vez. experiencia inmejorable, el coche nuevecito y la atención fantástica. antonio, carmen, y el resto de gente que nos atendió fueron súper amables. tenemos intención de volver a gran canaria y sin duda alquilaremos el coche con ellos otra vez. 5 2025-01-25 01:27:48.34235+00 es v5.1 O1.01 {} V+ I3 CR-N {} {"A1.01": "Antonio, Carmen, y el resto de gente que nos atendió fueron súper amables.", "O1.01": "Experiencia inmejorable, el coche nuevecito y la atención fantástica.", "R1.01": "Tenemos intención de volver a Gran Canaria y sin duda alquilaremos el coche con ellos otra vez."} {0.009324918,0.013459267,0.0037774818,-0.02473071,-0.09129966,0.011932156,0.115969,0.042999987,-0.073711455,0.03034986,0.020840706,0.027070673,0.0074472297,-0.0415419,-0.033212416,0.009748084,0.09346356,0.012999468,-0.04571523,0.0064477953,0.13756427,-0.040801357,-0.040145587,0.093462855,-0.07024012,-0.0076268883,-0.048335634,0.022729916,-0.039983038,-0.07836279,-0.042397268,0.029558571,0.019710107,-0.004535399,-0.018102694,-0.013165359,0.055702865,-0.020305064,-0.0072941845,0.0066237687,-0.10125393,0.004188722,-0.044965826,-0.022867626,0.014458548,-0.11320229,0.021137444,0.0237335,0.013485139,-0.060951587,-0.038316213,-0.042447668,-0.011707106,-0.04913782,0.009048862,0.076619826,0.011276401,-0.08112233,0.07023164,0.017430164,0.027407939,0.05821706,-0.0070725325,0.019652586,0.09326845,-0.06756839,0.065604635,0.04106642,-0.096706375,0.010915626,0.11964274,-0.049503107,0.033175047,0.009830753,-0.020434894,0.05690157,-0.026495237,-0.07640757,-0.041579694,-0.030673437,-0.0088433735,-0.040634867,0.03526285,-0.0742514,0.010406953,-0.033883493,-0.004462317,-0.025309214,0.053804405,-0.0034607635,-0.075531,0.056378514,-0.06597781,0.0042240242,0.015250863,-0.01931659,0.04101361,-0.048440944,-0.002698109,0.051203713,0.034380987,0.041541412,0.055721365,0.06422156,0.027757814,-0.009519847,0.04978233,-0.03334682,0.05939524,0.04522739,-0.06230395,-0.056065667,0.05426526,-0.029141609,-0.020783754,0.0015001922,0.0025039343,-0.020172369,-0.045748223,-0.09804591,0.11103433,0.04684709,-0.041045777,0.025750076,0.027599506,0.0052947514,0.09208852,1.1516988e-32,0.00815673,-0.011321066,0.03160928,0.106481254,-0.02245303,0.02285262,-0.027318401,-0.024970591,-0.035207547,-0.06000396,-0.060121696,0.13396637,0.016863456,0.06426896,0.017179132,0.076394364,-0.03658455,-0.03656486,0.07977262,0.039145596,-0.06044227,0.03183085,-0.018869985,0.07767214,-0.064078465,0.03505512,0.014390092,-0.036044613,-0.046711612,0.052887965,-0.045645267,0.028264336,-0.0020346756,-0.015416799,0.00603728,-0.05842551,0.018240632,0.019752456,0.040219314,-0.046254743,-0.009724273,0.011970309,-0.037506625,-0.016748143,-0.04086732,0.032242086,0.049738705,0.07820844,0.043162905,0.025838824,-0.049054798,-0.04533069,-0.06930031,8.959699e-05,-0.023663715,0.060091868,-0.06750658,0.028573385,-0.00075918523,-0.039825972,0.034123573,0.030511007,0.058701936,-0.025258409,-0.03585402,-0.043076646,0.03669158,0.04106584,0.11565705,0.06843776,-0.09547825,0.015145658,-0.06316706,0.011679779,-0.005188453,-0.012013629,0.03530803,-0.017652977,-0.044143286,0.03656352,0.0019111645,-0.05115297,0.05358377,0.011476614,0.056115158,0.048984036,-0.0009153644,0.03792902,0.0013663583,0.10241833,-0.00058231683,0.04638137,0.16373281,-0.06019732,-0.028959684,-1.1834546e-32,-0.013209313,0.004712799,-0.021607598,0.06955061,0.0151556255,0.03518766,-0.13078229,-0.060355246,-0.08219963,-0.076440245,-0.024977954,-0.11873815,0.16524011,-0.09215374,-0.060743593,0.0053920173,-0.039413728,-0.07102144,-0.084259555,0.008496383,0.034524526,-0.027334698,0.018478502,-0.02459425,-0.042407382,-0.025744278,-0.06338622,-0.022351803,-0.068276964,0.02622752,0.0962532,0.029441204,0.004618826,-0.022662785,-0.0134534845,0.10510346,0.03389187,0.012309231,0.0060131187,0.024078855,-0.039913826,0.09346059,0.07405351,0.0013756782,0.0030977062,0.05895632,-0.016550805,-0.14868028,-0.047703657,-0.036639757,0.034565188,-0.052815817,-0.06643374,-0.0509392,0.032319173,-0.008199756,-0.0073015704,-0.08742934,-0.03419763,0.022147838,0.051400352,-0.022253558,-0.06372187,-0.016511329,0.046908543,-9.661828e-05,-0.037068218,0.009976111,-0.028317733,0.065902755,0.07160245,-0.05324497,-0.074270085,0.0044337884,-0.044286117,0.015390858,-0.045432873,-0.027148467,-0.03815839,-0.017440513,-0.014707876,0.005974707,0.016783435,-0.06494712,-0.033199664,0.022728803,-0.09001843,0.04713334,0.018095752,0.028765235,-0.03855746,-0.03940217,-0.070459336,-0.18505895,-0.023427267,-4.8761734e-08,0.033528004,-0.030565998,-0.016809724,-0.024642974,-0.009955576,-0.020316567,0.008399037,0.03703602,0.053688396,0.10598441,0.031365458,-0.011722336,-0.0037757324,0.028321238,0.014635964,-0.011323804,0.08284634,0.0738137,-0.043113705,-0.088426664,0.006159246,0.011803175,-0.035184994,-0.042115334,-0.012519772,0.025254937,-0.03578184,-0.005458686,-0.0015737138,0.04414069,-0.016858762,0.015904991,-0.013401137,-0.11126537,-0.019832646,0.0038395128,0.009372797,0.031258307,-0.0038848084,-0.064559266,0.07824825,0.067588754,-0.05541922,0.020301962,-0.02356846,-0.09145264,0.072813526,-0.011522042,-0.006312483,0.042884383,-0.033407923,-0.033537466,0.04498303,0.021971494,0.007101675,-0.05357805,-0.005908511,0.043517545,0.00034009753,-0.015749563,0.09511566,0.06607055,0.014590478,-0.07460262} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:03:02.869134+00 2026-01-25 01:27:51.690182+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 515 google ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE 1 t 518 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Voiture louée pour une semaine en février. Voiture de 6000km, aucun défaut, prise en charge relativement rapide, retour sans encombre et prix très raisonnable.\n\nOn conseille vivement voiture louée pour une semaine en février. voiture de 6000km, aucun défaut, prise en charge relativement rapide, retour sans encombre et prix très raisonnable. on conseille vivement 5 2025-03-01 01:27:48.342364+00 fr v5.1 J1.01 {O1.01,P1.01} V+ I2 CR-N {} {"J1.01": "Voiture louée pour une semaine en février. Voiture de 6000km, aucun défaut, prise en charge relative", "R1.01": "On conseille vivement"} {-0.06200662,0.07677511,-0.06037817,-0.052524325,-0.056021743,0.041395813,0.0001511467,0.110908814,-0.027678723,-0.051937107,0.017847791,-0.071941234,-0.0043017645,-0.07688027,-0.068615414,-0.062104747,0.01255249,0.05333877,-0.021792613,0.08288176,0.044953346,-0.033058777,0.0025403183,0.007336632,-0.0015074363,0.024207784,0.0065645105,0.017726995,0.022770232,-0.080389105,0.07072589,0.07103507,-0.03753682,0.005243306,0.013253426,0.013744096,-0.029717656,-0.042414643,-0.037305743,0.04122248,-0.029507468,-0.07621995,-0.067424096,-0.009511768,0.003907825,-0.018352116,0.057863317,0.14316729,-0.0077238246,-0.039615124,-0.0025598034,-0.022194138,0.027673725,0.03638901,-0.052439947,0.02924667,0.09796568,-0.06998286,0.07852058,-0.0016032305,0.030150192,0.03460261,-0.03416004,0.0048069516,-0.07770793,-0.042166423,0.008216029,-0.053575195,-0.006418691,-0.0060602184,0.060026165,0.0121917315,-0.080126636,-0.026123991,-0.017138718,0.0030169426,-0.011022222,0.018277783,0.015688451,-0.13284743,0.051299796,-0.06444107,-0.023582758,-0.021650068,0.049839552,-0.041277904,0.013950341,0.04734927,0.011677999,-0.06620617,-0.023644743,0.04141094,-0.09420495,-0.045488883,0.0085438145,0.031392235,-0.075323045,-0.089196645,0.014542669,0.03811715,0.012409804,-0.019210687,-0.055376593,0.10002779,-0.049736958,0.019457826,0.05455013,0.022981696,0.007054684,0.02951816,0.007659048,-0.07755694,0.045305416,-0.09002731,-0.027411943,0.041596837,-0.050001245,-0.036901094,-0.009029644,-0.048490874,0.010231037,-0.043947324,-0.024784708,-0.026817678,0.08437972,-0.01865725,0.10397462,8.8368346e-33,-0.02574791,0.038640995,0.0073493687,-0.049895804,-0.064726755,0.0011702346,-0.06493275,0.06653959,0.06021905,-0.021713393,-0.06744607,0.0039200364,-0.016607579,0.007990008,0.050593466,-0.016179455,0.070460886,-0.0051199486,0.013830629,0.0029809836,-0.035760257,-0.028049668,0.08041073,0.072286874,0.0798244,-0.01533621,0.006106784,-0.06869083,-0.057288505,0.051142607,0.03278051,0.00055721035,0.013273533,-0.025887882,-0.04546116,-0.013413018,0.046129476,0.017469045,-0.026053058,0.0501357,-0.003611717,-0.019476824,-0.04909435,-0.03553122,-0.01894782,0.048645288,0.029253192,0.028553559,0.04135176,0.008599444,-0.06182735,-0.0022231261,-0.11775271,-0.0031352278,0.07229147,0.041628096,-0.055000108,0.032375254,0.017669039,0.01666093,-0.01484746,-0.002756566,-0.029605903,-0.005838539,-0.03964705,-0.047443394,0.030766554,0.040569887,0.020727722,-0.007889393,-0.08989586,-0.031188693,0.017619563,-0.10700961,0.026681358,0.06867299,-0.02261207,0.05079966,-0.030161973,0.007434469,-0.12488325,-0.0032962975,-0.016732031,-0.07834331,0.10200313,-0.035371877,0.0420986,0.028679257,0.01617719,-0.0431087,0.006833684,0.05680474,-0.026006868,-0.059140496,0.05100287,-9.2906665e-33,0.03383016,0.009885652,-0.005959306,0.08129679,-0.0036005892,0.0962562,-0.019460712,0.06522565,-0.10427221,-0.05506112,-0.1369307,-0.038993057,0.07117254,-0.07010596,0.021776497,0.052488,0.00018866047,-0.10014234,0.008336587,0.029266944,0.0055630365,-0.028116172,0.018595377,-0.026256615,-0.015649518,-0.07263112,-0.026667427,0.027246462,-0.026954114,0.005269322,-0.027269097,0.010391007,0.0057371147,0.067241736,-0.0011891671,0.11259524,0.16572413,0.08255623,-0.013117971,0.06273886,-0.044307824,0.037311055,0.044909276,-0.048129305,0.007440404,-0.049757317,-0.06706914,-0.12739077,-0.016233418,-0.047226183,0.13053738,-0.022600833,-0.010986427,0.0597321,-0.010358808,0.0039523956,-0.010350336,0.024285207,-0.019423626,-0.014052587,0.12138563,0.056482524,0.028099317,0.034554634,0.03908701,-0.0408466,-0.02586819,0.077430174,0.052798267,-0.011363812,0.0047687152,-0.005492916,0.0460327,0.03402623,-0.06838865,-0.0046038814,0.07097418,0.037451375,0.027273765,0.066553995,-0.054833874,0.08124281,-0.04635524,-0.033999294,-0.056642924,-0.026279738,0.051615894,-0.047667675,0.03809105,-0.07931338,-0.015000125,0.0384376,-0.01869145,0.009891248,-0.007792419,-4.1559023e-08,-0.018499987,0.0019616173,-0.016820984,0.05759331,0.095731266,-0.124449395,0.016297383,0.026566995,-0.09304913,0.014075074,0.048311867,-0.04679754,0.019341946,0.06846288,0.015552536,0.015299282,-0.02520434,0.08574533,-0.027828682,-0.0076867053,0.0636406,0.06203495,-0.033998042,-0.022831272,0.009700209,-0.051985197,-0.050775316,-0.16686407,-0.004619947,-0.06695965,-0.06484186,0.07069792,-0.0017922897,-0.06537071,0.032646745,0.010969009,-0.05163994,0.059678737,0.021155916,0.028861608,0.10254961,0.0093596,-0.02247269,-0.09502457,0.057638288,-0.058098543,0.03130514,-0.050688505,-0.019856503,0.0773618,-0.051755525,0.0513308,0.032860644,0.045170102,0.04504628,0.013552079,-0.002721485,-0.09056207,-0.05475461,-0.010213787,-0.026985882,0.039606616,0.058428034,-0.0355529} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:03.252721+00 2026-01-25 01:27:51.70237+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1185 google Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB 1 t 1188 Soho Club unknown We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free.\nI feel sorry for the administrators, it's quite strange approach.\n\nThank you for your response. I haven't visited you for more than 5 years, been couple of times in total.\nThe system you have is stupid and discriminatory. I support clubs by buying drinks and coming back. No need for manipulative bullshit.\n\nIts a never seen system when a single person or a couple is less welcome than a group of 3. we were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free. i feel sorry for the administrators, it's quite strange approach. thank you for your response. i haven't visited you for more than 5 years, been couple of times in total. the system you have is stupid and discriminatory. i support clubs by buying drinks and coming back. no need for manipulative bullshit. its a never seen system when a single person or a couple is less welcome than a group of 3. 3 2026-01-29 18:34:31.336452+00 en v5.1 V1.02 {R1.02} V- I3 CR-N {} {"R1.01": "I support clubs by buying drinks and coming back. No need for manipulative bullshit.", "R1.02": "Its a never seen system when a single person or a couple is less welcome than a group of 3.", "V1.02": "We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free. "} {0.06171358,-0.011070995,0.023060815,-0.029950934,0.04488538,0.027244754,0.049194716,-0.09527427,0.0030866459,0.05749425,0.036302924,-0.09517897,0.038229145,-0.015678754,0.05322263,-0.06629055,-0.008784122,-0.1432686,-0.028807594,-0.010877045,-0.030234158,-0.102203466,-0.0066770744,0.0342918,0.0094763255,-0.009446334,0.00400134,0.007521992,-0.0017058542,0.025214106,0.028919874,0.041194245,0.060683683,-0.01244389,0.0085359905,-0.06440936,0.05521118,-0.07335589,-0.0885737,0.025484264,-0.018692076,-0.020319235,0.034363147,0.053561836,-0.0016493588,0.07780664,-0.038436856,-0.026866937,0.063879415,-0.026306598,0.07180342,-0.016197557,0.07266199,0.014745358,-0.034276616,-0.015728,0.04237092,-0.007869709,-0.061672278,0.024959965,-0.060688782,-0.008160042,-0.04399053,0.0020502838,0.009991464,0.0132192075,-0.143307,-0.009976917,0.04287593,-0.041888412,-0.050520867,-0.010770447,0.04673729,0.041958284,0.03564895,-0.007162693,-0.028616372,0.05711267,0.07215457,-0.033927474,0.012813779,-0.02426532,-0.073510215,0.020076696,-0.03627487,-0.03238683,-0.08930057,-0.071044184,0.00939011,0.06257959,0.060493395,0.10783216,0.10474903,-0.0906952,0.0034969936,0.014511687,-0.03751876,0.02164365,-0.010442774,0.039086476,-0.021699987,0.08487453,0.043593667,-0.011982011,0.0017400025,-0.004637551,0.07733467,0.08764559,0.04120345,-0.050563563,0.013362665,-0.054844495,0.07364021,0.0026603385,-0.04681502,0.06570186,-0.007985245,-0.012721237,0.095209986,0.0068869162,-0.04248514,0.06304482,-0.031034473,-0.0023845152,-0.022410922,-0.042024713,-0.011059458,-1.6831226e-33,-0.05665276,0.03216316,-0.05210051,-0.016342806,0.03252087,-0.07766513,-0.08675192,-0.0026646527,-0.042529926,0.064969234,0.07841905,-0.0133847175,0.1103544,-0.07457111,0.03352651,-0.009806117,0.019558974,0.071085334,-0.0018014933,0.032911234,0.06433261,-0.024616472,0.032148212,0.022130338,-0.077948496,0.026336107,-0.03586391,-0.02642188,0.18342417,-0.029386664,-0.002691416,0.036118213,0.047003996,-0.015991814,0.0559678,-0.010304514,0.110663645,0.04440048,-0.024239078,-0.074088946,-0.12387301,-0.12103421,0.0548027,-0.07238913,-0.030305108,0.06179032,-0.009749314,-0.12682557,-0.11708762,0.04814733,-0.02253866,0.05615537,-0.024107609,0.10851936,-0.055380642,-0.0762226,-0.004972603,0.076597475,0.011885178,-0.09481272,0.009078129,0.009039819,-0.023308272,0.008743307,-0.062353298,-0.075398795,-0.032296505,-0.012048062,0.08409046,-0.017910397,0.004576548,0.09928589,-0.019387428,0.061256237,-0.005945792,0.059106268,-0.01766518,0.07737834,0.087507814,0.009165585,-0.050981812,-0.046256945,0.028358879,0.07359332,0.068566605,0.025021834,0.021329828,-0.005193871,-0.036883544,0.03682815,0.01568826,0.03649461,-0.015755089,0.074445635,0.087256975,2.2313518e-36,0.025968356,0.033445038,0.022373255,-0.1715105,0.046344157,-0.004782586,-0.077334926,-0.022153854,0.07135616,0.06206562,0.0039911065,0.05309396,0.036974587,-0.010723959,0.012325033,-0.06936125,0.049743168,-0.027536834,0.030805873,-0.014560253,-0.016709855,0.05723793,0.024833387,-0.033392955,0.00747763,0.011997136,0.028373387,-0.024742717,-0.012316392,0.09462125,0.0023174428,-0.044481244,-0.05410593,-0.009835841,0.003982287,-0.06061032,0.008728978,0.04017698,-0.082551815,0.02154417,-0.05925888,-0.045305427,-0.030382026,-0.03431853,0.035633847,-0.012953976,-0.0047720666,-0.08902825,-0.013761751,-0.008725723,-0.09426859,-0.06939315,0.08036999,-0.06442882,-0.0053673466,-0.025389468,0.058178727,0.010585657,-0.0074760118,0.022943664,0.035461552,0.01226422,-0.071617745,0.027716162,0.0447563,0.011439302,-0.013666284,0.04927213,-0.009301087,-0.008647455,-0.011118208,-0.04390545,-0.029951205,0.022931797,-0.011067053,-0.04096414,0.048896335,0.0038290576,-0.062093344,-0.043205112,0.044524204,-0.026459152,0.05309269,-0.019310147,-0.0021254732,-0.11314854,0.11278745,0.029774224,-0.032040074,0.043875683,0.033133097,-0.028153844,0.026354237,0.049310934,2.6106336e-05,-4.649621e-08,0.006216676,-0.0154224485,0.008449089,0.086524256,0.00060194277,0.007354931,-0.10033031,0.0009856812,-0.019954463,0.046123,-0.0193843,-0.02812968,0.04439975,-0.042292025,0.054301895,0.03349989,0.007150914,-0.037893746,-0.07307138,0.050177258,-0.047597904,-0.008069068,-0.056081686,0.022514204,-0.080153234,0.022308564,-0.032939423,0.0075600417,-0.011276983,-0.02857716,-0.05852139,0.06318189,-0.0053887134,0.0141597055,-0.045813166,-0.06946267,-0.086663716,0.005857952,0.009246988,-0.024284663,-0.09463299,-0.01008254,0.0004808499,0.0059358887,0.011369279,0.11932902,-0.08523552,0.05628557,0.0066282693,-0.007826126,-0.024480378,0.007560322,0.081365734,0.017954528,0.03625515,-0.027984034,0.047563564,0.09659698,-0.023648702,-0.011443324,0.05876838,0.023504745,-0.035427924,-0.037465885} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:37:36.931939+00 2026-01-29 18:36:00.434627+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 518 google ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE 1 t 521 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Coche de gama muy inferior al contratado, sin previo aviso antes de contratar. Dificultad para obtener la información sobre punto de recogida. Exigencia de un seguro añadido para la cobertura de llantas y cristales. coche de gama muy inferior al contratado, sin previo aviso antes de contratar. dificultad para obtener la información sobre punto de recogida. exigencia de un seguro añadido para la cobertura de llantas y cristales. 1 2025-03-01 01:27:48.342394+00 es v5.1 O1.02 {} V- I2 CR-N {} {"J1.02": "Dificultad para obtener la información sobre punto de recogida.", "O1.02": "Coche de gama muy inferior al contratado, sin previo aviso antes de contratar.", "P1.02": "Exigencia de un seguro añadido para la cobertura de llantas y cristales."} {-0.016701367,0.079732955,-0.0265321,-0.07695968,-0.07074003,-0.018569652,0.03755332,0.08108621,-0.02120826,0.09067153,0.101758026,-0.017168136,0.016246015,-0.033320326,0.017084446,-0.06330729,0.028340222,0.044070836,0.033656463,-0.0058104317,0.083535604,0.028419733,-0.077488005,0.0648493,-0.14721839,0.0457306,-0.053180456,-0.035530027,0.007835872,-0.053183533,-0.037707996,0.029431615,0.044328555,0.020189231,-0.0730233,-0.08870057,0.025812054,-0.03219305,0.03819236,0.085509755,-0.10766626,0.032311257,-0.10541463,-0.058994684,-0.023335353,0.004629526,-0.027267054,0.055385273,-0.016649282,0.0071297404,-0.065724984,-0.05466057,-0.06522511,-0.010426046,0.00957689,-0.0041512283,-0.029179497,-0.0577796,-0.0028162736,0.0015890914,0.0006160809,0.032061424,-0.05972069,0.01959702,0.056961924,0.023676515,0.013404563,-0.009699617,-0.017580813,0.055819202,0.061938886,-0.06650243,0.0708627,0.016929349,-0.11515621,-0.031017425,0.020051677,0.02556891,0.012546161,-0.103578806,0.025978338,0.044952463,-0.03139489,-0.021021668,0.0029576647,-0.06762034,-0.014059864,-0.006690019,0.05635138,0.00081876526,0.013367224,-0.0032368384,-0.014831511,0.015157958,0.0005579309,0.036667284,-0.034555934,-0.0856512,0.054645907,0.031910356,0.07209787,0.03605936,0.0031614983,0.049251914,-0.023078991,-0.044706635,0.030019857,-0.05618913,0.029791757,0.08623637,-0.061951645,-0.03925993,-0.017012523,-0.07819417,-0.0031257963,0.0077495445,0.018294537,0.040056463,-0.009381108,-0.10598002,0.07417856,-0.03888565,0.019122548,-0.026707727,0.09952394,-0.08989993,0.0055008307,7.5966535e-33,0.01382519,-0.08619161,0.005361526,0.08615631,-0.076717876,0.030256333,-0.08130441,-0.050091375,0.035819508,0.02300012,-0.016741965,0.059862573,-0.03748642,0.054688722,0.008178352,0.03436399,-0.043862816,-0.029025458,-0.0021686896,-0.012801691,-0.05214035,-0.011695469,0.031103157,0.0048922263,0.039520778,0.03509596,-0.06165558,-0.07336796,-0.10607029,0.02693687,0.029297855,-0.025827821,0.0378851,0.016694285,0.0072470712,-0.046316158,-0.013899391,-0.00610966,-0.016237976,-0.01641819,0.011321595,-0.04356093,0.0083731925,0.002714776,0.04990286,-0.005055217,0.0051101423,-0.008058656,0.08740302,0.022492282,0.0034326343,0.0045852005,-0.11437651,-0.022244256,-0.028328756,0.044494145,-0.095553346,0.01767353,0.030759616,-0.062421944,-0.0070094294,-0.029163234,-0.0041911206,-0.021020781,-0.06131288,-0.043248896,-0.036561985,-0.039608695,0.1389943,0.055546895,-0.11661669,-0.09785175,-0.054351956,0.07410663,0.005329301,0.02749929,0.03193684,0.046039104,-0.02732633,0.040435348,-0.029541576,-0.019121764,0.045641325,-0.028792318,0.012466719,0.02228535,0.07905669,0.08689225,0.07419143,0.0662834,-0.03330079,0.118775964,0.011882742,0.013976042,0.06456707,-1.0151355e-32,-0.018720832,-0.047867544,-0.064778075,0.01724969,-0.06437022,-0.006122654,0.0673312,-0.10558655,0.009644832,0.004594408,-0.10309053,-0.05753958,0.0871927,-0.013318926,0.032851122,0.07247296,0.021390256,-0.059621222,-0.02974888,-0.016921103,0.02247503,0.08133078,0.040389173,-0.08861676,0.033778258,-0.053972673,-0.012952846,0.0011114078,-0.08712939,-0.014306701,0.050168384,-0.014996974,0.040476125,0.009926397,-0.0048505785,-0.0016747774,0.0661049,0.024519289,-0.061211564,0.027558766,-0.033452548,0.10139045,0.08489529,-0.07069151,-0.0141591225,-0.029759523,-0.0034756742,-0.08757232,-0.04950248,-0.040222574,0.08603542,-0.020087851,0.010228472,-0.060322355,0.055706512,-0.048955403,-0.05560014,-0.07694636,0.028443165,0.096045926,0.09716196,-0.0280103,-0.07361361,-0.081734665,0.069505684,-0.010709962,-0.0040286905,0.011548499,0.055761058,0.04109367,0.0513131,-0.0844691,-0.030523153,-0.03478776,-0.015037998,0.033886623,-0.05287553,0.032872234,-0.078178786,0.00956938,-0.02399874,-0.028766608,0.03315088,0.02542696,-0.10074801,0.021896722,-0.053045347,-0.018174997,0.048397988,-0.00169381,-0.10241214,-0.021419045,-0.008440787,-0.068026856,0.03586283,-4.5974755e-08,-0.051495004,-0.06153981,0.040207025,0.061842434,0.07108013,-0.03744643,0.01324253,-0.021782933,0.026189702,0.02161064,-0.032552596,-0.028545404,0.016255798,0.047722433,0.048577216,0.003170803,0.0476983,0.049057018,-0.020665955,-0.05169314,0.09040616,-0.025714504,-0.07895074,0.0029961485,-0.021290509,0.021694303,0.035444617,-0.019499904,-0.08077014,-0.005973431,0.00995872,0.034129303,0.044924032,-0.090245984,-0.004028355,0.06976822,0.090582356,0.054159686,-0.02546041,0.024511065,0.030472582,0.012854378,0.062987074,0.006663938,-0.0010839435,-0.056511063,0.05071334,0.016051225,-0.020846086,-0.033496644,0.0017768225,0.006037359,0.092581175,0.051037353,0.020795941,-0.113490015,0.028760647,0.031731833,-0.046117164,0.0050146286,0.101618245,0.105200216,0.033457577,-0.07596834} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:48:49.370481+00 2026-01-25 01:27:51.716286+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 521 google ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB 1 t 524 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Coche impecable y trato de 10. Carmen, Nestor y Antonio lo pusieron todo muy fácil. La información para llegar al microbus de cortesía es un poco confusa. Para el aeropuerto de Las Palmas hay que subir a la primera planta para llegar al punto de encuentro. coche impecable y trato de 10. carmen, nestor y antonio lo pusieron todo muy fácil. la información para llegar al microbus de cortesía es un poco confusa. para el aeropuerto de las palmas hay que subir a la primera planta para llegar al punto de encuentro. 5 2025-01-25 01:27:48.342401+00 es v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "Coche impecable y trato de 10. Carmen, Nestor y Antonio lo pusieron todo muy fácil.", "J1.02": "La información para llegar al microbus de cortesía es un poco confusa. Para el aeropuerto de Las Pal"} {-0.008358273,0.05962201,-0.021883273,-0.0048034885,-0.011759647,-0.017604293,0.060460847,0.06986074,-0.051567,0.00085155625,0.113350466,-0.0050669904,-0.049278874,0.03440766,-0.042696185,-0.0061930497,-0.012376887,0.032581758,-0.030572474,0.04841849,0.16954286,-0.0024152768,-0.06966623,0.11150778,-0.047943033,-0.026549075,-0.1049656,0.013954592,-0.06240409,-0.055817727,-0.0438465,0.039685182,0.05131335,0.017376838,0.060102,-0.09964691,0.09721662,-0.03746718,-0.013338521,0.06530496,-0.08710501,-0.05667479,-0.015264817,0.024096977,-0.036067218,-0.04243173,0.041617446,0.113533795,0.015318209,0.007928697,-0.08307641,-0.03982301,0.0049292864,-0.078565754,-0.010804529,-0.007751713,0.0028704223,-0.02529393,0.11082097,-0.0060111824,0.046827946,0.060153827,-0.060637664,0.047635425,-0.026267923,-0.07357574,-0.0552404,0.003925518,-0.0037539355,0.036288455,0.14221586,-0.13251916,-0.020529164,-0.004273046,-0.0874274,0.026404087,0.00046448177,-0.007959728,-0.055609476,-0.016413316,-0.021009777,-0.056615017,-0.033372264,-0.10580884,-0.057124607,-0.0099233,0.025794718,0.030462105,-0.03011015,-0.038748607,-0.042800624,0.032655474,-0.03976031,0.0069675427,-0.04591867,0.014301013,-0.0004501427,-0.09805133,-0.021523867,0.01790228,0.06373206,0.07111165,0.06616717,0.05393691,-0.07159218,0.011425522,0.039983463,-0.058812454,0.041645274,-0.02741422,-0.080391854,0.0020485478,-0.0601697,-0.0025789554,-0.019806853,-0.019915039,0.0015483926,-0.042028774,-0.030003492,-0.08301444,0.02487368,-0.058395658,-0.0018904736,0.003194502,0.033272047,-0.050764408,0.10264815,1.0354751e-32,-0.029344767,-0.027701015,-0.02144701,0.089613914,0.05902361,0.010067655,-0.042167142,0.0043387003,-0.00013418798,0.042130228,-0.08355649,-0.028420562,-0.033073947,0.04575116,0.075037405,0.027336054,0.016535105,-0.021828363,0.066323794,-0.018151129,-0.03806249,0.02050025,-0.04006141,-0.032839786,0.050743174,0.08646611,-0.035861522,-0.05017723,-0.0067327246,0.07908926,0.03282354,0.012889887,-0.01834352,-0.00037983537,-0.008560788,-0.01615412,0.044007245,0.027402967,-0.029531471,-0.014603427,0.012797977,-0.04152079,0.006724452,0.033166222,0.03267064,0.014354004,0.06449082,0.061578967,0.1082237,-0.0051232567,-0.045560796,0.0048769894,-0.096639626,-0.030585177,0.026108237,0.009287262,-0.033826787,0.016644327,-0.008414311,-0.0244375,0.04218615,0.005930459,-0.02357917,0.010779314,-0.010949373,0.018456254,0.041400652,0.075315155,0.14858286,0.09097208,-0.13345478,-0.054114256,-0.03916621,0.037905492,-0.010323721,0.03475442,0.040621612,-0.029829472,-0.05282782,0.07601423,-0.065898225,-0.014319815,0.06881889,0.04136344,0.011611276,0.07432037,0.024214942,0.0799564,0.007347221,0.0942444,-0.040473152,0.078604475,0.055276774,-0.047157653,0.068011485,-1.18898616e-32,-0.043977756,-0.0012870393,-0.023064366,0.018977784,-0.07717461,0.021705143,-0.02225636,-0.039347183,-0.014740107,-0.080367215,-0.17904064,-0.07125911,0.0853589,-0.10803587,0.0047129253,0.10040816,-0.035065763,-0.08609289,-0.10179703,-0.00048116993,-0.016542757,0.014641966,0.015414967,-0.03650805,-0.022492474,-0.00066281203,0.026225021,-0.027117187,-0.038102,-0.004507676,0.01266718,-0.022497859,0.019318445,0.09791921,-0.10204502,-0.007151755,0.007968018,0.073295094,0.011039248,0.027216338,0.027529443,0.05342949,-0.00045467683,-0.0011988747,-0.014966766,0.002492488,-0.009939364,-0.1086115,0.0053040492,-0.019431803,0.08325365,-0.047379795,-0.052304704,-0.018286688,0.08458516,-0.008863045,0.044431087,-0.013821237,-0.027136512,-0.004625147,0.010488861,0.027875142,-0.07692961,-0.02858218,0.043450534,-0.0067517804,-0.02263692,0.043866556,-0.0322135,0.017639097,0.09364485,-0.025612663,-0.032009646,0.03904194,-0.055421073,0.033568446,-0.06349453,0.06408948,-0.040275868,0.038750365,0.035878245,0.03073055,-0.021458095,-0.06938053,0.059244405,-0.024038043,-0.019600887,0.008099714,0.026339198,0.022084998,0.013841035,0.014542129,-0.003977946,-0.12072917,-0.015753571,-5.209266e-08,0.041241538,-0.044682443,-0.026175952,-0.014091625,0.0073761744,-0.029467441,-0.0049503082,0.063321754,-0.0071038166,0.066326305,0.045554616,-0.061556015,-0.060518693,0.10791299,0.006224699,-0.018149054,0.049107984,-0.0049178354,-0.027529588,-0.025355821,-0.014268919,0.010004803,-0.06370428,-1.587828e-05,-0.017190525,0.002489651,-0.053665556,0.033053093,0.042206522,-0.006859137,-0.003153389,0.006683096,-0.08696013,-0.051911447,-0.06068432,0.07145083,-0.026510065,0.016344583,-0.066657625,-0.10770444,0.039614603,-0.0033281243,-0.044080816,0.00097464194,0.005244885,-0.083723284,-0.05019295,-0.02548109,-0.03809638,0.04748597,-0.045214724,-0.009951464,0.07909948,0.05784263,0.018196559,-0.012370305,-0.012200338,-0.05672684,-0.030713134,0.044492282,0.0675898,0.08572384,-0.012965533,-0.07765928} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:02:04.42991+00 2026-01-25 01:27:51.724407+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 524 google ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB 1 t 527 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Die Abholung war etwas schwierig, da wir den Treffpunkt am Flughafen erst später gefunden haben.\nRückgabe ohne Probleme. Gutes Auto (VW Taigo). die abholung war etwas schwierig, da wir den treffpunkt am flughafen erst später gefunden haben. rückgabe ohne probleme. gutes auto (vw taigo). 5 2025-01-25 01:27:48.342407+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Die Abholung war etwas schwierig, da wir den Treffpunkt am Flughafen erst später gefunden haben.", "O1.01": "Rückgabe ohne Probleme. Gutes Auto (VW Taigo)."} {0.023295226,0.05580922,-0.023068994,-0.029279117,-0.028815677,0.06304032,0.019913297,0.104464516,-0.039640214,-0.0057564555,0.03742486,-0.049989745,-0.022300787,-0.035029553,-0.05594056,-0.077984616,-0.14269389,-0.003437531,-0.01362869,-0.0146886865,-0.057388652,-0.026220648,0.047667854,0.06555151,0.06464681,-0.05978671,-0.02921986,0.0117276395,0.0397967,-0.025504086,0.07312704,0.018574564,-0.06680443,0.0050498415,-0.011403044,-0.01759423,-0.04806365,0.020116858,-0.028540138,0.033473745,-0.082635224,-0.017777856,-0.030565364,-0.16616414,0.043595232,0.057596132,0.023074774,0.06765407,-0.028327225,0.010745036,-0.0151328305,-0.027817955,0.040524215,0.013512779,0.07010298,-0.11913565,0.03695929,0.01402294,-0.0036238986,-0.00925392,0.053630605,-0.039377026,-0.023162557,0.010163011,-0.04953511,-0.010460193,0.015398605,0.0010472016,-0.05106448,0.12638535,0.012837961,-0.037330877,-0.00028004884,0.015093953,-0.013851516,-0.0058821486,-0.08746042,0.030884445,0.037415355,-0.08015744,0.08914611,0.020479443,0.056320887,0.023152864,0.033521663,-0.022078678,0.051756684,0.0139891645,0.027309142,-0.0070279147,-0.059211306,-0.026288638,0.013032307,0.020795245,-0.03698539,-0.03193948,0.037573334,0.020202529,0.0064448863,0.0433138,-0.005220664,-0.0086622555,-0.02054902,0.021740567,-0.031657662,0.023618132,-0.1116049,-0.0062489943,-0.021509359,-0.0013993107,-0.009798616,0.032095194,0.015826581,-0.034447994,0.041313402,0.03354462,0.012937029,-0.11589036,-0.068306476,0.026196757,0.026609289,-0.0044657504,-0.029312408,0.03335633,0.11268697,-0.102392435,0.098409675,1.2636877e-32,-0.0194375,-0.06072912,-0.06318456,0.004079313,0.041281745,-0.09336281,-0.081403024,-0.068629175,0.0102380905,0.018286984,-0.021988366,-0.037315547,-0.026142966,-0.003962304,0.030894317,-0.031640504,0.0013899612,-0.014483336,-0.054620024,-0.08863614,-0.020061318,-0.016537298,-0.019527595,-0.005065678,-0.033562884,0.01141397,0.04265203,-0.00416266,-0.005592308,0.042436928,0.017813232,-0.0525865,-0.0035414398,0.027139274,-0.08701981,-0.071384035,-0.045432728,0.0031784268,-0.03624082,-0.033629686,0.11148259,0.03777862,-0.057070334,-0.028519303,0.08060292,0.02744168,0.03311588,0.01272582,0.037590113,0.07117505,-0.056603767,-0.00072150165,-0.017914828,-0.01739141,0.061620664,0.032722842,-0.012543401,-0.0011011659,-0.029383445,0.029312046,-0.05093333,0.004766168,0.019760508,0.0048195627,-0.020486342,0.005197765,0.041908003,0.014091562,-0.019680012,-0.006902827,-0.04866791,0.022994015,0.03207949,-0.008337283,0.02273843,0.011326054,0.0020375098,-0.019980522,-0.1103856,-0.029972624,-0.13811532,-0.03920458,0.0174372,-0.030918611,-0.032891292,-0.056170866,0.054218393,-0.054621857,0.022870164,0.10292422,-0.062036403,0.05575433,0.036105257,0.05296727,0.04068397,-1.141815e-32,-0.021030283,0.08830978,-0.07039844,0.07254721,-0.031929996,0.09428444,-0.022990875,0.013493619,-0.054039415,-0.041593555,-0.04495252,-0.023094933,0.009371773,0.033844214,-0.06677506,-0.0047425646,0.1327901,-0.040770322,0.0014387177,-0.042698584,-0.027433917,-0.03528542,-0.022934232,0.002718601,0.0047301836,0.0463523,0.092255086,0.023747442,-0.04935039,0.03292786,0.070380546,-0.013129101,0.011145857,0.007573583,0.032808535,0.001346705,0.12858555,0.029366845,-0.04367141,0.004100776,-0.0038725191,0.06274428,-0.07904862,-0.0024628753,0.03643685,0.016001219,-0.13038355,-0.050468665,-0.025092423,-0.0873523,0.07733037,0.038910646,0.13197008,-0.03904586,-0.0021813302,0.04272408,0.0044889054,-0.09087543,-0.11361863,0.08136995,0.05245156,0.06506512,0.037407182,-0.041502193,0.082640536,-0.08188591,-0.17122158,-0.018160626,0.089585245,-0.009391963,0.065632224,0.004454889,-0.0023859944,0.057308678,-0.006298442,-0.05914103,-0.01695248,0.03225264,-0.01997604,0.07303615,-0.021215376,0.061398007,0.032334268,-0.0034137561,-0.11339871,0.02340526,-0.044391587,0.026702374,0.023840496,-0.010413683,0.07276721,0.03238106,0.04002553,-0.0060042455,-0.004091433,-4.8140805e-08,-0.0016270273,-0.04792664,-0.039780978,0.03743222,0.0042580706,-0.040185478,-0.01906669,-0.031961188,-0.09507956,0.058097977,-0.00884281,0.001252327,-0.047824193,0.0602083,-0.030126978,0.019308595,0.021337036,0.04516977,-0.06411576,-0.016070554,0.082119204,-0.104360096,-0.06963716,-0.003209519,-0.02129774,0.062433388,0.013666315,0.021635985,-0.009537266,-0.0051391884,-0.004042657,0.0966961,-0.014629764,0.10371087,-0.086814724,0.090559565,-0.008069032,0.048223663,-0.08632778,0.038386367,0.07645701,0.044020165,0.062663175,-0.07787068,-0.041257903,-0.008707659,-0.018336326,-0.017621094,0.11229704,-0.005395051,0.025311414,-0.008090939,0.08665507,0.099113494,0.02012663,0.050284874,0.03781651,-0.043854564,-0.008549559,-0.019165618,0.019645317,0.0125729665,0.01730566,0.09846059} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:01:47.358172+00 2026-01-25 01:27:51.735546+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 526 google ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE 1 t 529 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Magnífico servicio. Antonio y Néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una amabilidad magnífica. E Isabel nos solucionó todo en la oficina en nada de tiempo. Si volvemos por ahí, sin duda repetiremos magnífico servicio. antonio y néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una amabilidad magnífica. e isabel nos solucionó todo en la oficina en nada de tiempo. si volvemos por ahí, sin duda repetiremos 5 2025-01-25 01:27:48.342411+00 es v5.1 A1.03 {} V+ I3 CR-N {} {"A1.03": "Magnífico servicio. Antonio y Néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una am", "R1.01": "Si volvemos por ahí, sin duda repetiremos"} {-0.024375565,0.05659325,-0.022219105,-0.02990303,-0.06708148,-0.04205375,0.03508294,-0.051460046,-0.0723205,0.014084394,-0.0094406,0.06878163,-0.04452141,0.01185296,-0.049735423,-0.027675025,-0.0316837,0.046251927,-0.011670333,0.114413396,0.13476336,-0.08086178,-0.023892276,0.06504895,-0.016203828,0.029153496,-0.04316829,0.012180834,-0.11024384,-0.113264486,0.0077905566,0.021184742,0.06490501,-0.055256393,0.019701647,0.037120752,0.037791226,-0.050934605,-0.011667794,0.045887433,-0.066311635,-0.063131936,-0.009701127,-0.012927293,-0.05650429,-0.064676225,0.057418726,0.014459576,0.073422275,0.008473839,-0.13499632,-0.04544647,-0.07405826,0.0236463,0.005603598,0.01738533,-0.023834633,-0.0533935,0.029108662,-0.009030756,0.05775469,0.058308635,-0.051787954,0.07334454,0.07822664,-0.035417598,0.008602419,-0.013427848,-0.019971495,-0.10916762,0.11498163,-0.050167896,0.056542926,0.04399407,-0.067189164,0.111783855,0.015822522,0.048788376,0.021384496,-0.021636974,0.016853668,-0.01326264,-0.03748481,0.008605724,0.006239667,0.0078828875,0.011094697,0.02127864,0.087052934,-0.025441151,-0.0009739935,0.061442185,-0.07649117,-0.0050653717,0.02338709,-0.017423792,0.025767887,-0.029590156,-0.092706844,0.03764528,0.09450734,0.0077683306,0.09463988,0.038159978,0.038236104,0.013775896,-0.015658662,-0.035285,-0.016281819,0.053833567,-0.03544883,-0.0408696,-0.10703489,-0.057243105,-0.014160043,0.05601858,0.06311705,-0.018194435,-0.01866496,-0.027315276,0.058435064,-7.0613634e-05,-0.0472969,-0.054883312,0.030430062,-0.004793638,0.0047755446,1.1189934e-32,-0.014320573,-0.047093242,0.02464079,0.08716461,-0.0031355566,0.06143936,-0.041411106,0.012168301,-0.045242243,0.016431138,-0.04655022,0.075168505,0.05479938,0.012814158,0.041444298,-0.0062784655,0.017012734,0.01491054,0.025457002,-0.0022538442,-0.021072587,0.029927978,-0.009087719,0.011453372,0.017265763,0.054348975,-0.03091901,-0.08625775,-0.02632796,0.07454893,0.082776554,-0.0126736155,0.015767373,-0.060077164,-0.01803105,-0.020830452,-0.010956073,-0.037873972,-0.014552691,-0.008772734,-0.023587763,-0.010702217,0.05368218,0.07223251,-0.022528576,-0.031285185,0.056922406,0.0044599497,0.108186156,0.0271406,-0.007462714,-0.12348355,-0.08820306,-0.052564982,0.01791883,0.057230387,-0.07472963,0.055806115,-0.044941295,-0.12013992,0.10147198,-0.019530585,0.021622818,0.0063055605,0.040133607,-0.061575335,0.044210438,0.06720918,0.11212407,0.055625223,-0.07674764,-0.0028561037,-0.04650357,0.03432075,0.002267019,-0.00655261,0.016091801,-0.009167314,-0.026203912,0.018470265,-0.036398053,-0.0024153057,0.039656118,0.02565397,0.065747365,0.08967656,0.052098434,0.05465093,-0.015204092,0.05660693,0.005985227,0.15268815,0.011010128,-0.052935377,0.009146354,-1.18896765e-32,-0.009174167,-0.05440519,0.036233593,-0.016849551,-0.03799583,0.02926718,-0.07251192,-0.060703766,-0.035586704,-0.021028114,-0.09679484,-0.1322828,0.10387042,-0.08075424,-0.08113744,0.036094915,-0.04103435,-0.10021294,-0.040733654,-0.017154934,-0.060076512,0.055960603,0.053102616,-0.03779796,0.0031493404,-0.1119879,0.0419256,-0.0021014481,-0.056476533,-0.052228753,0.053934768,-0.02222766,-0.06531284,0.00043241182,-0.044645783,0.09994051,0.03143382,-0.0077942857,0.080065,0.03910495,0.0037153983,0.021893736,0.045588415,-0.04872276,-0.05507178,-0.056100506,0.020134227,-0.0649079,0.017959077,-0.013522732,0.022637505,-0.0917458,-0.064943165,0.0040380186,0.042660065,-0.003612503,-0.07423132,-0.02121925,-0.07231147,0.011560375,0.0550096,0.03531049,-0.03018895,0.011601613,0.064278975,0.071679525,-0.101168126,0.0072637214,-0.035530612,0.073608935,0.12784795,-0.047252316,-0.06784934,0.017961668,0.014772469,0.028727408,-0.045291863,0.031091386,-0.05941457,-0.07378767,0.07718751,-0.016332177,-0.066793546,-0.03155494,0.011071363,-0.023583883,0.07956138,0.040965136,-0.039931826,0.018491639,0.005481688,-0.0056760325,-0.046667714,-0.048060987,-0.009597313,-4.5054534e-08,0.01633759,0.0835082,-0.079541124,0.02123555,0.022738472,0.03566027,0.021248197,0.000896458,0.05666994,0.102785684,0.027644811,0.0023360902,-0.0066488413,0.033038545,0.022630129,0.013975291,0.047616016,0.037488997,-0.02949395,-0.0027554587,0.0584979,-0.066487,-0.03270012,-0.017083235,0.0013225565,0.04084712,-0.056614123,-0.030007618,-0.0077111474,0.02357624,0.017313005,-0.017200705,-0.03907209,-0.108527966,-0.06638549,0.039739296,-0.057705283,-0.03420182,0.01857065,-0.04127368,0.08055562,-0.006657466,0.011522044,-0.029086107,-0.069971,-0.06658499,-0.012279771,0.0064087617,-0.030848784,0.023203975,-0.028418954,-0.028694553,0.08383234,-0.0013861574,0.03837203,-0.011175136,0.09379659,0.015576138,0.037377063,0.053646237,0.012538963,0.02772509,-0.032922328,-0.03896974} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:01:38.071861+00 2026-01-25 01:27:51.740601+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 546 google ChdDSUhNMG9nS0VJQ0FnSURub2NhSC1nRRAB 1 t 549 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en el aeropuerto pero por lo demás perfecto, 100% recomendable y volveré a alquilar vehiculos con ellos muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en el aeropuerto pero por lo demás perfecto, 100% recomendable y volveré a alquilar vehiculos con ellos 5 2025-01-25 01:27:48.342508+00 es v5.1 A1.01 {O1.01,J1.02} V+ I2 CR-N {} {"A1.01": "Muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en e"} {0.035444602,0.027156474,-0.020154899,-0.099544466,0.0020007414,-0.023141004,0.02798142,-0.013422182,-0.04268686,0.0008591534,0.09349636,0.0035477176,-0.03955623,-0.04705085,0.06658061,0.07790121,0.04877497,-0.03176571,-0.017111935,0.009626004,0.05806309,-0.021717345,-0.038176574,0.06958907,-0.099462524,0.01277451,-0.061047934,0.06689672,-0.045353662,-0.090302244,-0.059190646,0.075688295,-0.013174406,-0.006045673,-0.052204616,-0.09539592,0.050976496,-0.046173904,-0.028460339,0.07420986,-0.14000022,-0.007376704,0.011035928,0.03683897,-0.056498602,-0.044245224,0.01722021,0.010723279,0.08936743,-0.023314273,0.0004130101,-0.045216277,0.04194245,-0.039247096,-0.028580477,0.033819582,-0.071784034,0.0038738616,0.082669586,-0.043262046,0.05483234,0.066730745,-0.033178102,0.035325427,0.00030033544,-0.118639745,0.011762216,0.037045244,-0.037559148,0.00626406,0.083104685,-0.068486586,-0.00018086379,-0.025950087,-0.03250658,0.08289913,0.018752795,-0.018118486,-0.029946908,-0.012803747,0.041585926,-0.0014095072,-0.03873413,-0.06573627,0.02874916,-0.026887638,-0.062315498,-0.025985558,-0.0061371806,-0.010878484,-0.06299262,0.05667823,0.022615876,-0.019537093,0.057896156,0.0798126,0.052818175,-0.043552704,-0.005308298,0.0033527433,0.060789637,0.085929506,0.08396195,0.030642545,-0.06892665,0.04956162,0.057811644,-0.02618443,0.04519576,-0.010294598,-0.07739936,-0.0031566997,0.02984755,-0.054854363,-0.09557044,-0.053418066,-0.015992997,-0.06189627,-0.091489226,-0.12634005,-0.0081310915,-0.058614984,-0.03167512,-0.010067674,0.01490076,-0.06543539,0.06520224,1.0689639e-32,-0.021288378,0.025723735,-0.031229347,0.058304884,-0.023729151,0.010512361,-0.037941292,0.0051447125,0.022636797,-0.055813815,-0.055975914,0.0012810598,-0.0051086214,0.004523233,0.05086,-0.076191835,0.023464592,-0.063900374,-0.0071809352,0.018920884,-0.050205182,0.019826688,-0.0154455155,-0.0038971258,0.030197239,0.03502907,0.01901527,-0.08645622,-0.08487298,0.06121854,-0.0120053915,0.11069495,-0.0065672267,0.0012413323,-0.10428049,-0.011118693,-0.0126792425,0.055377293,-0.0068449783,-0.01821607,0.024826635,-0.020401182,-0.11635604,0.03903492,-0.025337921,-0.006152643,0.016744997,0.104840875,0.029015506,0.0010231253,-0.11576537,0.0012775223,-0.13672616,-0.028633712,0.017169401,0.01267892,0.02256767,-0.013826214,-0.030090813,-0.076121695,-0.011580898,0.060220137,0.014444595,-0.049859814,0.008427122,0.03107247,0.022917975,0.03762235,0.074476056,0.1011273,-0.02834313,-0.053924486,-0.07361006,0.036197025,0.1017538,-0.012415763,0.021130838,-0.009537717,0.029046254,0.02980027,-0.014723002,0.043409247,-0.00797689,0.01278854,0.039764624,0.0066420166,0.043608777,0.08431587,-0.006096409,0.10647619,-0.034511838,0.06868278,0.06868071,-0.027179401,0.036786016,-1.1744494e-32,0.018112466,0.015395701,-0.013855111,0.033948153,-0.029394485,0.08373669,0.03255501,-0.038858026,-0.022300363,-0.011414957,-0.13604298,-0.08205808,0.042272322,-0.0057055987,0.0399157,0.0751061,-0.02824511,-0.053314522,-0.05433925,0.010995935,0.11417546,-0.011175481,0.053120684,0.009452114,0.00012855556,-0.054687582,-0.06830357,0.025626998,-0.06098022,0.02940283,0.0017485874,0.00852056,0.061646443,0.103988454,-0.056942828,0.018351657,0.024298662,0.0852756,-0.0018297674,-0.0132209025,-0.056113333,-0.00061633624,-0.0071775564,-0.0031655994,0.021199364,-0.01198795,0.0038938415,-0.13905022,0.028225835,-0.063908085,0.076832116,-0.090736255,-0.045139343,0.03225295,0.0849005,0.055219807,0.01789326,-0.043580085,-0.05897506,-0.07590566,0.015988594,0.019579919,-0.057017207,-0.034928747,0.05188907,-0.048173103,0.017116608,0.021040935,0.061471287,-0.00947986,0.038860846,0.041376147,-0.006913512,0.01269354,-0.0024744393,-0.06322773,-0.008800717,0.04281129,-0.022299817,0.05333424,-0.049051866,0.073889896,0.08002922,-0.041816253,-0.0037913935,0.029770669,-0.03922268,-0.012762648,0.020271784,-0.0005046443,0.07643489,0.03105632,-0.057968,-0.06704327,-0.004259255,-4.603871e-08,0.010799786,-0.03355138,0.018352326,0.033210058,-0.03318761,0.012685894,-0.038846243,0.029619643,-0.010268137,0.043730635,0.06119946,-0.04194578,0.03829205,0.06197491,-0.025269838,-0.03467523,0.04221767,0.089541614,-0.012571599,-0.012531552,0.010766653,0.03485612,-0.0066613927,0.08808095,0.00010576642,0.040920477,-0.059334,-0.07120301,0.02469718,0.01865135,-0.07899913,-0.023446402,-0.008630722,-0.11086089,-0.030820685,-0.053483862,-0.018558705,0.041557617,-0.0460026,-0.08199778,0.05084455,-0.0077416296,-0.10801943,0.013859935,0.0039691343,-0.14545624,-0.055025544,-0.053461898,-0.05290597,0.06217575,0.0104030995,-0.03304875,0.05990503,0.08937199,0.06642086,-0.033748012,-0.08940996,0.002036789,-0.04283975,-0.034312416,0.049634192,0.10387427,-0.017297449,-0.031569403} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:54.300794+00 2026-01-25 01:27:51.817965+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1436 google ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE 1 t 1439 Go Karts Mar Menor unknown Incredible fun. For around €20 you can get in 8 long laps on an excellent track. 🤩 incredible fun. for around €20 you can get in 8 long laps on an excellent track. 🤩 5 2026-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.01": "For around €20 you can get in 8 long laps on an excellent track. 🤩", "V4.03": "Incredible fun."} {0.022232128,0.05936092,0.023822231,0.016345268,-0.0711948,0.03556216,-0.069175124,-0.018277321,-0.012579733,-0.040945165,-0.018670024,-0.02290061,-0.0028692756,0.026667103,-0.033073023,-0.039426822,0.03918243,-0.02744145,-0.0007466629,-0.022250904,-0.009826446,-0.05767285,0.031070592,0.069776535,-0.066268474,0.025572767,-0.040472828,-0.047110166,-0.0006078955,-0.01491884,-0.029921122,0.0750948,-0.019626746,-0.018375188,0.027125254,-0.061312325,0.038044054,-0.083623864,-0.073825054,0.023441128,-0.015455827,-0.03777779,0.04578255,-0.00887015,0.063945755,0.09271614,0.038476296,0.035591204,0.06504794,0.047238298,0.05883596,0.024412576,0.0274674,-0.065592535,-0.05584102,0.023749836,-0.023126282,-0.06790917,-0.039859444,-0.045502257,0.016981298,-0.025303338,-0.047944833,0.010945896,-0.073187076,-0.09438851,-0.09707866,0.026691645,-0.001941231,0.08772903,-0.024430308,-0.007143182,0.010220088,-0.022108996,0.02853612,0.05351162,0.0051029944,-0.048035245,-0.056051623,-0.0029853557,0.059628733,-0.06283202,0.050886016,-0.059972625,0.06433049,-0.12622443,0.09906911,0.019442277,0.076055855,-0.0240039,-0.009075347,0.0128305545,-0.042583756,-0.02947659,-0.06437544,0.030442426,-0.0035600066,0.08523321,-0.009883194,0.023064455,0.061358836,0.00932245,0.03837616,0.061024696,-0.07875524,0.03604139,0.06017494,0.12027304,0.05325523,-0.06529931,0.01744712,-0.010921834,0.06651985,-0.04589133,-0.03207335,0.05522099,-0.056001585,0.058435317,0.05128574,0.021212885,0.0029422534,-0.018376533,-0.007407272,0.061945617,-0.013986896,-0.019565437,0.09460017,-2.7510315e-33,-0.082829125,0.0032866145,-0.028642513,-0.021160997,-0.0060328143,0.0019721638,-0.05822072,-0.0556676,-0.10023092,0.03664669,0.025488915,-0.0032158461,-0.016338319,-0.03584441,0.084039584,-0.06438408,-0.05050395,-0.008071591,-0.060322393,0.055752486,-0.012913923,-0.07385676,0.02534294,0.00357294,0.04697658,0.08955934,0.030538214,-0.106835455,0.06610046,0.033118315,-0.09382788,-0.01003347,-0.10921891,-0.0077310205,-0.025866797,0.026547145,0.008130556,-0.036046386,0.02636289,0.058899064,0.05076516,-0.014302679,-0.00734709,-0.01956694,-0.06490413,0.028155934,0.0025339958,0.07604356,0.042175196,-0.01906936,-0.0685997,-0.03594129,-0.085452214,-0.02368375,0.058688954,-0.004651624,0.048458,-0.012490923,-0.035525415,0.018421914,0.012319318,0.02240914,-0.030909607,-0.06965239,-0.113126196,0.10015121,0.01785919,-0.009070219,0.020595158,-0.038573787,-0.051992565,0.020538779,0.053769078,-0.049318984,0.07925546,-0.013189374,-0.021134809,-0.055747278,0.018474078,0.07209516,-0.03327142,0.030369796,0.00063208357,0.01401935,0.07433497,0.026330981,-0.013460624,-0.081438504,0.018398313,-0.035597883,-0.029616099,-0.080057345,0.037035823,0.041208062,0.01602746,6.692311e-34,0.08805566,0.012029216,0.07300383,0.007674668,0.051108748,0.03641711,-0.037248153,0.073722415,-0.017925033,0.03222819,-0.079675704,0.047059324,0.0045991093,0.0110953,-0.09848937,-0.064753,0.03678557,0.024405899,0.05151767,-0.08505894,0.027236685,0.004501991,0.05555532,-0.007315628,-0.04161643,0.04547949,0.014753598,0.017806944,0.042241473,0.0019302403,-0.0802513,0.01953402,-0.021246234,-0.07501491,-0.03796327,0.08615058,0.030544763,0.047062553,-0.055221584,0.035782155,-0.040433537,-0.03656089,0.01410709,0.015665285,0.0244885,-0.026501201,0.025591819,0.06445984,-0.080330156,0.02315795,0.071759075,-0.040580068,-0.053465076,-0.024159633,-0.07464886,-0.068208076,0.05563534,-0.04411394,-0.0003777818,-0.040883917,-0.042221956,0.10514852,-0.09661294,0.08837637,0.032616105,-0.012815131,-0.0880502,-0.04026821,-0.033268303,0.03140054,-0.13246189,-0.0033962966,-0.049271446,0.04637968,-0.009220857,-0.03831228,0.04152925,0.029676858,0.10554302,0.062334068,-0.03687126,-0.017278023,0.07771729,-0.038086772,0.056855664,-0.0047968766,-0.030067533,-0.016948633,0.025001088,0.09136475,0.07427999,0.10043732,-0.000990487,0.027066316,-0.0076953843,-2.1623553e-08,-0.0049913935,0.06982333,-0.019815955,0.018763613,-0.010977963,-0.08362807,-0.011908945,0.012217421,-0.032150667,0.038109478,0.06323166,-0.04204146,0.046170533,0.036274035,-0.05361716,-0.0015548923,0.05463282,0.16552754,-0.007735853,0.08111608,0.04032778,0.055193968,-0.05036938,0.00977796,-0.026522778,-0.06699438,0.017329263,0.08159517,0.015356398,-0.16330747,-0.006273463,0.03645221,0.0054736347,0.08432848,0.01044211,-0.062794074,-0.063141085,0.0568662,0.0021969823,-0.008716414,-0.084612906,-0.09508271,-0.070585735,-0.033765305,0.00048411853,0.0029126632,-0.0611352,-0.06774477,-0.020111755,0.009768237,-0.019971821,0.008332331,-0.0022651872,0.06812244,0.083830215,0.0697922,-0.0021236648,-0.053988546,-0.0221062,0.055715427,0.00037622516,-0.08061024,-0.06264028,0.03628153} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.034767+00 2026-01-30 02:01:09.354713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1187 google Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB 1 t 1190 Soho Club unknown Was hard to see the performers and the drinks and tickets were expensive.\nThe bathroom was also just wet like someone had just covered every surface in water? Seems strange, I've seen swimming pool bathrooms less wet.\n\nBut on the other hand the drinks were STRONG and what I could see of the performance was amazing. And the bathrooms were clean... Just wet\n\nThe staff was very nice and they were well equipped for anything. Changed my phone while watching the performance, had a good time. was hard to see the performers and the drinks and tickets were expensive. the bathroom was also just wet like someone had just covered every surface in water? seems strange, i've seen swimming pool bathrooms less wet. but on the other hand the drinks were strong and what i could see of the performance was amazing. and the bathrooms were clean... just wet the staff was very nice and they were well equipped for anything. changed my phone while watching the performance, had a good time. 4 2025-07-03 18:34:31.336452+00 en v5.1 V1.01 {} V- I2 CR-N {} {"E1.01": "The bathroom was also just wet like someone had just covered every surface in water? Seems strange, ", "O1.01": "But on the other hand the drinks were STRONG and what I could see of the performance was amazing. An", "P1.01": "The staff was very nice and they were well equipped for anything. Changed my phone while watching th", "V1.01": "Was hard to see the performers and the drinks and tickets were expensive."} {0.059008043,0.012479276,0.07725068,-0.033908546,-0.034705598,0.025648125,0.022640113,-0.04855112,-0.024387514,-0.065960795,-0.059067965,0.011586572,0.0137388455,0.055258892,-0.03288459,-0.11555193,0.13605498,-0.057334688,0.0035747706,0.015680892,0.024252154,-0.030824866,-0.02702208,0.03752743,0.022022594,0.07935158,-0.011029015,0.02327551,0.04545161,-0.022200271,-0.041241344,0.02567694,0.027503954,-0.087206654,0.025107017,-0.0075359363,0.053041432,-0.075380795,-0.06487698,0.007800757,0.017817216,-0.01127943,0.026512826,0.037737466,0.0704098,-0.04827347,0.014600919,-0.05415049,-0.0068863495,0.027595883,0.038546797,0.023683587,0.12140778,-0.13576502,-0.058704447,-0.042611178,-0.012035047,-0.06210298,0.013456336,-0.0099583585,-0.036103863,-0.016718408,0.002171291,0.030408649,-0.0036888444,-0.07252136,-0.08173808,0.0674726,0.10903419,-0.02954686,-0.028107107,0.0320721,0.08612333,-0.057872128,-0.037821636,0.0037522619,-0.04218112,-0.05892778,-0.09034726,0.020684076,0.0786072,-0.18774392,0.031570185,0.04345254,0.044555426,-0.007011245,0.023206452,-0.08276458,-0.057637714,-0.006615182,0.015627453,0.049322814,-0.049751334,-0.0701665,0.020555424,0.045121297,-0.08212288,-0.02798223,0.12320441,0.038958546,-0.010681941,0.09189485,0.0527024,-0.031494036,0.056584574,-0.09277985,0.068207614,0.077500924,0.02322155,-0.018369494,-0.039509725,0.0034019977,0.01971312,0.05004886,-0.080520794,0.034189478,-0.063210145,-0.008219859,0.0017522181,0.02107057,0.036170308,0.005450653,0.014930704,0.028738217,-0.032695256,-0.0033371032,0.02790891,-3.8857743e-34,-0.014737573,-0.07621601,-0.019183224,-0.071000434,0.05988771,0.006071776,-0.015472965,-0.07310379,0.032032132,-0.029539393,0.039132893,-0.00051786256,-0.025201084,-0.065310575,0.049048528,-0.0010002869,-0.026033018,0.009718573,-0.0479321,0.0073909936,-0.031647373,0.08962482,-0.052337054,0.016283298,-0.04169161,0.074037746,-0.024265978,0.05395982,0.06365864,0.020991387,-0.055129573,-0.008991708,0.031590603,0.029143909,0.051171687,0.0525914,0.027076662,-0.05896062,0.054975543,0.013284494,-0.08921418,-0.018342556,0.012088977,-0.026552398,-0.0776422,0.062261306,-0.028165165,0.009703015,0.0338768,0.031424202,-0.027079038,0.06514026,-0.04174702,0.047294267,-0.0003506916,-0.03806793,0.052775864,-0.0069107316,-0.023003357,-0.006097805,-0.05203293,0.14655587,-0.033869736,-0.080748856,-0.10471808,0.033387206,0.06749902,-0.016249847,0.054926854,-0.04956037,-0.0900696,0.033949576,0.010634471,-0.041536167,0.045224085,-0.027038874,-0.030054973,-0.049073383,0.009323646,0.060081627,0.03438567,0.04075241,0.02361562,0.058468353,0.019998686,0.036437944,0.03819571,0.010018768,-0.0099108545,0.0023633412,0.031177815,0.0109281745,0.017942326,-0.049619935,0.024852393,-1.739284e-33,0.042308014,0.015555219,0.01725132,0.033737466,0.06495075,0.00025878916,-0.022675168,-0.033296756,0.028716218,0.041869517,-0.029397141,0.044629578,-0.061327595,-0.072353184,-0.049270824,0.0097611835,0.038204845,-0.005495321,0.069116555,-0.0069836234,0.04759504,0.06902539,0.08716645,-0.041590076,-0.09591606,0.05792804,0.033013653,-0.016323647,-0.025186246,-0.021230023,0.01623993,0.056344442,-0.031127717,-0.020395977,0.035619218,0.0551084,0.013434472,-0.01611135,-0.084869556,-0.057602864,-0.0010779565,-0.0994824,0.016698873,0.06218495,0.07715019,0.06178509,-0.07595025,-0.074912876,0.0038127152,-0.05228713,-0.05461687,0.0008506218,-0.084687576,-0.018400861,-0.013507638,-0.10555671,0.040022522,-0.057084974,-0.020278893,0.065113425,-0.0360171,0.047270056,-0.07098685,0.0018352726,-0.024647258,0.037705395,0.014134126,0.0023941272,-0.023205288,0.015274682,-0.10649524,-0.08161703,-0.00519261,0.066490576,0.009293837,-0.020450467,-0.10503523,0.109005995,-0.019222127,0.004072753,-0.014251494,0.11797549,-0.068190806,-0.010886067,0.054295126,0.0856917,-0.010440283,-0.08891863,-0.101259604,0.13238366,0.08603778,-0.040745884,-9.858674e-05,-0.018332954,0.03949689,-3.8243172e-08,-0.008073291,0.060359288,0.03479911,-0.0030302696,-0.023730943,-0.091387935,-0.029162481,0.10474517,0.023809722,0.058003403,0.002962754,-0.06057168,0.006313005,0.016203372,0.015564934,0.057080172,-0.003977535,-0.015631823,-0.055216532,0.055403024,0.017029949,0.013381109,0.00033587537,0.00082643004,0.0038863737,0.028205661,-0.06594406,-0.010068439,-0.04912537,-0.049253054,0.03723157,-0.06379139,-0.061041445,0.071551464,0.027978342,-0.08330516,-0.03567789,-0.062229022,-0.0014638302,0.02059206,-0.09863765,-0.066106126,-0.010601107,0.0513654,0.10398418,0.031017518,-0.004982919,0.0072986865,-0.0053244564,-0.008702287,-0.049617846,-0.029568085,-0.08813682,0.033875432,0.06126862,0.000687903,0.012527586,-0.0072517116,-0.030067459,0.0071215252,0.019694373,-0.011846928,-0.068366356,0.06812473} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:38:07.340136+00 2026-01-29 18:36:00.438748+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 527 google ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB 1 t 530 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Trato inmejorable de Carlos, Antonio y Dany. Tres personas muy amables que se portaron conmigo en todo momento de 10. Cabe destacar que Dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas técnicos con el programa, hizo todo lo posible para que se llevara a cabo dicha ampliación, muy preocupado por dar un buen servicio.\nSe nota que dan todo por su empresa y los clientes, a día de hoy esto se agradece. trato inmejorable de carlos, antonio y dany. tres personas muy amables que se portaron conmigo en todo momento de 10. cabe destacar que dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas técnicos con el programa, hizo todo lo posible para que se llevara a cabo dicha ampliación, muy preocupado por dar un buen servicio. se nota que dan todo por su empresa y los clientes, a día de hoy esto se agradece. 5 2025-01-25 01:27:48.342416+00 es v5.1 A1.01 {} V+ I3 CR-N {Dany} {"A1.01": "Trato inmejorable de Carlos, Antonio y Dany. Tres personas muy amables que se portaron conmigo en to", "A1.02": "Cabe destacar que Dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas "} {-0.065277115,0.087869875,0.0037033928,-0.093999304,-0.07598276,-0.0043312754,0.087341346,0.09030028,-0.0399499,-0.014827926,0.0067241048,0.05944469,-0.007781805,0.050914176,0.06601471,0.023039175,-0.013251385,0.035755318,-0.014671522,0.01264992,0.07318433,-0.04422681,-0.1025679,0.023308223,-0.041619223,-0.06925099,0.046342794,0.019930039,-0.09023719,-0.030039806,0.02777518,0.068386145,0.061436854,-0.00025750173,-0.015068369,-0.018711284,0.07334981,-0.06452863,-0.047800694,0.06547509,-0.06988542,0.0024580539,-0.022178141,-0.03836173,0.0011570271,-0.119128495,0.02507034,0.030077921,0.07946191,-0.024994237,-0.089384675,-0.0017301769,0.008774518,0.0075511667,1.6046302e-05,-0.025320955,0.030671202,0.02787159,0.029637707,0.038665313,0.00020460783,0.040028255,-0.053749062,0.039376907,0.016923442,-0.016724564,-0.010785758,-0.040168505,-0.0450934,-0.0064806333,0.04732812,-0.09422391,0.029048678,-0.004441057,-0.02236714,0.043235317,0.014799403,0.044259142,0.022995094,-0.09880911,-0.022428712,0.02588717,-0.037476014,-0.06995545,-0.0678458,0.033217248,0.026595196,0.067842804,0.012253884,0.015683066,0.02425072,0.076253556,-0.019196922,-0.014511933,-0.05246349,-0.012557149,0.032482836,-0.01961229,-0.104323395,0.06475457,0.080972984,0.09452806,0.07031333,0.013854444,-0.047782186,0.03840723,0.06849953,-0.024059307,-0.09353358,0.016143626,-0.041296467,-0.05364769,-0.029186126,-0.030325886,-0.057797004,-0.016097028,-0.05935882,0.028868606,-0.0043040696,-0.09515948,0.082453184,0.0031263314,0.0030606422,0.0016241212,-6.352533e-05,0.027171105,0.112338595,1.2441936e-32,-0.051382817,-0.026938587,-0.019317694,0.056576874,0.021790734,-0.021877164,-0.03196437,0.07984692,-0.06452687,-0.0771973,-0.06279359,0.036724024,0.030263748,0.014022229,-0.020742454,-0.028879827,-0.0068925414,-0.01837061,0.057900153,0.013150519,-0.011412092,-0.081887655,0.013670324,0.034625035,0.061684,0.033314236,-0.06487106,0.06050204,-0.009156111,0.043713428,-0.0071942834,0.029148003,0.037535664,-0.00039639117,-0.052143093,0.00865574,0.060506843,0.009978148,-0.0032912518,-0.04447411,-0.031242669,0.019409236,0.006536721,0.071639374,-0.00513456,-0.006152148,0.10877942,0.0054106982,0.03893235,0.016938446,-0.05780754,-0.04426608,-0.04756465,-0.010044627,-0.013287382,-0.030650223,-0.0528136,0.008383283,0.03636226,-0.07853395,0.048912454,-0.010102654,0.036820296,0.027552735,-0.027802335,-0.051930714,0.041622974,0.06599778,0.14501391,0.06876101,-0.061475247,-0.0015340239,-0.023487715,0.008114026,-0.02197348,0.009997975,0.069296494,-0.076014064,0.001475579,0.048208382,0.003220762,-0.038661733,-0.0038172395,0.028196251,0.11932394,0.095088884,0.0084396,0.043507162,-0.06252692,0.121791825,-0.002663854,0.116618775,0.07804603,-0.016006446,0.13497671,-1.3729731e-32,0.0006761959,0.012742166,-0.050046407,-0.015275692,-0.00034386592,-0.04455847,0.00315659,0.0020851265,-0.009479502,-0.08301472,-0.05700944,-0.14368431,0.08779126,-0.06025251,-0.07852827,0.040867757,-0.06305571,-0.062086597,-0.03863966,-0.037889708,0.011814402,0.117637806,0.010793555,-0.06520746,0.019250516,-0.066247284,-0.06080019,0.008477052,-0.06582467,-0.0018722481,0.05887458,-0.034618285,-0.06187032,0.027437137,-0.04786693,0.02602854,0.027399227,0.0164299,0.03331658,0.06314444,0.027946638,0.0058305105,-0.028339567,-0.005972193,0.0076855076,0.03297869,0.0017110319,-0.13007142,-0.008310423,-0.028213708,0.03912806,-0.036661316,-0.04295159,-0.035893783,0.03566963,0.011101202,0.060019076,-0.051935695,-0.05709956,-0.0015281535,0.004908162,-0.03549067,0.036739152,-0.060795963,0.061875563,-0.025526248,-0.021117263,0.10106254,0.026166221,0.00022715461,0.10942795,-0.03761758,-0.12186777,0.031355176,-0.0850382,-0.038952004,-0.11642422,0.023405053,-0.047491975,0.05896009,-0.025757918,0.020458587,-0.045819737,-0.00904931,-0.072946124,-0.023458999,0.005691247,0.0064147864,0.017719086,0.043071996,0.010751023,0.0173053,-0.05063933,-0.04518166,-0.086596645,-5.4250933e-08,0.04857679,-0.10258075,-0.010497171,-0.041956786,0.015623264,-0.056677762,-0.01773778,0.061976988,0.030304404,0.07690056,0.04442385,-0.012664199,-0.11059653,0.04773511,0.018342795,0.013480052,0.076664805,0.05600786,-0.050404493,-0.053240098,0.07534229,-0.0094987,-0.02173546,0.010498468,0.002001965,-0.025726387,-0.0459523,0.05000854,-0.06848506,-0.023961373,-0.026406307,-0.0031586427,-0.05468874,-0.078211404,-0.031714607,-0.057615243,0.01120101,-0.0074560246,-0.020052725,-0.059074838,0.08245893,0.004789728,-0.087656066,0.025337404,-0.03082089,-0.08319613,-0.04388906,-0.0071220375,-0.009779437,0.011126503,-0.081342675,0.030045895,0.05445676,-0.0040154913,0.047561266,-0.033069298,0.0023561546,0.019632345,-0.035487063,0.04722009,-0.027930323,0.10776021,0.016846303,-0.112314716} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:01:26.980174+00 2026-01-25 01:27:51.743715+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 529 google ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB 1 t 532 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte el dinero , por no decir el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran ) y mal , a una velocidad excesiva. No volvería a usar ni recomendaria a nadie . experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte el dinero , por no decir el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran ) y mal , a una velocidad excesiva. no volvería a usar ni recomendaria a nadie . 1 2025-01-25 01:27:48.342434+00 es v5.1 P1.02 {} V- I2 CR-N {} {"J2.02": "el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran", "P1.02": "Experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte e", "R1.02": "No volvería a usar ni recomendaria a nadie"} {0.041920807,0.032548077,-0.013361998,-0.004273575,-0.07734576,-0.043454304,0.09716373,0.013806009,-0.03038444,-0.001695714,0.13865638,-0.015839593,0.008811248,0.028799828,-0.01072947,-0.013502091,0.041499138,-0.017071923,-0.026216017,0.03928145,0.05003791,-0.03501144,-0.10346218,0.043504093,-0.066059895,-0.0038000527,-0.033920888,0.008532005,-0.025177468,-0.10527246,-0.0368149,0.0787309,0.0006157773,-0.020404635,-0.0056341835,-0.007720036,0.057063345,0.012379836,-0.04770104,0.02640517,-0.092443526,-0.027160628,-0.07891237,-0.028581403,-0.050235517,-0.07294038,0.03751799,0.049194243,0.08324029,-0.0040483754,-0.027928565,0.020850671,-0.021394463,-0.022978775,0.03753927,-0.014210339,-0.007444967,-0.048013132,0.014090517,0.0010043626,0.0327264,0.023808159,-0.038988795,0.0058609764,0.08721992,-0.028159859,-0.063804686,-0.0030476374,-0.049062755,0.036254406,0.037779346,-0.11801297,0.0077233952,0.032488592,-0.09432255,0.006813663,0.062587865,0.027341796,0.02388925,-0.005961123,0.008651713,-0.011454296,-0.08920498,-0.013774779,0.00016525642,6.527354e-05,-0.046537157,-0.010198427,0.054842573,0.060533512,-0.064218394,0.08425111,-0.08911123,-0.11753716,0.020384183,-0.030282017,-0.05718103,-0.05928011,-0.06495279,0.04810708,0.07527489,0.08442322,0.040211864,0.04726698,-0.09882366,-0.024633745,0.06366969,-0.050861347,0.021400195,0.047430873,-0.073518075,-0.04301411,0.0013109094,-0.08140895,-0.12990105,0.030778756,-0.0285785,-0.048064217,-0.090139605,-0.0578454,0.009830457,-0.01020086,0.023043022,-0.007932423,0.02940778,-0.1040453,0.05956903,1.4421483e-32,-0.07787845,-0.019395754,0.023406351,0.08289713,0.09157575,0.0704739,-0.0757799,0.012421375,0.048392165,-0.038008064,-0.0810005,0.06540886,0.00589384,0.03815361,0.10223587,0.035953764,0.00042739787,-0.036173437,-0.026593445,-0.03236864,-0.010615724,-0.03646955,-0.026472764,-0.034683183,-0.041379638,-0.012367821,-0.06717816,-0.051240083,-0.010685735,0.045078117,0.008610361,0.04535152,-0.010005084,-0.012483942,-0.024298433,0.019470759,-0.043208417,0.050477438,0.0007303333,-0.055344466,-0.048334017,0.034288235,-0.07396453,0.059957627,-0.017625405,0.0012344536,0.1316804,-0.061498705,0.011223737,0.0044197,-0.0059361677,-0.044037227,-0.04923174,-0.05667138,-0.0087882485,0.040749975,0.00024085652,0.066584595,-0.019903492,-0.0782743,-0.0044815894,0.024016345,8.896404e-05,-0.11859462,0.006491492,-0.018425733,0.03128696,0.010417657,0.10688391,0.007645792,-0.046390675,0.046169408,-0.011413771,0.042094387,0.060562085,0.0017510711,-0.06780928,-0.030987594,0.010037306,-0.01236093,-0.037288286,-0.05552498,0.058207422,-0.006392831,0.08940518,0.087481536,0.04297175,0.06750897,0.0124713555,0.080246255,-0.033726905,0.095677726,-0.019476913,-0.022854738,0.09948034,-1.5298692e-32,0.029142609,0.009420953,-0.05650243,-0.019680578,0.0075033684,0.027286977,-0.018637208,-0.047061354,-0.008216134,-0.089117825,-0.08507229,-0.032827053,0.13296185,0.03830466,0.023840388,0.09531954,0.026214449,-0.0591133,-0.073400736,-0.08451694,0.012836335,0.05516836,-0.022425648,-0.032570254,-0.063873895,-0.040982816,0.0154493,0.027584925,-0.07106434,-0.042857386,0.024231454,0.036846194,0.024402795,0.045084137,-0.026850978,0.080571726,0.07877228,0.027860977,-0.036417186,0.003495279,-0.0016870983,0.0916052,0.08082083,-0.04066898,-0.014942403,-0.019590046,-0.030755619,-0.13684072,0.0035726125,-0.045425203,0.12543184,-0.03402731,-0.08903722,0.029237047,0.0916163,0.036945354,0.04879989,-0.05550295,-0.06320294,-0.01227284,0.025144888,-0.0028777032,-0.04093519,-0.033499405,-0.00052635826,-0.04118676,0.03962228,0.024163427,0.041364595,-0.018597338,0.06372535,-0.019335931,-0.08937932,0.017791782,-0.05611119,0.02153435,0.075549535,0.034528505,-0.015220867,-0.040206384,-0.047297515,0.013167972,0.030953653,-0.043243024,-0.014869342,-0.033611067,-0.039721638,-0.0472512,0.006612874,0.06560523,-0.032160006,0.031742282,-0.030532561,-0.06806032,0.0012519016,-5.9229926e-08,-0.032275096,-0.069461286,0.02788529,0.030673144,-0.011379807,0.022325508,0.015715389,0.059861045,-0.01081911,-0.0060634194,0.07396873,0.009833747,-0.03684053,0.047952738,0.031953994,0.0540014,0.09055331,0.07290644,-0.048501894,-0.059547186,0.04495221,0.017557478,-0.062225696,0.03518223,0.025217233,-0.015562344,0.01135279,-0.061026562,0.034704573,-0.08613179,-0.048941925,0.013824566,0.028426714,-0.10660229,-0.042037904,0.0062758494,-0.025284927,0.036828883,-0.014427303,-0.015323781,0.076475486,0.0425622,-0.04761285,-0.01173193,-0.07535087,-0.011686629,-0.019150263,-0.027891016,-0.0588514,0.039163113,0.041838042,0.0084295375,0.12682094,0.033704612,-0.0013073591,-0.04272561,-0.05188113,0.038181134,-0.00018756006,0.0141073335,0.08309691,0.12507205,-0.024225507,-0.04263787} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:01:06.656838+00 2026-01-25 01:27:51.754304+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 531 google Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB 1 t 534 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Annoncer sur Booking 43 €.pour 10 jours\nPour payer finalement 283 € annoncer sur booking 43 €.pour 10 jours pour payer finalement 283 € 1 2025-11-26 01:27:48.342449+00 fr v5.1 P1.02 {} V- I2 CR-N {} {"P1.02": "Annoncer sur Booking 43 €.pour 10 jours Pour payer finalement 283 €"} {-0.041038077,0.0576303,0.0003105196,-0.013056646,-0.021484574,0.059405237,0.033607624,0.122050874,0.084731676,-0.006554853,-0.054973807,-0.13847974,-0.036134984,-0.048949145,-0.05399841,-0.15249038,-0.08880101,0.06986738,0.06807398,0.006306393,0.028685324,0.030430207,-0.022758964,0.0094764875,-0.0012231108,-0.039089806,-0.0010026295,-0.030551862,-0.013254964,-0.061603934,0.062061556,0.015927419,0.0037193184,-0.004412297,0.08031601,-0.06642211,-0.0015918777,-0.17189437,-0.09030332,0.033593416,-0.06271598,-0.015878975,-0.09305997,-0.05729011,0.021410782,0.052828845,0.01965872,0.061130248,-0.11695863,0.09663749,-0.01151295,-0.03644735,0.009153995,-0.016054444,-0.018104432,0.010257882,0.036182098,0.03808776,0.008672338,-0.014611943,0.032100677,0.047285896,-0.07605263,-0.021310262,-0.07572001,-0.00337271,0.022391038,-0.07523345,-0.048604943,0.030121407,0.054429755,-0.062438402,0.018964984,-0.06500678,0.0185039,0.03438445,-0.042141385,-0.037790447,-0.017957047,-0.08213169,0.040816594,-0.053850666,-0.068180256,-0.011665401,0.06956271,-0.020358577,0.07143944,0.026828082,0.093109466,0.011133067,-0.053091586,0.011865435,-0.10964702,-0.029964937,-0.050102923,0.014846136,0.042898305,0.020182867,0.002841287,0.06188854,-0.008332959,0.03221535,0.01392439,0.029709024,-0.03830698,0.04403695,0.07839702,-0.0036485295,0.039248288,-0.053010903,-0.032735262,-0.02373366,7.66488e-05,-0.1286246,0.04038059,0.06851517,-0.07535675,-0.067107566,0.061269235,-0.010504895,0.05326376,-0.050441604,-0.020289835,-0.031894594,-0.009777408,-0.010656145,0.05150615,3.0624813e-33,-0.054944012,-0.042954706,-0.025806786,-0.01720025,0.01832103,0.013512993,-0.066887744,0.11371632,0.027161708,-0.050219998,-0.019099986,-0.10684619,0.050272055,0.037118837,0.023251444,-0.033522364,0.098547675,0.023729661,-0.011852813,-0.025351185,-0.04492747,-0.06349295,0.054531906,0.038338367,0.068911985,0.015879493,-0.029076448,0.0010692509,-0.012642758,0.022149572,0.043882716,-0.032445442,0.03608395,0.042347062,0.027181288,0.031205563,0.073577985,0.051126838,0.011864065,0.013072818,-0.010174937,-0.028541675,-0.007826919,-0.07257246,0.033733662,0.11102377,-0.0034032734,-0.03525897,0.04855854,-0.0135031985,-0.026736982,-0.021877166,-0.035594646,0.035245895,0.05015965,-0.0061063687,-0.060212716,0.018432314,-0.05823604,-0.03588587,0.063715756,0.021858111,0.003026432,0.038867634,-0.038412392,0.026872609,0.021405624,-0.066762894,0.08597358,-0.028878765,-0.080680914,0.02663934,0.12690341,-0.038685255,-0.0022103067,0.033498034,-0.02656465,0.06414606,0.012380847,0.0043230737,0.031116076,-0.03400685,0.053793773,-0.03311259,0.05717323,0.0058704107,0.004039317,0.04219139,0.017488068,0.07248996,0.033990465,-0.040059976,0.036204956,-0.062175095,-0.0040174066,-3.385144e-33,0.025669556,0.035645004,-0.09135553,-0.0021638554,-0.09880079,0.07521311,0.0052147848,0.0038913512,-0.008521536,-0.051972702,-0.06111145,-0.07034988,0.1036556,-0.098497406,-0.002710757,0.019366968,-0.007126902,-0.05684485,-0.015466443,0.012317993,-0.012643042,0.010462695,0.019170713,-0.03267719,0.019623062,-0.0016244301,0.013330762,0.10792765,-0.08777228,-0.011189226,-0.011006545,-0.0856164,0.029616978,0.037265625,0.011830131,0.08481099,0.09491707,0.09804896,-0.00094856403,0.011827278,0.010913383,-0.061856918,0.015271858,-0.017011264,0.076037586,-0.075584605,-0.0300021,-0.0963703,-0.050022256,-0.029435197,0.10121467,-0.03340126,-0.044225857,-0.03284797,0.009388422,0.035256807,-0.023084292,-0.06303738,-0.035548843,-0.0018479609,0.10017875,0.11094889,0.05934948,0.07029987,0.060650397,-0.06086857,-0.06482593,0.027918754,0.07670128,-0.0014575217,-0.01261409,0.0021426275,0.036720257,0.10658776,-0.045036778,-0.008289383,0.045310248,0.043493878,0.007147662,0.06344864,-0.088186756,-0.044387717,0.022886047,-0.018825887,-0.013346353,-0.04647846,-0.020443834,-0.022692632,0.051902134,-0.06316708,0.0062643667,0.01064829,0.062541924,-0.017580427,0.01747832,-2.1344485e-08,-0.0012903108,-0.077066295,-0.05893358,0.04292696,0.09345866,-0.15571748,0.05062285,-0.0037768867,-0.04526181,0.050795108,-0.00848251,-0.016380224,-0.06483974,0.016635746,-0.012505169,-0.024714248,-0.0075874683,0.05854233,-0.04178355,-0.041389193,0.021357384,0.01675468,-0.06967526,-0.06435767,0.0014368374,-0.023916088,0.026264863,0.05067001,-0.015952835,-0.0674224,-0.009036707,0.035414606,-0.0004558072,-0.043036286,-0.0072803246,-0.005842503,-0.004552652,0.09625041,-0.029808212,0.12175502,0.057004184,0.052338667,9.5314856e-05,-0.041040633,0.015970739,-0.009314722,-0.03163547,-0.029843286,0.061818574,0.040290073,-0.05426162,0.06536196,0.045969516,0.02667905,0.007512554,0.009297698,0.027186712,-0.005022786,-0.04829379,0.062804505,0.014125112,-0.004731841,0.03364821,-0.036615532} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:18:20.60161+00 2026-01-25 01:27:51.758872+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 532 google ChdDSUhNMG9nS0VJQ0FnSUNIOVBEQjlBRRAB 1 t 535 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Reservamos dos coches con ClickRent para recorrer la isla, y fue la mejor decisión. Coches muy cuidados y un personal excelente, especialmente Néstor, Carlos y Fran que nos ganaron con su amabilidad. ¡Repetiremos seguro! reservamos dos coches con clickrent para recorrer la isla, y fue la mejor decisión. coches muy cuidados y un personal excelente, especialmente néstor, carlos y fran que nos ganaron con su amabilidad. ¡repetiremos seguro! 5 2025-01-25 01:27:48.342451+00 es v5.1 O1.03 {A1.01} V+ I3 CR-N {} {"O1.03": "Reservamos dos coches con ClickRent para recorrer la isla, y fue la mejor decisión. Coches muy cuida"} {0.019751547,0.048844248,-0.034424454,-0.07849066,-0.021778641,-0.04311958,0.08007207,-0.013820466,-0.0052340883,0.026774941,0.0718037,-0.019187447,-0.020050786,0.027917374,0.008316238,-0.019310946,-0.050108124,-0.0013015843,0.022294981,-0.015988594,0.07433893,-0.061143197,-0.07055798,0.04445821,-0.104956314,-0.07477017,0.044837587,0.03116443,-0.06788537,-0.08319628,0.012484882,0.04510727,0.050679244,-0.021631302,-0.073082976,0.044732936,0.06526921,-0.19748749,0.014203302,0.08207085,-0.09654737,0.0139192175,0.018094892,-0.06703039,-0.03351463,-0.062190384,0.023786712,0.030776031,0.053230483,-0.0057293633,-0.062820636,-0.009239723,-0.042520203,-0.070190474,0.044179782,0.047158226,0.006129879,-0.011384083,0.051418703,-0.033955272,0.051007938,0.021689294,-0.024356248,0.06723581,0.031986397,-0.029352106,0.027771676,0.010806204,-0.03806476,-0.027288089,0.068816416,-0.07905848,0.03060032,-0.008756469,-0.06923693,-0.023577064,-0.034752823,0.03054535,-0.03635737,-0.007977313,-0.014945678,0.0056308056,-0.004530277,-0.06847631,0.043366313,0.008661824,-0.011848872,0.031726673,0.06409782,-0.0058267196,0.036208715,0.026025778,0.023531921,0.027768834,-0.08426421,0.024630368,-0.022347705,-0.007088077,-0.08124662,0.03686236,0.054430652,0.044778734,0.039438963,-0.0126490155,-0.052839573,0.06382516,0.02525534,0.01777752,0.043930802,0.069489844,-0.15428828,-0.052692097,-0.059970733,-0.035859462,-0.025068488,0.049098756,-0.006404012,0.003622467,0.0055118687,-0.17614438,0.0817643,-0.013825283,-0.028013721,-0.086533405,0.0145171415,-0.01344782,0.05227697,1.2771421e-32,-0.049524672,0.019935587,-0.0033475047,0.017509146,0.0068817283,0.032030836,-0.047217164,0.011406863,-0.048203293,-0.01625791,0.028299816,0.049456596,0.008144792,0.000831916,0.015119236,0.014154324,-0.021484002,0.038914327,0.012248167,0.03625564,-0.050112255,0.048391756,0.018839207,0.039952576,0.02148788,-3.5319532e-05,-0.042365473,-0.043783676,-0.044899367,0.039405037,0.0048349723,0.06845644,0.016517643,-0.09355085,-0.007169646,-0.053109765,0.007900836,0.03305169,-0.010120922,-0.029393015,-0.00059212744,-0.0210863,0.012107744,0.057947144,-0.023451017,0.015891796,0.07797364,-0.00033808209,0.040817406,0.03667498,-0.057731304,-0.07785171,-0.040521845,-0.05673506,0.0064931395,-0.0012494114,-0.12170483,0.051133722,0.004509818,-0.05344023,0.053180482,-0.07678103,0.048811782,-0.0064332336,-0.028145967,-0.035262316,0.054729667,0.05664123,0.12911445,0.08188447,-0.0408598,0.0116451,-0.039925706,0.066908225,-0.010827641,-0.0318459,-0.020071128,0.009189343,0.016777404,0.028612813,-0.08013113,0.014611498,0.052947275,0.03004474,0.07381384,0.07423253,0.08507129,0.05765511,0.054912936,0.12800603,-0.034846105,0.12421985,0.022210035,-0.022856366,0.06370814,-1.4182639e-32,0.001490013,-0.025163809,-0.060417537,-0.05610494,-0.05043504,0.027168885,0.04571485,-0.00048114065,-0.019395646,-0.11736493,-0.090488985,-0.07774196,0.107182406,-0.05658143,-0.08554252,0.09026857,-0.027443662,-0.09893262,-0.06661196,-0.029935958,0.08732117,0.01981403,0.032025654,0.029093249,-0.02975221,-0.044324886,0.034680847,0.017703362,0.0071074124,-0.056229692,0.09672979,-0.02710089,-0.06699729,0.028992074,-0.008770284,0.079651155,0.027629137,0.041250855,0.013602002,0.109283105,0.02200948,0.04716941,-0.04405293,0.0064100884,-0.046847016,0.04122026,-0.00066156767,-0.123039685,-0.037214555,-0.0735425,-0.011483782,-0.021314587,-0.030280352,-0.08414745,-0.0032593438,-0.0038480803,-0.06591537,-0.04043685,-0.011989557,0.010039979,0.012813483,0.0376127,-0.033919387,0.021744382,0.08271513,-0.02776573,-0.037800774,0.03319369,0.06813671,0.085136004,0.07394334,-0.056161247,-0.063714825,0.0059672585,-0.003630446,-0.06549345,-0.0735663,-0.0020473665,-0.032245267,0.012125913,0.022629509,0.06148773,0.003142555,-0.07778435,-0.04449014,0.027668903,-0.0011925206,0.009854101,0.009052112,0.0012296825,-0.05273197,-0.02097577,-0.0581925,-0.04640361,-0.047893915,-5.4167963e-08,0.023566728,-0.023323908,0.07627177,0.010672187,-0.024939014,-0.014384885,-0.031061893,0.03339751,-0.00060053275,0.08875982,-0.06453508,-0.03757984,-0.012802337,0.09252218,-0.045589108,0.024319645,0.075026564,0.078961805,-0.014644022,-0.07089535,0.050548326,-0.058876354,-0.044497058,0.031460434,0.018303854,0.06537196,-0.011636485,0.050890792,-0.059663422,0.03405279,-0.005889612,-0.038063522,-0.044652015,-0.032625664,-0.057425376,-0.0407509,-0.0516169,-0.020545885,0.013423748,-0.093995325,0.09065351,0.026207592,-0.039506525,0.025430392,-0.039220184,-0.07332909,0.028900841,0.002314054,0.035779472,0.05546162,-0.0193352,-0.05451692,0.049894918,0.004182501,0.09662186,-0.06700506,0.0153847905,0.056763534,0.025519866,-0.013076622,0.07490949,0.013167932,-0.028330106,-0.11724603} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:54.515316+00 2026-01-25 01:27:51.765024+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 533 google Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB 1 t 536 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Personal atento y amable. Nos han dado un coche de gama superior. personal atento y amable. nos han dado un coche de gama superior. 5 2025-08-28 01:27:48.342453+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Personal atento y amable.", "O2.01": "Nos han dado un coche de gama superior."} {-0.022690972,0.010631859,0.030621532,-0.05709651,-0.051422887,-0.041407473,0.08906304,0.09680203,-0.042131353,0.04617008,0.11206881,-0.022578929,-0.017450228,-0.095255084,0.042608686,-0.009679597,0.009963842,-0.018514426,0.051542833,0.06791641,0.061535135,0.008120405,-0.070252016,0.07595871,-0.10041354,0.013407588,-0.016884461,-0.00042093676,-0.009477124,-0.026206113,-0.04713334,0.022229673,0.088095844,0.018861169,-0.035722468,-0.039985064,0.090510376,-0.03873169,-0.009936672,0.012221589,-0.08855521,0.045632068,0.053502258,-0.09848389,0.062963165,0.011092497,-0.0070624305,0.012092049,-0.0006976197,0.021664817,-0.09910821,-0.0078920815,-0.040360626,0.053808875,0.059770957,0.0127501665,-0.02283588,-0.09167007,0.0066929357,0.06884516,-0.048185118,0.023419369,-0.09465123,-0.011659563,0.084352896,-0.028880874,0.042383995,-0.010653253,-0.050345976,0.087606244,0.09442353,-0.058169253,0.015654396,0.09084504,-0.059842568,0.043666866,-0.0890636,-0.069200836,-0.007150666,0.028591102,-0.044072,0.0832181,0.008696214,0.0047812983,-0.0059498176,-0.028152378,0.025848493,-0.026022922,0.03224278,0.04428909,0.010929884,-0.032059442,-0.061423063,-0.02578528,-0.028138189,-0.07912473,-0.029987281,-0.012173635,0.0148218665,0.033205166,0.075169116,0.09379872,0.04365404,0.030673178,-0.014115283,0.056921672,-0.022247685,0.005854706,0.008156877,0.07829812,-0.07344984,-0.054697283,-0.08102572,-0.10279016,-0.06388574,0.081204146,0.0010534168,-0.036119886,-0.05840991,-0.052061435,0.04751457,0.012290259,-0.03900437,-0.0013018444,0.034994647,-0.055258315,0.07890607,1.0300805e-33,-0.055121228,-0.05108414,-0.01162623,0.013131923,-0.031551745,0.047748514,-0.0373774,-0.056246243,-0.04877858,-0.015311281,-0.027731154,0.06957711,-0.01293695,0.06088603,-0.014250622,0.07739387,0.024876636,-0.054285135,0.08359933,0.038874418,-0.047936585,0.00018031077,-0.041009687,-0.036063127,0.010827256,0.01802251,0.00048316288,-0.04077726,-0.054527946,0.031655814,-0.01485966,0.024291413,0.024765851,-0.012149335,0.03404704,-0.12240964,0.035634432,0.060880296,0.0050614486,-0.030036366,0.034877263,0.013732704,0.019149994,-0.044898674,-0.013794163,0.0473587,0.03722413,0.046734698,0.06882886,-0.0119409,-0.058250878,-0.033831727,-0.11995453,0.032903105,-0.008878097,0.026949842,-0.064393274,0.046272285,-0.022560509,-0.035953477,-0.009878629,-0.028853992,0.009111468,0.0050315037,-0.081903756,-0.03216048,0.022936381,0.02371624,0.08663816,0.067508675,-0.087161444,-0.08507223,-0.010407253,-0.01199626,-0.050487697,-0.009312662,0.04677448,0.0728781,-0.07622874,-0.01304472,-0.09568539,0.06418643,0.0463606,-0.0029998203,0.041424528,0.10965247,0.029929329,0.06852449,0.007216608,0.10497659,0.00021462601,0.04911056,0.049259827,-0.0069422727,-0.06362795,-2.5304797e-33,0.046311244,-0.040517036,-0.0004379965,0.059215035,0.023966545,-0.021794459,-0.025788892,-0.014324521,-0.051056657,-0.058609378,-0.091839105,-0.04616412,0.12971547,0.04690068,0.026541749,0.033280615,-0.0092314165,-0.027854707,-0.0531462,-0.05165714,0.0417594,0.080968656,0.034714296,-0.019285003,-0.026945477,-0.060741868,-0.0074891164,0.05243891,-0.010861844,-0.008224871,0.021455692,-0.018122565,0.009934903,0.004149576,0.021594856,0.030074637,0.030089026,0.043136954,-0.03539891,0.057219665,-0.051166475,0.11444012,-0.0046694195,0.006603982,0.024712138,0.0056843753,-0.040704783,-0.08159355,-0.07567046,-0.019358942,-0.015813451,-0.066355236,0.06425288,-0.038500585,0.04889354,-0.07492086,0.059202902,-0.14439964,-0.083461374,0.0044984017,0.077564694,-0.05983446,-0.12040644,-0.050452765,0.050185923,0.03294807,0.014482555,0.04747946,-0.01429988,0.007730996,0.026286,-0.05263139,0.0029252432,0.003524955,-0.039525006,-0.031150494,-0.051448528,0.10161333,0.0680125,0.038502883,0.0019763508,0.0065062214,0.015369331,-0.050954223,-0.017613944,0.029564185,-0.018711217,0.027111677,0.0108925635,-0.013149607,0.029623834,0.009409102,-0.07658099,-0.06142957,-0.07829731,-2.4627296e-08,0.021254633,-0.11062649,0.025304014,0.065784216,0.011998574,-0.12384042,-0.0174311,-0.035709634,0.010960504,0.05053926,0.024288844,-0.0005388837,-0.04643413,0.01710032,-0.0011765636,-0.001549619,0.050251845,0.048742067,-0.06202521,-0.07985869,0.039888542,-0.019264193,-0.019181987,-0.006476428,-0.04932625,0.08990467,0.010987008,0.016431827,-0.080964305,0.035480358,0.0067695184,0.02939764,-0.025015179,-0.029664133,-0.019428277,-0.026155226,0.019178191,-0.0039371327,-0.010124319,-0.015128613,0.092410065,0.026429065,0.025842331,-0.003969366,0.035725597,-0.01818777,0.052032214,0.018543953,0.038723536,0.11738183,-0.055458926,-0.028219452,0.07887246,0.018947098,0.05637908,-0.036893666,0.043216053,0.041167606,-0.066921115,0.0061446363,0.17805205,0.07398815,0.010124184,-0.011130073} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:01.636252+00 2026-01-25 01:27:51.769904+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 536 google Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB 1 t 539 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Magnifico el precio, pero mejor aún el trato recibido por parte del personal. 100% recomendable magnifico el precio, pero mejor aún el trato recibido por parte del personal. 100% recomendable 5 2025-08-28 01:27:48.342461+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"A1.01": "pero mejor aún el trato recibido por parte del personal. 100% recomendable", "P1.01": "Magnifico el precio"} {0.009954031,0.007081873,0.0041967165,-0.0033988114,-0.040162735,0.0003332836,0.07703947,0.05304268,-0.06934481,0.0030288443,0.04726416,0.002171007,-0.07340015,0.019683015,-0.028715387,-0.0071496256,0.023677256,0.060963962,0.010948194,0.0481478,0.007994258,-0.06296355,-0.027254632,0.066725075,-0.04277449,-0.060437053,-0.023589212,0.004453951,-0.0826125,-0.09204405,0.012463577,0.10267923,0.09099725,-0.035617225,-0.034903087,0.052182905,0.007850976,-0.053160217,-0.017465346,0.046130672,-0.09476085,-0.03558685,0.013557636,-0.0031774708,0.048734546,-0.019617269,0.09520492,0.052781865,0.03268801,0.06209219,-0.10521734,-0.025265554,-0.0025621804,0.031834394,0.00927518,0.06268101,-0.003705973,-0.041952793,0.058465745,-0.008832197,-0.011134003,-0.023857117,-0.1347028,0.037138436,0.07822457,0.038605787,0.005223924,-0.044760246,-0.01202528,0.0037526398,0.07418722,-0.050440587,0.0506418,0.065675154,0.011727707,0.10143704,0.015482288,0.002403098,-0.03617463,-0.0075261407,0.017817056,0.02676118,-0.009961037,-0.048571825,0.038468808,-0.023232486,0.015625138,-0.035472427,-0.0004508948,-0.025629554,0.007851043,0.10946683,-0.07032839,-0.01659491,-0.032942828,0.050643522,-0.025450882,-0.027257914,-0.028240176,0.02119546,0.06523124,-0.017417576,0.09407669,0.014590558,-0.059532106,-0.018380135,0.016277261,0.019981503,-0.005079674,0.10001491,-0.024179459,-0.04251295,-0.089064054,-0.049730435,0.0064597195,0.0059070126,0.041896693,0.008389112,0.09278884,0.00092184736,0.022499809,0.021248445,0.00018698732,-0.08137169,0.0137701165,-0.08779481,0.013412633,8.7664916e-33,-0.034103557,-0.021014467,-0.041249182,0.059666473,-0.02431263,0.027494384,-0.06799439,-0.03053547,-0.0042742095,-0.060324103,0.016552756,0.11377721,-0.030520167,0.06462013,0.011146457,0.020116903,0.029479705,0.04223194,-0.023113564,0.023875069,-0.076293424,0.0008269647,-0.0370221,-0.018599568,0.04578985,0.049506277,0.005114241,-0.07473892,-0.032563798,0.032222982,0.023772614,0.091466926,0.0041487734,-0.08536709,-0.04487645,-0.012180812,-0.036083724,-0.0049453494,0.0051278956,0.023460994,-0.009275715,0.055846658,0.03801245,0.020549145,-0.015861351,-0.036193606,0.024869075,0.07684069,0.03472321,0.0024712055,-0.04854897,-0.11946997,-0.08985066,-0.0021367657,-0.0006548252,0.023178425,-0.09788054,0.04459017,0.014282624,-0.11416892,0.069926195,0.055578053,0.010963443,-0.008114052,-0.049148224,-0.07691594,0.06629496,0.073024966,0.12107747,0.015251186,-0.08453077,-0.04611258,0.053143557,0.029651443,-0.019092837,0.026947338,-0.024285648,0.01308742,-0.0065917363,0.014698207,-0.04451952,0.02437303,-0.008546894,0.016073558,0.06100731,0.11878731,0.096250646,-0.00023139559,-0.0048400867,0.07061819,0.017622294,0.09527033,-0.008063762,-0.011956697,-0.041110523,-8.238705e-33,0.04689889,-0.07896085,0.05107733,0.06876302,-0.00019613367,0.000265005,-0.06836812,-0.035205293,0.071452186,0.0037278358,-0.11469055,-0.15429363,0.10436659,-0.07589524,-0.06623085,0.06333824,-0.043344337,-0.09532886,-0.047607634,-0.031885944,-0.011922679,0.07015674,0.0027362336,-0.012584284,-0.03616305,-0.09733891,-0.015484982,0.028489161,-0.008405949,-0.03612928,-0.050049294,0.006657259,-0.0045152646,0.013826879,-0.06886326,0.046177458,-0.023459267,0.07274969,0.13461441,0.0972311,0.020329373,0.058690086,-0.037127573,-0.06871073,-0.06307156,-0.072311364,0.03997256,-0.07901647,0.02158542,-0.028077498,0.023007924,-0.040837802,-0.051314794,-0.065136895,-0.023804773,-0.009215437,0.014754881,-0.10919112,-0.044539668,-0.004703839,-0.029902223,0.0034139324,0.0043989825,-0.0111605525,0.09133121,0.013910833,-0.03318921,0.034431007,-0.006852192,0.05145538,0.082228646,-0.048612326,0.012693299,0.019687157,-0.04910223,-0.0400459,-0.008074183,0.06159682,0.06444013,0.047134727,0.0346093,-0.0159473,-0.061624467,-0.0042102793,0.059744373,-0.026943468,-0.021963382,-0.041181732,-0.01634675,0.01764708,0.047419418,0.029834079,-0.046098575,-0.05352624,0.008917771,-3.3807492e-08,0.04673872,-0.016974349,-0.0083045745,0.080216475,0.03752488,-0.028535215,-0.025469955,0.018985888,-0.0060412763,0.070606165,-0.015753724,-0.023526067,-0.009520882,0.00524754,-0.022697339,0.02849735,0.098204456,0.07413579,-0.051335882,0.021476928,0.07953616,-0.017540462,-0.036377013,-0.031850744,-0.052294027,0.08766792,-0.011194012,-0.017561594,-0.086185165,-0.025340445,-0.02567025,-0.002987913,0.028137585,-0.12528938,-0.056263164,0.026235651,0.031716038,-0.032839134,-0.014426537,-0.038598385,0.0846758,-0.05617398,-0.0076059364,0.0011422524,-0.08627402,-0.15685713,-0.004620937,-0.0002863381,-0.011874761,0.087851584,0.0022329476,-0.02762992,0.096372776,0.0022553802,0.028538711,0.044209797,0.085984215,0.03449093,-0.004829458,0.07514445,0.045971442,0.055900477,-0.028044205,-0.07074934} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:48.842993+00 2026-01-25 01:27:51.780516+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 559 google ChZDSUhNMG9nS0VJQ0FnSURIeFBTYldnEAE 1 t 562 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta compañía 100% una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta compañía 100% 5 2025-01-25 01:27:48.342574+00 es v5.1 A1.01 {R1.01} V+ I3 CR-N {} {"A1.01": "Una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta com"} {0.05670867,-0.07781774,-0.0465627,-0.041515682,-0.053154446,-0.007768285,0.10818224,0.048352696,-0.033935346,0.009383255,0.12599497,-0.07262841,-0.05661388,0.016366249,0.041877363,-0.0018204803,0.029769512,0.016152758,-0.006988046,0.005787608,0.020465454,-0.064417884,-0.026850756,0.072891586,-0.06572232,-0.077295475,0.00017772987,0.020823516,-0.048886582,-0.06907838,-0.014826967,0.101691514,0.065885864,-0.05128083,-0.022312656,0.024851533,0.020772368,-0.095984,0.027744863,0.06371593,-0.122186616,-0.027079549,-0.0146931615,-0.021180535,0.023126619,-0.09666421,0.008749123,0.11648664,0.08110733,-0.0064111515,-0.06199946,-0.031203713,-0.036935594,0.013903856,0.0071332105,0.06771429,-0.021080453,-0.0004714754,0.055658616,-0.004466004,-0.018077292,0.045086093,0.06496945,0.051961984,0.03958667,0.03733033,0.0022162301,-0.0067514894,-0.102170944,0.014231598,0.031786468,-0.052136287,-0.030561462,0.056017105,0.007593958,-0.010669651,0.024806436,0.07387727,0.007341076,0.02756878,-0.0069418806,0.02161406,-0.095949546,-0.045206215,-0.02480357,0.022388924,-0.053634122,0.031160349,0.015793348,-0.03566031,0.02252847,0.049642637,-0.017880814,-0.033039298,0.03265925,0.07229454,0.001722902,-0.1119868,-0.038292665,-0.0133882975,0.03902466,-0.0042650183,0.052867066,0.0053689796,-0.10653572,-0.041120112,0.053539567,0.013386545,-0.0038091382,0.0508758,-0.06843344,-0.021516992,-0.05819789,-0.04570024,-0.0748387,-0.024241118,-0.014685168,-0.01277886,0.057000533,-0.04639674,0.039124165,0.04226665,-0.010409234,-0.041953035,0.06549484,-0.081026696,0.08774553,7.207567e-33,0.0006667243,0.015372261,-0.059451677,0.07947175,-0.0016902998,0.030285032,-0.012269132,0.0067972816,-0.07273475,-0.02590914,-0.07332588,0.07868362,-0.0033539077,0.048002064,0.033661485,0.018048618,0.031323023,0.05956517,0.03885096,0.030612031,-0.017708872,0.0030039258,0.020625027,0.0012863459,0.05425546,0.0025819603,-0.0063373763,0.0034325882,0.012225852,0.011479341,0.0004101413,0.045626782,-0.030087959,-0.0918976,-0.022839988,-0.038482226,-0.029806383,0.023103364,0.03284975,0.045023408,-0.031595107,0.047828496,0.008305882,0.04007744,-0.037671078,0.027155465,0.053691503,0.06327134,0.09684511,0.030712845,-0.077226296,-0.059371024,-0.08214398,-0.024960894,-0.04503943,0.005699614,-0.043432835,0.09522277,0.017924808,-0.034782033,0.004751103,-0.0043169707,-0.02997913,0.010679995,-0.08734903,-0.048239827,-0.0019447953,0.0077455738,0.15235537,0.049206875,-0.06573196,-0.06330743,-0.031107232,0.07345912,-0.01732213,0.0016695753,0.0152379675,-0.013301243,0.0023054096,-0.0010379334,-0.06385347,0.06786947,-0.00051881664,0.031602345,0.14552872,0.15756473,0.04483654,0.021128168,-0.0109953005,0.061995246,0.021385107,0.08792488,0.026944026,-0.041495595,0.066996485,-7.748248e-33,0.023940539,-0.07425436,0.042570367,0.059563536,0.06858749,0.004594376,0.0019583418,-0.0058124205,0.04578281,0.01154589,-0.117735945,-0.089631595,0.04031338,-0.06249207,-0.06463764,0.09046221,0.03676288,-0.031832118,-0.033290353,-0.040325824,0.008384932,-0.014001549,0.08627196,-0.03330981,-0.038028542,-0.043836102,-0.101312816,0.013219581,-0.03736263,-0.077131,-0.055818375,-0.05990128,-0.11973827,0.033594713,-0.02741308,3.6769303e-05,-0.018483618,0.073954776,0.066100314,0.07355183,0.049662776,0.044754196,-0.008618827,0.020085176,-0.025244696,-0.0063209776,-0.016472336,-0.1668887,-0.008432725,0.0066589075,-0.005914437,-0.030826569,0.0033303308,0.0004969818,0.02807277,-0.036829535,0.0023737247,-0.09377317,-0.04991426,0.022327216,0.026543384,0.017208362,-0.013809284,0.042912666,0.11716418,-0.004385646,-0.025263496,-0.029498203,-0.07952961,0.049886074,0.08725574,-0.07052848,-0.08636855,-0.024550857,-0.054322977,-0.09353347,-0.108839124,-0.010895594,0.060151964,0.033137847,0.033313587,-0.0032549005,-0.0074915155,-0.07990394,-0.014262299,-0.026131095,-0.0026664517,-0.040533096,0.021024048,0.003631735,0.039909773,-0.016582478,-0.027631162,-0.04200087,-0.0020111687,-3.580144e-08,-0.014567393,-0.03940102,-0.013874526,0.025462398,0.073756635,-0.02432767,-0.020860609,0.048179675,0.018428085,-0.030380772,-0.044420786,-0.10868187,0.00641724,0.075880684,0.017423404,0.045385588,0.048090696,0.11356062,-0.0027180593,-0.0067883763,0.09576259,0.011254448,-0.053556442,-0.021991877,-0.016515514,0.06393094,8.6635664e-05,0.042185206,-0.067457356,-0.011411953,-0.054891404,-0.04694237,0.0113161495,-0.09019275,-0.06645385,-0.009282495,0.0023888748,0.0031452095,-0.042889923,-0.10138648,0.061793156,0.04564522,0.0045588003,0.0071732407,-0.01039312,-0.11368184,-0.053593628,-0.01107786,0.009703188,0.022028834,0.0329685,-0.051573686,0.07813505,0.023495613,-0.02883749,-0.025350275,0.046497278,0.008639064,-0.013120751,0.029781329,0.055777255,0.053182326,0.027002087,-0.04457837} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:02.13926+00 2026-01-25 01:27:51.854109+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1189 google ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE 1 t 1192 Soho Club unknown The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. She didn’t measure the proportion, and I had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. That was too much. And finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) I was literally shocked and about to throw up. That’s disgusting and unacceptable. No respect to clients. Avoid her, awful experience. Though place is rather cozy the bartender woman is just terrible. i received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. she didn’t measure the proportion, and i had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. that was too much. and finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) i was literally shocked and about to throw up. that’s disgusting and unacceptable. no respect to clients. avoid her, awful experience. though place is rather cozy 2 2025-06-03 18:34:31.336452+00 en v5.1 P1.02 {} V- I3 CR-N {} {"E4.01": "Though place is rather cozy", "P1.02": "The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running aw"} {0.061353594,0.053748317,0.025152784,-0.00033376573,-0.0053429627,-0.04045607,0.08866544,-0.02266644,0.012062093,-0.09455653,-0.039911095,0.011345751,-0.012347439,0.057417538,-0.017428216,-0.02004787,0.039378766,-0.08067104,0.00023322136,0.07465357,-0.024025688,-0.057703827,0.00059782196,0.02485397,0.046118572,-0.02494135,0.03027525,-0.04871214,0.022897186,0.002452671,-0.04758627,0.06593876,-0.014497762,-0.06315501,-0.06171753,-0.06240581,0.07468525,-0.0038845711,0.027919512,0.06287037,0.04091806,0.071603894,0.01603354,0.054466948,-0.0064546983,0.034191042,0.025727551,0.05245574,0.027062654,-0.07300874,-0.08262799,0.054268148,-0.022614952,-0.028057871,0.013898486,-0.048187267,0.03820582,-0.08337684,-0.005720268,0.1151296,0.011320994,0.042595316,0.0013365347,0.052594334,0.06316408,-0.03098701,-0.019030344,0.111067235,0.028371202,0.048049577,-0.033512156,-0.028598774,0.07128429,0.023565056,-0.024136605,-0.057338007,0.022763727,-0.012188116,-0.07821086,0.13257085,-0.0012469046,-0.052340075,0.004864579,0.041731063,-0.055928256,-0.04904883,-0.0070748157,-0.04800319,0.048004936,-0.019002603,-0.0806774,0.059936628,0.02236453,-0.13072178,0.077194676,0.07278576,-0.022901345,0.0003195865,-0.030303003,0.06840355,-0.0245078,0.15375347,-0.032665655,-0.067290865,0.08253336,-0.0010261216,0.021825094,0.0046482757,0.00895341,0.007893684,-0.0026450646,0.04465212,0.010149287,-0.04839799,-0.05129292,0.030370979,0.03626077,-0.04326911,-0.043604556,-0.043305494,-0.02325218,0.060805585,0.004085288,0.083588906,-0.039360818,0.002848519,0.058234155,3.7924155e-33,-0.055472612,-0.034215923,-0.009375543,0.06709279,0.13761052,0.013569272,0.005561463,-0.049164698,0.05332835,0.047220964,0.07375159,-0.07126943,-0.06317213,-0.037053682,0.03202241,0.0016536692,-0.013667901,0.080933444,-0.03721765,-0.04499163,-0.015180439,-0.02407584,-0.048163652,0.05319537,-0.09891716,0.045662165,0.054194115,0.10952574,0.046901274,-0.009742513,-0.021852344,0.029412609,0.046211295,0.0010362559,0.014810637,0.0063142953,-0.057132315,0.032081477,0.01023223,-0.049362544,-0.13832079,0.04325285,0.10879978,0.04297957,-0.1059572,0.03270945,-0.08045964,-0.026590655,-0.08330879,0.01939629,-0.07463257,0.0046622683,0.05851189,0.17036262,-0.09715323,-0.02613352,0.05558181,-0.007283587,0.038601834,-0.09081415,-0.008727325,0.010266153,-0.09220589,0.008609576,0.023874758,0.009265748,-0.039081786,-0.017683707,0.031937398,-0.066566885,0.008451133,0.13764155,-0.01598296,0.05425943,-0.014957984,0.00555052,0.011054792,-0.03843389,0.059539385,-0.044740353,0.05037729,-0.044691578,0.019972779,0.04989619,-0.043581564,0.0067821788,0.056666143,-0.039389927,-0.027734188,0.06105026,-0.06987696,-0.032248378,0.091903746,-0.02035155,0.017613754,-3.6804133e-33,0.026931986,-0.0571016,0.013192888,-0.0052765324,0.008748584,-0.061335247,-0.045851015,0.019854447,0.030012066,-0.019780396,-0.040661886,0.046256367,-0.007701645,0.020204555,0.008278353,0.009001635,0.07498766,-0.015773995,-0.037159387,-0.08261315,0.013733443,-0.019470159,0.08402222,-0.0032044705,-0.061919894,0.0325937,0.10726679,-0.077032566,-0.073184855,-0.09181275,-0.0058345287,-0.0010322009,0.016451929,-0.031763237,-0.010399996,0.016486809,-0.019878648,-0.07821776,-0.08002202,-0.03921562,0.067066506,0.008563279,-0.044873245,0.0453739,0.11519595,0.0028586981,-0.016396377,-0.12739314,0.07859055,-0.049312852,0.0020737152,-0.0014352611,-0.020559706,0.05157552,0.014834652,-0.08641663,0.08778217,-0.030099062,-0.0037380834,-0.018520406,0.0024917303,0.07679353,-0.04949721,0.0009777974,0.017326482,-0.10419838,-0.03331018,0.036274336,-0.024423828,-0.017947437,0.049809624,-0.025481796,-0.024435354,0.06556493,0.04837491,-0.011592288,0.022701757,-0.04350064,0.00885118,-0.015922694,-0.034108937,-0.004907118,0.02992517,0.052285694,0.028628454,-0.06740188,0.08261314,-0.08233312,-0.066955335,0.038524203,-0.0018313985,0.00810921,-0.041552056,-0.012367677,0.065554515,-4.928948e-08,-0.010159457,0.0015031036,0.00880303,0.07388632,-0.052393757,-0.07158077,-0.03507436,0.0032855426,-0.054758593,-0.010968449,-0.015759686,-0.0029299152,-0.01687817,-0.002093457,-0.045911226,-0.035326667,0.00760636,0.026023297,-0.05212873,0.043293077,0.010351381,0.03715202,0.03975205,0.0052233017,-0.060188223,0.0021596185,-0.020956464,0.08511229,0.06688332,-0.0062861703,-0.053849366,-0.0073574744,-0.037927877,0.07135195,-0.13184229,-0.0040478962,0.0093388595,-0.031475414,-0.019683275,-0.0029400028,-0.10539825,-0.12144665,-0.060455736,0.00238498,-0.0062435307,-0.009291637,0.004067854,0.047628876,-0.013078723,0.090323165,0.0258724,0.004698573,0.021581814,0.008635256,-0.016526518,-0.042260703,-0.034694802,0.01025807,-0.012557948,-0.0023640466,0.033912092,0.04512893,-0.07133879,0.028576165} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:38:39.631654+00 2026-01-29 18:36:00.442828+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 537 google ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE 1 t 540 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen servicio de Carmen, muy amable y rapida, además nos han encantado las recomendaciones de Antonio sobre que ver en la isla.\nPor otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. Excelente servicio. muy buen servicio de carmen, muy amable y rapida, además nos han encantado las recomendaciones de antonio sobre que ver en la isla. por otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. excelente servicio. 5 2025-01-25 01:27:48.342463+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy buen servicio de Carmen, muy amable y rapida, además nos han encantado las recomendaciones de An", "O1.01": "Por otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. Excelent"} {0.008868615,0.026150022,0.028573545,0.010157766,-0.06756656,-0.038850572,0.07734095,-0.015736775,-0.029517068,-0.013146092,0.0468562,0.030302111,-0.014684189,0.03181902,0.07202449,0.01988173,-0.00088141457,0.06842048,0.030906538,0.043908678,0.15854287,0.018612424,-0.056038786,0.09970691,-0.11536385,-0.030785497,0.0037182292,0.040925864,-0.07891922,-0.06794138,-0.020255268,0.04860628,0.047515403,-0.010098224,-0.010032696,0.009402918,0.009751249,-0.09772673,-0.006333512,0.07352806,-0.08720337,-0.018804988,-0.011367041,0.010384438,0.006837611,-0.17273167,0.019885037,0.06569323,0.072079904,-0.009607972,-0.07937515,-0.035042867,0.014279447,-0.07643339,0.026319545,0.02690091,-0.032605458,-0.026642581,0.09071336,-0.0018287083,0.03483116,0.06216552,0.019109476,0.04803199,-0.038341552,-0.046056557,0.0048296256,0.025319424,-0.050893288,-0.026705943,0.072535485,-0.08030876,0.00020525126,-0.011704298,-0.078989856,0.03449716,0.02528329,-0.018734856,-0.092079625,-0.019939573,-0.024584029,-0.051704064,0.044548493,-0.06533304,-0.0035897808,0.008896918,-0.006123389,-0.031670347,-0.017904675,-0.03463675,0.07099005,0.015495599,-0.060219306,-0.027271757,0.06155499,0.024269057,0.022383807,-0.08461181,-0.072073445,0.046357058,0.058827672,0.02093709,0.13956407,0.040287796,-0.022371262,0.021478498,0.009556881,-0.06796285,-0.026828187,0.04080443,-0.076478526,-0.02723065,-0.03467787,0.04426159,-0.037475526,0.037365988,-0.022859206,-0.016461935,0.0018120992,-0.052558124,0.06210545,0.030563649,-0.037208673,-0.00460599,0.035664804,0.029962935,0.116867065,1.0877628e-32,-0.033374332,-0.029377216,-0.004684665,0.05372784,0.04599963,-0.0380979,-0.06556191,-0.02966419,-0.07081338,0.0043261535,-0.03910793,0.048544865,0.06787842,0.013842136,0.040823158,-0.004417518,0.014900169,-0.014326787,0.02602457,0.050044086,-0.07249625,0.016336408,0.042315226,0.0050983513,-0.0058318074,0.060547046,-0.00145607,-0.081013866,0.020677727,0.04509043,-0.027333457,-0.014563715,-0.0022373933,-0.093238294,-0.07747218,-0.026539855,-0.033656556,0.020154634,-0.057441738,-0.015902469,-0.007211257,0.007290724,-0.013556433,0.101051755,-0.022319458,0.03299676,0.07601429,0.07837924,0.09893379,0.054007236,-0.045601025,-0.07638186,-0.15523212,-0.0050776107,0.0015313749,0.036216535,-0.049546655,0.028844869,0.023723386,-0.04461593,0.09698959,-0.072429806,0.08106198,-0.043620586,0.001364655,-0.042984467,0.007887692,0.07217359,0.11956746,0.028144192,-0.06072815,-0.026389003,-0.03298203,0.0697192,-0.00805937,-0.015497839,0.04854684,0.0183749,0.010308469,0.060711022,-0.0782666,0.028824897,0.07805002,0.05685603,0.08385092,0.08204313,-0.009955312,0.04786471,0.002381639,0.10280214,-0.078954585,0.11759248,-0.034216527,-0.058847014,0.023360217,-1.1488262e-32,0.022944845,-0.037838567,0.07553174,0.050365135,0.0068247146,-0.017509134,-0.043730013,-0.007090307,-0.017151807,-0.055485032,-0.13644351,-0.09112576,0.039562788,-0.12140061,0.022356953,0.09293894,-0.03646241,-0.039653834,-0.08292564,0.036035318,0.012703652,0.04300938,0.09426894,-0.074789606,-0.023362339,-0.029081177,-0.027951097,-0.022545917,-0.07621643,-0.05932973,0.01981808,-0.024642559,-0.057166528,0.031725053,-0.07234871,0.087199844,-0.0048794453,0.07532492,0.030158944,0.11293258,0.02220585,0.040580787,0.010091466,0.038642243,-0.02474815,0.06614491,0.032638937,-0.11429693,0.035407364,-0.05894315,0.024819536,-0.04085407,-0.033700764,0.00050650985,0.058099914,-0.03133544,-0.05906199,-0.05556124,-0.07482739,-0.004613246,0.018034166,0.013001669,-0.01812925,-0.05325685,0.064128876,-0.012605376,-0.039395396,-0.038770035,-0.025874896,0.012632634,0.022519333,-0.036576428,-0.07084152,0.09163937,0.01180765,0.0076806345,-0.13436612,-0.0441914,-0.045053095,-0.034985136,0.02292415,0.025707548,-0.076408684,-0.045509357,-0.008332585,0.015125974,0.048769772,-0.009445631,0.03161743,0.022073416,-0.012170491,0.034833614,-0.037316944,-0.086020306,-0.060964074,-4.513864e-08,0.020484295,-0.054201826,-0.024601307,-0.04723134,-0.007841196,-0.0011440795,-0.01842103,0.061463654,-0.009993635,0.066422366,-0.03156811,-0.017055457,-0.007928937,0.051905867,-0.031494517,0.047072217,0.081930816,0.013528373,-0.02652196,-0.06066997,0.05989125,-0.002727092,-0.020444462,0.013104678,0.014207816,0.03181341,-0.07992099,0.024421286,-0.013107768,-0.016198687,0.05049104,-0.0042796824,-0.06496885,-0.049385257,0.015933657,-0.045279417,-0.015419031,-0.023847602,-0.019589784,-0.06732436,0.049392156,-0.051513102,-0.017339488,0.0077564283,-0.04398992,-0.064210385,-0.008663742,0.021295413,0.026937773,0.014994063,-0.040844433,-0.055462588,0.04472885,0.03920441,-0.010255651,-0.04200954,0.056191616,-0.0034498232,0.035382047,0.036543064,0.018863538,-0.0020770768,0.01757675,-0.08563206} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:49.184708+00 2026-01-25 01:27:51.783493+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 538 google ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE 1 t 541 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La comunicación y la acogida ha sido increíble! Nos vinieron a buscar al aeropuerto y también nos llevaron al finalizar las vacaciones. La atención ha sido excelente tanto por parte de Isa e Isaac, como por parte de Antonio y Néstor. Sin duda repetiremos!! Gracias por todo ☺️ la comunicación y la acogida ha sido increíble! nos vinieron a buscar al aeropuerto y también nos llevaron al finalizar las vacaciones. la atención ha sido excelente tanto por parte de isa e isaac, como por parte de antonio y néstor. sin duda repetiremos!! gracias por todo ☺️ 5 2025-01-25 01:27:48.342465+00 es v5.1 J1.03 {} V+ I3 CR-N {} {"A1.03": "La atención ha sido excelente tanto por parte de Isa e Isaac, como por parte de Antonio y Néstor.", "J1.03": "La comunicación y la acogida ha sido increíble! Nos vinieron a buscar al aeropuerto y también nos ll"} {-0.0017292366,0.06283868,0.013624434,-0.040309068,-0.059571233,0.010921356,0.035541106,-0.031139947,-0.039416056,0.047187548,0.046897978,0.033684302,0.011558868,-0.045176983,-0.045464773,0.015842356,-0.090645835,0.0046888357,-0.05466076,0.021398751,0.0836648,-0.016419876,-0.050402682,0.11145393,-0.053802967,0.033181548,-0.044741943,-0.03728435,-0.059004884,-0.06749951,-0.06392341,-8.6432054e-05,0.070791334,0.010264734,-0.03843149,-0.035909608,0.07318926,-0.07655709,0.012868893,-0.022406628,-0.08453223,-0.012993542,-0.04080448,0.014052986,-0.018030735,-0.015419958,0.031374086,0.049321335,0.017639482,0.021964723,-0.037042573,-0.0217764,0.041877132,-0.08694893,-0.031619962,0.043809764,-0.028833205,-0.025832348,0.04503368,-0.021310082,-0.0016624292,0.06600705,-0.061096113,0.06604155,-0.00967415,-0.040537953,0.02603106,-0.018506335,0.005118384,0.024702748,0.07394349,-0.07931314,0.062161732,0.029616106,-0.03988611,0.039631158,0.0022755023,-0.034339886,0.0064322664,-0.03154131,0.07506669,-0.04300431,-0.053287804,-0.01617689,0.0049488936,0.013732235,-0.037661728,0.033735864,0.041690923,0.0066206716,-0.029154032,0.023507077,0.0051437085,-0.03849014,-0.010217856,-0.029129758,0.03942515,-0.032254804,-0.043275062,0.020004645,0.07237113,0.11336335,0.0802941,0.0124026565,-0.084951095,0.06645318,-0.014304005,-0.091462016,0.03766189,0.023008958,-0.0804758,-0.060696155,-0.037218973,-0.07694904,-0.043409634,0.07242161,-0.048827726,-0.068922825,-0.08224497,-0.09969277,0.019051874,-0.06559553,-0.02147637,-0.0046223667,0.05372704,-0.12465674,0.058701005,1.0071634e-32,-0.10228015,0.019967675,-0.015584641,0.11461721,0.04598692,0.047902513,-0.054657746,0.05259846,-0.030944888,0.012742448,-0.11160841,0.033904914,0.020062579,0.030347921,0.054990526,-0.017807039,-0.03915683,-0.06061722,-0.0007494975,-0.037669513,-0.03299552,0.020228798,-0.010357388,0.027238768,0.060171504,0.066131055,0.018384343,-0.04183014,-0.018904068,0.072251804,0.023111517,0.06243207,-0.052085105,-0.0011417058,-0.014265421,-0.02438861,0.009225231,0.00586828,-0.023909891,0.009242641,-0.011081784,0.0127628455,-0.088854335,0.0044861776,0.016670642,-0.031844772,0.018272577,0.05961422,0.11894805,-1.125419e-05,-0.009926837,-0.005946077,-0.056288432,-0.081923686,0.02364913,0.0045770197,-0.09846256,0.06925467,0.019462857,-0.04317681,0.052824873,0.036659975,0.0015238675,0.014972617,-0.06268071,0.062915534,-0.00047344912,0.067887135,0.108624496,0.05762919,-0.0059323837,-0.024594046,-0.06625331,0.09775312,0.0008160564,0.041289575,-0.0011087246,0.012514759,-0.046315603,0.027439266,-0.08174883,-0.006947724,0.07104821,0.02208364,0.07246588,0.034335025,0.04590401,0.109956026,-0.04922576,0.0991741,-0.013563492,0.13683672,0.07760152,0.02278784,0.070667736,-1.2998483e-32,-0.005692234,0.008347094,-0.033482414,-0.10648368,-0.06609578,0.024924217,-0.018122436,-0.050885897,-0.0541928,-0.049539555,-0.0862331,-0.05378546,0.079070635,-0.04073485,0.015451035,0.028575413,0.016875876,-0.07019732,-0.1110161,-0.0068457285,0.031319153,0.0051395027,0.014895263,-0.062337205,-0.032885112,-0.05074513,-0.004909326,0.0065379264,0.047458287,-0.014070324,0.067044415,-0.016631251,-0.034243356,0.054911874,-0.031375233,0.033242527,0.022077661,0.042524558,-0.04114505,0.0054569994,-0.023293322,0.04536273,0.0023269088,-0.013990243,0.016580133,0.02566547,-0.012156351,-0.16205607,-0.051015828,-0.11414689,0.07426574,-0.09725416,-0.00012030981,-0.032686684,0.091063246,0.09299081,0.023852635,-0.0700712,-0.01676596,-0.061136544,0.039266173,0.015467955,0.0010500113,-0.004806039,0.038566638,-0.047308497,0.007412329,0.107603736,0.017835697,0.012283024,0.09843865,-0.018277502,-0.13733704,0.08566639,-0.042510714,0.05066648,0.008598255,0.0023981659,-0.06084512,-0.0038360606,-0.028221406,0.027778175,0.0011009433,-0.01245281,-0.014614517,0.012032084,0.0020803958,-0.039262004,0.0086618485,0.034422368,-0.030107519,0.0049621584,-0.04388474,-0.0784972,-0.05381487,-5.0167035e-08,-0.031601004,0.009172176,0.019063601,0.019990075,0.031787694,-0.008512333,-0.051530425,0.029760115,-0.051758368,-0.01945538,0.028409392,-0.062370565,-0.038681146,0.098077215,-0.007960439,0.0192478,-0.02229493,0.0869679,-0.0115922345,-0.06631784,0.01019448,-0.019574434,-0.06855136,0.009730708,-0.009575876,0.0373807,-0.025014784,-0.0075458074,-0.04958532,-0.029574033,-0.07294556,-0.009646381,-0.03678947,-0.12927891,-0.06413823,-0.013528072,0.06096221,-0.011128137,-0.04612018,-0.15659726,0.10831373,0.01721145,-0.00084862864,0.045393836,0.03815735,-0.08300671,0.010618119,-0.032521296,-0.021159383,0.052381877,-0.010430546,-0.017877974,0.097898744,0.0291865,0.04368305,-0.046811596,-0.020766424,-0.024816379,-0.009299574,-0.020362478,0.093971,0.048974384,0.0037465098,-0.023400342} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:40.823739+00 2026-01-25 01:27:51.785699+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 541 google ChZDSUhNMG9nS0VJQ0FnSUNuMF9PZmVnEAE 1 t 544 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el precio muy económico.\nNos guardamos el contacto para volver a repetir. destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el precio muy económico. nos guardamos el contacto para volver a repetir. 5 2025-01-25 01:27:48.34248+00 es v5.1 J1.01 {A1.01,P1.01} V+ I2 CR-N {} {"J1.01": "Destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el preci"} {-0.05999531,0.01885114,-0.033288077,-0.057800576,-0.11019261,-0.043360606,0.09572172,0.0045570866,-0.02579648,-0.004929132,0.023896307,-0.08098248,0.021292247,-0.08261416,0.00019994439,-0.00961131,0.00994826,-0.011659511,-0.035684682,0.03721888,0.08011344,-0.009128539,-0.112181604,0.07268849,-0.06837537,-0.091360025,0.007529598,-0.0025490148,-0.05694541,-0.01900107,0.013891495,0.0151597895,0.06336331,0.013156561,0.00018560253,0.017420521,0.005498267,-0.0448221,-0.018063622,0.024511283,-0.08463771,-0.01559187,-0.0359565,-0.05406775,-0.03179522,0.008666908,0.08985714,0.07492177,4.5972538e-05,-0.041198708,-0.08151891,0.0271725,-0.049202185,0.012190319,-0.034728423,0.022317752,-0.01912539,0.00089106866,0.084542684,0.028842084,-0.03354344,0.007819129,-0.018280953,0.019135704,0.012600589,-0.002087461,0.064257935,0.00014069564,-0.0029238088,0.015529585,0.074739695,-0.0876082,-0.005599397,-0.016555224,0.013039126,0.05195135,0.013127652,0.014664018,0.037813384,-0.04984654,-0.0006827104,-0.04618056,-0.0446109,-0.02326495,-0.058730666,0.011102332,-0.013861222,-0.026248083,0.14748204,-0.005662259,-0.009850907,0.088799156,-0.0009553391,-0.03074496,-0.09358243,0.0100703705,0.06320538,-0.027688852,-0.035823386,0.07497434,0.06979818,0.03494124,0.018381963,0.039729808,-0.028458059,0.004935351,0.037255343,-0.0027270021,0.011490724,0.100580364,-0.087804615,-0.025038734,-0.020221608,-0.09173364,-0.011967734,0.055685814,-0.049052343,-0.07716761,0.004106467,-0.092027076,0.101519555,0.008662778,-0.075651154,-0.062472768,0.0128347995,-0.07796796,0.07597592,1.237132e-32,-0.04147849,0.0048060236,0.03832238,0.039058506,-0.05681674,0.024502084,-0.06999872,0.021746535,-0.0068167117,-0.042815838,0.02299035,0.03431002,0.021640204,0.062190317,-0.05736386,0.058457915,-0.00846271,-0.03718995,0.07195314,0.05569493,-0.033523116,-0.108554885,-0.01936338,0.082941845,0.005515857,0.013332573,0.022495942,-0.033522844,-0.005269451,0.047577918,-0.009264402,0.029734764,0.022522487,-0.053557247,-0.063509315,0.04113446,-0.018332783,0.05376127,-0.020587523,-0.042735633,0.0066745286,0.05376992,0.0011460716,0.05032988,0.041771963,-0.01969957,0.057874803,0.048636757,0.042385772,0.045887962,-0.06334702,-0.07542014,-0.07410484,-0.021105312,-0.07081717,-0.014593113,-0.084452756,0.00619899,-0.034285866,-0.080666,0.025828704,-0.045599245,0.017100072,-0.0013449492,-0.07551553,-0.009628542,0.004062902,0.016713183,0.14135487,0.021592008,-0.042469244,-0.010620201,-0.03446621,0.028729945,-0.05453088,0.070741326,0.014418163,0.03329533,0.030890565,0.03927116,-0.029688688,-0.026514305,0.04887527,0.04054081,0.105026625,0.030219972,0.053751662,0.06527532,0.0012791448,0.08114915,-0.007085124,0.06393421,0.0687741,-0.0034765878,0.036487218,-1.3531937e-32,0.025010271,-0.003869764,-0.052794456,0.048473716,0.005661368,0.048205994,-0.0007226374,-0.013314515,0.018884234,-0.06894535,-0.17976359,-0.093283005,0.19577168,-0.0071104756,-0.011078677,0.11906745,0.04917525,-0.07454477,-0.05159368,0.018769242,0.003640989,0.0056532435,-0.009749674,0.012346633,-0.026264668,-0.10754793,0.037956066,-0.016744955,-0.05047948,0.032146975,0.060022105,-0.021810237,-0.006852075,0.04525044,-0.05056436,0.062341064,0.06572573,0.04368466,0.041733272,0.018013878,-0.0067443457,0.011810331,0.03644405,-0.030661074,0.0029737994,0.02646647,-0.021202177,-0.15014423,-0.025690356,-0.0032446429,0.07912891,-0.03460986,-0.058750138,-0.040049177,0.011005785,0.020438157,-0.030859794,-0.044194743,-0.038817566,-0.030141348,0.017016785,0.040653918,-0.028545834,-0.037086427,0.0407537,0.014661564,-0.06980136,-0.04098233,0.0048418865,0.0016078365,0.13606596,-0.028501652,-0.057970833,-0.045869637,-0.04184384,9.354129e-05,-0.03719534,0.056758888,-0.0061400807,0.050063923,-0.0057817525,0.022177799,0.0786187,-0.06132722,-0.09674556,-0.034383476,-0.029250946,0.0075500957,0.014087942,0.0058657457,-0.044300076,-0.051128242,-0.0638054,-0.14702736,-0.027384328,-5.0652865e-08,0.03897488,-0.046013836,0.06827604,0.05125999,0.019555606,0.023915801,-0.019708894,0.010380856,0.02543217,0.062847495,-0.02295326,-0.058600318,-0.0032812862,0.025164863,-5.8269397e-05,0.02126862,0.069455,0.058303393,-0.08511834,-0.045952603,0.035922218,-0.026362495,-0.029049909,0.024569858,0.04884906,0.031490393,-0.003226422,-0.02205671,-0.07928266,0.020131784,-0.050056696,-0.002311876,-0.024939824,-0.1633908,-0.024261508,0.020981787,-0.01160387,0.0007176534,-0.0136655355,-0.046641454,0.032270964,0.053597532,-0.060661037,0.0075946674,0.04087326,-0.03021909,0.003355908,-0.043224398,0.0020777776,0.01830798,0.034293097,-0.08541177,0.117708445,-0.0050910055,-0.036985792,-0.06111895,0.01689586,0.049141727,0.0011888461,-0.015122738,0.11711446,0.09620954,0.00057598157,-0.061703075} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:20.440996+00 2026-01-25 01:27:51.800768+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 542 google ChdDSUhNMG9nS0VJQ0FnSURudnMyQ3lRRRAB 1 t 545 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropuerto, nos dieron recomendaciones y tips para nuestras vacaciones. Sin duda un acierto!! hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropuerto, nos dieron recomendaciones y tips para nuestras vacaciones. sin duda un acierto!! 5 2025-01-25 01:27:48.34249+00 es v5.1 J1.03 {} V+ I2 CR-N {} {"J1.03": "Hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropue"} {-0.012156408,0.033626623,0.0075761536,-0.036381673,-0.02235356,-0.041202933,0.07988987,0.031152032,-0.066451,0.0069731274,0.09558133,-0.006473443,-0.030313304,-0.03381265,0.007518099,0.03930027,-0.029359529,-0.0069904085,0.016145373,0.026250817,0.073283374,-0.04606179,-0.041255336,0.15055783,-0.09989242,-0.009186994,-0.07278569,0.04538785,-0.034783293,-0.07506313,-0.011285433,0.07718955,-0.02903468,-0.0764131,-0.033779792,-0.025627404,0.043550648,-0.032995418,-0.062365238,0.03872716,-0.1507813,0.00013758181,-0.041233487,0.04034329,0.0007942884,0.014948901,0.020054586,0.11815017,0.12690271,0.037550025,0.0038508505,0.017961897,0.022407345,-0.009228233,0.016049849,0.012416592,-0.028151045,-0.05516829,0.056657016,-0.04371349,0.022534486,0.026903888,-0.07095515,0.0033504432,-0.0093168225,-0.06385188,-0.022307128,0.016762339,-0.016856909,0.025537778,0.04965357,-0.12160611,0.05255905,0.035353765,-0.0032974347,0.07247308,-0.049075168,-0.04876775,-0.041812357,0.00063847454,0.05418994,-0.025134696,-0.016857302,0.0019005722,0.044928607,0.0039862213,-0.060797818,-0.029480249,0.052525155,0.0030695382,-0.034283135,0.07731568,-0.08024202,-0.06943955,0.019712334,0.028814968,-0.019556263,-0.029848961,-0.03877537,0.041067146,0.10653883,-0.015817199,0.03852682,0.04685564,-0.087591894,0.055263024,0.057043727,-0.05156985,0.061025795,-0.00087549514,-0.08515253,0.0023661137,-0.012766525,-0.084948115,-0.07155153,0.012692752,-0.032641724,-0.077945046,-0.10990146,-0.1015329,-0.012493287,-0.0128687145,-0.018269377,-0.07660614,0.02445161,-0.10692891,0.04799839,1.2083175e-32,-0.04695218,0.03938535,-0.023570593,0.062098667,0.014005437,0.01767389,-0.039898153,-0.014430761,0.006928263,0.0057943515,-0.06720671,-0.013808681,-0.041244823,-0.024588743,0.075177535,-0.06002075,0.03247125,-0.019446682,-0.02896383,-0.023317948,-0.05609405,-0.07915563,-0.06083732,0.003132074,0.025853328,0.050643113,-0.021646852,-0.04907105,-0.06671735,0.06721237,0.003884464,0.08368155,-0.045182507,-0.047620613,-0.09497259,-0.021502638,-0.032595787,0.04704131,0.00057208864,-0.038894884,0.028988121,0.056642022,-0.05889458,0.03296504,-0.006621264,0.005680155,0.027179666,0.056013517,0.11026617,-0.0074262833,-0.043497656,-0.02353012,-0.04687439,-0.036526524,0.00897958,0.03554041,-0.0065614334,-0.0018809851,-0.026524736,-0.031931262,0.0063601253,0.06108201,-0.033005588,-0.096886136,-0.05416019,0.007922054,0.050063375,0.06614706,0.12232792,0.047049053,-0.062427342,0.03947785,-0.017783485,0.042391554,0.025025811,-0.004740941,-0.0009543824,0.022823285,-0.005805108,-0.012326378,0.023239389,0.0063721403,0.022118067,-0.015578466,0.043326292,-0.005115189,0.061786942,0.05940661,-0.031364113,0.09416517,-0.018607214,0.07893843,0.07185178,-0.018114815,0.036283433,-1.3538317e-32,0.04931134,-0.01497735,0.041909996,-0.00319559,-0.022958444,0.055372197,-0.06293722,-0.05747434,-0.03170559,-0.06993993,-0.12329838,-0.054765463,0.09497136,-0.006567834,0.030068908,0.08215959,-0.022200173,-0.09256902,-0.074881345,-0.052997038,0.04591958,0.00086840935,0.037591286,-0.0074334005,-0.09612007,-0.04406973,-0.027558997,0.02455408,0.045443006,-0.0013364961,-0.03468981,0.04288851,0.059650242,0.0689346,0.017510034,0.030974876,0.07296221,0.05350169,-0.01301658,0.04980934,0.010860558,0.08364428,0.053589094,-0.042512376,0.013207186,-0.030512072,-0.005763723,-0.1278724,-0.053467628,-0.05845883,0.09675321,-0.09097019,-0.08748227,0.0042843255,0.089255236,-0.005047168,0.012993897,-0.09101431,-0.06358406,-0.047060017,0.028845185,-0.002710201,-0.09769475,0.026326451,0.059001323,-0.051892746,0.01622577,0.010402562,0.060075987,0.054685976,0.015963145,0.04680691,0.008267646,0.00023164955,-0.032907173,-0.03750934,0.05694095,-0.00769102,-0.034760572,0.006365001,-0.06272861,0.04270498,0.051311936,-0.039836854,-0.007155727,0.014190067,-0.044635832,-0.04882932,-0.040438928,0.027266044,0.0041458486,0.0039513353,0.0061686137,-0.070905216,-0.009844092,-4.8952646e-08,-0.0439994,0.020383554,0.05837483,0.049478687,-0.007201368,-0.0045082723,-0.04122824,0.03767356,0.0072521428,0.002634772,0.041166462,-0.026007546,0.050084937,0.084552035,0.028147165,-0.0052636247,0.025252992,0.1721235,-0.017096939,-0.042350862,0.05115665,-0.004277651,0.012493413,0.01197333,-0.0124294385,0.01005048,0.019956397,-0.025890507,0.033044375,-0.0024172254,-0.087436505,-0.019453187,-0.06507093,-0.13988955,-0.039874032,-0.020053972,-0.013844932,0.013864438,-0.047524735,-0.03427089,0.06733661,0.018454863,-0.11246897,0.020452209,0.008812221,-0.10407703,0.038352802,0.0021602828,-0.0651896,0.0434816,0.017883426,-0.03917928,0.13492157,0.01694292,0.01847309,-6.801168e-05,-0.02262123,0.041192513,-0.0053385147,-0.056585763,0.04926579,0.0882848,-0.06340303,-0.0074032308} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:14.892991+00 2026-01-25 01:27:51.802909+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 668 google ChZDSUhNMG9nS0VJQ0FnSURYdFpETmNREAE 1 t 671 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Antonio es el mejor!!! antonio es el mejor!!! 5 2025-01-25 01:27:48.343137+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Antonio es el mejor!!!"} {-0.030753497,0.088929094,0.07163235,-0.009884289,-0.062531896,0.023884825,0.06822796,0.008890441,0.07932673,0.0680335,-0.0038890187,-0.05959732,0.020606544,0.014313562,-0.050582733,0.0026389647,-0.014236684,0.07768377,0.011621965,-0.02474667,0.09041433,-0.013437981,-0.105556935,0.04864173,-0.07443106,-0.015750628,0.024468595,0.0039059334,-0.035229094,-0.105520114,0.006942663,-0.02352624,0.0029089663,-0.007294861,-0.024795914,-0.026461052,-0.0068183527,-0.047003046,-0.014224802,0.027151572,-0.071904786,-0.033216313,-0.007577915,0.0067550936,0.029233107,-0.1266265,0.017263183,-0.0136432275,0.060238753,0.038073987,-0.021889767,0.03194698,0.035060313,-0.04479601,0.04409626,0.04678557,-1.3914831e-05,0.004976114,0.10643799,0.078209236,0.035117477,0.04857749,-0.035087712,-0.007831768,-0.079462506,-0.023315093,0.040754065,0.013816637,-0.0686967,0.047918826,0.10568884,-0.0077693686,0.04437331,-0.0030634117,0.039044622,0.0584824,-0.018782664,-0.0652213,-0.03971683,0.0015325102,0.011347175,-0.11323297,-0.056366727,-0.084039666,0.0077987853,-0.014067288,0.008421511,-0.023661962,0.03727067,0.007924432,-0.053197574,0.02755965,-0.084242925,-0.08130809,0.054271515,-0.0054243603,0.036317598,0.010723874,-0.08837278,0.06789072,0.08677012,0.034561414,0.05996983,0.011020005,-0.027276058,0.07614966,0.025859402,-0.031006332,0.015270954,0.022125704,-0.0072126463,-0.01945413,-0.041530404,0.019552233,-0.024705961,0.01343547,0.012574357,0.000139401,0.029788166,-0.051730026,0.071384326,0.0026658925,-0.068123214,-0.0135391485,0.08144439,-0.03371302,-0.036351632,-1.2860911e-33,-0.08567956,0.017645897,0.022833629,0.07505839,-0.0046051345,-0.051452298,-0.041122492,0.02254408,-0.08787876,-0.080122046,-0.032841954,0.04385581,-0.021541556,0.0047782944,0.07515488,0.10572712,-0.031038309,-0.063183926,0.036468532,-0.012316835,-0.113670334,0.021864861,-0.02706428,0.027795525,-0.055269774,0.04209454,0.0430551,-0.11469993,-0.09693035,0.032898888,-0.056013077,0.048780728,0.044003613,0.017787553,0.011320966,-0.037249982,0.0062787905,-0.03245677,-0.031805623,-0.03107178,0.021636236,0.049891286,-0.012583452,-0.016730018,-0.0632578,-0.018595198,0.004494119,0.028221102,0.10862937,-0.004557122,-0.00026845172,-0.027916363,-0.02080479,-0.061935037,0.03806102,0.05481932,-0.09829404,0.036972173,0.06608137,0.017855007,0.05066142,0.00683343,0.035911538,0.07761737,0.008238396,-0.055446174,0.034328744,0.0554531,0.12391434,0.04886788,-0.032391634,0.008800767,0.012942128,-0.022680582,-0.0124698635,0.056022648,-0.03744479,0.06934676,-0.020788077,0.012695603,-0.0102165155,-0.008448642,0.040718924,-0.029585581,0.064129055,0.11539305,-0.021382324,0.03218694,0.03337546,0.13400277,0.041522842,-0.0015679015,0.063617654,-0.029693022,-0.014621906,-7.428593e-34,0.02244963,-0.0048061414,0.060148504,-0.010359456,0.03480663,-0.009565013,0.03397639,0.01802377,-0.023104358,-0.08906522,-0.021806408,-0.052914087,0.12565264,-0.12281346,-0.033747546,0.08252274,0.0045283283,-0.028685657,-0.07309848,0.035112806,-0.037815418,0.007503962,0.033275757,0.041871507,-0.040863942,-0.057474345,0.02773423,0.05800849,-0.09891038,-0.013506387,0.03916661,-0.03268996,-0.0059084273,0.009446338,-0.070548326,0.018771162,-0.03419303,0.041284174,0.07668006,0.08449425,0.016586822,0.11322002,0.0075630075,-0.009582505,-0.04045698,0.06733794,0.042833798,-0.05726954,-0.015506751,-0.06103518,-0.036153488,-0.050210174,-0.1300202,-0.054349672,0.03648497,-0.021040382,0.07114611,-0.058621924,-0.019348457,0.07997019,-0.031293027,0.07105513,0.079978526,-0.033216115,0.07960466,0.013757801,-0.019611774,-0.0053731687,-0.055364165,0.056217138,0.16999608,-0.004782796,-0.10428633,0.06416838,-0.017634569,0.03601429,-0.063370295,0.04369051,-0.05562187,0.009778532,-0.045890465,-0.02826331,-0.07875803,0.01796687,0.03505388,0.014302424,0.009243319,-0.047611587,0.01726833,0.009649732,0.030813906,0.013494326,-0.06029713,-0.08119386,-0.040565416,-1.6912251e-08,-0.019175624,-0.024240121,-0.032171838,0.0058418033,0.033123516,0.022987282,-0.05401829,0.012897975,-0.0053031542,0.057000253,0.03868808,-0.08149261,-0.039049275,0.018824022,-0.0119196195,0.07874076,0.021445502,0.073207244,-0.0033016189,-0.05974386,-0.026923085,-0.013739185,-0.022934109,-0.10250917,0.028550155,-0.029406574,-0.05793452,0.026496172,0.035847194,-0.03133221,-0.06841723,0.060416784,-0.09635949,-0.11518355,-0.032592647,-0.046717424,0.021678835,0.008649108,0.02722902,-0.0680788,0.050448008,0.06710688,-0.03552002,-0.036736652,-0.018264985,-0.03945169,-0.01847432,-0.003588006,-0.044284385,0.011677432,-0.01941646,-0.045819994,0.060094897,0.031190822,0.10804735,-0.06843209,0.044186685,-0.011170352,-0.016493909,0.0030991777,0.10316873,0.033475053,0.039856154,-0.057451088} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:52:23.463535+00 2026-01-25 01:27:52.282692+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1301 google ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE 1 t 1304 Soho Club unknown Really good club, de locos really good club, de locos 5 2023-01-30 18:34:31.336452+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Really good club, de locos"} {-0.087033674,-0.059969027,-0.005483713,0.015227586,-0.06957664,-0.016749766,0.028525053,-0.017712658,0.05180265,0.0022313285,0.07349417,0.016641557,0.038072545,-0.013094257,-0.032346975,-0.028072651,0.038440965,-0.05730117,0.07715971,-0.01900833,-0.0718931,-0.047111783,-0.04033045,0.07433225,-0.13188946,0.027973752,0.05844995,0.016135111,-0.034516916,-0.045493927,-0.05318595,0.07705364,0.008128028,0.0033887033,-0.038284358,0.029768333,0.105072856,-0.09752976,-0.029365763,0.06829326,-0.07713293,0.00958742,0.013263585,-0.011986352,0.0087832175,0.0054864567,-0.0028580083,0.020756718,0.032263346,0.020886298,0.042770684,-0.04113733,0.07867428,0.015133954,-0.0065831514,0.050926976,-0.023363277,0.012891536,0.022856975,-0.034679573,0.11074232,0.03538567,-0.063402586,0.014843392,0.029014619,-0.03784187,-0.014053261,0.064361505,-0.046248257,0.061550297,0.08074923,-0.0753313,0.03559501,0.03025081,-0.022918273,0.11325646,-0.044768475,-0.037348468,-0.025781227,-0.038288165,0.0055541913,-0.05860968,-0.029722473,0.0040082578,0.04833724,-0.039541833,0.01644243,-0.07015207,-0.00231796,0.011291599,-0.024759002,0.09431203,-0.1065527,-0.0069669248,-0.047221337,0.039344277,0.0039567854,0.015651397,-0.09145552,0.05928408,0.05282575,0.13106698,0.027870478,0.008136055,-0.011346171,-0.011247451,0.08485002,0.08833825,0.048723694,0.04352239,0.017456021,0.032769434,-0.020499153,0.016579546,-0.03321155,0.027324418,-0.0038160759,-0.0052359533,-0.05611756,-0.03320176,0.052187473,0.10293934,-0.024859674,0.051205244,-0.021103537,-0.0704394,0.009861293,-3.475233e-33,-0.04396339,0.022016918,-0.016694361,0.07312138,0.055693384,-0.019961838,-0.06915591,0.007396874,-0.094137065,0.08630605,-0.06814383,0.05658793,0.03362055,-0.04883744,0.060900252,-0.019416278,-0.0020904616,-0.13642068,0.047573704,-0.011900733,0.016033681,0.103551164,0.014183803,-0.026922125,-0.00013332424,0.03348174,-0.053428944,-0.04424767,0.012031895,0.047975894,0.008094739,0.015573062,-0.048413936,0.04947865,0.02953176,-0.0034876217,0.00755784,0.005996774,-0.097153686,0.026725218,0.015517284,-0.021066217,-0.04132785,0.009245214,-0.021667385,0.06499558,0.009124606,-0.013696439,0.042782817,-0.040774282,-0.041145112,-0.024551356,-0.111799695,-0.03154954,-0.019627504,-0.02781303,-0.022587396,0.03766851,0.014809012,-0.06711489,0.09808065,0.03627659,-0.04062795,0.014588897,-0.05977463,-0.038793925,0.07112459,-0.04812872,0.13107102,-0.05056302,-0.035760924,0.01833853,0.048478357,-0.020925632,-0.017150493,-0.010398388,-0.055610023,0.049064457,0.023650171,0.09086447,-0.014525895,-0.09215033,-0.055204153,0.035348583,0.116132006,0.05121933,0.054114223,-0.03934534,-0.064959526,0.022331344,-0.15358745,0.030340109,0.045646608,-0.05110921,0.0014134817,1.6565035e-33,0.09548957,-0.022223962,0.07999972,0.010609001,-0.053609066,0.07955708,-0.08688229,0.052954935,0.008278739,0.03427623,-0.044198107,-0.012963789,0.063094765,-0.018141113,0.049894538,0.026873507,0.018975347,-0.04794814,-0.03562222,-0.025446925,-0.031306688,0.078349814,0.033403654,0.02100817,0.013826847,-0.0100409845,0.02200604,0.034630086,-0.11985768,0.025616838,-0.00022576663,-0.025120089,0.01666887,0.03858353,-0.04505255,0.12164995,-0.03445242,0.052182235,-0.024184246,0.007115715,-0.05339909,0.018343953,-0.074054725,0.04302306,0.047579672,-0.046555676,-0.07845132,-0.028542178,-0.0695383,0.02979815,0.053460963,-0.02237324,-0.086759225,-0.030323533,0.034516722,-0.07055835,-0.06941402,-0.0699521,-0.078258306,-0.056154642,-0.045586847,0.08018172,-0.079079844,0.056265235,0.059177764,-0.033765063,-0.10246121,0.04996457,-0.00037446202,0.023542799,-0.026702018,-0.03745571,-0.047909025,0.09297468,-0.074448004,-0.09149388,0.018214991,0.029869327,0.04401162,0.04582523,-0.02080634,-0.07595809,-0.029502733,0.020377375,0.035749972,0.039492127,-1.8764782e-05,0.027022649,0.0723427,0.08147316,0.086832695,-0.007952083,0.008844509,-0.031007212,-0.010004291,-1.5929958e-08,0.010343548,0.0476992,-0.08209406,0.06021035,0.051648337,-0.079963595,-0.03864636,0.02003978,-0.010618588,0.0948177,0.06069835,0.041186836,-0.06521509,0.06289994,-0.02773583,0.022365566,0.023094963,0.09292127,-0.028518125,0.03920659,0.011732339,0.006115532,0.034100827,-0.003748961,0.024210345,-0.032085083,-0.08180563,-0.10270065,-0.0146825295,-0.07100375,-0.008440264,0.0805731,-0.05986879,-0.0722302,-0.020855557,0.007515591,0.0050790105,-0.044297017,0.021121498,0.0016390107,-0.0016458149,0.0046505127,0.010080852,-0.02453377,-0.024251534,0.008327999,0.031330362,0.027749822,-0.039250623,0.0030727186,-0.003330995,-0.012305876,0.014774044,0.035548087,0.012077692,-0.0151242595,-0.011885708,0.04270398,-0.101628155,0.0058694175,0.04369212,0.0973735,0.034835394,-0.05354578} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:23.805701+00 2026-01-29 18:36:00.717601+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 551 google Ci9DQUlRQUNvZENodHljRjlvT2xOWlQzVnBSamd0YWs0MVl5MXhRWGN4U21oYWFXYxAB 1 t 554 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todos muy amables y el servicio y el coche muy bien todos muy amables y el servicio y el coche muy bien 5 2025-08-28 01:27:48.342518+00 es v5.1 A1.01 {A1.02} V+ I2 CR-N {} {"A1.01": "Todos muy amables y el servicio y el coche muy bien"} {-0.0009499533,0.011635641,0.04367569,-0.07939569,0.0016936294,-0.04827114,0.16181779,-0.026410894,-0.034031447,-0.020928646,0.028113952,0.035270307,0.00042664516,0.0029428853,0.01877938,0.013786857,0.032693595,-0.0066865026,-0.025394786,0.02051866,0.14583822,-0.009107048,-0.12068763,0.113397345,-0.109927304,-0.014079999,-0.047033537,-0.0388122,-0.03984912,-0.07427747,-0.0070399214,0.04861625,0.054856,0.014781023,0.0023292736,0.010234253,0.13423488,-0.10933345,0.021479808,0.04853003,-0.10517423,-0.0039535007,-0.026101688,-0.016685845,0.016719557,-0.062504455,0.018471794,-0.03917402,0.068899214,-0.06080663,-0.103526816,-0.020978553,-0.03156318,-0.021192906,0.036487237,0.03628091,-0.06978506,-0.02494032,0.05388385,-0.008086618,-0.048139583,0.02246847,0.047976814,0.0050379857,0.08537988,-0.07005816,0.053024765,-0.008526601,-0.07183443,0.031605724,0.050653335,-0.026699021,0.02406447,-0.0052096173,-0.053268626,0.08332689,0.005347073,-0.014206421,-0.053918947,-0.043597147,-0.09456267,-0.057014752,0.042289943,0.024082169,0.0027427918,-0.0489566,-0.057320975,-0.0068772975,0.08074765,-0.04692804,0.00048133216,0.03119582,-0.06064486,0.019147752,0.014259052,0.03298346,0.030695003,-0.041181494,-0.06489203,0.091456294,0.07851864,0.06820557,0.16340862,0.054554787,0.0540847,0.023785343,0.033368167,-0.021689724,0.0046600387,0.04256828,-0.054766554,-0.017773643,-0.035923444,0.008182986,-0.042454552,-0.04521222,-0.013174856,-0.0070151887,-0.04300874,-0.064509355,0.082138985,0.1090357,-0.10019169,-0.011588732,-0.028077792,-0.015003167,0.06183324,4.05171e-33,-0.007338304,0.0065235356,0.07853922,0.068264805,-0.014807191,-0.050815284,-0.040293727,0.039565753,-0.047424957,-0.011109644,-0.016781116,0.059135832,0.06549324,0.0025065648,0.0047145467,-0.0072607636,-0.0114378715,-0.04138641,0.02544733,0.033800017,-0.040337674,-0.05764347,-0.0013818559,0.023967275,-0.009830649,-0.02003763,-0.008917345,-0.058470212,-0.04201452,0.078964345,-0.01939865,0.030241568,0.028545,0.019924853,-0.051531672,-0.04570699,-0.008462424,0.026081443,-0.013227376,-0.022771008,0.024521938,0.013934056,-0.04793002,0.024503756,-0.034004226,0.01683652,0.051283833,0.076990776,0.09081773,-0.001221724,-0.059642684,-0.09089904,-0.094265245,-0.029844228,0.0090898145,0.010621908,-0.022812892,0.044018295,-0.041049633,-0.052378185,0.073479526,-0.08607595,0.04254593,-0.033505987,-0.012055972,0.013658956,0.027932696,0.061604552,0.0794921,0.07216992,-0.09797352,-0.03616104,-0.036601633,0.0435463,0.035616986,0.018096955,0.047062136,-0.039337695,0.032898035,0.04705781,-0.04205,0.003109141,0.02746427,0.0045749946,0.07633011,0.04152564,0.055470686,0.028173273,-0.07802951,0.087158136,-0.074485205,0.08888043,0.09215655,-0.08623283,-0.045562614,-5.4349712e-33,-0.022750558,-0.00012133896,0.0029245778,0.072553866,-0.03455284,0.04865047,0.05302168,-0.03705388,-0.023402156,0.03635517,-0.10203537,-0.121509746,0.059928484,-0.04991803,-0.07479076,0.089118764,-0.023458142,-0.032910556,-0.07788262,0.009238736,0.0013400295,0.1070612,0.050600726,-0.02742916,-0.06605725,-0.020023074,-0.07786697,0.019208971,-0.020042019,-0.005900254,0.03933544,-0.061612964,-0.00027919066,-3.597229e-05,-0.04019088,0.07349437,-0.0047081695,0.02936553,0.031172218,0.043376148,-0.020502783,0.021256527,-0.0032566017,-0.0051676612,-0.004517799,0.0044891434,-0.021307014,-0.10306549,-0.036481116,-0.015280818,0.008980608,-0.072208546,-0.056975674,0.013644745,-0.0029301331,0.03405292,-0.10115687,-0.0535634,-0.11358926,-0.029996721,0.05477616,0.010036953,-0.085832745,0.015838778,0.111207284,-0.02520604,-0.013747395,-0.021196065,-0.019277204,0.023901196,0.082935624,-0.013876456,-0.06246275,-0.039913807,-0.010956318,-0.008765713,-0.07531234,-0.032098956,-0.07418386,-0.0054475768,0.020637264,0.0014185436,-0.00031340978,-0.047029313,-0.08187478,-0.036016174,-0.0071696923,0.04452054,0.020141415,0.055291995,0.0180389,0.0018333157,-0.06635783,-0.065432176,-0.02548702,-2.464181e-08,0.010137333,-0.0018851861,-0.0282957,0.012267124,-0.010704285,-0.023669442,-0.038328163,0.039654236,0.077661775,0.070368774,-0.014186806,-0.041689012,-0.027322385,0.013136273,-0.0056445226,0.026168399,0.009258029,0.059980348,0.0039854944,-0.06597265,0.06703098,-0.015587186,0.009056451,0.025932644,0.01756559,0.05682971,-0.061850756,0.010097679,-0.04891579,0.02873707,-0.0020396467,-0.020949876,-0.011779043,-0.08121828,-0.024216564,-0.044015184,-0.039207574,-0.050895587,0.0059437514,0.011387953,0.076723754,0.0818063,-0.07513633,0.018197337,0.05027758,-0.020070935,-0.02586308,0.062232707,-0.02500812,0.0152203785,-0.008751678,-0.020673698,0.075827256,0.051481284,0.040061023,-0.028433474,0.05928287,0.0017351492,0.035020437,0.028619818,0.08100958,0.103335,0.05682093,-0.15230168} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:37.194989+00 2026-01-25 01:27:51.833626+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 552 google ChdDSUhNMG9nS0VJQ0FnSUNIOUxDR3NnRRAB 1 t 555 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tramitar la reserva con los chicos fue de maravilla!! Especialmente Carlos, Néstor y Fran nos hicieron las cosas muy fáciles, además de que no te piden muchos requisitos y es barato, con coches a estrenar para disfrutar de la isla en condiciones. tramitar la reserva con los chicos fue de maravilla!! especialmente carlos, néstor y fran nos hicieron las cosas muy fáciles, además de que no te piden muchos requisitos y es barato, con coches a estrenar para disfrutar de la isla en condiciones. 5 2025-01-25 01:27:48.34252+00 es v5.1 J1.01 {A1.01,P1.01,O1.01} V+ I3 CR-N {} {"J1.01": "Tramitar la reserva con los chicos fue de maravilla!! Especialmente Carlos, Néstor y Fran nos hicier"} {0.07056472,0.04864587,-0.04480258,-0.011011509,-0.047759615,-0.012114538,-0.00022083306,0.0063254954,0.011581611,0.03607427,0.05226075,-0.022732317,-0.016374756,0.012188124,0.016401323,-0.030294498,-0.11489178,0.0032294537,0.018393729,0.025790814,0.0620973,-0.08066098,-0.057797953,0.10287972,-0.17202552,0.004179651,0.011755406,0.034409907,-0.044857074,-0.034680746,-0.005009159,0.053789202,0.074863575,0.008757167,-0.042483207,0.037469793,0.13050552,-0.08703945,-0.0067702117,0.024589147,-0.038167387,-0.0067744376,0.01541777,-0.011558726,-0.046213284,-0.07372069,-0.0040860693,0.049010344,0.04375453,-0.03585516,-0.056917716,0.028776595,0.009539329,-0.043282565,0.030208293,0.031814374,0.09412148,-0.073682696,0.09184248,0.0155585315,0.012094656,0.01834571,-0.054105986,0.059410505,0.00977039,-0.107343204,0.0015660668,0.032222312,-0.06510274,0.04048843,0.063018285,-0.07270512,0.04358124,-0.004270185,-0.054553498,0.006876255,-0.074996166,0.019073255,-0.043597475,-0.0105024,0.0859505,-0.039573487,-0.014490863,-0.064437754,-0.0051777204,0.003075029,-0.022479424,-0.028323805,0.08338292,0.010351752,-0.009425661,0.045669857,-0.015274627,-0.003393902,-0.13401307,-0.0028253659,0.03347667,-0.04355205,-0.08034097,0.03489914,0.089472495,0.01930551,0.057323206,-0.020220889,-0.051591784,0.0544587,-0.0050189816,0.008696952,-0.032720603,0.027258113,-0.08128186,-0.05223907,-0.010562664,-0.020008381,-0.0062369895,0.010370886,0.04653031,-0.030553056,-0.03850179,-0.11600582,0.047600612,-0.0051865675,-0.0055233296,-0.046226006,0.057401054,-0.012271053,-0.0016570699,1.0767017e-32,0.00048411684,-0.00573842,-0.050696597,0.04441677,0.04599237,0.025318686,-0.03262444,0.03685788,0.014441787,-0.00259427,0.024457103,-0.016277255,-0.029463025,0.015671555,0.030558223,0.060602784,-0.0006584005,-0.045807235,0.026044393,0.007144169,-0.061255388,0.06482993,0.010258301,0.020471029,-0.010347146,0.028590225,-0.07672525,-0.11963692,-0.040455,0.027814329,-8.642266e-05,0.07292987,0.015795164,-0.049708836,0.041062076,-0.007139793,0.034083482,0.016463941,-0.026843691,0.013119298,0.03476807,-0.0053359023,0.07525159,0.035666473,-0.017481903,-0.0024704363,0.05586667,-0.00817393,0.09145171,0.10672834,-0.05655775,-0.061091103,-0.06983958,-0.08461737,-0.028101347,0.013725067,-0.11837343,0.0508354,0.017258843,-0.07076922,0.05217547,-0.0866619,-0.0008925766,-0.008577732,-0.015935155,-0.032161392,0.076048404,0.05599698,0.098875314,0.071554214,-0.079864085,0.004494163,-0.027899802,0.04413429,-0.0023177082,-0.019550892,-0.01719716,-0.0028267528,0.0038795492,0.04675718,-0.0910908,0.018493135,0.04251408,0.08024935,0.023600202,0.097288914,0.08939171,0.066005126,0.014583254,0.0767392,-0.051596176,0.05931552,0.043835085,-0.052529927,0.09925242,-1.1877897e-32,0.009427036,-0.025844276,-0.0050667864,-0.04053078,-0.019538848,-0.0067614825,-0.05884199,-0.008166475,-0.052272506,-0.11265629,-0.108133964,-0.07239816,0.055423625,-0.080174685,-0.05839901,0.09553864,-0.01602244,-0.08186963,-0.0611403,-0.05485014,-0.012395733,0.04894598,0.05331649,0.0012671602,-0.029311234,-0.06701807,0.055491358,0.000751054,-0.013124951,-0.012368123,0.08755966,-0.002834889,0.02039886,-0.011734208,-0.03866182,0.073979296,0.050486743,0.029972954,-0.022016961,0.06397656,0.025209056,0.077371806,-0.015716234,0.003134006,-0.039002202,0.07200448,-0.032173652,-0.18467864,-0.031330474,-0.022319268,0.005460007,-0.06643823,-0.078420185,-0.04538883,0.048149485,-0.06266078,-0.014019633,-0.017012754,-0.045901723,-0.05750956,-0.03757624,0.043021202,-0.06404849,0.0017156457,0.112755395,0.007341387,-0.037466403,0.029322697,0.033479117,0.054235477,0.047175743,-0.03531186,-0.10144756,0.09493763,-0.038658403,-0.003532387,-0.07720955,-0.03289351,-0.034527387,0.043899406,-0.002134239,0.010856954,-0.03625505,-0.007444466,-0.032361362,0.017507644,0.012323953,0.024772987,-0.009736601,0.027889498,0.029489607,-0.00666007,0.014050477,-0.08816356,0.0074726073,-4.889596e-08,0.017625527,-0.046928037,-0.038904343,0.016378103,-0.018866574,0.025260715,-0.010630296,-0.021141032,0.004643258,0.09738262,-0.04567946,-0.0072089336,-0.017988449,0.08710602,-0.048938464,0.029539071,0.10180651,0.018982425,-0.031398743,-0.022152083,-0.035574887,-0.0019617279,-0.043777604,-0.015379276,0.020435866,0.0101598445,-0.06949444,-0.0377027,-0.003814868,0.020004261,-0.006300869,-0.023959327,-0.052222036,-0.071265765,-0.010830605,0.011265046,-0.021110883,-0.09706937,-0.0233739,-0.06701312,0.12884013,0.034194987,-0.069586776,-0.009939035,0.039357744,-0.060055535,-0.000966197,0.024398476,0.013188715,0.039407913,-0.0035637848,-0.0098302765,0.0919716,-0.012788371,0.016984666,-0.08843261,0.0015847058,0.09292913,0.048956055,-0.016396197,0.102797635,0.07595933,0.037829176,-0.08619973} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:38.197807+00 2026-01-25 01:27:51.835737+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 554 google ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE 1 t 557 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excelente servicio. Las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy atentas. Los compañeros que atienden en la oficina, muy serviciales. Recomendable 100%. excelente servicio. las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy atentas. los compañeros que atienden en la oficina, muy serviciales. recomendable 100%. 5 2025-01-25 01:27:48.342537+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Excelente servicio. Las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy ", "R1.01": "Recomendable 100%."} {0.031287663,0.055816207,-0.0030415356,-0.054435153,-0.05296229,-0.04053453,0.09335611,0.013506996,-0.055834204,0.0066935765,0.087578066,0.009713469,-0.0069941087,-0.0058350316,0.052859727,0.039823197,0.029918747,0.004459857,-0.030717846,0.005986079,0.085908994,-0.019255087,-0.058351666,0.09824731,-0.08435173,0.02917317,-0.09283848,0.043231238,-0.04556925,-0.057978608,-0.026990194,0.03359481,0.0768662,-0.0077431165,-0.022484787,-0.00087338034,0.059902426,-0.070752084,-0.03601157,0.061540164,-0.102072805,-0.03592927,-0.03360549,-0.006327787,-0.012374951,-0.068182,0.047169082,0.025032647,0.07154009,0.03315489,-0.104434945,-0.03545014,0.07040937,-0.02455341,0.0061886855,-0.0035813514,-0.03830461,-0.042690605,0.049075596,-0.10095604,-0.021549404,0.030708404,-0.048683163,0.07112726,0.040736992,-0.043873824,-0.099688105,-0.0048192022,-0.009915903,-0.03097035,0.010613462,-0.0975308,0.01879433,0.08324373,-0.060221326,0.088358305,0.04900872,-0.0103344945,0.019402672,-0.019775903,0.07998784,-0.056150533,-0.013262859,-0.0047713523,0.03958197,0.022403704,-0.037826505,0.0084673,0.029041803,-0.019967096,-0.018143186,0.036547203,-0.0018595831,-0.064999826,0.01750097,0.017797261,-0.038455024,-0.094999984,-0.040181443,0.022126416,0.045347024,0.004094827,0.136965,0.055337973,-0.07423684,-0.02147044,-0.017797304,-0.043624997,0.029651769,-0.0019408679,-0.103152074,-0.06492518,-0.02115747,-0.0542192,-0.06124736,0.0029857028,-0.042204462,-0.064542934,-0.054777227,-0.07519026,0.046034675,0.018375125,0.003066797,-0.047611736,0.05479911,-0.088663846,0.055962373,9.143726e-33,-0.060873102,0.005304986,0.037416864,0.11328339,0.03980742,-0.007834511,-0.035173412,-0.013758674,0.03023043,0.026465517,-0.107577,0.08749946,0.005743328,0.033782277,0.12384712,-0.050261244,0.0097967945,0.0012291874,-0.018785464,-0.013355675,-0.06397095,-0.023669977,-0.010985212,-0.011949752,0.08010917,0.0015407162,0.025806442,-0.031279214,-0.0073427693,0.072455764,0.05141101,0.04626283,-0.057207555,-0.014757051,-0.09788044,0.0025512676,-0.06485083,-0.0022440767,-0.009366877,-0.01610782,-0.056770608,-0.0075961202,-0.063191496,0.06708777,-0.07478803,-0.0154869715,0.035627525,0.036076613,0.1508563,0.0090754405,-0.04755995,-0.04043154,-0.047070984,-0.013887709,-0.005475338,0.020933699,0.023610495,0.04322324,-0.028190643,-0.06160535,-0.028926121,-0.079225585,-0.012403392,-0.038676403,-0.023517227,-0.02942465,0.00810803,0.07827888,0.10309886,0.078238636,-0.0718031,-0.031698715,-0.012650981,0.041002978,-0.0003351036,0.014622336,-0.019210666,-0.04776913,-0.076497845,0.08248832,-0.024668617,0.02854024,0.0125398915,0.018647572,0.10434408,0.0049387617,0.05079427,0.06088266,-0.08115439,0.057173286,-0.044266246,0.08515661,0.052871045,0.062777504,0.0006558484,-1.1597265e-32,-0.025696497,0.01564039,0.017908309,0.06969979,0.019583903,0.07795833,0.007918852,-0.08596064,-0.06165241,0.062261567,-0.16250357,-0.019557975,0.06276235,-0.026482252,-0.018226754,0.1120395,-0.06361188,-0.0735105,-0.0738707,-0.04798172,0.05776985,0.026264101,0.077089876,-0.057933465,-0.05792804,-0.04458288,-0.007426375,-0.019229956,-0.025691388,-0.022710018,-0.067138635,0.03044149,0.0028731998,0.061855853,-0.03664257,0.048621573,0.09644223,0.07452418,0.032692898,0.041424647,0.0037946352,-0.007429787,0.0003432452,0.018121641,0.033538997,-0.045602545,0.020487435,-0.16095112,-0.011804466,-0.060011685,0.011450883,-0.06357427,-0.012437624,0.047037207,0.083856285,0.0317671,-0.0021182725,-0.07978821,-0.08570101,-0.058145657,0.01806287,0.0036142329,-0.049823362,0.0014407703,0.05572127,-0.023897583,-0.007966849,-0.0032013636,-0.064619176,0.01691455,-0.0155275585,0.00073798164,-0.025004156,0.037794452,-0.0720294,-0.028781887,0.027901424,-0.013627664,-0.037956923,-0.008966472,0.024516871,-0.017640246,0.04314833,-0.05347868,-0.035238873,-0.04508254,0.057075664,-0.06377408,-0.017629974,0.047309853,0.018136688,0.086793646,-0.023017751,-0.047699433,0.0031247055,-5.2701946e-08,-0.060231995,-0.028962364,0.053833034,0.015476894,-0.016815213,0.007502061,-0.025317425,0.04709608,0.030735843,0.004997848,0.01728875,-0.058515012,0.018007783,0.06702984,0.019582473,-0.016586462,0.0067776153,0.10326153,-0.04043178,-0.0015736932,0.05033327,5.412415e-06,-0.010114032,0.03855198,-0.003037524,0.005352517,-0.09386063,-0.055975996,0.019264983,0.025066478,-0.076142795,-0.029697647,0.021626601,-0.10283896,-0.09634572,0.0078675365,-0.04159015,-0.040726323,-0.058006205,-0.0488854,0.09146412,0.02971273,-0.053937066,0.031401943,0.056254342,-0.029150281,-0.057504263,-0.010421139,-0.046145536,6.676844e-05,0.010191804,-0.03575246,0.08048431,0.053323988,0.01736966,0.007250132,0.0042269034,0.0132926395,0.036418814,0.034779895,0.014555943,0.11360939,-0.01322546,-0.065996155} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:32.804179+00 2026-01-25 01:27:51.839533+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 555 google ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB 1 t 558 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sorprendido con este nuevo Rentacar en Canarias, tanto Carlos como Fran han tenido una muy buena atención. Alquiler económico y el vehiculo en excelentes condiciones. Recomendable. Gracias y muchos éxitos!!! sorprendido con este nuevo rentacar en canarias, tanto carlos como fran han tenido una muy buena atención. alquiler económico y el vehiculo en excelentes condiciones. recomendable. gracias y muchos éxitos!!! 5 2025-01-25 01:27:48.342546+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Sorprendido con este nuevo Rentacar en Canarias, tanto Carlos como Fran han tenido una muy buena ate", "P1.01": "Alquiler económico y el vehiculo en excelentes condiciones."} {0.02903915,0.014326687,-0.044677224,0.0011032887,-0.053411078,0.021880966,-0.0054078936,-0.0038250773,-0.033694796,0.015050427,0.089261495,0.018647099,-0.028308567,0.048668347,0.058578946,-0.0051305485,0.04880213,0.035716858,0.047210082,0.0025498455,0.06632104,-0.070263565,-0.064270966,0.0011726356,-0.038697563,-0.012114182,0.008157161,0.013451468,-0.04785674,-0.08846207,-0.0040120203,0.08713015,0.05758998,0.008327963,-0.013994379,-0.01602467,0.0502996,-0.050523058,-0.024345763,0.060093343,-0.047277495,0.008395944,0.017434038,-0.06394569,-0.056652047,-0.05522966,0.04497026,0.057975266,0.10090345,-0.04256191,0.03735952,0.051888153,0.008903464,-0.0018599089,-0.068859234,0.012203387,0.010637029,-0.025312575,0.046347473,9.283697e-05,0.12281765,0.04006318,-0.035434954,0.056552455,0.040819723,-0.051345598,-0.041532256,0.029791037,-0.11904405,0.0051423865,0.05087105,-0.077563606,-0.0058424184,-0.020072035,0.045151643,0.056707848,0.020032901,0.084294416,0.040652797,-0.08583361,0.028130557,0.010983365,-0.059556883,-0.020701043,-0.035197143,-0.02705704,-0.021173965,-0.00518493,0.06663751,-0.019779377,0.03677307,0.114434384,-0.043358564,0.031775106,-0.0496754,0.044052716,-0.0032721993,-0.0011014454,-0.03752477,0.001273015,0.07956185,-0.009426282,0.075188644,-0.035084464,-0.02114579,0.01851527,0.053430118,-0.06918274,0.070586435,0.029054083,-0.07272084,-0.073260605,0.0033764362,-0.011878187,-0.03389185,-0.019551061,-0.004588239,-0.056023274,-0.045481306,-0.021366185,0.06887815,-0.081260405,-0.066775374,-0.056728743,0.068247996,0.038933035,0.045283146,9.1994695e-33,-0.044777744,0.029770102,-0.060573004,0.070798606,-0.010829332,0.049972434,-0.0041628755,0.036203984,-0.06387888,-0.007265792,0.0032958982,0.020463781,-0.019343834,0.048420094,0.08196727,0.03755959,-0.010006719,0.0055500753,0.043261535,0.019367917,-0.05991684,0.08035573,-0.017535446,-0.0097131785,-0.0009915492,0.053928252,-0.010078602,-0.057279497,0.0314231,0.032969415,0.019100659,0.053482857,-0.034807093,-0.021644305,-0.041725714,-0.020918656,-0.00404743,0.073789805,-0.057101827,-0.039406482,-0.03127346,0.025913352,-0.061594136,0.04152838,0.024171904,0.021551317,0.09555996,0.03991439,0.07088975,0.03334473,-0.11363446,-0.032166317,-0.14867146,-0.016423145,-0.004696284,0.04058402,-0.0831724,0.05235008,-0.0012450682,-0.11347537,-0.04389699,0.001180832,0.028907983,-0.030733379,-0.028044062,-0.0597762,0.02981212,0.051555745,0.1399825,0.06105808,-0.04215111,-0.012120783,-0.04828215,0.035037518,-0.040508058,0.03451077,-0.06647858,0.030595636,0.028701356,0.02953284,-0.045726847,0.01477162,-0.027363507,0.06507747,0.05777468,0.10491887,0.08812717,0.05659655,-0.022945656,0.13922909,0.036196146,0.10490705,0.009277478,-0.063029364,0.09169132,-9.8255554e-33,0.02183098,-0.032916218,-0.05137342,-0.048808157,-0.029505387,0.033358898,-0.0853718,-0.006490716,-0.004774457,-0.08119091,-0.097729035,-0.10193617,0.11219513,-0.028265746,-0.10585475,0.0423277,-0.011505969,-0.109711766,-0.03784084,-0.0031604334,0.001244441,0.057968616,-0.038531464,0.033438254,-0.04091267,-0.05044274,-0.111474805,0.073638566,-0.060404427,0.0018282111,-0.023796571,-0.010496919,-0.031143866,0.04925745,-0.018732954,0.066517755,0.036491957,-0.01416451,-0.020619407,0.06504262,0.038731504,-0.019647062,0.009681924,-0.052919194,0.04312235,-0.02698257,-0.064655624,-0.17473097,-0.0044760285,-0.026536029,0.11223635,-0.03777509,-0.06364991,-0.0125392,0.019775642,-0.013859601,0.016564418,-0.0058506634,-0.05640447,-0.0043836674,0.0027458174,0.07255431,-0.01507176,0.015836308,0.045057476,-0.016560491,-0.04116072,-0.0741778,0.024803609,-0.005725679,0.063182324,-0.033233687,-0.053015836,0.06952193,-0.026297182,-0.01328391,0.023536477,-0.011283223,0.018802611,0.009877567,-0.04928231,0.017143542,0.040771093,-0.041160278,-0.011725012,0.0072404062,-0.011612234,-0.02670686,0.004456112,0.05554128,-0.061508715,0.033469383,-0.065096125,-0.06548146,0.0046679494,-3.894966e-08,0.0039031913,-0.065140314,0.00924261,0.026625374,-0.036035467,-0.08743089,0.011143519,0.062877536,0.018228292,0.089679725,0.06497927,-0.024594827,-0.00049206574,0.06703615,-0.031683274,0.0039627426,0.12004459,0.06565881,-0.032272797,-0.07715586,0.009741978,0.0130830845,-0.071354575,0.018372925,0.02109142,0.013286585,-0.03359876,-0.055387102,-0.0050408742,0.032846376,-0.053352684,-0.046989277,-0.0040326617,-0.059769616,0.028140487,0.0045204847,-0.042427454,0.014770286,0.054412145,-0.03590358,0.07348508,0.008303475,-0.15298083,-0.038284093,-0.039348654,-0.13014498,-0.012212226,-0.037322786,0.0054699937,-0.012928137,-0.047475398,-0.06302093,0.04873711,-0.011476499,0.03766512,-0.080216005,0.025207821,0.068990685,-0.051906697,0.045070123,0.001714806,0.049262676,-0.014279994,-0.024214977} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:26.14812+00 2026-01-25 01:27:51.84245+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 247 google ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB 1 t 250 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excellent, friendly and beyond helpful service at both collection and drop off for car.\nShuttle to and from airport takes away the stress of trying to figure out the complicated roads in the area. Very quick and easy.\nWill defo recommend 👌 excellent, friendly and beyond helpful service at both collection and drop off for car. shuttle to and from airport takes away the stress of trying to figure out the complicated roads in the area. very quick and easy. will defo recommend 👌 5 2025-01-25 01:27:48.34062+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"A4.01": "Shuttle to and from airport takes away the stress of trying to figure out the complicated roads in t", "P1.01": "Excellent, friendly and beyond helpful service at both collection and drop off for car."} {-0.017270358,-0.019715752,0.015698982,0.011216253,-0.03740205,0.038781393,0.06404383,0.016748803,-0.043254033,-0.02632656,0.0020640604,0.062065132,-0.042188413,0.05349128,-0.023996746,0.0029350577,0.0844491,-0.066621795,-0.02165713,-0.06633418,-0.037671663,-0.028178615,-0.0086884415,0.010775389,0.0009943442,-0.00780186,-0.0008687465,0.014811233,0.03055176,-0.033922795,-0.039564155,0.07381172,-0.020250186,0.030041112,-0.016596975,0.013406943,0.048864305,0.00044078767,0.0001991301,-0.03370107,-0.028916318,-0.036353886,0.008418525,-0.00420331,-0.013623379,-0.05573925,0.047605243,-0.003820112,0.09470244,-0.040459946,0.02663347,-0.05074183,0.0492744,-0.010013166,-0.049513504,0.056457147,-0.04822846,0.0063046324,-0.062313385,-0.016606366,0.00508714,-0.05173353,-0.052752797,0.036941115,0.010692339,-0.02137481,-0.014724289,-0.06831216,0.041498583,-0.12596472,-0.08110659,0.056997556,0.009914537,0.053666517,0.03790868,0.013679767,0.0706217,0.017902564,-0.035238113,-0.031808265,0.047570337,0.023650434,-0.02756853,0.059319988,0.0054569268,-0.1161269,-0.020021891,-0.05202849,0.03174729,0.040714756,0.07178743,0.039564747,0.04903888,-0.041919813,-0.09094885,0.029849967,0.005723823,-0.07175678,-0.03817494,0.06524709,0.012892481,0.09469299,0.0032679676,-0.054269303,-0.06296558,-0.014787943,0.013737934,-0.011599728,0.037863422,0.040742613,0.01437321,-0.035920184,-0.04200819,-0.013475585,-0.101577796,0.087771446,-0.03504149,0.015482629,0.024716094,-0.0062534325,-0.07200622,-0.008839471,0.08917226,0.03939223,0.025710415,-0.006483999,0.08684873,1.7512702e-33,-0.047240436,0.033522442,0.014926879,0.063990094,0.018639492,-0.04902313,-0.1358112,-0.004993757,-0.055794187,0.019163292,-0.04846405,0.053137798,0.033154614,-0.009250868,0.06945552,-0.009308007,-0.05954761,0.021565542,-0.00021023447,0.008035991,-0.026174353,-0.06357523,0.04592983,-0.022589736,0.15000586,-0.0076787313,0.0059312037,0.051549528,0.16512635,0.042173907,-0.08857761,0.04347609,-0.046052847,0.025574442,-0.040416915,0.04017228,-0.15531337,-0.04591435,-0.028345156,0.021483915,-0.024867093,-0.049028218,-0.1101788,0.028220868,-0.020150544,0.030568171,-0.015773958,-0.01998156,0.041836854,0.06545206,-0.057940576,0.0097283535,-0.058534093,0.028931415,-0.03458797,0.03644933,0.022528835,0.019646205,0.03783603,0.042259395,0.034623433,0.021516541,-1.7677139e-06,-0.0031578215,0.020658655,-0.010377257,-0.024861068,0.029514233,0.06990761,0.024953818,-0.014796836,0.034698408,0.07226167,0.021504339,0.07557848,-0.016054017,-0.058438547,-0.047449883,0.030640429,0.058025777,0.012851336,0.054510497,0.024508517,0.045487687,0.10214617,-0.005558146,0.011114508,-0.1043224,-0.03248823,0.030906986,-0.0904864,0.09810445,-0.05932758,0.056587834,-0.0011356968,-2.7966058e-33,0.041467935,0.0026213902,0.023273956,0.010648324,-0.04071981,-0.007438805,0.013858649,0.047324717,0.03890216,0.09885901,-0.15702611,0.03122751,0.039475344,-0.02177384,-0.0034067377,-0.09163901,0.07838583,-0.098642945,-0.038977638,-0.040238384,-0.008725662,0.017255737,-0.00074044673,-0.09668231,-0.10308169,0.013635786,-0.048728496,0.034341455,-0.063454464,0.023142962,0.0026172188,-0.004218433,0.042790264,-0.066309914,-0.06357509,0.06419522,0.020499455,0.10371662,-0.034562692,-0.004745128,-0.042426463,-0.047177803,-0.0094350185,-0.074644566,0.004751427,-0.047967374,0.02730151,0.025098968,-0.06736051,0.004061973,0.016835054,-0.017969722,-0.08130238,0.07043069,0.037303027,0.027320888,0.0075652325,-0.0011357025,-0.010016629,-0.0051914337,-0.024896212,0.019167695,-0.073492855,0.04612369,0.06697341,-0.1523899,0.07168235,-0.06827547,-0.064920336,0.018941348,0.034363512,-0.03815249,-0.009174753,0.055982605,0.001928741,-0.005946303,0.1336679,-0.018655308,-0.015508079,-0.04930778,0.028803045,-0.06527318,-0.04271629,0.021557733,-0.008016633,3.0239074e-05,0.030340979,-0.032997727,0.037605412,0.12359126,0.022887219,0.0337918,-0.02713521,0.016061932,-0.0671514,-3.7886384e-08,0.019637903,0.02979304,-0.027959209,0.031078616,-0.05347849,-0.05887888,0.02179294,0.09860908,-0.090177305,-0.046217475,0.038993545,0.02196754,-0.15664606,0.14216633,-0.023153527,-0.01973862,0.075490855,0.073027946,-0.06783283,-0.015288528,-0.01224917,-0.0073951688,-0.008618343,0.047452208,0.0070569133,0.0058458457,0.0098134,0.020704817,0.046998266,-0.111048594,-0.08760187,0.055253822,0.0531055,0.07492054,-0.0041273544,0.0018269665,-0.018396981,-0.010913222,0.020936795,0.020073023,0.05551667,-0.04731259,-0.06357844,0.0036573207,0.018897915,0.025325371,-0.06598576,-0.024771273,-0.027626198,0.013047571,-0.052439053,-0.039180927,-0.0073654144,0.06397075,0.0727199,0.0074702287,-0.01377558,-0.08453109,0.03149489,0.10045125,-0.01777169,0.02509522,-0.07173773,0.00022964342} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:14.883865+00 2026-01-25 01:27:50.23761+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 556 google ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE 1 t 559 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Die Autovermietung ist fair und kann nur weiterempfohlen werden!\nMitarbeiter Huan war super freundlich und hilfsbereit, danke dafür.\nGerne wieder! die autovermietung ist fair und kann nur weiterempfohlen werden! mitarbeiter huan war super freundlich und hilfsbereit, danke dafür. gerne wieder! 5 2025-03-31 01:27:48.342556+00 de v5.1 P1.01 {} V+ I2 CR-N {Huan} {"A1.01": "Mitarbeiter Huan war super freundlich und hilfsbereit, danke dafür.", "P1.01": "Die Autovermietung ist fair und kann nur weiterempfohlen werden!"} {-0.09426323,0.024191938,0.007485218,-0.054762047,0.044486973,0.03551368,0.012975237,0.06344821,-0.058188617,0.048705783,0.0395885,-0.028499195,0.0006220343,0.0117596,-0.06673409,-0.030267192,-0.07342705,-0.022563607,-0.054560333,-0.035279308,-0.025799101,-0.08580722,0.012315471,0.044055644,-0.004616614,-0.09848336,-0.0203614,-0.029238,0.0660156,-0.026502563,0.0739569,0.021865504,-0.005220126,0.019842915,0.006319154,0.008464082,0.015294815,-0.07537353,-0.057630323,0.008183505,-0.007129869,-0.044945166,-0.030237412,-0.05335084,0.031485364,0.07526625,0.05166226,-0.011062334,-0.060728353,0.012465312,-0.027487958,0.010008592,0.0644448,-0.037195142,0.008091512,-0.06479856,0.0073510027,-0.03589108,-0.031242076,0.02015278,-0.013036994,-0.018192112,-0.06850722,-0.006676329,0.03599963,-0.012909529,-0.048495058,0.06373783,-0.046869043,0.02267962,0.081976004,-0.08513246,0.00395127,0.005981888,0.028590664,-0.06460057,-0.082908325,-0.06666396,0.014247151,-0.05023985,0.0067441035,-0.024620943,0.006594079,0.07177016,-0.052424826,-0.07056621,-0.022741897,0.02924954,0.0848313,0.009822513,-0.007899069,0.029487481,-0.070088714,0.041799784,-0.07301018,0.021634478,0.10466084,0.0060090264,-0.0027779334,0.0728623,0.052564744,-0.024308613,-0.026447365,0.017536292,0.022672513,0.004607824,0.021046553,0.053096488,0.0391841,0.008239527,-0.018223997,-0.039218623,-0.02899707,-0.09284239,0.01318819,-0.007307855,0.043114204,-0.04995517,-0.026589833,-0.09503214,-0.00031220558,-0.004868399,-0.04220455,0.0063115438,0.084793545,-0.031800326,0.0308841,9.954228e-33,-0.0309224,-0.04454286,-0.02874046,0.012742572,-0.03214381,-0.021342862,-0.020406539,-0.008229174,0.025463361,0.011861323,0.042881425,0.10105756,-0.055752806,0.0026722418,-0.00051063154,-0.101973414,-0.06839232,-0.03669749,0.074296474,0.0068267332,0.036248907,-0.036037803,-0.018844558,0.0014527852,0.026516527,-0.056927297,0.07858461,-0.008357078,0.045563072,0.05266846,0.06146271,-0.03130301,-0.01756311,-0.0041005784,-0.13149291,0.0259275,-0.06280897,0.08932249,-0.07826921,-0.049344357,0.046189994,0.00018375837,0.020005817,-0.06653651,0.031562094,0.01184717,0.054574665,-0.0076830476,0.06122018,-0.030405814,0.024224391,-0.031024963,0.007098932,-0.025467934,0.02337191,0.110763595,-0.029865267,0.015019624,-0.013839182,-0.014724179,-0.04339987,-0.098831005,-0.061806034,-0.0043917987,0.01804356,-0.018243762,0.082548484,-0.0018391168,0.010297139,0.036452748,-0.042392112,-0.0015420599,0.03566156,0.003519588,-0.017840005,0.12331457,-0.03686123,0.058206677,-0.11489958,0.02379946,-0.115513645,0.034346797,0.07805484,-0.010973087,0.012911993,-0.003209335,0.048354205,-0.002432216,0.07155961,0.06019373,0.010198097,-0.018752554,0.09412861,0.096635275,0.010384714,-1.1565637e-32,0.010152803,-0.0023514924,-0.04277582,0.027235107,0.086485595,0.03353254,-0.09165729,0.0671599,-0.009873339,-0.016067753,-0.004408489,0.0072007147,0.05476735,0.07437177,-0.043752536,-0.009858353,0.11538331,0.040807527,0.013583531,0.027954591,-0.0042084213,0.08179041,-0.008591576,0.025460698,0.029400907,-0.022260254,-0.077650055,0.025238918,-0.047740817,0.027844073,0.04595653,-0.0036824613,-0.0107074,-0.037811883,0.029594015,-0.045583535,-0.05400087,0.019439366,-0.027295094,0.11902787,0.09026852,-0.04149858,-0.10634958,-0.008596315,0.010418928,-0.03962911,-0.1556222,-0.13990438,0.025717035,-0.08062014,0.04468375,0.0029568719,0.032778926,-0.04280833,0.031755935,0.04356043,0.04086111,-0.01607771,-0.012867482,0.07615401,0.04381302,0.021360168,-0.009494562,0.007206678,-0.033808745,-0.0644236,-0.09853681,-0.03393218,0.034671977,0.045104407,0.050031256,0.06393309,-0.07481614,0.06365803,-0.0050395573,-0.025642209,0.052236214,0.020237768,-0.01793892,0.07081635,-0.0529978,0.06083678,0.019034201,-0.03223468,-0.18713184,-0.02741597,0.00020754733,-0.014868132,-0.0033892398,0.03046099,0.008223418,-0.028816596,0.007747605,0.01571456,-0.08332984,-4.5531152e-08,-0.023579929,0.0056902384,0.031125028,0.05908045,-0.109085575,-0.09498718,-0.017329752,0.0027930776,-0.044381317,0.060818825,-0.02948079,-0.06054877,-0.08453441,0.04612245,-0.04563092,-0.016907543,-0.018727757,0.11744718,-0.017352197,-0.04736482,0.094243184,-0.010742129,-0.010523738,-0.06438256,-0.065764286,0.061713997,0.01952584,-0.056540184,-0.0049453187,0.0033831783,-0.035977844,0.13508137,-0.09591219,-0.07284772,-0.06064339,0.06825674,-0.00204361,-0.059812043,-0.058147,0.057052877,0.07506891,0.09565157,0.027070664,-0.05596333,0.031427745,-0.076895595,0.009840161,-0.01375341,0.07745567,0.0007737797,0.014185995,-0.026460916,0.061091144,-0.03783985,0.037146676,0.014139337,0.05003915,-0.019770611,-0.08070378,-0.009485428,0.030273065,-0.05079029,0.05994935,0.04104197} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:46:55.019835+00 2026-01-25 01:27:51.845392+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 558 google ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB 1 t 561 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Encantado con el servicio que ofrecen y sobretodo con Dani que me entendió super bien. Volvería allí para alquilar otro coche por necesidad. encantado con el servicio que ofrecen y sobretodo con dani que me entendió super bien. volvería allí para alquilar otro coche por necesidad. 5 2025-01-25 01:27:48.34257+00 es v5.1 A1.01 {} V+ I3 CR-N {Dani} {"A1.01": "Encantado con el servicio que ofrecen y sobretodo con Dani que me entendió super bien.", "R1.01": "Volvería allí para alquilar otro coche por necesidad."} {0.017987963,0.006889768,-0.04079434,-0.070278086,-0.10266313,-0.076148145,0.04616055,0.027545834,-0.042199872,-0.019247279,0.029816855,0.020518472,-0.039213657,-0.020001153,0.06702016,0.015566285,0.092437096,-0.01747357,-0.019209627,0.013396741,0.09479613,-0.05429278,-0.10184212,0.08069994,-0.11481884,0.015553473,-0.07577551,0.04403782,-0.04207919,-0.087695435,-0.01187269,0.09086956,0.039965503,0.01163433,-0.03405332,0.047368027,0.04956281,-0.090509474,-0.0050723315,0.09100811,-0.1092044,-0.0076983487,-0.059844118,-0.0036277561,0.026443107,-0.055330414,-0.00617267,0.030004168,0.10570814,-0.039450478,-0.060001586,-0.015382101,-0.029601242,0.042746566,-0.024294348,0.016883621,-0.01019821,-0.005985538,0.040526558,-0.01120795,0.033713806,0.03445666,0.014428463,0.051525224,0.05535297,-0.055955056,0.016307876,0.021968674,-0.0622682,-0.026294673,0.086464494,-0.087483026,0.041804664,0.040056624,-0.0020528464,0.095015444,-0.008677903,-0.024752555,0.006269435,-0.08305915,0.027298894,-0.00039014386,-0.03314082,0.012550422,0.024058128,-0.014077273,0.0065957247,-0.041814886,0.13222727,-0.012708267,0.01952215,0.09321549,-0.06320469,-0.028911008,0.000290676,0.017484846,0.042774472,-0.061575323,-0.040424954,0.041981395,0.06594957,-0.057685547,0.068872064,0.007826393,-0.0008043932,0.04633215,0.023217713,-0.016376695,0.028892312,0.07252839,-0.12978686,-0.032484394,-0.01591622,-0.008269495,-0.060385995,0.012197364,-0.011414093,-0.0044872127,-0.026605401,-0.07434462,0.06347383,0.01350058,-0.113946624,-0.04521417,0.0055003064,-0.024349514,0.10413766,1.0027942e-32,-0.021959784,-0.008559241,0.0471836,0.073572144,-0.016414955,0.00959843,-0.03760343,0.031871926,-0.014732157,0.006992944,-0.02512481,0.097782545,0.026577167,0.009735452,0.022457026,0.001691249,0.0030104222,-0.009021412,0.03853563,0.0023889584,-0.041034143,-0.07995525,-0.035745192,-0.00038187715,-0.019718427,-0.0009000613,0.022177994,-0.06745349,-0.05251336,0.048374992,0.0021178036,0.0004883643,0.01327261,0.006082213,-0.053401623,0.018532649,-0.013148737,0.019965379,-0.061116077,-0.03323762,-0.0067575485,0.048397478,0.0063995793,0.041665424,-0.00408817,-0.007944562,0.04029672,0.037506912,0.08850263,0.002842965,-0.08500084,-0.109616995,-0.10525479,-0.025084553,-0.018015534,0.07601054,-0.02980061,0.05910408,-0.031276748,-0.07760205,-0.0013839933,-0.067631505,0.049800552,-0.046327177,-0.0337847,-0.043934546,0.011805164,0.023785766,0.12147806,0.0042281053,-0.071958415,-0.031486854,-0.01662314,0.06449677,-0.024511361,0.034530107,0.01673243,-0.028786397,0.00735193,0.049345516,-0.03748443,-0.011604477,0.050021295,0.05111581,0.11083151,0.058543578,0.06655329,0.012349546,-0.026227321,0.1228445,-0.0217341,0.10768419,0.06841623,-0.06152097,0.04973552,-1.13170704e-32,-0.0038502743,0.014213652,0.037302434,0.037846867,-0.02608231,0.0640789,-0.062834606,-0.04483431,-0.06184615,-0.019464277,-0.043233927,-0.110527776,0.10569976,-0.061319537,-0.11072492,0.05497115,-0.03426118,-0.07451582,-0.078623466,0.023342196,-0.03762562,0.046588544,0.052300375,-0.028834617,0.0043304674,-0.08132669,-0.04800965,0.0011731909,-0.07003511,-0.039701026,0.08185414,-0.03710932,-0.027474483,0.007939578,0.02878631,0.08770215,0.08883627,-0.018955387,0.024988452,0.040528953,-0.028588219,-0.01745701,-0.004969107,-0.02309054,-0.038423967,-0.01167418,-0.014988057,-0.17181025,-0.011954859,0.00036742393,0.109006405,-0.042470668,-0.0600604,0.034871142,0.042994153,0.0078005134,-0.06867115,-0.077696465,-0.09267096,-0.054494552,0.051679406,0.010304425,-0.067915194,0.00062034826,0.06894434,0.025474,-0.041169714,-0.017039066,0.011272957,0.025905,0.051284533,-0.0728419,-0.015585374,0.042632133,-0.019396009,-0.039553635,-0.027431792,-0.05112579,-0.04934968,0.027108505,-0.034052223,-0.005311551,0.022188153,-0.025365287,-0.05370391,-0.017600615,0.035211712,0.040458553,0.008463678,0.06954092,-0.007520075,-0.012798945,-0.063614756,-0.0705528,0.00020741274,-4.189795e-08,0.02486978,-0.024183832,0.017602028,0.017209435,0.013926521,-0.070640005,0.0041558105,0.04392229,0.032868072,0.13216344,0.0031994476,-0.030769499,-0.07755338,0.004873608,0.033155948,0.035671677,0.072018996,0.075564094,-0.02022941,-0.03344533,0.040693212,-0.038252834,-0.02872838,-0.009793351,0.075465016,0.034941643,-0.044571575,-0.03707484,0.0326568,0.0016490953,-0.0077039767,-0.024248967,-0.02890074,-0.09005086,-0.07968856,0.01507425,-0.037691038,0.0046210494,-0.023438614,0.0016434804,0.10364288,0.059779666,-0.08695469,0.009035037,0.014871561,-0.032317862,-0.031458843,0.07094754,-0.030337669,-0.020213418,-0.04908159,-0.05093263,0.14890516,0.026241878,-0.0113987,-0.0065766266,0.055817485,0.038345862,0.007035347,0.040584274,0.0071918485,0.04136129,-0.022663316,-0.0854886} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:10.037715+00 2026-01-25 01:27:51.852153+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1302 google ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB 1 t 1305 Soho Club unknown Gera mokykla gera mokykla 3 2025-01-29 18:34:31.336452+00 lt v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Gera mokykla"} {-0.023886053,0.05442135,-0.04025156,-0.022493657,-0.016007341,0.0033122236,0.14584969,0.021419695,0.050226726,-0.058807936,0.044589493,0.018624661,-0.035115607,0.022641538,-0.05553212,0.066316485,0.017561689,-0.022936108,0.011817177,0.013709543,-0.01054858,-0.040596094,0.014528008,-0.009747302,-0.0054526487,-0.025845515,0.039897922,-0.006991403,0.03309849,0.0046072924,0.04778313,0.057734527,-0.0019334999,0.03793526,-0.038333334,0.045739308,0.0062832893,-0.02108182,0.050202385,0.11921593,-0.05014698,-0.0014948939,-0.055415444,-0.012764795,0.054085173,-0.012940748,-0.022099592,-0.0597858,-0.012265027,0.009278182,-0.096525125,-0.09210196,-0.03445136,0.0028784366,0.007246952,-0.12076298,-0.0013080939,0.018256254,-0.0018294832,-0.0021513843,0.023114074,0.0042746505,-0.025303565,-0.00016589978,0.02477234,-0.08253866,0.005352701,-0.014159187,-0.08440545,0.057259288,0.013527237,0.022375936,0.012042581,0.007954331,-0.13057546,-0.058853496,0.039916605,0.05486598,0.03952578,0.03610401,0.08837011,0.00374564,-0.06784013,0.01877381,0.038180273,0.015431726,-0.043861173,0.031510476,0.061780855,-0.09798335,-0.011067633,0.005164284,0.02166752,0.026811944,-0.06609808,-0.011003087,0.029249426,-0.08157368,-0.013431847,0.1891386,0.0006237671,-0.014115737,0.032571137,0.066869296,-0.12464928,0.008674418,0.026227113,0.0050545726,-0.043366715,0.065290935,-0.09110935,0.018467102,0.02164763,-0.0044176723,-0.020126004,-0.022019925,-0.0042770114,0.05764487,0.009376988,-0.042447932,0.053945355,-0.0121195875,-0.02138184,0.018809916,-0.0065104277,0.06135397,0.011627309,1.6470997e-33,-0.007036788,-0.03779105,0.056781914,0.012174819,-0.00017618787,0.027243733,-0.004306519,-0.045496803,-0.011236427,-0.014488147,-0.040034406,-0.07083227,-0.05010522,-0.0402666,-0.02218698,0.14580351,-0.025382215,-0.01957265,-0.0052305614,0.057930466,0.042861417,0.048786405,0.047901787,0.028945355,0.0041115778,-0.07006342,0.08808701,-0.072867036,-0.02334418,0.012458809,0.06209885,0.01976879,-0.016816536,0.009511487,-0.026004776,-0.040478785,-0.040987603,-0.08611245,-0.031658035,-0.03903273,-0.045430876,-0.029204162,0.057843655,-0.018272828,0.0022882696,0.069892436,0.06718275,0.057908464,0.050589386,-0.019452797,-0.090635315,0.00011673076,-0.1832583,0.08498382,-0.058409918,-0.012556884,-0.033015843,-0.0036732617,0.026623908,-0.019937288,-0.038678654,-0.010073878,0.023041312,-0.06321354,-0.035175607,-0.09909614,-0.024846904,0.007981208,0.055424474,0.055377916,0.0031222214,-0.03950053,-0.0020190321,0.083386436,-0.111623734,0.008918824,0.074324675,-0.07988326,0.017033525,0.05409479,-0.061205193,0.027726216,0.07635705,-0.040602867,0.023559915,0.031993728,-0.068101704,-0.07955056,0.0069368607,0.10679409,-0.083785,0.011081806,0.03359214,-0.013589734,-0.07642249,-1.8825715e-33,0.0026370527,-0.05840658,-0.01346665,0.007999149,0.088503376,0.013307883,-0.05951612,0.013908898,-0.006454237,0.027627531,0.034202926,-0.080991425,0.081625365,0.06256622,0.04090727,0.036180902,0.09690855,0.05612883,-0.033609692,-0.08787727,-0.035818335,0.038868144,-0.029619722,-0.049140323,-0.021234471,0.010131233,0.08168818,0.05485767,-0.08162013,0.033948757,-0.029128805,-0.105703875,-0.11304679,0.054262824,0.057447057,0.0207873,0.06981735,0.05451552,-0.0052289553,0.09228552,-0.033391397,0.0029979926,0.016550476,0.09707451,0.0017823664,-0.026260518,-0.092715986,0.021536192,0.04846652,-0.063705236,-0.012441032,-0.019530183,-0.0018837336,-0.024734117,0.048693642,0.013984474,-0.0023024597,-0.07426805,0.008280185,0.018233208,0.07560579,0.046078525,-0.06994537,-0.008565246,-0.009553649,0.014819536,0.002310107,0.01107404,0.07112383,0.0070315963,0.032704387,0.030388657,-0.05289274,0.03094607,-0.067661,-0.010689502,-0.10643321,0.022240004,0.028908044,-0.06901701,0.0431298,-0.0061675534,-0.036345307,0.021296676,0.0630045,0.099645965,0.018619629,0.015337331,0.119022384,-0.028558599,-0.015469436,0.0995093,-0.0012548196,-0.005261204,0.0056941747,-1.6813233e-08,-0.04434526,-0.052508965,-0.078783445,-0.07267954,-0.042174235,-0.014394594,-0.013118841,-0.054308396,-0.018752323,-0.010854588,-0.0068140253,0.06155516,0.0093009975,-0.0030081447,-0.013928723,0.033035725,0.018832307,0.09462246,0.0038693547,-0.008393236,0.119313054,-0.033671595,0.0246432,0.035766587,-0.058221605,-0.0057816445,-0.0038604015,0.078579046,0.039355043,-0.013734057,-0.058215924,0.12390633,0.009241012,-0.040469613,-0.015187046,0.05740117,0.018449625,-0.007371051,-0.05149601,-0.018975483,0.013457688,0.052438263,0.094306804,-0.002685009,-0.029464658,-0.04518547,-0.00422316,-0.06478335,0.05685417,-0.017471457,0.019681819,-0.0075200414,-0.006279059,0.17556366,0.02141027,-0.022876417,-0.059029046,-0.015186516,-0.033918507,-0.026087342,0.029941991,-0.059697744,-0.00027542756,-0.048026185} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:29.04645+00 2026-01-29 18:36:00.719183+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 562 google ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB 1 t 565 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nos atendieron Carlos y Francisco. Fueron simpáticos y amables. Nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta. Muy recomendable. nos atendieron carlos y francisco. fueron simpáticos y amables. nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta. muy recomendable. 5 2025-01-25 01:27:48.34258+00 es v5.1 A1.01 {} V+ I2 CR-N {"Carlos y Francisco"} {"A1.01": "Nos atendieron Carlos y Francisco. Fueron simpáticos y amables.", "J1.01": "Nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta.", "R1.01": "Muy recomendable."} {-0.019335825,0.047518156,0.0055616694,-0.0016321134,-0.08313002,0.0144105675,0.018575506,0.061226495,-0.03481003,-0.021376323,0.07284285,0.011362887,-0.031190652,0.021066641,0.0069811777,0.05468494,-0.023075378,0.05719443,0.041753933,0.030290613,0.09786432,-0.03634938,-0.053338062,0.11561177,-0.03748821,-0.019180238,-0.011894175,0.03995931,-0.03737057,-0.08064421,-0.003559552,0.08546478,0.025413604,-0.030592907,-0.015485176,0.002244603,0.041446827,-0.046299435,-0.009070699,0.0042963717,-0.11566147,0.01135689,-0.02972899,0.06229364,0.014968805,-0.03478474,0.08779571,0.07594212,0.10104639,0.061747886,-0.050209306,-0.0664357,0.065333776,-0.041673303,0.009879983,-0.016728671,-0.018549176,-0.019817926,0.042072628,-0.021418966,-0.0017457552,0.026244996,-0.11029747,0.061508358,-0.05162444,-0.0233423,-0.0026769934,0.022991378,-0.0568918,0.038111623,0.07825098,-0.06825294,0.04060396,0.056487232,-0.051379714,0.06948872,-0.035349615,-0.02130189,-0.044170123,-0.019543815,0.024700468,-0.073282644,-0.047845133,-0.05714325,0.0580967,-0.026458403,-0.029759401,-0.0055487887,-0.006410499,0.024586359,-0.057552516,0.07758261,0.005260671,-0.048225556,-0.017805595,0.03025729,-0.02636828,0.023629319,-0.042508524,0.03432117,0.09271274,0.06681432,0.08540744,0.07381429,-0.10620102,0.09978418,0.049942195,-0.032669734,0.03295049,-0.03918296,-0.102282226,-0.01206877,0.0032075467,-0.09531115,-0.114186786,0.012675562,-0.022336558,-0.021163806,-0.07972362,-0.07442741,0.011405108,-0.01712717,0.013249026,-0.015779287,0.04742674,-0.07616938,0.059798904,8.0887794e-33,-0.07404174,-0.016190337,-0.07788847,0.10535395,0.030464124,-0.0247221,-0.04361069,-0.06413063,-0.08001231,-0.046631213,-0.046227306,0.016116634,0.0020218445,0.038784213,0.098355696,-0.007317625,0.011374855,-0.03937445,0.0026905448,-0.039012797,-0.022934048,-0.008410369,-0.029074145,0.003562755,0.00411782,0.018818725,0.019108944,-0.085152134,-0.06416261,0.075006,-0.052773092,0.050186977,-0.03412819,-0.021550046,-0.021993631,-0.03364706,0.032916486,0.0187578,-0.0034390339,-0.028840527,0.011076424,0.010936278,-0.07863794,0.032632984,-0.041944772,0.015495555,0.05184932,0.103603154,0.11773771,-0.020626102,-0.024402618,-0.06934188,-0.043422267,-0.08788507,0.044614248,-0.018735372,-0.020124678,0.084350646,-0.06680989,-0.006505041,0.026163101,0.061940264,0.012079594,-0.014489964,-0.037473794,0.028944215,0.013026221,-0.012315102,0.10089912,0.05579612,-0.06272432,0.0152472425,-0.01279043,0.039019506,0.07052548,-0.019967444,-0.012035686,-0.01305421,-0.025022844,0.022747671,-0.07620301,0.026961368,-0.02479743,0.032206602,0.033795986,0.031962525,0.09946173,0.06983463,-0.03651143,0.097463,-0.020306502,0.013297418,0.07138035,0.007505451,0.034338903,-8.1266634e-33,0.016558915,0.025382085,0.06900948,0.031839035,0.00042557262,0.017717926,0.004402203,0.028959574,0.011091333,-0.12702419,-0.1007301,-0.069100276,0.10623809,-0.04958941,-0.008180931,0.068034835,-0.008699688,-0.09877771,-0.10434574,-0.06612563,0.067781016,0.022339769,-0.005172879,-0.04375169,-0.05043128,-0.017656615,0.046869334,0.10920053,0.00042160973,0.026246943,-0.035743307,-0.0072408854,0.041129753,0.030968552,-0.036776423,0.18198495,0.032878917,0.09705219,0.00084001245,0.02969718,-0.04881434,0.05932116,0.003488593,-0.022017261,0.028289499,-0.02870784,-0.043153822,-0.11530305,-0.010490636,-0.090544485,0.084146485,0.0006860645,-0.036077697,0.00034841435,0.095538914,-0.014119085,-0.0054673785,-0.11246726,-0.062470056,-0.050564427,-0.020281386,-0.027240034,-0.038861208,0.033199076,0.01040269,-0.06391387,-0.05329249,-0.012012292,0.030704793,0.020868208,0.037936196,0.014905062,-0.05803202,0.07097144,-0.011017035,-0.0106508555,-0.01536752,0.06638869,-0.018926872,0.05675448,-0.026645482,0.03198251,-0.009360085,0.020747153,0.048214898,0.048817575,-0.02458383,-0.0487948,0.023232684,0.0059668114,0.07928001,0.03803035,-0.042956427,-0.073369935,-0.006468338,-3.4818143e-08,0.010208497,-0.022383414,0.04758246,0.011153153,0.0014259621,0.03046298,-0.03976248,-0.026181815,-0.050575882,0.03196259,0.082052894,0.036567,0.038922567,0.050079733,-0.04126935,0.0038102774,0.031387668,0.12823167,-0.034530826,-0.026582932,0.030877884,-0.0015276698,-0.03688946,0.01746663,-0.022832328,0.0060973554,-0.08551348,-0.081951864,0.034855343,-0.006040192,-0.02785034,0.0077248225,-0.028105875,-0.12661529,-0.060777098,-0.019171482,-0.03699624,0.009840696,-0.026027394,-0.082205154,0.08390259,0.017363748,-0.05399636,0.04341602,0.025272897,-0.092944354,0.02042557,-0.040475294,-0.036553375,0.050176613,0.024347674,-0.044714823,0.066097416,0.036592737,0.004605957,0.029863358,-0.05959685,0.02548884,-0.023732277,-0.04976265,0.013782348,0.0865581,0.0019732649,-0.03126491} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:50.803684+00 2026-01-25 01:27:51.875128+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 563 google ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE 1 t 566 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Recomendable 100%. Fuimos atendidos por Carlos y fue muy amable con nosotros. Si volviéramos a la isla sin duda repetiríamos. recomendable 100%. fuimos atendidos por carlos y fue muy amable con nosotros. si volviéramos a la isla sin duda repetiríamos. 5 2025-01-25 01:27:48.342582+00 es v5.1 A1.01 {} V+ I3 CR-N {Carlos} {"A1.01": "Recomendable 100%. Fuimos atendidos por Carlos y fue muy amable con nosotros.", "R1.01": "Si volviéramos a la isla sin duda repetiríamos."} {0.034878,0.05611232,-0.07388583,-0.02272445,-0.0014931252,0.0052738097,0.04209586,-0.03535481,-0.03325083,0.014299099,0.08529879,-0.031638104,-0.045905873,0.063276514,0.051049266,0.03189384,0.03364391,0.058956712,0.047043417,0.024197383,0.038486894,-0.01238233,0.001781572,0.050554026,-0.04877655,-0.01412668,0.030011728,0.05065229,-0.09736721,-0.09532776,-0.0049981764,0.08709112,0.030483227,-0.04389554,-0.03999382,0.013592239,0.03294567,-0.117536336,0.009046811,0.07059673,-0.08449596,0.038087796,0.029150018,0.020094465,-0.02555037,-0.064722426,0.009603715,0.059421603,0.075513616,0.012204464,-0.03516878,-0.047842454,0.017182533,-0.003936309,-0.023680592,-0.0068106395,0.0066886,-0.054429527,0.018204663,-0.050411165,0.047477443,0.03562947,-0.095815696,0.046557307,0.00027310775,-0.01532022,-0.009886841,0.055487294,-0.08742509,0.056326415,0.04278447,0.04550599,0.0902422,-0.006236969,-0.031040989,0.06252387,-0.013693494,-0.029207826,-0.033868793,-0.014378963,-0.0170748,0.0038915405,0.016752215,-0.09891199,0.04994644,0.026150037,-0.025425421,0.015258602,-0.012061227,-0.014569269,0.047391206,0.10864978,0.033497088,-0.015452991,0.039372317,0.08266476,-0.04478636,-0.03409952,-0.06418624,-0.0015771396,0.03542809,0.02119912,0.022070834,-0.0056325803,-0.0058569033,0.0377369,0.010828277,-0.020722322,0.04795461,0.02776547,-0.13307986,-0.043075636,0.019961994,-0.008352699,-0.021347633,-0.03916553,0.045755222,0.008320847,-0.048860613,-0.098533764,0.049103223,-0.009385718,-0.005161333,-0.04961557,0.060125876,-0.012847591,0.014736611,9.598011e-33,0.01237207,0.019095914,-0.10405133,0.041219294,0.060490772,-0.04583784,-0.040664934,-0.04437186,-0.085874125,-0.040095367,-0.10993478,0.029072287,-0.03903941,0.093662746,0.048056696,0.0142681105,0.019897617,0.031818602,-0.013496748,-0.032246612,-0.06571028,0.0451188,-0.0005253496,-0.039961893,0.019398343,0.022597546,0.014952525,-0.06591411,-0.0070805294,0.049058065,-0.080976985,0.05119141,-0.035759576,-0.09139103,-0.010434614,-0.013164739,-0.025343902,0.018337406,-0.046789188,-0.015883787,-0.0066272323,0.058571354,-0.0024531488,0.05845872,0.01055557,0.027465895,0.07154501,0.08841416,0.13610505,0.04263766,-0.08647766,-0.07941929,-0.07991434,-0.07085436,-0.012251536,-0.038153727,-0.07493457,0.0828797,-0.00018415782,-0.066142835,0.010442264,-0.009041079,0.052986644,-0.080933474,-0.069891624,0.024643792,0.0050537046,0.03634797,0.11317222,0.05308002,-0.037949912,-0.018855155,-0.0309664,0.03804106,3.6136185e-05,-0.012189148,0.05919397,-0.05651992,0.0056512463,0.046487708,-0.061462034,-0.031257384,-0.04314083,0.048481643,0.0699281,0.053930365,0.10129867,0.019387692,0.0068585128,0.07496918,0.009746407,0.04262237,0.10904132,-0.07756585,-0.021405723,-8.267943e-33,-0.029767277,-0.016066099,0.030250017,0.077785894,-0.024778102,-0.0037569858,-0.07580577,0.005444313,0.049628012,-0.11270625,-0.15218696,-0.08207888,0.074865535,-0.14183874,-0.09668837,0.021091651,-0.020761445,-0.071117826,-0.03641146,0.011839613,0.016844746,0.06827467,0.0006435394,-0.007568278,0.032819033,-0.009876136,0.021653654,0.010880046,-0.029090289,-0.026223723,0.0128634665,-0.024504494,-0.042334463,-0.03509254,-0.058940433,0.09048584,0.037651,0.008891585,0.06202571,0.07873599,0.07452604,0.053553108,-0.07381909,9.591854e-05,-0.03939134,0.04226738,-0.00013260992,-0.102802105,-0.010299554,-0.047852453,0.03474673,0.007714357,-0.045830786,0.026643878,0.07645953,-0.050553523,-0.07105693,-0.02460626,-0.031288624,-0.033361524,-0.08361552,0.009068337,-0.008133579,-0.017943263,0.09417701,-0.005577283,-0.009588987,0.07210251,0.04199979,0.07287649,0.024894465,-0.010943965,-0.09152529,0.016459933,0.010679675,-0.03492532,-0.058567338,0.03190782,0.019233054,0.1019316,0.033217676,-0.00418403,-0.068029694,-0.031215895,0.069718346,0.027371965,0.014163586,-0.057551567,0.032048214,0.053879797,0.04145451,0.0010981385,0.024037017,-0.025686791,-0.014382067,-3.592149e-08,0.058459975,-0.011323229,0.035523906,0.019995688,-0.031156922,-0.021771753,-0.030797962,0.031216066,-0.014037994,0.106060244,0.05300301,0.016345212,-0.009339182,0.047141604,-0.08657972,0.0035943019,0.07646758,0.123584636,-0.05053864,-0.028528742,0.06385865,0.075894035,-0.027409658,0.00700074,-0.014592253,0.058957573,0.012222323,-0.0357417,0.0068206694,0.0046096067,-0.048583493,-0.04310055,-0.077983715,-0.07519573,-0.022135876,-0.009479789,-0.07744906,-0.040670883,-0.014193537,-0.06578609,0.124050006,-0.025003249,-0.04125202,0.028837485,-0.042916548,-0.1535769,0.01857687,0.009714103,-0.041610617,-0.015432393,0.00594426,-0.023632627,0.020345062,0.047554553,0.04433827,-0.022272285,0.047371197,0.06423489,0.008543647,0.03508725,0.057116333,0.051601022,0.020150438,-0.05128665} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:38.560803+00 2026-01-25 01:27:51.883076+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 564 google Ci9DQUlRQUNvZENodHljRjlvT2taUGRHVnhXbXd4WTNsUlJ6STRjRzFZY1hkdWNrRRAB 1 t 567 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super amable, profesional, sin problemas y buena gente! :) super amable, profesional, sin problemas y buena gente! :) 5 2025-09-27 01:27:48.342583+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Super amable, profesional, sin problemas y buena gente! :)"} {-0.036193732,0.06070979,0.008755148,-0.03499984,-0.059635732,0.06730138,0.10156492,0.012084692,-0.014904586,0.05160877,0.040166896,0.04941742,-0.014930104,0.0037568326,-0.05745372,-0.006667173,-0.08349023,-0.005046663,0.006552864,-0.034290254,0.10127969,0.038340833,-0.051215332,0.016902205,-0.11458844,0.021565413,-0.017453738,-0.060134653,0.03494046,-0.057169635,-0.022773445,0.15427633,0.037776835,-0.018240225,-0.045891996,0.029639805,0.02173034,0.012409517,0.03573907,-0.009114849,-0.13834473,0.032749742,0.03128103,-0.068899006,-0.0022124043,-0.11588476,0.014081832,0.09598719,0.010224586,-0.06349409,-0.11792402,-0.06187187,-0.04883055,0.010689788,0.051187806,-0.02195895,-0.021253105,-0.069479,0.014871516,0.012678807,-0.0019078873,0.04929133,-0.04818312,0.010297825,0.04500805,-0.015859455,0.07141949,0.03923119,-0.1075797,0.117155604,0.048399158,0.034381207,-0.054740578,0.11585543,0.033857953,0.027929563,-0.12059898,-0.05666804,-0.03300559,0.014583656,-0.0055044787,-0.016318375,0.042676512,-0.0010858626,0.02513551,-0.033179637,-0.01955518,0.021328498,0.07977936,-0.022516154,-0.030619945,-0.0035198955,-0.032014936,0.0007015764,0.003136695,0.0039805793,0.024194751,-0.06713706,-0.022043413,0.021399029,0.02473194,0.041940115,0.11335789,0.079378396,-0.0059535024,0.07680982,0.03370236,0.019063065,0.03100124,-0.0016085686,-0.041807503,-0.026532695,-1.3409699e-06,-0.062194265,0.016976481,0.04737887,0.016809687,-0.024190934,0.01486321,-0.07827766,0.055671584,0.10041381,0.01650644,0.0060631684,-0.03175879,-0.0277031,0.053923927,-6.8906703e-34,-0.031557184,0.062029473,-0.03255827,0.08895584,-0.039400123,-0.0038746246,-0.030080382,0.022834547,0.025274357,0.015094288,-0.016587606,0.05875477,0.03418509,0.058781277,0.072854534,-0.026895316,-0.06721713,-0.047252957,-0.024603095,0.013364765,0.005789052,-0.027118627,0.038087174,-0.028337892,-0.044415966,0.004401391,0.059192978,-0.07501912,0.092007965,0.04141916,0.0053322027,0.028659504,-0.014639601,0.015309306,-0.022654166,-0.056364115,0.017864518,-0.028874759,0.032199036,0.018960511,0.036872298,0.0059509673,0.009055026,-0.007841035,0.0110443,0.07774302,0.06582104,0.014158172,0.030086467,0.050660428,-0.1165239,-0.055093482,-0.033383925,-0.04259496,0.028237602,0.049434673,-0.034014437,0.02669016,-0.054953102,-0.035138763,0.008914687,-0.029361263,0.067245014,-0.075106256,-0.07612606,-0.04800733,-0.037012715,0.020210909,0.10750314,0.053862233,-0.046088386,-0.01811975,0.057910133,-0.030774362,0.05447612,0.012529496,0.00016240553,-0.01002227,-0.020313503,0.028819237,-0.058888298,0.036618546,0.00575605,-0.044163555,0.10064978,0.024412408,0.08438167,-0.051375676,-0.024949798,0.0723333,-0.01704345,0.07727049,0.09837348,-0.037804715,-0.005307495,-1.8785404e-33,-0.039781924,-0.012400983,-0.02227878,0.050113566,-0.00897704,0.019368317,-0.02342083,0.0884416,-0.043086525,-0.06450722,-0.06506816,-0.062244467,0.044007335,-0.025999986,-0.077935725,-0.028215505,-0.011943031,-0.058593675,-0.07644095,0.03968721,-0.052170485,0.048317842,-0.022956425,-0.02978503,-0.011973088,-0.0026324105,-0.0056231627,0.004655863,-0.02053814,-0.0033551923,0.01291848,0.082162894,-0.086851776,-0.026333192,-0.018793873,0.06262399,0.03298222,0.011349796,-0.07313365,0.056348413,-0.008462122,0.03794059,0.0020030898,0.030806927,0.008519515,-0.028073354,-0.017064527,-0.067391954,-0.00905464,0.0031310644,-0.03461036,-0.054078933,0.013026684,-0.038288303,0.014486328,-0.06214284,0.026095714,-0.012420107,-0.02964415,0.033576045,0.060274005,0.003825843,0.060709797,0.042603906,0.085833624,-0.05599301,-0.025996564,0.06926922,-0.07623515,0.055228394,0.0636657,0.033741694,-0.094040975,-0.015947819,-0.04098133,-0.016261585,-0.06717847,-0.038209364,-0.054515425,-0.0061633824,0.012748017,0.05734576,-0.044182632,-0.10607554,-0.10254534,-0.01771985,0.0054827644,0.053901214,-0.0026785901,-0.034481484,-0.02585257,0.040313598,-0.10715416,-0.054511733,0.039001036,-2.2482576e-08,-0.041215375,-0.019111015,-0.036507722,-0.04760133,0.040727627,-0.09241026,-0.0362756,0.027627395,-0.0009049142,0.013624162,-0.036994867,0.020585028,-0.027232686,0.08652123,0.009658537,-0.052858513,0.030371739,0.13473023,-0.015224228,-0.18627445,0.120311916,0.044508655,-0.047512017,-0.01281447,-0.09890992,0.025658693,0.056239232,-0.054198924,-0.038002405,0.08130495,-0.01191806,0.054122917,-0.047217507,-0.057226405,-0.022789232,-0.017197488,0.0134678865,-0.058442116,-0.024895433,-0.03638385,0.08670088,-0.033942282,-0.033468638,-0.009172138,0.01501151,-0.09778763,0.03743739,0.08641804,0.021598715,0.015869422,-0.02854886,0.023335682,0.0161937,-0.05705879,0.08566773,0.005528013,0.05927177,0.022011057,-0.0818148,0.028086182,0.11625331,0.05886346,-0.0026296184,-0.04370544} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:29:56.754718+00 2026-01-25 01:27:51.885613+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 566 google ChdDSUhNMG9nS0VJQ0FnSUNIdm9XNXF3RRAB 1 t 569 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Fuimos atendidos por Carlos y Antonio y la experiencia fue estupenda. Muy amables y en lo relativo al coche todo genial. Repetiré fuimos atendidos por carlos y antonio y la experiencia fue estupenda. muy amables y en lo relativo al coche todo genial. repetiré 5 2025-01-25 01:27:48.342587+00 es v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "Fuimos atendidos por Carlos y Antonio y la experiencia fue estupenda. Muy amables y en lo relativo a"} {0.002014426,0.03707758,-0.034364227,-0.004792708,-0.036971636,0.017172951,0.029180303,-0.016405031,-0.029772772,0.046114955,0.064222366,-0.005883519,-0.00011892298,-0.030734112,-0.017451297,0.052394018,0.008096181,0.049428936,0.028261306,0.014628745,0.118538365,-0.045882616,-0.018866755,0.047299117,-0.03455092,-0.032453813,-0.003048602,0.056544192,-0.061762843,-0.068269074,0.006424961,0.04458548,0.08159186,-0.054631554,-0.0048350813,-0.010173305,0.05157833,-0.022195157,0.0087072,6.178806e-05,-0.08781007,0.034732733,-0.03226083,-0.0016034484,-0.019972306,-0.07791097,0.057040576,0.053078033,0.05262209,0.01377756,-0.028926225,-0.0010872649,0.010629352,-0.0057593156,0.018397843,0.028021565,0.036533356,-0.0042781797,0.04633231,0.032847673,0.047216594,0.057069503,-0.07721481,-0.015486158,0.01098947,-0.00430671,0.02680564,-0.014382575,-0.08798403,0.00012162448,0.093794905,-0.016469106,0.10239707,-0.0011118045,-0.00945937,0.07332694,-0.0065701366,0.017378792,-0.039142326,-0.028440785,-0.03210933,-0.019318499,-0.051634356,-0.06470725,0.04770507,-0.028989311,-0.028846197,-0.0037410439,0.005510356,0.058500435,-0.014836347,0.08469641,-0.0048763864,-0.024030572,0.015006225,0.031614363,-0.0021136221,-0.01775154,-0.031256545,0.04571659,0.09019152,0.038979057,0.078825854,0.063020356,-0.02291759,0.033848934,0.009377317,-0.04555233,0.006284696,0.019410297,-0.051973272,-0.063763,-0.028246563,0.025754247,-0.046159837,-0.030964,0.024425972,-0.013306233,-0.12420763,-0.13663183,0.07894298,0.025670256,-0.03612883,-0.03873136,0.07531576,-0.016979493,0.0077446126,1.0493834e-32,-0.014554947,-0.023687065,-0.067636654,0.070310615,-0.013554376,0.017457508,-0.026333626,-0.002522409,-0.085129976,-0.07302504,-0.023072606,0.10143918,0.067182995,0.048967384,0.025237635,0.041774742,-0.053113908,0.07510986,0.034014978,0.012249152,-0.11410441,0.0088538425,0.0057085636,0.0230175,-0.0034325644,0.11092521,-0.01681152,-0.07401898,-0.06497118,0.025883682,-0.03296273,0.06477103,-0.017265778,-0.05921659,0.0062423577,-0.036224935,0.08480976,0.020839313,-0.02078281,-0.075735584,0.05168938,0.08159897,-0.031572644,0.04458899,0.0081268335,-0.030236823,0.040305376,0.035073955,0.124248646,0.016831387,0.009611738,-0.09730272,-0.00743355,-0.0748142,0.003027731,0.013541038,-0.12274799,0.10093707,-0.006669494,-0.047181107,0.061144467,0.041656293,0.06845746,0.015058619,-0.067462206,-0.023936722,0.0053701038,0.038393065,0.12784965,0.07955503,-0.066837564,0.0144497845,-0.058978323,0.051840547,-0.013451247,-0.005908083,0.030186884,-0.0059441812,-0.017205305,0.0265199,-0.061059967,-0.043644857,-0.00480043,-0.044650275,0.09099498,0.075326525,-0.013005365,0.018750787,0.002999532,0.10680678,0.050507825,0.07892845,0.04030683,-0.017249439,0.04511833,-1.06171524e-32,-0.06585455,0.03584108,0.039699245,-0.033332393,-0.014095112,-0.03082809,-0.03386971,-0.024066046,-0.0067505236,-0.1439676,-0.10631645,-0.12548093,0.16335602,-0.07329109,-0.06821266,0.014430787,-0.032593686,-0.076005064,-0.03841249,-0.046799395,0.020367293,0.062480766,0.06529729,-0.038585413,-0.02231991,-0.04801973,-0.03449063,0.041274704,-0.03187352,-0.028746279,0.10974442,0.035870973,-0.026300257,-0.023635518,0.005533668,0.09835836,-0.023708995,0.065235294,0.07494684,0.037030444,-0.007003736,0.09766556,-0.021609705,-0.035431053,-0.013973904,0.074855715,0.0067766076,-0.15773027,-0.042871177,-0.0724031,0.02884848,-0.008698176,-0.09399701,-0.029925806,0.029973954,-0.0140254805,-0.041483395,-0.01342403,-0.07879246,0.04135814,-0.019949984,0.056364216,0.013968972,-0.039909527,0.035269078,0.00925808,-0.03175602,0.027311588,0.041285947,0.08589925,0.120120764,-0.017215291,-0.09629299,0.033595543,-0.013154678,0.039527867,-0.13597178,0.07552608,-0.041660503,0.031159932,-0.0066278093,0.060112145,-0.00067024515,0.0038592455,-0.031455167,-0.0188785,-0.039019983,0.012955598,0.0025895748,0.029232513,0.011426394,-0.08804876,-0.06355575,-0.08057357,-0.060230404,-3.6795402e-08,0.028166363,-0.01046735,0.009822881,-0.008078491,0.0053718537,0.036010977,-0.03885225,0.031467754,0.027907465,0.045132127,0.0004817885,-0.026374394,-0.008900946,0.023142377,-0.027250694,0.00031784846,0.07628172,0.049774792,-0.046089467,-0.07491317,0.025919255,-0.02959127,-0.05700601,0.043398228,0.006022421,0.0013041775,-0.07606837,-0.039729364,-0.067450725,-0.0029640077,-0.0055063763,-0.010999843,-0.026061835,-0.117400065,0.017876796,-0.024129735,-0.017764544,-0.012550636,-0.011919632,-0.06819328,0.09130808,-0.0076004164,-0.047409933,-0.016085213,-0.03525445,-0.09846531,-0.04268901,-0.0033277604,-0.037885837,0.04162635,-0.025090542,-0.06780411,0.02814499,-0.0055358554,0.021566588,-0.040688995,0.027733972,0.03983505,0.0072078444,-0.020944552,0.04219024,0.08115171,0.053824097,-0.054821387} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:31.634054+00 2026-01-25 01:27:51.890988+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 567 google ChdDSUhNMG9nS0VJQ0FnSUNId2NXWTd3RRAB 1 t 570 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto. Súper rápido y sin ningún problema tanto en la reserva como con el coche. Gracias Antonio por tu ayuda y gestión. Totalmente recomendado!!! todo perfecto. súper rápido y sin ningún problema tanto en la reserva como con el coche. gracias antonio por tu ayuda y gestión. totalmente recomendado!!! 5 2025-01-25 01:27:48.342593+00 es v5.1 J1.01 {A1.01} V+ I3 CR-N {Antonio} {"J1.01": "Todo perfecto. Súper rápido y sin ningún problema tanto en la reserva como con el coche. Gracias Ant"} {-0.00424202,0.022403305,0.017763311,-0.029605286,-0.083735764,0.0022429186,0.011571668,-0.00917189,-0.10169472,-0.005099527,0.05831128,0.01747486,-0.052056175,-0.004540912,0.054298963,-0.047873452,0.0035421567,0.04064235,0.02584471,-0.07874612,0.102538176,-0.085628115,-0.0780155,0.0734829,-0.11618064,-0.054905716,0.014923233,-0.0075340434,0.0048626973,-0.11086072,-0.009980032,0.13557296,-0.018747026,-0.026715113,-0.09080652,0.014305752,0.03148278,-0.08274668,-0.030792607,0.038060263,-0.1040344,0.04589484,-0.0021301042,-0.061600726,0.0622287,-0.043918192,0.034578353,0.08959271,0.089074664,-0.06343943,-0.09190842,-0.04203195,-0.050761748,-0.0011414296,-0.011294178,0.037300665,-0.030656978,-0.046592854,0.08331005,0.020365957,0.039856657,0.018517075,-0.016195739,0.01340358,0.03297354,-0.018294943,0.037313573,-0.021896036,-0.054175746,0.093379654,0.094319135,0.026919976,0.032356083,0.036365338,-0.0020365734,0.052372023,-0.022173613,-0.03790699,-0.059189953,-0.015402723,0.035176307,-0.0121006975,0.006425974,-0.026676739,0.025633687,-0.013662436,-0.04737149,0.06207128,0.048219953,-0.06871955,0.04390399,0.07999416,-0.05795747,-0.008285432,-0.027594907,0.06177297,0.006734395,-0.027643872,-0.040652666,-0.007290191,0.06642786,0.011094547,0.05599637,0.05085985,0.00017136779,0.06479923,0.08057009,0.013758131,0.042563856,0.023017518,-0.04548992,-0.021655014,0.0186918,-0.029299013,-0.07710769,0.0151534155,-0.008607878,-0.03379008,-0.022312514,-0.06879043,0.06677962,0.049295485,-0.0300121,-0.04987661,0.017833767,-0.020484779,0.083446264,1.1757085e-32,-0.049006145,0.0041340403,0.011150487,0.022378562,-0.035721377,-0.055739112,-0.04677518,-0.008806345,-0.031133123,-0.026600113,-0.035900198,-0.03180286,0.0014578445,0.009331411,0.006862044,-0.04630521,-0.002282703,0.0022971928,-0.007380452,0.026740024,-0.02721638,-0.15104158,0.013815199,0.016213981,-0.034529068,0.07734104,0.04593645,-0.06999667,0.01108197,0.03855967,-0.05074711,-0.007765488,-0.041823436,0.021749627,-0.043844435,-0.09041476,0.03832598,0.04035422,-0.021233972,-0.003100697,-0.0042312695,0.083292104,-0.024053678,0.0018961258,0.0034848705,0.00829321,0.007703447,0.07874266,0.09361176,0.052604627,-0.09956575,-0.033661928,-0.08713023,-0.05130746,-0.026887646,0.058873486,0.005718777,0.020243807,0.021046545,-0.015867982,0.01926805,-0.031576216,0.039972454,-0.0600232,-0.051723946,-0.003376597,-0.010291009,0.022878375,0.12581335,0.04669664,-0.05294646,0.0020076188,0.051354196,0.0024283808,0.06560993,0.030530857,0.070078485,0.011679744,-0.054972496,-0.0016947209,-0.021017632,0.03239174,0.003104604,-0.04948956,0.056520734,0.069711015,0.05160788,0.014857428,-0.019251153,0.081244916,-0.016309226,0.16110477,0.08821564,-0.02987366,0.0509386,-1.1120186e-32,0.030093027,-0.016710177,-0.02346586,0.022617789,0.033546083,0.016582191,-0.045193806,-0.017746001,0.022192609,-0.11919919,-0.07419448,-0.11433219,0.028078219,-0.026667573,-0.0663212,0.021622673,0.040222485,-0.06966334,-0.041000485,0.034325074,0.0054064756,0.09061168,0.01172826,-0.033240244,-0.041183565,-0.039199553,-0.045094207,0.030034093,-0.03926765,0.046722043,0.059700068,-0.051028524,-0.04023562,-0.03653324,-0.029210297,0.029702883,0.041322418,-0.024728483,9.6153104e-05,0.06344085,0.03162876,0.042693228,-0.012275528,-0.02700444,-0.0044751074,0.040243138,0.008308421,-0.07991445,-0.11491128,0.05152295,0.07127764,-0.122897826,-0.055532504,-0.06341506,0.09735517,-0.006588346,-0.0025755581,-0.13681288,-0.061656382,-0.007604279,0.024220606,0.023284463,0.033112444,-0.056934528,0.10407374,0.0012692771,0.010703887,0.017416598,0.064168714,0.08591906,0.023909643,0.0646874,-0.03462122,0.04909606,-0.042490374,-0.057105023,-0.07193789,0.024626851,-0.024819715,0.012118827,-0.031785686,0.050124012,-0.012127808,-0.040720817,-0.034166973,0.0018214552,-0.032870404,0.021069096,0.027869683,-0.020249343,-0.04330953,0.037958156,-0.011403722,-0.009647614,-0.009145252,-4.3860524e-08,-0.019971648,-0.037077226,-0.04154485,0.03765052,0.085315205,-0.06727685,-0.044690777,0.050454162,0.010280918,-0.010532578,0.0012067659,-0.066731505,0.0040958542,0.084545024,-0.046194606,-0.0053473962,0.13021079,0.104331285,-0.05657976,-0.12897152,0.10299178,0.011781178,-0.036132466,0.00711047,-0.016279606,0.052331325,0.032653987,0.0025576642,-0.015623555,-0.030037057,-0.08507763,-0.056720816,-0.02218172,-0.07733174,0.05551324,-0.0040134815,0.06705497,0.075737685,0.0009538766,-0.054138925,0.05597453,0.03027856,-0.060360875,-0.021322114,-0.058314618,-0.10118942,0.034010492,-0.023813693,0.008386238,0.0624961,-0.0391728,-0.030852657,0.06742107,0.04179073,0.07111715,-0.013251986,0.038050897,-0.024664447,-0.041985396,0.004148135,0.06795034,0.08372977,-0.040927112,0.0040535047} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:26.765806+00 2026-01-25 01:27:51.894169+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 568 google ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB 1 t 571 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muchas gracias a todo el equipo de Click en Ojos de Garza, Carmen, Antonio, Nestor y sus compañeras que nos han atendido perfectamente y con gran amabilidad. Repetiremos sin duda. Un saludo cordial muchas gracias a todo el equipo de click en ojos de garza, carmen, antonio, nestor y sus compañeras que nos han atendido perfectamente y con gran amabilidad. repetiremos sin duda. un saludo cordial 5 2025-01-25 01:27:48.342601+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Muchas gracias a todo el equipo de Click en Ojos de Garza, Carmen, Antonio, Nestor y sus compañeras ", "R1.01": "Repetiremos sin duda."} {-0.06943526,-0.0021829796,-0.01853141,-0.043527924,-0.06642854,-0.016407784,0.038942277,-0.005892618,-0.035798144,0.049626205,0.08115623,0.06980251,0.0313131,-0.012002925,0.011231948,0.020624213,0.017546846,0.052901916,-0.001488744,-0.0014063338,0.08215904,-0.05876483,0.0021430845,0.075274765,-0.04786589,-0.06156565,0.02414241,-0.012740992,-0.053630453,-0.015782403,-0.025140299,-0.010580176,0.12473535,-0.019393442,-0.015559305,-0.02565779,0.041371886,-0.11727674,-0.049023554,0.021366065,-0.073278055,-0.0024448566,-0.02351358,-0.04552525,-0.016130414,-0.14140505,0.015583508,0.05796563,0.02870791,-0.04445102,-0.041081365,-0.051984545,-0.02009657,-0.10081211,0.03290344,0.039506562,-0.049853615,-0.032721933,0.07551052,0.046416778,0.05416007,0.054386906,-0.08742015,0.07431178,-0.015062032,-0.04089832,0.019698957,0.03136289,-0.05073464,-0.016057596,0.055242512,-0.062238175,-0.004601082,0.044273205,-0.053528406,-0.017107997,-0.0037478928,0.01679474,-0.07514919,-0.03205897,-0.028382055,-0.028025081,0.015583776,-0.07316377,0.018699836,0.0017778702,-0.011464419,0.06483466,0.013666941,-0.047616564,0.019742552,0.08219525,-0.018546369,-0.0034924867,-0.058784105,0.007758138,0.07440128,-0.03304618,-0.024814356,0.054435287,0.10347716,0.033100788,0.064692184,-0.013513084,-0.02147401,0.07851074,-0.0014316752,0.0043331613,-0.022578869,0.055328473,-0.06498748,-0.03180809,-0.07355798,-0.013255247,-0.042157784,-0.018659499,-0.032787807,-0.016484326,-0.0045025833,-0.10648147,0.057802167,0.0059522158,-0.03495294,-0.04752194,0.05723776,-0.024311706,0.0611671,1.04397586e-32,-0.05049588,0.0341436,-0.018914934,0.06518799,-0.048745062,0.08035634,-0.04245611,-0.032376774,-0.07576785,0.046438992,-0.028303757,0.10218978,0.053187415,-0.023224982,0.029091138,0.038489692,-0.06469878,0.03458829,0.06380118,0.019476939,-0.009878731,0.028375505,0.028214404,0.004557809,0.03512812,0.06737651,-0.0046338737,-0.088493876,-0.0018208275,0.05229542,-0.00442756,0.0044203405,-0.0114124855,-0.059286404,-0.03153459,0.0045005674,0.07937294,-0.0124323005,-0.024856722,-0.07270797,-0.041438404,-0.011218651,-0.0135933915,0.054409876,-0.04558911,0.035794947,0.09273451,0.0151143875,0.09552379,0.019689912,-0.034436565,-0.08495063,-0.07206164,-0.02173694,-0.050407186,0.09444273,-0.06990484,0.003544379,0.04386112,-0.056756787,0.06666846,-0.06232745,-0.003326951,-0.068921536,-0.019892404,0.036594108,0.028157743,0.009288625,0.13873227,0.10493432,-0.059531428,-0.03386792,-0.027031576,0.014884992,-0.017067129,-0.008114499,-0.031231955,0.029338662,-0.0074413135,0.123630695,-0.07007732,-0.03245578,0.05646051,0.03300947,0.113926165,0.05490536,0.019096976,0.04095549,-0.0062165903,0.13511015,0.015827348,0.13208537,0.03200234,-0.026603011,0.05784649,-1.267556e-32,-0.011597395,0.04578196,-0.019125162,0.011447422,0.014902573,0.0027984479,-0.029395448,-0.010859607,-0.06728323,-0.092705294,-0.027075175,-0.13362592,0.11992117,-0.066159464,-0.07140753,0.06729824,-0.032883387,-0.06413487,-0.09114287,-0.04630121,-0.0070376843,0.0036704957,0.039859034,0.018416243,0.014995113,-0.1180532,0.009621449,-0.02768089,-0.030850362,-0.010338643,0.090021975,-0.04619839,-0.09576361,-0.010656547,-0.026750881,0.122070745,-0.0021006332,0.08091899,0.03661124,0.03882713,0.029604888,0.045947414,0.0372126,0.021644488,-0.02488764,0.01581192,0.0032216539,-0.06414984,-0.073230244,-0.1016461,0.0110201575,-0.04942003,-0.038375597,-0.06470481,0.0597708,0.004009801,-0.016889872,-0.05027987,0.014237807,0.010755838,0.018990638,0.029581703,-0.056048237,0.023178685,0.06451869,-0.034201905,-0.02905242,0.0357673,0.00873558,0.06419335,0.09450425,-0.056985952,-0.058821045,-0.03349918,0.008235611,0.013789337,-0.10139299,0.030911716,-0.025818048,-0.038971048,0.09736373,0.056726553,0.00031560264,-0.051145952,-0.026451232,-0.0054262197,0.026049422,0.021835223,0.0073205573,0.022235682,-0.051918566,0.02000002,-0.06753603,-0.07499393,-0.05642078,-4.8973625e-08,-0.03276909,0.051079385,-0.009726236,-0.02260929,-0.011659495,0.01113767,-0.002620013,0.08805424,0.013095425,0.09125449,0.02684143,-0.031510543,-0.07878733,0.068300016,-0.014306052,0.02273207,0.0048342445,0.094682395,-0.009218147,-0.06761099,0.056679133,-0.053435236,-0.04135908,0.009950908,0.019357119,0.02300326,-0.04294712,0.030395135,-0.0034850868,-0.017876966,-0.030334732,-0.042006753,-0.13380386,-0.06663232,0.007839218,-0.017915081,-0.019758465,-0.015649313,0.0028612325,-0.096006,0.01589465,0.014852241,-0.010076,-0.015838055,-0.043377236,-0.03503646,0.024428511,-0.027458,0.04515724,0.045551825,-0.066474706,-0.100743264,0.06141882,-0.016230747,0.043990646,-0.07089856,0.043435868,0.018419812,0.028446056,-0.004120576,0.08186423,0.020136071,-0.012861371,-0.01756473} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:58:21.293021+00 2026-01-25 01:27:51.90035+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 572 google Ci9DQUlRQUNvZENodHljRjlvT21WS1lXcDVielpDV2xWVFNubFJVRGhtWXpkMlgxRRAB 1 t 575 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tienen pocos trabajadores y la fila rápida es mentira. tienen pocos trabajadores y la fila rápida es mentira. 3 2025-09-27 01:27:48.342625+00 es v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Tienen pocos trabajadores y la fila rápida es mentira."} {-0.04151574,0.008650166,-0.08068323,-0.030276053,-0.08046026,-0.05100795,0.03153237,-0.012532251,0.025175458,0.014397889,0.09328564,0.041037753,-0.11991577,0.010229803,0.07727159,-0.07889662,-0.06213723,0.018449256,0.083054274,-0.001421871,0.1350541,-0.06447458,-0.102315,0.027741104,-0.10039263,-0.102377154,-0.009846288,0.06122347,-0.011869253,-0.09970589,-0.05945137,0.06275383,0.055984393,-0.0025727977,-0.01360778,0.012537419,0.073261335,-0.04579844,0.013041907,0.066990346,-0.13524288,-0.07459674,-0.054174498,-0.028280482,-0.0013419053,-0.08439486,0.018182421,0.0559224,0.011621603,0.0024572527,-0.038154304,0.012075691,0.0016119195,0.018820556,-0.016434556,-0.015327756,-0.0030641768,-0.014538782,0.06422833,0.021916756,0.030987803,-0.0070075565,-0.08088148,0.055403613,-0.009286281,-0.046314567,-0.01276287,0.028969703,-0.07379153,0.087014996,0.09219759,-0.043557648,-0.023221994,0.048537895,0.016321838,0.046386804,-0.019169755,-0.02688417,-0.06401731,-0.0051217983,0.029601252,-0.015475136,-0.04745019,0.0547457,0.015707416,0.013859941,-0.05169697,0.007497175,0.0039605633,0.0072223255,-0.00022627269,0.028010665,-0.02461613,0.006888339,0.02354499,0.05828041,0.009050826,-0.012536386,-0.0065097935,0.015808312,0.11291468,-0.028208818,0.025774425,0.052885834,-0.04319773,0.023911273,0.058394585,-0.013422002,0.056504566,0.07112162,-0.08136046,0.06446693,-0.05065021,-0.020441722,-0.09648985,-0.010713167,-0.028640918,0.0057396344,0.05079066,-0.048658766,0.025083536,0.085299045,-0.064792246,-0.039426602,0.07352632,-0.048380077,-0.015751055,2.926286e-33,0.00039790405,-0.011401199,-0.026162168,0.024999058,-0.005280372,-0.0006930947,-0.00035940539,-0.09635589,-0.016919944,0.003807389,-0.072906874,0.053682037,-0.010909394,-0.0044765216,0.008095963,0.014235884,0.02076755,0.011483776,0.022305014,0.04750854,-0.03158441,-0.012889529,-0.013732505,0.0009836517,0.024480047,0.042516086,-0.031392667,-0.06592946,-0.03191882,0.09075495,-0.031998362,0.020022918,0.054058705,-0.039652277,0.006306532,-0.058720037,0.025845064,0.016693223,-0.014363142,0.03253378,0.073519915,0.005998506,0.008403472,0.0108649535,-0.02243809,0.028346593,-0.014599379,0.11236843,0.053877465,0.055656508,-0.0692026,-0.04283881,-0.09052781,-0.07807552,0.0043612677,0.039363086,-0.06775334,0.07906483,0.014288669,0.034403346,-0.032219667,0.04958645,0.05080862,-0.01830778,-0.022985818,-0.009359424,0.030545829,0.028405141,0.097785324,0.0768582,-0.096023925,-0.004225626,0.014551055,0.022867503,0.094339184,-0.020278621,-0.008927369,0.05076553,-0.0048202416,-0.01908993,-0.06724562,-0.017402928,-0.01750841,0.029877027,0.08900767,0.06880866,0.0464597,0.024235556,-0.010590589,0.063517004,0.014146307,0.050224885,0.03598667,0.0142727895,0.013149437,-4.234157e-33,0.07032847,-0.08754159,0.0594722,0.020913944,0.05910567,0.043912597,-0.08604771,-0.025326392,-0.09344983,-0.011860084,-0.055006348,-0.10257866,0.005371505,0.015275764,-0.034763914,0.0034166384,0.06326628,-0.0687068,-0.049545508,-0.023498034,-0.014004047,-0.00029975557,0.048328083,0.034918875,0.013186534,-0.08012651,0.01995194,0.030804098,-0.09392736,-0.015756087,0.00731046,-0.05014159,-0.06291196,0.07403384,-0.043476854,0.029662624,0.003729515,0.05812321,0.0987537,0.015501742,0.062444057,0.0032852988,-0.028540317,-0.014083993,-0.041081544,0.070970014,-0.027930764,-0.109585,-0.06684569,-0.031985287,0.059456784,-0.010203297,-0.04278167,-0.036056727,0.080077946,-0.028763087,-0.013208717,-0.14065693,-0.103838585,0.058462664,0.0010498967,-0.03233023,-0.04251549,0.026055628,0.10917188,-0.005448664,-0.0025610207,-0.072127506,0.06093321,0.059022352,0.10585989,-0.018102195,-0.07027422,0.054812986,-0.030738471,-0.07188874,-0.10751028,-0.038451012,0.021688815,-0.017687598,-0.058939718,-0.032186676,-0.0005174986,-0.030785019,-0.030103197,0.03659189,-0.008034404,-0.014274024,-0.022193687,0.044402942,0.08610069,0.07069525,-0.018189607,-0.015175149,-0.041622035,-2.3560512e-08,0.022883294,-0.031389855,-0.045817483,0.031740177,0.066778235,-0.026749348,-0.03943088,0.014094394,0.06567078,0.081102565,-0.04411807,-0.04172092,0.0723116,0.045826513,0.0009598285,0.023870097,0.1139294,0.056384433,-0.020955717,-0.08584693,0.0506397,0.053066745,-0.081669234,0.0032979914,0.007827506,0.04282681,0.0074534346,0.03860666,0.049855553,-0.0383274,-0.09058391,0.0366703,-0.11277945,-0.06737608,-0.07831665,0.004223172,0.027708247,0.02598779,0.02093908,-0.0543819,0.08848064,0.02758938,-0.012743658,-0.024753787,-0.041407794,-0.05814526,-0.015008472,0.054756768,-0.03824605,-0.00070799066,-0.018647373,-0.013502759,0.121871196,0.0614569,-0.015089792,-0.013720218,0.015658211,-0.015725126,-0.07479927,-0.015606473,0.060496397,0.029303446,0.07879347,-0.057972264} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:29:52.157617+00 2026-01-25 01:27:51.910164+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 639 google ChdDSUhNMG9nS0VJQ0FnSUM3cGUyaWl3RRAB 1 t 642 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carmen ha sido encantadora y todo muy claro explicado carmen ha sido encantadora y todo muy claro explicado 5 2025-01-25 01:27:48.343021+00 es v5.1 A1.01 {} V+ I2 CR-N {Carmen} {"A1.01": "Carmen ha sido encantadora y todo muy claro explicado"} {-0.021269122,-0.0024559204,-0.0058240164,0.04435759,-0.0045410283,0.021554295,0.1323194,0.017617708,-0.024006655,0.014158696,-0.01632954,0.025716506,0.012025525,-0.0057606185,0.06289243,0.05897619,0.011233026,0.050605156,0.0099313045,0.068711035,0.10401408,-0.058241818,-0.067219056,0.13902515,-0.027958335,-0.017110545,0.013457892,-0.04447168,-0.065000504,-0.016310057,-0.019750208,0.08245033,0.114395104,0.0068080155,0.03252691,-0.030360362,0.031557724,-0.060526572,-0.032635786,0.039542418,-0.14191787,-0.004744535,-0.052580748,-0.010879928,0.05085456,-0.10665176,0.027183661,0.11800836,0.06882718,-0.0327544,-0.06383625,-0.034237914,-0.0837934,-0.06746273,-0.0069753965,0.01804631,-0.012389379,-0.053299908,0.08342964,0.009277319,0.029731905,0.023076383,-0.047832116,0.039373506,0.0064190924,-0.07120431,0.02963728,0.008993676,-0.09254373,0.02263678,0.0851921,-0.033952072,0.029689126,0.030774355,-0.037068196,0.005090226,0.050058108,-0.03052512,-0.10198275,0.023613604,-0.07812014,-0.026408201,0.070787825,-0.07677702,0.015362617,0.06931283,-0.0057721967,-0.022629222,-0.0400511,-0.021654353,-0.040056672,-0.04476078,-0.037343677,0.019365726,-0.0011655951,-0.013557656,0.034291804,-0.026329616,0.08767059,0.06044828,0.050782137,0.039599527,0.12118709,0.0066537154,-0.045514844,0.07519802,0.047643133,-0.05010884,-0.0031995513,0.0012579167,-0.038379442,-0.04706716,-0.03237748,0.05129462,-0.041295633,0.015279372,0.033120405,-0.023347903,-0.04019131,-0.043888483,0.052586608,0.05800497,-0.013476026,0.021472376,-0.05117222,0.0069325054,0.11481916,6.7218066e-33,-0.0861499,-0.10049889,0.038225327,0.050359942,0.027862903,0.039203852,-0.051539693,-0.0270621,-0.03004487,0.047993887,-0.036154386,0.013849575,0.03178539,0.0188678,0.034973387,0.095062196,-0.020469328,0.021384474,0.005200681,0.09321376,-0.042552263,0.0065762093,-0.00652107,0.008371771,-0.071233965,0.10942744,0.020345451,-0.10163702,0.011835367,0.06162022,0.024011388,0.02876717,-0.02743048,-0.021185631,-0.025284832,-0.04951606,0.045525633,0.013184513,-0.009791333,-0.050510053,0.055751875,0.046180747,-0.025154795,0.035029065,-0.057435054,0.0423179,0.13226752,0.04878823,0.07102092,0.011046992,-0.07873826,-0.0474682,-0.10635094,-0.0072104135,0.045883145,0.015156089,-0.010486202,0.0152589865,0.021203887,-0.026252327,0.046963457,0.010328264,0.043832105,-0.08068061,-0.028680611,-0.028372666,0.07440772,0.005291006,0.14102264,0.05895004,-0.106517345,0.015446104,-0.026941909,0.06408018,0.0023172402,-0.025361538,0.010677351,-0.01669297,-0.0333758,0.094658144,-0.050777514,-0.0018031228,0.07276509,0.004436663,0.06784508,0.057258733,0.06040949,-0.05006127,-0.11709827,0.12492471,-0.028128475,0.095358685,0.0016409945,-0.02806644,0.029505545,-7.674308e-33,0.009585871,-0.036859844,-0.00700086,-0.01742114,-0.002467498,-0.041083418,-0.097664125,-0.042398904,-0.0050159115,-0.08696714,-0.042293172,-0.17527364,0.10814631,-0.025371315,-0.024294952,0.0124572655,0.0058341706,-0.05972737,-0.11723784,-0.025082724,-0.035262145,0.021935731,-0.015999923,-0.051846493,0.014627331,-0.018449264,-0.0041342755,0.009311503,-0.03678496,0.006718564,-0.023900922,-0.054476712,-0.062379323,0.015206504,-0.06303686,0.059089378,-0.03692425,0.053470746,0.052934777,0.04178929,0.021744143,0.059105393,-0.004370185,-0.00085793494,-0.040009886,0.06482258,-0.0023967884,-0.041303612,-0.011338393,-0.06915384,0.071343824,-0.059605233,-0.05654763,-0.010269145,0.10823496,-0.06812229,-0.076213226,-0.043919735,-0.038339157,0.025363045,0.0395034,0.020234047,-0.081881694,0.006575249,0.03833099,-0.012098962,-0.01934763,-0.0066405763,-0.03111216,0.017707463,0.071908176,0.010188841,-0.05194479,0.050617088,-0.04445901,-0.06002113,-0.13476214,-0.07295316,-0.03987933,-0.04035052,-0.009181838,-0.019343454,-0.04956145,-0.01656041,0.02064522,-0.0025076505,-0.011535118,0.01786314,0.01718934,0.036806755,0.03139752,0.079470955,-0.04808295,-0.025442163,-0.042770978,-2.7995593e-08,0.012109975,-0.058150314,-0.030581621,-0.055440772,-0.005975625,-0.020958057,0.013724621,0.02807057,-0.036621947,0.052488394,0.010529882,0.052222766,0.040509403,0.06146039,-0.0123722395,-0.00883795,0.08568664,0.04582881,0.018826464,-0.041863583,0.092053205,-0.030929063,-0.087254055,0.013749096,-0.034665022,0.057832036,-0.024374528,-0.0063976734,0.052411493,-0.052407354,0.024013033,-0.0022579376,-0.051476743,-0.065574706,-0.049394112,-0.02198778,-0.047820576,0.014461221,-0.029823862,-0.004339975,0.05294244,0.0110239405,-0.0025666505,0.011800329,-0.06552923,-0.058919135,0.009194738,-0.020352907,0.001844484,-0.02546582,-0.06443297,-0.04931529,0.057437096,0.013710129,-0.0054976856,0.017588649,0.036711395,0.014184096,0.017802939,0.047614302,0.020547872,0.04301886,0.027596544,-0.070926666} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:16.553455+00 2026-01-25 01:27:52.169939+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 576 google ChdDSUhNMG9nS0VJQ0FnSUQ3NjhQSy1RRRAB 1 t 579 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones de coche según nuestras necesidades a destacar el precio y la intención del personal so!re todo de Carmen. servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones de coche según nuestras necesidades a destacar el precio y la intención del personal so!re todo de carmen. 5 2025-01-25 01:27:48.342672+00 es v5.1 A1.01 {P1.01} V+ I3 CR-N {Carmen} {"A1.01": "Servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones"} {-0.024225777,0.02276222,0.0006248031,-0.050604075,-0.06627841,-0.024102299,0.12500975,0.03409191,-0.0030357654,-0.023307256,0.019513516,0.03220382,-0.013687772,-0.022276567,0.06557546,-0.0417602,0.03539616,-0.026798345,0.005323503,0.13386355,0.111445434,-0.061193634,-0.100193165,0.12963343,-0.098062694,-0.050857052,-0.033504967,-0.019727966,-0.08536738,-0.031686503,0.050769635,0.03338243,0.08264769,0.003033216,-0.004390104,0.014007255,0.06863483,-0.06736005,-0.040926527,0.058580272,-0.1529128,-0.066831715,-0.048107706,-0.024483718,0.052855656,-0.11671914,0.028569829,0.036138944,0.020506075,-0.0077757095,-0.07676018,-0.019685218,0.011206954,0.006679493,0.03252495,-0.021309717,0.013116321,-0.04122462,0.034615394,0.017036118,-0.027589733,0.034629487,0.003623838,0.056116592,0.033765484,0.00030799204,-0.0018826405,-0.039052907,-0.020502156,0.0052942527,0.038435124,-0.09728008,0.01814862,0.063484825,-0.010022292,0.006668258,0.013358963,-0.03372553,-0.0619327,0.0029835566,-0.027077002,-0.025683241,0.03524595,0.024748212,-0.008123796,0.01537461,-0.021001928,-0.04497436,0.054613005,-0.031190738,-0.035418015,0.04929121,-0.046494212,-0.031051839,-0.08400804,-0.036281124,0.024930265,-0.07708659,-0.008548746,0.0478902,0.028220834,0.02027447,0.07965617,0.06503117,-0.023080844,0.07567827,-0.0020429955,-0.009809157,-0.027612718,0.10114564,-0.055142082,-0.07479489,-0.07143618,-0.0026172905,-0.05678281,0.0590019,-0.028824562,-0.0132191,0.042518023,-0.045697365,0.062232707,0.055155467,-0.01955548,-0.02856492,-0.026138237,-0.046031162,0.0997727,8.560903e-33,-0.09409426,0.01738471,0.08400223,0.101732284,-0.02794,-0.01907517,-0.07229345,-0.017271403,0.024941426,0.026770417,0.0035963953,0.09330048,0.0322473,0.019900916,0.045776714,0.05680377,-0.020485675,0.0002525107,0.052595556,0.04153759,0.0056223995,-3.632394e-06,-0.000656418,-0.014752264,0.004123072,0.050852153,0.009967235,-0.01963433,0.0047102827,0.0405224,0.039472066,-0.006937596,0.042887636,-0.03396905,-0.03533405,0.029998386,-0.046685714,0.01889833,-0.03114214,-0.03370411,0.008545104,-0.00097152375,0.012014922,0.013035547,-0.04571906,0.03218166,0.1402985,0.035516284,0.07166837,0.029860327,-0.05004069,-0.065415055,-0.1215914,0.052384906,-0.04819939,0.05052487,0.00032521217,-0.028444976,-0.0007453204,-0.08377539,0.031193148,-0.12050953,0.012200969,-0.008040372,-0.028590396,-0.074127905,0.055259705,0.028346645,0.17167245,0.03488601,-0.1211646,-0.028856965,0.004790964,0.056928422,-0.031418875,0.03883465,0.008908143,0.0138697,-0.01814244,0.096391305,-0.0073626437,-0.0049016424,0.030423824,-0.011205147,0.1294803,0.08265741,0.045515705,-0.012500739,-0.06315968,0.1181443,-0.0011444959,0.09769065,0.030100234,-0.0003221211,0.010614164,-1.2871452e-32,-0.01975289,-0.025873441,0.005256346,0.019494627,0.03588259,0.0019028768,-0.021284003,-0.058166236,-0.03470185,-0.011101396,-0.1359228,-0.1372912,0.0695904,-0.024059534,-0.05981634,0.048144866,-0.027443139,-0.08323519,-0.08204488,-0.009967485,-0.03316459,0.07443599,0.025729377,-0.0402503,-0.038755532,-0.045610793,-0.023972489,-0.007824156,-0.04404163,-0.08330226,0.019217143,-0.0019393722,-0.018567653,-0.041143317,-0.022782834,0.06705745,-0.006853088,0.03802542,0.035758328,0.084473915,0.011479255,0.02684238,-0.023576628,0.01572768,-0.028051902,-0.03325547,0.0004380178,-0.15632714,0.039345395,-0.03138012,-0.024771217,-0.08193454,-0.046005033,-0.028803702,0.036747776,-0.04395407,-0.0061614425,-0.083220966,0.012664181,-0.01865544,0.063755445,0.031239782,-0.049249284,0.0281824,0.048624016,-0.0866265,-0.01196245,-0.037991375,-0.04664806,0.006401148,0.055945914,-0.037802167,-0.082893535,0.03339778,-0.06990682,-0.072959766,-0.06785304,-0.06790718,-0.009875947,-0.04741616,-0.009273584,-0.039657906,-0.004172025,-0.04614593,-0.053168714,-0.014460163,0.023224756,0.009921442,-0.01790322,0.04115155,0.0009777589,0.06723268,-0.06334157,-0.06132775,-0.09447426,-4.9966882e-08,0.039022192,-0.003405795,-0.005671606,0.011581332,-0.017846106,-0.11177849,-0.025126044,0.020419987,0.020968249,0.071467206,-0.01758172,0.028362947,-0.022495093,0.010241473,0.01601836,0.011194801,0.06537733,0.0049007563,-0.054711465,-0.031171083,0.053559445,-0.039140914,-0.04977418,-0.06632595,0.01735211,0.032152034,-0.03596856,0.043766677,-0.027692897,0.014227358,-0.022350827,-0.0032215915,-0.019032596,-0.0717505,-0.07217842,-0.027693635,-0.003749817,-0.007123014,-0.031878967,-0.063219525,0.075284615,0.01861145,-0.04417856,0.047223527,-0.02703556,-0.027069947,-0.031529743,0.028243901,-0.05738544,0.0096197035,-0.045746773,-0.06440508,0.08543862,0.012560524,0.04950461,-0.0023839558,0.032689564,0.079049625,0.0042556697,0.04815494,0.05131366,0.002161763,0.024888648,-0.11920997} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:57.733512+00 2026-01-25 01:27:51.926194+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 577 google ChdDSUhNMG9nS0VJQ0FnTUNvMktEWTh3RRAB 1 t 580 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buena experiencia y legales, no como la competencia Gold Car que me estafaron y por ende tuve que acudir a ClickRent. buena experiencia y legales, no como la competencia gold car que me estafaron y por ende tuve que acudir a clickrent. 5 2025-04-30 01:27:48.342674+00 es v5.1 R1.01 {R1.02} V+ I2 CR-W {} {"R1.01": "Buena experiencia y legales, no como la competencia Gold Car que me estafaron"} {0.033232763,-0.023657871,-0.024520248,-0.06665458,-0.05791623,0.009548316,0.08756615,0.048501704,-0.04398215,-0.023835225,0.02518123,0.04257159,-0.031984657,0.04476255,0.046063703,-0.0023332743,0.020026665,-0.02835831,0.028747737,0.057146594,0.09269811,-0.072134405,-0.06468538,0.09949472,-0.12073085,-0.03693726,-0.038028255,0.06674895,-0.027091822,-0.0770801,-0.017065283,0.029365374,0.06582648,0.028833266,-0.07554598,-0.074263066,0.03348481,-0.05122295,-0.06257877,0.0066316323,-0.056933615,-0.03968411,-0.08125016,-0.04713397,0.017463665,-0.039324302,0.035913024,0.06374508,0.02754388,-0.025810177,-0.075159475,-0.014045151,-0.009385206,-0.04827668,0.032032903,-0.016082909,0.01633821,-0.017781328,0.0814,0.018697705,0.033571847,0.058063272,-0.072878666,-0.0058956165,-0.014981885,-0.00097375235,0.02278665,0.07304536,-0.06774971,0.044719674,0.14124613,-0.0720467,-0.019277971,0.10875814,-0.078986436,0.05430889,-0.03893131,0.020169845,0.0020822873,-0.065700985,-0.030211827,-0.037018947,-0.045986537,-0.08087414,0.07492629,-0.05824918,-0.023612542,0.02972022,0.068424486,-0.018861579,0.040510643,0.013768566,-0.024700455,0.001760454,0.027892536,-0.00095996005,0.060347807,-0.060799472,0.08750365,0.050130457,0.12864348,0.03819911,0.03673859,0.0061076526,-0.023687582,0.074286394,-0.01109261,0.01817747,0.051287506,0.02093194,-0.0040844497,-0.0092002135,-0.032242913,-0.04214504,-0.11251032,0.12929484,-0.1555371,0.034930896,-0.032398608,-0.024622101,0.003934057,0.038373742,-0.052867863,-0.019206803,0.048684083,-0.11574197,0.00826934,3.4825163e-33,-0.1053583,-0.03216186,-0.08018612,0.04180213,0.024881747,0.0036861587,-0.016362464,0.034201406,-0.009534977,0.004433755,0.048178375,0.0027464156,-0.02622624,-0.059620276,0.0760482,0.10916224,-0.06515737,-0.04643053,-0.010961515,-0.013041705,-0.010172793,-0.04346772,-0.013275772,0.061558988,-0.08899606,0.05332719,-0.017957857,-0.09809591,0.02176291,0.06471548,-0.003712852,0.05397804,0.028875027,0.0015433594,0.0519213,0.026959646,0.01816229,0.006811039,-0.041743126,-0.016067471,0.05082307,-0.04371252,-0.05853456,0.02080517,-0.020150859,0.0150735,0.06491879,-0.016011953,-0.017780444,0.022113187,-0.040831033,-0.08580871,-0.032410145,-0.05642347,-0.003978401,0.08360958,-0.087026365,0.04438212,-0.03130635,-0.103227876,0.0012636887,0.01470112,0.012792226,-8.343418e-05,-0.15267445,0.062378623,0.014733972,-0.025960598,0.08991872,0.021465225,0.004323837,-0.02967415,-0.034731697,0.082527146,0.03734644,0.018169433,-0.017791288,-0.0064357216,0.040195357,-0.043681215,-0.06624885,0.04066916,-0.039101332,0.04907191,0.06563834,0.09083625,0.038804956,-0.00366078,0.007883236,0.10133381,0.02153732,0.02867131,-0.020251319,0.012476264,0.049368817,-5.908795e-33,0.0017158154,0.0075114095,0.06785071,0.02124915,0.02563026,0.032817442,0.014100927,0.0616399,-0.04438664,-0.016594533,-0.027693752,-0.11266045,0.06452528,0.005413591,-3.296667e-05,0.0038813485,0.0058219307,0.00828041,-0.08978209,0.0006254571,0.030335203,-0.0006409142,0.09648777,0.056324437,-0.03974704,-0.087017365,-0.02671127,0.025289623,0.049484447,-0.023352187,0.09834973,-0.008557261,-0.09214485,-0.064890526,-0.09586173,0.0040405397,0.0976928,-0.0020220967,-0.017795272,0.056219205,-0.0159737,0.009081618,0.028953444,0.04531029,-0.0057773422,-0.028360266,0.021930315,-0.08328443,0.06733161,-0.06679825,0.0665242,-0.016203681,0.000323462,-0.042932834,-0.049805343,-0.010328136,0.013571623,-0.07010961,-0.11231842,0.020330075,0.06673464,0.08283665,-0.0115179205,-0.02800906,0.03296085,-0.035429984,-0.06632523,0.079552,0.017983127,0.016851475,0.028453724,-0.017321618,-0.048747677,-0.005634411,-0.026536182,-0.014047154,-0.057498887,0.019549884,0.049602956,-0.06400999,0.07896722,0.02013979,0.059617598,-0.03265606,-0.022024816,0.049398024,-0.030975508,0.008845904,-0.048306357,0.03370537,0.06115494,0.034858715,-0.0022910105,-0.035378966,-0.07816697,-3.222425e-08,-0.011675339,0.04380374,0.0605133,-0.0046309065,-0.029723903,-0.00032260994,-0.05797404,0.009408442,-0.001032078,0.031148756,-0.026605682,-0.04573279,-0.036803264,-0.0067281937,-0.11378423,0.057277583,0.11124993,0.06112133,-0.0170812,0.020767184,0.083511,-0.0036061092,0.0058018407,0.044934407,-0.022788426,-0.05451833,-0.006401886,0.01913245,0.0060523553,-0.0024343226,-0.05549722,0.015013423,-0.025402607,-0.10572873,-0.037666693,-0.06452865,-0.021525051,-0.028645582,-0.0038966015,-0.063718885,0.083431974,0.028026434,-0.07350908,-0.0025631138,0.006942173,-0.032487698,-0.061509658,-0.032685913,-0.024218421,0.05171632,-0.060967483,-0.10475269,0.008144732,-0.0014324296,0.018571083,0.016778614,0.0035749786,0.048024714,-0.072408214,0.0009917006,0.083045736,-0.015765093,0.043399293,0.017630024} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:43:04.104737+00 2026-01-25 01:27:51.930839+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 578 google ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE 1 t 581 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excelente experiencia! Amabilidad en la atención al cliente y buena relación calidad- precio. Estrené coche! 100% recomendable. excelente experiencia! amabilidad en la atención al cliente y buena relación calidad- precio. estrené coche! 100% recomendable. 5 2025-01-25 01:27:48.342676+00 es v5.1 A1.01 {P1.01} V+ I3 CR-N {} {"A1.01": "Excelente experiencia! Amabilidad en la atención al cliente y buena relación calidad- precio.", "R1.01": "Estrené coche! 100% recomendable."} {-0.0061944346,0.032733534,-0.032762017,-0.06283679,-0.09852926,0.027221832,0.039931163,0.08271546,-0.013302452,-0.012383539,0.053200338,0.031952538,0.0016441377,0.009933663,0.034041107,-0.008322302,0.050415784,-0.0026482875,0.058984786,-0.037544195,-0.0025705714,-0.05835525,-0.04630623,0.06926961,-0.028423615,-0.068721145,-0.032039598,-0.0121044,-0.03128238,-0.02573119,-0.032313395,0.08149744,0.08480019,-0.023244906,-0.103415444,0.049271062,0.025087137,-0.09991671,-0.03953955,0.09109704,-0.1149542,-0.024517737,-0.039452102,-0.0019547446,0.049526248,-0.085404344,0.021311767,0.066466175,0.019446285,0.05672027,-0.07627011,-0.001371817,0.013912609,-0.005412427,-0.003787376,0.023173107,0.0019349251,0.005095185,0.0025174557,-0.010376385,0.01642851,0.01089856,-0.06876308,0.044122797,0.03735518,0.051882375,-0.05785325,-0.018671045,-0.10133068,-0.020964988,0.06380639,-0.08958984,0.032494277,0.015055176,-0.02262678,0.05496449,-0.0082029365,-0.009981287,0.005264236,-0.013492643,0.043041993,0.031335153,-0.061989002,-0.019184431,0.012458429,-0.025651518,0.029085815,-0.005162386,0.0028869226,-0.014001479,0.057212166,0.16116653,-0.13324438,-0.046109576,-0.087695815,0.02566876,-0.036242183,-0.080932185,-0.03099933,0.008109936,0.010077903,0.02573551,0.059190266,-0.008935183,-0.098002225,-0.019075375,0.041427862,0.036185738,0.0549506,0.084581725,-0.07273146,-0.06538064,-0.031116769,-0.055550586,-0.03547505,0.03459922,-0.041705668,0.0029668703,0.03119833,-0.05811389,0.020003118,0.08111475,0.033416826,-0.07032184,0.041339505,-0.12771381,0.10274709,9.385727e-33,-0.09067096,0.022517042,-0.013363592,0.11656053,-0.0017649133,-0.0056278114,-0.007048702,0.0072629335,-0.06445666,-0.03862363,-0.0019052628,0.13139747,0.05349795,0.02973689,0.04315394,0.051406167,-0.02751164,0.038507864,0.04498664,0.0041666967,-0.031978033,-0.028268147,0.027192328,0.046414312,0.0012111638,0.014896606,0.0012824581,0.055907175,0.026775874,0.023796601,0.04502496,0.0175078,-0.050265275,-0.09297052,-0.08146222,0.04915517,-0.06693088,-0.040155973,0.052949775,0.0008207977,-0.07893773,0.058221254,0.048712824,0.041888364,-0.047283087,0.037340827,0.02639698,0.02096144,0.09402063,-0.002500231,-0.10433791,-0.059972826,-0.03195076,0.08720236,-0.030922718,0.067223355,-0.022049105,0.055683892,-0.024565965,-0.0904468,0.010850301,-0.030695451,0.005495287,-0.115918,-0.115177244,-0.05749889,-0.010087556,-0.014898268,0.14944853,-0.008020824,-0.05375782,0.013276302,0.06638162,0.02576665,-0.010924397,0.009448477,-0.02395617,-0.024407286,0.056769457,0.025860045,-0.05220084,0.019053312,0.030300787,0.042965814,0.07596696,0.13859056,0.066421136,0.024934178,-0.036970682,0.13714404,0.04114395,0.062466934,0.03421933,0.009079796,0.054674014,-9.599261e-33,0.025829,0.0029930226,0.01803489,0.040254064,0.03400013,0.017650355,-0.050105896,-0.018688256,0.015482739,-0.056463964,-0.069618165,-0.07538483,0.041496657,-0.04174537,-0.11954312,0.061385665,-0.05907726,-0.07544867,-0.0018657894,-0.091783024,0.035109844,0.033637524,0.028536163,-0.02556745,0.015287925,-0.080546014,-0.056198325,-0.020679012,0.0055203363,-0.07663478,-0.0071303938,-0.0080609815,-0.023040626,0.04275998,-0.04113217,0.08138098,0.07182474,0.033313166,0.03366318,0.1031512,0.0720989,0.031245237,-0.037688293,-0.01566139,-0.0047883815,-0.023452243,0.02912529,-0.08136314,-0.029050242,-0.046477348,0.018619774,-0.008942952,-0.064897165,-0.08816041,-0.009826184,0.031935938,0.045258895,-0.08266153,-0.060516786,-0.013501689,0.030722227,0.027092395,0.03178039,0.008979844,0.06672615,-0.06154784,0.017927753,0.03636168,0.017671702,0.028336188,0.02604439,0.022381304,-0.038047615,0.027563583,-0.0387999,-0.02203426,0.02545038,-0.064673066,-0.004274532,0.038651336,-0.04626197,0.022325085,0.024119845,-0.0013494465,-0.036783196,0.014905905,-0.00931366,-0.07834068,-0.03592406,0.032278966,-0.09102083,0.03035483,-0.01838956,-0.044506475,0.014843319,-4.176304e-08,-0.02078627,-0.027934955,0.054781508,0.030531239,-0.019910656,-0.045221668,-0.038612008,0.05378213,-0.005258216,0.0019037309,-0.017140558,-0.05806577,-0.1134261,0.055412356,-0.04510382,0.01193644,0.123332374,0.1336415,-0.05969307,-0.030744826,0.029492473,0.034378037,-0.053921413,-0.0032367294,-0.023212189,0.0043048314,-0.029837428,0.06392223,-0.06217336,-0.07040842,-0.08649721,0.00022444206,0.06871373,-0.087576956,0.018483752,0.012963717,0.0036498778,0.03608142,0.008874487,0.027956843,0.013022268,-0.006203389,-0.035432708,0.03223224,0.0011128061,-0.07204349,-0.024898767,0.021067977,0.015787948,0.030608036,0.0023746889,-0.049402464,0.022660594,-0.034928545,-0.014922302,0.035896342,0.008735169,0.018808087,0.019487303,0.05882457,0.0174179,0.031610243,0.0418945,-0.05825755} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:52.927469+00 2026-01-25 01:27:51.933651+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 253 google Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB 1 t 256 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown One of the best rental car experiences I've had. Great service one of the best rental car experiences i've had. great service 5 2025-07-29 01:27:48.340649+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "One of the best rental car experiences I've had. Great service"} {-0.04134824,0.091461085,0.026770856,0.006229199,-0.061142154,0.04107831,-0.0024360877,0.0045612724,-0.000636345,-0.03473182,0.03446462,0.12974352,0.09633879,0.058636006,-0.0049021365,0.0038081938,0.07686034,-0.1125566,0.08219531,-0.016190136,-0.07508296,-0.059957944,0.0039032062,-0.022305794,0.008302023,0.068417035,-0.05269417,0.09245971,-0.006655763,-0.04041483,-0.035913963,-0.011209731,0.021680664,-0.046028458,0.024157086,0.021607853,-0.02122571,-0.07244524,-0.028845422,-0.026688555,0.020455746,0.02427019,0.02496229,-0.03936076,-0.0038496242,0.019197827,0.048519187,0.009684845,0.12814398,-0.042944282,-0.007638024,-0.048433516,0.0037685626,-0.028655266,-0.10115797,0.018086035,-0.0049981014,0.009175052,-0.059586678,-0.08013009,0.04577656,0.0037219466,-0.04159344,0.037997577,0.0016200214,0.028057942,-0.054363403,-0.022409795,-0.024225064,-0.038566016,-0.04908703,0.062084954,0.010264909,-0.011830923,0.0032218285,0.041668575,0.088639565,-0.0013289964,0.034967188,-0.03180623,-0.0043737516,-0.045596637,-0.017789885,0.01969029,-0.008818129,-0.16113971,0.043521084,-0.043565426,0.019774215,0.035517294,0.03806786,0.050503623,-0.055585574,-0.060969044,0.018511731,0.009087383,-0.026733411,-0.047943257,-0.006866587,0.019568646,0.06509912,0.048178393,0.017567333,-0.045001317,-0.0049417,0.040727075,0.04686795,0.038437113,-0.04757349,-0.015742606,0.055835314,0.004581914,0.046533942,0.03978,-0.03414374,0.07044834,-0.04362019,0.06703155,0.078915745,0.013836616,0.020173302,0.014570192,0.034447026,-0.017788945,-0.0003933365,-0.062428467,0.114432365,-5.2810458e-33,-0.08594799,0.071646124,-0.013774789,0.057135828,0.050162848,0.056478374,-0.061550327,0.054749902,-0.060515586,0.07369907,0.02638332,0.04619621,0.01856401,-0.03157085,-0.01547432,0.01310671,-0.11260092,0.011359218,-0.080651715,-0.03148378,-0.074730225,0.05807614,0.035820674,0.022784151,0.073748015,-0.078454375,0.035719942,-0.013216356,0.045646895,0.03320813,-0.039062444,0.00938411,-0.022455528,0.018019905,-0.046907213,0.048991434,-0.111380786,-0.02723558,-0.07550083,0.00620886,0.006400096,-0.034752194,-0.098296866,0.051774804,-0.008504134,0.010101669,-0.00051410357,0.0010182369,-0.0036908172,-0.009165941,-0.08253194,-0.0058826962,-0.12261586,0.04422758,-0.06810027,0.060116015,0.08969844,0.01063903,-0.031182397,-0.056876365,-0.007974696,0.03311196,-0.028860195,-0.0911685,-0.010349399,-0.077110246,0.0046341736,-0.008485108,0.040231712,0.043959036,0.029462727,-0.025189329,0.050029032,-0.06996158,-0.009571793,-0.0403509,-0.055385467,-0.04818182,-0.0013340914,-0.009999432,-0.00685107,0.024279187,0.02394833,-0.0013543031,0.08420541,0.061728045,-0.0038365757,-0.09118836,-0.040774055,0.029740738,0.035227243,0.031801157,0.008781709,-0.0156536,0.081354365,2.98478e-33,0.020266779,-0.010641801,0.10726954,0.053575628,-0.026324375,0.01953967,-0.110457405,0.042989135,-0.063486,0.08790695,-0.050583724,0.051847186,0.00044440996,0.04190848,-0.03693754,0.02197272,0.03331224,-0.0858368,-0.009008396,-0.056561686,0.0047592763,0.07539251,0.05764686,0.044186957,-0.04643384,0.0016584825,-0.058126774,0.1009978,-0.009320461,-0.043032132,-0.042935036,0.027955743,-0.0075555854,-0.03577148,0.013865752,0.117497735,0.06902118,0.032985363,-0.07274031,0.025490003,0.020341335,-0.08446217,0.0036181193,-0.02283907,0.06273959,-0.054696117,0.039931986,-0.08925219,0.0008427097,0.063961886,-0.020021794,-0.027781725,-0.0883163,0.051808696,-0.02133645,-0.09115129,0.10406724,0.009276823,-0.028540943,0.027228,0.00023617139,0.044363495,-0.025900386,0.022769473,0.040266793,-0.09501993,0.049546264,-0.050357208,-0.08523028,0.0045460155,-0.047948033,0.034070823,-0.016749702,0.045803223,-0.038006697,-0.02567655,0.09752157,-0.10888915,-0.038582847,-0.02700404,-0.053849615,-0.04041127,0.008630177,0.061959136,6.307446e-05,0.02280599,0.037071463,-0.1040064,0.009537649,0.06736796,-0.0021857088,0.119692326,-0.111125074,-0.04389314,-0.050608627,-2.0766123e-08,-0.04917989,0.03938533,-0.013717959,0.0048051495,0.005057801,-0.11063242,0.028450718,0.038776416,-0.09170739,0.0066414233,0.06274998,-0.03022535,0.014661368,0.05796443,0.004230848,-0.025394632,0.07049561,0.09171766,-0.006104377,0.01895628,0.04277863,0.050397195,0.0009643355,0.021607613,-0.018512508,-0.007832895,-0.017836593,-0.009098363,0.057924625,-0.08743323,-0.06741273,0.047249362,0.057606716,-0.039993193,-0.017924752,0.014963414,0.02798126,-0.04629213,0.07070157,-0.0031631133,0.060553387,-0.0076265847,-0.096970394,-0.03993637,-0.009137256,0.04838843,-0.02251674,-0.04338012,-0.014847316,0.058536746,-0.019427044,-0.037171386,-0.014741385,0.12444624,0.05766031,-0.07300788,-0.0073213615,-0.026119465,0.019107373,0.109181345,0.0020763979,0.059316494,-0.05665981,0.051943496} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:49:59.167091+00 2026-01-25 01:27:50.65345+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 583 google ChdDSUhNMG9nS0VJQ0FnSUNuMXJhOHJRRRAB 1 t 586 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Los empleados muy amables y cordiales, siempre dispuestos ayudar. La información que dan es muy acertada los empleados muy amables y cordiales, siempre dispuestos ayudar. la información que dan es muy acertada 5 2025-01-25 01:27:48.342699+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Los empleados muy amables y cordiales, siempre dispuestos ayudar. La información que dan es muy acer"} {-0.008058455,0.0028380656,-0.01872482,-0.024372883,-0.03740073,-0.0063715996,0.04557162,0.009251439,0.024301494,0.027906751,0.088697255,0.08705427,-0.021935701,-0.03123332,0.0054113087,0.057297014,-0.0005050461,0.047415722,-0.023068698,-0.05808176,0.11413865,0.020312864,-0.032084573,0.07796414,-0.061423175,-0.025137221,-0.02851114,-0.02312764,0.007223844,-0.07860263,0.01757747,0.048269253,0.14503294,0.023291377,-0.07668522,-0.0040563215,0.07059714,-0.06005862,-0.056626637,0.064453684,-0.10358708,0.007136356,-0.018426523,-0.07050465,-0.051844202,-0.13509049,-0.020907631,0.0054344065,0.0037844174,0.011455524,-0.08122506,-0.00077030965,0.021701992,-0.05281225,0.03827221,-0.06209915,-0.041613095,0.0026332065,0.020428829,0.08259565,0.0015354753,0.022018084,-0.053961955,0.02710001,-0.032466963,-0.011640788,0.03784579,-0.009580262,-0.114869475,0.02179391,0.06856773,-0.059003856,-0.004576969,0.06733668,-0.027301084,0.033426158,-0.0033961693,-0.015050786,-0.041875158,-0.014740947,-0.023075908,0.02708927,-0.024484437,-0.030491982,-0.012683729,-0.010137538,-0.017864136,0.025088055,-0.0078044254,-0.022389185,0.011542366,-0.006901763,-0.08814192,0.019035883,-0.014367303,0.05169554,0.027831834,-0.14953065,-0.011135377,0.009582797,0.059088435,0.07998592,0.0628804,0.0066465246,-0.04290414,-0.029804872,0.005565174,-0.07391676,0.0017536898,0.07357425,-0.03626652,-0.026301062,-0.051198747,0.01227638,-0.017987717,-0.026649555,-0.027067333,0.04699174,-0.017650137,-0.07221323,0.045732424,-0.009481135,-0.02914973,-0.037970368,0.051243607,-0.04514364,0.019738091,7.1646616e-33,0.02524275,-0.0064609367,0.0010180549,0.07294583,-0.009638857,-0.01431405,-0.06771228,-0.0038497236,0.0063746567,0.024792634,-0.059973277,0.10629738,-0.006653565,0.020902136,0.03982759,-0.006468393,-0.01698541,-0.0032129735,0.03397003,0.0229111,-0.009205988,-0.037314642,0.040944893,-0.017956387,0.05242443,0.012424163,-0.01072927,-0.038539402,0.06408722,0.056342814,-0.044355437,-0.01115771,-0.019025205,-0.05708042,-0.039513573,0.016059719,0.027157826,0.05319966,0.014026507,0.027952028,0.0848227,-0.0027108786,-0.035134807,0.019297166,-0.03132044,0.060779344,0.07956924,-0.016768284,0.07862231,0.031976905,-0.09765577,-0.073224634,-0.023763271,-0.039330687,0.03340716,0.029903328,-0.06231476,0.044135153,-0.008237886,-0.083341405,-0.015810512,-0.012463175,0.021837428,-0.04371732,-0.035445277,0.0014745878,0.010060298,0.029536182,0.135943,0.03727164,-0.11738373,-0.042908747,-0.0520995,0.033686493,-0.0027004436,0.0075928858,-0.010961255,-0.018434664,0.08112474,0.027246583,-0.084654786,-0.0097726425,0.055984937,0.021616882,0.10354056,0.09669606,0.037806008,0.064456396,0.0048737735,0.09032492,-0.032982517,0.14023973,0.012461422,-0.053638935,0.01963361,-9.615864e-33,-0.065129,0.020494489,-0.016472146,0.06738362,-0.031045375,0.04972706,-0.03071046,0.062204167,-0.10082857,-0.10065738,-0.1458281,-0.11870577,0.03581804,-0.04996651,-0.0084008025,0.04482857,0.004250661,-0.08221886,-0.071698114,0.024816982,-0.07019662,0.027431661,0.0016786527,-0.07297528,0.00792898,-0.02443549,-0.068845116,-0.06767051,-0.022585928,-0.021258865,0.06882218,-0.03707127,-0.02983892,0.029682932,-0.07063014,0.069072664,0.07214861,0.040661152,-0.021505529,0.0802221,0.06465336,0.09970128,-0.020260125,0.015043127,-0.0031691927,-0.038548496,-0.059940737,-0.12544887,-0.07804271,-0.030988617,0.064439885,-0.024150696,-0.03770463,-0.06765269,0.035797898,-0.02441508,-0.0015777426,-0.05098511,-0.058109593,0.042639103,-0.03321511,0.0017393937,-0.05297454,-0.035368077,0.060685318,0.01756936,0.049659815,0.026649827,0.007613906,-0.0032888777,0.105691046,0.0026289315,-0.05297073,-0.063603245,0.033878624,0.028033096,-0.15570146,-0.00077480625,-0.0417994,0.034819674,0.093793556,0.036967613,0.005810923,-0.04016778,-0.039265104,0.030145505,0.03074835,0.042150173,-0.020057417,0.011061834,-0.0041961046,0.0350763,-0.11274346,0.009703271,-0.0059489314,-3.6847858e-08,-0.018292572,-0.03134487,0.00016356472,-0.043219265,0.048652757,-0.036395706,-0.002354882,0.1016874,0.0045521082,0.031559713,-0.028275816,-0.015094308,-0.081393726,0.08486597,0.07419361,0.047133643,0.077102,0.0602413,-0.0027889316,-0.005628642,0.12952636,-0.006990561,-0.07017617,0.020773657,0.033728052,-0.033965442,-0.097315565,0.0007423209,-0.04265183,0.030830882,-0.049840778,-0.014785342,-0.033722483,-0.038232952,0.023617264,-0.048156135,0.0463257,-0.06610656,0.017221352,-0.047440503,0.11092396,-0.03634975,-0.041122824,-0.0025195514,0.00090178545,-0.009957235,-0.027876753,-0.0028345163,-0.037836123,0.014608761,-0.06784774,-0.03228702,0.09279626,0.045970134,0.004373602,-0.05678101,0.032869853,0.02189387,-0.046619453,-0.056278847,0.035807557,0.098745055,0.039681613,-0.025710441} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:40.886429+00 2026-01-25 01:27:51.950851+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 584 google ChdDSUhNMG9nS0VJQ0FnSUNIMzVhY3FRRRAB 1 t 587 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ha sido todo muy fácil y agradable, destacando Dany y Antonio en el transporte desde el aeropuerto y la atención en sus instalaciones. Muchas gracias. ha sido todo muy fácil y agradable, destacando dany y antonio en el transporte desde el aeropuerto y la atención en sus instalaciones. muchas gracias. 5 2025-01-25 01:27:48.342701+00 es v5.1 J1.01 {A1.01} V+ I2 CR-N {} {"J1.01": "Ha sido todo muy fácil y agradable, destacando Dany y Antonio en el transporte desde el aeropuerto y"} {0.013928298,0.055227045,0.0029519785,-0.0019511919,-0.0051134764,-0.0643925,0.033110246,0.013161328,-0.060568962,0.005141301,0.06925196,0.019166822,0.0013586227,-0.03269432,0.045208897,0.052555453,-0.012744378,0.0008819754,-0.034525026,-0.0066813845,0.14878906,-0.023601795,-0.09306448,0.07762799,-0.081928514,0.0022155838,-0.027128309,0.0461824,-0.06011441,-0.07390555,-0.085680015,0.055186965,0.023460913,-0.009550555,-0.013507562,-0.015325136,0.046678696,-0.049089205,-0.028558701,-0.059197314,-0.08871394,-0.010553009,0.026156405,0.045140315,-0.02304882,-0.051596314,0.03754618,0.029401863,0.078168824,-0.037827957,-0.033471514,0.0011231315,0.045506373,-0.047726978,-0.011431955,0.02356412,0.01143222,-0.004842613,0.09062456,0.0049440567,0.010713195,0.033110812,-0.051288914,0.04363338,0.013905383,-0.082363114,-0.03255152,-0.023225434,-0.009742427,-0.023248915,0.073843606,-0.08931755,0.021177832,0.03960489,-0.024539169,0.06869732,-0.0031782633,0.01438682,-0.03811805,-0.030305227,0.045408405,-0.0042793057,0.018299278,-0.0283097,0.030216103,0.0147439735,-0.022015376,-0.02059803,-0.0093622925,-0.0036209852,0.018334707,0.04422555,-0.040116806,-0.045611348,0.06755706,0.01311585,-0.022928992,-0.013334538,-0.032480348,0.02010115,0.075597584,0.046171833,0.08018116,0.10446617,-0.12658608,0.032377593,-0.004110325,-0.0979667,-0.0057177716,-0.01860563,-0.0930832,-0.026948532,0.0077528576,-0.050374433,-0.10963139,0.022048386,-0.055642135,-0.01817782,-0.095300816,-0.12249887,0.019719684,-0.033601765,0.040098254,-0.007310217,0.016544502,-0.075973146,0.0433988,8.562015e-33,-0.115304016,0.006346767,-0.022820206,0.061475296,0.03320794,-0.04429012,-0.059927106,-0.013410994,0.02075393,-0.04971451,-0.056839537,0.06018511,-0.025076168,0.0386045,0.083767794,-0.06940244,0.032360215,-0.05279539,0.026872104,-0.044694215,-0.058010776,-0.06563507,-0.048949555,-0.029935969,0.03057368,0.06544576,0.014090046,-0.084891036,-0.032129038,0.09268979,-0.0031717874,0.04036075,-0.009284707,-0.0007460269,-0.04073304,-0.07369101,-0.0060420907,0.024013815,-0.03687274,-0.04461837,0.029526955,-0.0125887375,-0.094951764,0.03427582,-0.04855199,-0.02146023,0.026164819,0.039687485,0.14906654,0.0134053165,-0.031959727,-0.044006553,-0.07555083,-0.10015161,0.013018361,0.008620145,0.03697962,-0.015070273,0.035231344,-0.022219384,-0.06120837,0.051892098,0.045185335,-0.06451459,0.03860494,0.015161233,0.02729643,0.05305067,0.06881991,0.069581464,-0.0769475,-0.0058033224,-0.043063007,0.06448485,0.034835443,0.01858522,-0.027897233,-0.0075702323,-0.045344006,0.06806013,-0.073617615,0.04165243,0.025368327,-0.009819917,0.10531908,-0.025582423,0.025451424,0.054637518,-0.0112816375,0.0776777,0.013914049,0.11866676,0.0029947753,0.025411244,0.031458717,-1.105546e-32,-0.0037941574,0.015004972,0.0019573134,-0.023755316,-0.04920019,0.051777363,-0.018056512,-0.044017144,-0.0054392745,-0.024626179,-0.12345008,-0.06184504,0.097186394,0.0059542777,0.031707246,0.046777245,-0.0427091,-0.0690331,-0.11316891,-0.00827426,0.065613806,0.05374362,0.08829285,-0.07181749,-0.028409913,-0.08730013,0.0036158045,0.058549955,-0.022527097,0.050083958,0.0007783704,0.03533963,-0.02344927,0.09194645,-0.05045929,0.00026512324,0.07945642,0.09515402,0.014479735,-0.0127300825,-0.06033188,0.050206162,0.04290455,-0.039760068,0.0242598,0.030531373,0.03489979,-0.11758561,0.0027032788,-0.11466232,0.0888119,-0.057021912,-0.054725442,0.019110225,0.11312307,0.03517325,0.06486584,-0.041184496,-0.09663494,-0.0749291,0.035977483,0.0041606566,-0.013430868,-0.06642355,0.02246124,-0.01154336,0.017955191,0.023857314,-0.0050863875,0.0025587126,0.09952977,0.0019523622,-0.007709272,0.028886648,-0.022978283,-0.017457968,0.004015779,0.103286095,-0.033790193,0.007053914,-0.004203037,0.0538006,0.027965562,-0.05842642,-0.026959214,-0.050424542,-0.044141244,-0.014305294,0.021312717,0.027949251,0.032420475,0.04571215,-0.043875284,-0.031527728,-0.059842218,-4.280957e-08,-0.04812061,-0.05987862,0.01887802,-0.0105003705,0.001289433,0.023265675,-0.040930964,0.09075245,-0.013061695,-0.021477064,0.054803193,-0.03828002,-0.0241591,0.07324202,-0.041021433,-0.0014746027,-0.0048234034,0.13139431,0.0062458455,-0.07422483,0.0842767,-0.0290855,-0.0051773014,0.08564293,-0.0008500739,-0.0105664665,-0.07949077,-0.08520899,0.0005631186,-0.02606653,-0.06729738,-0.020818582,-0.03478951,-0.07608449,-0.009596786,0.010782184,-0.024442213,0.016016217,-0.03296668,-0.041702606,0.07731574,-0.009347543,-0.057769336,0.018716423,0.044297673,-0.040091623,-0.08583544,-0.016661454,-0.06892199,0.04654994,0.015944367,-0.049378995,0.09476998,0.06010493,0.055402737,-0.018499548,-0.038564906,-0.0195761,-0.03538537,-0.012765326,0.0161439,0.124870375,0.047666073,-0.020242775} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:36.114719+00 2026-01-25 01:27:51.954054+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 585 google ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE 1 t 588 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El trato al público ha sido maravilloso. En especial Sergio y Vanesa nos dieron recomendaciones de sitios chulísimos que no nos podíamos perder. Desde luego repetiremos, muchas gracias. el trato al público ha sido maravilloso. en especial sergio y vanesa nos dieron recomendaciones de sitios chulísimos que no nos podíamos perder. desde luego repetiremos, muchas gracias. 5 2025-01-25 01:27:48.342703+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "El trato al público ha sido maravilloso. En especial Sergio y Vanesa nos dieron recomendaciones de s", "R1.01": "Desde luego repetiremos, muchas gracias."} {0.06893919,0.04368021,-0.0984717,-0.05201197,-0.094670326,0.01952991,0.029858964,0.05238543,0.0149151115,0.027198968,0.042712588,0.063127786,-0.07583395,-0.048868082,0.038393375,0.008140266,-0.01672699,0.07835259,0.050668146,0.018423708,0.009995331,-0.08825699,-0.05426195,0.13071108,-0.12694967,-0.0056408807,0.019651897,0.019118913,-0.05584738,-0.05157609,-0.00092421914,0.0883949,0.12561983,-0.019278988,-0.031308174,-0.014454368,0.05446957,-0.044549443,-0.016242426,0.014640689,0.0043216315,-0.025067374,-0.022430135,-0.013799229,-0.011971835,-0.14616841,-0.004779329,0.08434022,-0.0021714086,-0.018833231,-0.062204193,-0.015130226,0.0320766,-0.017034128,-0.047826573,-0.04732281,-0.0006542506,0.03036032,0.0667766,-0.036710605,0.057167873,-0.042745553,-0.072863914,0.040878378,-0.026983438,-0.008548244,-0.019856714,-0.020050824,-0.027259847,0.049683742,0.06121528,-0.0776261,0.08642315,-0.027428342,-0.044699907,0.042447325,-0.043797422,-0.0026714369,-0.032218087,-0.055467706,0.109618604,0.016633183,-0.024642937,-0.023174236,-0.004436044,0.04570953,-0.004371023,0.012001058,-0.0077748527,-0.01797112,-0.05066067,0.10807653,-0.053039234,-0.052433923,-0.10225346,0.056765236,0.03866351,-0.030701185,-0.031968165,0.020398453,0.06578675,0.08773483,0.11250078,-0.009385159,-0.08465367,0.0964623,0.0038904222,-0.045883823,-0.020996394,0.0785882,-0.1152333,-0.05180337,-0.07779213,-0.055882655,-0.038530678,0.016940346,-0.039828133,-0.046556782,-0.0095428815,-0.020688817,0.023109615,-0.008985509,0.01271455,-0.043423854,0.0813066,-0.020178838,-0.0039964924,1.1788235e-32,-0.022543881,-0.0011148363,-0.0038379629,0.016989304,0.049365245,-0.012091065,-0.004205962,-0.01121474,-0.024972713,-0.006000464,-0.016404543,0.02575238,0.010161895,-0.023453113,0.09102233,0.044927076,-0.0033407107,0.0069093676,0.04483844,-0.08323903,-0.045709897,-0.0120083,-0.03363023,0.009497018,0.043448217,0.100098215,0.060707513,-0.1115311,0.024706678,0.060658645,0.026118012,0.1139264,-0.003972462,-0.020514116,0.032676127,-0.030897023,-0.048115876,0.02214211,-0.007513495,-0.0023134954,0.014543078,0.02642284,0.0015170618,0.067886196,0.0036338437,0.022840519,0.006824781,0.021302454,0.11289151,0.05688365,-0.06984467,-0.051670726,-0.10021079,0.03134723,0.02755929,-0.014751661,-0.050935373,0.033279464,-0.026287483,-0.11191999,0.067015946,0.015289179,-0.025646133,0.008714958,-0.06452257,-0.00460972,-0.030174106,0.006964385,0.111229844,0.018398007,-0.0152786,-0.025138766,-0.038501486,0.014114608,-0.035870235,0.0077001876,-0.020386916,0.031840004,0.011594908,0.06267006,-0.02918838,-0.023173543,0.030185288,0.028651195,0.10170662,0.096863806,-0.0038313153,0.06377036,-0.04499595,0.118293285,-0.00012547411,0.058970097,0.001331132,0.020152876,-0.01348516,-1.2583045e-32,-0.022366898,0.0025777943,0.04796552,0.0063792495,0.013207178,-0.029492764,-0.15607546,-0.07502918,0.039533265,-0.008546878,-0.11152741,-0.09154194,0.06954009,-0.034923777,-0.03809707,0.066271886,-0.013635347,-0.10757403,-0.09879759,-0.09377089,-0.01712276,0.03349063,-0.005115791,-0.03206975,-0.04168168,-0.12107637,0.0042422656,0.012459338,-0.047618005,0.022869019,0.025583597,-0.015453688,-0.013099549,0.02372993,-0.02816479,0.056720037,0.017805742,0.026440928,0.01645578,0.05397426,0.0022143729,0.031570327,-0.0065514413,-0.07166106,0.041872162,-0.08217895,-0.0582962,-0.11350459,-0.0066221305,-0.068240985,0.029798463,-0.010220837,-0.028146788,-0.036654,0.057030607,0.050768208,-0.004880874,-0.04647544,-0.063254364,-0.030764487,0.039658707,0.05380111,-0.107881844,0.049299262,0.08981823,-0.023331825,-0.06983257,0.040244885,-0.02703404,0.055406727,0.042799614,-0.06731272,-0.06633137,0.08833856,-0.064790584,0.041134577,-0.07869844,0.029138887,0.047238387,0.055561673,-0.020964192,-0.014644106,-0.029439576,0.021211967,0.028499622,-0.010428612,0.015574398,-0.06540401,-0.045161806,0.07501228,0.06964273,0.05487358,-0.009949054,-0.060667343,-0.015745996,-4.7773575e-08,0.0007545705,-0.0778882,-0.029911857,0.060998317,0.06844355,-0.016698303,-0.03356652,-0.012747269,0.0010724365,0.13069065,-0.05526174,-0.03523447,-0.020209407,0.09181611,0.00942056,-0.008442164,0.10838085,-0.0148182465,-0.055146746,-0.028213698,0.016565293,-0.022348978,0.005442687,0.022626113,-0.022955662,-0.0055036526,-0.0043126345,-0.014549175,-0.014513335,0.03502843,-0.03586018,0.03059954,-0.030298056,-0.086028315,0.03293964,0.042018797,-0.029327735,-0.015273862,-0.04106647,0.029626166,0.06521694,-0.0034544473,-0.021300076,-0.014325236,0.030759687,-0.008794439,0.0093770195,-0.038633063,-0.035126083,-0.035850797,-0.058072556,-0.04356222,0.066543184,0.005715827,0.039231114,-0.0024551905,0.044952087,0.09011509,0.03831854,-0.0010712919,0.05178444,0.06181867,-0.0009913668,0.006219086} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:31.382027+00 2026-01-25 01:27:51.958292+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 586 google ChZDSUhNMG9nS0VJQ0FnSUNueXU3ak5REAE 1 t 589 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La experiencia con esta empresa ha sido genial, el trato con Carlos y Antonio fue magnífico, es un placer trabajar con profesionales como ellos, su amabilidad y dedicación con el cliente es de 10. Gracias la experiencia con esta empresa ha sido genial, el trato con carlos y antonio fue magnífico, es un placer trabajar con profesionales como ellos, su amabilidad y dedicación con el cliente es de 10. gracias 5 2025-01-25 01:27:48.342705+00 es v5.1 A1.03 {} V+ I3 CR-N {} {"A1.03": "La experiencia con esta empresa ha sido genial, el trato con Carlos y Antonio fue magnífico, es un p"} {-0.0061946535,0.01887266,-0.07924907,0.0056440937,-0.05202882,0.008074683,0.09003886,0.04724569,0.002440425,-0.065523036,0.021695172,0.050937835,-0.017023107,0.0057696793,0.016066939,0.018410143,-0.002109745,-0.01470954,0.018922862,-0.01321038,0.033623423,-0.121021815,-0.029033704,-0.0058417907,-0.05502294,-0.06340125,-0.0051232665,0.024036199,-0.10728671,-0.098242916,0.022459606,0.05662127,0.08585312,-0.009469631,-0.010143834,0.073570326,-0.0036011492,-0.008250523,-0.013748632,0.0474631,-0.09100839,-0.04622392,-0.042532835,-0.08557355,-0.015642365,-0.105711326,0.077162005,0.059662078,-0.005804875,0.06768125,-0.093044326,-0.0064161904,0.030696247,0.01869306,0.013435207,0.015315175,0.019788891,-0.027445422,0.010604795,0.013132286,0.011561474,0.029937865,-0.08528924,0.06484086,0.068797655,-0.033198677,-0.03707654,-0.01581365,-0.08668163,-0.09133483,0.09202265,-0.14031316,-0.018478382,0.0046997922,-0.026550917,0.10677873,-0.00937467,0.032946836,0.025091836,-0.00059852004,0.05588567,0.016773744,-0.043943323,-0.012723827,-0.067169316,-0.015241686,0.07257702,0.016652228,0.0035705536,0.06409654,0.024479112,0.07274307,-0.082235366,-0.007827065,0.01171298,-0.026535353,0.0022850828,0.04218754,-0.052995276,0.01267558,0.04223093,0.04858723,0.10520265,0.026495067,-0.07909731,-0.055250272,0.06272299,-0.012864316,-0.023948137,0.03673227,-0.100994214,-0.011979996,-0.100906536,-0.043622535,0.022816937,0.014259931,-0.023329997,0.04811229,-0.008126076,-0.07066123,0.05460621,0.068554334,-0.030671917,-0.02109836,-0.01853871,-0.014216579,0.024898684,7.3479425e-33,-0.017409384,-0.0077447584,0.0073089353,0.10531861,0.050225906,0.046092615,-0.018135794,0.0538726,-0.07667575,0.014994551,-0.033064883,0.146185,0.067499556,0.01879515,0.013887769,-0.017172135,-0.035528027,0.048667643,0.019154537,-0.0433423,-0.016390717,0.01765565,-0.059464075,0.05072957,0.037192028,0.080088936,-0.026659494,0.014399584,-0.029676806,0.045968693,0.014328231,0.03027318,0.019605462,-0.07591189,-0.016652107,0.006980715,-0.0092266975,-0.015356567,0.041504394,-0.07059755,-0.061106827,0.017540911,0.04212377,0.03837633,-0.062270004,0.05202265,0.067697614,-0.029450906,0.08031241,0.046796504,-0.028125409,-0.09717803,-0.05162314,0.04241212,0.10325823,-0.008694875,-0.057447046,0.0067381677,-0.011857803,-0.0865931,0.05181231,0.026495926,-0.03929357,0.011559448,-0.027635796,-0.07012135,0.032571513,0.019481625,0.17110035,0.028744463,-0.053671636,0.050410125,0.014521625,-0.013473872,-0.04430053,0.0014205623,-0.062116668,-0.047879826,-0.0077547063,0.07695278,-0.047917478,-0.014442385,0.067608036,0.00015437895,0.08227051,0.122723386,0.025106952,0.01993383,-0.019043947,0.14005136,0.0065918346,0.08146833,-0.011939842,0.02961677,0.057180397,-1.0123848e-32,-0.03802935,-0.069847696,0.024806358,-0.0066300337,-0.019268349,-0.003602307,-0.0077287606,-0.014171183,-0.02245157,-0.029713301,-0.08448638,-0.09447188,0.08485815,-0.028135179,-0.11166913,0.013953171,-0.048601963,-0.102542,-0.034363512,-0.046969797,0.037730396,0.042207718,0.077771984,-0.005043935,0.016664034,-0.07740079,-0.025445735,-0.047442485,-0.06206257,-0.026434034,0.019597571,0.015688946,0.0017710819,0.09852101,-0.078730136,-0.025185049,0.038766183,0.049102843,0.07371684,0.02862357,0.034634706,0.07071661,0.020752737,-0.04860399,-0.004200876,-0.041486602,0.011115148,-0.15783197,0.009423763,-0.048615918,0.019210039,-0.039125234,-0.10652915,-0.049759556,-0.042644694,0.020360935,-0.010703184,-0.07467919,-0.08750755,0.0087436335,0.06512631,0.046867862,0.04354188,-0.011321647,0.054277383,-0.005711214,-0.03354289,0.082933754,-0.025486408,0.030197283,0.097110994,-0.052473713,-0.08252172,0.033919714,-0.024777696,-0.010456051,-0.07137029,0.0042984965,-0.033857632,0.040911764,0.00459506,0.037447874,-0.025935365,-0.031552,-0.014851096,0.014472468,0.0022280763,0.0021095301,-0.019299623,0.014164761,-0.033177778,0.0011543402,-0.053672105,-0.066811636,-0.048010353,-4.502903e-08,-0.023004634,-0.034517862,0.008203321,-0.018587498,0.026795639,-0.0596849,-0.012726409,0.0395471,0.036187638,0.09478323,-0.014009555,-0.008844408,-0.09551157,0.06111228,0.07107946,-0.019914398,0.099193856,0.049061153,-0.00457893,-0.01032833,0.03103521,0.058614995,-0.0722021,-0.005888638,-0.0033570302,0.017939983,-0.09238925,-0.01857269,-0.04338031,0.012235243,-0.017893635,0.025303409,-0.0016377821,-0.10773308,-0.11058015,-0.0016220479,-0.024124732,-0.041890863,-0.046442013,-0.018809635,0.056172434,-0.01606424,0.016374024,-0.014918772,-0.071498096,-0.07474954,-0.0607263,0.009517504,-0.030847773,0.0002785451,-0.040328104,-0.022081167,0.05359627,-0.02106848,0.041975517,-0.06282623,0.026789641,0.023203986,-0.0035014693,0.026172329,0.004044293,0.012308675,0.03515129,-0.021113757} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:25.833083+00 2026-01-25 01:27:51.964161+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 587 google Ci9DQUlRQUNvZENodHljRjlvT2xrMVVsVXlNakUzYzNCR2NWUnJTM2N0UzNWV1pGRRAB 1 t 590 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excelente trato por parte del equipo. Gracias excelente trato por parte del equipo. gracias 5 2025-08-28 01:27:48.342707+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Excelente trato por parte del equipo."} {0.008750685,0.049433395,0.024648346,-0.048564676,-0.07046212,-0.019165263,0.083101116,0.056650992,0.007676367,0.003924854,0.07219279,-0.006465547,-0.06244326,0.0065538697,0.006362255,-0.069250144,-0.04516868,0.038015734,0.0056937914,0.017421143,0.083383985,-0.06494113,-0.06223829,0.12331662,-0.024008755,0.018430574,-0.015261151,0.06956358,0.010227773,-0.1298396,-0.073085696,0.050310045,0.08811546,-0.0029150248,-0.0046442333,-0.01515431,0.03902631,-0.048686773,0.0038800454,0.042431206,-0.067402646,-0.013659339,-0.007609032,-0.0020742973,0.005706714,-0.087107055,0.05144215,0.052710664,-0.012877785,0.0050715487,-0.020772506,-0.041861374,-0.0056071193,0.065107174,-0.005114124,-0.009071499,0.045604248,-0.033364065,0.035258666,-0.0051810704,0.006949722,0.052273404,-0.07300369,0.05839398,-0.019471,-0.007397341,0.02838055,-0.06463122,-0.12225652,0.047515664,0.038725942,-0.021939542,0.026440162,0.08622238,-0.070224516,0.110570885,-0.011832666,0.0042693387,-0.010888192,0.039939012,0.02131663,0.03709052,-0.031863086,-0.013524617,0.013313142,-0.01384928,-0.008969136,0.0072204885,0.02997234,-0.008858432,0.01727113,0.047501367,0.0036426643,0.015457638,-0.059980143,0.08689756,-0.001379841,-0.07357718,0.031702995,0.043375753,0.0921843,0.05700351,0.075702,0.000924748,-0.031135077,0.037723172,0.027867347,-0.038372632,0.028270552,0.0025466958,-0.07718956,-0.07386814,-0.028451188,-0.04627058,-0.057994097,-0.022393188,0.059065398,-0.013892014,0.00808577,-0.025990129,0.04896082,0.00016644168,-0.050953683,-0.020111179,0.09893203,-0.05546957,0.04955418,4.1027596e-33,-0.011768468,-0.05258372,-0.0048625316,0.10534988,-0.005017288,0.06770218,-0.040014185,0.00040227105,-0.07249487,0.018473374,-0.07901414,0.071768895,0.00943187,0.022934275,0.07868082,0.06901039,-0.055794448,0.011678812,0.059173588,-0.010894068,-0.08178411,-0.07152401,-0.008235805,0.00288079,0.00055893307,0.072696246,-0.056205332,-0.03984534,-0.04564363,0.052125882,0.03377957,0.09047407,-0.05699263,0.04991265,-0.03393253,-0.07999174,0.065328956,0.028369254,0.009601633,0.0024522783,0.029460086,0.040829793,0.02457014,-0.00838471,0.051921275,-0.0971485,0.017310157,0.071565755,0.13900219,0.04240786,-0.0249875,-0.058729023,-0.012588342,-0.05665454,-0.014011774,0.07826431,-0.11706399,0.11530399,0.016730161,-0.0557333,0.016867675,0.08962961,0.025016943,-0.029656656,-0.038038384,0.06123349,-0.0015153151,0.027058309,0.10349907,0.021909734,-0.06419041,-0.14658375,0.046312775,0.02333761,-0.035884023,-0.063353166,-0.063811,-0.019466568,0.010589418,0.005714853,-0.020100376,-0.02588719,-0.014146518,0.008671165,0.07443212,0.09308996,0.06250463,0.010824823,-0.008117196,0.010894829,-0.013439549,0.03047237,-0.031133441,-0.036255434,0.05315981,-5.4596526e-33,0.037767924,-0.044612385,0.012429766,-0.009034627,-0.015668115,-0.055689353,-0.07041307,-0.041216824,0.016567606,0.059977718,-0.032182693,-0.15462229,0.051288787,-0.028825548,-0.044033606,0.039352324,-0.032955904,-0.0738954,-0.06579721,-0.05960791,-0.03983583,-0.0750812,0.0013318436,0.003781657,0.018845106,-0.072736084,-0.026164696,0.026245562,-0.030973626,-0.023250343,-0.026999803,-0.04986211,-0.00819733,0.038957473,-0.045885094,0.011783639,0.06055712,0.044737138,0.0985305,-0.019793432,-0.008060648,0.012532174,0.044777453,0.01417003,0.040915728,0.02318814,0.02200115,-0.10565486,-0.051984962,-0.04979564,0.05484857,-0.0009336043,-0.033124983,-0.0037479224,0.037429605,-0.010475935,-0.015829144,-0.061812762,-0.11093567,0.020818165,0.0718056,0.0857109,-0.057945643,-0.0105697205,0.117843926,-0.0129094375,-0.06718536,0.01495551,0.0041389405,0.0884898,0.059193254,-0.09829026,-0.018775513,-0.037259787,-0.0068977405,0.00034444963,-0.087934814,0.053026386,0.016879324,0.016018514,0.014522822,-0.037451617,-0.031181337,-5.0332306e-05,-0.04101992,-0.06274656,-0.054960914,0.02286572,-0.015168245,0.089977615,0.022169458,0.051958397,0.013239831,-0.017899059,0.03715715,-2.7349074e-08,0.038769066,0.017687377,-0.036434025,0.0050505586,0.054624785,-0.0028742629,-0.05379291,0.0473163,0.0653444,0.096703194,0.04142548,-0.0580551,0.013308742,0.058120757,-0.020119227,0.077952646,0.04268487,0.046778504,-0.03619219,-0.019962916,0.08593276,-0.026317542,-0.05661974,-0.04629966,-0.010321641,0.00528949,-0.04945282,-0.010560924,-0.10622964,0.013489042,-0.09130084,-0.0010205817,0.008796486,-0.09113864,0.005811735,0.05157168,0.004439187,-0.013812343,-0.011054074,-0.034312703,0.038636073,-0.05560816,-0.049607106,-0.096269235,0.046370797,-0.07329796,-0.042197216,0.04788628,-0.041473933,0.059870765,-0.07220883,-0.046897776,0.019643852,0.01280133,0.02994827,-0.07937707,0.04345061,-0.04913763,0.024263153,-0.010271311,0.07387778,0.12030376,0.024493309,-0.07292251} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:19.226207+00 2026-01-25 01:27:51.968526+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 640 google ChdDSUhNMG9nS0VJQ0FnSUM3ejVHeDhnRRAB 1 t 643 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carmelo muy amable y simpático, todo perfecto. carmelo muy amable y simpático, todo perfecto. 5 2025-01-25 01:27:48.343029+00 es v5.1 A1.01 {} V+ I3 CR-N {Carmelo} {"A1.01": "Carmelo muy amable y simpático, todo perfecto."} {-0.008154716,-0.0047629112,0.0563285,0.02926732,-0.04302878,-0.00045924028,0.08830131,0.052547276,-0.060561944,0.00596896,0.018456114,-0.0051985886,-0.010710252,0.0066162064,-0.06681599,0.025453176,0.023351984,0.1041473,-0.028453976,-0.016298829,0.08218265,-0.059149366,-0.05411674,0.11563002,-0.07293939,-0.023983596,0.0055605737,0.023079008,-0.068422705,-0.032047104,-0.06609882,0.06825556,0.12749751,-0.031849004,0.0011099211,-0.015105734,0.050389174,-0.07414916,0.06068877,-0.048101228,-0.05350023,-0.026164725,-0.006813249,0.011034176,-0.0018840729,-0.07390408,0.05497561,0.069926314,0.05675041,-0.026016477,-0.14359662,-0.029293275,-0.045854904,-0.01470565,0.07336655,0.035993095,-0.08520236,-0.01161401,0.06219909,0.010818909,-0.071903616,0.03726666,0.021426436,0.07177449,0.04690976,-0.012670074,0.028671257,0.06328467,-0.10829779,0.026190095,0.12805085,-0.008411926,0.0632308,0.024909198,-0.030596206,0.13378116,-0.010788257,-0.012354146,-0.054323737,0.04668556,-0.04218889,-0.059289917,-0.0073837726,-0.0693871,-0.010336033,0.0032626109,-0.03145257,-0.037917033,0.03804161,-0.014637728,0.0026971898,0.055975154,-0.12383403,-0.067994215,0.025937565,0.033083424,0.03101222,-0.050914735,-0.020884208,0.043180354,0.059518524,0.048627157,0.11773315,0.021377407,0.011416378,0.06862907,0.043663427,-0.09695771,-0.018887639,0.06661275,-0.020144396,-0.05751806,-0.043579817,0.006241024,-0.035033584,-0.0118320035,-0.022339238,-0.0177595,-0.016576096,-0.0734515,0.06996195,0.025777385,-0.010515453,-0.024707945,-0.049661793,-0.053168375,0.069580995,1.327526e-33,-0.06987096,-0.013535522,0.021986814,0.09164354,0.056836247,0.011486755,-0.02106506,-0.056732565,-0.07259384,-0.02362612,-0.04200164,0.005901475,0.016809661,0.0794828,-0.031636517,0.038030744,0.016085813,-0.036969785,-0.058472056,0.053245787,-0.029821275,-0.03248824,-0.035754897,0.01181225,-0.052329246,0.06926081,0.0073479377,-0.089830674,0.0034553877,0.05505842,-0.020037366,0.06647757,-0.010745631,0.024471762,-0.043629546,-0.039880253,-0.0087579,0.009446775,0.023665715,-0.010182688,0.039147343,0.020206105,0.009271446,-0.0005427293,-0.023061795,0.023088714,0.07560039,0.06746814,0.08225927,0.028152976,-0.039124772,-0.118629456,-0.09937844,-0.0586393,0.038920138,0.025321094,-0.024990538,0.04253252,0.006609644,0.023412567,0.0105406325,-0.0013872557,-0.027471732,-0.031414513,-0.064619906,-0.004010926,-0.06790702,0.027504457,0.13278288,0.046076562,-0.014638548,-0.05821293,-0.059493028,0.07450157,-0.026591033,-0.055285178,0.053727325,-0.010107854,0.035429895,-0.004151781,-0.061471943,0.07647818,0.0394224,0.010497763,0.021985535,0.06359902,0.024771633,0.06685531,-0.079265624,0.088121235,0.023896065,0.07655549,0.062600374,-0.06533665,-0.02088358,-1.7214195e-33,0.03295418,-0.021443093,0.033863746,0.09231071,-0.039810464,-0.023508307,-0.07474961,-0.029462736,0.08480006,-0.08150694,-0.07032884,-0.11731208,0.10679969,-0.012492389,-0.021360885,0.09789622,0.0780644,-0.06218733,-0.09136173,-0.001481801,-0.008531147,0.012403595,0.016303442,-0.033163823,-0.030453166,-0.039417863,-0.021811742,0.05946595,0.002206239,0.03273527,-0.0071696257,-0.05830727,-0.08986893,-0.0036598407,0.025713004,0.08198098,0.0095932055,0.045099743,0.0032533417,0.05302109,-0.02374474,0.023490803,-0.07359068,0.0410464,-0.0026394706,0.052562058,0.0019642024,-0.0657539,-0.036338553,-0.05287845,0.02839671,-0.023140952,-0.05050202,0.039671097,0.05020764,0.025057444,-0.029497316,-0.035027977,-0.07991928,-0.046474203,0.03331631,-0.023164982,-0.012678836,-0.014988976,0.0770646,0.023094198,0.015462623,-0.023964828,-0.09882519,0.014020592,0.064786516,-0.015089136,-0.09743789,-0.031389993,-0.03453992,0.0017432052,-0.13973953,0.024765873,-0.03468774,0.022106439,0.02748279,0.007118757,-0.05684545,-0.01520911,0.037937388,0.008711492,-0.01431308,-0.021423975,0.0041431477,-0.0006373814,0.024569744,0.05208045,-0.033744246,-0.030561889,-0.022346487,-2.1879464e-08,0.013008528,-0.032894127,-0.11145443,-0.018908337,0.041060682,-0.05258332,-0.037330575,-0.010183697,0.035245758,0.052504368,0.0253009,-0.033430185,-0.00076980086,0.047083493,-0.0046708337,0.054133844,0.05792804,0.07661806,-0.014196659,0.015714962,0.043880194,0.035696503,-0.062378865,-0.053487655,-0.036255375,0.062607914,-0.01086127,-0.0442315,-0.04787937,0.031578727,0.018945789,0.007533186,0.0039718812,-0.119429894,-0.07624197,0.0430495,-0.0043887733,-0.041120518,-0.004992901,-0.06438964,0.1010828,0.01695485,0.025509264,-0.03043005,0.029598355,-0.048341013,0.014232263,-0.011056953,0.016714815,0.013006577,-0.06571716,0.023031924,0.051229246,0.023939827,0.03435737,-0.037749577,0.09201564,0.04681295,-0.01049526,0.035604466,0.10496101,0.116801165,0.057281844,-0.04782587} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:12.450752+00 2026-01-25 01:27:52.171603+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 590 google ChdDSUhNMG9nS0VJQ0FnSUNuaHVyXzhRRRAB 1 t 593 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, Antonio y Néstor y por las gestiones en la oficina. muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, antonio y néstor y por las gestiones en la oficina. 5 2025-01-25 01:27:48.342723+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, Antonio y Néstor"} {0.0641561,0.103004575,0.022124803,0.04449021,-0.038549528,-0.042794827,0.019032834,-0.024512932,-0.017527187,0.0075452924,0.10261107,-0.032211777,-0.033801768,-0.030510303,-0.014143983,0.048073854,-0.037182413,0.045367144,-0.06019179,0.06531554,0.13115989,-0.012959341,-0.058261648,0.144601,-0.04357008,0.05090193,-0.05320133,0.05377102,-0.030250564,-0.020298257,-0.06222677,0.026820095,0.07011766,-0.009491149,-0.021116858,-0.013777178,0.017705841,-0.015896592,0.0029284728,0.014589618,-0.08150209,-0.02465353,0.008324112,0.075002596,-0.060460236,-0.086576484,0.008200986,0.06311086,0.030789915,0.026380017,-0.063234,-0.037677106,0.016884368,-0.060350716,-0.0062157745,0.028636409,-0.037853826,-0.083394215,0.04823872,-0.05078025,0.019740568,0.033125382,-0.06112949,0.023107585,-0.017641943,-0.07038811,-0.063665316,0.009546097,0.022132128,-0.027048238,0.11119055,-0.08712036,0.021873273,0.051770773,-0.070775054,0.04574217,0.016465165,-0.0033779473,-0.048569385,-0.047741074,0.1136158,-0.060078993,-0.07285956,-0.058855984,0.04865246,0.005405776,-0.021494774,0.05068674,-0.027653888,0.014910683,0.00278415,-0.0012442701,-0.0022148797,-0.06621266,0.036493167,0.060794417,-0.0033764953,-0.04734943,-0.0056629498,0.023364367,0.08993024,0.0064194994,0.03551066,0.11765091,-0.08491229,0.03565405,0.0159367,-0.09012107,0.026454195,-0.037563704,-0.1187111,-0.046842255,0.0027209125,-0.05293632,-0.072654545,0.020293435,-0.00275915,-0.018720835,-0.09066935,-0.08692841,0.0019337136,-0.041022696,0.035040963,-0.009005443,0.045899916,-0.074404456,0.034944702,6.845077e-33,-0.0194736,-0.055096157,-0.029440012,0.122353144,0.042606093,0.022280738,-0.05713865,-0.0061812988,-0.010926093,-0.026393967,-0.09198435,0.0067096115,0.008074896,-0.019192614,0.08334504,-0.0006172204,-0.040801447,-0.046990316,0.01938175,-0.043460663,-0.123956114,0.014884692,-0.051852517,-0.01462337,0.019267775,0.07763719,-0.01590825,-0.12177897,-0.0825991,0.07828899,0.030522313,0.039627645,-0.06393423,-0.039619632,-0.04583138,0.0023680914,0.035691146,-0.0029588,-0.010897353,0.011992521,-0.0620961,0.0011444502,-0.0029396454,0.04641978,-0.021196524,-0.0155226365,0.023554234,0.09363734,0.10039622,0.022082122,-0.0027834985,-0.031485934,-0.06885795,-0.09730654,-0.007168784,0.059495628,-0.02871408,0.05453452,-0.039174154,-0.053903487,0.04425321,0.022150993,0.022150796,-0.035737284,0.0155130625,0.03856476,0.008860734,0.07655005,0.06846657,0.10078755,-0.081597395,-0.045384165,-0.04881222,0.08574046,-0.022797424,0.015000671,0.002587016,-0.03242279,-0.046494145,0.07763176,-0.08156992,0.0529194,0.050844517,0.015169341,0.02221569,0.031894885,0.029638551,0.053495575,0.034217663,0.060821768,-0.06445335,0.09249354,0.038998377,-0.020204568,0.024169171,-9.803243e-33,-0.02470095,0.027033944,-0.032209154,-0.037668258,-0.0017551874,0.011063919,-0.050790343,-0.032834813,-0.076948434,-0.05352519,-0.09696226,-0.07221906,0.054496188,-0.05514833,0.050430097,0.06139817,-0.027392993,-0.05298677,-0.089309275,-0.067419276,0.010840159,-0.03065955,0.035437267,-0.037470844,-0.041912556,-0.039897196,0.05100256,0.015764596,-0.013108768,0.0117792785,0.045902032,0.055826314,0.006125551,0.10417819,-0.031053832,0.10881066,0.009448671,0.06963156,0.0017010709,-0.011389885,-0.021607134,0.04195668,0.0921543,-0.0032337056,0.024932126,0.017307518,0.031350944,-0.08965504,-0.0043250346,-0.10707697,0.08934793,-0.08866649,-0.05663385,0.01920856,0.112013265,0.021097865,-0.0030643798,-0.070904374,-0.046109844,-0.0736175,0.003558244,0.008824075,-0.05222675,-0.0155923255,-0.01835147,0.0050975587,-0.0739504,0.059422415,-0.030936146,0.03295519,0.023684736,-0.069144465,-0.07974985,0.060563702,-0.031207174,0.068769805,0.00019528613,0.060273405,-0.010911219,-0.03427374,0.01392369,0.061648913,0.010982641,-0.03957512,-0.0095627,-0.015833719,-0.0050740563,-0.004849329,-0.022323132,0.03870857,-0.015951963,0.05508465,-0.0637194,-0.12580529,-0.023924926,-4.2344222e-08,-0.0019251629,-0.0042122495,0.026412008,0.01569018,-0.0134380665,0.062030125,0.037371997,0.05449445,0.0019294139,0.045154363,0.0030738045,-0.045224864,-0.0008266403,0.06347028,-0.005967725,-0.010769489,-0.012586397,0.06752202,-0.01448058,-0.048913065,0.031229915,-0.012929202,-0.06592026,-0.005746878,-0.018245513,-0.0024098696,-0.053901277,-0.05470424,0.03269139,0.033134323,-0.0043374104,-0.018413456,-0.06416721,-0.097844966,-0.024238763,0.044680793,-0.07603158,-0.053249236,-0.04531144,-0.11480386,0.045675103,0.034883726,-0.024041012,0.0009983632,0.061665222,-0.09582268,-0.01179682,0.04294334,-0.046790708,0.061914,-0.026193883,-0.047771484,0.10008737,0.047029853,0.030661227,-0.028079038,0.008375855,0.010194718,0.01515957,-0.03819625,0.052219708,0.065631315,0.024911609,-0.010328728} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:07.565301+00 2026-01-25 01:27:51.976506+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 591 google ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE 1 t 594 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Rapidez, eficacia, claridad y trato directo, sin marear la perdiz. Alquiler de un día para otro, del sábado para hoy domingo.\nEncantada con el trato telefónico y en persona.\nGracias Carlos y Antonio rapidez, eficacia, claridad y trato directo, sin marear la perdiz. alquiler de un día para otro, del sábado para hoy domingo. encantada con el trato telefónico y en persona. gracias carlos y antonio 5 2025-01-25 01:27:48.342732+00 es v5.1 J1.01 {} V+ I2 CR-N {} {"A1.01": "Encantada con el trato telefónico y en persona. Gracias Carlos y Antonio", "J1.01": "Rapidez, eficacia, claridad y trato directo, sin marear la perdiz. Alquiler de un día para otro, del"} {-0.018840306,-0.0053986935,-0.03672971,-0.0910875,-0.082426555,-0.024625644,0.089793265,0.05724334,-0.012195276,-0.027102616,0.09980591,-0.018254114,-0.07867699,-0.062864274,0.03794738,-0.026387583,0.01571738,-0.009713159,0.0067312038,-0.019674677,0.09812372,-0.0461818,-0.07505458,0.08039001,-0.04295421,-0.031463586,-0.017230472,0.080511205,-0.062331554,-0.04474812,-0.052510757,0.0998303,0.08799462,0.005523445,-0.041408006,0.0032763542,0.021215018,-0.048329145,-0.056490038,0.061338622,-0.06960753,-0.01787922,-0.061144453,-0.005734611,-0.03166568,-0.10994813,0.040029075,0.09762276,0.024907924,-0.024338098,-0.079246305,0.039541364,-0.02368638,0.031130698,-0.08010944,0.087936,-0.032784764,0.04636179,0.12026093,0.044801217,-0.035248775,0.043777198,-0.0016099672,0.03996736,0.044870175,-0.0017665214,0.0076082316,-0.013407467,-0.017479936,0.0065566227,0.0035210545,-0.054886974,0.01851953,0.0015907052,-0.057928715,0.041601826,-0.011538774,0.0060258745,-0.030753974,-0.07660735,0.012236391,-0.054364406,-0.009562275,-0.041632235,0.0365309,0.020082645,-0.012561573,0.04096711,0.04111094,-0.056840535,0.019973218,0.06704191,-0.014320781,0.011565179,-0.096299835,0.051367003,0.0183584,-0.10190265,-0.028395066,0.044475194,0.072202496,0.0144820325,0.03406026,0.06618429,-0.029668976,0.032448947,0.038171045,-0.027200662,-0.00033288298,0.05390158,-0.12149026,-0.00037049205,-0.0016067462,-0.056196168,-0.012839272,-0.0016046135,-0.024809165,-0.004690396,0.10421808,-0.057970766,0.03132018,-0.009700276,-0.040977325,0.010115344,0.044094134,0.032007456,0.10918118,1.2831633e-32,0.021055792,0.033962715,-0.005502793,0.009166025,-0.013624918,0.037278533,-0.038738668,0.05858758,-0.042356372,0.07304841,-0.06764829,-0.02035341,-0.0024632632,0.001716987,0.038421698,0.009413909,0.0070694494,-0.008273819,0.011866309,0.0036003941,-0.083144635,-0.017754277,-0.01350997,0.013885226,0.062406577,0.054377917,-0.03366873,-0.069516905,0.049429983,0.06496996,0.036833122,0.01994987,0.010707138,-0.062804565,0.017501494,-0.02019601,-0.047144484,0.05428928,-0.06436117,0.023697423,0.005920715,-0.020152174,-0.060623914,0.028802376,0.029173866,-0.016623791,0.036476705,0.06732834,0.08445083,0.025995003,-0.05857822,-0.06021932,-0.124434106,-0.06609785,0.029312644,0.083255865,-0.08788455,0.038669933,0.040561635,-0.003711622,0.040842205,0.0532561,0.015211796,-0.018429622,-0.039960496,-0.06374152,0.013262979,0.003458311,0.09058468,0.027113827,-0.07902446,-0.020979911,0.027481055,-0.00511034,0.013850718,0.035376433,-0.03692863,-0.009072642,0.01678129,0.033081844,-0.029619994,0.011954577,0.073087245,0.010847901,0.12275135,0.0077525508,0.0057728477,-0.006325218,-0.05766501,0.08004658,-0.010189659,0.13461098,-0.038779933,-0.012974993,0.0064487495,-1.2315167e-32,0.06607672,-0.02466329,-0.010457908,-0.0203163,-0.008732904,-0.012975687,-0.03647292,0.011033239,0.031067152,-0.021222174,-0.09015385,-0.15102364,0.065704904,-0.10121746,0.0051598228,0.036274634,0.016947499,-0.07698319,-0.10882652,-0.02004731,-0.028646654,-0.057681546,0.0033784164,0.02268034,-0.031321656,-0.079621285,0.029408466,0.035285868,-0.057568688,0.005466662,0.0017405372,-0.029064715,-0.02366108,0.09017281,-0.018459894,0.1172717,0.018406427,0.058268677,0.06380453,0.006266307,0.035021327,0.042878147,0.025467793,-0.09301907,-0.021151623,0.052420262,-0.053319957,-0.10219693,-0.09459297,0.020384435,0.09682605,-0.06854305,-0.022111,-0.0059610703,0.06052695,0.05606979,-0.08255262,-0.12913898,-0.033333674,-0.012068739,0.042557947,-0.0526821,-0.027083045,0.0004206067,0.078548364,-0.019540973,-0.019465161,-0.012663407,0.073133856,0.028890288,0.112924665,-0.036477964,-0.122649536,0.018187609,-0.04608157,0.003376689,-0.102093056,0.015042981,-0.055606473,0.0038255963,0.02438363,0.07279049,-0.012493688,-0.00085900736,-0.08726988,0.060907617,-0.017379183,0.027313517,0.027553482,-0.026544023,0.047109265,0.030457199,-0.042241905,-0.048903074,-0.015504716,-4.903593e-08,0.04700959,-0.02845633,-0.0090723,0.00043983443,0.087799944,-0.017075738,0.005185641,0.003661538,0.03517711,0.06741164,-0.010251192,-0.018156027,-0.017944109,0.040359963,0.037092354,0.038304072,0.0719481,0.007657648,0.0010342024,-0.017819189,0.07997059,0.031057866,-0.020484084,0.0015149952,0.027913352,0.007461405,-0.03192412,0.034827426,0.001077703,0.00085627835,-0.013792231,-0.033239145,-0.055994343,-0.1237503,-0.04599186,0.02016326,-0.030427715,-0.0788932,-0.058248904,-0.058284078,0.10913499,0.050927456,-0.025369741,-0.034438398,0.031275813,-0.098165624,0.03408098,-0.033269577,-0.022428913,-0.05901246,-0.070201665,-0.02344266,0.08624263,0.016599923,0.01865279,-0.05537377,0.040408768,-0.033446003,-0.046976972,0.03462742,0.06512744,0.098445095,-0.02522201,-0.06844776} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:03.437851+00 2026-01-25 01:27:51.981618+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 593 google ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE 1 t 596 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena relación calidad precio en sus autos. Mención especial a la atención y amabilidad de Carlos, Fran y Nestol. muy buena relación calidad precio en sus autos. mención especial a la atención y amabilidad de carlos, fran y nestol. 5 2025-01-25 01:27:48.342746+00 es v5.1 P1.01 {} V+ I2 CR-N {"Carlos, Fran y Nestol"} {"A1.01": "Mención especial a la atención y amabilidad de Carlos, Fran y Nestol.", "P1.01": "Muy buena relación calidad precio en sus autos."} {0.03987194,0.056557693,-0.015108832,-0.0144111095,-0.020816563,0.034753595,-0.02701652,0.12177234,0.023615394,0.03375898,0.033231962,0.0088993525,0.0226333,0.009425883,-0.018674655,-0.040987346,-0.046485007,0.008515944,-0.007353687,0.0017495103,0.088129826,-0.089567,-0.05258042,0.08850978,-0.05346726,-0.016728634,-0.01465777,0.068041325,-0.064183876,-0.06343897,-0.06367955,0.037345815,0.15945144,0.010123673,-0.070725426,-0.050590333,0.038867872,-0.032443844,-0.010614582,-0.050465256,-0.023332005,-0.09242695,-0.017559737,-0.04412386,-0.056924652,-0.008221616,0.060498297,0.06675948,0.05172508,-0.015104063,-0.068249695,0.031306915,0.009599223,-0.026957722,0.0033737873,0.06534306,-0.011760082,0.010161931,0.05199594,0.016262572,0.05578871,0.026079299,-0.10464795,0.007756454,0.014196582,-0.011968386,-0.043295532,0.02258905,-0.059465673,0.06950684,0.13432297,-0.10983725,0.06523549,0.061174333,0.0128848255,0.014286342,-0.0118060075,0.025245696,0.0034814691,-0.07585953,-0.0035302609,-0.035296835,-0.08050387,-0.054312587,0.031453278,0.028175693,0.042395122,0.009013122,0.046693202,0.033095576,-0.019048173,0.013100137,-0.0043051466,0.0045356797,-0.0678388,0.049977962,0.009718422,-0.03393564,0.025575938,0.012829519,0.0878051,0.024768796,0.06070099,0.029162718,-0.08445568,0.07901764,0.039100993,0.042398676,0.016689543,0.059875615,-0.028522557,-0.023158543,-0.07077872,0.013728297,-0.11074884,0.025626196,-0.015166694,0.018689904,0.015204616,-0.090426624,0.049818948,-0.024705885,-0.012485968,-0.07572345,0.053947378,-0.05008763,0.018611575,3.539374e-33,-0.12923835,0.032068077,-0.02663214,0.097980626,-0.014351894,-0.009461866,-0.043579027,0.02220694,-0.008478147,0.022057671,-0.001883501,0.0691629,-0.019478327,-0.046958573,0.06916578,0.03482189,-0.049256116,-0.054825433,0.027725074,0.022181533,-0.067479804,0.039930902,-0.022526992,0.0461305,0.06605188,0.057756685,-0.02446454,-0.05760099,-0.07048988,0.053188235,0.043236412,0.07264086,-0.02659055,-0.026235892,-0.051097564,-0.001113518,0.02603665,-0.015884262,-0.022187416,0.0038037621,0.050977018,-0.05154776,-0.029652424,0.0347654,-0.0921661,0.02344532,0.025249954,0.070483565,0.09962877,0.048842385,-0.027672086,-0.10970005,-0.025538942,-0.10328007,0.010590209,0.05037728,-0.070914656,0.029568098,-0.03911329,-0.047958247,-0.018544553,-0.030273832,0.05417151,0.03521512,-0.04958409,-0.016905604,0.008043029,0.026135592,0.096616685,0.00881377,-0.089367606,-0.057444062,-0.025828341,0.016736532,-0.0008606824,0.04173312,0.03430558,0.0066094217,0.06947987,0.035173595,-0.096457034,0.06263207,0.0017876459,0.012035561,0.09783578,0.052077077,0.02123153,0.0652837,0.02643453,0.080241546,-0.0012342052,0.030568356,-0.008343545,0.028432332,0.027988637,-5.9685373e-33,0.013952053,0.017094241,0.081805244,0.043248028,0.06070464,-0.002278642,0.02137538,-0.054315828,-0.038443487,-0.08423259,-0.058843665,-0.0674461,0.08337123,-0.0066216383,-0.01718769,0.041173235,0.03610479,-0.121141426,-0.04542807,-0.034955706,-0.021058375,0.048187282,0.054700226,0.037511118,-0.06221283,-0.07042276,-0.04917775,0.07748729,-0.034375805,-0.019911816,0.08218971,-0.040385526,-0.0070980038,0.06449749,-0.05663559,0.017921817,0.015935007,0.0387946,-0.008299897,0.03145719,-0.00217185,-0.022986187,-0.019008834,0.009706456,0.026201932,-0.01970109,0.051566936,-0.12424469,0.010031769,-0.025893603,0.09007928,-0.04177499,-0.10724172,-0.009974732,-0.05866499,0.009936743,0.07735406,-0.011687105,-0.03182721,0.043880474,0.042020984,0.034352493,-0.023646764,0.013096571,-0.013843744,-0.06510231,-0.098762445,-0.042842604,0.027970904,-0.022287263,0.097215146,-0.025338404,-0.06467566,0.052230626,-0.114807606,0.047503963,-0.048772305,-0.031549525,0.010176412,-0.023650074,-0.04243769,0.01470951,-0.032078877,0.04823344,-0.08206809,0.045708753,-0.014605629,-0.026613014,0.0683988,0.058399048,-0.053699177,0.040621206,-0.06461804,-0.0611342,-0.084816195,-3.4962092e-08,-0.011095938,-0.013141069,0.0332402,-0.0017294624,-0.014829192,0.0011721422,-0.01614002,-0.0035523803,0.018028649,0.08894688,-0.023840081,-0.057055842,-0.0155933965,0.01798816,-0.04684573,-0.066172175,0.039648395,0.15371527,-0.0643338,0.021374725,0.037192564,0.018132664,-0.03856373,0.038193185,0.04045539,-0.095596604,-0.068903945,-0.01810574,-0.069660455,0.03244649,-0.0007519397,0.046209283,0.070986114,-0.055598345,-0.0026600945,-0.004997189,0.01076768,-0.0122597255,-0.0261438,-0.08989972,0.112963945,-0.011182548,-0.12455955,0.0045173764,-0.016868183,-0.09038983,-0.06384689,-0.02009045,0.0047032353,0.022063352,0.0514886,-0.021394864,-0.04897208,0.030421304,0.04486013,-0.0345054,-0.024090275,0.023230188,0.002025338,-0.056612592,0.009984131,-0.01325146,0.078848,-0.078406066} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:46.555463+00 2026-01-25 01:27:51.985334+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 594 google ChdDSUhNMG9nS0VJQ0FnSUQ3d3BDNmpBRRAB 1 t 597 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nos vinieron a buscar en un mini bus un chico llamado David Pérez muy majo que nos hizo el viaje muy ameno aconsejándonos lugares y actividades que realizar en Tenerife nos vinieron a buscar en un mini bus un chico llamado david pérez muy majo que nos hizo el viaje muy ameno aconsejándonos lugares y actividades que realizar en tenerife 5 2025-01-25 01:27:48.342758+00 es v5.1 A1.01 {J1.01} V+ I2 CR-N {} {"A1.01": "Nos vinieron a buscar en un mini bus un chico llamado David Pérez muy majo que nos hizo el viaje muy"} {0.051930487,0.04020003,0.0029900707,-0.032471012,-0.0057697585,0.03521484,0.028214317,0.106345065,-0.01679142,0.008587615,0.05452892,0.05008323,-0.0016803229,-0.0049092127,-0.022826431,-0.025475498,0.016325543,0.066080146,-0.0050052498,0.003384678,0.05302621,-0.05391457,-0.08415957,0.029117005,-0.06991675,-0.028791627,0.019222869,0.0073796473,-0.037475105,-0.06429819,0.002004807,0.055836327,0.09303568,0.052764025,-0.07504027,-0.012820511,0.12392151,-0.03164796,-0.027615529,-0.002862924,-0.012851804,-0.06640278,-0.09762449,-0.048049964,0.015571432,-0.027778648,0.06747733,-0.0039017596,-0.020047072,-0.056988295,-0.0452052,-0.029311992,0.033126984,-0.005857641,-0.026613435,-0.08100654,-0.020640614,0.033221643,0.08540754,0.06908691,0.09101562,-0.03857395,-0.01573981,0.062292445,-0.03931124,0.004433795,-0.037093937,-0.019609477,-0.08215281,-0.019545099,0.13584967,-0.08652975,-0.04578429,-0.024659527,-0.06866577,0.036145773,0.03884997,0.022961298,0.026905242,-0.035614092,-0.04305902,0.00049320265,-0.035187237,-0.026962737,-0.038278963,0.019227853,-0.030821336,-0.028179407,0.017653322,-0.0125628095,-0.017204894,0.09009741,-0.05283248,0.027058965,-0.038971644,-0.039860357,0.030400572,-0.04904135,-0.024367956,0.0058948626,0.09158146,0.11646317,0.09341325,0.016493773,-0.081833646,0.043048568,0.0609848,-0.08222948,0.015882628,0.016788872,-0.05828491,-0.017925816,-0.062309537,-0.019522753,-0.050350226,-0.07958216,-0.025172405,-0.0013324345,-0.06826384,-0.049410604,-0.002656191,-0.07719725,-0.055990923,-0.05501819,0.0009006488,-0.028137093,0.024530487,1.08092546e-32,-0.14443596,0.0121923955,-0.06906343,0.05262295,0.09423868,-0.01563878,-0.03342281,0.002358778,-0.044751756,0.012736422,-0.009992007,0.016884888,0.0033477424,0.023153855,0.054854464,0.02514705,-0.045345627,-0.04374563,0.057965316,0.00028180444,-0.03168132,0.018446596,0.006477721,-0.06870012,0.024967559,0.050734628,0.006556102,-0.02370985,0.008291041,0.0259781,-0.0233439,0.011871126,-0.004017567,-0.01749371,-0.052474674,-0.013703132,0.028153164,0.00857896,-0.043018956,-0.07004206,-0.028065562,-0.020056993,-0.0603743,0.007978025,-0.02921205,0.05774291,0.10936483,0.028996142,0.12149721,-0.04963442,-0.079181634,-0.04018755,-0.045132115,-0.0512574,0.042854294,0.011651105,-0.07286968,0.05349082,-0.0028660283,-0.026359031,0.028394133,0.012048673,0.027575105,0.02354283,0.0032191195,-0.012152541,0.031127322,0.013184094,0.17478386,0.009499461,0.009933416,0.004900164,-0.016752195,0.018775748,0.051691573,-0.006784376,-0.012944125,-0.0009715816,-0.021861434,0.0248388,-0.061345212,0.011382587,0.019382574,0.037272252,0.14796025,0.11395333,0.004557076,0.05412583,-0.06897543,0.14568287,-0.029112158,0.08848334,-0.017888512,-0.0011306811,0.03345407,-1.17016694e-32,-0.05379511,-0.014117003,-0.019365646,0.017830972,-0.022567784,-0.0031495192,-0.045505334,-0.02745484,-0.03483933,-0.0818902,-0.0866809,-0.11747287,0.113645755,-0.0763636,-0.028311945,0.02790687,0.07500712,-0.092824325,-0.05153746,-0.04003624,0.0008386371,0.07375817,-0.041245032,0.007160645,-0.04421009,-0.021933027,0.0054198722,0.09085007,-0.1009231,-0.05749964,-0.0007448953,-0.06341349,-0.037584033,0.05319978,-0.051197525,0.0068173194,0.025893988,0.02350186,0.033865493,0.049182266,0.037397653,0.011778285,-0.021805534,-0.03264295,-0.038828474,0.026455889,-0.03526027,-0.16926883,-0.020886494,-0.056712836,0.093035504,-0.022765992,-0.07549048,0.015564687,0.08015321,0.04442308,0.036779087,-0.024944607,0.01618998,-0.006173876,0.05853315,-0.01992185,-0.015326377,0.00032229474,0.004749462,0.013566427,-0.044535823,-0.0059945825,0.009758507,-0.021794716,0.111319855,0.017295629,-0.0619998,0.07509286,-0.12045999,0.027484037,-0.03651015,0.03576098,0.04000156,-0.015216454,-0.037712507,-0.058766052,-0.031739745,-0.012506316,0.02547823,-0.013728147,-0.024608385,-0.025183797,0.03857443,0.050089546,0.04360596,0.058144372,-0.041326363,-0.027689373,-0.0531257,-3.9918167e-08,0.017951895,-0.104821295,0.008099794,-0.049089767,0.008672089,-0.028371617,-0.0036251408,0.038072065,-0.078862436,0.11528556,0.07207533,-0.036572818,-0.04689017,0.120289944,0.032552026,0.022315767,0.11628418,0.047142483,-0.012707248,-0.018834766,0.005767951,0.0145961605,-0.057635784,0.03243339,0.073166944,-0.01966887,-0.02638582,0.005727778,0.0013763527,-0.07943921,-0.04628339,0.023564996,-0.014687446,-0.052817192,-0.02569898,0.01835616,-0.014639247,0.060968492,0.0074947686,-0.07714636,0.066370785,0.0019875667,-0.022187097,0.03978856,-0.047130324,-0.019881101,-0.050621696,0.023632716,0.019675974,0.021189285,-0.0020074705,-0.021506252,0.07658999,0.016388671,0.0049072052,-0.057935856,-0.020618223,0.043962408,-0.06630372,0.029579142,-0.0040691,0.12058376,0.01247871,-0.08399787} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:40.028522+00 2026-01-25 01:27:51.988039+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 595 google Ci9DQUlRQUNvZENodHljRjlvT21WMFR6a3hZMVZHV1hndFRGSXhaakJqV2pjNGRHYxAB 1 t 598 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Vynikajúce služby, ochotní personál doporučujem vynikajúce služby, ochotní personál doporučujem 5 2025-08-28 01:27:48.342768+00 cs v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Vynikajúce služby, ochotní personál doporučujem"} {-0.03999068,0.08206309,-0.07578691,0.007932382,-0.045652,0.014909344,0.09458164,0.067616895,0.000703422,-0.0732436,0.042932093,-0.004332226,-0.04654822,-0.06395378,0.017817369,-0.0002811915,0.0004845616,0.079696186,0.049305543,0.06860766,-0.060859676,-0.05010008,-0.007732371,-0.092951894,0.040232897,0.03477874,0.0013312231,-0.03779593,-0.004289951,-0.05110256,0.104790695,0.06822139,-0.015032651,0.0040322677,0.008339663,0.030452216,-0.123224735,-0.056426957,-0.03328495,0.08953524,-0.08213484,-0.06677948,-0.038450815,-0.018807536,0.010132653,0.032479543,-0.05529836,0.05487221,-0.017891295,0.0075944383,-0.067502536,-0.07900429,-0.019113343,0.05469109,0.004507321,-0.08032435,0.031460002,0.040273514,-0.020450365,0.025717713,0.0526204,0.03884194,-0.023090338,-0.013514632,0.008523051,-0.0133918235,-0.0021889743,-0.009842353,0.0069147646,0.033039443,0.029882655,-0.020483363,-0.041561894,0.10823143,-0.14911273,-0.036621466,-0.028487796,0.028120372,0.064559765,-0.012460405,0.028827468,0.06145435,-0.05577281,0.018942999,-0.029065209,0.029182613,-0.010578911,-0.06133937,0.04230554,0.059449695,0.026012145,0.015590256,-0.06463244,-0.09314579,-0.017007517,-0.010908807,-0.013208926,0.018310862,-0.026781091,0.09306171,-0.04709482,-0.037018806,-9.873899e-05,0.011675102,-0.07004053,0.016038273,0.083676666,-0.07135447,-0.06679312,0.047615018,-0.07369606,-0.028135272,-0.05698141,-0.08543941,0.035469126,0.036027864,0.088867456,0.039777257,-0.0011842162,-0.0034795706,-0.022321083,0.009312195,0.011658766,-0.03191525,-0.026398996,-0.04381781,0.07763315,6.670929e-33,-0.01924493,-0.075444736,-0.060881577,0.1180501,-0.014882449,0.060829867,-0.033530243,-0.038019992,-0.0177865,-0.017805366,0.03265813,-0.044638712,-0.022291996,0.016985588,-0.0057959883,0.04812739,0.033144902,-0.047057465,0.0018874755,0.021295955,0.025350103,0.008105937,0.012119977,0.006713345,-0.076436944,-0.0343659,0.008860179,-0.053190228,-0.052101064,0.008443469,0.011899512,-0.017592482,0.0021121013,-0.060015924,0.022914395,0.006599865,-0.023065072,-0.030568423,-0.06865043,-0.021852637,-0.041336164,0.010781144,0.014581133,0.043659996,0.016589798,0.11572545,0.044007726,0.018087957,0.02327566,-0.011176087,-0.07376498,-0.058549095,-0.110000804,-0.01859927,-0.06068827,0.023665378,-0.03879132,0.030305283,0.0416499,-0.039029375,0.042356946,0.013759318,0.006224501,-0.12142056,-0.012705439,-0.064511016,-0.029360257,-0.043715533,0.053891215,-0.079356074,-0.009919859,-0.017983558,0.021826752,0.00078016793,-0.023402615,0.074456856,0.055890113,-0.036499027,0.02072621,-0.037163235,-0.05433185,0.043341633,0.0152656725,-0.012740405,0.096875325,0.014701329,-0.030763786,-0.06753676,-0.0050159073,0.1334716,0.021467542,0.049131457,0.045549456,-0.0544039,0.054899216,-7.131244e-33,0.002386201,-0.041266125,-0.051270936,0.011930087,0.10631475,0.071641065,-0.11501045,0.013460978,-0.068545066,0.10133738,-0.052449595,-0.11891985,0.02865206,0.05136383,-0.052500546,0.05395482,0.069403484,-0.019487845,-0.02605838,-0.027342077,-0.0558972,0.12016367,0.040356107,0.01260129,0.0021684137,0.011914613,0.052211825,0.0061883945,-0.057205345,-0.010456801,-0.012121207,-0.040035754,-0.032769833,0.031054916,0.05573366,0.01688119,0.073825225,0.018140897,-0.016657207,-0.006521035,-0.0033072259,-0.008509183,-0.043248333,-0.024639847,0.019157248,-0.06645937,-0.090564854,-0.031696055,0.048378937,-0.05086347,0.06720304,-0.015742898,-0.016691068,0.051519863,0.01619299,-0.03072899,0.01861091,-0.055404067,0.013961516,0.03197039,0.08329467,0.05886249,-0.031873032,0.054898042,0.100328274,0.016145432,-0.07466537,0.04059567,0.027256211,-0.041882038,-0.03767897,-0.1330966,-0.0075232987,0.018262492,-0.022112912,-0.06549739,0.056022972,-0.0018433074,0.007959041,-0.061689112,-0.02996357,-0.016839959,-0.054251067,-0.008826935,0.008421247,0.008605752,0.027501497,-0.021461416,0.0014321113,0.06604944,-0.0035318462,0.09792366,-0.07978472,0.08252266,0.03530981,-2.7760692e-08,-0.023401042,-0.009255514,0.0129998755,0.04244435,0.08762792,-0.10428711,-0.001959516,-0.0427368,0.020490957,0.104172416,-0.09152738,0.060254432,0.06277177,0.024164004,0.09065985,-0.002738189,0.07186288,0.03519627,-0.026199702,0.019858891,0.15309593,-0.055564612,-0.05762405,0.019397369,-0.013498697,0.02462966,0.014226507,0.04138939,0.044041812,-0.026572939,0.06547469,0.11647076,-0.010901344,-0.06629249,-0.06658967,0.023429632,-0.02082832,-0.024218148,-0.010224516,0.008907645,-0.053873774,-0.020249799,0.123301856,0.018577004,-0.09831877,0.011943082,0.04053979,-0.050523397,-0.0059063933,0.055196233,-0.058449615,-0.026693713,0.06314585,0.08193827,-0.058209892,-0.019256359,0.07038479,0.07681666,-0.06010959,-0.03173254,0.03595379,-0.020709362,0.0064565465,-0.0023365335} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:15.095477+00 2026-01-25 01:27:51.992825+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 598 google ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB 1 t 601 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Dani y Antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno. Todo fue genial y a unos precios insuperables! dani y antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno. todo fue genial y a unos precios insuperables! 5 2025-01-25 01:27:48.342799+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Dani y Antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno.", "O1.01": "Todo fue genial y a unos precios insuperables!"} {-0.014788268,0.025937041,0.0015014778,-0.017856257,-0.079588145,0.01098572,0.0648733,0.024560636,-0.04380054,0.0033514777,0.05008449,-0.026458692,-0.0501223,-0.029883418,-0.017663436,0.04388587,0.011284143,0.07088686,-0.020721119,0.012659231,0.02852633,-0.086459756,-0.030971255,0.1305996,-0.014177598,-0.036806658,0.031426765,0.08764495,-0.022674242,-0.029708663,-0.015731782,0.04976911,0.1401258,-0.034291793,0.02118857,-0.01240106,0.052528687,-0.047607552,-0.0003575768,0.011466314,-0.04823981,-0.03565986,-0.05808758,0.03271899,0.028927831,-0.09198105,0.042062346,0.07559656,0.039845943,-0.02440387,-0.029320385,0.032871053,0.05904697,-0.046094343,-0.026246151,0.08272731,0.047624357,-0.03923204,0.044157494,0.0046540685,-0.021582501,0.03497784,-0.016387742,-0.0022561126,0.03999797,0.0002976165,0.033304334,0.0019481143,-0.060669515,0.039582096,0.11406568,-0.04124352,0.06211806,0.026645057,-0.027967498,0.071181975,0.023862518,0.018091844,-0.026074883,-0.05964439,0.0023913763,-0.041659176,-0.06758773,-0.059752278,0.06359421,-0.016123235,-0.026856584,-0.010093994,0.021668976,0.026235988,-0.029771639,0.098421894,-0.0070000775,-0.035588562,0.03676843,0.046936784,0.0068255346,-0.04502021,-0.04412631,0.023252776,0.08058564,0.05828268,0.07429832,0.0675588,-0.04070001,0.01638799,0.05577931,-0.072417565,0.0008818904,0.035957284,-0.026426632,-0.059167553,-0.031149173,0.05319159,-0.05685138,-0.055409458,-0.016122788,0.0060876505,-0.01945773,-0.09211645,0.034541097,-0.00880957,-0.08110994,-0.00027247792,0.017276913,0.011597559,0.029301286,1.0821714e-32,-0.047183532,0.0010574271,-0.024884585,0.07374881,-0.04584687,-0.019654626,-0.061850615,-0.00036395586,-0.113587104,-0.01499224,-0.07493422,0.08975601,0.009934971,0.045604028,0.047591966,0.028954258,0.016601497,0.010590812,0.12153349,-0.009200838,-0.13068642,-0.013233966,-0.015431612,-0.007963075,-0.013680503,0.09064772,-0.06099405,-0.12934192,-0.056195643,0.05993026,-0.0028000441,0.03767935,-0.015228156,-0.042905677,-0.05326581,-0.08135318,-0.040698923,-0.00073104893,-0.05049588,0.005732,-0.009406462,0.024065366,0.022315642,0.012133206,0.003373576,-0.02197959,0.019853309,0.03496826,0.11176877,0.00046077042,-0.03334608,-0.11237097,-0.071002565,-0.023986848,0.048927065,-0.017684981,-0.062434603,0.084142685,0.0036427155,-0.03291851,-0.004258391,0.09204718,0.021093527,-0.004641837,-0.056231845,0.0012227396,0.020744575,0.07185753,0.13321166,0.018293565,-0.049882058,-0.03210112,-0.10147413,0.03911023,-0.025666183,0.007350779,0.04105697,-0.023174765,0.0026453536,0.0015156002,-0.06938024,-0.0019928524,0.068735905,-0.005171978,0.098005205,0.10233939,0.006787316,0.04076169,-0.030943984,0.08013782,0.06631092,0.06805877,0.06615685,-0.020915877,0.029286468,-9.814022e-33,0.032110352,0.009011525,0.05313121,-0.03290716,-0.04532082,-0.04412038,-0.059536356,-0.07563283,0.010920683,-0.06842682,-0.046659533,-0.14867325,0.13631245,-0.111311056,-0.053046543,0.051601306,5.4316843e-06,-0.054819796,-0.056063518,-0.05392157,0.008401759,-0.025473405,0.04495672,-0.03952535,-0.06991889,-0.07677661,0.019854506,0.029029831,-0.024086,-0.012242238,0.040772106,0.017677112,-0.022532105,0.01242735,0.07221076,0.059508637,-0.025922062,0.0423304,0.02972339,0.044177152,-0.040367514,0.10016013,-0.023855133,-0.0036312868,-0.035160355,0.057048284,0.0032409835,-0.12258098,-0.04131138,-0.061034657,0.053177256,0.017310627,-0.053051922,0.022605268,0.00049743033,0.01673426,0.006740587,-0.04509821,-0.08584342,-0.046271425,0.019312223,0.001882654,-0.005912437,-0.0005011766,0.074666515,0.016884865,-0.027165009,0.084394924,0.019193558,0.023235155,0.066525094,-0.08339379,-0.07952182,0.03344955,-0.05788517,0.004546967,-0.10452446,0.014420038,0.03349785,0.060237754,-0.030259293,0.021970738,-0.0500664,0.024902632,-0.025827572,-0.023391282,0.017359888,0.0027534093,0.0128406845,0.08735432,0.07099474,0.014786804,-0.005964119,-0.09682122,-0.034128066,-3.8843112e-08,0.042369124,-0.07870769,0.022163576,0.0048139887,0.059727117,-0.025655704,-0.09713934,0.007932394,0.009520417,0.029276641,-0.06797394,-0.04098909,-0.0084762145,-0.0071953028,-0.028845502,0.06756182,0.056364525,0.06262385,-0.018653357,-0.06418356,0.059784766,0.007329106,-0.058144867,0.0043364977,0.009441382,-0.008796348,-0.07429582,-0.03056372,-0.034513336,0.0120357685,0.035738163,-0.049020167,-0.026260283,-0.04933625,0.007699789,0.041216798,0.018209215,-0.07842588,-0.03816011,-0.0861802,0.08355894,-0.008349305,-0.047609225,-0.012874161,-0.00430716,-0.0892408,-0.017655147,0.022635834,-0.053940874,0.072695546,-0.06640353,-0.047193483,0.09039984,0.0551918,0.04571745,-0.015775826,0.05340671,0.017117742,0.030517735,0.025881713,0.037811898,0.10723492,0.071171485,-0.07557946} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:31.734378+00 2026-01-25 01:27:52.006177+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 600 google ChdDSUhNMG9nS0VJQ0FnSUNuOWFpVjBBRRAB 1 t 603 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carlos y Néstor muchas gracias por el trato recibido. Me solucionaron todo rapidísimo, si vuelvo a alquilar será con ustedes. carlos y néstor muchas gracias por el trato recibido. me solucionaron todo rapidísimo, si vuelvo a alquilar será con ustedes. 5 2025-01-25 01:27:48.342803+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Carlos y Néstor muchas gracias por el trato recibido. Me solucionaron todo rapidísimo, si vuelvo a a"} {-0.0003044663,0.016472232,-0.02743889,-0.010106251,-0.09225634,0.017097974,0.05611438,0.04263238,-0.0061562965,-0.013333496,0.05885822,-0.03652954,-0.029158283,-0.01922105,0.026997237,-0.05601829,0.040731207,0.056371458,-0.039168056,0.06539948,0.08430197,-0.0670422,-0.064822815,0.07715489,-0.062767655,0.0037159729,0.014139659,0.05874483,-0.016502049,-0.10422199,-0.018801283,0.08006152,0.09204886,-0.022532804,0.005760973,0.020175317,0.024917552,-0.031110143,0.000191982,0.03833298,-0.08803636,0.029658565,0.016600046,0.036108155,-0.0064867786,-0.07759837,0.018762333,0.0840265,0.043347094,0.022613399,-0.094240226,0.010836205,-0.03109081,0.043410297,-0.023111096,0.069296405,0.04186374,0.051979605,0.037787955,-0.0119707305,-0.019393919,-0.0021086081,-0.024002787,-0.0015799566,0.010697633,-0.02121597,0.00651986,-0.034476593,-0.05483133,0.020419225,0.050987422,-0.035039127,0.08669855,0.028182784,-0.01472851,0.029718155,0.030084375,0.003089085,-0.04770791,-0.022350488,0.03309505,0.00052663754,-0.073080026,-0.06425829,0.043281965,0.0057039657,-0.04434391,0.012802876,0.08445777,-0.051262658,0.008795636,0.01419482,-0.021978844,0.0017948713,-0.0512083,0.09259161,0.02759087,-0.04086414,-0.027561314,0.033917148,0.12224208,-0.011818111,0.052248083,0.06159242,-0.021632131,0.08345345,0.030058643,0.022505008,0.0031597195,0.01600644,-0.08074336,-0.039255407,0.010325602,-0.0005752814,-0.0246733,-0.012808257,0.02755433,-0.06211877,-0.008199226,-0.06643609,0.036311958,-0.0019197889,-0.03494972,-0.062235158,0.0527959,-0.017441468,0.05235518,8.1570345e-33,-0.0059866575,0.019260125,-0.020314857,0.06359403,-0.050097995,0.05996274,-0.045794595,0.058492552,-0.052074213,-0.019419255,-0.04502692,0.0876007,-0.004179872,0.11153251,-0.02484187,0.043220505,0.011571853,-0.0028645755,-0.004712363,-0.028950714,-0.09273837,-0.063468546,-0.035458166,-0.0161525,0.0061827837,0.040837806,-0.02927233,-0.08521032,0.018112274,0.023871215,-0.010513408,0.13304989,-0.023848543,-0.029647704,0.031852454,0.013702328,0.0168429,0.07331272,0.0027054336,0.029978927,0.0039898646,0.054817397,0.0026959917,0.041501153,0.052265573,-0.061015785,0.008225241,0.09746459,0.07928134,-0.019787388,-0.017245892,-0.056934636,-0.1018994,-0.048203994,-0.043759767,0.048620816,-0.064446904,0.15481482,-0.020850845,-0.02896555,0.024143398,0.013776814,0.077174865,0.027225034,-0.10209404,-0.039716993,0.012853292,0.022634588,0.09244254,0.086174555,-0.10675356,-0.037572604,0.025757777,0.006418379,0.012059169,-0.060098752,0.055127874,-0.011139124,0.02625643,-0.01707534,-0.10000397,-0.015197621,0.02310253,0.046483986,-0.0068594194,0.051462807,-0.01173657,0.02859517,-0.002904993,0.06142339,-0.0034742134,0.08138241,0.021689678,-0.04672712,0.04049405,-8.2839475e-33,0.04048154,-0.0117095355,-0.0008779707,-0.011939288,0.012439279,-0.03688893,-0.08032463,0.009536032,-0.04881749,-0.1230851,-0.027773641,-0.14320865,0.075852856,-0.06887997,-0.08222889,0.087354936,-0.00350508,-0.08613067,-0.03785398,-0.0467551,-0.01783893,-0.0029001958,0.0030984385,-0.015675714,-0.025646813,-0.08064806,0.06058406,0.049958132,-0.02241436,-0.0147528,0.028088339,-0.034154266,-0.041617963,-0.016176008,-0.02942111,0.14078388,-0.014912322,-0.017072313,0.03415419,0.038614318,0.023706717,0.021290082,0.015470618,0.01516739,0.0145214815,0.053928915,-0.025194496,-0.17929262,-0.018895986,0.0067415754,0.09928471,-0.08817565,-0.0510958,-0.0018388688,0.029981693,0.01666416,-0.104228966,-0.091826536,-0.04921797,0.0030172914,-0.038759556,0.01239787,-0.02411689,0.0037841296,0.07377133,0.0112285735,-0.04756093,0.006001803,0.09668572,0.12234156,0.14828409,-0.05778882,-0.049518794,0.05879309,-0.021996748,-0.03136958,-0.08701641,-0.026797228,-0.026203487,-0.014900619,0.0042646304,0.020463174,0.010359276,-0.016953377,-0.026394574,-0.016727567,-0.007705061,0.02131447,0.0046822876,0.07848337,0.0037023386,-0.03424619,-0.0022114448,-0.092284545,-0.0198742,-3.7159584e-08,0.025759228,-0.040940754,-0.039308842,0.02042779,0.048089694,0.0556684,-0.045200832,0.038709138,0.0012399207,0.069937654,-0.011725549,-0.028638318,0.00060089095,0.034462534,0.00570961,0.056550812,0.06676505,0.06064166,-0.04395436,-0.023118079,0.060774174,0.0066648065,-0.03822824,-0.0062817982,0.035232898,0.072586715,-0.045422293,-0.003463351,-0.06653924,-0.014497027,-0.06573503,-0.018994577,-0.021206615,-0.10010909,0.015794514,0.03836117,-0.054539204,-0.039429802,-0.0227026,-0.07502568,0.0912485,0.05444443,-0.05465272,-0.03919339,-0.011773106,-0.15706448,-0.022501964,0.008235084,0.033912573,0.08895019,-0.049605474,-0.06683736,0.07406437,-0.023917135,-0.010101632,-0.018546576,0.015398006,0.010465975,0.03534464,-0.04423968,0.04014793,0.08604889,-0.009459652,-0.08783461} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:25.391949+00 2026-01-25 01:27:52.016706+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 601 google ChZDSUhNMG9nS0VJQ0FnTURncTZMdVdBEAE 1 t 604 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado desde y hacia el aeropuerto igual. un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado desde y hacia el aeropuerto igual. 5 2025-03-31 01:27:48.342805+00 es v5.1 J1.01 {A1.01} V+ I3 CR-N {} {"J1.01": "Un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado de"} {-0.007250188,0.054873813,0.021602368,-0.03885603,-0.031867716,-0.044282783,0.14035353,0.0031036516,-0.045467865,-0.0016265656,0.098584846,-0.009857774,-0.071111426,0.0033897494,0.05860989,-0.00822066,-0.0030047733,0.00205825,-0.04327728,-0.045407873,0.14188667,0.01361429,-0.047057945,0.13731414,-0.09851152,-0.068784125,-0.057772756,0.0117367925,-0.008393399,-0.08120989,-0.013427041,0.047552742,0.07199274,0.071656495,-0.04783683,-0.021772949,0.06358521,-0.048321478,-0.052107107,0.049623895,-0.16867894,-0.08037768,0.009475942,-0.0044488306,-0.027253265,-0.044413414,-0.013265798,0.059216715,0.051172294,0.017960902,-0.06246481,-0.03807441,-0.013000404,-0.04952363,0.060542487,0.02569847,-0.04378775,-0.039024565,0.06773098,0.030332612,0.0009980438,0.052059393,-0.055871684,0.08792203,-0.0011136421,-0.017141018,0.0030507334,-0.03552264,0.009795624,0.007864089,0.0885671,-0.10592788,0.004279148,0.056556705,-0.04452875,0.00888194,0.015955584,-0.063701086,-0.053437117,-0.046674818,0.04554387,0.014412744,0.014374431,-0.057376407,-0.009431504,-0.0025827885,-0.026199026,0.053270206,0.007632066,0.019173713,-0.035644982,0.043615285,-0.01730561,-0.058943633,0.019680623,0.012653447,0.0291381,-0.07990665,-0.061933096,0.010773579,0.121071056,0.0073541463,0.0831937,0.09363626,-0.04837126,0.024188224,0.046381667,-0.06025584,0.0063733966,0.016318852,-0.111851126,-0.0029391716,-0.10417359,-0.04183794,-0.08411841,0.0015533363,-0.03883052,-0.030548219,0.002627638,-0.029320288,-0.022626335,-0.03727022,-0.0060436083,-0.05845705,-0.042551313,-0.0012795189,0.0556149,7.948438e-33,-0.045921165,-0.0032826518,-0.042805888,0.07943027,-0.016484182,-0.03144738,-0.044322856,0.026516544,-0.038717356,-0.011146434,-0.06127328,0.04919829,0.0075663524,0.06430151,0.09863828,-0.00274032,-0.019559348,0.02868515,-0.009965311,0.020133339,-0.030963074,-0.027097773,-0.058272824,-0.042779062,0.034987602,0.047046255,-0.055995435,-0.03414752,-0.043449607,0.06865983,0.039894998,0.032581165,-0.021392545,-0.012034429,-0.040413357,-0.066246085,0.08524728,0.004645324,0.015333362,0.026573861,0.023033222,-0.024530973,-0.060466897,0.0423905,-0.032995053,0.019850707,0.03352436,0.03980114,0.05594711,-0.007973402,-0.046475183,-0.006606607,-0.11164321,-0.06871584,-0.005364596,0.046594024,0.022213377,0.052577138,0.0039255545,-0.008071835,-0.006630229,-0.03459912,0.0045657936,0.014648378,0.057149895,-0.03723637,0.030144436,0.041016318,0.12491537,0.042610344,-0.078243114,-0.054446027,-0.010506185,0.022228006,0.08665363,0.030190619,0.003944895,-0.030537926,-0.07195126,0.067163534,-0.049566604,0.060795695,-0.017567666,0.047014847,0.08910797,0.041283067,0.071186095,0.03572787,-0.014444676,0.08230202,-0.10128478,0.047230292,0.033423048,-0.026355254,0.015606623,-1.1392289e-32,-0.03813547,-0.0150759015,-0.032756694,0.055405993,-0.005133799,0.028779326,0.08819201,-0.0058144494,-0.041066937,0.0057035075,-0.09977658,-0.07312987,0.118524395,-0.002138501,-0.0052703633,0.10294436,-0.05656204,-0.08489786,-0.07625839,0.064263925,0.024533788,0.012618961,0.06083913,-0.03133022,-0.042526193,-0.033206664,0.0112203155,-0.02301113,-0.0055002403,-0.011124353,-0.016789684,-0.008588184,-0.004983526,0.10099499,-0.04877653,0.019596718,0.01939469,-0.0070556398,-0.029218057,0.03856217,0.009432055,0.041313257,0.007225041,-0.055368505,-0.010664227,0.023778977,-0.03712983,-0.12156433,-0.0665836,-0.045500904,0.058722187,-0.068075664,-0.06337923,0.016950237,0.06342298,-0.027350418,0.04882479,-0.123815596,-0.07394696,-0.02304574,-0.011503096,-0.016233983,-0.04136232,-0.037761882,0.048911564,-0.0040858495,0.00085896224,-0.02760903,0.0032354097,-0.03677984,0.023422165,-0.043374598,-0.032814372,-0.0046688505,-0.10790695,-0.07502999,0.0077274074,0.0018205921,-0.011360253,-0.030263685,0.0031035135,0.0025778092,0.038677454,-0.08030588,-0.027294392,-0.038376957,-0.018207472,0.050023172,0.0373334,0.055865977,0.050139405,0.11466237,-0.12756412,-0.06889636,-0.06832484,-4.1029082e-08,-0.022808893,-0.012036044,0.068558656,0.042041764,0.017664207,0.005080308,0.00994971,0.005810052,0.06103918,0.018228834,-0.010511024,-0.06619961,0.013395592,0.09946147,-7.5480115e-05,-0.0151612535,0.034220397,0.05865239,0.020905687,-0.032222692,-0.01226189,0.024028,-0.0015193709,-0.0018871236,-0.020836368,0.04564889,-0.045886166,-0.025059238,0.027648516,-0.0063220006,-0.064549394,0.015077808,-0.13111562,-0.062013138,-0.01552188,0.022685021,-0.00424972,0.0023921423,0.009710233,-0.077562906,0.08758086,0.042645823,-0.08277684,0.055269092,0.029251669,-0.07713714,-0.03743839,-0.051643766,-0.041645028,0.013843303,-0.008488055,-0.06275921,0.053332094,0.07294801,0.046294946,0.0011967379,0.011543503,-0.059340615,0.0012419822,0.01898727,0.06187714,0.10293544,-0.044693287,-0.108549595} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:46:29.72774+00 2026-01-25 01:27:52.018622+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 603 google Ci9DQUlRQUNvZENodHljRjlvT2tkbU1tUnZZVk0zYlV4dFRHZDJkM05hUkdwU2JIYxAB 1 t 606 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena experiencia y muy recomendable. muy buena experiencia y muy recomendable. 5 2025-09-27 01:27:48.342809+00 es v5.1 R1.01 {} V+ I2 CR-N {} {"R1.01": "Muy buena experiencia y muy recomendable."} {-0.024952399,-0.07711963,0.05778247,-0.011465322,-0.051812094,-0.0057693217,0.11301509,-0.009947547,-0.028983444,-0.041799158,0.0789456,0.04851619,-0.043493487,0.02161677,0.07154844,0.039033305,0.037756927,0.0065301885,0.063380845,-0.065625645,0.06589755,-0.027735204,-0.047875676,0.054345723,-0.07972423,-0.055042326,-0.034647666,0.0061706593,-0.020007402,-0.04048535,0.009156286,0.12273452,0.06017457,-0.018967431,-0.0360647,0.011524413,0.0794614,-0.036451053,-0.013482729,0.063178755,-0.1519878,0.051174186,0.025208328,-0.026363403,0.0052538966,-0.13219924,0.043845,0.014053401,0.077124976,0.031265832,-0.027961204,-0.010676007,-0.0048141647,-0.0068271314,0.041610003,0.047763072,-0.07265355,-0.03330074,0.035161484,-0.018378139,-0.061141092,0.017891373,-0.057212807,-0.011746562,0.024559291,-0.05790221,0.04661093,0.053875517,-0.03158737,-0.027991386,0.016098816,-0.059829123,0.014106876,0.06880459,-0.051352914,0.050477307,-0.0007558009,-0.025099944,-0.044219628,0.0010931178,-0.025253495,0.03140136,0.010229649,-0.027512835,0.032331385,-0.032886196,-0.03601261,-0.024596734,-0.024081023,0.02980187,0.004231868,0.050402213,-0.085162,0.01118052,0.02566156,0.04467528,-0.029734189,-0.09237093,-0.032049946,0.091880545,0.008956875,0.04333192,0.13873617,0.033544797,-0.054012526,0.025787778,0.031315435,-0.017068515,0.036830716,0.04420236,-0.03698489,-0.02401045,-0.06430319,-0.023060447,-0.025146602,0.031650778,0.001408202,0.046162937,-0.03121405,-0.090738185,-0.00281435,0.11976834,-0.01791411,-0.0474124,-0.029320542,-0.05378941,0.07168473,2.702061e-33,-0.02810727,-0.018135045,0.001712289,0.09692847,0.017581081,0.012637681,0.019826472,0.019861503,-0.047343336,-0.025076466,0.0020646583,0.036790013,0.017382924,0.0057191253,0.07706318,0.0181823,-0.018533142,0.064167485,-0.06663538,0.011900241,-0.048011545,-0.059912674,-0.02470861,-0.025251394,-0.021784768,-0.0412935,0.03807524,-0.0012254243,0.079241656,0.033901766,-0.040507365,0.07191548,-0.030435987,-0.08170016,-0.0041107223,-0.0063686455,-0.0025981122,0.024202596,0.014711101,-0.015225164,0.028295893,0.054605886,-0.025104526,0.0052678506,0.0028958505,0.047267064,0.102086484,0.04703487,0.013352438,0.0065634265,-0.08665941,-0.11848352,-0.055605892,0.049225215,-0.04201835,0.019012107,0.0071146954,0.07149335,0.020668533,-0.0996298,0.0486211,-0.016699634,0.053229846,-0.16934848,-0.1030711,-0.006920866,0.04528097,0.03122109,0.10534178,0.062224515,-0.12383506,0.038728155,0.012545103,0.0077991765,0.0038092984,0.008613625,-0.019378524,-0.043635134,0.08749746,0.06363834,-0.072041765,0.028541964,-0.03602417,0.09793451,0.06688802,0.048590623,0.0612362,0.05331816,-0.06651191,0.13057795,-0.07281067,0.057736933,0.07283464,0.0144610265,0.001383341,-3.273744e-33,0.03189086,-0.049911194,0.010746855,0.09986409,0.038398545,-0.0041418993,-0.019544853,0.01782826,-0.0062886346,-0.10352624,-0.11872489,-0.096995704,0.11214418,0.040626448,-0.026364962,0.057950027,-0.015022763,-0.04314306,-0.07299884,-0.014830232,0.041082222,0.085597835,0.06598912,-0.06242053,-0.028423097,-0.0071928645,-0.05355849,0.016204193,-0.061503038,-0.0154592,0.00397032,-0.048069883,-0.085698165,0.030863782,-0.06899652,0.109560385,0.059071958,0.009329671,-0.038790308,0.0804601,0.044476755,0.06361887,-0.05377952,0.030784748,0.0031090027,0.02570136,-0.01453362,-0.08085093,0.014241756,-0.022112386,-0.01135875,0.017913906,-0.07471944,-0.04891943,-0.030704003,-0.089556724,-0.028093642,-0.03127513,-0.114072464,-0.02341641,-0.029184207,0.01059574,-0.016318763,0.029670453,0.047371097,-0.009422222,0.046189927,0.039671507,-0.028397353,0.012016348,-0.029280445,0.02451071,-0.0052196723,0.011937334,-0.009019939,-0.04091999,-0.04421569,-0.096022986,-0.019701837,0.023698835,0.044284515,0.017007085,-0.05778904,-0.01833073,-0.01781493,0.05315469,-0.013521003,-0.02843359,0.0052922233,0.023972716,0.008952188,0.016294966,-0.046299897,-0.028200764,-0.016190145,-2.2500785e-08,-0.019423766,-0.0461835,0.032933503,0.00090767397,-0.029736994,-0.069953546,-0.07473925,0.09450958,0.048267867,0.0035803318,0.0051560914,-0.0056115533,-0.022227904,0.07604142,-0.035658278,-0.00884156,0.1351984,0.09433702,-0.046029057,-0.06117442,0.0776181,0.003593348,-0.0433814,0.11966179,-0.013228893,0.034183018,-0.028354218,-0.026056115,-0.021460842,-0.015907064,-0.02411833,0.035520196,0.02954988,-0.101640046,-0.04500427,-0.066129,-0.035919838,-0.06999531,-0.0057880627,0.011581327,0.056688916,-0.0340815,-0.053961653,0.023953889,0.001228838,-0.060757406,0.049024753,-0.023242053,-0.003052342,0.038204342,0.03745839,-0.040515844,0.05110459,0.03139665,0.006045143,-0.017955553,-0.012519963,0.026045153,0.053987563,0.0010832571,0.009152091,0.060446966,0.014225022,-0.06237715} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:29:43.538634+00 2026-01-25 01:27:52.021765+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1441 google ChdDSUhNMG9nS0VJQ0FnSUNwenZ2QWp3RRAB 1 t 1444 Go Karts Mar Menor unknown Great fun if your at a loose end. Cheap fun. Friendly staff. Definitely worth a go great fun if your at a loose end. cheap fun. friendly staff. definitely worth a go 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I2 CR-N {} {"P1.01": "Great fun if your at a loose end. Cheap fun. Friendly staff. Definitely worth a go"} {-0.017643733,-0.028180119,0.01715821,0.0019683286,-0.10737208,6.700903e-05,0.022766829,-0.03200417,-0.037378937,0.012622334,-0.016923204,-0.003447716,-0.04115077,0.051168714,0.008727546,-0.055419113,0.10059745,-0.054120224,0.074292995,-0.024754195,-0.06786591,0.02435997,-0.0017994741,-0.010458898,-0.08023579,-0.044488885,-0.014038531,0.027182674,-0.0345502,-0.026294047,-0.089088716,0.039044343,-0.08665561,-0.043845367,0.00059806905,0.093133025,0.08014965,-0.05196612,0.010797886,0.09136319,-0.014193095,0.0018356073,0.04862187,0.011250844,-0.041536912,0.0893019,-0.025589002,-0.05154436,0.027232524,0.023662599,0.13933152,-0.037221655,0.08197232,0.021206897,-0.020758094,0.035311908,-0.005043122,-0.083685234,-0.04404262,0.011965492,0.018415509,-0.030996667,-0.050203845,0.013539892,0.014043594,-0.07571515,-0.022598706,0.005935836,0.08524366,-0.10246263,-0.043990634,-0.04543468,0.055203293,0.006741345,0.03593541,0.06700742,-0.00032580708,-0.092138514,-0.03751864,0.003861486,-0.011413469,0.020894254,0.0055376426,0.020544186,-0.03200241,-0.123681635,0.07788033,-0.010477084,0.073818706,0.04916167,0.06063141,0.140231,0.01732103,-0.039380644,-0.02282287,0.014855819,-0.003415292,0.06859274,-0.07762321,0.05437896,-0.018357504,0.08931537,0.071271606,-0.029071564,-0.05345028,0.03693292,-0.04506048,-0.011805565,0.058187038,-0.02264306,-0.017150797,0.030634727,0.026380168,-0.042812943,0.0019550587,0.055614527,-0.015948243,-0.032153588,-0.08364447,0.019350447,0.044712815,0.044844165,-0.030976577,0.043130893,-0.018098215,0.0037360159,0.07580296,-3.7824374e-33,0.022330904,0.05623773,-0.04403441,0.0036679136,0.094321504,0.020231675,-0.03300275,-0.017918414,-0.11395501,0.043623753,0.0043777064,0.03614512,-0.04585219,-0.030714823,0.0125764115,-0.0625514,0.027413065,0.013911801,-0.030840136,-0.025529446,-0.08153337,-0.07201341,-0.020884404,0.011798217,0.07225518,0.03832685,0.013975577,-0.039318454,0.19366369,0.027236093,-0.050843667,-0.02943442,-0.06144737,-0.015226477,0.019316575,0.033192337,-0.052357137,-0.06582631,-0.0068344087,-0.01857799,-0.01753472,0.034739144,0.029678313,-0.0009028943,-0.020375863,-0.055046868,0.037364233,-0.010875441,-0.013233688,-0.029089965,-0.05285941,-0.032373838,0.02264274,0.11776504,0.01662542,-0.025441188,0.04788888,0.02984413,-0.025639549,-0.013686134,0.101653844,0.110266924,-0.06531472,-0.018254414,-0.049668916,-0.032415383,-0.014803509,-0.035817627,0.13280989,-0.07655222,0.014651611,0.02843373,0.09760474,-0.021006107,-0.018441074,0.08666833,-0.06888324,-0.08096335,0.08165529,-0.017221522,0.06462712,0.013956468,-0.025384657,0.030337155,0.023165993,-0.05937451,0.07281771,-0.1456353,-0.058651134,0.07474436,-0.038103603,0.035363145,0.02005394,0.09983324,0.017558852,2.7328864e-33,0.06514619,0.025749756,-0.04374656,0.034783155,0.057832327,0.009470934,-0.032259405,0.011704936,0.06031324,0.052781705,-0.05116658,0.0729605,-0.042653475,0.027421648,0.035624526,-0.08349966,-0.007169347,-0.056242187,0.006275496,-0.08595049,0.026481649,0.0804134,-0.023174185,-0.08010963,0.028884003,0.058379658,-0.02943416,-0.009307166,-0.10238616,0.040927876,-0.0112481965,-0.031752635,0.031801704,-0.035450518,-4.1226707e-05,0.020453563,0.04333899,0.034008853,0.003251518,-0.04364952,-0.016601158,0.026579164,-0.0026672306,-0.04966429,-0.05888169,-0.00644387,0.012842093,-0.011689757,-0.058641367,0.009535244,-0.020508897,-0.019043773,-0.043608405,-0.088567324,-0.046906494,-0.08028095,0.0016097915,-0.020152846,-0.060135234,-0.06388544,-0.023460167,0.06686493,-0.037026577,0.104679056,0.063570604,-0.05316619,-0.04282061,-0.041915294,-0.082190186,0.00074184994,-0.08950522,0.054314706,0.047760595,0.005744,0.030762488,-0.04484848,0.08381978,-0.08205271,0.030046687,0.06848022,-0.010814975,-0.047813773,0.01661669,-0.0065944227,0.018145021,0.046761695,0.016369691,0.06948605,-0.06583772,0.07665618,0.078992866,0.0434664,0.05917152,-0.046162818,0.02700139,-2.5517393e-08,0.007244521,0.058168348,0.040487163,0.0003130377,0.018377475,-0.083597064,0.00024222322,-0.012140899,0.021558005,0.04198043,0.047956925,-0.09677113,0.057189014,0.042454954,0.03408499,-0.019556649,0.04872719,0.045079254,-0.08685255,-0.00015454112,-0.028904678,0.045567583,-0.07525944,-0.0017228585,-0.066500574,0.057637636,0.003540873,0.051322997,-0.037301093,0.0051658372,-0.016815318,0.038093723,0.012188869,0.06643854,-0.008073058,0.002456833,-0.065211885,-0.04977394,-0.016739277,0.07147102,-0.031942252,-0.05283363,-0.010537294,0.04737422,-0.020074278,0.04545541,0.038528077,-0.012066203,-0.017597046,-0.008246399,0.0023963847,-0.031344835,-0.022689749,-0.008199705,0.07241543,0.0049800016,-0.0037605742,0.038158383,-0.010432204,0.08242652,-0.088858634,-0.036436025,-0.1019765,0.04835192} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.13831+00 2026-01-30 02:01:09.373382+00 22c747a6-b913-4ae4-82bc-14b4195008b6 605 google ChdDSUhNMG9nS0VJQ0FnSURuX3RiSjRBRRAB 1 t 608 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Totalmente recomendable, Dany y Antonio muy majos...trato muy agradable, además nos recomendaron sitios de la isla acertados para nuestros gustos.\nSuerte chicos!!! totalmente recomendable, dany y antonio muy majos...trato muy agradable, además nos recomendaron sitios de la isla acertados para nuestros gustos. suerte chicos!!! 5 2025-01-25 01:27:48.342813+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Totalmente recomendable, Dany y Antonio muy majos...trato muy agradable, además nos recomendaron sit"} {0.020307506,-0.013303342,0.0147401355,0.04771531,-0.06145556,-0.004762319,0.069976434,-0.029561711,-0.0153070595,-0.022059947,0.039803896,0.024626266,-0.05387796,0.004009109,0.031258535,0.0119225485,0.047646362,0.089456476,0.06634037,-0.024548268,0.043496612,0.0007417949,-0.022591414,0.1149926,-0.09932547,-0.040534876,0.0009795707,0.05305233,-0.07796205,-0.0723125,0.03392937,0.101469874,0.037326787,-0.04780902,-0.013432839,0.03516525,0.038278434,-0.1211531,-0.016850246,0.041843023,-0.043664064,0.026546307,0.02805177,-0.005511679,0.01823959,-0.116653204,-0.044978257,0.03697538,0.08083514,0.04409897,-0.062485673,-0.037941076,0.01336711,-0.07052137,0.008362289,0.007324663,-0.02716945,-0.042091895,0.028436903,-0.019513953,-0.015875658,0.0063149435,-0.088394985,0.03944644,-0.0396717,-0.048249993,-0.00834816,-0.01822472,-0.06612514,0.031031532,0.02771552,-0.08158752,0.05938417,0.030427972,-0.114748135,0.02504922,0.028508142,-0.081123404,-0.06647744,-0.014360455,0.0048261015,0.008927196,0.053507145,-0.05477657,0.061528925,0.006524381,-0.03893848,-0.0011242842,-0.007290339,-0.002229004,0.09112831,0.0364045,-0.049577024,-0.03779222,0.07365423,0.07719178,-0.01450672,-0.100077994,-0.09357729,0.027764749,0.07615823,0.04150465,0.026188629,-0.007854675,-0.029812822,0.05816337,0.02411039,-0.11209674,0.011444468,0.035014234,-0.11525315,-0.046420276,-0.008270871,-0.05751332,-0.051396053,-0.001666908,0.0049737683,-0.0018207644,0.007585886,-0.08927331,0.00681324,0.0027407084,0.0031295714,-0.032608103,0.06904116,-0.021323858,0.072570585,9.289979e-33,-0.03911926,-0.00040005115,-0.018100996,0.03270702,0.115083106,-0.056100406,-0.052863456,-0.043931093,-0.088758275,-0.044881146,-0.06273931,-0.01898129,0.009552188,0.03467476,0.052711528,0.02814461,0.042586297,0.03186312,0.0049788626,-0.026574627,-0.12530445,-0.025774071,-0.0122471005,-0.0024906653,-0.0714528,0.047161058,-0.025801845,-0.07577423,0.025148245,0.06322758,-0.022494942,0.06407573,-0.053103745,-0.053948965,-0.10114651,-0.018653708,-0.058163676,-0.016646748,-0.009874003,0.024881307,0.035046417,0.06940085,0.039506417,0.088509455,-0.0451959,0.010803765,0.041979987,0.052717984,0.12685439,0.050327506,-0.054309722,-0.08066989,-0.03720751,-0.0040289396,-0.019487139,0.01081378,-0.08188499,0.054244626,0.08664468,-0.03820014,0.020583576,-0.03362048,0.04799184,-0.13042347,0.00065617583,0.026091635,0.027426604,0.029669264,0.10413416,0.011248076,-0.0061918586,0.008351074,0.007314315,0.043399774,0.0049274615,-0.027663259,0.06366777,-0.012267545,0.042500135,0.051936068,-0.049421955,0.054358255,0.05409257,0.0776895,0.08034519,0.035971258,0.009429332,0.07297931,0.011395773,0.07965775,-0.028217912,0.062799305,0.049436312,-0.011789873,0.0024494661,-8.1636136e-33,0.0062207617,-0.0017815984,-0.04420335,0.03388795,-0.049917933,-0.05412639,-0.10504665,-0.01526949,0.08736694,-0.06719707,-0.10121342,-0.08688612,0.0648967,-0.15230793,-0.059070207,0.102024905,9.895988e-05,0.00318743,-0.07917577,-0.045540534,0.03233042,0.058645636,0.008421221,-0.040854663,-0.007396958,-0.011293395,0.020830888,0.019805467,-0.026163919,0.014184235,0.035495948,-0.007581699,-0.07180109,0.022931278,0.0063804383,0.090575926,0.011527189,0.044077415,-0.03158256,0.15650952,0.050506,0.1137904,0.020903502,-0.011432033,0.019475669,0.041305628,-0.017405568,-0.06289982,-0.021605015,-0.11439916,0.017094122,-0.01882232,-0.06456805,0.016622767,0.0736529,-0.018271478,-0.026659952,-0.049049895,-0.04675482,-0.09888568,-0.025790535,0.021024566,-0.03137905,-0.037873633,0.06634781,0.032397278,-0.029323759,0.0033868938,-0.016471159,0.058453463,-0.022887168,-0.02896148,-0.06717192,0.043725044,-0.01087324,-0.031189255,-0.03240425,0.0010295378,-0.004125172,0.043822993,0.023425955,0.019049369,-0.07571535,-0.02002667,0.031122299,0.021137971,-0.021217003,-0.04035287,-0.00907676,0.06662745,0.008932524,0.012935623,-0.0029106576,-0.014231229,-0.03945321,-4.020917e-08,0.06918326,-0.081138805,-0.0037457542,0.04457071,-0.006000211,-0.04396565,-0.049001,0.067442596,-0.0045753517,0.025087137,-0.026738584,0.0028773851,0.03188061,0.09138894,-0.05405903,0.080184616,0.095889665,0.061219476,-0.025442975,-0.04396983,0.08586143,0.037512735,-0.025016125,0.002364736,0.0043118615,0.08728393,0.054686494,-0.023763802,0.021276016,-0.009149002,-0.017111579,0.013656409,-0.07049965,-0.07029711,-0.02725836,-0.014133402,-0.005108774,-0.049381856,-0.026313903,-0.028028036,0.030618995,-0.0802009,0.014190767,0.006515717,-0.008424119,-0.08023009,0.059364147,-0.0042697876,-0.0072621675,0.037635397,-0.009270036,-0.023030184,0.07820044,0.038655546,0.043858938,-0.040665705,0.062036883,-0.04392924,0.04021401,-0.0059805317,0.0663303,0.06779501,0.015975641,-0.055787902} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:14.558501+00 2026-01-25 01:27:52.027173+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 606 google ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB 1 t 609 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendaciones súper recomendaciones para Isaac y antonio los mejores sin duda . una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendaciones súper recomendaciones para isaac y antonio los mejores sin duda . 5 2025-01-25 01:27:48.342815+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendacio"} {-0.045276143,-0.00091172603,-0.039839387,-0.02187748,-0.09236323,0.009418668,0.12754549,0.10666708,-0.037177574,0.024639701,0.00884483,0.020613177,-0.022328157,-0.023560854,0.053152658,0.019510917,0.00976905,0.059628367,-0.025565365,0.012009328,0.056191072,-0.1023194,-0.057342082,0.026642757,-0.08607764,0.033139065,0.013744458,0.009767939,-0.038742367,-0.03760868,0.0776358,0.09119177,0.12112784,0.011012039,-0.020142281,0.08834223,-0.0009475346,-0.029880783,-0.048914824,0.00032108882,-0.10392556,0.009321584,-0.033837076,-0.044752456,0.040130023,-0.09064746,-0.013051063,0.050708957,-0.0048065195,0.059542198,-0.11918257,-0.065457076,0.0041602347,-0.036141116,0.009255164,0.012738298,0.0030481473,0.012529462,0.06418627,0.022357147,-0.012788381,-0.0014055636,-0.06339072,0.04037966,0.048327584,0.0108616715,0.021415273,0.06775451,-0.03769558,-0.020778047,0.057965312,-0.082565576,-0.03485145,0.07125475,-0.0009297373,0.043673474,0.014882725,-0.034269392,-0.006015573,-0.033430822,0.010514249,-0.011924891,-0.08119725,-0.03785441,-0.010559289,0.0069151255,0.040634803,0.025828324,0.03472061,0.04794967,0.066667736,0.038104694,-0.08441559,-0.023192352,-0.026451446,0.033269,0.01706616,-0.080762506,-0.041479744,0.015467177,0.014610758,0.034110725,0.06303069,0.03856921,-0.07107349,0.03144023,0.0009967709,6.447757e-05,-0.0031066863,0.10200419,-0.09490915,-0.03268391,-0.12537095,-0.059951648,-0.028778879,0.020266885,-0.026165748,0.03392922,0.04378105,-0.034637444,0.013095647,0.0039153714,-0.023380548,-0.04612104,-0.044381782,-0.0038419992,0.016896527,7.952568e-33,-0.11883359,0.015376565,-0.027358714,0.11387855,-0.05049097,-0.0124314,-0.011193283,0.08536446,-0.0041704965,-0.020151667,-0.026991904,0.092767596,0.03504589,0.017138775,0.042359784,-0.023508562,-0.038082857,-0.006925215,0.08184556,-0.028717857,-0.054448362,-0.009313313,0.016752608,0.0015382898,0.08219923,-0.02264446,0.08313775,0.022031076,0.043328263,0.0104828365,-0.016204767,0.02763771,-0.014062562,-0.05711412,0.010846047,0.03928258,-0.014349438,-0.028937563,-0.01084984,-0.011497301,-0.077529915,0.021903673,0.010805995,-0.010638169,-0.017224286,0.062090162,0.092995785,-0.016482987,-0.004106494,-0.013492947,-0.07915844,0.017549396,-0.050620712,-0.0040688333,-0.035120178,0.00888869,-0.026768163,-0.01436796,-0.0120216785,-0.057707913,0.02336302,-0.07927265,0.039544966,-0.001630941,-0.03788034,-0.054803908,0.017247578,0.085336745,0.120451264,0.070306644,-0.08882658,0.0021309722,0.07281749,-0.0023303758,-0.07178067,0.049214464,-0.013978438,0.025421694,-0.04439192,0.053898394,-0.071597874,0.07143419,0.065115355,0.07491612,0.12755439,0.08235585,0.064115666,0.03748509,-0.0324051,0.08419023,0.026568376,0.08191643,0.022948654,0.01204409,0.054389015,-1.0833066e-32,-0.06716981,-0.015869556,-0.024545401,0.07903566,0.10258235,-0.008215623,-0.03853199,0.008697837,-0.03290663,-0.032256573,-0.08333235,-0.10931478,0.06337365,-0.059226543,-0.050367888,0.032244667,-0.052854136,-0.051474918,-0.06513643,-0.056232274,0.051604,0.08631055,0.040919997,-0.08173115,0.02741537,-0.1310472,-0.10383451,0.037871487,0.0008077959,0.012297999,0.07581052,-0.036923658,-0.064250104,0.0436459,-0.029180788,0.03496009,0.013813045,0.04387627,0.050781555,0.13208832,0.05427177,0.051032513,-0.03631559,0.022660628,-0.038879283,-0.016844068,-0.019753166,-0.17011319,-0.0084953,-0.08108857,0.019732963,-0.075704046,-0.07360424,-0.13060191,0.008057666,-0.026715664,0.033797607,-0.10104045,-0.021982659,0.0074630687,0.028683705,-0.024084263,0.059430648,-0.009670384,-0.011623915,-0.012401879,0.0134334,0.04379803,-0.09066483,0.030573789,0.03161401,-0.01077082,-0.013985501,0.074264556,-0.08370567,-0.034820925,-0.039575383,-0.017657824,0.047044184,-0.0040788855,0.016179504,0.010729368,-0.0130440835,0.008369569,-0.03578824,-0.00061134325,0.008524804,0.0008550025,-0.03514547,-0.021038327,-0.026264334,-0.016313367,-0.053013567,-0.022748543,-0.085412346,-4.1558003e-08,-0.04609837,-0.08647007,-0.0058979183,0.047908552,0.07327186,-0.03695567,-0.08010714,0.033156805,0.02247951,0.06793077,-0.005333195,-0.072523534,-0.08198409,0.10005327,-0.023786573,-0.019321933,0.008528028,0.04269113,-0.040992677,-0.045678664,0.05159136,0.0038676164,-0.053656586,0.04441354,0.032647625,3.917064e-07,-0.031610694,0.029063033,0.021921964,-0.030959079,-0.061178602,0.0002600144,0.03416908,-0.09385314,-0.063751474,0.006879137,-0.011776408,0.019816449,-0.018654794,-0.00013814303,0.103880174,-0.0114534665,-0.019193513,0.07636466,-0.018891398,-0.04906713,-0.055995185,-0.023359973,-0.039902218,0.018774373,-0.00084292033,-0.026293008,0.098831385,-0.0041541657,0.044979688,0.0031229889,-0.0087177465,0.046975583,0.009745538,-0.00395159,0.0025364016,-0.024708182,-0.04545041,-0.04225941} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:10.028869+00 2026-01-25 01:27:52.032775+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 607 google ChZDSUhNMG9nS0VJQ0FnSURINXZtbkJREAE 1 t 610 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Magnífico servicio... Buen estado de los coches... Antonio, Carmen y Nestor excelente personal!!!\nGracias. magnífico servicio... buen estado de los coches... antonio, carmen y nestor excelente personal!!! gracias. 5 2025-01-25 01:27:48.342817+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:27:52.03481+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 609 google ChZDSUhNMG9nS0VJQ0FnSUM3X2NQY01BEAE 1 t 612 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Están empezando, coches super nuevos y más amables no pueden ser. Todo facilidades. Muy recomendable. están empezando, coches super nuevos y más amables no pueden ser. todo facilidades. muy recomendable. 5 2025-01-25 01:27:48.34283+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "coches super nuevos y más amables no pueden ser. Todo facilidades."} {-0.050299544,-0.079363845,0.00032248133,-0.051169798,-0.066679716,-0.06474781,0.027762791,-0.0044077137,-0.06557519,-0.022343488,0.044358417,0.027972745,-0.073047355,-0.0011766303,0.00017987865,-0.016224135,0.06651394,0.04570742,0.07902406,-0.03491758,0.09142937,-0.0846558,-0.05579665,0.047207724,-0.02817675,-0.018461574,0.003336233,0.0038014464,-0.03546248,-0.088398375,-0.008291934,0.0912355,-0.0120375585,-0.020068128,-0.0055561885,-0.0030764493,0.108750366,-0.094843216,-0.036671713,0.078288935,-0.13402906,0.067073934,-0.02034843,-0.043642506,0.056171637,-0.08703482,-0.039909955,-0.0058106217,0.08356838,-0.022762757,-0.002806441,-0.044263467,-0.018941613,0.0027596205,-0.0044357046,0.009081049,-0.023891944,-0.035668835,0.014285968,-0.01983891,0.019046767,0.006198472,-0.018354949,0.025093691,-0.0058846995,-0.018085724,0.008993839,0.05860869,-0.07128389,0.08371854,0.035239547,-0.035991773,0.00653625,-0.0034702888,-0.03582855,0.02243404,-0.019084059,-0.00064196595,-0.08054514,-0.012092799,-0.015320549,0.011098545,0.03653761,-0.09899165,0.04008082,-0.04270481,-0.06330326,0.033550337,-0.010380228,0.024631133,0.0044530537,0.11745019,-0.08180367,0.031814758,0.040236425,0.046500985,-0.0064135003,-0.036070924,0.026833173,0.02676268,0.073423125,0.07066165,0.09797541,0.008977637,0.016367836,0.057103645,0.011143473,-0.045739047,0.06125952,0.06288395,-0.07330421,-0.03311361,-0.047183797,-0.045615982,-0.071238905,-0.032494564,-0.0041087284,-0.04207268,-0.027005468,-0.08227455,0.060206648,0.0519432,-0.050612364,-0.040708706,0.03539908,0.013792476,0.07658475,6.369753e-33,-0.024052382,0.013539161,0.0045852982,0.04188356,-0.0054558036,0.02768956,-0.02841069,-0.015434499,-0.008700433,-0.037102733,-0.04678588,0.024071364,0.014602989,-0.0054211332,0.05600224,-0.0056584724,0.03686679,0.020100374,0.059176616,0.022487689,-0.0437187,0.03188222,-0.020830002,-0.025229132,-0.06237802,0.0075759036,0.013420873,-0.043119654,-0.0052990755,0.041680444,-0.04408288,-0.008140845,4.3492517e-05,0.041547246,-0.020015039,0.008733036,0.02011717,-0.010291196,0.014134287,-0.0318728,0.08633942,0.056186005,0.010385347,0.0134853935,0.02163916,-0.008711938,0.07945304,0.07119153,0.07086405,-0.0077465805,-0.1054304,-0.0827157,-0.10833789,0.0019488638,0.0037413023,0.0153708765,-0.07634686,0.08268657,0.045191787,-0.12534837,0.015887761,-0.059806753,0.057474505,-0.044128727,-0.0036667173,-0.0034529613,0.002671247,0.0823251,0.1060729,0.08300431,-0.057726353,-0.025335204,0.0001546874,0.10180862,0.065743186,-0.003119686,0.014221518,0.010350938,0.043121718,0.05792108,-0.0604123,0.03429407,-0.02774727,0.0767566,0.07968332,0.069344446,0.08904419,0.06990653,0.004428693,0.088488206,-0.006497699,0.05363733,0.057843387,-0.053114742,0.025399266,-6.225145e-33,0.060803484,-0.028923292,-0.005822018,0.098188385,-0.0367551,0.027952012,-0.07233717,0.043816417,0.010569644,-0.13107193,-0.07955888,-0.13308518,0.12855734,-0.09505161,-0.10006838,0.03155211,-0.037966862,-0.058709845,-0.047493197,-0.006379606,0.026763529,0.08195405,-0.0051914067,-0.025309367,0.02940528,-0.04318015,-0.026926687,0.03279868,-0.086593986,-0.0030552873,0.0492795,-0.05563394,0.007024651,0.05943361,-0.011103824,0.121175535,0.0735913,0.021752125,-0.014282336,0.053280734,-0.024138587,0.102160536,0.0016664161,-0.006769811,-0.004073844,0.058033,-0.09082733,-0.08833158,-0.027343087,-0.08276422,0.06481868,-0.021878205,-0.03272042,-0.065135136,0.035422828,-0.051427763,-0.040407483,-0.04113599,-0.09394791,-0.029317461,0.040026072,0.026447061,-0.03958539,0.014954395,0.11126016,0.0069813817,-0.038238153,-0.0072335056,0.022865528,0.0067250645,0.07056771,-0.017696867,-0.03086827,0.0036680137,0.06904528,-0.10005207,-0.086890854,-0.01423441,-0.03061243,-0.026304495,0.027260765,-0.00015650128,-0.013721764,0.00201237,0.010827363,0.06729345,-0.023686072,-0.004253764,-0.014293387,-0.026922932,0.015823752,0.07098085,-0.09941801,-0.00049878174,-0.032943267,-3.2048714e-08,0.046901193,-0.013933528,-0.002381346,0.018414466,-0.036370624,-0.05268451,-0.0664194,0.018781526,-0.003577821,0.0382923,0.0028747874,-0.083708934,0.02355994,0.02824756,-0.018721689,-0.014415243,0.12079806,0.08261927,-0.03552276,-0.071139015,0.003606966,0.07553913,-0.02943327,0.012885468,7.574918e-05,0.08832217,0.044269104,-0.04258991,0.04111477,-0.017630976,-0.047838397,-0.024284992,0.026919294,0.0005448792,-0.037944958,-0.010733892,-0.042262252,0.007867202,-0.026983589,-0.053522825,0.09596963,0.028920352,-0.048520725,-0.008400655,-0.079648994,-0.14952281,0.026854005,-0.012929906,-0.018874764,0.024291968,-0.017525675,-0.04863781,0.08392346,0.027386297,0.04501269,0.008258546,0.017199662,0.022524811,0.004916053,0.035937596,0.062096354,0.05095808,-0.014569185,0.0018578944} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:49.690584+00 2026-01-25 01:27:52.040164+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 610 google ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE 1 t 613 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio de 10. Vehículo nuevo y precio súper competitivo. Personal muy amable y atento. Repetiremos. servicio de 10. vehículo nuevo y precio súper competitivo. personal muy amable y atento. repetiremos. 5 2025-01-25 01:27:48.342839+00 es v5.1 O1.01 {P1.01} V+ I3 CR-N {} {"A1.01": "Personal muy amable y atento. Repetiremos.", "O1.01": "Servicio de 10. Vehículo nuevo y precio súper competitivo."} {-0.06905946,-0.010054036,-0.021306938,-0.07692362,-0.038050365,0.012778756,0.07121769,0.088573284,-0.063389696,-0.026245547,0.020110449,0.031403523,-0.0510739,0.033737317,0.0018057476,-0.027929666,0.023263255,0.005419705,-0.00022437783,-0.0053090095,0.12341519,-0.0723119,-0.06611551,0.0974739,-0.064619705,-0.070318855,-0.040736638,0.007696867,-0.04964148,-0.04587093,0.0049846387,0.049085543,0.08653462,0.045308504,-0.011975279,-0.030770909,0.04352672,-0.05776623,-0.032665458,0.06210305,-0.08894172,-0.06693745,-0.023994714,-0.090833664,0.059556905,-0.03371508,0.04777583,0.03152596,0.03478819,-0.03525185,-0.12685351,-0.05022866,0.009784352,-0.008070037,0.0037633236,-0.041511867,0.007481134,-0.046013482,0.0034031016,-0.044168014,0.03418091,0.037403446,-0.07850187,0.05824713,0.016634762,-0.0024068006,-0.030446144,0.048805565,-0.02597385,0.02990011,0.14435562,-0.073644504,-0.0051776003,0.046786003,-0.037577275,0.046495624,-0.024146933,-0.005220612,-0.044047274,-0.04458652,0.045977518,-0.030356377,-0.009200087,-0.045232955,-0.015880926,-0.0028436806,-0.027222306,0.040829092,0.021127516,0.01947031,0.0024335666,0.07022959,-0.042967938,-0.01954611,-0.055792056,0.042740703,-0.017999444,-0.061587613,0.015358302,0.06696987,0.08797856,0.014985228,0.06312117,0.0656125,-0.032489277,0.06991378,0.039158255,-0.005475891,-0.005770534,0.064618185,-0.039542887,-0.043291934,-0.1193016,-0.075017035,-0.117231704,0.054400034,-0.037946884,0.0039297347,-0.039186396,-0.09431129,0.0723296,0.059838265,-0.021339055,-0.036728162,-0.018852958,-0.010605553,0.06503299,4.1866914e-33,-0.07321544,-0.051607106,-0.0033266752,0.031816624,-0.048946608,-0.011115252,-0.039221633,0.03047109,-0.0244873,-0.053883523,-0.028140623,0.07593755,0.04648068,-0.0013812942,0.03433806,-0.015926912,-0.02808375,0.01107382,0.10422326,0.013916696,-0.008952278,0.010278568,-0.009831373,0.029253637,0.024930943,0.0074012363,-0.055823673,-0.03676523,-0.024467358,0.048655845,0.050863106,0.03673892,0.005370923,0.014729139,-0.011881673,-0.016659006,0.049565546,0.00029420582,-0.008914632,-0.023068683,0.0018155931,-0.0013561064,-0.058451496,0.017217461,-0.0014786524,-0.0057854075,0.08300162,0.100820184,0.06965923,-0.01004852,-0.058400687,-0.059632014,-0.11983861,-0.023277637,0.0055358205,0.051318284,0.012565974,0.073556006,-0.014595304,-0.064383835,0.023788104,-0.04310044,0.0020960567,0.016020434,-0.05322216,-0.0005521666,0.045963794,0.031455137,0.17296012,0.07032512,-0.07092615,-0.045067906,-0.016632868,0.048928566,-0.0012576407,0.037938613,0.0128203025,-0.0072738514,0.009885547,0.08683363,-0.06703444,0.077142864,-0.022151731,0.042861994,0.09760881,0.15885663,0.031222463,0.0050677992,0.014664918,0.074220985,0.006928619,0.0054758475,0.055616207,0.03192401,-0.011294575,-5.9082267e-33,-0.01655865,-0.026056625,0.005383498,0.08890614,0.0060055554,0.04822766,-0.016629865,-0.016896682,-0.034244355,0.033987027,-0.08816116,-0.06818498,0.18663357,-0.03073176,-0.09004526,0.043766458,-0.043771114,-0.04268522,-0.0888174,-0.03687836,0.047373384,0.13897282,0.019642022,-0.015588425,-0.0021694172,-0.063340515,-0.008349308,0.041054722,-0.0275378,-0.024833864,0.0020228645,-0.05456022,-0.09641305,-0.005780648,-0.0015426446,0.07497733,0.056334905,0.032946844,0.025672274,0.05125872,-0.033982854,0.042208225,-0.01797736,-0.04012248,-0.023592535,0.005408436,-0.05150394,-0.12044334,0.021121658,-0.07042111,0.037793715,-0.03837454,-0.006395639,-0.021621237,0.034487534,0.009725179,-0.041506425,-0.018794116,-0.07835883,-0.018537764,0.055914003,-0.0154862115,-0.063253,0.026393197,0.09435591,0.0008552835,-0.04169772,0.008978515,-0.055852998,-0.01662036,0.06284969,-0.029296448,-0.008710478,0.012628763,-0.09487557,-0.06427424,-0.039504815,0.020874605,0.079426125,0.07998281,-0.013277128,0.027083715,0.035759803,-0.0313081,-0.0023657645,-0.03233249,-0.0031764936,0.042827833,0.066399865,0.008072804,0.022541802,0.045759674,-0.07315318,-0.059776954,-0.0007797982,-3.2119207e-08,0.039864823,-0.038182955,0.028348314,0.068389155,0.04304317,-0.09393056,-0.07681461,0.027392486,0.04077596,0.07397617,-0.032979038,-0.06769198,-0.0485909,0.028388696,-0.03330617,-0.03800138,0.07738808,0.08158742,-0.016120797,-0.081420645,0.077287704,0.0067008543,-0.03054,-0.04720955,-0.035274226,0.017161375,-0.011453808,-0.031404857,-0.06321171,-0.009575994,-0.034135778,-0.03032564,-0.048105195,-0.12057117,-0.014505571,0.025926188,-0.038202066,0.019460272,0.006436137,-0.062971905,0.07920733,0.029332003,-0.05893772,0.041103397,-0.014712977,-0.040040012,-0.086136244,-0.014406605,-0.019922914,0.0006231416,-0.014041355,-0.024060274,0.07288369,0.044729702,0.02312095,0.009378227,0.038910832,0.012713106,-0.0496722,0.07202676,0.07740989,0.06493016,-0.009918266,-0.051788393} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:45.711173+00 2026-01-25 01:27:52.043546+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 612 google ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE 1 t 615 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car también muy amable y atento, repetiré seguro! carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car también muy amable y atento, repetiré seguro! 5 2025-01-25 01:27:48.342857+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car ta", "R1.01": "repetiré seguro!"} {-0.07264363,0.01736926,0.06008036,0.015296585,-0.071414486,0.010027478,0.082598895,0.020268409,-0.0327308,0.014915087,0.028853228,-0.0016067722,0.01771667,0.0041358224,-0.01872884,0.017629,0.00064282364,0.06197027,0.004603725,-2.3582335e-05,0.108468175,-0.04494887,-0.05286896,0.04252657,-0.03715891,0.015946308,-0.007807603,0.071428806,0.0011653788,-0.059856575,0.03306473,0.0583379,0.08617805,-0.0298872,0.030701466,-0.05095349,0.043604895,-0.10506003,0.0326137,-0.0043558893,-0.04808825,0.007858331,-0.007656969,-0.046179727,-0.015871206,-0.082870774,0.07575488,0.05739653,0.09030924,-0.031717904,-0.0728142,0.052964963,-0.00038506585,-0.024244875,-0.04046486,-0.0012049143,-0.00447518,0.011672836,0.11565588,0.018193526,0.056307178,0.013695889,-0.019456439,0.05265726,0.0033938126,9.491067e-05,0.014148129,-0.013325395,-0.08394242,0.081867,0.089100316,-0.059798043,0.06475327,0.02142214,0.0308446,0.028533882,-0.01916802,-0.058356263,-0.011120843,0.009654414,-0.07641381,-0.06815788,-0.039453648,-0.093221694,0.008722016,-0.03411793,0.01074845,-0.011362464,0.03150938,0.019625833,0.03814965,0.057711154,-0.04327695,-0.05084908,0.013696144,0.041987423,0.047909375,-0.023359312,-0.07192119,0.077669986,0.11237918,0.07087895,0.10855726,0.018639635,0.028213987,0.0621617,0.07152406,-0.016504427,0.0023372977,0.048359167,-0.017135805,-0.07672014,-0.004913434,-0.06673555,-0.06295122,0.010405458,0.0093776565,-0.01430595,-0.061671447,-0.038319383,0.038830254,-0.025531974,-0.05215207,-0.024956565,0.054275736,-0.009142145,0.01692742,6.544138e-33,-0.05458763,-0.0006996093,-0.03528853,0.080455944,0.07267581,0.002118657,-0.06734241,0.039670777,-0.060707487,0.022292621,-0.003330489,-0.013223939,-0.03144838,0.07384209,0.037543733,0.11688655,0.0019144987,-0.07045992,-0.020703075,0.022262612,-0.05931978,-0.035543527,0.035513412,0.023071965,-0.028171578,0.02746582,0.004703549,-0.06507716,0.047435578,0.046891384,-0.094208784,0.09665077,-0.0016222001,-0.043256793,-0.020385504,-0.08758031,-0.020814262,0.018293394,-0.057381865,-0.029037796,0.0559304,0.021068206,-0.011755049,0.016389964,-0.030957337,0.00802011,0.028564176,0.062310584,0.09821422,0.0015993821,-0.030857708,-0.07386253,-0.10108027,-0.07712459,0.017196357,0.027052706,-0.10449989,0.03274314,0.026458954,-0.042558786,0.037693884,-0.03234595,0.079373434,0.06288075,-0.038219992,-0.030410323,-0.022440711,0.05526357,0.13688557,0.08339647,-0.023568418,-0.011856942,-0.048938874,0.060530704,-0.0070493924,0.026578847,-0.020841893,0.02230206,-0.03966949,0.049499977,-0.045953475,-0.00649073,0.05673519,0.06590916,0.063250154,0.09901522,0.046575494,0.049797766,0.011820531,0.062280465,0.026231173,0.09124394,0.026685528,-0.15134302,0.015471132,-7.395341e-33,0.028567307,-0.04510908,0.033214428,-0.030219726,0.011302777,-0.0043741143,-0.047233313,-0.00863816,0.062332086,-0.09323549,-0.10670501,-0.093620956,0.121278785,-0.10020198,0.0090982225,0.04116139,0.013288896,-0.09616263,-0.062910415,0.03195568,-0.028889393,0.0522436,0.060563803,0.0057829795,-0.053681485,-0.07402226,-0.02137296,0.07264022,0.018318515,0.06944553,-0.009398103,-0.035486616,-0.02229836,0.024624033,-0.04180424,0.109378524,0.012049703,-0.026210686,-0.03736475,0.045009464,0.022600913,0.0218145,-0.038364194,0.0075969836,0.011689212,-0.025629064,-0.020318452,-0.13627063,-0.079218365,-0.06634283,0.026081063,-0.0047604544,-0.07511155,-0.0061649154,0.011007117,-0.0049531735,-0.007941667,-0.0198383,-0.038298894,0.0060084094,-0.05156846,0.070224516,0.02005216,-0.055502843,0.07008331,-0.055181798,-0.06478376,-0.05983963,0.021600263,-0.012567787,0.1421809,-0.012637988,-0.099687904,0.007722561,-0.031373937,0.033615,-0.047764298,0.05220569,-0.033171672,-0.04162719,0.017820284,-0.01100021,-0.033882868,0.03395314,-0.031935994,0.050431103,-0.009217851,-0.026970334,-0.00011624023,0.04358428,0.011740406,0.050185326,-0.07907475,-0.037500016,-0.080141485,-3.424057e-08,-0.026399035,-0.00230795,-0.001099181,-0.033398256,0.044585824,-0.010681943,-0.048326097,0.003956415,-0.01492188,0.028706051,0.052283045,-0.046987,-0.0050820336,0.04616795,-0.09673675,0.06277707,0.020112906,0.10425205,-0.05940151,-0.033710457,-0.0053154347,0.015289816,-0.025301155,0.026612053,0.019388182,0.008657854,-0.039956667,-0.01951931,-0.005438648,-0.032118592,-0.031684924,-0.04517273,-0.018847711,-0.1064071,-0.004269691,-0.034223035,-0.037791,-0.038203556,-0.013917235,-0.06930836,0.09707306,0.03985966,-0.04660296,-0.020242807,-0.06473856,-0.06512346,-0.046314582,-0.045401923,0.0016503227,0.022972364,-0.042315837,-0.04969058,0.0072364747,0.030007184,0.0756252,-0.055717014,0.06668074,-0.00475713,0.011359043,0.022332553,0.11863398,0.08363858,-0.014000498,-0.09764556} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:38.758258+00 2026-01-25 01:27:52.050321+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 614 google ChdDSUhNMG9nS0VJQ0FnSUM3aWVXSTVnRRAB 1 t 617 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el personal lo mejor de lo mejor Totalmente recomendable ☺️ servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el personal lo mejor de lo mejor totalmente recomendable ☺️ 5 2025-01-25 01:27:48.342893+00 es v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "Servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el pers"} {-0.015786482,-0.007739074,-0.015269279,-0.06570419,-0.06092407,-0.05281725,0.101991996,0.013937305,-0.0027845334,-0.023805857,0.060091414,0.061053995,-0.022369646,0.033774797,0.07036569,-0.05531705,0.073683344,-0.0071997326,0.0024112824,0.036886945,0.086738475,-0.06397834,-0.089306675,0.07723705,-0.11137917,-0.018528124,-0.028596094,-0.028733645,-0.071049854,-0.078399934,-0.031525027,0.071660064,0.0353231,-0.007820531,-0.012853365,0.040877655,0.09036705,-0.08872313,-0.020268373,0.103594646,-0.14724995,-0.05316832,0.0029801938,-0.082935765,0.037753053,-0.11473467,0.007712705,-0.044587437,0.020836217,0.02273515,-0.059409134,-0.05615364,-0.009670376,0.04833191,0.014175392,-0.027552227,-0.062385205,0.014701178,-0.0049064495,0.004516273,0.01042952,0.059946608,0.024470711,0.041996572,0.0524446,-0.02535756,-0.033029597,-0.029880574,-0.047035087,0.0016324464,0.012204829,-0.069954194,-0.0084139025,0.053289566,-0.012127309,0.009418361,0.025248693,0.011460308,-0.02230421,-0.047262777,-0.032478187,0.0027584163,-0.0024747914,0.04089311,-0.024366006,0.008698512,-0.03770348,-0.016470963,0.068491556,0.005060872,-0.01189429,0.033062667,-0.06527308,-0.018993786,-0.0024929622,-0.0029377153,-0.015750768,-0.084337085,-0.053642284,-0.0047762715,0.042635534,0.038900543,0.0901191,0.0073993863,-0.029601004,0.04956784,-0.018613368,-0.022425499,0.0057952986,0.10921965,-0.08132384,-0.023376029,-0.09006391,-0.036761094,-0.08346447,0.016925085,-0.01606539,-0.03346531,0.011015297,-0.0573551,0.05769276,0.0077634323,-0.015083743,-0.07421426,-0.03727271,-0.0492422,0.08438607,8.159855e-33,-0.046656974,-0.0006039337,0.05666724,0.10054452,-0.02880123,-0.0022345346,-0.05782176,0.0007429351,-0.005806827,-0.021316439,-0.032866973,0.1514181,0.014656776,0.008430227,0.09449126,0.025616666,-0.0031382227,0.045426134,0.041796025,0.012062785,-0.021704514,0.049491916,-0.006864601,-0.0298465,-0.00934947,0.021834983,0.0035019114,-0.04179556,-0.040890012,0.038528122,0.058017436,0.002103447,0.016287927,-0.0154798785,-0.04604364,-0.040282484,-0.034827005,-0.029421728,-0.0008010616,-0.052358765,-0.01206738,0.011166162,-0.016238214,0.064537324,0.009794406,0.04534823,0.096220806,-0.0009792654,0.07137117,-0.00020619897,-0.06455629,-0.057413477,-0.08940622,0.0038449508,-0.03309692,0.012619584,-0.02183283,0.09072034,0.00768112,-0.0668835,0.036231346,-0.11147464,0.022727573,0.017566642,0.0143951215,-0.062128298,0.032530915,0.04938022,0.12314085,0.07413373,-0.10247132,-0.038094144,0.016913958,0.105796255,-0.0066016153,-0.009831198,0.014747492,-0.033047844,0.025371417,0.044881005,-0.0109871235,0.01266969,-0.023118384,0.0346253,0.07663296,0.12164577,0.055353098,0.028259061,-0.0051332773,0.12566432,-0.05834956,0.10989388,0.038532205,-0.03469813,0.0017986469,-1.0572875e-32,-0.015880764,-0.03280342,-0.003367499,0.06198017,-0.006974919,0.034943007,0.027349278,-0.027834056,-0.00084344746,0.013241166,-0.124761626,-0.09598512,0.09472128,-0.015148331,-0.14028995,0.05710237,-0.058397274,-0.07295151,-0.03265271,0.0134823965,0.024858318,0.1091867,0.04168722,-0.02797785,-0.053407505,-0.017947702,-0.08836249,0.016355148,-0.0742744,-0.068977185,0.03867963,-0.032391783,-0.04155805,0.0155097665,-0.03235875,0.038516957,0.021183008,0.040460657,0.03006644,0.070987284,-0.019207478,0.009941572,-0.005121825,-0.004304416,-0.014346291,-0.042269785,-0.072690636,-0.16197187,0.022877427,-0.0058582276,0.002977743,-0.041570783,-0.050161276,-0.034965724,0.016070006,-0.01620457,-0.054770786,-0.08432138,-0.060412936,0.013783937,0.032280684,0.05269984,-0.034649152,0.063802145,0.08649434,0.005705527,0.030074637,-0.023151964,-0.061564498,0.05692536,0.030244237,-0.020818178,-0.021880057,0.015134244,-0.015377325,-0.06674465,-0.018047716,-0.06691142,-0.011512994,0.0026154562,0.0013947162,-0.053374615,0.038777135,-0.06680792,-0.03794487,-0.013653179,0.0051743537,0.043760948,0.0049966434,0.022957254,0.011461134,0.013729015,-0.10108471,-0.00985194,-0.028787332,-3.9904894e-08,0.03812285,-0.014414093,0.013803582,0.03669888,-0.013242884,-0.11986506,-0.037987933,0.026473956,0.03680878,0.043882214,-0.020299824,-0.060387075,-0.05123321,0.055223644,0.02991667,0.0014956325,0.08977077,0.07637623,-0.025849668,-0.03282213,0.06144506,0.0074457363,-0.052412435,-0.038445104,0.02719211,0.07367951,-0.05493468,0.016140416,-0.041135293,0.014564326,0.003991286,-0.021789074,0.03413831,-0.056420065,-0.09032163,0.005105856,-0.05841611,-0.02001015,-0.019704433,-0.059287142,0.11101748,0.05120008,-0.034893256,0.06531835,-0.01738745,-0.042620912,-0.051494222,0.0033319732,-0.07753643,0.010333886,-0.013436162,-0.06137888,0.12131003,-0.0067218333,0.06556493,0.015889747,0.054724492,0.04607875,0.04017103,0.07250441,0.07078867,0.0069720168,0.022369822,-0.09593363} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:24.658181+00 2026-01-25 01:27:52.053958+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 618 google ChdDSUhNMG9nS0VJQ0FnSURIeExUTjBRRRAB 1 t 621 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Me encanta este sitio lo recomiendo al 100% super económico, super buen trato, me encantó la experiencia y para repetir de verdad, fui atendido por carmen, Néstor y francisco y super guay el trato con ellos me encanta este sitio lo recomiendo al 100% super económico, super buen trato, me encantó la experiencia y para repetir de verdad, fui atendido por carmen, néstor y francisco y super guay el trato con ellos 5 2025-01-25 01:27:48.342905+00 es v5.1 \N {} \N \N \N {} {} {} \N \N {} \N 2026-01-25 01:27:52.07229+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 619 google ChZDSUhNMG9nS0VJQ0FnSUQ3aTVXR0lREAE 1 t 622 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Recién me atendió David Martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, sino como visitante). :-) recién me atendió david martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, sino como visitante). :-) 5 2025-01-25 01:27:48.342907+00 es v5.1 A1.01 {} V+ I3 CR-N {"David Martín"} {"A1.01": "Recién me atendió David Martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, "} {-0.018649207,0.061707538,0.02466304,0.01694272,-0.045836627,-0.021798955,0.0846236,0.045010086,0.0070368005,0.051942457,-0.012630956,-0.06156131,-0.058212444,-0.016058734,-0.05051963,0.032038182,-0.051105414,0.049955513,0.08148969,0.03096513,-0.012244827,-0.018245094,-0.03446547,0.111729614,-0.07215781,-0.012375365,0.0070631374,0.11141625,-0.0685186,-0.051920686,-0.06084608,0.072312325,0.07378615,-0.006653695,-0.08016462,0.038393486,0.11654256,-0.17531374,-0.01222136,0.051505625,-0.029102216,0.07639691,-0.007901455,0.0024385361,0.08456695,-0.07781503,0.0464901,0.03379396,0.04987377,-0.01632827,-0.05122609,-0.004489816,-0.06728351,0.011395059,-0.030480748,0.07676964,0.026365375,-0.007509768,0.025560966,0.010508006,0.07268155,-0.039328855,-0.051625505,0.08243287,-0.020831436,0.03270596,-0.029823659,0.015700588,-0.096118,0.08140817,0.053067908,-0.054316055,0.02570444,-0.018103648,0.004704178,0.06361975,-0.06971139,-0.07210221,-0.043100003,-0.04382221,0.004156488,0.002324152,-0.0059798635,-0.057476934,0.019976543,-0.022346294,0.009278172,-0.049657185,0.071993254,-0.009767425,-0.08151495,0.08154804,-0.10665308,-0.015003073,-0.02052315,-0.066065684,0.065678015,0.05933169,-0.007074999,0.023744576,0.10204876,0.09031677,0.058490235,0.0749607,0.015845625,0.07182846,-0.0014325526,-0.03530833,0.039886158,0.007891226,-0.07559666,-0.05643714,-0.049830157,-0.035875227,-0.05321502,0.048594546,0.03401859,-0.03650091,-0.06883699,-0.021430645,0.014754586,0.00049131387,-0.06296671,-0.109274335,0.03076334,-0.035831884,0.052675188,2.7415493e-33,-0.05581162,0.04719196,0.027077645,0.027469132,0.068191715,-0.027571214,-0.04532767,-0.01467025,-0.06656239,-0.027896341,0.013161571,0.0766543,0.034005675,0.006556384,-0.023991395,0.086540475,0.1023446,-0.06217475,0.04587495,-0.008758086,-0.052626953,0.005512492,-0.040451426,-0.02168889,0.008784899,-0.018412186,-0.0016655516,-0.035681594,-0.063547164,0.022394199,-0.029416066,0.051649395,-0.014460531,-0.07889325,0.0044729584,-0.06958261,-0.05082635,0.008059635,-0.035271905,-0.048618805,0.044407405,0.042416964,0.029567225,-0.022749394,-0.09187127,-0.010106471,-0.024820639,-0.006451802,0.13099025,0.01422615,-0.034007,-0.035646886,-0.09045303,0.008737991,-0.03789711,0.01438771,-0.06937107,0.07505526,-0.007685915,-0.02515581,0.02908298,-0.022331703,0.041656483,-0.0062097046,0.005809188,-0.017334335,0.007874327,0.08689996,0.11282891,0.053323295,-0.04407164,0.02242753,-0.078999296,-0.019303303,0.0065783155,-0.020592038,-0.010951659,-0.031546712,0.006135029,-0.013198075,-0.08098978,-0.004461997,0.046372388,0.00039722575,0.025753254,0.0666628,0.08375291,0.05992933,-0.04751895,0.082714744,0.058479406,0.09340783,0.046754874,-0.12793319,0.010248547,-4.098077e-33,0.033334874,0.008048103,0.03284822,0.017269297,-0.057395425,-0.0047859214,-0.043311242,0.010162007,0.00048448873,-0.049507298,-0.05545117,-0.065929234,0.16866659,-0.046448406,-0.036200535,0.028802698,-0.017374609,-0.040767945,-0.0012778235,-0.027284186,0.02179998,0.046588182,0.054286633,-0.05750678,-0.057217013,-0.045861393,-0.016143395,0.0030645104,-0.002945861,-0.034754425,0.07374075,-0.0036983257,-0.038507413,-0.009172434,0.0053960225,0.0727025,0.039884083,0.06425737,-0.0040228534,0.07761057,0.0250141,0.050410092,-0.02143034,-0.038812358,0.017223889,0.04727101,-0.058289666,-0.05831968,-0.11623843,-0.0018100833,0.0055059963,-0.04585899,-0.06108039,-0.05164947,0.05544614,0.044876028,-0.0053977678,-0.091592915,-0.03429256,-0.016364988,0.04351689,0.013750803,-0.07083957,-0.012120967,0.023884656,0.044164456,-0.038121205,0.023148937,0.05121797,0.030051375,-0.011601979,0.04773223,-0.10454694,0.031119365,-0.023883829,-0.051735017,-0.07320926,0.05968173,0.024662701,0.021624971,-0.028615303,-0.08158404,0.035671882,0.043361723,0.008279422,-0.049035884,-0.060442526,-0.015781032,0.011105592,0.036658626,0.054170873,-0.027067825,-0.04913537,-0.06422432,-0.04907256,-3.133529e-08,0.021689523,-0.065969296,-0.0021870458,-0.02000993,0.050861765,-0.023481758,-0.07348247,-0.050835736,0.02827629,0.07523674,0.00910672,-0.06657302,0.02898799,0.058493435,-0.051648367,0.09518299,0.0646903,0.0052848416,-0.034667183,-0.044234708,-0.04884662,0.010004384,-0.05017269,0.015923765,0.080742575,0.05815609,-0.031805377,0.050407853,-0.051080007,-0.06946241,-0.04527628,0.052316356,-0.06903103,-0.026741553,0.006939149,-0.04136965,0.0028610157,0.023235949,-0.0075171306,0.005346905,0.08913429,0.067709856,-0.014936175,0.050916437,0.0068167155,-0.011013851,0.093903325,0.029093979,-0.014303398,0.027784923,0.012538503,-0.053286295,0.11792205,0.021409247,-0.01811295,0.015350074,0.019386133,0.029994523,-0.02495896,-0.046379887,0.0630797,0.007028176,0.0064060157,-0.11360264} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:12.642588+00 2026-01-25 01:27:52.077092+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1445 google ChZDSUhNMG9nS0VJQ0FnSUMwcU5lbmZREAE 1 t 1448 Go Karts Mar Menor unknown Cool place to race. I was surprised by variaty of cars available. I can't hardly imagine to ride their fastest model without some experience. Price was decent. cool place to race. i was surprised by variaty of cars available. i can't hardly imagine to ride their fastest model without some experience. price was decent. 5 2020-02-01 01:52:39.833374+00 en v5.1 V1.03 {V1.01} V+ I2 CR-N {} {"V1.03": "Cool place to race. I was surprised by variaty of cars available. I can't hardly imagine to ride the"} {-0.003412313,0.039806172,0.046079576,0.061805435,-0.11385364,0.005059202,-0.082805395,-0.0049494123,-0.013441427,-0.015088483,0.02492352,0.00036152755,0.015748736,-0.021716747,-0.040306736,-0.081392035,0.15211181,-0.077276364,-0.00083052996,-0.02831378,-0.08024021,-0.05501989,-0.025594916,0.083215944,-0.043689877,0.052268658,-0.10072355,0.10091217,0.012471377,0.0010221032,-0.08773176,0.053829435,0.016562995,-0.026487684,-0.0016556472,-0.0747964,0.027370734,-0.07058954,-0.021977162,0.012897732,0.011179114,-0.02452048,-0.004669096,0.01378067,0.10383878,-0.03778188,0.052340034,-0.009101309,0.07103915,-0.032383427,0.0068078754,-0.037226003,0.05026092,-0.11591348,-0.13446464,0.04148015,-0.092793226,-0.057899058,-0.02099829,-0.040728174,0.049821675,-0.039753914,-0.056172475,0.04220429,-0.018276762,-0.032187074,-0.07306828,0.03393578,0.044910904,-0.06124949,0.07216959,0.014675013,0.04031175,-0.0033335055,-0.018320242,0.034802854,0.12526062,-0.01944138,-0.03238691,-0.035052776,0.05231906,-0.1023824,0.0021977243,-0.015850382,0.034208246,-0.06158162,0.0846864,0.02234354,0.045480832,-0.016424028,0.033085044,0.082755685,-0.060670152,-0.058317877,-0.018862039,0.054392736,0.061322406,0.047540642,0.0404137,0.0110473735,0.059272308,0.046611093,0.034381043,0.040639903,-0.060344376,0.03313006,0.016368149,0.058654275,0.023962023,-0.008075527,0.02459705,-0.0025511356,0.025548143,-0.0157963,-0.09425949,0.01980214,-0.074564405,0.043936927,0.050298482,0.031086147,-0.093037024,-0.019280197,-0.019241307,0.030840253,0.066664726,-0.044787645,0.003960085,-1.6689177e-33,-0.045324262,0.022628393,0.04787208,-0.07240086,0.03752853,0.013528326,-0.031591542,-0.035764363,-0.12552626,0.018733768,-0.012768559,0.009923952,-0.039643805,-0.061665095,0.062478676,0.00045741835,-0.09670221,-0.056542225,-0.084406115,0.0012317158,0.014364493,0.019974193,-0.0021068035,0.033394195,0.021364473,0.07626731,0.058835454,-0.018885164,0.011331233,0.055157132,-0.12141896,-0.0265037,-0.060907237,-0.0028631638,-0.026836157,0.01757004,-0.056935355,-0.05046815,0.0072438265,0.0660033,0.06666885,-0.019526102,-0.03733533,-0.009493021,-0.045903508,0.10706465,0.018899247,0.05012359,0.061169367,0.004239844,-0.09907676,-0.010611071,-0.07330283,-0.0030849644,-0.010930168,0.042858224,0.013018554,0.025740227,-0.053334326,0.04380188,-0.07895518,0.07595167,-0.04069518,-0.06685398,-0.07222626,0.027304687,-0.012623065,0.016926276,-0.031463172,0.05274179,0.023919322,-0.056197934,-0.019431658,-0.012245971,0.10545877,0.014918108,-0.034499545,-0.0067138076,-0.020752404,0.005560999,-0.015706113,0.044114944,-0.024008049,-0.0057053543,0.1288881,-0.01694709,-0.016896373,-0.032568663,0.0117151635,-0.015289984,0.027551735,-0.030733254,0.017204527,0.073104195,-0.020354781,1.4777987e-34,0.083983265,-0.047260188,0.08477398,0.07133748,0.022578143,0.028881745,-0.0011371456,0.019062286,-0.012525851,0.025217814,-0.003506115,0.066095464,0.09749704,0.04394966,-0.006110334,-0.021668583,0.112887226,-0.037372854,-0.014355821,-0.060553316,0.006643723,0.020012906,-0.01924156,-0.033770226,-0.011997301,-0.0030574373,-0.05833435,0.022877764,-0.04157165,-0.027401049,-0.054006603,0.05886837,0.008033962,-0.008336745,0.009691457,0.10463147,-0.0053535695,-0.0056774425,-0.017457027,0.050744507,-0.036424525,-0.05593864,0.023289325,0.051532876,0.048575446,-0.0019680753,0.031281468,-0.03206099,-0.004221927,0.010558976,0.04240278,-0.005400457,-0.025415866,0.03644183,-0.058307897,-0.080156185,0.029564418,0.007740464,-0.011074275,-0.0037492206,-0.008257155,-0.017595092,-0.064101405,0.0005291139,0.008667248,-0.07717326,-0.052506417,-0.028615555,-0.063467175,-0.03852208,-0.08036324,-0.020224873,-0.04016745,0.050386947,-0.09062378,-0.020885237,-0.0042985594,0.018650139,0.041039363,0.017575098,0.04928707,0.059017647,0.06835819,0.03889246,0.03729064,0.10118942,-0.031862613,-0.05042555,0.020370219,0.05686941,0.056130324,0.12209224,-0.020918338,0.07684081,-0.111958824,-2.6992605e-08,0.06712187,0.037397526,0.04735844,0.04294004,0.014562429,-0.011538159,0.0036732506,0.059051454,-0.052296225,0.10514616,0.046643216,-0.044920463,0.015860224,0.05308246,-0.009861786,0.03475869,0.060732022,0.0423374,0.017699108,-0.0017975735,-0.0065974942,0.08851176,-0.0096196,0.02480739,0.034362253,-0.08367313,-0.017805537,-0.028204342,0.086598605,-0.089328565,-0.0960007,0.0021058416,0.050419293,0.0038051528,-7.125323e-05,-0.05957036,-0.055898838,0.07558057,0.04337184,-0.111091845,0.023885787,-0.029578058,-0.08242492,-0.01257187,0.031529035,-0.033386607,-0.014204998,-0.07196073,-0.016914388,0.007700506,-0.04039989,-0.016293246,-0.06624468,0.124817856,0.026006924,0.020505553,-0.0654467,-0.061557285,-0.061615944,0.04218749,-0.007136454,-0.058413982,-0.06044795,0.08372331} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.187284+00 2026-01-30 02:01:09.38639+00 22c747a6-b913-4ae4-82bc-14b4195008b6 620 google ChZDSUhNMG9nS0VJQ0FnSUNILTltRUpBEAE 1 t 623 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muchas gracias a Carmen y Carlos que me atendieron en la oficina y sobretodo a Antonio que desde el primer momento quiso ayudar en todo lo posible aconsejándome y recomendando cosas para hacer, un servicio de 10 gracias Antonio! muchas gracias a carmen y carlos que me atendieron en la oficina y sobretodo a antonio que desde el primer momento quiso ayudar en todo lo posible aconsejándome y recomendando cosas para hacer, un servicio de 10 gracias antonio! 5 2025-01-25 01:27:48.342911+00 es v5.1 A1.01 {} V+ I3 CR-N {Antonio} {"A1.01": "Muchas gracias a Carmen y Carlos que me atendieron en la oficina y sobretodo a Antonio que desde el "} {-0.028138481,0.031460345,-0.0036354295,0.02861092,-0.069432124,0.043129407,0.116130255,0.004227434,-0.00073156547,0.008368488,0.036390215,0.054541785,0.021217426,-0.0032766424,0.05933514,-0.003354303,-0.0006255707,0.078605674,-0.02276483,0.035120845,0.13177893,-0.029828155,-0.07078868,0.117240615,-0.07859259,-0.03096818,0.023800144,0.010146593,-0.08133456,-0.05329173,-0.0013259776,-0.0013133368,0.099863134,0.011662181,-0.035608113,-0.04214076,-0.035463113,-0.058162402,0.0035334313,0.08885145,-0.07473662,-0.015928296,-0.009217248,0.020873059,0.03363206,-0.16903,0.06073814,0.063565664,0.0363358,0.03825769,-0.07581196,-0.001639625,0.0071648224,-0.072948046,-0.027885972,0.0167774,0.0008282997,-0.02551821,0.07955672,0.031823646,0.03119302,0.051802877,-0.06520207,0.03573929,-0.05512032,-0.05712563,0.0012365325,-0.030609366,-0.035075307,0.04903587,0.08490939,-0.06369564,0.06012859,0.011740647,-0.028306792,0.036203835,0.018057425,-0.06463059,-0.116020896,-0.02357223,-0.005204353,-0.015012561,0.0058930903,-0.08600291,-0.02796613,-0.024943229,0.035741713,0.027577676,-0.016770557,-0.041206323,0.0066693835,0.03160133,-0.050723467,-0.04996962,0.0038792691,0.020529464,0.006195739,-0.07055871,-0.05587414,0.03876237,0.10817156,0.04035182,0.0753327,0.08202547,-0.027492963,0.089837335,0.021568112,-0.022230942,-0.05029775,-0.0045958725,-0.03482684,-0.013120526,-0.028311009,0.0055945497,-0.03569636,0.015202415,0.01539487,-0.02639255,-0.012621169,-0.048175666,0.041570894,4.9855375e-05,-0.037847184,-0.021094583,0.02346446,0.03666685,0.07069497,9.304121e-33,-0.087578624,-0.037852794,0.014876827,0.08152465,0.0067651304,-0.031107664,-0.07783834,-0.01722994,-0.03361984,0.0054138303,-0.017981611,0.060287002,0.034799214,-0.027732339,0.036050558,0.0910983,-0.033864893,0.0046358844,0.084148765,0.05084094,-0.054724865,-0.0023040005,0.016873559,-0.0037269716,-0.005003514,0.109960996,0.0056964373,-0.06740328,-0.013106052,0.041596938,-0.031012284,0.05680336,-0.0024830627,-0.047187652,-0.0077410783,-0.045514174,0.048165254,0.031900585,-0.010831404,-0.05167318,-0.0058845086,0.040400945,-0.019239517,0.045609545,-0.034967646,-0.027135339,0.039140068,0.074456766,0.09717439,-0.010534294,-0.027252035,-0.079630435,-0.03608218,-0.003906945,0.007917779,0.031337783,-0.06416327,0.050141107,0.04714121,-0.03800015,0.13820034,-0.06387673,0.03233918,0.006296029,-0.03755277,-0.04398879,0.062213298,0.05469342,0.12678562,0.06587647,-0.094331026,0.035068136,0.004395407,-0.012766586,0.0007971376,0.05207694,0.031906433,-0.013180807,0.01640974,0.05965144,-0.0503275,-0.0158633,0.04579449,0.036033694,0.07276241,0.072585896,-0.013711809,0.009082118,-0.061412472,0.12849055,0.018398562,0.11384947,0.03091238,-0.06189425,0.06350935,-1.12940395e-32,-0.01476941,0.012630212,-0.0007563462,-0.0006780138,0.030056538,-0.06233115,-0.026885925,-0.041396644,-0.028070869,-0.087731086,-0.054789387,-0.09723745,0.08089608,-0.14386877,-0.021164289,0.04738674,-0.008216768,-0.0697162,-0.09089996,0.005604869,-0.010412237,0.06372272,0.06317245,-0.14070708,-0.015200961,-0.068703376,-0.036286738,0.049988113,-0.053929545,-0.025250562,0.036562357,-0.028852277,-0.00034622176,-0.026558751,-0.08916937,0.07863358,-0.00078957435,0.017959282,0.043346167,0.08262485,-0.005324213,0.032585464,0.03689793,-0.0039652805,0.01096557,0.050410647,0.028660862,-0.112213485,-0.013808116,-0.054517567,0.0397906,-0.07871434,-0.1020179,0.0040991176,0.04915395,-0.018309176,0.027087295,-0.05250332,-0.038442887,0.036305822,-0.010763332,0.06094041,-0.004293958,-0.030255295,0.028151572,-0.010005957,-0.051394083,0.017369129,-0.00020796193,0.014639968,0.08690251,-0.0013485295,-0.08615817,0.11975,-0.04356304,0.0089305,-0.08480564,-0.0065654833,-0.03784428,-0.02471174,-0.030012414,0.0221131,-0.07910467,-0.039431352,0.0019660874,0.013299172,-0.0022930081,0.0069434284,0.04769157,0.043349102,0.018436017,0.0063548787,-0.022103498,-0.12092159,-0.075736456,-4.1884228e-08,-0.03858311,-0.052128363,-0.0008363997,-0.060445234,0.020814281,0.044114254,-0.032591756,0.025792483,0.023918916,0.020193418,0.054883923,-0.005295694,-0.012801005,0.019534573,-0.012005585,-0.011005591,0.10267409,0.017414067,-0.031741556,-0.079851605,0.033673238,-0.010385734,-0.040834278,-0.012635206,0.0053077065,0.012106216,-0.117933735,-0.026728792,-0.015353239,-0.04917831,0.050678637,-0.032260872,-0.057907954,-0.10097061,-0.0020358553,0.01040997,0.010637102,0.0027542566,0.014210812,-0.094877295,0.045082185,-0.040929977,-0.10871658,0.041983366,-0.056054194,-0.061785936,-0.027759146,-0.026924819,-0.015949018,0.04683713,-0.065370634,-0.07529019,0.0067749526,-0.0008268397,0.03426737,-0.044723015,0.04070756,-0.014267802,-0.0016724227,0.00049877085,0.04271069,0.0628493,-0.0652093,-0.068450384} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:08.985616+00 2026-01-25 01:27:52.083032+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 622 google Ci9DQUlRQUNvZENodHljRjlvT2pCMFpGUkhjbEpPZUhnelpuTnhSekJuTFdNemVuYxAB 1 t 625 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Personale gentilissimo, servizio impeccabile! personale gentilissimo, servizio impeccabile! 5 2025-08-28 01:27:48.342928+00 it v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Personale gentilissimo, servizio impeccabile!"} {-0.05149455,0.119244106,-0.0200992,-0.010624106,-0.10974974,0.011200016,0.15542823,0.14678024,0.024453029,-0.016907858,0.04835424,-0.0039060256,-0.009057816,0.0477616,-0.067381196,-0.079711184,-0.07059508,0.09711015,-0.01970338,0.083922915,0.0570054,-0.03554539,0.007338357,0.012676576,-0.041133445,0.058720022,-0.00952995,0.037754647,0.0006226628,0.015106995,0.03167648,0.078270055,0.0741866,-0.062120117,0.074763134,0.009428527,0.0019966068,-0.008600565,0.08642541,0.024749508,-0.07229438,-0.07581373,-0.05432024,-0.0010141877,0.036090497,0.0019959095,0.0045041963,0.042969555,-0.023142396,0.055344086,-0.19623192,-0.041252743,0.0772345,0.00020060444,-0.018868268,-0.07255942,0.04198434,-0.030229673,-0.019534886,-0.04650548,0.036374502,-0.03145623,-0.082299486,0.025856953,0.023506261,0.026409166,0.023534492,-0.053483557,-0.019842621,0.021482527,0.05125586,-0.07168124,-0.018020688,0.097657286,-0.022617549,0.031462304,-0.010934725,-0.023329869,-0.005980738,-0.08748168,0.042757917,-0.019755669,-0.05051528,0.0063885422,0.0065630763,0.0173284,0.048629254,0.0007417106,0.076929346,0.00016259037,-0.1011294,-0.018471606,0.0016584174,-0.055930518,-0.010186512,0.005310255,-0.08076741,-0.04695681,-0.055697333,0.04373952,0.020212684,0.034710284,0.022369118,0.12673166,-0.08754229,0.043901518,0.022993091,-0.033437964,-0.055606965,0.041202426,-0.09197925,-0.083880775,-0.031255115,-0.009595898,0.03590779,0.09733335,0.06665886,-0.027232409,0.089816,0.011372959,0.005885774,-0.033971462,-0.017603189,-0.020751199,0.027381927,0.00024074208,0.014370869,2.8026151e-33,-0.08648512,0.0022105444,-0.012742985,0.09162417,-0.031380434,0.0076213144,-0.07567342,-0.037126675,-0.008789543,-0.03863607,-0.048440058,0.012264106,0.0038316876,0.059259553,0.010934139,0.07743203,0.028062735,-0.009936744,0.049182754,0.06193489,-0.006005598,0.034065064,0.031626943,-0.0014556493,0.019616485,0.014270254,0.0032355178,0.003469366,-0.029409494,0.019227011,0.08119913,0.024716405,-0.014026599,-0.052629754,-0.0013233653,0.028559593,-0.043793302,-0.023988519,0.019584134,0.03156769,-0.038126424,0.03293856,0.016552502,0.011885564,-0.015089454,0.0038167532,0.009593315,0.043314602,0.0036268425,0.017905481,-0.018784562,0.01484464,-0.08393759,-0.012589626,-0.016871588,0.047510434,-0.06962226,0.025364565,-0.047825713,-0.069746494,0.055261694,-0.022800013,-0.004109681,-0.006601074,0.020753784,-0.08117135,3.530042e-05,0.04197837,0.07623768,0.03305832,-0.06257741,-0.052322406,0.00975209,0.036473338,-0.081019506,0.027665373,-0.014773492,0.028331706,-0.024798347,0.0029648151,-0.016075993,0.029608192,0.00050600903,-0.057566166,0.075179845,0.09555638,0.023948345,-0.007905947,-0.023345554,0.073945135,0.035632737,-0.022229368,0.044982493,0.02017653,-0.026169607,-4.389932e-33,0.03163319,-0.01570504,-0.020308029,-0.0080928495,0.010627868,-0.04908568,-0.103259034,0.010653543,-0.052375317,0.041251853,-0.03928349,-0.09569185,0.12764555,-0.00041539603,-0.12535761,0.0761139,0.017053658,-0.06061427,-0.015134966,-0.06711508,-0.027998589,0.08856563,-0.013707778,0.024048742,-0.073630184,-0.02078656,0.02829406,0.052562904,-0.027704205,-0.012501389,-0.01809745,0.0059245103,-0.061619826,-0.08342514,0.06614448,0.07118351,0.062427904,0.008110708,0.038858127,0.04909278,-0.08449935,0.06875425,0.021611638,0.056693524,-0.0018146222,0.013630799,-0.0468814,-0.09743581,-0.026290016,-0.07342916,0.0046762736,0.03334595,0.0040444857,-0.06346112,0.013208936,-0.009151418,0.079586506,-0.038071632,-0.09950053,0.018774873,0.07996054,0.0029534805,-0.010280702,0.032978803,0.042819377,-0.059662014,-0.11458266,0.048614405,0.027368885,0.102810055,0.03881602,-0.092669286,-0.06917001,0.014367274,-0.062582575,0.018066015,-0.035169713,0.021030897,0.05460126,-0.009125831,-0.037967596,-0.04117565,-0.08109828,0.008388834,-0.05183939,-0.08026664,-0.0024224294,0.011631508,-0.027687997,-0.03883255,0.030941589,0.027970774,-0.07340785,-0.07164866,-0.028670698,-2.4266354e-08,0.06993028,-0.04301789,-0.006628371,0.05142052,0.007304917,-0.10369282,-0.07768966,-0.04291534,0.012422032,0.03047174,-0.108201,-0.019039286,-0.00037713672,0.05023486,-0.0034956303,0.039739728,0.052969225,0.059522536,-0.040270515,-0.04001542,0.070417866,-0.044235278,-0.064991936,-0.013727453,0.0109854415,0.029299634,0.040821474,-0.027774312,-0.07412031,0.0035256587,0.00275554,0.019182138,0.017326267,-0.08150365,-0.0791532,0.04354481,-0.0074825003,0.0052248463,-0.0067912773,-0.090934545,0.09659117,-0.00042531366,0.058783352,0.038059037,-0.023422921,-0.0012093404,0.05914181,-0.005057766,-0.035425816,0.012018394,-0.046826564,-0.024562377,0.07705914,0.041296147,0.050177593,0.04899447,0.081498064,0.1007876,-0.01771528,0.037354533,0.06558643,0.06592633,-0.013857972,-0.06344873} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:06.530681+00 2026-01-25 01:27:52.09045+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 624 google Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB 1 t 627 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super rápidos!!! Atententos y coches super nuevos!! super rápidos!!! atententos y coches super nuevos!! 5 2025-10-27 01:27:48.34295+00 es v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "Super rápidos!!! Atententos y coches super nuevos!!"} {-0.038199026,-0.02485781,-0.031711552,-0.03410733,0.014638002,-0.01692106,0.036598295,-0.0007102803,-0.02807293,-0.0076135094,0.08383887,-0.028640889,-0.054139953,0.0009301512,0.019803397,-0.07264588,0.0176949,0.0007636508,0.040051263,0.010877218,0.08617633,-0.07538057,-0.09135646,0.12862334,-0.05316292,-0.02399421,0.0033186644,0.03686136,0.03000781,-0.11817179,-0.045280583,0.1188543,-0.02811187,0.018438378,-0.025240406,-0.0037849979,0.124955975,-0.08605747,-0.0037398976,0.030887105,-0.1325054,0.00957986,0.006669272,-0.022338992,0.04901575,-0.020610897,-0.05856738,0.04488117,0.07483095,-0.043904968,-0.011999,-0.049296398,0.005740346,-0.0009002585,-0.025162194,0.039375514,-0.007465318,-0.063350745,0.01557324,0.010695374,0.012614021,0.031496163,0.017185267,0.03018696,-0.020820573,0.038414158,-0.015847208,0.060656216,-0.05110072,0.07911166,0.069607295,0.030572217,0.01634591,0.05935478,-0.025103638,0.0032206792,-0.022129063,-0.022302562,-0.097372115,-0.02908031,0.06289609,-0.06498123,-0.00259446,-0.05792704,0.034226526,0.0052427435,-0.10009113,0.0030803767,0.053835016,-0.059587874,0.00015679546,0.03145032,-0.049380936,0.038168587,-0.038980164,0.036167447,0.019478096,-0.048760317,-0.03543366,0.007883939,0.075931154,0.049133476,0.049938496,-0.016223062,0.031460382,0.048106365,0.03007226,0.030581417,0.06801184,0.04256532,-0.03271839,-0.011200322,-0.019399788,-0.029445417,-0.1391738,-0.020118417,-0.034103688,-0.057397965,-0.057079304,-0.07908368,0.05494081,0.07312345,-0.104711354,-0.026667506,0.040786076,0.032717448,0.00022273215,4.732055e-35,-0.03768266,0.053733975,-0.036475547,0.0070302957,-0.044619,0.0007932602,-0.003673197,-0.04835947,-0.0848065,-0.009472149,-0.10822706,-0.027556317,0.0011517502,0.021168761,0.05437348,0.02729544,0.0069463197,-0.061241545,0.038083825,0.030414673,-0.062541634,0.049466513,-0.004621987,0.020672033,-0.053312726,0.08382142,-0.010119948,-0.062321298,-0.02172401,0.054672606,-0.044402592,0.015011935,-0.02403264,0.045715395,-0.0071528736,-0.04437758,0.028668346,-0.0594446,-0.0021190504,0.043685917,0.054897387,0.023170335,-0.06330563,0.017973538,-0.027834238,0.025437128,0.0049047987,0.07623007,0.113909915,-0.039826084,-0.089614846,-0.016114114,-0.14281759,0.0073486264,0.031608637,0.03588536,-0.053370252,0.08263431,0.048235055,-0.008573706,-0.026221035,-0.016199972,0.026261963,0.048339423,-0.000448717,-0.016248744,-0.0027557532,0.039689355,0.09273664,0.07744938,-0.031742394,-0.043099653,0.021819975,0.03826712,0.020624727,0.012451648,0.037026845,0.034940545,0.06875795,0.071211144,-0.05396961,0.030112922,-0.013332629,0.05177356,0.09389379,0.10099628,0.059370425,-0.0044126264,-0.009384914,0.05438376,-0.04347908,0.04552071,0.066976026,-0.07687169,-0.016939227,-1.0596796e-33,0.07342871,-0.03964313,0.013515794,0.017153645,-0.01818988,0.004087762,-0.07869071,-0.0014652527,-0.030504765,-0.036179066,-0.028315395,-0.057454873,0.06222639,-0.05297191,-0.04749474,0.023182776,0.08345843,-0.028746981,-0.008613891,0.020929137,0.02687291,0.0021298972,-0.0172359,0.08102496,-0.046463422,-0.02042795,-0.021289494,0.04577276,-0.117111675,-0.006366586,0.005727647,-0.057496198,-0.025653815,0.042404097,0.017991625,0.062578045,-0.033771053,0.030266805,0.026532026,0.027043093,-0.064240195,0.0906107,0.0061069545,0.019196374,-0.034517433,0.07523513,-0.06581548,-0.046956353,-0.08786827,-0.030067477,0.028590977,-0.040023703,-0.032525156,-0.005089683,0.019441629,-0.08431333,-0.0664181,-0.059774127,-0.06291752,-0.026751429,0.013912872,-0.0011530832,-0.07896253,0.034413677,0.115361,0.007928871,-0.012844275,-0.056633875,0.043012984,0.013170456,0.121119246,0.047598418,-0.13565871,0.060605794,-0.07380258,-0.067161605,-0.060113575,0.004954937,0.040269535,0.0055999304,-0.04194052,0.041341893,0.044899937,-0.0022471729,-0.020843135,0.08800254,-0.039834242,0.045167193,0.08108427,-0.03283804,0.03810453,0.086666055,-0.0799747,-0.03298835,-0.005757607,-2.0600837e-08,0.016558744,0.009834046,-0.0059386357,0.039512467,0.02786543,-0.08239438,-0.086194,0.022812141,-0.016543183,0.017847082,0.008220746,-0.046120178,0.039481744,0.029686999,0.011675239,0.02485044,0.08036645,0.118174784,-0.02250435,-0.038388688,0.016285738,0.09732091,-0.0012826518,-0.096313365,-0.008446896,0.0496986,0.024413945,-0.036317047,0.053283688,-0.017513914,-0.03179683,-0.050131988,-0.0611629,-0.008734116,0.004877783,-0.021091934,-0.015388817,0.054318067,0.04035243,-0.10554712,0.03728641,0.0033104396,-0.056095928,0.012650352,-0.09871377,-0.14361574,0.02127174,-0.016653122,0.003316182,-0.04281781,-0.051377345,-0.03723419,0.07127882,0.082629845,0.043400396,-0.007790858,0.028854081,-0.010850515,-0.067704126,0.061488762,0.11854805,0.0373573,0.014026389,0.009411044} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:07.87356+00 2026-01-25 01:27:52.098828+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 627 google ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB 1 t 630 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto, coche nuevo\nCarmen esta muy amable todo perfecto, coche nuevo carmen esta muy amable 5 2025-01-25 01:27:48.342969+00 es v5.1 O1.01 {} V+ I3 CR-N {Carmen} {"A1.01": "Carmen esta muy amable", "O1.01": "Todo perfecto, coche nuevo"} {-0.0333621,-0.02044682,0.043110188,0.027697776,-0.0071276785,0.012864568,0.09733953,0.04253452,-0.06474165,0.01653648,-0.026190732,-0.011558009,-0.02362246,-0.024921669,-0.028190797,0.005605335,0.04426302,0.037814736,0.01227015,0.023113687,0.09580569,-0.043575197,-0.07761189,0.11249319,-0.09773753,-0.0107827,0.0030601977,0.006928009,-0.05380992,-0.03231947,-0.028646408,0.09445634,0.0506474,-0.00072544615,0.011436861,-0.08265077,0.06561696,-0.16354433,0.045274343,0.062013254,-0.13665508,0.0007863979,-0.0778519,-0.002384903,0.047726464,-0.100177445,0.031595927,0.100118145,0.053149074,-0.02909821,-0.046912435,-0.034654655,-0.047487706,-0.021316778,-0.0048925313,0.07236321,-0.03790097,-0.076934904,0.06817428,0.020154286,0.08193211,0.060702465,0.012973229,0.057296615,-0.0034148674,-0.049693625,0.042646397,0.030795772,-0.034038186,0.040978093,0.06378009,-0.019797716,-0.0010518978,0.010583655,-0.00336763,-0.003761216,0.0037772767,0.007886551,-0.09768192,0.020065716,-0.08601168,-0.072003305,0.064275235,-0.11615616,0.04764823,0.037406325,-0.025058184,-0.030401034,0.032435108,-0.041154943,-0.09689331,0.06058223,-0.086424515,0.03745978,0.030483268,-0.016303947,0.056024402,-0.04007921,0.04788089,0.075900346,0.051943325,0.054171085,0.042961672,0.010641087,-0.00064098433,0.07083234,0.08432049,-0.0054799817,-0.031259626,0.04907827,-0.037438888,-0.018847222,0.009388419,0.009590277,-0.0075884825,0.014483069,0.010897588,-0.064372756,0.0038983824,-0.009947985,0.07316487,0.036144663,-0.0299153,-0.02459092,-0.022398692,-0.021012,0.11470121,2.1445186e-33,-0.030717036,0.014598435,0.03179956,0.037979204,-0.000106216205,0.063029915,-0.07554425,-0.042424962,-0.014987391,0.027606094,-0.04475578,0.0049445224,-0.0046635983,0.043299485,0.022814147,0.022757072,0.048117228,-0.015405377,0.010977866,0.06580567,-0.050293017,-0.021678522,0.024484958,0.024559665,-0.055157572,0.09536812,-0.0089002075,-0.03494358,-0.012228662,0.026843172,-0.043938246,0.008863882,0.015705314,0.031966362,-0.07025345,-0.08074861,0.015535627,0.028961323,0.00709153,0.038311504,0.07930949,0.06678068,-0.01756374,-0.029272547,0.0062293084,0.06552296,0.063903406,0.07505255,0.102558345,0.025509188,-0.11008908,-0.044311427,-0.1487864,0.015167949,-0.020866536,0.0043082125,-0.04258572,0.01707935,0.027208166,-0.092060484,0.08479823,-0.033340823,0.0037923222,-0.036018956,-0.033179883,-0.011297043,0.04580675,0.04067181,0.13296601,0.040850278,-0.105221376,-0.05380885,-0.0054850583,0.074589215,0.025089614,-0.025536552,0.039156526,0.019955328,0.029886076,0.07700577,-0.040910836,0.03482973,0.03748832,-0.0068119066,0.0591963,0.064300425,0.049129747,-0.0054811626,-0.03190763,0.10293341,-0.009533605,0.07965488,0.044502214,-0.089488134,0.06102768,-2.979819e-33,0.0608128,-0.043064456,-0.010252689,0.08688462,-0.008337335,0.030000934,-0.122762956,-0.030513652,0.03986235,-0.08136384,-0.039598316,-0.14052217,0.11001372,-0.038941473,-0.016232125,0.08054571,0.0497621,-0.061936397,-0.105317794,0.03688132,0.007611054,-0.0055639134,0.0043025357,-0.060206246,-0.0070493584,-0.030561708,-0.046306793,-0.01052513,-0.019527694,0.0017491238,0.009371166,-0.054658864,-0.044138804,0.0084939385,-0.0052152392,0.0813755,-0.014534765,0.06579719,0.018620502,0.063506074,-0.006361615,0.01414731,0.012390049,0.05288555,0.009762793,0.03317627,-0.03152525,-0.09662537,-0.036113083,-0.011400197,0.04031186,-0.08645986,-0.04031894,-0.051926244,0.09359773,-0.035664488,-0.039018843,-0.06923154,-0.040788632,-0.0066362205,0.052324876,0.060434982,-0.056904852,-0.020863779,0.06738065,-0.028491618,-0.0032660458,-0.038067076,-0.0020200682,0.06956614,0.03737391,0.017667944,-0.09132439,0.03990454,-0.026354598,-0.04644981,-0.08958342,0.0034031759,-0.0285632,-0.020952664,-0.028805582,-0.026833426,-0.040225822,-0.038959645,0.028600758,0.02821511,-0.05189051,-0.024128485,0.01819957,0.022615539,0.014033633,0.040407095,-0.052869156,-0.06810459,-0.044034436,-2.0097913e-08,0.06918462,-0.03780217,-0.11194542,-0.022085723,0.012755526,-0.09390193,-0.027276615,-0.028962377,-0.008624999,0.034643143,0.0050253873,-0.008519923,0.03559256,0.044544883,-0.016719164,0.016301267,0.04217602,0.06695681,-0.014335321,-0.06682105,0.044228423,-0.0067776875,-0.03624597,-0.07914461,0.0004209647,0.060893264,-0.0131032225,0.0060907137,-0.01805684,-0.01948853,0.02794842,0.014915618,-0.027090667,-0.075777605,-0.043917608,-0.009293728,0.015007015,0.022547582,-0.062251538,-0.09494246,0.092849374,0.03801434,-0.0037054648,-0.022700835,-0.04005564,-0.09144618,0.027409067,-0.05667078,0.03304924,-0.0069694594,-0.050907295,-0.02433643,0.049201068,0.055095613,0.000697986,0.066448346,0.050186597,0.026639136,-0.01073966,0.0038873218,0.065979235,0.023091754,-0.025564242,-0.061367422} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:00.473875+00 2026-01-25 01:27:52.103804+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 628 google ChdDSUhNMG9nS0VJQ0FnSUNINFlmSjJ3RRAB 1 t 631 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un servicio excelente por parte de Antonio que nos guió y recomendó sobre que hacer y tambien a Carmen y Nestor un servicio excelente por parte de antonio que nos guió y recomendó sobre que hacer y tambien a carmen y nestor 5 2025-01-25 01:27:48.342971+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Un servicio excelente por parte de Antonio que nos guió y recomendó sobre que hacer y tambien a Carm"} {-0.027615303,0.01402113,0.011483955,-0.0015020898,-0.120528325,0.0129870465,0.064944886,-0.015965974,0.0071191345,-0.012213424,0.0045835976,0.06454489,-0.008687185,-0.0032047709,0.08046469,-0.03472274,0.037469417,0.033793435,0.021151222,0.044990502,0.11433892,-0.06632087,-0.078558475,0.106641576,-0.09599856,-0.03565375,0.0077787377,0.021553988,-0.0353422,-0.024610702,0.023874387,0.01973969,0.06384235,-0.01608317,-0.0146427695,0.005790683,0.054526296,-0.101455346,-0.030469658,0.06746721,-0.10244201,-0.011108656,-0.03308993,0.036634564,0.055636004,-0.13520175,0.04163953,0.04615924,0.053812407,-0.034411173,-0.06976166,-0.017125258,0.00088016875,-0.051378112,0.020947061,0.052868452,-0.022829162,-0.02986642,0.05107706,0.01643607,0.0096869115,0.060202364,-0.052857403,0.037427567,-0.00624923,-0.06314807,0.008420068,0.017097697,-0.0048932238,0.0033543087,0.07921685,-0.07879302,0.034171376,0.032262668,-0.07939419,0.021000447,0.028319938,-0.02840506,-0.08231205,-0.06539486,-0.008832911,-0.0015294725,0.031443994,-0.02221099,0.0025725013,-0.009520409,0.010818144,-0.007426408,0.025972199,-0.003263269,0.041381598,0.02613626,-0.05451208,-0.06012527,-0.008368734,-0.032821286,0.03483528,-0.024746504,-0.0527473,0.07627198,0.10176991,0.030078247,0.11250193,0.060751874,-0.0067661377,0.10224276,-0.011870342,-0.024657646,-0.024326183,0.07104302,-0.07331311,-0.015730482,-0.11414329,0.02158949,-0.0357113,0.033635434,0.035223205,-0.03858503,-0.037297536,-0.028455565,0.047338348,0.04374788,-0.032682396,0.017895527,0.007773787,-0.016906211,0.10638686,3.6990956e-33,-0.08411792,-0.038304456,0.044908598,0.07550643,-0.027030699,0.042088367,-0.071731985,0.004263201,-0.029942993,0.08358594,-0.028884545,0.08246585,0.055052403,-0.013883887,0.06379074,0.030957956,-0.0336279,0.04113657,0.049906548,-0.01696271,-0.08028027,-0.0072084856,0.029834889,-0.0039233635,-0.0060162037,0.060675118,0.014448032,-0.09419611,-0.004836119,0.05686949,-0.023552278,0.022549255,-0.014767916,-0.05750588,-0.022559294,-0.038848147,0.021207577,-0.001655082,-0.02513492,-0.024494914,-0.020478118,0.026268005,0.0067090457,0.037582565,-0.03982527,0.007149387,0.09674876,0.041585647,0.098278336,-0.00013751576,-0.038691122,-0.088681415,-0.09341194,-0.042059723,-0.04863044,0.028833533,-0.05383395,0.06543754,0.018976396,-0.09394286,0.094817325,-0.09989651,0.01855281,-0.014299716,-0.04923269,0.0035100167,0.049005035,0.052868012,0.122992605,0.07027107,-0.09627224,0.0124604665,0.038329393,0.057336614,-0.005933855,0.03388768,0.018713253,-0.011495955,-0.046687216,0.05640126,-0.08205717,0.006341927,0.056180205,0.03980908,0.07735606,0.091688365,0.07774067,0.041413553,-0.05920513,0.13509525,-0.012004646,0.11685578,0.027333297,-0.015496541,0.080200866,-6.843626e-33,-0.04849699,-0.01487265,0.027136559,-0.038976755,0.02850489,-0.030029846,-0.035265673,0.0053453343,-0.04836238,-0.0885879,-0.054045565,-0.114461884,0.121448755,-0.082793996,-0.06475952,0.0631576,-0.08434961,-0.07340807,-0.072886355,0.02921832,-0.01936762,0.07227076,0.047489498,-0.053955313,-4.7809062e-05,-0.05488168,-0.011654173,0.02786742,-0.033799227,-0.05774943,0.0769612,-0.030679645,-0.035886392,-0.01635523,-0.057269704,0.13372158,-0.019793326,0.04570362,0.047406595,0.112803966,0.025588712,0.021843057,-0.010472746,0.0182832,-0.026085598,0.043194603,0.0081494115,-0.12669927,-0.0041329535,-0.0657555,0.016908886,-0.0361527,-0.095247544,0.008252757,0.033049934,-0.031795084,-0.08480257,-0.08307603,-0.07250072,0.019298539,0.04811402,0.05810336,-0.015698016,-0.005813842,0.059882578,-0.061772145,-0.061625507,-0.00053288863,-0.024355145,0.032039177,0.091696836,0.007061959,-0.049865816,0.09434972,0.0017474425,-0.013676866,-0.049164705,-0.06481439,-0.043982208,-0.022579871,0.0041900882,-0.003975474,-0.031844128,-0.032064103,-0.02746663,0.00021162392,0.07541509,0.021514693,0.0028861929,0.026493667,0.007079998,0.004777341,-0.06674371,-0.06505639,-0.07811382,-2.7964031e-08,0.0072758584,-0.022334555,0.012436669,-0.013607224,-0.019639978,-0.029823268,-0.02462311,0.015111226,0.0051094266,0.03548554,0.010616945,0.0054759667,-0.045230623,0.00979404,-0.050371774,0.024594411,0.048788473,0.02112048,-0.021723736,-0.073722124,0.06068366,-0.035896428,-0.03049573,-0.045075055,0.012291717,0.058359463,-0.0939133,0.008555055,0.002268715,-0.040715527,0.03909631,-0.051968813,-0.05952731,-0.0748491,-0.026175285,0.013413924,-0.042442407,-0.014965739,0.004375344,-0.08072345,0.08381099,-0.024939872,-0.06986409,0.040418267,-0.0044124206,-0.011216906,-0.016762502,0.00023225244,-0.011824821,0.041298173,-0.04899826,-0.064880036,0.06751941,-0.02099632,0.037238218,-0.034841888,0.029328091,0.014900827,0.0008075129,0.010024187,-0.018053956,-0.004091391,-0.01212469,-0.0817187} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:54.177419+00 2026-01-25 01:27:52.106797+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 630 google ChdDSUhNMG9nS0VJQ0FnSUQ3M0tPejZRRRAB 1 t 633 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto, trato de 10 y super fiable. Totalmente recomendable. todo perfecto, trato de 10 y super fiable. totalmente recomendable. 5 2025-01-25 01:27:48.342975+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Todo perfecto, trato de 10 y super fiable. Totalmente recomendable."} {-0.047345858,-0.004385164,0.022507126,-0.0023509306,-0.018450426,0.048835054,0.04422716,0.12599386,-0.13363571,0.0047120475,0.05309033,0.07010029,-0.10657005,0.046985026,-0.021180041,-0.06329347,0.06679149,0.044580553,0.005616791,-0.052014194,0.105566666,-0.08982644,-0.01416696,0.09068953,-0.045659706,-0.014736936,-0.04293187,0.033125024,-0.0735907,-0.047797076,0.00590633,0.110612266,-0.030608004,0.01416405,0.03503601,-0.06630506,0.06152073,-0.03667293,-0.0070902486,0.03435393,-0.08008432,-0.034677107,0.00859141,-0.0879128,0.048456002,-0.058081288,0.01865986,0.0839712,0.035738695,0.0013689753,-0.08530457,-0.023619387,0.004705823,-0.00035955428,0.015223466,0.04846189,0.022269411,-0.05193366,0.032267895,-0.05112809,-0.006353967,0.023973994,-0.104213335,0.04984214,0.013589177,0.01775078,-0.034053564,-0.022534428,-0.056685764,0.13342173,0.12340332,-0.09077304,0.026880605,-0.0022606906,-0.040207773,0.06527414,-0.04213397,-0.033211872,-0.09598663,-0.013640579,-0.0062668533,-0.0294308,0.065927595,-0.10452615,-0.021427233,-0.034272168,0.04675418,0.035608467,-0.014000584,-0.024616946,-0.02642731,0.123621464,-0.04541068,-0.037892483,-0.004313664,0.042533312,0.029660316,-0.0055197915,0.0045997854,0.019233452,0.054547448,0.037836004,0.049788684,0.019691216,0.030919122,0.028319342,0.08602146,0.013422866,0.0034974974,-0.01766472,-0.05212067,-0.0343947,-0.027646359,-0.053834584,-0.019177154,-0.04768837,-0.014940653,-0.03258232,-0.0206417,-0.028262243,0.07231164,0.04151013,0.023421222,0.014699378,0.012047591,-0.003301505,0.08762106,9.2086905e-34,-0.008033409,0.004035727,-0.046001907,0.035970956,0.04564622,0.010586511,-0.08573414,0.02840752,-0.06402547,0.02977922,-0.016658297,-0.01637774,-0.046487264,-0.024702515,0.070761636,-0.0060190326,-0.03472841,0.053309157,0.010663737,-0.036305133,-0.045443803,-0.055042583,0.03123119,0.008155138,-0.011787425,0.057148084,-0.053609457,0.021419058,0.034323253,0.0486397,-0.00028735475,0.05255368,-0.048871834,0.035556626,-0.06468733,-0.063801706,0.010625242,-0.007333798,-0.0026083386,0.0018402259,-0.002208643,-0.015677951,-0.021253817,0.015578682,0.0748895,0.01253728,0.08045715,0.059501443,0.071218155,-0.026463315,-0.08073542,-0.047342848,-0.06788718,-0.014788001,-0.000999192,0.027814932,0.03211961,0.06744848,0.010541662,-0.0058543934,0.0834132,-0.036687657,-0.05384719,-0.059213884,-0.080223426,0.027701724,0.09352673,0.035641767,0.11086764,0.0023619758,-0.07711333,-0.058220774,0.08744608,0.039212275,0.08436632,0.0018445114,0.074560925,-0.07449375,-0.005477807,0.015155495,-0.055378076,0.0041116807,-0.008729688,0.016728308,0.076953635,0.080229826,-0.01286739,-0.009044729,-0.042842727,0.02442456,-0.0021024114,0.0038204244,0.056218106,-0.0336204,0.04337834,-2.0765251e-33,-0.013403339,-0.034473386,-0.03749532,0.115223385,-0.052793227,0.015213572,-0.11478395,-0.017855,0.10716158,-0.04084495,-0.052466545,-0.107857026,0.10093727,-0.08604362,-0.09267783,0.019373765,-0.013253193,-0.10831858,-0.0512109,-0.027786542,0.057801303,0.08240553,0.03309187,-0.078335166,-0.00560712,-0.0077767153,-0.010585956,0.06343506,0.024005761,0.06392956,0.0047442736,-0.005773583,-0.07051307,0.02532404,-0.017526314,0.03800907,0.027893707,0.01676421,-0.037266012,0.05720279,-0.05339986,0.000907851,-0.0652885,-0.011166123,0.025208766,0.0013040175,-0.048925303,-0.05304453,-0.01224226,-0.018265182,0.11506739,-0.02516856,-0.030943263,0.0034865157,-0.019519556,0.010531737,-0.0016968811,-0.056844268,-0.06647894,-0.029383495,0.022594405,0.05531272,0.007946962,0.024054931,0.048258755,0.0096711395,-0.046932135,0.036476202,-0.0119755,0.039877124,-0.012331821,-0.050151505,-0.06151473,0.072684474,-0.018474478,-0.022758491,-0.021752233,0.026037838,0.054698955,0.06001468,0.0020297987,0.014324409,-0.06246881,0.0013525584,0.054565135,-0.06984507,-0.07599747,-0.061694585,0.020355152,0.043714125,0.09599992,0.045134373,3.557634e-05,0.00541993,-0.041516583,-2.0527002e-08,0.057135914,-0.036627173,-0.056221794,0.010816925,0.1138748,-0.15411563,-0.03401877,0.010304046,0.03991317,0.059158254,-0.0011251917,-0.062850475,-0.047483634,0.093592785,-0.040351022,-0.032073006,0.05765526,0.06659119,-0.038034275,-0.039177023,0.015384677,0.020436123,-0.035814315,-0.08981364,-0.05659335,0.037169416,0.018145723,-0.018403465,-0.0394061,0.008914106,-0.025143404,0.00560148,-0.008983938,-0.06116122,-0.033055488,0.08154037,0.019419516,-0.0042247195,-0.02684275,-0.026752133,0.09034415,-0.021204405,-0.045766518,0.019186752,0.0047648633,-0.11459075,-0.037059948,0.013318997,0.01355171,0.047197085,-0.045525875,0.025383782,0.039068047,0.0030084844,0.04108122,0.03440208,0.066656895,-0.027261088,-0.057971075,0.105746485,0.077671185,0.09728006,0.00039563497,-0.016673008} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:49.227274+00 2026-01-25 01:27:52.119857+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 632 google ChZDSUhNMG9nS0VJQ0FnTUNJMXZ6aUZ3EAE 1 t 635 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Kevin estaba muy amigable y nos ayudaba mucho, gracias! kevin estaba muy amigable y nos ayudaba mucho, gracias! 5 2025-04-30 01:27:48.342979+00 es v5.1 A1.01 {} V+ I2 CR-N {Kevin} {"A1.01": "Kevin estaba muy amigable y nos ayudaba mucho, gracias!"} {-0.0026125778,0.012432491,0.015441868,-0.08462063,-0.077670276,0.006793249,0.044461105,0.012087738,0.032194465,0.041131206,0.0065396586,0.014096911,-0.040474776,-0.06897177,0.013804535,0.032158136,-0.005906066,0.037933215,-0.0134232985,-0.05345817,0.038395885,-0.11040479,-0.011238832,0.027557489,-0.042938575,-0.014649991,0.037409008,0.05053697,-0.054853875,-0.059554312,0.012633962,0.09296262,0.013404604,-0.019082641,-0.0013894921,0.057267915,0.00537349,0.001705627,-0.012835563,0.031037528,-0.037401088,-0.0054411204,-0.05118621,0.039209947,0.020819644,-0.11852646,-0.03989742,-0.0007029786,0.047109015,-0.0024497865,-0.014282979,-0.05676018,0.017825086,-0.051883224,0.04397733,0.029840188,-0.06586495,0.060210805,0.1005874,0.036520682,-0.007990915,0.04587756,-0.05777273,0.02268111,0.023047201,-0.075943075,0.01712693,0.011500721,-0.13613291,0.11453217,0.0676308,-0.02496466,0.063757196,0.08039955,-0.03654384,0.009778826,-0.050916612,-0.014750985,-0.019760003,-0.008754757,-0.04331012,0.0066372068,-0.05759554,-0.051457383,-0.038689025,-0.053759992,-0.010144446,-0.013560957,0.005392105,-0.016779846,-0.02726301,0.018985584,-0.006422253,-0.03003701,0.020348543,0.05270003,0.030371606,-0.01897928,-0.12727228,0.037057597,0.040162344,0.039169133,0.11156239,0.06748037,-0.077706866,0.03327244,0.0012830957,-0.029156934,0.061412722,-0.0032185847,-0.06607734,-0.034303732,-0.06719215,0.0164123,0.017125087,0.0006848339,-0.018509239,-0.0030780502,-0.057864666,-0.07449495,0.046067134,0.0193826,-0.07511595,0.063972734,-0.015608757,-0.023132369,0.05938368,4.8213136e-33,0.022921558,-0.008057477,-0.00016194549,0.046679858,0.013713484,-0.052215256,-0.055015232,-0.018888906,-0.119958505,-0.0030659602,-0.07128036,0.055380154,-0.06897433,0.0218555,-0.02102251,0.16313781,-0.05973832,-0.014220822,0.096528456,-0.009558929,-0.03977244,-0.05248518,-0.011328823,0.04296148,-0.0350271,-0.030517839,-0.00053271727,-0.078654476,0.063207,0.065737374,-0.09121662,0.06015388,-0.027869048,-0.033255253,-0.052620824,-0.11302684,0.007965155,0.03387995,-0.036518387,-0.0037532903,0.07146095,0.022629814,-0.0035530361,0.014188447,-0.060058355,0.046544813,0.06755025,0.018831572,0.08998221,0.03784175,-0.0153486,-0.1369331,-0.07867628,-0.056504127,-0.013772017,0.05512498,-0.008804747,0.08193836,0.06826434,-0.05637626,0.08385701,0.03002584,0.120830834,-0.055621285,-0.034877267,-0.024320608,0.038091186,0.06943755,0.07343885,0.034607798,-0.08036973,-0.007148376,0.0024994235,-0.03671761,-0.027093243,0.023834506,0.013804043,0.00322424,0.0684917,0.0044968445,-0.06566267,0.019627597,-0.015580809,-0.026127752,0.078071326,0.065748855,-0.021002052,-0.013944138,-0.018453691,0.12129219,0.015293493,0.0671895,0.026177552,-0.117980875,0.008246224,-5.5915294e-33,0.016791917,-0.045960765,0.027526736,-0.0003871694,0.043333597,-0.0023110714,-0.01218228,0.070537075,0.017640939,-0.09775415,-0.09118278,-0.103671774,0.108078115,-0.04451969,-0.034242384,0.066968836,0.03219949,0.06300843,-0.03966354,-0.04059974,0.008719861,-0.03177592,0.050847143,-0.00071766984,-0.057968903,-0.03459665,-0.0073524415,0.06976156,-0.0692805,-0.011118057,0.006174373,-0.05029848,-0.116689034,0.013471305,-0.015660997,0.02222245,0.02301693,-0.0044019097,-0.0064690574,-0.020142918,0.02346799,0.07063579,-0.066172965,0.025496421,0.032130428,-0.004176249,-0.0735858,-0.108342074,0.012216847,-0.053157352,0.05213516,0.033993885,-0.011173678,0.03510313,-0.014715839,0.0059853327,0.09153322,-0.022748115,-0.018329104,0.03255291,-0.06382806,-0.03742371,0.036615066,0.040064,0.075348526,0.06393976,0.0010622917,0.087423466,-0.0017955786,0.04887128,0.100894235,-0.06203639,-0.08985497,0.039393783,-0.06774867,-0.006215291,-0.042590592,0.02682888,0.01146092,0.05205137,-0.0064072134,0.07382407,-0.07238988,-0.016256226,0.02034666,0.01973488,0.03181878,0.049004633,0.047755275,0.04756061,0.11358732,-0.013221328,-0.051652405,-0.031841204,-0.019890707,-2.8484491e-08,-0.029201897,-0.019426115,0.00074389705,-0.050814122,0.110562064,-0.010886694,-0.08271592,0.037553914,0.024383146,-0.033148117,0.065943494,-0.008461461,-0.020428171,0.09865478,0.027287347,0.11193847,0.068924986,0.054592118,-0.0008473519,-0.031181607,0.05553264,-0.0033288812,-0.029737558,0.035172317,0.0190997,0.029707557,-0.041263416,0.0076595345,0.002042386,-0.02561446,-0.0465619,0.00049200875,-0.060717274,-0.072396494,-0.024524583,-0.015833197,-0.03265244,-0.042869005,-0.044611193,-0.025331702,0.036813796,-0.06289502,-0.02209451,0.007859413,0.040213667,-0.02368905,0.019289583,0.013501492,-0.034636613,0.02355085,-0.081973314,-0.06391042,0.031233456,0.02289139,0.05720832,-0.08022175,0.024531761,0.0033310547,-0.0019478282,-0.06215199,0.09141534,0.1041494,0.03587832,-0.016902803} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:54.782452+00 2026-01-25 01:27:52.125324+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 633 google ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB 1 t 636 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Je recommande !\nVoiture nickel / Personnel très serviable et très efficace je recommande ! voiture nickel / personnel très serviable et très efficace 5 2025-01-25 01:27:48.342988+00 fr v5.1 O1.01 {} V+ I2 CR-N {} {"A1.01": "Personnel très serviable et très efficace", "O1.01": "Voiture nickel"} {-0.060629405,0.11979954,0.012207378,-0.09906577,-0.060385447,0.04696669,0.11501072,0.057103258,-0.026508598,0.012805275,-0.03578416,-0.024241945,0.06639461,-0.06447144,-0.093205474,-0.12121937,-0.046118688,0.1506724,0.0063277865,0.004096139,0.017841585,-0.06641983,0.011886229,-0.016086902,-0.0074401535,0.119485974,-0.069791526,-0.04870555,-0.014606487,-0.10091974,0.05672435,0.03039606,-0.032877814,-0.071247056,0.0075638425,-0.016490195,0.023953047,-0.013820171,-0.07557374,0.0307101,-0.088572726,-0.032945886,-0.09912006,-0.086985916,0.010959675,0.053149763,0.012392397,0.046898767,-0.06108247,-0.0034505974,0.07269382,-0.029480387,0.052789405,-0.0058074687,0.02107712,5.8122918e-05,0.06757813,-0.07879953,0.019307982,-0.0403634,0.025187705,0.00037865117,-0.01692879,-0.023184948,0.017303212,-0.05659243,0.055511374,-0.08097119,-0.11374758,0.06709373,0.12152953,-0.055507038,-0.037664134,0.03596853,0.022921724,0.0673751,0.005254823,-0.062349107,-0.005696923,-0.103691354,0.030036705,0.017387882,0.050643224,-0.029463839,0.040453743,-0.015807342,0.038248457,0.008607085,0.020281935,-0.030897887,-0.063702494,0.030735398,-0.06188032,0.008473871,-0.025309717,0.0057863346,-0.08073525,0.0625097,-0.081668966,0.034404527,0.112627134,0.046621475,0.005967199,-0.036111362,-0.08642032,0.013929447,-0.048024114,0.021762049,0.030875806,0.030883474,-0.0019314515,-0.059409942,-0.055723958,-0.06189758,0.0064691696,0.009194293,-0.009660315,-0.071524315,0.013672966,-0.027610434,0.077372104,0.0155374445,-0.056328792,-0.015278671,0.034230072,0.04550087,0.06866818,3.975539e-33,-0.06774678,0.075529516,-0.0107701365,-0.027064234,0.0018797487,-0.010911775,-0.06525973,0.024749763,0.037754618,-0.053517655,-0.055571068,0.061862048,-0.042343087,-0.029509103,-0.049793,0.021519784,0.050745487,0.019074194,0.0662677,-0.038206607,-0.08948493,0.04477443,-0.010115174,0.120560065,0.07535371,-0.084417865,-0.045871437,-0.043177597,0.017920459,0.017665993,0.11127014,-0.016253682,0.07838429,-0.013769094,-0.025824394,-0.044129208,0.08709083,0.039344992,-0.0070028855,-0.020961307,-0.0031822526,0.006289495,0.033083554,0.053949777,-0.03786582,0.033241574,0.024034038,0.050906684,0.02373826,-0.05473343,-0.026827741,-6.6472436e-05,-0.009389074,0.035675015,-0.0016659279,0.09399427,-0.061423104,0.047862273,0.007461903,-0.094562784,0.017750189,0.13219391,0.04861493,0.012134302,0.05245554,-0.019309914,0.030063622,0.02489839,0.038765892,0.03782567,-0.1406131,0.037339095,0.10388916,0.019514207,0.036213815,0.0020824103,0.021413233,-0.05486868,0.051722042,-0.032734588,-0.08756606,-0.05811374,0.0035957515,0.005005685,0.05811056,-0.062840894,-0.01054693,-0.025053503,0.056584366,0.06077963,0.058335204,0.017458497,-0.060804676,-0.066272385,-0.037718434,-5.96358e-33,0.010285763,0.050116424,-0.027180402,0.1061645,-0.0014048767,0.06418688,-0.03799698,-0.0010156573,-0.06577144,-0.07447545,-0.0332631,-0.07687418,0.05181644,-0.059549823,-0.04734411,0.021001816,-0.0400378,0.022710728,-0.03299347,0.0010315821,-0.056700096,-0.088376954,-0.026868895,0.0018356479,-0.034607094,0.024105493,-0.027079947,-0.04799584,0.011225803,-0.024172502,0.02482504,0.011243683,0.0016163376,-0.02029946,-0.015772868,0.00037994175,0.10686774,0.043769263,-0.0011031873,0.021905519,-0.08608383,0.05002431,0.016366214,0.021965737,-0.013463174,-0.096191,-0.060879637,-0.065591335,-0.033053454,0.005317592,0.058695357,0.041920003,-0.033261146,-0.021498147,-0.0141709335,0.034368027,-0.00803127,-0.05035898,-0.03286285,0.11349555,0.028569024,0.04410097,0.039855566,0.034453813,0.06837949,-0.05989573,-0.06549379,0.10235982,0.058436412,0.0020736768,0.05548397,0.015098608,0.09296289,-0.043405972,-0.041588865,-0.038262196,0.044238865,0.03077602,0.012818846,0.024588037,-0.054907557,0.03294999,-0.04842074,-0.02206951,-0.004560366,0.014580403,0.031660065,0.093276136,0.010127285,-0.062112395,0.011573821,0.011470538,-0.018242233,-0.0011101348,-0.0520415,-2.8306365e-08,0.022268616,0.018815758,0.012056263,0.017570937,0.106242046,-0.10884006,0.034871746,-0.057428148,-0.043671943,-0.019984988,0.017789328,-0.006521732,-0.09770509,-0.016992943,0.068116896,0.057049636,0.0053992304,0.032828197,-0.055944577,0.000990419,0.015443564,0.0051035136,-0.08122867,-0.048949562,-0.029341364,0.01820589,0.011681764,-0.075577445,0.010745378,-0.0068252254,-0.027891992,0.07885491,-0.05126792,-0.0485784,-0.04075286,0.003974541,0.026989507,0.040666897,-0.006126293,-0.043458793,0.005428427,-0.004393941,-0.010330285,-0.00383883,0.036393594,-0.07192172,-0.01054,0.0380092,0.0050738603,0.001008301,-0.103375286,0.017920904,0.025354173,0.031039253,0.03903087,0.085013196,0.054880578,-0.04162658,-0.048289932,-0.017423637,0.03173584,-0.04926095,0.03147458,0.024878252} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:40.677237+00 2026-01-25 01:27:52.136057+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 634 google ChZDSUhNMG9nS0VJQ0FnSUNIdVp1bFFREAE 1 t 637 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias Nestor ,Dany ... me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias nestor ,dany ... 5 2025-01-25 01:27:48.342995+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias Nestor ,Dany ..."} {-0.014341217,0.08811248,0.061491664,-0.07773585,-0.040603753,-0.015169417,-0.0066974084,0.0069910497,0.039229907,0.01781892,-0.00029091522,-0.040670957,-0.029758004,-0.05566734,0.07895108,-0.026871104,-0.077827156,0.012172858,-0.0013280475,0.03544836,0.0036924134,-0.052909005,-0.07303348,0.09792657,-0.10530966,0.0035783153,0.07609677,0.023604985,-0.017889466,-0.0048943534,0.010906477,0.08407324,0.02837097,-0.06414328,-0.048581943,0.011440773,0.04364015,-0.15271434,-0.018970707,0.03489003,-0.043824177,0.018210392,0.039410654,-0.00089907396,0.07706318,-0.078420565,0.076812245,0.0460438,-0.010984295,-0.027667055,-0.04944078,0.008140381,-0.009553657,-0.002783009,-0.0076324483,0.0632549,0.021923851,-0.0592965,0.03683519,0.003295907,0.04705044,0.010769362,-0.051474385,0.016979672,-0.022639044,-0.078076124,0.053065065,-0.023940926,-0.04875008,0.059739918,0.050212745,-0.04362417,0.004394026,0.08418935,-0.063440435,0.0147112515,-0.002572968,0.0040837987,-0.016562017,-0.06617024,-0.0129948575,0.04407326,-0.055487264,-0.04554059,0.035164684,-0.008410693,0.023609476,0.045272466,0.08635414,-0.05099617,0.00025600815,0.03255131,-0.07019263,0.04216897,-0.04163911,0.03299687,0.00018447368,-0.028408831,-0.054912705,0.060212653,0.15394583,0.01677032,-0.0034968867,0.09040401,-0.062951885,0.034921836,-0.031267982,0.008956766,-0.011621128,0.02683764,-0.04970816,-0.02121468,0.018083313,-0.011249004,-0.050875667,-0.03700845,0.019320404,-0.037799053,-0.00066965603,0.022653133,0.012755608,-0.0013364347,-0.03624777,0.0345557,0.09307094,-0.05881626,0.05379016,3.424999e-33,-0.012653109,-0.027927883,0.053916734,0.023375517,-0.02034656,0.018487114,-0.0016536865,0.011332427,-0.065275505,-0.042902563,-0.048707794,0.03917696,-0.0069782883,0.07245215,-0.022930512,0.050825898,0.018769983,-0.04086761,0.07256388,-0.032951433,-0.11685826,-0.062096346,0.004219715,0.008713795,-0.0062103393,0.048707467,0.042792372,-0.047982574,-0.05758856,0.07231864,0.011544679,-0.037366476,0.053445596,-0.027316421,0.016536305,-0.0025536253,6.3670286e-06,0.018375311,0.02304612,-0.013002146,0.028560571,0.041503347,0.035139207,0.01566404,-0.02654976,0.053097587,0.030719554,0.06988443,0.051382,-0.08181174,-0.003683254,-0.089748,-0.11514403,-0.019486867,-0.060509544,0.02250089,-0.13010278,0.08944635,-0.016142445,-0.05623286,-0.0065409304,0.011079832,0.033133186,0.0152012,-0.09509191,-0.02005564,0.0022786881,0.123916455,0.14097884,0.08045062,-0.011894444,-0.007974956,-0.015285874,0.004322748,0.012794598,0.007522199,0.06440401,-0.007762909,-0.0031447674,0.057419226,-0.056116205,0.035344314,0.106169,0.03330235,0.0037559052,0.050663512,0.05025866,0.07492553,-0.07548349,0.09178845,0.028696552,0.094722554,0.06993643,-0.023516962,-0.002514528,-3.7227087e-33,0.0041069384,0.0008920368,-0.014973943,-0.011960656,-0.0035082123,0.027285801,-0.06388195,0.028430387,-0.07323677,-0.1231861,-0.026552351,-0.10217554,0.12030523,-0.0605484,-0.06425186,0.07392188,0.02071698,-0.034436714,-0.058560684,-0.010317909,-0.05896429,-0.026444934,-0.011930268,-0.03380504,0.0030678036,-0.05498086,0.024333848,0.07348897,-0.007948186,-0.040948465,0.11283896,-0.029562278,-0.07583838,-0.021798214,0.014646384,0.08350564,0.024089701,0.02862367,0.04019436,0.038217954,0.018059788,0.035908118,0.030587142,0.0046033408,-0.0044472455,0.0037543075,0.0030365011,-0.13311343,-0.06568188,-0.037398487,0.02936499,-0.07906263,0.0059582363,0.0029569913,0.0629581,0.0029143353,-0.03050832,-0.091470204,-0.09319352,-0.027593164,-0.00038990608,0.045820497,-0.026976444,-0.011798634,0.062179096,-0.009315502,-0.07818936,0.023700502,0.017093379,0.090211704,0.09735152,-0.02792321,-0.10077573,0.035326418,-0.036266148,-0.03742262,-0.110455185,0.024302183,-0.0072058747,0.042271048,-0.022842132,-0.0582674,-0.0026825473,0.027862575,-0.06348779,-0.07917631,-0.005084555,0.053665556,0.007094578,0.09241344,0.0069215917,0.0062597054,-0.039122887,-0.11159914,0.012770667,-3.3759775e-08,0.0446794,-0.118973166,-0.053587504,0.00846049,-0.041231055,0.049156126,-0.049812034,0.05141375,0.010760584,0.041831065,0.008770226,-0.07856307,-0.008822523,0.0070281522,-0.060399093,0.09395895,0.08631584,0.023707123,-0.00995044,-0.07222027,0.0037134436,0.0056800223,-0.0015449413,-0.010638575,-0.0035924928,0.050904363,-0.0062776376,0.037364546,0.01247806,-0.025441453,-0.081018165,-0.050551154,-0.05853146,-0.03250062,0.008615828,0.0687635,-0.044738136,-0.030162958,0.027223248,-0.011717805,0.14414392,0.08486485,-0.044187497,0.009921905,0.024779923,-0.09757186,0.003457591,-0.022522558,-0.02002526,0.0072405753,0.024580684,0.027167523,0.06957812,0.084605634,-0.00017215865,0.005099636,-0.020648247,0.011481553,-0.018035172,-0.01948742,0.054450765,0.07108869,-0.02878481,-0.031217622} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:34.226862+00 2026-01-25 01:27:52.150377+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 637 google ChdDSUhNMG9nS0VJQ0FnSURINXBUOW13RRAB 1 t 640 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto y sencillo, muchas gracias Dani por el gran trato! todo perfecto y sencillo, muchas gracias dani por el gran trato! 5 2025-01-25 01:27:48.343003+00 es v5.1 A1.01 {} V+ I3 CR-N {Dani} {"A1.01": "Todo perfecto y sencillo, muchas gracias Dani por el gran trato!"} {0.019027142,0.03631083,0.019800046,-0.031732224,-0.04047927,-0.08783347,0.076171495,0.034009364,-0.05756855,0.01885005,0.04990497,0.0070207263,-0.043982744,-0.015519343,0.032529745,0.002282234,-0.010878774,0.057620153,-0.034073446,-0.039303217,0.09226069,-0.0899536,-0.031606324,0.12107377,-0.09749573,-0.035616316,-0.021901248,0.030636769,-0.07021711,-0.05261622,-0.06243943,0.106523655,0.060447384,0.028269373,-0.010032088,0.022214647,0.009352188,-0.044529654,0.017207451,0.03865371,-0.06442463,0.0036878455,0.017559214,0.035853744,-0.029396411,-0.03483244,0.031590614,0.051766776,0.00064860494,0.009194835,-0.0653641,-0.013604657,0.035450075,0.003674698,-0.06310033,0.078072086,-0.0074091083,-0.0400539,0.041354436,0.0462415,-0.021392373,0.031257216,-0.019478342,0.04584982,0.048624948,-0.03287059,0.0057035964,-0.018412761,-0.090231195,0.11636422,0.07313033,-0.017968785,0.07975374,0.07554454,-0.01834691,0.092544466,-0.035941336,-0.02368605,-0.053372547,0.039999653,0.010126398,-0.01561059,0.0023961256,-0.04867316,0.07590669,0.007887032,0.002254719,-0.012852662,-0.0041606985,-0.05539275,-0.024866857,0.08425348,-0.056444526,0.00020003464,-0.048546165,0.1039581,0.043505717,-0.04873266,-0.009985594,0.04233209,0.079235904,0.0072145094,0.091936134,0.032968316,0.031453475,0.053250138,0.043859575,-0.010072778,-0.00839776,0.035407916,-0.011975662,-0.02563473,0.04690962,0.05510357,-0.028642284,-0.0658084,0.029486405,0.03597335,-0.01748264,-0.0074306196,0.018117573,0.043534584,-0.03543412,-0.051108155,-0.042962205,0.002363088,0.037932944,5.9455097e-33,0.008524702,0.048960194,0.010874282,0.027781539,-0.032463156,0.011952838,-0.08322297,-0.044888794,-0.07292557,0.04334038,-0.058570653,0.007812579,-0.042068556,0.075196676,-0.015572223,0.10308875,0.008104144,-0.028127935,0.042919386,0.0025459984,-0.07037676,-0.047189794,-0.036924195,-0.0072308094,-0.06124015,0.10362004,-0.034579694,-0.095547,0.004746881,0.04972886,-0.0680364,0.06767726,0.06469823,0.05282887,-0.036973678,-0.08794391,0.021975588,-0.00060704927,-0.04107223,-0.00017302566,0.020595089,0.040238835,0.009583885,-0.0003034854,-0.017338628,-0.017793538,0.043376192,0.06352638,0.09599937,0.04275707,-0.10695122,-0.115251824,-0.054580595,-0.041661892,0.03220604,0.019810902,-0.0168231,0.05141899,0.05790951,-0.050829478,0.034805518,0.028505845,0.031229453,-0.080676116,-0.04820595,-0.015900765,0.034181353,0.014662261,0.103413224,0.01079091,-0.014980442,-0.04316121,0.030064339,0.021810317,0.041210134,-0.03546873,0.03464753,-0.059372485,0.024699545,0.01320111,-0.04125341,-0.0118058855,0.044846747,-0.0058986866,0.09466957,0.041687354,0.008718384,-0.010684805,-0.07890515,0.050873876,-0.0097096125,0.10606602,0.011281788,-0.08175179,0.0047218767,-4.9779357e-33,0.0631785,-0.002948978,0.026005931,0.0350204,-0.036678363,-0.060891997,-0.1177479,-0.09613069,0.027124796,-0.030875633,-0.029375348,-0.1953888,0.088515095,-0.047688287,-0.05776148,0.048042312,0.035260003,-0.021119792,-0.07523507,-0.015050277,-0.0058103986,-0.019660126,-0.003978199,0.0075720535,0.003947894,-0.106881246,0.035156265,0.062396143,-0.039092235,-0.016620114,-0.0032379355,-0.06099358,-0.032694433,-0.0016191297,0.057080954,0.020945078,0.0007455513,0.027514929,0.015334699,0.0005631398,-0.053818244,-0.036260556,-0.0016925011,0.0033841974,0.018696027,0.040359043,0.01720813,-0.07705204,-0.05596044,-0.06441723,0.076675326,-0.07819598,-0.033404097,0.036358852,0.07053932,0.021157559,0.032397702,-0.093255654,-0.11762712,-0.056925658,0.011361154,0.008190564,-0.032560024,0.013900913,0.036640108,0.054008055,-0.013889431,0.046500396,-0.021954937,0.10734292,0.04226829,-0.033974875,-0.086414844,0.0046403846,-0.01876999,-0.049600895,-0.07480315,-0.0062477393,0.0383442,0.020807356,0.0035596434,0.04313827,-0.022040034,-0.005682958,0.045377936,-0.009340555,-0.111882105,0.03659611,0.0021349364,0.11138405,0.06436702,0.08495296,-0.025875768,-0.080443,-0.017946536,-2.6883031e-08,0.027730929,0.00947475,-0.08667909,-0.030648498,0.105148576,-0.023783648,-0.040310394,-0.00097317557,0.020173509,0.0548515,-0.021110568,-0.03269624,-0.03930061,0.032001905,0.009450147,0.060380787,0.09101526,0.10620158,-0.011355991,-0.042152893,0.059302635,0.015961533,-0.06077622,0.006173918,0.0018459001,0.07068013,-0.01742584,0.018746175,-0.021808615,-0.033696074,-0.03366087,-0.055697735,-0.07834635,-0.068567544,-0.014808194,0.04116381,-0.028283203,-0.030828351,-0.049002342,-0.031490706,0.060330324,-0.016775131,-0.007420165,-0.036052637,-0.006435176,-0.06623623,-0.03255434,0.026576407,-0.009261962,0.068484105,-0.0601183,-0.071228005,0.08902,0.075434506,0.062268212,-0.0089209145,0.11518532,-0.011209104,0.006882276,0.061753795,0.064148575,0.124757245,0.01644098,-0.063897096} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:25.345614+00 2026-01-25 01:27:52.165483+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 254 google ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE 1 t 257 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Car pick up was seamless and Carmen from the Gran Canaria branch who served us was wonderful. So friendly and made it all very easy. Car is excellent and brand new. car pick up was seamless and carmen from the gran canaria branch who served us was wonderful. so friendly and made it all very easy. car is excellent and brand new. 5 2025-01-25 01:27:48.340658+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"O1.01": "Car is excellent and brand new.", "P1.01": "Car pick up was seamless and Carmen from the Gran Canaria branch who served us was wonderful. So fri"} {-0.10727957,0.07767507,0.06970831,0.041835718,-0.049674883,0.0151852025,0.039274234,0.03583825,-0.040547296,0.010273079,0.022263575,0.046163004,-0.013082198,0.028172346,0.0019466658,-0.010376503,0.077523224,-0.069181696,0.0092890635,0.028744243,-0.09585655,-0.057119798,-0.0064279665,0.046620402,0.007944266,-0.02260026,-0.03255733,0.04619941,0.021242129,-0.054120954,-0.071181126,0.09716603,0.022335997,-0.011761367,-0.029210659,-0.005303742,0.11270668,-0.043258548,-0.022927566,-0.012660558,-0.060371127,-0.05654607,-0.06658388,0.012532635,-0.03494947,-0.04007511,0.099772066,0.040938556,0.059928663,-0.06541199,0.037919328,0.009161366,0.052884005,-0.0626946,-0.107646085,0.05795681,-0.032790434,-0.027420955,-0.00861478,0.052069716,0.0057629948,0.020594947,-0.04751133,0.004289074,0.011083383,-0.07618951,-0.065901525,-0.017254855,0.010874506,-0.064429134,0.026131751,0.018132297,0.03353551,0.0044422946,-0.0154576525,-0.06594637,0.07401979,-0.019199243,-0.01430368,-0.024708709,-0.038128916,-0.04540038,-0.04142755,0.012779016,-0.05670655,-0.04448626,-0.011531143,0.006883307,0.015401775,-0.014456568,-0.046846975,0.03735286,-0.030216075,-0.05735335,0.018080998,0.05160513,-0.0020439578,0.04257868,0.05781174,0.05701434,0.025376858,0.0651136,0.119428724,-0.02779093,-0.091590025,0.06574574,-0.010047644,0.052651335,0.007105822,-0.011577398,-0.017166462,0.0065504583,0.01685958,0.01731556,-0.094370864,0.024362,-0.006831534,-0.022040477,-0.034080442,0.028588742,0.014216112,-0.060416244,0.027318079,0.059149306,-0.032242507,0.026600815,0.14567514,-2.1142136e-34,-0.037085947,0.041621316,0.038673513,0.027569786,0.03871654,0.04400936,-0.057397686,-0.026760524,-0.040823497,0.043912247,-0.029703705,0.022809042,-0.042396344,-0.012746379,0.06573248,0.07519576,-0.16740038,0.0038697633,-0.04892138,-0.0097385645,-0.030997712,0.06833073,0.011422247,0.02462358,0.03247367,0.0001476016,-0.00741747,-0.0027397536,0.044656962,0.006665438,0.014759951,0.005242702,0.036575377,0.0364653,-0.037625685,0.054422922,-0.07493883,-0.050588187,-0.09694847,0.020433271,0.02970398,-0.0149301095,-0.02106778,0.09660866,-0.05324484,0.02795647,-0.00018947915,-0.008658005,-0.06044887,0.040383592,-0.066620566,-0.01994601,-0.040941603,0.03171198,-0.08217368,0.08287999,0.042497903,0.029874818,0.008767348,-0.030928297,0.03892984,0.07550608,0.0065410812,-0.011922592,0.03241119,-0.044768073,0.036650583,0.051989928,0.088276275,0.007791677,-0.071786754,0.04948779,-0.012232762,0.049405165,0.01930696,-0.0013032835,0.0038093848,-0.060177248,0.027508488,-0.00015397502,-0.036078803,0.08878632,-0.0020456007,0.0019322843,0.076946385,0.053031616,-0.011761452,-0.10229389,-0.010805422,0.06289261,-0.01170154,0.13299562,0.04186732,-0.013321484,0.069052815,-3.2129523e-33,0.050855912,-0.020783585,0.07448558,0.056353796,0.046547506,0.07180722,-0.08260331,-0.044839505,-0.028553797,-0.012627352,-0.07592128,0.017648496,0.07996179,-0.0034421093,-0.00197555,0.024392102,0.051381387,-0.091066554,-0.06473795,-0.026237493,0.018703941,-0.008830201,-0.07174543,-0.04034157,-0.09625976,0.006185691,-0.07098199,-0.022242706,-0.0038039924,-0.02380292,0.019756673,-0.023122748,-0.019403342,-0.055785567,-0.0015658184,0.0032739053,-0.050229568,0.06584553,0.018388119,0.03934526,-0.024156947,-0.048201595,-0.02203995,0.1195114,-0.021243835,-0.10499716,-0.009676567,-0.093661726,-0.010501793,-0.03559789,-0.013694434,-0.015874261,-0.09618299,-0.0025241696,-0.005293553,-0.028973972,0.09753522,0.012747863,0.05701915,0.028507998,-0.02286246,0.04705544,-0.078635596,-0.036259867,0.010476107,-0.17213199,0.025933236,-0.06972704,-0.095008776,-0.026958426,-0.06291305,-0.040656388,-0.04045478,0.020958427,-0.0030962771,-0.024641298,0.026414469,-0.11663498,0.052943256,-0.06857969,0.016440466,-0.025836902,-0.043430317,0.03602514,0.0073165083,0.09160726,-0.03870915,-0.020309662,0.05332885,0.05027246,0.0967211,0.06978596,-0.029339865,-0.04438841,-0.08776119,-3.3051577e-08,0.085982144,0.035048153,-0.022732044,-0.057255287,0.0029425041,-0.033748202,0.0015476376,0.09996415,-0.06900279,0.025529567,-0.0042455676,0.019932361,-0.041127145,0.029516615,0.025862062,-0.024662124,0.08779998,0.08743371,-0.04769144,-0.010388114,0.0072771576,0.049807522,-0.020878457,0.024803955,-0.04497105,-0.079921015,-0.06572065,-0.001294582,0.022309808,0.01077885,-0.031433385,0.067394935,0.029536499,-0.0051752194,0.060390443,0.028472254,-0.033233035,-0.037228823,-0.028239537,-0.11420737,0.07378889,0.0051068757,-0.05538039,-0.032419406,-0.033611365,0.04208507,0.037090022,-0.05279478,-0.074687034,0.057221048,-0.010547333,-0.09754636,-0.006186362,0.110682555,0.036940996,0.020664893,-0.07528405,-0.0579379,0.07924666,-0.01010969,-0.073523484,-0.02231563,-0.09806203,0.026247052} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:50:10.877501+00 2026-01-25 01:27:50.656833+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 642 google ChdDSUhNMG9nS0VJQ0FnSURIb2Z6ajRRRRAB 1 t 645 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un maravilloso servicio por parte de Carmen y Néstor muchas gracias por la amabilidad y cortesía un maravilloso servicio por parte de carmen y néstor muchas gracias por la amabilidad y cortesía 5 2025-01-25 01:27:48.343037+00 es v5.1 A1.01 {} V+ I3 CR-N {"Carmen y Néstor"} {"A1.01": "Un maravilloso servicio por parte de Carmen y Néstor muchas gracias por la amabilidad y cortesía"} {0.020482082,0.04050162,-0.004195491,0.013145994,-0.06370346,0.00735126,0.054149423,-0.0032845298,0.010845984,0.03806766,0.00014903351,0.038596306,-0.00976885,0.015319956,0.03166071,-0.009702981,-0.018930813,-0.04867059,-0.015353578,0.11268338,0.13599761,-0.08818984,-0.046010096,0.124820136,-0.12559074,0.023915708,-0.053147253,-0.018268414,-0.053098325,0.012527277,-0.0008321613,0.042093046,0.09764551,0.027206765,-0.002436444,-0.0038107298,0.103671394,-0.08197538,-0.0045440234,0.033116877,-0.09536047,-0.046894472,-0.024878725,0.010822199,-0.008915643,-0.12978399,0.049262792,0.05257666,0.0046050907,-0.033051047,-0.056272503,-0.03123445,-0.033027794,-0.073564135,0.038703,0.012601403,0.00922967,-0.07493506,0.053009305,0.0008980112,0.035573516,0.06430976,-0.028877385,0.046898477,0.006974205,-0.13025722,-0.0060129333,0.004799309,-0.012415575,-0.010220203,0.071325004,-0.061783988,0.045545634,-0.0007160782,-0.053252842,0.005934066,0.025500141,-0.0064572226,-0.089580394,-0.051205102,0.016707575,-0.015628085,0.024783695,-0.022667205,0.0039942423,-0.004571716,-0.005526008,-0.008312731,0.04563672,-0.04603533,-0.032977834,-0.030501215,-0.028267417,-0.0023208356,-0.089497924,-0.043347064,0.06434293,-0.07956425,-0.037260585,0.07257146,0.060001913,0.04448087,0.104075894,0.01587843,-0.023061112,0.07947055,-0.03192229,0.03552232,-0.053737137,0.04590589,-0.10581441,-0.0029348524,-0.07833139,0.018385166,-0.051446315,0.065074876,0.03086826,-0.06709996,-0.0033377397,-0.015328554,0.04838848,0.028465739,-0.00086794543,0.032889754,-0.0259514,-0.010000926,0.08028751,3.8571838e-33,-0.06288129,-0.006058189,0.04334519,0.08606072,0.0036676964,0.05925544,-0.03539962,0.023417927,0.026650416,0.042087007,-0.0032778778,0.06749182,0.04124571,0.02459794,0.04631503,0.030068342,-0.08480162,-0.010790673,0.039459024,0.004495044,-0.019362275,0.045403384,0.031243838,-0.020726414,0.0010652781,0.04792871,-0.027054342,-0.059404045,0.006541586,0.070338435,0.043463677,0.014591379,0.016450305,-0.057876386,0.032694623,0.031228587,0.031955626,0.0021213063,-0.024408855,0.0038918487,-0.031093208,0.0058807475,0.025335675,0.039791726,-0.05812434,0.022741118,0.08576447,0.061615963,0.09781724,0.059843652,-0.044534963,-0.078254014,-0.1059737,-0.033595923,-0.041846506,0.05621827,-0.041255094,0.029591026,-0.040425155,-0.14005819,0.089785025,-0.13147852,0.018303327,-0.014750738,-0.015652288,0.0067639886,0.08801402,0.053400777,0.0830529,0.06571302,-0.13396686,-0.006570489,0.054266304,0.035866905,0.0035384155,-0.0064249807,0.038978506,-0.019846376,-0.009621082,0.09235615,-0.09122554,0.013833507,0.03629499,0.024644125,0.042463295,0.056424327,0.09055748,0.02767348,-0.0058167446,0.08753816,-0.06373262,0.08849953,0.038961854,-0.062614135,0.03936607,-7.8659784e-33,-0.059838008,-0.044338312,0.03298811,-0.0161001,0.03436,-0.025038963,-0.05312744,-0.029938735,-0.068187445,-0.021569649,-0.070912845,-0.107832745,0.08609814,-0.05206695,-0.07337276,0.044879407,-0.017479828,-0.06436976,-0.06798422,0.023279121,-0.049543515,0.030528486,0.0030644145,-0.032246143,-0.006392862,-0.03689302,0.004334343,-0.037549637,-0.038524643,-0.067091614,0.04760125,-0.005056175,-0.052855346,-0.0076337988,-0.06024582,0.12948154,-0.07442445,0.054359455,0.025268892,0.05234435,0.03332207,0.015499994,0.008072052,0.05447552,-0.03642467,0.006133104,-0.029879618,-0.09786296,0.032985277,-0.0341066,0.0062779486,-0.071314365,-0.07393725,-0.02499603,0.06352983,-0.02634609,-0.07026627,-0.025026696,-0.03704408,0.019752685,0.06424812,0.0455798,-0.11648048,0.025126336,0.047923584,-0.052556824,-0.066895775,-0.0070476425,-0.029738981,0.058442645,0.054101747,-0.014373695,-0.086264335,0.07641763,-0.029396126,-0.0048403633,-0.08451067,-0.090345286,-0.056328822,-0.03497822,0.014417251,-0.014444487,-0.034247734,-0.021823253,-0.03519153,-0.0054549305,0.02974734,0.040908806,-0.005090112,0.015874485,0.0073436666,0.02267107,-0.07329303,-0.11623934,-0.013177976,-3.2037583e-08,0.04410599,0.016111316,-0.039303098,0.012307828,-0.055390596,-0.021992251,0.004929379,-0.0073884903,0.00057413767,0.09558035,-0.0210229,0.05254494,-0.023717973,0.026512692,-0.026828533,-0.04294821,0.05965209,0.023451967,-0.020103645,-0.035614472,0.013735344,0.00559685,-0.032658275,-0.10581382,-0.008197566,0.042388752,-0.06711711,0.019468188,-0.018435162,-0.02781395,0.049440384,-0.03546131,-0.11051001,-0.073999554,-0.026745744,0.03450189,-0.07105505,-0.023930384,-0.027236272,-0.072398014,0.10214527,0.05464139,-0.0412334,0.015246529,0.04363724,-0.00028906,-0.02708717,0.034154177,0.01141359,0.03242065,-0.07181696,-0.042354107,0.050262347,-0.019834157,0.009754082,-0.024023239,-0.003403594,0.046695035,0.041130062,0.007851434,0.031184651,-0.014565418,0.017989622,-0.095470324} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:01.854983+00 2026-01-25 01:27:52.177854+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 643 google ChZDSUhNMG9nS0VJQ0FnSUM3ejlHdmJ3EAE 1 t 646 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muchas gracias por la atención de Carmelo a por el vehículo Muy atento y amable muchas gracias por la atención de carmelo a por el vehículo muy atento y amable 5 2025-01-25 01:27:48.343039+00 es v5.1 A1.01 {} V+ I2 CR-N {Carmelo} {"A1.01": "Muchas gracias por la atención de Carmelo a por el vehículo Muy atento y amable"} {0.047216672,0.048165623,0.020986555,0.007870194,-0.022474388,-0.0055064233,0.067863606,0.0015990164,-0.010390623,-0.00287031,0.052707475,-0.024489759,0.029083168,-0.035983197,0.0005790635,0.04191705,0.015049524,0.051635686,-0.057893563,0.055547547,0.087491654,-0.013684055,-0.08649614,0.14928873,-0.07312291,-0.049789388,-0.025367994,0.024907885,-0.10618992,-0.08995715,-0.06969988,0.06965165,0.15428804,-0.02007199,-0.0102286665,-0.01727152,0.064145826,-0.038466915,0.0016952554,-0.024237186,-0.03750392,-0.04333743,0.016818032,0.0002744095,-0.020125616,-0.05101538,0.057252612,0.02711918,0.03036151,-0.06558173,-0.10330011,-0.030752715,-0.020451134,-0.09023386,0.02635601,-0.00023490952,-0.049450498,0.004100496,0.106285915,0.044580527,0.02587472,0.039163362,0.030339722,0.068211645,0.017609246,-0.06085698,0.012671293,-0.012838303,-0.11867583,0.005267903,0.15182254,-0.021025961,0.02616604,0.0055047735,-0.027474714,0.09823041,0.0034189462,-0.06570003,-0.08981079,0.0051278872,-0.048534006,0.026235197,-0.027168976,-0.07461359,-0.014868356,-0.016201386,-0.0025650451,0.0075263893,0.0066528586,0.008230096,0.017063249,-0.0051018037,-0.073277906,-0.055707477,0.032878514,0.059419423,0.02100794,-0.14942962,0.028021751,0.044926498,0.07135909,0.05387642,0.09110943,0.047989197,-0.032065794,0.032573186,-0.010519284,-0.08392573,-0.06589212,0.054458607,0.0067503615,-0.054816183,-0.0017834058,-0.016778527,-0.075251274,0.012960353,0.0047526634,-0.03942823,-0.027848354,-0.07475994,0.013242338,-0.01055538,-0.011552737,-0.0006635526,-0.006334855,-0.017699892,0.05417227,5.637313e-33,-0.10388596,-0.033574942,-0.038522474,0.068771474,0.032601733,-0.04989328,-0.041028384,-0.025418416,-0.010296736,-0.025678376,-0.017579282,0.048220556,0.027923131,0.009297446,0.045605835,0.050370872,-0.045445886,-0.08517886,0.00056948373,0.020239217,-0.11124185,-0.03437915,-0.006801365,0.006241259,-0.020853885,0.0112560745,0.050745863,-0.100639485,0.002642703,0.05872665,0.021709282,0.08243392,0.017545411,0.009811352,-0.006781343,0.0022830926,-0.004135306,0.07258115,-0.008655925,-0.031909436,0.03625582,-0.002220191,-0.0441302,0.022750724,-0.019504115,0.06090579,0.03628364,0.08459925,0.022473799,0.026187021,0.014562658,-0.08811744,-0.10138022,-0.0654123,-0.025974061,0.07183483,-0.031246953,-0.0068279994,-0.031316455,0.0053407694,-0.0061374335,0.059440922,0.05574337,-0.06934542,-0.054375585,0.062889,-0.031049546,0.05340964,0.09358745,0.05817006,0.005735904,-0.06844703,-0.022293963,0.07999508,0.0038137801,-0.005472964,0.0065192897,-0.031707738,0.012904602,0.017729318,-0.067811206,0.08243208,0.025443053,0.01937599,0.012803081,0.06826507,0.013158404,0.025562393,0.014803237,0.10527586,0.012579624,0.0879015,0.008919027,-0.105451845,0.014982701,-7.3350326e-33,-0.018024173,-0.01127562,0.028240133,0.05989886,0.017191596,-0.078942895,-0.06537236,-0.0062307287,0.02293258,-0.0321655,-0.1196064,-0.09672318,0.105187826,-0.025681788,0.023470385,0.038020838,0.049233478,-0.06060079,-0.10478,0.033766028,-0.054559432,-0.002070246,0.05538489,-0.016954366,-0.044535242,-0.022020362,-0.09011658,0.06259939,-0.043673478,-0.04935894,0.020332668,-0.05608011,-0.014593599,0.011867227,-0.08110871,0.07565809,0.046735633,0.013315143,-0.006045438,0.014533748,-0.0074979747,0.029762022,-0.036137328,0.008126339,0.023060821,0.053558346,0.0562391,-0.090614334,0.017882857,-0.08711215,0.098128386,-0.030022785,0.0052548284,0.041329127,0.044113092,0.02313188,0.05218579,-0.033532735,-0.072129324,-0.0021354244,0.08449921,-0.008253162,-0.023494344,-0.032454457,0.034299232,-0.04478873,-0.02013947,-0.058299735,-0.113210306,-0.002159807,0.081503935,-0.008227408,-0.099884175,0.050776906,-0.057670027,0.00022156081,-0.14484756,0.00066231727,-0.010188799,0.0201954,0.004390406,0.021285754,0.009663193,-0.0040515894,0.029124022,-0.009213065,-0.03208163,0.04737029,-0.0053273747,0.05471951,0.0030340625,0.039219897,-0.08351382,-0.07043768,-0.01607217,-3.2510517e-08,0.047647685,-0.007678663,-0.03400489,-0.0013833666,0.006861035,-0.02205993,0.04851828,0.05589688,0.030087782,0.047959216,-0.042433094,0.01962828,-0.03389332,0.0602058,-0.045844175,0.020314354,0.09007672,0.014131582,-0.049079295,-0.019613445,0.09504164,0.0067570494,-0.09168798,-0.016410049,-0.04582859,-0.03182959,-0.049092613,-0.020334324,-0.0016568538,-0.013562626,-0.00074428105,-0.039705485,-0.039834086,-0.09522778,0.0044718673,-0.008758272,-0.031965353,-0.0009899922,0.03703495,-0.0526938,0.06815277,-0.05822409,-0.048063256,0.004898891,-9.9427925e-05,-0.059601825,-0.08160996,-0.011434406,-0.04036704,0.061980166,0.0058629923,-0.031574916,0.0714347,0.0629118,0.030372148,-0.10396193,0.03437015,0.046904217,-0.030591395,0.030004755,0.061574895,0.088086925,0.06971623,-0.020358698} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:57.402005+00 2026-01-25 01:27:52.181621+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 644 google ChdDSUhNMG9nS0VJQ0FnSUNuLXB1ZndBRRAB 1 t 647 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buen trato muy profesionales en especias Carlos y Néstor buen trato muy profesionales en especias carlos y néstor 5 2025-01-25 01:27:48.343041+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Buen trato muy profesionales en especias Carlos y Néstor"} {0.0122134425,0.050219793,-0.024677303,0.010126606,-0.057324365,0.017404737,0.020341117,0.0015007511,0.023723856,0.0154332835,0.026423506,0.033005565,-0.07184764,0.0123041915,-0.010120269,0.014470807,-0.054805502,0.051241957,-0.00140605,-0.021856125,0.11009967,-0.07279589,-0.018312303,0.036189314,-0.057313174,-0.04151337,0.042611457,-0.022395719,0.016229907,-0.04145595,-0.025728816,0.016101776,0.06887222,0.019668344,0.0066247946,0.033479977,0.09279992,0.0059391176,0.050713975,0.063652754,-0.06589526,0.008818134,0.013261335,-0.054878768,-0.030979345,-0.13733178,0.07059062,0.02971896,-0.045612417,-0.021573422,-0.08666867,-0.029644215,0.04077938,-0.043067627,-0.011271379,0.030879604,0.03952906,0.0013749037,-0.012861335,-0.019146502,0.017543172,-0.014584577,-0.046619214,0.014677288,-0.030117152,-0.07288015,-0.022026934,0.0588365,-0.04131901,0.0013054995,0.03423068,-0.12629537,-0.010577564,0.015887931,-0.007220613,-0.012011885,-0.03232416,0.046093542,-0.067643635,-0.07153158,0.06889181,-0.040850755,-0.04527207,-0.049864702,0.018174384,0.0009506544,0.0021858905,0.012901099,0.038081508,0.022554228,0.07292053,-0.040736996,-0.00417619,0.03194383,-0.029114228,0.029034257,0.01194702,-0.008658609,-0.009466478,0.09611452,0.016394427,-0.014571334,0.083544716,0.07942133,-0.049196936,0.048720438,0.030807694,0.025133207,0.010265284,0.0074173873,-0.074418455,-0.0047485665,-0.09953957,0.01798897,0.049026877,0.0005343737,0.026601568,0.040487874,0.003832154,-0.07872906,0.09155311,0.0291041,-0.018069135,-0.0337243,-0.0042983103,0.00816619,0.0033773726,3.3659348e-33,0.034904543,0.024448598,-0.07121634,0.0897949,-0.06119283,0.078397945,-0.031750586,0.054693244,-0.032637425,-0.008160313,0.0049260496,0.10340907,0.04835537,-0.018083697,-0.002072758,0.05128534,-0.06110351,0.074099235,0.05893065,-0.021833131,-0.05086191,0.060181577,-0.019022597,0.010457039,0.012009641,0.05151293,-0.049911376,-0.10810831,0.014250007,0.05386124,0.06711324,0.0392735,-0.045243416,-0.030293422,0.051241092,0.042731155,0.0023367542,0.0019367323,0.07956581,-0.0041782,-0.0021023962,-0.006012522,0.09406532,0.036610395,0.012073958,0.0035081867,0.100075,0.05426332,0.10772667,0.025140943,-0.05501183,-0.093585715,-0.035894845,-0.02481505,0.03171182,0.015688127,-0.08911849,0.11184923,0.008213284,-0.062172968,0.017801255,0.018740509,-0.030919263,0.025397845,-0.07326886,-0.021291072,-0.0009668961,0.061694752,0.12419404,0.019923575,-0.10482211,0.0064127194,0.043778628,0.0049452377,-0.0707868,-0.0022009136,-0.04952365,-0.06932517,-0.024145292,0.111537226,-0.10395495,0.05520294,0.087068364,-0.016304998,-0.0034623332,0.073838644,0.038621843,0.03980592,0.103268914,0.12542205,-0.079036206,0.019429786,-0.0069158804,0.0072080605,0.002931241,-5.19233e-33,-0.03698882,-0.03039231,-0.037790984,0.02664978,0.033190697,0.011824935,-0.037534103,0.06964502,-0.11002804,-0.12859304,0.040154513,-0.14637506,0.0402281,0.0062207156,-0.05635143,0.028884076,-0.04879502,-0.13197923,-0.10187253,-0.06044065,-0.0074733933,-0.0079981135,-0.0029329609,0.010264816,-0.020980274,-0.025419796,-0.016259408,-0.01432706,-0.030410245,0.002970781,0.07523195,0.049830955,-0.09437507,0.047978003,-0.031769697,0.093451835,-0.043298516,0.07319776,0.002322274,0.07287162,0.033425342,-0.0042701126,0.007753518,0.0289118,0.018754706,-0.0005434081,-0.053774077,-0.124282315,-0.011889242,-0.06680682,0.005926535,-0.029200137,-0.067861035,-0.072458945,0.017179625,-0.037827,-0.030357284,-0.042120773,-0.0997821,0.040308483,0.061572686,0.04216204,-0.0037236612,0.05335821,0.039708514,-0.00057365204,-0.060376782,0.06589797,-0.023118356,0.07785397,0.09552994,-0.045855872,-0.07356553,0.013910893,-0.038618475,0.018476576,-0.08217182,-0.07389315,-0.040903155,0.0026435514,-0.027969474,-0.024631305,-0.014884391,0.0031251893,-0.055011112,0.046116542,-0.005811384,-0.005241911,0.027186804,0.009486579,-0.018143835,-0.06545661,0.0060562375,-0.07131664,0.01490311,-2.5420233e-08,-0.0076339757,-0.069131434,0.008038007,0.018044492,-0.0962984,-0.024480576,-0.06370095,-0.0017128879,0.0017059837,0.10799495,-0.08855076,-0.04738764,-0.04159369,0.05219508,-0.002529,0.022772843,0.07478696,0.085249975,0.02064438,-0.096340396,0.05204221,-0.015442448,-0.032346137,-0.015522186,0.02470449,0.076420955,-0.028427815,0.002247155,0.0013770894,0.030443735,-0.018219188,0.0025969278,-0.02112092,-0.07476598,-0.0024002893,0.030565616,-0.058030788,-0.13337629,-0.031773172,-0.026531141,0.05847573,0.010331713,-0.023145027,-0.010609876,0.07450516,-0.06700175,-0.0079172095,0.07151391,0.026321853,0.041253593,-0.049652018,-0.023485731,-0.004391806,-0.0009970403,0.055035613,-0.036451325,0.029764209,0.009795706,-0.04651525,-0.054338004,0.010444193,-0.020909088,0.049976733,-0.083299465} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:51.126651+00 2026-01-25 01:27:52.183315+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 645 google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzhpUE9nEAE 1 t 648 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buena experiencia. Extraordinario el trato de Carlos y Néstor. buena experiencia. extraordinario el trato de carlos y néstor. 5 2025-01-25 01:27:48.343043+00 es v5.1 A1.03 {} V+ I3 CR-N {} {"A1.03": "Buena experiencia. Extraordinario el trato de Carlos y Néstor."} {-0.011866712,0.04815026,-0.00036308775,0.0003890224,-0.050684758,-0.010041404,0.044167668,0.036741212,0.009702327,0.0117781265,0.12866594,0.020509569,-0.034986094,-0.020669026,0.024665957,-0.0078608915,-0.010047076,-0.019856967,-0.053011592,0.04526193,0.10498653,-0.08388226,-0.022685554,0.07856811,-0.06967304,-0.029949741,0.029457143,0.06222427,0.004072129,-0.03371119,-0.025709659,0.036114316,0.12142226,-0.006263237,-0.016848624,-0.027262742,0.05835643,-0.008614473,0.020440536,0.036204338,-0.07792406,0.003731285,0.040284894,-0.008369821,-0.036624234,-0.11252723,0.044912416,0.06851566,0.026847018,-0.012177365,-0.061905287,0.020985235,-0.017605858,0.02940678,-0.018940367,0.030184753,0.011111063,-0.063933834,0.011477497,-0.006111683,0.028992524,0.023667062,-0.04440703,0.0074337614,0.016499512,-0.088514075,0.010565298,0.020105753,-0.07056543,0.024551598,0.08297483,-0.06707836,0.04306784,0.029839396,-0.058652706,-0.00534317,-0.0010214244,0.0047375285,-0.08785815,-0.05217232,-0.0007326298,-0.0039079287,-0.032411642,-0.029430475,0.06405913,-0.0031826568,-0.018721921,-0.0040699053,0.026940307,0.047832575,-0.024869379,-0.013764729,-0.06387377,0.0021635962,-0.059477642,0.02470126,0.022365272,-0.025781568,-0.06669397,0.08701351,0.11335998,0.043205924,0.06514237,0.061190303,0.0072106025,0.044076096,-0.008959515,0.0010316304,0.022995275,-0.03788038,-0.08547515,-0.065448426,-0.083984345,-0.0368511,-0.021908388,0.01830555,0.030375952,-0.016170738,-0.06214017,-0.09731451,0.07003788,0.031593554,-0.016766474,-0.011313405,0.029860796,-0.013175695,0.032340895,1.7778417e-33,-0.0007227906,0.0027992819,0.0007845019,0.09254265,-0.023618009,0.114717565,-0.03854762,0.033639584,-0.06575042,0.0031860955,-0.008982418,0.06345587,0.058613434,0.0011604407,0.02210142,0.07419398,-0.11120249,0.028635709,0.07614241,0.01587872,-0.024748296,0.015852463,-0.03610682,0.028728882,0.012389744,0.05768215,-0.05632282,-0.08013318,0.0028472915,0.062089846,0.026961487,0.10284172,-0.01542959,-0.04123636,0.06996183,-0.011208751,0.059424233,-0.017435703,0.055541433,-0.008207001,0.005047207,0.019098563,0.03554763,0.02939038,0.0036687828,-0.013440741,0.09334242,0.056392528,0.09174451,-0.009910385,-0.034381192,-0.089347966,-0.008563717,-0.05881154,-0.038521193,0.024033723,-0.12844527,0.12670772,-0.013931238,-0.06885852,0.066082425,-0.012423216,0.038204104,0.022249257,-0.092349,-0.025552692,0.030141938,0.058387764,0.11707555,0.042154256,-0.0823534,-0.01769908,0.025361987,0.019508662,0.0010542641,-0.012586612,-0.037771262,-0.07275975,0.05425958,0.022547565,-0.156631,5.7773894e-05,0.0946016,0.04969142,0.009140761,0.11165399,0.014992425,0.019723969,0.030880945,0.10841805,-0.058010653,0.06533031,0.024080565,-0.010092034,0.018237986,-3.0387789e-33,-0.028649066,-0.011232072,-0.012072298,-0.026658684,0.038169414,-0.026175128,-0.06136706,0.019640842,-0.10188733,-0.113422334,-0.022976998,-0.12892199,0.10817752,-0.019123936,-0.022928469,0.0603865,-0.034762982,-0.06928001,-0.06939672,-0.06687928,0.019239955,-0.020374477,0.049068615,0.026952853,0.0014800031,-0.027856756,0.017774858,0.03808853,-0.06310992,-0.059484493,0.05987828,0.02277517,-0.0440929,0.003950206,-0.0024027093,0.14871703,-0.029014587,0.032251354,0.0053095385,0.05031486,-0.013546086,0.046161335,0.03206883,0.04744613,-0.012670931,0.06540674,0.0020928723,-0.11975216,-0.051317666,-0.031509124,0.039907098,-0.03426974,-0.06755897,-0.0019496813,0.0069189365,-0.033277553,-0.0944525,-0.025905648,-0.061786123,0.002546048,0.028830593,0.043789655,-0.075964,0.015920782,0.021530708,-0.007897832,-0.06996385,0.07625586,0.006027351,0.058129042,0.08130251,-0.07902554,-0.13259599,0.03780391,-0.019362444,0.034305513,-0.05122317,-0.058532048,-0.009874366,-0.0031301365,-0.040264953,-0.019595146,-0.0026486993,-0.014223498,-0.058845174,-0.003421476,-0.021845814,0.019861747,0.008843933,0.050086685,-0.025549764,-0.02390708,-0.071879245,-0.12912032,-0.045620874,-2.3063293e-08,0.040926773,-0.01607732,0.0210109,-0.0035038348,-0.017644916,-0.0009775044,-0.035676964,0.029877866,0.011750153,0.088141374,0.0025678368,0.012070652,0.01781606,0.018832698,-0.033357,-0.027124833,0.12936696,0.04802583,-0.031056147,-0.065852515,0.0005481527,-0.005529992,-0.03161448,-0.06835315,0.0015189956,0.0365137,-0.053695306,-0.01147958,-0.0030651237,-0.013047248,0.0040874146,-0.0042223837,-0.030861879,-0.06712491,-0.014004707,0.05816028,-0.06986443,-0.10682665,-0.00403178,-0.061707053,0.09791442,0.034303386,-0.041035794,0.0021287438,0.072596304,-0.10693891,-0.0127427615,0.009843152,-0.00060081633,0.047154024,-0.03839654,-0.008566605,0.044679333,0.04667428,0.063398376,-0.03875255,0.01648456,0.07988402,-0.015728192,0.022738239,0.026753495,0.057753697,0.003522887,-0.06812347} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:46.618025+00 2026-01-25 01:27:52.185323+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 647 google ChZDSUhNMG9nS0VJQ0FnSUNINkltMlpBEAE 1 t 650 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Atención personal de primera por parte de su personal, Carlos y Antonio. Muchas gracias por todo. atención personal de primera por parte de su personal, carlos y antonio. muchas gracias por todo. 5 2025-01-25 01:27:48.343047+00 es v5.1 A1.03 {} V+ I3 CR-N {} {"A1.03": "Atención personal de primera por parte de su personal, Carlos y Antonio. Muchas gracias por todo."} {0.00030895372,0.040439077,0.035282042,0.00074590696,-0.0016071504,-0.020208148,0.08838706,0.06395958,0.019975329,0.017582076,0.05793818,-0.024117412,-0.014945292,-0.03509354,0.07910335,-0.00830897,-0.02125083,0.002083922,5.8551006e-05,0.040737156,0.071718454,-0.0544388,-0.065925226,0.050601628,-0.082836255,0.0072697536,0.06630386,0.03304015,-0.09245233,-0.062825195,0.0014783377,0.040335983,0.097926915,-0.031368162,0.015520586,-0.024539666,0.019681964,0.01019222,0.01071916,0.008181176,-0.11790841,-0.022585806,0.013154445,0.06948016,0.009865805,-0.075233765,0.061755385,0.032667696,0.0400248,0.061875466,-0.032295715,-0.036357794,-0.027023157,0.029373903,0.032731608,0.0101290075,-0.008283889,-0.014333182,0.040631622,0.054039765,0.05355981,0.039018106,-0.114548184,0.02299284,0.029630298,-0.016798327,0.022365704,-0.017680233,-0.071103506,0.05175554,0.06982143,-0.045929234,0.021101246,0.11034313,-0.02812704,0.009341993,-0.035327084,-0.041293073,-0.07818035,-0.0037325849,-0.08759183,0.021892568,-0.059289318,-0.049026664,0.01649587,-0.0087853465,0.0040546414,-0.02841325,-0.0060186167,0.030350119,-0.027368588,0.025574043,-0.019526312,-0.022663305,-0.00720623,0.05707477,-0.002819534,0.01305053,-0.027486764,0.043607846,0.11752262,0.03279524,0.07975578,0.123802684,-0.019238992,0.10602765,-0.0013896379,-0.027493542,-0.04052321,0.031695344,-0.04823471,-0.04205574,-0.07645751,-0.039314307,-0.012834182,-0.007401891,0.064362496,0.0031856305,0.009315439,-0.057615638,0.04344327,0.019504942,-0.058449697,-0.025931422,-0.00910796,0.006190837,0.041172404,3.6462406e-33,-0.06601395,-0.0047905054,-0.03404583,0.122398615,-0.066290125,0.041266516,-0.047676977,0.0031589828,-0.030968837,0.015784252,0.0023521825,0.0910133,0.018532712,0.033453636,0.04033153,0.104126975,-0.06310072,0.004429485,0.058977976,0.036854036,-0.047595117,0.042519663,-0.052661564,0.0056649656,-0.0019475109,0.046686903,0.025408883,-0.09204054,-0.08527603,0.01708728,-0.03593161,0.057013206,0.03341401,-0.057135276,0.061679903,-0.06994729,0.08200535,-0.013006815,-0.025801055,-0.029378671,0.054898273,0.02271152,0.042409755,0.016732875,-0.07416808,-0.0024618073,-0.007962849,0.10342827,0.06780783,-0.016999213,-0.012135182,-0.07979916,-0.07678477,-0.0437521,-0.044799004,0.023639653,-0.09944575,0.056174662,0.012624257,-0.039220165,0.026174875,0.03206572,0.070340484,0.020842182,-0.074450955,-0.06043624,0.028953198,0.041032523,0.10816724,0.0636248,-0.13370311,-0.016308663,0.010212834,-0.008547622,-0.014446306,0.014335951,0.026679331,0.043744124,-0.0027946995,0.03402584,-0.06809628,0.036780324,0.008511808,0.016447641,0.04649939,0.115862034,0.0180749,-0.013560406,-0.057749778,0.16012101,0.020432757,0.10340415,0.019044401,-0.010422557,0.013073534,-5.3359557e-33,-0.036570534,-0.05001258,0.025249658,-0.029877616,0.05647416,-0.060046043,-0.028114136,-0.017510353,-0.044278447,-0.08487126,-0.0841202,-0.11730094,0.083284944,-0.03411616,-0.04314641,0.050840452,0.0044490807,-0.090339914,-0.06874389,-0.040009085,-0.020007087,0.10785042,0.057814468,-0.034164313,-0.0030800772,-0.09753723,0.008567837,0.11278071,-0.01564414,-0.021133687,0.044409387,-0.026010925,-0.04704197,-0.04514085,-0.057482094,0.08345169,-0.037188686,0.037851576,0.07853368,0.0628572,-0.0030979963,0.048688427,-0.024263322,0.025700508,0.015761739,0.07026903,0.0070379074,-0.1594876,-0.061366983,-0.045738623,-0.00704518,-0.07922489,-0.076147266,-0.005311186,0.04293357,-0.048641607,0.05639711,-0.06523969,-0.030000877,0.00624012,0.009500077,0.037932012,0.018900607,-0.0160787,0.03184629,0.009001882,-0.038173757,0.04126246,-0.01359565,0.062963165,0.081704274,-0.085054666,-0.074350856,0.042582415,-0.020889023,-0.0004840212,-0.07215311,0.021597408,0.0117563885,0.02524722,-0.0046791723,-0.0006989067,-0.07136834,-0.04558334,0.016716506,-0.024666501,-0.052611634,0.027724713,0.017243624,0.024816548,0.029258018,-0.021369249,-0.10558018,-0.109416366,-0.107904695,-2.7160848e-08,0.0034289898,-0.038749225,-0.0015329005,-0.021724219,0.0021268514,0.00085562054,-0.0041245166,0.04432487,0.0701082,0.09058757,0.02949559,-0.01311148,-0.018789424,0.02264561,-0.017903991,0.013216111,0.05148382,0.047588166,-0.04018678,-0.06482011,0.034170967,-0.032054648,-0.09241104,-0.0032596218,0.027356256,0.07897435,-0.034384403,-0.0059582777,-0.028788714,-0.026749903,-0.0056323465,-0.022342613,0.003445192,-0.053279597,0.019369869,0.0025443062,0.0070510977,-0.034279454,-0.0030919772,-0.0462755,0.1055939,-0.00013664944,-0.068289325,0.04772825,-0.009680624,-0.09971257,0.00032800494,-0.035590336,-0.02903953,0.08069965,-0.0058348808,-0.06557304,0.049325973,0.021249317,0.031485114,-0.037220843,0.016151758,0.05170657,-0.02595555,-0.03895525,0.08044202,0.08509699,-0.017575521,-0.055553198} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:38.842364+00 2026-01-25 01:27:52.191814+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 650 google ChZDSUhNMG9nS0VJQ0FnSUQ3aEpyMlNBEAE 1 t 653 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carlos Y Dani son muy simpáticos! Muy muy recomendable carlos y dani son muy simpáticos! muy muy recomendable 5 2025-01-25 01:27:48.343052+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Carlos Y Dani son muy simpáticos! Muy muy recomendable"} {-0.05489418,-0.040345766,-0.028807262,-0.0130860135,-0.056529377,-0.017931126,0.07343954,0.022936027,0.020421576,-0.023802323,0.054673743,-0.048489306,-0.013280798,0.049809035,0.02000371,0.009894865,0.08465025,0.07416204,0.007159228,-0.049305953,0.026138527,-0.010266444,0.044127613,0.079692304,-0.088381104,-0.00015275872,0.0466127,0.023671314,-0.046644606,-0.060746096,0.0447425,0.11225919,0.025527596,-0.08046899,-0.043462783,-0.07166795,0.037541594,-0.07829069,0.074077524,0.06508625,-0.09236752,0.039114423,-0.017246593,0.022327852,-0.031089652,-0.08771202,0.05272472,0.0072966283,0.05630912,0.10800172,-0.101167016,-0.038158268,0.009008863,0.0058977148,0.017331047,-0.04822641,-0.057823583,-0.010973239,-0.0026152977,-0.0030507774,-0.024473729,-0.0030393626,-0.045611344,-0.017134663,-0.0813678,-0.08836203,0.022066176,0.05621114,-0.035224903,0.053077675,0.0042811437,-0.036819626,0.07756753,0.03799624,-0.0034519965,0.13982329,0.0029701225,-0.04824966,-0.0594244,-0.04596882,-0.025122194,-0.018818628,-0.0437709,-0.08678919,0.03780278,-0.0001132057,-0.01597317,0.014193041,-0.07764965,-0.02747457,0.05135599,0.06171998,0.0365421,0.038135957,0.0025065502,0.04872897,0.04471112,-0.02227972,-0.114418976,0.03811316,0.013567214,0.043637883,0.1281954,0.056336794,-0.01885342,0.019328449,0.040161386,-0.04453164,0.034249946,-0.0371489,-0.050634857,-0.027976383,-0.057962924,0.01945023,-0.02810084,0.00095534505,0.10326311,0.051027156,-0.036723763,-0.07093185,0.008096266,0.031821776,-0.08224937,-0.06660943,0.033917274,-0.03556368,0.05414581,4.1893193e-33,-0.043015998,-0.008358169,-0.052744564,0.073180065,0.0037737123,0.032872334,0.008378356,-0.025873732,-0.072265565,-0.045465898,-0.07798544,-0.052538265,-0.0307013,0.09581806,-0.013620058,0.03679149,-0.035855833,-0.05109678,-0.030671252,0.031158535,-0.058785312,0.08152681,-0.04532339,0.007890467,0.015162389,0.056317918,-0.04368463,-0.07754281,0.021011092,0.041226815,-0.046530068,0.033130262,-0.046579633,-0.007878325,-0.061431926,-0.0060444498,-0.03719571,-0.020910233,-0.03846125,0.028917713,0.04517495,0.00653777,-0.027590191,0.07623725,-0.06966226,0.0273224,0.032778855,0.090595275,0.07333724,-0.028562589,-0.076487415,-0.081808984,-0.053163394,-0.027085427,0.009776509,-0.040064123,-0.019444302,0.089883275,-0.007122744,-0.068622276,0.0415757,-0.013601645,0.054377638,-0.017553667,-0.06309811,-0.065617606,-0.078684874,-0.004847484,0.053798832,0.055898525,-0.02569423,-0.018075671,0.01713442,-0.029224172,0.04105443,-0.014617173,0.040064987,-0.038662534,0.049473856,0.04353487,-0.05616585,0.05067411,0.0061622844,0.010809583,-0.012974134,0.029610584,0.009380248,0.029154092,-0.008852512,0.0673582,-0.07620639,0.03377375,0.09049354,-0.04951228,0.033613667,-4.718605e-33,0.031262163,0.009527236,0.051599957,0.115398824,0.068847336,-0.02282328,0.003107151,0.013447031,0.036794867,-0.15537456,-0.042894926,-0.13590525,0.013209105,-0.09927475,-0.013544729,0.101907834,0.021305976,-0.00091705064,-0.03577914,0.021665199,-0.017682502,0.07025046,-0.021782238,-0.082116626,-0.0027847372,-0.05038432,0.06323313,0.049382735,-0.024258185,0.054106068,-0.05158883,-0.04411918,-0.04741218,-0.019716192,-0.009001724,0.12177591,-0.023730205,0.07468214,-0.032525126,0.05003392,-0.032872967,0.018252648,-0.021235408,0.1476951,0.032032963,0.008082373,-0.047667515,-0.05300454,0.0061065387,4.4519496e-05,0.008610878,0.03184965,-0.063288726,-0.017162519,0.10462929,0.0031952988,0.009147274,-0.06373796,-0.05201226,-0.010161617,-0.06500496,0.040269654,-0.025888149,0.009364933,0.051001817,0.01708948,-0.06509276,-0.0004109554,0.009464203,0.0025278854,0.05581188,-0.033325948,-0.07157053,0.012302538,-0.019536454,-0.008150994,-0.08832724,0.04790084,-0.0152111165,0.09077328,0.059692185,0.0036732978,-0.097557515,0.042369906,0.050498225,0.09648246,0.004687017,-0.055568554,0.05726296,0.046506327,0.064790316,0.02568997,0.0009986679,-0.019320522,0.016105084,-2.2164864e-08,0.033591148,-0.0865422,-0.008132356,-0.0038891644,0.02412811,-0.03110083,-0.092347264,-0.01062927,-0.01931837,0.088953495,0.034489673,0.04261179,-0.010106179,0.080454096,0.0010337081,0.013844585,0.08432679,0.11937658,-0.01563401,0.02755109,0.007487421,-0.0015002126,0.02345212,0.03483536,0.043979846,0.0423282,0.0023155427,-0.05950887,0.06822174,-0.00090302236,0.006373313,-0.011855325,-0.0071351663,-0.06113043,-0.062077634,-0.079889864,-0.02647538,-0.01817476,-0.050168224,-0.015742559,0.09324311,-0.063595064,-0.028810056,0.014233855,0.02022012,-0.1364421,-0.0016146292,-0.03110659,0.012812443,0.038491532,-0.04323278,-0.036609314,0.004345105,0.025919773,0.063359514,0.022257546,0.024198908,0.07294224,-0.016862193,-0.010436762,0.0065730563,0.06819323,0.016178956,-0.08100982} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:25.81167+00 2026-01-25 01:27:52.20013+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 651 google ChdDSUhNMG9nS0VJQ0FnSUNuM3VUNnp3RRAB 1 t 654 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy bueno el servicio estoy encantada Dani y Néstor muy bueno el servicio estoy encantada dani y néstor 5 2025-01-25 01:27:48.343054+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy bueno el servicio estoy encantada Dani y Néstor"} {-0.010194086,0.06529769,-0.0050506736,-0.050878,-0.07017522,-0.058687206,0.041866746,-0.010755099,0.013369831,-0.019176405,0.024899004,0.019006865,-0.035473853,-0.015189044,0.05533456,0.030130109,0.004014018,0.020267682,-0.017998897,0.023066645,0.11998721,-0.07166765,-0.08802305,0.119120106,-0.08127237,0.04481894,-0.0075121354,-0.028194338,-0.030603273,-0.05604308,0.0037939716,0.013741224,0.07187297,0.020167507,0.014547285,0.03229678,0.07149612,-0.09994817,-0.009254545,0.052862134,-0.09474869,-0.0577223,-0.025150886,-0.04316849,0.0011444243,-0.083097935,0.022987464,0.019058289,0.045871492,-0.0654537,-0.11117478,-0.0092452355,-0.005080743,-0.022227466,0.022860242,0.025306325,-0.013385852,-0.02363013,0.014466707,-0.018886354,-0.0037506067,0.0028408405,-0.0028196871,0.023450235,0.023558747,-0.08957033,0.038984958,-0.010451897,-0.060899075,0.0014174976,0.065471195,-0.035187814,0.03316556,0.04970891,-0.064873196,0.051857274,0.039885808,0.0332603,-0.0300022,-0.049082447,0.006126859,-0.013457384,-0.026604217,0.0011032389,0.02966899,-0.007207168,-0.027635636,0.015597082,0.083380274,0.002059155,0.036132198,-0.00027905163,-0.047481228,-0.0022211715,-0.022068515,0.020955086,0.04171005,-0.03613058,-0.09218147,0.11642661,0.09782526,-0.009385014,0.059686296,0.031669654,0.008114607,0.045767743,0.019039504,-0.016893696,0.0005609372,0.042373907,-0.07687113,-0.09150198,-0.10775225,-0.004634247,-0.06952487,-0.023802701,0.005271009,-0.014157482,-0.048792526,-0.03745768,0.057543963,0.020158483,-0.046504498,0.004954909,-0.01338648,-0.012788837,0.07683092,5.937792e-33,-0.018392948,-0.040184762,0.036809366,0.066160485,-0.06392134,0.04817945,-0.03640704,0.050155133,-0.024716213,-0.050622217,-0.025689522,0.05309749,0.080503605,-0.011714874,0.02025274,0.0021896677,-0.018321177,0.03283523,0.045139026,-0.030206352,-0.049997002,-0.0041395533,-0.011460083,0.019646378,-0.0067542195,0.027868543,-0.027490146,-0.09339363,-0.04955468,0.093642905,0.025244785,0.0190588,-0.0021015191,-0.0031257907,0.021975897,0.004975337,0.024415337,-0.037509616,-0.021681169,-0.018466363,-0.023610258,0.040953983,0.058085386,0.05534055,-0.023808312,-0.03406178,0.09781021,0.093344264,0.10248214,-0.0133087,-0.039416578,-0.09222666,-0.09623771,-0.075959116,-0.016207289,0.014189304,-0.0589154,0.09315384,-0.023664191,-0.11067731,0.03299532,-0.067394756,0.07363156,-0.037557445,-0.037713736,-0.0006019646,0.0064432076,0.09803833,0.095409065,0.03703151,-0.043292366,-0.047281206,0.034296613,0.056731135,-0.009385951,0.02015328,0.041093513,-0.03984766,-0.0053703506,0.07466175,-0.09193628,0.053052016,0.08606688,0.03944953,0.028421622,0.07053336,0.07074081,0.055803627,-0.008521377,0.097252406,-0.056210224,0.071633786,0.03875782,-0.04841286,0.05084972,-6.923731e-33,-0.04072386,-0.0028423704,0.012375872,-0.05576155,0.005807369,0.017033916,0.00013038318,0.0071770456,-0.07401928,-0.02287578,-0.0307345,-0.15233752,0.13704173,-0.056023117,-0.0863781,0.10073502,-0.039089203,-0.045855872,-0.057030037,-0.005346564,-0.06338383,0.033378735,0.030938873,0.04209593,0.021203693,-0.033800494,-0.00073634257,0.014284251,-0.039900508,-0.07905438,0.06627953,-0.04032031,-0.10147298,0.06869747,-0.0022329395,0.13146426,-0.0047682673,0.06432699,0.03673918,0.050179705,-0.019385574,0.013347828,0.000679372,0.024530945,-0.053881437,0.022917831,-0.0025289697,-0.11328716,0.013800558,-0.02788421,0.02734483,-0.007761099,-0.09097583,0.017343188,0.022631325,-0.010628094,-0.1065788,-0.014980149,-0.12318604,0.02331782,0.070602655,0.029323649,-0.07130172,0.06381563,0.05345208,-0.009774936,-0.08222361,0.015415172,-0.026722258,0.06706443,0.10020102,-0.040666282,-0.11898422,0.044057585,-0.01460992,-0.023805065,-0.065322354,-0.050802633,-0.050844233,-0.03758824,0.013363211,-0.040196,-0.02611543,-0.03078625,-0.05553423,-0.0378315,0.07126407,0.02938165,-0.02729722,0.055091415,0.018928245,0.0039411597,-0.06866347,-0.028931495,-0.014597139,-2.6751394e-08,0.041190077,-0.03365374,-0.00075972866,0.056350246,-0.03038506,-0.0030593483,-0.039855205,-0.021830762,0.02115591,0.028433537,-0.03488368,-0.033035133,-0.017818889,0.0032248932,-0.01240781,0.035899803,0.076943435,0.07392031,0.017859945,-0.06518007,0.068430156,-0.065968804,-0.017610304,-0.041074637,0.031133097,0.06968607,-0.052077245,0.017276628,0.03416696,-0.017713312,-0.018393086,-0.07382039,-0.061325453,-0.078319825,-0.03300841,0.059312176,-0.05550965,-0.041475616,-0.0082696825,0.009312604,0.108893394,0.08279209,-0.035088055,0.010443327,0.052255835,0.009032118,-0.05051815,0.042737328,-0.017722769,0.022691939,-0.0700078,-0.0538661,0.09739724,0.039998874,0.056834385,-0.009098806,0.048801497,0.043902926,0.027582422,0.04781714,-0.011660177,0.045819737,0.04071936,-0.09787015} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:22.304363+00 2026-01-25 01:27:52.201999+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1192 google Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB 1 t 1195 Soho Club unknown Nice place, great events! nice place, great events! 5 2025-10-31 18:34:31.336452+00 en v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Nice place, great events!"} {0.04728996,0.06634837,0.03964151,0.0022350608,-0.05227109,0.04462686,-0.02171476,-0.035612393,-0.00745617,0.0020116742,0.022072135,0.015197563,-0.0035813313,0.019890074,-0.005004477,-0.024815688,0.022313919,-0.05145847,-0.0021494168,-0.070467964,-0.05630322,-0.06694774,0.05558701,0.015638057,-0.07942102,0.07778653,-0.05304284,0.080603756,0.073781155,-0.020236263,-0.037131637,-0.0047932095,-0.053872034,0.018711885,0.017928278,0.088335484,-0.040713824,-0.1597553,0.027679525,0.028566225,0.010989149,0.04133191,0.046763685,0.0073843915,-0.001411827,0.08689032,0.06217206,-0.044499893,0.040182512,0.07607494,0.05170623,0.053466767,0.014491046,-0.0913601,-0.0501455,0.04450028,-0.037855882,-0.13268958,0.008914225,-0.15469487,0.07301154,0.033470757,-0.107886106,0.07681038,-0.06301314,-0.024316492,0.0065186224,0.12640308,0.04895993,-0.044537377,0.010182857,0.029073652,0.07599465,-0.023384549,0.0330981,0.024792586,-0.027837504,-0.019943997,-0.045551505,0.0138205,0.054143183,-0.06643178,0.026878564,0.010918297,-0.0066939024,-0.10478535,-0.03046258,0.02887949,0.053185534,-0.044193268,-0.014943555,0.101178795,-0.03003261,0.02203692,-0.0354569,0.009715689,-0.043813486,0.066566534,0.04469478,0.025407271,0.05261482,0.0983785,-0.063816406,0.04044393,0.014131798,0.023069344,-0.05735285,0.02346379,-0.054301903,-0.029784009,0.018669764,0.024280172,0.018837932,0.036640238,-0.0216225,0.142332,0.010626551,0.067100435,-0.017998807,-0.08223741,0.018144809,0.02103621,-0.00840267,0.07061501,0.032629743,0.0132285245,0.037475325,-5.069646e-33,0.03137736,-0.011782919,-0.05275174,0.087339945,0.06729199,0.07041149,-0.071171574,-0.05248777,-0.070213675,-0.0007274592,0.028756239,0.004620223,-0.007428519,-0.060675506,-0.029365977,-0.02786308,-0.0038996087,-0.014761913,-0.012400968,0.0068054153,-0.14293672,-0.008096061,-0.04699652,0.020194516,-0.0042152945,0.07254662,0.031847067,0.01503872,0.04182802,0.014989738,-0.03207664,-0.030373937,0.014347896,0.0040529124,0.024465125,-0.014966895,-0.061701696,-0.050420564,-0.002497104,0.054912858,0.055030707,-0.015170682,-0.082530014,-0.028980939,-0.0074241846,0.023194727,0.00977963,0.032407437,0.11679651,-0.043117292,-0.104446106,-0.032813296,-0.052450616,0.051801063,0.043394376,-0.014724817,-0.039606985,-0.0041070106,0.03398607,-0.007010101,0.03255276,0.06332683,-0.026950257,-0.06208643,-0.035358313,-0.06761422,0.03193467,0.014768446,0.05247139,0.00068445446,0.024205582,0.023198834,0.098456986,-0.07945653,0.047361404,0.06508551,-0.05895657,-0.012868251,-0.019297946,0.046168283,0.021747742,0.0055723162,-0.027047992,0.018266356,0.025323732,0.004268382,-0.015346651,-0.10799559,-0.053698804,-0.015305397,-0.070762254,0.004925026,0.03908207,-0.04952111,-0.058037415,2.9653428e-33,0.08001897,0.009523471,0.022957103,-0.0009772398,0.004854428,-0.003881857,-0.06474267,-0.0003231841,0.0005787701,0.09247254,-0.033090264,0.08173185,0.056286693,-0.028232612,-0.037571304,0.0064090844,0.05685498,0.031941354,-0.046512812,-0.041261308,-0.05457094,0.042168345,-0.020276587,-0.03567053,-0.047171555,0.024122769,-0.018155368,-0.024418266,0.025194021,-0.069436334,-0.08268744,0.034392636,-0.0668094,-0.029860148,0.06252928,0.08569794,0.025226433,-0.044665415,-0.030764017,-0.04249649,0.0346816,-0.018011553,-0.03444185,0.09220592,-0.01431831,0.013138551,-0.036311917,0.043931447,0.035337128,-0.049423687,-0.08032235,-0.0061252583,-0.018002182,-0.036024395,0.08312954,-0.07341739,0.03639606,-0.04853713,-0.017399676,-0.02277949,-0.11296008,0.05438971,-0.025089117,0.09094054,0.113441,-0.024891978,-0.004773715,0.03955657,-0.06331483,0.062033128,-0.06234303,0.053896148,-0.053739097,0.07054364,-0.0028736435,-0.05977022,0.081062816,0.015985668,0.034441058,0.040777333,-0.0029299115,0.109070875,-0.026673354,-0.019748164,0.040173482,0.08359884,-0.032131758,-0.053970456,-0.03847375,0.02239597,-0.025515703,0.0763368,-0.017607275,-0.023848537,-0.041095838,-1.58049e-08,0.02366277,0.12332201,-0.0590602,0.011708007,-0.010687127,-0.058504846,-0.041714035,0.029646808,-0.0015588247,0.07659064,-0.026267648,-0.012764265,-0.049192235,0.018938765,0.03555268,0.014552162,0.009132873,0.08867428,-0.03153638,-0.056577697,0.03738704,0.026867492,0.0190153,0.021927442,-0.031602114,-0.038048755,0.04928623,0.020875398,0.028321618,-0.12494797,-0.028418984,0.04812915,-0.044702604,0.004524225,-0.031187812,0.02665181,-0.04572621,-0.050522603,0.08701577,-0.0630023,-0.041270897,-0.117574826,0.06218458,0.014896858,-0.017075378,0.08240318,0.020018246,0.02773556,-0.02347641,-0.04794293,-0.062493734,-0.029477432,-0.019260626,0.038739298,0.0025800173,0.020116191,0.03454554,-0.026027683,0.018528454,0.1138842,0.022655515,0.025781913,-0.13579558,0.06713128} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:39:03.020614+00 2026-01-29 18:36:00.451002+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1198 google ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB 1 t 1201 Soho Club unknown Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood.\nI ended up losing my phone, but they contacted me the next day so I could come right over and get it back.\nDefinitely a place I’ll visit again if I’m in Vilnius. great place, with good atmosphere. either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood. i ended up losing my phone, but they contacted me the next day so i could come right over and get it back. definitely a place i’ll visit again if i’m in vilnius. 5 2022-01-30 18:34:31.336452+00 en v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chi", "P3.04": "I ended up losing my phone, but they contacted me the next day so I could come right over and get it", "R2.01": "Definitely a place I’ll visit again if I’m in Vilnius."} {0.029860582,-0.06653927,0.011776588,0.048877798,-0.07051753,0.039184634,0.033564206,-0.054004397,-0.012719826,-0.056727163,-0.003767405,0.04769279,0.0043119425,-0.069880836,0.06498001,0.020117667,0.09436485,-0.06326367,-0.041643806,-0.036256287,-0.055645954,-0.035901632,0.025322773,0.08001223,-0.037571445,-0.012447808,-0.020603487,0.09915278,0.054698154,-0.009156182,-0.048149582,0.12428597,-0.017332174,0.0645088,-0.023714056,0.010920217,-0.041303053,-0.14530067,-0.005914105,0.02509489,0.017507832,0.04317795,0.022939747,-0.00017950904,-0.014580002,0.035810225,-0.009863566,-0.03506432,0.04587768,0.057612743,0.06466002,0.029469885,0.053389642,0.008961611,-0.06657356,0.034436293,-0.0054176007,-0.008732206,0.049236,0.0040163714,0.10492791,0.036508013,-0.037902407,0.030999016,0.012454503,-0.066193685,-0.046362326,0.025645701,0.09612403,-0.08869757,-0.0041121086,-0.028350009,0.034231815,0.0055070473,-0.07146956,-0.035065543,-0.04498353,-0.003612081,-0.035413098,0.092102304,0.103698686,-0.041562922,-0.022384027,0.0151509,-0.050394658,-0.08833799,-0.016581189,0.046810683,0.022240503,0.013337278,-0.023381993,0.07491221,-0.07060143,-0.060639765,-0.023017852,0.043590218,-0.06785255,0.010618798,0.0029817063,0.028199162,0.0067665484,0.09663242,-0.038086634,0.020204304,-0.066951014,-0.08453536,-0.020209841,0.053478196,0.00052181096,-0.0033648917,-0.023120748,-0.021331964,0.049516734,0.016324885,0.012468137,0.042920116,0.08931607,0.04072867,0.016775139,0.028009389,0.05939707,0.023309844,0.021406315,0.003708187,-0.015525499,0.02525731,-0.064682595,-3.6008816e-33,0.040535375,0.07024098,0.046591915,0.060752384,0.06868765,-0.014934082,-0.08439735,-0.092462584,-0.047083206,0.02575484,0.04928328,-0.031058064,-0.011610128,-0.049350914,-0.011824023,0.04920147,0.09190129,-0.068105765,-0.10067578,0.0028408666,-0.05382697,0.0031633826,-0.028729863,0.05380284,-0.032374803,0.080043525,0.055345073,-0.0057275724,0.029915804,-0.028483538,-0.021252565,-0.007866804,-0.06584173,0.018526329,0.04676042,0.028575046,-0.03375811,-0.0033692822,0.024888169,0.013214061,0.05958498,-0.006530942,-0.04198113,0.08588131,0.029792309,0.047830425,0.021775767,-0.026256973,0.071140565,-0.041529786,-0.101168565,0.02377024,-0.073085874,0.06310173,-0.0038500316,-0.00083115225,-0.0025399455,0.04494276,0.046866667,-0.02073057,0.030027412,-0.03905741,-0.041510176,-0.08787175,0.03242668,-0.048621487,-0.07168583,-0.041453198,0.066427074,-0.02721113,0.019926922,-0.04002103,0.07915512,0.06240591,0.00932758,0.020579956,-0.07786605,-0.0024868231,-0.017388918,0.010017346,0.012806313,0.02023452,-0.041481413,0.053816997,0.03361449,-0.09794896,0.024727682,-0.1497437,-0.041515563,0.015634509,-0.10091375,0.049038187,0.09716736,-0.0010781479,-0.039185494,1.1558291e-33,0.07229172,-0.045824103,-0.017316168,0.0020526582,-0.042312365,-0.010253867,-0.083361655,0.043775983,0.0012309144,0.10432199,-0.055552643,-0.0020878345,0.06510537,0.05007711,0.048017733,0.045143634,0.13210133,-0.026462255,-0.059020396,0.017070852,-0.09129779,0.08985029,0.05285643,0.0076137516,-0.08571714,0.029518802,0.0015177903,-0.04220568,-0.03726397,0.02392096,-0.017853066,-0.05198645,-0.012591393,0.007421671,0.04446974,0.08183141,0.04411179,-0.0845666,-0.10460328,0.0257003,-0.012610939,-0.045900717,0.007565109,0.037144344,0.0462312,-0.06649561,0.005730407,0.05185426,-0.034550726,-0.06251744,0.08682356,0.029352933,-0.06751633,0.0072912327,0.005190431,-0.024641868,0.0033869026,-0.07090543,0.0082696155,-0.057879075,-0.039130762,-0.016919155,-0.08662742,0.017977335,-0.0029502097,0.03546835,0.07146505,0.012330074,-0.050435808,0.00901702,-0.06539249,0.0069885612,0.0005639526,0.121778145,0.053516075,-0.020942094,0.047061034,0.003394878,0.038506564,-0.023017732,-0.022338333,-0.0057487553,-0.061189566,-0.09744757,0.0990254,0.0022354277,0.0028604139,-0.00056322984,-0.04559926,-0.07218316,5.5647964e-05,0.051101282,-0.10717199,-0.026284589,0.016260438,-3.4641573e-08,0.058471646,0.0065618944,-0.033813387,0.02685976,-0.041895166,-0.13765751,0.03462949,0.026360124,0.01707743,0.016248455,-0.05436559,-0.0042030537,-0.006236047,0.010408695,0.019220034,0.05611167,0.0069025382,0.03183522,-0.010054643,0.08480357,0.0334491,0.052860737,-0.006921946,-0.008296958,-0.052718833,-0.0041542267,0.047842324,-0.017161934,-0.030553939,-0.05980049,-0.012855514,0.026134545,0.027625127,0.005085346,-0.050507344,-0.032066073,0.085018665,-0.10067191,0.047000896,0.02497021,-0.054923702,-0.09691977,-0.0065747867,0.0054575694,-0.06202143,-0.034138218,0.14170207,-0.03763391,-0.0070185787,0.03166428,-0.12470424,0.0012273351,-0.02515283,0.046168324,-0.016806368,-0.053246025,-0.048133202,0.017586635,-0.034964733,0.06328668,0.011263786,0.0347846,-0.12436521,-0.060343437} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:40:36.504279+00 2026-01-29 18:36:00.464855+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1199 google ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE 1 t 1202 Soho Club unknown Yesterday we were looking to have some fun and decided to visit this club. At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. Excuse me, but since when there is some kind of limit of taking your belongings back!? We were also incredibly dissatisfied with the staff at the bar. We asked for a San Francisco cocktail and a bartender did not even know what that is and told us to look at the menu. We were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj was without experience and doesn’t understand the basics of Dj’ing (Synchronizing 2 songs at once, going from one song to the other so that there is no pause). It felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. Overall, the environment its self is pretty cozy and chill but the service is tragedy. People working there clearly hate the job and do not give a damn about customers. yesterday we were looking to have some fun and decided to visit this club. at first everything seemed kinda okay, although, we missed the smile on staff’s faces. later on, i wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. excuse me, but since when there is some kind of limit of taking your belongings back!? we were also incredibly dissatisfied with the staff at the bar. we asked for a san francisco cocktail and a bartender did not even know what that is and told us to look at the menu. we were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the dj was without experience and doesn’t understand the basics of dj’ing (synchronizing 2 songs at once, going from one song to the other so that there is no pause). it felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. overall, the environment its self is pretty cozy and chill but the service is tragedy. people working there clearly hate the job and do not give a damn about customers. 1 2024-01-30 18:34:31.336452+00 en v5.1 P1.02 {P1.01} V- I3 CR-N {} {"E1.02": "Overall, the environment its self is pretty cozy and chill but the service is tragedy. People workin", "E1.04": "Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj ", "P1.02": "At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I w"} {0.044953316,0.04275286,0.06446631,-0.023809848,0.04247569,-0.008391212,0.12034201,-0.03326791,0.051665086,-0.075698696,-0.01713412,-0.01111633,-0.020552436,-0.06951393,0.019185603,-0.013921409,0.06560136,-0.07201596,-0.04965784,0.092438795,-0.07543154,-0.04302431,-0.0625129,-0.023873093,-0.06775644,0.05275093,0.014025549,-4.9239043e-05,-0.027296506,-0.035653356,0.05330679,0.08845662,0.03046652,-0.006048131,-0.056846004,0.06218155,0.033640217,-0.005490752,-0.006726506,0.057872653,-0.028401176,-0.0014942589,-0.0074672205,-0.007138489,-0.04358911,-0.0035248543,-0.007938105,-0.050202623,0.022322493,-0.08869328,-0.056920074,0.03291461,-0.015693389,-0.03858493,-0.034274142,-0.0055818995,0.08509817,0.061224747,0.023563026,0.050511006,-0.044397645,-0.044260338,0.022807324,0.052867267,0.06467151,0.011956325,-0.031620286,0.045581143,0.07409483,0.06646398,0.062732756,-0.03655991,0.047470056,0.03012862,0.04105853,-0.007999158,-0.025100408,-0.04374764,0.008325974,-0.04840922,0.024705902,-0.052605897,-0.12580542,-0.005239387,-0.09821769,-0.03751687,-0.026943473,-0.0017725284,0.008636069,0.05364259,-0.0675759,0.021318845,-0.026309267,-0.0775781,0.13742463,0.05587608,-0.056349836,-0.037360087,0.046707645,0.07962143,0.05100869,0.16173236,-0.014512499,-0.0881451,0.035126638,-0.067456864,0.04830738,0.039471444,-0.05630944,0.01762963,-0.041435905,0.037054386,-0.03048138,-0.033110484,0.017475262,0.046782672,0.113060705,-0.0055104373,-0.10250514,-0.04779107,0.029361337,-0.0112909125,0.008112822,0.041686423,-0.0734304,0.01718087,0.056708574,1.1308109e-33,-0.064822316,-0.05305394,-0.02070934,-0.0046291696,0.17185448,-0.0046388293,0.011929309,0.007604038,0.01775248,0.059850283,0.09007284,-0.030682229,0.007130785,-0.016261322,0.032371353,0.024442026,-0.041533947,-0.0026486258,0.005692458,-0.057178307,0.009404501,0.0058429474,-0.045157764,0.054146312,-0.039641503,0.041651167,0.013000145,0.041787315,0.09376996,-0.017594958,-0.07999228,-0.0073168636,-0.013127213,-0.024584876,0.02151605,0.03787264,0.021996666,0.04931489,-0.026834222,-0.087183215,-0.07007754,0.019655408,0.04792015,-0.0018897273,-0.12333421,0.0056460397,-0.030367438,-0.035232183,-0.13469917,0.052336104,-0.007775251,0.05651859,0.15171929,0.06477742,-0.110356316,-0.016461236,0.08037894,-0.033882014,0.046702847,-0.034007147,0.15032494,0.06550269,-0.04020415,0.016033381,0.05432965,-0.013860687,0.059954956,-0.0319847,0.03851485,-0.091188714,-0.052644107,0.07981727,-0.013510716,0.018804697,-0.017733576,0.017680503,-0.10681295,-0.07515085,0.05106996,-0.08921085,0.01802137,-0.0196733,-0.03436517,0.06453451,-0.123265244,-0.019722883,0.09294247,-0.07994831,-0.051676538,0.06714529,-0.09326009,0.059396725,0.03135899,0.0054780943,0.0292784,-3.7802018e-33,0.05153129,-0.021744853,-0.0089397235,-0.043755528,0.057028126,-0.027632825,-0.04408179,0.012083752,0.04024362,0.01615985,0.021136275,-0.007027715,0.00027614762,-0.007998142,-0.017861232,-0.015228382,0.010724359,0.007193221,-0.025131423,-0.033573724,-0.017217666,0.09079627,0.09814828,0.01277195,-0.08608007,0.069844276,0.060133368,-0.0023938236,-0.04272869,-0.040317185,0.049179748,-0.0075789215,0.025623454,-0.03245973,0.05302623,0.06053186,0.010795315,0.022507584,-0.123459555,-0.040160112,0.034225166,0.046916682,-0.05190841,0.029503684,0.044181317,-0.015005894,-0.032716524,-0.024322376,0.0006977511,0.005633278,0.010728882,-0.0033564006,-0.003896413,0.004491622,0.013841385,-0.0088007,0.007597164,-0.0031414626,-0.0120161995,0.01079789,0.036067713,0.004941322,-0.11501388,-0.07903365,0.038017407,-0.023292698,-0.0043518497,-0.011767739,0.06162463,-0.022147648,0.04633714,0.049617503,-0.013203324,-0.009905518,-0.015732441,-0.025401346,-0.088602446,-0.07193971,0.0012220176,-0.010586688,0.007236047,-0.06227801,-0.019601755,0.03133753,-0.015728775,0.0029997022,0.018246127,-0.014878603,-0.07147132,0.01369452,0.046864558,-0.0062739314,-0.05802867,0.058843505,-0.04296719,-6.240013e-08,-0.053075384,-0.069362864,0.038743973,0.06666595,0.013999315,-0.045625925,-0.009746188,-0.07424254,-0.030061398,0.019691264,-0.012211203,-0.06967416,0.0289974,0.058055658,-0.04085161,-0.012827751,-0.018755151,-0.011840817,-0.10121121,0.0045429487,0.022049982,0.035863888,-0.04480006,-0.013805774,-0.024992105,-0.02991795,-0.029134223,0.021627637,-0.0044928584,0.005948981,-0.008809725,-0.014763355,-0.058960613,-0.012620354,-0.10064213,-0.04465926,0.0066343583,-0.06467398,0.03166457,0.022530848,-0.09016685,-0.09075029,-0.04856507,0.05052305,0.013457103,-0.024763778,0.011403628,0.019340765,-0.00021009322,0.053362135,-0.0026874444,-0.026753407,0.018328262,0.0034495578,0.038882654,-0.030789612,-0.06319525,0.16262877,-0.01337068,-0.011592457,-0.024282562,0.043037876,-0.076617405,0.0369124} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:40:56.076199+00 2026-01-29 18:36:00.467741+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 306 google Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB 1 t 309 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Diese Autovermietung ist absolut nicht zu empfehlen.\nErst mal muss man sich am Flughafen samt Gepäck und Kindern quälend lange durchfragen, wo der Standort eigentlich ist. Es gibt keinerlei Hinweisschilder. Kaum eine Person am Flughafen kennt die Firma. Es hat fast 30 Minuten gedauert, bis wir mit Hilfe anderer Personen erfahren haben, wo man per Shuttle abgeholt wird. Auch dort war kein Schild angebracht. Niemand kam. Wir mussten die Hotline von Click Rent anrufen und uns durch eine KI Ansage kämpfen die nur spanisch sprach. Weitere 20 Minuten später wurden wir dann endlich abgeholt.\nVor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik... ohne Worte.\nDas SCHLIMMSTE aber war, das uns\n6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Reinigungskosten von der Kaution "gestohlen" wurden, WEIL etwas Sand auf den Sitzen und im Fußraum zurückgeblieben ist. UNFASSBAR!\nWir haben schon dutzende Male Mietwagen um Urlaub gebucht,\ndoch sowas ist uns bisher niemals untergekommen.\nDas war definitiv das erste und auch das LETZTE MAL das wir hier Kunde waren!!! diese autovermietung ist absolut nicht zu empfehlen. erst mal muss man sich am flughafen samt gepäck und kindern quälend lange durchfragen, wo der standort eigentlich ist. es gibt keinerlei hinweisschilder. kaum eine person am flughafen kennt die firma. es hat fast 30 minuten gedauert, bis wir mit hilfe anderer personen erfahren haben, wo man per shuttle abgeholt wird. auch dort war kein schild angebracht. niemand kam. wir mussten die hotline von click rent anrufen und uns durch eine ki ansage kämpfen die nur spanisch sprach. weitere 20 minuten später wurden wir dann endlich abgeholt. vor ort bekamen wir nicht den gebuchten vw golf mit gangschaltung, sondern einen kia mit automatik... ohne worte. das schlimmste aber war, das uns 6 tage später, bei rückgabe des autos dann tatsächlich noch 50€ reinigungskosten von der kaution "gestohlen" wurden, weil etwas sand auf den sitzen und im fußraum zurückgeblieben ist. unfassbar! wir haben schon dutzende male mietwagen um urlaub gebucht, doch sowas ist uns bisher niemals untergekommen. das war definitiv das erste und auch das letzte mal das wir hier kunde waren!!! 1 2025-11-26 01:27:48.341072+00 de v5.1 J1.03 {} V- I3 CR-N {} {"J1.03": "Diese Autovermietung ist absolut nicht zu empfehlen. Erst mal muss man sich am Flughafen samt Gepäck", "O1.01": "Vor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik..", "P1.02": "Das SCHLIMMSTE aber war, das uns 6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Rei"} {-0.044386577,0.008409407,-0.10939282,-0.027881475,-0.03987544,0.041660037,0.033032395,0.04085673,0.02769693,0.024133366,0.09726846,-0.026670612,-0.010033426,0.019817099,-0.0059083086,-0.012152023,0.025626248,-0.039687324,-0.03854076,-0.023816934,-0.054899123,-0.0780833,0.026665328,0.027479693,-0.06674621,-0.036881458,-0.0065898243,0.015258333,-0.06431547,-0.006448928,0.032643676,-0.0413246,0.039806265,0.044524744,-0.0024143846,0.022431212,0.039977618,-0.005665818,-0.07892899,0.028427275,-0.05366369,-0.029744066,-0.07023704,-0.050135292,-0.027586214,-0.0024250292,-0.030675426,-0.0024900953,0.0009843014,0.04103254,-0.08959994,0.040414575,0.07218184,-0.07107636,0.053186394,-0.10529021,-0.006663557,0.06318647,0.059709758,0.03180079,-0.04016041,-0.066183746,-0.052176684,0.027461879,-0.04218829,-0.015039181,0.01310424,-0.05937904,0.0071479604,0.027712189,0.030486947,-0.047258276,-0.07461582,-0.054817382,0.011871484,0.035694588,-0.045167882,0.042100582,0.001197923,-0.12770858,0.053194944,-0.0032997301,0.054615323,-0.0004063367,-0.019641513,-0.0057389108,0.015481972,0.05141075,0.022240575,0.02808705,-0.016608331,0.08080821,-0.08300923,0.029873727,0.018274913,-0.02656371,0.0027572648,0.011255426,-0.030260038,-0.01787467,0.010846839,-0.015389082,-0.04016556,0.053346336,-0.055298615,-0.034303658,0.008525516,0.04460284,-0.046766154,0.06958134,-0.028215889,-0.0056507816,0.016206266,-0.09714783,-0.0052327556,-0.00064932514,-0.06564392,-0.04076067,0.044275235,0.0070358203,0.035152864,-0.043839104,0.017151097,-0.0022896992,0.11193095,0.006970613,0.10398026,2.0581462e-32,-0.07316532,-0.037977844,-0.08547873,0.031758208,0.012957305,-0.06157632,0.0063119107,0.04185102,-0.01917392,-0.01259362,-0.042441666,-0.03623207,-0.037772454,-0.028562892,0.058563508,-0.06675122,0.07073606,-0.09041254,-0.03155505,-0.06787069,0.026193509,0.032918744,0.046645544,-0.017690254,0.06327746,-0.03833142,-0.011034198,-0.068969,-0.0030482798,0.0635882,3.9528513e-05,-0.0726668,-0.09027974,0.027641932,-0.045045566,-0.022518365,-0.02785662,0.026911857,-0.09492402,-0.074159876,-0.036431786,-0.028542837,-0.055524144,-0.026587142,-0.00412966,-0.029496439,-0.0038236366,0.06085874,-0.024089381,0.05107792,0.017979406,0.092568435,0.054811783,-0.040617146,-0.040153224,0.1178074,0.013398167,-0.0037748266,-0.0315453,0.05294716,-0.0074582794,0.0155080985,0.046015274,-0.030283427,0.031991135,-0.052073624,0.00451412,-0.033215437,0.09707694,0.03419467,0.038706787,0.010393935,0.14060046,-0.0026018135,0.004124723,0.0037049747,0.06894983,0.026967438,-0.067877054,0.02272316,0.003746558,-0.059870932,0.058042526,-0.080350265,-0.042699233,-0.06617734,0.052424897,-0.08281711,-0.05338689,0.08577308,-0.050254107,0.012935103,-0.008172337,0.052486267,0.059881166,-2.044503e-32,0.055309504,0.00623463,-0.019405255,0.008966701,0.0027855048,0.1000365,-0.04799684,0.020194985,-0.037919044,0.005820927,-0.098722614,0.025274452,0.053246748,-0.043128844,0.012819144,0.0036238974,0.06857372,0.010805787,0.0096106,0.0043407343,0.056803953,0.023168605,-0.019831728,0.013836544,0.0059695207,0.013752535,0.042410817,0.07676229,-0.04196067,0.07003152,0.05637428,0.061450418,0.03866997,0.028815737,-0.017213993,0.01838277,0.055843722,0.09948688,-0.027912008,0.024202226,0.09749973,0.055970933,-0.08792673,-0.11588433,0.044336293,0.05213737,-0.033387087,-0.05745772,-0.08820233,-0.060241807,0.05559142,0.031107487,0.0062550916,0.07758969,0.049945243,0.0162187,-0.012850826,-0.14553271,-0.015357697,-0.011160805,0.021331534,0.01346181,0.021985274,0.0059224847,0.06700249,-0.08575419,-0.078056216,-0.10471087,0.025793465,-0.022705097,-0.008441355,0.022081057,-0.029915484,0.029291162,-0.010915055,-0.046604253,0.024513159,0.06661666,-0.042918056,0.030952942,-0.027358225,0.091293216,-0.026496895,0.007634938,-0.083713554,0.061954215,0.07270822,-0.005752197,0.012646221,-0.024647193,0.14554009,0.13282189,0.05351198,0.046526548,-0.041206926,-7.466453e-08,0.008380803,-0.044045057,0.011423333,0.01718437,0.046524182,-0.10829733,0.020775069,-0.0065072537,-0.078643486,0.07520229,0.042818975,-0.013561045,-0.034407575,0.031744614,-0.10193108,-0.020556837,0.015992813,-0.08705884,-0.05643557,0.065676816,0.10331712,-0.033087265,-0.026420876,-0.022717906,-0.08720484,0.008604479,-0.06900348,-0.07365039,-0.0108436,-0.0432283,-0.09774959,0.04447478,-0.038783148,-0.05936373,-0.07890236,-0.02043229,0.10320072,0.020235622,-0.07051054,0.08236667,0.0138064865,-0.024311133,0.0064976322,-0.055557244,0.01661519,-0.011352188,-0.16414903,-0.027686795,0.016392749,0.08576548,-0.0055955704,0.01585717,0.028155599,0.002145181,0.002780419,-0.017870376,0.0042053317,-0.059774812,0.04963639,0.018708218,0.0088344,-6.0357328e-05,-0.08043474,0.013945079} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:21:48.429559+00 2026-01-25 01:27:50.899845+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 670 google Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB 1 t 673 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... quindi grazie... consigliatissimi!!! è già la terza volta che prenotiamo una macchina da voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... quindi grazie... consigliatissimi!!! 5 2026-01-21 01:27:48.343156+00 it v5.1 J1.02 {O1.03} V+ I2 CR-N {} {"J1.02": "è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza "} {-0.08085615,0.06278844,-0.019000247,0.010258885,-0.074230775,0.016783413,0.128236,0.09591896,0.014783886,-0.0035530606,0.08685586,-0.14702131,0.022683594,0.04223327,-0.120915614,-0.033483405,0.118882395,0.061309475,-0.0068863663,0.079731785,-0.012890078,-0.043262016,0.005408297,0.08828131,-0.04323805,0.03458279,-0.045028362,0.054272186,-0.00806721,0.01205532,-0.013768859,0.08026381,0.05810617,-0.029350052,0.028867928,0.030339777,0.02495087,-0.04102977,0.022762148,0.06819222,-0.043618686,0.012581543,-0.039082315,-0.008682562,0.049359187,-0.13227996,0.05460214,0.047899853,0.01242786,-0.03120115,-0.04424388,-0.05993562,0.022267912,-0.043852482,-0.050847713,-0.03735307,0.009473804,-0.020129252,0.014554954,-0.0172646,-0.009452689,-0.036110945,0.0024304625,0.046821196,-0.02335327,0.01476122,-0.03320787,-0.086379655,-0.004247778,0.015290672,0.11449872,-0.04986013,0.060949855,-0.05350198,-0.025280185,0.060631406,0.04653452,0.0031552396,-0.025660878,-0.11400325,0.10245408,0.035220463,0.0645975,0.03909569,0.04958994,-0.011555871,-0.00066045224,-0.026316598,0.029159797,-0.006739231,0.025775842,0.14193223,-0.050912734,-0.025175253,-0.039595887,-0.00919713,-0.07398343,-0.01921057,-0.014730469,0.054705456,0.028196568,-0.017640814,-0.074044354,0.025719272,-0.019436913,-0.04399117,0.054787718,-0.079377286,-0.024343189,0.06793332,0.0028010588,-0.05729013,-0.042146962,0.0038190836,-0.013385261,0.03714631,0.055881396,-0.04913592,0.048650183,-0.03281938,-0.0027661547,-0.035418037,0.01836778,-0.089154586,0.056741208,-0.048546355,0.091382325,1.21114004e-32,-0.019726528,-0.015980484,0.011006467,-0.06628963,0.030230435,0.018578257,-0.0693412,-0.039260793,-0.013506093,0.011158548,-0.07959339,0.033663653,-0.055000342,0.03630959,0.004834712,0.014557215,0.12126426,-0.054155197,0.07352133,-0.04282382,-0.01635701,0.012825765,-0.01576116,-0.014305203,-0.008425845,0.064745806,-0.047746405,-0.010406171,-0.025995258,0.039102092,0.020664416,0.030101875,0.035455924,-0.06120351,-0.026260957,-0.028401744,-0.03260354,0.08107132,0.038120292,0.030341337,-0.03345903,0.054201197,-0.023682574,-0.051050186,0.0064710584,-0.07414702,-0.0035491765,0.007053171,0.08910507,-0.016514624,-0.011168792,-0.019642286,-0.022258945,0.07225238,-0.03142117,0.02815445,-0.03198566,0.015570945,0.037746727,0.005331958,0.0013763963,-0.014973659,-0.09608408,-0.0027410353,-0.0037999484,-0.05333523,0.0073070894,-0.041582845,0.008436607,-0.014584174,-0.086172424,-0.06606712,-0.049350392,-0.019226626,-0.0321849,0.032564837,-0.023506874,-0.003739757,-0.07212691,-0.022369713,-0.054330226,-0.054531064,0.0075024217,-0.023482658,0.030667948,0.066748604,0.058431223,0.06750121,0.05057476,0.005705248,0.045524552,0.029072104,0.037850957,-0.057089105,0.010362304,-1.2632726e-32,0.021424722,0.02317983,-0.029587535,-0.019532109,-0.033817235,0.03731794,-0.08802309,-0.12077349,0.037863307,0.036107518,0.0014166101,-0.07271082,0.015480296,-0.055022594,-0.04939429,0.12331407,-0.06107015,0.039437477,-0.06464214,-0.09052704,-0.004172279,-0.03271084,-0.0015572356,-0.051394317,-0.042579904,-0.0029710867,0.07483033,-0.007331235,-0.028205521,0.08869145,-0.07066009,0.0493365,0.007070345,0.011404783,0.057606943,0.04079388,-0.003338974,-0.009146598,0.012062123,0.064207256,-0.0020788605,0.025003469,0.006907708,-0.03391081,0.0025042095,0.017378911,-0.08217937,-0.04687767,-0.05481907,0.0047326963,0.048698053,-0.0123983845,0.017625771,-0.018754745,0.0234393,-0.022149935,0.03498598,-0.07213829,0.02310084,-0.07476205,0.057502344,-0.029134925,-0.032607853,-0.04934115,0.0680491,0.022474213,-0.059367172,0.067938484,0.121870555,0.028006993,0.006150784,0.007208822,-0.0969984,-0.06800725,-0.16483174,0.035527233,-0.04701269,0.050923046,0.060017366,0.004918421,-0.024217667,0.01594035,0.037324324,-0.028786886,-0.07488753,-0.0039822413,0.00989593,0.016098358,0.059563037,0.08378681,-0.025163852,0.010989933,0.03244809,-0.072651714,-0.003431789,-6.224226e-08,0.033933457,-0.07710448,-0.005020745,0.056471653,0.014156387,-0.10568134,-0.050494898,-0.046111897,0.06830747,0.09594124,-0.012881839,-0.0060663344,0.028258115,-0.051206183,-0.062890545,0.11727331,0.10408474,0.008744372,-0.018528178,-0.053344198,0.030405559,0.0071222642,-0.05141957,-0.084912434,0.043772142,-0.048007853,-0.005195867,-0.00562201,-0.12794968,-0.02751948,-0.006879071,0.012524719,-0.0060406905,-0.07779424,-0.015703,0.016916236,0.019515604,-0.032788347,-0.05029191,-0.073250875,-0.011361704,-0.022299288,-0.021025132,-0.053580523,-0.038970947,-0.035027694,0.09508794,0.028654413,0.0024695762,0.078876086,-0.061738368,0.05667466,0.032949556,0.058066808,-0.048256814,0.050813597,0.0411721,0.0557986,-0.035911087,-0.03965181,0.062778436,0.06435719,0.045137364,-0.12680438} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:59:33.616635+00 2026-01-25 01:27:52.293706+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 671 google Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB 1 t 674 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war kein Missverständnis, sondern ein Paradebeispiel dafür, wie man Kunden vergrault.\n\nBei der Abholung wurden wegen absoluter Kleinigkeiten künstliche Probleme aufgebaut. Plötzlich gab es Diskussionen um den Führerschein, obwohl dieser gültig und völlig unauffällig war. Zusätzlich wollten wir einen Zusatzfahrer eintragen lassen – ein Vorgang, der bei seriösen Vermietern Standard ist.\n\nHier wurde daraus jedoch ein Geschäftsmodell gemacht. Für den Zusatzfahrer und angebliche „Probleme“ sollten auf einmal hunderte Euro zusätzlich gezahlt werden. Der ursprünglich gebuchte Preis war damit praktisch wertlos. Am Ende standen rund 300 €, wo andere Anbieter für exakt denselben Zeitraum ca. 60 € verlangen.\n\nWir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz. Keine Erklärung, keine Transparenz, kein Entgegenkommen – nur das starre Festhalten an einem völlig überzogenen Preis.\n\nDer Eindruck entsteht unweigerlich, dass hier bewusst Druck aufgebaut wird, um Kunden vor Ort zu überrumpeln und zu teuren Zusatzkosten zu zwingen. Wer nicht mitspielt, verliert Zeit, Nerven – oder geht, so wie wir.\n\nNach erheblichem Zeitverlust und einer maximal unangenehmen Abholung haben wir den Mietwagen konsequent abgelehnt. Und ganz ehrlich: Das war die einzig richtige Entscheidung.\n\nFazit: Dieses Verhalten hat nichts mit kundenorientiertem Service zu tun. Wer Transparenz, Fairness und einen respektvollen Umgang erwartet, sollte diesen Anbieter meiden. So gewinnt man keine Kunden – so verliert man sie. wir wollten unseren mietwagen wie gebucht auf gran canaria abholen. was uns dort erwartet hat, war kein missverständnis, sondern ein paradebeispiel dafür, wie man kunden vergrault. bei der abholung wurden wegen absoluter kleinigkeiten künstliche probleme aufgebaut. plötzlich gab es diskussionen um den führerschein, obwohl dieser gültig und völlig unauffällig war. zusätzlich wollten wir einen zusatzfahrer eintragen lassen – ein vorgang, der bei seriösen vermietern standard ist. hier wurde daraus jedoch ein geschäftsmodell gemacht. für den zusatzfahrer und angebliche „probleme“ sollten auf einmal hunderte euro zusätzlich gezahlt werden. der ursprünglich gebuchte preis war damit praktisch wertlos. am ende standen rund 300 €, wo andere anbieter für exakt denselben zeitraum ca. 60 € verlangen. wir haben dem personal diesen vergleich sogar direkt vor ort gezeigt. die reaktion: völlige ignoranz. keine erklärung, keine transparenz, kein entgegenkommen – nur das starre festhalten an einem völlig überzogenen preis. der eindruck entsteht unweigerlich, dass hier bewusst druck aufgebaut wird, um kunden vor ort zu überrumpeln und zu teuren zusatzkosten zu zwingen. wer nicht mitspielt, verliert zeit, nerven – oder geht, so wie wir. nach erheblichem zeitverlust und einer maximal unangenehmen abholung haben wir den mietwagen konsequent abgelehnt. und ganz ehrlich: das war die einzig richtige entscheidung. fazit: dieses verhalten hat nichts mit kundenorientiertem service zu tun. wer transparenz, fairness und einen respektvollen umgang erwartet, sollte diesen anbieter meiden. so gewinnt man keine kunden – so verliert man sie. 1 2026-01-21 01:27:48.343159+00 de v5.1 P1.03 {J1.02,A1.02} V- I3 CR-W {} {"A1.03": "Wir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz", "P1.03": "Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war k"} {-0.022716323,0.09994138,-0.121714294,-0.022123216,-0.08453656,-0.0190391,-0.022052612,0.13407527,-0.033263754,0.027767152,-0.019529091,-0.03624231,-0.007025707,0.0090725925,-0.03607188,-0.019922592,-0.05159915,-0.031919878,-0.07965257,-0.009566015,0.041386373,-0.087119535,0.0043865372,0.033064514,-0.0060091233,-0.03395542,0.0061810217,0.025736742,-0.038307827,0.028983114,-0.038455512,-0.07630884,-0.045774437,-0.024765857,0.060333885,0.021848712,0.13115236,-0.052734107,-0.10442225,0.046023086,-0.018092364,-0.045171056,-0.14074914,-0.0029826832,-0.043475647,0.07386027,0.07860047,0.014462555,-0.14688581,-0.016398102,0.016509542,-0.04924592,0.0115277255,-0.031759568,0.019147683,-0.0908056,-0.050171632,0.06514109,0.009923219,-0.051371966,-0.045203257,-0.050417114,-0.0048608133,0.006171518,-0.04304612,0.018389223,-0.011487476,-0.07096932,-0.043447595,-0.0056684823,0.04885437,-0.11751112,-0.08443906,-0.008785932,0.024858814,0.103565976,0.0664689,-0.020083975,-0.027782626,-0.07948641,0.06449885,0.014621292,-0.1028878,0.0016109878,0.013248782,-0.09139116,-0.006414911,0.06591162,0.08997283,-0.008984258,0.016648296,-0.031476706,-0.08014567,0.04568265,0.014305996,0.02950628,0.08769656,0.0023270373,0.08788003,0.049150627,0.036472615,-0.023189079,0.05331821,0.05162861,0.03285279,0.014875011,0.049591344,0.019861815,0.010579019,-0.046492193,-0.06611615,-0.07060359,-0.010583677,-0.041181818,0.002463753,-0.03402289,0.017995039,-0.018223118,0.016632067,-0.08349156,0.04082457,0.030131964,-0.03717814,0.032038964,0.023637043,0.080075204,0.019929945,2.3609278e-32,-0.020909822,-0.06459906,0.00070451,-0.020956255,-0.031520013,0.05396929,0.039282847,0.10710944,0.08119017,0.026182314,0.02151013,0.017577045,9.193665e-05,-0.087569945,0.04605546,-0.017735703,0.051071193,-0.04937045,0.024059294,0.034024976,0.032886527,-0.021891018,0.04314731,-0.0030471585,0.011112668,0.056303013,-0.0004691466,-0.06134759,-0.080035076,0.031037508,0.024631152,-0.062065106,-0.013767212,0.00026154768,-0.07071042,-0.016330035,-0.017215278,0.017962134,0.02361028,-0.07498495,-0.062682845,-0.025297554,0.053042028,-0.011368559,0.07285886,-0.0071247187,-0.017012702,0.011274747,0.050278414,-0.0012470899,-0.028286094,0.034991566,0.019880777,-0.06257275,0.0353776,0.037889723,-0.06977267,0.037371106,-0.036963128,-0.06260988,-0.06712386,0.04172368,0.04095717,-0.010370576,0.010646987,0.033570357,-0.046555102,0.00092106475,-0.033491507,-0.016735425,-0.05460468,0.046023645,0.08396945,-0.037818763,0.0044477936,0.054996837,0.109047994,0.008107642,-0.050174206,-0.09348975,-0.09430157,0.010172799,0.021630356,0.004383052,0.009195276,0.009291783,0.015013896,0.026539406,-0.0017445596,0.013062283,0.039486915,0.026689027,-0.05728361,0.0020698116,0.052440174,-2.1986324e-32,0.042070854,0.035152357,-0.046241924,-0.07153098,0.038575444,0.06883018,-0.023253992,0.015338665,-0.11806075,-0.04732284,-0.10458588,-0.07507102,-0.060675796,0.017507834,-0.1056086,0.07691369,-0.018193623,-0.013757009,0.043193478,-0.0032003098,-0.008649778,0.060841043,-0.015430355,-0.044745274,0.0044579958,-0.027988702,0.05345518,-0.020079337,-0.0395471,-0.021518089,0.028329773,-0.027021145,0.024460975,-0.016895542,0.014958393,-0.046889756,0.054695044,-0.032643422,-0.0015351748,0.040233485,0.015596587,0.02883003,-0.101390034,0.004378081,0.082165815,0.102516405,-0.017064719,-0.10381454,-0.00016813636,-0.0964459,0.06520963,-0.007133726,0.033735696,0.011562651,0.033063352,0.043539234,-0.015168038,-0.048668586,0.0398478,-0.026914796,0.03248685,0.052961286,0.04377345,0.031260256,0.06587409,-0.03298072,-0.011163385,-0.030968422,-0.051840242,0.058877967,0.0073697376,-0.044996466,-0.051273517,-0.044907067,0.036003698,0.11666998,0.02204779,0.044679306,-0.014254603,0.08503502,-0.004580339,0.0447553,0.0011705002,-0.010253086,0.03858007,-0.016596578,0.07010695,0.081095695,-0.052688923,0.028105475,0.008516311,0.06860338,0.04999165,0.057910256,0.080957,-7.929465e-08,-0.0005856187,0.0054639354,-0.13486747,0.022000326,-0.0153813725,-0.083125696,-0.012077388,0.072921395,-0.11685492,0.09422817,0.007463348,-0.042720206,-0.05076817,0.0748706,-0.13033526,-0.030239841,0.043540735,-0.0076803514,-0.03457458,0.06745395,0.051417585,-0.008830717,-0.14516538,-0.062237028,-0.02472115,-0.023213949,-0.0011090983,0.013441839,0.00056432554,-0.057888493,-0.076673925,0.0824702,0.007130902,0.0041340427,-0.061181184,0.00086630514,-0.04132831,0.048442174,-0.06046662,0.009506743,0.023360059,0.05077152,0.0064302934,-0.013684105,0.061128583,-0.017687764,-0.07191358,0.037553832,0.0076559484,0.08508892,-0.04103669,-0.008300665,0.02296766,-0.0121208485,0.0041334825,0.013406009,0.038363155,0.009255825,-0.064515196,-0.022671213,0.019033639,-0.04082202,-0.07632266,-0.009317374} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:59:27.643268+00 2026-01-25 01:27:52.299233+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 673 google Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB 1 t 676 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!! Un coche muy nuevo!! 100% recomendable!! gran servicio, rápido y eficiente por parte de valentina y todo el staff!! un coche muy nuevo!! 100% recomendable!! 5 2026-01-20 01:27:48.343167+00 es v5.1 A1.01 {} V+ I3 CR-N {Valentina} {"A1.01": "Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!!", "O1.01": "Un coche muy nuevo!! 100% recomendable!!"} {-0.021423193,-0.044867363,0.033648007,-0.032283578,-0.044496138,-0.030598057,-0.009488114,-0.033309657,-0.035411753,-0.08546546,-0.0010407971,0.019369014,-0.059017777,0.004359721,0.060648993,-0.051762443,0.036061306,0.02334614,0.08125898,-0.036018033,0.06118072,-0.08738605,-0.09576837,0.10158957,-0.110872954,-0.033786487,-0.051100086,0.036202863,-0.041470263,-0.07460452,-0.013462049,0.12039387,0.026595514,0.0056434865,-0.063934565,0.069256715,0.099009424,-0.08728909,-0.03194725,0.09525335,-0.12828286,-0.014134393,-0.048296247,-0.03517641,0.10340271,-0.031815354,0.016912607,0.0033508032,0.05956613,0.006712698,-0.028083172,-0.08364618,0.045581337,0.0063630245,-0.057901632,0.011175316,0.020185035,-0.054615267,0.014822851,1.718403e-05,0.0010568502,0.039325878,-0.036780052,0.032370847,0.01650814,-0.056845192,-0.007901058,-0.014235152,-0.04619019,-0.012786124,0.060752645,-0.050590955,0.066577755,0.055947345,-0.040092304,0.05996062,-0.019795839,-0.025964051,-0.047534004,-0.10136265,0.046949875,-0.010675089,0.028906897,0.040959142,0.0002555475,-0.021800127,-0.06597482,-0.00026549966,0.036813878,-0.043386504,0.08596254,0.0993753,-0.05651374,0.0013110279,0.0034766525,0.02814657,0.0059086657,-0.058316074,-0.052458175,0.039749753,0.012193334,0.04136211,0.067665555,0.004856457,-0.028062072,0.040458653,0.034219667,-0.0041886154,-0.05008493,0.06185139,-0.05963155,0.004600744,-0.061154887,-0.02812391,-0.12520044,-0.009226496,-0.002611113,-0.012473235,-0.039246183,0.0060699703,0.07119772,0.05468382,-0.0800023,-0.03217988,0.018231938,-0.023408884,0.06751142,4.070474e-33,-0.038359843,0.050542872,0.021759056,0.07531996,-0.012899232,-0.046336677,-0.045303203,-0.0067295125,-0.002438591,0.02725494,-0.04663372,0.05336319,0.04335857,0.024581999,0.017338766,0.011962105,0.010761681,-0.012792798,-0.0032438796,-0.009295298,-0.07065285,-0.010823844,-0.0006021278,0.026631577,0.0298448,0.06962846,0.006278034,-0.06746791,0.003594384,0.054512385,-0.021243677,-0.0011389725,-0.012777742,-0.013820983,-0.06554435,-0.021086842,-0.06404128,-0.041878946,-0.033390764,0.0033615055,0.043829314,0.045097623,0.02790277,0.021181712,-0.08515021,0.048307292,0.030330734,0.0654484,0.17033963,0.01584554,-0.06464862,-0.067709915,-0.10191068,-0.004977264,0.0013301992,0.021446733,-0.0029987958,0.055054996,0.021703778,-0.0571342,0.050436687,-0.029909015,0.021320194,0.0055182134,-0.028211737,-0.059082333,0.0036636025,0.012594596,0.10742665,0.01945914,-0.10223251,-0.019311773,0.07135784,0.06403526,-0.0073171384,0.023491723,0.029168393,-0.023945024,0.0055197557,0.018866215,-0.037309792,0.019872567,0.016339527,0.019753996,0.12695575,0.06931269,0.114892825,0.070009194,-0.06660283,0.10052302,-0.038612183,0.11254806,0.05383787,-0.013731925,-0.0061751674,-6.065863e-33,0.025218487,-0.035448927,0.024730075,0.015362215,0.016530134,0.056170072,-0.046933,-0.012597297,0.024564518,0.04013434,-0.10815748,-0.08310506,0.020974454,-0.05520345,-0.101278126,0.057673033,-0.040485397,-0.043520503,-0.061647005,0.033814088,-0.013348771,0.11143788,0.049924213,-0.04242285,-0.021317445,-0.05235427,-0.008109375,0.03223278,-0.08961901,-0.051619925,-0.057086017,-0.118081994,-0.0150826005,-0.008451259,0.0038437867,0.078884415,0.047956206,0.04479551,0.025386998,0.123290844,0.007507034,-0.0018224461,-0.0034500253,-0.027282227,-0.04462976,-0.0066275946,-0.037770893,-0.09703651,-0.05165392,-0.028012134,0.028398836,-0.060957924,-0.05454778,0.005388858,0.039655417,-0.032473724,-0.056220442,-0.09562785,-0.101812996,-0.017427808,0.025389234,0.034260396,0.00029135472,0.012971806,0.10608713,-0.055081144,0.0051634037,-0.037918884,0.014836956,0.0694772,-0.008220876,0.03840397,-0.039370853,0.06417446,-0.067967005,-0.07307288,0.013903731,-0.09121859,-0.020296795,0.022714071,0.005248246,-0.028376611,0.018096048,0.010791783,-0.0037989723,0.07446423,0.004124598,0.028330548,0.046204228,-0.00072627375,0.05275776,0.033052657,-0.0072123497,-0.014520481,-0.010644534,-3.293368e-08,0.02185942,-0.024118463,-0.007077155,0.015468968,0.048304375,-0.15246303,-0.09535371,0.037351314,0.00344806,0.060116913,-0.0019220569,-0.051912975,-0.021534555,0.02555005,-0.0067932345,0.01254835,0.09253517,0.14410609,-0.05502194,-0.0701781,0.05207749,0.052437928,-0.019054797,-0.047997773,0.042933986,0.04179438,-0.04069051,0.008114076,-0.0024498634,-0.061298948,-0.035213824,-0.030426674,-0.033262677,-0.10162798,-0.027652562,-0.012397202,-0.031375155,0.013231452,0.0104467785,-0.01669771,0.10676334,0.021434978,-0.069078505,0.025755564,0.0015616114,-0.055880465,-0.040071316,0.008119603,-0.026286153,0.00023112404,-0.022491965,-0.039482296,0.09525078,0.041110035,0.037441254,0.02469028,0.02940317,-0.0374379,0.03619282,0.06261652,-0.0029827794,0.008232867,0.0032550518,-0.053363707} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:59:55.626452+00 2026-01-25 01:27:52.333658+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 674 google Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB 1 t 677 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug!\nEinzige Kritik:\nKeine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis auf das obere Stockwerk (Abflughalle). Nach rechts gehen bis ca. Abflug Gate 2-5 wäre sehr hilfreich. Musste anrufen und dann bekam ich ein Youtube Video vom Standort zugeschickt. Fahrer war jeweils sehr freundlich und hilfsbereit. alles bestens! super service! reibungslose abwicklung! neues und sauberes fahrzeug! einzige kritik: keine ordentliche beschreibung vom standort des shuttlebusses. ein einfacher hinweis auf das obere stockwerk (abflughalle). nach rechts gehen bis ca. abflug gate 2-5 wäre sehr hilfreich. musste anrufen und dann bekam ich ein youtube video vom standort zugeschickt. fahrer war jeweils sehr freundlich und hilfsbereit. 5 2026-01-19 01:27:48.343174+00 de v5.1 A1.01 {O1.01} V+ I3 CR-N {} {"A1.01": "Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug!", "J1.02": "Einzige Kritik: Keine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis"} {-0.040396284,-0.026186911,-0.03340514,-0.06100792,-0.046948012,0.047489367,0.010028515,0.09513903,-0.041267063,-0.014643095,-0.0120194405,0.032500923,0.017105268,-0.061113242,-0.10022292,-6.5769746e-05,-0.007370322,0.02017782,-0.033884432,-0.11115583,0.02501425,-0.071880884,-0.009087664,0.12546259,-0.08822165,0.047306463,-0.056844864,0.071632445,-0.014076126,-0.14848594,-0.009081773,-0.0057431213,8.778537e-05,-0.033952266,-0.029887017,0.048262764,0.062966764,-0.081875905,0.030392803,0.014962421,-0.051768303,-0.032527495,0.018422922,-0.036827017,0.04721084,0.026293362,0.040974107,-0.032042187,0.034527242,0.015126852,-0.024680203,-0.029909449,0.07985,0.0008189532,0.022511885,-0.101344295,-0.014057949,-0.038237534,0.064041056,0.02435147,0.0013066358,0.0028543947,-0.0022282659,0.03055648,-0.16427173,0.01957261,-0.00037891377,-0.06303971,0.0307454,0.02958509,0.030605283,-0.07113317,0.041593622,-0.013732574,0.03770406,0.01790756,-0.027096959,0.050928213,0.0070717693,-0.1405474,0.07771902,-0.09952808,0.025369944,-0.0052021192,0.0070784735,-0.056849882,0.040590942,-0.026284516,-0.013906559,0.011936275,-0.06616944,0.05773879,-0.038732633,-0.0047020675,-0.14219065,-0.01990108,-0.052379273,-0.11332984,-0.035290368,0.022259902,-0.013235241,0.04740263,0.05147835,0.07151278,-0.041786905,-0.09012125,-0.010258538,0.010144225,0.07275957,-0.01478241,0.0004963542,-0.040650368,-0.0030464893,0.001958013,-0.046075523,0.021922553,-0.09446048,-0.09818762,0.0029776117,-0.058167193,0.03565461,-0.002602356,0.024551513,-0.024132729,0.022312323,-0.015878838,0.041344512,1.8027293e-32,-0.09292861,-0.03559448,-0.039161738,0.08670159,0.02357256,-0.05140758,-0.04078399,0.032944668,0.0012547071,0.042128306,-0.019571913,0.055035405,-0.020014567,-0.050119027,0.032101348,-0.06993323,0.023187835,-0.108014956,0.0075375475,-0.080181666,-0.033241007,0.008954852,0.0072679603,0.027760172,0.13920482,0.0054391446,-0.02301931,-0.026167741,0.07055805,0.073683515,-0.011043702,-0.05417849,-0.06919578,-0.034194738,-0.035892017,-0.079148054,-0.046291534,-0.005672692,-0.060036767,-0.06664556,-0.029992197,0.008094662,-0.09168547,-0.041711666,0.022815727,0.017398935,-0.042635106,0.03797082,0.1662063,-0.015628012,-0.06857133,0.04530321,0.04816931,-0.04523031,0.039484117,0.019320853,-0.031748034,0.058370154,0.008451106,-0.03211541,-0.0034638466,0.0725424,-0.021264106,-0.0054941135,-0.0011275349,-0.011654222,0.012504387,0.011982324,0.013534872,0.06257578,-0.0031266187,-0.017102035,0.104927756,0.036515098,-0.026169052,0.07063743,-0.0006173689,0.024599852,-0.021680007,-0.0120223155,-0.002344094,-0.032383926,0.12544179,-0.028320584,0.095898494,0.004163003,0.05030099,-0.027070371,0.04983818,0.084700815,-0.10249858,0.047141705,0.017257128,0.04623081,0.030620387,-1.7335312e-32,0.027121954,0.074374326,0.013182549,-0.021666994,-0.049893517,0.06812936,-0.01158572,0.0338546,-0.018795352,0.041541785,-0.07174974,0.049705546,0.03202924,-0.017513487,-0.045302127,-0.06760946,-0.0033103304,-0.05519684,-0.00025092738,-0.011354709,0.008621344,0.03930435,-0.02570006,0.036779307,-0.064748764,0.07904833,0.06762884,0.061779086,-0.017528772,0.001993032,0.024082107,-0.039267853,0.015319891,-0.002485752,-0.035831448,-0.052409314,0.08505308,0.07012373,-0.09279771,0.010319593,-0.03818865,0.057038113,-0.036060806,-0.07918978,0.06686833,-0.05480722,-0.058817603,-0.024774587,-0.047317244,-0.10911454,-0.06743572,-0.045897316,0.0017971216,-0.018113516,0.014664163,0.022472465,0.054944493,-0.009566809,0.029389191,-0.057604413,0.04492514,-0.028912734,0.0819332,-0.024385335,0.07078956,-0.010101515,0.021161616,0.011121987,-0.028805526,0.035386816,0.071164705,-0.01976518,0.050432716,0.0740999,-0.054070007,0.050709184,0.032308124,0.029592225,-0.017325988,0.03823565,0.023729747,0.018596493,-0.023490168,0.054822247,-0.061725684,0.0017787812,0.091831766,-0.010963642,0.054710243,-0.030766584,0.07924024,0.07680364,0.00390903,-0.011189017,0.05528469,-6.18077e-08,-0.047282573,0.017925385,-0.0023964471,0.019412674,0.033196013,-0.09992827,-0.06509672,-0.017475437,-0.08893577,-0.072468154,-0.006547118,-0.027699964,-0.051360186,0.09671012,-0.06920508,0.06911955,-0.029290797,0.054780174,-0.017819313,-0.00064716313,-0.015657874,-0.04871261,0.0751748,-0.08109845,-0.016896779,-0.014197946,0.00904042,-0.10688189,0.041113127,-0.05859557,-0.077959366,0.064570405,0.06346393,-0.055136923,-0.04132087,-0.0015754738,0.034800913,0.06454246,-0.07397414,0.011822641,0.08341764,-0.047766894,0.0030259143,0.0017859566,0.021199265,0.029149434,-0.04101515,0.044349436,0.0068135005,0.029544393,-0.04040935,-0.0571883,0.04545544,0.09813124,0.030049253,0.00030744544,-0.013173329,-0.025768425,0.021620555,0.019846428,-0.018879414,-0.0266228,0.021686131,0.041243635} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:00:23.174201+00 2026-01-25 01:27:52.337804+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 192 google Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB 1 t 195 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We got a good deal from ClickRent for a car with full insurance during black Friday. Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\nThe only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport. we got a good deal from clickrent for a car with full insurance during black friday. everything went smooth; pickup, drop-off and the refund of the deposit for the gas. the only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport. 5 2025-12-26 01:27:48.340145+00 en v5.1 V1.01 {} V+ I2 CR-N {} {"A4.01": "The only thing is that we didn't know there was a shuttle on the pickup and we had to walk there fro", "V1.01": "We got a good deal from ClickRent for a car with full insurance during black Friday. Everything went"} {-0.04164646,0.08010915,0.02989107,0.026622435,-0.0016880933,0.07036174,0.08480608,0.014883475,-0.05817849,-0.0150664365,0.06250942,0.109419234,-0.0076627834,-0.035540473,0.006612184,-0.062203676,0.060939994,-0.09746754,-0.076209925,-0.03191906,-0.13247077,-0.035043776,-0.025137207,0.0023750488,0.03671365,0.03498071,0.012347257,-0.0007909884,-0.006238143,-0.026347255,-0.06265555,-0.018851083,-0.030718377,-0.04330632,0.02447857,-0.04756868,-0.021276565,-0.07000184,-0.013988727,-0.03531054,-0.009340256,0.008343646,-0.04552993,0.06593842,-0.056264363,-0.04717613,0.11362815,0.06472376,0.052681427,0.024468971,0.07737319,0.03031887,0.009698132,-0.055770606,0.00495014,0.024486955,-0.058847245,-0.012339851,-0.008736279,-0.06710587,-0.029851157,-0.07200312,-0.006689171,0.03072611,-0.003934602,-0.064941525,-0.011383582,-0.018662801,0.045401264,-0.032771017,-0.013821277,0.030183395,0.0076400745,0.017157782,0.0019906084,0.059483893,0.07078397,-0.038469575,0.00857957,0.053267818,0.013171158,-0.019499203,0.0017505996,-0.020923896,0.037083514,-0.032221183,0.0035722759,0.06615407,-0.024384419,-0.024961699,0.067388594,-0.014095587,0.037107475,-0.07137379,-0.051197737,-0.052782018,-0.038443822,-0.021158045,0.035389103,0.031026341,0.07327346,0.082895644,0.012499172,-0.04915322,-0.08728427,-0.06017321,-0.0015788198,0.050049085,0.045328453,-0.06915149,-0.02682346,0.027310885,0.05060872,-0.013616059,-0.0827401,0.012685884,-0.03245701,-0.056151725,0.07078124,-0.09037486,0.029542355,0.041703507,0.0407022,-0.022066973,-0.09969111,0.01873185,0.07639822,-2.3243419e-33,0.0034987745,0.024932686,-0.048581503,-0.065982714,0.08430024,0.005114866,-0.040206,-0.0024109366,-0.0070526656,0.057474945,-0.054127913,-0.0051441784,-0.024570126,-0.0066314284,-0.0040852814,0.05073604,-0.12486188,0.080799796,0.015334342,-0.008728714,-0.053009953,0.0007397097,0.0040029353,0.0005310005,0.043613657,0.031864014,-0.020914737,0.014645428,0.09340512,-0.00063079543,-0.075378604,0.09558563,0.06841748,0.0107087605,-0.015094771,0.046491537,-0.07413457,-0.043766577,-0.06094622,-0.049354125,-0.035412397,-0.031574186,-0.0918361,-0.0034557984,0.018936358,-0.0044500735,-0.004988655,-0.036110517,-0.043434307,-0.017196862,-0.11674091,-0.0010104732,-0.006274354,0.02764154,-0.11714226,0.04804621,0.04510286,-0.020820407,0.018130215,0.023276683,-0.010266392,0.0011676023,0.004557611,-0.088128604,-0.09664297,0.022509249,-0.0030681056,-0.00690557,-0.01228416,0.05612232,0.03158343,0.056500316,0.026495414,-0.08022663,0.08340718,0.041682236,-0.06862053,-0.027913213,0.04861451,0.01590734,0.0430941,-0.060659148,0.164381,0.006334016,0.046758905,0.0628363,0.016688284,-0.019146416,0.029000431,0.0030522232,-0.055259615,0.022270486,0.010507891,0.03162029,0.15853259,-1.4012246e-33,0.0019171122,0.027473098,0.028527295,0.026115054,-0.10477321,0.07161444,-0.048398312,0.00044914585,-0.01583235,0.016759388,-0.02806783,0.085971735,0.030730361,-0.0038352308,0.064900085,-0.07496518,0.09278121,-0.065718904,0.089810915,-0.012765989,0.056161825,-0.012615846,-0.037531976,-0.0077962065,-0.055742916,-0.0254095,-0.041322533,0.02634876,-0.042754393,-0.0070083817,0.06523614,0.009640667,-0.03194441,-0.019935565,-0.013983904,-0.0065927687,0.029804908,0.110684656,0.015592177,-0.042738684,0.06096121,-0.049217723,0.057662662,0.054356847,0.051341057,-0.052097503,0.014739152,-0.06283885,0.0666761,0.03613928,-0.027909052,-0.03864528,-0.016757771,0.05045918,-0.03663137,-0.0064536394,0.057314843,-0.05210635,0.01260012,0.055727024,-0.07638466,0.009160942,-0.01564222,-0.010192517,-0.005098616,-0.12026791,0.02617767,-0.06686862,0.062021427,-0.01975186,-0.07095788,-0.07293477,-0.0042766696,0.03230954,0.0044276104,0.05477274,0.06498692,-0.026961675,-0.005822601,0.022812048,0.017983118,-0.008589075,-0.012211528,-0.0071772076,-0.00753897,-0.029244198,-0.042973224,-0.07641896,0.026105575,0.12483909,-0.039438248,0.052460272,-0.018855406,0.009072022,-0.066387944,-3.8121126e-08,0.047650393,0.11138174,0.0970867,0.013521084,0.043882478,-0.051555034,0.014443388,0.12624268,-0.01807959,0.0099294875,-0.031768046,-0.021100966,-0.04479243,-0.05549934,-0.0639668,-0.012394872,0.044194233,0.053790983,0.014203862,0.0072735236,-0.053680938,0.017434323,0.038909905,-0.022577466,-0.013511526,0.007757803,0.025950307,0.079606734,0.046775676,-0.009649071,-0.102266975,0.03146399,0.03771086,-0.04045026,-0.07857741,-0.082441695,0.045870915,-0.016280279,0.023605868,-0.04380771,0.04614246,-0.0041618873,0.007037609,-0.04602907,-0.05385287,0.011261908,-0.1734062,-0.06830979,0.012114427,0.021782972,0.041841794,-0.03342176,-0.030082311,0.0867269,0.10606966,-0.10761102,-0.019556211,-0.045348562,0.027763076,0.0036916682,-0.05942011,-0.049454257,-0.10840927,0.045207273} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:40:16.000008+00 2026-01-25 01:27:49.983436+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1201 google ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB 1 t 1204 Soho Club unknown This was my first time at any drag show and it’s definitely not the last. I was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and I’ve never left a party more energized. I don’t think I’ve ever felt safer and happier at a club. I’m not religious but Drag at soho is my new church. Definitely go when you have time! (Plus the bartender‘s cute) this was my first time at any drag show and it’s definitely not the last. i was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and i’ve never left a party more energized. i don’t think i’ve ever felt safer and happier at a club. i’m not religious but drag at soho is my new church. definitely go when you have time! (plus the bartender‘s cute) 5 2024-01-30 18:34:31.336452+00 en v5.1 E1.04 {E1.01} V+ I3 CR-N {} {"E1.04": "This was my first time at any drag show and it’s definitely not the last. I was so impressed by the ", "E4.01": "I don’t think I’ve ever felt safer and happier at a club."} {0.040882282,-0.059608996,0.02289749,0.018155597,0.020757684,0.058341265,0.04627364,-0.065131485,0.024629423,-0.11140052,-0.003989536,0.033861686,0.015442035,0.04012336,-0.0593446,-0.03972698,0.053109717,-0.095485374,0.03292744,0.051894825,-0.060070593,-0.045168713,-0.078226775,0.050411552,0.021794314,0.011092298,-0.027292304,-0.007842188,0.042987008,-0.078644626,-0.050797913,0.014926828,-0.069257565,-0.023932135,-0.047294464,0.01767374,0.08357032,-0.079760015,0.02120576,0.08026056,0.044907633,0.014062561,-0.0052007204,-0.009511969,0.015762785,-0.0065446883,0.072769955,-0.039529342,0.023694152,0.007961919,0.038919136,0.010762018,0.08821342,-0.055273082,-0.03598193,-0.016677437,0.0019988364,-0.037496075,-0.031177804,0.011867165,-0.067229606,0.044625346,-0.0148608005,0.04002042,0.050612345,-0.03939436,-0.058120925,0.070413254,0.09387584,-0.019970935,-0.033189535,-0.032701205,0.007908301,-0.0194828,-0.018897044,0.0045415456,-0.033770457,-0.031344663,-0.050616536,0.035743292,0.05441372,-0.09375199,-0.08377521,0.038194586,-0.023104656,-0.042450745,-0.03758888,-0.006208413,-0.02303829,0.025900947,-0.044925477,0.15145788,-0.09059608,-0.09064817,0.021534976,0.04912484,-0.10271663,0.003851087,0.001015365,0.09370089,-0.046497043,0.13034521,0.018210588,-0.031834494,0.028008651,-0.06259783,0.030899387,0.024338491,0.016335456,-0.02113741,0.044641748,0.032184005,0.09628089,-0.063083924,0.018093841,0.055158842,-0.008598752,0.0077203945,-0.01292539,0.015083917,0.015300084,0.112148955,0.0852902,0.040419932,-0.059792183,0.01655098,0.02535656,-2.472959e-33,-0.05747556,-0.04389195,0.00080652774,0.03825744,0.075109385,0.022843197,-0.031536188,-0.060633264,-0.053997833,0.013044467,0.076148674,-0.052527413,0.00037448897,-0.030565454,-0.022438351,-0.0067423033,0.045422625,-0.004673246,-0.047784038,-0.07514144,-0.084427185,-0.0028894565,-0.034086153,-0.0027948082,-0.026587857,0.03850887,0.053457752,0.027372202,0.09942151,0.002480829,-0.041277576,0.07344164,-0.022541795,0.015995707,-0.043744035,0.045236934,-0.021431029,-0.054004293,0.04961278,-0.0684163,-0.047738083,0.031254064,-0.011205455,0.041573636,-0.06850013,0.06904856,0.021239396,-0.034391407,-0.06918753,0.035009634,-0.0749439,-0.03192343,0.08266421,0.102558486,-0.009348813,-0.07132972,-0.031219784,0.013973813,0.011454928,-0.08381945,0.030926144,0.12351254,-0.08042803,-0.05437011,0.014719677,-0.027423842,0.022157276,0.011982321,0.11397869,0.008764935,-0.0086092325,0.02074652,-0.036424305,-0.08123553,0.12425646,-0.048852734,-0.1057622,-0.11807365,0.087375574,0.014739156,0.03485785,0.03137773,-0.022196664,0.019317662,0.03563514,-0.011755437,0.15765692,-0.08677796,-0.09872756,-0.022923796,0.055339526,0.006442786,0.09510591,0.04483093,0.034103196,1.0029899e-33,0.100111514,-0.0084086945,0.035999436,-0.07346294,-0.012996299,-0.019802056,-0.0996017,-0.020145798,0.007957207,0.03447426,-0.008302634,0.058569517,-0.032718938,-0.052523278,0.048455596,-0.048397824,0.0082519585,-0.023241524,0.017670264,-0.051484667,0.05152677,0.04561562,0.023254244,0.04813377,-0.07290665,-0.015004316,0.043824337,0.00863751,-0.024963915,-0.059502654,0.021677237,0.004117644,0.01175871,-0.027811894,0.030488744,0.07175953,0.038533058,0.022787794,-0.0062114922,-0.032580275,-0.033140972,-0.043993674,-0.012946218,0.0036056058,0.08170294,-0.017586142,-0.065804444,-0.035904832,-0.01285251,-0.0075828903,-0.09814097,0.024427794,-0.08052167,-0.02377577,0.09092632,-0.030404987,0.018497467,0.008539311,-0.07042763,-0.023029914,-0.1174416,0.023604028,-0.03434893,0.01725736,0.02739024,-0.05964327,-0.03254527,-0.035816252,-0.036089674,0.021406593,-0.14115234,0.06305329,-0.039285615,0.06378816,-0.013663122,-0.10191875,0.123378575,-0.01130404,0.0057724873,-0.03136419,-0.010971657,0.027385697,-0.010802376,-0.036519617,0.05852224,0.04358901,0.074113905,0.011768956,-0.06495391,0.06942484,0.03495634,-0.014202695,0.021846883,-0.044853564,0.022435438,-4.0337344e-08,-0.034150153,0.067939185,0.028570002,-0.023657672,0.01693115,-0.040271807,-0.010182596,0.017234655,-0.05958858,-0.019150907,0.0591343,-0.003234138,0.043141555,0.09224491,0.004319617,-0.0034094166,0.06930362,-0.02217919,-0.024816183,0.013630906,0.054934856,0.051240966,0.017323524,-0.014308167,-0.044320695,-0.057064787,0.0054875626,0.0019501003,-0.02122985,-0.041150462,-0.0034709342,0.010294665,-0.047481067,0.0601942,-0.028914077,0.0020164042,-0.0142243095,-0.03879809,0.03831933,0.087019704,-0.063666545,-0.0934393,0.0009945778,-0.0071018036,-0.012988155,0.060618006,0.10633283,0.03319598,-0.032992378,0.011416512,-0.004376494,0.019522073,-0.004735133,0.00827585,0.007937642,-0.015432216,-0.08815698,0.101577185,0.009463955,0.031764332,0.052777536,0.021823911,-0.08159263,0.01435104} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:41:16.740507+00 2026-01-29 18:36:00.471586+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 358 google ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB 1 t 361 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Fantástico!!\n\nTenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experiencia ha sido muy positiva. Tienes el Transfer gratis hasta la oficina, que son 5 minutos de trayecto, si llega. La atención de todo el personal es fantástica, tanto el chófer del Transfer como en la oficina (me atendió la chica canaria). el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que muchos otros sitios.\n\nLo recomiendo 100% fantástico!! tenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experiencia ha sido muy positiva. tienes el transfer gratis hasta la oficina, que son 5 minutos de trayecto, si llega. la atención de todo el personal es fantástica, tanto el chófer del transfer como en la oficina (me atendió la chica canaria). el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que muchos otros sitios. lo recomiendo 100% 5 2025-03-01 01:27:48.341346+00 es v5.1 J1.02 {J1.03,A1.01,O1.01,P1.02} V+ I2 CR-N {} {"A1.03": "La atención de todo el personal es fantástica, tanto el chófer del Transfer como en la oficina (me a", "J1.02": "Tenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experi", "O1.01": "el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que much"} {0.02101756,-0.005591158,-0.0451428,-0.060621742,-0.030759564,-0.0017603704,0.07450214,0.05204585,-0.016478295,0.0046644895,0.04496948,-0.03301224,-0.0084235035,-0.03906421,0.039320998,-0.00014487938,-0.02407668,-0.025711186,-0.079329655,0.018456625,0.05873096,-0.08626704,-0.06871176,0.08109937,-0.031153604,0.0048220726,-0.054015677,0.056322012,-0.071416445,-0.09592389,-0.06883205,0.097326204,0.07940976,0.00914691,-0.124776825,-0.031375,0.004498619,-0.05525362,-0.027950782,-0.0023162307,-0.056081053,-0.044587728,-0.0126038985,0.0061755767,-0.04650155,0.0024685352,0.01900983,0.13616212,0.048959967,0.030335763,-0.08916053,-0.040565353,0.042804033,0.04962325,-0.0707977,0.0748347,0.06497097,-0.040748753,0.07252453,-0.016506454,0.023199242,0.03669974,0.0106078,0.055858508,0.021991653,-0.071080044,-0.04066306,0.0022633253,-0.01697927,0.021314686,0.032780975,-0.06346149,-0.01350792,-0.000118074815,0.03235041,0.02488271,0.0076068067,0.018320767,0.008618989,0.029166898,0.09244851,-0.052407768,-0.027131373,-0.04549395,-0.04954856,-0.02975776,-0.0607702,0.011174976,0.030364918,-0.08509513,0.023541462,0.099786595,-0.011920524,-0.058188908,-0.047928095,0.007652917,-0.003780855,-0.047012616,-0.031180648,-0.004288533,0.07731689,0.045917124,0.054399896,0.040813006,-0.1062013,0.0063032373,0.094161764,0.012050815,0.027972013,0.0065567656,-0.090070635,0.0064222002,-0.00047366094,-0.058736518,-0.09585708,0.07178686,-0.07279836,-0.06771555,-0.035116337,-0.08906776,0.04200906,-0.011893657,0.02901107,-0.048070777,0.022037052,-0.06497891,0.013994442,1.2787123e-32,-0.056018718,0.05171133,-0.021072535,0.026456488,0.00772272,0.0030243061,0.016897708,0.017815506,0.009966407,-0.08997718,-0.098506704,0.03963356,-0.014526108,0.061852716,0.06283775,-0.04067974,0.036313474,-0.04336994,0.13172905,-0.0059118876,-0.005536137,-0.06220073,-0.041952156,0.014648515,0.05730816,0.084188156,0.00449243,-0.04360538,-0.001081537,0.03367746,-0.008069529,0.03384814,-0.035996333,0.010024379,-0.016690373,-0.041885138,-0.029801097,0.036822762,0.027459754,-0.026089836,-0.040856875,-0.01650414,-0.101099744,0.01885263,-0.06010783,0.04372353,0.015391607,0.02980957,0.11294528,0.056033704,-0.111977994,-0.027511686,-0.07131571,-0.006194996,-0.020768346,-0.0037644485,-0.057345696,0.00402689,-0.06356559,-0.07755446,0.02650277,0.004618748,0.044095658,-0.07460024,-0.015159588,0.007084071,0.035191182,0.010258545,0.10108857,0.0363713,-0.055658933,0.017333291,-0.034736745,0.033653542,0.034750726,0.007172926,-0.00808532,-0.0041173813,-0.010387004,0.04408767,0.03214854,0.03524995,0.039654844,-0.009581751,0.06306707,0.0019337328,0.093918666,0.07566725,-0.05682488,0.13045609,0.014677049,0.08027051,0.06411813,0.0067938603,0.05730123,-1.3449926e-32,0.016446572,-0.021503635,0.0052771037,0.03957875,-0.02443952,0.05509466,0.00092650985,0.033247758,-0.0020519416,0.046528593,-0.105344556,0.0028958684,0.012446519,-0.066963375,-0.07926813,0.028674956,-0.0053531844,-0.073868625,-0.06632902,-0.060631994,0.11076805,0.028841717,0.02785395,-0.011773393,-0.060110666,-0.073446095,-0.029953387,0.014933725,-0.044546384,0.02784807,0.0117733795,-0.015762059,-0.019013025,0.09122498,0.0064333268,0.0061197127,0.012773436,0.1003313,-0.0030036154,0.07337343,-0.0065755155,0.0053490065,0.017878864,-0.07018735,0.02147068,-0.012796641,-0.0006888733,-0.18764603,-0.055141162,-0.042461753,0.088412665,-0.05774108,-0.08453194,-0.007827843,0.09319298,0.068081595,0.12875725,-0.09907434,-0.08273992,-0.0658583,0.0062981867,-0.018534543,-0.06173978,-0.061384425,0.07474394,-0.0381972,0.040676236,0.015783744,0.045401216,0.042731892,0.003327594,-0.006934151,0.014456933,0.037606567,-0.047228448,-0.0062412787,0.04098261,0.045552004,-0.00047982667,0.036996912,-0.025934337,0.06723921,0.074485175,-0.05976585,-0.019383403,-0.023166394,0.008091011,0.028223181,-0.022391493,-0.014956669,0.017965792,0.03748684,-0.029159917,-0.095825255,0.0005016609,-5.8082055e-08,-0.0038861285,-0.0775879,0.055491373,0.046422858,0.04722135,-0.00078433746,-0.005695323,-0.009401204,-0.024025958,-0.001534932,-0.0068233423,-0.038967174,-0.024329146,0.05403783,-0.0101983,-0.05301424,0.03868379,0.106452286,-0.009088603,-0.06912797,0.028735539,0.0010603282,-0.025839584,0.0100639565,0.035562534,0.030313693,-0.025563871,-0.00880521,0.015614603,-0.01503402,-0.039650183,-0.030736957,-0.01601992,-0.098455764,-0.056301855,-0.062446903,-0.006959066,0.0099337315,-0.10172819,-0.022242216,0.080796346,-0.00433441,-0.12546113,-0.01858672,0.039980758,-0.07170559,-0.045902736,-0.06288367,0.010337082,0.019995222,9.328975e-05,-0.043283008,0.09449324,0.050545517,0.013292982,-0.024034305,-0.04637181,0.04294056,0.0067097754,0.038096275,0.082454495,0.09142512,-0.06386491,-0.0022104313} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:51:21.882799+00 2026-01-25 01:27:51.075934+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 675 google Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB 1 t 678 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafen. Immer wieder gerne. es war alles perfekt, bis auf die fehlende beschilderung der bushaltestelle des shuttles am flughafen. immer wieder gerne. 5 2026-01-18 01:27:48.343184+00 de v5.1 J1.02 {E1.02} V± I2 CR-N {} {"J1.02": "Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafe", "R1.01": "Immer wieder gerne."} {-0.01617748,0.07713808,0.008932013,-0.04983407,-0.035720255,0.0020742598,0.0183393,0.10583167,-0.011892416,0.006528098,-0.013594712,-0.09834866,0.048343305,-0.052180756,-0.08163448,-0.07846245,-0.062778026,0.047297854,-0.0146583915,-0.0026316182,-0.05198242,0.004429928,0.018403487,0.077760406,-0.09083215,-0.043197263,-0.072276704,-0.02677415,-0.03450075,-0.059175592,0.024442235,0.00027780997,-0.0071713966,0.030022776,0.051754516,-0.004001265,0.008666927,-0.06856298,-0.011046227,0.037301708,-0.17435473,-0.0025381714,0.01345654,-0.007954635,-0.030306293,0.06376678,-0.0036886206,-0.025308834,0.03432422,-0.004116439,-0.04703699,-0.040400308,0.014149253,-0.042010263,0.064806625,-0.05868626,0.02145742,-0.051351186,-0.014813354,0.06308921,-0.012990593,-0.039586656,-0.027901873,0.0144723905,-0.08151323,0.007183961,-0.0009907824,-0.0010422382,-0.029941788,0.0026678774,0.03991111,-0.051443916,-0.00031117184,-0.04619049,0.01652579,0.082442425,-0.00585096,0.10009137,0.05596037,-0.096057035,-0.01485056,-0.053137407,-0.0090962155,-0.05607929,0.03178957,0.0020524173,0.015405137,0.025478546,0.06844749,0.06471383,-0.024978852,0.010350277,-0.12974319,0.061377723,-0.09057467,0.008829303,-0.013904073,-0.059803274,0.016691279,0.029054059,-0.010631935,-0.054609705,0.092326425,0.08537384,-0.07923536,-0.026215365,-0.017920472,-0.033622976,0.00056937116,-0.07484758,-0.022999333,-0.012884004,0.06102882,-0.011296037,-0.022224838,-0.0048112064,-0.026842084,-0.1334849,0.0014904236,-0.004934055,0.00045131406,-0.020012112,0.0002883289,0.08604687,0.034070764,-0.030589439,0.052154694,8.114573e-33,-0.015053553,-0.059852973,0.015625266,0.063280016,-0.0841901,-0.043561738,-0.06468971,-0.0013996025,0.048396174,-0.040307574,-0.05376916,0.016010856,-0.038062688,0.037547193,0.020478718,-0.09785001,0.043343578,-0.0631111,0.009765034,-0.057968788,0.0096795475,-0.021724679,-0.025673805,-0.009587528,0.14277537,-0.016856683,-0.008650258,0.012774529,-0.10755155,0.058658347,-0.060369518,-0.0112528,-0.054879136,0.035877433,-0.002143903,-0.061239872,0.040503535,0.08179115,-0.015718792,0.0037642843,0.014835732,0.004919266,-0.057091113,-0.058930114,0.07263128,-0.0008775337,-0.016997067,0.070122704,0.11004925,0.019082928,-0.04626224,0.05052257,0.013150205,-0.086968794,0.03157718,0.04286431,-0.031875923,0.010656992,-0.026527427,0.061746575,-0.03407042,0.07251114,0.016165385,0.017954145,0.044408742,0.037042692,0.016694471,-0.00793107,0.041241765,0.102658115,-0.03969238,-0.07253545,0.15646729,0.041153874,0.01878473,-0.0065443316,-0.021604693,0.09740818,-0.08676922,-0.004383539,0.0019335967,-0.0021115495,0.04425072,-0.05482142,0.012732379,-0.0041527427,0.047491692,-0.035644174,0.028804347,0.07867882,-0.04133759,0.034297697,0.03677882,0.02033581,0.0018880242,-9.922883e-33,0.022112379,0.044934195,-0.022241598,-0.009017101,-0.08460209,0.10792659,-0.0056399526,-0.005821001,-0.08302148,-0.013751858,-0.082437605,-0.005823851,0.11148683,-0.09160565,-0.09137774,0.005347187,0.05591174,-0.012849565,-0.028875485,0.013803611,-0.06830739,0.0012087338,0.0024078025,-0.027316665,-0.009859803,-0.042960465,0.047388323,0.08101893,-0.0694855,0.0070472243,0.044483017,0.019539155,0.061205544,0.03293159,0.007780622,-0.020691438,0.10103881,0.13310425,0.010528265,-0.015225085,-0.03451966,0.034447026,0.010739432,0.03310096,0.015568144,0.007915241,-0.08693279,-0.10684554,-0.03605166,-0.06284106,-0.026387682,-0.0046619037,0.037684098,-0.05595744,-0.002858427,-0.043865126,0.022587396,-0.087609224,-0.055715896,0.067182496,0.042370006,0.0028602162,0.0703453,-0.09170151,0.033507954,-0.10122889,-0.11663747,0.015193204,0.058294713,0.068695575,0.08598155,-0.002970372,-0.020596325,0.08615101,-0.018051907,0.048129957,0.022544079,0.024674557,-0.034939136,0.07757322,-0.041583575,0.052265793,0.020934269,0.0031101292,-0.06308675,-0.035512973,0.014524043,-0.03006574,0.0036035436,-0.07022298,0.042487003,-0.012496028,0.06811464,-0.007029454,0.035461314,-4.1334857e-08,0.03606082,-0.0053684697,-0.03912603,0.072652906,-0.009898762,-0.03360294,-0.00900808,-0.030647714,-0.09191785,-0.012981683,0.031651966,0.060611412,-0.049075723,0.093321666,-0.069229715,0.031128645,-0.016361607,0.035253856,0.001533604,0.048190475,0.028901616,-0.07749531,-0.030645711,-0.042729355,-0.022292923,0.039355922,0.03584873,-0.062879756,0.0658606,-0.03944967,-0.089876056,0.012029761,-0.0192015,-0.035259563,-0.039787706,0.07207987,-0.034515753,0.06307228,-0.08155821,0.061920635,0.080637775,0.06649402,0.04945082,-0.06929615,-0.0044854316,0.0018277951,-0.112147,0.033632882,0.010356506,0.085052095,0.0149881,0.022253394,0.02188902,0.051659513,0.033556923,0.052157577,0.0034964338,-0.030997623,-0.022636998,0.0064768223,0.024688527,-0.0036959888,0.017664324,0.011804481} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:00:42.066803+00 2026-01-25 01:27:52.347828+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1203 google ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE 1 t 1206 Soho Club unknown Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as I see most these reviewers are tourists. Guys, Lithuanians in general aren’t the most easy going people. So please don’t be offended if you can’t find people to talk to very easily. The club however definitely deserves a 4.5+ rating.\n\nIf you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. It won’t be super easy but you will get some great connections there for sure :) soho is the only club with quality in vilnius. i think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as i see most these reviewers are tourists. guys, lithuanians in general aren’t the most easy going people. so please don’t be offended if you can’t find people to talk to very easily. the club however definitely deserves a 4.5+ rating. if you’re a tourist who wants to visit, please have an open mind, and be patient. grab a friend with you when coming, talk to people in the smoking areas. it won’t be super easy but you will get some great connections there for sure :) 5 2023-01-30 18:34:31.336452+00 en v5.1 P1.02 {} V- I2 CR-N {} {"O1.01": "The club however definitely deserves a 4.5+ rating.", "P1.01": "If you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with", "P1.02": "Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which"} {0.07460854,-0.07971455,-0.008689196,0.051572457,-0.0889885,0.01656598,-0.008074552,-0.024887929,-0.030967603,-0.054903667,-0.017780555,0.02225126,-0.0007973816,0.009984566,0.021948,-0.010171785,0.09464978,-0.06367593,-0.0073611033,-0.049211465,-0.01931275,-0.056329243,0.05750757,0.055952407,-0.0487371,-0.10190902,5.7224042e-06,0.019319454,0.008397614,-0.02614858,-0.03778726,0.113714665,-0.022953777,-0.0022934917,-0.07283193,0.005995836,0.010831119,-0.099631876,0.006481554,0.034768198,0.0064631947,-0.0076166424,-0.031555854,0.022246664,-0.012543944,0.003925246,-0.022637099,-0.0040961313,0.000854301,0.085637935,-0.00549676,-0.014769351,0.06754996,-0.08642135,-0.026613073,-0.03229795,-0.08190572,0.03742045,-0.033437073,0.0035154577,0.1276701,-0.027443344,-0.09145158,-0.00032105634,0.043493554,-0.02005527,-0.035380673,0.040821925,0.058569033,-0.06485503,0.0069195135,-0.03694816,-0.05352903,0.051801983,-0.06316021,0.022279862,-0.07188395,0.016890725,0.00871826,0.008801479,0.108775474,0.0045696087,-0.031799085,0.071875356,-0.015290453,-0.047989342,0.021628186,-0.0064164405,-0.013181936,0.033317752,-0.017302671,0.088069975,-0.10733747,-0.027537588,-0.0037922792,0.048357494,-0.038791455,0.01120913,-0.03810024,0.042003598,0.004217392,0.13483335,-0.055506367,-0.048209567,-0.08848499,0.003752942,0.04353146,0.03922315,-0.039651293,0.053974044,0.014558629,0.0130103305,0.017090134,-0.06422904,0.002487023,0.051978122,0.11714588,0.010456619,0.017313147,0.035313986,-0.015119815,0.043286767,-0.0044666715,0.016201038,0.003183989,0.0041574403,-0.03690732,9.874914e-34,-0.015249671,0.07274833,-0.027302023,0.05942098,-0.03908953,0.03502923,-0.06395204,-0.05803276,-0.060772713,0.0015793784,0.040091008,-0.02218515,-0.0071419184,-0.08521877,0.10412566,0.047756743,0.07812618,-0.058316,-0.11186876,-0.050311647,-0.012292255,0.04016321,-0.003696773,0.02643196,-0.057637602,0.042426594,0.059264053,-0.005253392,0.02740142,-0.0061608716,0.024574751,0.013483276,-0.066750914,0.012710661,0.008081907,0.038692236,-0.051515203,0.008521731,-0.021464601,-0.06995733,-0.028405633,-0.019801179,-0.051473655,0.07635713,-0.003932099,0.1053869,-0.063056424,-0.06159927,-1.39458525e-05,-0.04259984,-0.08607214,0.039530057,-0.07661826,0.09777136,-0.03117324,-0.022922764,0.044347096,0.053060964,0.016647492,-0.02923045,0.07034175,0.005632566,-0.07279823,0.0061433846,-0.0190932,-0.032892443,-0.0005092485,-0.037188098,0.030933926,-0.0342449,0.05454111,0.00022221982,-0.011869327,0.044594213,-0.04069335,-0.009105261,-0.018156799,0.027174369,0.06697953,0.09243281,0.005036274,-0.0017504164,-0.04485549,0.007106889,-0.048521016,-0.033045013,0.1202334,-0.06358567,0.023207115,0.02256778,-0.041747276,0.014371562,0.10229514,0.032768834,0.0068274583,-2.9471087e-33,0.07926965,-0.022568412,0.07454791,-0.027308255,-0.05211212,0.0724312,-0.09161301,-0.03465572,0.05577762,0.11093838,-0.12082154,-0.0022207834,0.02852778,0.035228528,0.046143834,0.0071016094,0.11216471,-0.08842325,-0.01716093,0.03279599,-0.026383886,0.13524505,0.01575722,0.035045955,-0.03875195,0.012492722,-0.034570996,-0.0035750305,-0.085429095,0.0028068188,-0.0127879055,0.011127519,0.0223951,0.003900908,0.04536135,0.04806176,0.107019015,-0.012751403,-0.06855393,0.03399318,-0.004880579,-0.04818778,-0.04946992,-0.04547197,0.09675141,-0.09185992,0.009498217,-0.07384529,-0.10263097,-0.042806637,0.06341421,0.016850565,-0.076370485,0.03390114,0.029698329,-0.015854858,-0.061616134,-0.014267174,-0.00047968773,-0.021769915,-0.04318707,-0.015293671,-0.080521144,0.05905268,-0.024962608,-0.041093454,0.029238567,0.01704822,0.014332903,-0.018111704,-0.12448596,-0.039685927,0.020095268,0.091360986,-0.012003347,-0.05393132,0.043894272,0.03582834,0.002508512,-0.058445074,0.017181206,0.0013016827,-0.011065629,-0.043816134,0.13358925,-0.022539165,0.051397458,0.010930854,-0.0065400484,0.02402774,0.04501111,0.035831723,-0.006200772,-0.010870156,0.03482412,-4.3466706e-08,0.06534425,-0.01677375,0.008586266,0.077529095,-0.013463724,-0.1452086,-0.030079931,0.100356095,-0.003231572,0.085999586,-0.099448994,0.012781824,-0.039493386,0.009858127,-0.016274136,0.04712708,0.0034113247,0.059566136,-0.020776277,0.090175614,0.01940832,0.019226419,0.010161109,0.00062631717,-0.05550244,-0.023735555,-0.03234868,-0.08230928,-0.03960499,-0.06283121,0.022113258,0.03357626,0.021885917,-0.024105346,-0.044279087,0.032859948,0.1113011,-0.047446862,-0.008023806,0.050080407,-0.060458634,-0.1214315,0.010275836,0.019567624,-0.02921065,0.019237753,0.023549046,-0.07696176,-0.009697198,0.009663122,-0.040043794,0.061010167,0.036638513,-0.06747626,-0.0804522,-0.031565186,-0.031876825,0.07701927,0.0037199997,0.008499517,0.083314925,-0.0051687136,-0.054954965,-0.039671645} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:41:45.108173+00 2026-01-29 18:36:00.475588+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 282 google Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB 1 t 285 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden.\nDas Personal war äußerst freundlich und hilfsbereit, und die Abwicklung verlief dank des vorab möglichen Online Check unterwegs zur Filiale ins besonders zügig.\nDas Fahrzeug war in einwandfreiem Zustand sogar ein besseres Modell als ursprünglich gebucht.\nAuch das Preis-Leistungs-Verhältnis überzeugt auf ganzer Linie.\nLediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert! ich war mit meinem mietwagen erlebnis bei clickrent in gran canaria sehr zufrieden. das personal war äußerst freundlich und hilfsbereit, und die abwicklung verlief dank des vorab möglichen online check unterwegs zur filiale ins besonders zügig. das fahrzeug war in einwandfreiem zustand sogar ein besseres modell als ursprünglich gebucht. auch das preis-leistungs-verhältnis überzeugt auf ganzer linie. lediglich die wartezeit bei der abholung (ca. 30–40 minuten) war etwas länger, ansonsten rundum empfehlenswert! 5 2025-11-26 01:27:48.340828+00 de v5.1 P1.01 {O1.01,V2.04} V+ I3 CR-N {} {"J1.01": "Lediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empf", "P1.01": "Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden. Das Personal war"} {-0.05466054,0.016667387,0.008161755,-0.044658456,-0.077032976,0.028288808,-0.005879796,0.13983706,-0.02938821,0.011038027,0.031051876,-0.044771485,0.026895735,-0.0374139,-0.04540713,-0.003535203,-0.011218343,0.0101780305,-0.05171991,0.05807229,0.017886717,-0.0450409,0.007771778,0.028240649,-0.00058683124,-0.017263804,-0.020744063,-0.04403786,0.001146725,-0.012815861,0.08855997,-0.019316772,0.028493807,-0.013525891,-0.04131476,0.0074674683,-0.022993108,-0.05545558,-0.026966631,0.009024459,-0.0401587,-0.060091875,-0.046389725,-0.044965383,-0.045174118,0.044162016,0.035065617,-0.012117931,-0.10708168,0.10099746,-0.042424038,-0.013981556,0.044775423,-0.05893457,0.028104562,-0.13775912,-0.0358892,0.020822152,0.06211724,0.05265892,-0.056444727,-0.042760942,-0.036473583,-0.0017369234,-0.011033327,0.016438587,-0.032719195,0.005452037,0.040606283,-0.0025418787,0.017239617,-0.062483136,-0.022111557,-0.008669669,-0.05760671,-0.041308314,-0.027806789,0.022220189,0.057584185,-0.11777858,0.048309922,0.0016574032,0.020619232,-0.0016818823,0.031223143,-0.00022372718,0.050075054,0.1319072,0.015325625,-0.042353705,-0.020650439,0.09062032,-0.10997082,0.02562753,-0.00815789,-0.0026109414,0.06660644,-0.037563942,-0.033872392,0.027842218,0.0040840027,-0.019132707,0.033892456,0.04041243,0.019759594,-0.07972393,-0.03428068,0.040844154,-0.04335017,0.06407506,-0.02610658,-0.10545075,-0.034223296,-0.108724795,0.07072158,-0.035560917,-0.0069777383,-0.10568589,0.02562524,-0.00690678,-0.0067892233,-0.06667509,-0.026428832,-0.07585589,0.008384738,-0.04115698,0.061160572,2.1318032e-32,-0.040323842,-0.08175769,-0.10800725,-0.0036851917,0.01936978,-0.0051809265,0.03829919,-0.007871294,0.06138128,-0.044241242,0.022839539,0.08702971,-0.049882535,0.035698224,0.020764645,0.001669243,0.02523741,-0.03196559,0.012817341,-0.05081241,0.023680259,-0.034657497,-0.014700715,0.01601648,0.05058482,-0.029003259,-0.0014632543,-0.007083411,-0.0012502589,0.055198137,0.0998191,-0.01773689,-0.08212853,-0.057100955,-0.008093497,-0.06127906,-0.031003714,0.04832706,-0.039242722,-0.06357741,-0.041031912,0.008949299,0.023924928,-0.008895422,-0.029153422,0.0062084063,-0.012428805,0.016246138,-0.007550462,0.03413196,-0.03068823,0.01575755,-0.04952993,-0.016897364,-0.036843676,0.09623928,-0.07969032,-0.0065366128,-0.07797813,0.0011446351,0.04308412,0.038360953,0.09013568,-0.017666832,0.0039790506,-0.06889754,-0.0004908317,-0.008518694,0.037421964,0.04770411,-0.0038970923,-0.015566435,0.03509441,-0.042671617,0.08076584,0.0375184,0.065047964,0.01772844,-0.10920547,-0.00016990854,0.046929467,-0.02757015,0.04351827,-0.074908435,0.049949188,-0.05515247,0.037792508,-0.037909176,-0.093756944,0.077204,0.03187365,0.005264013,-0.03000715,0.077967994,-0.030488465,-2.1949489e-32,0.08493179,0.05894437,0.0041374546,-0.019578777,0.042830035,0.0724223,0.0013590084,0.06754161,-0.0979059,0.07450148,-0.050915506,0.021892501,0.048023984,0.056937963,-0.06187184,0.013337425,0.072619975,-0.049974866,-0.020149428,-0.068739615,0.0034508149,0.038977563,-0.05420907,-0.06287296,0.015920596,-0.03439106,0.029317977,0.0031328397,-0.058287647,-0.042719,0.031218102,0.051105127,-0.039161853,-0.06360297,-0.010987704,-0.025047656,0.06067042,0.04495399,0.027250223,-0.045194555,0.06366062,0.012958238,-0.03720872,-0.0347625,0.029073259,-0.062513225,-0.1578911,-0.098561734,-0.041791353,-0.06658209,0.030855227,-0.016612703,0.09670398,-0.07309367,0.03745257,-0.0074607343,0.0822208,-0.1453956,-0.11412342,0.0150224045,-0.017534947,-0.038245697,0.018962022,0.0021386738,0.042516407,-0.028938523,-0.061248258,-0.035390265,0.053458434,0.04085213,0.019362671,-0.037717428,-0.02010248,-0.0017939158,0.0017094814,-0.07434604,0.042332303,0.0484042,0.03349387,-0.0085711805,-0.01651806,0.09968804,0.0056652823,-0.09655154,-0.13441941,-0.005468018,0.06526276,0.04966284,-0.0449742,-0.020083442,0.05650915,0.06352791,-0.04791403,0.023244139,-0.061230566,-7.802483e-08,-0.01779037,0.02206411,0.043223035,0.06665419,0.034730155,-0.038275298,-0.0056878757,0.0076864976,-0.027467284,0.09075123,0.009975433,-0.009662851,0.012599088,0.11071843,-0.045121796,-0.03435764,0.04199785,-0.048434682,-0.048101403,-0.006180101,0.06533689,-0.07066446,-0.07426867,0.031266354,0.055708412,0.06876241,-0.02690909,-0.033639546,-0.06206485,0.054021183,-0.023008935,0.12371475,-0.09137086,-0.039943423,-0.1422187,-0.0092253,0.017970394,-0.00030629442,-0.11317436,0.023461362,0.09250407,0.028815271,0.04864003,-0.011460847,0.051074892,0.0019265696,-0.013447629,-0.058771655,0.020554261,0.11737979,-0.022744264,0.027022835,0.058691148,0.01189903,-0.039231595,0.02023896,0.038919736,0.02500189,0.036845747,0.011509223,0.023925317,0.021066533,-0.040981,0.07620264} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:54:27.091557+00 2026-01-25 01:27:50.803917+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1204 google ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE 1 t 1207 Soho Club unknown I've been to many gay venues across Europe and around the world. Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfortunately this is not the case. It's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. The staff were mostly friendly which was the only positive. As me and my friend left we meet a young man who was dressed beautifully in a mini skirt and tank top, unfortunately he was refused entry. This is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. He was not drunk, he was not loud and he left rather embarrassed as result of his treatment. Honestly they could do better and so could you by, spending your money elsewhere. i've been to many gay venues across europe and around the world. based on my experience of vilnius thus far i really hoped this was going to be a great venue, unfortunately this is not the case. it's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. the staff were mostly friendly which was the only positive. as me and my friend left we meet a young man who was dressed beautifully in a mini skirt and tank top, unfortunately he was refused entry. this is one of the most blatant forms of discrimination, i have witnesses personally at gay venue. he was not drunk, he was not loud and he left rather embarrassed as result of his treatment. honestly they could do better and so could you by, spending your money elsewhere. 1 2023-01-30 18:34:31.336452+00 en v5.1 E1.03 {} V- I2 CR-N {} {"E1.03": "Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfort", "P1.01": "The staff were mostly friendly which was the only positive.", "R1.02": "this is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. H", "R1.03": "Honestly they could do better and so could you by, spending your money elsewhere."} {0.12205307,0.072399735,-0.02889249,0.01652361,0.026263483,0.036882583,0.014419437,-0.0894984,-0.0005169407,-0.0052247276,0.009907964,0.03118999,-0.041163545,0.07134743,0.05275141,-0.05068752,0.032679442,-0.026466811,-0.038837444,-0.024220636,-0.042703956,-0.07172253,0.02700062,-0.00272588,-0.07302503,-0.083217554,0.04553949,-0.0054608798,0.010742465,0.027308684,-0.038225077,0.04317115,-0.006590457,0.009527475,-0.05498641,-0.027119897,-0.04106891,-0.1419266,0.03273144,0.030600017,0.055875983,-0.021671666,-0.04140636,-0.018128661,0.00145442,-0.024787968,0.047632657,0.00021634932,-0.07017507,-0.012045593,0.057174526,-0.027328113,0.0883264,-0.10774343,-0.048922516,0.00029245773,0.0067633833,0.023495007,0.0013959049,0.05070086,0.06770715,-0.0056941863,-0.11242948,-0.021030888,-0.05715736,-0.022544123,-0.028460706,0.062990434,0.10942988,0.006206875,0.032573253,0.018697834,0.0016893132,0.02352308,-0.041533746,-0.035251137,-0.08390445,0.05075462,0.045469128,0.01947575,0.11107488,-0.09744272,0.0032224813,0.0060253073,-0.06847,-0.07808098,0.022958089,-0.032125194,0.00045591683,0.06563855,-0.07845936,0.10928483,0.008283897,-0.09429195,0.036157414,-0.019529585,-0.051696293,0.062172614,-0.017159078,0.04574535,-0.021705087,0.0929896,0.007656135,-0.008327824,-0.055105686,-0.060051814,-0.02476817,-0.018543137,-0.07922312,0.035079934,-0.025683813,-0.018762987,0.06652762,-0.089475036,-0.008953808,0.029396106,0.065631755,0.012992934,0.022927985,0.06326533,-0.005861297,0.022058595,-0.005753574,0.061670903,0.023678767,0.057169963,-0.044321712,2.6775385e-33,0.022790061,-0.012957152,-0.118490025,0.030173585,0.047425836,0.020800637,-0.016630622,-0.08475869,0.025810592,0.019595342,0.036002826,-0.0041331155,0.0012174748,-0.0839692,0.0014014889,0.004036684,0.07416657,0.04903571,-0.11069884,-0.001951715,0.0811643,0.03021882,-0.029713327,0.0197379,-0.1202674,0.073957,0.032404747,-0.004169293,0.091315,0.0036921564,-0.009364535,0.057600424,-0.007987167,0.02150559,0.052713808,0.048092756,-0.016188785,0.020349724,-0.022117132,-0.05485838,-0.007978585,-0.013359272,-0.020377813,-0.0017536829,0.008981756,0.11073941,-0.038759075,-0.107428186,0.030427882,-0.007591292,-0.049773708,0.09952537,-0.106898785,0.08615795,-0.019621337,0.00942927,-0.01278822,0.028964384,0.06916333,-0.015096739,-0.027376046,0.04988975,-0.010213663,0.039288662,-0.00912856,-0.049602393,0.018459601,-0.10982319,0.026115648,-0.07321485,0.037456,0.038025558,0.068451844,0.03726711,-0.011989484,-0.02549618,-0.05689728,-0.0006452739,0.08673581,-0.03075739,0.04713683,0.03848079,0.042121463,-0.04505014,-0.055079747,-0.05951984,0.044672254,-0.07807823,-0.01696085,-0.024377655,-0.05262681,-0.008985486,0.02141835,-0.069631755,0.024351101,-5.1313333e-33,0.09415702,-0.038763367,0.034876212,-0.037800454,0.04236383,0.04361447,-0.02265753,-0.015901137,0.1053822,0.15243892,-0.072103955,-0.04131591,0.09589992,0.05591304,0.0073953853,-0.003406882,0.10641267,-0.051224295,0.009554648,0.023773713,-0.016461583,0.08145664,0.022444915,0.07899494,-0.005475562,0.022000045,0.011672299,-0.055795666,-0.03397237,-0.028787734,-0.035329778,0.04238398,-0.016466333,0.024627773,0.025256958,-0.011604407,0.085341,0.09022872,-0.0919143,-0.0630079,0.012484088,-0.05847505,-0.0034521918,0.062468365,0.105734,-0.077637374,-0.028804671,-0.024747832,-0.0019429304,-0.1352068,-0.076422036,0.017936133,-0.08091314,0.0027521004,0.012473286,-0.052297927,-0.04714584,-0.043356247,-0.08646827,0.046137568,-0.0068405503,-0.04785527,-0.02062189,0.034271426,0.023707341,-0.026891759,-0.01743091,-0.014664377,0.0011527708,0.028079448,-0.01575826,-0.04227639,0.02095436,0.062001854,0.03875992,-0.049937773,0.025407264,0.04649918,-0.024568653,0.012649608,0.050838493,-0.046370663,-0.045868967,-0.042134345,0.10979062,-0.018386725,0.029497229,-0.06732417,-0.04189158,0.004065929,-0.06105304,-0.0043220934,-0.016367279,-0.03813427,0.09829767,-4.6721954e-08,-0.0065490333,-0.02955353,-0.045519657,0.08133055,-0.052447323,-0.11121792,-0.07305326,0.032197304,0.010118323,0.030489525,-0.12512729,-0.015477458,-0.015926572,-0.0033854113,-0.026984025,0.016357949,0.007486494,0.023755578,-0.020440152,0.08726701,-0.03298215,0.07888929,-0.021358557,-0.063722596,-0.036776144,0.016076716,-0.027712308,-0.06351837,-0.0411122,-0.002192306,-0.016116174,0.009456761,-0.020163195,-0.0035709823,-0.013807923,-0.019609634,0.07761126,-0.0013291937,0.050706327,0.00324135,-0.05587955,-0.08258639,0.023208542,0.0123894075,0.032937594,0.010396135,-0.010772015,0.04181006,-0.007439477,0.04187924,-0.05206046,0.07449499,-0.027293194,-0.02260416,0.02029823,-0.042559773,-0.0068502366,0.08650034,0.012181805,0.078273185,-0.005675275,-0.029567128,-0.08342441,-0.055173967} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:42:04.424073+00 2026-01-29 18:36:00.478416+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 292 google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB 1 t 295 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et auto saame kätte Clickrent-st. Seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui pole varem käinud cran canarial. Ehk siis peate minema teisele korrusele õue ja station 2 juurde.\nAuto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav. võtsime internetist auto läbi economy car rentals-i. maksime rendi tasu. saime kinnitava emaili, et auto saame kätte clickrent-st. seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. suhteliselt keeruline oli leida kohtumispaika lennujaamas. soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. ise muidu üles ei leia, kui pole varem käinud cran canarial. ehk siis peate minema teisele korrusele õue ja station 2 juurde. auto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav. 3 2025-11-26 01:27:48.340866+00 et v5.1 J1.02 {P1.02} V- I2 CR-N {} {"A1.01": "Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui po", "J1.02": "Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et ", "J1.03": "Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, ku", "O1.02": "Auto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli st"} {-0.033394802,0.08475595,0.007867387,-0.048756614,-0.062140703,0.0033939765,0.08682557,0.06434673,0.013697165,-0.030734716,0.03276843,-0.033725828,0.00025048412,-0.026809605,-0.047534917,-0.08833842,0.022504741,0.026270704,-0.06599431,-0.047081318,0.019788312,-0.064928755,-0.018195348,-0.03990088,0.019822912,0.06724582,-0.03353876,0.018837968,-0.023781138,-0.05457329,-0.085695006,0.035160758,-0.00023735948,-0.018406782,0.08731355,0.018010462,-0.04614205,-0.045818932,0.023461802,-0.010279458,0.023028947,-0.11714442,-0.11000142,-0.07892952,0.030259365,0.0007246532,0.014524713,0.03241488,0.010764719,-0.034299783,-0.07693237,0.061183818,0.029202743,0.015295017,-0.072912656,-0.06449713,0.015022191,0.07938934,0.052172087,0.033198085,0.037274506,0.04118731,-0.026007019,0.029082028,0.030433122,-0.07502406,-0.13174824,-0.014128597,-0.08916283,0.05889816,0.043930784,-0.036331296,-0.09223469,0.036286194,-0.022837276,0.03409845,0.02328568,-0.01965859,0.053521603,-0.031892322,-0.0019022077,-0.055607352,0.013241311,-0.033962753,-0.06692954,-0.014994294,0.0006878473,-0.0032699907,0.09659043,0.0035317314,0.051617272,0.034672927,-0.04203283,-0.025548106,0.07566732,-0.0031513036,-0.047568955,0.03594287,-0.013663739,0.028167736,0.077887066,0.0025295215,-0.02628449,0.001309841,-0.14164034,-0.027814953,0.05243525,-0.061938774,0.033273295,0.01574752,-0.102784194,-0.04983519,-0.01290947,-0.15384114,-0.07951653,0.072910376,-0.07421927,-0.0067711915,0.040651377,0.054743804,-0.014793414,-0.06713242,0.010012215,0.047170006,0.066707544,-0.009006212,0.083318904,2.7315189e-32,-0.08040122,0.0025910274,0.01148269,-0.029713003,-0.02042124,-0.013292461,-0.086391516,0.0048454986,-0.027599983,-0.028877713,-0.060504623,0.00857929,-0.07651491,-0.015824012,0.042478368,0.020365292,0.021990366,-0.070418075,0.027949886,-0.051943105,0.04521908,-0.037861686,0.040703755,-0.00053404574,-0.015065241,-0.03305524,0.015932735,-0.04239038,-0.0007736813,0.06641227,0.08102558,-0.017501688,-0.03369988,0.0055960193,-0.11865942,0.01690031,-0.05781273,-0.027439147,-0.11260116,-0.044547115,-0.010097725,-0.025239551,0.016170215,0.022370776,-0.016980566,0.028289298,0.08702496,0.0052022426,0.10387945,0.03187249,-0.064814046,-0.023920447,-0.09097169,-0.06097842,-0.033979036,0.11154511,0.023971463,-0.029178293,-0.013761836,-0.025514487,-0.10749102,0.028256362,0.058030754,-0.07409895,0.012488697,0.013424001,-0.03694127,-0.019688724,0.12162489,0.015894592,-0.025598342,-0.0943401,0.01088464,0.040937696,0.05467327,0.037703946,0.045078512,0.036158167,-0.048395585,0.015784621,-0.032230783,-0.013108159,0.023283247,-0.012707399,0.08427809,-0.0076743173,0.003150197,-0.017126126,0.03461689,0.11006337,0.03978523,0.042451784,-0.042368107,0.036211852,-0.032835443,-2.6026685e-32,-0.0045116805,0.00089036534,-0.021746954,0.034999464,0.0062860595,0.034710743,-0.06022219,-0.008339667,0.055781223,0.052039124,-0.08407626,-0.036877804,0.071281925,0.05903201,-0.072249904,0.017082294,0.035143644,-3.8637714e-07,0.00060567487,0.026362725,-0.05264618,0.036707684,-0.007635307,0.11807765,-0.052279178,0.02257834,-0.0536633,0.016517408,-0.056019988,0.02685688,-0.019776348,-0.04081802,-0.070253946,0.1490959,-0.015825959,0.010014775,0.07734267,0.01494591,-0.082458735,0.07408881,0.03693182,-0.019079264,0.00012855702,-0.08048715,0.00736266,-0.082043976,-0.006306306,-0.038948048,-0.027426336,-0.0026281683,0.11662327,0.05362469,-0.064811505,0.024184408,0.057709303,0.089513965,0.074636094,-0.007265304,-0.11277105,0.00467789,0.094335884,0.022038987,0.05447132,-0.033172216,0.056197885,-0.08144095,-0.03400046,-0.049136866,0.026162459,-0.07779303,0.009707074,-0.037024044,-0.05869255,-0.025441924,-0.04531067,9.17559e-05,0.024769114,0.08774305,0.028962547,-0.06807275,-0.055292927,0.021195298,-0.017994355,0.025157653,-0.015241062,0.033368304,0.009672666,-0.02481874,0.045081887,0.053003144,-0.015398095,0.120657794,0.0040572667,0.072585315,-0.07192641,-7.9491045e-08,-0.008134431,-0.036037195,0.018581383,0.059302833,0.03204493,-0.11504525,0.059849035,-0.014850272,-0.054866064,0.0018917569,0.006640822,0.012617358,-0.013305935,0.016944638,-0.041711856,0.037106477,0.022571195,0.0450907,-0.014325713,-0.022516772,0.09810956,-0.0015489898,-0.030631693,0.061825268,0.019173976,-0.05570209,0.028059354,0.029246097,0.10011529,0.008882114,-0.05264591,-0.012392174,0.011366704,-0.1102694,-0.024015225,0.031346545,-0.015349113,-0.026102198,-0.0647906,0.042837296,0.030177837,-0.017086463,0.015560462,-0.063189395,0.025645666,0.051385965,-0.022256423,-0.051204916,-0.0052978597,-0.0596306,-0.0468722,-0.04924148,0.031576738,0.09364243,0.029677039,-0.066916436,-0.03774541,-0.017887775,0.0040912046,-0.01838419,0.007935462,0.02945505,-0.054758016,-0.03474425} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:22:22.404049+00 2026-01-25 01:27:50.841685+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 295 google Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB 1 t 298 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach, die Abholung (Transfer) hat super geklappt. Wichtig ist es, den Sammelpunkt auf dem Abflugdeck (Etage 1 Ausgang 1) aufzusuchen und ggf. einfach paar Minuten zu warten. Die Übergabe verlief schnell und das Fahrzeug war sehr sauber. Wir waren sehr zufrieden und kommen gern wieder. wir hatten einen t- roc im full tarif auf gran canaria gebucht und bekommen. die buchung war einfach, die abholung (transfer) hat super geklappt. wichtig ist es, den sammelpunkt auf dem abflugdeck (etage 1 ausgang 1) aufzusuchen und ggf. einfach paar minuten zu warten. die übergabe verlief schnell und das fahrzeug war sehr sauber. wir waren sehr zufrieden und kommen gern wieder. 5 2026-01-04 01:27:48.340879+00 de v5.1 J1.03 {O1.01} V+ I2 CR-N {} {"J1.03": "Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach", "R1.01": "Wir waren sehr zufrieden und kommen gern wieder."} {-0.077941835,0.03159057,-0.08212427,-0.091732986,0.00400947,0.029454006,0.033265583,0.13648915,-0.052899554,-0.02364701,0.0119528845,-0.038050428,-0.05909471,-0.013879227,-0.122949995,-0.046687376,-0.107952125,-0.012264098,0.00017140653,-0.023013566,-0.07288036,-0.024017587,0.0040124953,0.07885462,0.052495003,0.02510217,-0.065843895,-0.049183004,0.045535795,-0.06147157,-0.03924232,0.043081746,-0.040265806,-0.0022207454,-0.04947786,-0.00022861756,0.011416169,-0.027412666,-0.019558819,-0.010163012,0.003952873,-0.0023632771,-0.055916023,0.0457104,-0.04462334,0.023867277,-0.0022157456,0.0024441073,-0.11400451,0.09008145,-0.026564661,-0.03350949,0.01876635,-0.0119610345,0.02239681,-0.06177773,-0.028803276,-0.009422308,0.027149536,0.03344902,-0.08119077,-0.010665635,0.037189756,-0.032218136,-0.043491326,-0.005738014,-0.025975235,-0.0155265825,-0.06891953,0.02836451,0.054253183,-0.05581555,-0.064572066,-0.073274255,0.0050012437,0.030316878,-0.044145323,0.069696605,0.027061006,-0.013907599,0.049904473,-0.0004695029,-0.062238604,-0.039289758,-0.0734322,-0.08876368,0.015710127,0.1026509,-0.053188678,-0.030625213,0.055334494,0.06256471,-0.047729377,-0.012637727,-0.14979398,-0.017246468,-0.00082304527,-0.017158205,0.06895325,0.016548108,0.00015369755,0.06378832,0.07368897,0.030777493,-0.07605459,-0.0030687838,0.01795186,-0.0035309987,0.11528973,0.0023586494,-0.045928407,-0.0066126753,-0.01850851,-0.05975127,-0.0061283284,0.023780664,-0.091757245,-0.069723405,-0.06351008,-0.0060626543,0.032447454,-0.009049292,0.062100004,0.038991254,0.008497993,-0.019397624,0.045976494,2.2311982e-32,-0.02823003,0.027779466,-0.08779604,0.070876844,-0.019920439,-0.024686666,0.026112143,-0.010574147,-0.029163867,0.027414585,-0.13645725,0.09045121,-0.048748143,0.03588403,0.02452423,-0.08177555,-0.010780279,-0.067412525,0.05423394,-0.028032815,0.05341105,0.049373865,-0.01229039,-0.0036505058,0.059361883,0.011891902,-0.06506644,-0.033475164,0.05412673,0.04472455,0.023145191,-0.0799983,-0.061263032,-0.044775516,-0.03760113,-0.1086997,-0.023956189,0.018223248,-0.01472797,-0.080972485,0.07071748,-0.029984575,-0.02780598,-0.08575323,0.08799164,-0.054577976,0.07158846,-0.0138875665,0.04792138,0.023057671,-0.034794077,-0.070152625,-0.02747155,-0.09585617,0.0037016473,-0.0045301984,-0.09895891,0.070804365,0.0107929185,0.015535538,0.06047362,0.024167245,0.011860126,-0.03374968,-0.05981728,-0.03973148,0.011131301,-0.022251094,0.007011474,0.020033114,0.0044901655,-0.013023331,0.026073713,-0.0037132422,0.026155699,0.05821307,0.015078499,0.024223179,-0.08874156,-0.025546161,-0.13185789,-0.017691704,0.058792386,-0.024415601,0.023844382,-0.019004758,0.036236607,-0.012543221,-0.057700664,0.078437865,-0.0029843699,0.04700162,0.013995164,-0.002561881,0.08684838,-2.1271221e-32,0.114385016,-0.0097258305,0.05895351,-0.100661755,-0.03675142,0.059749153,0.03353401,0.05797582,-0.016535468,0.025956579,-0.0733642,0.039395653,0.033069465,-0.05087316,-0.0043532536,-0.079726465,0.06153467,-0.009516287,-0.015496977,-0.07290223,0.018980425,0.024622275,-0.013361981,0.017695881,0.008945917,0.031185905,0.055209868,0.041572448,-0.03242894,0.031506453,0.046088703,-0.038461678,0.05742932,0.08181828,0.025386345,0.03267243,0.11842703,0.122303344,-0.063502766,0.0123272715,-0.039143093,0.05405559,-0.06021864,-0.02111694,0.06700822,-0.0016048572,-0.08642833,-0.059167728,-0.002337046,-0.06610325,0.059064228,0.018889558,0.041891355,-0.0923927,0.066985816,0.03798962,0.047965758,-0.09304769,-0.041552283,-0.042274676,0.069198534,0.03736943,0.05037305,-0.049712554,0.04310708,-0.035957534,-0.10613689,-0.053161424,0.01647902,0.052927908,0.0134957265,0.0078172125,0.02127149,0.083211474,-0.04434653,0.036648043,0.0055993046,0.020518834,0.0050571375,-0.02484192,-0.025314605,0.0542067,-0.03221998,0.015285643,-0.023381235,-0.009541858,0.084956214,0.011569728,0.022033915,-0.08349095,-0.0046384255,0.048681546,0.05417881,0.038680024,-0.025510496,-8.013951e-08,-0.031042641,-0.014625986,-0.044800576,0.024497798,-0.0014779234,0.005833316,-0.046402287,-0.0071917833,-0.06726615,0.009308369,-0.043686006,-0.021993965,-0.0801804,0.06654455,-0.038858138,0.049487833,-0.0003731602,-0.040855363,-0.0070776,0.00890288,-0.00791327,-0.041663468,-0.010911166,-0.023748904,-0.056389417,-0.0350995,-0.010173791,0.025555944,0.04877739,-0.06832076,0.02950141,0.082419,0.015827743,0.07308726,0.020612532,-0.018782727,0.034104053,0.085528284,-0.093873076,0.07323719,0.12520012,0.06339452,-0.004638896,-0.08838872,-0.04112152,-0.039523512,-0.052109558,-0.0101781115,0.04370255,0.11273329,0.033356898,-0.004039766,-0.043830574,0.0599218,0.03289351,-0.0211232,-0.05477393,-0.03581048,0.042828567,-0.029778147,0.032977547,0.077049345,0.07977293,0.039792985} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:08:35.110177+00 2026-01-25 01:27:50.853249+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 184 google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB 1 t 187 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. In every other country you take the car full and return it full — simple.\n\nThey told me that if I returned the car with a full tank, I would be refunded the full amount except for the €35 fee, and if I returned it half-full, I would receive a partial refund depending on how much petrol remained when I returned the car. The staff member completed everything and told me I would receive the refund within a few days for the remaining half tank of fuel.\n\nIt has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. I’ve contacted them multiple times with no response. I ended up losing €67, and the car rental itself was €70 — so I basically paid double.\n\nBased on my experience, I would stay away from this company — they made my holiday stressful. this company is a scam based on my experience. they charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. in every other country you take the car full and return it full — simple. they told me that if i returned the car with a full tank, i would be refunded the full amount except for the €35 fee, and if i returned it half-full, i would receive a partial refund depending on how much petrol remained when i returned the car. the staff member completed everything and told me i would receive the refund within a few days for the remaining half tank of fuel. it has now been two weeks, and i still haven’t received the €32 refund for the remaining petrol. i’ve contacted them multiple times with no response. i ended up losing €67, and the car rental itself was €70 — so i basically paid double. based on my experience, i would stay away from this company — they made my holiday stressful. 1 2025-11-26 01:27:48.3401+00 en v5.1 V1.01 {V1.03,V1.01} V- I3 CR-N {} {"R1.02": "Based on my experience, I would stay away from this company — they made my holiday stressful.", "V1.01": "This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill"} {-0.032347646,0.09066061,0.0262022,0.015775671,0.053685877,-0.03746867,0.027689386,-0.0010606152,-0.04385323,-0.06906487,0.013877368,-0.07455773,0.016197588,0.022567987,-0.012209443,-0.06834221,-0.017982192,-0.058544405,-0.0396673,0.014593674,-0.010602887,-0.068219915,-0.020728057,0.072496206,0.028720267,0.053512078,-0.049753822,0.019513346,-0.024289528,-0.043095082,0.048436455,0.059897434,-0.050433043,-0.11043008,0.03951476,0.026112609,-0.041678526,-0.05074702,-0.078018755,0.04281652,-0.030201517,-0.027056424,-0.03922281,0.096972175,0.07253122,0.0457905,0.060345676,0.053407274,-0.009729104,0.0017552009,-0.010438849,-0.058569353,-0.012110858,0.032102395,-0.007386214,0.0007457976,0.0024235654,0.04395647,0.016325014,-0.116096474,0.054608688,-0.021169582,-0.002175948,0.035458338,-0.04625742,-0.0009901024,-0.12146686,-0.010501948,-0.055649742,-0.012379586,0.09183169,-0.112242565,0.10541621,0.07049264,0.031557392,0.04977971,-0.03763655,0.020914905,0.007679137,0.021804808,-0.009255992,-0.068628,-0.028070576,-0.09146217,0.03903399,-0.048045713,0.08025528,0.014160412,0.04115023,0.00019241756,0.06768672,0.008349537,0.0356307,0.0062964237,0.019273888,0.010213312,0.028384348,0.01999177,-0.018283773,0.010521996,0.061453052,0.053364422,-0.06343055,-0.10101362,-0.013492716,-0.019236017,-0.00914324,0.112540655,-0.014029888,-0.058796067,-0.024074038,-0.01948754,0.04086204,-0.030755727,-0.040198613,0.10805664,-0.04844548,-0.030984713,0.06114079,-0.033209126,0.044349633,0.08658078,-0.011001895,0.005027035,0.05858103,0.041368276,0.011434984,3.6174406e-34,-0.10910884,0.09451237,-0.018121764,-0.054278158,0.04051385,-0.028481167,-0.010165709,0.07709266,-0.01125592,0.023180123,-0.04733117,0.065870926,0.044038504,-0.02538148,-0.17792775,0.014359034,0.020076225,0.042073227,-0.040254347,-0.043088853,0.023174826,0.022853125,0.023294952,-0.025330463,0.0074052857,-0.033125713,-0.037261344,-0.03331052,0.12157852,0.018788395,0.016642522,0.013839805,0.011010337,-0.012300236,-0.040519465,0.036745474,-0.015243838,-0.011522114,-0.083922856,-0.010822954,-0.0039665354,0.0250331,-0.02819538,-0.015042021,-0.044291727,-0.052195884,-0.03045639,-0.027819699,-0.037049804,0.011169077,-0.07268752,-0.022683527,-0.04382265,0.11161511,-0.028722217,0.023348585,0.019337472,0.034513254,-0.017896164,-0.03872855,0.06461828,0.08307593,-0.06016177,0.038717322,-0.055197127,-0.067149386,0.038802397,0.02094305,-0.015595809,-0.060933184,0.07589391,0.026037117,0.10509771,-0.012417147,-0.006171518,-0.06903845,-0.035914395,-0.014901569,-0.037461337,-0.028623046,-0.022018455,-0.02458924,0.061197225,-0.040938642,-0.025333324,0.008376404,0.0332776,-0.02043403,-0.031424105,0.023066202,-0.065023445,-0.07345404,0.034710452,-0.04915006,0.06543293,-8.857486e-34,0.03442526,-0.03112102,0.030311137,-0.024182517,-0.017768025,0.096786596,-0.038665976,0.060461923,-3.3521606e-05,0.017347911,-0.016873306,-0.010044826,0.035701215,-0.031577095,-0.029451424,-0.03375096,0.075909905,-0.061255865,0.017724594,-0.035126034,0.02928869,-0.023039304,-0.004799421,0.1005629,-0.09053219,0.093298614,0.051930748,0.0030614103,0.05662357,0.011642847,0.028240107,-0.013605088,-0.11038528,-0.0005130292,0.0013376117,0.009470153,-0.034795538,0.12509865,-0.038161516,0.04170775,0.008263819,-0.07489787,-0.053798787,-0.019608326,0.026501365,-0.116035245,0.039213233,-0.10745819,0.11727455,-0.023697577,0.038814425,-0.026862517,0.0023305735,0.08580874,-0.042591378,-0.011848745,0.031113295,-0.039259072,0.0014776974,-0.021502335,0.07495763,-0.022313174,0.0005384881,-0.036729496,-0.0017486104,-0.018893512,-0.027166247,-0.05413463,0.15641542,0.00585821,-0.020551048,0.04820317,-0.043831497,0.012032983,0.024367945,0.077828415,0.01893969,-0.03026224,-0.0058961413,0.016381208,0.10870287,-0.0938759,0.08507292,0.038062837,0.048846547,-0.07842761,0.016665487,-0.031181762,0.039652858,0.05224384,0.028378896,-0.037514918,-0.0042301556,0.0826467,0.05858658,-5.0854553e-08,-0.014666525,-0.017461112,0.04859049,0.06839538,-0.008625857,-0.1218099,-0.005323899,0.10222307,-0.09470937,-0.03927416,0.00054700393,-0.02882507,0.045174748,-0.011193311,-0.031892717,0.02565807,-0.01738214,0.05259983,0.03635114,0.09467549,0.011303355,0.02815606,-0.07869481,-0.10638698,-0.0053881723,0.014294066,-0.0016482599,0.08831581,0.04838307,-0.12203107,-0.03827291,-0.01773322,0.0328791,-0.0047910092,-0.04915001,-0.1000296,0.027671438,0.024418753,-0.057396624,0.01698601,0.016164996,-0.010359908,0.00016456586,-0.013359037,0.036059227,0.0036102633,-0.09266676,-0.0163068,0.044658486,-0.03471096,0.033789206,-0.036594547,0.040231768,0.1265813,-0.026597353,0.0037792039,-0.04695704,0.053224236,-0.043359574,0.067254916,-0.057010394,-0.019541673,-0.034863573,0.025484238} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:38:55.109697+00 2026-01-25 01:27:49.939442+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 199 google Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB 1 t 202 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. Book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. Not worth the cheaper rates. Never got our car and had to pay full price due to a flight delay they refused to accommodate. save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. not worth the cheaper rates. never got our car and had to pay full price due to a flight delay they refused to accommodate. 1 2025-10-27 01:27:48.340176+00 en v5.1 P1.02 {} V- I3 CR-N {} {"P1.02": "Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to custom", "V1.02": "Not worth the cheaper rates.", "V1.03": "Never got our car and had to pay full price due to a flight delay they refused to accommodate."} {0.0021825049,0.029788632,0.05197489,0.01706139,-0.001306445,0.04482645,0.023764662,0.0028509046,0.020411626,-0.00184528,0.044522516,0.028733548,-0.035920966,0.00094009534,0.060370017,-0.07950387,0.0332292,-0.10527731,0.009773086,-0.02577688,0.009082262,-0.007907931,-0.037692416,-0.0009549669,0.017138978,-0.04541271,0.065159336,0.066212304,0.02144988,0.02344416,-0.009333236,0.03551474,-0.016978579,0.0072506303,0.093879245,0.0029733968,0.017020103,0.023219524,0.017727252,-0.06393348,0.008060331,-0.018113779,-0.03097915,0.041770246,0.033902973,-0.033836123,0.047266018,0.09272037,0.07765847,-0.021048443,0.009218591,-0.06417513,0.06827762,-0.042115133,-0.07591199,-0.027959915,0.029459678,0.031079613,-0.007556817,-0.030999793,-0.00055460207,-0.03426773,-0.012394168,0.026173132,-0.06723797,0.035851542,-0.035877068,-0.05483167,0.015266975,-0.022663023,-0.04447635,-0.01613912,0.041764356,0.12576418,0.016444348,0.045312166,0.053913027,-0.029713834,0.07062711,0.04035024,-0.02010457,-0.054430272,-0.049637984,0.056371037,-0.01943184,-0.024309047,0.013954623,0.0021686254,0.015842767,-0.0055830483,-0.02336976,0.007582255,0.014428889,-0.046376698,-0.0729157,-0.028360005,0.09303914,0.024762075,-0.08172846,0.044272978,0.059693664,0.10568121,0.01696678,-0.008111774,-0.05633461,0.020720558,-0.025448628,-0.017240867,0.026795026,-0.03325561,-0.06934035,-0.008755627,-0.05275232,-0.015992133,-0.020803431,0.048177537,-0.035609853,-0.008332841,0.034815606,-0.04237004,-0.044250015,0.010464592,0.038649604,0.021284016,0.026327223,-0.0053601637,0.07584106,3.7867437e-33,-0.038316626,0.08058365,-0.016670024,-0.06131167,0.07500356,-0.07671421,0.017790752,0.08806045,0.03495386,0.050688177,-0.08431919,-0.029124046,0.06708061,-0.12592712,0.018282332,0.05963682,0.0037939937,-0.0043209633,-0.010588415,-0.009305186,-0.028702442,-0.1729849,-0.00223575,-0.023210157,0.1250106,0.0011007888,-0.04431972,0.028441062,0.21278661,0.01721355,-0.013620924,0.09489012,0.016329054,0.025853917,-0.10435396,-0.043530494,-0.114386216,-0.019180395,0.024614438,-0.028442517,-0.08962013,-0.013839278,-0.06703919,-0.034313288,0.049282223,-0.0059551387,0.025258133,-0.026261441,-0.0023829173,0.08151437,-0.073963135,0.019440418,-0.016519418,0.07083915,-0.0829796,-0.028220564,0.07701345,0.02290094,0.071410365,-0.039395966,0.00520983,0.029992554,0.034340646,0.026894484,0.055706628,-0.0657457,0.018030683,-0.0061022127,0.017849118,-0.026242418,0.039892774,0.068227045,0.034583464,0.0056982087,-0.053753648,-0.02106256,-0.07810886,0.031764057,-0.017002271,0.05197447,0.061827112,-0.004028131,0.002143128,0.002089845,0.15003908,0.020016644,0.016617348,0.012070955,-0.025331477,0.044174682,-0.08115071,0.067037635,-0.07691986,0.04232385,0.03017207,-3.0094806e-33,0.060234237,-0.07496509,-0.013596303,0.00246357,-0.046858475,0.042941134,-0.014384828,-0.022220487,0.0029294929,0.05670465,-0.14527716,0.049017362,0.05421156,-0.047809582,0.011018784,-0.06557475,0.004059798,-0.021307694,-0.04391936,-0.01063786,0.023212157,0.013412301,0.027972098,-0.056091245,-0.010146212,-0.006649676,-0.010978403,0.08331514,-0.09500958,0.0015412665,-0.019618273,-0.03861168,0.032516863,0.04501942,-0.0039616404,-0.012727558,0.033752155,0.06194492,0.008161087,0.04906875,0.030088251,-0.017662628,-0.014923428,-0.06880429,0.073786475,-0.08649602,0.028485067,-0.12480319,0.016474213,-0.044996087,0.061997134,-0.033689052,-0.025157077,0.089190006,-0.03857508,0.054678984,0.05681596,-0.035910446,0.036674697,-0.019547133,-0.010730066,-0.09601969,0.035388313,-0.014624968,0.033096034,-0.11607406,0.06951725,0.037113767,0.043409303,0.006710883,-0.060727946,-0.0038113254,0.06488633,0.14951731,-0.022559626,0.022878727,0.07451068,0.009806578,-0.04329175,-0.11531916,0.09079749,-0.027437428,-0.016588837,-0.021788716,0.03958182,0.031143952,0.07315314,-0.04482525,0.008029468,-0.00830863,-0.071535595,0.0048307045,0.005013914,0.0012409444,-0.008589803,-5.3209323e-08,-0.0055521396,-0.01152094,0.08018137,0.010867895,0.016639374,-0.055122495,0.0030078266,-0.011713092,-0.08010622,-0.062374536,-0.01099013,-0.053160686,-0.023911528,0.12842637,-0.019785045,0.016248206,0.050817546,-0.012365702,-0.05988015,0.015805183,-0.038240757,0.029411368,-0.0153338825,-0.0024149714,0.068017416,0.020650899,-0.063962474,0.034428842,0.051750623,-0.04550177,-0.1716929,-0.007362447,0.020194788,-0.006968019,-0.034822896,-0.058672577,-0.0482471,-0.05923796,-0.06834808,-0.031186152,0.008201237,0.002622967,-0.08510028,-0.011864918,0.08034035,0.044316836,-0.09669613,-0.07083913,-0.04405731,0.045607924,0.00669721,-0.058651157,0.028815124,0.032603733,-0.0045835716,-0.05694244,-0.03270696,-0.027529752,0.0031749671,0.08080375,-0.017527234,0.044242702,-0.019417733,0.021456718} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:41:30.374513+00 2026-01-25 01:27:50.010483+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1303 google ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE 1 t 1306 Soho Club unknown Супер супер 5 2024-01-30 18:34:31.336452+00 ru v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Супер"} {-0.041054755,0.07042657,-0.0772758,0.009019799,-0.022553131,0.08139182,0.1038584,0.108175084,0.02923693,-0.032916144,-0.019047216,-0.022445615,-0.043817636,-0.008050155,-0.04864301,-0.03393684,-0.0033284586,0.031113101,-0.04512824,0.0008084624,-0.13130613,-0.058915757,0.10997636,-0.015128493,0.025822071,0.00044345998,-0.03947103,0.073961206,0.08453865,0.04154221,0.013694878,0.009645333,0.012969903,-0.007618843,0.046787295,0.05773299,-0.044737212,-0.080486454,-0.056861565,0.066877306,-0.043798894,0.04664158,-0.09520248,0.016058946,0.039155558,0.0793132,-0.07520124,0.051679138,0.014723028,-0.0058491966,-0.05691489,-0.0053324983,0.032527883,0.0045770155,-0.0019032009,-0.10119311,0.042807207,-0.04953231,-0.006623636,-0.024298284,-0.014732955,-0.053093147,-0.036025293,0.0011751874,-0.03679376,-0.037785098,0.030410947,0.03205579,0.01622118,0.06871963,-0.0431118,0.014134344,-0.07261994,0.011729759,-0.06209808,-0.0778753,-0.020373235,-0.062932834,0.025571963,0.0038685466,0.08353312,0.03650065,-0.11157261,0.03813303,-0.048054762,-0.02674006,-0.009465239,-0.0076329214,-0.026203668,0.029320262,-0.02190392,-0.032443553,0.0351665,-0.02482905,-0.1142921,-0.004481928,0.04775981,-0.086991034,0.008787502,0.04487418,-0.054855485,-0.004891048,0.07660873,0.0041256314,-0.08925246,-0.019266136,-0.054042563,0.0007148617,0.06634472,0.02250317,-0.054583006,-0.058319844,-0.07764899,-0.008463849,0.052592766,0.03260356,-0.019662535,-0.011684762,-0.06025317,-0.008395416,0.048134547,-0.048780795,-0.03781304,-0.017275257,-0.052944202,-0.027924193,0.036169816,-5.480607e-34,-0.0078557,0.010600377,0.004927657,-0.051709548,-0.036905177,0.03535889,0.00016335554,0.026349803,-0.039296344,0.067098364,-0.05082906,-0.018976873,-0.03179368,-0.022560058,0.019780423,0.03833143,0.008074769,0.04845963,0.0039323536,0.05148913,0.07394186,0.12304812,0.05331151,-0.0067925323,0.06817513,-0.08405324,0.0020568126,-0.007920785,-0.01114675,-0.017767947,0.03378541,0.06701569,-0.080629416,0.034746733,-0.019796543,-0.0856664,-0.0069384663,-0.008709541,0.012319783,0.05238264,0.060668346,-0.09267519,-0.042324252,0.023383923,0.08709261,0.061029974,0.06203689,-0.036161028,-0.013080886,-0.015315383,-0.04535395,0.05292951,-0.045025826,0.07133794,0.02810515,0.014455262,0.04049157,0.012945641,-0.037069507,-0.037565183,0.010082865,-0.079262875,0.066958755,-0.037282437,-0.064220235,-0.12949108,-0.007982292,0.03388318,0.0015018701,0.022749458,-0.045932155,-0.0028888094,0.03959693,0.029478028,-0.0007914216,0.012222345,-0.09324092,0.06855758,-0.018531831,0.0065019145,-0.14105622,0.061671086,0.05852984,0.017909816,0.036478706,0.050657924,0.02997958,-0.120728,0.015883442,0.011998083,-0.104047425,-0.0337265,0.04876005,0.03607284,-0.048459988,-9.459408e-34,0.05269325,-0.053034928,-0.029680442,0.04782675,0.017737277,0.035781857,-0.012973614,0.053475928,-0.013459111,0.07092963,0.1065636,-0.06448338,0.055127267,0.06630787,0.041445725,0.055362985,0.08156688,0.14295997,-0.09841734,-0.031139366,-0.03268049,-0.11408546,-0.017836573,-0.009082337,-0.019971576,0.0076291184,0.15184543,-0.09507327,-0.07031619,-0.0054749735,-0.013850418,0.008327732,-0.062338453,0.031389944,0.08967184,-0.021695342,0.058587447,-0.0066950154,-0.123141706,0.05018607,0.06857011,0.041383844,0.029201156,0.116199136,0.0139524,-0.05682961,-0.07406918,0.0059607886,0.062094938,0.027173443,0.032401446,-0.008156964,-0.03164228,0.027638005,0.07378072,-0.036102533,-0.024856132,-0.04320365,-0.06608907,0.010166378,-0.023628853,-0.015909854,-0.022693394,0.0004512047,0.04445658,-0.013033631,0.025052164,-0.005851412,0.1303388,-0.028372725,0.12550789,0.01746074,0.045887373,0.023196781,-0.08052143,0.019153416,-0.009087791,0.03019883,0.101599164,-0.013022281,-0.0007446234,-0.013614853,-0.04025208,0.0353852,-0.039938424,-0.025838176,0.03613901,-0.0046963934,0.0063677863,-0.007391599,0.02465576,0.04883421,0.01432515,0.042224795,-0.01425046,-1.4412792e-08,0.012146231,-0.015267246,0.025482323,-0.005093452,0.04070077,-0.0948703,-0.040167507,-0.10022371,-0.093517855,0.027955445,-0.012630528,0.053958442,-0.0052004443,-0.0397788,-0.008595779,-0.010606524,-0.048070036,0.079404354,0.020419085,0.017215861,0.025445731,-0.030815009,-0.0387581,-0.054667678,-0.040678035,0.02251449,0.01969552,0.04467033,0.09100051,-0.05055947,0.041496284,-0.020564718,-0.029246468,0.017449751,-0.01258142,-0.04696868,-0.016647132,-0.0029248747,0.004349135,0.011437898,0.06590997,-0.011784791,0.0865692,0.0032069173,-0.0816202,0.01870631,-0.06477215,-0.014913454,-0.02314893,0.005797783,-0.063058764,0.025807299,0.016405508,0.09294645,0.05950818,0.10061299,0.018097566,0.03966813,-0.032923132,0.022698572,-0.054303043,0.0055213515,0.012530814,0.014603999} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:33.555156+00 2026-01-29 18:36:00.721023+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 377 google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE 1 t 380 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super freundlich, Autos im tollen Zustand und unkomplizierter Ablauf. Ein Punkt Abzug, weil man sie leider am Flughafen gar nicht finden konnte und die Kommunikation nur mittels eines Einheimischen per Telefon geklappt hat. Dann wurden wir von dem Shuttle nach ungefähr 30 min erst iwo am Straßenrand eingesammelt. Man könnte einfach kleine Schilder aufhängen oder jemanden am Flughafen positionieren um dies zu erleichtern. Nach einer langen Anreise war das wirklich nicht toll. Ansonsten waren wir mit dem Service vor Ort und dem Auto zufrieden super freundlich, autos im tollen zustand und unkomplizierter ablauf. ein punkt abzug, weil man sie leider am flughafen gar nicht finden konnte und die kommunikation nur mittels eines einheimischen per telefon geklappt hat. dann wurden wir von dem shuttle nach ungefähr 30 min erst iwo am straßenrand eingesammelt. man könnte einfach kleine schilder aufhängen oder jemanden am flughafen positionieren um dies zu erleichtern. nach einer langen anreise war das wirklich nicht toll. ansonsten waren wir mit dem service vor ort und dem auto zufrieden 4 2025-01-25 01:27:48.341532+00 de v5.1 A1.01 {O1.01} V+ I2 CR-N {} {"A1.01": "Super freundlich, Autos im tollen Zustand und unkomplizierter Ablauf.", "A3.01": "Man könnte einfach kleine Schilder aufhängen oder jemanden am Flughafen positionieren um dies zu erl", "J1.02": "Ein Punkt Abzug, weil man sie leider am Flughafen gar nicht finden konnte und die Kommunikation nur ", "O1.01": "Ansonsten waren wir mit dem Service vor Ort und dem Auto zufrieden."} {-0.072826765,0.053933565,-0.039728124,-0.08979611,-0.10286176,0.022856543,0.058866486,0.10987466,-0.00017294772,0.007522584,0.010636283,-0.064852014,0.0023230747,-0.047650598,-0.051002022,-0.07596769,0.002334763,-0.06917497,-0.07386586,0.0067064352,-0.07700832,-0.007210094,0.017494326,0.06362786,-0.016106343,-0.0640805,0.0026589162,0.007024365,0.03558045,-0.061561048,0.0078601,-0.014537847,0.00130438,0.017430693,-0.0060808733,-0.0048120245,0.015100204,0.0013318955,0.011398077,-0.042814557,-0.0038535588,-0.024780735,-0.047931585,-0.078170985,0.02379726,0.06263765,0.055459075,-0.017876051,0.012606907,0.0014718615,-0.027782768,0.06918027,0.09783167,0.0049214135,-0.027934408,0.0069052833,0.006382392,0.045537446,-0.0043602027,0.055453617,-0.044738773,-0.073467314,0.02975592,0.024752587,-0.076404564,0.04768997,-0.047350165,-0.036489844,0.035022724,-0.036380284,-0.005518402,-0.054807555,-0.016533615,-0.017110424,0.08625527,0.04576893,-0.049311295,-0.013442245,0.0068108006,-0.07202099,0.06522657,-0.07625451,0.030462721,0.05288288,-0.0041783075,-0.029934885,0.015138942,0.03159363,0.029371541,0.05232668,0.0014164712,0.013445516,-0.061511282,0.013654686,-0.049629033,-0.05621326,0.04942655,-0.03843032,-0.0026209876,0.041989427,0.0200754,-0.03375042,0.03738018,0.062928215,-0.011221341,0.005020584,-0.07593444,-0.031247571,-0.022616232,0.030152285,-0.046732128,-0.038351856,-0.038222324,-0.080899745,-0.0061947987,0.015633332,-0.029587232,-0.077579804,0.026600352,-0.04781592,0.0032758657,-0.11037389,-0.086061046,0.036737487,0.10661779,0.07149419,0.14654969,1.7397393e-32,-0.08960771,0.0035301493,-0.020514645,0.0021097525,-0.015068744,-0.052049782,-0.03403021,0.054096676,0.06607385,-0.028702145,-0.00979027,0.038625266,-0.011660695,-0.06845188,0.013622331,-0.050176103,0.05070893,-0.06351332,-0.026879197,-0.10316584,0.00046671144,0.01372994,-0.039492603,-0.0025080557,0.040933695,-0.02812038,-0.021775626,-0.025823256,0.026254622,0.042868942,-0.0066562174,0.020003209,-0.06833304,0.055480324,0.020496374,-0.015562034,-0.08266808,0.002773682,-0.10640622,-0.061865862,0.01095479,-0.009124533,-0.113221444,-0.0449581,0.08021401,-0.00683992,-0.0053349654,0.03248122,0.038696762,0.039400328,-0.0107475165,0.04366059,-0.0445755,0.016496774,0.051035624,0.06779354,-0.03284737,-0.063468955,-0.07853966,0.0022985558,-0.040484656,-0.0118239755,0.04223023,0.021309633,0.08388255,-0.025628073,0.043533847,-0.023656154,0.0039446615,0.07615413,0.0315697,-0.052679926,0.070328064,0.08436887,0.0075255665,0.0843492,-0.0001249166,-0.003338288,-0.07148807,0.063239306,0.01093148,-0.004816814,0.018118158,-0.051576346,0.06600006,-0.056911908,0.020991884,-0.07626487,0.0076453867,0.11099729,-0.021617651,0.06600666,-0.055475652,0.10804028,-0.01440108,-1.9542475e-32,0.019722233,0.045365267,-0.022789666,0.016806144,-0.027411116,0.03627972,0.015394531,0.07734512,0.004823223,0.058074247,-0.11686511,0.01695388,0.0041571646,-0.008961083,0.0068182857,-0.049648028,0.091576286,0.0051414547,-0.018477703,0.055917166,0.010563225,-0.0014562802,-0.04635023,0.008712789,-0.012332471,0.008592928,-0.026163708,0.082469046,-0.06735937,-0.008470423,-0.02615114,0.059484646,0.07836611,0.061550178,-0.0026171224,0.02606527,0.0912027,0.06313419,-0.07174767,0.0031111012,0.018748006,0.028953189,-0.01983241,-0.08062246,0.054561436,-0.026568528,-0.095133014,-0.036966406,-0.09748058,-0.068930924,0.06454807,0.04268256,0.008558145,0.040476803,0.027202528,0.093772955,0.05243193,-0.097644664,-0.05921748,0.06463011,0.10212852,-0.049345527,0.025964975,-0.05683238,-0.0029141416,-0.11161753,-0.022648621,-0.08519071,0.0036353685,0.019249601,0.093722135,0.03931376,-0.0037928957,0.023737097,-0.004514336,-0.04484566,0.028884158,0.052180752,-0.039430503,0.010215349,-0.046684332,0.07680239,0.025603317,0.037843447,-0.20836858,0.04733017,0.07317193,-0.06366972,-0.01791464,-0.074361205,0.05684006,0.08533708,-0.038098253,0.013240257,-0.09339023,-6.827712e-08,0.020500386,0.012253843,0.0005078533,-0.013962152,0.0026432807,-0.12836373,0.0075059487,0.016416049,-0.12640336,0.048900973,-0.008858895,-0.018217184,-0.03429732,0.07936186,-0.06923014,-0.020878796,-0.03292486,-0.06950941,-0.09261273,0.045928456,0.04149331,-0.031080076,-0.03932405,-0.045278262,-0.00813151,0.035779998,-0.045394197,-0.014177548,0.005092398,-0.010713641,-0.059447695,0.04435609,0.018120136,-0.04571789,-0.10631221,-0.0050951485,0.061736166,-0.052615065,-0.08862039,0.004644016,0.06088416,0.011552157,-0.02543274,0.014969384,0.061375014,-0.03365174,-0.033528913,-0.051087204,-0.008966039,-0.023712773,-0.0020114873,-0.018629089,0.0104936315,0.029509503,0.013089496,-0.043023795,0.021200724,-0.08090773,-0.06226607,0.047095276,-0.053983286,0.016602522,-0.05082766,0.03139626} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:09:23.305824+00 2026-01-25 01:27:51.171189+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 501 google ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB 1 t 504 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles gut, guter Anbieter, das einzige Problem, Shuttle zum Flughafen funktioniert gut, aber vom Flughafen zu der Firma mussten wir zu Fuß laufen, per Telefon kann man unmöglich jemanden erreichen um Shuttle zu bestellen, antwortet immer Computer, keine Chance.. alles gut, guter anbieter, das einzige problem, shuttle zum flughafen funktioniert gut, aber vom flughafen zu der firma mussten wir zu fuß laufen, per telefon kann man unmöglich jemanden erreichen um shuttle zu bestellen, antwortet immer computer, keine chance.. 5 2025-03-31 01:27:48.342292+00 de v5.1 J1.02 {J1.03} V+ I2 CR-N {} {"J1.02": "Alles gut, guter Anbieter, das einzige Problem, Shuttle zum Flughafen funktioniert gut", "J1.04": "aber vom Flughafen zu der Firma mussten wir zu Fuß laufen, per Telefon kann man unmöglich jemanden e"} {0.0011435444,0.018946381,-0.05354683,-0.07924791,-0.06693463,-0.039930124,0.07041071,0.123273745,0.0062261606,-0.01279715,0.06276294,-0.011410002,-0.021078872,-0.069140695,-0.019826759,-0.044774,-0.010659537,-0.023058012,-0.067665815,-0.038079724,-0.10836305,-0.049513474,0.002464984,0.044768244,-0.06219056,-0.048492577,-0.026525326,0.056112543,0.011439566,-0.08962016,0.042910147,0.05072552,0.069113165,0.044102505,0.014674759,0.031911377,0.010909439,-0.03841047,-0.04130643,0.009731506,-0.092269085,-0.019007605,-0.04570261,-0.049563836,-0.0068838317,-0.021907087,0.011036527,-0.0053488254,0.05482631,0.06737906,-0.14219137,0.053571522,0.029919134,0.014685129,0.021280626,-0.0074868915,0.031140713,-0.0020947806,-0.03340462,0.009343998,-0.032311987,-0.04336721,-0.04346399,0.052151542,0.03453693,0.041026417,-0.04604666,0.009819253,0.038345695,0.021740459,-0.053489946,-0.099734955,-0.036109626,0.008904996,0.032069918,0.043355867,0.0025766708,0.044180434,0.042347282,-0.024944508,0.03315149,-0.060026333,0.0020932644,-0.04244438,-0.016733697,-0.008453196,-0.020059718,-0.00053497386,0.025226409,0.028763944,-0.016471304,-0.012620315,0.008242764,0.06255906,-0.09261031,-0.0564837,-0.008433202,-0.07723076,-0.034440443,0.047213033,-0.06990628,-0.0034902217,0.11271815,0.04740191,-0.09749912,-0.07494704,0.04716769,-0.008261369,0.03201699,-0.02944605,-0.05235178,-0.01844411,0.019217685,-0.0396494,0.009100938,-0.026909303,-0.02734014,-0.0757743,0.013485543,0.02323041,-0.03846371,-0.031775624,0.06237076,0.07231415,0.021183606,0.02750714,0.07199965,1.3439104e-32,-0.064055055,-0.05967185,-0.011191186,0.056725472,0.045042288,-0.03750199,-0.018891148,0.029144587,0.03819482,0.037396338,-0.07103937,-0.016163705,-0.00054853974,0.0033353814,0.06413162,-0.0808914,0.017107058,-0.05849765,-0.003316493,-0.06671388,0.011191475,-0.057527665,0.0078015514,-0.04547956,0.11384739,0.007465283,-0.005549294,-0.0078021795,0.048202544,0.042672977,-0.084973775,-0.036690857,-0.086410314,-0.05405057,0.023304638,-0.007061081,-0.05517093,0.03734245,-0.0399994,-0.03765173,-0.06882265,-0.03815486,-0.045916963,0.005817717,0.052603453,0.014453743,-0.050543413,0.0025330465,0.08065929,0.0065981694,-0.07423616,0.019250408,0.008040111,-0.05483439,0.03262694,-0.013553356,-0.012120647,0.024703978,0.016179351,0.052069355,-0.039842762,0.03220235,0.009479538,-0.039935883,0.10533209,0.028700018,0.022988044,-0.009017087,-0.0067416066,0.09745802,-0.09771041,-0.028160485,0.10695014,0.078363426,0.03223081,0.017047668,-0.03550293,0.00881941,-0.043376084,-0.03210382,0.016051302,-0.032893404,0.048097983,-0.016182972,0.0092870975,-0.010681984,-0.004071039,-0.018029222,0.03724451,0.09966637,-0.089657195,0.08835634,0.014142642,0.0759308,0.05155138,-1.4507543e-32,-0.034170035,0.009998682,-0.10271433,0.012221703,-0.04434454,0.053489864,-0.04045962,0.03941222,-0.059931036,0.025237834,-0.08795817,-0.005255428,0.09353094,-0.037791472,-0.0073770746,0.03479152,0.059460644,-0.05184214,-0.02350378,0.025680223,-0.024315784,-0.014355846,-0.027851017,0.015312083,-0.04603251,0.028972918,0.056451805,0.10567645,-0.01827604,0.029708875,0.015342137,0.04835008,0.022849152,0.061372295,-0.014488169,-0.00031158095,0.0352312,0.14896904,-0.03270127,-0.0013119512,0.054527964,0.02073253,-0.023707379,-0.07013653,0.0761278,0.030024216,-0.062125515,-0.1476046,-0.10695256,-0.02564906,0.055349544,0.0048526707,0.014101951,-0.0223915,-0.022484852,0.035080876,0.029059228,-0.14448859,0.011159441,0.011069828,0.05298704,-0.04570278,0.07226541,-0.12772079,0.066559866,-0.07672264,-0.039434057,0.0110769775,-0.033300955,0.02476283,0.13355368,0.027885765,0.0365013,0.082268864,0.011590122,0.058060758,7.575118e-05,0.031606566,-0.089238614,0.052107114,0.035409424,0.054470673,0.06404624,0.05434585,-0.059874393,0.021243017,0.07076948,-0.035359535,-0.020529617,-0.11322987,0.036308933,0.011313391,0.022376308,-0.0012097541,-0.03510459,-5.4235088e-08,-0.04912235,-0.1150209,0.007143296,0.007906107,0.012985184,-0.017018137,-0.06297497,-0.029347815,-0.09934982,-0.051895086,-0.01396165,0.03701037,-0.076390825,0.16849492,-0.012858018,0.039030008,-0.04994837,0.028024726,-0.027160738,0.0015959915,0.038620908,-0.04510536,0.043443967,0.01200344,0.0444049,0.049854465,0.014133391,-0.037742756,0.04796259,-0.06524064,-0.05538759,0.026549758,0.03103393,0.04813974,-0.112074636,0.044792227,0.045034345,-0.008319683,-0.11944206,0.023287091,0.06409478,-0.0030027004,-0.015798524,-0.042305045,0.021131933,-0.03518896,-0.05602797,-0.027422132,0.002998104,0.013986129,0.029696813,0.02601185,0.06014412,0.09211957,0.05492315,-0.04053508,-0.023223562,-0.071312085,-0.0137005625,0.05358433,0.015655125,0.03336511,-0.051608194,-0.031525783} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:47:13.838503+00 2026-01-25 01:27:51.648305+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 504 google ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE 1 t 507 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Unser Flug hatte Verspätung deswegen konnten wir nicht zu der vereinbarten Uhrzeit da sein. Bei Ankunft haben wir jedoch uns Dumm gesucht wo der Shuttle Minibus sein konnte. Wir haben jeden gefragt. Keiner kennt diese Firma. Wir wurden von oben nach unten geschickt und wieder zurück. Keine Person kein Minibus war vor Ort. Keiner hat uns versucht zu erreichen. Keiner hatte eine Aufschrift mir unseren Namen. Eins müsst Ihr wissen. Diese Firma hat KEIN Büro oder Office am Flughafen wo ihr jemanden fragen könnt. Keine Aufschrift mit Click rent NICHTS. Anrufe werden nicht angenommen. Oder es wird gesagt sie arbeiten von 8-20 Uhr und es wird wieder aufgelegt. Nach einer Stunde nach dem wir den Gang am Flughafen zig mal abgelaufen haben und nebenbei telefoniert haben. Haben wir ein anderes Auto von Sixt gemietet. unser flug hatte verspätung deswegen konnten wir nicht zu der vereinbarten uhrzeit da sein. bei ankunft haben wir jedoch uns dumm gesucht wo der shuttle minibus sein konnte. wir haben jeden gefragt. keiner kennt diese firma. wir wurden von oben nach unten geschickt und wieder zurück. keine person kein minibus war vor ort. keiner hat uns versucht zu erreichen. keiner hatte eine aufschrift mir unseren namen. eins müsst ihr wissen. diese firma hat kein büro oder office am flughafen wo ihr jemanden fragen könnt. keine aufschrift mit click rent nichts. anrufe werden nicht angenommen. oder es wird gesagt sie arbeiten von 8-20 uhr und es wird wieder aufgelegt. nach einer stunde nach dem wir den gang am flughafen zig mal abgelaufen haben und nebenbei telefoniert haben. haben wir ein anderes auto von sixt gemietet. 1 2025-01-25 01:27:48.342298+00 de v5.1 J1.02 {} V- I3 CR-N {} {"J1.01": "Nach einer Stunde nach dem wir den Gang am Flughafen zig mal abgelaufen haben und nebenbei telefonie", "J1.02": "Unser Flug hatte Verspätung deswegen konnten wir nicht zu der vereinbarten Uhrzeit da sein. Bei Anku", "J1.03": "Eins müsst Ihr wissen. Diese Firma hat KEIN Büro oder Office am Flughafen wo ihr jemanden fragen kön"} {-0.10502539,0.014482023,0.0062452806,0.010655517,-0.0012548016,0.06180007,0.08405564,0.07598287,-0.010163875,-0.057383798,0.060648743,0.01730416,-0.004898931,-0.048406158,-0.07681006,-0.014088112,-0.019089092,0.025603028,-0.10875965,-0.03343882,-0.019061575,-0.018775057,0.015431636,0.045430243,0.008083898,-0.00459952,0.036925122,0.060732972,-0.002406182,-0.06418655,0.078198746,-0.017154677,-0.04457887,0.0026149557,0.054792084,0.008501529,0.029453408,-0.049440753,0.036152106,0.007896356,-0.057370033,0.024260452,-0.08997171,-0.05238894,-0.0845095,-0.023520157,0.06520046,-0.047766495,0.018356953,0.008367417,-0.010689322,0.045226797,0.07602362,-0.00018830733,0.0016593031,-0.052801505,-0.060174055,-0.008755929,-0.011140108,0.027798627,-0.057342116,-0.14588857,0.086634524,0.0016173561,-0.0752814,0.018044224,-0.004453238,-0.028963676,0.017404437,-0.052938063,-0.030331975,-0.030568851,-0.05734767,0.034147434,0.00019885832,0.08732455,0.034255516,0.08300495,0.00481,-0.056305878,-0.0062249913,-0.06441003,0.06784803,0.009483152,0.008743009,-0.053877495,-0.016918862,0.06186812,0.00051954045,0.009915495,-0.036360085,0.051868454,-0.086921215,-0.0069495607,-0.023600249,-0.05121745,0.06744758,0.1284082,-0.015717588,0.08649421,0.07157071,0.026884135,0.113018245,0.047454447,-0.056119055,-0.10929971,-0.007222596,-0.085888825,0.06750218,-0.03031913,-0.053982258,0.00083542854,-0.0412565,0.0068729864,0.018139908,-0.075345315,-0.022991484,-0.049573872,-0.00075494545,-0.011402325,0.029701991,-0.053378783,0.003957568,0.024262292,0.02813251,0.078472555,0.051638972,2.2348594e-32,-0.014174563,0.018921075,-0.007364832,-0.02204104,0.036499348,-0.034315772,0.0422457,0.091690935,0.031923197,-0.02634881,-0.046412185,-0.031438485,-0.010183522,-0.13179168,0.0797556,-0.053258035,-0.015680792,-0.048574954,-0.0021689187,-0.00997056,0.060609967,0.028603902,-0.01006007,-0.016931865,-0.008106056,-0.020303773,-0.010056567,-0.046349596,-0.00059188495,0.036583066,-0.013572236,-0.043925423,-0.0319341,0.005028574,-0.011614613,-0.120953545,-0.018677218,0.031004898,-0.03299257,-0.093387105,-0.005175454,0.00063893973,-0.004864868,-0.0054592397,0.052349705,-0.037828233,0.07601754,0.05412895,0.121054254,-0.009096243,-0.037084956,0.008169463,0.011112529,-0.04547812,0.046009973,0.048745032,0.0070200204,-0.011399843,-0.047872793,-0.039785795,-0.031526152,0.0131708225,0.028408399,-0.025900634,0.021301763,-0.014840064,0.04221674,-0.037863728,0.052696552,0.055081915,0.026412405,0.039396696,0.13116327,0.02903092,0.050566375,0.053251386,0.004109288,0.015868519,-0.08322946,0.0046936423,0.033292692,-0.029295005,0.05473581,0.031133197,-0.06326747,-0.015394198,0.09015755,-0.035090037,-0.02329544,0.08685651,0.07172752,0.017035082,-0.06872997,-0.008743959,-0.0041437293,-2.0039956e-32,0.07514281,0.031109467,-0.011255532,-0.034170095,-0.035611246,0.07107114,-0.003330943,0.04581484,-0.037021704,-0.044980623,-0.023978045,-0.086234175,0.031250726,-0.033364125,-0.01665559,0.11362956,0.005733689,0.021233337,0.0011497537,-0.035796538,0.04145687,-0.019066967,-0.020175122,0.021487134,-0.007562642,0.011083083,0.021945382,0.06740884,-0.10020976,0.050674193,0.0036337492,0.024468405,0.044179734,0.024196846,-0.025272185,-0.07996021,0.008124731,-0.00804264,0.00035148638,0.03822956,0.048438825,0.07025077,0.010355646,-0.016972257,0.047045328,-0.069870025,-0.026955383,-0.07951782,-0.05687783,-0.06016964,0.049027856,0.0060133035,-0.07062191,-0.012329517,-0.037575126,0.039341047,0.008245774,-0.09863907,-0.0056510703,0.06311513,0.051684808,-0.04949196,0.0031708037,0.012641132,0.0032974756,-0.08032309,-0.028606191,-0.053828508,-0.02958466,0.035431795,0.07688453,-0.041787833,0.07918421,0.015851403,0.0852588,0.035563923,0.031112999,0.083571576,-0.060234793,-0.009885308,-0.06758867,0.015857356,-0.062166978,-0.11609493,0.010892006,0.023218006,0.08763255,0.018010486,-0.051751237,-0.09005592,0.068848245,0.053140096,0.09661684,-0.02292906,-0.03879958,-6.818819e-08,0.00669735,-0.10142586,-0.07708595,-0.013540839,0.05732725,-0.11306734,-0.019266903,0.039017588,-0.10678861,0.09806096,0.075275324,-0.07261405,-0.1202567,0.07400587,-0.0927308,0.0046631284,0.023479523,0.04110758,-0.04687031,0.0039622667,0.05383731,-0.015969846,-0.021985875,-0.037771355,0.06699015,0.06574665,-0.040104892,0.011758482,0.068704,-0.025654318,-0.067366965,0.077889845,-0.003686693,-0.022450428,-0.10885424,-0.0053087194,0.06562345,0.011696443,-0.06211067,0.09211459,0.051964186,0.004413967,-0.079697445,-0.004508397,0.09472963,-0.009069793,-0.06151857,-0.05097197,0.038837556,-0.03127944,-0.013923966,-0.059041087,0.048311792,0.03483058,-0.030369919,-0.053365804,-0.02022807,0.024072055,-0.05007978,-0.020167375,-0.0057202056,0.044275943,-0.09766838,0.0017560035} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:03:54.633801+00 2026-01-25 01:27:51.658152+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1207 google ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB 1 t 1210 Soho Club unknown I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances, I was seriously disappointed by the venue. The organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. I could only stand to watch one third of the show as I couldn’t squeeze through the crowd in the first segment so there wasn’t a single place I could stand where I would be able to see more than a quarter of the stage. Later, I managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. After I secured my spot, I was hopeful that I would finally enjoy the show but watching through the second segment of the show was torture, I had barely any space to stand, I still could only watch the performers from the waist up because I couldn’t see over the people in front of me (and I’m 5’5, average height) plus it was so hot I was feeling faint. After that, I left not watching the third and final part of the show. This is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. I would not recommend going for any event they organise.\n\nEDIT: In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I expected a designated seat. I expected to be able to watch the show fully, and that's the minimum requirement. In addition, it shouldn't matter what time I enter the event as a paying customer. The event was obviously so over-booked that it was impossible to have a remotely decent view of the stage. i went to soho club last night to watch the dramatica drag show, and while the show itself had several good performances, i was seriously disappointed by the venue. the organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. i could only stand to watch one third of the show as i couldn’t squeeze through the crowd in the first segment so there wasn’t a single place i could stand where i would be able to see more than a quarter of the stage. later, i managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. after i secured my spot, i was hopeful that i would finally enjoy the show but watching through the second segment of the show was torture, i had barely any space to stand, i still could only watch the performers from the waist up because i couldn’t see over the people in front of me (and i’m 5’5, average height) plus it was so hot i was feeling faint. after that, i left not watching the third and final part of the show. this is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. i would not recommend going for any event they organise. edit: in response to the reply from soho, i'd like to state that nowhere in my review did i mention that i expected a designated seat. i expected to be able to watch the show fully, and that's the minimum requirement. in addition, it shouldn't matter what time i enter the event as a paying customer. the event was obviously so over-booked that it was impossible to have a remotely decent view of the stage. 1 2026-01-29 18:34:31.336452+00 en v5.1 V1.01 {J1.01,V1.01} V- I3 CR-N {} {"A4.01": "In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I", "R1.02": "This is just an act of pure greed on the part of the venue owners, it is their job to set strict lim", "V1.01": "I went to Soho club last night to watch the dramatica drag show, and while the show itself had sever"} {0.070757695,-0.04305444,-0.008412799,-0.012472612,0.062650375,0.03734696,0.006458688,-0.0008306447,0.052089643,-0.054406416,-0.0048550135,-0.022363115,0.052183095,0.0048753684,-0.024709448,-0.101731524,0.13282631,-0.014237263,-0.061704114,0.07213973,-0.0020459148,-0.079649314,-0.05882554,0.02069136,-0.022620281,-0.03602076,-0.03493826,-0.0033606358,-0.013405747,-0.067385264,-0.03251286,-0.045610648,-0.018046642,-0.028284954,-0.022319883,0.008605337,0.021005709,-0.045367476,-0.035785757,0.023733724,0.020788066,0.0206138,0.003306384,-0.00755353,0.081212744,-0.015935846,0.06692081,-0.036126923,0.051995426,-0.03970481,0.01769737,0.021868002,0.087458216,-0.023908328,-0.07158143,-0.0033044226,0.020657685,-0.016612802,-0.029464418,0.002505534,0.003733127,0.00439803,-0.034912035,0.010634314,-0.029983588,-0.028727083,0.017426847,0.03194316,0.10677646,0.055173412,-0.0112019,0.0045829853,0.011129521,-0.06115016,0.01626579,0.017314635,-0.041441053,-0.11509719,0.017069254,0.046880625,0.06681537,-0.09708483,-0.05612448,0.05454255,-0.03919096,-0.043215934,0.02892957,0.017883012,-0.011620579,0.019278886,-0.06757569,0.09956571,-0.078117386,-0.000786365,0.07875341,0.017471345,-0.07561995,0.020231219,0.055587944,0.070370235,0.020120438,0.084638596,0.01136872,-0.012126348,-0.019271467,-0.04997799,0.053535927,0.067684405,0.0043561165,0.0070579043,-0.051597703,0.05691607,0.059155308,0.014018855,-0.004976111,0.054866508,0.010428798,0.013856865,0.0075575663,-0.03084672,0.07585232,0.09722952,0.05635177,0.054807995,-0.020995734,0.021650461,0.026976809,1.6021553e-33,-0.044901952,-0.052956045,-0.08594531,-0.023390453,0.09510866,0.027340278,-0.04398903,0.008530131,-0.0002647083,0.06274941,0.093042485,-0.08210864,0.003913972,-0.10128096,0.038534235,0.010817378,0.04218971,0.034524415,-0.1052795,-0.01973296,-0.083272554,-0.0020947827,-0.044929117,-0.029577827,-0.10078848,0.11192819,0.025868228,-0.002125826,0.058118675,-0.0032517873,-0.08004225,0.032106273,0.042198762,-0.02635997,0.01417722,-0.022780905,-0.0030015437,-0.004168362,0.05533138,-0.014183378,-0.09928704,0.054020993,0.0038897553,-0.019190505,-0.08824292,0.09618074,-0.03549839,0.020107273,-0.14061922,0.0315337,-0.049918596,0.041699164,0.07777546,0.009123068,-0.027641669,-0.03555347,-0.011387584,-0.030212367,0.026555644,-0.017929364,0.014680832,0.14194101,0.0039052302,0.043437388,-0.06194082,-0.071689785,0.015058882,-0.048141874,0.03282357,-0.0139213605,-0.058915205,0.04693024,-0.005861803,0.0558595,0.03263899,-0.06270266,-0.02677497,-0.0017438382,0.039335255,-0.044868417,0.07664865,-0.032448426,0.03231295,-0.0149435485,0.013545891,-0.048485097,0.039753675,-0.079805024,-0.07669162,-0.042544562,-0.0147593925,-0.045356385,0.014664327,-0.0259786,-0.017294018,-2.3084117e-33,0.0968526,-0.029115988,0.039814565,-0.1002922,0.007640866,-0.023893321,-0.03982626,-0.08782162,0.022270331,0.06289061,-0.09115329,0.0031194324,0.0026937476,-0.036862124,0.03460758,-0.12916167,0.062673084,0.0067234933,-0.017497117,0.03859376,0.011329255,0.021709308,0.011103166,0.013693834,-0.0472677,0.024323065,0.063627616,0.010704275,-0.074728236,-0.038656536,0.02570722,-0.02351489,-0.03385232,-0.074887365,0.022857947,0.104680866,0.037480004,0.020720834,-0.076565936,-0.05893336,-0.0059071267,0.002188357,0.0014481368,0.030599117,0.06822354,0.009190205,-0.031435177,-0.08122242,-0.01633349,-0.015380625,-0.09365974,0.05756739,-0.03557189,-0.0020478838,0.031224018,-0.058172908,-0.021686496,0.016084922,0.017701266,-0.03295845,-0.052909017,-0.028794449,-0.1101425,0.02188619,0.07167551,0.06436623,-0.03582374,-0.012220129,0.012943618,0.0411105,-0.05723676,0.0097598685,0.008441728,0.080044165,0.025147885,-0.003305842,-0.06063798,0.08802934,0.019493207,0.0020141103,0.0037410303,0.0021581945,0.0066052484,-0.07607043,0.06342165,0.083330765,0.06493368,0.0177666,-0.11005325,0.013335746,0.089168295,-0.003935066,0.045050863,0.010200484,0.086286046,-5.4950526e-08,-0.08020806,-0.009088645,0.021396166,-0.0040720543,-0.02011588,-0.08830467,-0.024887364,0.014167436,-0.026888853,0.009661325,-0.00811082,-0.037824582,0.088727616,0.05001002,-0.04904774,0.00337458,-0.042801,0.0257287,-0.06812581,0.1158172,0.022411034,0.053339157,-0.07514437,-0.033574793,0.060278155,-0.023674415,-0.012180671,0.022591032,-0.036921564,-0.07341892,0.04811077,-0.03822223,-0.042186134,-0.009842059,-0.013150715,-0.0077776527,0.016352378,0.00811546,0.096053794,0.06311919,-0.08895188,-0.08151852,0.09171703,0.074898936,0.048260603,0.038814556,-0.0005207385,0.035813782,0.007512357,-0.037687525,0.031375866,-0.003700151,-0.0059551657,0.01174877,-0.007207397,-0.043759014,0.01295057,0.14834158,-0.016408877,0.04634434,0.052415982,-0.019769413,-0.18924057,0.032031678} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:42:49.276202+00 2026-01-29 18:36:00.48501+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 206 google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB 1 t 209 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Basically a total disaster; shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. All in all one of the worst car rental experiences ever. basically a total disaster; shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. all in all one of the worst car rental experiences ever. 1 2026-01-04 01:27:48.340417+00 en v5.1 J1.01 {A4.01,J1.02} V- I3 CR-N {} {"J1.01": "shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during", "O1.01": "car had undocumented damages that the staff was very reluctant to document, car was smaller than boo"} {0.05804274,0.05191722,0.061766505,0.060678437,-0.015264885,0.019305632,0.019971188,0.051117096,-0.031943418,0.0029969413,0.066128775,0.13196324,0.0493542,0.002742189,-0.028406678,-0.083090775,0.042561777,-0.1434589,-0.059465654,-0.015934298,-0.013929266,-0.009508719,-0.064583324,0.04940714,-0.00709821,0.048627395,-0.027204715,0.044562425,0.041166224,-0.02031519,-0.055625174,0.09673009,0.04107911,0.03086108,0.025799397,-0.023790132,0.056679502,-0.06533836,0.020073414,-0.14400114,0.049388014,0.0059871506,0.005040943,-0.0049365438,-0.0067579295,-0.07738074,0.04365976,-0.08844742,0.044198,-0.037886687,0.041260064,0.008969893,0.058249906,-0.08548544,-0.03649642,-0.0972608,-0.06223642,0.021850105,0.0173157,0.019478986,-0.015333589,-0.05258798,0.012364041,0.023471652,0.01815926,-0.01192242,-0.040335745,-0.06959424,0.096609004,0.02271394,0.008990218,-0.0005909764,0.0021922824,-0.028916324,0.017952628,-0.006189758,0.07762553,0.041477203,0.060358074,-0.05858375,-0.007960734,-0.06857651,-0.05676392,0.044811696,-0.026898522,-0.057580553,0.055979438,-0.054034047,0.0056896913,0.07292981,0.061716817,0.014817607,0.07207996,-0.010996506,0.0136563135,-0.0036886726,-0.012616429,-0.046321772,0.062521294,0.025644144,0.034873858,0.17218836,0.01912321,-0.042652342,-0.07414468,-0.019426787,0.034156565,-0.051014286,-0.009395893,-0.072487265,-0.00723208,-0.04351412,0.104033165,-0.020909278,-0.054524023,0.059798658,-0.029843353,0.0120039955,-0.004362706,0.025878284,-0.007521553,-0.012774143,-0.0029664878,0.052985527,-0.082658686,0.049675785,0.07559469,3.102878e-33,0.013108751,-0.027668137,-0.027937757,0.06815225,0.08715675,-0.0377342,-0.08428964,0.07896637,0.05692771,0.005912122,0.01877233,-0.034301255,-0.018050326,-0.07452273,0.07960495,0.06945542,-0.10377137,0.06512262,-0.021772778,-0.03416694,-0.023185976,-0.0009877883,0.0057112877,-0.030881822,0.04003714,0.06127866,-0.021403365,0.036351103,0.08343272,0.020000322,-0.10645562,0.059418455,0.021920623,0.081608266,0.007060494,-0.02401424,-0.017919987,-0.0015138198,-0.077042416,0.007608123,-0.057449106,-0.06331461,-0.07264358,0.04821444,0.04064262,0.024739256,-0.008084011,-0.0013572155,0.06390899,0.06003991,-0.084210046,0.0011806925,-0.034110423,0.0032500548,-0.07771346,0.06256959,0.03549297,0.010417443,0.010035593,0.025578115,0.04750788,0.083899364,0.0043347953,-0.03818738,0.006542841,-0.019298777,-0.025809748,-0.0004959478,0.02767718,0.0208813,-0.007491368,0.011601543,0.037663776,-0.030345708,0.099466376,0.0035239162,-0.06582668,-0.019512959,-0.03283513,0.03700585,0.03138631,-0.0170948,0.057403542,-0.026806844,0.020598074,0.0318196,0.045759946,-0.037981965,0.01529452,0.016257923,-0.015312207,0.062423743,0.0007623886,0.008267492,0.069372796,-4.749251e-33,-0.008587685,-0.037950113,-0.036126077,-0.0010056002,-0.1000399,-0.029327478,-0.06413797,0.03600356,-0.00048506208,0.0033132702,-0.061530773,-0.05642791,0.11169822,0.004041429,-0.03165672,-0.0020837837,0.09039022,-0.08477468,-0.07635742,0.060513437,0.060519595,0.03223395,-0.022693107,0.04634988,-0.05930926,0.06437316,-0.035405062,0.024208091,-0.030724138,-0.0032816278,0.052661505,0.040967252,0.02699913,0.083236866,-0.0037997058,0.017340032,0.026221396,0.046636667,-0.03375101,-0.09674722,0.027305508,-0.08396463,0.0007396234,0.0072144303,0.1247756,-0.042357583,0.012480279,-0.045021463,0.044449545,0.02867702,-0.00559696,-0.024094785,-0.091295384,0.07716172,0.007045115,-0.031291276,0.037399184,-0.051801782,0.017972117,0.06779416,-0.031894606,-0.103052676,0.0200899,0.0027954022,-0.061073877,-0.06516275,0.008903063,-0.048648383,0.027671881,-0.02601394,0.038576648,-0.05843171,-0.04293301,0.10492057,0.01010589,0.12084989,0.04235164,0.036268037,-0.06200406,-0.06525476,0.0029205224,0.006565597,-0.054566145,0.0122269355,-0.02318814,0.050113358,0.030272834,-0.096962586,-0.016471237,-0.0005468278,-0.05795906,0.017027657,-0.05298209,0.028967341,-0.04164313,-3.9707555e-08,-0.037137028,0.0065945154,0.0047061625,-0.04340028,0.047359888,-0.11316286,0.027533945,0.1153488,-0.07388219,0.07193992,-0.061073486,0.02649864,-0.09850235,0.04175083,-0.07540546,0.03905899,-0.0386517,-0.006756373,-0.036723983,-0.07996564,-0.024865571,-0.015937153,-0.095002785,-0.01950561,0.011826663,-0.05321511,-0.016332269,0.02261269,0.08123575,-0.14623317,-0.038622417,-0.0074163564,-0.006629828,-0.03533508,-0.09264569,0.043599207,0.03903262,-0.005871233,0.00014717686,-0.028696056,-0.0055791144,0.0028442326,-0.039054148,-0.05207538,-7.2011526e-06,0.022171678,-0.06834257,0.046798814,-0.050119348,-0.041044865,0.013278852,0.008498808,-0.068999216,0.091993496,0.05602057,-0.08858575,-0.036304336,-0.004611515,-0.011414347,0.03200403,-0.034463283,0.038696483,-0.05754896,0.012409346} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:47.816745+00 2026-01-25 01:27:50.039581+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 386 google ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB 1 t 389 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Fatal experiencia. Por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hicieron un examen microscópico digno de investigación CSI de todo el coche hasta que encontraron dos pequeños daños, uno pude demostrar en el momento que no me correspondía por fotos que hice previamente. El otro en el momento no pude por las prisas por no perder mi vuelo; un punto en la luna por el que me cargaron 800€. Luego he contactado nuevamente mostrando evidencia de este daño en las fotos que hice al recoger el vehículo pero no responden.\nSolo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tienen son falsas reviews positivas (es fácil hacerlo..pregunta a alguien que trabaje en Marketing). Viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. Si no añades el seguro opcional que ellos te venden te querrán hacer pagar por daños que no te corresponden. fatal experiencia. por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hicieron un examen microscópico digno de investigación csi de todo el coche hasta que encontraron dos pequeños daños, uno pude demostrar en el momento que no me correspondía por fotos que hice previamente. el otro en el momento no pude por las prisas por no perder mi vuelo; un punto en la luna por el que me cargaron 800€. luego he contactado nuevamente mostrando evidencia de este daño en las fotos que hice al recoger el vehículo pero no responden. solo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tienen son falsas reviews positivas (es fácil hacerlo..pregunta a alguien que trabaje en marketing). viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. si no añades el seguro opcional que ellos te venden te querrán hacer pagar por daños que no te corresponden. 1 2026-01-25 01:27:48.341586+00 es v5.1 J1.03 {O1.02} V- I3 CR-N {} {"J1.03": "Fatal experiencia. Por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hiciero", "R1.02": "Viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. Si no añades el seguro opc", "V1.02": "Solo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tie"} {-0.004868727,0.06773438,-0.027057445,-0.05380142,-0.008891852,-0.06201736,0.09436425,0.0468564,0.0072749318,0.039337784,0.11489322,-0.038405716,0.02282941,0.020184968,-0.0032088365,0.002618649,0.06326227,0.051648945,-0.1010439,0.094786204,0.07953443,-0.07404886,0.018478667,0.02425296,-0.10521734,-0.0771554,-0.035732687,0.013552821,-0.082012914,-0.095768586,-0.0010686801,0.059081733,0.09342918,-0.008617759,0.024868164,0.012983056,0.031138932,-0.06775597,-0.054820042,0.07699142,-0.10520529,-0.0009479656,-0.06544907,-0.026448805,0.0024625598,-0.055620763,0.08702811,0.05196551,0.07986304,-0.04990996,-0.10100124,-0.019792344,-0.037817907,-0.010062964,-0.0032358933,-0.04580492,-0.02636928,-0.0018370177,0.06453633,0.02715901,0.009087738,0.02610258,-0.06336426,0.04229661,0.02921043,0.009762645,0.029753216,-0.057601213,-0.06875922,0.07028036,0.08853619,-0.086346924,0.008763176,0.012919949,-0.053387042,0.08535876,0.01858469,-0.04272196,-0.069857664,-0.08927544,0.0633037,-0.025476405,-0.009650022,-0.0584898,0.01610127,-0.016003938,-0.027149905,0.019508794,-0.010771324,-0.027721442,-0.008987979,0.030039057,-0.13311575,-0.033736944,0.002714669,0.03595064,-0.049052738,-0.07946788,0.0048331153,0.041766025,0.099030115,-0.016979827,0.058889225,-0.008538627,-0.013683623,0.020730715,-0.035162404,0.0150542185,0.036595564,0.11213924,-0.09055065,-0.033214383,-0.07844567,-0.033863474,-0.06955533,-0.011105353,-0.07336263,-0.054614466,0.023328181,-0.080057636,0.04411938,-0.023274694,0.0005273856,-0.052021526,0.06760221,-0.06420507,0.061885837,1.4974014e-32,-0.050194588,-0.009292794,0.05304222,0.027262034,0.03765242,0.010801469,-0.028649779,0.011505867,-0.028489564,0.022519378,-0.040386233,0.05221182,-0.039421733,0.038208928,0.04146476,0.009683056,0.05079905,-0.030220086,-0.0027649563,0.009834981,-0.030522596,-0.08785931,0.026189307,-0.005681612,0.03638493,0.0700643,0.014876229,-0.024113597,0.005356145,0.060843777,-0.041067634,0.040293973,0.064353794,-0.022429034,-0.064270906,-0.0481762,-0.050001543,-0.010501758,-0.042422626,-0.037527267,-0.043912746,0.053084567,-0.046568308,0.09265085,0.033537753,0.070388414,-0.00021411096,0.04335756,0.021890428,0.058922388,-0.0054124794,-0.07975425,-0.009271185,-0.02302339,-0.05970905,0.07899842,-0.07287112,-0.024192233,-0.028442776,-0.08020758,0.010399091,0.0717348,0.0226997,-0.036086656,-0.048137456,-0.034229964,0.0030686865,0.020649934,0.0506122,0.052668627,-0.04836098,0.051360693,-0.032088935,-0.0308049,0.024686493,0.028640868,-0.035888176,0.01453005,-0.020132514,0.07378431,-0.007854222,-0.044934534,0.050457727,-0.0005195057,0.022478886,0.078599535,0.048007667,0.04274385,-0.022068424,0.15239413,0.005540786,0.10212868,0.0025126748,-0.018099384,0.0348886,-1.6440558e-32,-0.045166623,0.028664833,-0.011866858,0.019851768,-0.05334087,-0.036916573,-0.06591041,0.0353782,0.04621103,-0.11357867,-0.02493689,-0.085810244,0.004457323,-0.04992635,-0.09439323,0.007039052,-0.028271686,-0.12122603,-0.077393875,-0.011153529,-0.0344922,0.07300264,0.023683399,0.026773542,-0.041612454,-0.041347668,0.023045383,0.038439915,-0.0458245,-0.040513977,0.08477138,-0.024689427,0.058558524,0.07319496,-0.026420359,0.012280157,0.06917105,0.007372946,0.0030482914,0.045068532,0.05685418,0.11994327,0.0013771681,-0.09855153,-0.078674205,-0.04147639,0.01582555,-0.14864647,0.024822032,-0.060195584,0.078440614,-0.019284355,-0.026776029,-0.012460263,0.009552135,0.00330037,-0.044937283,-0.060528763,-0.038584784,0.018011764,0.04934098,0.008851747,-0.05400419,-0.022158679,0.06174353,-0.0036448995,-0.007518646,0.019225787,0.026768997,0.039154466,0.085396685,-0.010834103,-0.11652509,0.014896743,-0.0027637118,0.013999291,-0.047520604,0.016573768,0.018203318,0.0031746093,-3.448861e-05,-0.027176458,-0.05990556,-0.0010231755,0.0023631332,-0.052214168,-0.04418087,0.022163203,-0.0039843726,0.01184028,-0.020185893,0.05082265,-0.0075528836,-0.03520819,-0.031235635,-6.762186e-08,0.028998889,-0.055474963,0.055245917,-0.040841587,0.067967035,-0.05431874,0.035478003,0.06908223,-0.021409981,0.042956892,0.025315516,0.04487892,-0.11312132,0.008384836,-0.019269856,-0.007975666,0.11152171,0.0320254,-0.032417912,-0.08354285,0.038918298,0.01091077,-0.04379515,0.0040107854,0.029676428,-0.00746262,0.011611825,-0.019363375,-0.03751057,0.013032316,-0.074422225,-0.060284823,-0.032606725,-0.07388442,-0.050526913,-0.0643335,-0.05183796,-0.006766291,-0.030950429,-0.028811766,0.07520859,-0.06155468,-0.004244888,-0.037238423,-0.047132615,-0.030677423,0.0945689,-0.033057056,-0.0043911138,0.044538148,-0.05202281,-0.050051834,0.04043609,0.03813443,-0.071042314,-0.10298909,0.07148405,0.045344777,-0.0042860075,0.044339675,0.10388816,0.01286693,-0.059636876,0.01652332} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:57:51.211548+00 2026-01-25 01:27:51.202977+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 470 google ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB 1 t 473 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Arrivée : Navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local.\nRetour : impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti quand le vol est à 9h.\nVoiture neuve et en bon état. arrivée : navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local. retour : impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti quand le vol est à 9h. voiture neuve et en bon état. 1 2026-01-25 01:27:48.342082+00 fr v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local.", "J1.03": "impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti q", "O1.01": "Voiture neuve et en bon état."} {0.022798216,0.072848134,0.07793421,-0.028576454,0.014075575,0.028401902,0.021719687,0.07654255,-0.009145302,-0.06023575,0.034028314,-0.05427682,-0.08296509,-0.014851631,-0.0690369,-0.04813618,-0.012731175,0.020001298,-0.014250904,0.038098622,0.12827738,-0.008439136,-0.082230136,0.06669369,0.02533104,0.024162207,0.0016959971,0.02130693,0.03783079,-0.06588091,0.03202985,0.06753389,0.021325037,0.017162453,0.023856701,0.035792664,0.037924737,-0.03410779,-0.0020664139,0.021122217,-0.06439459,-0.039483987,-0.09135323,-0.018071279,0.016443186,-0.014309561,0.09143075,0.040349223,0.0059617637,0.022191122,-0.0031376933,-0.024302186,-0.006647053,-0.025764503,0.021518664,0.078851536,0.039051346,-0.01737479,0.09151963,-0.045917742,-0.005729879,-0.015116345,0.016449599,0.012030468,-0.0402981,-0.089501336,0.018802486,-0.07460398,0.01907363,0.023874205,0.04754915,-0.016021883,-0.1024778,-0.057056148,0.0022678955,-0.008743993,-0.017985225,0.018037872,0.008225281,-0.11843748,0.09398812,-0.096077845,-0.039091945,0.026931707,0.010062649,-0.05298341,0.008000425,0.09696372,0.052055202,-0.05246692,-0.07917661,0.044704016,-0.07576604,-0.01257993,0.022189202,0.009789064,-0.020036804,-0.02978447,0.012375053,0.055028763,0.014954128,0.048632506,-0.05480869,0.11557555,-0.06751769,-0.019279778,0.039565045,-0.010485824,-0.086094394,0.033150353,0.03989364,-0.04516611,0.046468362,-0.08385511,0.017537592,0.056173988,-0.036290124,-0.08088827,-0.07886658,0.006227268,-0.034974582,0.006190369,-0.021579118,-0.04301915,0.022582274,0.05316164,0.13006349,9.753462e-33,-0.0534926,0.05611961,-0.039774626,-0.006736919,0.03429739,-0.047680132,-0.10651544,-0.00017170394,0.008247773,0.01661096,-0.04047882,-0.035688248,0.0035595316,-0.010236663,0.020026008,-0.052070405,0.10163217,0.018890867,-0.025393382,-0.057104576,-0.08677704,-0.11372292,-0.048088133,-0.0131678255,0.032948174,-0.04049555,-0.043902613,-0.076409414,0.070570216,0.030784104,0.009561493,0.051875908,-0.027141761,0.07178113,-0.014622802,-0.035782214,0.10660628,0.041028094,0.031774815,-0.0030304287,0.030260922,-0.006427297,-0.0546377,-0.038539965,0.04781003,0.016375532,-0.0068542142,0.00583614,0.048057195,0.01950838,-0.0035695035,0.059920732,-0.033056077,-0.064356744,-0.0015832913,-0.002511635,-0.047693506,0.034135077,-0.08825222,0.027504189,0.06678477,0.07270909,-0.01749036,0.03446291,0.08951764,-0.00242862,0.0013086296,0.06231493,0.111485004,0.0022425023,-0.09984034,0.008743666,0.06418853,-0.013521308,0.027682055,-0.014670084,-0.0057061217,0.032384608,-0.028221296,0.027885139,-0.058759812,-0.0586933,-0.008370964,-0.041846536,0.09356369,-0.061648197,0.058199294,0.023586953,-0.04977839,-0.026782682,-0.0788936,0.031160234,0.020812513,-0.0045833164,0.0070717274,-1.04961566e-32,0.04784231,0.025755648,0.009105603,0.063666426,0.0149868075,0.066686235,-0.004907622,0.09471487,-0.080664724,-0.051551428,-0.14517353,-0.08656433,0.049208485,-0.0424116,0.011628536,0.014129908,0.0013674692,-0.053945962,-0.05410037,0.023299972,0.010123808,-0.11696796,0.05001496,-0.04985523,-0.059169903,0.03358872,0.08084064,-0.037539836,-0.09165598,0.029444478,-0.0307782,0.0656328,-0.0059736357,0.08611075,-0.01875446,0.08671013,0.038974762,0.10554115,0.01390864,0.032181103,-0.06962755,0.041725814,0.02899655,-0.07367259,-0.009453321,-0.0024809104,-0.013158926,-0.10250678,-0.11814303,-0.052131865,0.06193345,-0.00562048,-0.030117396,0.021556636,0.08475677,0.0119101675,-0.046299227,-0.12752452,-1.0342041e-05,-0.04978863,0.06635897,0.08024077,-0.056043554,-0.018510887,0.058733024,-7.237752e-05,-0.07882326,-0.014971374,0.0033545273,-0.058369175,0.030988865,0.032899,-0.0037532155,0.045275737,-0.04309738,-0.03191027,0.056479935,0.08517218,-0.00060116366,0.023025109,-0.08708204,0.013996183,-0.031497873,-0.07485549,-0.029105429,0.022478659,-0.073999785,0.03357863,0.06579328,-0.055393707,0.0063950014,0.05508692,0.0059031476,-0.04510914,0.024421088,-5.1600793e-08,0.009459171,-0.031046906,-0.0069389525,0.021562148,0.08302978,-0.0012738035,-0.042088848,0.01611961,-0.04308196,0.039345134,0.044638813,-0.015752833,0.003514394,0.09919114,-0.0650908,0.021984605,-0.0031340253,0.0028952223,-0.03986644,-0.04037482,-0.010481586,0.0018286742,0.011726906,-0.032716952,-0.005021414,-0.036158353,-0.045558624,-0.09239717,0.0028849368,-0.031004107,-0.016889334,0.079069115,-0.031243352,0.013538578,-0.027650198,-0.055555683,-0.027564967,0.07711856,-0.051946256,0.024341006,0.062120736,-0.036140937,-0.060846675,-0.044908963,0.009729207,-0.105516374,-0.02902073,0.029512648,-0.054735243,0.05893477,-0.0059256344,0.0009840063,0.03744124,0.017170941,0.07124836,0.03485366,-0.03025954,-0.05418093,-0.05635793,0.015075591,-0.010130976,0.12548223,-0.07895837,-0.06791382} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:57:35.075788+00 2026-01-25 01:27:51.499752+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 482 google Ci9DQUlRQUNvZENodHljRjlvT2w4MVVuZzRlazlJVkVseWQzRTNZeTFUVlZSdmJVRRAB 1 t 485 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabajadores y el precio delo más competitivo. No se puede pedir más un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabajadores y el precio delo más competitivo. no se puede pedir más 5 2026-01-25 01:27:48.342152+00 es v5.1 O1.03 {A1.01,P1.01} V+ I3 CR-N {} {"O1.03": "Un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabaj"} {0.035601057,0.031128863,-0.041959308,-0.10838267,-0.040972497,-0.03382693,0.09730805,0.01064209,-0.04345017,0.001505433,0.051358476,-0.03897208,-0.04517325,-0.006090939,0.07196674,-0.0013188493,0.0069939713,-0.012163227,0.0069980603,-0.0034422681,0.04757681,-0.10669042,-0.07645791,0.11128159,-0.07559667,-0.07744181,-0.0149381915,0.0128511535,-0.07020935,-0.018321237,-0.008106555,0.021326983,0.11543545,0.057858035,-0.041113812,0.031096283,0.008242586,-0.019165957,-0.056464955,0.06531457,-0.10547205,-0.022233116,-0.025410522,-0.02569126,0.01650412,-0.030295009,0.068988934,0.04447478,-0.06853741,-0.013281067,-0.07800179,0.012516325,0.03768811,-0.016518759,-0.010334565,0.017381769,0.017067442,-0.008501751,0.048133776,0.032675423,-0.010622554,-0.019762076,-0.08095066,0.017982518,0.026982987,-0.03850347,-0.0011521304,-0.006836045,-0.0031544,0.014896583,0.113657415,-0.114212215,-0.014449597,0.02449074,0.020145591,0.05098105,-0.040454853,0.014794774,-0.01684378,-0.059701573,0.0061408305,-0.015202517,-0.01647172,-0.017183112,-0.03812589,0.02350196,-0.041836575,0.020452172,0.039299197,0.0016740586,-0.017480036,0.09256954,-0.016664227,-0.024653664,-0.12337558,0.020855874,0.037251677,-0.06356785,0.0056947805,-0.0015495539,0.064059995,0.0256605,0.019166654,0.08198012,-0.03706454,0.07397462,0.054536853,0.0055165477,0.03089142,0.08836139,-0.06974707,-0.025612177,-0.046383798,-0.0029900018,-0.050065357,0.055317454,-0.06482921,0.007079988,0.037516773,-0.007420754,0.059417702,0.038635,-0.0200451,-0.08458431,-0.029169386,-0.07241314,0.053581074,9.609438e-33,-0.067049675,0.009274955,0.012094493,0.07503044,-0.03814953,-0.025861837,-0.032895517,0.03175668,-0.005882843,-0.037988227,-0.02324571,0.09307289,0.032880567,0.03727314,0.03344094,0.0050603896,-0.028772525,0.005541631,0.11711644,0.06291358,0.018216353,-0.010341945,-0.058806658,0.06724109,0.04787519,0.053966783,-0.043034922,-0.032428786,-0.031883992,0.048442528,0.005826697,0.063387975,0.038225435,-0.045525767,-0.023241831,0.022518463,0.016794715,0.061525587,-0.003665548,-0.040105164,-0.03513762,-0.010363827,-0.010614606,0.01569293,-0.050713863,0.011977876,0.050351337,0.03747542,0.067144655,0.048959732,-0.036070928,-0.06576646,-0.03580413,-0.0198589,-0.0025472944,0.02884881,-0.05461038,0.0039513367,-0.008642095,-0.09717117,-0.0020972986,0.037866905,-0.04207374,0.009002,-0.058806356,-0.03504478,0.060209304,0.0018213296,0.19405015,0.021327952,-0.114838354,0.0034211797,-0.032432836,-0.007371902,0.013598128,0.04017242,-0.069449455,-0.003028963,-0.046124734,0.07005326,-0.07481957,0.0007980708,0.024930457,-0.0666358,0.1319881,0.12866998,0.06331135,0.01777918,-0.009789592,0.11034287,-0.00053383375,0.07514382,0.07365326,0.036040757,0.0236977,-1.2066412e-32,-0.057274416,-0.029106151,0.020382676,0.027373523,0.046546806,0.028952371,-0.019599086,-0.078158356,-0.022311956,-0.029392092,-0.08769209,-0.12622449,0.10699629,-0.0020341056,-0.06486976,0.06295852,-0.013500455,-0.06312464,-0.080771215,-0.03410528,0.020854704,0.01543516,-0.002746609,0.022930559,0.004611361,-0.10562404,-0.04355508,-0.026988707,0.015907519,-0.028967846,0.052594617,-0.013022196,-0.026016131,0.026638212,-0.012170842,-0.008188384,-0.056939725,0.06807671,0.07188936,0.063705094,0.0035476882,0.029968869,-0.043275867,-0.016790742,-0.00069918303,0.0036602374,-0.037109446,-0.16978405,-0.018724045,-0.044082653,0.046286374,-0.06315698,-0.071813986,-0.06686204,0.047982458,0.030635739,0.031871315,-0.07648429,-0.06441505,-0.031368207,0.07270011,0.0043660593,-0.038512964,0.02999192,0.08494018,-0.043024927,-0.009825004,0.03866904,-0.011436912,0.0119205825,0.083931215,-0.034368783,-0.10234647,0.019866522,-0.082411006,-0.046396036,-0.05669146,-0.0027286238,0.0040480397,0.024274295,-0.041647036,0.045549616,0.06296557,-0.06470306,0.016295167,-0.03551601,-0.04881505,0.020137547,-0.007871105,0.044335034,0.005438021,-0.019594012,-0.07131372,-0.1241331,-0.07437067,-4.6826138e-08,0.025591655,-0.04106358,0.00550194,0.059410643,0.018417154,-0.03719247,-0.034134425,-0.00377845,0.053792033,0.08883193,-0.010555178,-0.052712798,-0.055586345,0.044891223,0.026426679,0.014781433,0.09098313,0.03001543,-0.028814638,-0.078278735,0.052530974,-0.014349797,-0.07479924,-0.0009165999,-0.007555295,0.0333486,-0.071578495,0.008480256,-0.07754301,-0.004647073,-0.028237425,-0.0029019606,-0.0024723522,-0.103296936,0.030639177,2.3315142e-05,0.019962767,-0.017074618,-0.021140283,-0.07923405,0.072933815,0.03086676,-0.06818135,0.032783926,-0.033487074,-0.06208277,-0.044144258,-0.014884317,-0.02360216,0.07804826,-0.005482742,-0.050312087,0.059837196,0.043848824,0.063279346,-0.0337428,0.011823704,0.03887118,-0.038750388,-0.03130471,0.09549714,0.044356123,0.069592565,-0.07113241} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:57:20.31274+00 2026-01-25 01:27:51.538421+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 219 google Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB 1 t 222 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown It's great for a budget rental. A little further from the airport than other companies but the service is excellent. Recommend it. it's great for a budget rental. a little further from the airport than other companies but the service is excellent. recommend it. 5 2025-11-26 01:27:48.340468+00 en v5.1 V1.01 {} V+ I2 CR-N {} {"A4.01": "A little further from the airport than other companies but the service is excellent.", "R1.01": "Recommend it.", "V1.01": "It's great for a budget rental."} {0.06912984,0.020100443,-0.011161954,0.04212572,-0.025147168,0.05982969,0.039673977,0.012791015,-6.2051855e-05,0.031190995,-0.0077549424,0.08470439,-0.029685725,0.060781676,0.00842281,-0.03038894,0.121546246,-0.13975435,0.063697904,-0.10240622,-0.012289364,0.0078045856,0.045285225,-0.044113215,0.070517324,0.019604705,-0.020787267,0.0758936,0.031497557,-0.0049725203,0.016052341,0.051815327,0.006899676,-0.03644026,0.027444007,0.06152248,0.0027571507,0.00036433837,0.0042991964,0.038233157,-0.035571232,0.045527756,0.021120202,0.00014514184,-0.039698813,-0.053199083,0.010237135,0.054231677,0.115269,0.007614887,0.08400113,-0.04400966,0.043517683,-0.009893865,-0.035643805,-0.0053753224,-0.0048396024,-0.02138352,-0.009320279,-0.056450937,-0.0003326515,-0.008147461,-0.033626948,0.011669666,0.041695867,-0.03717445,-0.047189225,-0.04415643,0.0077416203,-0.15580714,-0.10445902,-0.013586212,0.038216297,0.02146221,0.047657087,0.048975594,0.0664127,0.0150736775,0.011672957,0.008045039,0.03818928,-0.020915559,-0.045135316,0.043134328,0.016211832,-0.116661206,0.009379835,-0.092833415,0.017020224,0.03519671,0.05217773,0.062996894,-0.018742677,-0.04741225,-0.04358945,0.06333634,-0.05620795,-0.032859508,-0.06983867,0.0319621,0.054099075,0.09442064,0.04299835,-0.047107987,-0.028310616,-0.07683589,0.120289594,-0.0057809227,0.022887053,0.005033005,-0.017580485,0.012067818,-0.023557493,-0.042971637,0.010211325,0.07581494,-0.014973374,-0.030176325,0.076097086,0.035103157,0.025394546,-0.00042910696,0.05948127,0.07060759,-0.04541459,-0.04416902,0.06855475,-4.3614977e-33,-0.06771055,0.04117894,-0.05949437,0.010988709,0.01807124,-0.015701836,-0.05549407,0.05704307,-0.042227615,0.06382575,-0.034105256,-0.014757633,0.0033093735,-0.005462243,0.0768528,0.040369906,-0.006127363,0.040121175,-0.0127977785,0.012849156,-0.05558376,-0.100737944,0.028414622,-0.020555777,0.07340855,-0.048818085,0.046004348,0.024926618,0.1570198,0.041643936,-0.082153805,0.04588097,-0.017132295,-0.013332613,-0.005798014,-0.0010386218,-0.09974752,-0.0062591177,-0.08371892,0.013616606,-0.057704546,-0.006351264,-0.0841468,0.0035373257,0.013754821,0.020740807,0.037451934,-0.04136072,-0.01830359,0.053400133,-0.0589175,-0.019560378,-0.09789142,0.051363498,-0.018064097,0.04810423,0.071755745,-0.0023127513,0.06669897,-0.026955822,-0.023354363,-0.011494841,-0.019169372,-0.016067646,0.026296817,0.0008557664,-0.0034686332,0.031697303,0.08406085,0.06658952,0.051600795,-0.008117359,0.10603337,0.005933076,0.023272533,0.013450679,-0.0794772,0.013617335,0.022883924,0.08141696,0.017728912,0.031877868,0.03787091,0.056469355,0.03940045,-0.03619851,0.04584199,-0.07262836,-0.09165804,0.051387556,-0.0038651165,0.068467714,-0.04878674,0.008098497,-0.016392462,2.986903e-33,0.051070422,0.019282103,-0.01001873,-0.0544644,-0.08619549,0.011119396,-0.022348097,0.026423976,-0.0004151419,0.07513502,-0.16441287,-0.030403351,0.034763925,-0.00015862734,0.024658678,0.0128481705,0.0060990276,-0.09236138,0.001931883,-0.031197427,-0.009586605,0.112027325,0.030623272,-0.059802737,-0.07411207,0.018593207,-0.13484414,0.07439928,-0.065156,0.056456637,-0.0828756,0.01590322,0.015391896,-0.009994955,-0.053016193,0.07201004,0.037988633,0.067169674,-0.014292393,0.03451281,0.027754571,-0.077105515,-0.040184192,-0.086943544,0.07458227,-0.06656686,-0.020156225,0.0012672365,0.017355157,-0.04860998,0.0024592162,-0.05915935,-0.0918785,0.06560138,-0.0005077762,-0.0071162246,-0.022472324,0.0046652094,-0.008218002,-0.025654858,-0.024759851,0.02198003,-0.014529808,0.046778783,0.019402087,-0.04722263,0.06529488,-0.057158984,-0.0033415302,0.047635164,-0.026795555,-0.040325776,0.06255004,0.09227322,-0.034085125,0.04889354,0.19433507,0.011900622,0.004843666,-0.002713185,-0.019680692,-0.0031950206,-0.079192586,-0.024625003,0.014602401,-0.064868525,0.06519265,-0.04779581,-0.057514496,0.05009046,-0.015077856,0.0065666926,-0.10069823,-0.052560315,0.019978063,-3.140758e-08,-0.07335465,0.050201908,-0.005096969,0.00044794084,-0.043708786,-0.12780863,0.057429027,0.022615513,-0.009677689,0.006203878,0.047377884,-0.041423723,-0.07158184,0.0852913,-0.11117741,0.0012727787,0.009987187,0.032946706,-0.037898984,-0.011856691,0.005804806,-0.004206813,-0.03835921,0.0046918467,-0.0053272475,0.029590786,-0.038190573,-0.009182462,0.08534133,-0.06497602,-0.06900824,0.060064074,0.0033889571,-0.012064621,-0.04946642,-0.008327985,0.035532463,-0.10562191,-0.0006401694,0.04053118,0.037224963,-0.04823191,-0.08700859,-0.023646196,0.050394077,0.0052617416,-0.027807819,-0.034486096,-0.025917169,0.028531933,-0.023484841,0.0052718236,0.0119002815,-0.020569324,0.07292789,-0.032872498,-0.013373421,-0.046969984,-0.02932196,0.089906186,-0.025720535,0.03209487,-0.0642327,0.0023015947} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:44:48.261892+00 2026-01-25 01:27:50.085225+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1211 google ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB 1 t 1214 Soho Club unknown I had fun. Bar service and coat service was good and the club was kept clean. The music was a good mix, but too loud for the small room. The club wasn’t very full, even after 1am. i had fun. bar service and coat service was good and the club was kept clean. the music was a good mix, but too loud for the small room. the club wasn’t very full, even after 1am. 4 2026-01-29 18:34:31.336452+00 en v5.1 P1.01 {E1.01} V+ I2 CR-N {} {"E2.02": "The music was a good mix, but too loud for the small room.", "J1.01": "The club wasn’t very full, even after 1am.", "P1.01": "I had fun. Bar service and coat service was good and the club was kept clean."} {0.035198394,0.03137747,0.051393636,0.0036937096,-0.07898078,0.02100081,-0.010970355,-0.03477037,-0.075511456,-0.011508548,-0.013135522,0.0323824,0.0650458,-0.0065670935,0.06584444,-0.03221674,0.112778716,-0.08239144,0.039270487,-0.019941753,-0.13048398,-0.037794244,-0.066299774,0.025933644,-0.054134954,0.040952682,-0.019737193,0.03157135,-0.0074225515,-0.04140911,0.007009153,0.026599165,0.06718239,-0.02620141,-0.054464042,0.014117957,0.12373725,-0.08760212,0.008929912,0.0884543,-0.0036504348,0.071920164,0.012730361,0.009105391,0.025939837,-0.023345582,0.015548628,-0.07945429,0.034841347,0.049735766,0.1054173,0.03415298,0.06609622,-0.056087673,-0.027313301,0.00077959907,-0.057705868,-0.0350695,0.0052306093,0.036947027,-0.042590737,0.017179567,-0.0025636565,0.024829961,0.059581865,-0.05842377,-0.07189471,0.04513492,0.07630887,-0.05597489,-0.023017248,-0.0033939774,0.047522288,-0.0059930943,-0.016221419,0.02744997,-0.024517553,-0.058641635,0.02789794,-0.030703045,-0.032011688,-0.07273895,-0.034642864,0.0051488644,-0.051793285,-0.06589656,-0.002508858,0.006841988,-0.013678536,0.024662381,0.046373464,0.110740125,-0.08843585,-0.043313935,0.045019362,0.016592845,-0.039499238,0.019557005,0.029110515,0.057057865,0.01599867,0.13028888,0.026046745,-0.08745478,-0.035674322,-0.029993234,-0.009103581,0.12348967,-0.036209684,-0.05874426,0.011436837,0.020960147,0.019707521,-0.027519582,0.005518213,0.062848575,0.073384665,-0.010762659,-0.049955193,0.008471174,0.08345382,0.09818752,0.008410972,0.0499222,-0.087748066,0.045899298,0.11354757,-2.2151972e-33,-0.076809175,-0.06410595,-0.056598302,0.073557444,0.14571485,-0.011253889,-0.021789452,-0.03965435,-0.044559553,0.051553264,0.09692423,-0.01045615,0.024990063,-0.095807254,0.04634026,0.005234634,-0.04278643,-0.009761191,-0.01440272,-0.036971055,-0.052332092,0.048010122,0.025646377,0.024226816,0.037384816,0.077005625,0.058959324,-0.026698722,0.08125094,-0.0065727285,0.010151124,-0.04405393,-0.012899335,0.024365505,-0.0017312355,0.0580396,-0.0040213726,-0.0486553,-0.07407393,-0.050952323,-0.031839162,0.0024743038,0.009002276,0.02546148,-0.05502252,0.012021449,-0.036676273,0.010084088,-0.023500895,-0.039320216,-0.053161558,0.04698251,-0.020876125,0.036638517,-0.026440928,0.03125057,0.06418518,0.005024198,-0.0062526898,-0.06579331,0.09934133,0.0818519,0.006589699,-0.036767054,-0.025410825,-0.033552114,0.034764096,-0.06455461,0.081786476,-0.09798651,0.01714058,-0.0021154198,-0.014720977,-0.024292624,0.03920274,0.019585267,-0.08528307,-0.07773737,-0.013550671,0.008455023,0.030615235,-0.00046941335,-0.034060657,0.07043725,0.043907266,-0.0075149913,0.091915324,-0.10498615,-0.092519596,-0.009632925,-0.025335385,0.0059615863,0.062609546,0.029958665,0.065365136,8.085242e-34,0.071166195,-0.010073769,0.0010215186,-0.04579696,-0.009619931,0.012239714,-0.1326246,-0.04939805,-0.03946705,0.076642446,0.0104382355,0.043453533,-0.030596575,-0.02996241,-0.046650123,-0.01337905,0.011166169,0.055643555,0.033372913,0.0016456738,0.01059835,0.06673943,0.05359886,0.0017890206,-0.089517854,0.029204762,-0.028867217,0.019432643,-0.031570222,-0.032227326,0.009297806,0.027633438,0.06632034,-0.123251416,0.016612262,0.0825252,0.07580297,0.026901286,-0.035408653,-0.07798551,0.009537775,-0.033359505,-0.013357514,0.0373059,0.015233316,0.037685968,-0.047191724,-0.07041087,-0.057803087,0.033785615,0.0023225937,-0.030915027,-0.09746407,-0.043001045,0.020895448,-0.011950291,0.023877075,-0.09810623,-0.053196475,0.0064102286,-0.09422063,0.054235894,-0.102341965,0.025172256,0.05405253,-0.048705775,-0.052229688,-0.00024783003,-0.061322536,-0.0100022275,-0.098156534,0.023468353,-0.001262001,0.17001787,-0.06810508,-0.0722607,0.023955142,-0.036292057,-0.010488334,0.036883738,-0.024960756,0.005304675,-0.012805533,0.0022636666,8.645512e-05,0.009663029,0.10897294,0.0005449449,-0.041835528,0.06971185,0.09884073,0.010215907,0.037886262,-0.03317682,0.019012466,-2.7524562e-08,-0.057559695,0.10342768,-0.009090083,0.03722129,-0.0351718,-0.09417068,0.03909592,0.00764035,-0.00916236,0.05486517,-0.029755807,-0.022383533,-0.021320576,0.018321287,0.008701958,0.025660517,0.04574165,0.025554854,-0.020389127,0.020023294,0.047884636,0.047587782,0.00049883535,-0.01246768,-0.02095848,0.008207543,-0.020696225,-0.02031504,0.021509834,-0.029584067,-0.03508103,0.013881108,-0.057791237,0.01024592,-0.045219786,-0.056044254,0.002067579,-0.11666954,0.016068554,0.0228957,-0.072200716,-0.029712727,-0.06508564,-0.039669573,0.04751467,0.06320429,-0.008142394,0.05469732,-0.03375766,0.053066235,-0.018193537,0.026341658,0.029154383,-0.004745286,0.06474923,-3.0013776e-05,-0.029967051,0.06308319,0.022764048,0.001072673,-0.01149485,0.02740638,-0.17403474,-0.013931784} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:43:34.306753+00 2026-01-29 18:36:00.49465+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1220 google review_40 1 t 1223 Soho Club unknown I went a few times to that place. Really liked the atmosphere. Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and you guys just picked it up and saved my night so thanks a lot! i went a few times to that place. really liked the atmosphere. barmaids are really friendly but especially i want to say thank you cause i had lost my phone and you guys just picked it up and saved my night so thanks a lot! 5 2020-01-31 18:34:31.336452+00 en v5.1 A1.04 {} V+ I3 CR-N {} {"A1.04": "Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and yo", "E1.04": "Really liked the atmosphere."} {0.03791617,0.0059090788,0.05219867,0.012964552,-0.038829662,0.00023010647,0.032907877,-0.12107918,-0.023758119,-0.08462221,-0.0066128923,-0.025756182,0.017746719,-0.041303847,-0.036169145,0.0067601847,0.13337143,-0.06821191,0.011133359,0.0036145207,-0.019365141,-0.01675465,0.026546251,0.06466733,-0.044585515,-0.03657124,-0.074078985,0.12617306,-0.015345044,-0.009626797,-0.03870785,0.07146426,0.039240763,0.06445821,-0.005706927,0.10998279,0.0871824,-0.1281687,0.019453805,0.08610484,-0.021948293,0.07809167,0.05724964,-0.00084650464,-0.0006991416,0.00015166396,-0.00242809,-0.02735523,0.08133611,-0.048219576,0.10375327,0.041366484,0.04867033,-0.056827314,-0.049019616,0.06245192,0.008729823,-0.06454233,0.019073233,-0.055118788,0.0571643,0.033788893,-0.007220662,0.032524392,0.013273465,-0.06101067,-0.063146,0.10490432,0.04774684,-0.1208769,-0.053828992,-0.016157858,0.054075956,-0.026182896,-0.049339585,-0.0106697865,-0.008916903,-0.063781515,-0.027113302,0.04465791,0.00016700165,-0.07788524,0.02636021,0.05093785,-0.064537786,-0.07293698,-0.009543336,0.029646123,0.011920165,-0.03018497,0.023392953,0.086239375,-0.071926296,-0.0791581,-0.038703606,-0.04286776,-0.056206193,0.0006970277,-0.030384691,0.03478825,0.033583205,0.11889504,0.019802209,-0.014868491,0.029828288,-0.01453814,0.0040588337,0.10720704,-0.010927058,-0.04393197,0.017519899,0.043827794,0.07019515,-0.007162266,-0.0036252467,0.012515085,0.07903929,-0.036736526,0.0016603782,-0.056609973,0.037773807,0.050995387,-0.028974677,0.04503555,-0.029177234,0.009368087,-0.013347761,-3.079112e-33,0.013340158,0.036405668,0.058160473,0.048372306,0.14576918,-0.004361666,-0.11864557,-0.00067494944,-0.077364504,0.008940352,0.07727734,-0.0691092,0.021502137,-0.06800445,0.022693975,0.0071881814,-0.02639904,-0.038118284,-0.03934317,-0.08579348,-0.09764495,-0.0064986744,-0.004415279,0.039551914,-0.0057125967,-0.014848344,0.06707401,0.04412907,0.09022731,0.02341079,0.006151987,0.010207847,0.0056584952,-0.020742822,-0.004406465,0.016699562,-0.014620673,-0.056894433,-0.039820805,-0.035200473,-0.007548786,0.019965088,0.041577812,0.087723695,-0.027273048,0.042791378,0.041227147,-0.016513286,0.079004094,-0.009925539,-0.08518776,-0.030460473,-0.035566755,0.062031694,-0.036596194,-0.010964253,-0.033595342,0.056274135,0.072297215,-0.056528714,0.03723411,0.03516188,-0.010909385,-0.07418269,0.037500415,-0.06230285,-0.0060389237,0.047046173,0.052814793,0.0020770067,0.008945396,0.014977302,0.049731515,0.05221044,-0.020995716,0.059425335,-0.08491706,-0.035344716,0.059018906,-0.0034770546,0.055685107,0.0054550613,-0.046519835,0.036199395,0.031414922,-0.06418504,0.120199695,-0.09861681,-0.07653159,0.0031663764,-0.02988247,0.013535849,0.061373357,-0.074830316,-0.0446231,2.0973266e-33,0.117311075,-0.05227782,-0.007895625,-0.0416613,-0.034093793,-0.007492148,-0.11353001,0.031901013,0.012807513,0.0454419,-0.017288065,0.09949277,0.047874574,-0.009557967,-0.019276453,0.035347853,0.073416345,-0.014071387,-0.09786121,-0.0674934,-0.014618669,-0.010607209,-0.0041124714,-0.0394107,-0.033230763,0.03921276,-0.025051901,0.021533348,-0.025967684,-0.08870169,0.0006015879,0.013218847,-0.014609267,0.03149118,0.03927825,0.07799492,0.06869852,-0.06619316,-0.029874433,-0.0052404376,0.028958132,-0.05287853,-0.05757423,-0.013653955,0.04323008,0.028746543,-0.052980393,-0.049176592,0.030762961,-0.07074519,-0.03779622,-0.016771832,-0.045689143,0.008797458,0.020738533,0.014887897,0.019735834,0.016242271,-0.035978943,-0.07677572,-0.08934141,0.03983171,-0.017576775,0.01363891,0.0606205,-0.047000054,-0.004166673,-0.009966518,-0.06362909,0.0069557303,-0.045311328,0.044022217,-0.021394797,0.10069302,0.01106599,-0.035391968,0.13713396,-0.057534877,-0.060583502,-0.010515451,0.062528886,-0.020344814,0.0048875837,-0.0012239143,0.071849674,-0.016444158,0.061095703,0.07179122,-0.019564062,0.010240915,-0.011450513,0.04156941,-0.014890164,-0.08678302,0.036479663,-2.9322294e-08,0.032780495,0.028066652,0.005745254,-0.008975568,-0.08257386,-0.099254124,0.026412487,0.008846856,-0.04381688,0.008766063,-0.027426865,0.02376769,-0.051687736,0.008919229,-0.017702699,0.0029128485,0.036608927,-0.052965358,8.7016815e-05,-0.052922156,0.008473717,0.08206878,-0.038368165,0.015528855,-0.038294174,0.02834808,-0.0052270833,-0.039247166,0.054953143,-0.073972344,-0.020021673,0.016514238,-0.028113334,-0.0058399118,-0.02079294,-0.01734579,-0.040274486,-0.10433615,0.050504915,-0.025502754,-0.020148613,-0.13413477,-0.06660788,0.00070432946,0.07135794,0.03716344,0.12410877,0.055964045,-0.039628763,0.043688234,-0.02725958,-0.009441151,0.0075269723,0.038163215,-0.004239211,-0.03648161,-0.051253825,-0.029998388,0.1021216,0.081829846,0.059114408,0.04271467,-0.0940804,0.022872508} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:45:15.286346+00 2026-01-29 18:36:00.517922+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 616 google Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB 1 t 619 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles gut abgelaufen, danke! alles gut abgelaufen, danke! 5 2026-01-21 01:27:48.342901+00 de v5.1 J1.01 {} V+ I1 CR-N {} {"J1.01": "Alles gut abgelaufen, danke!"} {-0.034354705,0.06285307,0.03380382,-0.06532259,-0.06646397,-0.0076343184,0.058570743,0.06864763,0.05869463,0.047869332,-0.06536998,-0.054202493,0.094726235,-0.06980995,-0.101784386,-0.022580931,-0.036395762,0.07616981,-0.009465127,0.008356356,-0.043755803,0.03926156,0.06691886,-0.019737681,-0.056243394,-0.005697697,0.010130977,-0.025808245,-0.0728612,-0.092933245,0.1431112,-0.021749023,0.019424217,0.07872514,0.021038607,-0.024452848,-0.0046787267,0.008740024,0.056412123,0.11218512,-0.09667655,-0.012558213,-0.011861521,-0.030191647,0.029775219,0.03117419,-0.08591004,0.042153858,0.09463472,0.009324101,-0.02054971,-0.039689586,-0.021679586,0.05641576,0.11579765,-0.020980714,-0.045568667,-0.022379747,-0.022277547,-0.011516187,0.002791912,0.03610902,-0.028139934,0.07284892,-0.05035093,-0.0036345222,0.041274194,0.02475333,-0.065500155,0.07937064,0.017905956,-0.03288605,0.040273014,-0.03137124,-0.0014559795,-0.0011526423,0.007477772,0.037923638,0.0018270027,-0.05246323,0.006886535,-0.036688108,0.046328615,-0.020507718,0.011038736,0.017494155,0.07298973,0.015523993,0.11494169,-0.023433367,-0.047937073,-0.09114756,-0.087523334,0.028669536,-0.08794595,-0.055303205,-0.031148238,-0.04513055,-0.11043452,0.097913705,-0.00040693706,-0.02450811,0.071889974,0.01422281,-0.062422834,-0.03370725,0.06476976,-0.006321807,0.032314986,-0.020911885,-0.010303796,-0.049063098,0.0056009768,-0.0034855017,0.025986617,-0.014201433,0.023523385,-0.12206869,-0.031768147,-0.008262456,-0.023118345,0.02983364,0.024726404,0.09547093,0.03802671,0.043319315,0.060328398,2.1400198e-34,-0.0738126,-0.047137402,0.055507842,0.0033650927,-0.09623486,-0.030775875,-0.10702904,0.0020995825,-0.043949552,-0.0462072,-0.06308635,-0.018075407,-0.05893463,0.11065347,-0.008092617,0.045966223,-0.014679741,-0.02262741,0.08703691,-0.032994702,-0.09779656,-0.044462536,0.02012087,0.07713621,0.030770099,-0.016842263,0.09668644,0.049263205,-0.08653796,0.016102377,-0.011548579,-0.043018553,0.034162965,0.08005004,-0.053539176,0.04134414,0.005335519,0.033147123,-0.027240943,0.026281925,0.052645057,0.0017272122,0.02218189,-0.07635064,0.058184344,0.028651668,-0.06500051,-0.0018721375,0.042943645,0.040973384,-0.027236203,0.035999414,0.057106715,-0.020177484,-0.045122962,0.06308328,-0.067597814,0.043734897,0.062173776,-0.06411026,-0.0019376103,-0.017988764,0.042929605,-0.10012425,-0.050753415,0.030982444,-0.016266702,0.05146104,-0.007909911,0.03733857,-0.088024646,-0.018277748,0.091836676,0.057384104,-0.045507725,0.054815102,0.008863384,-0.047458205,0.009335293,-0.008836548,-0.031392347,-0.043500114,0.04483158,0.0135850655,0.072634205,0.043986276,0.007319427,-0.06200622,0.0006813368,0.10154058,-0.048677076,0.013614261,-0.00042854325,-0.021023007,0.028304642,-7.0402864e-34,0.027454015,0.029368622,-0.070526525,0.028369864,0.006042079,0.025311476,-0.06738168,0.10117563,0.0219764,-0.035905465,0.006735074,-0.023402588,0.0771926,-0.07046025,-0.012739179,0.05452863,0.03507786,0.0031958867,0.021087099,-0.036560528,-0.05653326,-0.009847639,-0.028128194,0.038716055,-0.041460473,0.0273266,0.07477518,0.056584757,-0.045931175,-0.018032217,0.035414238,-0.009259279,-0.017907295,0.050409053,-0.034945775,0.07700754,0.054078907,0.055207048,-0.038743276,0.009899314,-0.05799082,0.03067387,-0.10000919,-0.008633455,0.048892863,-0.0007692885,-0.006447074,-0.01634369,-0.0434201,-0.043736547,-0.01982975,0.03653557,0.046418633,-0.050571695,-0.0024568494,0.020441594,0.07449074,-0.09266341,-0.05029435,-0.032800075,0.025811229,0.055264525,0.05804146,-0.025208613,0.090772614,-0.043262538,-0.14395177,0.05922021,0.0071326257,0.043301977,0.09786255,-0.081792034,-0.12054417,0.03276747,-0.005956934,0.03768322,-0.03721793,-0.021892939,-0.058155812,0.063990206,-0.04516972,-0.028668659,0.028976813,0.07649346,-0.05810495,0.01574391,0.0040210118,-0.08876083,0.009489035,-0.043331005,0.025676887,0.06827231,0.018113032,-0.005295517,-0.04133794,-1.9682293e-08,0.08492766,-0.024726648,-0.07205448,0.03850831,0.02234923,-0.062243447,-0.05679206,-0.011281074,-0.08580315,0.030092867,-0.010355389,0.08704185,-0.104368754,0.054760758,0.05008999,0.09746981,-0.036120348,0.024665084,-0.05976882,-0.021160172,-0.0051228805,-0.03869324,-0.010666869,-0.025236214,0.00622624,0.0038064998,0.0074703163,-0.009287517,0.045152947,-0.016065441,-0.030415501,0.058959935,-0.06207384,-0.026985737,-0.06817591,0.022212662,-0.012103129,0.06896738,-0.012853078,0.06532437,0.034701232,-0.025935076,0.12998861,-0.07780999,-0.06966592,-0.015958292,0.01400188,0.010307854,0.06349662,0.006387162,-0.054376327,0.0131947445,0.065340675,0.054877743,0.025842326,-0.004849842,0.00872613,-0.038065616,0.029019186,-0.028641338,0.044838242,0.003200808,0.05676164,-0.0012058049} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:59:37.503667+00 2026-01-25 01:27:52.060148+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 669 google Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB 1 t 672 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Samochód wydano jako „bez uszkodzeń”\nZdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. Po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu.Pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. Dołączam kilka zdjęć. Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. I teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;)\nNa nasze szczęście zdjęcia robiły dwie osoby i mamy takie zdjęcie z datą i godziną. Tak, ku przestrodze. Jeszcze bezczelnie mówili nam że dali nam nowiutki idealny samochód. samochód wydano jako „bez uszkodzeń” zdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu.pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. dołączam kilka zdjęć. gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. i teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;) na nasze szczęście zdjęcia robiły dwie osoby i mamy takie zdjęcie z datą i godziną. tak, ku przestrodze. jeszcze bezczelnie mówili nam że dali nam nowiutki idealny samochód. 1 2026-01-22 01:27:48.343146+00 pl v5.1 J1.02 {O1.02} V- I3 CR-N {} {"A1.02": "Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również", "J1.02": "Samochód wydano jako „bez uszkodzeń” Zdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było a", "J1.03": "Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. "} {-0.035298724,0.07064956,-0.047531564,0.0048827683,-0.05710673,-0.030507293,0.09696161,0.04993835,-0.05874658,0.023172151,0.0418803,0.096669964,0.022695616,0.065002725,-0.023641255,-0.0062903925,0.004744548,0.061589006,-0.10137819,0.021204295,0.0319175,-0.07060784,0.051409923,-0.02551201,-0.037814107,-0.023824882,-0.07111334,0.05988393,0.042161055,0.0079259,0.008148771,0.085627854,0.044585675,-0.035731625,0.08856579,0.013002048,0.06250995,-0.0148364175,-0.0809027,0.00937957,-0.0021355608,-0.02994106,-0.13247918,-0.023844246,-0.036550783,-0.03189773,-0.017443195,0.06505157,-0.06241556,0.05504074,-0.077206954,-0.015962895,0.05323905,-0.04977783,-0.025342207,-0.07750895,-0.056877118,0.06882248,-0.051308975,-0.019084008,-0.00073270116,-0.05577247,-0.06710757,-0.02828306,0.049905617,-0.028938245,-0.0047112154,-0.026559383,-0.023890179,-0.03704758,-0.015183345,-0.09527182,-0.07582803,0.010722404,-0.058295406,-0.008660847,0.05463169,-0.018678602,0.021525694,-0.09276179,0.05208056,-0.0026286766,-0.0054757115,-0.038376827,0.045771707,0.008982877,-0.019744338,0.05374485,-0.0009219472,0.040484414,0.05408206,0.06742041,-0.037445366,-0.039234355,-0.008346696,0.008585031,-0.019364193,-0.037611667,-0.0027821753,0.049397755,0.10496199,-0.020223347,0.11300057,-0.03548437,-0.015207932,-0.018631747,0.012926018,-0.015374222,-0.09000449,0.033859294,-0.064881675,-0.017937772,-0.04078152,-0.053812064,-0.01996655,-0.0141546875,-0.07763261,0.060783613,0.04104898,0.0059817825,-0.031978935,0.02984221,-0.03455064,-0.04221247,0.004000789,-0.027662685,0.045820195,2.1245666e-32,-0.03386453,-0.005195717,-0.020775244,-0.051141907,-0.00214679,0.032471884,0.014839264,0.04794784,0.04649694,-0.019851929,-0.025654662,0.037502386,0.10946517,-0.041148573,-0.030388536,-0.023059838,0.023423346,-0.006165773,-0.026954656,0.11755161,0.06507366,0.037423518,-0.02459638,-0.0037381283,0.077390544,0.007970077,-0.040852968,-0.02984301,-0.032036908,0.02666613,0.06766952,-0.011746355,-0.08534335,-0.044364527,-0.029974468,0.0014677126,-0.013904676,-0.032405388,0.009256307,-0.14058329,0.019816227,-0.11519425,-0.01868757,0.1223477,-0.0068875034,0.07278782,0.041394025,-0.009922224,0.07529993,-0.040427476,0.03817985,0.017675394,-0.10778942,0.007005348,-0.09702008,0.046052787,-0.0034983088,0.03877116,0.08240656,-0.064864114,-0.06277133,0.031298112,0.013358043,-0.0073673697,0.038730916,-0.14487998,-0.09951389,0.005718351,0.026173798,-0.008282637,0.016271634,-0.05630071,0.05511604,0.090757415,0.013332302,-0.024192622,0.09527674,0.012543659,0.0044137426,0.021068538,-0.05335912,0.010821435,-0.037940983,-0.039843496,-0.010738371,0.0347465,0.024099998,0.021175053,0.008043752,0.067611784,-0.01758769,-0.0063079363,0.019960647,-0.018169113,0.0039272644,-2.1828153e-32,0.029721731,0.050365765,-0.058202997,-0.038149923,0.012002979,0.023072824,-0.06353316,-0.027416468,-0.0061188554,-0.06882007,-0.01352665,-0.08740294,0.047265347,0.036944516,-0.07741552,0.07718899,0.018312713,0.013542715,0.0059123533,0.010954521,-0.11420895,0.12027599,-0.0018157187,0.13066903,-0.082675256,-0.0057412437,0.023505159,-0.07291643,0.01909753,0.06898842,0.008698351,-0.016627325,-0.10187782,0.120449536,0.004733887,-0.014159326,-0.0021343238,-0.08232933,-0.021098815,0.053401813,0.015197489,-0.016615028,-0.027587248,-0.009662179,0.030747443,0.023974003,-0.0029906705,-0.07108938,-0.121676564,-0.047264922,0.09960508,0.10821519,-0.058551986,-0.0035690598,0.017008357,0.096602514,0.024511045,-0.13488854,-0.045917362,0.042819295,0.005679267,0.06634007,-0.0022444958,-0.025123594,0.009687408,-0.10185572,0.013291742,0.020605063,0.091487125,-0.04583566,-0.04047054,0.031805832,-0.043876555,0.020685902,-0.011914726,0.09824833,0.025644096,0.047121882,-0.027016522,-0.08922018,-0.027020188,0.0022289336,-0.03463704,0.013364356,-0.045429822,-0.021645963,-0.012596501,-0.058368627,0.029086968,-0.0106243,-0.0031192342,0.0334696,-0.0070467084,0.14121488,0.04291859,-6.21245e-08,0.055244934,-0.02710124,0.056019716,0.017966297,0.020479549,-0.100611195,0.007928494,0.037307262,-0.022708816,-0.0024361925,-0.018479468,-0.0073657827,-0.09166751,-0.02962522,-0.03419686,0.05157118,0.034845136,-0.03665581,-0.002538063,-0.013040777,0.0597626,-0.034856062,-0.104805425,0.042641602,-0.030991914,0.016563963,0.038495574,-0.0018987634,0.008215851,-0.06324424,0.008621577,-0.023237083,-0.0109111015,-0.066260636,0.014806648,-0.0017004694,0.073141664,-0.07531397,-0.020826982,0.01848639,0.028748475,-0.018294342,0.0450414,0.014790606,-0.072420165,-0.027466824,-0.05264299,-0.076284654,0.09796819,-0.04413434,-0.056539968,0.061639406,-0.013920198,0.04244781,-0.040946987,0.060277738,-0.025714038,0.014105263,0.013370914,-0.030770656,-0.024601901,0.05135461,-0.012350595,-0.050063044} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:58:49.532985+00 2026-01-25 01:27:52.290253+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 672 google Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB 1 t 675 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 100% in Ordnung. Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (nationaler Terminal). Kommt man im Terminal 1 (internationaler Terminal) an, muss man auch nach rechts, aber ganz zum Ende vom Terminal 1 gehen. (ca. 300 m) Ein Schild "Meetingpoint" haben wir trotzdem nicht gesehen.\nDer Transfer zur Mietstation dauerte nur ca. 10 Minuten.\nDie Fahrzeugführer und - Rückgabe ging auch sehr schnell. Sie dauerte nur ein paar Minuten, eben so lange wie man für den Papierkram braucht. wir hatten ein neues fahrzeug mit nur 4200 km. das auto war sauber, sowie technisches auch optisch 100% in ordnung. die wegbeschreibung zum meeringpoint muss ergänzt werden. sie bezieht sich auf das terminal 2 (nationaler terminal). kommt man im terminal 1 (internationaler terminal) an, muss man auch nach rechts, aber ganz zum ende vom terminal 1 gehen. (ca. 300 m) ein schild "meetingpoint" haben wir trotzdem nicht gesehen. der transfer zur mietstation dauerte nur ca. 10 minuten. die fahrzeugführer und - rückgabe ging auch sehr schnell. sie dauerte nur ein paar minuten, eben so lange wie man für den papierkram braucht. 5 2026-01-21 01:27:48.343161+00 de v5.1 O1.03 {} V+ I3 CR-N {} {"J1.01": "Der Transfer zur Mietstation dauerte nur ca. 10 Minuten. Die Fahrzeugführer und - Rückgabe ging auch", "J1.02": "Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (natio", "O1.03": "Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 1"} {0.020180926,0.0010418239,-0.06726792,-0.08399951,-0.074003994,0.041040774,0.029352857,0.18282469,0.055104572,0.021963658,0.0007978856,-0.01409678,0.021464963,0.017058523,-0.025733061,-0.04615127,-0.03353107,-0.01895264,0.08234029,0.03182907,0.031595998,-0.08716737,0.051592764,0.020215774,-0.033052843,-0.0069205672,-0.011949996,-0.014353228,0.02067369,-0.026084512,-0.039831005,0.009859978,0.003981896,0.012273553,0.058220807,0.029098373,0.11056483,-0.042252332,0.0021471533,0.010758874,0.027926562,0.0029490027,-0.031596657,0.0007834558,0.07150908,0.041658405,0.03990087,0.09426273,-0.07663912,-0.040780414,0.013447972,0.025989084,0.0319767,-0.01724267,-0.026796019,0.01919333,-0.013382561,-0.021887265,0.061842762,0.01860519,-0.08862207,0.039101616,-0.04357165,-0.0430119,-0.039424136,-0.049195934,-0.00054046157,-0.0441344,0.06416,0.06973564,-0.04775051,-0.07036788,-0.051564854,-0.060756184,0.015088861,-0.0435678,-0.060784623,0.08951297,-0.039849654,-0.09542017,0.07684291,-0.059361916,0.032583024,-0.0237845,0.005570872,-0.031273052,0.0059638713,0.13121335,-0.022321852,-0.07778257,-0.011241467,0.07181536,-0.15707129,-0.0020678765,-0.06379327,0.0013100002,-0.02691064,-0.01302885,0.08330137,0.0067317784,0.058087554,0.055378154,-0.0089884475,0.032790434,-0.058032412,0.010030221,0.011000003,-0.0015013925,0.023920367,0.060176797,-0.028546324,-0.06327519,-0.029372605,-0.06592236,-0.03549413,0.062113192,-0.040957477,-0.048879586,0.017249227,0.004616948,-0.024854755,-0.036029268,0.012776511,0.013200097,-0.001319576,0.0321716,0.072494,1.6234839e-32,-0.11709795,0.026737927,0.0053382195,-0.020638768,0.01727847,0.03304923,-0.03911685,0.026096787,0.06672122,-0.048799362,-0.04514079,-0.060653694,-0.013330726,-0.031297587,0.04446669,-0.017967423,0.06455269,-0.013040593,-0.024828414,-0.05423652,-0.002031966,-0.07959352,0.027501943,0.020841692,0.17853105,0.08060773,-0.06262971,0.032386392,0.013394807,0.013347499,-0.020716492,-0.018885491,0.016491337,0.018601924,-0.068917975,-0.07150449,-0.03886404,-0.02680358,0.025621282,0.012285093,-0.022566935,-0.013684256,-0.00092367316,-0.05046268,0.019435054,0.055809908,0.012088754,-0.0021980389,0.07237161,0.04091909,-0.04896448,0.030221166,-0.08601805,-0.029309662,0.004343177,0.031211985,-0.028991884,0.036177006,0.012449085,-0.002884974,-0.0030603828,0.0054933163,0.041244715,-0.0400705,0.03603763,-0.06308788,-0.09696709,-0.015052254,0.10011103,0.08897524,-0.04830816,-0.010492971,0.06830766,0.043792915,0.09232345,-0.011898888,0.05276941,0.13878807,-0.034842506,0.03223477,-0.052890476,-0.027812526,-0.036444932,-0.10152659,0.08658051,-0.08180153,0.08760793,0.017103802,-0.13075554,0.06019494,0.025186708,0.042423658,-0.0123659605,0.116211206,-0.01480348,-1.5274572e-32,0.072663285,0.06327749,0.04825231,0.018349871,-0.035473365,0.015367279,-0.00811401,0.01967677,-0.052301984,0.036197864,-0.048532344,-0.00998494,0.05840286,-0.008674299,-0.043591894,0.036166992,0.12895945,-0.05876291,-0.0273479,-0.05946165,0.11277371,0.025811527,-0.029302485,-0.011241231,0.015971648,-0.04276063,0.03021293,-0.020632472,-0.013815081,-0.0004364885,-0.064704895,0.012815115,-0.014286109,0.051244132,-0.040016245,-0.002374189,0.060256112,0.07558084,-0.046649586,0.046151128,0.09392181,0.06152244,-0.040356267,-0.058695365,0.04987599,0.0035292334,-0.008717335,-0.063709125,-0.07674622,-0.13250786,0.012672808,-0.044954117,0.016801264,-0.07090358,0.045923024,0.062240437,0.011130741,-0.07570847,-0.046559867,-0.08475272,0.08450016,0.021998197,-0.032440584,0.028937936,0.040958636,-0.048251037,0.049539357,0.044081118,0.035474718,0.041484434,-0.0059244637,0.025595028,0.025584046,0.04894781,-0.044299304,0.038252477,-0.017137917,0.011430953,0.034350622,-0.06046549,-0.047716625,0.0745356,-0.071325116,-0.016256547,-0.070037365,0.07610715,0.007824084,0.062913455,-0.0042052707,-0.042510353,0.01686393,0.10242583,0.016195633,0.017206807,-0.035743605,-6.253654e-08,-0.058842752,-0.03887376,-0.028429486,-0.012252432,0.0049162693,-0.10905746,-0.031792175,0.042563397,-0.07257383,0.04098625,-0.048315283,-0.008699027,-0.031989485,0.06934762,-0.04223697,0.012218982,-0.0075445743,-0.009693479,-0.03321375,-0.05257552,0.005632222,0.009080503,-0.033386853,0.010404867,0.014063698,0.015214261,-0.007815124,0.07696736,-0.028447444,-0.094619535,-0.014559387,0.0074522714,-0.08719377,0.07967096,-0.046237893,-0.08359242,-0.0063845087,0.05481166,-0.055122618,0.03956184,0.13085233,-0.04965491,-0.0394998,-0.0063333306,-0.01501565,0.017122721,-0.045669902,-0.013112042,-0.02200817,-0.016122626,-0.004199338,0.019835798,-0.007508874,-0.055412415,-0.010264896,0.02697715,-0.033633925,-0.051449403,0.015444254,-0.021000527,-0.076591045,0.06179285,-0.07963239,0.019765388} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 02:59:05.763302+00 2026-01-25 01:27:52.301641+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1222 google review_42 1 t 1225 Soho Club unknown i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night, please do better i was harassed by a drunk man in soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night, please do better 2 2024-01-30 18:34:31.336452+00 en v5.1 E4.01 {} V- I3 CR-N {} {"E4.01": "i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he ca"} {0.03424689,0.07740746,0.0068895738,-0.010477502,0.0819624,-0.041406043,0.026406324,-0.08605963,0.0066114645,-0.0918272,0.029481603,0.023438863,0.09584162,0.045247603,0.03715788,-0.020264743,0.0483823,0.043914564,-0.086128235,0.022884896,-0.0037854412,0.017628767,0.003072489,-0.030194158,-0.025293969,-0.017002802,0.020301113,-0.022623722,-0.03673206,-0.038290348,-0.06346435,-0.05943885,-0.02588666,-0.06669558,-0.040515084,-0.063030094,0.07019001,0.011763681,0.11765314,-0.013023955,0.05850341,-0.0021963955,0.063407294,0.022354338,-0.032940194,0.056568153,0.0058667236,-0.034147475,0.04466335,-0.1059788,0.055628087,0.060583435,0.051323958,0.034408506,-0.020785466,-0.017967883,0.10464899,0.07774471,-0.003444804,0.07069603,-0.026837323,-0.006064177,-0.039282687,0.057926483,-0.028429367,0.040750097,-0.05899821,0.022781182,0.13233766,0.095437564,0.011579417,-0.046226833,0.0446727,-0.012065616,-0.038444057,0.031672683,-0.015974142,-0.06322496,0.035455134,0.046382625,-0.043362368,-0.0031030648,-0.0423638,0.03128584,0.0026022089,-0.049673222,0.013612599,0.025028057,0.025478536,0.058185894,-0.050182864,0.036405195,0.01283798,-0.023361472,-0.003944358,-0.06459876,-0.068987824,-0.023655187,-0.036255,0.0593764,0.0027258676,0.035929356,-0.017088713,-0.04849144,0.06325227,0.008599788,0.010562946,-0.0047164587,-0.08648251,0.040546753,0.023048151,0.059587725,0.041186616,-0.08817845,0.04945632,0.0195616,9.127983e-05,0.027943742,0.0028097674,-0.043620918,0.058834516,0.08740213,0.01709345,0.05600064,-0.029940559,0.0006259734,0.046922497,-5.8215963e-34,0.035108183,-0.00590763,-0.10883403,-0.017033087,0.17296709,-0.03476036,-0.039628603,-0.021070527,0.060788084,0.041383784,0.113825984,-0.02099557,0.06515265,-0.11606443,-0.033304386,0.052021127,0.02197877,0.056900192,-0.04330382,-0.03827954,-0.025920115,-0.040297333,-0.01258823,0.06853363,-0.068649165,0.007735532,0.018390017,-0.014250986,0.091053635,0.00038409277,-0.05505709,0.09759838,0.09041931,0.04642124,0.053761724,0.048077494,-0.046487458,-0.00036020277,-0.052100223,-0.09396285,-0.038810246,0.06337938,0.032156065,-0.0377131,0.008583414,0.055131968,-0.11193848,-0.03550554,-0.054676265,-0.054704435,-0.059204105,0.019239094,-0.0033030333,0.017000288,-0.05988925,0.02296756,0.045181762,-0.017033515,0.034777805,0.01622156,0.047298975,0.071969986,0.019208174,-0.047955867,0.0039148647,-0.17717816,0.0021962102,-0.07048408,-0.05181889,-0.0858292,0.032217838,0.074472554,-0.020273075,0.0031284147,-0.05204922,-0.006037544,-0.045109425,-0.031494133,0.0025373625,-0.036622044,0.064565115,-0.060587578,-0.041259702,-0.002626401,0.03481491,0.016916582,0.048456352,-0.09203924,-0.078594685,0.042510543,-0.05228021,-0.060931407,0.048180375,0.00992783,-0.077530794,-2.0865407e-33,0.040308055,0.02048893,0.05313278,-0.05751401,-0.0057490976,-0.043101232,-0.045955464,0.02170067,-0.01530361,0.04222286,-0.016811488,0.036718547,0.055927556,0.010736938,0.08316004,-0.037453413,0.043194726,0.032077108,-0.12059607,0.00516223,-0.0039418633,-0.020571962,0.06688746,0.060300946,-0.029266132,-0.046539124,0.07221861,-0.0010199025,-0.059324067,-0.0401631,-0.003155962,0.05013449,-0.031823047,0.018599672,0.009123085,0.03563276,0.09542781,-0.04256336,-0.023243457,-0.10214704,0.011153531,0.055141896,-0.02629725,-0.00086376845,0.0576752,-0.029906081,-0.023398519,-0.08255599,-0.015832126,-0.024491118,-0.03587981,0.0363187,-0.014287089,0.03410567,-0.005000468,-0.09754126,0.053160325,-0.010588927,-0.017462466,-0.06189348,-0.11456559,0.026895,-0.104734175,0.06545861,0.0257079,-0.02012917,-0.09162071,0.00037880483,0.014182307,-0.06461484,0.054765902,-0.0010698462,-0.026751427,0.08837545,-0.010195671,-0.089720294,0.008444608,-0.045623545,-0.0845879,-0.00022906285,0.05425817,0.021325208,-0.021007327,-0.009573318,-0.009344671,-0.024029234,0.1583858,-0.07754401,-0.06583533,0.026130494,0.011106317,0.0028898718,0.013461634,0.03908218,0.053398725,-3.3262975e-08,-0.03326221,0.0026339618,0.024494398,0.008534061,0.081726655,-0.013263096,-0.012182725,-0.022118619,-0.04135339,0.0011530217,-0.041403767,0.0045916894,0.10521029,0.0001578522,-0.024915265,-0.04298989,0.034629613,-0.113616794,0.017131029,-0.021660699,-0.012328156,0.08265159,-0.082254186,0.046929106,-0.0055652573,0.063538216,-0.044711426,0.018625086,-0.0167947,0.044271305,-0.0076625952,0.009101565,-0.06900869,-0.052230958,-0.065213606,0.02055958,0.056541193,-0.046187695,0.07751385,-0.010157109,-0.04465346,-0.07690819,0.0705154,0.039569966,0.0431363,0.028371556,-0.056130353,-0.029814182,-0.009811047,-0.0022034368,0.018118203,0.009643458,0.04272466,0.006543365,-0.019333329,-0.052498292,-0.024206884,-0.020899521,-0.024648435,-0.026572742,0.06446021,-0.023297692,-0.106732674,-0.03967443} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:45:27.346866+00 2026-01-29 18:36:00.52249+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 290 google Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB 1 t 293 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. La entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. En general ha sido buena experiencia. el punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. la entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. en general ha sido buena experiencia. 5 2026-01-20 01:27:48.340859+00 es v5.1 J1.02 {} V- I2 CR-N {} {"A1.01": "Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi ", "J1.02": "El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico ", "R1.01": "En general ha sido buena experiencia."} {0.043944106,0.05845277,-0.041518662,-0.031032067,-0.04331405,-0.013208845,0.06349437,0.05313471,-0.019109102,0.010875786,0.11831184,0.016108235,0.0017168465,-0.0056521483,0.0104429275,0.020618457,0.020018194,-0.003982246,-0.038644142,0.014449637,0.10230974,-0.03971139,-0.044594068,0.08551827,-0.0984896,-0.0018196845,-0.09847426,0.0049800198,-0.090325795,-0.0900976,-0.052467875,0.04452041,0.053849395,-0.039146878,0.031238647,-0.011924865,0.059655916,-0.0069590514,-0.0008745767,-0.02453359,-0.09808966,-0.067998484,-0.050118916,-0.016172001,-0.008842118,-0.030896086,0.029281644,0.017565677,0.08011893,-0.022876471,-0.021588817,0.009167623,0.03289231,-0.027169839,-0.0056712492,-0.020577585,-0.041085053,0.032271028,0.08134917,0.02822257,-0.020016149,-0.0016907873,-0.028407997,0.040601086,-0.014544512,-0.06924516,-0.007091297,-0.08622213,-0.021419639,0.024735283,0.047769994,-0.07739371,0.013646318,-0.01755203,-0.023672117,0.03356373,0.008105578,0.03862526,-0.022946795,-0.09429361,0.037427824,-0.04099869,-0.029949008,-0.019395776,0.0013587151,0.024665227,-0.02823686,0.020337876,0.0038477357,0.06276449,-0.04328941,0.00977265,-0.042934272,-0.034071732,0.01983668,0.0003807179,-0.017273663,-0.03009585,0.036996458,-0.009291147,0.08783535,0.07175847,0.047494754,0.016124304,-0.0675094,0.08863657,0.0032068393,-0.10410583,-0.016580993,-0.009793076,-0.06068668,-0.008235269,0.031591557,-0.08118669,-0.106359445,-0.010836702,-0.06878911,-0.014841127,-0.083156504,-0.036538348,-0.039069545,-0.09670393,0.07252305,-0.009928704,0.008675169,-0.050168786,0.15090042,9.2663676e-33,-0.043685216,-0.030297989,5.847819e-05,0.0805878,0.024477495,0.006431786,-0.017528255,0.06707873,0.04778179,0.011693355,-0.07740185,0.07271734,0.0020609729,0.03176311,0.109007776,-0.014392207,0.0058258567,-0.03368925,-0.021568805,-0.04174158,-0.05144317,-0.042736836,-0.021404432,-0.027546639,0.082725905,0.084619634,0.0045698644,-0.038863212,0.013951841,0.054695714,0.019054942,0.07242915,-0.033971798,0.028252762,-0.03710709,-0.009541524,0.0081757065,0.037051544,-0.0693262,-0.062644824,-0.019932827,-0.0016287662,-0.05639909,-0.002294359,-0.058369797,-0.012839664,0.08057972,0.0043363157,0.074144274,0.024612999,-0.036803722,-0.01513463,-0.012888844,-0.1015686,-0.00041576946,0.018331286,0.025779836,0.03547935,-0.016780699,-0.00540922,-0.06981482,0.08752604,0.023207752,-0.039045673,0.022434838,-0.034598954,0.020606568,0.037548177,0.12108858,0.02915032,-0.035606023,-0.042720694,-0.09919976,0.002780144,0.049350657,0.025950596,-0.041619394,-0.06649657,-0.05141785,-0.011866404,-0.06365519,0.024302557,0.054380443,-0.0045574834,0.14320818,0.048368264,0.0001810388,0.070212685,-0.0028974111,0.08041228,-0.07104307,0.13694486,-0.023137724,0.015632488,0.097290695,-1.2238952e-32,0.033130288,0.05392412,-0.03003462,0.0012163406,-0.017665079,0.043370824,0.015343003,-0.009119224,-0.0077622947,-0.020189982,-0.13097881,-0.059660565,0.11072025,0.026633747,0.02698587,0.034714613,-0.10734777,-0.053836156,-0.13866358,-0.0071456768,-0.020933686,0.024090484,0.08115312,-0.019325987,-0.05049821,-0.0017740538,-0.061414197,0.03869028,-0.095769614,0.0028713036,0.017056046,0.002063836,0.014481474,0.12311982,-0.039862115,-0.016758094,0.08557349,0.059025683,-0.017569598,0.012240727,-0.023910616,0.07381626,0.06689437,-0.02999614,0.00062853383,-0.0543746,-0.036585294,-0.12101771,0.0038205325,-0.025012424,0.060375597,-0.07542215,-0.061685916,0.0150008425,0.119268455,0.020281717,0.040613312,-0.10176563,-0.06108279,-0.025761984,0.033898354,0.006009992,-0.037456885,-0.010384488,-0.010943703,-0.04466019,0.0130723575,-0.034720648,-0.05180159,-0.014827056,0.034585204,-0.027374307,-0.02416616,0.029249808,-0.07162002,0.010174158,0.02456439,0.037163883,-0.007912328,-0.0022041441,0.0068039508,-0.01584638,0.009986381,0.02421594,-0.09131516,-0.025921019,0.006790723,-0.015903953,0.019118398,0.03139514,0.029440068,0.07580276,0.016626945,-0.033616636,-0.0340081,-6.05858e-08,-0.050077748,-0.007711297,0.011334792,-0.004095918,-0.0071759787,0.004454669,-0.020159692,0.05967406,-0.07994139,-0.062415205,0.09137118,-0.019920034,-0.04535889,0.13810363,0.0048641823,0.004921609,0.05223512,0.06653884,-0.023063855,-0.03522537,0.0704122,-0.05277708,0.0037497056,0.085300066,0.022245465,-0.05132245,-0.04296022,-0.059350546,-0.0010165902,-0.042153567,-0.0489525,-0.02221561,0.0048610684,-0.06200341,-0.05004996,0.027540782,-0.012373076,0.034755405,-0.054934375,-0.005515975,0.09269041,-0.043828927,-0.112621926,-0.0035661126,-0.009318198,-0.049329333,-0.0607281,-0.009636691,-0.11720583,0.023563903,-0.055312775,-0.084098265,0.06467213,0.022090772,0.034690958,-0.017906412,-0.053210787,0.01282609,-0.0069575002,-0.0149401985,0.016616194,0.115745604,-0.052489292,-0.049547933} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:00:10.659988+00 2026-01-25 01:27:50.834957+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 345 google Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB 1 t 348 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100% súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100% 5 2026-01-18 01:27:48.341282+00 es v5.1 A1.01 {R1.01} V+ I3 CR-N {} {"A1.01": "Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo r"} {-0.03185386,-0.03487635,-0.075125374,-0.08808684,-0.05835298,0.018312687,0.06737827,-0.025054196,-0.04515526,0.0112397885,0.09998014,-0.00749271,0.0027952706,0.00391754,0.009400575,-0.01127082,0.03887337,0.042028185,-0.021744162,-0.08320023,0.04741771,-0.04259037,-0.015237606,0.10030651,-0.101396285,-0.020282628,-0.050894566,-0.009934676,-0.041136794,-0.137491,0.026913106,0.095535144,0.0042620683,-0.074726604,-0.08972896,0.0182623,0.049067855,-0.09435562,-0.021366471,0.06001537,-0.11378632,0.06503952,-0.012995461,-0.0035653568,0.036847517,-0.035317726,0.02761443,0.08484894,0.030707613,-0.0014088511,-0.0023260396,-0.049693882,-0.031600688,0.010525966,-0.025386162,0.08611846,-0.031248588,0.017433317,0.104513705,0.0012547126,0.04011725,0.035913356,-0.08657827,0.027027925,0.0064647915,-0.049589496,0.04699391,-0.020420237,-0.05706892,0.07326429,0.05936609,-0.020372735,0.11345406,-0.007583402,0.02913804,0.07363749,-0.032363445,-0.027964326,-0.029567145,-0.031217942,0.0006660613,0.01865689,0.026421513,-0.01331193,0.025218468,-0.05582882,-0.019823723,0.017167984,0.08545857,-0.043176945,0.042139415,0.075266995,-0.040396187,-0.008034217,-0.078254074,0.06855556,0.023769053,-0.034102585,0.03369706,0.04283049,0.053247593,0.016763661,0.048655003,-0.01873516,-0.015951432,0.006909197,0.03253141,0.06079944,0.036297157,0.077323414,-0.061232712,-0.011754275,0.03732074,-0.005925407,-0.026067682,0.0067193783,-0.031624686,-0.058219794,-0.053780347,-0.13736272,0.03515823,0.0663061,-0.024679346,-0.054802246,0.056961596,-0.033072397,0.06687593,9.659461e-33,-0.023268,0.062085155,-0.020970661,0.05131982,-0.049985494,-0.055844415,-0.057926815,0.031114338,-0.010294615,-0.055563744,-0.012785518,0.07146701,0.0031374122,0.07996773,-0.010359717,-0.010831355,-0.018965898,0.0014359695,0.0033600437,0.044158496,-0.08005069,-0.0024703222,0.016347455,0.035527516,0.0362836,0.030018874,0.08422588,0.027380023,-0.07583833,0.03629322,-0.021720348,0.04692292,0.0069443393,-0.03679088,-0.032237444,-0.023890587,0.048045807,0.050475605,-0.03332498,-0.027160874,0.062935345,0.0539063,-0.0790382,0.017260984,0.023661276,-0.03030372,0.0130234575,0.07542958,0.069433406,0.031661715,-0.07294219,-0.031880863,-0.06351927,-0.01466736,-0.08663549,0.024303695,-0.08050091,0.02046059,0.015732875,-0.059313238,0.037004855,0.008532048,0.02020678,-0.025761563,-0.075729884,-0.011728043,0.035858046,-0.00084622996,0.11789977,0.051135585,-0.07586762,-0.021454591,0.0057632886,0.058482014,0.034897894,0.0199959,0.027585557,0.018537473,0.002471871,0.0061259996,-0.042767912,-0.021035774,0.0024257135,0.0012737399,0.0475048,0.020888293,0.08557699,0.0014365684,-0.01747335,0.08152725,-0.010219341,0.09285119,0.10925401,-0.089931004,0.030244095,-9.193487e-33,-0.031397633,0.00070398906,0.034381967,0.06618703,-0.056560308,0.026362648,-0.042891134,-0.021248657,0.040578518,-0.08820824,-0.0756174,-0.12232159,0.08086577,-0.04523729,-0.0596414,0.032215018,-0.030010331,-0.05912515,-0.07053324,0.02570947,0.044728387,0.07532387,0.035805073,-0.021923756,-0.021690696,-0.020224806,-0.042150658,0.03803604,0.021979228,0.009799638,0.054874342,-0.078331955,-0.00961675,-0.0029727614,-0.07994075,0.028363138,0.030508993,0.061823636,0.009412479,0.06978067,-0.020987771,0.06628035,-0.08128443,-0.03197514,0.0022100739,-0.005495031,0.02951141,-0.088249676,-0.03649692,-0.051797867,0.08200682,-0.05370705,-0.07336632,-0.02380074,0.029385705,0.02772638,-0.042569265,-0.10883031,-0.039834157,0.007127962,0.017844591,0.016926859,-0.021055205,-0.064402096,0.13723078,0.0073581473,-0.001204443,0.028501084,0.08953488,0.08326199,0.08797529,0.037833255,-0.047328837,-0.026855122,-0.027670352,-0.057802938,-0.08644737,0.002121292,-0.09684771,0.036856953,-0.013452985,-0.0038402441,0.037741143,-0.031511616,0.009133739,-0.0033070885,-0.07768236,-0.023092117,0.02943667,0.032552317,-0.014603123,-0.032233402,-0.062971205,-0.01882967,0.011281324,-3.912151e-08,-0.037143163,0.03016919,-0.0060209758,0.060086567,0.028547386,-0.014775204,-0.008302784,-0.029710358,-0.012712713,0.01931158,0.03473278,-0.06633261,-0.027893348,0.05310644,-0.034324065,0.002965762,0.03756148,0.12784345,-0.049047478,-0.06102002,0.09638079,-0.0031510277,0.0243982,0.017039735,-0.00902536,0.034923475,-0.0076302923,0.03082304,-0.051737066,-0.04666392,-0.06094865,-0.05493019,0.01736532,-0.14824626,0.043938275,-0.004946252,0.042046923,0.042287476,0.022263715,-0.014057007,0.05549423,0.0358578,-0.09954035,0.054231178,-0.05459015,-0.16469555,-0.002669105,0.011022047,0.009305864,0.02493683,-0.0006573131,-0.041634478,0.011540424,-0.014324995,0.014484089,-0.00035079403,0.0027924792,0.0070346296,-0.050208695,-0.0033396017,0.11701846,0.07188132,0.021778254,-0.11770768} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:00:53.618548+00 2026-01-25 01:27:51.03294+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 617 google Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB 1 t 620 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles top,\nSuper Preis! alles top, super preis! 5 2026-01-18 01:27:48.342903+00 af v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Alles top, Super Preis!"} {-0.050236415,-0.01748871,0.013349083,-0.09452127,-0.004772607,0.047453612,0.03401587,0.101997584,0.0020068444,0.10756025,-0.06283342,-0.00867617,0.029603617,-0.027070086,-0.0558205,-0.028318163,0.058832716,-0.028608883,-0.014660688,-0.0749121,0.031684685,-0.03645646,-0.03105473,0.03498915,-0.04253941,0.016145682,-0.08187336,0.049096223,-0.014984622,-0.10636785,0.020870809,0.04733865,0.024637178,0.069628045,-0.038494274,0.015090226,0.019033661,-0.071383305,0.061846577,0.03844287,-0.053431578,-0.007807772,-0.09208512,-0.016432771,-0.016474158,0.08517815,0.008491662,-0.012445757,0.014821003,-0.029342733,-0.007904736,-0.041815657,0.07366338,0.009902494,0.052291583,0.11062109,-0.010785838,-0.17557172,0.010738427,-0.09280189,-0.08504188,0.043291576,-0.04793361,0.061716903,0.06842695,0.039021824,-0.038440526,0.068008564,-0.09048621,0.09449348,0.077396266,0.016109146,0.06291367,0.066896304,0.046868335,0.07491102,0.012327604,-0.038159996,-0.002111082,0.005396282,0.031562652,-0.04062362,0.0010304669,-0.028729597,0.010001084,0.007593477,0.017975537,-0.05090555,0.041049857,-0.03059437,-0.05563125,-0.044353753,-0.059479073,0.047583535,-0.08050996,0.011585821,-0.007664488,-0.09550517,-0.04633407,0.05008163,0.07127292,-0.015881093,0.09835967,0.021860244,0.014262728,-0.024897277,0.09047947,0.08469764,-0.00093321345,-0.029446485,-0.009512719,-0.07186804,0.03227416,0.018258832,-0.046160404,-0.030409733,0.033791,-0.022714375,-0.029129855,-0.123139605,0.068602726,0.05168483,0.015849078,0.028093956,0.023300065,-0.012364091,0.023476703,-2.4538048e-33,-0.009747519,0.0009026788,0.06767742,0.0032841528,-0.053027824,0.01786726,-0.043870963,-0.084643535,-0.04383206,0.07167299,-0.07549226,0.031227078,-0.120914474,-0.0048792087,0.0004240976,0.030094894,0.04671379,-0.07143447,-0.021654489,-0.020718453,-0.032731205,0.019053916,-0.006435069,-0.021322448,-0.030182509,0.026536036,0.037092064,-0.092343576,-0.051280882,0.016912142,-0.0015431287,-0.009522045,-0.0074719074,0.067720674,-0.058167525,0.027126892,-0.04282636,-0.0032798059,0.0015130137,0.01203263,0.019562265,0.018249584,0.03329357,-0.025236014,-0.07621809,0.008632851,-0.0774833,0.034684666,0.052902497,-0.0012490677,-0.062318865,-0.06714577,-0.018122606,0.0043623964,-0.021392725,0.050850794,0.027879175,0.010014154,0.024279477,0.002492034,0.027910613,-0.08279062,-0.04810673,-0.012126598,-0.058385838,-0.0439516,0.036629125,-0.009676171,0.038316693,0.05036974,-0.05485756,0.019487377,0.08011667,0.021566432,0.012301516,0.10483084,0.022845928,-0.008603633,0.03980293,0.049878284,-0.028714962,0.06359255,0.015537961,-0.037870567,0.08542086,0.0035450866,-0.006574183,-0.027524624,0.01924272,0.06333685,-0.032554347,-0.05660783,0.08247618,-0.059472658,-0.109031,1.784628e-33,0.044304017,-0.0026749112,0.10195117,0.032409966,0.0644702,0.041105356,-0.026688168,0.032305725,-0.048429064,-0.00726895,0.087789826,0.017401775,0.10972204,-0.057851758,0.030322326,0.07122944,0.066950664,-0.037323575,-0.0035740356,-0.058402415,0.0061392435,-0.041918952,0.011121596,0.03972956,-0.021357868,-0.019631302,0.028754074,0.12778823,-0.0410026,0.029773513,-0.01806289,-0.0014615114,-0.01055822,0.08233193,-0.031090535,0.035019223,-0.030800615,0.028146738,0.009350736,0.016381249,-0.05396994,-0.03684051,-0.020791037,0.07824575,-0.04484135,5.7925132e-05,-0.13266493,-0.0018014231,-0.011493866,0.015353098,-0.108638324,0.019739112,-0.00042842692,-0.025099669,0.05715809,0.0032186974,0.027974505,-0.040364105,-0.04593242,-0.06806492,0.09763361,0.019981263,0.012046722,0.010807561,0.056187294,-0.042169992,-0.06574925,-0.0017731687,-0.067363754,-0.021018839,-0.016169744,-0.00782371,-0.1515764,-0.032847453,-0.0043853326,0.019523479,0.0028812583,0.058217105,0.095847845,0.015282944,-0.1544967,0.051349077,-0.069006994,0.021067746,0.0191642,0.11274783,0.07462969,-0.047665227,0.028041061,-0.07243564,-0.008121163,0.058746338,0.04014361,-0.04870956,-0.021608576,-1.7795484e-08,-0.0074776574,0.003982806,-0.016604953,0.029870544,-0.0048275418,-0.076355524,-0.0033426466,-0.00082288194,0.010426162,0.024863815,0.014123538,0.013716286,-0.034069993,-0.050725814,0.041202784,0.07638639,-0.052075386,0.10189746,-0.031976376,-0.05594713,-0.020964697,0.049375184,0.027117733,-0.09453671,0.05208318,-0.047472205,0.015063447,-0.019311616,0.059028752,0.023175396,0.030118087,-0.022996604,-0.034350436,-0.054408662,0.021615025,0.042358693,-0.04586434,0.081786774,-0.010551566,-0.03980609,0.027565217,-0.03896139,0.0015968651,0.004709272,-0.055904433,0.028485421,0.020585213,0.037336096,0.011536842,-0.051923294,-0.07012016,0.0016087466,0.07435025,0.061494328,0.04595208,0.04869767,0.061566923,0.032674108,-0.056518532,0.050052762,0.14686204,-0.02453929,-0.020472517,0.07645009} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:00:47.892167+00 2026-01-25 01:27:52.069322+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 676 google Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB 1 t 679 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan. Recomiendo no alquiler a través de Do You Spain pues las condiciones contractuales no están claras. Por lo demás personal amable y buen servicio vehículo en perfecto estado. situado fuera del aeropuerto , cerca eso si, y te trasladan. recomiendo no alquiler a través de do you spain pues las condiciones contractuales no están claras. por lo demás personal amable y buen servicio 4 2026-01-18 01:27:48.343194+00 es v5.1 O1.01 {} V+ I3 CR-N {} {"A1.01": "Por lo demás personal amable y buen servicio.", "O1.01": "Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan.", "P1.02": "Recomiendo no alquiler a través de Do You Spain pues las condiciones contractuales no están claras."} {0.035422303,0.067522585,0.00845478,-0.016120056,-0.068768695,-0.062156882,0.06584506,-0.0022206274,-0.023124158,0.007130841,0.079623275,-0.003083455,-0.002838828,-0.0066393185,-0.010374201,0.015010772,-0.0104286205,-0.018041909,-0.025016814,0.058244776,0.03987046,-0.012353603,-0.08866856,0.09474528,-0.080561645,-0.046917938,-0.019484986,0.02695105,-0.092200495,-0.07135413,-0.057495065,0.05658826,0.04806666,0.0048410706,0.0019631253,-0.05302049,0.010838185,-0.03593828,-0.10468483,-0.0028920271,-0.15602186,-0.058761448,-0.015165301,0.029023282,-0.050371278,-0.0394677,0.09533195,0.09853667,0.08455337,-0.009485362,-0.044338215,-0.01306771,-0.0067691347,-0.0036531116,-0.023242395,0.06530673,-0.022342883,-0.0013996246,0.047540665,0.025494432,0.058847018,0.07686922,-0.05672557,0.03382945,0.07230408,-0.031575408,0.020750986,0.034812924,-0.07184064,0.041330796,0.066881515,-0.10711838,0.004245015,0.0563838,-0.008667928,0.05159053,3.061052e-05,-0.026285008,0.026336526,-0.008710202,-0.0027224398,-0.05551908,-0.061494086,-0.04449321,0.05227985,-0.048959345,-0.02061196,-0.0012929145,0.06580653,0.037047554,-0.01242474,0.046587016,0.007954052,-0.06692713,0.011935379,0.047425114,0.026924115,0.0019913248,0.026167449,-0.007077191,0.07790424,0.010558873,0.04455677,0.061836958,-0.07008688,0.08503308,0.038784742,-0.05889027,-0.0037545366,0.005149798,-0.07058023,0.029834894,-0.002072569,-0.089407094,-0.08907705,0.022495048,-0.053643268,-0.06756207,-0.04673881,-0.11136841,0.0037775892,0.021728655,-0.0051782327,0.0046536205,-0.019482888,-0.09683511,0.101978734,1.1128602e-32,-0.07071603,-0.028128317,-0.011356399,0.09897573,0.06825831,0.05087451,-0.02315923,-0.0004965082,-0.02578751,0.020861145,-0.04952393,0.011614873,-0.0029559925,0.010550107,0.096171334,-0.008051593,0.016866455,-0.013039391,0.023736604,0.028820533,-0.05398404,-0.02820942,-0.0199254,-0.025271311,0.014180225,0.0009459576,-0.009816078,-0.019672083,-0.030968484,0.050954256,0.023480184,0.0804701,0.018950941,-0.025444193,-0.03022608,-0.025210822,-0.0036460492,0.04545879,-0.06364847,-0.030914279,0.014077122,-0.010768352,-0.06782377,0.018022303,-0.0459963,-0.019807609,0.049900997,0.050401513,0.028975664,0.05003104,-0.057699975,-0.02864763,-0.08310436,-0.09093494,-0.0074235196,0.03847796,0.0014190694,0.049818125,-0.037627432,-0.06976727,-0.06056054,0.029707002,0.0022020289,-0.05601613,-0.0218088,-0.012806234,0.022673097,0.072472796,0.09326736,0.016615737,-0.023664594,0.0021456797,-0.059577476,0.07273221,0.059104703,-0.033871755,-0.024688527,-0.0018010293,-0.030962393,0.0176542,-0.038474865,0.064107366,0.024507701,0.044472966,0.08313911,0.029120319,0.07124615,0.072290845,0.0069584767,0.13059956,-0.05462421,0.05659465,0.035304546,0.02443852,0.106383055,-1.2769472e-32,0.011083178,-0.001306462,0.03864148,0.023804618,-0.0002628629,0.05027652,-0.030453924,-0.029624188,-0.027129935,-0.0403421,-0.115390345,-0.089582324,0.07616681,-0.009674621,0.01906126,0.055885788,-0.08059006,-0.13373145,-0.13362509,-0.015084535,0.042258028,-0.044714954,0.07303217,0.008211752,-0.0417351,-0.07489664,-0.043766834,0.067303,-0.054058466,-0.012259912,-0.014801508,0.0075040767,-0.030950634,0.067623064,-0.02560846,0.026178787,0.027704729,0.055712495,0.008721947,0.04049495,-0.027194893,0.03386913,-0.0011280108,0.02760581,-0.019126603,-0.029352799,0.03230793,-0.20012264,0.07289013,-0.10903604,0.11433654,-0.06821284,-0.032681115,0.01730826,0.122011885,0.008661386,0.058813017,-0.06680228,-0.022595767,-0.043505248,0.021864247,0.011825028,-0.0545032,-0.02308995,0.047633223,0.00018791354,-0.04084706,-0.009311134,-0.026106097,-0.01421847,0.015049129,-0.03864894,-0.057111617,0.02967532,-0.012036545,-0.053647213,0.017462213,0.02232863,-0.0017194595,0.01129465,0.04893152,-0.035256814,0.04615332,-0.030854657,0.006886037,-0.08615774,-0.012192535,-0.025984464,-0.012774861,0.08001322,0.03587861,0.049220957,-0.058850706,-0.09663677,0.02556199,-5.104813e-08,-0.027984813,-0.029416937,0.01938402,0.002866978,-0.00074972276,-0.017311122,0.059471633,0.013010816,0.0006922482,0.024571985,0.032255128,-0.04521796,0.0042130784,0.072496325,-0.026946526,0.005371167,-0.017167578,0.06205815,-0.022182524,0.0007033376,0.036610194,0.036919817,-0.08657969,0.027478129,0.009714066,-0.001629693,-0.017886052,-0.049594276,0.046129055,0.046968892,-0.05686567,-0.0059242453,0.0029666042,-0.08732528,-0.09100631,-0.0452596,-0.02890352,0.019037932,-0.087950766,-0.074099295,0.076951064,0.06440129,-0.096201375,-0.013979107,0.009494155,-0.08993322,-0.08466717,0.032639768,-0.078896396,0.036719784,-0.0021853163,-0.04977547,0.120418146,0.048502862,-0.00524391,-0.04548266,0.023728488,0.037839465,-0.033000313,0.015135289,0.023118554,0.11007298,-0.035243638,-0.06317641} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:00:34.022129+00 2026-01-25 01:27:52.350194+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1223 google review_43 1 t 1226 Soho Club unknown Some very nice people. Several big rooms, and good prices on drinks. A seperate living room with fashion tv show on whole wall. Friendly and safe. Loved it. some very nice people. several big rooms, and good prices on drinks. a seperate living room with fashion tv show on whole wall. friendly and safe. loved it. 5 2026-01-29 18:34:31.336452+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"E1.03": "A seperate living room with fashion tv show on whole wall.", "P1.01": "Some very nice people. Friendly and safe.", "V1.01": "Several big rooms, and good prices on drinks."} {0.012513149,-0.010512114,0.0015559591,0.076563805,-0.056448773,0.01684727,0.017231634,-0.048344415,-0.060556985,-0.022404725,0.059991278,0.008790198,0.071445815,-0.03538342,0.0031727066,-0.044319525,0.055987794,-0.11780336,0.01805123,-0.034987085,-0.07743927,-0.025167862,0.042185895,0.052856784,-0.012007065,0.020792028,-0.018293846,0.062487837,0.0578824,-0.008770007,0.06397818,0.08569992,0.03044526,0.011054177,0.014024752,0.06935921,0.07728983,-0.041241888,0.0052578906,0.018802406,-0.027833747,0.0115624815,0.026470222,0.0011807011,0.004526139,-0.0655801,0.0012958978,-0.014814999,0.072053164,0.017566677,0.05358398,0.08493376,-0.0023099824,0.0074718227,0.03969326,0.03145567,-0.018623255,-0.052064262,0.03200282,-0.112034746,0.055571314,-0.04915623,0.0015079506,0.01956714,0.026215168,-0.02350251,-0.0981845,0.063777655,0.0499815,-0.14266142,-0.014893741,-0.016335387,0.06934058,0.029860726,-0.013189395,-0.08881873,0.028617302,-0.103698105,-0.050064914,0.037685845,0.0334392,-0.07912335,-0.061218318,0.055901907,-0.034512654,-0.045321934,-0.0038585123,-0.06474178,-0.02707499,0.017184127,-0.015999166,0.12146692,-0.032189336,-0.058651946,0.021826457,0.010627679,-0.058757365,0.017675934,-0.015500727,0.07863551,-0.0035168,0.08312326,0.08654085,0.016467348,-0.040121943,-0.055965878,0.037618447,0.0863438,-0.03598099,-0.019477192,-0.07625756,0.0317561,-0.045557927,-0.0055373977,0.06875539,-0.022839466,0.09408711,-0.027432496,0.037123922,-0.086283565,0.09074773,0.045720153,0.008688136,0.029378735,-0.051448744,0.033469975,-0.0068587335,-2.224554e-34,-0.014882884,0.012920903,-0.014782714,0.024602814,0.02751095,0.06255431,-0.09240204,0.072185785,-0.035474394,0.053346712,0.06551771,-0.04279238,-0.07708269,0.03722221,-0.0016203311,-0.022117514,-0.029006433,-0.015544917,-0.12109248,0.047234308,-0.0007082546,0.067378744,-0.044895872,0.07267199,-0.066230126,0.03128779,0.054536406,0.066568606,0.07972891,0.0023953419,-0.017064512,0.03303144,-0.0032676666,-0.029386848,-0.035498977,-0.005182709,-0.053174026,-0.045554582,-0.0057428367,0.034571875,0.035339624,0.057580456,0.009539359,0.020340113,0.01132442,0.13093835,0.0015700898,-0.017457092,0.0036537878,0.018228866,-0.07489324,-0.0075216084,-0.1296015,0.08528763,-0.04606752,-0.058879472,-0.045088746,-0.021924369,0.07862753,-0.05407565,0.0014974022,0.09727758,0.010200519,-0.043524608,-0.007573684,-0.026084166,0.042478126,0.07211121,0.067398965,0.029120432,-0.030877644,0.05878136,0.0012147977,-0.06662514,-0.016597962,0.07803887,-0.10631612,0.030918296,0.006593762,0.04548435,0.07849966,0.02749014,0.11505361,0.06449669,0.024580935,0.013118352,-0.0074577425,-0.06358958,-0.07916861,-0.056373682,0.0042711855,-0.009904303,0.0668878,0.003698921,-0.060390595,-1.7730817e-33,0.10890069,-0.009019338,-0.023041703,-0.05835675,0.010498093,-0.0055348407,-0.08005668,0.011390343,0.034513034,0.05096021,-0.077397086,0.013069448,0.09178221,0.005081914,0.0055384,-0.0070166057,0.111451484,-0.06641711,-0.032298904,-0.010773943,0.013492463,0.038606327,-0.075714916,0.0008440332,-0.023137378,0.065584466,-0.07013588,0.003061376,-0.07219788,0.012508403,-0.038092934,0.013020675,0.0031909687,-0.0028046581,0.045092538,0.057749517,-0.017833551,0.0014748732,-0.036460817,-0.03567674,0.052835286,-0.02551111,-0.059922576,0.051408708,0.08186827,0.0064377836,-0.075054735,-0.0973334,-0.07193872,-0.06878269,-0.020251153,0.022679852,-0.04432495,-0.09006126,-0.0141879665,-0.03563361,0.0105395075,0.038402174,0.07938637,-0.00971025,-0.11901159,0.012558609,-0.04045221,0.06983732,-0.026047364,-0.04749898,-0.031466566,-0.056708094,-0.034782942,-0.024973063,0.015051106,-0.021459343,-0.057878222,0.053305186,-0.05484302,-0.02760118,0.0738172,-0.020892788,0.015936771,0.06989284,-0.0018694814,0.021900438,-0.019942226,-0.03418928,0.030357383,-0.007960069,0.005660604,0.0017619176,-0.018285368,0.04096228,-0.009320819,0.029584244,-0.09910781,-0.10455768,-0.01841618,-2.934011e-08,-0.027039133,0.006288239,-0.0049824635,0.06477841,-0.055294346,-0.15575367,0.055570915,0.064460665,0.026846454,0.09134551,-0.0122873075,0.044026107,-0.005821049,-0.034121066,-0.0075848512,-0.005646555,0.010172385,0.060714025,-0.010838254,0.013357197,0.10119074,-0.0072362856,0.013265995,0.0851489,-0.001573273,-0.04105945,-0.0062535563,-0.086335436,0.018085906,-0.000108717126,-0.045281004,0.021165162,-0.07909372,0.0017765969,0.022038959,-0.0070323166,-0.010958028,-0.10755436,0.042798176,0.0063309735,0.0030824917,-0.096412286,-0.073886,-0.030708006,0.0559422,-0.014594506,0.013177089,-0.05091951,-0.033169784,0.02145401,-0.03622001,0.05495101,-0.037533667,0.013748342,-0.04492742,-0.0944927,-0.03898778,0.020058647,0.040713105,-0.05716339,0.020599997,-0.011627398,-0.09679607,0.021033559} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:45:45.873815+00 2026-01-29 18:36:00.524584+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 227 google Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB 1 t 230 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the car 😀 everything went smoothly,no issues, nothing to improve, very happy i chose this company to hire the car 😀 5 2026-01-18 01:27:48.340509+00 en v5.1 J1.01 {} V+ I3 CR-N {} {"J1.01": "Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the "} {-0.04379078,0.032815646,0.059927784,-0.0016353247,-0.056392416,-0.05900784,-0.046915047,0.0021000665,-0.07616783,-0.07831537,0.05001871,0.094065376,0.021553185,0.0022435314,-0.059332695,0.042237256,0.020358557,-0.041644562,-0.06607829,-0.02763957,-0.109812014,-0.06991893,-0.014232813,-0.009671671,-0.06367183,0.026625734,-0.06447197,0.08111938,0.046742458,-0.088395014,-0.048743032,0.036695153,0.072970755,-0.05322218,0.061283607,0.008115759,-0.0018807475,-0.113607995,-0.036886536,-0.04731854,0.039887905,-0.049144223,-0.02015403,-0.0019315691,0.01479396,-0.005396342,0.11217613,0.011940702,0.042609803,-0.026535932,-0.04442004,-0.051116012,0.058926158,-0.116190925,-0.07300299,0.10006168,-0.022148037,0.040922064,-0.017074125,-0.08894664,0.0984986,-0.04686058,-0.034316637,0.07225266,0.05970095,-0.053361755,-0.05972362,-0.113760315,0.00077672204,0.0624975,-0.013679593,-0.011951302,-0.017016381,-0.009125761,-0.025026957,0.011099588,0.033474114,0.006664402,0.05511584,-0.048640475,0.029243747,-0.025429005,-0.053559072,-0.0010994917,0.004280831,-0.06777696,0.06905955,0.020698546,0.015680376,0.032775477,0.09250806,0.07475014,0.0035588662,-0.0536939,-0.014225827,0.053400464,0.028356798,-0.013566797,-0.0073829363,0.045548216,0.04088344,0.09283484,0.011901438,-0.043428406,-0.090712324,0.06607586,0.008820371,0.091725364,-0.04373599,-0.00076729106,0.028577581,0.002150279,0.04375532,-0.030487513,-0.012093702,0.03393716,-0.08474758,0.03671992,-0.0009665257,0.010745822,0.023767866,-0.012139996,-0.033163466,0.0055240933,-0.05785919,0.023387162,0.05342552,-3.0646128e-33,0.016427929,0.017412163,-0.027050087,0.09309701,0.031341515,0.03623184,-0.0036952598,0.073199354,-0.064679496,0.053310543,0.0034929449,0.006501484,-0.017143413,-0.057066623,-0.0057761255,-0.0014879373,-0.11724512,0.026353244,-0.08455402,0.09135599,-0.006858541,-0.06579365,-0.044619244,0.016956575,0.10346065,0.059047658,0.03488318,0.0387387,0.02572426,0.024842715,-0.06680175,0.039863423,0.026618272,-0.009315265,-0.00027216616,0.026330763,-0.10399687,-0.03755794,-0.025639009,-0.003812048,0.0058950023,0.020842308,-0.024979217,0.0152201,-0.024260134,0.022311745,-0.018649679,-0.008084151,-0.022528257,0.043525822,-0.117805965,-0.0025556474,-0.013089674,0.047245346,-0.038849976,0.07240015,0.007876816,0.015757745,-0.065096095,0.03134568,0.040779166,0.055098023,-0.04357807,-0.1325786,-0.014979361,-0.0058033797,-0.016951902,-0.024317922,0.05960866,0.010561185,0.023507474,0.03439901,0.023441967,0.0082972115,0.020401763,0.048617408,-0.078053705,-0.02476285,-0.022211947,-0.01246814,0.08800487,0.063258775,0.039764006,-0.056978125,0.105415806,-0.008679122,0.017691633,-0.06889222,-0.01612549,0.1485108,-0.016538898,0.082402915,0.07435706,0.026186297,0.03965448,7.024677e-34,0.008016212,0.04782402,0.0052767503,0.017485684,-0.03742117,0.06261504,-0.05613491,0.05884519,0.07008459,0.082775384,0.022860559,0.019557403,-0.015617518,-0.029950298,-0.05530761,-0.001676369,0.10152825,-0.09979508,0.00043272518,-0.040762275,0.02159658,0.08145364,-0.024662685,0.049008273,-0.028452452,0.009612483,-0.03874118,-0.005897539,-0.0029441162,-0.012153216,-0.009132564,-0.0015795197,-0.14851144,0.051647596,0.049716562,-0.005403364,-0.019697536,-0.0010654795,0.028456228,-0.032538213,0.009257056,-0.055829544,-0.02671896,0.015936593,0.030372005,-0.08246553,0.077431,-0.12410692,-0.021251183,0.052913092,0.024843847,-0.021860901,-0.03641923,0.024190767,0.02247489,-0.013866165,0.12287176,-0.052784402,-0.024545798,0.066586405,-0.021412198,0.038030446,0.06639513,-0.07196898,0.02596811,-0.12541407,0.050966393,-0.09116786,0.043434884,-0.053933065,-0.025423424,-0.014957804,-0.016465647,0.042897496,0.0013471914,-0.030952388,0.050928086,-0.07663354,-0.055519316,-0.018502723,0.001480262,0.034091886,0.057271995,0.009776291,0.005419931,0.073097095,-0.0049012746,-0.041658156,0.012555332,0.06729259,0.0098599475,0.059946075,-0.01867661,-0.046580426,-0.051564705,-2.2176867e-08,-0.008536356,0.0037269883,-0.010886913,-0.0045573222,0.013030076,-0.09981431,0.0012584006,0.0525259,-0.041617166,-0.03676719,-0.017797785,-0.011932622,-0.04394747,0.08849602,0.016323408,-0.024913002,0.084510386,0.15392037,-0.045536872,-0.07868385,-0.004560735,0.09909026,-0.054361973,0.060412757,0.0034713706,-0.059005197,0.060588405,0.032003786,-0.045150403,-0.092595436,-0.030611373,0.023214951,0.04115055,0.000539409,-0.031224228,-0.071307056,0.013567857,0.014135867,0.019276658,-0.05571368,0.010661646,0.09142368,0.011419809,0.0048040203,-0.04321407,-9.957557e-06,-0.023569617,-0.034534007,-0.06806043,-0.063620456,0.022130128,-0.012178045,-0.027589107,0.084054604,0.03951712,-0.105941094,-0.04169846,-0.040834974,0.0138203185,0.00045436976,-0.036083948,0.012857012,-0.025202192,0.04237207} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:46:12.744767+00 2026-01-25 01:27:50.126371+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1454 google ChZDSUhNMG9nS0VJQ0FnSURPOUlEVkxnEAE 1 t 1457 Go Karts Mar Menor unknown We had a nice time together with friends. Nice variety of karts for different skills. Not expensive, lot of fun. we had a nice time together with friends. nice variety of karts for different skills. not expensive, lot of fun. 4 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {O3.02} V+ I2 CR-N {} {"V4.01": "We had a nice time together with friends. Nice variety of karts for different skills. Not expensive,"} {-0.041139103,0.071507186,0.09008562,0.0988633,-0.11421345,0.0003720212,-0.008355864,-0.014641896,0.013804431,0.0028567181,0.019768836,0.015352854,-0.01617713,0.010446635,0.06460453,-0.058325455,0.090563156,-0.08120379,-0.016460694,-0.06342908,-0.08034018,-0.050594162,0.036307935,0.0022007849,-0.05062178,0.0041590794,-0.0028866765,0.057653982,0.040854014,-0.003192618,-0.07501504,0.066773586,-0.0048614517,-0.022265458,-0.056195866,0.012937985,0.043473274,-0.10084132,-0.064741954,-0.0073810853,-0.0014792895,0.022458723,0.05206288,0.09102057,-0.07062677,0.050888978,-0.020358577,-0.03011134,-0.036366485,0.10255445,0.02041565,-0.04735092,0.025537869,-0.08222702,0.030093402,0.05111407,-0.100722544,0.0013736509,0.06439352,-0.035256144,-0.04964263,0.042259715,-0.040702425,0.033825934,-0.04935603,-0.090858765,-0.04651311,0.05962024,0.036819708,-0.026785627,-0.020395469,0.02857097,0.016943213,0.022300947,-0.018738765,0.015339237,0.00974173,-0.051237207,-0.08579275,0.015641902,0.026025893,0.0123664,-0.03232484,-0.028146321,-0.042468734,-0.09598711,0.06337355,0.04401397,0.010494726,-0.022256697,0.046336688,0.04930579,-0.048307087,-0.050240587,-0.010092938,0.030029962,-0.035693,0.08731305,0.027843969,0.04597629,0.046516914,0.079454966,0.058324244,0.052901078,-0.017668186,0.04956724,-0.06342711,0.019354433,0.05839974,0.03142033,-0.050795376,0.013319104,-0.03333902,-0.031413596,0.013407438,0.011579437,-0.015374179,0.027936468,0.027029313,0.019201754,0.009408547,-0.02124338,7.55376e-05,0.030312553,-0.04255519,-0.06819477,0.046232283,-1.7167006e-33,0.006261396,-0.008298912,-0.011975964,0.05744059,0.048703507,-0.072533876,-0.0027648602,-0.13192084,-0.12547988,0.025780374,-0.004924318,0.09990477,-0.0025556046,0.029799473,0.118138134,-0.0026062094,-0.025821846,-0.006081383,-0.050435834,0.010980371,0.0013606364,-0.047059476,0.0012803786,0.044693172,0.016252697,0.009441577,0.063277304,-0.00086934294,0.046946593,-0.04318359,-0.039720573,0.056381635,-0.020675844,-0.010284046,-0.010260259,0.02084959,-0.009480938,-0.08116327,-0.054556172,0.07079376,0.09384204,-0.031133479,-0.0052109985,-0.041757025,-0.045546442,-0.023792787,0.010457924,0.05936221,-0.02217229,-0.08200725,-0.120397344,-0.00015157243,0.0034065484,0.0060326005,-0.054910935,0.00785334,0.07608219,-0.017874433,-0.06415079,-0.016295128,0.03962285,-0.051773358,0.017792858,-0.10564827,-0.10748421,-0.013226049,0.02482209,-0.005401013,0.063397944,-0.035770066,-0.040957954,0.09858178,-0.020772733,-0.08351587,0.05934029,0.055869218,-0.038140144,-0.009521223,-0.02498862,0.022585934,0.019795137,0.0067555285,-0.067181975,0.03912834,-0.0011943138,0.018150153,-0.056829892,-0.0735621,-0.025108408,0.040501315,-0.054401923,0.028641306,0.0058937073,0.019603679,0.070164576,-5.952229e-34,0.07162115,0.09039414,0.079366185,0.086875334,0.07949594,-0.013917375,-0.02816075,0.028152125,0.038764674,0.08950483,0.019935276,0.0450016,0.04924029,-0.0013183365,0.015589947,-0.0010777647,0.03777726,0.004190576,0.09386628,-0.09395911,0.0010551525,0.08586412,-0.010588655,-0.05268085,-0.05104647,0.05217221,-0.042205606,-0.040204167,-0.11855126,0.04066541,0.011629914,-0.050457325,-0.030484086,0.0015515364,0.01436686,0.059916057,-0.0013918688,-0.014201715,-0.040739466,-0.025360188,-0.0029799778,-0.004356803,-0.01615667,0.018548906,0.01348076,-0.009949392,0.058450837,-0.035514012,0.05782596,-0.08779,0.0663303,0.06795092,-0.058671635,-0.107589275,-0.0045019626,-0.08768731,0.05893624,0.01965536,0.018767912,-0.03236276,-0.09699092,0.028885115,-0.028292298,0.048648175,0.007245915,0.012420062,0.0147333415,-0.0749807,-0.091673665,-0.031107016,-0.12922819,0.08067276,-0.015115343,0.06871729,0.018836554,-0.049349103,-0.018079158,-0.03489736,0.058955006,0.050081033,0.035248347,0.026446085,-0.008250368,0.01056212,0.011221938,0.07795877,-0.09143894,0.016858468,0.031500738,-0.0061298613,0.099556215,0.038499553,0.004193607,0.016546186,-0.007773386,-2.5604567e-08,-0.0055953306,0.089737274,-0.13645054,0.024036279,-0.004517167,0.02356239,0.043329157,0.031498436,-0.014923055,0.05749599,-0.05071433,0.020736223,0.01114419,0.026951618,0.039609384,-0.02448381,0.031599972,0.114145,0.01420799,0.04342869,0.080399,0.022936072,-0.041715268,0.06829759,-0.08594322,-0.025554214,0.08012696,0.05379951,0.042862598,-0.0068109436,-0.03558329,0.0293245,-0.048728824,0.024667911,-0.0012422074,-0.038695797,-0.10712282,0.009289239,0.0007025006,0.0131912595,-0.050004784,-0.028039062,-0.076012775,0.0039272555,-0.067480154,0.07889319,-0.044704948,-0.07077825,-0.086699665,0.018625977,-0.05353981,-0.024331033,-0.025319502,0.002145788,0.03685385,-0.07038864,-0.029803837,-0.05574201,0.070318714,-0.081388116,-0.026714338,-0.049070917,-0.12731072,0.022888178} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.332932+00 2026-01-30 02:01:09.412047+00 22c747a6-b913-4ae4-82bc-14b4195008b6 286 google Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB 1 t 289 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nous avons loué une voiture chez Click & Print pour notre séjour à Gran Canaria.\n\nPoints positifs :\nLa vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver.\nLe véhicule était impeccable, récent et parfaitement conforme à la réservation.\nL’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique.\n\nPoints à améliorer :\nÀ notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. Un simple message indiquant un délai ou une présence visible éviterait cette situation.\nL’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. Personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme.\n\n👉 En résumé : service sérieux, voiture nickel, mais expérience client perfectible sur l’accueil.\nJe recommande malgré tout et referai appel à eux maintenant que je connais le fonctionnement. nous avons loué une voiture chez click & print pour notre séjour à gran canaria. points positifs : la vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver. le véhicule était impeccable, récent et parfaitement conforme à la réservation. l’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique. points à améliorer : à notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. un simple message indiquant un délai ou une présence visible éviterait cette situation. l’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme. 👉 en résumé : service sérieux, voiture nickel, mais expérience client perfectible sur l’accueil. je recommande malgré tout et referai appel à eux maintenant que je connais le fonctionnement. 4 2026-01-18 01:27:48.340845+00 fr v5.1 A4.01 {O1.01,A1.04} V+ I2 CR-N {} {"A4.01": "La vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle", "P1.01": "À notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stress"} {-0.012562984,-0.028815186,0.01983352,-0.06916552,0.044574488,-0.0033272163,0.10385925,-0.00090156344,0.034907714,-0.0014270148,0.109726615,-0.06748798,0.04727756,-0.05337089,-0.04579051,-0.03163741,0.034214266,-0.057581525,0.02741675,0.00927879,0.0029326244,-0.06501506,-0.006036047,0.049932014,-0.02501551,-0.078768276,-0.026020505,0.021662945,0.009666379,-0.077674784,0.0041363076,0.03372798,0.020466765,0.0030279926,0.012454869,0.009362955,0.023826718,-0.057553723,-0.027477304,0.0572559,-0.0042920345,-0.07820579,-0.0786178,-0.029318824,-0.034343187,-0.045775224,0.08416836,0.049108546,-0.032442752,-0.0019924126,-0.009195193,0.05310187,0.052120894,-0.07849695,-0.06929951,0.0005317024,-0.052194048,-0.047379073,0.069983445,-0.04698052,0.026252521,-0.017901063,0.01572984,0.003959096,-0.012281404,-0.026591444,0.013821411,-0.046524044,0.016345864,0.044770747,-0.014401696,-0.016739408,-0.11377725,-0.00751463,0.016523309,0.021706544,-0.04144543,0.017239114,-0.030718967,-0.13466331,0.04986036,-0.048795607,0.014982725,0.008544282,-0.016240709,-0.068834126,0.0003623248,0.03955363,0.021234415,-0.093687706,-0.03252377,0.055301435,-0.11491332,-0.0063379905,0.0766798,-0.03485851,-0.039170187,-0.06238536,0.005745234,0.015216229,0.048372652,0.09559752,0.0015864993,0.107949816,-0.058309548,0.04348454,-0.030802364,-0.044267412,-0.027057642,0.06895063,-0.05822085,-0.042185597,0.025338659,-0.045448918,-0.03531431,0.0024811812,-0.04764723,-0.10714379,-0.018171662,-0.07023051,0.028038403,-0.07410611,-0.07753578,-0.04776936,0.013025237,-0.016164308,0.14544976,1.4119295e-32,-0.013516576,0.06186445,-0.05694269,-0.021930488,0.10642772,0.015318162,-0.08758703,0.028778067,-0.0058526713,0.042745497,-0.07054318,-0.037781145,-0.026048178,0.010081627,0.059478194,0.017719455,0.10474991,-0.015663866,-0.001268602,0.0067381836,-0.021681558,-0.0074032447,-0.028535558,-0.009461321,0.050361443,0.058846828,-0.038523834,-0.025810065,-0.046968997,0.029983412,-0.0154026,-0.014756132,0.0033293867,-0.020868469,-0.0013848181,-0.060468566,-0.010175773,0.02795018,-0.03797754,-0.061989833,-0.055211052,0.0147073325,-0.004022638,-0.010848176,-0.07452146,0.046991102,0.022402078,0.014122179,0.0010661457,0.07475773,0.013661493,-0.0053726705,-0.050368953,-0.12225222,-0.029032853,0.035406917,-0.047730498,0.04631674,-0.0681255,0.012917117,0.027603472,-0.0030795815,0.046318877,-0.06130802,0.01814466,0.0026645274,-0.04062202,0.075720765,0.13692227,0.07024106,-0.048983134,0.08642102,0.027036238,-0.0073410394,0.046995327,0.019591343,-0.030681813,-0.03518552,0.07624556,-0.013282225,-0.024068303,-0.11965409,0.010327816,-0.039802965,0.06533185,-0.034486473,0.04704517,0.008497294,-0.05358388,0.058579437,-0.022257406,0.08127377,0.053029526,0.042464975,-0.03413211,-1.5839448e-32,0.06798428,0.04188369,-0.039123096,0.04785465,-0.031982034,0.07762195,0.0022643574,0.033436313,-0.033607338,-0.028264986,-0.12941146,0.019848984,0.08190578,-0.004320878,-0.0117535945,0.07084784,0.043758135,-0.03426711,-0.090502694,-0.04516323,0.036166996,-0.060298555,0.027317306,-0.018900175,-0.0015354359,0.00015910863,0.07544694,0.00038742326,-0.09019056,0.038327236,-0.012052119,0.09700418,0.027293382,0.01378754,0.0388761,0.052240618,0.12814549,0.10586626,-0.037051965,0.031956647,0.0032446375,0.02007266,0.014292549,-0.02806155,0.033021547,-0.03645148,-0.04500804,-0.05885655,-0.15033497,0.0032703623,0.065330245,-0.018184798,0.009008077,0.047791213,0.04317934,0.08531936,-0.01565917,-0.07775653,-0.0067334697,-0.07696616,0.030635098,-0.021074207,-0.09716478,-0.0073123905,0.11120543,-0.0801577,-0.083188646,-0.016801793,-0.032418728,0.00941311,0.07786451,-0.06350791,-0.043063045,-0.023594175,-0.012147262,0.018617757,0.06906086,-0.027175132,-0.017151594,-0.0081533,-0.1688813,-0.0169347,-0.002857469,-0.044800885,-0.063772276,0.018413791,0.02155757,-0.042415563,0.008290058,-0.02993082,0.041849025,0.048065726,-0.0482834,-0.042125437,-0.046588264,-8.033074e-08,-0.039174605,-0.02679264,-0.054040633,-0.0062524085,0.08168725,-0.034523502,-0.005139971,0.02662146,-0.00482026,0.016669225,0.07188658,-0.028214213,-0.029989313,0.036713514,0.03666354,0.07181294,-0.0018134541,-0.01878443,-0.08356916,0.004028527,-0.031108242,0.037247516,-0.07738328,-0.055972405,-0.051884603,-9.559945e-05,-0.0022145922,-0.011732336,0.032326423,-0.04811113,-0.05412974,0.030700693,-0.022937711,-0.10610744,-0.016675618,0.028332613,0.06620972,0.013106117,-0.01784865,-0.019207131,0.076033495,0.05192834,-0.031131763,-0.049442135,0.039545957,0.010558573,0.011179428,0.0364314,-0.039989356,0.075261824,-0.03947975,-0.074728996,0.053049646,0.07085589,0.013638798,-0.059945595,-0.02968433,-0.016098756,0.09508997,0.019017426,0.03198388,0.12507363,-0.04175705,-0.0613005} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:55:33.046992+00 2026-01-25 01:27:50.821613+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1224 google review_44 1 t 1227 Soho Club unknown Response from the owner response from the owner 5 2025-09-01 18:34:31.336452+00 en v5.1 R3.02 {} V0 I1 CR-N {} {"R3.02": "Response from the owner"} {-0.054412812,0.09008298,-0.0047413567,-0.015588885,0.005014008,-0.07477718,0.03008546,0.03603462,0.0122142695,-0.024292799,0.04015565,0.014382135,-0.00850438,-0.024675192,-0.058564197,0.0035122663,0.08339524,-0.037442233,-0.10443002,0.016371513,-0.002166773,-0.10354472,-0.02156783,0.043640323,-0.00016330255,0.04511728,-0.03181702,0.13806002,-0.0028185174,-0.048198313,0.01813336,-0.030470492,0.054472804,0.010647899,-0.016970329,0.03311297,0.015191664,-0.026055856,-0.030306714,-0.049644075,-0.021217618,-0.047113147,0.007851437,0.036604665,0.0435125,0.09362792,0.024880413,0.019311942,0.041473523,0.0061876383,-0.003111499,0.010831261,-0.021568554,0.015323094,-0.026775364,0.035230912,0.011192305,0.08692374,-0.0100300405,-0.011899627,0.10108457,-0.0630309,-0.07634524,0.047160815,0.044261888,-0.027164757,-0.061132334,-0.057278115,-0.077223465,-0.053779125,0.10319588,-0.035204455,-0.000309495,0.07345029,0.020030364,-0.040138192,0.035760015,0.008185654,-0.006831708,0.013665322,-0.02943325,-0.05754824,0.00592392,0.008884199,0.018195238,0.018210301,0.08767694,0.15034226,0.082864605,0.06635357,0.0040462855,0.008448657,0.057138257,-0.0129972175,-0.055525023,0.07835538,-0.0035832599,-0.09345128,-0.06974364,0.12510382,0.023839705,0.06874747,-0.040562797,-0.10483225,-0.0066422685,0.037407923,-0.07286351,0.090834565,-0.08234522,-0.038672008,-0.09173264,-0.014934703,-0.031109124,0.06226363,-0.0015157843,-0.054317094,-0.08357773,0.06918773,0.028710388,-0.18317935,0.055241816,-0.008789138,0.011468558,-0.029085891,0.0015167518,-0.055393457,0.020665005,-4.3251077e-33,-0.06295588,0.07210762,0.046083365,0.012745895,0.06739854,-0.033970878,0.00019960036,-0.0056707123,0.03495943,0.021274079,0.06830701,-0.020881543,0.06284364,-0.046281453,-0.051714152,0.04852931,-0.0063761324,0.05738096,-0.058686834,-0.0032272711,-0.022197919,0.025982765,-0.0036996189,0.06908214,0.026385387,-0.06600577,-0.019288665,0.019287284,0.00062193844,0.02465415,0.0124534825,-0.015808927,0.0059174625,-0.025565045,0.023630919,0.02006805,0.013423588,-0.023012418,-0.077058785,-0.03225606,0.014080445,-0.023200553,-0.056227833,0.045316115,-0.07504798,-0.015048674,0.048570156,-0.04160196,-0.035365127,0.050792012,-0.03324583,0.031421635,-0.041038293,0.036245786,-0.047470562,-0.042818822,-0.0076115457,-0.0060694725,-0.032897316,-0.0705615,0.116680816,0.051401366,-0.027705546,-0.0048824465,-0.039920617,-0.06831349,0.059329353,-0.048451636,-0.012893874,-0.017979521,0.033708714,0.0021834706,0.05148965,-0.039385512,-0.04801851,-0.01690761,-0.11001036,0.05792176,0.045245007,-0.070306905,0.039393634,-0.056428976,-0.02103508,0.066719376,-0.011650043,0.096446976,0.008159564,0.0038434532,0.0014919245,0.09384765,-0.052222338,0.008409396,-0.023206212,0.024070911,0.053616595,3.55322e-33,-0.039093588,-0.06514227,-0.021154717,-0.03230391,-0.024841439,0.013027422,-0.02020548,0.07823594,0.06921561,0.038846724,-0.042153172,0.011066738,0.02778486,0.07689068,0.002322303,-0.00060011836,0.058853485,-0.061862703,-0.008900163,-0.030868053,-0.076237544,0.043619774,0.030608226,0.014476633,-0.07386999,0.030341646,0.01928016,-0.011997204,-0.04517583,-0.081408165,0.040095273,-0.05463271,-0.036289543,0.08771103,0.031251185,-0.009673358,0.03854398,0.010860326,-0.080128655,0.036234967,0.09709428,0.061374675,0.052796435,0.081890225,0.0086826505,-0.050685484,0.051100455,-0.12916347,0.0719625,0.07045771,0.017831968,0.019983256,0.079696395,-0.01741039,-0.050556257,0.0018615715,0.118522495,-0.02862801,0.06532454,-0.024634035,0.05845083,0.025303047,-0.054539587,0.0335752,0.049788482,0.039549656,0.020507142,-0.08293701,0.07261077,-0.024313277,0.11117497,-0.032481037,0.00018010991,-0.06748171,0.10024908,-0.022389205,0.008070706,-0.02442567,-0.07246439,-0.0064740316,0.028472848,-0.007927461,0.018362941,0.048135526,0.07330029,-0.1177954,0.031468038,-0.037190013,0.027096841,-0.026318358,0.047952846,0.026749512,-0.05420844,0.019227274,0.03004271,-1.7334647e-08,-0.07891927,-0.0050088605,0.074264675,0.061154466,0.046652544,0.045796655,0.09915677,0.010227677,-0.06350287,-0.017339591,-0.032601334,-0.0013710246,-0.00090489775,0.07864983,0.060997117,-0.06495256,-0.02618593,-0.016785862,-0.07303919,-0.038043976,0.018573016,0.04761057,0.0886603,-0.017029546,-0.046305776,-0.028118318,-0.04735539,0.023314519,-0.09304184,0.008350891,0.01971175,0.03667501,0.0066966186,0.00077850226,0.0066306666,-0.03786384,-0.04422229,0.045024145,0.06192366,-0.08764899,-0.07961626,0.05042339,-0.059779137,0.06940098,0.039774306,0.03336153,-0.027921323,-0.076356225,-0.052693915,-0.05710959,-0.0013721748,-0.11869955,-0.025908267,0.05011157,-0.052530423,-0.013651234,0.028934434,-0.010531886,-0.008113483,-0.00922568,0.059890233,-0.021676878,-0.013551424,-0.003522351} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:45:52.467572+00 2026-01-29 18:36:00.525921+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1225 google review_45 1 t 1228 Soho Club unknown Simply love this place. The owner is such a nice person with such great ideas. Love the place as such, decoration, music, drinks, people, all perfect, simply love this place. the owner is such a nice person with such great ideas. love the place as such, decoration, music, drinks, people, all perfect, 5 2017-01-31 18:34:31.336452+00 en v5.1 E1.04 {P1.01} V+ I3 CR-N {} {"E1.04": "Simply love this place. The owner is such a nice person with such great ideas. Love the place as suc"} {0.053243227,0.03871474,0.076785326,-0.0143561335,-0.095813796,0.042462375,0.047937762,-0.060248807,-0.010752037,0.004391533,-0.025954625,-0.015682496,0.031740285,0.0037023202,0.016112588,0.021610616,0.08280727,-0.04856611,0.021243146,-0.024159055,-0.020946562,-0.04511165,0.054932814,0.026703209,-0.08434159,0.065995105,-0.027771084,0.10320073,0.08290222,-0.03316183,0.07073396,0.073716715,0.04542057,-0.011602021,-0.012632189,0.036387347,0.0012141513,-0.07804256,0.028104343,0.022578493,2.1993576e-05,0.035822548,0.024136523,0.053946834,-0.08040765,0.019426199,-0.020274453,-0.032686956,0.14358866,0.006957521,0.029855624,0.021535546,-0.003933297,-0.08391674,-0.06250854,0.051163293,-0.045090426,-0.077678435,0.051733613,-0.104559034,0.11712913,0.04078522,-0.031926893,0.024401031,0.019562962,-0.07642814,-0.057697367,0.067473605,0.0196079,-0.07502385,0.052075632,0.040984787,0.08279665,-0.014685086,-0.04010491,-0.039283022,-0.058136065,-0.04212192,-0.06320125,0.03510688,-0.0021091334,-0.0074433647,0.03634485,0.029933663,-0.09663094,-0.040586054,0.015060404,-0.008017682,0.009358895,0.004934576,0.023642298,0.05432441,-0.08528793,-0.11474497,-0.027960472,0.0024110891,-0.03822348,-0.013165322,-0.012764881,0.051294148,-0.020148758,0.063155234,0.020719584,0.043364994,-0.004153141,0.006997401,-0.026064502,0.09143949,-0.0011886386,-0.038349785,-0.033436347,-0.004341901,-0.0178525,0.033213925,0.0023153948,0.019915765,0.011618156,-0.06349867,0.01851105,-0.09936735,0.04499731,0.03626849,0.025508149,0.05036493,-0.04952447,0.0091546355,0.007046295,-1.726498e-33,0.002501708,0.10441178,0.058867037,0.05109522,0.09875606,-0.052521564,-0.066311054,-0.0012385906,-0.092348285,0.059455626,0.13331084,-0.07309427,-0.017922796,-8.977314e-06,-0.008219122,-0.057716314,-0.01000683,-0.07878227,-0.056983024,-0.022134138,-0.05219206,-0.06703545,-0.007823253,0.038176548,-0.04445464,-0.017339846,0.020234166,0.07343298,0.029076776,0.0046644653,-0.037195858,0.017781477,-0.010419794,-0.03517492,-0.04172366,-0.029354217,-0.072622456,-0.049719818,0.021731151,-0.010183951,0.01993883,-0.015692037,-0.063433565,0.09901278,0.022727674,0.12493354,0.07524913,-0.014382589,0.053903144,0.02289094,-0.009669182,-0.03651483,-0.08042037,0.11931853,0.030570881,-0.07497089,-0.033533446,-0.033673376,0.10018537,-0.070100375,0.07647119,0.015361245,-0.05289698,-0.057523273,-0.027437543,-0.040267438,0.0362254,0.034989156,0.08263625,-0.013250951,-0.007362995,0.023364842,0.0022776595,-0.014671695,-0.026584603,0.037867658,-0.09930707,-0.011382417,0.07408414,0.09588101,0.019237097,0.008374583,-0.0016627074,0.044740643,0.037595283,-0.05026225,0.08540023,-0.09854138,-0.11505632,0.03371719,0.03375947,0.027569516,0.027419839,-0.06251743,-0.034144856,-5.3802946e-34,0.09061916,-0.050580766,0.016759513,0.03536539,-0.0019710092,-0.032236625,-0.19022192,-0.025126921,0.042445023,0.06900992,-0.107922904,0.037185248,0.02846754,-0.007410211,-0.06214959,-0.02794698,0.028974285,0.025718456,-0.038483556,-0.015207881,-0.045478314,0.120172024,-0.033913817,-0.017856799,-0.06423821,0.016967075,-0.030114103,-0.011389171,-0.024097215,-0.00882912,-0.0635035,-0.051785138,-0.03062024,-0.041643303,0.045804974,0.010060515,-0.001238423,-0.023191482,-0.07723808,0.0579306,0.054966845,-0.011145487,0.039081536,0.010405461,0.06313979,-0.0038764302,-0.028218003,-0.06155912,-0.024803005,-0.019771049,-0.010550882,0.0001578509,0.007836434,-0.050625056,0.03407543,-0.015764896,0.07167226,0.00076853874,0.03853743,-0.014736959,-0.055489916,0.0770278,-0.030665051,0.03930228,0.0883406,-0.028458424,-0.023109123,-0.049114324,-0.08573785,0.007858392,-0.033903282,0.02012339,-0.07736008,0.04429843,-0.0030085312,-0.026032407,0.120614156,-0.02071491,0.05679497,-0.008182759,-0.024835587,0.056470994,-0.027415914,-0.023389593,0.04705562,-0.020340076,-0.05596188,-0.044762067,-0.031621303,-0.016517514,-0.004913835,0.11689308,-0.059958715,-0.022528093,0.013178725,-3.26698e-08,-0.02167213,-0.05054663,-0.012037233,0.013496143,-0.02472695,-0.04855752,0.08500599,-0.044027,-0.018913733,0.0397348,0.022737049,-0.016819907,-0.044014383,0.042859808,0.014642548,-0.031955905,0.046674058,0.09385245,-0.022901703,0.006751293,0.041926175,0.05410582,0.022840697,-0.009419827,-0.083455406,-0.010949769,0.0078992965,-0.05827557,0.00085400604,-0.03734554,-0.017108498,0.019596374,0.014542497,0.02436009,0.034176383,-0.034209818,-0.04460064,-0.067317665,-0.03160144,-0.03391905,-0.055666264,-0.06343384,-0.084669754,-0.012197488,-0.047852688,0.08078766,0.09000775,0.0041588834,-0.058925845,0.08085699,-0.0870813,-0.0669222,0.044672854,0.024495367,0.007536824,-0.022631943,-0.02033198,0.057575073,0.046712447,-0.0201268,0.011884191,0.098576576,-0.08001006,0.018651051} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:00.123478+00 2026-01-29 18:36:00.527777+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1229 google review_49 1 t 1232 Soho Club unknown Nice club with great atmosphere but very slow bar service. I don’t know, perhaps in America it’s only fast, but still not familiar! nice club with great atmosphere but very slow bar service. i don’t know, perhaps in america it’s only fast, but still not familiar! 3 2023-01-30 18:34:31.336452+00 en v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Nice club with great atmosphere", "J1.02": "but very slow bar service"} {0.035416998,-0.059013538,-0.024611263,0.02897089,-0.052114747,0.024730092,-0.053111065,-0.07594028,0.03459655,-0.012183102,0.03778938,0.06129525,-0.02295601,0.0070130527,-0.004223435,-0.06736535,0.1332271,-0.1715293,0.037838694,0.005914306,-0.083947144,-0.06538355,-0.06147483,0.060408432,-0.055832367,-0.01843843,-0.047347225,0.072027236,0.0015378714,-0.068286575,-0.033945084,0.06251686,0.049223233,0.03653989,-0.13962889,0.022375906,0.07748186,-0.074329,-0.0005493415,0.061963107,-0.011323308,0.024092672,0.0081231985,0.04002146,0.049423,0.04795253,-0.018317597,0.035827518,0.029263958,0.018879866,0.010016712,0.0040031765,0.02461354,-0.06121185,-0.0032341697,-0.0063166562,-0.07777323,-0.0006523103,0.015357083,0.08555758,-0.010522783,-0.004239166,-0.04131456,0.028548092,0.077548884,-0.04206666,-0.042075448,0.05347337,0.059383593,-0.115947805,-0.0010712736,-0.008950893,-0.006364061,0.0009490214,-0.020451082,-0.024590379,0.079927206,0.013395824,0.022290507,-0.077539355,1.3682842e-05,-0.08130692,-0.011265936,0.012313172,0.007894181,-0.030776069,0.03537517,0.020136125,-0.005921256,-0.0068455692,-0.026328593,0.11816684,-0.08183557,-0.029447632,-0.01677994,0.073081195,-0.008712366,0.06256101,-0.08381943,0.052210152,0.07681979,0.18275562,-0.0073909382,-0.0065743965,-0.04206348,-0.009507725,0.061794415,0.19863996,0.0026998192,0.008004002,-0.0048955195,0.016637972,0.004728682,-0.02926305,-0.13323906,0.04518054,0.046972774,-0.012094317,-0.023215374,0.022905534,0.014671189,0.12075506,-0.0055987304,0.021583527,-0.058592506,0.04021412,0.030586958,-2.2546026e-33,-0.09935483,-0.069997534,0.01393062,-0.01330526,0.03957082,-0.032048564,-0.11050031,-0.01064655,-0.044393256,0.06895433,0.0038397594,-0.07030799,0.019233713,-0.025390236,0.096550666,-0.04795755,-0.020320673,-0.060503393,-0.020052092,-0.08546526,-0.029041698,0.026948933,0.05914593,-0.005843203,0.044290554,-0.0022767032,0.047853068,0.016573414,0.105272576,0.01916555,0.0075044194,-0.020432806,-0.060810063,-0.0009915826,0.014873925,0.014845936,0.018738817,-0.060847092,-0.0028901005,0.0071596433,-0.03507737,-0.04217582,-0.088079594,0.00941398,-0.12252617,0.03504866,-0.053311933,0.022285346,0.011392781,0.035095613,-0.07260601,0.08116907,-0.036656868,0.039034367,-0.009650305,0.030033307,0.070752,0.09410472,0.022105116,-0.059436277,0.031587336,-0.002691876,-0.055281777,0.0667421,-0.009877562,-0.05665953,0.034246173,-0.022408824,0.053842478,-0.0521826,0.06580146,-0.00027253837,0.046590865,-0.02078375,0.0400913,-0.044734996,-0.029222853,0.011383531,0.023762813,0.073227204,-0.07006834,0.034238793,-0.008745025,0.030137302,0.028897777,0.0156215485,0.1336084,-0.017354257,-0.066729076,-0.032235436,-0.10754793,0.0130127575,0.013176406,0.033756178,0.0815158,-5.047739e-35,0.09331395,-0.093298785,0.06789459,0.017721722,0.055849668,0.040509254,-0.06954588,0.043999366,-0.06368737,0.051049225,-0.04353026,0.007290902,0.011832703,-0.0016007764,0.035810668,0.031522784,0.052577715,0.0091614975,-0.035070974,-0.005517407,0.026322197,0.042820282,0.062371884,0.0045727156,-0.042620927,4.678624e-05,-0.0089999065,0.03685206,-0.10324841,-0.047245543,-0.081190616,0.06649912,0.002898014,-0.032414284,-0.08689808,0.1287998,0.0076873037,-0.0015725999,-0.0786546,-0.0002595203,-0.0011708202,-0.012785655,-0.045693014,-0.035352085,0.006954527,0.042042084,-0.040838983,-0.06738855,-0.058831368,0.011644046,0.061876994,-0.022881536,-0.025058871,0.033030063,0.054085795,-0.024844011,-0.033558123,-0.06322139,-0.104184344,-0.017255608,0.037311584,-0.0013933749,-0.03847079,0.049402285,0.100310445,-0.033213798,0.013592963,-0.019231327,-0.0346791,0.02295428,-0.019399459,0.000526122,-0.023070605,0.11019483,-0.07816255,-0.04227913,0.09918205,0.011471485,-0.0412577,-0.019681128,-0.0024094586,-0.035725575,0.011144714,0.04758737,-0.018055988,-0.017689522,0.06503686,0.03322599,0.032573994,0.08380402,0.09116257,0.031939972,-0.00052972883,-0.033972595,-0.014993048,-2.7556831e-08,-0.038636044,-0.004657556,-0.029295545,0.010453704,-0.026161768,-0.04494221,0.009693668,0.022168621,-0.05585269,-0.001953412,0.0072407555,-0.011171712,-0.0038207148,0.0032010684,-0.02341922,-0.017330013,-0.05444384,0.05983963,-0.025161147,-0.010172727,-0.026734421,0.014758309,0.024745379,-0.017293226,-0.010401269,-0.011288538,-0.033586483,-0.01026407,0.03219443,-0.12743244,-0.09367661,0.04754598,-0.012800811,-0.045526575,-0.030062048,0.019369008,-0.048327077,-0.03940964,-0.0120496005,0.012928861,-0.042071864,-0.09413808,-0.044981256,-0.033212382,0.050354686,-0.00062106544,-0.06051842,0.080596305,0.013464052,0.029271584,0.002613833,0.05766805,0.048485823,-0.056960993,-0.0037026152,0.04020365,0.006037052,0.006015009,0.022559743,0.031775426,0.029030936,-0.059269186,-0.040479466,0.01948984} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:40.611271+00 2026-01-29 18:36:00.534508+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 338 google Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB 1 t 341 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto. desde el principio muy problemático. estubimos por horas esperando en el aeropuerto. en la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. luego lo del combustible tiene trampa. mejor buscar una renta car en el aeropuerto. 1 2026-01-18 01:27:48.341218+00 es v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página po", "P1.02": "Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto."} {0.06629305,0.086804904,-0.0127540855,-0.014945014,-0.019559782,-0.048331168,0.07588532,-0.0033554565,-0.018718988,0.030643366,0.10657228,0.046128765,-0.014589642,-0.039517764,0.010263543,0.08609226,-0.027267238,0.023351707,-0.0027533064,0.074988194,0.13705574,-0.030594667,-0.10059837,0.06440977,-0.07166898,0.024862135,-0.023001948,0.080223516,-0.046114873,-0.06135901,-0.007772582,-0.012588325,0.051898066,0.0071015623,0.07189967,-0.08464038,0.036339544,-0.040607095,-0.023175312,0.05968873,-0.0504085,-0.025606455,-0.04698092,-0.050618336,-0.016057275,-0.030730033,0.022929009,0.07501582,0.057118375,-0.066199064,-0.043554112,0.0050388537,0.06696181,-0.023780325,-0.03298504,-0.036500357,0.007423484,0.01279472,0.0890757,-0.0006559899,0.026460825,0.013354636,-0.029516447,0.024819868,0.06394046,-0.069779016,-0.00853376,-0.0025150778,-0.013304581,0.07843972,0.064995416,-0.066888966,0.031890254,0.025401084,-0.047548715,0.06322123,-0.0119437175,0.025172206,0.04447369,-0.03377036,0.018020736,-0.077720076,-0.049532183,-0.034329835,0.012666867,0.021332638,-0.03529165,-0.05310592,0.03453723,0.020222317,-0.05481729,0.04176302,0.008983979,-0.0430379,0.025533102,-0.009061123,0.008127085,-0.04688329,-0.032489058,-0.007840869,0.05385933,0.07755915,0.037120707,0.04421934,-0.06389725,0.045999702,0.02616828,-0.088723555,-0.0030316617,0.006618083,-0.06714736,-0.041376483,0.034609497,-0.0634286,-0.071219675,-0.03582141,-0.039253224,-0.043241307,-0.061841786,-0.023957916,0.030509707,-0.07388569,-0.043508176,-0.031308055,0.021167265,-0.15071754,-0.00030703205,1.1693062e-32,-0.009464399,-0.03538214,-0.03033205,0.03982003,0.09816525,0.031643398,-0.04064636,-0.0107461065,-0.0010632155,0.019155849,-0.055038653,-0.025433293,-0.03056854,0.0026739463,0.08320053,0.044777352,0.03772203,-0.034472313,-0.045061525,-0.0021925885,-0.025712447,-0.0060601844,-0.039310995,-0.049606204,0.0026674373,0.083800234,-0.0024650428,-0.11535338,-0.03286708,0.084710225,0.004799894,0.08395147,-0.050374877,0.06544208,-0.064985186,-0.06980878,0.009463902,0.026732719,-0.07415554,-0.032259613,-0.030848984,-0.0280327,-0.07466603,0.04458317,-0.0009665075,-0.0025290463,0.07646116,0.019819463,0.03512712,0.03167564,-0.06415205,-0.025296586,-0.09379491,-0.06496258,-0.0041437973,-0.051258266,0.002506,-0.00011630395,0.03208868,-0.059791632,-0.04075446,0.060515948,0.03751431,-0.069778904,-0.024223486,-0.023675421,-0.0069956137,0.07633213,0.109193124,0.0723893,-0.0033368296,-0.013552722,-0.10436263,0.072703645,0.0062286183,-0.00641891,-0.027089924,-0.016736154,-0.065961935,0.0058691786,0.012581214,-0.028075188,0.060970403,-0.013650832,0.07114155,0.068667606,0.030062173,0.09340572,-0.031484045,0.14521241,-0.035691693,0.09081724,0.032014567,-0.011024453,0.035029635,-1.2475291e-32,-0.02717395,-0.022738827,-0.032061536,-0.026712157,-0.048229396,0.07510492,-0.08857286,-0.07058087,-0.056033477,-0.048545785,-0.16139306,-0.07304975,0.11240617,0.038353264,0.05965338,0.08236021,-0.013444807,-0.10373647,-0.1353783,-0.026074618,0.016989967,-0.008304144,0.05496023,0.03449642,-0.04142926,-0.07838543,0.008933215,0.04550963,0.0046596006,-0.0049914108,-0.02147775,0.0076268474,0.018588193,0.061577693,-0.04873892,0.047042787,0.052787423,0.04091331,-0.0025061313,0.004938597,-0.05215199,-0.0067744595,0.027681248,-0.06431684,0.04241275,-0.053806886,0.023358902,-0.17667113,-0.015977008,-0.018249134,0.08265507,-0.07446781,-0.021861475,0.0130976355,0.10558528,0.0033687307,0.040934514,-0.05943304,-0.065244496,-0.023337735,0.07174776,0.04906985,-0.08097092,0.01822145,0.042617287,-0.036553133,-0.019977642,-0.035774246,-0.017144008,-0.0023808868,0.03426122,0.00031388906,-0.022561805,0.057541914,-0.06765105,0.054824594,0.00079679245,0.056254365,0.014045566,-0.02347361,-0.013602826,0.0023315214,0.05037699,-0.033927478,-0.025977034,-0.018370446,0.0006123169,0.00045146677,-0.048435125,0.028649561,0.028397756,0.04893642,-0.058431778,-0.033757832,-0.023339795,-4.881361e-08,-0.023150055,-0.054866765,0.022903597,0.023699323,0.03097569,0.022881001,0.022472065,0.013263454,-0.009865647,0.006284148,0.064007,-0.038313568,0.035003867,0.06841741,0.006047654,0.02833194,0.07932572,0.04238892,-0.019703597,-0.021560775,0.049028374,-0.031082306,-0.03881076,0.06890585,-0.0043264255,-0.022660885,-0.040716674,-0.03359692,0.012960447,-0.008731005,-0.09321174,0.017376559,0.008041207,-0.10601716,-0.03753451,0.041776136,0.0007648318,0.021404868,-0.054238223,-0.03077819,0.12181417,0.005327009,-0.05053311,-0.02530974,-0.01623788,-0.013645101,0.004913669,-0.07365484,-0.0835594,0.022483401,-0.0045976816,-0.05104443,0.10471723,0.09458496,0.0312941,-0.033083364,0.0060579116,0.019868694,-0.024780767,0.00013697016,0.07426972,0.13252752,-0.03183626,0.008098192} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:01:04.832196+00 2026-01-25 01:27:51.009773+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1457 google ChdDSUhNMG9nS0VJQ0FnSURBN1lpel9BRRAB 1 t 1460 Go Karts Mar Menor unknown Great track.. really quiet this time of year. Went 3 times during holiday​ and each time it was just us on the track. great track.. really quiet this time of year. went 3 times during holiday​ and each time it was just us on the track. 5 2018-02-01 01:52:39.833374+00 en v5.1 O2.03 {J1.04} V+ I3 CR-N {} {"O2.03": "Great track.. really quiet this time of year. Went 3 times during holiday​ and each time it was just"} {0.003831872,-0.008217657,0.054956775,0.035194334,-0.007763398,0.010073443,0.020217389,-0.09049637,-0.04029479,-0.100797474,-0.071336925,0.017973145,-0.011477269,-0.05110149,-0.036741283,0.06785617,0.01691466,-0.073530555,0.0032168136,-0.0012542107,-0.03890316,0.019497624,0.010074906,0.1430242,-0.08415113,0.06227366,-0.05280052,-0.00043638505,-0.028195316,-0.016788278,-0.058681965,0.04848047,0.027151257,-0.033522252,0.006943134,-0.021152427,0.03480145,-0.037469074,0.014424599,0.04216785,-0.0029643904,0.021844488,0.09395595,-0.04783057,-0.022550518,0.036743682,-0.040126685,-0.048074774,0.08826556,0.042707305,0.07119002,-0.026877824,0.049384963,-0.044412352,-0.07499502,0.07116727,0.042155635,0.0069351806,0.006539862,-0.05438893,-0.021654703,-0.06631254,-0.0141113335,-0.022225002,0.052880805,-0.04705002,-0.10026668,0.02158579,0.059323516,0.02725303,0.027746668,0.05003604,0.05885434,-0.009719647,-0.057412732,0.072321035,-0.046625905,-0.02819341,-0.0373168,0.013505413,0.046346936,-0.104516014,0.002337208,-0.078726925,0.026090462,-0.10788371,0.089559205,0.0075124702,-0.037397947,-0.0013336323,0.010980959,0.036610153,-0.050511412,0.028107297,0.017268948,0.0027813993,0.001169038,0.058973026,-0.0027518212,0.043339744,0.07610715,0.080070294,-0.0015267318,-0.0039697397,-0.02444837,0.012436123,-0.027739884,0.08705053,-0.0059792497,-0.056200787,0.05877186,0.016828949,0.018182525,0.060163453,0.0051226253,0.059783407,0.0068845283,0.07564487,-0.013844254,-0.020657688,-0.012789027,0.0399995,-0.029345663,0.027220704,-0.0010731032,-0.024412373,0.06071788,-2.3390666e-33,0.0035214329,0.006806907,0.03295639,-0.03101709,0.06688227,-0.051121503,-0.12051282,-0.032535758,-0.11248908,0.06159284,0.019645821,-0.019207137,0.03565749,-0.087960236,0.027884593,-0.086403646,-0.057677105,-0.008943717,-0.05094441,0.08339012,0.022759574,0.029858906,9.2911054e-05,-0.05509734,0.086872414,0.011216239,-0.0011184417,-0.03757939,0.021404874,0.007150649,-0.037656367,-0.0088225445,0.00029896028,0.078095004,-0.0011316123,-0.0035019426,0.004207183,0.037565786,-0.0075940313,-0.0387388,0.04682286,-0.030986102,0.0149183385,-0.021622783,-0.039077953,0.05549343,-0.028759843,0.06979275,0.09507085,0.016101785,-0.02220697,-0.04585495,-0.07381214,-0.006967045,0.05880189,-0.035239793,0.08706453,-0.027109982,0.00996376,-0.022495013,0.09697261,0.03669625,0.012581573,-0.14020015,-0.014054097,0.034763645,-0.029482499,-0.019848675,0.002346446,0.004721479,0.049525455,-0.05970881,-0.0042557456,-0.086573206,0.11046737,-0.047940187,-0.013429751,-0.011189868,0.01333589,-0.041785713,-0.0702827,0.0049498323,-0.030561399,-0.018461797,0.041136693,0.032118615,-0.021275414,-0.016855208,-0.06228866,-0.000723693,-0.021350091,0.055339176,0.015373103,0.038724117,-0.0044458862,-5.352549e-34,0.085947335,0.15338272,0.09597928,0.036746755,-0.02781686,0.07217586,-0.0401761,0.10132529,0.043495733,0.0911799,-0.0062104734,-0.04967713,-0.012012869,0.022657197,-0.044634696,-0.05182153,0.096828185,0.040919743,0.045644313,-0.078384206,-0.020190638,0.005271189,0.0022886235,-0.04597413,-0.013497921,-0.0141642345,0.031520072,-0.0013953834,0.034150694,-0.08586832,-0.072765775,0.060771108,-0.063677974,-0.11764673,-0.0047260188,0.09517231,-0.037761357,0.040581264,-0.043568436,-0.03132866,-0.06990799,0.066105284,-0.021484766,0.023858765,-0.013549007,0.01314659,0.012015971,0.13845958,-0.08492826,0.02122571,-0.015923314,-0.03728889,-0.044566598,0.02741894,-0.03199317,0.02624322,0.016478442,-0.05656939,-0.08472517,-0.059620753,-0.08885522,0.043150757,-0.06930981,-0.03632725,0.03677079,0.0077142594,-0.0005854644,-0.060878064,-0.019501349,0.057499077,-0.116623,0.008256379,-0.0688079,0.048960224,-0.018478997,-0.027323166,-0.03040876,-0.06977963,-0.01721551,0.05750241,-0.0060305838,0.010119996,-0.026168622,-0.01635297,0.036255613,0.08609211,0.006774937,-0.020191526,-0.01514379,0.1243443,0.07399792,0.06252051,-0.051595178,-0.036267288,-0.09564335,-2.7609573e-08,-0.03595223,0.12678562,-0.07515148,-0.05421979,0.074602045,-0.04047075,0.11044454,-0.005762522,-0.057854548,0.04154946,0.048639502,0.005546789,-0.039223775,0.0649201,-0.004263505,-0.017084666,-0.02983842,0.096313626,-0.016476786,-0.02167852,0.0026983116,-0.012099845,-0.030495867,0.032016113,0.0685549,-0.045428373,0.048509166,0.0053726113,0.0026907418,-0.0928111,0.028785195,0.054916773,-0.018117905,0.004833074,-0.033520747,-0.033554066,-0.004122546,0.06108095,0.027456706,-0.042869385,-0.06366496,-0.021541307,-0.0416779,-0.010005608,-0.010075813,-0.0278698,0.02917549,-0.076606944,-0.04927952,-0.029270265,-0.044944115,-0.03439361,-0.029107451,0.08650475,0.08320623,0.08016983,-0.08706346,0.0041021034,-0.07978818,-0.049573805,-0.004440754,-0.059374902,-0.0391505,0.04512867} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.300301+00 2026-01-30 02:01:09.419114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 179 google Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB 1 t 182 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend them! Some of the cheapest prices for rental cars I found on GC. Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times and return was also very unproblematic and quick. rented cars from them 2 separate times during my stay on gran canaria and would definitely recommend them! some of the cheapest prices for rental cars i found on gc. location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). staff is super friendly (they speak english and spanish fluently), got the keys quickly both times and return was also very unproblematic and quick. 5 2026-01-18 01:27:48.340068+00 en v5.1 V1.01 {} V+ I3 CR-N {} {"A4.01": "Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes", "P1.01": "Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times a", "V1.01": "Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend"} {0.018309634,-0.028472003,0.08824547,0.007484264,-0.071427554,-0.0014482843,0.0067839087,0.0030592529,-0.03336472,-0.0072012083,0.060775455,0.026976028,0.005546637,0.024143318,0.02051453,-0.026041847,0.09793797,-0.054771338,0.04820591,-0.03687431,-0.0008374125,-0.0627203,-0.00035345354,0.020387575,0.037342932,0.0073558223,0.0018144893,0.034396064,0.047504306,-0.008451276,-0.069820695,0.043925684,-0.019701563,0.03865113,0.0024408095,0.03916715,0.053359583,-0.055021487,-0.036782347,-0.009378505,0.013018244,0.00878543,0.021923635,-0.02260289,0.012315038,-0.053480893,0.066004746,0.01788598,0.09707992,0.017337145,0.055465512,-0.019881567,0.055604003,-0.045238808,-0.09505386,-0.0048568835,-0.022161342,-0.013124688,0.04978269,0.082537666,0.017886695,-0.029259453,-0.06931847,-0.019459942,-0.062115073,-0.027056724,-0.011732665,0.006735866,-0.036428396,-0.08243217,0.07880822,-0.0057758014,0.012033105,0.008607842,-0.08139494,0.044542234,0.019909691,-0.029951176,0.03615148,-0.014876936,-0.025644982,-0.043939568,0.054186977,0.024330186,-0.0028013804,-0.06367784,-0.015914766,0.04816319,0.01838449,-0.009761688,0.074570574,0.06575304,-0.007167699,0.013314069,0.0086703235,0.04808392,0.06606164,0.0026565203,0.0068328725,0.020270076,0.07462936,0.04614293,0.052267697,-0.023737822,-0.07884807,0.053481568,0.06467366,-0.0028385262,0.025188876,0.028242784,-0.067914166,0.012883152,0.0029538355,-0.025049811,-0.15161233,0.022132352,0.033534493,-0.00876568,-0.037276026,0.007093163,-0.02400292,-0.056643307,-0.00012098849,-0.008018006,0.023067813,-0.010461619,0.015811425,2.5868621e-33,-0.04728797,0.0376717,-0.061294705,0.029968614,0.0005762471,0.041223783,-0.0031721173,0.010765998,-0.066045254,-0.005723631,-0.036615454,-0.010646652,-0.083140634,-0.07718682,0.059206285,0.09387839,0.0020250431,-0.06711304,0.026419442,-0.07453846,-0.042943038,0.03585365,0.01791976,-0.018531052,0.013276207,0.030658951,-0.04785455,-0.06477906,0.123987615,0.034509733,-0.05087227,0.039600108,-0.05338812,0.005636133,-0.054352418,-0.0004090695,-0.06406178,-0.008749615,-0.10844923,-0.021670261,-0.037236195,0.0012421241,-0.055797115,-0.042429917,0.04261963,0.014027957,0.09240114,-0.007653899,0.06223627,0.047829915,-0.10886543,-0.01784814,-0.13538359,-0.007226756,-0.06630488,0.051284973,0.00048806198,0.07357109,0.025061732,-0.012052481,0.0291576,0.052779596,0.056244507,-0.026678462,0.007718309,-0.024008283,-0.040870953,0.08697882,0.122443005,0.041552845,0.06717167,0.0063848267,0.037736457,0.02454581,0.038441017,-0.037820116,-0.052363355,-0.0040336135,-0.015326584,0.03215614,0.043400373,-0.023511114,-0.042495437,0.124693386,0.040037673,0.14748292,0.057864968,0.00804379,-0.10604305,0.020691682,-0.013591694,0.067564,-0.012017238,-0.07307835,-0.0034651074,-3.3568897e-33,0.10574747,-0.04925738,0.048952848,-0.017557278,0.011914866,0.070889086,-0.08831719,-0.007222663,-0.015888592,0.045882937,-0.1736712,-0.013632925,0.10059463,-0.013444643,-0.04995815,-0.0110258125,0.03897397,-0.06795672,-0.054407764,-0.028828222,-0.050074387,0.024014574,0.013024305,0.03511074,-0.027668975,0.01668844,-0.08414102,0.05781598,-0.073613934,0.04901085,-0.033102933,0.001099325,-0.01080843,-0.01058264,0.04233085,-0.025900617,0.05874102,0.06970899,-0.06456432,0.065896474,-0.013967594,-0.058363795,0.041628104,0.005325971,0.062440757,0.0058230553,0.00786868,-0.07641104,0.02448299,-0.03982112,0.081001624,-0.03621321,-0.08998305,0.02962379,-0.016604511,-0.05834398,0.04457639,-0.033313278,-0.010519592,-0.044528395,-0.06219475,-0.02202257,-0.06581265,0.042573087,-0.01511264,-0.018869836,0.0025182553,-0.006551229,-0.014462481,-0.021679834,-0.10982537,-0.03970528,-0.0017093996,0.014234503,-0.088075064,0.024978848,0.10860387,-0.03494568,0.10965112,-0.09981902,0.11519478,-0.045278315,-0.010306009,-0.029888941,0.026407532,0.020946242,0.003210683,-0.029223198,0.033881687,0.099400625,-0.01323096,0.088717215,0.000986347,-0.06292658,-0.03162256,-4.0017838e-08,0.048115928,0.008839371,0.010964562,0.017370597,-0.07591574,-0.07195351,-0.039472893,0.071946554,-0.0057294634,0.08474347,0.0478333,-0.006311873,-0.002041101,0.032391112,-0.121179916,0.053689808,0.13266617,0.0527546,0.0051367767,-0.030616708,-0.021986052,-0.0006397709,0.009208028,0.10545142,-0.03994233,-0.010339374,-0.064483516,-0.010991142,0.11553832,-0.02758885,-0.09544521,0.012252367,0.037724044,-0.07108805,0.0007605504,-0.07747437,-0.033954773,-0.019887727,0.024672683,-0.0024926008,0.06930566,-0.07034642,-0.104860276,-0.05822395,-0.0029481517,0.018392997,0.014678764,-0.059075877,0.010653567,0.09346298,-0.022315113,-0.046027504,0.005594183,0.07224294,0.014463662,-0.039401997,-0.031846803,-0.027647028,0.024018291,0.00808553,-0.035428904,0.015012167,-0.10132715,-0.0029973132} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:37:36.408664+00 2026-01-25 01:27:49.918996+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1230 google ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB 1 t 1233 Soho Club unknown Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country. police camera near the entrance. the same ones are in central police station cell blocks. also if you speak your mind, amount of state and local persecutions is staggering in this country. 1 2023-01-30 18:34:31.336452+00 en v5.1 A4.01 {} V0 I1 CR-N {} {"A4.01": "Police camera near the entrance. The same ones are in central police station cell blocks.", "R1.02": "Also if you speak your mind, amount of state and local persecutions is staggering in this country."} {0.042448238,0.053931218,-0.044341844,-0.06592993,0.13700505,0.022403587,0.009706531,-0.03548522,0.06627472,0.018243302,0.109255016,-0.012171226,0.039940823,-0.0067518624,-0.016461363,-0.0841811,0.027451232,-0.10168342,0.030136293,-0.03161111,-0.00468899,-0.04369031,0.09735971,-0.00037006466,-0.10685617,0.03436282,-0.037396926,0.007467176,-0.006072615,-0.020133367,-0.022617621,-0.031954724,-0.019807538,0.06965436,0.028828451,-0.055952206,0.15017675,-0.030989593,0.08227288,-0.035027146,0.040660862,-0.010758129,0.05675889,0.005259328,-0.019070646,0.01495055,-0.005006235,0.002484247,0.026809534,-0.1641405,-0.009411959,0.055529777,0.01111682,0.048007846,-0.064014584,-0.11378355,-0.012292154,0.026146779,0.05414793,0.076776385,0.02570023,0.056970257,-0.040771462,0.023622388,-0.047443666,-0.0032624996,-0.05639783,0.011704135,0.12944916,-0.039543826,0.0044826237,0.054149,0.02484476,-0.014515126,-0.06616467,-0.046439253,-0.051437974,-0.012605362,-0.027614996,-0.08249019,0.0597979,-0.043092243,0.0049098753,0.016357915,0.058153346,0.014999166,-0.021598335,0.011018988,-0.011433015,-0.036270954,-0.04729236,0.0031784023,-0.039793663,0.005865261,-0.0044521736,-0.06343027,-0.012990845,0.014858769,-0.02027428,0.04094238,0.044358023,-0.032206103,0.05149397,-0.014564657,0.04263921,-0.056856707,-0.05478011,0.008773349,-0.0075745103,-0.015804548,-0.017453117,-0.0071979966,-0.04194696,-0.003856454,0.03272977,-0.022454116,-0.01086697,-0.015198236,-0.03532513,0.09799458,0.026049396,-0.02877841,-0.017929802,0.0068457318,0.055113178,-0.050153956,-0.03032744,-1.0522989e-33,0.0036362042,0.025527436,-0.07381385,-0.0510839,0.046828784,0.038245223,-0.053192966,0.019335048,0.03156363,0.08934442,-0.016163634,-0.0661779,-0.010237558,0.009323724,0.023946246,-0.017601427,-0.028263532,0.028847568,-0.09773633,0.0083205635,0.038256966,-0.03009048,0.017770674,0.13713874,0.09083399,0.069143,0.002133778,0.030824212,0.05283399,0.03749718,-0.036700293,0.065840065,0.08567424,0.014770476,0.10855875,0.0047161565,0.064419486,-0.060410492,0.0060121296,-0.07355747,-0.011289016,-0.00078190205,-0.06148151,0.0001884241,0.07895827,0.049876187,-0.023210712,-0.037458546,-0.027870419,0.009426917,-0.009787155,0.020465339,-0.11770351,-0.0334079,-0.062086463,0.06240033,-0.030426642,0.026745016,0.07642191,-0.02268575,-0.01540283,0.09451309,-0.0603224,0.01561411,0.019929478,-0.10796985,-0.03818645,0.0062319376,0.041941155,0.014833243,-0.026068456,0.014285051,0.0058766226,0.039483435,-0.045192756,-0.00073369395,-0.088927485,0.042190038,-0.0268495,0.022996875,-0.112538114,0.016038641,0.028899066,0.016804995,0.060435854,-0.017931437,0.018428361,-0.04110854,-0.044900216,-0.011583639,-0.005454691,0.052222617,0.030465102,-0.04159786,-0.07445995,-9.242057e-34,0.025655814,-0.033051092,-0.018699242,-0.07248248,-0.066916846,0.016510796,0.057586998,0.044112433,0.077838354,0.06367523,-0.03998797,0.01805574,0.09619684,0.03911352,-0.016538791,-0.047775377,0.10473849,0.051573373,-0.072753355,0.017141083,-0.035781443,0.014695388,0.030562349,0.004240324,-0.00043879214,0.041812945,0.0027008199,0.0059854994,-0.00618749,-0.07850659,-0.07381202,-0.03618231,-0.022531617,0.03788275,-0.08050926,0.019144494,0.099549286,-0.019783001,-0.052744895,-0.028367417,-0.043772604,0.09017871,0.013260764,0.022845848,-0.09708462,-0.004013071,-0.013601368,0.0484372,-0.07687637,-0.09620165,-0.08776922,0.0006735189,-0.024473397,-0.0037996473,-0.028512698,0.039802153,-0.07827018,-0.0011209837,0.031671308,0.026705397,0.0603223,0.041913923,-0.15347904,-0.00064764655,0.013810294,0.0063330415,-0.04985111,0.07246476,0.009278309,0.05796242,0.06703386,0.0017967196,0.0009421251,0.0031708656,-0.005479853,0.002293707,0.026572682,0.040537104,-0.0028419867,-0.0054642903,0.088423125,-0.16935533,-0.10556522,-0.008281769,0.057077497,0.044523563,0.042125497,-0.0108663505,-0.0077252304,-0.021884711,-0.09387511,0.01125649,-0.08340057,-0.0005192278,0.05814375,-2.9654013e-08,0.020604664,-0.03060523,-0.0046299812,-0.035318237,0.024146857,-0.031626917,-0.005470153,0.035685837,-0.022595977,-0.08240767,0.044015326,-0.027447036,-0.029679377,-0.051683065,-0.038346488,0.060868252,-0.0557456,-0.051594734,-0.026665317,0.019793043,-0.059063435,-0.014180112,0.02804623,0.0036201254,-0.011947109,0.0128207505,-0.075487904,-0.073747955,0.0036520434,0.0775787,-0.021699006,0.0153881,0.08259291,0.0433414,0.062186364,0.058278646,-0.037882946,0.035988707,0.04670732,-0.042714793,0.051000997,-0.16047592,0.022134831,0.044207066,0.014274171,0.03164041,0.022117041,0.018483322,-0.030880129,-0.020946916,-0.06250251,-0.032238796,-0.0005616544,0.09845877,0.022501327,-0.0113707,0.12269132,-0.08586439,-0.048926655,0.07194241,-0.0100163985,0.04739785,-0.02502689,0.056709778} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:46:51.548898+00 2026-01-29 18:36:00.536575+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 344 google Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB 1 t 347 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet. lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet. 1 2026-01-11 01:27:48.341275+00 fi v5.1 A1.03 {} V- I3 CR-W {} {"A1.03": "Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, milla", "J1.02": "Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi."} {-0.004630177,0.12417193,-0.09330595,-0.05598198,-0.09327119,0.026408961,0.030419016,0.02662924,-0.024768772,0.034342,0.024687493,0.018217819,-0.025614312,0.020326179,-0.06692492,-0.08969098,-0.039484415,0.073961824,-0.08012395,0.042059664,0.053791042,-0.09550196,-0.0048143277,0.004344517,0.088841066,0.036721002,-0.03926966,-0.038896516,-0.019001301,-0.0064060893,-0.045682836,0.03845901,-0.025871653,-0.027681893,0.03840352,0.039315913,-0.08788716,0.027144628,0.05996776,0.0057653994,0.029567244,-0.074273415,-0.07728693,-0.11685635,-0.018971015,-0.0577187,-0.04262494,0.010227986,0.046057977,0.00034645395,-0.14415461,-0.010624509,0.035856955,-0.050169285,-0.067476615,-0.031534392,-0.015151463,0.031756874,0.026648605,0.0049749105,0.11746453,-0.00033265149,-0.044564378,0.02727144,0.01696478,-0.038943157,-0.12208423,-0.04075185,-0.052571706,-0.021278542,0.06393223,-0.0066163847,-0.009301328,0.091489166,-0.07271915,-0.08639761,-0.025677284,-0.007849914,0.068870924,-0.033130046,0.041834783,-0.017338753,-0.018362364,0.07146891,-0.009430474,0.06903042,0.013561688,0.0075515658,0.0610587,0.007823618,0.016717846,0.045143593,-0.04914264,-0.050531957,0.07327428,0.02891656,-0.01101091,-0.078621276,-0.062014434,0.088383205,0.026006075,-0.062565185,0.010879658,0.04303942,-0.044959787,0.006806556,-0.029026449,-0.1082485,-0.012500899,0.0057042865,-0.0046747415,-0.03610155,-0.0490615,-0.08979864,-0.029528096,0.076449744,-0.04272732,0.018476559,-0.02412323,-0.025028117,0.037806407,-0.07843374,0.011866341,-0.028572079,0.051420566,-0.04843717,0.056664113,2.7234435e-32,0.00829565,-0.030676937,0.0063126306,-0.026443476,0.0068095196,-0.037195053,-0.03119456,-0.019959373,0.03995419,-0.072512105,-0.0603559,0.031760942,-0.04771507,0.0017341189,0.0031187474,0.047021277,0.0084646,-0.0066145714,0.033685897,-0.02296392,0.011801551,0.040785782,0.06488535,0.014445217,-0.10348862,-0.07609704,0.026103437,-0.06921236,-0.05747182,0.101643264,0.085695535,0.06623809,-0.023230795,-0.041224524,-0.05803768,-0.02169794,-0.064901076,-0.069902524,-0.004230081,-0.030012636,0.01598472,-0.005825827,0.07099793,0.043253314,-0.017979326,0.12216729,0.09497294,0.0372511,0.081106246,0.029004918,-0.053022306,0.009509463,-0.05502381,-0.038789336,-0.004495887,0.046806764,0.030267393,0.04299511,0.025617572,-0.03823473,-0.06946688,-0.031505305,0.057305127,-0.031911064,-0.061147965,-0.024277918,0.0039312956,-0.0074005993,0.068243556,-0.026432008,-0.046533514,-0.091284856,-0.06186555,0.10294915,0.025327044,0.036135107,0.06341496,0.047260426,-0.04094119,-0.012759247,0.0014733013,0.0516396,0.035444885,-0.017098585,0.07967465,0.026648812,0.0022162092,-0.09091764,0.11486485,0.06956705,-0.010170696,0.022273142,0.0031649552,0.02960982,0.0041922624,-2.5675674e-32,0.039102953,-0.037276983,-0.026961006,0.061505347,0.0588637,-0.019501131,-0.15351579,0.026571924,0.020640537,0.0733825,-0.0047255815,-0.09675123,0.05477348,0.053076245,-0.0038058131,0.051810224,0.10984911,-0.03598698,-0.015940845,-0.041973323,-0.048152886,-0.0272373,-0.03521128,0.0073356284,0.08941307,-0.031376295,-0.024339389,-0.016738499,-0.07931482,-0.019897155,0.0063287844,-0.04041056,-0.04573944,0.108924426,-0.0026925122,0.029901972,0.09556323,-0.0708749,-0.030494675,0.020991394,0.030305302,-0.014417875,0.04848668,-0.034693033,0.0033277909,-0.1335541,-0.03798479,0.004345117,-0.059608944,-0.039545603,0.09462201,0.02785137,0.014620595,-0.05186829,-0.0015679823,0.04928505,0.038206756,0.048242517,-0.083907135,0.019706892,0.06128209,-0.0017263311,0.0057247425,0.03764267,0.031580675,-0.025679445,-0.053505503,-0.023968875,-0.08118147,0.057566494,0.0028142852,-0.13509105,0.0025441453,0.03938719,0.011689033,-0.020196322,-0.029610284,-0.01001637,0.0033185312,-0.08572174,-0.021735286,-0.037527952,0.025904955,-0.052651968,-0.023345707,0.08100753,0.00987607,-0.03154901,0.008613458,0.07457408,0.00046007163,0.07702835,0.0011059454,-0.0008113119,0.012898514,-7.0769914e-08,0.052335713,-0.043170363,-0.032598637,0.018930264,-0.007842744,-0.07158428,0.03901201,0.010550846,-0.025074916,-0.008436077,-0.057433113,-0.025703035,0.057505522,0.001250907,-0.07264466,0.056622986,0.051044762,0.06677101,-0.033068866,0.026657792,0.10774044,-0.03322816,-0.007133457,-0.0062419483,-0.038854588,-0.013796131,0.0040438934,0.022933882,0.025538767,0.012434873,-0.0056213853,0.043080796,0.028097603,-0.10274056,-0.06776926,0.122900635,-0.010120361,-0.059956744,-0.030980473,-0.056416146,0.0133392615,0.01125182,0.06813941,-0.042227905,0.02484068,-0.023387572,0.0023561767,-0.023347657,0.03261636,-0.13753055,-0.07110138,0.02075403,0.06203243,0.043525636,-0.024706792,-0.053543027,0.017220989,0.029959291,0.0008421714,-0.012078103,0.026140854,0.041863408,0.03525123,-0.025822556} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:02:45.037712+00 2026-01-25 01:27:51.028203+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 430 google Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB 1 t 433 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Me sorprendió tener que pagar 35 euros por algo así como "gastos de repostaje" que aparecía en la letra pequeña del contrato. Una sensación como de engaño encubierta me sorprendió tener que pagar 35 euros por algo así como "gastos de repostaje" que aparecía en la letra pequeña del contrato. una sensación como de engaño encubierta 4 2026-01-11 01:27:48.341857+00 es v5.1 P1.02 {} V- I2 CR-N {} {"P1.02": "Me sorprendió tener que pagar 35 euros por algo así como \\"gastos de repostaje\\" que aparecía en la le", "P1.03": "Una sensación como de engaño encubierta."} {-0.01685313,0.08595329,-0.11246214,-0.020308007,-0.082014464,0.044429936,0.09107992,0.07613002,0.032593723,0.019949358,0.04013054,-0.004163253,-0.0402794,-0.011675509,-0.0055667316,-0.050013077,0.03914002,0.017714376,0.02839145,-0.008845537,0.054352656,0.0048192,0.016577832,0.13901599,-0.027382389,0.025279347,0.013000398,0.00035035747,-0.024590187,-0.05721745,-0.003445488,-0.023711225,-0.011130236,-0.038132712,-0.0061347936,-0.030894002,-0.0031457483,-0.0400756,-0.06893503,0.06755281,-0.05845037,-0.070754886,-0.10865139,-0.066343874,-0.014431588,0.0054288046,-0.006156043,0.13957019,-0.027981488,-0.020638514,-0.014262019,-0.017051022,-0.06548964,0.0142410565,0.02333831,-0.06325512,0.016948259,-0.000570006,0.010484863,-0.045200236,0.014370972,0.12956217,-0.1001972,0.008612103,-0.039926015,-0.015476013,0.054098424,-0.044892695,-0.019838499,0.07033002,0.071471244,-0.098055445,0.055297825,0.024677444,-0.03138627,0.02360021,0.06912943,-0.031739756,0.015161688,-0.035519402,0.08804765,0.053801518,-0.08415398,-0.029824654,-0.032343574,-0.09673404,0.024194293,0.053639643,0.08338394,-0.057169985,-0.029497802,0.023917807,0.01590289,0.0025883683,-0.035074703,-0.005509902,0.018179728,-0.0026054112,0.054692063,-0.046578407,0.07417176,0.061064597,0.030964026,-0.01619101,-0.05738987,0.022554299,0.041240927,-0.0052302205,0.026429543,0.028862832,-0.07536037,-0.04843266,-0.056774873,-0.016771603,-0.075440206,0.032167707,-0.024229495,-0.05862433,-0.024342394,0.008703148,0.021537576,-0.039256785,-0.07225769,-0.059900485,0.012059562,-0.09204276,-0.016125528,7.319423e-33,-0.06384059,-0.072151706,-0.023564352,0.0635156,-0.07350323,0.06732903,-0.010899167,-0.06278789,0.022812588,0.04752853,-0.027860682,-0.032050103,0.01899921,0.06606066,-0.023175996,-0.029061483,0.031864896,0.02228052,0.051872224,0.045901313,-0.076751314,0.020021973,-0.04057934,-0.043239087,-0.00581627,0.07343006,-0.004502044,-0.003158003,-0.06391191,0.004917131,0.0126256915,0.06657225,0.029513163,-0.05060171,-0.03359521,-0.016458174,0.04537941,0.008413408,-0.028171021,-0.014204758,-0.024910746,0.011555854,-0.031329248,0.0008121592,0.1062916,-0.0012256978,0.012116847,-0.028699031,0.01580755,-0.051458415,-0.04133246,0.035699055,-0.060984913,0.003395875,-0.034770522,0.018489197,-0.116147935,0.014576376,-0.049223665,-0.07068787,-0.03417543,0.056152858,0.029101383,-0.0072852992,-0.008305751,-0.039287467,-0.024884095,-0.020547377,-0.0024236017,0.09201627,-0.1045082,-0.017049342,0.030043002,0.020940922,-0.021491764,-0.004941689,0.04447295,0.010805832,-0.011043773,-0.0019736327,-0.046405464,-0.11162184,0.03282041,0.055394642,0.08300151,0.068371326,0.014395517,0.074420646,0.033625577,0.10694987,-0.033503547,0.02487501,0.0025765635,-0.029113512,0.13628457,-1.091905e-32,-0.014080706,0.025893599,-0.042227533,0.053762708,0.023807175,0.0150449,0.03628518,0.0016982865,-0.042345926,-0.07782462,-0.10162374,-0.082179934,0.04599932,0.026508644,-0.00898582,0.09033997,-0.040451817,-0.08476635,-0.02455622,0.004518741,-0.052949402,0.056406017,0.0020642926,0.022211317,-0.0019564028,-0.11458214,0.032559764,0.029885586,-0.03751513,0.014870484,0.062232494,-0.004724425,-0.022817599,0.04193382,-0.059667766,-0.0046985233,0.06791713,0.033518292,0.012902081,0.0102269435,-0.05648024,0.040868066,0.010531963,-0.039531767,0.020078925,-0.00042371394,0.04551162,-0.1954921,0.03205287,-0.07884652,0.071760744,-0.035335604,-0.0047468473,-0.0025134687,0.061330684,-0.040834427,-0.028948871,-0.06455347,-0.008837917,0.028650938,0.070893414,0.033172272,0.053377148,0.007973225,0.096049465,0.0047729914,-0.056183163,-0.048810914,0.13510406,0.06856439,0.079566196,-0.028111972,0.035732415,0.054966625,-0.04317635,-0.019574145,-0.049137067,0.058983162,0.017442271,0.009472861,0.04187733,-0.07819201,0.040177196,-0.080814354,0.011646856,-0.06664183,-0.045895882,0.022105478,-0.013837056,0.047901943,-0.075179406,-0.027825406,-0.04301626,-0.07109148,0.0011244445,-4.3850573e-08,-0.06523191,-0.053040456,0.016309667,0.042947304,0.0061745914,-0.01427673,-0.024214873,0.018462336,0.017358398,0.047439795,0.028087517,-0.039806228,0.07577265,0.028426439,-0.057093397,0.02317951,0.06471308,0.05652954,-0.017483203,-0.0541771,0.051599298,-0.0034368807,-0.07724783,0.039126795,0.06552713,0.032543827,0.06896486,0.11401701,-0.027183287,-0.07704568,-0.0057301563,-0.01841765,0.041052274,-0.05970706,0.05586344,-0.007458876,0.04583016,0.07508135,-0.0055384603,-0.08334774,0.025983457,-0.027461221,-0.06925401,-0.011535805,-0.023339158,-0.089975744,-0.10943722,0.06444445,-0.054104514,-0.0007809671,0.00032855273,0.009428569,0.057408236,-0.0008856687,0.11393944,0.000677989,0.00699647,0.050317395,-0.060458813,9.813111e-05,0.021246893,0.0025058996,-0.025953297,-0.13015874} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:02:36.234719+00 2026-01-25 01:27:51.36887+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 626 google Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB 1 t 629 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Polecam. Wszystko sprawnie. polecam. wszystko sprawnie. 5 2026-01-11 01:27:48.342965+00 pl v5.1 J1.01 {} V+ I1 CR-N {} {"J1.01": "Polecam. Wszystko sprawnie."} {-0.083374724,0.043264546,-0.083578885,-0.04138694,0.04299571,-0.04289481,0.1363219,0.102532096,-0.004800082,0.033831347,0.050898712,0.0038509793,-0.08364455,0.06323073,-0.0138019435,0.023928285,-0.018819297,0.047046885,-0.0045884987,0.028773798,0.016718274,-0.109048486,0.0549639,0.015397375,0.021849152,0.0010796974,-0.03444721,0.084301755,0.015001217,-0.03207019,-0.04668292,0.06251216,-0.01334047,-0.02133488,0.028700633,-0.02155264,0.028399846,-0.07338412,-0.08857952,0.07459,-0.034973424,0.047885124,-0.067394376,-0.038892325,-0.04217223,0.07625018,0.022624027,0.041143503,-0.007823577,-0.033632748,-0.12740442,-0.10149581,0.037447993,-0.00319436,-0.02942183,-0.03243833,-0.0103693,0.043787867,0.045796253,-0.06397354,-0.010178117,-0.033643026,-0.1049997,0.05858316,0.001225533,-0.029418122,-0.076098435,-0.03630088,0.006560574,0.054113396,-0.0088527845,-0.038788047,-0.065219566,0.02081154,-0.10463026,-0.016820192,0.09715024,-0.022494476,-0.031140469,-0.031668942,0.056961462,-0.034780364,-0.05963394,0.0013523689,0.021098355,0.043726515,0.0018005695,0.031553775,-0.036921747,-0.04621314,-0.08809629,-0.030172436,-0.05247841,-0.018390564,-0.100843474,-0.011778155,0.031325232,-0.009834576,-0.058896914,0.08999774,0.052041553,-0.07464007,0.09753382,-0.007792542,0.016215002,-0.019463662,-0.015897533,0.017743153,0.0010926254,-0.035141867,-0.079150885,-0.024854863,-0.0066726943,-0.055869672,0.071882755,0.05136384,0.009219366,0.021747472,-0.01597643,-0.0067156814,0.13549778,-0.049100418,-0.020285903,0.04843293,0.046483528,-0.01699392,0.063119575,5.3274974e-34,0.037255287,0.024429174,0.018000001,0.024937667,0.07643669,0.032915384,0.0025534758,0.00043570902,-0.09015369,0.05149819,-0.06114383,-0.046149053,0.0030861113,-0.015215995,0.031915415,0.045760404,-0.02919617,0.0006392293,-0.036403656,0.101541884,0.05659686,-0.0040074964,0.010498076,0.08028507,-0.013982985,-0.023114877,0.07335854,-0.06675589,0.0173513,0.04507724,0.049687136,0.017018946,-0.06705659,-0.0061752903,-0.012154345,-0.054351643,0.00824277,-0.102592774,-0.024840476,-0.07723048,-0.009831876,-0.05355335,-0.1041053,0.040945906,0.07021213,-0.006942424,0.0511723,0.053156693,-0.009722436,0.026620204,-0.007905304,0.02936101,-0.059123203,0.004114187,-0.12418912,0.10946859,0.074958265,0.020836381,0.03852807,-0.021262152,-0.021130744,0.020161089,0.015365699,-0.077940516,0.03543051,-0.10981821,0.03582178,-0.02458742,-0.052304924,0.00858128,-0.02967195,-0.044331353,0.044676952,0.012145697,-0.016738176,0.07431476,-0.03781418,0.014777189,-0.059173305,0.02953503,-0.1323894,0.04716377,0.03730759,-0.0193211,0.004400355,-0.026359998,0.04481815,-0.08050115,-0.090880655,0.035376374,-0.020382278,0.077141926,0.088440776,-0.055798627,-0.061615013,-3.3765712e-34,-0.0039358865,0.046736915,-0.059546124,0.033596423,0.022050748,0.0069080237,-0.013133982,0.039244525,0.0218446,-0.020576647,0.03113877,-0.16047202,0.0029557676,0.07296086,0.06865385,0.08212922,0.031941272,0.009651778,-0.06257717,-0.08877479,0.047170635,0.04531129,0.027851665,0.097236834,-0.015855277,0.01208744,0.09086221,0.04328362,-0.04861012,0.0053641726,-0.042777706,-0.064666204,-0.024574203,0.012382853,0.03929416,0.026834022,0.05655889,0.025881398,-0.031046314,0.003745901,-0.025413759,-0.019287942,-0.009769874,0.049590766,0.0367919,-0.10297503,-0.071997166,0.058119994,-0.055284332,-0.016466068,-0.0209934,0.017471788,0.015993562,0.03289862,0.04590229,0.062359367,-0.016088005,-0.0080432445,0.013237107,0.056991998,0.0716374,-0.0149106,-0.057909217,0.060213435,0.08748106,0.0023664332,1.858007e-05,-0.0094985245,0.0050479746,-0.0031784803,0.06641902,0.013370436,-0.0029420266,0.06971733,-0.021983396,0.06445968,0.00945207,0.050998803,0.01580738,-0.029712116,-0.03025889,-0.054110013,0.033300035,0.095671974,0.07184135,-0.028100418,0.0074574267,-0.06478963,0.036682017,-0.04967076,0.00239885,0.040956695,-0.007776079,0.046926167,0.014879057,-1.7215614e-08,-0.03133698,0.031639077,-0.08261493,0.021526445,0.04734234,-0.10411498,-0.03536373,-0.02768889,-0.027528109,-0.007314972,0.0069876895,0.0033143822,0.061434224,0.06259663,0.056116782,0.06607472,-0.0073417607,-0.006864483,-0.0014977091,0.071621284,0.076033086,-0.06824432,-0.0035368262,0.016896755,-0.06710356,0.010411491,0.013891776,0.020330986,0.0780534,-0.03179541,-0.042088963,0.09103534,0.017988766,0.03174706,0.009574148,0.036437955,-0.12457884,0.025771225,-0.02996579,0.03156615,-0.016498737,0.010516532,0.08859389,-0.0148233855,-0.044370774,0.02193675,0.051435146,-0.081355415,0.029760255,-0.028020587,-0.065541305,0.07117211,0.029304747,0.06518135,0.021527348,0.03603145,0.05708311,-0.046460662,-0.11187639,-0.025174106,-0.0041612554,0.08088201,-0.02375512,0.035561945} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:02:27.639324+00 2026-01-25 01:27:52.101565+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1234 google ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE 1 t 1237 Soho Club unknown Excellent music and atmosphere excellent music and atmosphere 5 2025-07-03 18:34:31.336452+00 en v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Excellent music and atmosphere"} {-0.020819178,0.0024282043,0.0321966,-0.0022985616,-0.029965082,0.11294041,0.04463001,-0.04912151,-0.013747043,-0.011698519,0.028291814,0.025125397,0.0306649,-0.09794186,0.019927358,0.08058316,0.1148781,-0.06749239,-0.0055699535,-0.050089464,-0.10188461,0.051838204,-0.0045658434,0.0376386,-0.05942118,0.034166824,-0.017030234,0.11651414,0.028314814,-0.06572224,-0.0014863894,0.09627492,0.093393,-0.03432592,-0.031647094,0.028058767,0.04024003,-0.076071516,-0.06331918,0.043584783,-0.04172346,0.041966848,0.036269587,-0.027887328,-0.05700441,-0.01810208,-0.04150875,-0.063871734,0.106446594,0.053487916,0.030039286,0.024052866,-0.011556034,-0.015939273,-0.04346443,0.00024821804,-0.060090628,-0.03647312,0.034446668,-0.099458404,0.050324276,0.021768799,-0.058073018,-0.016041206,0.11494978,-0.07283821,-0.060014322,0.056692217,0.017521776,-0.004748979,0.027776783,0.022924174,0.02555646,-0.03919608,-0.05431434,0.07437943,-0.024428701,-0.0778276,-0.029332684,0.010783064,0.12802692,-0.091974065,-0.07195604,-0.06359316,-0.027329668,-0.08089622,0.007521678,-0.051287796,-0.10443279,-0.0075652194,0.0086997915,0.019323472,-0.039850373,-0.0020586222,0.044132628,0.015957205,0.031755164,-0.050544634,0.00251566,0.11125165,0.028571893,0.0769803,-0.019972023,0.030114079,-0.06732598,-0.07843952,0.0026754495,0.09154937,0.010135695,-0.02721731,0.015965037,0.0053177583,-0.010508133,-0.0013687597,0.050598096,0.11044261,0.018592063,0.02878048,-0.05869627,-0.09801801,0.03483667,0.03301487,-0.008179121,0.05283073,-0.006510941,-0.10589861,0.0012672833,-3.703701e-33,0.008686478,0.021578174,0.0674243,0.048478976,0.07451662,-0.025181048,-0.08197938,-0.047942568,-0.061544687,0.054777123,-0.052263204,0.042364914,0.017204573,-0.04688235,0.0051181284,-0.050664946,-0.060055118,0.016414363,0.021470977,0.048365775,-0.10387565,0.023232004,-0.012918797,0.048314992,-0.019297278,-0.013574312,0.06329409,-0.04310568,0.024567401,0.014923941,-0.0020742954,-0.0049215443,-0.015232557,-0.01059201,-0.03907421,0.06917334,-0.09930329,-0.007441766,0.0676807,0.01736476,0.027407957,0.042465195,-0.04351139,-0.00889326,0.009125932,0.015557611,-0.001024657,0.06668859,0.10061609,-0.010674349,-0.067542456,-0.004331549,-0.038699247,0.045434196,0.04116308,0.05704017,0.033732265,0.0960429,0.045258198,-0.045087967,0.08767589,0.07441268,0.02460819,-0.11405362,0.03662732,0.011261806,0.049721684,-0.056748174,0.038004994,0.006740448,-0.03548011,-0.04884968,0.1240881,-0.03534377,-0.00978131,-0.028246772,-0.060367845,-0.07284403,0.056149878,0.073845826,-0.031368326,0.050049867,0.022791568,-0.029828582,0.024577642,-0.031491946,-0.0016661834,-0.096025884,-0.043005396,0.024953693,-0.08167714,0.0013445645,0.06342929,-0.06748007,-0.012421048,3.0681534e-33,0.099251874,0.05517442,0.009584133,-0.008195604,-0.015571666,0.09123879,-0.07422437,0.07923111,-0.053692855,0.083907895,0.013062498,0.0622862,0.08599938,-0.046420466,-0.045963466,-0.028158966,-0.0005276855,0.047609735,0.01714076,-0.013173309,-0.033176214,-0.026011946,0.01265116,-0.04540638,-0.066692725,0.009802312,-0.021210276,0.03837812,-0.029368525,0.012624753,0.031840693,0.03709892,-0.06136193,-0.07432472,0.004679001,0.09050399,0.08555799,-0.03700303,-0.10697732,-0.015701855,-0.09956717,0.051786702,0.08601571,-0.024693042,0.026157139,0.008867618,0.0074036843,0.06389392,-0.06351828,-0.05040716,0.026705625,-0.0065436573,-0.040974386,-0.019517783,-0.0064833127,-0.0023228335,0.00747747,-0.02602087,0.06209573,0.008486461,-0.032312017,0.03211158,-0.07607436,-0.01878115,0.050212786,-0.01693545,0.024905095,0.0007834693,-0.065635465,0.048911132,-0.033072148,-0.0060754335,-0.0536854,0.07990153,-0.02052558,-0.018670926,0.06932411,0.024013698,0.035276175,-0.011500272,-0.042733908,0.021611292,-0.055508666,-0.0155586405,0.024077546,0.03540522,0.023996625,-0.033844966,-0.00712812,0.06758238,0.049251013,0.031205857,-0.028792087,-0.043579962,0.015767673,-1.3310687e-08,-0.00030931292,0.016436413,-0.0012066035,-0.017009709,-0.0714523,-0.029204972,0.09798997,-0.050792668,-0.008811741,0.018829267,0.06774569,-0.023291945,0.010449931,0.08973123,0.032249816,-0.032595363,-0.04198294,0.13175438,-0.044401404,0.011622495,0.029866032,0.081118934,0.046059676,-0.05414345,0.028685646,0.027740683,0.04074499,-0.078940056,0.049100854,0.005366203,-0.027011458,0.06767387,-0.04150476,-0.07654308,-0.04536543,-0.027748143,-0.0030142488,-0.061297268,-0.034135245,-0.0695098,0.020075502,0.0041264244,-0.022397015,-0.05249856,0.014842735,-0.06453126,0.11583702,0.056142643,-0.0703663,0.08562931,-0.019579388,-0.037442207,0.016138308,0.016231703,0.061020818,0.005462293,-0.068616994,0.07906756,-0.038632598,0.009322587,0.032467995,0.01991171,-0.0474838,-0.015616816} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:20.851665+00 2026-01-29 18:36:00.545075+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1236 google ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB 1 t 1239 Soho Club unknown Good place, perfect club LGBT.\nBest place. Nice stuff good place, perfect club lgbt. best place. nice stuff 5 2023-01-30 18:34:31.336452+00 en v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Good place, perfect club LGBT. Best place.", "P1.01": "Nice stuff"} {0.0642694,-0.0075761266,-0.023288358,0.060642596,-0.05929703,0.014637867,0.031146815,-0.06707209,0.021609593,0.007029489,0.04917132,0.011658413,0.008705844,0.0194322,0.040224645,0.0060365223,0.09047904,-0.04224918,0.056800675,-0.061682343,-0.09577385,-0.011203185,0.07223934,0.0026782674,-0.12561756,0.008346192,-0.0087807,0.046537656,0.018591577,0.0751992,-0.02122977,0.07311769,-0.005674224,0.008597491,-0.04527881,0.055621117,0.03252651,-0.13601597,0.06612548,0.02449712,-0.028908584,-0.0031578275,0.023886994,0.015141635,-0.039266516,0.039909296,0.06980783,-0.047992755,0.029762143,0.009563222,0.11927687,-0.022514462,0.04092791,-0.0046871887,-0.03399977,0.03722464,-0.07903659,-0.08491437,-0.006343015,-0.079879545,0.13315348,0.04971837,-0.10385502,-0.0051035187,0.0468504,-0.032980803,-0.03334094,0.13342644,0.05568042,-0.053113386,-0.01409724,0.044020325,-0.028201068,0.033015583,-0.012657064,-0.01923917,-0.0055391267,-0.026401725,0.0036298817,-0.012088137,-0.013686384,-0.03658638,0.04989932,0.011978871,-0.053827256,-0.05560701,0.019633967,-0.0476476,-0.05819471,0.032801848,-0.02750757,0.10614156,-0.05908365,-0.057112277,-0.041078936,-0.018094607,-0.042557996,0.06643865,-0.050879914,0.07215432,0.016597815,0.1433224,-0.030403396,0.015387336,-0.059024543,0.03186611,-0.021637889,0.08820769,-0.019588774,0.021622617,-0.02279493,-0.029319279,-0.02686134,-0.014047822,0.015095291,0.009827159,0.110537864,0.017159756,0.080283046,0.015392639,-0.06863312,0.06507877,0.02714263,0.07049229,-0.03274889,-0.0031520457,-0.022189893,-3.9791263e-33,-0.010716406,0.005937964,-0.01435681,0.034469675,0.05851607,0.060759753,-0.036555186,-0.034185514,-0.08199009,0.0450912,0.03913964,0.024921877,-0.023603143,-0.03060881,0.028375065,-0.07570047,0.06503539,-0.013581666,-0.06903855,-0.08244301,-0.032612026,0.03614204,-0.020706782,0.05558984,-0.025031513,0.010929068,0.021332465,0.0036180213,0.03791195,0.023730723,-0.08083498,0.002516876,0.02186209,-0.0034489743,0.028273894,0.03800554,0.008200898,-0.018140696,-0.03348863,0.019558208,0.044811673,0.0052404944,-0.049574297,0.024791636,0.004478573,0.11023362,0.0034801443,-0.04100988,0.07824623,0.029033413,-0.07694277,0.011773508,-0.09025273,0.0639881,-0.04692662,-0.049582783,-0.027218772,0.032320753,0.07764564,-0.027030142,0.021170923,0.09888125,-0.026508577,-0.07973112,-0.056759212,-0.05941739,0.06379553,-0.047812764,0.114045076,0.0048822043,-0.020350141,0.055960033,0.043474767,0.0089168055,-0.006888254,0.00096554344,-0.14022647,0.027528765,0.010597498,0.021115813,0.011606957,0.023664195,-0.0750526,0.004299212,-0.0036848728,-0.04438831,0.04879018,-0.13925233,-0.09269449,-0.03943863,-0.067579985,0.027692903,0.055233814,-0.048994534,0.016466284,2.2683314e-33,0.11036033,-0.11148109,0.04690847,0.063754156,-0.014803908,0.02083509,-0.08823386,-0.007846493,0.03416385,0.14834483,-0.021560661,-0.009149898,0.063977204,0.03167884,0.01726018,-0.032912318,0.017451163,-0.016853385,-0.048806947,0.030041184,0.007228905,0.06907762,0.01125122,0.09276623,0.03895412,0.03838459,-0.038926993,0.00093410414,-0.0038862485,-0.01864545,-0.03993854,0.010876335,-0.024398575,-0.0129039455,0.049760353,0.009381915,-0.005976183,0.03433335,-0.0017464629,-0.004081932,0.06774101,-0.0012508195,-0.063519984,0.077954955,0.025742818,0.0053432113,-0.05735828,0.03312376,0.035286408,-0.054007433,-0.053377323,-0.04000467,-0.0062984987,-0.08009395,0.05852946,-0.04043615,-0.048572786,0.040982507,-0.08026419,0.017787963,-0.090603486,0.066468105,-0.025304453,0.08413495,0.051658176,-0.017266296,-0.061148018,-0.0148273045,-0.06947926,0.027419917,-0.074336044,0.0049796198,-0.039006747,0.06706551,-0.019921722,-0.041261196,0.1876911,-0.034961477,-0.03557829,0.068848394,-0.025398316,-0.018080235,-0.07077045,0.04191315,0.056728452,-0.067564346,-0.000718019,0.0011175462,0.001817668,0.017949125,-0.03837022,0.056027185,-0.12700008,-0.0761574,0.0036183633,-1.8038547e-08,-0.03320706,0.0026876738,-0.034117017,0.040997397,-0.039577555,0.006012487,-0.0055307606,-0.019249309,0.01341387,0.05703215,-0.0055354442,-0.015578878,-0.04333923,0.0023157317,-0.044610567,-0.018264668,0.05163071,0.0058940146,-0.029811924,-0.009196702,0.003946426,0.03415455,0.017984455,-0.010169795,-0.030456692,0.025189597,0.07129962,-0.052898284,-0.04987967,-0.022073966,0.010556362,0.012018059,-0.005023227,0.056824487,-0.036046233,0.013395333,-0.008503289,-0.043984946,-0.0009973926,-0.037004717,-0.05412441,-0.06527958,-0.011102368,-0.04051198,-0.057878062,0.0803457,0.09218041,0.042094156,-0.06278427,0.047161367,-0.13343094,0.07108586,-0.012035583,0.0039415243,0.0025355746,-0.052868053,-0.050829332,0.0050858483,-0.006079862,0.07698754,0.045866415,0.023650382,-0.07819875,-0.01884924} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:35.128846+00 2026-01-29 18:36:00.55387+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 293 google Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB 1 t 296 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. Dort mussten wir vielleicht 15 Minuten warten bis wir an die Reihe kamen und das auch nur weil der Herr vor uns keine Kreditkarte hatte und somit die Kaution nicht hinterlegen konnte.\nAlso unbedingt eine echte Kreditkarte dabei haben und keine Debit Karte, die wird nicht akzeptiert. Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer Zeit den Schlüssel ausgehändigt hat. Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf Deutsch eingestellt.\nWir waren eine Woche auf der ganzen Insel unterwegs und wir waren sehr zufrieden damit. Das zurückgeben ging bei der selben netten Mitarbeiterin sehr flott und ohne Beanstandungen. Die Kaution war einen Tag später auch schon wieder freigegeben. Alles in allem sehr zu empfehlen. Gebucht hatten wir über Check 24 und mussten vor Ort auch außer der Kaution nichts bezahlen. wir sind zu fuß die zwanzig minuten zur station gegangen. schadet nach 5 stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. dort mussten wir vielleicht 15 minuten warten bis wir an die reihe kamen und das auch nur weil der herr vor uns keine kreditkarte hatte und somit die kaution nicht hinterlegen konnte. also unbedingt eine echte kreditkarte dabei haben und keine debit karte, die wird nicht akzeptiert. als wir an der reihe waren hatten wir es mit einer sehr netten mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer zeit den schlüssel ausgehändigt hat. der hyundai i10 den wir bekommen haben war bis auf den kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf deutsch eingestellt. wir waren eine woche auf der ganzen insel unterwegs und wir waren sehr zufrieden damit. das zurückgeben ging bei der selben netten mitarbeiterin sehr flott und ohne beanstandungen. die kaution war einen tag später auch schon wieder freigegeben. alles in allem sehr zu empfehlen. gebucht hatten wir über check 24 und mussten vor ort auch außer der kaution nichts bezahlen. 5 2026-01-11 01:27:48.340873+00 de v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles su", "J1.02": "Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nic", "O1.02": "Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello "} {-0.13099387,0.100036696,-0.0562735,-0.021230053,-0.007949534,0.044095114,0.0954497,0.08227495,-0.012499279,-0.036417443,0.10253285,0.009652874,0.006106925,0.01535223,0.028089019,0.006140617,0.0016479912,0.013111982,-0.12193304,-0.0153305335,0.043376237,-0.07135596,0.012297775,0.019183315,0.0045483615,-0.047707897,-0.026023287,0.04262111,-0.008498814,-0.050545078,0.05175918,0.06700124,-0.038317613,-0.015800074,0.020619038,0.038685575,0.0016024696,-0.02407206,-0.050375592,0.03871925,-0.027985862,0.006841116,-0.11392281,-0.045396034,-0.013635778,-0.009001876,0.049714398,0.0011498048,-0.035051968,-0.030079747,-0.059637316,0.02952617,0.0997231,-0.06512522,0.0051190476,-0.06626181,-0.06621464,0.054546073,0.06714021,-0.0013469985,-0.0034375233,-0.0705336,0.0012768912,-0.007957126,-0.030868176,-0.017679563,0.02330017,-0.09746474,-0.020125665,-0.050661843,0.048659045,-0.06577781,-0.054782767,-0.078807846,-0.08222037,-0.023172947,0.04165788,0.029385073,-0.057632,-0.08763033,0.044085085,-0.067389905,0.025741152,-0.08371706,0.040320743,-0.09632456,-0.0042311973,0.14082187,-0.052414905,-0.013944275,0.022901535,0.07334138,-0.0562734,-0.034944683,0.045552686,0.031722322,-0.0025714973,0.030025389,-0.02277176,0.0072347196,0.11413,0.014155047,0.0034093924,0.046447247,-0.0030895325,-0.042779516,0.025181072,0.002369263,-0.07711474,0.034794293,-0.036941353,-0.044493392,-0.010478393,-0.027421722,0.026624918,0.015182078,-0.027013667,-0.050391708,0.011156332,0.013322666,0.044444792,-0.025940495,0.019924687,0.037249047,0.064250216,0.068512164,0.058365893,2.3105708e-32,-0.04749109,0.10562537,-0.012749952,-0.07823732,-0.0149156265,-0.03535167,-0.017994462,0.10422397,0.0042784465,-0.035302613,-0.110105,0.0009784739,-0.0011971119,-0.081331186,-0.03673555,-0.06137896,0.014557975,-0.05297106,-0.0008775431,-0.019170988,0.009413347,-0.045768358,-0.04185736,-0.0017296511,0.011079756,0.04503173,-0.03669319,-0.030056287,-0.02609422,0.02476759,0.04435979,-0.039001156,-0.06746344,-0.008110956,-0.055688113,-0.04068213,0.0018609669,0.037431233,-2.5644445e-05,-0.061986286,0.0049802125,-0.02393341,-0.04453149,0.032585043,0.12326106,-0.010969561,-0.03777526,0.027941886,0.07475861,0.03524348,-0.03563771,0.0017339638,0.009624407,-0.019535465,-0.020039402,0.08993575,-0.008485481,0.025206516,-0.04740131,0.04823097,-0.0043322966,0.0052543473,-0.03941353,-0.03123888,-0.018679706,-0.016775504,0.00411742,-0.028083494,0.021038754,0.06340824,-0.040758137,0.011921853,0.13362928,-0.023992829,0.08549181,0.054261677,0.02741625,0.04646768,-0.115426265,0.06478689,-0.029787071,-0.03985946,-0.022501959,-0.02690206,0.08452154,-0.08431904,0.017904293,-0.056869134,-0.0502209,0.0780494,-0.004647838,-0.0169908,0.011667429,-0.01597241,0.0034796568,-2.2105631e-32,0.085494995,0.07331805,0.028392684,0.041224573,-0.0012704312,0.04885963,0.032920733,0.06526554,-0.11530836,-0.038411546,0.020063277,-0.07864311,0.03167859,-0.02797446,-0.020916633,0.049567956,0.05034389,0.043379836,0.0056752893,-0.025471956,0.05959082,0.0414082,0.022937013,0.05152291,-0.02120064,0.040604897,0.054845102,-0.010535125,-0.020445563,0.041782964,0.012480118,-0.013652688,-0.022705464,0.009977621,-0.020424286,-0.04934605,-0.009432047,0.019262804,-0.029331062,0.07951133,0.050933875,0.055120647,-0.098130494,-0.031142008,-0.0023867614,-0.016866077,-0.022655433,-0.08819946,-0.010541961,-0.12143838,0.10733133,0.0066285217,-0.03453141,0.04123704,0.050924163,0.026292695,0.0058709686,-0.04854439,-0.060691148,-0.0015940419,0.05147201,-0.028043343,0.07856228,-0.06658587,0.021082116,-0.11253525,0.052805763,0.004548659,0.012309795,0.053807072,0.039744455,-0.0074633863,0.035433795,0.031392116,-0.08380325,0.06735774,-0.041887905,0.11076472,0.022423485,0.004125194,-0.01699321,0.041929964,-0.048595008,-0.06512017,-0.009160489,-0.010765861,0.022671862,-0.0023611041,0.050519403,-0.13034008,-0.0043156086,0.07501363,0.02278511,0.0845527,-0.041695938,-7.34653e-08,0.1182358,-0.06643409,-0.057223365,-0.022653189,0.056999333,-0.10252239,-0.081534445,-0.08078721,-0.085327715,0.046321735,0.07290523,-0.029852457,-0.0281403,0.022655005,-0.03393235,0.04369379,0.028559055,-0.10812249,0.017745081,-0.05776275,0.045091238,-0.035977717,-0.045981243,-0.03703835,0.052110914,0.04808367,-0.04849973,0.020895926,0.10903658,-0.086099446,-0.014968685,-0.006811164,-0.030348748,0.004522493,-0.07249348,-0.08504077,0.054761935,0.020999314,-0.0021589838,0.06294623,0.03959097,-0.049499393,-0.019024894,-0.0029320647,0.0022401533,-0.09279731,-0.029031515,-0.07114504,-0.0065842713,0.04979812,-0.07791131,-0.0012358624,-0.021967301,0.04680216,-0.0050073513,-0.018005274,-0.02386596,-0.055056974,-0.023538558,0.016583597,0.0057038073,0.06576495,-0.117546976,0.008100393} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:03:38.196728+00 2026-01-25 01:27:50.848534+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 308 google Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB 1 t 311 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Quiciera poner - una estrella no la merecen.\nUna experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada de competitivos. No alquilar con esta empresa.\nMi mala experiencia ocurrió en las palmas de grancanaria. Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. Al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. En total alquilar un coche por 1 dia\n137€ que no devuelven mas.\n\nTotal alquiler coche 1 dia 421€.\nes de muerte de susto la estafa de esta empresa.\nMe han devuelto\n285€\nNo es justo que esto pase tanto dinero publicidad engañosa. Juzguen ustedes y no alquiler. Todos los que estábamos esperando a recibir las llaves del coches en ese momento estaban inconforme por tatas tasas que cobran. quiciera poner - una estrella no la merecen. una experiencia decepcionante muy mala empresa de renta car pésima. precios engañosos muy altos nada de competitivos. no alquilar con esta empresa. mi mala experiencia ocurrió en las palmas de grancanaria. punto de recogida no estaba claro difícil de encontrar. realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. en total alquilar un coche por 1 dia 137€ que no devuelven mas. total alquiler coche 1 dia 421€. es de muerte de susto la estafa de esta empresa. me han devuelto 285€ no es justo que esto pase tanto dinero publicidad engañosa. juzguen ustedes y no alquiler. todos los que estábamos esperando a recibir las llaves del coches en ese momento estaban inconforme por tatas tasas que cobran. 1 2026-01-11 01:27:48.341077+00 es v5.1 P1.03 {} V- I3 CR-N {} {"J1.02": "Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 s", "P1.03": "Una experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada"} {0.036946736,0.008523289,-0.10194968,-0.04866915,-0.04666472,-0.057591524,0.07338972,0.06838538,0.02222392,-0.042175245,0.061817992,-0.050671212,-0.028754134,-0.018909037,0.030726565,-0.0136147635,0.06427178,-0.045694325,0.038654238,0.021245478,0.025257628,-0.08484324,-0.03995118,0.07985833,-0.05513443,0.014599045,-0.04004829,0.005530336,-0.032643598,-0.042241592,-0.035944473,0.008708606,0.059411727,-0.044978436,0.049263615,-0.07149497,-0.017298313,-0.042662956,-0.07803383,0.08424059,-0.103597164,-0.0047577824,-0.06540203,-0.041286975,-0.06607488,-0.04077835,0.008220919,0.12562908,-0.020699136,0.023449494,-0.017879648,0.0030528824,-0.06282726,-0.060160607,-0.009385569,-0.09430907,0.013251579,0.0068787495,0.037000336,0.01955045,0.007815242,0.031109456,-0.021594623,0.0124670295,-0.0047290283,-0.06457852,0.033753663,-0.025391884,-0.023309354,0.047854606,0.013470348,-0.10965864,0.006896427,-0.03708046,-0.0074386504,0.06955649,0.027624374,0.042800225,0.042232364,-0.0724811,0.028989397,-0.053103037,-0.020899849,-0.04439544,-0.00108068,-0.074152865,0.013008565,0.029329674,0.1421546,-0.08669413,0.02137535,0.13048178,-0.072878726,0.008566964,0.036921587,-0.019127373,0.035027,0.044605654,-0.03669415,-0.019206416,0.10423451,0.0572072,0.0033607925,-0.025950575,-0.04365631,-0.0032239319,0.06995389,0.012722519,0.08983554,0.05426258,-0.12979914,-0.024407871,-0.036283303,-0.09878577,-0.090261266,0.017246515,-0.05666399,-0.04613914,0.06395136,-0.015732177,0.041818295,-0.0362283,-0.037235603,-0.07263734,0.018767733,-0.070167,0.054605167,1.1367186e-32,-0.03469925,0.029475197,-0.010463715,-0.032410383,0.01758776,0.055117145,0.04095849,0.016543068,-0.020113077,0.04252361,-0.042067807,0.01909848,-0.040174864,0.05342569,0.026071904,0.018462384,0.028366338,-0.008236786,0.034144267,-0.035846144,-0.026218975,0.043424267,-0.026820771,0.02107245,-0.02472141,0.10509831,0.008722657,0.0057611815,-0.022968836,0.015186464,0.06668494,-0.060292568,0.004047261,-0.02286444,-0.06441318,-0.05729241,0.00737962,0.050122034,-0.056230213,-0.05266773,-0.071934894,0.020903848,0.052686755,-0.0034100285,0.0071533676,0.03552509,9.0766334e-05,0.029454863,0.033712257,0.014625628,-0.10855024,-0.05749598,-0.10009727,0.044851616,-0.06915461,0.00950509,-0.07907991,0.0022120185,-0.011478693,-0.07181245,-0.07413711,0.030975727,0.060880452,-0.048679456,-0.03369971,-0.021771805,-0.030062092,-0.06851704,0.103746355,0.062334158,-0.042833127,0.0038517683,0.064562894,0.013341358,-0.0069662775,-0.016525615,0.024544172,0.045851756,-0.040713016,0.058063794,0.00014675464,-0.091939084,0.034244943,0.027969614,0.013936129,0.026522687,0.062415987,0.09349115,-0.021685006,0.13945891,-0.056092933,0.08079804,0.058841858,-0.056611635,0.0837898,-1.2681314e-32,0.017868787,0.0012695397,0.06924359,0.009448799,-0.0373891,0.091162905,0.0025452694,-0.056363434,0.0034490244,-0.05613902,-0.08621292,0.00032056824,0.041981068,-0.0045762914,-0.06223843,0.09937977,-0.038008124,-0.07342353,-0.053505916,-0.047061834,-0.025119893,0.054358374,0.013423544,0.11228039,-0.04320446,-0.06792376,0.024630148,-0.008242168,-0.02449312,0.018291892,0.046608713,0.018699415,0.007765288,0.063499615,-0.062167075,0.00087115617,0.06747584,0.09109564,-0.012230994,0.078532256,-0.061480515,0.024987055,0.052573837,-0.05715282,0.017486975,-0.04851692,0.030771958,-0.18947265,-0.010150992,0.028621214,0.10768383,-0.043594155,-0.059265975,0.013498132,0.013912696,0.038494147,-0.036541548,-0.0640146,-0.09958695,-0.046315953,0.080968425,0.03973088,-0.080889426,-0.019388974,0.055959105,-0.033049963,-0.0023665007,-0.014546595,0.07392131,0.025576996,-0.016668491,0.010821137,0.022160862,-0.00032713232,0.008265743,0.06831394,0.038067505,-0.0030292189,0.018325152,-0.061376747,-0.014144326,0.0034928105,0.038722888,-0.086735226,-0.013819284,0.005393237,-0.038585525,-0.008089052,0.021674477,0.002545454,-0.06929792,0.014450679,-0.02848961,-0.025624692,-0.02619691,-5.746607e-08,-0.012126663,0.0040964107,0.0357787,0.04694268,0.026400983,-0.0124147665,0.045296483,0.11544723,-0.014532798,0.051090766,0.041531667,-0.01854195,-0.06206234,0.013950039,-0.05533135,-0.010310087,-0.0019581013,0.07054952,-0.005286475,-0.056034397,0.065587126,-0.0076194163,-0.085472725,0.00026669572,0.020778032,-0.014458293,0.020238174,0.053394284,-0.00019279357,0.0015387882,-0.03635635,-0.010956509,0.016223146,-0.12403351,-0.0199751,-0.07095487,0.02100554,0.04303162,-0.072508894,0.042601816,0.06418415,-0.05921504,-0.06943068,-0.08455003,-0.03490717,-0.060521275,-0.072544284,-0.027473694,0.030712882,0.07917829,-0.0052725784,-0.015538687,0.057982,0.02889076,0.036237862,-0.088653356,-0.023892472,0.05756206,0.0057169637,0.018907145,0.043254096,-0.0069068163,-0.0071485047,-0.03884906} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:03:08.529919+00 2026-01-25 01:27:50.906764+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 239 google review_65 1 t 242 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Great experience using ClickRent. Quick check in and check out and regular shuttles. great experience using clickrent. quick check in and check out and regular shuttles. 5 2026-01-11 01:27:48.340558+00 en v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "absolutely fantastic place best by far in Murcia. great carts and the track is amazing"} {0.05998663,0.009788866,0.011820456,0.02875302,-0.048086647,-0.014600219,-0.060260955,-0.0125509435,-0.05860052,-0.05078959,0.004301685,-0.011216216,0.037222467,0.012843782,-0.026551545,0.059558537,0.1329413,-0.038057044,0.058532026,-0.05708721,0.014609203,-0.06281499,0.045449257,0.07628662,-0.103913166,0.0357191,-0.03970398,0.09125878,-0.03505878,-0.053496014,-0.06446324,0.115627065,0.049814977,-0.011160582,-0.034777608,0.063417755,0.020933235,-0.0439663,0.059949175,-0.008409445,-0.028050156,0.034963407,0.03675257,0.05881902,-0.056005053,0.00012857704,0.038835127,-0.009688435,0.03315972,0.055761807,-0.0022586943,0.013570464,0.06630448,-0.060007274,-0.09359533,0.0041468856,-0.07697886,-0.033122882,0.10069853,-0.06286191,0.07697482,-0.026127763,-0.02780399,-0.02683676,-0.022732766,-0.07723024,-0.102908194,0.04924765,-0.010031924,-0.04124239,0.018087521,-0.0047216844,0.0413249,-0.094607614,0.01703607,0.089808,-0.03925874,-0.040680878,-0.09434533,0.032598097,0.0029454953,-0.032474387,0.028825825,-0.0458234,0.018871963,-0.058396995,0.06750362,-0.020335576,-0.0022922812,-0.069876716,0.023154035,0.041466754,-0.09045318,-0.036105864,0.031149998,0.032746185,0.0042212326,0.047628757,0.029863998,0.021178447,0.013648144,0.03904816,-0.009579766,-0.01824309,-0.0635536,-0.020851905,0.012381343,0.025401136,-0.0060898345,-0.035652637,0.006258215,-0.0055617224,0.031278238,0.0117085315,-0.051883735,0.056173194,0.016512139,0.06403255,-0.03539955,0.04688,0.0018387046,-0.00706139,-0.014744782,0.025789555,-0.0138697615,0.0027240093,0.032835856,-7.746307e-34,-0.0483955,-0.06369448,-0.008119082,-0.022328196,0.077591285,-0.018222349,-0.03621978,-0.022109602,-0.10255725,0.020653013,0.026359241,-0.023001289,0.004089256,-0.017048767,0.0025660219,-0.02990354,0.014089436,-0.05374033,-0.09479271,-0.018413695,-0.0521398,0.009079022,0.035703223,-0.060619008,0.027408754,0.08433708,0.036889967,-0.038345147,0.065794826,0.028919844,-0.025703147,-0.052207746,-0.007612168,0.023830146,-0.030491665,0.045619912,-0.11948957,0.0142678805,-0.041511238,0.020649875,-0.048213635,0.013115335,-0.03454402,0.031601354,-0.042214446,0.04953961,0.041816115,0.024126012,0.07996978,0.008401248,-0.076511905,0.007487864,-0.052533813,0.036141027,0.04276822,-0.05263617,0.032978736,0.042994082,-0.025629245,-0.07718877,0.033137713,0.061261714,-0.015157744,-0.11558391,0.012274821,0.0018510454,-0.047776002,0.033388413,0.087126285,0.060578816,0.030661605,0.030423118,-0.00060237624,0.037376598,0.033059213,0.037917543,-0.05860515,0.017477794,0.0064874943,0.041308675,-0.07266663,0.05720553,-0.0398837,0.04247021,0.037007295,-0.026934199,-0.031541135,-0.068272,-0.09259416,0.011321346,-0.070883855,0.039832998,-0.02652558,0.02320968,0.0032031077,4.20573e-34,0.08676889,0.012622074,0.15489195,0.06331268,-0.056732208,0.024334604,-0.09392076,-0.002807882,0.012384193,0.041655563,-0.08336583,-0.010314101,0.034372166,0.041959904,-0.04002063,0.029942416,0.11615408,0.0215144,-0.021377267,-0.10050031,-0.004672831,0.05269991,-0.016484639,-0.06897317,-0.038229726,0.0510243,-0.055605084,-0.063551486,-0.075783536,-0.027911492,-0.14240527,0.014821905,-0.0031034723,-0.015308089,-0.050442923,0.045113858,-0.021118324,0.047325794,-0.063643254,0.02070272,0.0047168913,0.011912016,0.016212657,0.0831449,0.0029562174,-0.0010403546,0.024283249,0.060166042,0.004039894,0.022551138,0.012718954,0.0056995675,-0.06693579,-0.07165635,0.09659512,0.037574902,0.04400532,-0.017176175,-0.06822604,-0.12329601,-0.07681402,0.022113051,-0.0791283,0.051362578,0.055499036,0.07121154,-0.00088779774,-0.03964363,-0.025550209,-0.014682963,-0.06740796,0.03190611,-0.07256178,0.037959885,-0.00070623175,0.029771712,0.078984484,0.011738926,0.072512805,0.041429467,0.026378317,-0.004794609,-0.018592862,-0.004185623,0.0968193,0.13890709,-0.027615799,-0.13289803,0.070288055,0.064265385,0.06195667,0.14241391,-0.083172545,-0.07675967,-0.027067285,-1.7337692e-08,-0.0073018093,-0.013578336,-0.05678087,0.0049803685,0.003241243,-0.07280016,0.05410357,0.10184744,-0.09004273,0.09896959,0.051676072,0.008740825,-0.012965586,0.018279424,0.055580057,0.010498145,0.09522978,0.05967389,-0.03289267,0.014817108,-0.029901357,0.033722237,0.033009544,0.0493735,-0.06244018,-0.0765094,0.05492614,-0.031080497,0.082311526,-0.028499017,0.033488765,-0.013158868,0.06270776,0.009174838,-0.001475039,-0.05802347,-0.06686844,0.02952796,-0.046678968,-0.024910672,0.011028785,-0.01975516,-0.020764472,-0.018371893,-0.0018870124,0.00950253,0.014239086,0.027663305,-0.025711004,-0.0079469215,-0.12621716,-0.030344745,0.025387855,0.094583526,0.0627558,0.016406715,0.021151576,-0.057688855,0.016117431,0.06281346,0.0016460281,-0.034885682,-0.006871415,-0.0044681476} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.594911+00 2026-01-25 01:27:50.194205+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1237 google ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE 1 t 1240 Soho Club unknown I want to come back! Great place. i want to come back! great place. 5 2025-01-29 18:34:31.336452+00 en v5.1 R1.01 {} V+ I3 CR-N {} {"R1.01": "I want to come back! Great place."} {0.020975357,-0.07413026,0.024197876,0.019191377,-0.0050743776,0.031572778,-0.0076175723,-0.09927201,-0.029914469,-0.074217044,0.017612,0.019681064,0.010602521,-0.020023743,0.027227579,-0.052949525,0.013476122,-0.021862168,0.03215227,-0.036671456,-0.06439344,0.047359243,-0.05028126,0.033482566,-0.028192028,0.068044476,-0.053608835,0.057203535,0.01119367,-0.04736616,-0.01251818,0.05304002,-0.1077875,0.0077802553,0.030134367,0.11382129,-0.012847299,-0.11120186,0.06855515,0.009519167,-0.0046389503,0.047238983,-0.017834466,-0.031464033,0.032143757,0.08685077,0.008981772,-0.020100512,0.13418192,0.0619588,0.08507439,0.10399058,-0.038226534,0.02872491,-0.006338933,0.04084758,0.049327835,-0.062739044,-0.030988375,-0.021813584,0.03584562,0.017719636,-0.050057787,0.07392912,-0.033950794,-0.03757945,-0.04080629,0.02884816,0.033334427,-0.040496282,-0.04046631,0.078004904,-0.01576586,-0.0019513306,0.06368828,-0.010083686,0.009643439,0.018913403,0.02134023,0.05224918,0.13138157,-0.008014441,-0.06866637,0.073606506,-0.0959532,-0.13169387,-0.03636046,0.034830887,0.025775261,-0.042350166,0.05307352,0.077315025,-0.03180649,0.04172081,-0.06888348,-0.071463846,-0.078139275,0.026059031,0.005078721,0.028053496,0.025101021,0.040791612,0.07378826,-0.0074501806,-0.03240732,0.01671579,0.052771803,0.084266774,0.016116325,-0.015041025,-0.05212789,0.031386524,0.02788193,0.02329607,0.021827701,0.045390144,-0.0002609736,0.025189534,0.05135018,-0.012114819,-0.0058526145,0.03507951,0.038475353,-0.020888194,0.026082838,-0.046961814,0.0448213,-6.204312e-33,-0.06529903,0.09782498,0.07036381,0.007969343,0.015634768,0.047052387,-0.027394213,-0.03248095,0.0026374054,-0.008597282,0.041714583,-0.007910922,0.031054627,-0.026858576,-0.050097488,0.008897609,0.020583227,-0.035558168,-0.01685675,0.00717569,-0.0031914208,0.035538573,-0.030064901,0.1102944,0.0016868706,0.0049465206,-0.015651325,-0.038503487,0.0013198116,0.009355606,-0.04725813,0.039783478,-0.0040956135,-0.046411075,-0.017984971,-0.015990505,-0.06889906,-0.041457612,-0.034068253,0.008653072,0.013356374,0.04642229,-0.068083495,0.07715111,0.038803402,-0.063405424,0.06441985,0.0070343106,0.04155182,-0.044892795,-0.09455499,0.0108036725,-0.010653978,0.005581992,-0.014557608,-0.056237068,-0.096980676,0.05622699,-0.007437122,-0.01934252,0.039176587,0.08343408,-0.0232833,-0.0565479,-0.023894025,-0.08608392,0.0030533539,0.011050694,-0.058768194,0.002545888,0.01005087,0.009626325,-0.039679777,-0.037970982,-0.013880498,0.04500316,-0.041442934,-0.0475242,0.012811089,-0.02841832,0.016384443,0.084424086,-0.09536103,0.027268467,0.18440162,-0.013869705,0.020509515,-0.17830214,0.004706987,-0.0036503274,0.0029829713,0.020889139,0.089770295,-0.012547441,-0.017079154,3.3110866e-33,0.08141921,0.017106105,0.014935003,-0.0350331,0.0028670533,-0.0098799225,0.014562138,0.11634443,-0.0057860343,0.065549456,-0.07595769,-0.013365719,0.11704428,0.03538382,-0.10539302,0.03384004,0.07964372,0.06820859,-0.06319337,-0.030179435,-0.017025342,0.074173324,-0.05283701,-0.024577321,-0.051038723,0.017150758,0.051632375,0.027527839,0.029587865,-0.07104767,-0.0440795,-0.033513986,-0.035798434,0.069226645,0.049702287,0.058637954,-0.00034344263,-0.07001296,-0.07200846,0.056413833,0.016064042,-0.02888085,-0.002771769,0.060735215,-0.037566964,0.10068854,0.03566526,0.012835131,-0.0031955405,0.007377294,0.016136969,-0.00095302885,0.0039478536,-0.03532961,0.035475835,-0.03491924,0.0652119,-0.054661397,0.013598589,0.0024103783,-0.10540659,0.010575704,0.020311838,0.09277449,0.104149975,-0.044459455,0.024267752,0.029153828,-0.09203317,-0.043597993,-0.04498873,-0.014610952,-0.053429794,0.06297935,0.008259962,-0.056136314,0.0870903,-0.11797062,-0.049568348,0.0095282355,0.081859246,0.052359905,-0.014155907,-0.04411385,0.049766622,-0.053523257,-0.029422846,-0.0018871063,-0.0027974467,-0.036883295,-0.005499185,0.015812386,0.0041071153,-0.059724227,0.00049164944,-1.7491224e-08,-0.03664619,0.052730337,0.040701803,0.04173729,0.018147156,-0.038137797,-0.061424065,0.043733485,-0.017286016,-0.044292152,-0.052974038,0.0053711985,-0.015799364,0.002047793,0.03776885,0.056544747,0.06662414,-0.014499133,0.045859434,-0.01809339,-0.104449674,0.013301076,-0.010652528,0.09608121,-0.009767594,0.047573004,0.047802042,0.0073670754,0.030913036,-0.07480659,0.0009517611,0.007926158,-0.04398867,0.02103231,-0.033625837,-0.040895153,-0.061900232,-0.04563107,0.032037444,-0.08998029,-0.057700135,0.01924192,0.010703621,0.019700484,-0.084274724,-0.03298458,0.039182827,0.06402102,-0.021287028,-0.06048502,-0.120548196,-0.0788332,0.015490121,-0.014538162,-0.0018207055,0.075528905,-0.07597,-0.041814443,-0.057679616,0.10046818,0.04986088,0.0854406,-0.097776905,-0.037665337} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:39.640752+00 2026-01-29 18:36:00.555285+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 339 google Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB 1 t 342 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. W punkcie trwała kłótnia z trzema niezależnymi rodzinami. Jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy. brak możliwości załatwienia formalności w biurze jak i na infolinii. z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. w punkcie trwała kłótnia z trzema niezależnymi rodzinami. jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. młoda i bardzo opryskliwa i niemiła obsługa:( biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy. 1 2026-01-04 01:27:48.34122+00 pl v5.1 J1.02 {} V- I2 CR-N {} {"A1.02": "Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można ", "J1.02": "Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokument"} {-0.05421878,0.09279945,-0.06964505,-0.008811494,-0.12142523,-0.064369224,0.12409214,0.0863256,-0.027292,-0.02266389,-0.0026802965,0.059790812,0.040148996,0.061808836,-0.023523504,0.077891275,0.009764627,0.06685564,-0.11118166,0.09913217,0.07212938,-0.052666534,0.058836393,-0.0033311127,-0.021750253,0.037703745,-0.011873656,0.047324277,0.013338448,-0.037182994,0.00662622,0.15108326,0.04049458,-0.1057911,0.06342835,0.032364428,0.014045901,-0.04257419,0.013065522,0.04253827,0.00094121846,0.0017990482,-0.10041028,0.0056804884,0.026482789,-0.022162339,-0.007140558,0.05823341,-0.042674284,0.014971527,-0.12074543,-0.09901547,0.008473823,-0.025596768,-0.0062292223,-0.10630094,0.0011882923,0.09297196,0.0030106783,0.019266503,0.017322004,0.005361857,-0.0061649643,0.002447465,0.05672161,-0.016890474,0.025192492,-0.02339926,-0.04807312,0.01638751,0.09903795,-0.030952023,-0.014791481,-0.009380807,-0.15453278,0.045748573,0.080517665,-0.050576117,-0.00698633,-0.041430216,0.08791437,-0.021056792,-0.03975191,-0.010627496,0.060681563,-0.004841731,-0.068458945,0.046849336,0.0027963524,0.03306322,0.04573836,0.048467077,-0.008404864,-0.054822735,-0.028165571,-0.014890389,-0.0016808786,-0.05946074,0.0053411066,0.025436811,0.025945453,-0.04474836,0.13765734,-0.0039522466,-0.046934746,0.00084102014,0.053930435,-0.037738606,-0.01703594,0.024149437,-0.12632494,-0.07059764,-0.002417919,-0.03004826,-0.031286284,0.016709536,0.02434041,0.090739556,-0.03870972,0.0044798926,-0.058937553,-0.015741413,-0.0037205159,-0.044051193,-0.003160537,0.047628693,0.022287898,2.783072e-32,-0.017705403,-0.03408703,-0.034282442,-0.0027752244,0.007356649,0.0022491263,-0.021458592,-0.05145416,0.0034844563,-0.051533606,-0.043075655,-0.0087703625,0.024079533,-0.025570875,-0.03303225,0.003913614,0.02339931,-0.07222595,-0.00828452,0.11400771,0.07543077,0.035832167,-0.01722559,-0.0092755975,-0.05611315,0.038475018,-0.0055646994,-0.06138614,-0.022599708,0.013463608,0.07705915,-0.045662228,-0.061060727,-0.08863115,-0.008444926,-0.019685626,-0.015251403,-0.011329547,-0.010666845,-0.09750192,-0.070291616,-0.051988173,-0.060840864,0.12169123,0.036637675,0.04951358,-0.023250984,-0.0033588728,0.09220957,-0.0103964405,0.011346104,-0.020627579,-0.07377001,-0.0016641654,-0.06274999,0.014005136,-0.050714474,0.034356233,0.098152466,-0.047328644,0.047274303,0.0334603,0.08228798,-0.035226166,0.06364994,-0.08570463,-0.09291702,-0.04023782,0.04800173,-0.031834338,-0.027041387,-0.057074353,0.030581407,0.05252478,0.043332513,-0.046675187,0.08746458,-0.0590472,-0.032337435,0.008690813,0.041484654,-0.0655436,0.027565494,-0.043715972,-0.0008232328,0.051380433,0.009735527,-0.010583631,-0.013807763,0.05782582,0.0047608265,0.016398685,-0.011232317,-0.07413368,0.01378932,-2.47008e-32,0.07393881,0.04249693,0.014266214,-0.04022794,-0.0017165017,-0.024653485,-0.1281242,-0.045149937,0.026315799,-0.015694432,0.03182338,-0.11713974,0.018606815,0.05310257,-0.06807338,-0.006879939,-0.034244295,0.043393686,-0.042924717,-0.039556917,-0.10518112,0.024467774,-0.07098664,0.06385572,-0.04054011,0.04193314,-0.0023117731,-0.095540725,0.03382097,0.050472196,-0.0068635624,0.026116103,-0.08290737,0.024822654,0.073671505,0.005956287,0.0030273353,-0.017964605,-0.024747217,-0.01450888,-0.014021159,0.040414635,-0.044757154,-0.04943881,-0.0041224277,-0.0077019115,-0.0053397827,-0.022337362,-0.022852119,-0.024951689,0.11557805,0.08496348,-0.04136269,-0.046092436,0.10500912,0.0095864115,0.028137816,-0.099953935,-0.030115077,0.021881055,0.006370098,-0.037975654,0.01558368,-0.022888271,0.042952396,0.050462842,0.049239453,0.06759443,0.12376583,-0.033740867,-0.028281147,0.035555325,-0.030270278,0.031588078,-0.008764048,0.039527994,-0.09386449,-0.0048968224,-0.012250761,-0.066074595,0.042316847,-0.016921705,-0.03133661,0.035960644,-0.028920365,-0.017515317,-0.010062869,0.051984478,0.007541327,-0.08782498,0.015283617,0.012475112,0.00016727069,0.054159317,0.06519512,-6.88334e-08,0.05548057,-0.06759477,0.055013247,0.04050127,0.07221203,-0.063658655,-0.02035733,0.009852744,0.027692808,0.035888586,0.037606064,0.06782988,-0.028006634,-0.04207789,-0.05405962,0.09867175,0.039540425,-0.06736564,0.020457728,-0.03160485,0.05808569,-0.07642159,-0.089334525,0.059708692,0.00849049,-0.030613672,-0.0076657874,0.051327694,0.029664813,-0.040299848,0.039424356,-0.0196431,-0.03315804,-0.04464761,0.004970077,-0.009044363,0.016327089,0.011242896,-0.05251657,-0.001064022,0.013352631,-0.055119794,0.06506587,0.043151863,-0.08784681,-0.04979771,0.007924624,-0.014815648,0.059126437,-0.040654138,-0.060123637,0.0559474,0.03045229,0.027333653,-0.030118393,0.051887777,0.014437949,0.071576126,-0.041041497,-0.027482815,0.051493905,0.035531443,-0.0018931953,-0.115601994} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:06:17.107624+00 2026-01-25 01:27:51.01337+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 394 google Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB 1 t 397 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Impuestos inventados para sacarte el dinero.\n96e más tuve que pagar por el combustible.. Era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito.\n55e más por entregar el coche fuera de horario laboral.\n\nUn robo impuestos inventados para sacarte el dinero. 96e más tuve que pagar por el combustible.. era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito. 55e más por entregar el coche fuera de horario laboral. un robo 1 2026-01-04 01:27:48.341672+00 es v5.1 P1.03 {} V- I3 CR-N {} {"P1.03": "Impuestos inventados para sacarte el dinero. 96e más tuve que pagar por el combustible.. Era eso o d"} {-0.02288685,0.094210744,-0.06827531,-0.05101798,-0.06961028,-0.05926127,0.027628703,0.05212045,-0.05858683,-0.004107424,0.011609055,0.00852771,-0.02682691,-0.0009451001,0.007904552,-0.06110598,0.017453521,-0.0031624876,0.0070112697,0.050589528,0.0730536,-0.040197797,-0.0977421,0.031197932,-0.035080444,-0.0034885665,-0.0010383789,-0.009491645,-0.06180997,-0.006432452,0.001755394,0.09428175,0.099575564,-0.016279295,-0.0065497914,-0.07779735,0.06975146,-0.00014095652,-0.01859024,0.028457422,-0.07053536,-0.021847775,0.00096607074,-0.08084074,0.015086185,-0.021785572,-0.01895985,0.08729757,0.025465079,-0.004738676,-0.094522476,0.036948558,0.0063052233,-0.053263325,-0.0181669,-0.09583112,0.066054285,-0.0003027486,0.053606387,-0.020940512,0.027762895,0.027311463,-0.018275553,0.046352737,0.08446356,-0.006880341,0.04763328,-0.0606799,-0.07725566,0.055728957,0.08920871,-0.114037596,0.013984006,-0.041593734,-0.009111828,0.01954954,0.021307843,0.025136998,-0.060349066,-0.06174572,-0.022545215,-0.10063867,-0.0026891744,-0.054941483,-0.041847043,0.028594643,-0.036031727,0.045318183,0.06989254,-0.041779254,0.0086550405,0.08222743,-0.01609856,-0.08700019,0.030195711,0.018416911,-0.00912513,0.014045939,0.066596,-0.018109124,0.06803062,0.107054114,-0.045084663,-0.04920963,0.055921014,-0.00497687,0.058362313,0.0043042935,0.009503889,0.002789493,-0.070137255,-0.004142534,0.065808855,-0.06257301,-0.037869148,-0.0561766,-0.08531822,-0.04292035,0.007113669,0.02052337,0.08586714,0.06111159,-0.046244245,-0.02728701,-0.01871263,-0.026036346,0.05062063,1.0088437e-32,-0.06753288,-0.031206314,0.0049869064,0.015835479,-0.0028720493,-0.010431343,-0.030308317,0.0408287,-0.026899274,0.035201702,-0.02855107,-0.019317636,-0.048528537,0.015756015,0.03804911,-0.0088878395,0.016965292,-0.017172037,0.064763576,-0.010825496,-0.054061748,-0.08151262,0.032579966,0.019764505,0.009060446,0.13970412,0.021612393,-0.012880283,0.011078551,0.05520695,0.012270033,0.022072427,0.0010685765,-0.005898711,-0.05891256,0.06106508,-0.03045563,0.042548943,-0.053495973,-0.022775877,-0.015603293,0.045809634,-0.060991902,0.004628282,-0.02359392,0.04979805,0.069706455,0.025475057,0.08934076,0.07041325,-0.11550233,-0.020831127,-0.10999205,-0.030807024,-0.047264498,-0.06682179,-0.022167968,-0.053686924,0.022543939,-0.08171384,-0.01611247,-0.0075559462,-0.050743897,0.0026854088,-0.07423268,0.04873891,0.017685879,-0.014128492,0.043000452,0.07876119,-0.031323444,-0.0805381,0.00503784,-0.017881993,3.3109878e-05,0.02924665,0.06286213,-0.011709228,-0.027618134,0.007820339,-0.013365911,-0.054299433,0.02093004,0.012346461,0.091742285,0.17482425,0.03887511,0.071940735,-0.009894804,0.04891075,-0.017723352,-0.0077410364,0.039385576,-0.053735606,0.14128788,-1.1926899e-32,0.0074207243,-0.0017259754,-0.044000257,0.048446283,-0.02355525,-0.005330254,-0.051678717,-0.015311634,0.0039779805,-0.07165886,-0.07591777,-0.060253523,0.11378344,0.03283472,-0.026302772,0.06401075,0.012366637,-0.09759738,-0.03385203,-0.06436533,-0.015814496,0.020367743,0.055625793,0.021823047,-0.021916576,-0.030753357,-0.034958158,-0.014377941,-0.04775356,-0.027722618,-0.012739655,-0.0122113265,0.046667155,0.07570046,-0.045223463,-0.030398326,0.0523819,0.076145425,0.029627047,-0.025469406,-0.019446423,0.0859592,0.016171187,-0.050566345,0.027765136,-0.06542314,0.017283233,-0.13657045,0.07244711,0.021714497,0.088769004,-0.011496846,-0.024158468,-0.030856986,-0.020010047,0.09211049,0.06556195,-0.013514678,-0.03452322,-0.041241333,0.0133091165,0.08203275,-0.012850101,0.0523389,0.058733355,0.012202184,-0.01895277,0.039862175,0.041286506,-0.038892757,0.098123424,-0.030637179,-0.027897693,0.049408473,-0.07814029,0.018533507,-0.07933379,0.07026113,-0.0072431536,0.019357674,-0.051404584,0.054475218,0.022464342,0.01579759,-0.00915426,-0.082211055,-0.028477008,-0.04821803,-0.074588045,-0.03867787,-0.069364056,-0.01486206,-0.058355514,-0.048858825,-0.010197323,-4.9308653e-08,-0.016871942,-0.055288397,-0.043585338,0.05812816,0.07568427,-0.023558589,-0.0016383698,0.010530878,-0.032449134,0.020248838,0.05491669,-0.02102446,-0.039136235,0.05145885,-0.030524118,-0.04307667,-0.0025683327,-0.007817792,-0.045462225,-0.008207712,0.11584399,-0.035848398,-0.02655317,0.020012492,-0.015442162,-0.0064381054,0.0035584883,0.071084544,0.025439486,-0.06186777,-0.11210598,0.017518321,-0.010863214,-0.111847065,0.008483832,-0.017109655,-0.032328177,0.006399773,-0.061017707,-0.027157951,0.068045564,-0.07479983,-0.09329762,-0.050424803,-0.07209213,-0.062410004,-0.07454036,-0.03295977,-0.001086582,0.08782539,0.0030272366,0.08249033,0.09303348,0.050204646,0.04655585,-0.028611727,0.04336928,-0.030719537,-0.052343566,-0.00833607,0.15782943,0.0130230775,0.033315837,-0.06875334} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:05:51.305004+00 2026-01-25 01:27:51.241316+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 418 google Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB 1 t 421 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super freundliches Personal, zuverlässig. Das Auto war sauber und gepflegt. Reservierung dort, gerne wieder 👍🏻 super freundliches personal, zuverlässig. das auto war sauber und gepflegt. reservierung dort, gerne wieder 👍🏻 5 2026-01-04 01:27:48.341807+00 de v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Super freundliches Personal, zuverlässig.", "O1.01": "Das Auto war sauber und gepflegt.", "R1.01": "Reservierung dort, gerne wieder 👍🏻"} {-0.0534413,0.11803602,0.028514963,-0.00033498954,-0.008534824,0.10609706,0.014827915,0.14163771,-0.05905662,0.04765,0.01191863,-0.006767263,-0.04573699,0.004338924,-0.059779502,-0.061618503,-0.021718139,0.001946778,-0.085185595,0.117588125,-0.040591627,-0.033142485,0.053638037,0.05461578,-0.019459104,-0.012424307,-0.0416911,0.014848362,0.019209618,0.010858866,0.008361075,0.028994739,0.049868625,0.032849856,0.0072310087,-0.053166807,-0.009096676,-0.0178896,-0.02840957,0.027335811,-0.04316585,-0.061722007,-0.0848593,-0.054942586,0.013400466,0.03107448,0.017403783,0.054554634,-0.09292384,0.021829316,-0.17559166,-0.06955514,0.028813574,-0.03411747,0.028165152,-0.013231643,0.0092377355,-0.08172924,-0.0353019,-0.007140797,0.013019858,0.011317474,-0.027760545,0.03482259,-0.05400266,0.017960634,-0.020600451,0.03582991,0.025897697,0.10046439,0.10637775,-0.0700533,-0.032544877,0.04617038,-0.011220167,-0.036457513,-0.04379476,-0.02417016,0.041475955,-0.061923295,-0.014465862,-0.075171,-0.014851702,-0.009317959,0.010411698,-0.08656579,0.020102013,-0.016047677,0.0009584187,0.06071476,-0.09106451,-0.05317104,-0.04882893,0.0077922526,-0.1076525,0.056802694,0.006380071,-0.0529955,-0.001979556,0.041879207,0.046302628,-0.031693388,0.06266787,0.12555914,-0.08014527,0.031654164,-0.049723513,-0.037706807,-0.052556768,0.025844147,-0.04225783,-0.07785495,-0.006054305,-0.07818656,0.02340133,-0.01450165,-0.045205973,0.021995192,-0.03251614,0.032914385,0.037371933,-0.027405003,-0.019392157,-0.021215107,0.014258206,-0.025803061,-0.0051643304,6.361288e-33,-0.05796911,-0.077032626,-0.046906047,0.074657716,-0.042984396,0.003418672,-0.062850624,0.021454217,0.050756052,-0.01616559,0.035786927,0.06303257,0.0014188219,-0.02746931,-0.04243432,0.0550156,-0.05490565,-0.059381064,0.06924841,-0.0030211958,0.010264459,0.022800168,0.016101949,0.019034594,0.026141318,-0.015763722,0.07005507,-0.008840273,-0.013272428,0.039415278,0.062317863,-0.022072041,-0.042452544,-0.07043987,-0.014989247,0.034911953,-0.030262336,-0.014387848,-0.014695283,0.023984553,0.031927586,-0.022859108,-0.030020554,-0.0038093047,-0.030651804,0.074172415,0.018673643,0.022118723,-0.0031612846,-0.013018241,-0.07169707,-0.05800465,-0.05350646,-0.019565584,-0.0497709,0.109111525,-0.059288017,0.057005163,-0.08645372,-0.11267,0.04148438,-0.019751117,0.0026746863,0.027782457,-0.024820333,-0.05558431,0.007625612,-0.022873083,0.04259455,0.06851832,-0.067319185,0.04595781,0.022924654,-0.01316486,0.020757776,0.0114654815,0.01595383,0.012650409,-0.07829872,-0.043184165,-0.07202546,0.104465365,0.0405514,0.026583899,0.026424207,-0.06178857,-0.012596057,-0.0027101727,0.07851993,0.10993263,-0.0059650857,-0.041263927,0.054441605,0.049241878,-0.02820916,-8.437321e-33,0.037110176,-0.017366758,-0.009468217,0.077434145,0.082829736,0.065833256,-0.07464676,0.056798972,-0.051786337,0.0033513724,-0.0072485744,0.015031587,0.15583484,-0.029165454,-0.0075715478,-0.047597922,0.073642306,-0.025327362,-0.013983977,-0.08418881,0.02842423,-0.003359071,0.015289804,-0.031798154,-0.033790324,-0.027062776,0.012449839,0.061102293,-0.050890252,0.011203903,0.07283424,0.035033397,-0.030213753,-0.021374196,0.004690291,0.025269143,0.025318392,0.058964573,-0.040732943,0.06861754,-0.024156181,-0.011880597,0.045045637,0.051771343,0.047544207,-0.012838653,-0.023944667,-0.06449394,0.039425746,-0.024277002,0.0008632671,-0.041131828,-0.02047607,-0.10469508,0.026784606,-0.018936513,0.11544075,-0.1499971,-0.010367097,0.10519751,0.06103603,0.08004505,-0.046894174,0.013326883,-0.041530278,-0.075029545,-0.13863178,-0.03383348,0.05565234,-0.0062498283,0.04686601,0.0111536905,-0.0051280954,0.08207709,-0.041889537,0.006989986,-0.016311588,0.03252947,0.048114438,-0.01591059,-0.023388049,-0.0104679065,-0.008331128,0.040511098,-0.1122433,-0.04131096,-0.019640954,0.07033952,-0.0020579265,0.008630099,0.004739204,0.056226835,-0.0129846595,-0.06018674,-0.071987994,-3.9198984e-08,0.016084448,0.014738522,0.052627023,0.01377243,0.0026232586,-0.041953225,-0.040349867,-0.039014462,-0.008581119,0.057410095,-0.07110696,0.019584877,0.03916499,0.056250848,-0.08052306,-0.016800538,0.048773434,0.06553921,-0.04984216,0.012271934,0.13254239,-0.045202855,-0.09351421,0.0052790097,-0.0063455654,-0.0032389904,-0.03776539,-0.010736381,-0.05766179,0.015117252,-0.0053830747,0.116468094,0.09438021,-0.021084372,-0.08541018,0.021070836,0.06307196,0.0253101,-0.07922604,-0.06479358,0.1298762,-0.024549805,0.007409498,-0.019699002,-0.015498081,-0.077435285,0.055450153,-0.03245769,0.006731703,0.06985269,-0.033394706,-0.015502987,0.015358119,0.082940385,0.02696364,0.041242473,0.01713731,0.015011351,-0.05109952,-0.042540424,0.045561574,0.03537646,-0.039069254,0.05749472} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:05:40.279903+00 2026-01-25 01:27:51.330128+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 570 google Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB 1 t 573 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buen trato del personal y buen precio de alquiler. buen trato del personal y buen precio de alquiler. 5 2026-01-04 01:27:48.342614+00 es v5.1 A1.01 {P1.01} V+ I2 CR-N {} {"A1.01": "Buen trato del personal y buen precio de alquiler."} {0.020664172,0.048347555,0.00322626,-0.019227937,-0.10376204,0.025742028,0.14005181,0.04052984,-0.0111224335,-0.011036584,0.07172123,-0.04793866,-0.06108107,-0.07055924,0.04684166,0.046965428,0.019830937,0.028354025,-0.014051641,0.05915654,-0.0060328543,-0.028240005,-0.039479785,0.12348233,-0.020898826,-0.053511016,0.0060566813,0.033643275,-0.010022151,-0.009921062,0.0062247277,0.052457884,0.12738842,0.01055689,-0.0004985358,-0.016593898,-0.016285209,0.0048956973,-0.021013616,0.06423673,-0.08198803,-0.0990343,0.004061291,0.021633102,0.011315278,-0.014396279,0.044415172,0.09528041,0.010296435,-0.015217881,-0.088582225,0.03355939,-0.031985924,0.059420846,0.024255674,0.040331136,0.005321101,-0.040731728,0.028463202,0.024750724,-0.042321213,0.01441694,-0.069895744,0.01594173,0.10319659,0.025890106,0.0008629309,-0.012199406,-0.01669536,0.036645792,0.098211855,-0.13605173,-0.017552288,0.050891954,-0.0182246,0.019749576,-0.038021404,0.0039244876,-0.042307086,-0.013754457,0.012642615,0.0057860343,-0.06097675,0.020445066,-0.014500464,-0.05525616,0.009750449,-0.033706434,0.051727947,0.01074173,-0.050341856,0.012020365,-0.049545106,-0.028352061,-0.057296474,0.037195396,0.015233652,-0.018621609,0.011209012,0.061003104,0.053593528,-0.01849362,0.0609905,0.098070055,-0.033171587,-0.004434386,0.09089043,-0.0024094966,0.008451229,0.021877851,-0.05306987,-0.059866454,-0.05608419,-0.052923962,0.026927438,0.015773231,-5.1620664e-05,-0.02026462,0.03369354,-0.069889694,0.06264491,0.047193106,-0.022153351,0.016638055,-0.047206905,-0.054158013,0.022174876,2.9997797e-33,-0.041232884,-0.08290503,0.009702125,0.06191086,-0.04589129,0.058238905,-0.06932916,-0.011613391,0.008319785,0.033955682,0.0151572935,0.078904144,-0.007897594,0.01656356,0.025850717,0.040940154,-0.04008396,0.022650188,0.1304986,0.012542444,-0.095417485,-0.056110945,-0.0728094,0.019732805,-0.022926452,0.010603951,-0.028933447,-0.065229714,-0.02687662,0.023833632,0.117192514,0.10744013,-0.0090574585,-0.09134415,-0.05698883,-0.06966037,-0.049563233,0.035698947,-0.014697959,0.0033905883,-0.013658236,0.029399564,0.07009651,0.024013432,0.028474841,-0.07675923,-0.008462853,0.09168955,-0.045610648,0.018095074,-0.02899191,-0.06944896,-0.11626459,0.015845062,-0.040288445,0.037533704,-0.039827544,0.059392404,-0.05698795,-0.011307569,-0.0045808526,0.0771696,0.02996112,-0.03945428,-0.08521798,-0.014188054,0.09694278,0.010949483,0.09508659,0.0028865477,-0.06514485,-0.021224827,0.029145768,-0.035997786,-0.044539347,0.021902388,-0.05057286,0.022352284,-0.024970345,-0.024916,-0.09102086,0.019491324,0.06710903,0.040690504,0.04890929,0.084506765,0.010107831,-0.016999668,-0.006159844,0.09943504,-0.053978745,0.0044927225,0.059390794,0.04265413,-0.009678435,-3.831006e-33,0.034685258,-0.034926824,-0.04337349,0.008835049,0.012316399,-0.023690691,-0.04069463,-0.036178663,-0.01710417,0.049112935,-0.029457932,-0.11528772,0.15997167,-0.016059106,-0.024113629,0.077948675,0.024349807,-0.05821745,-0.103147395,-0.08323174,-0.004742065,0.016070016,0.012866866,0.073080815,-0.0535497,-0.08154028,0.04076625,0.031404458,0.023752114,-0.0033582535,0.01996817,0.029552873,-0.050817847,0.015715422,0.037713006,0.05573532,-0.012101253,0.023598917,0.046639156,0.010002847,-0.006259358,0.029109024,-0.030655852,0.0031465814,-0.0045254873,0.045826294,-0.011031671,-0.14724447,0.011939212,-0.025918629,0.069216885,-0.040003702,-0.009985927,-0.028013855,-0.044643734,-0.0041356618,-0.012927888,-0.1295501,-0.05984198,-0.045516647,0.041814763,-0.010342933,0.0034370276,-0.008744485,-0.0026710662,-0.018825023,-0.1076225,0.075287096,0.0063837743,0.022160066,0.04827615,-0.122422375,-0.0056469464,0.04715861,-0.073382914,-0.018420015,-0.015816208,-0.046362694,0.060710154,0.024607528,-0.07229554,0.031651586,0.0034296482,-0.041313406,-0.035209827,-0.077439636,-0.03583086,0.014310588,-0.015342873,0.047343913,0.059626073,-0.0010550463,-0.059788704,-0.115388766,-0.0930641,-2.3981011e-08,0.032246646,-0.056403074,0.04236365,0.098511785,0.073532104,-0.046621203,-0.06124564,0.015591396,0.04630137,0.08395935,-0.06236826,0.006491363,-0.04339897,0.037758004,-0.009945278,0.061442,0.0806578,-0.019919762,-0.0003004146,-0.10214795,0.09106976,-0.027263185,-0.042691994,-0.02689205,-0.012104555,0.059911758,-0.029117148,0.017396495,-0.007599184,0.05168376,0.044702,0.04223475,-0.012052453,-0.06070869,0.040821906,0.04740287,-0.008433661,-0.005078255,-0.028781973,-0.009943883,0.047512595,0.011485848,-0.038394712,0.018466668,0.017931413,-0.10569324,0.001623833,0.07222674,0.004882971,0.04057945,0.012864338,-0.06942988,0.110409625,0.014835702,0.048622184,0.00030873378,0.054369617,0.043565273,-0.008229069,-0.010842767,0.050113756,0.11938651,-0.008229216,-0.07117859} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:05:26.307171+00 2026-01-25 01:27:51.903805+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1459 google ChdDSUhNMG9nS0VJQ0FnSUREMnZmNjVRRRAB 1 t 1462 Go Karts Mar Menor unknown The best place in the area for karting without a doubt, the staff are very friendly and professional. 10/10 the best place in the area for karting without a doubt, the staff are very friendly and professional. 10/10 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {P2.01,V4.01} V+ I3 CR-B {} {"P1.01": "The best place in the area for karting without a doubt, the staff are very friendly and professional"} {0.066171035,-0.044264894,-0.019575654,0.047261536,-0.07827207,0.027542736,-0.034160584,-0.03298112,-0.0029898798,0.019466093,0.020151839,0.017900854,-0.035436053,0.07995582,0.0100687705,-0.07902584,0.14819412,-0.06525946,0.07258686,-0.08684651,-0.03689656,0.002573474,0.048309732,0.004017806,-0.05870806,-0.04439993,-0.0059648864,0.084188744,0.039207727,-0.016134998,-0.06829135,0.037655354,-0.021402327,-0.01339228,-0.0027592846,0.08281839,-0.059212636,-0.04679404,-0.0061598434,0.0068062167,-0.012313254,0.017670058,0.018639393,-0.061988614,0.009425481,0.06617742,0.0018215111,-0.037319366,0.024479678,0.0017814254,0.086977206,-0.077849805,0.09868648,-0.021466702,0.0019277922,-0.06264764,-0.08526137,-0.021306593,0.0464409,0.00085163664,0.055373684,0.0021842024,-0.06403735,0.02645122,-0.0788752,-0.05463423,-0.087601475,0.0985377,0.02668941,-0.11346048,-0.011715804,-0.009514781,0.0070372703,0.016713688,0.032062784,0.016201867,-0.036855906,-7.6385404e-05,-0.04373167,-0.03179625,0.052174162,-0.03594945,0.0702945,0.0051118345,-0.023165535,-0.06539419,0.09467145,-0.02007365,0.032557063,0.040653612,-0.0013732901,0.15454672,-0.07825119,-0.06574689,-0.021713562,0.07171967,-0.018481316,0.05918141,-0.036384176,0.021792125,-0.011898248,0.061973225,0.0015807687,0.005394973,-0.05718225,0.035766464,-0.06563471,0.0029777256,0.0009897985,0.01601856,0.0025843428,0.007008076,-0.051698573,-0.05065891,-0.018979108,-0.0019984466,0.012259309,0.0568049,-0.035768762,0.0037245017,-0.028328007,0.017715136,-0.0025537526,0.04133122,0.061449323,0.057015844,0.033039264,-3.088081e-33,-0.04688292,0.038335934,-0.025356727,-0.01317096,0.08084393,-0.0622202,-0.049688946,-0.09167821,-0.013027541,0.000700279,0.046235763,0.03108235,0.002242808,-0.11218833,0.0822522,0.017826125,-0.0069343313,0.006204944,-0.12516636,-0.00820083,-0.033658292,-0.051019844,-0.031853996,0.09494591,-0.0023290555,0.006056995,0.08572781,-0.007017505,0.09135078,0.011933506,-0.07094538,-0.009466058,-0.03391308,-0.034660798,-0.0039076633,0.06894773,-0.057533026,-0.04812942,-0.021675225,0.007961891,-0.02041893,-0.050201315,0.024989106,0.011655103,-0.03325988,0.03204006,0.057929102,0.019333387,-0.004651991,-0.010724737,-0.112755656,-0.00029725183,0.082617335,0.10895457,0.021695938,0.014986834,0.08472344,0.017417837,0.011360607,-0.03346779,0.030751294,0.08940619,-0.02951826,-0.045797575,-0.082084194,-0.10438934,0.007930617,-0.015766772,0.09403319,-0.033477172,-0.04604607,0.104036905,0.068967305,0.0038117305,0.0046515795,0.030622268,-0.09861101,0.038900565,0.018437594,0.080655076,-0.030386243,0.02462772,-0.0674532,0.07288152,0.071825154,-0.0942409,0.0025508672,-0.051210176,-0.048877764,0.039524406,-0.08411345,0.00035156443,0.057756804,0.096466064,0.008376051,1.285664e-33,0.07324333,-0.012285256,0.093035385,0.091156974,0.022282952,0.074791975,0.015976498,-0.04836871,0.035239052,0.039075464,-0.13295743,0.03889234,-0.035054658,0.016805435,0.010436583,-0.031788513,-0.010674982,0.0075558815,0.008238198,-0.074035354,0.035983015,0.070305794,0.005970827,-0.010636245,-0.0075875022,0.058010936,-0.03627179,-0.0778468,-0.13974488,0.047148183,-0.04977258,-0.037078537,0.012174445,-0.00041095648,-0.033736575,0.013460744,0.035747606,0.04088144,-0.055815358,0.05954702,0.101362705,-0.009681558,-0.03961114,-0.007074599,-0.016182894,-0.06960453,0.052752696,-0.019558854,-0.004112177,-0.021785367,-0.0046687466,0.031789016,-0.10357723,-0.02065024,-0.003575109,-0.007414107,0.042992797,0.02895293,-0.07886625,-0.02746987,-0.019541733,0.040804356,0.02362313,0.13521847,0.035824474,0.013118867,-0.01700706,0.043466892,-0.042519443,-0.0046641603,-0.116280645,0.041091274,0.039871797,0.020335589,0.02126843,-0.00041852647,0.11172601,-0.041673653,0.032035645,0.04752048,0.04332218,-0.031858526,-0.030680139,0.040379137,0.050881833,0.067126766,-0.010316701,-0.028553639,0.019551277,-0.028886372,0.03087545,0.07003936,-0.011326638,-0.038724195,-0.048894167,-2.4703338e-08,-0.037531473,0.042904202,-0.024457904,-0.018491171,-0.01472749,-0.09503216,0.010118327,0.074235775,-0.08251181,0.04116604,-0.011240914,-0.049349774,0.014800071,-0.016475221,0.045698423,0.026648642,0.0270393,0.09071089,-0.07954278,0.0021365834,0.00895137,0.022465691,-0.038033437,0.0029659332,-0.053570747,-0.019006966,-0.029905414,-0.04364404,-0.036331255,-0.046366576,-0.0037127647,-0.009659878,0.009114361,0.053125422,0.041453227,-0.008831661,-0.08070375,0.006719311,-0.013750487,0.04585978,-0.10513541,-0.11916667,-0.039033722,0.012629424,-0.03991677,0.088432685,0.032688253,0.025715778,-0.042804036,0.040162172,-0.09442516,-0.02242116,-0.004453214,-0.017900083,0.030847097,0.02011693,0.014569281,-0.084924296,-0.0039828136,0.04317036,-0.054283198,-0.0021018304,-0.009696117,0.08368563} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.323936+00 2026-01-30 02:01:09.424406+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1238 google ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB 1 t 1241 Soho Club unknown Super service, kind bartender, loved it! super service, kind bartender, loved it! 5 2025-01-29 18:34:31.336452+00 da v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Super service, kind bartender, loved it!"} {-0.087844454,0.016336681,-0.0012785147,-0.013616529,-0.12782589,-0.004513746,0.0766587,-0.03481778,-0.029950408,-0.024248637,-0.014915064,0.08204184,0.031959355,0.07275224,-0.0136947995,-0.043916777,0.07530386,-0.10099729,0.0469058,-0.071675174,-0.03277109,-0.039941784,-0.053065773,0.026286216,-0.021462241,0.025976568,-0.04698016,0.010392649,-0.03511006,-0.07381791,-0.035401355,0.062370595,-0.0504086,0.009253552,-0.0651937,0.01841669,0.07589166,-0.019374039,0.015008873,0.060970064,-0.0066168196,0.025000496,-0.009627081,-0.009121303,0.051110398,0.0075469776,0.01833356,-0.032284603,0.07278283,0.024701318,-0.047181025,-0.033433784,0.07173758,-0.041769046,0.0063050133,0.03144398,-0.027904384,-0.07258503,-0.012790547,0.04409091,-0.061997455,0.038286645,-0.012309828,0.04068016,0.08503025,0.008112646,-0.10660527,0.035234366,-0.0038993752,-0.0117197735,-0.052760355,-0.012584735,0.038609765,-0.021644594,0.021672161,-0.0474113,0.066270396,-0.047691498,-0.02082623,0.009528347,-0.020336399,-0.08799573,-0.058177084,0.07409653,-0.054843187,-0.061719876,0.036752865,-0.06826093,0.0681128,-0.010435268,-0.014209634,0.057146873,-0.07005804,-0.070006214,0.0008795105,-0.02330871,-0.054599147,-0.04742907,-0.055671327,0.0643299,0.024596177,0.08613759,0.032602187,-0.096723296,0.04119583,0.041163173,0.0054909177,0.15867743,0.03156475,-0.012147967,0.04633011,0.022570325,0.024309002,-0.006369313,-0.05379335,0.03324507,0.011846958,-0.043482002,-0.018732771,-0.0031438281,0.09711135,0.12003794,-0.0015250914,0.053607747,-0.06790342,0.03946736,0.13189936,-5.4065397e-33,-0.094820656,-0.014321837,0.065391034,0.043628074,0.11651155,0.004353997,-0.027404957,-0.0122122755,-0.0744794,0.02933958,0.03060334,0.046629682,-0.025632234,0.03144032,0.0051193796,-0.018035728,-0.047173925,-0.050321102,0.03443453,-0.07176944,-0.047077022,0.049317654,0.004046966,0.0180448,0.01949312,-0.006036255,0.08634256,0.028487055,0.1282794,0.0095513025,0.021646352,0.023859031,0.030499103,0.04508354,-0.05018682,0.010182673,-0.059419118,-0.081031956,-0.044427086,-0.009368389,-0.010957474,0.052764826,0.06329242,0.076577224,-0.09816619,-0.009590114,-0.03920936,0.04663264,0.026346369,0.033460766,-0.057110026,0.029350154,-0.01646341,0.10955277,-0.052386336,0.023952002,0.04094882,0.083600275,-0.009084925,-0.08519825,0.019711075,-0.048291538,0.0057717217,0.01758987,0.038718417,-0.043714117,-0.001044391,-0.004630759,0.0713704,-0.0397129,-0.05411664,0.06473526,0.057608545,-0.081947945,0.014736986,0.011690449,-0.04334655,-0.023350585,-0.031447913,0.012717914,0.02375418,0.010300062,0.046947796,0.054236695,0.03661508,-0.0155681,0.07543825,-0.1083282,-0.03154426,-0.014895424,-0.09555281,0.019999273,0.09234041,0.047828175,0.043793842,3.0059117e-33,0.034236766,-0.038407892,0.050694454,-0.019232364,0.020947516,-0.028263932,-0.13560708,0.010379949,-0.049399383,0.07484206,0.0102919405,0.07398281,0.021272156,-0.0083735,-0.039938647,0.055348773,0.029238174,0.038849186,-0.0010734607,-0.058233816,0.029224237,0.06859556,0.073463835,0.07804959,-0.039237976,0.036488492,0.011602478,0.051215798,-0.03989698,-0.06829,-0.05251121,0.048352394,0.009822642,-0.052955657,-0.035429344,0.09464706,0.023185644,0.005711184,-0.06187141,0.047880396,0.012214996,-0.03601022,-0.014810377,0.040528268,0.020888748,-0.009473791,-0.011317647,-0.085046485,-0.01458403,-0.03738696,-0.07642032,-0.009854671,-0.05090197,-0.004379541,-0.0031226145,-0.051950548,0.067676276,-0.01881544,-0.07679073,-0.051290367,-0.016071662,0.021751812,0.007666742,0.040468983,0.10345008,-0.120382935,0.04570601,-0.041279405,-0.08760317,-0.03500451,0.0011459055,0.04050336,-0.040627617,0.0936629,-0.023911286,-0.08339234,0.048568703,-0.07405213,-0.047436405,0.020252971,-0.019762322,-0.024017394,0.028772026,0.08191376,0.026034726,-0.0026027886,0.090989344,-0.0066763544,0.0022412366,0.059821162,0.02025737,0.014770583,-0.08567236,-0.0710461,0.051677197,-1.7185746e-08,-0.046016116,0.0850899,-0.0710108,0.032923855,0.0055063483,-0.068724275,-0.054610148,-0.031828564,-0.07089752,-0.0027148314,-0.044008702,-0.004473882,-0.034452334,0.061517097,0.07774417,-0.04982254,0.052829806,0.051323242,-0.022210257,-0.02165674,-0.009172478,-0.016461154,0.057857633,-0.027732065,-0.11087248,-0.030328492,-0.000116551426,0.016860874,0.059519507,-0.039393872,-0.05570133,0.024416428,-0.02248504,-0.02417287,-0.07633206,0.022642015,-0.036460016,-0.028472185,0.014612112,0.024781149,-0.052140985,-0.076583706,-0.06869247,-0.052428357,0.023995865,0.061817788,0.048312634,0.048744548,0.035637263,0.046667647,0.033244193,-0.006892951,0.0694811,-0.04970572,0.029381905,0.0022042848,0.035457276,-0.024042387,0.050336484,0.08422235,0.07006796,0.041767336,-0.07843535,0.040533397} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:44.079039+00 2026-01-29 18:36:00.561129+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 312 google Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB 1 t 315 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione.\nPer quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata.\nNel complesso, comunque, lo consiglierei. siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione. per quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata. nel complesso, comunque, lo consiglierei. 5 2026-01-04 01:27:48.341106+00 it v5.1 J1.02 {} V+ I2 CR-N {} {"J1.02": "Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella resti", "J1.03": "Per quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata.", "R1.01": "Nel complesso, comunque, lo consiglierei."} {0.057590786,0.04985682,-0.024900677,0.02064729,-0.11793795,0.048203487,-0.006307044,0.07013102,0.03818537,-0.059200626,0.06468399,-0.06531277,0.041571796,-0.01853571,-0.07443391,-0.048661638,0.1149724,0.07564766,-0.077364236,0.08440494,0.055968303,-0.090016454,-0.024304157,0.12357331,0.025057523,0.017629387,-0.040332217,-0.0054109683,-0.08660356,-0.057856318,-0.021993672,0.029424725,-0.056336693,-0.036765527,0.067881085,0.085014865,0.003909734,-0.050105114,0.030972568,0.06458925,-0.031024212,-0.075144835,0.010824133,-0.036500424,0.013766037,0.021933554,0.026256183,0.03899832,-0.004682864,-0.030176243,-0.13489807,-0.037516437,-0.0844614,-0.04299616,-0.072900064,0.035027012,0.07192338,0.062116865,-0.00085631316,-0.049521144,0.04284354,-0.013191993,0.14264199,0.06392398,0.00916753,0.027471337,-0.007659237,-0.022492236,0.026147766,0.021075528,0.03851463,-0.032088898,-0.013047555,0.062066223,-0.02160412,-0.053340226,-0.020472776,0.12194906,0.10101443,-0.11312981,0.09441379,-0.01534183,-0.0824086,-0.049544394,-0.030754602,0.06377233,-0.043828186,0.0022081549,0.035606522,-0.03662921,0.00514786,0.031428102,-0.09818912,-0.093908675,0.005418048,-0.044931866,-0.055087376,-0.0669381,0.044995517,-0.048178706,0.06799975,0.015502454,-0.0069949618,0.10764281,-0.00031299147,-0.028386602,0.04340187,-0.10971389,-0.03269692,0.029114086,-0.07463538,-0.061841454,0.10963856,-0.051817063,-0.03433559,0.03361185,0.0024733264,0.0071279346,0.011063425,-0.0419925,0.023704197,-0.13012989,-0.031651583,-0.04433397,0.026919242,-0.06293957,0.055313215,1.5960726e-32,0.02854885,-0.04726102,0.044798903,0.043624878,-0.018250743,-0.03129269,-0.04289535,-0.06572154,-0.04383108,-0.03667095,-0.050398048,-0.07092087,0.025410326,0.048860002,0.0035331128,0.042868674,0.0036487326,-0.036685117,0.0140452245,-0.03862609,-0.023568524,0.021598129,-0.017282102,-0.024670087,-0.005646787,0.06439168,-0.07402343,-0.014074212,-0.075109914,0.028991085,0.0071351733,0.030122899,-0.077696815,-0.0347641,-0.035697833,-0.09069779,-0.065567344,0.0012420405,0.055463087,0.027791256,-0.025978576,0.016840693,-0.12429943,-0.009271042,-0.0016464299,0.0035986735,-0.0021703392,0.06375671,0.12362842,-0.00028251097,-0.0015518174,-0.06524427,-0.09028084,-0.0060629714,0.03907526,0.004398571,-0.016801722,0.09734979,-0.040576614,0.067334235,-0.018872257,0.03166617,0.030393407,-0.026245318,0.041372806,-0.044844903,-0.07074585,0.0481553,0.11621884,-0.003339856,0.01778854,-0.025984246,-0.054850627,0.025370589,-0.045558788,-0.02423635,0.050488353,-0.06196334,-0.032124966,0.034737043,0.019851493,-0.009347687,0.036459416,0.003370316,0.10652509,0.015898895,-0.00632847,-0.04411414,-0.0011615128,0.10433147,-0.05028661,-0.029231654,-0.012727723,-0.02433025,0.046589386,-1.4914705e-32,0.09024375,0.0060868515,-0.0019343764,0.017837549,-0.051804233,0.016693573,-0.09455405,-0.016292565,-0.00497352,0.032996148,-0.098693214,-0.089898676,0.10499981,0.028880501,-0.0081464555,0.05751343,0.06365994,-0.079711005,0.016872521,0.012440178,-0.0220309,-0.11006454,-0.0008555966,0.029718228,0.017115096,0.00014344856,0.037049986,0.00482356,-0.13992414,-0.038073476,0.051179804,-0.040268388,-0.09662178,0.014014671,-0.0077898502,0.018518975,0.026641488,0.028535742,-0.020253332,-0.013936013,-0.042596307,-0.02157925,0.052052334,0.0436146,0.019161481,-0.026625695,-0.020901497,-0.082546905,0.044191644,0.002183746,0.021745961,-0.052501984,-0.026670258,0.032694127,0.046882525,0.0019226944,0.021457607,-0.013839338,-0.033901606,-0.08140831,0.07534627,-0.013111842,-0.01989352,-0.02805271,0.042998444,0.06059089,-0.006827327,-0.012726632,0.0028167902,0.014686656,0.093264185,-0.03964256,-0.05944652,0.07868493,-0.07014947,-0.04368849,-0.02695668,0.06492581,-0.011305983,0.06913311,-0.053735077,-0.017262133,0.023242759,-0.06213295,-0.038422186,0.042655956,-0.03727936,0.025292445,0.011472716,0.013563217,-0.012124056,0.02512021,-0.011421541,-0.0268841,0.014734746,-6.205539e-08,0.03741051,-0.07856386,-0.03544537,-0.027758501,-0.010644066,0.03262013,0.039297074,0.013876848,-0.04345666,-0.0066293566,0.03169039,-0.018354941,0.052674048,0.008832472,0.02336639,0.024406508,0.045363292,0.089305185,0.001046217,-0.034420058,0.07769267,-0.02880911,-0.017363718,-0.0011453615,0.0040313164,0.01547943,0.03721914,-0.030235028,0.027869185,-0.07662904,0.0070321094,-0.063436165,0.077270426,-0.05607356,-0.014115974,0.059511796,0.0016515478,0.095294766,0.03876949,-0.022380648,-0.012761188,0.06599414,-0.0033410233,0.00032265516,0.0492274,-0.008680351,0.04587035,0.040486824,0.0032315548,-0.000542944,-0.08324627,-0.01534004,-0.019428162,0.07562873,-0.0123724835,0.046752006,0.010628594,0.07079708,0.01579415,0.037980463,-0.015672235,0.10039434,0.053175192,-0.085494645} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:07:16.610232+00 2026-01-25 01:27:50.921603+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 329 google Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB 1 t 332 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ціна на авто яку запропонувала ця компанія була найкраща. По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не приймає картки American express. Поряд стояла ще одна пара сварилась на іспанській мові , вийшли не задоволені і не взяли машину. Потім прийшла наша черга. Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за "заправку" автомобіля 35€. В кінцевому випадку ми значно переплатили. Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням. ціна на авто яку запропонувала ця компанія була найкраща. по прибуттю в офіс стало зрозуміло чому. перед нами моложа пара сварилась тому що компанія не приймає картки american express. поряд стояла ще одна пара сварилась на іспанській мові , вийшли не задоволені і не взяли машину. потім прийшла наша черга. нас фактично заставили купити страховку за 150 євро та ще й заплатити комісію за "заправку" автомобіля 35€. в кінцевому випадку ми значно переплатили. раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням. 1 2026-01-04 01:27:48.341165+00 uk v5.1 P1.01 {} V+ I2 CR-N {} {"A1.01": "Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням.", "J1.02": "По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не прийма", "P1.01": "Ціна на авто яку запропонувала ця компанія була найкраща.", "P1.03": "Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за \\"заправку\\" автомобі"} {-0.023907188,-0.06412824,-0.066615425,0.023705665,-0.08746906,0.029614162,0.042669885,0.090494566,-0.019844636,0.004500394,-0.022624094,0.036665145,0.011294947,0.048641082,0.020135952,-0.07936394,0.007870572,0.011056633,-0.047173098,-0.03121572,0.03980221,-0.069939524,0.11668908,0.025789913,-0.020948479,-0.016170738,-0.036183935,-0.0381948,0.017069442,0.04935508,-0.029080287,-0.044487804,0.072265424,-0.05177707,-0.0130345365,0.0730487,0.021233112,-0.011444399,0.01852673,0.05950615,-0.062228996,0.060926974,-0.10626784,0.07196053,-0.048981465,0.0154443765,-0.0394726,-0.009056743,-0.072697185,-0.014057345,-0.001079937,0.07212659,-0.0017687867,0.012550413,-0.0670099,-0.16548838,-0.048984308,0.0077659134,-0.004275055,0.02976757,-0.07840979,-0.079262786,0.060521856,-0.03625612,-0.02986489,0.008052717,0.0033184707,-0.054697435,0.01192582,0.026011018,-0.036519613,-0.008544168,-0.084456004,-0.0067265313,-0.12362328,-0.05737427,0.013364054,-0.0472459,-0.10533688,0.016815636,0.096929796,-0.009847137,-0.06305295,-0.026025541,-0.0007770079,0.020091143,0.0652901,-0.050696068,-0.01597473,-0.023015982,0.12624046,0.045778852,0.03121355,-0.06381414,0.044478722,0.003302551,0.0097961,0.022206524,0.06453272,-0.07723021,0.08219535,-0.05384671,-0.033899017,-0.006702442,-0.093056194,-0.024002213,-0.077550985,-0.015660005,0.01594154,0.046852127,-0.023125753,-0.07087874,-0.04528066,0.00237564,0.017740017,0.04017398,-0.045634124,-0.051359475,0.029822122,0.079795144,0.024990525,-0.08994834,0.078911975,0.009922485,-0.0047639897,0.042593896,0.05483911,1.1159909e-32,-0.02381557,-0.045274075,-0.06820396,-0.002360956,-0.021075916,0.008071333,-0.042795595,0.03478252,0.016708031,0.017247288,-0.028426008,0.087576866,0.038296577,-0.034018464,0.014450091,0.024050778,0.016421815,-0.03889091,0.061366163,0.011075959,0.08735331,0.08664743,0.0026793114,0.0075367205,0.0815475,0.0861562,-0.13910589,-0.044611715,0.039301764,-0.054291725,-0.018053921,-0.019323299,-0.08729184,0.021951092,-0.00048865564,-0.058432408,-0.0060650553,-0.0018275881,0.038414903,0.022458367,-0.02011053,0.020851884,0.048740026,0.03890944,0.079122014,1.9634748e-05,-0.025960544,0.009029588,0.047263406,-0.060547706,-0.08663265,0.07127708,0.05049936,-0.02168809,0.05688662,0.029729217,-0.010218892,0.007732346,-0.025607575,-0.024098448,0.0016213368,-0.019569442,0.025403094,-0.05609196,-0.004746735,-0.039732713,-0.102528535,0.015157286,0.047836725,0.10312499,-0.025846552,0.051314656,0.0017034797,0.046066713,0.061389823,-0.0045977263,-0.02130937,0.01950338,-0.06463116,0.06910651,-0.12973364,-0.0463555,-0.017895237,0.09983509,0.024965215,-0.00012817778,0.048582975,-0.051114224,-0.028183078,0.06483285,-0.048996054,0.04924282,0.015578268,0.021734662,-0.02755117,-1.4281338e-32,0.06499657,0.06340258,-0.0017717876,0.061524693,0.007997537,0.05903348,-0.040543932,-0.025134064,-0.0055845655,0.036520477,0.056793317,-0.043819737,0.0048929593,0.010409002,-0.057185497,0.021230241,-0.037391435,0.108033165,-0.050897826,-0.03439331,-0.038824774,0.048920713,0.01204406,-0.08138604,0.041188896,-0.01396811,0.11028192,-0.09400471,-0.044429097,0.03348252,0.055738177,0.02527339,-0.03899154,0.07351025,-0.006824425,0.062042143,-0.008508746,0.07164673,-0.038218375,-0.0020413543,0.03358498,0.020944241,0.08357789,-0.067745745,0.022966344,-0.069426306,-0.046129454,-0.039188787,-0.026709571,-0.028978387,0.04328818,0.01065781,-0.08205059,-0.048615288,-0.011567601,-0.02466691,-0.018260945,-0.04623797,0.02025005,-0.052474752,-0.05134714,-0.0120062,0.026216377,-0.09377629,-0.031260047,0.025316782,0.016077062,-0.018998269,0.09519688,-0.038365558,0.01069312,-0.07182558,0.10916258,0.08510765,0.007834248,0.10404706,-0.022750799,0.09178057,0.035764065,-0.02431633,-0.042561788,0.031763777,-0.059332304,-0.03163452,-0.05260175,0.07605497,0.020723693,-0.05309824,-0.03817103,-0.04397732,0.031326797,0.02214666,0.068444856,0.051501382,0.031637374,-4.8808282e-08,-0.0042780647,-0.053577434,0.012774164,0.053469427,0.0096866535,-0.004337509,0.016690336,-0.08707784,-0.122238785,0.04876492,-0.043707415,0.015400112,0.0100773685,0.005810466,-0.09944298,-0.006179161,-0.014605835,-0.039263397,0.027720373,0.0112952255,0.018695801,-0.049768962,-0.07021565,-0.046707954,-0.0983374,-0.016476076,-0.0027859628,-0.06912281,-0.026269391,-0.04817129,-0.023016019,-0.06786917,0.028329851,0.024477217,0.050922982,-0.073156126,-0.041608218,0.0130119845,-0.14162411,0.09084352,0.08048728,-0.025801407,0.007041023,0.014517999,0.094709165,-0.02646853,-0.0687772,-0.06724749,0.033738527,0.055957705,0.015671948,0.034881018,0.011766434,0.024442755,-0.034079563,0.017583506,-0.040777754,-0.0045760893,-0.018466944,0.033858214,-0.061326906,-0.026307525,-0.019970583,-0.059399333} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:06:51.369397+00 2026-01-25 01:27:50.984571+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 331 google Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB 1 t 334 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholzeit da und sie haben uns die halbe Stunde warten lassen, weil wir kein Upgrade wollten. Dabei haben wir die ganze Zeit auf unser fertiges Auto geschaut (Vertrag und Kennzeichen lag bereits vor, da online eingecheckt). Hatte 2 kleine Kinder dabei. lassen keine gelegenheit aus um die leute über den tisch zu ziehen. war eine halbe stunde vor abholzeit da und sie haben uns die halbe stunde warten lassen, weil wir kein upgrade wollten. dabei haben wir die ganze zeit auf unser fertiges auto geschaut (vertrag und kennzeichen lag bereits vor, da online eingecheckt). hatte 2 kleine kinder dabei. 1 2026-01-04 01:27:48.341169+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J1.01": "Hatte 2 kleine Kinder dabei.", "J2.02": "Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholz"} {-0.050959654,0.05190073,-0.015808642,-0.01615706,-0.012275283,-0.021012362,0.04402878,0.027085662,-0.11686989,0.009487425,0.04249198,0.024721337,-0.0035419357,-0.06564934,-0.06000165,-0.0014808185,-0.017846728,-0.008863201,-0.11904399,-0.004813207,0.026766866,-0.012844752,0.012343583,0.06111432,0.039522145,0.014076382,-0.0031425618,-0.013744353,0.023219159,-0.09261858,0.037305504,0.10671087,0.014130724,-0.039588664,-0.00076670205,-0.010853403,0.03849435,-0.07440171,-0.04113166,0.06410171,-0.04035043,-0.099748775,-0.04187777,0.040314123,-0.0041745617,-0.028987814,0.10059131,0.008467101,0.010788471,-0.04668598,-0.0029253312,-0.007897186,0.058881953,-0.006733686,-0.042108715,0.06041825,0.028199118,0.09459299,0.022130962,-0.04263949,0.042925645,-0.004473051,0.022651196,-0.025690716,-0.07723278,-0.03454362,0.0011963597,-0.083549105,-0.0383814,-0.025327306,0.05916158,-0.077454545,-0.052722566,-0.07514674,0.05656971,-0.02790076,0.032946754,-0.010156891,0.08464813,-0.043304875,0.0392262,-0.035260506,0.060592785,-0.019278802,-0.030556783,0.020073103,-0.011453639,0.012038497,0.00771283,-0.034402546,-0.039529074,0.0667123,-0.06834155,0.010227976,-0.0656909,-0.03371817,0.10131811,-0.01896526,-0.00051718415,0.06969525,0.0034308257,-0.024935197,0.050825924,0.06826382,0.0045197867,0.025904398,0.069844715,0.021289842,0.010647314,-0.0594844,-0.0041864337,0.004652406,-0.0597024,-0.010626955,0.0443589,-0.13847756,0.050862588,-0.1014203,-0.0475588,-0.09975188,0.04581095,-0.003916589,0.098243594,0.06338302,0.011557115,-0.06377378,0.030657887,1.9915011e-32,0.0044144792,-0.041840326,-0.02628632,-0.008473435,-0.07501573,0.030425452,-0.068406746,0.03294382,0.07866254,-0.05484998,-0.08755333,-0.029182687,0.022755908,-0.05442249,0.09209568,-0.056853216,0.04867921,-0.021130638,0.09907806,0.0022153668,-0.0060340683,0.009673921,0.0067400276,0.062448915,0.021137044,-0.07550357,0.07805802,-0.023387471,-0.04175359,0.028317107,0.056825895,-0.09369218,0.014923116,0.0062807943,-0.12860583,-0.0051117307,-0.049783606,0.121474504,0.043363564,-0.06121331,-0.000491207,-0.03570073,0.07006894,0.0057610106,0.08174675,0.038889345,0.020595755,0.047123477,0.006819566,0.007402645,-0.091350235,0.0074278205,0.014788286,-0.0015809993,0.013034377,0.053818405,-0.01630842,-0.0067404737,-0.05753137,-0.03794749,-0.008662244,-0.08627845,-0.06556229,-0.02226549,-0.0065306076,-0.019982418,-0.0028346626,-0.0029014065,0.04023262,0.109003365,-0.05969028,-0.006073262,-0.01436678,-0.064144015,0.0150802955,0.034127377,0.0094727315,0.07051055,-0.045562204,0.0029818101,-0.008649791,-0.01913849,-0.026252767,0.014821788,-0.011325861,0.04152716,0.027591497,0.017242366,0.02625995,0.077568725,0.025218116,-0.056604043,0.07503419,-0.08382397,0.10979693,-1.8199449e-32,0.046173465,0.04007561,-0.065909155,0.06682256,0.00837379,0.07620079,-0.0383009,0.032887973,-0.12839493,-0.058079608,-0.005484033,-0.015233881,-0.036612414,-0.037135173,-0.057307344,0.055810146,-0.053565864,-0.050942283,0.047277056,0.010412602,0.017086422,-0.05751474,-0.007885505,-0.029812275,-0.029148288,-0.035430133,-0.013646141,0.034884762,-0.014822377,0.06781145,-0.008454642,0.009020166,0.01539623,0.014095188,0.02084348,0.026071452,0.0367913,0.0036714203,-0.09615321,0.069447786,-0.037346262,-0.06735295,-0.10158845,-0.03354061,0.11379368,0.052542854,-0.024695203,-0.094932616,-0.03952863,-0.03181013,0.16223656,0.01269119,0.036125705,-0.008871616,-0.0103598125,-0.084968664,0.043350026,0.0058547147,0.01993168,-0.024523055,0.051536232,0.025992429,0.044274054,-0.0085342,0.0020209227,-0.08839489,-0.06819902,0.053493742,-0.0064306795,0.06930395,0.108421214,0.0034559108,0.05558469,-0.009075703,-0.0011505729,-0.10702628,0.010438166,0.05504049,-0.021079069,0.04688968,-0.041530922,-0.0043042353,0.009794305,0.032822892,-0.13580447,-0.04262447,0.12773354,0.013194008,-0.012995808,-0.021008514,-0.04854845,0.09591757,-0.08737061,0.027807817,0.016779142,-6.622206e-08,0.028946716,0.055488337,-0.08982884,0.0025281508,0.041785616,-0.016577478,-0.07719409,0.03847712,0.003300288,0.067439064,-0.078386836,0.010582499,0.04164964,0.0048546526,-0.010264985,0.047477335,-0.007073994,0.011543525,0.026459834,-0.048308343,0.06690027,-0.0045637395,-0.086610414,-0.038241237,-0.014769352,-0.029460177,-0.012459874,-0.037191905,0.066731766,-0.052412335,0.00210233,0.092566945,0.046163343,-0.06492698,0.04332253,-0.0003187059,0.011623217,0.02076647,0.004609706,0.062181335,-0.05028922,0.04954069,0.028476998,-0.022936374,-0.01934673,-0.11908861,0.09447923,-0.048945695,0.05535631,0.0033115002,-0.011942107,0.036437422,-0.032324687,0.025521198,-0.040838197,0.010200285,-0.024343211,-0.06325596,-0.041185677,-0.0035107306,-0.0028752827,0.020603754,-0.069302544,-0.07147639} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:06:30.693426+00 2026-01-25 01:27:50.988716+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 505 google Ci9DQUlRQUNvZENodHljRjlvT2psa01VRkJOVWsxWTNJeFNrRkljakZuWkRsNk4yYxAB 1 t 508 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el personal, el traslado, y el precio, fantastico, repetiré la mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el personal, el traslado, y el precio, fantastico, repetiré 5 2025-08-28 01:27:48.342304+00 es v5.1 O1.03 {A1.01,P1.01} V+ I3 CR-N {} {"O1.03": "La mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el pe"} {0.023951115,0.037912697,0.040418502,-0.05368,-0.1258442,-0.029054662,0.049733378,0.044431724,-0.027413946,0.021864174,0.042729784,-0.053712334,-0.0051645553,-0.023457563,0.044055738,0.015288543,0.032794617,0.0075107375,0.020491417,-0.035711322,0.05546192,-0.050499894,-0.118112914,0.06936623,-0.10108199,-0.07577229,0.015249753,0.026059877,-0.047822278,-0.04785177,-0.03220364,0.056340456,0.048089024,0.030489137,-0.0300605,0.015270232,0.026608437,-0.034868468,-0.012515654,0.008809428,-0.069424435,-0.06498024,0.020979557,-0.033587657,-0.00047483356,-0.085262425,0.042790964,0.08325802,0.06327024,-0.048032705,-0.15191577,-0.02777167,-0.034171905,-0.010754368,-0.0242959,0.0879063,-0.0056024157,-0.016284043,0.061772507,0.022053016,0.0048257406,0.043952994,-0.065783635,0.033561926,0.029806249,-0.010589119,0.0032703504,0.017729606,-0.085761644,0.07784053,0.08698679,-0.08030727,0.0077909976,0.030874625,-0.019951113,-0.008738319,0.0030727014,0.021431064,0.0065400996,-0.06196256,-0.010183149,0.035198063,-0.03646919,-0.064885944,-0.0146430675,0.00058563787,0.008673941,-0.018172404,0.043859854,0.006638528,0.017464943,-0.022401059,-0.06763799,-0.05657853,-0.12313369,0.07965807,0.049864832,-0.0121641485,0.013295681,0.04450781,0.10779438,0.03055598,0.063962966,0.058547623,-0.062379174,0.075047284,0.026495008,-0.030560462,0.034955766,0.044057753,-0.037896857,-0.033049345,-0.08479294,-0.0457303,-0.06652328,0.020596178,-0.041025743,0.024030445,-0.011497538,-0.08329223,0.05269084,0.044140514,0.017006489,-0.005660255,-0.055043783,-0.0693087,0.046214454,8.678455e-33,0.0019707656,-0.025668299,0.023843706,0.08665006,-0.019564224,0.015896635,-0.06750294,0.034146905,-0.036230236,-0.00861017,0.017735295,0.010270613,0.025180742,0.008020435,0.013547523,0.05875479,-0.0062086587,-0.07605131,0.033301026,0.016785461,-0.05437281,-0.034904175,0.017458059,-0.02134897,0.032986652,0.050162416,0.01918745,-0.04974751,-0.048928514,0.06657404,-0.055194017,0.08118224,0.06149162,0.022529302,0.02599329,-0.0009373317,-0.04465814,-0.022240708,-0.01844015,-0.016082732,-0.013990574,0.028954241,-0.05068974,0.022232126,-0.039399166,-0.026160715,0.10500424,0.03931512,0.090255864,0.025241513,-0.055865902,-0.07426023,-0.084366925,-0.0679767,-0.021155186,0.0032466345,-0.04770015,0.029722473,0.031232921,-0.04989453,0.032192055,-0.009327013,0.00069438486,0.014858539,-0.07626279,-0.028829345,-0.008467834,0.018155979,0.09624828,0.04916466,-0.038174532,-0.034719963,-0.020054463,0.035596646,-0.00665217,0.018288447,0.00013038373,0.052818503,-0.03548079,0.024379924,-0.04405014,0.04220971,0.042015668,0.028145073,0.05691736,0.10302487,0.08359477,0.025105277,0.024743466,0.13395946,-0.03792939,0.05518381,0.04157783,-0.018395197,0.0129648885,-1.0802407e-32,-0.02093142,-0.014605595,0.04032691,-0.0030177464,0.037989505,-0.047906402,0.00538935,-0.033549435,-0.009781689,-0.03195928,-0.06019864,-0.074580684,0.13430884,-0.06827532,-0.01825657,0.09983571,0.03331559,-0.069059536,-0.084895946,-0.013573357,0.05067226,0.032833125,0.053309932,0.01339831,-0.07191705,-0.12766884,0.003010324,0.039469812,-0.08451744,-0.020852178,0.05566384,-0.0020066763,-0.06641721,0.018470533,-0.045153767,0.061306857,-0.07331443,0.07046825,0.043317016,0.07289774,0.013395207,0.061386082,0.04701019,-0.027268022,-0.043561578,0.034510955,-0.024957603,-0.13260211,-0.02308077,-0.08428859,0.015107253,-0.041713864,-0.05058458,-0.050948028,0.03177551,-0.003772261,-0.008461002,-0.06748157,0.03751993,-0.0025160136,0.043346036,-0.012509807,0.03015579,-0.021645088,0.07502195,-0.018514913,-0.055842724,0.023253767,-0.023944614,0.0570928,0.08967825,-0.06858507,-0.12166888,-0.004185394,-0.07045826,-0.0050291135,-0.11298129,0.006427766,0.041548517,-0.0022060585,0.020070726,0.0068181255,0.02734357,-0.058335554,-0.030013666,-0.044202674,-0.053402558,0.03392804,0.052120242,0.057243004,0.023922017,0.033447504,-0.06680615,-0.11394495,0.013873173,-4.7347882e-08,0.006352613,-0.094823904,0.0009774698,0.009869287,0.0017814868,-0.045491785,0.006321433,-0.011982058,0.035488945,0.099570885,-0.037373245,-0.04539438,-0.009407005,-0.025319284,-0.013080131,0.013752617,0.08641996,0.08991986,-0.036113527,-0.028515827,0.07682235,-0.004141851,-0.04878761,-0.030584794,0.017594181,0.010874236,0.0021551403,0.03358555,-0.04917291,0.0017471137,-0.03224108,0.010810082,-0.03198178,-0.15037967,-0.038938936,-0.01235143,-0.04007751,0.019759472,0.036884207,-0.039129484,0.08773998,0.06396318,-0.06962466,0.053545743,-0.03592547,-0.04547957,-0.019233897,0.024109358,-0.036704883,0.054046787,-0.054799557,-0.047329765,0.12066716,-0.024655284,0.041733235,-0.1088341,0.043071732,0.08702263,-0.03045054,-0.02969234,0.11221277,0.07393595,0.01615639,-0.07454146} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:08.286705+00 2026-01-25 01:27:51.663531+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1463 google ChZDSUhNMG9nS0VJQ0FnSUN3eWItcUhnEAE 1 t 1466 Go Karts Mar Menor unknown Very nice staff and a good track. Had a good time with the family, well worth a visit. very nice staff and a good track. had a good time with the family, well worth a visit. 4 2019-02-01 01:52:39.833374+00 en v5.1 P1.01 {O2.03,V4.01} V+ I2 CR-N {} {"P1.01": "Very nice staff and a good track. Had a good time with the family, well worth a visit."} {-0.028449994,0.019154804,0.03856817,-0.0051924363,-0.10356048,0.02021386,0.00013025792,-0.03781777,-0.05261095,-0.06686229,0.013911395,0.012986291,-0.01789489,-0.0006804672,-0.07469619,-0.012112012,0.039079007,-0.08280431,0.01812897,-0.025512584,-0.09751739,-0.008352878,0.016429959,0.06500845,-0.0820959,0.055047005,-0.09777664,0.07528959,0.024321018,0.011673189,-0.07028371,0.023901097,-0.004834893,-0.005639496,-0.020379614,0.117262416,0.05654187,-0.06113817,0.0052226274,0.017455244,-0.027303815,0.017564535,0.083286725,-0.011190215,-0.0147809535,0.0076536722,0.00015817971,-0.04218756,0.06613942,0.044841826,0.06578909,-0.07651511,0.076451235,-0.0771937,-0.03932751,0.097263664,0.009813446,-0.042049404,-0.009365264,-0.02665561,0.00045772322,-0.046800356,-0.059424553,0.0148945935,-0.0070977444,-0.06198336,-0.11268737,-0.023014307,0.108936474,-0.06893803,0.0150450645,-0.001982609,0.099499024,-0.005827437,-0.015582087,0.030280912,-0.037932124,-0.02098911,-0.03170286,-0.09838297,0.013979595,-0.038839262,0.050420422,0.024437862,-0.01758871,-0.083801694,0.072077096,-0.05860912,-0.038256656,0.0068181255,0.10185833,0.14390197,-0.0058303056,-0.07130087,-0.025781415,0.017785259,-0.018286426,0.06841362,-0.044529036,0.07214432,0.05266815,0.12832959,0.061107963,-0.0011401691,-0.08677301,0.0038967726,-0.038962156,0.055183385,-0.032227598,-0.04373341,0.010200435,0.039818853,-0.050166268,-0.0029884102,-0.027821431,0.011376155,-0.04141774,0.025431156,-0.014312974,-0.014685616,0.07349891,0.029143687,-0.018501075,0.017576795,-0.046334334,0.019010555,0.11175961,-6.3181756e-33,-0.010490653,0.073207356,0.011500836,-0.025390873,0.11002625,0.004545877,-0.11123227,0.04217544,-0.05185082,0.029603384,0.0608075,0.038340945,0.030535333,-0.07845083,-0.055455126,-0.039815575,-0.05705425,0.016899304,-0.02183308,0.032804575,-0.04661912,0.014323101,-0.018707486,0.028784966,0.07836693,-0.020152608,-0.018709192,0.024211584,0.05557151,0.03003286,-0.051896643,0.00016814364,-0.0026593155,-0.057438906,-0.032512013,0.019178351,-0.052316472,-0.0927785,0.011109912,-0.03815451,-0.01251856,-0.0015682242,0.060083274,0.039139215,-0.101834245,0.02996015,0.05538805,0.043528516,0.07641669,0.021093018,-0.067550585,-0.071167514,-0.04617299,0.051562008,0.025859881,0.007676443,0.051001564,0.06804097,0.02577819,-0.054820973,0.14563452,0.08249705,-0.0051232902,-0.045882702,-0.009790362,-0.04122969,-0.02798656,-0.05653255,0.12070367,-0.029471675,-0.048517454,0.027491523,0.06017405,-0.009143227,-0.035940427,0.08662756,-0.08466375,-0.044173144,0.01982942,0.042869996,0.014485861,-0.006478824,0.032295708,0.013338681,0.038319502,0.0069834045,0.060527902,-0.09648753,-0.11550337,0.010761138,-0.05045623,0.06174819,0.04218075,0.018331295,-0.021197442,3.3241228e-33,0.07327947,0.06478302,0.0739992,-0.02001391,0.030810557,0.014791721,-0.07214585,0.023201643,0.06943976,0.12003288,-0.03217145,0.0627308,-0.033306163,0.0033639949,-0.06974986,-0.050589312,0.044494446,-0.029106773,0.029232642,-0.094121225,-0.0169613,0.10543868,-0.0025807112,-0.0017918955,-0.015155577,0.03241743,5.9731788e-06,-0.06628692,-0.08881569,-0.053621233,-0.01985885,-0.020779567,-0.0013928061,-0.022976821,0.028873166,0.036583032,0.07546772,0.015593534,-0.051814012,0.007661245,0.019120745,-0.016390089,0.01940356,0.023621658,-0.022696039,-0.028430812,-0.009671476,0.055380683,-0.06404646,-0.009833328,-0.030519193,-0.023321461,-0.03254054,-0.03726433,-0.031464506,-0.03965169,0.04684707,-0.103885226,0.013088791,-0.043618392,-0.09987855,0.036631994,-0.043751553,0.05713531,0.021418864,-0.060559634,-0.010993056,-0.057655625,-0.08455802,0.062110778,-0.061456505,-0.017246976,0.033685725,0.023021098,0.014730602,-0.015432093,0.07337162,-0.08819438,-0.0026815457,0.06155553,-0.028755229,-0.01733599,0.02933698,-0.029441744,0.050362404,0.016546419,0.027712565,-0.053525962,0.017766625,0.09307834,0.08931155,0.026307143,0.033978418,-0.05367996,-0.03553187,-2.2539655e-08,0.046619352,0.0649851,0.016971719,-0.027334567,0.008338145,-0.1525417,0.07573939,0.028690178,-0.08165685,0.10314294,0.014843216,0.00013395649,-0.047077563,0.035823002,0.054566905,-0.012753429,0.030313287,0.1028839,-0.06829585,-0.017207205,0.030226791,0.05760611,0.03931106,0.020354426,0.015813662,0.03216494,0.0071225134,-0.020447081,-0.046888668,0.008948849,-0.002221089,0.054679524,-0.006706285,0.013092661,0.009335271,-0.053499594,-0.08688236,-0.03239454,0.016603023,-0.01199182,-0.055739112,-0.010266347,-0.053039834,0.054166734,0.036343545,-0.017781453,0.015546123,0.0686239,-0.05730454,-0.035767537,-0.06851555,-0.023386396,-0.063800804,0.03710678,-0.020689636,-0.02401889,0.0054266537,0.0062563107,-0.0100360755,0.051792745,-0.053091243,-0.0034543106,-0.05896447,0.03617227} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.372691+00 2026-01-30 02:01:09.437934+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1239 google ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB 1 t 1242 Soho Club unknown Love this place!! Worth visiting, best music!? love this place!! worth visiting, best music!? 5 2023-01-30 18:34:31.336452+00 en v5.1 E4.04 {} V+ I3 CR-N {} {"E4.04": "Love this place!! Worth visiting, best music!?"} {0.066439934,-0.093984574,0.031659763,0.0036645932,-0.04327665,0.076780446,0.036082353,-0.08636988,-0.010749078,0.02742851,-0.031015487,0.026059076,0.07586127,0.010427715,0.0021525817,0.049073163,0.09013258,-0.019441845,0.075782396,-0.010521799,-0.07694428,-0.005572737,-0.0058979965,0.11191634,-0.020951703,0.06818127,-0.033208203,0.13975039,0.007969601,-0.048781004,-0.0031956963,0.13029587,-0.08666439,-0.06654104,-0.018941786,0.062402118,-0.014164551,-0.12358574,-0.010296445,0.10505986,0.013486019,0.12970395,0.014614942,-0.01907768,-0.056775928,-0.031446535,0.012229787,0.009465903,0.030962605,0.06168689,0.021847364,0.058503024,0.0064792554,0.044072643,-0.106232435,-0.03147305,-0.04264765,0.013327204,0.0025937285,0.02172154,0.049525015,-0.06924421,-0.009190117,-0.011229458,0.00076567574,-0.03573819,-0.016861534,0.022930749,0.007895925,0.020529097,0.010197016,0.0137640545,0.0071508186,0.00852142,0.004477513,0.0406213,-0.07430757,-0.08343189,-0.07948861,0.0059026377,0.06598366,-0.038248423,0.016934063,-0.07891522,-0.043986157,-0.09099651,0.0034813164,-0.009901803,-0.04255169,-0.046358503,0.056715056,0.0976632,-0.075514525,-0.041319802,0.059355337,-0.035658546,0.03484831,-0.050332744,-0.086676076,0.004584447,0.018470153,0.09161479,0.0024095897,-0.034670237,-0.020742856,-0.050316464,0.034654,0.110341206,0.0065013124,-0.032121368,0.078665785,0.040884044,-0.016945422,-0.03177805,-0.012371427,-0.020651352,0.042435747,0.07892474,8.807047e-05,-0.0042556473,0.019504134,-0.03555813,0.015994014,0.03829442,0.009089721,-0.003857033,-0.061304145,-2.5794506e-33,0.01860072,-0.009047689,0.044642024,0.028372098,0.09236094,-0.050793067,-0.11127559,-0.016834497,-0.085886374,0.046841454,0.029892312,0.0069786883,0.03045415,0.0046938746,0.011464606,-0.015986288,0.0053217327,-0.064441256,-0.021824649,-0.031286303,-0.036476728,0.014855395,-0.007180917,0.012324209,-0.021890813,0.0022728585,-0.015941963,-0.007013504,0.01876145,-0.028313015,-0.019491835,-0.015107708,-0.019148892,0.010434502,-0.048023265,0.022074698,-0.12298293,-0.012906408,0.040654097,-0.01636836,0.016862856,0.036387004,-0.011805685,-0.0006370934,-0.0037316328,0.023835743,-0.047520332,0.0069657173,0.10870883,-0.044823788,-0.058758307,-0.052583154,-0.10466838,0.10586165,0.023114584,-0.0018276804,0.0027507646,0.08618657,0.07673594,0.030951869,0.079439014,0.038529668,0.0061590075,-0.13163082,0.029012257,-0.019007837,0.040176034,-0.08052431,0.07094676,-0.01956174,0.023389215,-0.01410461,0.07414979,-0.012175,0.045385733,0.0019859248,-0.06081677,-0.025585439,0.044738285,0.025773752,-0.034879185,0.07273208,-0.06208553,0.05528644,0.017868686,0.03784665,0.028810972,-0.121019095,-0.06143745,0.03207663,-0.049791377,-0.0004663487,0.064314365,-0.007264275,0.017661352,1.8693793e-33,0.09982593,-0.0778214,0.10070257,0.0064114784,0.0031198445,0.045226373,-0.06333987,0.060327105,0.02935704,0.038775817,-0.025491038,-0.024692286,0.013673002,-0.0072697727,-0.07879637,0.03553389,0.034654062,0.0487884,0.00999025,0.007646421,-0.035219595,0.032590214,0.00032912818,-0.00038278286,-0.026247103,0.00278769,-0.03808398,0.033608872,0.023433782,-0.014130749,-0.020266721,-0.013248993,0.021414543,-0.10102793,0.01037669,0.07842104,0.07537741,-0.026762221,-0.08753415,0.029854827,-0.085476205,0.03429638,0.019753346,0.058335103,0.061067045,0.0064944075,-0.056212563,0.077082515,-0.067260064,-0.093539715,0.013327071,-0.06471521,-0.0042548226,-0.024506032,0.014782264,0.026479037,0.01723617,-0.035341285,0.002231737,0.011372376,-0.025928577,0.034377795,-0.033664983,0.009312179,0.013782838,0.032602564,0.077280276,0.037474282,0.017013473,0.03794334,-0.09110557,0.014539447,-0.04025598,-0.025470307,-0.01549641,-0.025095351,0.10031524,0.007235988,0.02066378,0.037078593,0.0063334624,0.06807355,-0.10779335,-0.080249965,0.059990026,0.06807634,0.03703737,-0.0531342,-0.014103731,0.008234857,0.06282458,0.03839428,-0.117170766,-0.059484236,-0.0523108,-1.4846339e-08,-0.039911114,0.022726253,-0.06972237,0.03505345,0.015477868,-0.08476489,0.05558216,-0.005871091,-0.03493784,-0.010825734,0.01647479,-0.058722295,-0.026499145,0.039177228,-0.0398097,0.026078714,0.02271363,0.09675849,-0.011178571,-0.0025499542,0.06075294,0.081454605,0.07735919,-0.06791205,0.025911992,-0.040805936,0.06679845,-0.057228737,0.074814156,-0.057684463,-0.028150791,0.024433663,-0.026359044,-0.021089995,-0.027861211,-0.10996351,0.004698896,-0.0409655,-0.08985476,-0.035174895,0.029781112,-0.021394273,-0.007977372,-0.061584216,-0.03147777,-0.050812975,0.08323104,0.04083055,-0.06768288,0.017200258,-0.12746926,-0.081926666,0.009895574,0.00905685,0.06979625,0.030488009,-0.07531479,0.083253704,-0.0123240985,0.11078367,0.016048787,-0.00023201286,-0.017715162,-0.014330721} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:49.041301+00 2026-01-29 18:36:00.562951+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1240 google ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB 1 t 1243 Soho Club unknown Good music for dancing, wide choice of cocktails. good music for dancing, wide choice of cocktails. 5 2020-01-31 18:34:31.336452+00 en v5.1 E4.04 {} V+ I2 CR-N {} {"E4.04": "Good music for dancing, wide choice of cocktails."} {-0.013491866,-0.06798599,0.016017342,-0.0042843567,-0.13201092,0.089567944,0.06322532,-0.1035822,0.026901606,-0.07739784,-0.031568658,0.06416265,-0.06670869,-0.07727521,0.039497916,0.04427604,0.07148516,-0.0058097807,0.057620127,0.002814769,-0.100353986,-0.029494582,0.019878255,0.048593413,0.015558368,0.06222723,0.050305534,0.033061504,0.012039075,-0.022550156,0.016011288,0.15857175,-0.032995895,-0.0399396,-0.07691874,-0.07643963,0.0025144834,-0.02259659,-0.04483331,0.06453335,0.025690991,0.099603675,0.045625493,0.011594864,-0.04985769,-0.029490672,-0.037213072,-0.042293355,0.084704444,0.047156565,-0.040799506,0.06293576,2.3779381e-05,0.05125677,0.02358244,-0.11050078,-0.0014591767,0.0111735575,0.07857932,0.03928748,0.020942707,0.040172327,-0.023043945,-0.014773818,-0.026324915,-0.06473916,-0.0483097,0.11829314,0.047297843,-0.01155457,-0.048899107,-0.063544326,0.071139544,0.031174421,-0.10004717,-0.012965738,-0.061554193,-0.039032698,-0.10722761,0.0023463392,0.031302016,-0.06418195,-0.08981255,-0.11383146,0.047171645,0.0018169233,-0.038269397,-0.018041478,-0.07674505,0.012076126,-0.06432018,-0.0079756975,-0.059527386,-0.10123868,0.04513924,0.025470773,0.013485101,-0.034274418,0.0020377382,0.014019496,0.010292017,0.08267546,0.035220098,-0.059843775,-0.023680687,-0.096031226,0.070505194,0.09916985,0.089399226,-0.045181546,-0.009905654,0.045238543,0.015712276,0.008125691,-0.004636648,0.09122308,-0.013043115,-0.0030107081,-0.008262354,0.027708342,0.02652874,0.013860878,-0.019740503,0.0198781,-0.06002651,-0.024138888,-0.04008431,-3.1012208e-33,0.010216613,-0.033851914,0.016155725,0.056147564,0.10897159,-0.028426187,-0.08102953,-0.1078462,-0.03668583,0.06748356,0.03935601,-0.03463042,0.00055219425,-0.011087724,0.062364392,-0.07824221,-0.041771293,0.04464601,0.0241546,-0.046712894,-0.050522402,0.016083218,-0.040144607,0.0037316247,-0.03251097,-0.011523858,0.06888751,0.030244946,0.029320883,0.0006420351,-0.019127676,0.032886364,-0.027253006,0.04922591,-0.008152336,0.034039393,-0.079892054,-0.03340272,0.042001493,0.05459134,0.035954624,0.045070197,-0.012232383,0.045173578,-0.00011573566,0.037012897,-0.065258585,0.085528605,0.010063144,0.017132273,0.020422267,-0.02416575,-0.011215426,0.050525326,-0.009262572,-0.0016399064,0.010959193,0.08455541,-0.002834237,-0.05035464,0.027560337,0.041042887,-0.030589415,-0.113712296,0.0011927324,0.09652034,-0.009555011,-0.06556987,0.0673753,-0.059002347,-0.057211783,0.0006596796,0.05491976,0.024030222,0.02833853,-0.014015351,-0.0118248025,-0.070509516,0.09513242,-0.029843122,-0.03167378,0.00060515833,0.0041891155,0.083058275,0.021310078,-0.03462648,0.017036662,-0.011644623,-0.08688034,0.030789813,-0.13830508,-0.0068113636,0.083259024,-0.0053893346,-0.0022700138,3.4868044e-34,0.04117211,-0.02750431,0.03788768,0.05025232,0.08081213,0.028487843,-0.021326726,-0.04417874,0.03499695,0.004391562,0.066503584,0.0028204538,0.06856128,-0.060493775,0.011529952,-0.01593164,0.03517098,0.041442808,0.07103084,0.054103173,-0.024883341,0.012435514,0.07244871,-0.031770255,-0.04802028,0.016179154,0.003150543,-0.004739461,-0.046552736,0.035348345,0.07416284,-0.01679257,-0.06055259,-0.11442885,-0.021550626,0.057356425,-0.0006211808,-0.056929618,-0.063721634,0.0032397972,-0.033869997,-0.014730411,0.049676992,0.088272035,0.031410106,-0.012605797,-0.09710134,0.11703753,-0.03832289,-0.023511782,0.022707643,0.0019087648,-0.010159485,-0.004717204,-0.02847336,-0.03207554,-0.005869594,-0.089973934,-0.041357942,0.0036915631,-0.057437148,0.10397181,0.010851106,-0.035439406,0.07074242,0.0030885679,-0.033787813,0.003998573,-0.023374457,0.011262464,0.055808343,-0.041003834,-0.016694872,0.10743784,-0.0044815475,-0.024387127,-0.004556863,-0.02569939,0.06947395,0.033719216,-0.017177526,0.02968794,-0.09935745,-0.0118232425,0.0027524566,0.05971434,0.048828494,0.016686898,0.006116199,0.024049152,0.069145136,-0.08521052,-0.029442368,-0.07504902,-1.5957428e-05,-1.7952688e-08,0.013822859,-0.005698462,-0.074431255,0.06849546,-0.04752691,-0.035236135,-0.050538205,-0.033064555,-0.021467956,0.0027821606,0.05056226,0.006635666,0.043814875,0.044973608,-0.009102455,-0.068614535,0.019581405,0.04090202,-0.051462777,0.10477169,0.062316366,-0.020983633,0.07618526,-0.0058408733,-0.03378343,-0.011802045,0.012040219,0.0047847494,0.029494915,-0.00033589388,-0.02315411,0.023486488,-0.018743705,0.046534248,-0.095752254,-0.05788954,0.0077087875,-0.036619004,-0.03199985,-0.016014168,-0.030072512,-0.045729674,0.016517857,-0.072472714,-0.06985724,-0.06882659,0.11674057,0.026409047,-0.07612146,0.084973514,-0.02009953,0.0015130121,0.011137752,-0.01923419,0.06833852,0.019693613,-0.10325533,0.08691302,-0.0460683,-0.040832274,0.001677169,0.06360636,-0.003558783,0.0138299875} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:47:55.576578+00 2026-01-29 18:36:00.564708+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 376 google Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB 1 t 379 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. Nem fogom többet öket választani. economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. nem fogom többet öket választani. 1 2025-12-28 01:27:48.34153+00 hu v5.1 J1.02 {O1.02} V- I2 CR-N {} {"J1.02": "Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem", "J1.03": "200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják ", "R1.01": "Nem fogom többet öket választani."} {-0.06840312,0.099854335,0.011206921,-0.013257598,-0.08374192,0.007649056,0.10043617,0.059094686,-0.020744437,-0.05557015,0.034067042,0.025591716,-0.016817916,0.009346334,-0.040765513,-0.025714865,0.010794295,0.041537482,-0.10031915,-0.0063453754,-0.023431722,-0.03612477,0.031817645,-0.009237639,0.024875825,0.001610808,-0.0151372645,0.032585382,-0.015861975,-0.09626934,0.06047806,0.0953413,0.02395001,-0.023590788,0.037893787,-0.0215365,-0.071961105,-0.019165741,0.035179283,0.011236282,-0.0014313266,-0.06103386,-0.14324445,-0.09251129,0.020686831,0.02909126,-0.019741463,0.063665286,0.03686024,0.043670453,-0.1195294,-0.007953469,0.014262855,-0.016091093,-0.098594725,-0.090391636,-0.043720853,0.061726768,-0.047478665,-0.023237627,0.06455256,0.01972905,-0.06933906,0.043199115,-0.0104721915,-0.027524276,-0.105922475,0.011207947,-0.06279652,0.03941592,0.012057496,-0.113503814,-0.057837397,0.06714053,-0.087591246,-0.07447125,0.0329579,-0.024735028,0.03217089,-0.031110633,0.027392628,-0.029482512,-0.034710824,0.0009693244,-0.0030053777,0.049229953,-0.06413408,0.058403138,0.07087173,0.006606742,0.02934329,0.05838106,0.020893034,-0.0038886787,0.043762263,-0.03441176,0.015364968,0.031948,-0.021394458,0.08137482,0.14373247,0.023119587,0.046137687,0.0072239195,-0.080112986,-0.029024681,0.071500316,0.013853839,0.023275036,0.009834226,-0.045473903,-0.031752106,0.024290934,-0.154819,-0.035567854,-0.020246956,-0.055974413,0.016674574,0.06116084,0.050122738,-0.0072086724,-0.0075164833,-0.035202317,-0.035454623,0.030156616,0.0022125517,-0.013850386,2.2446525e-32,-0.06748703,0.0010697831,0.010116778,0.027577357,-0.0422232,0.026114682,-0.053161353,0.00466434,-0.003633033,-0.07722141,-0.058274068,0.02274804,-0.014380382,0.027664432,-0.012110778,0.001169439,-0.046646614,-0.037787143,0.008807429,0.022137897,0.010666278,-0.046162266,-0.0056892503,0.013854009,-0.03340782,0.0064250305,0.003952007,-0.0023827245,-0.07397768,0.044655968,0.06068435,0.057162143,-0.057347376,-0.03486157,-0.11261542,0.044003647,0.0033838435,-0.05625712,-0.03341227,-0.079311095,-0.023678647,-0.020910595,0.028076136,0.052678388,-0.006608208,0.08484077,0.0029288435,0.052799158,0.0924237,0.0042436575,-0.009652296,-0.058258496,-0.053219736,-0.019502642,-0.028870694,0.09063382,-0.06753108,0.04106892,0.011157063,-0.06737641,-0.03791946,0.04042676,0.07453858,-0.028530596,0.023057146,-0.057549924,-0.058405034,-0.028920237,-0.0042001875,-0.024949238,0.03200412,-0.018104808,0.038618878,0.0944648,0.02229315,-0.006520576,0.058398016,0.0021735402,-0.0054175393,0.01357532,-0.018840155,-0.050387535,0.019605393,-0.09652154,0.11746253,0.009738506,0.074653976,-0.039947167,0.05327572,0.10009132,-0.03218017,0.03029512,-0.04656199,0.028964346,-0.0015081888,-2.1517274e-32,0.01982513,0.06543172,-0.053178724,0.08891165,0.04652368,0.012310863,-0.004540308,0.0018935575,0.037238427,0.06711884,-0.030511029,-0.029175902,0.11139974,0.029093966,-0.03872344,0.0036717774,0.08671571,-0.06666414,-0.016269218,-0.058935184,-0.08975347,0.06237262,-0.06282947,0.14277612,-0.098056234,0.039777767,-0.014775205,0.007888003,-0.07599384,0.023884071,0.053333838,0.0011045232,-0.04213867,0.085559845,0.009835196,0.023978787,0.075572185,-0.022174897,-0.0658985,0.033559844,0.009807208,-0.024732435,0.021710722,-0.053071562,0.037720226,-0.064440235,0.0017834638,-0.09672208,-0.008820591,-0.078979045,0.15370557,0.047528204,-0.019462995,0.036580414,-0.008113147,0.09158238,0.01710819,-0.042225644,-0.038129453,0.00949665,0.012099759,0.023285264,0.052382268,-0.028332748,0.054405898,-0.1138211,-0.034901768,0.014492665,0.068652146,-0.067642026,0.060584936,-0.043783665,-0.105789706,-0.063407175,-0.052350745,0.04101974,0.018961646,0.074242294,-0.015927238,-0.078345925,-0.0064540906,-0.035640243,0.0016229771,0.011119461,-0.06548075,-0.027234606,-0.10379278,-0.037734695,0.015346218,0.018675376,-0.017326167,0.07681781,-0.033486154,0.051751632,-0.04461599,-6.603218e-08,0.028255124,-0.048101146,0.016675536,0.047216572,-0.0010560547,-0.058858354,0.019036615,-0.01873877,-0.0036922714,0.00022923188,-0.020454466,-0.022229245,-0.032928623,0.040548,0.017104898,0.040666927,0.020043606,0.065146744,-0.048797164,-0.0149767725,0.1365315,0.03614982,-0.06480216,0.03768059,0.0008092644,0.0063078706,0.049735002,0.009527064,0.07800368,-0.003072695,-0.08601823,0.04990212,0.03914748,-0.09242308,-0.041950256,0.0055931676,0.010949684,-0.035086308,-0.06051045,0.01187664,0.028272392,-0.04442873,0.020276992,-0.04305307,-0.09294538,-0.068744294,0.01004764,-0.095613256,0.032395214,-0.051469192,-0.0018227779,0.07043864,0.06778219,0.079689234,-0.020140328,-0.04211354,-0.012513749,0.036198676,-0.006273489,-0.0040313434,0.029273061,-0.013444706,-0.025341233,-0.00090010965} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:06.097842+00 2026-01-25 01:27:51.169064+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 423 google Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB 1 t 426 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!He leído otro testimonio y le ha pasado lo mismo!Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!Me encargaré que que ningún conocido alquile ahí ladrones de poca monta! está empresa es una mafia!soy de gran canaria y vivo en tenerife donde alquile un vehículo!al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!he leído otro testimonio y le ha pasado lo mismo!será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!me encargaré que que ningún conocido alquile ahí ladrones de poca monta! 1 2025-12-28 01:27:48.341843+00 es v5.1 J1.02 {} V- I3 CR-N {} {"J1.02": "Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segund", "P1.03": "Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos po"} {0.0027979494,0.046359286,-0.04049627,-0.074666165,-0.07039107,-0.054851856,0.079050854,0.006996046,-0.015861036,-0.028288262,0.012265235,-0.076514594,0.024189461,-0.0012066839,-0.019162636,0.006155422,0.0009670557,0.0636484,0.012377179,0.047828343,0.06214713,-0.1040048,-0.07285284,0.10903519,-0.0013010007,-0.009317106,0.00017753325,0.00065131736,-0.07837764,-0.023928989,-0.010039978,0.01577745,0.005416344,-0.013216039,0.0043746675,-0.019784976,0.04008586,-0.08182601,-0.05359768,0.059459895,-0.03642032,-0.029509103,-0.051469713,-0.0105472375,-0.0054144426,-0.020768438,0.044399317,0.12710966,0.030698527,-0.0039954935,-0.045504306,0.007860753,-0.007940152,-0.022748413,-0.011085467,0.004801117,0.03735463,0.014733381,0.06635212,0.0078506805,-0.017846774,0.109202676,-0.06056957,0.03573406,0.016492093,-0.022964023,0.00950178,-0.034214597,-0.16892833,0.0772488,0.14478536,-0.13037777,-0.0020743113,0.04916932,-0.024870237,0.071583524,0.0040838895,-0.07682039,-0.032083753,0.007139924,0.029139461,-0.033137266,-0.011693275,-0.101450294,0.0016789149,-0.037261337,0.028826658,0.04412796,0.07734422,-0.099392496,0.050779145,0.08616855,-0.071576715,-0.0196692,0.069600426,0.064827725,-0.034527965,0.08514859,-0.06419246,0.0077769537,0.109515056,-0.006517301,0.026931453,-0.04699541,-0.056037497,0.068537235,0.091207415,0.061967503,0.010400583,0.056302886,-0.10092606,-0.056095082,0.0057012127,-0.01639448,-0.025449995,0.008590302,0.035713803,0.03250464,-0.055819973,-0.053021763,0.076830775,0.022735402,-0.06874393,0.015720328,-0.0050562955,-0.007002184,-0.035998754,1.4041857e-32,-0.0077646826,-0.052933127,-0.03745418,0.038520645,-0.04008254,0.01405858,-0.040983897,0.029016303,-0.08144488,0.036749378,-0.07519525,0.018279923,-0.041515883,0.07580367,-0.03855381,-0.002692191,0.0767644,-0.095090084,0.078636594,0.027370995,-0.078417614,-0.003413472,0.0052817413,0.044308286,-0.033949886,0.05627054,-0.05546311,-0.08759537,0.01876602,0.043093465,-0.060940627,0.020847648,0.0062155165,-0.08401363,-0.053169217,-0.017969478,0.07180946,0.0052218623,-0.09530239,0.001757476,-0.040727437,0.04098319,0.021553708,-0.0031239877,-0.02371057,0.07200667,0.038670164,0.058063682,0.030576149,-0.024997313,-0.045480732,-0.042422354,-0.08473241,-0.032692034,-0.021022795,-0.030957814,-0.10460046,0.0064315996,-0.017872058,-0.03807862,0.0040567024,0.007931724,0.056869857,-0.004321261,-0.04518854,-0.005823987,0.0019394611,0.030610276,0.077019244,0.0416902,-0.02974468,0.0037796188,-0.043916367,0.05278798,0.0086569665,-0.023480315,0.05218531,0.021872653,0.0018292505,0.031395875,-0.024498755,-0.074094445,0.07473661,0.06660061,0.11665987,0.104270674,0.04884471,0.018509576,0.0189748,0.09018345,-0.018194253,0.007573637,0.040398862,-0.07006984,0.051555008,-1.5024556e-32,-0.008778668,-0.0263301,0.025082422,-0.007541957,-0.04405056,0.002434139,0.03763185,0.07287393,0.057357922,-0.039277934,-0.083460934,-0.07003113,0.08381192,-0.08491516,-0.07840713,-0.01672642,-0.009825079,-0.023050835,-0.0091639,-0.05728165,-0.050051365,0.05253172,0.092472106,0.08785951,-0.021092562,-0.060634945,0.025312359,0.021841887,-0.066063315,-0.0071740486,-0.013231031,-0.040119912,0.021995254,0.024312492,-0.017059732,0.034099434,0.038706865,0.015274572,-0.030688576,0.012831589,-0.046972573,0.036407962,-0.034914315,-0.044594117,-0.010980076,0.021441687,0.033455953,-0.13368015,-0.015816158,-0.12073373,0.020799905,0.011026147,0.00938008,0.017363258,0.0076980786,-0.008641253,-0.03811453,-0.04024343,-0.022916222,-0.02813877,-0.004193591,0.101982415,0.0067480598,0.017302942,0.085884966,-0.011349742,-0.053115986,-0.018242398,0.035645287,0.0055955956,0.046209313,-0.10550494,-0.06961341,0.07059249,-0.07421003,-0.032932594,-0.075113885,0.013093961,0.081933685,0.029553821,0.0140536,-0.022641294,-0.0063645565,-0.020086665,0.047099125,0.0034105147,0.032925434,0.07495987,0.032000843,0.011667902,0.02071177,-0.0020420821,-0.011133733,-0.020964831,0.027878176,-5.123761e-08,-0.0007006222,-0.02405771,0.007093098,-0.0054577496,0.02826152,-0.012531994,-0.04244516,0.016592894,0.022934606,0.053817652,0.045140225,-0.03509373,-0.106184736,-0.00234533,-0.07986742,0.052039802,0.06465966,0.04216896,-0.013981029,-0.037345756,0.04910334,0.053416915,-0.043935284,0.010062108,-0.005579004,-0.021610728,0.0013126073,0.08101633,0.022962736,-0.010439048,-0.06706204,-0.059154186,-0.10297299,-0.09346849,-0.022125315,0.036757037,-0.061552215,0.07156236,0.01710183,-0.06972892,0.051987346,-0.1460587,-0.045890834,-0.0245315,-0.055713605,-0.058527708,-0.061544172,0.045849375,0.0155989,-0.030042056,0.0018851982,0.023968965,0.06913482,0.004019368,0.010236384,-0.0846534,0.029912414,0.05231882,-0.0061821938,-0.0021178564,0.06694748,-0.023702927,-0.04701239,-0.105702445} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:10:34.488463+00 2026-01-25 01:27:51.348094+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 534 google Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB 1 t 537 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Aeroportdan 1 km aralıdır. Servis əladır aeroportdan 1 km aralıdır. servis əladır 5 2025-12-28 01:27:48.342455+00 tr v5.1 J1.01 {A1.01} V+ I2 CR-N {} {"J1.01": "Aeroportdan 1 km aralıdır. Servis əladır"} {0.07318465,0.07301304,-0.016412571,0.021436019,-0.049647376,-0.08151745,0.059326664,0.035008032,-0.0062822513,-0.045393534,0.0662753,-0.02548878,-0.006562948,-0.03647494,-0.0051457956,-0.002772857,-0.07075992,-0.0017268084,-0.10602399,-0.08817777,0.044970356,0.060796943,0.03839689,0.02529351,-0.04710169,-0.017202273,-0.011842391,0.07259882,0.052156053,-0.030753916,0.04231817,0.0638093,0.044497132,0.053616036,0.011260508,0.0043306784,-0.020595593,-0.024215015,-0.019057356,0.031790346,-0.049671102,-0.03769025,-0.016410638,-0.031503156,-0.03827418,-0.025641298,-0.01990667,0.058694795,0.07892026,0.03692359,-0.058806043,-0.051881585,0.014908022,-0.0728984,0.0041754125,-0.0571629,-0.06748095,-0.008903156,0.008010289,-0.051977742,0.014720035,0.020627158,-0.051725026,-0.022963375,-0.036307827,-0.08813078,-0.06948843,-0.052041717,0.049449746,-0.0595434,-0.07102291,-0.07404994,-0.07966917,0.039584313,-0.025877532,-0.089323826,0.0032116843,-0.015272006,0.048574287,0.0210116,0.06765808,-0.0451481,-0.033667617,-0.018632812,-0.002404515,0.0039926316,0.01578146,0.028486898,0.013212653,-0.06974989,-0.0041031125,-0.038670488,-0.01623758,0.01722659,-0.005026408,0.007307563,-0.025434433,-0.032520317,-0.029457266,0.06434066,0.017051188,0.048469197,0.07033457,0.098903656,-0.12349647,-0.0067542973,0.06672283,0.00035752112,0.03200739,-0.008508105,-0.089835964,-0.06559588,-0.02476366,-0.08380825,-0.037530635,0.087565176,-0.05452613,-0.0040048147,-0.012236406,0.0039773807,-0.044649214,-0.010883799,0.045425918,0.061415218,0.03339204,-0.040313333,0.060339894,4.924118e-33,-0.095055416,0.027812943,0.003304571,-0.012500713,-0.015950995,-0.046338506,-0.057786632,-0.04415188,0.057013396,0.0460704,-0.090916224,-0.0057586315,-0.015255505,-0.045605876,0.10786357,-0.040377624,0.0023697594,0.013307507,-0.09912612,0.002354207,-0.04632601,-0.083141826,-0.0052053924,-0.048450917,0.098735,-0.008054868,-0.031839997,0.011965325,0.087004595,0.06228789,0.057864275,-0.0146707585,-0.08779602,-0.040714584,-0.11841102,0.0006294269,-0.03785566,0.018732231,-0.036081437,0.035840023,-0.03701821,-0.016557777,-0.03301569,-0.019278932,-0.016413858,0.05041897,-0.0016044726,0.039705165,0.08892633,-0.017137744,-0.04932358,0.07118136,-0.06506958,-0.041120905,0.055885654,0.022969704,0.085949,0.00947343,0.005493983,0.05529423,-0.02594234,0.009504826,0.017762002,-0.0056053996,0.10656297,-0.036960125,0.030607168,0.062187687,0.04652764,0.02868064,-0.04525665,-0.0178525,0.058878746,0.092157654,-0.054842412,-0.028377736,-0.04704219,0.0028305617,-0.07062594,0.12855104,-0.0918548,0.056486204,0.008720274,-0.052227464,0.024774363,-0.059462592,0.027273089,-0.047769185,-0.005622485,0.010877962,-0.08490402,0.090739824,-0.0007839057,0.037482128,0.0134546235,-6.743385e-33,0.009259111,0.086110935,-0.03433062,0.021873837,-0.058403287,0.05990347,0.10038323,0.09404368,-0.06979058,0.052777134,-0.07397757,-0.04896608,0.07180076,-0.024258217,0.039583433,0.05234828,0.09214072,0.04619727,-0.05656531,0.05178264,-0.014498451,0.008156599,-0.0021286737,-0.033385303,-0.10090034,0.008856045,0.07600733,-0.028960232,-0.081311315,0.022397479,-0.021599757,-0.014030419,0.0013809351,0.07727947,-0.012159646,-0.012386445,0.027169595,0.018798964,-0.016174624,-0.035944037,0.030357087,0.062485397,0.06227171,0.0022520034,0.060893465,-0.08577025,0.003744447,0.0013526314,0.0006423751,-0.20744324,0.06351636,-0.0067439177,-0.0066311983,0.0030314121,0.16442282,0.08801817,0.04318656,0.0011092619,-0.044395853,-0.075283736,0.020827258,-0.013990462,-0.052652404,0.053917345,-0.0011882903,-0.002569701,-0.03092094,0.039967015,0.06976558,0.021553524,-0.018349402,-0.005012715,0.028411683,0.03872455,-0.10667779,0.05671568,0.037141733,0.1062481,0.00972083,-0.0007473372,-0.0014302812,-0.014431619,-0.0493499,-0.05006842,0.008322927,-0.01937638,0.041300587,-0.06365291,0.023314673,0.006789468,-0.0063954093,0.09053148,-0.07501748,-0.009439009,-0.0050223856,-2.6852636e-08,-0.026138209,-0.028724503,0.025534788,0.019108254,-0.011639418,0.056259528,0.048550867,-0.023102228,-0.06540183,0.022642182,0.004270864,0.020015381,-0.038281973,0.11479688,0.0019843404,-0.04126068,-0.04061291,0.093758516,0.013153206,-0.067753166,0.025255887,0.020592576,-0.019716026,-0.022013424,-0.0075881137,-0.02964249,-0.015907802,0.011347246,0.046140462,-0.09082728,-0.012841861,0.014689949,-0.0577885,-0.07831146,0.007544081,0.005795217,-0.049577262,0.052144893,-0.020285457,0.0447288,0.0506817,0.0086459275,0.019795518,-0.021090837,0.044500586,0.02799076,0.013852257,-0.065214835,-0.054290272,-0.032554626,0.012674206,0.021363828,0.086873375,0.010205875,0.0544843,0.05685672,-0.087379195,-0.043361228,-0.085193485,0.018957838,-0.046447888,0.08550443,-0.094808415,0.036009155} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:10:23.974649+00 2026-01-25 01:27:51.771828+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1242 google ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB 1 t 1245 Soho Club unknown Quite a fun and safe club quite a fun and safe club 5 2025-04-04 18:34:31.336452+00 ro v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Quite a fun and safe club"} {0.014633059,-0.039720047,-0.088136286,-0.010759446,-0.023107903,0.026237812,0.03900725,-0.06285733,0.031034367,0.03276587,0.014758503,-0.009315975,0.04302343,0.011740121,-0.045998514,-0.050806243,0.032757457,-0.06572752,-0.005107476,-0.005965767,-0.17393407,-0.015166842,0.027912512,0.031873602,-0.12460722,-0.028723286,0.012905363,0.04818267,-0.027596748,-0.022062248,-0.056065723,0.030611843,0.02402836,0.012740381,-0.05083925,-0.0048861583,0.05192771,-0.06737966,0.029406851,0.008853541,-0.07813447,-0.05827133,0.044959802,0.01357387,-0.02390885,0.074687555,-0.018156286,-0.056559272,0.033824075,0.009313642,0.0866767,-0.008803256,0.059083015,-0.028076665,-0.01310613,-0.004217648,-0.063026674,-0.052432913,-0.08037825,0.018273128,0.12623137,0.039097793,-0.047460083,-0.00500057,-0.011074669,-0.012302975,-0.08369656,0.056974377,0.12932052,-0.03867757,0.0049739443,-0.028742371,0.018841587,0.0057546156,0.009026856,0.0783675,0.01860129,-0.029430857,0.058858078,0.0070079695,0.0419615,-0.03626935,0.030984422,0.03337177,-0.00092351733,-0.048227794,0.027553303,-0.04976811,0.079249665,0.022744576,-0.019433776,0.093221374,0.0023707883,-0.011593742,-0.029117635,-0.0037572947,0.011813268,0.024331825,-0.06862605,0.095837,0.023000583,0.13935328,0.0012831049,-0.053066753,-0.032860257,0.045360196,0.0069384873,0.08350646,0.022352621,0.01737375,-0.0050260946,0.051899318,-0.01305467,0.031144923,-0.05031787,0.049929876,-0.009370123,0.013541419,-0.058290437,0.013592726,0.0586694,0.10805912,0.055390634,0.04165468,-0.00897858,-0.046099465,0.042302106,-5.69513e-33,-0.028787082,0.026948886,-0.0427907,0.03640122,0.05041966,0.05465993,-0.052801047,-0.057099864,-0.08379619,0.04530863,0.08596194,0.008224658,0.018050708,-0.08907628,0.08576125,-0.039229047,-0.046559107,-0.03566951,-0.05875307,-0.07509274,-0.032371726,0.030656114,0.04034248,0.01098043,0.02083135,0.03736562,0.010918537,-0.04477303,0.13375619,0.061710734,-0.07429979,-0.00039741484,-0.10538918,-0.0534781,0.02379437,0.058282964,-0.08878692,-0.082313254,-0.056105737,0.02513479,-0.03477117,-0.042842604,-0.004440796,0.05882265,-0.01463,0.059719,-0.078645386,0.012921487,-0.04307467,-0.049235046,-0.076874584,-0.0132145,-0.01878227,0.025353452,-0.047267616,0.0072686067,0.027751535,0.052077714,0.026107533,-0.06562801,0.10138102,0.05742179,-0.09383906,0.007662944,-0.10183039,-0.02993391,0.034134094,-0.07654987,0.08758546,-0.018984089,-0.022961063,0.030977609,0.02874142,-0.054704446,-0.09369418,0.006802637,-0.042370487,-0.015405546,0.0035284394,0.064969346,-0.007737363,-0.029196465,0.01892241,0.048732936,0.026075462,-0.058371726,0.057463717,-0.09045597,-0.12158458,0.01819686,-0.08056559,-0.022486364,0.119122945,-0.00044019986,0.019371841,3.735469e-33,0.08041042,-0.057976577,0.0118604805,-0.015506216,0.00024474305,-0.02376448,-0.056203444,0.0028962325,-0.012715154,0.08929498,-0.03123275,0.053205922,0.01379134,-0.0017860077,0.095941186,-0.068176694,0.10098539,0.06756995,-0.0976161,-0.0073207794,0.022025565,0.038823027,-0.029609593,0.045039617,-0.011792388,0.031374212,-0.02367286,0.001721239,-0.12883818,0.04657409,0.002109258,0.026836392,0.05325831,-0.024634136,-0.039097834,0.05984925,0.062037922,-0.0037825012,0.009580095,-0.04332425,-0.012857073,0.025974987,-0.084509514,0.027147667,0.015772033,0.020810174,0.0043336777,0.00887533,-0.049338635,0.046545725,-0.004849968,-0.01971791,-0.06510443,-0.08740502,0.09237295,-0.031171523,-0.039754204,-0.010384142,-0.024827514,-0.02507323,-0.07665874,0.0666003,-0.09230881,0.13774498,0.037708208,-0.0034797143,-0.13202529,-0.011509578,-0.052262638,0.007351193,-0.0850624,0.020107605,0.012448912,0.09192151,-0.051735133,-0.13800941,0.071782894,-0.013860247,0.016933583,0.03829562,-0.0044724685,-0.059180766,0.024141874,0.10720471,0.03155042,-0.040176053,0.036123823,-0.0074129417,-0.0072709466,0.08503359,0.072517246,0.0068671997,-0.0053753518,-0.041346736,0.023918437,-1.7712766e-08,0.015396753,0.031340715,-0.03818487,0.026995363,0.028794616,-0.0049642324,0.0032184052,-0.05710746,-0.010678268,0.10885271,0.06582496,-0.014995677,0.014067241,0.01316778,-0.032728408,-0.0034738227,0.0043746294,0.06328721,-0.06731885,0.08019951,0.023237584,0.013035288,-0.033835795,0.050698597,-0.043182775,0.010828089,-0.045954637,-0.019579586,-0.0012888403,-0.009318642,-0.009214407,0.041022584,-0.016940713,0.07422387,-0.07149534,0.05801632,0.013285691,-0.02487405,0.018277753,0.032199666,-0.03675001,-0.06989695,-0.004415207,0.017701121,-0.016643437,0.04440086,-0.016839543,0.029631648,0.05298018,0.025912955,-0.03387559,0.025233334,0.042111076,0.072011545,-0.010868927,-0.016265389,-0.033556487,0.036456622,-0.011436681,0.029592777,0.06830668,-0.0009669786,0.010596769,-0.030122448} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:04.88914+00 2026-01-29 18:36:00.570236+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 303 google Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB 1 t 306 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich angekommen. Bei der Nachfrage, ob die Uhrzeit der Abholung angepasst werden kann, bekam ich nur eine patzige und freche Antwort dass es nicht möglich sei und man am Flughafen mal richtig nach dem Shuttle schauen sollte. Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert werden, während ich auf das Fahrzeug wartete, lästerte die Angestellte (geschätzt auf 60 Jahre kurze graue Haare) auf Spanisch mit Ihren Kolleginnen und Kollegen ab, während ich vor Ihr stand. Das freche Lächeln der Dame empfand ich als extrem provokant. Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte man mir einen Schaden am Fahrzeug. Wie gut, dass ich vorab ein Video vom Zustand des Fahrzeugs gemacht habe.\nScheint wohl eine Masche zu sein.\nClickRent nie wieder! der flughafen shuttle war nicht am flughafen aufzufinden. nach 30 minuten laufweg sind wir endlich angekommen. bei der nachfrage, ob die uhrzeit der abholung angepasst werden kann, bekam ich nur eine patzige und freche antwort dass es nicht möglich sei und man am flughafen mal richtig nach dem shuttle schauen sollte. eine derartig freche antwort hatte ich noch nie erlebt als kunde. die zeiten konnte nicht geändert werden, während ich auf das fahrzeug wartete, lästerte die angestellte (geschätzt auf 60 jahre kurze graue haare) auf spanisch mit ihren kolleginnen und kollegen ab, während ich vor ihr stand. das freche lächeln der dame empfand ich als extrem provokant. ich würde diese gesellschaft in keiner weise weiterempfehlen. bei der fahrzeug rückgabe unterstellte man mir einen schaden am fahrzeug. wie gut, dass ich vorab ein video vom zustand des fahrzeugs gemacht habe. scheint wohl eine masche zu sein. clickrent nie wieder! 1 2025-12-28 01:27:48.34105+00 de v5.1 J1.02 {} V- I2 CR-N {} {"A1.03": "Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert w", "J1.02": "Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich a", "R1.02": "Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte"} {0.044090554,-0.0052938107,-0.051785905,-0.023254195,0.0007178232,0.062415667,-0.023282593,0.07815726,-0.010273472,-0.037256464,0.016157292,-0.06365617,0.03716497,-0.036503576,-0.0008573649,-0.060944702,-0.052483104,0.0197665,-0.046271894,0.049497813,-0.0017432562,-0.046204884,0.05238264,0.031616602,-0.080386885,-0.0031077655,-0.027325518,-0.016657997,-0.026148867,-0.003927205,-0.0045319917,-0.011131856,-0.043331396,0.016202375,-0.038420267,0.047622364,0.12066477,-0.09342111,0.0027446595,0.060002573,-0.11218345,0.027865492,-0.01960948,-0.04384101,0.0033885178,-0.02286392,0.044322927,-0.053481575,-0.050156176,0.018270733,-0.06614847,0.024658516,0.014631163,0.0086904075,0.05283249,-0.08382267,-0.016328774,-0.051138625,0.043576963,0.041699946,-0.105875134,-0.079144664,0.03542049,0.04065058,-0.06640195,-0.016955836,-0.07484427,0.011264604,0.060244184,-0.0039760713,-0.0753985,-0.024443261,0.03007085,-0.053938195,-0.009128822,0.11717055,0.009125321,0.03198097,0.051710773,-0.11367882,0.07024382,-0.009586366,0.022454819,-0.014415864,-0.005313332,-0.052977305,0.03363733,0.03157607,-0.041891545,0.074855596,0.021937847,0.11230028,-0.11981825,-0.0018862656,-0.02943686,-0.032094464,-0.0605628,-0.024317428,0.005074306,0.07380246,-0.031887617,-0.041401517,0.048441797,0.05818529,-0.0402679,-0.09114604,-0.047040373,-0.050296076,-0.049118537,0.021458725,-0.08006023,-0.048163533,-0.065299764,-0.058269884,-0.028593114,0.0056927176,-0.052490115,-0.13447754,0.013508891,-0.0013367549,-0.03376989,-0.031764768,0.08904726,0.023206374,0.04999119,0.03164975,0.12263021,2.0108184e-32,-0.029005323,-0.045060024,-0.035706244,-0.014604162,0.107540764,-0.07514251,0.040631067,0.06801538,0.03802852,-0.03384487,0.0759242,0.01374262,-0.04267434,-0.0982678,0.07484218,-0.04970135,0.0022187268,-0.05609835,-0.02734183,-0.07113498,0.06718953,0.014186556,0.06691226,0.0051123276,0.033850767,-0.03448494,-0.03885065,0.004312271,-0.042582326,0.07761382,0.046352472,-0.07358881,-0.054590013,0.024323896,-0.03150701,-0.03034245,-0.032634974,-0.03892165,-0.022256132,-0.03372858,-0.03334708,-0.045819096,0.024754629,-0.005122786,0.05108974,0.016418062,0.041925233,0.034643706,0.05588072,0.024533557,-0.019081946,0.0332218,-0.016148772,-0.044713162,-0.028021093,0.034515925,-0.057338867,-0.014517071,-0.024184577,-0.0030713626,-0.06555647,0.000817945,0.07753098,-0.041298185,0.06243369,0.013068569,-0.03366285,-0.035249606,0.097170755,0.033486065,0.057425518,-0.07467362,0.097541645,0.03512202,0.10699656,0.048741844,0.022332523,-0.007671854,-0.11778284,-0.00044335445,0.044595182,-0.0010560731,0.0040545645,-0.01514436,-0.038440816,-0.059925437,0.015774857,0.024628276,-0.0029498003,0.06417869,0.002832365,0.008467931,0.06837906,0.008997215,0.049863804,-1.9568125e-32,0.10794952,0.0783316,-0.027350841,-0.10426133,0.004964528,0.0327921,-0.02746237,0.047850616,-0.0344502,-0.031324424,-0.017448043,-0.03846655,0.042297367,-0.011665761,-0.07994484,-0.0050795707,0.06593505,-0.05990658,0.038519498,0.020213105,0.03456973,0.004550913,-0.06803454,0.052695137,0.054559957,0.07622662,0.042099196,0.08046735,-0.034913696,-0.04279864,0.060742293,0.037051786,0.025068153,0.06835929,-0.041126803,-0.066409804,0.055942524,0.0626741,-0.042615805,0.009966541,0.015989311,0.046714623,-0.06525746,-0.10462685,0.04834529,0.005290155,-0.050814107,-0.07794046,0.013746576,-0.07807169,0.012064142,0.0294167,-0.067432836,-0.052462686,0.038816277,0.045336135,0.036800902,-0.08797611,-0.0121487295,-0.0051257196,0.04231887,-0.02019057,-0.020760464,-0.043892313,0.09549587,-0.10576617,-0.026785014,-0.055911954,-0.03597655,0.050339814,0.028433276,0.097804345,0.01945736,0.018849699,-0.00402901,0.059600495,0.09667569,0.0002832043,-0.05628121,0.043811854,-0.014755097,0.057725035,-0.029614372,0.0024100156,-0.071586005,0.007888292,0.039185148,-0.004318553,-0.010807735,-0.029369175,0.025511008,0.016154855,0.057780888,0.005553369,0.059229597,-6.944252e-08,-0.0064878482,-0.01141481,-0.082173705,0.008520727,-0.027738312,-0.09779526,-0.030723758,-0.0004279361,-0.07986305,-0.053761847,0.014896578,0.06950987,0.054772887,0.06693617,-0.12206489,-0.0645531,-0.021173384,-0.041905187,-0.03961729,0.026856976,0.021988362,-0.06865699,-0.036839988,-0.05324747,-0.035929974,0.065053366,-0.014990242,-0.06019001,-0.0057304334,0.003515645,-0.06841779,0.036448963,-0.0123506915,-0.006234403,-0.11519904,-0.0432469,0.029237263,0.009834912,-0.122789994,0.08342438,0.106639184,-0.045187056,0.02007069,-0.052812878,0.055613853,0.026440483,-0.034338452,0.07406767,0.05067106,0.1097682,-0.01264842,0.015227321,0.0018945961,0.010849822,0.006447353,-0.028365288,-0.06241379,0.0042931163,-0.03399772,0.0006522165,0.0023181147,-0.029797323,0.009702925,0.00020102666} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:28.460961+00 2026-01-25 01:27:50.887527+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 437 google Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB 1 t 440 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown En vez de estrella mejor 1 pedrada me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto mañana denuncia en consumo jente desagradable y con amenazas en vez de estrella mejor 1 pedrada me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto mañana denuncia en consumo jente desagradable y con amenazas 1 2025-12-26 01:27:48.341919+00 es v5.1 J2.03 {A1.03} V- I3 CR-N {} {"J2.03": "me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que f"} {0.0056504994,0.11465627,-0.005102727,-0.034199428,-0.07881994,-0.03049364,0.090932615,0.06585649,-0.007242084,0.021033857,-0.0039352416,-0.062066082,-0.008001707,0.010297487,-0.025069643,0.050802678,0.016207865,-0.02810226,0.009216017,0.043864,0.07136871,-0.029531404,-0.069221705,0.124175705,-0.054658655,-0.017065907,0.00039702098,0.0035359699,-0.0055109034,-0.08494221,0.037855867,0.047798734,0.0038653768,-0.03179511,0.0031256857,-0.09752791,0.082416646,-0.0989781,-0.047461763,0.048599873,-0.028049551,0.01581624,-0.08337254,-0.06938753,0.0074037598,-0.026810959,0.06550685,0.14127241,0.06892904,-0.052818626,0.015607726,-0.031298865,-0.019006813,-0.12614752,0.028045427,-0.07472389,0.030995458,0.025536813,0.09415754,0.07860237,0.06475612,0.04236128,-0.081363246,0.07500726,-0.027091037,-0.054058254,-0.016757714,-0.0020033394,-0.09208243,0.07516613,0.097361274,-0.10254667,0.024305772,-0.0016717977,-0.016190326,0.032749232,0.053634543,-0.051412668,0.01847351,0.0074201585,0.015672714,-0.09578241,-0.06995124,-0.045368392,0.07090765,-0.0037390548,0.005217458,0.036716398,0.078627944,-0.008734489,0.00925202,0.04142105,-0.06924348,0.0017103779,-0.0524047,-0.013374739,0.06257284,-0.0026026997,0.00513995,0.06211066,0.059754103,0.05851237,0.048060812,0.013613144,-0.028539348,0.010633123,0.09817396,-0.01879889,0.008834504,0.020445261,-0.1205308,-0.09261344,-0.038731717,-0.03209828,-0.04438392,0.02909782,0.030107088,-0.053681318,-0.020550586,-0.113029614,0.01818494,-0.0027524119,-0.03525453,-0.005140362,0.04658379,-0.06215249,-0.037418094,1.2696257e-32,-0.039793793,-0.023947539,-0.028563207,0.07653138,0.04589649,0.0095349355,-0.015095287,-0.0210677,-0.028679935,0.0101141445,-0.020750547,-0.00315685,0.019727178,0.033754468,0.05582859,-0.0148672415,0.012495008,-0.051044423,-0.020921392,-0.004619587,-0.029370563,-0.036784794,-0.030981878,0.049439907,-0.047068037,0.049908865,-0.027037276,-0.06246707,-0.012163267,0.05508133,0.001647928,0.013251217,-0.04891048,-0.03200518,-0.05497196,-0.03372888,0.056982957,-0.01059041,-0.06401776,-0.056895476,0.0026877602,0.055504456,-0.022707434,-0.038774613,0.05886447,0.04500596,0.051580586,0.0023862245,0.067700624,-0.050452285,-0.020906912,0.014310826,-0.04515441,-0.037783872,-0.00806893,-0.023623357,-0.04569988,-0.0061856774,0.03975933,-0.04317546,-0.039037574,0.03274387,-0.020595588,-0.013938877,-0.0047817817,-0.007014164,0.0099920435,0.043567333,0.109801,0.044897217,0.014359354,0.022851435,0.045279793,0.03109788,0.029452799,0.013246558,-0.0058327327,0.025654357,-0.023604292,0.0050258837,-0.0039395127,0.009903795,0.061571907,0.00034669883,0.1637662,0.0319971,0.14396898,-0.0057640728,0.0022882188,0.14735019,-0.04788953,0.07719949,0.024133302,-0.034221206,0.047510594,-1.3218189e-32,-0.04998496,0.06949361,0.028297592,0.0013366588,-0.017591866,0.009006746,0.03636138,0.05930837,0.019339928,-0.06783791,-0.08489778,-0.11873013,0.10650267,0.022352882,0.04178884,-0.033211064,-0.02610226,-0.14003092,-0.03914831,-0.07797494,-0.051515434,0.058979128,0.049484666,0.019369459,-0.02188754,-0.03028809,0.019856408,0.020849172,0.044807445,-0.026825737,-0.016452821,-0.001623788,0.009576412,0.10804563,-0.056640524,0.010613932,0.05715982,0.070022516,0.026355,-0.0053237802,-0.05249847,0.04701139,-0.039243124,-0.019280657,0.010008863,0.010629714,0.025326446,-0.117078386,-0.052038148,-0.099746175,0.089698926,-0.04624953,-0.041364677,0.041492943,0.091007456,-0.03615803,0.0072572134,-0.09621988,-0.059939116,-0.023073884,0.08000553,0.047234,-0.06938397,-0.03215866,0.07855247,0.005509221,-0.038557954,-0.042002514,0.059811357,0.0067716665,0.036396287,-0.018632563,-0.08629932,0.029183682,-0.011778339,-0.037610993,-0.06749458,0.009422839,0.027881008,-0.008714981,-0.052723695,-0.0031231209,0.013365823,-0.054801546,0.034393314,-0.07222637,-0.038374417,0.052615583,0.016337577,0.025098436,0.0057849037,0.042432137,-0.0053940313,-0.053300437,0.00017809847,-4.9637553e-08,-0.009737127,-0.028877629,0.031711362,0.0076652886,-0.007767859,0.010429764,-0.025827117,-0.039121617,0.013996955,0.07950667,0.038096134,-0.067563035,-0.014567559,0.02402089,-0.084597565,0.05173292,0.021964647,-0.05408027,-0.033102743,-0.050386555,0.017723445,0.024256067,-0.10214602,-0.023289403,-0.042251717,0.039549846,-0.056155387,0.03299432,0.005564707,-0.015415608,-0.08958801,0.0034943412,-0.012828074,-0.11402035,-0.06587743,-0.030679934,-0.0249524,0.03579961,0.004929471,-0.07184242,0.117696285,-0.058045015,-0.056306776,0.010374455,-0.03648306,-0.04301884,-0.052201394,-0.04469943,-0.048951756,-0.015965253,-0.0023784956,-0.03653829,0.14250542,0.018810304,-0.0148034515,-0.018583946,-0.0157728,0.014971196,-0.035673067,-0.007987498,0.08393652,-0.019611506,-0.03251775,-0.03212592} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:31.055558+00 2026-01-25 01:27:51.391929+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 443 google Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB 1 t 446 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora. llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora. 1 2025-12-26 01:27:48.341972+00 es v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al p"} {-0.061020672,0.05874473,-0.06523747,-0.08366547,-0.025571622,-0.03694208,0.0027699172,0.09656981,-0.039319098,-0.06978582,0.04728341,0.026546553,-0.08386448,0.010246834,0.0038075987,-0.043105915,-0.03643346,0.054007728,0.010003663,-0.013143872,0.055608,0.011518238,-0.005106427,0.110082485,-0.044295006,0.0562667,0.0033807466,-0.021904668,-0.025109904,-0.06860077,-0.010182937,-0.0081819,0.041807044,-0.045131847,0.0035008092,-0.0070471563,0.009815364,-0.008574854,-0.08372975,0.07773791,-0.0067394413,-0.031539798,-0.011867174,-0.013029888,-0.015825422,-0.058168624,-0.0132900365,0.054217752,-0.035608586,0.035353117,-0.027296493,-0.044523172,-0.07280252,0.02435707,-0.030471807,-0.016655557,0.014461384,-0.0068172663,0.011920003,-0.054948155,0.037429858,0.039418176,-0.08360233,0.00618523,0.02126761,-0.055533707,0.04006854,0.04014678,0.00030407976,0.10020915,0.09112437,-0.08277721,0.03642623,0.060685944,-0.051899128,0.06150484,0.010986377,0.018125162,0.050829448,-0.107689545,0.057879087,-0.036068458,-0.08981758,-0.088846,-0.0590111,-0.031451922,-0.07451357,-0.01306541,0.07927646,-0.060479153,-0.058782298,0.08139848,-0.08241242,-0.0060107135,-0.08562696,-0.009936729,0.026441732,0.003935578,0.037398025,0.03719314,0.06549024,0.00519931,-0.034314312,-0.025102485,-0.08772357,-0.013573427,0.04543746,-0.019754224,0.033770736,0.031673882,-0.08608108,-0.054856196,0.016377859,-0.071071126,-0.026466524,0.0011009565,-0.020874476,-0.010490623,-0.12371023,-0.039247416,-0.0067152004,-0.030818146,0.015701408,-0.06176091,0.06638736,-0.08877667,-0.0063219466,1.3541223e-32,0.010435918,-0.12036572,-0.05079037,0.057106078,0.00021114368,0.061392445,-0.013270363,-0.07854682,-0.0796565,0.032522157,-0.08213971,-0.030332668,-0.0323405,0.0812832,-0.062235624,0.014091295,0.019720726,0.004840697,0.029039122,-0.017172642,-0.043984387,0.056822143,0.01832301,-0.0026286226,-0.0122727705,-0.002857332,0.042801403,-0.065297425,-0.04647668,0.042336337,0.08632885,0.015406998,0.001986361,-0.045251522,-0.021423733,0.026757749,0.012421154,0.025623584,0.003558678,-0.02709942,0.01035335,0.026274934,-0.05316054,-0.00083868345,0.03270429,-0.016286902,0.0143354405,0.0858887,0.06110673,-0.05748302,-0.037421912,-0.042668708,-0.08953623,0.015075432,-0.0191027,0.046939034,-0.039504096,0.044223223,0.017936196,-0.07241989,0.016552536,0.15005037,-0.032793317,0.009164763,-0.026878435,0.00264485,-0.023584945,-0.008409663,0.145659,0.0073091015,-0.07670064,-0.06389892,-0.09126407,0.07751203,-0.01925701,-0.02539004,0.028708093,0.004938699,-0.022546342,0.051943537,-0.033572022,-0.078239195,0.052801743,0.07418332,-0.02035295,0.061071623,-0.0053426446,0.03870281,-0.016161598,0.13937841,-0.040474914,0.02270306,0.09651993,-0.010602422,0.11312768,-1.3396727e-32,0.031037513,0.0012584025,-0.032105442,0.029805169,0.032365587,0.02303716,-0.086419776,-0.0542102,-0.04581021,-0.10723074,-0.019137146,-0.052206863,0.10557551,-0.03885507,0.053316694,0.086986974,0.022749018,-0.058205765,-0.013890866,-0.052010316,-0.08691656,-0.01956582,-0.03831645,0.036925532,-0.085687265,-0.05549749,0.08656149,0.00574129,-0.05295633,0.03443083,0.053980503,-0.02331722,-0.034458756,-0.005337619,-0.019685194,0.060998447,0.12999086,0.020111017,-0.029988818,-0.009063983,-0.032984164,0.056580808,0.055839334,-0.047391545,-0.009355174,0.022777269,0.019363802,-0.12235832,-0.07821561,0.0007893286,0.14463508,-0.059118062,0.001861846,-0.04275531,0.14178944,0.005391529,-0.03713245,-0.039810922,-0.046943765,0.03348005,0.08625664,-0.014708904,-0.013374153,-0.027456652,0.050774775,-0.0031302308,-0.04590647,0.020334134,0.061554037,0.0610671,0.0741806,0.06431925,-0.023171712,0.09593957,-0.0044364473,0.019473204,-0.036900748,0.03369782,0.02208491,-0.013640839,-0.022146797,0.0031549358,-0.0005374032,-0.038027283,0.093234554,-0.011598728,0.0072064684,0.032705713,0.036062792,0.054993,0.0013134476,-0.028253527,0.0048325784,-0.07008575,0.07070663,-5.0691025e-08,-0.0031541656,-0.0465432,0.007182405,0.087917864,-0.02454393,0.021589793,0.056853235,0.03669711,0.029183079,0.0012857891,0.057946384,0.019629758,0.04832143,-0.006040225,-0.006338056,-0.004180712,0.06940448,0.094861075,-0.058275048,-0.07869758,0.056241315,-0.022512155,-0.01965093,-0.029243348,0.019797163,-0.030628482,0.06667215,0.025420785,0.03276152,-0.007083438,-0.031526845,-0.04974296,-0.034092605,-0.103159286,0.07352178,0.006240937,-0.054349955,0.021417692,0.009214342,-0.02385065,0.0302427,0.02022834,0.0034307207,0.006547478,-0.03211154,-0.110886216,-0.051335026,0.03398746,-0.024209123,0.023230955,0.0034933772,0.0017136665,0.07214548,-0.0017540051,0.07836036,-0.0057876837,0.007850246,0.05475809,-0.013412974,-0.026620788,-0.0028680265,0.07001015,0.0015126104,-0.050787922} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:24.070763+00 2026-01-25 01:27:51.413376+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 492 google Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB 1 t 495 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes, sin duda repetiremos, el coche impoluto y nuevo tanto la recogida como la entrega y el traslado fuero rápidos y eficientes, sin duda repetiremos, el coche impoluto y nuevo 5 2025-12-26 01:27:48.342232+00 es v5.1 J1.03 {} V+ I2 CR-N {} {"J1.03": "Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes", "O1.01": "el coche impoluto y nuevo"} {-0.015383908,-0.015330311,-0.090541534,-0.01574744,-0.015490095,-0.041263286,0.00093203696,-0.011075073,-0.04421978,0.01190795,0.09325412,0.012293985,-0.057900213,-0.03836287,0.014753819,-0.02114153,0.015873883,0.014167518,0.0075425324,-0.047390178,0.094739296,-0.067390785,-0.10412541,0.095442064,-0.071578085,-0.0591002,-0.090847485,0.0062268013,-0.09522405,-0.11804298,-0.037654206,0.10045615,0.04141335,0.0013314949,-0.07595484,0.035469163,0.03797854,-0.037395794,0.0026970801,0.0217234,-0.13942899,-0.003955347,-0.0121677,-0.04859062,0.01422565,-0.070125915,0.020366998,0.033932045,0.016862268,-0.035839356,-0.024531236,-0.032741863,-0.036045507,-0.018033251,0.01808007,0.033465717,0.0028402866,-0.031708293,0.042083766,0.027133971,0.024474328,0.0654364,-0.017006606,0.012956733,0.033943895,-0.070963465,0.030323591,-0.01956078,0.0028528539,0.040381156,0.067507416,0.015145376,0.063852645,-0.0370494,-0.019196214,0.024896832,0.035833467,0.060390785,-0.01707365,-0.06793901,0.04043836,-0.00030799315,0.014490904,-0.049386144,-0.015309792,-0.021290788,-0.082404196,0.010831322,0.05021813,-0.0130630545,0.038182475,0.09063919,-0.004070778,-0.009247652,-0.03314439,0.070278615,-0.0022967588,-0.027668927,0.050358597,-0.010400573,0.074057296,0.07893359,0.03890037,-0.032807954,-0.06764138,-0.021128941,0.051035915,-0.0016183591,0.017003644,0.039610624,-0.09457529,-0.042298425,0.04571452,-0.022056932,-0.06259328,0.03378444,-0.03696711,-0.03970526,-0.038702812,-0.04257875,0.050717145,0.015279295,-0.03632116,-0.053308386,0.0072539994,0.01994117,0.07654358,9.175034e-33,-0.007841301,-0.005923931,-0.03681425,0.083890215,-0.0063167494,-0.019257126,-0.038433205,-0.039269887,-0.02252366,-0.029993003,-0.095303036,0.04855902,0.0012742167,0.025783354,0.019830741,-0.056077097,-0.051571887,0.052844677,-0.0058526355,0.01185144,-0.07177612,-0.044577874,0.01944635,-0.044248905,0.08735732,0.084481515,0.017810896,-0.016888464,-0.07401522,0.043056715,0.0044549108,0.03826453,-0.022305207,-0.041650318,0.0024750673,-0.009597427,0.046313714,0.046495195,-0.056571588,0.0125063965,0.022930484,0.052189723,-0.06799109,0.049727675,0.022677645,0.008505801,7.9310746e-07,0.0825854,0.09855072,0.007053537,-0.056095332,-0.0010695714,-0.082825035,-0.08674552,-0.0155112585,0.07084906,0.00317034,0.003215399,0.025178105,-0.00405714,0.026547855,0.038148392,-0.00717614,0.005557,-0.009562685,0.021873986,0.021237925,0.07283799,0.11149837,0.07236619,-0.0679852,-0.076979846,0.0014362339,0.004330491,0.098222174,-0.010116161,0.0056888154,-0.01135535,-0.033880576,0.009527527,-0.053131968,-0.060171325,-0.02855923,0.038796473,0.081635304,0.034438297,0.026517296,0.08695801,0.055452324,0.06796498,-0.06711695,0.09175688,0.04836109,-0.07196312,0.055450678,-1.0878208e-32,-0.032680232,-0.026534975,-0.009973054,-0.016593397,-0.0154264085,0.0052666725,-0.07842302,-0.023887416,-0.020988688,-0.06399487,-0.1105451,-0.13292335,0.06256578,-0.007866575,-0.018307174,0.046173725,-0.035927825,-0.09383594,-0.100479655,-0.0076859016,0.01131904,-0.0021225584,0.024157846,0.037495892,-0.03687589,-0.026417062,-0.007969926,-0.0018501534,-0.04941123,-0.031072112,0.02187552,-0.054280173,-0.022239098,0.09274884,-0.0424476,0.0416139,0.040692173,0.018225942,0.04194654,0.030202288,0.012116205,0.09895267,0.0037536614,-0.04390636,-0.05251531,0.039520286,-0.025437795,-0.089446224,-0.015705869,0.010624718,0.13780034,-0.09050187,-0.07618253,-0.055163115,0.06582664,-0.012647892,-0.10856211,-0.08191914,-0.074250266,0.04919892,-0.0017222997,-0.017689388,-0.05915244,-0.020334385,0.09299358,0.0007172142,-0.008626497,0.012608644,0.07035153,0.08381453,0.10938351,-0.0038658218,-0.09306079,0.004734231,-0.0304158,-0.049936835,-0.12417497,-0.008075244,-0.06309634,0.014898804,0.0010304999,-0.009594606,0.06051786,-0.034993563,-0.0016784554,-0.04396768,-0.084260926,0.02139184,0.022033121,-0.020298807,-0.0129060205,-0.040497337,-0.10027316,-0.009746202,-0.028258724,-4.3265555e-08,0.012550388,0.021986485,-0.007404928,0.07123758,0.11209008,-0.0005668338,0.009839203,0.052241813,-0.0072353245,0.010435068,-0.00969864,-0.013926708,0.054735504,0.07103624,0.047669835,-0.019700967,0.11708909,0.058152407,-0.004659225,-0.060617194,0.08616701,0.037645064,-0.07141517,0.017586773,0.056283787,0.019134391,-0.0070585804,0.044522807,-0.023956353,0.019599514,-0.04983109,-0.016428223,-0.034489613,-0.08457819,0.016002204,-0.0027381808,0.012917684,0.041891243,-0.016246611,-0.08199412,0.013333601,0.04487776,-0.032107104,0.01622176,-0.11115609,-0.11424063,-0.059642896,0.038809903,-0.0050666407,-0.005856477,-0.025933437,-0.08324484,0.09712144,0.05806638,0.05529232,-0.029364076,0.028398316,-0.006265013,-0.020526579,-0.0009380538,0.09367168,0.036967948,0.11647351,-0.06979453} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:05.247335+00 2026-01-25 01:27:51.618568+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 498 google Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB 1 t 501 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática. fui atendido por carmen, una chica muy agradable y atenta, y muy simpática. 5 2025-12-26 01:27:48.342276+00 es v5.1 A1.01 {} V+ I2 CR-N {Carmen} {"A1.01": "Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática."} {0.004469169,-0.050137598,0.0152879525,0.027007518,-0.02939525,0.02186744,0.07604209,0.025692184,-0.019795623,0.06827585,0.05689041,-0.032386724,0.007818657,0.050633457,0.019391356,0.054951474,-0.001818,0.007981254,0.04082367,0.11086402,0.11592382,-0.047284767,-0.03362095,0.1328295,-0.0520831,-0.030870553,-0.025581447,0.0018571182,-0.07935268,-0.0055589583,-0.045513682,0.094298325,0.08505156,-0.022866262,-0.0023370967,-0.081238806,0.05435272,-0.061374705,0.029622136,0.03841803,-0.0999844,-0.013007619,-0.029457679,0.029530888,0.03305202,-0.09859761,0.07959795,0.09226328,0.05034005,-0.019540923,-0.041474942,-0.04933445,-0.049283024,-0.033210345,-0.015347387,0.035235614,0.040710624,-0.094280586,0.03355061,0.07476207,-0.006953401,0.05556559,-0.04885917,0.027497914,-0.004802991,-0.044203628,-0.0025017068,-0.016974932,-0.073579215,0.025679162,0.12726045,-0.055512726,0.05982485,0.03476658,-0.029964263,0.046275143,0.052558172,-0.023206536,-0.03741334,0.009096713,-0.07989069,-0.031077368,0.028066376,-0.029966306,0.034616288,0.03255291,-0.04831694,-0.0330412,-0.03055284,0.0010621526,-0.028754337,0.05941489,-0.051679663,0.013604955,-0.010683839,-0.057711434,0.037996728,-0.0050765676,0.068981335,0.054125752,0.048194923,0.043874767,0.08370635,0.03828887,-0.038660735,0.051391196,0.034529798,-0.060707297,-0.022152022,-0.015789703,-0.03871391,-0.018382708,-0.003754838,0.03904066,-0.13143435,0.05253994,-0.023297839,-0.03260479,-0.005835363,-0.031834614,0.05049398,0.045779753,-0.043988816,0.05713885,-0.005151263,-0.08518654,0.07046256,4.9081834e-33,-0.050234433,-0.046415873,-0.020452665,0.026143286,0.0012912337,0.054925613,-0.015280512,-0.09994682,-0.02861002,0.016405674,-0.07239,0.0055927797,-0.026113208,0.11094761,0.02860122,0.097857215,-0.013565226,-0.03683026,0.045253266,0.0350867,-0.045239817,0.012056628,-0.035944287,-0.040274896,-0.008247745,0.063941754,-0.062227823,-0.102448404,0.019473331,0.071104,-0.0070321667,0.07011105,0.01964082,-0.062413637,-0.05367998,-0.09774861,0.05092066,0.033506904,-0.03658473,-0.01796379,0.08972753,0.08581623,-0.00095101615,-0.015315761,-0.0017260349,0.066619396,0.11023975,0.05437117,0.05000713,0.032205615,-0.03776354,-0.09397882,-0.0551792,0.03103482,0.008075526,0.007452974,-0.011381754,0.047190852,0.014359947,0.00869865,-0.00996221,-0.005543516,0.045501366,-0.064088576,-0.025572494,0.0054452303,0.041172467,-0.016345693,0.14463997,0.07496393,-0.080470316,-0.008237511,-0.038205523,0.033883974,-0.045867704,-0.07532538,0.025771813,0.013045661,-0.022685483,-0.0052989274,-0.009890433,0.038952857,0.020081429,0.020861648,0.05420414,0.10366108,0.08738163,0.0030990557,-0.08830013,0.07942632,-0.02660101,0.07426861,0.04812874,-0.056931645,0.03251964,-4.8266547e-33,-0.0543671,-0.055291623,-0.008877541,0.03658291,-0.04959455,-0.030708471,-0.105097026,-0.013728472,0.020960536,-0.08401031,-0.07124133,-0.12154736,0.10830548,-0.07177436,0.003126503,0.082337484,0.031843837,-0.030625328,-0.12963593,-0.009647218,-0.02910002,0.031764586,-0.013196987,-0.037703652,-0.0029096433,-0.04393769,0.032047935,-0.012256366,0.03759619,-0.022994537,-0.038636204,-0.01756581,-0.059612893,-0.015101936,0.012972689,0.008870788,-0.029901614,0.013708249,0.073959194,0.02998597,-0.03797544,0.07351124,-0.00017523236,0.03907667,-0.045664143,0.05033492,-0.053747382,-0.115795135,-0.011570054,-0.07225368,0.04318098,-0.11925436,-0.0072090384,-0.02660244,0.071442224,-0.066869535,-0.015956242,-0.07902575,-0.023988808,-0.011207634,0.047724552,0.00885053,-0.10652045,-0.04770665,0.012628323,0.0074876645,-0.041674886,-0.0109074535,0.013448042,0.05151083,0.075186804,0.023403697,-0.08486168,0.03105923,-0.028360019,-0.027061833,-0.10698646,0.068605304,0.009111017,0.055630073,0.052084263,-0.0011713032,-0.012456145,-0.017020203,0.028533613,0.016943915,-0.09838466,0.03970653,0.011390324,0.038798977,0.0045134597,0.037189815,0.014214663,-0.056132384,-0.024570167,-2.6718528e-08,0.011328423,-0.07134422,-0.018086566,-0.027136106,-0.0388899,-0.025432458,-0.008004639,0.032408945,0.015742525,0.028092168,0.054079268,0.058655255,0.046550296,0.069652274,-0.063448235,0.059179395,0.09257078,0.051862884,-0.003734501,-0.021669416,0.047862306,0.04883271,-0.019596633,-0.03123243,-0.05017429,0.040278286,-0.05077529,0.010993604,-0.024612105,-0.022631468,0.018532345,-0.0020792666,-0.051799275,-0.09147671,-0.07442191,0.0021270998,0.0062489198,-0.052573904,-0.027492912,-0.06997648,0.12039945,0.012237156,-0.006225559,-0.018107438,0.068075195,-0.07917151,0.024933651,0.018500075,0.017034162,0.0008043742,-0.045174673,-0.008706559,4.9729504e-05,0.04572164,-0.022755966,-0.018609343,0.03781079,0.012992452,0.0017563163,0.0071822214,0.032823186,0.06543924,0.028778685,-0.08353258} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:55.732026+00 2026-01-25 01:27:51.637336+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 530 google Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB 1 t 533 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen. alles lief reibungslos, ich empfehle direkt über die seite und mit rundumversicherung zu buchen. 5 2025-12-26 01:27:48.342442+00 de v5.1 J1.01 {} V+ I2 CR-N {} {"J1.01": "Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen."} {0.004273248,0.025386585,-0.010979143,-0.01164488,0.050365083,0.051338498,-0.09009845,0.06664815,-0.03901319,-0.023852035,-0.005992827,-0.05705369,-0.039581917,-0.08389808,-0.053632677,0.020189865,-0.032627486,0.13617608,0.006317905,0.04486397,0.009520316,-0.018192627,0.010716345,0.07016284,-0.027985943,0.011504197,-0.073551975,-0.044725735,-0.014220277,-0.06978248,0.041951373,-0.051611792,0.078860894,0.017206395,0.056351233,0.04501945,-0.032189388,-0.09602169,-0.14554681,0.102357164,-0.07755325,0.053213913,-0.067816496,-0.0041179345,-0.03650624,-0.010776272,0.042060237,-0.040678333,-0.019332046,-0.005591061,-0.03331375,-0.01625242,0.0034747769,0.0006655161,0.017604217,0.002085437,-0.0031961757,0.03227438,0.055812716,-0.026003022,0.029204898,-0.05095404,-0.015432598,-0.010536597,-0.044775967,0.04913681,-0.03513994,-0.016330382,-0.057500586,-0.024708908,0.07375135,-0.08356991,-0.00136394,-0.020947775,-0.089985944,0.029922964,0.007139736,-0.040897552,-0.039807208,-0.09227643,0.00669418,-0.022079596,-0.022548867,-0.034779783,0.034312285,0.03310617,0.0025667076,-0.019925952,0.040452797,0.0037220179,0.023693185,0.059183884,-0.063451275,0.042781066,0.003478963,0.011890818,0.02624458,0.033830456,0.06747477,0.013675603,0.028404642,-0.01066365,0.06735116,0.059703197,0.005128174,-0.051959354,-0.007147573,-0.008894896,-0.041787922,-0.017706195,0.07192645,-0.06887741,0.08822933,-0.01911573,0.07803945,-0.059124272,-0.031394813,-0.10214083,-0.062078733,0.036749173,0.07557697,0.026719749,-0.005874635,0.018936653,0.04098041,-0.03078473,0.04247012,8.0658455e-33,-0.038518626,-0.09254428,0.03005917,0.011119103,0.011684165,-0.050282955,-0.0074132644,0.029072162,0.016103894,0.042100687,-0.030105088,0.12903905,-0.0064919526,0.056171715,0.0148782395,-0.1070896,0.08212587,-0.071486026,0.039898742,0.00069313205,0.027906867,-0.010839783,-0.024653057,-0.019567812,0.044823136,-0.0626738,0.12601013,-0.004930641,0.0017619155,0.02557413,0.017353173,-0.028157186,-0.07614395,-0.017693754,-0.01509816,-0.052911058,-0.024832273,0.0813734,0.004387205,-0.062788054,-0.0106516145,-0.004533807,-0.084294416,-0.050855976,0.07432652,-0.06177785,-0.042340945,0.06601597,0.09504598,0.026746074,-0.025324378,-0.01750569,0.022034671,-0.008078972,0.02672889,-0.027031103,-0.097976826,-0.000904845,-0.031516373,0.008759591,-0.017035333,0.03937929,-0.0525332,-0.02620969,-0.05755016,0.026832156,-0.01121337,-0.026680654,0.010181354,0.0031415564,-0.029673992,-0.05039632,0.03531939,0.07914593,0.0057926956,0.008294287,-0.06501921,0.13056907,-0.11201831,-0.0041022836,-0.11396461,-0.015621247,0.046029113,-0.0546199,0.07175681,-0.012431003,0.021585226,-0.033457488,0.0007537228,0.04883487,-0.0022020885,-0.0119584575,-0.032993846,0.025804136,-0.024634313,-8.0550736e-33,0.025784496,-0.0019868482,-0.041054066,0.045453917,-0.0017689364,0.055602368,-0.08724528,0.029695926,-0.076056585,0.052443378,-0.118528515,-0.025044562,0.06421128,0.026598223,-0.03442043,0.0028053175,0.06830498,0.012796293,-0.048390687,-0.019924155,-0.07835921,0.058305383,0.009430643,-0.005957125,0.062483396,0.0031844599,0.073034495,-0.007551421,-0.09362355,-0.04801494,0.05714067,-0.0046606637,-0.045457467,0.027097313,-0.04160698,0.064349815,0.025361218,0.08130574,-0.024735564,0.04342974,0.01627743,-0.024409635,-0.06195479,-0.0025920446,0.013708338,-0.030372074,-0.11507323,-0.073887385,-0.068576574,-0.09303551,0.03618642,0.03698006,0.09078726,-0.085088655,0.050892945,-0.048323758,-0.0006315834,-0.03085661,-0.07860438,0.047167487,0.113627814,0.03796403,0.027299356,-0.057323713,0.08163293,-0.0318463,-0.093305945,-0.039083455,0.017521555,0.024373546,0.04032426,0.043010555,-0.059126828,0.052940913,-0.108317904,0.03636473,-0.06480523,0.021675676,-0.054908797,0.10674226,0.004063736,-0.026896166,0.10647838,0.0019500303,-0.0797184,-0.050269607,0.04064589,0.0044228053,-0.07273086,0.020160804,0.03098708,-0.03562872,0.07986889,0.09144837,0.026508754,-3.3986396e-08,0.03766074,0.037964173,0.007306524,0.028551387,0.0075954767,-0.03658755,-0.02695078,-0.020290256,-0.073752984,0.003304967,0.04832531,-0.043899328,-0.038541727,0.13110302,0.04620161,0.025885697,0.042218033,0.027908932,0.0124730375,0.0544782,0.12677829,-0.0068804324,-0.07089416,0.036903586,0.05425708,-0.0027966509,0.050666355,-0.02774494,-0.006656936,-0.0104499655,0.009215961,0.034605898,0.007894714,-0.0013334181,-0.011911633,0.050112545,-0.036532614,0.023701897,-0.06677656,0.041248348,0.0007823273,0.03953716,0.0996942,-0.047762193,-0.061580822,-0.13312621,-0.059425402,0.021893708,0.06633848,0.050809193,-0.030684248,-0.011119361,-0.032448426,0.039732438,0.09605968,0.03299197,0.0442777,-0.01970947,-0.011046273,0.081506655,0.0030126986,-0.008458762,0.04080556,0.050904743} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:50.938251+00 2026-01-25 01:27:51.756105+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 571 google Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB 1 t 574 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Lamentables. No se merecen ni que me canse escribiendo lamentables. no se merecen ni que me canse escribiendo 1 2025-12-26 01:27:48.342622+00 es v5.1 O1.01 {} V- I3 CR-N {} {"O1.01": "Lamentables. No se merecen ni que me canse escribiendo"} {0.038571082,0.07615409,0.02438754,-0.028798554,-0.050445598,-0.010979388,0.08719166,0.085275955,0.0139248995,0.042653978,0.038802013,-0.04095714,-0.006045768,0.0009779199,-0.030941915,-0.020678524,-0.021322634,0.061579514,0.017206267,0.053482562,0.047095984,-0.039122097,-0.04189276,0.019689914,-0.073558755,0.011497817,0.022045666,-0.012122665,0.028804021,-0.11134964,0.014156205,0.03101293,0.102523625,0.0138721075,0.042171214,-0.06533365,0.12389351,-0.077359945,-0.02959906,0.065547146,-0.077493235,0.007442463,-0.12552804,0.018881753,0.032446504,-0.06890553,0.022041585,0.0521069,0.009378577,-0.023641488,-0.011077912,-0.046492144,-0.026256613,0.014967331,0.016533285,-0.02099662,-0.010965824,0.023220453,0.054420702,0.06328952,0.062184855,-0.018654156,-0.045014113,-0.039319098,0.07411129,0.0009414774,0.057898328,0.019498512,-0.07643308,0.113123916,0.09602815,-0.026085287,0.023571964,0.08048033,-0.030939791,-0.0052262587,-0.00017165317,-0.008248214,-0.015782028,-0.0049759727,-0.09082354,-0.035258643,-0.085477956,-0.089753695,0.0016935553,-0.054868672,0.04452829,-0.0027299752,0.06573187,0.009872394,-0.042875424,0.087276034,-0.08405686,0.03231414,-0.008889123,0.029082268,0.06952812,0.019640634,-0.0020198037,0.04251008,0.085203834,0.047581736,0.104841225,0.0021807854,-0.023226451,0.049810335,0.00039616585,-0.06534088,0.06229183,0.036468677,-0.08003782,-0.058741458,-0.027726598,0.03631883,-0.053046983,0.007299932,0.021791289,-0.06884291,-0.022595027,0.01876234,0.016058333,0.06864067,-0.06544357,0.024559306,0.03843516,-0.020486202,0.05244704,3.7891212e-33,0.026957363,0.01882838,-0.10966605,-0.0054724133,0.0070174527,-0.009093697,-0.040433574,-0.07002404,-0.04910202,-0.03613308,-0.003071538,-0.016994037,0.038852446,0.018427605,0.037557993,0.060517017,0.0821183,-0.023248654,0.03729534,0.03279547,-0.12774521,0.024518663,0.00848603,-0.016073147,0.01820734,0.0024969347,-0.02747345,-0.08219733,0.0062398324,0.037999168,-0.022168478,-0.027593484,0.053591713,0.0013176353,0.0293397,-0.029862737,0.11173956,0.018841045,-0.065092824,-0.029024232,0.012720936,0.033721674,-0.00032693567,-0.012960392,0.06505183,-0.0019316269,0.059814498,0.043878645,0.012577202,0.007472149,-0.06739506,-0.06026248,-0.02720775,-0.003869997,0.021637768,0.006809215,-0.095962994,-0.004875735,0.02188367,-0.07341459,0.052029297,-0.008440948,0.023914749,-0.036105327,0.05494418,-0.027942024,-0.015564837,0.05969023,0.1074115,-0.056765813,-0.09254958,-0.028576378,-0.024801577,0.01281681,-0.002986648,0.011951093,0.02288782,-0.04935527,0.024257835,-0.023109261,-0.00998153,0.0079982085,-0.017090024,-0.039579965,0.06591034,0.10818671,0.057633676,-0.007930612,0.018482985,0.028048573,-0.046924446,0.053955477,-0.027361099,-0.142382,0.018639978,-2.8643442e-33,-0.020314192,0.022776939,-0.079280384,0.16600062,-0.02066499,0.017963182,-0.06439841,-0.039241258,-0.061514296,-0.09799994,-0.0342044,-0.2247929,0.05634307,-0.05907965,0.0011293658,0.09879442,-0.00312125,-0.049568072,-0.059295267,-0.019042576,-0.00016898023,-0.008123779,-0.044902187,-0.045415804,0.0043664714,-0.03345738,-0.021967279,-0.007432354,-0.03243817,-0.018629396,0.03442631,-0.025209665,-0.0829589,-0.052006938,0.016515385,0.08424928,0.058938354,0.059495714,0.0050024614,-0.034841124,-0.033740703,0.09432591,-0.025477618,0.020995656,-0.028192276,0.02744292,0.0064311256,-0.09246283,-0.06656951,-0.038411852,0.10376726,-0.000969036,-0.05319334,0.029741127,0.03110189,-0.067344844,0.017376782,-0.025994664,-0.050996862,-0.030855518,0.0037871113,-0.025301099,-0.04269774,-0.053993173,0.11965434,0.039652802,-0.064329214,0.07829029,0.0001109142,0.012786271,0.10558618,-0.038568612,-0.05384372,-0.0034029817,-0.03231806,-0.023379633,-0.058878783,0.03421009,-0.024637891,0.005318271,0.06280947,-0.02042567,-0.010180045,-0.03369646,0.0060884957,-0.0006874769,-0.022094937,0.057080276,0.023418417,0.072773665,-0.013722681,0.013830197,-0.037722193,0.03290777,-0.037209336,-2.537416e-08,0.0028004653,-0.07374929,-0.08451567,-0.0026211622,0.07001645,-0.011652997,0.00016049106,-0.005689736,-0.013755799,0.060081683,-0.03879431,-0.08262543,-0.05949982,0.054882634,0.030041859,0.08647253,0.11063667,0.02876394,-0.05315175,-0.016457824,-0.005882591,0.063435316,-0.083296485,0.026205735,-0.017271558,0.05920843,0.05001611,0.0035556983,-0.016847132,-0.029571885,-0.01664823,0.09854074,0.03039543,-0.06690026,-0.069317326,0.023480404,0.03882421,0.0644606,-0.015232767,0.028899983,0.041740276,0.040820647,-0.008548459,-0.039599743,-0.0039628376,-0.07759914,0.033602707,-0.0035311452,-0.021063143,0.02553771,-0.08283553,-0.041722298,0.031184625,0.058355223,0.014319697,0.009071504,0.053026125,0.03053182,-0.025349798,0.043154802,0.07997281,0.0663373,0.045174763,-0.07327681} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:46.211641+00 2026-01-25 01:27:51.907751+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1304 google ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE 1 t 1307 Soho Club unknown Nieko gero.. nieko gero.. 1 2022-01-30 18:34:31.336452+00 pl v5.1 V4.03 {} V- I1 CR-N {} {"V4.03": "Nieko gero.."} {-0.008042516,0.12998669,-0.07721703,0.00083696033,-0.02736551,0.0077492865,0.11761575,0.0728115,0.027336443,0.006395715,0.048788734,-0.036916442,-0.1253501,0.05230034,0.0065495153,-0.023435902,-0.00734489,0.029165467,0.024445692,-0.00015619473,0.022540938,-0.017260185,-0.045174092,-0.014179261,-0.0630587,-0.0381501,0.06089761,0.025799362,0.0036196266,-0.07867487,-0.002588576,0.07999019,0.03202306,-0.011298301,-0.020726256,0.009993477,0.0018902011,-0.037556965,-0.0048182756,0.071857676,-0.048013456,0.0015480156,-0.03907433,-0.022868203,0.07751949,-0.0024352474,9.6800695e-06,0.0011112116,-0.002573184,-0.033075344,-0.11465621,-0.04122561,0.000921163,0.02938797,0.066834316,-0.031124203,0.020171855,-0.073957235,0.004983929,0.008921167,0.026527604,-0.033792846,-0.0644208,0.053300515,-0.007820583,0.015977614,0.06506395,0.007901924,-0.09862499,0.07653691,0.06564237,-0.023544665,0.03171303,0.014819851,-0.12609686,0.06088396,0.060378347,0.06920433,0.0058846558,-0.063030705,0.09721902,0.0016398261,-0.017053278,-0.03879902,0.013041491,0.06411112,0.0032143376,-0.033431705,0.0080507845,0.006838537,0.011395635,0.04769982,-0.041523043,-0.051210247,-0.02673575,0.00728475,-0.06846584,-0.048189208,-0.04234569,0.09020824,0.053887703,0.030208848,0.064062566,0.013407456,-0.10250037,0.091599874,0.038368765,-0.016263755,0.0037039015,0.13634203,-0.1383441,0.0043409313,-0.03519936,0.0036567664,-0.031832386,-0.0043718126,0.037310638,0.030903902,-0.0148410285,0.031168947,0.08980587,-0.061179243,-0.07156755,-0.018185204,-0.018588105,0.02546638,0.040859263,-1.7432561e-33,-0.0197949,-0.021629823,-0.007297458,-0.022674324,0.0075294506,0.015353858,-0.0714031,-0.02940935,-0.07534141,0.011573873,0.012971717,0.012026533,-0.05643464,-0.043993816,0.011879987,0.1597957,-0.020848032,0.06843146,0.010396478,0.033115815,-0.03493604,0.021494087,-0.03982097,-0.03263501,-0.017050592,0.048310257,-0.018632837,-0.15752666,-0.059360556,-0.012518474,0.036643945,0.019521318,-0.0062602893,0.045658324,-0.05377908,-0.07575187,0.018808026,-0.03205269,-0.02765046,-0.032849494,-0.004804975,0.0063711586,0.0030819604,0.053271204,0.009750479,0.009769625,0.044191495,-0.007715638,0.07858186,-0.03772231,-0.05797371,-0.08100586,-0.13063733,-0.008785605,0.019319946,0.0010139453,-0.06501715,0.020604508,0.095724635,-0.05076562,-0.0046946215,0.023626974,-0.022790171,-0.047392864,-0.0019713608,-0.07089344,-0.025045099,0.047576033,0.044735406,-0.01916927,-0.033440366,-0.050174948,-0.00036289476,0.0475819,-0.1358418,-0.046741053,0.024315517,-0.015298987,0.023167025,0.033998385,-0.0120608825,0.046190307,0.01137966,-0.050704166,0.106514566,0.14312771,-0.02558223,-0.060037885,-0.060392376,0.07341233,0.014026358,0.07963862,0.0722591,-0.050406225,-0.012554905,1.11919295e-33,0.03662753,-0.04013541,-0.06824205,0.033741053,0.08734286,0.028679365,-0.07338349,-0.019372202,-0.06762847,-0.0067984113,0.032225475,-0.102113,0.12902495,-0.0038502186,-0.0202635,-0.041435406,0.0930035,0.012244057,-0.07249641,-0.0961926,-0.0030704145,0.04965468,0.028483264,0.015342899,-0.0060205637,0.009520396,0.06292998,0.08326671,-0.1256812,0.015368874,0.033691358,-0.06459804,-0.060560923,-0.005063316,0.085687555,-0.026117893,0.019390529,0.058346897,0.008038334,0.0059494614,-0.03983771,0.05695407,-0.011963641,0.01039874,-0.023488287,0.0019174283,-0.0731333,-0.00015098375,0.017898552,-0.057066295,0.050110903,0.026402373,-0.09897143,0.0015429679,0.023681704,0.022255152,-0.027859533,-0.07639681,-0.04706638,0.060319446,0.016861763,0.055789992,-0.004861471,0.013108991,0.018884808,0.07710798,0.03158937,0.055534918,0.023023954,0.037176773,0.056346446,0.014838266,-0.0028560134,0.04760134,-0.11849819,0.03871611,-0.03237874,0.043956354,0.029269308,-0.082756735,-0.01172782,0.0024982665,-0.082361035,0.07193255,-0.0021390433,-0.028967619,0.018758614,-0.029948013,0.070586696,-0.034617215,0.030585734,0.0804884,-0.06237071,0.02905986,-0.043224152,-1.6882971e-08,-0.0051582092,-0.07352358,0.02285797,-0.0061257267,0.062886246,3.9880917e-05,-0.04480969,-0.07752018,-0.014513603,0.06573359,0.05607138,0.022973612,0.0056266272,0.047482956,0.02773509,-0.0057145255,0.079295754,0.06965436,0.0066302936,0.018244734,0.075660646,0.007062843,-0.051135913,-0.07529522,0.0038595162,0.026941989,-0.012245133,-0.012204549,0.00651342,-0.0063841646,-0.03792527,0.07808808,0.05287178,0.00311663,0.059097543,0.042814292,0.015071849,-0.012228414,-0.06707531,-0.10345816,0.06405589,0.050917134,0.050064348,-0.0367287,-0.04612761,-0.065762155,0.05202228,-0.026575867,0.017169597,-0.0012148734,-0.052859183,0.04617754,0.043629292,0.06995253,0.055776954,-0.016050963,0.020716371,0.011595062,-0.057837807,0.026406886,0.071634695,-0.008561367,-0.03857048,0.05144044} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:56:38.395088+00 2026-01-29 18:36:00.724838+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 204 google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB 1 t 207 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no car for us. No prior contact — all we were offered was a refund and “goodbye.” Our entire trip was thrown into chaos due to a complete lack of professionalism. Better save yourself the stress and choose another company! DO NOT RECOMMEND. avoid if you can! when we arrived, it turned out that despite our prior reservation, there was no car for us. no prior contact — all we were offered was a refund and “goodbye.” our entire trip was thrown into chaos due to a complete lack of professionalism. better save yourself the stress and choose another company! do not recommend. 1 2025-11-26 01:27:48.340406+00 en v5.1 V1.01 {} V- I3 CR-N {} {"R1.02": "Better save yourself the stress and choose another company! DO NOT RECOMMEND.", "V1.01": "AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no ca"} {0.07292358,0.01972018,0.109562516,0.050259482,0.0072698076,0.015972555,0.005275455,-0.04109327,-0.03075498,-0.043614637,0.058448195,-0.010230301,-0.04309301,-0.031227207,-0.040358927,-0.06729083,0.023157516,-0.098650694,-0.019460084,-0.004808733,-0.06340128,0.003353964,-0.06565713,0.073035136,-0.010785794,0.037436865,-0.018558258,0.06068809,0.03826783,-0.039757125,0.01951683,0.03574877,0.00010152023,-0.05003346,0.05200617,0.0073269918,0.006733577,-0.15470338,0.029617729,-0.03682402,-0.013943017,0.03363314,0.008547789,0.0034120702,0.06319272,0.020145008,-0.00629331,0.03431595,0.089079715,0.026698943,0.059079684,-0.021933598,0.02698346,-0.09505536,-0.06671452,0.028584149,0.002756218,0.010134948,-0.0338531,-0.03357492,-0.043949015,-0.05864462,0.0046949936,0.055914257,-0.081765436,-0.0051044784,-0.062816344,-0.05979184,0.09949067,0.03907712,0.025240824,-0.029320775,-0.0075616823,0.058888976,-0.017799102,0.036050107,0.047944363,-0.0039481483,0.055990525,-0.0056490414,-0.029844623,-0.043142486,-0.035830624,0.013607738,-0.009681873,-0.071811154,0.014593485,0.092668146,-0.0082319835,-0.039971575,0.03195933,-0.039405625,0.020227533,0.0071830447,-0.098430134,-0.0131319165,-0.01004995,0.05607369,-0.03647017,0.06507889,0.10098885,0.07069412,-0.06621277,0.009501057,-0.104159154,0.012258412,0.018887773,0.00741683,0.007671419,0.0037962985,-0.04369468,0.07409411,0.022688344,0.030310536,-0.096276134,0.037787676,-0.0659913,-0.014840954,0.022918526,-0.0745469,-0.021876633,0.051614195,0.041232083,0.022604495,-0.085444026,-0.057901155,0.0807844,-5.509614e-34,-0.020049183,-0.0347808,0.005700374,-0.03271339,0.040082768,0.010273363,-0.028966865,0.010267698,-0.042166114,-0.021040145,0.037417263,-0.049014077,0.0925459,-0.13914104,-0.06833505,0.054033607,-0.044220135,0.01143703,0.013409855,-0.050399844,-0.027403697,-0.06492742,-0.0013940673,0.018021192,0.0431492,-0.017533062,-0.043240156,0.021772608,0.11196274,0.014107737,-0.09684027,0.07528984,0.03869335,-0.021942534,0.00049405714,0.049113274,-0.07721755,0.004178149,-0.10384267,-0.0486656,-0.009192425,-0.0065171057,-0.091031365,0.0134568075,0.061027344,0.04051907,0.057183992,-0.08024592,-0.028253036,0.040528696,-0.1543818,-0.037119858,0.008481517,-0.0026801291,-0.1301873,-0.053320292,0.058600593,0.046485398,-0.018802296,-0.081239864,0.016724879,0.0023406243,-0.049204044,-0.018796345,-0.033127166,-0.06203102,0.004346766,-0.002816974,-0.0072136037,-0.045939367,0.087171756,0.03830347,0.020265602,0.055135205,0.020851817,0.027552145,-0.042046048,0.03836598,0.004703998,-5.4584172e-05,0.023794195,0.004699565,-0.041735422,0.05182192,0.09007137,0.034755707,0.08185324,-0.048560355,0.049718935,0.11240202,-0.055647086,0.045948237,0.025942383,-0.0085927155,0.06512753,-2.1108194e-33,0.084967956,0.027678926,0.02917529,-0.07120853,-0.04600796,-0.030887624,0.0006209248,0.010888806,0.044281423,-0.014559915,-0.028765546,0.04094653,0.12953341,0.015062586,-0.021823488,-0.0076579517,0.1044792,-0.051762946,-0.00037355785,-0.012027706,0.024590574,0.056089338,0.01611518,-0.034712996,-0.051982295,0.0995816,0.015865933,0.023965824,-0.07321319,-0.080324,0.032408293,0.00059623155,-0.025817359,0.055154476,0.086518414,0.026338618,-0.033836827,0.046338588,-0.06634521,0.031337336,-0.03512035,-0.03734503,0.029027596,0.017726362,0.08539647,-0.06818254,0.07595145,-0.116446435,-0.02710872,-0.020458138,-0.022430357,-0.021605905,0.003595876,0.023673184,0.021273496,-0.004992814,0.08005926,-0.055320386,0.04076945,0.0030464935,0.059323527,-0.005170797,0.025143234,-0.0263963,0.03441733,-0.081406325,0.033239607,-0.046028957,0.07628242,-0.007948647,-0.10704163,0.03605711,-0.03375279,0.0518334,0.0085703945,0.02806298,-0.025094068,-0.016371043,-0.010320349,-0.02458036,0.06042455,0.024703747,0.023899458,0.033387404,0.068388976,0.05004347,-0.051777665,-0.07854109,-0.0052794437,0.069416344,-0.015962888,0.042439554,0.028168038,0.00914315,-0.07154161,-5.023542e-08,0.043340366,-0.009767259,0.07515983,0.015147653,0.03755832,-0.1631038,-0.042663913,0.04754178,-0.09408156,-0.0043918923,-0.071671575,-0.03139205,-0.041599467,0.057165258,-0.017291496,0.0152781,0.047837067,0.04791381,-0.049787603,-0.034248758,-0.07929654,0.02976458,-0.03561648,-0.0029685816,0.023470446,0.0145715745,0.071198545,0.042578373,0.09862881,-0.059415616,-0.07510693,0.014206117,-0.004964559,-0.06720375,-0.05526625,-0.100049846,-0.015088141,-0.0021142869,0.017752178,-0.037499197,-0.042181563,0.056769904,0.0092837885,0.035836555,0.020105463,0.04131328,-0.05421511,0.026014742,-0.034873568,-0.048241626,-0.04965294,-0.08371616,-0.009189632,0.13361196,0.04669131,-0.049641427,-0.066940956,-0.002259227,-0.016220868,-0.024427721,-0.033253375,-0.03244731,-0.075203255,0.021249231} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:32.086943+00 2026-01-25 01:27:50.035406+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 406 google Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB 1 t 409 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wartezeit bis zum Mietvorgang hat gedauert (20 min. ) Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung.\nGerne wieder wartezeit bis zum mietvorgang hat gedauert (20 min. ) ansonsten sehr zufrieden. sauberes fahrzeug alles in ordnung. gerne wieder 5 2025-12-26 01:27:48.341751+00 de v5.1 J2.02 {} V- I2 CR-N {} {"J2.02": "Wartezeit bis zum Mietvorgang hat gedauert (20 min. )", "O1.01": "Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung. Gerne wieder"} {-0.012902738,0.14675346,0.010765322,-0.010945143,-0.041935015,0.1066648,0.03570959,0.14106895,-0.058404706,-0.012603014,0.047615718,-0.028054254,0.022016777,-0.0050036693,-0.026152777,-0.024333565,-0.014137263,0.068626046,-0.08970527,-0.031628292,-0.05151062,0.0071880845,0.042004235,0.0026805443,0.0031494603,0.032106336,-0.054398432,-0.0234862,0.050809752,0.053637598,0.09620835,0.00012168253,0.05455156,0.06925543,0.015106226,-0.0030748083,0.045487855,-0.061988045,-0.02166284,0.04141785,-0.03334016,-0.023756972,-0.15940432,-0.096423976,9.1590104e-05,-0.010351013,-0.0054622726,-0.035219513,-0.08633713,0.045025613,-0.028805422,-0.020918893,0.017414777,-0.054399393,0.003389676,0.028626092,0.047232993,-0.027647886,-0.002125481,-0.04428057,-0.03579779,-0.043331712,-0.04700888,0.043659724,-0.09404928,-0.013378102,-0.041654013,0.008629416,-0.04329622,-0.02497787,0.056178097,-0.07742813,-0.050050493,0.050146952,-0.06006411,-0.025684642,0.021781905,0.025369462,0.1022209,-0.069192946,-0.042842325,-0.09835879,-0.022616867,-0.01789916,0.009205227,-0.05657172,0.020247413,0.08671832,0.016228328,0.01252508,-0.09260678,0.09708214,-0.07452944,0.03203116,-0.087986365,0.016169894,-0.024757486,-0.013695429,-0.03581433,0.028106667,-0.013812114,0.023156667,0.039476294,0.060415078,-0.067186736,0.00013321177,-0.0047387932,-0.06594873,-0.009523417,0.018183984,-0.054930393,-0.058461133,0.06437002,0.010464705,0.041247483,0.011899464,0.00082689757,-0.02825726,0.016269173,-0.0015659179,0.040746696,-0.033559572,0.018019412,-0.05740298,-0.016040692,0.0050890422,0.09402246,1.4770463e-32,-0.010575054,-0.11080909,-0.0038065752,0.048729576,-0.023315618,0.03267533,-0.003830188,0.0032886004,0.036989883,-0.033862326,0.0017379323,-0.04063842,-0.021346625,0.019462358,-0.054344263,0.0119454805,0.124134496,-0.010999112,0.012185077,-0.019839546,0.0052695656,-0.068817005,0.023353582,0.01577166,0.070302755,-0.0371642,0.029006606,-0.06812253,0.045934368,0.025335647,0.09417364,-0.016918354,-0.09561712,-0.027756652,-0.025985643,-0.009225127,0.017839978,0.000625273,-0.032286968,0.0022204192,0.03149557,-0.025617681,0.043257926,-0.032504074,0.0706248,0.032545786,0.034999974,0.053971387,0.07361476,0.0690549,-0.03931139,-0.0007937103,-0.100912474,0.034856666,-0.005136982,0.12208912,-0.08568767,0.058961447,-0.024889268,-0.04388777,0.016484605,0.011929172,0.03161332,-0.06082264,0.049778447,-0.025831752,-0.055330712,-0.064253725,0.0005131535,0.058763817,-0.019033,-0.008467447,0.0013630635,0.06809001,0.032243744,-0.048730202,0.058888476,0.043662414,-0.066171475,0.002699221,-0.00038712434,0.054259088,0.014340206,-0.080182984,0.03434711,-0.0985628,0.0072345636,-0.069587015,-0.03963195,0.12358059,-0.0149247525,0.017819956,0.0016307497,0.01831032,0.010547709,-1.2977816e-32,0.09772523,-0.0410906,-0.09758478,0.029995115,0.031205067,0.034551717,-0.050318073,0.04760102,-0.07271191,-0.012687343,0.011235402,-0.03835287,0.13450591,-0.091296695,-0.123335056,0.063247964,0.18890549,0.00791948,0.039134476,-0.012447391,0.037069388,-0.011506156,0.011027537,0.011717534,0.014196383,0.011192379,0.038638737,-0.035298124,-0.12266916,0.041351534,0.024209037,0.023805583,0.0179499,-0.026311945,-0.026017604,0.020001829,0.06801429,0.0022576067,-0.045697145,0.018409904,-0.048757024,0.005262388,0.031199884,0.051417287,0.01924211,-0.012658229,-0.08084506,-0.07824916,-0.09343763,0.021777926,-0.00063689274,-0.038817532,0.015958332,-0.031097563,0.09736534,-0.009422623,0.05982447,-0.12204481,-0.076875545,0.0030962024,0.13078162,0.059299637,0.009728702,0.027272692,0.036727753,-0.020250797,-0.042458657,0.014763209,0.069354735,-0.009928581,0.07758367,-0.03682177,-0.0027260033,-0.012334784,-0.06357854,0.000897897,-0.00055674097,0.039673157,0.03955241,-0.020930395,-0.042838085,0.047299292,-0.03612937,0.0023823283,-0.121060625,-0.06505293,0.035383683,0.07344579,-0.032451965,-0.015382266,-0.0686914,0.09400748,0.053840123,-0.0038015468,0.039906766,-5.0166896e-08,0.012807599,-0.07773016,-0.014699201,0.045814596,0.019469786,-0.063223384,-0.1146832,-0.07580988,-0.017378233,0.018174,0.013406396,0.02004037,-0.015773436,0.025270924,-0.03194067,0.031248476,0.030355824,0.0060129785,-0.0555503,0.009376096,0.031061558,0.041043982,-0.09140861,0.02092374,0.08124351,0.031261776,0.028154433,-0.02176384,0.053135842,-0.00807851,-0.0058381,0.021585034,0.03680886,-0.020408476,0.022000164,0.029080503,0.021847613,0.027461104,-0.022800716,-0.061743528,0.027455335,0.0101970555,0.08295055,-0.059846483,0.00875599,-0.016219262,-0.00207971,-0.013756017,-0.028209772,0.011461809,-0.06921357,-0.002465963,0.068403326,0.025343217,-0.0012014434,0.09190489,0.012462331,-0.0656657,0.012893669,0.041410774,-0.05232921,0.0036400564,-0.101166405,0.044363033} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:09.449788+00 2026-01-25 01:27:51.28758+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 409 google Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB 1 t 412 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa” el auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa” 3 2025-12-26 01:27:48.341759+00 es v5.1 P1.02 {J1.02} V- I2 CR-N {} {"P1.02": "El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los dat"} {-0.0768625,0.027081676,-0.04107281,-0.09085943,-0.05160075,-0.003746651,0.08440765,0.087389566,0.0023229339,-0.009641408,0.0576386,-0.033599067,0.02261247,0.07133164,0.016054533,0.029629165,0.016376693,-0.017194927,0.013201514,0.0056840517,0.016190033,-0.052889556,-0.05309851,0.1056774,-0.04096718,-0.03557193,-0.018255472,-0.009457529,-0.021539085,-0.04731678,-0.03319611,0.0478663,0.05298784,-0.040663477,-0.013120488,-0.108627304,-0.004885706,-0.004747204,-0.048524316,0.04795029,-0.005441585,-0.023340372,-0.05415083,-0.056382425,-0.008730243,-0.037163317,0.036057945,0.08063513,0.051514998,0.0039517754,-0.06345565,0.021704024,0.022665685,-0.09527491,0.0052133566,-0.06998915,-0.033305287,0.06570976,0.05176051,0.05031539,0.009293,0.04609971,-0.0747263,0.064176366,0.007857029,-0.03681658,0.016872464,0.008255911,-0.06709127,0.036888245,0.043108117,-0.105846755,0.0042828587,-0.0066955653,0.017788975,0.02527788,0.064238384,0.0052437005,-0.035233833,-0.054199796,-0.02631063,0.0042231493,-0.057935454,-0.0006368049,0.029350704,0.025180185,-0.012905073,0.07334049,0.065577336,0.019836994,0.039710276,0.03691799,-0.07586174,-0.022580445,0.026225751,0.09250052,0.07661802,-0.055428434,-0.040297624,0.041568708,0.09054292,-0.009066095,0.022429058,0.007528931,-0.018633258,0.041103896,0.054669004,0.029190449,-0.024325013,0.01074198,-0.056802217,-0.0014772495,-0.011259865,-0.07844775,-0.04915881,0.0736286,-0.03983261,0.024558721,0.03645429,-0.05955862,0.00930796,-0.083021104,-0.037601605,-0.043405287,0.066952154,-0.07803004,0.074593425,8.847382e-33,-0.060571946,-0.04768352,-0.02926671,0.04640438,-0.08877549,0.018065143,-0.042819392,0.03549499,-0.07576127,-0.026020858,0.025400123,0.018768612,-0.060476515,0.017663695,-0.019837264,-0.02957527,0.031076035,-0.06344107,0.03473229,-0.033506334,-0.013141075,-0.055626567,-0.016630873,-0.010661821,0.003356906,0.097824685,0.034528553,-0.016240766,-0.0124476375,0.06846635,-0.019412495,0.03162442,0.036129683,0.017491437,-0.14275229,-0.0004529087,-0.10259031,-0.0023412555,-0.09137127,-0.0023258845,0.033350214,0.04918704,-0.07065982,-0.0020507511,-0.011068525,0.020457447,0.11097288,0.026817447,0.050972573,0.021128494,-0.028149744,-0.042352717,-0.09839424,-0.08575207,-0.029323895,0.052992705,-0.05132218,-0.011612567,-0.010859218,-0.07377608,-0.013204093,-0.049704883,-0.03975753,-0.01691555,0.005194614,0.0005516915,0.017777197,-0.021538712,0.15902586,0.06780566,0.0067218407,-0.025690878,-0.032013576,-0.025396675,0.047881197,0.038531106,0.011402213,-0.0010676396,-0.011910672,0.020913104,-0.055270877,-0.02393819,0.04806153,0.07438694,0.15436766,0.10077105,0.049088214,0.038957905,-0.039453056,0.061635297,-0.014678077,0.082966976,0.0013264087,-0.015584081,0.049912486,-9.902511e-33,-0.042717237,0.019475356,0.05347624,0.03998351,0.0027248464,0.002072366,0.004821521,0.026888352,0.03180728,-0.0037469945,-0.1053057,-0.09043447,0.00053968956,0.018198324,0.06084779,0.025100993,-0.016072365,-0.13501091,-0.04338556,0.015400744,-0.0076694926,0.089076586,0.075038865,-0.029542029,-0.018489487,-0.061341535,-0.081952274,0.06467553,0.010177659,0.026827035,-0.021366453,-0.01825562,-0.010300047,0.12021819,-0.07436596,-0.070569545,0.07886531,0.07519302,-0.064197235,-0.0037061735,-0.07675425,0.07065325,-0.03615751,-0.03883002,0.012754772,0.058702912,0.055561792,-0.111147866,0.013447624,-0.017672274,0.055537496,-0.031636484,0.003710396,0.052013952,0.009972458,-0.006621229,0.0010902799,-0.033118244,-0.04996176,-0.046823245,0.04048273,0.024937231,-0.033690915,-0.061455105,0.04462043,0.022799142,-0.005357236,0.008444814,-0.00096177275,0.01237628,0.08885518,-0.04756409,-0.071440704,-0.059248835,-0.030231455,0.007833109,-0.09064805,-0.023804411,-0.020173118,0.016899666,0.000699296,0.013623391,-0.023557121,-0.008531508,-0.069845565,-0.049690347,-0.004946594,0.008192343,0.07546175,0.10598496,-0.015474054,0.09069895,-0.032927494,-0.039218802,-0.052726872,-4.3858595e-08,-0.033450335,0.013219514,-0.017202385,0.014142524,0.059867196,-0.030374914,-0.06763723,0.06564835,0.010634726,0.14060558,-0.024679516,-0.09650819,-0.03355639,0.052906245,-0.047376484,0.020201568,0.07267088,0.035692967,-0.036042724,-0.028042287,0.05672183,0.038332902,-0.041753594,0.016976254,0.0008364336,-0.012178185,-0.07047656,0.013561044,-0.015614133,-0.04106662,-0.057747692,0.035986453,0.076543555,-0.120047964,-0.08415618,-0.035517268,-0.012100523,0.025624525,0.008130187,-0.035296857,0.15196759,-0.026643908,-0.021094557,0.0025213053,-0.06046757,-0.082673,-0.06490255,-0.102634445,-0.012185443,-0.008448081,0.08441084,-0.03827023,0.028497264,-0.0024274245,0.041291624,-0.020991746,0.057140917,-0.011123865,-0.025891019,-0.04090853,0.050021872,0.036936466,0.04866135,-0.07571008} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:01.605668+00 2026-01-25 01:27:51.301425+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 425 google Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB 1 t 428 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina.\nLamentable. penoso servicio de esta empresa, como se suele decir, lo barato sale caro. nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina. lamentable. 1 2025-12-26 01:27:48.341847+00 es v5.1 A1.03 {} V- I3 CR-N {} {"A1.03": "Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el"} {-0.038194265,0.04177688,-0.052965,-0.023699574,-0.1595809,-0.0073699574,0.09861964,0.08269872,-0.012723795,-0.010781759,0.05183879,0.021186467,-0.039189294,0.00872429,0.06821865,0.02016315,0.075622395,0.06664986,0.029104827,-0.0029427023,0.116299585,-0.0873962,-0.10988941,0.06813564,-0.06875313,-0.07199016,-0.045664035,0.086962014,-0.057119995,-0.12778854,-0.019792099,0.07116293,0.06085311,-0.006289555,0.042052895,-0.0006398325,0.066121854,-0.053356737,0.034969978,0.031099316,0.0046355296,0.029466523,-0.10482592,-0.06784295,0.03167403,-0.085273445,0.011179768,0.12854658,0.0127874855,-0.04835298,-0.051641278,0.01954227,0.0074201566,-0.0065389834,-0.07778188,-0.046237793,0.016866807,-0.032241747,0.058517486,0.034843724,-0.012585423,-0.01629529,-0.02911787,0.023173228,0.019923152,-0.050379455,-0.043613862,-0.0025056077,-0.116094254,-0.0035601992,0.11316267,-0.14357255,0.010442417,-0.015401183,-0.08268036,-0.015254824,0.021827314,0.056381375,-0.00813476,-0.057704832,0.010933547,0.010137621,-0.06305715,-0.012529989,-0.00046347297,-0.030743007,-0.010853456,-0.029807553,0.071851395,0.047222756,-0.02044224,0.06842625,-0.047808003,0.022123031,-0.05658444,-0.00082909694,0.09011721,-0.018222164,0.037864737,0.013657171,0.08484392,0.08237816,0.055929814,-0.06255493,-0.03218977,-0.00043813622,0.052810844,-0.011585617,-0.01774595,0.03268333,-0.101302974,-0.0042052204,-0.04836328,-0.013839899,-0.03445907,0.017419763,-0.039980467,0.019312974,0.025705297,-0.045763582,0.037231192,0.07239344,-0.014799451,-0.006712922,0.01334446,-0.01539297,0.023868345,9.508019e-33,-0.079992995,-0.04457805,0.02440461,0.033139743,0.05173047,0.02024092,-0.052328795,0.051030815,-0.046901993,0.024243383,-0.086943805,-0.0027074772,-0.009619017,0.012908156,0.05469317,0.07371647,0.0016341656,-0.027136466,0.07655559,-0.053972885,-0.058777254,0.007860781,-0.034985766,0.03411053,0.0035084183,0.05204436,-0.030346982,-0.071310006,-0.054099433,0.067162484,0.037604317,0.034116797,0.043590575,0.016924301,-0.063838616,0.016233351,-0.017329069,0.046160515,-0.03473904,-0.03251217,-0.024481913,-0.028002834,0.017750159,0.01380931,-0.07293523,0.053182106,0.060503643,-0.04459844,0.054043513,0.09002162,-0.02910258,-0.07795417,-0.014989235,-0.01277025,-0.039412502,0.00038075141,-0.060846906,0.025878485,0.034920026,-0.08272885,0.021776311,0.011973275,-0.034355532,0.016065555,-0.052198317,-0.04395955,0.018062642,-0.023605295,0.096728966,-0.04477234,-0.041723114,-0.015155979,0.019638486,0.025024699,-0.013224164,-0.011104425,-0.025053961,-0.02398106,0.028378222,0.023918288,-0.044754483,-0.017150927,0.03645639,-0.023175266,0.12232221,0.10342921,0.09052357,-0.01645174,-0.008460684,0.09930245,-0.061916087,0.095499136,-0.000992065,0.013657794,0.1276361,-1.0911384e-32,0.053530052,-0.028384328,0.015936378,0.0029458383,-0.04625349,0.013701418,-0.095639415,-0.078676194,0.011638384,0.025912125,-0.12578161,-0.10443178,0.104312025,-0.0353513,-0.048111014,0.08394572,0.014374817,-0.054441825,-0.07846777,-0.07902949,-0.055011224,0.032754894,0.06630908,0.016431468,-0.05751467,-0.05998801,0.0060512046,0.013307961,0.009082692,-0.036003906,0.049133092,-0.047814302,0.028633881,0.007495173,-0.04501404,0.02515117,0.061909936,0.023467354,0.08831716,0.04557542,-0.01241435,0.00941667,0.0586273,0.011158633,0.05084107,-0.045240384,-0.006625443,-0.132657,0.029780587,-0.030499052,0.094241574,-0.025611069,-0.09217452,0.039597858,0.009794673,0.037069608,-0.030370237,-0.05602546,-0.09247171,-0.051226422,0.06298511,0.026936112,-0.02792691,-0.044962477,0.07573777,-0.027639378,-0.012269828,-0.025984062,0.033792894,0.01638792,0.04988666,-0.028141385,-0.09515301,0.028978897,-0.103213236,-0.019387577,-0.09366594,-0.003792628,0.012928214,-0.018643353,0.032011252,-0.06930213,0.03691054,0.024843642,-0.033485975,-0.0379955,0.026756851,0.034602474,0.001985646,0.05517103,0.0012613642,0.008458195,-0.020203171,0.01113887,-0.033983935,-4.4729607e-08,0.031685624,-0.07213047,-0.020725513,0.03489462,0.034111015,-0.06523032,0.010567365,0.0031105431,0.008218709,0.06180597,0.013503676,-0.058421858,-0.07504651,0.08566415,-0.05077558,0.0587633,0.11302472,0.021250274,0.018063955,-0.035991624,0.04225238,-0.024107512,-0.03832796,-0.010484317,-0.009183417,-0.021414055,-0.036339775,-0.0401919,0.033207223,-0.05248548,-0.018859237,0.07553779,0.033673346,-0.07059912,-0.08507258,-0.0034282948,0.01532714,-0.030557021,-0.017185045,-0.015137336,0.098409034,-0.016563237,-0.054473657,-0.042449843,-0.02089119,-0.008271054,-0.020592708,0.03612873,-0.04104181,0.023306428,-0.014974192,-0.016543977,0.0829783,0.018581416,0.03221927,-0.008119346,-0.0132841775,0.021209657,0.032629773,0.012738587,0.05970223,0.043461286,0.024644524,-0.044834} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:55.619394+00 2026-01-25 01:27:51.353118+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 432 google Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB 1 t 435 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown My amable my amable 5 2025-12-26 01:27:48.341905+00 cy v5.1 A1.01 {} V+ I1 CR-N {} {"A1.01": "My amable"} {-0.09443956,0.0009920686,-0.011151169,0.020585481,0.019123629,-0.0425257,0.19279714,0.060226817,0.008723061,-0.006421335,-0.01701037,-0.0011765526,0.025657225,-0.007978754,-0.08719282,0.012046371,-0.059651434,-0.05679175,-0.098931834,0.00034292284,0.011522042,0.07355638,-0.0344226,-0.04177773,-0.07849398,0.022672437,-0.0012201669,0.0010885001,-0.02268461,-0.077636406,-0.06786044,-0.0111854235,0.049602445,-0.0112349745,0.00966541,-0.0075788083,0.02768953,-0.038762525,0.09899578,-0.06837366,-0.02093414,-0.08462716,0.03749487,-0.032248937,-0.010620678,-0.045433953,0.009721606,-0.029984208,-0.0026085565,0.06557735,-0.15772323,-0.046157565,-0.05937584,0.012298039,0.10964411,-0.023244359,-0.03923156,-0.073222406,0.01483148,0.02672957,0.014032629,0.052346483,0.021455025,0.048941657,-0.009168565,-0.040244628,0.014255649,0.037474748,-0.050080825,0.0368583,0.018215865,0.041550186,-0.043587722,0.02580902,0.048017237,0.048441987,0.01964257,-0.063580595,0.04321937,0.07927104,-0.12957482,-0.028704474,0.0052936086,-0.055561665,-0.00807685,-0.08036623,0.05942835,-0.053188693,-0.05361119,0.05632465,-0.035970066,0.019715669,-0.06909322,-0.06914029,0.020135207,-0.0028550953,0.067907564,-0.086762935,-0.045001846,0.11474763,0.01669708,0.050045483,0.053376745,0.016136194,-0.048872717,-0.052723613,-0.04037022,-0.023508875,0.011926019,-0.011387325,-0.06512503,-0.07703962,0.008872853,-0.008199898,0.047433697,0.06913636,0.010642477,0.036039323,0.044303194,-0.011023085,0.035849236,0.033516776,-0.03166485,-0.015295677,-0.017493863,-0.07281298,0.022096219,-3.5476122e-33,0.03303785,0.021966306,-0.057813805,0.09637662,0.089304626,0.0205246,-0.040886167,0.029251842,0.0042828154,-0.0796602,-0.02073377,0.09008245,-0.0099184085,0.042379484,0.027256845,-0.025532996,-0.023053842,-0.01827751,-0.07185836,0.010892555,0.0076837004,-0.01348996,-0.0016479396,0.036634408,-0.07767849,-0.048050717,0.017103259,-0.026404995,0.044154234,0.013089418,0.014273482,0.0108476095,0.0088095395,0.009144821,-0.025761958,-0.016767444,-0.009213025,-0.02200377,0.04206434,0.057363406,-0.018249048,0.012684596,0.006674068,-0.03244165,-0.0060637947,0.06574798,0.07230802,0.056272216,-0.029963486,-0.023308057,-0.009757129,-0.01800985,-0.10528323,-0.042552955,-0.00051254616,0.04851112,0.02958087,0.021599183,-0.0217443,-0.013080754,0.05617677,0.017437927,0.08625281,0.0058746557,0.0035416528,-0.008411484,-0.0069953557,0.026669579,0.044971365,0.064929865,-0.058723755,-0.05651488,0.03874663,-0.0077276747,0.033184193,-0.06200445,-0.011071099,0.016971169,-0.029291365,-0.072459824,-0.051971845,0.0463389,0.038751107,0.028809747,0.06479286,-0.052902397,-0.03251911,0.03625559,-0.020149413,-0.016821312,-0.053970743,0.018038895,0.0637975,-0.09901921,-0.10912647,1.9644507e-33,0.0072473283,0.0023397582,0.06988034,0.08482748,0.0255491,0.01094269,0.035122987,0.15485118,-0.0117120305,0.01892118,-0.08050716,-0.020306533,0.08795276,-0.022144329,0.032413673,0.04732391,0.020402066,-0.018643811,0.008139967,-0.003576289,-0.13566282,-0.025140295,0.04352814,-0.13029064,-0.0723369,0.0686841,0.034574777,-0.029871793,0.08561513,-1.182062e-05,-0.007509302,-0.016392797,-0.08368536,-0.0141889015,-0.035313964,0.14968823,-0.04131585,-0.05268685,-0.05351777,0.032005984,0.021856293,0.0613552,-0.010736876,0.1620695,0.014699831,-0.0646829,-0.04756688,0.035136133,0.08590903,0.0038998176,-0.05945936,0.035102505,-0.0071349656,0.009090548,-0.038075607,0.024164617,0.064470895,0.019675491,0.008713679,-0.024119167,0.019155601,0.019366622,0.040823605,0.03815514,0.037769046,-0.04860533,0.023755515,-0.0259976,-0.11836458,-0.024815755,-0.0072324374,-0.01876459,-0.015891483,0.008962227,0.07636402,0.016934024,-0.011457856,0.026571795,-0.027049368,-0.06810235,0.037357647,0.047983162,-0.03340078,-0.036913138,0.026932664,-0.026205607,0.08353225,0.070837095,-0.024758503,-0.029287133,0.030079091,0.10070903,-0.09107706,0.023398286,0.002911529,-1.5541206e-08,0.059490714,0.070497446,-0.05318126,-0.014321689,-0.020125426,0.025146544,-0.050653834,-0.009171652,0.016699491,-0.025945067,0.032054402,0.0035203057,0.04418127,0.06658297,0.018391626,-0.06828183,-0.061515335,-0.019563256,-0.014316854,0.02684761,-0.055946324,-0.03438921,0.06408492,-0.1405852,-0.04536667,0.018791044,0.008346229,0.072262146,-0.103181824,0.0689246,0.03372285,0.121305205,0.04084369,-0.0016695281,-0.082200006,0.020737154,-0.041166212,-0.010256474,0.008751127,-0.057841845,0.077618964,-0.0118292915,0.0054648262,0.02373671,-0.008947824,-0.048324898,-0.010024684,-0.010705114,0.0030316291,-0.040041577,-0.042716887,-0.006541797,0.06187436,0.03584495,0.1243819,0.010216757,0.0119784,0.06008155,-0.051506646,0.06349127,0.09218629,0.04227879,-0.059878223,-0.0019876964} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:12:50.697081+00 2026-01-25 01:27:51.375875+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 189 google Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB 1 t 192 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We booked a car through their system 2 weeks before our departure. We paid full in advance, we did online check-in and we met at the meeting point at the airport. They took us to their rental office and one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was NO CAR for us! We were a bit shocked, but politely asked, "What next?"—expecting a response/help from her. The lady informed us that we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN!!! we booked a car through their system 2 weeks before our departure. we paid full in advance, we did online check-in and we met at the meeting point at the airport. they took us to their rental office and one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. she returned a few minutes later to inform us that there was no car for us! we were a bit shocked, but politely asked, "what next?"—expecting a response/help from her. the lady informed us that we would receive a refund within a few days, and that was it. nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply nothing. it’s worth to add that our apartment we booked was 80 km from that place. we asked to contact the manager, but was informed that it wasn't possible because it was sunday (no comment). at this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. when we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. it was simply a scandal! never again!!! 1 2025-11-26 01:27:48.340137+00 en v5.1 V1.01 {} V- I3 CR-N {} {"P1.02": "It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the ma", "V1.01": "We booked a car through their system 2 weeks before our departure. We paid full in advance, we did o"} {0.0057089217,0.060381513,0.03747818,0.06786083,0.02337557,-0.0034580783,0.00997317,0.046752207,0.02391108,-0.018764326,0.076316245,-0.011024119,0.029041294,-0.0030878205,-0.037724696,-0.03602784,0.04709192,-0.04253579,-0.07192449,0.09103651,-0.040323693,-0.046460107,0.018549388,-0.0057979263,0.037946176,0.048825417,-0.032331396,0.04968006,-0.009352142,0.007657718,0.005472727,0.052784592,0.008745583,-0.03691424,0.039691407,0.019720506,0.06578681,-0.039139125,0.027250085,-0.040658034,-0.042586792,-0.06195529,0.03540723,0.051762715,-0.04470935,0.028908912,0.049902167,0.03757371,-0.030717155,-0.10397703,-0.073487446,0.052434225,-0.05247858,-0.0360335,-0.084664285,0.028918779,0.07318952,0.038876284,-0.0010028522,-0.05719182,0.0091771325,-0.04732837,0.011690293,0.0728342,-0.0626289,0.052141357,-0.082125,-0.07069225,0.080065206,0.041125502,0.06576423,0.010678378,-0.01663624,0.039469697,0.0022294729,0.009714786,0.038257442,0.04103185,0.05806963,-0.016958639,0.00043942544,-0.028880147,-0.019981287,0.046848167,-0.010385285,-0.09752192,-0.007508506,0.061267104,0.017418392,-0.021241575,-0.04374584,-0.015310749,0.020363232,-0.034352504,0.042056423,0.06819954,-0.032701258,0.024159405,-0.0048589273,0.057987608,0.07711602,0.16059409,-0.0783053,-0.10609795,0.017650397,0.058559123,0.060189787,-0.033142377,-0.029181587,-0.04761985,0.035786532,-0.027525287,-0.014892288,0.0092889145,-0.009661136,0.029459836,-0.060152713,0.009953037,-0.0243307,-0.0519725,0.0035605049,0.005771721,0.03206377,-0.0036676012,-0.021231016,0.0041101365,0.107247576,-7.236203e-34,-0.060682766,0.020336702,-0.051021554,0.022047406,0.10859904,0.039174322,-0.019753704,0.07635334,-0.0049172915,0.034517553,0.038199555,-0.045200966,0.036206055,-0.13919361,-0.026731422,0.08108254,0.011238138,0.017507559,-0.02206009,-0.0027585418,0.024935909,-0.0091587035,0.041472163,0.0013152729,-0.027693179,-0.0109336935,-0.015691986,0.038296863,0.09032095,-0.029139752,-0.10862488,0.06865364,0.06468781,0.002956481,0.04605916,0.029717056,-0.052059215,-0.013735169,-0.12201985,-0.025980787,-0.042115774,-0.04742911,-0.05318886,-0.042834837,-0.041400865,0.0045559397,-0.004348735,-0.06368959,-0.09273374,0.047912396,-0.077262186,0.043365136,0.02284728,0.07788254,-0.12527448,0.016420156,0.0805768,-0.0069798515,-0.03203707,-0.057185996,0.028227614,0.024965705,-0.026552767,-0.006903844,-0.058685794,-0.11667854,-0.025432378,-0.025555706,0.038781606,-0.028119328,0.05660043,0.093318455,0.014048452,0.043155804,0.031948604,0.07612192,-0.059077997,0.030816125,-0.042659044,-0.10344852,0.07759717,-0.046181664,-0.07338933,0.02625569,-0.017114341,0.029301915,0.022841634,-0.04402414,0.00035056207,0.034630038,-0.031943403,0.059143227,-0.028638653,-0.056043305,0.09297631,-1.6049373e-33,0.06409425,-0.073428966,-0.03402258,-0.026692418,0.03781337,0.0048594065,-0.057075396,-0.028008051,0.051716562,-0.007999368,-0.018395118,-0.04781032,0.101276495,0.011608507,0.016790807,-0.045298517,0.06918967,-0.15003513,-0.011755496,-0.00492539,-0.004899264,0.035557907,0.037926324,0.050512224,-0.04607538,0.12627725,0.04859103,0.006625894,-0.053974718,-0.018236546,0.008869636,-0.06809525,-0.05009205,0.0777039,0.089719586,0.064302295,-0.011959076,0.027730772,-0.10379908,0.010969734,-0.019027267,0.018418968,0.018691037,0.006206039,0.086752646,-0.03448467,0.0902278,-0.06796027,0.02629406,-0.01722584,0.026745493,-0.0075649493,-0.05578314,0.035262138,0.003417042,0.009417061,0.041775372,-0.032034196,0.08627723,0.018159306,-0.008859184,-0.032977175,-0.04795186,-0.055331253,-0.04599387,-0.090725,0.0011765381,-0.07471324,0.09605238,0.04062787,0.012610867,0.012467271,-0.00796295,0.009781519,0.10751181,0.08792476,0.017560968,-0.072010316,-0.031845257,-0.105159506,0.0043239854,0.027682498,-0.009610589,0.029999522,0.045771506,-0.008471813,-0.004282902,-0.06673144,0.017606074,0.0115363095,0.013830723,0.0702377,-0.007623479,0.056685746,-0.010908166,-5.7334614e-08,-0.017626595,0.058431912,-0.0042283917,-0.016854148,0.04292305,-0.11652827,-0.0021459367,-0.025087776,-0.10376008,-0.029435711,-0.008285815,-0.045809872,-0.0153732505,0.07569504,-0.07381111,-0.023805704,0.043534964,-0.048843972,-0.056284744,-0.0117105255,-0.009767412,-0.019145116,-0.10652832,0.026318008,-0.00945026,-0.049848497,-0.030443933,0.08045344,0.05876086,-0.08459557,-0.031585775,0.03273364,0.013716021,-0.024425687,-0.07342021,-0.09009624,0.04708865,0.010428838,0.015713783,-0.031306315,-0.029405337,-0.0035372812,-0.017055662,0.016586538,-0.0154469935,0.020886775,-0.0036116487,-0.014526245,0.0035335529,-0.015332159,-0.07166514,-0.115311734,-0.037492774,0.11162369,0.067437425,-0.07722502,0.002307608,0.03430295,-0.0021178178,0.02874487,-0.080705784,0.0036798522,-0.11790185,-0.02050982} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:39:48.193567+00 2026-01-25 01:27:49.96365+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1243 google ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB 1 t 1246 Soho Club unknown Nice gay club. I rather pop music but its ok. nice gay club. i rather pop music but its ok. 5 2017-01-31 18:34:31.336452+00 en v5.1 E4.01 {} V+ I2 CR-N {} {"E4.01": "Nice gay club. I rather pop music but its ok."} {0.036935855,-0.09190103,-0.029168611,-0.02803103,-0.03790689,0.035087008,0.060569495,-0.050249495,0.039041925,-0.00589671,-0.0159223,0.050487652,0.008505862,-0.011842587,-0.0120653445,-0.01685284,0.014374909,-0.08693061,0.011331862,0.029906137,-0.12913302,-0.012886194,-0.007523131,0.0009258318,-0.15013841,0.023413088,0.020289298,0.051612895,-0.0034421275,0.07508613,-0.040462136,0.11999046,0.054511093,-0.07882662,-0.12323357,-0.010392946,0.01685774,-0.09157352,0.058888845,0.024675833,-0.0065315594,0.018757,0.054826263,-0.0077308374,-0.01925982,-0.028457858,0.046392843,-0.05102419,0.0059057176,0.032185674,0.12754016,-0.02501332,0.01210109,-0.047137707,-0.027653564,0.074872516,-0.03025833,0.043287717,0.02088266,0.04972546,0.053367544,-0.00084256934,-0.09738607,-0.050738484,0.06290248,-0.0088257985,-0.017691553,0.045256972,0.033260915,0.0054557864,-0.0019860354,0.03861232,-0.018431088,0.036716152,-0.03861413,0.0006598067,-0.025793055,-0.042369444,0.0035711157,0.04175402,0.05251677,-0.05302922,-0.018117802,-0.09469867,-0.055873264,-0.091717474,0.03503386,-0.011494674,-0.06188695,0.08522259,-0.024481764,0.111743554,-0.03984265,-0.0014958284,0.028945796,-0.01632501,-0.036032397,-0.027049776,-0.109848894,0.07602352,0.035903662,0.1371073,0.060211506,0.041497707,-0.05913481,-0.032111,-0.016369179,0.1390044,0.008950266,-0.014435533,-0.010218838,0.014631765,0.009418099,-0.010930846,-0.028808735,0.0042830417,0.033446014,0.047114376,0.035027973,0.044174004,-0.03930764,0.054803737,-0.0012977327,0.10770917,-0.028025676,-0.028648876,-0.0476962,-4.938403e-33,-0.031879514,-0.026030764,-0.016065855,0.019286064,0.087389596,0.043315317,-0.013384459,-0.016113985,0.021437094,0.04252718,0.06318986,0.025889784,-0.04240718,-0.08191434,0.038826853,-0.08433835,0.03231915,0.023593474,-0.054826017,-0.053664442,-0.010724153,0.07992311,-0.0038545649,0.0234407,0.003555391,0.024377806,0.00093498913,-0.066190936,0.05397402,0.026820369,-0.01570665,-0.015827665,-0.008297469,0.02176524,0.027364448,0.036221676,-0.03218536,-0.012571433,-0.029345656,-0.0031237875,-0.014161996,-0.019077687,-0.03186963,0.008038823,-0.02762231,0.13211909,-0.008385923,0.012295532,0.054725256,0.0057188217,-0.011667951,0.01638661,-0.058388673,0.08092322,-0.031715117,-0.021307271,-0.026428653,0.07884566,0.062374756,-0.041779004,0.02791264,0.13833794,0.060479976,-0.0676146,-0.03412869,0.07757068,0.026418777,-0.09297845,0.10226001,0.025715815,0.00967034,-0.019498814,-0.03423079,0.0017546454,0.03051104,-0.014580452,-0.026651744,-0.073613845,0.08481549,-0.023992648,0.06253498,-0.03823258,0.026939973,-0.08043592,-0.015627058,-0.002930353,-0.0067025176,-0.082188524,-0.011757496,-0.020541433,-0.10773274,0.03157511,0.0012447105,-0.024459902,0.029138418,3.753893e-33,0.07942834,-0.07239195,0.068011306,0.03422242,0.0026707153,0.061558567,-0.014546699,-0.014756395,0.06116056,0.08392773,-0.039630916,-0.061390016,0.023382807,-0.022047866,0.060054142,-0.03649951,-0.0028196068,0.020447586,-0.033315495,0.041089643,-0.06478618,0.038665067,0.029804466,0.11504158,0.011313673,-0.008122563,-0.058833048,0.050346162,0.09440812,0.0149742365,0.011855853,-0.007342308,-0.06597484,-0.11960507,0.024492653,0.016758269,0.030045107,0.069513045,-0.031539034,-0.039843164,-0.07060369,-0.017976923,-0.0029178131,0.11275112,0.033322763,-0.05072274,0.017526556,0.09961029,-0.017822985,0.012232278,-0.050469704,-0.05225144,0.036269758,-0.079281814,0.013733447,-0.08310073,-0.023452144,-0.026807548,-0.13891669,0.0044347295,-0.05553724,-0.029035794,-0.04835989,0.05578186,0.052586593,-0.016752096,-0.0038042956,-0.0018327567,-0.037908964,0.04981454,-0.039379984,-0.05266735,-0.044129416,0.010831081,-0.032082185,-0.083158545,0.07195141,-0.0073650116,-0.022640679,-0.02013426,0.021887394,0.09670262,-0.036538858,0.02050097,-0.0007790771,-0.026368339,0.08107062,0.020324137,-0.016765382,0.08172026,0.044839744,-0.03507267,-0.053558785,-0.053873543,0.04241209,-1.6804853e-08,-0.04055619,-0.059023604,0.0125812795,0.03535921,0.0063229585,0.06976468,-0.009044443,-0.031275205,0.062347837,-0.04866506,0.011165074,-0.026101112,-0.009181877,0.050258137,-0.058907557,0.004745385,-0.028325053,0.023997858,-0.048875935,0.05851836,-0.010448658,0.019811697,0.07086376,-0.034042526,-0.020587627,0.012161343,0.049910575,-0.08396786,0.016478565,-0.029655507,-0.0023223015,0.028912792,-0.07020588,0.063498214,-0.061201647,-0.060257994,0.088931486,-0.057529803,-0.07871775,0.013594114,-0.00214998,0.014343365,0.03362593,-0.019063143,-0.10162266,0.010045608,0.09565364,0.054377902,-0.01379566,0.041021924,-0.020711036,0.09842381,-0.032982863,0.025972186,0.050964307,-0.04454877,-0.09772378,0.12671384,-0.014107031,0.025414191,0.019537708,-0.0073133507,0.017276239,-0.085866906} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:12.889087+00 2026-01-29 18:36:00.571862+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1244 google ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE 1 t 1247 Soho Club unknown amazing service, nice club!! amazing service, nice club!! 5 2023-01-30 18:34:31.336452+00 ro v5.1 P1.01 {} V+ I3 CR-N {} {"E4.01": "nice club", "P1.01": "amazing service"} {-0.066231586,0.0044094105,-0.010630862,-0.06683322,-0.081273876,0.018601077,-0.012339649,-0.05057321,0.02359376,0.00603518,0.021600904,0.03426757,0.044555105,0.042037234,-0.04042171,-0.056705408,0.0034625318,-0.099241786,0.009698971,-0.026657306,-0.13487431,-0.049844604,-0.013445303,0.012778789,-0.10706271,0.041494317,-0.005677018,0.019031279,-0.05533312,-0.062089548,-0.037689444,0.045382958,0.044320706,0.0130672,-0.009463171,0.028859776,0.028335767,-0.07234228,-0.012504725,0.011983117,-0.03957617,0.007878387,-0.041388553,0.037132975,-0.020981718,0.10612215,0.0103597175,0.014904539,0.07457909,0.04862193,-0.042440798,-0.05256884,0.041202076,-0.033870883,-0.05586908,0.044736717,-0.03305022,-0.034572866,-0.07553519,-0.061820943,0.034652278,0.018471386,-0.0485915,0.010096592,-0.0044395723,-0.014825313,-0.0002914975,0.026075298,0.03541891,-0.048837893,-0.015714956,0.061532635,0.011114054,0.025608016,-0.0039337506,0.14959805,0.057001494,-0.030378433,0.03558251,-0.060855675,-0.00080600975,-0.065920904,0.02981326,0.065263376,-0.020251334,-0.11094706,-0.030696442,-0.04584734,0.025982901,-0.014803961,0.0084821135,0.09989933,-0.07311511,-0.046625707,-0.0682208,0.020649435,-0.04323482,-0.016254576,-0.0759982,0.02278716,0.05211256,0.112799205,0.0011404105,-0.05482527,-0.046353336,-0.022208588,0.0016332323,0.13542093,-0.023751508,-0.018175244,0.018199125,0.023511935,-0.032422323,0.031287946,-0.04179464,0.06933145,0.0020356677,0.04337011,-0.00025414934,-0.037823953,0.020169426,0.07311537,-0.014112669,0.046175845,-0.030644622,-0.011761452,0.15126081,-5.5260537e-33,-0.06054085,0.06958609,0.0034409354,0.07533636,0.02503645,0.021959694,-0.07287003,0.00502999,-0.069196835,0.004299246,0.018099766,0.07391293,0.052526243,-0.020922298,-0.05273886,-0.09645728,-0.026048794,-0.07496698,0.008721269,-0.0041650594,-0.057380483,0.047282495,-0.012835257,-0.01126254,0.04506832,-0.0051663667,-0.007982945,0.0016192574,0.14613412,0.0138300415,0.037038755,-0.050908968,-0.0370538,0.0034175653,-0.035126917,0.036403283,-0.02835736,-0.06956413,-0.056992155,-0.061233465,-0.023278294,0.0005867409,-0.083679795,0.012795107,-0.11145172,0.019533472,-0.02812867,0.025457079,0.09480939,-0.0037258274,-0.042643778,0.01027624,-0.05770751,0.077981055,0.04127466,-0.02646976,0.037699956,0.053446863,0.01805525,-0.09179359,0.078289874,-0.05276105,-0.024487311,-0.013318562,-0.027068622,-0.06288989,0.04986344,-0.040078513,0.051213,-0.0076637673,0.029992273,0.024965309,0.059977032,-0.038578074,-0.04040548,0.012260315,-0.06462258,-0.040629398,0.04707242,0.0032152745,0.019790651,0.026735257,-0.0045697684,0.009208807,0.06687195,0.024433104,0.01890334,-0.06665212,-0.08059644,-0.008932005,-0.057777066,0.046807185,0.0832483,0.0690707,0.053207144,2.4280896e-33,0.08687535,0.0039737364,0.0657662,-0.026877234,0.0036918262,0.039550334,-0.061464604,0.087317646,-0.05828104,0.13306515,-0.02169102,0.055478033,-0.047148693,-0.014798331,-0.04982754,-0.012516243,0.031667326,0.061812267,-0.042805903,-0.021650065,-0.02220616,0.11087986,0.06741684,0.037022322,-0.025576627,0.019611582,0.020172043,0.08520701,-0.005825564,-0.0531823,-0.0036945029,-0.009301082,-0.00458415,-0.071069345,-0.02131702,0.07826636,0.028895708,0.09449425,-0.06125664,0.04625115,-0.005640605,-0.0056665963,-0.086407855,0.0073738554,-0.007121413,-0.040946826,-0.014507503,-0.03629939,-0.10056126,0.015390461,-0.009545814,-0.03994833,0.01150931,-0.03081873,0.0561587,-0.07307426,0.027410924,-0.058222797,-0.019975422,-0.010391363,-0.021698596,0.040098015,-0.07921597,0.074401595,0.14655134,-0.06448834,0.015108435,0.02801575,-0.05914695,0.017808856,-0.10906918,0.041345898,0.015048458,0.14705697,-0.02728753,-0.11812004,0.06927015,-0.030410396,0.013224665,-0.016797792,-0.04517369,-0.016327301,0.07183221,0.02864605,0.061550986,-0.021993438,0.101400524,-0.026815845,-0.021343233,0.06528218,0.0054451292,0.060281545,-0.08418931,-0.015564523,-0.0035845716,-1.6679717e-08,-0.022760933,0.072627395,-0.048928756,0.08550063,0.05638388,-0.06560972,-0.004290291,0.045696534,-0.0019103002,0.05087657,0.017192349,-0.01392825,-0.030593602,0.06717796,0.022235855,-0.0025728992,-0.040131763,0.113817,-0.015809214,0.00024835978,0.0067955167,-0.012072181,0.014399537,0.01896662,-0.011251387,-0.013844133,-0.01627335,-0.02511571,0.0017120204,-0.05743828,-0.063413784,0.034491226,0.0054680095,0.021228591,-0.06916488,0.03773336,-0.03905783,-0.037276886,-0.00011383632,0.047301073,-0.045393143,-0.07132686,-0.013920725,-0.05432778,0.07023454,0.061249427,-0.030749451,0.07121131,0.025632918,-0.04034124,0.0014575155,-0.016642924,0.06580875,0.015472695,0.030559057,-0.017608142,0.044421535,-0.0077929236,0.0109000215,0.14265667,-0.0032644582,0.017816225,-0.09048557,0.017388524} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:21.925991+00 2026-01-29 18:36:00.577185+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 464 google Ci9DQUlRQUNvZENodHljRjlvT25kUmFGTmphamxZWXpBd2NGRndiMjlhWjFWdFltYxAB 1 t 467 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen ,después de que el coche se averíe y sea imposible repostar te cobran un repostado de 103€ tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen ,después de que el coche se averíe y sea imposible repostar te cobran un repostado de 103€ 1 2025-10-27 01:27:48.34207+00 es v5.1 P1.02 {} V- I2 CR-N {} {"P1.02": "Tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen, d"} {-0.02451014,0.06922409,-0.10308153,-0.045845076,-0.13012663,0.022577984,0.08184226,0.04820017,-0.027888723,0.027150953,0.07070996,-0.055033434,0.034801755,-0.015363766,-0.03751135,-0.045776907,0.009076609,0.0067626094,0.002220463,0.032898948,0.013497974,-0.015210581,-0.0494449,0.10120819,-0.113073334,-0.025632355,-0.0071883737,-0.01803649,-0.027891392,-0.049694546,0.029486196,-0.050801,0.0039971457,-0.04045948,-0.03709705,0.030647548,0.02132504,-0.08487445,-0.1035898,0.07991875,-0.07635378,0.013606468,-0.07213976,-0.012356931,0.022864446,-0.06754011,0.024583561,0.07559305,-0.066676155,-0.031772114,-0.05594121,-0.009745607,-0.036839988,0.029552393,-0.009226701,-0.035640277,0.015463111,0.0072383187,0.07322237,0.022088835,0.0078006643,0.05207307,-0.023062598,0.025054155,-0.0176254,0.010692303,0.015167713,-0.020906333,-0.01354371,0.04941058,0.05548619,-0.09338739,0.014952679,-0.05220657,0.035271093,-0.035480004,0.021530246,-0.025688509,0.02984754,0.0057457867,0.035537817,-0.013423569,-0.031074477,0.021795668,0.014781295,-0.07120142,0.0017489542,-0.021388488,0.098800555,0.003312252,-0.042147167,0.04270944,0.055872478,-0.045374356,-0.099133044,0.03204457,0.020986307,-0.04144765,-0.01932954,0.008097574,0.07570086,0.034656323,0.031364553,-0.01665599,-0.056989107,-0.003505775,0.05016549,0.009643668,-0.0109255295,0.05945591,-0.11771086,-0.03269638,-0.07468067,-0.016532155,-0.020467967,0.06776767,-0.06382062,-0.14285971,0.0044323946,-0.09167457,0.06652516,-0.033300277,0.007619744,-0.08835176,0.027059166,-0.07312312,0.041781086,9.406041e-33,-0.02161668,-0.0074122227,-0.047591683,0.044948075,0.014523327,0.025115598,-0.036956474,-0.013408977,0.0066238437,-0.0114305485,-0.006599775,0.04917623,-0.05142967,0.06981547,0.0040676515,-0.012112644,-0.006495537,0.04219129,0.022553215,0.063047566,-0.010251963,-0.03490701,0.0037014699,-0.014757805,0.025565332,0.043372512,-0.020372562,0.01095785,-0.03995315,0.024599766,0.06477003,0.021188745,-0.0047761416,-0.07120536,-0.062527426,-0.04360045,0.016612198,0.04135377,-0.006370195,-0.022700658,0.0067292373,0.05332949,0.042091295,0.007748663,0.098817244,-0.05040468,0.11630274,-0.032372892,-0.012112204,0.029768182,-0.054802436,-0.0040451344,-0.05153696,-0.08940866,-0.07324416,-0.007145684,-0.039454654,0.012421128,-0.09459092,-0.068628594,0.021964444,-0.121541925,-0.011621172,-0.00940832,0.011403456,0.01798608,0.037936375,-0.022758745,0.08418275,0.043540794,-0.08332804,-0.022405423,0.059349727,0.02587885,-0.04596409,0.048729304,-0.0063290405,0.032468915,-0.0041886494,0.020436747,-0.062007554,-0.002757636,-0.021239197,0.09618758,0.1202927,0.046935797,0.060679086,0.041210294,0.052017268,0.110480145,0.023888584,0.0819907,0.044466965,-0.06875711,0.05498325,-1.2457938e-32,-0.008747483,-0.021950549,-0.010830372,-0.005396804,0.013479765,0.0032490294,-0.027591055,0.043042894,0.029628104,-0.040126495,-0.16580056,-0.13231592,0.10501626,0.023467703,-0.024134038,0.04193306,-0.015004476,-0.10702093,-0.04961426,-0.02168342,0.0020422668,-0.0094599305,0.06415369,0.038019657,-0.01191527,-0.050852474,-0.0040053036,-0.027417254,0.0075297994,0.008679062,-0.012515443,-0.038560737,-0.018535914,0.023135807,-0.066973634,0.009709866,0.028810132,0.076396674,-0.028214343,0.05914756,0.02665856,-0.00728848,-0.05803258,-0.030222258,0.030989015,0.008889525,0.015256838,-0.15287882,-0.02153814,-0.039956123,0.0757058,-0.06904881,0.020871824,-0.0023671356,0.03665668,-0.004505047,-0.028564155,-0.09124756,0.04199596,-0.027940173,0.05704967,0.020496672,-0.049714867,0.033343006,0.062344432,0.05234452,-0.0579567,-0.016957412,0.022390699,0.03945674,0.10842657,-0.07241658,-0.00941288,-0.04641428,0.007378273,-0.074025005,-0.14617243,0.040927745,0.012343607,0.025863947,-0.052643422,0.0046766307,0.015284259,-0.10107374,-0.023265919,-0.060218405,0.027848795,0.023588931,0.023171742,-0.011248014,-0.041688897,0.008727812,-0.09525455,-0.059345562,-0.06435336,-4.9699572e-08,0.03448338,0.025172645,-0.001725877,0.041745175,0.04529203,-0.032731958,-0.0059925313,-0.012379677,-0.026127152,0.15038933,0.018827535,-0.05484804,0.057029705,0.02157658,-0.006136157,0.025249949,0.08362778,0.052946627,-0.059471503,-0.02520516,0.09644144,-0.0017346487,-0.07887394,0.01471109,0.008458652,0.024411129,-0.015464566,0.07378291,-0.056921292,-0.0016626368,-0.005084237,0.009126034,-0.028934143,-0.12202076,-0.008902258,-0.022573985,0.037534297,0.028588997,0.008340011,-0.081644736,0.029037528,0.050307848,-0.038951226,0.07278407,0.030771207,-0.043964714,-0.08061,0.028374637,-0.0016125554,-0.027635336,-0.0040199873,-0.07545688,0.08392963,-0.049502347,0.019835306,0.00095922867,0.058457546,0.042101126,-0.085398056,0.024508609,0.10587249,0.05192892,-0.019126747,-0.08680883} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:34.662934+00 2026-01-25 01:27:51.481615+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 523 google Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB 1 t 526 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ze vragen 1200 euro voor een bluts die al aanwezig was. Opletten! ze vragen 1200 euro voor een bluts die al aanwezig was. opletten! 1 2025-10-27 01:27:48.342405+00 nl v5.1 P1.02 {} V- I2 CR-N {} {"P1.02": "Ze vragen 1200 euro voor een bluts die al aanwezig was."} {-0.118607774,0.11603123,-0.0061919955,-0.027528247,-0.10076602,0.01935637,0.048895717,0.094639026,0.010561159,-0.05280439,0.022296779,-0.005676414,-0.042164296,-0.01786078,-0.090419024,-0.040882967,-0.06754715,0.084337324,-0.064292684,0.019402677,-0.009386068,0.0036312514,0.06518182,0.027043603,0.09586053,0.015877761,-0.016363788,0.060245268,0.089798875,0.027873816,0.099188134,0.08347632,-0.049276862,-0.03855797,0.07093397,-0.040477507,0.012293345,-0.13780044,-0.038444158,-0.009173899,-0.040674906,0.04293195,-0.08999241,-0.04061504,-0.019780131,0.072707556,0.012448957,0.094744496,-0.08398586,0.027204672,0.024440961,-0.040075157,0.09853754,-0.04931763,0.015808482,-0.011692362,0.009947592,0.04516795,-0.014213161,0.006565847,-0.0066178427,0.06848756,-0.123504505,0.024237296,-0.11658964,0.03606273,0.039349698,-0.066490486,-0.15203667,0.05443086,0.0037348985,-0.080227494,-0.01089174,0.0072276923,-0.042886816,0.034714274,0.04752728,-0.10391694,-0.027502527,-0.034956157,0.09011922,-0.07076717,0.009831269,0.0027005824,0.06852316,-0.04762294,0.004369113,0.031354375,0.046402473,-0.0393771,-0.024352845,-0.021656726,0.00037661742,0.0028834587,0.01699344,0.03255688,0.021528624,0.033734273,-0.011395629,0.10172629,0.019639568,-0.03643702,0.09456424,0.026855689,-0.07903029,0.026672931,0.08121155,-0.016211398,0.017668935,-0.01428008,-0.007922415,-0.09790277,0.022652663,-0.103465125,0.019137803,0.00045339737,-0.040283516,-0.070849806,-0.009473293,0.007298584,0.0065093446,0.011460731,-0.018263156,0.060310937,0.08054855,-0.0448987,0.04290309,4.3050615e-33,-0.015420616,0.0029228758,-0.057488877,-0.01831839,-0.03339192,0.023919841,0.0005484483,0.023350893,-0.004460875,-0.052178588,0.0013579376,-0.037541185,-0.029756512,0.06650025,-0.020459361,-0.023319213,0.029440407,-0.030050468,0.04473723,0.006990879,-0.021229194,-0.031182133,0.069044486,0.047046542,-0.03662496,-0.005674571,-0.0055439165,-0.05909312,-0.029371211,0.036895655,0.09437588,0.022309078,-0.04239475,-0.049184434,-0.08536063,0.0559878,0.03237895,-0.043185662,-0.007453954,-0.043959476,0.07833352,0.013770314,-0.040644635,0.06736629,0.077061236,0.09499268,-0.0050513,-0.021349814,0.06375488,-0.044019323,-0.08002352,-0.014237274,-0.08186977,-0.033406947,0.027879318,0.08997668,0.010499999,0.08710453,0.0074585816,-0.0053701354,-0.023509793,0.035909895,0.041232765,-0.045849662,0.024815168,-0.014482552,0.04735057,-0.0637908,-0.025083026,-0.07825249,-0.0022424683,0.011639705,0.100990996,0.031243287,-0.035770725,0.06189262,0.015659314,0.05722938,-0.05062645,-0.024977151,-0.08340488,-0.015941584,-0.010849243,-0.08109399,0.06424393,-0.046355747,-0.01903193,-0.051388882,0.04010099,0.04742554,0.013534707,-0.026733067,0.0062349406,-0.057416596,-0.0018367271,-4.9817285e-33,-0.04683732,0.07987217,-0.07609476,0.07610139,-0.03678454,0.01673968,-0.061674587,0.04344788,0.017303098,-0.035722226,0.004104417,-0.010428313,0.08496582,-0.0115732495,-0.057403065,0.015539595,0.076958045,-0.042996973,0.11962677,-0.009618986,-0.06826652,0.027489446,-0.012149226,0.12181381,-0.008844915,-0.009628756,0.05024558,-0.0077958773,-0.037320904,0.0012086602,-0.0047817775,0.014424101,0.072066925,-0.026110077,0.0588496,0.07387546,0.11088189,0.0056146192,-0.11563947,0.035283267,-0.008613352,-0.021728653,-0.072507866,-0.051522605,-0.008241757,-0.021844478,-0.049226653,-0.07156971,-0.010144847,-0.024513667,0.04101434,0.05721495,0.030151032,-0.00848437,0.031793594,-0.014087752,-0.004554965,-0.06649832,-0.04996308,-0.0050372784,0.08603648,0.114192955,0.020981945,0.06606553,0.027855203,-0.02621042,-0.07579031,-0.031436052,0.03550187,-0.03436266,0.018664123,-0.017242907,-0.037062373,0.035877537,-0.114177644,0.010479582,0.030672967,-0.011083991,0.0054446934,-0.051504757,-0.08389638,0.0059228023,0.00548393,-0.018810261,-3.9521536e-05,-0.03356227,-0.031437024,-0.037272688,-0.0060110018,-0.046000194,0.00936618,-0.009621568,0.03954431,0.042984534,-0.043450404,-2.4852547e-08,-0.0003281014,0.027657341,0.016964145,0.030467656,0.10014336,-0.12030904,0.013795855,-0.007748206,-0.09492006,0.06590455,-0.046255503,9.936323e-05,-0.023197386,0.04667701,0.0060481834,0.092800744,-0.010036358,-0.034558784,-0.018787347,0.00039333393,0.09943513,0.033694565,0.026697576,-0.04693285,0.00071352784,0.042625725,-0.05882013,0.03066313,0.04662695,-0.06806958,0.017297395,0.0724937,-0.010857702,-0.07404082,-0.036095075,0.033505592,-0.0149555635,0.024205612,-0.06560796,-0.01812031,0.009988732,-0.03526067,0.09693446,-0.06704413,0.008843764,0.0022627772,-0.022371912,-0.07269593,0.11557456,-0.00801482,-0.026648901,0.020260263,-0.01011557,0.06874317,0.023117252,-0.06675163,0.028759038,0.010835637,-0.038894724,0.02166358,-0.008048153,0.0077239834,0.02691135,-0.03152673} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:16.640683+00 2026-01-25 01:27:51.733864+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 597 google Ci9DQUlRQUNvZENodHljRjlvT21sTVdsWnNkMXBKU1ZoWFlYQnhWM1JzVldzMFdFRRAB 1 t 600 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen precio y muy buenos en gestión y todo. muy buen precio y muy buenos en gestión y todo. 5 2025-10-27 01:27:48.342797+00 es v5.1 P1.01 {A1.01} V+ I2 CR-N {} {"P1.01": "Muy buen precio y muy buenos en gestión y todo."} {0.028924765,0.020362558,0.038249105,-0.04206778,-0.018224487,0.016363045,0.06909051,-0.008199733,-0.03252831,-0.030381653,0.053630564,-0.009923575,-0.061193142,0.04215744,0.030605873,0.04440539,-0.034100708,0.027992146,-0.047246225,0.0031800205,0.09143578,-0.016830266,-0.091175504,0.15832646,0.0056770765,-0.12649092,0.037756793,0.0046439613,-0.0266117,-0.01632586,0.0124012865,0.030619672,0.11949794,0.057762083,0.0020371191,-0.018532792,0.08941288,-0.057836663,0.013238631,0.025753176,-0.068459965,-0.038180944,-0.017670846,0.020244986,0.03907218,-0.030152353,0.07626446,0.014647372,0.058361888,-0.00010760663,-0.012093348,0.010585119,-0.04323717,-0.026890015,0.025482897,0.08361976,-0.025512053,-0.05794191,0.043306436,0.0024230494,-0.08133784,-0.024981804,-0.057352673,-0.019537134,0.048591107,0.027585443,0.025954928,0.03477468,-0.070386134,0.0015257032,0.12593189,-0.060011767,0.026624618,0.09471592,-0.069466725,0.04093366,0.045158435,0.047708414,-0.053689007,-0.042622942,-0.001050498,-0.04047543,-0.08099876,-0.0028138773,0.052141722,-0.019263888,-0.067830324,0.014852056,0.025676265,-0.02121611,-0.008974431,0.036952484,-0.031986903,0.017541688,-0.0013599531,0.055410013,-0.027103169,-0.06219091,0.002642442,0.105653755,0.06441603,0.01770775,0.103172116,0.07277272,0.01442513,-0.008091579,0.05484595,-0.0060225297,0.016066682,0.046640478,0.013018348,-0.006665993,-0.031559326,0.041819308,-0.08262945,-0.05572412,0.005157135,0.044930838,-0.05465807,-0.11562086,0.088510044,0.10621297,-0.027926678,-0.004334892,-0.06913967,-0.07851295,-0.0032999963,5.78366e-33,-0.05305996,-0.09549493,0.008599897,0.043636043,-0.07605348,0.030935269,-0.03617842,-0.0030115724,-0.024601208,-0.052292846,-0.0072677773,-0.0045848633,-0.0065154624,0.012710143,-0.0042411815,-0.0060181497,0.022831121,0.010203328,0.07790245,0.03523244,-0.08746942,-0.015369107,-0.00554396,0.01873048,0.0152133005,0.004924371,-0.07111146,-0.11281226,-0.06735773,0.057140008,-0.01693332,0.05957366,0.021061754,-0.018960409,-0.045078866,-0.07346426,0.027170133,-0.00016345026,-0.044237956,-0.041236717,-0.012316413,0.048343744,-0.048173163,-0.0019508459,0.017166803,-0.05208191,0.03384713,0.11076501,0.022915248,0.0022863555,-0.050283834,-0.07042129,-0.10158737,-0.0050843144,0.029654529,-0.021858713,0.014186749,0.054640267,0.019261697,-0.06303891,0.010162593,0.06259906,0.026729899,-0.039786972,-0.042377092,0.026366148,0.034255423,0.017139727,0.11835697,0.04192193,-0.08826928,-0.036126915,-0.09988304,0.024005093,-0.03211637,0.009771679,0.015688285,0.013777675,0.0425864,0.00922161,-0.09536073,0.044107165,0.061209846,0.02413734,0.07627634,0.11919587,0.07033573,-0.012360917,-0.07484828,0.040725365,-0.010960907,0.07163258,0.058803238,0.005006715,-0.012805736,-5.1135657e-33,0.048156302,-0.057740834,0.012040778,-0.0073785996,-0.0388854,-0.0047893627,-0.059781104,-0.076341964,-0.029161062,-0.0144077195,-0.041096643,-0.1276478,0.10738515,-0.0020574469,0.0012679283,0.08813263,0.08958669,-0.042455744,-0.059073877,-0.045510236,-0.020024639,0.10619851,0.01495796,-0.0059048138,-0.0717556,-0.105596155,0.03319704,0.085737206,-0.05182308,-0.029878397,0.0025635068,-0.064179085,-0.0061109494,0.012523974,-0.0053128116,0.07350455,0.026930092,0.04014071,0.030858856,0.013776414,0.0079529,0.06229043,-0.04559475,-0.009259444,-0.07955192,0.03323557,-0.025656667,-0.06447343,-0.027331332,-0.017885752,0.05773984,-0.06026906,-0.011060745,-0.03421083,-0.017225975,-0.07833982,-0.030646337,-0.0905629,-0.08076372,-0.060965028,0.04470351,-0.035065617,-0.03396441,-0.01790614,0.030506676,0.0138307,-0.048471764,0.085295275,0.016352152,0.014953359,0.0825043,-0.0073540756,-0.04989009,0.0020208207,-0.09094874,-0.006222101,-0.043808244,-0.023429751,0.06715812,0.010261089,-0.054976948,0.043077853,-0.04583461,0.014832201,-0.03592161,-0.029662613,-0.033173546,0.04403934,0.04184222,0.066509455,0.022562856,0.050841283,0.013145713,-0.095042735,-0.017892782,-2.7575203e-08,-0.03080597,-0.06428003,0.0033088995,0.015934587,0.042093217,-0.01599194,-0.06302312,0.023466695,0.04707809,0.027928228,-0.029254973,-0.028114446,-0.033451587,-0.05162402,-0.07231149,0.043775644,0.028898118,0.10414858,0.01019486,-0.076772824,0.09153434,0.040380433,-0.047517378,0.034205504,0.0070686224,-0.019336797,-0.10485507,0.051120482,-0.048857767,0.046220288,0.03914314,-0.046055235,0.00559892,-0.058958292,0.028049432,-0.0023187732,-0.011399395,-0.02972609,0.00010637321,-0.055404365,0.062138293,0.007649279,-0.04428621,0.008734544,-0.021046303,-0.10784335,0.02614604,0.062831,-0.0017598665,0.048351623,0.011199956,0.019039819,0.10619802,0.05908028,0.0550109,0.0023291649,0.048920322,-0.011195516,0.006684759,0.072185725,0.07713969,0.09298567,0.078481585,-0.06417018} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:12.688948+00 2026-01-25 01:27:52.000952+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1245 google ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE 1 t 1248 Soho Club unknown Good cocktails and good music good cocktails and good music 5 2024-01-30 18:34:31.336452+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Good cocktails and good music"} {-0.020525476,-0.028943203,0.044908132,0.039269034,-0.15100493,0.095731765,0.08270099,-0.08645946,0.018370353,-0.026496379,0.02162319,0.007958111,-0.040597297,-0.046695303,0.054682247,-0.021834083,0.08497558,-0.0086390525,0.018584298,-0.026829595,-0.1425706,-0.0067488793,0.04021206,0.027492054,-0.019199835,0.0606575,0.0067639514,0.024852905,0.018458923,-0.0025251794,0.015935326,0.13751869,-0.013159433,-0.053605095,-0.07703556,-0.03945503,0.08214877,-0.03033218,0.010522005,0.03909484,0.024903838,0.08000729,0.03767696,-0.00988831,-0.0830862,-0.02971201,-0.017073154,0.0066440715,0.11906397,0.06072939,-0.029093022,0.070036784,-0.0116245635,0.026912106,0.06377895,-0.04847228,-0.082315095,0.0023811786,0.06619534,0.008215994,0.0009842819,-0.012094495,-0.022877503,-0.024778636,0.03942768,-0.060617518,-0.09706142,0.12407809,0.029369475,0.025087494,-0.017790422,-0.02518092,0.05531101,0.0017910877,-0.107367896,0.015690418,-0.046015326,-0.058205534,-0.07076408,0.03437744,0.034969766,-0.043114576,-0.056737505,-0.0687359,-0.021018831,-0.031495985,-0.03523625,-0.043718096,-0.095954,0.00067627005,-0.02833644,-0.0015582173,-0.055237256,-0.088675395,0.071329854,0.013129542,0.02090248,-0.024645276,-0.013489854,0.08832177,0.044617567,0.14824532,0.026268624,-0.049039874,0.007675536,-0.01400362,0.009424241,0.11710718,0.07579031,-0.04276085,0.02226337,0.057436984,0.034628417,-0.0006649275,0.032798257,0.10830413,0.047894347,0.006640716,-0.01238648,-0.038192656,-0.023987614,0.030513944,0.03018131,0.030144645,-0.08540519,0.0051876595,-0.0008915868,-2.6780287e-33,0.001925405,-0.053690195,0.019294674,0.1093664,0.06751107,0.021604149,-0.044776544,-0.078314446,-0.036031652,7.393364e-05,0.009496739,-0.0050565824,-0.047744915,-0.008364541,0.046410486,-0.09028962,-0.060622547,0.024297155,-0.020373717,-0.03008961,-0.07310717,-0.059712995,-0.024156136,0.013874154,-0.009550939,-0.0059010414,0.07509146,0.0036593687,0.034194235,-0.0060548764,-0.0520144,0.080838285,0.006156763,0.04972876,-0.019444743,0.03648702,-0.10079472,-0.018434355,0.042976514,0.045634992,0.056495,0.048735768,-0.047217175,0.017448721,0.023471234,-0.0013588201,-0.043794826,0.061762065,0.0010573943,-0.0014129961,-0.02869589,-0.04193246,0.013688499,0.055020712,-0.07821981,-0.01265161,-0.010817177,0.065854855,0.020794379,-0.10257018,0.0592636,0.06130962,-0.05959407,-0.108481534,0.007677655,0.074841514,0.038393896,-0.049581975,0.05144614,-0.05847063,-0.045105215,0.027977854,0.052995924,0.0108812405,0.012016003,0.019259943,-0.04389115,-0.054949827,0.09450389,0.044915795,0.03892661,0.0046875183,-0.022473615,0.079424076,0.034435794,-0.04771292,-0.0032400955,-0.08474799,-0.018298073,0.007177726,-0.14925376,-0.04454268,0.0936159,-0.041555095,0.0008279044,5.9367474e-34,0.07214874,-0.036445156,0.04028036,0.0383983,0.0052906396,0.024167761,-0.044476897,-0.029610017,-0.00930433,0.041810945,0.043407906,0.03462712,0.09268237,-0.025461107,0.0181464,-0.028740384,0.048145156,0.08717113,0.029186558,0.017242745,-0.035867825,0.023858262,0.03481293,-0.006307121,-0.06219308,0.014967136,-0.038727105,-0.044340268,-0.074287325,0.036004856,0.038854312,0.011595186,-0.05926338,-0.05200887,-0.009025439,0.045555193,0.030895552,-0.07170367,-0.057390947,0.0069431863,0.033060834,0.009785657,0.058262058,0.046016816,0.04648176,0.016927918,-0.07911486,0.05029503,-0.035921313,-0.053857446,0.013926783,-0.0133227855,-0.03351816,-0.008621168,-0.020166345,-0.057027787,-0.016439253,-0.11429932,0.010735597,-0.010767802,-0.09566223,0.12060184,-0.025492236,-0.0004284003,0.03515653,-0.035768222,-0.04850414,0.045106046,-0.040244147,0.007548441,0.0521527,-0.014876979,-0.0047023376,0.06322175,-0.0009193169,-0.037967265,-0.017410837,-0.024830561,0.04314455,0.0120954625,-0.0057974732,0.051170405,-0.107580975,-0.018028025,-0.0069514643,0.03140955,0.07996925,-0.004014525,-0.030874273,0.035144217,0.026661577,-0.053304676,-0.05698034,-0.040773407,0.004873401,-1.4114895e-08,0.03307665,0.0071425964,-0.035007168,0.085691094,-0.07878003,-0.0488678,-0.07201339,-0.025545739,0.0020880827,-0.0019645286,0.0639748,-0.01731002,-0.016544314,-0.006762367,0.008532456,-0.048211686,-0.018336553,0.051075134,-0.039455194,0.068201214,0.073240496,0.025682634,0.117704585,0.03520379,-0.024506198,0.0059836926,0.04389512,-0.03301575,0.03341078,0.056285348,-0.031230023,0.06304506,-0.047162753,0.021960538,-0.06188812,-0.06436692,-0.0050763185,-0.09716822,-0.037321612,-0.026981805,-0.033280794,-0.023706151,-0.07250598,-0.06096207,-0.03794584,-0.031367674,0.09419512,0.054121107,-0.113769926,0.10477327,-0.0033775377,0.052306976,0.032238528,-0.00430458,0.03319447,-0.0258645,-0.07641822,0.07339174,-0.0141925495,-0.058136012,0.016407577,0.06448735,-0.013088518,-0.010904654} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:28.78292+00 2026-01-29 18:36:00.579782+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1650 google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB 1 t 1653 Go Karts Mar Menor unknown Celebramos el santo de la peque con sus primos. Una pedazo de experiencia. Todo el personal es super amable y dispuesto.\n\nLos coches bien mantenidos y cómodos.\n\nSe cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos.\n\nRelación calidad/precio inmejorable.\n\nRepetiremos seguro en futuros cumpleaños y eventos. celebramos el santo de la peque con sus primos. una pedazo de experiencia. todo el personal es super amable y dispuesto. los coches bien mantenidos y cómodos. se cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos. relación calidad/precio inmejorable. repetiremos seguro en futuros cumpleaños y eventos. 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E4.03": "Se cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos.", "O1.03": "Los coches bien mantenidos y cómodos.", "P1.01": "Todo el personal es super amable y dispuesto.", "R4.03": "Repetiremos seguro en futuros cumpleaños y eventos.", "V2.04": "Relación calidad/precio inmejorable.", "V4.03": "Una pedazo de experiencia."} {-0.00060274237,0.120318,0.01371066,-0.049067844,0.0016357416,-0.021681938,0.14206512,0.038189355,-0.016364776,0.024723342,0.09641247,0.04286362,-0.039189707,-0.011680267,0.022210058,-0.024104336,-0.036221977,0.018005846,-0.0055620056,0.079682924,0.09891716,-0.045671362,-0.042865492,0.08639638,-0.12723511,-0.00015504417,-0.031005684,-0.014718068,-0.042092223,-0.036774337,-0.033542473,-0.0150380945,0.12452874,-0.03746919,-0.06684905,0.047802635,0.0009513222,-0.045664392,-0.06883695,0.06600939,-0.0658372,-0.05574258,-0.04557871,-0.018903853,-0.051689655,-0.09687039,0.040084746,0.043622583,-0.015592555,-0.08277975,-0.06430582,-0.040666834,-0.00061529427,-0.016530983,0.018826762,-0.006599379,-0.041682426,-0.07530931,0.035164714,-0.0031051657,-0.027390813,0.069981515,-0.06827991,0.035840385,0.038892865,0.03128338,0.07714979,0.0033075514,-0.0666916,0.08324658,0.049069997,-0.033314906,0.07883579,0.048177216,0.043691736,-0.003156971,-0.03232047,-0.030351873,-0.0585843,-0.045181703,0.012857754,-0.02868081,-0.006367023,-0.015601258,0.015352093,0.04576219,-0.018416474,-0.018595703,0.028817935,-0.062460806,-0.0366438,0.026748804,-0.05094973,-0.052336242,-0.04860192,0.034547694,0.015039811,-0.086815886,0.030151479,0.0054337876,0.038340673,0.038973007,0.059190806,0.022879632,-0.019398466,0.007757363,0.0020422668,-0.0036939825,0.028116541,0.07547973,-0.10427367,-0.074208885,-0.026312683,-0.016615076,-0.09182312,-0.028119357,-0.0637341,-0.03573722,0.060085293,-0.08340775,0.001126758,0.020518899,-0.009522022,-0.057179134,-0.03212919,-0.03536305,0.048125345,1.1970586e-32,-0.015847715,-0.022833653,0.058613986,0.046731323,-0.027215192,0.02008489,0.008489209,-0.07314535,-0.0071664294,-0.008566427,0.016756,0.12024348,-0.009239025,0.05952985,0.057483204,0.026067838,-0.05882088,0.0010627927,0.06131391,0.059284233,0.0043802503,0.027995197,-0.053298842,0.025238305,0.0045219925,0.049571797,0.007708044,0.021744322,-0.051968146,0.035617888,0.027616158,0.07302108,0.032498546,-0.025973605,-0.031821672,-0.051150773,0.04968599,-0.004880681,0.01969224,-0.028430203,0.032707896,-0.0060877646,0.058447827,0.024655279,-0.036170226,0.017822772,0.08233308,0.057738725,-0.0008238082,0.035817742,-0.05984967,-0.018026844,-0.037251648,-0.04860517,-0.057654567,-0.01789558,-0.04731232,0.020471847,-0.066558346,-0.0690317,0.049700223,-0.010457661,0.044299264,-0.06450581,0.00035688552,-0.103299655,-0.007510801,0.05331469,0.1124336,0.037396654,-0.12285442,-0.02667681,-0.029049616,-0.012494653,0.04442261,0.033719264,-0.0019668299,0.021209532,-0.031208828,0.046195716,-0.09130846,-0.00388105,0.022334658,0.015435003,0.14543474,0.07020697,0.0037646322,0.02578522,0.035372674,0.11449176,-0.02782161,0.052484035,0.07470976,-0.026970001,-0.019645007,-1.3372488e-32,-0.011174785,0.045156807,0.022152469,0.06741709,0.022130657,-0.00509159,0.005076046,0.0004123475,-0.04384087,-0.039905895,-0.1325927,-0.10365083,0.104301624,-0.06508901,-0.06594059,0.07945958,0.0043386742,-0.1429623,-0.0826405,-0.03503421,-0.002636891,0.07996254,0.037942838,0.018413143,0.007625814,-0.0643264,-0.016573437,0.040407605,-0.07041338,-0.0106457975,0.039909545,0.018549548,0.008002767,0.061185163,-0.04412758,0.007518613,-0.0052984464,0.013974082,0.03885375,0.041799136,-0.005570729,0.029222697,-0.008726899,0.020156248,0.016168179,-0.009152357,0.01892953,-0.16003326,-0.05192564,-0.042734433,0.016687095,-0.048955765,-0.051207673,-0.05641784,0.03823949,-0.040855892,-0.031688735,-0.06058741,-0.027139997,-0.0272418,0.073082104,0.035178613,-0.097914524,0.04894542,0.03952424,0.004443913,-0.04034983,0.017613681,-0.0043251757,0.035147857,0.060117867,-0.04585857,-0.09190873,-0.029403344,-0.07096651,-0.01911957,-0.014237968,-0.016945526,-0.010045857,0.028319607,0.032539625,-0.021777814,-0.048889227,-0.10802652,-0.029729132,0.045750637,-0.06557284,0.06602406,-0.017840583,0.011436963,-0.045148835,0.044426657,-0.111057706,-0.016220685,0.016827488,-5.081009e-08,0.030972445,-0.040154617,0.016075704,0.019940002,-0.018141838,-0.063174225,-0.0076813786,0.03728563,0.03496772,0.08659038,-0.012274955,-0.0208272,0.027013667,0.057616044,0.054646496,-0.012813313,0.112849765,0.10404451,-0.07842173,-0.09431039,0.028110318,-0.03949757,-0.044795472,0.042647544,0.00316139,-0.02297456,-0.017524187,-0.022482032,-0.09087421,0.05950383,-0.02406963,-0.03741793,-0.036191914,-0.04365663,0.07403613,-0.012183276,-0.041277632,-0.0015735755,0.042840865,-0.011737865,0.09078073,0.0004501332,-0.05826419,0.075961374,-0.07899427,-0.091426216,0.011465783,0.008487857,-0.0010924946,0.0293081,0.017138002,-0.050181624,0.0681886,-0.011059913,-0.016515125,0.010862254,0.049161106,0.10223206,-0.026352385,-0.005438287,0.052057553,0.07759179,0.046119597,-0.067198634} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:33.275209+00 2026-01-30 02:01:10.180933+00 22c747a6-b913-4ae4-82bc-14b4195008b6 334 google Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB 1 t 337 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Entregamos el coche lavado con el depósito lleno, impecable. Antes de llevárnoslo hice un vídeo del estado del auto. Al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfecto en la chapa en el maletero . Le dije que teníamos fotos hechas cuando lo recogimos y que había ese y otros 2 pequeños arañazos ( pequeñísimos ). Pero estaban fotografiados. Al ver que teníamos fotos, la cosa cambió. Son unos jetas . Querían cobrar del seguro el rasguño. Desde luego no son de fiar. He alquilado otros vehículos en otras compañías y no he tenido estas murgas . No me ofrecieron ninguna confianza . Tanto es así que antes de que nos dijeran lo del rasguño ya me comenté a mí marido : estos no s van entregamos el coche lavado con el depósito lleno, impecable. antes de llevárnoslo hice un vídeo del estado del auto. al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfecto en la chapa en el maletero . le dije que teníamos fotos hechas cuando lo recogimos y que había ese y otros 2 pequeños arañazos ( pequeñísimos ). pero estaban fotografiados. al ver que teníamos fotos, la cosa cambió. son unos jetas . querían cobrar del seguro el rasguño. desde luego no son de fiar. he alquilado otros vehículos en otras compañías y no he tenido estas murgas . no me ofrecieron ninguna confianza . tanto es así que antes de que nos dijeran lo del rasguño ya me comenté a mí marido : estos no s van 1 2025-10-27 01:27:48.341195+00 es v5.1 A1.02 {} V- I2 CR-N {} {"A1.02": "Al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfe", "A1.03": "Son unos jetas. Querían cobrar del seguro el rasguño. Desde luego no son de fiar. He alquilado otros", "O1.01": "Entregamos el coche lavado con el depósito lleno, impecable. Antes de llevárnoslo hice un vídeo del "} {0.008403404,0.060832392,-0.021335429,-0.06667133,0.027433317,-0.038492773,0.061855722,0.0344431,0.015367473,0.009925411,0.07853561,-0.052782033,0.019868355,0.048480783,0.02646055,-0.004081156,0.034849107,0.0494261,-0.06246253,0.05937527,0.060175143,-0.12959859,-0.020630809,0.00743641,-0.09559739,0.024430651,-0.010908977,0.03786447,-0.08762956,-0.0759381,-0.019604156,0.012836966,0.039141275,0.008282323,0.0065030674,-0.04857421,0.003920919,-0.059570663,-0.0417711,0.0720547,-0.06662492,0.031915262,-0.012556809,-0.049511466,-0.01074093,-0.014874606,0.044463206,0.015694268,0.08734555,-0.07526538,-0.09366955,0.02889354,-0.05945526,-0.008362263,-0.009032733,-0.05993543,-0.009135106,-0.032510597,0.07726883,-0.0040001296,0.06955458,0.004341142,-0.01926459,0.048391562,0.011120293,-0.035599228,-0.012908624,-0.03570025,-0.047156848,0.046327736,0.10654456,-0.02006271,-0.05047193,-0.001292974,-0.118993886,0.06525555,0.018653596,0.028386867,-0.057399977,-0.09348742,0.043661725,-0.01450865,0.065260574,-0.08143843,-0.020023646,0.0078978725,-0.033986825,0.017349068,-0.042441484,-0.03024656,-0.033022255,0.07222844,-0.09585104,-0.057361707,0.015387133,-0.033817455,0.042138863,-0.018580321,0.01204938,-0.022527738,0.13631387,0.007538363,0.06128732,-0.003045656,-0.015738524,0.07283085,0.032064736,0.0025413283,0.052262053,0.041971937,-0.07175155,-0.0100348955,-0.05933998,-0.017208988,-0.10800194,-0.014880913,-0.08801459,-0.03504722,-0.044699457,-0.028124712,0.06088393,-0.06290792,-0.018661853,-0.04594258,0.03283749,-0.121312,0.04814819,1.4359407e-32,0.0040493975,-0.00097440794,-0.015716327,0.0065494147,0.10166734,0.04441052,-0.038326234,0.0330771,-0.06418057,0.03303902,-0.07890284,0.020797053,-0.08166095,0.007016733,0.0648357,0.045682903,0.025833465,-0.09174223,-0.0039294614,0.025649717,-0.012295381,0.0058468822,-0.015888719,-0.010634424,-0.015594803,0.10845171,0.032543615,-0.080257,-0.038338836,0.043407027,-0.055682316,0.052252956,0.043565255,0.00908922,-0.026870593,-0.07524666,-0.023138095,-0.007930236,-0.113732554,-0.045514792,0.01859312,0.02465363,-0.07908664,0.075372286,-0.009244074,0.05729665,0.029595293,0.047505327,0.015078815,0.03681225,-0.026936423,-0.028672693,-0.045111533,-0.06518867,-0.02339304,0.05046967,-0.071647346,-0.020379247,-0.035015754,-0.06442732,0.046663377,0.039627135,0.014113569,-0.0029390627,-0.06348312,-0.022560861,0.034788795,0.044833973,0.14137855,0.09131926,-0.025735712,-0.015971342,-0.036270354,0.00854402,0.05630837,0.030271407,0.010961509,-0.011393444,-0.0843792,0.08608204,-0.032273933,-0.0036946172,0.05710461,-0.006936626,0.012350541,0.06272602,0.06612882,0.026885327,-0.045424186,0.13289814,-0.033491146,0.11860444,0.04676026,-0.0438672,0.017959213,-1.4242166e-32,0.020353384,0.06351508,0.014265347,0.003913402,-0.03826008,0.0050534345,0.00775662,0.019909142,0.07036477,-0.08686502,-0.067845084,-0.09349172,0.029411357,-0.071401164,-0.08867938,-0.00089461246,-0.0065804473,-0.121964104,-0.13984549,-0.033901162,-0.011253681,0.07414405,0.04599898,-0.01300283,-0.024675798,-0.025950179,0.025129117,0.015093742,-0.05696605,0.01924518,0.058746155,0.0039527966,0.042034578,0.038603015,0.011446598,-0.0122854905,0.06934714,0.010522381,-0.047558367,0.07915553,0.0029395034,0.100835264,-0.023815943,-0.02024717,-0.055192538,-0.030018002,-0.013580553,-0.089093626,0.021829883,0.015724739,0.06396252,-0.089885026,-0.08391555,0.03432857,0.06991611,-0.041448694,-0.005555603,-0.026160307,-0.041850023,0.041337796,0.024091208,0.019521508,-0.11575147,-0.04754737,0.043918576,0.013357977,-0.02652207,0.03540512,-0.0052348757,0.06551167,0.06810452,-0.06650003,-0.009887018,0.04524001,0.025089052,0.01439758,-0.036642607,0.04112387,0.041684657,-0.015698448,-0.009069169,-0.058841906,-0.02603306,0.0113672,0.027583238,0.010494929,-0.03358618,-0.031305782,-0.034157492,0.035219498,0.026706772,0.044584244,-0.0366221,0.015172819,-0.05690435,-5.486957e-08,-0.007571332,-0.011884393,0.024157025,-0.0139967,0.04831774,-0.048002303,0.019377543,0.056618143,0.019122474,0.002442752,0.07687997,-0.026848173,-0.0758583,0.048791807,-0.034216672,0.05915042,0.0687427,0.0089950105,0.0030527348,-0.053649627,0.04562734,-0.03727848,-0.055429608,-0.01358798,-0.02247192,0.0027744966,-0.041840393,-0.029350871,0.026854707,0.030254396,-0.008448953,-0.059180446,0.07881862,-0.07206243,0.00058383984,-0.0713105,-0.021651851,0.010788831,-0.024428742,-0.074909166,0.10103649,0.0024686472,0.015420916,-0.02692097,-0.043313142,-0.0342774,0.109822914,-0.00841554,-0.031238489,0.07545274,-0.05158569,-0.07090406,0.06033267,0.078185834,0.008036901,-0.096472725,0.10473225,0.047462862,0.006171346,0.02391673,0.07186543,0.078082435,-0.05125989,-0.05388006} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:27:13.400576+00 2026-01-25 01:27:50.999286+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 342 google Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB 1 t 345 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van Clickrent. Kennelijk was Localrent slechts een tussenpersoon. Ik was daar behoorlijk kwaad om geworden. Clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. Hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. Uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden niet moeilijk om wat zand in het interieur. ik huurde een auto via localrent. bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van clickrent. kennelijk was localrent slechts een tussenpersoon. ik was daar behoorlijk kwaad om geworden. clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. maar service van clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. ze deden niet moeilijk om wat zand in het interieur. 4 2025-10-27 01:27:48.341262+00 nl v5.1 P1.02 {} V- I2 CR-N {} {"A1.01": "Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden nie", "P1.02": "Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik e"} {-0.1041452,0.13101247,0.0040225685,-0.075823784,-0.049238812,-0.04727633,0.07612295,0.050432306,0.010892365,-0.044225007,0.007891873,0.0058797398,0.022982396,-0.057922844,-0.049960278,-0.064603046,0.00223234,0.03489734,-0.036336172,-0.004430299,-0.009267213,-0.02895514,0.09233528,-0.05972207,0.045144584,0.009296135,0.03773311,-0.019060638,0.037684936,-0.02271739,0.07936996,0.030209003,-0.0668594,0.019670233,0.030518897,0.016473697,-0.022435816,-0.027163291,-0.037518583,0.04904116,0.04666557,-0.025949223,-0.152458,-0.06682896,0.025773544,0.06104653,-0.00377107,0.043290425,-0.089380614,-0.002613101,-0.03910787,0.040235497,0.080060124,-0.025211079,-0.051116344,-0.09434136,-0.02936701,0.07232499,0.026191942,0.033988014,-0.03115113,-0.007997151,-0.041767698,-0.01716561,0.006957751,-0.022547716,-0.046371587,0.00959551,-0.12589939,0.0021386582,0.040474247,-0.031477805,-0.06803998,0.04817607,-0.022474451,0.04690222,0.016159892,-0.046338625,0.029853972,-0.058744315,0.054309655,-0.048544105,0.042549487,-0.009576998,0.050421912,-0.021040492,0.05163176,0.034065653,0.020334836,-0.009366393,0.053655133,0.02809277,-0.043297596,0.014126047,0.080476336,-0.01972559,0.0012016247,0.051222507,-0.023329044,0.03502842,0.10890995,-0.00036323196,0.07611933,0.003418773,-0.12500453,-0.032693565,0.074683554,0.0021018796,0.050550606,0.061261658,-0.087405294,-0.06694675,0.0025348633,-0.12257078,-0.0144176,-0.032698605,-0.07950991,-0.042145517,0.07884605,-0.002874971,0.0039305445,-0.025515031,-0.052320734,0.05410786,0.025480345,0.06148086,0.04254543,2.3209785e-32,-0.042466994,0.022903144,-0.06911061,-0.082889356,-0.0291618,0.0399173,-0.066104285,0.036073092,-0.07972271,-0.0552367,-0.113232695,-0.034742944,-0.033967547,-0.04561629,-0.017416837,-0.036363017,0.018984001,0.03020952,-0.021428004,0.05568626,0.09071511,0.013737987,0.05367126,0.051787812,-0.044966184,-0.043211896,-0.059881564,-0.10436314,0.02011099,0.041452345,0.019100066,-0.1223342,0.0042511118,-0.0041377554,-0.12907244,0.044657227,0.0027931973,-0.049971804,-0.048440844,-0.07411327,-0.008363404,-0.026873708,0.015600111,0.05861536,-0.018336792,0.08864108,0.038990345,-0.028642382,-0.008112013,0.006195345,-0.043651115,-0.0504672,-0.09856068,-0.0061133862,0.029429756,0.06396353,-0.011182054,0.018874153,0.08448328,-0.0074865976,-0.032448284,0.018413214,0.060305793,-0.013980293,0.06359436,-0.089260824,-0.01908712,0.019998958,0.035202876,0.0017756786,-0.0085966885,-0.028574688,0.13895814,0.0490942,0.008553087,0.05177063,-0.0034755326,0.0049043535,-0.03351654,0.043635055,-0.014292351,-0.089380756,-0.08402427,-0.031176558,0.0759682,-0.022862148,0.045441944,-0.04502927,-0.030234216,0.116911285,0.050033536,0.012363885,-0.05453898,-0.036549173,-0.042012807,-2.0581423e-32,0.014197467,0.10183157,-0.022732079,0.03577614,-0.039521113,0.054599755,-0.009579644,0.021372275,-0.02795869,-0.012268956,0.04920731,-0.10417858,0.1278939,0.020885313,-0.083948724,-0.023482163,-0.029233739,0.06573621,0.053087648,0.018958285,-0.048193503,-0.008357895,-0.007925515,0.14685982,-0.013981817,0.010735075,0.008815583,-0.0012399943,-0.022067128,-0.043472778,-0.037522137,0.04861917,0.0007369105,0.07058984,0.012935356,0.067232355,0.10605631,0.028122691,-0.06489299,-0.025636258,0.002072443,-0.017505124,-0.101953775,0.0081852935,0.010783574,-0.043147188,-0.06369146,-0.007212683,0.009584464,-0.044521917,0.08031909,0.12150814,0.019122051,-0.009258569,0.027283564,0.029500687,0.0381531,-0.07087175,-0.065448746,0.013888315,0.008733144,-0.028537042,0.05361295,0.0111464355,0.050600056,-0.07156147,-0.017004479,0.097145274,0.057201557,-0.04413894,-0.045576863,-0.0084002,0.022763506,-0.05386547,0.0134385675,0.005233501,0.03864955,0.018774316,0.041971035,-0.08977646,-0.057015438,0.013068821,-0.032044347,-0.038188517,-0.044139516,-0.010827854,0.037888553,-0.013367038,-0.0057645934,-0.021948578,-0.0046140566,0.0720133,-0.020132026,0.06556855,-0.027666207,-6.353493e-08,-0.004060822,-0.007549998,0.046515487,0.022361552,0.107133254,-0.11070186,0.040401146,0.06310589,-0.078446664,0.03477918,0.013637259,0.035851303,-0.06470538,-0.016611043,0.041509453,0.03788845,-0.032637235,-0.0037582347,0.010082553,0.007599404,0.092528656,0.025017463,-0.023114687,0.026068851,0.0029656605,0.0016114393,0.0019897823,0.025087941,0.06090029,-0.08827282,-0.04310727,-0.01218611,-0.032179873,-0.056923933,-0.013260051,0.029121524,-0.08353866,0.012243959,-0.054794032,0.018985756,0.060084898,-0.027781297,0.054828666,-0.05259715,-0.026184935,0.0246544,0.0015061334,-0.035801154,0.056134555,-0.046660528,-0.08593655,0.03442937,0.068578936,0.05502299,0.013142967,-0.037877165,-0.07182631,-0.029395547,0.016313942,0.037146304,0.007800772,0.058185965,-0.046328932,0.0009911221} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:26:48.839053+00 2026-01-25 01:27:51.022737+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 351 google Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB 1 t 354 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches. El personal amable y profesional. El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche. todo muy bien. además es la empresa más económica que he encontrado de alquiler de coches. el personal amable y profesional. el único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche. 5 2025-10-27 01:27:48.341309+00 es v5.1 P1.03 {O1.01,A1.01} V+ I2 CR-N {} {"J1.02": "El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resu", "P1.03": "Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches."} {-0.013002698,0.03567387,-0.030060329,-0.048306625,-0.029900774,-0.010784043,0.12683801,-0.005783587,-0.03276418,-0.030566884,0.061971642,-0.021759564,-0.061678167,-0.041212033,0.043884575,0.017793303,0.018889353,-0.023082107,-0.0074508,0.028767,0.061814908,-0.040545687,-0.06679967,0.0635981,-0.056568775,-0.04018863,-0.050302643,0.036168568,-0.0723086,-0.08156327,-0.0046524075,-0.0016630932,0.075569995,0.019647527,0.027951742,-0.010322396,0.02633374,-0.04456197,-0.044599537,0.034864128,-0.109869145,-0.0020756281,-0.071162485,-0.032207295,-0.057047658,-0.07397808,0.06544784,0.053563792,0.026086442,-0.007844493,-0.05284718,-0.0041292575,0.028341765,-0.07078911,0.0063080234,0.044173483,-0.044310745,0.00092065654,0.025751475,0.01678147,0.009367957,0.010177283,-0.06037209,0.06231148,0.057011846,-0.10183207,0.029298523,0.003022051,-0.07735556,-0.0073442636,0.071756646,-0.14107697,-0.042106867,-0.013539981,-0.045672912,0.07882962,-0.021489719,-0.004863826,0.08590144,-0.007019297,0.07147736,-0.02434175,-0.096377455,-0.018907238,-0.013549395,-0.04909566,-0.01671277,-0.03914313,0.06920511,-0.0060426663,-0.040861003,0.024490139,-0.009867949,-0.044060912,0.0021066428,-0.021704338,0.057605833,0.037407104,-0.06672735,0.015001203,0.054569177,0.100113116,0.051240005,0.05302705,-0.09837402,-0.014797806,0.043820217,0.019085536,0.063990176,0.06726787,-0.14068492,-0.015930377,-0.030397668,-0.060170446,-0.0046945233,0.04614845,-0.102256015,-0.06444731,-0.0098057715,-0.09116504,0.03525606,-0.0028278725,-0.08666795,0.02041339,-0.030569902,-0.09784709,0.060028255,1.1177799e-32,0.008540159,0.007992761,0.047567517,0.08500691,-0.02144657,0.08986254,-0.04707214,0.022029223,0.0040454734,0.009662682,-0.07697608,0.10051443,0.008903789,0.13143723,0.031965233,-0.044965018,-0.007821318,-0.022248931,0.06097279,0.048756007,-0.019886656,-0.01792313,-0.1075041,0.003918377,0.041260075,0.011020504,0.015263268,-0.028998254,-0.037230514,0.06873561,0.006205315,0.047996223,-0.016790261,-0.016563646,-0.056208503,-0.028018797,-0.010470644,0.056096323,0.034574643,-0.037401076,-0.0054486836,0.01766429,-0.021540761,-0.0031818037,-0.054552894,0.040096857,0.084501505,0.039772607,0.086329035,0.013676233,-0.073282346,-0.0147394445,-0.056299895,-0.026312966,0.033572674,-0.0012705687,-0.07022213,-0.02357398,-0.033210814,-0.062503,-0.056007043,0.029143836,-0.01670902,-0.0080931755,-0.041726973,0.019728297,0.021412589,-0.018416233,0.06118844,0.046230268,-0.07341263,0.0026966813,0.0030223837,0.018553184,-0.016845994,0.02788967,-0.05844768,0.004544765,-0.029735934,0.048521064,-0.0129955,-0.04072729,0.124667645,0.018450266,0.074280396,0.036237676,0.049950916,0.076547295,0.025505772,0.15395965,-0.04293395,0.08505961,0.040954936,0.050213903,0.07636085,-1.4659323e-32,-0.017897276,0.0035560406,-0.0067916154,-0.07011887,-0.032377966,0.09278885,0.052490745,0.012804391,-0.01777448,0.001783184,-0.07157077,-0.03176274,0.07032505,-0.016342811,-0.026525106,0.05073391,-0.039724365,-0.08613864,-0.06841068,-0.028999332,0.024982192,-0.0014589715,0.0952038,-0.008054075,-0.015239665,-0.06998001,-0.025337676,-0.03611155,-0.057840336,0.006388136,0.053190533,0.0021729835,0.0057776966,0.09595304,-0.0536405,0.02088696,-0.026227321,0.027952138,0.00017028586,0.024764458,-0.014936782,0.014102719,0.07518642,-0.0096170455,0.08292401,-0.045229048,-0.036369745,-0.23090695,0.010746236,-0.0533842,0.026217591,-0.045212742,-0.06548159,-0.03503918,0.044999816,0.037739657,0.018942965,-0.11975331,-0.10225889,-0.06330623,0.0333704,0.07811357,-0.0032447772,-0.010326217,0.046300057,-0.0005575841,-0.01355706,-0.025118336,0.048604246,-0.036569186,0.071790926,-0.057364564,-0.047352713,0.027534114,-0.032124754,-0.02606563,-0.059006616,0.033773404,-0.023934146,0.041215472,-0.0068906816,0.041492686,0.04225762,-0.07314137,-0.030398544,-0.0029248267,-0.030266065,0.009845743,-0.0260713,0.03787334,-0.014483832,-0.014397336,-0.081292704,-0.050704908,0.0063364077,-5.4640008e-08,-0.009359165,-0.06274467,0.08390351,0.009286855,-0.034423828,0.0019705563,0.009338008,-0.017315907,0.04236407,0.0598718,0.051310655,-0.007369975,-0.07136085,0.09136337,0.00016613732,-0.017170774,0.059663583,0.06717693,-0.010618362,-0.06318587,0.037278365,0.027484527,-0.013608907,0.02007829,0.010033765,0.047256377,-0.052941408,-0.022894317,-0.016672682,0.075334035,-0.050713684,0.0094492445,-0.027629502,-0.10800956,-0.0895386,-0.048840877,0.014799529,-0.007799261,-0.09041894,-0.03131555,0.047802817,0.047241744,-0.053676058,0.007982572,0.056363583,-0.07606024,-0.020547707,-0.029762808,-0.012826269,0.02942391,-0.01739186,-0.018759714,0.067254685,-0.030668374,-0.006374717,-0.07588702,-0.080952026,-0.012974602,-0.07963042,-0.0490756,0.04709996,0.01562999,-0.018967304,-0.008886533} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:26:29.024997+00 2026-01-25 01:27:51.051485+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1696 google ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB 1 t 1699 Go Karts Mar Menor unknown El personal del circuito es un encanto,los karts siempre a disposición del cliente y lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo.\nA parte son tan simpáticos que te dejan la gran mayoría de veces unos minutillos más en la pista si no hay gente esperando para entrar.\nMuy satisfecho,lo recomiendo el personal del circuito es un encanto,los karts siempre a disposición del cliente y lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo. a parte son tan simpáticos que te dejan la gran mayoría de veces unos minutillos más en la pista si no hay gente esperando para entrar. muy satisfecho,lo recomiendo 5 2025-06-04 00:52:39.833374+00 es v5.1 P1.01 {A1.03} V+ I3 CR-N {} {"P1.01": "El personal del circuito es un encanto,los karts siempre a disposición del cliente", "V1.02": "lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo", "V4.03": "Muy satisfecho,lo recomiendo"} {-0.029397054,0.026593532,-0.020141505,-0.087974496,-0.11607084,-0.012078936,0.081573166,0.07557195,0.010030235,0.005674296,0.1218175,-0.0068199253,0.015796095,0.010364771,0.09253553,-0.00082223164,-0.008389362,0.021380696,0.019214377,0.010437268,-0.010059876,-0.10849095,-0.1250754,0.05293744,-0.07868188,-0.03447489,0.07092436,0.036335874,-0.07306335,-0.10836559,-0.08000758,0.009788355,0.09731412,-0.020816533,-0.0389681,0.0016427067,-0.035288457,-0.017315783,-0.064380415,0.024227174,-0.05684115,-0.061955053,-0.02851527,-0.009476011,0.034603857,-0.022255357,-0.041714802,0.031650346,0.0026784965,-0.05497344,-0.0341899,-0.013528962,-0.00071129174,0.028880594,-0.02219881,-0.050160874,-0.03751995,0.10432637,0.08654324,0.080857076,0.077060096,0.0058045974,-0.046198767,0.05623468,0.06152064,-0.0045839194,0.034784414,0.006482044,-0.05930084,0.050174315,0.10600034,-0.13070986,-0.036912296,0.022535227,0.009238843,0.01281513,-0.025333105,0.010392915,-0.059880815,-0.002308658,0.02264212,0.04005183,-0.090700276,-0.03580892,-0.018182557,-0.0075957724,-0.039541844,-0.022061378,0.014680345,-0.032170534,-0.0007212211,0.06688571,-0.04445345,-0.075787246,-0.009649187,-0.0066058617,0.029010605,-0.0488018,-0.025436413,0.0099575715,0.12538195,0.0080701625,0.010040533,0.009037284,-0.018450232,0.0440027,-0.0061164172,-0.021354932,0.008118551,0.050833102,-0.080845356,-0.010854657,-0.059327204,-0.034558564,-0.0005698594,0.015249665,-0.003550677,0.06558778,0.05757942,-0.0020163509,-0.047178544,-0.04269171,-0.056663945,-0.030883314,-0.0049831658,-0.051093463,0.076689444,1.4531037e-32,-0.07965805,0.011588708,-0.048075005,0.04150124,0.02245698,0.005306399,-0.0072915195,-0.10096545,-0.09363006,-0.017714225,-0.023113301,0.08583048,-0.0019182431,0.044901505,0.12859829,0.0025111944,-0.014785136,-0.048906267,0.09879048,0.011746445,-0.01239479,-0.08256528,-0.012360632,0.05412479,0.046285853,0.054942276,0.034200612,-0.0018860158,-0.07926441,0.014737203,0.015396432,0.021440454,0.037029587,-0.017551117,-0.0719092,0.016432302,0.017385991,-0.003312919,-0.042837292,-0.048494946,-0.045923743,-0.00555074,-0.016244095,0.036903974,-0.077566676,-0.0012729118,0.03403824,-0.0065960395,0.009512603,0.071078025,-0.12808765,-0.05042969,-0.023277875,0.003190453,0.005330579,0.04541749,-0.022492247,-0.0026107163,-0.008000776,-0.03902379,0.0051453384,0.03718849,-0.004426936,-0.025710015,-0.055894684,-0.0749139,0.016024295,-0.025533743,0.10955429,-0.022294989,-0.126631,0.027579585,-0.072997056,-0.004567139,0.011935695,0.011737878,-0.08603899,0.081147276,-0.024887888,0.010854278,-0.042368215,-0.04529499,0.034538385,0.08830892,0.10732109,0.075393654,0.044451445,0.009558911,-0.007650473,0.1701888,0.0033840884,0.10698665,0.026085725,0.062063906,0.055868063,-1.5607018e-32,-0.0218608,-0.0051682563,0.08803722,0.047786746,0.015764108,0.0013392379,-0.008609438,-0.06741954,0.0055264486,0.010134502,-0.034964994,-0.05620351,0.06246419,-0.021283543,-0.0012856593,0.034198124,-0.013962595,-0.06293367,-0.04942723,-0.070988834,-0.011995703,0.04669108,-0.00022658733,-0.03329271,-0.02635489,-0.07257214,-0.08462644,0.024035338,-0.10631947,-0.0009890823,0.029846705,-0.045653723,-0.003248117,0.05111903,-0.064245395,0.01082937,0.085618824,0.097560495,-0.017958444,0.035305295,0.0008424089,0.0690806,-0.021492286,0.0105106905,-0.08125831,0.0036404927,0.082395904,-0.16487852,-0.046055105,-0.03387079,0.045156192,-0.011730356,0.01122744,-0.039202042,-0.0028636055,0.003252557,0.019752203,-0.0075594783,-0.08458428,-0.039815735,0.08479748,-0.06915905,-0.02497681,-0.056255244,0.079692475,-0.025157781,-0.0010751381,0.040687736,0.037509546,0.0041919025,0.022287823,-0.0024743932,-0.024036784,0.005942387,0.015719347,-0.06982639,-0.070278384,0.0302197,0.0066794557,-0.029260974,0.037820637,-0.026636848,-0.040362,-0.069065675,0.0059184786,-0.030213315,0.018653475,0.04672418,0.015825829,0.0042781136,-0.042079072,0.0906424,-0.062371865,-0.025489366,-0.03717717,-6.162345e-08,0.009876446,-0.035480205,-0.04658589,0.027871717,0.008379548,-0.027534919,-0.012596213,0.014790875,-0.026025267,0.054426387,-0.007985382,-0.014299765,-0.04820429,0.06986875,0.01076586,0.054073732,0.09556173,0.10020146,-0.008208702,0.031000989,0.04702496,-0.006729623,-0.039232817,0.059164006,0.079440214,0.0065017915,0.01102848,0.058514163,-0.007387871,0.014606347,-0.07202293,-0.019635081,-0.0025300458,-0.03821143,-0.05104006,0.0047312076,-0.053164177,0.037447106,0.022173112,-0.0032019224,0.0063305655,-0.03993592,-0.09427613,0.05213394,-0.11100043,-0.060736787,-0.016726995,-0.03824684,-0.0093383,0.030777466,-0.070881195,-0.08335793,0.06136453,-0.015923372,0.050852295,-0.027614636,0.08582996,0.041197516,-0.025549352,-0.019318156,-0.013016,0.110163055,0.01338641,-0.07907966} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:48.044178+00 2026-01-30 02:01:10.356316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 287 google Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB 1 t 290 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada.\nPrimero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. Muy bordes y te castigan por no coger su seguro. Muy mal. aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada. primero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. muy bordes y te castigan por no coger su seguro. muy mal. 1 2025-10-27 01:27:48.340848+00 es v5.1 V1.01 {V1.03} V- I3 CR-N {} {"P1.01": "Aunque los conductores del shuttle son muy amables", "V1.01": "Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano arm"} {0.027011497,0.06779314,-0.01635165,-0.09240887,-0.070461676,-0.020529222,0.105738714,0.04081695,0.024081193,0.042111985,0.10050801,-0.011189252,0.0318005,0.015532273,0.04993344,-0.0059109963,0.035546202,-0.021670686,-0.039079458,0.015408187,0.10763102,-0.06300675,-0.093094245,0.07847832,-0.1042133,-0.020030864,-0.015049787,0.013271494,-0.04160916,-0.0809098,-0.04002522,0.05097418,0.04207928,-0.04309196,-0.007826089,-0.014603731,0.035673033,-0.104605734,-0.0070288875,0.08589911,-0.024386367,-0.0059472476,-0.07932622,-0.011685396,-0.05538253,-0.06133103,0.06430417,0.02763682,0.052158322,-0.093035385,-0.066471234,0.04953339,-0.033038404,-0.062086068,-0.05475785,-0.01405238,-0.019049859,0.03163373,0.12580097,0.02387515,-0.009592626,0.048039656,-0.032963917,0.035214286,0.00978108,-0.07473436,0.033719707,-0.035106137,-0.033472177,0.04930624,0.10072576,-0.086707644,-0.0013060444,-0.036903687,-0.023295771,0.03731257,-0.0033144488,-0.0116443755,-0.019408248,-0.114787295,-0.023998907,-0.09546844,-0.0077725435,-0.045147337,-0.0058357553,-0.01995829,-0.013944614,0.048580118,0.040847752,-0.0039089653,-0.00010499087,0.024871605,-0.09833966,-0.002939773,0.050571993,0.051223446,0.055439398,-0.007463587,-0.028580224,0.0357031,0.11992378,0.08076275,0.0600735,0.055860236,0.020203458,0.05260038,0.104562305,0.014019451,-0.029809056,0.031436585,-0.070931815,-0.025242295,0.0051944177,-0.100332655,-0.10637043,0.05493532,-0.03847811,-0.0502268,-0.037223935,-0.065482296,0.08268321,-0.01602624,-0.014914971,0.007837873,0.018441672,-0.042520013,0.09088654,1.7863172e-32,-0.03566205,-0.006819185,0.0003478483,0.020143583,0.04463424,0.026620358,-0.09178887,0.066539496,-0.004347625,-0.011300979,-0.04076208,-0.055894636,0.033726096,-0.043309525,0.040466283,0.020793725,0.058106676,-0.06972616,-0.010556488,-0.025544757,-0.010061517,-0.043554932,-0.009295288,-0.01191346,-0.020529164,0.089965016,-0.021619678,-0.011654445,-0.03416862,0.06757713,-0.023152739,0.062281534,0.022160599,0.020176573,-0.0064963694,-0.06469075,0.008406279,0.0063184965,-0.11008298,-0.049649183,-0.06854332,0.0017904754,-0.06064238,0.07207867,0.038741805,0.0013512365,0.034911472,0.012966284,-0.010212795,0.051871262,-0.04408967,0.0041940594,-0.027514564,-0.030951643,0.008526794,0.0686705,-0.04102232,0.017214376,-0.004905103,-0.01900675,0.075082935,0.06700989,0.060748305,0.016792152,0.017923867,-0.032781415,-0.0047657024,0.05819124,0.08659508,0.049285088,-0.010082138,-0.051663585,-0.04643626,0.0397331,0.03516282,-0.0017373733,0.022538634,-0.019816294,-0.059375286,0.036371075,0.0022184772,-0.031726133,0.07729885,-0.054818723,0.017339783,0.016256642,0.08373679,0.05412457,-0.03738785,0.119579956,-0.03899978,0.07707601,0.09897941,-0.058536988,0.0036477412,-1.7307666e-32,-0.029618785,0.042963397,0.007911831,-0.025743516,-0.06606462,0.00480856,0.02063186,-0.0055406922,-0.004191712,-0.066628635,-0.07408934,-0.073362574,0.058076132,-0.07805217,-0.075136915,0.057631668,0.04270035,-0.06170974,-0.14734831,0.02269254,0.07349064,0.0657492,0.011655198,0.032717865,-0.05081687,-0.011851152,0.0063757496,0.0038950013,-0.1064854,0.08202559,0.007284045,-0.03317751,0.031657513,0.07303963,-0.063216865,0.007685094,0.076926254,0.089354515,-0.039768245,-0.011798241,-0.03326467,0.03648644,0.026048178,-0.055627584,-5.258312e-05,0.03963301,0.03304332,-0.11993211,-0.0472109,-0.04599507,0.044937268,-0.071639106,-0.09830133,0.0075758076,0.07440393,-0.04290971,-0.043981247,-0.09518519,-0.028380893,-0.01099375,0.0854005,0.019258995,-0.049197376,-0.053018246,0.079306416,-0.016599715,-0.038859777,-0.022612786,0.04374411,0.0070442227,0.04217151,0.00016396302,-0.10498553,0.014154249,-0.02931399,0.03115555,-0.03570546,0.088920295,-0.0739877,-0.028110955,-0.0077208257,-0.070209846,-0.041801628,-0.047508787,-0.07124167,-0.02315293,0.007959567,0.009817799,0.014125111,-0.022742279,-0.010809938,0.032438178,-0.01238737,0.024994979,-0.022681048,-6.009475e-08,-0.0022595813,0.011623019,-0.01566994,-0.014904311,0.040740196,-0.054478183,-0.014029947,-0.03531501,-0.0064428463,0.039196525,0.05458986,-0.037292987,-0.014517343,0.05189628,0.02097845,0.0614071,0.045424215,0.00958402,-0.028812936,-0.10190512,0.09235997,-0.04365961,-0.03747037,0.053780958,0.048649896,0.027935658,-0.07270943,-0.009029576,0.032433674,-0.012575362,-0.015097792,-0.038943887,0.017746737,-0.09037379,-0.016454604,-0.026500199,-0.014333397,0.04848802,-0.024482366,0.022744643,0.050875843,-0.02286188,-0.078610376,0.0066161486,-0.021274056,-0.022886822,0.024174454,0.050079685,-0.0475297,0.0426766,-0.018473657,-0.05978594,0.073672384,0.030270966,0.084185876,-0.10437496,0.045116544,-0.0041085975,-0.02773,0.0069382656,0.06005191,0.07327572,-0.09754033,-0.08069764} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:55:43.778593+00 2026-01-25 01:27:50.825618+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1246 google ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE 1 t 1249 Soho Club unknown Fantastic atmosphere. If gay or not. fantastic atmosphere. if gay or not. 5 2018-01-31 18:34:31.336452+00 en v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Fantastic atmosphere."} {0.028058717,0.023851562,-0.0119473245,0.02875906,0.038704,-0.0009777321,0.046169423,-0.12190563,0.016873015,-0.0001944861,-0.00066668814,0.020783003,-0.03225552,-0.024162367,0.011584408,0.035490405,0.07469122,-0.14084274,-0.021803612,0.039016873,-0.014166324,0.08793184,0.02238928,-0.033852413,-0.09210329,-0.0363465,0.03869073,0.08867153,-0.026194856,0.057060447,-0.020450562,0.07059699,0.030684073,0.014192819,-0.05075287,0.04642379,0.06565871,-0.10231146,0.026336601,0.032377206,-0.07788121,-0.062682174,0.010813957,0.006669081,-0.005963778,-0.01306681,0.058576483,-0.064548455,0.016997507,0.0036108256,0.06786547,0.0012081852,0.0010751348,-0.03528795,-0.040526513,0.046746988,-0.04826368,-0.11625713,0.00201907,-0.05479163,0.023778608,0.10243304,-0.11561373,0.023873031,0.10157923,-0.022456203,-0.06328969,0.029331569,0.060012326,-0.000991616,-0.011868727,0.06865308,-0.032174446,-0.07222979,-0.07175734,-0.02358905,-0.03685358,-0.040994473,0.030279547,-0.021562511,0.11960072,-0.15309332,-0.025515715,0.0048488895,-0.0622594,-0.044937562,0.04689125,-0.04205067,-0.13728163,0.11705482,-0.1246841,-0.0041324873,-0.003970971,-0.025412768,-0.05354542,-0.01742114,-0.009492301,-0.04411046,-0.02979037,0.0820627,-0.016499376,0.041222274,0.014851609,0.04176285,-0.06006096,-0.01062807,0.023240576,0.007419609,0.011332973,-0.005974825,-0.08432685,-0.0266292,0.048456397,-0.013569165,-0.0018328454,0.04873084,0.044991184,0.0072184927,-0.026723607,0.017107684,0.004410781,0.047373712,0.044782378,0.07235377,0.06323357,-0.071589306,0.025705906,-6.5393324e-33,0.012312246,0.04143176,0.012087114,0.09620414,0.059189077,0.052971892,0.052871488,-0.07475306,-0.016497321,0.019737314,-0.079037905,0.09788992,-0.056869376,-0.014867639,-0.012382333,-0.045639034,-0.04781231,0.016337723,-0.05361214,0.013616496,-0.0669611,0.07559943,-0.051620774,0.061397113,-0.048973147,-0.026660357,0.05722926,0.013060112,0.041888542,0.028328255,-0.053535655,0.04498264,-0.032639463,0.06971406,-0.013014688,0.014004335,-0.032200072,0.009600004,0.027982881,0.07094647,0.028654536,0.014857437,-0.032133028,-0.021366028,-0.0076016486,0.08267525,0.06485421,0.017847665,-0.021597285,0.027606476,-0.0008088415,0.017952595,0.0016022892,0.046643212,-0.021337872,0.009349256,0.040070023,0.031548545,0.023463294,-0.020270154,-0.03414831,0.065168604,0.058785956,-0.043626484,-0.012110736,0.018389944,0.044042595,0.0018548439,-0.033603158,0.056925263,-0.030298887,-0.04253905,0.062103167,-0.026615577,-0.023054395,0.012758827,-0.07630501,-0.059487533,0.074097596,0.010584399,0.061492752,0.044969447,0.072115846,-0.12207482,-0.052555244,-0.050367422,-0.0035520168,-0.052416556,-0.04136196,-0.014901781,-0.03508542,-0.018084364,0.07670529,-0.104386404,0.038425878,4.8682404e-33,0.086393125,-0.048459202,-0.029624308,0.058254763,0.0026330927,0.03972529,0.012697444,0.072018795,-0.004314118,0.04309767,0.050875198,0.026805002,0.11648335,-0.0026168192,0.031308196,-0.021433063,-0.026948087,-0.044772558,-0.016497051,0.0355698,0.0034297337,-0.029724807,0.00533951,0.04709369,0.030476222,0.05784003,0.010948924,0.026109572,-0.0016951147,-0.010952048,-0.014148214,0.04502492,-0.05469354,0.04640733,0.005309019,0.040844362,0.07347798,0.036753014,-0.05743248,-0.05856615,-0.0027448917,0.049446244,0.031520694,0.08626557,0.038712006,0.008062534,0.06495125,0.026328715,-0.010607524,-0.043913726,-0.14251485,0.0035278269,-0.10418398,-0.03346322,0.030713664,-0.053913727,-0.0418186,0.012920152,-0.027717298,0.027248835,-0.07245943,-0.04588374,-0.046396285,-0.010043743,0.032029502,-0.057360265,-0.014385062,-0.017522337,-0.02386064,0.0815229,0.0061795106,-0.14549622,-0.05593837,0.075878285,0.0352538,-0.0094703045,0.11662904,-0.022643905,0.0024700838,0.06147074,-0.06712533,-0.021262176,-0.01796326,0.03232615,0.048352204,-0.045607015,-0.027800187,-0.017917797,0.025286209,0.043159273,-0.054418445,0.025225455,-0.047995605,-0.1109132,0.07604798,-1.9669386e-08,-0.022075994,-0.014941845,0.06054448,0.013349354,-0.075495444,0.034641404,0.04853468,0.003502453,0.03270362,-0.00807134,0.028509876,0.0520598,-0.016741937,0.090636715,0.008559401,-0.017683808,-0.01577606,0.029929565,-0.034645103,0.06025751,-0.00061222987,0.054417714,-0.030215995,-0.014525507,0.005697571,0.06975912,0.03503063,-0.11029876,0.045130275,0.046608686,0.0040215096,0.018627835,-0.10280705,-0.027507013,-0.09359337,-0.00060535775,0.03604532,0.042416725,0.043183178,-0.1019747,0.025343467,0.02109825,-0.057352558,-0.038811658,0.029673146,0.008315118,0.10932527,0.008584519,-0.03721437,0.015618977,-0.019311342,0.031018214,0.022918588,0.0057115084,0.052956667,-0.0683912,-0.06402584,0.0868092,-0.0060902964,0.058814883,0.043979894,-0.021316817,-0.11976153,-0.06389223} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:39.85817+00 2026-01-29 18:36:00.581969+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 582 google Ci9DQUlRQUNvZENodHljRjlvT2s0MWRtMVBlSGRPT1VkWmFITXpWRWxNVVY5M1VGRRAB 1 t 585 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nette Mitarbeiter, es hat alles reibungslos funktioniert. nette mitarbeiter, es hat alles reibungslos funktioniert. 5 2025-09-27 01:27:48.342697+00 de v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Nette Mitarbeiter, es hat alles reibungslos funktioniert."} {-0.03549321,0.045727797,0.05319189,-0.012180519,0.062019728,0.05378111,0.09063868,0.0770843,0.00550987,0.038109064,0.021770539,-0.018977098,0.023769487,-0.052302852,-0.02873535,-0.007661144,-0.13717484,0.115296364,-0.04015023,-0.04450831,0.020740312,-0.027285758,-0.07741858,0.010323135,-0.038940165,-0.006607875,-0.040373445,-0.087912165,0.021478254,-0.08640643,0.04306704,0.03863745,-0.06827895,0.02762631,-0.00046945194,0.057960723,-0.006187215,-0.043851055,-0.030616967,0.025738986,-0.1392525,-0.018446365,-0.026202552,-0.08473573,0.029503237,0.06351083,0.06736497,-0.015984908,0.034056153,-0.029291121,0.0077381004,-0.029074851,0.026193267,-0.014549666,0.07482758,0.03604925,0.029826326,-0.06068191,-0.0077969334,0.0065789823,-0.032824125,-0.0067979367,-0.018458175,0.07515853,0.027677473,0.016212843,-0.016643465,0.023403857,-0.09041439,-0.018703671,0.09328556,-0.09289904,-0.027071701,0.031338878,0.044462938,0.035060607,-0.02674818,0.02642556,-0.033606447,-0.055825084,0.026461517,-0.0012755456,0.035606142,-0.0043089245,0.051547732,-0.020500273,-0.029993929,0.017469173,0.06597496,0.028983962,-0.12194972,0.0072293994,-0.086185455,0.00018444803,-0.005424846,0.003255095,-0.050240573,0.06613341,-0.04244113,0.06391029,0.01800526,0.024170902,0.028012106,0.032439757,-0.054206945,-0.039908394,-0.030666629,-0.04670283,0.008129524,0.029116943,-0.035757687,-0.038635496,-0.009738374,0.00023051104,0.060475722,-0.04444287,0.05678831,-0.091780715,0.03919458,-0.057248544,0.07632553,-0.01643845,0.019011585,0.011085438,0.048400212,-0.0004904384,0.025493823,7.733566e-34,-0.047631077,-0.033669014,0.058362406,0.014615386,0.04035946,-0.036279123,-0.0059714015,-0.090576984,-0.005625122,0.05030943,-0.07010998,0.18096846,0.0063476046,0.081979685,0.01617883,-0.0026675854,0.021451874,-0.0022713917,-0.022157658,-0.05806247,-0.08943578,-0.028681783,0.004600325,0.003173283,0.002897992,0.005507622,0.07274758,-0.030892393,-0.04825181,0.010824053,0.029375676,0.026148228,-0.03627228,-0.053403895,-0.040637285,-0.053981073,0.083502226,0.025065234,0.023259899,-0.06544264,0.010708725,-0.021987725,0.004475325,0.023412777,0.07744284,-0.027207574,-0.03631134,0.0034174153,0.015401063,0.07771052,-0.055581514,-0.031148054,0.065981954,-0.08281484,0.044086836,0.025356034,-0.13099673,0.048070367,0.010420644,-0.04251042,-0.034950495,-0.0799283,-0.04407617,-0.06895729,0.058694303,0.04274503,-0.036902882,-0.039876092,0.030865427,0.047935992,-0.070351884,0.024733465,0.050040387,-0.0036557652,0.021577971,0.032800283,-0.09059245,0.06565339,-0.07516714,0.040829364,-0.077001125,0.010101627,0.021813463,0.014076936,0.11874587,-0.014130968,0.030002544,-0.02744106,0.060506646,0.1457176,-0.00508638,0.025642443,0.000458695,0.025934929,-0.06639223,-2.1541198e-33,-0.0023392665,0.0062091555,-0.13803777,0.072526,0.01569234,-0.0035039121,-0.091103934,0.05783322,-0.065286405,-0.028278273,-0.013253143,-0.07678642,0.084714256,-0.028165316,-0.062345594,0.023514435,0.03739885,-0.002824061,-0.0791109,0.013483784,-0.0009572072,0.056013476,-0.030238226,0.042157345,0.026457736,-0.012831795,-0.035326038,0.03075307,-0.029674225,-0.038528077,0.05766774,0.045836657,0.058631,0.02033148,-0.014134477,0.029515298,-0.017785648,0.05809586,0.05671733,0.105164334,0.034017317,0.02053734,-0.052634984,-0.054749608,0.04147004,-0.029742314,-0.101369664,-0.1623169,-0.037986536,-0.034464557,0.051772375,-0.021047482,0.0055146706,-0.06744869,0.07677223,-0.037054203,-0.032325584,-0.099128075,-0.063626766,-0.038287107,0.10194764,-0.00069268874,0.033707518,-0.01730484,0.049373172,-0.023708133,-0.08658639,0.020403799,-0.007054278,0.10784619,0.07873917,0.0037860123,-0.0152344005,-0.014395789,-0.02893648,-0.011524254,-0.030246,0.065555155,-0.016735815,0.045388304,-0.10218703,-0.029763108,0.033072937,-0.096737005,-0.01867267,-0.04986814,0.019209994,0.020271033,-0.0068456796,-0.070793934,-0.0014401297,-0.03755042,-0.06896373,0.047893066,-0.014683079,-2.362351e-08,0.03976521,0.040027544,-0.09087735,0.039876644,-0.011534149,-0.067844875,0.049768936,-0.02302184,-0.10777545,0.010030451,-0.015830135,0.003361433,-0.01031165,0.0516273,0.10228777,0.10195201,0.03283336,0.079799585,-0.0034132826,-0.027250225,0.102043584,-0.018293686,-0.037009902,-0.024884244,-0.01835001,0.06925777,0.047544602,-0.069479205,0.034156453,-0.03422113,-0.052855086,0.0870833,-0.030284816,-0.036650233,-0.036986846,-0.0020978036,-0.026408356,0.013901915,0.016857889,0.108231045,0.017153181,0.08978412,0.007831089,-0.012347645,-0.03172532,-0.07069975,0.028212646,0.028681057,-0.011115398,0.033936508,0.025160192,0.024434306,0.020263188,0.0010274403,0.023846297,0.027964188,0.035126332,0.001906131,-0.076003455,0.013483329,0.019564787,0.028230075,0.0003723354,0.02570368} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:29:47.902519+00 2026-01-25 01:27:51.945142+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 661 google Ci9DQUlRQUNvZENodHljRjlvT2pGMVMzUllUbXh3WXpaMVVXeHhTMmd3VFhnNFQxRRAB 1 t 664 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Publicidad engañosa publicidad engañosa 1 2025-09-27 01:27:48.343098+00 es v5.1 V1.01 {} V- I2 CR-N {} {"V1.01": "Publicidad engañosa"} {0.044596214,0.040213443,-0.062321197,-0.018370468,-0.0385853,-0.002514258,0.04550885,0.007132698,-0.026093567,0.094744384,0.0721021,-0.042284127,-0.07534421,-0.05180265,-0.009307266,-0.009241853,-0.041203056,0.014484067,-0.007939574,0.069277175,0.06584647,-0.02664909,-0.06451125,0.08962302,-0.028909683,0.020524371,0.029287225,0.0042087887,0.017738476,-0.07665705,0.004505851,0.0017777942,0.1160055,0.022345532,-0.009178535,0.07478592,0.09192822,-0.1186049,0.024600169,0.012670495,-0.0850237,-0.103796825,0.00950365,-0.06094976,0.03863132,-0.03956344,0.07999359,0.05578028,0.027937898,-0.08473532,-0.007828415,-0.0598683,-0.03509944,0.036010724,-0.0027962313,-0.08210483,0.0013972047,0.03591177,0.029440166,0.036935847,0.009543059,0.008058621,-0.10268914,0.050679155,0.027741881,-0.059573643,0.01911906,0.04028703,-0.031849883,-0.025234614,0.15859632,-0.0519978,0.07256118,-0.028648943,0.0016520077,-0.0013357732,-0.008549273,0.027273895,0.03996757,-0.035840638,0.092159376,0.03106214,-0.105101176,0.038516425,-0.0037696976,0.03241173,-0.02746111,-0.03957474,0.035978533,0.024289617,-0.03263064,0.06305264,0.018963492,0.031992342,-0.033067036,-0.0026664748,0.034779273,-0.03364903,0.008004058,0.11487986,-0.031574003,0.11841628,0.05903153,0.041252956,-0.020105174,0.02622212,0.022254433,0.05114563,0.035773415,0.061466563,-0.049225703,-0.06770865,-0.08307846,0.007466929,-0.024604326,-0.06111621,-0.016064081,-0.039632753,-0.02183928,-0.061723456,0.016989404,-0.011198548,-0.0136795705,-0.07557863,0.030412896,-0.07274594,0.0044880654,-1.0143746e-33,-0.024804583,-0.0019067212,0.028272193,0.08831646,-0.04154989,0.055599492,-0.0043109073,-0.0123593975,0.01697274,-0.018430734,0.0049553956,0.08038253,0.0070807086,0.062633075,0.088341996,0.03429814,-0.05124988,0.056688536,0.0513422,0.06513632,0.005290738,-0.022480605,-0.026981192,-0.025724413,0.035301935,0.018313704,0.005762596,-0.12629436,0.019615974,0.060228616,0.070608556,0.07290946,0.02385639,-0.055298313,0.040616866,-0.057455014,0.055912573,-0.06574952,0.025116688,0.020077016,-0.002523976,-0.038771525,0.05810922,0.07083072,0.03532711,0.063364014,0.02963411,0.015634466,0.06930457,0.015535806,0.025348378,-0.02072627,-0.060181007,-0.0062936703,0.04102861,-0.016450608,-0.05155924,0.06874789,0.013321758,-0.11491075,0.016468046,0.08974015,0.015399247,0.05272319,0.010636853,-0.04647148,-0.012079956,0.0056713372,0.14060837,-0.066004805,-0.045846496,-0.04697353,-0.08606638,0.03819393,-0.061326392,-0.009440385,0.0152152805,0.014184819,0.008935699,0.03559665,-0.09703106,-0.0049762083,0.02097063,0.036934532,0.16934136,0.16440667,-0.008556688,-0.0075286943,0.022234077,0.094039954,-0.060570672,0.059157975,-0.020190956,-0.04329481,-0.07226213,1.3674793e-35,-0.037844654,-0.027020345,-0.050526094,0.018972613,0.0045434996,-0.012278802,-0.06707011,-0.0002063754,0.02217206,0.045781083,0.018402502,-0.16625628,0.09636904,0.022844616,-0.024943128,-0.013685794,0.044747207,-0.09004088,-0.13660595,0.02423174,-0.037379228,0.016724609,-0.031790167,-0.006638172,-0.003635722,-0.1144304,-0.05351739,-0.027323972,-0.049165763,-0.078027375,0.053109415,-0.038212243,-0.08564126,0.09430364,-0.039593637,0.03787462,0.04188538,-0.0023155517,0.013549927,0.033077523,-0.0073781796,0.03996947,-0.045747902,0.015935468,-0.043370817,0.023801193,-0.06255144,-0.06536519,0.0069000903,0.016181597,0.05521811,0.003620162,-0.03161228,-0.058288537,0.032708153,-0.06506127,-0.0038451005,-0.073468864,-0.046170674,-0.0011146116,0.13050494,0.029473918,-0.11625202,0.05124549,0.06876575,-0.011273961,-0.06365989,0.018782372,-0.022493592,0.023288704,0.04109491,-0.09101724,-0.05130168,-0.011646279,-0.07907428,0.014951128,-0.03627699,0.027840286,0.094114766,-0.012760358,0.04882776,-0.03962597,-0.024773363,-0.087346666,0.07133081,0.025885755,0.0317788,-0.056956418,-0.03721755,0.06656014,-0.012493023,-0.00037412794,-0.016231192,-0.0345036,-0.00010319089,-1.6052642e-08,-0.034204267,0.010838556,0.021117171,-0.0013304588,0.005902869,-0.008060472,-0.027210746,-0.07203835,-0.021643804,-0.021800375,0.006291712,-0.010586444,0.0087697515,0.07136668,0.016053602,-0.03282372,0.015182147,0.04314941,-0.05965267,-0.06757758,0.023649648,-0.02722589,-0.04008038,-0.018130587,-0.008941952,-0.021736732,-0.008754748,-0.008922311,-0.0033455607,-0.055658415,-0.020353062,0.016954552,-0.04694319,-0.022445133,0.0027018387,0.06732888,0.0014718742,0.008313449,0.011505036,-0.05461626,0.042061843,0.033409227,0.012286786,-0.028794933,0.03612601,-0.016648518,0.028850937,0.039631523,-0.009378713,-0.02878568,-0.024089498,-0.008062644,0.0654984,0.042147934,0.038205672,-0.006306008,0.05928331,0.09652732,-0.07833481,0.020201119,0.052090093,0.040886313,0.013427658,0.011000916} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:29:35.041568+00 2026-01-25 01:27:52.227428+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1247 google ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB 1 t 1250 Soho Club unknown Fancy place with good music! fancy place with good music! 5 2021-01-30 18:34:31.336452+00 en v5.1 E4.04 {} V+ I2 CR-N {} {"E4.04": "Fancy place with good music!"} {0.07536263,-0.039593164,0.006533344,0.022099225,-0.09950239,0.056368835,0.05104971,-0.073347814,-0.007033193,0.03240217,0.03090034,0.046757493,0.056721743,-0.023706805,0.03561406,-0.018095454,0.12609352,-0.0016842945,0.10600348,-0.061265275,-0.0930484,0.033968396,0.04175393,0.04568341,-0.011863702,0.06306138,-0.010513963,0.10197478,0.035294134,-0.039171267,0.01857384,0.12817848,-0.05090761,-0.0529177,-0.025997726,0.034581188,-0.010685895,-0.10289523,0.019641818,0.056394063,-0.03111338,0.09223914,0.043024935,-0.0056968196,-0.05948122,-0.03443794,0.0028151309,-0.044593655,0.06844981,0.072925545,0.06840641,0.038812187,-0.013826477,0.012617161,-0.07194647,-0.018272888,-0.04302667,-0.019629734,0.050294533,0.00044357087,0.040918253,-0.023260728,-0.02472194,-0.046789657,0.063778974,-0.07885481,-0.05401992,0.11290947,-0.020939426,-0.018134102,0.036813233,-0.014362723,0.032489374,0.00952705,0.008078,-0.014928147,-0.05102108,-0.04828766,-0.057110038,0.007818617,0.023740808,-0.053969853,0.00080392417,-0.07108711,-0.054113816,-0.09329131,0.0030330643,-0.034816567,-0.05005829,-0.05121905,-0.01303882,0.031408735,-0.13795918,-0.013636266,0.04043388,0.02008706,0.014096534,-0.0135894995,-0.037868697,0.06892115,0.020224761,0.10923257,0.022042131,0.024605088,-0.021072712,-0.03710992,0.008006033,0.1288085,0.014167669,-0.051227786,-0.0026059893,0.016581614,0.003846886,0.017637895,0.017508186,0.015314332,0.09404085,0.01550707,0.023210868,-0.0536414,0.04922367,-0.0345099,-0.046635065,0.033065014,-0.047934067,-0.013530964,-0.059348978,-1.7381308e-33,0.018131131,0.014255734,0.022946227,0.01151979,0.11942452,-0.0245929,-0.08958497,-0.012615007,-0.04154089,0.08167043,0.071520254,-0.081128,-0.014090775,-0.0028101185,0.031398397,-0.024441777,-0.00600182,-0.048254877,-0.018216351,-0.02506942,-0.0778567,0.019904763,0.016147237,-0.0037924964,-0.03498383,0.027790356,0.04070086,-0.06234437,0.0010303532,-0.0021814506,-0.030695423,0.024700992,0.01309813,-0.021037223,-0.02269696,0.019644057,-0.11582181,-0.027998429,0.059421293,0.048081134,0.058287043,0.03901173,-0.057874005,0.028121006,0.023237327,0.08225267,0.0069708345,0.0051616365,0.08018932,0.030819386,-0.04955578,-0.03192987,-0.041697126,0.0763721,0.011318388,-0.029163117,0.00630027,0.038387544,0.107074514,-0.06002749,0.08843367,0.07307191,-0.024199214,-0.13741726,0.023028778,-0.023661723,0.09255215,-0.028930027,0.045742813,0.012568129,-0.033401016,0.0230668,0.06984841,-0.009895333,-0.018439926,0.021143144,-0.08553751,-0.026027758,-0.012054975,0.01862445,0.016193453,0.0273344,-0.056624647,0.06639076,0.057237107,-0.008054186,0.009778911,-0.13894425,-0.07603571,-0.02061501,-0.10185637,1.282802e-05,0.02778036,-0.023036411,-0.030387094,1.3002509e-33,0.10668294,-0.07948671,0.053961243,-0.005184626,-0.0049965978,0.042404164,-0.041560773,-0.0055769947,0.010853619,0.10108062,-0.053407714,0.008717174,0.06342854,-0.005773909,-0.015470251,-0.0014645626,0.026273718,0.053687844,-0.012077476,0.030798344,-0.04645983,0.01017464,0.007613411,0.018585045,-0.044472992,0.028970337,-0.080720335,-0.0143369865,-0.06566321,0.011258251,-0.06596816,-0.056680474,-0.019497024,-0.07286015,0.023828143,0.066314414,0.02381379,-0.019998461,-0.08833034,0.06089113,-0.042204488,0.0053881635,0.07296119,0.11264567,0.040061213,-0.0028606975,-0.09718671,0.085965134,-0.0013109487,-0.059319958,0.05437039,-0.019407354,0.025473015,-0.049612474,-0.0040901066,0.0017039259,-0.026113842,0.0006805992,-0.016066838,0.0063005085,-0.050139222,0.056128897,-0.027661277,0.009468808,0.0033210525,0.03782368,-0.001903007,0.027539728,-0.049874973,0.09523823,-0.025852248,0.05525806,-0.03132133,0.031141266,-0.043369308,0.02572787,0.14855428,0.013655524,0.043950945,0.031212991,0.020191964,0.069729716,-0.12310078,-0.07552917,0.033983327,0.058780786,0.010091551,-0.04308145,-0.0635192,-0.015555853,0.023552852,0.06161017,-0.09719713,-0.036104113,-0.021185284,-1.4168611e-08,-0.035608593,-0.0029682082,-0.012814035,0.011645548,-0.040717866,-0.07099998,0.059768666,-0.03283486,0.0054572327,-0.00097611465,0.026245212,-0.055675853,0.00897466,0.034750555,-0.05824544,0.0520494,-0.025685437,0.08767497,-0.045825236,0.008756225,0.041493177,0.07673171,0.07217269,-0.059339374,-0.028846253,0.0020411366,0.09166195,-0.021063933,0.08097033,-0.016192863,-0.042910237,0.019775445,0.0056714783,-0.06659917,-0.013823333,-0.078131884,-0.034803923,-0.03985132,-0.05278118,-0.063376635,-0.04136745,-0.013829658,-0.00210988,-0.04872418,-0.008255563,-0.018036112,0.14702041,0.043567445,-0.047959115,0.030566078,-0.1187377,0.012206626,-0.0008632675,0.0121427905,0.031268056,-0.0037276899,-0.04414519,0.033332407,-0.06874323,0.09770323,-0.020326007,0.027425662,-0.029681165,0.021364013} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:48:52.98063+00 2026-01-29 18:36:00.583807+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1248 google ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE 1 t 1251 Soho Club unknown Nice :) nice :) 5 2021-01-30 18:34:31.336452+00 ro v5.1 V4.03 {} V+ I1 CR-N {} {"V4.03": "Nice :)"} {-0.027723046,0.015909983,-0.059053995,-0.0060069263,-0.019111611,-0.044217415,0.0003280101,0.0034131957,-0.14315076,-0.07665681,0.0032719027,0.0030190202,0.0077742557,0.009953559,0.022336915,0.030225683,-0.057014465,-0.04229967,-0.031175883,-0.008878926,-0.13108489,0.022668047,0.032994952,-0.02572399,0.053091962,-0.037474737,0.008512619,0.082248375,0.045311775,0.021858336,-0.10200943,0.04146934,-0.03608396,-0.04982624,-0.055352245,-0.028771613,-0.015296323,-0.024141908,-0.070213534,0.025480429,-0.032496598,-0.0597522,0.03730425,0.05468548,-0.015665378,-0.01477784,0.0019415123,-0.011609402,-0.008693652,0.034942187,-0.024670972,-0.04727045,-0.016421612,-0.01728781,0.0440857,0.04205104,-0.07390727,0.026018675,0.052445065,-0.06654901,-0.009907244,0.037708364,-0.14983548,0.055658873,-0.04802844,-0.01048272,-0.018979596,-0.096498124,-0.04872931,-0.017600928,0.032161314,0.048782013,-0.044734813,0.0023537283,-0.0725733,-0.009923695,0.10684099,0.027464658,-0.032614592,-0.036315195,-0.001683891,0.02841897,-0.05760297,-0.022622943,-0.0029398303,0.022148553,0.038014684,0.07322903,0.033472408,-0.052230857,0.032570314,-0.05302799,-0.01611365,0.00208197,-0.072840504,-0.034459066,0.009773839,0.0108538,-0.038333487,0.12033937,0.091561906,0.0178782,-0.007884711,-0.07141021,0.008175859,0.018199585,0.014881965,0.021081068,-0.046954717,-0.0374951,-0.054528818,-0.03619218,0.0052226936,0.0645984,-0.017273817,0.032900352,0.066115394,0.06605308,0.05442203,0.047223065,0.0110954195,-0.01004677,-0.029131237,-0.046783235,-0.061217397,0.023278104,0.10087915,-1.7024176e-33,-0.0050076633,-0.019249575,-0.040083453,0.022973534,0.10898971,0.051630884,-0.05031094,-0.02146072,-0.04985027,0.104397155,0.023849737,-0.016384339,-0.055107366,0.08068599,-0.044095643,-0.025700942,0.045068007,0.0048678997,0.0064556794,-0.01029559,0.0007593337,0.08508502,-0.017756553,0.0010273134,-0.050203994,0.06599667,-0.027144538,-0.047870167,-0.0063294573,0.03495483,-0.033833392,0.040239476,-0.0048116236,-0.016682154,0.002334696,0.0015526217,0.022362914,-0.08372548,0.005591792,0.05918266,0.041468043,-0.09489122,0.031698894,-0.03500098,-0.005304309,0.032920007,0.014779386,0.03659079,-0.013017598,0.014658143,-0.061362613,0.015265715,-0.09213688,0.004836247,-0.056702998,0.02325905,0.004084038,-0.0011621872,-0.02702824,-0.06334855,-0.023479102,-0.019383367,0.035609134,-0.037045255,-0.05220088,0.034874786,0.011364709,-0.012412395,0.108172365,-0.12497059,-0.018760156,0.053143688,0.0007489208,0.056375597,0.0054975045,-0.0385633,-0.10441737,-0.08950452,-0.021081509,-0.07685772,0.023200318,-0.011521874,-0.02293806,0.0534559,-0.055160552,0.04671953,0.02853762,-0.12906764,-0.013441763,0.022705568,-0.04767109,0.03301603,0.06927578,0.0062387614,-0.10443314,-2.2427514e-33,0.009758832,0.06216005,-0.06028311,0.017974941,0.025355818,0.020144138,0.08336872,0.15135823,-0.07684764,0.10458531,0.0019362855,0.026111625,0.05550155,-0.010112305,-0.0535364,-0.0028162012,0.036409646,-0.07696574,0.027350605,-0.041592527,0.0102387285,0.053327814,-0.030675916,0.030057311,0.029369257,0.048659947,-0.009895804,0.04106379,0.012296694,-0.030238865,-0.010753507,-0.032943394,-0.0756872,-0.07652756,-0.0065242574,0.074930005,0.025684854,0.052675866,-0.037248034,0.055846937,-0.053184725,-0.038532544,-0.00063595775,0.069985084,0.025793223,-0.013849093,0.084403075,-0.018828122,-0.0025631874,-0.0052136327,0.012975275,-0.066274405,0.0031816645,0.030666094,-0.045405574,-0.052444518,0.08909098,0.01489843,0.08029983,-0.04124864,-0.08278725,-0.050560255,-0.043313954,0.033525467,-0.011240441,-0.060892705,-0.032661267,0.049152546,-0.023364067,0.05468121,0.045052085,0.06264602,-0.0424985,-0.026635662,0.10381067,-0.09572076,0.07068055,-0.013631927,0.023426894,-0.0077404208,-0.033885814,0.00043541865,-0.008038681,-0.034327034,0.03607961,-0.079817705,0.040019,-0.029271808,0.016376657,0.012814153,-0.078157015,0.10212079,0.02626237,-0.00729657,0.04338167,-2.1442272e-08,0.012050432,0.08352564,0.02400458,0.038134426,0.023628645,-0.0452844,0.014765644,-0.028381398,-0.002339508,0.0022178541,0.12156052,0.037557743,-0.056313332,-0.022109635,0.031380467,0.06899656,0.030515106,0.09523924,0.0016619408,-0.13116053,-0.06650537,0.11878945,-0.00079963,0.011776296,-0.0068475483,-0.0072244406,0.09231882,0.00487416,0.05107573,-0.0033927509,0.07865627,0.11128891,-0.032038398,-0.04687947,0.0012533902,-0.031358443,-0.07586009,0.009210046,-0.045116182,0.11506404,-0.029107,-0.1114592,0.04641522,0.07488932,0.0032811633,0.0796683,-0.0013448362,-0.034964804,-0.048823897,-0.04036552,-0.029514167,0.003141167,-0.0028414577,0.01176151,0.11480407,0.050038863,-0.035561766,-0.050378196,0.046245858,0.010277774,0.11514511,0.0009264731,-0.098306604,0.06639973} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:49:05.947144+00 2026-01-29 18:36:00.587042+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 395 google Ci9DQUlRQUNvZENodHljRjlvT2taRmMwSnRVMXBXZW1wSVVERTFjbmMyYm1SbFVIYxAB 1 t 398 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancelación gratuita” y no especifican q tienes 24h de antelación para cancelar . No reembolsan y tampoco t dan una alternativa para cambiar el coche por el mismo precio muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancelación gratuita” y no especifican q tienes 24h de antelación para cancelar . no reembolsan y tampoco t dan una alternativa para cambiar el coche por el mismo precio 1 2025-09-27 01:27:48.341674+00 es v5.1 J1.02 {P1.02} V- I2 CR-N {} {"J1.02": "Muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancel"} {0.013201107,0.09695844,-0.008849415,-0.054209497,-0.09582529,-0.00030513434,0.1362703,-0.015767474,0.042889975,0.012108435,0.13510203,0.053240195,-0.05372342,-0.074384935,0.010881691,-0.024226245,-0.049995527,0.038619597,0.012229899,0.01083642,0.09263461,-0.026035154,-0.008370743,0.14719018,-0.070269436,-0.01046363,-0.06762819,0.0060997875,-0.047577795,-0.06840003,-0.057097923,0.0801122,0.069022745,-0.06987514,-0.06067978,-0.052274752,-0.017117895,-0.02501906,0.05848425,0.06506168,-0.04623541,-0.021239216,-0.11669517,-0.067125164,-0.0363261,-0.035647325,-0.026314445,0.03184405,-0.028042195,0.061002042,0.04682595,-0.036741465,-0.06759721,0.0015217196,0.053758834,0.017671494,-0.02452593,0.04986696,0.020868136,0.057325985,0.025267178,0.029189834,-0.11979487,0.027759835,0.0707521,0.012622058,0.032845598,-0.10509805,0.04286117,0.018127216,0.08990991,-0.12571734,0.051576205,0.011579341,-0.08718427,0.08333192,0.009453645,0.063915014,-0.008892456,0.02062069,0.04793521,-0.08586353,-0.009240614,-0.037295282,0.026189644,-0.043799132,-0.011003957,-0.007923103,0.075074084,-0.009930905,-0.03173265,0.022335153,0.02751489,-0.042155325,-0.031296976,-0.008345101,0.014642393,-0.067842446,-0.05905571,0.032976698,0.093653746,0.039027505,-0.025698265,0.020916268,-0.040927164,0.0034948322,0.02893706,-0.002607089,-0.007771483,0.03369471,-0.12405253,-0.020643849,0.08436514,-0.050192315,-0.11133599,0.13061626,0.06139021,0.019800851,0.03294731,-0.11791581,0.045531005,0.0339105,0.018680591,-0.09112755,0.0027301237,-0.05789598,0.04947032,1.164329e-32,-0.052708443,-0.05606662,0.0040524993,-1.2643359e-05,0.038259435,0.068114266,-0.065457605,0.00644858,0.040303018,0.02159182,-0.011876329,-0.054912314,-0.024181888,0.054635685,-0.01752474,0.0021739532,0.053191613,0.018136056,0.07351339,0.0026932769,0.017763114,-0.016129924,-0.05895673,0.021544607,-0.004811142,0.05266151,-0.060801256,0.012438079,-0.046232633,0.031726055,-0.038737886,0.059123993,0.08683182,0.077203564,-0.048340615,-0.026464688,0.0299568,-0.02531605,0.009629332,-0.0012039191,-0.009914638,0.026387835,-0.07154802,-0.03002662,0.07006954,-0.07151184,0.06668899,-0.028187424,0.0505981,0.10227436,0.0042288643,-0.007862608,-0.06998583,0.011095788,-0.04117411,0.036735613,-0.052963763,0.03618313,-0.054277986,-0.062359337,0.023565786,0.0048697507,0.021496924,-0.1015049,-0.111556,0.023469174,-0.033078484,-0.048442055,0.0042650397,0.0053613987,-0.07670727,-0.019004729,-0.024470273,0.049852893,-0.019829564,-0.00965443,-0.06708183,0.028909108,0.057285376,0.034252636,0.05486833,0.010719376,0.037942432,-0.044918027,0.08676687,0.00968367,0.07189677,0.0770805,0.0075694565,0.0807746,-0.07136227,0.06417414,0.019694462,0.07768712,0.12346011,-1.2151171e-32,-0.013481403,-0.0128943045,-0.057267353,0.0023986779,-0.04791131,0.016520066,0.021632904,-0.10710851,0.017513914,-0.06872131,0.061835937,-0.06845207,0.029923111,0.0044871834,-0.01880184,0.04190278,0.07675651,-0.041838083,-0.10663057,0.011543822,-0.016851226,0.0065788166,-0.026049767,-0.049338557,0.017561527,-0.103617996,-0.041598283,0.0441828,0.023424467,-0.050428238,0.07295142,-0.105129324,0.035189554,0.04439732,0.02534087,-0.0018359924,0.053554855,0.060011193,-0.048064835,-0.011840573,-0.010883104,0.005697363,0.013614367,0.052393794,0.041974794,-0.022881297,0.0348046,-0.14324142,-0.01161332,-0.072687745,0.016238127,-0.04561068,-0.022058679,0.019372987,0.03566514,0.012942905,0.01082376,-0.03139165,-0.009267712,-0.0055257315,0.08528943,0.024830576,0.01181689,-0.07324037,0.07825985,0.027959393,-0.016446777,0.07930313,0.02882655,0.02615814,0.039174944,-0.0072864876,-0.07906881,0.038981512,-0.016726503,-0.015677178,-0.040111545,0.013221155,0.007952518,-0.049710307,0.0032406778,-0.008096672,-0.0036114668,-0.029531527,-0.0683622,0.001576153,-0.13349725,0.06450973,-0.012487835,0.090003654,-0.047117885,-0.01774865,-0.028913204,-0.044765774,0.0093535725,-5.2072366e-08,0.00043067476,-0.055595573,-0.012451299,0.014416008,0.040068693,-0.043203298,-0.023155477,-0.016453426,0.0018340579,-0.03808503,0.0050801714,0.047350653,-0.031918548,0.004703621,-0.03699066,-0.045111056,0.042059824,0.06892208,-0.0077660633,-0.019557213,0.047155518,-0.023791218,-0.04924891,-0.032352664,0.049859002,0.008452897,0.02820412,0.06411498,-0.047132768,0.022693587,-0.007876845,-0.055613875,0.019426936,-0.030235711,-0.019988542,-0.03161042,0.044500858,0.04111571,0.002649143,-0.0009229224,0.061421473,-0.065206155,-0.061300643,0.012398814,-0.038644336,-0.08412326,0.011594929,-0.04967345,-0.04973213,0.03664164,-0.0012354215,-0.043051757,0.08937804,0.029805053,0.04725067,-0.06562174,0.010707181,0.020284366,-0.04651793,0.053743154,0.055150956,-0.017062217,0.007929859,-0.07681975} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:45.749067+00 2026-01-25 01:27:51.246658+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 420 google Ci9DQUlRQUNvZENodHljRjlvT2tkblpUQnhla1pIZWxCR2JraE1WM2hLU0ZCV2JVRRAB 1 t 423 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entrega del vehículo todo perfecto, sin duda lo mejor para alquilar un coche, muy profesionales en lo suyo y los empleados estás siempre de muy buen humor, eso es imprescindible en estas empresas. tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entrega del vehículo todo perfecto, sin duda lo mejor para alquilar un coche, muy profesionales en lo suyo y los empleados estás siempre de muy buen humor, eso es imprescindible en estas empresas. 5 2025-09-27 01:27:48.341823+00 es v5.1 J1.01 {A1.01} V+ I3 CR-N {} {"J1.01": "Tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entre"} {0.01869217,-0.06160816,-0.008457947,-0.07349341,-0.03312439,-0.041713223,0.118405856,0.007948888,-0.024174536,-0.021591526,0.083418846,0.05145193,-0.00065100234,0.028492229,0.04583288,-0.0074433065,0.012641961,-0.01110233,0.006789931,-0.02457725,0.071146645,-0.04938919,-0.004177752,0.017133305,-0.11976242,-0.11432831,-0.03273654,-0.022676552,-0.062680736,-0.06276232,-0.025185356,0.02561772,0.11778991,-0.0074597453,-0.049953945,-0.026318312,0.0034534629,-0.046906173,-0.039491612,0.040994026,-0.11450849,-0.0343386,-0.034449816,-0.08535946,-0.000476991,-0.089537464,0.025709428,0.095565826,0.026179504,-0.015295405,-0.05561462,0.0027400325,-0.0498272,-0.0034674911,-0.0060547227,0.024340574,-0.04155922,0.03022892,0.080056906,0.06124172,0.04700086,0.026389495,0.035087448,0.05499214,0.04936546,-0.022779565,0.028644068,-0.010220445,-0.0662686,0.014967339,0.006034156,-0.12262463,-0.078857854,0.0875378,0.01233004,0.052330412,-0.029272461,0.029232,-0.044215173,-0.015253553,-0.022514578,-0.037853852,0.08249984,-0.0046259086,-0.0046322267,-0.041475624,0.027512362,-0.020397684,0.04973087,-0.07368232,-0.029794414,0.028927563,-0.03792867,0.010735688,0.032044683,-0.01406356,0.027399758,-0.06808808,-0.02102695,0.045283016,0.06445173,0.0060699373,0.105473764,-0.027912343,-0.047293015,0.0137276035,0.024725366,-0.023323055,0.0061309375,0.048760373,-0.060341254,-0.01922848,0.005427459,-0.112860866,0.053056035,-0.026033971,-0.09244768,-0.031559646,0.11088882,-0.09158109,0.11627854,0.004910845,0.024083307,-0.07245354,0.036146518,-0.061046578,0.028611723,1.2723664e-32,-0.01845572,-0.004195964,-0.033365123,0.078032106,0.046790168,0.04235126,0.013139176,0.024095064,-0.084259585,0.003514897,-0.022085886,0.04279652,-0.030159088,0.024506833,0.036677737,0.055101033,-0.017294845,0.012712808,0.064863235,-0.026938962,-0.008827014,0.020580702,0.033475377,0.023529265,-0.02399331,0.033313647,0.049439874,-0.03612727,0.012125292,0.028703155,-0.05850129,-0.034190644,-0.019831596,-0.068979286,0.02634153,-0.021754773,-0.035462223,0.02183719,-0.026236014,-0.016090246,0.0011256742,-0.023512939,-0.075271994,-0.0065177768,-0.034677383,0.07443459,0.044804435,-0.024645299,0.050777588,0.0546909,-0.049516745,-0.040193032,-0.077752076,-0.015886074,-0.03918341,0.08366646,-0.023866663,-0.062188577,0.016314173,-0.059712257,-0.0041936985,-0.029602267,0.014699123,-0.060865805,-0.02038638,-0.078655556,0.019291556,-0.027942311,0.10641279,0.036026567,-0.015463427,-0.03276028,0.017764421,-0.025314847,-0.092599794,0.016610656,-0.07903903,-0.003895209,-0.0024323706,0.10992984,0.05234596,-0.05522184,0.04389167,-0.033316143,0.061380614,-0.023328912,0.050701905,-0.021164626,-0.037729308,0.12634937,-0.034343727,0.117035136,-0.0012435118,-0.04205264,0.04441053,-1.512659e-32,-0.055418853,-0.014205899,-0.073796906,0.045834437,-0.06088489,0.09553022,0.0021086684,-0.028022632,-0.025310889,-0.023267873,-0.074469134,-0.11862636,0.049877908,-0.034340326,-0.025959902,0.06880809,0.03360969,-0.12363154,-0.14138158,0.014485596,0.047159046,-0.00072955637,0.053104766,0.025517758,-0.024700688,-0.06397285,-0.014189256,0.034174778,-0.059293773,0.06947243,0.053055946,-0.018892298,-0.05723024,0.034482244,-0.010588387,0.021292772,0.044780347,0.061848257,0.007967351,0.025183689,0.061913602,0.036250245,0.020226825,-0.036044415,0.030317377,0.0031228652,-0.06126395,-0.15063469,-0.0806039,-0.0039382037,0.08461611,-0.06910447,-0.017022125,-0.10069474,-0.028522456,0.00922495,-0.029328212,-0.029690504,-0.040215433,0.023323894,0.016872026,-0.025292417,-0.036712132,-0.0800585,0.015480749,-0.01531096,0.008907219,0.00953085,-0.0774586,0.037218485,0.062019378,-0.013184483,-0.0031263765,-0.04393153,-0.007871275,-0.01389601,-0.024483923,0.09318767,-0.058714256,-0.009764344,0.021470666,0.011494094,0.036684856,-0.04521916,-0.089992136,-0.024365205,-0.020725003,0.035967857,-0.053450286,-0.005857185,-0.014417529,0.055009097,-0.10532979,-0.02799788,-0.0044159144,-5.9263417e-08,-0.06136554,-0.06664433,-0.016017424,-0.007176806,0.08167568,-0.05070938,0.03250151,0.10812968,0.022492234,0.015519769,0.011010687,-0.05019595,-0.020913767,0.13197932,0.042132016,0.04324409,0.046192776,0.027502691,-0.002631793,-0.05191978,0.106572784,0.001424668,-0.034654696,0.0712236,-0.022412408,0.04350027,-0.005752129,-0.011401859,-0.021016682,0.068333484,-0.04436747,0.015483658,-0.04355598,-0.10740648,-0.055607572,-0.057684813,0.018690856,-0.013026907,-0.06362685,-0.0043029217,0.060756277,0.0632522,0.029348888,-0.013440022,-0.028461177,-0.041248724,-0.048178207,0.009791757,0.021201467,-0.012592657,-0.09201689,-0.005562493,0.009627222,0.029090878,0.008262798,-0.123079255,0.067595206,0.061357476,-0.04995945,0.07257156,0.062114686,0.05885277,0.031237232,-0.013504248} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:27.943615+00 2026-01-25 01:27:51.335581+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 434 google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB 1 t 437 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Izuzetno ljubazno osoblje, spremno da pomogne. Za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista. U ponudi smo dobili Peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji Citroën Berlingo, u koji smo mogli svi da se smestimo bez problema( 2 odraslih i 4 dece,od toga 2 odrasle dece), plus prtljag. Zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-Vegeta i San Jose besplatan u odredjenim ukicama. Sve preporuke! Hvala vam i do skorog vidjenja.🙂👋 izuzetno ljubazno osoblje, spremno da pomogne. za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista. u ponudi smo dobili peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji citroën berlingo, u koji smo mogli svi da se smestimo bez problema( 2 odraslih i 4 dece,od toga 2 odrasle dece), plus prtljag. zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-vegeta i san jose besplatan u odredjenim ukicama. sve preporuke! hvala vam i do skorog vidjenja.🙂👋 5 2025-09-27 01:27:48.341912+00 hr v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Izuzetno ljubazno osoblje, spremno da pomogne.", "E1.01": "Zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-Vegeta i ", "O1.02": "U ponudi smo dobili Peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji Citroën Berlingo", "P1.01": "Za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista.", "R1.01": "Sve preporuke! Hvala vam i do skorog vidjenja."} {-0.021819863,0.081737936,0.009980564,-0.03728279,-0.041168854,-0.016579755,0.06377451,0.048375778,0.02900365,-0.03314502,0.0074681994,0.016187735,0.011022325,-0.0017986933,-0.03323835,-0.02850796,0.011607436,0.044425696,-0.06576488,0.07906328,0.08363841,-0.03070856,-0.01534011,0.041981697,-0.03853215,0.07685115,-0.007011827,0.10239841,0.031517915,-0.014097483,0.019262072,0.037738916,0.04309861,-0.044551887,0.02973556,-0.026368462,0.039049044,-0.054927982,-0.06122778,0.053598583,0.004408991,-0.029029764,-0.09320806,-0.004018118,0.031699754,0.07904825,0.033986583,0.019116817,0.02157384,-0.0550512,-0.120286606,0.024651486,0.043605324,-0.077008575,-0.09526146,-0.13097623,-0.005237323,0.04940831,0.061870623,-0.012833857,0.019271892,-0.035602648,-0.027900996,0.0269316,-0.008254685,-0.06082307,-0.0013286615,-0.011376684,-0.10290308,0.12863597,0.06896679,-0.024786735,0.012268612,0.06815868,-0.07157103,0.057232436,0.037320763,-0.03982664,0.011293824,-0.13145615,0.049809016,-0.07114945,-0.066838294,-0.013971984,0.0070897597,0.009064221,0.0005381527,0.0622,0.06424095,0.05274258,0.018266583,0.09946076,-0.061036535,-0.059049696,-0.019455384,0.014220895,-0.022611406,-0.020811716,-0.00541127,0.03998413,0.046802342,0.006068227,0.097127035,0.011895467,-0.056317378,0.032336984,0.00822776,0.011378941,0.03397696,0.038588606,-0.020893833,-0.03768183,-0.01222076,-0.06835789,-0.110921144,0.019454923,-0.03995433,-0.0020499956,-0.029061036,0.021429837,0.010165665,-0.06035335,-0.03282704,0.02881605,0.003965315,-0.10230995,0.0152708115,2.098094e-32,-0.07627518,-0.044434167,-0.008500811,0.0022148762,-0.04132848,-0.0067005698,-0.0786427,0.033490267,-0.015543227,0.0070884926,-0.0011503432,-0.11907462,-0.013349162,-0.007716115,0.0015880951,0.037364457,0.06568527,-0.06285178,-0.084740594,0.02346125,0.09623657,0.0121538965,0.05654414,-0.0030561744,0.005416609,0.094355024,0.00032722641,-0.06658586,0.027923103,0.03828219,0.064382486,0.0031211067,-0.018811774,-0.020278912,-0.06267206,-0.011907117,-0.040119708,-0.050721616,-0.07760107,-0.029086446,-0.022844132,-0.046077877,-0.048292134,0.08290744,0.021311613,0.028036857,0.029340692,0.023024723,0.07814047,0.0038330727,-0.034403738,-0.046607573,-0.07482553,0.00014059347,-0.014664626,0.106107265,-0.017458623,0.07034862,0.0330556,-0.058331653,-0.056168627,0.09268158,0.042432286,-0.03212557,0.011858308,-0.09854078,-0.010132584,0.00045208112,0.029414443,-0.018220076,0.043248728,-0.015154865,0.036566157,0.08751681,-0.007169835,-0.021331294,0.068763725,-0.002731095,-0.039374493,-0.008288009,-0.06643964,-0.028114658,-0.016433936,-0.072818756,0.088760756,0.007496647,0.08262129,-0.0018980658,-0.08891831,0.049110517,0.0030805944,0.017055681,0.042572528,-0.048847966,-0.068928756,-1.898857e-32,-0.032895338,0.03702025,0.03332393,0.024483778,-0.06768017,0.07162285,-0.0445068,-0.02141807,-0.050349697,-0.020006461,-0.054950465,-0.07695974,0.06960936,0.02888158,-0.021845711,0.050874144,0.06670893,-0.025524884,-0.044925693,-0.02996409,-0.041808438,0.07914636,0.036955968,0.13427003,-0.067925416,0.021570528,0.058483984,0.0032149092,-0.048022904,0.044411123,-0.0036204641,-0.025066532,-0.066068426,0.06348042,-0.020773897,0.004442647,-0.03120732,-0.024394741,-0.045777578,0.044920713,-0.07133698,0.013687266,0.011515108,-0.057103325,-0.06007572,-0.045540985,0.00097285624,-0.035185084,0.011491707,-0.04744123,0.11600909,0.024405839,-0.049744908,0.022960654,0.08710236,0.0023489622,0.04292977,-0.11164953,-0.06859736,-0.03738474,0.019120147,-0.0013778375,0.022486737,-0.042804945,0.05903807,-0.019181814,0.02284121,0.06111904,0.099490516,-0.068627104,-0.05119815,0.02556405,-0.1126845,-0.02364622,-0.039835345,0.041040134,-0.008876588,0.046703305,0.018866068,-0.053103603,-0.07001761,-0.036168184,-0.029323956,0.062362242,-0.014220251,0.012248586,-0.04500847,0.014725273,0.086659595,0.061097592,-0.004743818,0.15654519,0.09529427,0.03296164,-0.03340223,-6.21055e-08,-0.03603546,-0.046001047,0.04842926,0.017289678,0.08835748,-0.094578326,-0.05189106,-0.046297546,-0.07352551,-0.025519328,0.037865244,-0.034504574,0.011079566,-0.031149883,-0.019702962,0.07576432,0.0037248065,0.039905965,-0.02751389,0.0002517529,0.06854427,-0.0022047407,-0.09597911,0.059820663,0.04731895,-0.012285872,-0.011133528,-0.0026538232,0.06782873,-0.0463424,-0.040743932,-0.04144191,-0.02304376,-0.056976836,-0.038396463,-0.022800105,0.004185475,0.06467767,-0.007451433,0.05450926,0.1016996,-0.00564035,-0.0051812185,0.046047106,-0.09409666,0.043148022,-0.045078266,-0.023067368,-0.015199038,-0.026340088,-0.07328113,0.031971324,-0.012464632,0.14855,-0.034246568,-0.0051006386,0.016827298,0.0297589,0.024436088,0.011190115,0.00092182873,0.033248786,-0.08159726,-0.0062800264} 0.92 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:30:52.061944+00 2026-01-25 01:27:51.383716+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1249 google ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE 1 t 1252 Soho Club unknown Really good club!!! really good club!!! 5 2023-01-30 18:34:31.336452+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Really good club!!!"} {-0.032038897,-0.050189037,-0.0488456,-0.00063880644,-0.05250354,0.049070302,0.014030057,-0.06291898,0.013070188,0.013063345,0.0281106,-0.033755,0.026803343,0.009690405,-0.030347545,-0.0141384965,-0.040406387,-0.12521249,0.024104,0.016956901,-0.18341939,-0.06895173,0.016034737,0.041075137,-0.107939586,0.03109203,0.03665757,0.008299745,-0.018062957,-0.0010922279,-0.036090814,0.12396029,0.049031872,0.014405602,-0.051956337,0.015831854,0.031434752,-0.063526876,-0.017391479,-0.0036834062,-0.06507418,0.007218307,-0.009716559,0.012632576,-0.003816293,0.10504162,0.00859183,0.020265207,0.09185762,0.0382073,0.023525918,-0.008632567,0.031449866,-0.055632804,-0.019469164,0.033338476,-0.04993573,-0.042959545,-0.058838226,-0.10098267,0.11533632,0.023160506,-0.07586999,-0.042419445,0.035855222,0.022314526,-0.02614092,0.078019075,0.023561398,-0.02863922,0.057860654,-0.018019686,0.017409023,-0.01869333,-0.008131524,0.12248555,0.035382483,-0.037564628,0.09121645,-0.0010902719,0.008348196,-0.0562405,0.016942592,0.036920972,-0.016149137,-0.09152876,0.001453138,0.007977739,0.026800111,0.035062168,0.09762584,0.038505316,-0.102988176,0.012683465,-0.08671199,0.024369083,0.031444687,0.010884121,-0.11881394,0.06262687,0.02641049,0.14483237,-0.01982762,-0.078278944,-0.06340733,-0.004245614,0.042562407,0.15988263,-0.011804349,-0.020249562,0.034682892,0.008186186,-0.041611087,0.046629712,0.0054672244,0.068975545,0.07872464,0.0396555,-0.060467158,-0.029236963,-0.01086538,0.08712458,0.0009814161,0.0486778,-0.00187276,-0.04339472,0.062718436,-4.4913953e-33,-0.07724603,0.009229611,0.0034380264,0.053693485,0.020475788,0.04385754,-0.039904665,0.008369291,-0.13341773,-0.013330923,0.015014649,0.0035806813,0.039608788,-0.036078446,0.019441985,-0.023120772,-0.04198107,-0.16545801,-0.033320956,0.009115631,-0.044053968,0.056541447,-0.01888253,-0.026408635,-0.03981757,0.00042824238,0.012708097,-0.029886017,0.067208454,0.034982342,0.0010371772,-0.0013698854,-0.085618205,0.026851796,-0.00050459546,0.047467154,-0.0563902,-0.09689531,-0.079955496,0.020159733,-0.01997272,-0.0036244204,-0.034932733,0.007694874,-0.08992296,0.044880215,-0.06748015,0.030089973,0.070296966,-0.050022643,-0.027651588,0.0023436404,-0.08392627,0.031070631,0.015916718,0.0076773367,0.0067001875,0.049229197,0.026450511,-0.07939903,0.1108111,0.050869554,-0.053487685,0.022031996,-0.082303554,0.004497394,0.039129194,-0.027413059,0.0929412,-0.002276764,-0.00086555566,0.009913706,0.0013809011,-0.0070607495,-0.007873729,0.0059966566,-0.119971454,0.03843071,0.02748399,0.06290798,-0.0011854296,0.008842429,-0.01456639,-0.018504634,0.029399423,-0.018128239,0.0018207437,-0.080043994,-0.039297644,-3.5114583e-05,-0.035111703,0.0050606034,0.12908241,0.0067344327,0.080332585,1.4998399e-33,0.13222672,0.025349172,0.01683196,0.0028520296,-0.014179239,0.04962669,-0.059360117,0.021122048,-0.017106265,0.080427624,0.0028643925,0.008524151,-0.019389788,-0.013760473,0.012533498,-0.06829387,0.07208182,0.04128931,-0.018275946,-0.025314294,-0.051884655,0.036148693,0.0029961625,0.013632694,-0.028807849,0.011576957,0.047605902,0.061339356,-0.10895614,-0.0029143072,-0.012324265,-0.005383747,-0.0063202484,-0.019416125,0.008695101,0.06640463,-0.0010526434,0.044797868,-0.037706006,-0.007190747,-0.0053974027,0.014404397,-0.049514197,0.11295079,-0.018236639,-0.01370208,0.019932404,-0.007319437,-0.059637826,0.039186522,0.03673775,-0.04472705,0.003496046,-0.06482267,0.050506067,-0.07546134,-0.0025881198,-0.039935514,-0.019314514,-0.015166303,-0.077375025,0.03046646,-0.062138703,0.09943743,0.11607158,-0.035663024,-0.044737987,-0.020659162,-0.03914001,0.00057054346,-0.115383364,-0.001967104,-0.022318155,0.13383673,-0.022704663,-0.09413635,0.07725084,-0.03944359,0.011963696,-0.0084786285,-0.07178656,-0.087582864,0.056884665,0.038647104,0.03259124,-0.036265917,0.078614734,0.035362273,-0.010465157,0.11544208,0.009040515,0.06086998,-0.057080667,-0.027172863,0.037355095,-1.703675e-08,0.02023767,0.07707202,0.016694974,0.046825957,0.043143302,-0.014681641,-0.048909154,0.011055449,-0.027131971,0.07925768,0.044408053,0.0041247625,-0.07167067,0.038705885,-0.04679648,-0.018127149,-0.023722995,0.10271028,-0.022269133,0.013709288,0.0011917835,-0.023673756,-0.001064266,0.039520275,-0.017699415,-0.035725392,-0.041868445,-0.0008131286,-0.0471253,-0.050330006,0.021560673,0.10679015,-0.023043564,0.016076881,-0.023699235,-0.019811817,0.009348591,-0.03989677,0.025465552,0.06444527,-0.0488912,-0.0827159,-0.0043205,-0.043415014,-0.00057324977,0.033706456,0.014359067,0.0706261,-0.027413769,-0.054484654,-0.012328403,0.03510694,0.027738051,0.02593332,-0.018088032,0.003955457,0.0052720774,0.010782853,-0.019928778,0.046030343,0.04177773,0.0062710615,-0.06607152,-0.015482577} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:49:13.187267+00 2026-01-29 18:36:00.589968+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1250 google ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE 1 t 1253 Soho Club unknown Best baser best baser 5 2023-01-30 18:34:31.336452+00 de v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Best baser"} {-0.07107706,0.0047574933,-0.011082272,-0.094027266,-0.0040636337,-0.015480527,-0.015301855,0.124944866,-0.029936494,-0.012141848,-0.05062367,-0.0011007792,-0.019523088,0.06085958,-0.027829906,0.049689572,-0.014018228,0.06891628,0.017527636,-0.05671733,-0.11321536,0.010039108,-0.045565084,0.030291656,-0.001054802,0.042367633,-0.021946242,0.050724674,0.02561921,-0.13351691,0.0826721,0.024456326,0.07851444,0.012643327,-0.09686079,-0.009264509,0.01649405,-0.052753404,0.033631172,0.011855546,-0.011648341,-0.02213931,0.0608588,-0.00014078026,-0.027436635,0.04915882,0.026539998,-0.019214591,0.029452471,0.00021711388,0.030673567,-0.08162415,0.02833211,0.046048313,0.017423455,0.050265267,-0.043457683,0.01171799,0.03580236,-0.023597445,0.005351683,0.024743306,0.01491952,-0.08856025,0.004901483,-0.05066603,0.0791603,0.071423694,0.0016983205,0.03307963,-0.023826,-0.00084448117,-0.066942625,0.097072944,-0.03195607,0.03943375,0.03908249,-0.033466488,0.04626876,0.021997586,-0.036971748,-0.05152435,-0.012304016,0.067988984,0.07237538,-0.11269787,0.03287607,0.021458548,-0.044949662,-0.010490323,-0.015145926,0.03462568,0.01720484,0.030288259,-0.059439465,-0.02200616,0.0050102957,-0.042450882,-0.05590458,0.1456762,0.030731602,-0.008122442,0.00080421637,-0.049211,-0.034436837,-0.0234358,0.011358167,0.04135289,0.040672164,-0.016647944,-0.013491494,0.038436353,-0.12451042,0.0027363272,0.025736673,-0.026792439,-0.0064796275,0.015350281,0.030377835,-0.06779755,0.042363532,-0.035998017,0.024576789,0.03713385,-0.009086321,-0.13723761,0.04444782,-2.1933646e-33,-0.05061883,0.091740504,0.009496359,-0.015693503,0.033338316,0.04315587,-0.0017754881,0.100939535,-0.04441691,-0.022121916,-0.033757832,0.012552631,-0.030318165,0.00976241,0.08995659,-0.111357555,-0.05310762,0.034638505,-0.065727904,-0.02745095,-0.00094389723,0.081874825,-0.06929772,-0.015327305,0.057905536,-0.0050875945,0.0062337895,-0.09947948,-0.04372362,-0.034457367,0.028972887,0.027630616,0.017882455,0.0043499973,-0.0035415238,-0.010323847,-0.0316575,-0.00987939,-0.06015077,-0.07101407,0.027096491,0.015895914,0.024969213,0.048473123,0.06654236,0.04546581,-0.04265735,-0.031956296,0.031997755,-0.05938991,0.027545087,-0.014872632,-0.06571462,0.06515119,0.04299059,0.028032888,0.0023476172,0.045119263,0.035391726,0.053218115,-0.0091284765,0.032619044,-0.05491934,0.061164077,-0.058295213,-0.051329665,0.026231362,-0.085608914,-0.042523127,0.044575576,-0.028442847,0.04669618,0.15153645,0.00839251,-0.07316047,0.04151751,-0.014964115,0.053728715,-0.0701915,-0.06699259,-0.006423262,0.029672166,0.023820728,-0.041054025,-0.040042777,0.0011379116,0.026090415,-0.06405463,-0.009224567,0.15768157,0.010951834,-0.06571441,0.049516384,0.024516426,-0.030200843,2.6699453e-33,0.06119559,-0.015030044,0.07974129,0.10122152,-0.012169783,-0.00939514,0.059060354,-0.014336736,-0.036883343,0.0021783053,0.044296943,0.0014499082,0.0740039,0.017229699,0.046615314,0.005890934,0.044929113,-0.0373818,-0.04611846,-0.014288988,0.019710071,0.08685007,-0.06588715,-0.0070387856,-0.010817371,0.054299377,-0.092735305,0.060802218,0.007978883,0.05301654,-0.060396943,-0.019083796,0.08572072,-0.040530514,0.016469639,0.068760075,-0.08114315,0.04194119,0.013102434,0.022923503,0.020263623,0.065383114,-0.08762042,0.050874084,0.016460644,-0.070704535,0.032847483,0.07434287,0.035839412,0.03909105,-0.038331326,-0.030997446,-0.09552332,-0.030765358,0.027743861,0.0076000066,-0.024967741,-0.07366353,-0.019589184,0.009179369,0.017097034,-0.009455006,-0.014489623,0.050916165,-0.041130777,-0.005732574,-0.021027943,0.012664454,-0.026687685,0.04336702,-0.060364347,0.011802116,0.07760053,0.11796062,-0.007947868,-0.011103559,-0.017575204,-0.01886833,-0.06203962,-0.035289153,-0.15062709,-0.019793827,-0.04733656,-0.052925397,0.08657222,0.030502342,0.07097307,-0.061499067,-0.00089458964,-0.04572543,0.013243895,-0.0070197647,0.031176744,0.0570688,-0.019509677,-1.3569797e-08,0.006431498,-0.010986651,-0.052636754,-0.00981982,0.017788008,-0.0822672,0.07987669,-0.04515932,-0.026202505,0.051667023,0.02184746,-0.045259513,-0.07183279,0.015802829,0.12699978,0.021504378,0.032214887,0.002093803,-0.05699514,0.0006659302,-0.06471103,0.037173472,0.0174618,-0.09849678,-0.0870811,0.062389605,0.019495776,0.099792026,0.054278936,0.049227554,0.07043436,0.101997964,-0.0047208443,-0.002257144,0.07323451,0.08351189,0.0097881155,0.014284737,0.027190248,0.042022526,0.023883007,-0.025028583,-0.12852718,0.014009498,-0.02291348,-0.040028237,-0.035904456,-0.08934866,-0.019658457,-0.04244191,0.08662865,-0.010861534,-0.021323768,0.039499614,0.12712243,0.07852391,-0.020625113,-0.022242265,-0.06460166,0.021713013,-0.0013059704,-0.03819152,-0.02300341,0.07370795} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:49:19.775468+00 2026-01-29 18:36:00.596524+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 314 google Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB 1 t 317 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super Erfahrung hier gemacht. Das einzig schlechte war die Abholung vom Flughafen, die hat sich verzögert, weil es unterwegs einen Autounfall gab und die Fahrerin im Stau stand. Aber wir haben über die Hotline jemanden erreicht ( bei der Bandansage die 0) und wurden dann darüber informiert.\nIch hatte auch einen Super Wagen bekommen, gebucht war Seat Ibiza o.ä. und bekommen habe ich einen Audi A1 😁 ohne Extrakosten o.ä.\nUnd der geblockte Kreditkartenbetrag wurde sofort wieder freigegeben nach Abgabe. Top Service, super nette Mitarbeiter. super erfahrung hier gemacht. das einzig schlechte war die abholung vom flughafen, die hat sich verzögert, weil es unterwegs einen autounfall gab und die fahrerin im stau stand. aber wir haben über die hotline jemanden erreicht ( bei der bandansage die 0) und wurden dann darüber informiert. ich hatte auch einen super wagen bekommen, gebucht war seat ibiza o.ä. und bekommen habe ich einen audi a1 😁 ohne extrakosten o.ä. und der geblockte kreditkartenbetrag wurde sofort wieder freigegeben nach abgabe. top service, super nette mitarbeiter. 5 2025-09-27 01:27:48.341111+00 de v5.1 J2.02 {} V- I2 CR-N {} {"A1.01": "Und der geblockte Kreditkartenbetrag wurde sofort wieder freigegeben nach Abgabe. Top Service, super", "J2.02": "Das einzig schlechte war die Abholung vom Flughafen, die hat sich verzögert, weil es unterwegs einen", "O1.03": "Ich hatte auch einen Super Wagen bekommen, gebucht war Seat Ibiza o.ä. und bekommen habe ich einen A"} {-0.09338109,0.005616498,-0.08956094,-0.022259591,-0.08038866,0.057026085,0.031081997,0.11694955,-0.05579816,-0.0015663559,0.009641298,0.014480164,-0.06089958,-0.074549,-0.03848401,-0.049687885,0.04274229,-0.123004146,-0.081078395,-0.09142398,0.027087806,-0.052273057,-0.008918743,0.079376236,0.075212725,-0.05963924,-0.07060735,0.0566795,0.0035216708,-0.009263261,0.031590737,0.031128144,0.013443176,0.011280079,0.028762968,-0.0645587,0.0067741796,-0.05338704,-0.050977677,-0.0030049046,-0.011093475,-0.021768905,-0.07826786,-0.029197233,-0.0035523602,0.056037262,-0.019183634,0.051073708,-0.032675035,0.0544648,-0.0138784,-0.023178577,0.099814065,0.004553955,0.02739143,0.012306448,-0.08087454,0.0036874986,0.020660626,0.098697044,0.005220888,-0.017141799,0.009977779,-0.004044787,-0.024189495,0.033789147,-0.07219293,-0.028081765,-0.0817202,0.06609943,0.016975343,-0.11783971,0.021122316,-0.0067215944,0.082476996,0.020190218,-0.08461346,-0.038824406,0.0334566,-0.059604865,0.08531457,-0.1047718,0.050322287,-0.008587324,0.007219243,-0.07711129,0.10926611,-0.01906596,0.026235072,-0.016822644,0.07097783,0.0013704975,-0.044396933,0.003363197,-0.017558014,0.043158814,0.04884573,-0.037077945,-0.0170133,0.02670381,0.042030092,-0.084794745,0.015996045,0.06804944,-0.050814915,-0.018397842,-0.0049342574,0.07541918,0.05253338,-0.0012009615,-0.010511117,-0.041477323,0.004506002,-0.08718666,-0.013419721,0.027550912,-0.034175348,-0.034912128,-0.048681315,-0.035333913,0.019186337,0.05116195,0.009955213,0.063838765,0.025003828,0.046457008,0.0090580555,1.766753e-32,0.044039793,0.012961906,-0.029755313,-0.06856739,-0.014730553,-0.06531236,-0.038527638,0.03974808,0.039126895,0.10941911,-0.055863157,0.01633404,0.00027415567,-0.065298796,0.022896124,-0.027656076,-0.00040801748,-0.078975245,0.027926555,0.008815939,0.029584838,0.013441276,0.03213611,0.0403616,0.023061156,0.013339172,0.014802582,-0.055608615,0.024651503,0.0819073,0.023763923,-0.093689255,-0.05481349,0.049663663,-0.13409315,-0.03662798,-0.047860343,0.0005422006,-0.05107173,-0.042708777,0.03531111,0.03434653,-0.013338088,-0.021381503,0.048794806,0.016889004,0.02905225,0.04643173,0.09316353,-0.0017693192,-0.06994463,-0.00011588181,-0.026609343,0.008389733,0.043405216,0.12073751,-0.061458927,0.0909275,0.04305202,-0.05127652,-0.038547937,-0.048883196,-0.02716697,0.009753606,-0.060483743,0.03966447,0.02086269,-0.048691086,0.0050680675,0.006488035,-0.0016818723,-0.009824009,0.15598774,0.05265118,-0.034968253,0.082328364,0.0028331412,0.0051780073,-0.092914015,0.01723563,-0.006628872,0.017342208,0.09879045,-0.07484059,0.049533624,-0.044908464,0.013333742,-0.06768417,0.02261787,0.064727105,-0.07772293,0.010181352,0.04292608,0.013615086,0.007564215,-1.6998236e-32,0.06988105,0.041796926,-0.040591072,0.003937346,-0.003685763,0.093352444,0.014050693,-0.0027566075,-0.050533276,0.050232872,0.038268518,0.07096194,0.04289893,-0.01576882,-0.025800586,-0.09668532,0.037739273,-0.021135975,0.0073731784,-0.060695704,-0.0041686553,-0.034851376,0.058988817,0.056491874,0.0473543,0.0077529047,0.012501178,0.073937856,-0.01851399,0.019403698,0.03269288,0.025021395,-0.011451136,0.04739763,0.011000656,-0.007222632,0.03640659,0.047128145,-0.09440408,-0.013072664,0.048279643,0.025002321,-0.062346328,-0.036601823,0.09547803,-0.03016145,-0.08492584,-0.038359363,0.0046738894,-0.14763917,0.035950802,-0.038191695,0.015217689,0.04972218,-0.039746493,0.07184796,0.0029339802,-0.08568248,-0.10415224,0.0065795607,0.1214154,-0.047529142,0.043275103,-0.006772183,0.089892514,-0.07957864,-0.048922777,-0.02201919,0.022925295,0.015317013,0.07614888,-0.0318701,-0.04188284,0.04710648,-0.027157752,0.057784323,-0.0051477444,0.044646468,-0.036507674,0.033401817,-0.068722494,0.064208835,-0.0061573195,0.015082859,0.02163853,0.0020244666,0.03158949,0.042923253,0.033598166,-0.055523373,-0.010536394,0.044018652,-0.036793083,-0.010097638,-0.011261733,-6.74904e-08,0.032957233,0.007068036,-0.0016049705,0.008900225,0.04350675,-0.12548402,-0.048936974,-0.03811163,-0.013313925,0.0046692058,-0.054566886,-0.046183046,-0.08428898,0.011454735,-0.056838777,-0.004151639,-0.08432129,0.017437741,-0.039911084,-0.074141555,0.04058879,-0.06510108,-0.022154389,-0.09018355,-0.060489144,0.024717158,0.0028489467,-0.0074287723,0.026650589,0.002768532,-0.14705224,0.034069676,0.022289122,-0.102815606,-0.007831139,0.054707926,0.07419497,0.030559316,-0.04971775,0.035907455,0.08393911,0.001402299,0.044960037,-0.034874406,0.050206896,-0.058825035,-0.037400093,0.006544643,0.06697388,0.015748007,-0.014697371,0.007323002,0.021665854,0.057718486,-0.0225489,-0.063416176,-0.0213734,-0.06170651,-0.046876892,0.0353795,0.04100714,-0.06300073,-0.08789903,0.0662768} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:33:17.142169+00 2026-01-25 01:27:50.930151+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 373 google Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB 1 t 376 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4 llamé para cancelar y me dijeron que por qué no era antes de 24 horas no la devolvían …. Pedí que me cambiaran de coche por q el que reserve era demasiado grande y me dijeron que no!!!! De paso me quería cobrar un depósito de 2 mil euros en una tarjeta…: en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar nada dinero perdido sin poder utilizarlo ….: cuidado con este sitio un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4 llamé para cancelar y me dijeron que por qué no era antes de 24 horas no la devolvían …. pedí que me cambiaran de coche por q el que reserve era demasiado grande y me dijeron que no!!!! de paso me quería cobrar un depósito de 2 mil euros en una tarjeta…: en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar nada dinero perdido sin poder utilizarlo ….: cuidado con este sitio 1 2025-09-27 01:27:48.341523+00 es v5.1 J1.02 {J1.03,P1.02} V- I3 CR-N {} {"J1.02": "Un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4", "P1.03": "en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar"} {0.029430067,0.086600944,-0.037845954,-0.056136504,-0.098391265,-0.037524655,0.09864144,0.03828708,0.06696057,0.016436705,0.015700117,-0.04141697,0.001445419,0.0023651384,0.009392295,-0.04047761,-0.03548666,0.06244308,0.017614229,0.06694586,0.052032415,-0.05842741,-0.0880111,0.10945509,-0.022412462,0.014789899,0.019252032,-0.014258382,-0.046024688,-0.064931124,-0.018672135,0.0894687,0.020225713,-0.11987969,0.054400913,-0.06982256,0.035884038,-0.055374324,-0.017735997,0.03589029,-0.032715023,-0.015884195,-0.011470231,-0.101122595,-0.024902707,-0.013073761,0.026972294,0.09121737,0.04767021,-0.04285147,0.005543094,-0.017203508,-0.05156072,-0.046223108,-0.024919081,-0.06949494,-0.004590361,0.055758502,0.051856544,0.040181927,0.030656066,0.07111073,-0.07864939,0.031661056,0.02607149,-0.020512164,-0.021497745,-0.09108229,-0.080512576,0.09658437,0.07139575,-0.07264088,0.017270396,-0.04467436,0.0045214966,0.075242296,0.07387557,0.0075115375,-0.034361385,-0.026179533,0.04915487,-0.051327895,0.0039964374,-0.082063116,-0.0153912315,-0.025126738,0.0060165324,-0.0030345803,0.06906421,-0.05475213,0.03692629,0.08479104,-0.049907055,-0.004136612,-0.027369758,-0.0077632167,0.06299596,0.045173764,-0.015029007,0.014864047,0.15272209,0.10021301,-0.029531013,-0.010321267,-0.039867062,0.020952335,0.055767376,-0.008317433,0.008552391,0.006186331,-0.10380188,-0.030120704,-0.0012804965,-0.046968304,-0.122857794,0.094410405,-0.013869724,-0.09027154,0.021352135,-0.052799873,0.05720558,0.021713985,0.003873965,-0.04196917,0.016189478,-0.091806285,0.037623387,1.0931129e-32,-0.10349547,-0.0031569782,-0.014188538,0.030602785,-0.023082957,0.05952,-0.04121877,0.010154039,-0.07843111,0.038794458,-0.03987726,-0.035166297,0.01416042,0.044590306,-0.004353766,0.0014441619,0.05617571,-0.00916422,0.056205984,-0.020553848,0.0022544332,-0.007211245,0.0066271205,0.028020302,-0.0071713105,0.068722695,-0.02486432,-0.03507162,0.03340995,0.047283325,-0.041084785,0.02448232,0.0021865072,-0.031786766,-0.06793514,-0.027663548,0.004906067,0.024385862,-0.043337215,-0.031609673,-0.017469943,0.08541524,-0.035432957,-0.0070698545,0.041814324,0.018145228,0.061411418,-0.09440541,-0.02594674,-0.011303252,-0.058742546,0.007675969,-0.059649345,0.012966874,-0.036173146,-0.05360501,-0.034287944,-0.017871046,-0.067208156,-0.092339866,0.04793473,0.026604913,-0.014512157,-0.05565907,-0.084498085,0.020902848,0.042104032,-0.0034530119,0.06966326,0.062665164,-0.0026387372,-0.006997536,0.03527667,0.0362777,0.03725271,-0.022589836,0.017289447,0.0402445,0.0095950095,-0.01978462,0.003228127,-0.049935102,0.047745313,0.04685264,0.104183905,0.023095489,0.06753335,0.044403728,0.030845013,0.09039916,-0.062106393,0.03432531,0.06059032,-0.06400359,0.07900444,-1.2935504e-32,0.02716922,0.0651348,-0.034252368,0.015178358,-0.08953396,-0.016329162,0.004102996,0.044180185,0.059687708,-0.069518976,-0.035200957,-0.033104774,0.097834684,0.021274181,-0.052028436,0.0233776,0.0139769465,-0.14753585,-0.02871182,-0.05037108,-0.005023,0.021231655,0.012116783,0.052942783,-0.04566795,-0.07801579,-0.0034982471,-0.018263247,-0.015129958,0.011975446,0.015956957,-0.07983792,0.05743558,0.064071245,-0.028876107,-0.05030171,0.068811335,0.041013174,-0.025084855,0.045696348,-0.041585475,0.054474536,-0.05754425,-0.07973223,0.05091445,-0.023167437,0.05815418,-0.15069787,0.009120828,-0.07080238,0.070592776,-0.08275938,-0.06971291,0.01895413,0.026060652,0.0123556545,0.048385486,-0.0417168,-0.020679342,-0.019391477,0.058096956,0.047018893,-0.007112,-0.029632246,0.08211948,0.016233418,-0.073934816,-0.0024237921,0.036740266,0.0042520864,0.02931916,-0.019278584,-0.057110194,0.07494095,-0.0026603926,-0.0004813258,-0.03193491,-0.00072630815,0.07075955,-0.014067925,-0.06119606,-0.029215518,0.05004956,-0.029895075,0.026284872,-0.00018516123,-0.042966336,-0.01830334,-0.0276311,0.013069946,-0.009547812,0.016064266,0.010890094,-0.028401693,-0.02438515,-5.1247643e-08,-0.014450343,-0.060394984,-0.012431714,0.075447366,-0.022507027,-0.068794556,-0.036537275,0.037608452,0.0034292534,0.04529025,0.04358401,-0.07124768,-0.051266544,-0.016396416,-0.051426858,0.063761786,0.0107949665,-0.008234277,-0.048384923,-0.06859449,0.086462215,0.04878308,-0.072378635,-0.0684896,0.044608936,-0.019253636,0.033251364,0.065576926,-0.046575435,-0.07030323,-0.04313222,-0.04026233,0.025862062,-0.08434236,-0.0328816,-0.031712767,0.030397702,0.09431023,0.019544479,0.037010208,0.064675346,-0.10704384,-0.13415773,-0.018898143,-0.057457507,-0.054759197,-0.0499415,-0.018379403,-0.037264075,-0.018019246,-0.022124367,0.0042147217,0.12766433,0.04955134,0.11213144,-0.04328112,-0.026663065,0.066508316,-0.0451926,-0.0010686778,0.076174654,-0.011754309,-0.053201742,-0.06866663} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:32:04.735606+00 2026-01-25 01:27:51.159055+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1251 google ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE 1 t 1254 Soho Club unknown Very good 😻😻 very good 😻😻 5 2023-01-30 18:34:31.336452+00 af v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Very good 😻😻"} {-0.06554949,0.016313365,0.030736398,0.025934877,-0.018110087,0.0039867484,0.08111177,-0.033181965,-0.03847349,-0.037443366,0.033036076,0.014369479,0.0179572,-0.00672237,-0.001068028,0.012625651,-0.0028790995,-0.08985577,0.00291786,0.011490399,-0.1442678,-0.04629135,0.10571088,-0.008336192,-0.09855358,-0.020505724,0.033499654,-0.009292447,0.06358168,0.0038940238,-0.05560973,0.056645125,-0.026791193,-0.0012462516,-0.06437897,0.0462792,0.03834078,-0.08156738,-0.00036517833,0.014460508,0.019924095,-0.059844285,0.01737105,-0.051298253,-0.004636392,0.05015755,-0.029801248,0.013177857,0.053241428,0.016745578,-0.10241571,-0.0071594277,-0.047169216,0.027748961,0.010619433,-0.015754256,-0.06508102,-0.016861254,0.006750171,-0.14443448,0.055096954,0.051691424,-0.05612431,-0.022824608,0.08164722,-0.054269258,-0.028749991,-0.036580756,-0.029700037,0.034167472,0.02332885,0.0076294136,-0.08041414,-0.105913594,0.011528896,-0.029787853,0.06583551,0.019481897,0.015803015,0.007896349,-0.005116112,-0.0013713618,0.02053446,0.043156676,-0.071507424,-0.02028118,0.023591086,0.05717818,-0.0026870363,0.030381942,0.07445787,0.04339865,0.018975032,0.0020499718,-0.020767028,0.016817944,0.065986216,-0.10468657,-0.054857142,0.07193832,0.043248396,0.040841695,0.029349472,0.029501589,-0.027109716,0.023761904,-0.03446826,0.08104521,-0.039184116,-0.09402422,0.025469104,-0.041834444,0.0046778163,0.050283156,0.054649238,0.029641178,0.030668344,0.023829157,-0.010386677,0.046356406,0.046776123,0.030227317,-0.03301237,-0.020146457,-0.09986417,-0.060504828,0.05880783,-1.841784e-33,0.011690967,0.030628575,-0.019399889,-0.036849245,0.04512958,0.067861155,-0.036126904,-0.011400593,-0.04255249,0.026579354,-0.07907561,0.06936713,0.009996757,0.025001587,-0.024916116,0.03546751,-0.03536385,-0.045328215,0.12617858,0.10539634,0.018183503,-0.0479586,-0.022197625,-0.012338988,-0.040144887,-0.0053989124,-0.034750853,-0.063821115,0.044694457,0.040313493,-0.023669513,0.0200408,-0.032018024,0.009355819,0.025750997,-0.04310407,0.0071779634,-0.012896768,-0.016456665,0.04194798,0.0023227702,-0.027398508,-0.01909028,-0.08567335,-0.03701808,-0.02160866,-0.11813001,0.04586054,0.043445773,-0.004259632,-0.012437429,0.056408357,-0.10508175,0.025880303,0.04200161,-0.036953606,-0.033847466,-0.021960178,-0.028291032,-0.027249638,0.13464813,0.051682703,-0.06651558,-0.009981176,-0.11899648,0.024874419,0.021124505,-0.0703884,0.08043193,-0.07464177,-0.04795327,-0.0064197057,0.08558602,0.052800823,-0.0024125504,0.006136645,-0.06363489,-0.0068413536,0.014046725,-0.0020420442,0.028199837,0.020488733,0.025619412,0.0021608523,-0.0018708741,0.0052163983,-0.029379718,-0.08823915,0.00015112502,0.056369912,-0.06815699,-0.027779188,0.14688778,-0.033585202,-0.027571904,1.6753636e-34,0.07459128,0.14650892,-0.004752565,0.06238443,-0.1108802,-0.015834462,0.021567084,0.12741211,-0.0063509373,0.013232551,0.019920649,-0.011540055,0.0017047607,0.024293736,0.00046105456,-0.009554179,0.10051601,-0.011788604,-0.03401977,-0.013272747,-0.014705161,0.01376857,-0.07490937,0.0304551,-0.05593244,0.0211395,0.038556874,0.0029937865,0.034009524,-0.08770455,0.03457256,-0.054090112,-0.058663353,-4.654888e-05,-0.003996793,0.059165344,0.025220415,-0.03343452,-0.1061299,-0.011103981,-0.010875676,-0.023782287,-0.03378792,0.11942502,0.01753079,-0.009588666,0.039013784,-0.0067758393,0.00077629864,0.00895756,0.09315418,-0.065963,-0.023832351,-0.012632679,-0.04575222,-0.039068345,0.05682736,0.017167822,0.05473287,-0.002403298,-0.08015232,0.031641968,-0.04255686,0.035852976,0.005852981,-0.01994307,-0.03896595,-0.044304132,-0.055084452,0.00021529222,0.08326102,0.0052800956,-0.052901655,-0.02826965,0.042753242,-0.031757463,0.011990745,-0.045864504,0.035667315,-0.03548441,-0.08565954,-0.055620257,0.037380002,-0.09940649,-0.023387346,-0.046798997,0.037185125,0.025098251,-0.020816036,0.08389202,0.045353886,0.107983135,0.03199735,-0.11498476,0.073630646,-1.4819245e-08,0.056206334,-0.010292457,0.0587381,-0.009381171,0.008361894,-0.007176328,-0.034320842,-0.03364408,0.012695725,-0.022965217,0.13556992,0.045625724,-0.07619828,0.07185992,-0.020334205,-0.06574681,0.034482818,0.17518857,0.012378019,-0.061520815,0.045496345,0.045925148,0.015781907,0.1037471,-0.020223044,0.051005203,-0.008028662,0.055257704,-0.05406705,0.054570194,0.104927376,0.12087769,-0.07723967,0.006195966,-0.017090516,-0.0016750366,0.0044372412,0.0048554996,0.03675329,-0.029441187,-0.05960915,-0.08715642,0.055168014,0.012699526,-0.0011694407,-0.051987603,0.026964756,0.068425894,-0.031082459,0.0063370327,0.037585314,-0.01582881,-0.0473238,0.052066606,-0.017419258,0.06287628,0.014533316,-0.001595015,0.037577275,-0.0041431407,0.055820502,0.050000213,-0.055288933,0.0411442} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:49:25.487616+00 2026-01-29 18:36:00.599297+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 565 google Ci9DQUlRQUNvZENodHljRjlvT2w5UVEycDBTUzFRV2sweWFrcHljbUpDVUVOcVdFRRAB 1 t 568 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Günstig und unkompliziert, nahe am Airport mit shuttle service günstig und unkompliziert, nahe am airport mit shuttle service 5 2025-08-28 01:27:48.342585+00 de v5.1 P1.01 {J1.01} V+ I2 CR-N {} {"P1.01": "Günstig und unkompliziert, nahe am Airport mit shuttle service"} {-0.038465615,0.07475919,0.005775525,0.0005023489,-0.028220257,-0.013881023,0.11579662,0.09171081,-0.03401246,-0.016436798,-0.042503178,-0.02195006,0.022321265,-0.018655628,0.0016323274,-0.05116853,0.023262747,0.043466207,-0.025803398,-0.018305646,0.012095936,-0.01926376,0.027728047,0.048578765,0.0156068215,-0.012685454,0.070972174,0.019958364,0.015612868,-0.10329911,0.012640382,0.005906917,-0.10746364,0.008761011,0.0773379,0.018941397,0.013845027,-0.056247335,0.016598297,-0.011717041,-0.012842109,-0.01074848,-0.049439207,0.020762624,0.043315057,0.02308776,-0.059950028,-0.0115052,0.004856589,0.0148785105,-0.036184378,-0.006341473,0.034234464,0.011906298,0.058767434,-0.08191635,0.0016793692,-0.0009846798,0.016602185,-0.056032564,-0.04671715,-0.0131578315,-0.060159273,0.054092195,-0.07599684,0.021391511,0.024066882,-0.053731177,0.05667809,-0.08064759,-0.011166749,-0.009363563,-0.049270377,0.0120095825,0.009582451,0.040940627,-0.013977074,0.092732064,0.01113546,-0.03577777,0.092432216,-0.049061567,-0.011525899,0.009674257,-0.025475426,-0.041881762,-0.041690867,-0.0398888,0.056193244,0.0185504,-0.0275014,0.03585359,-0.035329483,-0.025436778,-0.04034384,-0.050859917,-0.040991005,-0.027044326,-0.043195188,0.06927621,0.027142258,0.09890161,0.029521963,0.07937,-0.03325819,-0.009424979,-0.008364754,-0.07730227,-0.032398727,0.030872094,-0.03422361,-0.0800835,0.013443405,-0.048777625,0.02027058,0.094833165,0.0045836903,-0.06544208,-0.029362176,-0.05633752,-0.03062832,-0.07120693,0.0399388,0.05429619,-0.025799714,0.049555615,0.08026545,2.1334464e-33,-0.10934738,-0.057877894,-0.009952003,0.050249126,-0.024783181,-0.09840826,-0.16895789,-0.0010319354,-0.008443001,0.01856716,-0.081887335,-0.0044819484,-0.080629416,-0.028147157,0.092451684,-0.028096134,0.07350632,0.007530388,0.06437631,-0.021977717,-0.04689711,-0.036459472,-0.00080406904,0.020445004,0.10005937,0.06392493,-0.012745288,-0.009135141,-0.035387494,0.040086225,0.011565436,0.009971554,-0.031779565,0.042815425,-0.08938969,-0.08900755,-0.023109779,0.029254062,-0.026260922,-0.01565939,0.015391923,-0.04015929,-0.05799155,-0.055111203,0.056975845,0.007383731,0.0017657982,-0.052086454,0.109158486,0.019398078,-0.047904506,0.050276365,-0.010678224,-0.0055003366,0.023139738,0.031270783,-0.010748121,0.033748068,-0.0028367154,0.0037429198,-0.0081154965,0.03639666,-0.003593953,-0.002240989,0.14682035,-0.009020848,-0.046178423,0.048543356,0.11190061,0.057905182,-0.028232196,-0.0019789352,0.124356575,0.04366352,0.028813954,0.016841104,-0.05349148,0.06386577,-0.024210501,0.011567459,-0.029768268,0.012784208,0.008424714,0.018804312,0.055658188,-0.050160978,0.027970819,-0.017762834,-0.008229018,0.062648304,-0.10971722,0.046159737,-0.06677125,0.06879472,-0.034393486,-3.755598e-33,0.0881149,0.07890185,-0.08538207,0.038956597,-0.10549923,0.071104676,0.031536173,0.0661543,-0.028777536,0.08308459,-0.106192514,-0.05928716,0.11607159,-0.01571331,0.01981124,-0.024072438,0.04043211,0.0071683805,-0.095150106,0.028033763,-0.021095097,0.0064195003,0.013399398,-0.058469806,-0.004071491,0.04972106,-0.0108688725,0.06762897,-0.1309409,-0.012075092,-0.017861392,0.07114483,0.096659884,0.019016812,-0.032299887,-0.025270894,0.11615465,0.14643078,0.019685645,-0.020237613,-0.036092844,0.03453486,-0.027459837,-0.014077515,0.0895558,-0.059540924,0.0014638621,-0.007226168,-0.023106685,-0.060192622,-0.052084986,-0.020558318,-0.0019058055,-0.009105709,0.03054869,0.037425317,0.001689919,-0.05900917,-0.010727991,0.05250797,0.14230639,-0.00014955823,-2.8674633e-05,-0.03236058,-0.0039780345,-0.063524656,-0.042023033,-0.024067607,0.026287906,0.062161088,0.032928832,-0.00082209974,0.053841673,0.06918081,-0.028326437,-0.009424246,0.08956857,0.08209283,-0.027019585,-0.04396811,-0.04680199,-0.006452602,-0.107794285,0.042271405,-0.047088563,-0.0012298824,0.06734804,-0.06921014,0.045457397,-0.08381512,0.0009450273,0.037412398,-0.0046276874,0.029303564,-0.011086316,-2.450098e-08,0.036884364,0.0013281007,-0.0800716,0.021436,0.037081096,-0.076250166,-0.063341565,-0.00083978043,-0.11312089,-0.06972972,0.045943934,0.020607317,-0.12443432,0.10565899,-0.0035872837,0.06714529,-0.09496929,0.051461186,-0.03768751,-0.057949387,0.04005341,-0.06038611,0.010663069,-0.015597342,-0.02128971,0.040200416,-0.028734338,-0.08122461,0.09822971,-0.011584042,-0.04943414,0.021395544,-0.038213,-0.0008711222,-0.06403001,0.030856924,-0.009787287,0.049039964,0.006353852,0.049989797,0.038280893,0.023987448,-0.011332583,-0.021675214,-0.023681082,0.06533635,0.012779803,0.032468837,-0.04023348,0.03253696,-0.07034697,0.009390885,-0.0040323734,-0.0071061105,0.017668638,0.070209526,0.03338111,-0.05990501,-0.010490364,0.018955678,-0.049134206,0.017009223,-0.036248837,-0.021133713} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:31.133936+00 2026-01-25 01:27:51.888459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 579 google Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB 1 t 582 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Cuidado con que te ofrezcan seguros que ya tienes contratados. Elige la retención de 1000€ cuidado con que te ofrezcan seguros que ya tienes contratados. elige la retención de 1000€ 5 2025-08-28 01:27:48.342679+00 es v5.1 P1.02 {} V- I2 CR-N {} {"P1.02": "Cuidado con que te ofrezcan seguros que ya tienes contratados.", "P1.03": "Elige la retención de 1000€."} {-0.047491174,0.050490458,-0.052509125,-0.019325407,-0.0134338625,-0.038690086,0.05501244,0.10492889,-0.007153058,0.03639831,-0.012140522,0.041037485,0.04285937,-0.027115475,0.0040763104,0.014335034,0.021728272,0.0073434818,0.049739353,0.0043561687,0.07061636,-0.07020122,-0.05648256,0.06330193,-0.0555116,-0.02618287,0.0010777841,0.015405091,-0.028710691,-0.05529381,-0.007577673,0.08784584,0.009721837,-0.012471933,-0.03707762,-0.031300317,0.09927881,-0.08128645,-0.11943075,0.048930306,-0.13561861,0.03559223,-0.09123032,-0.053131256,0.034015723,0.0026752253,0.0052636783,0.12735203,0.037536427,0.045561377,-0.02730589,-0.027332382,-0.045287643,0.010626733,0.026695605,-0.011434574,0.006037808,0.0016384763,0.05259585,0.047565248,0.033100788,-0.021893052,-0.11629773,0.042244036,0.032011904,-0.025359241,-0.017619463,-0.028463682,-0.06853415,0.03408787,0.04182826,-0.09871262,0.096756615,0.0010667455,0.010799166,0.0084593445,0.06491849,0.008358775,-0.014535352,-0.067249365,0.051405422,0.01950362,-0.060186263,-0.057905752,0.03001727,-0.03578741,0.009725979,0.005545427,0.075978756,-0.0074598626,0.03487862,0.05389705,0.0011935355,-0.009153414,-0.03738873,0.041872267,0.024217943,-0.06358326,0.03362625,0.037053782,0.123616256,0.0059053223,0.09494304,-0.03794744,-0.035678644,-0.026057292,0.04131373,0.035006553,0.02418424,0.029509567,-0.07782253,-0.072137184,-0.0038215972,-0.073885344,-0.10584191,0.00490724,0.036718875,-0.025924632,0.050944213,-0.12669107,0.022827059,-0.0037413235,-0.011779051,-0.060349144,0.031678967,-0.051245514,0.02220588,5.978627e-33,-0.054139692,0.057060394,-0.0576585,0.045158386,-0.051049203,0.022837592,0.017105307,0.023575177,-0.029469835,0.019357653,-0.0012058207,0.0882373,-0.028292056,0.022746867,0.08503478,-0.05795203,0.0056802994,0.036252018,0.022932796,0.053935606,-0.08464857,-0.06072954,0.045014665,0.029797409,0.04705956,0.054722868,-0.020608326,-0.017828032,-0.0046207025,0.0125694135,0.013657426,0.042354245,0.036761876,-0.053897854,-0.036600385,-0.010094933,0.092408,-0.0314907,0.00054199266,-0.026637005,-0.018142667,0.013788896,-0.045727383,-0.0027039824,0.024027864,0.0070995875,0.049655654,0.044044096,0.090391256,-0.03271581,-0.03377771,-0.033670373,-0.11400335,-0.040898517,-0.07701116,0.0017311833,-0.077463746,0.0029400617,0.055823497,-0.03485292,-0.0108117135,-0.06567585,0.018899303,-0.044051908,-0.06480289,-0.048498865,0.04972566,0.020709101,0.08219477,0.028806407,-0.11219703,-0.010843463,0.07588584,0.03508046,-0.03727406,0.006387508,0.0013939103,0.07392228,0.012441443,0.07154335,-0.09615795,0.011519716,0.03982785,0.07724042,0.07769976,0.029373541,0.06642631,0.05823928,-0.0005962586,0.09442777,-0.011650471,0.109649405,0.008832308,-0.056569707,0.061060663,-7.622265e-33,-0.026833402,0.0032708196,0.017844778,0.030867385,-0.035838827,0.0113249,-0.011957977,0.015687628,-0.037538316,-0.07824092,-0.019651793,-0.10344199,0.061531562,0.00030176982,-0.071781866,-0.01235568,-0.015844438,-0.12114713,-0.054064114,-0.0727151,-0.011485361,0.090514414,0.09841244,0.0123818545,-0.03461449,-0.06778977,-0.061988097,0.06629639,-0.03291897,0.005334906,0.028242214,-0.06543219,0.0041078064,0.04152645,-0.023089604,0.0477944,0.04440796,0.08145286,-0.015047537,0.090527475,0.042256992,0.081156954,-0.077559456,-0.05977774,0.019532265,-0.04617751,0.020494979,-0.13172705,-0.028959416,-0.09236164,0.15026443,-0.033081893,-0.006184979,-0.07883236,-0.032029,-0.0140396105,-0.054245967,-0.05772527,0.0017882187,-0.0022467468,0.07945861,0.03204484,-0.023973016,-0.0016743641,0.05978406,0.036718253,0.010264185,0.0034823464,0.064507194,-0.01016409,0.007938389,-0.0508418,-0.0027303612,-0.035133295,-0.074861795,0.019785168,-0.034723468,-0.008007985,0.03114334,-0.012065183,-0.010327259,0.014339273,0.0760054,-0.008425304,-0.023204746,0.012824632,-0.039592486,-0.012240565,-0.0010490471,-0.00036761805,-0.11780094,0.008348313,-0.04724364,0.003232232,0.03075946,-3.32187e-08,-0.035729468,0.002609269,0.009046388,0.009417157,0.054546252,-0.082584485,0.04094115,0.021080926,-0.0011148856,0.07419603,0.008828738,-0.072810695,-0.07129841,0.03244326,-0.00868175,0.024573388,0.053311065,0.0666715,-0.037086762,-0.0028043874,0.038436513,0.03233,-0.05162126,0.016272038,0.06786583,0.016631104,-0.025870169,0.046671793,0.019344635,-0.053871933,-0.034546223,-0.043785807,-0.04039013,-0.030435352,-0.028162437,-0.054885708,-0.07826967,0.058523726,0.033256397,0.012246223,0.08979849,-0.04346775,-0.07731048,0.018992046,-0.124301,-0.104478635,-0.080572404,-0.013207914,-0.01034455,0.0075843865,-0.038898062,0.03451149,0.056003183,-0.027563864,0.07273488,-0.07455651,0.022759793,0.042400967,-0.07822519,0.04130961,0.027752988,-0.020018972,0.052169606,-0.057522126} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:26.648214+00 2026-01-25 01:27:51.935236+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 599 google Ci9DQUlRQUNvZENodHljRjlvT21OTU5EQjVWMGxJU0cxd1pqTmxObmd5T0hCRVZHYxAB 1 t 602 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buenas experiencia buen trato y rápido buenas experiencia buen trato y rápido 4 2025-08-28 01:27:48.342801+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Buenas experiencia buen trato y rápido"} {0.026439296,9.6872274e-05,-0.01645551,0.01957346,-0.06683489,-0.0067788973,0.12625223,0.029259164,-0.038749766,-0.017026788,0.14121595,0.02684109,-0.09204067,-0.013861592,0.03348329,-0.014446122,0.062190063,0.04906904,-0.0011508627,-0.023414949,0.035343125,-0.09847948,-0.04931414,0.08539003,-0.04511752,-0.06987976,-0.012462704,0.08042677,0.048206825,-0.06761894,-0.0382911,0.07976294,0.08949595,0.02506839,-0.043841127,0.042260673,0.049627006,0.01171474,-0.0020303533,0.06101237,-0.107268915,-0.0703541,-0.015066334,-0.042031996,0.00443426,-0.0911006,0.025264015,0.11785381,0.0432382,-0.052145705,-0.078196794,-0.0026978482,-0.013873007,0.024779407,-0.015104692,0.07340334,0.008812766,-0.01223469,0.017747764,-0.031494763,-0.043272406,0.012308093,0.0017110065,0.007872276,0.063696004,0.016100582,-0.038666032,0.053403642,-0.040370826,0.006399138,0.05199487,-0.0744602,-0.023247939,0.0748975,-0.06273291,-0.011241512,-0.020544278,0.018729776,-0.03855704,-0.054097194,0.056887068,-0.017936675,-0.054564863,0.013883307,-0.009040159,0.007322576,-0.044816624,0.00425043,0.010395168,0.025122,0.026425302,0.018705817,-0.0722795,0.010570401,-0.035346866,0.023442531,-0.027952746,-0.08688061,-0.026268363,0.08306528,0.0657909,0.06478139,0.115805194,0.05211634,-0.041560315,-0.0064423066,0.07272008,-0.000981815,0.061596256,0.03298034,-0.08281031,-0.051072463,-0.086487986,-0.023557397,-0.04253289,-0.009802982,-0.034543764,0.012390841,0.031303044,-0.05413424,0.030933427,0.08317047,-0.015597919,-0.007024098,0.023330461,-0.030865755,0.048890233,5.545803e-33,-0.0049553253,-0.059067912,-0.006723955,0.08660441,-0.0045186337,0.052050643,-0.020475065,-0.021774806,-0.07183167,0.005144272,-0.03496433,0.042267017,0.043877948,-0.016404312,0.064938255,0.02740512,-0.026212128,0.07136706,0.00020439364,0.012102193,-0.075144075,-0.09139358,-0.042970836,0.008461501,-0.017486608,0.053587653,-0.051278837,-0.05716094,0.07256006,0.05778906,0.050220285,0.11251787,-0.040579338,-0.08959171,-0.027836371,-0.031151969,0.0007210143,-0.028729632,0.011268356,-0.004891216,-0.039923523,-0.009439752,0.020229135,0.027739553,-0.0054162396,0.0064761546,0.056532282,0.02780365,0.060151707,0.028304487,-0.040923692,-0.07265417,-0.09847257,0.023354603,-0.0051174755,0.078695945,-0.03378249,0.1154421,0.025358886,-0.039934773,0.0009279524,0.075162254,0.009886796,-0.053284865,-0.06048549,-0.052348368,0.050871357,0.01769596,0.13526142,0.018289184,-0.10813185,-0.025099894,0.021465389,-0.04074719,0.038294367,0.004981912,-0.023028504,-0.044102438,0.06026527,0.005858774,-0.092245385,-0.029481448,-0.006120764,0.05814357,0.11143747,0.09237175,0.021767676,-0.028648296,-0.005493582,0.08277015,-0.05428044,0.10057052,-0.032889634,0.0287278,-0.00011667497,-5.935195e-33,0.04145456,-0.048947994,0.017004272,0.018127983,0.04179953,-0.027306374,-0.121325605,-0.019720651,-0.06888683,-0.045604136,-0.047465965,-0.15434138,0.077524245,0.042452943,-0.01998327,0.020252185,0.052866705,-0.0549161,-0.052091327,-0.08123422,0.04578312,0.0079855,0.04160226,0.06729936,-0.071683325,-0.02553083,-0.017015755,0.016649526,-0.08067115,-0.014849811,0.027148718,0.00842522,-0.09685629,0.08200398,-0.017786544,0.049375996,-0.0006721377,-0.007107405,-0.0001201884,-0.0013987,0.046042472,0.036988944,-0.009076904,-0.052566025,-0.02408666,0.048290852,0.008346403,-0.088796884,-0.0004944943,0.0019571672,0.08222996,0.008019962,-0.038069647,0.005505419,-0.0103742,-0.06382101,-0.08000983,-0.13639937,-0.12486777,0.008158239,0.032941572,-0.024325116,-0.046617582,0.02205065,0.07904292,-0.03420853,0.0009738017,0.02665506,0.032648448,0.035991803,0.032940306,-0.02340796,-0.06878367,0.054018103,-0.02157538,-0.06770027,-0.05898768,-0.07220562,-0.0029878763,-0.054713883,-0.047510166,0.025314122,0.014867222,-0.04492978,-0.08877075,0.0041302,-0.047824327,0.0066154073,0.048688553,0.02084028,0.03870353,0.06591037,-0.017398963,-0.08277871,-0.07279961,-2.5740057e-08,0.020225493,-0.019593628,0.048278164,0.041714247,0.09809076,-0.0195134,-0.06958088,0.08496289,0.0016556511,0.015068003,-0.043089557,-0.029401341,0.021624023,0.060399126,0.037889518,-0.00035649992,0.1434172,0.014854369,-0.017726254,-0.08198643,0.090743266,0.030944083,-0.049555935,-0.011833508,-0.014377802,0.013670654,-0.01586016,0.05102338,-0.03156845,-0.013364372,-0.013147266,0.049095217,-0.030191809,-0.037608795,0.018513225,0.015569908,-0.026492665,-0.072632395,-0.010140842,-0.048365977,0.0020466591,-0.0012033253,0.022777334,-0.007044091,-0.051268402,-0.06410673,0.010436917,0.024806924,-0.009199663,-0.040469892,-0.023998959,-0.061509065,0.06353921,0.09696677,0.041984543,-0.028963184,0.033438332,0.0019558952,-0.00036880406,0.006917238,0.052684255,0.079017565,0.02171561,-0.035105858} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:10.831252+00 2026-01-25 01:27:52.009555+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 635 google Ci9DQUlRQUNvZENodHljRjlvT2pkdVRWTlhia0pJVUdoWVlUQXlkbTV1UkhoTWJtYxAB 1 t 638 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo Oks perfecto. todo oks perfecto. 5 2025-08-28 01:27:48.342999+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Todo Oks perfecto."} {-0.0486586,0.07326718,0.098396175,0.062886,-0.024414513,0.029950058,0.08329995,0.0046747155,-0.069521725,0.06727624,0.04576372,-0.037449308,-0.037832685,-0.0035900015,-0.0015973776,-0.012822272,0.022093242,0.09314606,-0.08391548,-0.04280776,0.033007827,-0.025767166,-0.0072323773,0.048342742,-0.107299566,0.045611784,-0.007327538,0.021631805,-0.034205858,-0.019941466,-0.042376813,0.03255108,0.11496023,0.0033085807,-0.02434383,-0.021665178,0.07474439,-0.041470855,0.027084056,-0.018117802,-0.067858376,-0.022716813,0.0010387829,0.033752453,-0.022492787,0.030436305,0.0067202062,0.06621338,0.09635735,-0.07107017,-0.056961566,-0.06406101,-0.06541754,0.028154042,0.03648342,0.117699906,-0.05822045,-0.035380047,0.026108416,-0.0031478375,0.035619233,0.008965244,-0.049855504,0.08826818,0.06316342,0.06413203,-0.019970784,0.023082968,-0.07690996,0.047218464,0.014985159,0.02772966,0.06140671,0.08754137,0.031233612,-0.0015166238,0.011203861,-0.01831742,-0.05686974,-0.012453435,-0.10372469,-0.102785066,-0.0017343947,-0.038892712,0.0050705946,0.060109276,-0.025903992,-0.027579224,0.05303253,-0.028220275,-0.12174276,0.045837674,-0.06416227,-0.047978923,0.023602538,0.012679412,-0.033222284,0.030639516,-0.035644475,0.063215666,0.09340336,0.07827707,0.08008639,0.05011806,0.045894973,0.054063063,-0.0055220323,-0.023285072,-0.032884896,0.06281433,0.00069133326,-0.036475617,0.016961731,0.061376307,0.015677257,-0.055159427,-0.03629756,-0.074576944,-0.019281924,-0.004520169,0.043356027,0.033035185,0.0038449345,0.025003994,-0.085439295,-0.049487073,0.080249354,-2.472159e-33,-0.051160097,0.018314049,0.06471109,0.013118622,0.045043785,-0.002313674,-0.113662556,-0.02690799,-0.11367207,0.027060429,-0.061079912,-0.02657155,-0.04800743,0.0071745995,0.014949399,0.018965198,0.0721507,0.08907428,-0.0003629701,0.045338742,-0.038540635,-0.08656118,-0.031158248,0.014477644,0.018906128,0.06262752,0.0016341009,-0.07181946,0.013121296,0.039192848,-0.060013875,0.03256775,-0.0139195165,0.01889087,-0.098628104,-0.06815177,-0.016092803,0.0039909165,-0.051463623,-0.04293168,0.06483995,0.0529044,-0.059766714,-0.008230993,0.046056096,0.0006275184,0.06111461,0.010249591,0.15134081,0.054736808,-0.026239347,-0.097638525,-0.020298801,-0.05340866,-0.0014145104,-0.047700875,0.012919926,0.0086274,0.029227296,-0.02424144,0.05175212,0.01648321,-0.09609184,-0.09433849,-0.09599882,-0.04273983,0.008489236,0.027725525,0.03919095,-0.009321339,-0.073668346,-0.01824669,0.008639816,0.072339594,0.0030345588,-0.06026003,0.045375746,-0.026400654,0.021769274,0.043721993,0.0038152805,-0.0027130982,0.0016083695,-0.029792892,0.119055696,0.052387763,-0.02395487,-0.03475073,-0.076549456,0.072271444,-0.03171034,0.0528938,-0.016981145,-0.029221762,-0.00021660009,1.44261185e-33,0.046198223,0.050466754,-0.01923447,0.1093527,0.029560607,-0.020683432,-0.060950786,0.051600423,0.07320808,-0.06360608,0.00027822392,-0.07278562,0.087860614,-0.021782542,-0.0028372167,0.030261198,0.036895182,-0.009248643,-0.057782326,0.026744358,-0.046134897,0.070988685,0.064767,0.045646746,0.010087079,-0.033875845,-0.008450445,0.05036946,-0.04793193,0.03443105,0.0726805,-0.08461102,-0.107528016,-0.051030245,0.045274258,0.034813583,-0.040178448,-0.011801553,-0.054586563,0.029359058,0.03427116,0.0077980612,-0.02807941,0.069693446,-0.03226724,0.06753005,0.025576934,-0.060396172,-0.095544405,-0.054212745,0.09644954,-0.016532883,-0.0630647,0.042879395,0.059617937,0.027684353,-0.014390419,-0.035324465,-0.07627974,-0.08888595,-0.0069193156,-0.00043760112,0.0019895097,0.030602895,0.056110464,0.020777844,-0.052339938,0.07144534,-0.034097895,0.06884923,0.024069931,-0.013762291,-0.14730428,-0.0142080765,0.00070246,-0.021703178,-0.053647507,0.044509172,-0.022775145,-0.00027288246,-0.01290713,-0.030820249,-0.05750461,0.03807396,0.06005259,-0.0639567,-0.0006115713,0.003907363,-0.04789395,0.040049266,0.0052846987,0.050441414,0.028070318,0.04075362,-0.019835114,-1.8357404e-08,0.01912642,-0.022182055,-0.11972968,0.015033076,0.04749165,-0.06779671,-0.012723521,-0.0011352825,-0.0053732404,0.03812182,0.020791154,-0.016338212,-0.026521761,0.046811722,0.017596096,1.3936159e-05,-0.018715067,0.07149331,-0.015079291,-0.020105038,0.07106664,0.021588607,-0.025812028,-0.030717043,0.03578939,0.058744438,0.002591096,-0.030351043,-0.06085375,-0.0011379134,0.06888755,-0.053016208,-0.06806562,-0.028763322,0.029351916,0.020857023,-0.030242505,-0.048864678,-0.02782835,-0.08326866,0.03804269,0.0747672,0.07419836,-0.026310867,-0.058045797,0.004434758,0.10199089,0.018087275,-0.01132012,-0.030700607,-0.03821993,-0.025887126,0.08952434,0.03224637,0.022936558,-0.022944842,0.13172744,0.0033029057,0.02550542,0.007268023,0.103901386,0.0972704,0.014728094,-0.016361777} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:34:00.859943+00 2026-01-25 01:27:52.156829+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 655 google Ci9DQUlRQUNvZENodHljRjlvT20xdFZYVXhTRk54UzBKTk9UZDBOblp6UWsxVFoxRRAB 1 t 658 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown excelente recomendada excelente recomendada 5 2025-08-28 01:27:48.343086+00 pt v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "excelente recomendada"} {-0.0070401602,-0.006776791,-0.059967794,-0.006975095,-0.11386487,0.09384447,0.04940643,0.024477568,-0.022408333,0.037197273,0.0821248,-0.016476067,-0.018479493,-0.00764198,-0.024879713,0.026367482,0.055206172,0.028096844,-0.04100641,-0.012818659,0.00029991023,-0.050161157,-0.053160083,0.04580915,-0.021171344,0.05809838,0.014373553,-0.006916338,0.0043809307,-0.097908154,0.02298669,0.10152475,0.06809798,-0.030268546,-0.053082317,-0.059405718,0.044342007,-0.053326596,0.015089706,0.09807754,-0.09124752,0.02016034,-0.0017825669,-0.06752611,0.013183579,-0.1419503,0.024556017,0.08670654,0.06300542,0.04613874,-0.041371442,-0.037683222,-0.031942226,0.0064906636,0.04002953,-0.013550276,-0.010364885,0.0014497091,0.03723209,0.036064763,0.017952675,-0.007689489,-0.10004795,0.055547547,-0.015760079,-0.038708746,-0.06106202,-0.028193738,-0.14652498,0.06414583,0.011019303,-0.044934437,0.04816281,0.022693908,0.012539954,0.05203169,0.032251064,-0.06640626,0.00018902794,-0.04756921,0.017646484,0.02166039,-0.007047726,-0.002335382,0.053094275,0.02394145,0.07244189,0.020600185,0.04871228,0.0027116267,0.026164895,0.0772385,-0.030072767,0.016137723,-0.053915896,0.05719079,-0.027763369,-0.07436867,0.011596792,0.055791356,0.075266205,0.017173437,0.06196264,-0.01235904,-0.09419706,-0.014955122,0.045189697,0.006470879,0.04135396,0.04903028,-0.05075348,-0.05969545,-0.07265261,0.016113738,-0.07331928,-0.006734234,0.008420479,-0.088609,-0.017851641,-0.12801373,0.0018693716,-0.003342639,0.00987177,-0.077840604,0.058935203,-0.107478194,0.02882796,1.223013e-33,-0.06417711,-0.04278271,-0.019735018,0.023032626,0.051634695,0.018566137,-0.034842163,-0.020666847,-0.037069973,-0.014372857,-0.10671249,0.117074944,-0.011122448,0.01765622,0.081207715,0.05274887,-0.016938904,0.058017902,-0.039644327,0.040389236,-0.037547227,-0.020565197,0.03852344,0.0060482733,0.01766844,0.007520128,0.07418858,0.0014959158,0.01786109,0.024384428,-0.0008783592,0.0059487196,-0.09071846,-0.04992877,-0.0031826969,0.028462695,-0.0022860956,0.005271986,0.008961731,0.02499023,0.048815202,0.04588897,0.017652694,0.06137459,0.053680953,0.022548167,0.113219656,0.029188896,0.05168208,0.016505461,-0.06774368,-0.03176694,0.03937216,-0.0024565791,-0.07190563,0.018211555,-0.11366812,0.15520607,0.037907466,-0.061733562,0.011699928,-0.031690903,0.011230816,-0.01651885,-0.064409226,0.027714983,-0.006243219,0.0211429,0.11894662,0.008474535,-0.060912203,-0.032962576,0.06694799,0.044270717,0.010100349,-0.015141091,0.009703898,-0.007800179,0.013204698,-0.052776337,-0.05030948,-0.017140422,0.002480282,0.023967074,0.0055349483,0.07751089,0.014666,0.032998554,-0.02276945,0.07047014,-0.027754107,0.053096976,0.020067023,-0.022092888,0.042850737,-1.8153209e-33,0.035548866,-0.044942368,0.007877604,0.04895977,0.055831835,-0.034163475,-0.075789124,0.011028779,-0.012545111,-0.08163674,-0.02558336,-0.11118021,0.075460024,-0.026911044,-0.045568056,0.08136912,0.018532412,-0.04763563,-0.14536245,-0.11363046,-0.044654973,0.066692956,0.019728452,-0.07971499,-0.009934907,0.0012904004,-0.01972716,-0.03276934,-0.05822012,-0.04092828,0.024723535,-0.02715836,-0.045662906,0.026232384,-0.06021867,0.13407005,0.10796406,-0.03523586,-0.002158,0.118139595,0.038896997,0.07580238,-0.048525892,0.05980282,0.021539794,-0.009679993,-0.031744782,-0.08404036,-0.017555924,-0.024552425,0.0033008046,0.01600382,-0.013738608,-0.064148016,0.0820034,-0.014308002,0.020025656,-0.07052037,-0.06772878,-0.001692452,-0.014911392,0.02269767,-0.022613391,0.0023768926,0.10096573,-0.011615283,-0.03864774,-0.023977283,0.012065685,0.11898044,0.02871958,-0.024704745,-0.05398009,0.011108759,-0.08377173,-0.019145165,-0.061719514,-0.02713056,-0.021432634,0.06920627,0.066927664,-0.10963731,0.015923383,0.043425728,-0.0012398608,-0.008021695,0.03247428,-0.08283771,-0.06295118,0.054940738,0.018293852,0.0025067702,-0.042413715,-0.018913805,-0.009957687,-1.816192e-08,0.0249424,-0.038316105,-0.0048331083,0.048190866,0.033411324,-0.074796066,-0.027873473,0.03384362,0.050192248,0.060016,0.014667849,-0.0717823,0.027443653,0.114713795,-0.010936672,0.03896031,0.09001641,0.04207393,-0.044439532,0.008794986,0.0736502,-0.002823392,-0.07763853,-0.011629468,0.014602082,-0.008820375,-0.005420881,0.036406778,-0.006489713,-0.024530647,-0.06583174,0.06511032,0.063984565,-0.12538664,-0.051211998,-0.030310651,0.0724934,0.011803546,0.007784629,-0.0072435513,0.087067135,-0.008164792,-0.014269183,0.0004760309,0.03126943,-0.047691576,0.03129431,-0.0064576534,-0.018607002,-0.011992597,-0.063722126,0.025654765,0.054342374,0.001258624,0.026750157,-0.00091119215,-0.0055687316,0.03941811,-0.0038271344,0.01920099,0.02525714,0.0775145,0.030082274,-0.10643883} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:33:55.408227+00 2026-01-25 01:27:52.211124+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 268 google Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB 1 t 271 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Fast & professional. Really recommend! fast & professional. really recommend! 5 2025-08-28 01:27:48.340727+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Fast & professional.", "R1.01": "Really recommend!"} {0.0035314194,-0.004832895,0.0018029935,0.025629062,-0.052668925,0.016405232,-0.06394863,-0.026163219,-0.04031892,-0.024005149,0.021018926,0.0463884,-0.08236468,0.071949214,-0.00025442368,-0.05171871,0.08962108,0.043279484,0.077527985,-0.0769087,-0.083949536,-0.09111827,0.0341084,0.03735603,0.013219437,-0.034745947,-0.05810489,0.05051915,-0.007818184,-0.06317684,-0.03788896,0.025537994,-0.015030065,-0.0004924708,-0.095580235,0.0038058488,0.084338784,0.0149845425,0.018736472,0.0523879,0.02528677,-0.021721918,-0.029499555,-0.042962793,-0.0047409725,0.02584852,0.07727356,0.026739122,0.057475056,0.0467785,-0.09047087,-0.01788231,-0.034294598,0.017520802,-0.05982231,0.01370095,-0.02978412,-0.014593431,0.011149555,-0.04662443,-0.04920534,-0.02165314,-0.047580246,0.044902626,0.058673117,0.034297083,-0.0013371559,0.034323603,0.06642928,-0.01743217,-0.10036943,0.023496384,-0.011193885,0.073291905,0.026458794,-0.07737256,0.038712185,-0.08472812,-0.055620976,-0.0345213,-0.024896257,-0.0005934404,-0.03326833,-0.016063608,0.0019568116,0.002296982,0.0025432862,0.019933421,-0.043961786,-0.007888227,0.09835728,0.08577552,0.010936582,-0.034232806,0.009965939,0.07432655,-0.016386693,-0.08252842,-0.035747,0.03642372,0.023287872,-0.0487228,0.005512248,0.020616759,-0.05215267,-0.089292884,0.08285214,0.050431345,-0.017240755,0.05037789,0.011682847,0.023450831,-0.071845986,-0.017554173,-0.044654537,0.10756653,-0.026843874,0.047258552,0.08904413,0.05730159,-0.030647868,0.08815466,0.028630141,-0.069787554,-0.022793774,-0.010827229,0.07057948,-4.439569e-33,0.00087675365,0.078714885,-0.038678568,0.056168377,-0.051668126,0.045236763,-0.014014907,0.033240844,-0.06654679,0.031446412,-0.00011507548,-0.0023321277,-0.03514396,0.10529506,0.0037607402,-0.0408394,-0.045878273,0.021537941,-0.020925665,0.017376253,-0.03690566,-0.020703003,-0.03785325,0.05601446,0.053612962,-0.051405407,0.0354192,0.0015119107,0.12523004,0.017957011,-0.0842906,0.027520217,-0.012976926,-0.082979634,0.032601345,0.008455832,-0.13089828,-0.070426375,0.06756059,0.024041647,-0.048788648,0.030812848,-0.015303783,-0.014141282,-0.021966157,0.018641837,-0.1160789,0.08418864,0.05559961,0.016358173,0.04092785,-0.022365745,-0.004953208,0.030066855,-0.07748918,0.023474114,0.08672712,-0.0035174554,-0.0010631786,0.07146778,0.054426767,0.09928603,-0.05762926,0.04139421,-0.04912628,-0.019624902,-0.053122375,0.035525367,0.05267131,-0.085551284,-0.05634823,0.07301505,0.12642834,-0.032711204,-0.0075783487,-0.03332845,-0.026353594,-0.04341428,-0.054345936,0.05585422,-0.016468009,0.06701028,-0.07617085,0.06431713,0.05874129,-0.01248568,-0.076186635,-0.014513922,0.13277468,0.026173623,-0.07210157,0.006682547,-0.0109661445,0.010724575,-0.033192713,2.8638361e-33,0.12709165,-0.053556364,0.08246618,0.1462695,0.10346988,0.016075104,-0.0687996,0.06132163,0.041604683,0.0013381611,-0.052220196,-0.036778726,-0.019880377,-0.022403363,0.068511546,-0.015193755,-0.044526313,-0.053495992,0.025049418,-0.000969631,0.04065342,0.027691456,0.048804145,0.0008545904,-0.077762194,-0.01904278,0.01621338,0.042297613,-0.09642947,0.0010082045,-0.06566664,0.005499396,-0.030932095,-0.07263375,-0.06853523,0.10169899,-0.028246617,-0.009399588,-0.027186297,0.04853169,0.022171102,-0.0021205202,-0.003037079,-0.029208098,-0.056420483,-0.0076939897,0.022264495,-0.038677435,-0.033918414,0.09976553,0.0035319664,-0.013721138,-0.009070006,-0.063185856,-0.021547161,-0.105689,-0.0040796218,-0.10385381,-0.06562578,0.03608403,-0.10225592,0.014101863,2.8058006e-05,0.06704405,0.037183125,-0.014547744,0.06931598,-0.03727107,-0.00838459,0.06599021,-0.013105633,0.10505483,0.033711463,0.028527573,-0.10200258,-0.08536596,0.07051496,-0.0019472769,-0.005601656,0.043688305,-0.009491162,-0.054433227,-0.006352971,0.0020705846,-0.04264436,0.09929198,-0.024721835,-0.069589935,-0.020036053,0.0043215984,-0.01215858,0.053789183,0.030327344,0.029958837,-0.025438603,-1.7024224e-08,0.054790553,0.021004306,0.0412246,0.009646099,0.007179313,-0.011763701,-0.05808843,-0.0040053246,0.008686742,-0.06747842,0.05287788,-0.059509724,0.016516302,0.02493412,0.006400935,-0.0614385,0.10101003,0.13546452,-0.08973854,-0.053706378,0.014252803,0.023530316,0.038510583,-0.0012008782,0.001487761,-0.025732657,0.075918056,0.05955967,-0.03189266,0.01737774,-0.060877174,0.0105494065,0.016218016,-0.049439438,0.033787806,-0.0068884776,0.07969097,0.009365809,-0.033410817,0.046844766,-0.033051737,0.0004104303,0.00305748,-0.037531167,-0.008873164,-0.052932322,0.026433943,-0.039191246,0.018653698,0.02905151,0.041408844,-0.029274162,0.0021974547,-0.0039377324,-0.04241803,0.121115625,-0.022632718,-0.03557584,-0.024595557,0.03095485,-0.0030892428,-0.060201168,0.031372406,0.05639059} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:03.78248+00 2026-01-25 01:27:50.751162+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1255 google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB 1 t 1258 Soho Club unknown Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. Tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti.\nVis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. Stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. Nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). Jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį.\nŠviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.\nFotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). Jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita.\nSmulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.\nTikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. Labai norisi tikėti, kad Vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi. vilniui ir lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti. vis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį. šviesistas ir garsistas matyt praktiką atliko ten pat. per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties. fotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita. smulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą. tikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. labai norisi tikėti, kad vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi. 2 2025-11-30 18:34:31.336452+00 lt v5.1 P1.01 {} V+ I2 CR-N {} {"E1.04": "Vis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirt", "P1.01": "Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už ", "P1.02": "Fotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, k", "P2.02": "Šviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlav", "R2.01": "Tikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. L"} {-0.034289572,0.101706944,-0.09857617,-0.03635895,-0.11363175,0.011502632,0.029876357,0.035790697,0.007245514,0.025691694,0.12002093,-0.0621931,-0.032836452,-0.0062643695,0.061800953,-0.044727404,0.00012180386,0.05387096,-0.11378167,-0.0027476244,-0.011069118,-0.071911514,-0.034356937,-0.021470906,-0.021175832,-0.009509809,-0.033558354,0.024568614,0.038287297,-0.021497678,0.007608099,0.09709488,-0.0071770577,-0.010335072,0.025924074,0.06262847,-0.06062707,-0.041288853,0.023865508,0.104535244,-0.016180664,-0.012504902,-0.10918559,-0.038919993,0.03162953,0.053655233,-0.056042276,0.100208044,-0.032697987,-0.027422752,-0.06384103,0.042223006,0.018538116,0.097113244,-0.07780351,-0.14282762,-0.094225176,0.036379557,0.024737637,0.032433197,0.02323934,0.044650156,0.0146953715,0.033805657,-0.036737442,-0.011366742,-0.044523552,0.03968896,0.013719407,0.0040759323,0.018077152,-0.08116443,-0.084800996,0.092218384,-0.047476936,0.018205617,0.05221898,0.008145145,0.028879628,-0.08278531,0.050806373,-0.030613925,0.010983432,-0.0015398893,-0.05857484,-0.017307417,0.0006517872,0.017729238,0.009994682,0.034710396,0.012450996,0.11642624,-0.06735547,-0.11377744,0.043963525,0.008288723,-0.071465135,-0.009081409,-0.056181572,0.017161785,0.039147012,-0.043408163,0.024101622,0.005791057,-0.09256492,0.019542241,0.03453414,-0.060398232,0.020554518,0.055680577,-0.1510731,-0.015100271,-0.029043853,-0.12595111,-0.04215539,0.019185536,0.020170946,0.026518563,0.0077303783,0.044520907,0.020796617,-0.032174535,0.030716116,0.017784355,-0.02078465,-0.035014413,0.041010354,2.9148545e-32,-0.043960176,-0.015902648,-0.06501535,-0.057149876,0.08111538,-0.026463294,-0.032500975,-0.08844498,-0.0497026,0.02028698,-0.0663274,-0.018266458,-0.044179294,-0.011712969,0.027141334,0.058481038,0.063195325,-0.09025179,0.0018221848,0.017864797,-0.00982845,0.0062656743,0.082953334,0.0061796056,-0.027459746,0.03978522,0.006910864,-0.051041845,-0.044139516,0.012421419,0.108678505,-0.05899892,-0.035909306,-0.09945141,-0.12510128,0.013234687,-0.010594282,-0.08321563,-0.07679705,-0.031398028,0.006717574,-0.028524153,0.034467023,0.096789435,0.02262897,0.07193678,0.009387858,-0.02407003,0.08422138,0.07610781,-0.04901465,0.0064095682,-0.05416021,0.0029105134,0.01800266,0.033857673,-0.013989481,0.043700274,-0.010062519,-0.028135398,-0.032059375,-0.03410399,-0.031829227,-0.044822823,-0.038858064,-0.10297347,-0.05387361,-0.0075450605,0.039001085,-0.09043887,-0.09891174,-0.0073261037,-0.010321929,0.04829448,0.018504567,0.011939541,0.046869546,0.04200604,0.011745012,0.022481887,-0.011660342,0.068751045,0.03366138,-0.0057507986,0.033601232,-0.052697733,0.029428314,-0.06798082,0.023125654,0.08448012,0.015387249,0.034191698,0.020529635,0.042885978,0.038133714,-2.6587308e-32,0.018520428,0.026236448,-0.0434305,0.03420628,0.08777815,0.0058185738,-0.07207184,0.006556066,0.006068599,-0.0034050825,0.033160362,-0.08096488,0.0191114,0.017337216,-0.0050589587,0.10859424,0.08815515,0.08071157,-0.024680322,-0.027881084,-0.057107296,0.08417772,-0.015147249,0.024139749,-0.02952189,0.025126515,0.09558814,-0.030172072,-0.058191333,-0.024348104,0.07237162,-0.026694946,-0.13202997,0.098778546,0.05187808,-0.0027504032,0.100968696,0.00027371052,-0.05544904,0.0033364047,0.09314301,0.041195057,-0.045406893,-0.07452831,-0.043698974,-0.013961084,0.019044947,-0.07685099,-0.07444913,-0.026044566,0.09317946,0.023961151,-0.014777858,-0.0032552835,0.05702418,0.020353125,0.00028012003,-0.019881655,-0.07238386,-0.018748578,0.069247186,-0.003258161,-0.010826998,-0.045894302,0.0761011,0.02129715,-0.004327079,0.009619221,0.009519664,0.007464015,-0.05177518,-0.0933525,-0.05988399,0.0089840945,-0.057600863,0.025184141,-0.043133818,-0.0054234173,0.0094786305,-0.014140788,-0.07040938,-0.06714489,-0.050123487,0.016375601,0.023553127,0.038128458,0.025133884,0.07175731,0.03048419,-0.0016671988,-0.005703368,0.01779221,0.0067330874,0.08815088,0.062289964,-8.169876e-08,0.012201755,-0.08256459,-0.057396587,0.015756905,0.015610922,-0.009397082,0.012723949,-0.058657967,-0.034180235,0.047054682,-0.02224274,0.06148442,-0.03612914,0.0148374615,-0.0017952204,0.0076385043,-0.0048406683,0.046367776,0.0061858417,-0.05256292,0.06297978,-0.0050664875,-0.0367205,0.046009094,-0.05602749,-0.028388498,0.06087038,0.036534045,0.027594088,0.007949661,0.007775308,9.687097e-05,-1.7053922e-05,-0.1257239,-0.04514434,0.004932562,-0.04197956,-0.041702036,0.035652928,0.084849164,0.05827545,-0.024441112,0.042169873,-0.037487585,0.008021665,0.066759795,0.091581054,0.024356954,-0.004801246,-0.07226397,-0.09251511,0.049810484,0.013932489,0.02649064,-0.07640824,-0.0323346,-0.007818394,0.059368428,0.047463886,-0.03437726,-0.030597527,0.0037856032,-0.067589104,-0.059156135} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:50:42.826859+00 2026-01-29 18:36:00.612387+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1256 google Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB 1 t 1259 Soho Club unknown Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. Iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda.\nSituacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė.\nTikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų. naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda. situacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė. tikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų. 1 2026-01-01 18:34:31.336452+00 lt v5.1 E4.01 {} V- I3 CR-N {} {"E4.01": "Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito ma", "E4.04": "Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmon"} {-0.03475787,0.048737545,-0.06658774,0.025532665,-0.0101955645,0.0075160065,0.041529905,0.078378834,-0.03277225,0.020599822,0.07750585,0.018433234,-0.0067834677,0.04916168,-0.02161029,-0.06083473,-0.00401229,0.023824476,-0.11388935,0.025537217,0.013122621,-0.023233358,0.0014956752,-0.06352812,0.008301763,0.041811146,-0.014782234,0.036263037,0.044468213,0.025487095,-0.003623279,0.025800958,-0.027374448,-0.047380954,0.04911594,0.05321647,-0.053632054,0.0011746433,0.0042760586,0.023470601,0.010618863,-0.07086835,-0.08939258,-0.07324204,0.022902373,0.057048433,-0.064852804,0.04902028,0.011643654,-0.031115633,-0.1506197,0.021312749,-0.0058078053,0.039526183,-0.047178607,-0.101191595,-0.0035267104,0.008917884,-0.03424617,-0.006091746,0.027706644,-0.005086902,0.0033360396,0.05232327,0.0429671,-0.021955715,0.020663716,0.024816511,0.010529306,0.07624221,0.08338344,-0.036708035,-0.023797994,0.05766509,-0.088786714,0.04612605,0.053445455,-0.008736263,0.0026101673,-0.0036219484,0.06350975,-0.019141637,0.048944887,-0.0069390717,-0.008544833,0.021169337,-0.005547299,0.014867002,0.0077953795,0.09660536,0.044810407,0.11303519,-0.011736647,-0.058468886,0.017330669,0.020934802,-0.08751313,0.0131683005,-0.06315622,-0.0056902696,0.010442413,-0.048189703,-0.009823223,-0.024391988,-0.04767121,0.01855191,-0.0017086198,-0.11038193,-0.03517497,0.104261644,-0.08432753,-0.08059446,-0.03263823,-0.12382807,-0.024525717,0.01516102,0.030248113,0.039700963,-0.0801628,0.1077789,0.05271565,-0.05022433,-0.0067693596,0.03001702,-0.018959522,-0.058543153,-0.017428987,2.9415906e-32,0.020322563,-0.02950914,-0.05020003,-0.09169784,0.020420406,-0.009781312,-0.11828223,-0.033730615,0.005028798,0.0101321805,-0.023629986,-0.07718149,0.028252942,-0.09060765,-0.04009116,0.04790732,0.09277074,-0.010839176,-0.063287824,0.09452076,0.03699295,-0.020100864,0.051751837,0.029644905,-0.03961207,0.034602735,-0.028288623,-0.05426384,-0.058021825,0.007993798,0.073237084,-0.070449315,-0.06600823,-0.044887666,-0.08093075,-0.005048222,-0.045899004,-0.07422139,-0.095922165,-0.056958273,-0.053608924,0.0012759562,0.009093347,0.11951321,0.014943533,0.018527564,-0.032892123,-0.00035626156,0.06498258,-0.03646094,-0.059032198,-0.008195252,-0.02163684,-0.09196209,0.015418465,0.034488853,-0.02775735,0.07858705,0.06491535,0.005547004,-0.004505914,-0.036137782,0.00028991717,-0.0048961104,-0.013072037,-0.09897272,-0.0627082,-0.003719941,0.04241345,-0.082040384,-0.10530816,-0.0050285617,-0.0379969,0.11034917,-0.029840935,0.0052489433,0.09698555,0.0003085694,-0.0070710685,0.015879601,-0.053670492,-0.021047266,0.03220424,0.005280146,0.045368187,0.006986751,-0.07322014,-0.00048525285,-0.0012916344,0.015094698,0.065471046,-0.012815131,0.024940321,0.0070631756,-0.042213142,-2.6907636e-32,0.028605353,0.06709329,-0.06931472,-0.0034653798,0.06862385,0.061463844,-0.13903162,0.021503687,-0.014886493,-0.022422832,0.026576288,-0.11190516,-0.0037410676,0.065189585,-0.06562612,0.039815854,0.10860931,0.039323058,-0.045425583,-0.055802424,-0.027632613,0.03809859,-0.0067578335,0.025431275,-0.042803284,0.038340405,0.06751695,-0.06230328,-0.11806097,0.06692424,0.07023783,-0.025303464,-0.14023001,0.08315001,0.00015873066,0.08309237,0.07974844,-0.031211196,-0.07283073,0.03206982,0.08588474,0.056955576,-0.0065423115,-0.041656207,-0.06271059,-0.06914625,0.003973182,-0.02346218,-0.032490913,-0.05271747,0.068691656,0.0642234,-0.0005143295,-0.0030333372,0.08862215,0.031261068,0.044520147,-0.07930668,-0.092734315,-0.036088705,0.047619097,-0.013610951,0.022136096,-0.0046714935,0.061692234,0.019182231,-0.013237899,0.045615222,-0.084005564,0.029206246,-0.018840002,-0.016437197,-0.066600114,0.002694939,-0.029762223,0.029575001,-0.017722894,0.00022481526,-0.04210368,-0.03335046,0.0024478303,-0.081412025,-0.0356045,0.05438823,0.04142514,-0.0038622217,0.03135685,0.028204577,0.06203229,-0.071123086,-0.032212608,0.037489023,0.01909126,0.06166508,-0.02071015,-7.8205765e-08,0.02249884,-0.084817275,-0.037939034,-0.0048582214,0.05655733,-0.03513387,-0.011597332,-0.047690425,-0.05149504,0.08025573,-0.05688212,0.05424913,0.008843947,-0.028619703,0.026961671,0.047430936,0.06809125,0.062012468,-0.002795858,-0.05559414,0.086417526,-0.08525827,-0.061412193,0.054379083,0.023882186,0.0012403518,0.021485496,0.040345307,0.032653105,-0.034155805,-0.050599094,-0.033770595,0.035900287,-0.08985286,-0.02336129,0.067169815,0.01765827,-0.036011036,-0.045016427,0.00075528363,0.037692994,0.013244879,0.11155099,0.010625441,-0.04382592,0.0051640635,0.05183418,-0.011862066,0.028760532,-0.072256245,-0.039601542,0.036102865,0.054292187,0.07762001,0.021013528,0.012533932,0.052294657,0.058934577,0.049160298,0.0032125835,0.023428649,0.020541111,-0.018087097,-0.044178464} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:51:00.114399+00 2026-01-29 18:36:00.618243+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1258 google Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB 1 t 1261 Soho Club unknown Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių"? :) Jums atrodo norėsis žmonėms kitą kart čia ateit po tokio malonaus elgesio? kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių"? :) jums atrodo norėsis žmonėms kitą kart čia ateit po tokio malonaus elgesio? 1 2025-11-30 18:34:31.336452+00 lt v5.1 R1.02 {} V- I3 CR-N {} {"R1.02": "Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas, o atėjus"} {-0.021060305,0.08780427,-0.0006170308,0.0014189704,-0.06987395,0.025418604,0.029363116,0.00014204741,-0.021163577,0.016599828,0.0647033,0.021609217,-0.0007692438,-0.014287351,-0.027344342,0.012351526,-0.017477863,0.07653675,-0.07282437,0.047447316,0.056899518,-0.07068134,-0.041827377,0.030945048,0.0037808355,0.022481695,0.033390783,0.027634008,-0.0064497543,-0.006007088,-0.121317945,0.027128767,-0.015501524,-0.046430115,-0.010213153,0.08803045,0.0014528504,-0.03450185,0.004063516,0.058444116,-0.0575879,-0.0066123186,-0.06337064,-0.009845476,0.01684324,-0.00278404,-0.05372575,0.033757858,-0.01240896,-0.058502953,-0.1434361,-0.07055901,-0.02573883,-0.018468104,0.010726843,-0.08235867,-0.052624594,0.029836407,0.021192659,0.0030357277,0.089104794,0.012290134,-0.029266456,0.094283745,0.00089707377,-0.011244374,-0.04402103,0.03667101,-0.069644734,0.030669391,0.108619,-0.02424868,0.03650544,0.12556988,-0.065483086,0.0011271023,0.025957912,-0.05873976,-0.0072317924,-0.031275485,0.06869705,0.031414893,-0.05153927,-0.006432122,-0.015641103,0.007308858,-0.028119067,0.005844135,0.088465914,0.0131813595,0.04198157,0.025113882,-0.026511883,-0.084301494,-0.039247565,-0.010702706,-0.04512857,0.01996119,-0.020950295,-0.02854624,0.007671867,0.040610183,0.05327179,0.028118439,-0.085157745,-0.0020057242,-0.040603176,-0.07564544,0.00030847322,0.10481984,-0.06402071,-0.12223804,-0.027002983,-0.075536355,-0.016865667,0.007224507,-0.04706936,-6.8626956e-05,-0.06080047,0.042424798,0.09786868,-0.07925619,-0.01668126,-0.0062858853,0.04541358,-0.03369387,-0.0015685011,1.9779838e-32,0.0028929585,-0.032683797,-0.010342316,0.022963788,-0.029834071,-0.06697853,-0.0030206777,-0.06965617,-0.061427128,-0.012103893,-0.09457397,0.003235875,-0.03745509,-0.011571483,0.0023963065,0.05421788,0.029396018,-0.07661514,-0.019835958,0.15107189,0.029230958,0.051698122,-0.0055633388,-0.0032907221,-0.0029245184,0.037349716,-0.011010014,-0.0879917,-0.0621985,0.030126667,0.12587582,-0.015356324,-0.081899405,-0.00079366355,-0.099825256,-0.030044433,-0.014247757,-0.046461143,-0.012267725,-0.055512816,-0.0032160932,0.012411142,0.016082808,0.08824341,0.017608846,0.020572145,-0.031071022,-0.030957114,0.14164108,-0.030212061,-0.060121316,-0.008403231,-0.04309695,0.021257613,0.03690291,0.0075616227,-0.05405121,0.06341962,0.047900625,-0.002399187,-0.042281754,-0.014462115,0.092011526,-0.0050101187,0.041624177,-0.09027988,-0.029683504,-0.041168902,0.01832757,-0.04538973,-0.04137556,-0.063963994,-0.10952241,0.042896636,-0.04998286,-0.027821597,0.050006583,-0.032512687,-0.029860035,0.03235872,-0.0067435545,-0.05395831,-0.0061820606,0.05066241,0.06617271,-0.0037034375,-0.0343335,0.030705696,0.009841964,0.047984775,0.045803554,0.07164115,0.059789028,-0.018250244,-0.04782633,-1.8529053e-32,0.029097237,0.050499465,-0.035370167,0.029195676,-0.024504524,0.09530667,-0.06990933,0.057547815,-0.030453924,0.056476682,0.00017521807,-0.090466045,0.00060106756,0.011144341,-0.04064699,0.056311876,0.114368595,0.063738726,-0.04567658,-0.105939746,-0.029513331,0.09372998,-0.07136763,-0.016794296,-0.047704555,0.039439514,0.0676344,-0.03396659,-0.13410972,0.052741993,0.09999826,-0.08007659,-0.05317119,0.073822215,0.012675522,-0.03200883,0.09406202,-0.009321319,-0.020939916,0.057456326,0.040377904,0.07790905,-0.010429143,-0.017924478,-0.04923073,-0.08112779,-0.047235638,0.0052186996,0.0086294105,-0.11870252,0.07933962,0.013972327,-0.018626802,-0.08159038,0.04803123,0.017326739,0.018060839,-0.03259016,-0.00028677558,0.04914267,0.0337244,-0.059643593,0.005427229,-0.02031826,-0.0044208956,0.061257493,0.020292286,0.04150506,-0.026239496,-0.02816169,-0.039913747,-0.08380288,-0.07430341,0.02090742,-0.053016175,-0.004845991,-0.09241669,0.06692427,0.032497123,-0.009917298,0.0012783031,-0.09977694,0.0059219357,0.057191398,0.078769915,-0.025537733,0.0036819489,0.03399279,0.09222139,-0.0065829274,-0.0018194548,0.03741275,0.053846687,0.009072079,0.05904168,-6.8354886e-08,0.0683331,-0.10089619,0.017864047,-0.018293058,-0.009969951,0.008325856,0.016425068,-0.02276917,0.035030823,0.03205428,0.015603185,0.05780776,-0.005693055,-0.013696728,0.084144846,0.021816103,0.08000632,0.1242341,-0.043285657,-0.0028750757,0.1207924,-0.0047694854,-0.10005911,-0.040524166,-0.011377375,0.022411898,0.043272108,0.045124847,0.014525775,-0.035199348,-0.055174757,-0.029868538,-0.040205587,-0.00135374,-0.03506331,0.0084664505,-0.017000256,-0.01705337,-0.05470008,-0.004449208,-0.0030224144,-0.047252268,0.07015505,0.03095023,-0.032044437,0.0077574747,0.070569985,-0.045036834,0.041144956,-0.05319585,-0.09278547,0.031088397,0.043064598,0.033052474,-0.053312074,0.004885765,0.0396174,0.05402158,-0.06704664,-0.04458232,0.047520824,0.048269033,-0.010784402,-0.02890283} 1 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:51:31.295246+00 2026-01-29 18:36:00.625725+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 364 google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB 1 t 367 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Experiencia muy negativa. Evitad esta empresa si podéis.\n\nAlquilamos un coche con mi familia y desde el primer momento fue una experiencia pésima:\n\nNos aseguraron un modelo de coche que luego “no tenían”. Aceptamos el cambio por no tener otra opción.\n\nEn recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su seguro “a todo riesgo”, que además exigía un depósito! . Nos advirtió que, si no lo hacíamos, tendríamos problemas al devolver el coche. Y así fue.\n\nA la entrega, una empleada se tiró directamente al suelo y señaló un roce no visible a simple vista, diciendo que lo habíamos hecho nosotros. No nos dieron parte de daños previos, ni fotos, ni comprobación alguna al inicio. Solo nos dijeron literalmente: "no es mi problema que no le hicierais fotos". Resultado: penalización de 380 € sin pruebas.\n\nCuando pedimos la hoja de reclamaciones, "no la encontraban". Solo tras insistir y amenazar con llamar a la policía, nos la entregaron, no sin antes levantar la voz y faltarnos al respeto.\n\nUna empresa que actúa así no merece confianza. Cobros injustificados, trato agresivo y prácticas de estafa. No la recomendaría bajo ningún concepto. experiencia muy negativa. evitad esta empresa si podéis. alquilamos un coche con mi familia y desde el primer momento fue una experiencia pésima: nos aseguraron un modelo de coche que luego “no tenían”. aceptamos el cambio por no tener otra opción. en recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su seguro “a todo riesgo”, que además exigía un depósito! . nos advirtió que, si no lo hacíamos, tendríamos problemas al devolver el coche. y así fue. a la entrega, una empleada se tiró directamente al suelo y señaló un roce no visible a simple vista, diciendo que lo habíamos hecho nosotros. no nos dieron parte de daños previos, ni fotos, ni comprobación alguna al inicio. solo nos dijeron literalmente: "no es mi problema que no le hicierais fotos". resultado: penalización de 380 € sin pruebas. cuando pedimos la hoja de reclamaciones, "no la encontraban". solo tras insistir y amenazar con llamar a la policía, nos la entregaron, no sin antes levantar la voz y faltarnos al respeto. una empresa que actúa así no merece confianza. cobros injustificados, trato agresivo y prácticas de estafa. no la recomendaría bajo ningún concepto. 1 2025-08-28 01:27:48.341386+00 es v5.1 J1.03 {} V- I3 CR-N {} {"A1.03": "En recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su segur", "J1.03": "Experiencia muy negativa. Evitad esta empresa si podéis. Alquilamos un coche con mi familia y desde "} {0.014887488,0.060588565,-0.029292356,-0.03206104,0.005552665,-0.044535503,0.09764439,0.073408976,0.008148706,0.023333253,0.16299938,-0.055258077,-0.012842782,0.030054828,0.022934271,-0.030907735,0.047570046,0.009879757,-0.07050943,0.050930366,0.09342182,-0.07874195,-0.056429505,0.056010183,-0.098001964,-0.05713222,-0.03415965,-0.012239417,-0.059607644,-0.09314369,-0.02486372,0.03319876,0.111322805,-0.005314041,0.05462539,0.019968566,0.03185072,-0.012176652,-0.08266279,0.022453954,-0.11532964,0.0011499332,-0.05560272,-0.06426642,0.021075243,-0.053371098,0.06422658,0.07684542,0.029301737,-0.052950017,-0.043055624,0.009081886,-0.05206275,-0.022926323,-0.02245534,-0.039525054,-0.021577658,-0.05439657,-0.011793788,-0.01172631,0.009849984,-0.00611675,-0.034279212,0.009091225,0.05051346,0.03636738,0.013274433,-0.054740854,-0.028414002,0.08965403,0.10411951,-0.062493604,-0.007921549,-0.010894889,-0.038865868,0.10244878,0.017857583,0.04261545,0.010430513,-0.08302473,0.05593556,0.008497945,-0.0041463175,-0.06995075,0.013073691,-0.036140636,-0.060059242,0.023311539,0.03026152,-0.026801286,-0.073469676,0.10646084,-0.119796105,-0.059655007,0.037207007,-0.016789356,0.029661158,0.009924456,-0.0705047,0.0356798,0.0909989,0.08661379,0.036503322,0.061181836,0.01966548,0.003239317,0.049355317,-0.034718983,0.04485521,0.062001895,-0.07737673,-0.10681781,-0.03631705,-0.09973114,-0.08716857,-0.07340454,-0.02000322,-0.022733163,-0.017791288,-0.0204639,0.04010224,-0.00095495384,-0.05645827,-0.054633204,0.033534355,-0.023974814,0.03628427,1.627987e-32,0.0038586739,-0.0012474632,0.023825005,-0.0015453378,0.029221745,0.021804944,-0.013263348,0.023935122,-0.05179846,-0.023575408,-0.06636369,0.030152647,0.018678593,0.0446636,0.09108113,-0.007474508,0.025920196,-0.037464753,0.05840362,0.04100436,-0.017347783,-0.024049966,-0.057836063,-0.0009349219,-0.036336128,0.027318183,-0.06748005,-0.029357709,-0.084744215,0.051913857,-0.04567658,0.02784858,0.04311314,-0.03209997,-0.04910577,-0.05381704,0.003060523,0.008519363,0.0060115457,-0.13198866,-0.08561883,0.05949173,-0.034923255,0.03884058,-0.008569116,0.04048875,0.08648479,-0.010622689,0.04074088,0.026286587,-0.009529423,-0.029618047,-0.0175368,-0.019437518,-0.029953046,0.036977984,-0.06883755,0.024682669,-0.03845939,-0.033876587,0.016884396,0.047044218,0.005845062,-0.032282595,-0.03147108,-0.023038121,0.008355444,0.0184975,0.16878463,0.05311225,-0.072389565,0.01666265,-0.06503164,0.0048598684,0.022530956,0.046196487,0.055066362,-0.03980871,-0.04004236,0.036206704,0.01370237,-0.057296492,0.01925214,4.7311765e-05,0.0516949,0.064458445,0.030329105,0.054490063,-0.035512343,0.0908031,0.022751648,0.08943483,0.056709662,0.008168663,0.032455064,-1.5676772e-32,0.0029954962,0.023582065,-0.005388051,-0.032982197,-0.034585733,0.043019284,-0.03010421,-0.06776863,-0.0027298278,-0.0827997,-0.02977156,-0.1179661,0.0808355,-0.031505562,-0.10889575,0.069019176,0.00048010875,-0.06754686,-0.0132751595,-0.015025747,0.036985833,0.09680127,-0.007943595,-0.011590396,-0.0134664355,-0.029734245,-0.04825804,-0.011424335,-0.07535823,-0.011131925,0.035137855,0.045028925,0.03675522,-0.006261579,0.0057181995,0.008005728,0.02184388,0.008520618,-0.00089477963,0.041246906,0.01331685,0.11906363,0.06100351,-0.016467018,0.00016508342,0.029176867,-0.0066055437,-0.15990883,-0.054643776,0.008522626,0.06940118,-0.06498706,-0.0825346,0.0007465643,0.026002795,-0.013176842,-0.017813006,-0.0702917,-0.11281679,0.02931394,0.070259444,-0.022990828,-0.07237876,-0.05867844,0.034415327,-7.208485e-06,0.017068833,0.071013354,0.014933428,0.03205725,0.024562389,0.0010441842,-0.09366364,-0.021800525,-0.010183163,-0.019611748,-0.029933887,0.013313078,-0.032297444,0.00747226,-0.07639478,0.011859605,-0.005475186,-0.009360308,-0.01810985,-0.02482771,-0.060029056,0.015286919,-0.014069395,0.10208433,-0.03742727,0.04778402,0.006585783,-0.009634911,-0.065575615,-6.1045526e-08,0.021133829,-0.06545525,0.075545646,-0.05759789,0.04968869,-0.025931722,0.007898532,0.008599319,0.02888119,0.027187686,0.0437388,-0.022754002,-0.08855002,0.035513602,-0.012239511,0.015119759,0.1310454,0.05365435,-0.036076445,-0.107729495,0.043159567,0.008259224,-0.07999481,0.017389115,0.045601692,-0.03731703,0.018759897,-0.041109968,-0.02781236,0.004402145,-0.025573557,-0.04331411,0.035043374,-0.03873013,-0.02956143,-0.05932771,0.030956265,0.022454785,-0.06491735,-0.009539593,0.07868638,0.04093065,-0.015121798,0.007103629,-0.05274571,-0.06304928,0.08301819,0.0042737625,-0.012743225,0.031660624,-0.023881963,-0.019197594,0.039559554,0.093876794,0.01977501,-0.08707894,0.05951959,0.041952785,0.026622588,0.03224975,0.117934674,0.107093774,-0.006265016,-0.030592026} 0.92 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:37:35.066681+00 2026-01-25 01:27:51.115852+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 375 google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB 1 t 378 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. Meten miedo para que contrates el seguro a todo riesgo.\nPague un VW Tiguan y me dieron un Kia Stonic, decían que era la misma gama...\nTienes que perder 30 minutos entre que te llevan al coche y lo recoges, cosa que no pasa con las otras compañías.\nNo me dijeron a que hora tenia que devolver el coche. Según ellos, me retrasé 30 minutos y me han cobrado 40e de penalización.\nEspero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas cosas. si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. meten miedo para que contrates el seguro a todo riesgo. pague un vw tiguan y me dieron un kia stonic, decían que era la misma gama... tienes que perder 30 minutos entre que te llevan al coche y lo recoges, cosa que no pasa con las otras compañías. no me dijeron a que hora tenia que devolver el coche. según ellos, me retrasé 30 minutos y me han cobrado 40e de penalización. espero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas cosas. 1 2025-08-28 01:27:48.341527+00 es v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. Meten miedo para qu", "O1.02": "Pague un VW Tiguan y me dieron un Kia Stonic, decían que era la misma gama...", "R1.01": "Espero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas"} {0.05877955,0.045759685,-0.055136375,-0.12119602,-0.03934955,0.046829585,0.041277178,0.062162332,0.0026444332,0.023601538,0.09759496,-0.022395018,-0.030866073,0.056144223,0.022920465,-0.04894409,0.048225094,0.014337762,-0.026174128,0.015058483,0.10407261,-0.06569308,-0.044642773,0.08203136,-0.092768155,0.023751399,-0.048157804,0.020322569,-0.042062,-0.11493713,-0.011472032,-0.020794803,0.07164074,0.006370923,-0.057134606,-0.04880687,0.040649068,-0.11290052,-0.057760205,0.053651407,-0.043269098,0.042215668,-0.03688887,-0.03180228,-0.00015499236,-0.042568482,0.035440814,-0.011375206,-0.0070498656,-0.08933919,-0.05030924,0.037949227,-0.05788362,-0.017387511,-0.06342152,0.00636864,-0.021189999,0.08501425,0.095394805,0.009411137,0.0060348217,-0.0023510775,-0.033219367,0.08439442,-0.0705124,-0.04715515,0.07952502,-0.023675019,-0.018106291,0.11552466,0.038039215,-0.051127322,-0.0023687382,0.02274258,-0.08690155,0.01825629,0.016651893,-0.029157646,0.010038764,-0.10565449,0.08377095,-0.028014498,0.017679239,-0.059253905,0.039092764,0.005565537,-0.017873513,0.05139513,0.050085735,-0.03641097,-0.020731669,0.10575321,-0.051019862,-0.031754978,-0.024929777,-0.004167005,0.04693435,-0.029563008,-0.038567666,0.015395238,0.06007837,-0.020227263,0.03321876,0.060743447,-0.006967445,0.051289346,0.07716572,0.11551982,-0.033038642,0.06474305,-0.0621983,0.074150175,-0.020807553,-0.093397,-0.043572985,0.103666514,-0.0755062,-0.016685259,0.029668702,-0.013775856,0.05355791,-0.056047168,-0.013640492,-0.07373368,0.060684748,-0.049234807,0.028378587,1.18004366e-32,-0.0053771273,-0.04531862,-0.063940465,0.03847945,-0.019951249,0.021756547,-0.043592468,0.034933377,-0.055426687,0.0019566813,-0.021874407,-0.04746054,-0.024290612,0.00794403,0.04507818,0.01879201,0.029678142,0.0021118056,-0.027545234,0.002246348,0.024919216,-0.03665018,-0.0011657962,0.037719604,-0.03851224,0.023340568,0.0222559,-0.093272015,-0.037763074,0.044424806,-0.048085883,0.041126847,0.03058616,-0.019629985,0.02562849,0.0131689655,0.032988645,0.015600379,-0.07502205,-0.00872873,0.02522432,0.043694664,-0.07493131,-0.019288033,-0.0036348791,-0.0014766454,0.04964772,0.01184866,-0.025171462,0.039988857,-0.03620948,0.041657053,-0.026089171,-0.03812539,-0.07655312,0.11598181,-0.04352271,-0.0011234507,-0.054693684,-0.024926025,0.021663606,-0.011144411,0.00087806757,0.0028262655,-0.03739008,-0.044246018,0.0005928152,0.040659472,0.13603805,0.039205126,-0.07398708,0.0037053688,-0.012975102,-0.011223955,0.05299304,0.019635322,0.0035946884,-0.030176125,-0.08985804,0.0065594716,0.027620133,-0.0785724,0.006662978,-0.042336643,0.14044015,0.04934993,0.08361286,-0.024179984,-0.026572768,0.11579434,-0.03621712,0.08947792,0.104865976,-0.027500475,0.025303617,-1.1619994e-32,-0.010658244,0.031940535,0.0076706577,0.012946543,0.044677008,0.037643503,0.044710375,0.04427265,0.0062586744,-0.100138724,-0.034082964,-0.15320516,0.016491434,0.016212514,-0.061397363,-0.022614053,-0.012594039,-0.1254109,-0.046458457,-0.0026862174,0.03671384,0.02826492,0.033953704,-0.039773177,-0.006922209,-0.029950485,-0.026760347,0.024567327,-0.0040478217,0.053555124,0.06576129,-0.032880854,0.0178206,0.09366728,-0.016139153,0.001206767,0.046949744,0.014622474,-0.031279888,0.011441406,-0.050921954,0.089844264,-0.08298826,-0.09310107,0.03384508,0.03558798,0.02614253,-0.11395275,-0.11093064,-0.042475857,0.045593373,-0.061220225,-0.08564627,0.005481387,0.039446022,-0.07640622,0.018683603,-0.117466204,-0.02248676,0.0148939565,0.09603534,0.007240821,-0.07246,-0.026141332,0.13404156,0.024420718,0.0050117266,-0.034246583,0.03581709,0.031104306,0.0040515093,-0.01883478,-0.13074952,-0.01389222,-0.0013698309,-0.060696762,-0.084256865,0.028823359,-0.038466107,-0.0133452825,-0.018574525,-0.074887015,0.029015688,-0.0027374472,-0.022345424,0.035283998,-0.0060079927,0.011918891,0.036826707,0.067522146,0.007087004,0.0345454,-0.00029111913,-0.00025331005,-0.028725935,-4.9919237e-08,-0.06608947,0.010013055,-0.05606428,0.049166273,0.041420348,0.004389097,-0.019593393,-0.03592767,0.030458953,-0.027108256,0.11250127,-0.049898278,0.020117972,0.039439023,0.004625211,0.022144698,0.02184243,0.0615322,-0.015736628,0.0036571163,0.04885236,-0.015626548,0.004437804,-0.0147405015,-0.045739874,0.026584443,0.025446545,0.082211785,-0.0041916375,-0.022598524,-0.08137125,-0.002600048,0.011402145,-0.09921605,-0.022130307,-0.07742397,0.03226018,0.06713103,-0.012589403,0.034765955,0.06334951,-0.026229888,-0.014973301,0.04036849,-0.008022207,-0.05611222,0.021726914,-0.034740165,0.02022192,0.006678743,-0.021937605,0.0011005885,0.0030854908,0.029342921,0.061761804,-0.03302832,0.07643675,0.012795849,-0.12235157,-0.011178627,0.06209202,0.05846939,-0.006970475,-0.09961483} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:36:59.66742+00 2026-01-25 01:27:51.167232+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1264 google ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB 1 t 1267 Soho Club unknown Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем. Вход 4€ вроде бы, сдерли 6. По окончании шоу музыка не музыка, места потанцевать нет кучка малолеток которые тащатся и орут от кривляний транса на сцене. само шоу вообще ниочем. вход 4€ вроде бы, сдерли 6. по окончании шоу музыка не музыка, места потанцевать нет 1 2026-01-29 18:34:31.336452+00 ru v5.1 E4.01 {} V- I2 CR-N {} {"E1.01": "По окончании шоу музыка не музыка, места потанцевать нет.", "E4.01": "Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем.", "V1.03": "Вход 4€ вроде бы, сдерли 6."} {0.11889393,0.0609359,-0.035123475,0.024278233,-0.06822534,0.0048823655,0.061090868,0.048223536,-0.017925166,-0.050645784,0.06706698,0.04014815,0.020667741,0.012557372,0.01412221,-0.055056427,0.023870017,0.031286143,-0.05251608,-0.026941452,-0.048399027,0.015185387,0.12592371,0.052491844,-0.021288501,-0.050990067,-0.055809762,-0.06936257,0.029429948,0.031928267,0.0044197603,-0.016738111,0.018872561,-0.012764534,0.04200244,-0.002992082,0.022960206,0.017903456,-0.0112767955,0.10551284,-0.06932886,-0.048479684,-0.10356823,0.06442045,-0.048325554,0.026955212,-0.07118727,-0.024647994,0.016590742,-0.011035125,-0.12063763,-0.022060461,0.035168394,0.026036132,-0.017969577,-0.07987389,-0.024680128,0.035137527,-0.07618123,0.0079610925,0.00021400486,-0.075715736,0.06051472,-0.07643054,0.0125374915,0.034950417,0.016780745,-0.1026676,0.011170861,0.04235326,0.026873397,-0.039106674,-0.06783107,0.0100832665,-0.0735926,-0.09079731,-0.029325446,-0.020539392,-0.0119628925,0.08484338,0.0089930175,0.036453843,-0.08173726,-0.049765788,-0.019610703,-0.0032002095,0.020876776,0.008956104,-0.080266036,0.013447365,0.023636682,0.02372743,0.01832652,-0.07136091,-0.04497128,-0.029131148,0.0092675695,-0.003089288,0.08459421,-0.023597762,-0.010912399,-0.092175394,0.014549072,0.07519417,-0.07715053,-0.007545796,-0.077943765,-0.03794827,-0.044913363,0.012164846,-0.020813959,-0.0987685,-0.026316885,-0.0037143703,0.05484028,0.0027129746,0.01575247,-0.07013317,0.026299484,0.018480318,0.083414815,-0.023923237,0.03139908,-0.026478268,0.019686872,0.06777857,0.024943655,1.5036833e-32,0.06832698,-0.0028556935,0.017559385,0.0029378806,-0.05397843,0.003246331,-0.012794164,-0.0053924867,0.0003067284,0.0008378765,-0.050393872,0.041928276,-0.0022486933,-0.1424951,0.0075092083,0.015467534,0.03847477,-0.02249917,0.09293826,0.07268417,0.036735002,0.051319234,-0.053497154,0.016944714,-0.05191814,0.027576312,-0.082020685,-0.08848856,0.013253803,-0.02911921,0.03340575,0.0041211075,-0.062253084,-0.018479988,-0.039673876,-0.1118178,-0.0095477225,0.08336521,0.087896064,0.015641464,0.038173184,-0.016177112,0.124011606,-0.03308026,0.09674205,0.06562209,0.032101292,0.036870148,0.0473567,-0.036228593,-0.057040695,0.039456695,0.03933714,0.035754107,0.024997901,0.021109488,0.037931047,-0.020806476,-0.04454444,0.016176514,-0.04773026,-0.05054502,0.028556159,-0.047294438,0.00096156535,-0.097016945,-0.016514698,0.0396879,-0.024682255,0.0848518,-0.037529193,0.08618921,-0.056061808,0.048673525,-0.06478356,-0.034760427,-0.01915376,0.01996629,-0.054932624,0.013090423,0.03300915,0.05571914,-0.0056997924,0.1101291,0.041140847,0.03833311,-0.031701628,0.008947216,0.042357035,0.029759713,-0.12873916,-0.051742975,0.02915068,-0.010246964,-0.0063226917,-1.5065431e-32,0.15848748,0.0004903983,-0.03951733,0.040383045,0.053933825,0.10217548,0.0028126866,0.047247272,-0.05636989,0.059735175,0.022048244,-0.0409064,0.050382707,0.0011955607,0.00081974687,0.004573183,0.035489947,0.0018948169,-0.07196547,-0.11988316,-0.06910926,-0.028190097,-0.033185154,-0.0484099,0.0058867414,-0.0067784227,0.08723092,-0.054975618,-0.06717374,0.054587997,0.044129238,-0.034746934,-0.03365314,0.033179674,0.06729503,-0.0047094915,-0.008601296,-0.009890591,-0.07232738,0.019009592,0.014636255,-0.0034966306,0.0967931,-0.016595861,0.046012834,-0.06461181,-0.06707845,-0.023494381,-0.025079457,-0.031147452,0.054991707,0.0065019657,-0.030207392,-0.06563967,0.02568048,0.02430276,0.011328153,-0.043458305,0.03322015,-0.000935788,-0.012939003,-0.012578233,-0.054864336,-0.060292237,-0.09141334,-0.031229641,-0.053951286,-0.012304662,0.061825633,0.019066373,0.02713974,-0.061486486,0.10509213,0.06059569,-0.043375745,0.04188687,-0.029057661,0.15261553,0.14491966,0.09568935,0.005584504,0.0007054437,-0.015351142,-0.061227504,-0.014214754,-0.013568571,0.007825213,0.013527333,0.0024508191,-0.06426153,-0.026917374,-0.026685767,0.022405,0.06846436,0.0581486,-5.734804e-08,0.10641363,-0.06681185,0.015163708,0.042134233,-0.02505119,-0.04755285,0.03582068,-0.0019688746,-0.08157836,0.050091185,-0.05475163,-0.0029580696,0.009119108,0.04007437,-0.10341919,0.053226557,0.05744262,-0.00949798,0.021704547,-0.045919456,-0.029397702,-0.07488197,-0.042166017,-0.04213043,-0.08739854,-0.004752011,0.03017372,-0.032077633,0.008341094,-0.0121376235,-0.023196414,-0.04855967,-0.012461832,-0.04245266,0.061312184,-0.057369772,-0.07870674,0.05270863,-0.016296357,-0.0044074147,0.053846095,-0.06322356,0.008704877,0.027727239,0.01711941,0.012679926,-0.078039035,-0.04732827,0.0038918417,0.046995617,-0.006098124,0.05507877,0.013258479,0.07089653,-0.054985337,0.06891316,0.1161292,-0.03785696,-0.074609734,-0.012716115,-0.027756505,0.017033964,0.012658549,0.003963003} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:24.32838+00 2026-01-29 18:36:00.646539+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 1266 google ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE 1 t 1269 Soho Club unknown Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai Soho🙂⭐ labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos lgbt žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai soho🙂⭐ 5 2026-01-29 18:34:31.336452+00 lt v5.1 E4.01 {P1.01} V+ I2 CR-N {} {"E4.01": "Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT"} {0.021094397,0.10748429,0.034698084,0.034603905,-0.0468734,-0.03239493,0.043593522,-0.010156528,-0.014235009,0.0146475565,0.06517522,-0.106056616,-0.01717955,0.04629712,0.05714829,-0.012581165,-0.040630303,0.08234748,-0.06826167,0.039016757,0.024287023,-0.06262563,0.031087877,0.008674158,-0.044934068,-0.0365674,0.040598385,0.005638409,0.046783548,0.053081278,-0.050244667,0.032816164,0.00776021,0.011659152,-0.045611154,0.024600876,-0.02448758,-0.05005725,0.10312652,0.07151355,-0.010162214,-0.040698167,-0.008592044,-0.09588679,0.011258501,-0.022384595,-0.04218528,0.016432416,-0.03667045,-0.043438572,-0.08231257,-0.04451572,-0.02318349,0.051494297,0.006629154,-0.085387796,-0.0050267684,-0.012408158,0.033282503,-0.0068565253,0.048890766,0.008287871,-0.023188418,0.01766273,-0.017949343,-0.030598339,-0.07929886,0.03717977,-0.023318531,0.035427835,0.029010627,-0.03784392,-0.05278908,-0.006432546,-0.07260136,0.04314711,0.022173302,-0.0110568395,0.064788565,-0.114978865,0.035940766,-0.06073942,0.077346824,0.051548235,-0.04853334,0.027995082,-0.038970653,-0.062212728,-0.0006937081,0.0014116432,-0.04945492,0.080443084,-0.032221038,-0.054943718,0.031782266,-0.05735207,-0.06714961,-0.009403777,-0.024327183,0.026054109,0.03581591,0.069674574,0.03499049,0.015651647,-0.17011221,-0.043053135,-0.043617494,-0.07212768,-0.023043612,0.029475866,-0.08639888,-0.12629583,-0.05239025,-0.07226047,0.0031359605,0.01745657,0.041204657,0.052387595,-0.026725467,0.021261537,-0.036836047,-0.029081669,0.004869668,-0.06241387,0.03226695,-0.024808777,0.018762574,1.2673802e-32,-0.051833596,-0.05139429,-0.05725865,-0.040345136,0.0076966677,0.024076277,-0.00016219556,0.0027072337,-0.024948789,-0.040398076,-0.041414756,0.14599049,-0.014955797,0.014409122,-0.05574811,-0.013921123,0.112858534,-0.02995101,-0.017519644,0.042745072,0.05461385,-0.030261118,-0.00033458124,-0.024910836,-0.04933222,-0.009957057,0.0143760145,-0.021761337,-0.033431668,0.0421482,-0.027254166,-0.044444267,-0.039140735,-0.06690786,-0.010759787,0.027219778,0.0063012773,0.008386081,-0.0010969038,-0.051223245,0.083205946,-0.04771345,-0.0102242045,0.0013404848,0.00853014,0.1414688,-0.02179798,-0.12889066,0.041215554,0.020333407,-0.1230602,0.055554405,-0.13556983,0.055385005,0.0031942034,-0.06834279,-0.0507502,0.02926315,-0.015949367,-0.033383563,-0.0019394427,0.06917292,0.016725428,0.054944493,0.02411431,-0.05794731,0.032105695,-0.029586783,0.060602587,-0.031537853,-0.08461105,-0.011511174,0.0248609,0.04853474,-0.03186523,-0.018591035,-0.036534186,0.015594529,0.0071033672,-0.0073544723,-0.052149173,0.024837358,-0.00831906,-0.055344075,0.0053038327,-0.011684918,0.013540588,-0.032851808,0.040058237,0.030743202,-0.07366243,-0.051627174,0.042527266,-0.031254373,-0.01284898,-1.3346059e-32,0.024426924,0.016145363,0.0070693223,0.016284384,0.09137049,-0.04560984,-0.010534823,0.04801203,0.03604841,0.07031483,0.041821886,-0.16113822,0.09211649,0.08432299,-0.024220178,0.073109016,0.05208542,0.023665134,-0.02635472,0.00018311897,-0.0031417916,0.08628231,-0.03011073,0.041432094,-0.0019408776,0.053315848,0.09746039,-0.060111966,0.031433187,0.02150095,0.009871319,-0.017701706,-0.09259749,-0.057963308,0.094776265,-0.095213495,0.07601615,0.00848367,0.046075698,0.016980248,0.07112431,0.025503086,-0.02232953,0.016487787,0.017400824,0.054257773,-0.03983382,0.0034972834,0.0030875793,-0.062498547,0.010521842,-0.04252772,0.014835221,-0.10766696,0.06744409,-0.004851696,0.060865384,-0.027157294,-0.14719255,0.103949696,0.04195088,-0.003925995,0.0072688046,0.016865429,-0.049250178,0.02860724,-0.002348687,-0.046738084,0.04361063,0.058768038,0.03862808,-0.036416706,-0.049136914,0.03884735,-0.11935208,0.0620717,-0.04806355,-0.017292876,0.03322314,-0.006766594,0.02191748,-0.08069838,-0.0052529285,0.06521914,0.0832104,-0.078335784,-0.027612247,0.04421009,-0.03750939,-0.037448842,-0.033563964,-0.015888734,-0.019488329,0.005762132,0.049922206,-4.001906e-08,-0.011494852,-0.13262218,0.0067213634,-0.027421653,-0.005567444,0.03243349,-0.06962292,-0.029500192,0.04560729,0.059374455,0.015252648,0.018466312,-0.023162788,0.019965272,0.0036893266,0.032910246,0.10099518,0.08300953,0.05355097,-0.06780059,0.11512494,-0.04284649,-0.010718515,-0.06542738,-0.04143383,0.06116618,0.00036716735,-0.026074063,-0.09962559,0.009314951,0.075948425,0.05769073,-4.356432e-05,-0.0075229798,0.02015212,0.015244954,-0.009961129,-0.032203246,0.008467323,-0.009787301,0.085771926,0.01800158,0.043858115,-0.0067352266,-0.0068789856,-0.028394554,0.09046671,0.025537759,-0.020496596,-0.00398435,-0.099659346,0.044801664,0.07586733,-0.04025961,-0.012443318,-0.009824612,0.006447459,0.0624989,-0.038933314,0.050407924,0.07500646,0.03674214,0.0029049567,-0.094458826} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 18:52:42.035284+00 2026-01-29 18:36:00.650695+00 4f4bb448-0dee-4e36-b2a2-20f0357fece8 509 google ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE 1 t 512 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Bueno decirles q alquile un coche,con\ndouyou spanish,con seguro contratado por douyou spanish y cuando llegó ya me dicen q si quiero seguro con ellos de 120eur,lo cual me sorprendió pues en la entrega el mismo chico q me ofrece el seguro fue directo a 2 sitios del coche q ni a simple vista se veían total q como tenía seguro de fianza se agarró de eso la culpa fue mía porq no saque fotos al coche porque el coche nuevo por tos lados pero en los bajos q ni hay se me pasaría por la cabeza sacar fotos pues mira para mi un atraco perfecto ya no alquilaremos más con esta gentuza pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el tanque lleno, al saber q tenía seguro franquicia se aprovecho pero perdió un cliente y varios q me aseguraré de q no les hagan mas reservas y si alquilan con ellos asegúrense bien sobre todo bajos sacarle videos,parecían majos pero mira el calma existe amigo q dios te de el doble de lo q me deceastmeun saludo bueno decirles q alquile un coche,con douyou spanish,con seguro contratado por douyou spanish y cuando llegó ya me dicen q si quiero seguro con ellos de 120eur,lo cual me sorprendió pues en la entrega el mismo chico q me ofrece el seguro fue directo a 2 sitios del coche q ni a simple vista se veían total q como tenía seguro de fianza se agarró de eso la culpa fue mía porq no saque fotos al coche porque el coche nuevo por tos lados pero en los bajos q ni hay se me pasaría por la cabeza sacar fotos pues mira para mi un atraco perfecto ya no alquilaremos más con esta gentuza pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el tanque lleno, al saber q tenía seguro franquicia se aprovecho pero perdió un cliente y varios q me aseguraré de q no les hagan mas reservas y si alquilan con ellos asegúrense bien sobre todo bajos sacarle videos,parecían majos pero mira el calma existe amigo q dios te de el doble de lo q me deceastmeun saludo 2 2025-06-29 01:27:48.342338+00 es v5.1 J1.02 {A1.03} V- I3 CR-N {} {"A1.02": "pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el ", "J1.02": "alquile un coche, con douyou spanish, con seguro contratado por douyou spanish y cuando llegó ya me "} {0.015241324,0.0019712977,0.027909463,-0.083355725,-0.047725298,0.023895735,0.040676974,0.00020043217,0.014574741,0.008853293,0.10713057,-0.031369597,0.031938784,-0.0015437611,0.058130644,0.030815309,0.012494074,0.033169486,-0.093001805,-0.013149328,0.09899766,-0.105613515,-0.10493018,0.041088846,-0.064588994,0.007841935,-0.034508318,0.0074007725,-0.059860412,-0.07881761,-0.043312572,0.046809454,0.049130656,-0.011964634,-0.017843626,-0.03875012,0.0664257,-0.08271271,-0.08852477,0.08098357,-0.11396419,-0.018871102,-0.051808238,-0.0162462,-0.018658258,-0.02192881,0.054333314,0.070732325,0.07374604,-0.08243013,-0.067543186,0.020738428,-0.053309634,-0.019444998,-0.044095464,0.03074876,-0.0062409844,0.051802408,0.11033702,0.056587696,0.021545783,-0.01114596,-0.04992441,0.042367294,0.08486098,-0.010878741,0.02117962,-0.077851646,-0.10587805,0.046265427,0.0134250065,-0.028320752,0.03214887,0.02429085,-0.053163964,0.056846537,0.005328077,0.013215042,-0.027966833,-0.10918022,0.021403244,0.038036413,0.035475988,-0.063760415,0.014662939,-0.034658797,-0.045711268,0.043064043,0.03672284,-0.042899653,-0.013958012,0.08255722,-0.029366441,-0.006594687,0.02578947,0.05512367,0.044589233,-0.059309524,0.001689643,-0.0032533917,0.12717086,0.03281832,0.07793494,-0.013001949,0.036515106,0.045703664,0.011621024,-0.010804449,0.018234393,0.039626986,-0.07400663,0.0062578213,-0.022819094,-0.027547969,-0.041515835,-0.042658333,0.049510542,-0.008594601,0.03850946,-0.036409523,0.03159762,-0.04077704,-0.0529829,0.0066366643,0.032355078,-0.028310448,0.019624984,1.7622878e-32,0.0339677,0.03535843,0.0032891242,0.057176787,0.050510503,0.024196459,-0.019438883,0.06356033,-0.076951645,0.037639435,-0.021032788,-0.020507583,-0.0614978,0.08127725,0.071825854,-0.012609689,0.08475218,-0.043653663,0.015418537,0.016066307,-0.04763943,-0.03815117,0.032526687,-0.05745266,-0.061331272,0.11282719,0.042466592,-0.035881408,-0.055476233,0.042338908,-0.041801833,0.0060645808,0.07209291,-0.050944675,-0.053921983,-0.086676,0.04084056,0.006243123,-0.04141495,-0.010961824,-0.032508623,0.049707666,-0.042036813,0.055315867,0.027812006,0.018364115,0.037964363,0.007269337,0.057407193,0.017829007,-0.044079397,-0.055342868,-0.037413146,-0.05340398,0.04261271,0.01770838,-0.08004144,0.046411823,-0.036474988,-0.03605347,0.043204278,0.06862919,0.030543609,0.019356858,-0.022765353,-0.019470453,0.015585989,0.04069792,0.11954355,0.0468044,-0.06100566,-0.035555627,-0.032375317,0.026383385,0.041604772,-0.008088743,0.026918553,-0.008596813,-0.004831324,0.051345475,-0.057317384,0.03249902,0.047992483,0.012564915,0.037360955,-0.0019197535,0.070576414,0.037053354,-0.057457488,0.0945473,-0.016200118,0.09344828,0.10515021,-0.046531014,0.010399493,-1.6081181e-32,-0.03185153,0.029801521,-0.050916173,0.004302299,-0.063427255,-0.023003532,-0.021549713,-0.002998716,0.10175398,-0.10369248,-0.012011835,-0.14559636,0.052046016,-0.0853074,-0.10058982,0.07438573,-0.0035937903,-0.10603987,-0.087059505,-0.0058349953,-0.049170222,0.049607232,0.041535,0.05310813,-0.010362531,-0.03930197,0.016508538,0.020641688,-0.061001107,0.055602167,0.07958251,-0.09784416,0.029668637,0.033539005,-0.03252125,-0.02411001,-0.003703942,0.011242555,0.0010013095,0.07008961,-0.0054633254,0.050778862,-0.01970358,-0.07151523,-0.071542524,0.020441376,0.04911666,-0.21140192,-0.035960242,-0.019576589,0.11057211,-0.06498446,-0.08273476,0.021624519,-0.017584577,-0.031828318,-0.05015686,-0.012533011,-0.07398529,0.0153719755,-0.008394503,0.008426233,-0.08133353,-0.07931087,0.06288881,0.012537408,-0.028964255,0.015945135,0.022863325,0.023246165,0.068756744,-0.061649766,-0.09544576,0.03076312,-0.009281038,-0.009038622,0.0026265867,0.04216236,-0.016884703,0.017078571,-0.029865056,-0.025140686,-0.05273081,-0.01212887,-0.035020158,0.0019515504,-0.033405934,0.052439604,0.0077450015,0.049775034,0.0044233818,0.07179382,-0.011245485,-0.008482461,0.033232503,-5.3694304e-08,0.044829987,-0.029301394,-0.01131223,-0.024630653,0.013393419,-0.03177381,0.02017097,0.012530042,0.007535002,-0.0032924633,0.019878082,0.014995175,-0.032148123,0.0034363014,-0.026971538,0.06456649,0.11349896,0.023551095,-0.0039464855,-0.036873206,0.06374621,-0.008090658,-0.02396654,0.01471322,-0.020314272,0.017157262,-0.034494895,-0.018607348,0.025326196,0.037337445,-0.0030894289,-0.07729417,-0.03827292,-0.05848132,-0.038627848,-0.07984889,-0.040633496,-0.041193064,-0.014976969,0.01775661,0.11971699,-0.0110103665,-0.056727663,-0.014758107,-0.061377056,-0.05275554,0.056690957,-0.012593924,-0.02206081,0.041624065,-0.040900763,-0.050266292,0.03953531,0.030364212,0.001603077,-0.089464426,0.08144728,0.05178926,0.021937922,0.035618816,0.064674444,0.10682841,-0.078667186,-0.10863168} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:40:28.520137+00 2026-01-25 01:27:51.681291+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 611 google ChZDSUhNMG9nS0VKUE41NHJwaXFfX0tnEAE 1 t 614 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Para repetir personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir para repetir personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir 5 2025-06-29 01:27:48.342849+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir"} {-0.088973455,-0.057101943,0.0039282865,-0.019557143,-0.0044225263,-0.0055036503,0.16472468,0.012842798,-0.062571295,-0.02818269,0.0884532,-0.042726748,-0.034558993,0.011909154,0.033635627,0.0029154064,0.06814612,0.0905073,-0.060243286,-0.032192998,0.02029641,-0.051203325,-0.017697515,0.039475415,-0.078366876,-0.058678534,-0.034362964,0.007682695,0.00810776,-0.06721814,0.048719145,0.09414815,0.05016676,-0.024118664,-0.05823173,0.030369567,0.03249426,-0.063363194,-0.016611341,0.001207706,-0.09507256,-0.013647047,-0.043388437,-0.014963157,0.043279022,-0.060776733,0.0667941,0.050638914,0.06382091,0.0076311673,-0.116212174,-0.055304293,-0.029111544,-0.03565224,-0.018880283,0.032663967,-0.0427023,0.025910886,0.07808979,-0.060200814,-0.037215203,-0.021155946,0.008753406,0.010747125,0.06464555,0.019583328,0.015072673,0.025886802,-0.017440049,0.021844648,-0.014286933,-0.02779713,-0.01889666,0.036735386,-0.031278152,0.033519566,0.02744621,-0.0154877715,-0.06016394,0.012211339,-0.01770079,-0.03415131,-0.023028985,-0.02895877,-0.024200555,-0.009278027,-0.014829109,0.026621379,-0.02406331,-0.03808188,0.049477518,0.027216423,-0.0019083379,-0.03963174,-0.04648566,0.05188822,-0.021732492,-0.102424644,0.011409889,0.061196834,0.048755523,0.061829947,0.12640458,-0.015958302,-0.045135435,0.011701597,0.043022905,0.018980024,-0.039244823,0.11349438,-0.051379737,-0.01682349,-0.052221015,-0.0438787,0.017877463,0.008671778,-0.03492804,0.034349952,0.031019839,-0.04792883,-0.010444563,0.062633075,-0.037307244,-0.08365432,-0.016179921,-0.020104064,0.07656145,1.2485164e-32,-0.044037845,0.009015123,-0.037416518,0.07756469,-0.055921078,0.0021393038,-0.011183259,0.04007832,-0.012392478,-0.08565389,-0.0013690357,-0.036741246,0.0049532936,0.07623766,0.029958477,-0.0321613,-0.029579636,0.02653949,-0.06361042,0.030639585,-0.03232806,-0.08419197,-0.0016908712,-0.05375926,0.056674145,0.0104062045,0.084628046,0.0008070914,-0.006162424,0.005415289,-0.0021016623,0.040740497,-0.028958477,-0.105280645,-0.030275375,-0.037777565,0.003581337,-0.018193124,-0.0067606135,-0.04150933,-0.0141897425,0.046152294,-0.013589146,0.037295066,-0.005960624,0.03918318,0.06104561,0.049199916,0.036273878,0.023642235,-0.05803561,-0.048370093,-0.09457856,-0.018864006,-0.048134763,0.0032631839,-0.01041225,-0.011967732,0.033716295,-0.043604575,0.015177864,-0.0662178,-0.011154451,-0.053396847,-0.073021196,-0.034658335,0.042034525,-0.0033723756,0.07224303,0.1146351,-0.10032381,-0.020918263,-0.013997596,0.016759481,-0.0051315967,0.038021434,0.016366076,0.0015524722,0.013476084,0.073391005,-0.050430816,0.04034837,-0.034979913,0.05533747,0.13205084,0.05741043,0.087960735,0.004701291,0.0005270491,0.06123059,-0.01719192,0.07863054,0.00096601003,-0.040951625,-0.019314378,-1.189014e-32,0.01318022,-0.037983347,0.017008472,0.15336911,0.06702346,-0.034568205,-0.017360134,0.008411081,0.096894816,-0.012652953,-0.18939406,-0.11889791,0.08642369,-0.028060745,-0.024360457,0.06150372,0.010451639,-0.02451829,-0.089843236,-0.026997259,0.0129924705,0.09336705,0.023026222,-0.053474035,-0.07549564,-0.017210731,-0.06939853,0.024614858,-0.01752149,0.026066855,-0.017738514,-0.09923464,-0.113618255,-0.017220808,-0.022602923,0.024183687,0.033491693,0.04967105,0.02352939,0.06452552,0.028259238,0.03232826,-0.103932604,0.010778818,-0.037603974,-0.013045634,-0.010403874,-0.10119774,-0.016083272,0.027389163,-0.00018813326,0.0075577097,0.011346589,-0.010547149,0.046975534,-0.026452536,-0.046687666,-0.116399854,-0.07370315,0.023655463,-0.034539796,0.004927879,0.04008854,-0.009937697,0.08548091,-0.011307138,0.046690922,-0.011626563,-0.05974974,0.037234046,0.04601288,0.02041003,-0.008690631,-0.03295412,-0.03285783,-0.065579176,-0.039814644,0.02856831,0.020941146,0.019137945,0.08805108,0.010806608,-0.056516275,-0.042060997,-0.03111854,0.012972109,-0.008300185,0.031657115,0.04691459,-0.058038436,0.051314183,0.025060251,-0.041109957,0.053070247,-0.032874838,-3.7955388e-08,-0.007881555,-0.046546374,0.019890144,0.10162519,0.006330225,-0.012406216,-0.071148686,0.04019473,0.00076049025,0.00946356,0.0033746846,-0.110013954,-0.005131565,0.1079643,0.01371252,-0.026936142,0.101646,0.041942403,-0.042441193,-0.032387767,0.12898687,-0.004705821,-0.025358453,0.06733551,0.03462374,0.07724768,0.06357037,0.08280169,-0.06179304,-0.015450617,0.007529766,-0.025982546,0.0033678866,-0.09090757,-0.035188872,-0.048566412,0.022566589,0.011551682,-0.021794358,-0.0640389,0.02967046,0.014507777,0.03228634,0.08849016,-0.05603638,-0.05680429,-0.032186497,-0.047222696,0.0015578534,-0.025819127,-0.0050204787,-0.097852,0.078558534,0.01850388,-0.03364083,0.03548095,0.041869625,0.04116002,0.026390577,0.0069688824,0.1583665,0.068486355,-0.071520135,-0.08159607} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:40:18.545811+00 2026-01-25 01:27:52.048263+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 659 google Ci9DQUlRQUNvZENodHljRjlvT2t4dmJqbGljR0pXVEdsemNUWklRbWcyV1VaTFdHYxAB 1 t 662 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excelente y rápido atención excelente y rápido atención 5 2025-06-29 01:27:48.343094+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Excelente y rápido atención"} {0.015400019,-0.01686302,-0.033647396,-0.0065305457,-0.05592182,0.032157514,0.05849086,0.03179354,-0.0028352968,0.03523032,0.12044732,0.021733398,-0.0315724,0.022365768,0.036136772,-0.010315901,0.033277243,0.048606176,-0.024649289,0.042756036,0.07500894,-0.06642578,-0.075015746,0.08663794,-0.003532263,-0.043717876,-0.027422272,0.049893044,0.0469786,-0.10463576,-0.07188588,0.067638464,0.105732895,-0.002527085,-0.036129493,-0.037649974,0.0930428,-0.052950524,-0.018461516,0.01816839,-0.108329065,-0.057707433,-0.020869935,-0.011353535,-0.020737743,-0.037980903,0.028036745,0.12572254,0.029884195,-0.020377856,-0.058462698,-0.06087001,-0.055564355,-0.0036030735,0.010641904,0.03772888,-0.015111878,-0.02204411,0.049291026,0.026104448,-0.068658434,0.021433774,0.004704125,0.05321989,0.078182116,0.04306226,0.0132342875,-0.0019147028,-0.107290685,0.08236692,0.09081243,-0.026651565,0.041559204,0.06361396,-0.023118472,0.027114568,-0.0322728,-0.020640066,-0.015470567,-0.059784535,0.021416148,-0.013426198,-0.061667874,0.015155448,-0.008759133,0.021540502,-0.036696546,0.044661116,0.025968336,-0.005920695,0.026411174,0.04519116,-0.064556524,0.0005506221,-0.038175758,0.021979036,0.016162315,-0.07605068,0.029728562,0.03989266,0.11111887,0.048566084,0.06515315,0.025439082,-0.015395861,-0.014725591,0.041836597,-0.048015643,0.010013784,0.05427585,-0.08023364,-0.04340936,-0.023137793,0.0049532494,-0.10694186,0.0005855301,-0.03856717,-0.053753562,0.00818438,-0.10798248,0.06862708,0.038126178,-0.05691067,-0.007147504,0.033528965,-0.06334002,0.076697856,1.3926421e-33,-0.0539253,-0.08361526,-0.074227974,0.06064624,-0.056986265,0.0132169025,-0.018379739,-0.04408823,-0.04822421,0.03813285,-0.06819521,0.046748202,0.032696612,0.10060645,0.021922797,-0.014800064,0.031537134,0.04037584,0.0109757045,0.046960764,-0.047508705,-0.055460025,0.0008030315,0.05551407,-0.025653822,0.074404694,-0.042085536,-0.05515906,-0.031939246,0.060115788,0.014929628,0.029385407,-0.049747366,-0.042876642,-0.003743884,-0.08749795,0.04823543,0.005538409,0.0117465295,-0.009799557,0.015484826,0.01276835,-0.015316886,-0.0010285256,0.017968751,0.022128846,0.0199946,0.08016668,0.11205463,0.016199771,0.007370282,-0.06612796,-0.039810218,-0.07702566,-0.016845684,0.061583728,-0.07069944,0.14226533,0.011225429,0.008838128,-0.059633147,0.05410466,0.048306733,0.01809726,-0.08636194,0.027373668,0.009476416,-0.022095395,0.1362926,0.03322989,-0.07678005,-0.05302794,0.012207003,0.021967294,-0.0039656307,-0.0039606285,0.046718508,-0.0257942,0.011148254,-0.04484028,-0.042185947,-0.0025042351,0.003177317,0.055761274,0.068903916,0.0830249,0.079586506,0.056102745,-0.050617076,0.066294655,-0.044990417,0.084361315,-0.041475873,-0.05932783,0.0141270235,-2.1237552e-33,0.018686267,-0.060561232,0.0010322387,0.018659363,0.0037249704,0.00850883,-0.08743414,-0.0137684895,-0.031185867,-0.09241601,-0.051571082,-0.11585769,0.051179882,0.0059831715,-0.0029599725,0.030427974,0.053817727,-0.04202658,-0.10421066,-0.028771324,-0.009967449,0.03089576,0.032678664,0.0036753071,-0.04193789,-0.016047392,0.005388541,-0.0014459487,-0.050859004,0.013541081,0.022334503,-0.049507096,-0.04367156,0.025423992,-0.01674736,0.08102081,0.07908061,-0.01284143,-0.0229746,-0.02386535,0.029650878,0.049513638,-0.021393893,-0.029531132,-0.023718722,0.1107814,-0.04124077,-0.081548676,-0.05236038,0.064019606,0.029441897,0.021549663,-0.0036088123,-0.009682388,0.05401847,-0.040440522,-0.07354056,-0.16159637,-0.113520324,0.0175808,0.019918863,-0.027372357,-0.05092122,-0.029601745,0.14136887,0.03821607,-0.021110231,-0.027324248,0.054308966,0.09020922,0.13697983,0.023788614,-0.10066085,0.0065526874,-0.04704886,-0.03721328,-0.098269284,0.015290553,-0.007446494,0.043529164,-0.0231895,0.00046191228,0.02255625,0.006925728,-0.1007168,0.012711082,-0.032357853,0.0004458326,0.026405474,0.026769483,0.015045713,0.05059137,-0.058995787,-0.038418975,-0.04000955,-1.9371186e-08,0.02465931,-0.01685325,0.08989561,0.008145551,0.060166072,-0.049441114,-0.017771892,0.024797957,0.037699554,0.054682642,0.052235678,-0.04965521,0.06369267,0.005052787,-0.029820805,0.017665794,0.087108925,0.034797452,-0.06289341,-0.047366817,0.06999305,0.05477657,-0.023284463,-0.08779805,0.025879199,0.005232812,-0.03201684,0.040839825,-0.05223348,-0.033474088,-0.029667504,-0.020724596,-0.031075267,-0.09867075,-0.010464294,0.0147079555,0.024783889,-0.0009843142,0.03811589,-0.079104096,0.02618979,0.0015281633,-0.014538042,0.0032646745,0.005847178,-0.0495625,-0.036907926,0.011744136,-0.005556949,-0.036887378,-0.05231308,-0.006150149,0.0501313,0.054014,-0.000271409,-0.004236322,0.04349612,-0.014112865,-0.027977964,0.014851452,0.05356056,0.11110391,0.041949995,-0.12975755} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:40:13.942997+00 2026-01-25 01:27:52.221544+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1468 google ChdDSUhNMG9nS0VJQ0FnTUNnd192X3BRRRAB 1 t 1471 Go Karts Mar Menor unknown Great place especially when they have the deals on 👍 great place especially when they have the deals on 👍 5 2025-03-06 01:52:39.833374+00 en v5.1 V1.01 {V4.01} V+ I3 CR-N {} {"V1.01": "Great place especially when they have the deals on 👍"} {-0.010771337,-0.009718588,0.026005967,0.0018394585,-0.052573938,-0.0038563644,0.028774058,-0.039333094,0.04711364,0.0011205802,0.0943231,0.0634577,0.04492154,0.004447078,0.04849039,-0.055159528,0.07435436,-0.08977255,0.044166602,-0.11468495,-0.059866823,-0.047756545,0.06783888,-0.0047264183,-0.05337345,0.011842687,-0.055100713,0.02789211,0.042027015,0.021191062,-0.05443122,0.038736597,0.017273836,0.09217681,0.026109405,0.044133797,0.019687833,-0.1066126,0.034913626,0.008482714,-0.008301631,0.017167384,0.049087696,-0.036744438,0.023717199,-0.007871993,0.07224775,-0.01034662,0.093453735,0.045079336,0.103209004,0.017885169,0.007186466,-0.025211839,-0.03976604,0.08004675,-0.07342683,-0.09884937,0.03781685,-0.031767365,0.086566076,0.015374108,-0.043004435,0.027484894,0.0012273913,-0.04078217,-0.03962547,0.090183094,-0.026880067,-0.082608454,-0.04143021,-0.051885724,0.02812779,0.012195368,-0.006377939,0.03910825,0.094826564,-0.04490807,-0.06288313,0.043697234,-0.008077709,-0.0688534,-0.009001243,0.01791728,-0.024357866,-0.07201652,0.022436278,-0.030139644,0.07041326,-0.01230393,0.06104653,0.054677993,-0.06757463,-0.013731865,-0.07443819,0.012242769,0.058710583,0.031180823,-0.03823376,0.059154917,0.04413419,0.05678465,-0.019666232,0.014864995,-0.045058124,-0.0057129944,0.0099059185,0.082952134,0.016129795,-0.007701051,-0.071517274,0.040950276,0.019239761,0.03531477,-0.077416025,0.04212615,0.007776263,-0.0011740386,0.008377907,-0.10307883,0.03543573,0.03204683,0.002341126,-0.0023689705,-0.035533283,0.021577453,-0.07572515,-4.1401014e-33,-0.04241208,0.07859616,-0.054743975,-0.08057583,-0.0021980293,0.0660389,0.008525092,0.042446066,-0.0715207,0.08000748,-0.04770451,-0.03814929,-0.09152952,0.002256,0.020153362,0.00551365,-0.02487565,-0.05298402,-0.10001993,0.009718918,-0.0635972,-0.0760783,0.0012665674,0.074853525,-0.011545495,0.051756065,0.037068203,0.036358893,0.050877236,0.029443445,-0.0968679,-0.03336907,-0.0042414526,0.032069106,-0.0245604,0.05954034,-0.07223381,0.008115517,0.004743252,0.08253069,-0.00093433744,0.044320617,-0.106668726,0.051926393,0.06916312,0.057585355,-0.03416379,-0.055450995,0.12548138,-0.036263548,-0.13819854,-0.010599357,-0.06901721,0.04497866,0.03471415,-0.04002348,-0.029400598,-0.03663083,0.03145353,-0.006622957,0.0065258313,-0.008199327,-0.031973865,-0.11248765,-0.0653507,-0.032633126,0.01617339,0.02300872,-0.010752976,0.02765088,0.024631336,0.046042256,0.12114112,-0.011536761,0.015721962,0.030547258,-0.038929656,0.07392348,0.02932399,0.034448784,0.12038807,-0.0071952096,0.040616516,0.08392189,0.0640859,-0.03237006,0.049437225,-0.13967706,-0.025378916,-0.053158212,-0.12757076,-0.019207913,0.069767684,-0.044860527,0.03069134,1.6434675e-33,0.07603571,-0.042091757,0.011897321,0.057299007,-0.107168645,0.012316025,-0.037986193,0.05028365,-0.016726125,0.062307462,-0.084026076,0.056671493,0.017351128,0.04963027,0.03454519,-0.046286467,0.12489467,-0.021505538,-0.031277657,-0.004296333,0.006702409,-0.0042513222,-0.029796362,0.02330247,-0.019417955,0.037547752,-0.04368806,-0.031067988,-0.08950319,-0.035538428,-0.09085269,-0.004161898,-0.095832646,0.11606873,0.0059383186,0.0081829,-0.08120589,0.054548483,0.0029958035,0.08077213,0.06594319,-0.07080049,-0.052024633,0.09166231,0.0107801,-0.005586259,-0.03369955,-0.03334332,0.053170685,-0.01998246,-0.029116698,0.023113945,0.024063932,-0.045784965,-0.06154979,0.021531478,0.03625626,0.028682685,-0.012185063,-0.06561133,-0.07845535,0.04925375,-0.0070738792,0.05605824,0.0257596,-0.015459881,0.02965144,-0.01699328,0.0047885347,0.013287831,-0.04264221,-0.03247696,-0.058540903,0.0122957025,-0.048771355,0.021079175,0.046299167,0.003463841,0.0063706925,0.042845484,0.041968226,0.04221149,-0.032395285,-0.027826369,0.02934116,0.014090399,0.0009905846,0.050258443,-0.039931048,-0.011412562,-0.07561185,0.06621879,-0.1054674,-0.05140198,-0.0038073487,-1.9803963e-08,0.0012988434,0.044581715,0.05165372,0.00584984,-0.041742366,-0.08499906,0.015453993,0.038034853,0.04360005,0.07772214,0.053113423,-0.039285924,-0.1347279,-0.036922418,-0.051152494,0.015950821,0.016602365,0.06528471,-0.029503025,-0.03456218,-0.01586965,0.09273821,-0.0013588388,0.046094738,-0.041578773,0.0029349488,0.044553872,0.047484152,-0.02368914,-0.04030393,-0.019003127,-0.02399064,0.011299054,-0.02143876,0.015975812,-0.011584521,-0.011861069,-0.08221927,0.070757136,-0.08885997,-0.050463222,-0.11116689,-0.04809592,0.035629928,0.02104378,-0.020980101,0.011136017,0.0021326714,0.020240393,-0.0068619484,-0.046202973,0.023210488,-0.042563718,0.011687585,0.007996505,0.015340776,-0.00512857,-0.042803343,-0.011465208,0.09126176,0.009563467,-0.008253813,-0.07455022,0.03709164} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.11906+00 2026-01-30 02:01:09.452772+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1315 google ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB 1 t 1318 Go Karts Mar Menor unknown Been coming here once a year since about 2019 now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs that track each kart when races are going on. You definitely feel the speed jump on the F300s been coming here once a year since about 2019 now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs that track each kart when races are going on. you definitely feel the speed jump on the f300s 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"E1.04": "now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs", "O1.02": "You definitely feel the speed jump on the F300s", "R3.03": "Been coming here once a year since about 2019"} {0.025202466,-0.013705691,-0.0035391967,0.015707238,0.043802023,0.038926605,-0.05185796,-0.05043973,-0.06439822,-0.039580677,-0.008452345,-0.0146032395,-0.05977729,-0.00651087,0.022458784,-0.0891892,0.13304412,-0.07670116,0.013522298,-0.058464363,-0.109465994,-0.0803256,0.030640015,0.06662054,-0.0683865,0.05519713,-0.047991697,0.04157546,-0.024316868,-0.07885744,-0.0059292982,0.02438596,0.019193437,0.0024832,-0.04353992,-0.010184998,0.026553292,-0.08135972,0.023347767,0.01025775,-0.016856063,-0.08903968,-0.021086557,0.0019672932,0.055819605,0.005375473,-0.017641502,0.011423087,0.07396929,0.06408142,-0.007155324,-0.05216847,0.105863065,-0.041663818,0.033056997,-0.008057305,-0.024324207,-0.0073924195,0.103090845,0.04293429,0.03748529,-0.02663748,-0.068756625,0.043181855,-0.01954551,-0.064368345,-0.08690603,0.070446506,0.06588455,0.0065701143,0.032097656,0.015156734,0.05946116,-0.038858183,0.024588816,-0.008859883,-0.019579487,-0.004771183,-0.074523866,0.050380543,0.04397592,-0.09144689,-0.03192284,-0.063406214,-0.0034375892,-0.04206655,0.057809494,0.017074753,-0.05186388,-0.0133231245,-0.0086776,0.055288155,-0.034948315,-0.11297767,0.024054136,0.03255159,-0.0601779,-0.02381329,0.0016225288,0.003199199,-0.010117737,0.062651284,0.074298,0.11659961,-0.015700534,-0.07193521,-0.0323164,0.12276045,0.020851566,0.028602734,-0.037619554,0.06470155,0.008611985,-0.026821984,-0.06924485,0.018332437,-0.030411014,-0.015139998,0.07916035,0.027747916,0.020386945,0.0053455485,0.03677472,0.038975768,0.053361412,-0.02553597,-0.018673068,2.272423e-33,-0.043085195,0.02055093,-0.039939914,-0.06520295,0.040492762,-0.07615021,-0.04348957,-0.09481333,-0.020444086,0.026956309,0.006658078,0.058097024,0.01628033,-0.07937388,0.09653109,-0.055180345,-0.044538498,-0.038594943,-0.096820764,-0.035126686,0.038371734,-0.11943913,0.014503418,0.025029408,0.057393473,0.021989133,0.053918425,0.039273765,0.02557801,0.017796358,-0.09970587,0.00917126,-0.08210649,-0.05789416,-0.014608153,0.026096774,0.014164155,-0.050111167,-0.022134203,0.020152885,-0.03397705,-0.029013997,-0.031127632,-0.00718663,-0.043186504,0.045571886,0.03362031,0.014255922,0.011471625,0.061261196,-0.051594928,-0.016821329,-0.031220395,0.024439378,0.019376751,0.02138111,0.07326187,-0.017582182,-0.0018288214,-0.011410744,0.02079033,-0.03030491,0.018173337,-0.071594626,-0.06545543,-0.01715623,-0.008644247,0.02061539,0.030720938,0.056778826,-0.002676681,-0.003560132,-0.0036625841,-0.054086156,0.10123736,0.042744223,-0.08138984,-0.04376007,-0.039912317,0.01780894,0.04597277,-0.005281919,0.040063616,0.075450875,0.10799155,-0.012648681,-0.033255372,-0.07019644,0.014702847,-0.040881675,-0.050419915,-0.021814264,0.07248056,0.06895294,0.00033164545,-2.860045e-33,0.08386088,0.019410418,0.09809094,0.043694418,-0.0035490566,-0.0043259137,0.068275295,-0.0026378618,0.04463946,0.077378675,-0.050915822,0.06550422,0.00070607045,-0.0029558712,-0.0093417205,0.0021541172,0.09755283,0.035813805,0.0388319,-0.070658356,0.03424422,0.034100864,-0.02754037,-0.07377557,-0.05360719,0.051811114,0.038281903,-0.005647605,-0.11076841,-0.11960304,-0.05185717,-0.010384388,0.021259557,-0.020876009,0.03301321,0.048254505,0.09337785,0.010591365,-0.07794171,0.057688985,0.09562607,0.023892775,-0.01074752,0.042782918,0.00029376257,0.003579985,-0.00031911556,0.011726174,-0.01810223,-0.0022626908,0.033453234,-0.005368549,-0.085033566,0.020586776,-0.020684626,-0.01893293,0.059166115,-0.0076287608,-0.079698585,-0.02116304,0.0092531,0.035651952,-0.014551991,-0.012134747,0.068716615,-0.13590723,0.01410057,-0.04782008,0.0026320338,0.0926497,-0.10090362,-0.06107687,-0.08487472,0.03059155,-0.032891672,-0.010125335,0.07428741,0.06775076,0.050440557,0.011849684,0.07220148,0.0058546495,-0.0135397,0.032043092,0.036792867,0.02369069,-0.026292931,-0.07056415,0.038389023,0.00796097,0.07096242,0.048906546,-0.047343124,0.066523485,-0.028941723,-3.443257e-08,0.025960367,0.063491,-0.08462334,0.05183206,0.056586877,-0.062278703,-0.013118661,0.025823336,-0.062711395,-0.019780798,0.025549462,0.024543885,-0.00056263094,0.0068039712,0.046641592,-0.0008973054,0.019534972,0.08649031,-0.05892076,0.06700564,0.039126404,0.0837045,0.053214893,0.052361693,-0.05158895,-0.012886615,-0.022805654,0.013937416,0.09826903,0.009435189,-0.053388733,0.060832288,-0.022156095,-0.004436038,-0.0063514668,-0.058180932,-0.05063719,0.10500131,-0.02611098,0.03935159,-0.043791145,-0.11370497,-0.154558,0.016788086,-0.08167613,0.05497322,-0.09754299,-0.017041858,-0.06468222,0.01352238,-0.07649172,-0.012156363,-0.006713629,0.06908019,0.0377573,0.025803037,-0.03771587,-0.0833135,-0.014522744,-0.0503365,0.009858138,-0.06695823,-0.01854499,0.06057945} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:43.689293+00 2026-01-30 02:01:08.947235+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1312 google Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB 1 t 1315 Go Karts Mar Menor unknown Great circuit, not very crowded and has the best price around. great circuit, not very crowded and has the best price around. 5 2025-09-02 00:52:39.833374+00 en v5.1 V4.01 {E1.04,V2.05} V+ I3 CR-B {} {"V4.01": "Great circuit, not very crowded and has the best price around."} {-0.022217236,0.040503077,-0.007765969,-0.0028763385,-0.07544216,0.027760876,0.018158415,0.1136995,0.021068348,0.049949087,0.0048663532,0.04421125,0.046326835,0.018907826,-0.046235323,0.027007109,0.06366389,-0.113277905,0.07461588,-0.11269748,-0.07074874,-0.010785835,0.026713269,-0.027809246,-0.033811606,0.06965779,-0.010761049,0.030285759,-0.012376468,-0.093089044,-0.10768515,0.020848708,0.036242038,-0.015316,-0.049217038,-0.010507093,-0.0067499224,-0.00952063,0.02206646,-0.039140448,-0.048761666,-0.034816034,0.06537231,-0.01278072,-0.020240376,-0.020135583,0.031787768,-0.030969625,0.10405388,-0.070522144,0.09000781,-0.056695826,0.07602045,0.00613103,-0.03907909,0.06075375,-0.06549008,-0.047376998,0.017985435,-0.023062376,0.05869111,-0.043505993,-0.020418044,0.018287357,0.040207785,-0.042689484,-0.047209214,-0.014548766,0.018670328,-0.03824159,0.026869066,0.019556329,0.05761529,-0.002380619,0.034047734,-0.026913432,0.053429026,-0.020582445,0.015169803,0.0686108,0.027855966,-0.06384715,-0.08150415,-0.024371253,0.06710985,-0.112493165,0.057835165,-0.065884754,-0.0011350581,-0.08056775,0.020660918,0.08659478,-0.05749984,-0.036269814,-0.060701475,0.003597012,-0.0014623697,0.0040094047,-0.032856453,0.05507615,0.058952395,0.06949613,0.015831757,-0.066440135,-0.02161532,-0.024697501,0.008664801,0.11816691,-0.02471379,-0.07841565,-0.01965357,0.052033287,-0.06123133,0.024416398,0.043590132,-0.0012261873,-0.0037435454,0.018207528,0.021924604,0.026823286,-0.009865144,0.008270025,-0.019209387,0.0697254,-0.00014646162,0.010530041,0.014812807,-3.8147014e-33,-0.038847554,0.06503537,-0.054056626,-0.02476966,0.008056476,0.09470658,-0.037423026,0.03854148,-0.06670916,0.05194422,-0.016075902,0.021655193,-0.0029368284,0.08667744,0.07636146,-0.12624085,-0.0513481,-0.03257328,0.014179774,-0.013953334,-0.014981929,-0.025915377,0.008199553,0.060982462,0.031319585,-0.0046132873,0.07632973,-0.010593001,0.045885276,0.025262497,-0.046339497,-0.006335676,0.04577657,0.018687928,0.01219338,0.07333971,-0.05791135,-0.05282274,0.048994504,0.024749212,-0.05325953,0.060569126,-0.05632093,-0.0072126403,0.012515729,0.07017444,-0.04140941,0.04931212,0.0011667766,0.031024989,-0.12224721,-0.028221544,-0.04469182,0.0759662,-0.02082196,0.023200702,0.004688917,0.029394113,0.039148826,0.0762934,-0.023375912,0.13526389,-0.11475628,-0.05493886,-0.1039367,0.08019856,0.015284836,-0.04704972,-0.03650628,0.01002744,0.023920102,-0.02287868,0.051361095,-0.065627806,0.027662084,0.027595231,-0.06454855,-0.011950801,0.024606982,0.051153243,-0.02380798,-0.052151214,0.013568971,-0.0053039407,0.06707305,0.037110113,-0.032651767,-0.0704494,-0.042595934,0.042435,0.04702824,0.040760547,0.08027521,0.03726319,0.0565494,2.1906265e-33,0.033595353,0.043448076,0.090996295,0.096873686,0.016359996,-0.007259476,-0.06742412,-0.022190962,-0.021860309,0.05670555,-0.011592661,0.0889747,0.048086688,0.025380306,-0.009786033,-0.0019456317,0.04335908,-0.08370789,0.06522504,-0.0841234,0.022770349,0.09467682,-0.102790676,-0.05008995,-0.084118456,0.01484404,-0.14729889,0.017864365,-0.027277028,0.036099575,-0.0682979,0.02568695,0.013776065,0.036123734,-0.020492867,0.045606144,0.06677594,0.069801316,-0.02326492,-0.0013823274,-0.0071096187,0.022936055,0.030137114,0.0065863333,-0.029781569,0.025376407,0.04891561,0.0048613115,0.0013572638,0.0433492,-0.09927581,-0.0364653,0.017101444,-0.021030366,-0.032025646,-0.0975764,-0.03183305,0.10772141,-0.026106026,-0.0843532,0.004687932,-0.0065376507,-0.0016633535,0.06210053,0.02954583,-0.020244591,0.04632886,-0.011507808,0.027660763,-0.022621013,-0.0025036985,-0.0152148185,0.040733777,0.009946421,-0.048620883,-0.013783562,0.022152202,-0.01548186,0.038172007,0.027635723,-0.011095292,0.0011416911,-0.062620215,-0.1516713,0.01113958,-0.026316607,0.056962006,-0.027641395,-0.043609504,0.08811278,-0.04265941,0.07260254,-0.04665905,-0.11454046,-0.010443023,-2.3251005e-08,0.021626651,0.036919165,-0.027913898,-0.013675577,0.039893158,-0.15801933,0.12281942,0.03752425,-0.032989208,0.03749415,0.10186227,-0.0044573923,-0.05056261,0.009129623,-0.0074310303,0.0071307234,0.023595186,0.11732709,0.003175054,0.07687089,-0.034710556,0.026896397,0.015567084,0.042105976,0.034395464,-0.0036550465,0.029451476,-0.0042070113,0.008587671,-0.051692583,-0.0668001,0.02788319,0.00020499215,-0.0051130955,0.05281548,0.018993491,-0.08805646,-0.0667383,0.05917063,-0.07397902,-0.015262201,-0.13083018,-0.09461258,-0.0022381034,0.040319804,-0.06997879,-0.014345976,-0.05745578,-0.019199243,0.06225707,-0.0375518,-0.012018642,-0.012889483,-0.027081208,0.035563156,0.012005121,0.005069497,-0.016149372,-0.032945693,0.027745336,-0.0010131316,0.0124348635,-0.05786589,0.034001965} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:21.451651+00 2026-01-30 02:01:08.937653+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1313 google Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB 1 t 1316 Go Karts Mar Menor unknown Very fun track where you can have some good races with your friends very fun track where you can have some good races with your friends 5 2025-10-02 00:52:39.833374+00 en v5.1 O1.05 {E1.04} V+ I2 CR-N {} {"O1.05": "Very fun track where you can have some good races with your friends"} {-0.03914858,0.010645116,0.03620263,0.005145443,-0.05750862,0.074208096,0.01842701,-0.09844629,-0.037681166,-0.06779063,-0.028446335,-0.035057988,-0.049051803,-0.010802741,-0.049939793,-0.017790431,0.09612691,0.021661025,0.023467133,-0.021120094,-0.05966666,-0.052923407,-9.9251425e-05,0.08868095,-0.11254347,0.056672074,-0.08937142,0.028079104,-0.021147205,-0.009441872,-0.025287667,0.04793206,0.038424566,-0.0022826104,-0.045337863,-0.037498105,-0.0020908061,-0.029964548,-0.080571145,0.07259603,-0.022475919,0.0102240145,0.06941586,0.03360556,0.060608163,0.044281226,0.015450777,-0.057152867,0.053523917,0.07720657,0.07031961,-0.0117103085,0.04690975,-0.015531573,-0.04031877,0.013018878,-0.042998802,-0.06330212,0.007038271,-0.07553649,0.07542886,-0.07494563,-0.06523899,-0.034240477,-0.029975716,-0.044902097,-0.05798291,0.10726502,0.038176958,-0.04225072,0.023112446,0.0017595246,-0.0029645893,0.02762345,0.017882979,0.10430209,-0.011694984,-0.04150325,-0.106061265,-0.025513161,0.031367462,-0.029706515,0.030772185,-0.08933529,0.065208375,-0.07887347,0.05616418,-0.019606289,0.0048912116,0.000100204175,-0.048898272,0.1361572,0.013566248,-0.059065104,0.005333863,0.0072501088,0.062022448,0.027480349,0.009925006,0.055395994,0.065553345,0.01514342,-0.019364897,0.06194151,-0.0035929673,-0.010107249,-0.011406297,0.062203705,0.0508971,-0.00793942,0.095592916,-0.049082186,0.028833585,0.020541681,0.037586085,0.043172553,-0.0029635134,0.066041835,-0.007531719,0.041951366,-0.10214972,-0.04137306,-0.033111434,0.012727427,0.0107226875,-0.031377915,0.06800684,-2.570236e-33,-0.0080360025,-0.061748423,0.004828861,-0.055270717,0.10015948,-0.017614288,-0.07618594,-0.08446727,-0.16134033,0.00013294126,-0.045813818,0.02360588,-0.017643463,-0.014871485,0.08671518,-0.057131078,-0.063576385,-0.05963392,-0.02918212,0.054090355,-0.020828659,0.03293433,-0.032832127,-0.03621753,0.019546112,0.03529452,0.017915621,-0.08106056,0.10265113,0.041267727,-0.07218746,-0.043309174,-0.0683953,0.01493669,0.023793936,0.06172689,-0.049774636,-0.055008378,0.027149916,0.061655436,0.11281619,-0.047717225,-0.02817544,-0.001590775,-0.034193363,0.06709323,0.023403775,0.06933658,0.029281158,0.013643628,-0.06745626,-0.05933039,-0.06326235,-0.0018729282,0.028857173,0.04370762,0.04802636,0.026577504,-0.0010995286,0.019084353,0.035295658,0.09546529,-0.036466327,-0.08924708,-0.062440913,0.01650231,0.015983514,-0.041264836,0.031678747,-0.016732419,-0.02927214,-0.032952055,0.01356478,-0.0035268643,0.07889373,0.048456036,-0.022481313,-0.014853615,-0.0744526,0.02290196,-0.06295834,-0.042494338,-0.038562257,-0.015678952,0.013221489,-0.0059562703,-0.016097268,-0.028861295,-0.035240754,-0.065895565,-0.093683064,-0.025129182,0.012331957,0.06611499,-0.03757925,1.3718402e-33,0.0634972,0.042693894,0.073825665,0.048048005,0.05085051,0.06743444,0.013872043,0.0263972,0.052203882,0.06363225,-0.02138938,-0.015219294,0.117230326,0.08457851,-0.031520657,-0.043694794,0.063215375,0.059597,-0.046702623,-0.052605398,-0.03605182,-0.025707414,-0.01842613,0.005366417,-0.0068552503,0.006811947,0.00977388,-0.023387529,-0.031146685,0.0301911,-0.05415098,0.029249532,-0.024190616,-0.08085797,0.00223058,0.09033979,0.020780936,-0.012054984,-0.05361904,-0.053300355,-0.027307235,0.020772137,0.032693777,0.049555946,-0.010400014,0.03585435,-0.034599207,0.12149376,-0.09171844,-0.006482858,0.02628709,-0.0319918,-0.015571082,0.006054292,-0.014988521,-0.08322271,0.0479189,0.01696762,-0.046362557,-0.007945317,-0.067515306,0.03061734,-0.050115235,0.06256936,0.025242308,-0.046110775,-0.038121324,-0.04511531,-0.0666643,0.03975293,-0.097737834,0.072902285,-0.07360193,0.022983836,-0.034563594,-0.024712969,0.023035266,0.032615356,0.04003622,0.058302443,0.037271205,0.013958179,0.05036008,0.008985997,0.04380572,0.094519466,-0.021680692,0.065183505,0.008816753,0.08229626,0.12222912,0.08247195,-0.061231036,0.05854706,-0.11392259,-1.8131873e-08,0.035735432,0.06850773,-0.030082531,0.010818744,0.01535815,0.03278622,0.045143463,-0.047703207,-0.031268653,0.039019104,0.035631128,-0.03742806,-0.020662617,0.067020565,-0.04038863,-0.03240218,0.0141534265,0.06433177,-0.0011568491,0.06103798,-0.03796068,0.023620777,0.048089363,0.028994936,0.031688247,-0.06684719,0.039025936,-7.347424e-05,0.07381693,-0.09144912,0.00570865,0.058009397,0.043638777,0.030041682,-0.02982153,-0.014102374,-0.11884706,0.09119745,0.033494405,-0.033813797,-0.026052829,0.0312992,0.0014308328,-0.0048288284,-0.038013346,-0.0060087247,0.020919427,-0.074040845,-0.041962832,-0.056435157,-0.05829706,-0.08983641,-0.060684137,0.06580992,0.10187735,0.03738972,-0.11225175,-0.014325733,-0.0057231565,0.010649232,0.026814435,0.0093550505,-0.060445804,0.034449074} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:25.667018+00 2026-01-30 02:01:08.94044+00 22c747a6-b913-4ae4-82bc-14b4195008b6 543 google ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE 1 t 546 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown "Unser Erlebnis bei ClickRent war absolut positiv! Wir wurden hervorragend informiert und das Team stand uns mit allen wichtigen Details zur Seite. Das gesamte Team war nicht nur freundlich, sondern auch äußerst vertrauenswürdig, sodass wir uns vom ersten Moment an wohlgefühlt haben. Die Preise sind sehr fair, und die Fahrzeuge waren in einem top Zustand. Besonders hervorzuheben ist der exzellente Abholservice – einfach perfekt! Wir können diesen Autoverleih ohne Einschränkung weiterempfehlen und würden jederzeit wieder hier buchen." "unser erlebnis bei clickrent war absolut positiv! wir wurden hervorragend informiert und das team stand uns mit allen wichtigen details zur seite. das gesamte team war nicht nur freundlich, sondern auch äußerst vertrauenswürdig, sodass wir uns vom ersten moment an wohlgefühlt haben. die preise sind sehr fair, und die fahrzeuge waren in einem top zustand. besonders hervorzuheben ist der exzellente abholservice – einfach perfekt! wir können diesen autoverleih ohne einschränkung weiterempfehlen und würden jederzeit wieder hier buchen." 5 2025-01-25 01:27:48.3425+00 de v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Unser Erlebnis bei ClickRent war absolut positiv! Wir wurden hervorragend informiert und das Team st", "J1.01": "Besonders hervorzuheben ist der exzellente Abholservice – einfach perfekt! Wir können diesen Autover", "O1.01": "Die Preise sind sehr fair, und die Fahrzeuge waren in einem top Zustand."} {-0.05325333,0.045540676,-0.053236827,-0.06780323,-0.0053587984,0.095462784,0.04381015,0.038786143,0.027001722,-0.013010135,0.02331909,-0.022111932,0.05115585,-0.05277078,-0.047499906,-0.031063799,-0.016398856,-0.049878057,-0.036810856,-0.053759903,-0.060007915,-0.12114147,0.021201707,0.13741885,-0.0027365657,-0.028708277,-0.028260792,0.0173395,-0.0067398488,-0.07506685,0.037314173,-0.096929856,0.08551611,-0.055815868,-0.02711369,0.06411767,0.014375016,-0.032856073,-0.009781738,0.047428995,-0.053960864,-0.04766363,-0.1027647,-0.017492274,-0.05943993,0.050253857,0.036281526,0.03215251,-0.10936494,0.0142206745,-0.03065557,-0.015980525,0.03723853,-0.10330592,0.04659761,-0.03221272,-0.05728643,-0.027164213,-3.772474e-05,0.019651957,0.05498037,-0.060973763,0.0159905,0.04610561,-0.02727509,0.0049051316,0.026308198,0.037395876,-0.047993958,-0.016883034,0.060127757,-0.069644585,0.061098732,-0.017198388,0.016203295,0.04116029,-0.037435394,0.07707688,-0.0056562354,-0.07567883,-0.00096959097,-0.08810696,0.016461667,0.072152406,-0.009267261,-0.049758628,0.008197438,-0.037296962,-0.0004043227,0.033692375,-0.08911224,0.05461741,-0.101434655,0.005779138,-0.005913223,0.058819585,-0.0025331627,-0.06974958,0.038523633,0.043792967,0.07443766,0.083084606,-0.0053217243,0.06737147,-0.011455662,-0.08993731,-0.020703016,0.0036686633,0.023331294,0.0423119,0.023086607,-0.0364808,-0.075242,-0.09921857,-0.08332803,-0.059943903,-0.003470401,-0.09800053,-0.018117819,-0.12024297,0.0765859,-0.021207727,-0.00085673726,0.0392037,0.08589133,-0.04693514,0.07893397,2.104166e-32,-0.012092274,-0.035456218,-0.033221733,0.012484966,0.08769236,0.060681786,-0.011697446,0.027825661,-0.0024768736,-0.022898788,0.006781497,0.025169073,0.040426794,-0.13027413,0.021620031,-0.07917333,0.022606991,0.026093695,0.0025470823,-0.10582713,-0.0062596323,0.060801543,-0.007894417,0.020015905,0.005872417,0.0022805443,-0.042883005,-0.047174986,-0.0236244,0.015159195,0.09775338,-0.05894755,-0.025004555,-0.018484974,-0.055545505,0.018041503,-0.10298822,0.033132914,0.023588588,-0.036964662,-0.033752434,-0.013828857,-0.023177773,-0.076805085,-0.010073742,-0.033110138,-0.0725389,0.046178054,0.02544916,-0.03580385,-0.016165668,0.0069801426,0.056515146,-0.036798954,0.021696795,0.12378648,-0.010933662,0.05394112,-0.01154095,-0.040646438,-0.019256532,0.046254884,-0.025351966,-0.011560997,0.03026804,0.016000131,0.011511231,-0.078043625,0.10710749,-0.01112766,-0.026255315,0.006753432,0.10241014,0.007046671,-0.041613452,0.09335877,-0.0144849615,0.023037275,0.0030308699,0.004771657,0.0010993977,-0.050910417,0.09117784,-0.015458504,0.005312345,-0.010834223,0.02212836,-0.036978345,-0.06847372,0.18673947,0.024426091,0.029002082,0.03805078,0.024346743,0.0030241816,-2.1155059e-32,0.08226277,0.003380969,-0.010462768,-0.05818832,0.116394736,0.059347957,-0.0628564,0.053929266,-0.077701695,0.032251805,0.0074564246,-0.0077250833,-0.025269622,0.008841043,-0.098866716,0.05283222,0.09363369,0.00367438,-0.02601386,-0.06505516,0.023889402,0.023057878,0.05976564,0.08289481,0.0038553842,-0.024411507,0.09592574,-0.04070324,-0.04926425,-0.0009026444,0.0664159,-0.026417835,0.0173874,-0.06981552,0.023071168,-0.038048096,-0.056410935,0.01271097,-0.03587894,0.05557131,0.07344966,0.00067433546,-0.10553947,-0.10990254,0.062320583,-0.047118332,-0.10425826,-0.07733536,-0.06986861,-0.010187482,-0.005188399,0.012061415,0.024267886,-0.02187968,0.016802799,0.07505546,0.04205598,-0.007955902,0.0033659183,-0.039648067,0.040417973,0.03591038,-0.027591534,0.06893819,0.040186048,-0.057073683,-0.086633906,0.026691405,0.037308536,0.03220247,-0.023555951,0.003449055,-0.024493348,-0.020707428,0.0041091666,0.04644772,-0.015348354,-0.024394315,-0.025407968,0.03827827,-0.07777527,0.07865538,0.034807023,0.050062932,-0.097155266,-0.08368136,0.08890876,0.00063072063,0.014532227,0.026136557,0.081103116,-0.012109196,0.059242405,-0.050082628,0.03063709,-7.3399285e-08,-0.040025648,-0.041216306,-0.009744658,0.042759784,0.046170928,-0.11835838,-0.038660675,-0.019095946,-0.0655522,0.049379274,0.001067214,-0.066712186,-0.06954195,0.0042116274,-0.041470654,0.026172278,0.015531208,0.0107892975,-0.036356296,-0.0047717304,0.020381706,-0.030140901,-0.029329302,-0.0647401,0.017743096,-0.012299828,-0.06356266,-0.04492636,-0.027483804,-0.034693733,-0.0040424066,0.08906515,-0.004513506,-0.013941465,-0.05978263,0.027282357,0.03891305,-0.005106079,-0.07959682,0.052833118,-0.011064379,0.043176565,-0.015129128,0.042268973,0.03948054,-0.003448256,-0.09863424,0.06610312,0.0033008216,-0.037720148,-0.056760535,0.020012133,0.019999573,-0.0041684303,-0.016803106,0.04990938,-0.0033129565,0.02338812,-0.024353279,0.016279187,0.042961616,0.08750755,0.0454348,-0.011464568} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:09.828302+00 2026-01-25 01:27:51.805109+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1309 google Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB 1 t 1312 Go Karts Mar Menor unknown Great venue, good customer service. Some of the younger staff speaks English well. Has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in. Parking is good, and accessibility by bike is good as it has a new bike lane going right by the track. great venue, good customer service. some of the younger staff speaks english well. has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in. parking is good, and accessibility by bike is good as it has a new bike lane going right by the track. 5 2025-07-04 00:52:39.833374+00 en v5.1 A1.02 {O3.02} V+ I2 CR-N {} {"A1.02": "Has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in.", "A2.02": "Some of the younger staff speaks English well.", "A4.02": "Parking is good, and accessibility by bike is good as it has a new bike lane going right by the trac", "E1.04": "Great venue, good customer service."} {0.075022474,0.015771108,0.034915898,-0.0402357,-0.104155764,0.06609351,0.07737093,-0.050519302,-0.0035013708,-0.05148536,0.009820442,0.039654095,0.028667359,0.016986864,0.09954585,-0.040752035,0.13013941,-0.049353726,0.04726304,-0.076205984,-0.06808267,0.028297009,0.0056165685,0.06247606,-0.079929076,-0.045069277,-0.03686813,0.048052,0.045441013,-0.018951606,-0.011604776,0.1210422,0.06876392,-0.042652268,-0.036544457,0.049343046,0.06002798,-0.057688937,-0.037580404,0.028285604,-0.06864961,-0.018446865,0.027460452,-0.029348386,0.06803549,-0.011027254,0.047926247,-0.011107606,0.046487514,-0.0014834917,0.06359367,-0.04582483,0.16242829,-0.061102886,-0.0761771,0.017161759,-0.088598564,-7.953984e-05,0.008313409,-0.039871678,0.042874817,-0.03617364,-0.071529254,0.007120129,-0.039544974,-0.0842894,-0.06225159,0.031864893,0.04877938,-0.066092946,0.009608494,0.005414654,0.09723949,0.001752807,-0.013668245,0.039792746,-0.05994801,-0.051091406,-0.02783199,-0.01598604,0.018634211,-0.0691168,0.068599224,-0.008795946,0.061940726,-0.06970171,0.011454574,-0.028849538,-0.050928917,0.008022984,0.010151928,0.097298235,-0.056223024,-0.01720441,-0.0058963317,0.03129203,-0.008339429,0.012674893,-0.033245564,0.06841069,0.02879068,0.13138454,0.055347204,0.011303436,-0.11083018,-0.03349871,-0.01746353,0.08267173,0.00043694256,0.00070653623,0.040783722,-0.0029123726,0.012953129,0.04875865,-0.008442356,0.04204321,0.041194916,-0.0014088869,0.026552444,-0.020545213,-0.0046087243,0.1353848,-0.0064817034,0.04808902,-0.032699976,0.013678712,0.055520453,1.7291768e-33,-0.04759234,0.07186379,-0.044307657,0.010734564,0.08032272,-0.019913942,-0.1008635,-0.05695217,-0.027310226,-0.045687344,0.057841975,-0.041554257,0.07747863,-0.12790208,0.018812537,0.013342059,-0.056265447,0.039909508,-0.07547103,0.0007894742,-0.028024867,-0.055141076,-0.03501612,0.014864326,0.003135341,0.02493287,0.07634252,-0.00513071,0.10081882,0.0036061658,-0.1105994,-0.037194017,-0.037469357,0.012824447,0.05564078,-0.005609712,-0.020933812,-0.030912766,-0.0019300652,-0.019157073,-0.039904904,0.010618232,-0.077439696,0.026838765,0.0072643477,0.10741483,0.037635013,-0.021885917,0.033452805,0.009196353,-0.08079925,-0.04784328,-0.111632966,0.06846238,0.009944255,0.014546841,0.025509939,0.05163129,-0.0064822724,-0.058205325,0.06008481,0.046326905,-0.029340394,-0.011193875,-0.017881382,-0.029301511,-0.010236222,-0.10279883,0.08267187,-0.08710222,-0.013465281,0.04208094,0.10853826,0.08748363,-0.025982536,0.030016372,-0.098198846,-0.03404465,0.074239664,0.1265585,0.03297381,-0.031787004,-0.012617665,0.06318011,0.06453516,-0.058043245,0.027930807,-0.1055046,-0.033161245,-0.002489863,0.006557917,-0.027544815,0.031373944,0.02424703,-0.0054498613,-2.3009734e-33,0.05913109,0.0033891208,0.0382262,0.018738985,-0.096140765,0.02554894,0.020366067,-0.028899837,0.047480427,-0.0024219248,-0.08297172,0.033129662,0.021680716,0.04902611,-0.026982492,-0.046506304,0.07585781,0.01357536,0.047003992,-0.019535115,0.011567467,0.011733444,-0.061876465,-0.022265553,-0.027086958,0.0031664304,-0.12927194,-0.037465923,-0.0895255,0.01755083,-0.06443476,0.008233191,0.044445768,-0.0056611192,-0.0331127,0.056806322,0.01272841,-0.028545814,-0.0722914,0.054258436,0.037374664,-0.04270384,-0.01748184,-0.025533857,0.04749294,0.042013735,-0.03948675,0.034956288,-0.05163354,-0.06976852,0.010059984,-0.018299935,-0.014248066,-0.06238008,-0.016189663,0.01078458,0.023065465,-0.06962268,-0.050388735,-0.048867628,-0.018189773,0.02178143,-0.024620483,0.03231683,0.030297555,-0.039119642,-0.030010957,0.030853856,0.010686515,0.04352903,-0.050784875,-0.02017322,-0.0051955488,0.057263296,-0.008988049,0.017537214,0.08882428,-0.033483457,-0.02445508,-0.0025480976,0.009679598,0.06026991,-0.017507248,-0.053915486,0.05056525,0.08420135,-0.01426032,-0.0381164,-0.022529665,0.03159187,0.040385146,0.051874105,-0.09278873,-0.017165342,-0.005059375,-3.5351025e-08,-0.035757475,-0.004998921,-0.062429834,-0.02336227,-0.056927294,-0.14275435,0.020902675,0.067697704,-0.0012563028,0.045874324,-0.04843233,-0.013648354,-0.06684028,0.02210245,0.023233304,0.027767226,0.06705654,0.062904276,-0.053827375,0.0072933934,0.041310184,0.05109674,0.03272245,0.024774576,-0.037835177,-0.0061223083,0.071139574,-0.019984825,-0.01618529,-0.101269096,-0.019830404,0.051659722,-0.00035449056,0.055131976,0.0074076694,-0.05848857,-0.0917283,0.025484113,0.051362786,0.062608734,-0.0626509,-0.01997599,-0.1017705,-0.001839049,0.046895213,0.015912939,-0.032146644,0.0058429553,-0.015572209,-0.03188618,-0.04259799,-0.007968579,0.034278374,-0.009701939,0.08174794,0.09470014,-0.034327522,-0.031167414,0.021427408,0.0712368,-0.037877195,0.086548954,-0.0261247,0.0037828947} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:55.750934+00 2026-01-30 02:01:08.928952+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1310 google Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB 1 t 1313 Go Karts Mar Menor unknown Went on the off chance we could rise. Managed to get on the go carts. Price was reasonable and good customer service went on the off chance we could rise. managed to get on the go carts. price was reasonable and good customer service 5 2025-09-02 00:52:39.833374+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"A1.02": "Went on the off chance we could rise. Managed to get on the go carts.", "P1.01": "good customer service", "V1.02": "Price was reasonable"} {-0.036670517,0.004700926,0.0003928361,0.027052576,-0.045652878,-0.016214777,-0.023053885,0.08560508,-0.014490501,-0.045852736,0.050526842,0.12787639,0.011498402,0.03101536,0.044772103,-0.027759895,0.03977677,-0.07842518,-0.034115225,-0.038122762,-0.11193451,0.0072557447,-0.012454419,0.04839233,-0.02739244,-0.004613373,-0.025438089,0.062351312,0.0092516355,0.014931512,-0.07478629,0.0041396273,0.02576094,-0.057627965,0.0128437765,-0.08640949,0.050954826,-0.095048755,0.046226375,-0.0043269205,0.018510312,-0.06775425,-0.022327049,0.09005928,-0.040756933,0.05136188,0.045500897,0.019758277,0.023064245,0.09580898,0.038246788,-0.017285828,0.036133196,-0.0927706,-0.03169842,0.085523136,-0.03311023,-0.012944464,0.09839509,-0.050357617,-0.012376797,-0.07059907,-0.015620114,0.022011098,-0.004154411,0.0194952,-0.050462995,-0.07694092,0.011491262,0.007751221,-0.007736081,-0.00607494,0.06268156,0.009170221,-0.02160898,0.012704108,0.042570904,-0.09421531,0.028057095,0.04352913,-0.027927676,-0.034335673,-0.029761473,0.039589614,-0.11391808,-0.07489688,-0.002706416,0.09187187,0.016624978,-0.08032348,0.024985999,-0.017663276,-0.036039997,0.07646256,-0.05483294,0.008457151,-0.032614466,-0.076482885,0.053137578,0.03812052,0.023934066,0.09439327,0.023205759,-0.066301286,-0.04164634,-0.0048557254,-0.015003419,0.036939584,0.07542878,0.02517523,-0.012901874,-0.007718699,0.06179999,0.001504814,-0.14126083,-0.010597877,-0.04468001,-0.039512906,-0.06342377,-0.059757184,0.0709249,0.045967884,-0.015552304,0.03633669,-0.08630356,-0.08824486,0.0528505,-6.0879022e-34,-0.021021863,-0.010744865,0.032911275,-0.0054589375,0.06721981,0.054810572,-0.023179034,-0.0029568267,-0.06335657,0.017921092,0.036834497,0.061809734,-0.017441008,-0.07003544,0.007379431,-0.032229956,-0.022977948,0.020193307,-0.0072534513,-0.073897704,-0.02762565,-0.075511985,0.010748603,0.032168236,0.01209579,0.07468829,-0.034988236,-0.02072986,0.09634577,-0.005441043,0.032838944,-0.026808279,-0.018909669,0.0026820735,-0.0054397625,0.0071851644,-0.06025112,-0.005755372,-0.06496917,0.0020525577,-0.074871965,0.0072917016,0.01434549,0.025666324,-0.026787972,0.00024181421,-0.015552444,-0.05172499,-0.05759183,0.046621326,-0.11098529,0.027707305,-0.052812785,0.15976511,-0.078306064,-0.041948278,-0.008720514,0.04761351,-0.048515894,-0.0424598,0.029813925,0.041269593,0.021417834,-0.09046223,-0.020604528,0.00049367896,-0.009443335,-0.019234737,-0.04254631,0.09872975,0.109035306,0.033593807,-0.033407215,-0.030330727,-0.041230597,0.10986212,-0.05842676,0.037410036,0.07325317,-0.008441371,0.01200248,-0.030810628,0.00025374634,-0.04138804,0.13100433,0.004341329,-0.0458024,-0.10269073,-0.05427843,0.01646594,-0.024077654,0.029220544,0.0881368,0.011643011,0.024059381,1.2089134e-34,0.0034793837,0.08771185,0.06740152,0.018921431,0.06596215,-0.029539691,-0.012835164,-0.00342809,-0.027925948,0.05175389,-0.1012125,0.08007226,0.058252554,0.058638662,0.0059183165,-0.02112576,0.1249565,-0.036936346,0.09945101,-0.06861182,0.0035897116,0.08545162,-0.14165524,0.0673426,-0.0069189183,0.10832544,-0.04356567,-0.016602559,-0.10357301,0.0104088085,-0.047689423,-0.04782819,-0.03704901,0.03469539,0.022064377,0.052188803,0.01924726,0.13773283,0.021061545,-0.03563657,-0.007853958,-0.040842872,-0.0019253241,-0.031236881,0.020404855,-0.041010752,0.01891781,0.033143003,0.033494882,-0.005029201,-0.07128088,0.057563115,-0.03820924,0.010688452,-0.052851062,-0.0014810994,0.13336891,0.014111961,-0.055399325,-0.054948807,-0.028443016,0.04801557,-0.043914497,-0.026399102,0.07285428,-0.012395304,0.031768844,-0.037178833,0.01028872,-0.012606588,-0.012837162,-0.015616136,0.0531853,0.057355314,-0.021322995,-0.05327022,0.06600952,-0.02131993,0.034469116,-0.017253766,-0.017179878,-0.034481753,0.046686966,0.043108888,0.06343594,0.03721307,-0.035284374,-0.014850382,0.056416325,0.0825387,-0.018369475,0.028235946,-0.041189607,-0.03325316,-0.021071542,-2.8570785e-08,-0.037975516,0.040401857,0.024707554,0.057445295,0.07339565,-0.03129796,0.09558072,0.11422403,-0.022981841,0.0017831798,0.022203477,-0.03403685,-0.0065142442,0.04715941,0.062466905,-0.0032759616,-0.030828834,0.06042557,-0.037878364,-0.020335266,-0.0055714166,0.03240038,0.00066573214,0.0131999785,-0.073971495,0.004696536,-0.012599964,0.07020393,0.0046476596,-0.03508944,-0.01596723,-0.0005384553,-0.004842296,-0.0096905865,0.025783734,-0.058499727,-0.044674106,-0.0068230047,0.025080413,-0.052005995,-0.035427757,0.023298921,-0.009399909,0.044914246,-0.0062767393,0.024207579,-0.06097593,0.08892986,0.034207884,-0.04223747,-0.08695659,-0.028747883,0.017804984,0.09186659,0.04190434,-0.042141806,-0.01961478,0.008968414,-0.0501998,0.05293808,0.017366786,-0.12763666,-0.09363319,0.026501268} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:03.451496+00 2026-01-30 02:01:08.932181+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1469 google ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE 1 t 1472 Go Karts Mar Menor unknown Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to another venue. badly run, told 20 min wait but waited almost an hour. ended up getting a refund and going to another venue. 1 2023-01-31 01:52:39.833374+00 en v5.1 V1.01 {J1.02,R1.01} V- I3 CR-N {} {"V1.01": "Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to anothe"} {0.08983495,0.007970211,0.027262947,0.021661963,-0.031008156,0.0061564175,-0.08789309,-0.039593726,-0.03975008,-0.054894082,0.026554156,0.0046659405,-0.035162926,0.020677509,0.008271578,-0.055008747,0.053754512,-0.03726218,-0.03401976,0.028341271,-0.022094335,-0.046637643,-0.04441798,-0.0028299692,-0.03083698,0.013206469,-0.059470885,0.055211037,-0.016627742,-0.018912481,0.0036417753,-0.05259363,0.0044446345,0.012289801,0.046233255,0.0024788098,0.0005561689,-0.071998,0.0037216821,0.031539764,0.08921552,-0.036606934,-0.0035386372,0.05592321,0.060516533,-0.016893167,0.04517841,-0.012459921,0.063080266,0.02425077,0.01575734,-0.04040709,0.021793671,-0.079229765,-0.057608105,0.102595136,-0.030796072,0.120597914,-0.013486764,-0.0231467,0.007840083,-0.08016907,-0.050149627,0.07197614,-0.022405354,0.02907347,-0.056556948,-0.08602322,0.09710873,-0.02316224,0.04118119,0.02356686,-0.013970914,-0.03917963,-0.055525053,0.06613814,0.026310358,-0.07104797,-0.0074547944,0.014691563,-0.04341627,-0.08225729,-0.028270703,0.0072317095,0.08206613,-0.029291866,0.07060745,0.05579895,-0.014983599,-0.043964848,0.054116644,0.07745146,-0.033003405,-0.009180778,0.035670314,0.04773828,0.004484708,0.016782705,-0.02738834,0.043276057,0.050840512,0.0639858,-0.020685198,-0.0025160469,0.029848794,-0.08310128,0.040382154,0.13472705,-0.03677447,-0.053477652,0.057923745,0.024111029,0.124111205,0.04236197,-0.008111394,0.09314636,-0.064406276,0.05726228,0.045959532,-0.03639163,0.0042501455,0.11773224,0.0057117115,-0.016227335,-0.097947165,0.0019068704,0.08315269,-4.717423e-35,-0.04399978,-0.050391734,-0.038352862,0.0014125193,0.07918851,0.013813756,-0.005359885,0.008955838,-0.05685288,0.10744923,0.041705918,-0.05893454,-0.026884157,-0.11132386,-0.046432354,0.039585534,-0.022097815,0.02398711,-0.08521686,0.007113256,0.03028582,-0.07001107,-0.057655092,-0.015428494,-0.0035468035,0.04050247,-0.05193228,-0.023396952,0.13277116,0.0018300167,-0.04914443,-0.010288964,0.011851539,0.02701235,0.024850331,0.022569906,-0.007854791,-0.0053259325,-0.027869947,-0.013776012,-0.03927208,0.018101458,-0.028966606,-0.056904886,-0.033415563,-0.0065107374,-0.09097073,0.052140728,0.023531554,0.046855394,-0.07652675,0.035776217,-0.021219129,0.04004465,-0.0103450725,-0.013193665,0.014457913,-0.019076398,-0.04532957,0.01748638,0.09599656,0.048837792,-0.0810838,0.008527936,-0.1042968,-0.123941235,-0.00813962,-0.1086055,0.006487981,-0.055543903,0.06865344,0.039233398,0.05165124,0.04575815,0.021685917,0.0019884685,-0.09617554,-0.043233294,-0.05808403,-0.015496368,0.08599161,-0.04372842,-0.01868782,0.013743121,0.0067473636,0.050252516,0.0059659006,-0.101647705,0.010682811,-0.027223783,-0.054104615,-0.01980091,-0.032632325,-0.01599086,0.04296798,-7.6428902e-34,0.07143075,-0.013671442,0.021041583,0.0077172723,0.08888994,-0.007852506,0.006168716,0.12587573,0.052243996,0.021823034,-0.037258416,0.052564934,0.061929464,-0.021886453,-0.012590268,-0.05090839,0.078984015,0.001163652,0.0613972,0.026843065,0.013378636,0.020032486,0.040582873,0.018001648,-0.091347694,0.038757663,0.11782054,-0.02319322,-0.13980594,-0.025063066,0.07043971,-0.049232487,-0.075896055,0.018346494,0.025312318,0.07306689,-0.0075355317,-0.023843534,-0.014419691,-0.03438016,0.0333129,-0.006979672,0.005680065,0.025587339,0.0052867825,-0.011519068,0.046972163,-0.12493674,-0.0047524516,0.025922261,-0.066250145,-0.018267741,0.084453754,0.02923421,0.017673224,-0.10229382,0.063798964,-0.056972735,-0.02962668,0.040402245,-0.04781963,0.053178765,-0.014711504,-0.033464536,0.045147132,-0.014605566,-0.014629826,-0.038411558,0.053276785,0.06450476,-0.10236834,0.086254366,0.025081519,0.06403507,-0.0043192343,-0.02140575,-0.04299275,0.013654439,0.0076507307,0.018122982,0.029191554,0.014626726,-0.011009995,-0.07906434,0.06903964,0.04859327,0.08004272,-0.033395156,-0.06290183,0.06151696,0.09688095,0.048835758,0.07766066,0.073264614,0.008190532,-2.6374808e-08,-0.06877041,0.082050435,-0.0032221796,0.036227588,0.036858626,-0.012518783,0.019333607,-0.0086426595,-0.0340355,-0.06789377,0.00820893,-0.037823692,-0.0020499553,0.06893838,-0.034070887,-0.06403204,-0.020284297,0.05058569,-0.0020723492,-0.0211646,-0.043292284,0.05475206,-0.0392854,-0.067748256,0.036397275,-0.04021526,0.10153533,0.04001299,-0.0135854995,-0.034712963,-0.09747172,0.005565715,-0.040891062,-0.0041367942,-0.13135518,-0.049064513,0.009948732,-0.008609744,0.055901114,0.032055702,-0.030668415,0.007115446,0.026095131,-0.02653895,0.03258213,-0.010077072,-0.009300165,0.03774081,0.02425369,-0.01756282,-0.01718235,-0.04274806,-0.08825612,-0.030624924,0.046247847,-0.029441128,0.025838623,0.018986182,-0.007357651,0.046669737,-0.113506004,-0.09339041,-0.09017025,0.045162126} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.130284+00 2026-01-30 02:01:09.456236+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1883 google ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE 1 t 1886 Go Karts Mar Menor unknown Es el mejor lugar de Karts de toda la peninsula Ibérica... nisiquiera la pista de Alonso de Asturias es tan completa y afable. Además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones, la atención profesional de los responsables y los clientes asiduos como “el Garre y su vaquilla corneadora” no os dejaran indiferentes. Recomiendo la actividad en el Mar Menor. es el mejor lugar de karts de toda la peninsula ibérica... nisiquiera la pista de alonso de asturias es tan completa y afable. además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones, la atención profesional de los responsables y los clientes asiduos como “el garre y su vaquilla corneadora” no os dejaran indiferentes. recomiendo la actividad en el mar menor. 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {O2.04} V+ I3 CR-B {} {"E1.03": "Además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones", "O1.02": "Es el mejor lugar de Karts de toda la peninsula Ibérica... nisiquiera la pista de Alonso de Asturias", "P2.01": "la atención profesional de los responsables y los clientes asiduos como \\"el Garre y su vaquilla corn", "V4.03": "Recomiendo la actividad en el Mar Menor."} {0.013236185,0.022914438,0.01973512,0.02574761,-0.10476613,-0.052075468,0.026733158,-0.031005051,0.015734384,0.006679355,0.07690255,0.029347755,-0.0072279386,-0.007506639,0.0076944404,-0.062219914,0.014381451,0.0067354916,-0.018671025,0.04824069,0.074299015,-0.0030194712,-0.06474234,0.07405889,-0.09329821,-0.04249207,0.002927727,-0.022385217,-0.08076139,-0.020974811,-0.019328343,-0.05518313,0.089036755,-0.025160467,-0.055480275,0.011018685,-0.0051389392,-0.07524168,-0.061367486,0.031915538,-0.07056846,-0.044440728,-0.04250041,0.005370191,-0.038111605,-0.04683406,-0.02443187,0.07255395,-0.044163108,-0.04597222,-0.0955336,-0.046995293,-0.036116034,-0.053214863,-0.01565404,-0.020493357,-0.10707895,-0.0067389854,0.06045465,0.09438274,0.05243911,0.088608146,-0.018087126,0.029818278,0.003968907,-0.0041268044,0.075386964,0.059849948,-0.059529815,0.049726605,0.10579436,-0.085692056,-0.006348926,0.019682636,0.029558694,0.017258061,-0.10260977,-0.0021600402,-0.035996806,-0.038295068,-0.030445173,-0.0087697655,-0.015942937,-0.025143752,0.028162792,-0.03373691,0.028959136,0.02671101,0.06075701,-0.022429515,0.024202092,0.010526825,-0.07838973,-0.020175986,-0.025402548,0.03248669,0.071143635,-0.027439697,-0.016824922,-0.015206382,0.06828673,-0.017442767,0.039675403,0.029500343,-0.08222033,0.02863033,0.0002520743,-0.04305141,-0.03973727,0.040519103,-0.10207534,0.014871957,-0.05728267,-0.08960926,-0.05686076,0.04419799,-0.044041067,-0.0050678346,0.00426295,-0.0027021908,-0.014394186,0.012038948,-0.044186387,-0.00058809324,0.050626114,-0.05868188,0.023564544,9.942812e-33,-0.075751245,-0.04263348,0.030114325,0.09653248,0.031060053,-0.015611328,-0.010241255,-0.04563712,-0.07782052,-0.046208654,0.0034413151,0.036517322,0.00039228433,0.01320028,0.088248186,0.050339352,-0.038695294,-0.039832447,0.07437224,0.049793337,-0.023657914,-0.018349249,0.016531378,0.037489682,-0.056138255,0.013449381,-0.015766134,-0.0049010674,-0.09541988,0.051558323,0.04318656,-0.049597163,0.01316335,-0.08909984,-0.062153086,0.0078067086,-0.022715287,-0.02450819,-0.099475615,0.032405216,-0.058752563,-0.00994207,0.02159166,0.034156956,-0.06509306,0.058869146,0.07514679,0.02974505,0.05842201,0.021356845,-0.015461459,-0.040225722,-0.034991313,-0.037231423,-0.043591615,0.12420305,-0.044390798,0.057163317,-0.08193365,-0.079043075,0.0743437,-0.042055987,0.05689585,-0.037917197,-0.011780341,-0.044085227,0.02328494,0.073490955,0.13379417,0.068240024,-0.112440735,0.03614941,-0.013931772,0.068710275,0.025863184,0.040158905,-0.014487468,-0.002944586,-0.008373453,0.06489764,-0.08158089,-0.017276878,0.014855183,0.06558442,0.11256125,0.039548304,0.010317793,0.04872432,0.013442211,0.12920812,0.029986031,0.08208725,0.024011202,-0.04492195,0.037239723,-1.2580521e-32,0.023276063,-0.019158967,0.045720417,0.05615974,-0.03220562,0.029056026,-0.045630604,-0.049131237,-0.023093844,-0.036220778,-0.12348748,-0.050615944,0.13878725,-0.05482495,-0.07693982,0.06775877,0.00897957,-0.07769223,-0.0321777,-0.011611725,-0.094187714,0.04511483,0.11016469,-0.07527494,-0.076680034,-0.057179406,-0.016974984,0.028281167,-0.1009458,-0.020812318,0.09260763,-0.06180634,-0.031665493,-0.026699327,-0.0633839,0.0061288993,-0.00052896043,0.023019092,0.01981113,0.07190089,0.0058476436,0.057212427,0.06405809,-0.0011214904,-0.017087216,0.028094133,0.08993844,-0.09404834,-0.008931245,-0.031135242,0.11494116,0.021721844,-0.09493355,0.0029390384,0.116241954,-0.035858437,-0.023824446,-0.020894445,-0.07237349,0.007955704,-0.009175034,0.036703464,-0.036572933,-0.014590905,0.08665139,0.018129097,-0.13017602,0.020432774,0.0024694214,-0.002076399,0.079086244,-0.08538442,-0.06947596,-0.0024069198,-0.0035313524,-0.007192245,-0.05787005,0.042777274,-0.038776945,0.019319829,0.03984362,-0.04705878,-0.03836992,-0.034056097,-0.027423656,-0.0053661973,-0.024821354,0.002427045,0.07354415,0.03318242,-0.020325255,0.07261137,-0.004521375,-0.05653367,0.008774863,-5.848015e-08,0.024021344,-0.008516841,-0.033751633,-0.008233078,-0.025680544,-0.024935188,-0.006825764,0.047120143,-0.05090249,0.11040988,-0.026365178,-0.0136513,-0.028984465,-0.008184008,-0.016607277,0.0054698074,0.07052839,0.07538846,-0.041167177,-0.061217137,0.03284067,-0.056228515,-0.07239484,0.023375783,-0.024753883,-0.022176722,0.005139901,-0.06087193,0.0636568,-0.022060504,0.014036414,-0.027590899,-0.0003405566,-0.042823784,-0.044433344,-0.023439962,-0.084959425,0.058965527,0.060558375,0.031182254,0.050354555,-0.031719327,-0.041189972,0.034424968,-0.050810643,0.04017031,-0.05285116,0.049979735,-0.047810584,0.0215301,-0.061027292,-0.010139585,0.06873231,0.055245295,0.019562986,-0.020972408,0.06931723,0.05589827,0.0069764485,-0.03938077,-0.0005095205,0.046976224,0.018376358,-0.04643367} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:17.810204+00 2026-01-30 02:01:11.057909+00 22c747a6-b913-4ae4-82bc-14b4195008b6 663 google ChdDSUhNMG9nS0VJQ0FnSURIdkktRGlRRRAB 1 t 666 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Gran servicio de Nestor y Carmen gran servicio de nestor y carmen 4 2025-01-25 01:27:48.343102+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Gran servicio de Nestor y Carmen"} {-0.03661747,0.058210343,0.010058155,0.00095452665,-0.07375123,-0.006669406,0.08530904,0.03747051,0.022460893,-0.008475968,0.0055377814,0.0040528276,-0.0029382936,0.002923591,0.044568706,0.0071147657,0.031259097,0.026329285,0.03468388,0.0702401,0.12807867,-0.06535915,-0.04504525,0.11003837,-0.06688252,-0.0031291659,-0.021425221,-0.031432044,-0.012874669,0.010243977,-0.023034722,-0.010417972,0.08074491,0.010796255,0.029228805,-0.026912771,0.07069251,-0.0838879,-0.018026516,0.07461192,-0.11434159,-0.033000406,-0.038433347,0.014497475,0.02127121,-0.06165844,0.049986325,0.065178536,0.03205599,-0.057250727,-0.07252625,-0.03637909,-0.009446362,-0.033936586,0.011059918,0.043445095,0.0076016495,-0.075994134,0.04474467,0.006155236,0.0089545995,0.048149984,-0.040476635,0.036003716,0.0138726365,-0.0714761,0.016199622,-0.0040496574,-0.038392067,-0.0033427672,0.07547123,-0.051055547,0.026930874,0.02052287,-0.086413935,-0.034365024,-0.002209129,-0.022701297,-0.0986416,-0.058187753,0.014612032,-0.017220104,0.055969056,-0.02736195,0.01872595,0.015536528,0.013830593,-0.017045014,0.060551345,-0.049668353,0.0022455605,-0.05612155,-0.063228905,0.035826292,-0.050908066,-0.026306,0.06920547,-0.042019222,-0.015684154,0.119896226,0.064995795,-0.008209187,0.0863908,0.03260262,-0.011911957,0.08388952,0.0036577722,0.062272884,-0.019565877,0.048305105,-0.09486782,-0.025001219,-0.07658261,0.033209953,-0.06867544,0.029769102,0.051944815,-0.04702591,-0.056891847,-0.0381177,0.08811625,0.016684258,-0.038398646,0.052390035,-0.037053153,0.021463094,0.10205109,1.4650485e-34,-0.034169625,-0.023844765,0.04301054,0.05949987,-0.060184155,0.06688647,-0.04418612,-0.019578705,-0.010994191,0.079756066,-0.06304852,0.044557534,0.009274855,0.031171607,0.015335101,0.078056686,-0.033078328,-0.011081858,0.081020564,0.0059059663,-0.029397786,0.087696746,0.01623349,-0.0016153875,-0.031136274,0.072994664,-0.030493924,-0.11039243,-0.021581687,0.08434154,0.045130808,-0.0062923618,0.017036073,-0.017655268,0.028722666,-0.013801594,0.011963483,-0.009768641,-0.022353187,-0.006168216,-0.0057270136,0.0053121527,0.050038137,0.019789636,-0.027926387,0.024938712,0.12304891,0.07745687,0.07558446,0.0056372224,-0.04726476,-0.055173438,-0.120767996,-0.005752654,-0.05691853,0.036200907,-0.0741905,0.032391295,-0.014655457,-0.031794544,0.10525666,-0.10636176,0.029188855,-0.026815759,0.006177727,-0.020012408,0.053788245,0.061782733,0.1348579,0.05544065,-0.11868475,0.003963551,0.059604093,0.072605655,-0.025401432,-0.0097704725,0.043414835,-0.02739604,-0.08710946,0.08274359,-0.08625259,0.0013562666,0.027774129,0.06428702,0.03118235,0.08073872,0.0765757,0.029752858,-0.03830688,0.104107164,-0.108485036,0.06967875,0.036262345,-0.029960362,-0.0018353892,-1.8213223e-33,-0.031402953,-0.06218581,-0.01516084,-0.014413289,0.009600258,-0.011574774,-0.040957544,-0.00047095158,-0.08744095,-0.016452894,-0.04589697,-0.11726103,0.13183206,-0.08367267,-0.033528313,0.07346784,-0.04700608,-0.050413143,-0.11979786,0.029721806,-0.04400446,0.019787535,-0.009273117,-0.010663422,0.008070115,0.008055101,0.03389191,0.00087752315,-0.04020136,-0.015378262,0.0004975724,-0.025126027,-0.048807144,-0.009947415,-0.03318802,0.11357574,-0.06072518,0.07407275,0.021494124,0.043940526,0.0039026402,0.012167025,0.04440286,0.060853112,-0.010507074,0.054322537,-0.041640636,-0.085709974,0.02198994,-0.039844327,0.02657473,-0.039212216,-0.057956208,-0.01270229,0.08054783,-0.07869656,-0.1167875,-0.044593554,-0.0915968,0.022593014,0.08917583,0.04942553,-0.09927511,0.034765456,0.05870786,-0.026783243,-0.0680199,-0.004374668,-0.027246872,0.08094068,0.065658435,-0.011218241,-0.07006469,0.043583162,-0.009027662,-0.026707502,-0.06947399,-0.049614232,-0.026326481,-0.057138022,0.008889344,-0.049028292,-0.038152993,-0.0047763963,-0.028245728,0.037769124,0.012901925,0.031232871,0.049235094,0.008961309,-0.0063114213,0.01778871,-0.053830635,-0.08830759,-0.03092786,-1.6757552e-08,0.04744382,0.016313782,-0.024609959,-0.0026775897,-0.056669507,-0.01810756,-0.019088013,0.020849947,-0.022176621,0.0853063,-0.004262792,0.0733645,-0.0012576308,0.0048850565,-0.038555842,-0.0076169744,0.04400458,0.03696435,-0.004118895,-0.0750552,0.034369994,-0.013241016,-0.014371581,-0.10243677,0.019864239,0.02452949,-0.022169422,0.009857562,0.056748,-0.03875975,0.03492597,-0.009153016,-0.10040539,-0.08654403,-0.026466815,0.050260235,-0.080728844,-0.01752857,0.004331387,-0.0836652,0.07498933,0.040638234,0.009542445,0.008636501,0.06820011,0.0017703306,0.0059055137,0.0143927885,0.02383146,0.031006137,-0.036093004,-0.03237379,0.040579587,0.042060036,-0.005119214,-0.020134225,0.02353378,-0.0074887285,0.013958306,0.031684306,-0.00323652,-0.013049655,-0.0132775195,-0.11365714} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:52:56.315641+00 2026-01-25 01:27:52.236565+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 664 google ChdDSUhNMG9nS0VJQ0FnSUM3NXVHWW93RRAB 1 t 667 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buena gente. Lo recomiendo buena gente. lo recomiendo 5 2025-01-25 01:27:48.343104+00 es v5.1 A1.01 {} V+ I1 CR-N {} {"A1.01": "Buena gente. Lo recomiendo"} {-0.047137234,0.0013334509,0.049671456,-0.026029637,-0.078810334,0.03970822,0.14650479,0.029636845,0.023538653,0.002991151,0.07708961,0.025437322,-0.012191639,-0.07018367,-0.031328443,0.034442212,0.024019174,0.024309328,0.062430546,0.0045323526,0.049974266,-0.043147568,-0.08235245,0.08317722,-0.04403723,-0.015587956,-0.00081129273,0.055073895,-0.028692119,-0.07686138,-0.024924267,0.13775776,0.05310843,-0.034215715,-0.048358604,-0.0027452998,0.06318425,-0.044192877,-0.026506776,0.031058911,-0.08672341,0.0033920966,0.007274413,-0.034875274,0.086544715,-0.062977806,-0.0049551907,0.06418575,0.077624984,-0.01868155,0.006813948,-0.04177308,-0.009286483,0.041497823,-0.006685382,0.062330976,0.0529516,-0.040940266,0.0494438,0.053432208,0.0011362854,0.057379797,-0.06979542,0.021642342,0.014990747,-0.0012857725,0.10900187,-0.018705336,-0.14746304,0.0007129141,0.06757195,-0.019193403,0.10727359,0.050460283,-0.05370215,0.04507724,-0.0065802447,0.021956235,-0.035508335,-0.024258414,-0.0020794135,0.042354994,-0.015938349,-0.042292528,0.0015643847,-0.002644464,0.0032968882,-6.9235255e-05,0.08501921,0.011291149,-0.07545348,0.035741474,-0.006095704,0.019359302,0.0015233654,0.031184934,-0.006412325,-0.0840539,-0.018171607,0.039865892,0.08224742,0.08472067,0.10388892,-0.019767333,-0.033899784,0.05123814,0.015733661,0.012717657,0.03667718,0.0059613693,-0.053205106,-0.027447386,0.026467046,0.036686324,-0.067913644,0.029191932,0.019616783,-0.039000146,-0.04319161,-0.07684163,0.069947235,-0.0064954394,-0.059616182,-0.043317188,0.0016217494,-0.03805737,0.035387117,-2.5736014e-34,-0.02992617,0.004809659,0.004123165,0.08319736,0.04886199,0.05251991,-0.053302772,0.0043317177,-0.078740336,-0.038820036,-0.09949386,-0.020519903,-0.02372876,0.035294067,0.030870348,0.060613554,-0.018975595,0.02913082,0.009936427,-0.013646142,-0.12084919,0.011986357,-0.019440334,0.020225279,-0.01205643,0.05420492,-0.02121929,-0.08671381,0.0121690305,0.034300864,0.019368563,0.0685861,0.036564983,0.006506435,-0.016233837,-0.07035013,0.059862487,0.019911397,0.0010636058,0.04581755,0.040950816,0.040095285,-0.07065658,0.04640661,0.027464943,-0.06996321,0.060672283,0.005668683,0.03922886,0.0348816,-0.04890385,-0.04712826,-0.066201925,-0.0008119113,0.023607666,0.022647282,-0.11842649,0.09664927,-0.04098947,-0.06336404,0.09732384,0.025742443,0.049982276,-0.026631402,-0.11181041,-0.04078963,0.010765863,0.069412224,0.10140601,0.032109305,-0.009930807,-0.06310755,-0.012586215,0.027725182,0.016316637,-0.06655356,0.012546471,0.022223314,0.051914338,-0.022753539,-0.0379618,0.019580757,0.016152892,0.037936844,0.113587484,0.076930076,0.071527615,0.04124186,-0.05117517,0.053728823,0.0018436646,0.068293035,0.067245014,-0.11875604,0.0040394925,1.4620225e-34,0.017714696,-0.025510833,0.02992989,0.026772844,-0.041129455,-0.06438305,-0.030348096,0.026967175,-0.07515999,-0.14169733,-0.0795684,-0.114342384,0.12900546,-0.043682672,-0.006065352,0.038922176,0.021972073,-0.028150855,-0.09665895,-0.027848069,-0.010461619,-0.0114886975,0.1292173,0.009117065,0.008004288,-0.027454628,-0.007721402,0.075305164,-0.043453764,-0.025288142,0.02751758,-0.04696844,-0.018115835,-0.018508898,0.03245073,0.045714147,0.03778305,0.018113496,0.0014833461,0.04158632,-0.019008463,0.044214785,-0.038657643,0.022713935,-0.04290621,0.059380867,-0.06863916,-0.07718862,0.082410626,-0.023504471,0.039698675,-0.018201806,-0.052239925,0.008738018,-0.04330778,-0.059683748,0.030763697,-0.012454798,-0.12456221,0.027606305,-0.0208602,0.03804731,-0.03910983,-0.005646981,0.11454848,0.020556048,0.02732154,0.099828705,0.010827781,0.074902385,0.05700029,0.025892483,-0.062301047,-0.023511669,-0.057037555,-0.08476691,-0.09519526,0.030074688,0.0019497515,0.0096389605,-0.010720518,0.0043541,-0.019010816,-0.022695297,-0.074369244,-0.044959318,0.029550523,0.033604734,-0.013772508,0.0043947077,0.042146485,-0.042339217,-0.07530345,-0.054199994,0.026495576,-1.7084353e-08,0.025924144,-0.024225254,-0.020732272,0.016694183,0.043048378,-0.03304725,-0.08158235,0.0120225325,0.014999255,0.03663251,-0.0006747664,0.008510491,0.0026107177,0.109518535,0.009651957,0.012385872,0.03254376,0.06807136,-0.03481067,-0.049011182,0.03570621,0.015327091,-0.065159276,-0.007373612,0.038824894,0.015793158,-0.030843362,-0.048628174,-0.02668536,-0.058549304,-0.023077345,0.018454827,-0.055061694,-0.09117795,-0.031005796,2.12024e-05,-0.015402921,-0.033526115,0.015317726,-0.06648559,0.124768846,0.0129459025,-0.025092175,-0.033157516,-0.018459754,-0.10932057,0.059765555,-0.007764444,-0.020671561,0.006432939,-0.041205186,-0.008486995,0.064473554,-0.015186901,0.051141717,-0.048076622,0.07306845,0.00022855554,0.025072195,0.032357715,0.00969017,0.093246564,0.029600585,-0.10817267} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:52:51.748327+00 2026-01-25 01:27:52.239188+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 665 google ChZDSUhNMG9nS0VJQ0FnSURIbG8ydGNnEAE 1 t 668 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy simpático y atento muy simpático y atento 5 2025-01-25 01:27:48.343109+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy simpático y atento"} {-0.010104056,-0.021368258,0.021704765,-0.009211217,-0.014808428,-0.061165348,0.09777463,-0.023263158,-0.008397443,0.00038116926,0.08806926,-0.021572549,0.010184701,0.018779416,0.023648944,0.055024125,0.014295597,0.031841308,-0.005451709,0.03239198,0.09169688,-0.035036884,-0.06972404,0.083083406,-0.06013948,-0.05037431,-0.024737535,0.010988609,0.008711032,-0.02954731,-0.005634482,0.098094516,0.094984144,-0.056795727,0.034074467,-0.09346554,0.06948204,-0.09308745,0.01808894,-0.037946396,-0.058691405,-0.002266705,-0.03054328,0.0056621167,-0.028309252,-0.02920311,0.065137155,0.057271153,0.040873073,-0.009962867,-0.09531445,-0.070610635,-0.08105341,-0.021912755,0.025096228,-0.0026573297,-0.06439649,0.0020796952,0.044541776,0.005865198,-0.061078828,0.049690537,-0.024786716,0.007936053,0.076406464,-0.044721086,0.01306718,0.020355219,-0.05290168,0.024061467,0.10229834,-0.057338383,0.049610686,0.028625371,-0.07709962,0.07723409,-0.033231802,-0.006458116,-0.0039037396,0.0012081497,-0.03943545,-0.031321812,-0.021024663,-0.030258795,0.014373341,-0.008198602,-0.05973088,0.04937319,-0.013802676,-0.004293199,0.051977355,0.01779252,-0.034846995,-0.0086156,0.018254027,0.005174153,0.022083707,-0.028511517,0.01882469,0.11135283,0.03510541,0.095584355,0.10794844,0.016544158,-0.039054863,0.045530193,0.0060942904,-0.070083685,0.026366528,0.012861039,-0.08016458,-0.019419512,-0.026559765,0.012690803,-0.058529556,-0.015402695,-0.020421144,0.027268665,-0.028309725,-0.06486551,0.04300187,0.053654723,-0.0713719,-0.0010452277,0.00515283,-0.071488194,0.08349219,2.118383e-33,-0.037852027,-0.11522084,-0.0120055,0.039360534,0.007424468,0.033289302,0.03237358,-0.023390068,-0.06016049,0.025763668,-0.038052533,-0.047519118,0.02737516,0.08229456,-0.0090193935,-0.052850306,0.033531107,-0.09108637,0.042636186,0.072238676,-0.05314709,-0.034413815,-0.05101468,0.015367994,-0.06846719,0.024452038,-0.09898876,-0.03909293,0.002282068,0.09807569,0.027313696,0.05012943,-0.05016974,-0.017536664,-0.06799847,-0.067598924,0.044090033,0.0065925336,-0.044584464,-0.062243633,0.03664165,0.032169353,-0.028277038,-0.0051374366,-0.01732706,0.022247814,0.07499284,0.042932447,0.097151496,0.051821668,-0.033080693,-0.102201626,-0.061971642,-0.07630533,0.029258136,-0.01798077,-0.0031492282,0.043484,-0.021963483,0.0021506804,-0.004882893,-0.037846312,-0.0130071435,-0.0029275524,-0.037487105,0.030232217,-0.03014271,-0.029339641,0.107436106,0.11704128,-0.06695388,-0.0026840342,-0.09236288,0.07041254,-0.061616186,-0.017951682,0.02786687,0.0052321656,0.023277733,0.002003391,-0.003874099,0.021594616,0.010506928,0.04739306,0.011882628,0.082508706,0.05496404,0.061814032,-0.02914586,0.078433044,-0.048032664,0.020062067,0.05602038,-0.02595643,-0.014858179,-2.4888147e-33,-0.038506348,-0.0050457325,-0.01754548,0.0748436,-0.06879277,0.0053837905,-0.0055531734,-0.008599024,0.02570343,-0.057126552,-0.06398482,-0.11417374,0.11292845,0.013981864,0.047838226,0.1222261,0.0651379,-0.04874336,-0.09759101,-0.024641149,-0.017714834,0.032793194,0.038030718,-0.015951077,-0.029504951,-0.011107751,-0.015781295,-0.010593472,0.012119461,0.03731015,-0.03117269,-0.03296669,-0.050273925,0.040206734,0.0025904472,0.02912455,0.036262553,0.07738157,-0.0009505984,-0.0278817,-0.03510575,0.09534611,-0.014943402,0.0824864,-0.028792739,0.045477096,-0.031096827,-0.096208625,-0.011495848,-0.0223808,0.025307255,0.0012646505,0.031510334,-0.04154772,0.07649883,-0.017570727,-0.09177526,-0.06497219,-0.12403697,-0.037515443,0.025369985,0.0066067684,-0.11543072,-0.042124856,0.10938972,0.034351785,-0.0420289,0.012979903,-0.028713254,0.02157904,0.10670024,-0.017396439,-0.110039115,-0.029668743,-0.066879,-0.0711732,-0.08637701,0.038368974,0.0014658901,0.11110713,0.07028934,0.050376114,-0.025608618,-0.054261893,-0.05155939,0.040330246,-0.034233075,0.020335788,0.051768992,0.033476606,0.015490757,0.02795238,-0.043206666,-0.039387457,0.02266712,-1.81147e-08,-0.0026540775,-0.08578651,0.039381843,-0.00639881,-0.00353686,-0.007611982,0.011874857,0.07418948,0.013766938,0.09921484,0.057436552,-0.032811303,0.014244285,0.0727249,-0.03541686,0.068474576,0.10034495,0.029768055,-0.019327458,-0.002480625,0.047368728,0.0037773454,0.017567642,-0.047222987,-0.03609988,0.01404602,-0.03513983,0.042820677,-0.023368383,0.06974006,-0.0006637403,-0.013691411,-0.022091275,-0.12100064,-0.10485436,-0.042244498,0.004573717,-0.041255835,-0.0037830602,-0.060393702,0.0787996,-0.016596828,0.026471172,-0.016523726,0.08699671,-0.03886525,0.00724966,0.0062434436,0.015151556,0.014796432,-0.02550085,-0.000990311,0.027180808,0.060718432,-0.00506506,-0.06355611,0.036744352,0.054724634,-0.039997414,-0.0066982107,0.08317823,0.1641833,0.03275146,-0.078473955} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:52:45.589956+00 2026-01-25 01:27:52.241265+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1317 google ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE 1 t 1320 Go Karts Mar Menor unknown A fun place for drivers and spectators alike. Has a viewing terrace and a bar for a coffee or beer. a fun place for drivers and spectators alike. has a viewing terrace and a bar for a coffee or beer. 5 2025-03-06 01:52:39.833374+00 en v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "A fun place for drivers and spectators alike.", "O3.02": "Has a viewing terrace and a bar for a coffee or beer."} {0.056079112,-0.010885964,-0.020905089,0.020691589,-0.0611528,0.035235103,0.052042685,-0.035799004,0.012355112,-0.005916189,0.011546169,-0.045225535,0.0014402639,0.026511518,-0.008061489,-0.075407125,0.10634958,-0.0952569,0.087040864,0.00455305,-0.030608397,-0.028738294,0.03141039,0.07097409,-0.07982883,0.034040928,-0.02883906,0.116739586,0.032456722,-0.007202406,0.061825212,0.030408919,0.0069285887,0.019694617,-0.04544711,-0.03082761,0.027435722,-0.079439454,0.009091794,0.011792674,-0.046723865,-0.03598248,0.029503291,0.0136331525,0.030565184,-0.0009022244,0.033992056,-0.004772571,0.11402488,-0.049093973,0.027098881,0.0045418697,0.04474488,-0.09810039,0.017483637,-0.044615198,-0.090367846,-0.06186944,0.00966177,-0.007906972,0.10587723,-0.023758827,-0.05285548,0.07046623,-0.047092218,-0.06083302,-0.07195764,0.06309505,0.10993109,-0.13859133,-0.0017529199,0.0069893706,0.062956914,-0.05422713,0.019970957,-0.0662742,-0.009149209,-0.023404676,-0.041739278,-0.015083888,0.024257626,-0.01205364,0.013127138,0.010724141,-0.009253678,-0.074484184,-0.031737458,0.0060350173,-0.016962457,0.028461667,-0.08567502,0.0139445225,-0.05893111,-0.04290261,-0.019487012,0.04994679,0.051091533,0.014450219,0.044225004,0.07808107,0.013890646,0.10111654,0.056998357,-0.004789479,-0.05232331,0.006283635,-0.05075869,0.086493224,0.028899547,-0.064954445,0.04462296,0.03890948,-0.029409759,0.04032404,-0.027000332,0.04422378,0.074164964,0.010334135,-0.025435394,-0.029687574,-0.014172932,0.03582269,0.011679105,0.0612133,0.0905864,0.028079195,0.0063166665,-5.168241e-33,-0.06326993,-0.03592848,-0.027269151,0.061491378,0.15599309,0.03635022,-0.05803699,-0.033772662,-0.040080376,-0.0020232769,0.05268276,-0.028769368,-0.0010301445,-0.048263513,0.10682162,-0.006155166,-0.06394126,-0.008156297,-0.11473018,-0.09543752,-0.06494129,-0.033003945,0.014781115,0.021087078,-0.015369029,0.07658439,0.07167448,-0.013345759,0.053024728,0.027791144,-0.049496975,0.080301575,-0.067167245,0.00780405,0.044906653,0.0207301,-0.050808463,-0.051683456,0.012785975,0.05901327,-0.033505835,0.0038888452,-0.06368732,-0.009239097,-0.04611803,0.06496566,0.014766679,0.012629459,-0.010754367,0.029920965,-0.056801736,-0.024544412,-0.008671426,0.0032710335,-0.029797502,0.04632814,0.004999189,0.019408172,0.06251807,-0.07182412,-0.017166598,0.06639279,-0.026784504,-0.048358023,-0.036189653,-0.021412104,0.051435605,-0.014831353,0.060974877,0.045144897,0.034640864,0.042710297,0.021264879,0.024000166,-0.01849286,0.049516093,-0.06578907,-0.01851845,-0.025672588,0.11254739,-0.012322434,-0.03222859,0.004873321,0.029059434,0.047698192,-0.043918956,0.06930821,-0.13524956,-0.08224658,-0.080577634,-0.11390766,-0.007455156,0.021179471,0.007878082,0.012443321,2.1056553e-33,0.093752734,-0.0938309,-0.0025819163,-0.0527293,-0.0014240021,-0.04951526,-0.017976929,-0.048867807,-0.021785181,0.037645414,-0.09921877,0.048842482,0.09245206,0.030198505,-0.0050487793,-0.018349757,0.05488085,-0.047972098,-0.11294546,0.026215393,0.008976803,0.023209548,-0.033420756,-0.019120222,-0.0006068182,0.045216113,-0.03560897,-0.04174,-0.08580485,0.007859779,-0.08008226,-0.016532937,0.014466996,-0.07954303,0.013799037,0.103705265,0.080243,-0.058056243,-0.09690275,-0.0011591144,0.04507824,-0.03905676,0.07134862,0.057122644,0.098554626,0.033114843,-0.051321685,-0.020540591,-0.02859192,-0.04361482,0.06223365,-0.0068747667,-0.08156308,0.03772124,0.021267636,-0.027033444,0.0013835212,0.045117848,-0.062043358,-0.019298952,0.023175212,0.025946762,-0.062494032,0.095223255,-0.0045117945,-0.048331797,-0.08375753,-0.021778412,-0.031950504,0.010160281,-0.0030692697,-0.048017297,-0.025046092,0.040451713,-0.045060433,-0.0040778024,0.07652637,0.030684473,0.061282363,0.031458147,0.017564183,-0.008256523,0.039241064,0.08702811,0.030044286,-0.013887192,0.028548885,0.038502913,-0.0040657707,0.021732962,0.063977316,0.10412731,-0.10267726,0.0028641033,-0.007374259,-2.1942341e-08,-0.05778894,0.00085269933,-0.057657644,0.0040687886,-0.102003954,-0.10740401,0.050310366,-0.03690795,-0.064280406,0.0013314787,0.03183559,-0.047677513,0.002797083,0.011606537,0.013595948,0.026853526,-0.029831924,0.036127355,-0.05785556,0.07287992,-0.00045670607,0.016030382,0.023978421,0.060269795,-0.033677235,-0.031918075,-0.0029518832,-0.03842234,0.098779514,-0.10741254,-0.055690542,0.07239169,0.03195578,0.014373272,0.06533879,-0.033401713,-0.07333927,0.0069168922,0.038222626,-0.005269754,-0.0717625,-0.13577116,-0.056924947,0.0014036493,0.021359915,0.077241406,0.019845922,0.030036775,-0.03135378,0.030166103,-0.029145407,0.016191328,0.023249792,0.05492329,-0.017117279,-0.005097751,-0.028674152,-0.008988904,-0.016888767,-0.017079588,0.048433125,0.0803615,-0.07527211,0.025180427} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:56.763831+00 2026-01-30 02:01:08.953402+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1320 google ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB 1 t 1323 Go Karts Mar Menor unknown Estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba para tener una perspectiva más amplia. estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba para tener una perspectiva más amplia. 5 2021-01-31 01:52:39.833374+00 es v5.1 E1.03 {O2.03} V+ I2 CR-N {} {"E1.03": "Estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba p"} {0.0016469334,0.029180963,0.02682198,-0.05214883,-0.031658594,-0.034968343,0.023871029,-0.03491352,-0.00951744,0.013406512,0.06349082,-0.056194544,0.025239566,0.0008822426,-0.017221415,-0.04426658,-0.03144731,0.076266736,0.0043019988,0.020060219,0.110666305,-0.022484131,-0.06281936,0.051377293,-0.061981235,-0.023618493,-0.054411173,0.0012394302,-0.020717803,-0.057694364,0.024415076,0.012962212,0.03454997,-0.022319341,0.062016472,-0.025163824,-0.02020113,-0.058650654,-0.040483978,0.061246168,-0.093275964,-0.034479354,-0.0072268075,-0.09198622,-0.028410617,-0.074107036,0.07169949,-0.014985266,0.012893264,-0.045418337,-0.048267417,-0.018094834,-0.08086156,-0.026602522,-0.08254516,-0.018576642,-0.019551657,-0.030860908,0.070007525,-0.022698076,0.06267514,0.038572196,-0.035681266,0.011209732,0.016313558,0.0037698739,-0.013641623,-0.0050116237,-0.076413155,0.0554924,0.09833079,-0.0729142,0.002090429,0.036624067,0.009636075,0.03942037,-0.0013227714,-0.050699223,-0.025965525,-0.08720245,0.02388319,0.077440046,-0.07953134,-0.053533554,-0.051402688,-0.016759805,0.008655923,0.044755958,0.025547976,-0.038968187,-0.015602907,-0.00836263,-0.07549784,0.03530231,-0.023255117,0.002464619,-0.003285564,-0.07363264,0.07819024,-0.02971992,0.09672802,0.06571353,0.07859734,0.015860619,-0.04258737,0.015311957,0.028954433,-0.04973615,0.002801186,0.05663023,-0.04509606,0.004938965,-0.12376412,0.024338124,-0.02488955,0.059109196,0.08596571,-0.06847938,-0.022475015,-0.062973574,0.019885184,-0.0868073,0.024554987,-0.0024547435,0.06776617,-0.028956154,0.02838342,1.4406919e-32,-0.051892973,-0.0503544,-0.023432987,0.028760036,0.06782263,0.0092047695,-0.05249888,0.0024809348,-0.084396616,0.002477709,-0.12930587,0.03922548,-0.06018549,0.033955533,0.03502793,0.08820253,-0.015004555,-0.038737174,0.010153621,-0.0071193785,-0.08488238,0.013667951,-0.055441312,0.07209212,-0.033687226,0.004414706,-0.013103155,-0.08407031,-0.037588518,0.04389299,0.05385682,0.06384774,-0.027796075,-0.0007885319,0.03338936,0.014055402,0.052849803,0.12233424,0.059791654,0.012852248,0.0737938,0.018452281,0.056551833,-0.0102695385,0.07307973,-0.047157068,0.071146555,0.067539394,0.06888403,0.034652084,-0.017854061,-0.051757712,-0.044213988,-0.040367078,-0.04591679,0.03840019,-0.052005176,0.0538784,-0.019386632,-0.047902152,-0.0042263055,0.017926652,0.048860528,0.00931988,-0.04632156,-0.0035408116,0.0553151,0.09839393,0.13132092,0.03883511,-0.089992635,-0.031385418,-0.015666714,0.030246018,0.018933823,-0.00094341655,-0.010702088,0.02985967,-0.004858846,0.060810983,-0.08137123,0.03297025,0.0011558069,-0.018073667,0.013343421,0.10747221,0.069287896,0.059967097,0.03299466,0.061987024,0.03366814,0.10550263,-0.05487892,-0.06696649,0.034727596,-1.4602105e-32,0.024883965,-0.048498794,0.034280982,0.08496925,-0.048121836,-0.038972005,-0.034990173,-0.01671068,-0.05904414,-0.053751823,-0.121915795,-0.019070318,0.14222719,-0.10383843,-0.044987388,0.02658632,0.020351749,-0.11940153,-0.065911256,0.021357749,-0.08628347,-0.0031749818,0.021012796,-0.048664946,-0.038858443,-0.03566005,-0.055953186,0.0476619,-0.038038034,-0.014555364,0.07661351,0.066877656,0.0037056827,0.0026112066,-0.031734943,0.036256637,0.0516363,0.036057528,-0.03545504,0.04046393,-0.02965354,0.016481321,-0.042795744,-0.03510758,0.06428505,0.014768218,0.06032135,-0.1092119,-0.057286315,-0.018643672,0.09679753,-0.04495593,0.006071091,0.020516653,0.08922546,0.039640825,-0.0065553514,-0.0044609304,-0.09523563,0.04470494,0.08541786,0.052489284,-0.058246426,-0.05024529,0.05031379,0.037886295,-0.017537711,-0.020845352,0.02018108,0.059182536,0.11054387,0.0060616876,-0.04506506,-0.060112473,-0.015954584,-0.022486707,-0.08422042,0.012477815,-0.038608097,-0.028344568,-0.047335494,0.009108,0.015994653,-0.03166121,-0.009159774,0.033742327,-0.08681764,0.047225207,-0.012950118,-0.0070980494,0.019847846,-0.025783742,-0.05167786,-0.117211215,-0.07190171,-4.657627e-08,0.010807943,-0.0023385307,-0.02180937,0.064487524,0.016095856,-0.039343476,0.011174588,0.05242554,0.019500004,0.09250267,-0.036065385,-0.101439156,-0.05691811,0.09249777,-0.017065372,0.032950345,0.12770721,0.044211693,-0.02720021,-0.020856064,0.031909827,-0.011963661,-0.04935822,0.04518536,-0.035052914,0.030750664,-0.024789628,-0.0511045,0.0035023524,-0.07227551,-0.0131459655,-0.0129262805,-0.06583462,-0.010940138,0.039276525,0.037295554,0.018968035,0.055244185,-0.037664674,-0.04932993,0.11584343,-0.017478555,-0.017221015,-0.021857845,-0.04103687,-0.06748276,-0.044171207,-0.029395957,0.0027769494,0.06653825,0.037360676,-0.042427927,0.05722128,0.012977219,-0.0073274723,-0.035778333,0.038821276,-0.0014161131,-0.0028245575,0.04626438,0.04033704,0.085457094,-0.02025767,-0.08378207} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.872427+00 2026-01-30 02:01:08.96699+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1863 google ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE 1 t 1866 Go Karts Mar Menor unknown Los Auxiliares de Pista son prepotentes y son conscientes de que los kars no frenan , se les comenta y dice : " ah ya, esque el latiguillo esta suelto" . Corriendo con el 2° Kart mas rápido del lugar.\nEl deposito de gasolina esta entre las piernas al descubierto ,el asiento de plastico hace daño en la espalda.\nNo hay protecciones en los laterales.\nTodos los años vamos y siempre tienen algun fallo, pero este año se han lucido. RESPUESTA AL NEGOCIO:\nVOSOTROS HABEIS BORRADO LA RESEÑA DE MI PAREJA, YO NO HE BORRADO NADA. OS DENUNCIARÉ 100% los auxiliares de pista son prepotentes y son conscientes de que los kars no frenan , se les comenta y dice : " ah ya, esque el latiguillo esta suelto" . corriendo con el 2° kart mas rápido del lugar. el deposito de gasolina esta entre las piernas al descubierto ,el asiento de plastico hace daño en la espalda. no hay protecciones en los laterales. todos los años vamos y siempre tienen algun fallo, pero este año se han lucido. respuesta al negocio: vosotros habeis borrado la reseña de mi pareja, yo no he borrado nada. os denunciaré 100% 1 2026-01-30 01:52:39.833374+00 es v5.1 P1.02 {P2.03} V- I3 CR-N {} {"E4.01": "Corriendo con el 2° Kart mas rápido del lugar. El deposito de gasolina esta entre las piernas al des", "P1.02": "Los Auxiliares de Pista son prepotentes y son conscientes de que los kars no frenan , se les comenta", "R1.02": "RESPUESTA AL NEGOCIO: VOSOTROS HABEIS BORRADO LA RESEÑA DE MI PAREJA, YO NO HE BORRADO NADA. OS DENU", "R2.01": "Todos los años vamos y siempre tienen algun fallo, pero este año se han lucido."} {0.0025576674,0.016384006,-0.044402044,-0.05141095,-0.06616839,-0.007800451,0.015614391,0.06670153,0.009405723,0.009689029,0.07885501,-0.00029528147,-0.040188227,-0.017479107,0.011873726,-0.055560686,0.03306032,-0.0049545555,-0.012760868,0.057240877,0.0806831,-0.07413353,-0.055982806,0.0639684,-0.09856044,0.08283012,-0.016887153,0.019225521,-0.019146161,-0.055191766,-0.062650524,0.023273371,0.04456243,-0.05406436,0.03712895,0.029449224,-0.025742814,-0.07184426,-0.05546217,0.115163065,-0.04615978,-0.011562694,-0.02718856,0.021344878,-0.030602362,-0.07065183,0.0021991748,0.075626306,0.01567522,-0.0374793,-0.062818386,-0.03437494,-0.03476739,0.042850584,-0.10436889,-0.027004799,0.007797847,0.0069728806,0.05314044,0.029832954,0.045584045,0.045299247,-0.028043138,0.011294398,-0.023899605,-0.08373975,0.008469878,-0.0228427,-0.020091353,0.08139211,0.10095696,-0.018308438,-0.00020404375,-0.030275283,-0.016489537,0.07439815,-7.031962e-05,0.0035344143,-0.029249344,-0.110470764,0.12046023,-0.037849527,-0.03537865,-0.07216708,-0.021658247,-0.016654069,-0.009339637,-0.023830105,0.05714013,0.0141510265,0.013569625,0.12258088,-0.072428286,-0.076055795,-0.009616795,0.022414425,-0.0037292687,-0.045389213,0.0076088714,-0.03511136,0.117533796,-0.02087265,0.013623266,-0.014924012,-0.042214323,0.012322278,0.013660091,-0.067295775,0.05491953,0.04864788,-0.060193148,-0.058920734,0.008935096,-0.02778418,-0.12302099,0.001664407,-0.006576699,-0.08699385,-0.056178465,-0.026130931,0.021444097,-0.014877111,-0.009620799,-0.05712245,0.04124033,-0.10090121,-0.02012301,1.5493834e-32,0.022380542,0.0052748187,-0.027994443,0.012902038,0.022796208,-0.007186532,-0.017745804,-0.046461605,-0.096344955,-0.0072448747,-0.03457101,0.03294221,-0.050891757,0.010602541,-0.009412326,0.029012151,0.015010883,-0.012834991,0.013587084,-0.01042824,-0.06773995,0.00980287,0.0035421357,-0.0070014102,0.0019592482,0.017723506,-0.032238495,-0.08191889,-0.09223583,0.03777353,0.018918024,-0.0047351206,0.05146545,0.032908995,-0.032751676,-0.018395903,0.011743602,0.015131367,-0.06672302,-0.019869022,-0.0780038,0.055030733,0.014209654,0.04797754,-0.0187276,-0.0012901637,-0.01652388,0.050598834,0.027701693,0.010027443,-0.01373105,-0.020093607,-0.002444693,-0.028117996,0.013896066,0.04681816,-0.077614404,0.02579666,-0.036554564,-0.07005484,0.048641417,0.10911782,0.040389497,-0.04355082,-0.038913913,-0.05156472,-0.05442962,0.026268482,0.1917107,0.0756899,-0.09964047,-0.016372824,-0.037070904,0.07380768,0.05761253,-0.0014698859,0.040916957,0.025439778,-0.055862006,0.064936526,-0.023002258,-0.03215537,0.024376325,0.030025767,0.010184733,0.026999535,0.062172942,0.05394617,-0.013215637,0.11319469,-0.038222607,0.02590825,0.07742019,-0.055222016,0.042204875,-1.5495317e-32,-0.029878266,0.029978734,0.02837882,0.008469997,-0.019111978,-0.02059748,-0.038599856,-0.040007625,0.037612278,-0.081353284,-0.079104766,-0.04205347,0.10522675,-0.020441039,-0.006512246,0.09868887,-0.053120412,-0.09845696,-0.044114616,-0.05607056,-0.0356265,0.02720323,0.013360272,0.09342957,-0.06838907,-0.07654266,0.017084882,-0.012490274,-0.08994762,0.03247949,0.024848733,0.012968942,-0.017331019,0.018593824,-0.07516081,0.04601576,-0.006332669,0.02186804,0.0027800454,0.057950515,0.0051841643,0.033651218,0.049324732,-0.07649374,-0.04347907,-0.03474635,0.11025984,-0.17935751,-0.040164787,-0.029318815,0.103189535,-0.024152089,-0.06424429,0.059197847,0.14012238,-0.019553933,-0.005634346,-0.03943837,-0.09545125,0.016941778,0.06547127,-0.005211588,-0.041368313,-0.05983579,0.07746774,0.010045955,0.0034893395,0.0008903067,0.05089204,0.015998608,0.06254418,0.0570582,-0.060441528,0.016724633,0.010310008,-0.0065534743,-0.06766302,0.029286582,-0.07044822,0.025465116,-0.030797914,-0.0060736192,-0.034109503,-0.037800763,0.06617363,-0.023669196,-0.060733765,-0.0030770067,0.027303945,0.051021576,-0.004382224,0.034636933,-0.006048051,-0.045452286,0.024651706,-6.056889e-08,0.0012601727,0.01429065,-0.0055627497,0.06457878,0.025420798,-0.009833178,0.028628306,0.018797455,0.007402234,0.0072264792,0.010478799,0.0074862265,0.08488163,-0.041074697,0.0062716682,0.054327276,0.02970195,0.10794021,-0.019228097,-0.05922908,0.08099393,7.140807e-05,-0.04500668,-0.014040884,-0.012062647,0.0006899648,0.011944682,-0.05693901,-0.009023531,0.042221922,-0.011508035,-0.011519469,0.017037494,-0.112436935,-0.002689474,-0.056541182,0.047977127,0.06804429,-0.037309583,-0.012752777,0.040181257,-0.005593882,-0.09291643,0.01665367,-0.08640639,-0.05791449,0.011149993,0.06700207,0.024942828,0.050239604,-0.02309975,-0.03020453,0.061911922,0.06877789,0.101001695,-0.051955815,0.06199152,0.084563166,-0.02402561,-0.027082358,-0.039376892,0.16265044,0.072702415,-0.049336553} 0.975 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:18.301647+00 2026-01-30 02:01:10.992645+00 22c747a6-b913-4ae4-82bc-14b4195008b6 649 google ChdDSUhNMG9nS0VJQ0FnSUQ3eU9TRjBRRRAB 1 t 652 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena experiemcia con ellos ,\nSin sorpresas ,todo excelente muy buena experiemcia con ellos , sin sorpresas ,todo excelente 5 2025-01-25 01:27:48.34305+00 es v5.1 R1.01 {} V+ I2 CR-N {} {"R1.01": "Muy buena experiemcia con ellos , Sin sorpresas ,todo excelente"} {0.030475233,0.02576087,-0.033131864,0.0005939273,-0.07105491,0.045035925,0.053910784,-0.02430732,0.021269178,0.03902054,0.12714565,-0.022939404,0.004519811,-0.013236164,0.06595726,0.0030043137,0.028793976,0.036044355,-0.046874832,0.03545292,0.14549518,-0.052727047,-0.08725159,0.084236115,-0.080190234,0.05576411,-0.009945023,-0.03329445,-0.029277176,-0.09064398,-0.011928219,0.10656779,0.1370869,-0.05063801,0.022730794,0.018961372,0.049772307,-0.05248099,0.022124495,0.075336024,-0.11822786,0.010938566,0.026397,-0.08615248,-0.05082834,-0.11220194,0.043919284,0.06892319,0.06698006,-0.033249993,-0.03488351,0.021693414,-0.07325608,-0.033282064,-0.023695169,0.022025792,-0.05790573,-0.040001888,0.04536389,0.0041256924,0.04115433,0.025807682,0.0075748265,0.08416966,0.027349731,0.005938866,0.018641785,0.004593437,-0.11674394,0.038837556,0.027734661,-0.047140762,0.015840081,0.13331477,0.01771547,0.04025415,-0.02134645,0.031449188,0.0012040902,-0.0030078667,-0.03579221,-0.014680616,-0.054527193,-0.0047381003,0.019044755,0.05081388,-0.03957632,0.044704337,0.06961064,-0.01136595,-0.017204547,0.035589386,-0.10162992,0.0082355635,-0.0056290003,0.010548018,-0.0034679775,-0.06108569,0.013717472,0.028749093,0.08405468,0.018620443,0.1314487,-0.019327482,0.02504301,0.01803333,0.016673729,-0.03559669,0.075353205,0.039286043,-0.045184612,-0.08356202,-0.046355743,-0.010291661,-0.018515645,0.0007897416,0.02627157,0.0048752134,-0.014945347,-0.078244604,0.051127356,-0.029526526,-0.019772118,-0.013638921,0.061090164,-0.08093569,-0.010254368,5.819271e-33,-0.055049386,-0.028510364,0.011223885,0.06686496,-0.047945313,0.041356158,0.00889976,-0.0092270905,-0.013169909,0.0040570023,-0.038307723,0.10205247,0.058377095,0.0604772,0.059946377,0.06909673,-0.042681236,-0.0030240586,0.004122089,0.00035638362,-0.023239302,-0.014939606,0.027066601,-0.006119543,-0.022697076,0.045735653,-0.0029529107,-0.062331796,0.008887762,0.04258934,0.037124477,0.061571296,-0.0040670526,-0.059166763,0.032849304,-0.0134122,0.023564272,0.019418232,0.033705,-0.05726806,-0.023181705,0.05333005,0.0015849568,0.03533096,0.014586686,-0.0065278346,0.046834167,0.024077889,0.10944109,0.033251986,-0.057210278,-0.085443206,-0.029562466,-0.026481982,-0.017852481,0.01564524,-0.11152675,0.10420976,-0.048817296,-0.05806384,0.005609112,-0.025019526,0.03575802,-0.09181594,-0.06449289,-0.021805942,-0.018836142,0.023457682,0.12446971,0.0098753655,-0.06459812,-0.04416915,-0.051149692,0.06296405,0.008799752,-0.022501467,0.008925969,-0.011301484,0.030298462,0.041579604,-0.047405247,-0.025686122,0.042639017,0.022794925,0.07069864,0.07595393,0.07301553,-0.008977487,-0.06453665,0.09823925,-0.020719614,0.09586609,0.02044497,-0.020423653,0.02935776,-6.243376e-33,0.017153965,-0.013513904,-0.0028151486,0.029687624,-0.011140649,-0.0070845606,-0.03490619,0.003924983,-0.038841683,-0.07534029,-0.050806917,-0.11345174,0.05265177,-0.035094194,-0.051189043,0.066012576,0.061864123,-0.08178514,-0.070080675,-0.08061182,-0.044327755,0.052752536,0.030464811,-0.028486079,0.0069372705,-0.056534436,-0.050329957,-0.029091435,-0.046697963,-0.04524053,0.06051443,0.016669292,-0.03579327,0.040709928,-0.053729795,0.039877813,0.04169867,0.012245328,0.0146357445,0.0015577258,0.0097483015,0.01408267,0.008586762,-0.025274811,-0.002204794,0.025285922,0.039388843,-0.14690045,-0.064327344,0.020819483,0.04503999,-0.071986996,-0.07306332,-0.006175472,0.018652506,-0.033949845,-0.014843827,-0.05675192,-0.14549485,-0.04749839,0.04252779,0.011844836,-0.043407395,-0.011896477,0.09105595,0.031935137,0.0025866798,0.03806422,-0.022984205,0.09229539,0.07512144,-0.06522269,-0.103468984,-0.025335142,-0.029813109,-0.0690941,-0.11171555,-0.039507516,-0.06724869,-0.02615058,0.0010495367,-0.046103198,-0.00890294,-0.068198994,-0.027979366,0.016669566,-0.04363663,-0.0097406255,-0.007205884,0.119081296,-0.039406106,0.029355459,-0.015755165,-0.07531568,-0.03134468,-2.9796658e-08,-0.023672938,0.0033667278,0.008862454,-0.04167936,-0.0015915465,-0.00987567,0.02962495,0.060669318,0.03113784,0.07937062,-0.0030403335,-0.015457097,0.0038426244,0.041248832,0.016018022,0.037543327,0.065092005,0.10214398,-0.0038817634,-0.118822105,0.06834738,-0.013635533,-0.06103605,0.048253503,-0.0005719086,0.009298846,-0.01747573,0.022449486,-0.015833044,0.0031427064,-0.042445693,-0.046236806,0.02441021,-0.093337,-0.08158803,-0.043489,-0.018096259,-0.03391534,0.037530214,0.005101834,0.07955831,0.05991579,-0.031127952,-0.010595045,0.059001714,-0.089773335,0.012582921,0.03783106,0.031242922,0.03806686,-0.049195938,0.0023731983,0.0042538764,0.025960665,-0.009946067,-0.07230758,0.0648911,0.0641663,0.034831285,0.03881599,0.050197497,0.07935313,0.043032512,-0.10251594} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:30.994314+00 2026-01-25 01:27:52.198169+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 653 google ChdDSUhNMG9nS0VJQ0FnSURId2FqYV9nRRAB 1 t 656 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buenos precios y Carmen y nestor excelente su atencion buenos precios y carmen y nestor excelente su atencion 5 2025-01-25 01:27:48.343074+00 es v5.1 P1.01 {A1.01} V+ I2 CR-N {} {"P1.01": "Buenos precios y Carmen y nestor excelente su atencion"} {-0.026744137,-0.032550465,0.0049471287,0.03057817,-0.05703022,0.052984748,0.046586774,0.049428605,0.0024073392,0.039555676,0.030487971,0.008775699,-0.0035178747,0.006726869,0.03969767,0.01502652,0.00010564493,-0.0025863522,-0.020916048,0.068328686,0.10347707,-0.08528841,-0.06802588,0.12645854,-0.0030583588,-0.037844602,-0.005565661,-0.04056621,0.031169359,0.023876747,0.008058743,-0.049042515,0.1335832,0.024757074,0.03637235,-0.02730007,0.09362457,-0.10242598,-0.00023539658,0.005577649,-0.12461991,-0.05564751,-0.021887252,0.030962883,0.030270346,-0.051678367,0.081147626,0.11496694,0.026364852,-0.02838508,-0.044421922,-0.02641962,-0.010334281,-0.0750067,-0.004549065,0.0969696,0.03902626,-0.080379,0.07228097,0.015431675,-0.015847195,0.015589278,-0.08246582,0.020375784,-0.017454192,-0.019413237,0.03042447,0.033424105,-0.00579995,0.012736471,0.10059554,-0.044145036,0.021517072,0.0948639,-0.05208016,0.0110737365,0.054971687,-0.028834332,-0.07673937,-0.037536774,-0.0017564658,-0.008854307,0.009362781,-0.044553865,0.047323838,0.0041270703,-0.03939675,-0.029197864,0.048443902,-0.0040288004,-0.043561477,-0.002674589,-0.0407763,0.012708324,-0.11792428,-0.017317254,0.03497651,-0.01960211,-0.002875995,0.10949885,0.053098187,0.016182251,0.05604175,0.06797247,-0.037054356,0.06493498,0.049208183,0.029110428,-0.027267212,0.064775065,-0.03197647,-0.03762476,-0.09560354,0.031602502,-0.047876038,0.017422596,0.042989124,-0.011348913,-0.034770567,-0.08787705,0.073476136,0.05511293,-0.009039895,0.031440463,-0.05338051,-0.04236577,0.05362303,3.3127367e-33,-0.07662846,-0.057444427,-0.012624968,0.08313118,-0.09069577,0.0862283,-0.02106614,0.012139822,-0.0035696886,0.076745,-0.037296023,0.02080501,0.010552405,0.008331353,0.048212264,0.072417684,-0.013789113,0.007567403,0.08078138,0.046583313,-0.032343682,0.03546547,0.022852497,-0.02105602,-0.0060230154,0.037050236,-0.038287554,-0.10530564,-0.03506302,0.06637945,0.017287306,0.0357277,-0.003242528,-0.043296933,0.015939027,-0.008170036,0.036083058,-0.0052753235,0.002981373,-0.0024756114,-0.02619384,0.02930217,0.023364216,-0.008757559,0.009563671,0.028342932,0.0828447,0.09640184,0.08487557,-0.027603665,-0.025795957,-0.06595351,-0.13714087,-0.0032419022,-0.012874891,0.03109066,-0.06681492,0.037726246,-0.006412363,-0.06259873,0.03959659,-0.023581402,0.018333303,-0.024581414,-0.062497377,0.037672266,0.07200613,-0.0012065523,0.15859063,0.029759936,-0.143885,-0.00885895,0.018273609,0.022106655,-0.061526,0.017652623,0.016486397,-0.0071183355,-0.03512853,0.059648216,-0.11619699,0.040727574,0.06639077,0.06716606,0.02252895,0.072418384,0.07731515,-0.008104809,-0.017653294,0.08850208,-0.03999,0.04475094,0.026760023,-0.011392221,0.015772747,-4.6666913e-33,-0.021041663,-0.06590513,-0.036587037,-0.04186491,-0.0030676648,-0.005479788,-0.043142337,-0.019964805,-0.06199878,-0.106837586,-0.04558824,-0.11489105,0.14382085,-0.06616134,-0.0043653823,0.07255573,0.016633386,-0.0596373,-0.07712229,0.0112960255,-0.024950445,0.03395851,0.01754166,0.021058753,-0.0050987476,-0.054909494,0.06344315,0.03237565,-0.0031065284,-0.028442329,0.0480076,-0.03144774,-0.038085606,0.019781064,-0.04157271,0.12062985,-0.062076565,0.0681939,0.023033096,0.04289314,0.04348417,0.026147837,0.0011141162,0.04438959,-0.07253754,0.048130073,-0.02376846,-0.08083532,-0.020682866,-0.04403964,0.018393895,-0.077431835,-0.10570743,-0.012366788,0.04075516,-0.07289933,-0.08384602,-0.04552097,-0.019018292,0.01759079,0.10065618,0.01382412,-0.06805539,0.020742498,0.042245377,-0.055329252,-0.05171809,0.018444067,0.011487226,0.054330315,0.10811299,0.024079623,-0.08988346,0.041522,-0.045044027,0.0017212401,-0.08071938,-0.06872414,0.00013786992,-0.049108148,-0.06340174,0.015718333,-0.023949763,-0.026196832,-0.012968472,0.036880802,0.02272907,0.04112612,0.046143357,0.027707681,-0.013890785,0.015126581,-0.01761938,-0.12942259,-0.043727573,-2.2841121e-08,0.018905068,-0.016140116,0.040043563,0.0268727,-0.06558042,-0.0020560033,-0.036014445,-0.0026904016,0.0031970167,0.050439015,-0.029197691,0.040088717,0.016099622,-0.038028028,-0.08662654,-0.004075071,0.031948313,0.05072401,-0.036483184,-0.07994956,0.033320308,0.001178869,-0.034713108,-0.097010896,0.0047841365,-0.005776126,-0.07350049,0.019744528,0.01207003,-0.026758531,0.035351038,-0.050663862,-0.037804227,-0.11462228,0.020941049,0.053034615,-0.02169508,-0.027699813,-0.001552554,-0.09937812,0.033702612,0.022020256,-0.011987614,0.041879456,0.03640572,-0.048170622,-0.004610055,0.004237234,0.01959173,0.044806223,-0.03737797,-0.037343923,0.02470219,0.022482652,0.026743565,-0.013146021,-0.0033995588,0.015519192,-0.01538653,0.037285008,0.012949398,0.006274326,0.029263109,-0.124984704} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:18.645742+00 2026-01-25 01:27:52.205838+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 656 google ChZDSUhNMG9nS0VJQ0FnSURIaU8tdlJ3EAE 1 t 659 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tanto Carlos como Fran encantadores tanto carlos como fran encantadores 5 2025-01-25 01:27:48.343089+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Tanto Carlos como Fran encantadores"} {0.0075088367,0.106911965,-0.049266107,0.041017663,-0.011125654,0.020957518,0.12089665,0.050564326,0.019079631,0.036088157,0.02118146,-0.03246731,-0.021256972,0.048329566,0.011816607,0.01158968,0.0049414015,0.060679212,0.036822863,0.012297458,0.030822525,-0.06955083,-0.06408523,0.05759415,-0.066695005,-0.0115526095,0.013141165,-0.017411469,-0.095878705,-0.080489725,-0.06274922,0.048536446,0.03163226,-0.016542073,-0.042702686,-0.029257135,0.025945637,-0.069813006,0.022060655,0.025251042,-0.09309818,-0.019917326,-0.04882615,0.011658602,-0.012592473,-0.0633267,0.04917895,0.081528276,0.06953086,-0.00044278262,-0.06459488,0.008342109,-0.056190126,0.029718012,-0.047728058,0.00737365,0.012137416,0.002626185,0.037683982,0.06949895,0.108612,-0.04246132,-0.09370147,0.004525926,-0.004332745,-0.015757758,-0.012838286,0.006944382,-0.10678976,0.061981805,0.038623244,-0.047226865,0.02560574,0.06507681,-0.020983394,0.041897256,-0.033008754,0.050291665,-0.07376063,-0.060089357,-0.004098523,0.02641965,-0.07866273,-0.036878396,0.0669707,0.07824876,0.046782725,0.037674364,0.049036693,0.007938331,-0.02202127,0.043657098,-0.051198628,0.040209997,-0.050118294,-0.0072651263,0.0473937,0.013139682,-0.016610906,0.08775472,0.098543726,0.011480376,0.07463662,0.046140607,-0.017697915,0.04263343,0.01733823,-0.074086115,0.04501359,-0.05005886,-0.0717137,-0.076577894,-0.039455023,0.012190205,-0.038969252,-0.028294554,0.08914967,-0.04884158,-0.047005128,-0.05548031,0.09156423,-0.04182141,-0.032705408,-0.045437317,0.011365778,0.042386528,0.043729216,3.134244e-33,-0.028176691,0.0010752988,-0.009535279,0.095808394,-0.016270312,0.075223655,-0.014375881,0.024764761,-0.101262994,0.016672267,-0.07840477,0.034322973,0.018941034,0.042140037,0.01975391,0.07845535,-0.010934389,0.0042134346,0.0014906786,-0.00611569,-0.09736113,0.10016013,-0.06673716,0.027004197,-0.025915015,0.09627448,0.0019514849,-0.1053313,-0.04753779,0.055370603,0.0010502806,0.033876646,0.019938262,-0.04294126,0.08715449,-0.03842385,0.05408827,0.013529583,0.07588932,-0.01568915,0.029799085,0.025083046,0.032884132,0.08654003,-0.07592354,-0.0147618735,0.05426508,0.047272976,0.09168563,0.0045982404,-0.057352334,-0.042928807,-0.019360354,-0.020333812,-0.0029820562,0.03188159,-0.08511369,0.08900491,-0.033565886,-0.029438514,0.02314413,-0.027305512,0.02268534,0.008597441,-0.027328134,-0.026389584,-0.0019287327,0.046981145,0.13945122,0.018319363,-0.1051914,0.025706323,0.04226962,0.03326183,-0.022090314,-0.00080943335,-0.008490416,0.028992675,-0.035992336,0.01745024,-0.10213222,-0.010765683,0.058497526,0.014998947,0.015243389,0.12121365,0.024844926,0.00093760784,-0.045495708,0.11721599,-0.037861533,0.12444386,0.0189001,-0.0653864,0.030606098,-3.6017577e-33,0.008137938,-0.01284755,-0.023270555,-0.043923475,0.02904314,-0.022972738,-0.09448179,-0.0042819525,-0.05679146,-0.12992609,0.025030103,-0.12685974,0.113095574,-0.053552363,-0.033462558,0.02278352,-0.002885972,-0.0827054,-0.08521786,-0.06766608,-0.076371245,-0.044319656,-0.025533048,-0.034005005,-0.044774957,-0.014474855,0.026736125,0.059002057,-0.0344467,-0.018391369,0.06918691,-0.030573126,-0.019505337,-0.009487553,-0.017674828,0.109849095,0.01510212,0.04505619,0.028176736,0.063819,0.0005481295,0.0006798922,-0.041260943,-0.008241681,0.012731519,0.023122698,-0.030282335,-0.10342016,-0.05688639,0.0115404595,0.09476731,-0.0738054,-0.030692246,-0.027789457,0.041092254,-0.034157883,-0.01989324,-0.02867923,-0.05105795,0.046014402,0.053901304,0.065728694,-0.02431803,0.01871124,0.027317703,-0.010757971,-0.086172424,0.041602444,0.012699724,0.07054234,0.11754846,-0.040259764,-0.098161414,0.047916975,-0.085862264,0.0063095707,-0.06790966,0.06121036,-0.016018827,-0.01044485,-0.047433462,-0.01180192,-0.03333464,0.005929162,-0.018169975,0.0033582493,-0.035246268,-0.040557798,0.0157049,0.06620288,-0.032288097,-0.0011809125,-0.06873393,-0.016705483,0.007017164,-1.9828748e-08,0.0015217925,-0.041940384,-0.088003576,0.026119215,-0.037233,0.019107228,-0.01189509,0.0009874214,0.009929121,0.060017314,0.01652076,0.0044712136,0.06294819,0.05289736,0.008496777,0.0026325893,0.10416065,0.056243278,0.0025572379,0.04093506,0.028101468,-0.025113214,-0.0510501,-0.03685466,0.039195012,-0.0013235264,-0.019331787,0.010497858,0.018672839,0.002447391,-0.036887605,0.0043121306,-0.0321143,-0.043291755,-0.0069535,0.014439699,-0.10271758,-0.04017319,0.0072251684,-0.06939975,0.07161014,0.08010572,-0.04990039,-0.0022779685,-0.019114051,-0.14871106,0.035566185,-0.0041410145,0.009838792,0.003250907,-0.03625544,0.041556396,0.026659833,0.0269374,0.02316506,-0.029221136,0.08275797,0.07820175,-0.03748656,0.0145814065,-0.05517626,0.011180279,0.06938337,-0.05320125} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:09.779439+00 2026-01-25 01:27:52.216177+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 658 google ChZDSUhNMG9nS0VJQ0FnSUQza2R1LUlBEAE 1 t 661 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Depozyt większy niż w ofercie. depozyt większy niż w ofercie. 4 2025-01-25 01:27:48.343092+00 pl v5.1 P1.01 {} V- I1 CR-N {} {"P1.01": "Depozyt większy niż w ofercie."} {-0.08912192,0.119402595,-0.015028258,0.041906577,-0.045135356,-0.0106147,0.088214286,0.086836375,-0.006710482,0.04889264,0.022609254,0.043245688,-0.043898746,0.0014455019,-0.0646193,0.0066714133,-0.0533884,0.037389435,-0.04621707,-0.032110818,-0.031149305,-0.01838513,0.06412022,-0.026903996,0.056202445,-0.0016961497,-0.019150816,0.07383695,0.067039385,-0.053227954,0.041404586,0.04354812,0.032405507,-0.02762633,0.030665722,-0.024809873,-0.0017783231,-0.057383534,0.03368806,0.027415356,-0.025192738,-0.011464361,-0.14464995,0.027203938,-0.064624354,0.001769463,-0.038011346,0.06330726,-0.0645643,0.055990312,-0.086630546,-0.12503454,0.02562458,0.01559453,0.0046994095,-0.10580418,-0.008973409,0.027320925,-0.0788357,-0.09694477,0.055952065,0.012598904,-0.1332364,0.044823285,0.057721052,0.030794643,0.027516024,0.031758178,-0.031543896,0.0073543317,0.0954469,-0.064667284,-0.041635007,0.080918126,-0.11446292,-0.08908064,0.063193046,-0.036317885,-0.0051213936,-0.03725862,0.08768215,0.013470442,0.025297401,-0.017436039,0.041296806,-0.012504912,-0.08197709,0.03281425,0.007117628,-0.0062945522,-0.035839647,-0.032659616,-0.018348899,0.0278112,-0.00966606,0.027631883,-0.019930305,0.007932628,-0.008189916,0.075570464,0.046513934,0.001049345,0.080078535,0.08094282,-0.05446984,-0.006501672,0.00885818,-0.058697674,-0.0379689,0.015888933,-0.089654595,-0.05022867,0.0062858197,-0.0038541886,-0.009234475,0.0018592972,0.07229045,0.027684888,0.035830896,-0.070053734,0.032798894,0.013580522,-0.01257255,-0.03257492,0.00832789,0.04309732,0.04562932,1.9504047e-33,-0.0119193625,-0.0633813,-0.04540989,0.03241472,0.009818593,0.011707392,-0.0023356392,-0.0456078,-0.08380542,-0.0020393527,-0.015053112,-0.02625836,0.06225961,-0.08767375,0.019723333,0.0040168986,0.035666745,0.014071891,-0.03692269,0.1427912,-0.005389827,-0.00014320762,-0.07463015,-0.010581986,0.00964115,-0.04159039,0.0058808853,-0.014793252,-0.10697874,0.0007204374,0.033313267,-0.034300283,-0.0893867,-0.042739436,-0.030573692,-0.070466846,0.004834516,-0.009159431,0.033292513,-0.12777431,0.051148266,-0.053868793,-0.023663746,0.041546162,0.06846706,0.095193155,-0.025205592,-0.026376002,0.037461825,-0.0016009185,0.03178657,0.0037640932,-0.0666746,-0.033019613,-0.03339523,0.1129999,0.020884458,0.027368113,0.06308165,-0.020714937,-0.0049714595,-0.005267219,-0.026241109,-0.071896754,0.033209212,-0.14627303,-0.06332574,-0.052802358,-0.04495419,0.048230026,-0.10511891,-0.08924664,-0.001643442,0.05809903,-0.029020904,0.0055420985,0.07928506,-0.0017189761,-0.048864238,0.015433392,-0.029217724,0.0045522936,0.0004052255,-0.079257235,0.032114495,0.02983912,-0.014846897,-0.07711941,0.034555726,0.02860949,0.0048939264,0.05173767,0.023472935,-0.09299698,0.013883738,-3.415182e-33,0.00355813,0.00915187,-0.060993634,0.06346413,0.010181281,0.030788135,-0.052975055,-0.015912954,0.05702081,0.014209433,0.09360396,-0.05216424,0.05408922,0.037462126,0.029149733,0.046029452,0.07045039,-0.014739961,-0.018028202,-0.10196209,0.0026287937,0.09491158,0.020141004,0.03604954,-0.08494284,-0.030478776,0.034193378,0.030604757,-0.042642202,0.030128067,0.0028208927,-0.052290674,-0.0024301868,0.018683325,0.044320017,0.03557917,0.051937796,0.00038386756,-0.06704655,0.00905639,-0.036323737,0.034016978,-0.026161132,0.043238636,0.029821735,-0.0059330133,-0.079206266,-0.03303488,-0.067340724,-0.011063098,0.09983101,0.08834996,0.005792377,0.023681648,0.031058688,0.017859269,0.00020923377,-0.08308192,-0.01465075,0.077865675,0.04204365,0.048585173,0.015912639,0.04666767,0.0355622,-0.09220513,-0.13484247,0.08832557,0.1014923,0.014672086,-0.003426347,0.06031487,-0.083550714,0.03259185,-0.035821963,0.060074907,0.0076444387,0.0628717,-0.059149764,-0.07579449,-0.007186543,0.03117812,0.038817123,-0.011278374,-0.014544428,-0.08265264,0.0017767083,0.013012946,0.00522782,-0.028997391,-0.010723431,-0.010854267,-0.03446911,0.05714656,-0.018758044,-2.0241217e-08,-0.038658593,-0.0093181785,-0.016819216,0.017789336,0.009198855,-0.104378834,0.022456402,-0.041271266,-0.004494852,0.04585831,-0.010337721,0.046888452,-0.018430695,0.11268578,-0.0047531943,0.08123218,0.0024033235,0.026158584,-0.019294504,0.0064489213,0.13919641,-0.0032921922,-0.024206778,0.06207618,0.013402582,0.12057342,0.01668547,-0.023896798,0.057991143,-0.00418404,0.038246498,0.08947929,0.04165577,0.002783603,-0.006935375,0.027676634,-0.022391109,0.001889454,-0.07027611,0.03155804,-0.020431383,-0.012551552,0.06000382,0.05473684,-0.060963135,-0.07674918,0.018377736,-0.0005339516,0.056813225,-0.02926945,-0.023603318,0.059469294,-0.020116009,0.0332352,0.013261213,0.04179326,-0.006509087,0.030389039,-0.0751268,-0.04454294,0.10324077,0.012643672,0.074015655,-0.04450708} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:04.811168+00 2026-01-25 01:27:52.219883+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1447 google ChdDSUhNMG9nS0VJQ0FnTUNvOVp1MTJnRRAB 1 t 1450 Go Karts Mar Menor unknown Great fun, well run and organised. Give it a go. great fun, well run and organised. give it a go. 5 2025-05-05 00:52:39.833374+00 en v5.1 J2.01 {} V+ I2 CR-N {} {"J2.01": "Great fun, well run and organised. Give it a go."} {-0.018841324,-0.014957635,-0.0011125315,0.022076532,-0.07356242,0.04481295,-0.07859641,-0.063536,-0.08935711,-0.03848421,-0.038930744,0.068228275,-0.057627648,0.077870555,0.019948276,-0.009027542,0.05472326,-0.11418013,0.06772681,-0.02628346,-0.018733747,-0.03875136,0.058813695,-0.075497806,-0.04891125,0.041594815,-0.068841584,-0.0031397785,-0.061816648,-0.018895699,-0.024920266,0.03999109,-0.013309277,0.0007047618,0.030855961,0.052751757,0.016036421,-0.08409502,0.0058319797,0.035792943,0.0047899135,0.043751206,0.03327533,0.030818941,-0.01656058,0.09829332,-0.0027745236,-0.07897231,0.064070486,0.03986974,0.06355952,-0.049995866,0.016087752,-0.04931563,-0.032800913,0.070595555,-0.017415373,-0.030506982,-0.041901562,-0.10037151,0.016872108,-0.013950101,-0.017955884,0.10207818,0.029962305,-0.04884084,-0.011486312,0.036089394,0.09350874,-0.037238292,-0.059612557,0.04648458,0.04433989,0.043992087,0.026770577,0.07653856,-0.054922845,-0.107123785,-0.042049374,0.016444052,-0.02619255,0.07306061,-0.039693575,0.012879413,0.006267846,-0.10403295,0.03320948,0.016489504,0.0033156085,-0.0071325963,0.027775584,0.08929618,0.016817642,-0.023978274,-0.009384892,0.058866493,0.007824892,0.007976963,-0.030863812,0.032881293,-0.007741478,0.043545485,0.0093104625,-0.0180416,-0.04901881,-0.003564547,0.020746805,0.0018521451,-0.0010638385,-0.06840583,0.0057172733,0.044404335,0.059254877,-0.022309085,-0.006227951,0.077279024,-0.0366536,0.04791633,-0.04785147,0.073332876,0.09855124,0.014971695,0.0852997,0.02624018,0.020866297,0.002022131,0.07039281,-6.9962294e-33,-0.020441074,0.014572812,0.008543045,0.11067324,0.08859832,0.048733547,-0.041716322,-0.036189426,-0.13308658,0.07503359,0.023964116,0.0600967,-0.015275877,0.006586139,0.06773,-0.050097812,-0.012708811,0.054083627,0.010437697,-0.005122238,-0.014149749,-0.04409267,-0.03005616,-0.028154464,0.061769783,0.0054004365,0.05874153,-0.03982202,0.16618727,0.022156965,-0.073865764,-0.029166859,-0.18376182,0.0065283366,0.030519377,-0.008272139,-0.13106601,-0.034592345,0.010997133,0.069804415,-0.020411465,-0.028554184,-0.0559935,-0.011948645,-0.08321474,-0.012291554,0.02817163,0.028998269,0.012141859,-0.012050082,-0.06923245,-0.05920736,-0.034452096,0.03711768,-0.046372775,-0.053300522,0.02059627,-0.0009717092,0.021114618,-0.0006992523,0.11324607,0.049769163,-0.113706365,-0.019111276,-0.012372834,-0.008222322,-0.018333621,0.00061128655,0.03576772,-0.012880023,0.09219588,0.0106803,0.060514666,-0.017672336,0.049608424,0.07186353,-0.03778106,-0.066681296,-0.10471875,-0.025388958,0.05790112,-0.0120986095,-0.039013058,-0.016007451,0.04057195,-0.011405975,0.031160982,-0.11427251,-0.021993533,0.06669972,-0.039349467,0.011496913,0.0317679,0.07156793,0.047121823,5.703944e-33,0.093774885,0.03496497,-0.020552099,-0.0025526409,0.08055038,-0.022554427,-0.04474142,-0.011080335,0.08638071,0.07198799,-0.019104648,0.047287736,0.0048429593,-0.014486923,-0.00037866118,-0.018383205,0.006838768,-0.016633868,-0.01726,-0.04736692,-0.05396415,0.12970598,-0.023111716,-0.10099533,-0.00014312114,0.06717137,-0.022831118,0.046483163,-0.016901193,0.024468483,-0.037937034,0.004040303,-0.053937584,-0.022622943,0.03066566,0.114372045,0.020047836,-0.027463261,-0.01417126,-0.0032905384,-0.04414597,-0.004580156,-0.049658038,-0.0014686106,-0.0054984675,-0.019938136,-0.028390124,0.02480954,-0.037482966,0.057158507,0.051550303,0.027691906,-0.01621162,-0.119433805,0.028621037,-0.07575124,-0.012476819,-0.029971996,-0.055780046,-0.0026698806,-0.07796579,0.080783136,0.019989915,0.031025758,0.019948436,-0.084270254,-0.023262057,-0.09894385,-0.06970905,0.025295738,-0.12014007,0.028643588,-0.025604066,0.0066403183,0.043518074,-0.059798617,0.08689606,-0.02978027,0.02538887,0.03956802,-0.005918469,0.019760476,0.0230205,-0.03458047,0.03488098,0.06472553,-0.04328934,0.08566559,-0.0773232,0.10090783,0.070878856,0.014770392,0.09027448,0.00814008,0.027584447,-2.1754792e-08,-0.022973899,0.041954298,0.05435399,0.039187767,0.018811984,-0.06703266,0.0066518965,-0.013638671,0.020290425,-0.013877898,0.07811891,-0.08446023,-0.009535668,0.12102619,0.0125732375,-0.040996224,0.008362506,0.08703782,-0.082717836,-0.014886111,0.009121254,0.0063556544,-0.0076752976,0.024073927,-0.040479008,0.0043804864,0.048537,0.016649377,0.023345698,-0.037582837,-0.06851736,0.045765586,-0.024187392,0.047254916,-0.07018233,-0.047160268,0.029193798,-0.009136238,0.033280633,-0.009415148,-0.01948486,-0.028830394,0.03150243,0.01185155,-0.045181233,-0.032349356,-0.028752834,-0.041642733,0.0071641067,-0.04932281,0.00092522707,-0.004235018,-0.044083748,0.05983814,0.09657082,0.04519772,-0.008164145,0.051482745,0.0068501383,0.072618045,-0.029322626,-0.071437985,-0.064879455,0.06915398} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.229737+00 2026-01-30 02:01:09.391803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 596 google ChdDSUhNMG9nS0VJQ0FnSUNubnRheTBBRRAB 1 t 599 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super buen trato de parte de Carmen! Nos atendió muy amablemente, nos dio recomendaciones de la isla. Muchisimas graciss Carmen por tu carisma super buen trato de parte de carmen! nos atendió muy amablemente, nos dio recomendaciones de la isla. muchisimas graciss carmen por tu carisma 5 2025-01-25 01:27:48.342793+00 es v5.1 A1.01 {} V+ I2 CR-N {Carmen} {"A1.01": "Super buen trato de parte de Carmen! Nos atendió muy amablemente, nos dio recomendaciones de la isla"} {0.04751392,0.015481002,-0.019583981,0.042639617,-0.049534123,0.024356373,0.063133135,0.049789988,-0.054916997,0.016506827,-0.0011452658,0.005816393,-0.013433326,-0.0050227703,0.05108054,0.011337114,0.030186817,0.021904122,0.052397035,0.07057904,0.0944933,-0.07073761,-0.015795307,0.15812275,-0.076598264,0.00995211,0.0034653635,0.028108915,-0.07879093,-0.024841867,-0.02376262,0.10416536,0.020127691,-0.00029194012,-0.00030831856,-0.0076758685,0.023354787,-0.08584625,0.008016701,0.068393305,-0.12340899,-0.0058778017,-0.030134523,0.022771265,0.070153095,-0.11154338,0.02274532,0.13667612,0.011160917,-0.04743324,-0.0027114875,-0.058399282,0.021424673,-0.081012845,-0.009929345,0.039828807,0.020651732,-0.103458144,0.07136298,-0.00466524,0.07764141,0.05661814,-0.056873493,0.041001104,-0.047383443,-0.08161164,-0.034443967,0.029701388,-0.039661244,0.023920055,0.07994973,-0.06446741,0.012116991,0.0027065545,-0.05621034,-0.007579388,0.0020419895,-0.063042104,-0.09587035,0.010453013,0.04477256,-0.022810645,0.08863401,-0.105960146,0.04367825,0.025293432,0.06904441,-0.051093124,-0.05132075,-0.029235698,-0.0033611492,0.0055505545,-0.044890642,0.011260076,-0.021715585,-0.009564917,-0.0003461464,-0.07976834,0.04564505,0.023815997,0.049759164,0.011187413,0.077470645,0.0074149133,-0.056231968,0.061922293,0.029247498,0.038764115,0.02564922,0.0023144034,-0.08670082,-0.04370558,-0.03127574,0.0010921868,-0.024677185,0.06038633,0.02466508,-0.013418679,-0.031860076,-0.020318508,0.05489882,0.002169034,0.009930495,0.02711424,0.053615075,0.0049886033,0.08208872,7.3813985e-33,-0.04149137,-0.011395179,0.005077793,-0.0027079757,0.08272465,0.031360954,-0.08368784,-0.051994782,-0.025350576,0.05409359,-0.026289882,0.005273492,-0.014861577,0.019703155,0.07423819,0.08702718,-0.03331257,-0.035472494,0.034572035,-0.0062264493,-0.072997786,0.010395163,0.0198545,0.007048462,-0.044303894,0.062119648,-0.0014972722,-0.07016108,0.014776686,0.054782245,0.0065131155,0.024614135,-0.031087998,-0.03482432,-0.045296334,-0.07524871,-0.011596315,0.013578532,-0.010394763,0.040749565,0.048945278,0.016465392,0.04355235,0.040347733,-0.021955393,0.052841306,0.11205547,0.08643789,0.09583124,0.045710996,-0.0707909,-0.053709146,-0.1278396,0.046362914,-0.026415724,0.05181377,-0.08199691,0.0128122335,0.05223722,-0.08842576,0.04212522,-0.024115618,0.060149774,-0.07930408,-0.043312944,0.011977689,0.07269523,0.029899012,0.12828621,0.029309083,-0.09241728,-0.061559565,0.055804685,0.042504143,-0.004553377,-0.017912464,-0.0068402635,0.0001866471,-0.041180633,0.105846785,-0.09796453,0.015007554,0.0650646,0.018527264,0.08632233,0.07009644,0.04917753,-0.027074793,-0.003234238,0.07089086,-0.04600054,0.07187222,0.012099725,-0.06377803,0.05096505,-8.058925e-33,0.031432778,-0.06440064,0.011739185,-0.0046115103,-0.00067277905,-0.065787196,-0.17065878,-0.057399865,0.005615444,-0.06871576,-0.09409789,-0.087642744,0.057629503,-0.090271585,-0.004397663,0.016156001,0.025834676,-0.058193866,-0.10709147,0.0071050925,0.015471219,-0.042916704,-0.007044742,-0.06654412,0.02327057,-0.029411018,0.006086006,0.00136056,0.041609704,-0.011592237,-0.006957081,0.00441045,-0.026554145,-0.014555314,-0.050645694,0.10550889,-0.038299028,0.048203778,0.03312941,0.08792594,0.003175698,0.02907483,0.029544007,0.025210299,0.009520001,0.03653255,0.009551618,-0.036332693,0.016559493,-0.08344466,0.05660139,-0.051215637,-0.034614418,-0.020162664,0.092582226,-0.0690503,-0.035258576,-0.035803903,0.0061260588,-0.027385045,0.066560544,0.027369661,-0.044526417,-0.03260714,0.04410158,-0.073479414,-0.052145313,0.0059194816,0.014973391,0.0515019,-0.030797716,-0.02213532,-0.07852986,0.11747891,-0.045375008,-0.028657895,-0.10508708,-0.038783994,0.023110926,-0.0061857305,-0.04531384,-0.0022355118,-0.06909677,-0.023987623,0.06274185,0.024500538,-0.05141144,-0.015343458,0.03279172,0.004965737,0.025766248,0.046948813,-0.0015914312,-0.08046334,-0.052864455,-3.351218e-08,0.08093301,-0.018640442,-0.013688287,-0.0102059785,0.025764244,-0.04072099,-0.032679863,0.05316622,-0.022939447,0.055021536,-0.043202814,0.052893974,0.017738475,0.060869474,-0.051919296,0.01498378,0.08231864,0.021830857,-0.027189754,-0.07478827,0.043795697,-0.018769568,-0.063020356,-0.07804996,-0.04146805,0.015998604,0.019954653,0.017163701,0.0064315023,-0.08847467,0.024531128,0.024548456,-0.087016724,-0.04030929,0.027882945,0.026519755,-0.042565815,0.026238196,-0.04988774,-0.10294428,0.06573432,-0.06759183,0.03180181,0.01864854,-0.037394736,-0.08232614,0.06479707,-0.005813812,0.020005997,0.02142658,-0.043628894,-0.05372147,0.031797532,0.0141900135,0.006298595,0.027841015,0.027876623,-0.0104170265,0.0058325594,0.028942998,0.00873669,-0.0055697206,-0.032902684,-0.0565773} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:35.856259+00 2026-01-25 01:27:51.999546+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 604 google ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB 1 t 607 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy rápido y cómodo el alquiler. Al llegar nos atendió Carlos y nos llevó de vuelta Nestor. Los dos chicos de 10 :) muy rápido y cómodo el alquiler. al llegar nos atendió carlos y nos llevó de vuelta nestor. los dos chicos de 10 :) 5 2025-01-25 01:27:48.342811+00 es v5.1 J1.01 {A1.01} V+ I2 CR-N {} {"A1.01": "Los dos chicos de 10 :)", "J1.01": "Muy rápido y cómodo el alquiler. Al llegar nos atendió Carlos y nos llevó de vuelta Nestor."} {-0.008334001,0.033821777,0.013093826,-0.03893378,-0.039461043,0.011001771,-0.0052061863,0.027725808,-0.0083628595,-0.008391284,0.034238573,0.00017907788,0.021034814,0.0066028708,0.056591347,-0.00060723367,-0.020610962,-0.025159331,-0.008117143,0.063638486,0.10132819,-0.0069934614,-0.06401137,0.10395505,-0.027636359,-0.05644509,0.022257382,0.026271658,0.0060224617,-0.03148016,0.02030291,0.04607814,0.08648042,-0.0016770227,-0.06560749,-0.05941472,0.013671856,-0.055025194,-0.053148884,0.019579912,-0.067796156,-0.0109311445,-0.009255476,-0.011569472,-0.028450081,-0.029028976,0.035031956,0.08215058,0.040356837,-0.037102766,-0.0592812,-0.0012740493,-0.044955984,-0.0028295806,-0.01898112,0.025063405,-0.057586726,-0.04173485,0.04723041,0.008228032,-0.008627387,0.048442066,-0.04164136,0.067214124,-0.035438806,-0.026703704,0.05272893,0.016872939,-0.06933891,0.041380297,0.118236154,-0.04036371,0.05294866,0.011819981,-0.059781685,0.0176031,0.0071096215,-0.046969783,-0.0740129,-0.06955703,-0.012077022,-0.019182857,-0.019409016,-0.06476163,-0.051500537,-0.039613616,-0.008845038,0.07686317,0.05586262,-0.055372033,-0.040492598,0.05842413,-0.048748456,0.007580264,-0.061976504,0.07037708,0.07276849,0.011629559,-0.099945135,0.05267826,0.1397588,0.037111625,0.045507755,0.064847805,-0.0023722642,0.08365127,0.06215171,-0.017343333,-0.013167764,-0.05977127,-0.070304565,0.012524037,0.0011585599,-0.04152103,-0.08042405,-0.018357145,-0.01687434,-0.022683054,-0.07035685,-0.062403835,0.06998001,0.0208239,-0.009096036,0.010051125,0.05543203,-0.023134543,0.060295243,5.381482e-33,-0.059108574,-0.051753722,-0.053311985,0.06887631,-0.04173468,0.043164376,0.00015387444,0.044033777,-0.07471415,-0.00058946665,-0.022614246,0.010335023,0.028990304,0.082189135,0.022560203,0.039893404,-0.0231856,-0.031358298,0.07029084,-0.0009739378,-0.041251305,-0.076712176,-0.03643746,0.058314964,-0.013269985,0.10846788,0.0042860825,-0.08496555,-0.033701155,0.06555298,-0.044542555,0.059233736,-0.05901627,-0.029048774,0.016438926,0.0062441886,0.05944107,0.061171785,0.00045947533,-0.039984595,0.006900687,-0.0049870857,-0.012908662,0.006470326,-0.014295419,-0.0066245906,0.021059768,0.10565612,0.059875097,-0.035383098,-0.02458253,-0.07949068,-0.08554998,-0.06833538,-0.040438883,0.012521224,-0.08175266,0.05985522,-0.087221585,-0.0043661594,0.033392753,-0.023106854,0.015637232,-0.002745699,-0.060586054,0.008559187,0.041843653,0.044292685,0.12564152,0.039655812,-0.05247517,0.0024893498,-0.04432385,-0.025884014,0.06475095,-0.015864165,0.07384012,-0.017767016,0.07834863,0.055182755,-0.109757,0.040629208,0.026324688,0.06110739,0.04238086,0.036965553,0.0400543,0.06429647,-0.055752184,0.10861792,-0.018516889,0.04531577,0.116154194,-0.0116458945,0.03315556,-6.710344e-33,0.006965223,-0.017828044,0.018077621,-0.0067628915,0.02007111,0.042810287,0.01765562,0.07167363,-0.045774247,-0.13946196,-0.08285012,-0.08684174,0.098092325,-0.077610746,-0.02553956,0.06530845,0.026681585,-0.04647872,-0.058590747,0.006157037,0.011937141,0.040308334,-0.0218904,0.024820026,-0.013756723,-0.05780257,0.021135336,0.07426965,-0.054474298,0.032600023,0.05895074,-0.03204482,-0.032601625,0.009291475,-0.0370351,0.17209746,-0.02009782,0.022299172,-0.013278757,0.017456468,0.01029209,0.0499585,-0.024317132,-0.009843578,-0.026566973,0.07513324,-0.014659483,-0.16853994,-0.047950327,-0.0020729417,0.083879285,-0.06420759,-0.05603735,0.013277771,0.037263718,-0.032612238,-0.09020576,-0.112276025,-0.08302643,0.00053434994,-0.03270674,0.0051803594,-0.018058702,-0.009701831,0.00088436925,-0.021101179,-0.07497212,-0.012831991,0.029078584,0.036281276,0.13329828,-0.0045955675,-0.14652734,0.029639257,-0.0022417225,-0.032915432,-0.05857773,0.017601205,-0.010762131,0.02458604,-0.0015135143,0.021454476,-0.015569656,-0.042625207,-0.028057093,-0.009067625,0.036664348,0.04757789,0.046495188,0.008402951,0.033788994,0.02096484,-0.03758408,-0.09926554,-0.01841772,-3.0661035e-08,0.017870689,-0.023316806,0.008150825,0.01770322,0.026430765,0.06528241,-0.055823877,0.022040205,-0.011215594,0.09418408,0.08095336,0.0015544646,-0.0347513,0.023180882,-0.050217535,0.019334918,0.07263354,0.08496867,-0.011081551,-0.090392426,0.016962983,0.013678741,-0.02362448,-0.025219021,0.028991,0.016517282,-0.058305856,-0.01752955,0.027613334,-0.011948789,-0.0020862785,-0.018648367,-0.15682377,-0.067195565,0.031885985,-0.008648658,-0.04962875,0.0035523775,0.04168799,-0.030472508,0.07158825,0.05314786,-0.1269545,0.021188341,-0.0018032192,-0.111870185,-0.069910824,0.0005479525,-0.0054775826,0.0060986015,0.0031063533,-0.037187226,0.05399785,0.015553267,0.03730962,-0.01093962,0.0041257227,-0.0020551155,-0.04742348,-0.014713269,0.024271894,0.07003469,-0.046689674,-0.058054514} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:21.27608+00 2026-01-25 01:27:52.024545+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 608 google ChZDSUhNMG9nS0VJQ0FnSURIX3UyX2J3EAE 1 t 611 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Trato genial! Carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en la isla trato genial! carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en la isla 5 2025-01-25 01:27:48.342824+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Trato genial! Carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en l"} {0.015325486,0.03780486,-0.068951786,-0.013612962,-0.08354741,0.054803576,0.009022461,-0.010133814,-0.057730798,-0.014494885,0.030234354,-0.020394722,-0.056484517,-0.02213179,0.011893156,0.017594637,-0.016058551,0.10020075,0.06588211,-0.023667943,0.05278585,-0.051796913,-0.01208409,0.09496842,-0.070556514,0.0019128892,0.043257218,0.09530889,-0.05356781,-0.093277,0.01438237,0.09984149,0.016089613,-0.018459978,0.001556291,0.037954774,0.02558557,-0.092916645,0.022094611,0.021924434,-0.027022561,-0.013958888,0.026362713,-0.015735837,0.0667739,-0.08074236,-0.05603796,0.096864596,0.046398856,0.0090445075,-0.038712103,-0.047890678,0.05108028,-0.023006488,-0.038398925,0.022641651,0.07653394,-0.0460741,0.050364617,-0.05226951,0.011481786,0.03979624,-0.0694506,0.013078432,-0.017541548,-0.024221575,0.07534076,-0.018534254,-0.1107114,0.0036871457,0.023631314,-0.034980565,0.023946315,0.014726258,-0.09964061,0.03869249,-0.020536719,-0.03668709,-0.061176963,-0.012842704,0.051131397,0.042745356,0.0015679616,-0.028570067,0.018616952,0.0350821,-0.005929041,-0.010281626,0.03822848,-0.02193032,0.01788563,0.04640893,-0.013539686,0.014670575,0.010219905,0.08189279,-0.06782009,-0.076088496,-0.030977111,-0.013556747,0.06885622,0.0420008,0.06463103,0.02799481,-0.05438655,0.05966496,0.021919765,-0.044924583,0.02282038,0.049883243,-0.08957242,-0.058345247,-0.02452886,-0.011876633,-0.029577028,-0.006922118,-0.0039870297,-0.04283442,-0.021879213,-0.14875756,0.05567253,-0.02486184,0.019477459,-0.05451824,0.07074921,-0.009532302,0.026512865,8.799708e-33,-0.026886372,-0.003280976,-0.03257084,0.043973986,0.07839728,0.023073377,-0.054519072,0.01716921,-0.10742935,-0.0468621,-0.10103564,-0.029672112,0.0031061396,-0.0042980015,0.007712615,0.038400505,0.05717153,0.027731467,-0.003434675,-0.018416883,-0.12901406,0.03721288,0.043740407,0.0070747137,-0.003128026,0.039791364,0.0008737378,-0.09018063,0.005244781,0.050646897,0.043152507,0.06182027,-0.011945005,-0.029774344,-0.026705347,-0.03902715,-0.03878058,0.0074460255,-0.01863368,0.056168813,0.047986977,0.050246015,0.082642406,0.062091213,-0.0037181478,-0.04686919,0.104062855,0.025607385,0.028973982,0.05716265,-0.06997351,-0.04757804,-0.1361256,-0.081177525,-0.008178657,-0.03075553,-0.11217126,0.067376606,0.0041427095,-0.030376524,0.065565385,0.0123471785,0.037168156,-0.074201114,-0.054472886,0.001297815,0.024313128,0.056871343,0.1197317,0.038237628,0.059164353,-0.060636662,-0.015363654,0.045719516,0.022877512,0.0033101835,0.021368612,0.0041035637,-0.0002964844,0.03470374,-0.10706247,0.043531887,0.044059187,0.02917262,0.045220487,0.031224482,0.022025967,0.018463824,0.06640474,0.018453449,0.061085872,0.05036434,0.007089764,-0.04781838,0.024155902,-7.823717e-33,0.0062786336,-0.031671397,-0.030529495,0.0071083186,-0.04300442,-0.109700225,-0.096856385,-0.024763215,0.044436507,-0.08654568,-0.08320147,-0.13208131,0.08904714,-0.12193546,-0.0077008135,0.06488959,0.00036799477,-0.023349425,-0.08927769,-0.009056125,0.038572673,0.017564386,0.02746076,-0.00059908116,0.02893932,-0.0443652,0.08033012,0.013248855,0.01115057,-0.01629066,0.03184606,-0.009162596,-0.07310354,0.033882648,-0.008055315,0.07418682,0.08072409,0.08224543,0.043030936,0.06514568,0.033876855,0.08808874,-0.053991113,-0.016983494,-0.0084536625,0.056660526,-0.02903256,-0.05018112,-0.014092546,-0.0761502,0.043642484,-0.013615801,0.024890892,-0.023466704,0.07205723,0.0069055734,-0.060857505,-0.0046162745,-0.0055260714,-0.031496402,0.042451877,0.03753959,-0.030510738,0.006659916,0.058073048,0.018525336,-0.031214822,0.031760186,0.019172959,0.09250105,0.008795618,-0.040563557,-0.07906146,0.020281255,-0.05418918,-0.042019423,-0.11910775,-0.022358796,0.012176374,0.06311303,0.018111851,0.008551552,-0.03683772,-0.03761996,0.027382948,-0.043222483,0.026083449,0.009682009,-0.057560835,-0.0009695095,0.049647413,-0.0371541,-0.0403994,-0.030341407,-0.011236092,-3.4307465e-08,0.085694455,-0.03302152,-0.020541938,0.02937263,0.06241736,-0.087669276,-0.02467555,0.028706558,0.05351434,0.11139213,-0.098015085,0.017006608,0.02321313,0.05748407,0.003970816,0.06901269,0.059754826,0.038092528,-0.005584464,-0.061147448,0.109100685,0.0012783745,-0.07602077,-0.014574772,-0.017651118,0.03171364,0.049962156,0.013661184,0.010775047,-0.047713675,-0.0072269947,0.002723995,-0.10949345,-0.11040659,-0.02358112,0.018426636,-0.025404768,-0.011177942,0.030077256,-0.05843884,0.08036118,-0.044874333,0.042126212,-0.0076178024,-0.018127372,-0.07845125,0.0344175,0.013497273,-0.029486436,-0.025985343,-0.023256823,-0.06381182,0.13996337,-0.008040602,0.056319047,-0.03709868,0.09192707,0.006049037,0.03591949,0.051771123,0.05192402,0.026330467,0.036625147,-0.09508707} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:53.792653+00 2026-01-25 01:27:52.03766+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 613 google ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB 1 t 616 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown einfache Abwicklung, keine versteckten Kosten, Adrian war super lieb und hat uns direkt am Terminal abgeholt einfache abwicklung, keine versteckten kosten, adrian war super lieb und hat uns direkt am terminal abgeholt 5 2025-01-25 01:27:48.342865+00 de v5.1 J1.01 {P1.01} V+ I2 CR-N {Adrian} {"A1.01": "Adrian war super lieb und hat uns direkt am Terminal abgeholt", "J1.01": "einfache Abwicklung, keine versteckten Kosten"} {-0.017668547,0.053131953,-0.013888802,0.014420732,-0.039116222,0.07112566,-0.03972753,0.09008669,-0.010966572,-0.01871932,0.0069186054,-0.048999894,-0.040811703,-0.066330835,-0.07439188,-0.009124552,-0.10712952,0.055710107,0.014693172,0.028557193,0.014814478,-0.053921413,0.01892256,0.04909336,0.010377648,0.064868435,0.0035797975,-0.002883874,0.037460968,-0.029989593,0.030728215,-0.036629163,0.019749532,-0.035693377,-0.0290662,0.019634612,-0.00092638884,-0.08100551,-0.007433136,0.040549003,-0.068096556,-0.028676197,-0.06998347,-0.03303906,-0.024714692,-0.0061332206,-0.0013670557,-0.0007684132,-0.1139163,0.012759972,0.011374114,-0.028758794,0.034299962,0.006435397,0.039400265,-0.052712377,-0.008495072,0.019291647,0.0067028613,-0.046055317,0.08327947,-0.00932211,-0.005354204,0.0012792086,-0.050787628,0.017511573,-0.011987327,-0.043968417,-0.020286426,0.053027153,0.0015466654,-0.13326365,-0.027831644,0.0040288,0.026678054,-0.0025370524,-0.040123664,-0.04687539,0.026605513,-0.014790068,0.099169634,-0.04818874,-0.0816701,-0.0011142715,-0.032203395,-0.055068463,0.029427875,-0.028557345,-0.037372995,-0.0056302347,-0.01682254,-0.041768853,-0.07633593,0.0131508205,-0.060617305,0.0066368165,0.0310171,0.05514701,-0.032459382,0.030788215,0.014491983,-0.012763259,0.018472396,0.0903736,-0.044133313,-0.07948841,-0.019519838,-0.07558899,-0.021869624,0.058517143,-0.04064133,-0.11849137,-0.03632106,-0.06517798,0.072768055,0.05187674,-0.05644508,-0.10305501,-0.039654195,0.05925097,0.102692075,-0.016879208,0.02642208,0.11473245,0.07860272,0.015648792,0.08492178,8.321672e-33,0.0023107138,-0.07866333,-0.04469204,0.01939071,-0.041414842,-0.028006054,-0.07647888,0.027211629,0.017365199,0.027725428,0.004051683,0.064593926,0.058082785,-0.019180937,0.001826426,0.02865597,0.031550758,-0.047461122,0.008632453,0.009425241,-0.04492264,0.024685128,0.037141755,0.013822799,0.0074720373,-0.037882045,0.010619811,-0.06366463,-0.03838775,0.034549575,-0.027244454,-0.05472669,-0.08442014,0.0026838789,-0.10517651,-0.0045256712,-0.056822244,0.03695454,-0.012701689,0.00069084886,0.030741086,0.013073283,-0.023673756,-0.07048563,0.121030964,-0.0024334765,0.01870807,0.070196226,0.04496775,0.09056645,-0.07877429,-0.004427809,-0.04624886,-0.019478684,0.105994575,0.013208753,-0.09986936,0.07990593,-0.045355417,-0.020198874,0.041899513,0.004563634,0.052763473,0.019896187,-0.039870676,-0.027201679,-0.038325172,0.050293054,0.012722088,0.022522623,-0.07745305,0.018981207,0.1326638,0.006931976,-0.016688835,0.07020474,0.019823732,0.11069235,-0.12172177,0.028587995,-0.1585841,0.035446554,0.091966525,-0.014303076,-0.0056398762,-0.04829839,0.047909528,-0.03809595,-0.045677263,0.057370774,0.009328978,0.006325744,-0.041385446,0.03914597,0.035241887,-8.806638e-33,0.08153742,0.020908156,-0.009994226,-0.08660174,0.005191397,0.1137193,-0.05978714,0.026842093,-0.06766044,0.043204173,-0.007184325,0.046730537,0.07051681,-0.04667002,-0.012157519,-0.04385052,0.028207786,-0.02480424,0.05793029,-0.009460069,0.046904612,0.02916445,-0.0643155,-0.039447702,-0.025081117,-0.022087077,0.17453182,0.021038542,-0.09484865,-0.011673223,0.065498896,0.08428,0.010096918,0.023743305,0.009570251,0.048043627,0.055505138,0.101474,-0.034994327,0.05056156,-0.01881731,0.051134344,-0.08943361,-0.023704201,0.05745911,-0.043590993,-0.053015713,-0.056863863,-0.011545425,-0.100200415,0.05656511,0.030161742,0.037866626,-0.044120006,0.048183527,0.046986572,-0.08788093,-0.028603405,0.010270026,0.05655976,0.06104601,0.08418782,0.03984334,0.005237909,0.014726074,-0.07622998,-0.1293913,-0.012463461,-0.014357107,0.09131036,0.094284356,0.014770766,-0.03414785,0.060812473,0.00921541,-0.01271732,-0.0054465868,0.01179538,-0.05966515,0.008129752,-0.09068213,-0.013170884,0.033054207,0.04808288,-0.027314765,-0.027344143,-0.0035997091,-0.0065601175,-0.04026903,-0.020270698,-0.01598994,-0.006229805,-0.025335297,-0.05359845,-0.022307461,-3.8386354e-08,-0.01999453,-0.047777064,-0.049109355,0.08617278,0.015805345,0.04159139,-0.04833177,-0.031169912,-0.12357942,0.03008806,-0.032400187,0.020180233,-0.038151357,0.06500846,0.026309133,0.01182482,4.057523e-06,0.023591183,-0.010075707,0.012509743,0.038886573,-0.07587806,-0.033884335,-0.11901309,-0.0053000865,0.037839614,0.044926956,-0.0019443947,0.025042798,-0.030231936,-0.0036665073,0.070528865,0.015428843,0.022789806,-0.015587629,-0.015679333,0.005707621,0.05714444,-0.18241864,0.033883862,0.073449016,0.044691406,0.041368842,-0.023412807,0.009609188,-0.030285398,0.0015210572,0.0034048678,0.10187179,0.014312543,-0.005085284,-0.0224325,0.046994198,0.052456155,0.060058527,0.009007664,0.0045276475,3.6409951e-06,-0.028330747,0.05940214,0.017143073,0.03906549,0.01917075,0.023958266} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:31.346526+00 2026-01-25 01:27:52.051977+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 623 google ChdDSUhNMG9nS0VJQ0FnSUNuOVluRDBRRRAB 1 t 626 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio excepcional y trato muy profesional y agradable del personal que me atendió. Muchísimas muchísimas gracias a Isaac, Carlos y Antonio. servicio excepcional y trato muy profesional y agradable del personal que me atendió. muchísimas muchísimas gracias a isaac, carlos y antonio. 5 2025-01-25 01:27:48.342942+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Servicio excepcional y trato muy profesional y agradable del personal que me atendió. Muchísimas muc"} {0.022970365,0.065437846,-0.008192952,0.015127391,-0.094273254,-0.023848072,0.14391135,0.05775664,0.044899434,0.025010929,0.018413505,0.021153286,-0.06769491,-0.012832032,0.025085093,0.019046426,-0.0041199164,0.07014204,-0.011501925,0.053326227,0.094883434,-0.0630656,-0.042456523,0.06660628,-0.10181918,0.0018841808,-0.0021623946,0.006672794,-0.055379834,-0.031292394,-0.0010557992,0.0756706,0.1137222,-0.009891595,0.008726588,0.040120922,-0.00048652006,0.029515237,0.039111525,0.026001817,-0.06340464,-0.008349736,0.03952369,-0.028695814,0.011719197,-0.1242947,0.022336012,0.04662938,0.020531211,0.012258849,-0.15844977,-0.065588385,0.004834558,-0.019429674,0.026008852,-0.0050152726,0.023295363,0.0034943928,-0.033388626,0.02631895,-0.031231439,0.04613382,-0.020090433,0.030714607,0.06933425,-0.027163427,-0.0139684975,-0.0076222084,-0.037333895,0.008014719,0.057664838,-0.07511133,-0.00449087,0.064850494,-0.04202941,0.061864078,-0.024294022,-0.00436296,-0.047903966,-0.024409475,0.012907481,0.00160896,-0.027960459,0.004365372,0.0072567197,-0.009697884,-0.014723043,-0.05345917,0.012237821,0.032295678,0.055964515,-0.0043437667,-0.033895154,-0.034746263,0.0054671234,-0.0034572824,-0.04868907,-0.06459295,-0.0023587004,0.020827804,0.03992257,0.061502703,0.07466411,0.10481551,-0.052213777,0.08953045,-0.0042119245,-0.032629665,-0.0238609,0.08730494,-0.076172225,-0.042725295,-0.12297115,-0.054394428,-0.016749112,0.07350564,-2.5979092e-05,0.062012766,0.020146877,-0.033585735,0.014525915,0.043403465,-0.0769115,-0.02965652,-0.042054117,-0.060441583,0.038736764,7.311548e-33,-0.064515874,-0.022630902,-0.019364988,0.091659606,-0.054477952,0.0071258084,-0.05849614,0.025460035,-0.020893237,0.01355021,0.022058845,0.10905924,0.043288916,0.0128021855,0.022658322,0.09644464,-0.004825551,0.024180658,0.03223868,0.055770807,-0.023390055,-0.01079006,-0.018513966,-0.035055168,-0.006859042,0.032843824,-0.014362329,-0.07705256,-0.01568922,0.044685267,0.06820693,0.06927554,-0.04613153,-0.064287364,0.046973005,-0.030349607,0.020946017,-0.01152147,-0.0083143655,-0.03161325,-0.013030332,0.0120528005,0.09683699,0.02830857,-0.028532395,0.033416275,0.06562836,0.050748225,0.0840109,0.041873656,0.0100693265,-0.094602786,-0.054141734,0.012774446,0.02616455,0.01899683,-0.046653204,0.15488516,0.024827834,-0.048540756,0.013936719,0.010767439,0.023813816,0.017382808,-0.049100745,-0.079882525,0.007667556,0.022733858,0.102131836,0.057249587,-0.07634063,0.01724758,0.027205098,0.011920328,-0.08691751,0.007463346,-0.021811645,-0.06598768,-0.007785537,0.058695372,-0.029020809,0.04079449,0.016809067,-0.029117746,0.11624621,0.09819719,0.054463353,0.04020128,-0.004823099,0.10949335,0.012562059,0.0687751,0.015070431,0.009158027,-0.04536148,-8.1338346e-33,-0.013764245,-0.014391233,-0.019434832,0.01721392,0.0018401841,-0.080495685,-0.05599926,0.036684602,-0.047823973,-0.019603271,-0.03101608,-0.12913519,0.090629205,0.006220907,-0.07614127,0.02210729,-0.036840174,-0.065296,-0.11119121,-0.07874394,0.0047098473,0.099438176,0.038908165,-0.07109064,-0.016430315,-0.079400524,-0.0049221017,0.044693876,-0.034903083,-0.07198914,0.05472055,0.0111195035,-0.10020891,-0.012504691,-0.0015235391,0.037495114,0.063660614,0.000118455144,0.050403144,0.03163964,-0.0392689,0.06077728,-0.006627517,-0.008804332,0.017695637,0.000558608,-0.048897848,-0.10621005,0.079061806,-0.030903328,-0.027316691,-0.043678887,-0.039711,0.00036276426,0.023160702,-0.027429463,0.015913894,-0.0731131,-0.08205152,-0.013716935,0.031470962,0.009614182,-0.032773007,0.03014163,0.06321351,0.018629061,-0.039366595,0.05934755,-0.035846286,0.04448616,0.053810596,-0.091770366,-0.059152875,0.030331507,-0.06479215,0.012178203,-0.033732086,-0.04254824,0.034469977,0.014798971,0.028708361,-0.042282145,-0.010718199,-0.021873418,-0.03653859,-0.073455386,-0.02696073,0.015197681,0.0037561588,0.010075955,0.037128437,-0.045089602,-0.01572268,-0.11964703,-0.08906719,-3.543615e-08,-0.017649751,-0.07201623,0.058758724,0.0057255533,0.019582642,-0.07032388,-0.04668299,0.055205546,0.04346785,0.021790477,-0.048202667,-0.011902225,-0.015791545,0.01714927,0.05798176,0.016293911,0.1349433,7.031702e-05,-0.011807288,-0.0720865,0.0794462,-0.04583391,-0.10523126,0.047930136,-0.041374534,0.10466868,-0.022047224,-0.033551607,-0.070742995,0.031399123,-0.032399356,0.0127874445,0.027284943,-0.09328531,-0.08196581,0.016661666,-0.028301457,-0.121320985,-0.024963854,-0.037702404,0.079637155,-0.043012824,0.0055623734,0.04474135,0.021446975,-0.03902966,-0.0073244106,0.013220354,-0.013432983,0.046382945,-0.037978448,-0.03461073,0.06494181,0.005238517,0.0006815,-0.018003715,0.084067255,0.029684948,-0.032872457,-0.015589158,0.09106194,0.04082399,0.0017017499,-0.12117571} 0.9 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:55:04.726569+00 2026-01-25 01:27:52.093922+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 631 google ChZDSUhNMG9nS0VJQ0FnSUNIcW96NlZnEAE 1 t 634 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy amables en el servicio y profesionalidad por parte de Fran y de Carlos que estuvieron atentos en todo momento. muy amables en el servicio y profesionalidad por parte de fran y de carlos que estuvieron atentos en todo momento. 5 2025-01-25 01:27:48.342977+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy amables en el servicio y profesionalidad por parte de Fran y de Carlos que estuvieron atentos en"} {0.017906303,0.043473613,0.005958581,-0.0029561266,0.009452442,-0.0022180045,0.017645478,0.024045391,0.030747091,-0.0077302726,0.009074343,0.055100273,-0.04191102,0.038040448,0.04747352,-0.02921775,-0.046160307,0.018916208,0.003682866,0.038919758,0.1480556,-0.059210762,-0.078614384,0.04081432,-0.096669056,-0.03380593,0.009187568,0.01605829,-0.06207684,-0.06516482,-0.0049359184,0.059548628,0.07301035,0.023938801,-0.04116313,0.033940107,0.084733844,-0.022174047,0.017341027,0.047030598,-0.12105165,-0.014071956,-0.01924102,-0.05439763,-0.021493278,-0.092622936,0.078475475,0.010301501,0.030242579,-0.0034597048,-0.11121045,-0.04126846,-0.012618847,-0.01107207,0.04577657,0.0075671235,0.012734265,-0.0059219403,0.002307754,0.031606928,-0.0077206204,0.020513391,-0.045390364,0.052493684,0.043934107,-0.09885215,-0.019245485,0.015242503,-0.074413635,-0.0019952343,0.051426068,-0.083861694,0.039011642,0.04966401,0.013791162,0.062124297,-0.03718165,0.023871925,-0.03655128,-0.06663986,-0.004794061,-0.040105995,-0.015958197,0.0003811347,-0.022523131,0.0033091945,-0.00982978,0.009202594,0.06043476,0.010152766,0.016192691,0.011498031,-0.01632172,0.019151822,-0.019443383,0.0048352294,0.014617155,-0.021456348,-0.0061708717,0.03499201,0.034805644,0.056899287,0.10869697,0.05892232,-0.030892294,0.036130227,0.01400063,-0.024578275,-0.026513254,0.08081997,-0.059423085,-0.0066946344,-0.10593308,-0.0003054857,-0.06473274,0.0111489175,-0.011467049,-0.010785968,-0.024638817,-0.07212434,0.08347655,0.06338848,-0.05978301,-0.059683643,-0.01966317,-0.01558218,0.074892886,2.1649223e-33,-0.034368254,0.0018768491,-0.01364686,0.10219317,0.0047250465,-0.014846727,-0.040635232,0.05914573,0.0099194385,0.011582522,0.005762526,0.1241527,0.055651944,0.018619658,0.023489444,0.013909092,-0.049898166,0.0072864834,0.011284063,0.064133026,-0.012847261,-0.0001245981,0.0027131122,0.02337013,0.042533476,0.035985462,0.008915268,-0.046399906,-0.045994267,0.035695195,0.020369712,0.017617479,-0.03260329,-0.052245516,0.020599062,-0.005456963,0.044712916,0.03144639,0.012260457,-0.05696553,0.024662988,-0.023559757,0.009790834,0.015386649,-0.08312196,0.034628972,0.06496096,0.043722175,0.15977283,0.02654965,-0.029935967,-0.13171995,-0.03049301,-0.063001856,0.05063488,0.03461711,-0.032893065,0.047212526,-0.044118956,-0.07978471,0.03113943,-0.06404167,0.056205478,0.03987336,-0.027251538,-0.053779006,-0.0049362145,0.058433164,0.11438438,0.0084201805,-0.14076716,-0.011503674,0.03905602,0.014951642,-0.031439405,0.019738028,-0.011265312,-0.043701958,0.047790587,0.054979496,-0.057131242,0.021649022,0.03554628,-0.029190106,0.090212606,0.09542653,0.0700953,0.047533605,-0.010725182,0.1229782,-0.038074188,0.07444676,0.03316098,-0.007601636,0.005341007,-7.704074e-33,-0.047943976,-0.007365391,0.027797334,0.051995624,0.04931426,0.01055353,-0.0038851234,0.037952475,-0.074221544,-0.05064603,-0.07635881,-0.11568343,0.032587517,0.01130802,-0.09367946,0.055338986,-0.06403819,-0.120831855,-0.09440349,-0.014584856,-0.047096096,0.07239556,0.09314108,-0.05658584,-0.05195575,-0.06439656,-0.049262594,0.022136815,-0.08877267,-0.021946235,0.038558025,-0.021447493,-0.056981567,-0.0093717985,-0.057256054,0.11528962,0.014327778,0.017402615,0.03074151,0.097415715,0.018814165,-0.009198175,-0.011520433,-0.0097707035,0.027376065,-0.03246689,-0.05304927,-0.19668195,-0.0032315946,-0.043146145,0.0128307585,-0.033711534,-0.07727996,-0.04588091,0.018005824,-0.0018947439,-0.0060394616,-0.0756228,-0.09550644,0.02533526,0.031939153,0.030317018,-0.033447314,0.034396872,0.03384749,-0.025518522,-0.054307114,-0.034458667,-0.043748066,0.04567825,0.099833705,-0.010889075,-0.07322428,0.06895914,-0.08246723,0.017092457,-0.067645214,-0.05404379,-0.041733976,0.013649515,-0.013337925,-0.032696623,-0.034075145,-0.037084404,-0.09483831,0.011862131,-2.4110988e-05,-0.011021326,0.0058825817,-0.020263856,-0.0040922114,-0.031682167,-0.0820201,-0.09542639,-0.037423287,-3.461693e-08,-0.015733795,-0.0460964,0.0020518526,-0.04736508,-0.03434831,-0.08348897,-0.011023439,0.03306301,0.08143737,0.09656215,-0.0032075585,-0.013599433,-0.059714407,0.029910311,0.052734658,-0.022844836,0.08402794,0.08620554,-0.024687711,-0.038821056,0.027819652,-0.02090078,-0.068000175,-0.02714018,0.043137547,0.025784181,-0.099430576,0.011334369,-0.06642196,0.018935122,-0.002635561,0.0025842201,-0.010521665,-0.10056066,-0.05459272,-0.03285904,0.00731593,-0.090595275,-0.018587986,-0.03058544,0.11327301,0.001959321,-0.086485974,0.02023802,0.0450543,-0.049070284,-0.050449338,0.06521378,-0.028160088,0.036306635,-0.029394316,-0.0021386545,0.04134774,-0.03111826,0.045048404,-0.006063537,-0.002835624,0.035437223,-0.03655117,-0.0045337384,0.004921579,0.021911614,0.05385848,-0.0919709} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:44.947842+00 2026-01-25 01:27:52.122342+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 636 google ChZDSUhNMG9nS0VJQ0FnSURIMlBMZ2NBEAE 1 t 639 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sergio muy amable y nos acercó para no perder el avión súper bien sergio muy amable y nos acercó para no perder el avión súper bien 5 2025-01-25 01:27:48.343001+00 es v5.1 A1.01 {} V+ I2 CR-N {Sergio} {"A1.01": "Sergio muy amable y nos acercó para no perder el avión súper bien"} {-0.057661865,0.011978667,-0.021961587,-0.047677197,-0.036467683,0.044019658,0.07835069,0.079836845,0.05068246,0.02466674,0.03759646,0.0034925696,-0.011598166,-0.009705673,-0.013250796,0.0014651055,0.0003175642,0.030704137,-0.009571551,0.014791525,0.112740554,-0.034578778,-0.10630929,0.022199001,-0.07068325,-0.014769622,-0.028684566,0.008889979,-0.023342878,-0.07810456,0.052011847,0.022657325,0.09466945,0.028917467,-0.03899008,-0.084624425,0.026179632,-0.063100904,0.008038819,-0.020128876,-0.122231305,-0.008109651,-0.0827562,-0.010752044,-0.011524211,-0.11642745,0.013157708,0.01829069,0.017799009,-0.005038807,-0.06038941,-0.028900499,0.009957494,-0.03267204,-0.003683834,0.037491422,-0.08087126,-0.06239417,0.060326286,0.008282949,-0.014375391,0.022027744,0.0072032325,-0.07162197,-0.0287921,-0.05865456,0.090648435,0.015590456,-0.07125825,0.11815709,0.099249475,-0.08192804,-0.020993933,-0.022701472,0.0034044944,-0.011160789,-0.06372182,-0.049147386,-0.023308069,-0.02958113,-0.0044470006,-0.004278319,-0.05637895,-0.043711428,0.03386617,-0.0084892055,0.00081488927,0.010575067,0.046074644,0.0053235465,0.006980292,0.039108105,-0.095128365,-0.004923356,0.023352461,0.050814513,0.093938395,-0.04499695,-0.0665309,0.10680994,0.11994454,0.07804493,0.09497928,0.0038478451,-0.01259709,0.037675604,0.12719737,-0.016000079,0.012382766,-0.009809769,-0.048886243,-0.029669227,-0.006434372,-0.06439487,-0.05562775,0.028179865,-0.03397749,0.03540647,-0.047727343,-0.11091748,0.06553017,0.037398376,-0.0444921,0.05656485,0.036696326,0.012499862,0.05675969,3.9465897e-33,-0.044540092,-0.018757595,-0.02332927,0.09128484,-0.039504338,0.012667974,0.0004937333,-0.0013554808,-0.00069775374,-0.06339425,-0.0052562137,-0.058739927,-0.035112437,0.035922457,0.07317853,0.089520514,-0.03517502,-0.08613449,0.029436164,-0.013094256,-0.07094449,-0.06492267,-0.013736451,0.0014294349,0.03383584,0.03966063,0.03550957,-0.10266192,-0.038564283,0.06658215,-0.04562461,0.08175728,-0.008263047,0.0025733798,-0.012534929,-0.03647555,-0.024942376,0.027259868,0.0041528963,-0.004021644,0.054961864,0.035371944,-0.06118882,-0.04125026,-0.0071235434,0.046191473,0.048956215,0.14811291,0.045987327,-0.019563666,-0.052841093,-0.07239859,-0.060484443,-0.005962406,0.026234452,0.053758617,-0.07587197,0.090536974,-0.028419543,-0.009825115,0.09691406,-0.034594048,0.06994234,0.04264364,-0.058429897,0.034689624,-0.034325965,0.020871026,0.09785403,0.050881147,-0.05364967,-0.05077984,0.0044047846,-0.042096864,-0.0009160652,-0.01452557,0.0075182375,0.033423007,0.022511343,0.0378391,-0.103914134,0.06814508,0.101425566,0.009064858,0.10411633,0.081227794,0.051753446,0.03345207,-0.05273958,0.09216375,0.006520588,0.06088356,0.03581598,-0.06452166,0.020320052,-4.7023932e-33,0.014748899,-0.030492593,0.051577855,0.095978655,0.01549455,-0.0018809285,-0.03210664,0.024685303,-0.0008247033,-0.05524938,-0.06797064,-0.074991904,0.09480632,-0.08853819,0.048155475,0.06361183,-0.0123339705,-0.010844501,-0.0884806,0.030822853,0.01694941,-0.0036313606,0.06455643,-0.018340694,-0.064178064,-0.06308311,-0.042000163,0.07840547,-0.049571283,-0.013012598,0.059492406,0.0029426927,0.0062355376,0.012616051,-0.08646783,0.048635524,-0.0045965593,0.053760193,0.0026585364,0.07023973,-0.01016495,0.077803575,-0.02220686,0.0007035571,0.02050106,-0.05472023,0.0043470417,-0.14136572,0.028860444,-0.08640507,0.04862582,-0.0086686,-0.04608141,0.021061877,0.03425939,0.017047005,-0.06531942,-0.09433787,-0.052665833,-0.019599548,0.001159431,0.056402624,-0.06619648,0.0077513205,0.09555889,-0.0009321527,-0.020458018,0.037719853,-0.03484215,-0.04673809,0.10068061,-0.03575912,-0.052769307,0.050965287,-0.006430916,0.00031075545,-0.09061633,0.029445613,-0.004171201,0.013499939,-0.039394937,-0.0075664963,-0.087919064,-0.020457186,-0.076287635,0.05113805,0.003127093,0.009794576,0.013494825,0.013441067,0.05304289,0.018184325,-0.056380257,-0.06413837,-0.031792868,-2.2364613e-08,-0.0015826437,-0.013427385,-0.035762697,0.005186088,-0.0050205444,-0.029669054,-0.059346113,-0.0065050977,0.06376727,0.09664955,-0.019970715,-0.02570829,-0.020285225,0.044020724,-0.054207698,0.058761615,0.0244244,0.07474062,-0.024486225,-0.01011411,0.014863405,0.02903788,0.0071399496,-0.018857894,0.014717793,0.0039935643,-0.060118627,-0.020262534,0.0027019947,0.026108257,0.017553132,-0.022909844,0.012917012,-0.12795557,-0.085958876,0.0020741804,0.01850842,-0.06201075,-0.007824481,0.003074767,0.10934094,0.040759683,-0.06685497,-0.009551315,0.015710892,-0.06271025,-0.050467923,-0.03258928,-0.051955916,0.0034984273,-0.015878655,-0.015771545,0.06390648,0.011277564,0.05000465,-0.006390417,0.01610382,0.03660683,0.0070104,-0.01920339,0.12598012,0.054464318,0.0037844102,-0.032052364} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:54:29.856834+00 2026-01-25 01:27:52.159336+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 275 google ChZDSUhNMG9nS0VJQ0FnSUMzaVByQ2FBEAE 1 t 278 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very bad very bad 1 2025-01-25 01:27:48.34078+00 en v5.1 O1.01 {} V- I3 CR-N {} {"O1.01": "Very bad"} {-0.06341628,0.0145881185,-0.04889802,-0.0028871512,-0.029247785,-0.0070015537,-0.028235285,0.030465128,-0.017959675,-0.002322112,-0.0012423182,0.008251099,-0.01984647,-0.01902416,-0.07359787,-0.004326476,-0.00011844403,-0.12348971,-0.09618741,0.0153050395,-0.0056220884,0.010046334,0.030767102,0.04211476,-0.049265236,-0.04537178,0.01636278,-0.007394025,0.025296776,-0.011376401,-0.040018663,0.11303095,0.033653807,-0.032260466,-0.020105178,-0.01574998,0.009534732,-0.051132884,0.020855311,-0.028242018,0.086478025,-0.050261516,0.0068771658,-0.048750006,-0.00056257466,0.0060800435,0.012135466,-0.03201325,0.09402024,0.012729792,0.031598356,0.039799742,0.052237563,0.012609945,-0.0017747424,-0.042406373,-0.075010784,0.006975813,0.045273505,0.015203368,0.09702149,-0.060495917,-0.018470623,-0.042360794,0.06280538,-0.07389159,-0.0128968125,-0.079151005,0.018485798,0.025804222,-0.026178107,0.0005874614,-0.027484793,-0.016781118,-0.031140028,0.008298202,-0.0021980186,-0.06718123,0.043397665,-0.0524108,-0.022581441,-0.0200175,-0.020778887,-0.053532075,0.039807413,0.023378886,0.123021066,-0.08466421,-0.007682688,0.020308007,0.096886694,-0.013570786,0.10212947,0.061349105,0.05640295,0.031780653,0.07808258,-0.083991766,-0.07159876,0.16265899,-0.043628965,0.12169112,-0.00065075204,-0.008540741,0.027732486,-0.013217173,-0.046891175,0.051742677,-0.035319876,-0.05511904,0.07384176,0.0166714,-0.00048754105,-0.008207151,-0.031655937,0.068223,0.013401347,0.024640005,-0.062654525,0.017996551,0.009432241,0.019013498,0.03422358,0.023315776,-0.09417362,-0.05603199,0.023217496,-1.438379e-33,0.042638578,0.03328744,-0.0056864,-0.06861962,0.019025251,0.02926324,0.022194711,0.011351132,-0.00092288415,0.09984037,0.029303834,-0.04027261,-0.031630587,0.012102046,0.03834227,-0.000901624,-0.0015475173,-0.046102174,0.05043114,0.070659146,-0.030053133,0.10603334,-0.066255294,-0.033629302,-0.04704643,0.052343722,-0.10156675,-0.06666838,0.02340904,0.026068673,-0.107278824,0.026347835,0.010478905,-0.03395516,0.07310937,0.023083024,0.033882603,0.07246817,-0.049381416,-0.013427957,-0.010528219,0.044607226,-0.035649728,-0.04659506,0.017844187,0.001720913,0.00589485,0.005374928,0.0333178,0.021546194,-0.041238755,-0.04342607,-0.081736274,0.06414054,-0.012916961,0.059444483,0.026478533,-0.07076381,0.025868695,0.047643155,0.11244303,0.113805994,-0.027872367,-0.021513851,-0.052863076,-0.02210697,-0.03304729,-0.013478559,0.048979864,-0.026042955,-0.03872583,-0.01866566,0.11047374,-0.06140189,-0.015166877,0.026900625,-0.04314113,0.030991137,-0.0042484724,0.023995342,-0.007833641,-0.029249731,0.069335215,-0.028242797,0.050040506,-0.014857167,-0.0009754081,-0.06169673,-0.0067028743,0.10126953,-0.07202977,0.0030957842,0.041183192,-0.043009143,-0.036711514,1.3228576e-33,-0.032752417,0.03317199,-0.024637805,0.07784807,-0.013088207,-0.019078512,0.07320023,0.19427833,-0.0024930695,-0.0037921723,0.0113065485,-0.0012778349,0.028536439,0.039491564,0.037444662,0.0075483588,0.09496277,0.055445895,-0.030069249,-0.06779726,0.0133266095,-0.034183234,-0.021892583,0.0008462031,-0.043044154,0.020825168,-0.03890306,-0.020752095,-0.04812567,-0.06036953,0.0937937,-0.037555177,-0.05535827,0.07685737,0.07767038,0.11373656,0.0033545601,-0.045792922,0.0014544205,-0.021933816,0.0029399595,0.018848395,-0.030498333,0.03369165,0.038792357,-0.044049043,0.10345605,-0.0018343511,-0.0037896405,0.09348401,-0.018170906,-0.0028849486,-0.11360523,-0.018254926,-0.06052073,-0.024910651,-0.044241276,0.049695298,0.047147654,-0.02476486,0.020568881,-0.013301581,-0.11504512,-0.013132425,0.017398454,-0.0041438965,0.01577813,-0.04520639,-0.0050086225,-0.019841243,0.046477176,0.021066176,-0.08635567,0.045098852,0.0915578,-0.058883965,-0.03689677,0.030437846,0.023266196,-0.035861142,-0.10806311,-0.07436769,0.058258638,-0.09210017,-0.066945836,-0.09244856,0.11215727,0.07326152,0.029421074,0.025190601,0.0074586184,0.0071475343,0.074833594,0.0009775714,0.041906044,-1.4283575e-08,-0.018163908,-0.008417648,0.07997809,4.433917e-05,-0.060218707,-0.01597388,-0.046034817,-0.015418281,-0.003712885,0.0665084,-0.016500633,0.06680307,-0.0029936617,-0.006391713,-0.061972152,-0.052739713,0.06425327,0.10144921,-0.045000304,0.009035663,-0.039471187,0.03797889,0.029760277,0.08885763,-0.056416746,0.015028946,0.044166073,0.10313756,-0.044286598,0.047217127,0.003276954,0.12960425,-0.06354795,0.05566365,-0.084750056,-0.032048702,-0.01906798,-0.03173436,-0.034816973,0.038705535,-0.076042175,-0.07090151,0.0028447344,-0.02039561,0.022575157,-0.03424246,-0.0144566735,0.041815728,-0.022284964,-0.047781903,0.06623621,0.050090235,-0.070404194,0.024811408,0.08166212,0.06528317,-0.003825654,-0.053987566,0.011871013,0.0054419837,0.068413764,-0.02274819,-0.08267362,0.037091777} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:50.054109+00 2026-01-25 01:27:50.777676+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1449 google ChZDSUhNMG9nS0VJQ0FnSURrbi1TTkVREAE 1 t 1452 Go Karts Mar Menor unknown Absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car to get there absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car to get there 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {A4.01} V+ I3 CR-N {} {"V4.03": "Absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car"} {0.031232223,-0.02861748,0.05163051,0.006967166,-0.045124758,-0.04297776,0.033719093,-0.06795632,-0.04717129,-0.023851104,-0.024434805,-0.008960157,0.041804932,-0.033957962,-0.03124687,-0.010951664,0.15307468,-0.15712114,0.014316641,-0.0484476,-0.0043291426,0.05366563,0.056521192,0.042731643,0.0050318795,-0.040515237,0.03169687,0.06899082,-0.0031620588,-0.03258864,0.010170946,0.03930751,0.0224131,-0.018954296,-0.026839195,-0.008794351,0.062444337,-0.09332303,0.041497145,0.015115531,-0.029773006,0.025945982,0.092115894,-0.043637566,-0.024538843,-0.030265551,-0.001453904,-0.022880387,0.10943928,-0.08034258,0.037029263,-0.013382939,0.06971323,-0.047438543,-0.105433024,0.037088815,-0.007998897,-0.031749453,0.014257907,-0.009236585,0.08643165,-0.010467652,-0.010812293,-0.0075520286,0.076607585,-0.08462436,-0.08273857,-0.036260284,0.11015496,-0.05909254,-0.040924244,0.056672987,0.0462259,-0.010261046,-0.061175905,0.0016413123,-0.045003064,-0.058756176,0.0005935597,0.008900892,0.066963516,-0.052278902,-0.032006368,-0.007890415,-0.019717155,-0.078237265,0.09167853,0.018571526,-0.093249515,0.030481575,0.00063784904,0.002479485,-0.12579869,0.05733912,0.02223706,0.029372737,0.039070427,-0.035156313,-0.028755354,0.01619459,0.038296558,0.06955102,0.03344985,-0.02561653,-0.06270298,0.03726764,-0.0059534004,0.084645875,-0.07366721,-0.0035997133,-0.0014283883,0.010252062,0.0035815632,0.0011310662,-0.059032343,0.06989111,0.037781168,0.003010472,-0.04596687,0.021672241,0.037454817,0.012928814,-0.004559348,0.07301643,0.040529802,-0.0054243384,0.009804459,-5.8592993e-33,-0.025318708,0.04583948,0.015879348,0.022371287,0.074771985,-0.024168853,-0.07658736,-0.007928026,-0.0978164,0.1025271,0.026478957,-0.003559414,0.011612401,-0.049504347,0.0071202745,-0.08372306,-0.041476656,-0.038016796,-0.07696912,0.06168805,-0.023632584,0.04014071,-0.006539824,0.011378332,0.078600466,0.037690546,0.024186717,-0.020340905,0.0763142,0.019289022,-0.0791645,-0.0050537502,-0.04646259,0.033136778,0.0070944023,-0.03700397,-0.04628047,0.0067249616,0.04608255,0.029287448,-0.027869994,-0.036445726,-0.028321868,-0.018705374,0.012279907,0.05342858,-0.02627776,-0.02848516,0.08011054,-0.032281157,-0.04780454,-0.009850404,-0.07205002,0.0483515,0.008775063,0.04386981,0.07768061,0.00847721,0.007028223,-0.04143629,-0.007742194,0.098825864,0.003924578,-0.10523529,-0.017644472,-0.033364117,-0.060333807,-0.016885972,0.029044041,0.005434123,0.10395952,-0.008184752,0.016697923,-0.021701658,0.04561814,0.00060048426,-0.0734329,-0.045369256,0.06203439,0.02395011,-0.025192343,0.03198039,0.0035296883,-0.018978523,0.079197764,0.015024647,-0.06881025,-0.08521247,-0.08203904,-0.009625388,-0.024601527,-0.015840553,0.04990686,-0.009299049,0.0071946415,1.695733e-33,0.10374193,0.0192016,0.016560132,0.03756898,-0.042056102,0.068953775,-0.04548626,0.12952842,-0.06053981,0.07191564,-0.052475106,9.0563364e-05,0.054504693,0.010987154,0.03349652,-0.017066563,0.088192225,-0.0043377792,-0.01075373,-3.8856637e-05,-0.023213644,0.0477389,0.0742837,-0.067951284,-0.04489459,-0.029735561,-0.10641146,0.016183952,0.013962577,-0.08266503,-0.074836716,0.015974145,-0.004306281,-0.06603579,0.01964244,0.070047066,0.029375203,-0.030203793,-0.035371978,-0.016023729,-0.049811136,-0.023501676,0.014812491,-0.0412381,0.034252714,0.00653739,0.02652123,-0.012901329,-0.06756169,-0.026621504,0.09847257,0.009238905,-0.04930264,0.058379237,0.009847848,-0.012911434,0.0132072205,-0.030851109,0.009960151,-0.03357711,-0.00093205034,0.06887525,-0.09580261,0.038739827,0.043252073,-0.079190575,-0.055498704,-0.027034814,0.024856454,0.004034467,-0.041288927,-0.04255825,-0.07978537,0.07846031,0.047602512,0.03862467,0.12039979,-0.07459256,-0.010166767,0.009584053,0.02316632,0.008631431,0.001999847,-0.061224043,0.07469785,0.0052344115,0.029337965,-0.058496654,-0.010849175,0.13461374,0.044262495,0.13410047,-0.08587908,-0.119259976,-0.019679526,-2.5577902e-08,-0.026074575,0.044753943,-0.06665166,-0.060291804,-0.017992117,-0.088180654,0.08370333,-0.0404162,-0.07936302,0.024013381,0.04771412,-0.03385301,-0.02163609,0.07360452,-0.0034393852,0.041538246,-0.003620263,0.11784927,-0.007749554,-0.09362562,0.0221984,0.07402187,-0.035924025,0.05814149,0.04794567,-0.0022412222,0.028515806,-0.04859337,0.024948427,-0.03547863,-0.060847316,-0.009789949,0.00040559244,0.012595284,-0.035491914,-0.023195282,0.021906776,-0.038724378,0.009711749,-0.09770184,0.00503511,-0.09877359,-0.10548233,0.008837038,0.013703915,-0.029263984,0.008974495,-0.06671414,-0.076679006,0.025263121,-0.018826753,0.02820654,-0.018843176,0.015309575,0.06286762,0.054607548,-0.068677485,0.028637772,-0.045014083,0.019491892,0.031447027,0.05590765,-0.09379725,0.085595675} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.252113+00 2026-01-30 02:01:09.398067+00 22c747a6-b913-4ae4-82bc-14b4195008b6 346 google ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE 1 t 349 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Recomiendo al 100 X 100 esta empresa de alquiler de vehículos. Trato amable, cercano y muy profesional de todo el equipo humano. A destacar a Carlos y Fran. A mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final de nuestras vacaciones nos volvieron a llevar junto con nuestras maletas. Muy puntuales y eficaces y el coche que nos proporcionaron para el uso de nuestra estancia en la isla de Gran Canaria prácticamente nuevo. Volveremos a contar con vosotros en nuestro regreso a la isla. Muchas gracias de corazón. recomiendo al 100 x 100 esta empresa de alquiler de vehículos. trato amable, cercano y muy profesional de todo el equipo humano. a destacar a carlos y fran. a mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final de nuestras vacaciones nos volvieron a llevar junto con nuestras maletas. muy puntuales y eficaces y el coche que nos proporcionaron para el uso de nuestra estancia en la isla de gran canaria prácticamente nuevo. volveremos a contar con vosotros en nuestro regreso a la isla. muchas gracias de corazón. 5 2025-01-25 01:27:48.341292+00 es v5.1 A1.01 {A1.02,O1.01} V+ I3 CR-N {} {"A1.01": "Recomiendo al 100 X 100 esta empresa de alquiler de vehículos. Trato amable, cercano y muy profesion", "J1.01": "A mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final d", "O1.01": "el coche que nos proporcionaron para el uso de nuestra estancia en la isla de Gran Canaria prácticam"} {0.07027327,0.09445465,-0.0068179346,-0.06259899,-0.09258786,-0.05022534,0.015722558,0.018524986,-0.03638911,0.062571,0.0833144,-0.050414726,-0.007901517,0.0044405465,0.043189704,0.03643969,-0.033770785,0.0078025428,-0.028085591,0.069325924,0.07073471,-0.006983818,-0.08952861,0.058099438,-0.08577936,-0.026186587,-0.07805211,0.06603401,-0.07391008,-0.025124043,-0.050551243,0.07764434,0.052674405,0.0032251878,-0.0754646,-0.028759528,0.01677297,-0.047676343,-0.025304263,0.095814794,-0.06415853,-0.051255397,0.00074617733,0.012663365,-0.02715217,-0.04034865,-0.011219964,0.065211385,0.10535625,-0.0027078642,-0.03200827,-0.04346262,0.007247715,-0.015809363,-0.037235066,-0.042003937,-0.012375202,-0.011902717,0.04117211,-0.0018184286,0.021733506,0.08341759,-0.03398965,0.04329341,0.0016847309,-0.049926717,-0.013295663,-0.011341779,-0.054271676,0.004484972,0.12822598,-0.09170044,-0.019303966,-0.0060680127,-0.043508112,0.028909488,0.0121516595,0.014010858,-0.016531974,-0.019379292,0.0478215,-0.029341916,-0.019096278,-0.09518554,0.01300307,0.0017955437,-0.024366291,0.025762724,-0.015558821,9.568238e-06,-0.07015535,0.018223707,0.0029875438,-0.016093858,0.06960489,0.10753002,-0.05126572,-0.04785712,-0.0026789648,-0.010689922,0.082735345,0.017949982,0.04015521,0.046900455,-0.076850876,0.058197036,0.058369294,-0.060136568,-0.0054460014,0.04519559,-0.1308374,-0.05428722,0.01708577,-0.040524807,-0.07679856,-0.058242004,-0.020368222,-0.014627206,-0.034664143,-0.0983506,-0.003971958,-0.077764034,-0.013992885,-0.022280388,0.05741286,-0.02492253,0.08102931,1.0182031e-32,-0.045134667,-0.05435594,-0.0133961765,0.08921026,0.05172511,0.031129893,-0.04834115,0.013433802,-0.017336972,-0.017717706,-0.0830398,0.020268897,-0.044354316,0.03020391,0.029947022,-0.04764773,0.056845948,-0.04424162,-0.02520777,-0.033097368,-0.06615488,0.034644928,-0.018617954,-0.023942744,0.009459145,0.06397324,-0.024262415,-0.08857405,-0.07160632,0.044107396,0.0023993407,0.04450685,-0.019801477,-0.053812016,-0.10962381,-0.015806101,0.040436607,0.054486867,-0.048810937,0.00518076,-0.032633264,0.0082934,-0.009236446,0.047942176,0.043956175,0.023188999,0.108103216,0.099481784,0.07557374,0.043129064,-0.1065651,0.0058604446,-0.11795613,-0.09594265,-0.012335588,0.006538251,-0.05839087,0.047813777,-0.0824875,-0.028179837,0.0018942519,0.026486907,0.03745183,-0.02610222,-0.022595124,0.03692455,0.004179966,-0.029420294,0.10420387,0.121719174,-0.039456286,-0.052051418,-0.049865704,0.040710334,0.058894806,-0.006673201,0.095780335,-0.02244866,-0.018413002,0.031631682,-0.07520123,0.058702584,0.009367395,0.080194294,0.09315846,0.048436873,0.051877726,0.026990172,0.034164947,0.062001202,-0.004461742,0.082716085,0.032909468,-0.045826554,0.051978182,-1.1982959e-32,-0.016012711,0.033489667,-0.03671309,-0.006709327,-0.023355346,0.0037147405,0.0089216875,0.03130688,-0.023579048,-0.056789905,-0.09538083,-0.08958301,0.09595585,-0.071113355,-0.03844321,0.03519236,-0.03569987,-0.04884632,-0.0920075,-0.011090901,0.00045105536,0.07209568,0.039114863,-0.008078307,-0.015372918,-0.07552422,-0.0056160903,0.041001435,-0.057039768,-0.03583241,-0.037154317,0.0048605413,-0.0061233193,0.08926832,-0.050350998,-0.009354287,0.05103193,0.04986924,-0.009791529,0.052390713,0.016790247,0.03891401,0.026925327,-0.050496683,0.007771341,0.026837086,0.04066102,-0.1349358,0.009611731,-0.09913796,0.1370889,-0.04662447,-0.03811223,0.031242276,0.12301727,0.02632981,0.00047695354,-0.055953138,-0.03040675,-0.044618797,-0.022347376,0.02177693,-0.022137726,0.0075269686,0.0050873477,0.011812322,-0.035894584,0.0011943299,-0.0009470977,0.016773736,0.034825236,-0.017121986,-0.09923254,-0.028925424,-0.033813983,-0.042520918,-0.05326358,-0.0114075,0.036658436,0.018675447,-0.050333418,0.06289257,-0.023496864,-0.073030286,0.043816514,0.017673392,-0.032837294,0.04760928,0.003967609,0.05619732,-0.00057066133,0.038996726,-0.06844728,-0.06563081,0.00010381995,-5.443806e-08,0.027378516,0.07920179,0.010424848,0.013635058,-0.013444906,0.018281845,0.031708825,0.010091979,-0.009341114,0.07261282,0.04531838,0.008615571,-0.00703689,0.077566415,0.010484165,0.009023873,0.060391583,0.08918902,-0.021807512,-0.04456105,0.08002511,0.039882433,-0.09670505,0.031004176,-0.008983033,0.013035589,-0.015054423,-0.0062378263,-0.023471825,0.015646372,-0.051110066,-0.021526013,-0.11721914,-0.108552165,-0.0651025,-0.056716792,-0.05367332,0.033234145,-0.047090136,-0.09291879,0.091764815,-0.03506073,-0.061826833,0.021074813,-0.009886827,-0.092732295,0.0019540107,0.009868424,-0.03953271,0.026990745,0.034607258,0.010694804,0.07510502,0.015064611,-0.00784006,-0.04691604,-0.008939441,0.025608161,-0.0695333,0.0025083423,0.06948524,0.06701241,-0.030117197,-0.053234078} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:09:34.470451+00 2026-01-25 01:27:51.035749+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1329 google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE 1 t 1332 Go Karts Mar Menor unknown Brilliant fun this morning. Very friendly staff. Great karts and a fun track. Fair value too. We will be back again. brilliant fun this morning. very friendly staff. great karts and a fun track. fair value too. we will be back again. 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Brilliant fun this morning.", "O2.03": "Great karts and a fun track.", "P1.01": "Very friendly staff.", "R4.03": "We will be back again.", "V1.02": "Fair value too."} {-0.015970547,7.2657946e-05,0.037149776,0.0481986,-0.026815083,0.011941882,-0.013304772,-0.07735158,-0.022726623,0.0061042355,-0.082121335,0.0036460417,-0.06170914,0.05087524,-0.02658995,-0.015745815,0.028840072,-0.08678821,-0.0051963786,-0.005033715,-0.10644669,-0.014526688,-0.008162744,0.08630308,-0.09520675,-0.0004094528,-0.01721349,0.093405254,0.00035430954,-0.06329639,-0.11389547,0.0355371,-0.010455196,-0.045207635,0.012216649,0.050657842,0.054416038,-0.10760656,-0.02917517,0.03876412,0.034704678,-0.042712793,-0.009349613,0.05251014,-0.00062147324,0.09526865,-0.020403918,-0.01881135,0.04499049,0.083198376,0.12489399,-0.043217618,0.06849375,-0.07004181,-0.0116788605,0.03725971,-0.020416232,-0.019614361,0.0639908,-0.0059701987,0.03810993,0.008016234,-0.04655481,0.023257459,-0.04423806,-0.124679275,-0.10089183,0.060684822,0.011870449,0.0025499773,0.038468458,0.012303479,0.095076725,0.0066868155,0.050220925,0.045385875,-0.067005694,-0.060632437,-0.008785562,-0.02168536,0.029686771,-0.067813106,0.009250244,-0.0131103955,-0.051350206,-0.103308454,0.051985238,0.038593076,0.037311837,-0.027396187,0.035268668,0.12088101,0.044512868,-0.0252427,0.013266262,0.027574131,-0.015951654,0.05289038,-0.023295062,0.08348478,0.07178082,0.14360285,0.060846087,0.030958029,-0.0401331,0.041152354,-0.06293624,0.069400005,0.06592289,-0.046857238,0.0058789854,0.076855525,-0.029085279,-0.015678752,-0.011043376,0.025820207,-0.04625341,0.052644756,-0.051001947,-0.02692786,0.033326406,0.026664415,-0.014532679,-0.0024836054,0.040411767,0.026321841,0.06304421,-4.3646513e-33,-0.05460842,0.06396246,-0.005545429,-0.022627126,0.06191417,-0.08864105,-0.048209924,-0.07871931,-0.118602686,0.0060957805,0.026841326,0.084132604,0.015677065,-0.0807789,0.00036981446,-0.068430245,-0.02981048,-0.020444896,-0.00514242,0.001143477,-0.020390883,0.004063416,0.005787075,0.055473518,0.02517648,0.039006427,0.045373928,-0.042587552,0.10264932,0.017390748,-0.014984303,0.01596078,-0.017931454,-0.009745976,-0.0752592,0.031955395,-0.05798443,-0.092600144,-0.04442398,-0.020155862,0.0694736,-0.04530135,0.044809535,-0.030430578,-0.08523238,-0.012599508,0.050308652,0.06674103,0.05245236,-0.038047407,-0.044062294,-0.012913835,-0.03808696,0.05175017,0.026232526,-0.03946156,0.027300457,0.037426263,-0.028521324,-0.056503955,0.113669164,0.066966504,-0.012319397,-0.062359683,-0.040939953,-0.02079449,0.0029460643,-0.044676706,0.062275585,-0.06331542,0.0034390204,0.017872564,0.0059348247,-0.019092431,0.03887177,0.0684724,-0.03744565,-0.02654039,0.020525405,0.04551996,-0.02280226,-0.001221291,-0.037575837,-0.021673733,0.061931897,-0.0031474244,0.015120548,-0.12576175,-0.030380975,0.06744134,-0.09340474,0.042524956,0.021556968,0.098469146,0.016123803,1.9665769e-33,0.114283405,0.08527426,0.0005874422,0.045031574,0.010876137,-0.011848224,0.014539516,0.05209357,0.040864382,0.06762593,-0.010828883,0.018040279,0.012735966,0.029933868,-0.072153926,-0.07455245,0.04791139,0.038911138,0.00042853435,-0.1095635,0.0009785221,0.07584778,-0.038438786,-0.015582302,-0.014831116,0.08939144,0.02201687,-0.020224286,-0.0833489,-0.03740196,-0.060467817,-0.08944684,0.0005342617,-0.031840745,0.050158422,0.0237985,0.058151394,0.02896361,-0.07052161,0.0061685783,-0.024380479,0.033800673,-0.019558055,0.01827738,-0.04629245,-0.009641253,0.053969774,0.024466002,-0.06484771,-0.041934025,0.05530692,0.009122016,-0.060979616,-0.07806535,-0.031403378,-0.014903625,0.02761663,-0.03242118,-0.001351357,-0.0037415428,-0.068272926,0.048929457,-0.054259878,0.08152391,0.06615633,-0.029048527,-0.037757684,-0.036103763,-0.059230745,-0.006621497,-0.090170555,0.043224193,-0.041171987,-0.009039349,0.033445872,-0.009385468,0.025469488,-0.08480988,0.04889392,0.06683475,0.044344384,-0.013462759,0.034219205,0.0063935225,0.04419863,0.04655228,0.030412834,0.058216725,0.045691,0.05598887,0.11706766,0.04186728,0.016597187,0.0011655607,-0.041194033,-2.4749832e-08,-0.004017171,0.09074686,-0.06155578,0.026737634,0.038986728,-0.087342106,0.0022770807,-0.014899697,-0.03785865,0.017891899,-0.036699187,-0.019766282,-0.0037829422,0.011272759,0.061806362,0.00021551116,-0.037463516,0.12114435,-0.04303571,-0.027223796,0.018942388,0.069276944,-0.036827285,0.031585246,-0.0273653,-0.017700745,-0.025887167,0.018776702,0.033926245,0.013404444,-0.013094602,0.075355716,-0.077723525,0.02247173,0.0073260623,-0.085536964,-0.08512557,0.036598958,-0.0031132526,0.036435325,-0.08848142,-0.05034179,-0.09011157,-0.008003479,-0.047345992,0.032518398,-0.041305896,0.03583141,-0.084870495,-0.0517214,-0.11732007,-0.09374423,-0.0024317214,0.068421975,0.037996896,-0.018479597,-0.027474964,-0.025393436,-0.042479597,-0.002661228,-0.026920617,-0.07736815,-0.0745279,0.046622165} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:01:00.275362+00 2026-01-30 02:01:08.994495+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1450 google ChZDSUhNMG9nS0VJQ0FnSUNHbXBhQ2V3EAE 1 t 1453 Go Karts Mar Menor unknown Proper karting track and decent karts. Staff all quite friendly and I thought it was good value for money. Various levels of karts. The 2seater karts for kids were great fun too. proper karting track and decent karts. staff all quite friendly and i thought it was good value for money. various levels of karts. the 2seater karts for kids were great fun too. 5 2022-01-31 01:52:39.833374+00 en v5.1 P1.01 {O3.02,P1.01} V+ I2 CR-N {} {"P1.01": "Proper karting track and decent karts. Staff all quite friendly and I thought it was good value for "} {0.010319303,0.03619093,0.018843932,0.07604028,-0.11921733,-0.005689245,-0.009865341,0.022131925,-0.032848623,0.047185257,-0.0055814735,0.023792917,-0.014671474,0.029400885,-0.005483606,-0.066983946,0.112643726,-0.04916529,0.06536546,-0.13408592,-0.09841554,-0.039061192,0.03149488,0.002280731,-0.048632015,0.050175,-0.039316665,0.062137153,0.03567167,-0.0393104,-0.09015963,0.042237237,-0.00096705597,-0.017566169,-0.035978213,0.016316853,0.08455002,-0.023023844,-0.05140253,0.007292279,-0.005923218,-0.0151293995,0.02079411,-0.017545063,0.00397754,0.0050959815,0.047820013,-0.041075084,0.00054292363,0.066516146,0.1164702,-0.083815694,0.07231665,-0.06495896,-0.0037193315,-0.0132525535,-0.10815882,0.028210852,0.08432522,-0.050159235,0.024004087,-0.0036502786,-0.04197517,-0.0055746166,-0.08363886,-0.09483712,-0.11174845,0.048471913,0.014481266,-0.015200413,0.045429863,-0.011084404,0.021981318,0.034603454,0.021352058,0.016460523,-0.0024915298,-0.034692355,-0.06563393,-0.017002676,0.055426475,-0.034099545,-0.0052377474,-0.041045684,-0.006510696,-0.06256917,0.07938818,-0.014495294,0.047085084,0.028332151,0.06388789,0.11585903,-0.023795752,-0.042454924,0.04387542,0.0652816,-0.050460625,0.04780582,0.046514593,-0.019199973,0.06395604,0.072474085,0.07744836,0.024931842,-0.065747365,-0.025338227,-0.022473797,0.033495605,0.047163717,-0.0020503749,-0.019386947,0.007786071,-0.07323736,-0.054510586,0.004670786,-0.0073943,-0.01721252,0.05689861,-0.015734747,0.0141392015,0.029910829,-0.0058986247,0.011124506,0.018699111,-0.062137432,-0.0018528287,0.033063572,1.8373581e-33,-0.10235673,0.060122233,-0.040818144,-0.021559192,0.033604223,-0.04944527,-0.017294573,-0.07891886,-0.066355705,0.053173542,0.01032597,0.05291059,-0.044163812,-0.021159878,0.084932506,-0.023275193,-0.06664074,-0.030184899,-0.06976908,0.004109696,-0.015770786,0.05197589,0.013845604,0.032326225,0.053285804,0.02662967,0.06665555,-0.015793858,0.07221958,-0.005146429,-0.033096172,-0.0024012495,0.012223235,-0.025797345,-0.071392655,-0.0039855093,-0.055513866,-0.09025678,-0.02580001,0.024209348,0.015509061,-0.023841662,0.027273111,0.027817706,-0.028634952,0.05959814,0.023793617,0.061396554,-0.03149815,-0.0033837366,-0.11813654,-0.014029996,-0.037111714,-0.012582277,-0.02860329,-0.016283592,0.079577014,0.023024594,-0.08765413,-0.048060607,0.041834462,0.01229414,0.013337438,-0.073183596,-0.068937056,0.0007961474,0.014690802,-0.05154914,0.032744687,-0.03624981,-0.086862795,0.08459586,0.029871365,-0.054237176,0.0400636,0.032491524,-0.089192025,0.0028648025,-0.05375641,0.07141607,-0.017795993,0.0049552573,-0.018010762,0.08268812,0.0465883,-0.014074078,-0.049371198,-0.08057422,-0.012953873,0.0387196,-0.017705835,0.010689373,-0.019937992,0.063945666,0.018185375,-3.6308232e-33,0.06338198,0.07769363,0.081099175,0.09155138,0.040787756,0.059568573,-0.0077017765,-0.056254108,0.07194047,0.052498855,-0.05564442,0.058277115,-0.044554435,0.041621543,-0.039816603,-0.039590895,0.032438982,-0.03598036,0.06627621,-0.14782059,0.030366812,0.0713363,-0.05099742,-0.008601295,-0.00012322684,0.061553974,-0.093395844,-0.07556304,-0.09340666,0.05685324,-0.02809197,0.0050793327,0.11675027,-0.021012118,-0.0050642043,0.03233498,0.0790663,0.038581263,-0.069121964,0.033995595,0.07936738,0.013489505,0.029295979,0.062257133,-0.01752681,-0.050198883,0.03160858,0.027710067,0.048866794,-0.03861438,-0.003930341,0.022750739,-0.045885563,-0.06372279,-0.04746675,-0.023994938,-0.006136782,-0.0123473015,0.0022308298,-0.02168449,-0.085082084,0.03851189,-0.0328992,0.113028444,-0.015842926,-0.03980144,-0.019752612,-0.017659547,-0.12739241,-0.059332576,-0.1198839,0.026216011,0.014718955,0.024851054,-0.01707466,-0.0031491963,0.045024622,0.009224595,0.068353884,0.1199612,0.050964907,-0.004848468,-0.035953265,0.023756463,0.044831675,0.08385081,-0.04693133,-0.03566582,0.020592399,0.023485078,0.11457941,0.02075209,-0.027929332,0.0054521346,-0.05679884,-2.5819753e-08,-0.020232806,0.09203479,-0.03511156,0.029372688,0.008632312,-0.057110827,0.036500953,0.08813621,-0.056908026,0.057150662,-0.09326775,-0.032266222,-0.018079977,-0.0003912907,0.07757962,-0.033057455,0.038799454,0.12695968,-0.031042455,0.04738617,0.06695069,0.025330968,-0.04261022,0.0038373654,-0.09119779,-0.062676586,0.010367523,-0.028536405,-0.017884629,0.013743754,0.013749952,0.032111757,-0.014718541,0.034933675,0.00090808654,-0.029435478,-0.08109382,0.03266502,-0.009701132,0.022974493,-0.017679393,0.0004844337,-0.09690966,-0.00972012,-0.00088942325,0.07804899,-0.059151094,-0.0027800198,-0.04348138,0.04228628,-0.0800837,0.0025539654,-0.022304216,-0.0017548451,0.032826286,-0.020765897,-0.008475939,-0.034425374,-0.03526452,-0.03558385,-0.03032311,-0.08034751,-0.086804815,0.10274997} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.280864+00 2026-01-30 02:01:09.401296+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1327 google ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB 1 t 1330 Go Karts Mar Menor unknown Took my grandkids 7 & 9, they’d never driven before but the Marshalls were excellent in helping them. Great track and cars and very reasonable prices took my grandkids 7 & 9, they’d never driven before but the marshalls were excellent in helping them. great track and cars and very reasonable prices 5 2024-01-31 01:52:39.833374+00 en v5.1 P2.02 {P1.01} V+ I3 CR-N {} {"O1.02": "Great track and cars", "P2.02": "the Marshalls were excellent in helping them", "V1.01": "very reasonable prices"} {0.0017234694,0.04100595,0.052662503,0.045906413,-0.016583487,0.029910734,-0.028571075,0.06777566,-0.10267032,0.0050272504,0.013765114,0.055753242,0.03840032,0.056990605,-0.07110237,-0.008760125,0.082961805,-0.062639914,-0.08894968,-0.059914835,-0.07034769,-0.00048109872,0.0122430455,0.06860126,-0.051020976,0.062264968,-0.060649287,0.0065539195,0.008222419,-0.021199847,-0.0753192,-0.03658569,0.050342433,0.03473259,0.0078110103,0.02660058,0.13439849,0.01143895,-0.057341833,0.012404764,-0.02444859,0.0059283865,0.04107091,-0.004498275,-0.026062265,-0.011281056,0.061115935,-0.06737175,0.068707466,0.04374359,0.025900498,-0.019937653,0.07057909,-0.041778535,-0.01359605,0.052004285,-0.13303512,-0.005522052,-0.025851116,-0.023207748,-0.058841128,-0.015849926,-0.039091185,-0.01960532,-0.047680993,-0.0435881,-0.013799537,-0.07345696,0.016361691,-0.022610813,0.032979365,0.06096388,0.009749675,-0.002216359,0.018214513,0.02554735,0.06895257,-0.026425736,-0.02425277,-0.06375263,0.00037768262,-0.04849422,-0.01058484,0.006124376,0.014769424,-0.06658876,-0.023355069,0.07562237,-0.03032607,-0.002402506,0.062744856,-0.009478041,-0.005348282,-0.027961235,0.0069495705,0.045538377,-0.060396004,0.029217836,0.027419526,0.018243883,0.049242504,0.084896766,0.045963034,0.0018201208,-0.018566376,0.038483266,0.013506626,0.05376448,-0.017408997,-0.0029408853,0.07883227,-0.012931721,0.04783419,0.025245296,-0.10212473,-0.0010500515,-0.04631959,0.051575225,-0.008858864,0.03591179,-0.020185374,-0.0071655754,0.09208364,0.083853625,-0.086278684,-0.031860717,0.009647579,-6.4750596e-34,-0.10480801,0.025666034,0.024120942,0.038099997,-0.033799697,-0.03252067,-0.061942637,-0.049072947,-0.013397426,0.025170447,0.005894366,0.009719288,0.0313462,-0.0724119,0.039351914,-0.026928741,-0.15416873,-0.0033880072,-0.13092221,-0.0035675617,-0.054529194,0.039790288,-0.0019708418,-0.013389313,0.08466301,0.01860228,0.028825276,0.057662085,0.13377228,0.018096143,-0.082258485,0.0029522032,-0.05419192,0.048784934,-0.060051464,0.062660165,-0.039221313,-0.046283852,-0.04537936,-0.041476116,0.014634013,-0.05021094,-0.05409144,0.013598767,-0.036529254,0.03785498,0.04194106,-0.014391092,-0.018211935,0.0041337637,-0.12147725,-0.014173313,-0.082287155,-0.06596069,-0.050031606,-0.0020413802,0.0598038,0.036763158,-0.043010317,-0.033711314,0.05181483,-0.020662766,-0.01716822,-0.07518719,0.006881825,0.027934616,0.029735778,0.006569,0.020604081,-0.0021439348,0.012025221,-0.051085036,-0.07132324,-0.01708017,0.07230399,0.03700479,0.009282338,0.026391366,0.029496491,0.015874995,0.0016555157,0.08763757,0.0015259889,0.1144207,0.10785296,-0.019228578,-0.114813216,-0.043483,-0.05516463,-0.048853636,0.007592317,0.009288076,-0.051576972,0.03641009,-0.019687245,-2.5855918e-33,0.006159388,0.13498312,0.07138924,0.017888585,0.0421483,-0.003959894,-0.0208517,-0.06357441,0.049935065,-0.0042773457,-0.10876626,0.010944903,0.030309644,0.03598459,-0.004173841,-0.031489607,0.08704913,-0.014002183,0.013851276,-0.10338364,-0.010879335,0.09498985,-0.019898111,0.021841763,-0.04384965,0.014510245,-0.07390876,-0.015806347,-0.022042386,0.010723923,0.013240125,-0.009217912,0.05477276,-0.007937566,-0.0878522,0.0051987492,-0.042699542,0.1056115,-0.07382073,-0.0042467215,0.028756868,-0.06045172,0.07203691,0.0033878821,-0.030888917,0.008409781,0.0805143,-0.041032184,-0.025530988,0.056939986,-0.041893695,0.029444357,-0.075258456,-0.051644675,-0.059528116,-0.013269813,0.09030687,-0.057669196,0.035688918,-0.03459038,-0.06282089,0.040446725,-0.053838737,0.043475546,-0.0692096,-0.027501196,-0.045958683,-0.06173635,-0.13843761,0.014897802,-0.03633939,-0.035548173,-0.0015284176,0.032613885,-0.04271842,-0.08476375,0.052579857,0.08315874,0.044428498,0.05418313,-0.0007661066,-0.028117778,0.011220159,0.05857012,0.007374915,0.021896658,0.030434754,-0.04355815,-0.0019309128,0.071935885,0.09661796,0.047021,0.043181382,0.0014781839,-0.09766394,-2.640429e-08,0.028687548,0.119911954,-0.030919475,0.024157155,-0.073303826,-0.044125777,0.007943942,0.1607709,-0.122069374,0.07496646,0.022035541,0.03260517,-0.023446124,0.065816246,-0.015220752,-0.01597722,0.042350244,0.056520686,-0.022381414,-0.019903425,0.02031597,0.0076373178,0.0027053682,0.11712802,0.0016251964,-0.057457477,0.012328383,0.0012235448,0.0046999143,-0.07101042,-0.021094231,0.07510031,-0.033143383,-0.016776014,0.0048811794,-0.07392341,-0.054557215,0.0139801875,0.057126362,-0.013402432,-0.0008488112,0.04120191,-0.04825914,0.031538844,0.0733395,0.04259604,-0.07970221,-0.013742225,-0.045710757,0.018701516,-0.03261852,-0.0012399611,-0.07669,0.06229407,0.061607994,-0.002619387,-0.016917953,-0.07173626,-0.047762997,0.03611535,-0.01439013,-0.0032805617,-0.068332136,0.02097643} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:42.703326+00 2026-01-30 02:01:08.989034+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1470 google ChdDSUhNMG9nS0VJQ0FnSUR1elBxWnhRRRAB 1 t 1473 Go Karts Mar Menor unknown Good facility, helpful staff. Nice little cafe, good gokarts, and covered area to watch from. good facility, helpful staff. nice little cafe, good gokarts, and covered area to watch from. 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {E1.03,O2.03} V+ I2 CR-N {} {"P1.01": "Good facility, helpful staff. Nice little cafe, good gokarts, and covered area to watch from."} {0.09084749,-0.032761347,0.0045044264,0.03898537,-0.06923793,0.07324717,0.010505201,-0.03137141,-0.057776935,-0.027159873,0.05531839,-0.044382274,-0.059057366,0.07203449,0.013854703,-0.10883434,0.17361933,-0.091005675,0.082496844,-0.083455585,-0.0761468,-0.0043890537,0.048705466,-0.01993104,-0.06911729,0.047392774,-0.023226107,0.013348726,0.050918438,-0.003737766,-0.015747244,0.029578388,0.011044315,0.0033890337,-0.024196329,0.08885245,0.042061426,-0.0840763,0.0025074172,0.061291706,-0.015758568,0.011685593,0.011215455,-0.0010525195,0.0008737162,0.005759218,-0.013604493,-0.050554376,0.06468315,-0.050776023,0.020695094,-0.03350309,0.04577951,-0.033784308,-0.0046173953,-0.030536223,-0.009763619,-0.080974005,0.03576827,-0.028094595,0.1228728,-0.046122957,-0.0817737,0.029072966,0.0034012713,-0.023668014,-0.08095879,0.0627054,0.10182958,-0.13225819,-0.06979364,-0.02851424,0.066099785,0.0011291417,-0.07195197,0.04795618,-0.015831714,-0.012277855,0.03326932,-0.010560189,0.022930013,-0.0064904285,0.045811377,0.09347376,-0.09056954,-0.057531543,0.011097765,-0.019198526,0.03391448,0.006099993,0.08743684,0.12539452,-0.07255921,-0.039027475,-0.0457034,-0.0031770442,-0.02536708,-0.026388265,-0.03991777,0.05630391,-0.006177352,0.01747113,0.05573183,-0.041509725,-0.051360033,-0.047710683,-0.04077545,0.05747503,0.054207757,0.0341012,-0.02295413,0.046979256,-0.06094279,0.0010847931,-0.022375684,0.04610496,0.056881282,-0.057183288,-0.019427579,0.02091982,0.05094279,0.033001523,-0.005945298,0.020629793,0.038148314,-0.020405592,-0.028608186,-2.486081e-33,0.03493367,0.07374582,-0.03292962,0.027368661,0.14686324,0.024305152,-0.040342435,-0.03006982,-0.008539109,0.017099956,0.047913954,-0.002248519,-0.032632533,-0.04607248,-0.023606945,-0.042040102,-0.036732115,0.022817003,-0.059859026,-0.00486258,-0.028358534,-0.06219624,-0.011101119,0.01869724,0.09622666,0.019950952,0.01344437,-0.0036929203,0.08323989,0.027820915,-0.015240004,-0.0044479985,-0.028792493,0.0012469238,-0.008347095,-0.031309657,-0.05203307,-0.061345212,-0.03530906,-0.02406672,-0.05023803,0.057436462,-0.018332634,0.037940644,0.03609312,0.032587323,0.0552417,0.022791468,0.016216313,0.02177686,-0.09976824,-0.033680696,-0.055433244,0.06308507,-0.008810554,0.01286878,0.0307042,0.053040758,0.06303585,-0.040363625,0.101122774,0.09749109,-0.0514013,-0.03830774,0.008531337,-0.04876595,0.0681375,0.018061921,0.10891817,-0.044619586,-0.0006746137,-0.015603002,0.12790503,0.014137466,-0.09154743,0.051697623,-0.14978585,0.023120472,0.028996289,0.099288076,0.06349063,-0.008738261,-0.004084632,0.03697824,0.042834837,-0.0029589997,0.014206659,-0.04285296,-0.110286504,-0.011318445,0.00043149694,0.0679739,0.055771448,0.022435373,-0.05730569,1.7960836e-33,0.08520799,-0.026827445,0.008164345,-0.008599943,-0.018575948,-0.017314777,-0.034047063,-0.045208376,0.035504762,0.07638528,-0.12603462,0.009596119,0.020658977,0.019023428,-0.04344751,0.028902143,0.08033165,-0.013402187,-0.043564823,-0.06798049,-0.03409935,0.040200524,-0.031905193,0.017089685,0.029558469,0.09085688,-0.04888339,-0.009614893,-0.1292605,0.0055822576,-0.12630825,-0.072711416,-0.004933793,0.021206439,0.004559575,0.019784104,0.04657166,0.034364935,-0.05590909,0.03756699,0.07240439,-0.012159071,-0.030478105,0.067787886,-0.0019491806,0.0055823573,-0.09236673,0.023365406,-0.05751507,-0.09361578,-0.006485007,-0.02485434,-0.07282158,-0.051282175,-0.020135295,0.006105966,0.045709796,0.012082868,-0.04918279,-0.028640464,0.0021466133,-0.059041888,-0.038075384,0.11063696,0.044125732,0.0038173234,-0.012530722,-0.005656278,0.007584404,0.0045247497,-0.015529235,-0.022426777,0.030273976,-0.01490112,-0.057399858,0.032905784,0.09424388,-0.020201705,0.021541556,0.033922166,0.023464894,-0.035524175,-0.025802925,-0.02417784,0.114510305,-0.013757621,0.08007989,-0.033513702,-0.011914232,0.07734457,-0.04193111,0.06816861,-0.06907658,-0.014268237,0.042818304,-2.4010166e-08,0.0009816298,-0.043724775,-0.03182508,0.028568944,-0.015273526,-0.1369418,-0.0002918008,0.041146867,0.028036473,0.07583686,-0.014446515,-0.05156714,-0.046415422,0.06044378,0.084445775,-0.04284979,0.008043983,0.09297802,-0.09523921,0.032043003,0.019686202,0.024248624,0.026750905,0.020732697,0.018190688,-0.0043942924,0.006246814,0.018634984,0.006756369,-0.028088266,-0.028232396,0.013939748,-0.03259119,0.025803074,-0.012161422,0.024840284,-0.05819265,-0.05589976,0.01625288,0.00017094532,-0.13701105,-0.07953253,-0.06025365,0.031816345,0.0023861413,0.022403713,-0.009574444,0.057263434,0.00024652237,-0.05136587,0.004507969,-0.004670253,0.04871396,-0.03618227,0.016922189,0.012456032,0.057880823,-0.020672895,-0.010535015,0.08299985,-0.05993299,0.023219414,-0.04656616,0.025845544} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.157977+00 2026-01-30 02:01:09.458679+00 22c747a6-b913-4ae4-82bc-14b4195008b6 261 google ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE 1 t 264 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carlos in Gran Canaria was very helpful, didn't try hard sell on additional cover over what I had chosen, a very simple, easy car hire at a very good price for a very good car. carlos in gran canaria was very helpful, didn't try hard sell on additional cover over what i had chosen, a very simple, easy car hire at a very good price for a very good car. 5 2025-01-25 01:27:48.340693+00 en v5.1 P1.01 {} V+ I2 CR-N {Carlos} {"P1.01": "Carlos in Gran Canaria was very helpful, didn't try hard sell on additional cover over what I had ch", "V1.01": "a very simple, easy car hire at a very good price for a very good car"} {-0.0329268,0.08507148,0.06479648,0.04146883,-0.020703707,0.030994095,-0.011072382,0.091594495,-0.08108093,-0.05346191,0.015284678,0.033022873,0.025062064,0.03172393,-0.01963413,-0.048236113,0.050465986,-0.052919574,-0.014357165,-0.08095275,-0.070423715,-0.08404145,0.054524414,-0.052461393,-0.057873227,-0.07345679,0.0068194456,0.06292771,0.034220345,-0.042956147,-0.06187941,0.033891745,0.03046759,6.148687e-05,0.008507321,-0.0020713871,-0.041502807,0.0350894,-0.065317795,0.0044824737,-0.042652637,-0.014842033,-0.022825535,-0.010843005,-0.0018392085,-0.034950927,0.07226781,0.07815491,0.14767678,-0.056742754,0.02018961,-0.037273426,0.03250435,-0.091255814,-0.05680682,-0.018550389,-0.07805289,0.008691703,-0.024948828,0.033279337,0.08252428,-0.008281536,-0.098673485,-0.0042447615,-0.0097147785,-0.008176224,-0.07545607,0.02715188,-0.09192899,0.00033150407,0.07083792,-0.030099485,-0.04115514,0.020541254,-0.014762214,-0.013551752,0.05765209,0.0038150547,-0.0107568065,-0.0153369205,-0.029112842,-0.005461612,-0.065512136,0.010044345,-0.022677805,-0.017830806,0.04603582,0.0049166796,0.06002424,0.00033268103,0.12410328,0.011743926,-0.0472969,0.011123685,0.009810526,0.05255642,0.07145322,0.044459168,-0.00534582,0.041694015,0.08082365,-0.031174907,0.07970117,-0.051493876,-0.057957947,0.008591172,0.037362043,0.06097122,-0.033375945,-0.022225173,-0.052607905,-0.010127482,-0.03473865,0.028696466,-0.030239454,-0.017528648,0.055323195,0.040564027,0.01951022,-0.043383226,0.075088724,-0.033041853,-0.0012036624,-0.03909005,-0.0061083743,-0.009964946,-0.018286578,6.446514e-34,-0.011708786,0.09842778,-0.06825091,0.10608976,0.03928777,0.040694553,0.035941884,0.0013335291,-0.049486794,0.10453301,0.00060789194,0.031304114,-0.026299054,-0.041548137,-0.00014629718,0.082705624,-0.08971398,-0.01233234,-0.092751026,-0.031474125,-0.08020907,0.060577266,0.01928185,-0.034902576,0.05118848,0.022038933,0.024842372,-0.038850762,0.08999154,0.031069651,-0.04475852,0.035248872,-0.002540984,0.025195954,0.004614558,0.023787804,-0.13787346,-0.09118092,-0.047290824,0.01348621,-0.03846636,0.049336076,-0.02717077,-0.007419705,0.057146262,0.052472252,0.040070634,0.022913555,0.014965861,0.0124276485,-0.09947581,-0.014891689,-0.08697164,-0.01323468,-0.1251834,0.012428431,-0.0007055363,0.043397527,-0.024161391,-0.027151326,0.01772778,0.045545228,0.04018233,0.023889251,-0.043629587,-0.03269978,0.016233712,-0.006134426,-0.0082818465,0.0012384783,-0.0421748,0.025485441,-0.0156233115,0.027404817,-0.030919287,-0.01507465,0.009211053,-0.0017954689,0.06565583,0.009647781,-0.0016922936,-0.006352754,0.00822185,0.033590768,0.022805743,0.05303892,-0.0035253128,0.048546206,-0.0046137227,-0.027599325,-0.003062847,0.095348835,-0.023083912,-0.088489234,0.01620994,-2.577465e-33,0.010157645,-0.09116885,0.15494595,0.014536857,0.030315397,0.05674373,-0.08297589,-0.061655194,0.027124638,3.0633773e-06,-0.12264216,0.053180948,0.09480333,-0.034718912,-0.06406033,-0.023143383,-0.007549889,-0.12494937,-0.04724576,-0.0680465,-0.0047161537,0.10275236,-0.010810187,0.003110316,-0.044532944,-0.013381264,-0.05468719,0.07293559,-0.029672664,-0.023630576,-0.026636213,-0.070368655,-0.050442502,0.018363867,-0.055837322,0.040170997,0.11801808,0.06819422,-0.052449383,0.06920711,-0.007193612,-0.04871882,0.11701635,0.00071580685,-0.006563817,-0.06756635,-0.006206912,-0.10817751,0.04071176,0.0028783698,0.023484062,-0.039962992,-0.0085022235,0.051208667,-0.06619339,-0.04370536,0.04856579,-0.0039796312,-0.031362552,0.022539776,-0.024520144,0.056514453,-0.010338994,-0.03225983,-0.038035344,-0.08698838,0.02069104,-0.053081144,-0.08936494,-0.011491774,-0.0544012,-0.045860406,0.0070089255,0.019163545,-0.07705534,0.03244009,0.04961963,-0.051695608,0.044288177,-0.024203893,0.08168854,-0.075050004,-0.037987456,0.028846372,0.05958525,0.060389675,-0.051931415,-0.041483898,0.052032333,0.08190065,-0.019946918,0.0608751,-0.011640331,-0.015428105,-0.09996423,-3.6809872e-08,0.047853537,-0.0114545245,0.034877863,-0.027979566,-0.05405754,-0.06796265,-0.031199899,0.054834418,-0.045373898,0.051855184,-0.0046472126,0.008822437,0.0015077766,0.057482988,-0.043416858,-0.04984076,0.09515661,0.1424668,-0.046186704,-0.04494837,-0.03205976,0.052075382,-0.0020997312,0.012310768,0.044822346,0.012233169,-0.032486014,0.0061647543,0.0043537384,-0.02194119,-0.039600424,0.033172168,0.10585017,-0.04467652,0.059669357,0.047898974,-0.024316968,-0.026440114,-0.046537876,-0.039603792,0.076891385,0.0476765,-0.013509323,0.030640598,0.042157166,0.031325977,-0.026403747,-0.06751767,-0.044623606,0.0043838546,0.051252864,-0.09232544,0.029374244,0.07988991,-0.03663536,0.0082020275,-0.025680842,0.03642984,0.09604274,0.039124094,-0.051516682,-0.02985705,-0.075975426,0.114571795} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:10.715597+00 2026-01-25 01:27:50.732171+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1453 google ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE 1 t 1456 Go Karts Mar Menor unknown Great fun for the children and the adults enjoyed it too! Only criticism was that they don't give you long enough on the track! great fun for the children and the adults enjoyed it too! only criticism was that they don't give you long enough on the track! 4 2022-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V3.01": "Only criticism was that they don't give you long enough on the track!", "V4.03": "Great fun for the children and the adults enjoyed it too!"} {-0.013483431,0.08581027,0.038640693,0.009781691,-0.045002155,0.0423517,0.0015203964,-0.0130549995,-0.047060262,-0.001636835,-0.008885655,0.05889261,0.010996926,-0.022575175,-0.060955044,0.025406066,0.0903661,-0.01956543,0.011080286,-0.06350433,-0.013299566,0.0022621462,0.045684073,0.06263838,-0.10745819,0.03608375,-0.103426486,0.028351476,-0.0098065445,-0.02964557,-0.057734165,0.047665123,0.076534525,-0.035751462,-0.06721086,0.00488792,0.08786994,0.01593684,-0.038883317,0.010662433,0.0110599,0.008572761,0.05396746,-0.011467635,0.0024666982,0.028860804,-0.003943822,-0.13873954,0.069605626,0.042183142,0.100751296,-0.052280873,0.13972877,-0.066946186,-0.088845335,0.052522916,-0.008239139,-0.011435323,-0.00070905546,0.010108835,-0.030280262,-0.032170944,-0.045236032,0.016250156,0.028743591,-0.123450994,-0.06103115,-0.012312832,0.03698976,0.046437837,-0.031824492,0.010298835,0.11151275,0.039112423,-0.009769886,0.019650526,-0.058894873,-0.050335478,-0.008379343,-0.05739205,0.025960585,-0.04390287,-0.021274876,-0.05180177,0.010599775,-0.08587465,0.09543625,-0.012997913,-0.04040056,-0.019381125,0.041213457,0.06387681,-0.0070343968,0.0012771282,0.0094135,-0.030917887,-0.06884092,-0.005822841,-0.04148114,0.006521104,0.018436473,0.09040571,0.013671466,0.0379997,-0.023713725,-0.035075184,-0.019073036,0.041473757,-0.011015161,-0.04858543,0.01951514,0.0028284313,0.098568805,0.062161118,-0.024520112,-0.004223487,0.027858278,0.055891704,-0.03635399,-0.00513465,0.084154785,0.0062194844,-0.030195797,0.06544484,-0.041573238,-0.053376675,0.076936744,-1.9615636e-33,-0.066677965,0.036610097,0.01538298,-0.000645406,0.06849593,-0.005448118,-0.07638217,-0.039493285,-0.13595608,0.051600035,0.0077404045,-0.01755011,-0.04512569,-0.014913719,0.092319585,0.008796017,-0.10402498,0.019575344,-0.019365923,0.08377938,-0.027843054,0.009277958,-0.005799844,-0.025837036,0.019811774,0.036636908,0.017079605,-0.03187316,0.100808315,0.002564516,-0.082453124,-0.031795662,-0.04040226,-0.0146709,-0.0014303989,-0.03413446,0.05014962,-0.007848455,-0.044598818,0.03496858,0.06302189,-0.0674894,0.0027709135,0.05345585,-0.07590997,0.0555199,0.02714552,0.008398563,-0.03987012,0.074302725,-0.060164474,-0.039065026,-0.011276378,0.00314422,0.032750245,0.014958953,0.03302153,-0.004697356,-0.038362358,-0.03416894,0.060809255,0.064103134,0.0031136358,-0.087949984,-0.060398955,0.06209421,-8.942023e-05,0.00010333379,0.06913782,-0.049037546,-0.05222777,-0.001728293,-0.032113556,-0.035871614,0.06194212,-0.01625153,-0.06521226,-0.03833876,-0.00489284,-0.10418069,0.09262846,-0.019086184,-0.026677437,-0.048213188,0.048040573,-0.08453203,-0.01931088,-0.13024536,0.008206312,0.06845556,-0.03959507,-0.00095496594,0.026907297,0.08358248,-0.0020263635,-3.7145306e-36,0.025863718,0.045808334,-0.020554457,-0.038073983,0.015634583,-0.015612592,-0.047478713,0.0150647275,0.07263802,0.056477107,-0.019383827,-0.011507285,-0.06338694,-0.0015031887,-0.040850487,-0.111963876,0.012205887,0.025702165,0.06734681,-0.11810161,0.032193877,0.0781698,-0.023941068,-0.05839184,0.010844358,0.03881125,0.041777343,-0.035432342,0.022125395,-0.0047916207,0.016981753,0.03694437,0.03265891,-0.058059182,0.047451016,0.012394959,-0.035250172,0.04281022,-0.06612168,-0.031800695,-0.018558577,-0.00934018,-0.022128945,-0.023418007,-0.008264416,0.0062299203,0.06445127,0.06922831,-0.10623748,0.060326546,-0.042934854,-0.02609717,-0.024552077,-0.07661539,-0.057882108,-0.07883044,0.044155467,-0.07061386,0.025456471,0.0024889351,-0.06920135,0.030405821,-0.091614395,-0.03480865,0.060311865,-0.040645916,0.0042291163,-0.031129684,-0.021748133,0.075086825,-0.09902771,0.051282488,-0.041561764,0.059411567,0.018626543,-0.019063862,0.041847896,0.012228884,-0.002585167,0.06243434,0.0073313806,0.016752787,0.019121617,-0.019634366,0.015298506,0.028914213,0.02567791,0.043933775,-0.08578694,0.120583154,0.16616483,0.051775567,0.015794676,-0.016112512,0.001243261,-2.4477638e-08,0.0067918845,0.112692945,-0.014338004,-0.0062573445,0.07690311,-0.038387496,0.03731987,0.010768983,-0.056043323,0.05764154,0.015060642,0.022997163,0.03621127,0.029075984,0.020168476,-0.013358392,0.067397974,0.07336068,-0.011182295,0.047538955,0.05340126,0.049516164,-0.08729754,-0.0024853998,-0.05750298,-0.07212416,0.064839296,-0.012738936,-0.06470888,-0.08952855,0.053338777,0.030979648,-0.04044036,0.10930381,-0.044907957,-0.065340586,-0.027319796,0.074492775,0.046609044,-0.025589742,-0.093148954,-0.008457872,-0.016793892,-0.0076566157,-0.033014152,0.05609301,-0.028921826,-0.0033941886,-0.06479926,0.046083793,-0.042663567,-0.07546953,-0.05752685,0.054004233,0.095651485,0.055496536,-0.031585775,0.029818859,-0.07299272,0.042999398,0.019415792,0.027724748,-0.042142175,0.089396924} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.317339+00 2026-01-30 02:01:09.408333+00 22c747a6-b913-4ae4-82bc-14b4195008b6 263 google ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE 1 t 266 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Everything went fast and without any problems. Really recommend that car rental company everything went fast and without any problems. really recommend that car rental company 5 2025-01-25 01:27:48.340699+00 en v5.1 J1.01 {} V+ I3 CR-N {} {"J1.01": "Everything went fast and without any problems.", "R1.04": "Really recommend that car rental company."} {0.06368743,-0.0055977977,0.10715992,0.040559724,-0.017506208,-0.052864723,-0.13075936,-0.060711313,-0.08363901,-0.061222572,0.11278519,0.12785931,-0.008075624,0.03800665,-0.022810707,-0.025864208,0.043120347,-0.041143693,-0.060226813,-0.04450786,-0.12614824,-0.08408599,-0.058925387,-0.024267524,0.06767377,0.094266884,-0.09647329,0.054359198,0.03519819,-0.052994255,-0.073114306,-0.015000974,0.0026439843,-0.008848773,0.034018155,0.033689797,-0.008673009,-0.085954145,0.023397716,-0.037221067,0.030378774,0.020867608,-0.02776324,-0.0066061267,0.023736011,0.050208483,0.07581198,0.021870906,0.079237595,-0.030014923,-0.03500247,-0.00217773,-0.029866472,-0.062517844,-0.07001393,0.034336224,0.016975349,0.052782517,0.03637329,-0.0700417,0.039180722,-0.048137933,-0.007697049,0.04576482,0.07010647,-0.015365076,0.0024172873,-0.034383576,0.027172383,0.040358476,-0.018335871,0.030418864,0.0040854774,0.011149774,0.015235222,0.021921623,0.055253793,0.011266202,0.04065032,-0.089465424,-0.033971384,-0.08420048,-0.05596126,-0.03723544,0.028423782,-0.07331091,0.027808165,0.009911175,-0.013023602,0.005798512,0.10460735,0.061706074,0.07790719,-0.030737732,0.035147805,0.04657223,0.024490533,-0.05851947,0.0075795436,0.014670416,0.03260668,0.117621556,-0.029137589,-0.023175761,0.016852748,0.012388377,0.10693262,0.05715531,-0.08412336,0.029821236,0.046757817,0.045035467,0.07696437,-0.013943976,-0.06292705,0.022846298,-0.075737484,0.014753153,0.012409728,0.054638095,-0.0124554485,0.016330743,0.021255005,-0.028362472,-0.018442828,0.070067644,0.11095413,-1.8758054e-33,-0.014647988,-0.005822728,-0.036743574,0.045937363,-0.043708384,-0.0054071066,-0.023077687,0.056463726,0.021380372,0.054007586,0.026740473,-0.035911556,-0.039416496,-0.056141928,-0.013209961,0.01890401,0.009156688,0.0016196999,-0.050083246,0.014857591,0.009253711,-0.06873918,-0.012912182,0.0055210367,0.11681655,0.026888445,0.026064174,0.021941593,0.0109655205,0.020178936,-0.06446405,0.01935439,-0.015414884,0.01111363,0.005147923,0.03028539,-0.029393977,-0.023088234,-0.005150532,0.010618002,-0.023393773,-0.0042334343,-0.109310806,-0.012490085,-0.06473552,0.0026598063,-0.026583197,0.050934147,-0.015150598,0.06764541,-0.11478392,-0.037775617,-0.11869537,0.009247534,-0.06672384,0.106073014,0.06120448,-0.005090392,-0.047556333,0.022958238,0.044044815,0.05706014,-0.024365317,-0.10441062,-0.0350469,-0.08714622,-0.01654598,0.023239989,0.013771148,0.035994723,0.05280221,-0.03483987,0.04999601,-0.0500237,0.0809249,-0.002837717,-0.09747701,-0.04413618,-0.07464683,-0.023891632,0.06444842,0.038132124,0.062298764,-0.028918048,0.05874066,0.020935606,0.053040426,-0.017474601,-0.008595935,0.026301635,0.030162172,0.07721033,0.05407417,-0.04062809,0.030562345,1.1521584e-34,0.0064746807,-0.025524076,0.05830236,0.048203938,-4.1619674e-05,0.05404352,-0.12543339,0.07576828,-0.009324082,0.051510453,-0.021185337,-0.0050340565,-0.009366338,-0.044252265,-0.010832707,0.04388929,0.12963356,-0.11495987,0.06376065,-0.033299595,0.030691057,0.05725365,0.0109388605,0.031960446,-0.046560373,0.026523247,-0.039181545,0.037313204,-0.02228976,-9.431717e-05,0.0059905117,0.012822724,-0.060919773,0.09411367,0.014214231,0.068621464,-0.01033913,0.0271844,-0.047382317,-0.0846604,0.0046526394,-0.06585358,-0.029419947,-0.037077438,0.022800475,-0.062003665,0.023684725,-0.08459773,0.02249325,0.12906232,0.050546326,-0.02700499,-0.034955468,0.06276059,0.027609628,0.00051243184,0.079053394,-0.045947436,-0.073394135,0.0338403,-0.014266936,0.009059136,0.05286431,-0.056628667,0.038141143,-0.07172562,0.0657989,-0.1513596,0.09387215,-0.034245923,0.0027184843,0.030190527,0.00052762195,0.025117401,-0.06734959,-0.012472155,0.036507417,0.019922744,-0.057103965,-0.046257496,0.010571053,0.025150677,0.014982055,0.010935678,-0.040616028,-0.034727417,-0.00924072,-0.10488882,0.018719427,0.05891712,0.032990057,0.04514171,-0.010780732,0.021105554,-0.06492445,-2.0479641e-08,-0.0071118423,0.019445913,-0.026617086,0.022617124,0.0449893,-0.07337974,0.022452815,0.12433127,-0.04455527,-0.042947073,0.007067163,-0.0147219235,0.021322053,0.007208216,-0.037315276,-0.10780617,0.036666814,0.009451446,-0.048133485,-0.07379511,-0.012464088,0.06348468,-0.04091706,0.022942098,0.022079809,-0.002003804,0.043379303,0.029029131,0.043183558,-0.10115402,-0.08679692,-0.017977372,0.033976868,-0.059153162,-0.02066922,-0.021683648,0.02924026,0.004755146,0.04212966,-0.013709311,0.020302536,0.031562466,-0.016480388,-0.039321944,-0.023108358,-0.030674726,-0.045374017,-0.048192263,0.040468313,-0.029013343,0.023657246,0.009287728,-0.0916807,0.112853706,0.024032988,-0.080205,-0.059544425,-0.056371607,0.02994141,0.01742773,-0.070811175,-0.050120037,-0.053730845,0.032275416} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:28.592121+00 2026-01-25 01:27:50.736326+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 273 google ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE 1 t 276 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very good service from Carmen and Francisco. very good service from carmen and francisco. 5 2025-01-25 01:27:48.340758+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Very good service from Carmen and Francisco."} {-0.08130696,-0.0490478,0.00374735,0.016966242,-0.08921232,0.07640608,0.029298319,0.0016262075,-0.01837615,-0.0071838517,0.0010340151,0.10117268,0.025316145,0.044194415,0.0255213,-0.003245039,0.13903232,-0.08931734,0.048151232,0.010335769,-0.057146013,-0.043657657,0.004942428,0.06406019,-0.024209496,-0.02456361,-0.04074109,0.010730316,-0.034423716,-0.016916359,-0.040496692,0.044706672,0.004855172,0.021620428,-0.011604367,0.029012155,0.06035722,-0.06726619,-0.045883205,0.09160806,-0.06827197,-0.031384163,-0.043259926,0.0223365,0.014734659,-0.09323212,0.07020215,0.08793837,0.1130247,-0.01046317,-0.040322483,-0.0847661,0.07903201,-0.018467408,-0.028834134,0.013314351,-0.006903259,-0.04761884,-0.014705068,0.03278251,0.045711167,0.012690492,-0.13060576,0.036636967,0.008082807,-0.034537464,-0.06527195,0.079873025,0.004518126,-0.09119733,-0.06304165,0.028792966,0.0196582,0.06990095,-0.031610694,0.051068425,0.05360682,-0.053318787,-0.063491546,-0.033012915,-0.011565216,-0.10562328,0.03199212,0.0015817768,-0.0076911435,-0.015515305,0.032971308,-0.098794736,-0.02715204,-0.035386246,-0.020096311,0.05900741,-0.022735303,-0.061633486,-0.048285946,-0.060359355,0.0053326543,-0.05322675,-0.028638564,0.10393383,0.008349038,0.09430278,0.076507956,-0.06288554,-0.03585892,0.019356484,-0.015017488,0.09599598,-0.02825842,0.009816056,-0.0126737505,0.02449012,-0.05028092,0.060130812,-0.008655101,0.13823342,0.03980531,0.011641328,0.009349719,-0.0015422973,0.049276486,0.043773703,-0.048617963,0.030099057,-0.07042473,-0.001627715,0.12866461,-4.4237056e-33,-0.009962576,0.10079905,0.07189734,0.020475784,0.03574356,0.059523255,-0.113980874,-0.013657243,-0.058647927,0.09786433,-0.03556869,0.078583464,0.056413013,0.014505838,0.008282736,0.025377601,-0.07521238,0.007447405,0.025723973,0.058304586,-0.017934449,0.023588056,-0.03089035,0.00058169017,0.025702259,0.035436876,-0.007100219,-0.010928418,0.1463732,0.024163906,-0.015453758,0.006493908,-0.005950772,-0.0045971596,-0.017435472,0.019626338,-0.049295675,-0.08236363,-0.013305812,0.022172298,0.0032973103,0.059693024,-0.033428982,0.058870602,-0.04460377,0.023083467,0.033981465,0.023168791,0.068661645,-0.026860008,-0.063231535,-0.009345984,-0.072522126,0.07665956,0.0068372823,0.060116637,0.0067299926,-0.003018307,0.018154224,-0.051238,0.10384581,-0.012005041,0.013244391,-0.031134617,-0.014524051,-0.05853464,0.043133326,-0.008783305,0.088633284,0.002222052,-0.07892407,0.009754992,0.1456905,-0.005688616,-0.013434698,0.018965956,-0.052608874,-0.038802214,0.02692614,0.07034929,0.033035956,-0.012169352,0.03859668,0.005873617,0.06491623,0.045631748,0.034568768,-0.0668222,-0.08902342,0.089900255,-0.08345389,0.07329014,0.03772385,-0.0034204442,0.013352962,2.0553293e-33,0.0045065894,-0.016648848,0.06830244,0.069527805,0.03641198,-0.018199483,-0.059886135,0.011217928,-0.013963302,0.04129655,-0.05342366,-0.03749292,0.028725505,-0.0358326,0.02555069,-0.026948184,0.03467816,-0.02735256,-0.05162621,-0.007020612,-0.031327773,0.07866958,-0.011934125,-0.00224797,-0.00016118157,0.016821906,-0.031311736,-0.0036688321,-0.07240763,-0.011074116,-0.057849623,-0.0007282187,-0.02940103,-0.05016837,-0.108556926,0.14097002,-0.047313493,0.08091521,0.025336439,0.06266811,-0.011974939,-0.059590295,-0.03936042,0.0063692285,-0.05091483,-0.0021169346,-0.034328427,-0.031048374,-0.040814828,-0.040796123,-0.03386262,-0.06800784,-0.12514691,-0.0179247,-0.003966862,-0.04459104,0.010086873,-0.015365691,-0.031205555,0.00141407,-0.041231547,0.047503695,-0.03817507,0.029291565,0.07307108,-0.073391594,0.046259616,-0.040153686,-0.027256526,0.02407214,0.034308195,0.014783989,-0.009836733,0.114923425,-0.06910502,-0.04228584,-0.047173195,-0.0688551,-0.07374493,-0.0196658,-0.0017661033,-0.046397924,-0.012870247,0.01415792,0.06102447,0.062576346,0.04479656,-0.02681637,0.032252464,0.0486326,0.01996212,0.007279659,-0.07976226,-0.11311074,-0.029353403,-1.7396028e-08,0.021516735,-0.012738209,-0.010029456,0.017911956,-0.09438279,-0.043597337,0.038359065,0.039386682,-0.035925124,0.058123276,0.021989696,0.07663174,-0.00012399454,0.046916787,0.07180182,-0.08431549,0.11940248,0.020437345,-0.061707366,0.029160848,0.005999332,0.08063577,0.05690669,-0.046245128,0.050087385,0.035170525,-0.018287962,0.0055814805,0.051858887,-0.038434636,0.03281806,-0.005104311,-0.046162937,-0.034224376,0.02489554,0.013327245,-0.03313978,-0.031750426,-0.04444575,-0.068029635,0.005259771,0.021792792,-0.06215091,0.042304456,0.030693157,-0.031223204,0.035916004,-0.012095114,0.030328214,-0.014694706,-0.027928263,-0.04246956,-0.0063725417,-0.0009239604,0.025748938,-0.033558283,0.0027049475,-0.0657341,0.016639998,0.12295434,-0.068696655,-0.07221552,-0.07928814,-0.028692394} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:40.219004+00 2026-01-25 01:27:50.769967+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1332 google ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB 1 t 1335 Go Karts Mar Menor unknown Such a fun experience for kids (and adults too!) We went on a Wednesday as people here have suggested it is good value and I can confirm we got double the minutes for the same price. Staff are friendly and helpful- we speak limited Spanish and we managed to easily converse. We will definitely be returning before our holiday is over! such a fun experience for kids (and adults too!) we went on a wednesday as people here have suggested it is good value and i can confirm we got double the minutes for the same price. staff are friendly and helpful- we speak limited spanish and we managed to easily converse. we will definitely be returning before our holiday is over! 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {} V+ I3 CR-N {} {"P1.01": "Staff are friendly and helpful- we speak limited Spanish and we managed to easily converse", "V4.01": "We went on a Wednesday as people here have suggested it is good value and I can confirm we got doubl"} {0.03451483,0.009984129,0.07673243,-0.00444779,-0.069419876,0.026086068,0.044125084,-0.028141536,0.09583781,-0.08588968,-0.015550686,0.014064883,-0.07967608,0.06735453,0.10769701,-0.053918794,0.032931373,-0.094241075,-0.008356717,-0.052926,-0.038416427,0.0044827154,0.020395687,0.076024644,0.041826576,0.014634915,-0.026205534,-0.049992323,0.014334986,-0.0480974,-0.06133346,0.056902055,0.053545155,-0.025757972,-0.0126462495,0.036050756,0.09950559,-0.04928883,-0.058524996,0.09199855,-0.10481719,-0.017195862,-0.010402409,-0.013460944,-0.03748779,-0.027240887,0.03241677,0.039739348,0.113857344,0.07663655,0.07181406,-0.027437285,0.108253874,-0.015454155,-0.050233807,0.13068599,-0.010388793,-0.020408321,0.08228646,0.09132882,-0.103216164,-0.020552369,-0.05082413,0.062225875,-0.045238964,-0.10529285,-0.05678654,-0.07299686,-0.019305345,-0.03128568,-0.06303564,0.041598827,0.14142577,0.07013504,0.017884592,0.019858936,-0.008306539,-0.105128735,0.045705903,-0.0017991879,0.022332612,-0.06633856,0.0003668423,0.0047540544,0.038599245,-0.052236576,0.042231444,0.11153406,0.0077201617,0.004793192,0.030386448,0.10085116,-0.029133417,0.021106523,-0.029165357,0.019856619,-0.050622255,0.05477522,-0.064231254,0.016494,0.034619488,0.08718142,0.021335531,-0.075974815,-0.048329826,-0.028411098,-0.01672152,0.038776275,-0.0010598603,-0.028470537,-0.031584036,0.01953732,0.024145484,-0.01968137,-0.059739362,0.048768822,0.079864584,-0.07115327,0.003857686,-0.042781167,0.06209589,0.047309205,0.009991048,-0.004567648,-0.037565436,0.011761938,0.06668688,-2.6833053e-34,-0.032939535,0.09204248,-0.017608171,0.010827202,0.053239007,-0.025579771,-0.016963892,0.0018581058,-0.024058323,-0.0090796,-0.030484248,-0.014438694,0.01793711,-0.04980493,-0.020364951,0.0030500765,-0.046897974,0.034745716,-0.040123142,0.0044881953,0.018666817,-0.017059898,0.007877372,0.056113843,0.027287047,0.04962943,0.027381172,-0.041043423,0.18404673,-0.014081492,-0.09208463,-0.022249244,-0.004530536,-0.012136548,0.034227245,-0.0017833571,0.081730515,-0.03966412,-0.039487798,0.016828565,-0.015210128,-0.009804476,-0.0053440374,-0.050228667,0.019781372,-0.008427923,0.019345317,0.007221009,-0.032687318,-0.030402625,-0.095415205,0.01979123,-0.06480965,0.03374532,-0.024060389,0.0017197682,0.03700072,0.0026026757,-0.03114381,-0.028371125,0.06594914,0.027607255,0.02847159,-0.08119505,-0.047884226,0.011391395,0.0012522285,0.034161355,0.0970368,-0.056898173,0.03274784,0.06885192,0.0063071484,-0.076227926,-0.0191576,0.071702145,-0.018573288,-0.037358046,0.10439753,0.0808197,0.04862897,-0.016083317,0.06486558,-0.0030382182,0.0917132,-0.004712331,0.042648192,-0.04841508,-0.073811255,0.07289784,-0.0155406315,0.032559086,0.03937094,0.02538692,0.074329615,-1.1225334e-33,0.0202013,0.004064271,-0.02333237,0.02865943,-0.025632732,-0.019778851,-0.00040390354,0.08984858,-0.023421466,-0.0033895487,-0.0673094,0.016211515,-0.010423286,-0.02753883,-0.004644156,-0.05385784,0.0959914,-0.022943947,0.10367724,-0.0336972,0.012246545,0.089776926,-0.09079657,0.016498452,0.00055522216,0.0034195436,-0.04069692,-0.039304644,-0.06914275,0.02763469,-0.04191619,-0.05522684,0.0005162522,-0.016496416,-0.043739647,0.017054867,0.024773095,0.038939595,-0.008180289,0.07550885,0.034236245,-0.056017987,-0.055003963,-0.00960079,-0.010337422,0.033167593,-0.030615197,-0.061155315,-0.08804824,-0.01796595,0.00096306653,-0.050554883,-0.08458181,-0.064033866,-0.07439145,-0.042158864,-0.0010923317,-0.112998985,0.01221137,-0.0049633016,-0.044139653,0.023984896,-0.041727994,-0.01447961,0.055412985,-0.024226096,-0.020479128,0.004783313,-0.0056424304,-0.0014745984,-0.01904431,-0.020963775,-0.050440323,0.0036725844,-0.05433777,0.030864486,0.06040733,-0.042869408,-0.019401245,0.0814676,0.013243824,0.034345943,-0.025040796,-0.05565531,0.016106406,0.03463213,-0.0025272865,0.0442533,-0.039316673,0.09602948,0.06316723,0.06521579,-0.040947095,-0.009694491,0.003339699,-3.682592e-08,0.040104754,-0.0012881424,0.0027728265,-0.024249597,0.054761324,-0.13996354,-0.0072081373,0.014872466,0.016259948,0.046520434,-0.016812151,-0.024889886,-0.0032354007,-0.0121089285,0.04135893,0.01478219,0.086544566,0.01682618,-0.005700325,0.01077824,0.06576087,0.0710752,-0.040955614,0.037040766,-0.034885954,0.04200293,-0.026493808,0.06565478,-0.02185473,-0.082903445,-0.057541724,0.032792542,-0.10940091,-0.0042368886,0.0027257744,-0.106119744,-0.10955704,-0.047994725,0.031833075,-0.018105656,0.0101066185,-0.08261561,-0.09387782,-0.038862713,0.029327957,0.040448733,-0.09648153,-0.034455623,0.006365107,0.01813036,-0.07793767,-0.02740801,0.049609758,0.0069740713,0.11102567,-0.028358476,-0.007732244,-0.03001011,0.016267233,0.049239744,-0.0024355764,-0.003847976,-0.15642276,0.012215716} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.676586+00 2026-01-30 02:01:09.002798+00 22c747a6-b913-4ae4-82bc-14b4195008b6 264 google ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB 1 t 267 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Everything went smoothly.\nCar was in excellent shape and the shuttle bus is very convenient. everything went smoothly. car was in excellent shape and the shuttle bus is very convenient. 5 2025-01-25 01:27:48.340702+00 en v5.1 J1.01 {} V+ I2 CR-N {} {"J1.01": "Everything went smoothly.", "O2.01": "Car was in excellent shape and the shuttle bus is very convenient."} {0.0098742535,0.014661769,0.10194617,0.020764343,-0.05787422,-0.006304581,-0.0019356351,0.00022830095,-0.11244038,-0.02490599,0.024817817,0.1326951,0.03682104,-0.02877976,0.0028413043,-0.048891198,0.09455058,-0.089284666,-0.09246869,-0.036722135,-0.06834354,-0.04700599,-0.06999719,-0.026211038,-0.04218607,0.09503308,-0.019327836,0.021361433,0.021668823,-0.059683736,-0.07752048,0.022595726,-0.009464488,-0.0027812202,0.0009733909,0.05009458,0.060084406,-0.11893816,0.03631308,-0.067325324,0.009075524,-0.012907272,-0.0013114803,0.06982248,0.032663252,-0.028505754,0.05762564,-0.10081819,0.08862739,-0.016436942,0.010650239,-0.045347292,0.054207645,-0.11174596,-0.069633484,0.074835345,-0.047571767,-0.032343574,0.017379284,-0.081711836,-0.019790469,-0.040027563,0.04021421,0.048005477,0.007933458,-0.05051645,-0.042617716,-0.079685144,0.13483793,-0.027753785,-0.0016220834,0.05200528,-0.014926327,-0.049296483,-0.031853613,-0.0036823875,0.052618627,0.018875943,-0.0031698174,-0.0271783,0.009977882,-0.030886598,-0.06312461,0.0022236155,-0.027251422,-0.08139955,-0.0017747247,-0.0043491,-0.041055083,0.0740408,0.11071378,0.05401271,0.017838938,-0.0117598595,-0.022602165,0.03869358,-0.0817025,-0.019786024,0.07270389,0.04127038,0.013083339,0.17116375,0.05608543,-0.0001660339,-0.057315458,0.0025390957,0.012522027,0.022949116,-0.013389586,-0.029008934,0.0062625553,-0.008246088,0.09517413,0.044058982,-0.08120723,0.018293966,-0.06613197,-0.021177595,-0.006172762,0.012312467,-0.008843974,-0.042913217,0.08562424,0.03695219,-0.10006561,0.028212966,0.10897724,-1.6720937e-33,-0.035108097,-0.022901345,0.033168275,0.108578816,-0.014303315,0.02439809,-0.09170002,-0.038954955,-0.007884691,-0.024090063,-0.040182382,0.00958251,-0.0038381265,-0.071008205,-0.0021783002,0.0067869,-0.10395893,0.052053798,-0.045171577,0.065362185,0.0035385713,-0.014095236,0.012120218,-0.00634118,0.10618833,0.06202556,0.024628336,0.037586592,0.018711,0.019619342,-0.13073903,0.03011795,-0.00779978,0.032645315,0.01921221,0.026615854,-0.035854828,-0.037398107,-0.038617916,0.0011617123,-0.05357825,-0.007025945,-0.06413532,0.053065173,-0.018556466,0.044392582,-0.012466427,0.0070740897,0.026738236,0.007980835,-0.10015499,0.019242171,0.025864378,-0.04119075,-0.0512968,0.03840634,0.0626007,0.049436357,-0.008209499,0.0610266,0.036921434,0.053710844,-0.015790548,-0.11826212,0.027204176,0.044862144,-0.006809734,0.021780783,0.032424282,0.023821477,0.016026676,0.013892215,-0.011470353,0.0047933543,0.07095546,0.06851866,-0.08335107,-0.054756135,-0.06239763,0.0212923,0.052924428,0.063002236,0.025181426,-0.008712423,0.10801533,-0.002762151,0.028936714,-0.059106752,-0.0038921132,0.053975746,-0.015520602,0.076256596,0.05982877,0.07042041,0.029374504,3.7312374e-34,0.042743552,0.038367156,-0.029787224,0.05082432,-0.05212779,0.005752582,-0.04828592,0.015787415,-0.00018866848,0.07169882,0.013127704,0.020289307,0.06783107,-7.3472205e-05,-0.055781696,0.014753212,0.11497047,-0.04785982,-0.0054413276,0.008716989,0.055349138,0.039484303,-0.05034412,-0.019737976,-0.054983035,0.05872995,-0.075931065,0.03312727,-0.05601105,-0.019897187,0.06787547,0.027590493,-0.010581078,0.0026500386,0.003932718,0.01580728,0.009990149,0.024967527,0.049801994,-0.08115297,-0.03191962,-0.07135421,-0.01715334,0.045973625,0.056675505,-0.012676779,0.063451,-0.08207086,-0.027459767,0.026471829,0.0004197232,-0.0312276,-0.05081668,-0.007869003,0.04337502,-0.026262121,0.10477624,-0.04859469,-0.0059325676,-0.049062483,-0.060797893,-0.04773149,0.031242076,-0.05623095,-0.021240398,-0.07836236,0.09435638,-0.1034902,-0.046757493,-0.04164526,-0.03945546,-0.047427297,-0.0505292,0.09675451,0.037118267,0.02184445,0.07360936,-0.033942062,0.00047173756,0.01878541,-0.020549411,0.023624782,-0.0047444436,-0.03782894,-0.009885421,0.07066396,-0.029976686,-0.11812798,-0.018604945,0.06360518,0.01819632,0.00021672249,0.040054344,-0.003256685,-0.03318776,-2.0221782e-08,0.0105355205,0.03353949,-0.009956457,-0.0068934895,-0.028725525,-0.060127296,-0.010576106,0.09154908,-0.05223745,0.0021232981,-0.030614465,-0.024398707,-0.055136837,0.08791815,0.026241338,0.03664426,0.057958413,0.09103153,-0.038139198,-0.05218359,-0.018042754,0.036662962,-0.025631329,0.052771647,0.014164249,0.02826701,0.023254355,-0.03648176,0.030305255,-0.11963792,-0.051470477,-0.055878263,-0.002160914,0.0082773315,-0.061533786,-0.023032932,-0.013718259,0.026262756,0.08704921,-0.019666292,0.008931527,0.026168296,-0.04370811,-0.0015789055,0.0033140988,0.022118887,-0.019619057,-0.016572043,-0.11582159,0.009396304,0.025720192,-0.008727963,-0.06756993,0.08599427,0.052398387,-0.03590775,-0.08135866,-0.022417936,0.02996128,0.06662928,-0.072349325,0.03157166,-0.11313376,0.035865277} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:35.858735+00 2026-01-25 01:27:50.738905+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 265 google ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB 1 t 268 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The whole experience was painless from getting picked up by Antonio who was very nice to checking in with Carlos who was also very very good so very happy the whole experience was painless from getting picked up by antonio who was very nice to checking in with carlos who was also very very good so very happy 5 2025-01-25 01:27:48.34071+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "The whole experience was painless from getting picked up by Antonio who was very nice to checking in"} {-0.022681836,0.08438103,-0.023258863,0.05403768,-0.0045082406,0.0036178126,0.037421644,0.012051781,0.049061567,-0.05767179,0.061141215,-0.019546282,0.04283477,0.057528295,0.004758241,-0.029512241,0.08213886,-0.029573103,-0.004604463,-0.0005833676,-0.011716561,-0.04804487,-0.054701325,-0.0031695003,-0.08045971,-0.0040010703,0.065659754,0.038018078,0.012419234,-0.098589495,0.019415356,0.054518428,0.04170265,-0.02164179,-0.06885846,0.0117381355,0.014190454,-0.060294136,0.011985278,-0.050334718,0.017862927,-0.027255975,0.024857363,0.032651164,-0.01626331,-0.13449785,0.09676013,-0.0466265,0.08449462,-0.014252946,-0.00023477923,-0.011946601,0.07815284,-0.034063287,-0.04319022,0.08590112,0.029336795,-0.026438538,-0.017866205,-0.0044028144,0.049049962,0.049377464,-0.028886737,0.00978367,-0.025481764,-0.05337,-0.059048634,-0.042091366,0.045965187,-0.015247991,-0.05641128,-0.042194787,0.06517687,-0.077259526,0.035822842,0.07668187,-0.018593473,-0.07006252,-0.047126908,-0.055967413,-0.018351775,-0.0975597,-0.10939839,0.013309789,-0.031439897,-0.025431527,0.046614733,-0.025365505,0.038044475,0.028565245,0.06716174,0.07835309,-0.045906607,-0.008417398,0.05273459,0.0064506284,-0.031159153,0.07035943,-0.07462338,0.04848314,0.054966364,0.06863743,0.017042827,0.05411182,-0.039348736,0.04843845,-0.0032754613,-0.033644393,-0.05838741,-0.039417125,-0.055742748,0.015464751,0.062691905,0.042287353,-0.035019707,0.087808914,0.022090804,0.061905574,0.0038782216,-0.045607686,0.104322426,-0.003310072,-0.010330831,0.004821939,0.021245506,0.04755156,0.055985447,9.119787e-34,0.0076055303,0.029468618,-0.035145506,0.018346049,0.010882723,0.034478817,-0.05370222,0.014267347,-0.08876941,-0.013490339,-0.044014167,0.04879145,0.021576548,-0.07154753,-0.0009908959,0.049918994,-0.12614448,0.032666434,-0.020697987,0.06345343,-0.052613474,0.052006222,-0.06821424,0.026077978,-0.0046237316,0.11997175,-0.056612033,-0.06621547,0.007354478,-0.018039007,-0.08947304,0.07271929,-0.00064087275,-0.047843404,0.0022530223,0.053147234,0.027295746,-0.029752633,-0.07001407,-0.02416839,-0.01569301,-0.009544516,-0.012894166,0.030296076,-0.0780386,-0.0055702804,-0.1084359,0.0690593,0.051674068,-0.020272478,-0.048304964,-0.070037864,0.06786002,0.004338807,-0.026137602,0.073043704,-0.02463621,0.041679252,0.03507302,0.019474342,0.052542586,0.00519632,-0.008705102,0.0592167,-0.06302779,-0.07100778,0.012743743,0.039628334,0.03275199,-0.010531208,-0.08048657,0.09180462,-0.0056052515,-0.032478623,-0.01895457,-0.03946545,-0.05066767,-0.014713341,0.0237926,0.007501581,0.001754792,-0.025829872,0.030587133,0.022515742,0.053495776,0.03636428,-0.037727725,-0.08711398,-0.08026514,0.115367465,0.056065146,0.10630169,0.047016468,-0.047742877,0.06446232,-4.1475764e-33,-0.0024172019,-0.04221301,0.034290373,0.032337964,0.07884611,-0.075461656,-0.056917217,0.06603261,-0.0044096923,-0.015475713,0.055447165,-0.013901555,0.0116749145,-0.07696395,-0.08456856,-0.026716432,0.016530054,-0.08071811,0.007545154,0.038215227,0.062514514,0.110586576,-0.0075605316,-0.078982994,-0.05992103,-0.011677381,0.03915165,0.062376495,-0.09954073,0.025173169,0.047871146,0.036664855,-0.033716597,-0.02940785,-0.08004296,0.112333015,-0.02815604,0.12577415,-0.0024765716,0.004750144,-0.004470425,-0.0074525164,-0.11577386,0.039030414,0.0027566175,0.035434347,0.04944997,-0.06701687,-0.024126807,0.0026033877,-0.05848035,0.025993029,-0.16953014,0.009261477,0.018346732,-0.011235909,0.07644304,-0.042745344,0.020514857,-0.029866068,-0.12471562,0.020572543,-0.0050790003,-0.04602472,0.019297551,-0.033503205,0.009409489,-0.005983239,-0.07291271,0.021727001,-0.041993033,-0.008007704,-0.096214116,0.12203285,0.043780502,0.043404356,-0.09157518,-0.028649772,-0.018497825,-0.02474609,-0.05081255,0.019685598,-0.043218903,0.015534851,0.021587733,0.09644481,-0.02563055,-0.04934912,0.023399414,0.06044467,0.039247118,-0.01374574,-0.0022885744,-0.07797633,-0.08060943,-2.9153568e-08,-0.06434615,-0.00076849456,-0.013977727,-0.08518748,0.011266198,0.020390796,0.019504692,0.062259745,-0.013931387,0.090878025,-0.010782588,0.01537645,0.009382886,0.026742559,0.06232046,0.054909144,0.04629013,0.02856662,-0.045906175,0.008962817,-0.035554085,0.022686733,-0.048737876,-0.010054681,0.04821611,-0.0056711934,-0.10339036,-0.019237842,-0.0003899574,-0.071366414,0.048993435,-0.031602353,0.01835811,-0.0274998,-0.0059460434,0.027096236,0.020744605,-0.09107317,0.011698713,-0.09085682,0.00897147,-0.022566773,-0.11393173,-0.008899374,0.004611062,-0.020768218,0.0056133233,-0.09054483,-0.009046984,-0.015810784,0.023799792,-0.03871389,-0.013936292,0.040435202,0.106700264,-0.059926614,0.004924356,0.025449108,0.055955134,0.033278935,-0.021485655,-0.023601744,-0.069079585,-0.0008044099} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:44.03379+00 2026-01-25 01:27:50.74164+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1335 google Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB 1 t 1338 Go Karts Mar Menor unknown Only 8 minutes racing but track is very good. Very relaxed. Staff helpful. Great family fum. only 8 minutes racing but track is very good. very relaxed. staff helpful. great family fum. 5 2025-10-02 00:52:39.833374+00 en v5.1 O2.02 {V4.01} V+ I2 CR-N {} {"O2.02": "Only 8 minutes racing but track is very good", "P2.01": "Staff helpful"} {0.029802589,0.030587155,0.054399237,0.038567867,-0.04178335,0.044227812,-0.07867254,-0.026685987,-0.050670847,-0.091926,-0.051077068,-0.003222876,-0.07006579,0.02463661,-0.047714945,-0.038309027,0.11233006,-0.03170326,-0.062048923,-0.018341782,-0.015326341,-0.06887797,0.011342133,0.076527014,-0.07063811,0.0099965315,-0.06071754,0.019653277,0.010001973,-0.041393477,-0.0639403,-0.013635993,0.098175496,0.012684403,-0.0048319297,0.03693992,0.031497087,-0.030822383,-0.011532222,-0.0018022181,-0.011151475,-0.03751307,0.0030441259,0.0054787965,0.09062922,0.0654055,0.080314234,-0.06185425,0.033160463,0.016246794,0.0046036066,-0.049527176,0.09295765,-0.057838712,-0.010539904,0.030145152,-0.05040098,0.00429177,-0.003999363,0.001199828,-0.006019495,-0.043024093,-0.053317863,0.009580735,-0.044428676,-0.08599259,-0.097634666,0.002818304,0.07194223,0.04046412,0.00729544,0.02675768,0.04442228,0.02820226,-0.040686104,0.027983861,-0.014965374,-0.012889914,-0.039374433,-0.052907236,0.06250935,-0.093063876,0.053877097,-0.034888163,0.049521543,-0.060189176,0.063866146,0.12679178,-0.044507876,0.0068993038,0.012670377,0.11460053,-0.04550378,-0.11308817,0.030845823,0.04286394,-0.02581386,0.100705154,0.020946354,0.006791449,0.02337265,0.03193582,-0.0273611,0.10152409,-0.03956539,0.021531384,-0.0044240747,0.12100004,-0.015109065,0.0079676835,0.08199381,-0.032364897,0.065147966,-0.052674007,0.005292562,0.039425485,-0.061443675,0.04525612,0.0015568952,0.09604335,-0.06386698,0.019583825,0.019010987,-0.025518535,-0.019700617,0.0025250379,0.12639424,-3.8379594e-34,-0.071419686,-0.017320972,-0.010035752,-0.0982418,0.0015538794,-0.01893683,-0.10742584,-0.087665886,-0.04850638,0.06777528,0.023901073,-0.012606333,0.017714,-0.06613431,0.056437276,-0.05805029,-0.03317085,0.016428286,-0.112185,0.050282486,-0.005264753,-0.03690864,-0.033294808,-3.2489213e-05,0.07214906,-0.006379764,0.017701596,-0.048728365,0.06464717,0.0064678667,-0.1010608,-0.0035239945,-0.06557473,0.026422646,0.01712981,0.019502647,0.010912476,-0.03601818,0.052814215,0.04351639,0.010693359,-0.012680621,0.014730679,-0.017400766,-0.11180004,0.045314804,0.010851463,0.048886012,-0.013331119,0.039905984,-0.02120221,-0.02681834,-0.007230931,-0.09905712,0.0058687986,0.070959374,0.08487782,0.0006587585,-0.08463063,0.061553776,0.071732074,0.052520595,-0.032750677,-0.101597115,-0.073285714,0.028028617,-0.055842374,-0.033635363,0.06363218,-0.038052272,-0.030091742,0.0016560034,-0.0014890973,-0.017667653,0.091734014,-0.04650646,-0.0044433237,0.02843432,-0.07889817,0.00979093,-0.03030333,0.022988237,-0.040255364,-0.058737244,0.083796695,-0.013283397,-0.024494693,0.0010541951,-0.06697629,-0.012603312,-0.05702396,-0.0046519306,0.013293319,0.09827689,-0.029867629,-1.6032703e-33,0.043433346,0.05019456,0.06002224,0.05316219,0.048199285,0.053321302,0.007878469,0.061276205,-0.001308177,0.07410328,-0.07244484,-0.029961599,0.073008075,-0.010276668,-0.05552823,-0.08388896,0.11571809,0.032975286,0.05444969,-0.09504558,0.044337887,-0.03407985,-0.024246069,-0.047818184,-0.025518673,0.004556892,-0.0077090436,-0.05341587,-0.013281695,-0.0418606,-0.03288072,0.021712746,-0.031286795,-0.086012505,-0.050080184,0.057292737,-0.0071057873,0.036833357,-0.036164757,0.0345739,0.06426279,-0.02994681,0.01877687,0.035871115,-0.038835015,0.0027736842,0.010678225,0.032283437,-0.104314186,0.07533244,0.021406783,-0.03142903,-0.024701843,-0.026804956,0.04105156,-0.046500158,-3.930317e-06,-0.10076318,-0.046245243,-0.029625863,0.021145685,0.06740957,-0.062869556,0.09755192,0.047913387,0.0060058646,-0.055594537,-0.012416329,-0.038328808,0.011621154,-0.08918902,0.03647079,-0.09849782,0.054402363,-0.06584566,-0.006738062,-0.0061176866,0.009828151,0.034692287,0.040782142,-0.011186453,-0.008309458,0.075515635,-0.06846519,-0.020150479,0.068764016,0.017448163,0.0011038533,0.015956437,0.06731311,0.19460364,0.05212661,0.04820814,0.032683317,-0.11157362,-2.2776936e-08,0.020802664,0.021395346,-0.0036734876,-0.05349506,0.07331106,-0.032553688,0.068847574,0.020393636,-0.058771756,0.03323303,0.09066858,0.008418926,-0.010078036,0.02840078,-0.018338114,-0.023691017,0.07359826,0.084750526,-0.0076934234,0.047723554,0.026955403,0.025551356,-0.07531944,0.024723474,0.041256607,-0.03782699,0.07166119,0.038579147,0.009554346,-0.06328192,0.0015575687,0.04780538,-0.032955807,0.026479173,-0.028396608,-0.07360655,-0.0111798765,0.049470354,-0.0045610466,0.022666175,-0.08573888,-0.001359607,-0.02238566,-0.025961002,0.0038748367,-0.036539216,-0.013463338,-0.04959583,-0.035035215,-0.03622352,0.0057142754,-0.04345492,-0.011350298,0.0326234,0.06661476,0.061363023,-0.034499068,-0.04784841,-0.016385626,-0.016882803,-0.05730608,-0.034854367,-0.001003946,0.052615285} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.640519+00 2026-01-30 02:01:09.013127+00 22c747a6-b913-4ae4-82bc-14b4195008b6 222 google ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE 1 t 225 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I can only recommend this company in Gran Canaria!!! Absolutely fair and competitive prices, new cars, clear policy, no credit card needs! The staff was amazing! Super kind and super helpful! I have book the smallest car with full insurance, but my friend brought his bike and we realized we needed a bigger car as the cover of the bike was too big. They offered us straight away two other options when we have arrived and they have changed our car in no time….Thank you once again for your quick and efficient service and your kindness!🙏🏻 i can only recommend this company in gran canaria!!! absolutely fair and competitive prices, new cars, clear policy, no credit card needs! the staff was amazing! super kind and super helpful! i have book the smallest car with full insurance, but my friend brought his bike and we realized we needed a bigger car as the cover of the bike was too big. they offered us straight away two other options when we have arrived and they have changed our car in no time….thank you once again for your quick and efficient service and your kindness!🙏🏻 5 2025-01-25 01:27:48.340474+00 en v5.1 V1.01 {} V+ I2 CR-N {} {"J1.01": "They offered us straight away two other options when we have arrived and they have changed our car i", "P1.01": "The staff was amazing! Super kind and super helpful!", "V1.01": "Absolutely fair and competitive prices, new cars, clear policy, no credit card needs!"} {-0.03963585,0.07975458,0.015749333,-0.014093683,-0.021478955,0.009197886,-0.0042421394,0.043706745,-0.015129794,-0.038900293,0.05639819,-0.007361248,0.038253024,-0.043321934,-0.06826345,-0.030664003,0.066989586,-0.012093591,-0.010627539,0.020322215,-0.049177118,-0.06030703,0.009872957,0.046542775,-0.038872853,-0.03903107,-0.040580668,0.04308184,-0.0017165542,-0.08932948,-0.004492469,0.059599396,0.088843256,-0.02359658,0.015282885,-0.002901756,0.015097526,-0.037630886,-0.06282608,-0.014158544,-0.010213185,0.031704567,-0.0705733,-0.010506105,0.04766496,0.03682891,0.11398201,0.0035972544,0.06873153,0.013953532,-0.026232228,0.038841758,0.08418264,-0.10070346,-0.11497703,-0.035867844,-0.08705955,-0.041523986,-0.05536672,-0.01354428,0.06461129,-0.034572724,-0.052863497,0.061147444,-0.0031498813,9.048283e-05,-0.030713039,0.0401802,-0.09615648,-0.10969406,0.102226,0.00061796454,-0.0064092367,0.08786562,-0.02849723,0.037404194,0.030090813,0.024781357,-0.014250508,0.04052121,-0.02978138,-0.045339894,0.092597544,-0.011501239,-0.040567957,-0.042220064,-0.02988,0.043106638,0.0013762984,-0.07978579,0.059266463,0.073093005,0.0028135,0.02835765,-0.034703307,-0.006746314,0.013604904,-0.06725913,-0.04583656,0.018850949,0.10120302,0.029582847,0.07954409,0.010137337,-0.019092537,0.061826065,0.059012394,0.0670665,0.036432732,0.0129881725,0.013291672,-0.045933723,0.02686369,-0.0441858,-0.087276906,0.029312821,-0.038835734,0.012597113,0.05406878,0.020154985,0.014265828,0.036146563,-0.074623555,-0.029083649,0.00945205,0.041956555,0.03737663,1.7889138e-33,-0.027006406,0.1051691,0.012805243,-0.010310231,0.011901043,-0.007137148,0.0010358857,-0.015531468,-0.095681444,0.019673092,-0.027811512,-0.0064052604,0.017773028,-0.037528194,0.013520541,0.07814831,-0.12213023,-0.011843891,-0.005703666,0.0068048313,-0.09148272,-0.010267569,0.04085941,0.017571203,0.036792994,-0.0087248515,0.02339246,-0.033333987,0.10334405,0.03997115,-0.10608527,-0.008270485,0.02373705,-0.023139112,-0.05401308,0.0138097955,-0.09694496,-0.020666296,-0.08999567,-0.059510615,0.016507322,0.0018081882,-0.07278726,-0.03982599,-0.024390725,0.00915026,0.046782464,0.05206712,0.027501203,0.048593834,-0.13169158,0.0018801688,-0.103974916,0.015911914,-0.050272945,0.0403911,-0.0042466084,0.051634353,-0.011748101,0.0015940618,-0.050349418,-0.015257529,-0.055561364,-0.012015529,-0.042740166,-0.0192089,-0.0419072,-0.00078960625,0.016142776,0.022946777,0.044352118,0.051676296,0.05370964,0.041992977,0.08141874,0.03346755,-0.034481503,-0.017892998,-0.03710184,0.037533753,-0.01042409,0.0029693819,0.001068425,0.04578869,0.039522685,0.08371462,0.072795,0.047008365,-0.04572126,0.023908151,-0.028255697,0.0049692607,0.021399887,0.05379494,0.079487555,-3.7733574e-33,0.014631165,-0.012174683,0.10337361,-0.017597705,-0.04952952,0.01808991,-0.032945525,0.024913007,0.0026564777,0.03548513,-0.074631535,0.029979184,0.088425554,-0.034304038,-0.021606453,0.037842672,0.077817164,-0.10238965,0.035895858,-0.10365359,-0.010015142,0.05225298,-0.040357836,0.0067980895,0.005037278,0.0298835,-0.05578741,0.028501108,0.019945897,-0.04429089,-0.07581409,-0.060549855,-0.039478086,0.06635967,-0.009795996,-0.062033158,-0.0076827225,0.056386206,-0.006463483,0.035853993,-0.022078749,-0.09876964,0.04049956,0.02519271,0.019089777,-0.10939393,0.053081185,-0.08920878,0.01846759,-0.017967146,-0.0017312102,-0.030818276,-0.0017038047,0.032783657,-0.044226974,-0.0019916114,0.070921704,0.04012895,-0.074789524,-0.048864067,0.0008518367,0.020113658,-0.056444928,0.0594826,0.005831711,-0.04963306,0.0103374915,-0.059520967,-0.022261633,-0.02957822,-0.07161327,0.009502605,0.02218817,0.009769937,-0.084382124,0.035514913,0.088912986,-0.06663188,-0.0050679212,-0.03904335,0.06557337,-0.084108494,0.031190677,0.046137508,0.028504174,0.03690715,-0.015290509,-0.114445426,0.00733762,0.12944989,-0.08903613,0.15087034,-0.012831255,-0.022702396,-0.05300044,-4.9868557e-08,0.03122173,-0.019283978,-0.03207965,0.02111514,0.006735791,-0.06450351,-0.020284446,0.06780589,-0.09919788,0.054369546,0.037456498,0.05360918,-0.030777214,0.028512781,-0.06719538,-0.07604189,0.15054168,0.064852044,0.00838324,-0.029266289,-0.0366453,0.028159287,-0.003800331,0.014136138,-0.05194855,-0.030927038,0.04565504,-0.017802652,0.09450231,-0.07968108,-0.07374957,0.04030607,0.087044455,-0.044223893,-0.009912474,-0.07094692,0.01411439,0.07102898,0.00054742605,-0.07836089,0.046126653,-0.0075014113,-0.015626252,-0.039622124,-0.0013048431,-0.04194088,-0.064951345,-0.0833075,0.11950341,-0.043739785,0.022044493,-0.096353546,0.07383466,0.10289602,-0.0051836483,0.029183818,-0.034108486,-0.014188675,-0.030895965,0.027332632,-0.001525181,-0.039891157,0.0044359695,0.035234477} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:45:18.213328+00 2026-01-25 01:27:50.099513+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1336 google Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB 1 t 1339 Go Karts Mar Menor unknown Great place for fun! A bit short track so many turns and not so high speed. Recommend! great place for fun! a bit short track so many turns and not so high speed. recommend! 4 2025-12-01 01:52:39.833374+00 en v5.1 O2.02 {} V- I1 CR-N {} {"O2.02": "A bit short track so many turns and not so high speed"} {0.029192002,-0.0012805421,-0.032166157,0.012283781,-0.10212226,0.054993805,-0.06800896,-0.02382089,-0.044080123,-0.020880263,-0.004224671,0.043740883,-0.015985884,0.0083765965,-0.02538623,0.038127318,0.1079305,0.01852686,0.08061179,-0.052386586,-0.021031283,-0.05774436,0.049422804,0.064973995,-0.14758776,0.03215937,-0.11273467,0.08921309,-0.025366737,-0.0665834,-0.05701284,0.07240776,-0.02672991,-0.005039678,-0.02884922,0.019731147,0.05332459,-0.060148586,0.04418671,0.03252757,0.0010693219,0.03447023,0.11469296,0.023575101,0.016098907,0.07119315,0.009606574,-0.08150827,0.08622848,0.0012217488,0.07799516,-0.011301799,0.08363602,-0.035641886,-0.04981346,-0.004576858,-0.057020698,-0.054795712,0.03639836,-0.07144067,0.082799956,-0.059046052,-0.041337293,-0.04853877,-0.038035184,-0.065443814,-0.07345828,0.033674628,0.05981704,-0.044689152,0.024399308,0.018640583,0.033414904,-0.029494144,0.002789075,-0.035075117,-0.014298243,-0.013409407,-0.117953435,-0.024189284,0.023844406,-0.066163935,0.05686727,-0.048143543,-0.0044039963,-0.110089615,0.027647514,0.006858184,0.021874068,-0.023959378,0.0011628929,0.12019748,-0.06430063,-0.08842065,0.0071814856,0.056802478,-0.029213049,0.021140782,-0.038992573,0.008695623,0.056126423,0.055011593,0.011842673,0.030972123,-0.03984095,0.046727214,-0.006449404,0.11492577,0.0018827814,-0.03533719,0.05432939,0.03830597,0.04007517,-0.007744158,0.009084467,-0.0022477391,-0.011529946,0.04769567,-0.046755202,-0.0103619285,0.0022083556,-0.022779603,0.026640134,0.054090288,0.03679434,-0.025854552,0.031900797,-1.0850567e-33,-0.04564639,0.03782408,-0.01680867,-0.043724272,0.09743386,0.004660422,-0.06932559,-0.036056194,-0.09219987,0.048714254,0.0072593805,-0.04590137,-0.04617343,-0.015042014,0.06210273,-0.04183074,-0.0025314137,-0.032626964,-0.10506932,-0.020877061,-0.04460898,-0.028916745,-0.010660637,-0.040356547,-0.0033790497,0.017202824,0.015656888,-0.035793077,0.07126615,0.012150367,-0.041691672,-0.03553188,-0.09770845,0.023200784,0.045506883,0.0028217668,-0.08401336,-0.020987278,-0.010454003,0.05040479,0.03765536,-0.045291796,-0.057856865,0.035300136,-0.043772075,0.045173652,0.0080192145,0.044412136,0.085386,0.012301616,-0.0644855,-0.06487644,-0.0986329,0.03561676,0.07428786,0.036859833,0.062206075,-0.0035982875,0.006142311,0.020534374,0.02433117,0.085973784,-0.039616954,-0.084286906,-0.057009496,-0.0142463995,0.008710015,-0.015694836,0.055227257,-0.008590725,0.03739898,-0.03189053,0.06693075,0.022993648,0.081320874,0.014258465,-0.0660467,0.003129714,-0.015416419,0.023602042,-0.036065534,0.008063139,-0.057020314,-0.003245756,0.05126142,-0.020870984,-0.013245245,-0.14584063,-0.0562248,-0.008155238,-0.027758218,0.028908707,-0.03624844,0.04499311,-0.021231975,-2.0720122e-34,0.10852853,0.025523731,0.06922495,0.02873733,0.042138718,0.06397034,0.014394033,0.0003616004,0.07035723,0.090782665,-0.08985197,0.035470568,-0.004579538,0.022631627,0.020624314,-0.044893,0.04850709,-0.0011137131,0.009168517,-0.092109896,-0.04000198,0.05237439,-0.05313039,-0.0048492425,-0.04887862,0.03836063,-0.009710357,-0.01744211,-0.028717738,0.007529027,-0.089921445,0.029160047,0.03639575,-0.056570526,-0.016418776,0.06998959,-0.008054815,0.014608899,-0.038401023,-0.028241122,0.0042414153,0.00943892,0.018375482,0.031623527,-0.03976743,-0.014386698,-0.007431478,0.13416566,-0.045752507,0.01149977,0.013008663,-0.03236016,-0.01725029,-0.046609502,0.013741081,-0.037112642,0.004824803,0.00041171134,-0.003671115,-0.023759738,-0.05569678,0.09090658,-0.066103525,0.061900448,0.071976416,-0.034437396,-0.0318202,-0.059666324,-0.042229746,0.04787272,-0.06884616,0.08051279,-0.0038490898,0.041358795,-0.025609639,-0.04650187,0.12729055,-0.020602463,0.09579579,0.08218694,0.015223052,0.017758211,-0.015098483,-0.029872796,-0.024680277,0.05310992,-0.052281763,0.020358376,0.012019351,0.058292724,0.13314798,0.09613964,-0.04165532,-0.0423265,-0.088651896,-2.2692916e-08,-0.024563255,0.12288581,-0.0334429,0.0021408563,-0.013696082,-0.028787171,0.1092949,0.013361205,-0.053996306,-0.011894744,0.049453557,-0.037790563,0.0020072022,0.054632895,-0.04511905,-0.036929157,0.02007496,0.078872375,-0.019805603,0.04720897,0.029114038,0.038619068,-0.045582708,0.0073716496,-0.02009169,-0.05317879,0.05366677,0.025116887,0.016987702,-0.11939473,0.006361607,0.052064408,0.027383152,0.07167374,0.0148787685,-0.057872597,-0.021794219,0.03694992,0.05412904,-0.046677165,-0.06953276,-0.043068763,-0.04507047,0.01700557,-0.020732485,0.038145527,0.039573617,-0.03632906,-0.073784895,0.002235888,-0.117347114,-0.07308419,-0.022564588,0.07945107,0.057781693,0.09979351,-0.06401987,-0.011675055,-0.063632384,0.06651087,-0.045635045,-0.012158055,-0.01331424,0.06519296} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.716463+00 2026-01-30 02:01:09.016316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 230 google ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB 1 t 233 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Amazing service! I’ve rented a car for more than a week, it was easy, efficient and spotless.\nI was mostly grateful for the service that Carmen provided me, she was kind, efficient and provided with all the information that I needed. She even gave me a list with recommendations of sightseeing by car.\nTheir shuffle driver Nestor was also helpful with helping with my bags, and he always driving between the airport and the office, so it was fast to get to the airport.\nI’ve made the booking through booking.com and payed for insurance, which was not necessary, since Clickrent has a better coverage of damages. amazing service! i’ve rented a car for more than a week, it was easy, efficient and spotless. i was mostly grateful for the service that carmen provided me, she was kind, efficient and provided with all the information that i needed. she even gave me a list with recommendations of sightseeing by car. their shuffle driver nestor was also helpful with helping with my bags, and he always driving between the airport and the office, so it was fast to get to the airport. i’ve made the booking through booking.com and payed for insurance, which was not necessary, since clickrent has a better coverage of damages. 5 2025-01-25 01:27:48.340524+00 en v5.1 P1.01 {P1.02} V+ I3 CR-N {Carmen,Nestor} {"P1.01": "Amazing service! I’ve rented a car for more than a week, it was easy, efficient and spotless. I was ", "V1.02": "I’ve made the booking through booking.com and payed for insurance, which was not necessary, since Cl"} {-0.022824636,0.021132043,0.058595873,0.04009158,-0.012564117,0.06833734,0.07151062,0.032842483,-0.05484733,0.0058052926,0.00431899,0.12599652,0.021187006,0.062245827,0.048616033,-0.024340397,0.11511509,-0.088243224,0.016699106,0.004659788,-0.03949899,-0.05381636,0.01022919,0.02118557,0.003509015,-0.0137434,-0.040193573,0.03563111,0.01263661,-0.058238048,0.007487181,0.039938517,-0.001826504,-0.021632865,0.02700928,-0.057198793,-0.016362892,-0.12633951,-0.025509814,0.01020879,0.0045241853,-0.0075910375,-0.025235476,0.054491986,0.008797336,-0.083214246,0.11618376,0.10425736,0.10631385,-0.032329485,0.019496337,-0.017281856,0.08282948,-0.07562658,-0.10335191,-0.027825898,-0.01680649,0.0099761635,-0.0333591,-0.02962511,0.051286515,-0.011201583,-0.038867507,0.055827655,-0.07086528,-0.0252207,-0.039047413,-0.0007917749,0.055457313,-0.035274114,-0.03898964,0.041214123,0.032675,0.032903984,0.029865583,0.0072727255,0.066197544,-0.026058434,0.020399092,-0.03260254,-0.057847623,-0.04084795,0.023906086,0.022879478,0.0314647,-0.07822322,0.007823925,0.0040099705,-0.024320975,-0.034692384,-3.726427e-05,0.06452406,0.005328526,-0.0731747,-0.059905697,0.01702445,-0.0005345367,-0.039080925,-0.080404244,0.048077744,0.06579716,0.124553576,0.032745376,-0.053665925,-0.04903016,0.032266513,0.027500844,0.062082887,-0.021356309,0.012731366,0.0018111281,0.034299847,0.05049405,-0.018436944,-0.10269094,0.11641816,-0.06678334,0.060178407,0.09899274,0.0046659103,0.016337896,0.002456392,0.070994355,0.03133717,0.013409666,-0.0054745134,0.13486493,-9.534927e-34,-0.042087644,0.06395067,-0.0008204175,0.017134309,0.02621191,0.009520706,-0.0621227,0.021360507,-0.07455954,0.099453576,-0.008236673,0.026941026,0.031546906,-0.0224978,0.0011585171,0.06157432,-0.09022321,0.026179554,-0.0015168088,-0.032405283,-0.03168948,-0.020546827,0.013999557,0.014444346,0.101889424,0.0315115,0.0037418923,-0.00584514,0.17566118,0.038813908,-0.05220036,0.043442495,-0.052940857,0.016421989,-0.033737034,0.014020453,-0.11652982,-0.03687589,-0.061710585,-0.023773875,-0.020181816,-0.045107707,-0.070582576,-0.027121998,-0.085916445,0.027540373,0.03100361,0.0003032811,0.015891127,0.029174283,-0.09372996,-0.05590607,-0.06725162,0.07842894,-0.09091752,0.07265383,0.011887249,-0.0052053444,0.038432125,-0.05579958,0.06865068,-0.023116881,0.005568531,-0.0573866,-0.0376439,-0.060530096,-0.0059888177,-0.048356898,0.07017378,0.040520437,0.023554623,0.060537376,0.068563454,-0.013500916,0.06898308,-0.029020539,-0.06875386,-0.041744858,-0.025571955,0.079484366,0.032261424,0.0007468852,0.04551235,0.024480661,0.036214195,0.036197856,0.030737868,-0.050756928,-0.059173964,0.032206666,-0.015385568,0.060924567,-0.019833917,-0.0069788704,0.042262256,-1.0532976e-33,0.028285883,-0.065364465,0.07340182,-0.027214611,-0.045466393,-0.01691431,-0.09020208,0.017081657,-0.039706994,0.045029584,-0.10356463,0.03064909,0.0071681105,-0.054671336,-0.038981948,-0.05999536,0.04152626,-0.06648523,-0.035034284,-0.013961492,-0.005637676,0.06745261,0.0406693,-0.039808325,-0.046281837,0.0030140618,1.3902688e-05,0.09206212,-0.007592977,-0.030101275,-0.005660146,0.013411135,-0.015496692,-0.05634389,-0.021297451,0.099849775,0.003751353,0.092292644,-0.041322615,0.0007516184,0.013213225,-0.0757977,0.011731886,-0.029096287,0.08317022,-0.07487188,-0.023647616,-0.07091325,-0.0184679,0.0042492147,0.024424773,-0.057625607,-0.08412591,0.04012553,0.02351428,0.0053095063,0.009080101,-0.05485838,0.020559933,0.04198135,-0.04970614,0.02259423,-0.03191723,0.03383171,-0.0073263966,-0.14553197,0.039751224,-0.056272805,0.0070632477,-0.00017850554,-0.08223792,-0.0005226546,-0.009092357,0.07611606,-0.032006223,0.00082385796,0.10832222,-0.013279765,-0.04024658,-0.09173974,0.031977084,-0.026604932,0.011234218,-0.0016589563,0.026049774,0.04827561,0.04399593,-0.107503675,0.016392862,0.08780975,0.0071687857,0.06470041,-0.05861747,-0.027770318,-0.059120525,-5.134981e-08,0.012094337,0.079331666,0.026438398,0.022373099,-0.046801306,-0.075498246,0.023013415,0.11404707,-0.10767485,0.023490028,0.05007872,-0.00636618,-0.03233847,0.07568603,0.0021768792,0.00067538384,0.0586508,0.05664805,-0.03595631,0.002216087,-0.016720021,0.023468884,-0.007538231,-0.023573345,0.035968874,0.007689238,0.021297403,0.029235069,0.079308435,-0.0904515,-0.09142275,0.030744132,-0.019390054,-1.3657239e-05,-0.07882378,-0.0662702,-0.021199452,-0.039892904,6.489789e-05,-0.0028787712,0.04479058,0.037893716,-0.037347544,-0.023509737,-0.004272265,0.026481302,-0.04816246,-0.04802754,0.02707629,-0.0063731456,-0.032724176,-0.05797106,-0.03217922,0.06477339,0.040753085,-0.028654603,0.0061314213,-0.05396214,0.022047909,0.10668499,-0.03099933,-0.03150247,-0.14013328,-0.012884886} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:46:42.352207+00 2026-01-25 01:27:50.154607+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1314 google Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB 1 t 1317 Go Karts Mar Menor unknown They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD FRIENDS AND FAMILY TRAVELING FOR HOURS TO BE THERE FOR MY SONS BIRTHDAY😡.\nWHAT A LIE....WHEN I RANG I GOT HUNG UP ON.possibly Wanted the day off because we were probably the only persons arriving on the day.Most important they text me.They hadn't the decency to call Us!! they cancelled 1 hour 50 mins before we were due to arrive due to rain...it was not raining we had friends and family traveling for hours to be there for my sons birthday😡. what a lie....when i rang i got hung up on.possibly wanted the day off because we were probably the only persons arriving on the day.most important they text me.they hadn't the decency to call us!! 1 2025-12-31 01:52:39.833374+00 en v5.1 R1.01 {R1.02} V- I3 CR-N {} {"P1.02": "Most important they text me.They hadn't the decency to call Us!!", "R1.01": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD F"} {-0.018469563,0.07490173,0.13192111,0.046032753,0.017205415,-0.12547596,0.035226155,-0.082624376,0.055078898,-0.041441865,0.005147618,0.058051705,-0.0076394253,-0.00027351698,-0.042579096,-0.054770768,-0.04737892,-0.09484811,-0.06868634,0.00050605374,0.0017745942,0.04307865,-0.004913417,0.0785784,0.060449492,0.0864077,-0.05522552,0.049336337,0.011102258,0.011149089,-0.03945669,0.03947439,0.07973319,-0.062045358,0.0079464605,-0.016299766,0.086351395,-0.107771985,0.032975096,-0.025294434,0.060109872,0.016598217,0.006997005,-0.00649738,-0.036524862,0.0009612284,-0.00939595,-0.007838942,0.01574376,0.10045516,0.10301775,0.06786352,-0.022416279,-0.04938961,-0.04576971,0.08432387,0.032205056,0.045511186,0.029510206,0.034205854,-0.11617367,0.035311103,-0.083658814,0.055798963,-0.06126119,0.039124265,-0.10527722,-0.028868673,0.06927092,-0.042079784,-0.03677782,0.016670726,0.06534402,0.07934074,-0.07262313,0.037387274,0.028439838,-0.003942257,0.037453283,0.018435868,-0.0629586,-0.09413965,0.035023425,0.07075829,0.008554233,0.0061119227,0.070346475,0.06860591,-0.0066336063,0.0016153106,0.065540254,-0.049296908,0.028469166,0.07515787,-0.09415265,-0.040435527,-0.038220707,0.034042034,-0.03352118,0.025431786,0.026919719,0.06662208,-0.0654852,-0.053606484,0.036428258,-0.03590514,-0.06743008,-0.023094868,-0.007727,-0.03965918,0.022566045,-0.020002352,0.06506081,-0.0027856196,-0.05716246,0.061736733,0.03723731,0.05651669,0.00885442,-0.13129534,-0.003555363,0.08924945,0.02536306,-0.032266267,-0.031229062,0.008290535,0.099930726,-1.3396037e-33,-0.0044500404,-0.012570088,-0.009896597,-0.0037800139,0.08202324,-0.042917427,-0.111169994,-0.011373751,0.03016703,-0.043513298,-0.048880294,-0.04160945,0.061429642,-0.097375415,-0.0589666,0.010684357,0.03935103,0.036559574,0.047471132,-0.00361564,0.025736772,-0.0674568,-0.034787677,0.03285398,-0.019637603,0.018267976,-0.05431198,0.061615318,0.10557798,-0.0040679453,-0.0067522735,-0.0153242685,0.1573195,0.07547775,0.06179225,0.034121957,0.063728996,-0.07626692,-0.05606219,-0.022441823,0.014442321,-0.03699642,-0.01366755,-0.06635632,-0.0033791855,-0.04588706,-0.023302123,-0.036411654,-0.0036799842,0.013200266,-0.03847787,0.09237882,0.032008197,-0.0050954265,-0.036189854,0.015520244,0.074351415,-0.017877303,-0.009299552,-0.004653543,0.08341012,-0.008382442,0.023788348,-0.09307111,-0.024915054,-0.06568036,-0.003442509,0.021154178,-0.015186155,-0.036324553,0.06274281,0.016665213,0.0043681012,-0.0098500475,0.04624585,0.024052085,-0.026095599,-0.0065401243,0.06255555,0.043147236,0.13625838,-0.029026154,-0.014768764,-0.085563734,0.040002376,-0.015432001,0.006260989,0.004546264,-0.09429697,0.021383952,-0.07914675,0.05894564,0.04869578,0.009936981,0.03399451,-8.94465e-34,0.011734769,0.043786716,-0.07720477,-0.03281076,0.0064132577,-0.029363474,0.018393056,0.00092379417,-0.0071536805,0.042170677,-0.0035952476,0.03666185,0.0010859958,-0.047580715,-0.017577918,-0.017910428,0.14219719,-0.025250345,0.0075182864,0.016490681,0.016082492,-0.022708483,-0.025290806,0.018014565,0.062393118,0.020999203,0.056543652,-0.008830474,-0.020810448,-0.024341764,-0.00019750043,-0.03139847,-0.06803518,0.0920982,0.042685077,0.035585,-0.029076025,0.08766212,-0.04647072,-0.036329694,-0.035963397,-0.063904904,-0.051531397,0.01693341,-0.03762656,0.06068591,0.046100713,-0.014193913,-0.092586994,-0.016098743,-0.041442472,-0.003262826,0.05322514,0.09103247,0.010537011,-0.07011985,0.03034867,-0.06655408,0.0570048,-0.009391949,-0.019119183,-0.0724412,0.055557925,-0.042517826,-0.016976357,-0.021852765,0.030557554,0.020957025,0.045588795,-0.015683444,0.014512901,-0.05187184,-0.04228373,0.017422078,-0.006117164,0.04420936,-0.05491074,-0.011028265,-0.10481984,-0.010855082,0.026422115,0.037206467,-0.04060225,0.030136764,0.00407134,-0.040574025,0.051276512,0.0024807097,-0.010727728,0.13533968,0.08796761,0.013202805,-0.011913264,0.108052395,-0.07395367,-3.4233643e-08,0.03779089,-0.002517541,-0.015605046,-0.06888225,0.019774362,-0.1338905,0.03645931,-0.00802601,-0.057561297,-0.00862403,-0.005241372,-0.03513818,-0.0409252,0.009326729,0.045486815,-0.007396804,0.022229211,-0.055552173,0.0156951,-0.03534576,-0.018564615,0.011811748,-0.13516779,-0.024700137,0.038258925,0.012084537,-0.027794018,-0.0054758484,0.057726666,0.04001379,-0.009676726,-0.008383766,-0.0625504,-0.0061140293,-0.077648796,-0.06394713,-0.020603523,-0.05302274,0.00027157489,-0.0069425525,-0.011371382,0.005199395,-0.0028926847,0.0012755462,0.09081358,0.006744179,-0.07843968,0.03482981,-0.0030595164,-0.05116762,-0.022707118,-0.039333854,-0.025460975,0.034707833,0.046483435,-0.07542096,0.032025103,-0.06858239,0.03453256,-0.02627972,-0.04628055,0.0052363724,-0.15870239,-0.03459807} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:34.829219+00 2026-01-30 02:01:08.943249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1418 google ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB 1 t 1421 Go Karts Mar Menor unknown Nice place.. very friendly family run business. Good for children and adults. Not normally a long wait. Good prices nice place.. very friendly family run business. good for children and adults. not normally a long wait. good prices 5 2024-01-31 01:52:39.833374+00 en v5.1 V1.01 {} V+ I2 CR-N {} {"A3.01": "Good for children and adults.", "J1.01": "Not normally a long wait.", "P1.01": "Nice place.. very friendly family run business.", "V1.01": "Good prices"} {0.0063371104,0.03875449,-0.019891834,0.046181966,-0.1332333,0.047352128,-0.061104808,-0.04742612,0.007391641,-0.06998467,0.09132672,0.03366643,0.019124927,-0.03147937,-0.015377852,-0.05855209,0.12595549,-0.12481092,0.036882367,-0.088623576,-0.07928452,0.021227857,0.05444333,0.0069229384,-0.05994253,0.0435393,-0.03667955,0.06418554,0.06956263,0.005513133,0.0060892683,0.013222488,0.055744704,0.037875768,0.048911974,0.077938415,0.0550772,-0.06967112,0.011916516,0.048989605,0.0760444,-0.006147143,-0.039713804,-0.050103825,-0.020058298,0.025596982,-0.005130505,0.0034893972,0.13295573,0.04995537,0.05845176,-0.009587346,0.033846177,-0.05534295,-0.028937347,0.07171764,-0.075387314,-0.06380754,0.0017338418,-0.04797463,0.06336342,0.004896203,-0.08070718,0.02479539,0.0037056275,-0.017305981,-0.08385925,-0.034851857,0.05002737,-0.16664454,-0.009439312,-0.014581145,0.0196371,0.01807927,-0.12063035,0.0028185202,0.09753712,-0.023486145,-0.04918727,-0.031949278,0.002422308,-0.06272195,-0.025384799,0.046271935,-0.080585636,-0.03154302,0.044517107,0.007183847,0.071531296,-0.034628987,0.065008365,0.07992922,-0.044275194,-0.034305092,-0.010159079,0.0363438,-0.028955195,0.0389328,-0.016622191,0.024711808,0.034084693,0.08670788,0.0637315,0.039850548,-0.058381815,0.0007409461,-0.0099173235,0.09721573,-0.060493615,-0.012551299,-0.030939845,0.0050967177,-0.016442366,-0.0030991773,-0.061082643,0.030689025,0.02772533,-0.06458229,0.046173036,-0.077375166,0.06946883,0.08871304,-0.048474725,-0.041271526,0.010813181,-0.014112672,0.021446547,-2.4948338e-33,-0.05295846,0.027766258,0.029151991,-0.001356296,-0.009204986,0.010188257,-0.017990101,-0.0270426,-0.109395936,0.08608642,0.044077057,-0.04717982,-0.024686925,-0.04555893,-0.018283404,0.0040105907,0.02326833,0.0151881175,-0.013878727,0.0429405,-0.043350976,-0.03721076,-0.04143913,0.053209424,-0.011507476,-0.0236442,0.017368441,0.053572785,0.1324279,0.030118642,-0.0139109595,-0.049995456,-0.043342523,-0.05684512,-0.04115793,0.014253986,-0.008499581,-0.06758293,-0.008455203,0.0276472,-0.07858163,0.005460608,-0.01305954,0.076701164,-0.01127126,0.0512841,0.014555692,-0.02854734,0.048366953,0.019430613,-0.07369999,-0.023743784,-0.09145804,0.09923514,-0.01406545,-0.0076510003,0.0005835836,0.01288154,-0.0015872595,0.024363186,0.03522303,0.02587066,-0.08545845,-0.030334914,-0.093788065,-0.061328534,0.0037378217,0.06441592,0.064079665,-0.0017179026,0.06658478,0.022513263,0.06392517,0.022255415,0.06225365,0.10985684,-0.0942307,0.052491494,0.028089307,0.045892842,0.0779731,0.019192979,0.00750455,0.006918814,0.08466672,-7.421086e-05,0.025032343,-0.10468957,-0.10662655,-0.0064864163,-0.04058782,0.09243234,0.03521455,0.07255132,0.0039374996,1.1456077e-33,0.07501425,-0.020651862,0.03809358,0.03725703,-0.0056047854,0.009226752,-0.04307542,0.04934382,0.022970842,0.066469386,-0.1261215,0.040350188,0.052292466,-4.517986e-05,-0.027850937,-0.008600266,0.14296544,-0.016302267,0.043820165,-0.05496091,-0.032136805,0.09256382,-0.060865816,0.012514805,-0.0028289817,0.042551797,-0.13203606,0.023178225,-0.08436492,0.007348978,-0.09475594,-0.036990885,0.043178167,0.033490397,0.01697747,0.034701522,-0.029247835,-0.019896684,0.02962139,-0.015347599,0.077000506,-0.019403258,-0.023491362,0.01892685,-0.025358062,-0.020480532,-0.02997568,-0.04158888,-0.004335459,-0.0009038652,-0.029581223,0.048168886,-0.017624047,-0.04829356,-0.020603217,-0.009077531,-0.013918188,0.002857705,-0.0812399,-0.0081667015,-0.026907891,0.05541957,0.006549544,0.07234296,0.05941989,0.0152725885,-0.002076403,-0.05873632,-0.0057329894,0.012849501,-0.030043224,-0.015750822,-0.02178919,0.014974414,-0.07109989,-0.012875688,0.10595626,-0.0394755,0.027916431,0.1014976,0.024286399,-0.013724071,-0.025022672,-0.032719206,-0.009307377,-0.038537715,0.023301486,-0.008435597,0.004192809,0.043970056,-0.0035527912,0.057791684,-0.08331994,-0.004368991,-0.03414861,-2.2872669e-08,0.04471699,0.008449458,0.028944043,0.05640669,-0.035397436,-0.122379184,0.11635289,0.06366462,-0.023010602,0.064241275,-0.025740258,-0.028851587,-0.052943796,0.020663671,-0.09752656,-0.01732193,0.047888875,0.050550126,-0.0007740249,0.037100192,0.061136622,0.106040195,-0.02074566,0.055419613,-0.05621257,-0.015818201,0.05122588,-0.04578214,-0.025127461,-0.07100624,-0.030872215,0.07303465,-0.002721617,0.031083956,-0.04518822,-0.029772138,-0.043934043,-0.023884328,-0.018388458,-0.016341744,-0.032041255,-0.070161544,-0.0587717,-0.047780205,-0.017802948,0.027449174,-0.016559325,0.02649292,-0.030925509,0.00089073676,-0.07118198,-0.0028040672,-0.025637267,-0.038111303,0.016012762,-0.03285288,-0.033676546,-0.063229606,0.025722947,0.06516283,-0.020680323,-0.0681109,-0.035413917,0.06717992} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:46.151473+00 2026-01-30 02:01:09.292557+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1343 google Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB 1 t 1346 Go Karts Mar Menor unknown Nice track, good safety in place and organisation. Kids enjoyed it a lot nice track, good safety in place and organisation. kids enjoyed it a lot 5 2025-12-01 01:52:39.833374+00 en v5.1 E4.01 {O2.02} V+ I2 CR-N {} {"E4.01": "Nice track, good safety in place and organisation"} {-0.02382559,0.07652576,0.008640047,0.019101229,-0.024775127,0.05592109,0.024155559,0.030439328,-0.069135115,0.006633565,0.0028048507,0.046287064,-0.002907466,0.0007924653,-0.054735754,0.020767074,0.09237572,-0.029220877,-0.003998385,-0.112358645,-0.045140814,-0.021400968,0.070282154,0.08668694,-0.1639162,0.113888636,-0.08322918,0.080389254,-0.01111624,-0.06202913,-0.04559131,0.017623369,0.0604296,-0.0147276865,-0.038673956,0.009959314,0.09378492,-0.014840245,-0.033775046,-0.0005554983,-0.07198438,-0.01530448,0.036525603,-0.012788753,0.011811613,0.044410244,-0.002143104,-0.11994161,0.069316156,0.018365012,0.0901276,-0.060405392,0.06016879,-0.09364773,-0.034623954,0.020105924,-0.034776345,-0.015028636,0.009057688,-0.070638545,0.032567862,-0.027501402,-0.07304175,-0.014061483,0.014798258,-0.13060611,-0.119748585,0.05061944,0.10758608,0.023622964,0.044791464,-0.0150919715,0.08130624,-0.037398767,-0.046630032,0.037035905,-0.03407961,-0.023978883,-0.050578825,-0.06369158,0.035211273,-0.043848816,0.021800678,-0.039828453,0.02591152,-0.049670227,0.046831004,-0.029106636,-0.017523624,0.0111951865,0.012658706,0.12340992,-0.0067575453,-0.014713118,0.046476923,0.026900843,-0.033313006,0.0486839,0.0016905584,0.03229458,0.084773384,0.08940024,0.019164642,0.054931365,-0.0667279,-0.027847214,-0.02404899,0.08711592,0.01333673,-0.039493006,0.050187904,0.019252606,-0.0075022476,0.014282664,-0.039553072,-0.0033330796,-0.035646614,0.027728861,-0.021170808,-0.014721292,0.062393207,-0.0062071807,-0.011000271,0.03201598,-0.044103827,-0.025624745,0.06161434,-3.21251e-33,-0.060394254,0.006856269,-0.00700983,-0.032436028,0.09243677,-0.00091771834,-0.06422709,-0.062074754,-0.10867422,0.07107168,0.038540162,-0.013852016,-0.0238274,-0.048561256,0.07014235,-0.0716044,-0.11936336,0.00060004304,-0.09781716,0.07622065,-0.07290642,0.049004786,0.014357896,-0.032866206,0.094312415,0.05166484,-0.0034380928,-0.0030752174,0.056484416,0.026360596,-0.04536638,0.003244366,-0.06293783,-0.015307256,-0.029203143,0.002206774,-0.050630108,-0.08168429,-0.019618556,0.019219268,0.071506634,-0.060199082,-0.004262482,0.06129004,-0.036860883,0.11109186,-0.0072963983,0.08128797,0.05759853,0.0053418353,-0.04353784,-0.029837128,-0.08897645,-0.08078975,0.001994612,0.020709477,0.0483634,0.075316004,0.009545193,-0.04579399,0.06797806,0.021905083,0.0044293506,-0.08941059,-0.020848265,0.033821777,0.02038622,-0.021176869,0.08531405,-0.023384625,-0.07154317,0.010930871,-0.0017241631,-0.059153304,0.037433386,0.0007968791,-0.062768914,-0.009784337,-0.0020403957,0.0057678283,-0.05641341,-0.0107948445,0.005856445,-0.039712343,0.059243146,-0.017967386,-0.0013948531,-0.110285446,-0.08335309,-0.008265852,-0.041170515,0.012928053,-0.007893794,0.09232604,-0.015196947,1.4540392e-33,0.08394293,0.0689231,0.064511865,0.0049847984,0.016219636,0.05110936,-0.06677621,0.0061598443,0.044462375,0.12637988,-0.021906752,0.013429768,-0.005535295,0.020720232,-0.033579513,-0.07580431,0.062605634,0.03325164,0.015540677,-0.08169124,0.02482807,0.006310681,-0.038630616,0.014557388,-0.043104827,0.024961468,-0.052501995,-0.07855974,-0.0044195964,0.00659908,-0.014322134,0.0039252816,0.03371348,-0.04985094,-0.053032577,0.039677616,0.038990147,-0.016444925,-0.068822406,-0.020201027,0.027410535,0.00085006765,0.010242737,0.044817742,-0.008763963,-0.01342231,0.018575113,0.12930568,-0.061179053,0.02920461,0.010118054,-0.00011195685,-0.017856373,-0.07106604,-0.021420369,-0.013413738,0.033971675,-0.08126778,-0.0022661455,-0.0032179859,-0.07072117,0.03694968,-0.094270036,0.059029274,0.01323709,-0.012486566,-0.07568147,-0.09263586,-0.108161464,0.05836363,-0.07505827,0.053023737,-0.057643134,0.04913263,-0.02317529,-0.062198177,0.05215126,0.043510456,0.0075042997,0.10994443,0.00310944,-0.008072442,0.007817652,-0.004987958,0.04187774,0.0583334,-0.0099304905,-0.037356164,-0.0016737208,0.079820916,0.10611361,0.06170695,-0.05716176,0.020106556,-0.06170498,-1.8033099e-08,-0.012757551,0.092430815,-0.033638876,-0.0036956377,0.037055455,-0.052214,0.07038751,0.045891758,-0.03544322,0.05764982,-0.0037486753,-0.0072854874,-0.039577376,0.0733552,-0.013272813,0.004066125,0.00848615,0.1134136,-0.015877144,0.041132826,0.05974886,0.03087846,0.018659228,0.03560266,-0.04351103,-0.06359492,0.04822136,0.007835444,0.009872562,-0.044506636,0.036210626,0.020302862,0.046006247,0.038479626,-0.03810284,-0.030633207,-0.026148181,0.05072694,0.02639009,-0.030461764,-0.028122025,0.01831425,0.0034684592,0.0054069622,0.040043313,0.0109919915,-0.036515348,-0.0035388875,-0.04835452,0.016923076,-0.078976214,-0.059064675,-0.051784366,0.08364354,0.090509884,0.04667196,-0.04612686,-0.005247775,-0.019173948,0.031404804,0.00591152,-0.021402158,-0.014121145,0.103531234} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.067071+00 2026-01-30 02:01:09.047716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 175 google Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB 1 t 178 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown The initial price looks to good to be true - no one can expect to get a car for that price. Understandable that they want to make some money - so the fine print is important. And somehow understandable.\n\nBUT: the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. But they do not care. AND THIS IS WHAT I CONSIDER AS CHEATING!!! the initial price looks to good to be true - no one can expect to get a car for that price. understandable that they want to make some money - so the fine print is important. and somehow understandable. but: the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. but they do not care. and this is what i consider as cheating!!! 1 2026-01-18 01:27:48.34003+00 en v5.1 R1.01 {} V- I3 CR-N {} {"R1.01": "the do not stick to their own contract and overcharge you substantially - even everything is clearly", "V1.01": "The initial price looks to good to be true - no one can expect to get a car for that price. Understa"} {-0.07392102,0.027944488,0.009526445,0.01695952,-0.051769245,0.0088925,0.006981199,0.03589618,0.044326108,0.0941278,0.025129154,0.050796293,0.01892052,-0.027257666,-0.029623993,-0.039616782,0.07345688,-0.07674928,-0.02896297,-0.01226102,-0.02330629,-0.051390905,0.0016315479,0.0046731653,0.08225898,-0.04626504,0.01885633,-0.0019301119,0.03213225,0.0066320733,-0.067113854,0.06717888,0.05773488,0.0030786586,0.04868802,-0.06818495,-0.008450649,-0.06203481,-0.063933805,-0.0035086586,0.019049047,-0.0713559,-0.07380207,0.019390102,0.03248723,-0.028180305,0.041247908,0.109408945,0.029734975,0.004532601,-0.011406785,0.035021152,0.01233806,-0.1138945,-0.061494824,-0.0050838497,-0.015200122,0.019806696,0.045098104,0.049206417,-0.0110732885,-0.033713598,-0.004098716,0.035429187,0.045140985,-0.017123243,-0.06450306,-0.051272415,-0.039859556,0.01903275,-0.008031883,-0.022444407,0.01033884,-0.03715961,-0.009620464,-0.015247333,0.04732607,0.028514955,0.014355463,-0.073593885,0.021491107,-0.02363479,-0.055065565,-0.042744774,0.038437523,-0.07022105,0.06426207,-0.016396094,0.11668556,0.054896817,0.06918504,0.007484789,-0.07062279,-0.06409877,-0.02744619,0.12961206,0.004072292,-0.027734613,-0.000107421925,-0.02501111,0.040478084,0.031592634,0.04090306,0.0022319779,0.01579199,-0.0019183678,0.0049620643,0.0127936285,0.03063853,0.016128607,0.043310784,-0.016431496,0.02105101,-0.010497393,-0.018973792,0.11701326,-0.033901583,0.019638889,0.05243758,-0.007829538,-0.019741429,-0.03284491,-0.0038080877,0.06251692,-0.072534546,-0.07415682,0.02796502,9.484702e-34,-0.067332424,0.046635512,0.0037522272,-0.011729022,-0.07177967,-0.031336557,0.007323857,0.1147721,-0.007857926,0.087422036,-0.018393641,-0.022180345,-0.019020779,0.0109486235,0.010694945,0.04479061,-0.083596654,-0.006353928,-0.01719884,0.033772856,-0.04968326,0.007149949,0.042962313,-0.062296614,-0.038567536,0.07468676,-0.0045078155,-0.011691557,0.05222198,0.021419423,-0.06256341,-0.034735087,0.03602266,0.054049265,-0.09033874,0.058309462,-0.04365353,0.0054656654,0.0028431213,0.013039077,-0.06354517,-0.02408881,-0.113593,-0.06509834,-0.010584624,-0.019695614,-0.014580594,-0.081176065,-0.03345051,0.033111062,-0.11550838,0.041815672,0.022139275,0.03326351,-0.047244526,0.012486068,0.04150624,-0.052249458,-0.027256325,-0.024110224,-0.00012101835,-0.017562233,-0.094495885,0.050543334,-0.19315042,0.060773514,-0.035909526,0.01758452,-0.015016848,0.056657605,0.049350876,0.014572036,-0.07286665,-0.066623084,0.030178268,0.056754585,0.02313896,0.06767134,0.089968875,-0.010682776,0.077674076,0.010679869,-0.0036084629,-0.023074169,0.017394686,0.021702325,-0.00722278,0.023402143,0.012254233,0.078783564,0.029187463,0.024810225,-0.0034091072,0.019298928,0.10944911,-4.386354e-33,0.0090838615,0.06744587,0.059628695,-0.014099164,-0.050656356,0.020600453,-0.12245954,-0.02288532,0.035838846,0.08335878,-0.05479631,0.045914974,-0.07825693,-0.022198433,0.035879172,-0.13560279,0.066280305,-0.0869097,0.07643467,-0.03425726,-0.056720465,0.023855526,-0.02655672,0.045482505,0.016401602,0.013467067,-0.013181932,-0.008377992,-0.020386726,0.0027560426,0.022197649,0.00370603,-0.00574484,0.050914094,-0.0068576583,0.018775325,-0.029220898,0.081759,-0.0075313873,0.039113764,0.024535483,-0.102161705,-0.07572676,-0.052087765,0.013700526,-0.11121684,0.050529692,-0.09779624,0.052526925,0.03712505,0.05058358,0.013528466,0.032039363,0.023146046,-0.13809152,-0.0065842196,0.014974884,0.08535617,0.065082885,0.001223346,0.08019093,0.04366082,-0.003986095,-0.075658776,-0.033479277,-0.10710136,0.016136004,-0.007224594,0.07432138,-0.03659315,-0.04883077,-0.055553116,-0.06299309,0.018786907,-0.013969309,0.044090845,-0.0013673344,-0.09735596,0.04579289,-0.060486853,0.066493504,-0.0061250213,0.068169236,0.05964611,-0.029300643,-0.09266955,-0.024153452,-0.0032347238,-0.016552465,0.11679309,-0.039597444,0.049840733,-0.095241256,0.03995815,-0.12517385,-4.8257405e-08,-0.006607665,0.0015199967,0.019330418,0.00832842,-0.03807059,-0.069276184,0.021635288,-0.0146421,-0.10497772,0.014338336,0.070810765,-0.04089331,0.016396958,-0.021626607,-0.08487981,0.058646206,0.012663099,0.0068795686,-0.025904614,0.07009209,-0.013030504,0.123635195,-0.08573651,-0.047677916,0.03236009,-0.025436433,-0.071612835,0.09923692,0.008425985,-0.011653093,-0.026783278,0.01265267,0.1274298,0.042429846,-0.004610721,-0.07462864,-0.025832778,-0.003887278,0.011833201,-0.07547296,0.005285937,0.022607364,-0.05964495,-0.018307064,-0.045287065,0.016160881,-0.09555262,-0.029564466,-0.045523763,-0.034528892,-0.011152063,0.029559752,-0.020867424,0.067311116,0.034231424,-0.07456819,-0.019900717,0.053386267,-0.029718459,-0.0031330236,-0.040120333,-0.0021327117,0.011972133,0.039776854} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:36:30.395545+00 2026-01-25 01:27:49.901028+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 176 google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB 1 t 179 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Choose a different company!\nWe get here by foot because didn't want to spend hours of waiting for a shuttle bus . Negative atmosphere in the office people are not happy with service. One lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. Took ages to get the car.\nWas charged 35€ for their fuel policy as we booked not via their website\nWas charged another 60€ for managing the damage. ( windscreen chip costs €1200)\nCouldn't find any of this info in terms and conditions.\nReceived damaged car.\nWaited shuttle as the driver needed to check damage on the car. And he was waiting another employee(not sure why it takes 2 person) We asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him) choose a different company! we get here by foot because didn't want to spend hours of waiting for a shuttle bus . negative atmosphere in the office people are not happy with service. one lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. took ages to get the car. was charged 35€ for their fuel policy as we booked not via their website was charged another 60€ for managing the damage. ( windscreen chip costs €1200) couldn't find any of this info in terms and conditions. received damaged car. waited shuttle as the driver needed to check damage on the car. and he was waiting another employee(not sure why it takes 2 person) we asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him) 1 2026-01-18 01:27:48.340043+00 en v5.1 A1.04 {J1.01} V- I2 CR-N {} {"A1.04": "We get here by foot because didn't want to spend hours of waiting for a shuttle bus. Negative atmosp", "J1.01": "Received damaged car. Waited shuttle as the driver needed to check damage on the car. And he was wai"} {0.016584454,0.087755926,0.06495854,0.0049483073,0.09513866,-0.023753444,0.1216324,0.06358027,0.03195672,0.016228968,0.052489743,-0.011030728,-0.020634476,0.032235734,-0.02468055,-0.07574955,0.07438167,-0.052390665,-0.089604355,0.021495443,-0.0032762238,-0.026079182,-0.030335069,0.0039169006,-0.000985423,0.004724189,0.0034916787,0.10519236,-0.0037440273,-0.059923016,-0.006951173,-0.035747703,-0.021317339,0.007433744,0.05476244,-0.052077185,0.005480957,-0.039856933,-0.052979834,-0.06637485,-0.033995446,-0.0114877615,-0.026129488,0.033678778,0.025785556,0.01575782,0.12010312,0.0076809856,0.12102472,-0.026954176,-0.057317536,0.021962984,0.007197798,-0.059534088,-0.041746467,-0.039174743,0.03161327,-0.0054635922,-0.036674354,0.010617564,0.0049379314,-0.08374212,0.0001343734,0.03280287,0.00392971,0.020801727,-0.03643293,-0.09752258,0.09803914,0.075654425,0.020543316,-0.042014807,0.054702718,0.0003324206,-0.030682808,-0.017794013,0.011638105,0.013371805,0.056027357,-0.053568397,0.018215928,-0.076029755,-0.030972974,0.059707142,-0.0111067025,-0.019861631,0.012875241,0.101316094,0.04287009,0.040101234,-0.047774762,0.013822374,0.088079855,-0.008245822,-0.03634288,0.011704002,-0.027283665,-0.0014204687,-0.07072283,0.024860384,0.02502639,0.07918957,-0.008546156,-0.023183076,-0.0027954571,0.03667696,-0.013068477,-0.016190117,0.014627305,0.007869938,0.01960497,0.016156899,-0.015629942,-0.016014047,-0.029551603,0.030472284,-0.06880519,0.008068482,0.020125255,-0.03119458,0.017076008,-0.028021952,0.027764302,-0.0050202846,-0.04099265,-0.04232269,0.09816781,6.0998628e-33,-0.027157824,0.08169915,0.013440539,-0.0025350875,0.09356893,-0.0187403,-0.041546617,0.051832892,0.024945093,0.04783649,-0.06980834,-0.048657767,0.057768583,-0.10131347,-0.03926761,0.06696191,-0.0015157006,0.030795608,-0.13321358,-0.01249799,-0.01524464,-0.12014646,-0.02137409,0.025846146,0.016549744,0.022788318,-0.015534248,-0.0020623768,0.1658427,0.02141045,-0.088950925,0.060066134,0.062102847,0.077908374,-0.018048797,0.004479905,-0.08031971,-0.0006967121,-0.086779244,-0.043927938,-0.09234347,-0.0114304125,0.014651334,0.03393261,-0.011370352,-0.03431244,-0.058922563,0.015464414,-0.06915437,0.0063315914,-0.09250916,0.033264723,0.09782189,0.043118652,-0.07166361,0.0413179,0.07901087,0.040486705,0.08099964,0.02073155,0.04623504,0.097024664,0.007174806,0.018832194,0.031984106,-0.027693465,-0.0048875567,0.007501162,0.015342436,-0.06782365,0.037441626,0.10993299,0.06549644,-0.011188242,-0.04308482,0.032431114,-0.0402614,0.007245682,-0.00067738746,-0.02555988,-0.0011744715,-0.012974382,0.073056325,-0.07252958,0.02422706,0.028894149,-0.0019953947,0.012137574,-0.039589528,0.10469347,-0.118484385,0.01807562,0.0270449,0.011085198,0.02931605,-6.328275e-33,-0.011889681,-0.06886323,-0.025824461,-0.04652574,-0.001809357,-0.0329193,-0.035429504,-0.009045208,0.027420536,0.010186672,-0.10625125,-0.013016886,0.024759086,-0.027054453,-0.019455256,-0.05551172,0.06380211,-0.081207216,-0.08166266,-0.04636769,0.050307844,0.062531345,-0.021674355,0.11261034,-0.093948655,0.11281122,0.081143424,-0.012026876,-0.041277997,-0.030429907,0.0109292595,-0.006224353,-0.019771669,0.035975084,0.019439314,-0.02478048,0.027344065,0.045556974,-0.04520487,0.009928964,0.01666825,0.069344476,0.011593289,-0.0014101735,0.06590093,-0.15140408,0.023136087,-0.13862878,0.008276821,-0.014188213,0.021169608,-0.11610318,-0.010011478,0.082453825,0.0006236578,-0.023507481,0.10162209,-0.06723778,0.04380309,0.0036624572,0.056772616,-0.029852243,-0.0048858933,0.064691395,-0.038560458,-0.032813042,-0.009279552,-0.012672719,0.02970121,0.012511775,-0.028002419,0.036920812,0.0035568483,0.02981381,0.028805071,0.06107113,0.050781135,0.0201256,-0.03913842,-0.040874004,0.050471555,-0.10001383,0.026961846,0.050633427,0.022456696,-0.012866502,0.06137205,-0.075603336,0.013377315,0.019766545,-0.06864606,-0.004633569,-0.045489263,0.034145232,-0.028076826,-5.9614344e-08,-0.07256916,0.030626995,0.039345387,-0.0056875786,0.004742777,-0.090577565,-0.01563363,0.0015692349,-0.05903374,-0.085978664,-0.03358283,-0.035322458,-0.012714486,0.062489007,-0.074840665,-0.001297475,0.012426542,0.06622515,-0.055775918,-0.0090644155,-0.018029144,0.0403857,-0.0495721,-0.011004412,0.0020034942,0.008889597,-0.034453806,0.017407704,0.07759918,-0.07653268,-0.13741428,-0.00024774682,0.040709537,-0.006203365,-0.047944453,-0.10068601,0.013259009,0.0016610165,-0.018574385,-0.011730765,-0.008487245,0.020738427,-0.013188963,0.008424159,0.06514965,0.010269758,-0.11165385,-0.028365906,-0.09609341,-0.02606482,0.04119946,-0.042219896,-0.014347009,0.16762526,-0.03084061,-0.053631086,0.0067150556,-0.0037569858,0.00488242,0.03725837,-0.050422017,-0.033183668,-0.041836414,0.050372332} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:36:45.193244+00 2026-01-25 01:27:49.907083+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 178 google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB 1 t 181 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup service was arranged very well and they took good care of us.\n\nThey did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. In the end booking directly with them would have been cheaper. The car was great, brand new with only 8 km driven with it.\n\nOverall great company, we will book again directly with them. very good service, pickup was easy and so was the return. deposit came back right away. the pickup service was arranged very well and they took good care of us. they did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. in the end booking directly with them would have been cheaper. the car was great, brand new with only 8 km driven with it. overall great company, we will book again directly with them. 5 2025-11-26 01:27:48.340057+00 en v5.1 V1.01 {} V+ I2 CR-N {} {"O1.01": "The car was great, brand new with only 8 km driven with it. Overall great company, we will book agai", "V1.01": "Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup s", "V1.03": "They did ask for additional €95 for gas and you get this back when you return the car full and addit"} {-0.0850808,0.039270133,0.0008397491,0.021618929,-0.080952786,0.045928184,0.025347698,0.02017545,-0.020978255,-0.08523321,0.015319232,0.08711998,0.008738492,-0.0046598436,-0.05004569,-0.06980925,0.11508615,-0.12918563,-0.036797117,-0.016845636,-0.121270105,-0.024857856,0.020698728,0.0053520305,0.025150718,-0.008723695,-0.05159092,0.025525713,-0.011235178,-0.06589075,-0.031407755,0.05851384,-0.015551184,-0.055891164,-0.01264762,0.0025603275,0.057913803,-0.038984932,-0.05939766,0.0017615799,-0.029804915,-0.097858466,-0.050433822,0.00054315844,0.0060054203,-0.004871652,0.07353439,0.05213931,0.04226128,-0.0300346,0.033650823,-0.048343644,0.03178706,-0.021776672,-0.0584741,0.04031263,0.013540736,-0.00974883,-0.058268834,-0.083092615,0.08119221,-0.026502056,-0.04108637,0.007920772,0.06335092,-0.06175474,-0.09847776,-0.110120736,-0.031268235,-0.089539394,0.0036165188,-0.01665596,0.041676823,0.038467422,0.002798016,0.03630368,0.04911705,-0.017772336,0.033434644,-0.06862862,0.05938502,-0.004300387,-0.046763238,-0.0011077108,0.0044348473,-0.094247185,0.017374914,-0.009247104,0.026541764,-0.03311082,0.07914856,0.059445515,-0.011861017,-0.039607514,-0.026596824,0.042636946,-0.0054540895,-0.0040964973,-0.0015280166,0.025801346,0.09796412,0.12369006,0.007686783,-0.07261606,-0.07592893,0.0016806263,0.0249025,0.09212284,-0.0134598175,-0.058755375,-0.007094849,-0.0049563283,-0.010617398,-0.019271642,-0.068809055,0.09359785,-0.08205266,-0.013078528,0.05787706,-0.020910779,-0.014916564,0.034982957,0.009978287,0.025356293,0.005870084,-0.028183684,0.120387994,4.9301107e-33,-0.092213064,0.06372467,0.010442754,-0.021562856,0.01540232,-0.008784309,-0.084795676,-0.0045150737,-0.037050232,0.03121739,-0.035724614,0.028935773,0.06882894,0.0032120494,-0.06569598,0.017055135,-0.087228574,0.028850613,0.002714896,-0.018770907,-0.02025205,0.056333225,0.013136583,0.003532046,0.09772168,0.010772955,-0.049721822,0.023861181,0.116568856,0.014082921,-0.035240185,0.0064643687,0.01797742,-0.0015295495,-0.018535852,0.091507755,-0.07259743,-0.051803768,-0.092120625,-0.03732814,-0.027679458,0.03371925,-0.107606955,0.05041923,-0.08225537,0.028794013,-0.029391473,-0.07215112,-0.02983291,-0.013759761,-0.060522154,-0.03158795,-0.07467055,0.10345026,-0.053960226,0.09728784,0.05778991,0.03750968,-0.025383433,-0.037733063,0.05817647,0.038472645,-0.008379641,-0.054495905,-0.047572244,-0.05329046,0.007112588,-0.010391203,0.05595259,0.0051180148,0.00065674586,-0.0029936272,0.07515076,-0.020251207,0.07657568,-0.025474943,-0.03433078,-0.058163207,0.024398956,0.005838628,0.019496145,-0.022277119,0.060854547,0.005433475,0.089732006,0.007965607,0.0054602907,-0.07323977,0.0120222485,0.072275415,-0.031175599,0.07303284,0.018028969,0.021662598,0.087816834,-6.622233e-33,0.035454705,0.056002993,0.0159567,0.0630307,-0.050691824,0.0658789,-0.06198205,0.037502285,-0.002770954,0.05902743,-0.07192816,0.023835521,0.037544273,-0.001484534,0.015518388,-0.062053792,0.05065099,-0.08654218,0.042675123,-0.03830356,0.010456642,0.017456898,-0.00870201,-0.004134726,-0.08968179,0.033217017,-0.0535485,0.034439962,-0.076600954,-0.04460023,0.031229245,-0.035636246,-0.0027009083,0.0072069494,-0.0059213554,0.009891315,0.05846468,0.110196605,-0.049146466,0.015151429,-0.01670276,-0.045045815,-0.021205995,0.01608213,0.010632541,-0.087670594,0.06490088,-0.071669236,0.0464418,0.015011169,0.03224541,-0.0636901,-0.06742455,0.072185785,-0.023139812,0.041535124,0.11299219,-0.0091357175,0.030035593,0.029567227,-0.02769558,0.01887593,0.008071518,-0.01668619,0.07268336,-0.13914418,0.054925766,-0.07551206,0.058427345,-0.036959544,-0.058180794,-0.025445433,0.044076838,0.09396278,0.002297219,0.033929188,0.0716424,-0.08225685,-0.017998282,-0.0009158371,-0.034786306,-0.07112336,-0.00045092913,0.0047825878,0.015449794,-0.027521728,0.027896475,-0.07260416,0.01775501,0.05655669,0.036440995,0.017061021,-0.0073823994,-0.053139422,-0.04912235,-5.001719e-08,-0.03083077,0.047490902,0.015923044,0.04984369,0.0015933581,-0.082237415,0.06888133,0.12562111,-0.0679604,0.030827956,0.043134138,-0.020592188,-0.046162426,0.0040248204,-0.025955943,-0.012763029,0.10078978,0.05643751,-0.029197637,0.006854162,0.033620607,0.084541805,-0.01802968,-0.01602422,0.025565082,-0.018549362,0.026782364,0.09933517,0.0036705744,-0.09726595,-0.0570827,0.042118177,0.0728164,0.028770762,0.009187373,-0.056213193,-0.02165538,0.007875562,6.3589134e-05,-0.028628951,0.037888583,0.007086466,-0.061878826,-0.062128216,0.037080258,0.029636674,-0.10420816,-0.0015288312,-0.037642177,0.0042512724,-0.022358673,-0.07169859,0.024232112,0.08987582,0.11483457,-0.045106508,-0.020485139,-0.025178256,0.033807084,0.065825775,-0.09462112,-0.0073270495,-0.05429617,-0.010670811} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:37:25.538156+00 2026-01-25 01:27:49.916842+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1344 google Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB 1 t 1347 Go Karts Mar Menor unknown Great and competitive karting track. A challenging circuit where you can enjoy with family and friends. great and competitive karting track. a challenging circuit where you can enjoy with family and friends. 5 2025-12-31 01:52:39.833374+00 en v5.1 O2.02 {} V+ I2 CR-N {} {"O2.02": "Great and competitive karting track. A challenging circuit where you can enjoy with family and frien"} {-0.06459033,-0.006413827,-0.013008333,0.014166472,-0.070556805,0.07907256,-0.012966206,0.026572462,0.003185601,-0.026076736,0.0096230665,0.0320657,0.007911056,0.0032356621,-0.040017698,0.013318934,0.062271543,-0.009291705,0.044082157,-0.058952942,-0.03220278,-0.054797623,0.0029260197,0.039484523,-0.09847867,0.051510192,-0.050678454,0.035967965,-0.014897385,-0.08336701,-0.10335763,0.011157086,0.016239895,-0.008134071,-0.075408965,-0.055137146,-0.08355773,0.0073829237,-0.008422788,-0.020796238,-0.014534448,-0.04768489,0.079295605,-0.030122118,0.032444384,0.051829338,-0.044081878,-0.050641675,0.037099633,-0.0169566,0.044067204,-0.08198438,0.100306146,-0.007197659,0.023723863,0.013816551,-0.0680781,0.02524002,0.054750163,0.0018336534,0.059254464,-0.049969662,-0.019638086,0.046565704,-0.03934665,-0.093140006,-0.08213578,0.06938712,0.024714977,0.00717633,-0.015320538,0.02126795,-0.011602417,-0.0011151382,0.073157124,0.03808292,-0.038703807,0.031550128,-0.07446439,0.05099949,0.049115084,-0.05805774,-0.0028629932,-0.0657763,0.08281371,-0.09084927,0.09602575,-0.04251382,0.047381204,0.002739415,-0.01768068,0.08895376,-0.029936543,-0.067204356,-0.03562189,0.039989546,-0.026690632,0.01009529,-0.016162878,0.027041443,0.092088334,0.060576897,0.029251868,0.045858957,-0.0385392,-0.061434656,-0.028542148,0.037407972,0.039372858,-0.046493515,0.038133368,-0.056585763,-0.017268552,-0.02770635,0.035100516,0.039067313,-0.00017487159,0.10640488,0.035946213,0.024935354,-0.059813857,-0.027673673,-0.054387562,0.029172357,0.026239328,0.013897844,0.0620502,-3.2350857e-33,-0.07342454,0.017801953,-0.0036071865,-0.0425822,0.023672407,-0.086977124,-0.10779903,-0.062461544,-0.09133514,0.041057996,-0.00032855832,0.060260277,-0.013756171,-0.010998115,0.130662,-0.070708625,-0.12911655,0.012247408,-0.0143758925,0.037744872,0.056181993,-0.033803914,-0.011631662,0.02439754,0.04602566,0.023003338,0.11013294,-0.04572381,0.02499785,0.006854288,-0.07805309,-0.009351818,-0.038355783,-0.011441143,-0.032961614,0.04910531,-0.029714212,-0.048307676,0.015918408,0.069221,-0.020504517,-0.06378312,-0.018472645,-0.0015424684,-0.0708514,0.03680177,0.063254945,0.06923995,0.010682726,0.057370495,-0.11707619,-0.05573754,0.027515588,0.01795922,0.034240153,0.023198381,0.043543447,-0.003700572,-0.012014814,0.01654437,0.016360408,0.025407353,-0.065186046,-0.04186324,-0.13745224,0.0060014375,0.009513637,-0.047053613,0.043144148,0.009941677,-0.059590403,0.03953235,-0.020595575,-0.10227848,0.11957767,-0.009455641,-0.06083996,0.012056044,-0.040306345,0.0072535374,-0.11313911,-0.0060625537,-0.014393503,0.011339523,0.064316526,-0.014281223,-0.05579326,-0.075178325,-0.021024736,-0.028623635,-0.03906969,0.0075154244,0.021994116,0.14013381,0.07169531,1.6335496e-33,0.06046997,0.06693224,0.15221585,0.0987919,0.08652219,0.05242382,0.03923352,-0.044553645,0.032983,0.06926069,-0.061323483,0.02565408,0.0022363868,0.046265632,-0.017924054,-0.09437896,0.012533347,0.038932204,0.06579355,-0.07484047,0.06940876,0.025675282,-0.05912311,-0.04141803,0.01566308,0.02921568,0.014600515,-0.035762347,-0.049348786,0.052595027,-0.050487075,0.002316438,-0.009364011,-0.06941414,-0.06013313,0.08621839,0.052541975,0.07142726,-0.06606658,-0.03412971,0.021677604,0.049095303,0.017345222,0.04271937,-0.028972268,-0.011229187,0.07725794,0.071751736,-0.022896877,0.05452045,-0.0014153399,-0.02019496,-0.041043002,-0.025389558,-0.03503026,-0.02527876,-0.03298601,0.045337543,-0.071318194,-0.0049246624,-0.041286394,0.028073978,-0.038541693,0.07460335,0.042395364,0.018052341,0.0015365196,0.023304554,-0.06515909,0.04160505,-0.106164016,0.078284726,0.022615876,-0.0044314284,0.026535284,-0.03289135,0.012460946,0.05250675,0.050148334,0.05051652,0.04474362,-0.04990525,0.014948463,-0.026253413,0.043959443,0.040781934,-0.061902396,0.022951622,0.027917335,0.03121264,0.07331668,0.07123636,-0.022440985,0.02210186,-0.069256134,-2.1767057e-08,-0.01932838,0.05348046,-0.07564066,-0.059085447,0.043986946,-0.03727958,0.07689477,0.012695192,-0.09615092,-0.019590013,0.018568672,-0.003150827,-0.0018371661,0.04663802,0.02608277,0.024142688,0.00023765337,0.1470707,-0.02060111,0.06460055,-0.025498873,-0.022218987,-0.0024116521,0.017632728,-0.014229379,-0.013410923,0.03588833,0.05958349,0.04144896,-0.099423826,0.0014946067,0.03774111,0.03689585,0.05160456,-0.0043907855,0.007891018,-0.10787941,0.06935628,0.009023011,0.0056018136,-0.06909964,-0.03278012,-0.047569115,-0.020118186,-0.05529533,0.029497923,-0.0077136257,-0.049851324,-0.032403857,0.047892153,-0.08155333,-0.050947625,-0.030194294,0.040095776,0.08169478,0.05247642,0.016766258,-0.05641295,-0.070281744,-0.008152356,-0.018476319,-0.026186036,0.00868517,0.07625179} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.462599+00 2026-01-30 02:01:09.058339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1340 google ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE 1 t 1343 Go Karts Mar Menor unknown A very good family run kart track. Extremely friendly..low prices ,choice of karts slow-fast and children's karts and doubles.\nI have been here many times. a very good family run kart track. extremely friendly..low prices ,choice of karts slow-fast and children's karts and doubles. i have been here many times. 5 2023-01-31 01:52:39.833374+00 en v5.1 V1.01 {V1.01,O3.02} V+ I3 CR-N {} {"V1.01": "A very good family run kart track. Extremely friendly..low prices ,choice of karts slow-fast and chi"} {-0.011955963,0.017830951,0.030217554,0.07957512,-0.114665665,0.059134323,-0.052821297,-0.01866704,-0.019840002,0.004757091,0.009490101,0.006763779,-0.012209338,-0.015202264,-0.004025397,-0.05850433,0.10446263,-0.11461956,0.018726462,-0.0868027,-0.080795385,-0.031347677,0.053371318,0.07288008,-0.10148473,0.05775224,-0.025450537,0.09336223,0.0016902478,-0.017894782,-0.067626424,0.025210923,0.028002866,-0.0052745948,-0.06191001,0.0026465217,0.047300294,-0.042045575,-0.046456475,0.01779135,0.010696618,-0.00033571327,0.042863883,0.012564718,-0.018593177,0.0147231715,-0.061981894,-0.038265657,0.04147663,0.07368194,0.07085921,-0.03439971,0.0691958,-0.04492097,0.016627172,-0.004578327,-0.11745085,0.042279013,0.0686541,-0.021357384,0.07269261,0.0026750492,-0.07217267,0.033255022,-0.047223397,-0.0887676,-0.11349775,0.035722475,0.05197998,-0.06943425,0.009177101,0.05737688,0.038895678,0.058881868,-0.054685384,-0.0118774045,0.014852196,-0.052433286,-0.09473951,0.02193828,0.03526173,-0.041278157,-0.024597138,-0.084903054,-0.00793823,-0.059832495,0.059794035,-0.017130252,0.0047943345,-0.042372853,0.041832276,0.08197404,-0.03278018,-0.05703545,0.040302914,0.024114337,-0.013746094,0.0152626475,-0.032986067,0.017046273,0.082659274,0.082909025,0.07394308,0.07740305,-0.041185994,-0.025769236,-0.056514427,0.10565966,0.055839285,-0.011981869,-0.013425166,-0.023859879,-0.042451423,-0.0074619423,0.0036785982,-0.010966701,0.010581358,0.04265244,0.0030341237,0.04510243,0.011224468,-0.0068001864,-0.0032527489,-0.01051009,0.035458934,-0.048824593,-0.008069125,-1.3745086e-33,-0.073601745,0.02929443,0.008281449,-0.04979295,0.016448263,-0.08441337,-0.07224337,-0.10520625,-0.13429865,0.08518918,0.042185087,0.04977972,0.006999653,0.056600332,0.10499918,-0.009859723,-0.060953688,-0.014643051,-0.037142195,0.056245808,-0.0007269266,0.019487103,0.01464367,0.02303139,0.05164371,-0.05076087,0.09074479,0.009958171,0.061920438,0.00919593,-0.048751887,-0.027594239,-0.06350419,-0.03157182,-0.08391396,-0.000912958,-0.058702268,-0.076477304,-0.013956595,0.024330279,0.008108713,-0.05130411,-0.015278646,0.06486478,-0.0048925295,0.013093783,0.04384344,0.030648667,0.042292792,-0.0041439557,-0.08306214,-0.030294307,-0.06680898,0.019186025,-0.028930344,0.021286367,0.066701986,0.028900068,-0.017840067,0.0024652,0.054147705,-0.03416627,-0.015882932,-0.106035694,-0.09340358,-0.033958893,0.014249088,-0.0092605185,0.040184725,0.023524718,0.0029508083,0.010179123,0.0084664775,-0.026729368,0.07269912,0.022359261,-0.061615482,0.025303036,-0.033272073,0.06503905,-0.051111706,0.01693813,0.003650414,0.01925244,0.06777075,-0.007851843,-0.06470783,-0.071389526,-0.058994193,-0.0042487783,0.008076734,0.029862003,-0.014464512,0.078799374,0.009359875,-3.7484306e-34,0.06734393,0.048597198,0.097801074,0.1046504,0.027448213,0.021781985,-0.011606269,-0.016534174,0.044849318,0.0607147,-0.08906586,0.051903754,0.063853934,0.06387161,-0.010439993,0.0011823209,0.10671904,0.03995567,0.057920687,-0.110102504,-0.01815583,0.047376912,-0.04178999,-0.04291901,0.019672353,0.0297578,-0.058398403,-0.0032255333,-0.095921956,-0.009771785,-0.066986464,-0.04271475,0.061484102,-0.063827515,0.0038635097,0.07608046,0.04758958,0.001643334,-0.10254539,-0.0038262615,0.03955572,0.047041725,0.030968055,0.03684389,-0.04544079,0.010854635,0.047533643,0.047917437,0.011365501,-0.03230813,0.055857193,0.024716632,0.004359429,0.004988637,-0.028638158,-0.024645632,0.009363669,0.04556378,-0.04046634,-0.00937646,-0.058151957,0.01490542,-0.038704224,0.07711383,0.025308212,-0.02863781,-0.037997946,-0.07086664,-0.09003849,-0.0034833874,-0.11565406,-0.0018406755,-0.05854389,0.0015272393,-0.025310481,-0.004784422,0.06493179,0.014489216,0.0394815,0.116437614,0.04328231,-0.015407539,-0.016599055,-0.028148247,0.043846052,0.021010851,-0.060258936,-0.010245296,0.019189725,0.04209996,0.109330855,0.06679347,-0.10155104,0.008624055,-0.06962115,-2.6185567e-08,0.039451435,0.042884365,-0.0652695,0.040139727,0.008925712,-0.022727588,0.07248846,0.034987938,-0.065041244,0.016607359,-0.04123503,0.007976312,-0.021478698,-0.0047897073,0.041974917,-0.027561398,0.02715514,0.14551531,-0.003014597,0.06040421,0.045534763,0.048379757,0.009283439,0.052049354,-0.08396483,-0.047162212,0.06742721,0.016695445,0.05001878,-0.038008425,-0.030191306,0.0810878,-0.035475884,0.023114286,-0.043359194,-0.04864042,-0.116882466,0.07549757,-0.00035916743,0.015437596,-0.0317309,-0.054714303,-0.09599362,-0.026540026,-0.045466542,0.028362026,-0.03399817,-0.022770332,-0.048021223,0.05125015,-0.10381213,-0.035388827,-0.056263138,0.041011684,0.08405133,0.043470357,-0.011252216,-0.050814055,-0.00232174,0.018778069,0.022781914,-0.058888584,-0.026022743,0.0827912} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.781461+00 2026-01-30 02:01:09.028954+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1341 google ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE 1 t 1344 Go Karts Mar Menor unknown Great experience for children and adults. Friendly, helpful staff. Will definitely return great experience for children and adults. friendly, helpful staff. will definitely return 5 2025-05-05 00:52:39.833374+00 en v5.1 P1.01 {P2.01} V+ I2 CR-N {} {"P1.01": "Great experience for children and adults. Friendly, helpful staff."} {-0.043865804,0.019264812,0.0739295,0.03845303,-0.06734277,0.01345206,-0.039317746,-0.066576004,-0.03143634,-0.084405705,0.054153193,0.049143374,-0.039879616,0.047003593,-0.033674754,-0.0004538726,0.079751536,-0.0731721,0.02241136,-0.07541806,0.0015708797,0.030955074,0.008258814,-0.006295719,-0.054893374,0.038457546,-0.049990587,0.011033277,0.0052064327,-0.04824728,-0.018086711,0.0064792745,-0.0042485297,-0.050099183,0.035458334,0.14779243,0.047306065,-0.04279007,-0.035470128,0.016167821,-0.06268152,-0.015121048,-0.012256352,-0.025574423,0.02165415,-0.00056174374,0.012782392,-0.09061822,0.121105015,0.00725256,0.06958195,-0.05469979,0.056341253,0.018875215,-0.05462143,0.061050907,0.022629464,-0.0819486,-0.03500838,-0.054203693,-0.0066639646,-0.024484113,-0.060253598,0.07097221,-0.007458757,-0.04863742,-0.057331536,-0.04997281,0.054442145,-0.100806676,-0.06834701,-0.043991376,0.1320214,0.067625076,0.015982268,0.05841492,0.0058455826,-0.05333655,0.06053384,-0.066180676,0.016694255,0.011957126,-0.0049673333,0.032844722,-0.05165617,-0.06352922,0.05408907,-0.023687888,0.0096892165,0.02162457,0.080169685,0.1573019,0.017793357,-0.00811485,0.0021711395,-0.026600303,-0.023211693,-0.008594181,-0.08693525,0.02535717,-0.00036303347,0.07966222,0.0077212206,-0.048912838,-0.04751378,-0.006365376,-0.013365132,0.0055607287,-0.040737137,-0.0054393196,-0.05429843,0.056706633,-0.010582774,0.0015900462,-0.01663251,0.051569548,-0.014372452,-0.02426745,-0.04032228,-0.048261803,0.04133295,0.091615945,0.0028430652,0.0046360856,-0.0067124683,-0.0034157357,0.07564006,-2.4205761e-33,-0.031925358,0.073077925,0.015683288,0.048984226,0.058532987,0.037933014,-0.029150162,-0.0070477067,-0.0041010985,0.02433061,0.02049822,0.07225252,0.05328612,-0.05922405,-0.10933907,-0.0042932234,-0.07491102,0.07489926,-0.08677315,0.08147872,-0.07856877,0.005321715,-0.03468711,0.09063734,0.063272946,0.005446378,0.030428119,0.032089084,0.12994896,0.00780784,-0.048929144,-0.024275484,-0.0097776465,-0.08922892,-0.024803681,0.08676217,0.010970383,-0.029381197,-0.040755868,-0.050649725,-0.025818361,0.049818546,0.032792695,0.03462182,-0.012696713,-0.038970247,0.08948517,-0.041273117,-0.024759036,-0.018837992,-0.078358285,0.010347622,-0.018833261,0.06155904,-0.025946915,0.00082206697,0.005686088,0.07128552,-0.007342252,-0.047725644,0.14778729,0.059466783,-0.048677687,-0.07247069,-0.015794924,-0.123141535,0.027231546,0.011513335,0.043509983,-0.039999448,-0.0032432443,0.10949791,0.05708504,-0.02520128,-0.034052115,0.04263767,-0.07994774,-0.096992135,0.07853663,-0.033925343,0.046226352,0.0065823216,0.012390452,0.020718968,0.10077922,-0.009422973,0.012273967,-0.11859811,-0.07690213,0.056513008,-0.007870381,-0.003124194,0.09229353,0.08219362,0.033175487,5.441175e-34,0.061721202,0.04020764,-0.003210334,-0.033696298,-0.029101368,-0.013869777,-0.07343357,0.11981897,0.0041406043,0.051406905,-0.043725114,0.04670328,0.031634603,0.045465577,-0.07820868,-0.04550858,0.0055588647,0.0025819922,-0.0008566685,-0.0648975,0.05453532,0.13464633,-0.01738526,-0.009138986,0.0022452704,0.074203536,-0.015504688,-0.00866921,-0.09245781,-0.088774994,0.0077845184,-0.011070143,0.06693177,0.076456666,0.056289963,-0.004703772,0.016638618,-0.043393206,-0.074046634,0.03628537,0.06616376,-0.0050158123,0.0010181667,-0.018199533,-0.0076851267,-0.033281937,0.03841193,-0.046946373,-0.041024618,0.013749411,-0.06562487,-0.04221302,-0.039176926,-0.09863637,-0.028991768,-0.0028449912,0.03716494,-0.11692138,-0.012297794,-0.0417987,-0.044358406,-0.017806482,-0.018878095,0.0587349,0.08788054,-0.08124039,0.028421026,-0.0017621582,-0.046632085,-0.0016213884,-0.026430482,0.023671329,-0.020357432,-0.040190473,0.051505048,-0.0062103895,0.054303557,-0.12547421,-0.057229873,0.053672507,0.051127095,-0.026951293,0.04267798,-0.034126252,0.076681584,-0.013228518,0.0682563,-0.031165803,-0.06307835,0.05338277,0.0026203736,-0.0037383325,-0.03704846,-0.015529094,0.025592396,-2.20943e-08,0.02122175,0.04696656,0.022669923,0.007947517,0.071982086,-0.13111861,-0.025250124,0.029939013,-0.034365073,0.006489393,-0.07937943,-0.014713898,-0.003614628,0.018986292,0.15280558,-0.01959843,0.034923166,0.04686776,-0.04727286,-0.037787825,0.0033332242,0.05528365,-0.013418187,0.038843486,-0.041172918,0.038253624,-0.026439844,0.022653705,-0.10145542,-0.017998653,-0.002128905,0.02458079,0.019109804,0.034845944,-0.031362645,-0.0537395,-0.017500678,-0.0077155586,0.045488145,0.014807524,-0.035509706,-0.025037682,0.00744986,-0.0009634399,-0.010471421,-0.01216675,0.014674592,0.05936138,-0.003494997,0.0026323143,-0.038285196,-0.06520526,0.026165536,-0.022232488,0.0024527821,0.022627668,0.0015605676,-0.006010037,-0.016140386,0.06160289,-0.0030792856,0.0011657755,-0.053826023,0.056353036} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.002577+00 2026-01-30 02:01:09.032315+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1349 google ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE 1 t 1352 Go Karts Mar Menor unknown Great place to come for ages 6+. Friendly staff, well looked after go karts and the track was really good. We will be back. great place to come for ages 6+. friendly staff, well looked after go karts and the track was really good. we will be back. 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {O1.04,O2.02} V+ I2 CR-N {} {"P1.01": "Great place to come for ages 6+. Friendly staff, well looked after go karts and the track was really"} {0.029089019,-0.006160435,0.03610371,0.06287657,-0.07279022,0.039433494,-0.06652805,-0.06842619,-0.06332683,0.010335669,-0.0012875705,-0.008616036,-0.0541493,-0.0055691204,0.015972683,-0.053427067,0.076211125,-0.08635911,0.020875787,-0.12381695,-0.063532464,0.01614646,0.009634417,0.06216161,-0.082391165,0.010877318,-0.060726892,0.05479786,0.046408832,0.02388575,-0.057701856,0.06529932,-0.0013521537,-0.021795072,0.027576419,0.09720289,0.0580969,-0.08037317,-0.02079347,0.06401247,-0.03485502,0.033795644,-0.02987992,-0.03700462,0.021963554,0.017665928,-0.008284504,-0.06740517,0.07803128,0.034330167,0.097091146,-0.06544558,0.0760899,-0.07329753,-0.030381525,0.026546907,-0.080738544,-0.04863551,0.0691039,-0.026564676,0.0029628843,-0.022830648,-0.084251806,0.013523378,-0.082622215,-0.11382475,-0.075013496,0.11250035,0.082192056,-0.024303248,0.0030076038,0.012300921,0.10259275,0.02183868,0.02232599,0.015070918,-0.055414326,-0.05257899,0.011844512,-0.067352176,0.053352203,-0.050457064,-0.010835738,-0.030372897,-0.052255813,-0.104313515,0.07043058,0.023527483,-0.0040054675,-0.005556303,0.059413224,0.16811463,-0.03922796,-0.015294236,0.04811717,-0.036524996,-0.024354083,0.047962226,-0.016583154,0.019722847,0.044294763,0.09919582,0.05029877,0.06440463,-0.06390076,0.03843876,-0.027849842,0.101021074,0.032984354,0.005472759,-0.010830829,0.085272804,0.000820861,0.0075191595,-0.0036689094,-0.0015726745,-0.01935364,0.027253961,-0.038401604,-0.023599401,0.031065365,0.07998628,0.00075105357,0.04559697,0.00883851,-0.018848803,0.05701566,-2.3082402e-33,-0.059118256,0.06527614,0.0023819036,-0.025368895,0.07699488,-0.041937657,-0.028796308,-0.1330056,-0.122839026,0.024612317,0.026863988,-0.025819235,0.0069246707,-0.09772667,0.064977214,0.034659933,-0.006092618,-0.030311242,-0.07427321,-0.0040517985,-0.040205155,-0.064296134,-0.02810058,0.047915194,0.06277268,0.031342298,0.05859079,-0.0132148415,0.07561191,0.0032240008,-0.06968266,-0.005330419,-0.026966456,-0.002242446,-0.04552771,-0.00035489709,-0.01832306,-0.025231864,-0.022019021,-0.013435409,0.05877824,-0.021725882,0.0011568741,0.056957737,-0.0038315312,0.030271553,0.09522627,-0.023318961,0.025389034,0.010463081,-0.10013193,-0.05277022,-0.021961514,0.014466304,-0.010292676,-0.004861242,0.02500759,0.08920476,-0.034611773,-0.056214515,0.12611045,0.053630736,0.040214535,-0.09848598,-0.01342238,-0.060113985,0.010511342,-0.0017842909,0.05560721,-0.03927252,-0.014770192,0.040679194,-0.030151445,-0.0043903464,0.04375392,0.053409595,-0.07248072,-0.005796081,0.021276632,-0.011358327,-0.014568321,0.017733818,-0.06462613,0.03181477,0.08539528,-0.046177935,-0.034426525,-0.12484578,-0.028886385,0.02261897,-0.022244632,-0.014776275,0.017142905,0.092462815,-0.010690502,-4.217467e-34,0.103317544,0.07794266,0.097979784,0.014167394,0.013959668,0.020870738,0.005410903,0.027127957,0.09122538,0.065726444,-0.067609124,0.048402574,0.024116432,0.021384235,-0.042003352,-0.029792976,0.066635996,0.07128213,0.053758804,-0.11607822,-0.00480555,0.039325017,-0.080112875,-0.03939243,0.012159083,0.057135873,0.0034566212,-0.07391046,-0.094179265,-0.023249842,-0.04076624,-0.08249867,0.042497702,0.004651065,0.051285557,0.013356079,0.0033533499,0.024415972,-0.08188838,0.052986078,-0.007321777,-0.010784303,-0.0018404728,0.019220877,-0.038143344,-0.033210233,0.08387072,0.06831437,-0.031179918,-0.011516067,0.067960136,0.026489686,0.004151831,-0.052427888,-0.030301653,-0.010896962,0.051758222,-0.08188911,-0.020065034,-0.010954783,-0.05514452,-0.021568518,-0.038147762,0.031838745,0.048587695,-0.018310428,-0.03208369,-0.0061807265,-0.07644649,0.009238527,-0.085416935,0.018989565,-0.03783564,0.012736683,0.007138388,-0.06509442,0.07609274,-0.010597332,-0.00713235,0.090721816,0.08728929,0.048658077,-0.025419826,-0.02346759,0.06556113,0.011015466,0.031369407,0.00033649858,0.017107336,0.061024442,0.08978002,0.02028466,-0.025673483,-0.04814391,-0.06607642,-2.2613184e-08,0.025810055,0.074996054,-0.027959382,-0.0003963724,0.025927287,-0.050689567,-0.0031746628,0.03526533,-0.045010477,0.045787927,-0.039908733,-0.010457947,0.01293105,-0.03401377,0.036320012,-0.0014810294,-0.009730693,0.0694244,-0.046624776,-0.0217075,0.02010778,0.05587374,-0.02104956,0.04779774,-0.022437712,-0.07499166,0.0225376,0.004762235,-0.05945944,-0.065406874,0.006334097,0.048247844,-0.039600804,0.016834665,0.033024877,-0.074731104,-0.1012728,0.019899795,-0.034862816,-0.015976299,-0.089202456,-0.025216997,-0.046856936,0.0073988116,-0.03940151,0.052200016,-0.006261778,0.018586148,-0.064857416,0.011680316,-0.133295,-0.06658091,-0.018340413,0.034247383,0.06466027,0.016799271,-0.03501022,-0.04665934,-0.002231424,0.046341706,-0.012558122,-0.054388326,0.0008953572,0.06891891} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.148134+00 2026-01-30 02:01:09.077957+00 22c747a6-b913-4ae4-82bc-14b4195008b6 181 google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB 1 t 184 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs.\n\nThey used every trick in the book to squeeze more money out of me the second I landed. First, they charged me an extra fee for fuel just because I apparently "didn't tick a box" for full-to-full. It’s a total scam designed to catch people out.\n\nThen they arbitrarily rejected my valid payment methods for the deposit—refusing cards for no reason—just to force me into paying a ridiculous €200 for "insurance" and tax that I didn't need and didn't want (I have insurance already). It’s pure coercion.\n\nSo I ended up paying DOUBLE for this car!!\n\nTo make matters worse, the staff were incredibly aggressive. The woman behind the desk actually started shouting at me, insulting my intelligence by yelling "it's not my fault you can't read" when I questioned the charges. She even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there.\n\nCompletely unprofessional, predatory, and nasty. Save your money and your sanity—rent from literally anyone else in Gran Canaria.\n\nI have filed a formal complaint but they are just completely ignoring me. This is ilegal and i will be taking this further.\n\nOh and the shuttle bus is terrible so takes ages to pick up and drop off your car. i’ve never seen a business so dedicated to fleecing customers. avoid them at all costs. they used every trick in the book to squeeze more money out of me the second i landed. first, they charged me an extra fee for fuel just because i apparently "didn't tick a box" for full-to-full. it’s a total scam designed to catch people out. then they arbitrarily rejected my valid payment methods for the deposit—refusing cards for no reason—just to force me into paying a ridiculous €200 for "insurance" and tax that i didn't need and didn't want (i have insurance already). it’s pure coercion. so i ended up paying double for this car!! to make matters worse, the staff were incredibly aggressive. the woman behind the desk actually started shouting at me, insulting my intelligence by yelling "it's not my fault you can't read" when i questioned the charges. she even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there. completely unprofessional, predatory, and nasty. save your money and your sanity—rent from literally anyone else in gran canaria. i have filed a formal complaint but they are just completely ignoring me. this is ilegal and i will be taking this further. oh and the shuttle bus is terrible so takes ages to pick up and drop off your car. 1 2026-01-04 01:27:48.340089+00 en v5.1 V1.03 {V1.03} V- I3 CR-N {} {"J1.01": "Oh and the shuttle bus is terrible so takes ages to pick up and drop off your car.", "V1.01": "To make matters worse, the staff were incredibly aggressive. The woman behind the desk actually star", "V1.03": "I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs. They used ev"} {-0.012174402,0.08296918,-0.0005067506,-0.00088026,0.029688051,0.03885098,0.035708006,-0.022388648,0.018420288,-0.03648063,0.035336763,0.0017496956,0.13525692,-0.019727807,0.006356105,-0.058889095,0.08367781,-0.04514661,-0.029563813,0.11031053,-0.027186159,-0.017583163,-0.057156704,0.023726583,0.005538337,-0.025358744,0.03595358,0.020265022,-0.067924105,-0.029231647,0.034576893,0.019612843,-0.013792187,-0.018331744,0.11731526,-0.034675878,-0.016251205,-0.037611026,-0.028843356,-0.03945424,0.05557224,-0.059512865,-2.4665194e-05,0.020231863,0.03426752,0.03334776,0.06750761,0.034266908,0.0015644245,-0.043747816,-0.033691928,0.03339759,0.014045964,-0.030836338,-0.10544172,-0.078606725,0.05287798,0.058655128,0.014834985,0.006048388,0.06507331,0.01673696,0.0073238728,0.048960846,-0.03326906,0.023861244,-0.094957545,0.017663345,-0.022872362,0.03553096,0.055138085,-0.08533297,0.03881418,0.02922462,0.0228814,0.048257694,-0.01593078,0.0039195037,0.055799562,-0.11024583,-0.0139824515,-0.08218146,0.010964006,0.025726113,-0.021086713,-0.03370792,0.0024533384,-0.027900072,0.09423541,-0.04455028,0.06774501,0.033941556,0.06272111,0.014120048,0.05905095,-0.03289335,0.010353434,-0.005390674,-0.073524565,-0.0042786486,0.113157675,0.07090408,-0.027197199,-0.04734779,0.029473526,0.00937866,0.03531919,0.037442505,0.008701908,-0.030657552,0.037400667,0.008614451,0.0018504619,-0.03404631,-0.03926786,0.023711689,-0.028775124,-0.008525817,0.088750154,0.047887046,0.06673217,0.06825436,-0.08272571,-0.005069022,0.048959535,0.04646434,0.037396803,2.742344e-33,-0.0533896,0.106286645,-0.027306989,-0.005443711,0.0128056,-0.013286173,-0.00054438174,0.06202232,-0.01072829,0.10332346,-0.01999955,0.0057310946,0.026225992,-0.033352274,-0.08374841,0.12893702,-0.0451484,-0.04299225,8.896629e-05,0.023081567,0.025444653,0.027305413,0.060267452,-0.07387277,-0.036366086,0.007997949,-0.07447981,-0.039809063,0.106315084,0.0400425,0.0023846717,-0.025644561,0.058098838,0.017889267,-0.039565533,0.00838091,-0.055903196,-0.044894747,-0.098907135,-0.03933532,-0.066733405,-0.011992282,-0.0064010085,0.0010806349,-0.01348422,0.029397786,-0.023172436,-0.051675845,-0.117263906,0.046700776,-0.09557337,-0.056030314,-0.033191815,0.131491,-0.046407603,0.009997026,0.0017783389,-0.0020450251,0.03914631,-0.06393175,0.010463019,0.0128463525,-0.022153152,0.008225892,-0.034646943,-0.08611887,-0.051774014,0.004137561,-0.04431657,-0.018305954,0.043543883,0.06703929,0.0853739,-0.015349292,-0.0023779222,-0.042540226,-0.023361854,-0.017134199,-0.0015688774,-0.05722036,0.021440867,-0.04298274,0.003857843,-0.009319507,0.019906152,0.04674599,0.02055722,-0.0047534998,-0.010514998,0.014212213,-0.0033928542,-0.004383127,0.04472691,-0.049568288,0.011363334,-4.1052777e-33,-0.012034618,-0.053470716,0.015471706,-0.05940488,-0.06449118,0.03819814,-0.07508984,-0.017692741,-0.00044055306,0.029999746,-0.09299601,0.016504608,0.04322084,-0.019470492,-0.044225663,-0.052816704,0.06191315,-0.0571426,-0.00020966826,-0.04606456,-0.013515314,0.025330262,-0.03657611,0.12987575,-0.048119184,0.031170227,0.04237868,0.055547126,0.030197714,0.048874736,-0.033479746,0.0025773358,-0.02005186,0.04715161,-0.03991863,0.004628667,0.01908373,0.056120284,-0.0876258,-0.034796584,-0.09744278,-0.045594014,-0.038345594,-0.05764951,0.077583976,-0.08032067,0.044785734,-0.12393973,0.08490907,0.07060773,0.014867999,-0.079370975,0.0047699623,0.09430142,-0.08662411,-0.009832933,0.11112657,-0.009264488,-0.009234781,-0.0027037142,0.0149955675,0.027774177,0.0023953633,-0.033269167,0.03638825,-0.043728735,-0.058781132,-0.03297488,0.07791672,-0.07159023,-0.07990601,0.002383594,0.0010117952,0.01126966,0.02358669,0.08367988,0.09506015,-0.060206376,-0.013835354,-0.040095855,0.068072304,-0.114465676,0.08749478,0.057144187,0.040912036,-0.0002406905,0.034970354,-0.086283185,0.007587096,0.022796443,-0.04175102,0.057008643,-0.013011363,0.038043227,-0.008675926,-6.446601e-08,-0.03953567,0.00935495,0.015528557,0.002440106,-0.03227583,-0.0634198,-0.045146745,0.067788504,-0.10227344,0.0025400175,0.046076402,-0.016399661,0.05065661,-0.012704931,-0.06335058,0.02096836,0.03470838,0.012739335,-0.031825524,0.08044045,0.004907513,0.067783155,-0.077142306,-0.060495436,0.011295112,-0.052098453,-0.0045202305,0.053698655,0.0850793,-0.07239236,-0.12487612,-0.03673663,0.061464813,0.0029151596,-0.11925569,-0.039367568,0.050824124,0.039860662,-0.017908523,0.039679978,0.0040482283,-0.04044266,-0.02325635,-0.06289533,0.0010166161,-0.008713516,-0.068936735,-0.05305175,0.07416985,0.023317464,-0.02906052,-0.05630958,0.020611946,0.18198757,0.051178217,-0.09727759,-0.044074107,-0.0093200775,-0.0035326541,0.10825075,-0.052072044,0.005933514,-0.004918802,0.0010474103} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:38:04.667313+00 2026-01-25 01:27:49.926285+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 182 google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB 1 t 185 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Everything was great!\n\nHad 200€ deposit taken upon delivery and unlocked upon return. The car was completely new - 1900km only! Everything worked perfectly and smoothly. Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :)\nRecommend! everything was great! had 200€ deposit taken upon delivery and unlocked upon return. the car was completely new - 1900km only! everything worked perfectly and smoothly. service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :) recommend! 5 2026-01-04 01:27:48.340094+00 en v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Everything was great!", "V1.03": "Had 200€ deposit taken upon delivery and unlocked upon return."} {-0.013456236,0.051495917,0.029446332,-0.04104448,-0.02561147,0.0363153,-0.016715098,0.00070932385,-0.087430954,0.023092575,0.084152535,0.09262237,0.059570745,0.0087024225,0.016362617,-0.002037475,0.058397863,-0.122004956,-0.06523858,-0.008807689,-0.068322435,-0.09618449,-0.019490553,-0.023585726,0.027177561,0.008499078,-0.018652529,0.04061769,-0.008393475,-0.01964755,-0.030577982,0.068435304,-0.013520862,-0.017504755,0.025273586,-0.04067734,0.05713622,-0.09360469,-0.07005322,-0.059248954,0.0065641357,-0.056542106,-0.039427288,0.08380658,0.07211643,0.006357778,0.07627945,0.0767095,0.028040843,-0.04193092,0.06011372,-0.034204986,0.027982267,-0.09429485,-0.09466605,0.05710301,0.010078073,0.04124966,0.0077420976,-0.048840996,0.08024601,-0.04191987,-0.04146904,0.05254825,0.019466646,-0.061850294,-0.08614843,-0.07277836,-0.021258764,-0.026861953,0.014079765,0.016333781,0.023507483,0.0013100936,-0.0094807865,0.05617237,0.011478207,-0.0055938875,0.004888724,-0.041649554,0.06107586,-0.044105574,-0.028729083,-0.05742305,0.0459947,-0.087545425,0.056041367,-0.019577993,-0.004045074,-0.05617964,0.07886029,0.040110774,-0.026388835,0.02499635,-0.03599801,0.044742204,-0.0037407412,-0.0427906,-0.038290974,0.032960515,0.069697686,0.11742193,0.017999938,-0.034464512,-0.05406087,0.035367977,0.030557938,0.053430565,-0.027576478,0.020554515,-0.0060177804,-0.00042943872,-0.0058329194,-0.022983568,-0.078178555,0.046676125,-0.07099647,0.0056617633,0.042969044,0.012142785,0.027252614,-0.027226148,-0.024996802,0.007821212,-0.023947187,0.001066922,0.10780049,9.347911e-34,-0.05365459,0.088914216,-0.09273394,0.052280862,-0.003963668,0.040500537,-0.03117985,0.018352479,-0.06572964,0.053777825,-0.036282375,0.022431426,-0.01954563,0.0133612,-0.0135659315,0.021340113,-0.073295124,0.028440153,0.043640435,0.087536834,0.030799845,-0.0100145275,0.030460179,-0.02759417,0.1222779,0.06315093,-0.0110853175,-0.045703262,0.10948796,0.042727537,-0.1050161,0.020617647,-0.0017495052,-0.034237348,-0.050145596,0.036948103,-0.082108766,-0.106658615,-0.07428803,-0.0056246044,0.0096616205,-0.0027177457,-0.124898925,-0.022407018,-0.07501108,0.045972615,-0.03522875,0.0008872209,0.048075218,0.04357198,-0.14939623,-0.008968018,-0.12919754,-0.0027226105,-0.019671984,0.019626122,0.0035422319,-0.014773369,-0.0049741264,-0.01923417,0.044159867,-0.042632055,-0.02184013,-0.07189326,-0.0103811715,-0.005103116,-0.01099052,-0.013896856,0.017251305,0.019722288,-0.011353121,0.0042506037,0.063576415,-0.0060317474,0.054217827,0.035529394,-0.036082342,0.0021025902,-0.032636862,0.037238106,0.037882023,0.07536632,0.044292826,0.047380447,0.04207408,0.05347796,0.028835025,-0.003939494,-0.012727368,0.1061317,0.026122404,0.06555028,0.06935778,-0.025814975,0.054756112,-2.3236362e-33,-0.019007768,0.04269845,0.020971475,-0.018773388,-0.061415784,0.025054455,-0.07154598,0.12686497,0.010302038,0.0912957,-0.017344084,-0.0032956898,0.040424902,-0.034551058,-0.10477002,-0.04838742,0.0868656,-0.07003296,0.09572242,-0.045489155,0.028615544,0.05517581,-0.014811383,-0.020535119,0.0012657925,0.009000115,-0.033613425,0.054345775,-0.023629228,-0.011766149,0.004179906,0.03315325,-0.015111323,0.02457381,0.014449132,0.043055147,0.06627269,0.08469848,0.012918242,-0.022625519,-0.018214801,-0.0778906,-0.040888757,0.024527866,0.03763169,-0.07660167,0.052827492,-0.069337,-0.037110277,-0.009347128,0.06363394,-0.04559497,-0.015119799,0.0032644605,-0.012682371,0.0054919315,0.077106304,-0.059574466,-0.01184608,-0.019708073,-0.01052753,0.011159303,-0.018119706,0.0018480557,0.00899766,-0.11925482,0.09073036,-0.04231103,0.04230142,-0.058627468,-0.118078165,-0.021509059,-0.017905781,0.054727405,0.04440997,-0.013772417,0.022773525,-0.040475048,-0.0045706313,0.031012096,-0.036667556,0.028449312,0.023084512,-0.030403383,0.08482406,0.017857604,0.018910762,-0.10649397,0.0011524704,0.024323307,-0.04859346,0.043586414,-0.07036478,-0.05992598,-0.026244197,-3.476407e-08,-0.010932192,0.08743304,-0.03074717,0.025930429,-0.015878238,-0.10170533,0.0037212535,0.045104675,-0.0591391,0.053262345,-0.03666665,-0.006607877,-0.099135615,0.051061895,-0.04508008,-0.017444227,0.09247009,0.10177332,-0.028804218,0.010590426,0.020917773,0.1373297,-0.00968171,-0.02139888,0.027682418,-0.0037519708,0.0018604433,0.023501454,0.06949434,-0.099638656,-0.06909654,-0.030357221,0.02472341,0.018757703,-0.08372817,-0.085877515,0.031216173,0.01517126,0.034451175,-0.051776174,0.09169203,-0.0548281,-0.05233305,-0.02443562,-0.014541177,0.0042748717,-0.078661986,-0.06530569,-0.029148636,0.0011875788,-0.026900927,0.015257231,-0.017532425,0.066834725,0.11735448,-0.02601382,-0.01543308,-0.033062987,0.034772076,0.109281234,-0.030305166,-0.05294618,-0.05499814,0.03580344} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:38:19.626708+00 2026-01-25 01:27:49.932264+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 186 google Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB 1 t 189 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to Gran Canaria. They said they couldnt change the name of the driver, so we had to reserve a second car and the first one was paid but we didn’t get the car . But instead of making us a good offer for the second reservation with the new driver (because they knew we paid the first reservation for no car in exchange) they wanted 130€ for the second reservation.\nSo we had to pay in the end 180€ for 3 days instead of 50€.\nAlso a very slowly service, we had to wait in the queue for over 1,5 hours. we reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to gran canaria. they said they couldnt change the name of the driver, so we had to reserve a second car and the first one was paid but we didn’t get the car . but instead of making us a good offer for the second reservation with the new driver (because they knew we paid the first reservation for no car in exchange) they wanted 130€ for the second reservation. so we had to pay in the end 180€ for 3 days instead of 50€. also a very slowly service, we had to wait in the queue for over 1,5 hours. 1 2025-11-26 01:27:48.340126+00 en v5.1 V1.03 {} V- I3 CR-N {} {"J1.01": "Also a very slowly service, we had to wait in the queue for over 1,5 hours.", "V1.03": "We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming"} {-0.0056787673,0.07436996,-0.005998947,0.00070940354,-0.013319957,-0.03511866,0.045822185,-0.0054411287,0.04343588,0.0071274424,0.08493936,-0.048728805,0.037344106,0.0044930964,-0.0046182973,-0.06480952,0.006328874,-0.03979491,-0.04544512,0.027529994,-0.019293379,-0.02742483,-0.09065983,0.0369617,0.0460407,-0.02727586,0.008092262,0.033026017,0.05052334,-0.0782471,-0.044172235,-0.015055107,0.021590782,-0.037424315,-0.0007067607,-0.08910608,-0.04961017,-0.06784858,-0.05989922,-0.042862624,0.029544426,-0.023163546,-0.07679524,-0.020439476,0.032097906,0.0023201103,0.02223648,0.07938838,0.04618547,-0.033991214,0.045769736,-0.011649733,-0.0002673572,-0.06625494,-0.080172904,-0.00094016636,0.029297601,0.02915823,-0.042914487,0.080163464,-0.03394179,-0.06288778,-0.036985125,0.011029328,-0.0062700305,-0.076896906,-0.067373805,-0.048468526,-0.049200863,0.078324914,0.07420292,0.015563305,0.014580658,-0.035211824,0.005285928,0.0116519,0.103458166,0.05369539,0.027773662,-0.06806725,-0.002487804,-0.06516316,-0.012237162,-0.030045668,0.03805223,-0.07724611,0.002388441,0.048948772,0.05416064,-0.10359951,0.06444644,0.04396902,0.01839707,0.015088001,0.0006750006,0.053499185,0.060797676,0.074993245,0.012389122,0.057881374,0.0898894,0.076902725,-0.019651297,-0.0033150183,-0.028880144,-0.023173625,0.022760391,0.02107964,-0.031327836,-0.005060421,-0.024842015,0.011190562,0.102346174,0.02750841,-0.12591957,0.116019905,-0.010644122,0.016100368,-0.008529915,-0.035812125,-0.05332859,0.012256833,-0.044599105,-0.055584554,-0.06684926,0.041080467,0.08600412,1.7192496e-33,-0.0689953,-0.091091394,-0.09981311,-0.05634344,0.025432283,-0.030602269,-0.0068651726,0.050064284,-0.06948571,-0.023838654,0.022785561,-0.052598152,0.0068582604,-0.06447565,-0.09575325,0.004381066,0.04131531,0.05971239,0.06690797,0.024831677,0.0065343687,0.056404326,0.012899704,0.013274174,0.0013752357,0.075951286,-0.058908995,-0.08423032,0.1370921,0.0053057033,0.007411009,0.07383751,0.01825863,0.04577691,-0.0059757847,0.008774497,0.05726574,-0.0131904045,-0.089916006,-0.06673712,-0.021875968,0.04163279,-0.045609172,-0.05859452,-0.06114848,0.017859004,0.010548308,-0.046926152,-0.061383713,0.07891971,-0.1187669,0.039379694,-0.08209123,0.022281526,-0.09616408,0.015707666,-0.0016733255,0.056806896,-0.0051408433,-0.027351521,0.010297373,-0.013982425,0.02825402,0.026755268,-0.04954876,-0.03177466,-0.0071541937,-0.04340851,-0.0371909,0.014334485,0.03332602,0.012313307,0.033277903,0.0532342,-0.014221323,-0.041892216,-0.017568085,0.0048054657,-0.030427696,-0.06808733,-0.026535984,-0.020017266,-0.00082686025,0.048152357,0.013806185,0.03990787,0.007232166,0.03807949,-0.0058414093,0.015964892,-0.10619429,0.11195416,0.017473232,-0.0036085946,0.14230764,-2.749087e-33,0.018786434,-0.013508932,-0.042333513,0.01848757,0.048855886,0.048585556,-0.071174644,-0.0046208347,0.009275318,0.079436,-0.09526378,0.06276588,0.053661525,0.024510976,-0.037344232,-0.0477743,0.081606545,-0.040608726,-0.01066272,0.029001962,-0.0070333695,0.08568957,0.0067019835,0.035031267,-0.030040873,0.07292492,0.0011988981,-0.012019929,-0.087723255,-0.0059712473,-0.04559907,-0.0925426,-0.07234197,-0.010336369,0.05260655,-0.022377739,-0.0049821986,0.097184874,-0.048329048,0.09402423,-0.036778387,-0.035087228,0.06575736,0.005905102,0.08144281,-0.03406212,0.074402004,-0.14337882,0.050067976,0.00916926,0.02926474,-0.057857744,0.052325804,0.10220913,-0.009582987,-0.043082993,0.09531997,-0.078173235,0.023933802,0.013257336,0.05288285,-0.030202387,-0.08947558,-0.0005351933,0.019707805,0.00932956,-0.021426056,-0.07602077,0.08582747,-0.027376547,-0.035537343,-0.010828022,0.028390134,0.07420593,-0.01165229,0.076208055,-0.02783016,-0.028149102,0.041584753,-0.07429921,-0.02182006,-0.016285582,0.06011765,-0.001662773,-0.009182003,0.010610058,0.034768246,-0.058953848,0.0139819365,0.026325786,0.03536635,0.04861834,0.03286167,0.022918113,-0.07775681,-4.5711943e-08,-0.021201676,-0.034165464,0.0027939237,0.07891612,-0.02163329,-0.08597892,-0.04447653,0.039309613,-0.06145323,0.08927626,-0.026515158,-0.014816786,0.024890006,0.013824458,-0.021248516,-0.019864373,0.05523767,-0.008140352,-0.048863005,-0.032436974,-0.06407958,0.08426322,-0.036538187,-0.030651024,-0.016193658,-0.018037664,0.057787485,0.097146735,0.06955197,-0.044308033,-0.108109385,0.03713422,0.021928258,-0.01825415,0.01875114,-0.03642419,-0.075596996,0.022986496,0.021034632,0.00023773019,0.017740367,0.004565386,-0.02922115,-0.03694662,0.06881074,0.07416676,-0.12659502,-0.0039284243,0.035779104,-0.02531719,0.016413074,-0.040715486,0.08908536,0.11206647,0.055096228,-0.08287543,0.008256111,0.012977313,0.014174263,0.034425184,-0.06949292,-0.024705509,-0.077515356,0.011866064} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:39:16.705158+00 2026-01-25 01:27:49.948461+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1350 google ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB 1 t 1353 Go Karts Mar Menor unknown Everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces 5 2024-01-31 01:52:39.833374+00 en v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces"} {0.050475016,0.0997277,0.0330225,0.039991636,0.05091131,0.00045918618,-0.022087676,0.041586503,-0.0020758286,0.021662071,-0.028326007,-0.06297562,0.033527233,0.049900908,0.04000192,-0.109845944,-0.028080896,-0.047252435,0.013189092,-0.118450455,-0.044637866,-0.08966452,-0.046824962,0.0010557729,0.019385783,0.03690592,0.00016336433,0.017963653,0.040801924,-0.015664492,-0.111746445,0.0025822653,0.01649257,-0.01876228,-0.049189974,-0.058135744,-0.026114406,-0.0126849655,-0.085819215,-0.020153686,0.028094398,0.023675276,-0.044752363,0.01694502,0.046857007,-0.008845198,0.04018285,-0.015886005,0.014903921,-0.014338075,0.08396503,-0.07359131,-0.03148427,-0.14529249,-0.004745668,0.010478378,-0.051557355,0.010607059,0.05318952,0.0106223915,-0.0370751,0.017503574,-0.025819412,-0.015753036,-0.08491902,-0.052505374,-0.028629314,0.03291802,-0.049877677,0.13704914,0.021703364,-0.05155803,0.016964206,-0.043756444,0.046771266,0.0064558955,-0.05513427,-0.10981034,-0.07626385,0.04727975,0.065695696,-0.01568382,0.01964557,-0.032767072,-0.004772816,-0.09750938,0.07694647,-0.052980162,0.021579688,-0.060705338,-0.04686981,0.032274228,-0.065303326,-0.0024702114,0.05551665,0.011474894,0.022436945,0.088730566,0.0593031,0.07655337,-0.0059404084,0.0035600725,0.04308931,0.04462946,0.018524919,0.016004695,0.053296562,0.057963792,0.01580725,0.011208598,-0.050887402,0.085377514,0.022724677,-0.023740795,-0.074601114,-0.0007429371,-0.029772848,-0.0021525675,0.037759557,0.0090914685,0.066257395,0.015391579,0.0563507,-0.0072768927,0.03719882,-0.015728485,0.07094945,-3.432309e-33,-0.1085059,0.049701203,-0.053073406,-0.0028107455,0.007184926,-0.054957245,0.017205248,-0.08233112,-0.050396923,0.029639874,-0.047559224,0.023006864,-0.016498396,-0.006369058,0.04459948,-0.008111412,-0.016889598,0.013034921,-0.039621845,0.001547344,-0.054597706,-0.037776735,0.01727718,0.06516186,-0.05811923,0.11131731,0.054780416,-0.08307296,0.018405823,-0.0030730313,0.0044157645,0.042538222,-0.06231406,0.0035411536,-0.023807231,0.035411913,0.065579005,-0.0804687,-0.05179001,0.039916653,0.0014136063,-0.014515231,-0.0065725013,-0.066836186,-0.05725394,0.09160008,-0.058249533,0.044861358,-0.07495363,0.008760381,-0.010827063,0.049238823,-0.0056161084,0.04344361,0.0014771121,0.03358233,0.020918608,-0.05217523,-0.075657584,0.006969163,0.012673128,-0.021593908,0.05970679,-0.026838817,-0.09277943,0.07121954,0.02612658,-2.232807e-05,-0.061342902,-0.018856369,-0.033518355,0.06493035,-0.018389039,-0.110423006,0.09417112,0.017096007,0.06033144,0.047461946,0.020577151,0.06782996,0.07829905,-0.004604762,0.006932267,-0.081253685,0.07554254,0.014110323,0.014768011,-0.07749837,0.0393049,0.0076644574,-0.078335166,-0.023972003,0.049131744,-0.007086632,-0.07034879,1.1610598e-33,0.04126044,0.054775644,0.09659752,0.077310875,0.05774947,0.003377687,0.034447283,0.03745686,0.048485033,0.11775045,0.06013136,0.014703379,0.008797848,-0.015437002,0.008210705,-0.037323125,0.08887584,-0.014068457,0.040918197,-0.030644542,0.017832635,0.007124173,0.0003226078,-0.02813562,-0.05743368,0.073723085,-0.004597822,-0.07317481,-0.12188218,0.003510486,0.041472938,-0.023256045,-0.02131375,0.03817248,-0.031449094,0.059086703,-0.0028788939,0.089795046,-0.08188212,0.057539478,-0.06404777,-0.03930463,-0.065372206,0.07816121,-0.014676481,-0.028544564,0.049353074,-0.08016055,0.016577682,-0.039472695,0.016121808,0.048174977,-0.091716684,-0.00046377102,-0.07998472,-0.03761047,0.052055713,-0.009578373,0.07748226,0.0009957572,-0.03832422,-0.007202712,-0.088472635,0.008585061,0.044504315,0.01043215,-0.023422094,-0.06576187,-0.04581756,-0.036642842,-0.08683258,0.0101521285,-0.087497234,0.06882832,0.055740766,0.039469518,-0.03153529,0.118984096,0.055862904,0.0544377,0.0013332174,-0.022192454,-0.014012016,0.021893678,0.05955593,0.019916955,-0.049902774,-0.0077589764,0.03831658,0.05489884,0.053801745,0.0034172502,0.077286616,0.039954983,0.044501644,-2.4016416e-08,-0.010324024,0.10119955,-0.069491655,0.023587447,-0.04478419,-0.048912775,0.019858412,0.0559586,-0.043529358,0.10188893,-0.038115412,-0.0003742159,0.0044016484,0.02787438,0.021392295,-0.0032486657,-0.062317934,0.024499722,-8.664524e-05,0.016928084,0.0060665347,0.044700857,-0.026741967,-0.008164655,-0.044554178,-0.028911112,-0.052516643,0.08979226,0.01063177,-0.041095924,0.0057340213,0.0062782946,-0.04641109,0.034824904,0.06613418,-0.086628824,-0.044832766,0.048953634,0.030367328,0.04437422,-0.07096223,-0.08507549,-0.07052908,0.030731708,0.0060297744,0.104464725,-0.085947424,-0.024674632,-0.10543611,-0.068144746,-0.026177369,0.0029605376,-0.022966761,0.11440639,0.03348657,-0.029891474,0.02417355,-0.051990647,-0.018584605,-0.031200232,-0.06597973,-0.0958378,-0.087020285,0.01759711} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.170684+00 2026-01-30 02:01:09.080333+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1352 google ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE 1 t 1355 Go Karts Mar Menor unknown family friendly and lovely atmosphere. Helpful staff family friendly and lovely atmosphere. helpful staff 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {P2.01} V+ I2 CR-N {} {"P1.01": "family friendly and lovely atmosphere. Helpful staff"} {-0.017895183,0.027113453,0.055868745,0.04170492,-0.025279809,0.022501754,0.0482617,-0.06713434,-0.010790119,-0.02186255,0.051999927,-0.039704315,-0.0068900813,-0.00054382463,0.00035769964,-0.010051987,0.066724434,-0.075879976,-0.008376337,-0.040881082,-0.061807133,0.032438483,0.026998293,0.042239584,-0.07838804,0.025345197,-0.025763515,0.061398976,0.03133575,-0.02993048,-0.0015063687,0.04577684,0.08094292,0.0149103645,-0.003236468,0.15046956,0.06628696,-0.062793896,-0.026079277,0.034982275,-0.077341095,-0.03570837,0.06002223,-0.030504161,-0.014002048,-0.0332192,0.015043593,-0.03255305,0.096439324,0.039345942,0.048461925,-0.035700306,0.0016813519,-0.008914964,0.016466303,0.039857455,-0.06961878,-0.100129485,-0.025935635,-0.04588413,0.014570283,0.021092819,-0.075081095,0.034957968,-0.029133586,-0.06757747,-0.110372216,0.032664333,0.049657468,-0.13479152,-0.08964843,-0.00031374375,0.0808023,0.049802903,-0.06177787,0.045982562,0.040857933,-0.07464725,0.017137878,-0.06946909,0.039324816,-0.04768132,0.0057322723,0.07649027,-0.070698135,-0.041840695,0.034033824,-0.037151597,-0.023419784,0.0058691,0.027038643,0.08754563,0.014409992,-0.06331623,-0.088544406,-0.019805573,0.040859565,0.0033438157,-0.10086086,0.09953546,0.0222276,0.07212927,0.006481122,0.027079158,-0.09765983,0.0072306795,-0.058129,0.03253962,-0.025580842,-0.02589542,-0.08654583,0.028093822,-0.12364897,-0.061507773,0.0024135232,-0.026029902,0.027167903,-0.041852374,-0.044737555,-0.077629566,0.040815134,0.088731594,-0.028133094,-0.020807704,0.017211247,-0.00022712513,0.05191488,-2.0209382e-33,0.025256982,0.09527499,0.058246672,0.08831359,0.06894228,0.032690138,-0.07150138,0.006973618,-0.069281526,0.02048342,0.036537033,0.047141653,0.004555836,-0.063148364,-0.045867447,-0.035132304,-0.09727663,0.05616969,-0.056615964,0.0632563,-0.087923326,-0.018147644,-0.009855677,0.09664346,0.013613215,-0.085679516,0.07016924,0.006403798,0.061598398,0.034208853,0.019149553,-0.032714553,-2.2674298e-05,-0.10676724,-0.05405585,0.0213275,-0.056950476,-0.11967739,0.043171503,0.013635565,-0.036186963,0.024177266,0.06739614,0.027980253,0.0030404117,0.057705216,0.110983126,-0.012576279,0.0033616961,0.01661819,-0.06554367,-0.023834338,0.014695987,0.090193205,0.0049597886,0.014029051,0.06501997,0.04520245,0.053397506,-0.04964635,0.12216726,0.028338378,-0.015755761,-0.074512765,0.0570816,-0.08658373,0.043525927,0.013309271,0.07701542,-0.040681347,-0.022944462,0.0697467,0.07263876,-0.013441656,-0.060600854,0.065514915,-0.03930547,-0.051766805,0.07824715,0.029486507,0.019226607,0.050185695,0.027046362,-0.010940316,0.024615278,-0.068056256,0.015178768,-0.04593301,-0.14036196,0.045331564,-0.031146869,0.00637958,0.11279533,-0.0030271579,-0.04151133,7.712756e-34,0.08376767,-0.010220164,-0.0204249,-0.035962142,0.021519808,0.009921536,-0.033219233,0.011757428,0.013281465,0.101833805,-0.08713198,0.048059274,0.09435748,-0.010552314,-0.06012267,-0.012103023,0.027565334,0.023298085,-0.013652472,-0.051802214,0.008285016,0.08930267,-0.039669897,-0.02764253,0.019607585,0.044382725,-0.07511605,0.008532862,-0.108675286,-0.02530107,-0.04328946,0.017403131,-0.0063678683,-0.0048762066,0.040334575,0.05317385,0.0045876484,-0.013818691,-0.08962237,0.04401984,0.050335515,-0.015472547,0.054161374,0.01413356,-0.0024063191,0.00068460265,-0.03374008,-0.036198214,-0.04463688,-0.026248265,-0.0013917519,-0.057431825,-0.0472572,-0.026176382,0.036690805,-0.0011424015,0.020632211,-0.009940872,0.006401087,-0.020709243,-0.05141843,0.014799432,-0.038363688,0.1094319,0.023395345,-0.08063448,-0.02643085,-0.0037892654,-0.056523263,0.020222483,-0.05604238,-0.04452552,-0.019860508,-0.024195286,-0.032523967,0.024609014,0.09489904,-0.12100388,-0.010634631,0.05515389,-0.07444055,-0.022610135,0.02774202,0.0050697667,0.013265244,-0.025809117,0.05336237,-0.029894589,-0.00791524,0.006110846,-0.007120354,0.030875389,-0.024783868,-0.014814926,0.024545232,-1.7720541e-08,0.06947522,-0.044810575,0.029641548,-0.010134003,-0.023295006,-0.11465391,0.058646034,0.072391964,-0.011232895,0.07239888,-0.028084265,0.02288903,0.005754732,0.053004164,0.13504744,-0.028474364,0.020733653,0.08972022,-0.07322527,-0.032690935,0.05342737,0.054181367,-0.009087011,0.007404813,-0.01806486,0.03940363,-0.0068883947,-0.052591845,-0.025878977,0.03296385,0.013929236,0.040392414,-0.042964242,-0.01910211,-0.03617599,-0.0041615684,-0.06930811,-0.023958482,-0.025356343,-0.024400566,-0.01344439,-0.018300971,-0.05747434,-0.0069405152,0.027305666,0.03272604,0.065279,0.057488427,-0.06894405,0.0379361,-0.046330817,-0.03953388,0.026689151,0.0043742806,0.024466421,0.008258139,-0.0010071173,0.025181068,0.06795477,0.07546018,0.024344912,0.05533446,-0.05618845,0.02322295} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.267786+00 2026-01-30 02:01:09.086118+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1471 google ChZDSUhNMG9nS0VJQ0FnSUNRM2Z2amRnEAE 1 t 1474 Go Karts Mar Menor unknown Great track, fast carts. Trust me, 10 mins is plenty on these carts. You'll be wrecked great track, fast carts. trust me, 10 mins is plenty on these carts. you'll be wrecked 5 2018-02-01 01:52:39.833374+00 en v5.1 O1.02 {O2.03} V+ I3 CR-N {} {"O1.02": "Great track, fast carts. Trust me, 10 mins is plenty on these carts. You'll be wrecked"} {0.009248958,0.009290138,0.0025175363,0.040570367,-0.021276016,0.027169285,-0.06260262,0.03213661,-0.08449686,-0.08204998,-0.008174547,0.07017925,-0.07385383,0.011052076,-0.06958811,0.01925058,0.09483125,0.006069818,-0.06369171,-0.007116255,-0.030955447,-0.06588873,-0.01444382,0.07308191,-0.12562495,0.028047895,-0.057381824,0.045870386,-0.027183184,-0.03843228,-0.0985369,-0.019244688,0.0673516,0.0076182843,-0.023810307,-0.03622742,0.065598994,-0.021709133,0.057128903,-0.0737367,0.024195207,-0.04846719,0.028926697,0.08194142,-0.011274595,0.04889918,0.021836186,-0.024277879,0.03302311,0.057055302,0.028525785,-0.016667342,0.060542136,-0.022364706,-0.0041795624,0.018193351,-0.03954848,0.042270206,0.023031084,-0.038098898,0.026012538,-0.04325857,-0.022952234,-0.006393729,-0.009330903,0.008900214,-0.052999407,0.015786402,0.030283244,0.11378496,0.02958694,0.028705318,-0.0320511,-0.035753813,-0.05770085,-0.0048085754,-0.020077901,-0.05833745,-0.06778304,0.04197477,-0.06752916,-0.043366194,0.0219713,-0.11048407,-0.039559968,-0.035313226,0.061267413,0.118269846,-0.035057392,-0.01736467,-0.031494256,0.051178537,0.014161546,-0.053151272,-0.0022935276,0.006952492,-0.023685593,0.06522505,-0.009549538,-0.025844676,0.056525394,0.07354229,-0.0021036374,0.07915743,-0.014165656,0.032379102,-0.015977416,0.09243961,-9.177192e-05,0.015695164,0.09552588,0.046084654,0.07902728,0.0019133082,-0.08205919,0.018118411,-0.10820221,0.034979213,-0.01778515,0.07049741,-0.005962185,-0.030754587,0.040822376,0.0029408836,-0.057563096,-0.04064381,0.061221372,-2.0357007e-33,-0.06257948,-0.0012089706,-0.03307026,-0.066686064,0.0814867,-0.01663256,-0.062483773,-0.00851262,-0.06677517,0.05524381,0.012850379,-0.024202555,-0.05340525,-0.04326746,-0.003314963,-0.04933201,0.012958613,0.023821888,-0.073931485,-0.022590423,-0.03824981,-0.1370922,-0.005885328,-0.04278131,0.08148587,0.04628585,-0.0009809824,-0.00029574198,0.072983444,0.008056861,-0.057072774,0.016770223,-0.050803963,0.05156267,0.0139932325,0.009241125,-0.017355012,0.048196092,0.028439403,-0.03235381,-0.012489556,-0.03825956,-0.033139985,-0.035782386,-0.07973174,-0.0014959517,0.022492114,0.038688634,-0.00065952225,0.013023172,-0.08668388,0.0076861484,-0.034369614,0.03347693,0.019115908,-0.047001757,0.12484045,0.03199882,-0.11138873,0.033111073,0.07030417,0.037055485,-0.027334267,-0.056314606,-0.034625135,0.04954186,-0.06520328,0.02919698,0.07708436,0.03603608,0.036933158,-0.0109650185,0.0144706,0.01349578,0.07732057,0.00891641,0.011284375,0.01493596,-0.0738167,-0.023309233,-0.042351834,-0.011789894,-0.06274543,-0.037350766,0.072713256,2.7204756e-05,-0.0994709,-0.05526959,-0.05165725,-0.0357961,-0.061822753,0.026836824,-0.05315784,0.0068819104,-0.025556386,6.189887e-34,0.10867403,0.05641714,0.059634108,0.081538014,0.07731889,0.06255519,0.03888245,0.10079446,0.0050139925,0.027836323,-0.1145414,-0.00926072,-0.0132564185,-0.002550524,0.015692605,-0.039369356,0.1145301,-0.034748778,0.061963964,-0.1204212,0.050059374,0.06044383,-0.0410108,-0.002301708,-0.010751828,0.01583478,-0.005856064,-0.081487484,-0.05334878,0.04966804,-0.047960736,0.018667476,-0.024814097,-0.022271233,-0.057843134,0.048621323,0.0018296486,0.091346286,-0.030057589,-0.0018672362,0.06893628,0.027941756,-0.011936733,-0.020313587,-0.05049128,-0.016958473,0.04159577,0.07345201,-0.04727648,0.091595486,0.026729343,-0.008128569,-0.033670627,-0.014386119,0.032485504,-0.06883391,0.053578094,-0.06597988,-0.028276807,-0.087095775,-0.057648122,0.062797666,-0.06935236,0.03616686,0.057031088,-0.03869987,-0.019338014,-0.059839245,0.004169286,0.00058991765,-0.057720643,0.06914683,-0.010155521,0.05419129,-0.075688854,-0.028627146,0.03882814,0.046635367,0.054804966,0.0075133187,-0.03888947,-0.040209964,0.061686378,0.0052379337,0.046459455,0.11713094,-0.10946374,0.024140608,0.059249762,0.037720263,0.11673857,0.13451917,-0.0133784115,0.04296817,-0.09339332,-2.1762656e-08,0.005238068,0.057042398,-0.041003436,-0.006450442,0.03438329,-0.0011380846,0.04131347,0.08958714,-0.061882507,-0.008998025,0.15056393,-0.00087271404,0.0381634,0.057957657,-0.035252642,-0.075944066,0.028310468,0.021852015,-0.019881172,0.04667689,-0.041210458,0.013842018,0.013316265,0.011617334,-0.017377164,-0.05849691,0.065566204,0.06627711,0.012026891,-0.023602141,-0.016230155,0.055951178,-0.045601137,0.015535759,0.066677965,-0.04533156,-0.042537734,0.08668807,-0.021216543,0.067540556,-0.09144192,-0.013350367,-0.05338597,0.013573723,-0.029121801,-0.061419915,-0.04080333,0.013427366,-0.030723305,-0.011219629,-0.038278792,-0.06934898,-0.025631482,0.05273034,0.09127231,0.06207717,-0.00367111,0.008272916,-0.006234626,0.040445283,-0.008417354,-0.03334632,0.0132236425,-0.028143916} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.171208+00 2026-01-30 02:01:09.462004+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1346 google Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB 1 t 1349 Go Karts Mar Menor unknown Very nice track. Smooth and big kerbs. The carts were good enough. And the staff was helpful. very nice track. smooth and big kerbs. the carts were good enough. and the staff was helpful. 5 2025-08-03 00:52:39.833374+00 en v5.1 O2.02 {O1.02} V+ I2 CR-N {} {"O2.02": "Very nice track. Smooth and big kerbs. The carts were good enough.", "P2.01": "And the staff was helpful"} {-0.03137633,0.018856106,0.03188738,0.018298617,-0.06549835,0.019410731,-0.025169328,0.019980444,-0.10054443,-0.03086846,-0.047246616,0.035324316,-0.024053257,-0.037508454,-0.09688432,-0.006223622,0.08716608,-0.0013516657,-0.0059226705,-0.038588475,-0.09856456,-0.052381646,0.024877882,0.085010305,-0.110220574,0.057983056,-0.09004471,0.04365825,0.004047047,-0.040832188,-0.07900961,0.0261887,0.021268846,-0.04728687,-0.00049482466,-0.020918233,0.08425278,0.0013868766,0.045004748,-0.036213942,-0.014132185,-0.04626178,0.044327118,0.06744203,0.006341612,0.015752705,-0.015695348,-0.014442524,-0.015042028,0.008026019,0.07383535,-0.13516778,0.108184025,-0.08808211,-0.020487072,0.041251183,-0.036713894,0.01858774,0.0633623,-0.035051547,0.048137173,-0.038474176,-0.013313779,-0.015045448,0.012211896,-0.069466576,-0.0848621,-0.040221084,0.042751342,0.009252728,0.04199162,0.041440196,0.019162642,-0.037902713,-0.0169379,-0.008771004,-0.06352427,-0.0073448685,-0.03606523,-0.0028234774,-0.022617044,-0.045630015,0.035776787,-0.057949714,-0.055316903,-0.07127646,0.06642358,-0.0014343916,-0.027292052,-0.014723936,0.031590957,0.08554034,-0.06061858,-0.06601035,-0.0041355984,0.0028954053,-0.009916312,0.100032754,0.09969003,0.031877127,0.07397447,0.10171488,0.049843367,-0.011696353,-0.039467808,0.023153227,-0.047772046,0.057849616,0.0277438,-0.00807433,0.029537765,-0.056974333,-0.016083896,0.0047684815,-0.03983223,-0.04899988,-0.04806255,0.046041466,-0.049605988,0.009580281,0.03763358,-0.0021039408,0.014721778,0.0076331724,-0.07849023,0.014297258,0.07445287,-3.725205e-33,-0.012857366,-0.008048284,0.0038831239,-0.103259556,0.111856095,-0.045665953,-0.073759206,-0.0212867,-0.054387003,0.04025058,-0.0037490544,0.03642215,-0.005166174,-0.016820334,0.018028598,-0.10902284,-0.09833088,-0.0058564474,-0.08077558,0.017823182,-0.08688545,0.035419937,0.03250412,-0.030172082,0.088199176,0.02855113,-0.014470683,0.010092875,0.036599413,0.013763001,-0.0023252575,-0.0004997355,0.007998394,0.00051784737,-0.05527693,-0.013847523,-0.06926423,-0.04774555,0.018590169,-0.048184622,0.015021153,-0.02820273,0.034291733,-0.0045346343,-0.13023008,0.07512239,0.0045003914,0.047121312,0.036426615,0.008265397,-0.043928213,-0.011066335,-0.051846292,-0.013195728,0.038002826,-0.049497977,0.07551751,0.053177997,-0.04409825,-0.025371017,0.09016473,0.06828823,0.00080283056,-0.09123451,-0.025482098,0.02713189,-0.07149648,0.0026071973,0.08389718,0.034100313,-0.05453053,0.03218981,0.02222018,-0.024876185,0.052784547,0.026129019,-0.05477752,0.009575393,-0.030336585,0.01788067,-0.08970143,-0.023872973,-0.03244164,-0.06623376,0.002366929,0.0044505675,-0.056747705,-0.035310768,-0.019496555,-0.006582169,-0.035297684,0.044130035,-0.039301913,0.07445731,-0.013754032,3.5627402e-34,0.06519481,0.1597532,0.055132844,0.07859416,0.02863772,0.06170285,-0.049118433,-0.008450239,0.057931338,0.07160962,-0.06003905,0.059655104,0.016252637,0.07602574,0.003714192,-0.04434894,0.049706947,-0.0042756926,0.026213957,-0.1610394,0.012011945,0.021082167,-0.07366384,0.020283408,-0.015382279,0.035507496,-0.049698208,-0.10720434,-0.05072799,-0.0138748,-0.022082193,-0.071868196,0.029042143,-0.0713851,-0.03182432,0.015699038,0.04118416,0.08637438,-0.017584516,-0.02313785,0.012829051,0.010541034,-0.0056602443,0.009257957,-0.043880604,-0.03067225,0.03878819,0.105113514,-0.022034595,0.01126915,0.003911996,0.02377238,-0.02887306,-0.067445986,-0.041230727,0.013666711,0.017154902,-0.027061006,-0.008329352,-0.05346686,-0.114482075,0.050133504,-0.044917937,0.041206695,0.013858477,-0.045053557,0.0052513676,-0.09730288,-0.027913744,0.007131776,-0.030561283,0.033065666,0.0039394135,0.071327634,0.025342954,-0.026691422,0.062269647,-0.019420061,0.05861951,0.07273398,-0.026605057,-0.019065596,0.0659301,0.03436094,0.050643,0.110538505,-0.05753101,-0.03431223,0.0031612986,0.10309337,0.14864679,0.08370491,-0.029953752,0.025819607,-0.06650177,-2.3131062e-08,0.014738558,0.055467904,-0.0390555,0.018377805,0.025081363,-0.041029874,0.08912618,0.10152469,-0.06748918,0.032418624,0.061009903,0.0011899103,-0.06171769,0.071203135,0.050216198,-0.027615769,-0.013699111,0.12911889,-0.04697821,0.00362359,0.01488608,-0.0029827752,0.033148617,0.02870622,-0.074211195,-0.033511225,0.06703632,0.031016108,-0.02994813,0.0005131908,0.019345075,0.057240427,0.037851404,0.0037240372,0.05618799,-0.017401382,-0.11378143,0.043825556,-0.0043050223,0.011408463,-0.08366974,0.011507989,-0.018968802,-0.0056962133,0.023911092,-0.010218026,-0.026910488,0.05374123,-0.084497854,-0.0105803795,-0.08784972,-0.026610749,-0.0054812813,0.102232344,0.048097968,0.002824652,-0.04439048,-0.04090727,-0.014859958,0.019550988,-0.024847014,-0.049653634,0.014751203,0.04079121} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.564481+00 2026-01-30 02:01:09.069047+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1348 google ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE 1 t 1351 Go Karts Mar Menor unknown Very friendly family run go cart track, brilliant fun for all the family. Highly recommended. Our 2 sons had a ball there on our recent visits. very friendly family run go cart track, brilliant fun for all the family. highly recommended. our 2 sons had a ball there on our recent visits. 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Very friendly family run go cart track, brilliant fun for all the family."} {0.038093884,0.033390526,-0.015881175,0.007038017,-0.03319558,0.032733012,-0.0056507005,-0.0110305045,-0.04445441,-0.04456705,0.00616565,0.02919418,-0.06521848,0.046776693,-0.005444911,-0.026219716,0.087881215,-0.052032597,0.005373291,-0.07817574,-0.034729693,-0.014285373,0.06538085,0.046093814,-0.149167,0.096728824,-0.023616642,0.07100348,-0.049884465,-0.002849164,-0.04200482,-0.02350183,0.047455665,0.0028585196,-0.05232667,0.003907185,0.07451425,-0.04776605,0.04255733,0.029324247,-0.04193028,-0.022957888,0.10934637,0.04189766,-0.008802706,0.09349068,-0.027868109,-0.049175337,0.035057258,0.07068558,0.082273945,-0.028981686,0.07386224,-0.047029316,0.035918396,0.067378,-0.05653039,0.030824058,0.04204427,-0.022635933,0.04295425,-0.07063057,-0.027957046,-0.005396074,-0.06818821,-0.11471444,-0.116993465,-0.0026851455,0.07843574,-0.05994199,-0.0028387904,0.03542365,0.05851959,-0.01242939,-0.04898704,0.039762896,-0.035729263,-0.02872799,-0.1043593,-0.017604023,-0.026160924,-0.085021794,-0.013064602,-0.031364974,-0.029073745,-0.026169304,0.027867062,0.05323423,-0.0017901554,0.017057674,-0.05039666,0.040731363,-0.03278723,-0.027737824,-0.013699427,0.012469255,-0.031979218,-0.01164408,-0.012949296,0.03237942,0.032798473,0.08094884,0.0848261,0.06624193,-0.021931548,0.018342653,-0.03675556,0.07736315,0.07723393,0.009927301,0.022755662,-0.034532964,0.055595227,0.022251181,-0.10623243,-0.049160827,-0.0064513497,0.011505731,-0.043049004,-0.0028244453,0.07613792,0.0021391942,0.006857469,0.033885755,-0.021463228,-0.034173656,0.031379,-1.2231462e-33,-0.04269422,0.0016310875,0.030363843,-0.032301083,0.05532579,0.028107882,-0.06501479,-0.056740727,-0.07033592,0.06628349,0.02132073,-0.0064539555,-0.0050822617,-0.024055187,0.02481732,-0.04607925,-0.13236253,0.0019697673,-0.025348743,0.049772404,-0.043349475,0.013133769,0.04470749,-0.037517194,0.05863689,0.026628634,0.035933405,-0.031248856,0.120332845,0.0018558685,0.0067842174,-0.024413291,-0.05395969,-0.01599786,0.010543586,-0.0317476,-0.06586028,-0.06966914,-0.006563966,0.0073247934,0.007713545,-0.09347913,-0.045413785,0.07419312,-0.07267656,0.015219737,0.009340568,0.0328963,-0.008843796,0.011616066,-0.03153592,-0.062070116,-0.065133736,-0.014031263,-0.025680054,-0.067131646,0.045593217,0.037806533,-0.022234786,-0.06020463,0.14473231,0.06499247,-0.008466735,-0.08857949,-0.0070899925,0.0073405583,0.0015554297,-0.0019655852,0.04338708,0.010680508,0.07104659,0.019984227,-0.010938236,-0.015989453,0.03855556,0.03964035,0.00088592153,0.06806853,0.009433613,-0.0321639,-0.10266481,-0.0125834495,-0.00649695,-0.03417501,-0.011201167,-0.014718699,-0.08420293,-0.07284297,-0.08900118,-0.0069709425,-0.052213997,0.027759966,-0.05299178,0.088798195,-0.011418518,-1.7706405e-34,0.027263306,0.03710828,0.038115796,0.014293101,0.05252186,0.037943162,0.0017045045,-0.034878317,0.091554835,0.06428837,-0.13316955,0.013349518,0.066875555,0.05726784,0.038068093,-0.02303275,0.13113049,0.048286304,0.048314214,-0.07076477,0.012252118,0.036822956,-0.039950013,-0.031879544,-0.017902313,0.046460338,0.007043112,-0.072005756,-0.11463578,-0.021113237,-0.036778964,-0.011965619,0.06532499,-0.053986162,-0.045228202,0.04527357,0.019495802,0.03214067,-0.03695436,-0.041718714,0.058640923,0.006259126,-0.0018141872,0.07130933,-0.019268116,0.035979982,-0.05634721,0.09363101,-0.060385775,0.03649725,-0.026975902,0.0011739912,-0.04813997,-0.050763134,0.0069828327,0.022710033,0.01816301,-0.027844984,-0.026089553,-0.07419015,-0.053907413,0.05347775,-0.083555564,0.09657363,0.005965948,0.03526514,-0.059593197,-0.075734794,-0.0694592,0.048313864,-0.13122371,0.048221625,-0.036298536,0.016500471,-0.05083485,0.029267417,0.09836572,0.007603303,0.059609566,0.08690332,0.0077034794,0.0007715941,0.061155934,0.00018411361,0.07443656,0.039363973,-0.07585755,0.0127973445,-0.046825316,0.10853385,0.14288807,0.08810254,-0.021418402,-0.012889293,-0.07128659,-2.5483473e-08,0.0063344985,0.05786251,-0.039268725,-0.0343358,0.029879458,-0.048511233,0.08700129,0.036731966,-0.03180578,-0.031729467,-0.005073173,-0.05884885,-0.041164584,0.047202967,0.05570941,0.024276216,-0.013091063,0.10019852,-0.039216258,0.06421575,-0.027667413,-0.015012163,0.016765473,0.06778894,-0.0687912,-0.057839174,0.051435534,-0.004260017,0.039330836,-0.085633226,0.011090691,0.07552633,0.03038049,-0.03025991,0.0017982655,-0.036438838,-0.04889678,0.018017268,0.02078947,0.032457683,-0.04301822,0.025170203,-0.049731888,-0.020899843,0.008420305,0.023938099,-0.02350783,-0.04541512,-0.06060262,0.03816711,-0.09740932,-0.029221602,-0.064031266,0.051816974,0.08870541,0.05168574,-0.06315123,-0.023642166,-0.0025715798,0.054338034,-0.013422153,-0.029465226,0.015908748,0.059133098} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.093528+00 2026-01-30 02:01:09.075525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1942 google ChdDSUhNMG9nS0VJQ0FnSUQ2enVIT3ZnRRAB 1 t 1945 Go Karts Mar Menor unknown Buen karting. Muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos por el mismo precio. Al menos en septiembre q he estado yo.... buen karting. muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos por el mismo precio. al menos en septiembre q he estado yo.... 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {O1.02} V+ I2 CR-N {} {"V4.01": "Buen karting. Muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos"} {0.029198218,0.081147045,0.017211493,0.0047986885,-0.085468985,0.06441036,0.04783844,0.0497544,0.0020121168,-0.020358084,0.09505664,0.017044319,-0.06450053,0.050019257,0.0720905,-0.00855695,-0.013203906,0.033380993,-0.019907426,-0.015901333,0.06693694,0.008906689,-0.06056516,0.07125104,-0.08914595,-0.053474557,0.041408367,2.7248712e-05,-0.009047311,-0.066212565,-0.0024557249,0.0442058,0.015500746,-0.0336432,-0.021596903,-6.945649e-05,-0.009962615,0.0075986744,-0.015189987,0.0062205656,-0.04735797,-0.06669632,-0.03901023,-0.055909436,0.044941753,-0.021133788,0.030493112,0.012497458,0.058386948,-0.03927826,-0.025294079,0.0073201885,0.034108076,-0.03688013,0.0348476,-0.054328453,-0.07311281,0.030665332,0.12485236,0.03567522,-0.018193888,0.0071900347,-0.052437525,0.0574726,-0.07386961,-0.115029365,-0.012484994,0.007376032,-0.07692383,0.10554429,0.15673439,-0.056709487,-0.093131825,0.012350221,-0.031714972,0.008981936,-0.017063728,0.074800804,-0.08020112,-0.06393135,0.05401599,-0.049518522,0.0077533918,-0.045065776,0.030813832,-0.044591114,0.032026973,0.103042066,0.041057654,-0.028739572,-0.040956963,0.08352287,-0.10566713,-0.0220191,-0.01616397,0.032062612,0.02542154,-0.015777797,-0.014472469,0.03462618,0.07970334,0.023012118,0.016513847,0.105716296,-0.053567287,0.044758227,0.041629493,-0.006186727,0.005042348,0.011038495,0.011218724,-0.04773271,0.0031444791,-0.10032996,-0.04013246,-0.017551422,-0.049841404,0.0008422856,-0.027008738,-0.017603384,0.030426104,0.053386185,-0.018924432,0.0057044732,0.01223071,-0.030267403,0.15416516,7.4446056e-33,-0.07144278,-0.08092638,-0.031298257,0.023841383,0.05997618,-0.054937217,-0.022369538,-0.07014038,-0.048523385,-0.036566846,-0.010024907,0.0021571643,-0.04079715,-0.06549648,0.06700949,0.020186465,0.029904382,-0.03407106,0.066891566,0.0062052757,-0.027215542,-0.103756495,-0.03709026,0.05630012,-0.02920089,0.030773595,0.038067907,-0.08984398,-0.043523338,0.043305967,-0.061712027,0.030101301,-0.06341439,-0.017857501,-0.037613023,-0.0076924255,0.027821042,0.050601188,-0.055236638,-0.022045119,-0.029898273,-0.01139512,-0.06418108,0.03349443,-0.031642783,-0.02535418,0.04993794,0.030571174,0.005253949,0.04629336,-0.07535657,-0.0075054076,0.005627418,-0.0480234,-0.0050298134,0.042263407,-0.023935098,0.029274011,-0.036491662,-0.0014315454,0.07737497,0.043678433,-0.038067073,-0.04444372,-0.12601183,-0.059772078,0.024599897,0.012125208,0.09655832,0.00013674024,-0.068688974,0.023734707,-0.016485164,-0.028261377,0.08175438,-0.028098915,-0.021229213,0.07081595,-0.030311214,0.036000967,-0.065467864,-0.04709515,0.02813322,0.007396513,0.0546046,0.06773891,0.078428246,0.007922391,-0.029192848,0.073889405,-0.092977375,0.056482136,0.06848634,0.050973106,0.05091644,-9.2611374e-33,0.032959774,0.022423478,0.05787387,0.08285723,0.06524175,0.045851152,0.014207461,0.030721214,-0.04989764,-0.036154967,-0.109517634,-0.09672778,0.07611552,-0.043913245,-0.037518844,0.039575666,0.03150625,-0.036161732,-0.0444138,-0.03281451,-0.011773485,0.05745467,0.021981744,-0.03135806,-0.034625113,-0.037272584,0.05427248,-0.0076243076,-0.15992701,0.043552905,0.041425418,-0.08874544,-0.008458836,0.02982426,-0.06860289,0.04379165,0.023551378,0.07703445,-0.02488518,0.10129842,0.05693752,0.07035573,-0.028522903,0.0061742575,-0.01750151,0.019150961,0.020666996,-0.09027837,-0.04916334,-0.0057971072,0.065554835,0.0065878406,-0.056176234,-0.023162572,0.05958547,-0.07508992,-0.0052646934,-0.051807247,-0.10821301,-0.002483339,0.038288943,0.008895337,0.0132144755,-0.02992878,0.07587175,0.0132903205,-0.123847686,0.0050666286,0.011583926,-0.030747062,-0.0075071366,-0.020185402,-0.078252606,0.04651615,-0.023029992,0.0033084436,-0.0643422,0.03134372,0.042937364,0.023627307,-0.016952429,-0.013423668,-0.03219782,-0.015490496,-0.048259586,-0.025266455,-0.023971748,-0.008946351,0.04997031,0.021058626,0.06698019,0.06573299,0.011500144,-0.021347,-0.05811915,-4.430635e-08,-0.016786406,-0.049040146,-0.08816145,-0.028003646,0.07011316,-0.03462112,-0.024249949,0.024186775,-0.0035525535,0.040832106,0.04392872,-0.029379983,0.038429156,0.05382654,-0.02528332,0.051852945,0.14477901,0.073709264,-0.008351501,-0.031949375,0.11805951,-0.014263393,-0.059542447,-0.0026595143,0.003327166,0.009202106,-0.050839204,0.027254688,0.0029893927,-0.053584114,-0.022332475,0.017650358,-0.05096299,-0.03047734,0.0043528206,-0.0057408535,-0.032282252,0.052633297,-0.020518404,0.020068133,-0.026702596,-0.03332713,-0.06837503,-0.034902077,-0.081583746,-0.035872202,-0.022440003,0.02700315,-0.04046452,0.04112269,-0.06351459,-0.012258256,0.11635283,0.019827802,0.10929009,-0.037877925,0.027415603,-0.038806964,-0.093514204,-0.07783623,0.026402129,0.09261084,0.013533012,-0.011030189} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.209126+00 2026-01-30 02:01:11.309469+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1355 google ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE 1 t 1358 Go Karts Mar Menor unknown nice venue. good track. friendly people and they speak english really had agood day nice venue. good track. friendly people and they speak english really had agood day 5 2022-01-31 01:52:39.833374+00 en v5.1 P1.01 {A2.02} V+ I2 CR-N {} {"E1.04": "nice venue. good track.", "P1.01": "friendly people and they speak english", "V4.03": "really had agood day"} {0.006031781,0.022416566,0.012930814,-0.010653429,-0.02532901,0.056524403,0.029205915,-0.056199927,-0.052014858,-0.040917907,-0.020427916,0.017318813,-0.012591793,-0.026025979,0.00033623414,-0.0018796386,0.017210286,-0.0751739,-0.009814112,-0.04685231,-0.0653293,0.025576867,0.02626244,0.09969975,-0.10151616,0.059720695,-0.023588076,0.1016064,0.049290452,-0.016447775,-0.04462548,0.07835627,0.027061025,-0.004746091,0.012708006,0.021596752,0.042051468,-0.119195394,-0.056177612,0.042089835,-0.009379544,0.010197215,0.10261395,0.02752396,0.01334968,0.013349631,-0.04114656,-0.04037803,0.056615297,0.041458238,0.0982321,-0.043531142,0.068130895,-0.120732814,-0.08419355,0.06457419,-0.009313702,0.011791351,0.021755548,-0.06209583,0.03126914,-0.043759942,-0.06382821,-0.019663597,-0.002863293,-0.059074737,-0.07707996,0.05967427,0.08247049,-0.017074121,0.03899016,0.015127507,0.096331865,-0.02198206,-0.017653288,0.036728416,-0.076544434,-0.023667857,-0.054165926,-0.015882397,0.07807575,-0.05636097,0.02314053,-0.041028574,0.029997382,-0.08642349,-0.0112783825,-0.021714764,-0.02207503,-0.033034887,0.030475339,0.11323312,-0.052441303,0.017484054,0.04985112,-0.020342465,-0.01626243,0.1111545,0.0010646477,0.09695973,0.07554004,0.19074567,0.024518752,0.053022858,-0.026685825,-0.000120379795,-0.07305757,0.11524383,0.020475011,-0.06992085,0.035336386,0.012343991,0.020114964,0.07049953,0.016232844,0.06234371,0.060730826,0.045638286,-0.0014109267,-0.080116026,-0.008883744,0.055587225,-0.025131647,0.0041367724,-0.008241866,0.036078375,0.046114422,-6.5817894e-34,0.02120335,0.0078101815,-0.039939523,-0.04406606,0.09112448,-0.01717828,-0.1466713,-0.016597133,-0.08975033,-0.048092898,0.036756855,-0.101847515,-0.0018059104,-0.13061702,-0.03763019,-0.04342508,-0.037199665,0.04480003,-0.06795743,0.020383181,-0.019094387,0.04045169,-0.021637876,-0.043982483,-0.023979086,0.057510942,0.024325594,-0.02929421,0.08724925,0.016113551,-0.007331633,-0.043349147,-0.011619212,0.012671936,0.03397946,0.03508507,-0.004898807,-0.077617496,-0.0014779124,-0.024159864,0.05207249,0.01957307,-0.0021257426,-0.002142083,-0.017244447,0.06819772,-0.04531286,0.05219575,0.108359426,-0.012420192,-0.06158598,-0.04923752,-0.12652247,0.022174412,0.05839734,-0.02541705,-0.002003253,0.08747345,0.07353513,-0.021436388,0.02914452,0.06836764,0.0016769567,-0.069144,-0.02097023,-0.00838485,0.010125193,-0.044476807,0.10141292,-0.032107927,-0.010607169,-0.014004787,0.036584333,0.0027648204,0.007377655,0.036668126,-0.058470666,-0.031042581,0.04586687,0.07423522,-0.026897298,-0.0033822027,-0.003872765,-0.020494457,0.033720363,0.0060636555,0.017454129,-0.119253546,-0.063285224,-0.03912679,-0.07113824,0.07039189,-0.002996878,0.001990028,0.011797365,4.4841082e-34,0.10788569,0.063230515,0.012306233,0.06073083,-0.032276206,0.0071449354,-0.03335086,0.08783309,0.08395733,0.04650594,-0.029860357,0.0070240935,0.0801802,-0.008115567,-0.03607179,-0.063679315,0.09097217,0.019242702,0.011759247,-0.019177679,-0.038556527,-0.028337961,-0.05726894,-0.0028172506,0.007313827,0.030001542,-0.009822039,-0.016008994,-0.05136343,-0.04616534,-0.028515255,-0.02964891,-0.10129104,-0.051737677,-0.0010978323,0.07602559,-0.0006547409,-0.01844729,-0.05000916,-0.032288782,-0.049189832,0.050292227,-0.04681848,-0.004990071,0.017999638,0.048186414,-0.026903689,0.090787366,-0.07721052,-0.05376433,0.0015183451,-0.009516122,-0.01786246,-0.0750866,-0.00828226,-0.021811211,0.03600776,-0.06704587,-0.047405474,-0.023767011,-0.07903404,0.03064158,-0.08862158,0.024880923,0.043426055,0.024280086,-0.03273985,0.023220902,-0.02421825,0.06871194,-0.046311874,0.0008891084,-0.0331637,0.081450984,-0.006009116,-0.037624747,0.05163105,0.010235451,0.018704718,0.018194804,0.029699929,0.06430944,-0.05672619,-0.015466832,0.062756605,0.12565564,0.018775757,0.028198494,0.0042284047,0.116365306,0.06394345,0.07632661,-0.08933175,-0.03406873,-0.033073854,-2.0610544e-08,-0.011538395,0.084638275,-0.06493074,0.024810225,-0.03036049,-0.11804329,0.041029725,0.033011075,0.0056558624,0.06082019,-0.015952405,0.0021568395,-0.09924064,0.012172749,-0.06177414,0.018883957,-0.05497589,0.082214706,-0.042420246,-0.011389308,0.05685715,0.030577773,0.022275943,0.009545656,0.0027162686,-0.020522878,0.053824473,-0.016109215,0.040101543,-0.12332028,-0.023497626,0.05437376,-0.03565156,0.04474443,-0.015491242,-0.019640835,-0.06653724,0.0035379685,0.015970713,-0.014752504,-0.04153125,-0.041273423,-0.01493622,-0.016852103,0.019205207,0.003694559,0.0362246,0.0032460266,-0.052186076,-0.031101841,-0.07028926,-0.0251574,-0.015464035,0.07265078,0.041527748,0.038191985,-0.045273878,-0.0078914985,-0.006510129,0.03282727,-0.0182929,0.039559945,-0.05328118,0.024081724} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.30428+00 2026-01-30 02:01:09.096265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 198 google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB 1 t 201 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I dont recommend. The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. Also the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. i dont recommend. the attendant gave me the information that i would receive the refund from my reservation if i decide to upgrade my actual plan, in the end it was a mistake and i would not receive my refund and got overcharged. also the shuttle takes ages, so prepare yourself to wait for long minutes at the airport. 1 2026-01-04 01:27:48.340172+00 en v5.1 V4.04 {} V- I3 CR-N {} {"J1.01": "the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "V4.04": "The Attendant gave me the information that I would receive the refund from my reservation If I decid"} {-0.010294172,0.017791182,0.006879925,-0.0033158993,-0.046486024,0.052997794,0.033030864,0.006035365,-0.033741344,0.0203219,-0.007417858,0.046835937,-0.051790796,-0.019661946,0.01423897,-0.08944527,0.08368568,0.020694258,-0.0193434,-0.01060188,0.053673804,-0.024521431,-0.04079703,0.035947528,0.05802752,-0.01413034,0.013221893,0.06590368,0.006090931,-0.010313092,-0.0004910701,0.02429159,-0.018840158,-0.054100618,-0.0010289445,0.028419368,-0.018818004,-0.032458436,0.014060912,-0.0155883925,-0.031170717,0.037170354,0.00718177,0.089706644,0.015934724,-0.048859548,-0.024144202,0.020966278,0.07917989,0.081641726,0.046869285,-0.010400157,0.026488908,-0.047091745,-0.031602636,0.037542596,-0.0041184593,-0.022365304,-0.027047414,-0.002713512,-0.09727223,-0.07778152,0.05720426,0.023623342,-0.06257701,0.00982338,-0.013165482,-0.05232147,0.098146014,-0.08111499,-0.05653642,-0.039291777,-0.00036926797,-0.047163278,0.017570224,0.115898184,0.036642518,0.056650933,-0.028880337,0.018467654,-0.026658991,0.009549801,0.014909747,-0.027096579,0.053711593,-0.1202322,0.007635759,0.02577165,-0.016421203,0.040698223,0.10074633,0.027496612,0.05374604,-0.0646268,-0.055221274,0.10007976,-0.1460684,-0.082884096,0.02607471,-0.019841392,0.012322566,0.11935724,-0.02475501,0.05489827,-0.04239384,-0.116791986,0.02993959,0.042595815,0.04275147,-0.10178573,-0.025489422,-0.014503577,0.12576601,0.005202857,-0.050929967,0.0706827,-0.0731741,-0.08622046,0.05539339,-0.059321847,0.007305076,0.025642915,0.12068811,0.032494616,-0.12519737,-0.06376819,0.0645976,-2.6109138e-33,-0.09736794,0.046602838,0.033102624,-0.043984216,-0.01683185,-0.06834351,-0.047113426,-0.03435109,-0.0019362209,-0.04125409,-0.06253203,-0.0176623,0.023077132,-0.026653117,-0.002429603,0.06520337,-0.01642425,0.10917135,0.043473348,0.024358321,0.0064399987,-0.06780299,0.0014110176,-0.07073941,0.11037424,0.014817386,0.0069992305,0.02157873,0.08052039,0.0012078596,-0.040522728,0.032805756,-0.017026125,0.016002987,-0.017600797,-0.0004033156,-0.0041096793,0.0024518385,-0.07162255,-0.0298715,-0.028928572,-0.010595014,-0.05672679,0.018572493,0.037619468,-0.0002372442,0.0050923447,-0.08342145,0.025970945,0.045127526,-0.08805444,0.026678635,0.011214669,-0.0121232085,0.0030791694,-0.07219875,0.12358597,0.051422086,0.08919338,-0.009235104,-0.038312852,-0.05624252,-0.03555532,0.017835723,-3.2553853e-05,0.034792967,-0.028050847,-0.0360324,0.052143794,-0.024596522,0.077231154,0.066681035,0.007196307,0.07360877,-0.019920453,0.0132579645,-0.07351001,0.08047452,-0.019474372,0.049604706,0.10065143,-0.011487684,0.027467517,0.06523458,0.06449066,0.0015899829,0.08267488,0.024938714,0.07751003,0.019974984,-0.050417565,-0.0035647592,-0.010001842,0.040138416,0.024612522,1.31449435e-33,0.06385618,0.023088593,-0.007102434,-0.055466346,-0.09646549,-0.01579683,0.0057693785,0.046009984,0.035694826,0.009073019,-0.10290014,0.000424182,0.08215366,-0.027662251,-0.0021978347,-0.047700386,0.00083396846,-0.074257486,0.01178633,-0.021584775,0.0073238206,0.0004308283,0.002406824,-0.041912176,-0.0059752106,0.052839413,0.025377905,0.06715208,-0.07920304,-0.04881501,0.01962539,-0.032199804,-0.06296693,-0.012024554,0.060349,-0.044820562,0.0031592846,0.06521355,0.0045929058,0.09766784,0.029937241,-0.06932527,-0.016336694,-0.043068293,0.07405812,-0.0457092,0.04959661,-0.112384245,-0.0033697393,-0.042227186,-0.07105997,-0.02184675,-0.0058592176,-0.02570243,0.032883372,-0.016604839,0.11005008,-0.025573479,0.059517123,-0.07597443,0.024844268,-0.017498696,0.052965146,-0.05440159,0.0023728465,-0.050711006,0.07804128,-0.054289468,0.027474184,0.049054645,-0.04975732,-0.06135553,0.019001208,0.10589925,0.05044098,-0.010709095,0.11661254,0.016413344,-0.00249036,-0.07200606,-0.033416957,-0.028943116,0.04099941,-0.0012336867,0.051146302,-0.065401435,0.0016573224,-0.031580154,-0.04259809,-0.0155117,-0.06291741,-0.024346072,0.009654036,-0.009552867,0.016387377,-4.24609e-08,-0.024929462,0.0759476,0.06673207,0.08354157,0.011930272,-0.08508074,-0.08411062,0.02840889,-0.07971275,-0.053643234,0.04533321,-0.037098825,0.021458454,0.06881313,-0.072484724,0.04007962,0.043851133,-0.009937879,0.0067010713,-0.043619126,-0.11044357,0.07183001,0.0034296608,-0.033801757,-0.0043181065,0.042346865,0.04172099,0.050421484,0.08701882,-0.116901234,-0.05113121,0.0112243695,0.03321238,0.048329033,-0.062344275,-0.09959495,0.00092091295,0.014679945,0.050339278,0.019784676,0.0013675202,-0.016408596,-0.02788892,0.017718626,0.09054235,0.014835859,-0.06713535,-0.057969492,-0.06872585,-0.014566837,0.0013516365,0.0045309644,-0.0078040366,0.027471665,0.060262065,-0.038644522,-0.04724885,-0.003201659,-0.014790596,0.045192312,-0.0520004,0.0025188797,-0.0675358,-0.034179475} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:41:20.965535+00 2026-01-25 01:27:50.007889+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 201 google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB 1 t 204 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown This is absolutely the worse experience I've ever had, trying to rent a car.\nThe booking was done online, confirmation received by email. With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we didn't want to buy additional services. Therefore they refused to handout the car, and we had to return to the airport empty-handed.\nSimply the worse company ever. this is absolutely the worse experience i've ever had, trying to rent a car. the booking was done online, confirmation received by email. with my wife and two small kids trying to pickup the car, clickrent simply didn't accept that we didn't want to buy additional services. therefore they refused to handout the car, and we had to return to the airport empty-handed. simply the worse company ever. 1 2025-12-26 01:27:48.340189+00 en v5.1 R1.01 {} V- I3 CR-N {} {"R1.01": "This is absolutely the worse experience I've ever had, trying to rent a car. The booking was done on", "R1.02": "With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we did"} {0.038761947,0.0605187,0.03992612,0.072119534,0.0019517286,-0.015008009,-0.005892212,0.0019092895,0.05213425,-0.019606791,0.06602082,0.10317728,0.014821765,0.053905178,0.036626153,-0.03559515,0.06205814,-0.11424464,-0.00055234006,0.025545053,-0.03317897,-0.07541021,-0.015144489,0.0058751805,0.124266475,-0.010965801,-0.06662564,0.07279759,0.025487876,-0.026084019,-0.0015070338,0.020562192,0.036397412,-0.031157287,0.05536703,-0.050988793,-0.0006176402,-0.06762651,-0.023471506,-0.08055558,0.08239869,0.05794074,0.0136859305,0.018542122,-0.0077076205,-0.0017457283,0.06240235,0.03908296,0.008006303,-0.032457445,0.024964202,-0.0479185,0.004339732,-0.039680574,-0.13186558,-0.01187278,0.040553227,0.08992803,0.013880547,0.00039431563,0.00612476,-0.030226652,0.0035400777,0.055298124,-0.041610207,0.042570524,-0.06960504,-0.07965001,0.0472576,0.021335736,0.03205157,-0.025319582,0.010375084,0.07862238,0.052073296,0.049881123,0.053950597,-0.0055556446,0.0605714,-0.004275131,-0.048058566,-0.003630787,-0.015531905,0.015649932,-0.017719973,-0.034436267,0.041517645,0.018297477,0.046523064,0.014885339,-0.0044989614,0.010790602,0.048436824,-0.013396914,-0.014037115,0.012796851,0.033247583,-0.03424128,-0.07856369,-0.016417295,0.116661124,0.11862393,-0.043403625,-0.044786483,-0.050052136,-0.033826705,0.050749302,-0.06631943,-0.028298266,-0.03322713,-0.018851679,0.017802496,0.066669345,-0.04489506,-0.11034737,0.0878749,-0.024873594,0.058796786,0.047580585,-0.057766274,-0.050172385,0.01694586,0.04452128,-0.023240266,-0.0046020164,-0.04233645,0.04559254,-2.246814e-33,-0.04755486,-0.023765417,-0.05009962,0.014702847,0.10437251,-0.065837726,0.0022059323,0.122422524,-0.06681593,0.09381885,0.03060477,-0.06758759,0.08122637,-0.08813973,-0.03728199,0.043884117,-0.06654266,0.058396626,0.0008312207,0.0008438849,-0.008136192,0.028307237,0.040686496,0.06007667,0.031854887,0.00599391,-0.055748247,0.017767815,0.12994681,0.000951074,-0.07071619,0.025320005,0.089707024,0.06869547,0.010157505,0.01881699,-0.0012638093,0.044545017,-0.049455166,-0.055289306,-0.04780101,-0.069394864,-0.09074663,0.015818382,-0.03607733,0.033555917,0.021093417,-0.1182723,-0.06877427,0.09151583,-0.12107496,0.01373614,-0.046103183,0.075321615,-0.115993604,0.031889826,0.049613945,-0.015185426,-0.007520978,-0.080234565,0.03733537,0.038883843,-0.025873153,-0.052870538,-0.014962856,-0.1273974,0.030474724,-0.018195584,0.0077981856,-0.009194632,0.060015153,0.037035838,-0.0044473745,-0.028157149,0.03769176,-0.004780307,-0.061538547,0.021047803,-0.007750757,-0.05485872,0.09296581,0.0069430447,0.102098234,-0.013760067,0.032195717,0.046903558,0.027086612,-0.042250693,-0.0042993343,0.079852805,-0.035638258,0.058776394,0.004087387,-0.0027423392,0.11919945,1.0061867e-34,-0.02932055,-0.054300815,-0.02894154,-0.067312494,-0.06763062,0.00035631968,-0.025663914,-0.010988215,0.012560589,0.011312521,-0.0378796,-0.0085137505,0.07440221,0.0027856904,-0.015839795,-0.07039069,0.036932126,-0.028494423,0.022472095,-0.0066995383,0.044979222,-0.026411358,0.06823864,0.039475802,-0.047281835,0.012546906,0.022319324,0.059008937,-0.034742024,-0.022737263,0.067107856,0.017159188,0.009273352,0.06762888,-0.0015524417,0.020954482,-0.009314959,0.10750386,-0.031736523,-0.064310685,-0.008774146,-0.049215823,0.004946188,-0.025431735,0.060240764,-0.06907322,0.04261725,-0.12287229,0.055087723,0.015498167,-0.029445454,0.0027941363,-0.049986828,0.038823273,-0.04532984,0.024639938,0.02970302,-0.04825599,0.08174161,0.065336205,-0.035137363,-0.054465085,-0.00091057905,-0.07192556,0.0040582772,-0.07529666,0.028113142,-0.012744503,0.057773497,0.030587524,-0.040857196,-0.068654634,0.026413245,0.070184596,0.038101964,0.03998722,0.06236437,0.015683608,-0.08755739,-0.11911077,0.08121809,-0.0011829509,0.01888012,0.011508085,0.016502656,0.034198247,0.03243707,-0.085688144,-0.011664662,0.054599017,0.011560364,-0.0025778685,-0.041455865,0.043761443,-0.022693967,-4.379645e-08,0.013388699,0.0019579579,0.05894524,-0.045413636,0.025350017,-0.05027736,0.02735485,0.06487615,-0.10118065,-0.021512674,-0.073194034,-0.028994603,-0.04973904,0.07794224,-0.054318007,0.0077859405,0.015916832,-0.035930444,-0.010763761,0.0050380155,-0.08084851,0.029079037,-0.051654585,-0.059533387,0.0060657896,-0.040780358,-0.049101178,0.048094757,0.038649496,-0.078879915,-0.115862295,0.026104975,-0.012422618,-0.013019419,-0.123864345,-0.07082574,0.027045544,-0.03025972,-0.040420476,-0.021802695,0.025628423,0.061108924,-0.010515044,-0.032572106,-0.0047076456,0.056496017,-0.07142591,-0.011742464,0.03609762,0.009899019,-0.03999408,-0.04864479,-0.04672459,0.07571265,0.08545127,-0.10450557,-0.017941048,-0.034323525,0.020031374,0.05372826,-0.052205797,-0.0017461823,-0.027590958,0.006641053} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:41:58.230024+00 2026-01-25 01:27:50.023426+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 202 google Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB 1 t 205 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total)or else we were charged a 1200 euro deposit. We were going to chose the deposit but they complained that my card had problems which I was forced to pay the 150€. The car given does not match what we ordered. Terrible experience, don’t come. we booked for 6 days and had bought full insurance on bookings. however, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total)or else we were charged a 1200 euro deposit. we were going to chose the deposit but they complained that my card had problems which i was forced to pay the 150€. the car given does not match what we ordered. terrible experience, don’t come. 1 2025-11-26 01:27:48.340194+00 en v5.1 V1.03 {} V- I3 CR-N {} {"J1.02": "Terrible experience, don’t come.", "O4.01": "The car given does not match what we ordered.", "V1.03": "we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were fo"} {0.05667862,0.09777849,-0.03391775,-0.0051782564,0.015605653,-0.01059775,0.046933427,0.00068767456,0.029901415,0.011927883,0.023689138,-0.021219192,0.05809188,0.003733893,-0.027090728,-0.043189798,-0.054654118,-0.04371801,-0.036211956,0.11453808,-0.08167035,-0.023759026,-0.09749817,0.04107989,0.042529486,0.011789819,0.06927335,0.022826796,0.0037580105,-0.03145114,-0.035203815,-0.0028173502,-0.04064347,-0.042178698,0.034789562,-0.09481012,-0.11891803,-0.15208836,-0.060916565,-0.049441274,0.0027706332,0.037673302,-0.035916924,0.04373605,0.046499405,0.026540874,0.036674913,0.106039196,0.005191386,0.06798461,0.05809642,0.029992657,-0.006594491,-0.14711991,-0.08157229,-0.025529668,-0.029754957,0.040626414,-0.03335699,0.034521326,0.026165372,0.025954995,-0.013910039,0.07415626,-0.06076854,-0.02020711,-0.054784454,0.018439589,-0.05125427,0.062811784,0.023261743,-0.07056298,-0.0046875053,0.017644987,0.046397455,0.0424345,-0.03306978,-0.0010764698,-0.018233068,-0.046536416,-0.04705107,-0.06924603,0.053136054,-0.051209293,0.11190876,-0.07037904,0.0065231263,0.019944837,-0.046495467,-0.076985,0.038779043,-0.04334727,0.03961123,0.032379813,0.02343061,0.006940065,-0.00043329867,0.0411809,-0.032757856,0.016119327,0.049640298,0.03507759,-0.024673088,0.02233626,-0.060531296,-0.0117889345,0.053064723,0.0416296,-0.015714856,-0.06891926,-0.054962102,-0.040737063,0.100458965,-0.032863427,-0.0043784347,0.04046139,-0.08118317,-0.004758087,0.09868904,0.0035864501,0.059295587,-0.022923581,-0.01604598,0.027622934,-0.056548785,0.047658976,0.10325893,-2.3329302e-34,0.004815755,0.04088605,-0.06674918,-0.088811815,-0.011965521,0.0063160975,0.017483516,0.025578747,9.728673e-05,0.012191089,-0.0151596395,-0.023931796,0.038429715,-0.015211142,-0.08157849,0.1004378,0.02223416,0.09297004,-0.005515998,0.09552877,-0.05590228,0.015290519,0.07291705,-0.052184872,0.04243035,0.06823674,-0.021023212,-0.03691166,0.050309703,0.0255385,0.005096005,0.014891072,0.033650022,0.024259176,-0.03641479,0.048689764,0.028924916,0.014731778,-0.03875204,-0.02978562,0.009931464,0.0068657906,-0.06522229,-0.022950804,0.016461466,-0.006911969,-0.057621963,-0.034136184,-0.10346504,-0.008006945,-0.15933064,-0.03087998,0.0007914674,0.035851754,-0.036897503,0.0021916032,-0.00045835125,0.046702754,-0.028146274,-0.061273966,-0.014332189,0.00875851,-0.042755727,-0.012733867,-0.025661135,0.026299862,-0.013010818,-0.033968214,-0.086789876,-0.038971312,-0.031539872,0.013935137,0.09307026,-0.017696902,0.002702282,-0.024847925,-0.025930092,-0.01999444,-0.042223733,0.023310697,-0.11842952,-0.025570998,0.004708421,-0.021594893,-0.025328862,0.03235432,0.01845192,0.061151497,0.030595846,0.010219409,0.012927133,-0.033372156,0.085992575,0.014956993,0.09597071,-2.1520087e-33,-0.014829006,0.011865039,0.029471416,0.01882638,-0.08341467,-0.0029356913,-0.0423885,0.024326677,0.04079828,0.05267586,-0.020820115,0.025219126,0.04759828,-0.058580585,-0.005350717,-0.047806125,0.039217103,-0.029230438,0.09053098,0.004016861,0.027626239,0.026767818,0.022028068,0.04314566,0.01589349,0.01896625,0.039007615,-0.040235706,-0.017823437,-0.03038575,-0.0437298,-0.049790423,-0.010991752,0.033087187,-0.013728914,0.003773836,0.0154369045,0.14417176,-0.08164411,0.008791842,-0.021018216,-0.0715896,-0.017954672,0.026102835,0.13937302,-0.094271764,0.07535708,-0.10484399,0.05044906,0.003741609,0.030630535,-0.07680982,0.0871714,0.056318216,-0.06853856,-0.031737074,0.053307,-0.021412572,0.0031863088,0.017320162,-0.021257313,0.03852077,0.020972935,0.020721814,-0.030152652,-0.023623714,-0.09604191,-0.0055776797,0.12643735,-0.03209274,-0.13026977,0.04898023,-0.02975532,0.06369097,-0.0035433173,0.08107057,0.025375225,-0.04996962,0.030284228,-0.022016924,0.004823769,-0.051210716,-0.0046085496,0.028260842,0.025187075,-0.009026645,-0.008472813,-0.076064795,-0.039239872,0.018695086,-0.0019231108,0.05366934,0.05820503,-0.03747963,-0.06390377,-4.336468e-08,-0.04076518,0.04349209,0.04895914,0.017632905,0.0389994,-0.10226354,-0.018627347,0.09926294,-0.06713048,-0.058618426,-0.0234469,0.04313848,0.053879432,-0.11879888,-0.08359115,-0.033603184,-0.0067637647,0.05299917,-0.0011037976,0.08977449,0.047579873,0.045043383,-0.00010390215,-0.05781581,-0.039771046,-0.032686856,0.04677554,0.06671697,0.015660603,-0.0995747,-0.063457265,0.014590515,0.0790663,0.009668761,-0.049432695,-0.09571512,0.06869871,0.062291067,-0.006820253,-0.046147477,-0.0035991708,-0.03930129,0.042058364,-0.07358382,-0.009057051,0.011336532,-0.036066268,-0.060087014,0.12089132,-0.06599811,-0.015937978,-0.00084807305,0.0459026,0.099883,0.055808257,-0.006267653,0.007974786,0.004865582,-0.013787019,0.06300973,-0.08679211,-0.004654342,-0.0010632613,0.00018387145} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:42:10.536669+00 2026-01-25 01:27:50.030513+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1357 google ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE 1 t 1360 Go Karts Mar Menor unknown Really nice set up, great circuit, 1100m. Karts are good and well balanced. Friendly happy staff. Extra good value on Wednesdays really nice set up, great circuit, 1100m. karts are good and well balanced. friendly happy staff. extra good value on wednesdays 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {} V+ I3 CR-N {} {"O1.02": "Really nice set up, great circuit, 1100m. Karts are good and well balanced.", "P1.01": "Friendly happy staff.", "V4.01": "Extra good value on Wednesdays"} {-0.05969998,0.059487235,-0.007893134,0.038534686,-0.15347347,0.026433842,-0.03469071,0.031525623,-0.00637665,0.004349991,-0.034063958,0.011063498,0.02018073,-0.012391372,-0.038954213,0.019148571,0.04806857,-0.07516091,0.011606738,-0.01903806,-0.09311534,-0.03472672,0.031918705,0.016574776,-0.070725605,0.015122093,0.011812536,0.084900886,0.0002910643,-0.110624045,-0.105871454,0.035485715,0.04193034,-0.03268065,-0.05163687,0.045437075,0.023612207,-0.10609184,-0.060341448,-0.035492036,0.0050619445,-0.027159274,0.030217456,0.016953446,-0.05037796,0.052737314,-0.016512679,0.02470919,0.05152061,0.031499542,0.037405558,-0.092860505,0.08305074,-0.048287317,0.0066282707,0.04923317,-0.07766267,-0.005606766,0.1059859,-0.030532561,0.111865945,0.017380118,-0.07286883,0.021643497,0.013212878,-0.06096674,-0.040816765,0.06973827,-0.017618034,-0.033875935,0.027234543,0.009002695,0.037196357,-0.0190488,0.06660038,0.025268726,-0.031405874,-0.07473126,-0.029724501,0.048103597,0.03335439,0.006876929,-0.054174643,-0.023474203,-0.019859571,-0.109807625,0.058847502,0.025729304,-0.004111158,-0.03547383,0.06004489,0.082778275,-0.020746084,-0.021619624,0.025958676,0.062442694,-0.05449898,0.002360487,0.002130168,0.036134217,0.07467141,0.10999699,0.047187187,0.033682037,-0.021129325,0.042277846,-0.060850993,0.089542985,0.030834336,-0.035226036,0.011461994,0.07120517,-0.06767219,-0.02050194,0.017663501,0.016125007,-0.03985033,0.037319966,-0.022865323,-0.0036923385,0.020003598,-0.022654103,-0.025389116,0.03881711,0.04208008,0.070805475,0.03273477,4.6895704e-34,-0.04744145,0.07178739,-0.014637238,-0.022398662,0.06391384,-0.1187039,-0.045278773,-0.044845182,-0.090245605,0.02863777,-0.01800682,0.10266814,-0.010516985,0.015838653,0.030062234,-0.13926694,0.0029638926,-0.05838853,-0.031613138,-0.002028468,-0.02134625,-0.07488552,-0.007270494,0.061480418,0.05837069,-0.011715851,0.054092336,0.040256526,-0.013673597,0.0016842018,-0.021900356,-0.021489555,-0.00847587,0.0031589621,-0.04341656,0.056096308,-0.047523968,-0.036292978,-0.014041485,-0.0021429437,-0.020029306,0.001649959,0.00929779,-0.030135436,-0.0680474,0.029794969,-0.014916159,0.018745717,0.025834287,0.027019633,-0.09373693,-0.007139619,-0.01978903,0.08901617,0.0013256124,-0.017254135,0.090158306,0.016072253,-0.04619042,0.022280412,0.05035956,0.03304534,-0.0032772182,-0.052412655,-0.09041651,0.009263878,-0.022415996,-0.050951596,0.054590862,-0.04976109,-0.0342895,0.0139553165,0.061865233,0.012072686,0.043373764,0.08299058,-0.11790592,0.008240664,-0.0071440698,0.13878167,0.03798692,0.037411638,-0.026540224,-0.0050322954,0.035302226,-0.025090436,-0.026646664,-0.048777953,-0.010438488,0.10059809,-0.034373995,0.06922137,0.028365206,0.06967778,0.0283697,-1.5420572e-33,0.053060148,0.10297321,0.036616024,0.09264936,0.026123347,0.02822562,0.021309331,0.043810915,0.014542747,0.070297986,0.012388848,0.054421082,-0.042404376,-0.012895105,-0.032797832,-0.053336043,0.060427792,0.006234641,0.046090566,-0.12969612,0.020021947,0.10903953,-0.07639797,-0.064347,0.0076944497,0.047644347,-0.11327698,0.0044543557,-0.07763379,-0.008886505,-0.06509072,-0.063412964,-0.0006072167,0.0426972,-0.01651434,0.014867348,0.081885755,0.10681142,-0.030580759,-0.002840316,0.05932733,0.03365314,-0.06836436,0.014654112,-0.04468131,-0.020761913,0.13061014,-0.035109513,0.003500736,-0.052391026,0.010055834,0.01894942,0.0074995323,-0.010886826,0.028736018,-0.1128739,0.021692025,0.03568225,-0.0146311065,-0.027877148,-0.014991002,0.020871418,-0.028982194,0.07630815,0.07298043,-0.057413615,-0.0041015246,-0.030665774,0.013091824,-0.015018828,-0.09717726,0.02617127,0.061998457,-0.025777413,-0.0055112527,-0.034723766,0.01668357,-0.042892374,0.042830877,0.0030949125,-0.010795087,-0.02081415,-0.039744966,-0.0041612494,0.0102352295,0.057625405,0.02011449,0.014094743,0.03734561,0.051455297,0.040328197,0.062236622,-0.004680882,-0.019986127,-0.010749685,-2.6346212e-08,0.011871648,0.05671735,-0.10342546,0.013116485,0.029369501,-0.09406656,0.034806367,0.015872564,-0.073049724,0.014537301,0.06543222,0.013391412,-0.021181557,0.0023091894,0.008059243,-0.053089775,-0.034430917,0.15646191,-0.03201993,0.007253379,0.03021479,0.05349306,-0.012119607,0.07575133,0.008261312,-0.030130437,0.027106477,0.05538356,0.007802764,0.013287316,-0.04253633,0.039254088,-0.10774659,-0.028832676,0.019838875,-0.017703319,-0.1154676,0.06321004,0.040969882,0.010226183,-0.057895124,-0.12846105,-0.13251027,0.027388455,-0.052472,0.025713513,-0.07746733,-0.0035169218,-0.044832136,-0.037859436,-0.054303654,-0.012201297,0.019499524,0.01071465,0.010700834,-0.008776724,0.029965583,0.0050405557,-0.013999962,-0.033237047,-0.06665378,-0.07282628,-0.096237004,0.02011236} 0.8666667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.006856+00 2026-01-30 02:01:09.101989+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1356 google ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB 1 t 1359 Go Karts Mar Menor unknown Brilliant. Really good track. Cheap prices. Definitely going again.\n\nPlenty of parking. brilliant. really good track. cheap prices. definitely going again. plenty of parking. 5 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"A4.02": "Definitely going again.\\n\\nPlenty of parking.", "O1.02": "Brilliant. Really good track.", "V1.01": "Cheap prices."} {-0.001015795,-0.004830017,0.036874436,0.016822822,-0.020630406,0.052054778,-0.025005654,-0.021035403,-0.06537795,-0.0659,-0.029663935,0.09133702,-0.023919027,0.01404098,-0.054534864,0.05683898,0.048237886,-0.0706988,0.017268157,-0.049868476,-0.07363172,-0.022145927,0.027850343,0.034378953,-0.10420875,0.07243215,-0.03571495,0.07036766,-0.050132025,0.011124088,-0.06577747,0.071930125,-0.044490326,-0.020064909,0.016251318,-0.0073595545,0.0476606,-0.04771,0.017199092,0.044778455,0.017207291,-0.0379672,0.023273665,0.012595266,0.0008337331,0.04572258,0.017388398,-0.0063412944,0.11137379,-0.001964572,0.08121951,-0.021703785,0.04780285,-0.095515646,-0.08797767,0.049696386,-0.01885185,-0.0044185147,0.02124165,-0.053355075,0.04954267,-0.05783033,-0.05999864,-0.0065246476,0.032809492,-0.07185167,-0.083584964,0.014466486,0.062330242,0.050012987,0.0334262,0.06854737,0.011991344,-0.06184094,0.008164513,0.017943634,-0.010465076,0.014599942,-0.05971628,-0.0675843,0.0052353702,-0.095539816,-0.0026170088,-0.038966816,0.031780582,-0.097662576,0.057283945,-0.015261756,0.020688606,0.008157507,0.03967003,0.045949776,-0.039657764,-0.008448088,-0.03377099,0.07297494,-0.0551869,-0.002569886,0.013797944,0.058291055,0.08688076,0.12644011,0.06407739,0.01980058,-0.037494972,-0.020530159,0.011503767,0.14670286,0.03352269,-0.03158665,0.096530214,-0.004562689,0.0117515195,0.006491161,-0.014157292,0.092607975,-0.020560734,0.023896167,0.015925644,0.04984385,-0.033379897,0.0077198776,0.015045751,0.05513146,-0.028132766,-0.058222856,0.042525746,-5.8267488e-33,-0.060366083,0.046302617,0.005800432,-0.03897634,0.053545773,-0.0041928845,-0.106527396,-0.0023683812,-0.09271992,0.06788083,0.038651392,-0.01713687,0.015111805,-0.04681251,0.01941666,-0.06982109,-0.032960255,-0.034123868,-0.017803479,0.057366263,-0.017082889,0.06941147,0.009093877,-0.045358576,0.024917971,-0.010493205,0.040874075,0.008417264,0.16064519,0.01360399,-0.08276346,0.062178783,-0.012519988,0.036394633,-0.02933745,0.0474528,-0.059676472,-0.027413325,-0.0022727037,-0.026663199,0.034647617,-0.023837045,-0.06537685,-0.012864303,-0.031691745,0.04368324,0.021630947,0.034816768,0.084204085,-0.010805632,-0.09324437,-0.020410461,-0.116558276,0.005253988,-0.04354407,-0.058654234,0.007096409,0.023116415,0.043441176,-0.023685515,0.07772555,0.09750374,-0.036432393,-0.0860274,-0.052748177,-0.0006970527,-0.021312514,-0.015203643,-0.0051019383,0.08798022,0.031114887,-0.037796352,0.022724535,0.0016089904,0.09961527,-0.028012637,-0.06678735,-0.033848036,-0.0020740433,0.012484496,-0.034473766,0.03580383,0.0010992768,-0.0150145115,0.070721515,-0.022149269,0.014169447,-0.1253418,-0.061197132,-0.03140733,-0.0032959394,0.057579648,-0.029021231,0.03359073,0.03786415,2.6533448e-33,0.12719199,0.1167677,0.10665991,0.016942315,-0.023207763,0.06663689,-0.032866348,0.03158574,0.0066169025,0.063058496,-0.11586336,0.011419197,0.06370836,0.061329976,-0.07396787,-0.079071276,0.04544646,-0.009701729,0.010859755,-0.07986733,-0.015850304,0.04363421,0.023977026,-0.0040630214,-0.06422392,0.022515973,0.04155279,0.036932617,-0.040860705,-0.03713504,-0.102126986,-0.017693207,-0.04488977,-0.03597096,0.003190143,0.08710557,0.041055027,-0.016377075,-0.05136322,-0.01996262,-0.05628569,0.01744414,0.049946334,-0.0507685,0.051207926,0.015254507,0.042805474,0.111462645,-0.05207295,-0.0026012948,0.05517258,-0.031930957,-0.06183642,-0.03937231,-0.030821161,-0.011042072,0.061174378,-0.014408076,-0.038889583,-0.048172627,-0.08986152,0.028148122,-0.05817631,0.013783204,0.023695825,-0.07132391,-0.0050550736,-0.095221475,-0.051844157,0.046676304,-0.08733106,0.024731047,-0.046812084,0.035849486,-0.0024631438,-0.013787733,0.084950484,0.0032737658,0.022275843,0.011483221,-0.0019098402,-0.028616153,0.04081354,-0.031621672,0.053269412,0.032537516,-0.037185453,-0.022481857,-0.035157308,0.102260396,0.04460035,0.06867492,-0.04041406,0.0016765295,-0.08934468,-2.0186771e-08,-0.025270937,0.08584479,-0.03945665,-0.035274424,0.0069049257,-0.04835666,0.093659155,0.010150804,-0.049865816,-0.01668219,0.040101074,0.012724353,-0.023431413,0.114323,-0.10817829,-0.015592443,0.023904016,0.065303534,-0.040977526,0.00093521917,0.018868182,0.04868416,-0.0067274286,0.052581795,0.021058036,-0.015353271,0.05314439,0.050104056,0.009131308,-0.087220415,-0.047305673,0.0027725648,0.045316435,-0.00037745837,0.03048952,-0.08185185,-0.054232977,0.055578154,0.05587512,-0.042095404,-0.03225854,-0.016937835,-0.06389226,0.0055990326,0.036314953,-0.039846167,-0.01071935,0.009596858,-0.06611837,-0.014557283,-0.06692229,-0.042011164,-0.049699392,0.06402555,0.099382535,-0.008283138,-0.091768116,-0.01722949,-0.092871755,0.051433843,-0.018678403,-0.009060412,-0.06478299,0.052635573} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.565057+00 2026-01-30 02:01:09.099152+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1318 google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE 1 t 1321 Go Karts Mar Menor unknown Es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos. Hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito. La atención por parte de Roberta y su hija es estupenda, te asesoran que motor de coche coger y son muy amables. En los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el atardecer, porque no hace tanto calor. Y está abierto hasta las once de la noche. Muy recomendado!!! es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos. hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito. la atención por parte de roberta y su hija es estupenda, te asesoran que motor de coche coger y son muy amables. en los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el atardecer, porque no hace tanto calor. y está abierto hasta las once de la noche. muy recomendado!!! 5 2026-01-30 01:52:39.833374+00 es v5.1 E1.04 {A3.01} V+ I3 CR-N {Roberta} {"A1.01": "Y está abierto hasta las once de la noche.", "A1.02": "En los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el a", "E1.04": "Es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos.", "O3.02": "Hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito.", "P1.01": "La atención por parte de Roberta y su hija es estupenda, te asesoran que motor de coche coger y son "} {-0.028873455,0.021311622,0.012676981,-0.07114671,-0.07875381,0.0149887055,0.08873844,-0.03788065,-0.021469291,0.060030192,0.090587154,-0.06557761,-0.07346976,-0.0042525325,0.04966284,-0.01852923,0.03409404,0.008110613,0.047430597,-0.04721234,0.044535745,-0.0064355335,-0.04102502,0.08779573,-0.1169805,0.010662963,-0.018440071,-0.006777719,-0.10164723,-0.012829705,-0.03510313,0.07326165,0.015659133,-0.04542949,-0.027994212,-0.015161049,0.05899591,-0.13814372,0.011550614,0.06992629,-0.08025596,0.045302674,-0.013060093,-0.025088439,-0.06505588,-0.053559594,0.013010126,0.025083927,0.047857832,-0.08864823,-0.04851256,0.010566046,-0.014157562,0.0011999913,-0.04691485,0.021494329,-0.022122456,-0.03584013,0.08536341,0.060177628,-0.045474973,0.026809616,-0.0064053303,0.000379631,0.042996358,-0.036455322,0.055754215,0.0015013512,-0.009078485,0.06508307,0.030565416,-0.05658417,0.035167564,0.004951927,-0.05608979,0.017667705,-0.004535119,-0.02854897,-0.0016267587,-0.05904014,-0.02510457,0.04033461,-0.022167884,-0.045754842,0.02150707,0.03430102,-0.02715502,0.092101686,-0.0005150336,-0.019397901,-0.042873386,0.057100695,-0.087875806,0.004564004,-0.04796577,0.0027375622,0.016937414,-0.058194663,-0.036439817,-0.061381444,0.051327337,0.07176699,0.11682185,0.038876217,-0.08088018,0.0062008495,0.024565049,-0.01640978,0.02368906,0.05681807,-0.08490132,0.028372372,-0.057960503,0.008649273,-0.05585594,0.01401723,0.0325611,-0.07120188,-0.0002617723,-0.009787403,0.016332386,-0.04880905,-0.041326977,0.008920849,-0.008849895,-0.073543966,0.081293024,1.5712638e-32,-0.022369608,-0.033323005,0.07623187,0.06093903,0.03025826,0.059275515,-0.03261524,-0.003301945,-0.001123038,-0.04567323,-0.06229725,-0.020295369,-0.019032298,0.002711352,0.025108876,0.004896291,-0.01945574,-0.06046879,0.06844524,0.03390963,-0.035221446,-0.0044424837,-0.018372277,0.05211843,0.028218472,0.0072336737,-0.023543565,0.003402367,-0.08420414,0.044557445,0.0016821765,-0.014874348,-0.01768721,-0.013164487,-0.070082836,-0.07947027,0.042836864,0.024905566,-0.007183371,-0.013365116,-0.0142457485,-0.004350152,0.026183862,0.08371039,-0.0049798884,-0.004929411,0.0009823155,1.3366597e-05,0.049125683,0.044839256,-0.09336322,-0.041713063,0.021659767,-0.03907181,-0.04376553,0.038467683,0.0021932488,0.010751294,-0.060331527,-0.083261445,0.072430216,-0.015722444,0.019157482,-0.08211272,-0.046708725,-0.015495788,-0.011047859,0.018514896,0.16270801,0.056609765,-0.04927189,-0.09217054,-0.055636425,0.0021078377,0.08106069,0.03450224,0.040632337,-0.0044089295,-0.024646012,0.019816024,0.04255248,-0.0031565977,0.04192452,0.0074692643,0.08867709,0.022055898,0.059047513,0.06702385,-0.015100606,0.12313807,0.016662687,0.1139142,0.08705392,-0.038785066,0.017468527,-1.6286413e-32,0.035611756,0.04433257,0.006252086,0.015591361,-0.06798273,-0.04268125,-0.014601069,-0.04902273,0.018522043,-0.10228736,-0.06514455,-0.09589424,0.050231073,-0.07810268,0.0068807066,0.14615996,-0.0144209005,-0.040448338,-0.057977166,-0.038685236,-0.010678902,0.0077861133,0.011899528,-0.075753145,-0.043721277,-0.08805559,-0.010983547,0.034454513,-0.039076384,0.009710288,0.056952212,-0.021034695,0.09601882,0.087294735,-0.0047430834,-0.017576445,0.026177263,0.032219213,-0.06430269,0.0058343094,0.016067902,0.03720651,-0.0055601383,0.019195503,-0.014632385,0.013941683,0.03547438,-0.12100773,-0.103359066,0.047857348,0.06951709,-0.07463931,-0.0946384,-0.10815845,0.05613596,-0.008707875,0.036536157,-0.10794046,-0.06971138,-0.03012799,0.063804135,0.008830167,-0.088613905,-0.010842257,0.0683994,-0.047638185,-0.0155535685,-0.024451595,0.09488467,0.088704325,0.06980315,0.07543523,-0.06133534,-0.028902987,-0.041036643,-0.011961107,-0.052246124,0.0016089854,-0.03386516,-0.0331978,-0.047221772,-0.0014418748,0.0049270173,-0.083296105,-0.030289471,-0.02423321,-0.04515895,0.073003165,-0.018501872,0.069029935,0.05256165,0.0115393,-0.08329684,-0.05595339,-0.024271654,-5.7426732e-08,0.006317092,-0.0049215406,-0.033527628,0.057013694,0.06393137,-0.025434788,0.087304845,-0.04132815,0.04600887,0.043085873,-0.025099419,0.0021179211,0.068091884,0.080244556,-0.003881908,0.06243191,0.07544064,0.072515965,-0.014446571,0.02869584,0.06881083,-0.014088535,-0.07030238,0.101194695,-0.009450326,0.009379904,-0.04294902,0.072964996,-0.0070659425,-0.026117355,-0.01970523,-0.048304442,-0.0004474354,-0.065795764,-0.05980969,-0.07171325,0.007839315,0.037586585,-0.069240905,-0.019232834,0.050962802,-0.035227764,-0.073987685,0.019852875,-0.010753491,-0.07880452,0.042904545,-0.010147094,-0.048175115,0.083365396,-0.015893167,-0.049623676,0.07822657,-0.026102068,0.028072584,-0.01592289,0.015537327,0.0015170093,0.031936977,-0.009076998,0.05650475,0.11516514,-0.033504378,-0.06224653} 0.98 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:10.622555+00 2026-01-30 02:01:08.957161+00 22c747a6-b913-4ae4-82bc-14b4195008b6 212 google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB 1 t 215 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown No hassle, no waiting, excellent staff especially Gabrielle. Highly recommended for your car hire. The car was awesome and brand new like 1000 clicks on the odo. Great family experience made our stay worthwhile in Gran Canaria no hassle, no waiting, excellent staff especially gabrielle. highly recommended for your car hire. the car was awesome and brand new like 1000 clicks on the odo. great family experience made our stay worthwhile in gran canaria 5 2025-08-28 01:27:48.340436+00 en v5.1 P1.01 {} V+ I3 CR-N {Gabrielle} {"O1.01": "The car was awesome and brand new like 1000 clicks on the odo.", "P1.01": "No hassle, no waiting, excellent staff especially Gabrielle.", "R2.01": "Great family experience made our stay worthwhile in Gran Canaria."} {-0.033598687,-0.0017476708,0.022242708,0.048420627,-0.025526857,-0.024278417,-0.07108032,-0.053122837,-0.008930466,-0.04155232,0.062280457,0.027068615,-0.005276795,-0.0413081,-0.06773253,-0.027258089,0.10328158,-0.054092024,0.015251434,0.0035175022,-0.03257635,-0.06415346,-0.029721681,-0.00055083085,-0.014161922,-0.080629274,-0.0367991,0.068825595,0.035396818,-0.054928858,-0.033388928,-0.022298269,0.06815176,0.023929555,-0.025057048,0.068874285,0.031022318,-0.051135406,-0.058383837,0.017923405,-0.002178069,-0.09026208,-0.04311103,-0.0155108925,0.024418136,-0.0445055,0.088355124,-0.036649786,0.087141484,-0.05232266,0.008504578,-0.089140385,0.041258108,-0.007943727,-0.06849053,0.08044994,0.056720354,-0.035452705,-0.044612627,0.072914764,-0.0023566212,0.0013699842,-0.058640245,0.04170856,0.009784016,-0.03559471,-0.011244488,-0.049909685,0.056093354,-0.005503084,0.055223316,0.012675261,0.024304679,-0.0145292515,-0.031048987,0.06607432,0.10058156,0.033191957,0.08356797,-0.1009518,-0.008510108,-0.05746868,0.05500084,0.033389043,-0.03873858,-0.047110107,0.045782264,0.078243054,0.06773127,0.0033554984,0.074307896,0.07006693,-0.0059821494,-0.03730246,-0.0003012701,0.043181803,0.07329046,0.03894675,-0.054448705,0.03417307,-0.0050979163,0.05059785,0.029966395,-0.014426139,-0.09458518,0.018341513,0.045265835,0.012459592,-0.091413125,-0.03295919,0.026015623,0.017584365,0.04853456,-0.02353609,-0.111196764,0.07200475,-0.049793772,0.019714387,-0.07544637,-0.004265865,0.05361099,0.009708196,-0.024576366,-0.038581125,-0.012714592,0.010922704,0.11523228,8.581808e-34,0.034467563,0.030422095,-0.046624582,0.053428825,-0.00542308,0.044101767,-0.0031459564,0.03771977,-0.024157014,-0.012726311,0.029459348,-0.007702164,-0.053297047,-0.09563325,-0.008101355,0.022991262,-0.0028395003,0.0068318984,-0.07533974,0.004994296,0.023107775,-0.09259538,-0.09994924,0.0780678,0.051628184,0.07139705,0.016287478,-0.034354858,0.018748261,0.0379048,-0.049757443,0.04358968,0.0007093218,0.017711828,-0.03841967,-0.004494945,-0.05929611,-0.039420363,-0.03117496,-0.06361055,-0.03767555,-0.007785247,0.0070359744,0.025121357,-0.057251606,-0.007641552,0.10665559,-0.012501752,0.02561071,0.0878816,-0.05518641,0.027434543,-0.058012407,0.08601694,-0.017162787,0.065334745,0.016205968,-0.014094541,0.01944856,-0.008222864,0.024303615,0.06344298,0.029659979,0.034508247,-0.062482838,-0.051880244,-0.053328376,-0.0038383917,0.14228964,0.003760129,-0.006616581,0.023438487,-0.05563711,-0.03917247,-0.03860478,0.05108239,-0.0013207207,-0.04273485,0.043335456,-0.022023574,0.084071815,-0.00020223393,0.008521498,0.062162194,0.16515242,0.032983806,0.050243974,-0.026466077,-0.07046073,0.07769451,-0.022607436,0.059476424,0.03434513,-0.026522879,0.025215419,-2.3755413e-33,0.06883268,-0.07155634,0.04170004,-0.043158595,0.038834684,0.043024234,-0.10144972,0.031814683,-0.03411867,0.032457326,-0.10703652,-0.009522341,0.07917095,-0.033481844,-0.018454982,-0.0069911457,0.024110522,-0.07754297,-0.024544839,-0.004413663,0.014366561,0.024929293,-0.02332948,0.022071786,-0.023103345,0.017066237,-0.008930342,-0.0014540455,-0.13449138,-0.0047357567,-0.03579366,-0.052642077,-0.06768769,0.008736523,0.056991015,0.024996962,0.06981398,0.035942633,-0.04102328,0.08752583,0.06957331,-0.08949431,-0.009380366,-0.017095782,-0.060457747,-0.037575934,0.023524145,-0.11350198,0.011476036,0.043724973,-0.0043173046,0.008870346,-0.07782284,0.00461989,0.049910303,-0.05475206,0.060346622,-0.067733325,-0.049398586,0.00080939225,-0.011702037,-0.015366686,0.03874747,-0.051709145,0.033340752,-0.11384525,0.053585447,-0.07666745,-0.024997076,-0.007854255,-0.044096917,-0.04264196,-0.07979566,0.020723207,-0.042264283,-0.0059609204,0.051642954,-0.1318443,0.0034622126,-0.058778737,-0.021964261,-0.019467939,0.04156587,0.015346063,0.00802288,0.082345136,0.07875456,-0.050925367,0.04787796,0.06005003,0.055808935,0.06471725,0.012168427,-0.019334503,-0.07149904,-3.2339347e-08,0.02675724,0.018176137,0.0859005,-0.024818713,0.0061078887,-0.0928874,0.032952037,0.03841447,-0.09495755,0.06431433,0.064679675,0.015942635,0.061208144,0.06622297,0.054157846,-0.019666899,0.10823653,0.02741717,-0.112873845,-0.098741286,-0.03274498,0.052874025,-0.0041055214,0.03874975,-0.02750987,-0.021029884,0.024828803,-0.025405899,0.027113158,-0.06044445,-0.08417126,0.036215205,0.0019867658,0.0066168816,-0.03132166,-0.049924426,-0.019966245,-0.0050273864,-0.019725924,-0.014791482,0.040496815,0.055151872,-0.011034882,0.025869843,0.025785936,0.046338644,-0.018140845,-0.02304873,-0.053343154,-0.02258459,-0.058343116,-0.09281372,-0.024397945,0.086234786,0.012314215,-0.05473794,0.009168175,-0.035372652,0.10501766,0.060557622,-0.09664439,-0.06505266,-0.056613725,-0.008203871} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:43:33.385369+00 2026-01-25 01:27:50.058112+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 216 google ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE 1 t 219 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I don't usually write reviews but I feel obliged to for ClickRent as I hope it will help you out with deciding on choosing a car rental in Gran Canaria.\nClickRent's office is about a 3 minute drive from the airport in a brand new check in centre which has many check-in desks and very helpful staff. The shuttle bus from the airport is super easy to find and Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!\nCheck in was quick and easy and we were on the road in under 20 minutes. All their cars are brand new and ours had less than 12k miles on the clock.\nReturning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning.\nI can't recommend ClickRent enough! i don't usually write reviews but i feel obliged to for clickrent as i hope it will help you out with deciding on choosing a car rental in gran canaria. clickrent's office is about a 3 minute drive from the airport in a brand new check in centre which has many check-in desks and very helpful staff. the shuttle bus from the airport is super easy to find and kevin the shuttle bus driver was the most polite and happiest gran canarian person we met on our whole trip! check in was quick and easy and we were on the road in under 20 minutes. all their cars are brand new and ours had less than 12k miles on the clock. returning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning. i can't recommend clickrent enough! 5 2025-05-30 01:27:48.340461+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"J1.01": "Check in was quick and easy and we were on the road in under 20 minutes. All their cars are brand ne", "P1.01": "ClickRent's office is about a 3 minute drive from the airport in a brand new check in centre which h"} {0.0046536345,-0.015839294,0.07059543,-0.016927082,-0.023102626,-0.009769676,0.037107375,0.029192213,-0.020723153,0.0064007333,0.04486517,0.0358284,-0.017683664,0.036960475,-0.021194028,-0.020251555,0.12497884,-0.07762805,0.039949898,-0.027710048,0.066263095,-0.08001299,0.049934007,0.008524732,0.027237143,-0.008163529,-0.019591033,0.07121247,0.03719972,-0.045187373,-0.060570773,0.045795783,0.01566434,-0.01912939,-0.048545334,0.035538625,0.014868892,-0.021906633,0.013804724,-0.02760322,-0.020042464,-0.00690344,0.0066420254,-0.044657875,0.0035113727,-0.07091042,0.10928154,-0.023424366,0.06692116,0.010734357,0.008949019,-0.011163177,0.09274971,-0.092899024,-0.06426538,0.0053835246,-0.044986796,0.0130028175,0.0098362,0.033729635,0.005910958,-0.059263498,-0.07975201,-0.01138517,0.02269364,-0.029839726,-0.08511014,-0.0008384568,-0.037217222,-0.06251561,0.03493151,-0.0024530583,0.017779965,0.026664197,-0.042298302,0.025820399,0.03525254,0.040503606,0.05820801,-0.065153964,0.034702696,0.0012223573,0.028174618,0.024547629,-0.0037367842,-0.089557715,0.03256456,0.056401037,0.020696606,-0.027666729,0.09973804,0.08927885,0.013136733,0.004860079,0.031732403,0.06767624,-0.028940579,-0.00412922,-0.0008223553,0.031190244,0.06854046,0.07973508,-0.019900875,-0.05270437,-0.04108258,0.015010597,0.063287124,0.023398781,0.031461388,0.05852021,-0.035744123,-0.008712576,0.066813305,-0.022325607,-0.086312674,-0.006159053,-0.011239752,0.017333206,-2.8892237e-05,0.012375922,0.01760502,-0.02671611,-0.03151577,-0.0362044,0.06633828,0.054027695,0.08303377,5.1982226e-33,-0.047024824,0.0671762,-0.08260685,0.10087925,0.0037691956,0.0009269618,-0.0021868292,0.055634893,-0.077302516,-0.018042548,-0.02492212,-0.0066726035,-0.098504096,-0.051972374,0.015707532,0.109298386,-0.006946919,-0.0046624113,-0.04746793,-0.0457881,-0.02151256,0.01147334,0.0025236413,0.01622982,0.021165453,-0.03114839,-0.014243804,-0.04315494,0.05119735,0.025579182,-0.08365101,0.017081922,-0.037266172,0.004346861,-0.0582999,-0.024843296,-0.06200627,-0.0088196965,-0.115635455,-0.072849795,-0.07836465,0.026706329,-0.06655102,0.01901,0.048176866,0.057890143,0.07050139,0.0067772814,0.00076628634,0.067476235,-0.08572121,0.0053048288,-0.06267975,0.06392415,-0.08076778,0.08821436,0.020544013,0.040623315,0.022325907,0.021813143,0.06860574,0.07137266,0.044134777,-0.08474492,-0.020527583,-0.041048743,-0.029142339,0.059902538,0.098775335,0.04339146,0.05493274,0.05063348,-0.013862975,0.005638218,0.025082756,-0.025399398,-0.073241666,-0.045547564,-0.055671692,-0.020635955,0.05352843,-0.04286131,-0.043735,0.048143372,0.009295358,0.07527738,0.08299527,-0.0006130847,-0.0692412,0.02636663,-0.019833794,0.10450358,0.025836306,-0.002402129,0.011383504,-6.126925e-33,0.047802757,-0.07393828,0.05077685,-0.018729175,-0.06002196,0.060593996,-0.13441233,-0.027174376,-0.030471329,0.038303,-0.13210082,-0.06993634,0.087476425,-0.04050296,-0.07725989,0.03198651,0.020172883,-0.11364619,-0.09758274,-0.020131992,0.034907334,0.092800185,-0.017630009,0.0524392,-0.049746983,0.011814721,-0.024576772,0.03608788,-0.020203108,0.01472565,-0.043098696,-0.012373104,0.0014639493,0.005967187,0.089956105,-0.010708147,0.10473811,0.027500954,-0.058632765,0.061680894,0.023289394,-0.016748922,0.04137679,-0.06304031,0.054150634,-0.03253525,-0.008329961,-0.07665431,-0.0006101286,0.00029083417,0.038004395,-0.055247754,-0.04696247,0.053820454,0.025207654,-0.01209466,0.06020455,-0.07175007,-0.043654975,-0.0011015201,-0.0843331,-0.026690502,-0.06783293,0.012605556,-0.026211908,-0.05639357,0.023969576,-0.040089305,0.011651191,0.015500792,-0.12317141,-0.07031479,0.0014349509,-0.034523223,-0.038628776,0.07935616,0.16876046,-0.059920076,0.03456773,-0.100408986,0.03820913,-0.007541654,0.022412956,-0.03534633,-0.01041881,0.045865778,0.05275267,-0.09781228,0.014562637,0.08502241,0.0028856506,0.05672351,-0.00893311,-0.08280594,-0.019679658,-5.3875294e-08,0.014051339,-0.06944725,0.001867467,0.007745976,0.007028051,-0.082594864,-0.046981413,0.098614156,-0.039343037,0.053463377,0.050007157,0.0026618917,-0.06909773,0.058169626,-0.047625437,-0.02915955,0.12896419,0.08404672,-0.034385685,-0.045155887,-0.029954584,0.010208624,-0.010888626,0.042178113,-0.016400356,-0.027176598,-0.0463521,-0.021359462,0.053087156,-0.01688652,-0.06695405,0.044587772,-0.015144806,-0.043211624,-0.044953376,-0.029060515,0.02928436,0.011226515,0.04437828,0.02381529,0.06756397,-0.068072066,-0.08311821,-0.04255735,-0.01404649,-0.025160892,0.006017839,-0.10311754,0.0022923802,0.043555908,-0.0010345291,-0.0846269,0.060728505,0.05928872,0.017374018,-0.039705988,-0.07229046,-0.019629821,0.0574363,0.07101205,0.0400553,0.03701854,-0.08698467,0.026037859} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:44:22.26426+00 2026-01-25 01:27:50.070919+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 221 google Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB 1 t 224 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Last two times was everything perfect and easy. This car rental service I can recommend. last two times was everything perfect and easy. this car rental service i can recommend. 5 2026-01-18 01:27:48.340472+00 en v5.1 J3.01 {} V+ I3 CR-N {} {"J3.01": "Last two times was everything perfect and easy.", "R2.02": "This car rental service I can recommend."} {-0.0035456696,-0.004427202,0.06271573,0.030107435,-0.054247737,-0.0014768039,-0.058852546,-0.011876159,-0.01869956,-0.078325145,0.04992327,0.10890265,0.03847039,0.073426954,-0.013484044,0.010775803,0.026737122,-0.04217951,8.602025e-05,-0.0672308,-0.049560647,-0.080713615,-0.05350209,-0.04641115,0.051458538,0.032889985,-0.0725916,0.09125481,0.028540807,-0.013608061,-0.004912957,0.01173589,0.017914506,-0.029628532,0.061575558,-0.03201089,-0.030848827,-0.06654367,-0.045531344,-0.03102811,0.02260056,-0.06057283,-0.029309155,-0.044562045,-0.028206924,0.0073058046,0.08263171,-0.00090117526,0.16084504,-0.039341915,0.030451668,-0.030675737,0.011598845,-0.024392754,-0.04348562,0.022608364,0.020012902,0.115365975,0.0023491597,-0.020896893,0.059094846,0.026846439,-0.042028736,0.09277389,0.08968561,-0.01249314,-0.068453185,-0.062906235,0.01407018,0.054044455,-0.08817501,0.004917599,-0.047319666,-0.013457072,-0.018967837,0.033887032,0.022864915,0.00217862,0.012181596,-0.053837538,-0.07171006,-0.07812572,-0.024048496,0.029121347,0.04250646,-0.07874125,-0.028920462,-0.032919742,0.01546051,0.01110114,0.099460356,0.09097689,0.0342669,-0.015616668,0.075643696,0.0013236256,-0.0066738264,-0.03996437,-0.01589633,0.06882555,-0.025999604,0.055083394,0.030555572,-0.07108212,-0.019804427,-0.03915727,0.07089391,0.028087197,-0.043656465,0.033709355,-0.021438109,-0.0016382451,0.049808912,-0.050587904,-0.027981967,0.049130406,-0.018900825,0.03833026,0.05121376,0.07287333,0.012452547,0.00968546,0.020338701,-0.028476816,-0.004426149,0.023346452,0.17084186,-2.3762778e-33,-0.031885467,0.03820402,-0.03433293,0.10236485,-0.016386377,0.02823853,-0.013642601,0.06900518,-0.016074358,0.06157016,0.097506076,0.005082927,-0.009082974,-0.0773561,-0.012075731,0.07947714,-0.025193626,0.06874131,-0.051490124,0.0005187824,-0.04124558,0.005885632,0.0653032,-0.009784206,0.115845606,0.004266407,0.09467226,-0.0030203576,0.10131124,-0.0078635765,-0.01558431,0.042809352,-0.019570991,0.030682903,0.03524697,0.092243455,0.012151189,-0.01690697,-0.05879209,-0.020647392,0.00931317,-0.015222278,-0.03481087,0.016939705,0.011405776,0.029397853,0.0059309783,0.00020327298,-0.050041888,0.061003502,-0.04347512,-0.005729291,-0.0633612,0.038387924,-0.10480333,0.059934456,0.030888421,-0.05036316,-0.037680287,-0.007975227,0.07941792,0.02263458,-0.01715231,-0.096506745,-0.061164793,-0.0718641,-0.03646218,0.041385118,0.04956161,0.042779204,0.0399338,-0.050120123,0.01578767,-0.0657804,0.027617857,-0.06371707,0.009918443,-0.064901784,-0.009155872,-0.02265472,0.038406678,0.008547631,0.003998809,0.058177058,0.05785401,0.007949635,0.06515892,-0.0667551,-0.050023496,0.07940534,-0.03604866,0.032771286,0.054454815,-0.035410017,0.061648834,1.3913975e-33,-0.010868042,-0.009975987,0.03902083,0.041281197,-0.013422988,0.030551985,-0.12434722,0.040442403,0.028684378,0.086635664,-0.048782583,-0.022309126,0.06579357,-0.04263164,-0.040145863,0.040379617,0.025278045,-0.096741475,0.010195683,-0.019135801,0.02836679,0.11918442,0.013140458,0.01564881,-0.041916434,-0.0025065958,-0.05714403,0.047154237,-0.07051236,-0.04366705,-0.052034333,-0.054320253,-0.049228728,0.022277163,0.024362296,0.06256867,0.08411679,0.098402455,-0.019584296,0.021625647,-0.02634667,-0.102393776,-0.04277737,-0.035968922,0.034089267,-0.060997732,0.059872832,-0.06173244,-0.023048166,0.08355881,-0.026984103,-0.09564492,-0.13986772,0.0367114,0.008149532,0.03881075,0.05891921,0.020005943,-0.03166814,0.03135679,-0.03622637,0.037012044,0.0067921556,-0.027173804,0.014480384,-0.08192782,0.08183289,-0.10495709,-0.06751484,-0.00524281,-0.084410295,0.041188862,-0.002876936,-0.028453443,-0.037289616,0.023289802,0.058622986,-0.06544524,-0.046359975,-0.081576824,-0.037863057,-0.015240351,0.010809317,-0.021708023,-0.03465727,-0.04123342,0.091743894,-0.102512285,0.04259492,0.08981692,-0.02243301,0.026564224,-0.0022586551,0.052302495,-0.05771532,-2.3577698e-08,-0.025097648,0.03830558,-0.044539027,-0.001616709,0.032133903,-0.120282054,0.037232403,0.031625085,-0.03545305,-0.081247084,0.05822091,-0.0140947625,0.008498997,0.038337894,-0.10058442,-0.037879653,0.08778738,0.013168351,-0.06428425,-0.018174844,-0.019603126,0.04117096,-0.011706795,0.020259157,-0.045396473,0.025572011,0.020407211,0.037487715,0.048333846,-0.09645561,-0.059762914,0.034290053,0.037396926,-0.002553104,-0.08456966,-0.06645749,-7.483635e-05,0.012186059,-0.0116207795,0.019836241,0.017707279,0.008454821,-0.04447221,0.010454297,0.022703417,0.057487387,0.014378228,-0.041167386,-0.005275632,-0.046947587,-0.01207916,-0.02465078,-0.02325758,0.09016222,0.08247733,-0.06270574,-0.012069932,0.005867776,0.031457648,0.0691516,-0.08322068,0.07070698,-0.062307112,0.0285335} 0.65 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:45:07.72481+00 2026-01-25 01:27:50.093345+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 225 google ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE 1 t 228 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I really enjoyed my first experience renting from Click Rent located in Gran Canary. Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward. They really goes up and beyond to make sure we’re satisfied.\nThis auto rental provided the best service we have ever had when renting a car. We would definitely rent from them again. Very professional and excellent service.\nI would recommend this place to rent from if you want to be in and out in a timely manner. Have a clean fresh stylish vehicle to sport with great pricing. Once again I had an excellent experience... i really enjoyed my first experience renting from click rent located in gran canary. danny, antonio and nestor was very helpful, they had a great personality, funny but straight forward. they really goes up and beyond to make sure we’re satisfied. this auto rental provided the best service we have ever had when renting a car. we would definitely rent from them again. very professional and excellent service. i would recommend this place to rent from if you want to be in and out in a timely manner. have a clean fresh stylish vehicle to sport with great pricing. once again i had an excellent experience... 5 2025-01-25 01:27:48.340501+00 en v5.1 P1.01 {P1.02,O1.01} V+ I3 CR-N {} {"A1.01": "I would recommend this place to rent from if you want to be in and out in a timely manner. Have a cl", "P1.01": "I really enjoyed my first experience renting from Click Rent located in Gran Canary. Danny, Antonio "} {-0.005884565,-0.05729866,0.039768033,0.050955657,-0.10882552,0.037547197,0.023848688,-0.014572191,-0.015293475,-0.03165276,0.042636942,0.06792843,0.009347167,0.082089566,0.014344751,0.002001764,0.103460714,-0.057161693,0.09342092,-0.07634115,-0.03825731,-0.0520381,0.006932727,-0.021596467,0.004431355,-0.035443127,-0.050398108,0.07733229,0.056702018,-0.030684143,-0.030537399,0.0074969777,0.07254949,-0.051715434,0.01767845,0.05012148,-0.03205971,-0.08202658,-0.076489225,-0.008466413,0.08469909,-0.013501662,0.026162622,-0.06019639,-0.018384619,-0.053259663,0.041212898,0.035745278,0.05654469,-0.023184296,-0.020901896,0.013158685,0.07725221,-0.08776183,-0.11310186,0.04624498,0.0117622055,0.04177935,0.029974414,-0.058068886,0.051969696,0.0034622706,-0.08127519,0.051894307,0.05777785,0.00042213156,-0.05854026,0.009642357,-0.016819667,-0.10125461,-0.05994398,-0.063119866,0.0049029863,0.019206408,-0.001156186,0.037303224,0.0230313,0.009060398,0.0032592122,-0.04218279,0.028277494,-0.011262454,-0.0139821535,0.019615034,-0.057367254,-0.06176107,0.023156036,-0.01010781,0.0062532015,0.022508824,0.091300875,0.10343111,-0.02985934,-0.007161395,0.08993346,0.059750587,0.0085649295,-0.013416561,-0.022507427,0.027742898,0.07512043,0.047468897,-0.038249206,-0.07517886,-0.028942376,-0.002141801,0.022066802,0.012072444,0.006826189,0.048157748,0.005595268,0.00934323,0.020024326,-0.067455426,-0.042028837,0.026117546,-0.028579393,0.031674,0.12654144,-0.0049234726,0.0630852,-0.029421773,-0.018562153,-0.05404634,0.092045285,0.006109743,-0.0061517665,-6.7982994e-34,-0.039365012,0.05951039,-0.018076321,0.07887176,0.029701257,0.028960217,-0.0287019,0.016223932,-0.09986311,0.0493669,0.08205256,0.013115327,-0.016110744,-0.008369335,-0.015459827,0.1135507,-0.010412033,-0.04273495,-0.048800293,-0.04688561,-0.050603148,0.10277653,0.0068651275,0.012376412,-0.019823933,-0.005164978,-0.030808,-0.01624295,0.025316799,0.040605236,-0.10744533,-0.007874838,-0.079490155,0.022169996,-0.058379244,0.03518901,-0.069326304,-0.05621564,-0.13759615,-0.0055394173,0.022645108,0.00033990527,-0.04156585,0.023536066,-0.014649524,0.008912942,0.05823362,-0.04355515,0.0020218655,0.032974564,-0.04789346,-0.05479084,-0.12381666,0.05413126,-0.065643035,0.10765733,-0.03151781,-0.013169486,0.0039595775,-0.03812768,0.077587985,0.005714222,0.03312748,-0.095649414,-0.03591869,-0.041362066,0.022645041,0.020637933,0.08909323,0.0765705,0.035551872,0.009273555,0.07720058,-0.038796227,0.037294433,-0.027286123,-0.086872414,0.0003820172,0.008856654,0.063805014,0.06111397,0.00264276,-0.00037462357,0.085755706,0.0077855852,0.042385742,0.048010968,0.013102228,-0.020816838,0.02603732,0.042123724,0.026710115,0.01049361,-0.045374095,0.015731743,-2.1841748e-33,0.019879315,-0.021607338,0.031487007,-0.032763034,-0.06767569,0.0799894,-0.15204886,-0.050425507,-0.030524153,0.038312614,-0.11570031,-0.004042145,0.07798467,-0.064599805,-0.016800456,0.045118593,0.004556263,-0.096208856,-0.009150401,-0.025701081,0.054144137,0.021807974,-0.01286591,0.06370951,0.020642312,-0.047520805,-0.040459145,0.0962929,-0.018027235,0.05319725,-0.03439067,0.0374086,-0.0037096152,0.018088186,0.00437355,0.11671279,0.04086032,0.03882276,-0.045365475,0.05164279,0.0041299574,-0.11114924,0.020368224,-0.06788531,0.04694568,-0.035453126,0.012811097,-0.030065326,-0.019888015,-0.012806407,0.028783815,0.033385444,-0.13327561,0.030189957,-0.03326927,-0.0077344966,0.026486266,0.025079638,-0.044857904,0.008899395,-0.06818847,0.022071298,-0.03406382,0.00073274685,-0.010586749,-0.053709302,-0.020943731,-0.04799405,-0.06967416,0.017518077,-0.070727184,-0.018892748,-0.00475081,-0.035600815,-0.013631881,0.039730966,0.12368248,-0.04220233,0.004056025,-0.060605496,0.06592403,0.0031345873,0.018317325,0.06885764,-0.02902253,0.06777413,-0.006500318,-0.04517968,-0.018347926,0.06290548,-0.008588171,0.11854694,-0.119384125,-0.07699323,-0.041579463,-4.648674e-08,0.0012671931,-0.0036642796,0.009566247,0.032480966,-0.05486597,-0.057230294,-0.00212043,0.14175329,-0.047567062,0.08492766,-0.046389535,-0.07862944,0.040152412,0.012359421,-0.042024743,0.055580918,0.066640966,0.05021929,-0.035915576,0.030220194,0.011209969,0.05158404,-0.002940985,-0.013018407,-0.060263176,-0.030771058,-0.020461673,-0.017142437,0.05456193,-0.04352493,-0.072536804,0.03237237,-0.055913568,-0.046000816,-0.019883052,-0.04507308,0.037856407,-0.075072244,-0.032150924,-0.021768536,0.059526257,-0.06556549,-0.030213924,-0.044073623,-0.06403657,0.007069571,0.0070380964,-0.077773705,0.028001849,0.008456886,-0.038520854,-0.006442913,-0.04515892,0.07695436,0.07030158,-0.053861648,-0.0017810283,-0.037819784,0.07713459,0.1104846,-0.025976071,0.04838592,-0.04154716,-0.011046106} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:45:56.117475+00 2026-01-25 01:27:50.116075+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1361 google ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB 1 t 1364 Go Karts Mar Menor unknown Been here twice over the last month great karting track to have fun with friends been here twice over the last month great karting track to have fun with friends 4 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Been here twice over the last month great karting track to have fun with friends"} {0.019213013,-0.089580484,0.04698843,0.05036143,-0.03725827,0.03233986,0.012799477,-0.078201525,-0.04169477,-0.046776745,-0.016274763,0.015534074,-0.017129913,0.038100258,-0.010418538,-0.018973848,0.07554873,-0.055310383,0.024208697,-0.09752152,-0.053531934,-0.023972284,-0.015259512,0.07365784,-0.09056114,0.0388423,-0.024603207,0.08798867,-0.012873356,-0.023508549,-0.06363099,0.058384202,-0.038489126,-0.016007282,-0.008440544,-0.0062110657,-0.038737077,-0.10122525,-0.009402023,-0.0008503111,0.010584718,-0.005986553,0.04147117,0.00074052997,0.028056467,0.06801745,-0.038144015,-0.037651625,0.08035171,0.07290151,0.09208823,-0.012996595,0.037132245,-0.011949411,0.021720804,-0.027468966,-0.08564854,0.03754221,0.025186222,-0.040956087,0.024484422,-0.039321836,0.0045275916,0.008852018,-0.07734649,-0.094018005,-0.110306,0.07117568,0.03946802,0.032562215,-0.016243482,0.033806827,-0.019253764,0.016447451,0.030837622,0.03402331,-0.0785761,-0.012156128,-0.039084382,0.012284014,0.06280805,-0.025424335,0.019118212,-0.07942641,0.014025904,-0.10628654,0.09082919,-0.018791055,-0.015811136,-0.009847766,0.012256878,0.13939771,-0.05989078,-0.066245526,-0.04230362,-0.04594003,-0.017016025,0.056352403,-0.024454808,0.07396053,0.06311211,0.11486358,0.021666158,0.054574076,0.003933241,0.035881072,-0.040222015,0.07202829,0.05557185,-0.014040817,0.026748868,0.009834558,0.018533306,-0.0024316846,0.059697025,0.009429321,0.05847991,0.089149766,-0.006649116,0.029415479,-0.044225346,0.020832032,-0.004601246,0.04274869,0.017573811,-0.010993761,0.03836181,3.3468932e-34,-0.0063815075,-0.031739246,0.027801195,-0.015212057,0.056008987,-0.06403824,-0.056067184,-0.08563436,-0.083236925,-0.0033689006,0.037573747,0.041045405,-0.009045507,-0.0774085,0.076439366,-0.023429293,-0.03255238,-0.032820746,-0.05380492,0.052315593,0.022750577,-0.0731068,-0.0052705174,0.036496926,0.0038721443,0.027984487,0.08563913,-0.07284782,0.10913363,0.016889375,-0.030154891,0.026331563,-0.051414393,0.0051509948,-0.017386355,0.034189202,-0.014078612,-0.058558952,-0.010547913,0.017640866,0.061737306,-0.026142197,-0.019201674,-0.04710273,-0.046769567,-0.011419793,0.04192418,0.07051424,0.014387816,-0.030459354,-0.114896424,-0.07011556,-0.0023000052,0.040989585,-0.00520026,0.01836762,0.00016944953,-0.028552992,0.03327568,-0.036065258,0.07781473,0.03682573,-0.0151063325,-0.11276167,-0.076026395,-0.037765544,0.0335337,-0.018667636,0.033165846,0.012901987,0.008117992,0.06011321,-0.008683448,-0.083529234,0.12011564,-0.003163664,-0.046891436,-0.024927575,-0.0633865,0.05332423,-0.03503824,-0.020645207,-0.029992951,0.021638269,0.043445706,-0.06327066,-0.01146021,-0.11580931,-0.071951196,-0.014483582,-0.08399785,0.016856983,0.026122553,0.066514045,0.033122078,-1.23836475e-33,0.08822961,0.031530753,0.10840153,0.0310047,0.03744539,0.00081648276,0.005993848,0.021383805,0.029025732,0.052459247,-0.05181982,-0.012108154,0.060793057,0.07159621,0.019515658,-0.0024241419,0.092705086,0.06801409,-0.018189492,-0.030990476,-0.036897816,0.025900664,-0.012927077,-0.013781084,-0.004530136,0.055756345,0.076173894,-0.03065764,-0.08142892,-0.003940012,-0.039680384,0.0018246319,-0.052071586,-0.07053915,0.00088693073,0.09883837,0.053769078,0.02237617,-0.09334164,-0.0147828115,0.022400785,-0.004225692,-0.0062093264,0.027215289,-0.005125984,-0.023790078,0.03716805,0.06781862,-0.024470482,0.024436098,-0.006231573,-0.03583679,-0.09257887,-0.0036618845,0.0004634126,-0.035200126,0.038697977,-0.0058072405,-0.06675267,-0.016534483,-0.08362475,0.037273243,0.003055653,0.03155476,0.04898449,-0.018041736,-0.0070533124,-0.060155503,-0.06216411,0.009731973,-0.1660291,0.10210382,-0.10066188,-0.0080979,0.02822318,-0.02382271,0.058384817,-0.0137941465,0.0056070415,0.035664245,0.018717567,0.039375663,-0.029719254,-0.010407467,0.060725212,0.061083984,-0.043092832,0.032809537,-0.0121896705,0.01117079,0.09553078,0.082576744,-0.107338496,0.006016003,-0.09963245,-2.1632578e-08,-0.041099764,0.1182719,-0.102200754,-0.008520925,0.07674725,-0.022252155,0.069310606,0.031201173,-0.052920185,-0.016172715,0.008644598,-0.01464805,0.0030988364,0.019979797,0.051913455,0.02602745,0.02187016,0.07439692,-0.017277015,-0.004202698,-0.029309643,0.005536965,0.004734021,0.02047662,-0.033937603,-0.023447778,0.032686703,0.026147656,0.10374826,-0.0999635,0.008504261,0.046609405,-0.011274942,0.004708388,-0.025954396,-0.12416852,-0.049460564,0.04586209,-0.018245297,0.003999129,-0.086584285,-0.0036093048,0.024128849,0.022827312,-0.053392343,0.09539591,0.037210036,-0.06953483,-0.042078353,0.0119570345,-0.13564853,-0.07536912,0.009753997,0.072432145,0.10219722,0.049922623,-0.05643133,-0.00029566488,-4.8382655e-05,-0.008335694,-0.03833577,-0.024173962,-0.04806051,0.08661851} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.57826+00 2026-01-30 02:01:09.113042+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1363 google ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE 1 t 1366 Go Karts Mar Menor unknown Great karts, they are pretty fast. Friendly staff and a good track. Not so big but big fun. great karts, they are pretty fast. friendly staff and a good track. not so big but big fun. 5 2021-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Great karts, they are pretty fast.", "P1.01": "Friendly staff and a good track. Not so big but big fun."} {0.010544662,0.018929604,0.021059522,0.088874415,-0.112650365,0.025025425,-0.055182572,-0.03159752,-0.018814012,0.04231681,0.009494949,0.018406184,-0.05049445,-0.0024831756,-0.018653374,-0.08786626,0.10808392,-0.06764204,0.008406972,-0.04561068,-0.080663875,-0.06295541,-0.010121011,0.068319574,-0.105070785,-0.01822453,-0.053866558,0.08054866,0.023583654,-0.032680422,-0.15202697,0.042304482,-0.00050968165,-0.0022715058,-0.06802905,0.02357462,0.05241565,-0.044551913,-0.03579745,0.0012820027,0.06056423,0.0006701431,0.052894007,0.009535862,-0.013066351,0.040323,-0.027221095,-0.013181142,-0.020571202,0.04708957,0.06026549,-0.06880734,0.03906116,-0.03838752,0.0061341724,-0.04223837,-0.10832163,-0.0021563547,0.052137963,-0.044107128,0.08032247,0.012845176,-0.042537987,-0.005825063,-0.05618157,-0.046154946,-0.03875236,0.07793953,0.027988292,0.011797728,0.04134873,0.010904682,0.020346107,0.051188607,0.015499442,-0.00979273,-0.063871,-0.027439388,-0.08654827,0.014820408,0.066947445,-0.01753674,0.03514253,-0.072767004,-0.035686117,-0.09536008,0.07464264,0.034983024,-0.017634785,-0.030663107,0.041118283,0.08208896,-0.027186655,-0.060134534,0.056959882,0.030887188,-0.007850312,0.032031532,-0.006809365,-0.005576218,0.09070282,0.08546556,0.06885411,0.05207062,-0.037005935,0.027576832,-0.058845572,0.043513723,0.064611085,0.041329477,-0.000860373,0.05364845,-0.029142605,-0.023572475,-0.018193688,0.007005752,-0.049499188,0.07887883,-0.02598901,0.049281836,0.010006655,0.012091172,0.009940684,0.0034371268,0.028962675,0.0059725307,0.043811865,-1.6706098e-33,-0.0823067,0.06644866,-0.032744005,-0.05657232,0.016971413,-0.13673124,-0.03625359,-0.14657359,-0.12473304,0.07971954,-0.062331956,0.048785232,-0.00015931416,0.035205442,0.11568141,-0.07068448,-0.027232625,-0.05914251,-0.08449891,0.0022189484,0.0027017896,-0.017264161,0.028268473,0.06822078,0.082637176,-0.028999412,0.062490378,-0.015316659,-0.004999836,0.0056950036,-0.062497493,-0.037449118,-0.0573999,0.028093593,-0.04861658,-0.0074970936,-0.035038248,-0.055911016,0.01763945,0.019169694,0.06235401,-0.03895999,-0.005731018,0.015381133,-0.07661884,0.0399345,-0.0005700284,0.044256106,0.047317337,-0.031339545,-0.030307533,-0.024223123,-0.040350653,0.0070514227,0.033643153,0.04642086,0.11082738,0.036739957,-0.09323428,-0.0068626194,0.057947468,0.008223627,-0.003690582,-0.036975835,-0.07626493,-0.02803238,-0.024063198,-0.02173182,0.07994084,-0.056519005,-0.02227336,-0.010471481,0.051467843,-0.07180002,0.095632955,0.009101435,-0.059204508,0.006816425,-0.07158265,0.082415625,-0.038689543,0.018764772,-0.03268002,-9.135778e-05,0.033692323,-0.0071486426,-0.07049361,-0.033919796,0.0188474,0.011696492,-0.060421064,0.07135384,0.022157941,0.06270653,-0.025177259,-4.1182613e-34,0.10078654,0.0817016,0.0769738,0.099858955,0.040648192,0.036840796,-0.026333917,0.053437874,0.025580877,0.05660059,-0.03209831,0.042917937,-0.02094616,0.010832332,0.030469568,-0.041059323,0.09009046,0.030030677,0.050314244,-0.15382972,0.008106315,0.0116219185,-0.009856412,-0.05783418,-0.0017098102,0.044336475,-0.051487952,-0.032823004,-0.106733695,0.01466713,-0.032880295,-0.040661953,0.011290482,-0.045809258,0.011903325,0.01985255,0.007877149,0.05819874,-0.088829786,0.022876097,0.028890036,0.04500027,-0.020097364,-0.0025845007,-0.06373713,-0.010997269,0.08317104,0.046187643,-0.01868772,-0.036874156,0.082780935,0.037023507,-0.019657318,-0.06399365,-0.0030228726,-0.086359926,0.023369195,0.008428064,-0.01744352,-0.039766904,-0.052062698,-0.0013748715,-0.009136835,0.08298495,0.032519802,-0.028182546,-0.052880783,-0.08911373,-0.04443074,-0.017106928,-0.102363676,0.030075252,-0.037898283,0.05617551,-0.036353752,-0.06888145,0.008919543,0.03223835,0.06455302,0.06352651,0.06521826,-0.014329536,0.008574665,0.03647208,-0.01449079,0.089532666,-0.07138258,0.0155346915,0.038054384,0.065459035,0.11927749,0.07390127,0.029401723,0.013357946,-0.040278807,-2.4221533e-08,0.03132263,0.0875134,-0.07152909,0.029922208,-0.0039884336,-0.019048259,-0.017164856,0.051137224,-0.046623558,0.060796395,0.01532968,-0.0024695757,0.0028343257,0.0038119399,0.024942927,-0.03324341,-0.029809346,0.123015195,-0.020774588,0.020387815,0.028786669,0.04007463,-0.030602306,0.059974745,-0.044499516,-0.067439325,0.011841996,0.005646372,0.025328571,0.008233329,-0.0334282,0.07201395,-0.05386785,0.050345197,0.0073632603,-0.018068463,-0.08919397,0.07580295,0.036243133,0.009788774,-0.039781008,-0.06709535,-0.07585765,-0.01967593,-0.072325826,-0.002799129,-0.044213213,-0.034548283,-0.0710538,0.0018620734,-0.04048355,-0.019179346,-0.023213945,0.07045533,0.033051547,0.025263663,0.014250019,-0.04834599,0.00087740726,-0.041078627,-0.07134956,-0.080582656,0.0020269214,0.05868374} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.626171+00 2026-01-30 02:01:09.119291+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1506 google ChdDSUhNMG9nS0VJQ0FnSURBaWJHUG53RRAB 1 t 1509 Go Karts Mar Menor unknown Great fun and friendly great fun and friendly 5 2019-02-01 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I2 CR-N {} {"P1.01": "Great fun and friendly"} {-0.028895032,0.0039026449,-0.002430975,0.0075473846,-0.061503906,0.033630796,0.07721586,-0.020094376,-0.014852072,0.0614168,0.03911205,-0.018557735,-0.045058765,0.037657917,0.008155636,-0.01710082,0.031474195,-0.044788457,0.013532797,-0.022741886,-0.04566598,-0.007550496,0.08139639,-0.027613705,-0.115965605,0.015545876,0.02232893,0.035506733,0.079137586,-0.027252698,-0.116728134,0.04864941,0.015990563,-0.019673573,-0.03129121,0.019024622,0.046905737,-0.07240591,0.0038308196,0.021108562,-0.03847233,-0.03890702,0.07058111,-0.0031853516,-0.074500635,0.13251519,0.01433878,-0.03292288,0.04406529,0.07763153,0.09277729,0.061646804,0.0109147215,0.011379876,0.033636875,0.059451655,-0.07558126,-0.058426823,-0.01156966,-0.033579055,0.06310073,-0.019454133,-0.022128874,0.05294052,-0.037469123,-0.058435563,-0.039798044,0.0572904,-0.003942834,-0.052559435,-0.069723144,0.05505133,0.07997273,-0.003989888,0.00640344,0.01640673,-0.003949248,-0.035986733,-0.009180266,-0.0010669292,0.0027922073,-0.039716672,-0.017869622,0.0016895805,-0.037353303,-0.15234213,0.03160037,-0.032547608,0.05195743,0.03296658,0.03475212,0.10603205,0.0076785013,-0.03247678,-0.047593236,-0.013157928,0.04239639,0.005488555,-0.06437527,0.08990446,0.00059433497,0.055485405,-0.006788648,0.030433273,-0.00027855686,0.08943883,-0.06768818,0.009328929,0.017777648,-0.03485088,0.004454184,0.013772533,0.013705752,0.02075233,0.048597798,0.076491624,0.004067217,0.024435276,-0.048849635,-0.11986077,0.079539455,0.02250307,0.022149969,0.0055119325,0.023935435,-0.018107466,0.061641492,-3.604222e-33,0.037734646,0.048454963,-0.019173197,0.04002621,0.022261245,0.06538824,-0.049534418,-0.028617134,-0.11183178,-0.07011923,-0.039639514,0.030425312,-0.0048658974,-0.0060583185,-0.03363677,-0.0356349,-0.06646198,0.06857627,0.005750548,0.034700457,-0.010852595,-0.023574473,-0.01379455,0.07046467,0.0100382,-0.02128996,0.03712244,-0.0950905,0.15389119,0.021142686,-0.021909256,-0.06389722,-0.072296456,0.016530516,0.064954184,-0.011858123,-0.09091537,-0.089389786,-0.0289919,0.04998609,0.124821976,-0.014556353,-0.022938468,-0.0049554054,-0.016186863,0.011786267,-0.03194542,0.03370909,-0.0408259,-0.013835078,-0.07260248,-0.04204569,-0.0658392,0.0756057,-0.03324247,-0.015617434,0.021077683,0.010252322,0.007524565,-0.040077657,0.12258172,0.100774914,-0.04407135,-0.09570069,-0.024863744,0.0044684755,0.012042569,0.035757508,0.06913712,-0.06013886,0.02174298,0.05409308,0.11084334,0.0025104769,-0.031981006,0.04349129,0.021589236,-0.053378917,0.04274086,0.009246317,-0.0051129903,-0.017534757,-0.068790175,-0.03138369,-0.034890655,-0.01761089,0.00419069,-0.14775018,0.010577837,0.070612505,-0.106432624,-0.0069575906,0.10597762,0.04374724,-0.030511795,1.9392501e-33,0.02492248,0.030755697,-0.061759256,-0.0011338888,-0.034009293,-0.007424163,-0.033983048,0.04576034,0.047596987,0.041087322,-0.0005389421,0.045523085,0.02422142,0.01628945,0.01389001,-0.039076667,0.023054421,0.03185892,-0.08921709,-0.04086863,-0.010761975,0.062221467,-0.07690858,-0.036847603,-0.018305512,0.036955163,-0.04140331,-0.0153944325,-0.018466057,0.01713798,0.03628863,0.01705908,-0.026370289,-0.09895984,0.01605787,0.09138051,-0.010055272,0.0032133556,-0.047629263,-0.05623786,-0.016470158,0.05289933,-0.061020106,0.02983331,0.026676498,0.008911544,0.039522674,-0.010598479,-0.08879385,0.01014881,0.020822521,-0.016090393,-0.017317753,-0.13134603,-0.006537585,-0.10034407,0.020073665,0.038711544,-0.021342149,-0.03457354,-0.008232078,0.08052008,-0.036966946,0.14345054,0.09168247,-0.037839912,-0.026181493,-0.00983616,-0.019171393,-0.02556511,-0.07324244,0.11701581,-0.0944549,0.019632287,0.04927719,-0.10837518,0.05296795,-0.058702353,0.089338034,0.025073834,-0.011173538,0.02150535,-0.010470164,-0.038821813,-0.060358167,-0.008178597,-0.026115488,0.048895534,-0.05641969,0.017481124,0.045690823,0.08976904,-0.03022687,-0.047576975,-0.0451169,-1.6001696e-08,0.04529127,0.046722464,-0.046023626,0.015542618,0.018955126,0.015235339,-0.048452053,-0.034865603,0.004352423,0.0384887,0.07274864,-0.042946704,0.0033680857,0.046625372,0.09997615,-0.029798437,-0.029470904,0.06889136,-0.042269826,0.030743398,0.005641544,-0.0048759524,-0.03863356,0.10309702,-0.07174853,-0.0012661677,0.034825943,-0.019675696,0.013293965,0.024993114,-0.024469662,0.14780897,-0.020475827,0.023845028,0.008345633,0.070176594,-0.043059953,-0.050124012,0.076443434,0.013526153,-0.04665961,-0.07364501,0.019459005,-0.056483235,-0.09581519,0.041664984,0.030926632,-0.07868467,-0.04317017,-0.02994419,0.021131184,-0.035792034,0.014350401,0.05089153,0.04513388,0.044011537,-0.041855607,0.011392095,0.039383184,0.06529665,0.0006628622,0.041192096,-0.043684144,0.04304595} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.903415+00 2026-01-30 02:01:09.601315+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1362 google Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB 1 t 1365 Go Karts Mar Menor unknown Well run enterprise staff are extremely competent and are very comfortable when dealing with the customers. well run enterprise staff are extremely competent and are very comfortable when dealing with the customers. 5 2025-09-02 00:52:39.833374+00 en v5.1 P2.02 {P3.01} V+ I3 CR-N {} {"P2.02": "Well run enterprise staff are extremely competent and are very comfortable when dealing with the cus"} {0.039481275,-0.026058905,0.04096578,-0.014773051,-0.05555153,0.0004961979,0.0019455181,0.0011244642,-0.0065977657,-0.035380587,-0.0034480714,0.0938146,-0.050637882,-0.0581168,0.016523106,-0.022850692,0.095949136,-0.05821056,-0.008726819,-0.016570378,-0.12834112,-0.026103595,-0.011553233,0.025907105,-0.12528634,-0.020615367,-0.0043153143,-0.0018959602,0.017032204,-0.0012595586,-0.057353694,-0.048966344,0.06596392,0.042538803,-0.044343367,0.0760479,0.004492489,0.010159886,0.005341631,-0.040535893,0.030784039,-0.057276353,-0.061582126,-0.036965284,-0.022992607,-0.034330923,0.00019062408,-0.076183215,-0.04943624,0.012801413,-0.014846158,-0.041815158,0.06334082,-0.05006315,0.0047117365,0.045447063,0.010180128,-0.042099286,-0.020939846,0.0010371066,0.030224431,-0.019059138,-0.033297714,0.027481688,0.014102652,0.029613446,-0.038277708,-0.023439247,-0.06035918,-0.14594282,-0.0694153,-0.053524576,-0.0090634,0.07328976,0.00015701103,0.06758928,-0.010838005,-0.06249231,0.06876129,-0.061139975,0.050721906,0.032075394,-0.0412794,0.015143796,-0.031204397,-0.03332947,0.056207474,-0.09745463,0.015680214,0.0469806,0.09836949,0.086076014,0.03189994,-0.05101858,0.0918674,0.055232678,0.00054035557,-0.013813745,-0.03558866,-0.018687494,0.031060914,0.06074347,0.019170426,-0.008011658,-0.119175844,0.0031432735,0.02219187,-0.041269153,-0.0005872235,-0.058297712,0.023235463,-0.054530874,-0.01642133,-0.016809389,0.04407348,-0.06575366,-0.14021277,0.03720213,-0.02902879,0.008355939,0.046161097,0.06168364,0.033367466,0.0061530233,0.030684765,0.0072175427,0.046549268,-1.360325e-33,-0.028359797,0.08165723,0.010938158,0.011614536,0.016128935,0.0025015315,-0.020455925,-0.026720945,-0.05459676,0.07875474,-0.04995765,0.08823982,0.04258346,-0.073887184,-0.0030461084,0.0023764223,-0.016092196,0.076629266,0.028773338,0.068560846,0.038794708,-0.0072235134,-0.013797616,-0.025130637,0.08476244,-0.015864644,0.033345982,0.08163076,0.08200685,0.049288467,-0.0013429547,-0.08353879,-0.078589275,0.04120839,-0.01751937,0.04113305,-0.127224,-0.033309042,0.058131717,-0.0400972,-0.06394677,0.039686855,0.06353757,0.06849081,-0.058978617,0.012600466,0.01650558,-0.02210538,0.007020894,0.024395445,-0.08850572,-0.046506554,0.07025263,0.032105457,0.050245948,0.005627032,0.10989972,0.03507283,-0.010693448,0.0146822035,0.01174868,0.1170599,-0.16716287,-0.02364949,-0.009840612,-0.0040979544,0.032347362,0.01010953,0.0076631634,-0.0009534276,0.052737024,-0.02328069,0.06621929,0.011605259,-0.10255025,0.015082819,-0.009882733,0.037017528,-0.013833441,0.044609997,-0.07653479,-0.0054215845,-0.0067394446,-0.0067572314,0.057658307,0.015093391,0.020579003,0.006033146,0.0236432,0.094794065,0.059126787,-0.01258901,0.0045492733,0.103943765,-0.063108414,5.6732806e-34,0.054146886,0.03755091,-0.05415051,0.09838687,0.01525403,0.036954734,-0.028858935,-0.0040096254,-0.05583615,0.0060976516,-0.043765258,0.005185675,-0.090523295,-0.02459766,0.01623847,-0.064986594,0.04929796,-0.026854638,0.019880248,-0.025752403,0.06406134,0.054645255,-0.059099212,0.043005902,0.014059206,0.040411565,-0.05837391,-0.07275341,-0.16659817,-0.05355332,-0.040884398,-0.015863407,0.008332309,0.060081217,-0.032446634,-0.0068563623,-0.034772113,-0.022724558,-0.004134368,0.042818226,0.055502757,-0.006904184,-0.047797773,-0.025466397,-0.045568123,-0.013579338,-0.0032815842,-0.09393025,-0.03278161,0.017574934,-0.09965094,-0.00858144,-0.008109074,0.005496115,-0.069115,-0.016831603,0.11420089,-0.011857394,-0.037064966,-0.029468047,0.018149782,0.023921238,0.11735891,0.102022894,0.03559747,-0.018891957,-0.03532369,0.003572491,-0.060218908,-0.038793385,-0.04139077,-0.075486474,-0.03907355,0.040882602,-0.090850115,0.010181903,-0.011444101,-0.090075105,-0.022547802,0.08213853,0.0118900705,-0.018992625,-0.026788794,0.046592373,-0.037623324,0.094582625,0.008696904,-0.056498,-0.011912088,0.02708499,0.0034204696,-0.044400364,-0.005305774,0.040171437,-0.006586298,-2.2478257e-08,-0.053530548,0.019481823,0.10479796,0.006016853,0.020780567,-0.08131101,0.0066351057,0.085585125,-0.03590574,0.04179197,0.010849481,-0.11805779,-0.04704396,0.018036295,0.13591179,0.06603337,-0.034058068,0.0988509,-0.095271856,-0.017359398,0.050314732,0.08679775,0.011419519,0.017173314,0.014513848,0.03179073,-0.07784161,-0.08897793,-0.036859486,0.036750622,0.008971946,0.008243214,0.025762536,-0.04069337,0.03382262,0.09462639,-0.028086258,-0.015744342,-0.006655032,0.03883007,-0.06872904,0.050592512,0.03812234,0.040090684,0.034757894,-0.0073666717,-0.0037741845,0.10429594,-0.0044254,0.013368819,0.042707894,0.012799717,-0.014967108,0.050835665,0.00011172066,-0.024512148,0.043068495,-0.027501795,-0.006515375,0.054298975,-0.023570066,0.030460166,0.076959334,0.012124727} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.594144+00 2026-01-30 02:01:09.115779+00 22c747a6-b913-4ae4-82bc-14b4195008b6 228 google ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE 1 t 231 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown we had a very nice experience with this company. got a great car (brand new Peugeot 2008 diesel , fully equipped, with 700km) with zero deductable, unlimited milege, full to full, 350Euros for 7 days. although their office is not inside the Las Palmas airport, the shuttle was comfortable and fast, it was easy to find their bus, their office is near and brand new, their staff was kind and professional. strongly reconmend the place! we had a very nice experience with this company. got a great car (brand new peugeot 2008 diesel , fully equipped, with 700km) with zero deductable, unlimited milege, full to full, 350euros for 7 days. although their office is not inside the las palmas airport, the shuttle was comfortable and fast, it was easy to find their bus, their office is near and brand new, their staff was kind and professional. strongly reconmend the place! 5 2025-03-01 01:27:48.340519+00 en v5.1 O1.01 {V1.01} V+ I3 CR-N {} {"O1.01": "we had a very nice experience with this company. got a great car (brand new Peugeot 2008 diesel , fu", "P1.01": "although their office is not inside the Las Palmas airport, the shuttle was comfortable and fast, it"} {0.026749456,-0.03348123,-0.008677379,0.06280314,-0.06786011,-0.0082603805,-0.011147441,0.03895393,-0.06829461,-0.029718515,0.05271845,0.03767573,-0.054402936,0.041736767,-0.028270341,-0.010498692,0.09712001,-0.13032132,0.028209861,-0.0013431585,0.04156222,-0.05542943,-0.07073678,0.023929954,-0.033751443,0.0442061,0.007673925,0.028363362,-0.010440155,-0.04557918,-0.03087518,0.005894338,-0.049573723,-0.0021438068,0.07388717,0.045549355,0.027848836,-0.10298887,-0.010939661,-0.027272273,-0.012498676,-0.047595274,0.011446143,0.084405854,0.009930271,-0.023946498,0.038693808,0.013813456,0.11547662,-0.048155516,-0.028839653,-0.063007176,0.047287002,-0.058535222,-0.042667024,-0.058041073,0.013693547,-0.0043613156,-0.035847403,-0.053154204,0.040309545,-0.033965018,-0.03620561,0.054990146,-0.034524404,-0.0540011,-0.07679626,-0.037203304,-0.01724718,-0.025435196,-0.040748987,-0.026428679,-0.009428114,0.051469754,-0.015811583,0.010930089,0.042736962,0.09828601,0.055327147,-0.028349532,0.07789756,-0.012410172,-0.04707697,0.060465008,-0.004467025,-0.04842762,0.036222424,0.053581852,-0.004199478,0.015252524,0.06378546,0.050804406,-0.0402886,-0.040118165,-0.09368699,0.023295576,0.01186307,0.018276826,-0.051055256,0.028403986,-0.026880147,0.11565531,-0.014128695,-0.034004062,-0.13434288,0.047545552,-0.0064080097,0.057947587,0.03463426,-0.013503749,-0.037136074,-0.0030839157,0.040811,-0.0029277166,-0.112731636,0.055821493,-0.051305696,0.0010760177,0.046949357,-0.00881553,0.009630057,-0.03039453,0.09834181,0.05300263,-0.026731089,0.058817193,0.040275086,2.3524805e-33,-0.05077164,0.075922795,0.0001465585,0.08168809,0.02274634,-0.051760413,-0.092875786,0.014341643,-0.046672672,0.020750428,-0.033234593,0.010515792,0.013704188,0.033400197,0.07811994,-0.008463654,-0.047465768,-0.012545707,-0.03198622,-0.075174205,0.023935672,-0.0509682,0.00054527033,-0.014040421,0.13353127,0.08331746,-0.006732039,0.0016299989,0.036739957,0.061882664,-0.08902102,0.07855202,-0.05425044,-0.038395997,-0.011015247,0.0011461134,-0.04689243,-0.051161673,-0.039548527,0.039859932,-0.004779318,-0.048257455,-0.0478358,-0.004738029,-0.0298897,0.010347411,0.014013173,-0.0073260707,0.06614904,0.012827496,-0.050344456,0.01445916,-0.07346946,0.019310536,0.025834993,0.0649734,0.0062725213,0.022392778,0.054056395,0.001822302,0.020845003,0.03190638,-0.040728543,-0.027037054,0.023348304,0.018179212,0.024938064,0.017132076,0.09338581,0.0016921088,0.022744952,-0.08219503,0.09032245,-0.035317186,-0.017815605,-0.05742659,-0.024574451,0.07038352,-0.030549344,0.06818457,-0.025009153,0.054531675,0.074949235,-0.022728415,0.12889832,0.0023170733,0.043638248,-0.014950986,-0.10665433,0.033216946,-0.07477756,0.023585636,0.022982951,0.011100708,-0.0005382074,-3.4752774e-33,0.04444854,-0.0055894176,0.014177022,-0.016105592,-0.0539685,0.024899269,-0.056659963,0.12011951,-0.00066548534,0.07406018,-0.0922321,-0.0057242685,0.10755504,-0.041764148,-0.02658686,0.02568251,0.090056024,-0.11825644,-0.073910095,-0.094031274,0.043697633,0.0672077,0.023733003,-0.03279563,-0.032725073,0.024079788,-0.048324138,0.049333796,-0.07700344,-0.042276952,-0.030336471,-0.008189443,-0.006753519,0.042724844,-0.04941539,0.0129289115,0.0103364615,0.10053134,0.012175154,0.100222774,0.018610822,-0.08017701,-0.03305583,0.012973489,0.044102322,-0.079721704,-0.013786309,-0.1688442,0.060266454,-0.027474234,0.07286116,-0.06602003,-0.11202143,0.062842034,0.009180698,-0.061583716,0.047522202,-0.01958692,-0.021424051,-0.0106666675,0.043088157,0.059980385,-0.0225921,0.074551485,0.050876945,-0.061295882,-0.03899282,-0.026174897,-0.018471895,-0.04855867,0.012510898,-0.048159685,-0.06183449,0.1008834,-0.059237573,0.011095576,0.02976067,0.008148365,-0.009937858,-0.0055185906,-0.0130644,-0.044755436,-0.0022624747,0.038678646,0.05115029,0.037478168,-0.0022302845,-0.1326169,0.03491788,0.07833127,0.032821927,0.01155046,-0.026872354,-0.03229877,-0.0034417326,-4.488103e-08,-0.0033202234,0.09556939,2.432372e-06,0.028738156,0.00833396,-0.10375768,0.023747759,0.056538336,-0.07138784,0.037886932,0.021863006,-0.020373521,-0.034865107,0.11662412,-0.032425296,0.017995326,-0.006119234,0.11017585,-0.035511497,0.0065852012,0.012346897,0.041493714,-0.027678605,-0.013681464,-0.028838478,-0.047197677,0.0159971,-0.025953699,0.09130373,-0.0753888,-0.16111374,0.020938514,-0.020024193,0.024917485,-0.095630296,-0.03197853,0.00640688,-0.017820597,-0.03552127,0.026801601,0.026967337,0.0014029904,-0.016648617,-0.013091875,-0.00018064122,0.07687668,-0.098661564,-0.026726263,-0.032521732,0.07409038,0.038982745,0.027991505,-0.014606827,0.06385565,0.0026173838,-0.009866359,-0.044127982,0.025599463,-0.032042813,0.060466364,-0.025345732,-0.0047550392,-0.013683018,0.05702334} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:46:21.884244+00 2026-01-25 01:27:50.134915+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 231 google ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB 1 t 234 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Avoid at all cost. First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs and no one to pick you up. Had to call to ask for the shuttle. They then pointed out the smallest scratches so I understood this was a money making effort. Upon return they checked forensically for damage even under the car. But couldn’t find anything. At last they found something they liked, sand in the car. Surprising given the destination?! They wanted to charge 50 EUR for a deep clean! I refused but they were adamant. To prove my point I went and did a vacuum on my own, cost me 2 EUR. The person handling my return was also rude even to my family including kids!\nDon’t use this company. avoid at all cost. first of all the car rental is not at the airport, they offer a free shuttle. but there are no signs and no one to pick you up. had to call to ask for the shuttle. they then pointed out the smallest scratches so i understood this was a money making effort. upon return they checked forensically for damage even under the car. but couldn’t find anything. at last they found something they liked, sand in the car. surprising given the destination?! they wanted to charge 50 eur for a deep clean! i refused but they were adamant. to prove my point i went and did a vacuum on my own, cost me 2 eur. the person handling my return was also rude even to my family including kids! don’t use this company. 1 2025-01-25 01:27:48.340526+00 en v5.1 A1.04 {} V- I3 CR-N {} {"A1.04": "First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs", "P1.02": "The person handling my return was also rude even to my family including kids!", "V1.03": "They then pointed out the smallest scratches so I understood this was a money making effort. Upon re"} {-0.007361767,0.08492016,0.12732755,0.023658417,0.011967244,-0.010545883,0.08426351,-0.0051986505,-0.017798256,-0.0071640424,0.11549534,-0.062893845,-0.012687018,0.010746484,-0.060277965,-0.08384093,0.10792737,-0.05389926,-0.055370327,-0.0153861875,-0.020833673,-0.02689007,0.06346439,-0.021731075,0.042740684,0.09690486,0.0056335437,-0.008101594,0.03137791,-0.029904727,0.013878175,-0.023609528,-0.02072515,1.5535843e-05,0.0936471,0.037876703,-0.026751023,-0.0457496,-0.030684162,-0.050196145,-0.03675089,-0.0029931269,0.008181319,-0.014637634,-0.012463051,-0.03219008,0.0937047,0.0070484485,0.16051781,-0.032213755,0.051952567,0.012831686,0.02574855,-0.07000517,-0.062488634,-0.07006552,0.04398171,-0.028546559,-0.004127039,-0.051081497,-0.011513878,-0.03941493,0.0038053065,0.009313293,0.022743924,-0.00383292,-0.0022317711,-0.08469302,0.07915177,0.029173225,-0.026839653,-0.01254867,0.023083184,0.088659294,-0.0077706906,0.076344244,-0.021311188,0.014659477,-0.009837609,-0.041686796,0.011720071,-0.0571407,-0.06361064,0.024465265,-0.005601597,-0.03239339,0.016826961,-0.003973087,0.10860968,0.06695654,0.03314865,-0.010636254,0.018425563,-0.038219847,0.016897468,0.024050627,-0.037768845,0.039023917,-0.012147289,0.01493473,0.06528234,0.069515735,-0.04219159,-0.049253225,-0.02558506,-0.006391686,0.03410565,-0.05637713,-0.0007230055,-0.0039625936,-0.02247053,-0.0042031086,0.009902405,0.018074015,-0.04040101,0.0634552,0.053812344,-0.03428897,0.023006985,-0.05650424,0.034672458,-0.018340856,0.034637485,0.0019562303,-0.040129445,-0.050123725,0.038336113,1.4816584e-33,-0.0392787,0.10162386,-0.004263051,-0.027183052,-0.0033476348,-0.048917856,-0.018606596,0.0981541,0.030245233,0.070998415,-0.051975984,-0.007694875,0.010028319,-0.09643305,-0.034338385,0.08978617,-0.03195148,-0.05482393,-0.062193356,-0.041908935,-0.061192155,-0.025282456,0.03006711,0.07424066,0.011225929,-0.017243207,-0.029077537,-0.05239772,0.10553874,0.028691193,-0.047343437,0.09217698,0.051233176,0.075717054,-0.07735392,0.10903831,-0.023021866,0.04858038,-0.106116004,-0.04825104,-0.021596033,-0.070023894,-0.021611957,-0.022250794,0.05535375,-0.06885715,-0.032409318,-0.05191337,-0.09007795,0.022752076,-0.02851456,0.015273473,-0.026995707,0.06264378,-0.10502949,0.022354819,0.09815302,0.024514824,-0.0022467363,0.034342274,0.035137508,0.0900656,0.006446308,0.04951296,-0.050205734,-0.063656464,0.03800338,0.07146108,0.024622794,-0.027824752,0.065039285,0.08862633,-0.015561425,-0.030070284,-0.004717563,0.026495736,-0.058879785,-0.006141378,0.048707638,-0.047530733,0.022965476,0.0007002946,0.016469065,-0.006834325,-0.026029445,0.0132432105,0.030688796,0.037005644,0.034960397,0.0432481,-0.09038235,0.030379824,-0.030647501,-0.041016545,0.0003757411,-4.576902e-33,0.07384003,-0.050076816,0.032374468,-0.02763461,-0.07150528,-0.016832305,-0.06326694,0.04391734,-0.003864231,0.01701367,-0.14150068,0.008791216,0.12454191,-0.02065123,-7.903278e-05,-0.039043806,-0.014400967,-0.050679438,-0.03881212,-0.05464965,0.016078655,0.078770205,0.09492767,0.08088319,-0.14515328,0.022373533,0.026421495,0.013196236,-0.021012245,0.007858344,-0.01063347,0.056779243,0.03058714,0.018922077,0.012507499,-0.03941918,0.022347778,0.07663791,-0.09667549,-0.057930663,-0.019831255,-0.0031699718,-0.06769806,-0.02870679,0.036785405,-0.079098955,-0.023004495,-0.08025054,0.055406008,0.0043590777,0.057007316,-0.05024352,-0.0466893,0.07783411,-0.060646232,0.0597551,0.08947606,-0.032107644,0.014040276,0.07327268,0.004537701,0.03524802,-0.038194366,0.0013097004,-0.0112945335,-0.07900717,0.049311753,0.024098637,-0.014068823,-0.0008893045,-0.050721496,-0.018520975,0.031163206,-0.009088447,-0.004743099,0.038684305,0.07766739,0.010591805,-0.018370688,-0.01813509,0.054293036,-0.08597901,0.042915706,0.051505424,0.04802599,-0.08682402,-0.002723164,-0.09366959,-0.01437335,0.061062053,-0.01835708,-0.019027775,-0.02405938,-0.020810975,-0.06677742,-5.7488336e-08,-0.006869134,0.04821468,0.06549787,0.046678897,0.01962756,-0.078359224,-0.017148929,0.15465719,-0.088458255,-0.05558547,-0.01285416,-0.07943674,-0.039562088,0.09238046,-0.059043046,0.01945908,-0.017934546,0.085301526,-0.06401827,-0.038283814,-0.07852779,0.032144327,0.0020110412,0.043677606,-0.04392647,-0.0014071998,-0.019476907,0.0022239443,0.0071838545,-0.072713405,-0.12478368,-0.030951668,0.03297409,-0.01229454,-0.11347164,-0.01911326,0.020162659,-0.006816804,0.0001243968,0.01035208,-0.05573472,-0.04202749,-0.04595707,-0.042330787,0.007054066,0.03187328,-0.10325502,-0.027752629,-0.05894767,0.0292587,-0.011940843,-0.007822636,-0.0677942,0.1193994,-0.027289335,0.024030244,-0.012198935,0.022464639,0.02415334,0.033886105,0.018958084,-0.0381263,-0.068889484,0.011308953} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:46:53.363065+00 2026-01-25 01:27:50.160643+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 233 google ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE 1 t 236 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Excellent service. Large variety of brand-new cars, in good condition - even if you book last minute. The staff was very friendly, and both the pick-up and drop-off was smooth. Its further away from the terminal, so you have to ride their free shuttle to get to the airport, but neither the lenght of the ride or the waiting times for the shuttle were long. Would definetely rent again and recommend this place. excellent service. large variety of brand-new cars, in good condition - even if you book last minute. the staff was very friendly, and both the pick-up and drop-off was smooth. its further away from the terminal, so you have to ride their free shuttle to get to the airport, but neither the lenght of the ride or the waiting times for the shuttle were long. would definetely rent again and recommend this place. 5 2025-01-25 01:27:48.340531+00 en v5.1 P1.01 {O1.01} V+ I3 CR-N {} {"A4.01": "Its further away from the terminal, so you have to ride their free shuttle to get to the airport, bu", "P1.01": "Excellent service. Large variety of brand-new cars, in good condition - even if you book last minute"} {-0.032020535,-0.0115818335,0.05226826,0.011616176,-0.08578778,0.07576047,0.043647315,0.020704707,-0.060206693,-0.009447282,0.016559491,0.13151793,-0.0053920755,0.028140176,-0.005492932,-0.04181152,0.13225,-0.13383289,0.008612542,-0.056899488,-0.076440156,-0.049915675,0.011156364,0.028679838,-0.014615037,0.0016561553,-0.021005074,0.056725282,0.032954812,-0.056018736,-0.03174028,0.08310322,0.039852586,-0.0013808849,0.05903611,0.04537643,0.09128301,-0.06732628,-0.023091676,-0.029705562,0.03220552,-0.056035828,-0.03739224,0.026131809,-0.017065939,-0.031382196,0.05741864,-0.004615019,0.13207112,-0.023239616,0.08864632,-0.02917101,0.104972936,-0.057333715,-0.06520083,0.013819421,-0.029639762,-0.05276668,-0.017202122,-0.035766568,0.028840335,-0.0042667263,-0.04629839,0.0572303,0.03717411,-0.06639479,-0.08521337,-0.07854741,0.026505712,-0.10874503,-0.070129275,-0.0036960873,0.051094845,0.040363483,-0.035108283,0.024360249,0.06641448,-0.025755456,0.023926595,-0.049532328,0.040570613,-0.059713118,-0.03304326,0.06134921,-0.035513416,-0.08015003,0.006660738,-0.050137926,-0.0071729114,0.03702414,0.08234923,0.10221144,-0.0058523333,-0.060712766,-0.06680699,0.06669345,-0.034726277,-0.0316241,-0.018466817,0.048017677,0.04425116,0.12606426,0.054170523,-0.045348268,-0.113426805,-0.03285305,-0.007871139,0.013923307,0.009295489,0.016428778,-0.0004405747,-0.006926823,0.0013339453,0.009285336,-0.08124671,0.122364566,-0.031096265,-0.027937533,0.021494383,-0.008729129,0.025676122,-0.002067048,0.057176966,0.021016642,-0.027752597,-0.006106793,0.08906357,-1.6403787e-33,-0.07307311,0.028127259,-0.001499389,0.034101993,0.047056172,-0.036904495,-0.06992638,0.024154596,-0.048637293,0.029695341,-0.030034905,0.028692396,0.012905655,-0.0338209,0.007991639,0.055080708,-0.05309027,-0.0093199285,-0.019789726,-0.028000543,-0.049439844,-0.011953123,-0.0018397681,0.04579322,0.09794493,0.021993805,-0.006295604,0.042455796,0.17757249,0.042860664,-0.107717976,0.069391064,-0.0700453,0.023249594,-0.030160708,0.028984519,-0.08314563,-0.023197481,-0.06603151,-0.004597594,-0.01593837,-0.016165998,-0.07660393,0.04228729,-0.017141115,0.044872604,0.0254911,-0.064074814,0.016722621,0.06177747,-0.07689746,-0.034318585,-0.09782233,0.07471642,-0.037337393,0.06269015,0.020353442,0.031871397,0.039666254,-0.046268817,0.058607016,0.06250784,-0.016054109,-0.028178418,-0.011782548,-0.010044751,-0.0458364,0.008193799,0.09809269,0.054038014,0.014955417,0.005026072,0.046671357,-0.010752544,0.05897819,-0.012995888,-0.07355498,-0.022926113,0.03427183,0.0705758,0.07851131,0.0064495974,0.029771112,0.030237934,0.12975456,-0.0035743997,0.039720148,-0.06765529,-0.04989037,0.043189064,-0.029229237,0.04867886,0.00032596447,0.047935788,0.014302813,-1.0114575e-33,0.054298803,0.00061983534,-0.012517757,0.008263599,-0.084553435,0.043010015,-0.099128306,0.070055775,-0.013256987,0.06249566,-0.09876976,0.06836543,0.039338868,0.011994131,-0.0076605906,-0.0407532,0.061565146,-0.072855584,-0.022114813,-0.053769797,0.055582907,0.0504823,-0.011281926,-0.0170966,-0.039217107,0.015968334,-0.052887887,0.063089095,-0.053218685,0.0002600919,-0.0085072275,-0.009143181,0.032764025,0.03485559,0.003906004,0.027088085,0.039631538,0.07446849,-0.024863373,0.011534367,0.014276968,-0.1111995,-0.04631381,-0.020369137,0.05983849,-0.06551836,0.009623051,-0.082513966,0.022456221,0.010519766,0.021041393,-0.06583721,-0.07505662,0.017631438,-0.020095583,-0.010228336,0.03654019,-5.93625e-05,0.020824917,-0.012231919,-0.01887113,0.0015904692,-0.034680378,-0.0107614575,0.0074664126,-0.1636699,0.06963832,-0.047638867,-0.027925689,-0.011997855,-0.028375879,-0.035474233,0.0073936363,0.062543646,-0.046680875,0.008730437,0.119959615,-0.07588694,-0.019649526,-0.009499746,-0.03036577,-0.039965566,-0.024918795,0.03011887,0.0005171528,0.029743405,0.03911567,-0.018099213,0.0028202357,0.0788909,0.044019118,0.06880488,-0.074650966,-0.041495074,-0.059240904,-4.470738e-08,0.0043251547,0.015956346,0.031475246,0.032050032,-0.037908837,-0.10222598,0.018153884,0.05274217,-0.056858663,0.047148786,0.043663822,0.01971756,-0.04873617,0.080732815,-0.05413231,0.017582148,0.06442751,0.06405355,-0.052388787,-0.018029721,-0.0030071002,0.05523759,0.004660619,0.03477356,-0.038191136,-0.008567309,-0.015379183,-0.03556951,0.02223287,-0.086041756,-0.08158715,0.05829291,0.04591532,0.041269287,-0.0417525,-0.073883735,-0.04298861,-0.041357435,0.0005668967,-0.02265882,0.030664187,-0.032468807,-0.103496715,-0.042976536,0.020735232,0.017141363,-0.060044214,-0.020359568,-0.059377763,0.005600396,-0.014766715,-0.014142104,-0.033718646,0.0763168,0.058388717,-0.029049829,-0.04061963,-0.045054182,0.014277611,0.029760834,-0.08307594,0.0029442988,-0.08370782,0.011980192} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:47:16.332237+00 2026-01-25 01:27:50.170233+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1360 google Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB 1 t 1363 Go Karts Mar Menor unknown Nice experience ! Worth to go there again. Great assistance. nice experience ! worth to go there again. great assistance. 4 2025-11-01 01:52:39.833374+00 en v5.1 P3.01 {} V+ I3 CR-N {} {"P3.01": "Nice experience ! Worth to go there again. Great assistance."} {0.0055021057,0.02244387,0.021866819,0.024797635,-0.05466008,-0.0023545148,-0.079213835,-0.07715997,-0.081612736,-0.08277707,0.035421625,0.01838861,0.018744724,0.0026793783,-0.035182796,0.030339232,0.034124855,-0.10683724,0.038815647,-0.08425827,0.021060824,-0.028554313,0.0029355534,-0.03089242,0.008602254,0.030580435,-0.049807,0.09327327,0.02853138,-0.044891022,-0.014341388,0.026763685,-0.047294796,-0.029630661,0.105368234,0.030375168,0.055227004,0.0053573432,-0.00567922,0.038824778,-0.00094022223,0.019877357,0.047396537,-0.024028,-0.0032954654,0.030049248,-0.005272295,-0.048198633,0.13517421,0.0054649245,0.07959662,-0.08097236,-0.034672026,-0.013139367,-0.06487846,0.08218204,0.08075823,0.014428763,-0.050577197,-0.08771686,0.007405187,0.016390787,-0.031876497,0.08141295,-0.03809448,0.03748741,0.0045422995,-0.07435864,0.035791095,-0.11980472,-0.047996663,0.017789206,-0.012710657,0.010962664,0.05447061,0.07399136,-0.050054025,-0.0073168934,0.003671706,0.008201964,0.022967719,0.061633855,-0.020681065,0.08863102,-0.047703363,-0.11215601,-0.032942526,-0.0033428513,0.11279161,0.0012865256,0.13237278,-0.0028865377,0.004752795,-0.0024204738,-0.025455303,-0.003963953,-0.027081648,-0.0073990463,-0.090545714,-0.031037815,-0.021809302,-0.014765776,-0.011492361,-0.037334032,0.00496756,-0.015954694,0.03346716,0.10724538,0.010676748,-0.011738734,0.010914422,0.011087387,-0.03012416,0.036385585,-0.1068742,0.09595965,0.0074091963,-0.00748926,0.019189645,-0.041009087,0.0115803275,0.047675762,-0.0061044157,-0.034031633,0.033486698,-0.055462297,0.020329678,-5.6059087e-33,0.017660934,0.12959854,0.025491487,-0.087636895,0.03177056,0.0048068357,-0.06083945,0.047059897,-0.08922027,0.081260286,0.022413177,0.07564148,0.050324444,-0.037417028,-0.09331799,-0.01124014,-0.019353833,0.062300023,-0.089986324,0.05010098,0.010467589,-0.023315165,0.04330225,0.041310806,0.05854992,0.082166046,-0.003792019,0.07575076,0.11922152,0.008778331,-0.039462913,-0.013301029,-0.022374155,-0.02689638,0.012642833,0.07294499,0.106793396,-0.027174456,-0.028764205,-0.034204263,-0.07084497,0.049757544,0.027379444,0.013982824,-0.0061695045,0.004950516,0.013320766,-0.010777525,0.043058492,9.232591e-05,-0.10407942,-0.0002539504,-0.008089529,0.024588482,0.004101384,-0.006598281,-0.03958304,0.08780992,0.018660897,-0.07041783,0.0763717,0.029738795,-0.05350377,-0.052246947,0.010389185,-0.114383906,-0.022627842,-0.060877517,-0.0146091515,0.009449437,0.0022100594,0.01680215,0.09852944,0.024544027,-0.031679,0.025250856,-0.09892992,-0.09556971,0.042079877,0.025768641,0.013817791,-0.035986815,0.00040029382,0.059273407,0.108984545,-0.014078695,0.0012630029,-0.13079476,-0.07964053,0.034101445,-0.0039844383,0.05480408,0.010900592,0.031329148,0.007843623,2.7433994e-33,0.040704485,-0.0063852496,0.037296668,0.0028700023,0.06044137,-0.04722872,0.0022116287,0.10566509,0.03437861,0.0027321433,0.0009680971,0.09236215,0.016040593,0.023310378,-0.091549456,0.051342424,-0.034434766,-0.015770376,-0.046818625,-0.0567287,-0.044897508,0.086855695,0.060700685,-0.053812128,-0.05379978,0.048507273,0.03468052,-0.017875819,-0.01344538,-0.054060366,0.044869173,0.03661241,-0.050382003,0.074898325,-0.0088048875,0.04283851,0.091469765,0.004787411,-0.028562982,0.011489761,-0.009883811,-0.014691698,-0.031047793,-0.0008396246,0.016804174,0.003473482,0.045455012,-0.057448603,-0.07248087,-0.01628065,-0.048063252,-0.03805072,0.020912591,-0.06753066,0.009548788,-0.023963189,0.07796516,-0.04649641,-0.10172701,-0.07434101,-0.030544253,0.043741833,-0.034459483,0.058762766,0.11348753,-0.07032704,-0.029617451,-0.021708837,-0.054800455,0.03461156,-0.05112867,0.02443141,0.06669607,-0.04009498,0.09077405,-0.021475637,0.037195187,-0.07488644,-0.04599224,-0.050053254,0.0006967059,-0.06063486,0.02359852,0.009822281,0.0780308,0.07573719,0.035992622,0.0057489495,0.0026501343,0.074777596,-0.04754858,0.042225778,-0.021402406,0.021986986,-0.0139415,-2.0369638e-08,0.0042892704,0.03501909,-0.018863643,0.09050984,0.05486623,-0.08997979,-0.039046522,0.09159651,-0.07309968,-0.027944729,-0.027927842,0.04357675,-0.02441736,0.0012274456,-0.006548863,-0.0014562134,0.049529478,0.06698482,-0.035661496,-0.03975326,-0.01224146,0.077362634,-0.056164924,-0.016776,-0.017910236,0.033090923,0.029692544,0.057816006,0.047607917,-0.12808916,-0.052161578,-0.04414286,-0.027337953,0.01854087,-0.05759854,-0.073236674,-0.00920638,-0.036638554,0.029190954,-0.03044854,-0.032919418,-0.07750543,-0.006543412,-0.0065220688,-0.036675338,-0.007543546,0.03264587,0.011663567,0.03662345,-0.07156792,-0.028395217,-0.014304363,-0.026427912,0.022709103,0.04987604,0.0048220963,0.036250226,-0.033507828,-0.07743183,0.100955315,-0.014771605,-0.03851714,-0.06792601,0.10722714} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.026723+00 2026-01-30 02:01:09.110201+00 22c747a6-b913-4ae4-82bc-14b4195008b6 234 google review_60 1 t 237 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Everything was very easy and fast, the staff is super, kind and nice! I highly recommend it! everything was very easy and fast, the staff is super, kind and nice! i highly recommend it! 5 2026-01-18 01:27:48.340533+00 en v5.1 J2.01 {O1.02} V+ I3 CR-N {} {"J2.01": "Excellent!!! Well organised and great track!!"} {-0.016341513,-0.0050326823,0.0077350126,0.03750923,-0.0011910505,0.085669264,-0.014159812,-0.03317355,-0.09066885,-0.041808087,-0.044877253,0.038399056,-0.023978496,-0.024487112,-0.0865255,0.051863424,-0.01249915,-0.057041444,0.0048108716,0.0148458,-0.07668663,-0.012291381,0.014926892,0.06674334,-0.08847598,0.06307005,-0.088906646,0.0582098,-0.005994496,-0.051537532,-0.066059895,0.061693754,0.04500525,-0.011219021,-0.01653422,0.036843956,0.046500742,-0.019592503,-0.03069513,-0.0008361531,-0.029014666,-0.014543991,0.022876834,0.0005554343,-0.0080040535,0.041572038,-0.0049223746,-0.049505748,0.018104924,0.016393257,0.051692326,-0.045012746,0.035614517,-0.0735236,-0.08761328,0.07227985,-0.016282568,-0.038657412,0.013610687,-0.08702532,0.028185263,-0.036701553,-0.07972596,0.00037329207,0.06529645,-0.07851313,-0.10976628,0.03789542,0.016497195,0.048353225,0.06863473,0.024553018,0.026063312,-0.005060592,0.011406281,0.036408436,-0.04409857,-0.037879422,-0.044575486,-0.0009534872,0.05597163,-0.08697855,0.0069088987,-0.090103954,0.026137091,-0.091233276,0.0378042,-0.011814012,-0.07052241,-0.030908398,0.02569732,0.08420733,-0.032415733,-0.028248653,-0.0009312833,0.06912623,0.010113666,-0.016969046,-0.030508347,0.074910946,0.07180895,0.09553352,0.037424088,0.04769889,-0.03759965,-0.047964007,-0.023788594,0.12453327,0.006551974,-0.08953821,0.10512772,-0.031714052,-0.002833395,0.018814968,0.016059935,0.027944183,-0.028611723,0.08891467,-0.0038623516,0.02266465,0.012622955,0.008481872,0.022391604,0.02599078,-0.02253649,-0.031092377,0.05815214,-5.3383904e-33,-0.014069155,-0.004782326,-0.0045139156,-0.00066640566,0.068593815,-0.028105391,-0.12544192,0.0038177744,-0.10985663,0.07983183,0.003900888,0.022158422,-0.0052973516,-0.0046979715,0.04412027,-0.013973942,-0.062747866,0.008039707,-0.0778291,0.068964064,-0.020380978,0.060011473,0.019192405,-0.08122805,0.027609667,0.011236523,0.043012347,-0.046751186,0.028933564,0.027373072,-0.066186845,-0.006421989,-0.04180827,0.011242664,0.0026282407,0.040941946,-0.08409716,-0.031952843,0.028503483,-0.005014835,0.0341323,-0.06491331,0.0034551353,-0.031685166,-0.08229407,0.062348306,-0.00013746035,0.08238999,0.15208636,0.007288248,-0.040629275,-0.07870256,-0.0811309,-0.031742953,0.064057484,-0.018739853,0.039906707,0.036899146,0.03590958,0.012557482,0.1062456,0.068325445,-0.03304241,-0.069687605,-0.02635872,0.04386011,-0.01599868,-0.059132554,0.093222596,0.03381752,-0.06197457,-0.05412951,0.01706103,-0.02781998,0.07026939,0.0045983936,-0.03016392,-0.04207088,-0.0089919865,0.03290995,-0.037775125,0.04455557,-0.010933672,-0.01981032,0.04313693,0.0021604907,-0.0012806376,-0.06293064,-0.00044880348,0.025644893,-0.044236243,0.056604993,0.016292231,0.032197315,0.0009422777,2.0171443e-33,0.112824135,0.09994994,0.061401814,-0.0016882886,0.012679843,0.07359666,-0.033333357,0.043965682,0.06714578,0.126154,-0.05221999,-0.0030603213,-0.007943746,-0.033662353,-0.0511271,-0.0447393,0.050268628,0.028455636,0.02915766,-0.097495474,-0.041007623,0.009646788,-0.004452977,0.00039562397,-0.052078746,-0.0032945466,0.030818468,0.005992118,-0.021502923,-0.03503755,-0.04448206,-0.027653342,-0.0442115,-0.048892617,-0.020404937,0.09450771,0.0040333956,-7.4511e-05,-0.053378638,0.001389064,-0.07857139,0.055650078,-0.0383672,0.03021751,-0.011028831,-0.025376558,0.015686719,0.1744428,-0.09450841,0.022793349,0.015769135,-0.04630101,-0.04678726,-0.08376903,-0.02504499,-0.0012100308,0.03280084,-0.046165336,-0.0121416915,0.009457973,-0.073757224,0.08321596,-0.058474194,0.014212127,0.058938794,-0.03945694,-0.024362527,-0.063578546,-0.0641401,0.036516957,-0.06305013,0.019247252,-0.08319189,0.036217894,0.018660598,-0.044890117,0.09069534,0.012175081,0.03890803,0.03496826,-0.08298644,-0.0010777427,0.058928635,-0.07087222,0.02977061,0.06257475,0.018783,0.015471071,0.012371011,0.12905504,0.10108637,0.05975186,-0.011153044,0.030316133,-0.0543319,-1.7704705e-08,-0.017516257,0.093104646,-0.007327102,-0.013062624,0.020632137,-0.034485344,0.02995678,-0.016108321,-0.08481207,0.012046813,0.06360162,-0.038529612,-0.08740823,0.08758729,-0.029357437,0.007026797,-0.040655505,0.1691791,-0.06039434,0.015611181,0.061042316,0.038395226,0.012703317,-0.0010669018,0.02047461,-0.068854116,0.015889265,0.0014923048,-0.0018520828,-0.023437839,0.04653052,0.09641165,-0.034040034,0.049767114,-0.028083742,-0.09304683,-0.016598605,0.07740219,0.034312837,-0.057265706,-0.06193772,-0.023198958,-0.030418167,-0.010110298,0.021059921,-0.048563194,0.015424223,0.02316078,-0.048004232,-0.059373267,-0.075679936,-0.040218215,-0.044887938,0.064177595,0.07830008,0.044722516,-0.034838475,0.0044317665,-0.045444556,0.003976427,-0.03011655,-0.08336658,-0.0010767126,0.020551154} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.789518+00 2026-01-25 01:27:50.17372+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1508 google ChZDSUhNMG9nS0VJQ0FnSURnaWFTcFhnEAE 1 t 1511 Go Karts Mar Menor unknown Great track and selection of karts. Good viewing areas and toilets great track and selection of karts. good viewing areas and toilets 5 2018-02-01 01:52:39.833374+00 en v5.1 O2.03 {E1.03} V+ I2 CR-N {} {"O2.03": "Great track and selection of karts. Good viewing areas and toilets"} {0.061317276,0.022105757,0.05137515,0.044493895,-0.067220755,0.06444326,-0.062381256,-0.04082597,0.009718552,0.034019936,-0.045368772,0.0138891535,-0.0108496,0.05083475,0.0064888657,-0.073663175,0.10205623,-0.0013215077,0.04252311,-0.089507684,-0.04961344,-0.04751673,0.035620037,0.010593808,-0.15014793,0.0041858135,-0.014419632,0.06579741,0.009167831,-0.033389304,-0.066297635,0.05373604,0.03263423,-0.051301517,-0.016670208,-0.073555574,0.02574661,-0.08240102,-0.036744513,0.0065528774,-0.01369986,-0.0041207406,0.008034851,0.05066639,0.05227262,0.044084173,-0.05920864,-0.07317477,0.07387227,0.051765073,0.05688719,-0.04753366,0.040618677,-0.020102203,-0.02912301,-0.05101342,-0.13121182,-0.033822797,0.069554284,-0.11321114,0.106788285,0.008161915,-0.07101269,0.0055247755,-0.0561207,-0.051714543,-0.06812367,0.0825021,0.03759903,-0.020240458,0.0011734611,0.031703833,0.029315185,-0.023761014,-0.02671697,0.021007378,-0.052719552,-0.060149927,-0.13301903,0.018743552,0.06613456,-0.048324384,0.0155724455,-0.028311737,-0.011505385,-0.11426506,0.040414,-0.034317184,-0.021792548,-0.027231805,0.003963096,0.072286606,-0.04021094,-0.07480673,0.05093771,0.020939112,-0.015958212,0.012718265,0.047750913,0.030636422,0.049462005,0.045492418,0.049341794,0.043388642,0.025145113,-0.021200847,-0.027811345,0.07754538,0.09069564,0.011721841,0.01677307,-0.014479648,-0.016033014,0.014278517,-0.011214079,0.04528036,0.0010916371,0.06299489,0.028987123,0.026911672,-0.008554529,-0.02529508,-0.011236947,0.022523973,0.030386006,-0.04830503,0.009325308,-2.053941e-33,-0.11443915,-0.0032747174,-0.009901569,-0.047939528,0.048844628,-0.0936135,-0.014048866,-0.18115942,-0.08175043,0.038222805,-0.031709455,0.009598824,-0.0054885284,-0.032841016,0.08548717,0.012077976,-0.05967468,0.03970425,-0.087581255,0.037110116,-0.031183982,-0.0445553,0.015232028,0.011222449,0.049558494,-0.014949537,0.077285945,-0.019048614,0.021199312,0.023661293,-0.06901119,0.021338359,-0.060573813,0.043480318,-0.049171664,0.029451933,-0.045957603,-0.042081553,-0.036366843,-0.009625346,0.049187105,-0.0086219795,-0.025064688,0.01165214,-0.032273415,0.040479645,0.018283559,0.058846727,0.060863934,0.054801706,-0.074685656,-0.008193203,-0.088892736,-0.040738888,-0.03220923,-0.010510958,0.046559703,0.010382426,-0.022347726,-0.037270345,0.008970097,0.01643079,-0.014904286,-0.11175448,-0.03950635,-0.030123994,0.051970232,-0.00997829,0.044815682,0.040054426,-0.07283032,0.02704319,0.08295722,-0.042086557,0.07579397,0.0042015067,-0.0710008,0.031901803,-0.04344133,0.1096911,-0.04441923,0.036867615,-0.019104663,0.043280214,0.057057124,-0.02517276,-0.033479303,-0.0028954681,-0.0023052248,-0.036330514,-0.054410793,0.04490927,-0.04244531,0.04868637,-0.004447456,2.3737873e-34,0.1154285,0.07909078,0.09624778,0.10968194,0.019240877,0.0489519,0.0050265556,0.0041289777,0.056177486,0.054684445,-0.021326147,0.08190295,0.03235617,0.020022282,-0.01647137,-0.008466739,0.10916954,-0.013240273,-0.026459863,-0.061266214,-0.043765064,0.020068832,-0.05547457,-0.07223899,-0.05549178,0.037773665,-0.017853517,-0.0105287405,-0.063857935,-0.016973684,-0.08060451,-0.017102107,-0.0052890726,-0.01047618,-0.005213847,0.039616626,0.033702962,0.042860556,-0.10422977,0.063665636,0.06320248,-0.008831131,0.0279227,0.04970958,-0.024511958,-0.018192954,0.026135681,0.06575802,0.016355777,-0.059808936,0.06908665,0.06059064,-0.01959133,-0.038175948,0.010154848,-0.015097851,0.020644786,0.034527086,-0.018327711,0.03475288,-0.046665814,0.07980249,-0.047857367,0.025639122,0.023436654,-0.013113088,-0.08139849,-0.068804875,-0.073764026,0.04168371,-0.13623336,0.022419063,0.0136210285,-0.015244121,0.01368969,-0.04823888,0.04928037,0.07787412,0.06721891,0.058101967,0.041528963,0.019138407,-0.013237766,0.025929488,0.08395498,0.0874296,-0.11359553,-0.010260245,0.039608445,0.017363558,0.06674889,0.09894569,-0.04406451,0.004030801,-0.04384314,-1.747771e-08,-0.02253021,0.075972535,-0.057374064,0.04523697,-0.027035031,-0.0448698,-0.016660685,0.09426972,-0.045091096,0.046328414,0.005968423,-0.017879413,-0.007490767,0.059089713,-0.0122178225,-0.009099975,-0.047638334,0.112737134,-0.01757681,0.045555573,-0.00771739,-0.013312408,0.02475717,0.062601976,-0.032045305,-0.06750731,0.0019284531,-0.0018181098,0.039617617,-0.02278393,0.0607828,0.02619711,-0.031805627,0.023054196,-0.00014924012,-0.054046135,-0.04416647,0.051431507,0.024397029,0.0074783326,-0.045199554,-0.084945746,-0.093611225,0.010028113,-0.04726237,0.027610937,-0.0005623986,-0.029022941,-0.11059793,0.0122623,-0.0838777,-0.06054608,-0.021768764,0.024093471,0.104570456,0.051024336,0.042809602,-0.057577148,-0.003318729,0.054839816,0.012349442,-0.06024645,-0.035100784,0.0415419} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.926715+00 2026-01-30 02:01:09.607387+00 22c747a6-b913-4ae4-82bc-14b4195008b6 267 google ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE 1 t 270 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Got a 5 mm scratch - 450 euros…. Never again!! got a 5 mm scratch - 450 euros…. never again!! 1 2025-03-01 01:27:48.340722+00 en v5.1 V1.01 {} V- I3 CR-N {} {"V1.01": "Got a 5 mm scratch - 450 euros…. Never again!!"} {-0.0089138085,0.052200798,0.047297165,0.025339507,-0.010437336,-0.06610758,0.117857024,0.04577811,-0.07323587,0.028859453,-0.02690456,-0.104148135,0.036492743,0.08108834,-0.09886803,-0.011165667,-0.01546798,-0.0038607311,-0.02463242,0.011379306,-0.07852558,-0.07549698,-0.043387223,-0.00715903,0.01783054,0.06386481,-0.005980326,0.07064345,-0.041687556,-0.078558594,-0.006451878,0.06627801,-0.06330509,-0.03254096,0.052701917,-0.042535074,-0.009284662,-0.04909201,-0.05305345,0.0026196353,0.005557074,0.002363418,-0.035995886,0.0052501066,0.07429799,0.043088537,0.10526486,0.05232173,0.013631485,0.015098658,-0.0071974313,-0.003812692,-0.05977226,-0.096629865,-0.027590841,-0.030695917,0.057619274,0.04569828,-0.00077327865,-0.04578817,-0.0752666,-0.023893239,-0.05477383,0.036042057,-0.0012776889,-0.0069084517,-0.05609552,-0.085864075,-0.07361171,0.12366485,0.015578336,0.013734741,0.046583623,-0.017641846,0.015777547,0.010871993,0.0044806427,-0.09918814,0.013523448,0.12053007,-0.09643713,-0.03435224,-0.0480776,-0.033560432,0.0097611025,-0.070011735,0.06701252,0.07020135,0.028538313,-0.099333584,0.056584068,0.0027629493,-0.059595887,0.10000458,-0.0102467025,0.01226385,-0.02895264,0.03639542,-0.021944834,0.05776586,0.053136043,-0.026257366,-0.052815717,0.0033571732,-0.011429588,0.02336073,0.034529276,0.11334599,0.016926723,0.010976127,-0.045132067,0.04689958,-0.030351,0.014355554,-0.048062034,-0.00020202939,-0.042013243,0.022583855,0.13241646,0.012383898,0.06216069,0.02285626,-0.024100846,-0.03226991,-0.086022414,0.00014175121,0.09319538,-3.8055943e-33,-0.07260259,0.055904552,-0.029509278,0.055976197,-0.08112165,0.06098549,0.025560733,0.043130774,-0.042069525,0.037482962,-0.039764438,0.017051065,-0.019274069,0.015281421,0.012931385,0.004720711,0.006290084,-0.05866729,-0.04250807,0.03266474,-0.04424104,-0.02075203,0.027082551,0.08483805,0.022717386,0.10018813,-0.019569205,-0.08368371,0.072914906,0.02061735,-0.0741479,0.02283403,0.021624897,-0.017970491,-0.089539185,0.13578828,-0.027960042,-0.00208796,-0.063438475,-0.02870066,0.048073836,0.038323365,0.0070041693,-0.034245167,-0.025583938,0.067287944,-0.1129175,0.021455161,-0.03469638,-0.060005944,-0.052650325,-0.0036749097,0.026326755,0.030673154,-0.014723637,0.0019582189,0.054411337,-0.05034396,-0.03751488,0.019855972,0.029181086,0.0063100047,0.078998104,0.00048000796,-0.018342782,0.07802665,0.027149303,-0.022512482,-0.05494419,-0.04803338,0.013829155,0.07535552,0.10308769,0.0019098156,-0.022097828,0.0232201,-0.0057669207,0.039269097,0.042138007,-0.022492504,0.0013382691,0.0739235,-0.022915652,-0.10727777,0.04792466,0.044748556,0.0057442277,-0.06168933,0.029545804,-0.005765744,0.038309842,-0.101833574,0.019018421,-0.06608262,-0.0075619086,2.5928186e-33,0.01925442,-0.0036813114,0.047673456,0.03877754,-0.0027370066,0.0021996154,-0.0011909015,0.09355721,-0.07894617,0.024328986,0.0537986,0.0024511705,0.05073754,0.026007777,-0.031302743,-0.01406528,0.03118044,0.010206519,0.09748864,-0.0248754,0.07160062,-0.026662976,0.05331966,0.0896711,-0.048756424,0.03950624,0.016994739,-0.05654463,-0.07518382,-0.022997493,-0.04232104,-0.00046085136,-0.048147596,0.020762179,0.067525834,-0.0024385029,0.053770777,0.038115952,-0.029432802,0.00071434944,-0.07453226,0.017673485,-0.029363394,0.08153076,0.0071669957,-0.074109696,0.007702508,-0.010387578,0.05168378,-0.0014847339,-0.02286225,-0.025360666,-0.007557533,-0.043581806,-0.08254571,-0.04678413,0.044321116,-0.038555223,0.041350193,0.03524282,0.020847913,0.07333758,-0.12479148,0.06680302,0.05020174,0.029221365,0.053520173,-0.013406515,-0.010291039,-0.012118552,-0.060338322,0.03920042,0.025097614,0.00445205,-0.012737541,0.025714261,0.016209569,0.027746782,0.06692861,0.06807878,-0.037330568,-0.01019276,0.056495637,0.0818183,0.08205255,0.008855626,0.043082803,-0.028540313,-0.011765795,-0.017524997,-0.030131228,0.049757186,-0.011922127,-0.02570147,0.014772546,-1.9612479e-08,-0.003864353,0.09644368,-0.0031872536,0.05339156,0.012132518,-0.05035217,-0.05994192,-0.034224644,0.009615481,-0.004680215,-0.024932211,-0.083742395,-0.054414786,0.031921886,-0.032263704,0.014267115,-0.014357395,0.09948468,0.0016819229,-0.042197842,0.020732448,0.06745056,0.08514104,-0.058779962,0.004670877,-0.058077134,0.019761035,0.07359892,0.041964244,-0.018412294,-0.0341569,-0.04286325,0.0131886415,-0.010513922,-0.04437287,-0.040000703,0.02978444,0.058029313,-0.010911239,0.009458712,-0.07284883,-0.16701423,0.020464687,-0.06321279,-0.09331653,0.016207153,-0.08671207,-0.059243605,-0.0054588965,-0.045855343,0.036908526,0.047178477,-0.008240256,0.052865267,0.006944951,-0.002073506,0.0113229435,0.041112695,-0.04076795,0.0538165,-0.00063360593,-0.17416076,-0.11507269,0.079929315} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:51:54.23622+00 2026-01-25 01:27:50.748899+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 271 google Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB 1 t 274 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Too many hidden charges too many hidden charges 1 2026-01-21 01:27:48.340743+00 cy v5.1 V1.03 {} V- I2 CR-N {} {"V1.03": "Too many hidden charges"} {-0.02948061,0.05100247,-0.01944798,0.04010825,0.063755795,0.028980326,0.038736545,-0.049840864,0.045782696,0.031094331,0.09466223,-0.018285586,0.06837548,-0.006771272,-0.028999789,-0.07527723,-0.03907828,-0.08438529,-0.09816471,-0.008468083,-0.01953201,0.026687672,0.029976448,-0.032525297,-0.047884185,0.025077995,0.03001716,-0.047497753,-0.03833088,-0.12491024,0.06501377,0.0993369,0.0074115433,-0.020534465,0.10353088,-0.04929428,-0.02278919,0.024101017,0.0025927941,-0.0009556249,0.049147945,-0.037898723,0.036116626,0.023509823,0.0011816503,0.009049847,-0.012809764,0.03809739,0.12244984,-0.01756474,0.04132224,-0.0059417114,0.00072700495,0.026203556,-0.061059292,-0.16882776,-0.009802246,0.032841317,-0.012664202,0.035145916,-0.028783252,0.041473825,0.0030313057,-0.033786546,-0.007969703,0.022692444,-0.02556353,-0.040737793,0.07062284,0.11016208,0.07042708,0.05193844,-0.065817915,0.00489946,-0.04933795,0.026113408,0.009037476,-0.012287533,0.004322961,-0.049497962,0.030727338,-0.099874154,-0.0716253,0.023161309,0.056002956,-0.002454816,-0.06552767,-0.035147414,-0.042591076,-0.027887555,0.026860889,-0.012171324,0.060396545,-0.020111326,-0.048673972,0.025390051,-0.035330284,0.04614623,-0.0951501,0.085306905,-0.0020420016,0.07642678,0.011492503,0.0023484176,0.019416995,0.0070150113,0.07375302,0.029810056,0.013919414,0.017038532,0.09822033,-0.02178522,0.020753315,0.02705005,0.06780945,0.12024077,0.04225705,0.018552216,-0.040695444,0.011917991,0.021441141,0.07374773,-0.020165656,-0.02216752,-0.087301485,-0.017167844,-0.055647604,2.5869928e-34,0.069503225,0.048414968,-0.04189889,-0.024391511,0.024445256,-0.01031605,0.018030224,0.054860093,0.00032540958,0.13459899,-0.03518641,0.0024804855,0.017402293,-0.024149287,0.0058963643,0.003821571,0.013761977,0.06340117,0.04600731,-0.0007442101,0.010548292,-0.025322706,0.038800944,0.0036897683,-0.015100375,0.08944275,0.07751156,-0.027442157,0.047651943,0.0056518987,0.012573803,0.11057774,0.08811333,0.059302125,0.05641106,0.07193772,0.041427962,-0.060994964,0.076078795,0.01143151,-0.01592159,-0.03879954,0.0009241954,-0.01821388,-0.010019638,0.016485114,0.049842715,-0.0698784,-0.1105362,0.113492146,-0.04763517,0.003566194,-0.036697507,0.039548445,-0.07906953,0.033751264,-0.036147133,0.012991766,0.07379795,0.02073442,0.021089843,0.032754302,-0.08188424,-0.0079023745,-0.12588164,-0.055386867,-0.023761397,-0.013371754,-0.0686917,0.08105295,-0.05112623,0.014914481,0.03190906,-0.08941385,-0.063488826,0.029843658,0.01919246,-0.017167253,0.027486118,-0.08541773,-0.069469266,-0.03859465,0.08139,0.0836597,0.0076876776,-0.018014224,0.010815755,-0.027005527,-0.0745012,0.047403608,-0.019793335,-0.006809143,-0.038633212,-0.089888945,-0.019367568,1.3595908e-34,-0.08618524,0.0007426485,-0.027733546,-0.11005368,-0.031208724,-0.02965327,-0.021284746,0.030243732,-0.011442998,-0.015081146,-0.039862167,0.096381836,0.023707975,0.0001327929,0.09114891,0.039626427,0.10543591,0.062222976,0.020562023,0.019745503,-0.07415036,0.048748314,-0.06293927,0.06018806,-0.025580514,0.05678813,-0.03230831,-0.06910647,0.03814169,0.07246423,-0.010503009,-0.033631213,-0.004930366,0.09148512,-0.07007443,-0.040100936,0.030313471,0.036339194,0.04041542,-0.043060757,-0.036680203,0.027063668,-0.008870946,0.0033660806,-0.050934773,0.021364441,-0.08786935,0.042716462,0.02289086,0.08711483,-0.11440759,-0.035181917,-0.023159077,0.026926031,-0.1039674,0.025145883,0.042881113,0.03849701,0.045743927,-0.010519279,0.016557483,0.0781998,-0.05815578,-0.05943151,0.026229411,0.032213505,-0.02531925,0.013777118,-0.013425577,0.051104564,-0.035535913,-0.058785435,-0.082246505,-0.025636427,-0.04681052,0.022234712,-0.122502804,-0.011762824,-0.05086313,-0.01718782,0.098061964,-0.074065864,-0.0092381565,-0.0002647803,-0.0041672103,0.018694054,0.10490981,-0.011625062,-0.012615839,0.04073361,-0.018383197,-0.048304528,0.016657151,0.07751925,-0.03173551,-1.40954e-08,-0.030488212,0.02523717,0.013704564,0.009287668,0.08463166,-0.03602811,-0.016064197,0.05690235,-0.040697888,-0.0055294335,0.07628886,-0.06980124,0.029501997,0.041314613,0.05104786,-0.033473663,-0.07596958,-0.01312448,-0.040514287,0.028989268,-0.08549143,0.008687226,-0.0982581,0.0094216345,0.0048833955,-0.022053277,0.046420984,0.05503895,0.011637129,0.038077857,-0.057353124,-0.02639618,-0.001772455,0.055591576,-0.0063245352,0.029775256,-0.09252639,-0.025027817,-0.009440442,-0.002447392,-0.082756735,-0.09197256,0.021445027,0.045008782,0.01685709,-0.053035356,-0.00349612,-0.06080951,0.0149514815,-0.011801591,-0.061403815,-0.0036611129,0.024624292,0.07905815,0.09628321,0.070591174,0.049983397,0.0030403356,-0.064431116,0.01811229,0.027289098,-0.042095643,-0.036575764,0.029543206} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:31.040433+00 2026-01-25 01:27:50.76106+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 272 google ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE 1 t 275 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Adrian S. Is such a nice Guy!🙏 Good work adrian s. is such a nice guy!🙏 good work 5 2025-01-25 01:27:48.340751+00 en v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Adrian S. Is such a nice Guy!🙏 Good work"} {-0.042836785,0.028193837,-0.020279944,-0.028432356,-0.029763643,0.0343889,0.0304192,0.0039237356,0.07860075,0.037685663,-0.045053713,0.0045699896,0.04749279,0.07250407,-0.028283864,0.00090621423,-0.0033208483,0.017240655,0.03522903,0.017046403,-0.04812992,-0.03969018,-0.02639483,0.02150043,-0.06309871,0.07269149,0.015061551,-0.013260327,0.034839064,0.013596088,-0.02689246,-0.011340567,0.012858645,-0.012581249,-0.06404187,-0.03667614,-0.011542401,-0.03463187,-0.027728762,0.0526625,-0.06009052,-0.0018324606,-0.012667133,0.05742607,-0.099562,-0.024226857,0.02035063,-0.033241108,-0.044086,-0.03698125,-0.060126714,-0.067171,-0.013653998,-0.025870752,-0.04066079,0.035459574,0.0069492166,-0.0410098,-0.067851186,-0.05121473,0.08421195,-0.00040273098,-0.054253303,0.01946251,0.0037684445,0.02493596,-0.05838796,-0.02830225,-0.018250555,-0.016738655,-0.0027447133,0.0024564113,-0.04303097,0.07596127,0.016233824,0.007766909,0.00025741046,-0.06443389,0.037490785,-0.00816165,0.047688194,-0.10001486,-0.10454593,-0.012897478,0.024736501,-0.013336462,-0.039874163,-0.10730446,0.018419053,0.013554478,-0.021951906,0.001857271,0.07493414,-0.032303266,0.0013219491,0.028946426,0.044651527,0.038469702,-0.2129653,0.04831932,0.045843374,0.05592756,-0.012294664,0.04632167,0.009199611,0.038476825,-0.035183903,0.030337803,-0.07392592,-0.050306436,0.0181808,0.007918569,-0.09164007,0.045987964,0.084396906,-0.028674975,0.03637175,0.0085277315,-0.002783311,-0.01840391,0.045076806,-0.035342373,-0.038658794,0.06833923,0.016868709,-0.056331094,0.042907227,-3.1255245e-33,-0.0023375317,0.063672304,0.06673782,0.033601552,-0.048647925,0.023868361,-0.05913657,0.08983834,-0.06231616,-0.004838655,-0.060343377,0.0363371,-0.0065906364,0.027439805,-0.07442,0.0910496,0.049487766,-0.025455162,-0.057681847,0.06689044,0.010907534,-0.028412987,-0.027781958,0.048232716,0.009594224,0.024568018,0.0058800955,-0.14600614,0.0049056397,0.00863117,-0.039919134,0.06815094,-0.07852871,0.08252594,-0.03285539,-0.009093131,-0.07186736,-0.041977677,0.006497872,0.028690021,0.13986593,0.0066833273,-8.534585e-05,-0.061545365,-0.05533528,0.03453008,-0.023831604,0.10025772,0.1104501,-0.016532097,-0.002217476,-0.0023083785,-0.019988734,0.05257823,0.045095768,-0.09928651,0.015631508,0.06536045,-0.035559416,0.002668427,0.055189952,0.02253395,0.054230884,-0.044408355,0.017278066,-0.08114938,-0.01930594,0.03283669,0.08108119,-0.052499183,0.01741993,0.122256085,0.055627953,0.02417992,0.0016269896,-0.018851291,0.019821951,0.07148605,-0.02995433,0.01685838,-0.005946911,0.10277042,-0.029350266,-0.012097813,-0.06826575,-0.028580748,-0.0058748126,0.01229605,-0.0028371876,0.08325434,-0.026548728,0.029264832,-0.0036165535,0.060766466,0.036004588,1.2943205e-33,0.0015639868,-0.0012748266,0.04831983,-0.029521387,0.09533381,-0.04282756,-0.040150896,0.1214706,0.07155356,0.10870342,0.0949558,-0.021792678,-0.02967788,-0.14885746,-0.025665186,-0.10182255,-0.010645868,-0.12165588,-0.06659013,-0.027548749,-0.019932214,0.07779363,0.04775934,0.0047790916,-0.05452563,-0.028907288,0.06977297,0.031036178,-0.0012620687,0.055322178,-0.043925583,-0.005178646,-0.06597523,-0.024036778,-0.03451196,0.06678385,-0.054753713,0.0705511,0.0017554285,-0.014212148,0.030600045,0.032279875,0.030418748,0.034304935,0.05799102,-0.03974543,-0.012548104,0.012529521,0.0041178367,-0.11258003,0.046638865,-0.07910471,-0.07939463,0.013492502,0.07435114,0.0010716434,0.05179621,0.05371262,0.0650236,-0.014893331,-0.090052,0.03490103,-0.06827903,0.07489319,-0.0013399388,-0.111007005,-0.046949692,-0.06451072,-0.12490521,-0.017933046,0.0070901527,-0.003412035,-0.015924687,0.03998916,0.016753066,-0.022838082,0.033304162,-0.03287947,0.049514372,-0.08172645,-0.04650296,-0.01535134,-0.046345033,0.029143693,0.057969496,0.041785877,0.022982495,-0.034640815,-0.012535825,0.02674284,0.0018238076,0.08040628,-0.03624329,-0.08409413,0.03686839,-2.044026e-08,0.0011767544,0.016345909,-0.0066884784,0.04269475,0.0769681,0.028486053,-0.07688826,-0.007927878,0.005937691,0.0007175645,0.08084759,-0.008490257,0.06259132,-0.0077160094,0.009960989,-0.09035447,-0.0012271018,0.11850512,0.018555297,-0.021037672,0.016501212,0.0003809961,-0.01321384,-0.033129204,0.07213602,-0.05170825,0.040917285,0.0063992105,0.041895412,-0.018645976,0.079175815,0.006972436,0.0099309245,-0.025466606,0.08302976,-0.0038529087,0.0054515926,-0.04079955,-0.03281603,0.032895852,0.02825598,-0.06785962,-0.03366638,0.0051111574,-0.03566865,0.0050859307,0.10446402,-0.0493139,-0.006463767,-0.021048075,-0.03399226,-0.103897944,0.06346923,0.0008409829,0.052023213,-0.08233645,0.035572603,-0.026677055,0.063074194,0.009111105,0.058155134,0.041887276,-0.07549313,0.08458279} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:35.520358+00 2026-01-25 01:27:50.76709+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1509 google ChZDSUhNMG9nS0VJQ0FnSUNZc011d2RBEAE 1 t 1512 Go Karts Mar Menor unknown Friendly staff. Great track. Go there! friendly staff. great track. go there! 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {O2.03} V+ I2 CR-N {} {"P1.01": "Friendly staff. Great track. Go there!"} {0.0012760522,-0.0393852,-0.0040856563,0.02417283,-0.019003192,0.042595405,-0.013332743,-0.051026605,-0.086076744,-0.0076942854,-0.04290138,0.020718336,-0.03206768,-0.01433411,-0.076338746,-0.012341226,0.023099579,-0.045072325,0.05155394,-0.04167815,-0.020834433,0.018540056,-0.020427428,0.10350025,-0.12344703,0.0607132,-0.06330935,0.11147035,-0.036700364,-0.02483864,-0.08734366,0.03317992,-0.011842672,-0.023358572,-0.00061708235,0.0853018,0.048105422,-0.031603843,-0.006751727,0.052014735,-0.042615276,0.01906619,0.045584034,0.011528334,-0.024608688,0.056496017,-0.030577894,-0.08805106,0.04872463,0.03875297,0.10038458,-0.06493474,0.056519922,-0.049107213,-0.012205389,0.02476807,0.03722134,-0.015132097,-0.0007161892,-0.030102972,0.01193262,-0.078257896,-0.08048829,-0.0050102957,-0.025177179,-0.048546486,-0.08636491,0.09680085,0.059553657,-0.06617882,0.05902313,0.0011465625,0.055421926,-0.011916092,0.056093354,0.07252804,-0.029251914,-0.0062855044,0.00050837407,-0.06266493,0.048665997,-0.078197256,0.062892094,-0.008815285,0.008131499,-0.115443036,0.039603967,-0.0034764293,0.018557966,0.007300656,0.040797833,0.13448267,-0.027983546,-0.036272712,-0.021323062,0.012152289,-0.01878197,0.049306065,-0.06284857,0.066577435,0.050780836,0.10349501,0.052598502,0.057249263,-0.039264306,0.026281035,-0.032265574,0.06970237,0.03178907,-0.047248166,0.089259565,0.03718975,-0.024469288,0.039321724,0.018318031,-0.007981469,0.00902846,0.036049735,-0.019783568,-0.0024110882,0.0011124325,0.014679215,-0.048883546,0.022270337,-0.013795621,0.016786221,0.06125038,-6.0644878e-33,0.018395035,0.05920629,0.020106556,-0.060010787,0.07227503,-0.0040549478,-0.13103943,0.026827442,-0.083145335,0.03223068,0.044483904,0.036471788,0.009217561,-0.072915055,-0.0017437085,-0.049081106,-0.06768405,-0.037218485,-0.065841936,0.03089557,-0.04158093,-0.00012007168,-0.021792732,-0.024386657,0.09201009,-0.022372471,0.0019779985,-0.04053522,0.109874494,0.03339978,-0.025847832,0.006382804,-0.020614194,0.022262115,-0.008697388,0.019724064,-0.08031246,-0.051869843,0.011652319,-0.050544526,0.052605283,-0.01820113,0.036967617,-0.026299596,-0.05777712,0.07312358,0.057978332,0.0422433,0.118267044,0.009264077,-0.079042725,-0.072401844,-0.023893844,0.032616258,0.045945983,-0.04231026,0.052926864,0.0818405,0.02298726,-0.042075116,0.08879554,0.15881312,-0.0057425983,-0.055369288,0.013600044,-0.042378385,-0.038865224,-0.05469814,0.12785742,-0.027195098,-0.014222992,-0.009167116,0.0074395514,0.009538665,-0.016688058,0.011724025,-0.06998487,-0.009332346,0.014526928,-0.03405517,-0.086641915,-0.008314508,-0.03776387,-0.0010665298,0.08662137,-0.021799281,-0.0046438207,-0.06957734,-0.06632008,0.036273673,-0.0425245,0.06369217,-0.003583678,0.12782171,-0.060627848,4.3534657e-33,0.10234894,0.0717598,0.09611666,0.021100407,0.044043437,0.05384062,-0.015477333,0.015457522,0.10158433,0.08607864,-0.040187486,0.024317514,-0.009231654,0.017101891,-0.06650753,-0.047204096,0.026430411,0.031460464,0.002738619,-0.10954877,-0.016603226,0.0018028953,-0.009183707,0.015084643,0.0049862084,0.035884295,0.05008201,-0.046641547,-0.050494723,-0.016719202,-0.063214906,-0.012813512,-0.046929337,-0.09480796,0.0010522765,0.029523956,0.009296075,0.027675843,-0.036126763,-0.00598645,-0.038056556,0.043494415,0.015323418,0.027400335,-0.044226784,-0.0034717186,0.03363624,0.08148265,-0.15158683,-0.021368466,-0.038466502,-0.03473127,-0.023928616,-0.043088797,-0.03480094,0.013304129,0.03885125,-0.031939294,-0.044370215,-0.02457378,-0.03092528,0.06430355,-0.051518373,0.08470882,0.08164815,-0.050933596,-0.03855233,-0.025336608,-0.06448386,0.071338296,-0.10815744,0.031667046,-0.0023443531,0.009119966,-0.029668126,-0.055162694,0.09130714,-0.098793104,-0.0063689537,0.061899684,-0.0018941811,0.017883481,0.02445845,0.020450806,0.06459185,0.10931661,0.024177779,0.04191981,0.0028286213,0.077753864,0.07454505,0.0337391,-0.039474238,-0.016764646,-0.07509732,-1.5228974e-08,0.018029142,0.10238158,0.026437797,-0.024706408,0.050183572,-0.055562995,-0.007531326,-0.0124336155,-0.052566405,0.04820688,0.018512655,-0.03412337,-0.06606343,0.055736873,0.04292311,0.0045407694,-0.043247852,0.102989554,-0.092897,-0.038910367,-0.03190213,0.042506102,-0.034156106,0.008784951,0.03705831,-0.016649345,0.016953586,0.005289341,-0.01890063,-0.06584098,0.009101863,0.088147745,-0.020063732,0.018609315,0.027148336,-0.017775858,-0.067408,0.045856558,0.016373653,-0.010363752,-0.08956019,-0.01824761,0.00057952973,0.0035266343,0.0072125476,0.02291658,0.07419611,0.01522165,-0.055658974,-0.067856506,-0.04707607,-0.075080074,-0.014691538,0.035894774,0.054099374,0.051542662,-0.011510633,-0.020267555,-0.059499066,0.03653417,-0.025457436,-0.044860236,-0.021074926,0.054940935} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.938245+00 2026-01-30 02:01:09.609511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 243 google review_69 1 t 246 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Really nice and helpful people (and they speak good english), whole rental went really smoothly, car was clean and brand new. Compared to other experiences with car rental on this island, this company is a real treasure. Big recommend!!! really nice and helpful people (and they speak good english), whole rental went really smoothly, car was clean and brand new. compared to other experiences with car rental on this island, this company is a real treasure. big recommend!!! 5 2025-01-25 01:27:48.340608+00 en v5.1 A3.02 {V4.01,P3.01,O1.02} V+ I3 CR-N {} {"A3.02": "Absolutely great. Great value, great service and a great track. We went as a family with a teenager "} {-0.009093158,0.07138762,0.054164875,0.052853093,-0.08135227,0.020956485,-0.02627618,-0.015704822,-0.067444295,-0.01786922,0.0089899255,0.11762827,0.030768687,0.01682718,0.003670326,-0.014645372,0.106949866,-0.08566818,-0.04395554,-0.0720302,-0.123157084,-0.06094079,-0.0032525887,0.054619633,-0.04799314,0.012270649,-0.0904488,0.051369023,0.016820751,-0.028600026,-0.08642833,0.031200344,0.035991557,0.007790639,-0.04446588,0.036954537,0.05143045,-0.032963935,-0.032081064,-0.004735873,0.01936374,-0.05429372,-0.03476313,0.0143302465,-0.016314099,0.0076375357,-0.021435015,-0.063177496,0.026591422,0.06042117,0.057637546,-0.07186495,0.14011234,-0.08167883,0.03158357,0.04934254,-0.08517811,-0.003173896,0.051464576,-0.007503406,0.027280996,0.018041436,-0.04063623,0.044594206,0.0062111113,-0.10892577,-0.06385178,-0.027424445,-0.013128859,-0.026399266,0.05732043,0.02365534,0.038970303,0.019974278,0.009998534,0.03712391,-0.0080155535,0.00084168115,-0.029519042,0.019703794,0.05578716,-0.07251359,0.0010379148,-0.067157894,-0.042956065,-0.12970904,0.0801775,-0.01963272,-0.018951071,-0.02881619,0.05757413,0.051788505,0.00015789663,-0.040779974,0.01796985,0.03354925,-0.053137723,-0.021856532,-0.02649028,0.009864979,0.0299773,0.13331977,0.049074445,0.005614025,-0.0319852,0.006984018,-0.030031648,0.092791,0.0201005,0.0031031212,-0.0012193397,0.038634304,-0.011742311,0.009801419,-0.059575945,-0.008865176,-0.04966001,0.027137795,0.0123540275,0.0028152978,0.03831919,0.0145063745,-0.00065250153,0.06341563,0.007026192,-0.053170905,0.031728886,2.6754557e-34,-0.09749883,0.043030895,-0.010515258,-0.010407873,0.038921997,-0.106898546,-0.06863881,-0.08739448,-0.09255941,0.04560332,0.005087411,0.06768469,0.012189271,-0.030063365,0.08729292,0.012584017,-0.13308714,0.004154601,-0.06507156,0.02626466,-0.007990937,0.014067984,-0.029301602,0.017585414,0.03246971,0.013080124,0.058507677,0.014875704,0.032620452,-0.0048559774,-0.040988866,-0.01766966,-0.03711758,0.0025285156,-0.052516166,0.02635219,-0.025254413,-0.032304015,-0.058620803,0.016018901,-0.015573233,-0.08604866,-0.0057687717,0.019753862,-0.07821084,0.028442983,0.036083087,-0.015833374,0.0011472128,-0.010936272,-0.07854418,-0.016538477,-0.06494268,0.0020289335,0.02244033,0.050757848,0.08943815,-0.0057072127,-0.020576714,-0.029862316,0.05837355,-0.07197908,0.00036544935,-0.049119566,-0.053449143,0.006503348,0.019503426,-0.03746843,0.07873996,0.020011876,-0.026937306,0.016894972,-0.043647308,-0.076806895,0.09244111,0.01933759,-0.04200043,-0.027086949,0.0056120376,0.048323475,0.046874203,0.035107926,0.032557186,0.017540123,0.09577888,-0.011415408,-0.049350172,-0.08174335,0.018265096,0.06642043,-0.03825007,0.043608274,-0.011635313,0.066068664,0.008910487,-2.3115624e-33,0.031041665,0.08725352,0.088617794,0.082592666,-0.006461814,-0.035500653,0.024196913,0.027765196,0.034019943,0.09385249,-0.03376807,0.05941346,-0.0030073882,0.017175043,-0.009777827,-0.026588816,0.105770856,0.026166892,0.07424448,-0.15607445,-0.0017287692,0.06691658,-0.041458007,-0.005439163,-0.027022623,0.043933503,-0.06950141,-0.030847609,-0.09062237,-0.04739337,0.02386156,-0.08101732,0.052162647,0.016104642,0.0049163764,0.03821777,0.029981425,0.054049835,-0.07697197,-0.019553307,0.028088208,-0.018061923,-0.05579823,0.040752064,-0.0045068646,-0.0023453974,0.1001124,0.006721446,0.031961262,0.0014709391,0.024800774,0.046246823,-0.022448495,-0.024778735,-0.037986178,-0.018147098,0.06484007,-0.03340119,-0.0152609255,-0.033388,-0.054136224,0.026466677,-0.051705554,0.032498077,0.051413115,-0.069969,-0.0028283931,-0.099322915,-0.06581772,-0.013274478,-0.06708503,-0.040441662,-0.10410068,0.05476593,-0.019137261,-0.022795824,0.08885584,0.009822092,-0.025405277,0.086390264,-0.035730414,-0.041843068,0.016389834,-0.03758174,-0.013818702,0.006879729,-0.0075781746,-0.04220934,0.022810297,0.08480263,0.089886874,0.07049944,-0.0005912339,-0.057521325,-0.034763288,-3.0044923e-08,0.025997538,0.116929375,-0.09466086,0.034185585,-0.010906351,-0.04651752,0.014563343,0.056578968,-0.08084864,0.08806176,-0.012211423,0.038620975,-0.042332232,0.04255729,0.043940887,-0.033298623,0.034470364,0.12647398,-0.00951254,0.050941225,0.06612896,0.097816065,-0.022371428,0.05369551,-0.08292043,-0.033060644,0.03521415,0.046914846,0.0007192797,-0.020411737,-0.011571962,0.053230032,-0.069806986,0.05771711,-0.026273152,-0.115529045,-0.07900543,0.07457963,0.048854385,0.018269105,-0.048627812,0.020146979,-0.10361603,0.011842223,-0.012945813,0.061665002,-0.07795881,-0.025155526,-0.06530116,0.01752399,-0.08228439,-0.012600064,-0.05853791,0.031931575,0.05938223,-0.03207777,0.01849608,-0.068517245,-0.03155656,-0.021221476,-0.031903677,-0.09486758,-0.000582342,0.014441168} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.198907+00 2026-01-25 01:27:50.221098+00 22c747a6-b913-4ae4-82bc-14b4195008b6 276 google Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB 1 t 279 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Quick service, friendly staff definitely I will use Click Rental in the future! quick service, friendly staff definitely i will use click rental in the future! 5 2026-01-24 01:27:48.340786+00 en v5.1 P1.01 {P1.01} V+ I2 CR-N {} {"P1.01": "Quick service, friendly staff", "R4.04": "definitely I will use Click Rental in the future!"} {-0.09422133,-0.07468688,-0.0065656016,0.0036637518,0.046107206,-0.0022628957,0.029031776,-0.05409581,-0.022298077,-0.0021117756,0.03930993,0.11338271,-0.025297364,0.10350858,0.037536003,-0.03068573,0.059849095,-0.017269729,0.052345116,0.0063471803,-0.07351657,-0.07613824,-0.010646306,-0.04733803,-0.063283354,-0.0810101,-0.05601093,-0.0031564569,-0.0003083684,-0.06839413,-0.001074998,0.032637123,0.06301412,-0.029918212,0.02006893,0.07082104,-0.029856475,-0.020746378,0.021819096,-0.0028209332,-0.03475204,-0.031280164,-0.025269583,0.01966245,-0.041907903,-0.043897986,0.029750222,0.033574395,0.034828942,0.06927199,-0.030477442,-0.047522463,0.0046932367,-0.03722681,-0.0805603,-0.05308975,0.010842482,-0.0030165212,-0.03081939,-0.016867314,-0.0014087085,-0.039908335,-0.057984717,0.022324307,0.06660444,0.04035625,-0.046529163,0.030224811,-0.043593753,-0.090174474,-0.11537659,0.042687804,0.00717579,0.07084252,0.002547903,-0.031996433,-0.005068249,-0.012812533,0.036735706,-0.09418894,-0.009570954,-0.034432508,-0.0048552863,0.03984572,-0.006558546,-0.040470883,0.040557984,-0.031912938,0.005724925,-0.0013922362,0.06876245,0.11210152,0.06033754,-0.010194851,0.016999308,-0.020532168,-0.047826067,-0.007322808,-0.08986826,0.002417279,0.039403994,0.090287454,-0.011567012,-0.08664837,-0.06618608,0.008466425,0.006261002,0.022325637,-0.0035763802,0.018055717,-0.042239107,0.030798987,-0.033766486,-0.09979878,-0.027895061,-0.026919702,-0.08375098,0.00871841,0.10650406,0.004209762,0.06062081,0.06379866,-0.028612088,-0.069669865,0.04457584,-0.009494059,0.057215136,-3.7799685e-33,-0.024048511,0.08956234,-0.07677168,0.033957757,0.047769375,-0.004982706,-0.010329813,0.05718307,-0.09673276,-0.039639447,0.05448887,0.022356173,-0.017458875,0.0022569906,-0.009161542,0.031109601,-0.005377269,0.042926975,-0.020766981,-0.036069196,-0.033486485,0.0036627352,-0.008270513,0.09286592,0.08426177,-0.022069734,0.03487169,0.03818906,0.12104487,0.03736475,-0.04985548,-0.0696956,-0.059752733,0.0019302618,-0.045885462,0.018593293,-0.12036714,-0.05214744,-0.00837419,-0.027120072,-0.02995343,-0.05209009,0.0073788716,-0.019313613,-0.08144473,-0.006120757,0.044524748,-0.009175973,-0.006629472,0.007399659,0.02230368,-0.04128137,-0.062076,0.09669505,-0.053331375,0.004093111,0.04874755,-0.04407288,0.018550787,-0.016263904,0.090401456,0.012867022,0.038364757,-0.068680175,-0.0373917,-0.09473923,0.0003186834,-0.021763276,0.08293274,-0.016248938,0.0669454,0.026442558,0.08118696,-0.031763397,0.015558089,0.019426333,-0.088314444,-0.06981708,0.053161647,0.053145397,0.08697452,-0.09141058,-0.019693583,0.0042534075,0.042665854,-0.041156635,0.04806322,-0.053094555,-0.06706088,0.02982965,-0.018193152,0.07948735,-0.04062739,0.067964956,-0.009746592,1.1561447e-33,0.054496896,-0.015852047,0.014072239,0.008352152,-0.024923394,0.12688483,-0.0631387,-0.011028066,-0.047219496,0.07454173,-0.11969679,0.0036640493,-0.04153787,0.0006671101,-0.063775614,0.035133284,-0.00875799,-0.07729536,-0.08232931,-0.014612809,0.0070790346,0.07870969,0.020780718,0.10177119,-0.00540144,-0.0023059817,0.0011760147,0.07760609,0.0073024537,0.007411831,-0.08480508,-0.013754815,-0.04160086,-0.07513332,0.086674735,0.085234724,0.04955476,0.013616882,-0.037856128,0.043779112,0.03152603,-0.054933216,0.017913481,-0.04942396,0.018388331,-0.07425221,0.014423281,0.010992329,-0.058526326,0.06847121,-0.022568054,-0.01399832,-0.004868927,-0.042389844,-0.032854624,0.010920869,-0.021568812,-0.047972944,-0.04020275,0.04590654,-0.048916534,-0.025154576,-0.025221637,0.04099646,0.034680646,-0.10408118,0.107145086,0.042791553,-0.0474187,0.029755864,-0.0018264785,0.04284111,0.024380272,-0.058678407,-0.033546545,0.0063653374,0.1830541,-0.0316173,0.020456165,-0.048143234,0.05678694,0.032248788,0.054976854,-0.037337337,-0.04922301,-0.0016620123,0.09281913,-0.05369156,0.015926931,-0.027874114,-0.04176803,0.038677886,-0.01711139,0.008282136,0.015340806,-2.2097417e-08,-0.028078748,0.037250124,0.083444156,0.0008134813,0.030459264,-0.08777677,-0.052659657,0.1787216,0.013145798,-0.0007314555,0.03851436,-0.090274036,-0.0068514124,0.08729536,0.07179545,0.05874288,-0.020180652,0.03936508,-0.047424275,-0.0012149875,0.05458797,0.05585314,0.027343716,0.020564357,-0.021930706,0.016213326,-0.014323528,0.031742226,0.037954286,-0.041865222,-0.049345862,0.048051625,-0.08331628,-0.023785641,-0.051505785,-0.014333843,-0.009180654,-0.011552838,-0.023018219,0.07102616,0.017692868,0.02171649,-0.027547345,0.009739587,-0.04904275,0.024097651,-0.024370642,-0.050483033,0.018430596,-0.03286232,-0.05559302,-0.01972677,0.061165072,0.024101892,0.049807593,0.008447782,0.06436804,-0.0061724777,0.09787537,0.16608998,0.03321503,0.03868832,-0.044961493,0.049827386} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:52:59.453969+00 2026-01-25 01:27:50.782362+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 278 google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB 1 t 281 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir haben für eine Woche ein Auto gemietet. Preislich top! Wir haben nur 160€ bezahlt.\nDa wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt. Wir nahmen dann für 12 € ein Taxi.\nIch nehme an, dass das Shuttle draußen vor Terminal 7 fährt, zumindest würden wir dort abgeladen (s. Fotos)\n\nBei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit der Dokumentation von vorhandenen Schäden, die man bei der Abholung bekommt, abzugleichen. Wir wurden nämlich auf einen schaden angesprochen, hatten aber dann alles gleich zur Hand und alles war gut!\n\nWir würden hier wieder mieten. :) wir haben für eine woche ein auto gemietet. preislich top! wir haben nur 160€ bezahlt. da wird über einen anderen anbieter gebucht haben, wussten wir leider nicht, wo der shuttle abfährt. wir nahmen dann für 12 € ein taxi. ich nehme an, dass das shuttle draußen vor terminal 7 fährt, zumindest würden wir dort abgeladen (s. fotos) bei der abgabe hat alles reibungslos geklappt. ich empfehle bilder von den schäden zu machen und mit der dokumentation von vorhandenen schäden, die man bei der abholung bekommt, abzugleichen. wir wurden nämlich auf einen schaden angesprochen, hatten aber dann alles gleich zur hand und alles war gut! wir würden hier wieder mieten. :) 5 2026-01-11 01:27:48.34079+00 de v5.1 V1.01 {} V+ I3 CR-N {} {"A4.01": "Da wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt.", "J1.01": "Bei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit", "R2.01": "Wir würden hier wieder mieten.", "V1.01": "Preislich top! Wir haben nur 160€ bezahlt."} {-0.08345398,0.008335068,-0.027307155,0.0051968666,-0.03929618,0.010171126,0.09915368,0.13436237,0.0039223386,0.009704432,0.026410192,0.04272079,0.020194478,0.0020954208,-0.0255294,0.055383258,0.0105477795,0.026543055,-0.06526079,0.0006887152,0.022192767,0.008147015,0.024836643,0.089445494,-0.017070562,0.008996859,-0.0664686,-0.015209049,0.03294985,-0.0025074019,0.046601947,-0.0004906748,-0.030572787,-0.029328812,0.013052117,-0.0044488106,0.0015562655,-0.039993867,0.00055820873,0.009031784,-0.020484729,0.036385827,-0.08612165,-0.036005042,-0.05966518,-0.057949934,0.08479334,0.0109570725,-0.0061372276,0.0074562705,-0.02352522,0.026976638,0.04619708,-0.03088301,0.03856017,-0.09199984,-0.06143834,0.0034440649,0.07560388,-0.016265942,-0.12839,-0.028702402,0.03331772,0.01766621,-0.010516152,-0.0073422533,-0.023506459,-0.08227494,0.0010346796,-0.014803125,-0.0063637984,-0.10757308,-0.045683526,-0.10897826,-0.09537503,-0.009282185,-0.0010601495,0.06985255,-0.1233013,-0.06087501,0.04861478,-0.023510138,0.0909989,0.005166665,0.02297058,0.0018440706,-0.027758703,0.086849205,-0.03171283,0.02153454,0.010043256,0.0017489498,-0.074815415,-0.029130952,-0.045198772,-0.0124664,-0.008293068,-0.07630331,0.035852097,0.031238636,0.051784024,-0.024590965,0.02141316,-0.005579052,-0.03908982,0.056756727,0.04992433,-0.05160559,0.022388805,-0.0014280984,-0.030481087,-0.052756555,-0.022506202,-0.06427839,-0.011350482,-0.015009782,-0.04553334,-0.08940126,0.006977637,-0.028231295,0.0111178905,-0.06521711,0.16684695,0.008173498,0.11999922,-0.0091802385,0.057934694,1.8856333e-32,-0.004253293,0.02969691,0.019276626,-0.04340122,-0.024414036,-0.05725655,0.0037010221,0.12334117,-0.00973346,-0.00884604,-0.09026798,0.019511512,-0.0147609655,-0.07041403,0.03187393,-0.07176591,0.07308323,-0.10488641,0.07680531,-0.058659147,-0.031944912,-0.052799325,-0.021307988,0.06819222,-0.014225801,0.056746516,-0.032185603,0.042308155,0.022845773,0.04009969,0.007828468,-0.0066079404,0.031887036,0.025654595,-0.104838215,-0.007177006,-0.08702325,0.05725178,-0.037078068,-0.021758499,-0.00922102,0.015898023,-0.00012994224,-0.0018101333,0.0683182,-0.009168889,-0.023056561,-0.028006827,0.001174051,0.038532022,-0.048695475,-0.0078121256,0.0935986,-0.008055564,-0.02305032,0.054347258,-0.08031974,0.02136028,0.042770404,0.04034237,-0.010669266,0.00064452423,0.002846264,-0.009764582,0.017415583,-0.0018491375,0.034563422,-0.032875985,0.015455826,0.06343623,-0.030711835,0.088443294,0.096810855,-0.013752207,0.11659255,0.06760157,0.004363747,-0.025910938,-0.092491865,0.07844814,-0.061199732,-0.07739394,-0.01636791,-0.043320443,0.01920656,-0.009830715,0.053233948,-0.040294785,-0.08439542,0.07467525,-0.011618235,-0.046853006,0.028448233,-0.020970717,0.015423568,-1.6756991e-32,0.116175584,0.100145325,0.028798224,-0.04800556,-0.07571043,0.07769836,0.043779343,0.003223737,-0.15716045,-0.038589556,0.0065102126,0.059263837,0.011587854,0.013957811,-0.061930984,0.07323692,-0.009781511,-0.021323696,-0.0039125136,-0.058641437,-0.0034688886,0.06304189,-0.024328591,0.021675102,-0.07897391,0.02756006,0.08806801,0.020214975,-0.0005939226,0.041789576,-0.0072404356,0.026593518,0.04708381,0.018266303,-0.06134649,-0.0026266049,0.042159494,0.057548266,-0.045940682,-0.04842661,0.014528316,0.013947345,0.0030516966,-0.08028649,0.07307873,-0.0011632732,-0.07799083,-0.05513265,-0.012864068,-0.052304007,0.081497654,0.03530056,0.013619638,0.041509088,0.12287841,-0.033128936,0.036555063,-0.07165269,-0.026787888,-0.041852135,0.020247096,0.012998648,0.0006508251,-0.002167825,0.025835501,-0.07098189,-0.015494688,1.4328576e-05,-0.008111495,0.03733862,-0.014758058,-0.045790292,0.096642934,0.08464682,0.009375455,0.084719524,0.08496021,0.0054026754,0.009717722,0.022759316,-0.03503789,0.0010550879,-0.022105673,-0.028355965,-0.0907021,-0.028236406,0.03391516,-0.03564143,0.04065425,-0.017936904,-0.046248913,0.11042058,0.10997612,-0.022614613,0.01880316,-6.7886226e-08,-0.011725464,-0.08715666,0.016543185,-0.03301535,0.042070832,-0.045026463,0.02506753,0.02503644,-0.12980394,0.02867126,-0.00836882,-0.0022498232,-0.054304518,0.04650076,-0.08536008,0.0736513,0.06341357,-0.0226726,-0.008227557,-0.07617864,0.071137995,-0.0589066,-0.00211968,-0.04075631,0.009377971,-0.04751298,-0.09335547,-0.08570158,0.010293381,-0.08115172,0.013973467,-0.0029359986,0.04209013,-0.015904464,-0.040605586,-0.062947065,-0.023188476,0.018693563,-0.02200859,0.06669913,0.0709066,-0.08312107,-0.021349225,-0.070812695,-0.011091644,-0.019978577,-0.050768904,-0.0066471696,-0.027007945,0.08011838,-0.016325425,0.018752862,-0.008530468,0.045244675,0.02123372,-0.038785998,0.05335312,-0.0067793555,0.02658155,-0.027550898,0.10124341,0.04120547,-0.11356705,0.014168007} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:53:19.495935+00 2026-01-25 01:27:50.78888+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 279 google Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB 1 t 282 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. Al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo.\nOltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta.\nPoco precisi e errate informazioni. ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo. oltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta. poco precisi e errate informazioni. 2 2025-12-26 01:27:48.340793+00 it v5.1 V1.03 {} V- I3 CR-N {} {"A4.01": "Oltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto", "V1.03": "Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero impo"} {0.032685492,0.057403415,-0.060944505,-0.009105088,-0.016076049,-0.022459466,0.042439442,0.13993119,0.016939007,-0.0117998915,0.049104583,-0.062036075,-0.022177476,0.010962981,-0.11575676,-0.098123275,0.06816978,-0.032014467,-0.06087702,0.0041431235,0.0049297432,-0.12841515,0.01764531,0.080215596,-0.05951562,0.034268036,-0.07043373,0.016075071,-0.058283094,-0.026352081,-0.04018942,0.0703806,0.07467123,-0.043127727,0.058071837,-0.079258814,0.04663316,-0.054802496,-0.0564662,0.018364877,-0.087427676,-0.111730985,-0.06846889,-0.00029226518,0.04983599,0.019627206,0.027174875,0.07353883,-0.058009587,0.0129182,-0.09236753,-0.011696123,0.028356496,-0.056167547,-0.07067586,-0.01146718,-0.0032514888,0.032056477,0.035466872,-0.04059278,0.024759995,-0.0064666634,-0.03183962,0.024554206,0.017966831,-0.022581821,-0.014149018,-0.118976764,0.002959207,-0.02627259,0.052907027,-0.10610582,0.03411648,0.013386906,0.008299651,0.03367272,0.036497228,0.008427512,0.00812564,-0.085179985,0.14083868,-0.02156475,-0.041518364,-0.025306048,-0.005870763,-0.0073468257,0.019494198,-0.02027918,0.035764866,-0.027778927,-0.03384468,0.005568559,-0.07457893,-0.05692241,0.01711294,-0.045216847,-0.04854812,-0.01157395,0.011660898,0.02374234,0.06592185,0.003398422,0.009792371,0.046271093,-0.08177626,-0.002066892,0.081862174,-0.04770545,-0.02614089,0.008585652,-0.10494037,-0.033088803,-0.03912999,-0.11624603,-0.0076980228,0.010755336,-0.042140022,-0.07652661,0.0051929723,-0.008541258,0.0029517235,-0.053328414,-0.0003237152,-0.032897756,-0.0007400098,-0.070966534,0.056069084,1.8346409e-32,-0.0962305,0.011085117,-0.02771359,-0.021552956,-0.0006437786,0.061324827,-0.037678756,-0.036244404,0.036876272,-0.030543765,-0.08967904,0.040486567,-0.004889842,-0.011667679,0.021075351,0.015303622,0.088665746,-0.0062956037,-0.0075345295,-0.06688869,-0.050512176,-0.07350977,-0.01586235,-0.041370332,0.017099466,0.11994099,-0.050670575,-0.05150348,-0.017229872,0.056661133,0.065519705,0.07525481,0.017720643,-0.028517334,-0.046408102,-0.014719935,-0.034002986,0.028630696,0.022291591,0.0032653045,-0.034853756,0.0633353,-0.010445633,-0.012329686,0.040544607,0.0007565111,-0.0053488025,0.06349764,0.10132831,-0.022762006,-0.01620479,-0.04294075,-0.103242,-0.059086528,0.04043958,0.07902796,-0.004189831,-0.028757121,-0.045383368,-0.04068076,-0.043063525,0.11521422,-0.007845503,0.0045090625,0.0044842293,0.08982122,-0.028907977,0.0052493275,0.038741913,0.031156186,-0.082286984,-0.039405685,0.0028682756,0.050948232,0.0042388644,-0.006981667,0.03552005,-0.006005611,-0.043764707,0.016312009,0.031089375,-0.06744863,0.10209592,-0.00027755107,0.05544949,0.019135995,-0.0026265904,0.07893839,0.04068071,0.10300627,0.03468215,-0.040208966,0.0020212422,0.05401998,0.06390936,-1.8991836e-32,0.037658032,0.07368383,-0.052748848,0.008214531,-0.038081683,0.036120016,-0.017820273,-0.0307971,0.03500826,0.0485096,-0.024269037,-0.08474882,0.03687267,-0.008233375,-0.029475436,0.07549554,-0.027485222,-0.08517358,-0.037207484,-0.027862594,-0.08699019,-0.054412786,-0.017696023,0.046857554,-0.0820124,0.02632387,0.07854335,0.0057391613,-0.04798471,0.014446494,-0.0683369,0.0066409814,0.019853538,0.05510655,0.015267622,0.0015398434,0.11468267,0.035619393,-0.046299815,0.019070057,-0.0732072,0.058695138,0.061107464,-0.07337287,0.025544846,-0.024513783,0.013726436,-0.10241699,-0.034924973,-0.041152753,0.093028255,-0.029325712,-0.0044973865,-0.008419927,0.01599851,0.12735048,0.030077577,-0.00053505076,-0.060249068,-0.048055295,0.10331129,0.0010149741,-0.056181844,0.012106644,0.06894922,-0.04791475,-0.061273776,0.02267497,0.05235899,-0.022836382,0.036743533,-0.034096207,0.03373175,-0.0027816528,-0.04282321,0.021945382,0.032441273,0.09881704,0.013212459,0.06278364,-0.07471073,-0.011966597,0.015555933,0.0028915622,-0.033896692,-0.041152477,-0.08221573,-0.08761857,0.021983033,0.019780565,-0.020343542,0.06926503,-0.024551358,-0.049098823,0.060807526,-7.0326465e-08,0.000706654,-0.06912669,0.05166998,0.09451506,0.054433025,-0.03168122,0.0017277584,-0.023127925,-0.0035046672,0.010696702,-0.04899615,0.019485408,0.050418325,-0.037611127,-0.0740697,0.03384663,0.049221672,0.022375084,0.01320801,0.005830075,0.08153158,-0.07602473,0.011096,-0.06770188,-0.010007592,-0.056188244,0.01347427,0.05604252,-0.05665423,-0.046403516,-0.07100547,-0.059015147,0.04707432,-0.090798125,-0.03166094,0.023830652,-0.011882846,0.0010962222,-0.10989661,-0.03915586,0.046498436,0.012467426,-0.03765847,-0.033174444,0.092577524,-0.020603858,-0.026821945,-0.09665626,-0.012494722,0.051011957,-0.060632754,0.026786864,0.080278255,0.0854944,0.04050362,-0.011249128,0.061938938,0.051069405,-0.0015689887,0.035856728,-0.052505467,0.04900307,-0.059990354,-0.049975973} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:53:28.47618+00 2026-01-25 01:27:50.792315+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1375 google review_70 1 t 1378 Go Karts Mar Menor unknown Great way to spend An hour or two with friends and family. The whole setup was made very easy and we literally turned up and was on the track within 5 minutes. No messing about. It's a good track too with plenty of opportunities to overtake and challenge your driving skills. We'll certainly be returning again soon. great way to spend an hour or two with friends and family. the whole setup was made very easy and we literally turned up and was on the track within 5 minutes. no messing about. it's a good track too with plenty of opportunities to overtake and challenge your driving skills. we'll certainly be returning again soon. 5 2022-01-31 01:52:39.833374+00 en v5.1 J2.01 {J1.01} V+ I3 CR-N {} {"J2.01": "Great way to spend An hour or two with friends and family. The whole setup was made very easy and we", "O1.02": "It's a good track too with plenty of opportunities to overtake and challenge your driving skills.", "V4.03": "We'll certainly be returning again soon."} {-0.017361298,-0.0032510255,0.038519934,0.030306196,-0.039196253,0.04643741,-0.02112097,-0.01662223,-0.0777197,-0.07260509,-0.044310488,0.0715814,-0.006649399,-0.014389433,-0.050830107,0.0092498055,0.099559076,-0.087773435,-0.021928705,-0.03671895,-0.09213741,-0.052504152,0.011010991,0.052782167,-0.07005254,0.058238532,-0.058620337,0.046464115,-0.014387975,-0.066539355,-0.0152581865,0.05580146,0.071994305,-0.037563525,-0.07746082,-0.011944971,0.075661674,-0.013387592,-0.034735262,-0.03506132,-0.026350169,-0.05175056,0.036156204,0.038214777,-0.013092054,0.025310192,-0.007183093,-0.034901254,0.1297582,-0.014643811,0.08765686,-0.04178862,0.10944374,-0.08354226,-0.057926957,0.12286601,-0.040442187,0.020658528,0.012610918,-0.029201759,0.003937981,-0.042894505,-0.008660875,0.02504853,0.031389453,-0.09587371,-0.06354406,-0.01906695,0.07350998,-0.023241766,0.0022639118,0.016372954,0.036368515,-0.032945152,0.042568557,0.023337737,-0.009222366,0.012921104,0.0022431142,0.012668768,0.04125275,-0.036574636,-0.0027775012,-0.022472648,0.014735719,-0.10712831,0.03155984,0.007440997,0.028463526,0.023457797,0.05216426,0.073644355,0.0068597416,-0.08711784,-0.012693306,0.05689486,-0.03150327,0.03332402,-0.008543958,0.059271842,0.042062394,0.08347957,0.013232349,-0.048107326,-0.054419294,-0.044806894,0.029813537,0.11486298,0.04086334,-0.048518885,0.090038985,-0.018729039,0.035342116,0.004578712,0.0017308537,0.10458996,-0.033602934,0.04685408,0.03585495,-0.0044155223,-0.03241656,-0.006580494,0.029671395,0.023295216,0.021034226,-0.022136163,0.053355135,2.3034452e-34,-0.051110722,0.059130695,-0.005245893,-0.0092987735,0.05663886,-0.04830309,-0.10718404,-0.026432408,-0.08448961,0.028209282,0.054799933,0.015290798,-0.010753445,-0.02743823,0.054538418,-0.06612193,-0.08050515,0.050675113,-0.09927838,-0.014434195,-0.020837685,-0.006916543,-0.013817162,-0.060425006,0.03766128,0.06408031,0.043505915,-0.004817599,0.14147553,0.011143115,-0.11454841,0.028720256,-0.10107592,0.01858218,0.010419432,0.038867943,-0.055637784,-0.046838075,-0.028123682,0.027077304,0.0014152364,-0.038465947,-0.040470757,-0.02760369,-0.076375864,0.032791518,0.039921165,0.04345281,0.015522517,0.034509964,-0.06870864,-0.053998336,-0.066539675,-0.03680193,-0.03678546,0.054129027,0.04601763,-0.04927884,-0.012037672,-0.005370072,0.11496727,0.002749687,-0.031873513,-0.034123696,-0.0981042,0.055634752,-0.014813559,-0.047009423,0.10433497,0.03485948,-0.028497633,-0.03537183,-0.03358653,-0.011672941,0.100939825,0.0301275,-0.027248453,-0.010725193,-0.001297934,0.023605114,-0.005724555,0.013764221,-0.03922338,-0.0034027616,0.13677658,0.033714768,-0.013162752,-0.08814532,-0.06804081,0.0060799583,-0.02346486,0.017670063,-0.014305412,0.06971992,0.011794689,-1.2136441e-33,0.07656296,0.057113696,0.07614883,-0.029607674,0.03391637,0.024537645,0.008537978,0.04294828,0.061509226,0.14008224,-0.09296178,0.039233755,0.04391345,-0.0039907815,-0.03809923,-0.07255108,0.094696745,-0.011668717,0.03381579,-0.08604489,0.027792972,-0.015476109,-0.010847995,-0.05011194,-0.035279974,0.0067559727,0.015022495,0.026373845,-0.020632189,0.00940401,-0.008364259,-0.01644245,0.00019124325,-0.09508354,-0.002547038,0.07576684,0.039031245,0.026524454,-0.07973037,-0.06579313,-0.042855125,-0.014295094,-0.043281026,-0.023470528,0.012988372,0.03390902,0.058388896,0.103891596,-0.10694731,0.04825412,0.020522224,-0.06821813,-0.011989656,-0.023617314,-0.06289221,-0.0237818,0.053120058,-0.022652905,-0.0006963973,0.022899024,-0.055453043,0.06963056,-0.057793796,0.0033848635,0.023521079,-0.0515771,0.007596326,-0.042860325,-0.08004206,0.071669765,-0.092328355,0.0134821925,-0.030498236,0.0432455,-0.0005396715,-0.017987363,0.030367557,-0.049002085,0.006672318,0.031065814,-0.025885213,-0.012286979,0.032074474,-0.0223071,0.027323313,0.03814843,0.01948526,0.039397698,0.022129154,0.07153787,0.11242889,0.07858819,-0.037502114,0.054397568,-0.060214877,-3.9888175e-08,-0.018966075,0.09745316,-0.04666611,-0.023576474,-0.022694936,-0.060595363,0.073470555,-0.006811095,-0.10032123,0.0007895252,0.049360797,-0.027788231,-0.014215715,0.06701044,-0.023918532,-0.0051541273,0.035661124,0.07994204,-0.05373051,0.03885802,0.02729862,-0.008181887,-0.024982315,0.06818106,0.037619844,-0.023361746,0.06104878,0.077393584,0.0042263754,-0.120620966,-0.04655574,0.077148706,0.008072217,0.0986572,-0.034985647,-0.0922954,-0.06720482,0.03972166,0.027751658,0.0072061205,-0.032755204,0.008485114,-0.05760155,0.0017520088,-0.008928382,0.00016084134,-0.039909225,-0.035754543,-0.073497206,-0.0067913258,-0.06164627,-0.06524598,-0.062372595,0.085408844,0.11157908,0.030779853,-0.04249421,-0.0068051475,-0.03496143,-0.00034448967,-0.040406454,0.014155136,-0.053243384,0.031204632} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.255598+00 2026-01-30 02:01:09.15536+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1382 google review_77 1 t 1385 Go Karts Mar Menor unknown Very good and long track. Good value for your money. Definitely coming back soon. Even if we were about 10 people on the track, it was not really crowded. very good and long track. good value for your money. definitely coming back soon. even if we were about 10 people on the track, it was not really crowded. 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.01 {O1.02,E1.03} V+ I2 CR-N {} {"V4.01": "Very good and long track. Good value for your money. Definitely coming back soon. Even if we were ab"} {0.020016195,-0.029526645,0.009449516,0.03667977,-0.030899934,0.07070817,-0.018121792,0.044963576,-0.063627936,-0.042382218,-0.055515315,0.074884124,-0.022970103,-0.02286288,-0.061180137,-0.0009729494,0.07924972,-0.09982065,-0.035610113,-0.056807794,-0.116025716,-0.022954239,-0.022071777,0.0665304,-0.07562942,0.024192475,-0.06982675,0.026962567,-0.0015068634,-0.019945867,-0.07792184,0.054812584,0.040947564,-0.0051921397,0.013416268,0.0104414,0.047565073,-0.025322169,-0.003569095,0.002729621,0.0067588277,-0.029350894,0.035286497,0.011084912,0.014482522,0.005055147,0.012709637,-0.017201304,0.059336044,0.039243437,0.11437417,-0.041911162,0.09297052,-0.06598061,-0.051455967,0.036194183,-0.048061553,-0.025591495,0.0027301107,-0.03060215,0.036780357,-0.062335517,-0.035175066,-0.02865326,0.019684257,-0.055723313,-0.10870407,0.0019084875,0.079713844,0.0037571085,0.09979627,0.010758042,0.009352296,-0.019567452,0.013814539,0.036781408,0.0014543011,0.0017593608,-0.015886,-0.025538642,0.070052706,-0.099270545,0.020292554,-0.07441183,0.00541487,-0.08685593,0.07354064,0.04144633,-0.025595823,-0.016807102,0.06720621,0.13629194,-0.020724041,-0.05233847,-0.010314118,0.05982464,-0.06270684,0.04764062,0.033213694,0.03554612,0.06542164,0.12786101,0.034718193,-0.004392049,-0.033391602,-0.03145839,0.021061033,0.09956994,0.011088698,-0.066306196,0.049935207,0.040748462,0.015221438,0.03684739,-0.02011351,0.033009056,-0.05837803,0.06366423,0.017128529,0.009336929,0.0110781165,0.014750593,0.02124987,0.051156618,-0.060715623,-0.031247323,0.08118368,-1.993131e-33,-0.09002348,0.025120834,-0.00792221,-0.07493241,0.026609296,-0.010163892,-0.102526665,-0.02120686,-0.102830246,0.027779821,-0.002260114,0.009475305,-0.0026959432,-0.015389534,0.039725576,-0.08202655,-0.054709457,-0.00023242996,-0.08980101,0.025446031,-0.006795799,0.014468309,-0.005637144,-0.02825768,0.027330654,0.0512153,-0.045747712,-0.025631063,0.050696917,0.012742373,-0.07622983,0.037930828,-0.019289402,0.025491055,-0.017611707,0.010090292,-0.031116698,-0.02711449,-0.0006127128,-0.023666557,-0.0031254804,-0.025919614,-0.017954819,0.003916021,-0.05969912,0.03348288,0.013549045,0.043188635,0.007609488,-0.017756287,-0.058105845,-0.06345244,-0.11457353,-0.019204043,-0.013185009,-0.008019763,0.053986717,0.010254575,-0.0304904,0.008517785,0.06789729,0.0548141,0.00011548531,-0.044532496,-0.07851325,0.08351868,-0.042562265,-0.04664406,0.044688463,0.034081142,0.021446303,-0.038073733,-0.006156836,-0.0060224403,0.121545166,-0.026180467,-0.04007847,-0.036415815,0.013588356,0.055370484,-0.03179759,-0.00018361994,-0.002356322,-0.038844205,0.11978078,0.019048179,-0.03270014,-0.101699956,-0.024980474,-0.02170946,0.040399402,0.053599212,-0.036087487,0.03415984,-0.009801451,-5.638304e-34,0.07699452,0.1453454,0.055132702,0.011121356,-0.00070524437,0.045014367,-0.014924545,0.12521662,0.024883112,0.09896318,-0.053003665,0.017200496,0.037725795,0.036350854,-0.022483842,-0.05093132,0.09525413,-0.044746295,0.05485408,-0.14007969,0.019842524,0.00027759853,-0.035215493,-0.003941752,-0.051833715,0.03593847,0.005227739,-0.05452876,-0.0118931485,-0.029215269,-0.054933753,-0.011404797,-0.008008631,-0.055763252,-0.013716674,0.05795333,0.08300879,0.049608964,-0.06084693,-0.016153153,-0.025770448,0.014535154,-0.015165805,-0.014650734,-0.016036378,0.003963312,0.035137575,0.15138447,-0.03633894,0.02416113,-0.010501577,-0.02318454,-0.020688713,-0.005306725,-0.06109878,-0.005938861,0.017502699,-0.015839359,-0.048065703,-0.036722526,-0.08749818,0.046954893,-0.022784695,0.03188623,0.0649123,-0.03934961,0.006398437,-0.09493472,-0.07405207,0.025227174,-0.06953775,-0.0005328347,-0.044936936,0.09717955,-0.016915409,-0.010840592,0.03292464,-0.010132792,0.06771373,0.090292856,-0.0067585274,0.003400031,0.0035688705,-0.065218404,0.04745208,0.02980479,0.013584657,0.032110408,-0.019275421,0.12588817,0.112709135,0.030088656,-0.021561794,-0.063814394,-0.072498515,-2.5843427e-08,-0.04594657,0.124486886,-0.0046151094,-0.01320371,0.03632814,-0.051405277,0.08759775,0.070893504,-0.05877387,0.04737703,0.027351778,-0.0035171309,-0.07441778,0.068805,-0.072965875,-0.057638753,-0.010668699,0.05545538,-0.024923082,0.037781328,0.044762757,0.06008915,-0.038132384,0.035463363,0.021647815,-0.026116736,0.021040337,0.07704862,-0.010657038,-0.10498451,0.019154845,0.053612974,-0.021497134,0.019895853,0.007007864,-0.051838662,-0.04182864,0.049884975,0.04934397,-0.026473938,-0.042438477,0.0042200875,-0.05615711,0.018098993,0.069469936,-0.027458107,-0.032900605,-0.0066146967,-0.07593638,-0.06646094,-0.06752172,-0.07421979,-0.07415208,0.08346839,0.04826663,-0.0052455748,-0.067228705,0.006707053,-0.027432024,-0.027006947,-0.06290641,-0.11224832,-0.087473504,0.08099898} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.586388+00 2026-01-30 02:01:09.180918+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1511 google ChdDSUhNMG9nS0VJQ0FnSUNtb3JYLTZ3RRAB 1 t 1514 Go Karts Mar Menor unknown Great afternoon out, brilliant value and awesome track great afternoon out, brilliant value and awesome track 5 2022-01-31 01:52:39.833374+00 en v5.1 V4.01 {O2.03,O1.05} V+ I3 CR-N {} {"V4.01": "Great afternoon out, brilliant value and awesome track"} {-0.04067499,0.0944955,0.0188454,-0.030907704,0.0065342598,0.025743961,0.04880401,0.016497863,-0.00919661,-0.049284846,-0.029788578,0.06190131,-0.0044116173,-0.049025405,-0.027530253,0.11231404,0.049172547,-0.053614665,-0.018516457,-0.008008275,-0.1016904,-0.05254454,0.0078020752,0.08946717,-0.10942676,0.11433946,-0.02438478,0.04321191,-0.016094806,-0.076037824,-0.078727424,0.080374755,0.020312248,-0.07488118,0.046485804,-0.039366595,0.07903304,-0.045835223,0.036825135,0.025347557,0.012553157,-0.03565008,-0.0003552022,-0.004443866,-0.023702983,0.08808,0.020155177,-0.057649944,0.06283312,0.08418287,0.038875937,-0.0029467556,0.00048330755,-0.048039816,-0.07724775,0.0861138,-0.01081482,-0.059217375,0.037326045,-0.019180765,0.0013338799,-0.019474294,-0.03699191,-0.0015111885,0.08852007,-0.07318033,-0.0828321,0.024674483,-0.06710359,0.012997911,0.041948102,0.04220417,0.06767972,-0.033248797,0.023006538,0.046706207,-0.05389848,-0.07430731,-0.010850887,-0.018410549,0.038196295,-0.081353135,-0.055792134,-0.101309665,-0.0063417275,-0.06421949,0.07501036,0.036623284,-0.007999297,-0.016098535,-0.024359498,0.062150814,-0.091929205,-0.014309489,0.05051165,-0.009023226,-0.00013428724,-0.027673753,0.0016354471,0.056241393,0.12309475,0.07268645,-0.02629417,-0.012002334,0.007041769,-0.08418908,-0.02245587,0.08442767,0.078733884,-0.09186745,0.052576706,0.02128039,0.024332905,-0.0070548733,0.08515525,0.051687855,0.0081989495,0.05824701,-0.00828532,-0.025679626,-0.019711165,-0.010745803,-0.004929086,0.017751714,-0.06777459,-0.050146382,0.045093626,-3.8353365e-33,-0.027847288,0.024075096,0.017609453,0.028468676,0.0739188,-0.054932356,-0.052351125,-0.029123385,-0.049916074,0.020099787,-0.047067598,0.014768142,0.012148677,-0.07244659,-0.033553362,-0.08379459,0.013018819,0.015748903,0.008470748,0.06850726,-0.014330221,0.058932435,-0.0009449171,-0.036624227,0.037139513,0.028041478,0.006373794,0.0009997528,0.08565575,0.045556087,0.024280524,-0.015666122,-0.030548768,0.027382877,-0.013939043,-0.017783985,-0.09584388,-0.046565697,0.0020082355,-0.03429819,0.044090267,0.013194114,-0.028498404,-0.024867246,-0.09710112,0.04418271,0.005589163,0.11371246,0.13548756,-0.028717943,-0.094053745,-0.0076738712,-0.07683752,0.001424666,-0.03742828,-0.04397292,-0.013677857,0.016264537,-0.003921508,-0.022673093,0.05204429,0.08756085,-0.01476826,-0.1123725,0.01064337,0.067750454,0.022324732,-0.0494455,0.0051228176,0.04633292,-0.04423092,-0.027554953,0.07470356,-0.013951412,0.067158826,-0.030063985,0.019596232,-0.056069892,0.017027095,0.03389773,0.00755846,0.028113797,0.029698366,-0.051444057,0.058734108,0.036753118,0.012635205,-0.07985057,-0.020054465,0.02980086,-0.08750101,0.02759254,-0.030890977,-0.00944767,-0.03958917,1.8983137e-33,0.16637951,0.061635368,0.03183927,0.066153355,0.055921696,0.050196953,-0.06553143,0.09709114,0.028463464,0.12896022,-0.043592088,0.0011012624,0.0189841,-0.02032235,-0.024485897,-0.06634657,0.053764243,0.04815188,0.026309948,-0.04481818,-0.046098996,0.025868624,0.034831364,0.029116413,-0.026169272,0.036329977,0.048945636,0.0071368497,0.048640255,-0.04594783,-0.01086915,0.04864776,-0.03125349,-0.030478355,-0.053321835,0.032190874,0.036760464,-0.077674024,-0.09354094,0.044167202,-0.09205646,0.08356671,-0.0114841405,0.07329525,0.004203251,-0.033641137,0.027570235,0.15252905,-0.02542017,0.06384207,0.035914224,-0.050287694,0.0019461816,-0.01945243,-0.04013866,-0.06485107,0.04603012,0.0018668557,-0.01628526,0.03539656,-0.09738695,0.0471253,-0.043751363,0.0061079357,0.05829542,-0.0014648869,0.011931784,-0.048975307,-0.06067212,0.035998244,-0.10172934,-0.04156225,-0.034438044,-0.0051488904,0.022580193,0.017629193,0.02391784,-0.04973064,0.008561336,0.028741306,-0.0496542,0.038087092,0.040909726,0.032160856,0.026905151,0.005210463,-0.040668827,0.016306987,-0.0035654448,0.008604011,0.087954596,0.094963476,-0.033799015,0.03507941,-0.080083296,-1.8161597e-08,-0.010820552,0.09907483,-0.09100069,-0.0064584706,0.012771748,-0.054898817,0.0619977,-0.033171937,-0.00300295,0.03918489,0.047658592,-0.050581556,-0.04902295,0.040946193,-0.046829995,-0.08829541,-0.033644732,0.0650554,-0.007513821,-0.012938019,0.028180238,0.0052816565,0.08540687,-0.043916315,0.033681065,-0.036629844,-0.027594022,0.04206012,-0.0060197664,-0.025795292,0.018363561,0.12832952,-0.021166958,0.015703296,0.028571753,-0.024072373,0.0019093335,0.07829553,-0.015285208,-0.04803055,-0.027972579,-0.0767509,-0.077234514,-0.014900441,-0.015896998,-0.035887532,0.025509184,0.0062462655,-0.12006906,-0.030365102,-0.023791134,-0.09856189,-0.007853935,0.013224739,0.050356664,-0.003962701,-0.042777482,0.008212843,-0.0759102,-0.039076563,0.0038960476,-0.057037536,-0.037053872,0.028890058} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.965183+00 2026-01-30 02:01:09.616761+00 22c747a6-b913-4ae4-82bc-14b4195008b6 289 google Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB 1 t 292 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Im Urlaub angekommen , erstmal an die Arbeit machen die Autovermietung zu finden. Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder , Auskünfte über die Autovermietung clickrent am Flughafen, haben wir uns dazu entschieden uns selbst auf die Suche zu begeben. Damit angefangen haben wir uns erstmal am Flughafen durchgefragt und wurden in sämtliche Himmelsrichtungen geschickt um dort im Endeffekt keinen Shuttlebus aufzufinden. Aber mit der Zeit wurde unsere Herde der Suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 Rumirrende die auf der Suche nach Clickrent waren. Nach gerade mal anderthalb Stunden haben wir den Abholort vom Shuttle am Flughafen entdeckt. Wie schon geahnt ist dieser wirklich auf keinste Art und Weise ausgeschildert. Aber wir wollen uns ja nicht beschweren, wir sind nicht wirklich im Urlaub , wir sind durchweg Pfadfinder . Bei der Autovermietung angekommen mussten wir schockierend feststellen dass es auf Gran Canaria Schlangen gibt . In dieser reite sich unsere Herde weitere 30 Minuten ein um anschließend eine super günstige Kaution von 2000€ zu zahlen. Über das Auto ansich kann ich nichts negatives sagen . Die Rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine Schlange aufzufinden war . Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob man es rechtzeitig zum Flieger schafft , kann ich nur ans Herz legen , entscheidet euch für clickrent . Persönlich hatte ich noch nie so ein unbeschreibliches Erlebnis bei einer Autovermietung im urlaub angekommen , erstmal an die arbeit machen die autovermietung zu finden. da es keine wegbeschreibung seitens der autovermietung gab oder irgendwelche schilder , auskünfte über die autovermietung clickrent am flughafen, haben wir uns dazu entschieden uns selbst auf die suche zu begeben. damit angefangen haben wir uns erstmal am flughafen durchgefragt und wurden in sämtliche himmelsrichtungen geschickt um dort im endeffekt keinen shuttlebus aufzufinden. aber mit der zeit wurde unsere herde der suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 rumirrende die auf der suche nach clickrent waren. nach gerade mal anderthalb stunden haben wir den abholort vom shuttle am flughafen entdeckt. wie schon geahnt ist dieser wirklich auf keinste art und weise ausgeschildert. aber wir wollen uns ja nicht beschweren, wir sind nicht wirklich im urlaub , wir sind durchweg pfadfinder . bei der autovermietung angekommen mussten wir schockierend feststellen dass es auf gran canaria schlangen gibt . in dieser reite sich unsere herde weitere 30 minuten ein um anschließend eine super günstige kaution von 2000€ zu zahlen. über das auto ansich kann ich nichts negatives sagen . die rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine schlange aufzufinden war . aber jeder der im urlaub pfadfinder aktivitäten sucht und zum schluss noch nervenkitzel braucht ob man es rechtzeitig zum flieger schafft , kann ich nur ans herz legen , entscheidet euch für clickrent . persönlich hatte ich noch nie so ein unbeschreibliches erlebnis bei einer autovermietung 1 2025-11-26 01:27:48.340852+00 de v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder, Auskünfte übe", "O1.01": "Über das Auto ansich kann ich nichts negatives sagen. Die Rückgabe hingegeben dauerte ebenfalls sehr", "R1.01": "Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob m"} {-0.05948395,-0.0035125173,-0.05417993,-0.04839646,0.016294574,0.019428397,0.13193977,0.05730528,-0.07537292,-0.02844374,0.035658758,-0.00067184475,0.060346752,0.0050916015,-0.025942257,-0.036300343,0.011383615,-0.08099372,-0.06827933,0.014643672,0.0054956013,-0.02331905,0.009836903,0.078129426,-0.074486285,-0.101304926,-0.06415529,-0.062514804,0.022966528,-0.0069409185,-0.027575232,0.0128721325,-0.015024216,0.018604333,0.051026355,-0.0007999358,0.03733729,-0.054947753,-0.020996774,0.034012992,-0.012080152,0.03933189,-0.03574006,-0.06427459,-0.011987623,0.0033873909,0.041530445,-0.046627514,-0.022806818,0.018885033,-0.10308266,0.01925864,0.03821408,-0.05719278,-0.003155224,-0.05983835,-0.069477595,0.0110318065,0.02279118,0.005675363,0.027604314,-0.06327497,0.004765057,-0.03701997,0.0027718393,0.042751387,-0.09096227,-0.03584248,0.11287803,-0.006161362,-0.0539695,-0.0769843,-0.09244831,0.007710065,0.03012921,0.029312933,-0.06275302,0.07665078,0.0049437205,-0.13505237,-0.00039171032,-0.043630276,0.074207775,0.014736836,-0.020233212,-0.0592612,-0.019437296,0.08167166,0.046015654,0.04603149,0.049674213,0.020785399,-0.07968826,-0.004287426,0.087865435,-0.05091928,0.017248692,-0.043502565,0.024814475,0.011907977,0.07080777,-0.034411397,0.017015161,0.03262418,-0.026635382,-0.013564426,-0.08116984,-0.021023814,0.058380272,0.015099454,-0.123606436,0.013909108,-0.006084917,-0.11033634,-0.06438886,0.00029441452,-0.043256994,-0.1074639,-0.06506125,-0.032487806,-0.038002715,-0.06367502,0.077930205,0.009046168,0.11738987,0.042866,0.037642743,2.2617618e-32,-0.06506561,-0.038591485,0.0012071277,-0.02201248,-0.026330698,0.026784627,-0.013336426,0.033378772,0.064886406,-0.021702198,-0.026901327,0.072941996,-0.04277073,-0.020645289,0.058260143,-0.12365479,0.024343194,-0.06160103,0.057213817,-0.10568234,0.005558375,0.058401793,-0.028006889,-0.025388293,0.062866084,0.018074645,-0.009424288,0.016457308,-0.024772033,0.09268987,0.023305127,-0.019984515,-0.058720354,0.048557993,-0.020416223,-0.06531368,-0.03731087,-0.017466817,-0.032315444,-0.15344334,-0.028527582,-0.01092754,-0.025777072,-0.019990865,0.018189402,-0.048024513,0.02991138,0.013710796,0.06873402,-0.02313863,-0.027315348,0.030523155,0.06568377,-0.062155757,0.0037862943,0.10598265,-0.027954586,0.057243455,-0.014465858,-0.028652906,-0.016597863,-0.023850525,0.05151151,-0.025013944,0.09422217,0.08519212,0.07081273,-0.040964495,0.049455177,0.10710128,0.018555827,-0.07679662,0.061739523,0.015406169,0.03814941,0.03853013,0.014410357,0.017384939,-0.084277615,0.009999413,-0.07364878,-0.024980918,0.059645984,0.00037993025,0.03155366,-0.05952709,0.056232866,-0.016375596,0.026519256,0.10735666,0.006720306,0.041123148,-0.018444434,0.1076541,0.036450803,-2.3091279e-32,0.047776103,0.06502289,-0.061154593,-0.012165213,-0.01735441,0.024519626,0.01781847,-0.022374364,-0.022563951,-0.028873496,-0.064476445,0.009981766,0.016362555,0.032761402,-0.06395532,0.036978845,0.061751097,0.0016632049,0.0016191828,-0.0058826287,-0.0050922097,0.008385918,-0.047553904,0.02604832,-0.038661513,0.016662467,-0.038903266,0.07742756,-0.0477074,-0.0172448,0.069794334,0.08310358,-0.0019330144,0.024440287,-0.059655044,-0.08061635,0.06573308,0.083688796,-0.05336939,-0.044243526,0.009287018,-0.005416897,0.0010675829,-0.082498625,0.061378974,0.0028494752,-0.043089464,-0.039577886,-0.03426323,-0.043783754,0.0075555574,0.018200193,0.021890005,0.0016313801,0.014805314,0.04278138,0.06726505,-0.08692549,-0.06190695,0.022419492,0.08152371,0.028323637,-0.042487558,-0.07447168,0.00070221425,-0.13026728,-0.02428604,-0.021136025,-0.03574424,0.03787303,0.08228813,0.025475178,0.000803886,0.052417178,-0.003497636,0.06463946,0.101452105,0.025843948,0.01934489,-0.030726198,-0.07357926,0.075847685,0.031035854,0.014528634,-0.19785762,-0.024184592,0.023140995,-0.0024417087,0.01976846,-0.0048453137,0.0015592142,-0.0033449437,0.038275752,0.031574093,-0.03256158,-7.7480884e-08,-0.006410471,0.0060273525,0.0141552575,-0.009317489,-0.0066988165,-0.065390386,-0.05002837,0.12646918,-0.08836641,-0.0034126593,0.016255928,-0.06327155,-0.056704234,0.06373163,-0.11663921,-0.051782615,-0.0020469537,-0.0031780028,-0.041038554,-0.020903613,0.048860207,-0.05525765,0.02011251,-0.07170445,0.012747799,-0.001887104,-0.029330201,-0.070890516,0.007986121,0.04578095,-0.04669339,0.012487525,0.012529221,-0.016373558,-0.12964155,0.008110328,0.011485072,-0.020900937,-0.061711304,-0.010249234,0.11284543,0.0099042365,0.010848191,-0.03657846,-0.012752541,-0.005438179,-0.0013505843,-0.056795873,0.017505933,0.055938482,0.0056212265,-0.014496859,0.028439078,0.03798497,0.05578264,-0.003715509,-0.02133284,-0.06813853,0.08091155,0.031685773,-0.028681137,0.012931032,-0.06289196,0.0050423094} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:22:42.55836+00 2026-01-25 01:27:50.832305+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 294 google Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB 1 t 297 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. Bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. Goede medewerkers, vooral Antonio is heel vriendelijk. heel tevreden van de service en de auto. ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. goede medewerkers, vooral antonio is heel vriendelijk. 5 2025-11-26 01:27:48.340876+00 nl v5.1 A1.01 {O1.01} V+ I2 CR-N {Antonio} {"A1.01": "Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset)", "A1.02": "Goede medewerkers, vooral Antonio is heel vriendelijk."} {-0.1402164,0.07330937,0.039819255,-0.09086073,-0.10777898,0.02565233,0.09170527,0.09654098,0.050822236,-0.0160994,0.06509697,0.08777114,-0.016835643,-0.05908474,-0.04745113,-0.07141686,-0.03186445,0.10694977,0.015675452,0.0069667078,-0.025548136,0.0101182265,0.019817982,0.026080044,-0.044761032,0.047479495,0.06039397,0.008053112,-0.0045592804,-0.032109205,0.075095005,-0.044455178,-0.040557858,0.06608728,-0.015685864,0.07455947,-0.0513726,0.0326453,-0.019310521,0.099059075,-0.0050991415,-0.11983012,-0.1143346,-0.11710789,0.087506235,-0.008414367,-0.033344045,0.004187391,-0.04510931,-0.011522616,-0.010493472,-0.00018010336,0.084114715,0.0042839525,0.010346357,0.009789509,0.023275562,0.052706532,0.043890726,0.012285746,0.05527855,0.017799744,-0.071342304,0.022979306,-0.038128603,-0.0075690653,-0.055810396,-0.025371823,-0.085429505,0.07984612,0.029397773,-0.0033361348,0.018370729,-0.024792464,-0.030535696,0.01913277,-0.050745897,-0.08797063,0.0005983144,-0.01690659,0.061343946,-0.01958818,-0.033268373,0.014270003,-0.03503776,-0.0020849768,0.018635603,0.020962227,0.08319119,-0.012209879,-0.010093691,0.017599754,0.012198746,-0.040599607,0.04104615,-0.0014525672,0.014588909,0.011204565,0.015584749,0.023149587,0.062459696,-0.038414933,0.013875753,0.049435508,-0.10955984,-0.03283479,0.05558726,0.03498123,0.041203283,0.026587829,-0.026376735,-0.06590153,0.0077807307,-0.06927999,-0.019783111,0.023611307,-0.07362182,-0.069399424,0.03660181,-0.017869053,-0.0055450886,-0.014521282,0.01079848,0.042714167,0.055866767,0.07502732,0.08084116,1.422422e-32,-0.052718893,-0.01891518,-0.0024441783,-0.022397812,-0.032331098,0.0076337038,-0.11065844,-0.043624356,-0.034771662,-0.042046394,-0.073169425,0.10299472,-0.040673766,-0.0011562825,-0.071335636,0.01820191,0.030101709,0.05011696,0.04924882,-0.085426286,0.052347332,0.018789928,0.032302093,0.06950231,-0.03089512,-0.044637658,-0.012625468,-0.05802175,-0.058284447,0.016276522,-0.010766064,-0.046727516,0.06819902,0.011806703,-0.042907618,0.023997828,0.0024695222,0.020078002,-0.07597721,-0.08974111,0.030206848,-0.02769898,0.05196447,-0.0076629147,0.021154238,0.06717703,-0.010678974,0.025784407,-0.0051447195,-0.001531469,0.02320056,0.025805961,-0.06346498,-0.0595157,0.008328587,0.071286485,-0.038045008,0.115907505,0.06576705,-0.030629503,0.003347479,0.042461,0.045632366,-0.031452037,0.037010584,-0.023662487,0.03784497,0.008414995,0.029150091,0.031744525,-0.056810766,0.0027364015,0.020055521,0.038353752,-0.0006975392,0.09490414,-0.010703047,-0.022451932,-0.075962745,-0.00191984,-0.17155613,-0.096054174,-0.058992516,0.0081488425,0.09494356,-0.016101968,-0.005260493,-0.063350864,0.0029622407,0.149794,0.03282959,0.015768101,-0.01817784,0.025168054,0.01555577,-1.3586475e-32,-0.011034693,0.06757969,-0.041590605,0.0570705,0.006207364,0.026305461,-0.047983143,0.017699553,-0.021339493,-0.03303907,0.012074771,-0.074681744,0.059844296,0.010553495,-0.07677576,0.012922882,-0.010733503,-0.019862311,0.0018525574,0.02088211,0.0009055937,0.034246653,-0.0007157378,0.09078426,-0.012954397,0.016777651,0.079550184,0.09922563,-0.09883738,-0.051887963,0.074422814,-0.059429776,0.018095408,0.07544476,-0.038243286,0.11388216,0.0043729935,0.03464606,0.0011477306,-0.02728218,-0.0040800953,-0.067912795,-0.063652195,0.0019360663,-0.008932247,-0.06313241,-0.04027443,-0.07224388,0.018714579,-0.07134738,0.006455268,0.060155213,0.05143225,-0.025974546,0.024881955,0.05415663,0.029084038,-0.045794718,-0.07654147,-0.0028329303,0.06700839,-0.042853966,0.09116615,0.0072536566,0.05298978,-0.07821317,-0.09930308,0.039250832,-0.033358198,-0.013731728,0.09112075,-0.0027987233,-0.06435354,0.009643463,-0.010919785,-0.09767507,-0.03870199,-0.0065029953,-0.02103566,-0.08172277,-0.08295941,-0.0633143,-0.046975393,-0.00557691,-0.101990536,0.067163214,0.03794553,0.000997233,0.04626322,0.02568289,0.007562008,0.050263703,-0.0550148,0.014702463,-0.078895584,-5.0247206e-08,-0.013081877,0.01273098,0.06377288,0.032602422,0.0768878,-0.12348499,0.07009724,0.024009332,-0.094699465,0.06298726,-0.016362943,0.004752513,-0.025870726,0.0019323861,0.051551614,0.057967685,-0.04875219,0.042887386,-0.039812315,-0.06313889,0.032626446,-0.026334208,-0.020106865,-0.015689574,0.0038368332,-0.0054841274,0.06227235,-0.038654234,0.07551518,-0.03651954,-0.0077326726,0.04538288,0.0066306223,0.010404258,0.0017641087,0.045436993,-0.07970454,0.009334897,-0.062587395,-0.030843163,0.034112502,0.03982861,0.027654722,-0.03318855,-0.1335563,-0.014265203,0.030742554,0.023378944,0.05199978,0.013442626,-0.07682839,0.016753817,0.029223332,0.088352785,0.04562255,-0.0129081905,0.013840125,0.0050180317,-0.069708854,0.020963805,0.0057554534,0.03205739,-0.019110085,-0.037697293} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:21:59.341164+00 2026-01-25 01:27:50.851336+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 283 google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB 1 t 286 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. De hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un Seat Ibiza, pero bueno. Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la simpatía de verdad. Miró el coche, y todo perfecto. Mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. Lo dicho, muy cercana. Gracias Mery. Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial, un Seat Ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. Perfecto todo. la verdad que una experiencia bastante buena. iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. de hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un seat ibiza, pero bueno. al volver, lo dejamos a la hora y me atendió una chica llamada mery, muy simpática, se agradece la simpatía de verdad. miró el coche, y todo perfecto. mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. lo dicho, muy cercana. gracias mery. y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. la verdad que si vuelvo a la isla reservaré con esta compañía. gracias. por cierto, el coche genial, un seat ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. perfecto todo. 5 2025-10-27 01:27:48.340834+00 es v5.1 R1.01 {} V+ I2 CR-N {Mery} {"J1.01": "Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos,", "J1.02": "Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer", "O1.01": "La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial,", "P1.01": "Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la s", "R1.01": "La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de qu", "V1.01": "Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía qu"} {-0.010170967,0.06893639,-0.0538703,-0.052328594,-0.052481275,-0.03022696,0.13939108,0.05038023,0.02893801,-0.010592224,0.13847889,-0.023522228,-0.016666915,0.058179908,0.06287377,0.018993067,0.038788747,-0.00045564992,-0.02615552,0.05340628,0.070811994,-0.06806358,-0.04517752,0.08141851,-0.120932475,-0.008377745,-0.030954149,-0.01805489,-0.06804642,-0.05650467,-0.0009850183,0.032791406,0.055817753,0.010810557,-0.025762135,-0.008383137,0.09431973,-0.039854344,-0.03724916,0.09463141,-0.095420256,0.024495622,-0.048847515,-0.07222407,0.012359745,-0.026859432,0.09945315,0.08925456,0.0029859832,-0.062078513,-0.021512164,0.04705866,-0.08012008,-0.037321445,0.023370316,-0.026648974,0.019192211,0.014947758,0.07252095,0.022869589,-0.022395141,-0.042112045,-0.021550998,0.0047414317,0.009705189,-0.038157843,0.026323514,-0.023210471,-0.079157956,0.1050571,0.0386861,-0.09790513,-0.049043875,0.031516217,-0.025811424,0.075358376,0.058762368,0.017859656,-0.03894801,-0.04756047,-0.026557045,-0.055473566,-0.023400575,-0.06916127,-0.021885822,-0.022759834,-0.030305034,0.05575105,0.09056042,-0.035459574,0.051078342,0.11162566,-0.09606077,0.00578393,0.020457467,-0.009405941,0.0136407,-0.027991273,-0.061323896,0.029851733,0.11417368,0.078167856,0.07792819,-0.0069691543,0.034865893,-0.019565145,0.07072021,0.036564544,0.018706182,0.07983373,-0.05231711,-0.03275439,-0.059467502,-0.082255416,-0.061891768,0.0030057356,-0.030893056,-0.029389555,-0.0035505642,0.014911488,0.007446776,-0.005870449,-0.011271957,-0.0068166754,0.0531416,-0.069237255,0.028817687,1.5735785e-32,0.00020054137,0.024917295,0.014353923,-0.007689996,0.008454028,0.052572966,-0.02298132,0.009285454,-0.016770875,0.01690153,-0.061734095,0.041975275,-0.006486445,0.055278692,0.061913725,0.014010155,0.018329661,-0.026521556,0.021456553,-0.007266157,0.01377449,-0.03421636,0.028860155,-0.014340579,0.011931664,0.054984704,-0.0102856085,-0.013892292,-0.029985348,0.039238665,0.016142732,-0.023275036,0.036573336,-0.05009957,-0.042828135,-0.042301252,0.03860816,0.005056091,-0.03290692,-0.07383318,-0.07887705,0.034326833,0.017062005,0.09424895,-0.024545161,0.01174528,0.065846704,0.04842299,-0.004206777,0.0062339986,-0.02825413,-0.046827324,0.0034410004,0.0112770945,-0.07556706,-0.010474057,-0.08347986,0.014245018,-0.0065942593,-0.03563318,0.03190051,-0.003967123,0.012058106,-0.017761104,-0.010158367,-0.034984093,-0.013917165,0.04237522,0.18524285,0.028900357,-0.023383081,-0.029993758,0.040909305,0.020161511,0.037487462,-0.015706304,0.05592636,-0.04661538,-0.039626278,0.02642342,-0.017159149,-0.09125747,0.030857474,-0.00390906,0.05276048,0.10214467,0.059384592,0.015912667,-0.02527995,0.13255048,-0.07077982,0.11774011,0.07640951,-0.031805623,0.075408764,-1.520431e-32,-0.0032673774,0.024599912,0.0009026274,-0.023758436,0.023054117,0.023980442,0.009288789,-0.024003895,-0.017693432,-0.111351505,-0.09888499,-0.09344991,0.08963684,-0.013236973,-0.080214866,0.03971042,-0.030606028,-0.11908152,0.03558013,-0.033934515,-0.024417039,0.028038407,0.04966634,0.052876215,-0.028625976,-0.041839488,-0.019572604,-0.03342579,-0.09024503,-0.025831463,0.05834938,-0.022224795,0.055850588,0.08079208,-0.05644126,-0.032450628,-0.017040975,0.052076217,0.03882194,0.044534933,-0.012642102,0.067561276,-0.012710535,-0.067730956,-0.018857205,0.018552162,0.017722461,-0.15581891,-0.043778863,-0.0057346877,0.114121534,-0.02998519,-0.06571155,-0.0023627277,0.033634666,-0.00805197,-0.03890718,-0.08605684,-0.111802466,0.01073255,0.02367572,0.010146314,-0.078987576,-0.0503681,0.12555179,-0.055235453,0.017804459,-0.0034031193,0.036162462,-0.0011120837,0.04770908,-0.013874841,-0.09149976,-0.02376122,-0.028627137,0.0177391,-0.045342833,0.010988844,0.009448421,0.0005902878,-0.041368507,-0.008817009,0.026727749,-0.031881317,-0.087020144,-0.017480215,-0.020531142,0.032796156,-2.4066825e-05,0.05591077,-0.04424844,0.014762097,0.032040376,-0.024700804,-0.048674088,-5.936587e-08,-0.01830246,-0.054724526,0.04004373,0.02426609,0.09246613,0.0016091041,-0.010082693,0.03305034,0.016890857,0.023344196,0.062526196,-0.030962791,-0.07060565,0.02607191,-0.025556419,-0.026973655,0.072983846,-0.018878344,-0.041195404,-0.053369053,0.052886855,0.012176268,-0.07821562,0.0044230446,0.010520068,-0.026420303,-0.033312578,0.031516038,-0.002394315,0.013546652,-0.057244614,-0.12801191,-0.0070771324,-0.07088898,-0.06285837,-0.07160111,-0.036028035,0.0005041342,-0.016849337,-0.006730108,0.13262914,-0.05418337,-0.027656138,-0.03232519,-0.098694175,-0.07181408,-0.049349017,-0.026378755,-0.008429444,0.0718112,0.022913402,-0.032331083,0.050378896,0.03501414,-0.021669108,-0.087354064,-0.01365868,0.008743107,0.0020600911,0.037631556,0.07503659,0.066610515,-0.03299178,-0.044666003} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-29 04:54:53.391773+00 2026-01-25 01:27:50.807962+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1380 google review_75 1 t 1383 Go Karts Mar Menor unknown Great set up, we did the Grand Prix. Really good, lap times, well organised, decent go karts great set up, we did the grand prix. really good, lap times, well organised, decent go karts 5 2025-07-04 00:52:39.833374+00 en v5.1 O1.02 {J3.01,E1.03} V+ I2 CR-N {} {"O1.02": "Great set up, we did the Grand Prix. Really good, lap times, well organised, decent go karts"} {-0.02196867,0.08110857,0.016160203,0.06886655,-0.12790771,-0.010631403,-0.06022652,0.007163179,-0.088533826,-0.02378658,-0.030029,0.08947511,0.024947606,-0.0032767693,-0.005170372,-0.081432104,0.06601033,-0.12462417,0.029815141,-0.036633287,-0.05013927,-0.067563295,0.03978798,0.02576676,-0.047564212,0.036620606,-0.0083197225,0.100646675,0.043369584,-0.007442602,-0.07924186,0.039967496,0.0314766,-0.003729233,-0.034680333,0.022200894,0.05099199,-0.13697867,-0.05009497,-0.040290292,0.0025365914,-0.034629986,0.021641945,0.048331022,0.023059933,0.07732487,0.038217008,0.0015575283,0.016767545,0.023826364,0.058626555,-0.031025391,0.032130487,-0.11690858,-0.021713726,0.0853767,-0.06751203,-0.06734991,0.008014587,-0.12242667,0.05165792,0.0025589936,-0.06504675,0.059923913,-0.045822375,-0.06745438,-0.06916666,0.038078994,0.03138555,-0.010490102,0.015367795,0.013192042,0.025083784,0.007883185,-0.012624815,0.09482273,0.0095770955,-0.05077085,-0.04810488,0.009738667,0.04813596,0.0025561238,0.017587366,0.013960274,-0.026802124,-0.15307774,0.053255305,0.043649454,-0.022969496,-0.081271514,0.06735267,0.054512322,-0.05322457,-0.010984242,0.0065565277,0.056752894,-0.03650242,-0.007628408,0.07722315,0.03817272,0.06355139,0.11435275,0.04953714,0.060439285,-0.07326371,0.048910405,-0.022705812,0.09748623,0.013168,-0.015672404,0.012236536,0.036642283,-0.010517133,-0.038795672,-0.041696828,0.045924623,-0.052397374,0.08758796,-0.0022001953,-0.001316234,0.0023739836,0.021488335,0.0127336625,0.067061216,-0.0026015402,-0.010661783,0.07518546,-7.604086e-34,-0.04277954,0.019915404,0.0055880104,0.03041952,0.007188058,0.025151545,-0.046866078,-0.10476854,-0.061244335,0.053262994,0.02475961,0.053433947,0.003095455,-0.023018546,0.054745797,0.013663793,-0.06285214,-0.024198316,-0.070347205,-0.009013262,-0.025255255,-0.028806878,0.03196313,0.0007219257,0.05290482,0.08789021,0.019045696,-0.045756437,0.007951149,0.0060788975,-0.0490414,-0.012675566,-0.043345377,0.045415413,-0.008943177,0.04457316,-0.062056985,-0.06480157,-0.018865034,0.07379764,0.028219394,-0.03077332,-0.009859331,-0.014385686,-0.050552327,0.055201836,-0.024678646,0.06641507,0.057301417,-0.014198855,-0.13897385,-0.031520326,-0.09341781,-0.031367484,-0.04139732,0.04404189,0.04457042,-0.019449923,-0.034657266,-0.022095058,0.044612393,-0.0011156928,-0.041856974,-0.06768868,-0.10110816,-0.03548426,-0.012145036,-0.051365077,0.026295947,0.02833076,-0.072756894,-0.009012446,0.003197672,-0.029768873,0.07808458,0.05352277,-0.048809063,0.015935,-0.091189735,0.06618889,-0.00056793744,0.060182746,-0.027770411,-0.016679576,0.08989667,0.030001432,-0.044388756,-0.03185188,0.0065589226,0.03288276,-0.100697696,0.012415476,0.06041241,0.041577827,0.006593822,-9.2150455e-34,0.03429752,0.080964044,0.10051287,0.053485446,0.07200067,0.01629087,-0.025939127,-0.04364263,0.0178268,0.090073906,-0.0019368466,0.07397201,0.025746852,-0.02325781,-0.082500234,0.008552363,0.09473894,-0.013660562,0.013418825,-0.07501704,-0.01346007,0.026336668,-0.024406401,-0.047813725,-0.037088674,0.038084235,-0.046549994,-0.037037443,-0.041652523,0.024788411,-0.039964017,-0.020183219,-0.053983524,0.016714867,0.03110742,0.084447645,0.043476425,0.05916015,-0.045673467,0.021953482,-0.002510259,0.009397337,-0.03924119,0.06257134,0.01444448,-0.034193452,0.0105249565,-0.034565073,0.0034188544,-0.0433592,0.0061009545,0.016789816,-0.102122195,-0.045676857,-0.0051240306,-0.07668127,0.08731475,-0.026615676,0.0050903624,-0.021491135,-0.08125649,0.022753341,-0.04581188,0.022387074,0.038598802,-0.040985886,0.0062075583,-0.042748556,-0.047824632,0.010245166,-0.099833794,0.019193454,-0.012311118,0.028241897,0.004674887,-0.045777857,0.017401867,-0.014786921,0.035339415,0.036663976,0.048961725,0.030455738,0.009558371,0.025517898,0.0365267,0.09148413,-0.044983555,0.018772228,0.033743575,0.026459053,0.072289474,0.081486866,0.041148983,-0.018437492,-0.039800778,-2.0783759e-08,0.014011614,0.11396171,-0.05095362,0.06322661,-0.048422057,-0.10039678,0.003955154,0.059490073,-0.04578053,0.038742952,-0.03375981,-0.0114804115,-0.014509334,0.036644008,0.035724945,-0.039936807,-0.010098703,0.20976597,-0.039455418,-0.010651924,0.032219276,0.044239964,0.0018042537,0.060636595,-0.0021318009,-0.07330714,0.04164248,-0.009975263,0.025356188,-0.012712996,-0.0049329293,0.042215735,-0.029024169,0.018486055,-0.03757031,-0.081151396,-0.027939793,0.07819033,0.08535787,-0.037842073,-0.029893221,-0.049423836,-0.06862345,0.02499656,-0.0009882898,0.033878136,-0.09230052,-0.026987819,-0.068112716,0.012410241,-0.039842743,-0.0024063273,-0.016532188,0.10321119,0.08684365,-0.027446564,0.017122686,-0.05620382,-0.008360402,-0.02584728,-0.08870191,-0.042884078,-0.09664445,0.023256294} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.300204+00 2026-01-30 02:01:09.17534+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1377 google review_72 1 t 1380 Go Karts Mar Menor unknown Class experience, great staff, great track. Couldn’t ask for more. class experience, great staff, great track. couldn’t ask for more. 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {P1.01,O1.02} V+ I3 CR-N {} {"V4.03": "Class experience, great staff, great track. Couldn't ask for more."} {-0.04125395,-0.019153122,0.025361206,-0.015918298,-0.034109734,0.03049363,-0.029834844,0.01969563,-0.026311316,-0.04211682,-0.06116232,0.0436336,-0.023483718,-0.048085812,-0.073385626,0.017664285,0.036250796,-0.018114062,-0.019925091,-0.035527337,-0.008426309,0.013116668,0.020826574,0.08950612,-0.14183034,0.06441039,-0.03439018,0.07019771,-0.058125276,-0.048429463,-0.12858278,0.036795303,-0.0020132682,0.0034363181,0.019906553,0.07190546,0.029918782,0.05213292,-0.01972545,-0.0022384028,-0.07190099,-0.03732133,0.037695345,0.026514277,-0.01631733,-0.019883204,0.0061040153,-0.111392476,0.035309017,0.007929792,0.024771469,-0.043202233,0.0008847394,-0.087466985,-0.0321163,0.0577194,-0.007822493,0.016343242,-0.030677652,-0.025186416,-0.060220193,-0.033013437,-0.06109577,0.0721652,-0.005261329,-0.03734383,-0.13300717,0.10259079,0.01693047,0.025393423,0.006034604,0.0157139,0.021192638,0.0026567315,0.0328359,0.058634453,0.0036338842,0.005463396,-0.016804101,-0.006040453,-0.0027996004,-0.054727197,0.042737164,-0.041598644,0.053642407,-0.11415425,0.055898115,-0.02749724,-0.05953859,0.00465793,0.056845434,0.10502467,-0.035492554,-0.058981728,0.023952259,0.0617091,-0.04211609,0.0036751605,-0.009789825,0.036716606,0.04008826,0.07196256,0.02788709,0.00081266585,-0.084958054,-0.020806901,-0.03692221,0.07105699,0.012347034,-0.04509742,0.06345673,-0.027204806,-0.08726721,0.0041279513,0.08320553,0.025090754,-0.003941565,0.061035827,-0.008739278,0.009086008,-0.0070469156,0.048857305,-0.025959479,-0.006810731,-0.10366281,-0.053644855,0.05685013,-3.2082198e-33,0.045412935,0.035599567,0.013046201,0.018555073,0.092888206,-0.0052813073,-0.07079034,0.04546696,-0.05467056,0.053443275,0.052370895,0.050138455,0.042148806,-0.021771867,0.06502996,-0.009200514,-0.14970765,0.018274935,-0.04634102,0.087569036,-0.047337014,0.02490122,0.017917773,-0.050388575,0.06798006,0.04969399,-0.0035678947,-0.024674483,0.079436176,0.009681648,-0.016181929,0.0016107175,-0.019582266,-0.03009855,0.015332533,0.059578527,-0.078014806,-0.049715657,0.048298232,-0.06841728,0.046307653,-0.021150965,0.025701031,0.0028421371,-0.09565673,0.06550307,0.05947348,0.048453506,0.05830309,0.0030918424,-0.090194866,-0.06485718,-0.047840405,-0.020515885,0.0615525,-0.03214128,0.09809254,0.11573533,-0.034256186,0.0001147469,0.06415154,0.11738617,0.019418761,-0.06015388,-0.026257848,-0.08315911,-0.032601938,-0.071282476,0.13802707,-0.019601747,-0.027154181,-0.04126221,0.008210453,-0.017302588,0.01957546,-0.013865551,-0.07269155,-0.0056853727,0.0006667646,-0.015324365,-0.04451261,-0.04308097,0.019616552,-0.036788587,0.04305764,0.03511986,0.058750495,-0.098126106,-0.042560767,0.057453062,-0.011646385,0.0146683,-0.01970789,0.052156564,-0.04590765,1.1839785e-33,0.07208623,0.09645388,0.07500457,0.053771187,0.06191212,0.08566116,-0.062344793,0.07329201,0.039400406,0.09591269,0.021522496,0.048064094,-0.028598731,0.012516373,-0.10467406,-0.06771381,-0.0029967276,-0.02735147,0.02919203,-0.077872224,0.037748657,0.08714728,-0.0014311937,0.053713165,-0.027048843,0.0034425133,0.0035522203,-0.028506098,-0.042658858,-0.039327107,-0.0034002396,0.03784898,-0.028888226,-0.0040462865,-0.06349376,0.09957458,0.064906836,0.054679282,-0.056855876,0.097913034,0.0066910004,-0.059471566,0.035270497,-0.015744325,0.0049328785,-0.03850336,0.024921443,0.1210736,-0.029313188,0.018432546,-0.09808762,-0.02691378,-0.044922993,-0.010789812,0.017239414,-0.030065611,0.08606518,-0.12919617,-0.02186077,-0.028322259,-0.057905626,0.06877063,-0.048435517,0.047551554,0.049875997,-0.014042699,-0.032332826,-0.020742537,-0.14867105,0.027857551,-0.06287939,0.01630045,-0.008140457,0.028105505,-0.08214813,0.027741393,0.021024166,-0.044667616,-0.033998493,0.055772837,-0.05564699,-0.026643896,-0.010413292,0.024848552,0.037595596,0.14563683,0.013070988,0.01829459,0.054578964,0.04184478,0.079944044,0.047458764,0.01861637,-0.020720359,-0.05788955,-2.160771e-08,-0.036927737,0.12434904,-0.027025126,-0.039424542,0.02390342,-0.030776694,0.016128182,0.013948685,-0.046903756,0.026307095,0.030208087,-0.03141731,-0.0196758,0.02252852,0.069510594,-0.01578778,-0.04942935,0.12899078,-0.03221963,0.0011161205,0.024041273,0.0049216417,-0.012740641,-0.0040541925,0.035066515,-0.01230268,0.05707891,0.04141168,-0.042397812,-0.012399746,-0.010717055,0.09138458,0.006367931,-0.046230353,0.035229083,-0.041808926,-0.046159055,-0.019197062,-0.02796449,0.0074975486,-0.068186976,-0.0034086586,0.004621379,0.0037019993,0.058976445,-0.0087205935,-0.012917759,0.009615401,-0.021219859,0.027949918,-0.03849007,-0.039291292,-0.0602435,0.02234959,0.030785039,0.012100639,-0.015902521,-0.0021587557,-0.05744614,0.001416447,0.0047187475,-0.036451224,-0.061664302,0.07432034} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.750389+00 2026-01-30 02:01:09.162298+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1379 google review_74 1 t 1382 Go Karts Mar Menor unknown Very well organised and very efficient at getting players on and off with little fuss. very well organised and very efficient at getting players on and off with little fuss. 5 2025-08-03 00:52:39.833374+00 en v5.1 J2.01 {J1.01} V+ I3 CR-N {} {"J2.01": "Very well organised and very efficient at getting players on and off with little fuss."} {0.05667997,0.025375197,-0.035026725,0.029026728,-0.0016006181,0.04781748,0.019490123,0.0124294255,-0.030307157,0.07810951,-0.018079057,0.041377768,-0.030765584,0.024456523,0.02248317,-0.042426802,0.09575311,-0.14092761,0.0012352325,-0.091824226,-0.025679022,-0.07274669,0.016421597,-0.021525875,-0.01921435,0.03655232,-0.060515605,0.048170965,0.038824864,-0.045321483,-0.021303194,0.027466105,0.12957403,-0.021466972,-0.09237729,0.09506681,0.07781886,-0.03657919,-0.03220048,-0.016298683,-0.009142587,-0.02441863,0.019606272,-0.041139737,-0.034356374,0.018775878,0.010287504,-0.06395484,-0.044254124,0.013271042,0.030979475,0.010210628,0.032893065,-0.07697793,0.011905953,0.05332633,-0.06255358,-0.032608345,-0.008333644,-0.07660145,0.080038786,-0.0043244706,-0.06257839,0.04702539,0.06417558,-0.059708722,-0.048187483,0.049404185,0.02300805,-0.046459455,0.014898112,0.0037455654,-0.018067257,0.026426021,-0.010541893,-0.04095264,-0.02269402,-0.04942957,-0.018598923,0.02676475,-0.008726989,-0.018962117,-0.022624023,0.02610403,-0.0021873268,-0.10790232,0.022534322,-0.06343744,0.005342661,0.011598943,0.04323755,0.15212703,-0.0054582227,-0.027223425,0.06554482,0.08191315,0.041408416,0.012000143,-0.031178137,0.07116892,-0.0053090225,0.08911199,0.014984722,0.018894397,-0.07917413,-0.038287718,0.01274365,0.03339869,-0.06881626,-0.031466547,-0.07426414,0.0341039,-0.074060716,-0.030846396,-0.036766276,0.059908494,-0.039898053,0.061170798,-0.0016420723,0.0022665907,0.13503905,0.051085215,0.030043662,0.022227325,0.015614018,0.077928685,0.046195257,3.2176327e-34,0.0021943883,0.036623996,-0.0709785,0.05786194,0.019745838,-0.010373734,-0.047979016,-0.022908138,-0.024090469,0.08123561,0.024278978,0.052822173,0.04582562,0.015078965,0.12358261,-0.02555338,-0.023646878,0.056633197,-0.017304776,-0.0030106232,-0.024299374,0.062407296,0.04380509,-0.025137814,0.077933855,0.025393251,-0.020653896,-0.02673437,-0.04518685,0.040884748,0.021481631,-0.06119267,-0.13831893,-0.04050108,-0.013085672,0.060229663,-0.1348921,-0.067369625,0.033833362,0.0019846193,-0.05148599,-0.08654778,-0.025371911,0.0017656375,-0.07964612,0.054995075,-0.04025405,-0.04575122,0.040608097,-0.057069317,0.019273974,0.007814998,-0.013331273,-0.04489609,-0.022255234,-0.0013445532,0.018156977,0.05240073,-0.021676116,0.04840535,0.029457934,0.00066332734,-0.06380663,-0.006194773,-0.049118675,-0.03692672,0.0023284752,0.017838838,0.105728865,-0.02932522,0.0039707255,0.0016786937,0.03811125,-0.036288098,-0.020396354,0.047537908,0.023854565,-0.05286144,-0.0015250662,0.09355568,0.009750937,0.037278395,0.025034025,-0.084309295,0.016054591,-0.040545836,0.06397746,0.020644486,-0.0867052,0.0722346,-0.0018017343,0.030862836,0.04757773,-0.034475338,-0.015684085,-2.4614642e-33,0.012210278,-0.032175124,-0.0057101133,0.049354415,-0.032184903,0.028051728,-0.053946167,0.036352128,0.0046744607,0.082400165,-0.037930142,0.021021822,0.024802059,-0.081539206,0.003963329,-0.0140846,0.040818203,-0.041543186,0.023996197,-0.022489414,0.07511218,0.046396703,0.003369233,-0.053039044,-0.078584455,0.030541377,-0.1417502,-0.027270174,-0.12417598,0.008244786,-0.00089410105,-0.051464256,-0.03430121,0.0046915985,-0.048519544,0.062524006,-0.087391414,0.109154776,-0.034340385,0.087286234,0.008743065,0.024421966,-0.15360634,0.060867593,0.05105057,0.027765678,-0.014593756,-0.019894296,-0.037788767,0.06047898,0.051841754,0.045402903,-0.051911242,-0.07586022,0.01941894,0.0035055233,-0.042014092,-0.06373515,-0.027898625,-0.07635948,-0.012261173,-0.022181137,0.00044636178,0.11176192,0.010451523,0.0010094969,-0.07280997,-0.052610446,-0.039873157,-0.042674445,-0.028904544,-0.058348317,-0.020380449,0.096841484,-0.04390862,0.0432254,0.05844133,0.0111514665,0.041368913,0.051748525,-0.046656236,-0.028306942,-0.012481358,-0.045337785,-0.060994014,0.054278824,-0.011235542,-0.034146786,0.009394407,0.051169354,0.077832125,-0.013092047,0.013470219,0.055618804,0.048811417,-2.1049376e-08,-0.038102005,-0.07123587,0.09535613,0.03703756,-0.05974501,-0.12590136,0.025993325,0.046334293,0.011581658,0.07193268,0.040082254,-0.014627586,-0.05470802,0.028091209,0.02842692,0.06618768,-0.09159302,0.109185316,-0.09458141,0.06939095,0.023844387,0.05576463,-0.09039494,0.03912782,-0.0026012394,-0.040874857,-0.038945995,-0.06716549,0.027543541,-0.013039374,0.03786501,0.056811247,0.03623261,-0.020669462,-0.032443184,0.07016137,-0.01040893,-0.058481723,-0.03709051,-0.043011516,-0.018208833,-0.036439836,-0.040378183,0.05273202,0.079767734,-0.095068574,-0.055194654,0.06811962,-0.060288765,-0.057449866,-0.032213394,0.0769346,-0.028009249,0.04359718,0.022507193,0.009183271,-0.02233278,-0.018112078,0.03795211,-0.007321077,-0.0069809677,0.020591142,-0.016776875,-0.000109267756} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.793294+00 2026-01-30 02:01:09.172105+00 22c747a6-b913-4ae4-82bc-14b4195008b6 298 google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB 1 t 301 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. Dit informatiepunt was echter nergens te vinden. Meerdere mensen gaven aan dat we ter hoogte van de Spar moesten wachten en dat daar elke 10 minuten een busje zou komen. Na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien.\n\nWe hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. Na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto.\n\nEenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. Vervolgens kregen we te maken met onduidelijke en hoge kosten. We moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij ClickRent de schade zou dekken. Daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent.\n\nOok bij het terugbrengen van de auto verliep alles traag. Het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht.\n\nAl met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder op Gran Canaria. bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. dit informatiepunt was echter nergens te vinden. meerdere mensen gaven aan dat we ter hoogte van de spar moesten wachten en dat daar elke 10 minuten een busje zou komen. na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien. we hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto. eenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. vervolgens kregen we te maken met onduidelijke en hoge kosten. we moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij clickrent de schade zou dekken. daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent. ook bij het terugbrengen van de auto verliep alles traag. het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht. al met al een teleurstellende ervaring. de volgende keer kiezen wij voor een andere autoverhuurder op gran canaria. 2 2026-01-04 01:27:48.34089+00 nl v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus na", "P1.02": "Eenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. V", "R1.02": "Al met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder o"} {-0.11513845,0.10321099,0.05392382,-0.081372716,-0.06108054,-0.05046548,0.1790039,0.04797002,0.06660913,-0.021774782,0.04649988,-0.016347038,-0.0077926302,-0.011294362,-0.040275272,-0.001110443,0.041257314,0.048221868,-0.03385413,-0.009631029,0.07868343,0.03726369,0.02968995,-0.04182613,-0.029938677,0.035411708,0.017342672,-0.014155726,-0.013278664,-0.032011893,0.076848045,0.047000248,-0.021663414,0.020207245,0.0014374086,0.055313807,0.012823323,0.006115114,0.017137287,0.039514832,-0.002435597,0.0067750993,-0.10866253,-0.076866664,-0.016888479,0.019941144,-0.03609504,-0.033349678,-0.021637637,-0.008564154,-0.062558144,0.0328484,0.079431444,-0.028645644,-0.047593456,-0.088402905,-0.030111866,0.05093492,0.058756575,-0.0307343,-0.029307954,-0.034100614,-0.010810042,0.001660575,-0.009752643,-0.024739066,-0.06365263,0.022521101,-0.06988681,0.06395502,0.050855003,-0.021895396,-0.11257354,-0.053636823,-0.067052476,0.04854054,0.0031863307,0.015042817,0.0096525205,-0.09304176,0.035962943,-0.053944763,0.03521971,-0.0031127622,0.02681633,0.004061748,-0.00071229244,0.04141715,-0.02819291,0.012772053,-0.026050076,-0.033163603,-0.024193292,-0.025472833,0.0013278361,-0.04911055,-0.023684753,0.045486834,-0.008000846,0.041612085,0.06978001,0.066539995,-0.008408045,-0.0033555026,-0.13134217,-0.014047784,0.046974037,-0.035323452,0.1131907,0.055001654,-0.032658342,-0.04585668,-0.011478415,-0.10341461,-0.05114449,-0.031065367,-0.082032025,-0.036063086,0.06551484,0.025690408,-0.0075317067,-0.010304378,0.0026919607,0.07705814,0.032793038,0.024781106,0.08001348,2.4261035e-32,-0.07186362,-0.029684432,0.026222667,-0.014975421,0.058409914,0.0033284205,-0.061046157,0.012653049,0.010498388,-0.1153233,-0.06091625,0.0017187081,0.02083532,-0.03604205,-0.033602133,-0.03581631,0.020543164,-0.08713689,-0.0033066587,-0.02635658,0.024740186,-0.010358566,0.014652604,0.026653783,0.0218434,-0.05731546,-0.02707172,-0.05338459,0.045208063,0.040967435,-0.027353987,-0.041073926,0.01616269,-0.010414218,-0.07777768,-0.015500808,0.020462131,0.005303413,-0.025448628,-0.118753016,-0.012659724,-0.038412243,-0.014984174,0.039380066,0.0046431646,0.062371384,0.021197326,0.031326123,0.042616267,0.061972614,-0.018091839,-0.02857792,-0.012412061,-0.034214493,0.013006125,0.04341241,-0.0071599158,0.057143196,0.086442694,0.032476895,-0.023136722,0.09696982,0.06284606,-0.0037816728,0.07337665,-0.02745896,-0.0344395,-0.020759165,0.077923514,-0.013721402,-0.051347513,0.014295858,0.08013224,0.021845268,0.02069324,0.05101109,0.0021189158,-0.03782292,-0.090203464,0.058764726,-0.02595709,-0.065327555,-0.030732742,-0.036370292,0.05603749,-0.05041164,0.0042390306,-0.073159486,-0.06411527,0.15296924,-0.0026068094,0.053704098,-0.09039517,0.01962004,-0.040338304,-2.2632448e-32,0.016886504,0.08004996,-0.07045752,0.04435137,-0.023359833,0.0081215305,0.0053774486,0.034247126,-0.012067055,-0.056985945,-0.07584015,-0.057678327,0.07278853,0.04450687,-0.085777014,-0.02465626,0.024727084,0.03397954,0.0014575318,0.0018535344,0.030007506,0.080518566,-0.04397568,0.10952124,-0.06326119,0.03491784,0.059610453,0.05798545,-0.00085291243,-0.04186061,0.0052819783,-0.010285497,0.020498691,0.066145904,-0.02943422,0.05370178,0.10491586,0.053396024,-0.0414209,-0.0076432205,0.038669202,-0.01396231,-0.11329645,-0.06084454,0.0050495444,-0.0087218555,-0.022211734,0.012076317,-0.07093205,-0.031724583,0.049943097,0.038233157,-0.07922476,0.017411442,0.032713532,0.0040134806,0.08811857,-0.10090796,0.017348278,-0.012601956,0.055885144,0.013806101,0.031149486,-0.025652623,0.049220644,-0.07033576,0.015043718,0.055817567,0.032673895,-0.084702544,0.041025743,-0.084467225,-0.07521962,-0.059107304,0.058068335,0.057751425,0.033427604,-0.03427684,-0.015455647,-0.13490517,-0.08034375,-0.021898517,-0.025904747,0.01318349,-0.012413351,0.102652326,-0.017486973,-0.08524841,0.00031241405,0.041207142,0.032664392,0.050017737,0.01643753,0.07875042,-0.04783352,-6.58987e-08,0.010744208,-0.0076287906,0.07047035,-0.033859942,0.07080039,-0.106143795,0.063745566,0.03584723,-0.10507307,0.037683897,0.037510812,-0.00090352865,-0.11193813,0.03091933,0.048006292,0.05210963,0.034230392,-0.051850647,-0.023060903,-0.054270867,0.06428894,-0.028196516,-0.044113502,-0.0034923244,-0.033845805,-0.038688403,0.00021903575,-0.016180629,0.058464713,-0.14840557,-0.06492864,0.065609545,0.006123751,-0.017543279,-0.031777143,-0.037454713,-0.08672823,0.025387188,-0.029330954,-0.00865585,0.0061654784,-0.0078173345,0.035135183,-0.02340245,-0.060961373,0.045151804,0.03090296,-0.022158615,0.019654945,-0.022432556,-0.063829005,-0.010516128,0.06609869,0.0524612,-0.03941025,-0.024438296,-0.06576715,-0.019492034,0.007692645,-0.011852314,0.058698215,0.10425698,-0.10379476,-0.036184806} 0.92 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:08:08.401439+00 2026-01-25 01:27:50.868315+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 299 google Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB 1 t 302 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. Así mismo se niega a devolverme el dinero ya que según ellos no son responsables. Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero. realicé una reserva con número dys-196659551 a través de de doyouspain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. así mismo se niega a devolverme el dinero ya que según ellos no son responsables. clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero. 1 2026-01-11 01:27:48.340893+00 es v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entr", "P1.02": "Así mismo se niega a devolverme el dinero ya que según ellos no son responsables.", "V1.03": "Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu "} {-0.057685215,0.04127436,-0.06603609,-0.024153482,-0.092885874,-0.02426892,0.04435024,0.021185312,-0.00059773395,-0.032356348,0.012352219,-0.016381644,-0.0442416,-0.019691795,-0.016206179,-0.041213647,-0.045250118,-0.024902215,0.06163498,0.036519013,-0.008933672,-0.01448664,-0.06272804,0.065107115,-0.059467684,-0.012124949,-0.008227096,0.03529682,-0.031817887,-0.092512935,0.035798494,0.08502696,-0.075412124,-0.049309276,0.056478363,-0.042432074,0.088212095,-0.029133815,-0.01846139,0.044566233,-0.054993745,-0.018534666,-0.012023531,-0.0008165047,-0.06487085,0.050963417,0.006820234,0.12028022,0.010985046,-0.038072802,-0.028561564,0.020814447,-0.016564876,-0.051884018,0.0059868135,-0.05502471,0.018388053,-0.026870439,0.09211289,0.012795293,0.03611971,0.080862485,0.021047216,-0.02243821,0.004053361,-0.0912411,-0.011789161,-0.02245719,-0.020197637,0.02124349,0.05699303,-0.06851401,0.054759193,-0.020542702,-0.015488704,0.023337703,-0.008597038,0.032058824,0.029186076,-0.123618074,-0.047264338,-0.035036586,0.0060102204,-0.012030858,-0.058783118,0.0099472,-0.016858358,0.042105548,0.1086278,-0.043624245,0.045219205,0.051450115,-0.06125048,-0.032471374,-0.04884057,-0.015669055,0.042643122,0.05079253,-0.013151072,0.061169714,0.12270377,0.07029898,-0.029001908,-0.0010703041,-0.01746952,0.049786747,0.0745572,0.0032132715,0.028802635,-0.030237546,-0.09650017,-0.031479683,0.043470718,-0.05543216,-0.056820028,-0.066941105,-0.0659541,-0.06891728,0.017846985,-0.11299043,0.06416384,0.0012796412,0.036069885,-0.0050841635,-0.025347024,-0.060010735,0.102855176,1.8562992e-32,-0.056969047,0.0070986957,0.007780361,0.018180134,0.02336461,-0.024715988,-0.06641479,0.040442098,-0.00953527,0.023554323,-0.04024693,-0.08665311,-0.031100715,0.01634311,-0.015437234,0.022811135,-0.0013524278,-0.039953552,0.03479722,-0.016604275,-0.016550224,-0.028829744,0.036987875,0.019890893,0.022741426,0.073102,-0.0925311,-0.016681451,-0.029304879,0.06726115,0.05608082,-0.02465685,0.03589396,-0.01850302,-0.031747054,-0.029603051,-0.032217134,0.014631138,-0.111595646,-0.040182427,0.060628004,0.053533804,-0.014800963,-0.005163473,-0.036263473,0.055811588,0.09101064,0.028757898,-0.011389236,0.004322619,-0.055672977,-0.067337096,-0.051829185,-0.05494026,-0.055901982,-0.05105286,-0.055501603,-0.0368739,0.0069815754,-0.08602626,0.016770588,0.044880163,0.001922813,-0.037244506,-0.05354525,-0.06897756,0.045407422,-0.0063188486,0.09174186,0.082711965,-0.039224938,0.015274552,0.0018294733,-0.02082029,-0.002457713,-0.021370167,0.01044224,-0.018516691,-0.0457762,0.043605823,-0.0049027903,-0.05655641,0.02627462,-0.04940826,0.066447385,0.07680903,0.09438301,0.005852257,0.029185968,0.09463798,-0.044704232,0.0883009,0.049537428,-0.12894009,0.08026915,-1.8573692e-32,-0.06830089,0.029827444,-0.022821875,0.027527215,-0.06082612,-0.033171177,0.008248336,-0.047282528,0.06658829,-0.12973136,-0.06820059,-0.06838031,0.096784405,0.013978934,-0.0341931,0.054245878,-0.019818455,-0.09265371,0.009583431,-0.07012944,-0.03096011,-0.001061008,-0.0145531725,0.021294229,-0.02676237,-0.019470371,0.02091214,0.041050605,0.0025427397,0.019798374,0.07072032,-0.0068928213,0.06612078,0.0666948,-0.02946384,-0.017741095,0.110179,0.07394078,-0.027336387,-0.0052253595,-0.00079597824,0.09808295,-0.06522071,-0.03056991,0.013033261,0.0376471,0.014487023,-0.08266532,0.026799437,-0.07121142,0.089893915,-0.05682346,-0.049552012,0.008789555,0.07241153,0.036054514,0.0038964287,-0.007586178,-0.010022271,0.029474854,0.021897912,-0.00089683704,-0.055348862,-0.058942705,0.1181035,-0.027371958,-0.01798096,0.035044383,0.070096076,-0.042031378,0.108486384,-0.072658695,-0.08934835,0.015196506,-0.06018516,-0.032982666,-0.049763188,0.034481153,-0.040481467,0.03428805,-0.0669822,-0.048932232,0.006896596,0.02237115,-0.022790942,-0.029508041,0.029144054,0.019948654,-0.02325249,-0.027220896,-0.002218934,-0.011711784,-0.01905163,-0.04502021,-0.044256877,-6.696576e-08,0.039374396,-0.04828729,-0.015176922,0.021903437,0.061652977,-0.011578134,0.02925555,-0.015990693,-0.010187268,0.08349994,0.020423222,-0.021894764,0.015605134,0.0052006925,0.00043054702,0.023610502,0.044683795,0.019728716,-0.07050598,-0.04207426,0.12662722,-0.002126716,-0.026596054,-0.091767505,0.0067346045,-0.00022539904,0.0054638893,0.047359277,0.0070706,-0.046360403,-0.02450054,0.01975589,0.015639035,-0.1672345,0.02412653,0.036170065,0.024231665,0.048673496,0.023780737,-0.057924405,0.07314033,0.05525219,-0.056794103,-0.017130842,-0.06593962,-0.027381904,-0.041746046,-0.004733694,-0.041745342,0.048202675,-0.020067375,0.01763709,0.12645246,0.038369954,0.026963135,-0.078016214,-0.034613833,0.04317655,0.010497881,-0.058597736,0.14705034,0.14698558,-0.018820954,-0.10853518} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:03:21.280936+00 2026-01-25 01:27:50.872183+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 300 google Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB 1 t 303 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Appena tornato da Gran Canaria e prima volta con ClickRent.\nLa mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. Unico inconveniente risolto da un buon servizio della navetta. Ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. Anche con questa formula ClickRent si è dimostrata la più vantaggiosa. Consigliatissima!! appena tornato da gran canaria e prima volta con clickrent. la mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. unico inconveniente risolto da un buon servizio della navetta. ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. anche con questa formula clickrent si è dimostrata la più vantaggiosa. consigliatissima!! 5 2025-12-28 01:27:48.340895+00 it v5.1 P1.03 {J1.02} V+ I2 CR-B {} {"P1.03": "La mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che pe"} {0.0064503173,0.06949699,-0.04744499,-0.0537946,-0.089783885,0.025844652,0.035219446,0.15064757,0.03495764,0.029410975,0.04551701,-0.060335368,0.0207186,7.5483563e-06,-0.07525489,-0.039972715,-0.025641942,0.0063458574,-0.021597033,0.05049732,0.051373217,-0.08770255,-0.03189253,0.068171546,-0.05201163,-0.0070654848,-0.0632925,0.00894063,-0.004212933,0.008434022,0.017867511,0.14466134,0.009892959,-0.07051932,0.057325855,-0.03979211,0.010879041,-0.05004942,0.015901426,0.055718817,-0.0466979,-0.008304901,-0.102297276,-0.029090539,-0.0070493515,-0.037022084,-0.001238649,0.11473973,-0.012441409,0.02015072,-0.0830827,0.017938862,0.028445113,-0.10137257,-0.049046826,-0.035119973,-0.014064997,-0.053895827,0.017917985,0.022479335,0.038795915,-0.047042012,-0.016060246,0.05259823,0.03484163,-0.040045723,-0.08047011,-0.07276575,-0.018582037,0.021724677,0.0044777337,-0.07858328,0.011078026,-0.0030233776,-0.013763557,0.03986188,-0.082316466,-0.016051687,0.0042641405,-0.07978149,0.0819128,-0.044880282,-0.06636221,-0.01930625,0.05225797,0.011523421,0.020055026,0.041083828,0.06769597,-0.014332065,-0.009626165,0.057972997,-0.07084741,-0.073722966,-0.005015038,0.0026241217,-0.116330445,-0.022321409,-0.004346006,0.024176877,0.05168983,0.023627322,-0.010907205,-0.02827932,-0.05038481,0.007645725,0.03266981,-0.08316195,0.015280618,0.07766433,-0.08869036,-0.08687025,-0.0051707933,-0.081610925,-0.06667098,0.0020341102,0.062471468,-0.101014815,0.019359354,-0.06628618,0.02845763,-0.1307583,-0.042199902,-0.0786168,0.029903049,-0.048073858,0.03746257,2.0481348e-32,-0.03849142,0.030009804,-0.029135684,-0.09247339,0.001039847,0.06435436,-0.036582798,-0.0859991,0.03582606,0.025714671,-0.0795027,0.0785464,-0.04334539,0.005901491,0.020958245,0.048294216,0.08681875,-0.031679876,-0.025498314,-0.08326675,-0.041843016,0.005765704,-0.013498649,0.015387143,0.043081895,0.089028545,-0.092185505,-0.061478086,-0.039472103,0.051399253,0.059708703,0.03245892,-0.034403834,-0.041640405,-0.027045067,-0.06857129,-0.009257352,0.010652889,0.024654236,-0.012144866,-0.068212315,0.00035947145,0.04198862,0.007969,-0.059949595,0.03217343,0.027838582,-0.0013455858,0.10502022,-0.012658722,-0.027234312,-0.050785184,0.013040568,-0.05229184,0.013971332,0.01691813,-0.036360536,0.04087261,-0.018226456,-0.0023161247,-0.036059283,-0.0051221554,0.023325881,-0.037906617,0.081171356,0.019291678,-0.010944096,0.038459927,0.04621022,0.022006983,-0.0040744175,0.016386598,-0.07188364,0.05056185,0.009042457,-0.04150597,0.023953946,-0.022812039,-0.049228292,0.022096701,-0.011449525,-0.05822615,0.01455545,-0.02537839,0.086985625,-0.022798054,0.035352666,0.08119325,-0.045866292,-0.019993166,0.009458584,0.044704925,0.013040335,0.045981914,0.01612493,-2.1798646e-32,-0.0041948752,0.05974914,-0.014561357,-0.029076487,-0.026816672,0.08150745,-0.08347194,-0.043388784,-0.010427847,0.041307647,-0.049329896,-0.09349542,0.033804398,0.025879785,-0.003335529,0.08811513,-0.008706668,-0.018482976,-0.10995168,-0.04391056,0.010185739,-0.023466814,-0.023967426,0.034755487,-0.033494584,-0.050166875,0.09797645,-0.06307558,-0.03464923,-0.009026527,0.001455209,0.04809848,-0.0077938847,0.05946023,0.07457483,0.06686919,0.14384441,0.012949098,0.007250751,-0.021126475,-0.0048865196,0.0058104442,0.14076559,-0.05726496,0.022331933,-0.073349066,-0.016918398,-0.09018345,-0.07958636,-0.03857057,0.058063395,-0.023195814,0.048515387,-0.02672125,0.052713696,0.041415576,0.0074620075,-0.13182166,-0.08976349,-0.12020777,0.07072868,-0.054367613,-0.089391194,0.025090748,0.032454282,-0.012864205,-0.048264798,-0.004834823,-0.0054940074,0.083952956,-0.0009885307,0.00045074994,0.0025856465,0.00402079,-0.09364375,0.016339606,-0.003063035,0.04594054,0.03902614,-0.0024068637,-0.04405159,0.00013680047,0.022805426,-0.055503745,-0.027153872,-0.040868968,-0.02463599,-0.06923058,-0.0064377496,0.042134076,-0.0039587375,0.08866466,0.008752687,-0.018881341,-0.030590637,-7.5097844e-08,0.04074023,-0.06508496,0.071938284,0.03839796,0.07171035,-0.02099743,0.004361911,-0.07061044,-0.03527518,0.067247435,-0.04727611,-0.007509404,0.005249091,0.0288531,-0.040787783,0.061567493,0.06937681,0.07949855,0.0037039802,0.011718598,0.05814964,-0.04098448,-0.056674525,-0.034905285,0.027097933,0.007815959,5.240182e-05,-0.026724938,-0.006734393,-0.0027947119,-0.008691238,-0.019188475,-0.034482393,-0.057962343,-0.09817432,0.025213419,0.063184604,-0.019342097,-0.09021622,-0.060668662,0.0933631,0.058912404,-0.000596162,-0.044426486,0.03328897,-0.0065233945,-0.0050709695,-0.046623226,0.0135484515,0.0806715,-0.07384777,0.04943624,0.024707431,0.03953047,-8.498296e-05,-0.009812011,0.025521943,0.047801998,0.02284556,0.0035679382,0.06198353,0.16695566,-0.03187588,-0.029870452} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:11:38.827988+00 2026-01-25 01:27:50.874718+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 301 google Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB 1 t 304 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Esperienza pessima, non noleggiate l’auto in questo Rent:\nPagato con Booking 30€ di noleggio per una Fiat 500 per 3 giorni + 50€ di assicurazione completa.\nArrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). Abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza.\nNel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. Arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo).\nFortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!! esperienza pessima, non noleggiate l’auto in questo rent: pagato con booking 30€ di noleggio per una fiat 500 per 3 giorni + 50€ di assicurazione completa. arrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza. nel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo). fortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!! 1 2025-10-27 01:27:48.340897+00 it v5.1 P1.03 {J1.02} V- I3 CR-N {} {"J1.02": "Nel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori ", "P1.03": "Esperienza pessima, non noleggiate l’auto in questo Rent: Pagato con Booking 30€ di noleggio per una"} {0.00521366,0.039909113,-0.072080314,-0.036418077,-0.08333527,0.05296808,0.06671563,0.11460597,0.07802357,0.018763395,0.0324475,-0.056854155,0.015863271,0.005590707,-0.047752935,-0.05714875,0.048034202,0.035079602,-0.024361134,0.09232087,0.046651732,-0.07848687,-0.078675285,0.086997956,-0.025717048,-0.003798596,-0.06344013,0.023540553,-0.00871928,-0.021215912,-0.00501357,0.04846948,0.037066072,-0.07749089,0.08452081,-0.04180301,-0.011787701,-0.053517014,-0.052539766,0.07083293,-0.016058546,0.02084305,-0.12706335,-0.026075844,0.04119887,-0.01961074,0.006973341,0.0546575,-0.027444433,-0.04775951,-0.046232596,0.026564704,0.04154648,0.0061455,-0.114061326,-0.08995797,0.0074888635,-0.0026542677,-0.012572966,0.024673212,0.013724881,0.03759983,0.0037313846,0.035089534,-0.075517505,0.08175098,-0.035638653,-0.10783249,-0.06319772,0.027162647,-0.0021417076,-0.10143278,-0.011179557,-0.01496106,0.00912953,0.05134024,0.02931373,-0.038212944,-0.0053031365,-0.13697119,0.104339756,-0.00026196154,-0.045980867,-0.019594707,0.022393307,-0.009994403,0.027179671,0.01937044,0.08229627,0.009683637,0.08004427,0.037975334,-0.11708254,-0.04906286,0.0859843,-0.02410376,-0.031043278,-0.05579189,0.015296464,0.021612724,0.0827194,-0.03151155,0.025479367,-0.007479047,-0.019887619,0.026006503,0.1238255,-0.07987152,-0.004533512,0.077903956,-0.12102769,-0.05500059,-0.013870024,-0.11254532,-0.11018899,0.121117465,-0.039074086,-0.010204448,-0.009961724,-0.0045764972,0.033331707,-0.09311367,0.029680606,-0.0072838427,0.038679965,-0.053394392,0.008542283,1.286362e-32,-0.096119285,-0.010744672,-0.053846065,-0.051204327,-0.002538063,0.029363487,0.007959974,0.022096328,0.015150471,-0.038613178,-0.062097713,0.04241123,-0.055258036,0.03338231,0.04470778,0.0507089,0.027532417,-0.054804966,0.04434277,-0.030177638,-0.048623685,0.010416992,0.014706712,0.02540119,-0.052044317,0.044691876,-0.053658377,-0.04228876,0.024233611,0.04126048,0.033499546,0.02247072,0.02757765,-0.088833466,-0.009632269,-0.032476,-0.024204435,0.010229428,0.041370388,0.007839326,-0.029812379,0.07027729,0.028226553,0.010649353,0.012750552,0.03474238,0.0103135975,-0.012604829,0.07077985,-0.012376122,-0.03180254,-0.030842872,-0.09590613,-0.015231987,-0.019648574,-0.009839268,-0.1118387,0.06789338,0.007808337,-0.07800644,-0.037270103,0.011092887,0.04179158,-0.051052142,-0.031591136,0.059082985,-0.0063528987,-0.020110557,0.07756574,-0.037764564,-0.03675616,-0.03406337,0.0375039,0.03698158,0.01232416,0.011025188,0.030862268,0.0040225643,-0.042808928,0.00031336024,-0.04725443,-0.0068543623,0.027538132,0.0479873,0.061514147,0.041518122,0.036638163,0.10301714,0.006945163,-0.022491736,0.12405074,-0.00418147,0.011100288,-0.043643564,0.05368811,-1.2782981e-32,0.03843515,0.01082547,0.030466735,-0.013240349,-0.04400516,0.027298873,-0.12265054,-0.07464571,0.03673679,0.049695354,-0.061459076,-0.047122005,0.039935585,-0.018015653,-0.02911201,0.031388152,-0.040564023,-0.021333376,0.023666343,0.018953659,0.001861222,0.05764463,-0.018473865,-0.0017443621,0.004112235,0.035435274,-0.05551902,0.05759811,0.00037692243,-0.033263747,-0.008102797,0.0453676,-0.08145794,-0.0038438968,0.027795367,0.014951408,0.052439526,0.043955646,-0.065383725,0.008318137,-0.016475633,-0.040735554,0.09620566,-0.08194981,0.075014144,-0.04254822,-0.0145467585,-0.11323802,0.09075766,-0.05323824,0.09787917,0.008932885,-0.009792058,0.027369538,-0.0012931495,0.030645454,-0.018411435,-0.04253,-0.051112518,-0.03000428,0.06636601,0.079538755,-0.05725316,-0.036522605,0.01034997,0.020899346,-0.02063922,0.029106142,0.0330799,-0.05221393,-0.067965224,0.0031007954,0.017782914,-0.020530395,-0.053637084,0.13220447,-0.0016557671,0.0044734282,0.07661154,0.010386766,-0.060867667,-0.016582984,0.006250542,-0.00591129,-0.10289761,-0.016379433,-0.072399154,-0.04583027,-0.030742846,0.034224257,-0.010591186,0.04915772,0.09598118,0.0011634667,0.039276045,-5.723146e-08,0.06396723,-0.046592508,0.07236663,0.003007505,0.028551081,-0.11183468,-0.027565742,0.011462419,-0.056251235,0.047438208,-0.015840797,-0.02384832,-0.02013062,0.013907308,-0.12267767,0.06965229,0.022680966,0.06862839,0.0052749836,-0.02441206,0.085858755,0.009762084,-0.0702074,-0.1166215,0.017254902,-0.05807373,0.043946937,-0.017858641,-0.017719723,-0.033137377,0.012403727,-0.029228818,0.023066683,-0.107259184,-0.016714092,-0.045704495,-0.051351905,0.00026856948,-0.06279936,-0.033890706,0.14022313,-0.03668097,-0.018653201,-0.04244425,0.044269793,0.01446205,-0.054697942,-0.059862316,0.049813967,0.050103206,-0.02363177,0.030157087,0.02658979,0.07306992,-0.030485049,-0.03880222,0.06282872,0.034438133,-0.019146472,-0.03705463,-0.03445505,0.009184786,0.014129586,-0.023629894} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:27:58.293716+00 2026-01-25 01:27:50.879894+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 332 google Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB 1 t 335 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown He alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo decir que es la mejor en la que he contratado. El trato humano que tienen es de 10, siempre muy cercanos. Los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás habia cogido uno) me enseñaron amablemente a usarlo y así estar cómoda.\nMe vine por el precio pero me quedo por el equipo que tienen. he alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo decir que es la mejor en la que he contratado. el trato humano que tienen es de 10, siempre muy cercanos. los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás habia cogido uno) me enseñaron amablemente a usarlo y así estar cómoda. me vine por el precio pero me quedo por el equipo que tienen. 5 2025-10-27 01:27:48.341175+00 es v5.1 A1.01 {O1.01} V+ I3 CR-B {} {"A1.01": "He alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo", "O1.02": "Los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás ha", "P1.01": "Me vine por el precio pero me quedo por el equipo que tienen."} {0.01909285,0.03909418,-0.038735993,-0.13468006,-0.091050714,-0.015664505,0.105400786,0.03959994,-0.06527366,0.008998908,0.036900375,-0.024091976,-0.06869885,0.015624005,0.078524314,0.016400263,-0.007449629,-0.01700532,-0.026014203,-0.0055086543,0.076613255,-0.019281358,-0.080694914,0.020992232,-0.035514828,-0.08745523,0.023422694,-0.015351864,-0.0097194,-0.03971431,-0.0030926927,0.008263349,0.07760251,0.037725087,-0.02803132,-0.0655302,0.03920768,-0.031919647,-0.05792857,0.08400019,-0.08013431,-0.0608442,-0.0047351154,-0.017376171,-0.013368659,-0.02156792,-0.006724358,0.06495996,0.08395029,-0.056382492,-0.07430418,-0.0010706772,-0.036381528,0.01694302,-0.030123586,0.051405508,0.028974444,0.022860622,0.018919423,-0.0068816794,0.039876547,0.0441453,-0.05469625,0.02910129,0.024231799,-0.020061882,0.043411966,-0.0013812546,-0.05247592,0.082065895,0.17035824,-0.06004953,-0.012943017,0.030497137,-0.07049427,0.04948701,0.02168329,-0.0073807086,0.00083575776,-0.020424679,0.013446594,0.024363266,-0.028329432,-0.08798134,-0.031346153,-0.027709574,-0.045301873,0.023324428,0.014695254,0.002098829,0.012935665,0.0870402,-0.028737346,-0.015605269,-0.020130977,0.08316618,0.053254317,0.029123439,-0.083284065,0.0054238504,0.14988196,0.07179847,0.066193886,0.06302161,0.011425759,0.10252551,0.088402756,0.007115807,0.029766355,0.03133683,-0.031648077,-0.04923668,-0.062748395,-0.014510679,-0.07447183,-0.026914997,-0.016597409,0.007182849,-0.042110063,-0.086324215,0.0022077179,0.0062336545,-0.056999564,0.005529094,-0.019511562,-0.07544053,0.024425687,1.4461973e-32,0.03760266,-0.020538142,-0.019151693,0.021745,-0.08144423,0.06345446,-0.051541775,0.016321577,-0.062086716,-0.036612447,-0.070047274,0.008938558,-0.031331073,0.07307181,-0.0059920605,0.0430849,0.016735952,-0.03529272,0.1008731,0.054507647,-0.033920854,-0.031095598,-0.015533011,-0.035726674,0.026028583,0.067400135,-0.033628855,-0.03849672,-0.059885927,0.033630803,-0.08013576,0.093148954,0.007006154,0.01209266,-0.04797461,-0.05347014,0.04775893,0.026717689,-0.059604645,-0.037864786,0.039340258,0.034023833,-0.008219477,0.026302872,0.042800933,-0.059623517,0.0699711,0.075606726,-0.0068933973,-0.018237358,-0.08687712,0.032858178,-0.058579136,-0.061756834,0.0015041588,-0.04753009,-0.015522766,0.08280038,0.022081286,-0.028738836,0.06628918,-0.027219102,0.0109580895,0.0700649,-0.02114169,-0.0062832525,0.034559015,0.013657458,0.09290213,0.07983093,-0.054267943,-0.06698662,-0.11483654,0.045097765,0.02133589,-0.048362378,0.03429391,0.02307257,0.022539696,0.012529362,-0.010322477,-0.008165573,0.018790036,0.07986805,0.038978394,0.12822132,0.055348076,0.033963464,-0.002171137,0.1325485,0.02705874,0.04905912,0.05040897,-0.014566498,0.0449314,-1.4785458e-32,-0.02669994,-0.004989861,-0.0052885725,0.01655349,-0.02375487,0.012932894,0.040196333,-0.0037566822,0.0103335325,-0.09975676,0.029165598,-0.06834715,0.08863783,-0.037903678,-0.04651992,0.038696215,-0.036067203,-0.08533189,-0.010891058,-0.013185144,0.07741042,0.04855353,0.024918057,-0.000110826,-0.012248447,-0.12229993,-0.03705334,0.013219872,-0.096827455,-0.04956521,0.078407586,-0.046695784,-0.005304453,0.06518001,-0.007332486,0.0045753717,-0.025604567,0.04088044,0.037444822,0.08216287,0.017018761,0.037075166,-0.05425459,-0.063738644,-0.03667005,0.05862019,-0.02789056,-0.14337783,-0.062364224,-0.052851643,0.061575156,-0.0038563798,-0.07279935,-0.035291344,0.009749053,-0.009550883,-0.025883367,-0.066488676,-0.052386027,-0.009993812,0.015039667,0.007804516,0.0040436015,-0.04109205,0.05078193,0.034365084,-0.030139316,0.012905395,-0.037497543,0.010548499,0.07539487,-0.050648566,-0.065218195,0.0015190309,-0.032303825,-0.0386533,-0.06908735,0.011459991,0.074372284,-0.026259212,-0.024648096,-0.0326076,0.02516044,-0.043255635,-0.006797171,0.0035311107,0.0026755193,0.053720854,0.023934092,0.072576545,0.03740238,0.021530595,-0.08914181,-0.070567735,-0.021970738,-5.1234775e-08,0.0008612208,-0.043450322,0.03587148,-0.025053663,0.072945975,0.050710242,-0.033585586,-0.014433256,0.068521366,0.08169769,0.039738912,-0.06931954,-0.0654133,-0.000458798,-0.011526189,0.012179036,0.08009311,0.029892545,-0.039905906,-0.046067957,0.033199694,0.028539438,-0.028107326,-0.0039744545,0.020425132,0.0074678487,-0.024181351,0.046692897,-0.01572307,0.06235024,-0.014409301,-0.022166323,-0.05647127,-0.10707824,-0.019473823,-0.005891025,0.008380668,0.004998292,0.005777759,-0.07906499,0.07238451,0.0063187745,-0.14272296,0.0026458355,-0.05428314,-0.11629656,-0.015520124,0.014280737,-0.050080154,0.015173129,-0.067284636,-0.035187233,0.081499495,-0.041747056,0.079604596,-0.13334775,0.027156044,0.007861667,-0.043894216,0.05184417,0.083524935,0.036668193,-0.015161176,-0.08992328} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:27:24.916621+00 2026-01-25 01:27:50.992042+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 302 google Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB 1 t 305 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Ich war schon ca. 50x Kunde bei Mietwagenanbietern, aber noch nie so enttäuscht wie hier.\n\nWarum? Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spanische KI-Hotline, keine Ausschilderung und eine nicht brauchbare Wegbeschreibung vorab. Da nur ein Shuttle zu dem Zeitpunkt fuhr und die Schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden.\n\nDa es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte Inspektion der Schäden am Auto und machten nur oberflächliche Fotos und Videos. Bei der Rückgabe wurde dann vorne unterhalb der Frontschürze(!) ein Mini-Kratzer festgestellt, welcher angeblich durch uns verursacht wurde. Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag wurden zudem noch weitere 60 € vom Konto ohne Angabe von Gründen abgebucht. Seit drei Wochen versuche ich clickrent zu erreichen, aber die E-Mails werden ignoriert. Werde die Sache jetzt meinem Anwalt übergeben, denn dieses Vorgehen scheint Masche zu sein... ich war schon ca. 50x kunde bei mietwagenanbietern, aber noch nie so enttäuscht wie hier. warum? bei ankunft am flughafen ist der shuttletreffpunkt nur mit sehr viel glück und geduld zu finden. spanische ki-hotline, keine ausschilderung und eine nicht brauchbare wegbeschreibung vorab. da nur ein shuttle zu dem zeitpunkt fuhr und die schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden. da es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte inspektion der schäden am auto und machten nur oberflächliche fotos und videos. bei der rückgabe wurde dann vorne unterhalb der frontschürze(!) ein mini-kratzer festgestellt, welcher angeblich durch uns verursacht wurde. da wir keine gegenbeweise hatten, wurde uns dieser mit 230 €(!) in rechnung gestellt! am selben tag wurden zudem noch weitere 60 € vom konto ohne angabe von gründen abgebucht. seit drei wochen versuche ich clickrent zu erreichen, aber die e-mails werden ignoriert. werde die sache jetzt meinem anwalt übergeben, denn dieses vorgehen scheint masche zu sein... 1 2025-12-26 01:27:48.341027+00 de v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spa", "J1.03": "Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag ", "O1.02": "Da es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detailli"} {-0.015970217,0.056905992,-0.022009911,-0.014145948,-0.014803044,0.044866115,-0.0008951948,0.11404932,-0.06491232,0.0033958976,0.052491743,-0.06400394,0.06125903,-0.011722576,-0.05282541,-0.019328328,-0.030686166,0.004474641,-0.08112014,0.020509629,0.033627253,-0.13205759,0.04219658,0.04321221,0.0039192494,0.018694978,-0.06507747,0.027759444,-0.022750095,-0.018209001,-0.033477277,0.064698786,0.013845196,-0.04291104,0.080474444,-0.0058460403,0.041899964,-0.0516427,-0.07107163,0.060165633,-0.080664024,-0.0054286635,-0.10723799,0.054314405,-0.027155325,0.04785576,0.03392097,-0.05219569,-0.040093273,0.060073514,-0.02447368,0.026168806,0.04258135,-0.039123733,0.026190981,-0.06356049,-0.07063102,-0.023262855,0.07951324,-0.008542542,-0.057502195,-0.08044814,-0.013955537,-0.03228842,0.020310115,-0.06794039,-0.015261263,-0.11742488,0.033350077,-0.07607974,-0.006984877,-0.038041953,-0.028620042,0.007014777,-0.10204543,-0.0082713505,0.009515886,0.060659073,-0.06495198,-0.106552415,0.1290993,-0.034132734,0.09308302,-0.01788023,-0.007086648,-0.022600137,0.040355347,0.115706384,-0.037446298,0.0013461383,-0.044541385,0.056548048,-0.15453534,-0.029040463,0.052134298,-0.042266913,-0.023363031,-0.0040258225,-0.0013601192,0.02031972,0.09209415,-0.11229647,0.013500011,0.06339272,0.007975959,-0.032527126,0.0048798984,-0.003156446,-0.042760108,0.026537096,-0.01941201,-0.07113133,0.0061781555,-0.08995102,0.04214432,0.045997284,-0.010912449,-0.022425447,0.019607605,0.00831646,0.06743272,-0.041659467,0.06550617,0.02567835,0.06389965,0.09573669,0.07130424,1.9688671e-32,0.0067332955,0.016238475,-0.043878052,0.00444446,-0.0030319279,-0.04625746,0.038673818,0.03867406,0.020072164,-0.028092215,-0.09233665,0.05123117,-0.036916886,-0.06872506,0.029643375,-0.07230914,0.08283143,-0.03896683,-0.08579296,-0.056962658,-0.0060379617,-0.013133842,-0.024163984,0.029722573,0.036481153,-0.0047597215,0.013724795,-0.04129504,-0.0018358822,0.05438469,0.025797442,-0.057460953,-0.025218278,0.013143266,-0.007187371,-0.044609807,0.02865568,0.04059695,-0.045848668,-0.053854622,-0.050873965,0.036280163,-0.060634743,-0.0023035477,0.016587617,0.026410213,0.038989797,0.018280916,0.047839988,0.0034624639,0.0045749256,0.02973484,-0.045696527,-0.030010061,0.019587537,0.13309954,-0.0075253453,-0.041989263,-0.03942472,0.029727714,-0.0100654885,0.06088598,0.0052447286,0.0071334005,0.054443788,0.010297623,-0.042233694,-0.008089267,0.0057339906,0.035415858,-0.053973258,0.0030245134,0.14995055,-0.013136823,0.10239253,0.022901492,0.07549702,0.016916621,-0.12968846,-0.012364744,-0.0012284663,-0.024547165,0.0048344037,-0.06478528,-0.027650334,-0.115580425,0.025442993,0.027374001,-0.064566955,0.01994135,-0.017672937,-0.029877787,0.006640714,9.221459e-05,-0.019389037,-1.8119565e-32,0.12311346,0.071267396,-0.013256665,0.015480332,-0.0046110493,0.13071984,0.07834342,0.091346435,-0.026509581,-0.017523376,-0.030041808,0.038546294,0.0097416,-0.004954104,-0.065596804,0.028241426,0.04193249,0.001907146,0.006335985,-0.0068032946,0.024420435,0.043859236,-0.02950922,0.019644717,-0.021976497,0.064722516,0.08961468,0.050460085,-0.03646477,-0.0072208066,0.0012422703,-0.014546145,0.020431476,0.022354174,-0.007954207,-0.025028996,0.052904584,0.07750712,-0.08036844,0.007626049,-0.014849665,0.044878975,-0.007068431,-0.06894937,0.03404926,-0.08291158,-0.0705808,-0.088809185,-0.03141165,-0.1301644,0.008534062,-0.008826653,-0.020013226,0.028887615,0.045032974,-0.0045695486,-0.031613566,-0.047446884,-0.042852372,0.060585413,0.057150662,-0.0036512695,0.02140757,-0.06012323,0.05292155,-0.07377895,-0.00553483,0.011019277,0.027264113,0.008786663,0.021382624,-0.031324748,0.07178997,0.02362103,-0.00067757594,0.0006092708,0.019854061,0.13006529,0.06697545,0.030321047,-0.031293992,0.06556271,-0.061907124,-0.008470976,-0.0122207925,0.025792964,0.043011352,0.03871265,0.024558652,-0.09385228,0.05118952,0.055507764,0.06339028,0.054090925,0.053190395,-7.042751e-08,0.056231834,0.020238409,-0.04615276,0.008169916,0.013761909,-0.10017484,0.0019909248,0.018481497,-0.04400228,-0.023364924,0.035761893,0.031178832,-0.039088394,0.08651404,-0.10328456,0.0051776324,0.004357809,-0.00021067107,-0.01843081,0.041433655,-0.024579544,-0.08253857,-0.012499398,-0.05977271,-0.09958698,0.050371885,-0.011267187,-0.019899296,0.031223472,-0.06594788,-0.07214332,0.036485385,-0.075146616,-0.022743732,-0.09597401,-0.032421414,-0.015815724,0.081746854,-0.059752528,0.083894804,0.056426566,-0.068080075,0.052569948,-0.054737765,-0.0066947816,0.0020902765,-0.020150376,-0.040898737,-0.041723788,0.050732646,-0.027870998,0.03224621,-0.09907753,0.06249484,-0.020031368,0.034204103,0.035054747,-0.019904904,-0.03162629,0.003329237,-0.043491017,0.0026623649,-0.10215622,0.056358915} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:15:36.709565+00 2026-01-25 01:27:50.884223+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 305 google ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB 1 t 308 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir haben uns im Vorfeld über sämtliche Autovermietungen informiert. Hatten dann bei Clickrent direkt gebucht - mit der ‚höheren‘ Preiskategorie.\nBei Abholung wurde alles super einfach und schnell erklärt. KEINE Kaution (lediglich die übliche 200€ Pauschale für Sprit), keine extra Kosten, kein dummes gequatschte a la „wissen sie denn was es kostet wen bla bla bla“ , sondern einfach eine schnelle und einfache Übergabe.\nZum Auto selbst kann ich nur sagen dass er sauber und vollgetankt war!\nAlles in allem wie gehofft, damit der Urlaub nicht stressig anfängt/aufhört.\nBei Abgabe kam der Kommentar „you book full coverage“ so dass lediglich nach der Sauberkeit im Innenraum geschaut wurde und ob wirklich vollgetankt war. Kein nerviges Kontrollieren, keine Fotos raussuchen, kein auf die Knie gehen um sich Schäden zeigen zu lassen (leider selbst so bei Goldcar erlebt).\n2 Minuten später hatte ich bereits eine Benachrichtigung meiner Bank dass das Geld wieder freigegeben war!\n\nKann jedem nur empfehlen es genau so zu machen. Die Straßen und andere Verkehrsteilnehmer lassen es quasi gar nicht zu dass kein Schaden entsteht - für die Paar Euro mehr auf der Clickrent Seite gebucht entstehen dann auch im nachhinein keine ewigen Diskussionen mit einer Zusatzversicherung aus dem Internet.\n\nZum Abschluss haben wir uns entschieden zum Flughafen zu laufen, wobei mehrere Mitarbeiter fragten ob wir uns sicher sind und nicht doch geshuttelt werden wollen.\nEin fehlendes Engagement der Mitarbeiter und auch fehlende Freundlichkeit der Mitarbeiter, kann zumindest ich nicht bestätigen!\n\nDas einzige was verbessert werden könnte ist die Beschreibung zum Shuttlepunkt und ggf. eine Telefonnummer bei der man direkt mitteilen kann dass man da ist (die Servicenummer ist Schwachsinn).\n\nWürde es unter den genannten Voraussetzungen sofort jedem empfehlen und würde so, auch selbst wieder buchen! :) wir haben uns im vorfeld über sämtliche autovermietungen informiert. hatten dann bei clickrent direkt gebucht - mit der ‚höheren‘ preiskategorie. bei abholung wurde alles super einfach und schnell erklärt. keine kaution (lediglich die übliche 200€ pauschale für sprit), keine extra kosten, kein dummes gequatschte a la „wissen sie denn was es kostet wen bla bla bla“ , sondern einfach eine schnelle und einfache übergabe. zum auto selbst kann ich nur sagen dass er sauber und vollgetankt war! alles in allem wie gehofft, damit der urlaub nicht stressig anfängt/aufhört. bei abgabe kam der kommentar „you book full coverage“ so dass lediglich nach der sauberkeit im innenraum geschaut wurde und ob wirklich vollgetankt war. kein nerviges kontrollieren, keine fotos raussuchen, kein auf die knie gehen um sich schäden zeigen zu lassen (leider selbst so bei goldcar erlebt). 2 minuten später hatte ich bereits eine benachrichtigung meiner bank dass das geld wieder freigegeben war! kann jedem nur empfehlen es genau so zu machen. die straßen und andere verkehrsteilnehmer lassen es quasi gar nicht zu dass kein schaden entsteht - für die paar euro mehr auf der clickrent seite gebucht entstehen dann auch im nachhinein keine ewigen diskussionen mit einer zusatzversicherung aus dem internet. zum abschluss haben wir uns entschieden zum flughafen zu laufen, wobei mehrere mitarbeiter fragten ob wir uns sicher sind und nicht doch geshuttelt werden wollen. ein fehlendes engagement der mitarbeiter und auch fehlende freundlichkeit der mitarbeiter, kann zumindest ich nicht bestätigen! das einzige was verbessert werden könnte ist die beschreibung zum shuttlepunkt und ggf. eine telefonnummer bei der man direkt mitteilen kann dass man da ist (die servicenummer ist schwachsinn). würde es unter den genannten voraussetzungen sofort jedem empfehlen und würde so, auch selbst wieder buchen! :) 5 2025-04-30 01:27:48.34107+00 de v5.1 J1.03 {O1.01} V+ I2 CR-N {} {"J1.01": "Das einzige was verbessert werden könnte ist die Beschreibung zum Shuttlepunkt und ggf. eine Telefon", "J1.02": "Bei Abgabe kam der Kommentar „you book full coverage“ so dass lediglich nach der Sauberkeit im Innen", "J1.03": "Wir haben uns im Vorfeld über sämtliche Autovermietungen informiert. Hatten dann bei Clickrent direk"} {-0.06986245,0.03566767,-0.10223896,0.017341543,-0.068981834,0.07348225,-0.013852534,0.070193104,-0.010021161,0.034160692,0.02828458,-0.053096607,-0.04772027,-0.015681764,0.030832967,-0.02189157,-0.018704144,-0.010353164,-0.11486314,-0.11255677,0.023265362,-0.014207693,0.0003763345,0.09460366,-0.029155018,0.0064921007,-0.050604954,-0.036124162,-0.0012209145,-0.048408978,-0.061908055,-0.04493119,0.03849332,-0.0054127774,0.048549384,-0.05554274,-0.029783435,-0.057978656,-0.004251295,0.016907992,-0.07154555,0.10459027,-0.12603135,0.030346526,-0.10417498,0.00996507,-0.021464609,0.03953527,-0.07722899,0.011165271,-0.028168146,-0.04260311,0.08126587,-0.03126799,0.0031165283,-0.06110275,-0.12256524,-0.02919882,0.017010028,-0.035638116,-0.0519299,-0.04741189,0.037897673,-0.026842475,-0.10285651,0.09156881,-0.0019557867,0.0009500975,0.047958,0.007899636,0.01516618,-0.07298875,-0.020437824,0.032720175,0.046195008,0.025236258,-0.020921206,0.03179664,-0.01665628,-0.11171767,0.04646741,0.00546885,0.03959935,-0.020507945,0.075442,-0.0471742,0.013195237,0.02838123,-0.0012426449,0.029715866,0.035865486,0.004399517,-0.07905468,-0.026616432,0.089249715,0.049332954,0.036785603,-0.07170646,0.10136824,-0.037210327,0.10480595,-0.03249837,0.047286555,0.0612051,-0.023123186,-0.05318955,0.06728909,-0.023454364,0.029650789,0.05861376,-0.03171555,-0.035729643,0.03182449,-0.078724846,-0.04200961,-0.051385827,0.04766263,-0.038784098,0.017215783,0.037580993,-0.0025661655,0.017462907,0.04861236,0.03402527,0.09531814,-0.0015342538,-0.018882293,1.84262e-32,0.009195914,-0.06457164,-0.07655626,0.008077626,-0.041192777,0.010477117,0.038219027,0.049377438,0.018784935,-0.016865397,-0.10536485,0.06665482,-0.037187997,-0.08685945,0.053680476,0.020872952,0.023254324,-0.021399455,0.06772719,-0.03130731,-0.04924165,0.024373582,-0.026482938,0.00018907205,-0.013316702,0.01850871,0.0756512,-0.009180326,-0.08285025,0.049047686,0.015724117,-0.027400715,-0.060729727,-0.0023550147,-0.007462773,-0.005014758,-0.08369857,0.017095577,-0.00035225344,-0.0004122645,-0.026448209,0.039569356,0.034636606,-0.068464145,-0.0032536506,0.008405106,-0.10211299,0.04098272,0.016940573,-0.0025923266,-0.08273725,-0.04489247,-0.027987817,-0.042886954,-0.026515989,0.0754295,-0.06330688,0.027967155,-0.0029945492,-0.000559726,-0.0010867697,0.027996523,0.019115346,0.023999324,-0.020277387,-0.05310405,-0.050262943,-0.026126284,-0.027127955,-0.0008383574,-0.037809737,-0.036057286,0.06302095,-0.044445183,-0.03774012,0.010016127,0.07415607,0.02542593,-0.1101652,0.03734841,0.0011467899,-0.008380083,0.12255662,-0.036862332,-0.010174912,-0.12015995,0.038873594,0.02092547,-0.011396127,-0.006203687,0.048488814,0.008144737,-0.005607829,0.025880774,-0.009713134,-1.8779692e-32,0.097871184,0.026975527,0.080790296,-0.05110946,-0.05629381,0.09812932,-0.03965877,-0.006032726,-0.065664,0.049739894,0.05032554,0.06439064,0.020090647,-0.03296531,-0.044206094,0.031456675,0.047989327,-0.075811744,0.06204716,-0.03824733,-0.025311753,-0.01322479,-0.027828123,0.01461141,0.06897461,-0.056359135,0.053448547,0.097554035,-0.004732922,0.027850756,0.081145965,0.0073132743,-0.03363315,0.06641145,-0.028934928,-0.07938693,0.12414707,0.05675368,-0.05514866,-0.007900754,0.030457018,0.013006004,-0.06509625,-0.013433359,0.10220393,-0.0066893715,0.0064280685,-0.11573825,-0.085209414,-0.072983325,0.06169947,-0.05957998,0.08869764,0.007007291,0.065242216,0.03799222,0.004772624,-0.041254163,-0.06745491,-0.01014108,0.023024252,0.07089439,-0.019656487,0.005732192,-0.050441507,-0.041123632,-0.08404666,-0.072882175,0.018336074,-0.023084266,-0.031150838,0.023175336,-0.016652534,-0.024914222,-0.03607305,0.052421503,0.039155062,0.002959048,-0.030317666,0.0067546694,-0.07194596,0.019401634,-0.014282509,-0.007284538,-0.017589089,-0.004620584,0.070808575,0.07977223,-0.02198518,0.022411728,0.028010776,0.020986428,0.04884552,0.032584246,0.02159023,-7.374459e-08,-0.021059152,0.04460352,-0.045040604,-0.020861536,0.061115526,-0.12519221,-0.010317154,0.08669804,-0.01802197,0.11196611,-0.08243982,-0.0405324,-0.09097412,-0.0002017163,-0.08735452,0.08092557,-0.03396496,-0.025449362,0.0082885185,0.051385492,0.08203104,-0.06768057,-0.064920954,-0.09625795,0.07672625,-0.0025204392,-0.03534081,-0.049568906,-0.0139185935,-0.018200962,-0.0068709473,0.033817884,0.00921221,-0.05037096,-0.06803921,-0.032541625,0.06438188,0.008744997,-0.06217919,0.030918045,0.08871873,-0.015015088,0.03070558,-8.903879e-05,0.019187901,-0.05539333,-0.049876243,0.017078916,0.027665215,0.029466398,-0.020766422,0.003807534,0.04265616,0.115711056,-0.035307553,0.009545099,0.05364575,-0.03155731,0.013094066,0.029684851,0.09732198,0.018667016,-0.07930693,0.06904253} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:45:56.378383+00 2026-01-25 01:27:50.894977+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 307 google Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB 1 t 310 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown A fuir !!! L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré.\nIl ne veut rien savoir au guichet et nous dit de partir. Je lui demande le remboursement et il me répond de voir avec Do you spain .\nNous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la preuve que mon permis est bien valide.\nContacter Do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. Ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ...\nNous n'allons pas en rester là .\nA fuir Clickrent et Do you spain, des voleurs ! a fuir !!! l'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré. il ne veut rien savoir au guichet et nous dit de partir. je lui demande le remboursement et il me répond de voir avec do you spain . nous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. c'est donc la preuve que mon permis est bien valide. contacter do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ... nous n'allons pas en rester là . a fuir clickrent et do you spain, des voleurs ! 1 2026-01-04 01:27:48.341075+00 fr v5.1 A1.02 {} V- I3 CR-N {} {"A1.02": "L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur", "A1.03": "A fuir Clickrent et Do you spain, des voleurs !", "J1.02": "Nous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la"} {-0.0625174,0.049267136,0.019015232,-0.06605876,-0.012640055,0.03213259,0.03541142,0.015633702,0.011274826,-0.04047763,0.05107146,-0.0154518625,0.02688509,0.059671972,-0.06505682,-0.020976273,-0.062297404,0.03902644,-0.028774709,0.08490226,0.09128303,-0.0051875305,-0.047231887,0.057111572,-0.075440235,-0.063528776,-0.032739095,0.0032128405,-0.038202677,0.008243273,0.012995095,0.035182305,-0.025626017,-0.020403586,0.021817533,-0.080141775,0.043109946,-0.078361966,-0.082485296,0.032029532,-0.12073444,-0.026792156,-0.13630213,0.050141178,-0.010179561,0.013094305,0.08573779,0.054483514,-0.00057099876,0.015047491,0.008800607,0.028170459,0.06732929,-0.07421016,-0.0881922,-0.009543908,-0.029368252,0.009924079,0.09319345,-0.012362296,0.016947418,-0.016714448,0.02269691,-0.0034293018,-0.08849006,-0.04227228,0.05332983,-0.025861183,-0.10281366,0.059448626,-0.0007489835,-0.03977147,-0.056567825,0.015764533,0.024395712,0.09080719,-0.06531516,-0.032763872,-0.02186893,-0.20221621,0.010426599,-0.022906879,-0.00461487,-0.04295468,0.053853698,-0.11337273,0.021472871,0.075575806,0.05363255,0.011362822,-0.013651998,0.102058135,-0.030051328,0.03481794,0.066877015,0.014665995,0.009164267,0.032413967,-0.061125487,0.027903588,0.032553237,-0.022364883,-0.012573894,0.07906544,-0.04955289,0.075472295,-0.00153949,0.0022272023,-0.00970314,0.02425703,-0.009019404,0.0670111,-0.016373444,-0.0792055,-0.055553053,0.0048075216,-0.034057844,-0.026126307,0.05669856,-0.059710957,0.0009155472,-0.015909448,-0.045360375,0.060787175,0.08872198,-0.0728995,0.07530818,1.05174154e-32,-0.069786616,0.008748986,-0.029664533,-0.0054571405,-0.002591821,0.016238682,-0.008260049,0.08171012,-0.08062235,0.03615774,-0.059985194,0.019347163,-0.043574113,-0.06162458,0.11785374,0.08257608,0.10105956,-0.07502514,0.06950869,-0.034595683,0.021051241,0.021064123,0.03890197,0.040609512,0.023696449,-0.0065921415,-0.011371624,-0.0797128,-0.017652275,0.03917738,0.01662133,-0.020553501,0.05754345,0.0013768505,-0.006365216,-0.022513319,0.016453428,0.03997405,-0.040862747,0.0056925667,0.0033173456,-0.0087687485,0.013732906,0.020603776,-0.064460784,-0.05404618,0.020252736,0.057000387,-0.009185536,0.06616226,-0.03672148,-0.03778886,-0.01711772,-0.06353559,0.005827377,-0.01683858,-0.14290722,0.06108268,-0.078608,-0.08364266,0.04184492,0.011318475,-0.0004449498,-0.02982269,-0.020419717,-0.008148071,-0.01585223,0.052960698,0.041646753,-0.024133496,-0.06040891,0.026181402,-0.011592727,0.012215666,0.036576305,0.014371961,0.0007116727,0.01731082,0.039515145,-0.0011546144,0.03751908,-0.05849249,-0.085065566,-0.0034649838,0.074940346,-0.023952585,0.018324409,0.013138097,0.018241035,0.07165712,-0.0039395946,-0.05697268,0.062243946,0.061180554,-0.0173778,-1.1980101e-32,-0.017172713,0.0398035,0.016357733,0.07902999,0.036465198,0.022551961,-0.043721057,2.5941677e-05,-0.048596792,-0.14893451,-0.061297152,-0.047639202,0.090475984,0.013516013,-0.04092701,0.105833665,-0.0555676,-0.049822934,-0.123294905,-0.037415963,-0.049479876,-0.009274825,0.026932182,0.044223305,-0.06310447,-0.042037234,0.04288797,0.038682092,-0.060985584,0.03659406,-0.0063546575,0.046108376,0.014488017,-0.0011888907,-0.0013418375,-0.017852033,0.050114,0.08345583,-0.015459483,0.08685816,-0.022615936,0.008313362,0.0125065325,-0.002259557,-0.018796593,-0.020509144,0.030876826,-0.13281547,0.026480902,-0.011050768,0.07755631,-0.059008196,0.06782441,0.03863998,-0.011561073,-0.02618377,0.06067993,-0.06692917,-0.008200876,-0.026554001,0.03799057,0.026838418,-0.013613474,-0.03806804,0.0784272,-0.08889321,-0.09204199,0.015139115,0.010063784,-0.04560979,0.10496952,-0.0734868,-0.10749414,-0.020659655,-0.029999815,-0.011279752,0.059275184,0.0052143377,-0.020759955,0.05915541,-0.04521822,-0.0041953833,-0.0108363405,-0.016768133,-0.023390768,-0.03669842,0.024342297,-0.02819645,0.0067415996,0.04079184,0.029612213,0.04847488,0.0052572815,-0.06507156,0.001938781,-5.32159e-08,0.034195986,0.0045395964,-0.0053354916,-0.0029423372,0.053046823,-0.062867664,0.02814061,0.070954524,-0.05344393,0.052610803,0.13348933,0.021243203,-0.03087349,-0.06646868,-0.003907452,0.07837872,0.009536768,0.019914603,-0.021940483,0.007563069,0.032875333,-0.009720783,-0.02676493,0.00030350906,-0.03241286,-0.10642236,0.028976614,-0.0638738,0.05168628,-0.03220861,-0.025281182,-0.020122305,0.051224515,-0.075839326,-0.047463104,-0.08170722,0.0012859197,0.06170189,-0.040692184,0.01917057,0.08889866,0.020599551,-0.07352046,-0.04341424,0.06271852,-0.04594551,-0.04336937,0.028053684,-0.02825254,0.04468751,-0.016282775,0.015734952,-0.032425296,0.12091076,0.014974326,-0.012403816,-0.014876393,0.05920996,0.024687301,0.0042725075,0.02555609,0.120017394,-0.04839638,-0.079296954} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:07:43.090287+00 2026-01-25 01:27:50.902639+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 310 google Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB 1 t 313 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. La señorita nos atendio rapidamente y Byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. Muchisimas gracias !! nuestra experiencia ha sido fantastica. nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. la señorita nos atendio rapidamente y byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. muchisimas gracias !! 5 2025-12-26 01:27:48.341092+00 es v5.1 J1.03 {A1.01} V+ I3 CR-N {} {"A1.02": "Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo par", "J1.03": "Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a "} {0.05941869,0.06540509,-0.0064973785,0.0033453295,-0.051854253,-0.05703438,0.061823327,-0.006436056,-0.08836098,0.025008336,0.047287803,-0.033773147,-0.031047054,-0.013076837,0.015648788,0.022439988,-0.01976665,-0.009586837,0.024012683,0.017125208,0.056781657,-0.008770585,-0.04411269,0.13022135,-0.10511203,0.010135069,0.015290165,0.07627196,-0.07801829,-0.09690816,-0.06586762,0.06764515,-0.0152290985,-0.014020285,-0.032150153,0.058981746,0.028409299,-0.0560626,-0.031503182,0.024417356,-0.0887995,-0.011596999,-0.0042326427,0.061719477,-0.041253187,-0.02600588,0.009842842,0.09358426,0.077101424,-0.027419649,-0.11827738,-0.04373971,-0.021039912,-0.09559598,-0.016438046,0.04140302,-0.005547389,-0.066675864,0.03243195,-0.035703283,0.014745073,0.055432547,-0.011315058,0.03293316,0.045752324,-0.026316613,-0.015655464,0.03099823,-0.019852819,0.004580969,0.066259734,-0.08220867,0.02935981,0.010250191,-0.08375059,0.050598454,-0.03157262,-0.016105406,-0.00022034561,-0.016238263,0.07585064,-0.046625316,-0.00040104688,-0.04022113,0.02196417,0.02492434,-0.015891183,-0.031042114,0.06297052,-0.003232856,0.040978044,0.015832316,-0.022911964,-0.013716911,-0.0072966614,0.025452984,-0.026998952,-0.085250564,-0.059910733,-0.0006178935,0.07093756,0.042336214,-0.016705226,0.063993186,-0.04878267,0.075602084,0.057783417,-0.090880886,0.07278551,0.027412495,-0.15474741,-0.019549504,0.03237951,-0.09589668,-0.10217411,0.021143075,-0.027798884,-0.016571105,-0.061400913,-0.10739767,0.04498648,0.0027287959,0.03007675,-0.034223326,0.04399861,-0.038786277,0.05626289,1.564099e-32,0.013791223,-0.014416003,-0.030023733,0.09668077,-0.005080872,-0.0067358036,-0.038045224,-0.045872934,-0.06398655,-0.035107616,-0.09632669,0.008639869,0.02564349,0.06007903,0.07379878,-0.026561297,0.0770172,-0.07845161,-0.014110922,-0.019581873,-0.06742949,0.0009826844,-0.009692352,-0.041783728,-0.05864579,0.07296807,0.021351704,-0.021444438,-0.056761317,0.0938467,-0.019522684,0.004115691,-0.049862165,-0.028308798,-0.01655317,-0.01644815,-0.03954082,0.013714214,-0.015884027,0.02775891,-0.03963661,0.01588117,-0.022026056,0.06473878,-0.04329246,-0.018662298,-0.024813205,0.07896748,0.0938171,0.018313732,-0.08028801,-0.03912004,-0.06679022,-0.04628141,0.0029625713,0.016102612,-0.042921353,0.018810622,-0.0005639842,-0.07189181,0.038373817,0.0010528142,0.024712147,-0.029443987,-0.008877912,0.018929454,0.05148075,0.036923625,0.12683389,0.04704042,-0.041133437,0.026389807,-0.028871672,0.049789667,0.02958659,0.0015187686,0.016625177,-0.051508237,-0.018421682,0.07083791,-0.08459713,0.005361387,0.048708748,0.041812483,0.11434921,-0.0066398517,0.031209176,0.058225527,-0.0021786818,0.07418314,-0.024672415,0.09810959,0.09101722,-0.046138257,0.029541155,-1.5846635e-32,0.0456693,0.029978704,-0.07621586,-0.021433461,-0.04278161,-0.036897346,-0.049528077,0.0058558835,-0.041180037,-0.067166224,-0.122865126,-0.067006536,0.105787136,-0.09689553,-0.0146579845,0.038235024,0.0283132,-0.0525151,-0.077601135,-0.034919664,0.030635843,-0.042532742,0.0011095952,-0.040003974,-0.040779505,-0.021324975,0.048708327,-0.006121393,-0.09023914,0.010540141,0.045725837,0.05833483,0.0030183676,0.057080373,-0.0426301,0.08034401,0.054079454,0.0061837514,-0.003716988,-0.0053333067,0.0377463,0.06686669,0.03983024,-0.040713467,-0.0022186437,0.06879113,0.00526667,-0.09952061,-0.028871745,-0.07640325,0.104495704,-0.059511133,-0.04293772,-0.0055207806,0.15675932,-0.03741466,0.0006146181,-0.094464906,-0.061378837,-0.03378527,0.02921715,-0.0051018246,-0.085744254,-0.016183825,0.05370906,0.046069603,-0.042951655,-0.0014347015,0.036757812,0.034481615,0.016521731,-0.035937235,-0.110761955,0.07272892,-0.024131084,-0.015878245,-0.054582495,0.03666899,-0.002878384,0.019218605,-0.041530173,-0.006174727,-0.0023592964,-0.016071482,-0.036303684,-0.025534535,-0.054947335,-0.030120727,0.0053104484,0.052259948,0.029788151,0.03102749,-0.011129597,-0.07666693,0.0095911175,-6.177649e-08,0.038475703,-0.026878893,0.022298887,0.035506044,-0.042245165,0.05435202,-0.005860659,0.050984554,0.017110066,0.04341352,0.012657621,0.011949039,0.04373197,0.05169248,0.0027349668,0.036981054,0.10136536,0.102762535,-0.04977987,-0.11080903,0.06461071,0.03353651,-0.049048636,-0.026091775,-0.03476071,0.020993179,-0.036073137,-0.039947417,0.0055025406,-0.06161898,-0.05299973,-0.032701604,-0.06580353,-0.09045318,-0.07914729,0.024761673,-0.017222464,0.015459771,-0.023725368,-0.058211885,0.0075945864,0.05297875,-0.042549085,0.0033700117,-0.026324455,-0.10206733,0.037393168,0.01063343,-0.05171769,0.009428644,-0.0019499841,-0.0056356993,0.15388796,0.06701165,0.014082494,0.0021128536,0.008172954,-0.016779408,-0.043799218,-0.003788746,0.0903434,0.06595619,-0.029523233,-0.058184806} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:15:07.248245+00 2026-01-25 01:27:50.916846+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 311 google Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB 1 t 314 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sehr unseriös!\nBei der Auto Abholung musste ich ewig warten… vor Ort habe ich dann erfahren das die sich 1000€ vormerken/ abbuchen und ich die in einem Zeitraum von einem Monat zurück erwarten kann….\n\nDas Auto selbst eine Zumutung für die Landschaft….\nWir sind damit quer durch die Insel gefahren also auch durch aus Berg hoch und runter was für die Inseln keine unübliche Strecke ist.\nDafür war das Auto leider gar nicht geeignet.\nBei 30-40 km/h eine schaltempfehlung vom 1. Gang gegeben.\nÜber diese knapp 40 km/h kam man keines Wegs drüber…\nZumindest passten gequetscht 4 Koffer in die Schrott Karre.\nPEUGOT 208\nOnline haben wir Seat Ibiza „oder ähnliches“ gemietet.\nDas Auto hatte schon einige Schrammen und Farbe ist abgeblättert. Man hatte schon die Sorge das einem was angehangen wird.\nDie Rückgabe ging jedoch zügig und das Geld kam glücklicherweise auch schnell zurück - am selben Tag noch. sehr unseriös! bei der auto abholung musste ich ewig warten… vor ort habe ich dann erfahren das die sich 1000€ vormerken/ abbuchen und ich die in einem zeitraum von einem monat zurück erwarten kann…. das auto selbst eine zumutung für die landschaft…. wir sind damit quer durch die insel gefahren also auch durch aus berg hoch und runter was für die inseln keine unübliche strecke ist. dafür war das auto leider gar nicht geeignet. bei 30-40 km/h eine schaltempfehlung vom 1. gang gegeben. über diese knapp 40 km/h kam man keines wegs drüber… zumindest passten gequetscht 4 koffer in die schrott karre. peugot 208 online haben wir seat ibiza „oder ähnliches“ gemietet. das auto hatte schon einige schrammen und farbe ist abgeblättert. man hatte schon die sorge das einem was angehangen wird. die rückgabe ging jedoch zügig und das geld kam glücklicherweise auch schnell zurück - am selben tag noch. 1 2025-09-27 01:27:48.341101+00 de v5.1 J1.02 {} V- I2 CR-N {} {"J1.01": "Die Rückgabe ging jedoch zügig und das Geld kam glücklicherweise auch schnell zurück - am selben Tag", "J1.02": "Bei der Auto Abholung musste ich ewig warten… vor Ort habe ich dann erfahren das die sich 1000€ vorm", "O1.03": "Das Auto selbst eine Zumutung für die Landschaft…. Dafür war das Auto leider gar nicht geeignet. Bei"} {-0.0024481646,0.031942688,-0.10061528,-0.043871667,-0.085244216,-0.006181738,0.002433792,0.14990948,-0.06638906,0.022624426,0.016456049,-0.07836572,-0.02013226,-0.04746615,0.0014442828,-0.016968356,0.014375214,-0.060488816,-0.07340217,-0.012687949,0.033306997,-0.06986727,0.0059702867,0.030688157,0.01692773,0.004571676,-0.034923635,0.029739594,-0.022799516,-0.033696707,-0.012199189,-0.07542883,0.012175555,0.014244815,0.047996234,-0.08334145,-0.009181472,-0.070025034,-0.04620722,-0.016355198,-0.00015042984,0.016760256,-0.12665874,-0.030051254,-0.039665017,0.058088925,0.034845956,0.039733686,-0.09292283,-0.029049844,-0.014672926,0.03105967,0.059146233,-0.055519205,-0.01719856,-0.032398425,-0.027962351,0.047524266,0.091852784,-0.0020135355,0.0074815666,-0.05248065,0.041089658,-0.052435167,-0.09159351,-0.017763302,0.012050117,-0.09158081,0.056695312,-0.021332147,0.027664846,-0.0775314,-0.121103995,-0.057118047,-0.04323843,-0.000782205,-0.038309995,0.011730607,-0.011915994,-0.086045995,0.075212605,-0.03951759,0.10555726,0.043789014,0.040147915,-0.029269798,0.027044253,0.052123453,0.006373822,-0.005568662,0.022438107,0.0032689036,-0.08235399,0.03971891,0.002360237,-0.0057970053,0.086165465,-0.00037190766,0.07820847,-0.007703409,0.061332513,0.00089861796,-0.03731063,0.05910089,-0.030512534,0.010312261,0.05321614,0.039242353,0.033733632,0.03229602,-0.033323314,-0.025567437,0.006772706,-0.028338127,-0.04315116,0.0014063669,-0.04328032,-0.053644422,0.030273505,0.040723164,-0.03642181,-0.041901875,0.0515897,0.04446152,0.11897224,0.06644933,0.08887507,1.7689816e-32,-0.09651976,0.010650732,-0.07908275,-0.08453529,-0.019897513,-0.0258115,-0.04300959,0.14782651,0.04733165,-0.005916914,-0.05827566,-0.02413344,-0.0016890016,-0.061563622,0.079558045,-0.03984285,0.012346154,-0.077349715,-0.0053433888,-0.040055256,0.009479848,0.03266702,0.009314596,0.06116234,-0.0154041955,0.047274083,0.029668972,0.020872874,0.009664626,0.065817244,0.032691196,-0.08740289,-0.042966183,0.012848149,-0.043692823,-0.03030016,-0.059783474,0.023402357,-0.1060904,0.003538098,0.01957421,0.027259365,-0.016704468,-0.09754637,0.055841252,0.029994955,0.010919116,0.07712585,0.04319028,0.021879684,-0.061220948,0.05261466,-0.04466298,0.036674056,0.025762804,0.1291313,-0.07213722,-0.013050458,0.034005478,-0.013040281,-0.05741292,0.06635491,0.04107807,0.021297624,0.008815193,0.010830546,0.009129963,-0.030603949,0.02137223,0.054614905,0.014010194,-0.05447779,0.08140274,0.020256009,0.015112551,0.03252877,0.046053845,0.023795653,-0.14008899,0.059432663,-0.04639246,0.042430524,0.05908458,-0.052007593,0.021534966,-0.10777537,0.035390884,-0.00088623905,-0.064423285,0.088204205,0.060743645,-0.029828388,-0.067653246,0.029567488,0.0077899736,-1.6781385e-32,0.10169121,0.03162603,-0.005757178,0.0074051274,0.014363186,0.04112698,-0.029396638,0.034464728,-0.053635854,-0.03688137,-0.04123299,0.067037106,0.068279915,0.009820902,-0.016427087,0.002757184,0.010815568,-0.058609087,0.021650001,0.03299853,0.031122891,0.010518959,0.012523852,-0.010825746,0.039065648,0.032391027,0.015229386,0.047781996,-0.045406602,0.016500102,0.025120625,0.056178693,0.04566839,0.06176654,-0.06683222,-0.036655694,0.026240662,0.06449353,-0.047263388,0.030987265,0.035039727,0.030633222,-0.060145143,-0.08403408,0.059333045,0.016392112,-0.06611851,-0.039539456,-0.012674884,-0.09875049,0.04984666,-0.009108939,-0.03208535,0.015590034,0.04835092,0.0029023436,0.052998804,-0.0039254753,-0.07824242,-0.006903823,0.074257374,0.06068413,0.07166658,0.0033870128,0.027407736,-0.085963205,-0.0687526,-0.07440983,0.025889795,-0.01648383,-0.014007353,-0.043147616,0.015120864,0.078475185,-0.0122221485,0.026899764,-0.010146933,0.06454262,0.03678804,-0.0681302,-0.099126965,0.07345852,0.019768432,-0.009520224,-0.074778,0.023925062,-0.041681565,-0.0028027298,-0.005323887,0.038123015,0.07126188,0.056890022,0.07437538,0.022287503,-0.03661736,-7.075993e-08,0.0625674,0.04582271,0.008439438,0.06387097,0.006920669,-0.134066,0.0015899679,0.0855309,-0.050364636,0.05558448,0.04664628,-0.02724207,-0.050758,0.07471898,-0.11518212,-0.05619956,-0.05473413,-0.09845711,-0.057920896,-0.011227416,0.04730122,-0.05678425,-0.05510939,-0.02241858,0.032810833,-0.050904773,-0.082023434,-0.051994067,-0.010423632,-0.062589385,-0.05487261,0.06132867,0.038720794,-0.04868304,-0.039126404,-0.03981692,0.019315394,0.016259348,-0.06383039,-0.00095255254,0.06251078,-0.09245983,0.003010351,-0.066251926,0.08362775,-0.034290154,-0.039921533,-0.06675173,0.042660173,0.053052407,-0.006673583,0.01013387,-0.0062762476,0.08778652,0.03624408,-0.008717185,-0.034126196,-0.07355629,-0.0032877808,0.008242793,-0.034574494,-0.03037151,-0.0803843,-0.003385706} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:33:29.453468+00 2026-01-25 01:27:50.91971+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 315 google Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB 1 t 318 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Temps d'attente de 1h30 pour récupérer le véhicule\nN'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. Des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible. temps d'attente de 1h30 pour récupérer le véhicule n'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). on m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible. 1 2025-11-26 01:27:48.341113+00 fr v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Temps d'attente de 1h30 pour récupérer le véhicule", "J1.03": "N'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit e", "P1.02": "On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minut"} {-0.06176851,0.07126192,-0.010102096,-0.012987025,0.030564053,0.00919178,0.07955515,0.12744004,0.071087986,0.0340718,0.020401355,-0.11990568,0.043083664,-0.07505094,-0.08051082,-0.051098116,-0.043699984,-0.00786359,0.009053027,0.042064186,-0.024689721,-0.04076688,-0.020123145,0.036499444,0.014231046,-0.029096954,0.06216192,0.033122256,0.0037307837,-0.044126395,0.043242905,0.02805486,0.08529212,-0.08659422,-0.08579736,0.0033487387,-0.0020417126,-0.07192293,-0.02835714,-0.008713103,-0.026360523,-0.010462532,-0.13231255,0.038864814,-0.02648919,-0.010407231,0.09757081,0.052434124,-0.06812104,0.06269094,0.03561895,0.020814653,0.06420054,-0.111612834,-0.07839736,-0.026315663,0.02512034,-0.018937798,0.057627123,0.06334721,0.07172272,0.04435801,0.008226644,-0.03121816,-0.05691096,0.04022711,0.040722933,0.012874826,-0.019611554,0.060704365,0.07166708,-0.08636966,-0.03847293,-0.06823728,0.013196596,0.00512685,-0.00046662628,-0.05875792,-0.02590841,-0.032168604,0.0068458584,-0.023885678,0.008441866,-0.045059334,-0.0043353382,-0.041605633,-0.032789808,0.026140187,0.023260903,-0.07724664,-0.0026345835,-0.015454696,-0.04705231,-0.018912932,0.0709753,-0.04731105,-0.058968306,-0.044141028,0.018470053,-0.0120342765,0.025553517,0.0066224765,-0.029691651,0.053093277,-0.02966321,-0.02909202,0.086081244,-0.050882198,0.017628139,0.016448028,-0.023049744,-0.00845736,-0.0060540307,-0.029848058,-0.019637547,0.06357639,-0.05103968,-0.024528222,0.051795505,-0.0176583,0.083622485,0.0051835272,0.06597904,-0.051739145,-0.005908303,-0.0271793,0.094010405,1.1597222e-32,0.0069332067,0.059015058,-0.03503811,-0.08315069,-0.049497623,0.04177471,0.020113561,0.050890155,-0.020683348,0.038054995,0.02160891,0.044469547,-0.006300345,-0.037535686,-0.03329247,0.023730272,0.067472644,0.01595399,0.03619721,9.3740484e-05,-0.077904776,-0.13414311,0.05056255,0.009279281,0.0957581,-0.030812083,0.06333246,0.031372026,0.068960026,-0.0073451702,-0.033564325,0.035492424,0.048366386,-0.038984794,-0.041239623,-0.0155513035,-0.076562114,0.035732064,-0.006283481,0.009898166,0.014240163,0.05865628,0.0740072,-0.049097005,0.010213114,0.058898885,-0.024158802,-0.036398448,0.025295958,0.0145876985,-0.04120204,-0.019962747,-0.11788538,0.033451777,-0.033382416,-0.07145988,-0.09038864,0.094004765,-0.0908774,-0.072041236,-0.026926586,-0.09275002,0.0077712447,-0.10167646,-0.046552148,0.07297208,-0.07727118,0.015216719,-0.012827736,-0.017109126,-0.11099547,-0.050556596,-0.009036345,-0.01341688,0.04234406,0.035656277,-0.007786999,0.12772046,0.030918816,-0.009729196,-0.06439458,-0.07960728,0.01587918,-0.018063001,0.04046261,0.003282976,-0.009876281,0.04393919,-0.036267005,0.016973685,-0.010609732,0.013315115,0.039628837,0.021815015,0.03493492,-1.3388976e-32,-0.0033385414,0.05667208,0.016819376,0.03875451,-0.022223273,-0.021720191,0.05178928,0.061634433,-0.040615387,-0.049163915,-0.13447858,-0.022851875,0.06181403,-0.0039026425,0.0072949855,0.061440207,-0.033335928,-0.038285565,0.055198893,-0.025084255,0.020598225,0.019270414,0.03641107,0.030184371,0.0063017905,-0.012615956,-0.034723926,0.04016586,-0.04913832,-0.028170293,-0.053831127,0.022189273,0.036095526,0.04366093,-0.040692907,-0.0686703,0.05791922,0.104776405,-0.0044040387,0.03944971,0.050778877,0.007470578,-0.02035082,-0.04766244,0.040536597,-0.0901992,0.050278626,-0.0477355,0.0055307737,0.023950638,0.067293644,-0.0024146985,-0.035603035,-0.010667624,-0.02745462,-0.0151230395,0.05344136,-0.015509319,-0.05487138,-0.014339233,-0.038605634,0.13189194,0.0808756,0.059233557,-0.004217346,-0.0024838224,-0.039379667,0.07576507,0.09855555,-0.07510993,0.022022521,-0.0014445925,-0.036053892,-0.023290131,-0.040437665,0.027224455,0.022377647,-0.05264601,0.095248595,0.042007077,-0.097430535,0.057363115,0.04375772,0.0059688394,0.020820864,0.023031404,0.018553566,-0.102039166,-0.0099197095,0.04317903,-0.09171941,0.03248858,-0.006353691,-0.043361742,0.028709127,-5.6005256e-08,0.03019896,0.006490132,0.008839195,0.010952076,0.072747305,-0.13743623,-0.08954632,0.014777201,-0.069958575,0.029270127,0.04500702,0.034626678,-0.057752445,-0.08687586,-0.061860494,-0.044167638,-0.026993109,0.0063932347,-0.039018083,0.011390568,0.09105985,-0.0076689315,-0.03824531,-0.05913675,0.0073110037,-0.076715626,0.029972155,0.0425378,-0.0024428177,-0.07018935,-0.06775337,-0.012109795,0.011856762,0.022195593,0.09131913,-0.07075267,-0.0025375662,-0.008570907,0.004754451,0.035072055,0.08245771,-0.046788342,-0.023683324,-0.03478975,-0.005700618,-0.05726767,-0.10172068,-0.044420112,0.080095336,0.012655989,-0.03265809,-0.008673278,0.05926081,0.1268472,0.02564844,-0.0058877976,-0.05976978,0.033580408,-0.019901749,0.020476913,0.019612884,-0.104101054,0.02604213,-0.12613732} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:21:34.598165+00 2026-01-25 01:27:50.93381+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 316 google ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB 1 t 319 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Achtung. Nicht mieten. Abzocke bei Rückgabe! Haben gerade 230 Euro extra bezahlt. Die günstigen Preise werden durch kleinste Kratzer bei der Rückgabe finanziert, die man sich dann teuer bezahlen lässt. Sicher nicht durch uns verursacht. Wir haben sogar Fotos vom Auto gemacht vor der Abholung, aber die Kratzer die man dann gefunden hat (mit viel Abtasten auf den Knien) waren UNTER der Stoßstange. Da wird auch bei der Übergabe nicht gemeinsam geschaut. Es ist auf jeden Fall Masche. Die Bilder sprechen für sich..... achtung. nicht mieten. abzocke bei rückgabe! haben gerade 230 euro extra bezahlt. die günstigen preise werden durch kleinste kratzer bei der rückgabe finanziert, die man sich dann teuer bezahlen lässt. sicher nicht durch uns verursacht. wir haben sogar fotos vom auto gemacht vor der abholung, aber die kratzer die man dann gefunden hat (mit viel abtasten auf den knien) waren unter der stoßstange. da wird auch bei der übergabe nicht gemeinsam geschaut. es ist auf jeden fall masche. die bilder sprechen für sich..... 1 2025-03-01 01:27:48.341115+00 de v5.1 P1.03 {} V- I3 CR-N {} {"J1.02": "Wir haben sogar Fotos vom Auto gemacht vor der Abholung, aber die Kratzer die man dann gefunden hat ", "P1.03": "Achtung. Nicht mieten. Abzocke bei Rückgabe! Haben gerade 230 Euro extra bezahlt. Die günstigen Prei"} {-0.02920593,0.06506521,-0.071277656,0.021970293,-0.08506799,0.018680975,0.08509725,0.09418446,-0.043296,0.008696283,-0.03284084,-0.017823633,-0.013578029,-0.049778335,-0.0195875,-0.019997569,0.044229172,0.029261805,-0.015478613,-0.030433355,-0.0055995756,-0.15318199,0.0061721154,0.10101285,0.034753066,-0.012617915,-0.00697771,0.037793808,0.008703645,-0.064315155,0.03720629,-0.021680454,-0.024794271,-0.07380552,-0.006213334,-0.03262885,0.012135071,-0.026359236,-0.059270065,0.029446669,0.009322306,0.06061158,-0.05812933,0.014023101,0.058886863,0.010951775,-0.012425398,0.112944245,-0.07029121,-0.024782807,0.0067959386,-0.025899606,0.0011341231,-0.0737823,-0.017567404,-0.11756365,-0.04992882,0.045493513,0.02303435,0.04953375,0.024156688,0.005403492,-0.04314187,0.010493969,-0.06848893,-0.0034480153,0.00780796,-0.15688203,-0.028043048,0.0056848703,0.04157651,-0.1408241,-0.03307243,-0.055616666,-0.04722509,-0.009434861,0.03937563,0.06811964,-0.07622757,-0.07788664,0.053408917,-0.06918062,0.014406,-0.04177712,-0.0006905793,-0.01826092,-0.012561517,0.029455455,-0.034281284,-0.066269286,0.07337139,0.05257834,-0.047032166,-0.0055826283,0.02302009,0.0042657186,0.010406532,0.012400834,0.053949397,0.024947096,0.06865748,-0.035969783,0.0063528623,0.017500546,-0.07017814,0.036848392,-0.050664797,0.046844892,0.0074968915,-0.009334001,-0.027454477,0.032132596,-0.014189059,-0.061033938,-0.0041799,-0.005853488,0.0071948036,-0.10564229,0.05547509,-0.009561315,0.0028225826,0.04630613,0.038323905,0.022668524,0.0742184,-0.010789541,0.018070547,1.5682332e-32,-0.056054205,0.0046737567,-0.0001311286,-0.054421943,-0.19494826,0.017219124,-0.020683737,-0.015484562,-0.07855242,-0.02980594,-0.041652244,0.072697215,0.0026752597,-0.03708021,0.05792922,0.040627457,0.05524747,-0.013838678,0.093853325,0.035312075,-0.077313274,-0.08090785,-0.03452842,0.13471757,-0.01705669,0.11010859,0.027275473,0.0017724122,-0.05408444,0.027825356,0.061990697,0.05009507,-0.013546248,0.050113484,-0.11775316,-0.039709028,-0.038472388,0.07240883,-0.04290355,-0.0229746,0.04267605,0.03824544,-0.037099212,-0.026529614,0.10247255,0.01479634,-0.009841247,0.018041234,0.057348493,-0.008141298,-0.061044734,-0.00304562,0.03137323,0.053879324,-0.015995517,0.09223375,-0.05809742,-0.006773572,-0.009873954,-0.027730035,-0.017675549,0.09218436,0.007639795,-0.0078038475,-0.0011938934,-0.030247694,0.05523171,0.017319774,-0.027999131,0.055664577,-0.044795826,0.013357798,0.104768924,-0.004703451,0.005232223,0.03688787,-0.04812771,0.07108101,-0.093977354,0.055552542,-0.05975,-0.005941587,0.057467513,-0.11446383,0.020644022,0.013045486,0.012518947,0.0056625637,-0.0124317,0.08550817,0.003986077,-0.049082715,-0.070851594,0.015632467,0.04788522,-1.4716938e-32,0.17112912,0.06338597,-0.011368639,0.06209684,0.022731943,0.017764535,0.019431451,0.004405474,-0.048470844,-0.0303135,0.04102407,-0.017144503,0.051654425,-0.027203301,-0.04412121,-0.003759838,-0.009051473,0.021948563,-0.021201259,-0.11242357,-0.059210707,-0.017476004,-0.0062561044,0.025007792,-0.01212834,-0.04659903,0.013962383,-0.01649261,-0.049443968,-0.025870824,0.019957663,0.030746361,0.047551066,0.019461565,0.008235949,-0.02638523,0.02329878,0.07308809,0.007967868,0.012363044,-0.029846566,0.0866598,-0.053306792,-0.03937231,0.11923325,-0.044630114,0.017113803,-0.02043852,-0.050833307,-0.08595988,0.05501587,-0.044756304,0.01659578,-0.03675627,0.023484403,0.03901312,-0.010095834,0.0359656,-0.006472146,0.051237613,0.10818205,0.056295697,0.028519917,-0.045728285,-0.032756947,-0.06380692,-0.029627865,-0.04080041,0.08706961,0.06398692,0.036279563,-0.023125064,0.027261734,0.051470134,-0.060956713,0.024822928,0.020875653,0.08770259,0.042378522,-0.0024927605,-0.03249647,0.026162658,0.018101774,0.05626813,0.042678673,-0.028757717,-0.07800926,-0.005512946,0.027425557,-0.06888489,-0.020664826,0.031368226,0.007427203,-0.04338197,0.02902136,-6.0691605e-08,0.090813406,0.04943466,-0.121635266,0.05326298,0.049551457,-0.0047138873,0.006283235,0.021763092,-0.08775432,0.074254416,-0.004621494,-0.07173116,-0.024792628,0.049998865,-0.10361229,0.05502896,0.014600967,-0.001471777,0.022438202,-0.021928223,0.0913807,-0.05805153,-0.038411006,-0.0385622,-0.046878126,-0.011180169,-0.058735654,-0.012737188,0.042684767,0.012990997,-0.017863872,0.008519947,0.0528579,-0.024888812,0.05244601,-0.054612108,0.024465453,0.104609594,-0.016784666,0.076050036,0.06373224,-0.08334608,0.02039216,-0.050995354,-0.0907309,-0.055846322,0.016177043,-0.028497802,-0.031535383,0.059098426,-0.011766537,-0.017169626,-0.08040534,0.04502174,-0.04221811,0.038968764,0.031553876,-0.047711775,0.014787669,-0.034212556,-0.020217342,-0.06443162,-0.07147819,0.044287495} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:51:29.791871+00 2026-01-25 01:27:50.935792+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 317 google Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB 1 t 320 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir können uns nur Positiv über diesen Autovermieter äußern.\nWenn man den Anweisungen folg um zu dem Treffpunkt zu kommen, kommt man auch tatsächlich an. Es war eine Promte und unkomplizierte Abwicklung beim abholen und zurückgeben des Fahrzeugs. Wir wurden darauf aufmerksam gemacht im vorfeld alle Schäden zu fotografieren und mit der Kamera einmal um das Fahrzeug zu laufen.\nSehr nettes Personal und das Auto war auch sehr neuwertig. Können den Vermieter nur weiter empfehlen. wir können uns nur positiv über diesen autovermieter äußern. wenn man den anweisungen folg um zu dem treffpunkt zu kommen, kommt man auch tatsächlich an. es war eine promte und unkomplizierte abwicklung beim abholen und zurückgeben des fahrzeugs. wir wurden darauf aufmerksam gemacht im vorfeld alle schäden zu fotografieren und mit der kamera einmal um das fahrzeug zu laufen. sehr nettes personal und das auto war auch sehr neuwertig. können den vermieter nur weiter empfehlen. 5 2025-11-26 01:27:48.341117+00 de v5.1 J1.03 {A1.01,O1.01} V+ I2 CR-N {} {"A1.01": "Sehr nettes Personal und das Auto war auch sehr neuwertig.", "J1.03": "Wir können uns nur Positiv über diesen Autovermieter äußern. Wenn man den Anweisungen folg um zu dem", "R1.01": "Können den Vermieter nur weiter empfehlen."} {-0.039087612,0.06852768,0.009724741,0.016649783,0.06034676,0.0089086,0.09549443,0.09607935,0.008612722,0.008081058,0.08123416,-0.04185363,0.035334785,0.006514636,-0.006724618,0.0031360404,-0.06929814,-0.0047062295,-0.01742575,0.023698132,-0.07718142,-0.13208552,0.044686403,-0.042850614,-0.011133962,-0.0019228773,-0.053151198,-0.02839816,-0.002431737,0.0016505327,0.037752878,-0.089641325,-0.05710836,-0.0512439,-0.019247932,-0.015387106,0.0140755735,0.0135615915,-0.052610744,0.06086958,-0.07109252,-0.06632502,-0.095739484,-0.08920087,0.020033749,0.03638502,0.044117115,0.048312336,-0.10967939,0.035103753,-0.030590218,0.058616936,-0.00031942647,-0.040189505,-0.028474612,-0.10020782,0.012329587,0.028358039,0.006373652,0.05380556,-0.015957788,-0.05770977,-0.04649154,0.010820319,0.07055973,-1.8122028e-05,-0.011647005,-0.049266115,0.07742349,0.048435368,0.0031048963,-0.077986345,0.01891695,-0.038374603,-0.017711245,-0.0076115876,-0.066508025,0.030003542,-0.039365735,-0.08305861,0.05906969,0.008954188,0.02081182,0.056257445,0.043079976,-0.05428815,-0.038802367,0.0470287,-0.026867338,0.08107936,-0.06473914,0.056609318,-0.077104725,-0.036283907,0.02313551,-0.028092885,-0.008322161,-0.008052001,0.03173285,0.05734773,-0.02016427,-0.03311101,-0.033094555,0.062571794,0.08317928,-0.0171903,-0.11321851,-0.008481508,-0.018412951,0.047091532,-0.047555916,-0.061777186,-0.022830471,-0.057635836,0.058457375,-0.023048155,-0.028693238,-0.08675667,0.035213202,0.011377575,-0.009499601,-0.069357246,-0.014796397,-0.029317247,0.06899021,-0.075213544,0.09829009,2.0263476e-32,-0.06467485,-0.014229316,0.003738756,-0.06407205,0.0229044,0.04474784,-0.040384065,-0.021397565,0.052578762,0.060146376,-0.049721092,0.07862245,-0.091105804,0.07342937,0.059040714,-0.029853648,0.06709241,-0.043060977,0.03825196,-0.028046058,0.030719783,-0.013573061,-0.028961511,-0.011235682,-0.007294512,-0.0068764742,0.043621723,0.0393588,-0.072535194,0.059472598,0.053088456,-0.06728539,0.043698892,-0.02152648,-0.055294164,-0.043857858,-0.07419448,0.05339457,-0.09175566,-0.019426608,0.0071535767,0.031825237,-0.03960261,-0.040221997,0.052478325,0.017228257,0.00204456,0.064706266,-0.06351929,8.074776e-06,-0.0075278836,0.008971092,-0.07368348,-0.04373517,-0.011439126,0.063648835,-0.077175096,-0.025270727,-0.07119731,-0.02848685,-0.010550357,0.03822263,0.011135238,-0.07016166,-0.021488871,-0.018487347,0.06724538,0.013069063,-0.057856645,0.009450854,-0.057587985,0.065905444,0.0013120702,0.0029353572,0.09134068,0.073097795,0.025633203,0.052595086,-0.089396775,0.023654835,-0.06936794,0.012931729,0.121740274,-0.011812116,-0.033544026,-0.04859596,0.006475458,0.009216905,-0.026729438,0.07317163,0.052690685,0.025066324,0.003067667,0.047146324,0.0010885651,-2.0609381e-32,0.053615723,0.07512533,-0.027179407,-0.0053347903,0.05045081,0.12230633,-0.02525307,0.05793359,-0.07465568,0.061644714,-0.024206398,0.010834369,0.0048658964,-0.002618034,-0.026249994,-0.0071451063,0.0037776942,0.004533225,-0.05843024,-0.033424877,-0.04577771,0.060016762,0.05507488,-0.01873257,-0.02676282,-0.0134253735,0.049892318,0.026191032,-0.08627272,0.05781254,0.024240237,0.05638425,0.02394775,-0.024072299,0.06761206,-0.007151449,0.035341736,0.02735119,-0.08334671,0.057826683,0.05627848,0.05857594,-0.029053872,-0.060459893,0.031389322,-0.010978047,-0.17777489,-0.11165851,-0.02587069,-0.037205897,0.0500737,-0.01634379,0.06150825,-0.054350834,0.0034713608,0.10170737,0.06762797,-0.021448083,-0.022300912,0.0717403,0.043322958,-0.04105549,0.03610263,0.021793272,0.0034254058,-0.09559673,-0.06052765,0.030403884,0.018863246,0.020171843,0.059562124,-0.015858818,-0.0061615817,0.047839303,0.03150349,-0.028348057,0.049300905,0.040905125,-0.02918532,0.012831467,-0.04997244,0.039633647,-0.02657806,-0.010212514,-0.14365743,-0.011315593,-0.028030062,-0.033299707,-0.035781346,0.014853775,0.029657535,0.07669649,-0.093310066,-0.008597632,-0.0027678553,-6.721034e-08,0.028166559,-0.05827458,0.06721191,0.038732212,0.02246672,-0.08128608,-0.0033907401,0.015773851,-0.083230436,0.04439282,0.0103277555,-0.016952997,-0.0063800123,0.055482287,-0.11222874,-0.00919568,0.090695634,-0.0091752075,-0.055525098,-0.034140024,0.018002275,-0.051982198,-0.077075295,-0.0050468384,0.056662764,0.022337643,-0.03285919,-0.008496067,-0.02999143,0.047060877,0.011125879,0.07727611,-0.039770745,-0.015263773,-0.1351192,-0.004079337,0.06080592,-0.06771118,-0.15768905,0.03256641,0.06703255,0.0139810685,0.017728478,-0.00659974,0.021898761,-0.05578694,0.06454891,-0.057594277,-0.076302096,0.12852035,-0.032650325,-0.0294014,0.04192058,0.009312406,-0.052664567,-0.054123875,0.051410716,-0.015982432,0.0040920866,-0.013147352,-0.0153187625,0.046325147,-0.0010122453,-0.012050766} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:21:22.74158+00 2026-01-25 01:27:50.937756+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 319 google Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB 1 t 322 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person gab es ebenfalls nicht. Es hat über 1 1/2 Stunden gedauert, bis jemand kam und das auch nur, weil ein anderer Kunde in der Vertragsabteilung in Madrid angerufen hat.\nDanach war dann alles soweit in Ordnung. leider war der flughafenshuttle nicht zu finden. eine telefonnummer zum anrufen einer realen person gab es ebenfalls nicht. es hat über 1 1/2 stunden gedauert, bis jemand kam und das auch nur, weil ein anderer kunde in der vertragsabteilung in madrid angerufen hat. danach war dann alles soweit in ordnung. 2 2025-12-26 01:27:48.341121+00 de v5.1 J1.03 {} V- I2 CR-N {} {"J1.01": "Danach war dann alles soweit in Ordnung.", "J1.03": "Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person "} {-0.08742347,0.030287394,-0.0709067,-0.063246325,-0.057888858,0.0024936933,0.064923465,0.11058855,0.019831631,-0.027395058,0.019475477,-0.04496619,0.021828398,-0.056149628,-0.04711195,-0.060150262,-0.12253124,-0.021563608,-0.026500404,-0.017438253,-0.0965847,0.027414449,0.032091092,0.061940055,-0.040315658,-0.10473767,-0.026754173,-0.02999674,-0.005053382,-0.023688687,0.13472514,0.031692617,-0.049283605,0.039202806,-0.02296183,-0.08831164,0.07778071,0.022535192,-0.038337857,0.051066145,-0.04454099,0.015696531,-0.055767953,-0.0746462,0.03871045,-0.0049343957,0.009523405,0.02173302,0.008710667,0.06783376,-0.017189609,0.09124345,0.021507626,-0.010038823,0.031770643,-0.016284948,-0.026030356,0.024749694,-0.014380887,0.16898577,-0.01085245,-0.0049937475,0.042758502,-0.053017836,-0.055869248,-0.0005325068,-0.010962465,-0.0788917,-0.008498592,0.003528276,0.031660795,-0.04481328,0.030631527,-0.02722049,-0.014406381,0.07955573,-0.1424709,-0.0021443604,0.09037527,-0.052928284,-0.052280024,-0.079840906,0.09467763,0.0006942877,-0.014069536,0.00026004354,0.07747033,0.05139026,0.0441384,0.05393686,-0.031281892,0.06857399,-0.0155174695,0.055548366,-0.10108869,-0.04803895,0.043536883,0.048410844,-0.021907283,0.084236346,-0.07537225,-0.021465462,0.006631584,0.06398086,-0.089712545,-0.031183952,-0.03925603,-0.07582305,0.04240851,-0.046534088,-0.0089547625,0.009491491,-0.051530015,-0.05869331,0.008367683,-0.059027124,0.017013445,-0.11308142,0.025661984,-0.055604722,0.06679841,-0.057528984,-0.08438999,0.057581864,0.012037552,0.033697207,0.07508325,1.8213672e-32,0.030571196,0.0101105645,0.06726028,0.041598227,-0.03787438,0.031716615,-0.010887202,0.03001376,-0.026503706,0.026079003,-0.0463876,-0.007136014,-0.016572997,-0.032623317,0.021242881,-0.07165495,0.018176427,-0.07608385,-0.05353842,-0.0791909,-0.0042499984,-0.044235997,0.0024491919,0.05799885,0.10659514,0.0032797044,-0.01706737,-0.016044293,0.04285258,0.03550799,0.01775917,-0.057510134,-0.024263702,0.018279864,0.008116815,-0.010806271,-0.016911995,0.061545633,-0.037774324,0.0036194604,0.037138335,0.0029373276,-0.07454102,-0.051945545,0.011821217,0.011200318,0.023057899,0.06409165,0.018963791,0.007819114,-0.04406218,0.040842693,-0.038829956,0.034213915,0.08886873,0.0020564275,-0.013279613,-0.016924184,-0.0015473382,0.049088325,-0.0043609156,-0.04978196,-0.0047883326,0.0025770809,0.02696525,-0.020872101,0.032370206,-0.022931509,-0.009616804,0.024147753,0.019289495,0.025610406,0.08122054,-0.024755308,0.0022884659,0.06223832,-0.047187325,0.050028108,-0.08719774,0.038603235,0.04954315,-0.042229827,0.046449337,0.0115131335,-0.0015324008,-0.048933897,0.022926891,-0.09044411,-0.04491097,0.1321861,0.02319037,0.10255316,0.047109473,-0.0040200087,0.024646861,-1.6942412e-32,-0.023799762,0.014157881,-0.03464027,-0.022293646,-0.06868827,0.010360597,0.030056741,0.042141233,-0.007948958,0.013622334,-0.043219756,-0.039467774,0.06719299,-0.04741063,-0.06605277,0.01045367,0.0866375,0.01919339,0.024826918,0.010497255,0.035822604,-0.026526941,-0.06826023,-0.0030765398,-0.06366244,0.03210807,0.04159041,-0.014130404,-0.017846435,0.011664629,-0.03500314,0.0010486876,0.051844545,0.019247334,-0.04076213,-0.038734123,0.14176403,0.08366756,0.022814017,0.025202593,-0.030027483,0.083841674,-0.03015348,-0.029575037,0.019376913,-0.03312149,-0.092428915,-0.011671973,-0.09898229,-0.11818548,0.033293974,0.057573434,0.016199866,0.027882496,-0.0016967221,0.04844999,-0.011051747,-0.05680342,-0.008983409,0.06745847,0.05815025,0.013539006,-0.009150688,0.021964634,0.062179014,-0.086514734,-0.05908665,0.023635738,0.065815866,-0.014275029,0.14209066,-0.0021609273,0.0406148,0.014694204,-0.024126247,-0.057041116,-0.020499818,0.045811173,-0.012727548,0.117209636,0.045598004,0.049229126,0.009474703,-0.09300245,-0.06438714,-0.027831564,0.13277313,0.030475652,-0.029460385,-0.09872831,-0.0028356442,0.045461334,-0.010171706,-0.038188715,0.024124132,-5.956381e-08,-0.010161545,-0.088616416,-0.050560523,0.019100249,0.051456254,-0.03801914,-0.022291405,0.07577044,-0.07522442,0.071870536,0.013330363,0.009304133,-0.06342071,0.02753011,0.029950548,-0.010194566,0.030457564,-0.08457079,-0.031792037,0.09881929,-0.007210905,-0.007922852,-0.041491542,-0.14887846,-0.046373546,-0.001431651,-0.012063545,0.030340293,0.004188287,-0.028354794,-0.059172787,0.05708036,-0.010684951,-0.08480246,-0.06125971,0.0036739013,0.0025383786,0.024561133,-0.027972676,-0.018864254,0.03773102,0.00062775984,0.03435501,-0.003300318,0.039960016,-0.06670085,-0.010166038,-0.08567764,0.005933968,-0.08698408,-0.017530346,0.04842614,0.08401878,-0.010795155,-0.08276122,0.0032168897,0.007392786,-0.008299319,-0.07935693,0.051953644,-0.038645823,-0.0113806715,-0.0058230734,0.019329274} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:14:56.911323+00 2026-01-25 01:27:50.943637+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 320 google Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB 1 t 323 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , como el chico que recibió el vehículo, Dani , una atención excelente . Sin duda volveré a alquilar con esta compañía muy contento con esta compañía. el vehículo muy nuevo y limpio . la chica que me atendió carmen , como el chico que recibió el vehículo, dani , una atención excelente . sin duda volveré a alquilar con esta compañía 5 2026-01-11 01:27:48.341123+00 es v5.1 O1.01 {A1.03} V+ I2 CR-N {} {"O1.01": "Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , co", "R1.01": "Sin duda volveré a alquilar con esta compañía"} {0.022652293,-0.051796183,0.01921206,-0.03224142,-0.048963625,-0.001968134,0.053461343,0.036532894,-0.061048243,-0.0025865948,0.058486912,-0.021963168,0.017420229,0.017618101,0.031485803,0.06358098,0.055771116,0.04912724,-0.031635985,0.06524763,0.05122275,-0.0005392454,-0.047119576,0.099188864,-0.068486325,-0.0044855042,-0.022430852,0.05145628,-0.05758533,-0.096865036,-0.066361345,0.0943392,0.08916009,0.004275978,-0.0037576435,-0.053259727,0.036412824,-0.059442908,-0.027125653,0.04974882,-0.09428909,-0.048072774,-0.037711136,-0.0074457354,-0.0021923904,-0.10064263,0.06525106,0.084324844,0.10782246,-0.07355005,-0.058645707,-0.024776734,-0.041251753,-0.016417176,-0.06871964,0.051053714,0.024606135,0.017890636,0.09093411,0.058840882,0.088951446,0.059044413,0.045224406,0.08627178,-0.011066484,-0.07358099,-0.025064193,0.041286793,-0.13397877,0.012346704,0.07400143,-0.050470997,0.005774356,0.014667923,-0.022590159,0.0026179696,0.06319428,-0.017898006,-0.039440554,-0.005525443,-0.06935896,-0.0029997828,-0.018009946,-0.09747479,0.00745762,0.019571418,-0.032725953,-0.004643902,-0.022547279,-0.01954995,-0.014569502,0.043878995,0.0067689978,-0.009588791,-0.022957832,0.04730012,0.058721665,-0.09700216,0.10226872,0.024135556,0.064541094,0.044717357,0.123440415,0.013343958,-0.06095426,0.019428117,0.04330894,-0.016266841,-0.0088041555,0.001951141,0.013733971,0.014731789,0.001848237,0.010319593,-0.09962027,-0.018293409,-0.054608047,-0.028267838,-0.015552539,-0.057529196,0.030089779,-0.0108376825,-0.046473637,0.017609663,0.03794941,-0.08326155,0.07701084,8.8131344e-33,-0.025155786,-0.021514265,-0.021320077,0.043151382,0.0029415688,0.052909028,-0.017777652,0.006119152,-0.08482579,0.03951963,-0.10123747,0.050419424,-0.003885691,0.043043245,0.035072684,0.080656275,-0.024195734,-0.059191145,0.07368023,0.03915192,-0.007888058,0.0074559953,0.037966378,-0.01702788,0.018217042,0.04677673,0.007637372,-0.09303547,-0.004571976,0.044919033,-0.036375698,0.058036894,0.02555432,-0.014502658,-0.030306948,-0.03937171,-0.038008504,0.060346402,-0.06076816,-0.0033052966,0.06229835,0.0428204,-0.07024098,0.03137064,0.012191084,0.041073665,0.118003726,0.07570412,0.052324377,0.026527895,-0.06729867,-0.08138404,-0.042573743,-0.045334674,-0.00565157,0.009005028,-0.01941235,0.036594193,-0.034156308,-0.05118543,-0.0036608265,0.053776726,0.052142985,-0.08453491,0.010262911,0.056704488,-0.023832552,-0.028815461,0.1297125,0.011412831,-0.023962205,-0.021954374,-0.08960664,0.055209957,0.0074982294,-0.03600514,-0.018035283,-0.022165306,0.04055571,-0.009442303,-0.016316375,0.085468225,0.0015283385,0.06539395,0.061485372,0.10383399,0.045253944,0.004389265,-0.0062938733,0.12411324,-0.051594708,0.029676264,-0.0073251366,-0.05957421,0.10156614,-8.260896e-33,-0.0082740495,-0.0042893607,0.019745054,0.06701345,0.029053764,-0.027419174,-0.04015936,-0.0043888437,0.02866844,-0.05561427,-0.059699,-0.14513047,0.08503429,-0.043649126,0.007036995,0.090759,-0.044853006,-0.0692701,-0.1251087,0.010619622,-0.024382846,-0.046733707,0.046982396,-0.025516322,-0.017781748,-0.043864846,-0.017732903,-0.01841619,-0.055709396,-0.04468142,0.028634263,-0.054222424,-0.06193423,0.018765684,-0.047431543,0.003102005,-0.028557003,0.051245082,0.008827141,0.021185404,-0.007968125,0.05491727,0.03386772,0.03331317,-0.047537703,0.019137394,0.010316806,-0.13795881,0.033626765,-0.051027197,0.07803604,-0.104907446,-0.019690199,-0.03461906,0.06826462,0.007888909,0.03374949,0.00030905064,-0.083985694,-0.018562317,0.03503008,0.012325427,-0.06930805,0.0009813157,0.072349735,0.029347863,-0.025009673,-0.014705842,-0.071343854,0.020460874,0.05951402,-0.0075855684,-0.08897914,-0.015702192,-0.012553814,-0.033939008,-0.17202528,-0.017566307,-0.018027598,0.05681245,0.0715267,-0.058042385,0.0032465411,-0.009924644,0.045587655,0.010322434,-0.047774214,0.00796004,0.032792475,0.04916599,0.029498326,0.030638454,-0.07395097,-0.0734867,0.019720992,-3.812955e-08,0.04243494,-0.04138274,-0.049428422,0.00977859,0.033023015,0.0071886163,0.0207981,0.01499917,-0.024434978,0.081846625,0.0100576505,-0.020199662,0.034353144,0.06501211,-0.007713342,0.060894612,0.07888778,0.031069048,-0.0032138426,-0.028658263,0.08608021,0.01570312,-0.030483613,0.018174363,0.043604117,-0.049574625,-0.0551548,-0.023837093,0.014791889,-0.012922664,0.0056380723,-0.0053786095,-0.025936576,-0.11210363,0.0010778112,-0.079497814,-0.022489814,0.032872304,-0.017340861,-0.09156416,0.085645676,0.054857355,-0.061400607,-0.013119791,-0.008908083,-0.08063356,-0.030273808,-0.024607347,0.02756734,-0.0039287354,-0.040594444,-0.090649,0.01536196,0.042170174,-0.01102164,-0.052282017,0.01088125,0.055005487,-0.015046204,0.031509828,-0.019632686,0.066644475,0.033967335,-0.09233004} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:02:53.381082+00 2026-01-25 01:27:50.949047+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 323 google Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB 1 t 326 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown De momento muy mal, iré actualizando.\nPrimero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar.\n40 minutos esperando en el aeropuerto a la van.\nLlegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. Surrealista, veremos a ver cuándo me atiendan, de momento hay ya dos personas con distintas reservas que han salido cabreadisimas. Iré actualizando.. de momento muy mal, iré actualizando. primero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar. 40 minutos esperando en el aeropuerto a la van. llegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. surrealista, veremos a ver cuándo me atiendan, de momento hay ya dos personas con distintas reservas que han salido cabreadisimas. iré actualizando.. 1 2025-11-26 01:27:48.34115+00 es v5.1 J1.02 {} V- I2 CR-N {} {"J1.02": "Primero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantánea"} {0.028181773,0.047522243,0.03552257,-0.05045446,0.011379752,-0.020486375,0.04721511,0.050067812,0.02584738,0.042373944,0.10692767,-0.046515796,-0.0007518424,0.034412615,0.019796334,-0.045112375,0.006057284,0.0006717804,-0.02897616,0.08058128,0.13620453,-0.093195975,-0.095246874,0.10953779,-0.05593542,-0.0032684973,-0.015828695,0.011204742,-0.10414747,-0.07368997,-0.018230377,0.040091395,0.07437248,-0.034338925,-0.037321948,0.013346491,0.08081305,-0.004289644,-0.06532376,0.060055856,-0.06638116,-0.06645389,-0.052887376,-0.038482096,-0.0064181164,-0.00422007,0.051802035,0.029301675,0.040189274,-0.033815783,-0.099813156,0.017002627,0.011769609,-0.028612548,-0.04407783,-0.051770423,0.024676101,-0.03307972,0.108577155,-0.015739314,-0.036568314,-0.0425945,-0.04238558,0.012064615,-0.008621228,-0.06473063,0.017304167,-0.012649909,-0.014762231,0.07151503,0.09717602,-0.05259304,-0.04818916,0.047860857,-0.038110398,0.011591113,0.021055514,0.016744675,-0.04218546,-0.07603322,0.021713609,-0.03955253,0.056622226,-0.071891576,-2.4615689e-05,-0.009441936,-0.010387549,0.052212153,0.038230844,0.008768094,-0.09571154,0.076985925,-0.108248845,-0.020563073,0.05683715,0.04600136,-0.019314725,-0.04215006,-0.0005953395,0.015238461,0.10977359,0.004807274,0.0015557979,0.004124061,0.00279403,0.05904811,0.025422873,-0.017586643,-0.029307447,0.012952577,-0.038377095,0.010154797,-0.027745346,-0.05325242,-0.013900576,0.011759964,-0.056768306,-0.038484298,-0.07728523,-0.05895392,0.023048649,-0.009348181,0.02220584,-0.033314846,0.06916141,-0.033041917,0.068733074,1.5387622e-32,-0.036695972,-0.022759924,-0.04795137,-0.0038847467,0.13089126,0.016561436,-0.07064233,0.048321903,-0.02524083,0.03485218,-0.08872203,-0.026000177,-0.0043482105,-0.03004666,0.067562535,-0.020989241,0.055155,-0.049089096,-0.053248525,-0.048255283,-0.03770569,0.019503769,0.02000567,-0.006571529,-0.016960584,0.08251637,0.008947122,-0.06741304,-0.013111248,0.043549523,0.017392132,-0.00837412,0.008257221,-0.010191877,-0.02084086,-0.058164626,-0.008477955,0.0061594695,-0.08979044,-0.029209819,-0.068099685,0.018993894,-0.10413431,0.052825857,-0.05910837,0.037004378,0.072757296,0.02591042,0.02162191,0.04350721,0.0043024053,0.0015576197,-0.04534182,-0.06224409,-0.027359419,0.06736845,-0.061508935,0.0150156645,-0.038796138,-0.07156439,0.043008547,0.039419964,0.038181625,-0.041470516,0.0077758115,-0.02571587,0.025941664,0.052868634,0.19267714,0.006835429,0.014169784,0.018704752,-0.052274615,0.010183417,0.03878685,0.0036642996,0.046803635,-0.012656856,-0.0043421006,0.043761298,-0.026497534,-0.01611136,-0.002102322,0.012442066,0.09841944,0.06704343,0.098790996,-0.0060308375,-0.05841641,0.14677106,-0.06901399,0.035715517,0.0413178,-0.010147031,-0.002954114,-1.4917761e-32,0.016609488,0.056940157,-0.03831822,-0.0041624107,0.04589153,0.0008485434,0.003942059,0.06498768,0.013145271,-0.11678556,-0.10966037,-0.10934023,0.044143617,-0.011173455,-0.070011295,0.011862775,0.021665031,-0.060821876,-0.06835585,-0.053034376,-0.008154478,0.06072455,-0.0062509454,0.01734793,-0.059328202,-0.031366676,0.0053547053,0.059324276,-0.099775404,0.008163108,0.051743507,0.015138027,0.010435756,0.059142143,-0.026157027,0.029319871,0.011268622,0.06764499,0.011779794,0.03992874,-0.0016401807,0.081617676,-0.015363479,-0.08171608,-0.03649376,0.028628768,0.005905967,-0.1374793,-0.06532114,-0.06593807,0.08290674,-0.03162611,-0.052673183,0.05666209,0.072135575,-0.056228008,-0.011587077,-0.07367262,-0.05349227,-0.0075092413,0.0057920306,-0.006135538,-0.049346004,-0.041017476,0.11213784,-0.022334224,-0.03379282,0.034264352,-0.007245902,0.008571433,0.1258281,-0.044865027,-0.124798104,0.040900726,-0.03513978,-0.021891199,-0.052956637,0.084272616,-0.0010762758,-0.026839659,-0.023013884,-0.034846064,-0.028707504,-0.015671007,-0.03813589,0.015600503,0.056584712,-0.009843553,0.029697452,0.10667535,0.0658364,0.09016764,-0.0025556511,0.040284615,0.012286577,-6.435775e-08,-0.0011001298,0.021949288,-0.026182285,0.034697607,0.03640276,-0.011144943,0.024825417,0.019657025,-0.076794855,-0.0045689046,0.08941954,-0.015799377,-0.006489221,0.03941023,0.026665773,0.010336796,0.040102728,0.029837098,-0.05101754,-0.055266246,0.085500315,0.008465557,-0.045944903,0.0032123227,-0.030518321,-0.0010480431,-0.00045332653,-0.05374423,0.012280292,-0.064533845,-0.07416606,-0.007161351,-0.029518183,-0.08179019,-0.02149901,-0.031564157,-0.07860702,-0.002534202,0.011222116,-0.02918358,0.068029135,-0.028848132,-0.0070594903,0.0036129993,-0.009042576,-0.029305326,-0.012137177,-0.022868067,-0.015848178,0.05481899,-0.043250777,0.022411684,0.073352955,0.07187735,0.011195013,-0.040454887,-0.0016532921,0.039610926,-0.03770924,-0.04233105,0.10978385,0.14256807,-0.06685969,-0.08744772} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:21:00.273309+00 2026-01-25 01:27:50.960258+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 325 google ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB 1 t 328 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hat alles gut geklappt. Haben den ShuttleBus nicht gefunden, hätten aber jederzeit anrufen können. Auch Zu fuß kann man den Standort relativ einfach erreichen. Auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt Zusatzleistungen zu buchen. Unterboden wurde kontrolliert, die Bordsteinkanten in GranCanaria sind sehr hoch, wenn man das beachtet und kein Schaden verursacht läuft alles schnell und reibungslos. Shuttle zum Flughafen mit Abgabe hat nicht mal 10 Minuten gedauert. hat alles gut geklappt. haben den shuttlebus nicht gefunden, hätten aber jederzeit anrufen können. auch zu fuß kann man den standort relativ einfach erreichen. auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt zusatzleistungen zu buchen. unterboden wurde kontrolliert, die bordsteinkanten in grancanaria sind sehr hoch, wenn man das beachtet und kein schaden verursacht läuft alles schnell und reibungslos. shuttle zum flughafen mit abgabe hat nicht mal 10 minuten gedauert. 5 2025-04-30 01:27:48.341157+00 de v5.1 J1.02 {} V+ I2 CR-N {} {"J1.01": "Shuttle zum Flughafen mit Abgabe hat nicht mal 10 Minuten gedauert.", "J1.02": "Hat alles gut geklappt. Haben den ShuttleBus nicht gefunden, hätten aber jederzeit anrufen können. A", "J1.03": "Unterboden wurde kontrolliert, die Bordsteinkanten in GranCanaria sind sehr hoch, wenn man das beach", "O1.01": "Auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt Zusatzleistungen zu buchen."} {0.03648235,0.06644122,-0.034632564,-0.046459228,-0.044810437,0.07457171,0.11537216,0.11449305,-0.023058044,-0.022018056,-0.0041216873,0.020988345,0.050024033,-0.016921377,-0.06111126,-0.020319413,0.014054711,0.02868548,-0.069719434,-0.023681657,-0.009894728,0.011873367,-0.024711406,0.12587349,-0.06443564,-0.045500085,-0.06972539,-0.009509468,-0.046913896,-0.03742281,-0.023643218,0.019255765,-0.013586168,0.040997397,0.045985576,0.055949748,0.00884603,-0.07109712,-0.026673354,-0.006041335,-0.047037132,0.020487044,-0.01481498,0.02652776,0.017120656,0.017006077,0.04778992,-0.032994904,0.01680364,0.07833118,-0.08305958,0.03143244,0.029831458,-0.02437039,-0.009722144,-0.037464093,-0.07494008,-0.01169099,0.03679173,0.022074904,-0.06820542,-0.08187634,0.032388266,0.030429311,-0.026641047,0.006622959,-0.044706896,-0.08355122,0.035859082,0.06463042,0.028813628,-0.06225658,-0.036015313,-0.071496814,-0.021792851,0.0021074617,-0.025590155,0.112424895,-0.0060951775,-0.09325865,0.032053925,-0.060554955,0.0167812,-0.001741086,-0.01293494,0.0017401922,0.037704874,0.088083565,-0.02989477,0.05623639,-0.0070002237,0.029780522,-0.044614132,0.03172933,-0.1010318,-0.04539235,-0.040212456,-0.062488306,0.018559631,0.028999884,0.028740967,0.04592878,0.082944125,0.051643208,-0.04717494,-0.017301831,0.0010304708,0.00089754607,-0.025720341,0.006812295,-0.048570167,-0.0033817254,0.048021257,-0.042174343,-0.08527167,0.04597884,-0.06837867,-0.09518942,-0.05979293,-0.013717482,6.7014575e-05,-0.06825446,0.10495869,0.06792694,0.030542266,0.026362559,0.08187552,2.3744203e-32,-0.09194376,-0.057497837,-0.019606369,0.037430316,-0.010351532,-0.052771363,-0.033825062,0.03825765,0.06392631,-0.023244234,-0.05839817,0.0527387,-0.023836989,-0.0016525652,-0.0035924665,-0.061664972,0.024800882,-0.09185325,0.016640855,-0.09528395,-0.011683407,-0.03369261,-0.023686087,0.0079711685,0.05753617,-0.0010921013,-0.0598713,0.052561734,0.006430372,0.07191129,0.012544822,0.012500851,-0.070246,0.01459949,0.041789167,-0.050132122,-0.013099817,0.021550883,-0.009143403,-0.05766328,-0.06657949,-0.024168925,-0.07193947,-0.038032122,0.06972948,-0.06929193,-0.029672714,0.035445537,0.05390446,-0.028642993,-0.015565677,0.077007525,0.067513846,-0.08477531,-0.0025946493,0.016864004,-0.009354114,0.10183564,-0.036030825,0.06253216,-0.022187242,0.04275854,0.058458183,-0.03271648,0.05349096,0.069292426,0.02131216,0.03476021,0.03864961,0.031614695,0.016521534,-0.046459515,0.06689405,0.07640999,0.04902711,0.004201269,0.04064951,-0.034024496,-0.09409151,7.273697e-06,-0.0032879948,-0.04180125,0.05045184,-0.008957123,0.041683614,-0.0674761,0.013193507,0.043777205,0.032935467,0.09767677,-0.08640628,0.053340264,0.03643752,0.09686375,0.024632718,-2.1213075e-32,0.02919018,0.063613124,-0.06169237,0.0111159,-0.06857853,0.03424209,-0.024061823,0.039635886,-0.05251353,0.032944947,-0.084950805,-0.01907893,0.078392595,-0.004236997,-0.09172239,0.030487955,0.10414131,-0.03163347,-0.03993412,-0.027976362,0.006605094,0.012557904,-0.026859252,-0.036508698,-0.05302557,0.05931946,0.040966842,0.09185074,-0.06653479,0.025268203,0.036865074,0.05259453,0.015185285,0.0070129535,-0.05524899,-0.032688614,0.07911105,0.11615687,-0.053160112,0.02582084,0.01705561,-0.01320635,-0.04374384,-0.09470155,0.08944844,0.0390077,-0.023773842,-0.09390865,-0.059416942,-0.045372892,0.010946827,-0.04081749,0.06766543,-0.036213614,0.09999844,0.011168138,0.07322175,-0.12293254,-0.029684957,-0.037854563,0.069574304,0.002547234,0.05744579,-0.11967527,0.02081601,-0.041001365,-0.06548181,0.0019194388,-0.040067177,0.02137508,0.06794915,0.0075830407,0.015459599,0.06627345,-0.05006419,0.08333841,0.014588032,0.04921229,-0.04606705,0.026503177,-0.014055054,0.042423654,0.024400119,0.051514413,-0.11204258,0.051542714,0.009616855,-0.052836955,0.028046044,-0.047829807,0.05571843,0.047694273,0.035690524,0.024993164,-0.021232218,-6.8948616e-08,0.015949009,-0.010567435,-0.04208688,-0.032168634,0.018012093,-0.05700897,-0.042092763,0.02300526,-0.12205981,-0.032013405,0.022665756,0.00363181,-0.04593774,0.090574466,-0.11899138,0.057811018,-0.0013322617,-0.010417494,-0.015123952,-0.0040364894,0.039612245,-0.08030014,0.044314675,-0.0025741283,-0.017288562,-0.03220983,0.00349134,-0.073254734,0.05033497,-0.08222858,-0.08675251,0.017420692,-0.003212985,-0.0010847948,-0.14870156,-0.01941822,0.044555433,0.051043745,-0.06638623,0.025449157,0.05873249,0.0042499914,-0.022395633,-0.06305221,-0.018205171,-0.005202606,-0.07242763,0.029633969,-0.040616322,0.06857667,-0.012349588,-0.019216057,0.014468766,0.06471381,0.049066972,0.009756861,-0.023972902,-0.052181274,0.03286222,0.0139725115,-0.10591893,0.046111453,-0.05135144,-0.027877038} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:45:42.755838+00 2026-01-25 01:27:50.968524+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 326 google Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB 1 t 329 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El servicio fue lamentable!\nPrimero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto.\nAdemás de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos.\nPor último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática.\n\nClaramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona.\n\nDefinitivamente NO recomiendo ClickRent. Terrible experiencia. el servicio fue lamentable! primero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto. además de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos. por último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática. claramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona. definitivamente no recomiendo clickrent. terrible experiencia. 1 2026-01-04 01:27:48.341159+00 es v5.1 A1.03 {} V- I3 CR-N {} {"A1.03": "El servicio fue lamentable! Primero, la comunicación para la recogida fue difícil, tuvimos que esper", "R1.02": "Claramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el rest", "V1.02": "Definitivamente NO recomiendo ClickRent. Terrible experiencia."} {0.07411041,0.063216195,-0.020269344,-0.07034846,0.0009217538,-0.048383288,0.05698571,0.014835815,0.0018473926,0.07624919,0.12527952,-0.03908808,0.013170738,0.023921391,0.053817153,0.012671236,-0.021995002,0.009141595,-0.07216708,0.064308874,0.108914375,-0.04012258,-0.08209737,0.08960478,-0.16584107,-0.020941047,-0.08785383,0.01868047,-0.12324587,-0.11370418,-0.03378712,0.040402353,0.036823437,-0.011681646,0.028067263,0.057047304,0.053260796,-0.06646537,-0.046958692,0.044427786,-0.117324516,-0.010768446,-0.027894953,-0.043856338,-0.073777094,-0.076616995,0.037291374,0.016417785,0.053472754,-0.05994676,-0.031720996,-0.014879153,-0.030357307,0.0049302704,0.027816163,-0.07535979,0.0018997595,-0.013574878,0.019519707,-0.04443901,-0.031186042,0.052097052,-0.038536746,0.023412926,0.06536954,-0.048759006,-0.016848886,-0.05636541,-0.06349578,0.03166553,0.039556984,-0.077212945,0.014931481,0.039119665,-0.040815476,0.089917295,0.0065196035,0.024130158,0.00981867,-0.058103643,0.06799836,-0.02356936,-0.036560945,-0.045389317,0.01591351,-0.015696056,-0.079255305,0.0019927698,0.06967921,0.0052852915,0.0023095536,0.033344492,0.008835749,-0.030437222,0.06775466,-0.031867474,0.004785072,-0.027646737,-0.008324059,-0.009485979,0.065489635,0.025516486,0.08886349,0.019630352,-0.026151728,-0.001407555,-0.020048765,-0.078524485,0.001067088,0.05288329,-0.15904129,-0.03932902,-0.010780575,-0.08145816,-0.063183226,0.06024962,0.006877706,-0.053053245,-0.04212552,-0.06710908,-0.00312993,-0.040823422,0.042640653,-0.018974012,0.06606748,-0.056955528,0.021278618,1.3304582e-32,0.00064213754,0.0022661928,0.037332933,0.09568335,0.06411345,0.0018982602,-0.057241,-0.03791671,0.0055884784,-0.015522659,-0.13150597,0.04556647,0.031910516,0.017396552,0.11062367,-0.045556244,0.04134456,-0.045184236,-0.024756256,0.0045200777,-0.04946582,-0.04462096,0.0060471604,-0.07048105,0.038560353,0.025191525,-0.009951159,-0.05603563,-0.038741745,0.058146063,0.024675546,0.010972112,0.0012519507,0.032437883,-0.03833873,-0.032334108,-0.005388799,0.0056838947,-0.08372617,-0.06291782,-0.051179077,-0.0023856736,-0.056473408,0.0595129,0.026398165,-0.054275922,0.063252285,0.024102122,0.040152032,0.055852607,-0.013934723,-0.0067668706,-0.03393158,-0.0986922,0.029788835,0.034078717,-0.024147335,0.0043547186,-0.07829239,0.017728887,0.029761206,-0.012377702,0.02470008,-0.029305255,0.048117295,0.017942088,0.021172239,0.04099264,0.11144373,0.042662133,-0.04641629,-0.050176043,-0.019904794,0.062276755,0.021076819,0.012837231,0.03980098,-0.032777335,-0.06848199,0.030139958,-0.03385613,-0.055083957,-0.008741165,0.02396033,0.028081637,-0.012771847,0.04899046,0.0684097,-0.010854961,0.07026989,-0.019316057,0.06197135,0.082387805,0.002219522,0.03424208,-1.5814685e-32,-0.055956576,0.033196803,-0.028865835,-0.0011903155,-0.056634903,0.034370676,-0.022923255,-0.025049819,-0.04443949,-0.05388966,-0.13509119,-0.0875306,0.09927852,-0.044660673,-0.07109784,0.0852717,-0.05382486,-0.08166779,-0.0652531,0.0016711304,0.05955907,0.0659864,0.060771894,-0.022688186,-0.046067726,-0.018530907,-0.025448034,-0.021130612,-0.043200247,-0.023921706,0.04875287,0.06178159,-0.0075459485,0.07061135,-0.028460706,-0.033687636,0.029156582,0.06961224,0.022887329,0.010454805,-0.012622218,0.098506555,-0.00019967418,-0.02696206,-0.05411655,-0.0106385555,0.030633977,-0.176269,-0.015868172,-0.04954304,0.044970874,-0.08366455,-0.068595506,0.013428976,0.05882501,0.02813277,-0.0390005,-0.057101604,-0.0542573,-0.029676793,0.03214342,-0.013533857,-0.077368096,-0.013825991,0.063564464,-0.035405036,-0.0027776416,-0.01843665,0.028755791,0.049019564,0.029141285,-0.029487286,-0.0720621,0.02807416,0.006240819,-0.0061851516,-0.027294965,0.015734473,-0.049273305,0.046426143,-0.04853127,0.037684657,0.00750595,-0.07798683,-0.028777363,-0.0023896107,-0.03831067,0.043606758,-0.01653459,0.017431572,-0.036988944,0.06023702,-0.033708077,0.012264339,-0.07705321,-6.898167e-08,0.024733296,-0.018819582,-0.012440685,0.03185682,-0.00464617,-0.026969314,0.023189614,0.04727986,0.019608974,0.07623455,0.026980387,0.0069230436,-0.027720492,0.053903755,0.010084625,0.014811914,0.09278022,0.09617643,-0.025948273,-0.052496694,0.083531104,-0.0017213572,-0.06496503,0.039777223,0.021823829,-0.00049646106,-0.050468095,0.0071305144,-0.015776262,0.061320733,-0.0268463,-0.036970567,-0.0776685,-0.104313254,-0.13110192,-0.022312721,-0.015739638,-0.00035304544,-0.073167086,0.013360034,0.13273129,-0.006037791,-0.03198647,0.020453986,0.031317122,-0.07678552,-0.032425407,0.039556514,-0.056904834,0.06493714,-0.011677465,-0.033702064,0.08594122,0.012236469,0.060505003,-0.055990513,0.017150756,0.054264575,0.045855988,0.04615972,0.011685216,0.084546186,-0.03665467,-0.046511184} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:07:05.673726+00 2026-01-25 01:27:50.971761+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 327 google ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB 1 t 330 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles war perfekt! Das Einzige, was unklar war, war der Treffpunkt für den Transfer, deshalb sind wir schließlich mit dem Taxi gefahren. Trotzdem gebe ich fünf Sterne, da der Service ausgezeichnet war. Das Auto wurde sehr schnell übergeben, und auch die Rückgabe lief reibungslos. Das Auto wurde geprüft, und wir waren schon auf dem Weg mit dem Transfer zum Flughafen. Die Kaution wurde sofort auf die Karte zurückerstattet👍🏻\n\nLeute, die über Betrug schreiben: Macht immer zusätzliche Versicherungen auf externen Websites, und erstellt vollständige Video- und Fotoaufnahmen des Autos, bevor ihr die Mietstation verlasst. So werdet ihr keine Probleme haben😉 alles war perfekt! das einzige, was unklar war, war der treffpunkt für den transfer, deshalb sind wir schließlich mit dem taxi gefahren. trotzdem gebe ich fünf sterne, da der service ausgezeichnet war. das auto wurde sehr schnell übergeben, und auch die rückgabe lief reibungslos. das auto wurde geprüft, und wir waren schon auf dem weg mit dem transfer zum flughafen. die kaution wurde sofort auf die karte zurückerstattet👍🏻 leute, die über betrug schreiben: macht immer zusätzliche versicherungen auf externen websites, und erstellt vollständige video- und fotoaufnahmen des autos, bevor ihr die mietstation verlasst. so werdet ihr keine probleme haben😉 5 2025-01-25 01:27:48.341161+00 de v5.1 A1.03 {J1.02} V+ I3 CR-N {} {"A1.03": "Alles war perfekt! Das Einzige, was unklar war, war der Treffpunkt für den Transfer, deshalb sind wi", "A2.02": "Leute, die über Betrug schreiben: Macht immer zusätzliche Versicherungen auf externen Websites, und ", "J1.03": "Das Auto wurde sehr schnell übergeben, und auch die Rückgabe lief reibungslos. Das Auto wurde geprüf"} {-0.08580196,0.041006267,-0.035536952,-0.09600538,0.008951579,0.013501611,0.11914539,0.062931105,0.010111799,0.028458124,0.043101702,-0.06281596,0.044451337,0.059995417,-0.070597805,-0.04392851,-0.028985092,-0.06381515,-0.055031333,0.029846849,-0.050891478,-0.0823798,-0.005444985,0.040769562,0.007191146,-0.029212676,-0.05225863,-0.02173779,0.036560312,-0.07335692,-0.019964568,-0.030697938,-0.058197845,-0.012876713,0.0039859507,0.0064334683,0.02433402,-0.0847933,-0.054911695,0.0014960822,-0.011373279,0.0050082454,-0.06751034,-0.0027122037,-0.09115337,0.049972743,0.06780635,0.04032506,-0.08531023,-0.027764717,-0.07543602,0.0142079005,0.02727771,0.010868934,-0.02447452,-0.05864931,0.033396736,0.010851526,0.019399494,-0.0026358804,-0.030455405,-0.049813017,0.016489057,0.0014803071,0.027167123,0.021825902,-0.015137848,-0.031099835,-0.024968097,0.011325009,-0.037090655,-0.105258614,-0.11138333,0.05174967,0.05701758,-0.037771456,-0.0390588,0.031946708,-0.05919759,-0.12332811,0.052454665,-0.020723082,0.047389306,-0.02300039,0.0053967875,-0.03340401,-0.103002034,0.04389419,-0.026967341,-0.054809816,-0.037462,0.028427698,-0.073762685,0.01287595,-0.019372901,-0.012269307,0.044318534,-0.04386448,0.061359286,0.011183043,0.084284045,0.008373759,0.039728902,0.0055377227,0.01839153,0.024704484,0.06674031,0.043722175,-0.028997522,-0.029086238,-0.06477129,0.0032330153,-0.008065912,-0.08357013,0.017843038,0.014262707,-0.084600866,0.0005219762,0.0058033816,-0.023680178,-0.03847581,-0.032471962,0.0058767144,0.022046877,0.07777839,-0.0425151,0.10960995,2.2600435e-32,-0.10094083,0.028949846,-0.018225411,0.053828914,-0.01192373,-0.0031943622,0.0070241857,0.09118078,0.03179982,-0.0243659,-0.089030355,0.0006706247,-0.06325049,0.0182845,0.030893076,0.0015385218,0.004594717,-0.0965394,0.12648758,-0.042412423,0.060057253,-0.009939365,0.02697899,0.011475452,0.039942853,0.004460617,0.020497402,-0.026292114,0.010351384,0.042315617,0.0027954327,-0.00016331155,-0.048321556,0.022897922,-0.044736374,-0.017673204,-0.05770434,0.02605195,-0.076823205,-0.031116813,0.0058031767,-0.017068116,-0.07286067,-0.024580395,0.014397765,-0.013522681,0.02068838,-0.027887646,-0.030019153,0.07551273,-0.007170989,-0.06484518,-0.026050292,-0.017959991,-0.028012902,0.120845065,-0.066999406,-0.0036957872,-0.02038582,-0.038146183,-0.007504786,-0.04416042,0.008323163,0.02794396,0.055347618,-0.058144316,0.019461343,-0.05179819,0.022430893,0.045551997,-0.026143214,0.031025125,0.07928284,0.016132135,0.041180976,0.06689729,-0.080849394,-0.014406683,-0.08287698,0.058070887,-0.09603369,-0.02854881,0.04116091,-0.078186214,0.09823471,-0.02028313,0.07233656,-0.072758354,-0.034103565,0.106475964,0.0050439914,0.044622563,0.018131852,0.03652813,0.05108892,-2.2605235e-32,0.120905064,0.071107045,0.0058944738,-0.012867173,-0.019772094,0.042236272,-0.013881917,0.015420579,0.005171376,0.010573389,-0.050521806,0.011738937,-0.036518767,0.006620564,-0.10620439,-0.026679244,0.043701425,-0.10229634,0.012991066,-0.04615668,-0.060598437,0.0363692,-0.029777441,0.023282684,-0.0077399355,-0.0016016684,0.0046243374,0.12427459,0.047032423,0.0494875,0.08090742,-0.016972031,-0.0027580028,0.04120187,0.019178994,0.01252304,0.06670545,0.15078647,-0.04547249,0.040040318,0.014816776,-0.011656388,-0.07832545,-0.021206442,0.07600807,-0.03059883,-0.16568622,-0.10316545,-0.0215599,-0.06893581,0.064056635,-0.00629136,-0.007645669,-0.02698699,0.048836257,0.13169138,0.076024055,0.03411917,-0.009669369,0.00078673224,0.07177533,0.06135029,-0.008393236,-0.07832972,-0.009397836,-0.09253419,-0.038788594,-0.017506279,0.019701207,0.060905878,0.07954348,0.032573327,-0.037965715,0.0012245389,-0.0034877742,-0.007950199,0.091521256,0.08725304,0.023969626,0.01756686,-0.028549876,0.027719896,-0.00850898,0.03184913,-0.14157596,-0.042609416,0.05337368,-0.023866227,-0.06825631,-0.056341793,-0.004160018,0.06421878,0.051513325,0.0062030805,0.009493374,-8.152754e-08,-0.011930909,0.02592407,-0.01309208,-0.00051797176,-0.003819196,-0.09991504,-0.029792774,0.024039084,-0.071618,0.0038076853,-0.01242289,-0.027046118,-0.054924935,0.09788826,-0.13472669,0.06527153,-0.016251247,-0.036147334,-0.016137438,-0.01038005,0.050780535,-0.071332976,-0.055756558,-0.023113962,-0.010645681,0.013304697,0.013951636,-0.03277009,0.036703564,-0.060867243,-0.00927882,0.05048442,-0.021963367,0.003781818,-0.031707086,-0.031089738,-0.012103334,-0.047066804,-0.020699283,0.01620583,0.116721146,0.047102593,0.004558266,-0.06589088,0.03692863,-0.0129197845,-0.03118978,-0.0078971,-0.00041640428,0.083691195,-0.030567242,-0.05835821,0.0115751065,0.11320218,0.021599533,-0.019531691,0.07551853,-0.062801465,0.040483247,0.06597479,0.009018765,0.060809955,-0.015074972,-0.05823791} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:10:05.403563+00 2026-01-25 01:27:50.975716+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 365 google ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB 1 t 368 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir hatten über Booking eine Reservierung für einen Kleinwagen. Bekommen haben wir einen tollen Fiat 500. Am Anfang hatten wir ein Problem, da die Frau am Schalter sagte ich solle eine Jungfahrergebühr bezahlen obwohl diese laut Check24 bereits inbegriffen ist. Nun wird reklamiert. Auto war ansonsten top. wir hatten über booking eine reservierung für einen kleinwagen. bekommen haben wir einen tollen fiat 500. am anfang hatten wir ein problem, da die frau am schalter sagte ich solle eine jungfahrergebühr bezahlen obwohl diese laut check24 bereits inbegriffen ist. nun wird reklamiert. auto war ansonsten top. 3 2025-03-01 01:27:48.341396+00 de v5.1 O1.03 {} V+ I2 CR-N {} {"J1.02": "Am Anfang hatten wir ein Problem, da die Frau am Schalter sagte ich solle eine Jungfahrergebühr beza", "O1.01": "Auto war ansonsten top.", "O1.03": "Wir hatten über Booking eine Reservierung für einen Kleinwagen. Bekommen haben wir einen tollen Fiat"} {-0.011762705,0.09172208,-0.035485134,0.013196646,-0.09005101,0.009845122,0.024170572,0.08104231,-0.09578716,0.005994769,-0.020621954,-0.051586404,-0.010378293,-0.011563814,-0.113337785,-0.09403448,0.007710777,0.008454213,-0.09352271,0.030701911,-0.023378082,-0.1063153,-0.00012565011,0.046733353,-0.031420927,-0.07847148,-0.0082699815,0.02514826,0.0423225,-0.05016878,0.0054010875,0.07692247,-0.051397387,-0.025063336,0.056510285,0.04573066,-0.06796869,-0.06216541,0.008981092,-0.085938446,-0.009138404,-0.046430983,-0.095969595,-0.05441536,0.10093115,0.05201703,0.003434794,0.093061745,0.026337031,0.011216753,-0.031886313,0.025829783,0.06440222,-0.06817738,-0.028506886,-0.010094919,0.008614609,0.01524443,0.08445464,-0.031444065,0.03286203,-0.032386295,-0.0026030228,0.010611175,-0.09638864,0.100173175,-0.054975037,-0.043449886,-0.08768261,-0.0040299185,0.08440881,-0.05856643,0.009097399,-0.01289495,0.022056986,-0.023967374,0.0177688,-0.04116581,0.008263331,0.028173864,0.007726525,-0.046145637,-0.057972927,-0.03875482,0.0388906,-0.021397624,0.00281567,0.026818989,0.016786363,0.011361941,0.027344607,-0.020585718,-0.060700696,-0.044795383,-0.046219464,0.065630905,-0.013488182,-0.003927248,0.08263443,0.041302998,0.028821083,-0.059908997,-0.00721189,0.041905265,-0.06480248,0.065103434,0.13755135,-0.015303012,-0.032774746,-0.0066728117,-0.04203732,-0.07196487,0.053382486,-0.095638126,0.017080592,0.05279956,-0.0052288314,0.0033459135,-0.002693851,-0.05969066,0.04639718,-0.028177865,-0.04668281,-0.047196336,0.060621925,-0.028494587,0.093468204,1.8481745e-32,-0.07388855,0.0099755945,-0.015731396,0.028394835,-0.043370385,0.011126629,-0.004182732,0.07234552,0.0025198148,-0.0036235102,-0.02165941,-0.00469357,-0.049439125,-0.07953196,-0.008098691,-0.008818924,0.077586636,-0.021344183,-0.0075182794,-0.084262475,-0.06120212,-0.048896093,0.03482813,-0.03577019,0.009934971,0.05580983,0.010134635,-0.073975034,0.00075160124,0.050843496,-0.026857197,-0.04270207,-0.019801933,0.053419955,-0.034701105,0.039816063,-0.0063067507,0.10357928,-0.0776356,-0.082552545,0.011811979,0.05886845,-0.103583954,-0.033509184,-0.010399735,0.1292993,0.067434184,-0.012852883,0.07255569,0.020678781,-0.1140617,-0.014218629,-0.08684318,-0.024836166,-0.04301913,-0.028762227,-0.01566245,-0.044333003,-0.05878156,0.025062516,-0.027289065,0.016686788,-0.029312601,0.053382546,-0.009914157,0.0136785,0.0051982063,0.02859773,0.0025770094,-0.015956813,-0.09342878,-0.03188268,0.117425285,0.03390873,0.008926751,0.05463019,0.05750758,0.052983355,-0.004547499,-0.04831602,-0.0127754295,0.019475475,0.071998276,0.014166048,0.03075992,0.025270404,0.023969773,0.02681291,0.05915579,0.09575145,0.0032128224,-0.037988495,0.036347825,0.068721935,0.042884734,-1.964499e-32,0.041228756,0.02313264,0.013892547,-0.037132133,-0.046580732,0.037680015,-0.0034064627,0.013028024,-0.019927187,0.041793175,-0.034820363,-0.06734812,0.046648987,0.052343063,0.0017472617,-0.04015478,0.027516041,-0.07759631,-0.03363774,-0.020863058,0.05545926,0.026216403,-0.019081656,0.04102316,-0.025136428,0.09908503,-0.042301532,0.05649402,-0.07127447,0.057426807,-0.03616535,-0.077388585,0.056058448,0.10755011,0.047354247,-0.011863474,0.1389619,0.039685696,-0.06392261,0.077062905,-0.007956164,-0.00073264126,-0.019970633,-0.041199446,0.06815349,-0.072636075,-0.028152807,-0.033339072,0.057803724,-0.06256928,-0.00040312397,-0.028486324,-0.03593717,0.060396,-0.009922255,0.10615206,0.07743949,-0.033266097,-0.003903581,0.027921913,0.03146257,-0.0060873595,0.081850775,-0.038253147,0.036866114,-0.053713236,-0.022022288,-0.1420148,0.08997652,0.014191791,-0.02882828,-0.057893343,0.031310245,0.01665805,-0.041398,0.025127375,0.0064344974,0.0150412815,0.03073287,0.030378424,-0.026387343,0.034886196,-6.285153e-05,0.03582624,-0.045747105,-0.05748501,0.05364539,-0.031882286,-0.0068612066,-0.06233578,-0.037782326,0.052284464,-0.004358913,-0.010663009,-0.06791189,-6.878245e-08,-0.05855289,-0.06853072,-0.046060808,0.012855107,0.029424272,-0.10969495,-0.005667322,-0.011448772,-0.083657086,0.061987594,0.06498851,-0.020313706,-0.06534689,0.018152151,-0.107796036,-0.044227496,-0.16050942,0.0059492993,-0.060109474,-0.046690457,0.047862872,-0.08338511,-0.008021311,-0.08062693,-0.00928315,-0.07499908,-0.051214922,0.028220607,0.034020778,-0.04186046,-0.08188799,0.07240318,0.046731748,-0.046107043,0.023605159,0.049242947,0.021424714,0.08138571,-0.037148688,0.02378242,0.0705757,0.012970686,-0.040141363,-0.016753992,0.067206636,-0.040961333,-0.044176392,-0.02788642,0.059102826,-0.07101884,-0.07228315,-0.034506712,0.035274312,0.035573322,0.0008168202,-0.01185062,-0.023011176,0.0034699896,-0.014239271,-0.00011719881,-0.0020634572,0.000496467,-0.030370373,-0.023561057} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:51:10.394692+00 2026-01-25 01:27:51.122056+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 336 google Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB 1 t 339 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Freundlicher Service. Die Mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich Angst gemacht. Der Shuttlebus am Flughafen ist nicht leicht aufzufinden, da leider keine Beschilderungen angebracht werden können. Man muss einfach geduldig an der beschriebenen Stelle warten. Es hat alles super geklappt und alle Mitarbeiter waren freundlich.\nEin Stern Abzug allerdings, da es fast 5 Wochen gedauert hat, bis die Blockierung der Kaution auf der Kreditkarte aufgehoben wurde. Vor Ort wurde uns zugesagt, das diese direkt am gleichen Tag storniert wird, da alles mit dem Auto in Ordnung war. Hat uns persönlich zu lange gedauert. freundlicher service. die mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich angst gemacht. der shuttlebus am flughafen ist nicht leicht aufzufinden, da leider keine beschilderungen angebracht werden können. man muss einfach geduldig an der beschriebenen stelle warten. es hat alles super geklappt und alle mitarbeiter waren freundlich. ein stern abzug allerdings, da es fast 5 wochen gedauert hat, bis die blockierung der kaution auf der kreditkarte aufgehoben wurde. vor ort wurde uns zugesagt, das diese direkt am gleichen tag storniert wird, da alles mit dem auto in ordnung war. hat uns persönlich zu lange gedauert. 4 2025-09-27 01:27:48.341214+00 de v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Freundlicher Service. Die Mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich Angst gemacht.", "J1.02": "Ein Stern Abzug allerdings, da es fast 5 Wochen gedauert hat, bis die Blockierung der Kaution auf de"} {-0.061816465,0.061351795,-0.06710393,-0.09837502,0.014390711,0.01861653,0.02666776,0.072626054,-0.058986265,-0.0017763781,0.025303058,-0.037482623,-0.010034091,-0.064270705,-0.0011976612,-0.010893173,0.034659866,-0.013466018,-0.053083044,-0.04946864,-0.076213785,0.024975982,0.015153203,0.123645134,-0.068822876,0.04789046,-0.051269542,-0.10074991,-0.00017165896,-0.0661413,0.017263554,-0.03050997,-0.049152344,0.07226966,0.0106842965,-0.016628196,0.03622924,-0.0053846207,-0.030269679,0.056574088,-0.06283762,0.01355766,-0.09554006,0.021679329,-0.034374297,0.0349437,0.027538834,-0.029455654,-0.022394175,0.017171474,0.0484551,-0.038233023,0.0764241,-0.021481385,0.06604846,-0.039454475,-0.10783649,-0.048452243,-0.02976285,0.029773451,-0.086143844,-0.045321986,0.087976076,0.0674301,0.0004349884,0.025781494,-0.049955748,0.022570046,0.016374707,0.002656274,0.024242003,-0.075173296,-0.001151115,0.020847375,0.050328497,0.011379329,-0.015505056,0.09978092,0.048276197,-0.07095729,-0.05031468,-0.06605712,-0.0067976103,0.0038587835,-0.040753722,-0.034238607,-0.0347579,0.048465423,0.06525689,-0.012764287,0.00054301764,0.02922691,-0.033566054,-0.023300594,-0.06717523,0.025176486,-6.782357e-05,-0.013763275,-0.018655576,-0.0072845784,0.07671109,-0.046226956,0.018079827,0.026857255,-0.049387522,-0.04744222,0.010591028,-0.03920513,-0.014422544,0.012933974,-0.05000029,-0.020468855,-0.017378561,-0.04228265,-0.05316465,-0.07728119,0.00499212,-0.09299351,0.0704656,-0.01718281,-0.044110443,-0.05089841,0.054501284,0.0061731706,0.04507594,0.07222039,0.080301635,1.8850105e-32,-0.03571993,-0.045240168,0.06888766,0.018473301,-0.040893078,-0.0063540777,-0.012924051,-0.0037330564,0.041732512,0.06863735,-0.040993486,0.020132164,-0.0034916329,-0.019515185,0.03409957,-0.031181494,0.01297903,-0.09584871,0.0058238376,-0.03516906,0.019390685,0.037975144,-0.040922653,0.07606083,0.11307808,0.040501513,-0.00953946,-0.08508846,-0.011512218,0.040821213,0.02864212,-0.049694847,-0.08910039,0.052348338,-0.038694277,-0.003614688,-0.01275471,0.041159585,-0.050094098,-0.11367492,-0.060196795,-0.050941244,-0.039251328,-0.055175133,0.014384621,0.0023844868,0.0042963973,0.01716937,-0.0025321408,0.044485662,0.0015958269,-0.017395897,0.036437687,0.012988156,0.023254773,0.057325296,-0.03431488,0.03137291,-0.03703484,-0.033883344,-0.10851667,-0.079666965,0.021099562,-0.04640045,0.10361205,0.0005009654,-0.0014501001,-0.060329355,0.009475325,0.05761903,-0.009942343,-0.015392887,0.056501124,0.030217446,0.09682204,0.076254025,-0.010388431,0.036552906,-0.14692086,0.06058608,-0.037171785,-0.029381944,0.011875438,-0.0146365315,0.10381906,-0.015575407,-0.0044859033,-0.06550279,0.064010136,0.14928709,0.0011039935,0.018438645,0.056824986,0.02981484,-0.022220299,-1.910579e-32,0.061256386,-0.016960543,0.03445725,0.0038148311,0.045362815,0.0142614925,-0.01798825,0.0749363,-0.04746341,-0.05052799,-0.017410135,0.014350799,-0.018107621,0.085196115,-0.03652104,0.09667184,0.018134058,0.08610808,0.030525303,0.01234282,-0.000419121,0.017236475,-0.027993355,0.043415487,0.031495307,0.00026575875,0.01327188,0.069070846,-0.015374469,-0.064713806,0.043827813,0.051050227,0.020297542,-0.0028254532,-0.04724645,-0.108302616,0.04113762,0.115668684,-0.03432533,0.011645039,-0.028639603,0.008872766,-0.08339412,-0.06889171,0.03356196,-0.08385562,-0.05188661,-0.08676982,-0.052831773,-0.013503116,0.017359097,-0.10080514,0.05520262,0.049159847,0.05431821,0.05524864,0.072551884,-0.11896495,-0.0061295563,-0.0434572,0.064439304,-0.027719093,0.09449161,-0.034359068,0.04356726,-0.07334175,-0.007629735,-0.0016341847,-0.09165757,-0.00022104438,-0.011007859,-0.046092898,0.0006263361,0.0780599,0.031982135,0.010991635,0.056121834,-0.013153043,0.0010435615,0.027605256,-0.11861901,-0.031604875,-0.0028345753,-0.04424193,-0.017899454,0.00037554576,0.12117846,-0.03248792,-0.008588641,-0.08347421,0.03579006,0.03988107,0.056694962,0.0740878,-0.038274307,-7.0598155e-08,0.024833743,-0.00543602,-0.12822361,-0.04458016,0.016041556,-0.061904486,0.013697876,0.029033247,-0.07187387,0.044339873,0.04328094,0.01861442,-0.071774594,0.05279092,0.012486558,0.005813647,-0.039001092,-0.031196835,-0.0602902,-0.0091507565,0.030488448,-0.038062017,-0.032597154,-0.07536948,0.026507389,0.06075087,0.08137826,-0.06873635,0.11300959,-0.05186834,-0.10099105,0.09206377,0.038126595,-0.013289044,-0.03943845,-0.006623378,0.068378955,-0.0069243,0.014731268,0.12282172,0.0021471789,0.04452353,-0.0059386655,-0.05462058,0.025994508,-0.049936622,-0.077439025,0.052219357,-0.022185765,0.018511318,-0.10291546,0.004102661,0.025891498,0.054703593,0.023286572,-0.0071844268,0.018215546,-0.054047987,-0.01227455,0.010523299,-0.01016646,-0.070762336,-0.031975377,0.06042018} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:33:00.124354+00 2026-01-25 01:27:51.00388+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 341 google Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB 1 t 344 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown No doy 0 estrellas porque no me deja.\nExperiencia pésima:\nAunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero.\nHoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en Canarias).\nSi vais a alquilar coches, no recomiendo nada esta empresa. no doy 0 estrellas porque no me deja. experiencia pésima: aunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero. hoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en canarias). si vais a alquilar coches, no recomiendo nada esta empresa. 1 2025-10-27 01:27:48.341256+00 es v5.1 J2.03 {} V- I3 CR-N {} {"J2.03": "Experiencia pésima: Aunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para en", "V1.01": "Si vais a alquilar coches, no recomiendo nada esta empresa."} {-0.010915318,0.0716099,-0.015582853,-0.08810046,-0.07300534,0.0007033053,0.10179955,-0.036251806,0.06916899,-0.01855924,0.08983899,-0.02081849,-0.053746406,-0.019418227,0.036663845,0.039704558,0.023633396,-0.013861327,-0.010056749,0.038946643,0.11383888,-0.016041901,-0.046608005,0.119896196,-0.10375706,-0.011206194,-0.04302569,0.038114022,-0.088277824,-0.078238726,-0.04465116,0.015100891,0.046618953,0.0039320276,0.029667778,-0.029470578,0.10152936,-0.08986727,-0.03759401,0.10567027,-0.08109117,0.05729482,-0.017440682,0.037437588,-0.0547653,-0.06098274,0.015440368,0.02393943,0.0717254,-0.04165856,-0.032087993,0.04796136,-0.018099794,-0.055278704,0.04496167,0.009534966,-0.08485917,0.009267396,0.103022836,-0.0030639933,0.043776326,0.041103978,-0.0007167554,0.045153476,0.016755192,-0.05607954,0.013228432,-0.02600859,-0.08048542,0.08072625,0.08501965,-0.043135356,-0.055999167,0.006947372,-0.046849087,0.095757715,0.023381062,-0.051408883,0.00784044,-0.03194658,0.003153505,-0.019801212,0.0061516133,-0.051146466,0.009052617,-0.07585998,-0.030975677,0.105640665,0.066553935,-0.067091756,-0.08773093,0.041538935,-0.08465517,-0.013358334,0.07207213,0.021106966,0.08180742,-0.0107540125,-0.045326624,0.040405072,0.13098164,0.05175989,-0.002477728,0.02655033,-0.049793858,0.05983311,0.023597402,0.028045774,-0.0033670075,0.038181063,-0.10723705,-0.05537169,3.9379414e-05,-0.07768563,-0.10614336,0.041558277,-0.028568331,-0.043055903,-0.009711698,-0.05368259,0.020289803,0.006700454,-0.0069121057,0.026175294,0.01576522,-0.035328858,0.013710095,1.6084583e-32,0.009614746,-0.057423204,0.003125947,0.025034789,0.069865175,0.00031206716,-0.050536964,0.04545143,-0.019990835,0.028365957,-0.07834255,-0.011102201,-0.011587088,-0.040214844,0.070710465,0.01207909,0.06963773,-0.0633269,0.02714844,-0.010388223,-0.016697424,0.01175944,-0.012739914,-0.021547953,-0.034109972,0.023789698,-0.02137819,-0.035316337,-0.027782107,0.066705056,-0.026208214,0.00387455,0.008311922,0.00146927,-0.038707744,-0.03667253,-0.01193619,0.0445433,-0.038739424,-0.11244747,-0.047032773,0.025478333,-0.054040674,-0.015859757,0.010744281,-0.016653191,0.05342233,0.0145066865,-0.014777614,0.024680102,-0.06867874,0.0044236206,-0.023774108,-0.026551303,-0.03451892,0.02363744,-0.04037948,0.026909953,-0.0700628,-0.04849438,0.048718154,0.044584405,0.031264283,-0.049614478,-0.026781464,-0.00022071716,0.011703133,0.021195238,0.16188507,0.07089513,0.018486196,-0.02961335,-0.043416716,0.026220487,0.028047075,0.007004849,0.06525649,-0.0124346055,-0.026313571,0.060034376,0.057188917,-0.057631515,0.051091406,0.0004087221,0.036938015,0.03438456,0.09809148,0.012738131,-0.0343429,0.09985995,-0.06088237,0.09024273,0.10143552,-0.07090285,0.009697722,-1.6527433e-32,-0.011264628,0.041270494,0.003304222,-0.0852531,-0.08570821,0.050724894,0.020669969,-0.034896143,-0.0018533942,-0.08675887,-0.09708197,-0.08346074,0.043792576,-0.093444474,-0.031035533,0.017869404,-0.013479676,-0.05399027,-0.04236497,-0.042839658,-0.0034999775,0.04472652,0.022923572,0.0143167265,0.0012915345,-0.062431555,0.00859769,0.03711303,-0.03387628,0.009699722,0.053666122,-0.038915,0.03232585,0.059352264,-0.04410819,0.000620261,0.03409474,0.013712127,0.0033368317,0.009832349,-0.010936473,0.029079562,-0.028599652,-0.042205118,-0.017247088,0.07216819,0.01430878,-0.14921333,-0.058684144,-0.04619261,0.06277579,-0.068286784,-0.07689829,0.054816414,0.09718896,0.026699815,-0.0006889285,-0.052535497,-0.02806685,-0.009259357,0.03387492,0.05165984,-0.08539915,-0.06708351,0.08287731,-0.021128552,-0.043667518,0.004382535,0.04434443,0.009892802,0.06443766,0.010733781,-0.14746362,0.011345467,-0.016533798,-0.03918417,-0.07265244,0.017236922,-0.05854723,-0.045840114,-0.038032748,-0.0074734967,0.03187708,-0.026351176,0.01549607,-9.1060545e-05,0.080143966,0.079333685,0.0023633044,0.09179455,0.05349615,0.046416514,-0.025886815,0.023460876,-0.056101985,-5.9186824e-08,0.00058020954,-0.0006324756,-0.012097599,-0.052340567,-0.005027147,-0.011162891,0.012647802,-0.0009873728,0.04365769,0.04167131,0.08263108,-0.0337345,-0.052775998,0.048830453,-0.01985484,0.044949714,0.052051608,-0.018834656,-0.029819844,-0.06080409,0.067019805,0.009292477,-0.05543581,0.013864864,0.00236426,0.000262157,-0.06649344,0.0064867893,0.0377626,0.0069531132,-0.056951262,-0.028302744,-0.045370135,-0.13654152,-0.062081862,-0.042808343,0.0038738495,0.02441221,-0.049700283,-0.034639943,0.088618875,-0.030289236,-0.075179495,0.008574723,-0.044711847,-0.061163098,-0.020454178,0.0055686487,-0.034533486,0.080424055,0.010379851,0.0023178335,0.05698276,0.036862195,0.042653337,-0.12755913,-0.0030724925,0.022078387,-0.00017768904,0.0040633855,0.11307441,0.061279796,-0.0577918,-0.052134115} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:27:01.345295+00 2026-01-25 01:27:51.019459+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 347 google Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB 1 t 350 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown GELDMACHE!\nKreditkarte muss noch mindestens 6 Monate gültig sein, sonst wird sie nicht zur Hinterlegung der Kautionakzeptiert! Deshalb wurde ich genötigt, vor Ort eine Versicherung von zusätzlich 156€ zu zahlen, die ich dann problemlos mit der Kreditkarte zahlen konnte! Genauso wie die Tanksicherheit von 200€!\nMan wird zum Standort geshuttelt und ist dann im Nirgendwo und hat keine Möglichkeit, sich anderweitig zu orientieren, da man dem Unternehmen dort quasi ausgeliefert ist und nicht mehr einfach dort weg kommt! Zudem haben die Fahrzeuge nicht ausreichend Power, um problemlos die Berge hochzukommen.\nBitte macht nicht den selben Fehler, auf diese günstigen Abzocker reinzufallen. Ich hab Lehrgeld bezahlt. geldmache! kreditkarte muss noch mindestens 6 monate gültig sein, sonst wird sie nicht zur hinterlegung der kautionakzeptiert! deshalb wurde ich genötigt, vor ort eine versicherung von zusätzlich 156€ zu zahlen, die ich dann problemlos mit der kreditkarte zahlen konnte! genauso wie die tanksicherheit von 200€! man wird zum standort geshuttelt und ist dann im nirgendwo und hat keine möglichkeit, sich anderweitig zu orientieren, da man dem unternehmen dort quasi ausgeliefert ist und nicht mehr einfach dort weg kommt! zudem haben die fahrzeuge nicht ausreichend power, um problemlos die berge hochzukommen. bitte macht nicht den selben fehler, auf diese günstigen abzocker reinzufallen. ich hab lehrgeld bezahlt. 1 2025-09-27 01:27:48.3413+00 de v5.1 P1.02 {} V- I2 CR-N {} {"J1.02": "Man wird zum Standort geshuttelt und ist dann im Nirgendwo und hat keine Möglichkeit, sich anderweit", "O1.02": "Zudem haben die Fahrzeuge nicht ausreichend Power, um problemlos die Berge hochzukommen.", "P1.02": "Kreditkarte muss noch mindestens 6 Monate gültig sein, sonst wird sie nicht zur Hinterlegung der Kau", "V1.02": "Bitte macht nicht den selben Fehler, auf diese günstigen Abzocker reinzufallen. Ich hab Lehrgeld bez"} {-0.08052671,0.10161129,-0.07047939,0.054848004,-0.045093074,0.03181735,0.076930605,0.122345544,-0.051694714,0.014290237,-0.035691395,-0.08676793,0.07235065,-0.0044548507,-0.033325814,-0.021226227,0.016682327,-0.0024673683,-0.09255991,0.055518955,0.03894805,-0.0486536,-0.023479918,0.04715803,0.041263063,0.04919634,0.0060696085,-0.03161498,-0.0037083942,0.030876001,0.012376153,0.01392786,-0.0736606,-0.003977803,0.11081075,0.032990325,0.021492887,-0.07763342,-0.046009917,0.08217758,-0.04165047,0.1080916,-0.0820525,-0.023566203,-0.04497009,0.0582263,0.059812784,0.018534485,-0.113486946,0.036609508,-0.12063519,-0.036798768,0.03456279,-0.010244041,-0.015959831,-0.18214199,0.010778216,-0.008325437,0.039872088,-0.029650869,-0.03935027,-0.10187638,0.05483668,-0.008962284,-0.024408814,0.037527148,-0.00045903254,-0.053516097,-0.06547792,0.0058151837,0.074701205,-0.07436498,-0.06803932,-0.06264659,-0.0026669358,0.027275635,0.048034295,-0.034528263,-0.03158438,-0.13283497,0.061148867,-0.05665074,8.5796135e-05,0.018502174,0.007869488,-0.06265836,0.024028294,0.056233786,0.0090828845,-0.003265252,0.059120856,0.09374955,-0.095363945,-0.02122691,0.06581017,-0.03565835,-0.003650291,0.005729936,0.0062732226,0.003868632,0.04253202,-0.0072903926,0.06609655,-0.01585126,0.011847095,0.0027887316,0.010514766,0.01689334,-0.03239497,0.025777753,-0.074715935,-0.02826592,-0.018489148,0.002566363,0.056941006,0.022918284,0.063324064,-0.05209571,-0.06696706,-0.0033347092,0.06993975,-0.07149482,0.033992637,-0.0016875453,0.060268898,0.069543295,0.028167823,2.4123313e-32,0.012559457,-0.020480487,-0.00079164724,-0.058318026,0.026208894,0.028698144,0.05581161,0.063891925,-0.03751468,-0.0045738206,-0.076734744,-0.025682444,-0.0051062983,-0.033598337,0.025287872,-0.11416134,0.0055703525,-0.08814725,0.063299745,-0.012545145,0.093652524,-0.0010792407,0.025814487,0.05164584,0.003991102,0.04286816,0.059542086,-0.024340285,-0.036921524,0.023961995,0.03087938,-0.055646315,-0.03603849,-0.03217764,-0.06181862,-0.034642685,-0.034541592,-0.0076543917,0.006587405,-0.04775212,-0.018205222,0.038567178,0.013811041,-0.050291963,0.11834448,0.011056392,-0.024295088,-0.0010979086,0.031060304,-0.020806147,-0.054278746,0.02482241,0.01979091,0.004429473,0.04208327,0.03106157,-0.09010808,0.034324758,0.0068173027,-0.07546803,-0.0011435641,-0.07172877,0.015691984,-0.0014475229,0.01445651,0.022201711,-0.024092495,-0.010068286,0.015998563,0.009080472,-0.005419707,-0.023624202,0.09278616,0.004724601,0.023363777,0.0015392442,0.02382498,0.021740515,-0.08998304,0.0168003,-0.107008606,0.04106104,0.003949154,-0.055656854,0.025501441,-0.09627566,0.016609527,0.036637086,-0.047384284,0.015383741,0.0733839,-0.06255447,0.026380898,-0.018123113,-0.029597273,-2.1251912e-32,0.015912328,0.05134868,-0.0007890915,0.06256157,-0.010175181,0.005339144,-0.07023725,0.059689693,-0.06500891,-0.047897603,-0.018209878,-0.030292442,-0.015449916,0.021818433,-0.06415365,-0.009844168,0.024699314,-0.023842767,0.06522568,-0.016368201,0.008005144,0.005394665,-0.045139447,-0.008819104,0.019148268,0.09753612,-0.042175416,-0.021891093,0.06143788,0.04394139,-0.0109621445,0.08236023,-0.048102938,-0.0452375,-0.05312732,0.01226331,0.031415418,0.08978117,-0.04414678,0.12603909,-0.0049649184,0.02993803,-0.08221548,0.051057115,0.055086367,0.02969,0.0065370835,-0.09630875,0.014737054,-0.06491044,0.07981222,-0.0106569445,0.029921565,-0.027711937,0.0080697015,0.014622235,-0.0020840233,-0.019269474,-0.10665933,-0.051295217,0.0801455,0.023954185,0.07657961,-0.0075058155,-0.010689007,0.04446391,-0.017382538,0.01770074,0.040629297,0.07232865,-0.056468442,-0.014126108,0.039690156,-0.015760966,0.04861081,0.08069968,-0.035422157,0.084603064,0.021305013,0.061680786,-0.0511826,0.026475755,-0.07308822,-0.028077412,-0.054257724,-0.07908386,0.06602211,0.05893354,-0.012828208,-0.059355263,-0.11282693,-0.035061598,0.05432562,0.08147611,0.050314642,-7.3740104e-08,0.04671192,-0.027639277,-0.05801112,0.015503671,0.037511677,-0.12519862,-0.06523093,0.06608166,-0.079727694,0.066112705,0.0024511025,-0.0014490181,-0.051540963,0.018295368,-0.10368766,0.030762574,-0.032059383,-0.07917175,-0.016011726,-0.09354612,0.11503784,-0.050889146,-0.07526212,-0.027815284,0.02429715,0.029380275,-0.085861154,-0.06242732,-0.074170165,0.015350066,-0.043037187,-0.012712826,-0.014002901,-0.040066086,-0.036745097,-0.036401026,-0.03046716,0.030284492,0.016436905,-0.013447506,0.07181598,-0.0013679594,0.0005240011,-0.0014292565,0.028232513,-0.030927861,-0.044186745,0.030788174,-0.023052022,0.019893432,-0.069687106,0.01804274,0.02144237,-0.017618304,0.02590202,0.117135204,0.06936181,-0.017465267,-0.02347177,0.020852748,-0.04346885,-0.058510844,-0.07600406,0.004902738} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:32:50.983921+00 2026-01-25 01:27:51.037971+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 349 google Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB 1 t 352 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Contratado el alquiler del vehículo y el seguro a través de Booking, me dicen que de ese seguro no se responsabilizan porque no es el que ellos trabajan, que en cualquier caso, primero les tendré que pagar a ellos y después reclamar a Booking.\nAsí mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo).\nNo obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado. contratado el alquiler del vehículo y el seguro a través de booking, me dicen que de ese seguro no se responsabilizan porque no es el que ellos trabajan, que en cualquier caso, primero les tendré que pagar a ellos y después reclamar a booking. así mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo). no obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado. 2 2025-09-27 01:27:48.341305+00 es v5.1 J1.02 {P1.02} V- I2 CR-N {} {"A1.01": "No obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado.", "J1.02": "Contratado el alquiler del vehículo y el seguro a través de Booking, me dicen que de ese seguro no s", "P1.03": "Así mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo)"} {0.047102783,0.07219117,-0.049802974,-0.03827577,-0.14890955,-0.01927896,0.039180245,0.05086549,0.035800263,0.021914896,0.040653165,-0.01952001,-0.021040754,-0.0015964884,0.06910445,-0.02647729,-0.0043687653,0.01733652,-0.04248505,0.07483693,0.039926257,-0.0026229068,-0.0902298,0.108668,-0.040750805,-0.078881085,-0.053313747,0.06470529,-0.03876226,-0.09241396,-0.023745053,0.048855267,0.07784247,-0.018790781,0.04143204,-0.058270287,-0.028851677,-0.090342715,-0.08718219,0.04004971,-0.050378352,0.020230114,-0.088973634,-0.013382287,0.002128487,-0.066218995,0.032546017,0.115041934,0.02117849,0.028769331,-0.051097102,0.014216336,-0.02328809,0.017847737,-0.097797774,-0.0038442642,-0.021076472,0.010251309,0.06129532,-0.037222166,0.0007695319,0.07290495,-0.0547028,0.020936793,-0.07501194,-0.057441104,0.01572707,-0.051468078,-0.060782973,0.095505066,0.10930104,-0.09168725,0.07314552,-0.013281722,0.0006873047,0.0052318354,0.066630274,-0.03267601,0.0050482345,0.0055848183,0.030299991,-0.04728322,-0.045248643,-0.033421077,0.04137822,-0.07892247,0.026783284,0.051351048,0.0043444145,-0.01628369,0.016207226,0.060534734,-0.037041698,-0.046259623,-0.01751551,0.09251926,0.028003998,0.035570536,0.027728466,0.024423022,0.14754985,0.05691798,0.048724737,0.030249368,-0.06188897,0.064276546,0.09696144,-0.0052606454,-0.0393459,-0.045360375,-0.09677966,0.053458683,-0.000645552,-0.055451438,-0.08481517,0.0856158,-0.062280912,0.026745409,-0.021269737,-0.08341344,-0.022221955,-0.01662569,0.030971283,-0.014087477,-0.002779882,-0.13641557,0.04038558,1.4812922e-32,-0.06902263,-0.07536565,-0.07715792,-0.03980463,0.029423323,0.0033719912,-0.057239015,0.0420246,-0.059969265,0.011559085,0.0032434894,-0.038428593,0.032795217,-0.0055985227,0.03254713,0.019540204,0.013722775,-0.032247692,0.063245155,-0.021729229,-0.046197433,-0.07183787,-0.0016654668,-0.0047248076,-0.033611264,0.05593557,0.0012764873,-0.06728311,0.008901538,0.047179736,-0.026949998,0.03281256,0.056629743,-0.0459629,-0.0012546012,-0.019101795,-0.050510947,0.032527883,-0.07062405,-0.031012354,-0.029007528,0.05016269,-0.07731613,0.039016012,0.016911527,0.05875551,0.081827596,0.026136693,0.029873315,0.062728524,-0.08271286,-0.05402708,-0.06735582,-0.07828117,-0.077175654,-0.02202796,-0.051602375,0.03359694,-0.016459,-0.09402651,0.00059526326,-0.023448166,0.0336639,-0.024527907,-0.048045862,-0.039239552,0.015140528,-0.053485613,0.069935754,-0.029875806,-0.05369371,-0.026176432,0.0033851576,0.055276714,0.014684913,0.036534026,0.001665867,-0.014004878,0.06598393,-0.011255802,-0.050615884,-0.0021231347,0.05845444,0.06955393,0.050244167,0.054882914,0.043988377,0.07419432,0.050968345,0.12376509,0.03806134,0.06844491,-0.010792922,-0.06619829,0.13695616,-1.5568422e-32,0.028470162,-0.0031945338,-0.015129661,-0.020142376,-0.038443398,0.0036938724,-0.0031909626,-0.029839892,0.06741167,-0.026455892,-0.1283617,-0.06397217,0.07733129,-0.0063354927,-0.00037856534,0.01735936,-0.028529953,-0.11481639,0.004738106,-0.01009964,-0.027198615,0.051947325,0.09659621,-0.01687556,-0.0015472013,-0.041064527,-0.03398603,0.07664115,-0.11057119,0.0029696443,0.022878917,-0.060797997,0.013059357,0.048182428,-0.013627564,0.055280738,0.071282856,0.034316722,-0.04015723,0.0447049,-0.026865998,0.038706116,0.0288945,-0.06110633,0.101427354,-0.030673003,0.034375623,-0.12323257,0.072470956,-0.074914895,0.07688102,-0.028917918,-0.04234708,-0.029784855,0.046418596,0.066572644,-0.03635334,-0.12323808,-0.023204513,-0.026139788,0.046039216,0.005906294,0.014707787,-0.017422488,0.08065692,0.00453624,0.0142201595,-0.014454011,0.009451731,0.0005792656,0.024052879,-0.042570874,-0.07037385,0.009048971,-0.015880179,0.022366276,-0.030185396,0.024788156,0.041404217,0.02013957,-0.0411863,0.002688441,-0.003409138,-0.033005632,-0.034470677,-0.032829247,0.0364858,0.017198103,-0.037085734,0.0088439295,0.028963864,0.005100967,-0.00020904557,-0.04218833,-0.056139052,-5.920447e-08,0.0028882276,-0.017234065,-0.025965018,0.019597601,0.06993176,-0.071939886,-0.018633163,0.03894245,0.015947573,0.105315566,0.032419946,-0.04748653,-0.04170428,0.015432523,-0.05811806,0.018467134,0.0652243,0.04344277,-0.045964215,-0.0678112,0.087261945,-0.0011330558,-0.008677026,0.030706596,0.04285007,0.00591869,0.004148041,0.033851013,0.031227034,-0.06036698,-0.049448952,0.022508336,0.012529156,-0.10681288,0.021421373,-0.089637615,-0.062127747,0.043096952,0.0030890242,0.022688512,0.049849108,-0.05746406,-0.05559393,0.001402477,0.029081395,-0.015411364,-0.061022576,0.009160601,-0.031113273,-0.021954278,-0.0018268836,-0.09902923,0.06598953,0.026607808,0.047122743,-0.056895863,0.021600872,0.008961933,-0.0011724037,0.005883665,0.04487812,0.028622357,-0.066317596,-0.0862516} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:32:35.35757+00 2026-01-25 01:27:51.043706+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 350 google Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB 1 t 353 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún no tengo el dinero de la fianza que te cobran sin avisar el día de la reserva.\nEl vehículo no era el que reservé y no hay opción según ellos , o ese y otro modelo pagando la diferencia.\nUna vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno a otro.\nIncompetentes , mentirosos , ESTAFADORES y nada profesionales\nNADA RECOMENDABLE un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún no tengo el dinero de la fianza que te cobran sin avisar el día de la reserva. el vehículo no era el que reservé y no hay opción según ellos , o ese y otro modelo pagando la diferencia. una vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno a otro. incompetentes , mentirosos , estafadores y nada profesionales nada recomendable 1 2025-08-28 01:27:48.341307+00 es v5.1 J1.02 {O1.02} V- I3 CR-N {} {"A1.03": "Una vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno", "J1.02": "Un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún "} {0.010132229,0.088081144,-0.030662704,-0.06313182,-0.10388508,0.027264897,0.02156173,0.034249663,-0.009315225,0.022275386,0.08605986,0.012253568,-0.01349948,0.03624751,0.01707002,0.031100683,-0.016882395,0.029581409,0.008522402,0.061638042,0.08830236,-0.018028064,-0.04439197,0.05232188,-0.06596152,0.0247913,-0.05895094,-0.00060544367,-0.06600312,-0.11506742,-0.010775595,0.07442587,0.07972222,-0.047964815,-0.016406372,-0.042227387,0.009859053,0.0068034963,-0.05677442,0.0399571,-0.08422987,-0.039071742,-0.046204135,-0.016649144,-0.010393413,-0.11088234,0.086317785,0.030688087,0.02616554,-0.07340477,0.02030721,-0.02586176,-0.010157575,-0.025992116,-0.005908371,-0.018749386,-0.0326912,0.033997905,0.051860377,0.011931215,0.037712485,0.030341847,-0.05174066,0.014728572,0.009970485,-0.078748345,0.023583751,-0.020442957,-0.08396736,0.07881721,0.073970206,-0.06316802,-0.0038753208,-0.019848531,-0.004274261,0.04035327,0.045894697,0.030823788,0.0075041526,-0.07654148,0.022312788,0.016947962,-0.040058397,-0.01624965,0.013593927,-0.00074005994,-0.0397393,0.069993526,0.022916902,0.0070045553,0.020581584,0.0383213,-0.03483488,-0.036820754,0.0022278149,0.03334114,0.032650825,-0.04808828,0.040282298,0.010900888,0.071236424,0.09468644,0.067879446,0.029004259,-0.060654696,0.04323719,-0.013048221,-0.013849119,-0.08192774,0.039831396,-0.056289986,0.0007996377,0.02257128,0.027736878,-0.06796656,0.0041807736,-0.08820164,-0.037477095,-0.03446736,-0.057878774,0.01790456,-0.014084696,0.060245674,-0.039672058,0.01882785,-0.053324204,0.057861555,1.4505179e-32,-0.050365057,-0.02049135,-0.084162876,0.037522715,0.01784758,0.0054988516,-0.035996526,0.03701911,0.018228032,-0.024527226,-0.022331392,-0.0074761617,0.04867975,-0.022576068,0.054303706,0.04070216,-0.024813022,-0.0111097805,-0.010772714,0.015494759,-0.05024211,-0.008599312,0.0052369135,-0.029058827,0.0623365,0.0003293854,0.03725246,-0.010731035,-0.034643065,0.044190392,0.021200247,0.067830525,0.001474614,-0.03674427,-0.010904189,-0.02137922,0.014852794,0.04227734,-0.062130563,-0.03990782,-0.0024054684,0.015356097,-0.050342336,0.020009076,0.058703385,0.021984842,0.1283595,0.008682191,-0.01774706,0.04662585,-0.032946713,0.0089804325,-0.029247435,-0.1179028,-0.025485465,0.018400494,-0.05058423,0.008028421,-0.10605612,-0.08642183,0.019791842,0.061088797,0.026393987,-0.06624491,-0.03670112,0.008292071,0.009094993,0.009651712,0.09628968,0.06554144,-0.007383099,-0.0041177166,-0.056371134,0.0068636965,0.031831887,-0.026260503,0.06099947,-0.011366705,-0.00925644,-0.029294303,-0.03354217,0.0031507667,-0.010405467,0.021902483,0.17365439,0.059370562,0.0057253335,0.017904617,0.061356522,0.10783639,0.004023107,0.026663618,-0.004001492,-0.045492575,0.08780293,-1.4402764e-32,-0.03466198,0.0509735,-0.0016599434,0.038136404,0.044016525,-0.083294675,-0.022180319,0.053340603,0.038589064,-0.08942937,-0.101886295,-0.11329125,0.07389703,0.04735059,0.013748887,0.030482594,-0.10728596,-0.15747574,-0.122829385,-0.029824078,-0.009269897,0.03484774,0.030112416,-0.020018447,-0.03216663,-0.00076248316,-0.08729758,0.009956194,-0.06724005,-0.051294688,0.022979869,-0.06530895,-0.0027027961,0.058680337,-0.05807056,-0.017817017,-0.014855267,0.010063469,2.4929592e-05,0.02024308,-0.008983367,0.0784061,-0.04414066,-0.0896215,0.003178401,-0.040306427,0.07170329,-0.12213096,0.09294095,-0.11960017,0.14420177,-0.049974315,-0.02208273,-0.02804574,0.057364345,-0.0056259544,0.09693979,-0.091152556,0.014036459,0.046542227,0.05674002,-0.032042585,0.021192038,-0.010300184,0.03553547,-0.030848624,-0.013093024,0.022284882,-0.057540935,0.025377162,0.10369927,0.012089071,-0.13532315,0.014437536,-0.025983568,-0.0460394,-0.09780339,-0.009316648,-0.010447366,-0.007431731,-0.028667849,0.028457437,-0.032490943,0.0003747783,0.020679006,-0.016027661,-0.04459231,0.017146336,-0.004984949,0.017949525,0.040985286,0.01850768,-0.052625615,0.058786508,-0.041517764,-5.7291e-08,0.04147207,0.008143428,-0.03617719,0.008031583,0.02834344,-0.054778043,0.029281564,-0.0132883135,-0.0047766813,0.040772423,0.030845394,-0.0007494551,-0.018126901,0.10141279,0.023009254,0.004878412,0.11381487,0.036693197,-0.09591245,-0.08690817,0.1664098,-0.022428099,-0.067051895,0.051660623,0.008020069,-0.06823984,-0.017987676,0.029919334,-0.016875075,0.020477695,-0.023891194,0.02130135,0.011003235,-0.07783951,-0.04737165,-0.082535125,0.026598355,0.024606839,-0.003904656,0.009779266,0.081237316,-0.052005798,-0.06502672,0.04438093,-0.042481575,-0.10942913,-0.025680969,-0.028863952,-0.041029785,0.022826254,0.003380573,-0.055440437,0.061573353,-0.0048260167,0.042871013,-0.016056905,0.012245802,0.044895954,-0.051937547,-0.019005584,0.06322488,0.07300536,0.069436364,-0.10527112} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:38:18.426132+00 2026-01-25 01:27:51.048594+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 355 google Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB 1 t 358 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! C’est scandaleux.\nAutant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. Passez votre chemin il y a beaucoup mieux ! très mauvaise expérience ! cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! c’est scandaleux. autant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. passez votre chemin il y a beaucoup mieux ! 1 2025-10-27 01:27:48.341317+00 fr v5.1 P1.03 {} V- I3 CR-N {} {"O1.01": "Autant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauqu", "P1.03": "Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un m", "R1.01": "Passez votre chemin il y a beaucoup mieux !"} {-0.016895225,0.09680172,0.06613797,0.012510582,-0.0066592535,0.051320855,-0.009240334,0.063658945,-0.04500988,0.06320176,0.031577464,-0.03280191,0.03489473,-0.05710643,-0.106214054,0.00832045,-0.09994634,0.0348267,-0.004492701,0.03771982,-0.019053295,-0.046065748,0.025519526,0.07056296,-0.0459145,-0.015686007,-0.091455236,-0.02030423,-0.042094808,-0.015545253,0.080797486,0.15792543,0.09684146,-0.049049236,0.021233385,-0.018143687,0.039601583,-0.021809176,-0.018827932,0.04057304,-0.088936634,-0.052420437,-0.10025527,0.0059465906,0.0027216848,0.013878509,0.029918568,0.063870475,-0.07707866,0.08032694,-0.042616025,-0.018524032,0.063760035,-0.061762795,-0.054108232,-0.088002995,-0.066625305,-0.0222468,0.05519537,0.0019572133,-0.040849406,0.03559624,-0.024150817,-0.015201957,-0.0749058,-0.06707641,0.05240149,-0.06334725,-0.00844461,-0.009236537,0.04241102,-0.03555498,-0.038218185,0.047006518,0.042770177,0.010585792,-0.07370132,-0.03836764,-0.0069954223,-0.16118279,0.029221918,-0.062369585,0.023231408,0.006952422,0.028319376,-0.11637452,0.048077974,-0.00019400546,0.044159476,-0.036901657,0.016264146,-0.024047704,-0.050330848,0.030039428,0.032798357,-0.069979675,0.028171659,-0.026507424,-0.087778896,0.0527712,0.0045908676,0.033001326,-0.04337199,0.11428263,-0.045225374,-0.07055175,0.006320689,0.0074510523,-0.05633468,0.03290432,-0.015997672,-0.012038428,-0.031720493,-0.1017207,0.05318071,-0.035288706,-0.022426136,0.012062733,-0.015654808,-0.023503924,0.061325353,-0.025307497,-0.05599782,-0.043017037,-0.040848613,-0.07128108,0.092000775,9.815461e-33,-0.03976965,0.09706436,-0.07936757,0.028715678,0.0055307844,0.0031507686,-0.067150116,0.0084721325,-0.0007045407,0.0039477544,-0.03818278,0.097734325,0.0069484552,0.00039471925,-0.0032952134,0.050083112,0.017055321,0.04824142,0.061565794,-0.06739083,-0.02116457,-0.01723309,0.0453021,0.013740386,0.09789368,-0.06277704,0.021068806,0.0034670033,0.002341847,0.019693311,-0.020920508,-0.053682204,0.030161817,-0.032571733,0.014160862,-0.037186835,0.052950297,-0.005115969,-0.019388538,0.076897115,0.015226839,0.025488295,0.036147803,-0.0038957421,-0.017655937,0.14545949,0.06766189,-0.04124504,0.06324976,-0.035954207,-0.006923358,-0.033611573,-0.145446,-0.0072173798,-0.025657447,0.038175873,-0.0917072,-0.019367773,-0.011606249,-0.03909949,0.07667518,-0.011331121,0.024237875,-0.055892352,-0.0353331,-0.052500088,-0.0421491,0.0008692504,0.08174968,-0.020748371,-0.06922126,0.0012861727,0.008393893,0.043978035,-0.025717974,-0.011677903,0.025082594,-0.011204286,0.029344589,-0.07416867,0.016299516,-0.09377144,-0.045101456,0.03389897,0.04413158,-0.019483097,-0.0120564075,0.02373787,-0.0065533794,0.08303259,-0.006844238,-0.099096306,0.08588799,-0.029805047,0.056451425,-1.3127493e-32,-0.07521292,-0.074071065,-0.06884151,0.063868694,0.020718746,0.04536135,-0.060838137,0.14651297,0.0288326,-0.066033036,-0.060913872,-0.02261906,0.021162437,-0.06808528,-0.03903256,0.07764754,-0.00094102905,0.044670876,-0.038830116,0.027819933,-0.014812369,-0.02739415,0.0011316347,-0.03904495,-0.0116055,0.0301839,0.0022735407,-0.0041662613,0.0040573208,0.075539924,-0.05400994,0.027366746,0.027160754,0.03252277,0.043570444,-0.014459628,0.07212065,0.0017047556,0.0033845447,0.056116577,-0.00522081,0.04856258,0.03514274,0.0025782562,0.08261668,-0.08076908,-0.073631726,-0.071974784,0.043414354,-0.018789364,0.038564745,-0.04475901,0.09354411,-0.02754647,-0.02472884,-0.023991754,-0.0090612685,-0.045310255,-0.007541572,0.03252807,-0.009902837,0.02241392,-0.0070140013,0.0041407603,0.07417965,-0.038899075,-0.064347066,-0.011683461,-0.031125167,-0.04262296,0.07734623,-0.12830487,-0.057379898,0.0012733524,-0.017991642,-0.05197488,0.0062194555,0.11065553,-0.014741129,0.053588036,-0.05406989,0.075755045,-0.0153649105,-0.029520601,-0.044372443,-0.03465098,-0.0033139633,-0.083904065,0.0061296956,-0.037483368,0.06838953,-0.027418917,-0.0050783693,-0.053908225,-0.026873747,-6.186648e-08,0.0687415,-0.052869108,-0.021786213,0.04902211,0.107775524,-0.02619555,-0.104273155,0.03884485,0.021535091,0.016767355,0.04550367,0.060673285,-0.015184639,-0.029528614,-0.0042346767,-0.00027890905,-0.023280563,-0.011486991,-0.04348784,0.03802325,0.071426675,0.048219394,-0.037048895,-0.12046322,-0.07526426,-0.015680477,0.0205182,-0.026434835,-0.08160519,-0.065375954,-0.0031551595,0.032837987,-0.027650794,-0.008326425,-0.016661854,-0.049442146,0.017917791,0.00045587058,-0.08963531,0.042851787,0.096374676,-0.029672401,-0.052418645,-0.0021459763,0.06660537,-0.04454233,-0.04170984,-0.0059772083,-0.028700309,0.069671445,0.013198675,0.098371744,0.045651548,0.037927028,-0.022513906,0.035620317,-0.04100481,0.051151752,-0.055492844,-0.015631333,0.06830432,0.028087117,-0.00035760654,-0.03881355} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:26:21.767734+00 2026-01-25 01:27:51.06504+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 361 google Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB 1 t 364 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Gente voy a ser breve!Soy de Gran Canaria y vivo en Tenerife!No se les ocurra alquilar en esta empresa!Son unos estafadores!Lean las reseñas de la oficina en Tenerife norte!Van a flipar!Alquile un Volkswagen y supuestamente me multaron!Me cobran de mi cuenta 50 euros por tramitación!Ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan!2000 euros de fianza por un Audi a1?Eran chicos asturianos!Estoy seguro que se inventarán algo para.msrgsrles el dinero!Hay reseñas que te ponen los pelos de punta!Llevan medio año y por la central presumen de que nomparan de crecer!Con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! Estafadores! gente voy a ser breve!soy de gran canaria y vivo en tenerife!no se les ocurra alquilar en esta empresa!son unos estafadores!lean las reseñas de la oficina en tenerife norte!van a flipar!alquile un volkswagen y supuestamente me multaron!me cobran de mi cuenta 50 euros por tramitación!ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan!2000 euros de fianza por un audi a1?eran chicos asturianos!estoy seguro que se inventarán algo para.msrgsrles el dinero!hay reseñas que te ponen los pelos de punta!llevan medio año y por la central presumen de que nomparan de crecer!con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! estafadores! 1 2025-12-26 01:27:48.341371+00 es v5.1 P1.03 {} V- I3 CR-N {} {"P1.03": "No se les ocurra alquilar en esta empresa! Son unos estafadores! Lean las reseñas de la oficina en T"} {0.017797243,0.003782279,-0.013726728,-0.084474415,-0.019439977,-0.039853163,0.027768442,0.045528952,-0.03251544,-0.039129358,0.043120578,-0.043626893,0.022332113,0.005083735,-0.009884845,0.007477712,-0.020485858,-0.02812651,0.03248374,0.071422905,0.05997277,-0.07972811,-0.056630448,0.097838655,-0.027170194,-0.009229529,0.02109805,0.034007687,-0.10611695,-0.041821092,-0.04917576,0.05411617,0.03085842,0.032850284,0.003955841,-0.05919055,0.07901354,-0.07013017,-0.10469897,0.031920884,-0.03565634,-0.05054202,-0.03969915,-0.009060754,-0.024421098,-0.02256014,0.03506857,0.09088911,0.034738135,0.0013228584,-0.0016091262,-0.029917145,0.008282546,-0.03297029,-0.07068529,-0.014933815,0.020325951,0.0243943,0.07633423,0.05062649,-0.011151185,0.0717767,-0.052871794,0.04334076,-0.018961528,-0.021729875,-0.0007299439,-0.012445661,-0.17343515,0.05310521,0.12227085,-0.110636,-0.0023253185,0.021325512,-0.025711643,0.09973361,0.007014381,-0.020918986,0.0033082946,-0.026412437,0.009398195,-0.034082457,-0.059115738,-0.07897116,-0.010274051,-0.022290487,-0.0054461327,0.034989208,0.09746846,-0.0576546,0.006373855,0.08154466,-0.046592057,-0.0011944228,0.029455755,0.04612774,0.05655911,0.014597044,-0.039377138,-0.0004638775,0.10244776,0.041266114,0.034744162,-0.026419556,-0.08633702,0.049189318,0.047699716,0.022333033,0.035524838,-0.006275599,-0.053235643,0.009912301,0.025766699,-0.024500206,-0.09347753,0.006886107,-0.013278443,-0.032872126,-0.037575092,-0.03772586,0.02675755,-0.019698555,-0.09675329,-0.005822926,0.048441757,0.015730746,-0.011430105,1.4384416e-32,-0.058303315,0.031135678,-0.00840348,0.07727768,-0.004160582,0.027651668,-0.03502311,0.03434483,-0.08291422,0.0020935603,-0.09413889,-0.022034286,-0.044835787,0.03854586,0.040419444,0.0112112025,0.022031263,-0.098795526,0.06033848,0.0031510629,-0.024824668,-0.018422352,0.008857888,0.004108049,-0.051392242,0.05520667,-0.045823425,-0.075293176,0.038983293,0.052877598,-0.079366766,0.0056319847,1.6583364e-05,-0.041108076,-0.05682514,-0.056843493,0.027799517,-0.01761367,-0.08396311,-0.009080642,-0.024944771,0.009178555,-0.00030311872,0.01148032,0.021159207,0.011995309,0.029416861,0.04096462,0.08115216,-0.029676743,-0.0699963,-0.044024184,-0.05088727,-0.06184157,0.027032051,0.04736918,-0.060633276,0.016963853,-0.06415918,-0.07855013,0.041200534,0.044328913,0.07878806,-0.04971478,-0.032430306,0.0029680016,0.0011124363,0.0003069134,0.13252993,0.025431458,0.011498392,-0.0058944095,-0.018312491,0.041298162,0.032885376,0.026744656,0.050983317,0.02270263,0.04562105,-0.019005902,-0.026457062,-0.040131696,0.010024027,0.07276203,0.15190285,0.09744833,0.043228485,-0.02776107,-0.036421034,0.092566825,-0.025240444,0.049923453,0.033245355,-0.06510504,0.013686956,-1.4867948e-32,0.010760181,0.038094174,0.009704972,-0.033699706,-0.05037691,0.026821569,0.03185401,0.0016230615,0.029064965,-0.12550798,-0.11626492,-0.061034977,0.084903665,-0.08632695,-0.06431861,0.06734734,0.045685425,-0.0200638,-0.043031517,-0.06472871,-0.038033433,0.032622855,0.079374194,0.08890766,-0.03496737,-0.056681085,0.023700573,0.043431994,-0.05133902,-0.008505301,0.019680534,-0.01640369,0.049339056,0.06260433,0.01437944,0.0038362816,0.09252551,0.031323954,-0.016563585,0.03266959,-0.030479655,0.02118529,-0.02681742,-0.017859425,-0.039039005,0.023343047,0.03772515,-0.15013757,-0.022467794,-0.058044408,0.10583659,-0.04936814,-0.047561374,0.025022665,0.014713182,-0.021129707,0.074259624,-0.07910661,-0.034369856,-0.06257594,-0.004653559,0.08961758,-0.018080998,-0.04528056,0.061032146,-0.060248196,-0.050147798,0.0058919177,0.066055015,0.0049942615,0.08112755,-0.014056955,-0.14568242,0.016383076,-0.06326958,0.027558934,-0.002498505,-0.01639993,0.026835207,0.0023975736,-0.028038891,0.007726076,0.0192204,-0.035972986,0.016377915,0.011841675,0.008951038,0.049480524,0.027641432,0.09644244,0.015317513,0.06647574,-0.02752509,-0.013162994,-0.007163416,-5.6257694e-08,0.009849021,-0.0120454095,-0.04080959,0.040035464,0.0026102539,-0.04905936,-0.048054304,-0.021715287,0.009112153,0.036487993,0.020065947,-0.059782676,-0.06424166,0.04354511,-0.059588086,0.082971804,0.03354599,0.10098162,-0.069288634,-0.03676691,0.018162511,0.06653424,-0.07576303,0.021275843,0.02980695,-0.041504893,-0.07274458,0.024863653,0.09110449,0.0025936125,-0.06469909,-0.041987788,-0.0890186,-0.124111906,-0.06915593,-0.042850178,-0.015860708,0.046086326,0.023536388,-0.061513327,0.080329046,-0.0676315,-0.091456816,-0.026017467,-0.055800036,-0.08959036,-0.06889715,0.0021888025,-0.0029209594,0.07801722,-0.009512998,-0.0064170705,0.06257159,0.07064809,0.054108564,-0.06026941,0.0029258893,0.0036477917,0.008366165,0.0029428278,0.009641074,0.06139385,-0.022043904,-0.06149853} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:47.348213+00 2026-01-25 01:27:51.101102+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 362 google Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB 1 t 365 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Una experiencia desastrosa – jamás volveré\n\nReservé un coche y acudí puntualmente el día acordado para recogerlo.\nEl vehículo no estaba disponible, no ofrecieron ninguna alternativa útil, y el personal se mostró completamente despreocupado y poco profesional.\nSin disculpas, sin compensación y sin ninguna solución concreta. Nos dejaron literalmente tirados, con todos los planes arruinados y altos gastos extra.\n\nConclusión: Empresa poco fiable, nada profesional y sin atención al cliente. Si quiere evitarse problemas, costes adicionales y frustraciones, busque otro lugar para alquilar. una experiencia desastrosa – jamás volveré reservé un coche y acudí puntualmente el día acordado para recogerlo. el vehículo no estaba disponible, no ofrecieron ninguna alternativa útil, y el personal se mostró completamente despreocupado y poco profesional. sin disculpas, sin compensación y sin ninguna solución concreta. nos dejaron literalmente tirados, con todos los planes arruinados y altos gastos extra. conclusión: empresa poco fiable, nada profesional y sin atención al cliente. si quiere evitarse problemas, costes adicionales y frustraciones, busque otro lugar para alquilar. 1 2025-08-28 01:27:48.341373+00 es v5.1 J1.03 {A1.03} V- I3 CR-N {} {"A1.03": "Conclusión: Empresa poco fiable, nada profesional y sin atención al cliente. Si quiere evitarse prob", "J1.03": "Reservé un coche y acudí puntualmente el día acordado para recogerlo. El vehículo no estaba disponib"} {0.0009242317,0.06378966,-0.046981946,-0.009003377,-0.107464045,0.031175599,0.12738715,0.05166093,0.04263584,0.008109732,0.06257867,0.022132467,0.002509426,0.029239956,0.013573657,-0.05425203,0.014172182,-0.009485577,-0.016363807,0.059717745,0.047928397,-0.095311224,-0.103727825,0.0626437,-0.013163012,-0.043728597,-0.030758334,-0.009903701,-0.03605313,-0.07204167,-0.025359461,0.061663255,0.05187458,-0.0017961476,0.06316909,0.029562306,-0.002689945,0.022726864,-0.019922318,0.070611835,-0.10087258,-0.020751974,-0.08185694,-0.064212754,-0.025379494,-0.104348324,0.07245799,0.09664214,-0.017112136,-0.011727815,-0.026591828,-0.03594695,-0.041850377,-0.03223976,-0.0057107545,-0.05495431,-0.020362766,-0.007705957,-0.0027513339,0.026946932,0.009267668,0.02835726,-0.023400933,0.018652992,0.019890087,-0.016391989,-0.010809396,-0.0055892225,-0.113102116,0.041510653,0.07693516,-0.11033978,-0.06976615,-0.013965631,-0.002135874,0.09755915,0.0104167545,0.075152546,0.016351532,-0.07018975,0.06721384,-0.0077156364,-0.07708425,-0.021007312,-0.03639421,-0.02209655,-0.024508715,-0.05912042,0.0935047,-0.016903775,0.02485068,0.04122986,-0.06557791,-0.04627108,-0.041324783,-0.019789303,0.012009756,-0.00055674854,-0.0226609,0.027653502,0.07963821,0.07556545,0.06701141,0.0048239175,-0.080384955,-0.028349321,0.020467207,-0.010653637,0.014905483,0.07650161,-0.13068748,-0.03148612,-0.053504873,-0.038706478,-0.0534144,0.04924547,-0.11614382,-0.014745744,-0.013899672,-0.023672612,0.016926676,0.022212192,-0.0098466175,-0.030097827,-0.057044722,-0.09259012,0.047085132,2.0764551e-32,-0.046314243,-0.039886508,-0.038177934,0.052951466,0.006460056,0.0094819935,-0.03724845,0.024544423,-0.019921532,0.0054534646,-0.0340531,0.08929545,0.008087033,0.0454841,0.07417992,-0.010540871,0.040410995,0.0025402254,0.07629617,-0.03722521,-0.01894991,0.026884738,0.028853456,-0.084051326,0.0052600424,0.004006083,-0.032848686,-0.010407606,-0.019488368,0.046483953,0.059131254,0.01931498,0.05258676,-0.039534073,-0.030223282,-0.018751424,-0.007898414,-0.009867886,0.006761736,-0.06913953,-0.09493549,0.05148858,0.0074448455,0.053017993,0.044528533,0.09592515,0.09995124,-0.00010217136,0.021887787,0.040955387,-0.072643526,-0.017917667,-0.023921479,-0.03189292,-0.008370435,-0.019077456,-0.073227316,0.05056971,-0.023857985,-0.076176964,-0.030804217,0.03393142,0.005378602,-0.04122501,-0.048478596,-0.011242858,-0.03362495,-0.0043784664,0.098793164,0.0496676,-0.03033098,-0.0016826196,0.009793256,0.08267551,0.029049855,-0.049309876,0.030111475,0.012933611,-0.015816825,0.015511736,-0.06225067,-0.04744884,0.038141225,0.009866962,0.07513629,0.04703903,0.07438684,0.029212466,0.04348919,0.15785573,-0.031127207,0.09587762,-0.03725544,0.0086042825,0.09118437,-2.082253e-32,-0.0055711432,-0.009973131,-0.029249825,-0.032516275,-0.00861192,0.03828488,-0.09026071,-0.044972625,-0.018752968,-0.041090246,-0.15718772,-0.08120527,0.075250804,0.013941882,-0.11503955,0.0028640751,-0.03254172,-0.09236358,-0.08542922,-0.038847223,-0.033517037,0.04333674,0.046718102,-0.031228734,0.0034448525,-0.03126502,-0.027335295,0.0107618505,-0.0889353,-0.033693567,0.06889283,0.022503946,-0.044079445,0.05523664,-0.085799746,0.011541189,0.0072588515,0.03306661,-0.037589055,0.051986784,0.031151244,0.022502346,0.042721935,-0.05607198,0.036743388,-0.047545455,0.001386562,-0.20850544,0.058471862,-0.04212155,0.107841134,-0.028566295,-0.028122798,0.0005442692,0.026721071,0.0104040215,0.035654016,-0.06560334,-0.049769036,-0.020076312,0.094758146,0.030949375,0.021544473,0.009501748,0.096521474,-0.026499026,0.010068136,0.023678726,0.004846253,0.026824277,0.0666784,-0.045784347,-0.08971233,-0.0077869794,-0.0012296265,0.058360647,-0.07090025,-0.011817838,-0.009934279,-0.0055255247,-0.051049754,0.015008846,-0.018511232,-0.03470128,-0.05828729,-0.020108145,-0.021169897,0.03360927,-0.018929832,0.038721792,0.010686559,-0.018879557,-0.024849327,-0.00036340693,-0.011568115,-7.297677e-08,-0.0269681,-0.04095655,0.029333437,0.018758016,0.008410278,-0.11438125,0.0501026,0.014898402,-0.00072572264,0.04281729,0.02061806,-0.03162976,-0.039040606,0.07727782,-0.036578733,-0.004174601,0.10125165,0.07096879,-0.045725897,-0.029853307,0.09339907,0.0218683,-0.097092755,0.0036494154,0.010512448,-0.03233424,0.012156579,0.043468326,-0.01891936,0.05408502,-0.065263696,-0.013067983,0.0615339,-0.13017927,-0.054991845,-0.024495175,-0.03150485,-0.008110565,-0.09606561,0.03067708,0.05341817,0.012765436,0.010253078,0.009728074,-8.736382e-05,-0.04494525,-0.06078276,0.07802439,0.015767524,-0.016682066,-0.033959277,-0.0084662875,0.08062807,-0.02096461,-0.018135037,-0.067103796,-0.0195013,0.078346685,-0.066766925,-0.020795694,0.055985615,0.01590673,0.0491411,-0.027779358} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:37:46.511121+00 2026-01-25 01:27:51.104591+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 367 google Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB 1 t 370 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repostar y entregar el coche. Te pasan a buscar desde el parking de Salidas del aeropuerto y te dejan en las salidas. Ha sido muy facil todo. Eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. En nuestro caso esa un seguro sobre la franquicia, por lo que hemos tenido que dejar el depósito igualmente con ellos y, en caso de daños, se los pagas a Click Rent y después reclamas al seguro de la agencia. Lo específico porque nunca me había pasado y al reservar con la agencia, no lo dejan muy claro la verdad. muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repostar y entregar el coche. te pasan a buscar desde el parking de salidas del aeropuerto y te dejan en las salidas. ha sido muy facil todo. eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. en nuestro caso esa un seguro sobre la franquicia, por lo que hemos tenido que dejar el depósito igualmente con ellos y, en caso de daños, se los pagas a click rent y después reclamas al seguro de la agencia. lo específico porque nunca me había pasado y al reservar con la agencia, no lo dejan muy claro la verdad. 5 2025-08-28 01:27:48.341489+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repost", "P1.02": "Eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. En n"} {0.047880694,0.05100002,-0.016539445,-0.041582793,-0.004387952,-0.0010434783,0.086518936,-0.04316983,0.0321713,0.0014260005,0.09592123,-0.0016369565,0.028151032,0.056865606,0.05464741,0.02377604,-0.057982314,0.028701685,-0.012629133,0.029679317,0.14798406,-0.055303264,-0.038680002,0.06773879,-0.09500598,-0.02836109,-0.021856837,0.025593305,-0.098836526,-0.024239162,0.024835452,0.07462432,0.0888656,-0.056657195,0.028543325,-0.027650457,0.054193914,-0.06409693,-0.021369666,0.0724963,-0.09925123,-0.008724049,-0.027550837,-0.05507739,-0.06681892,0.0032881328,0.08172808,0.08246994,0.037124854,-0.063030705,0.029331248,-0.0033810218,-0.012713102,-0.052981365,-0.068737805,-0.016936954,-0.030887585,0.016490407,0.12298986,-0.010210783,0.0066051963,0.009495856,-0.0012966262,0.033452015,-0.013076473,-0.08486255,0.010070164,-0.054579884,-0.015542359,0.0005461906,0.06730016,-0.07769858,0.0073151533,-0.022086034,-0.03644465,0.062746935,-0.012106939,0.033837315,0.010989436,-0.16977657,0.014594607,-0.032235585,0.035063293,-0.026729532,0.03719723,-0.03033075,-0.013935421,0.046867292,0.045877863,-0.009625854,0.038028177,0.07413331,-0.06917606,-0.008791183,0.057743505,-0.016165268,0.033407263,-0.024465267,-0.032655157,-0.0054833572,0.09214093,0.07755024,0.0866979,0.06320071,0.018420856,0.008302634,0.046596777,-0.047572702,-0.03092932,0.038220994,-0.051342323,-0.0078967465,0.0063277474,-0.026970891,-0.12063604,-0.017336182,-0.051555794,-0.03587285,0.004456977,-0.07467142,0.021590365,-0.04859789,-0.04346188,-0.08840217,0.022547532,-0.010446308,0.062189817,1.17400375e-32,-0.08835548,0.011068728,-0.052767053,0.022036519,0.062293436,0.01619865,0.0075106933,0.04987696,-0.020830546,-0.00059122377,-0.005882218,-0.033062097,0.044051696,-0.05109575,0.06996119,0.03685706,0.034998633,-0.024136024,0.010969194,0.0064392798,-0.017627813,0.023396395,-0.01973068,-0.033689853,0.032132823,0.017172927,-0.03264698,0.0005574997,-0.045105234,0.051137164,0.04001723,0.0073240027,0.0029227633,0.005703264,-0.039944403,-0.10690215,0.070230216,0.041658975,-0.08335383,-0.09028311,-0.035165,-0.015655098,-0.06683873,0.05159117,-0.028927833,0.003001511,0.044699565,-0.011071847,0.029285075,0.0714563,-0.029667532,-0.041347396,-0.11988265,-0.045817215,-0.06553738,-0.006565838,-0.07493514,-0.008058368,-0.017974898,-0.073690385,0.053403433,0.044782277,0.044845194,-0.07076794,0.0254389,-0.057841074,0.030957185,0.051697522,0.15136364,0.04699343,0.01714506,-0.030821448,-0.03543473,0.0803071,-0.0017465854,-0.011691077,-0.0068599395,0.004603808,-0.0044142804,0.040434174,0.033375274,-0.049741622,0.027139574,0.037007824,0.071097136,0.0035261645,0.0519909,0.06646377,-0.049800623,0.07770264,-0.009565792,0.041491926,0.0918037,-0.04384108,0.025529684,-1.2496786e-32,0.007890431,-0.012067564,-0.0012821219,-0.033239502,-0.07778854,0.015945612,0.012678389,-0.08027465,0.008052493,-0.06888509,-0.10138019,-0.08372661,0.044567857,0.028965613,-0.019718118,0.119353205,-0.050652474,-0.052790385,-0.1316767,-0.037140056,0.0240209,0.038635645,0.08228411,0.076281026,-0.056504697,-0.038329776,-0.03946868,0.012099264,-0.04910919,0.06634797,0.008309764,-0.03927518,0.04627637,0.097983725,-0.0804272,-0.11923195,0.057628274,0.012525848,-0.0073333695,0.032568965,0.004266461,0.046062306,0.015320362,-0.02306307,0.003908384,0.004633417,0.07809431,-0.15372169,-0.027060376,-0.08760433,0.05042746,-0.08793078,-0.070389174,-0.0026431978,0.0038679999,0.04374695,0.037409235,-0.055973634,-0.05586135,-0.033715572,0.05681319,-0.04008756,-0.042082258,-0.012964099,0.06611541,-0.028046269,-0.013916182,-0.011117372,0.019447634,-0.00791018,0.034226954,-0.016206454,-0.08490911,0.011636379,-0.047287498,0.014140038,0.031659875,0.07356284,-0.05065454,-0.008065626,0.0038836792,0.001902232,-0.047125746,-0.017417325,-0.025976848,-0.060993645,-0.015896715,-0.03536362,-0.0053673424,0.0051929546,-0.030986363,0.01905363,-0.040191825,0.013652075,-0.012470404,-5.0838445e-08,-0.04998521,0.004948153,0.001953237,0.005211825,0.043401103,-0.04992092,0.018533843,0.07993426,0.029337244,-0.0038784975,0.046947073,-0.010858645,-0.030848792,0.06270034,-0.027348533,0.035219047,0.06508878,0.03656548,-0.010389173,-0.013538359,0.095551535,-0.013334451,-0.054085016,0.093038335,0.017249629,-0.063326895,0.0025175537,-0.009853678,0.015034269,-0.03702478,-0.021539882,-0.044749055,0.02291379,-0.05718171,-0.060735323,-0.051922444,0.054670885,0.020908015,-0.049163356,0.044015992,0.08642669,-0.046389658,-0.115955874,-0.017408866,0.020243252,-0.039528493,-0.024057195,0.021593843,-0.04059465,0.0066304547,0.0020661112,-0.0202553,0.047912747,0.06364628,0.0530573,-0.100922756,-0.062221922,0.033635765,0.04624186,0.014557535,0.09044053,0.14409278,-0.037758417,-0.07505913} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:37:15.029174+00 2026-01-25 01:27:51.134895+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 369 google Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB 1 t 372 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig.\nDa jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran\nJeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. De stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass.\nDette blir jeg da belastet med 420 euro for.\nHadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig.\n8070nhd - hvis du leier denne så har de i alle fall fått inn en straffeavgift på denne. Hvem vet om de før meg også har betalt.\nTa bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen. leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. i og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig. da jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran jeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. de stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass. dette blir jeg da belastet med 420 euro for. hadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig. 8070nhd - hvis du leier denne så har de i alle fall fått inn en straffeavgift på denne. hvem vet om de før meg også har betalt. ta bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen. 1 2025-12-26 01:27:48.341515+00 no v5.1 J1.03 {} V- I2 CR-N {} {"J1.02": "Ta bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen.", "J1.03": "Da jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran. J", "O1.02": "Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to perso"} {-0.0574139,0.075070776,0.00472785,-0.040946517,-0.031658787,-0.005176428,0.08922886,0.13950706,0.015348206,0.00041711613,0.027631745,-0.034695826,-0.037811335,-0.063655585,-0.047116067,-0.10172441,-0.03863084,0.078096256,-0.03966933,-0.021168955,-0.012932105,-0.056799565,0.0040407144,0.033289086,0.038905654,0.038283654,0.042020146,-0.032914385,-0.00727163,-0.02538723,0.060057618,-0.003516157,-0.021099921,-0.029232826,-0.024515117,0.08972999,0.006708998,-0.06908782,-0.028652145,0.05902596,0.018911758,-0.037073813,-0.101919204,-0.08851707,0.009870337,0.061007187,0.009743093,0.013426627,-0.030479,-0.008355254,-0.032179244,0.021796888,-0.0021744655,-0.023586756,-0.004190204,-0.0706743,0.051451463,0.022159306,0.03909044,-0.067083806,-0.074402206,0.00013419078,0.04887939,0.0027266121,-0.056784786,-0.014954897,-0.024587551,0.009956991,-0.03947572,0.06315013,-0.007831148,-0.028289957,-0.09927116,0.03617682,-0.034076,0.050689604,-0.0033183119,-0.0047169644,0.054587733,-0.10497592,0.030275188,-0.044880904,0.040799763,0.02561851,-0.021602998,-0.0034507494,0.036861435,0.043791413,0.09056958,-0.010716272,0.05283952,0.069162905,-0.111955926,0.01323737,-0.051855765,-0.036279928,-0.055971887,0.009120208,0.014602071,0.013690404,0.06186526,0.058281515,0.08075682,0.034247708,-0.03839715,-0.04521612,0.10283547,-0.052849054,0.10292288,-0.028807146,-0.07896362,-0.0014396122,0.071531095,-0.08896335,-0.028725525,0.044361882,-0.02810616,-0.06717449,0.042389233,0.049006615,-0.00018609832,0.057356752,0.025168093,0.009377301,0.051944405,0.027937377,-0.013246582,1.7121641e-32,-0.06889985,0.014918389,0.07275268,-0.046806242,-0.009367029,-0.026533836,-0.02606025,0.005701706,0.02861373,-0.018619252,0.01123202,-0.13759947,-0.06808831,0.040227965,0.013381707,-0.008171964,0.03906143,-0.06319984,-0.025032876,0.043366645,-0.018557975,-0.052811965,0.03455135,0.011410023,0.010524278,0.0021227866,-0.021276588,0.025059426,0.0044108336,0.005200426,0.051062956,-0.077155225,0.038204912,-0.03235466,-0.070081264,-0.03409508,-0.041835234,-0.04378938,-0.031395577,0.001421996,0.08139385,-0.033683073,0.042214397,0.07089155,-0.008722497,0.093535,0.009384896,-0.043413553,0.01211191,0.0003541988,0.006850322,0.0038901204,-0.029575555,-0.007995577,-0.0031458368,0.086023115,-0.020960009,0.016933698,-0.008783405,-0.03377524,-0.029178595,0.06635468,0.044432104,-0.0026287253,0.045919716,-0.042607423,-0.027481508,-0.010445079,0.022673465,-0.08972518,-0.009405817,0.029937645,0.024595145,-0.0046855058,-0.023024507,0.07588143,-0.017916147,-0.00800752,-0.031411413,-0.07997094,-0.121332675,-0.016037064,-0.030469112,-0.09315571,0.037590414,-0.035392366,0.09554572,-0.121655025,-0.031917177,0.10152647,-0.035697527,0.013541799,-0.03753099,-0.08391575,-0.024473587,-1.575566e-32,-0.073933415,0.10287525,-0.0068330616,0.08436232,0.020640166,-0.030807864,0.028702436,0.007896275,0.04188646,-0.04061932,-0.03471201,-0.07170062,0.012445766,0.03983542,-0.056338437,0.09864043,0.01152405,0.06690128,0.04459229,-0.038668074,-0.019381678,0.03881105,0.060264982,0.1745475,-0.05168712,0.06221106,0.10731776,0.0035646022,-0.02873542,-0.014009929,0.04048058,-0.00036219755,0.032640092,0.052043304,-0.032924365,-0.019776134,0.074191935,0.010849281,-0.01607033,-0.034692395,-0.00020337127,-0.029590948,-0.049524605,-0.10628,-0.024217408,-0.048581,0.08377406,-0.024030332,-0.016608084,-0.056594573,-0.014799706,0.036019634,-0.029671662,0.07933883,-0.01998286,0.018545205,-0.007769261,-0.03894337,-0.024275884,-0.056648597,0.0077175796,0.02605148,0.03292382,-0.056796312,0.06858375,-0.044509333,0.010938096,-0.034340452,0.10522119,-0.052613825,-0.030342488,-0.028790595,-0.020911874,0.0035278664,0.017877638,0.041579556,0.004603474,0.026440145,0.028504357,-0.11351291,-0.13306399,-0.02986301,-0.035367325,-0.012083324,-0.003060058,-0.03366558,-0.030375563,-0.029303579,-0.029740816,-0.023184588,0.007839103,0.07425554,0.01893213,0.031855457,-0.045034908,-5.390738e-08,0.03534867,-0.04352739,-0.050461862,0.04723857,0.10994065,-0.1517143,0.013356225,-0.07547817,-0.107705176,0.08636314,-0.0020391622,0.044307318,-0.019646674,-0.050742675,0.027147496,0.0057949037,-0.049909696,0.019694325,-0.08617173,-0.035456188,0.024405072,0.04672763,-0.10218863,-0.011498756,0.037704878,-0.0032940982,0.0049142884,-0.0071948855,0.10315921,-0.03514315,0.10715242,0.064044975,-0.0076142885,-0.0694673,0.08599168,-0.026944552,-0.0076168273,0.045985263,0.05525192,0.14487809,0.056142353,-0.045262527,0.057525054,-0.018674428,-0.08878832,0.023790147,-0.0020067678,0.047832068,0.0005513555,-0.02272772,-0.011698368,0.028966507,0.021902317,0.052751057,-0.0022700196,-0.015750013,-0.005092965,0.113274954,-0.03162634,0.013875667,0.010999432,-0.04458924,-0.03397998,-0.039532978} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:13:41.008466+00 2026-01-25 01:27:51.143214+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 370 google Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB 1 t 373 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione. Assolutamente senza complicazioni e senza problemi. Alla mia prossima visita a Gran Canaria, noleggerò di nuovo solo da clickrent. Un grande ringraziamento al personale molto cordiale.. grazie per tutto;) questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione. assolutamente senza complicazioni e senza problemi. alla mia prossima visita a gran canaria, noleggerò di nuovo solo da clickrent. un grande ringraziamento al personale molto cordiale.. grazie per tutto;) 5 2025-08-28 01:27:48.341517+00 it v5.1 J1.03 {A1.01} V+ I3 CR-N {} {"A1.01": "Alla mia prossima visita a Gran Canaria, noleggerò di nuovo solo da clickrent. Un grande ringraziame", "J1.03": "Questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione."} {-0.0055823103,0.069400236,-0.08812116,-0.026694858,-0.05065372,-0.023253338,0.07502537,0.08235804,0.00046854434,0.022549016,0.060228243,-0.053790573,-0.025208281,0.009113677,-0.059223756,0.0030524929,0.005202714,0.04699985,-0.009302382,0.053325523,-0.069870025,-0.09393268,-0.058431093,0.09854291,-0.05381861,-0.09913166,-0.037373602,0.03926486,-0.0726966,-0.060960643,-0.03131404,0.08044641,0.033032928,-0.045261376,0.09852514,0.0007668184,-0.010117871,0.0012658675,-0.023466835,0.044370357,0.012184508,0.0023542773,-0.062458377,-0.04043516,0.016852524,-0.07353088,0.0018345682,0.06734492,0.0012367432,-0.04346799,-0.10750705,0.018083874,0.03128715,0.009847373,-0.08144353,-0.022770628,0.057105374,-0.00392685,-0.065487646,0.02701129,0.06776374,-0.024900565,-0.0011424477,0.04316948,0.011143323,0.03612272,0.0031131464,-0.029792137,-0.033704765,-0.010978953,0.07952564,-0.07437441,0.009255663,-0.014047126,-0.030729488,-0.03800757,-0.050848857,-0.033595882,-0.028185895,-0.06572454,0.09121622,0.06972922,0.025518201,-0.031284187,0.06034295,0.016282994,-0.02640808,0.052835524,-0.0036691478,0.043827984,-0.022869257,0.03361774,-0.076013386,-0.055244,-0.008853486,-0.009084972,-0.038171105,-0.03435435,-0.024153125,0.025543358,0.08389333,-0.010919969,0.017813988,0.048910428,-0.031291485,0.09858254,0.031070104,-0.10564414,-0.040307704,0.07651215,-0.09308478,-0.06017638,-0.01453567,-0.06012904,-0.066314496,0.06610132,-0.008943187,0.0074654305,-0.042381797,-0.022600483,0.03196765,-0.06694992,-0.0016834317,-0.037402343,0.054321684,0.018881444,0.03809064,1.262179e-32,-0.027608143,0.020856608,-0.025162194,-0.07389503,0.015179523,0.038095415,-0.037399814,-0.042234655,-0.0046277065,-0.023030266,0.012775902,0.013884191,-0.008042989,-0.08584015,0.007843364,0.0330998,0.03134094,-0.013729788,0.018723533,-0.06243823,-0.07519032,0.0552633,-0.11187842,0.041129354,-0.034436785,0.055129748,-0.007055838,-0.051134106,-0.014316958,0.060733534,0.05391748,0.033763733,0.006727885,-0.005229155,0.077944726,-0.042501956,-0.014851359,0.042935256,0.07092045,-0.01649404,-0.04431165,0.032162413,-0.014450186,-0.042048696,-0.049629897,-0.001275128,0.0071937256,-0.033135973,0.04483618,0.032557227,0.001573668,-0.04739716,-0.03198553,0.0007240688,0.07240298,0.016963098,-0.06989096,0.054339282,0.05398213,-0.0417585,0.07438849,-0.052123953,-0.077584624,-0.045547143,-0.030126857,0.010053785,-0.024525791,0.018593982,0.09637986,-0.038083196,0.00926183,0.004638186,-0.04040421,0.06527296,-0.039887212,0.0027496566,-0.014235508,-0.024241822,-0.08223736,0.011055022,0.015256854,0.00044460202,-0.0029256344,0.036899064,0.07986416,0.12059368,0.032782964,0.06096378,0.011688086,-0.014311624,0.13627434,0.042605925,-0.008533516,-0.002790021,0.030985115,-1.1136811e-32,0.05079885,0.043083258,0.03574558,-0.023093382,-0.013599209,-0.03625725,-0.084227845,0.013988485,0.036328245,0.09481331,-0.022170866,-0.12875046,0.019349437,-0.033789884,0.0053772354,0.031652667,-0.014362497,0.005040029,-0.064692445,-0.015639529,-0.036350027,-0.05438709,-0.02660212,-0.036070585,-0.06718232,0.0053717913,-0.0019334338,0.0049445378,-0.0041686734,0.0020930716,0.059721753,0.064365126,-0.07729109,-0.05559853,0.0724417,0.017363207,0.03862856,0.022006823,0.016689798,0.026398089,-0.021346277,0.003506318,0.13613641,-0.044453584,0.01312681,0.01486995,-0.06667582,-0.06834542,-0.010950756,-0.078282475,0.041372564,0.018617991,0.05023968,-0.020862944,0.039434705,0.030812057,0.0064469893,-0.043932684,-0.08809053,-0.047471046,0.09863205,0.0046001365,-0.10813246,-0.0006648994,0.022211365,0.015365899,-0.1285135,0.086553864,-0.029675497,0.04780622,-0.021730963,-0.029667957,-0.020873781,-0.00034204326,-0.06855949,0.02291382,-0.0907186,0.018189726,0.104074955,0.076830365,0.001601623,-0.039678857,-0.006011563,0.0045303963,-0.07936632,-0.045959517,-0.019144803,-0.0058038123,-0.029004201,0.042902555,0.0075839977,0.053815886,0.0067606405,0.020231318,0.013447387,-5.4050528e-08,0.08276046,-0.15851153,0.09144061,0.00020169369,0.037994336,-0.018027112,0.01660807,-0.0063190544,0.012145401,0.10498771,-0.057265654,-0.03690688,-0.0089639,0.058183923,-0.083121054,0.10322028,0.15731259,0.008340405,0.019232986,-0.05421512,0.094415575,-0.045534592,-0.037076283,-0.050527792,-0.073327385,0.03754282,0.002493407,-0.036805917,-0.029703856,-0.0074782134,0.00965488,-0.0037208449,0.006814506,-0.068415634,-0.07721889,0.064657345,-0.033003815,-0.037155643,-0.04763993,-0.09807858,0.12881072,0.043981396,0.027234333,0.00593798,0.0042897556,-0.037734766,0.05152714,-0.069274135,-0.024461592,0.06430093,-0.043059867,-0.026826067,0.049644545,0.059594966,-0.015103799,0.009223123,0.070597,0.11052935,-0.051010825,-0.015791476,0.029222375,0.10832965,0.005182833,-0.011996986} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:37:07.053818+00 2026-01-25 01:27:51.148991+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 371 google ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB 1 t 374 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buena experiencia y servicio por parte de Juan Manuel y Néstor. Proceso rápido, sencillo y transparente. El coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito. Sin lugar a duda volveremos a repetir con ellos! muy buena experiencia y servicio por parte de juan manuel y néstor. proceso rápido, sencillo y transparente. el coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito. sin lugar a duda volveremos a repetir con ellos! 5 2025-03-01 01:27:48.341519+00 es v5.1 A1.01 {} V+ I2 CR-N {"Juan Manuel y Néstor"} {"A1.01": "Muy buena experiencia y servicio por parte de Juan Manuel y Néstor.", "J1.01": "Proceso rápido, sencillo y transparente.", "O1.01": "El coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito.", "R1.01": "Sin lugar a duda volveremos a repetir con ellos!"} {0.0035679494,0.035699736,0.031874638,0.00041539027,-0.02273273,-0.038931936,0.070990846,-0.015842589,-0.037049226,0.014173043,0.070018254,0.048430257,-0.03807567,0.0047850613,0.054602906,-0.03137076,-0.008242124,0.02715619,0.026248975,-0.009061459,0.11137853,-0.13993461,-0.10373758,0.038108867,-0.09377637,-0.07084442,0.022909533,0.019621914,0.0035851302,-0.063037105,-0.033022854,0.017893242,0.047001235,-0.018336494,0.023034872,0.06262391,0.053771313,-0.07187766,0.0050153593,0.04414352,-0.106073536,0.010456311,0.0069943247,-0.025995025,-0.037833814,-0.06997398,0.076554246,0.03709327,0.013710116,-0.07125092,-0.05482661,-0.022168325,-0.013191956,-0.057675492,-0.02036589,0.03349259,-0.014054919,-0.024565991,0.028655222,-0.023190867,0.054899585,0.042727377,0.0053324783,0.04341437,0.06648384,-0.04900092,0.0034142563,0.036874987,-0.005102534,-0.034557026,0.13413154,-0.030939199,0.030035503,0.011083161,-0.045114495,0.017679902,-0.044828042,0.035899654,-0.05896771,-0.08068115,0.034631267,-0.03327572,0.00043892808,-0.045473345,-0.0093715815,-0.012968775,-0.045099188,0.022037182,0.08618603,-0.0048415707,0.06941574,0.051056854,-0.03507573,-0.030497266,-0.06290897,0.009375016,0.031709034,0.019915806,-0.09952095,0.03487683,0.117767476,0.08060617,0.06820768,0.011463715,0.061512936,0.10583692,0.054030366,-0.007990386,0.051867828,0.06344612,-0.097182654,-0.050386965,-0.02292384,-0.03583979,-0.09424134,0.011193175,-0.04623782,-0.03813576,-0.02275876,-0.046085957,0.11252924,0.018066684,-0.06075836,-0.067664415,-0.020082084,-0.03240345,0.1515098,9.9740475e-33,-0.055827823,0.016846037,-0.05220364,0.071182795,-0.02339051,0.0018380382,-0.012724046,0.021950614,-0.07117373,-0.011373449,-0.015607366,0.014435138,0.0055730357,0.095015876,-0.034972515,0.013270773,-0.011585745,0.004645546,0.052953143,0.0075032357,-0.00039662496,-0.042223062,-0.021724803,-0.0066968454,0.055079084,0.026856648,-0.023925383,-0.06786868,-0.002359598,0.06194341,-0.010590073,0.03952786,0.061343838,-0.0018704246,0.044590566,-0.023156185,0.039276723,0.004432315,-0.044505425,-0.043835986,-0.023293687,0.0304322,0.0021528886,0.101783626,-0.021623088,0.015493379,0.05366893,0.04776078,0.07206051,0.023750829,-0.06264435,-0.044790477,-0.12602636,-0.05287909,-0.025013994,-0.020111231,-0.04514766,0.049767774,0.013776288,-0.07612083,0.054779857,-0.0104262205,-0.022449464,-0.009244964,-0.063252605,-0.011477381,-0.029694403,0.05952834,0.13244936,0.05667603,-0.1043139,-0.009686626,-0.0074212695,0.0076837162,0.012159198,-0.016231878,0.015939154,-0.007974764,-0.02187171,0.044881377,-0.09216802,-0.052341297,-0.0019480293,0.06591349,0.015319405,0.096402474,0.12049157,0.08105719,0.03819642,0.07351164,0.031484008,0.12717265,0.05862343,-0.030069364,0.022765445,-1.1172791e-32,-0.04013171,-0.04543193,0.05355371,0.0067458404,-0.026693113,1.861221e-05,-0.016121153,-0.06430235,-0.011089904,-0.0742881,-0.09272565,-0.11754391,0.0649693,0.014086998,-0.12124425,0.04514734,-0.02608901,-0.055169053,-0.069188304,0.020446628,0.0056139953,0.03593337,0.04644133,0.009765912,-0.007972782,-0.028260749,-0.016128412,-0.029330036,-0.07292319,0.02303115,0.0484123,-0.012755734,-0.0576572,0.038071927,-0.07140488,0.07514281,0.034249496,0.04066966,-0.0068262545,0.068711355,0.04834055,-0.0053844047,-0.015293684,-0.011050569,-0.072673775,0.05033382,0.0060226065,-0.13234907,-0.043248158,-0.004429138,0.03125877,-0.07671913,-0.078835994,-0.017102236,0.05622789,0.017755179,-0.049123608,-0.052395537,-0.09604521,0.03485277,0.012218286,0.048902206,-0.016039118,0.038571857,0.10296301,0.00057715323,-0.02352635,0.017797025,0.05569281,0.040244073,0.048715282,-0.023028145,-0.09193799,0.00514837,-0.012326426,0.017781675,-0.028478667,-0.06227874,-0.11289066,-0.0050206403,-0.039513808,-0.01376788,-0.0046059336,-0.046124246,-0.026453007,-0.031876016,-0.01705765,-0.022393858,-0.023277277,0.029478341,-0.047301218,0.026668737,-0.03416515,-0.09062006,-0.038834136,-4.7203276e-08,-0.03665014,-0.026874593,0.01817379,0.015049918,0.038584743,-0.049528364,-0.023317307,0.009856703,-0.0005610552,0.074349515,0.004190556,-0.03037784,-0.08037616,-0.023720697,-0.0029827903,-0.020895131,0.055652495,0.0758126,-0.051235467,-0.07830761,0.018738145,0.0373753,-0.058585044,-0.04692324,0.009534957,0.07469612,0.012083184,0.068597496,-0.011262288,-0.042090442,-0.020944865,-0.007496663,-0.03713639,-0.062905304,0.028813338,0.016940871,0.003272604,0.021037348,-0.04305054,-0.087981395,0.031576667,0.04293924,-0.07780452,-0.02681375,-0.00015795657,-0.046984524,-0.029263677,0.05886277,-0.01294427,0.028218865,-0.04563067,-0.10173993,0.08402781,0.0743813,0.11012392,-0.0701884,0.020392455,0.0070109693,-0.013473115,-0.024799533,0.056415815,0.030767329,0.046604358,-0.097308174} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:50:59.870444+00 2026-01-25 01:27:51.152099+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 372 google Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB 1 t 375 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Super Mietwagen Station zu sehr fairen Preisen. Die Station liegt außerhalb des Flughafens aber mit dem Shuttlebus kein Problem und nur wenige Minuten bis dort hin. Personal freundlich und alles digital. HINWEIS: der Shuttlebus holt einen auf der Abflugebene gegenüber Ausgang 2 ab NICHT gegenüber der unteren Ankunftsebene wo die ganzen Busse stehen!\n\nFazit: echte Empfehlung! super mietwagen station zu sehr fairen preisen. die station liegt außerhalb des flughafens aber mit dem shuttlebus kein problem und nur wenige minuten bis dort hin. personal freundlich und alles digital. hinweis: der shuttlebus holt einen auf der abflugebene gegenüber ausgang 2 ab nicht gegenüber der unteren ankunftsebene wo die ganzen busse stehen! fazit: echte empfehlung! 5 2025-09-27 01:27:48.341521+00 de v5.1 P1.01 {J1.02,A1.01} V+ I2 CR-N {} {"A1.01": "Personal freundlich und alles digital.", "J1.03": "HINWEIS: der Shuttlebus holt einen auf der Abflugebene gegenüber Ausgang 2 ab NICHT gegenüber der un", "P1.01": "Super Mietwagen Station zu sehr fairen Preisen. Die Station liegt außerhalb des Flughafens aber mit ", "R1.01": "Fazit: echte Empfehlung!"} {-0.05283184,0.0072682076,0.019754035,-0.044447616,-0.08785618,0.037881125,0.045775097,0.15592879,-0.060125306,-0.024272544,0.028631909,0.065174736,0.039265215,0.018279944,-0.039634705,-0.030152703,0.0332523,-0.021094965,-0.034951173,-0.011830371,0.024016727,-0.07281251,-0.03722724,0.026924599,-0.061109677,-0.019104976,-0.053573437,0.053678706,0.04723284,-0.020099478,-0.02537817,0.09108344,0.019720687,-0.0171935,0.021770217,0.027926872,0.091295525,-0.063479684,0.050747182,-0.0053754183,-0.0612966,-0.01747415,-0.0022406452,-0.009418448,0.094599396,-0.0011230396,0.056825463,-0.017559193,-0.03974307,0.008474303,-0.05527477,-0.07213568,0.08563994,0.05460642,0.044944078,-0.10124821,-0.024991801,0.040284727,0.019283408,0.034527816,-0.07773793,-0.036077395,-4.0653147e-05,-0.0049616355,-0.05550246,0.024620054,-0.10666967,-0.023010248,0.029464483,-0.011922497,0.02921244,-0.013954513,0.0021802392,-0.06477668,-0.0022263443,0.0714253,-0.026918655,0.03330291,0.00051210076,-0.034350347,0.054240543,-0.16899467,0.045343455,-0.0370257,-0.0068722037,-0.03558783,0.009473502,0.011490896,-0.021029118,0.011483776,-0.028211348,0.054821033,-0.03274737,0.042977065,-0.07999284,0.009288156,-0.08183034,-0.04224537,-0.027593656,0.0631684,-0.005036449,-0.0117390985,0.044997722,0.07712876,0.002970635,-0.10651839,-0.0020361142,-0.02956236,0.020535419,-0.108204186,-0.013162044,-0.079252504,-0.012684159,0.0048968685,-0.06547102,0.01554536,-0.06691331,-0.011228714,-0.06996029,-0.031248216,-0.029667396,-0.02118317,0.040433142,0.0684652,-0.0031757562,0.023360066,0.04079069,1.7139713e-32,-0.07310959,-0.036534674,0.023740504,-0.019837508,-0.006447818,-0.04867756,-0.07122981,0.012024841,0.08035579,6.102319e-05,-0.023001112,0.032293662,-0.022386938,0.014169958,-0.020457808,-0.09559828,-0.048670962,-0.10543542,0.071717106,-0.034622435,0.07236982,-0.07940117,-0.020916868,-0.076869644,0.06866841,0.008069712,0.015113476,0.00635135,0.039358918,0.07030416,-0.09055014,-0.08494657,-0.015290123,0.05993178,-0.08095393,-0.052029908,-0.05769933,0.02458991,-0.055570155,-0.010650116,-0.021696085,-0.07659254,-0.111965664,0.0018374826,0.08487212,-0.009490655,0.025154721,-0.002472209,0.15077952,0.04042411,-0.0468756,0.015578511,-0.08662862,-0.02128717,0.027573183,0.04151749,0.010527103,0.087461226,0.07598112,0.071342476,-0.032841712,-0.013895343,0.021864919,-0.054439444,0.055140786,0.017867541,0.032526076,-0.021527432,0.03387716,0.07842982,0.019069405,-0.091266796,0.12443707,0.022935634,0.029142428,0.0038488712,-0.011777334,0.04617496,-0.093434766,0.02833197,-0.0009225047,-0.041018087,0.04249221,-0.031570617,0.03029952,0.0062841675,0.0012331054,0.034491453,-0.0102223735,0.0869066,-0.015072372,0.07398809,0.014335589,0.08334162,0.053409398,-1.6845824e-32,0.0072169085,0.056416176,-0.107604675,-0.029671216,-0.092405215,0.02859285,0.0009909418,-0.034014568,-0.032668,0.065627165,-0.08850212,-0.024634907,0.059886158,0.0028317585,-0.0906537,-0.023561861,0.10487258,-0.0057254387,0.03507559,0.012402639,0.00023687795,-0.031581424,-0.043416508,0.062971525,-0.018291647,0.031836744,0.024665974,0.03752072,-0.07262179,0.051868107,-0.087456025,-0.011828111,0.052446183,0.013848315,0.0072617154,-0.043438535,0.071261495,0.073938526,-0.02499751,0.0039000923,-0.0171798,0.017118461,-0.0041262647,0.053037357,0.04442442,0.022417799,-0.050019648,-0.06271505,-0.010400035,-0.03299216,-0.033890102,-0.051882606,-0.01216966,-0.059206653,0.010961327,0.0055744727,0.015478088,-0.062098827,0.0068930504,0.010107091,0.13904479,-0.08652775,-0.020263044,-0.020738294,0.04562037,-0.042026944,0.053404007,-0.03139617,-0.04222248,0.089381956,0.07348818,0.0044126427,-0.017161334,0.019209415,-0.0553662,0.059792012,0.021514773,0.10893268,-0.01744013,-0.02304097,-0.0014573955,0.072657965,-0.037655197,-0.026310157,-0.06679175,-0.01552411,0.037559703,-0.012271564,-0.005820641,-0.11524947,0.0032255945,0.10315261,0.013895418,-0.027451918,0.028428204,-6.140854e-08,-0.01564638,-0.062032714,-0.04129432,0.0075797928,0.025328016,-0.12077503,-0.063501805,0.065191954,-0.04763874,-0.0509537,-0.015237024,-0.0113202445,-0.08132813,0.0836341,-0.020411659,0.01637013,-0.033490896,0.035269264,-0.00729958,0.0025000416,0.022329466,-0.05227206,0.0730759,-0.06506668,-0.01930565,0.019132506,0.055658516,-0.04272141,0.09741785,-0.103023484,-0.07109557,0.0047543505,-0.026644507,-0.008204111,-0.07997364,0.0027675314,0.011530047,0.09498854,-0.04585844,0.014380569,0.022767363,-0.041255604,-0.008074777,-0.08765809,0.03725439,0.023130123,0.0039816424,0.024742458,0.0040816525,0.06801399,-0.017632846,-0.014242115,0.01139526,0.020990217,0.03031628,0.029255787,-0.009508956,-0.035656273,-0.042002935,0.024640584,-0.061276894,0.09575144,-0.015320497,0.0056687975} 0.925 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:32:22.358709+00 2026-01-25 01:27:51.154819+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 379 google ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE 1 t 382 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Agradezco el trato de esta empresa por su profesionalidad y su servicio . Alquile un coche pequeño que ha ido de maravilla, y la atención tanto de Carmen que nos gestionó la reserva , entrega y devolución Como dee los chicos encargados de llevarnos y traernos al aeropuerto fué fantastico.\nLa empresa está situada a escasos 5 minutos del aeropuerto. Si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio. agradezco el trato de esta empresa por su profesionalidad y su servicio . alquile un coche pequeño que ha ido de maravilla, y la atención tanto de carmen que nos gestionó la reserva , entrega y devolución como dee los chicos encargados de llevarnos y traernos al aeropuerto fué fantastico. la empresa está situada a escasos 5 minutos del aeropuerto. si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio. 5 2025-01-25 01:27:48.341536+00 es v5.1 A1.03 {O1.01} V+ I3 CR-N {} {"A1.03": "Agradezco el trato de esta empresa por su profesionalidad y su servicio . Alquile un coche pequeño q", "J1.01": "La empresa está situada a escasos 5 minutos del aeropuerto.", "R1.02": "Si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio."} {0.0732534,0.06111984,0.005492116,-0.0034194079,-0.09213091,0.008058745,0.062640816,0.025090942,0.020848777,0.0017139507,0.028594233,0.029721424,-0.035260282,-0.023605611,0.037230387,0.0066177356,-0.006405625,-0.022561228,-0.025142021,0.023782184,0.12281841,-0.09840358,-0.07252935,0.11479081,-0.081031434,0.0127896825,-0.09819303,0.07446872,-0.06273382,-0.037707098,-0.014184602,0.05204166,0.08704692,0.0325845,-0.049221784,0.02134261,0.029006362,-0.03052979,-0.032723892,0.025173854,-0.120036595,-0.07077702,-0.07582938,-0.02504245,-0.035255946,-0.07460885,0.07867196,0.079269655,0.0074306717,-0.021404246,-0.04633526,-0.027344527,0.025661316,-0.0525473,0.0036591154,-0.010658277,0.017738044,-0.05825589,0.054034412,-0.003035689,-0.014449172,0.028319085,-0.03963251,0.06313784,0.050152414,-0.09860524,-0.059223548,0.003773464,-0.04046119,0.010487925,0.07881481,-0.15765907,-0.006277956,0.032576825,-0.03406182,0.06288754,-0.001249869,0.002702485,0.0291419,-0.017950809,0.13700147,-0.02699491,-0.035417955,0.013652982,-0.0039549395,-0.007132399,-0.010885384,-0.021287829,0.020268729,-0.019806277,-0.070760906,0.005418472,-0.03426985,-0.042554032,-0.0032405301,-0.03440272,-0.02192879,-0.055338226,0.00013413219,-0.0046073864,0.045976005,0.091629505,0.0819203,0.027956557,-0.1181895,0.0076384884,0.038476363,0.018262051,-0.041462347,0.060386054,-0.10815136,-0.013651124,-0.0693082,-0.027870042,-0.03916689,0.092365295,-0.09179006,-0.022575561,-0.036703363,-0.07398909,0.0166796,0.021413779,0.0060771015,0.0052800807,-0.02346171,-0.057547975,0.027196057,9.446239e-33,-0.036892153,-0.019932318,0.02620548,0.06679958,0.06752465,0.04083611,0.008220998,0.025473645,0.04348145,0.06949854,-0.054687906,0.079616435,0.009808537,0.005303559,0.10485604,-0.0069988547,-0.024791062,0.018098667,-0.004333656,-0.03409707,-0.041574553,0.014035055,-0.050639622,-0.03748766,0.00789418,0.02728451,-0.015510757,-0.04109267,-0.07225486,0.057043586,0.05303272,0.04977635,0.0019482181,-0.039344367,-0.024237588,-0.041854013,0.0039775176,0.03860957,-0.011896709,-0.014667411,-0.04222915,-0.002551861,-0.008458103,0.01593761,-0.05626089,0.037993852,0.054925706,0.011518128,0.09401156,0.1028663,-0.040204544,-0.029235853,-0.062178534,-0.012497745,0.03151971,0.017863328,-0.024889264,-0.013059789,-0.067160815,-0.12850085,-0.029008564,-0.013136701,-0.008990801,-0.036660943,0.0015305061,-0.0061136694,0.06193965,0.036881678,0.10169608,0.07288418,-0.072410114,0.018042998,-0.013932301,0.03242284,-0.005637538,-0.0065601217,-0.040126316,-0.013215947,-0.048514687,0.0974375,0.008346141,0.0039042481,0.04243467,-0.0071829488,0.11053169,0.026868599,0.0707558,0.0035063531,-0.015394203,0.110114835,-0.063871935,0.08246906,0.013576633,0.08722494,0.056659628,-1.3336095e-32,0.01731306,0.0034167909,0.045853447,-0.015259635,0.01966964,0.054372966,-0.019929055,-0.05834349,-0.093953624,0.042386934,-0.12252131,-0.08599427,0.057737324,-0.033128206,-0.0046053594,0.05363056,-0.02894037,-0.093225375,-0.10432529,-0.03480343,0.039668366,0.03030856,0.079896525,0.008762775,-0.045977715,-0.08228759,0.027165078,-0.040164284,-0.041383903,-0.029280586,0.037518486,0.018325927,0.002715943,0.078371294,-0.031933684,0.010296606,0.0020111753,0.013331029,-0.014488426,0.020527208,0.03567304,-0.0015426866,0.06521423,-0.0073025883,0.030424166,-0.07790795,-0.0102368975,-0.18581805,0.06553807,-0.08402575,0.044063505,-0.1072507,-0.10095981,-0.010977061,0.10195428,0.009835837,0.034503836,-0.080893815,-0.08968181,-0.047981374,0.0608105,0.04049964,-0.0637158,0.005897123,0.030944478,-0.033880305,-0.02316802,-0.016776407,-0.03413846,0.021205267,0.000108967324,-0.033346824,-0.04221441,0.07158459,-0.06924843,-0.039793603,-0.022164961,-0.023806788,-0.044220664,0.019828338,0.0019159096,0.040330987,0.018717779,-0.043620456,-0.04906385,0.044466533,-0.009460102,0.0026962655,-0.024982374,0.035828914,0.031520855,0.07403942,-0.085158855,-0.08310274,-0.011664682,-5.6624923e-08,-0.018547213,-0.0332563,0.06874714,0.025062859,-0.017947912,-0.053323027,0.022610446,0.008029212,-0.0009218764,0.040483043,-8.035633e-05,-0.017276024,-0.01740949,0.082881555,0.029321466,-0.06567609,0.044403534,0.05255136,-0.020344857,-0.04830314,0.037515525,-0.007831114,-0.01718615,-0.018041253,-0.021973468,-0.023886213,-0.10268563,-0.03455729,0.016743904,0.052467708,-0.010256357,0.024989385,-0.026605275,-0.11434763,-0.110889174,-0.046055276,-0.013579868,-0.051006153,-0.12867104,-0.026705971,0.0873808,0.0396163,-0.018049696,0.015113996,0.036879722,-0.023126025,-0.027312169,0.022796465,-0.055565458,0.008946572,-0.028502662,-0.0527729,0.07261139,0.007011294,-0.019564843,-0.022645174,-0.0510703,0.038185168,0.0042898245,-0.0061880033,0.025457561,0.019011542,0.000897059,-0.037599742} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:09:04.161423+00 2026-01-25 01:27:51.176491+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 381 google Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB 1 t 384 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Achtung! Habe 95 € umsonst bezahlt. Die Firma hat kein Büro am Flughafen. Man wird darauf hingewiesen, dass ein Shuttlebus am Parkplatz stehen soll – aber dort ist nichts zu finden. Telefonisch ist niemand erreichbar. Sehr unseriös, gehört dringend gemeldet! achtung! habe 95 € umsonst bezahlt. die firma hat kein büro am flughafen. man wird darauf hingewiesen, dass ein shuttlebus am parkplatz stehen soll – aber dort ist nichts zu finden. telefonisch ist niemand erreichbar. sehr unseriös, gehört dringend gemeldet! 1 2025-09-27 01:27:48.341549+00 de v5.1 J1.03 {} V- I3 CR-N {} {"A1.02": "Sehr unseriös, gehört dringend gemeldet!", "J1.03": "Achtung! Habe 95 € umsonst bezahlt. Die Firma hat kein Büro am Flughafen. Man wird darauf hingewiese"} {-0.0057756295,0.07361009,-0.059721977,-0.0380612,-0.051611412,0.03357861,0.076568685,0.121181495,-0.008331239,-0.050921537,0.018774869,-0.028189886,-0.02068433,-0.044558797,-0.08543901,-0.079328895,-0.043677647,0.0070337644,-0.06946636,-0.03437765,-0.055930223,-0.0059381886,0.018878775,0.09021911,-0.07104147,-0.049899455,-0.031366073,-0.02101719,0.00525385,-0.05395451,-0.043030668,0.073263675,-0.02969543,-0.0018783163,0.038263194,0.034364462,0.03890173,-0.09965281,0.0018472614,0.03321084,-0.084345326,0.020185262,-0.023347508,0.0008383306,0.078241155,0.01876415,0.023095794,0.03887491,0.08443101,0.064824514,-0.08381692,0.08726182,0.09427773,-0.016461596,-0.013854235,-0.004504132,-0.029419312,-0.02114185,0.01717324,0.047877047,0.025467189,-0.05699775,-0.016562188,-0.0025821012,-0.097256474,0.023454785,-0.11482022,-0.0922286,0.031023372,-0.023054184,0.031086441,-0.07149081,0.0046563605,-0.037732437,0.03860877,0.0770542,0.014616256,0.058465842,0.012844235,-0.07882182,0.0388821,-0.10557402,0.041003875,0.012985784,-0.0026636154,-0.01782506,0.033751693,0.038215324,0.0004967063,0.035306484,-0.042602673,0.01488984,-0.084570974,-0.014393442,-0.13925196,-0.0071947374,-0.081719294,-0.06783837,-0.06755856,0.07367514,-0.033633456,0.0026594244,0.06856662,0.08204276,-0.13281395,-0.07145423,-0.01721807,-0.013020323,0.08861142,-0.005392996,-0.038348746,-0.008653052,-0.034040485,-0.052781794,-0.080645286,0.013034586,-0.086779825,-0.14237328,-0.012567406,-0.06287165,0.026921595,-0.039657593,0.016383968,0.06340688,0.0073601417,-0.0071390965,0.085978456,1.646415e-32,-0.04654084,-0.018661713,0.028453505,-0.013298535,-0.019545395,-0.04953957,-0.04026623,0.014119216,0.039067186,-0.0014376746,-0.04159195,0.018325133,0.0011403637,-0.10033926,-0.014177583,-0.079207115,0.0816577,-0.0724522,0.0113091385,-0.06742401,-0.003410416,0.03164956,0.02659008,0.0133619495,0.09095702,-0.057814933,-0.03871767,0.011574915,0.08778169,0.0649343,-0.010999875,-0.0023826042,-0.057327412,-0.021911178,-0.027157167,-0.004879328,-0.074221715,0.008553115,-0.000119149,-0.050142653,0.015298425,-0.04416804,-0.10382162,-0.036347546,0.031000754,0.00029848414,-0.021101814,0.01384435,0.08781229,0.01805905,-0.099559,0.038096514,-0.006900771,-0.021400832,0.07647537,-0.016623026,-0.020665536,0.020056035,0.028980754,0.052347634,-0.016452933,0.0347326,0.02617782,-0.006077536,0.039437108,-0.010537984,0.038935892,0.04356416,0.020941298,0.046245273,0.023061583,-0.020631008,0.07379719,0.093777195,0.028895577,0.030020285,-0.019636419,0.06551867,-0.04089099,0.023616463,0.02560269,-0.026469816,0.061783366,-0.016107444,0.029321684,0.011176497,0.0056986436,-0.010540472,0.046814494,0.11751989,-0.05433491,0.06585246,0.008334161,0.09319302,0.029048247,-1.6127032e-32,0.050820507,-0.000117076386,-0.040207196,-0.06676768,-0.064790286,0.033489645,0.0044342703,0.027855227,-0.05650253,0.032653775,-0.083886705,-0.04834087,0.04376782,-0.06688432,-0.054900397,0.012508419,0.0878295,0.00030939473,-0.01630568,0.035359584,-0.041536603,-0.05001574,-0.020231143,0.039722946,-0.040955257,0.073874906,0.06132733,0.06876819,-0.10517748,-0.022586394,-0.059989728,0.021369478,0.010738347,0.07462069,0.0030107263,0.00026744127,0.095618166,0.13173322,-0.01170484,0.039176982,0.0013233077,0.052687533,0.003149626,-0.0384885,0.08359922,-0.023212392,-0.058830038,-0.08195138,-0.07813885,-0.028040042,0.060373317,0.006528363,0.03415679,-0.042408485,-0.0020432104,0.034757927,0.00051351445,-0.083139524,-0.0024042684,0.018631795,0.09862915,-0.045289863,0.010148221,0.0187368,0.028196165,-0.09884873,-0.030624455,-0.009237069,0.029619053,0.049817782,0.046617012,0.0054692305,0.124164075,0.08399152,-0.04679139,0.039834753,0.07968686,0.022950431,-0.0022188919,0.029562946,0.035459824,0.048685674,0.038436424,0.017979808,-0.07233878,0.01875477,0.078297466,-0.012510733,0.009930699,-0.036447614,0.021991927,0.035461668,0.03879461,0.017276734,0.054198526,-5.8127103e-08,-0.019163,-0.028055115,-0.03911651,-0.0110004945,0.01889965,-0.085930206,-0.037636016,0.0043896725,-0.11985704,-0.058559436,-0.022413224,-0.014331946,-0.07239968,0.091276936,-0.08430447,0.040551953,-0.019110143,0.030920085,0.030039426,0.050635856,0.018604776,-0.08668578,0.04771004,0.030216955,-0.033969354,-0.011901983,-0.019831272,-0.05863283,0.040728446,-0.12880372,-0.07670619,0.015762974,0.022360122,0.020026047,-0.06718492,-0.025463307,-0.0070581227,0.025217181,-0.10961249,0.028746065,0.0540538,0.02900419,-0.023347825,-0.035104733,0.00040969937,-0.019897856,0.0010483632,0.0388332,-0.0061236084,0.0015675771,-0.04880036,0.0020198547,0.03965483,0.032246593,0.016457958,0.03006411,0.013022618,-0.041137163,-0.07253404,0.022980139,-0.08106995,-0.00208711,-0.028225925,-0.0075910753} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:54.119363+00 2026-01-25 01:27:51.183881+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 383 google Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB 1 t 386 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown War sehr gutes Erlebnis mit der Autovermietung. Als junger Fahrer mit weniger als 3 Jahre Führerschein wird nochmals eine Gebühr von 120€ erhoben oder man nimmt die volle Versicherung für 220€ wo alles inklusive ist. (Preis für 7 Tage Mietdauer) war sehr gutes erlebnis mit der autovermietung. als junger fahrer mit weniger als 3 jahre führerschein wird nochmals eine gebühr von 120€ erhoben oder man nimmt die volle versicherung für 220€ wo alles inklusive ist. (preis für 7 tage mietdauer) 5 2025-08-28 01:27:48.341563+00 de v5.1 R1.01 {} V+ I2 CR-N {} {"P1.02": "Als junger Fahrer mit weniger als 3 Jahre Führerschein wird nochmals eine Gebühr von 120€ erhoben od", "R1.01": "War sehr gutes Erlebnis mit der Autovermietung."} {-0.020759,0.03959329,-0.110831305,-0.05882584,-0.03389611,0.015617234,0.06809989,0.07819149,-0.03510745,-0.010418924,0.012776743,-0.10447933,3.824481e-05,0.010320152,-0.02360723,-0.1111807,-0.045717746,-0.014225201,-0.056419134,-0.008698886,-0.040924452,-0.05423753,0.002772481,0.045887705,0.06968146,-0.0669361,0.016371364,-0.08388682,-0.013185631,-0.03774293,-0.028070504,-0.111773156,-0.009014185,0.022045191,0.07557863,-0.07696615,-0.029617371,0.028906263,-0.08716035,0.07041254,-0.045940146,-0.041125283,-0.09469506,-0.04629533,-0.022774912,0.008478952,-0.0019096102,0.05592645,-0.026132688,0.05007704,0.030294184,0.028668495,0.00884354,-0.029725073,-0.016318412,-0.074224785,0.033783417,0.016541958,-0.016134666,0.033166647,0.025657503,-0.013145497,-0.054904763,-0.060766358,-0.0020988293,-0.019318668,0.018749572,-0.034330714,-0.025840659,0.07333631,0.038361803,-0.10022108,-0.00037659495,-0.029913755,0.020382069,-0.040272966,0.012025581,0.014769162,0.030634305,-0.051716577,-0.00903826,-0.018723117,-0.009214705,0.08730927,-0.013738858,-0.06874335,-0.023881234,0.028748471,0.030749146,0.012542239,0.029038798,0.023680095,-0.020229349,0.048948333,-0.04914508,0.045952033,0.04435908,-0.031859826,0.06778586,0.045101505,0.057482276,0.020765172,0.014591492,-0.010363872,0.0072948793,-0.0093235485,0.025235316,0.032397762,-0.030528931,-0.042806756,-0.09944803,-0.03711963,-0.04554541,-0.12447438,0.016274054,-0.03956305,0.06414785,-0.09747469,0.040867105,-0.0046626693,0.015012632,-0.00546046,-0.028753197,-0.011713792,0.002559595,-0.042251613,0.040819075,1.5967501e-32,-0.052629944,-0.033715077,-0.08059989,-0.0125708515,-0.06599541,0.09500753,-0.022368338,0.013878776,0.011367007,-0.0063922615,-0.01825028,0.07419628,-0.033030216,0.08897022,-0.008009566,-0.025365945,0.075274356,-0.01771739,0.100401774,-0.027509771,-0.029997254,-0.0033733964,0.04610744,0.036627207,0.014695826,0.0141132735,0.017081238,-0.04310796,0.024945803,0.049471587,0.083555646,-0.024406372,0.018730512,-0.016873857,-0.13341872,0.044083193,-0.012996568,0.054126345,-0.030374018,0.008640781,0.022478448,0.075494155,-0.015701022,-0.097076215,0.031783327,0.07755786,0.013329662,0.012250867,0.039056405,-0.039630633,-0.020934733,-0.016743556,-0.059254922,0.00762444,0.044102557,0.012836802,-0.026376052,0.054488778,0.016768469,-0.049144313,-0.093665294,0.005359141,0.050643936,0.01221833,0.033450834,0.042069323,0.04449346,-0.01887212,-0.06893286,0.029716164,-0.11882441,-0.011405209,0.083283626,-0.08031618,-0.011404282,0.06430195,-0.027512876,0.034071226,-0.03943907,0.0048715826,-0.18360808,-0.036317933,0.091116525,0.0406397,0.037294105,-0.0073960815,0.03006149,0.07484675,0.044906452,0.087829344,0.0653142,0.0068608588,0.015965149,0.012253913,0.049461626,-1.6404807e-32,0.009935675,0.04097446,-0.030497069,0.047580265,0.029423974,0.024391845,-0.08948946,0.122698605,-0.09579011,0.02947415,-0.03455263,0.014877077,0.008983915,0.06357486,-0.035550114,0.010020328,0.03573395,-0.044335388,0.12668447,-0.020638395,-0.10452664,0.040544882,0.07765331,0.06720855,-0.003443299,-0.04313105,-0.022497028,0.029284064,-0.05949655,0.0014155824,0.022164518,0.0030916696,0.023929236,0.016759718,-0.022847714,-0.027257258,0.06079433,0.09641961,0.021966796,0.029976988,0.01338873,-0.03293685,-0.034640405,-0.067560054,0.038474455,-0.07198605,-0.12022742,-0.10577726,0.021982444,-0.04338738,0.08781314,-0.07045497,0.09044503,-0.025023332,-0.060285345,0.040866576,0.022487542,0.0029061798,0.003396352,0.058385365,0.002424087,0.07714726,0.002538885,0.02159467,-0.040273808,-0.008845788,-0.11047507,0.02431329,0.04002286,-0.048919898,0.058356315,0.021604156,0.033865627,0.029916512,-0.00044198075,0.0010566086,0.01070706,0.02880499,0.097024724,0.03038904,-0.11554552,0.09757273,-0.022063237,-0.02786575,-0.1342042,-0.118686125,0.0173021,0.0160192,-0.025533829,-0.017965058,0.025945581,0.011961401,0.026270038,0.0008813624,-0.04175508,-5.8724268e-08,-0.0018091263,0.008374185,0.042253472,0.049313802,0.0130564105,-0.05296021,0.005534977,0.056700286,-0.009833847,0.15551043,0.03948999,-0.07511712,-0.010056931,0.015614819,-0.0978246,-0.026298929,0.02791191,0.035993353,-0.031565003,-0.01994645,0.04409202,0.03349932,-0.020480778,-0.07432024,0.049683694,0.019928684,4.93288e-06,-0.0018581249,-0.043623634,-0.04893441,-0.044711452,0.063625045,-0.023619743,-0.017198207,-0.051481057,0.008380585,-0.029036049,-0.06973731,-0.09237527,0.02411338,-0.0017688681,-0.046878945,-0.01563608,-0.102817744,0.0068081305,-0.09674287,-0.10540282,-0.03617267,0.020605225,-0.00025934007,-0.023458814,0.004477999,0.09575484,0.032069158,0.016219595,-0.0033485985,0.024892576,-0.008002982,-0.050017603,0.03397831,-0.029987339,-0.1065526,0.009352243,-0.0001386857} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:36:25.150409+00 2026-01-25 01:27:51.188506+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 387 google ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE 1 t 390 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hemos tenido buena experiencia con este rentacar. La última vez que vinimos a la isla alquilamos con Orlando, y nos quitaron la fianza por un arañazo que ya traia el coche. Clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. El transfer al aeropuerto no son ni 5 min, y nos informaron sobre los seguros adicionales pero no presionaron para coger algun seguro extra, por lo que todo bien. La proxima vez que vengalos alquilaremos tambien aqui. Gracias! hemos tenido buena experiencia con este rentacar. la última vez que vinimos a la isla alquilamos con orlando, y nos quitaron la fianza por un arañazo que ya traia el coche. clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. el transfer al aeropuerto no son ni 5 min, y nos informaron sobre los seguros adicionales pero no presionaron para coger algun seguro extra, por lo que todo bien. la proxima vez que vengalos alquilaremos tambien aqui. gracias! 5 2025-01-25 01:27:48.341625+00 es v5.1 J1.02 {A1.01} V± I2 CR-N {} {"J1.01": "Clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. El transfer al ae", "J1.02": "Hemos tenido buena experiencia con este rentacar. La última vez que vinimos a la isla alquilamos con", "R1.01": "La proxima vez que vengalos alquilaremos tambien aqui. Gracias!"} {0.059065916,0.022504814,-0.016784886,0.008209995,-0.034579795,-0.027951257,0.07530878,-0.018024007,-0.02962703,-0.010689506,0.067949556,0.030266035,-0.057501648,-0.007259743,0.076262794,0.012780843,-0.0028169646,0.00508763,0.013388088,0.012130949,0.08833084,-0.052555323,-0.035687353,0.0842101,-0.08077287,0.022348518,0.0064502577,0.08427899,-0.016140822,-0.047991436,-0.03026679,0.02321664,0.030355103,-0.04469432,-0.0143499775,0.022068879,-0.031913552,-0.10489446,-0.04783879,0.045727618,-0.04112218,0.016218407,-0.0037105766,0.0046514636,-0.12985365,-0.03387116,-0.003761976,0.11191661,0.09192811,-0.014601907,-0.029896393,0.026381288,-0.07996284,-0.036992524,-0.031840865,0.0119063305,0.020689167,-0.04361124,0.07231552,0.0073928833,0.05302159,0.08506922,-0.02518149,0.07774839,0.0086109415,-0.030904455,0.032398954,0.010973725,-0.032211594,-0.013098085,0.036841348,-0.10473524,0.023792379,-0.0145363165,-0.041217536,0.07417421,-0.009458118,-0.050681286,0.039030254,-0.02875662,0.0240351,-0.07386161,-0.04847297,-0.024344586,-0.03926632,-0.06970802,-0.021945825,0.0014743996,0.06850959,-0.01218351,0.020232547,0.10298088,-0.049375694,-0.03459361,-0.0025036347,0.03444819,0.020198563,-0.020318683,-0.08195042,0.032017305,0.066664726,0.047260836,0.08879781,-0.0056016906,-0.027125403,0.021777445,0.06212626,-0.037778396,0.021865712,0.058127947,-0.14582668,-0.020627303,0.038620356,-0.0803387,-0.048093613,0.08437921,-0.021717966,-0.018684216,-0.005801083,-0.052747585,0.03133836,-0.045832533,0.034306373,-0.06852965,0.07144734,-0.0123500405,0.040834628,1.199474e-32,-0.03926924,-0.022730993,-0.042810287,0.110117055,0.0547361,0.032432027,-0.035591543,0.03133373,-0.048117153,0.024148343,-0.009475023,-0.02500326,-0.023960639,-0.01559786,0.024196545,-0.015744584,0.0641704,-0.052696183,0.027979465,0.05045474,-0.05444828,-0.055347316,-0.0076102316,0.02391008,-0.06657634,0.057200287,-0.01830322,-0.01728294,-0.03536223,0.06431505,-0.014889882,0.03551778,-0.043952256,-0.0552436,-0.01852999,-0.04943469,0.00930259,0.028644439,-0.079840906,-0.068060555,-0.02710426,-0.011132091,-0.021434305,0.04696194,0.042816527,-0.0040608547,-0.0026293616,0.036452997,0.031932294,0.07013113,-0.06348932,-0.06746389,-0.12740922,-0.06356627,-0.06698117,0.00482443,-0.08522937,-0.025710637,-0.0038513648,-0.06480996,0.019556884,0.030842064,0.040512368,-0.06300331,0.009605586,-0.027842648,0.026978327,0.038073532,0.12716483,0.027002336,0.03120461,0.002742234,-0.0072662644,0.059911493,0.034194235,-0.0036975779,-0.045566976,0.030095048,-0.007205685,0.062261224,-0.006610486,0.0075654616,0.053325582,0.08376794,0.058094062,0.009365849,0.03705807,0.098250546,0.0138823865,0.13172854,0.017604345,0.09229713,0.063341156,-0.057135887,0.071283005,-1.3265786e-32,0.01506615,-0.0510101,-0.01865323,-0.06526863,-0.04938365,0.017559387,-0.013226362,-0.007694772,0.018678099,-0.054999687,-0.08970153,-0.07227211,0.09137573,-0.112800725,-0.04874068,0.05185737,0.04426918,-0.12852079,-0.06789626,0.026968034,0.06131676,0.007795887,0.044851013,0.075741276,0.005379902,-0.050369497,0.003241113,0.055564914,-0.076342285,0.06431802,0.028956434,0.051679537,0.01652732,0.09189459,-0.033911966,0.004745839,0.027677856,0.053398207,-0.0792587,-0.0070119835,0.038620286,-0.0145319095,-0.011925004,-0.04687479,0.049161404,0.035260793,0.04126205,-0.18537419,-0.01784783,-0.052663833,0.07912621,-0.044090517,-0.14727898,-0.021201398,0.080953255,0.036185827,-0.040836096,-0.05835525,-0.041268583,0.013101151,0.041473515,0.011978157,-0.015734442,-0.07847774,0.019913804,-0.004191034,-0.024622634,-0.028185477,0.095630765,0.042036977,0.011496233,-0.017546216,-0.05698093,0.034960765,-0.018294638,0.008762973,0.06937286,0.010061307,-0.06385952,-0.044575155,-0.01780363,0.0056541217,-0.019622669,-0.05472912,-0.017164083,-0.057536215,-0.0041402457,0.011358584,-0.041919976,0.027175613,-0.06978592,0.07876987,-0.06870103,-0.09985363,-0.033105247,-5.1860706e-08,-0.02203249,0.03231497,0.067161374,0.022476709,0.026498957,-0.014423419,-0.0065519847,0.05608569,0.039127957,0.028790046,0.040533468,0.042545643,0.03078291,0.05046442,-0.08781643,0.05242576,0.04602731,0.08938362,-0.034270857,-0.09183912,0.017871603,-0.02787328,-0.05732848,-0.00728711,0.013938875,-0.014478201,-0.02952648,-0.0010603291,0.05466221,-0.014095595,-0.0299488,-0.046517685,-0.09395275,-0.07776075,-0.009140998,-0.060013197,0.037691657,0.003649832,-0.043442745,-0.04365774,0.020727599,-0.039949525,-0.12549531,-0.026752124,-0.024258798,-0.05303209,-0.020531088,0.040720873,-0.03182165,0.05723612,0.019886296,-0.06302919,0.044420216,0.00062112743,0.04544043,-0.10653551,0.039853644,0.032451652,-0.017747309,-0.009450401,0.0065040407,0.050778847,-0.060619015,-0.06065422} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:08:54.312539+00 2026-01-25 01:27:51.20717+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 388 google ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE 1 t 391 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Hemos realizado una reservación a través del booking en Polonia, donde al llegar a Gran Canaria nos han dado otra información de costes , pero al conocer bastante bien el idioma en la oficina nos han ayudado muchisimo por lo que estamos muy agradecidos a Sñra Carmen, ojalá mas personas que le den su corazón al trabajo❤️👏🏼\nMuy contentos con el coche, con la ruta que hemos conseguido hacer en una semana.\nPozdrawiamy z Gołdapi 🫶🏼 hemos realizado una reservación a través del booking en polonia, donde al llegar a gran canaria nos han dado otra información de costes , pero al conocer bastante bien el idioma en la oficina nos han ayudado muchisimo por lo que estamos muy agradecidos a sñra carmen, ojalá mas personas que le den su corazón al trabajo❤️👏🏼 muy contentos con el coche, con la ruta que hemos conseguido hacer en una semana. pozdrawiamy z gołdapi 🫶🏼 5 2025-01-25 01:27:48.341635+00 es v5.1 A1.03 {} V+ I3 CR-N {"Sñra Carmen"} {"A1.03": "Hemos realizado una reservación a través del booking en Polonia, donde al llegar a Gran Canaria nos ", "O1.01": "Muy contentos con el coche, con la ruta que hemos conseguido hacer en una semana."} {0.034377176,0.09215389,-0.05542919,0.025511961,-0.087431386,0.010116534,0.10804468,0.08478126,0.028880542,0.021005433,-0.000731371,0.015235071,0.03759096,0.029481277,0.03951615,-0.030202048,0.056960974,0.07650155,-0.02268834,0.06783023,0.067299925,-0.03575096,-0.03751542,0.13380495,0.009835484,-0.08193134,-0.023167294,-0.0032295843,-0.05403316,-0.026993155,-0.02157142,0.09519093,0.14148563,-0.018830748,0.04292909,-0.016274128,0.03402498,-0.08235046,-0.056577146,0.10444384,-0.037509542,0.015686778,-0.12827988,0.012987922,0.003936792,-0.0011629015,0.060363017,0.090825744,-0.010810619,0.06894092,-0.08571918,0.009075651,-0.011630583,-0.06223815,-0.060846876,0.029119663,-0.02693763,0.0014290704,0.05665578,-0.008845572,0.0028846376,-0.008507168,-0.030656224,0.047661465,-0.03531376,-0.033108532,-0.012288076,0.03471457,-0.0924127,0.02651075,0.074445695,-0.057936173,-0.056873035,-0.025039557,-0.078336224,1.49577845e-05,0.04274572,-0.03571501,0.01007835,-0.039399672,-0.04711051,-0.055958685,-0.0034800349,-0.06639221,-0.039848737,-0.007543324,0.0062225955,-0.026662104,-0.015256797,-0.06913291,-0.04259003,0.0064531886,-0.035242327,0.018547533,-0.056458563,0.017647553,0.013590653,-0.022380395,0.06471566,0.01905177,0.13268416,0.044161554,0.094359875,-0.007295145,-0.056093544,-0.007060013,0.06451144,-0.054724853,0.00976202,0.02465289,-0.11536947,-0.020621687,0.015475197,-0.09487891,-0.018941654,0.11368364,0.0020997496,0.011644812,0.006935746,-0.0928364,0.031567466,0.00257893,-0.015442804,-0.024470752,0.0102739595,-0.11714683,0.07366961,1.6091596e-32,-0.08078528,-0.035212945,-0.040872622,0.07523526,0.00312485,0.04546452,-0.074316405,-0.04058015,-0.043485448,0.077889785,0.0071375524,0.05963239,-0.023040427,-0.0018998233,0.054660857,0.06419696,-0.018259702,0.009498065,0.06390038,0.04977764,-0.036416493,-0.0030512388,0.029438678,-0.036487762,-0.00822954,0.0754909,0.03700823,-0.08198481,-0.030027913,0.018278401,-0.012484755,-0.0033390897,0.05181237,-0.11434166,-0.028406596,-0.06693281,-0.043817777,0.0075069596,-0.018499043,-0.02294541,-0.038918808,-0.008359429,-0.10274169,0.038056545,-0.022118635,0.11184529,0.054681342,-0.022421509,0.006137553,0.029035812,-0.05857162,-0.055406544,-0.07381865,0.03254392,-0.013163898,-0.05065483,-0.07579422,-0.012083372,0.032918725,-0.09271929,0.06909378,-0.03420101,0.027257916,0.030028207,-0.036212716,-0.06848559,0.00529842,0.016830668,0.123106904,-0.020254336,-0.06999944,-0.0046720365,-0.055706248,0.045223545,-0.03435594,-0.019080328,-0.0022123433,0.004890211,0.0059488295,0.05395461,0.0032488068,-0.039696645,0.12016256,0.021629782,0.037099555,0.062887736,0.08276399,-0.029767973,-0.050662994,0.12546326,-0.054152362,0.06077242,-0.031682175,-0.059308067,0.10193724,-1.7348364e-32,0.01065074,0.013443217,-0.0615308,-0.0053551486,0.023850733,-0.03192246,-0.076886974,-0.050132085,0.05853614,-0.04169189,-0.15994044,-0.1575796,0.04011832,-0.013417144,-0.007480025,0.007516799,0.03368817,-0.10299106,-0.036376156,-0.0090658115,-0.032440685,0.019858968,-0.079086535,-0.0030454348,-0.008194425,-0.034105774,-0.03927762,-0.0058981157,-0.094526805,0.042398807,-0.024646401,-0.08253132,0.006593486,0.045943808,-0.037454315,-0.0044458155,0.10424403,0.06328111,-0.011021036,0.05511997,0.029112738,-0.0053757564,-0.008456437,-0.04229589,0.05861892,-0.021232592,-0.056640487,-0.13170424,0.004450113,-0.03721347,0.03520988,-0.028508876,-0.08768407,-0.060230285,0.075337805,-0.022230681,-0.05111301,-0.07210803,-0.02059855,0.0275059,0.02945058,-0.0011488607,-0.08938729,0.0032777237,0.027414165,0.0053447685,-0.019577097,-0.04236328,-0.03127759,0.0239652,0.022679774,-0.008789039,-0.0688865,0.05217576,-0.06837037,0.030705161,-0.020478446,0.0039628535,0.027293554,-0.0066396724,-0.027694277,-0.04970524,0.0064412295,-0.017903984,0.054751176,-0.018995486,-0.0108588645,0.031494368,-0.07352483,0.0030326738,0.00051234127,0.020115808,-0.04165702,-0.05400421,-0.077318385,-6.71718e-08,-0.0048140907,-0.07560242,-0.0042736777,-0.030106433,0.01719733,-0.065232955,0.01523177,0.06492669,0.007952616,0.07252943,0.03832732,-0.016195303,-0.037203215,0.038479522,0.01645416,0.04911959,0.051967748,0.036890097,0.00076816394,0.011442641,0.1185619,0.03671573,-0.028963128,-0.024725838,0.019080533,-0.00605053,0.009267673,0.052270487,0.024381109,-0.03770956,0.03042887,0.025326446,0.018422019,-0.024387335,0.010580951,-0.054447938,-0.039125763,0.062012054,0.0052586854,-0.052268516,-0.026209999,0.0063809133,0.032331716,0.0073816576,-0.009367508,0.0056588855,-0.035001446,-0.021513108,0.015882907,-0.03770158,-0.06257114,-0.014289815,0.08751103,0.009644361,0.033238817,-0.025029935,0.051066518,0.07307601,0.007422979,-0.0034199452,0.027380811,-0.0003613534,-0.054042507,-0.08087147} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:08:44.316329+00 2026-01-25 01:27:51.216988+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 391 google Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB 1 t 394 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Somos clientes desde hace años, deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche. somos clientes desde hace años, deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche. 3 2026-01-04 01:27:48.341659+00 es v5.1 J2.02 {J1.03} V- I2 CR-N {} {"J2.02": "deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy lleva", "R1.01": "Somos clientes desde hace años"} {0.00964518,0.07153908,-0.0017109485,-0.09202346,-0.049382847,-0.10700592,0.064161204,0.0016347653,-0.047900416,0.012887745,0.07749457,0.048540097,-0.05596422,-0.051932182,0.055550836,0.019570546,0.0203193,0.008503703,0.028908908,-0.011894084,0.066006936,-0.043135304,-0.13557315,0.09650507,-0.049910717,-0.010863551,-0.013295084,0.06427148,-0.04896931,-0.074469715,-0.021257306,0.0020905586,-0.030457549,0.023956798,-0.07231515,0.04948535,0.066903956,-0.06618588,-0.055416614,0.068661295,-0.07480073,-0.0035241114,-0.03911141,0.00663077,0.022404876,-0.061989784,0.0050444677,0.06574534,0.045893703,-0.012238664,-0.06944153,-0.035883904,0.034862947,-0.058973663,-0.025078034,0.021404816,-0.02828207,-0.012856752,0.04373897,-0.0031450118,0.010078183,0.008031492,-0.033946916,0.06600284,0.031151569,-0.05802883,-0.033110462,-0.00043532837,-0.027926845,-0.062300693,0.051370926,-0.09604781,-0.010056462,0.019869138,-0.083044164,0.045923483,-0.004923431,0.011833099,0.04800925,-0.028569466,0.089455076,-0.008305916,-0.041758973,-0.020484842,-0.014460271,-0.01398096,-0.032366376,0.014878146,0.074261434,-0.0396969,-0.043413565,0.012589157,-0.031725876,-0.017970206,-0.034570206,0.01584335,0.0720733,-0.038081504,-0.03341262,0.008677046,0.063603185,0.018245276,0.06088234,0.026129622,-0.06750928,0.038432315,0.02160456,-0.0015379352,0.09230532,0.041479886,-0.18413736,-0.019002337,-0.025259294,-0.06540676,-0.05357686,0.011604304,-0.0043851575,-0.05561818,-0.10348644,-0.07446307,0.023588918,-0.05852027,-0.014536195,-0.05798768,0.058093235,-0.015577027,0.08021053,1.0715286e-32,-0.045267537,0.0020527386,-0.012464672,0.09777696,0.070092,0.0057226676,0.0100010615,-0.030412255,0.00019503346,-0.038219824,-0.076993294,0.09229419,-0.019373572,0.0053466703,0.09002819,-0.0425781,0.04873618,-0.055598322,0.04704139,-0.03741511,-0.075757526,-0.060657557,-0.055662077,0.0022200912,0.029222049,0.012051737,-0.022063982,-0.05654527,-0.05435361,0.074244924,0.07772972,0.0013455853,-0.051841043,-0.0022792774,-0.10929798,-0.02576198,-0.032343913,0.0022330203,-0.03322381,-0.077375405,-0.044578515,-0.011131444,-0.07246119,0.04210678,-0.08600233,-0.019945359,0.012871365,0.02742902,0.05515752,0.041294824,-0.08324699,0.019210637,-0.08654723,0.013316971,0.017097054,0.06435955,0.02171034,0.039190706,-0.027031312,-0.037436377,-0.0043498348,0.0050630826,-0.002206288,-0.05622503,0.0018843006,-0.034697816,0.05457401,0.062001802,0.09388116,0.07399598,-0.037983146,0.009746193,-0.05580501,0.047656145,-0.0063222623,0.020063814,-0.04066755,-0.025039973,-0.04872125,0.04480911,-0.046643566,-0.0022491552,0.00854759,0.0403796,0.07069784,0.044478025,0.072318494,0.08146057,-0.038160168,0.07490396,-0.025916303,0.105274126,0.054218948,-0.014937847,0.06267393,-1.3367462e-32,-0.057921503,-0.025381202,-0.042252194,0.0069914414,-0.03124306,0.063625894,-0.021615654,-0.013569531,-0.104799554,-0.017285977,-0.18005213,-0.07325104,0.09730591,0.015579415,-0.010080635,0.07204211,-0.052184384,-0.07176613,-0.06976862,-0.02870547,0.025562663,0.046554487,0.06630162,-0.01999217,-0.0310132,-0.054274086,-0.020821918,-0.0038074432,-0.03525078,-0.034172673,0.046122417,0.022147162,0.06743569,0.0647775,-0.0020490112,0.009499497,0.09178971,0.081437156,0.006381265,0.01129751,0.036397774,-0.04983076,0.03084322,-0.038306803,0.02247239,-0.0041326913,-0.020536609,-0.11503614,-0.0004318088,-0.018050145,0.05510343,-0.086699784,-0.005357611,0.019469427,0.102352105,0.023884159,0.044043977,-0.092945136,-0.06759699,-0.045549102,0.06318919,-0.056975607,-0.100011006,0.027948242,0.03975908,-0.059892707,-0.016303157,-0.01989219,0.015165845,0.015646853,0.0020044656,0.0030949903,-0.042688508,0.056230806,-0.022115832,-0.0464219,0.0110711185,0.022013623,-0.028789809,-0.057374798,-0.0504953,0.027161622,0.07830687,-0.030521406,-0.0197529,-0.08134558,0.023104038,-0.014866194,-0.011150372,0.00069730653,0.024403024,0.05496908,-0.06316282,-0.04790723,-0.028313905,-5.4279294e-08,-0.049305465,-0.027881553,0.029496158,0.034919012,-0.067799285,0.06090003,0.015355102,0.011499541,0.019723069,0.037157092,0.053291403,-0.025065215,-0.0238858,0.06408597,0.016156176,0.013000106,0.0829238,0.08963322,0.0070845466,-0.04346539,0.022868898,-0.033434793,0.0067074257,0.05485992,0.037080355,0.018083174,-0.060500614,-0.017938675,0.061003502,-0.019736258,-0.13451305,-0.00675458,-0.008670391,-0.066767894,-0.028294023,0.019213557,-0.07105093,0.005517808,-0.030836182,-0.009357503,0.0501022,0.035689324,-0.057118803,0.001229737,0.04574116,-0.026481846,-0.022454457,-0.043167863,-0.003337767,0.02483427,-0.038484666,-0.07950339,0.16115518,0.035202067,0.012354844,0.023787253,-0.022197181,0.0016539216,0.039885014,-0.014860132,0.033327945,0.15253425,-0.05173845,-0.011444944} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:06:01.017298+00 2026-01-25 01:27:51.225566+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 397 google Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB 1 t 400 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown A fuir ! La politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la restitution de la voiture. Pour un bouclier légèrement abîmé sous caisse (leger frottement sur un bas côté de la route) ils m'ont réclamé 420€ sur mon dépôt de garantie. Le bouclier était déjà légèrement abîmé sur les 2 côtés. On suppose qu'ils ont demandé la même somme aux clients précédents sans pour autant changer le bouclier. Cela fait donc 1260€ gagnés sans rien faire.\nCerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€. Allez expliquer cela à l'assurance ensuite pour vous faire rembourser.\nConseil, fuyez donc ClickRent avant de vous faire plumer. a fuir ! la politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la restitution de la voiture. pour un bouclier légèrement abîmé sous caisse (leger frottement sur un bas côté de la route) ils m'ont réclamé 420€ sur mon dépôt de garantie. le bouclier était déjà légèrement abîmé sur les 2 côtés. on suppose qu'ils ont demandé la même somme aux clients précédents sans pour autant changer le bouclier. cela fait donc 1260€ gagnés sans rien faire. cerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€. allez expliquer cela à l'assurance ensuite pour vous faire rembourser. conseil, fuyez donc clickrent avant de vous faire plumer. 1 2025-06-29 01:27:48.341678+00 fr v5.1 P1.03 {} V- I3 CR-N {} {"P1.02": "Cerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€.", "P1.03": "La politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la", "V1.01": "Conseil, fuyez donc ClickRent avant de vous faire plumer."} {-0.07118217,0.045841657,-0.036848515,-0.07901852,0.006603119,-0.050375562,0.056566656,0.08115471,0.026675824,0.0040973853,-0.017077833,-0.065666616,0.07537027,-0.05614856,-0.00838835,-0.08289896,0.017953351,0.02715125,-0.022709878,-0.002666757,0.036288455,-0.089141555,-0.014055046,0.11668185,-0.037159596,-0.0670606,-0.0012576124,0.03242796,0.010545199,-0.047605127,0.026221469,0.030333947,-0.0126082655,-0.08620796,0.018944655,-0.030823922,0.004633013,-0.06629114,0.0011521227,0.069229096,-0.035518344,-0.033351168,-0.1416805,-0.011254491,0.02701495,-0.002337533,0.113855906,0.07480299,-0.063204944,0.005838686,0.08114479,0.049057316,0.018734453,-0.07968028,-0.053678006,-0.055742428,0.008115308,0.029784352,0.07773765,0.067987494,-0.025126288,-0.011701324,-0.0019230758,0.029915303,-0.03356854,-0.058147922,-0.05875869,-0.047134023,-0.056885593,0.005021777,0.06917334,-0.004400029,-0.0044285334,-0.014081356,0.04442018,0.05903644,-0.037815087,0.024735788,-0.0015980633,-0.14295508,0.031812817,-0.067932375,0.01337143,-0.028933277,0.042877458,-0.14030272,0.027432658,0.0059625804,0.09778755,-0.039255146,0.08298263,0.05748875,-0.09707532,0.01674564,0.027036784,0.017996788,-0.02200518,-0.016158083,0.07253675,0.073517054,0.0032181584,-0.05369251,-0.0113300225,0.043305762,-0.010352803,-0.0039048695,0.03928526,0.0043023364,0.022946294,0.046599444,-0.009766845,-0.04471697,0.056747466,-0.06646452,-0.04312658,-0.0041872757,-0.06603989,-0.07977921,-0.019533152,-0.11510271,-0.0028168256,0.024066435,0.028354002,-0.024915436,0.013543872,-0.021512872,0.0630246,1.2770452e-32,-0.023725055,0.051587947,-0.014396359,-0.08875712,-0.019386362,0.024350503,0.0044489214,0.081431806,0.007457112,0.07544428,0.067852765,0.007852001,-0.025789874,-0.038868465,0.08298009,-0.07401562,0.044980053,-0.047661852,-0.011759974,-0.039323084,-0.045707338,-0.039444678,0.046565387,0.041366152,-0.019236663,0.002425914,0.0026443333,-0.02965643,0.032233555,0.0627958,0.019499969,-0.039418384,0.05568552,0.0055479566,-0.08508631,-0.040663317,-0.02921695,0.0096044745,-0.07646523,-0.0048035686,0.011359147,-0.02821197,0.04552332,-0.049687468,-0.035039373,0.0634727,0.026922172,-0.0067742993,0.07688757,-0.06644694,-0.017664544,0.0042649233,-0.09937274,-0.012901609,0.06279799,-0.019483628,-0.103144124,0.0066656154,-0.043072097,0.0391105,-0.038198054,0.010072819,-0.020643076,0.009315186,-0.11068993,-0.030684406,0.018589567,0.038425036,0.0074504963,-0.04958184,-0.013096245,0.045773085,0.006403891,-0.03228683,-0.01667272,0.0710619,0.041535765,0.08965184,-0.037149087,-0.04098462,-0.1092434,-0.05613947,0.015262785,0.018376563,0.010817393,-0.0082206335,0.04624095,0.053916764,0.015521042,0.045141798,-0.047401056,-0.016141573,0.04855621,0.01051362,0.013106423,-1.3122581e-32,-0.04777889,0.093562834,0.02059605,0.022785163,-0.035415016,0.03354399,0.0062848935,-0.020647578,0.0016076813,-0.050626963,-0.12686972,-0.003918602,0.035938144,0.0071853194,-0.0498271,0.024971494,-0.04971846,-0.06661874,-0.05845533,-0.00043677667,0.002999037,0.037647374,0.034317605,0.027767263,-0.021666106,-0.0006373939,-0.042366147,0.046733383,-0.006598863,0.056799997,-0.073900215,0.03333146,0.0041977316,0.100041114,0.011780644,-0.040509142,0.08059054,0.065811485,-0.067795664,0.10000687,-0.03298305,-0.014559267,-0.02689705,-0.07540502,0.0772684,-0.02428686,0.0028910046,-0.14826527,0.059467357,-0.04034181,0.0788823,0.020441031,-0.013875447,0.08835293,-0.05393972,-0.012780528,-0.038062718,0.008914966,-0.014137818,-0.046912733,0.060436726,0.09316269,-0.056583453,-0.004493624,0.06885157,-0.028333731,-0.07568067,-0.02323374,0.08123247,-0.04464117,0.005918561,-0.055606887,-0.0037229443,-0.014502532,-0.021642867,0.0645393,0.055524696,0.01025058,-0.001453751,0.09880329,-0.08712127,0.058249023,0.0019023595,-0.07301697,-0.013448232,-0.049623225,-0.033252783,-0.08831931,0.010792016,0.019500047,-0.05023,0.055009585,0.08480922,-0.008768705,-0.0021903683,-6.3929576e-08,-0.017584927,0.020728434,-0.046100494,0.089226976,0.07103424,-0.10584475,-0.057265345,0.023709416,-0.104667835,0.0083503695,0.008284677,0.0058014784,-0.027385918,-0.00023254158,-0.063989066,0.027078848,-0.013616625,0.007099012,-0.004276811,-0.05606887,0.013809386,0.031386085,-0.03296074,-0.049298104,-0.070018016,-0.040363226,-0.01401517,-0.061253633,0.051330447,-0.0051092966,-0.03488754,0.0051830867,0.06062923,-0.06664749,0.08208457,-0.0029415726,-0.059840366,0.054276668,0.03453155,0.1642856,0.10192803,-0.023668554,0.01626235,-0.042825982,0.040821444,-0.046247184,-0.088707305,0.044456817,0.05883311,0.012730674,-0.02252734,0.0010399924,0.033932026,0.06397993,0.082850546,-0.03971911,-0.015232729,-0.024379026,-0.060717084,0.028266998,-0.0020123564,-0.0042363466,0.012093572,-0.090097316} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:25.46313+00 2026-01-25 01:27:51.253391+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 402 google Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB 1 t 405 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buenas , explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos buenas , explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos 1 2025-11-26 01:27:48.341718+00 es v5.1 P1.03 {} V- I3 CR-N {} {"P1.03": "explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que e"} {-0.01022578,0.069937915,-0.034701206,-0.032051895,-0.041376583,-0.019064343,0.099194005,0.040770344,-0.01896999,-0.031205317,0.014748123,-0.006146173,-0.032114882,0.039161433,0.040124115,0.0030330454,0.005631418,-0.017859457,-0.02841556,0.032550383,0.13162406,-0.11192428,-0.1087792,0.052028645,-0.07152867,0.011816714,-0.020811612,0.021227796,-0.029885942,-0.028679315,-0.0026001395,0.0647544,-0.0069964835,-0.022976872,0.05520443,-0.005469952,0.0074838637,-0.04646967,-0.07046319,0.063281216,-0.09083395,-0.011997924,0.0018508319,-0.08165552,-0.04627523,0.002914627,0.08926269,0.0600755,0.020026859,-0.05593064,-0.03313994,0.018184097,-0.065038,-0.020650664,-0.037186936,-0.056311447,0.000422436,0.00011255248,0.050345913,0.013214718,0.013932454,0.060117498,-0.04617113,0.0404757,0.04562943,-0.038643986,0.0003022057,-0.037566308,-0.06418571,0.09910658,0.097090356,-0.062835075,-0.012255487,-0.035726063,-0.03178263,0.05589947,0.06367912,0.0198514,0.021401076,-0.1298871,0.015211764,-0.032803904,0.011705164,-0.10020016,0.0065685376,-0.034542825,-0.035547506,0.059175998,0.11989365,-0.033888403,0.08236412,0.110715546,-0.0036185374,0.03237804,0.07576994,0.045253754,0.06445542,0.028697908,-0.009522888,0.008455969,0.10764431,0.051944986,-0.030075531,-0.037799757,-0.006512029,0.05653985,0.024935493,0.016720733,0.045986384,0.042607587,-0.09458776,-0.020525668,0.036882807,-0.043198925,-0.07114198,-0.007032678,-0.093863115,-0.0648513,-0.00052208663,0.014091553,0.0743894,-0.03292712,-0.04490161,-0.032951012,0.05205305,-0.04583102,0.03842118,1.4487248e-32,-0.01169207,0.06779655,-0.006105413,0.016543439,-0.055033088,0.036083553,-0.006334575,0.025478179,-0.038869705,0.05725731,-0.02727093,-0.0021932484,-0.019178359,0.03346163,0.03760588,-0.02164771,0.042351518,-0.023706067,0.008026458,0.0005747632,0.017386138,-0.06936745,-0.024666768,-0.023056462,0.012288145,0.0898223,-0.017651437,-0.0009079059,-0.05712315,0.06759608,0.01753544,0.03569093,0.021711113,-0.038357228,-0.044263124,-0.04021406,0.010824233,0.0031693,-0.1088966,-0.0624915,-0.027290361,0.037267506,-0.013929318,0.050766405,0.021669827,-0.006219327,-0.005980881,0.026265407,-0.013201564,0.004563577,-0.09340912,-0.007092774,-0.109463796,-0.011998754,-0.026896426,-0.011504949,-0.054568913,-0.044679366,-0.06526558,-0.083213605,0.009231977,0.005527432,-0.0064920485,-0.018351978,-0.04750466,0.0038268324,0.022148622,0.045171473,0.09718007,0.04093415,-0.036098044,-0.03500176,0.015028175,0.005565782,0.066943794,-0.023640133,0.07294052,0.026595397,-0.0424087,0.06909136,-0.07606583,-0.044696208,0.023964422,-0.01914441,0.04477483,0.012717773,0.09196909,0.070892304,0.0057541905,0.071990766,-0.009597051,0.04978769,0.115459085,-0.09206247,-0.010482305,-1.5820526e-32,-0.045301087,0.030990386,0.0022466574,-0.019838523,-0.046820693,-0.008259001,0.04266251,-0.009153899,0.034783192,-0.08871365,-0.068193264,-0.10347418,0.09853856,-0.01449608,-0.10663965,0.033609338,0.00080320204,-0.12094721,-0.042478446,-0.022728939,0.016688973,0.046142735,0.0069877245,0.081634544,-0.019402493,-0.043495916,-0.039137628,-0.042367835,-0.069222346,0.06798132,0.03519914,-0.0074118967,0.036018707,0.089316145,-0.07949308,-0.026260594,0.058115497,-0.007783237,-0.037323613,0.0519914,-0.0021145088,0.080772236,0.0021821074,-0.014623979,-0.039039236,0.0019605493,0.083828285,-0.13867483,0.0401002,-0.04812265,0.132883,-0.046642046,-0.065322645,0.0197262,0.0489163,0.024066212,-0.03735571,-0.088227674,-0.1406604,0.016332936,0.05340272,0.053918548,-0.037465334,0.0064886264,0.048883617,-0.0375341,-0.07449603,-0.012194203,0.13680205,-0.0052466025,0.01667164,-0.025030017,-0.08077703,0.018392965,-0.03071568,0.01244239,0.00083353353,0.00086534786,-0.015681788,-0.00435662,-0.059227776,0.012120323,0.020693857,-0.046834618,0.015653268,-0.04441022,-0.033529833,-0.000338271,0.0003614503,0.026057368,-0.108050466,-0.014957857,0.011814506,-0.035035215,-0.02319313,-6.239655e-08,-0.05151729,0.019795077,0.0057733147,-0.00445039,0.03276437,-0.024740722,0.013315438,-0.011155827,0.011740906,0.006031567,0.05996407,-0.011399749,-0.06055989,0.0032005315,-0.06739234,-0.029592382,0.037194237,0.03958929,-0.035276923,-0.0771437,0.11790758,-0.008221153,-0.088402286,0.010590982,0.04340858,0.008124979,-0.046861902,0.040853474,-0.023108566,0.0432224,-0.092540294,-0.05254859,0.0076276637,-0.11472048,0.0070958314,-0.012687145,-1.4007438e-05,0.061773803,-0.024076527,-0.007290711,0.09271451,-0.029929716,-0.055259064,0.02259816,-0.070327714,-0.10540033,-0.04978458,-0.06606832,-0.013601244,-0.0012743066,0.012714786,-0.056927536,0.075492546,0.023047287,0.082524136,-0.06047484,-0.013357028,0.062226675,-0.03529653,-0.028294332,0.07541232,0.038434196,-0.023492362,-0.07173028} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:13.311048+00 2026-01-25 01:27:51.275105+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 403 google Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB 1 t 406 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El coche estaba impecable, el trato del personal excelente. Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos. el coche estaba impecable, el trato del personal excelente. mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos. 5 2025-11-26 01:27:48.341727+00 es v5.1 O1.01 {A1.01} V+ I3 CR-N {} {"O1.01": "El coche estaba impecable, el trato del personal excelente.", "R1.01": "Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos."} {-0.005946474,0.01405852,-0.03953765,-0.07804664,-0.0932858,-0.004194333,0.06547727,0.048590124,-0.021618504,-0.027423196,0.059793506,-0.009619629,-0.018968394,-0.055136647,0.039096072,-0.031211982,0.06603428,-0.00734738,0.018345945,-0.0016818707,0.04838207,-0.060129542,-0.07044547,0.06484119,-0.07780528,-0.08723547,-0.029279493,-0.010450711,-0.038794823,-0.06809464,-0.00936685,0.09757015,0.035433415,-0.023210226,-0.025274316,-0.04514197,-0.008694063,-0.07100222,0.00656114,0.089826375,-0.1066942,0.040125895,0.0021872676,-0.055900846,0.004535156,-0.08973975,0.027604837,0.06918764,0.022769941,0.02869238,-0.12074344,0.04442121,0.012940621,0.021196825,-0.021266682,0.010522357,-0.040612247,0.015402407,0.084006965,0.017685091,0.018398538,0.026863525,-0.032665644,0.047283832,0.017704051,0.04319716,-0.016017796,-0.0052620587,-0.037213825,0.048010394,0.00697304,-0.08532098,-0.0566388,0.0736027,0.027663264,0.042003483,-0.05568844,-0.039916705,-0.01803027,-0.0071673566,-0.0763301,0.015611769,0.032135442,-0.023294404,0.04192451,0.012562814,0.03434498,0.07970292,0.05162188,-0.033701845,-0.0055932114,0.09808941,-0.017586289,-0.0006603029,-0.05034423,-0.0020198307,0.025121195,0.0075740153,-0.018401153,-0.007736583,0.054494925,0.082281604,0.06893671,0.025984295,-0.0552637,0.04341225,0.06621704,-0.0055555026,0.05695444,0.04536799,-0.08390102,-0.03546761,-0.056244988,-0.08793769,0.020309214,0.02862748,-0.025749002,-0.03653177,0.07058315,-0.03479317,0.059288528,0.039048593,-0.06451897,-0.09154328,0.03488375,-0.107058905,0.07411721,9.082593e-33,-0.018895278,0.043471675,0.06918567,0.059356872,-0.02794942,-0.0010853311,-0.06650305,0.00046076256,-0.05107721,0.011732373,-0.01452977,0.12142507,-0.010968671,0.019969178,0.039198603,0.08738934,0.029887946,0.051287707,0.01911608,0.024835289,0.012671372,-0.06221548,-0.017841723,0.046611782,0.017068408,0.0681567,0.03599969,0.029065618,0.026651483,0.046898358,-0.012836674,0.012310354,0.0031451527,-0.04833916,-0.009513162,0.01321214,-0.027221309,0.019448716,-0.010985353,-0.021770325,-0.010021276,0.0030595225,0.034103803,0.040459417,-0.040365342,0.048842188,0.0679081,0.022870393,0.049272172,0.03185488,-0.097606935,-0.033974126,-0.06971125,0.008295143,-0.047424212,0.020928517,-0.07628599,0.050672226,0.0035469972,-0.043526374,0.039866365,-0.0077372487,-0.010967186,-0.014585342,-0.119888425,-0.018856574,-0.004117095,0.016763756,0.16981672,0.00090287114,-0.06342679,-0.008219243,0.022468409,0.030588828,0.04962644,0.049161494,-0.031352803,-0.075277865,-0.026414147,0.046116028,-0.022004897,-0.08308814,0.026508424,-0.023884257,0.064216904,0.061487634,0.058734328,0.008465711,-0.06720094,0.10939978,-0.00031892202,0.114548534,0.052148618,0.022653706,-0.023182658,-1.021007e-32,-0.0036450115,0.0056596166,0.01302267,0.007832913,0.0031140414,0.05996907,-0.009431558,-0.001663196,-0.0062866835,-0.106426306,-0.08012281,-0.12855537,0.13388546,-0.021966388,-0.107356325,0.09021072,-0.054992814,-0.101298094,-0.121248,-0.09083535,0.029124284,0.015106508,0.052197553,0.0025958193,-0.01767182,-0.05018506,-0.035204478,-0.014207073,0.02106384,-0.002599994,0.049179975,0.03192894,-0.048119944,0.004840691,-0.044933837,0.07214942,0.025391968,0.05179229,0.06120179,0.0259701,-0.020128984,0.024790574,0.006911611,-0.06338625,0.023652786,0.0009899068,-0.0061631035,-0.15080628,-0.019488215,0.00055371865,-0.0030092944,0.012311933,-0.027911637,-0.05437917,0.0084685255,0.040824447,-0.017179394,-0.07817987,-0.09018456,-0.025399787,-0.02298549,0.017058399,-0.035360713,-0.0022487529,0.109426655,-0.056041844,-0.0027677545,0.016264396,0.014468449,0.08274217,0.070353605,-0.010785629,-0.008171214,-0.051745772,-0.04396744,-0.04146275,-0.045462597,-0.032608993,-0.055883765,0.011953424,0.065171674,-0.032716446,0.046575014,-0.08810628,-0.06275999,-0.03748,-0.042744998,-0.059171483,-0.03211688,0.06025838,-0.048058532,0.018451411,-0.09746105,-0.056156572,-0.06013703,-4.2969546e-08,0.036466774,-0.018378956,0.046187192,0.004910464,0.040572368,-0.058952782,-0.039917175,0.054875564,0.042029686,0.066478424,-0.046995122,-0.095419094,-0.017833263,0.08225786,0.018454837,0.045428347,0.09802299,0.056017075,-0.015014921,-0.07913076,0.04064434,-0.04988787,-0.056602035,0.064100385,-0.025235442,0.07090327,-0.012483879,0.030270189,-0.03565488,0.011133644,-0.0595285,0.040110257,0.05050143,-0.1320974,-0.074062414,0.00027379152,0.021125259,-0.006822892,-0.055141382,0.0032762224,0.09335439,0.03655083,-0.048849832,0.012192285,-0.0018860416,-0.08305628,0.02437333,-0.04700465,-0.0034972872,0.037159085,-0.032991566,-0.03967509,0.058084372,0.0017744682,0.046454914,-0.0139897,0.02434831,0.044885833,0.02661784,0.02286747,0.069846265,0.06943521,0.013255545,-0.048590682} 0.85 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:19:07.334499+00 2026-01-25 01:27:51.281177+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 408 google Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB 1 t 411 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado del aeropuerto. El proceso de alquilar el coche fue súper sencillo y la chica que nos atendió fue un amor, contagiaba su alegría. Nos lo explicaron todo súper bien. Preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. A la hora de devolver el coche lo mismo súper rápido y sencillo, nos volvieron a acercar al aeropuerto. Ha sido buena experiencia , si vuelvo a canarias repetiré con ellos. atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado del aeropuerto. el proceso de alquilar el coche fue súper sencillo y la chica que nos atendió fue un amor, contagiaba su alegría. nos lo explicaron todo súper bien. preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. a la hora de devolver el coche lo mismo súper rápido y sencillo, nos volvieron a acercar al aeropuerto. ha sido buena experiencia , si vuelvo a canarias repetiré con ellos. 5 2025-06-29 01:27:48.341757+00 es v5.1 A1.03 {J1.01} V+ I3 CR-N {} {"A1.03": "Atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado de", "J1.02": "Preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. A la hora de devol", "R1.01": "Ha sido buena experiencia, si vuelvo a canarias repetiré con ellos."} {0.0060361237,0.024760403,-0.019818243,-0.04006342,-0.00971884,-0.015261582,0.07952761,0.033692636,-0.021554846,0.0014921243,0.1294632,0.03235591,-3.6748566e-05,-0.06658854,0.0053026415,0.027803268,0.018334089,-0.019158473,-0.05331777,-0.00039355684,0.119580336,-0.043874644,-0.07548922,0.10668933,-0.070911944,0.013896983,-0.100950904,0.041247327,-0.06049789,-0.08487827,-0.01890679,0.029671298,0.012521549,0.014237001,-0.03719507,-0.03767022,0.052846614,-0.04506231,-0.020132812,0.017475564,-0.10505422,-0.037675377,-0.030793529,-0.030139122,-0.009591648,0.021652905,0.033900138,0.05248903,0.057517007,-0.035232127,-0.06550029,-0.0661029,0.05871373,-0.042057876,0.0011486621,0.009642613,-0.04888262,-0.054031573,0.08796047,-0.0116935875,0.009625189,0.004840109,-0.04450491,0.04519214,-0.020041378,-0.015394686,-0.03653542,-0.02774168,0.009827568,0.03948425,0.11485095,-0.07560089,0.04579892,0.027112227,-0.029486677,0.054363575,-0.010468703,-0.04915523,0.06131174,-0.04986149,0.07739133,-0.069459826,-0.06400536,-0.055465866,0.0057526133,0.00057318446,-0.007713001,-0.014620759,0.033576384,-0.016977567,-0.035270125,0.050776318,-0.0034572731,-0.0433196,0.027413629,0.019897478,0.02305259,-0.013910447,-0.043448728,-0.0009391129,0.09404322,0.06796028,0.03772684,0.0687778,-0.06283963,0.035968103,0.047303576,-0.034505956,0.059792988,0.013651332,-0.10944978,-0.06563736,0.02762506,-0.09787227,-0.058429442,-0.012974109,-0.048985384,-0.08194512,-0.0934418,-0.072441235,0.0010551836,-0.06948882,-0.018050313,-0.053472746,0.03976919,-0.03048007,0.04599956,1.0297666e-32,-0.045992516,0.0060655996,-0.019507248,0.03733411,0.07206877,-0.010902067,-0.046395767,-0.0053051375,0.030056382,-0.0379649,-0.065056294,-0.0038159997,-0.046485636,0.049533326,0.10032955,-0.080359355,0.022274464,-0.052950583,-0.019097267,-0.012377457,-0.045329515,-0.067312546,-0.07203232,-0.004220298,0.030946173,0.03656254,-0.033493884,0.007730271,-0.0125401635,0.06955537,0.034103926,0.08749869,-0.048793577,0.035673484,-0.095803306,-0.065488,0.016727261,0.025410477,-0.0095004365,-0.06549049,-0.019459164,0.016781883,-0.09708116,0.0475151,-0.0057488554,-0.044412974,-0.0053866575,0.07839968,0.10843477,-0.026792658,-0.02902154,0.024495438,-0.045370515,-0.03730548,0.040401645,0.058597874,0.0031095417,0.035695855,-0.024666676,0.0003739028,-0.03005003,0.03556838,0.029474922,-0.0015552302,-0.017429119,0.038413234,0.05885712,0.058465827,0.13781492,0.06315318,-0.028892178,-0.018376589,-0.055853453,0.023574093,0.039936915,0.03311188,0.00084108615,-0.034725163,-0.10694619,0.024990058,-0.016775183,0.001392319,0.038349364,0.03262821,0.06792474,-0.007576501,0.013927764,0.04650553,-0.03408729,0.07528775,-0.018121047,0.08970852,0.07569559,-0.011279849,0.0065006046,-1.232887e-32,0.016468456,0.034254115,-0.037202667,-0.01604711,-0.058446877,0.09412499,-0.018005872,-0.074219994,-0.016920155,-0.04458267,-0.1150828,-0.04518376,0.085369304,-0.02133851,0.042821247,0.030069211,-0.010342934,-0.07394158,-0.101828225,-0.037587,0.072502434,0.028656082,0.037277527,0.0020576043,-0.028153688,-0.019025933,-0.021470528,0.025062595,-0.017663691,0.004482482,-0.004631081,0.021793025,0.055105455,0.11247494,-0.018044624,-0.0069926465,0.08733745,-0.011641043,-0.014138594,-0.008101042,-0.0060658087,0.03651377,0.05772306,-0.061433583,0.03864707,-0.012720206,0.0289182,-0.16694404,-0.027778657,-0.05557796,0.09569182,-0.11052981,-0.09469045,0.04215206,0.11610955,0.036724452,0.047951017,-0.073329404,-0.08528012,-0.07902611,0.023034496,-0.030717002,-0.06730043,-0.021250572,0.027909497,-0.02148082,-0.008688467,-0.016926348,0.05739436,-0.021199172,0.048077602,0.034163337,-0.0422512,0.01501472,-0.06862268,-0.02198685,0.022720106,0.06383547,-0.07063039,0.01821385,-0.10127756,0.0303215,0.053673036,-0.049182124,-0.04839003,-0.041018188,-0.053535495,-0.044435877,0.009667602,0.040273115,0.0066557885,0.02094973,-0.0058473134,-0.06651465,-0.035319444,-5.2494027e-08,-0.020596365,0.015921509,0.07701211,-0.009191238,0.051481955,0.0030923937,-0.009058454,-0.0071012434,-0.016959824,0.0015491081,0.07897223,-0.023072638,-0.0034447098,0.08511752,-0.014912407,-0.055102043,0.02244816,0.11004263,-0.01364295,-0.058124695,0.015703088,0.02409622,-0.035425674,0.041908633,0.019458154,0.0043277466,-0.00963624,-0.02123032,0.005838113,-0.00043399623,-0.110160455,-0.01501485,-0.008779182,-0.14568114,-0.05832198,0.001531085,0.015829904,0.04662559,-0.045446925,-0.014415952,0.101045005,0.026448179,-0.095603846,0.02851125,0.0032688356,-0.058873873,-0.025473164,-0.030557651,-0.039917342,0.051169768,-0.015214059,-0.004599289,0.11958956,0.046477772,-0.015633315,-0.043671858,-0.05367067,-0.021334982,-0.031181496,0.0064954506,0.09044017,0.12317289,-0.024378967,-0.013388915} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:11.968942+00 2026-01-25 01:27:51.297048+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 410 google ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB 1 t 413 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Esperienza negativa!sconsigliato!siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e siccome gli uffici distano 2,5 km e sono in mezzo al nulla abbiamo dovuto trovare un taxi che ci portasse. Una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore. Morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. Inoltre maleducati e da quello che leggo neanche troppo onesti!da evitare! esperienza negativa!sconsigliato!siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e siccome gli uffici distano 2,5 km e sono in mezzo al nulla abbiamo dovuto trovare un taxi che ci portasse. una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore. morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. inoltre maleducati e da quello che leggo neanche troppo onesti!da evitare! 1 2025-04-30 01:27:48.341761+00 it v5.1 J1.03 {} V- I2 CR-N {} {"A1.03": "Morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. Inoltre maleduca", "J1.03": "siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e sicc", "J2.02": "Una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore."} {0.029667865,0.080711715,-0.026446106,0.06301731,-0.0825019,-0.039229974,0.11415787,0.07095947,-0.036752846,0.0047583585,0.08566043,-0.07293455,0.023055302,0.0039227004,-0.109697685,-0.028890723,0.0350235,-0.008325152,0.024812596,0.048009943,-0.0041002007,-0.1093909,-0.07918494,0.0620738,-0.04191602,-0.0048983437,-0.051075604,0.10174887,-0.035694107,-0.060153186,-0.02372287,0.09812761,0.05073908,-0.042696487,0.05904015,0.09185354,0.004075713,-0.03633142,0.013469525,0.023421371,0.011023686,0.021902999,-0.037119173,-0.002953465,0.03486511,-0.01502468,0.009465403,0.0140785575,0.0343383,-0.006726265,-0.043366265,0.031480387,0.032593485,-0.03377122,-0.09134266,-0.075443156,0.036739845,-0.03148729,0.0005077139,-0.01513124,0.036882762,-0.0257418,0.015599118,0.0038191194,-0.014035857,-0.004576221,-0.06643933,-0.0977086,-0.0030021244,0.03133448,0.029430045,-0.077209614,-0.0057829428,-0.04541045,-0.054205105,0.02668355,-0.010400047,-0.03241731,0.058791183,-0.08975574,0.08649673,-0.06967862,-0.024001077,0.033229437,-0.012636338,-0.0023463888,0.01793365,-0.051474925,0.019326335,-0.011570172,-0.01002447,0.09981463,-0.09066351,-0.091211736,-0.0063277273,-0.040938824,-0.06595315,-0.000287254,-0.08976818,0.030036796,0.09755734,0.056727666,-0.013103689,0.012154009,-0.0818227,-0.014852384,0.115138456,-0.13720925,0.02413947,0.024337465,-0.15874489,-0.028445803,-0.03071136,-0.041756947,-0.05720064,0.06135801,0.016091067,-0.05183942,-0.018942734,-0.0013771899,-0.019563848,-0.06409336,0.032490186,-0.0086158905,0.042268787,-0.107859984,0.108913444,1.4505068e-32,-0.050619543,-0.0019702008,0.010803789,0.030933244,0.052391965,0.06379764,-0.09885198,-0.05268276,0.009815778,-0.05048257,-0.11215117,-0.04268813,0.0013912116,0.0061633126,0.05693246,0.056978192,0.0363941,-0.03888447,0.012632665,-0.07800378,-0.063681915,-0.05448196,-0.034591865,-0.0139017105,0.016834965,-0.016567959,-0.045761764,-0.032057583,-0.06131742,0.045272935,0.015960272,0.0875425,-0.027523119,-0.0106028225,-0.05378862,-0.013592774,-0.018629896,0.07880963,0.0044467854,-0.0006856084,-0.048714112,0.052178465,0.050023306,-0.018315172,0.019558216,0.029692113,0.03513137,-0.0040383507,0.10218105,0.0133781275,-0.055596843,-0.054242276,-0.00010983253,0.0019367817,0.011505108,0.047079824,-0.027565667,0.048279405,0.035985276,-0.012339295,0.018544968,0.049622536,-0.0058992994,-0.050868407,0.029016798,-0.0042595086,-0.0034940878,0.0029294586,0.058205873,0.017009964,0.0036894847,-0.038393926,-0.027732886,0.04893612,-0.08872566,0.045155846,-0.042756807,0.022954194,-0.00027098847,0.034577876,-0.03147842,-0.05026933,0.045809478,-0.06275413,0.09981244,0.013803005,0.084089905,-0.015124471,0.014788986,0.08634795,0.057424817,0.08222345,0.0022936019,-0.05016475,0.057711266,-1.4695784e-32,0.05205854,0.037865996,-0.026358418,-0.03355399,-0.07184817,0.014602343,-0.037774947,-0.05782713,0.062338043,0.049682193,-0.116103515,-0.06908508,0.08849276,-0.024714459,0.0036246164,0.03555333,0.06968672,-0.0118056815,-0.003300957,-0.05480183,-0.05806732,-0.022888862,-0.029903747,-0.0129488,-0.02631647,0.03142121,0.0647161,0.007556833,-0.08762497,-0.002944685,-0.024232665,0.03773097,-0.033003997,0.0843591,0.07369806,-0.0019333652,0.05575114,0.04395045,-0.050311353,0.010184732,-0.031348873,0.018723745,0.045039043,-0.038692378,0.06923716,-0.018087188,-0.063455455,-0.07189709,-0.055054363,-0.123207964,0.07744504,-0.034236863,-0.057799533,-0.008780612,0.04762507,0.035525143,4.4771856e-05,-0.035354424,-0.09443178,-0.064265676,0.07313139,0.011517478,-0.077650085,0.006535957,-0.029226856,0.019940156,0.0013996274,0.03269736,0.00783576,0.007961391,0.005986166,-0.0872849,-0.029400699,0.02454889,-0.07898345,0.037244137,0.03012273,0.09790751,0.06631108,-0.06372524,-0.03100227,-0.0330381,-0.013348471,-0.03548747,-0.09123953,-0.043469533,0.0029653131,-0.0008674455,0.044931956,0.0035762847,-0.024425538,0.06563292,-0.020772213,-0.100551814,-0.006373488,-5.503105e-08,0.045243878,-0.036509257,0.07246085,0.048117977,0.01274714,-0.10169829,-0.008009356,-0.008291737,-0.0052635698,0.047000624,-0.0491009,-0.0042560743,0.022367116,0.02577534,0.0035124982,0.08227476,0.05533693,0.03942027,-0.018229995,-0.032245345,0.069129385,-0.03730998,-0.088187166,-0.069420114,0.050641745,0.025491584,0.054163843,-0.046200305,0.02257451,-0.09147445,0.022697045,-0.020404855,0.010633018,-0.07417418,-0.050131895,0.08816579,0.014037322,-0.0023885015,-0.012047425,-0.061170924,0.031557422,0.00746079,-0.013654217,-0.040971957,-0.018837953,0.037289143,0.040176384,0.008293443,-0.016939962,0.05754824,-0.09836365,0.016515547,0.1142512,0.060769875,0.03211044,-0.06188719,0.04593866,0.010115915,0.03724283,-0.0045406455,0.03154414,0.07612516,-0.08061541,-0.023541769} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:45:29.160397+00 2026-01-25 01:27:51.303464+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 414 google ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE 1 t 417 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Haben uns für ClickRent entschieden weil es mit Abstand das billigste war (Moderner VW polo 4 Tage ~85€ + junger Fahrer)\nHaben bei der Übergabe sofort das ganze Auto abfotografiert und von allem Videos gemacht sollte uns schaden vorgeworfen werden für den wir nicht verantwortlich waren.\nDazu musste man noch 1000€ Kaution hinterlegen weil wir nicht nochmal für ~80€ eine extra Versicherung abschließen wollten.\nIn den 4 Tagen ist alles problemlos verlaufen, konnten die ganze Insel umfahren und Orte erreichen die man mit dem Bus nie gesehen hätte.\nIch kann es nur empfehlen!\nEinfach nur bei Übergabe Schäden abfotografieren damit man am ende nicht blöd dasteht. haben uns für clickrent entschieden weil es mit abstand das billigste war (moderner vw polo 4 tage ~85€ + junger fahrer) haben bei der übergabe sofort das ganze auto abfotografiert und von allem videos gemacht sollte uns schaden vorgeworfen werden für den wir nicht verantwortlich waren. dazu musste man noch 1000€ kaution hinterlegen weil wir nicht nochmal für ~80€ eine extra versicherung abschließen wollten. in den 4 tagen ist alles problemlos verlaufen, konnten die ganze insel umfahren und orte erreichen die man mit dem bus nie gesehen hätte. ich kann es nur empfehlen! einfach nur bei übergabe schäden abfotografieren damit man am ende nicht blöd dasteht. 5 2025-04-30 01:27:48.341783+00 de v5.1 P1.01 {} V+ I2 CR-N {} {"A3.01": "Einfach nur bei Übergabe Schäden abfotografieren damit man am ende nicht blöd dasteht.", "J1.01": "In den 4 Tagen ist alles problemlos verlaufen, konnten die ganze Insel umfahren und Orte erreichen d", "P1.01": "Haben uns für ClickRent entschieden weil es mit Abstand das billigste war (Moderner VW polo 4 Tage ~"} {-0.014706095,0.022660038,-0.041685753,-0.05730085,0.04545515,0.042917,0.099132754,0.07600685,-0.041738007,-0.014236727,0.037343275,-0.03989936,0.05707163,-0.0009662183,-0.032276437,0.034174595,0.04484814,-0.02810182,-0.11437486,0.0011995723,0.042016257,-0.09993548,0.014860049,0.0841471,-0.042023253,0.036226507,-0.058916353,-0.07545059,0.007554498,-0.06803552,0.04744985,0.01862443,0.0030629593,-0.04673715,0.017903224,-0.048799008,0.06789035,-0.033531323,-0.026761098,0.031068927,-0.0300035,-0.01160382,-0.10238064,-0.015440203,-0.012528379,0.007289627,0.066929154,-0.01149683,0.020538092,0.007333049,-0.016251627,0.022806456,0.03153845,-0.053502858,-0.0007550394,-0.20718007,-0.027224017,0.04151711,0.07167471,0.106573954,-0.037298933,-0.0885216,0.0097485585,0.050260436,-0.003974846,0.054237016,-0.012656362,-0.09558518,-0.06435701,0.09966628,0.04915992,-0.054967664,-0.06260152,-0.08934205,-0.053860012,0.024786381,-0.012302353,0.00783994,-0.033936918,-0.13189359,0.05137636,-0.06879175,0.07105774,0.0068440414,0.025710363,-0.054322626,0.005923655,-0.02746969,0.053975873,0.04543948,-0.04135449,0.061580073,-0.11269725,-0.030072216,0.04732256,0.023761997,-0.042594474,-0.099777095,-0.0026946354,0.06945468,0.05712247,0.008476118,0.022274686,-0.00805899,-0.023273978,-0.014177471,0.023946064,0.031857613,-0.009932025,0.013358472,-0.058878757,-0.07278016,0.0032803065,-0.04755479,-0.04905259,-0.047846876,0.014315018,-0.07380294,-0.009848287,0.017805122,-0.009772758,-0.01787968,0.031558394,-0.05668146,0.047614414,-0.043297917,0.050371844,2.07248e-32,-0.07556345,0.0048377467,-0.028398639,-0.045283817,0.045426678,0.04140029,-0.036262397,0.068882965,0.03373475,-0.014375921,0.026855927,-0.047684122,-0.038492694,0.0201111,0.11626044,-0.10347282,0.028981138,-0.051731206,0.0034061614,-0.073510274,0.0146964025,-0.0156448,0.015782654,0.0024056782,-0.02408956,0.07953201,0.062111102,-0.027142845,0.062653966,0.06907955,0.02055481,-0.020513954,-0.02011231,-0.00066864607,-0.08807944,-0.010062762,-0.07570574,-0.0076391147,0.006321796,-0.01588971,-0.06023977,0.044027247,-0.049506918,-0.09495318,-0.022932466,0.0008088226,0.00962529,0.0030239758,-0.0033996515,0.029437304,-0.044564914,-0.023232086,0.058161933,-0.07523896,-0.028763812,0.039698374,-0.10140215,0.019602127,-0.0035055177,-0.05975495,-0.012628298,-0.06594178,0.037374295,-0.06813324,0.046039097,-0.0068941065,0.020001346,-0.018440917,-0.0104433615,-0.006000305,0.010374057,0.027879527,0.08339363,-0.007868052,0.0712492,0.05339053,-0.029557908,-0.001461535,-0.08355392,0.04577619,-0.14833598,-0.066471614,0.11133222,-0.05713216,0.047955573,-0.01669422,0.053659435,0.0048486227,-0.0627488,0.078925945,0.007763205,-0.014072373,-0.02788201,0.0043967934,0.045622475,-1.9793964e-32,0.06398669,0.106034815,0.019744642,-0.023731694,-0.004868804,0.089007504,-0.0051456867,0.07353743,-0.026816975,0.003602557,-0.03261525,0.012979374,-0.044195123,0.030886708,-0.036746304,0.00025258155,0.025956875,-0.0026348138,0.033949383,-0.019433709,0.012976617,0.031402353,-0.019568672,0.083029926,0.03794014,0.03125289,0.010319816,0.0040010926,0.013362993,0.012351034,-0.033388995,0.017084938,-0.023880666,0.054921765,-0.024669841,-0.009631426,0.11308306,0.09521503,-0.05447786,0.041663807,0.008723614,0.051102236,-0.032466102,-0.08665355,0.06168334,-0.043144017,-0.10697393,-0.09828333,-0.031193702,-0.08417698,0.07958011,0.008117231,-0.036171805,0.01355046,-0.015602995,-0.015362464,0.04613162,-0.06643396,-0.09840868,-0.070900306,-0.01219049,0.04915028,0.051282603,-0.023481918,-0.00621545,-0.0175936,-0.04924132,-0.05636577,0.0062886267,-0.01662285,0.012051227,-0.019914003,-0.03529567,0.041653678,-0.0078113116,0.091801815,0.07912485,0.018152297,0.0035113646,-0.03963923,-0.011804299,0.019605586,-0.02626514,-0.0319663,-0.12356791,0.0055158394,0.05132662,0.014480707,-0.041050646,0.03512903,0.015813008,0.117204055,0.06445758,0.09358868,0.028010847,-6.979014e-08,-0.05424228,-0.0363238,-0.01058458,-0.016045,0.018940412,-0.07331981,-0.028357072,0.053717095,-0.072315924,-0.00495543,0.059033845,0.010616564,-0.0011033681,0.059167407,-0.12790667,0.034196585,0.034491684,-0.04063047,-0.024730595,0.011993947,0.062205523,-0.024132624,-0.057337694,-0.038104195,0.04725532,0.018423628,-0.045088045,-0.01877011,0.013903727,-0.017162913,0.02897597,0.032819208,-0.037577357,-0.11102366,-0.049904983,-0.056201614,0.027187929,-0.03846249,-0.05327525,0.08153493,0.12565216,-0.025193298,0.045138776,-0.06735873,0.05965569,-0.044067424,-0.07342766,-0.022606988,-0.042063113,0.047443684,-0.060675044,0.025810357,0.036984935,0.0600175,0.0033204062,-0.033038907,0.057056855,-0.03323178,0.0077078314,0.035470422,0.059098314,0.024989288,-0.028300976,0.012315612} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:45:17.736471+00 2026-01-25 01:27:51.317469+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 419 google Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB 1 t 422 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Finger weg! Habe dieses Jahr mal Clickrent probiert. Transfer hat etwas gedauert, Auto OK, Abgabe nur unkompliziert, wenn man Vorort eine zweite Vollkasko direkt von Clickrent bucht. Wir buchen beim nächsten Mal wieder bei seriösen Autovermietern. finger weg! habe dieses jahr mal clickrent probiert. transfer hat etwas gedauert, auto ok, abgabe nur unkompliziert, wenn man vorort eine zweite vollkasko direkt von clickrent bucht. wir buchen beim nächsten mal wieder bei seriösen autovermietern. 1 2025-08-28 01:27:48.341815+00 de v5.1 J2.02 {O1.01} V0 I1 CR-W {} {"J2.02": "Transfer hat etwas gedauert, Auto OK, Abgabe nur unkompliziert, wenn man Vorort eine zweite Vollkask", "R1.01": "Wir buchen beim nächsten Mal wieder bei seriösen Autovermietern."} {-0.08309086,-0.0059734797,-0.033452246,-0.11791292,-0.041529447,0.017786652,0.16220732,0.050712023,-0.037282966,-0.040400747,0.07317388,0.031229213,-0.029455025,-0.031806234,-0.055188656,-0.05017778,-0.05838741,-0.03955965,-0.03292435,0.044229984,-0.012721443,-0.0781025,0.021404158,-0.033621624,0.006045031,-0.07838393,0.047375135,-0.07677025,0.060161006,-0.06068779,-0.06641708,0.02567739,-0.044130247,-0.0674511,-0.021518461,-0.003877165,-0.06633281,-0.076233506,-0.03863957,-0.009841213,0.032475177,-0.061610878,-0.06205508,-0.021218017,-0.027858559,0.03571248,-0.022958675,0.07587995,-0.012080885,0.029498823,-0.06773506,0.035941005,0.039741244,-0.07809841,-0.030017475,0.008437947,0.063023254,0.023988888,0.022244317,0.05790088,0.048409026,0.04805159,-0.053941306,0.011852179,0.029942594,-0.040853348,0.06293687,0.022258729,-0.04456382,-0.006249056,-0.02529637,-0.12225741,-0.07051059,0.13590454,0.028454753,-0.0992715,-0.120329,-0.015751721,-0.01359709,-0.023058534,-0.012757228,-0.044068288,0.030301103,0.02549891,-0.0059816157,-0.0095063,-0.0638067,0.11457412,-0.014862582,-0.051702604,-0.02961172,0.017144267,-0.068610534,-0.037128367,0.033025324,0.012072131,-0.031674664,-0.056410335,0.002535579,0.0123466,0.054978576,0.050474554,-0.021068068,0.01580383,-0.051931612,-0.019344352,0.002242075,-0.010882717,-0.03150274,0.016770102,-0.016865978,-0.0061583314,-0.054991398,-0.12511073,-0.0077046696,-0.06961227,-0.08552341,-0.049062204,0.039559126,-0.075915396,0.0024648712,-0.011783621,-0.06496305,-0.010420528,0.068395056,-0.009610609,0.045076128,1.5091066e-32,-0.04132494,0.00066897133,-0.06102738,-0.063016735,-0.09616599,0.020989835,-0.00020361923,-0.065954305,-0.03724699,-0.039942402,-0.026007473,0.0037742371,-0.05405011,0.0011296589,0.047807787,0.0053766603,0.02704219,0.036107313,0.057238135,0.01057999,0.027660877,0.07039283,0.00085425435,0.056173574,0.018426904,0.030241227,-0.05009279,-0.042533908,0.053877972,0.030587548,0.011838736,-0.006496114,-0.05280668,0.013823627,-0.0457955,-0.03813557,-0.036839377,0.014630786,-0.0051215254,-0.0684405,0.10447777,-0.074230015,-0.0073949886,-0.0280052,0.004315124,-0.010101276,0.024665704,-0.0263194,0.01337297,-0.049961537,0.0064605693,-0.091408215,-0.033739634,-0.038159456,-0.03525089,0.053376775,-0.025167003,0.08403889,-0.061773583,0.030424932,0.014324306,0.024949748,0.05731474,-0.032341044,0.0959744,-0.016991308,-0.010547243,-0.043546416,0.019117098,0.038562655,-0.062035963,0.002798148,0.04130755,0.046967577,0.007176377,0.040816426,-0.054589294,0.055235863,-0.053418614,0.018414473,-0.07096534,-0.04780989,0.0625416,-0.05499914,0.0757526,-0.022771446,-0.013971549,-0.04733578,-0.05150492,0.13762642,0.040740274,0.07973127,-0.04906499,0.10617573,0.0004449103,-1.7439512e-32,0.025746096,0.06433108,0.048754726,0.10639812,-0.022471545,0.09922868,-0.006608687,0.019305399,-0.09543511,0.017969526,0.0054467404,0.005117367,0.11223873,-0.0071743797,-0.06594952,-0.0017478588,-0.005668815,0.028378733,-0.04051489,-0.050283175,0.036818605,-0.023523001,0.0768054,0.07992512,-0.019933889,-0.08795066,0.038123723,0.04079939,-0.041263077,0.044165257,0.05706405,0.055083793,-0.006695059,0.031321447,0.018675841,0.065262705,0.07330812,0.056843586,0.014399709,0.070569836,-0.004582322,-0.013485802,0.011452789,-0.061311677,0.021151025,-0.03309322,-0.06734671,-0.040209267,-0.047698848,-0.03207575,0.04401487,0.07625812,0.09222212,-0.1398845,-0.020175906,0.0822458,0.063332506,-0.07871558,0.040605746,0.033792444,0.023278134,0.02643016,0.08102393,-0.02002124,0.029248342,-0.015851866,-0.011729225,-0.009856335,0.044724498,0.08291964,0.078412674,0.07918958,0.030394012,-0.026049564,-0.019502232,-0.011886768,-0.00017101005,-0.0058939317,-0.0017500577,-0.060882587,0.012722736,0.03848285,0.041014027,0.030033229,-0.09193735,-0.03336405,0.026073184,-0.008115673,-0.03660337,-0.024119029,-0.03019137,0.046341732,-0.009995283,-0.027984828,-0.05878928,-5.8691814e-08,0.005729393,0.037908535,0.04504171,-0.017183667,0.07755377,-0.009016283,-0.100038745,0.00012374397,-0.010996141,0.017494177,-0.14385344,-0.04586187,-0.045326132,0.069071546,-0.014107363,0.056634985,0.051946692,0.042752035,-0.028121402,-0.06235019,0.11408842,-0.08672141,0.007872476,0.052348625,-0.020838471,-0.01679543,0.063863315,0.051124196,0.08722451,-0.045888003,0.0071016424,0.035704684,-0.06693998,0.041569725,-0.08373748,0.03449,0.029916579,-0.013942153,-0.048904225,0.029229812,0.06479187,0.025602894,-0.062278703,-0.03365661,-0.07400509,-0.016676886,0.022759883,-0.0353006,-0.031683408,0.013894146,0.0045539876,-0.0025590556,-0.0020116451,-0.0056392765,0.07865919,0.056750733,-0.019778397,-0.069418035,0.079495534,0.03532728,-0.031241877,0.11124862,-0.0037172916,0.0067682187} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:43.340536+00 2026-01-25 01:27:51.333583+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 426 google Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB 1 t 429 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar al sitio, porque nadie nos avisó que había bus que nos recogía, al llegar, nos atendió una chica joven de pelo largo liso que no pudo ser más desagradable y maleducada, nos cobró obligatoriamente cosas que nos queríamos y el trato fue pésimo, la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo. la recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar al sitio, porque nadie nos avisó que había bus que nos recogía, al llegar, nos atendió una chica joven de pelo largo liso que no pudo ser más desagradable y maleducada, nos cobró obligatoriamente cosas que nos queríamos y el trato fue pésimo, la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo. 2 2025-09-27 01:27:48.341849+00 es v5.1 J1.02 {A1.03} V- I3 CR-N {} {"J1.01": "la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo.", "J1.02": "La recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar "} {0.055904124,0.06453739,0.00092940015,-0.025697313,-0.05344344,0.008060005,0.064684816,0.015572767,-0.039860703,0.022304134,0.078866675,-0.012143623,-0.038063172,-0.04217526,-0.016027346,0.008340621,-0.015605658,0.038840584,-0.01055846,0.02218462,0.1266443,0.0060182065,-0.07553121,0.11413982,-0.05433809,0.027901795,-0.0829941,0.061855756,-0.052070495,-0.088194884,-0.01978992,0.01363395,0.020844014,-0.0015885601,-0.024092149,-0.047600538,0.051266663,-0.05500888,0.020740604,0.008038635,-0.095782906,-0.0071909865,-0.05432785,0.020717524,-0.017427301,-0.0035061757,0.04155224,0.08518215,0.033217825,-0.0064498996,-0.030898707,-0.011358004,0.060508236,-0.028581921,-0.010280729,-0.011544631,0.03084304,0.0036748059,0.042700186,0.0044891527,-0.015167495,-0.0034482875,-0.05599979,0.008791776,-0.009193379,-0.023410289,-0.07885989,-0.045213956,0.06124719,0.019531239,0.054306984,-0.09120574,0.031985443,-0.042256765,-0.08397163,0.021269841,0.0012458037,0.01729921,0.018204669,-0.070196256,0.05884696,-0.029667225,-0.02612213,-0.017651908,0.043209862,-0.041066773,-0.07831329,-0.059197012,0.02025656,0.009451722,-0.03985358,0.024747705,-0.029592348,-0.020413307,-0.021420995,0.026614359,-0.008354743,-0.02909843,0.020579278,-0.0071046837,0.06847554,0.08268342,0.022221869,0.054033324,-0.09684472,0.06483894,0.023028636,-0.1014395,-0.023192892,-0.030421654,-0.101197734,-0.0026634666,0.018285519,-0.056020454,-0.019768486,0.0053274967,-0.035994638,-0.04405264,-0.10829734,-0.05792702,-0.02112091,-0.09947207,0.03877771,-0.03057489,0.067523755,-0.13555923,0.060442653,1.3442726e-32,-0.046140134,-0.0048874775,-0.0067041093,0.04624374,0.094453275,0.01471007,-0.054354712,0.017048145,0.012701891,0.012681872,-0.0904328,0.0081676515,-0.025583167,0.012264925,0.10678184,-0.059986867,0.012186788,-0.052214622,-0.042772997,-0.07548997,-0.05254797,-0.032494187,-0.021470701,-0.055511344,0.08572839,0.08821826,0.012842871,-0.047062483,-0.040948413,0.08282799,0.00811917,0.062376976,-0.014662641,-0.0036692936,-0.076444656,-0.041296005,-0.07558532,0.060970943,-0.053674083,-0.011390921,0.03447205,-0.01600588,-0.10140391,0.03922473,-0.024773855,-0.029719777,0.017820133,0.02829513,0.08087528,0.008606143,0.009212381,-0.027204797,-0.056413986,-0.076903045,0.023018181,0.0057375557,-0.006418554,0.046792425,-0.047314752,-0.01788838,0.008013937,0.03525465,0.029324248,-0.028764706,0.022119667,0.0012518583,0.023739327,0.033262234,0.09620219,0.05798829,-0.013230563,-0.020590793,-0.096095115,0.040962633,0.041705634,0.029593509,-0.032028835,-0.026961703,-0.07756349,-0.017908163,-0.043667603,-0.0013632784,0.00032300982,-0.034006134,0.077984296,-0.016217595,0.019731289,0.0760763,-0.00836571,0.05543326,-0.042308938,0.077960044,0.07592019,-0.011247927,0.06211472,-1.593722e-32,-0.03359009,0.0584639,-0.008879209,-0.037716992,-0.05900104,0.034720365,-0.03376634,-0.016169414,0.0014594275,0.008758678,-0.14875926,-0.09759188,0.090585776,0.026043002,0.036798935,0.10956266,-0.04668565,-0.08164735,-0.14839238,-0.043778803,0.051297367,-0.010228245,0.0556666,-0.046878688,-0.0755813,-0.024352202,0.017391829,0.037885144,0.0052200146,0.013796366,0.013781303,0.034739017,0.02554855,0.08263592,-0.033853248,0.013713447,0.049977582,0.0617252,-0.0034339102,-0.017057586,-0.008329751,0.064246945,0.09366874,-0.06237118,0.043033935,-0.052536655,0.0019791583,-0.10830676,0.005668003,-0.04579138,0.104389064,-0.08870374,-0.028820012,0.042131893,0.10546003,0.055142887,0.004382044,-0.08231707,-0.09982707,-0.034267034,0.0286084,-0.020486036,-0.074948065,-0.052213717,0.009158749,-0.10845569,-0.020010116,-0.02542915,0.05221687,0.0031598536,0.060715962,0.010643442,-0.052661363,0.06338918,-0.08405668,0.06388873,0.006444451,0.09338358,-0.047800127,0.04559291,-0.02404812,0.014575598,0.02823478,-0.021334704,-0.021998672,-0.074908726,-0.037256926,-0.04312016,-0.0018845561,0.029943706,0.014273994,0.021007188,0.0014252731,-0.026314504,-0.049384028,-5.584201e-08,-0.014675502,-0.039720688,0.02591467,0.016825654,0.049859747,0.018792668,-0.020642107,-0.021094833,-0.10002645,-0.042448364,0.07065736,-0.015683442,0.015498177,0.11215505,-0.0033242216,0.0043502604,0.041144952,0.064493604,-0.01139649,-0.035757627,0.09614249,-0.040271245,-0.06816185,0.08398135,0.018171987,0.0043016193,-0.02962798,-0.021953847,0.004801531,0.0031937768,-0.023496713,0.05216905,0.027155519,-0.103133805,-0.075559154,-0.017182149,0.029254356,0.013682419,-0.06861611,-0.038982324,0.13091463,0.03276961,-0.03378426,0.0063174926,-0.0017766025,-0.0654776,-0.010227244,-0.02481878,-0.05509917,0.08952673,-0.04270519,-0.04547089,0.07848502,0.06313719,-0.0077004726,-0.0075747133,-0.049461477,0.0034073815,-0.010603818,-0.046169892,0.03837613,0.11668778,0.00016856578,-0.04699207} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:31:14.512848+00 2026-01-25 01:27:51.355982+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 429 google ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE 1 t 432 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Das Auto war sauber und die Abholung und Abgabe hat einwandfrei funktioniert. ABER: ich hätte beinahe sehr viel Geld für einen Schaden zahlen müssen, der schon am Auto dran war bevor ich es abgeholt habe. Ich habe zum Glück vorm losfahren ein langes und detailliertes Video von der Außenseite des Autos gemacht, wo man die Delle drauf erkennt. Andererseits hätten sie mir die Delle in Rechnung gestellt, da keine Schäden auf dem Blatt vermerkt waren. Sie haben den Schaden auch nicht im Nachhinein vermerkt, sodass der nächste Mieter in dieselbe Falle getappt wäre das auto war sauber und die abholung und abgabe hat einwandfrei funktioniert. aber: ich hätte beinahe sehr viel geld für einen schaden zahlen müssen, der schon am auto dran war bevor ich es abgeholt habe. ich habe zum glück vorm losfahren ein langes und detailliertes video von der außenseite des autos gemacht, wo man die delle drauf erkennt. andererseits hätten sie mir die delle in rechnung gestellt, da keine schäden auf dem blatt vermerkt waren. sie haben den schaden auch nicht im nachhinein vermerkt, sodass der nächste mieter in dieselbe falle getappt wäre 2 2025-01-25 01:27:48.341855+00 de v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Das Auto war sauber und die Abholung und Abgabe hat einwandfrei funktioniert.", "J1.02": "ABER: ich hätte beinahe sehr viel Geld für einen Schaden zahlen müssen, der schon am Auto dran war b"} {-0.05190871,-0.00012479919,-0.015118553,0.010179266,0.04503887,0.11765284,0.09494262,0.1180214,-0.050597765,-0.021829586,-0.033511706,-0.08406772,0.05781657,-0.0043542213,-0.070633106,0.037783504,-0.039481115,-0.036709327,-0.039491683,-0.025303602,0.024720097,-0.011608455,0.022145592,0.13878097,-0.016541142,0.024996491,-0.014514164,0.014991209,-0.043868188,-0.023264728,0.03210028,0.029999737,0.0091571305,-0.026247581,0.028899206,-0.08255208,-0.03526477,0.02234381,-0.048745275,-0.009932426,-0.0040032063,-0.038352,-0.059171956,-0.05037273,-0.033546835,-0.050271288,-0.0029549017,-0.04641489,-0.019227263,0.04387577,-0.01095848,0.01246561,0.035952616,-0.020952675,0.02286294,-0.087276995,-0.038890786,0.065391034,0.030938378,0.023727216,0.023804348,-0.008488839,0.040076043,0.012317129,0.024512192,0.016583402,-0.0057841158,-0.08303286,0.009774419,0.0153926555,0.02661882,-0.10922195,0.01889405,-0.088932894,-0.08814457,-0.02422681,-0.0034303772,-0.005782423,-0.073608235,-0.048866034,0.015084618,-0.04597914,0.045986637,0.0029609834,-0.008485864,-0.010725965,0.00028969435,0.025711369,0.00080888916,0.046506576,-0.007998283,0.045137532,-0.10281969,-0.010799703,0.07937583,0.02297846,0.0796422,-0.10516195,0.08865423,0.032268487,0.03248762,0.02824425,-0.05283388,0.041202065,-0.033775337,-0.02900149,-0.0035896068,-0.010104497,-0.04073863,-0.03470476,-0.023869127,-0.0027646373,0.015257161,-0.053875398,-0.025273852,0.022450406,-0.034659725,-0.085866034,-0.03632868,0.0056284587,-0.0055216914,-0.037993405,0.019639174,0.03812267,0.10682195,-0.05033479,0.032745514,1.7118098e-32,-0.01534816,-0.05122262,-0.061774194,-0.0047938987,0.008323835,0.021919554,-0.02150588,0.06907416,0.023461966,-0.063611336,-0.0017674926,0.05516684,-0.019112179,-0.07208117,-0.024767734,-0.03885697,0.041902483,-0.114331156,0.028748555,-0.109994344,-0.096981734,0.037841924,-0.00529988,0.046110496,-0.08221381,0.077591,0.040992904,0.09298781,0.020818563,0.043875586,0.09117883,0.03124763,-0.027906753,0.01121863,-0.041204896,0.04399116,-0.105220824,0.05506062,-0.01954796,0.035966046,0.0154699,0.054932654,0.028720882,-0.03472446,-0.0070270686,-0.03655634,-0.10696338,0.04294697,-0.013704235,0.017732637,-0.02057082,-0.008357067,0.021551918,-0.044599198,-0.018829035,0.12201238,-0.071888536,-0.013730452,-0.020803075,0.007998223,0.010512071,0.028123759,0.0043011205,-0.061243247,-0.016205715,-0.0004034068,-0.008107351,-0.07121804,-0.010371255,-0.016412366,-0.029895892,0.057997566,0.054725807,0.0066174786,0.07298048,0.04137683,0.043205626,0.01271954,-0.11866835,0.020328846,-0.056703765,-0.06723121,0.046941526,-0.040403534,-0.02432978,-0.10791362,0.015081954,-0.027257051,-0.05587097,0.040922914,-0.029861258,-0.107798114,0.025429018,0.03240156,0.013975948,-1.708176e-32,0.07951625,0.040679045,0.031675782,0.021604327,0.012745151,0.05789948,0.07316767,-0.02576979,-0.080795445,0.020008018,0.017274069,0.1182575,0.00037669385,-0.033929065,-0.062330827,0.069860846,0.072188295,-0.04197319,0.013477116,-0.058786783,-0.033014406,0.065178335,0.067825995,-0.030654972,-0.03655488,0.024591839,0.053292893,0.059006903,-0.05788914,0.009532262,0.067381956,0.011919015,-0.0199094,-0.010192197,-0.0557096,-0.013379692,0.051510863,0.04996795,-0.09122455,-0.061498385,0.0046170363,0.043524053,-0.05771643,-0.056329254,0.086604275,0.041444555,-0.08397464,-0.08452312,0.03637255,-0.035584774,0.10147597,-0.02642141,0.0053735687,0.0001916232,0.048665088,0.02754264,0.0142053,-0.034378298,-0.06366158,0.040104415,0.021483824,0.059749894,-0.013943517,-0.036666874,-0.051481344,-0.083159715,-0.12058527,-0.010046472,0.13984865,0.017600805,0.047846496,-0.0069859503,-0.0052774223,0.042508293,-0.07992724,-0.037929557,-0.03560452,0.014822641,-0.007487345,-0.042863544,-0.024113582,0.05977277,0.004969535,0.06685144,-0.10576029,-0.028390335,0.052851915,-0.009551406,0.052593235,-0.013563676,0.022465177,0.07992518,0.004468826,-0.002820158,0.010064971,-6.629563e-08,0.020053234,-0.048090193,0.036720082,0.04763135,0.060089104,-0.101902746,-0.007558268,-0.005654239,-0.028455438,0.026372489,-0.06131238,-0.04424806,0.06309684,0.024231,-0.09548713,0.11332263,0.07241968,0.025981445,-0.033644676,-0.00517327,0.02500084,-0.06944452,-0.06760814,-0.029138483,0.020947278,-0.0007362989,-0.05645287,-0.084594965,-0.016395474,0.027457824,-0.026409416,0.06629934,0.05155544,-0.09345968,-0.062642254,-0.023994226,0.07329408,-0.028658895,-0.08287074,-0.03554502,0.077317014,0.05133481,0.017240064,-0.050510008,-0.0333554,-0.15547873,-0.026538491,-0.04695948,0.003815509,0.10401416,0.053714696,0.007975882,-0.022907399,0.0892451,0.009233068,-0.09543463,0.04604218,-0.022178791,0.008524007,-0.04065838,0.025061822,0.039703164,-0.031559844,-0.01298997} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:08:36.848047+00 2026-01-25 01:27:51.36703+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 436 google ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB 1 t 439 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Auto gemietet für eine Woche, das Auto hatte bereits Vorschäden, von denen ich Fotos gemacht habe, das war bei der Rückgabe kein Thema. Mir wurde angeboten, eine Versicherung von ClickRent für das Auto abzuschließen, dies habe ich aber abgelehnt und die Kaution mit der Kreditkarte hinterlegt weil ich durch Aurumcars bereits eine Versicherung hatte. Die Kaution wurde mir bei der Abgabe des Fahrzeugs wieder freigegeben wurde. Die Abholung am Flughafen mit dem Shuttlebus war zunächst etwas kompliziert beschrieben durch den Vermittler Aurumcars, dafür kann ClickRent ja aber nichts, man muss im Flughafen auf dem 1. Stock bei dem Abflug 1 (fast am Ende des Flughafens) rausgehen Richtung Parkplatz (car park meeting point), dort hat der Shuttlebus auf der Fahrtspur gewartet, wie im Screenshot markiert. Rücktour zum Flughafen mit dem Shuttlebus war auch unproblematisch. auto gemietet für eine woche, das auto hatte bereits vorschäden, von denen ich fotos gemacht habe, das war bei der rückgabe kein thema. mir wurde angeboten, eine versicherung von clickrent für das auto abzuschließen, dies habe ich aber abgelehnt und die kaution mit der kreditkarte hinterlegt weil ich durch aurumcars bereits eine versicherung hatte. die kaution wurde mir bei der abgabe des fahrzeugs wieder freigegeben wurde. die abholung am flughafen mit dem shuttlebus war zunächst etwas kompliziert beschrieben durch den vermittler aurumcars, dafür kann clickrent ja aber nichts, man muss im flughafen auf dem 1. stock bei dem abflug 1 (fast am ende des flughafens) rausgehen richtung parkplatz (car park meeting point), dort hat der shuttlebus auf der fahrtspur gewartet, wie im screenshot markiert. rücktour zum flughafen mit dem shuttlebus war auch unproblematisch. 5 2025-06-29 01:27:48.341917+00 de v5.1 J1.02 {O1.02} V- I2 CR-N {} {"J1.02": "Auto gemietet für eine Woche, das Auto hatte bereits Vorschäden, von denen ich Fotos gemacht habe, d", "J1.03": "Die Abholung am Flughafen mit dem Shuttlebus war zunächst etwas kompliziert beschrieben durch den Ve"} {-0.029903647,-0.015884435,-0.07374245,-0.050848693,-0.020745035,0.026100714,0.08672155,0.100417525,-0.02272439,0.003784427,-0.0024115713,-0.03878894,0.027417216,-0.023758065,-0.024524316,-0.022905935,0.037746947,-0.011210596,-0.05821455,0.040578622,0.0053367126,-0.10358027,0.017921386,0.10429501,-0.06611861,-0.032036964,-0.041729413,-0.01033113,-0.013392123,-0.062111955,-0.016929995,-0.050435606,0.037472248,-0.0035242417,0.0392865,-0.061090432,-0.0124395145,-0.028540995,0.039476797,-0.005143744,-0.04208149,0.01340155,0.010416502,-0.03759379,0.023392012,0.029371377,0.021397447,0.05910256,0.011305395,-0.0031884708,8.425131e-05,0.03141225,0.0364526,-0.0796349,0.013853995,-0.051940918,-0.07498838,0.010673584,0.045914613,0.08821018,-0.028244339,-0.08003275,0.033328116,0.0445623,-0.07544497,0.017587122,-0.07454505,-0.08869494,0.0923079,0.01978006,-0.006246277,-0.04817095,-0.04553672,-0.08383368,0.0023848081,0.04236544,-0.025964757,0.087502904,-0.032217346,-0.15176544,0.03054347,-0.03240705,0.11238278,-0.011273774,0.016931599,-0.0314998,0.044230096,0.05516268,-0.03279019,0.011576268,0.028511968,0.054967273,-0.05562664,-0.025911003,-0.012073319,0.0051460504,0.052098226,-0.06168974,0.04215328,-0.008407019,0.03803082,-0.04049453,0.034199346,0.052150108,0.014011182,-0.033110917,-0.069849,-0.025449345,0.01305139,0.016957425,-0.061555058,0.002933795,0.020422725,-0.04185296,-0.103472926,0.017760213,-0.078338005,-0.12486683,0.06983283,-0.02485813,-0.033701733,-0.06731828,0.077218,0.007083997,0.12931342,0.016973136,0.07490004,1.4587459e-32,-0.11141652,-0.030945564,-0.057728536,-0.052544467,-0.025220487,-0.03705477,0.00011124861,0.054162715,0.006524204,0.01032485,-0.021914303,0.015960114,-0.035792753,-0.013131403,-0.01274804,-0.03262177,0.017338093,-0.095081985,-0.028875075,-0.07817056,0.025662985,0.010531969,-0.005878061,0.06146237,0.017189147,0.101324,-0.010124794,0.09183038,0.010208836,0.07185348,0.020425132,-0.021438323,-0.08931012,0.035415456,-0.04010685,-0.102347896,-0.091225214,0.017093666,-0.05528316,-0.029932108,0.028226819,-0.023504697,-0.09029918,-0.10075033,0.04171931,-0.013173095,-0.02133858,0.06868288,0.04375477,0.05037721,-0.035696596,-0.006701337,0.06778999,-0.042456675,-0.020577403,0.058745503,-0.039684605,-0.031065626,-0.011183732,0.029890789,-0.077549,0.05292239,0.016006764,-0.06582564,-0.023038663,0.03389652,0.06063736,0.003016127,0.022650765,0.04934377,0.0845658,-0.03888019,0.047798235,0.010865061,0.07624417,0.06062133,0.03276985,0.008399827,-0.1530603,0.06856635,-0.017483087,-0.021866621,0.07999446,-0.044016298,0.0015918949,-0.04775357,0.04177861,0.0027047894,-0.009417228,0.055576224,-0.0012521668,0.02318587,-0.039310634,0.114941545,0.037871033,-1.485857e-32,0.08344836,0.053800467,0.022348128,0.018102769,-0.021570763,0.090861015,-0.013957075,-0.050375666,0.014099901,-0.039922744,-0.06361423,0.05570839,-0.017871132,0.018890379,-0.005512755,-0.008248064,0.016105056,-0.029224385,-0.05583792,0.04916312,-0.03148745,-0.018435419,-0.043133777,0.015978692,0.02538068,0.01719403,0.024667941,0.077628724,0.00082227594,0.0011404987,0.0022188565,0.111853115,0.020645259,0.04023505,-0.06264192,-0.08833535,0.032533657,0.057956696,-0.07472541,-0.020931447,0.04886362,0.037184387,0.013597805,-0.06557191,0.06883457,0.00021380914,-0.031281777,-0.01938757,-0.003352465,0.008105649,-0.051068142,-0.05848575,0.027256532,0.02931041,0.040844783,0.061961036,0.07952587,0.008220885,-0.049934953,0.03261238,0.03695065,-0.03517971,0.03250682,-0.038995534,-0.005012929,-0.114361845,-0.036681697,-0.053044003,0.0047424426,0.07520259,0.08547184,0.05672138,0.051284153,0.027369881,-0.016167397,0.0821326,0.054047585,0.04191839,0.0060478398,-0.038285084,0.022768956,0.07912921,0.021075659,0.009041819,-0.15645418,0.033010636,-0.050512742,-0.04588624,0.0034987316,-0.0144413,0.034103975,0.098408185,0.07659849,0.054152895,-0.06895529,-6.0056976e-08,0.042609807,0.02626808,-0.018854156,-0.024071705,0.04071674,-0.03779574,-0.038661823,0.044006564,-0.12348294,0.011812446,0.011970528,0.022863328,0.0045111985,0.06536772,-0.14793521,0.047253504,-0.013556655,-0.024509877,-0.020108039,0.0076941843,0.008862509,-0.06801329,0.012835181,-0.060557082,0.02117429,-0.041228354,-0.038937513,-0.049236007,0.03910619,-0.038596652,-0.06873512,0.042847738,0.04675601,-0.01708805,-0.06593249,-0.060046323,0.033408042,0.04705653,-0.070338406,0.008747363,0.1149222,-0.027521225,-0.020271432,-0.11988013,-0.010027838,0.00024090486,-0.01729894,-0.02368597,-0.017094417,0.055423122,-0.04694079,-0.03687666,-0.06340589,0.044933658,0.0022641055,-0.0153209,-0.027965045,-0.058446616,0.056867763,-0.023896342,-0.11655939,-0.018323112,-0.021146134,0.012744791} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:00.376941+00 2026-01-25 01:27:51.388777+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 438 google ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE 1 t 441 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Esperienza negativa.\nPremetto che le indicazioni Google per raggiungerlo sono approssimative. Si trovano in mezzo al nulla. In più quando ti danno l'auto non ti mostrano i danni e con la scusa del paperless non ti danno neanche un contratto con dettagli auto. Poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. Sciocca io a non controllare ma chissà come mai hanno quasi tutte auto bianche... Preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilità a risolvere senza derubare e gentilezza da parte di altre compagnie.\nSono proprio una trappola per turisti come da location e struttura prefabbricata in mezzo al nulla\nDa evitare come la peste. esperienza negativa. premetto che le indicazioni google per raggiungerlo sono approssimative. si trovano in mezzo al nulla. in più quando ti danno l'auto non ti mostrano i danni e con la scusa del paperless non ti danno neanche un contratto con dettagli auto. poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. sciocca io a non controllare ma chissà come mai hanno quasi tutte auto bianche... preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilità a risolvere senza derubare e gentilezza da parte di altre compagnie. sono proprio una trappola per turisti come da location e struttura prefabbricata in mezzo al nulla da evitare come la peste. 1 2025-01-25 01:27:48.341941+00 it v5.1 J1.02 {E1.02,A1.02} V- I2 CR-N {} {"A1.03": "Preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilit", "J1.02": "Esperienza negativa. Premetto che le indicazioni Google per raggiungerlo sono approssimative. Si tro", "J1.03": "Poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. Sciocca io a"} {-0.012298912,0.062492006,-0.03234323,0.0077774003,-0.09680226,-0.010846418,0.050441127,0.12073816,-0.03584814,0.057994884,0.13756882,-0.054953128,-0.0090107,-0.005414534,-0.14523226,0.023531089,0.09481215,0.03321921,-0.012689519,0.061690442,-0.020251125,-0.1408585,0.0152759,0.054127272,-0.011659082,0.001089623,-0.0936403,0.039057612,0.010292761,-0.05997225,-0.0813626,0.051260345,0.059144184,-0.02999496,0.07482451,-0.016184002,0.0033493026,0.020338748,-0.0128443455,0.059214074,0.002768655,-0.0038898678,-0.09492526,-0.019508393,-0.011283892,0.01902266,-0.0015781493,0.10339927,-0.025079453,-0.092548594,-0.08943206,0.029410658,0.037146855,0.02074493,-0.11725272,-0.066864476,0.08268466,-0.019465916,-0.014469902,0.009192772,0.011839746,-0.005569954,-0.03464961,0.01153105,0.012390323,0.073047936,-0.08455848,-0.07890087,0.026311131,0.060236737,0.09788084,-0.1029857,0.016917981,-0.022165695,-0.012575194,0.02008759,0.005306692,0.005780533,-0.016790817,-0.10258884,0.07668078,0.051003367,-0.04731727,-0.059636537,0.025613915,-0.026851937,-0.051186085,0.03945354,0.06747135,0.01961092,-0.03781132,0.06328053,-0.1417016,-0.09074592,0.027264843,-0.020690449,-0.026965871,0.0044408203,0.04490362,0.0013660938,0.08910355,-0.0015782968,-0.005103227,0.04447763,-0.020263352,-0.0609687,0.041658845,-0.061956756,-0.017423293,0.05002307,-0.12212564,-0.05453747,-0.053156007,-0.03914412,-0.0398456,0.0035423103,0.036824662,-0.036057197,-0.0057932585,-0.004211562,0.025403852,-0.04527907,-0.024001338,-0.031658884,0.074918486,0.013250834,-0.042381473,1.4794884e-32,-0.010484231,0.008996262,-0.035164654,-0.048109658,-0.058186058,0.05433968,-0.0734148,-0.012699098,-0.0064839423,-0.0109609645,-0.04876646,-0.0363371,-0.008689258,0.026939832,0.014433693,0.03216608,0.030228473,-0.07631266,0.062282514,-0.056570817,-0.092448294,0.0039885053,-0.04438617,-0.090684004,-0.031768557,0.06803661,-0.11739488,-0.010678733,-0.07804485,0.03456087,0.043754872,0.03736612,0.005408516,-0.024867408,0.0031623254,-0.042201832,-0.030462377,-0.03966738,0.0025613802,0.0010751176,-0.07974124,0.045714997,0.025155103,-0.06266033,0.09777889,-0.01611821,0.034015585,0.007243101,0.07430813,0.014809703,0.09012592,-0.036870074,-0.012243846,-0.028422505,0.017738186,0.05971573,-0.059113152,0.02182847,-0.0032954975,-0.022441272,-0.011443378,0.04680891,-0.00019961903,-0.03692499,0.03702314,-0.013236849,0.032677483,0.015871461,0.08697747,-0.030033348,-0.015138124,-0.10108349,-0.05574906,0.08566332,-0.029604685,0.055060945,0.050658427,-0.022791656,-0.016191667,0.025781179,0.014012098,-0.030354958,-0.015974697,-0.055270784,0.059169468,0.038508825,0.061189707,-0.0087203095,0.03126839,0.03644739,0.08287654,0.027718263,-0.027425256,0.04394763,0.04876754,-1.4453505e-32,0.036158297,0.033684112,-0.01228342,-0.01263906,-0.077577025,-0.020509737,-0.067957826,-0.059909653,0.06930413,0.017348964,-0.035645727,-0.07523287,0.09213584,-0.013877274,-0.009877729,0.04452809,0.019155122,-0.0104596345,-0.01500832,-0.023835883,-0.035443597,0.04083965,-0.04647635,-0.0067231124,-0.052455243,-0.017035423,0.01870404,0.04683072,-0.05216418,0.00996137,0.009632248,0.042060785,-0.015642596,0.0036051495,0.07387724,-0.009589412,0.013741859,0.014663361,0.020667277,-0.025850117,-0.032319106,0.05290916,0.1085618,-0.060892284,-0.010130258,0.026321441,-0.007468665,-0.058877632,-0.03163946,0.0027241139,0.047598388,-0.0050964626,-0.009498341,0.019176314,0.011399365,0.041207723,-0.0057965885,-0.04690077,-0.08534398,0.018343493,0.07692128,0.029479332,-0.06717211,-0.037311133,0.04378452,0.018669225,-0.056668,0.06467643,-0.01321655,0.047485325,-0.014385474,-0.018492224,-0.04663249,-0.062383693,-0.053779066,0.04599238,-0.044185665,0.09709574,0.03029081,-0.026329713,-0.05912334,-0.010304304,-0.0038800838,-0.0074293995,-0.10163665,-0.019344622,-0.1600308,-0.021100406,0.026160331,0.017628506,0.0064595817,0.05375419,0.026780698,-0.03600432,-0.011550514,-5.782735e-08,0.096369915,-0.050685637,0.1443546,0.032798897,0.07892158,-0.04100502,-0.011165551,-0.0034553309,-0.02705124,0.10874224,-0.048179936,0.007327756,-0.01855581,-0.047571387,-0.08961158,0.029240742,0.070516214,-0.002661442,-0.028593779,-0.036135815,0.10371534,-0.008051843,-0.09062033,-0.063781954,-0.0064003123,-0.059966408,0.04331162,-0.036285292,-0.016734334,-0.0064159455,0.048285097,0.024535809,0.024314865,-0.055060532,-0.0009675025,0.042238954,0.015746713,-0.0065577044,-0.08694539,-0.10900923,0.09999835,0.024141803,0.009438655,-0.047798887,-0.030307304,-0.016244117,-0.0036986219,-0.0050546164,0.0015851327,0.06501042,-0.01697239,0.01528652,0.052247144,0.09004725,0.016942274,-0.047344506,0.11957832,0.06418076,0.015307045,0.0066965055,0.012480371,0.06493113,-0.005077515,0.00259298} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:08:27.931927+00 2026-01-25 01:27:51.397297+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 442 google ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB 1 t 445 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Wir haben bei Hertz gemietet, völlig unkompliziert, Tankuhr wird bei der Rückgabe kontrolliert. Vollkasko. Navi ist in mehrere Sprachen einstellbar, das Schwierigste ist, bei der Rückgabe, die Einfahrt zum Parkhaus zu finden, sie befindet sich links der Taxihaltestelle bevor man die Überdachung erreicht wir haben bei hertz gemietet, völlig unkompliziert, tankuhr wird bei der rückgabe kontrolliert. vollkasko. navi ist in mehrere sprachen einstellbar, das schwierigste ist, bei der rückgabe, die einfahrt zum parkhaus zu finden, sie befindet sich links der taxihaltestelle bevor man die überdachung erreicht 5 2025-06-29 01:27:48.341968+00 de v5.1 J1.01 {O1.01} V+ I2 CR-N {} {"J1.01": "Wir haben bei Hertz gemietet, völlig unkompliziert, Tankuhr wird bei der Rückgabe kontrolliert. Vol", "J1.02": "Navi ist in mehrere Sprachen einstellbar, das Schwierigste ist, bei der Rückgabe, die Einfahrt zum P"} {-0.02437457,0.053342897,-0.08846046,0.06658283,-0.027894594,0.02039064,0.047271837,0.062326122,-0.051775917,-0.03512216,-0.04531793,0.012381475,-0.022027748,-0.0030310487,-0.06683757,-0.055437185,0.00900269,0.08603917,0.001992461,-0.017413363,0.014057645,-0.086757295,0.031247582,0.0149823865,0.0038310606,0.027485909,-0.02537444,0.048191864,0.07077341,-0.11530821,0.054258496,3.439865e-05,-0.05450189,-0.04840292,0.021472687,0.021860925,-0.006575424,-0.051248312,-0.0013996103,0.077975295,0.004839146,0.021615002,-0.06975516,0.0136764655,0.010417779,-0.0010371496,0.0154003035,-0.015778309,-0.014532312,-0.07583968,-0.037907314,-0.03173136,0.06115046,-0.02458603,-0.029400837,-0.09006253,-0.029163336,0.023487143,0.09470624,-0.044916667,0.099725895,-0.03668123,-0.01866919,0.0050318753,-0.117496826,-0.046197627,0.008449607,0.01638285,0.02119853,-0.02487792,0.04564827,-0.10218933,-0.039181177,0.0026493152,-0.06391896,0.03032222,-0.032165006,0.12574774,-0.037662037,-0.08809094,-0.020953987,-0.05161154,0.045003712,0.053893864,-0.020625675,0.0060573453,0.018417647,-0.038486738,0.041308627,-0.03005137,0.033066873,0.09193851,-0.04459828,-0.040375177,-0.040778432,-0.063054815,-0.046674114,-0.055463247,0.0819652,0.0059892903,0.046962645,-0.0111142965,0.0101213055,0.10263862,0.038534768,0.05264252,-0.016871562,-0.0022573774,-0.0020565793,0.039436508,-0.0031770272,-0.028911924,0.0076134535,-0.041574534,0.0032384049,0.0056417966,-0.0154620055,-0.051314298,-0.022252232,-0.0011718485,0.02194365,-0.019030211,0.05833277,-0.059019674,0.04193422,-0.042985976,0.012609868,1.7634522e-32,-0.08671501,-0.061832815,-0.03652838,-0.031985074,0.007196996,0.02047354,-0.04207558,0.019502604,0.004866458,0.016217785,-0.020565849,0.05023383,-0.02828758,-0.020846838,0.06578708,0.026389673,0.016374042,-0.036081504,-0.08014771,-0.05612369,-0.06171492,-0.06492915,-0.004907953,0.008717578,0.03326537,0.01712914,0.06582932,-0.07358925,-0.07102083,0.005627519,0.038581364,0.0006445653,0.0048764814,0.12829304,-0.07999349,-0.028019097,0.019061463,0.05837513,-0.0041047237,-0.070863456,0.023741215,-0.080028005,0.002561707,0.004723267,0.041472398,0.013199866,0.041097187,-0.006104207,0.08665958,0.0059761256,-0.07455877,-0.020189494,-0.059407488,-0.0032246627,-0.0070750485,0.10345486,-0.04837183,0.05194796,0.049235396,0.014658136,-0.042022265,0.07558964,-0.045244277,-0.035551064,0.0945329,-0.066385604,0.02575698,-0.025786793,0.017504686,-0.019868467,-0.02195164,-0.023193235,0.083377674,0.018273715,-0.013650064,-0.00012716175,-0.112398885,0.05958417,-0.068835594,-0.0074252565,-0.025230678,-0.053973805,0.030614791,-0.041343838,0.07385045,-0.022828057,0.035962015,-0.025339952,0.013267368,0.10598525,-0.030641736,0.007953744,-0.047083788,-0.019023359,0.02605345,-1.6622655e-32,0.09661598,0.041261546,0.033910457,0.051007416,0.026629813,0.08175081,0.011954918,-0.065040864,-0.05478288,0.026545342,-0.06844487,0.043338828,0.03993419,0.02246392,0.004624383,-0.0012634817,0.080164485,-0.026840335,-0.06486044,-0.034123775,-0.053761322,-0.044504765,-0.037349757,0.05561338,-0.0764296,-0.03618909,0.10941398,-0.020636572,-0.091839954,0.046578042,0.005887714,-0.0107471105,-0.045126673,-0.041558262,0.045174003,-0.0052297176,0.04912702,0.08517931,-0.01499415,-0.032167803,-0.001173944,0.0020118405,-0.032362957,-0.11541743,0.104553156,-0.042766556,-0.06959115,0.008440212,-0.08569328,-0.05412842,0.07054296,0.0393714,0.023115423,0.063349694,0.045416046,0.035714447,-0.038724564,0.003505283,0.0019093705,0.037090648,0.06973311,0.063581124,0.028735394,0.035497993,-0.016825186,-0.09326826,-0.049924746,-0.050545733,0.023524065,0.06040971,-0.017450433,0.009350151,0.12073093,-0.021297215,-0.049924593,0.03853645,0.03481713,0.053252574,0.029059254,-0.067680724,0.08594393,0.04443346,0.038565565,-0.008197302,-0.012141712,-0.02846063,-0.012626088,0.014940329,0.06684578,-0.08601652,0.10081919,-0.055643454,-0.06565423,-0.006384001,0.04129699,-6.22102e-08,0.03327773,0.019629644,-0.08222352,-0.015802994,0.09420343,-0.064663686,-0.012797232,0.035299405,-0.13430998,0.11404395,0.087062225,-0.059777375,-0.05209712,0.07274429,-0.01869233,0.0637362,0.06222014,0.06295897,0.022437576,0.012235306,0.049875915,-0.09559355,-0.009799562,-0.010337134,0.030980151,-0.013336699,-0.04141058,-0.08017303,0.10936986,-0.040796757,0.09701467,0.10401011,-0.002614665,0.0075123915,0.06455602,-0.03113299,-0.037062936,0.067926355,0.029658163,0.02393278,0.011621551,-0.04920604,0.053146757,-0.022195203,-0.13392012,0.02539218,-0.0505586,-0.066362515,-0.044351283,-0.0041223904,-0.03138695,-0.049570087,-0.0059287306,-0.016939528,-0.04182468,0.029391918,0.0010757181,-0.025954455,-0.10893848,0.00028501666,-0.059976667,0.052076314,-0.03848001,0.04246458} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:40:50.114189+00 2026-01-25 01:27:51.407977+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 446 google Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB 1 t 449 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. Con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total . Recomendables de 5 ***** . servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total . recomendables de 5 ***** . 5 2025-10-27 01:27:48.341978+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício a"} {-0.027913434,0.03181175,-0.004474051,-0.09225278,-0.0825441,-0.016701706,0.096765645,0.04835378,0.0388628,-0.009631246,0.022338763,0.05709658,-0.025672745,0.05903761,0.06358057,-0.038242668,0.049231317,-0.012184015,-0.034386158,-0.0115199005,0.084842786,-0.05308334,-0.09014622,0.02907488,-0.07271683,-0.057183035,-0.031857073,-0.040520735,-0.075985625,-0.043115303,-0.0017383567,0.069691606,0.06770302,-0.0041715265,-0.08633783,0.072976425,0.0078020166,-0.043421693,-0.02137049,0.10561629,-0.09693886,-0.06898302,-0.050269827,-0.024460714,0.032436207,-0.084679075,-0.017069394,0.02218074,0.025840959,0.018647546,-0.107696444,-0.020682491,-0.052359395,0.0023050136,0.012939423,-0.073777676,-0.019993614,-0.020074531,-0.0065065054,0.0146643715,-0.020765264,0.028345527,-0.018435815,0.037184134,0.06656248,0.046308577,-0.079829864,-0.06531621,-0.08091022,0.052550826,0.013728425,-0.086919785,0.029652128,0.038218975,-0.047983937,-0.013430896,-0.0064735096,-0.010904225,-0.00043279835,-0.068712965,-0.016356394,0.05740074,-0.027221736,0.052755136,-0.028503742,0.0053449534,0.016164899,-0.003930567,0.057692878,-0.02672469,0.03508014,0.05567136,-0.101551004,-0.035420015,-0.08292562,-0.022750085,-0.04626346,-0.11396476,-0.03856214,0.026075616,0.023620347,0.009485779,0.10593585,0.032595176,-0.034086958,0.012569308,0.0077718594,0.023535348,-0.038548954,0.07817856,-0.102166444,-0.029616075,-0.115688615,-0.05838326,-0.031399444,0.04121556,-0.059431937,0.00948133,0.0357182,-0.025600774,0.027248176,0.060183473,0.049379412,-0.049337525,-0.05934839,-0.015527223,0.09095436,6.575813e-33,-0.12990649,-0.009932611,0.04542444,0.13447534,-0.00039199044,-0.03580296,0.0037659598,0.005999441,0.014869065,0.006632543,0.0032320328,0.14661601,0.07388518,0.0059157824,0.107076794,-0.0053633647,0.0019313694,0.07390207,0.043803144,-0.015866885,-0.0039995606,-0.010018239,0.013556161,-0.0081353625,0.04893951,0.021100668,0.028236806,0.042070772,0.0012395094,0.022589268,0.07980473,-0.027098948,0.03053278,-0.049038466,-0.024687944,0.029057734,-0.046853658,-0.011630349,0.012595175,-0.02018068,-0.05716069,0.0012636401,0.025153134,0.0807005,-0.042828158,0.07021984,0.026138047,0.005065133,0.0256969,0.0027810696,-0.056170225,-0.031128509,-0.009545212,0.0516463,-0.018769799,0.063107826,0.06074866,0.04854379,-0.05703572,-0.005578378,0.0052234866,-0.15227039,0.03704879,-0.048704177,-0.012464658,-0.05694791,0.02415954,0.0036939958,0.14237797,0.0061561954,-0.0846428,0.04626577,0.116840385,0.04897993,-0.04641392,0.009639605,0.035598416,-0.041063517,-0.019199155,0.048298072,-0.060153127,0.031258527,0.0144958375,0.018817153,0.08567501,0.09603341,0.052198753,0.020705052,-0.07929354,0.083664834,0.0050587757,0.05774863,-0.0066950037,0.028741244,0.02395816,-9.621824e-33,-0.018609352,-0.0006352372,3.604292e-05,0.079262,0.02540191,0.031294048,0.034892924,-0.06494183,-0.07977349,0.07781637,-0.10812291,-0.05940398,0.038232204,-0.00088777585,-0.09284711,0.09018335,-0.07519676,-0.076662965,0.0010715759,-0.034918215,0.02642148,0.08314189,0.037869066,-0.017198676,0.03035195,-0.020489346,-0.055471588,-0.036063816,-0.0666727,-0.05926833,0.0001353146,-0.06262004,-0.0096752355,-0.0025411104,-0.012016879,0.0067505226,0.067093715,0.061980277,0.007583794,0.118549764,0.047392655,-0.021594806,0.002673724,-0.0152644375,-0.03666265,-0.09861196,-0.034979884,-0.092969574,0.013670424,-0.0031005447,-0.0037772816,-0.055529773,-0.067041256,-0.044594605,-0.039203633,0.018061718,0.005318893,-0.07179332,-0.03489881,0.012458487,0.03793924,-0.047720022,0.016230686,0.07987854,0.025690185,-0.03964658,0.009324434,0.010570007,-0.084872134,-0.010949958,-0.035905432,-0.0116554275,-0.0066082175,0.0051331623,-0.057383493,-0.041498825,0.040740453,-0.04604342,0.015774176,0.02778817,-0.060453113,-0.031050362,-0.016970681,0.0005090533,-0.101035036,-0.072346024,0.10981826,-0.00025849708,0.0043688174,0.033826884,-0.057237845,0.0450058,-0.04194455,-0.036600653,-0.048855957,-4.607321e-08,-0.044901762,-0.04997,0.018392447,0.039406613,-0.0064800056,-0.04563917,-0.060892172,0.06174223,0.06327168,0.047152933,0.025847584,-0.062318355,-0.0709976,0.06979551,-0.006445089,-0.0071091657,0.05520347,0.00530065,-0.042593878,-0.051519893,0.04687299,0.012242477,-0.018255768,-0.046901684,0.03962723,-0.02402,-0.041234933,0.068004504,-0.05271973,0.0009909391,-0.04639767,0.00026216634,-0.0018674764,-0.07143696,-0.028598743,0.05469755,-0.08600702,-0.02226618,-0.019722652,0.091008216,0.011177193,-0.04885653,-0.025672825,0.04572601,0.042102028,0.0019805972,-0.08858862,0.039220892,-0.020224877,-0.029684115,-0.04630863,-0.022079583,0.060196206,-0.030880267,0.005286628,0.017699944,0.027897721,0.015672266,0.023908542,0.08693555,-0.040492214,0.054627724,0.015468518,-0.0998422} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:47.301463+00 2026-01-25 01:27:51.420631+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 449 google ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE 1 t 452 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te lleva y te trae. Nosotros no lo vimos y fuimos andando y tuvimos que pagar un suplemento por dejar el coche antes de las 8.\nEso si el coche estaba nuevo y fue un gusto conducirlo alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te lleva y te trae. nosotros no lo vimos y fuimos andando y tuvimos que pagar un suplemento por dejar el coche antes de las 8. eso si el coche estaba nuevo y fue un gusto conducirlo 3 2025-06-29 01:27:48.341984+00 es v5.1 J1.02 {J1.03} V- I2 CR-N {} {"J1.02": "Alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te l", "O1.01": "Eso si el coche estaba nuevo y fue un gusto conducirlo."} {0.052070726,0.066416614,0.007679551,-0.062254038,-0.025063029,-0.042528655,0.062065203,0.017690623,-0.043151278,-0.017880429,0.06292514,-0.043715317,-0.113396,-0.047688127,0.054291893,0.027372118,0.04248384,-0.046121236,-0.042278208,-0.052215323,0.081866995,-0.028473778,-0.09189691,0.119116254,-0.10608075,0.020099783,-0.04111287,0.00073958834,-0.027952682,-0.06336875,-0.070894204,0.035203572,-0.0005464878,0.024603307,-0.053357244,0.018732805,0.0861174,-0.09921984,0.0061933743,0.07385972,-0.12213262,0.036605973,-0.03384076,0.01780857,-0.022693016,-0.0051640407,0.03236986,0.0036925592,0.09104477,-0.019608991,-0.053476818,-0.003101585,-0.04076652,-0.002307537,-0.009022138,0.05001356,-0.0083059035,-0.06918226,0.032307774,0.032134913,-0.0027339119,0.032414336,-0.029427018,0.05899073,0.06371119,-0.107622795,-0.00946131,-0.00843589,0.016945306,0.058624614,0.041304138,-0.051252425,-0.0137013,-0.0077234,-0.0647427,0.06406114,0.012530733,-0.03953682,0.012136476,-0.03995398,0.06078417,-0.027907008,0.014622223,-0.025901394,-0.017659133,-0.06578434,-0.07805539,0.028475216,0.031380486,-0.0081667155,-0.057714906,0.069520235,-0.011475144,-0.0049995505,-0.0034542088,0.011016558,0.054705847,0.0090777045,-0.02004724,-0.018111471,0.054315925,0.05613469,0.013364648,0.102525085,-0.028713284,0.047744475,0.109304,-0.018794715,0.053695183,0.027625514,-0.13266888,0.02168375,0.05487765,-0.10793745,-0.07313386,0.08062984,-0.048541967,-0.023110306,-0.050214313,-0.033658434,0.037536986,-0.03164234,-0.0033251578,-0.050386813,-0.03596341,-0.032949653,0.08460357,1.0145342e-32,-0.015245,-0.002983779,0.060427003,0.042113543,-0.0025316388,-0.05025565,-0.029868284,-0.051708374,0.011225765,-0.018134652,-0.058641214,-0.013926934,-0.038427114,-0.0020213379,0.050855443,-0.082686216,0.024715934,-0.03364855,0.0051093213,-0.010071457,-0.04803917,-0.10868731,-0.054520477,-0.007968951,-0.005660433,0.019118762,-0.024566106,-0.035464082,-0.04880224,0.050292853,-0.0067886254,0.08355456,-0.060324814,-0.007379804,-0.080696106,-0.075122975,0.04190512,0.04833356,0.023484258,-0.065591015,0.043181818,-0.04381558,-0.028044084,0.031344775,4.6891993e-05,-0.033413894,-0.04091528,0.019521484,0.053706765,0.030853892,-0.09206672,0.02159436,-0.039171875,-0.03303122,-0.0016823355,0.027804153,0.05151321,-0.01585248,-0.07111952,-0.010983462,-0.011242561,0.038786747,0.047585096,-0.06960381,0.017304707,0.03556177,0.02117706,0.04989171,0.10005268,0.0682238,-0.04390604,0.010719581,-0.05161776,0.042570695,0.050178822,0.003867951,0.00873763,-0.018790385,-0.060329158,0.0539932,0.022614963,-0.035948783,0.005412684,-0.018771814,0.07631818,-0.0019259611,0.071433075,0.032809075,0.0031420148,0.065429226,-0.08852354,0.07016158,0.13049139,-0.013894645,0.013153623,-1.2398153e-32,0.027876899,0.030993605,-0.033103928,-0.014744388,-0.049477007,0.06750034,0.04513743,-0.04229668,-0.02972702,0.011546823,-0.12929136,-0.062292274,0.11681123,-0.06512569,0.029860975,0.06990879,0.013746385,-0.06874137,-0.026941895,-0.012099427,0.09400256,-0.01077396,0.025673315,0.006691334,-0.02205307,-0.04961344,-0.030296661,-0.021169119,-0.06467824,0.029164314,0.075078405,-0.00486583,0.10665583,0.09615021,-0.03052492,0.013192666,0.030736687,0.03466004,0.0063686143,0.013925427,-0.009334029,-0.012067588,0.066140816,-0.021187056,-0.0024942975,0.037750833,-0.026794435,-0.13716371,-0.06161427,0.020129414,0.09729346,-0.080937535,-0.12888288,-0.01671747,0.11527206,0.048062257,-0.03845716,-0.09529423,-0.05623592,-0.07331572,0.061524257,0.016971154,-0.08083418,-0.07220753,0.039611086,-0.009298503,-0.038492687,-0.014743553,0.047863785,0.020015923,0.009032288,0.025966639,-0.029223569,0.03785522,-0.012329921,-0.022281313,0.018154765,0.08913405,-0.05321243,0.019515201,-0.091934785,0.05661408,0.07279998,-0.07761175,-0.0440598,-0.017818442,-0.008211298,-0.018076945,0.017001389,0.040114317,0.016989086,0.022187503,-0.03489015,-0.06962219,-0.051663812,-4.6977444e-08,0.01885172,-0.0354033,0.06302997,0.025246844,0.0023231914,0.015637938,0.0016236402,-0.0050721522,0.00949542,0.029207263,0.07486081,-0.0022784013,0.06359573,0.08318501,-0.013570462,-0.03669038,0.022862364,0.035748046,0.0062707644,-0.108071245,0.026978739,-0.008499235,0.0008765371,0.05110811,0.027853161,0.0735282,-0.061096918,-0.0005955461,0.021372054,0.011715419,-0.04384227,0.0023474167,-0.053120278,-0.086349554,-0.030261245,-0.03635389,-0.0041700904,0.04785011,-0.105452396,-0.01376743,0.021021197,0.0023620431,-0.106882244,0.009727781,-0.0055895336,-0.08580159,-0.019262625,0.019637253,-0.044671457,0.054992653,-0.022795158,-0.07236686,0.10421071,0.0485192,0.07022023,-0.062413797,-0.04835193,-0.017795919,-0.026912501,-0.032759354,0.024552956,0.075895,-0.06708156,-0.07505034} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:40:36.337525+00 2026-01-25 01:27:51.432648+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 452 google ChZDSUhNMG9nS0VJQ0FnTUNZb2ViVGFnEAE 1 t 455 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown MUCHO CUIDADO! Nos sentimos estafados! Al devolver un coche nos reclaman que hay un daño nuevo en los bajos delanteros del vehículo. El cual por supuesto no fue durante nuestro alquiler (es un desperfecto por rozadura que te darías cuenta al momento). No había ni rastro de arenilla o restos en el arañazo que según ellos había sido durante nuestro alquiler y además en el vídeo que hicimos al alquilarlo se ve algo de rugosidad en la zona pero dicen que no se ve claro. Resumen: UNOS ESTAFADORES! mucho cuidado! nos sentimos estafados! al devolver un coche nos reclaman que hay un daño nuevo en los bajos delanteros del vehículo. el cual por supuesto no fue durante nuestro alquiler (es un desperfecto por rozadura que te darías cuenta al momento). no había ni rastro de arenilla o restos en el arañazo que según ellos había sido durante nuestro alquiler y además en el vídeo que hicimos al alquilarlo se ve algo de rugosidad en la zona pero dicen que no se ve claro. resumen: unos estafadores! 1 2025-05-30 01:27:48.34199+00 es v5.1 J1.02 {O1.02} V- I3 CR-N {} {"J1.02": "MUCHO CUIDADO! Nos sentimos estafados! Al devolver un coche nos reclaman que hay un daño nuevo en lo"} {0.03157041,0.021873213,-0.014617485,-0.08027446,-0.05141474,-0.033318046,0.037247963,-0.0012888262,0.009500228,-0.010575256,0.047678307,-0.013531733,0.024795197,-0.009947124,-0.009049608,0.028045801,-0.016683267,0.042294286,-0.028903715,0.09030443,0.066910125,0.017227687,-0.028843738,0.08029524,-0.09897275,0.030047074,-0.009883399,0.039300613,-0.028767737,-0.084646136,-0.029063486,0.07115012,0.12246769,-0.00066308066,-0.04725483,-0.065803476,-0.01286856,-0.053112872,-0.11466255,0.014200081,-0.054474615,0.0163807,0.009810119,-0.032995872,-0.06509827,-0.0039561447,0.062345065,0.00995744,0.076301254,-0.087963596,-0.09744784,-0.009966067,-0.07622713,0.045982983,-0.038636148,-0.018662157,-0.008373849,-0.056252163,0.09445625,0.023559067,0.04621048,0.08475189,-0.03284376,0.060521062,0.08693144,-0.024290718,0.031809103,0.010323745,-0.092925526,0.07975366,0.062623814,-0.015976649,0.040691577,0.026306765,-0.06987917,0.07670283,0.032999616,-0.03981213,0.009600196,-0.004975309,0.032339215,-0.05675285,0.0298757,-0.057793282,0.028066766,-0.041687343,-0.023342483,0.015101255,0.040005125,-0.050800744,-0.08984007,0.14640735,-0.042298995,-0.05669774,0.0084251845,0.0051377644,0.017360402,-0.023308566,-0.06350632,0.02808742,0.13576612,0.049992926,0.05100482,-0.007422451,-0.013381448,0.06737068,0.048654165,-0.0066088387,-0.026220951,0.0569344,-0.0493366,-0.020447012,-0.013772614,-0.027354266,-0.07447868,-0.0122644175,-0.07290976,-0.04392692,-0.09352773,-0.024104245,0.018892733,-0.057790197,-0.06861109,-0.05845774,0.07701947,-0.06633295,0.06921769,1.6088655e-32,-0.017910063,-0.003622022,-0.019882677,0.003841962,0.066415735,0.027884012,-0.035392724,0.015370027,-0.013267757,0.020661442,-0.027661564,0.0034947717,-0.014867329,0.011519742,0.0042456863,0.03345843,-0.023427635,-0.058432158,0.028467674,0.07583175,-0.02109999,0.026224425,-0.03621295,-0.016094964,-0.070836775,0.06432073,0.0017711346,-0.07924849,-0.062473588,0.02917213,-0.039131597,0.063375145,0.0034973049,-0.031382777,-0.035245497,-0.019785365,-0.015789816,0.03083051,-0.08818664,-0.054330528,0.021604741,0.049853146,-0.059822284,0.0359996,0.013343247,-0.0060147997,-0.005145209,0.018145919,0.0035225863,-0.015908018,-0.026629576,-0.00028139885,-0.016635913,-0.07899085,-0.035065655,0.026739292,-0.047975373,0.03940921,-0.07148426,-0.07996229,0.014071917,0.022208175,0.07779739,-0.052831747,-0.0032293561,-0.027460355,0.022657502,-0.0049411235,0.14884013,0.04269472,0.011068157,0.013064958,-0.06805964,0.023130558,0.025376488,0.008669872,0.023739148,-0.013768229,0.06785858,-0.016929861,0.015085942,-0.008608612,0.029519845,0.039001662,0.06818798,0.02907853,-0.002633517,0.028714156,-0.047312997,0.15399158,-0.00852413,0.06637934,0.070271656,-0.038716547,0.059873484,-1.6488623e-32,0.013119296,0.074212246,-0.0055870987,-0.039694,-0.03630928,0.009594307,-0.01777007,0.066292666,0.043170176,-0.10084061,-0.03399017,-0.1495559,0.092456885,-0.049702637,-0.057911683,-0.0014981938,0.044388097,-0.09861079,-0.08705399,-0.046016127,-0.034074504,0.043808874,0.062359888,0.067291245,-0.045172725,-0.060924333,0.018281085,0.036165923,-0.051811736,-0.013505831,0.109899156,-0.014365599,0.029723054,-0.00078323786,-0.008235335,0.048676148,0.028432934,-0.01050128,-0.026346045,0.015950877,-0.0008153351,0.11552967,-0.017270083,-0.042050235,-0.030088443,0.016812658,0.028022787,-0.11753796,-0.07090152,-0.07965721,0.11257725,-0.04649227,-0.064163856,-0.024929833,0.09822478,0.0069191647,-0.027694803,-0.13293551,-0.04792782,-0.0031191993,0.002932483,0.010029702,-0.10491188,-0.108834445,0.028275223,0.014143126,-0.047645513,0.05465605,0.0050657783,0.048540913,0.06916291,-0.0053180126,-0.11177294,0.012385607,-0.0132166,0.0075552384,-0.02285646,-0.042140856,-0.014836363,-0.014851349,-0.04221763,-0.036446847,-0.01883019,-0.0070771794,0.027914783,0.0028186047,0.03069339,0.024990028,0.0020630297,0.071664706,0.0060478323,0.004604796,-0.06809385,-0.05211213,-0.052084297,-5.3055118e-08,0.0048997314,-0.014796359,-0.013687698,0.0013836256,0.045090668,0.051296856,0.0040155067,-0.011502586,0.0015052125,-0.004420169,0.064176865,-0.0014615783,-0.031009955,0.05783989,-0.006359163,0.114452206,0.078858644,0.02766403,-0.017695166,-0.06241159,0.06806832,-0.021702774,-0.01594014,0.0060997936,-0.02083395,0.031596553,-0.029981287,-0.058496688,-0.0011016236,0.015770346,-0.0011252343,-0.044329543,-0.018025944,-0.08617955,0.007701289,-0.05745523,0.048310097,0.021352448,0.0042796335,-0.053574566,0.08846267,0.023137413,-0.046781003,0.010413651,-0.13085529,-0.09271793,0.036874108,0.019830797,-0.013109794,0.0033077346,-0.048528377,-0.082939945,0.033474725,0.012114319,0.05100742,-0.0984567,0.046501163,0.06935671,-0.03353743,0.046345495,0.081618935,0.051693786,-0.01608871,-0.051697142} 1 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:12.58547+00 2026-01-25 01:27:51.440992+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 453 google Ci9DQUlRQUNvZENodHljRjlvT2xSVlkwSjVXbmgwUzJwNVFVTm9WM0V0YlZOUlNsRRAB 1 t 456 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el coche en la oficina y a la hora de la entrega igual todo perfecto y sin problema sin duda repetiré con ellos. todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el coche en la oficina y a la hora de la entrega igual todo perfecto y sin problema sin duda repetiré con ellos. 5 2025-08-28 01:27:48.341992+00 es v5.1 A1.01 {J1.01} V+ I3 CR-N {} {"A1.01": "Todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el "} {0.021959629,0.04776272,0.045832586,-0.0043081925,-0.020350441,-0.0054075476,0.08621791,-0.017585529,-0.08495532,0.051748063,0.06978647,-0.000104883096,-0.055682227,-0.045463964,0.02776942,0.04350269,-0.015686946,0.024050772,-0.050389357,-0.0559141,0.1140921,0.007504525,-0.06439994,0.16176112,-0.13600415,0.030644365,-0.09906474,0.029356377,-0.0030951838,-0.11537628,-0.05330514,0.059370227,0.0779411,0.004090912,-0.048557557,-0.025569538,0.027751906,-0.044377428,-0.047256716,-0.033128843,-0.14894056,-0.003574873,-0.01634959,0.009189482,-0.07457492,-0.07908292,0.019840105,0.05599906,0.08756,-0.023861002,-0.097731225,-0.07486411,0.043815415,-0.05027928,0.02811765,0.0836535,-0.044693705,-0.04537406,0.10960335,0.0023398546,-0.018340193,0.03573853,-0.053552095,0.077887535,0.031497758,-0.06372932,-0.002700033,-0.0053235255,-0.028670665,0.06990889,0.06666001,-0.04795334,0.050776433,0.04396143,0.00444731,0.06281568,-0.022879485,-0.04794907,0.013082214,0.036860507,0.059745662,-0.06747702,-0.026753703,-0.06665122,0.04924452,0.004865323,-0.0353667,-0.032784708,0.05641466,-0.031755812,-0.08008422,0.074866675,0.0005550791,-0.051970888,-0.0026925532,0.011096887,0.085768186,-0.05369499,0.00021522443,0.017879523,0.10617066,0.031636048,0.06956682,0.01619465,-0.0131172715,0.031008914,0.03786248,-0.021338835,0.056687832,0.0021409944,-0.05287277,-0.07185896,0.04272701,-0.040080108,-0.039160404,-0.029696982,-0.035983395,-0.066022515,-0.11780607,-0.07574918,0.0056885257,-0.026609503,0.03515231,-0.02887856,-0.0072258394,-0.08577681,0.031834796,7.069655e-33,-0.016414655,0.05776857,-0.006786351,0.06602264,0.058173966,0.004491969,-0.018866913,0.020363862,-0.023661904,0.0030253415,-0.08725059,0.00819723,-0.024610167,0.08236915,0.08469604,0.0034382753,-0.011064799,-0.01228201,-0.063314304,0.033741243,-0.0018315471,-0.033375528,-0.022787087,-0.052840583,0.042565808,0.074616306,0.03811537,-0.06053397,-0.039421108,0.06069596,-0.017705066,0.06264956,-0.012106398,0.046711296,-0.068301834,-0.09304614,0.050596863,0.013880339,-0.026694387,0.0420967,0.002969944,0.020219304,-0.0803692,0.003220096,-0.03299493,-0.008630368,0.059309438,0.074571,0.076760925,0.0406657,-0.04858607,-0.02328894,-0.07481048,-0.05920256,0.0070681362,0.048502196,0.020984277,0.020401645,0.012064553,-0.017157264,0.02063925,-0.018004078,-0.0052514267,-0.05989655,0.0058863047,-0.004112542,0.03394173,0.022408202,0.08591012,0.032919608,-0.051959362,-0.06194592,-0.04355755,0.02156267,0.05937813,-0.02631915,-0.03024066,0.014379265,-0.044361476,0.051226422,-0.06004593,0.008087951,0.04018133,-0.0012879947,0.035480313,0.00095257815,0.074224435,0.08780663,-0.034730554,0.052948654,-0.028469682,0.07970017,0.09808376,-0.041503336,0.06283102,-1.0279686e-32,-0.025729025,0.016195774,-0.016382812,0.059559997,-0.025355043,0.05488126,-0.031299926,-0.041943587,0.008975806,-0.06875291,-0.050478186,-0.092144236,0.096337184,0.0036572746,0.040234063,0.0684333,-0.035081018,-0.095239945,-0.10985678,0.024337765,0.054769255,-0.075509675,0.036286272,-0.03335385,-0.02561525,-0.059999377,0.009016241,0.018004473,-0.00081748876,0.042839225,0.025487823,-0.018747568,-0.02696491,0.06117766,0.005475469,0.025636401,0.017694794,0.010518825,-0.012720721,0.05206599,-0.010227863,0.03114703,0.027515907,0.0058204527,0.012023558,-0.036101196,0.007341772,-0.11885939,-0.028113177,-0.027870875,0.04406606,-0.15714931,-0.07947589,0.014469903,0.08331631,0.028372813,0.044328645,-0.05594402,-0.072264165,-0.07226508,-0.024307618,-0.027234266,-0.04564736,-0.05193228,0.04021974,0.008127275,-0.0022943174,-0.006704599,0.02697343,-0.004643985,0.014212965,-0.0194575,-0.08343326,0.0061095296,-0.047637206,-0.0008417877,-0.01450511,0.041743666,-0.031930685,-0.033867463,0.02636637,0.01994431,0.063960016,-0.05692305,0.013448863,-0.042205334,-0.058132064,0.01352654,0.0004314339,0.043370582,0.021935662,0.07788514,-0.061433367,-0.06435063,0.0014969468,-4.4711886e-08,-0.055285938,-0.013663748,-0.03893726,0.009785993,0.060263224,-0.0007401387,-0.025721854,-0.05185868,-0.0102623515,0.012054416,0.022441935,-0.04124577,0.012959971,0.06296063,-0.006150109,-0.016155137,-0.00200613,0.11064184,-0.023843238,-0.023651747,7.96698e-05,0.0001645425,-0.0010580734,-0.013382353,0.0067652967,0.015044507,-0.056456253,-0.0817877,-0.022965014,0.0072976905,-0.092523515,-0.0012035813,-0.059730127,-0.10676957,-0.027043818,0.0003021037,0.009809045,0.008995756,-0.05921421,-0.12341216,0.11066022,0.0408446,-0.06981486,0.012053561,0.028023148,-0.08904269,0.0024053094,-0.07208422,-0.01887015,0.048691526,-0.050423495,-0.050637547,0.07451761,0.035149284,0.066249475,-0.023800815,-0.026566952,8.351028e-05,0.0061398596,-0.0123361405,0.09032251,0.13528267,-0.0071263714,-0.05183412} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:35:21.136247+00 2026-01-25 01:27:51.44409+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1481 google ChZDSUhNMG9nS0VJQ0FnSUNWak8zaUVREAE 1 t 1484 Go Karts Mar Menor unknown Excellent circuit, staff very good, great fun and a must visit excellent circuit, staff very good, great fun and a must visit 5 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {P1.01} V+ I3 CR-N {} {"O1.02": "Excellent circuit, staff very good, great fun and a must visit"} {-0.06060562,0.01427463,0.018530088,-0.043374613,-0.1312791,0.0032805742,0.027264357,0.017584,-0.02558313,0.01688054,-0.0016649619,0.005930876,0.016161527,0.036410123,-0.060036067,0.020671448,0.048034646,-0.059245802,0.09321188,-0.069439024,-0.042686664,-0.0035154216,0.022394639,-0.027109839,-0.08013206,0.035716396,-0.03408792,0.06092141,-0.038440872,-0.08834787,-0.061038274,0.017163694,0.02023821,-0.026890209,-0.0510245,0.064061604,0.030694643,-0.0539416,0.021216383,-0.0055919494,-0.0532053,-0.050804056,0.079654105,-0.0360251,-0.019337256,0.022504076,0.033886034,-0.040923405,0.082832634,-0.038855556,0.09074853,-0.0708324,0.123668164,-0.03635831,-0.03314992,0.036329344,-0.045394935,-0.047173705,-0.0140264155,-0.031867683,0.071823925,-0.020720623,-0.052903183,0.014910381,0.017250696,-0.076750085,-0.06989689,-0.033087123,0.059488334,-0.10446272,-0.0141725745,-0.041650984,0.062341895,-0.019383805,0.0330906,0.025115551,-0.002026156,-0.041320287,0.025849868,-0.035172794,0.035218716,-0.05132408,-0.029166253,0.009436562,0.0053399857,-0.09126895,0.06803362,-0.084148616,-0.018261224,-0.031062637,0.08262701,0.10262,-0.012574972,-0.038322054,-0.015657282,-0.006493123,-0.022359094,-0.009224619,-0.057213597,0.09087311,0.053449243,0.07305082,0.019823726,-0.083477534,-0.0786102,0.012874686,-0.019388728,0.08569672,0.003446342,-0.06911171,-0.020240815,0.051755898,-0.08402439,0.0015081512,0.05303598,-0.009382812,-0.044656143,0.03378258,-0.03650204,-0.02183643,0.038239434,0.040004008,-0.016928772,0.05413135,-0.010415608,0.042379096,0.052556686,-4.7753918e-33,0.011694406,0.09523615,-0.017410204,0.016218022,0.088372536,0.082228474,-0.069786236,0.03633735,-0.0694159,0.0045030066,0.011406975,0.073801704,0.0187555,0.0006775582,0.021323228,-0.09912855,-0.02097576,-0.04028819,0.053980798,-0.00027276383,-0.037519503,-0.052111175,0.00023836581,0.09044836,0.056072548,-0.023101116,-0.016267076,0.002526993,0.058420468,0.02641323,-0.05058748,-0.004025006,-0.013300114,-0.017834852,-0.007243996,0.06209226,-0.05130042,-0.09254502,0.04468983,-0.00023779254,-0.03504917,0.035730325,0.017529754,0.0042979773,-0.04509935,0.03355951,-0.018919542,0.049349874,0.09115867,0.05256446,-0.11220493,-0.046790134,-0.0058927936,0.09326667,0.032064866,0.036658093,0.01583243,0.07795145,0.03229177,0.026392126,0.052044485,0.15681228,-0.117022194,-0.036096577,-0.08979178,0.0048776735,0.031635482,-0.07793136,0.075139895,-0.0993739,-0.041002605,-0.0017011032,0.09107472,-0.043168116,-0.027713802,0.06058968,-0.108655915,-0.035249457,0.056245875,0.07182764,0.0034724318,-0.05065793,0.014323551,0.00051398535,0.06219281,0.01139957,0.02617838,-0.071072005,-0.035701044,0.059393257,0.027707258,0.021248814,0.08268551,0.051043753,0.045066424,2.9507818e-33,0.029914085,0.045958485,0.025330272,0.04538576,0.040600926,0.02237344,-0.064269304,-0.034494244,0.001426221,0.0629518,-0.0044244383,0.06941409,-0.015426376,-0.019199815,-0.036376793,-0.039015632,0.018061439,-0.058158066,0.031136349,-0.056014176,0.026333483,0.13427839,-0.100906044,-0.031226953,-0.033597354,0.047301278,-0.06269315,-0.024847927,-0.036324922,0.045286816,-0.054003336,0.016136618,0.03553219,0.05641499,0.012910491,0.03213256,0.10869209,0.060083296,-0.03176881,-0.013877411,0.011796611,-0.0030525825,0.012992538,-0.008359958,-0.07081803,-0.0026076506,0.03656782,0.02981568,-0.061169397,0.030956028,-0.07537505,-0.041703783,-0.05933598,-0.0892438,-0.021751871,-0.106102124,-0.015400578,-0.0030448136,0.050975394,-0.07076738,-0.04443819,-0.0018694277,0.010683178,0.096476175,0.0450459,-0.07038245,0.02707726,0.040296275,0.03194842,-0.031290587,-0.009342068,0.042809322,0.07995485,-0.026664192,-0.031258464,-0.053766407,0.031212008,-0.044110518,0.013181297,0.040993765,-0.01604846,-0.0031050544,-0.02595683,-0.07619052,0.035141148,-0.007955072,0.086584434,0.0030846782,-0.012154461,0.08202395,0.0040607364,0.041132286,0.0025545824,-0.06546231,0.006726531,-2.1185436e-08,0.03434436,0.058280967,-0.02834972,-0.031403903,0.037241995,-0.17105079,0.09954437,-0.0043781633,-0.039553672,0.015160535,0.100526504,0.00019985501,-0.007638364,0.014321066,0.09382287,-0.0060589416,0.016555874,0.14824419,-0.045722812,0.04993446,-0.020829407,0.048827372,-0.0020122759,0.034956377,0.010910011,0.027116608,-0.0081544425,0.0013008071,-0.027254347,0.021741368,-0.025581615,0.060272563,0.008262103,-0.007589546,0.03437377,0.02221834,-0.12037967,-0.088841036,0.03420519,-0.042358644,-0.047522414,-0.068217106,-0.08378698,0.03714641,0.015078608,-0.041560017,-0.02983215,0.020671368,-0.034983594,0.0013601215,-0.040723283,-0.021078726,-0.02112303,0.0064603873,0.05315261,0.03097767,0.005726031,-0.0033972904,-0.037340403,0.046561643,-0.009497324,0.04355981,-0.050507795,-0.010942929} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.748821+00 2026-01-30 02:01:09.493519+00 22c747a6-b913-4ae4-82bc-14b4195008b6 455 google ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB 1 t 458 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Très bon service ; l’agence est à 2 minutes en navette ! La prise en charge est rapide et efficace.\n\nLes explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans forcer à prendre l’assurance.\n\nLe véhicule était neuf. L’hôtesse nous a informé que l’agence avait une semaine à notre arrivée.\n\nLa franchise a été encaissée à la prise en charge du véhicule, mais bien restituée au retour !\n\nAucun problème sur cette location. Notons aussi que le personnel est très agréable, courtois et patient.\n\nMerci Carlos et Nestor pour vos prestations, parfaites . très bon service ; l’agence est à 2 minutes en navette ! la prise en charge est rapide et efficace. les explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans forcer à prendre l’assurance. le véhicule était neuf. l’hôtesse nous a informé que l’agence avait une semaine à notre arrivée. la franchise a été encaissée à la prise en charge du véhicule, mais bien restituée au retour ! aucun problème sur cette location. notons aussi que le personnel est très agréable, courtois et patient. merci carlos et nestor pour vos prestations, parfaites . 5 2025-01-25 01:27:48.342033+00 fr v5.1 J1.03 {A1.01} V+ I2 CR-N {} {"A1.02": "Aucun problème sur cette location. Notons aussi que le personnel est très agréable, courtois et pati", "J1.03": "Très bon service ; l’agence est à 2 minutes en navette ! La prise en charge est rapide et efficace.", "O1.02": "Les explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans fo"} {-0.041626763,0.10804658,-0.009273148,-0.05861548,0.009078962,0.05676339,0.054892514,0.069060005,0.05256334,0.05688439,0.13396388,-0.027705472,0.06865245,-0.008056788,-0.030245231,-0.108538404,-0.02527737,-0.04498464,0.011302351,0.0941987,-0.01733169,-0.061026685,-0.080671005,0.023962716,-0.040809453,-0.072298065,-0.013534417,0.044968393,-0.008947907,-0.039752424,0.058455385,-0.006074663,0.0896693,-0.038912054,0.017023012,0.028430881,0.04259415,-0.05989498,-0.0359051,0.049557365,0.050939072,-0.09156974,-0.14211439,0.011693277,-0.052833058,-0.017876966,0.084527254,0.059706498,-0.008679689,-0.029315758,-0.042060826,-0.031655207,0.09015131,-0.05883669,-0.062690094,-0.015643036,-0.022701386,-0.073711894,0.022252204,0.0052446597,-0.05756104,0.03465301,-0.023105646,0.008420976,-0.05302607,-0.020566026,0.10046433,-0.0042352774,-0.020039383,-0.016190276,0.06578224,-0.01991653,-0.016656196,0.0088417735,0.012711422,0.05934282,-0.011684629,-0.00046203722,-0.0301577,-0.22249402,0.03661835,-0.11999278,-0.012191499,0.04393894,-0.042001907,-0.058265176,0.03340997,-0.006208153,0.05193496,-0.054375213,0.030187635,0.06170741,-0.049340572,-0.032593995,0.032346364,0.007827942,-0.035378452,-0.03673626,-0.0592867,0.02363408,-0.0036267925,0.038436927,0.0051772497,0.10524488,-0.04435835,0.03246114,-0.04169267,-0.012424163,-0.03343761,0.07637975,0.002141742,-0.015093257,-0.025843982,-0.026051091,0.004358228,0.072516754,-0.039518952,-0.042984035,0.013795069,-0.07553284,0.11508577,0.049632683,-0.0322547,-0.0641161,0.012767265,0.0038151788,0.14150071,7.781736e-33,-0.051177166,0.0059026233,-0.026961187,-0.017828977,0.012843614,0.04728382,-0.09591395,0.045157243,-0.0047080745,0.05386427,-0.054249648,-0.01786937,0.031816747,-0.10761476,-0.014148096,0.07171351,0.04255914,0.007863556,0.072408974,0.022021387,-0.07243737,-0.056103736,0.01148961,0.051660236,0.10338105,-0.048208132,0.04175487,-0.040696006,0.064942196,0.0011731884,0.011426258,0.027117189,0.023786267,0.035695255,-0.011857379,0.017843489,0.006941007,0.020783799,0.0335474,-0.00719264,-0.044685725,0.02336867,0.011665657,0.012278736,-0.04065767,0.008095941,0.007000821,-0.045986746,0.015841018,0.046264123,-0.034614064,-0.05755119,-0.053956952,-0.03569346,-0.029867684,-0.0024022372,-0.09214646,0.0936328,-0.06397752,-0.049946237,0.08770353,-0.03616255,-0.008678274,-0.005281878,-0.036413632,-0.04467441,-0.04836029,0.027511967,0.10279107,0.020115716,-0.06157207,0.00694012,0.03773731,0.012564913,-0.017732698,0.048490938,0.009858493,0.003448624,0.018432438,-0.00552788,-0.04880256,-0.04300154,0.006229167,0.07667224,0.084497415,-0.0052336557,0.017181518,0.03565942,0.0024836182,0.051835183,0.0205782,-0.0009744122,0.045953598,0.018519685,0.033930667,-1.110058e-32,0.011509459,0.010096342,-0.035852246,0.02366619,0.07551166,-0.008790646,-0.0077121123,0.09129276,-0.050386194,-0.084110804,-0.09439189,-0.013571969,0.046368293,-0.020420592,0.006746325,0.07128677,-0.00047195828,-0.0524881,-0.013880828,0.009059687,-0.0043345927,-0.019134987,0.05791728,0.053812403,0.024929848,-0.03225518,0.014241864,0.023251986,-0.11367234,-0.01771402,-0.04504262,0.012398334,0.031296194,0.0583982,-0.06758992,-0.0067610405,0.04371322,0.08516131,0.03764737,0.02714512,-0.012389579,-0.04318056,0.02563213,-0.024911426,-0.02913863,-0.033135183,-0.014791886,-0.15940584,-0.024427691,0.00095065543,0.013761823,-0.007280149,-0.024674745,-0.019882793,-0.05787204,-0.04440305,0.03411738,-0.05870316,-0.015117933,0.0074960897,0.10392626,0.06682498,0.022296216,0.017711885,-0.01741891,-0.04485468,-0.06770388,0.017157184,0.014303097,-0.011590397,0.08542389,-0.032404795,-0.12780325,-0.0113458615,-0.09239155,-0.04048207,0.0045839148,-0.019270148,-0.0067425715,-0.004169691,-0.027422938,0.018339584,-0.073606096,-0.0053230342,-0.1028671,0.027165309,0.13127418,-0.037546214,0.0019495849,-0.033343762,-0.012922798,-0.010160016,-0.049769305,-0.02907878,-0.042573098,-5.598565e-08,0.030667113,0.015863078,0.029948322,0.022523625,0.034960523,-0.19798888,-0.05125741,0.012547832,-0.0028347946,0.06007503,0.01544619,0.015501375,0.022310521,-0.042649,-0.0076828846,0.06570342,0.007654712,0.038099524,-0.10431926,-0.037822448,-0.0069816983,0.046691723,-0.098712474,-0.078857966,-0.009191809,-0.05904395,-0.021987297,-0.05918658,-0.019702319,-0.08563624,-0.051025253,-0.007860503,0.018958699,-0.07551749,-0.0016986355,-0.021148954,-0.021029426,-0.042531993,0.011013604,-0.068511315,0.10665002,0.044737488,-0.06289435,-0.01340507,0.046360742,-0.049364887,-0.03056728,0.0388592,0.004930206,0.034678336,0.009000556,0.0051735365,0.077280186,0.027455335,0.060443822,0.02642419,0.010944107,0.040379327,-0.013827454,0.05749383,0.023076518,0.024859216,0.06969249,-0.057614975} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:07:24.844497+00 2026-01-25 01:27:51.452129+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 459 google ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB 1 t 462 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nefasto servicio de atención al cliente en gran canaria. Contratamos todo riesgo y a los 32km se nos rompe el coche el cual no nos dan uno de sustitución, nos cobran la fianza de gasolina y además una cantidad desorbitada por una futura reparación sin saber que es.\nA todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafiantes.\n\nLa peor experiencia que he tenido en un viaje de ocio.\nPor supuesto no repetiría ni gratis nefasto servicio de atención al cliente en gran canaria. contratamos todo riesgo y a los 32km se nos rompe el coche el cual no nos dan uno de sustitución, nos cobran la fianza de gasolina y además una cantidad desorbitada por una futura reparación sin saber que es. a todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafiantes. la peor experiencia que he tenido en un viaje de ocio. por supuesto no repetiría ni gratis 1 2025-03-01 01:27:48.342059+00 es v5.1 A1.03 {} V- I3 CR-N {} {"A1.03": "Nefasto servicio de atención al cliente en gran canaria. Contratamos todo riesgo y a los 32km se nos", "J1.02": "A todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafi", "R1.03": "La peor experiencia que he tenido en un viaje de ocio. Por supuesto no repetiría ni gratis."} {0.03727966,0.10346939,-0.05785997,-0.078799084,-0.09031845,-0.06689566,0.098306194,0.06407541,-0.021387445,-0.057326887,0.06815605,0.034756847,-0.02555956,0.039156463,0.03703768,-0.046345603,0.042287562,-0.023050668,-0.0135697005,0.03469993,0.06961207,-0.047762293,-0.03886808,0.104283944,-0.0816294,0.044292044,-0.013055463,0.0030307213,-0.045812342,-0.056012724,-0.00023942399,-0.007779322,0.03535153,-0.012440233,-0.028750269,-0.013922656,0.021125864,-0.038509324,-0.07186108,0.09832992,-0.033177145,-0.05557332,-0.080773965,0.015797041,0.010895627,-0.038180787,0.060577814,0.061455745,0.04435245,-0.049356967,-0.07370132,-0.03016609,-0.02121902,-0.013799979,-0.0051096687,-0.050070122,-0.007154001,0.013267735,0.0046577672,0.01673267,0.024463696,0.072557844,-0.033061586,0.050528746,0.013258067,-0.019361457,0.03139238,-0.021989388,-0.031222524,0.06680781,0.11360536,-0.06384702,0.002738374,0.05726009,-0.054559384,0.07736237,0.00027503865,0.025634116,0.057615828,-0.09553018,0.048647188,-0.024307938,-0.023755262,-0.04336861,-0.05993586,-0.033656962,0.0032766324,0.019767964,0.07871012,-0.055322576,0.016166242,0.08884528,-0.063167304,-0.040092647,-0.0147163505,-0.03366118,-0.000470609,-0.062343046,-0.11315451,0.0060655125,0.050280705,0.036997013,0.014955273,0.07271341,-0.021764098,0.07320754,0.008078221,-0.007774911,0.0035652,0.118612766,-0.098422356,-0.07226145,-0.050728742,-0.012642751,-0.077202834,-0.012939241,-0.055608824,-0.010435237,-0.10659035,-0.0016200158,-0.022359341,-0.008293612,-0.07157175,-0.04290627,0.022626244,-0.015219561,0.11132068,1.540461e-32,-0.029460723,-0.018510453,-0.03873239,0.06484192,-0.004112677,0.073219426,-0.0128809605,-0.014131411,-0.03734905,0.030632436,-0.02850413,0.036719393,0.05386312,0.036632504,0.01604083,0.0044592507,0.048982095,-0.011048623,0.04268689,-0.03038084,-0.051583696,-0.02048031,-0.0076454855,-0.016855512,-0.06312436,-0.01788423,-0.022695813,0.015302197,-0.041004486,0.030362554,-0.008241561,-0.027968941,-0.005515001,-0.035532262,-0.06426767,-0.030128073,0.032409284,-0.008154121,-0.07971558,-0.07525143,-0.08293519,0.057228006,-0.035971332,0.044605825,-0.031830452,0.05047858,0.033750802,9.692895e-06,0.00089750043,-0.017553864,-0.04629587,0.015368911,-0.027119191,0.001135395,0.009578284,0.06875019,-0.022391254,0.023501169,-0.04832238,-0.03476592,0.014829053,0.013980897,0.028246136,-0.008520596,-0.006115154,-0.035043668,-0.040884994,0.026712263,0.10189996,0.04855621,-0.058346104,-0.028567985,-0.0063117966,0.08281889,-0.03478276,-0.054809168,-0.0148668075,-0.02539694,-0.07062377,-0.004740709,0.009552124,-0.11685572,0.03379987,0.079006895,0.031114876,0.11842461,0.023476738,0.059061635,-0.015682062,0.14397465,-0.011729835,0.08039345,0.06568633,-0.07749954,0.10066341,-1.6441316e-32,-0.033014596,0.028631112,-0.002884468,-0.00047448758,0.017037626,0.029521909,-0.04780584,0.03915652,-0.06701628,-0.031969935,-0.09428245,-0.06376625,0.10008882,-0.010617354,-0.03264537,0.037897814,-0.029272527,-0.12025444,-0.032986127,-0.054783627,-0.0043956735,0.062602006,0.011354673,0.05280147,-0.032975376,-0.07844235,0.0026053514,0.0061421883,-0.06660119,-0.03335502,0.08536958,0.049443327,-0.0316171,0.02823735,0.012887153,0.03031685,0.029234026,0.11043239,-0.021154933,0.023082187,-0.081821084,-0.022870189,0.00045849814,-0.055245,0.0046637314,0.01607123,0.07300333,-0.18819828,-0.027736006,-0.015658943,0.05156663,-0.04399741,-0.029416695,0.035481796,0.10101606,-0.07049105,-0.019563759,-0.10852394,-0.06973601,-0.06198991,0.114333116,-0.024462707,0.0038748337,0.0018390451,0.07995746,-0.042851884,-0.05609749,0.024089433,0.05919341,0.050300762,-0.0033418986,-0.057505563,-0.04573635,0.040371243,-0.00447998,0.002375384,-0.036277507,-0.015078181,-0.01727419,-0.08540931,-0.025740728,-0.009867048,0.01900304,-0.033358697,-0.0012863169,-0.026108595,-0.021591477,0.01032294,0.054268368,0.106977895,-0.0025910616,-0.0034044506,-0.083085656,-0.038819343,0.022151671,-6.267551e-08,-0.03650914,-0.040572144,0.030044492,0.024416283,0.003459911,0.037886515,0.00040745726,0.06597567,0.06264582,0.040843394,0.06635364,0.0011995849,-0.004602424,0.077674426,-0.02835401,0.04885705,0.098020054,0.03543219,-0.04990103,-0.046577007,0.012395903,-0.03393821,-0.066881165,0.0024028234,0.07033168,-0.018731512,-0.01145142,0.07954134,-0.021809643,-0.014753118,-0.037666027,-0.08436539,-0.014526003,-0.092808835,0.0034477918,-0.02788001,0.015874453,0.08461779,-0.006093419,-0.0210183,0.02802389,-0.0146634355,-0.042120945,0.036926456,-0.073830746,-0.080034494,-0.0636176,0.044925407,-0.023140581,0.02877695,-0.050832286,-0.047893886,0.112832546,-0.014274949,0.05401187,-0.056576755,-0.023733884,0.06969352,-0.016341465,0.030845862,0.0055508562,0.08023428,-0.0013068045,-0.08164974} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:50:10.029312+00 2026-01-25 01:27:51.465804+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 473 google ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB 1 t 476 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Encantados con Antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia nosotros y hacia su trabajo.\nTambién con Isaac que nos adesoró de todas las gestiones del coche de alquiler y su atención fue estupenda.\nLa vuelta creemos que la hicimos con Carlos un chico muy cercano q tb era muy agradable y atento con las maletas e indicaciones para nuestro vuelo de vuelta.\nEn general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era importante, era que no te cobran mucho depósito....Fueron 200€ y te dejan hacerlo con tarjeta de débito, hemos probado en otras compañías y te retienen muchísimo más y obligatoria la tarjeta de crédito, así q para nosotros fue una facilidad...Las furgonetas de traslado y coches de alquiler son nuevos.\nMuchas gracias desde Cantabria a ese equipo de trabajo tan estupendo y que os siga llendo igual de bien. encantados con antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia nosotros y hacia su trabajo. también con isaac que nos adesoró de todas las gestiones del coche de alquiler y su atención fue estupenda. la vuelta creemos que la hicimos con carlos un chico muy cercano q tb era muy agradable y atento con las maletas e indicaciones para nuestro vuelo de vuelta. en general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era importante, era que no te cobran mucho depósito....fueron 200€ y te dejan hacerlo con tarjeta de débito, hemos probado en otras compañías y te retienen muchísimo más y obligatoria la tarjeta de crédito, así q para nosotros fue una facilidad...las furgonetas de traslado y coches de alquiler son nuevos. muchas gracias desde cantabria a ese equipo de trabajo tan estupendo y que os siga llendo igual de bien. 5 2025-01-25 01:27:48.342128+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Encantados con Antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia ", "P1.02": "En general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era important"} {0.0087258285,0.0763104,-0.08534646,-0.017400412,-0.06660189,-0.067548186,0.07522837,0.060283627,0.0024265088,0.020894893,0.062000003,-0.045822956,-0.05139922,0.024542397,0.067255765,0.013154448,0.024588568,0.020004248,-0.04407557,0.068197,0.10857322,-0.056337908,-0.0800335,0.100509845,-0.075715475,-0.04013558,-0.00841257,0.009709494,-0.07891173,-0.06409393,-0.018343901,0.07219648,0.07523381,-0.053490497,0.008784122,0.03455073,0.026842223,-0.080665,-0.032481693,0.04024635,-0.0671114,0.040598333,-0.01726631,-0.031606488,-0.05638149,-0.07363588,0.059846263,0.054268215,0.01565077,0.0068277693,-0.03389406,0.005022384,-0.016987074,-0.025072351,-0.04906143,-0.041318737,-0.0003126992,-0.013526108,0.019387724,-0.0028368982,-0.04308217,0.06135874,-0.0051682447,0.043427724,0.054625634,-0.016763544,0.011423236,-0.005885005,-0.06515136,0.083066694,0.08793411,-0.11249836,-0.041691076,-0.002715972,-0.0166722,0.08935161,0.032426056,0.047095157,-0.042833608,-0.06744635,0.03500943,-0.036125008,-0.003392778,-0.11778431,0.008600707,-0.011122811,-0.0406652,0.009930715,0.05855858,0.019035226,0.0850415,0.102674894,0.026202785,-0.07331051,0.041399185,0.009503524,0.04124858,0.021817995,0.008706581,-0.009114442,0.12265792,0.076259755,0.031215511,0.025735406,0.027850963,0.07062925,0.093786694,-0.08869417,0.025533387,0.045346987,-0.11713892,-0.042855684,0.03904224,-0.08852934,-0.07083505,-0.010290636,-0.03698276,-0.015457753,0.025622077,-0.03163656,0.015534921,-0.024257414,-0.029961117,-0.025426285,0.039504904,-0.021251664,0.021334887,1.2552508e-32,-0.020146746,0.00527711,0.0020367107,0.01085628,-0.020478215,0.013171173,-0.0122851385,-0.020962803,-0.09370086,0.04666627,-0.045032617,0.044654608,-0.015408876,0.013272806,0.06008385,-0.01208209,0.026815573,-0.07848413,0.098665744,0.037582684,-0.025812723,-0.020500114,-0.020630352,-0.015742727,0.00086157577,0.06703735,-0.0063459584,-0.03826974,-0.07642956,0.043836895,-0.027591586,-0.0067074187,0.024051914,-0.044602074,-0.11104856,-0.034968846,-0.04564959,0.021360803,-0.05082427,-0.06016626,-0.039124597,0.013185046,0.041024644,0.06993907,-0.0054657212,-0.0137288645,0.04351568,0.002454298,0.012289604,0.051717345,-0.0395772,-0.076120906,-0.05052148,-0.033493504,-0.05877995,-0.027850533,-0.04185842,-0.0016366937,-0.040779352,-0.008364966,0.008888624,-0.05285872,-0.013771383,-0.038975365,-0.05914694,0.008285883,0.018073598,0.010205782,0.1465659,0.05563405,-0.054967098,0.0004242438,-0.02462152,0.050114002,0.014293725,0.040670566,0.0386822,0.00048537384,-0.019929005,0.034570284,-0.054007433,-0.05524046,0.031391717,0.057571832,0.048903864,0.08350496,0.07588547,0.047619615,-0.028156836,0.12137214,0.0069774534,0.061925527,0.07651565,-0.038277403,0.10667043,-1.3279254e-32,0.009508491,0.026220702,0.019615125,-0.030234039,-0.07722936,0.007292866,0.006671153,-0.04637307,-0.0017264206,-0.10547268,-0.06783173,-0.058074426,0.057967976,-0.055798456,-0.05738241,0.065271854,-0.039673652,-0.0979813,-0.02013188,-0.092645295,0.020740839,0.08304156,0.05124534,0.02037035,0.0010047003,-0.10384341,-0.05713344,0.01750138,-0.0074637444,0.014571288,0.044202395,0.004722389,0.032763954,0.049193423,-0.04128363,-0.039272055,0.071561754,0.060047492,0.018865423,0.073704325,-0.017545454,0.076612726,-0.024601936,-0.055185363,-0.0074419416,0.06886737,0.0024208317,-0.18770534,0.006739778,-0.03818954,0.08472972,-0.04648695,-0.0609591,0.025325099,0.04931712,0.017325796,-0.04471225,-0.05266837,-0.113704495,-0.03853827,0.022228781,0.06173178,-0.032889526,-0.03578528,0.047398865,0.00078038505,-0.01802799,0.010941853,-0.008444962,0.030661516,0.037618384,-0.046499673,-0.033856653,0.028458294,-0.022374498,0.011463709,-0.047337435,0.012642143,0.022619277,0.033376127,-0.074923396,0.028912129,-0.01954067,-0.008687438,0.0064380886,-0.013493331,0.004698907,0.016385261,-0.03382356,0.049577996,-0.053888887,0.031109136,0.015048419,-0.054183606,-0.040876053,-5.691048e-08,-0.0125510115,-0.06742662,-0.020817151,-0.014630623,0.05725563,0.0098588085,-0.034490976,0.03179069,0.013116349,0.085909784,-0.009106717,0.007986228,-0.0802511,-0.015524122,-0.06023931,0.057325095,0.07299185,-0.012894866,-0.0046794172,-0.06912713,0.11365423,0.008118642,-0.123777896,0.044896837,0.021806164,0.00093304785,-0.008464124,0.037024647,0.002882801,0.030865664,-0.018072587,-0.06656489,-0.024373652,-0.0806284,-0.025908517,-0.0646665,0.012009794,-0.010578914,-0.025653115,0.008403448,0.12339828,-0.07341976,-0.061361417,-0.02949248,-0.02960481,-0.0650643,-0.032750268,0.027397215,-0.00839537,0.017405411,-0.008162968,-0.012078712,0.05859817,0.046254713,0.024152149,-0.13248114,0.028117888,0.05846182,0.021625826,-0.038865462,0.14405936,0.03661702,0.023895593,-0.06418078} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:06:19.262245+00 2026-01-25 01:27:51.508831+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 485 google ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB 1 t 488 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Juanma is erg attent en aardig tegenover de klanten. De auto was in goede staat en de borg was onmiddellijk terug. Precies de ervaring die je wilt als je een auto huurt! juanma is erg attent en aardig tegenover de klanten. de auto was in goede staat en de borg was onmiddellijk terug. precies de ervaring die je wilt als je een auto huurt! 5 2025-04-30 01:27:48.342184+00 nl v5.1 A1.01 {} V+ I2 CR-N {Juanma} {"A1.01": "Juanma is erg attent en aardig tegenover de klanten.", "O1.01": "De auto was in goede staat en de borg was onmiddellijk terug.", "R1.01": "Precies de ervaring die je wilt als je een auto huurt!"} {-0.057725545,0.095533356,0.040309004,0.040642247,0.015934749,0.07758075,0.07593074,0.12539162,0.019574523,-0.04132047,0.006857617,-0.011247568,-0.030089533,-0.076233186,-0.036380827,-0.04041857,-0.072533876,0.048891533,0.060999196,0.015363433,-0.02385467,-0.032574877,-0.0054498944,0.030580865,0.048352703,-0.0034699317,0.06200094,0.0009725532,-0.042069923,-0.08889909,-0.012328459,-0.046777423,0.0021003506,0.07312153,-0.040858287,0.0465777,-0.001242483,-0.066199,0.010181524,0.009794365,-0.034741983,-0.001571802,-0.0677406,-0.016276093,0.040552795,-0.0031686712,-0.024359168,0.00050620514,-0.03901222,-0.039617445,-0.046764333,0.042814843,0.01926082,-0.044350013,-0.016469387,0.04581241,0.049220767,0.024402408,0.07906881,-0.0296959,0.04163784,0.042577565,-0.038188964,0.0039056286,-0.06285515,-0.054737717,0.040564023,0.03041582,-0.07703119,0.012112573,0.15914568,-0.003044957,-0.024011489,0.052214794,0.0062970836,-0.016767837,-0.056722913,-0.07766255,-0.04108095,-0.0076111658,0.020817967,0.031966973,0.0022997824,-0.03554125,-0.017469082,0.033348933,-0.021988885,0.0076348605,0.08570042,0.03090084,0.076846674,-0.019936051,-0.073184,0.03408888,0.011357262,0.015146559,-0.0010767316,0.02860911,0.07321464,-0.010526675,0.09202406,0.028916527,0.07652092,0.007651302,-0.019937886,0.055754323,0.08633207,-0.06622785,0.04611606,-0.008281111,-0.025563847,-0.12244519,0.023378465,-0.06525602,-0.059019413,0.035905868,0.03337829,-0.023168854,-0.06680131,-0.027136672,0.049731154,-0.040870547,-0.014236198,0.050769646,0.052662235,0.009054415,0.077987984,1.1917862e-32,-0.1060766,-0.10413105,-0.078768656,0.08256975,-0.022057343,0.026455505,-0.06694709,-0.07814316,-0.05992982,-0.035156008,-0.106728375,-0.026066463,-0.12618223,0.012015242,-0.042248618,0.03453684,-6.444125e-05,-0.044162434,0.03143701,-0.038367473,0.015412449,0.021339184,-0.022847347,0.020845823,0.011639304,-0.00034718597,0.03201545,-0.061262213,-0.03583246,0.04246878,-0.037930317,-0.037254054,0.014040686,0.054445595,0.015385241,-0.029549623,-0.054763187,0.015061418,-0.08113362,0.0019262269,0.09922055,0.011751717,-0.0073593967,0.043347094,-0.024666658,0.01765665,0.04060537,0.05457741,0.073046915,-0.0052578617,-0.08691262,-0.08087965,-0.05805223,-0.06628511,0.014448354,0.08416976,-0.0938674,0.09573795,0.08331429,0.0037942778,-0.005890213,0.037264153,0.068234846,-0.03374724,0.050965454,-0.048914194,0.010706688,0.031464715,0.08960463,0.0061225314,-0.023219556,-0.017373744,-0.00048204136,0.028534105,-0.0111461915,0.05342504,-0.029398743,0.009647371,-0.027235217,0.06398074,-0.15203102,-0.05245375,-0.009425206,0.06353451,0.051135674,0.019834183,0.11909595,0.0077405376,-0.04750038,0.1174674,0.04841655,0.098433204,-0.03466512,-0.0201377,-0.007584841,-1.1761309e-32,-0.07206506,0.013636979,0.00581974,0.025671033,-0.028197655,-0.015194771,0.020869853,0.04087972,-0.021635761,-0.025176274,-0.02081159,-0.11797703,0.050539758,-0.0057039517,-0.051309958,0.023408592,-0.030198965,-0.0038200691,-0.0432826,0.053229976,-0.08754759,-0.012959842,0.008079752,0.06266815,0.020932779,0.04101869,-0.002876575,0.03961241,-0.14493828,-0.013686779,0.014831931,0.009321208,0.058639597,0.062367946,-0.08136703,0.04783821,0.099988446,0.096671626,-0.028124584,-0.004099114,0.05635081,0.013567307,-0.082323484,0.014714871,-0.011747676,0.058186337,-0.008888563,-0.032799378,0.0052134153,-0.054583177,-0.013864352,0.053764712,0.036258608,0.013743549,0.07134563,-0.014569309,0.04533333,-0.03394101,-0.03686352,0.023764007,0.018484265,-0.035651244,0.077807724,-0.021970402,0.08114237,-0.04578581,-0.10709116,0.010631676,0.043939542,-0.038899694,0.037014525,0.012343654,-0.10131909,0.0065692044,-0.05740551,-0.09203185,-0.0791834,0.01184255,0.020710653,-0.04571787,-0.071915716,-0.030559236,-0.11452992,0.025073567,-0.079313435,0.012413684,0.022461295,0.003938633,-0.014824463,0.025376651,0.037938427,0.08056184,-0.015677635,0.052068904,-0.07228935,-4.332555e-08,-0.0015552968,0.02158141,0.022352213,0.0056741857,0.04851794,-0.09463966,0.017917998,-0.0050016777,-0.047775663,0.10759695,-0.056585155,0.034569226,-0.028485505,-0.035343047,0.059029475,-0.012561517,-0.036149662,0.06612353,-0.06358407,-0.0064944206,0.1130001,-0.021920681,-0.085759185,-0.018817946,0.0056091244,-0.0010566064,-0.032599263,-0.031510863,0.07002526,-0.12486038,0.009798338,0.06253932,-0.05994573,-0.008476214,-0.03385711,0.046656553,0.0063016242,-0.040535502,-0.05932338,-0.016094916,0.010778453,0.034524374,-0.019899482,-0.049879167,-0.06454343,-0.047079682,0.032187875,-0.035268955,0.046098776,-0.001318228,0.00019033231,-0.0503242,0.03796799,0.04837869,0.05847862,0.014023582,0.030671977,0.011717295,-0.07824582,0.008317703,-0.0517037,0.029134555,0.010593259,-0.044292975} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:44:18.253287+00 2026-01-25 01:27:51.580685+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 488 google ChdDSUhNMG9nS0VJQ0FnTUNnbWJhNzN3RRAB 1 t 491 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Todo súper bien, el coche iba perfecto y el personal muy amable. Kevin súper apañao y simpático, esperamos volver y que nos recoja.\nSaludos desde Málaga😎\nAhí tienes la reseña que no perdí la tarjetita todo súper bien, el coche iba perfecto y el personal muy amable. kevin súper apañao y simpático, esperamos volver y que nos recoja. saludos desde málaga😎 ahí tienes la reseña que no perdí la tarjetita 5 2025-03-01 01:27:48.342204+00 es v5.1 O1.01 {A1.01} V+ I2 CR-N {} {"O1.01": "Todo súper bien, el coche iba perfecto y el personal muy amable. Kevin súper apañao y simpático, esp"} {-0.07906859,0.0024078623,0.0656542,-0.07570169,-0.06294984,-0.02324688,0.093678035,0.052799113,-0.027061041,0.056362923,0.022449886,0.003696411,-0.048559316,-0.056092236,-0.03790272,0.011560267,0.0080482345,0.036646597,-0.022792803,0.0070595834,0.087958835,-0.063022226,-0.041106496,0.037493277,-0.10849761,0.014464035,0.014666284,0.040179756,-0.045865458,-0.0517182,-0.009944011,0.050437495,0.02554115,0.018932078,-0.03740307,0.03653838,0.029873304,-0.05243977,0.02232794,0.013818735,-0.08769538,-0.040768836,-0.047088727,0.021306751,0.04428627,-0.069212176,0.021532435,0.043565698,0.029123148,-0.048704255,-0.06097282,0.0020930378,-0.01947902,0.05358231,0.08727942,0.060161762,-0.07810319,-0.020714803,0.097059555,0.011280093,0.025351739,0.033754874,-0.0010268586,-0.0034005323,0.047210176,-0.025154168,0.011821199,0.025661757,-0.055849377,0.086078234,0.10136407,-0.014348466,0.03294304,-8.195419e-05,0.02614056,0.06695495,-0.071609184,-0.013731109,-0.042863663,0.009417005,-0.009522159,-0.06825125,0.013825793,-0.041588668,-0.012916013,-0.022150341,0.032096557,-0.022295175,0.085191645,-0.012498369,-0.016473664,0.06415367,-0.03332892,-0.07007859,-0.050348226,0.03727235,0.03649019,-0.033351444,-0.080981106,0.048450653,0.06122473,0.041371845,0.032377854,0.025676858,-0.022305973,0.03692438,0.041998293,-0.02200618,0.05714498,0.047329377,-0.051002488,-0.07467566,-0.025775261,-0.035963416,0.017294765,-0.02003856,-0.10205853,-0.01839498,-0.013331203,-0.07685637,0.04917892,0.13237152,-0.052334607,0.013875044,-0.036811396,-0.0593073,0.06022368,1.4094715e-32,-0.02255821,0.05124852,0.064841256,0.04077882,-0.006458544,-0.027973704,-0.09042136,0.0032899573,-0.034699827,-0.03196005,-0.02765061,0.05716694,-0.006509786,0.039722607,-0.07730521,0.10530864,-0.0009905427,-0.06843469,0.059189532,0.05050407,-0.0189865,-0.10116981,0.0077889003,0.0019975803,-0.04105207,-0.024218738,0.07779259,-0.014643493,-0.004831725,0.054411024,-0.11862115,0.03879278,0.012105385,-0.0040743942,-0.058238804,-0.059311938,0.022072323,0.051392816,-0.06784028,0.052001666,0.027106073,0.037186984,-0.055043582,-0.007411334,-0.039847113,-0.0034396942,0.05845073,0.067900576,0.07528918,0.013593078,-0.086294316,-0.0737005,-0.09985131,-0.039622374,-0.046590343,0.050736763,-0.018150222,0.01763241,0.01209969,-0.062479258,0.089806795,-0.015395566,0.007670471,0.0017134451,-0.08105173,-7.132689e-05,0.010929044,0.032878757,0.118697636,0.031958014,-0.07941856,-0.0064887097,0.0063192737,-0.032102488,0.059940953,0.013884528,0.016716005,0.047101013,0.008887639,0.0018649222,-0.06644536,0.0023724292,0.031479497,0.0039727376,0.044925563,0.028521245,0.01728215,0.02136897,-0.02830668,0.10189714,0.048587017,0.055847496,0.08083109,-0.08283781,0.015165723,-1.4022463e-32,0.049352918,0.0007311714,-0.012373906,0.027535131,0.020882716,0.04493469,-0.025558913,-0.00038276473,0.017381711,-0.10144998,-0.059668582,-0.10313855,0.16795489,-0.010053393,-0.023446033,0.10189956,-0.0109477425,-0.047725525,-0.04871643,-0.048978873,0.07592876,0.03379223,0.044282317,-0.005283924,-0.053412646,-0.09308074,-0.031742454,0.10847692,-0.03563241,-0.022183193,0.10194577,-0.07815292,-0.07891829,-0.020990003,-0.00810747,0.034897435,-0.0036585438,0.027839782,0.0034131135,0.05341024,0.00015364688,0.05171912,-0.07131214,-0.016721157,-0.001997436,-0.009220885,-0.0070416257,-0.1415643,-0.029955914,-0.060731504,0.028476594,-0.054780494,-0.09300454,-0.026055766,0.030091757,0.020463672,-0.012632128,-0.058480017,-0.017303696,-0.008481161,-0.018162232,-0.013504475,0.013879008,-0.026631486,0.092141874,-0.0018626355,-0.0115779815,-0.007072763,-0.0011737354,-0.00063395227,0.07975567,-0.06978865,-0.08012484,0.0042856694,-0.0015003339,-0.0296013,-0.034914814,0.018277263,-0.0040874477,0.0062656035,-0.03417133,0.017822394,-0.04770113,-0.014987219,0.0045821196,0.0017777383,-0.010754428,0.0065156464,0.0215326,0.03708406,0.05576558,0.022863725,-0.109840214,-0.04036659,0.0012894401,-5.038433e-08,0.0038922753,0.0034626955,-0.071206436,0.027291581,0.07969452,-0.066338636,-0.07167394,0.027157512,0.047454927,0.025178727,-0.0043764627,-0.060474742,-0.021216897,0.05169879,-0.0043800613,0.042416085,0.06907136,0.10152679,-0.03860363,-0.10099294,0.045167353,-0.028477851,0.013914576,-0.017857494,-0.008505468,0.06332503,0.0118607115,-0.10463344,-0.06544152,-0.0060977945,-0.043128476,0.022266813,-0.008781679,-0.13563535,-0.031375963,0.011890427,0.024544537,0.028467676,-0.007214151,-0.02710952,0.107840896,-0.002425529,-0.07206066,0.00050496944,-0.015595692,-0.051703293,0.039216023,0.0053042243,-0.008764436,0.05671066,-0.04762574,-0.049104653,0.07060677,0.016446143,0.033741303,0.0014365641,0.012960537,0.045577798,-0.017795514,-0.056370478,0.1531539,0.13027048,-0.042661022,-0.09428667} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:49:08.575439+00 2026-01-25 01:27:51.604092+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 489 google ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB 1 t 492 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carmen y Néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un inicio de viaje buenísimo con su amabilidad y cercanía. La entrega del coche fue sencilla gracias a Antonio y a Dani. Un equipo encantador que te hace sentir muy bien ❤️ ojalá siga así! carmen y néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un inicio de viaje buenísimo con su amabilidad y cercanía. la entrega del coche fue sencilla gracias a antonio y a dani. un equipo encantador que te hace sentir muy bien ❤️ ojalá siga así! 5 2025-01-25 01:27:48.342213+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "Carmen y Néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un ini", "J1.01": "La entrega del coche fue sencilla gracias a Antonio y a Dani."} {0.01712002,0.025407087,-0.027730875,0.0006757257,-0.09354402,0.012908533,0.07446553,0.004090728,0.029506806,0.021212714,0.04815143,-0.017116554,-0.01223104,-0.017573703,0.064397335,0.0017017242,-0.052184224,0.0065129595,0.0019304008,0.10049261,0.09035935,-0.061324432,-0.030579276,0.14187641,-0.07601252,-0.014551614,-0.00014684445,0.011592959,-0.07696841,-0.058885764,-0.011695226,0.014119738,0.06017361,0.017005209,0.008064703,0.024994368,0.020286772,-0.12766789,-0.0035432787,0.043873016,-0.13097776,-0.037013113,-0.032682225,0.026042553,0.0098383855,-0.14893802,0.05817144,0.08467604,0.028429508,-0.04513728,-0.07986183,-0.011914129,0.01885713,-0.105753556,0.020001313,0.04534327,0.05068015,-0.04699606,0.093497485,-0.0007015462,0.05957454,0.09261893,-0.020006834,0.03581746,-0.044754345,-0.05897161,0.029733641,-0.025581356,-0.023661716,0.0023100155,0.07954042,-0.06711672,0.005469561,-0.011763999,-0.033728603,0.04037606,0.04910696,-0.017873716,-0.05436784,0.030001512,0.016261443,-0.0008211304,0.045105934,-0.07888625,0.023891173,-0.021524077,-0.034912713,-0.02230473,-0.0039405865,-0.03224526,0.01541708,0.029914822,-0.007402517,-0.03640803,-0.024319218,-0.038623303,0.013614483,-0.07312668,0.011255786,0.05102056,0.046323285,0.013935881,0.008263679,0.053102598,-0.0340516,0.10593249,0.04098029,-0.06233995,0.0035599242,-0.0064206203,-0.110879965,-0.053927463,-0.0077107404,0.01835345,-0.0011757239,0.07755269,0.031344898,0.020130042,0.043579817,-0.06689121,0.039474923,-0.03257238,-0.0040170588,0.013058458,0.03366523,-0.016167535,0.05844302,1.4316352e-32,-0.0393854,0.0015091352,-0.0028599957,0.09385936,-0.03218076,0.016848333,-0.05097684,-0.01794819,-0.07623859,0.0127525525,-0.05737804,0.0027205243,0.028331615,0.015069109,0.063319005,0.070160106,-0.00077501906,-0.005951798,0.038184445,0.025715858,-0.0342658,0.019688359,0.034842886,-0.033929553,-0.017409673,0.03222425,0.02529863,-0.06818121,-0.03591727,0.050169785,-0.0049216826,-0.030119399,0.013097319,-0.07293851,-0.0016069604,-0.019409142,0.012313263,0.03851888,-0.036444183,-0.0014180397,-0.0045924913,0.035561316,0.02228571,0.042094246,-0.025107915,0.049731024,0.06905989,0.043223336,0.07279417,-0.00035572058,-0.08974008,-0.06240064,-0.09123803,-0.0054893494,-0.018885948,0.026681222,-0.090639256,0.0022095018,0.007974202,-0.021782886,0.07758679,-0.037373208,-0.0032595748,-0.024965527,-0.03230364,-0.032302678,0.07214345,0.047870293,0.16390236,0.08987931,-0.095717706,0.01778317,-0.021006048,0.006701199,-0.017355163,-0.005669957,-0.028226396,-0.03515412,-0.03961568,0.096250676,-0.07969498,-0.012038268,0.049870063,0.047000296,0.060046278,0.035810854,0.030620584,0.020655284,0.009971212,0.14644189,0.0041535445,0.04975785,0.06516257,-0.075302474,0.09391332,-1.4977329e-32,-0.035223868,0.001681757,-0.027427366,-0.074276134,-0.0048480085,-0.04954519,-0.025469119,-0.0052007646,-0.029242054,-0.08913516,-0.0550778,-0.15038781,0.087263465,-0.10503347,-0.03420697,0.048183274,-0.040185858,-0.10920972,-0.07878009,0.045862637,-0.010240872,-0.06040159,0.01780663,-0.019190896,0.03756733,-0.012894797,0.018912733,0.024851687,-0.034163374,-0.03282777,0.06167237,0.006357053,-0.009824214,0.0123887835,-0.032208595,0.060469817,-0.046183705,0.043192536,0.03282028,0.050161712,0.02633477,0.06132469,0.007006934,0.03694014,-0.040320024,0.113374434,0.06121281,-0.121254735,-0.0010419496,-0.0557133,0.037956815,-0.06813881,-0.07812252,-0.01408474,0.09869262,-0.07163048,-0.04679756,-0.046125274,-0.01461844,0.0196697,0.061759,0.017066149,-0.032671582,-0.044229724,0.06924551,-0.04401085,-0.061511107,-0.014946741,0.025218403,0.050703473,0.058250226,-0.032694332,-0.084681496,0.08138381,-0.017592281,-0.023337757,-0.14226976,-0.061146896,-0.057419967,0.0004963447,-0.0022867057,-0.0076075746,-0.06635771,-0.03370837,0.07078824,-0.008711487,0.034661103,0.04387196,0.010582468,0.019830711,-0.0033332738,0.023574159,-0.04034511,-0.120882526,-0.08287449,-5.396563e-08,0.05883185,-0.040711116,-0.030993007,-0.03062092,-0.050530057,0.049983017,-0.0039724717,-0.008512858,-0.04556301,0.055702213,-0.059640255,0.057450835,0.014429527,-0.02051741,-0.03730751,0.04102479,0.0819912,0.032336295,-0.0070349574,-0.094844446,0.054543354,-0.031344134,-0.0923913,-0.011906816,-0.027518613,0.046390202,-0.06765862,0.014518851,0.053770944,-0.024248388,0.067692816,-0.042909257,-0.057705164,-0.03204214,0.012290151,0.019612376,-0.017730102,0.014689859,-0.017037187,-0.08121867,0.06567153,-0.014258503,-0.06287626,0.02730478,-0.044735678,-0.05275422,0.015461914,0.009197275,-0.005890891,0.033773232,-0.03915638,-0.09834166,0.007017075,0.043969974,0.0016059844,-0.03318929,0.024705572,0.0547457,0.011222944,0.006655187,0.034697346,0.009793905,0.007433369,-0.109181605} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:05:17.862322+00 2026-01-25 01:27:51.606996+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 506 google ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB 1 t 509 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Nueva franquicia de ClickRent, Aunque está fuera del aeropuerto, merece la pena. Transfer gratuito a/desde el aeropuerto a la campa donde tienen los coches. Flota de coches nuevos, nosotros estrenamos un Fiat500 cabrio de hecho. Trato súper profesional y exquisito por parte de Carlos, Néstor y Antonio que nos atendieron siempre con una amabilidad extrema y una sonrisa. Sin duda repetiremos.\nPor poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la campa para la devolución de los coches. nueva franquicia de clickrent, aunque está fuera del aeropuerto, merece la pena. transfer gratuito a/desde el aeropuerto a la campa donde tienen los coches. flota de coches nuevos, nosotros estrenamos un fiat500 cabrio de hecho. trato súper profesional y exquisito por parte de carlos, néstor y antonio que nos atendieron siempre con una amabilidad extrema y una sonrisa. sin duda repetiremos. por poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la campa para la devolución de los coches. 5 2025-01-25 01:27:48.342315+00 es v5.1 O1.03 {} V+ I2 CR-N {"Carlos, Néstor y Antonio"} {"A1.03": "Trato súper profesional y exquisito por parte de Carlos, Néstor y Antonio que nos atendieron siempre", "J1.02": "Por poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la camp", "O1.03": "Nueva franquicia de ClickRent, Aunque está fuera del aeropuerto, merece la pena. Transfer gratuito a"} {0.014116847,0.031206356,-0.055566117,-0.04890538,-0.0047635958,-0.037612718,0.05522666,0.03761733,-0.03776325,-0.0016789103,0.089726664,-0.015469051,-0.057564247,-0.01697851,0.017059099,0.0149246305,-0.039749563,0.011884779,-0.011457101,0.023802832,0.09822259,-0.12110504,-0.06935758,0.082874574,-0.11474788,-0.008375354,-0.050315827,0.011714907,-0.066203326,-0.0974713,-0.037014805,0.03492809,-0.014441758,-0.035294272,0.011658214,-0.040354818,0.057730854,-0.103358135,-0.00023773752,0.03034103,-0.114951946,0.014221457,-0.0070231627,-0.010079403,-0.043486085,-0.023050172,0.024769649,0.09761648,0.047240242,0.0010729585,-0.046859056,-0.00935548,0.021738855,-0.07323152,-0.02667774,0.023608372,-0.025005575,-0.014434504,0.086154394,0.0057473728,0.066691674,0.07840819,-0.011942653,0.047761045,0.041672263,-0.08805504,0.0098137455,-0.009536627,0.011190347,0.044111546,0.021677295,-0.12242278,0.019590143,0.012315196,-0.020358069,0.0041994276,-0.024026603,0.03112641,-0.009924721,-0.035383657,0.029262107,-0.04046512,-0.006924959,-0.09988353,0.030211179,0.029915009,-0.048877407,0.008942862,0.022250144,0.031076511,-0.040780894,0.04947304,-0.021795169,-0.009940613,0.052605126,0.012800845,0.050643556,0.034136444,-0.0068539903,-0.007065331,0.10886721,0.05672283,-0.0046928986,0.025294537,-0.08706205,0.032396596,0.052074537,-0.03641149,0.044585966,0.038277876,-0.12469733,-0.0041977065,-0.0010289387,-0.10612755,-0.09255231,0.015138727,-0.06996171,-0.081393786,-0.028096784,-0.06600247,0.044688612,-0.061240423,-0.027235495,-0.044124246,0.020867782,-0.07560403,0.016467577,1.3050428e-32,0.0099675115,0.04881368,-0.02347561,0.054351196,-0.022809176,0.04263364,-0.017167432,-0.041995175,-0.004465448,0.022269096,-0.087132454,0.035141967,-0.056574285,0.012187518,0.09300863,-0.06523073,-0.035466157,-0.066999815,0.052886974,-0.018569682,-0.07616993,0.056156788,-0.03250261,0.024925217,0.040510666,0.085368805,-0.04229866,-0.06209648,-0.0788252,0.084062174,0.002049221,0.04298238,-0.01732183,0.017543664,-0.059372686,-0.054821793,0.038427282,0.012491289,-0.03900223,-0.04540896,-0.008289685,-0.019371608,-0.017613905,0.044349715,-0.042735845,-0.022366026,0.029064044,0.047536034,0.060931846,-0.034091298,-0.0810746,-0.03471359,-0.026411524,-0.047292814,-0.011013731,-0.027550133,-0.0760573,-0.02834042,-0.06499697,-0.019508647,0.0010640672,0.06631155,0.044677194,0.027469814,-0.007668285,0.048315506,0.021059237,0.061766863,0.10966186,0.068355426,-0.06465302,-0.02694048,-0.031287186,0.089018725,0.04371555,0.0018673015,0.012678702,-0.021625668,-0.015834846,0.05171684,0.018067483,-0.02682111,0.07310942,0.010758112,0.04188675,0.02401545,0.052925404,0.07317835,0.05825765,0.11318925,-0.04218512,0.07301175,0.0816478,-0.03208991,0.074726425,-1.6033741e-32,0.010108119,0.027336296,-0.018173862,-0.012178923,-0.08059263,0.097522475,0.0029879555,-0.0807221,-0.046813738,-0.0584818,-0.10364209,-0.081234604,0.0723719,-0.031189201,-0.00989656,0.09332054,-0.042039722,-0.09369118,-0.06688312,-0.06369621,0.07013113,-0.032779578,0.037267473,0.043946918,-0.030636858,-0.04307519,0.006712582,-0.0058099083,-0.018129606,0.031231405,0.08140386,0.039100002,0.0422189,0.10267534,-0.024701519,0.028708022,0.04647316,0.049769472,-0.0075593195,0.016726939,-0.035348777,0.0055273045,0.096131034,-0.020105725,0.032751597,0.019919211,-0.051151197,-0.15249433,0.007566251,-0.054306913,0.057825852,-0.058238037,-0.08445866,-0.057212245,0.07152068,0.027650837,0.027022606,-0.07985502,-0.10329839,-0.019990183,0.046849847,0.025243523,-0.047055993,-0.025103489,0.048155572,-0.046543207,-0.020632807,-0.024879841,0.038917206,0.05845562,0.058296863,-0.020835383,0.009300727,0.020207005,-0.026119066,-0.022226747,0.009839313,0.03602323,-0.034784116,-0.022129811,-0.038658075,0.027586032,0.09994704,-0.05108776,0.008608663,0.039056744,-0.038257144,-0.002329945,-0.0031041945,0.01399791,0.008824804,0.0063221245,-0.08284509,-0.0934463,-0.028522639,-6.7351095e-08,-0.0021029986,-0.0317312,0.03992419,0.001439719,-0.04051686,0.097849995,-0.02544661,-0.0015321927,0.0053277994,-0.025144028,-0.0089218505,-0.024244022,0.038111664,0.0926681,-0.04967437,-0.02934614,-0.0064981054,0.0935452,-0.012005859,-0.071491264,-0.03616441,-0.05018246,-0.023230143,0.011757987,-0.01873932,0.020898473,-0.021868164,0.036922134,0.025270022,0.020795032,-0.05771748,-0.0060056434,-0.053424638,-0.10511789,-0.08455817,-0.0073454315,0.04120474,0.021112416,-0.12135741,-0.074550524,0.053981926,0.050402585,-0.09335765,0.0045659915,0.011979065,-0.11997296,-0.041706365,-0.014853668,-0.00019139762,0.059870034,0.012866721,-0.029160235,0.060098022,0.085292704,0.08855249,-0.051101763,-0.04926252,0.037536684,0.024480883,-0.046019565,0.03130469,0.052067257,-0.016296338,-0.021914791} 0.93333334 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:03:43.582362+00 2026-01-25 01:27:51.667205+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 507 google ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB 1 t 510 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Sehr zufrieden,\nSchnell zuverlässig und freundlich. Habe das Auto für 5 Tage gemietet mit Vollkasko bei jeglichen Schäden. Die Kaution bei der Abgabe sofort erstattet bekommen. Nur zu empfehlen. Danke an Antonio und Carmen Isaac. sehr zufrieden, schnell zuverlässig und freundlich. habe das auto für 5 tage gemietet mit vollkasko bei jeglichen schäden. die kaution bei der abgabe sofort erstattet bekommen. nur zu empfehlen. danke an antonio und carmen isaac. 5 2025-01-25 01:27:48.342326+00 de v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Sehr zufrieden, Schnell zuverlässig und freundlich.", "J1.02": "Habe das Auto für 5 Tage gemietet mit Vollkasko bei jeglichen Schäden. Die Kaution bei der Abgabe so", "R1.01": "Nur zu empfehlen. Danke an Antonio und Carmen Isaac."} {-0.06675762,0.11032356,-0.005653568,0.04966494,0.013309496,0.0456155,0.066257924,0.079768255,-0.035699952,0.024962673,-0.03184643,-0.014079328,-0.047895025,-0.018335765,-0.0833588,0.029959636,-0.07860562,0.05394432,-0.099357866,0.06329723,0.022911193,-0.06221396,0.003081908,0.09509036,0.061328843,-0.01976259,-0.05849759,0.04116918,-0.008873612,-0.04534529,-0.030540422,-0.02632431,0.021183206,0.032620996,-0.04987021,-0.100497276,0.018160436,0.06428577,0.009497445,0.053977363,-0.0015116641,0.019926596,-0.17899999,-0.0472641,0.018216994,-0.059104018,-0.006235185,-0.010576666,-0.04191283,-0.026236676,-0.09379191,-0.06524726,0.016344272,-0.0839217,-0.06499522,-0.080463804,-0.03275261,-0.06535041,0.09197001,0.014664498,0.0631927,-0.052472882,-0.019202335,0.063609906,-0.07046025,0.041590344,-0.04374116,-0.0287814,0.0077384063,0.05740813,0.05370611,-0.107082374,0.040187877,-0.04083399,-0.0651755,-0.029423265,-0.08017596,-0.041854188,0.001395018,-0.045404926,-0.06168788,-0.046379644,0.01132303,0.011376478,-0.037929405,0.0019018061,-0.026585242,0.067594215,-0.0030247427,0.021021008,-0.013079781,0.019735085,-0.030933177,-0.011896305,-0.07141094,-0.0020565921,0.039026894,-0.10000424,0.019988965,0.08060953,0.030569406,-0.015228573,-0.0057777134,0.0948918,-0.004420714,0.0381497,0.04009028,-0.010788967,-0.05179008,-0.09733702,-0.07909664,-0.072370894,-0.06631292,-0.118824154,-0.010395042,0.05889495,0.017617878,-0.008938507,0.03921475,0.02033914,0.0015245355,-0.015742376,-0.0008602662,-0.061475083,0.052742105,0.022027873,-0.0057055857,1.657788e-32,-0.04005562,0.019115292,0.00052793213,0.043706384,-0.04120279,-0.021690508,-0.06267388,-0.015253976,-0.0035472268,0.042518947,0.04180979,0.03912355,-0.009743542,-0.055479635,0.023800956,0.049833465,-0.028178656,-0.07213578,0.016398247,-0.06365173,-0.030816268,0.020679316,-0.021131914,0.004440458,0.013354133,0.11081039,0.01691769,-0.049829874,0.07797053,0.07962284,0.035918873,0.034267157,-0.009451084,-0.0031371687,-0.0035002315,0.03803349,-0.038975194,0.11134035,0.039588377,-0.029342946,0.0780713,-0.057404745,-0.01517703,-0.038725656,0.036963746,0.04193582,0.038567804,0.0013721238,0.02913628,0.014066921,-0.046178795,-0.039086487,0.03799847,0.002829886,-0.023500942,0.05159337,-0.061580088,0.0651814,-0.013041368,0.026373804,-0.031948563,0.02009128,0.04292498,-0.075210914,0.086995944,0.0117460415,0.092417814,0.013098153,0.005522352,0.025642144,-0.035161592,0.06217882,0.033551402,0.03713418,0.042966913,0.05501358,0.00014089963,-0.027138576,-0.1053314,0.056453075,-0.1383469,-0.111486964,0.0047025257,0.01273644,0.0148593625,-0.0058005643,0.066957526,-0.047377545,0.025748732,0.14407279,0.06701024,-0.043969575,0.0008477196,0.022837972,-0.0037297728,-1.5765325e-32,0.07908586,0.024516566,0.009875361,0.040233962,0.010266048,0.04597637,-0.05951938,0.02189264,-0.11542502,0.016833007,0.019813808,0.05025853,0.048416864,0.039818767,0.030643491,0.022747017,0.022197558,-0.014503687,0.06458247,-0.050348092,0.062976286,-0.023097048,-0.032377142,0.03904347,0.05964695,0.047601316,0.034360494,-0.034520168,-0.026362699,0.002368048,0.01327103,-0.008768224,0.0017060862,0.031333055,-0.013471313,-0.024220021,0.010829521,0.04326331,-0.028855745,0.060911693,-0.0698666,0.016100062,0.018861689,0.0029835354,0.012239485,-0.034690198,-0.04218648,0.029314386,0.0150869265,-0.07624066,0.06959596,-0.019057363,-0.104477055,-0.02137474,0.012561063,0.0118555995,0.10707093,-0.032530565,-0.098104164,0.11144525,-0.015372915,0.0451926,0.10644554,-0.08986373,0.00090359186,-0.06962473,-0.12157279,-0.019421292,-0.017378334,0.012016574,0.065158635,-0.048056517,0.014999844,-0.005552171,-0.060785268,0.019161941,-0.0021908118,0.08669843,-0.020700281,0.001261785,-0.011395711,0.017538626,-0.036377545,0.117989264,-0.09376137,-0.05323919,0.018989483,0.044275187,0.028778838,0.026704239,0.0314845,0.10677014,0.02161589,0.0066822097,-0.0801748,-5.9454162e-08,0.031160092,-0.04157149,0.018361364,-0.019155165,0.02959871,0.024191217,-0.037069228,-0.0039654803,-0.06777453,0.10897775,0.026942596,-0.008729997,0.021599911,0.06079839,-0.088190064,-0.01866195,0.017785644,0.02233798,-0.01712124,-0.0036552064,0.010973982,-0.050057646,-0.0632627,-0.06442209,0.02257011,-0.05899198,0.0047308127,-0.06740175,0.010839998,-0.034482583,0.08989334,0.13008934,-0.04422373,-0.0133713735,-0.04836944,0.024171442,-0.020324321,-0.051817,-0.0910581,0.0073313997,0.074146695,-0.023230603,-0.024901168,-0.052263338,0.0018727441,-0.11535046,-0.02602693,-0.055004973,0.0046151886,0.017042113,-0.086691484,-0.052049007,-0.03623493,0.08266145,0.014354492,-0.021413071,0.04026666,-0.027479824,-0.01680045,-0.028304843,0.026333824,-0.003934998,0.0071320026,0.016291393} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:03:32.630731+00 2026-01-25 01:27:51.669187+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 510 google ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE 1 t 513 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Empresa seria, coches de calidad y personal cualificado y serio.\nIniciamos nuestras vacaciones alquilando en CLICKRENT, nos vinieron a buscar Antonio y Dani al aeropuerto, 2 chicos muy amables y profesionales, nos recomendaron de camino a CLICKRENT varios sitios donde comer, visitar, etc.. Al llegar a CLICKRENT nos atendieron Carmen y Nestor, muy bien también, nos explicaron toda clase de dudas etc... Sin duda volvería a alquilar con ellos.\nCoches nuevos, en condiciones y limpios.\nGracias por todo equipo. empresa seria, coches de calidad y personal cualificado y serio. iniciamos nuestras vacaciones alquilando en clickrent, nos vinieron a buscar antonio y dani al aeropuerto, 2 chicos muy amables y profesionales, nos recomendaron de camino a clickrent varios sitios donde comer, visitar, etc.. al llegar a clickrent nos atendieron carmen y nestor, muy bien también, nos explicaron toda clase de dudas etc... sin duda volvería a alquilar con ellos. coches nuevos, en condiciones y limpios. gracias por todo equipo. 5 2025-01-25 01:27:48.342344+00 es v5.1 A1.01 {O1.01} V+ I2 CR-N {} {"A1.01": "Empresa seria, coches de calidad y personal cualificado y serio. Iniciamos nuestras vacaciones alqui", "O1.02": "Coches nuevos, en condiciones y limpios."} {-0.001084162,-0.0021711776,0.009751083,-0.072263114,-0.088063635,-0.017940667,0.12094208,0.025300736,-0.0011279396,-0.013236244,0.06769148,0.007496838,-0.02737324,-0.012806015,0.047647376,-0.035711363,-0.016153647,0.0005185657,0.0106432615,0.07198189,0.057235993,-0.07730924,-0.077271655,0.11916112,-0.07702742,-0.024672154,-0.0029518222,-0.017159086,-0.058762345,-0.052211042,-0.019368334,0.075924456,0.070585504,-0.023096003,0.009072647,-0.029711518,0.013878227,-0.072215475,-0.07257978,0.042756844,-0.13076179,0.0019136638,-0.01123441,0.014519638,-0.020017978,-0.082024336,0.087158956,0.09316287,0.060573246,-0.027445968,-0.087036185,-0.017969899,0.0027509003,-0.04800064,-0.021652639,-0.020065773,-0.059081428,-0.02206121,0.06376359,0.042565003,0.069917634,0.012249349,-0.021673715,0.07132854,0.027910009,0.0057841823,0.009733055,0.02359929,-0.06887762,0.048972547,0.022429371,-0.08109857,-0.0067530167,0.091647536,-0.058609784,0.022429088,-0.050088227,-0.008235494,-0.017222324,-0.025496919,-0.010095231,-0.014128108,-0.026829334,-0.03506771,0.059740648,0.010559384,-0.00076222693,0.0071811327,0.048562825,-0.04067935,-0.04061153,0.070779786,-0.061320696,-0.042756993,-0.030122716,-0.0069597727,-0.001795512,-0.023587288,-0.0008327284,0.044197675,0.11569799,0.077781744,0.07326703,0.045563832,-0.05095157,0.06185512,0.01851922,0.0061381357,0.02022978,0.09339556,-0.10153269,0.00026005687,-0.048177455,-0.06311469,-0.06807144,-0.0077136536,-0.057198115,-0.03645039,0.034401763,-0.034643915,0.037102994,-0.02132543,-0.08631767,-0.058223575,-0.009339818,-0.064269796,0.042751323,1.3281589e-32,-0.023076924,0.025249878,0.0057854406,0.05376763,-0.018287027,0.06641058,-0.02345506,0.006583747,-0.059504252,0.0017490862,-0.052105136,0.062247973,0.045061823,0.06882285,0.07582158,0.07217086,-0.020463683,-0.001764211,0.041834973,0.016069973,0.009555894,0.06361093,-0.02601553,0.03435013,-0.035643872,0.03723074,-0.012283525,-0.035528272,-0.05403742,0.03940765,0.010705852,0.0004877705,0.038568128,-0.041650128,0.016736804,-0.033452895,0.044288907,0.014064247,-0.0016074628,-0.049448077,-0.035865113,0.044968326,0.014073017,0.053862147,-0.03894925,0.042941343,0.07773077,0.01068263,0.024854235,-0.008595886,-0.081223525,-0.05861093,-0.05663245,-0.0060798745,-0.030363912,0.022291057,-0.077027164,0.024618825,-0.065070696,-0.06920541,0.007264229,0.01115844,0.049143236,-0.07945783,-0.04478329,0.008018978,0.006300127,0.015350746,0.16057949,0.062211994,-0.06137149,0.014894694,-0.04164655,0.028575784,0.029170474,0.016010989,-0.0053303014,-0.028625814,-0.008295638,0.070533514,-0.005998709,0.012938671,0.043671418,0.0444208,0.077970415,0.04702265,0.048637006,0.028816825,-0.055576026,0.18048197,-0.034550834,0.11573623,0.048073705,0.011914277,0.0108318105,-1.430089e-32,0.01713143,0.038641054,0.04624808,-0.002921683,-0.023653572,0.045596316,-0.020055102,-0.017422874,0.00030895078,-0.073943295,-0.08180531,-0.14206256,0.1093061,-0.031379428,-0.0786595,0.09703455,0.002979384,-0.110246904,-0.12686354,-0.070838384,0.03571158,0.09306379,0.0031277386,0.03529922,-0.00511462,-0.100732595,0.015468473,0.01156979,-0.02253672,-0.029348617,0.064116135,-0.0059823897,-0.03729537,0.04766516,-0.021519097,0.07111526,-0.0054079494,0.03416944,0.024015533,0.06027507,0.023899214,0.032158487,0.068757474,-0.01554048,-0.003536735,-0.010729452,-0.030355176,-0.1541391,-0.07131253,-0.078060344,0.06977087,-0.06954838,-0.08024976,-0.016054375,0.072075985,0.002144186,-0.01494836,-0.09375808,-0.08747522,-0.03237838,0.043877117,0.00093067,-0.05592277,-0.018201673,0.033668183,-0.052289996,-0.040295653,0.032148622,0.009263505,0.031444654,0.0836639,-0.039018735,-0.06493121,-0.036216144,-0.04466172,-0.028315805,-0.031581007,-0.025454069,-0.005449508,0.0006464561,-0.0029080303,0.0044160224,0.03108733,-0.060414996,-0.006828764,0.07837185,-0.05588483,0.002023209,0.02487052,0.052272532,-0.006439586,0.007471758,-0.08380815,-0.08555961,-0.06354273,-5.816684e-08,0.025065098,-0.036432616,0.027269464,0.027136523,-0.03601071,-0.03497637,0.024419975,0.046876997,0.024964966,0.0672498,0.023603363,-0.03651937,-0.02656554,0.050474286,0.006669012,0.05959109,0.088448845,0.10899495,-0.022341216,-0.044850856,0.08743675,-0.011234854,-0.049633015,0.039545707,-0.01348446,0.022731904,-0.04186693,-0.029628001,-0.010573778,0.01921607,-0.046808004,-0.023389528,-0.04677797,-0.13169356,-0.050753806,-0.035915602,-0.021511419,-0.02258503,-0.017235374,-0.03156606,0.113420606,0.053061154,-0.051884465,0.032708563,-0.043899078,-0.08040854,0.03871618,0.0016033861,-0.008200542,0.005152986,-0.03287187,-0.04362704,0.063989334,0.017874438,-0.03645062,-0.03757564,-0.0021946647,0.048541043,-0.010985284,-0.015446835,0.05768243,0.030798988,-0.03718471,-0.049330615} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:03:22.07888+00 2026-01-25 01:27:51.684854+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 519 google ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE 1 t 522 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Tout c'est bien passé pour nous, merci à Dany et Antonio pour leur professionnalisme.\npour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre ,juste la caution de 1000 euros.\nVoiture à rendre avec le plein sans le nettoyage à faire . tout c'est bien passé pour nous, merci à dany et antonio pour leur professionnalisme. pour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre ,juste la caution de 1000 euros. voiture à rendre avec le plein sans le nettoyage à faire . 5 2025-01-25 01:27:48.342397+00 fr v5.1 A1.01 {} V+ I2 CR-N {"Dany et Antonio"} {"A1.01": "Tout c'est bien passé pour nous, merci à Dany et Antonio pour leur professionnalisme.", "J1.01": "Voiture à rendre avec le plein sans le nettoyage à faire.", "P1.02": "pour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre, juste la cauti"} {-0.095615275,0.061846737,0.00998078,-0.07313751,-0.06800062,0.05512747,0.10136339,0.11877548,0.011744839,0.036806237,-0.034337524,-0.10135357,-0.0033182614,-0.0046696574,-0.11579408,-0.07098365,-0.033534136,0.032150824,-0.008406269,0.08886146,0.03251996,-0.02857579,-0.06747857,0.017967947,-0.025560034,-0.09362915,0.04393537,-0.011868169,-0.012546665,-0.022365075,0.055235177,0.06399776,0.009235495,-0.0051012645,-0.004315636,-0.018512025,0.03162783,-0.07952388,0.009490119,0.057092886,-0.006949388,0.010893367,-0.13300274,0.020226704,-0.007732424,0.024117691,0.05534478,0.08972185,-0.066032104,0.007762542,0.018712176,0.02115809,0.0994202,-0.04959589,-0.031192806,-0.01919654,0.031185562,-0.046125345,0.028744414,0.00053818285,-0.02152085,0.031049252,-0.0065599927,-0.0053331526,-0.062950835,0.075562835,0.016084248,-0.03512058,-0.058051817,0.04935128,0.064903624,-0.095119886,-0.009420763,-0.0134236505,0.042069566,-0.0021079371,0.004124824,-0.025982898,-0.03907781,-0.11120085,-0.03222881,-0.027763726,0.026281884,-0.029742455,0.021438468,-0.0118955495,0.0048737824,0.01353976,0.0948633,-0.056634504,-0.015977431,-0.021353446,-0.051143482,0.011675202,0.011885105,-0.0062861876,-0.027448324,-0.036586817,-0.034568723,0.045054782,0.036620397,0.008001373,-0.0011837397,0.08628817,-0.03438522,0.017051334,0.09670993,-0.09494692,-0.015830737,0.038701113,-0.008470304,0.014634509,0.017930057,-0.021338634,-0.0075368714,0.04292688,-0.03711079,-0.039027255,0.009520937,-0.111978576,0.04852751,0.042228512,-0.018076368,-0.013972878,-0.03332367,-0.03858723,0.035624254,9.052153e-33,0.0042785914,0.019195408,0.02955051,-0.086158864,-0.07343413,-0.033103503,-0.022051634,0.07521316,0.004805124,-0.02260434,-0.024230056,0.0790704,-0.033474594,0.042155176,-0.06906314,-0.014863632,0.093031794,-0.0022248428,0.14405078,0.013438623,-0.095410615,-0.098728545,0.06481903,0.08193602,0.060742337,0.01071668,-0.029118849,-0.055326365,0.07151495,0.04555519,-0.061291147,-0.0224707,0.053582907,-0.048109792,-0.051351808,0.013221219,-0.06067686,0.05794569,0.024402646,-0.012073839,0.00062599126,-0.0034925267,0.040907055,-0.045865044,-0.028237445,0.04030104,-0.0061352267,0.006335129,0.02455784,-0.03298303,-0.017587697,-0.037097607,-0.08321787,0.013252108,-0.041843724,-0.07516213,-0.085089505,0.06827871,-0.056871943,-0.110435106,0.041215375,-0.008350311,-0.046959117,0.039195128,-0.075390525,0.0118079325,-0.04004534,0.04242477,0.05560415,-0.051094793,-0.17340727,0.0213562,0.011585013,0.00053266034,-0.009970979,0.12739637,0.014759956,0.048625845,0.04453388,0.016886864,-0.04962432,-0.010671794,0.01991081,-0.053211164,0.09122621,0.0006717369,0.015635764,0.063357,0.009689265,0.02623032,0.054315384,-0.008247254,0.025704272,0.02344188,0.07115529,-1.1856724e-32,-0.017053854,0.020240603,-0.0027850005,0.0868677,-0.021327915,0.027720736,0.01714972,-0.013775662,-0.012180554,-0.0201012,-0.0803131,-0.10194257,0.11312725,-0.05070202,-0.009067352,0.024569403,-0.07604881,-0.004094179,0.001209095,-0.055523038,0.021707237,-0.0118507845,0.039922535,-0.055599418,-0.02743453,-0.012045811,-0.05525182,0.044823896,-0.058450345,0.01341926,-0.017942486,0.067227185,0.0063957917,0.042823363,0.030480813,0.01447493,0.11896534,0.09678804,0.03005052,0.07861776,0.024367226,0.031425897,0.026614353,-0.006967611,0.05968354,-0.059568357,-0.02813084,-0.089782424,0.056625992,-0.05335871,0.04284146,0.04165246,0.025129212,-0.029447543,-0.022782886,0.04038703,0.05548305,-0.04465141,-0.040459324,0.007540882,-0.008977543,0.06932763,0.035544217,0.057898305,0.019217696,-0.055298753,-0.1078062,0.08112273,0.04284249,-0.06227016,0.08974604,-0.014071368,-0.0069792205,0.008305477,-0.06456667,0.01632474,0.005589244,-0.018719906,0.06209026,0.12387514,-0.100481324,-0.0032731588,0.011003781,0.0074445144,-0.00018589185,-0.02540256,0.043848414,-0.08873122,-0.016768074,-0.04444455,-0.059008505,-2.4609499e-05,0.0043781437,-0.09545367,-0.021851746,-5.3897935e-08,0.013387196,-0.10275782,0.007024968,0.017242862,0.04044195,-0.13273062,-0.07214749,-0.041430686,-0.066744395,0.032536983,0.040504836,-0.020493466,-0.07971443,-0.03953013,-0.04029755,0.013834721,0.0013412096,-0.012698991,-0.027526632,0.006425224,0.10817447,-0.052387603,0.0034253572,-0.067938425,-0.039162826,-0.08245102,-0.030619174,0.004455767,-0.07041791,-0.022329938,-0.02332519,0.034545522,-0.0005747898,-0.05807801,0.039090022,-0.023842229,0.017493522,0.03922715,-0.0058616833,0.039614137,0.07927078,-0.021922713,-0.07063252,-0.032259956,0.036339957,-0.0705093,-0.032264594,-0.005641734,0.03902798,0.036511872,0.0029932777,0.06332057,0.08202283,0.06042594,-0.014163999,0.031969786,-0.02134828,-0.023723025,-0.052642114,-0.02474143,-0.03145369,-0.017882416,0.069149464,-0.07258303} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:02:30.880971+00 2026-01-25 01:27:51.718715+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 522 google ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB 1 t 525 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown La experiencia ha sido increíble, desde el trato de Isabel que fue la chica que nos atendió y nos comentó todo lo que teníamos que saber, hasta los chicos Carlos, Néstor y Antonio que nos recogieron y nos trajeron de vuelta al aeropuerto y nos comentaron cosas que podíamos hacer y sitios que visitar.\nUna compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷\n¡Gracias a todo el equipo! la experiencia ha sido increíble, desde el trato de isabel que fue la chica que nos atendió y nos comentó todo lo que teníamos que saber, hasta los chicos carlos, néstor y antonio que nos recogieron y nos trajeron de vuelta al aeropuerto y nos comentaron cosas que podíamos hacer y sitios que visitar. una compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷 ¡gracias a todo el equipo! 5 2025-01-25 01:27:48.342403+00 es v5.1 A1.03 {R1.01} V+ I3 CR-N {} {"A1.03": "La experiencia ha sido increíble, desde el trato de Isabel que fue la chica que nos atendió y nos co", "O1.01": "Una compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷"} {0.08236383,0.035904717,0.016434653,0.0071728006,-0.05933758,-0.00056899176,0.028588183,0.013119957,-0.060970973,0.021919034,0.0898519,-0.02077985,-0.024101712,-0.03619082,-0.015948072,0.010004464,-0.038302492,7.121379e-05,-0.052337438,0.033845518,0.08094044,-0.025635576,-0.021959277,0.15459783,-0.07050977,0.019273026,-0.022398902,-0.0038572212,-0.056236,-0.038795777,-0.02729282,0.04007004,0.060611237,-0.011450373,-0.022699788,0.006051318,0.071000084,-0.06568519,-0.057548318,0.014556525,-0.11305759,0.002906942,-0.012711398,-0.01151413,-0.070330516,-0.10620729,0.029703666,0.09253735,0.05266087,-0.008765529,-0.055927202,-0.0014796982,-0.004707605,-0.0389258,0.0014255372,0.049407158,-0.024857234,-0.07937921,0.047416538,0.008996271,0.026114902,0.050141532,-0.02171805,0.047261357,-0.05459318,-0.062851116,-0.032189872,-0.06001511,-0.012074578,-0.0064352523,0.090790085,-0.052123416,-0.0047823195,0.029777087,-0.030460186,0.054057218,0.036448266,-0.0067874296,-0.024486324,-0.053971045,0.006242153,-0.035345457,0.03351484,-0.030165376,0.015491948,0.0062450934,-0.047256693,0.026872417,-0.029377872,-0.04410297,-0.04102841,0.029029354,-0.040976718,-0.01902453,-0.0204976,0.0043518627,0.0050804773,-0.039215643,-0.042548113,0.008277157,0.094749495,0.09874851,0.07276082,0.10250903,-0.08509714,0.08853947,0.06082895,-0.07088571,0.0368568,0.028689513,-0.06799285,-0.061884996,-0.03216113,-0.04997324,-0.075737,0.000701808,-0.00963732,-0.055510778,-0.07706665,-0.057133403,0.007086188,-0.07513238,-0.019299824,-0.018576011,0.10230707,-0.04002432,0.09311997,1.2550822e-32,-0.024290223,-0.0023984467,0.013775054,0.099994555,0.07846046,0.057946283,-0.08341032,-0.03238601,-0.0473078,-0.011426779,-0.0877401,0.046794545,0.047236957,-0.040605903,0.07573187,0.03222024,0.026164178,-0.028412012,0.031231081,0.017686214,-0.018648785,-0.050761547,-0.008942518,0.04883484,0.02824924,0.07667675,-0.025170434,-0.029187763,-0.032111757,0.04833629,-0.008877174,0.011574436,-0.024504283,-0.07660653,-0.039700452,-0.020371458,0.06497261,0.014671387,-0.018223235,-0.03611292,-0.03979762,-0.015342289,-0.0008395602,0.0043206685,-0.07131316,-0.018818319,0.0885819,0.0020212568,0.063952446,0.024135077,-0.053727195,-0.028863408,-0.041827615,-0.04606819,0.030883254,0.038907368,-0.032755587,0.048138224,-0.009979591,0.011430862,0.11244675,-0.010316658,0.03329165,0.0047983374,0.024091544,-0.0019595919,0.03835918,0.06329132,0.11758156,0.07284009,-0.03656835,0.028259447,-0.052544292,0.038742546,0.058080304,-0.009883761,-0.0038814445,-0.04587831,0.020219548,0.07428032,-0.014062274,-0.00088096637,0.050979707,0.039958626,0.06593375,-0.015243618,-0.009072864,0.054520942,-0.0807784,0.10800981,0.0079500945,0.13210994,0.06037754,-0.014231143,0.026390444,-1.5747046e-32,-0.017660603,0.027249698,0.005487418,-0.0972905,-0.027503422,0.010953952,-0.015548003,0.063365445,-0.048885316,-0.105284624,-0.09674256,-0.13330522,0.09617824,-0.04997114,-0.01544224,0.0922531,0.024337996,-0.08954656,-0.06642898,-0.06474304,0.021825138,-0.014971297,0.028759744,-0.103614055,0.0036891764,-0.05966152,0.034774557,0.012830192,-0.08947307,-0.04576575,0.036635596,-0.008427417,-0.019974874,0.052180815,-0.039360844,0.050322417,0.0028468785,0.047786888,-0.004152756,0.01530075,-0.0019189322,0.05170168,0.053987958,-0.05056006,0.010802683,0.050339278,0.033369284,-0.12576059,-0.0606053,-0.030965475,0.06690374,-0.117896445,-0.08460832,0.046157572,0.10430869,0.008610476,-0.0014339556,-0.03760688,-0.071218744,-0.08129876,0.012577162,-0.0090006655,-0.077855304,0.037260484,-0.0008205399,-0.020828577,-0.044773966,0.027416917,0.031459436,0.023597516,-0.00011356436,-0.01658621,-0.12647215,0.06026854,-0.01988621,-0.00578082,-0.038323473,-0.013220596,-0.015869604,-0.020384608,-0.003385852,0.006100436,-0.013188901,-0.069850884,0.00538328,-0.02475378,-0.01808512,0.003083332,0.0039876397,0.07969983,0.0006617792,0.046835113,-0.08796414,-0.15821426,-0.093798414,-5.816576e-08,-0.046951164,-0.0047608735,0.019929787,-0.058477487,0.06325809,0.029255198,0.033251133,0.031946648,-0.03997254,0.058710802,0.037960354,-0.024636995,0.0010948227,0.05964196,-0.005895525,-0.010681844,0.07201665,0.03658606,-0.010992348,-0.04838771,-0.021417713,-0.020927643,-0.0589857,0.03912651,0.023986472,-0.016834332,-0.086897194,-0.058086794,0.010362526,-0.038015187,-0.038279623,0.0048910202,-0.05255406,-0.13627532,-0.06924731,-0.045798875,0.0036853084,0.022376426,-0.03701822,-0.088245094,0.057485208,0.0397829,-0.06988798,0.032388814,-0.0037316913,-0.08790829,-0.018703783,-0.061399005,-0.010734678,-0.00038424428,-0.033183377,-0.02930259,0.078814834,-0.0031842855,0.03175679,-0.046283916,-0.006751628,0.0036246937,0.009724937,0.05217256,0.017240793,0.06705541,-0.038946744,-0.047777567} 0.95 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:01:55.290413+00 2026-01-25 01:27:51.730151+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1514 google ChdDSUhNMG9nS0VJQ0FnSUNVZzg3U19RRRAB 1 t 1517 Go Karts Mar Menor unknown Great track and several carts to choose from 100 to 400cc great track and several carts to choose from 100 to 400cc 4 2020-02-01 01:52:39.833374+00 en v5.1 O2.03 {O3.02} V+ I2 CR-N {} {"O2.03": "Great track and several carts to choose from 100 to 400cc"} {-0.0102327345,0.0035799441,-0.029672213,0.026869172,-0.036042463,0.054746598,-0.068969935,0.080124676,-0.09303704,-0.053964946,-0.053525776,-0.010632126,-0.022233324,-0.00784033,-0.049681034,0.034452792,0.10463165,0.027414022,-0.02619962,-0.03816434,-0.034721285,-0.028325716,0.022120504,0.03773656,-0.12842305,0.033120725,-0.09614852,0.07561841,-0.016166762,-0.06181931,-0.08516335,0.02714036,0.07573151,-0.04803116,-0.0064312397,-0.061054777,0.04613776,-0.032376166,0.06573151,-0.07272597,-0.014052648,-0.0059342496,0.03471299,0.09003993,0.022261487,0.04022512,-0.014569283,-0.012672191,0.048609238,0.041314453,0.061973754,-0.050564416,0.008152029,-0.039212726,-0.025475783,-0.00038589028,-0.043433417,0.035032596,0.029263234,-0.073252104,0.0049760514,-0.061737895,-0.03741425,-0.046191487,0.003037269,-0.03952347,-0.08081159,-0.0075955098,-0.0139270695,0.058841277,0.021773864,0.04958717,-0.044988755,-0.019898424,0.034892883,0.051079813,-0.03530846,0.0064446437,-0.06256997,0.04172959,-0.0103131365,-0.05064998,-0.039385706,-0.12558363,0.005431011,-0.048463237,0.08121847,0.023784965,-0.0067819613,-0.029957792,-0.023181377,0.04104645,-0.04711335,-0.06763667,-0.04823596,0.08612805,0.001634336,0.025582826,0.06186216,0.007442129,0.08238952,0.039540783,0.00800627,-0.020207332,-0.048052184,0.000658887,-0.005651792,0.11204898,0.015383939,-0.012933641,0.064435564,-0.03408843,0.012067006,-0.038933054,-0.024689646,-0.028737588,-0.06533774,0.04897162,0.028705057,0.050380066,-0.06268799,-0.023017807,0.008729738,0.0038483152,-0.014355497,-0.041752774,0.03329664,-1.3666019e-33,-0.048617,-0.02115542,-0.007512809,-0.023185123,0.061017375,-0.002835823,-0.0070797554,-0.015550851,-0.04281799,0.072901234,0.01511285,-0.007220599,-0.004063424,0.005591638,-0.026601665,-0.08945328,-0.052765615,0.00039063985,-0.082685836,-0.0020144254,-0.0685562,0.038140517,0.06011494,0.004818286,0.11463439,0.06454349,0.06937323,-0.0291125,0.0073428527,0.042421017,-0.003570324,-0.008698332,-0.052436735,0.04275021,-0.020986868,0.04654469,-0.096611805,-0.03587643,0.012330863,-0.006834626,0.035250787,0.01082198,-0.055168305,-0.02276248,-0.059329495,0.045289226,0.024647579,0.04914748,0.015351193,0.026913192,-0.06424625,-0.018243574,-0.06788886,0.051513623,0.009558983,-0.08449365,0.062378153,0.03156538,-0.073910564,0.0044754576,0.019250205,0.0844488,-0.05144137,-0.047143146,-0.039174892,0.032864727,-0.062944,-0.0058697723,-0.022517428,0.081322476,0.004908786,-0.043585647,0.033142067,-0.027472416,0.063405186,0.0588275,0.019581882,0.054639086,-0.05121288,-0.013982742,-0.13478857,0.061038263,-0.07128514,-0.027849386,0.020394826,0.02376229,-0.050176173,-0.0022333562,-0.02992812,-0.007548681,-0.003673209,0.023606295,-0.04782579,0.055554915,-0.025396755,3.2639373e-34,0.079651095,0.11232146,0.13442369,0.08883224,0.05191821,0.052906696,0.03610949,-0.008795504,0.06668548,0.024303712,-0.021861082,-0.016346505,0.03654174,0.07863531,-0.04475191,-0.008626934,0.03459704,-0.04129142,0.017912377,-0.09493311,0.017019344,0.07090912,-0.017546818,0.016022777,0.025781931,-0.016828135,-0.05670217,-0.052385475,0.0071369833,0.007861532,-0.08765999,0.017487362,0.026562002,0.022455825,-0.11034133,-0.0007718521,0.045120105,0.16238923,-0.0222888,0.07586423,0.0045154584,0.007588748,-0.026031237,0.046322457,-0.041490372,-0.023335109,0.059097055,0.069064125,0.04710766,0.07224824,0.004604658,-0.030931735,-0.058537543,-0.008606672,0.013188378,-0.018670127,0.043850966,-0.021109495,-0.062792875,-0.038695227,-0.05908361,0.095182925,-0.030088378,0.061106235,0.0261959,0.0048244125,-0.044811532,-0.08344817,-0.060960557,0.011084067,-0.08222648,0.0024388053,0.02053769,0.027322056,-0.041806202,-0.029972423,0.053538904,0.028355004,0.11094877,0.072104715,-0.0733044,0.016166642,0.029753095,0.07274271,0.093152516,0.106765084,-0.14055073,-0.037321795,0.0569954,0.02062154,0.065663956,0.08026254,0.016238725,-0.026645726,-0.061709426,-1.6980566e-08,-0.012326399,0.119364284,-0.055559862,0.035761606,0.018195687,0.023984471,0.03810878,0.08097121,-0.08403513,0.030122241,0.1351431,-0.029972924,0.0024751963,0.026637461,0.0342618,-0.11560299,-0.023705928,0.06821796,-0.0050633606,0.033723198,-0.03793104,-0.035063706,0.089435846,0.07036948,-0.027560208,-0.078913994,0.019345092,0.06345977,0.008868291,-0.021882974,0.020818798,0.020614779,-0.00062777713,-0.013171786,0.074592024,-0.065705255,-0.0952084,0.07309875,-0.02832624,0.014410585,0.009152222,-0.060585722,-0.070764445,0.0042931857,0.011622696,-0.00494026,-0.016998673,-0.05047329,-0.032922644,0.0054232385,-0.033381097,-0.042915124,-0.0036734303,0.03479556,0.041613292,0.082428,-0.035159618,-0.015277053,-0.0830982,-0.002086105,0.04545657,-0.07930074,0.03652097,-0.029704977} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.003301+00 2026-01-30 02:01:09.626327+00 22c747a6-b913-4ae4-82bc-14b4195008b6 528 google ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE 1 t 531 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El servicio genial! Somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un poco lio para buscar el punto de recogida, es salir por la segunda planta del aeropuerto puerta 2 y todo recto! NESTOR , FRAN Y DANY, gracias por el servicio! Y la mujer que nos atendió a la vuelta qu no recordamos su nombre. Hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. Si volvmos a Gran Canaria alquilamos aqui fijo. el servicio genial! somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un poco lio para buscar el punto de recogida, es salir por la segunda planta del aeropuerto puerta 2 y todo recto! nestor , fran y dany, gracias por el servicio! y la mujer que nos atendió a la vuelta qu no recordamos su nombre. hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. si volvmos a gran canaria alquilamos aqui fijo. 5 2025-01-25 01:27:48.342425+00 es v5.1 A1.01 {} V+ I3 CR-N {} {"A1.01": "El servicio genial! Somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un po", "O1.01": "Hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. Si volvmos a Gran Canaria alqui"} {0.010703117,0.0746744,-0.0013933886,-0.06428616,-0.053447276,-0.04593142,0.047467217,0.0027133657,-0.031293076,-0.049629476,0.044015847,0.0397712,-0.019271955,-0.0441931,-0.023683462,0.031879663,-0.026941689,0.04436868,-0.019987615,0.06777233,0.14004235,-0.068656996,-0.08844677,0.11834878,-0.08839434,0.049049158,-0.049648877,0.05518409,-0.07003766,-0.061354786,-0.071690924,0.07977904,0.053857386,0.015118154,0.011242283,-0.018438786,0.055210132,-0.03501692,-0.005205079,0.0032141625,-0.06811593,-0.05178169,-0.019806694,0.04380666,-0.01857704,-0.020206213,0.06901886,0.043929268,0.07416596,-0.0352845,-0.06781311,-0.0030292114,0.062728845,-0.033385254,-0.054109536,0.005227503,-0.06986395,0.00519871,0.08239083,-0.009780494,0.003971651,0.037114035,-0.01583892,0.029017452,0.024037208,-0.0417636,-0.0065761553,-0.05092191,-0.093637,-0.0035467069,0.10028649,-0.080113865,0.007656867,0.04671312,-0.08657191,0.07009,0.012848341,-0.006210065,0.0028098782,-0.040615153,0.044710517,-0.017272629,-0.046074692,-0.020481875,-0.032403927,0.014162793,-0.02332716,0.034135856,0.05124975,-0.044166584,-0.030721918,-0.010707401,-0.005523768,0.008626296,0.027288925,0.047501035,-0.0076987897,-0.07613744,-0.041493915,0.0029245303,0.11304496,0.05916084,0.07419898,0.013427545,-0.03889871,0.07750239,0.024712345,-0.020243632,0.046035573,0.04212178,-0.10649282,-0.02927186,-0.016290836,-0.046458643,-0.11290248,-0.052558698,-0.040035892,-0.05020769,-0.112744465,-0.0627782,0.033759378,-0.05854696,-0.093554415,-0.01211166,0.023322321,-0.042515267,0.039820556,1.2930708e-32,-0.08627416,0.004568671,0.032938868,0.08734512,0.0119808735,-0.003582607,-0.016671106,-0.067555435,-0.017109182,0.01625152,-0.11079088,0.018209457,-0.03389931,0.03591609,0.06607638,-0.0075755515,0.029839719,-0.08710503,0.061674632,-0.031270694,-0.066972554,0.05528273,-0.032349616,-0.05505498,-0.006356226,0.07038736,-0.029421788,-0.12581064,0.00062652014,0.08320541,0.0121772,0.03854082,-0.022394119,-0.00029823626,-0.06072082,-0.046471898,0.020799924,-0.006803595,-0.04990538,-0.045322325,-0.04868339,0.03267356,-0.051574275,0.08676399,-0.057143483,0.005450461,0.04123482,0.079004295,0.093585975,0.017871795,-0.07767779,-0.058351714,-0.10231981,-0.050705846,0.036581863,-0.013097227,-0.052633755,0.045222063,-0.048896115,-0.023260633,0.012184332,0.019689217,0.05621929,0.0051137563,0.023623776,0.020924062,-0.0021451074,0.12554103,0.09883996,0.11134466,0.0027061347,-0.03445389,-0.07883222,0.08212716,0.011605378,0.009567827,0.063304976,-0.037174337,-0.024781482,0.024028514,-0.023924278,0.003596981,0.010136655,0.058454815,0.0663379,0.10779807,0.047171544,0.10932179,-0.043998215,0.068195075,-0.03445222,0.061618455,0.07300672,-0.0047031194,-0.010448977,-1.4481445e-32,0.015045698,0.011199151,0.010310029,-0.05613014,-0.05046662,0.023181114,-0.01231443,-0.025092311,-0.06258289,0.05457208,-0.15658082,-0.067845084,0.111057974,-0.012110768,-0.051858768,0.065938264,-0.0024663317,-0.06612305,-0.11711299,-0.031117026,-0.02270394,0.033021133,0.01153684,0.03532009,-0.06550346,-0.014907277,-0.013267265,0.04971586,-0.082143515,-0.03456285,0.008306495,-0.03770862,0.0008266171,0.06352389,0.035758287,0.004731227,0.058263164,0.06624791,-0.008415364,0.022519838,-0.084265076,0.018587245,0.057655536,-0.010101907,0.03359042,-0.016442973,0.03703295,-0.13935846,0.038702667,-0.057365388,0.060923513,-0.02206618,-0.0169566,0.047959525,0.074446104,-0.005896665,0.026490321,-0.067943074,-0.11659576,-0.050307386,0.009898437,0.025508795,-0.08436095,0.03383247,0.051408753,-0.039759282,-0.05542323,-0.054427236,-0.028911514,0.0029312314,0.0328518,-0.055413958,-0.046312105,0.02502583,-0.051882714,0.0030766632,0.018412577,0.0066010104,0.03306032,-0.027338734,0.0069309697,0.000982256,0.020262612,-0.03786025,-0.00792724,-0.00917217,0.022937287,0.03519815,0.024275094,0.0400609,0.03912205,0.026362844,-0.045460504,-0.084325545,-0.040876206,-5.4176727e-08,-0.0044671986,0.019794662,0.02017149,0.016884537,-0.016101802,0.04362122,-0.04732814,0.018690625,0.014063459,0.012813888,0.046908733,-0.005908644,-0.030313637,0.069652915,-0.020694008,-0.0031577477,0.052430365,0.09861255,-0.0013735141,-0.052473724,0.00958,-0.022940893,-0.037638444,0.039582476,0.008373123,-0.01996246,-0.025920996,-0.055021394,0.056810282,0.030316846,-0.072302006,-0.010489613,-0.069208026,-0.10908518,-0.057646707,0.0065626935,-0.050579563,0.04739126,-0.02155772,-0.08546628,0.09101098,0.002227181,-0.04746135,-0.022171108,0.020927256,-0.037365593,-0.024953596,-0.030729271,-0.011182003,0.04124948,-0.012896405,-0.041857008,0.10105202,0.07118843,0.0044202195,-0.024474464,-0.020352937,0.019072311,0.0086896615,-0.013020503,0.012079671,0.0791268,-0.037213225,-0.03369311} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:01:17.980228+00 2026-01-25 01:27:51.751355+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 539 google ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE 1 t 542 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Gran servicio, gran atención, buenos precios. Desde luego que volveré a reservar con esta empresa cuando vuelva a Gran Canaria o me coincida en otro aeropuerto.\n\nMi experiencia con el staff de Gran Canaria es de 5 estrellas 🌟 gran servicio, gran atención, buenos precios. desde luego que volveré a reservar con esta empresa cuando vuelva a gran canaria o me coincida en otro aeropuerto. mi experiencia con el staff de gran canaria es de 5 estrellas 🌟 5 2025-01-25 01:27:48.342467+00 es v5.1 A1.01 {P1.01} V+ I2 CR-N {} {"A1.01": "Gran servicio, gran atención, buenos precios.", "R1.01": "Desde luego que volveré a reservar con esta empresa cuando vuelva a Gran Canaria o me coincida en ot"} {0.012538406,0.017332787,0.048182342,-0.048107307,-0.055256214,-0.06635265,0.07458583,0.0345686,-0.009551206,-0.009622416,0.02930053,0.0025721465,-0.043445747,-0.027779762,-0.0045878896,0.012690537,0.018996267,0.035934206,-0.026847454,0.014030454,0.12481055,-0.111626916,-0.0759811,0.11882674,-0.02364186,0.0067175487,-0.036515325,0.045760922,-0.052102305,-0.07081808,-0.031742606,0.03979855,0.07360251,0.042871073,0.007983025,0.030594343,0.07028136,-0.013916196,-0.028683478,0.049696323,-0.103688695,-0.04145502,-0.03884107,-0.0204048,-0.003941776,-0.014205102,0.08134735,0.020920165,0.034127392,-0.009531779,0.014517961,-0.04753858,0.04430015,-0.026803117,-0.013581152,0.038993426,0.0053078607,-0.0723151,0.043833897,0.041208453,-0.062554225,0.008930354,-0.03743111,0.03090481,0.04264151,-0.027821152,-0.023316076,-0.00170177,-0.08799069,-0.058437087,0.12153271,-0.10692815,-0.02162023,0.083444625,-0.09768337,0.07330734,0.032242134,-0.012080509,0.0660488,-0.03243866,0.061050102,0.017796874,-0.028405728,0.002596966,0.0019572924,-0.005381909,-0.04524473,0.0070677884,0.07609602,-0.040707465,-0.017698206,0.04563217,-0.00880105,0.028774813,0.014669483,0.0016497601,0.008837375,-0.06496382,-0.022220403,0.012416018,0.07805773,0.027863825,0.085305415,0.029954864,-0.091972664,-0.028416947,0.011031259,0.015432293,-0.0028173816,0.08596713,-0.064167164,-0.045402374,-0.06822378,-0.019606601,-0.12433603,-0.041942343,-0.0045154896,-0.02326856,-0.076487824,-0.09799717,0.06505331,0.0010763041,-0.09412268,-0.03541623,-0.002381986,-0.05153847,0.025777612,9.245596e-33,-0.039754853,-0.03362014,-0.005734927,0.115590155,-0.02324631,0.04610264,0.010513183,-0.020904152,-0.030362904,0.06780167,-0.10902247,0.11201036,-0.0310528,0.03637284,0.032865886,0.061792694,0.06625551,-0.039966162,0.03642287,-0.021096718,-0.07842477,0.050117236,-0.045500144,-0.023230642,-0.01298803,0.019025793,-0.08762082,-0.14155892,-0.0102122985,0.05982376,0.027910199,0.015484628,0.012812472,0.0004225288,-0.04060702,-0.04020809,0.03432781,-0.015143934,-0.043416344,-0.071800694,-0.07084283,0.024780517,0.040141728,0.028896915,-0.015690435,0.014142126,0.05032702,0.030357026,0.094647095,0.033346254,-0.041989602,-0.046881866,-0.09442589,-0.02560108,0.052739616,0.019601252,-0.06491641,0.035175044,-0.0070883045,-0.01495233,0.027745519,0.049461458,-0.019101685,0.025167491,0.039876208,-0.010826568,0.017923312,0.04004431,0.14260772,0.082871005,-0.040758077,-0.008067247,-0.0072604204,0.09501239,-0.06585744,-0.015855543,-0.006059389,-0.024784809,-0.061156675,0.0507696,0.03351111,-0.031418838,0.041877612,0.07745117,0.082216226,0.11539584,0.068663426,0.03759449,-0.036355957,0.06961592,-0.05717347,0.037166845,0.046412256,0.048236884,-0.04144935,-1.0095047e-32,0.017459977,-0.030064749,0.0062622176,-0.020581096,-0.014763124,0.07643448,-0.025544984,-0.06564502,-0.11774874,0.053437326,-0.1214229,-0.07391338,0.07616541,-0.036329933,-0.03570241,0.07695168,-0.04308306,-0.06836265,-0.111522764,-0.023742663,-0.005906325,0.023823602,0.008018408,0.03977724,-0.0097339535,-0.079779826,0.024493057,-0.019323418,-0.04939732,-0.03443885,-0.017029537,-0.046733264,0.034428608,0.017614359,0.034213573,0.0011839992,0.085474014,0.030535808,0.00622529,0.0012398107,-0.061108004,-0.0005418093,0.087404504,-0.014522265,-0.006883156,-0.021644924,-0.04129127,-0.12877487,0.01753756,-0.052810047,0.037026387,-0.095421515,-0.056112666,0.0024309633,0.09041961,-0.048225753,0.028741784,-0.10331746,-0.101983525,-0.066281766,0.065396234,-0.030716542,-0.07463426,0.054849967,0.044583242,0.023252646,-0.045003165,-0.022834197,-0.06757583,0.05940777,-0.00054847775,-0.048248604,0.005963798,-0.010386988,-0.048454307,-0.034449603,-0.022272564,-0.03409042,0.03179347,0.010996428,0.027683632,-0.010305457,0.0502977,-0.024142357,-0.007423584,0.009713668,0.011857198,0.040340073,0.047913115,0.043243915,-0.0033029635,-0.003599103,-0.014495562,-0.07968258,-0.0024152256,-4.427849e-08,0.017045956,-0.01412863,0.026659504,-0.01924451,-0.041611172,0.005817086,-0.02117943,0.04176423,0.039966274,0.082594305,0.002872503,-0.03176903,-0.03340286,0.03811808,0.014248482,0.03024539,0.07345404,0.10322623,-0.009039508,-0.03849073,0.02643217,0.037151854,-0.028923176,-0.0035784103,0.016749173,0.004366093,-0.080698386,-0.0026386785,0.038511686,0.033166986,-0.07922178,0.013871915,-0.019783355,-0.12665996,-0.08801394,0.017369062,-0.0423708,-0.013347517,-0.04798442,-0.07744108,0.08123863,0.013305255,-0.020176707,-0.012455452,0.067036815,-0.03418053,-0.026334452,-0.018836726,-0.019482514,0.03408413,0.006274134,-0.013779834,0.13268323,0.07511776,0.0025736182,-0.055246923,-0.0051974854,-0.014820333,0.020157678,0.012304391,0.07361116,0.050229713,-0.020033559,-0.028476413} 0.96666664 gpt-4o-mini {"overall": 0.8} 2026-01-25 04:00:32.122757+00 2026-01-25 01:27:51.788739+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 549 google ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE 1 t 552 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown El servicio del alquiler del coche fue genial. Aparte el viaje de vuelta al aeropuerto con Kevin fue muy ameno,repitiria! el servicio del alquiler del coche fue genial. aparte el viaje de vuelta al aeropuerto con kevin fue muy ameno,repitiria! 5 2025-03-01 01:27:48.342514+00 es v5.1 J1.01 {} V+ I3 CR-N {} {"J1.01": "El servicio del alquiler del coche fue genial.", "J1.02": "Aparte el viaje de vuelta al aeropuerto con Kevin fue muy ameno, repitiria!"} {0.0077859485,0.087831005,0.017459175,-0.059944924,-0.0981251,0.017787244,0.042098753,0.029036159,0.016242487,0.024118207,0.03316618,-0.07584541,-0.003890132,-0.08942198,-0.009894636,0.015179071,-0.022207918,0.0031131199,-0.047418203,0.023109121,0.0666071,-0.07914797,-0.026524374,0.090363465,-0.113204725,0.028280111,-0.05597247,0.076792635,-0.026033415,-0.07625838,0.057196885,0.07788918,0.006016835,-0.0011818641,-0.032229234,0.01726595,0.013876279,-0.06426596,-0.021838415,0.033029787,-0.12196797,-0.013732968,-0.103051834,0.0051333406,0.01715057,-0.013096822,0.021599932,0.05474845,0.048252314,-0.011965258,-0.07205041,-0.04140818,0.057661936,-0.03823001,-0.019216923,-0.0024390724,0.01706355,-0.0072420407,0.054192573,-0.026775364,0.0034194677,0.04250245,-0.06374099,0.04416797,0.0089767305,-0.046362378,-0.01408894,-0.04119765,-0.05015797,-0.03472786,0.08814526,-0.07707462,0.0674412,0.0036715039,-0.025198713,0.12394129,-0.035520088,-0.010907221,-0.014647307,-0.07797612,0.08003041,-0.035357065,-0.021582093,-0.029301861,0.022522243,-0.07304005,0.0015627573,-0.046680234,0.085767224,-0.01295245,-0.10438936,0.057333425,0.011563643,-0.009971861,0.0076653752,0.04585446,-0.014248925,0.013824958,-0.075345375,0.03059479,0.062437817,0.06800484,0.06764588,0.059731565,-0.05372653,0.013913857,0.08265897,-0.054466933,0.038371287,-0.0048112213,-0.12279164,-0.057665285,0.02518246,-0.09410291,-0.040422946,0.042980798,0.0036644104,-0.07584823,-0.024352254,-0.056119237,0.072568804,-0.0564781,-0.04705325,0.015132821,0.06657396,-0.030718366,0.04511069,7.0233e-33,-0.098748006,-0.008884713,0.047445763,0.111946665,0.037844785,-0.02480543,-0.08246289,-0.04141358,-0.04674819,-0.040111806,-0.07565431,0.0695262,0.015987912,-0.011107229,0.05545089,-0.010906995,-0.03731776,-0.037339356,0.038376164,-0.06940285,-0.059352797,-0.060811285,0.009468616,0.022725282,0.033905476,0.030818671,0.014089567,-0.04312482,-0.05498056,0.061264694,-0.0312895,0.021299252,-0.038936097,-0.025523003,-0.0843302,-0.0045801993,-0.041707702,0.028411428,-0.054009594,-0.015942236,0.0076695136,0.0001741717,-0.0051565142,0.05302911,-0.0015911263,-0.020473499,-0.009408498,0.031040292,0.13236685,-0.0036668116,-0.019646736,-0.06335051,-0.058203764,-0.066408694,0.024535485,0.03892648,-0.06435197,0.05779978,-0.06538088,-0.059214205,0.027645076,0.019711932,0.012297958,0.019985657,-0.0016288646,0.022539482,0.013469011,0.034769896,0.12590732,0.047221363,-0.052673515,0.0017190032,-0.0220737,0.04858337,-0.02270466,0.046122074,-0.0124278385,-0.022272224,-0.02043105,0.06758044,-0.040718835,-0.017400045,0.009201301,-0.015090119,0.082932614,-0.04168062,0.025156802,0.09564307,-0.014288815,0.10535443,-0.025636794,0.022380317,0.10060868,0.031637747,0.029827913,-9.115603e-33,-0.041175105,0.024287775,0.015687568,0.0022608973,-0.009353594,0.07261204,-0.02117599,-0.025054269,-0.038895804,-0.0108974995,-0.10302907,-0.09843628,0.15016535,-0.0695569,-0.07116932,0.07982587,0.00021982827,-0.046759166,-0.09047949,-0.014625134,0.045236092,0.03333173,0.03898849,0.05040863,-0.028374948,-0.0250937,0.045737937,-0.020065876,-0.022095988,0.030492956,-0.0010986916,0.04160308,0.04982071,0.032660928,0.02407686,0.0601997,0.0530441,0.06586791,0.012581855,0.017363962,-0.039383046,0.03834693,0.058601234,0.007417627,0.040858507,0.015369155,-0.013588091,-0.17022303,-0.034421355,-0.039335147,0.026588382,-0.037108574,-0.09152877,0.006724861,0.082917124,0.09013657,-0.013984996,-0.06721887,-0.085871585,-0.018101232,0.0332489,0.025986286,-0.003015437,-0.016262945,0.04730218,-0.021879263,-0.087882884,0.02350058,0.032312267,0.08781317,0.038105715,-0.018354228,-0.061357968,0.054679774,-0.037436105,0.018569348,0.03290626,0.102669,-0.06229362,0.056320533,-0.01797862,0.0022901823,0.0132762175,-0.015959779,-0.05628166,-0.06084359,-0.00463708,-0.07970824,-0.0037497513,-0.010648697,0.052050326,-0.030876655,-0.064171925,-0.09701135,-0.024699826,-3.4681808e-08,0.050216712,0.013107746,0.03351903,0.05055475,0.0726633,-0.02320968,-0.07917891,-0.026418896,-0.05843587,0.07726882,-0.0010293758,0.035707366,-0.0014889996,0.06657952,0.00062140974,0.041082483,-0.0006079431,0.07276661,-0.014298427,-0.061403506,0.058043268,-0.027916916,-0.039628234,0.033593085,0.04540079,0.017195374,-0.088991694,-0.059412975,0.004878119,-0.043494754,-0.017818844,0.032531045,-0.0852292,-0.09448543,-0.053775176,0.0416475,-0.018051976,0.059641093,-0.06952925,0.0007868666,0.07062635,0.07694179,-0.02388352,-0.03207126,0.033496015,-0.014889035,-0.042824276,0.038610432,-0.0556564,0.038929995,-0.021119362,-0.051595226,0.09415186,0.058316063,0.012657894,-0.009622613,0.0024077245,0.011529741,0.0021408552,-0.030733798,0.048893988,0.07823858,0.0043482347,-0.027162991} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:48:38.24104+00 2026-01-25 01:27:51.826865+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 550 google ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB 1 t 553 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Me fue super bien , me Costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mismo vinieron a buscarme un equipo genial , Bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable. me fue super bien , me costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mismo vinieron a buscarme un equipo genial , bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable. 5 2025-01-25 01:27:48.342516+00 es v5.1 J1.02 {} V+ I2 CR-N {Bea} {"A1.01": "Bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable.", "J1.02": "Me fue super bien , me Costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mis"} {0.027359826,0.014813009,-0.027138168,-0.026193669,-0.05233313,-0.016768202,0.09449338,0.065468326,-0.05794563,0.030261379,0.07208822,-0.009599127,-0.007932708,-0.043465678,-0.01306853,0.047481965,0.0045595523,0.0004894871,-0.044643298,0.007855473,0.051492047,-0.023203585,-0.045510642,0.1087779,-0.12782848,-0.020712411,-0.06376643,0.05748091,-0.04393296,-0.1070315,-0.051511753,0.0969258,0.039447885,0.002472578,-0.02119692,-0.03684928,0.06969022,-0.05291703,0.012878603,0.012502481,-0.12072093,-0.02101133,-0.06974546,0.01924647,0.036378566,-0.032205433,0.032250643,0.06329551,0.11625031,-0.020839969,-0.027808452,-0.0006441424,0.06485929,-0.023107225,-0.025294412,0.036691938,-0.007231738,-0.021644179,0.094465695,-0.010068613,0.04670528,0.0223607,-0.0678011,0.0303449,0.0012390185,-0.036280066,-0.009168543,-0.055872895,-0.059267294,0.02948249,0.06910217,-0.07488629,-0.002750813,0.051987994,-0.031207044,0.09301691,0.027885873,-0.035606746,-0.013349579,-0.0007906231,0.017925648,-0.042624366,-0.097616345,-0.027839944,0.03272231,-0.018432887,0.013196751,-0.033658955,0.038702942,0.03187664,-0.023797687,0.010093026,-0.004433764,-0.03316918,0.04506263,0.00580865,-0.006573059,-0.019267695,-0.022394735,0.010598689,0.09101693,0.06547542,0.06580334,0.027118389,-0.047885053,0.08077383,0.02919484,-0.04632183,0.0676366,-0.02154535,-0.12046316,-0.03893798,0.022255711,-0.063876465,-0.07931737,0.0011015538,-0.043848928,-0.041498132,-0.031159848,-0.06912832,0.030486824,-0.061627425,-0.079118945,0.010241611,0.0051551475,-0.1629631,0.051549844,1.2825794e-32,-0.05091361,0.022209728,0.01621132,0.10727172,0.053192534,0.013065777,-0.046219148,-0.033130303,-0.041220795,-0.00011666612,-0.09654,0.03232738,-0.03269811,0.05190004,0.048808306,-0.0011651431,-0.010882634,-0.034882724,0.0042459914,-0.0010940208,-0.049015973,-0.08042798,-0.015193819,-0.102738425,0.049653422,0.07101839,0.01276533,-0.09111873,-0.009481822,0.06060752,-0.0078855865,0.07476622,-0.030595008,0.0035766503,-0.052997567,-0.09763324,0.038908094,0.02017096,-0.02891639,-0.04486663,0.009331696,0.047633328,-0.06386902,0.02040877,-0.028087264,-0.018002898,0.058419265,0.06250771,0.11478899,-0.026121411,-0.05717344,-0.022524942,-0.08215983,-0.062127333,0.06421293,-0.037381902,-0.025473084,0.06659905,0.015207242,-0.004934087,-0.027984617,0.045515634,0.032333374,-0.047910936,-0.016056411,0.0073336954,-0.016510028,0.05845623,0.12190799,0.059798703,-0.025995051,-0.05024177,-0.040050756,-0.012477517,0.0551286,0.034054846,-0.016428707,-0.033678215,-0.022577915,0.033905778,-0.008053627,0.03227659,0.0033247983,0.022220334,0.09933258,0.039042145,0.06495017,0.06318166,-0.019570783,0.0945701,-0.072558016,0.08693162,0.055991616,-0.05199327,0.041124273,-1.3394244e-32,-0.016066113,0.010481748,0.005701115,0.050935242,-0.06375517,0.0013228412,-0.01055484,-0.010060518,0.01392641,0.015817678,-0.1312804,-0.07007147,0.15141012,-0.03385411,-0.0026761426,0.04937461,-0.052777115,-0.09923762,-0.09157458,-0.014459624,0.0073474543,0.036895994,0.024215236,-0.050761238,-0.050622225,-0.0053613232,-0.048683453,0.046626,-0.028121533,0.032089505,-0.022107184,0.004840006,0.01646732,0.07801384,-0.05743386,0.013312194,0.0688641,0.057754356,0.022434765,0.021302123,-0.070179276,0.10607648,0.019265411,-0.055740576,0.036549512,-0.047577318,0.0036011753,-0.13290317,0.0052296263,-0.0075228657,0.06325728,-0.036772627,-0.07004176,0.033011563,0.078138776,-5.0245366e-05,0.0016634183,-0.101351626,-0.04501614,-0.05252438,0.0032962423,-0.006993138,-0.05877618,-0.006534166,0.069547795,-0.04676183,-0.006230989,-0.018002719,0.0152108725,-0.015215475,0.048828103,-0.018204723,-0.028633244,0.033976145,-0.0040263063,0.027705502,0.010750552,0.06260928,0.008709705,0.0829306,-0.02490838,0.0072987676,0.013501764,-0.023268497,-0.0073827123,-0.025334576,-0.06478864,0.04107769,-0.016326096,0.018804606,0.032975845,0.019297134,0.005768708,-0.09003636,0.020415565,-5.1649042e-08,0.012189481,-0.014154372,0.026536498,0.024874328,0.0057626655,-0.045044206,-0.06718034,0.009079697,-0.020701809,-0.017749747,0.065702535,-0.04149769,0.00394926,0.08913337,0.0039618784,0.051610973,0.041471507,0.075325385,-0.015080013,-0.03205628,0.048057437,0.039905008,-0.03661326,0.046671383,-0.01644083,0.030977322,-0.028507283,-0.06473581,-0.03684397,-0.026242534,-0.07969887,-0.001906849,-0.0051315995,-0.15314727,-0.049328964,0.028072692,-0.058917258,0.047356047,-0.061387114,-0.02820549,0.08891752,0.035438612,-0.093715206,0.005014145,-0.0002730504,-0.034768723,-0.013120512,-0.021911772,-0.09084169,0.03762763,-0.018539779,-0.0632217,0.12064717,0.024970679,0.041019436,0.014043413,-0.03388037,-0.0017848259,0.0088248635,0.009382133,0.035582818,0.11533129,-0.0464525,-0.100803986} 0.8 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:59:44.933627+00 2026-01-25 01:27:51.831924+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 575 google ChZDSUhNMG9nS0VLRzdyN19VeG9xdkFnEAE 1 t 578 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per contestare il danno e non rispondono più trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per contestare il danno e non rispondono più 1 2025-05-30 01:27:48.342667+00 it v5.1 J2.02 {} V- I3 CR-N {} {"J2.02": "Trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per c"} {-0.038361963,0.08547245,0.016475318,-0.046508677,-0.060455043,-0.045825288,0.055653043,0.11395439,0.07311748,0.062271215,0.068125494,-0.07657314,0.041148867,0.012330142,-0.08162716,-0.04479035,0.035787467,0.09476408,-0.0404197,0.04766156,-0.0055784388,-0.14338869,-0.0071469503,0.0030030257,-0.06838373,0.009393402,-0.029753635,0.03195123,0.027751371,0.010631919,-0.020610804,0.14887133,-0.014187573,0.021503186,0.0261304,0.039746426,0.020492302,-0.073846824,-0.019278063,0.024739606,-0.039502986,0.004533678,-0.008512377,-0.030173808,0.12833633,-0.04687942,-0.039128788,0.0068478133,-0.0060950858,-0.011545617,-0.12812765,-0.03912101,0.028242739,0.0017644142,-0.063396834,-0.049284883,0.037758723,-0.046878472,-0.0061333426,-0.036510967,0.08372025,0.010153672,-0.015989443,-0.019703742,0.029333128,0.030343685,-0.051836494,-0.098537125,-0.016160065,0.017404117,0.08656228,-0.02920081,-0.014090354,0.10109211,0.021630075,-0.016623283,0.03887012,0.012862399,0.01081919,-0.035613257,0.04557653,0.073456265,0.003091981,0.0027505932,0.013980454,0.040672686,-0.014498003,-0.0012835871,0.02855398,0.061093587,-0.05210409,0.1174421,-0.07131719,-0.030299827,-0.0056944746,-0.03839566,-0.047911275,-0.0091806725,0.0013914522,0.037081026,0.03927152,0.025368774,0.011281797,0.0015397327,-0.06890317,-0.08557664,0.03396196,-0.14041203,-0.050656747,0.060230453,0.0038279085,-0.07135161,-0.004519408,0.024311172,-0.017437909,0.049201258,0.012780277,-0.0443898,0.029064829,-0.005888889,0.024373023,-0.00080376497,-0.0680392,-0.05124415,0.025463104,-0.13771394,0.05136487,1.7757989e-32,-0.021472298,-0.061765354,-0.024577964,0.0030472018,0.01697759,-0.042705484,-0.04262021,-0.13354625,-0.01888118,-0.079189956,-0.091893606,0.010476048,-0.01364293,-0.04980335,0.073040515,0.040756185,0.09371733,-0.04802946,0.042255953,-0.033275455,-0.04556361,-0.012675615,0.05521451,-0.08427054,0.008027455,0.014630218,-0.102996655,-0.0765739,-0.045384835,0.041639768,0.029393623,0.019390851,-0.009957168,-0.01046524,-0.0846312,-0.06236276,-0.003581026,-0.008749344,0.03751377,0.059382968,-0.0134882135,0.020829152,0.011488998,-0.00042517929,-0.00926002,-0.03528911,0.033690915,-0.04247817,0.08024828,-0.011325475,-0.00864274,-0.037142456,0.048051026,-0.046257824,0.031866044,-0.008151473,-0.05595543,0.001086258,-0.04940956,0.029946066,-0.031214014,-0.029073847,-0.008700102,0.031933133,0.029673656,-0.07328567,-0.039022118,-0.06687813,0.074009724,-0.02403226,-0.042472266,-0.06442099,0.038317665,0.032451842,-0.022351824,-0.02119478,0.017526424,-0.0036450175,-0.10695637,0.016374191,0.015974097,-0.063166276,-0.059825722,0.033697184,0.039847717,0.10039249,0.08815948,0.009901689,0.052625313,0.0012915147,0.012920014,-0.00811853,-0.012550116,-0.004018165,0.068266764,-1.6884886e-32,0.0075068553,0.01859995,-0.09207626,0.0031012811,-0.031870384,0.019920874,-0.09360019,-0.0986206,0.007228816,0.032328874,-0.0036392517,-0.110551685,0.06815128,-0.031118803,-0.04894332,0.03886538,0.03977439,0.08452248,0.0012183661,-0.028362732,-0.04774085,-0.010031185,-0.051900383,-0.05971334,-0.028075187,0.016361913,-0.00012155165,0.015719714,-0.082616165,-0.022406502,-0.011578012,0.008777973,-0.0107739,0.038481425,0.093864754,0.03274656,0.084453434,-0.007045779,0.07866973,0.0475456,-0.043428514,-0.021510655,0.06258626,0.0021383606,0.009698591,0.060266282,-0.021295644,-0.04141034,-0.035048548,-0.009725376,0.15878773,-0.016400296,0.029784745,-0.05222113,0.042357,0.066447064,0.040485874,-0.04030727,-0.10206007,-0.038426887,0.0063214386,-0.014232768,-0.053720847,-0.02331788,0.03451399,0.08544673,-0.08919747,0.07904411,0.03727134,0.021053199,0.0102257505,0.0115349535,-0.055435546,-0.03873727,-0.05122109,0.022794975,-0.055097546,0.09342148,0.029879717,0.03947888,-0.09993256,0.03128472,0.027120866,-0.013423671,-0.062315796,0.043626085,-0.05782174,-0.0057108584,0.018522177,0.030625481,0.036869876,-0.010961429,-0.017430749,-0.016276998,0.009011615,-5.0795805e-08,0.06983838,-0.1039077,-0.042392027,0.024586538,-0.01757455,0.007283238,0.03314707,-0.044411298,0.01003626,0.11735377,-0.077847645,-0.009257186,0.078421675,-0.028514022,-0.03810649,0.0979186,0.11924442,0.028447198,-0.017923404,-0.062029127,0.09671159,-0.048407685,-0.039293926,-0.017763052,-0.06264556,-0.008519159,-0.01624953,-0.007294116,-0.123125136,0.016546665,-0.025875233,0.002313822,0.011804085,-0.057474714,-0.043622516,0.03435579,0.006280975,-0.0008593593,-0.019817092,-0.05553137,0.04730126,0.07759687,0.039151885,0.00021864903,0.0076136766,-0.0004087038,0.017637044,-0.027909687,0.03267911,0.010750488,-0.012647822,0.05605617,0.07047099,0.011456718,-0.048922498,0.07549618,0.07856137,-0.005517689,-0.0057346546,0.020837236,0.047018293,0.08099583,0.036297504,-0.078774065} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:44.474116+00 2026-01-25 01:27:51.92306+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 589 google ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE 1 t 592 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Carlos y Fran son eficientes, te ayudan en todo.\nSon geniales.\nLo unico a mejorar son las indicaciones para ir al punto de recogida.\nGracies per tot.... carlos y fran son eficientes, te ayudan en todo. son geniales. lo unico a mejorar son las indicaciones para ir al punto de recogida. gracies per tot.... 4 2025-01-25 01:27:48.342715+00 es v5.1 A1.01 {} V+ I2 CR-N {"Carlos y Fran"} {"A1.01": "Carlos y Fran son eficientes, te ayudan en todo. Son geniales.", "J1.02": "Lo unico a mejorar son las indicaciones para ir al punto de recogida."} {-0.04108394,0.027197316,-0.05581318,-0.00055555283,-0.008871041,0.038380466,0.034975715,0.07667864,0.025037726,0.029438952,0.035440657,-0.045171976,-0.015627032,0.018698074,0.0064497055,0.03056067,-0.033080433,0.08541017,-0.031195033,-0.0023526666,0.02354714,-0.013490161,0.019254046,0.053127352,-0.07473283,-0.045928765,0.03893994,0.052765094,-0.029175775,-0.086312145,-0.017137818,0.067511685,0.042288337,-0.021312652,-0.026747739,-0.005993328,0.031652793,-0.06539732,0.020463541,0.044572674,-0.11401101,0.031938672,-0.06520396,0.010476663,0.056244608,-0.09905813,0.050362594,0.024456467,0.019492015,0.027153872,0.002849562,0.019807935,0.028390203,0.031091897,-0.0049031395,-0.023817353,0.05905814,-0.00674629,0.022384623,0.05280661,0.039106853,0.058062915,-0.096179314,0.029166812,-0.07885249,-0.014159607,0.016548285,-0.04047963,-0.07537154,0.03936773,0.049894564,-0.06740736,0.07678562,0.02728119,-0.014417746,0.06686319,-0.024373382,0.018315468,-0.07514162,-0.061221268,-0.0017454908,-0.056033086,-0.041325063,-0.08459832,0.04411609,0.0059153563,0.023574015,0.009396564,0.06737744,0.07094934,-0.06636733,0.064252436,-0.02217663,0.06725723,-0.035152446,-0.010196737,0.041750867,-0.051061995,-0.06844482,-0.0065837596,0.08279283,0.08783674,0.050276034,0.049784582,0.0062636095,0.08216069,0.024475941,-0.03780491,0.0023083256,0.023130221,-0.009864107,-0.04352832,-0.09259618,0.035266448,-0.11223308,-0.015177598,-0.019286335,-0.0052182265,-0.12738398,-0.12688987,0.063928775,-0.074736334,-0.06347171,-0.08036032,0.06365339,-0.056287732,-0.002510895,5.791013e-33,-0.026272528,0.046453804,-0.09238389,0.09348826,-0.024107903,0.03859513,-0.024895232,0.03067471,-0.031690463,-0.009566082,-0.07877317,0.05336184,0.000958747,0.0047374545,0.013622368,0.04845111,-0.016641364,-0.032634955,0.020012466,0.03776495,-0.025838686,0.10397798,-0.061017584,-0.019175833,0.032438856,0.07523938,0.0022508272,-0.10403479,-0.088102005,0.03575832,-0.0078109843,-0.005133722,-0.03299905,-0.03666156,0.033279166,-0.051987283,0.09382592,0.051283106,0.002285978,-0.009982991,0.02374287,0.04852946,0.021672502,-0.00843694,-0.03226789,-0.024285365,0.040494595,0.042772766,0.1539505,-0.050892778,-0.012301339,-0.047704063,-0.016772233,-0.0957598,0.0190937,-0.053045,-0.102713436,0.13240477,0.0048042596,0.0013382132,0.03893459,-0.05213369,0.02819167,0.05378601,-0.045642205,-0.045567404,0.008506729,0.08772492,0.10356508,0.012603569,-0.07103581,-0.075339995,-0.02326246,-0.058329478,0.04076024,-0.03195514,0.07990592,0.041900627,0.040800776,-0.021191556,-0.026998594,0.03325753,-0.0007529237,-0.021052822,-0.011165987,0.066243164,0.0012606115,0.067274086,-0.020556571,0.08965425,0.01797794,0.11910002,0.09410625,-0.035270095,0.0820285,-7.240262e-33,-0.032449283,0.061080977,0.019161955,0.016942479,0.02381362,-0.0059260344,0.0055214968,0.044893466,-0.027139196,-0.06644452,-0.08614999,-0.09162614,0.076114446,-0.095289595,-0.09868941,0.046317242,-0.031140577,-0.0945179,-0.11392182,-0.0009812897,0.007717596,0.03247933,0.04280055,-0.08917219,-0.069096126,-0.0007820966,-0.01849527,0.082137726,-0.06881926,0.029175485,0.03982622,-0.042087674,-0.011486469,-0.014703057,-0.001140816,0.07838833,0.0245339,0.099992916,-0.013104305,0.08955792,0.030490266,0.044860557,-0.019761084,-0.020750223,0.010624655,0.012527424,-0.063412406,-0.11417911,-0.022819052,-0.0073229335,0.042449005,0.042378925,-0.04434897,-0.020570686,0.0391104,-0.0071768616,0.027101308,-0.06744137,-0.023869649,0.0690915,-0.0038377647,0.06879449,0.031546123,0.024529947,0.028776657,0.014395926,-0.015321191,0.03665681,0.036159556,0.008357188,0.09667372,-0.023633948,-0.028268944,0.039171953,-0.035996407,0.05378222,-0.1032075,-0.017835056,-0.029392382,0.049915437,0.022987654,-0.023429692,-0.054132238,0.01044668,-0.02204408,-0.01485973,-0.0133588035,-0.04966987,0.037213944,-0.057750743,0.09303531,-0.011561432,-0.013577911,-0.06391881,-0.007881966,-4.0738996e-08,-0.025021864,-0.06795618,-0.03703981,0.009180291,-0.015407549,-0.013164548,-0.07524574,0.019559735,0.08292207,0.033054538,0.017251734,-0.0056483983,-0.054680396,0.06292427,-0.019100742,-0.014917974,-0.008235841,0.045455143,-0.012131108,0.021432653,0.034539018,-0.04162795,-0.06623167,0.007747032,0.05024432,0.0126976175,-0.0904201,-0.048212748,-0.028800987,-0.0133843385,-0.018907772,-0.017189272,-0.012608527,-0.055061515,-0.017928744,0.031820666,0.055487495,-0.029662872,-0.013971662,-0.027638804,0.14431775,-0.03042927,-0.040961348,-0.011238837,-0.050634567,-0.11231904,0.009865176,0.015650716,0.013193018,0.09604903,-0.019888252,-0.06278909,0.03738003,-0.06181741,0.030117884,0.000231006,-0.0484498,0.0060405335,0.02636357,-0.03537439,0.020784803,0.0417041,0.014988251,-0.07684721} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:57:14.442104+00 2026-01-25 01:27:51.973672+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 592 google ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB 1 t 595 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Está fuera del aeropuerto, horario muy corto y por dejar el coche entes de las 8:00 te clavan 50€, no vale la pena hay opciones mucho mejores y dentro del aeropuerto. está fuera del aeropuerto, horario muy corto y por dejar el coche entes de las 8:00 te clavan 50€, no vale la pena hay opciones mucho mejores y dentro del aeropuerto. 1 2025-01-25 01:27:48.342739+00 es v5.1 J1.02 {P1.03} V- I2 CR-W {} {"J1.02": "Está fuera del aeropuerto, horario muy corto y por dejar el coche antes de las 8:00 te clavan 50€", "J1.04": "no vale la pena hay opciones mucho mejores y dentro del aeropuerto"} {0.03597918,0.09550459,-0.008943367,0.0061506834,-0.003971985,-0.019552082,0.0019991135,0.079124235,0.0032609713,0.014553008,0.05274892,-0.04294853,-0.06070042,-0.016699508,0.005242698,0.01900134,-0.02268467,-0.017127428,-0.02378514,0.021161957,0.123676196,-0.034163114,-0.05872781,0.14405482,-0.024141382,0.033113778,-0.0043595396,0.0067066145,-0.020739095,-0.02283784,-0.11666538,0.03384289,0.014732982,-0.015877107,-0.0029900968,-0.081892915,0.08557007,-0.06684712,-0.035540354,0.0800439,-0.12379042,0.029726692,-0.07291757,-0.0048541618,-0.00013924937,-0.006955448,0.06945515,0.090450056,0.068902746,0.052589323,-0.026107814,0.003819239,-0.0011083037,-0.08804232,0.032470778,0.032233182,0.034203283,-0.045683958,0.12493747,0.0341246,-0.05590573,0.020022662,-0.087089315,0.045022868,0.055590566,-0.086870566,-0.023999069,-0.00032444677,-0.026338156,0.014593717,0.03616933,-0.07096556,0.06978484,0.014400906,-0.030417688,0.02981477,0.04252649,-0.017583994,0.0060248664,-0.024061674,0.083044976,-0.12376624,-0.030028626,-0.062884144,0.0551223,-0.006901967,-0.0147956135,0.059270613,0.08367719,-0.018924272,-0.062614985,0.07983487,-0.02654286,-0.059209626,0.04479007,0.029168906,0.0015503481,0.06699783,-0.02026528,-0.0032817342,0.07961746,0.045025647,-0.013348132,0.08107817,-0.008969272,0.03370033,0.063645035,-0.0056995577,0.03877261,-0.0070419316,-0.09994456,-0.0048731747,0.015623702,-0.15232715,-0.06018064,0.03764374,-0.02098956,-0.06453416,-0.05910731,-0.07493348,0.018358864,-0.077962786,0.021004185,-0.037318494,-0.04022751,-0.094492696,0.044509884,1.0782048e-32,-0.02300942,0.008283861,-0.039449416,-0.022141082,0.0036463314,-0.040247876,-0.0011727943,0.01737649,0.044467058,-0.060467497,-0.04673334,0.025848126,-0.078709014,0.006361094,0.014950497,-0.049977966,0.09939525,-0.004605188,0.0065484243,-0.0018065841,-0.06893449,-0.089026116,-0.05849393,-0.0126480255,0.0025647953,0.03673783,-0.010751035,-0.07219709,-0.043184325,0.047082346,0.022439139,0.06837164,-0.010699139,-0.029189533,-0.056461502,-0.065005034,0.053169258,0.03232301,-0.041302554,-0.017017135,0.014738116,0.020495463,-0.057166617,-0.018402096,0.0034972164,-0.02233259,0.004539781,0.04112789,0.12273788,0.017322544,-0.075604804,0.026920086,-0.15918776,-0.027377361,-0.042322148,-0.027619198,0.04016835,-0.01416961,0.031013891,-0.056370206,-0.039922163,0.024879238,0.019473292,-0.084087685,-0.022812668,0.039074194,-0.018918488,0.02652741,0.09882618,0.041330136,-0.03877101,-0.018929094,-0.050248407,0.07075251,0.035805773,0.00055720494,0.02167399,-0.011408993,-0.041892998,0.076272175,0.0071213483,-0.0014032484,0.077083044,-0.015432865,0.072232515,-0.0086100595,0.07343303,0.08343235,-0.01124391,0.00904721,-0.06833659,0.024967788,0.05990381,-0.018088007,0.05306502,-1.2533046e-32,-0.0019163872,-0.009648526,-0.010276494,0.017789587,-0.042808253,0.094402604,-0.011482711,0.017040184,-0.05297814,-0.015699415,-0.11610466,-0.026880573,0.099391386,-0.015662525,0.046966586,0.028530551,-0.026970387,-0.059184786,-0.03515738,-0.030514507,0.028866485,0.0023349803,0.069919415,0.044047367,-0.0024212732,-0.06443651,0.008090307,0.027752765,0.015524596,0.0059980615,-0.006627196,-0.011111317,0.046767388,0.1594591,-0.05075925,0.028624415,0.05091709,0.059189238,0.0070320372,0.033963565,-0.034508225,-0.017585563,0.020509843,-0.05623188,-0.005952544,-0.010893951,0.0057621053,-0.1277687,0.009900992,-0.024726046,0.14908095,-0.059028476,-0.03973152,-0.0009000958,0.075937174,0.019171346,-0.0115742395,-0.047860567,-0.03616528,-0.06952101,0.053521246,0.062427055,-0.078780755,0.0017282555,0.047773566,0.047843996,0.01554928,0.027716482,0.035703663,-0.035071425,0.022352116,-0.010690675,0.033176064,0.016218366,-0.05855392,0.046367772,0.030338377,0.08172685,0.019042432,0.058973532,-0.051701974,0.04915933,0.06653338,-0.07673374,-0.0690882,-0.025210047,0.0047428315,-0.045158144,-0.02645874,0.0065709315,0.015628029,0.037506793,-0.023702634,-0.047721867,-0.0027492105,-4.573459e-08,-0.0486828,-0.042163726,0.066303216,0.041903112,0.020568801,-0.037216272,-0.009534255,-0.060207196,0.003606334,0.053606723,0.04999634,-0.075697444,0.016416758,0.028189028,-0.06919669,-0.051548377,0.011584791,0.07748319,0.00886605,-0.02367522,0.037920766,0.01042237,0.026854966,-0.005133095,0.00011820784,0.030390754,-0.08074525,0.013741884,0.039385498,-0.012423089,-0.07385465,0.018620826,-0.0772491,-0.07744997,-0.0838805,-0.0439218,-0.061090365,0.017442085,-0.15206282,0.017290756,0.0850047,-0.10330968,-0.08327046,-0.030426104,0.04047466,-0.06361808,-0.06325113,-0.029385248,-0.055370487,0.033929165,0.021196438,-0.0058608185,0.07778514,-0.00091867347,0.020288719,-0.041404642,-0.024025979,-0.02970816,-0.018277287,-0.037049424,0.034326866,0.00861479,-0.002545291,-0.010330027} 0.7 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:56:53.947901+00 2026-01-25 01:27:51.983827+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 621 google Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB 1 t 624 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buen servicio y personal amable buen servicio y personal amable 5 2025-12-28 01:27:48.342918+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Buen servicio y personal amable"} {-0.04666282,0.04037239,0.019862872,-0.0610635,-0.011552149,-0.015753252,0.18296365,0.02192998,-0.0057812016,-0.040089957,0.03579946,0.051202666,-0.031670794,-0.045086943,-0.0018624222,0.0020396782,-0.008109791,0.026044484,-0.0015509734,0.06824206,0.10269564,0.006678138,-0.007958227,0.07539494,-0.07626254,-0.0005567727,0.02666197,-0.020880258,-0.030292027,-0.07872239,0.022476237,0.06374685,0.075087585,-0.025741689,-0.0032742901,0.016322773,0.061961014,-0.065026626,-0.0058768466,0.026597435,-0.10529842,-0.092211455,0.002566747,-0.051806934,0.050819434,-0.07593864,0.011091059,0.01781431,0.04798702,-0.016129768,-0.13173436,-0.059673566,-0.01705832,0.04003087,0.06259347,-0.011630693,-0.066997774,-0.043124646,0.021653207,-0.00846783,-0.020351117,0.03605852,-0.01947802,0.015286041,0.062269267,-0.03271499,-0.012332835,0.01644918,-0.06558329,0.037795104,0.12235954,-0.061347835,-0.037730053,0.07577507,-0.03965546,0.055858348,-0.035517603,-0.023736473,-0.030798987,-0.04117481,-0.016326599,-0.033139188,0.028789638,0.072539076,-0.04239603,-0.023068136,0.013988617,-0.0014744339,0.06057448,0.01071809,-0.0013123131,-0.03383843,-0.07439875,-0.050052702,0.00983964,-0.023428574,0.019371102,-0.03780452,-0.017618805,0.08788257,0.031477187,0.03627214,0.12946333,0.0996841,-0.015891992,0.040948544,0.025267316,0.0038196167,0.01744159,0.01574542,-0.084111266,-0.07985846,-0.08478556,-0.050718997,-0.019390428,-0.0020374297,0.019558968,-0.045575324,-0.028962247,-0.06622098,0.04634819,0.090868995,-0.060398538,-0.0051578996,-0.024346136,-0.029557664,0.069621995,7.835962e-34,-0.031823214,-0.017265473,0.047681473,0.0804139,-0.026070558,0.007021882,-0.06508961,-0.02757353,0.012680332,-0.018502105,-0.037440583,0.11694114,0.027929762,0.022462523,0.044154625,0.0053043514,0.013885248,0.013027492,0.045620453,0.016521404,-0.0037011828,0.013894014,-0.05040996,0.014139184,-0.04459134,-0.037504073,0.031998947,-0.03567387,0.0108547,0.056095205,0.094668165,-0.0021481037,0.028952973,-0.05713326,-0.0004714138,-0.050562624,-0.031020558,-0.0067976764,-0.0030192689,0.0061341096,0.007589001,0.00770816,-0.015237107,0.05245705,-0.04733519,0.02913873,0.10213663,0.0702153,0.047292374,-0.016572038,-0.05740305,-0.03438339,-0.07982383,0.0020935293,-0.021014426,0.06220951,0.0057107206,0.079308845,-0.026399788,-0.047588903,0.091774575,-0.035486236,0.10165468,-0.037471335,-0.020573871,-0.05609144,0.054072186,0.06573622,0.0716095,0.028185615,-0.08881381,-0.024358166,0.06117158,0.0051447125,-0.005777474,0.04581019,0.008119068,-0.031104382,-0.029219579,-0.020478252,-0.088651314,0.021803342,0.012265566,0.04763125,0.10327988,0.09486514,0.023611665,0.005234004,-0.051338825,0.11514519,-0.040856987,0.054907955,0.033482753,-0.055140696,-0.06445647,-1.5994478e-33,-0.04199796,-0.029622057,0.021741716,0.08006209,0.020395266,-0.0018433748,-0.031975474,0.06545864,-0.06511587,0.048801564,-0.09320411,-0.1139988,0.14028597,-0.009594233,-0.08610553,0.09510632,-0.031822227,-0.02202976,-0.087767564,-0.048104737,-0.047608573,0.08811301,0.06886758,-0.046824433,-0.057706695,0.027695218,0.0160133,0.048592553,-0.019440295,-0.042902812,0.041399486,-0.024732988,-0.098741144,-0.004873373,-0.005060591,0.08749,0.014853413,0.03173382,0.021530855,0.03599022,-0.030331604,0.012433455,-0.06658563,-0.017886868,-0.01560522,-0.04921522,-0.028655794,-0.12819862,0.068136156,-0.043741994,-0.038790744,0.03338334,0.019616885,-0.0019278611,-0.015765665,-0.053433374,-0.042498987,-0.06306446,-0.1063011,0.0011128567,0.061793856,0.024322774,-0.038032494,0.07799437,0.08944931,-0.061368372,-0.060047276,0.018847203,-0.062801786,-0.0029601776,0.019026263,-0.10873716,-0.00115563,0.09481517,-0.024986902,-0.032840095,0.0024749632,-0.09071043,0.019131597,-0.02242194,-0.0020929466,-0.038528923,-0.034386966,-0.04932182,-0.046008345,-0.04102833,0.049499564,0.009342322,-0.02358962,0.023079963,0.03475549,0.05289166,-0.10040405,-0.014189454,-0.043417905,-1.8012413e-08,0.02534188,-0.03249594,-0.0065260455,0.05373633,0.021827957,-0.11241185,-0.074794546,-0.028709292,0.022212308,0.04323727,-0.048049722,-0.022458125,-0.01757591,0.03771725,0.00736504,0.017220436,0.07364029,0.019749194,-0.002806764,-0.07429312,0.07867998,-0.028414242,-0.005211862,-0.028281381,-0.0035670772,0.06876557,-0.022520177,0.014457082,-0.006259245,0.00425137,0.025771769,0.05024308,-0.00095058035,-0.041118916,-0.023884492,0.01230788,-0.09865853,-0.034525003,-0.011538498,0.018270701,0.113283806,-0.033848185,0.008097166,0.031659145,0.0275718,0.009527666,0.020418217,0.036896497,-0.017866671,0.030915743,-0.048601948,-0.0660979,0.11000591,0.041959986,0.04384931,0.040295333,0.056912113,0.07127278,0.03566471,0.042761937,0.025277209,0.07073971,-0.039888036,-0.09195331} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:10:18.581178+00 2026-01-25 01:27:52.086928+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 625 google Ci9DQUlRQUNvZENodHljRjlvT2t4bFNpMWZjRGxaU3paRFoyNHdhRzQxV1dkSWJWRRAB 1 t 628 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy malo muy malo 1 2025-07-29 01:27:48.342957+00 so v5.1 O1.01 {} V- I2 CR-N {} {"O1.01": "Muy malo"} {-0.035782956,0.03560516,0.06818962,0.037754033,-0.05790122,-0.025008485,0.12449872,-0.013078926,0.019359257,-0.04337877,0.011705357,-0.026191799,-0.009773445,0.0024970288,-0.036909286,0.06051945,-0.009756756,0.08162556,-0.060086746,-0.0008002071,0.06556781,0.015374977,-0.052838575,0.06727906,-0.055001512,-0.04279651,0.052149404,0.11480691,-0.0105233295,-0.005208026,-0.013256909,0.087572135,0.045401655,-0.0069978624,-0.030547589,0.049637392,0.03160597,-0.05627277,-0.015472861,-0.007145833,0.046867944,-0.02663798,0.0030293376,0.022593413,-0.0584645,-0.022206588,0.006496567,-0.0036875927,0.07145792,-0.045258302,-0.1613084,-0.038807463,-0.078632526,0.038849354,0.04624562,-0.038696446,-0.060879964,0.014058435,0.016199676,-0.06885098,-0.07791409,0.06607312,0.017125966,0.06557251,0.028169572,-0.016747005,0.004625292,0.02304195,-0.07159734,-0.034619037,0.055831596,-0.09891858,0.017998828,-0.013588678,-0.03738257,-0.012944415,0.07380518,-0.010743452,-0.018735953,0.0021277762,-0.02213378,-0.07016274,0.015330717,-0.024085335,-0.049664628,-0.017598664,-0.013095085,-0.019853849,-0.0003123071,-0.023670431,0.0036179794,0.003380702,0.0091043655,-0.060823426,0.12708956,0.089303195,-0.014653339,-0.061574824,-0.066405825,0.14910305,-0.039539553,0.02396135,0.072607964,0.034321144,-0.007383061,0.013624696,0.06964995,-0.07559731,-0.00065890286,0.023769446,-0.0025163516,-0.022438092,-0.05815138,0.006843149,0.084667,-0.019003317,0.004720188,0.050353218,-0.047488887,-0.037472058,0.046175297,0.04962888,-0.07365663,-0.03760786,-0.05571084,0.020144459,0.021801054,-1.2561449e-33,-0.012076781,-0.13599257,-0.012004612,0.0024510417,-0.016005497,-0.007999515,-0.023396855,0.05474018,-0.10635177,-0.01420813,-0.05880984,-0.050617155,-0.019570215,-0.006239441,0.06523427,0.025161726,0.05077904,-0.053921174,0.06573052,0.041858263,-0.039601136,0.019515801,0.040755365,0.0025963404,-0.020524664,0.073945105,0.0039472785,-0.09838668,-0.038892202,0.029958848,-0.0054056547,0.06384157,-3.2242377e-05,-0.08105033,-0.11617777,-0.02638224,-0.071832955,0.061055172,0.009060727,-0.008119615,0.04031659,0.015643131,-0.03672938,-0.037190087,0.0023653826,0.032935936,-0.005547897,-0.034936517,0.078978,0.054147355,-0.058708318,-0.04050832,-0.14931017,0.04063983,0.028042903,-0.038942136,-0.0032304665,0.011593836,0.0023084567,-0.056451704,0.028236177,-0.024757618,0.051748525,-0.043677673,0.0069988775,-0.055238914,-0.0042365673,0.048217233,0.037820727,0.014848935,-0.09307083,-0.00903648,-0.07869084,0.02922315,-0.08768147,-0.081782795,0.04028873,-0.022036552,0.05218097,0.046446476,0.037590913,0.047248635,0.08229782,0.038311154,0.02772664,0.09462998,-0.0072726244,0.075000644,-0.015577507,0.031500835,-0.0799591,0.03094301,0.067750946,-0.026873915,-0.047083788,2.8374055e-34,0.05768244,-0.07948402,0.059624135,0.06218896,-0.0006058176,-0.0006448709,0.03961568,0.047004633,-0.037968338,0.067166835,-0.030778876,-0.06374664,0.11552751,-0.041408945,0.05841012,0.15460637,0.027555393,0.05359711,-0.034286257,-0.06253254,0.019123726,0.11278424,0.014596274,-0.033084724,-0.08082324,-0.05657008,0.014383642,0.031977966,-0.087839924,0.031153696,0.00887762,-0.07866609,-0.06720864,0.030823858,0.009709535,0.037507016,0.012850116,0.056351144,-0.0051027327,0.04383068,0.029854646,0.09690825,0.013354593,0.111920714,0.006717009,0.038568027,-0.03739713,-0.019783493,-0.020314736,0.009883779,-0.009348507,-0.0037285013,-0.039351,-0.040044166,-0.013902397,0.01019527,-0.030770745,-0.03240326,-0.12924999,0.0136108985,-0.024023777,0.014929241,-0.034158684,-0.048546486,0.021126863,0.13389525,-0.03497869,0.0028936707,-0.06778568,-0.016897481,0.06365769,-0.022728954,-0.11437476,-0.028667225,-0.039275173,0.009986104,-0.12594709,0.058211364,-0.0042804754,0.04784075,0.062330607,0.017124686,-0.06929426,0.040785454,-0.0051083397,0.0024578243,0.06835075,-0.0017626298,0.038890913,-0.023167802,0.045251083,0.006563989,0.026260111,-0.07823701,0.053334575,-1.47748604e-08,-0.04332554,-0.06529063,0.011521814,0.007849729,-0.0049410984,0.034110945,-0.042621803,0.05697803,-0.003772077,0.0629818,0.033533186,-0.038758837,-0.027537694,0.12131149,0.03667007,0.079467654,-0.03838512,0.04414742,0.008080363,-0.026560364,0.035013735,0.007753732,-0.013910637,0.04677746,0.011039238,-0.0024396637,-0.07137476,0.010800341,-0.038338143,0.023204966,0.014584335,0.052130137,-0.019116115,-0.042095352,-0.065574355,-0.05283367,0.00026833208,-0.06399798,-0.022110904,0.010693416,0.07576677,-0.041081935,0.112718016,-0.033610087,-0.020391747,0.0083865505,0.041569594,-0.057496056,-0.004654977,-0.02077589,0.0018839168,0.031052558,0.0429332,0.10132645,0.038306955,-0.025282905,0.03625655,0.0021078342,0.0220957,-0.038866986,0.077818125,0.0076596984,0.005623568,-0.08364069} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:39:21.846621+00 2026-01-25 01:27:52.100336+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 629 google Ci9DQUlRQUNvZENodHljRjlvT2kxakxYZEpaWEkyUmt4TWNGVTJXaTFNT0RsdFVVRRAB 1 t 632 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Es war alles perfekt. es war alles perfekt. 5 2025-09-27 01:27:48.342973+00 de v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Es war alles perfekt."} {-0.05294933,0.09094181,0.022960393,-0.05214779,-0.03140202,0.035242535,0.02619021,0.048780724,0.04145799,0.07646929,-0.012813195,-0.031232823,-0.035036705,0.012667605,0.0071466328,0.012380335,-0.09573066,0.014974761,0.022126716,0.010316397,0.014141001,-0.0010631747,-0.05049555,0.034276556,-0.048990976,0.01221637,0.00039722907,-0.016328175,-0.06249753,-0.07324458,-0.00991776,0.015658129,0.020705894,0.032249782,0.0012514023,-0.03360794,0.03660993,-0.089649335,-0.048668146,0.044795725,-0.20248716,0.021870919,-0.0699388,0.0013307603,-0.007882473,0.0065296064,-0.01027626,0.010500245,0.0367889,-0.041886337,0.003912811,-0.12230485,-0.037610326,-0.036512475,0.055010512,-0.016507914,-0.012511113,-0.014928295,0.045528166,-0.008302208,0.001592162,-0.008734265,-0.008335462,0.07473736,-0.009328533,0.002440687,0.109347194,0.05356203,-0.15721312,0.043978978,0.061506845,-0.006371974,0.059064787,0.008676625,0.05013699,0.05352163,-0.06356875,0.0012802777,0.050878376,-0.038926043,-0.03030793,0.023513801,-0.030221293,-0.007129653,0.060121574,-0.01977653,0.043713152,0.007235184,0.06776224,0.059214335,-0.10370155,0.010722801,-0.06471887,0.0318776,-0.009847001,0.027889859,0.016952028,-0.026893837,0.0121802585,0.03605921,0.086573124,-0.026503848,0.022845035,0.054760907,0.040666725,0.008762984,0.01624628,-0.082923695,0.029064741,-0.008864477,-0.07226251,0.02679399,-0.0121417865,-0.015036597,-0.066793635,0.0107387435,0.023524262,-0.09963172,0.040991135,0.022038823,-0.0032620614,-0.0059848996,-0.08814797,0.07096382,0.01770412,-0.0038089342,-0.010828668,-2.147722e-33,-0.022882035,-0.047897063,-0.0002198371,0.0013746702,-0.0042466614,0.029013505,-0.027717546,-0.04465309,0.02540026,-0.028381256,-0.10043846,0.063979,-0.009305852,0.039374355,0.007955045,0.051637717,0.069410115,0.0048959334,-0.007880789,0.0074373554,-0.022780215,-0.01080092,-0.038623415,-0.007184112,-0.0012752202,0.008297229,0.04362312,-0.024817776,-0.101120986,0.03465711,-0.011078183,0.009105899,0.025779957,-0.010973588,0.028969625,-0.057334527,0.05365978,0.05164554,-0.003506552,0.029680822,0.0059909527,0.045262363,-0.073613144,-0.05707876,0.04080476,-0.04428203,-0.0558976,0.06283341,-0.03126823,0.0749997,-0.098047495,-0.046649534,-0.046286494,-0.044393167,0.03730866,0.07407732,-0.09581513,0.057986476,-0.03783636,-0.02016721,0.052089363,-0.014635041,0.06748304,0.005871224,0.0065916902,0.015179775,-0.003708961,0.04106017,0.07103226,0.010749466,-0.020712607,-0.018267008,0.076410286,-0.031754695,-0.05123477,-0.031122684,0.021237623,0.06751171,-0.02073232,-0.0029020729,-0.07206993,-0.0015131268,0.02796296,-0.018816376,0.077401556,0.06884148,0.045016214,-0.03578507,0.0044467724,0.10410328,-0.014205505,0.0049457313,0.021018272,-0.118893005,-0.08602012,8.220789e-34,0.030791754,0.009471263,-0.010049559,0.020484606,-0.0170685,0.08053652,-0.047726713,0.016740168,-0.06993512,0.002683363,-0.049691755,-0.04256242,0.09221533,-0.08361505,-0.055036843,0.11157679,0.05558226,-0.01340142,-0.021335939,0.0024574178,-0.07431918,-0.0019844305,0.030658277,0.08660318,0.033472437,-0.085418254,0.03892611,0.058523178,-0.08637666,-0.018253831,0.11694152,-0.03112916,0.0011775652,0.034070138,-0.021350216,-0.0020667673,0.07367529,0.11911289,0.07487456,0.028939795,-0.030736461,-0.037756983,-0.06842254,0.07358548,-0.103351824,0.014835771,-0.089661196,-0.122512035,-0.008007682,-0.10042822,-0.0067828037,-0.063386336,0.084313266,-0.083142355,0.022466445,-0.047234897,-0.0019307296,-0.061300926,-0.10942018,0.030648291,0.023713794,0.025320401,-0.004986797,-0.022196459,0.058917124,0.008946715,-0.09748599,0.011169052,0.08233894,0.023211515,0.10554743,0.0082205245,-0.16241233,0.028055781,-0.043575127,-0.020773275,-0.051145572,-0.039463844,0.029742057,0.047057934,-0.049803365,-0.034917332,0.012327179,-0.023767306,-0.057477243,-0.04348909,0.07336531,0.03715719,-0.059074853,0.005679935,0.047925375,0.031720255,-0.024498452,-0.0053515276,0.045455664,-1.6695747e-08,0.014102068,-0.01690678,-0.008171195,0.09018533,0.022235928,-0.07198567,0.033375576,0.011923807,-0.013530539,0.09090498,-0.008724241,0.029797584,-0.010907314,0.05398989,-0.0016009613,0.073129036,0.09780038,0.054496348,-0.022697251,0.057626594,-0.0053029223,0.003673119,-0.06321108,-0.08248838,0.06716248,0.058864806,0.031847183,0.012610581,0.104525775,-0.033085644,-0.05841587,-0.005462286,-0.10178772,-0.08382996,-0.06554442,0.028314123,0.021729799,0.014124044,-0.021331847,0.031297576,0.044062283,0.09673879,0.07109154,-0.03579429,-0.02089386,0.019445984,-0.05429817,0.011896787,-0.04297989,0.010059727,0.01915642,0.029118342,-0.0018069852,0.09071255,-0.0100953765,0.054811325,0.06475158,0.05454223,0.0075206393,0.0509646,0.05154213,0.030231267,0.018478734,-0.022298202} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:29:39.362301+00 2026-01-25 01:27:52.115536+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 646 google ChdDSUhNMG9nS0VJQ0FnSUQ3aGJ2Rm93RRAB 1 t 649 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Dany y Antonio gente súper amable y simpatica dany y antonio gente súper amable y simpatica 5 2025-01-25 01:27:48.343045+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Dany y Antonio gente súper amable y simpatica"} {-0.07028234,0.0114132315,0.048611272,-0.007713124,-0.09546507,0.004196181,0.11282987,0.04295707,-0.0036489712,0.04050331,-0.0052707545,0.03847402,0.0009008339,-0.027247608,-0.047444995,-0.001494417,0.0050171744,0.041613936,-0.0071981824,-0.02060216,0.18543518,-0.035710897,-0.036739465,0.0032561338,-0.07022592,-0.013734066,-0.0175263,0.032865416,-0.00081370387,-0.05214885,0.03792171,0.08698399,-0.0011545127,-0.019852567,-0.03637084,-0.08139838,0.0675448,-0.022903588,0.032407373,-0.03734172,-0.044096068,-0.0065046204,-0.03382978,0.05912449,0.034493547,-0.088509955,-0.002497152,0.022555828,0.04992374,0.0049745697,-0.10725749,-0.07207312,0.02093121,0.028802423,0.07618985,0.04443589,0.008259667,-0.040361296,0.06802299,0.012529099,-0.008561914,0.049817942,-0.050823234,-0.06964153,0.04680317,-0.04566506,0.0432289,0.02945648,-0.08066663,0.035580702,0.10806951,-0.044867273,-0.0054313964,0.073659286,-0.038201652,0.091417685,-0.05053723,-0.05028638,-0.026289605,-0.013806453,-0.008492373,-0.02815311,0.034349382,-0.034731336,-0.0032142163,-0.038650874,0.004220752,0.035391573,0.051266156,0.02586229,0.029656442,0.028749187,-0.06553349,-0.039757777,0.04899656,0.0012276812,0.024223834,-0.028032605,-0.051693402,0.1040897,0.1181917,0.05742284,0.104726076,0.089445256,-0.055553626,0.041142926,0.041375846,-0.028989743,0.0041970685,0.011566688,-0.07892152,-0.03183428,-0.03286077,-0.00853854,-0.08059645,0.0097339265,-0.023584444,0.010446326,-0.040767618,-0.16689782,0.048710354,0.08612339,-0.057317484,0.0690018,0.044021003,-0.004938418,0.019796608,3.761057e-33,-0.071147405,-0.03269663,-0.01712267,0.10185673,0.013329719,-0.0062456927,-0.010934765,-0.024133235,-0.07286495,-0.0576956,-0.057302333,0.0075233104,-0.0045213476,0.0329242,0.0107194595,0.027476506,-0.05716155,-0.073950335,-0.0020663608,0.0029423835,-0.08003823,0.031165484,0.030154511,0.020776158,-0.014240801,0.023277072,-0.022209715,-0.093580596,-0.010067002,0.07228164,-0.028208494,0.0025193035,-0.0045266924,0.014293581,-0.032473765,-0.07337802,0.031412903,-0.07399048,-0.042481024,0.007990365,0.03628273,0.026167834,0.030255158,0.005823118,-0.031347975,0.048573226,0.056947675,0.07242305,0.052613266,0.02802661,-0.00638345,-0.049342938,-0.07728655,-0.07396786,0.017454393,0.0910694,-0.054646444,0.06138052,0.025752535,-0.025175419,0.02602078,0.0020203867,0.09168173,0.022066034,-0.008367427,-0.012303939,-0.031632926,0.051988985,0.08445243,0.106268436,-0.044450343,-0.010060915,0.015987188,0.0028412903,-0.020605141,0.02111677,0.07162732,0.016606042,-0.063647866,-0.019494819,-0.09791173,0.023169478,0.012405839,-0.0052427445,0.06484774,0.04784169,0.02230442,0.04872079,-0.03819368,0.047178164,0.039610043,0.041751366,0.07085681,-0.09991442,-0.021664843,-3.7429834e-33,-0.061939016,0.0061714817,0.025707811,0.06566068,0.029748555,-0.034098737,-0.052223194,0.034508884,0.00013280867,-0.11992504,-0.03063554,-0.09121618,0.15746967,-0.07065573,0.0012964574,0.006254305,0.042185526,-0.02924843,-0.046035443,0.011833626,-0.024058038,0.053078428,0.039744496,-0.0083362805,-0.0336811,-0.042670142,-0.0015433211,0.1122919,0.00049830717,-0.013090832,0.079597,0.0155867655,-0.053064,0.0023969912,-0.01209583,0.085402295,0.022319775,0.048111256,0.022203546,0.008563858,-0.049327392,0.11508481,-0.053241316,0.06375454,0.00517597,0.062469147,-0.011205334,-0.047873266,0.049195692,-0.059986,0.020505665,0.024738936,-0.06537191,-0.011590113,0.025213577,0.013570184,0.017543035,-0.07296587,-0.07659813,0.019858412,0.025537528,0.022113841,-0.014664587,-0.05197415,0.08212281,-0.015221169,-0.07433964,0.062852584,-0.045396164,0.030302105,0.11148662,-0.02492039,-0.14148232,-0.00010661104,-0.025351644,0.019342294,-0.07714006,0.09588685,-0.017128803,0.01226924,0.009127932,0.064368926,-0.058143288,-0.036941517,-0.010474947,0.03392389,-0.028161857,0.027140241,0.05003037,-0.011438588,0.031941712,-0.033851206,-0.10245883,-0.047727928,-0.06887081,-2.1174577e-08,0.011273319,-0.01539315,-0.019267708,-0.04225265,0.008569385,-0.03767462,-0.028231442,0.0141834,0.040688895,0.051686205,0.065873586,-0.047954176,-0.03004401,0.049471013,-0.0031188955,0.043058258,-0.025244294,0.076168574,-0.046874303,-0.068805695,0.041061267,-0.013406032,-0.014724653,-0.039990474,-0.045760468,0.014095189,-0.03234696,-0.07376337,0.002595905,0.06313082,-0.013824439,0.019018024,-0.03963075,-0.12562622,-0.029219506,-0.020973662,-0.0032479318,-0.04508618,0.016891336,-0.10217019,0.08981453,-0.040692203,-0.011014039,0.030098382,-0.0074422727,-0.075276166,0.021851517,-0.06040737,-0.007041764,0.020718612,-0.048344772,-0.0022309532,0.044604708,-0.0021941145,0.08219137,-0.022870408,0.02587795,0.026476873,-0.042547666,-0.0052161287,0.06933201,0.10646531,0.062132284,-0.07571041} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:42.484887+00 2026-01-25 01:27:52.189018+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 648 google ChdDSUhNMG9nS0VJQ0FnSUQ3cnNtRzhRRRAB 1 t 651 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Muy buen trato, y trabajadores muy amables muy buen trato, y trabajadores muy amables 5 2025-01-25 01:27:48.343048+00 es v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Muy buen trato, y trabajadores muy amables"} {-0.016617587,0.0005707222,0.02571151,-0.007437774,-0.071958385,-0.012048577,0.16517974,0.010731832,-0.02313202,-0.03401032,0.059923053,0.031334702,-0.050108254,-0.003401416,-0.0417505,0.0769366,-0.022315435,0.05942278,0.0045006843,-0.036294352,0.0934894,-0.025992604,-0.07507243,0.070838824,-0.01697706,-0.0434326,0.012585502,0.033380635,-0.008651844,-0.059338313,-0.019949222,0.0740369,0.058349174,-0.0009038025,0.03391502,0.010773052,0.04438453,-0.033221204,0.05523346,0.05555584,-0.021960292,-0.06251789,-0.030095885,-0.039384916,-0.02701092,-0.110723376,0.02070948,0.0625032,-0.0073157777,0.013813097,-0.10372495,0.0010114722,0.0066745337,0.013248242,0.03059141,0.0028459365,-0.030670596,-0.02247312,0.036821257,0.0024255838,-0.04013899,0.052828632,-0.032594286,0.018048838,0.027570752,-0.07214896,-0.041592363,0.07018581,-0.06270533,0.062021006,0.04434573,-0.07528453,-0.07027624,0.020290159,-0.09066274,0.05506424,0.038561597,-0.041521426,-0.065671474,-0.028777016,-0.0692564,-0.069656596,0.058157694,-0.041588604,0.012514672,-0.057687227,-0.02201738,0.017562361,0.022355104,0.025908504,0.025021773,0.01928804,-0.046396606,-0.011309546,0.026368009,0.06832843,0.014889219,-0.041094404,0.031035613,0.06727131,0.015782097,0.011779052,0.17926526,0.039633483,-0.04919329,-0.00042879654,0.089354046,-0.09434547,0.008922117,0.0037473836,-0.05488432,-0.022928026,-0.03520134,0.012089388,0.04144858,-0.013801688,-0.018572418,0.06635105,-0.050254997,-0.046509523,0.037038475,0.11938702,-0.057135966,0.002094804,-0.009683313,-0.00801495,0.044160657,5.072881e-33,0.0019036888,-0.06249988,-0.029597936,0.057522215,0.02374564,0.02836522,-0.066725165,0.026485933,-0.03896963,0.04263793,-0.040342923,0.05055958,0.020198762,-0.0064298525,0.05272475,-0.036662444,-0.0066560544,0.01680891,0.06686427,-0.0006783611,-0.078098334,-0.021436352,-0.053529043,0.07312804,-0.034010056,-0.03667399,-0.015684972,-0.04516873,0.0016727184,0.07300751,0.08326531,0.06689085,-0.002102269,-0.012959719,-0.1296966,-0.061920587,-0.08115171,0.0452533,-0.025392896,-0.0023558643,-0.001803823,-0.013231087,0.036404636,0.022607822,-0.01477338,0.07062269,0.074567564,0.009626092,0.060732976,0.056433994,-0.06266154,-0.058378134,-0.046148222,-0.039462775,0.047857553,0.019736411,0.001272516,0.078121714,0.00698183,-0.048837036,0.03463589,0.04370232,0.039239172,-0.0858075,-0.048580866,0.021352647,0.018911405,0.037351802,0.09890204,0.049583852,-0.0752207,-0.019147292,-0.0073104016,0.013872533,0.048556976,-0.029448893,-0.00034828496,-0.060913377,0.0078077014,-0.036568027,-0.099206954,1.9181476e-05,0.049642444,0.014239793,0.09442173,0.061906036,0.0023948285,0.0057070088,-0.009331252,0.08098926,-0.07994874,0.058240816,0.016065184,-0.014976929,-0.010788852,-4.6946563e-33,0.012059197,-0.008284539,-0.00022686564,0.08499002,-0.034951422,0.027856143,-0.000656851,0.008244735,-0.015181395,0.010062463,-0.08134155,-0.15880811,0.01480143,-0.020702885,-0.022597784,0.04366103,0.025818432,-0.072055645,-0.083446525,-0.10252565,-0.0140645625,0.00012769816,0.04082717,0.013314437,-0.059366163,-0.008004529,0.0004806215,-0.008344481,0.017968683,0.03523064,-0.014899501,-0.017426547,-0.042012885,0.06606878,-0.01238773,0.03493384,0.033763815,0.029414866,0.040736604,-0.014021644,0.018591406,-0.0017457022,-0.050121836,0.059320487,-0.007927172,-0.009293825,-0.005389497,-0.10657413,-0.025413698,-0.105156496,0.031343613,-0.0010474356,-0.019660555,-0.007027521,-0.020264722,0.019441923,-0.049132973,-0.09813477,-0.0998893,-0.037203535,0.038612023,-0.0226556,-0.01122911,0.00035913396,0.086110584,-0.035216004,-0.025660101,0.0511524,-0.005304364,0.020159258,0.05523436,-0.07767353,-0.05225349,0.02960322,-0.006043091,-0.004942321,-0.09013046,-0.108148366,-0.03979558,-0.019545475,-0.003965972,0.009436074,0.0004790036,-0.019972896,-0.023745503,-0.01735875,-0.013615185,0.031192765,0.0151717765,0.1138823,0.061711352,0.08041683,-0.0033190348,-0.055494618,-0.020996314,-2.5072225e-08,0.0018062848,-0.049630392,-0.005630282,0.02403208,0.056024272,-0.04030566,-0.082728855,0.050794687,0.05364559,0.08941078,-0.050158788,-0.044825662,-0.012605614,0.141205,0.06574064,0.0699545,0.041791327,-0.030142339,0.01289193,-0.08241935,0.053410303,0.01462596,-0.061504174,0.049916055,-0.032589857,0.051316496,-0.06960967,0.056189165,0.0008228559,0.046361607,0.013305646,0.08900171,-0.018687416,-0.049680293,-0.04251228,0.015877005,-0.019685248,-0.11941948,-0.060333252,-0.02724733,0.07709596,-0.025842315,0.022913873,-0.030854337,0.0335994,-0.09392476,-0.048837736,0.07948476,0.018598132,0.0018840238,-0.07163105,-0.027427876,0.073560454,0.07591701,0.09535883,-0.04753468,0.062437486,-0.014603318,0.012071684,0.019925386,0.07194201,0.11225985,0.057619993,-0.1339106} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:34.694988+00 2026-01-25 01:27:52.1937+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 652 google ChZDSUhNMG9nS0VPVHc0b2ItMEo3bERBEAE 1 t 655 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Buen servicio,mejor precio buen servicio,mejor precio 5 2025-05-30 01:27:48.34306+00 es v5.1 A1.01 {P1.01} V+ I2 CR-N {} {"A1.01": "Buen servicio,mejor precio"} {0.0016439189,0.08508116,0.011302047,-0.046968527,-0.07122582,0.01883839,0.09031547,0.052917138,0.022043556,-0.026158832,-0.0017818655,-0.05353268,-0.048434902,-0.018694045,-0.039645463,0.0036492213,0.025344891,0.053775046,0.0058951033,0.03835028,0.049623646,-0.034420557,-0.07834782,0.1130259,-0.038248874,-0.014833203,0.02046377,-0.0020273817,-0.01791013,-0.04024443,0.01424945,-0.043777876,0.09398597,-0.0022445635,0.00418004,0.041176315,0.05119992,-0.06587239,0.021718573,0.080124564,-0.076739565,-0.1072566,-0.050049085,-0.046408556,0.08210547,-0.044542443,0.05392923,0.017925607,0.025955938,-0.02741346,-0.11023026,0.019397175,-0.012858767,0.033439275,0.032041054,-0.008730505,-0.025779756,0.006349609,0.025918169,-0.03206786,-0.027273253,-0.06839337,-0.01414228,0.002657007,0.01957925,0.012251803,-0.034641262,-0.02997393,-0.04995351,0.028026009,0.12463766,-0.089149915,-0.031455018,0.057175588,-0.022336269,0.038096458,-0.0015681912,0.031762466,0.015585649,-0.1006486,0.07642059,-0.061963174,-0.0851191,0.04836287,0.008143188,-0.002487191,0.030332578,-0.008440372,0.11705382,-0.005962636,-0.005455659,-0.02897582,-0.11621013,0.006394365,-0.057493478,-0.026494509,-0.018187314,-0.017598283,-0.00409374,0.07230406,0.036186777,-0.022490902,0.054570757,0.013203209,-0.049760874,0.0017455496,0.05537017,0.044304296,0.039481573,0.06073241,-0.028397307,-0.07863633,-0.0984214,0.009743135,-0.053502757,0.01065633,0.019534606,-0.07700149,0.023049772,-0.06075954,0.08605967,0.049856074,-0.0134114055,0.0060616895,-0.011708349,-0.030528918,-0.005913665,1.5640682e-33,-0.044077612,-0.07849288,0.09431001,0.061200008,-0.06933185,0.004086814,-0.099926464,0.0011735406,-0.00052859605,-0.029496927,-0.03947835,0.085969806,-0.019229544,-0.0022269697,0.01067796,-0.039953586,0.053190283,-0.007350535,0.0746635,-0.0121254325,-0.062402662,0.037629414,-0.004715869,0.018242942,0.030949822,-0.025137015,-0.034601357,-0.07909941,-0.028022053,0.054507043,0.079543985,0.02300047,0.013260592,-0.029709639,-0.06380061,-0.010963791,-0.059291855,0.016562408,-0.01524863,-0.016513642,-0.039109457,0.036404606,0.0149535425,0.013354095,0.003594538,-0.1129325,0.020389967,0.06293082,0.06623196,-0.007076053,-0.016623326,-0.05109965,-0.06765063,0.010949988,0.040791333,0.038361356,-0.038149945,0.093174055,-0.0001126893,-0.019856332,0.065555446,-0.016102323,0.045670625,0.057860423,-0.007318598,-0.06705411,0.053071026,0.093052536,0.115309216,-0.015498091,-0.046849515,-0.044843853,0.07030203,0.0031696325,-0.09336476,0.051550355,-0.05305603,0.043765213,-0.060566593,0.014105225,-0.049329914,-0.010454314,0.030463615,0.0017734438,0.074721865,0.14590842,0.041854106,-0.004795975,0.020513032,0.102163635,-0.010857304,0.015751777,0.036999017,0.011612819,-0.057244826,-2.4642301e-33,0.029245643,-0.02764647,0.052688513,0.03315279,-0.030088652,0.047404453,-0.0026491256,-0.02336237,-0.09912924,0.079737574,0.02772644,-0.12314807,0.12961525,-0.06629685,-0.0557423,0.11662924,0.01641081,-0.02179827,-0.061747074,-0.056253422,-0.064804874,0.04095088,0.030079009,0.042533223,-0.07997877,-0.025297461,0.05182748,0.018479943,-0.08007145,-0.029858146,-0.0016679268,-0.036221366,-0.038716536,0.011265559,0.030632595,0.06974817,0.017204594,0.04617303,0.09896069,0.05468889,-0.027480992,0.003609545,-0.010672117,-0.013470293,-0.038812414,-0.04737394,-0.042192582,-0.0569415,0.039505687,-0.030585924,-0.0059246058,-0.030880215,-0.027358491,-0.08224066,-0.006612357,-0.03655652,-0.05613846,-0.063656345,-0.08772675,0.015560807,0.08342367,-0.012380928,-0.016391447,0.028959315,0.044761162,-0.04170267,-0.10815455,0.024348332,0.0043115686,0.028801337,0.046130516,-0.08606994,-0.0048975283,0.10495945,-0.05286674,-0.022726918,-0.008943734,-0.02752421,0.023440385,-0.005954641,-0.10132349,-0.044379897,-0.034710504,0.014984045,-0.09400644,-0.06014947,0.021607164,-0.0668006,0.014656082,0.033764288,-0.010568322,0.060133494,0.008964693,-0.06779636,-0.006521231,-2.081471e-08,0.034747027,-0.10088587,0.023896324,0.07557518,0.040696654,-0.08761254,-0.11229801,-0.010514728,0.008223779,0.050630692,-0.055794917,-0.047021944,-0.015260845,-0.06295298,-0.010884588,0.06282553,0.048377067,0.02740193,0.007855114,-0.0740685,0.03979359,-0.018300712,-0.008782322,-0.06201988,0.035504814,0.0005257358,-0.035368755,0.074373394,-0.02166952,0.017068066,0.025183761,0.021883491,-0.02403567,-0.07138645,-0.011202312,0.035288878,-0.030913277,0.007211293,-0.040788736,0.011908023,0.08849479,0.032879356,0.014334879,-0.0072868085,0.043569054,0.028651353,-0.008308434,0.08736497,-0.022246668,0.013596571,-0.0446756,0.012662813,0.12578681,0.07580658,0.06539108,0.03414842,0.055615004,0.049657363,0.03749339,0.058758512,0.0409794,0.082065806,0.03559655,-0.07456609} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:41:40.008847+00 2026-01-25 01:27:52.20371+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 654 google ChZDSUhNMG9nS0VJQ0FnSUQ3cU8yNUJnEAE 1 t 657 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown muy buen servicio y el coche genial muy buen servicio y el coche genial 5 2025-01-25 01:27:48.343083+00 es v5.1 A1.01 {O1.01} V+ I2 CR-N {} {"A1.01": "muy buen servicio y el coche genial"} {-0.020533627,0.037834495,0.0069701653,-0.05204626,-0.055616397,-0.01881122,0.09395089,-0.0072613806,-0.019031232,-0.034839272,0.079306096,-0.0129762795,-0.019121988,-0.074161746,0.022406753,0.026344385,-0.031815905,0.017821841,0.033667356,0.009305838,0.13965496,-0.0068986174,-0.05199068,0.10662212,-0.10456315,0.0008783933,-0.022933807,0.03506243,0.025337795,-0.038543608,0.045824334,0.10439141,0.014614176,0.0028890038,-0.0039008139,-0.016077718,0.1077133,-0.07547523,0.03389317,0.06634623,-0.095218234,-0.0029468732,-0.05391207,-0.026290897,0.052243028,-0.07697805,0.007674743,0.026724335,0.02550308,-0.024886992,-0.068961985,-0.04273918,0.00054856425,0.028115444,-0.027410612,-0.008589609,-0.010303994,-0.04188426,0.06670828,-0.014150494,-0.029492568,0.0130991,-0.010121106,-0.0022020761,0.042382296,-0.042269748,0.041913375,-0.050325066,-0.06029969,-0.0031745096,0.08636553,-0.049628973,0.03969926,0.050819326,-0.0709285,0.10202718,-0.0014868149,-0.024973204,-0.027622474,-0.10508566,-0.026966603,-0.021675281,0.010773172,0.048795827,-0.02066703,-0.029947769,0.0044140103,0.017481372,0.05381895,-0.020291401,-0.035158552,-0.0023784337,-0.029013064,0.040456902,-0.0029824239,0.03683175,-0.023599697,-0.05459476,-0.04476471,0.050153065,0.043422733,0.053180654,0.15765777,0.085482754,-0.0036472336,0.002501937,0.048335724,0.008069671,0.03778275,0.027121346,-0.068529546,-0.021888541,-0.03010361,0.028720165,-0.027547363,0.0041463235,-0.014997246,-0.03558292,-0.00421554,-0.085605085,0.11217862,0.044730283,-0.09580603,-0.009524871,-0.018232549,-0.0067993184,0.06728903,3.6156204e-33,-0.0566478,-0.038376126,0.04519231,0.07579981,-0.011841765,-0.014160442,-0.059086263,0.03240333,-0.03465002,-0.020540278,-0.07112937,0.065662324,0.044645052,0.03432343,0.006712846,-0.03340166,-0.007310153,-0.01123171,0.08848977,0.029834425,-0.08475375,0.013260008,0.022527386,0.032863542,0.0025006155,0.026662743,-0.04371812,-0.068356216,-0.06567803,0.07634014,0.041098263,-0.004918558,0.030754492,-0.022628367,-0.06566081,-0.05218439,0.012292643,0.022416959,-0.023885744,-0.019006243,0.022436636,0.036431327,-0.007657297,0.06363621,-0.0049230433,-0.035167526,0.04457073,0.052611947,0.035315085,0.02415988,-0.06780351,-0.057619657,-0.09901245,-0.03766689,0.01891054,0.015884679,-0.045943163,0.08150594,-0.048628453,-0.09640658,0.09537269,-0.014976643,0.087832116,0.032748584,-0.011382861,-0.03447407,0.043878525,0.06380808,0.098870434,0.030515002,-0.0641126,-0.040858645,-0.057809457,0.026892763,-0.03797668,0.028751545,0.0743039,-0.011160103,-0.022353737,0.019212304,-0.0460403,0.034570493,-0.0359181,-0.031703334,0.08312214,0.05477158,0.054692928,0.050251447,-0.025830334,0.0734576,-0.04832741,0.05823562,0.08114822,-0.03587281,-0.04866926,-4.2778355e-33,-0.07572253,-0.031539384,0.001384691,0.048500367,-0.05416677,0.002946872,0.0043936013,-0.04449046,-0.07606306,0.0051347096,-0.03493182,-0.11274413,0.13090214,-0.04294197,-0.054488692,0.047923677,-0.007084084,-0.025438974,-0.07059276,0.00076228543,0.02566034,0.10899538,0.061751913,0.0057658795,-0.037118446,0.0020862035,-0.032183286,0.018020071,-0.046594538,-0.02056862,0.059179652,-0.003633635,-0.013158039,0.040857583,0.014680241,0.05057785,0.07262901,0.09411152,0.03361246,0.009632947,-0.06962886,0.06042877,-0.03551564,0.01259546,-0.014361842,0.022121495,-0.02448291,-0.102659956,0.0055643907,0.002177058,-0.022776779,-0.014492689,-0.053665187,-0.059525024,-0.019388981,-0.008369959,-0.07227371,-0.049935784,-0.15100175,0.019451404,0.073517315,0.037678745,-0.09805321,-0.006983646,0.087494545,-0.0035165923,-0.05251361,0.02808016,0.032684084,0.057363175,0.08721901,-0.022284051,-0.06666385,0.023040278,-0.073524565,-0.004993999,-0.07082872,-0.020543426,-0.03458008,-0.009526819,-0.0484154,-0.012870265,0.0015979288,-0.037852965,-0.11000544,-0.095806375,-0.01512104,0.015187345,0.013068949,0.024729766,0.019642133,-0.065534115,-0.10489755,-0.0903511,-0.034409977,-2.2972115e-08,0.020242026,-0.005770941,0.078297205,0.044638995,0.051384,-0.08018513,-0.10045223,-0.050974354,0.07405748,0.06783127,-0.039250392,-0.0017467318,0.002111434,0.05652678,-0.017499605,0.038214885,0.037206348,0.04637707,0.000823959,-0.08958498,0.0776236,-0.0128293345,0.008362449,0.03930827,0.042617116,0.014602736,-0.06795957,0.001210587,-0.020079892,-0.0029313683,-0.003703564,-0.0021028153,-0.054478496,-0.08506212,0.0033853822,-0.001518925,-0.050513756,0.012366123,0.001230242,0.0065459837,0.09731028,0.027779642,-0.005253114,-0.023536028,0.029638164,0.0007488108,0.016129432,0.07330965,-0.023413537,0.027140113,-0.035201665,-0.07013603,0.09333765,0.0499725,0.005261518,-0.02310852,0.053227734,0.00880791,0.038273633,0.034624387,0.0037673595,0.105059646,0.060595114,-0.16343762} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:13.603468+00 2026-01-25 01:27:52.208834+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 657 google Ci9DQUlRQUNvZENodHljRjlvT2pNNFl6aFJlbmN3V1U5Tk1HVkdiVVpLTkc1VWFrRRAB 1 t 660 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown todo perfecto todo perfecto 5 2025-10-27 01:27:48.343091+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "todo perfecto"} {-0.044956103,0.09146932,0.07526565,0.053729527,0.025735026,0.015042066,0.11840262,0.014522475,-0.09763954,0.0522658,0.030010218,-0.0618444,-0.058156412,-0.0027543395,-0.017563084,0.0023995137,0.036913924,0.10402106,-0.07544036,-0.061397262,0.025782874,-0.04435914,-0.03723687,0.07209592,-0.115451746,0.05801967,-0.0012295862,0.014400453,-0.06363248,-0.026286904,-0.038875517,0.089754306,0.12768722,-0.005288996,-0.011199739,0.03208309,-0.0011390109,-0.04547622,0.04219131,-0.04123655,-0.073334746,-0.058141224,0.01369257,-0.01473068,0.009381476,0.028967978,0.019490032,0.08066807,0.09028546,-0.046242494,-0.07707935,-0.045316216,-0.07295004,-0.0073556267,-0.013782708,0.097845115,-0.050658975,-0.01855075,0.038994316,-0.011110918,0.02841911,0.010504153,-0.033332266,0.029209256,0.11048107,0.031356957,0.03080665,0.02299853,-0.083562635,0.083100095,0.060495753,0.03165047,0.06747532,0.0367186,0.0037034522,-0.00073445716,0.0024367357,0.0025338451,-0.05941453,0.021317208,-0.09321454,-0.12157143,0.012277949,-0.043939058,-0.0054830695,0.07316508,0.0025109313,-0.032497615,0.02452658,-0.04986324,-0.104946546,0.07754886,-0.07235093,-0.021677459,-0.018354155,0.042415883,0.024863493,0.0027414123,0.0033898344,0.11441869,0.1069995,0.038426597,0.030805385,-0.012108638,0.099447966,0.034641586,0.0010247388,-0.016896108,1.6530306e-05,0.06355635,-0.0014819577,-0.038205933,0.036910404,0.0714327,-0.022404946,-0.08051182,-0.055844445,-0.0715084,-0.02968652,-0.0033397449,0.08250486,0.03448596,0.026503883,-0.02966392,-0.06550968,-0.054583743,0.04724714,-1.8603037e-33,-0.02860993,0.00021375022,0.06604458,0.021710515,0.039173596,0.033437155,-0.11037423,-0.041534964,-0.05903765,0.036231637,-0.058996063,-0.021556174,-0.047354963,0.04038458,0.037412044,0.010518894,0.05238937,0.039728545,-0.0030867977,0.04161858,-0.042397857,-0.0130725,0.011664333,0.011072815,-0.01338914,0.08502941,-0.018851912,-0.07243076,-0.0089206975,0.029571483,-0.052031595,0.015966993,0.038469512,0.041458167,-0.07511905,-0.09995828,-0.017363267,-0.014116283,-0.016876586,-0.013461704,0.040852584,0.022806196,-0.03755226,-0.01869095,0.02431973,-0.009423314,0.0612612,0.026664995,0.12071767,0.029552978,-0.028776482,-0.1051574,-0.059650157,-0.08715644,-0.0005556186,-0.04277825,0.028239409,0.024221247,0.01714012,-0.0037377572,0.06630936,-0.011093909,-0.09964496,-0.06678793,-0.07741358,-0.04802356,0.04618963,0.019521518,0.054490108,-0.032294963,-0.05714129,-0.029403064,-0.0023573795,0.061882775,0.021719597,-0.06425439,0.049890377,0.006371138,0.014133033,0.026690386,-0.007647002,0.011530695,0.049727194,-0.026865723,0.111081384,0.09203895,-0.0023041763,-0.059347626,-0.073959,0.059908904,-0.021210363,0.046308123,-0.0025327944,-0.05731402,0.027398018,9.44054e-34,0.030627236,0.0071401782,-0.013471991,0.097192645,-0.0021112338,0.0018935864,-0.09839777,-0.029339748,0.053375226,-0.007868447,-0.0016841897,-0.09661485,0.08657201,-0.006544791,-0.008455062,0.08673186,0.10447934,-0.03791569,-0.11020831,0.019999953,-0.023051113,0.016542189,0.06108832,-0.013390123,-0.022052875,-0.05515198,0.022006132,0.03367009,-0.041321203,0.011008739,0.055354383,-0.081540294,-0.06614938,-0.0332205,0.06642692,0.051957652,-0.029041026,0.05906869,-0.036868278,0.0608859,0.029785717,-0.0124555025,-0.02316253,0.054066807,-0.034561887,0.026109003,-0.0003375966,-0.039610017,-0.07891711,0.004220833,0.08088501,-0.051428523,-0.060448468,-0.0020373086,0.067167394,0.03605333,-0.023944031,-0.052944142,-0.05893454,-0.046383746,-0.008808672,0.034186546,-0.011515593,0.015586809,0.015898054,0.047458332,-0.030177116,0.023382284,-0.05257197,0.07788021,0.029979914,0.001334779,-0.10619336,-0.010531234,-0.043471046,-0.030568225,-0.062427234,0.05207301,-0.0140985185,-0.022846075,-0.035953514,-0.02445711,-0.05067916,0.050493483,0.023580352,-0.09970213,-0.0054360204,-0.012664911,-0.020578435,0.043140132,0.037334096,0.08025315,0.017946111,-0.007304319,-0.03907149,-1.5607789e-08,0.0047993576,-0.027475858,-0.13189389,-0.02246714,0.072313346,-0.10945585,0.0048714606,-0.061010774,-0.0027345184,0.062454946,0.04952011,-0.045286287,-0.025438195,0.045111097,0.011185603,0.0031816748,0.0007490892,0.092470795,-0.016232768,-0.025290523,0.051590487,0.007090533,-0.03767331,-0.058147114,0.03944855,0.045331094,-0.010308021,-0.011980744,-0.03855104,0.015114017,0.04014904,-0.021916458,-0.04567321,-0.053461894,-0.023780107,0.0144540155,0.0067472425,-0.027151389,-0.009533857,-0.08192022,0.068847746,0.058498506,0.04895622,-0.012210913,-0.033419542,-0.0035283363,0.058859687,-0.0022581934,0.031083852,-0.01246015,-0.059457075,0.024553437,0.09851935,0.032417137,0.0038736283,0.02001408,0.12771364,0.030963704,0.010142553,0.028340638,0.118703976,0.09359909,-0.016348675,-0.014752223} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:25:03.634385+00 2026-01-25 01:27:52.218815+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 660 google ChdDSUhNMG9nS0VJQ0FnSURYOHAtN3h3RRAB 1 t 663 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown De 10, repetiré sin dudarlo! de 10, repetiré sin dudarlo! 5 2025-01-25 01:27:48.343096+00 fr v5.1 R1.01 {} V+ I3 CR-N {} {"R1.01": "De 10, repetiré sin dudarlo!"} {-0.12414955,0.08643624,-0.044998687,-0.056187354,-0.06209006,0.07533666,0.103268154,0.0516881,-0.024299238,0.019230457,0.07090732,-0.042779334,-0.016956525,0.0026830737,-0.06605691,-0.061028164,-0.053987496,0.14719208,0.035252254,-0.01265403,0.02261695,0.020682093,-0.03710376,0.04023364,0.030455114,-0.0047052624,-0.011863176,0.040636197,-0.054179583,-0.053161655,0.0796714,0.0022537564,-0.004648621,-0.028438987,0.0008020974,-0.040854413,-0.020546753,-0.090674505,-0.032742023,0.1008598,-0.088330515,0.0047065536,-0.06573563,-0.0920541,0.0019971714,-0.020517796,-0.046154648,0.15522298,0.042410724,-0.011009795,0.031452447,0.0119971465,-0.026291816,0.0020746684,0.019911896,-0.045885526,0.01825408,-0.031084895,-0.0135760335,-0.052542035,-0.016699117,0.063085735,-0.054986026,0.018015208,-0.09872368,-0.0386393,0.045174,-0.049835462,-0.09173451,0.07944006,0.1503102,-0.040358257,0.023913473,-0.05789282,-0.06489574,-0.045625,-0.049423344,-0.013477221,-0.06230765,-0.0676241,0.024785554,-0.013681457,0.014648633,-0.020079745,-0.025115296,-0.016466923,0.03256502,0.046109572,0.0327221,-0.051036816,0.007381747,0.05139147,-0.09587356,-0.0012934036,-0.07194356,0.024441592,-0.0005604481,0.012410135,-0.0651669,0.052589323,0.06424037,0.066152185,0.008845342,0.03945584,-0.013209628,0.03369604,0.1116848,0.010132623,0.021587767,-0.011073764,-0.0020608508,-0.033732586,-0.028718932,-0.0032309904,0.059787508,0.0012393189,0.023820393,-0.087299965,-0.038371526,-0.05629839,0.016485985,-0.031309593,0.0150464075,-0.00089191034,-0.022807296,0.036571473,0.045407597,-5.298801e-34,-0.023394495,-0.034231447,0.010443268,0.017428754,-0.009913495,0.024940647,-0.09471713,0.06443966,-0.03589858,-0.051679235,-0.082437985,-0.046975646,-0.012252187,0.07652503,-0.051275764,0.040002007,0.030408395,0.023725746,0.074353516,-0.036664534,-0.034284122,0.029230213,0.019949982,0.060606115,0.03916828,0.014390932,-0.03336674,0.046154235,-0.02799743,0.020677803,0.011870167,0.0076220063,0.023728715,0.011684962,0.018899765,-0.0054533374,0.051894795,0.055215612,-0.012138519,-0.016465059,0.08196854,-0.07676044,-0.009888719,-0.0057023535,0.10070225,-0.014117967,0.12201476,0.010805482,0.002499607,-0.017539546,-0.045975603,0.072022416,-0.02890433,-0.01841362,-0.04993162,-0.006083269,0.005826774,0.026509902,-0.005151582,-0.0024563049,0.085317425,-0.0047742072,-0.015076249,-0.037770346,-0.019133972,-0.026844198,0.037959944,0.01468011,0.10734821,0.019868005,-0.0431601,-0.0102445595,-0.016307183,0.0059786183,0.018549597,0.04010226,0.0436306,0.04421422,0.002818178,0.034546994,-0.060237773,-0.03425048,0.0021895512,0.020235786,0.07811428,0.08713435,0.021980222,-0.064446986,-0.007795643,0.046269987,0.028484927,0.02045151,0.044387195,-0.09692755,0.04596484,-7.2794843e-34,-0.05251276,-0.0028357147,-0.07185182,0.034378074,-0.08649943,0.03314747,-0.05476394,0.052659806,-0.018753495,-0.07964987,-0.08507175,-0.07219684,0.13473003,-0.10850543,-0.014488322,0.11668549,-0.018796384,0.043687012,-0.048179697,-0.042981222,0.028326806,0.048954275,0.03267229,0.0025708515,-0.013123319,-0.015504872,0.1258914,-0.051053837,0.041988734,-0.000821346,0.0027771788,-0.06470391,-0.041564517,0.07002621,-0.0020181413,-0.0032679401,0.060273774,0.0006370802,-0.034242105,0.05256532,-0.06683983,0.023950431,-0.008088322,0.029074345,-0.013029501,-0.00054090406,-0.060137555,-0.046358608,-0.07647935,-0.029304404,0.055765707,-0.060611777,0.005500125,-0.008966721,-0.0009599124,-0.026660487,-0.006916747,0.068395235,-0.03203165,0.0003803271,-0.006603877,0.07200982,0.0077264104,0.007295569,0.07731663,0.0015212729,-0.03288007,0.119234584,0.045654025,0.028857451,0.050592903,-0.045014676,-0.076276086,-0.014730655,-0.14263535,-0.059822332,-0.035424676,0.07056848,0.007953752,0.085967734,-0.017717926,-0.0282357,-0.038474653,-0.021752028,-0.027943963,-0.029134728,0.009807463,-0.022098554,0.024486307,0.027157467,0.027332747,0.039691284,0.01065561,-0.006633973,0.013218427,-1.8373802e-08,-0.0064546256,0.0045276484,-0.040858712,0.06473194,0.10598001,-0.11193542,-0.030779006,-0.016544133,-0.06134386,0.07054165,0.04365012,-0.046272118,-0.073575705,0.103356354,0.0007951498,0.021376166,0.0646175,0.029623901,0.008042054,-0.05425667,0.028493445,0.021431684,-0.00983655,-0.030481597,-0.036883973,-0.017155202,-0.002926931,0.01087231,0.025334727,-0.105570555,0.031108169,0.029836453,-0.13908423,-0.08945526,-0.017066833,0.053067245,-0.031145262,0.038966153,0.031027751,-0.0060935607,0.013066678,0.06604652,0.041066468,-0.007565802,-0.010817297,-0.07776107,-0.055688445,0.05133984,0.019409498,0.0071909423,-0.025209958,0.0747565,0.03746168,0.0049171713,0.033581916,0.008556167,0.07888158,-0.018619496,-0.05391317,0.12112237,0.111573756,0.09795527,0.009917969,-0.047907807} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:53:00.421007+00 2026-01-25 01:27:52.22578+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 662 google ChZDSUhNMG9nS0VJQ0FnTUNJNmJYc0hBEAE 1 t 665 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Goede service en aardig mensen goede service en aardig mensen 5 2025-04-30 01:27:48.3431+00 nl v5.1 A1.01 {} V+ I2 CR-N {} {"A1.01": "Goede service en aardig mensen"} {-0.029710583,0.08016584,-0.038621172,-0.045151215,-0.041884664,0.010295191,0.15496853,0.014628717,0.0015367354,0.005035101,0.023994004,-0.0044197817,-0.01856129,0.06900963,0.034279477,-0.1153445,-0.046821482,-0.001880515,0.017730532,-0.02656543,0.011811673,-0.004393162,-0.08026958,-0.028932437,-0.107110746,0.01716727,0.02504076,-0.054309785,0.009194525,-0.08437261,0.09835469,-0.053782556,0.002970637,-0.008333769,0.025444457,0.0772797,0.07164273,-0.10287077,-0.038324878,0.06410308,-0.09348075,-0.056958392,-0.035599317,-0.032022774,0.06327701,0.048370667,-0.021908438,0.004144189,-0.03769652,0.025157996,-0.02460497,-0.035091657,0.03328991,-0.005399724,0.036874987,-0.03050203,0.005621718,0.008780255,-0.033606663,-0.036188617,0.0029228667,-0.063247494,-0.032645214,0.0019832086,-0.0112034725,-0.030927785,-0.036631837,0.030016722,-0.06710518,0.06567626,0.09749276,-0.1033404,-0.046835613,0.0075236307,-0.0045083063,0.054338597,-0.03770554,-0.0038680797,0.036037214,-0.103392094,0.022565482,-0.0494798,-0.05645519,0.13457645,-0.0321217,-0.023039585,-0.018610733,-0.05509662,0.05150792,0.034712445,-0.021308566,-0.01844063,-0.044662233,-0.009172821,0.023788124,-0.032759003,-0.009200732,0.020887101,-0.07865795,0.026531646,0.06365878,-0.01994202,0.038081426,0.037292853,-0.051911145,-0.016857224,-0.02316978,0.029272642,0.12873496,0.044845775,-0.11472448,0.046733662,-0.03509466,-0.059709612,-0.0006997176,-0.00989556,0.06172139,-0.08281116,-0.02628906,0.023107208,0.074003465,0.059195038,-0.071461186,0.03248684,0.071950674,-0.02883893,0.07904018,5.5905992e-34,-0.09015221,-0.01842707,0.030047573,0.051298905,-0.009930065,0.021839948,-0.042419683,-0.06307978,0.024405245,-0.027061969,-0.06229282,0.08080513,-0.010997698,-0.0068647694,0.012480306,0.036379036,0.044907518,-0.006273753,0.052701354,-0.0023597395,0.006803547,-0.03474327,0.014801314,0.06221743,0.1265686,-0.05190229,0.038973447,-0.07341763,0.019665984,0.0047909487,0.10318922,-0.0055954214,-0.009465145,0.0050830264,-0.011114505,-0.004720578,0.03687245,0.020222686,-0.03262259,-0.04133973,0.039899338,-0.009932497,-0.04277729,0.05143824,0.0579479,0.01927473,0.015715431,0.044015583,0.086235374,0.026229382,-0.05634543,0.01898999,-0.03517617,-0.00075998536,0.024196139,0.07425156,-0.05630082,0.105520144,-0.001238177,-0.12465297,0.042684734,-0.036610227,0.046600826,0.04071213,0.08689209,-0.029950965,0.013468864,-0.024234945,0.018919123,0.03690992,-0.05262265,0.008278515,0.06770262,0.08345491,-0.10928515,0.06417262,-0.023410968,0.052473996,-0.00052847416,0.01230468,-0.07644653,0.0031557288,-0.02763023,0.012438803,0.13770409,0.012174921,0.037630234,-0.07610462,-0.013970275,0.04649397,0.049240556,0.038060464,0.005307385,-0.0011468854,-0.04220257,-1.970295e-33,-0.03606276,-0.024685612,-0.074866086,0.07725554,0.08464784,0.04482716,-0.01267307,0.08891508,-0.017527778,0.058520623,-0.014829406,-0.07289571,0.08933003,0.010821022,-0.08954746,0.03326512,0.045759164,0.03965949,0.076811835,0.031182855,-0.06419166,0.021847727,0.06137558,-0.0019652762,-0.0363925,0.060260866,0.023342535,-0.011101384,-0.1362475,-0.07920596,0.04103015,-0.045913994,-0.048003875,-0.0039800066,0.020781452,0.014663651,0.028709382,0.16215052,0.061218917,0.057343766,0.0026858735,-0.012686024,-0.057658467,0.0069882944,0.032127813,-0.017363667,-0.08227111,-0.0360525,-0.032792278,-0.08197711,-0.03482998,-0.050744265,-0.030854115,-0.06482483,0.047455423,-0.01812738,-0.0077225813,-0.07648102,-0.12731357,0.04476001,0.084319204,0.039689653,-0.053649392,0.06202926,0.024857761,-0.059639495,-0.08729191,-0.014587791,0.006558424,0.01967713,0.03741203,-0.111282386,0.019606132,0.09114896,-0.06171484,-0.05274117,0.03196301,0.031184921,0.0077900356,-0.068118244,-0.043522973,-0.053530447,-0.015590787,0.02641496,-0.027417554,-0.061389763,0.07504106,-0.029914886,0.01106863,0.01779275,-0.028909488,0.008897672,-0.034409575,-0.005724581,-0.0118510295,-1.8570006e-08,0.014809511,-0.062826306,-0.019976236,0.025534246,-0.004804011,-0.11836142,-0.042323958,-0.051795017,0.040635448,0.08197114,-0.06460993,-0.04947022,-0.054226473,-0.011854286,0.038477555,0.028212724,0.020306693,0.007927364,-0.028792152,-0.051698808,0.019702855,-0.026657157,-0.014868026,-0.026832731,0.029113827,0.08134704,0.0021524762,-0.046895433,0.064126775,-0.062416043,-0.014209619,0.08621194,-0.013089495,-0.03547923,-0.011920238,0.05848018,-0.050805997,0.036298756,0.028864667,0.0060777874,0.024616698,0.09033201,0.05772836,-0.017146494,0.004565772,-0.0015845834,-0.02476352,0.016201463,0.039925132,-0.008443352,-0.08387439,0.031936795,0.08170616,0.018822309,0.026953794,0.013737967,0.041369416,-0.00031266332,-0.03730085,0.048131637,-0.01955,-0.017251866,-0.024034314,-0.015689699} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:42:50.655973+00 2026-01-25 01:27:52.234623+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 667 google ChdDSUhNMG9nS0VJQ0FnSURILTZHeGxnRRAB 1 t 670 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Alles perfekt! alles perfekt! 5 2025-01-25 01:27:48.343127+00 no v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Alles perfekt!"} {-0.03645292,0.09318035,0.020029739,-0.052728217,-0.021569954,0.045908608,0.03370667,0.032366823,0.02587683,0.036955222,-0.023312714,-0.085003704,0.03039654,-0.0039510974,-0.096721604,0.02683446,-0.04169397,0.032721255,0.028519336,0.004333193,-0.05336925,0.007242442,-0.06693062,-0.0002611173,-0.04210733,0.013075125,-0.019242624,-0.019251604,-0.052992854,-0.09398789,-0.010335683,0.0055076904,0.034841005,0.026376806,0.024826016,-8.145865e-05,0.024251135,-0.09719022,-0.011648317,0.09542451,-0.15300883,0.0053966544,-0.10237772,0.02720529,0.00040576997,0.05849674,-0.017753247,-0.01348838,0.030407477,-0.05723844,-0.032979924,-0.0951406,-0.03929838,-0.025559518,0.088049,-0.000654709,0.004887252,-0.040268116,-0.012658423,-0.041296195,0.0014816367,-0.0047557205,-0.016537847,0.05355328,0.02627919,0.023650592,0.045917735,0.021706233,-0.08574296,0.026426401,0.055225454,0.029495586,0.01595112,0.0372361,0.0055346387,0.022301584,-0.0831178,-0.022952843,0.019507343,-0.03371818,-0.03380696,-0.018264405,0.014382324,-0.028116386,0.046853423,-0.04217536,-0.020312387,0.023685347,0.039856188,0.03934958,-0.07811986,0.015423775,-0.11366764,0.008560194,-0.10140988,0.027484216,-0.007897033,-0.048391208,0.016218688,0.047499638,0.060945358,0.022555528,0.049064614,0.029331297,0.0194473,0.004192863,0.028444868,-0.08002277,0.0652131,0.013803071,-0.07655561,-0.027367113,0.0131493965,-0.0116152875,-0.020725196,0.004615944,0.00094752194,-0.07396858,0.0404488,-0.0005163023,-0.025696538,0.0353549,-0.060139865,0.09371819,-0.00086591474,0.033316787,-0.00656895,-1.6272155e-33,-0.07469531,-0.026456827,0.03779828,0.025194502,-0.0103235645,0.018647408,-0.07448843,-0.053022116,0.027634023,-0.018331258,-0.0735081,0.033962935,-0.061590526,0.030089522,0.0043093837,0.039752964,0.062298052,-0.06570051,0.014090649,0.018039916,-0.026984122,0.019262286,-0.024467764,-0.011810196,-0.02469453,-0.0036457668,0.10312633,0.0243942,-0.1065673,0.025370201,-0.030370248,-0.0017949537,0.0023673603,-0.04484517,-0.014206784,-0.074156195,0.01797804,0.028976709,-0.024279175,-0.017395265,-0.03136185,-0.013001907,-0.07878691,-0.07290647,0.017812911,0.02395717,-0.050902236,0.074596964,0.028627729,0.026355825,-0.09154321,-0.025107795,-0.036970496,0.008938757,-0.002675424,0.056632157,-0.03700611,0.014671249,-0.031036057,0.02560765,0.06085294,-0.03177952,0.053278632,-0.09609437,0.03304625,0.015145483,-0.014942483,0.05832025,0.046716075,0.048063897,-0.027579654,-0.02370978,0.08105437,-0.004161349,-0.06436545,-0.020614466,-0.007797332,0.05123281,0.015030769,-0.005129884,-0.02874413,-0.005603116,0.068690844,-0.07817056,0.08185894,0.068232,0.0529513,-0.07147033,-0.00044148383,0.112165496,-0.020159615,-0.005301239,0.036836624,-0.07745693,-0.091213435,2.7602918e-35,0.015426475,-0.017175652,-0.022364166,-0.020308046,0.025838284,0.06096172,-0.03027149,0.042745695,-0.0038286604,0.0046889735,-0.04466274,-0.05241068,0.110531755,-0.061170455,-0.073962845,0.14001223,0.041308347,0.03580677,-0.05048869,-0.000322316,-0.10461313,-0.023067938,0.025160896,0.1307127,-0.022682386,-0.02857189,0.057259083,0.031920902,-0.10301187,0.02575611,0.06788309,-0.022948805,-0.011262798,0.049293697,-0.03994011,-0.048163686,0.047821794,0.11171551,0.02017,0.033687394,0.0029741877,-0.029212942,-0.04145671,0.07296403,-0.061701417,0.017399931,-0.10074984,-0.108763725,-0.055693,-0.05488008,-0.06609519,-0.034246556,0.11342468,-0.021810042,-0.0028952598,-0.0006677318,0.052736547,-0.055394158,-0.020660738,-0.009824328,-0.008596184,0.058469966,0.026559295,0.031460658,0.09701253,-0.037680037,-0.06538752,0.024920832,0.0525821,0.032128394,0.113822386,0.012437803,-0.16748567,0.027106626,-0.06880715,0.07233938,-0.024566943,-0.052121498,-0.020234503,0.039377965,-0.06628959,0.0074223983,-0.007939755,0.025870264,-0.049240597,-0.024683345,0.13205181,-0.021772658,-0.041727766,-0.016175753,0.029947836,0.12969285,-0.0073587713,0.014555408,0.09525925,-1.655143e-08,-0.009015964,-0.0026835108,-0.028850969,0.10246235,0.05144421,-0.11376098,-0.0011989255,0.04838592,-0.07103603,0.038935084,-0.026551403,0.019182723,-0.010917551,0.06348769,0.0477548,0.08473569,0.08394049,0.06686483,0.004268385,0.066268444,-0.022642024,0.03302681,-0.02923584,-0.07678898,0.009087143,0.030848576,0.06384772,0.033717383,0.1069909,-0.010016947,-0.0075609144,-0.028921245,-0.11113474,-0.014942487,-0.047314927,0.04093371,-0.014815396,0.049538985,-0.021472612,0.011399717,-0.00458032,-0.018031731,0.09254763,-0.025859278,-0.060361344,-0.0066634337,-0.03688103,0.044279132,0.035329875,0.06247869,0.009687929,0.0096268505,0.026477737,0.074472554,0.049667545,0.07596953,0.046423897,0.04675018,-0.029474176,0.07107373,0.07541794,-0.00118514,0.035399143,-0.03502387} 0.6 gpt-4o-mini {"overall": 0.8} 2026-01-25 03:52:31.240745+00 2026-01-25 01:27:52.2687+00 a3813665-ea23-4fb0-aab7-b282ef9443e4 1388 google Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB 1 t 1391 Go Karts Mar Menor unknown Good afternoon. Friendly staff. Very reasonable prices for an adult/child kart. good afternoon. friendly staff. very reasonable prices for an adult/child kart. 5 2025-07-04 00:52:39.833374+00 en v5.1 V1.01 {V1.01} V+ I2 CR-N {} {"V1.01": "Good afternoon. Friendly staff. Very reasonable prices for an adult/child kart."} {-0.008674278,0.050907224,0.02839826,0.090889975,-0.083842814,-0.03065679,-0.020274863,-0.042363133,-0.002814226,0.04184273,0.00030275615,-7.5612355e-05,-0.05189372,0.04456064,-0.012819978,-0.03882332,0.08752191,-0.09993786,0.01419556,-0.07493949,-0.101657264,0.0211147,0.021530896,0.017050473,-0.013413116,-0.039166644,0.021572879,0.054186825,0.040703695,-0.022585582,-0.10262114,0.014651015,0.053916715,-0.020451806,-0.044488028,0.024378901,0.059578244,-0.029169392,0.0036053571,0.02850488,0.03766451,-0.01906821,-0.071035534,0.0072427937,-0.028368616,0.04842799,-0.068269596,-0.01602536,0.06647032,0.047125522,0.028627891,-0.047014475,0.07036884,-0.024694463,0.02466101,-0.04764466,-0.07096497,-0.032240886,0.1330157,0.031733215,-0.025053596,0.029170915,-0.09158557,0.021323385,-0.0022069707,-0.083300315,-0.07469365,0.019222723,-0.0033187957,-0.050704334,-0.008485687,-0.0075316387,0.11520394,0.013690084,-0.0005868961,-0.029233705,0.04821843,-0.052494384,0.033461224,0.0033779226,-0.045214962,-0.024220908,-0.012104256,0.007844076,-0.0151037015,-0.063358285,0.09408783,0.03899196,0.03965848,-0.0045501604,0.043089442,0.07988087,-0.010670532,-0.02144704,0.059922058,-0.008204178,-0.007462803,-0.029243262,-0.08501089,0.0072003487,0.017053964,0.096491605,0.076882,0.041548725,-0.07246905,0.018148676,-0.11104305,0.027236944,0.0009414444,-0.0062730424,-0.10092848,0.016919738,-0.070209146,-0.02977327,-0.013859164,-0.0035020355,-0.0113018565,-0.024426961,-0.0099658575,0.009515211,0.0645757,-0.0066476357,-0.04413961,0.008879079,-0.00534466,-0.01522909,0.018455569,-4.2011433e-33,-0.037289355,0.08974671,-0.020318488,-0.018476827,0.01775836,-0.10260617,-0.018415157,-0.06350594,-0.065246835,0.053499784,0.05123942,0.08915619,-0.012563762,-0.056720972,0.05514907,-0.030277327,-0.00113264,0.052907586,0.010707273,0.0352308,-0.06610312,-0.03572147,-0.034102887,0.07198826,0.0456077,0.00016138727,0.11361857,-0.008930318,0.17000905,0.0034588822,0.0102344975,-0.02191187,-0.0008264014,-1.8988834e-06,-0.07715628,0.020490913,-0.04188473,-0.055271607,-0.0682439,-0.003822272,0.014761905,-0.033665493,0.07889123,0.0061608325,-0.012758915,-0.01534563,0.05512362,-0.044767883,0.0014693664,0.011772069,-0.096555725,0.056350615,-0.011522399,0.069036424,-0.03505304,0.0018657116,0.07071109,0.02502984,-0.02356958,-0.036372155,0.02465352,0.029512193,0.012778801,-0.05518133,-0.077428825,-0.109679125,-0.06673508,-0.019567097,0.061240226,-0.03465966,0.0072353547,0.07003649,0.073836766,-0.04248482,-0.009831699,0.09697195,-0.0392481,0.0023917258,0.036451433,0.031222543,0.009985998,0.012230555,0.04166346,0.021520225,0.071285695,-0.042018943,-0.057706505,-0.015051546,0.0135047715,0.05745454,-0.07704183,0.03253152,-0.006780119,0.082238406,0.026331091,2.237468e-33,0.087246604,0.035534207,0.020545982,0.110069975,0.023157796,0.017984875,-0.0083476305,0.008664688,0.024172004,0.06653716,-0.15077224,0.06750928,0.00046921082,0.035158608,0.025366249,-0.013794269,0.056421954,0.049508724,0.058551498,-0.13415167,-0.055580936,0.12446902,-0.019504277,0.015912484,0.037986126,0.08695269,-0.03738694,-0.01570054,-0.14329113,-0.008082932,-0.063364305,-0.103621244,0.01952082,0.01918613,-0.01633852,-0.003393111,0.04552594,0.03940511,-0.049958285,0.061081093,0.031604502,0.0015877389,0.009095936,0.009657935,-0.008728797,-0.0798197,0.11370982,-0.045812685,0.038707927,-0.019452289,0.01542291,0.05326273,0.0021182073,-0.054326653,-0.048639502,-0.02088743,0.03076221,0.0067664855,0.010169186,-0.040281408,0.004027865,0.016675051,-0.019754233,0.07627486,0.0256941,-0.021054246,0.037475582,-0.030621868,-0.016555209,-0.050924003,-0.022590546,0.009153729,0.05307897,-0.0244001,0.027871039,0.018031554,0.11879206,-0.038616903,0.040799655,0.03949922,0.047119424,-0.046998605,0.025009865,0.008845422,-0.014875474,-0.08216113,0.029631624,0.0027091056,-0.00056287675,0.028761065,0.011308067,0.027408388,-0.022843018,-0.05018656,-0.007627207,-2.0312434e-08,0.05752863,0.02888151,-0.06272998,0.04805678,0.026911959,-0.10657634,0.010726594,-0.010336612,-0.035431836,0.06636485,-0.035848595,-0.029142909,-0.0019154614,-0.01853428,0.052090257,-0.011614555,-0.013440197,0.07488487,-0.05558719,0.008766096,0.036558364,0.101265,-0.028811285,0.046695676,-0.075029396,-0.0062796273,-0.04172277,0.022352649,-0.049061917,0.074371815,-0.021807957,0.103873424,-0.047832843,0.0077028912,0.016719697,-0.088805266,-0.13612953,0.06159197,-0.020940648,0.03272833,-0.05424232,-0.07910195,-0.11922375,-0.013214589,-0.013762936,0.089950025,-0.11632391,0.007019561,-0.066153355,0.014107023,-0.030914687,-0.024598606,0.036033567,-0.01625017,0.035622403,0.014291302,0.018303527,-0.065691374,-0.0029516655,0.007949054,-0.026753182,-0.061769534,-0.07414286,0.08819952} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.724487+00 2026-01-30 02:01:09.197363+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1390 google Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB 1 t 1393 Go Karts Mar Menor unknown Very good. Karts drive amazing and good a great range of selection to choose from very good. karts drive amazing and good a great range of selection to choose from 5 2025-08-03 00:52:39.833374+00 en v5.1 O1.02 {O2.02,O4.03} V+ I3 CR-N {} {"O1.02": "Very good. Karts drive amazing and good a great range of selection to choose from"} {-0.003491683,-0.0050308504,0.04391631,0.08337605,-0.071147904,0.059091005,-0.013593971,-0.010377277,-0.02217547,0.010813441,-0.021977177,0.08188871,0.0023064495,0.019877942,-0.0031703117,-0.0007041036,0.10531739,-0.112194166,0.012178941,-0.05192965,-0.072299965,-0.024926776,0.014960415,-0.0016062654,-0.084326684,-0.047335465,-0.006530875,0.05682935,0.012225238,-0.023059059,-0.11832134,0.06435515,0.00373714,-0.008585301,-0.08684175,-0.029040342,0.02943021,-0.09797892,-0.04066263,-0.026124852,0.034329187,-0.021446392,0.015926065,0.025983833,-0.048647888,0.034619052,-0.03333823,0.021073297,0.057458546,0.04167355,-0.007104313,-0.06467792,0.046128318,-0.06018011,-0.029056735,0.00084609457,-0.12183696,0.0281092,0.0517906,-0.08247001,0.12699464,0.0066415034,-0.08371521,0.005991667,0.018185403,-0.07563516,-0.04853537,-0.0109480545,-0.011461279,-0.013341137,0.011810566,0.023290278,-0.002599426,0.024461826,0.055867348,-0.011453984,-0.004499272,-0.039786402,-0.0652654,0.016084163,0.020820221,0.01302166,-0.034928247,-0.029521082,0.0052076965,-0.12981044,0.056568027,0.029535217,-0.006046851,0.008612862,0.054703172,0.03192037,-0.04298788,-0.024254005,0.010718192,0.08116057,-0.01622539,-0.031691287,0.033922575,0.009890717,0.01497643,0.10226905,0.035948697,-0.0018487261,-0.035821132,0.039530404,-0.034730427,0.07509316,0.025609134,0.053691305,0.016567014,0.017259395,-0.02592697,0.0015731055,-0.04992868,0.043125544,-0.05074612,0.0701753,0.014936286,0.027179517,-0.014270917,-0.026671067,0.04785186,0.047419835,0.0027912694,-0.05256959,0.035391342,-1.4114066e-33,-0.094122455,0.011189002,-0.0003847246,0.00613422,0.037234083,-0.1298037,-0.051102266,-0.13113782,-0.09369545,0.05947466,-0.03750803,0.060958333,-0.0029880388,0.031690866,0.13592966,-0.047474224,-0.034203473,-0.032279246,-0.07200592,0.040272005,-0.007449174,-0.0027149497,0.014939907,-0.005375852,0.053667504,-0.008490143,0.06882687,0.011012896,0.033051543,0.018960068,-0.07447537,0.0060204533,-0.09169502,0.022279615,-0.010347213,0.07579788,-0.07845609,-0.032171186,-0.02160733,0.07642957,0.016847545,-0.031569976,-0.005205706,-0.002062217,-0.06752391,0.012365236,-0.015395153,0.0054497095,-0.005047999,-0.0015013474,-0.10666848,-0.014786135,-0.034858264,-0.008475167,-0.042994235,0.07170955,0.07336542,0.01937137,-0.07327966,-0.03849436,0.06949923,-0.0028184496,0.02918353,-0.057102535,-0.08576508,-0.032525852,-0.00734745,-0.03368117,0.031622525,0.029932525,0.020950234,0.009454725,0.057166547,-0.047279608,0.08532394,0.015788095,-0.08076422,-0.016197165,-0.03743983,0.09892644,-0.014179699,0.025695352,-0.03768638,0.009711826,0.031051375,0.013653729,-0.09466232,-0.06853193,0.049024943,0.04067862,-0.04409635,0.039529994,0.013639324,0.027122116,-0.02800137,-5.6177637e-34,0.048061717,0.09987438,0.10810659,0.1217915,-0.057635754,0.013319407,0.022583196,0.05805777,0.0297888,0.054062027,-0.020939933,0.08422538,0.007975563,0.01601222,0.032984376,-0.008236368,0.102597594,-0.019028516,0.014970951,-0.14407635,-0.012667445,0.023547543,-0.027394561,-0.062284723,-0.013112477,0.030826388,-0.08386488,0.04829814,-0.096508324,-0.029349584,-0.0041833334,-0.049827825,0.046166115,0.011708661,0.002810551,0.07559869,0.028083226,0.057336364,-0.081736565,0.008107218,0.037662387,0.0115248505,-0.015672605,-0.012608899,-0.0035297533,-0.020059658,0.13996342,0.044902734,0.025932536,-0.033007953,0.09971049,0.057958815,-0.051908694,-0.04055392,-0.0076883356,-0.06439541,0.06857407,0.04758858,-0.0042336807,-0.037439745,-0.07629419,0.054781824,-0.014147228,0.034371085,0.04493557,-0.07470859,-0.022462599,-0.102402695,-0.0253753,-0.04538796,-0.046419926,0.023254149,0.00071302627,0.0096544335,0.0013605544,-0.07116841,0.08452544,0.022783948,0.012809835,0.042233463,0.0085049905,-0.053744525,-0.036534637,0.027533768,0.0059146835,0.03686889,-0.047849543,-0.027729355,0.01707709,0.07331358,0.07078932,0.106299944,-0.022133822,-0.03902324,-0.033398665,-2.1749019e-08,0.016612722,0.054980513,-0.06870889,0.040188327,-0.04764062,-0.039766587,0.0059859725,0.051442116,-0.09715471,0.052424725,0.050673008,0.016276745,-0.025383811,0.045152076,0.016011301,-0.052980945,0.059626766,0.17029507,-0.011116442,0.008823034,0.066561975,0.046980992,-0.011155784,0.11683405,-0.0387381,-0.03148694,0.016119592,-0.0005424618,0.020000234,-0.02045681,0.006273497,0.07993787,-0.006182242,0.06521406,-0.004661596,-0.026336268,-0.05674329,0.07400587,0.042104445,0.04516033,-0.024336247,-0.053426277,-0.08885239,-0.009468095,-0.10753944,-0.006447454,-0.043581735,-0.030880736,-0.08788937,0.019048525,-0.021593334,-0.024730371,-0.046587843,0.05852363,0.021898815,-0.0052175676,0.004276369,-0.071628734,-0.013045736,-0.009101249,-0.038792416,-0.06733304,-0.054160256,0.048292246} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.587702+00 2026-01-30 02:01:09.20341+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1519 google ChZDSUhNMG9nS0VJQ0FnSURNbU5PeGZnEAE 1 t 1522 Go Karts Mar Menor unknown Perfect for 'kids' of all ages. Friendly atmosphere. perfect for 'kids' of all ages. friendly atmosphere. 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {E1.04} V+ I3 CR-N {} {"P1.01": "Perfect for 'kids' of all ages. Friendly atmosphere."} {0.0023089265,0.08501431,0.025928687,-0.008427528,-0.029672163,0.0043021888,0.04429772,-0.021238642,-0.019692805,0.058898244,0.08203748,0.009272877,-0.0021768217,0.0032149889,0.02820651,0.039945703,0.08778757,-0.09314089,0.0510802,-0.08273803,-0.058628187,0.054986488,0.071742564,0.045318026,-0.05117978,0.08889912,-0.036223173,-0.0022883955,-0.037479963,-0.0067357626,0.021950847,0.062562145,0.08503563,0.011023107,-0.046576682,0.049405646,0.094661355,-0.003111293,-0.09962109,0.05181282,-0.07157856,-0.017617892,-0.02708014,-0.04824335,-0.05977106,-0.04722555,0.010190509,-0.10650477,0.12763382,0.02236111,0.08687448,-0.06318166,0.03395862,-0.0136158215,0.0017150538,0.030962288,-0.100185916,-0.094221935,0.039214607,-0.039826877,-0.04167227,0.040857688,-0.095608585,0.020569379,-0.043737788,-0.103067614,-0.056298755,0.06460427,0.07234791,-0.03757293,-0.05120463,0.022850182,0.10316247,0.017907308,-0.0500108,-0.022568282,0.0035522874,-0.09002782,0.03205125,-0.02865718,0.031232018,-0.053973433,-0.034805126,-0.04903657,0.048160873,-0.058903143,0.020652141,-0.05589639,-0.099947825,0.0107798,-0.10842875,0.095108256,0.048618425,0.052308284,0.005264235,-0.017078288,-0.0011099316,-0.039934512,-0.07800919,0.035892766,-0.007214733,0.050678696,0.04688952,0.051842,-0.06649456,-0.049181785,0.0011318643,0.02604794,0.00905296,-0.030949568,-0.047589056,-0.0047391974,0.0032786033,0.009699287,-0.043032095,-0.010210781,0.019267222,-0.056188863,-0.018134333,-0.055403855,0.056823812,0.08645376,0.0034083473,0.03708576,0.043092668,-0.11621046,-0.012607855,-3.5546196e-33,-0.036184,0.11061624,0.00020969594,0.09924555,0.016685355,0.052895177,0.0033392052,-0.019453974,-0.05077639,0.052715987,0.0035968001,-0.0214017,-0.011364614,-0.046284765,0.054792453,0.050808486,-0.10418366,0.07462662,-0.030717347,0.025566928,-0.09420664,0.014824584,-0.016695665,0.0724277,0.039597146,-0.025567533,0.08526472,0.0015866326,0.130867,0.022544133,0.0039040043,-0.016636025,-0.041213285,-0.029641954,-0.032386,0.042164236,0.026184233,-0.015770173,-0.002125245,0.07498879,-0.03547605,-0.039280534,0.032598946,0.023532426,0.0052122218,0.12128638,0.049247466,0.01154129,-0.07148133,0.07139797,-0.04764134,-0.027494766,-0.052622017,-0.0014668913,-0.041133005,0.057122108,0.036229573,0.077489965,-0.036596417,-0.031794246,0.08505364,-0.017143756,-0.011286162,-0.1271899,-0.012842656,0.012118604,0.093418,0.061926123,0.05829702,0.0107543515,-0.011777877,-0.0030562251,-0.0050733523,0.0028377597,-0.031179544,-0.060452785,-0.0069576413,-0.04100025,0.046638187,0.038335416,0.03537184,-0.0075443448,-0.015788956,-0.029069768,0.00285967,-0.13113041,-0.004770551,-0.13079959,-0.078333676,0.044527885,-0.008799793,-0.045318127,0.0929285,0.05309412,-0.05078529,2.0286986e-33,0.08804678,-0.015035382,-0.025698224,0.051832672,0.010123262,-0.007062461,-0.012988217,0.035971362,0.022379259,0.038128305,-0.03430186,0.056177042,0.018854758,-0.004198163,-0.021973146,-0.027616277,0.013854382,-0.014102863,0.009184606,-0.02522827,0.059536938,0.00025924496,-0.08490459,0.022108646,0.040526077,0.008978454,-0.10831557,-0.036994513,-0.07562155,0.12795012,0.03931614,-0.030098446,0.04799224,0.0047639604,-0.007544171,0.017430555,-0.017688382,-0.029194096,-0.06586068,-0.05849543,-0.010756354,-0.04216474,-0.04209571,0.00022563823,-0.02829908,0.028469592,0.04682431,-0.0027208377,-0.076955736,-0.0022393952,-0.0005628491,-0.0011942877,-0.0286517,-0.07678329,-0.044724476,-0.0013889606,-0.032761194,-0.022635393,0.043999486,0.037250653,0.0040936,-0.072684385,-0.046821896,0.018224647,-0.030290311,-0.023599822,-0.06570512,0.050966296,-0.08891579,0.056885988,0.048941154,-0.0066289837,-0.09353633,0.0195422,-0.019192658,-0.07405459,0.1392961,-0.0038553323,-0.004209546,0.06711518,-0.033000104,-0.006869413,-0.0103501035,-0.0030950452,0.015061793,-0.043251634,0.02264102,-0.037358258,-0.0615665,0.061901726,0.038483527,0.02706855,-0.024118228,0.017859194,0.016258212,-2.1070301e-08,0.028781705,0.022503912,-0.033241842,0.015581996,-0.041913778,-0.027999721,0.0034601137,-0.0036125216,0.05000233,0.07518742,-0.0050007896,-0.012514252,0.0721984,0.018829454,0.059941642,0.015195875,-0.0036801824,0.04454219,-0.054127295,0.09556503,0.08603064,0.09142843,-0.044454698,0.044914898,-0.035851274,-0.044396345,0.037311893,-0.07539162,-0.047489587,-0.0071028257,-0.009299121,0.058103867,-0.049564976,0.019111792,-0.010877787,-0.010642486,-0.048695784,0.03786756,-0.023871083,-0.012247988,-0.023996752,-0.06601044,-0.030988725,-0.05025683,0.022779748,0.039101128,0.066043004,0.016686978,-0.0065124054,0.10417766,-0.016758963,0.017156735,0.034434408,-0.024722338,0.09748203,-0.011920018,-0.050954673,0.054174215,0.017542683,0.021696128,0.09027964,0.055857826,-0.08559796,0.08307599} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.059661+00 2026-01-30 02:01:09.642851+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1523 google ChZDSUhNMG9nS0VJQ0FnSUNjc3ZhVEN3EAE 1 t 1526 Go Karts Mar Menor unknown Good fun, well organised. Worth a visit. good fun, well organised. worth a visit. 5 2021-01-31 01:52:39.833374+00 en v5.1 O1.05 {J3.01,V4.01} V+ I2 CR-N {} {"O1.05": "Good fun, well organised. Worth a visit."} {0.021020913,-0.028301317,0.0050453506,0.044685844,-0.098189004,-0.0072702635,-0.010849297,-0.069313996,-0.051804118,-0.018176982,-0.014056214,0.027206877,-0.02864203,0.04588538,0.021066798,-0.033981636,0.008905753,-0.10331353,0.087429725,-0.024555853,-0.07155853,-0.017315531,0.059269063,0.005600451,-0.080984905,0.061561182,-0.035182346,0.05302637,0.042494666,-0.01589779,-0.05555681,0.09432284,-0.04062262,-0.03480475,0.05899116,0.05857992,0.05411561,-0.11006984,0.0080170175,0.034325305,0.0123863565,0.032128803,0.061158594,-0.017868198,-0.030717554,0.10660574,-0.035524376,-0.03147589,0.077678554,0.061892334,0.05440085,-0.012636569,-0.0004973205,-0.07059851,-0.026151825,0.039611816,-0.037747465,-0.109584674,-0.073573634,-0.1331818,0.056156013,-0.035730056,-0.04664294,0.11906462,0.016166404,-0.03587551,-0.044928163,0.020740028,0.09136095,-0.045063052,-0.042048927,-0.016399635,0.047839098,0.016823705,0.034927584,0.001089163,-0.027795767,-0.059634075,-0.026486237,-0.0034436733,0.022754718,0.08238477,0.028502788,0.026736679,0.0016212441,-0.13813141,0.031413086,-0.00021820342,0.009747249,-0.0034392506,0.043542556,0.06280598,0.010743446,-0.002585512,-0.019579124,0.021040713,0.029040052,0.065327875,0.002579249,0.04036035,0.0017159255,0.110561825,0.037295114,0.013562171,-0.09409747,0.027305849,-0.003089636,0.04843763,-0.035173114,-0.05695699,-0.039239656,0.05536819,0.022030614,-0.03947551,-0.020521667,0.10469985,-0.017740501,0.042883564,-0.03569941,0.0004428851,0.09467182,-0.008524786,0.075079136,0.008221984,0.027444815,-0.03142737,0.028928248,-7.783015e-33,0.01424827,0.04750217,0.0031298166,0.053767662,0.08262354,0.053273708,-0.088436455,-0.033907436,-0.0888941,0.053929996,0.07578802,0.09908873,0.016094021,-0.04690196,0.0022330328,-0.010147506,0.03002039,0.07794788,0.0071962806,-0.026447508,-0.02538513,-0.07566286,-0.003021425,0.025026985,0.03566961,0.01969561,0.027370095,-0.034630686,0.108959,0.023823807,-0.039913826,-0.013963859,-0.11959493,-0.0028249153,0.06517632,0.048196137,-0.067278355,-0.076689474,-0.007793011,0.049455654,-0.00092765223,0.0041843704,-0.0028167753,0.009105446,-0.06504248,-0.016463265,0.010099287,-0.010969761,0.059360296,-0.0150266,-0.09837337,-0.053425554,-0.070418134,0.04013012,-0.022085838,-0.02530388,-0.012680323,-0.013607887,0.037894942,-0.002383734,0.09057333,0.074203365,-0.106262684,-0.054996766,-0.07678078,-0.034516428,-0.019459775,0.03121348,0.090712525,-0.05017341,0.02502716,0.016787492,0.09921986,-0.03804894,0.016070014,0.10146096,-0.09892726,-0.04706649,-0.062051326,0.06696035,0.038110044,-0.025755081,0.0019943875,-0.03172803,0.04100375,0.0090836445,0.05791273,-0.14411439,-0.06086474,0.021473056,-0.06221394,0.03724535,0.10317122,0.007903378,-0.010640708,4.5858808e-33,0.09965796,-0.042774536,0.01154464,-0.004801798,-2.6898806e-05,-0.006500517,-0.06070687,0.016973037,0.051797625,0.050450608,-0.016985286,0.08220311,0.0010415857,-0.005889702,0.029421719,-0.015722398,0.04462785,-0.006641832,-0.063447766,-0.004181981,-0.046424568,0.10655107,-0.03611344,-0.0092849,-0.031248149,0.04600782,-0.04930484,-0.0105121685,0.009189562,0.006059367,-0.04332483,-0.007215309,-0.056001347,-0.016330333,-0.0017347174,0.10867609,0.06882136,-0.035971686,-0.019520255,-0.00667806,-0.050784934,0.018738844,0.013048729,0.03800968,0.023513408,0.006931445,-0.07450849,0.09493269,-0.05910671,-0.0055371146,0.073578484,0.0045642396,-0.041069016,-0.16118987,0.019352632,-0.05277758,-0.07144303,-0.059055515,-0.003986201,-0.031646196,-0.09040519,0.034512743,-0.014523063,0.063045144,-0.015790021,-0.066614494,-0.030473774,-0.030585755,-0.061410066,-0.00067950983,-0.05538308,-0.02200317,0.02292388,-0.034201827,0.06034925,-0.0814664,0.10369888,-0.030898618,0.037198536,0.044070933,-0.045752037,0.007294263,0.012627944,-0.0038435392,0.020494066,-0.010338234,-0.021061854,0.021836812,-0.031184755,0.091113254,0.02798831,0.030588869,0.011243306,-0.012967035,0.027610991,-2.0261249e-08,-0.024866031,0.05801855,0.000992967,0.023284113,-0.027811179,-0.11911439,-0.017448163,0.033935092,0.025122667,0.098792024,0.05095132,-0.049906,-0.0017605717,0.055147342,0.03266036,0.023213612,0.0115316715,0.12176116,-0.06764379,-0.0019776223,0.025158955,0.015897393,0.01210992,0.050087422,-0.040538304,0.025865057,0.012749068,-0.0033775996,0.050165813,-0.052469604,-0.058782164,0.10831585,-0.01799088,0.029901752,-0.08114827,-0.05923416,0.014546198,-0.025341112,0.0627069,-0.02484204,-0.06324744,-0.08872897,0.058513526,0.03423132,-0.032810114,-0.015285472,-0.039294917,0.023093762,-0.04590145,-0.053543195,-0.04430289,-0.002907277,-0.01992894,0.051494747,0.039102904,-0.010840122,-0.0447402,0.010638893,-0.0048673577,0.04866345,-0.0065484266,0.01364668,-0.081674725,0.0419324} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.103131+00 2026-01-30 02:01:09.654319+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1524 google ChZDSUhNMG9nS0VJQ0FnSUQwa3ZmY1NREAE 1 t 1527 Go Karts Mar Menor unknown Great day out, well organised and nice facilities. great day out, well organised and nice facilities. 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.05 {J3.01,E1.03} V+ I2 CR-N {} {"O1.05": "Great day out, well organised and nice facilities."} {0.07479289,0.11452241,0.06095505,0.0491033,-0.056397427,-0.030810447,-0.0050008805,-0.04115084,-0.10163174,-0.019596143,0.027828988,0.05042143,0.0030641346,0.02155624,0.088940874,-0.014321325,0.00088871235,-0.108590856,-0.056026567,-0.036864955,-0.05925297,-0.02115712,-0.0022638112,0.028210925,-0.076049656,0.10104002,-0.02995494,0.02576139,0.05315187,-0.028117036,-0.06380682,0.04034604,-0.032076605,-0.04607946,0.04335093,0.07632415,0.08973034,-0.15866248,0.0027332115,0.03915025,-0.0016476919,-0.044838287,0.04216749,0.020204518,0.032282744,0.046351623,0.018038623,-0.028932177,0.06066316,0.0051095495,0.09282371,-0.016362423,0.044553265,-0.029346189,-0.053254783,0.08144152,0.0018797779,-0.09546618,0.035164963,-0.072969496,0.03637999,0.032340374,-0.05724867,0.032813977,0.021846084,-0.09762713,-0.043299526,0.058588278,0.036963325,-0.07574831,-0.06863731,-0.016877223,0.08621605,0.01834978,-0.012348788,0.03889686,-0.0019194952,-0.01932088,0.021413403,-0.023946574,0.10366515,0.022424063,-0.013380032,0.05452094,-0.026725153,-0.07338974,0.013056765,0.053216122,0.033977505,-0.023015685,-0.0028910474,0.0886327,-0.08906229,-0.037989367,-0.020977965,-0.06721119,-0.007138272,0.032072134,-0.031252015,0.08244549,0.05373513,0.12369981,0.026372682,0.003320229,-0.030729864,-0.03586128,-0.06852808,0.020247683,-0.03228582,-0.100818776,-0.015811674,0.065960824,0.035049327,-0.053971607,0.023821536,0.09082126,0.008930404,0.041353557,-0.00766329,-0.0106952805,0.00023509834,-0.011511546,0.053526256,-0.0019387292,0.012548979,0.03309106,0.066454075,-3.9858064e-33,-0.02445032,0.03166295,0.018243695,0.10393364,0.076199755,-0.034013167,-0.09575858,-0.07247739,-0.05589358,-0.017455885,0.036448848,-0.0057982095,0.017704915,-0.034736365,0.04983494,-0.06720149,0.01220016,0.12332939,0.018181797,0.0767349,-0.019939076,-0.03361135,-0.025281789,0.034137722,0.10097043,0.04452953,0.03571644,-0.012265737,0.0005246436,0.020347344,0.07964171,-0.032507755,-0.030360354,0.0077532083,0.032033287,-0.04561737,-0.08243065,-0.06855212,-0.012255807,-0.013644416,-0.0094126845,-0.0098129,0.01846385,0.0052940273,-0.006577603,0.059138633,0.040143892,-0.0062670032,0.10202844,-0.06759705,-0.08763647,0.020075781,-0.070559144,-0.009609551,0.0005696316,-0.021060184,-0.005089081,0.015469168,0.086449385,-0.00809271,0.01025887,0.05612538,-0.11028055,-0.057768967,-0.01308215,-0.09812428,0.0076666223,0.011649502,0.015269867,0.053051073,0.026426265,0.000360669,0.06481996,-0.021795874,0.0026517655,0.06600454,-0.024848841,-0.050793186,-0.01283972,0.074811526,-0.0033149265,0.045941103,-0.0012627346,-0.07469351,0.072260216,0.020162778,0.052386347,-0.053657264,-0.07137359,0.019182332,-0.0912399,0.061841223,0.03842474,-0.028105626,-0.008698051,2.7080405e-33,0.13331933,0.024698261,-0.052275043,0.0041258787,-0.04367613,0.0023151492,-0.038655333,0.040157262,0.0105887605,0.11633431,-0.017461838,0.07078966,0.054640636,-0.032022312,-0.047114503,-0.018369459,0.06574879,0.019089092,-0.06620548,0.041307077,-0.031038692,0.06438895,0.00020430543,0.011747327,-0.013784036,0.073203795,-0.09341759,-0.00048819033,-0.049663056,-0.05585713,-0.08732889,-0.02560501,-0.07541799,0.0866855,-0.010365225,0.021980396,-0.012906719,-0.0065679364,-0.0348934,0.0796604,-0.0013312176,0.03999973,-0.022295041,0.09483919,0.035675958,0.014341105,-0.07462774,0.020688627,-0.04842172,-0.0073671625,-0.0019126063,-0.033229202,-0.0642038,-0.06900328,0.043452438,-0.06517897,-0.025296176,-0.012553502,-0.093798175,-0.0022677477,-0.09434673,-0.02258992,0.002417837,0.10470938,0.021693874,-0.04778856,-0.03264894,0.015605218,-0.027402397,0.024220271,-0.031470176,-0.041746248,-0.063151225,0.03191268,-0.03081024,0.0018039646,0.060802907,-0.036817033,-0.023625905,0.044931952,-0.09347997,0.034254428,-0.0040067937,0.00807168,0.021740995,-0.025303025,-0.017724304,-0.046097897,0.008943536,0.065445706,0.035900366,0.039325725,-0.04956566,0.06051639,0.023508528,-1.852099e-08,-0.010573227,0.019309608,-0.04280649,0.04381415,-0.011330279,-0.1806169,0.02207793,0.062702835,0.01283651,0.0945483,0.0425778,-0.0143524185,-0.080407076,0.080994874,0.019258682,0.033808216,-0.07998065,0.10592456,-0.038085736,-0.022812882,0.029109003,0.011530175,-0.011209403,0.071351945,0.005309367,0.012895325,-0.011338307,0.00028529513,0.01685962,0.024205396,-0.011140916,0.031316806,-0.06680891,-0.014345481,-0.04401619,0.0067551555,0.006534378,-0.025505973,0.06252866,-0.05536173,-0.073260576,-0.079854116,-0.05001971,0.005181824,0.014953287,-0.021499813,-0.04966806,0.058711227,-0.07189691,-0.057954844,-0.0172435,0.022416882,0.051084153,0.047760583,0.04059071,0.026563276,-0.029092658,-0.0331024,0.03864367,0.05890774,-0.05588686,-0.008037295,-0.06996308,0.020531964} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.113233+00 2026-01-30 02:01:09.656621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1528 google ChdDSUhNMG9nS0VJQ0FnSURnMEtfajR3RRAB 1 t 1531 Go Karts Mar Menor unknown This was on my husbands bucket list. He really enjoyed it this was on my husbands bucket list. he really enjoyed it 5 2019-02-01 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "This was on my husbands bucket list. He really enjoyed it"} {-0.012856228,0.08782277,0.05626682,-0.006296282,-0.03559612,-0.004080759,0.03234558,-0.014941365,-0.051365983,-0.028412497,-0.09727776,0.06115224,0.04094767,0.080725804,-0.023967294,-0.02888558,0.08834271,0.011394222,0.029132525,-0.114341564,-0.012737115,0.0470214,0.041641925,-0.055479713,-0.00985259,0.02968708,-0.025359878,0.058446594,-0.05106139,-0.048797846,-0.015790213,-0.030320277,0.019990306,-0.06360814,-0.004370417,-0.0133460425,-0.009764524,0.0030866931,0.00439673,0.011228603,0.013781783,-0.037224725,0.09526307,-0.03265835,0.00641437,0.023425253,0.04788841,-0.083223134,0.103871465,0.0053787814,-0.013750442,-0.035041403,0.050774824,-0.034206208,-0.066861406,-0.013356418,-0.047101337,0.011145924,-0.06500403,-0.06407701,-0.06600879,-0.015516983,0.06813476,-0.04536752,0.05504605,-0.029620165,-0.07428255,0.020345118,0.040883154,0.05779449,-0.017095426,0.034083385,-0.046936944,0.008874225,-0.0718014,-0.036735352,0.022504697,-0.031419802,-0.07825127,-0.03537981,-0.07730253,-0.035212062,0.0070567164,-0.028510386,-0.10316261,-0.04989834,-0.0023514433,0.0123048145,-0.016321747,0.03289355,-0.08059391,-0.041465458,0.07426258,-0.04685983,-0.04800059,-0.010609266,-0.0068373247,-0.0040672133,-0.043417156,0.026066488,-0.0063781375,0.028993225,-0.029947916,-0.08506502,0.051408745,0.05261633,-0.008460293,0.06420909,0.0091164615,-0.005885473,-0.029837782,0.022125572,-0.01577167,-0.021519193,-0.07105127,-0.06106285,0.022695526,0.00589144,-0.026312266,0.04628417,0.089878164,0.028264541,0.056535993,-0.03896251,-0.03527586,-0.07635428,0.04152297,-4.5612002e-33,-0.043367546,-0.052350078,0.074758336,0.038091153,0.17387588,0.091383725,0.010970386,-0.018612362,-0.07825162,-0.0029339574,0.07367671,0.07126305,-0.057694033,-4.1555897e-05,-0.021058874,-0.0021201954,-0.067852244,0.022638401,0.011152525,-0.0023353766,-0.105066106,0.041272916,-0.032746628,0.028716592,0.0013314859,0.009611621,0.01051371,0.019722315,0.087150574,0.032807626,-0.03658401,0.04508627,0.031434026,-0.04560976,0.00510115,-0.003081988,-0.09081861,-0.013568417,-0.054840524,0.096720956,0.04508341,-0.06688278,0.018841933,0.06385276,-0.108981416,-0.006176865,0.029602874,0.06564017,0.079066925,0.014727489,0.007813242,-0.015197699,0.008979191,0.04024787,-0.039508387,0.026497373,0.03653259,-0.105924256,-0.036756374,0.017191822,0.028176326,0.043764003,0.03200999,-0.06402062,-0.08340737,0.030759657,0.043228924,0.07232656,-0.017382022,0.024025729,-0.031114914,0.010307507,0.03223975,-0.10438183,0.08555012,-0.021779362,-0.029283196,-0.06582578,-0.013160833,-0.10530057,0.05932562,-0.044786647,0.0008890694,0.06969592,-0.032709252,-0.012736218,-0.048167534,-0.07399081,-0.041835137,0.01649952,-0.06402976,-0.063026436,0.032020718,-0.03864089,0.012266996,2.2314277e-33,0.05796322,0.018279182,-0.0044435905,0.08648543,0.1289969,0.035658784,-0.04648439,-0.022299351,0.016699977,0.034754746,-0.042113047,0.052067745,0.04789912,0.05343933,0.008712266,0.05998807,0.0052182353,-0.085196875,0.029333076,-0.029603312,0.04378897,0.03203816,0.07588012,0.047908876,-0.0882759,0.028757846,-0.05939618,0.038871333,0.028549334,0.032920685,-0.028939433,0.013320196,-0.047438778,-0.07542435,0.005779893,0.014675235,0.048278328,0.022659207,-0.019635899,0.022256581,-0.012683387,-0.052325558,0.036980774,0.10858578,0.050555874,0.010920633,-0.030310426,0.0402311,0.018962951,0.08134862,-0.091762535,0.029997345,-0.08422034,-0.0075812642,-0.02162391,-0.03766269,0.029242666,0.008406596,0.057594974,-0.00304848,-0.122106455,0.03699114,-0.015961615,0.03927678,-0.05273036,-0.046473138,-0.03787904,-0.054107122,-0.08216058,0.0205849,-0.13653441,-0.101618044,0.019300183,0.0006229283,0.08268063,-0.0100103365,0.040013887,-0.016725922,0.04666288,0.030180529,0.0058200434,0.0073437355,-0.037777994,0.058003895,0.089232996,0.026302446,-0.044546716,-0.017848145,-0.02490856,0.1318124,0.023268508,-0.002891501,-0.098515294,0.032471195,0.051882528,-2.4121885e-08,-0.021991914,0.09081892,-0.020798797,-0.033189997,0.08328543,-0.0082982015,0.06319787,0.05024635,-0.06349993,0.089469574,0.010658263,0.032229587,-0.018804504,0.06999114,0.009258966,-0.008793014,0.15289538,0.017854718,0.011016299,-0.012299295,0.016825216,-0.009498284,0.024737228,-0.088776395,-0.06409422,0.017009592,0.0048867203,-0.039368473,0.07245474,-0.028215852,0.060039982,0.030483045,-0.025721606,0.006703855,0.018044222,-0.064076714,-0.048692398,-0.02114935,0.040195297,-0.06301881,0.0042576324,0.009242682,-0.00694597,-0.0010928989,0.03823544,0.07276105,0.029822042,0.044343922,-0.101364285,0.05241068,-0.05003661,-0.04365322,-0.035841253,0.05844248,0.13655674,-0.022160107,-0.012758543,-0.036534116,0.013831091,0.0068641813,0.056072064,0.05174558,-0.096264265,0.037900798} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.155355+00 2026-01-30 02:01:09.668664+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1530 google ChdDSUhNMG9nS0VJQ0FnSUNRNzlhZnNBRRAB 1 t 1533 Go Karts Mar Menor unknown Fantastic place to take the big kids and even the small kids fantastic place to take the big kids and even the small kids 5 2019-02-01 01:52:39.833374+00 en v5.1 A3.01 {} V+ I3 CR-N {} {"A3.01": "Fantastic place to take the big kids and even the small kids"} {0.12076899,0.049586553,0.009188168,0.03372743,-0.026766697,-0.01037423,-0.009497485,-0.011316086,-0.03797521,0.03894363,0.070249066,0.025651753,0.003487203,0.032094836,-0.03217257,-0.0010425913,0.1263388,-0.100561224,0.080407985,-0.12543756,-0.031847104,0.005415128,0.060365174,0.046236236,-0.054807086,0.121997304,-0.030115688,0.0543636,-0.01497001,-0.026510715,0.033573244,0.036685184,0.04865326,0.032006696,0.013215403,0.11977943,0.07019538,-0.06152744,0.044586916,0.02476981,0.037806228,0.012710595,0.011289708,-0.04623565,-0.047202226,-0.07833651,0.022834564,-0.10195492,0.1274856,-0.0148533955,0.11994889,-0.018513666,0.039361816,-0.0048519303,-0.05237274,-0.0022166488,-0.056988746,-0.12788406,-0.0015300926,-0.03454323,0.037685666,0.0645934,-0.06041402,0.021760955,-0.0063703866,-0.036774516,-0.035951458,0.046430863,0.037800543,-0.10895853,-0.009085866,0.0055444697,0.047708593,0.068087935,0.022254098,-0.010846398,-0.05536089,0.009244387,0.015176331,-0.0044120247,0.0066102543,-0.08896288,0.003856662,-0.009161985,-0.039220184,-0.03201521,0.03496748,-0.08648165,0.00610458,0.0048422255,-0.029759238,0.041815817,-0.022267312,0.03259247,-0.041818023,-0.03802766,-0.07218418,-0.05702492,-0.07062488,0.04580626,0.022463618,0.09585101,0.07894529,0.0119488025,-0.0067020524,-0.057134748,0.043229725,0.0015760169,0.005327449,-0.012433528,-0.02920429,0.06405812,0.034583148,0.1084941,-0.054048713,0.008313327,0.09234219,-0.04116566,-0.030548656,-0.063718826,0.03676692,0.038501855,-0.0074388073,0.0070190905,0.01621005,0.020010391,-0.045462698,-3.0311138e-33,-0.059242032,0.04748896,0.039945524,0.057640564,0.051798314,0.028871063,0.0014433229,-0.004090853,-0.057306603,0.007704068,0.035876606,-0.043992434,0.022545625,-0.054235935,0.05721711,-0.015354977,-0.029231919,-0.0071684225,-0.049028143,-0.010476649,-0.07277624,0.056882143,-0.0141608175,0.10119444,-0.0019148333,0.009641484,0.059903327,0.032236118,0.069162495,0.048435114,-0.08587262,-0.010192533,-0.020552324,-0.0055674524,0.020715525,-0.019968964,0.006288745,-0.030516353,-0.013568715,0.046828628,-0.028435335,-0.065065496,-0.045175426,0.08983067,-0.006328381,0.09751742,0.033259824,0.029185351,0.02498188,0.03610628,-0.04682068,-0.07381722,-0.09932675,0.0037960517,0.00017139725,0.07496504,0.0026072154,0.034421206,0.029949237,-0.030056486,0.039957274,0.026138678,-0.04592448,-0.023214081,0.010140194,-0.07725765,0.06001977,0.06256771,0.056392416,0.0153193325,0.007040594,-0.019514186,0.07066246,-0.0014390374,0.014070182,-0.03471884,-0.0547647,0.04575244,-0.04558746,0.028954197,0.06290622,0.00037616037,0.03333676,0.02538774,0.05707079,-0.10287054,0.0044246637,-0.10039279,-0.07556274,-0.027240746,-0.10793971,-0.003854104,0.04921593,0.007890998,-0.035324883,2.3403573e-33,0.05452692,-0.0642038,0.047695216,0.013635805,-0.04537875,-0.01715994,-0.007954186,0.02530128,0.01681874,0.08058234,-0.099366754,0.04233932,0.08137594,-0.04741675,-0.023867384,-0.023303995,0.11514135,-0.00097532355,-0.00012647902,-0.02430727,0.026904704,0.0049290154,-0.0273738,0.057072137,0.026138106,0.051941797,-0.11166385,-0.011165406,-0.053307015,0.031457134,-0.06419031,-0.020209802,0.029333606,0.06705004,-0.006709102,-0.009609645,-0.019656798,0.02118143,-0.07795271,0.0058156685,0.041297685,-0.117915444,-0.093208306,0.044510726,-0.004195566,0.04826642,0.003995205,0.007358131,-0.020512152,-0.007147921,-0.049069326,0.04800603,-0.09781225,-0.03001434,0.005662654,0.04511038,0.066604786,-0.009874888,0.013739416,-0.0418648,-0.11633985,-0.03043195,-0.03790633,0.071654186,-0.012073813,-0.024977162,-0.031125842,0.015586816,-0.062558986,0.07002942,-0.04902781,-0.037248254,0.04166648,0.010210648,-0.104091704,-0.01870857,0.09763038,0.06583516,0.009527824,0.05715983,0.046562042,-0.036703058,-0.05092392,-0.02321362,0.015935875,0.004131508,0.04859063,-0.011316966,-0.06055067,0.06772868,-0.03561685,0.0793429,-0.023864998,-0.10104489,0.011433598,-1.9495134e-08,0.045761652,0.0033291043,-0.006032476,0.012189874,-0.035116635,-0.11404247,0.012203032,0.087031305,-0.028168658,0.14732471,-0.029281612,0.032450803,0.0020756635,-0.0028505821,-0.038043395,0.011140308,0.020175,-0.019905038,-0.037375133,0.03652684,-0.027888028,0.07509732,-0.032216154,0.07864456,-0.0027946427,-0.0543333,0.008677592,0.0015389667,-0.018566221,-0.06857487,0.027907837,0.030117571,-0.093318075,0.037713826,-0.04585257,-0.041874453,-0.049760316,0.029639592,0.06748055,-0.06465825,-0.08715437,-0.056218375,-0.026073316,0.013356149,-0.021006437,0.040125757,0.02515776,0.02631974,0.025054667,0.03911956,-0.13278612,0.0043222713,-0.049838983,-0.024644507,0.0511479,0.008743587,-0.049138952,-0.060773253,-0.02189902,0.0834754,0.026596142,0.06947489,-0.035609554,0.06382394} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.482208+00 2026-01-30 02:01:09.675118+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1532 google ChZDSUhNMG9nS0VJQ0FnSUNwN0tpNWJ3EAE 1 t 1535 Go Karts Mar Menor unknown This is great for the kids definitely go back again and again this is great for the kids definitely go back again and again 5 2024-01-31 01:52:39.833374+00 en v5.1 A3.01 {R4.03} V+ I3 CR-N {} {"A3.01": "This is great for the kids definitely go back again and again"} {-0.061573256,-0.00052795786,0.081212096,0.05735493,-0.008361757,0.06221987,-0.0046030623,-0.082870126,0.05265754,-0.048758212,0.08427438,0.11179694,-0.00076029106,0.048679955,-0.03615914,0.008732921,0.05407098,0.039655335,0.039733544,-0.10898464,-0.07655868,-0.010641101,0.07301215,0.03295283,0.0034514507,0.12534894,-0.058277756,-0.0012535903,-0.032092445,-0.042567953,-0.0034381382,0.0221914,-0.07573136,-0.04883811,-0.053712614,0.06065241,0.04096167,0.030013297,-0.04874793,0.046516757,-0.06651793,0.0555476,-0.018219223,-0.06371722,-0.047264736,0.004761604,0.034558002,-0.11900419,0.13390389,0.050522596,0.17625695,-0.058219075,-0.014577732,-0.044660144,0.03381224,0.10758658,0.016837904,-0.026577426,0.0065647983,0.02288334,0.0018053969,0.021456832,-0.046891604,-0.024804587,-0.033592418,-0.036549337,-0.04763731,-0.015638648,0.064097635,0.04744221,-0.07467795,0.050142977,0.07993011,0.015872894,-0.04611894,0.028263768,-0.008060459,-0.05088646,0.010422464,0.016284373,0.03572193,-0.039239068,-0.06364776,-0.0005940582,-0.023026586,-0.062356137,-0.007749981,-0.0847153,0.01729779,0.004845983,0.018610485,0.04696182,0.12771279,0.02992932,-0.03131951,-0.0054695723,-0.06732979,0.004073691,-0.034226593,0.03812427,-0.056122553,-0.0060152453,0.075663045,0.015248109,-0.0032731448,-0.09175305,0.055034846,-0.0010046102,0.020873316,0.0012001639,-0.050508153,0.038418435,0.060959198,0.08154047,-0.052039105,0.0241264,0.02816842,-0.0059000407,-0.035514534,-0.018376142,-0.02186312,0.067241214,0.084447175,-0.014726987,0.025221987,-0.1130666,0.0059133773,-1.5293001e-33,-0.06891309,0.05493091,0.036412068,0.033983253,0.014124494,0.06920708,0.026163064,-0.024380531,0.035044905,-0.060077593,-0.010754172,-0.030835273,0.008273645,-0.023415096,-0.028720537,0.011944953,-0.113471836,0.08981437,-0.06449979,0.053649507,-0.07464963,0.036119614,0.054662038,0.08600599,0.058471847,0.04604188,0.08014771,0.03299298,0.058393706,-0.0025871187,-0.062543504,0.031112608,-0.009209427,-0.06869186,-0.078821965,0.07977952,0.10610193,-0.011981282,-0.047217507,0.032091185,0.014784528,-0.03887873,-0.032552022,0.060854893,0.020816604,-0.05160106,0.02414323,0.038838133,-0.04302709,-0.00063471455,0.014726815,0.05174135,-0.06811408,-0.04148251,-0.06483611,0.011455864,-0.09636783,0.06465177,-0.03708806,0.0047568004,0.15579513,-0.06074789,0.0001928171,-0.061602116,-0.04532694,0.038254723,0.059818774,0.0768713,-0.06486265,0.023038357,0.015981771,-0.040029023,-0.01286555,-0.038350895,0.016096584,5.139068e-05,0.0009541072,-0.06439225,0.020694252,-0.061055943,0.033573378,-0.06667502,0.014869197,-0.024077019,0.07545693,-0.088707656,0.0011386239,-0.17755526,-0.025667949,0.021510473,-0.028740827,-0.027724838,0.10413213,0.028953696,0.016099174,-7.3676904e-35,0.050233163,0.049102817,0.036417626,0.0006464803,0.019131158,-0.05778743,-0.012198208,0.07943029,-0.018913347,0.020400777,-0.040530436,0.005084654,0.044282828,0.0094801085,-0.06629626,0.01746401,0.013517998,-0.0362783,0.003495057,-0.05348254,0.03766206,0.042550977,-0.043689962,0.01287893,-0.005016478,0.028177956,-0.03992156,0.009723169,-0.0039143944,-0.016955417,0.06545691,-0.103534885,0.05063309,0.05229805,0.01877806,-0.012619728,-0.022405032,0.03069765,-0.09351108,0.028649624,0.041506708,-0.059966926,-0.034543995,-0.0041966722,-0.046877854,0.07930156,0.058299888,0.023151105,0.038954552,0.055393353,0.036261458,-0.059841093,-0.03628608,-0.10491144,-0.057925373,0.022502685,0.034390934,-0.0708495,0.0011887612,0.007513843,-0.11909441,-0.056173358,0.004355787,0.05450152,0.047147006,0.0049252617,-0.052132733,-0.021247502,-0.097963974,-0.0034728125,0.023438111,0.025610527,-0.10519745,-0.028367864,0.011196175,-0.0132189505,0.057139695,0.0011249724,-0.067760155,0.032587297,0.028756062,-0.016777614,0.016372964,-0.04544972,0.038350526,-0.02628002,-0.06435654,-0.009378065,-0.03499937,0.042285454,-0.0057224547,-0.021784604,-0.009020937,0.0027476924,0.01719984,-2.0394657e-08,0.024045791,0.06089518,0.010445492,0.033805866,0.08992044,-0.032741256,0.01930353,0.030874535,-0.03929591,-0.0039964793,0.014841459,0.04920503,0.040205523,0.037864693,-0.007353566,-0.0033344005,0.08706347,-0.042379435,0.011049141,0.021377724,-0.058442257,0.022033729,0.008894209,0.06736532,-0.04615942,0.011652602,-0.024841325,0.042490255,-0.04726278,-0.054921683,0.031983208,-0.06753308,0.022484733,0.070193134,-0.036301907,-0.103743225,-0.0015707489,0.0006044746,0.016312938,0.0047146603,-0.0383856,-0.055035643,0.031683743,0.04132384,-0.0631263,-0.044981007,0.007091103,0.030229544,-0.0016466004,-0.0127752675,-0.12925196,-0.04307482,-0.021216284,0.018499058,0.09698923,0.036611184,-0.04258448,0.012102315,-0.06899554,0.064814165,0.03361391,0.07032721,-0.020305049,0.030031724} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.517292+00 2026-01-30 02:01:09.680168+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1535 google ChdDSUhNMG9nS0VJQ0FnSUNZdVpPbTFnRRAB 1 t 1538 Go Karts Mar Menor unknown Quite loved the experience the go parts were so fast!!!! quite loved the experience the go parts were so fast!!!! 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Quite loved the experience the go parts were so fast!!!!"} {0.004254107,0.040201444,0.060713135,-0.047631886,-0.04679732,0.016401779,-0.03626721,-0.037119538,-0.042468462,-0.08802517,0.060133923,0.056812853,0.011627401,0.039000273,0.01923051,-0.0883544,0.071332134,-0.03385884,0.016488977,-0.010024397,-0.0702842,-0.025108732,0.006974073,0.052699924,-0.069234826,0.076441795,-0.0477678,0.03329269,0.056272417,-0.052730784,-0.061102755,0.052387323,-0.039220504,-0.003863713,-0.07169257,0.036772404,0.03496217,-0.06409465,-0.052577473,0.0055081234,-0.021375531,-0.0104871215,0.056883372,0.044926047,0.03619504,0.04828625,0.043059293,-0.11083664,0.02890604,-0.016095437,0.012523314,-0.039029635,0.0074147834,-0.078582406,-0.00885966,0.0846584,0.022323359,-0.048723895,-0.038482692,-0.044015538,-0.02770903,-0.05802158,0.017552482,-0.016547909,-0.005590156,-0.015324349,-0.016265834,-0.08599688,0.022511924,0.017409688,-0.108084105,0.03256135,0.03594421,-0.043858662,-0.05503548,0.09769517,-0.012465971,-0.023049423,-0.09057035,-0.035991367,0.03639069,-0.08169462,-0.061873205,0.04967282,-0.040333156,-0.0637453,-0.008157766,0.0371759,0.016595842,-0.055863272,0.06949363,-0.0030940375,-0.002193356,0.030922199,0.030286252,-0.0047350973,-0.004951149,-0.04926298,0.024541011,0.0020593929,-0.016012596,-0.030019961,0.04415078,-0.005197489,-0.03975891,0.024696993,0.034504384,0.0783897,0.041486356,-0.021105202,0.03218016,0.026943821,0.047623467,-0.01797413,-0.079020076,-0.024297202,-0.01617212,0.0090729995,-0.030977026,0.022403592,0.08576854,-0.030976806,0.036177147,0.06439049,0.06951662,-0.10615343,0.063602455,-3.7214612e-33,-0.029806366,-0.012098092,0.031437628,0.021041345,0.04459375,0.054147348,0.0055815373,-0.025131926,-0.10269126,0.05927222,-0.028397253,-0.002653499,-0.095679775,0.01995926,0.034121305,-0.059319597,-0.0913718,-0.024713881,-0.025916642,-0.015768016,0.030988846,0.014040224,-0.00704587,0.040016342,0.12525408,0.07938523,0.002368594,-0.010886898,0.04351088,0.018489966,-0.04368975,-0.0058318046,-0.088169485,0.01763941,0.02894516,0.032011785,-0.100256875,-0.045971297,-0.013503475,0.05374579,0.020512363,-0.053331424,-0.06822724,0.0482148,-0.06204581,-0.0005345662,-0.027659535,0.12549323,0.04433839,0.042962372,-0.07437892,0.03796323,-0.042540472,0.091484964,0.0029670505,0.026689831,0.049415767,0.053493395,0.01809063,0.015319148,0.019114949,0.10641217,0.04935807,-0.052740667,-0.0024752554,0.05655534,0.05751987,-0.014368376,0.0065314877,-0.0027151196,-0.048842996,-0.088597916,-0.0020986202,-0.095088184,-0.022045549,-0.03346172,-0.07995817,-0.010644773,-0.017909663,-0.045895275,0.012724447,0.035623495,-0.029027881,-0.020670997,0.09888806,-0.0015589988,0.029269818,-0.11913571,-0.053424064,-0.043578453,0.051695514,-0.01646436,0.07834512,0.01645891,0.036587898,4.009081e-33,0.060182374,-0.07788827,0.036839407,0.04483669,0.08548199,-0.044798497,-0.045431573,0.05362192,-0.0031637182,0.09574823,-0.04227537,0.03794653,-0.034909353,-0.007433899,-0.035923157,0.021074466,0.09731476,-0.007668343,0.14451557,0.0130929,0.09305801,0.012200444,-0.048306677,-0.058905497,-0.0033547522,0.10100914,0.051583022,0.02864351,-0.036656134,0.011903584,-0.024075322,0.024914851,-0.048406247,-0.01524711,0.015654081,0.046076503,-0.00447294,0.12624973,0.0013610764,-0.086679526,0.015780738,-0.024489306,0.018897444,0.074085884,-0.023298739,0.008106352,-0.01795838,-0.017619643,-0.06383787,0.06524436,-0.046981063,0.045129295,-0.08333912,-0.07162387,0.009659086,-0.08058378,0.09760167,-0.1147707,0.003654423,0.011214573,-0.013538994,-0.03571869,-0.028926177,-0.019953374,0.06577273,-0.075693,0.06461186,-0.034683384,-0.06649649,0.0384136,-0.095746584,-0.0073720356,-0.049007002,0.08565531,-0.010985808,-0.083231375,-0.02279838,0.027371733,0.042695753,0.040112305,-0.010669184,0.022855988,0.07626374,0.033291645,0.022831071,0.092676036,-0.036043376,0.05483456,-0.0060924776,0.057828985,0.069822446,0.07392999,0.030003266,0.062640555,0.0216339,-2.0239792e-08,-0.02631564,0.0870203,-0.027080612,-0.040971696,0.08436816,-0.046748318,-0.027745709,0.09693076,-0.08411478,0.055280652,0.08891686,-0.056940094,-0.017512355,0.112168126,0.07352602,0.036390435,-0.05148709,0.045216173,-0.029279392,-0.027337763,0.036876734,0.025050791,0.032251947,-0.066280186,0.003763056,0.038564894,-0.023914002,-0.0141770635,0.03995043,-0.06590175,-0.04443132,-0.024531323,-0.0048130904,0.018184217,-0.039521646,-0.018530196,-0.00074665324,0.102986485,0.05097597,-0.065339595,-0.052832328,-0.030497702,-0.019322032,-0.030391097,-0.0221182,0.029790942,-0.024554754,-0.058226533,0.0095830625,0.03343446,-0.006177278,0.012269383,-0.050858855,0.112116,0.0870319,0.020336818,-0.0023007658,-0.04984971,0.027032904,0.07620094,-0.04053057,-0.018960465,-0.040860835,0.02004562} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.562211+00 2026-01-30 02:01:09.690114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1552 google ChZDSUhNMG9nS0VJQ0FnSUNVMzZiNGNnEAE 1 t 1555 Go Karts Mar Menor unknown Very good enjoyed it alot very good enjoyed it alot 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Very good enjoyed it alot"} {-0.06851688,0.040026523,-0.02009084,-0.028070819,-0.103538916,0.023736114,0.042652234,-0.029749176,-0.06658369,-0.010569068,0.000546658,0.073956266,0.009853948,-0.025856951,-0.024759647,0.04738852,-0.0022958224,-0.08657861,0.007140522,-0.05507426,-0.07336568,-0.03598137,0.09510011,-0.010649447,-0.09224075,-0.049495243,0.040123273,0.019610584,0.06088844,-0.042198237,-0.05783818,0.09327524,0.052676857,0.00029353317,-0.034351982,0.019605624,0.009039149,-0.06193732,0.029964583,-0.007695211,-0.009029082,-0.0023546594,0.07422977,-0.079099946,0.031281672,0.08335059,-0.012674289,-0.027999902,0.13112919,0.020213475,-0.049995027,-0.040561542,-0.02686932,-0.038985893,-0.06376408,-0.002516223,-0.046865437,-0.021353526,-0.010707314,-0.14866477,0.09372116,0.0060860105,-0.015025804,0.015371672,0.09412863,-0.074598886,-0.034792103,-0.066001795,0.030962126,0.042542603,-0.031168666,-0.02499731,-0.014270034,-0.06296278,-0.04187211,0.016958212,0.023950597,-0.041082215,-0.021736493,-0.016388722,0.027771266,0.008771375,-0.0129194,0.04653204,-0.067360915,-0.07908056,0.04361715,-0.02774237,-0.04377555,0.02119361,0.07693085,0.058040556,-0.0012859171,-0.028531237,0.04697398,0.025345203,0.058622044,-0.061042186,-0.014069968,0.049964175,0.04550867,0.03768545,-0.006622433,0.007794386,-0.029372334,0.008821923,0.010111036,0.07273662,-0.028544925,-0.023847288,0.025691606,0.0320534,-0.034480598,-0.0034845753,0.06709467,0.06549131,-0.012401514,0.020165969,-0.032695454,-0.009072946,0.09381667,0.06223798,-0.020650089,0.0025778753,-0.06935848,-0.12642162,0.15196605,-2.1808653e-33,0.01772901,-0.01925152,-0.02921828,-0.03547823,0.09775657,0.097256824,-0.0093214335,-0.013015097,-0.14962849,-0.050632004,-0.016798245,0.07046691,0.011604717,0.008527911,-0.06568254,-0.07262992,-0.022340808,0.022181913,0.07810286,0.104415834,0.008347808,0.022900747,-0.049234413,-3.9678864e-05,-0.06554643,0.00886989,-0.008940961,-0.0570717,0.062845014,0.053182185,-0.051528826,-0.016194988,-0.07680935,-0.04649368,0.083494306,0.019925946,-0.034616087,0.022196917,-0.024289615,0.06319806,0.027427848,-0.0046985736,-0.020583628,-0.03941184,-0.06740566,-0.0109224375,-0.06084857,0.0986637,0.029442063,0.00052363955,0.007882611,-0.0136816185,-0.044595454,0.006574125,0.005817007,0.046538316,0.03386421,0.016235087,0.024836173,-0.029297346,0.08279809,0.09557915,-0.018264722,0.003842178,-0.10600052,0.036285054,-0.013162217,-0.025871908,0.043339055,0.006374278,-0.06653208,-0.036100674,0.12314554,-0.03516832,-0.036839586,0.023861876,-0.09185472,0.0034376553,0.020740116,0.0027338415,0.059917897,-0.026792873,-0.013922054,-0.04312782,-0.032148566,0.007643077,0.016608771,-0.09154529,-0.005549929,0.0202785,-0.032216817,-0.020724514,0.123495065,-0.08084521,0.019841895,1.9404682e-34,0.055694308,0.08567981,-0.057867777,0.0756135,-0.07831857,0.015011918,-0.088515535,0.14227425,0.016219636,0.018457478,0.00552168,-0.013028587,0.013709963,0.011496034,0.0011472502,-0.032541342,0.032309905,0.041759294,-0.013434613,-0.0021010526,-0.00083746295,0.009328208,0.011942534,-0.043351334,-0.056555457,0.026392661,-0.0012375247,0.016144091,0.02336739,-0.05716781,0.03570265,0.00045853443,-0.033723854,0.014501364,0.004460973,0.117294826,0.06869074,-0.0039556012,-0.085165165,-0.026228476,-0.006199012,0.02184753,-0.031931452,0.0425784,0.044151798,-0.010280528,0.012470051,0.018875513,0.0011686167,0.08359753,0.039555833,-0.010822603,-0.07555749,-0.13116409,-0.049399942,-0.11005464,0.050529696,-0.04703967,0.039621674,-0.0240956,-0.098687716,0.0056751985,-0.04108778,-0.01337229,0.08968833,-0.02531142,-0.011682061,-0.046846416,-0.071762085,-0.008956164,-0.04134485,0.041066896,-0.038820192,0.03647456,0.121064074,-0.08232356,0.015241797,-0.059461445,-0.0005785162,-0.0012062514,-0.015021726,-0.056472544,-0.0094744,-0.081692934,-0.009670075,0.028423354,0.055115975,0.00028601586,-0.03731614,0.09532686,0.0060645435,0.04502063,0.032123316,-0.083760686,0.0074302973,-1.7055886e-08,-0.011168815,0.07096908,0.022241438,0.02016966,0.04306752,-0.044861507,0.053782973,-0.046492226,0.0013106782,0.07041051,0.09621983,0.03026319,-0.06627298,0.093580976,0.012280027,-0.070344135,0.10530908,0.101136535,0.0011438936,-0.019568222,0.10898464,-0.0077630663,0.008805606,0.03131251,0.003623535,0.026150178,-0.038666744,-0.050102744,0.029733518,0.025030052,0.035465084,0.080677316,-0.033994857,-0.028242016,-0.021676574,0.049893655,0.04104365,-0.01945339,0.08786306,-0.037406884,-0.018291498,-0.040583216,0.020890962,-0.028209718,0.025776783,-0.07709249,-0.0014387592,0.011003713,-0.023538034,-0.010605682,0.033470776,-0.03167295,-0.07878007,0.04417933,0.05642319,0.00822685,0.019485686,0.021308735,0.004800197,-0.01735078,-0.050683226,0.04530049,-0.051670548,0.074994564} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:18.029232+00 2026-01-30 02:01:09.766897+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1864 google Ci9DQUlRQUNvZENodHljRjlvT21wVlZYTTBabXBhYzBkbmRTMTJSMXBZTldWcGJWRRAB 1 t 1867 Go Karts Mar Menor unknown Mukava rata ja hyvät autot. mukava rata ja hyvät autot. 5 2025-12-01 01:52:39.833374+00 fi v5.1 O2.03 {E1.04} V+ I2 CR-N {} {"O2.03": "Mukava rata ja hyvät autot."} {-0.036460232,0.0894258,-0.03817759,-0.030179279,-0.07634352,0.005607376,0.049471788,0.09380408,-0.0071856,-0.00357129,0.05433214,0.002731855,-0.006987067,0.045970447,0.017791167,-0.028499424,-0.08081679,0.0074312086,0.045772586,-0.011542746,-0.038078565,-0.05762053,0.012458393,-0.021339342,0.01820795,-0.021597268,0.025842225,-0.007873553,-0.035645466,-0.05538024,-0.012020636,0.052182917,-0.0037743987,-0.06607326,-0.043641806,-0.0073548662,-0.12668818,0.03265477,0.022983791,0.012322786,0.0027285872,-0.04803825,-0.047136746,-0.03997619,0.0061745504,-0.0080508,0.02194449,-0.022203252,0.01839644,0.022540001,-0.13754687,0.013579153,-0.052926358,-0.0017884644,0.014956333,-0.110183485,0.0360287,0.06521772,-0.029085254,-0.028623054,0.006782316,0.029812919,-0.10177767,-0.003370861,0.069001146,-0.07158989,-0.0569571,0.024444891,-0.07620142,0.040977977,0.06329132,-0.07212468,-0.014459317,0.040623978,-0.079205655,-0.08011695,-0.039938524,0.003946638,0.06764359,0.012617783,0.040357623,0.0048076636,-0.018593233,0.066411175,-0.054625712,0.051401846,-0.024750473,0.011290749,-0.03642845,0.033845156,0.01914471,-0.024128104,-0.03822972,-0.047144208,0.015061112,0.012942338,-0.027864557,0.00020327525,0.021623861,0.068354085,0.023439815,-0.00040140544,0.0035748892,0.060879763,-0.058682427,-0.027020983,-0.004511304,-0.051727682,0.076296054,0.020338712,-0.07997601,-0.059024245,-0.03724993,-0.09358015,-0.0618615,0.09582719,0.06876855,0.07310295,-0.019572103,-0.018506745,0.03279098,-0.023406511,0.0481506,-0.018007824,0.0968916,-0.038942795,0.004167069,2.8490945e-33,0.027075855,-0.17299464,-0.058725204,0.057164177,-0.07580015,-0.045388523,-0.03554812,-0.1073087,-0.039565753,-0.028597303,0.012562551,-0.00777524,-0.034251582,-0.03310039,-0.0065705786,0.044624116,0.018334195,-0.07335057,0.022709757,0.043444477,-0.010190283,0.008436587,-0.028068626,0.045922186,-0.003830271,-0.016572485,0.063342094,-0.0060334555,-0.030915013,0.05517154,0.058743928,0.016066276,-0.06376675,0.0064438973,-0.08526808,-0.06162695,-0.05666544,-0.042172868,-0.018305803,-0.07153021,0.05928778,-0.052303404,0.049754344,-0.0064251074,0.042047303,0.044558503,0.008050653,0.002879695,0.018021462,0.13508701,-0.069723785,0.030937036,0.0012689944,0.008276086,-0.03662995,0.037572656,0.030600676,0.07163214,-0.0047360454,0.026733024,-0.10049154,-0.006761765,-0.0031853353,-0.036704335,-0.0058442852,-0.053650398,-0.05198413,-0.036036845,0.086003564,-0.015828181,0.03269306,-0.09078955,-0.07708386,-0.020472622,-0.098835684,-0.027321799,0.0666536,0.06376595,-0.04847339,-0.016408412,-0.057270713,0.07327608,0.08449119,0.0018416978,0.10054295,0.044901293,0.013936752,-0.041752104,0.012663136,0.03095475,0.009530987,0.0962818,0.045393035,0.027359521,0.0025057746,-2.4411352e-33,0.023021773,-0.0052514467,-0.009661386,0.12295254,0.05265762,0.042342722,-0.08765572,0.033816054,-0.01482172,0.055868175,-0.036425877,-0.062469207,0.0328537,0.057107,0.06628802,0.011325308,0.13306563,0.0058480524,-0.071584776,-0.022327991,-0.034185298,0.025289342,-0.005385153,0.045288056,0.030268375,-0.026692145,0.05607767,0.062275767,-0.06809816,-0.027133405,0.00941587,-0.06280788,-0.060151953,0.11744992,0.007466847,-0.08539214,0.109866284,0.036552582,-0.09796298,0.025296139,0.01796017,0.037072387,-0.020207725,0.04191914,-0.060238536,-0.07136908,0.005489755,0.039210964,-0.0023207401,-0.011462906,0.042746663,-0.044967875,0.07873705,-0.08972199,0.028257709,0.029543195,0.06377139,-0.0054706424,0.021937314,0.039632805,0.07354669,-0.012696309,-0.0005347669,0.063062236,0.004150655,0.0066745,0.020087434,-0.0068218815,0.021502493,0.030323822,0.08464695,0.015065972,-0.019155836,0.050895944,0.025039846,-0.013179174,0.0024131224,0.06016333,0.050497103,-0.06426305,0.026709035,0.004053152,0.01374447,-0.04290605,0.026831143,-0.007933846,-0.027848935,-0.0425448,-0.0020034853,0.06430029,0.062280804,0.09726423,-0.033749506,0.05888958,-0.018023722,-1.9235278e-08,-0.01986333,-0.09456628,-0.05727202,0.038581986,0.06940849,-0.06606319,0.027655886,-0.0048037553,-0.026578836,0.038686886,0.011192662,-0.0022310808,0.038053654,0.106133066,0.0081654545,0.033154134,0.094401315,0.108282275,-0.06337631,0.006146017,0.066683985,-0.021908708,0.022071946,0.05577092,-0.025914036,0.0014541957,-0.040479053,0.028658293,0.068897754,0.018623639,-0.063655056,0.12331924,0.00987018,-0.06777001,-0.11372865,0.01731621,0.09050039,-0.003287576,-0.051590662,0.057218205,0.03764714,-0.029776443,0.09917521,-0.01518576,0.0035933547,-0.06574301,-0.054187052,-0.0485205,-0.01657042,-0.11940796,-0.031194238,0.04417277,0.023913635,0.057439383,-0.028397912,0.0576979,0.056533173,-0.0011323395,0.033453576,-0.0012111998,0.04311172,0.08491366,-0.015140977,-0.011242261} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:22.630371+00 2026-01-30 02:01:10.995457+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1559 google ChdDSUhNMG9nS0VJQ0FnSURzNkxuUDdBRRAB 1 t 1562 Go Karts Mar Menor unknown Turned up, drove carts, good times turned up, drove carts, good times 5 2021-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Turned up, drove carts, good times"} {0.024253407,0.05639294,0.03364296,0.07650693,-0.002508297,-0.032662176,-0.017748829,0.055559564,-0.08443127,-0.0022691258,0.04710718,0.05386743,-0.008471635,0.06718641,-0.0025350484,0.0065812976,0.06801982,-0.034980435,-0.03922177,-0.016827736,-0.10142347,-0.05400454,0.0035657824,-0.011782441,-0.022794783,0.03214677,-0.008264921,0.09731755,-0.041215405,-0.025488162,-0.09553046,0.08884715,-0.016767042,-0.034160316,-0.030596616,-0.07224619,0.09812734,-0.07358947,0.07592031,-0.078799546,0.058477126,-0.08982984,-0.0029798106,0.04822712,0.00021392274,0.031123152,0.062115464,0.0042813336,0.08980982,0.06723074,0.050045516,-0.0421925,0.07392225,-0.058750954,-0.035150975,0.08308649,-0.025354832,0.055959757,0.08086224,-0.048471447,0.028641263,-0.0130291,0.027281635,0.04519092,-0.038944148,-0.0004078583,-0.037226386,-0.13123783,0.029372342,0.080001876,0.01553729,0.031987567,-0.016802672,-0.10358368,0.015418225,-0.042246383,0.038552344,-0.10599027,0.04029623,0.011434043,-0.085704856,-0.02538294,-0.0544945,0.07566243,-0.090157926,-0.06052911,-0.010487406,0.067825995,-0.036270287,-0.04003267,-0.028023506,-0.004579092,-0.016783834,-0.0065151937,-0.017427264,-0.08532899,0.019779058,0.0241285,0.0011975443,0.068760514,0.025641488,0.12308019,0.022313874,-0.026505461,-0.021474991,0.05216493,-0.0128647005,0.06581702,-0.048978973,-0.016283892,0.031963486,0.034526266,0.06935615,0.016489685,-0.07173461,-0.0057395175,-0.110625476,0.0024631785,-0.03519387,0.023176385,0.057239834,0.023848614,0.054954413,-0.005402517,-0.061245613,-0.06139565,0.12961061,-4.12147e-33,0.00073316466,-0.031669684,0.040638126,0.06693564,0.07543949,0.06720672,-0.017701162,0.017090067,-0.035317946,-0.01950728,0.104152374,0.11544024,-0.04723322,-0.06626042,-0.008738919,-0.011694943,-0.017517066,0.019750956,-0.004835958,-0.010769442,-0.04735335,-0.01057925,0.024552692,0.0055818353,0.053927377,0.10357465,-0.0024589177,0.011196212,0.08195626,0.009838979,0.023495901,0.0376418,-0.000961292,0.03609651,-0.014143192,0.022756953,-0.05521935,-0.010167402,-0.08904023,0.011981789,-0.027363684,-0.016954858,0.01987121,-0.06674987,-0.10122938,0.028324855,-0.03536546,-0.012856962,0.008135295,0.028616771,-0.12715523,0.013658697,-0.048558496,0.08389687,-0.06941356,-0.02392765,0.0059556225,0.002673346,-0.106215194,-0.051821608,0.030979631,0.070187375,0.028098233,-0.0944641,-0.067095436,-0.080584295,0.036861792,-0.016651345,0.021064099,0.06536405,-0.01234111,0.014540668,-0.09508728,-0.020230155,0.018136306,0.06748412,-0.061247665,-0.021547973,-0.11072256,-0.0074840947,0.058824915,-0.05277343,-0.04440948,-0.014273186,0.09608518,0.00016119824,-0.054819684,-0.15616602,-0.052062627,-0.014101256,-0.04916932,0.023328051,0.08190605,-0.04321952,-0.02516762,2.0519275e-33,0.030400561,0.070246466,0.042720687,0.015138507,0.031898,-0.050668832,-0.040963724,-0.0055261427,0.031638425,0.033630222,9.410135e-05,0.03557357,0.059893034,0.014110092,0.03806334,0.0326237,0.09133775,0.027845405,-0.00073159655,-0.016464736,-0.04078698,0.07212237,-0.016297273,0.05553021,-0.056625713,0.036171623,-0.04007847,0.029719317,-0.05284133,0.003224091,0.049632084,-0.016371908,0.022576498,0.09787452,-0.041487493,0.10991572,-0.019882444,0.03965491,-0.039458994,-0.04774128,0.010894448,0.011987618,-0.02496364,0.1053817,-0.05796525,-7.558388e-05,-0.005149547,-0.0053825155,0.04225678,0.047907643,-0.0075030806,0.030268375,-0.015240899,-0.005551372,0.0138592785,-0.020824518,0.10960943,-0.025644222,0.0205142,-0.048583534,-0.11177813,0.06690102,-0.027079375,-0.020233458,-0.005325769,-0.09189135,0.019932428,-0.083053485,-0.0010702949,-0.02206403,-0.0090979235,0.073892355,0.001379753,0.056617506,-0.0060645426,-0.0069340477,-0.05084675,-0.04548727,-0.0009795462,-0.060366422,-0.02943458,-0.0769953,0.014913968,0.05618072,0.040585548,0.014355937,-0.026373705,-0.067735024,0.046251684,0.037714384,0.0242004,0.10052044,-0.0652645,0.100092076,-0.020495176,-1.5562696e-08,-0.03238191,0.035638157,-0.053117882,0.01423561,0.024137883,-0.030174337,0.104956105,0.11569468,-0.10266603,-0.005267605,-0.0051469016,0.018385384,0.033833284,0.043403726,0.105857894,-0.026948012,0.03569108,0.032599226,-0.03687142,-0.016044231,-0.028545417,-0.053819895,0.02465276,0.032386586,-0.050947893,-0.03230526,0.033687565,0.010350802,-0.012825811,0.031150742,-0.015701253,0.04702554,-0.022734128,-0.03386778,-0.0061317924,-0.040211316,-0.042050783,0.020145718,0.03487217,-0.017647767,-0.0015756907,0.018554451,-0.09045387,-0.015878646,-0.059136923,0.015440251,-0.004531331,0.056952864,-0.059043,-0.038703702,-0.052289635,-0.044278804,0.024791116,0.034925506,0.06613642,-0.015939726,0.011490688,0.010898133,-0.022644207,0.070436455,0.019385615,0.0042778635,-0.05073652,-0.01514871} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.583124+00 2026-01-30 02:01:09.788079+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1566 google ChZDSUhNMG9nS0VJQ0FnSUNVcnFla013EAE 1 t 1569 Go Karts Mar Menor unknown Relaxed atmosphere great fun relaxed atmosphere great fun 5 2020-02-01 01:52:39.833374+00 en v5.1 E1.04 {V4.03} V+ I2 CR-N {} {"E1.04": "Relaxed atmosphere great fun"} {0.018025283,0.029542793,0.06793999,0.046278436,-0.014774654,-0.015684932,0.14103965,-0.07296264,-0.035800863,0.02003931,-0.0063778386,0.0068260105,0.014903525,-0.0045894757,0.055962633,0.05800489,0.12036055,-0.007900893,-0.022877986,0.0150209665,-0.0874954,0.02375597,-0.042969022,0.022420479,-0.06326064,0.027088704,-0.027425295,0.08615458,0.052808926,-0.070390984,-0.018518053,0.09946353,0.053866215,0.00081314624,0.01585413,0.041745648,0.017538732,-0.13447933,-0.040599626,0.043866746,-0.06219024,-0.011620206,0.026725147,0.005973727,-0.033697404,0.039586544,0.0057071233,-0.012461371,0.09326963,0.04508462,0.05643086,0.026910447,-0.014321588,-0.0051412936,-0.012007488,-0.0045751906,-0.120654956,-0.09638112,-0.028171787,-0.049749207,0.033621214,0.030089827,-0.041363407,0.023276635,0.020912688,-0.063004956,-0.03506852,0.05042324,0.08396694,-0.0702779,-0.071154244,0.028503988,0.013909883,-0.072998576,-0.059498284,0.05405085,-0.039082922,-0.10539546,0.0077996706,0.02581388,0.18368939,-0.08744725,-0.07061259,-0.041211866,-0.0871857,-0.091517866,0.026137833,-0.00079039554,-0.04794266,-0.0015447915,-0.050438214,-0.028021714,0.0027695326,-0.012616624,-0.0668048,0.011083277,0.019784061,0.021505963,-0.025800817,0.0885864,0.0058947047,0.053704895,-0.02343223,0.012956317,-0.05085395,-0.014360464,0.033199996,0.06892139,0.035951395,-0.020572398,-0.11623149,0.0033557233,0.03212415,-0.017681155,-0.013782993,0.05500923,0.01729006,0.04827561,-0.06667215,-0.08430663,0.058560517,0.030657407,0.068892814,0.044366214,0.040378693,-0.07366031,0.033846296,-1.7925093e-33,0.05313331,0.021016125,0.028134825,0.07301489,0.04672316,0.015716555,-0.03288826,-0.07684384,-0.088907845,0.05074969,-0.05044084,0.017331181,-0.03248912,0.0014014543,0.05403722,-0.10984364,-0.088711135,0.044142023,-0.014561394,0.0002677746,-0.14158313,-0.03688798,-0.0024237006,0.097575724,-0.006813944,-0.0024654465,0.09609705,-0.060090847,0.069035694,0.02084147,0.0147530055,-0.017189672,-0.021621544,0.01649206,0.0093805725,0.0508633,-0.012419818,-0.015718397,0.06652495,0.061847314,-0.014744959,0.056426097,-0.002803695,-0.010819255,0.03201325,0.009126636,0.011071719,0.04557272,-0.042166222,-0.0075438987,-0.09069134,0.0267711,-0.00020621433,-0.0016126104,0.0066030747,-0.007020569,0.06612341,-0.005832057,-0.03502921,0.013538155,0.031428047,0.023013748,-0.056581054,-0.14266759,-0.0069696186,0.034694083,0.013997069,-0.01688065,-0.0031549076,-0.0026825068,0.0034432057,0.03503516,0.09460825,-0.08162863,0.007076879,-0.044032164,0.022508841,-0.027884318,-0.03089843,0.0154398745,-0.032266736,0.0263167,-0.010111739,-0.015366096,-0.024557391,-0.08164805,0.0052319793,-0.05394071,-0.06717223,0.049775004,-0.11491244,-0.04259848,0.11701804,0.007587797,-0.009054149,1.6360022e-33,0.09444469,-0.029948188,-0.10481007,0.039439544,0.02944836,0.026144844,-0.03667998,0.019221405,-0.08883202,0.02258686,0.037742518,0.089109086,0.091587014,-0.0005795029,0.029530019,-0.024235683,0.031838283,0.050783426,-0.053177904,0.0636534,-0.0037102716,-0.0141706485,-0.011910532,-0.026339397,-0.014081566,0.061473783,-0.025665212,-8.9919886e-05,0.026948249,0.062360007,-0.035582542,0.09574467,-0.041190393,-0.040169217,-0.007762938,0.08289236,0.065748945,-0.011022645,-0.09347337,-0.06693217,0.01127075,0.037616003,0.045344304,-0.005574546,0.031002661,0.0875279,-0.027814755,-0.06477136,-0.070669115,-0.021073733,0.026253985,-0.050163012,-0.1314356,-0.011496486,0.062646665,-0.036495335,-0.05381617,0.012604505,0.0050455877,-0.01865102,0.014183451,0.036139593,-0.029222215,0.028838294,0.028846862,-0.00957575,-0.03062695,-0.0014474336,-0.09247377,0.048331946,-0.055880588,-0.014536405,-0.061520386,0.07077959,0.008494162,-0.046003446,0.090217955,-0.019376568,0.050237376,0.05137673,-0.075258695,0.044392608,-0.025909213,0.008025008,0.02090419,-0.0002839528,-0.0145498635,-0.027839543,-0.039980326,0.04599955,0.022614751,0.032794766,-0.013936558,-0.007937225,0.037509736,-1.3039545e-08,-0.02436757,0.0031980523,-0.009985773,0.005568979,-0.03318353,-0.03174126,0.041996736,-0.012030168,0.04242841,-0.015682463,0.05490919,-0.026375927,0.09169086,0.06891788,0.08626707,-0.024035271,-0.040693156,0.078010984,-0.04321844,0.046110477,-0.0035733874,0.046477187,-0.023288913,-0.024571061,0.0069929934,0.037095845,0.049607277,-0.035621587,0.11166153,-0.005292456,-0.011760948,0.043176174,-0.023841688,-0.050278135,-0.07146165,-0.03796827,0.024014434,0.023488812,-0.023186548,-0.03693358,-0.062156025,-0.042781796,-0.06899381,-0.016619446,-0.006582291,-0.016827008,0.057757493,-0.00234456,-0.070618,0.093850456,0.007453913,-0.02357152,0.037321292,0.018155945,0.0623786,-0.010218685,-0.03489891,0.08225471,0.031542797,0.02544402,-0.0011621837,0.044604443,-0.16295452,0.048666265} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.671682+00 2026-01-30 02:01:09.820126+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1567 google ChZDSUhNMG9nS0VJQ0FnSURONklMN2F3EAE 1 t 1570 Go Karts Mar Menor unknown Just so good. just so good. 5 2024-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Just so good."} {-0.11905099,-0.03550207,0.00582597,-0.006725855,0.040179618,0.059740514,-0.007160089,-0.12118062,0.030201372,-0.01658772,-0.049970347,0.05334716,-0.05161802,0.021603819,0.017826598,0.010377033,0.03854169,-0.0982804,-0.06535439,0.006557588,-0.06744495,0.040750213,0.05857686,0.0130059505,-0.030738337,-0.015619332,-0.02131098,0.0085782185,-0.019823976,-0.009276697,-0.043324597,0.07248612,-0.04269991,-0.0318568,-0.071583964,0.07630343,0.036664948,-0.036435895,0.008562282,0.03944604,0.08939996,-0.017862704,-0.0035180189,0.070595205,-0.08485992,0.015919585,-0.02262473,0.06783719,0.12256608,0.012243486,-0.05390624,0.026948102,-0.036149867,-0.0117785325,0.016913587,0.03161985,-0.007501191,-0.055002607,0.0062096324,-0.07125965,-0.016633868,-0.020339271,-0.089792565,0.012830825,0.04848027,-0.00035930297,0.011889752,0.047115438,-0.063219056,0.12076843,-0.012941399,-0.0011187346,-0.0011590741,-0.04464582,-0.05075997,0.03197332,-0.00819189,-0.023939332,0.08138749,0.0013567334,0.038053636,-0.073960856,-0.008722952,0.03334167,-0.049582664,-0.022351548,0.13310401,0.0020384772,0.09364583,0.016387241,0.029174762,0.015068754,-0.01978395,0.04588014,0.06925481,-0.065331444,0.025369545,-0.083042994,-0.05234933,0.081218064,0.009802283,0.089333445,0.034869146,-0.0039569754,0.030076789,-0.0017338884,0.05137434,0.018803502,0.030767541,-0.07161993,0.060305603,0.009569335,-0.013038714,0.05651789,0.033333756,0.08159915,0.051322617,0.07212711,-0.03838938,-0.018218432,0.07534603,0.071901776,-0.008397573,0.03345086,-0.0055925543,0.003647741,0.08044858,-4.7054253e-33,0.003018609,0.059809152,0.058456756,-0.027429841,-0.007660043,-0.010287141,-0.07689205,0.020852286,-0.039419737,0.012910863,0.010402105,-0.0579755,0.010026424,0.026818927,-0.03488754,0.03770436,-0.09414418,-0.060895454,0.12951812,0.08878145,-0.0018287466,0.025274994,-0.035918877,-0.012728076,-0.038273636,0.03613669,0.0018900513,-0.054254435,0.04076403,0.025613721,-0.080536515,0.03142188,-0.065026484,0.031037476,0.06583971,-0.0095948,-0.06037993,-0.004117065,-0.0448151,0.014804546,-0.044099577,0.06923681,0.008790385,0.022443715,-0.029029684,0.0051983125,-0.03096221,0.029406045,-0.0034222978,0.031943254,-0.013788267,-0.0133873215,-0.00318715,0.056505907,-0.060647544,0.02486713,0.022396576,0.03638374,0.016139038,0.018834783,0.10806891,0.043555282,-0.0015098149,-0.05264459,-0.10517264,-0.013967185,0.006201457,0.023680896,-0.022594485,-0.012577279,-0.07631647,-0.017985944,-0.02088846,-0.0070237294,-0.06299206,0.028204875,-0.0048960554,-0.066652715,0.019536247,0.001036002,-0.008603856,-0.0036299091,0.014742788,-0.110837474,0.07562885,0.0078111603,-0.026749285,-0.07094136,-0.019315053,0.017384456,-0.06277585,-0.051766504,0.04675736,-0.044354573,-0.06598115,3.8450516e-33,0.027837355,0.019631201,0.036996264,0.14828597,-0.035904545,-0.013320826,0.06806829,0.05359855,-0.045839768,0.015459878,0.054490387,-0.035934485,0.039500535,0.026326606,-0.0057479395,0.10127339,0.08433589,0.011424397,-0.0147466725,-0.065218575,0.00031417902,0.054280292,-0.01993746,0.040849544,0.014546586,0.050852004,-0.097633325,0.09328243,-0.00771837,-0.017495029,0.0033146841,-0.04087026,-0.061642267,0.04206722,0.0007458094,0.01843934,-0.0038126067,-0.14130831,-2.5214891e-05,-0.10591777,-0.0482484,-0.01604363,-0.043117315,0.14536431,0.08768089,-0.07131179,0.0013608115,0.028813127,-0.015417448,0.09778873,-0.016161017,-0.054324258,-0.081527315,-0.0918419,-0.046822704,-0.0039498513,0.008490877,-0.0066165198,-0.013711968,-0.03875511,-0.10138412,-0.05090222,-0.068266906,-0.0009899262,-0.022815136,0.019839315,-0.016734738,-0.03312949,-0.03914786,0.059090424,0.014601222,-0.055612084,-0.07909224,-0.047328897,0.04958553,-0.06409508,-0.046519835,-0.08204809,-0.018856494,-0.034060296,-0.12375176,-0.03792598,0.00026001057,-0.021087417,0.050827876,0.05097047,0.04361633,-0.018400937,0.011365954,0.11543404,0.08430049,0.07520146,0.012263879,-0.08045881,0.002664493,-1.8174418e-08,0.021739744,0.03045021,-0.035158485,-0.007504907,-0.026359295,0.06726836,-0.018789962,-0.07505593,-0.005528263,-0.00675294,0.12085483,0.038262133,-0.04967663,0.045655124,0.04730516,-0.05833956,-0.07241706,0.07425207,-0.01632922,0.016810726,0.013490646,0.06445153,0.05226065,0.020151459,0.023915298,0.04084079,-0.058877617,0.047644496,0.006507146,0.07003936,0.14126691,-0.033866383,-0.058040336,0.013587549,0.026478946,0.010136392,-0.022649055,0.033945672,0.055763733,-0.07769039,-0.04476758,0.05915253,0.06859401,-0.04357349,-0.047261152,-0.032599512,0.041593093,0.019705165,0.036279444,0.06476723,0.02937442,-0.0209654,6.0326558e-05,0.05706277,0.03487822,0.032251697,0.010189583,-0.037584126,-0.048986267,0.063046,0.0817506,-0.03474712,0.07060737,0.02926809} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.683281+00 2026-01-30 02:01:09.825388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1591 google ChZDSUhNMG9nS0VJQ0FnSURaaXVqYVNBEAE 1 t 1594 Go Karts Mar Menor unknown Good experience 👌 good experience 👌 5 2024-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Good experience 👌"} {-0.022262089,0.061537772,0.09378246,0.03738143,-0.062056594,-0.030253304,-0.0159202,-0.047208983,0.047093246,-0.032705452,0.058495425,0.069002144,0.080319256,0.04580711,0.029283987,0.048468787,0.0604739,0.025765244,0.010360238,-0.031170692,-0.12870458,-0.07002343,0.077806905,-0.023424987,-0.07412337,0.04550388,0.020804355,0.011011552,0.087826364,-0.03375826,-0.060936816,0.08036086,-0.013501822,-0.02370902,0.023711901,0.07379645,-0.0041546253,-0.022223618,-0.010999224,-0.029661266,0.0061818836,0.034712367,0.0059445915,-0.044876218,-0.0022223287,0.014958006,0.074836016,0.0042391564,0.048973247,0.042135715,0.008520959,-0.053096082,0.010240528,0.042966053,-0.03945867,0.05213535,-0.07139091,-0.03209362,-0.012844439,-0.13879383,0.013839756,0.059072025,-0.025541974,0.021565774,0.036257643,0.009776717,-0.04073303,0.036507823,-0.042600196,-0.029612947,-0.11258757,0.04511725,-0.12922181,-0.031411245,0.05833499,0.11611997,0.05130211,-0.060871556,-0.033236105,0.04847,0.006602916,0.099052176,0.058862507,0.040215734,-0.10677041,-0.09538606,-0.014372981,-0.005002185,0.011458439,0.036228035,0.039656512,0.068091035,-0.022827525,-0.011051804,0.016810391,-0.055655796,0.0077005513,-0.0050093215,-0.049237296,0.07237305,0.027970152,0.030579383,-0.021367185,0.06019725,-0.071227804,0.03035697,-0.043050773,0.034701765,-0.039678533,-0.012183422,-0.015798515,0.025230946,-0.044840742,0.068724714,0.028102906,0.06380306,0.01994816,0.08697047,0.036523994,-0.03611986,0.03339977,0.02692293,0.009587518,-0.058276612,0.010882877,-0.121078156,0.075806804,-1.9137713e-33,0.014379432,-0.041893113,-0.051047932,-0.03156718,0.042939797,0.08917652,0.015399829,0.024396636,-0.08701741,0.028293425,0.0496636,0.059019756,-0.02965024,0.023613723,-0.026338216,0.02743463,-0.12659389,0.0625571,0.017609239,0.037218265,-0.05716886,-0.115769215,-0.032240238,0.050777197,-0.027391111,0.10605049,-0.018003482,0.0030356464,0.047377273,0.020091884,-0.04610029,0.0460869,-0.07701447,-0.00089076173,0.00017816461,0.042390555,0.068354204,-0.093018234,0.009653603,0.023128092,0.012365737,0.015888369,-0.068113476,-0.08649516,-0.018961398,0.029094528,-0.06528661,0.00511694,-0.03856547,-0.04432921,-0.07765101,0.0091371415,-0.030838631,0.046982944,0.04054664,-0.027610976,0.045824323,-0.047921427,-0.0008679783,-0.0064695235,-0.008902208,0.0452741,-0.023397552,-0.017889298,-0.068533875,-0.029981567,0.07172157,-0.055854272,0.016558314,-0.064787224,-0.0105866045,0.014502393,0.11774358,-0.04611608,0.009395208,-0.06889892,-0.10277132,-0.0025378014,0.04804917,-0.009760945,0.04720987,-0.0059746737,0.023176132,-0.0100090355,0.11624108,0.059730545,0.034829922,-0.16895626,-0.07333191,0.015695505,-0.046288047,-0.074871056,0.11337093,-0.011878094,0.010022369,1.13649595e-33,0.029633483,0.06525051,0.01888274,0.04450601,0.0026507818,-0.033148207,-0.010084479,0.12405223,-0.057841666,0.047959432,-0.046090942,0.028935097,0.0027267584,0.0865582,-0.021228025,-0.013802579,0.079920426,0.048175395,-0.025694082,-0.010437862,0.017970225,0.0026909665,-0.040673956,0.038447287,-0.04911186,-0.013111989,0.026796648,0.030665575,-0.009876274,-0.06124449,0.002218491,0.083860435,-0.0702007,0.004470117,-0.0407847,0.057986457,0.07177296,0.03476144,-0.025312662,-0.03012216,0.039295737,-0.04367419,0.022346625,0.05331335,-0.008799781,-0.010451937,0.0055187433,-0.06163155,0.00083029014,-0.024297956,-0.035081193,-0.010060288,0.050913285,-0.066034585,-0.038557656,-0.10759725,0.1026868,-0.027454345,0.050248746,-0.03805865,-0.04390726,0.10146836,-0.025377227,0.05085599,0.049974196,-0.031150762,-0.042170405,-0.024090579,-0.090275176,0.03049595,-0.029121451,0.0431881,-0.039272234,0.045632143,-0.014516139,-0.10123638,-0.030904012,-0.057918027,-0.005114592,0.0016537996,-0.06736367,-0.030626135,-0.012653355,0.055902097,0.085284494,-0.00023542886,0.021008119,-0.06320688,-0.01387424,0.011187126,-0.0021307792,0.04048354,-0.025014797,-0.0057716663,0.040883332,-1.6464906e-08,-0.028917054,0.04742064,0.056359634,-0.009914301,-0.0020608683,-0.05553354,-0.044785436,-0.0059691705,-0.02671288,-0.053018287,0.035982363,-0.027537726,-0.027822863,0.05595334,0.07352134,-0.06739953,-0.014708291,0.19167046,0.0039674668,0.014401926,0.077016614,0.06462211,0.0076830015,-0.006313056,0.02413235,0.02701209,-0.007913485,0.08507834,-0.008104883,-0.059398666,0.003026887,0.052255075,0.0030604051,-0.026159313,-0.0004923064,0.024620015,0.028980117,-0.017665468,0.06282389,-0.03404569,-0.072220944,-0.11771088,0.029931461,-0.053277433,-0.09425779,0.0119200675,0.001846757,0.007823087,0.011257172,0.037131485,0.020855483,-0.009399449,0.027554056,0.029399822,0.04994745,-0.001877672,0.035144586,0.017172337,0.036345944,0.04476578,0.015002291,-0.013676593,-0.063194506,0.044510677} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.655387+00 2026-01-30 02:01:09.957926+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1599 google ChdDSUhNMG9nS0VJQ0FnSUR1d3ZYQXF3RRAB 1 t 1602 Go Karts Mar Menor unknown Lots of fun lots of fun 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Lots of fun"} {-0.038767923,0.0068277107,0.04922009,-0.013514913,-0.14239863,0.0016236296,0.04711094,-0.04977268,0.059782334,0.0407602,0.0046285875,-0.062162854,-0.068687424,0.025715725,0.004087226,-0.025222402,0.07213013,0.053641018,-0.04893998,-0.011045007,-0.088058785,-0.005700346,0.06625372,-0.049497508,-0.051760074,0.06331946,-0.016423494,0.025135292,0.012428417,-0.060373046,-0.059317037,0.08997841,-0.019625826,0.019087847,0.0060911216,-0.03604511,0.09343952,-0.014923861,0.033560682,0.002311437,0.03955074,-0.08012407,0.035811625,-0.004649997,-0.0327027,0.15530023,0.026167613,-0.046898656,0.09411839,0.07696726,0.120492645,0.04238528,-0.010747714,0.03345216,0.02128782,0.008967058,-0.03819931,-0.09417896,0.013058127,-0.036988545,0.047475554,-0.0090928385,0.015755199,0.055149138,-0.02102647,-0.060325254,0.017523572,0.010600514,-6.699187e-05,-0.023104643,-0.042197064,0.008319601,0.016914003,-0.0027998912,0.040445454,0.04598888,-0.002307079,-0.043034043,-0.024308031,0.0047536404,0.072300754,0.020197801,-0.015634691,-0.002963856,-0.01990181,-0.07948648,0.0072548436,-0.07801419,-0.004288747,0.02932752,0.026084516,-0.04552265,0.04045238,-0.0024690095,-0.088736415,-0.031031633,0.005555625,-0.008883151,-0.033761617,0.08619898,0.013630136,-0.019074181,0.0024020537,-0.07259371,-0.06769754,0.032161333,-0.053581458,0.045554813,0.0010709544,-0.043809254,-0.023032075,0.08331888,0.037967235,0.028528256,-0.010497129,0.054440666,-0.017808547,0.0265966,-0.067673005,-0.030399641,0.13330683,0.028971188,0.08323002,-0.012755196,0.009151259,-0.017218053,0.02309801,-2.1293492e-33,0.07506961,0.023816515,-0.02575852,0.10192377,0.035674024,0.09310878,0.025759313,-0.028284477,-0.061000176,0.056211516,0.013983208,0.0873492,-0.04159241,-0.02326087,0.06199116,-0.053596307,-0.07270188,0.03050176,0.002623785,0.027819125,0.00806889,-0.04764292,0.009227569,0.095119596,0.017663537,0.019930176,0.01327775,-0.13347289,0.12317811,0.014763124,-0.09733232,0.051556244,-0.109656796,0.06299486,-0.015416372,-0.053888127,-0.040185988,-0.11434458,-0.05420337,0.08467237,0.06243102,0.010913043,-0.022288905,0.04834743,-0.025519192,0.008004038,-0.03128858,0.028785242,-0.043779675,-0.04905654,-0.08138983,-0.0138147995,-0.053277638,0.031271975,0.0026387938,0.03015786,0.0092563005,-0.1325031,0.020449452,-0.029625744,0.08506524,0.06365247,-0.06799742,-0.04605302,-0.09016435,0.07304614,-0.0013438272,-0.015874753,0.026466426,-0.033798072,-0.03006691,0.0032543363,0.09260516,-0.018760564,-0.015603571,0.019858507,0.03511189,-0.07223666,-0.059420012,0.010343408,0.06702703,-0.013955026,-0.0069910716,-0.016998414,0.042808313,-0.07645114,0.011298701,-0.16799027,-0.05949163,-0.016495049,-0.06518371,-0.006856842,0.037948128,-0.04318684,-0.011048063,1.9726661e-33,0.0011618126,-0.014160115,-0.036550652,-0.008457102,-0.01527844,-0.024151422,-0.057490773,0.017919611,0.02439826,0.0034685587,-6.935368e-05,0.04350024,-0.04175291,0.0025939678,0.0063780476,-0.044864282,0.052025385,0.033967238,-0.07059498,0.0058547016,-0.03239412,0.03348914,-0.030725194,-0.024721859,-0.07540622,0.013772778,-0.07993599,-0.060373668,-0.032425515,0.051067296,0.019131837,0.018982409,-0.0068429364,-0.054768115,-0.025782377,0.12944864,0.101302825,0.066661805,-0.013420158,-0.058889724,0.014171792,-0.00026407902,0.0065490976,0.029763736,0.02940331,0.05125609,0.047340117,0.012446926,-0.03407119,0.041323278,-0.028055817,-0.016454553,-0.019029157,-0.091085576,-0.012519354,-0.13567308,-0.050095703,-0.0031888909,0.022811139,-0.041249905,-0.063341945,0.10936042,0.024831053,0.03093195,0.040412966,-0.030111142,-0.062351346,-0.055898767,-0.014308524,-0.008720815,-0.046892524,0.05481871,-0.049440764,0.051662467,-0.003237713,-0.057034645,-0.0026772793,-0.03254469,0.054638963,0.01237036,-0.04070626,-0.09890337,-0.0071708485,0.008936353,-0.053125747,0.02946578,-0.0663722,0.053556085,0.016826782,0.004027765,0.062281154,0.06413701,0.0014322127,-0.028253132,-0.03560729,-1.48973625e-08,0.019040124,-0.006866474,-0.015430847,-0.03462965,-0.014328815,0.04853613,-0.0025229866,0.011843615,0.01686869,0.04072062,0.092936054,0.013880315,0.09710976,0.07716191,0.06766225,-0.011477555,0.03962819,0.0695511,-0.036151,0.04192247,-0.01825514,-0.0326992,-0.018660277,0.034177113,-0.07661701,-0.015687525,0.064465515,0.103770524,0.051938847,0.061442714,-0.0170902,0.042363938,-0.0102061415,0.08952568,-0.04644513,-0.00056415447,-0.0025016083,-0.07437128,0.108919255,-0.0331817,-0.058236446,-0.022085095,0.07694935,-0.0013333525,-0.068457365,0.00509673,-0.013468504,0.0167614,0.0052322163,-0.019020261,0.06688453,0.016747432,-0.007246756,0.053228073,0.12051955,0.017863646,0.03298696,0.065917,0.027063362,0.06373081,0.10055434,0.06833936,-0.043382928,0.023074856} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.744346+00 2026-01-30 02:01:09.997259+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1606 google ChZDSUhNMG9nS0VJQ0FnSURReHZUX0pBEAE 1 t 1609 Go Karts Mar Menor unknown :-D :-d 3 2016-02-02 01:52:39.833374+00 de v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": ":-D"} {-0.12142894,-0.012038535,0.0040342906,-0.008084669,0.043890066,-0.03405997,0.036652856,-0.02858693,-0.063634135,0.028932048,-0.011297113,-0.027299395,0.031535204,-0.0041300342,-0.034628555,-0.035942215,-0.099183306,-0.06139215,-0.052807245,0.05227587,-0.16678357,0.006738163,0.04489446,-0.01878822,-0.05227623,0.0040926877,-0.04246511,0.053641308,0.015440239,-0.017815053,-0.010465827,0.05707761,0.076751575,-0.03512976,-0.0032225114,-0.030370982,-0.04061331,0.01581703,-0.069228224,-0.0104801515,-0.012204574,-0.01737579,-0.004016419,0.0075810994,-0.01774556,-0.042536266,-0.015664635,0.010534391,-0.06509675,-0.017080072,-0.0558593,0.024803473,0.035975788,-0.03205157,0.030126506,0.054903913,-0.019448407,0.027243614,-0.012384978,-0.04728639,0.022348328,0.010960112,-0.05163637,0.09297579,-0.016252061,0.015405369,0.021766916,0.015857736,-0.017795607,0.10482413,-0.023035321,-0.034705263,-0.012017757,-0.01560761,-0.04846106,-0.023730326,0.001928311,0.0028219046,0.045041706,0.02960295,-0.018102096,-0.012899058,0.021469738,0.027574303,-0.04310692,0.03376548,0.054544523,-0.005072702,-0.029073952,0.015678685,-0.059495475,-0.010113562,0.14104696,0.047530204,-0.06511717,-0.045325033,0.0071577136,0.07678896,-0.055323057,0.14896426,-0.042620823,0.048494697,0.01412748,0.02508706,-0.015448573,-0.013826571,0.029130613,0.031784855,-0.010748008,-0.027266828,-0.057281025,-0.0038462682,0.11356622,0.030544478,0.041243546,0.040092807,-0.07294853,0.07023453,-0.0031441078,0.010543372,0.005764774,0.045145378,-0.011806505,0.023753004,-0.019372204,-0.070931114,0.05864851,-2.2249621e-33,-0.023043852,0.010746082,0.005374504,0.05987221,0.011201234,0.019073239,-0.04179791,-0.009781033,-0.04776227,0.00554138,-0.08909102,-0.0053345417,-0.081503235,-0.011949174,0.043285776,0.042323925,-0.026781099,-0.12394483,-0.017703878,-0.039940227,0.032180376,-0.048975337,-0.0053632627,-0.012157527,-0.06548721,0.07410073,-0.073403716,-0.09469998,-0.040967785,0.02550315,0.06445904,0.00042036644,-0.065729916,0.0047702775,-0.04410393,-0.0682016,0.06232101,-0.11000774,-0.024428403,0.0012252135,0.021345794,-0.07331814,0.006821676,-0.028192945,-0.0025102312,0.07596328,-0.034178503,-0.0044647944,-0.023111964,-0.014525084,-0.094192944,0.053101595,-0.034156445,-0.004953072,-0.07548283,0.008457899,0.013618307,-0.0348204,0.09570223,-0.016204884,-0.0016825469,-0.01141167,-0.039831247,0.051508345,-0.047580946,-0.045423534,-0.041507326,0.06266668,0.009081678,0.041893233,-0.04126413,0.029887345,0.099303104,-0.072730765,0.0714317,-0.0041468963,0.0037808598,-0.040824853,0.057057936,-0.01822006,-0.00013434708,0.059606012,-0.052755713,-0.011298028,0.07747726,-0.04957665,0.031520005,-0.12860395,-0.019862182,-0.03156528,0.0021066922,-0.014566927,-0.003951886,-0.01087414,-0.085382335,-3.1229645e-33,-0.04601453,-0.03452786,-0.11118279,0.08416664,-0.052138258,0.008523191,-0.017882729,0.07868561,-0.05018207,0.0943285,-0.027510127,-0.022758232,-0.07464763,-0.03183053,0.0036737302,0.06537891,-0.047732476,-0.046759646,-0.080270424,0.011478669,-0.057025373,0.06928055,-0.02783503,0.101179235,-0.060576417,0.10582872,0.09760637,0.12940218,-0.034178216,-0.038608626,-0.0011854799,-0.025844222,-0.09890078,-0.0077714,-0.013276382,0.05545858,-0.010813463,0.06562202,-0.08067862,0.1369964,-0.04683962,-0.05032334,0.09245559,0.06710653,0.026112545,-0.054851018,0.014086096,0.05028362,-0.027466835,-0.010711082,-0.047527455,-0.018601295,-0.012872316,-0.033262413,-0.03803329,0.010078377,0.033490848,-0.014952332,0.057947587,-0.0074962764,0.0033535284,0.0009699495,-0.054597165,0.023204636,0.06643305,0.005211599,-0.055567373,-0.005290676,0.031536687,-0.017554019,0.14678441,0.11224404,-0.09509383,0.004566772,-0.021796916,-0.066514045,-0.04403156,0.035423685,0.031501763,0.035939407,-0.067022644,0.061029676,-0.020054419,-0.06929819,-0.0014118723,-0.012336012,0.08678356,-0.0070968447,0.009369645,0.056051683,-0.038938753,0.055453837,0.09255312,-0.0006732466,0.051890347,-2.0591314e-08,-0.013644464,0.039583135,0.020595232,0.013454063,0.08228975,-0.010437793,0.07507666,-0.048550367,0.005726371,0.03131343,-0.013315459,0.02074239,-0.08398483,0.015092169,0.05766975,0.011169127,-0.016845232,0.116175465,-0.0464333,-0.13315141,-0.041898835,0.014008552,-0.031616252,-0.050466523,0.0020632083,0.08737255,-0.012437736,0.06803887,0.024599949,-0.025326522,0.058750525,-0.0060715443,0.018036412,0.020542009,0.015725255,-0.03860741,-0.06923992,0.07721304,-0.022812152,0.1280124,-0.04596637,-0.043257233,0.01371524,0.038693372,-5.386835e-06,-0.00783608,0.040854383,-0.007312244,0.020435497,0.04849308,-0.07806893,0.0027015223,-0.0029308323,0.021072246,0.07762134,0.057251755,-0.04838754,-0.059068393,-0.024616612,0.030654171,0.08909677,0.053664345,-0.075983725,0.03951181} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:01:51.836767+00 2026-01-30 02:01:10.028183+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1512 google ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB 1 t 1515 Go Karts Mar Menor unknown Great track, not much time for your money great track, not much time for your money 4 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {V1.02} V- I2 CR-N {} {"O2.03": "Great track", "V4.01": "not much time for your money"} {-0.020949017,0.0039080307,0.0023000392,0.013383428,-0.020295074,0.036433134,0.0077165994,-0.0016924144,0.0055854353,-0.06642253,-0.032890752,0.016239658,-0.061805397,-0.036051985,-0.059762698,0.018607557,0.036565524,-0.049182657,0.023452036,-0.03993054,-0.08647717,-0.034979023,0.0021769034,0.06255781,-0.09897185,0.08217414,-0.020648431,0.03684466,-0.04001664,-0.01506207,-0.078934066,0.05351124,0.014223605,-0.009858987,0.028872797,-0.013854333,0.02889949,0.012882993,-0.0015097834,-0.004743367,-0.0025792562,-0.027230931,0.069434255,0.011930824,0.001857696,0.038428966,0.04785909,-0.03659748,0.026432984,0.07251711,0.038117185,-0.07920448,0.034557603,-0.048854627,-0.049160924,0.10513475,0.00079257484,0.023867587,0.005446734,-0.05039366,0.007548324,-0.07170976,-0.06524976,-0.03351043,0.06900087,-0.042571515,-0.08010021,0.06053348,-0.026690768,0.074450955,0.044586334,0.034054812,-0.035873,-0.04663122,-0.0025152857,0.07333767,0.0022030834,0.011543383,-0.01803685,-0.009551936,0.032815747,-0.09682699,-0.0021641937,-0.105326824,0.021145122,-0.07838068,0.069334485,0.030643081,0.02939038,-0.011837841,0.028842807,0.07392061,-0.021239921,-0.09590656,0.018439189,0.044150144,-0.011077294,0.04779447,-0.02954245,0.07064409,0.09881,0.045976955,0.0012540813,0.030495826,0.004638791,-0.03197672,-0.013726554,0.12683864,0.020182645,-0.03372287,0.08241193,0.012786349,0.031868298,0.024708059,0.039487686,0.09579219,-0.08310214,0.058547743,0.047942985,0.04941631,-0.012470829,0.026066259,-0.024912266,0.004563664,-0.062446255,-0.08219832,0.0531867,-3.329603e-33,-0.048947673,0.046568923,-0.015782822,-0.07333865,0.057107434,0.0049622254,-0.06939906,-0.002451691,-0.091407046,0.08400963,-0.02675969,0.006410314,-0.04375972,-0.025746992,0.003971563,-0.04968958,-0.030864263,-0.0111592235,0.0033927315,0.072448276,0.005222972,-0.02287489,-0.022162229,-0.04144859,0.043682482,-0.018481681,0.00025076375,-0.08558572,0.081773885,0.005212085,-0.062262055,0.04515388,-0.015390575,0.010715685,0.0019285434,0.016240794,-0.045238566,-0.018828409,0.0038233348,-0.024255538,0.035110824,0.01568083,-0.016635966,-0.019889241,-0.061305735,0.05288143,0.0053784656,0.06376807,0.011254088,0.03596204,-0.024697213,-0.053401396,-0.087524846,-0.0522904,-0.0032602735,-0.037692297,0.0684128,0.021170141,-0.032273732,-0.015486477,0.05895964,-0.021805175,-0.024540702,-0.096775904,-0.07993314,0.10705513,0.022771591,-0.007467257,0.023861935,0.06990526,-0.057975125,-0.022601876,0.032100786,-0.038773783,0.099996485,-0.03184695,0.031725165,-0.025259048,-0.020198327,0.015798276,0.0028912225,-0.033846013,0.014808402,-0.00095974235,0.10220539,0.010152678,0.004040491,-0.06282816,0.0030932673,-0.045623977,-0.07198883,0.04332839,-0.043410838,-0.0046322322,-0.013605797,1.7383728e-33,0.104696415,0.06413305,0.13288783,0.04893711,0.04879517,0.056461345,-0.0388344,0.11905011,0.10328419,0.13457467,-0.032613315,-0.034839883,-0.0036891883,0.004212186,-0.0020261921,-0.085817985,0.09679586,-0.03000349,0.03680785,-0.09158629,0.011511448,-0.0010400983,0.012798477,-0.009657747,-0.062253494,-0.014710373,-0.013645431,0.003078931,0.00013415318,0.0065151784,-0.059551932,0.024286753,-0.09525865,-0.09301485,-0.07277727,0.090956226,0.003992806,0.06296157,-0.05685795,-0.0074083786,-0.042492043,0.053619903,-0.0065480666,-0.0043836837,-0.024957716,-0.022781024,0.010815769,0.16140534,-0.009188308,0.06482748,0.033656575,-0.040372085,0.02023586,0.0046673026,-0.06918088,-0.0134145375,0.064922385,-0.036701735,-0.032030936,-0.016314957,-0.0863577,0.04548847,-0.049523722,0.009155875,0.05346663,-0.011109151,0.024974087,-0.04974489,-0.023186505,0.07005553,-0.11309967,0.043112863,-0.07930137,0.0378668,-0.06947346,0.04014298,0.022187857,0.05126804,0.02540219,0.041968994,0.008953024,0.008357614,0.0083938725,-0.05474715,0.041432805,0.07834539,-0.0480659,-0.013001808,-0.015680442,0.0536031,0.07525613,0.082819566,0.01107745,0.06805038,-0.092067346,-1.8104423e-08,0.005871966,0.098790534,-0.028422173,-0.07711274,0.020743405,-0.011350585,0.0956268,0.00023993994,-0.018373355,0.04394853,0.120569274,-0.044476695,-0.048203412,0.053648673,-0.097231716,-0.027987644,-0.034821905,-0.006975985,-0.030516144,0.02187657,-0.01941661,-0.02719235,0.035245534,0.0053676744,0.033420194,-0.065441586,0.057777587,0.14222835,0.010791332,-0.09334591,-0.0012522233,0.0961999,-0.009177319,0.022116587,0.018598352,-0.10889908,0.0068402267,0.062677145,0.0016741701,-0.014644309,-0.024839228,-0.021796478,-0.034257293,-0.01885761,0.016395237,-0.09359411,-9.8670134e-05,-0.024209315,-0.061455835,-0.01923853,-0.0086668115,-0.057117574,-0.029163467,0.045613542,0.08977257,0.060826555,-0.02298781,0.039168842,-0.07771373,-0.020436691,-0.034461264,-0.12449547,-0.028063681,0.02217644} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.977561+00 2026-01-30 02:01:09.619284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1513 google ChZDSUhNMG9nS0VJQ0FnSURVbGZPRFRBEAE 1 t 1516 Go Karts Mar Menor unknown Decent karts, minimal wait and friendly staff. Would def go again. decent karts, minimal wait and friendly staff. would def go again. 4 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {O1.02,J1.01} V+ I2 CR-N {} {"P1.01": "Decent karts, minimal wait and friendly staff. Would def go again."} {-0.016117312,-0.027671179,0.027704427,0.07441497,-0.053128507,0.014725689,-0.057324894,-0.046654467,-0.0105275605,0.047798205,0.005865498,0.004350541,-0.084722,0.030139212,0.05033616,-0.06852176,0.0900961,-0.084263295,0.035733443,-0.037356447,-0.09412091,-0.03332935,-0.043747846,-0.008350952,-0.04602919,-0.043790463,-0.024834713,0.08793514,0.026316294,-0.02725814,-0.122509226,0.043849677,0.0073264274,-0.012463779,-0.010091572,0.09890618,0.05684345,-0.06374411,-0.050916698,0.025384028,0.060490534,-0.017109033,-0.054656584,0.036777567,-0.013054542,0.0026204495,0.005327083,-0.0037955781,-0.013977163,0.03151079,0.11258555,-0.09859736,-0.017802645,-0.055893134,0.04547763,0.013779998,-0.055904992,0.027607404,0.070086084,0.023410896,0.032001723,0.013239355,-0.02635471,0.020312442,-0.010688158,-0.025391914,-0.0364543,0.041220415,0.016400537,0.05270065,0.054389685,0.0033008785,0.02428475,-0.0012955122,0.041333508,-0.020599362,-0.048358552,-0.08767952,-0.029493747,-0.010591044,0.015016998,0.0066071935,-0.009012168,0.027446596,-0.11489801,-0.092434965,0.09403649,-0.03077822,0.013743543,-0.03230731,0.08682119,0.09354205,0.01692594,-0.003592004,0.017756151,0.09244662,-0.021517094,0.031654928,-0.033907883,0.035957173,0.0555336,0.1078831,0.06996282,0.03194945,-0.06942936,0.004090386,0.008141067,0.024295768,-0.021805856,0.043254107,-0.031121809,0.076077886,-0.08384427,-0.012369901,-0.04985834,0.07517292,-0.05062976,0.020075975,-0.029579006,0.04033963,0.067250915,0.027904656,0.056780174,0.017001566,0.022436041,0.027382921,0.05044962,-2.9828665e-33,-0.090306655,0.037753724,-0.08344044,-0.029809715,0.07546157,-0.13237664,0.009145891,-0.10673644,-0.070562236,-0.009447995,-0.0001887272,0.040062252,-0.0053337095,-0.050208956,0.088751554,-0.018733324,0.026615104,-0.018214889,-0.039825935,-0.029077465,-0.0051253582,-0.081447855,0.0035146158,0.09122015,0.05990732,0.013034415,0.060331255,-0.029994844,0.06048635,-0.0025718887,-0.06310608,0.013176866,-0.027269362,0.02594895,-0.1002873,0.069831386,-0.015198469,-0.04527056,0.0025038265,-0.044206582,-0.029649284,-0.001116543,-0.00092019956,-0.026024377,0.0038139357,-0.015330004,0.06470445,0.02523154,-0.038083218,0.00577443,-0.040381692,0.044908777,-0.004662679,0.04605523,-0.043597657,-0.007300469,0.05225182,0.07152225,-0.072091945,-0.024989275,0.08763723,-0.02018482,0.021066071,0.016416652,-0.026307642,-0.07025256,-0.028830584,-0.04460135,0.047841065,-0.04093874,-0.031001892,-0.015421174,0.03951666,-0.010000244,0.072434776,0.07079737,-0.03743489,-0.012168959,-0.013184968,0.009010874,0.030841846,0.0028268083,-0.10029449,0.048690867,0.0757235,0.0050116363,0.038983125,-0.041162398,-0.034424637,0.05526876,-0.089892335,0.06983672,-0.023140889,0.065524444,0.017588958,2.2133058e-33,0.10909743,0.049545098,0.087743714,0.12576553,0.05289385,0.035617508,0.015175611,0.022022331,0.062767796,0.060533088,-0.014432,0.03041701,0.0156240305,0.004980678,-0.016773257,0.0035523323,0.06263982,-0.04138068,0.06674781,0.006550596,0.07612414,0.04528279,-0.040469516,0.009484763,0.0028128226,0.1099082,-0.06706697,-0.03544235,-0.1696082,0.019448303,0.00988294,-0.122791976,0.0009017328,0.015159738,0.045647223,0.019078702,0.035497494,0.07878078,-0.08442634,0.10824272,0.0701478,0.009038116,-0.026525531,0.003419494,-0.03009995,0.008761174,0.110840045,-0.0730864,0.02225741,-0.033648912,0.043718383,0.03420252,-0.05523048,-0.009905925,-0.0011254452,-0.047177184,0.00879313,-0.048351977,-0.053750947,-0.040085413,-0.017224405,-0.028273938,0.036162514,0.02523148,0.05037818,-0.04958358,-0.05975099,-0.032360572,-0.081361845,-0.040563103,-0.06723077,0.0734052,-0.003425376,0.014398926,-0.0032756913,-0.0064221406,0.011033201,-0.019316342,0.056440227,0.06792826,0.0033080825,0.0033130744,-0.021654373,-0.0011053506,0.07769062,0.072290294,-0.024324987,-0.02664465,0.092735596,-0.006637829,0.055127118,0.013208247,0.08588228,0.012632895,-0.027004195,-2.0860734e-08,0.02281446,0.012791588,-0.009321412,0.03793956,0.023964696,-0.06509274,-0.024459397,0.023346815,-0.023687346,0.094024956,-0.019217836,0.006202371,0.025275683,0.0021044347,0.0031431797,0.053344578,-0.091376044,0.046545397,-0.082083955,-0.027903808,0.013111014,0.08384612,-0.05945005,-0.0022287648,-0.06519072,-0.051128257,-0.006234766,-0.037181873,0.031972352,0.022033,-0.061750516,-0.014359064,-0.06447607,0.027897818,-0.039235845,-0.037028074,-0.1378998,0.034660872,-0.017039191,0.060903817,-0.013817441,-0.042761486,-0.079961725,0.037798718,-0.031814866,-0.031982597,-0.056417983,0.0008368008,-0.09431222,-0.11247009,-0.023465881,-0.023722332,-0.03256822,0.05029238,0.04452744,0.019677661,0.037405558,-0.03529717,-0.03354466,-0.010985342,-0.08946896,-0.12633136,-0.02591635,0.013441512} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.991578+00 2026-01-30 02:01:09.623623+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1516 google ChdDSUhNMG9nS0VJQ0FnSUN4X19EbnpBRRAB 1 t 1519 Go Karts Mar Menor unknown Nice place to take children big and small xx nice place to take children big and small xx 4 2024-01-31 01:52:39.833374+00 en v5.1 O4.04 {E1.04} V+ I2 CR-N {} {"O4.04": "Nice place to take children big and small xx"} {0.10262022,0.088124685,0.014310441,0.042724323,-0.039508335,-0.031115986,0.05969298,0.01690205,-0.030324671,0.049303938,0.080649085,0.021722877,0.028523922,0.042408783,-0.017890962,-0.0031128721,0.10645764,-0.066158175,0.03982748,-0.06599018,-0.022394557,0.042012766,0.034058865,0.022592206,-0.10769537,0.08496755,-0.062354285,0.051526554,0.048061296,0.015181659,-0.016406754,0.020603023,0.085840516,-0.006930004,0.0108150095,0.07900845,0.062302712,-0.060870793,-0.0033891934,-0.02006993,0.020224206,0.0012088595,0.018516313,-0.016735956,-0.061658856,-0.0274597,-0.015947929,-0.05440252,0.082164474,0.040018305,0.050240036,-0.031348202,-0.0015918605,0.047926575,-0.039216973,-0.0013866826,-0.07873223,-0.09378215,0.015604177,-0.049783677,0.034518916,0.09079855,-0.049545385,0.025915079,0.013283469,-0.00044889716,-0.03600394,0.03263207,0.032363895,-0.055108603,0.038279515,0.024109054,-0.008364521,0.06243367,-0.033151574,-0.041436248,-0.018688768,-0.0001967514,-0.02217871,-0.017081771,-0.060388796,-0.032210413,0.040518284,0.041653942,-0.0663505,-0.02193682,0.0019765073,-0.05879361,0.005842756,-0.014222503,0.00207362,0.061914742,-0.041417614,0.044630505,-0.018141871,-0.084051654,-0.031479087,-0.03661875,-0.0864496,0.023173435,0.099455774,0.109286465,0.08475393,0.10592396,0.015504837,-0.062029954,-0.00048609526,-0.014833556,0.00011308666,-0.026730143,-0.07969695,0.021588437,0.038162522,0.12068467,-0.0429431,-0.035744824,0.06963343,-0.02236319,0.008466109,-0.12176958,0.0009823535,0.024881171,-0.061054092,-0.026923275,0.018604513,-0.019550713,-0.053738356,-2.0033476e-33,-0.08607719,0.05673733,0.015431311,0.07069186,0.095730916,0.061457083,0.027904632,0.008069502,-0.038206566,0.04592683,0.028796488,-0.047390405,0.008485717,-0.0010045993,0.050143767,-0.029272214,-0.021008387,0.024718652,-0.118011996,0.025928993,-0.033652946,0.010997325,0.0090945,0.121153876,0.017558023,0.02616356,0.051587116,-0.011956526,0.013436867,0.029002286,-0.047438852,-0.047349658,-0.021977944,-0.030681321,-0.05657515,-0.012742189,0.02105829,-0.028989717,-0.043924544,0.07618331,0.0070952517,-0.028216355,0.012513558,0.059079394,0.025695618,0.08724309,0.03881615,0.0067163496,0.015709152,-0.034595344,-0.018733535,-0.01429284,-0.045360383,-0.05941331,0.011783426,0.039926726,0.014908194,0.052698206,-0.053061843,-0.025645869,0.06294394,-0.009949501,-0.0057195635,-0.04193556,0.007329475,-0.10883902,0.04017825,0.028721996,0.061910942,0.0028430093,-0.02134528,-0.003046377,0.10407366,0.034021884,0.027105944,-0.018494144,-0.070232406,0.06305822,-0.002131759,0.0006415802,0.065302156,-0.012383648,-0.010400264,0.038265083,0.02453377,-0.117256604,-0.021976339,-0.06794491,-0.06247905,-0.030077236,-0.110486634,0.01515995,0.015364521,0.023368023,-0.047704056,1.1857064e-33,0.033801995,-0.040375408,0.058770675,0.0037598086,-0.042355735,-0.03128582,0.013896766,0.04149056,0.045136563,0.106232174,-0.09157025,0.015526014,0.040862888,-0.08051377,0.03077907,-0.0022193633,0.1199266,-0.018503185,-0.053818103,-0.016693851,0.028967531,0.059272896,0.0063867075,0.040341366,-0.014832056,0.035364565,-0.052930944,0.011466904,-0.06252531,-0.020090882,-0.13425429,-0.027684497,-0.0055228327,0.0875772,0.0020948958,-0.05164637,-0.039911263,0.055434275,-0.10376979,0.03693541,0.032536298,-0.10965189,-0.01727855,0.120340966,0.021557458,-0.013435355,0.025802137,-0.014952706,0.041881993,0.0079457,-0.024634445,0.070666224,-0.030312685,-0.02197383,0.029421829,-0.0634999,-0.018025598,0.022744048,-0.0032227484,-0.020373048,-0.07670378,-0.013508126,-0.063282855,0.07844435,-0.03875291,-0.0181564,-0.07442069,-0.018149491,-0.094313055,0.042951602,-0.027550226,-0.04044826,0.041012958,-0.013014089,-0.09420309,-0.05073138,0.11881707,0.0407784,0.024387177,0.03455668,0.020159524,-0.036732726,-0.004133427,0.016831711,0.022836382,-0.006153646,0.046296,0.005469533,-0.05260454,-0.0018242366,-0.0408819,0.10286349,-0.084999435,-0.06126279,0.03235083,-1.7720394e-08,0.036379848,0.012851127,-0.024098206,0.06452737,-0.04740666,-0.1018737,-0.049059898,0.056898035,-0.024114098,0.11762179,-0.02371515,0.04265466,0.0036618416,0.040886637,-0.07926509,-0.031400234,-0.0012607045,-0.015430562,-0.03675925,0.023016922,-0.032834314,0.061699625,-0.008634918,0.086515725,-0.029296549,-0.10859218,0.0148584405,-0.033022743,-0.0053823744,-0.027479373,0.0643117,0.04087339,-0.06640616,0.02786418,-0.009962449,-0.0688524,-0.048992172,0.04921703,0.05579864,-0.06957792,-0.09311602,-0.097697884,-0.010774469,0.009920465,-0.008232028,0.0028971964,0.031203136,0.07695731,0.016593313,0.07329384,-0.067206986,-0.029067727,0.001945519,-0.027498566,0.04756005,0.040792506,-0.036715966,-0.027907804,-0.0012422684,0.16693227,0.025241164,0.050067376,-0.07480051,0.032227952} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.028083+00 2026-01-30 02:01:09.631671+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1616 google Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB 1 t 1619 Go Karts Mar Menor unknown Побывали всей семьей! Классная атмосфера, невероятные эмоции, хотим приехать снова! побывали всей семьей! классная атмосфера, невероятные эмоции, хотим приехать снова! 5 2025-08-03 00:52:39.833374+00 ru v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Классная атмосфера, невероятные эмоции", "R4.03": "хотим приехать снова"} {0.03263784,0.076310456,-0.012674193,-0.007301117,-0.062070515,0.025363808,0.096376784,0.012212507,-0.04747404,-0.05671687,0.008419079,0.046043903,0.044405818,0.05292384,-0.022587342,-0.028561883,-0.0491653,0.027819702,0.03642369,0.022008317,-0.020882023,-0.055086605,0.08156677,0.020736735,-0.040111933,0.01856789,-0.008826257,-0.03712603,0.021188864,-0.004383121,-0.010185107,0.011212772,0.09387546,0.007176103,-0.005053931,0.005242243,0.000601036,0.016401231,0.07678103,0.07950117,-0.06364078,-0.08899654,-0.08108152,0.05652979,-0.0154725015,0.06364178,-0.037912216,0.033104125,0.07210094,-0.004088383,-0.12529734,-0.012719282,0.025704596,0.027471403,0.037522838,-0.11780094,0.0024009896,-0.032389864,-0.090313256,-0.06572497,0.07226006,0.0021017108,-0.043811064,0.0016152915,-0.047196362,0.012498678,0.025022885,0.0357939,-0.0553797,0.08623742,0.08674976,0.026311163,-0.06323608,-0.009944202,-0.08611879,-0.0931497,-0.051521625,-0.060251758,0.00579784,0.038572967,0.075771175,0.01238475,-0.09767747,-0.032297228,-0.038859755,-0.0223733,0.012446172,-0.009761874,-0.0032486024,0.02639989,-0.0086829215,0.034399733,0.032284252,-0.049274836,-0.06223824,-0.04373165,0.009859296,-0.0058550155,0.059690278,-0.05884831,-0.039073557,0.020348862,0.04962034,0.0122304885,-0.14766173,-0.03595555,-0.057084337,-0.029777264,0.05545665,0.016213223,-0.037251,-0.0781468,0.0058516483,-0.07086247,0.00455461,0.07668564,0.015861997,0.008670362,-0.023508366,0.028790371,0.06606622,0.063865796,0.0034405452,0.0683345,-0.019830821,-0.039633095,0.03885904,9.154753e-33,-0.024769397,0.027564237,-0.056436773,0.09009715,-0.04912327,-0.023748958,-0.014411315,-0.061145876,-0.053581886,0.06698046,-0.04543841,0.064714774,-0.0041485457,-0.03974454,0.038272064,0.031124637,0.017960537,0.0006263922,0.047338977,0.107479006,0.05920843,0.0502725,-0.001016648,0.063464575,0.03189209,0.022969821,0.029057635,0.013152446,0.044173677,-0.011033574,0.0029381963,-0.019732421,-0.048681322,-0.051507547,-0.0030662892,-0.086171366,0.014861275,0.03268831,0.048827235,0.051726516,0.045676094,-0.0759395,0.0074122073,0.0016887836,0.08054803,0.049733784,0.008306209,0.027477307,0.068812735,-0.01735071,-0.054510266,-0.013000408,-0.06828511,0.1153793,0.075758696,0.01688296,-0.03700215,-0.0025784208,-0.055934794,-0.04729656,-0.020224871,-0.046175867,-0.015257869,-0.036179215,-0.006233122,-0.106771685,-0.01617505,0.0074488977,-0.0049210773,0.08871148,-0.04282583,0.037362028,-0.07096643,0.062213615,-0.057177957,0.011099194,-0.09016147,-0.025971299,-0.00032780998,0.051770613,-0.09069019,0.00039955275,0.037301794,-0.0073530483,0.08680838,0.0969582,0.017312815,-0.0314999,-0.05724494,0.03193129,-0.117915206,-0.031857718,0.06667797,0.0073680165,-0.021484766,-1.0889468e-32,0.017665753,-0.0794412,-0.03897546,0.04901805,-0.028573407,0.10185833,-0.048008952,0.08445568,-0.022888212,0.10091049,-0.0059453,-0.100158736,-0.005282748,0.03940292,-0.031792097,0.044694006,0.048895437,0.028572151,-0.1720065,-0.045801435,-0.051425893,-0.0044728783,-0.03979782,0.0108407065,0.010494704,0.029017376,0.13152984,-0.02689572,-0.060340185,0.080101706,-0.04406547,-0.013580873,-0.026866917,0.060671426,0.03929816,0.08663092,0.098688565,-0.047752418,-0.05888751,0.073182784,0.0033993835,0.06996629,0.108419515,0.026193764,-0.012833423,-0.08268084,-0.098427705,-0.033912577,-0.020536566,-0.03637775,0.034256727,0.020030808,-0.02385934,-0.09151228,0.01602754,-0.03003246,-0.02854927,0.003883957,0.041716963,-0.014529628,-0.0025540802,-0.019980233,0.07171234,-0.0037690634,-0.037250623,-0.019098055,-0.006080134,0.12270145,-0.0020721431,-0.0028533468,0.07203299,-0.031152707,-0.020542948,0.11037175,-0.02125087,0.04012963,-0.04694367,0.11076345,0.10427317,0.07098568,0.03269241,-0.036150098,-0.02977468,-0.03633757,0.00013038039,-0.02851565,0.010999461,-0.011398108,0.030037088,-0.06262454,-0.0055949474,0.031096134,0.02866468,-0.009003697,0.06621329,-4.4788205e-08,-0.021580372,-0.12091267,0.0042578783,-0.0470666,0.022120584,-0.07106465,-0.0089244675,-0.06258883,-0.10537146,-0.044003177,-0.021968389,-0.03695403,-0.07634594,0.06873038,-0.04194277,-0.025324604,0.01876039,0.04605843,0.020701664,-0.08145742,0.045162737,-0.029438509,-0.043834776,-0.040827133,-0.05958671,0.020533692,0.0034940916,-0.053783286,0.012934333,-0.052645057,-0.028062847,0.007831429,-0.061681714,-0.03269916,-0.029614436,0.017193364,0.0537927,0.020901537,-0.034941126,-0.008811648,0.005003182,-0.032668747,8.36453e-05,0.0016292373,-0.044128593,-0.03372065,-0.034993324,-0.023395786,0.022856401,-0.022215188,0.02609465,0.065136485,0.061644092,0.060576133,-0.066560715,0.079256915,0.041207146,0.0072638784,-0.05262476,0.006455798,-0.018470436,0.048075292,0.004828464,-0.00078384794} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:29.055857+00 2026-01-30 02:01:10.062173+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2101 google ChdDSUhNMG9nS0VJQ0FnSURnZ3ZXUGtRRRAB 1 t 2104 Go Karts Mar Menor unknown Mejor circuito de toda la zona. Buenos karts y buenos precios. Recomiendo 100% mejor circuito de toda la zona. buenos karts y buenos precios. recomiendo 100% 5 2018-02-01 01:52:39.833374+00 es v5.1 V1.01 {O2.05,V1.01} V+ I3 CR-B {} {"V1.01": "Mejor circuito de toda la zona. Buenos karts y buenos precios. Recomiendo 100%"} {-0.05161404,0.04346516,-0.020246705,-0.031251978,-0.071660005,-0.022683216,0.024427073,0.11050545,-0.018881418,0.04769922,0.06505275,-0.075098544,-0.0024709245,0.04046754,0.0071106413,0.03537293,-0.027314505,0.0023260622,-0.0034788488,-0.030311773,0.05068538,-0.045698576,-0.054430835,0.077234834,-0.029777316,-0.019508323,0.04332719,0.053062603,-0.030665148,-0.08375572,-0.116148315,0.07148557,0.11569333,-0.026508695,-0.047233857,-0.04891935,0.03843642,-0.08086189,0.013114801,0.018818114,-0.04885692,-0.03718031,-0.016894465,-0.016697032,0.056494974,-0.009818631,0.020562815,0.059742957,0.0030497028,-0.011507986,-0.008446564,-0.06861723,0.03363545,0.0049328734,0.012284933,0.0105122,-0.05154024,0.04124896,0.09134449,0.038269907,0.038657904,0.017589606,-0.09981794,0.038485486,-0.00908954,-0.0624552,-0.032099333,0.041093625,-0.10806473,0.036282558,0.14175528,-0.105328664,0.07764799,0.012946486,-0.016797405,0.039200906,0.049978018,0.007950724,-0.03621327,-0.025882257,0.049758825,-0.041696616,-0.031660665,-0.07259368,0.035842188,-0.00026796805,-0.038149316,-0.00922585,0.037386846,-0.04080362,-0.046669465,0.07232253,-0.06463484,-0.06423625,-0.0060950196,0.032907397,-0.008852188,-0.037214093,0.027528206,0.050143015,0.09219743,0.019520057,0.04928325,-0.024494054,-0.098751895,0.038128577,0.031062981,0.040793404,0.005729816,0.0759022,-0.07092659,-0.013028333,-0.09087183,-0.034861464,-0.123886384,-0.05351202,0.028120866,0.03981864,-0.03542777,-0.050580874,0.022901978,0.015408129,-0.0659447,-0.01724303,0.0033602738,-0.027013598,0.042255428,4.1445466e-33,-0.15887806,0.005281831,-0.06717621,0.037608575,0.018968191,-0.00036458008,-0.0473506,0.019179126,-0.008409549,-0.04753669,-0.049973033,0.057830676,-0.03302851,-0.033884622,0.08634747,-0.022838632,-0.028734079,-0.06861058,0.06581473,8.535115e-06,-0.036386058,-0.014184985,0.024202187,0.047391545,0.02223142,0.04492312,0.040368576,-0.10774507,-0.12980896,0.021432413,0.025235618,0.08871291,-0.0034470668,-0.054633133,-0.07397713,0.028152,0.040319387,0.0021655518,-0.024355786,-0.051240865,-0.082852334,-0.0015932245,-0.058184963,0.02224241,-0.03298156,0.007569705,0.026025848,0.03595667,0.1535273,0.029138591,-0.067622095,-0.051349808,-0.09130232,-0.025138497,0.013020296,0.023559045,-0.0670479,0.041259762,0.029035581,-0.028936485,-0.006731124,0.042292032,-0.034000657,-0.021149728,-0.07775217,0.05543733,0.04325459,-0.08453295,0.11339757,0.015798246,-0.08985348,-0.064797126,0.02437162,0.020757783,-0.026751634,0.032492667,-0.008470337,0.042302534,0.007160968,-0.009830996,-0.11946751,-0.014155031,0.0017978807,0.03351497,0.124760084,0.085091375,0.08250099,0.03113248,0.012357643,0.09642415,0.019147595,0.018565401,0.08657895,0.030939367,0.032269716,-5.326516e-33,0.0027054509,0.022415532,0.07877555,0.063351765,0.0028879903,0.008250548,-0.034160927,-0.07496118,0.012095394,0.0031693468,-0.054433245,-0.028177219,0.06832383,-0.03639068,-0.06608248,0.027388105,0.04935992,-0.026658038,-0.040899538,-0.042204462,0.0063183084,0.088773265,-8.004585e-05,-0.009082601,-0.07607578,-0.0385923,-0.04317074,0.048815437,-0.037629902,-0.020109864,-0.0156055745,-0.07509543,0.017269015,-0.0144130625,-0.055833746,0.028896835,0.05722431,0.11106714,0.015881106,0.041939672,0.04608713,0.022114126,-0.048892792,0.024684627,-0.06547444,-0.01663794,0.049401052,-0.10595105,-0.025872527,-0.059232913,0.13397358,0.0050467956,-0.051428907,-0.03666964,0.04412014,0.03090083,0.0006335473,-0.06906714,-0.066906,-0.021327628,0.070151314,-0.0086068995,0.0046323077,-6.24566e-05,0.06118608,-0.0064321803,0.04418444,0.027529085,0.052677196,0.055352554,0.07874217,0.07599211,0.005277747,-0.0011296415,-0.06348293,-0.025255015,-0.08542966,-0.0041761794,0.056803048,0.011758942,-0.016650807,-0.016961033,-0.00556785,0.02303196,-0.005490748,-0.055920348,0.0152545525,0.0006701262,0.084900886,0.004786908,0.004797429,0.05559631,0.022577722,-0.033806045,-0.024245553,-3.011689e-08,0.018699128,-0.06637516,-0.056141146,0.05323441,0.04148537,-0.05775753,-0.0475062,0.008662405,-0.022802714,0.058602985,0.0076871216,-0.0027062302,-0.0091852,0.0097670015,-0.044235617,0.045895845,0.0037811857,0.17354897,-0.005278497,0.0060514035,0.06497261,0.041657016,-0.051141698,0.012122083,0.023854721,-0.02608007,-0.04530379,0.0561535,-0.037439603,-0.027139636,-0.060086288,-0.018621473,0.015586868,-0.050329633,-0.023068642,-0.02199718,0.0011200097,-0.010011353,-0.011300618,-0.07068685,0.055456918,-0.04731188,-0.060553215,0.040980536,-0.036372826,-0.099402405,-0.045291506,-0.004089383,0.015488477,0.047399763,-0.036632642,0.0014165256,0.066609465,0.048374455,0.056051873,-0.009150566,0.035334617,-0.011536714,-0.0847788,0.018379819,0.0345529,0.03886181,0.066148356,-0.056134924} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.846544+00 2026-01-30 02:01:11.968947+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1613 google Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB 1 t 1616 Go Karts Mar Menor unknown Fue mi primera vez en esta pista de karts con una moto Supermoto. La pista está en buenas condiciones y el personal es amable y atento. Las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble. fue mi primera vez en esta pista de karts con una moto supermoto. la pista está en buenas condiciones y el personal es amable y atento. las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble. 5 2026-01-23 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"E1.04": "Las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble", "O1.02": "La pista está en buenas condiciones", "P1.01": "el personal es amable y atento"} {-0.05271186,0.004559008,-0.024987364,-0.045271892,-0.10895761,0.0010823164,0.045753684,0.04846865,-0.03468327,0.02657825,0.07116184,0.04905874,0.031882074,0.020933881,0.03874729,-0.02038057,0.03575759,-0.019649884,0.0323805,0.031897873,0.064301334,-0.08917537,-0.05196013,0.082216494,-0.1322335,0.031626046,-0.012002164,0.04982504,-0.07147004,-0.09106496,-0.08436679,0.055569127,0.018221902,-0.02147612,-0.039350297,-0.020308577,0.010223916,-0.04191356,-0.06997365,-0.023231685,-0.02091756,-0.014904493,0.0027708793,-0.040208567,0.08945793,0.018635463,-0.070403896,0.015765775,-0.008458998,-0.024820847,-0.07286329,-0.053284977,0.03856724,-0.012972152,0.022965258,-0.027679283,-0.080453806,0.037937738,0.106669664,0.058206573,0.07032018,0.057762776,-0.04156331,0.013811247,0.04080323,-0.09405348,-0.05740248,0.00980596,-0.07203368,0.024993654,0.121259086,-0.09963963,-0.0006046533,-0.018209944,-0.015772557,0.030997049,0.018662093,-0.020893207,-0.111096725,0.021655232,0.015503513,-0.043205634,-0.020807633,-0.034333576,-0.0050684847,-0.024776708,-0.005190812,0.009593731,0.057318214,0.012846606,-0.02238159,0.07153026,-0.060412057,-0.042431742,-0.00081405963,-0.020248892,-0.006097915,-0.05687878,0.017405955,0.011586917,0.09577836,-0.04754087,0.04668915,0.005120655,-0.04893659,-0.02985336,0.050622243,0.019583732,-0.016004305,0.06537722,-0.07512619,-0.0145114185,-0.01731411,-0.06344587,-0.11146358,0.023490736,-0.044940792,-0.0036704147,0.003035213,-0.04016423,-0.00060567004,0.019318985,0.011199121,0.014509365,0.012652837,-0.02325039,0.0051630796,7.548505e-33,-0.097893365,0.014092242,-0.0044001406,-0.007643226,-0.009623509,-0.022542663,0.021759493,-0.12692101,-0.0576469,-0.017295491,0.002622921,0.10722103,-0.052057493,-0.01986815,0.10493901,-0.020383634,-0.0022608708,-0.0766184,0.017703762,-0.034652095,-0.0044932715,0.0055759214,-0.029424949,0.03658679,0.012615943,0.023849005,0.0656506,-0.035579506,-0.12246036,0.05570965,-0.02162896,0.018446257,-0.016476916,0.03603552,-0.04890512,-0.051171627,-0.040254075,-0.0014716318,-0.1000511,-0.0042622276,-0.02428306,-0.09932662,-0.044047154,0.026060399,-0.0975281,0.021407833,0.031810913,0.04830114,0.06475607,-0.005213324,-0.074649766,-0.050513443,-0.080103144,0.024104046,-0.049430214,0.03381298,-0.029327279,-0.02297793,-0.013779441,-0.072672166,-0.016364481,-0.011019412,0.050876845,-0.024681795,-0.088820435,-0.063870884,0.015314101,0.012357591,0.12771985,0.084816866,-0.017531808,-0.04303477,0.03658152,0.036320515,0.07912971,-0.01733309,-0.003941829,0.050470132,-0.09228185,0.1287256,-0.0039560734,-0.007265343,0.04111286,0.09781401,0.089843795,0.053520262,0.05854723,0.016380481,0.006336839,0.09916381,-0.052307874,0.027606618,0.019212656,-0.004929177,0.029503325,-9.9138585e-33,0.03442727,-0.000118721546,0.13261135,0.033121947,-0.008710092,-0.024673594,-0.020888088,-0.08933508,-0.03380007,-0.023843756,-0.11034527,-0.041177984,0.10230591,-0.009698159,0.00051961065,0.077576526,0.007365601,-0.09597123,0.03067128,-0.0022761289,-0.04331737,0.0078347325,0.008969223,0.022396952,-0.022750475,-0.06300543,-0.031622436,0.09254378,-0.06548886,0.0059433766,-0.03165313,-0.07313776,-0.006891417,0.0591191,-0.06238841,0.045866873,0.066717155,0.06299539,-0.028828122,0.04040087,-0.0016464449,0.0031064546,-0.0032796743,0.053619698,0.03015666,-0.0016695452,0.10276959,-0.1143181,0.008628569,-0.04065821,0.0986031,0.016285684,-0.010442908,0.010588534,0.05571827,-0.04018515,-0.003748451,-0.016910642,-0.08254504,-0.008285608,0.11252613,-0.07138294,-0.04120087,-0.03764791,0.068205215,-0.046938166,0.02747316,-0.05908362,-0.019099172,-0.0072394684,-0.009325705,0.009442717,-0.0040029953,0.0401464,-0.014415252,-0.01811133,-0.04737187,0.0955691,0.020242853,-0.060631752,0.03950544,0.0046713566,0.033241984,-0.02615236,0.044349056,0.029529039,-0.07467081,0.054687705,0.04417916,0.021248015,-0.004032954,0.10101665,-0.011194643,-0.022218646,-0.057801425,-4.4941277e-08,0.046949554,-0.013580089,-0.032682765,0.036204003,0.0065237074,-0.048836,-0.04184502,0.013745127,0.01458851,0.017727409,-0.044652343,0.00074155594,0.041807126,0.041763574,-0.042175516,0.06948341,0.06568406,0.14781289,0.030055078,0.013459884,0.014153739,-0.027007654,-0.0059405454,-0.0032480233,-0.07692695,0.016529115,-0.04149499,-0.021982517,0.023341179,-0.00046422938,-0.050667953,-0.018455405,0.029376045,-0.05806138,-0.04189519,-0.035689633,-0.050646037,0.052547093,-0.00083598273,-0.047873534,0.07362141,0.024601065,-0.09079277,0.043232355,-0.09133642,-0.016761784,-0.09287169,-0.079631224,0.013624708,0.022360722,-0.040045615,-0.0013688734,0.077677116,0.022308778,0.10232291,0.04019202,0.09303695,0.0019536566,-0.00073566136,-0.012601509,-0.0151098,0.06780166,-0.00638727,-0.04179861} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:04.1555+00 2026-01-30 02:01:10.051452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1615 google Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB 1 t 1618 Go Karts Mar Menor unknown Trato excelente. Circuito muy grande y divertido. Lo pasamos genial trato excelente. circuito muy grande y divertido. lo pasamos genial 5 2025-09-02 00:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"O1.02": "Circuito muy grande y divertido. Lo pasamos genial", "P1.01": "Trato excelente."} {-0.0076663014,0.052940134,0.0228689,-0.028328208,-0.100874014,0.0069923582,0.040990517,0.102817655,-0.0039340477,-0.001272363,0.11161863,-0.050032135,-0.06229166,-0.01627434,-0.009329966,0.04567335,-0.015121645,0.06854809,0.028449768,0.009926467,0.0851737,-0.017597754,-0.034543574,0.09523555,-0.08001976,0.06594165,0.031837996,0.035819363,-0.022861756,-0.08814012,-0.055399846,0.17203154,0.05430275,0.002185752,-0.013034695,-0.02062635,0.0031772456,0.017141389,0.08053422,0.06784555,-0.049199324,-0.041208703,0.074590236,-0.04350937,0.044332366,-0.03948664,-0.024795018,0.047004316,0.017435484,-0.027436627,-0.04246509,-0.02995742,0.06893543,0.06541517,-0.04782746,-0.012246526,0.04234328,0.0025651166,0.046294667,0.062296506,-0.026526542,0.011592423,-0.036616992,0.02847272,-0.012567041,-0.0019237365,0.037251662,-0.002684902,-0.07776794,0.011871815,0.07026696,-0.03616859,-0.012394963,-0.06010463,-0.057562325,0.04169118,0.020920888,0.037947156,-0.06939686,-0.032627147,0.0075714355,-0.018324222,1.5075674e-05,-0.07788437,0.05320444,0.025875071,-0.04893781,0.028186217,-0.01958514,-0.03742926,-0.04982701,0.019569222,0.013969951,0.0049635964,-0.00084519293,0.014092286,-0.026328327,-0.12679623,-0.0060708565,0.025734926,0.079198085,0.06707142,0.055824634,0.024632923,-0.02224234,0.03754278,0.045714486,0.014597231,0.00029505903,-0.041598514,-0.009741014,0.028946687,-0.056195207,-0.021091683,-0.023640709,-0.028240701,0.018635493,-0.016325612,0.027290117,-0.047510237,0.031446822,0.011658592,-0.08259081,0.0039172433,0.0017018506,-0.01657928,0.08823216,4.43272e-33,-0.060801804,-0.028171213,-0.045138393,0.045851704,0.01790542,0.025253018,-0.02223516,-0.021328421,-0.028644547,-0.015241516,-0.06555808,0.04060377,0.023586469,0.033860322,0.011553573,-0.04959296,-0.024927542,0.012652082,0.09017136,0.009872881,-0.042182103,-0.021693178,-0.022078795,0.03465624,-0.042245273,0.11382948,-0.042137142,-0.084729336,-0.06892413,0.055968527,0.008608125,0.061796106,-0.0046633696,0.010257803,-0.07288474,0.011865132,-0.0013689988,-0.0055674114,0.049078073,0.014626563,-0.020755976,0.04381023,-0.03495981,0.051951192,0.05685764,-0.045954257,0.04153565,0.025021678,0.15287237,0.060756646,-0.05969921,-0.0834937,-0.054061133,-0.066782884,0.047760706,0.034712963,-0.073646195,0.14186057,0.0030501778,-0.0023082616,0.021228239,0.074221164,-0.06791866,-0.03778954,-0.07303972,0.06938328,0.052160084,0.001663717,0.08594463,-0.01350878,-0.10064442,-0.08965295,-0.06490445,0.072244085,0.0047649103,-0.04240943,-0.00059951347,0.015564272,0.028122196,-0.00034119637,-0.07155117,0.020332694,0.032401558,0.0051757023,0.095289536,0.08596505,0.050628692,0.06533486,-0.026451714,0.06761633,-0.0116229765,0.062266666,0.049118564,0.012856831,0.065193795,-4.6193416e-33,-0.011989553,-0.0019676376,-0.020696675,0.038384948,-0.01828785,-0.05343367,-0.058364265,-0.061903425,-0.051260598,-0.0017026968,-0.02580793,-0.051413897,0.05634061,-0.0817791,-0.082512654,-0.0048839026,0.026633285,-0.046585266,-0.07063189,-0.029660456,-0.027956812,0.05762611,0.037015807,-0.04636316,-0.06507108,0.016241368,0.00015387019,0.00040473728,0.002726329,0.042049088,-0.010426585,0.06927847,-0.04533656,0.04488207,0.0035452615,0.021346603,-0.02559895,0.06797339,-0.018730253,0.030994458,-0.09615994,0.076652385,0.028039122,0.057812326,-0.034159206,0.074614845,0.015718108,-0.08046127,-0.078335896,-0.012828862,-0.020296995,0.004951262,0.0104878405,-0.076767094,-0.023137739,-0.07079996,0.0056612254,-0.10138964,-0.13165356,-0.040460754,0.08160922,-0.00032050977,-0.04265385,-0.04390941,0.081924714,0.05302441,-0.029857207,0.021085408,0.066894054,0.068752065,0.10024749,0.0017544939,-0.008283297,-0.059609435,-0.029711194,-0.0067232153,-0.16276592,0.01348704,0.0010565646,-0.013270118,-0.0042005563,0.030020103,-0.0075087324,-0.06843369,-0.03148377,-0.12626079,-0.040462043,0.004280569,-0.04430268,0.035673127,-0.0014236415,-0.03209358,-0.070069045,-0.027670395,0.024162367,-2.6859132e-08,0.030941466,0.008087089,-0.008220819,-0.007554042,0.053957622,-0.05955469,-0.08156475,0.027907036,0.028051926,0.04568573,-0.04161947,0.015541987,0.06995132,0.09567908,0.018030783,0.02475108,0.06976337,0.04855631,-0.020976186,0.017616538,0.13592882,-0.045204245,-0.0019303248,-0.011532303,0.046665635,0.048755422,-0.018107194,0.020760676,-0.042591527,-0.04136649,0.023791587,-0.04295841,-0.02200724,-0.041358124,0.020266268,0.07791621,-0.015463544,-0.03134126,0.024309138,-0.058260847,0.011004861,-0.088293485,-0.022489714,0.0039424584,-0.018286457,-0.09450639,0.033297252,0.05334046,-0.007368366,0.05579147,-0.07373139,-0.067166656,0.041058727,0.048663627,0.05210448,0.0048857117,0.04507706,-0.0092306975,-0.040966116,-0.036279984,0.000666748,0.13016443,0.009963489,-0.12136901} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:22.608301+00 2026-01-30 02:01:10.059797+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1419 google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB 1 t 1422 Go Karts Mar Menor unknown Great GoKart racing track next to Murcia airport, San Javier. Decent sized track, well laid out and a challenge for novices and experienced 'GoKarters'. They have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young child passenger) the races are segregated as much as possible so the younger, novice riders in 100cc karts and 2 person karts race together. I have tried 200 and 300cc karts and both are great fun. The race marshalls are very quick to deal with any spin offs or breakdowns. The track is about 1km long and a decent time for a 200/300cc kart is around 1 minute per lap so average 60km/hr. Very fast when you are only a few centimetres off the ground ! There is a cafe / bar which serves soft drinks, coffee, wine and beer along with snacks. The staff are friendly and they have a lovely old dog who plods around the bar area. Plenty of free parking next to the track. Enjoy ! great gokart racing track next to murcia airport, san javier. decent sized track, well laid out and a challenge for novices and experienced 'gokarters'. they have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young child passenger) the races are segregated as much as possible so the younger, novice riders in 100cc karts and 2 person karts race together. i have tried 200 and 300cc karts and both are great fun. the race marshalls are very quick to deal with any spin offs or breakdowns. the track is about 1km long and a decent time for a 200/300cc kart is around 1 minute per lap so average 60km/hr. very fast when you are only a few centimetres off the ground ! there is a cafe / bar which serves soft drinks, coffee, wine and beer along with snacks. the staff are friendly and they have a lovely old dog who plods around the bar area. plenty of free parking next to the track. enjoy ! 5 2018-02-01 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"A4.02": "Plenty of free parking next to the track.", "O1.02": "Great GoKart racing track next to Murcia airport, San Javier.", "O2.02": "Decent sized track, well laid out and a challenge for novices and experienced 'GoKarters'.", "O3.02": "They have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young chil", "P1.01": "The staff are friendly and they have a lovely old dog who plods around the bar area.", "P2.02": "The race marshalls are very quick to deal with any spin offs or breakdowns."} {0.09812288,-0.022168044,-0.0028403155,0.08761806,-0.044024006,0.031211477,-0.0764668,0.022760091,-0.020387033,-0.016741121,0.013181339,-0.092901066,-0.06434288,0.064545795,0.061259106,-0.026653087,0.12376103,-0.06426805,0.04300907,-0.034842122,-0.05243346,-0.03846632,0.049941435,0.0153503185,-0.07941868,0.029414758,-0.0057980902,0.018700222,-0.019723952,-0.0014791811,-0.058428776,0.008591146,0.041174777,0.006766219,-0.075046755,0.0029270605,0.020589864,0.0029176865,0.023267075,-0.0063994518,-0.007818478,0.05283508,0.0306172,0.075594105,0.030848142,0.043971233,-0.04766988,-0.023103733,0.033730265,-0.006648046,0.012619411,-0.036782824,0.062067255,-0.020172194,-0.00073218613,-0.029162776,-0.09592399,-0.0220766,0.09748002,0.01425485,0.04602343,-0.00033617462,-0.019296704,-0.0055010477,-0.05810886,-0.098768555,-0.06410271,0.07702001,0.005375009,0.0065962095,0.0029847107,0.02163351,0.008147207,0.009506996,0.0082814405,0.041119598,-0.025683155,0.062074054,-0.08104021,0.0438065,0.03006351,-0.03213106,0.0005467876,-0.00096972473,-0.0077815615,-0.061333336,0.032263074,0.040017016,0.0115697775,-0.023025777,0.027039554,0.06587275,-0.011013271,-0.099332154,0.02699829,0.036719155,-0.03713369,0.0032645434,0.035556074,-0.031518362,0.021866113,0.038194533,0.038702376,0.02472787,0.0041244747,0.019493937,-0.010096779,0.06983105,0.084202416,0.056669522,0.043865934,0.024896257,-0.018134106,-0.017027672,-0.049604952,0.06929961,-0.003879273,0.03683468,0.007599922,0.09252338,-0.052596785,-0.014669694,-0.019693816,0.009210566,0.07187031,-0.04495697,0.017320385,5.4457105e-33,-0.072023235,-0.0035866627,-0.02758993,-0.016611492,0.019125963,-0.09845151,-0.028170327,-0.12991674,-0.057487126,0.051614344,-0.0036161589,-0.030067064,-0.0044849496,0.0011410188,0.045336075,-0.04894581,-0.03387774,-0.076235905,-0.03695801,-0.009538075,0.027340207,-0.047676224,0.006447499,-0.011290549,0.13021664,0.011312205,0.12341647,-0.092628114,0.06842162,0.0181497,-0.10352854,-0.049480733,-0.09562544,0.007393815,-0.085496746,0.006365585,-0.0390251,-0.029528728,-0.068216965,0.03419395,-0.017154163,-0.04104007,-0.042594858,0.0049094222,-0.045013417,0.047971502,0.04530958,0.06310255,-0.04829953,0.0862619,-0.15026928,-0.022890456,-0.041772243,0.05920728,-0.05256596,0.013134444,0.08722009,0.014340484,-0.041290034,-0.0032528532,0.035631385,0.03256683,-0.03119886,-0.035846017,-0.037678745,-0.0076899226,-0.022438865,-0.044400834,0.036754843,0.025545735,0.029589579,0.00041331683,0.037084457,-0.047344703,0.050703987,-0.009908341,-0.023209963,0.050399195,-0.02741747,0.06336247,-0.035852592,0.07782498,-0.0073300507,0.009141829,0.06996737,-0.03207182,-0.03652191,-0.025747506,-0.09343229,-0.0073094424,-0.009347984,0.055002857,0.008943561,0.08158332,-0.0015690568,-4.4317246e-33,0.11841771,-0.020269146,0.15101463,0.06072499,0.026435895,0.008715425,0.01032316,-0.0043599633,-0.01649288,-0.0043830522,-0.14424384,-0.023127655,0.050888926,0.027829928,-0.0092000915,-0.01348143,0.09701704,0.06562794,-0.0124984,-0.09943207,0.03144049,0.036497407,0.030404361,-0.09448994,0.06360277,0.072474696,-0.004616986,0.0127411485,-0.110814914,-0.012259748,-0.105713435,-0.054124877,0.023449494,-0.08006051,-0.034209352,-0.00024543694,0.004516584,0.11258566,-0.06311036,0.056792744,0.073585294,0.0070584225,-0.021480197,0.018879604,-0.011092424,0.03917938,-0.002932556,-0.041510615,0.021800585,-0.060713757,0.05356487,-0.04204277,-0.090404265,0.010770677,0.02914723,-0.00012974764,0.028484838,-0.0043943007,-0.12773038,-0.06029657,-0.021544153,0.018742787,-0.0135048,0.13716738,0.028705759,-0.035072383,0.018902358,-0.048056986,-0.017420258,-0.00966715,-0.13612017,0.012887302,-0.05237252,0.048088208,-0.04035089,0.02940924,0.04337306,0.049787953,0.10607808,0.05153139,0.029240273,0.034591045,0.017590037,0.013080398,0.09396705,0.037984796,-0.03172634,-0.055727642,0.022789802,0.048923858,0.089150034,0.09812142,0.015275645,0.019645248,-0.008730259,-4.533085e-08,-0.027055804,0.03610916,-0.09880006,0.038711645,0.02978233,-0.02774491,-0.016072983,0.022768285,-0.070774645,0.053595226,0.007897743,-0.028860044,-0.03685367,0.05755517,0.022780653,-0.034255467,-0.021983938,0.057848204,-0.00395467,0.039659616,-0.013616627,0.00082746265,-0.010858799,0.056364745,-0.03569726,-0.023805484,0.00069200736,0.027256643,0.058399435,-0.061486732,-0.107188344,0.033931803,-0.08496875,0.036760792,0.0058345716,-0.09968214,-0.060253676,0.042095922,-0.009557915,0.08927303,-0.03589397,-0.030234272,-0.1068219,-0.0142082535,0.0009325893,0.02669214,-0.099269755,-0.015245721,-0.010865329,0.0031787602,-0.009913654,0.012170488,0.006976995,0.020058649,0.077192925,0.07351089,-0.018021628,-0.044116933,-0.0321292,0.0491144,0.00046948713,-0.08528606,-0.06325125,0.027200207} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:06.935846+00 2026-01-30 02:01:09.297697+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1621 google Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB 1 t 1624 Go Karts Mar Menor unknown Tres belle piste de 1100m. Karting tres performants et très bien entretenus. Une très belle ambiance avec des professionnels très compétents tres belle piste de 1100m. karting tres performants et très bien entretenus. une très belle ambiance avec des professionnels très compétents 5 2025-10-02 00:52:39.833374+00 fr v5.1 O2.03 {O2.04} V+ I3 CR-N {} {"E1.04": "Une très belle ambiance", "O1.02": "Karting tres performants et très bien entretenus.", "O2.03": "Tres belle piste de 1100m.", "P2.01": "avec des professionnels très compétents"} {-0.022498844,0.019667914,-0.00029059817,0.002600314,-0.16871871,0.10201985,-0.0062696016,0.09747874,0.0141675165,0.002787222,-0.02603418,-0.002031878,-0.0064993487,-0.025650034,-0.10281798,-0.06421766,0.026232906,0.03692483,0.010720613,0.0713151,-0.026510367,-0.07506335,0.032525416,0.080410495,-0.10337431,-0.038457744,-0.06220497,-0.030430201,0.064757265,-0.0423221,0.0057611098,0.012564505,-0.00017890942,0.032268185,0.078059435,-0.0034396022,0.02963556,-0.03745957,0.0072259125,0.021785978,-0.037490845,-0.05424737,-0.07736251,-0.03561214,0.07582069,0.017974231,0.010598401,0.009794959,-0.07702615,0.013830531,-0.027270945,-0.032464013,0.06768365,-0.03258345,-0.038646568,-0.04871963,0.019467007,-0.0032048717,0.047853224,0.03866419,-0.009798168,0.0421937,-0.01715047,0.054996908,-0.10850897,-0.08922164,-0.03886814,-0.0472133,-0.0065280045,0.042143453,0.121461086,-0.045026768,-0.07177459,0.01209961,0.06897218,0.038791362,-0.05491378,0.014045807,-0.075216584,-0.12569416,0.078096874,-0.083659984,-0.01339414,-0.047557496,0.07244727,-0.063592665,0.024103984,0.030905902,0.05656763,-0.047920473,-0.03714028,0.058575433,-0.11423836,-0.005675966,-0.017635398,0.0047683804,-0.02275688,0.0021438869,-0.0076693734,0.009567047,0.004767755,0.012983776,-0.028610473,0.04371583,-0.076233625,0.01662692,0.024396745,0.0068088,0.003027222,-0.006621964,0.014365264,-0.04970749,-0.06693257,-0.06737447,0.04641266,0.06543377,-0.04895561,-0.061233707,0.016588323,-0.012771899,0.055798206,-0.0070718676,-0.0025104962,-0.044272747,-0.046658833,0.019880624,0.09424582,6.169221e-33,-0.027020378,0.03335827,0.007441522,-0.0076443865,-0.0056054937,-0.040210165,-0.06276764,-0.04181444,0.015207593,0.0017649415,0.016374465,0.07289674,-0.013254703,-0.06886864,0.04735156,0.03752322,0.054480113,-0.04729149,0.0810323,-0.008796888,-0.049023237,-0.018297467,0.0145464465,0.11300139,-0.00023997726,-0.0034975822,0.0003680377,-0.10817079,-0.07999751,0.025836118,0.047140755,-0.015501427,-0.01075141,0.010756506,-0.014143314,-0.001878864,0.034345064,0.026269875,0.09931787,0.073609985,-0.0605037,-0.09654899,0.051092524,-0.023441007,-0.036892172,0.048381355,0.016146248,0.007133934,0.0012674485,0.0056038615,-0.05616082,7.198925e-05,0.018217668,0.024419643,0.043496538,0.027208187,-0.032814182,0.020266604,-0.061239395,-0.00034789753,0.058245752,0.042326976,-0.06932418,0.0059858654,-0.08465943,-0.09995286,0.020364074,0.035465557,0.080239154,0.032524284,-0.14141658,0.023960069,0.044910416,-0.057255536,0.044958882,-0.0126701025,-0.037847623,0.08095687,-0.08480256,0.05202609,-0.049606174,0.010669142,-0.02948471,-0.013792568,0.07784376,-0.011679171,0.036640573,0.0048406324,0.056076474,0.05550797,-0.042712778,0.014747834,0.03991581,0.07829009,-0.018165296,-8.230574e-33,0.013341652,0.050363284,0.0031613642,0.13411105,0.027917186,0.041013952,0.03458085,0.0037314573,-0.035883293,-0.0047353925,-0.05696023,-0.09508688,0.04261789,-0.07527082,-0.06276142,0.016278662,-0.044119097,-0.028010083,-0.005403218,-0.017859647,-0.024963306,-0.023631463,-0.025806796,-0.024310872,-0.053501047,0.031068979,0.02394402,-0.018945098,-0.06590756,0.01594588,0.031434502,0.020827321,0.0049782055,0.028801965,-0.039865352,0.08115482,0.1124862,0.10883586,-0.016780278,0.096256934,0.010785876,0.036381803,0.016991017,-0.022069184,0.027742442,-0.04853436,0.011569619,-0.095240116,-0.024974378,-0.020825231,0.11198821,-0.021398637,0.0019906021,0.0029497717,0.03734449,-0.02195157,-0.0022607364,-0.093494475,-0.08198967,0.0041521234,0.10367748,0.08588231,-0.009252918,0.032343395,0.04184065,-0.0026739873,-0.08698398,0.010338203,-0.021458289,0.012832551,-0.045185484,0.038135704,0.03168621,0.032730788,-0.08932272,0.030108146,-0.031201674,-0.0278978,0.026904592,0.038909853,-0.053956315,-0.03464882,-0.039438985,-0.020158233,-0.020012783,0.039041296,-0.015357407,-0.0036221922,0.0053648395,-0.07426847,0.04909816,0.003099395,0.01622113,-0.08632256,0.023390649,-3.442847e-08,-0.0120897405,0.010212845,-0.07887373,0.011491409,0.067894705,-0.06362384,-0.01615247,-0.015556682,-0.030429266,0.04233608,-0.02128834,-0.075158395,0.052613936,-0.0037219191,0.015076832,0.016467536,0.035001244,0.14125495,-0.018057784,0.006117764,0.048193723,-0.021610256,-0.069349706,-0.08773469,-0.08220556,-0.056568,-0.06976786,-0.066516444,-0.09855499,-0.054810133,-0.0016348818,0.045660835,-0.0265544,-0.034047455,0.022423476,-0.048033487,-0.04897536,0.050014764,-0.041164316,0.04731983,0.006693648,0.090063855,0.0018683295,-0.03386042,0.050856538,-0.09262332,0.032231905,-0.010986873,0.044993628,0.16006485,-0.060357127,0.020759625,0.05826927,0.0025366987,0.020158721,0.05373343,0.01139557,-0.018202314,-0.120231494,-0.010639745,-0.023441842,0.024886785,0.08594219,-0.016674358} 0.825 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:16.940685+00 2026-01-30 02:01:10.079322+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1622 google ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB 1 t 1625 Go Karts Mar Menor unknown Hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos sin duda. Ahora mi hijo va aquí y le encanta. Es un sitio muy buena y la atención siempre es muy agradable! Nos encanta ir ahí y seguiremos durante muchos años mas 🤩 hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos sin duda. ahora mi hijo va aquí y le encanta. es un sitio muy buena y la atención siempre es muy agradable! nos encanta ir ahí y seguiremos durante muchos años mas 🤩 5 2025-01-30 01:52:39.833374+00 es v5.1 R4.03 {R2.01} V+ I3 CR-N {} {"P1.01": "Es un sitio muy buena y la atención siempre es muy agradable!", "R4.03": "Hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos ", "V4.03": "Nos encanta ir ahí y seguiremos durante muchos años mas 🤩"} {-0.030876473,0.06195019,0.03689955,-0.035193086,-0.11473164,0.0011958185,0.12841001,-0.013088626,0.015128963,0.056665093,0.056379307,0.019889357,0.0741151,-0.042964604,-0.016592413,0.043262023,0.019746821,0.06542461,-0.002965806,0.028238306,0.032218356,0.0045011407,-0.11234965,0.12962525,-0.026547363,-0.016965508,-0.026271882,0.040874887,-0.056974508,-0.13420355,-0.03606358,0.07192197,0.060996074,0.023356333,0.016815128,0.022594685,0.03646099,-0.048446048,-0.06404674,-0.005449443,-0.05480369,0.04397988,0.010755464,-0.018549575,-0.024171319,-0.07973711,0.029626453,-0.04979296,0.083313376,-0.059948668,-0.036974434,0.04332377,-0.027997319,-0.0031754964,-0.060373478,-0.03747708,-0.009930266,-0.044541948,0.03540076,0.054395407,-0.026375726,0.03044126,-0.014615508,0.0670077,0.021100773,-0.06651752,0.06816936,-0.036412414,-0.1486179,0.0133885,0.04424095,-0.010926318,0.0203561,0.057296634,-0.049140472,0.00542297,0.07748661,0.009457842,0.014197809,-0.0005193482,-0.0066242283,0.020182414,-0.0014303229,-0.020469883,0.010232456,-0.054289173,-0.06844794,0.007840399,0.070585765,-0.0077944193,-0.05827559,0.109221414,-0.062117428,-0.034613732,-0.014412022,0.027528344,-0.044306632,-0.065539286,-0.038467254,0.029015638,0.103672326,0.061521668,0.034434844,0.041312963,-0.025142116,0.07598032,0.07219919,-0.022160904,0.06482281,-0.010596801,-0.022074116,-0.08160706,-0.015067543,-0.035715997,-0.09087547,0.023203814,-0.02444381,-0.0072650583,-0.053818934,-0.0702426,-0.029981576,0.05135494,-0.04443572,0.015033672,4.4123586e-05,-0.060416058,0.016389526,1.659021e-32,0.02728258,0.0057465257,0.024589859,0.096373096,-0.017883059,0.009634069,-0.0036899068,0.041151315,-0.12419172,-0.0039466145,-0.08494797,-0.025856726,-0.009357021,0.049087744,0.0340512,0.07332676,-0.025224933,-0.016792946,0.0147661,0.07610988,-0.05389482,-0.077941164,0.03349713,0.008708672,-0.00027291203,0.023523943,-0.021208772,-0.057807367,-0.04232533,0.057835195,0.06557726,0.02690066,-0.01967169,-0.043325566,-0.062196787,-0.10098781,0.11986323,0.11004782,0.00981233,-0.046240076,0.0133606205,0.061994217,-0.0070715225,0.00035750508,-0.01789172,-0.02844836,0.09784329,0.0045233844,0.056051183,0.012961592,-0.033548977,-0.047806136,0.0019188861,-0.05707655,-0.033963952,-0.0074243266,-0.03201021,0.06680791,0.012664328,0.016694916,0.016829565,0.0014684495,-0.0028850525,-0.043456234,-0.018266013,-0.009092835,0.081865594,0.051771957,0.14879553,0.013158843,-0.05990656,-0.04097099,-0.049386777,-0.048086375,0.03227172,-0.0035290415,-0.02930729,-0.018673493,0.022826564,0.013544974,0.03146275,-0.063993566,0.030640954,0.08428926,0.10227618,0.0066417055,0.09658611,0.011513558,0.029517187,0.12896399,0.0696496,0.07902382,0.078019634,-0.11293307,0.068436004,-1.4369817e-32,0.037514854,0.043503214,0.008869735,-0.03373707,-0.015904,-0.0057817632,0.040680416,0.092103116,-0.04562848,-0.06096977,-0.008655924,-0.079262815,0.08443673,-0.033268172,-0.05955058,0.051022276,0.016711898,-0.04359139,-0.06445926,-0.10591712,-0.072943956,0.027544463,0.05588424,-0.075840555,-0.012952189,-0.024816586,-0.059389584,0.056599926,-0.07197842,-0.009371113,0.038522165,-0.03837836,-0.0046596783,0.014233727,0.005633222,0.007196849,-0.0027130574,-0.06873737,-0.04381948,0.033651523,-0.010513301,0.030879103,-0.050105568,-0.03161299,-0.026829481,0.010359869,-0.02296196,-0.1467204,-0.0638938,-0.062202834,0.061348986,-0.07077473,-0.0017715335,0.012345921,0.007398286,-0.08340259,-0.017151529,-0.022140576,-0.040094543,-0.0191986,0.04648221,0.059440855,-0.036138967,-0.0010007172,0.06523033,0.07139964,0.0011725345,0.0012778359,0.02829453,0.010049057,0.077275954,-0.08108419,-0.10040192,-0.034492217,-0.0038011891,-0.013819642,0.010213836,-0.052526522,-0.071666755,-0.023689901,-0.00570956,-0.033533566,-0.022910131,0.03565352,0.015401594,-0.005659419,-0.026119301,0.065711744,-0.016145637,0.0991511,0.0045064385,0.045071326,-0.031393245,-0.03277656,0.023232019,-4.8265385e-08,-0.027398966,-0.012436267,-0.030614426,-0.0149423545,0.0041034166,0.011846653,0.024696644,0.076400444,0.024790764,0.027645105,0.055545222,-0.025563527,0.036891885,0.010409614,0.016565127,0.049740065,0.09376783,0.058632683,-0.029098516,-0.060495567,0.058170237,0.026410697,-0.035021685,0.054723762,0.0006438492,-0.000618946,-0.07018992,-0.07253031,0.057560094,-0.05452855,0.005496007,-0.031188363,-0.02027326,-0.04668767,-0.010558524,-0.04194136,-0.01621225,-0.027668562,0.010295916,-0.080556504,0.049129702,-0.014864474,-0.077778555,0.014886784,-0.08203966,-0.0061245793,0.051991634,-0.015838495,-0.026394635,0.011195406,-0.07899092,0.015382126,0.005039103,-0.003041771,-0.03359344,-0.026458178,0.031189336,0.023602119,0.020685378,-0.06018083,0.078848355,0.12491478,-0.062945664,-0.12259821} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:26.070665+00 2026-01-30 02:01:10.082189+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1625 google Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB 1 t 1628 Go Karts Mar Menor unknown Richtig genial. Der beste Zeitvertreib in der Umgebung für einen guten Preis. Alles ist Save und ein Mitarbeiter spricht sogar deutsch. Wir fühlten uns gut informiert und sicher. richtig genial. der beste zeitvertreib in der umgebung für einen guten preis. alles ist save und ein mitarbeiter spricht sogar deutsch. wir fühlten uns gut informiert und sicher. 5 2026-01-09 01:52:39.833374+00 de v5.1 V4.01 {V1.02} V+ I3 CR-B {} {"E4.01": "Alles ist Save und ein Mitarbeiter spricht sogar deutsch.", "P4.01": "Wir fühlten uns gut informiert und sicher.", "V4.01": "Richtig genial. Der beste Zeitvertreib in der Umgebung für einen guten Preis."} {-0.0040597613,0.09755461,-0.022080345,-0.004699176,0.032485086,0.05917598,-0.033675153,0.059882246,-0.058197103,0.019180292,0.021260008,-0.06464826,-0.020634787,-0.15211684,-0.035952967,-0.01951003,-0.029220514,0.058180913,-0.047369406,-0.08604085,-0.032489117,-0.04810622,0.041446,0.0030189902,-0.026217347,0.046548992,-0.04968139,-0.023699343,0.060109336,-0.046722982,0.05028808,0.0072839903,0.11703606,0.026026402,0.014853107,0.026629495,0.036522742,-0.012415312,0.00074169564,0.06538934,-0.07427206,-0.0067234808,-0.09058964,-0.06675675,-0.07681462,0.039428413,0.04164176,0.014802253,-0.0059096427,0.016966285,0.02666201,0.0020821104,0.027142258,-0.010521692,0.07495333,-0.031046735,-0.008377854,-0.09765165,-0.024148853,-0.042597804,-0.057213716,0.023223,-0.014122878,0.020119403,0.03191107,0.06305293,-0.03062015,0.0058023836,-0.05575847,-0.07560547,-0.046494257,-0.079504095,-0.021964155,0.09383452,-0.010574818,0.076183654,0.0077230115,0.060449947,-0.027651105,-0.053641453,0.049681928,-0.043748338,-0.008492744,-0.038012523,0.023328733,0.0050565945,-0.00035565332,0.030907955,0.11263766,0.0006702108,-0.079572506,-0.050023258,0.003660563,0.07327614,-0.06849872,0.030398775,-0.014027409,-0.10956753,0.041180443,-0.012451646,0.033569936,-0.02688545,0.1147566,0.040053375,-0.015514878,-0.044248402,0.018564021,-0.011072228,0.0107013155,0.024128143,-0.024389155,0.010442527,0.026342295,0.012596573,0.05892168,-0.079063475,0.008172101,-0.06829355,-0.055990104,0.008666352,0.029098392,-0.0038133624,0.06318683,0.108198635,0.025363106,-0.015132544,0.042979907,1.00492336e-32,-0.05050723,-0.0014243717,0.05207618,-0.001637385,-0.11209036,0.031063946,-0.04730279,-0.02052037,0.05643942,0.058952875,-0.06296261,0.092077225,-0.038479436,0.10424487,0.0052375733,-0.012162058,0.022988109,0.008227523,0.05274621,-0.018270615,-0.10469426,0.0025152613,0.028286029,-0.02570667,0.10809346,0.059009466,0.10952675,-0.06710659,-0.018141871,0.0047708806,-0.019140411,-0.11393895,-0.006289923,-0.03224693,-0.05086446,0.07111363,-0.063451976,0.016107732,-0.03148442,0.045549627,0.0015282034,0.005892696,0.05520235,0.007201671,0.055524465,0.013945847,-0.091332324,0.017906763,0.03023025,0.014659144,-0.06407379,-0.03799585,-0.033798184,-0.084707424,-0.061724894,0.057042673,-0.03505525,0.03701593,-0.048942044,-0.09354526,-0.05400011,-0.025604421,-0.058003996,-0.045915835,-0.011781375,0.010895228,-0.03203852,-0.020416046,-0.0020546135,0.07874309,-0.09228422,-0.0385387,0.01569242,0.043893736,-0.032760903,0.033891894,0.0033152946,0.07983552,-0.01516794,0.041509625,-0.07050994,0.07950388,-0.017134566,-0.1297425,0.10311611,0.020123808,-0.016770042,-0.02672071,0.024421783,0.13201563,0.008607498,0.030794209,-0.013948477,-0.011560319,-0.016891059,-1.1563641e-32,-0.0029454264,-0.005598743,-0.06021078,0.077733465,0.0064742365,0.032593522,-0.099842235,0.07152401,-0.092342764,0.022174513,-0.017943924,0.0020973298,0.09527603,-0.058591694,-0.012302638,0.030967753,0.10136915,-0.03547721,0.012213782,-0.04426665,-0.006111826,0.04478163,0.0267088,0.0043151868,0.02346291,-0.025963426,-0.015501185,0.06767728,-0.036003597,-0.009934491,0.054398786,0.04580731,0.031017654,-0.0150561575,-0.008244184,0.005145686,0.05170853,0.11509976,-0.018330801,0.053397585,-0.04058146,-0.0047596702,-0.07689778,0.03189308,0.045956466,-0.021231202,-0.09977069,-0.097953886,-0.0076898364,0.030623648,0.056146733,-0.009906186,0.044801347,-0.07906103,0.05311161,-0.01953941,0.062677324,-0.081720226,-0.042773537,-0.0632078,0.029435096,0.044334646,0.050789785,-0.03702558,0.013545533,-0.0099359015,-0.07287558,-0.005137908,-0.015933517,-0.05030711,0.07704722,-0.06820769,-0.08637417,-0.02962796,-0.057095535,0.07387527,-0.055468347,0.03235978,0.031290896,0.031025292,-0.13198245,0.008940341,0.018526036,-0.0029671001,-0.037396252,-0.046844725,0.05905718,0.025606263,-0.020585766,-0.0510709,0.0077681607,0.017903306,-0.03302828,-0.041539565,-0.022000097,-4.9575313e-08,-0.0038845337,-0.038025767,-0.046424333,0.049786586,0.005121957,-0.089678064,-0.035699416,-0.0194077,-0.008012584,-0.040968686,-0.026331563,0.061187167,-0.08394937,0.078928806,0.07615039,0.020953937,-0.026294205,-0.043566987,-0.075286,0.035973027,0.11513705,0.0009905999,-0.046266362,-0.025545591,0.08510779,-0.01242009,0.053401373,-0.016398413,-0.002481958,-2.1756861e-05,0.00393161,0.02755958,-0.07269632,-0.004303287,0.0009789368,0.030170884,0.04124822,-0.0027933498,0.015623667,0.07647656,0.040300246,-0.032597754,0.066160925,-0.064297,-0.12410079,-0.03420382,0.02804901,0.02787297,0.012511782,0.05319212,-0.118163094,-0.046544336,0.05799555,0.017823867,0.0038646066,-0.05122115,0.038555846,-0.032987125,0.05168775,-0.0069093704,0.063991494,0.005310255,-0.009485015,0.040539257} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:50.748807+00 2026-01-30 02:01:10.089913+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1962 google ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE 1 t 1965 Go Karts Mar Menor unknown Buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tándem para or con niños.\nCarreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posiciones de los karts. buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tándem para or con niños. carreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posiciones de los karts. 5 2021-01-31 01:52:39.833374+00 es v5.1 O2.03 {O3.02} V+ I2 CR-N {} {"O2.03": "Buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tánd", "O3.02": "Carreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posic"} {0.032208465,0.036864974,0.010086787,-0.021507435,-0.10196391,0.085481994,-0.030341638,0.038046937,0.030888436,0.047055285,0.058634948,0.003923445,-0.031081805,-0.0055033127,0.050681707,-0.045024898,0.004430132,0.034345467,0.03717025,-0.08205802,-0.0074999956,-0.10497799,-0.040572874,0.033477113,-0.060191054,-0.0007953891,-0.0011669599,0.025105745,-0.05597337,-0.07373682,-0.09724452,0.08003328,0.03639136,-0.041868202,-0.064356305,-0.024269298,0.020066818,-0.0010910769,-0.015088273,-0.017346794,0.01934159,-0.039615914,-0.053351406,-0.045489926,0.016459396,-0.0722578,-0.105829746,-0.02110801,-0.021419952,0.010545122,0.029316934,-0.06729175,0.0379335,0.031689,0.061986063,-0.00022389904,-0.11739379,0.013143197,0.15283673,0.069981016,0.05042388,0.05218258,-0.06521804,0.014253273,-0.026315449,-0.05256567,0.023571068,0.08484884,-0.03783302,0.06942944,0.1198329,-0.051364865,0.036859285,0.010169292,0.08863752,0.028572995,-0.007659979,-0.038222402,-0.0498203,-0.051845077,-0.06296342,0.019142425,-0.014175089,-0.06674399,-0.037807427,-0.007850094,-0.0044565764,0.0027114926,-0.03357649,-0.05254045,-0.061635647,0.049584053,-0.0038319384,-0.04614811,0.03571755,-0.015587747,-0.0471753,-0.066733785,0.07873373,-0.023116661,0.07529237,0.010413043,0.1380782,0.09717697,-0.04379165,-0.017636737,-0.02551565,-0.063805975,0.027277369,0.0066763894,-0.030294934,0.02649542,-0.025429474,0.004112486,-0.06632399,-0.04690037,-0.02067635,-0.014702919,0.018853227,-0.028667947,0.029469281,-0.04913776,-0.0063220663,-0.0073523647,0.0019690646,-0.069409624,0.06856372,7.673749e-33,-0.10067219,0.010420146,-0.0060584056,0.057500478,0.07809295,-0.12181722,-0.034028973,-0.0911324,-0.08473208,0.008357795,-0.035942283,0.047325727,-0.03087206,-0.009535566,0.11712998,0.017673766,-0.031295788,-0.012219821,0.020911336,0.02509973,-0.054780677,0.022728354,0.0130609535,0.06916525,0.044667866,0.0075921584,0.07813389,-0.0042756363,-0.09257116,0.028173136,0.076615274,0.022993378,0.002665382,-0.010029821,-0.14929166,-0.017482143,0.024326332,0.017346384,-0.06819385,0.023751697,-0.04102245,-0.068429194,0.023799645,0.07416857,-0.07297511,-0.026126029,0.044119734,0.0064359964,0.04311536,0.07155285,-0.09604375,-0.057148382,-0.050106574,-0.022366384,0.006379712,0.11441008,0.020298237,-0.024922471,-0.048092756,-0.014535782,0.03471111,0.0046339436,-0.004807121,-0.066814855,-0.02708717,-0.007895846,0.053310767,-0.033277847,0.106037736,-0.05489458,-0.08133191,-0.045135505,-0.048843365,-0.032409888,0.101991646,0.0059381807,0.011260164,0.027671428,-0.050061435,0.037158202,0.0075011738,-0.015316668,0.0022951919,0.004534071,0.029073799,-0.005680782,-0.040176768,0.035285953,0.017226184,0.1355312,-0.021750929,0.08262886,-0.015354627,0.012447585,0.049786434,-8.798884e-33,0.030385787,0.041619293,0.06416483,0.098889455,0.03152801,-0.007877768,0.009239489,-0.09123402,-0.003423361,0.01759355,-0.047841247,-0.01941733,0.021936005,-0.04816134,0.0011303676,0.08072598,0.0024348958,0.036409967,-0.0023233313,-0.03745607,-0.0034587982,-0.013811613,-0.0036206294,-0.04781526,-0.021681195,-0.003185947,-0.057049345,0.026826888,-0.12565231,0.00751288,0.03833788,-0.10418528,0.020012569,0.05610254,-0.024596067,-0.023938198,-0.016155101,0.099099934,-0.052259307,0.035794936,0.045214225,0.02595269,0.009044227,0.03243216,-0.054258663,-0.0071389014,0.08530259,-0.043978915,0.026162863,-0.039769273,0.07830942,0.052900374,-0.05986596,-0.061480004,0.022535611,0.0040671225,0.0659781,0.0076718135,-0.007539262,0.019232914,0.061895125,-0.05944886,0.027717067,-0.016777629,0.052206937,-0.013296377,-0.046816614,-0.0046982653,-0.031057416,0.016640453,-0.012864755,0.06343678,0.051579926,-0.0048460835,-0.06615686,-0.007664399,-0.090744495,-0.009326137,0.030043859,0.014189535,0.01876451,-0.05826128,-0.00025746992,-0.021659307,-0.023967003,0.029539445,-0.013236308,0.06320334,0.051523637,0.013153814,0.05978676,0.08675953,0.012683905,-0.04025686,-0.025062611,-4.4277808e-08,0.05764519,0.009270573,-0.09925961,0.01673385,-0.018164791,-0.07346638,-0.0057448815,-0.0030702206,-0.016327025,0.030693384,-0.12663311,0.041769825,0.024205657,0.027125226,0.021052584,0.051102657,0.029329367,0.079101875,-0.019889161,0.043066233,0.027889598,0.010639591,-0.018109456,0.115344234,-0.029851807,-0.049536336,-0.0061317077,0.07224608,0.028677266,0.0051652933,-0.011922431,0.004357765,-0.08069486,0.011292045,0.043055773,-0.0196908,-0.10787416,0.07164923,0.0039698416,0.0014165376,-3.4262907e-06,-0.10438013,-0.14540802,0.03418522,-0.029527389,0.025525566,-0.07466657,0.009471565,-0.08464093,0.019051103,-0.12118241,-0.04672313,0.017291557,-0.0034649617,0.037348803,-0.014728587,0.040176257,-0.032110803,0.045218095,-0.009773591,-0.067296274,0.051491447,0.044146694,-0.06666982} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:25.349155+00 2026-01-30 02:01:11.380571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1626 google Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB 1 t 1629 Go Karts Mar Menor unknown Muy divertido gran pista y precios muy. Buenos. Genial muy divertido gran pista y precios muy. buenos. genial 5 2025-10-02 00:52:39.833374+00 es v5.1 V1.01 {V1.01} V+ I3 CR-N {} {"V1.01": "Muy divertido gran pista y precios muy. Buenos.", "V4.03": "Genial"} {-0.01443606,0.022332333,0.06326861,-0.02809988,-0.05363778,-0.0012340522,0.06879455,0.0496287,0.010841233,0.0040291385,0.080527805,-0.060020175,-0.040075097,-0.012213723,-0.019154994,0.014466286,-0.017075373,0.046277862,0.01778312,0.026402123,0.09519026,-0.0008578907,-0.0572167,0.10862022,-0.06746547,0.012326275,0.02727456,-0.013286221,0.009033194,-0.0060026264,0.014535918,0.12164077,0.11422692,0.039728515,0.01162354,-0.03955129,0.06276147,-0.0066667697,0.043728407,0.031619925,-0.06445966,-0.017578108,0.018276887,-0.0044461302,0.045834173,-0.0026099593,0.043010093,0.021905502,0.035155118,0.016539002,-0.071574174,-0.016833674,0.036422502,-0.0082546,-0.004093518,0.0051822383,0.011802388,-0.07817028,0.033927705,0.059181932,-0.1070524,0.009000688,-0.07056495,-0.014253667,0.066918775,-0.00047752238,0.05828383,-0.016732104,-0.046115413,-0.011466049,0.12146095,-0.035252213,-0.014385795,0.019118367,-0.12246132,0.051071815,0.05872137,0.038041692,-0.06881971,-0.043159932,0.014478861,-0.0067310072,-0.033617303,-0.05085011,0.02790364,0.033966858,-0.09515377,0.03963978,0.01769326,-0.044044565,-0.0418922,0.018334605,0.019494731,0.039599795,0.011282584,0.037737094,-0.052812193,-0.14122617,-0.021763913,0.05598895,0.045029633,0.04262361,0.029568302,0.024759958,-0.056986667,-0.023009187,0.074435875,0.0019335517,-0.023237519,0.06364073,-0.014280333,-0.015751554,-0.048226524,0.02166821,-0.10217913,-0.016671492,0.043648113,-0.011541875,-0.03638789,-0.11172605,0.036607288,0.070967734,-0.08147418,0.008221124,-0.07574933,-0.0338136,0.025453482,1.1862855e-33,-0.07432196,-0.08005862,-0.03830361,0.102559686,-0.073224165,0.029382035,-0.0073067923,-0.065928936,-0.02241767,-0.054135665,-0.04354955,0.015944857,-0.015653946,0.04755098,-0.016865708,-0.016985536,0.04681702,-0.0037520833,0.08555093,0.04328398,-0.098396525,0.048381522,0.0038809911,0.002266165,0.028894585,0.06824585,-0.08952615,-0.14577103,-0.052377984,0.059711043,-0.030287733,0.0328189,-0.0017211365,-0.016230706,-0.027568182,-0.034724277,0.0057551255,-0.0041327416,-0.015092367,-0.0003230357,-0.04008119,0.0397261,-0.034717973,0.030352276,0.031932738,-0.007122891,0.013163482,0.05640196,0.0495452,0.025336532,-0.010131108,-0.058988728,-0.10182954,-0.046019845,0.018981153,-0.013523212,-0.077276684,0.04606572,-0.024551032,-0.030426979,0.06093995,0.039687388,0.0033320982,-0.02022516,-0.03394312,0.0051332796,-0.0070475233,0.049354758,0.14067243,0.08767673,-0.09147851,-0.05320542,-0.083427794,0.06893202,-0.061243203,-0.013038146,0.04841496,0.030857515,0.019820306,0.03716161,-0.03916588,0.07360547,0.05489084,0.015281383,0.07486197,0.13220133,0.08381402,0.089748316,-0.04639025,0.020683154,-0.043716922,0.039071534,0.068965524,0.029418347,-0.03243359,-2.295988e-33,-0.0007714162,-0.065164074,-0.017558707,0.028315,-0.05582777,-0.03342637,-0.0377773,-0.051453996,-0.062620066,-0.014618536,-0.10287857,-0.067259274,0.15106004,-0.04777905,-0.027204191,0.060106203,0.057878308,-0.0035467534,-0.072939426,-0.020123275,-0.039193116,0.08015699,0.044984337,0.0014585292,-0.06736532,-0.048846833,0.017968334,0.0057144533,-0.042946007,-0.012071112,-0.014095127,-0.0035036108,-0.030902466,-0.0028494804,0.026231207,0.08238809,0.028487457,0.07455993,-0.017684264,0.018417167,-0.0891936,0.061176214,-0.00028561483,0.024210257,-0.067054905,0.051115997,0.02075105,-0.074470945,-0.086076535,-0.018621327,0.0011804067,-0.02806036,0.018440543,-0.037635453,0.013696047,-0.10467758,-0.026811032,-0.04959902,-0.1276971,-0.022004206,0.07892282,-0.012593163,-0.09962935,-0.016595982,0.057660565,0.03381695,-0.023945363,-0.009285928,0.026393969,0.04300776,0.10993016,0.009048446,-0.030330047,-0.0134964045,-0.031150877,0.037624862,-0.086361825,0.010910375,0.04097375,0.01655738,-0.049151942,0.05410187,-0.032547336,0.013265843,-0.051514912,-0.065001965,0.015045889,-0.007387235,0.023744563,0.010031526,-0.0014300352,-0.019240411,-0.02951176,-0.07379863,0.016809646,-2.06896e-08,0.007117476,-0.037126563,0.0042933673,0.032056253,-0.0004969005,-0.010323642,-0.10030994,0.047767963,0.063562244,0.049410835,-0.045204528,-0.015217678,0.03645861,0.024193717,-0.03785745,0.04066392,0.049651165,0.12427721,-0.002264831,-0.01676818,0.08533482,0.037348587,-0.009654458,0.0035088588,-0.008063245,0.0062776897,-0.083839126,0.010041735,-0.074858464,0.010937017,0.020515462,-0.06755615,-0.0070151086,-0.10686938,0.012217081,0.03677443,0.057600375,-0.014812812,0.03429054,-0.05810228,0.052270107,-0.00903572,-0.0136576975,0.001101435,-0.02160288,-0.0747404,0.023558585,0.031867545,0.0073128226,0.054050606,-0.023720708,0.027438462,0.094047874,0.06757824,0.028572654,-0.035842694,0.05226253,-0.029551445,-0.00016917233,-0.0022630803,0.030220944,0.13575917,0.011506191,-0.07327732} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:57.013613+00 2026-01-30 02:01:10.092513+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1702 google ChdDSUhNMG9nS0VJQ0FnSUREMzVpWHRBRRAB 1 t 1705 Go Karts Mar Menor unknown Supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er zijn duokarts.👌 supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er zijn duokarts.👌 5 2025-01-30 01:52:39.833374+00 nl v5.1 O2.03 {O4.03} V+ I3 CR-N {} {"O2.03": "Supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er"} {-0.07269832,0.02582072,-0.0026585576,-0.050418593,-0.0350189,-0.020711606,0.037707854,0.07457437,0.049942385,-0.020697188,0.029730165,-0.03151335,-0.061906118,0.005782658,-0.067019135,-0.06796667,-0.0718434,0.05793057,-0.008551513,0.022700414,-0.0069168108,-0.056747712,0.05974489,-0.0014234076,0.0181502,0.030600859,0.043348093,-0.007230311,0.038375515,-0.0172516,0.033918317,0.047380835,-0.01813765,0.027083166,-0.0410667,0.0028206056,-0.031097159,-0.019320672,-0.016209062,0.008131547,-0.014172688,-0.04091581,-0.13470945,-0.13712075,0.051483702,0.05968633,-0.020641392,0.028276535,-0.061316576,-0.066736735,-0.10437151,-0.110356756,0.0033395528,-0.04956032,0.06457099,-0.027818264,-0.076325595,0.03349259,0.0036589135,-0.01838617,0.04623704,0.012632336,-0.054829877,0.046826787,0.04288145,-0.027299695,-0.075168155,0.070168115,-0.13049327,0.07360646,0.013542281,-0.03853454,-0.02685973,0.03165282,-0.038256146,0.020304624,-0.016669007,-0.049440324,-0.019748157,-0.07959685,0.062281217,-0.048641767,0.02117032,-0.018161414,-0.008131863,-0.037515372,0.02978014,0.04881864,0.04410415,-0.021433555,-0.014141596,-0.0014786893,-0.060292233,-0.05491176,0.04988149,-0.022935838,0.0045584035,0.035827678,-0.05214353,7.204747e-05,0.08675445,-0.01534081,0.07377859,0.055357922,-0.036934655,-0.007692161,0.008756621,-0.10865537,0.12287746,0.04249072,-0.04330113,-0.018532462,-0.0283955,-0.089639165,-0.0018199043,-0.003165454,-0.08498016,-0.013393814,0.052566804,0.02652724,-0.0019739312,-0.030014487,0.01681743,0.08293522,0.09834769,-0.02703684,0.034999408,1.1177661e-32,-0.052783966,-0.0031087014,-0.031743366,-0.035487395,0.032992497,-0.14567883,-0.06881702,-0.07279072,-0.027154969,0.018696412,-0.046839964,0.011222409,-0.06395195,-0.015369684,0.066074096,0.038039766,-0.009301734,-0.03771151,0.026870083,0.0042414865,-0.009017723,-0.045200795,0.006385554,0.04262322,0.0029339907,-0.123765126,0.045669224,-0.06562967,-0.044928525,0.039107207,0.05699049,-0.044793606,-0.03579578,0.041177627,-0.12715355,-0.043415178,-0.003133302,-0.0067001116,-0.050964713,-0.04596915,0.04230604,-0.055301595,0.01862122,0.00930261,0.0074610068,0.069794424,-0.015363444,0.046989065,0.023213202,-0.015934825,-0.062435407,-0.053445842,-0.11143486,0.05788841,0.0471906,0.065856375,0.014770753,0.05704645,0.009950072,-0.046792455,-0.013617171,-0.069893815,0.042985518,-0.019398713,0.022867104,-0.05027601,-0.029390696,0.0059568966,0.013899779,-0.028703958,-0.04553965,0.030455481,0.09517637,0.0032011864,0.03145006,0.04574564,-0.016724767,0.047311407,0.05408011,0.06653736,-0.07624212,0.0194487,-0.04297585,-0.045483734,0.03776593,-0.0025035145,-0.038022175,-0.063811235,0.0074930713,0.07548679,0.0014869623,-0.027400987,-0.019108782,-0.051344804,-0.011419177,-1.18739594e-32,-0.004800861,0.05328847,-0.015377263,0.048390776,0.012857571,0.037889604,-0.06828347,0.023083234,0.017288527,-0.017141184,-0.007895356,-0.06899422,0.13499492,-0.0014846472,0.00442885,-0.038298283,0.04637695,0.085840605,0.07300579,-0.034989323,0.07272131,-0.050810043,0.03627319,0.06859361,-0.0020510925,0.041535027,0.038256843,0.051746156,-0.08696858,0.0017416549,0.016448682,-0.084632725,0.01644405,0.05074207,0.049598686,0.029593594,0.103151545,-0.006574755,-0.10851931,0.02415079,-0.0024882322,0.042541534,-0.041270223,0.0155178625,-0.023151413,0.012852372,0.005126527,0.0031840096,0.035215013,-0.16441202,0.103746474,0.08376911,-0.0028839225,-0.029622298,0.038729046,0.048417103,-0.0023281828,-0.025448214,-0.057480056,0.022955036,0.059598286,-0.05488752,-0.028456567,0.0014147083,0.038113073,-0.034787085,-0.088547,0.0167608,0.026975995,-0.024453755,0.031945374,-0.07308644,-0.043131728,0.010396394,-0.014275635,-0.034438923,0.022999115,0.03776052,0.016152188,-0.053759877,-0.07192052,-0.030498518,-0.012843155,0.03656475,0.021690391,-0.007202548,0.078374736,-0.04870152,0.018466499,-0.06954706,0.059912607,0.11291759,0.03899685,0.082168676,-0.017202266,-3.985321e-08,0.022085324,-0.050498158,-0.036254454,0.027058003,0.06752062,-0.10535344,-0.017623248,0.010609882,-0.10115795,-0.0010252596,-0.07461333,0.025520166,-0.023611449,0.0527876,0.09166652,0.00575089,-0.003282447,0.06592277,0.010719932,-0.10144336,0.09598747,-0.055047244,0.024390193,-0.026016006,-0.09730013,0.060538735,0.0016782815,-0.008961171,0.10919797,-0.041255485,-0.004297344,0.08396326,-0.011029586,0.10679478,-0.013733067,-0.011767383,-0.095537774,0.0968708,0.0294511,0.033815857,-0.028835885,-0.022932608,0.063820146,0.028321907,-0.007895728,0.073674865,0.046694428,0.006288756,0.012631541,-0.048334893,-0.0074442443,0.02586174,0.073926985,0.043529283,0.03240054,-0.0021122377,0.0018415631,0.008466621,-0.022005294,0.0118363295,0.017108105,0.09669444,-0.07468371,0.02529141} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:37.970431+00 2026-01-30 02:01:10.381846+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1413 google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB 1 t 1416 Go Karts Mar Menor unknown Great place. Go karts to suite everyone from kids aged 6+ to adults. Kids are 8 euro for around 8-10 mins and on Wednesdays it's 2 for 1. They have a cafe which is reasonably priced. All in all a great day out. Will deff recimmend.👍 great place. go karts to suite everyone from kids aged 6+ to adults. kids are 8 euro for around 8-10 mins and on wednesdays it's 2 for 1. they have a cafe which is reasonably priced. all in all a great day out. will deff recimmend.👍 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"O4.03": "Go karts to suite everyone from kids aged 6+ to adults.", "V1.01": "Kids are 8 euro for around 8-10 mins and on Wednesdays it's 2 for 1.", "V4.03": "Great place."} {0.058107518,0.021845533,0.03647216,0.10605035,-0.08004148,0.04355491,-0.028741581,-0.041084908,-0.027558729,-0.008617011,0.013551231,-0.017454877,0.0028603536,0.010901334,0.09494394,-0.060732335,0.09409568,-0.087663054,0.06259566,-0.12750217,-0.036581732,-0.05006024,0.0082591,0.035545815,-0.05710009,0.075276904,-0.014950969,0.019234372,0.024726255,0.00429854,-0.039522905,0.05062755,-0.021996133,-0.007639193,0.02931277,0.04901127,0.05757396,-0.12098809,-0.051571008,0.077238984,0.006458976,0.030794183,-0.046400797,-0.052028615,0.05537511,0.041181866,0.008817931,-0.009404156,0.08033841,0.08034642,0.086007476,0.020110779,0.07445314,-0.052681766,-0.029063089,0.027981745,-0.09933426,-0.080775514,0.14392272,-0.01741508,0.055555772,0.07730315,-0.07318016,0.04052724,-0.061333366,-0.10058922,-0.07753721,0.08053071,0.009770614,-0.017313004,-0.019298665,-0.038053762,0.083775245,0.012329708,0.03931079,0.0048093963,-0.02184032,-0.07091238,-0.04855974,0.0076903873,0.012077925,-0.015666813,0.009782901,-0.035013758,-0.051592156,-0.08521228,0.06829692,0.034983296,0.042278934,0.0022701619,0.0069544124,0.06717663,-0.056734186,-0.002927126,0.009952314,0.011300309,-0.04415679,0.06351981,0.003166241,0.02847074,0.04410254,0.093142174,0.053040843,0.05651239,-0.05404419,-0.009029183,-0.03338594,0.10078882,0.03257062,-0.008750857,-0.030766815,0.03759139,0.056060668,-0.051361613,-0.04353248,0.026922554,0.06989298,-0.016433645,-0.0004007424,0.026300047,0.025838157,0.03941486,0.021947099,0.045599855,0.0151031595,0.0102556525,0.016067265,2.2863806e-33,-0.102251254,0.033877417,0.013602122,0.04755715,0.04876481,-0.08628735,-0.032614987,-0.15829216,-0.07711423,0.033813607,0.025059141,-0.029175147,-0.0066005033,0.006822424,0.04377678,0.026145684,0.05918637,-0.031860266,-0.071211815,-0.002601825,-0.04905257,-0.07220978,-0.014677816,0.029640686,-0.016657805,0.029024562,0.057878003,-0.0068156766,0.093623534,0.007531593,-0.056416757,-0.011277941,-0.05499087,0.022067815,-0.031053253,-0.015470056,0.03497431,0.003349355,-0.073569484,0.026277676,0.045811106,-0.052226152,-0.031870604,0.009224815,0.008983915,0.0062225102,0.029424239,-0.019842364,0.03888274,-0.02258341,-0.10860102,-0.024708807,-0.06098672,0.05449724,-0.021960227,0.035645325,0.0066771177,0.044545505,-0.00052542175,-0.05616266,0.076901145,-0.010731964,0.0042045335,-0.084944054,-0.02039312,-0.031015418,0.01853354,0.016772492,0.025588188,-0.0463278,0.028085005,0.054826695,0.08493448,-0.03929695,0.08125174,0.04821647,-0.048746977,0.040931582,-0.003669779,0.123006925,0.017556895,0.034211665,-0.016429817,0.0248241,0.080129266,-0.055031184,-0.05309609,-0.06358432,-0.027564367,-0.018553583,-0.07753326,-0.002938277,0.02585776,0.02776314,0.007092041,-3.642001e-33,0.10014025,0.054024074,0.05468332,0.057286546,-0.04164382,0.0035086502,-0.0077335658,0.012816029,0.021179354,0.022849966,-0.10837299,0.034808062,0.05388915,-0.042703677,-0.03447835,0.013209407,0.09908786,0.06538569,0.02331521,-0.046897385,-0.041163996,-0.0029542923,-0.024450978,-0.008078656,0.048680224,0.037136182,-0.043855596,0.0017640941,-0.07983737,0.020855162,-0.07681759,-0.067346044,0.0575158,0.041103035,0.024398603,0.029250229,-0.03341765,0.051337376,-0.05653283,0.034509625,0.015919365,-0.037510157,-0.07796012,0.040502276,0.026016722,0.0010375751,-0.006130257,-0.024156807,0.022911571,-0.04398975,0.08114427,0.055166185,-0.08131458,-0.029643321,0.009021838,-0.0021253424,0.035085008,-0.019793492,-0.05717842,-0.027908716,-0.04792015,0.011269091,-0.006645495,0.059955046,0.06613807,-0.009935343,-0.0700946,-0.025237342,-0.03135848,-0.01477739,-0.07443596,0.045253437,-0.026834013,0.006158242,-0.0143670915,-0.030563867,0.11235717,0.047793783,0.028988225,0.086245924,0.035708107,-0.029349485,-0.0073406775,-0.041031465,-0.009261184,-0.06207278,0.028070483,0.026606036,0.0113415895,0.048251677,0.039540723,0.09097618,-0.053487215,-0.0320071,-0.022077443,-3.714649e-08,0.059819765,0.022101885,-0.079238154,0.057387937,-0.022969943,-0.14664228,0.0285554,0.012702632,-0.01181068,0.058498353,-0.034423333,-0.009859527,0.013692031,-0.03998804,-0.0017280024,-0.0029538502,0.019050555,0.081392005,-0.009853293,0.0162939,0.06209754,0.044817764,-0.05439321,0.065696925,-0.043762878,-0.07734553,0.030518526,0.029444043,-0.048699856,-0.09729297,-0.026853753,0.013805342,-0.106817916,0.035103336,-0.031846453,-0.09527931,-0.060255457,0.011628197,-0.0519621,0.00080489786,-0.10690534,-0.13620466,-0.08214181,-0.070466734,-0.068652295,0.08913355,-0.042692516,-0.010642852,-0.065354005,0.04763187,-0.096844204,0.0031146144,0.035267062,-0.051440526,0.040124066,3.2863256e-05,-0.012059041,-0.05112043,0.009236912,0.0146845635,-0.050004464,-0.030901374,-0.06583162,-0.014874432} 0.94 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:11.413782+00 2026-01-30 02:01:09.275025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1865 google ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE 1 t 1868 Go Karts Mar Menor unknown Superbe accueil une demoiselle parlait le français ! Un très beau circuit ! Qu'une hâte revenir vite pour battre mon record ! superbe accueil une demoiselle parlait le français ! un très beau circuit ! qu'une hâte revenir vite pour battre mon record ! 5 2024-01-31 01:52:39.833374+00 fr v5.1 P1.01 {A2.02} V+ I3 CR-N {} {"O2.03": "Un très beau circuit !", "P1.01": "Superbe accueil une demoiselle parlait le français !", "R3.05": "Qu'une hâte revenir vite pour battre mon record !"} {-0.040074706,0.115248725,-0.03225572,-0.100802496,0.0014453758,0.06674148,0.01938595,0.11185208,0.026584815,0.07515559,-0.000839897,-0.07739461,0.034143545,-0.03272663,-0.11946633,-0.058648754,-0.09009101,0.061522044,0.039653942,-0.014007016,-0.06735365,0.004703188,0.038271286,0.03907063,0.01184115,0.027129222,-0.050480857,0.051868945,0.051170114,-0.07338276,0.037232608,0.035191163,-0.01637755,0.0020236853,-0.03553813,-0.05841133,0.027636284,-0.07576432,0.028670212,-0.016446583,-0.06415445,0.029053302,-0.046616886,-0.036819592,-0.029977696,0.07578642,-0.026191827,0.0012551137,-0.06987799,-0.018027429,0.03436894,0.058650926,0.10063183,-0.056459025,-0.04680961,-0.03385663,0.06881421,-0.0052388986,0.059116967,0.038967047,0.001637091,-0.016454628,-0.0263894,0.023259632,-0.10942247,-0.04753819,-0.00533017,-0.03311611,-0.0392273,0.08790293,0.01768782,-0.028523086,0.02176067,-0.07250989,0.061701775,0.06693801,-0.06330885,0.0059797005,0.009156619,-0.09240711,0.109796725,-0.08118019,-0.027872331,0.0070064384,0.09258927,-0.07488847,0.042876888,-0.0009993989,0.08490816,-0.11866378,-0.06590206,0.04221989,0.026382562,-0.009442372,-0.07047619,-0.024668451,0.0077657304,-0.025053691,-0.033268996,0.06866834,0.0026424609,-0.0052797776,-0.010955758,0.06691629,-0.059857294,0.016397368,-0.01616551,0.012518203,0.054858502,-0.10210397,0.041277718,0.06606045,-0.004499243,-0.022316583,0.06656364,0.04074915,-0.008990782,-0.024471503,0.0025371613,-0.06601315,-0.0009591777,-0.033084594,-0.063449256,-0.07146179,0.028506141,0.007821411,0.02944561,4.6601118e-33,-0.008259396,0.06956707,-5.0391307e-05,-0.05821539,0.0063653425,-0.0151482755,-0.059703495,0.044306733,-0.006677472,0.053310636,-0.014964868,0.03614382,0.008775924,0.07211588,0.045021124,-0.011865966,0.016365303,-0.07858782,0.065618135,-0.07357287,-0.012853694,-0.018991157,0.07693228,0.10103724,0.026978487,-0.06472327,0.002793065,-0.03914508,-0.068776235,0.006077349,-0.009245635,-0.019979721,0.004593566,0.026728772,0.023145683,-0.020096205,0.010311538,0.034617003,0.08253759,0.008734201,0.048484344,-0.015103258,-0.07840056,-0.09380599,-0.0030715966,0.013241471,-0.026371118,-0.014373438,0.11187615,0.01575269,-0.057150364,-0.0053728158,-0.07925913,-0.0019978466,0.07455858,0.040273666,-0.031848997,0.03704697,0.0027064164,-0.015465633,-0.01847193,-0.024454875,-0.06223204,-0.012630071,-0.053440526,0.0023291875,0.074449986,-0.070028886,-0.01784218,-0.11914516,-0.080262624,0.020735933,-0.036366973,-0.07501294,0.09603511,0.02256053,-0.032903902,0.049680866,0.06172468,-0.012092552,-0.077742696,-0.079794995,-0.08942326,-0.02901511,0.045887325,-0.0118940165,0.031724196,-0.022246884,0.04270963,0.020575024,-0.0025227224,-0.038501963,0.079247974,0.013486558,0.025881587,-6.7353035e-33,-0.013064531,0.050840743,-0.015170814,0.069983624,-0.00029617266,0.0064057177,0.043967273,0.05119552,-0.044896327,-0.029229352,0.09188865,-0.031617098,0.05375196,0.016164986,-0.050914634,0.024645075,0.0012392249,-0.024188057,0.032336816,0.040140323,0.020795563,0.0053212475,0.062099773,-0.008874154,-0.05107453,0.0069988035,0.026607934,0.029976726,0.054723226,-0.054218125,0.011418334,0.12985885,0.036313776,0.05628936,0.015394301,0.017068123,0.06350527,0.103483275,-0.027344558,0.060492508,-0.11569674,0.07256961,-0.0057895537,0.01696221,0.011110493,-0.030719807,-0.04279987,-0.05635797,-0.11363639,-0.046608,-0.03298654,0.060991786,-0.021104123,-0.03417472,-0.022622902,-0.00374929,0.040135067,-0.05274363,-0.0762016,-0.0050036977,0.018675406,0.06440247,0.03915427,-0.03601544,0.09206601,0.004354088,-0.09227168,0.022296019,0.051052637,-0.010277989,0.03271595,0.03343001,0.006409167,0.018635128,-0.07239951,-0.031440776,-0.0767651,-0.018536597,-0.009200248,0.065021925,-0.094600014,0.036776766,-0.024375722,-0.051126085,-0.07727378,0.018447991,-0.018820068,-0.07752458,0.018093292,-0.043322448,0.012998309,0.042206407,0.0057644597,0.021504356,0.15144749,-3.1076482e-08,-0.027975792,0.0021659157,-0.040140897,0.025699746,0.059643447,-0.1550974,-0.01927223,-0.01076358,-0.04288599,-0.049745545,-0.04178127,-0.011575007,-0.038763557,0.035004705,-0.057416182,0.1206991,0.003493227,0.06913665,0.004864975,0.024739692,0.0046820487,-0.022838356,-0.00519169,-0.068043835,-0.0027121739,-0.06645417,-0.0055086375,-0.12558849,-0.035068,-0.10546541,0.012498631,0.067878954,0.016301278,-0.002645711,-0.05014056,0.013863222,0.018537052,0.0037566205,0.006494973,0.018166708,0.02403521,0.07047306,-0.092555135,-0.04903012,-0.005627548,-0.048229314,0.033519045,-0.02247235,0.04575728,0.024539586,-0.03525662,-0.0044619543,0.000428703,0.014052691,0.06943638,0.10005738,-0.042186636,0.021937264,-0.015544561,0.012759465,0.0063489126,0.030665608,0.041465912,-0.080616415} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:31.185865+00 2026-01-30 02:01:10.998277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1430 google ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE 1 t 1433 Go Karts Mar Menor unknown Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25 minute drive… and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. No mention of needing to reserve came at 20:10. 20 minutes before the advertised closing time and got told i was too late… after a 25 minute drive… and then got told i have to reserve even tho i have been 2 days ago no reservation and could race. no mention of needing to reserve 1 2022-01-31 01:52:39.833374+00 en v5.1 A1.01 {} V- I3 CR-N {} {"A1.01": "Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25", "A1.02": "and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. N"} {0.08002685,0.021175325,0.009619906,0.044441327,0.06428872,0.037968103,-0.03806928,-0.0018696132,0.011928986,-0.04974154,0.008971204,-0.027679749,-0.03386792,0.037333474,-0.030436065,-0.047147837,0.06404991,-0.058566447,-0.07435535,0.01995854,0.026031343,0.016188499,-0.06118935,0.050736874,-0.03319717,-0.007877175,-0.037395373,0.011401568,0.017150044,0.0091504855,-0.029877592,-0.05136662,0.043863524,-0.033729862,0.01983125,-0.03694494,-0.029638497,-0.049425356,0.027750857,-0.019179733,0.067263216,-0.049685523,-0.057051864,0.083309025,0.03594844,0.04953378,-0.005554452,-0.029175527,-0.010476406,0.016736124,0.018806865,-0.0028503034,0.037567317,-0.07886796,-0.060113456,0.06453079,0.016588092,-0.016413698,-0.011263459,0.010977505,-0.0070212595,-0.10928997,-0.069544785,0.014576861,-0.021690935,-0.019587142,-0.0685929,-0.037979532,0.08960108,-0.008761514,0.034766056,0.010873891,-0.028887551,0.0059277974,-0.04621006,0.050675627,0.029742552,-0.0046536503,0.011911536,-0.09171988,-0.05915448,-0.049854603,-0.04985823,-0.004930824,0.03316043,-0.052069172,0.093871236,0.12423783,0.019050663,0.0006343049,0.083967514,0.05135897,-0.050062764,0.010724985,-0.028246425,-0.043219905,-0.023608044,0.078394786,0.020468822,-0.0040968787,0.04346236,0.09344134,-0.043507446,0.030941375,0.0018153839,-0.06545325,-0.011922241,0.051373724,-0.043271434,0.01911613,0.10679408,0.0038964804,0.087044686,0.009013609,-0.026351124,0.16241547,-0.116576634,0.027861373,0.07350586,0.014246271,-0.065415174,0.007690241,0.014015339,-0.06763898,-0.04007676,0.0006093449,0.10546149,2.8405318e-33,-0.059690826,-0.11169291,-0.079159394,-0.06902654,0.06745391,-0.064479746,-0.07504041,-0.00788927,-0.04981352,0.0014408547,0.08965183,-0.0913253,-0.018382853,-0.13030429,-0.10173267,0.011493233,0.04920075,0.046246722,0.029759387,0.020701772,0.07371261,-0.013040229,-0.074972875,-0.022992127,0.034778733,0.022535091,-0.036204115,0.0019963358,0.07726397,0.03764621,-0.06382503,0.021914255,0.028615287,0.042524412,0.095538326,0.031915635,0.041926347,-0.011894002,0.009950691,-0.076746374,0.02797556,0.0025305944,-0.03789182,-0.04107502,-0.021941487,-0.03439108,0.03470089,-0.036327854,-0.07079903,0.15490413,-0.1173799,0.017745817,-0.012312074,-0.058238074,-0.06473033,0.008834917,0.020699006,-0.005981269,-0.086021,-0.014646764,0.024085332,0.0513625,-0.01119068,-0.11026809,-0.08490749,-0.05881037,0.026749905,-0.059031017,0.011001493,0.02866179,0.030666994,-0.018449122,-0.019399703,0.046639062,0.02666187,-0.033550307,0.066635095,0.015972229,-0.03089801,-0.0634089,0.08730995,-0.021258004,-0.022517333,0.03132102,-0.007180392,-0.023171956,0.02761797,0.078565925,-0.0036176306,0.010308156,-0.10015192,-0.034674745,-0.029581537,0.050195273,-0.046342485,-3.1361763e-33,0.039014302,-0.04570039,0.007517408,0.0286897,0.024227377,0.0070118164,0.028291278,0.016389335,0.00981268,0.056140732,-0.013809529,0.024861278,0.065434374,0.022870453,-0.10825401,-0.012079911,0.09429585,0.00076388574,0.025646783,-0.021326702,0.025813548,-0.041514587,0.056191497,-0.018650126,0.027882341,0.07639512,0.006328663,0.007912681,-0.115353316,-0.058288872,0.014277861,-0.076815546,-0.021570776,-0.020380748,-0.008200654,0.004110766,0.016395915,0.042598184,0.010584412,0.06652306,0.0032781975,0.027509198,0.0523953,-0.009755517,-0.002222733,0.05064225,0.10748085,-0.078520626,-0.026096988,0.045935344,-0.041541316,-0.051997665,0.08281827,0.052392717,-0.0011562544,-0.039297704,0.09902904,-0.0013233186,0.016890176,-0.01292182,0.06028407,0.02536708,-0.008427639,-0.08702889,0.06890305,-0.050904796,0.038449652,-0.00024313782,0.05011603,0.020714208,-0.04964095,0.034869704,-0.029005023,0.05336624,-0.05295875,-0.0056441333,-0.014657172,0.024839273,-0.0067237495,-0.061074525,-0.030693393,0.040976375,0.0037883702,0.04981077,0.037042,0.06331973,-0.011599759,-0.028569825,-0.00477231,0.067134894,0.033034947,0.070319325,-0.048646055,0.08779733,-0.09848165,-3.199394e-08,0.03584187,0.047685843,-0.014543218,0.020147288,0.11837293,-0.09043723,0.016723666,-0.025707657,-0.017535672,0.0516076,0.083398394,-0.06568051,-0.046169925,0.014947039,-0.021117585,-0.0850741,-0.009326779,-0.05287542,0.0028359103,-0.02368119,-0.01789631,0.055219937,-0.014824721,-0.032864414,0.0229093,-0.017940467,0.08603723,0.086528756,0.011095906,-0.07350429,-0.016365765,0.05313006,0.0068746307,-0.019641181,-0.009571453,0.045307092,-0.10633778,0.042524517,0.02316337,0.04976482,-0.05514251,-0.021315223,0.002230077,0.024769507,0.039494988,0.01894189,-0.0563819,0.065938056,0.009259078,-0.08127107,-0.009277373,-0.08831458,0.005347333,0.08959755,0.08495473,-0.009750727,0.0058718724,-0.03305387,0.03240691,0.0015147083,-0.07332096,0.012244395,-0.15658203,0.030033734} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:23.944956+00 2026-01-30 02:01:09.331421+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1568 google ChZDSUhNMG9nS0VJQ0FnSUR6cXEtV1B3EAE 1 t 1571 Go Karts Mar Menor unknown Brilliant day racing brilliant day racing 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Brilliant day racing"} {-0.032606058,0.09725348,0.03427386,0.033099324,-0.029941376,-0.027917106,0.04158404,-0.003876847,-0.09213419,-0.057095416,-0.047874402,-0.0031387669,-0.02322111,0.037282005,-0.04259979,0.0036443132,0.01624769,-0.020630667,-0.05270485,0.026648363,-0.058609333,-0.015318184,0.00306127,0.07216643,-0.10737099,0.11646226,-0.019775588,0.056435343,-0.038178913,-0.07599106,-0.05818606,-0.009759163,0.052722268,0.0011447517,-0.04919958,-0.07094077,0.015823482,-0.050671987,-0.033641,0.052990913,0.0073838574,-0.114151046,0.0044574155,0.058781985,0.07096628,0.022414733,0.048815284,0.02444194,0.0634411,-0.025437668,-0.021810757,-0.04446573,0.020444207,-0.058774836,-0.028264761,0.06306875,-0.0011920031,-0.03703168,0.016615147,-0.029212127,0.007841671,0.065066785,0.0045556566,0.013915463,-0.048139483,-0.09923573,-0.07298872,0.04446207,-0.008157547,0.069095254,-0.011296732,0.0011310007,0.025576254,0.03376554,0.032455698,0.063041575,-0.04868433,-0.035497386,-0.02789391,-0.024481827,0.0057742973,-0.11459054,-0.006073284,-0.020795248,0.04873614,-0.020637058,0.046047866,0.05041045,0.04170842,-0.004024611,-0.045771517,0.01088028,-0.007688785,0.004033811,-0.012870829,0.012334592,-0.025178684,-0.03659206,0.014203155,0.13382658,0.048981227,0.06753535,-0.052634068,0.025396964,-0.0018187553,0.029476115,0.003899474,0.07961129,0.008397648,-0.06997096,0.11455096,0.026688533,0.06564792,0.010715348,0.00036508552,0.07404584,-0.08746916,0.07316317,-0.042905204,0.09159153,-0.058309395,-0.031152558,-0.023832448,0.013803452,0.032868132,-0.055931192,0.104825966,-3.0919127e-33,-0.054097664,-0.039489932,0.06550528,0.0022172395,0.05558641,-0.0014436428,-0.055755585,-0.0910636,-0.053129144,-0.04753701,-0.021038756,-0.017084904,-0.041820716,-0.05379834,0.039472498,-0.04349102,-0.03703917,0.009330689,-0.017948175,0.01910057,-0.0055348524,0.1149376,-0.04696728,-0.024269674,0.029396197,0.079151,0.02822448,-0.068283916,0.105966195,0.048687126,-0.030063624,-0.02879546,-0.051092595,0.095673986,0.021016814,-0.0010927393,-0.031077297,-0.06957306,-0.016254086,0.11445348,0.008205912,-0.111998625,-0.030840443,-0.05204323,-0.06544632,0.0932501,0.082254514,0.090818286,-0.00021159321,0.062285215,-0.056955986,-0.0102985045,0.026197389,-0.036668956,-0.02158807,0.038241044,0.040635422,-0.01849066,-0.034543406,0.03964311,-0.013162117,0.04579368,-0.085452475,-0.049573798,-0.09765416,0.008162716,0.02798982,-0.071863525,-0.052369684,0.049028866,0.013526436,-0.07185707,0.044344965,-0.07298916,0.04486768,-0.028343687,0.06545454,-0.0014158107,-0.10159364,-0.055670086,-0.00731294,0.07047534,0.0028522664,-0.11415382,0.06429396,0.03225566,-0.028716069,-0.054131776,-0.021620305,0.012167107,-0.10017038,-0.03334283,0.0038552596,0.060176607,0.003581066,3.461295e-33,0.07022969,-0.023514725,-0.013176494,0.12561393,0.028544867,0.011233554,0.016273016,0.0021882183,-0.032823045,0.13768844,0.016952334,0.039966367,0.048222072,0.03151904,-0.04539241,-0.097671896,0.10384101,0.02546686,-0.061912052,-0.0044116657,-0.0050125076,0.018131295,-0.010269512,-0.017704321,0.02348773,0.07608872,-0.008620839,0.036698863,-0.025573604,0.008778104,-0.016257357,0.0028374519,-0.026334759,-0.007744672,-0.056899413,0.14213082,-0.006340485,-0.026300374,-0.03697549,-0.010493474,-0.016906269,-0.003831762,0.05661981,0.08219129,-0.0072365575,0.025645392,-0.0017766082,0.031055681,-0.056072053,0.054346323,-0.05318178,0.039248697,-0.05514892,0.03644128,0.008030613,-0.053297132,0.026505403,-0.029056031,-0.04906854,0.03258454,-0.036063407,0.008022814,-0.067080185,0.03739768,0.03601535,-0.10974429,-0.060871463,-0.0066043073,-0.00721828,0.0054558846,-0.09407922,0.036228023,-0.09288402,0.030373115,-0.061971687,0.010277699,-0.033636216,0.09248677,0.028468812,0.069672786,-0.06813463,-0.019568142,0.05930844,0.10788301,-0.055446055,0.018121475,-0.012809272,0.027408043,-0.0063511026,0.075444944,0.113645695,0.06884468,0.021179453,0.092842884,-0.0593305,-1.2442667e-08,0.033073697,0.018974354,-0.045140684,0.004856764,0.03694917,-0.09399446,0.04062838,-0.011668353,-0.05429764,0.060741384,0.12481531,-0.032100413,-0.00167899,0.090890355,0.009448791,-0.026612723,-0.024618676,0.058765803,-0.011842446,0.032150637,0.055924263,0.040929377,-0.031214414,0.06498782,0.044391967,-0.038076643,-0.022081558,0.03555749,0.0045296187,0.012519252,-0.009389331,0.036654394,-0.007312922,-0.011898365,-0.011720847,0.0007278299,-0.028050862,0.09956274,0.040110342,-0.04790247,0.00827454,0.031441975,-0.014414459,-0.04189902,0.005781022,0.0060647614,-0.025143249,-0.039844945,-0.04187165,-0.050889228,-0.025076471,-0.011981777,0.043068316,0.08199459,0.01668613,0.07705812,-0.04373926,-0.028541189,-0.097855926,0.034085695,0.011587606,-0.0020804214,-0.021245066,0.02167136} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.694739+00 2026-01-30 02:01:09.829582+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1633 google ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE 1 t 1636 Go Karts Mar Menor unknown Probamos ayer la primera vez y ha sido una muy buena experiencia,las instalaciones están impecables y el personal muy atento y amable en todo momento,los chicos de la pista un 10 también,repetiremos!! Gracias ☺️ probamos ayer la primera vez y ha sido una muy buena experiencia,las instalaciones están impecables y el personal muy atento y amable en todo momento,los chicos de la pista un 10 también,repetiremos!! gracias ☺️ 5 2025-01-30 01:52:39.833374+00 es v5.1 E1.01 {} V+ I3 CR-N {} {"E1.01": "las instalaciones están impecables", "P3.01": "el personal muy atento y amable en todo momento,los chicos de la pista un 10 también", "R4.03": "repetiremos!!", "V4.03": "Probamos ayer la primera vez y ha sido una muy buena experiencia"} {-0.035708893,-0.053128555,0.0045806025,-0.08707287,0.0075027375,-0.02230893,0.10875998,0.061707903,-0.025252933,0.023437468,0.1038077,0.028991945,0.020896029,0.046150472,0.06433034,0.02659958,-0.06315037,-0.035103116,-0.02331785,0.06554949,0.027183158,-0.106524706,-0.070504524,0.06628648,-0.047030244,-0.05913246,-0.031145955,0.006850228,-0.050854526,-0.07077494,0.047037385,0.06977871,0.09667222,-0.010309732,0.003591274,-0.05030574,0.019852996,-0.054555252,-0.072384655,0.009070611,-0.08097055,-0.03810442,-0.033007674,-0.04584198,-0.006042104,-0.082131766,0.042542983,0.013701121,0.018719932,-0.013281609,-0.06516051,-5.6274086e-05,0.029356131,0.033504903,-0.016450083,0.0041313893,-0.01850508,-0.0007167576,0.041047495,0.03279371,0.0017869893,0.08296845,-0.06278461,0.035223637,0.009285491,-0.0011409034,0.046781838,-0.06164315,0.013280356,0.019298848,0.07977746,-0.06523237,-0.05711846,0.024331395,-0.037396703,0.035830326,0.027181849,-0.0072845905,-0.06621479,0.0220545,-0.060941763,0.013690564,0.03338555,-0.02809673,-0.08596298,0.0055305664,-0.05330866,0.06784299,-0.02638442,-0.017924504,-0.0025642316,0.07909445,-0.010210635,-0.017758533,-0.02220921,0.016189005,0.00015469977,-0.06569844,-0.07679746,0.017150624,0.048687644,0.03019439,0.06838843,0.008904229,-0.0692367,0.009957467,0.02108092,-0.07323329,-0.061313383,0.03900338,-0.037248213,-0.09743179,-0.0061253696,0.0074392604,-0.08029881,0.028368007,-0.04163422,0.0033675367,-0.007424117,-0.06976169,0.01956059,0.060214236,0.0026728061,-0.06386072,-0.03291235,-0.028382152,0.064817995,1.17055316e-32,-0.033231247,-0.0041208854,-0.07077247,0.12860607,-0.013018131,0.0055726524,-0.020622626,0.03350199,-0.04084097,-0.0711617,-0.033992343,0.039257813,-0.026163992,0.034163885,0.084020965,0.042570483,0.012705731,-0.024392169,0.012046695,0.05847136,0.0032683953,-0.06655326,-0.029492894,0.038788248,0.022015058,0.08656517,0.040059026,0.022884317,-0.020428812,0.04145302,-0.04688384,0.019010173,0.013765021,-0.04611693,0.016569212,-0.028824683,0.064123996,0.051920842,0.017496308,-0.047572892,0.033576433,-0.0013898595,-0.026254736,0.015481359,-0.013115549,0.037334867,0.072320856,0.0416669,0.09079616,-0.064234115,-0.08890897,-0.003916334,-0.05690145,-0.0019523059,-0.05631465,-0.010621876,-0.045783214,-0.060146708,0.0048048184,-0.06957654,0.062514015,0.00103457,0.03785065,-0.061086662,-0.0049744365,-0.044879973,0.0544352,0.05897527,0.13284262,0.07397215,-0.08642911,-0.04277707,-0.050637826,-0.024985606,0.095851295,0.012938499,0.01694328,0.04122739,0.019403946,0.058869813,-0.02509594,0.0010850192,0.008031687,0.04837009,0.10435503,0.11317952,0.02144358,0.035002448,-0.05351944,0.111121364,0.04656943,0.063821666,0.04381575,0.0053681633,0.0068356204,-1.4557476e-32,-0.0855753,-0.03961311,-0.026057068,-0.05522752,-0.004866275,0.04505399,0.020474508,0.021754019,0.018193318,-0.029846178,-0.16180435,-0.06746616,0.11599247,-0.027883112,-0.06983902,0.07367662,-0.013267364,-0.055515066,-0.026821973,-0.042206835,0.01330637,0.042918023,0.037194736,-0.031936955,-0.0072776405,-0.053522095,-0.0015650854,0.04806204,-0.066463895,-0.009561462,0.0036494753,-0.037943076,-0.0941208,0.05172094,-0.03953661,-0.022549808,0.03212967,0.05188428,-0.006016434,-0.006449934,-0.05332947,0.016112491,-0.08693546,-0.05845134,-0.03671017,0.027332364,0.0453207,-0.17077933,-0.076600984,-0.01014244,0.026878454,-0.010926407,-0.0009140433,-0.0025983066,-0.028187435,-0.040242955,0.014438825,-0.039129112,0.0056220773,0.043431144,-0.014455796,0.062386498,0.051057354,-0.048103537,0.061631724,-0.03023734,0.015665557,0.0044919197,-0.022517547,-0.017648702,0.092206456,0.006118358,-0.080020905,-0.03215378,-0.01867391,-0.02294921,-0.08751491,-0.024470234,-0.04043089,-0.038872752,0.04531098,0.013455937,0.021151597,-0.11154463,0.034442335,-0.07928146,0.006200264,0.042267445,-0.0046488834,0.043551974,0.02220081,0.07994937,-0.07022578,-0.04590787,-0.009746144,-5.0486186e-08,0.03865015,-0.020009924,-0.0026152337,0.015144954,0.07483167,-0.07750458,-0.10062851,0.0990478,0.013588622,-0.001602603,-0.0061397525,-0.06440443,-0.07226164,0.05249304,-0.020777257,0.031601056,0.105133146,0.10527515,-0.02724139,-0.04796877,0.039413787,-0.0033056624,-0.007899607,0.039544955,-0.012843775,0.040968023,-0.04917912,-0.010585036,-0.06800362,0.009759421,-0.011462913,-0.023956046,-0.017763278,-0.06881203,-0.025322314,-0.04348663,0.00810966,0.019017294,0.018450825,-0.12308455,0.06562066,-0.027037326,-0.074660525,0.08143975,-0.07075476,-0.10819071,-0.102824695,-0.05141831,0.019608255,0.0142015,0.005119323,-0.026373016,0.040748827,0.015865793,0.07140159,-0.029015765,0.050599992,0.031051664,-0.019830137,0.059234843,0.09321803,0.08192015,0.024729019,-0.09470524} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:25.344788+00 2026-01-30 02:01:10.116119+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1628 google Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB 1 t 1631 Go Karts Mar Menor unknown El mejor karting el personal es majo, los karts van de lujo y no están capados sin duda un lugar para ir y repetir el mejor karting el personal es majo, los karts van de lujo y no están capados sin duda un lugar para ir y repetir 5 2025-10-02 00:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "El mejor karting", "P1.01": "el personal es majo", "R4.03": "sin duda un lugar para ir y repetir"} {0.011634992,-0.006818959,0.04904967,-0.004252167,-0.00535318,0.005949309,0.06733596,0.029700402,0.025900139,0.04400912,0.08555225,0.03615049,-0.03924046,-0.0022662156,0.039589215,0.024203364,-0.035856545,0.011085616,-0.014689403,-0.0030360045,0.06107866,-0.028883966,-0.079945244,0.020091178,-0.083665915,-0.028609049,0.06961999,0.040399577,-0.027679352,-0.07224222,-0.01610674,0.02773753,-0.00084226334,0.008792816,-0.045939565,-0.037468053,-0.04212938,-0.054780055,-0.01801615,0.028353838,-0.08317855,-0.06908617,0.0024606753,-0.082490616,0.033325776,-0.041524038,-0.016811773,0.021736123,-0.03263834,-0.028452758,0.057915546,-0.03721611,0.005990372,-0.017253473,0.024406549,-0.049109645,-0.13771391,0.053948075,0.14731959,0.07473762,-0.021070609,0.069665395,-0.019194866,-0.012277887,-0.054897934,-0.10126029,0.062289268,0.025082897,-0.07631585,0.08698433,0.06663544,-0.026862504,-0.055601444,0.057140652,0.028731422,0.015008924,-0.023823883,0.011402449,-0.08907025,0.029837186,-0.06379227,-0.00665621,0.014274698,-0.07839409,-0.024681838,-0.05420798,-0.003418793,0.05133554,0.03052505,0.03283418,-0.036204137,0.03563188,-0.04477122,-0.0361312,-0.010083475,0.052642275,0.036580674,-0.01684818,0.002600616,0.032546557,0.12136833,0.03246983,0.014600312,0.03547834,-0.07011439,0.06140182,0.038634017,-0.0486685,-0.035056856,-0.012914124,0.02039403,-0.020330466,-0.06728285,-0.06438568,-0.07227383,-0.02279522,-0.05099916,-0.014208405,-0.022503126,-0.046080872,-0.011383515,-0.011904329,-0.0119004985,-0.011650436,-0.00348843,-0.06929272,0.110608295,1.0603496e-32,-0.11176525,-0.057049792,-0.03885069,0.05951299,-0.00440375,-0.05349131,-0.037404645,-0.03210094,-0.0830958,-0.046217922,0.041188948,0.06476709,-0.017153485,-0.06019105,0.07440791,0.08933241,0.009334773,-0.07070312,0.033932656,0.03223056,-0.018038655,-0.042731553,0.0098245,-0.00031073944,-0.026929732,0.03314177,0.048038226,-0.09282331,-0.047316294,0.05522114,-0.046936437,0.07617915,0.048796564,0.052402254,-0.039835528,0.01710153,0.017891347,-0.010346993,-0.07206948,-0.056494094,0.041998424,0.021728903,-0.052001707,0.048596215,-0.07203121,0.09769696,0.086687855,-0.020202184,-0.04453309,0.008231331,-0.11522627,-0.012447052,-0.027262218,-0.074957244,-0.034715194,0.009282928,-0.06236754,-0.013998142,-0.0027849071,-0.042213555,0.05703726,0.010649803,-0.005301958,-0.018392997,-0.07082007,-0.0620655,0.08000313,-0.0064652925,0.07657623,0.034358975,-0.03553572,0.02027125,0.058541752,-0.01713144,0.104485065,0.039248828,0.011669293,0.09228016,-0.025205433,-0.004602759,-0.09085367,0.012714596,-0.038361564,0.054365743,0.09770341,0.04340894,-0.0013658991,0.0024251814,0.048584655,0.12164623,-0.03986356,0.049328193,0.0008146373,0.00052570243,0.044096068,-1.1281882e-32,0.0030651363,0.034503143,0.07266736,0.07060722,0.03614679,0.06757516,0.059380338,-0.03867112,-0.010820381,-0.037434716,-0.12308309,-0.12210067,0.043157004,-0.0028368742,0.029514488,0.040506616,0.023239648,-0.05024866,-0.07864628,-0.018178862,-0.025280092,0.0674468,0.058216196,-0.02135662,-0.015425342,-0.058847163,0.00689745,0.034228526,-0.124174386,-2.0757408e-05,0.06255952,-0.06336464,0.0051937113,-0.014289132,-0.10091896,-0.01458937,0.018119542,0.08698853,0.014305093,0.054092456,0.016083373,0.061528906,-0.06274079,-0.012834198,-0.0136025,-0.05289403,0.04232529,-0.13220137,0.046062093,-0.05453987,0.07553784,0.0032472296,-0.072276406,-0.050900552,0.058468252,-0.049207885,0.04826172,-0.010296051,-0.07980695,0.010999273,-0.0024153793,0.04344195,0.012554885,0.0021427632,0.06516596,-0.0013816633,-0.024790296,-0.016863422,-0.014349561,-0.010605847,0.057276405,-0.017984014,-0.037430488,0.028285036,0.034899287,-0.076589376,-0.04846758,0.009450856,-0.0053549707,0.0039255815,0.036740236,-0.029232128,-0.014791541,-0.018894404,0.0034203937,-0.008988894,-0.035125915,0.058966972,0.00955089,-0.017726341,0.11612315,0.051105693,-0.083365686,-0.013634365,-0.07052541,-3.7189213e-08,-0.029794091,-0.0026385763,-0.07199651,0.025704263,0.044745013,0.0029405097,0.05405384,0.042419065,-0.03695135,0.10780871,0.023626843,-0.034140468,0.03693202,0.05271384,0.015346496,0.071230575,0.061480023,0.1349875,-0.0045550284,-0.017648997,0.050382372,-0.015928501,-0.005626858,0.029482653,-0.03325224,0.010192977,-0.0272505,0.04340739,0.07764168,-0.080467425,-0.0078121633,0.02236417,-0.03221264,-0.05077841,-0.05586307,-0.09715801,-0.054562867,0.058722787,-0.012636618,0.05063395,0.04279466,0.035241224,-0.04477916,0.030177893,-0.09371433,0.016285332,-0.026752304,-0.01273204,-0.016170008,0.06509271,-0.06545828,-0.090707466,0.05456498,0.052571412,0.07378219,-0.042876832,0.021857794,0.009879705,-0.07400862,-0.09406088,0.056766536,0.053484287,-0.025137551,-0.02517143} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:22.745502+00 2026-01-30 02:01:10.098515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1474 google ChZDSUhNMG9nS0VJQ0FnSURRaS1XM0FREAE 1 t 1477 Go Karts Mar Menor unknown Fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plenty of poke. I will be visiting again before I leave fingers crossed. fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plenty of poke. i will be visiting again before i leave fingers crossed. 5 2018-02-01 01:52:39.833374+00 en v5.1 O2.03 {P1.01,O1.03} V+ I3 CR-N {} {"O2.03": "Fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plen"} {-0.035938792,0.03620749,0.057178285,0.05825461,-0.07688471,-0.019239033,-0.0071385507,-0.033273827,-0.074873954,0.010553284,-0.003963345,0.013805852,0.031663913,0.027985444,0.005224831,-0.039411515,0.04575773,-0.12865937,0.04834923,-0.07912406,-0.09962362,-0.022773063,-0.0050754575,0.034201548,-0.06441337,0.035706352,-0.03279974,0.05557288,0.004650708,-0.10663251,-0.14183705,0.086480245,-0.028066605,-0.0054458682,-0.0794748,0.018389832,0.0126055535,-0.088182755,0.025325144,-0.0127472775,-0.021569677,-0.014626998,0.026178159,0.059729137,0.006934294,0.030886367,-0.0056872796,-0.05114923,0.026601205,0.024996728,0.06261198,-0.084954515,0.111785434,-0.009988313,0.058008026,-0.024521863,-0.08625279,-0.010346036,0.06658453,-0.023656871,0.081171036,0.0031327219,-0.04927828,0.06071055,-0.058090135,-0.09296048,-0.0952272,-0.0016110785,0.06964035,-0.021440402,0.037358813,-0.015287614,0.020548597,-0.02352733,0.030594595,0.045384966,-0.058363196,-0.03688628,-0.04614077,-0.00055101374,-0.0053820875,-0.038318433,-0.013735181,0.005873622,-0.01148686,-0.067017324,0.07504658,-0.004190972,0.013975219,-0.028857823,0.08939295,0.14845642,-0.041213483,-0.020524444,0.015820999,0.003368493,-0.052750915,-0.030961191,-0.02466817,0.037985355,0.036133215,0.07465334,0.023465438,0.0072850874,-0.022884138,0.012627123,-0.055588543,0.04174989,0.03903278,0.0060956054,-0.015790783,0.0688765,-0.056886595,0.0084487805,-0.038228646,0.021244504,-0.026493534,0.0487141,0.014151374,0.038163025,0.08381725,-0.0031734193,0.011283638,-0.012754301,0.013076596,0.03292502,0.055533826,-1.4918594e-33,-0.07478699,0.061255768,-0.04715117,-0.00094347284,0.033164904,-0.08707677,-0.039101373,-0.061093874,-0.083108604,0.023623241,-0.03283706,0.14370659,-0.018511001,-0.009439331,0.06329232,-0.11126379,-0.01802285,-0.053925175,0.013509628,-0.0034403212,0.024958035,-0.07037957,-0.01006668,0.08678855,0.07232596,0.08085089,0.056417998,0.0032496082,0.012349942,0.026370399,-0.014605338,0.007901768,-0.032879155,0.0078063593,-0.10549382,0.017936323,-0.011245371,-0.08707691,-0.036805112,-0.008964599,0.00087896676,-0.034181837,0.011266737,0.03076877,-0.07879436,0.011880363,0.012189575,0.009766291,0.05023357,0.0007032455,-0.12112769,-0.019305846,0.01934973,0.06364691,0.0048274086,0.009094395,0.011097383,0.017296275,-0.075564794,0.009505173,0.05668004,0.055556897,-0.03441559,-0.05025369,-0.026241198,-0.0110900095,-0.012134299,-0.040090214,0.026388535,-0.041367922,-0.041071896,0.024630846,0.019495599,-0.042323716,0.016974028,0.024828171,-0.10587064,0.021067515,-0.029825304,0.03593782,-0.021578528,-0.008020958,-0.009514651,0.013847425,0.08744247,-0.009333705,0.054740634,-0.11577666,-0.024767864,0.049077686,-0.047191206,0.025321623,0.09315211,0.054821223,-0.00462266,-4.1623773e-34,0.028484676,0.02009251,0.10547865,0.08611296,0.0005762762,0.006356477,-0.006844657,0.04476966,-0.022957565,0.023425194,-0.022128817,0.11551155,0.013806259,0.017061781,-0.0743276,-0.010677028,0.04153748,0.007984459,0.034756783,-0.07572412,0.009617605,0.077611595,-0.06210096,-0.110545926,-0.0367399,0.10673833,-0.016237995,-0.08517144,-0.1151183,0.000550404,-0.022447327,-0.05605887,0.03987324,0.062090162,0.02785071,0.051556334,0.119272366,0.05740812,-0.07866137,0.00839527,0.06344773,0.040605582,-0.0031042185,0.06904778,-0.041941438,-0.04185485,0.050803185,0.036783352,-0.017438646,-0.008455389,0.017222537,0.06664381,-0.0358789,-0.061450537,-0.033368144,-0.034562595,0.038345717,-0.0063993125,-0.00406448,-0.05737157,-0.059101295,-0.033559643,-0.05305207,0.076692455,0.07366557,-0.04429088,0.07242683,0.0032570714,-0.007954178,-0.06425285,-0.06256327,0.03719402,0.00037315403,-0.0007909051,0.054000128,0.021793686,0.07176107,-0.03399618,0.030563388,0.021982333,0.056596883,0.021175891,-0.03403618,-0.005242659,0.06578186,0.049165606,-0.026430769,-0.043553215,0.053409457,0.06858021,0.014103963,0.08667514,-0.0067901644,-0.03441758,0.02286402,-2.9535173e-08,0.028824499,0.09409643,-0.056551307,0.004695396,0.09658993,-0.096238166,0.005909736,0.03842361,-0.07712077,0.017753482,-0.012955334,0.054308787,0.00503698,-0.020857075,0.07457676,0.012627454,-0.018497953,0.14790148,-0.03366329,0.025196124,-0.006553096,0.037193343,0.03784495,-0.012440204,-0.05310993,0.0033494798,-0.010968694,-0.036396906,0.01857319,-0.0046946406,0.012303372,0.008567198,0.014753486,-0.029290892,-0.038942967,-0.030268522,-0.10152223,0.0037478572,0.06394247,0.0161017,-0.095826894,-0.12405742,-0.11493763,0.055734582,-0.08098286,-0.014179316,-0.0507998,-0.0033105514,-0.030263573,0.0008369107,-0.1010199,-0.016606757,0.031934384,0.021076234,0.01748389,0.0147483,0.050118838,-0.04384715,-0.012550412,0.0037879432,-0.0449923,-0.050930873,-0.06677046,0.061673183} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.204674+00 2026-01-30 02:01:09.470622+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1464 google ChdDSUhNMG9nS0VJQ0FnSURqX1lDbnRnRRAB 1 t 1467 Go Karts Mar Menor unknown Always good fun at go karts Mar Menor, well and truly beaten by my son this time 😁😁 always good fun at go karts mar menor, well and truly beaten by my son this time 😁😁 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Always good fun at go karts Mar Menor, well and truly beaten by my son this time 😁😁"} {-0.047729116,0.049300533,0.01230216,0.021922663,-0.083912514,0.01722037,0.032872353,-0.080914065,0.027967468,0.02613344,0.002673674,0.00016061366,-0.00687764,0.061379813,0.025494484,-0.039028034,0.04046979,0.02859838,0.02798306,-0.054763194,-0.0907025,-0.015427193,0.050653163,-0.0055326447,-0.13243662,0.037992764,-0.045923103,0.05355459,0.027185893,-0.021787671,-0.068119645,0.008327743,-0.025373735,0.046655577,-0.042925168,-0.060055636,0.010069906,-0.09631106,-0.037145663,0.026421703,0.025899587,0.0037227264,0.0040089157,0.0077859103,0.0134561695,0.059492093,-0.025172666,-0.042127702,0.043878995,0.08439364,0.0033965528,-0.011132695,0.07741203,-0.02560855,0.04748451,0.005282482,-0.08167646,-0.029459631,0.085216805,-0.043155123,0.03234411,0.12710154,-0.036169473,0.013901989,-0.060295545,-0.07973143,-0.01810534,0.0808114,-0.013625495,0.14144535,0.01607531,-0.02017375,0.01958371,0.0077206525,0.026247058,0.102772,-0.11756058,-0.09310267,-0.08253701,0.05944458,0.003319676,-0.0005552749,-0.046620246,0.009398561,-0.06494065,-0.1024522,0.04467817,-0.029236114,0.08675801,-0.017593844,-0.008604061,-0.020987198,0.0031252697,-0.028173152,0.031070994,-0.018860962,0.005643473,0.019185668,-0.07308982,-0.0011301918,0.07827624,0.06005076,0.008098848,0.059589878,-0.02203983,0.11931967,-0.033018284,0.08298999,0.062689014,-0.010733655,-0.022594973,0.04787614,0.0034396576,-0.073350504,-0.022176653,0.014970685,-0.034581054,0.096487746,-0.04750865,0.00280872,0.01601296,0.011463351,-0.014024737,0.02351907,0.056628905,-0.114807524,-0.020131594,-1.697884e-33,-0.047151614,-0.02840214,-0.03150367,0.045847777,0.015030912,-0.025774073,-0.01715392,-0.14121008,-0.08574431,-0.0011811756,-0.007721727,0.024920525,-0.06081831,-0.021134797,0.0250472,0.037625175,-0.05263347,-0.05876708,-0.025242321,0.020244833,-0.026527394,-0.04365294,0.02083038,0.03018512,0.064630985,0.05280259,0.065912895,-0.060329046,0.045027833,0.0075444123,-0.010411476,-0.005705498,-0.09010893,0.025990864,-0.04041056,0.008391504,-0.01134053,-0.032205354,-0.10403375,0.07951493,0.048816152,-0.06646717,-0.015080727,0.0030843513,-0.045158066,0.005973183,-0.02302483,0.070943035,0.037997257,-0.06163268,-0.110522084,-0.0028024395,-0.041206848,0.0075244377,0.01694795,0.02663338,0.067498036,0.015240732,-0.086757936,-0.051186755,0.07979584,-0.032301817,0.023969764,-0.0031813914,-0.09820466,-0.04007122,0.040001836,-0.037739832,0.02112739,-0.039053977,0.030020218,0.045999717,-0.016545396,-0.06927686,0.11230051,0.032157104,-0.007403611,0.0141118085,-0.030803155,0.041173175,0.0023337917,0.007991732,-0.0824194,0.004172265,0.01578419,-0.022642236,-0.045131117,-0.14978506,0.023787584,0.082082815,-0.09768878,-0.04765005,0.06203889,0.039220896,-0.0048454516,2.7077675e-34,0.086520694,0.071923904,0.08482196,0.11832564,-0.0049610413,-0.045105867,0.010053286,0.021338925,0.074472174,0.048038658,-0.00018587967,0.04111535,-0.016245287,-0.00049532315,0.03256501,-0.0042925123,0.10963121,0.10434455,-0.012289964,-0.007309339,-0.026995078,0.026512126,-0.0020448521,-0.009659451,0.017086359,-0.0072693555,0.022240505,0.026907671,-0.08502694,0.027492257,0.02338543,-0.051618703,-0.012198372,0.01814787,-0.003198936,0.0048434483,0.014081373,0.07740541,-0.05709974,0.045866504,-0.025002956,0.036139287,-0.042266425,0.03668746,-0.010925164,-0.0017284495,0.04151586,0.030240145,0.05921874,-0.034355666,0.055225912,0.03420548,-0.052660163,-0.04663005,0.091389775,0.00069667585,0.10251549,-0.011723507,-0.09677031,0.00089986535,-0.09452746,0.060330227,-0.04930587,0.05837014,0.019092226,-0.020698821,-0.09449535,-0.05024536,-0.09215263,0.017730141,-0.1284722,0.035603344,-0.030083146,0.05985835,-0.015265027,-0.047967326,0.011046902,0.018889505,0.05584295,0.036715444,0.0049579707,-0.039614115,-0.021621387,4.1166637e-05,0.0009238917,0.04169851,-0.007618852,0.007248341,0.08484936,0.012482582,0.1123547,0.07058424,0.009170993,-0.0032592884,-0.011962679,-2.3298302e-08,0.005775215,0.06871917,-0.07507334,0.010058005,0.022072304,-0.008505327,-0.0067766616,-0.039411537,-0.05938099,0.0077393684,0.05309529,-0.0037291446,0.006189434,-0.036959484,0.089783445,-0.0465842,0.033721123,0.04942986,-0.004111719,-0.054005634,0.058333308,0.02461528,-0.021379048,0.05761077,-0.120050885,-0.042084303,0.051616836,0.012200811,0.048416518,0.0088287,0.044167534,0.030068837,-0.092386015,-0.0048974855,-0.015639089,-0.032438327,-0.017683664,0.054805025,0.040006395,0.08258066,-0.08361586,-0.032392316,-0.029182315,0.0027390707,-0.12177912,0.0689643,-0.032539666,-0.008893066,-0.0666212,-0.008967645,-0.066260785,-0.031813722,-0.016162112,0.070594795,0.06691174,0.016906215,0.01842541,-0.0054368456,-0.04295416,0.018046198,0.029432803,-0.015791364,-0.06051706,0.0016433058} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.383615+00 2026-01-30 02:01:09.440623+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1467 google ChZDSUhNMG9nS0VJQ0FnSUNXMzlpTUdnEAE 1 t 1470 Go Karts Mar Menor unknown My 2 grandchildren loved this place. Reasonable prices and a good track. my 2 grandchildren loved this place. reasonable prices and a good track. 4 2023-01-31 01:52:39.833374+00 en v5.1 V1.01 {O2.03,V4.03} V+ I2 CR-N {} {"V1.01": "My 2 grandchildren loved this place. Reasonable prices and a good track."} {0.026030159,-0.010984054,0.038464226,0.060946107,-0.09032329,0.056124143,-0.07712253,0.028525742,-0.046468146,-0.0074933274,-0.04714444,-0.00026340122,0.0242945,0.021764394,-0.038683113,-0.003791781,0.10195544,0.0039017876,0.06436187,-0.11992982,-0.08706153,-0.010432599,0.07131717,0.050707676,-0.04947594,0.07376088,-0.10568178,0.055474997,0.009354179,0.023755776,-0.017770344,0.0022495082,-0.0031251914,-0.034200344,0.033745475,-0.042146746,0.04045823,0.009244351,-0.029424783,0.043638647,-0.02392516,0.055721506,0.00062736025,-0.0063138236,-0.03206069,0.016803576,0.004536681,-0.06715392,0.11718017,0.049410056,0.03489954,-0.014105758,0.08957731,-0.09581307,-0.056848265,0.0624264,-0.05833301,-0.012892298,0.060130592,-0.027618892,0.013147921,-0.056513995,-0.07465433,-0.055229995,-0.03445801,-0.08779412,-0.079486206,0.02239579,0.05036711,-0.065029986,0.06574353,0.039711524,0.08099765,0.008561859,-0.014243492,0.04895568,0.022936905,-0.008152942,-0.052729912,-0.027198862,-0.02567957,-0.07237809,0.053541914,-0.08237732,0.011102765,-0.04611964,0.07273817,0.004871215,0.032047145,-0.006293378,0.011194724,0.05851048,-0.07853777,-0.053426836,0.0011220116,0.032381896,-0.031147573,0.033497855,-0.0140910745,0.018994862,0.03754603,0.0967083,0.071226425,0.037864495,-0.032543387,-0.0030881658,0.022734314,0.103256494,0.018865405,-0.028273204,0.014097866,-0.05386946,0.0101130875,0.054833997,-0.052040245,-0.026096081,0.008962192,-0.009393074,0.009049841,-0.010718506,0.008905585,-0.010121068,0.036619894,0.06878764,-0.057477243,-0.08051759,0.005913978,-4.970171e-33,-0.055127386,0.047868133,-0.03630268,-0.08264251,0.047339633,-0.0026016848,-0.06129614,-0.04228025,-0.040844873,0.07627109,0.024352979,-0.06101965,-0.0040530832,-0.03276487,0.040838785,-0.014511414,-0.12251972,-0.007977942,-0.09421013,0.032691956,-0.10481061,0.0057526985,0.02223483,-0.032405317,0.045142885,0.0077646733,0.020561598,0.023024417,0.06881832,0.016090125,-0.06729496,-0.023738777,0.012853197,-0.009427497,-0.045591548,-0.018038277,-0.057117388,-0.020201866,-0.00843554,-0.0146553535,0.024504328,-0.053685296,-0.032320667,0.06520722,0.0024326493,0.057908207,0.09725243,0.040666815,0.032046076,-0.0038952099,-0.06409818,-0.03762021,-0.119138725,-0.01636356,-0.028351191,-0.021906944,0.03707079,0.03914834,0.03205585,-0.00404458,0.08170732,-0.009206042,-0.018418597,-0.07133949,-0.026414298,0.0025662568,0.026447231,0.043808006,0.015421248,0.036548086,0.04702933,-0.031975802,0.034296673,-0.06473113,0.090938136,0.0023272226,-0.01316649,0.030838571,0.018126447,0.0026830537,-0.03300124,0.06461786,0.011508304,0.07205093,0.088832214,-0.052333232,-0.058905173,-0.04911087,-0.108674504,0.04555401,0.017178785,0.04053686,-0.062278785,0.027399614,0.01300121,2.8833198e-33,0.05356168,0.068571776,0.0882204,0.020830777,-0.011454777,0.038764376,-0.085400194,-0.0024499488,0.079390965,0.09546944,-0.12961525,0.056745335,0.035552356,0.046037734,-0.06736034,-0.034458302,0.052783094,0.0046550976,0.06499,-0.1121133,-0.025265707,0.07077241,-0.0644433,0.045967013,-0.0006275221,0.032485377,-0.03999751,-0.018556738,-0.045656994,0.043215536,-0.10955745,0.004830549,0.04980238,-0.038938116,-0.027786523,0.020951439,0.037828047,0.031964418,-0.0773306,0.018286569,0.021809246,0.012313633,0.060661007,0.03007187,0.020979622,-0.011081752,0.014609306,0.08126251,-0.0183059,0.01914146,0.005085901,0.014864093,0.01600319,-0.018635279,-0.059786826,0.009337706,0.03590488,-0.001047191,-0.0071331174,-0.027688997,-0.07396584,0.09281317,-0.07408802,0.064103365,0.07140142,0.0074694706,-0.0503104,-0.08656185,-0.10362334,0.05991835,-0.066355266,0.016599437,0.0045318287,-0.025050668,-0.048164345,0.02203936,0.093068786,0.051507663,0.06783644,0.100695565,0.046481434,0.029888948,0.021257577,-0.027390411,0.041760962,-0.0033524716,-0.08499832,-0.026873931,-0.029593254,0.07281123,0.07284962,0.054022346,-0.049697448,-0.045311216,-0.11159552,-2.01044e-08,0.036569655,0.084406465,-0.0172464,-0.008848796,0.026665108,-0.035861164,0.084819585,0.05684436,-0.06708311,0.07366933,-0.022127569,-0.029677317,-0.010570574,0.0329504,-0.029953923,-0.04876535,0.009064492,0.08239196,-0.03313752,0.04854146,0.008898321,0.057450656,0.018249605,0.07433821,-0.0528057,-0.059959676,0.05104145,0.0122672,-0.016843643,-0.08858933,0.016499216,0.033114832,0.057313606,-0.013848052,0.009623979,-0.10876353,-0.10837035,0.041816976,-0.00859594,-0.043208223,-0.0404808,-0.015050816,-0.09711371,-0.031098055,0.08259881,0.044410493,-0.019596701,-0.013195467,-0.0075585814,0.021073634,-0.11003704,-0.061330028,-0.080952935,0.033376783,0.037108783,-0.000892527,-0.06975335,-0.025935965,-0.030409856,0.053763147,0.03523299,-0.016320253,0.012739928,0.07824342} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.106259+00 2026-01-30 02:01:09.450655+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1643 google Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB 1 t 1646 Go Karts Mar Menor unknown Probablemente mi circuito favorito de Murcia. Es mucho más friendly y para todos los públicos que otros en los que he estado. También tiene muy bien organizada toda la zona fuera del circuito. probablemente mi circuito favorito de murcia. es mucho más friendly y para todos los públicos que otros en los que he estado. también tiene muy bien organizada toda la zona fuera del circuito. 5 2025-10-02 00:52:39.833374+00 es v5.1 P1.01 {A3.01} V+ I3 CR-B {} {"E1.03": "También tiene muy bien organizada toda la zona fuera del circuito.", "P1.01": "Probablemente mi circuito favorito de Murcia. Es mucho más friendly y para todos los públicos que ot"} {-0.008001868,0.06647384,-0.008386404,-0.093536794,-0.07126322,-0.044967942,0.04380596,0.06860802,-0.043480676,0.0064466763,0.06352498,-0.039138272,0.030527495,0.04928059,0.06410371,0.07841274,0.031575248,0.0449897,0.013847625,0.057479315,0.078788936,0.015272433,-0.0355662,0.07920797,-0.13887358,-0.05287286,0.047176424,0.029472666,-0.09977971,-0.114461266,-0.07324277,0.06584793,0.076409504,-0.015376228,-0.067450106,-0.00971673,0.06174176,0.006072879,-0.0044911574,0.047760215,-0.09940077,-0.030965209,0.029851146,-0.049649414,-0.038354438,-0.070530325,0.040827617,-0.025260739,0.034164004,-0.055420015,-0.040351085,-0.02598905,0.039765235,0.012735306,-0.007218512,-0.0039944984,-0.045669246,0.04281008,0.07365584,0.051410213,0.0020157974,0.01629404,-0.010365312,0.060195796,-0.005447257,-0.090699375,0.038857847,-0.02121803,-0.0816933,-0.020365465,0.08137727,-0.052780982,0.07060042,-0.10398531,-0.018971564,0.07790201,0.00472898,0.0020435795,-0.012816084,-0.03851067,0.005727593,-0.05550642,-0.064009465,-0.039527427,0.08701488,0.044711202,-0.07379029,-0.03510557,-0.02219757,-0.017246198,0.015028585,0.062456194,-0.008445904,-0.041082956,0.00240008,0.026293412,0.013699886,-0.08893932,-0.023183009,0.07291045,0.057323378,0.021240974,0.0315365,0.052849017,-0.0154100945,0.04796648,0.07304734,-0.018619899,-0.02608641,-0.029322524,-0.015948622,0.006823395,-0.08353746,-0.005448122,0.00362992,-9.522643e-05,0.012029811,0.03763134,-0.021489408,-0.029073404,-0.010883601,-0.0348351,-0.099353164,-0.0074995696,0.023342013,-0.0019950946,0.085336395,1.05145046e-32,-0.019703906,0.01712569,-0.026414683,0.027219463,0.03634066,0.065212764,-0.008208755,0.023210414,-0.040593475,-0.048376184,-0.028806074,0.0777964,0.022359205,0.051186766,0.034008868,-0.05520166,-0.030645937,-0.08302641,0.055985518,-0.018528175,0.021662127,-0.07740251,0.009389881,0.037695445,0.039826207,0.060232777,0.027579317,-0.08402693,-0.031163197,0.04521824,-0.05238693,0.013298165,0.040337875,0.02188835,-0.03235425,0.056587614,-0.00701041,0.04144871,-0.026695428,-0.023390083,-0.0074921553,-0.00263466,-0.10258874,0.032442458,-0.012691769,0.032690834,0.031966552,0.03830083,0.103486806,0.017654916,-0.060875565,-0.04318643,-0.07903615,-0.07459038,0.047218375,0.017076848,-0.056793623,0.060365044,0.02608755,-0.02681502,-0.017520381,0.082141206,-0.022914695,-0.050151527,-0.05911573,0.036084913,-0.02547047,-0.07720705,0.06423459,0.012959697,-0.07690285,-0.01030553,-0.112725355,0.04305616,0.008057979,0.006354912,-0.081117555,0.020510634,0.07817446,0.016454441,-0.08845278,-0.010572367,0.065849304,0.061505906,0.14473492,0.086960636,0.022485001,0.03410991,-0.017240105,0.14470646,-0.030057933,0.08170092,0.075018935,0.021237347,0.044499945,-1.1242766e-32,-0.082795866,0.0012930894,0.094207756,0.06707279,-0.016899014,-0.01915619,-0.06744265,-0.056231808,-0.03456257,-0.0058570034,-0.045067925,-0.037879966,0.059344918,-0.06939464,0.018331591,-0.015321156,-0.011082446,-0.072922,-0.047517065,0.0073265,0.010831501,0.06432167,0.018258564,-0.045523573,-0.06646615,-0.044038087,-0.04943164,0.0041308496,-0.03004941,0.010242492,-0.05069883,0.011545414,-0.013557571,0.0042259176,-0.040080547,0.045312997,0.0018990204,0.0717595,-0.009214036,0.019018121,-0.054242834,0.05057288,0.015769243,0.04296208,-0.07462793,0.06992088,0.019398978,-0.12468998,-0.021275021,-0.021560945,-0.007904439,-0.03865009,-0.025691934,-0.04850671,0.03084614,0.0069467505,-0.04951588,-0.054773938,-0.040731538,-0.06869591,0.06621575,-0.015779367,-0.051669437,-0.057247538,0.10857452,0.079706736,0.033547472,0.041329876,0.022884632,0.0479325,0.10852279,0.010152629,-0.06646061,-0.01915801,-0.03791389,-0.012648597,-0.09696607,0.013465646,-0.00896281,0.030386092,0.09186478,0.0027159075,-0.037434917,-0.13798334,0.065612875,-0.045531966,0.057788163,-0.0032129223,0.009023952,0.008639193,-0.0105511695,0.03569967,-0.07654638,-0.09304791,-0.0047035017,-4.50448e-08,0.029866003,-0.05882586,-0.061614856,-0.03694575,-0.010180568,-0.053775255,-0.026218357,-0.022531126,-0.029691748,0.053285673,0.03736831,0.014498369,0.012621408,0.065962285,0.03997371,0.048477016,0.060795195,0.03326291,-0.033329487,0.036734786,0.043051198,-0.023680892,-0.031644404,0.061932046,0.07669113,-0.017985573,-0.02858009,-0.009368787,0.014241025,-0.022260668,-0.02556738,0.00036661746,-0.02529006,-0.019715397,-0.041302577,-0.0126567865,-0.06443152,-0.02655485,-0.0140991695,-0.039805163,0.08783664,-0.03849204,-0.039308477,0.01420223,-0.018048303,-0.124375276,0.014060757,-0.04515279,-0.027291797,0.062092535,-0.07627427,-0.054009095,0.0788426,0.004190354,0.064352244,-0.011112236,0.088499755,-0.019066205,-0.06612207,-0.021047149,0.0072421827,0.07402871,0.047926616,-0.107824355} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:13.521919+00 2026-01-30 02:01:10.152528+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2123 google ChdDSUhNMG9nS0VJQ0FnSUNtdlp2QWh3RRAB 1 t 2126 Go Karts Mar Menor unknown Buena gente y pista divertida. Almuerzos cumplidos a precios normales. buena gente y pista divertida. almuerzos cumplidos a precios normales. 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {O1.02,V1.02} V+ I2 CR-N {} {"V1.01": "Buena gente y pista divertida. Almuerzos cumplidos a precios normales."} {0.0028940192,0.052566648,0.03841167,-0.011613609,-0.08129177,0.022051623,0.013561381,0.07648496,0.012980787,0.042024065,0.1299092,-0.034108657,-0.065584704,-0.024444075,-0.017291129,-0.04844871,-0.020585751,0.014429259,-0.016407294,0.06428463,0.06924221,0.01106238,-0.06953638,0.093373425,-0.05804971,0.017461997,0.0054273885,-0.049790833,0.055024784,-0.061217573,0.008294319,0.07136134,0.12383817,0.015133454,-0.00633313,-0.017087936,0.05565431,0.021285933,0.01716646,0.07282745,-0.07677394,-0.044228908,-0.018996084,-0.051897593,0.0094879,0.018894449,0.027347866,0.018752752,0.0745769,-0.034066528,-0.06371568,-0.053006496,-0.0014977728,0.027920384,-0.0027141538,-0.0120820915,-0.019854385,-0.08714756,0.06026636,0.038137212,-0.08837554,0.018385919,-0.08651557,0.0027363822,0.0628319,-0.015108087,0.0074333237,0.020332051,-0.054509822,0.031676084,0.10440848,-0.022829296,-0.01743712,0.02251631,-0.04103566,0.06216025,-0.02205435,-0.0049358285,-0.13724388,-0.07137792,0.01388774,0.0029822686,-0.027744977,-0.05471018,0.041186057,0.034173444,-0.063618444,0.04626247,0.050053634,-0.011467551,-0.06974487,0.0044197603,-0.029360792,0.02163841,-0.015882485,0.029651565,-0.031869207,-0.12653628,0.026260424,0.01761411,0.081407405,-0.004328325,0.043121416,-0.035063386,-0.033408493,0.011288627,0.025420746,-0.012855025,0.00998168,0.054931633,-0.042342514,-0.047497645,-0.038425673,-0.034613952,-0.08618173,0.021197116,-0.0034145087,-0.07647733,-0.0132887,-0.13087526,0.030334543,0.04630413,-0.019653043,0.011424479,-0.01601008,-0.033519793,0.037895672,8.450311e-34,-0.07723901,-0.07961696,-0.08687649,0.11351294,-0.0308357,0.031853203,-0.0075889896,-0.11143997,0.02405519,-0.038952112,-0.010138925,0.026543058,-0.043850526,0.07213743,-0.045700356,0.02260006,0.032889858,0.0026782246,0.051455073,0.055939395,-0.052789878,0.024123281,-0.05751996,0.04718804,-0.026876802,0.023398602,-0.08160108,-0.096255906,-0.06042326,0.052169632,0.013003925,0.06306964,-0.030480327,-0.008340613,-0.0034375351,0.012239909,0.054038927,0.015434358,-0.008796765,-0.019798327,-0.005719506,0.027691912,-0.037908856,0.040431425,0.07226977,-0.015572408,0.04157967,0.051363315,0.058760148,0.04258449,-0.0065814336,-0.05053906,-0.02807349,-0.03385236,0.019442959,0.03369395,-0.08306281,0.0628218,-0.057200365,0.028399458,-0.0077112457,0.05346425,-0.0317748,-0.017909827,-0.057953544,0.002784645,0.013902876,0.05421092,0.09657433,0.11589146,-0.1079422,-0.054910023,-0.02975318,0.086298876,0.001870404,-0.041624088,-0.024222463,0.041622356,-0.012959663,0.029794017,-0.042597275,0.040591493,-0.0018875351,0.020547992,0.04019261,0.09130476,0.10865515,0.09121153,-0.048535924,0.04412918,0.028184388,0.08471241,0.04703991,-0.0023700553,0.0006498146,-3.1882077e-33,0.020800376,-0.014082738,-0.06571872,0.06054549,-0.04187697,-0.0069831056,-0.014612015,-0.0024877428,-0.12059235,-0.09285334,-0.04597321,-0.085873134,0.14661421,-0.067184396,-0.057937656,0.025363661,0.061974544,0.00045946788,-0.044050794,-0.060242444,-0.07850151,0.09662534,0.057751216,0.0033237946,-0.011074447,-0.036362004,-0.05640642,0.053325415,-0.06906061,0.0085946545,-0.048047215,0.045710083,-0.033764597,-0.013853817,-0.002084586,0.08454998,-0.019526483,0.04667294,-0.021591052,0.028730256,-0.059924923,0.049655117,0.018691786,0.03324714,-0.04847838,0.090526074,0.005218627,-0.08321034,-0.054161344,-0.049798515,0.0051375064,0.0072731553,0.019546822,0.0038182673,0.04926115,-0.061594635,-0.028975353,-0.07236517,-0.09718588,0.005947303,0.07803702,0.0015405117,-0.048298575,-0.056295108,0.09482575,-0.037702955,-0.06639067,-0.049206384,0.04884071,0.04605173,0.1375601,0.0122556435,-0.014081594,-0.028701372,-0.023060512,-0.019415047,-0.060216468,-0.0002683878,-0.044132933,0.020027533,-0.078881115,0.058097888,0.0330096,-0.042678997,-0.031772044,-0.05690092,-0.0076372204,-0.031209558,-0.028690344,0.013597551,-0.027198281,-0.016894259,-0.05008738,-0.022668565,0.012179374,-2.5472183e-08,-0.016000316,-0.021812087,0.014550272,0.018779688,0.022603922,-0.034657855,-0.08919239,0.07420082,0.0004370972,0.07605296,-0.017284524,4.3306827e-05,0.026078757,0.08640956,-0.011923462,-0.0047673583,0.08360786,0.14050086,-0.028655231,-0.05964624,0.070260555,-0.015149523,-0.05514687,-0.025910977,-0.012744541,0.07049974,0.002573922,-0.0032878031,-0.03343667,-0.025219204,0.031999096,-0.051735137,0.020351129,-0.080753304,0.022608725,0.044935316,-0.011397837,0.014099933,0.006521341,-0.04811742,0.059024926,-0.00057047606,-0.037098713,0.009858711,-0.025791567,-0.09088404,0.043904442,0.0536303,0.017470855,0.035293523,0.015494749,0.0017033615,0.09916073,0.028322902,0.03660766,-0.03352952,0.04480649,0.028859505,-0.036763143,-0.025792211,0.032524034,0.1481095,0.015349024,-0.04135581} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.520584+00 2026-01-30 02:01:12.036434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1517 google ChZDSUhNMG9nS0VJQ0FnSUM3bktDRVV3EAE 1 t 1520 Go Karts Mar Menor unknown Very professional good and fast go karts very professional good and fast go karts 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {P2.02} V+ I2 CR-N {} {"P1.01": "Very professional good and fast go karts"} {-0.027010126,0.026326563,0.016201735,0.0602332,-0.14110994,0.029423602,0.0064887726,-0.009960081,0.0059566163,0.01777904,-0.010772623,0.025849482,-0.05195978,0.034969702,-0.011430381,-0.06495199,0.07094633,-0.02666854,0.0054262914,-0.1165114,-0.11032632,-0.06278059,0.012866537,0.006935197,-0.0834081,-0.048661076,-0.0099147195,0.064303,0.032237113,-0.03056747,-0.107721224,0.00885791,-0.0050271866,0.03505958,-0.040062368,0.004204112,0.032177135,-0.03346793,-0.06857256,0.029120987,0.06725189,-0.031870693,-0.03185184,0.008103786,-0.006808691,0.045601707,-0.013984771,0.014883297,0.0092849145,0.06640277,-0.055277586,-0.07677406,0.027914064,-0.0637965,0.008330994,-0.007142862,-0.10245466,0.03917168,0.0772013,-0.03700907,0.06577188,0.024999663,-0.08945134,-0.00082997454,-0.025473027,-0.012054306,-0.038065556,0.102913134,0.007260776,0.02623171,0.0019214567,-0.0019593763,0.007717674,0.07667642,0.059749186,-0.0026274498,-0.02292162,-0.07628062,-0.09820196,0.020514674,0.023563553,-0.017285641,-0.02802135,-0.0607003,-0.06515169,-0.041910693,0.05592978,0.043426543,0.013435606,-0.0023130374,0.044200573,0.027751455,-0.030981941,-0.050027642,0.05954162,0.052620754,0.0051531373,-0.053360462,0.007646455,0.039912745,0.09168053,0.002465522,0.082106195,0.039391406,-0.053260688,0.022206204,-0.006266802,0.08491731,0.0705235,0.08361864,-0.044244304,0.06348372,-0.072428815,-0.03952628,-0.022828799,0.05425642,-0.105044045,0.08772992,0.002082075,-0.007932351,0.014254557,0.0030378243,0.027090376,0.01772371,0.006791695,-0.06639433,0.04841758,-1.3028326e-33,-0.07419034,0.057079542,-0.02572308,-0.004533601,0.01896166,-0.0882862,0.011814549,-0.12098089,-0.07796789,0.063038796,-0.049355287,0.060780045,-0.017828358,0.040904917,0.0726285,0.002635047,-0.040953886,-0.039664954,-0.03364482,0.033209644,-0.016434902,-0.03198366,0.02708338,0.03792977,0.055310983,-0.028453602,0.06601858,-0.022968719,0.027838105,-0.0005957451,-0.045238115,-0.0013699556,-0.057498876,-0.0004339787,-0.02182713,0.04939531,-0.059953686,-0.0573764,0.025346924,0.039052054,0.031105962,-0.016502285,-0.009428559,0.032526836,-0.047210876,0.00047680328,-0.01833992,0.06802368,-0.00945169,0.0009067756,-0.025420226,-0.0150379455,-0.045419496,-0.009649531,-0.04463179,0.020974346,0.090559945,0.073228866,-0.075675204,0.0060437704,0.07985349,0.042182345,-0.047803655,0.017170303,-0.09861516,-0.065001056,-0.014214325,0.007195448,0.049418792,-0.03472128,-0.052754126,0.03873364,0.12069055,-0.038005892,0.053146422,0.00025099254,-0.066803485,0.01672998,-0.024482666,0.11408914,-0.014413882,0.063778676,-0.08213154,0.033802465,0.04043181,0.03454403,-0.101931415,-0.00028212584,0.10180582,0.057672776,-0.084437214,0.033439606,0.0013575614,0.035832904,-0.028498352,3.2404619e-34,0.054530405,0.048586555,0.115058124,0.21264794,0.060160015,0.03242369,-0.00083153154,0.05347429,0.054441456,0.041949395,0.0139437765,0.020043623,-0.007955488,-0.0112866135,0.08126007,-0.028713359,0.039450303,0.074168496,0.022739299,-0.085639864,0.019794635,0.008566183,-0.007956226,-0.03987832,-0.042726304,0.03159334,-0.021375513,0.057491068,-0.14092143,0.020664345,0.019719776,-0.03105875,-0.042332638,0.00010288473,-0.055520188,0.05198545,0.0101375785,0.086911045,-0.066166244,0.06179137,0.040353153,0.008044557,-0.03399468,-0.023022775,-0.06894941,-0.043097503,0.062470496,-0.006629015,0.07486919,-0.004609587,0.07152231,0.0460639,-0.022539623,-0.054039344,-0.04170455,-0.062813655,0.03371093,-0.018548112,-0.038922284,-0.012199115,-0.0629385,0.035463735,0.021018889,0.081363335,0.06282841,-0.0104466025,-0.032060724,-0.060771402,-0.073284425,0.0024539207,-0.070300326,0.039891962,-0.003878681,0.024395522,-0.059535645,-0.06664628,-0.01401397,0.04300788,0.03322325,0.04269537,0.039434034,-0.0793567,-0.014494652,0.06785643,0.008899852,0.10301788,-0.08349795,-0.008733989,0.061024427,0.002130548,0.09129394,0.053526517,0.029392492,0.0068121324,-0.0305427,-1.629204e-08,0.021144446,0.06483404,-0.076256104,0.053269487,-0.011320177,-0.04763072,-0.05463853,-0.005399349,-0.038010344,-0.004724732,0.025657784,-0.043567386,0.024074398,-0.0060970476,0.024339547,-0.07737855,0.0014098089,0.18680589,-0.029112028,0.0067536305,0.05129512,0.019957807,-0.010441777,0.072670445,-0.0454102,-0.087460056,0.014448918,0.044988893,-0.022765024,0.06617699,-0.026583051,0.04461607,-0.010519771,-0.029557921,0.021506077,-0.008816579,-0.007913681,0.04681404,-0.048072163,0.029862957,-0.050898194,-0.04278129,-0.042319592,9.078168e-05,-0.069297515,-0.0415191,-0.026643094,-0.010772368,-0.046187147,0.0017996148,-0.015193116,-0.022066228,-0.0186203,0.037929017,-0.026297944,0.04953717,0.013790299,-0.07356742,-0.029777678,-0.03050296,-0.06329808,-0.09751548,0.03642276,0.000756897} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.039607+00 2026-01-30 02:01:09.633987+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1640 google Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB 1 t 1643 Go Karts Mar Menor unknown ¡Buenísimas máquinas, la verdad! 👍😎 Pero el asfalto deja un poco que desear. 🤔 Se nota bastante deteriorado en algunos tramos. 🚧 Estaría genial que lo arreglaran pronto para disfrutarlo a tope. 💯 ¡A ver si se animan! 💪👏 ¡buenísimas máquinas, la verdad! 👍😎 pero el asfalto deja un poco que desear. 🤔 se nota bastante deteriorado en algunos tramos. 🚧 estaría genial que lo arreglaran pronto para disfrutarlo a tope. 💯 ¡a ver si se animan! 💪👏 4 2025-07-04 00:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"E1.01": "Pero el asfalto deja un poco que desear. 🤔 Se nota bastante deteriorado en algunos tramos. 🚧 Estar", "O1.02": "¡Buenísimas máquinas, la verdad! 👍😎"} {-0.019101065,0.01704333,0.07737805,-0.042518612,-0.013799708,-0.07123767,0.029973002,-0.0034201036,-0.022765178,-0.0031225428,0.063257225,-0.042241342,0.061661094,-0.033153553,-0.06789922,0.06188113,-0.072345026,0.024438605,0.099669196,0.06117465,0.0323149,-0.0036612698,-0.04084812,0.13130358,-0.01815155,-0.05901021,-0.03647147,0.055912208,-0.087886415,-0.0070451037,-0.05024197,-0.0017135043,0.054979116,-0.026835172,0.0031166985,0.022540266,0.035458636,-0.038597338,-0.0526914,0.024132367,-0.052362192,-0.07104433,-0.06944877,-0.01925244,0.02187216,-0.027017724,0.06583149,0.08515974,0.02296938,-0.0004809495,-0.049932655,0.004102625,-0.009896575,-0.024090031,-0.022551337,0.024277331,-0.002094677,-0.037548114,0.049598593,0.018977253,-0.012931065,0.078772634,-0.0008132971,0.018064514,0.053752974,-0.0034405165,0.042546626,0.026776295,-0.10102653,0.116521835,0.05427444,-0.07783888,0.0037607518,-0.019185668,-0.06962543,0.04257981,-0.0023207297,-0.012663602,0.00054777914,-0.021198733,0.022476139,-0.022198692,0.0075246026,-0.03884792,-0.0370151,-0.028956484,-0.01728532,-0.09063745,0.03668293,-0.027860917,-0.023545252,0.048686888,-0.08855231,0.040600386,-0.030639067,-0.012827588,0.01462178,-0.04692269,-0.029641833,-0.020868113,0.071855925,0.024912737,0.04466343,-0.035187934,-0.062087726,0.008475933,0.00670612,-0.054860324,0.0026465773,-0.020385178,-0.015736269,-0.072695285,-0.007785037,-0.04431084,-0.06945287,0.015476434,0.014767889,-0.054350182,-0.055772547,-0.07123012,-0.00023574445,0.031709924,-0.03461167,-0.047768436,0.051329754,-0.030628268,0.06645804,1.1741156e-32,-0.03208988,-0.043111864,-0.03862688,0.013876778,-0.022159157,0.028518325,-0.09665032,-0.009658885,-0.048330247,0.05925603,-0.052641854,0.014617225,-0.049718075,0.05805956,0.070602715,0.10209852,0.09654603,-0.09474594,0.0356264,0.059120383,-0.09475185,0.053492356,-0.03169061,-0.026974052,-0.031899773,0.044353228,0.013433603,-0.10263306,-0.11598105,0.06420894,-0.0054000546,-0.012962643,0.013868602,-0.07694883,-0.021462945,-0.08092696,0.012821513,0.041847184,-0.01574689,-0.01762351,0.039873894,0.03921599,0.018256655,0.0350778,0.0142916115,-0.024866084,0.06232564,-0.021347627,0.008965154,0.017903252,0.00054716546,-0.03400739,-0.01036567,-0.018297259,0.035279933,-0.062360458,-0.076089375,0.058931116,0.004124074,-0.006278935,0.07537542,-0.036441267,0.044680424,-0.04948478,-0.0069725895,-0.11923643,0.015677398,0.1326977,0.08739679,0.016102528,0.0026735896,0.03602012,-0.03172452,0.002060374,0.0065687937,-0.044942778,0.03698537,-0.007922341,0.058976993,-0.059086803,-0.013757087,-0.04035996,0.0397884,-0.037859865,0.06710485,0.13064434,0.06838778,0.04338668,-0.010342504,0.11084336,-0.04448611,0.02672395,0.024338897,-0.05006794,0.039393254,-1.17920656e-32,-0.008191444,0.05416738,-0.01869753,-0.041091025,-0.08893351,-0.037388436,0.0039652917,0.0591303,-0.062771484,-0.03886211,-0.15342957,-0.0718299,0.10886244,-0.030220015,-0.010445768,0.0765635,0.0040944316,-0.044541348,-0.058129538,-0.08074798,-0.014463525,-0.018677257,0.026324099,0.022751614,-0.021459538,-0.059116095,0.035670266,0.029980756,-0.026375137,-0.063172504,0.013119413,0.004692154,0.04785045,0.051722866,-0.01366911,0.036692996,0.09355758,0.019328654,-0.022187866,0.03113624,0.01464742,0.08198761,-0.038674243,-0.051212188,-0.016694486,0.073663995,-0.07867101,-0.10359222,0.0052018776,-0.087992564,0.06319936,-0.08245263,0.075839214,-0.072086796,0.07272673,-0.042786982,0.0037944121,-0.07343167,-0.055882346,0.013263076,0.056686565,-0.029428292,-0.014186033,-0.04390148,0.066636115,0.030240867,-0.0411299,0.0049668825,-0.022644995,0.03152501,0.05153962,-0.012707841,-0.14274812,0.03488409,-0.1168786,-0.0052502924,0.010760123,-0.005102003,0.03672355,-0.018631747,-0.012723739,-0.0475991,0.027635168,-0.0062920153,-0.06200091,-0.04363629,-0.0228775,0.09720154,-0.053024955,0.06946801,0.045130245,0.008192053,-0.022870952,-0.08540572,0.01067272,-4.782693e-08,0.017063461,-0.07261506,0.019843642,-0.046200752,0.042816848,0.05160116,-0.018316638,0.025400886,0.071462125,-0.035073668,0.010183232,-0.031665433,-0.0047944924,0.043283474,0.017092576,0.10282325,0.10240423,0.06999794,-0.0370811,0.0047756205,-0.0029293087,0.070214994,-0.101993576,0.039763335,-0.03275944,0.017684916,-0.035782684,0.027993897,-0.0021595748,-0.025061613,0.019768134,-0.044571586,-0.030143516,-0.07203537,-0.062249277,0.04598735,-0.0017450145,0.009267057,0.022558015,-0.04646643,0.075341575,-0.008433291,0.010743054,0.00940714,-0.0069648186,-0.081427,0.01901149,0.023330636,-0.014675612,0.052945867,0.004546548,-0.043854613,0.11832487,0.008446873,-0.007399036,-0.03393716,0.057883736,0.060414404,0.041171424,-0.032019675,0.17748153,0.06577641,-0.03162188,-0.006890546} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:53.139197+00 2026-01-30 02:01:10.14355+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1641 google Ci9DQUlRQUNvZENodHljRjlvT2poYWRtVTRkbnB1WHpCdFJGQk1Tak5SVDBKM1pIYxAB 1 t 1644 Go Karts Mar Menor unknown Karting génial adapté.\nAutant pour les adultes , que les enfants. karting génial adapté. autant pour les adultes , que les enfants. 5 2025-09-02 00:52:39.833374+00 fr v5.1 O1.01 {A3.01} V+ I3 CR-N {} {"O1.01": "Karting génial adapté. Autant pour les adultes , que les enfants."} {0.0064307903,0.012990847,0.017042698,0.012655768,-0.057922184,0.08127357,0.002970818,0.08359773,-0.025917318,0.021099526,0.053319193,-0.030219859,-0.003070044,-0.027157743,-0.037134483,-0.0038701172,-0.059803408,0.056653842,0.035960484,0.027987242,-0.019784544,-0.023731526,0.040560067,0.0322084,-0.10559076,0.024855567,-0.033772558,0.07769432,0.01879656,-0.023250734,0.018350042,0.07513225,-0.048340414,-0.050456163,-0.014220283,-0.017564977,-0.054652676,-0.05045857,0.0016523699,-0.011120214,0.0026765699,-0.069032416,-0.07261297,-0.06696375,0.01678081,0.035076622,-0.070407644,0.017042084,-0.07668879,-0.013953184,0.026245056,-0.03348554,0.11597508,-0.012147915,0.010193822,-0.07731305,-0.039033245,-0.04146003,0.0750132,-0.011746511,0.057336286,0.01411356,-0.035657182,0.018943582,-0.13779111,-0.057838112,0.032568004,-0.0076286998,0.012293213,-0.003792513,-0.0022812109,-0.021915779,-0.1249193,0.03146147,0.00548437,0.026801703,-0.002480569,0.026985615,-0.010929274,-0.095881306,-0.009218425,-0.056625113,0.032359622,-0.0053829676,0.08409171,-0.040075574,0.030783143,0.021518335,-0.020337295,0.03900669,-0.08864637,0.02749535,-0.026340006,-0.0038113785,-0.01725811,0.011094638,-0.09769855,-0.08872285,-0.022853,-0.021358315,-0.032251347,0.041068617,0.09980493,0.16180895,-0.08834815,-0.01809192,-0.018569525,-0.04570813,0.013127065,0.012660206,-0.03870173,-0.06701017,0.036563657,0.019839242,-0.036619343,-0.016057245,0.01704138,-0.043373935,0.0002029719,0.03916626,0.02763259,0.027089594,-0.02798011,-0.022971436,0.006741715,-0.0104025155,0.09973324,-3.6539746e-34,-0.105963305,0.010425084,-0.0010440584,0.009424634,-0.0021656945,-0.038947254,-0.050513193,-0.040538073,-0.00948432,-0.053759504,-0.030969393,0.10609433,-0.040886607,0.036441907,0.10199255,0.013797616,-0.043018974,0.017591812,0.098338746,0.03066822,-0.03973005,0.04358527,0.050131872,0.06416987,0.05535343,-0.017731484,0.057719506,-0.023413755,-0.056321315,0.015306866,0.023935951,-0.03662538,-0.039415978,-0.049840312,-0.05861829,0.024337966,0.047119103,0.057554636,-0.054049015,0.08215412,0.0071541327,-0.05381828,0.016685398,0.0027981012,-0.072467074,0.076519966,0.093770385,-0.02650313,-0.008428363,0.023096878,-0.029288566,0.028567092,-0.05280421,-0.07042085,-0.0005968003,0.050738297,-0.05382589,0.027091708,-0.067501955,-0.067925975,0.06864461,-0.029812718,-0.008010136,-0.0033138632,-0.06072008,-0.06421689,0.08599262,0.0035021082,0.043307617,0.0002387257,-0.047174197,0.015102731,0.038335126,-0.041012056,0.016226862,0.027700221,-0.062124304,0.07598227,-0.056361634,-0.023837123,-0.055387024,0.0021958512,-0.030163877,-0.036777504,0.099044226,-0.097705305,-0.0016051837,0.042617884,0.05822278,-0.002233154,-0.031377606,-0.05406072,0.016846772,0.07846061,0.0715183,-2.8847333e-33,0.007822822,-0.0056688576,0.030010398,0.06301535,0.048597965,0.08553203,0.040882897,0.039546087,-0.058886193,-0.031200282,-0.11566035,-0.058611475,0.07606588,-0.050053775,-0.012549239,-0.0127093075,-0.034025736,0.018440338,-0.056701902,-0.014762466,0.0024657848,0.015401263,0.035396673,-0.038280718,0.019556476,0.047703177,0.033067737,-0.0017747926,-0.12439802,0.07045967,0.032550853,0.026778558,0.044862926,0.07211108,0.048417635,0.053708617,0.0640079,0.12530169,-0.028220395,0.05666031,-0.03909107,0.068189055,0.015197887,0.08916253,0.04890665,-0.04938362,0.01589901,-0.088310316,-0.059321407,0.02821821,0.03811015,0.047007427,-0.037194528,-0.1021715,0.0249988,-0.030531742,0.07878099,-0.08864313,-0.085701875,0.014693772,0.04502049,0.05098992,-0.025602585,-0.0039033291,-0.03744417,-0.034722496,-0.08136767,-0.022794424,-0.016491145,0.018205047,0.047611393,-0.02658708,0.037600294,-0.016846523,0.01277614,-0.027367102,0.0013428839,0.06291778,0.023735395,-0.004226951,-0.089049205,-0.013365922,0.022982016,0.030663064,-0.038710367,-0.062828735,0.0016164655,-0.018032923,-0.044333097,-0.016378814,0.055316985,0.019995544,-0.04338664,-0.00016744006,0.018759944,-2.338919e-08,0.057275917,0.021612836,-0.10284035,0.041339733,0.05037022,-0.111501664,-0.09696739,-0.007838607,-0.05491398,0.066516586,-0.032383002,0.019270536,0.088151224,0.11320069,0.03751757,0.053236555,-0.014610638,0.10729189,-0.06006651,-0.0040652966,0.06596515,0.00946774,-0.05419116,-0.038926255,-0.03581982,-0.06260997,-0.07611731,-0.10557703,-0.045656923,-0.03911832,0.073582284,0.048030544,-0.04388532,0.027657079,-0.021459224,-0.056881834,0.021383118,0.09956817,-0.058842864,0.036491193,0.035492983,-0.06493689,-0.011088683,-0.055315193,-0.015076438,0.031203872,0.019633533,0.022272455,-0.018410053,0.14650677,-0.05899348,-0.011226122,0.055216897,0.0019604391,0.04327137,0.045500364,-0.0052316524,0.030494163,-0.026169682,-0.054754652,-0.05205055,0.056433044,0.07016958,0.009487819} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:57.378931+00 2026-01-30 02:01:10.147442+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1642 google ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE 1 t 1645 Go Karts Mar Menor unknown Experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el césped natural muy muy bien cuidado.\nLos trabajadores muy amables y nos atendieron muy bien. Una mañana de risas y momentos con los amigos. Especial. experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el césped natural muy muy bien cuidado. los trabajadores muy amables y nos atendieron muy bien. una mañana de risas y momentos con los amigos. especial. 5 2025-03-06 01:52:39.833374+00 es v5.1 O2.02 {O2.04,E1.01} V+ I3 CR-N {} {"O1.05": "Una mañana de risas y momentos con los amigos. Especial.", "O2.02": "Experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el cé", "P1.01": "Los trabajadores muy amables y nos atendieron muy bien."} {0.009986131,-0.012852687,0.04246457,-0.09173399,-0.01091308,0.05760272,0.06459422,0.040497165,-0.021348871,-0.002289556,0.10513271,0.03905932,-0.024763891,0.00045711812,0.010147571,0.015285008,-0.044763494,-0.0012908072,-0.04764269,-0.016127622,0.03611754,-0.039374772,-0.05985159,0.065116875,-0.027949886,-0.006784447,0.017653925,-0.024472428,-0.029242452,-0.020695176,-0.02789171,0.03891464,0.06971845,0.028431823,-0.019188074,-0.002291563,0.0482015,-0.0345533,-0.045072425,0.052853297,-0.10206992,-0.048319776,0.006322643,-0.07252815,-0.054328896,-0.123585835,-0.054072812,-0.026755504,-0.014458504,0.012203372,-0.046341125,0.027636198,0.032258533,0.03008616,0.0031464861,0.0035670982,-0.012375993,-0.009133654,0.040515356,0.028872963,-0.0118553415,0.0033842784,-0.013568925,-0.013320069,-0.023766624,0.005798483,-0.00049363734,-0.0549841,-0.082769796,0.055277776,0.10129114,-0.06503572,0.0023543108,-0.03552736,-0.067039154,0.018613487,-0.048549492,-0.089516304,-0.07928018,-0.03442276,-0.043710098,-0.017872415,0.04153398,-0.10515158,-0.026187122,0.004580243,-0.033310328,0.059301104,-0.010943799,0.011411031,-0.017222129,0.059045866,-0.03902111,-0.001164382,-0.026187414,0.039452583,0.10569527,-0.03977998,-0.025518874,0.036502097,0.09436911,0.10681132,0.09996949,0.047793705,-0.007310803,0.023051854,0.07369844,-0.04026867,-0.033673394,-0.08306523,-0.0062813237,-0.029571211,-0.02047713,-0.007322304,-0.06536986,-0.04601773,-0.008055338,0.025347626,0.020067021,-0.044828333,0.054428484,-0.0046434114,-0.048438244,-0.0040457672,-0.07947123,0.011422266,0.031130593,1.1356068e-32,0.0019484565,-0.04627559,-0.007869611,0.05576723,0.040260118,-0.023709197,-0.025189223,0.0781767,-0.03281344,-0.057770446,0.005126429,0.09634545,0.016144896,-0.00781851,0.029688884,0.0075101936,-0.07115495,-0.011436417,0.07491337,0.049330782,-0.014715771,-0.010635153,0.008879973,0.053899117,-0.00798563,0.030498378,-0.05199697,0.0037448315,-0.045543063,0.038935743,-0.017782724,0.07233153,-0.015484681,-0.07261649,-0.040006112,-0.012838228,0.074414805,0.0766927,0.02539282,-0.015112453,0.00702629,-0.043234892,-0.031028524,0.0032446948,0.017255485,0.024266949,0.0653857,0.040640134,0.07203214,-0.042118955,-0.087057404,-0.0069023576,-0.081104904,0.008209615,0.060359146,-0.01854621,0.006914276,0.058203198,-0.0053802556,-0.021378102,0.12528865,0.02405216,0.015696203,-0.05221185,0.0015108121,-0.009685634,0.035912443,0.009198232,0.15101154,0.056508508,-0.08637492,-0.030872362,-0.064889476,0.00809939,0.040601864,-0.027144885,0.01198593,-0.052798886,0.05661342,0.009560972,0.0047329883,0.05611109,-0.012327329,0.048240785,0.050211787,0.069311194,-0.0466966,-0.0066305213,-0.10274654,0.12278296,-0.08361366,0.047015734,0.06582361,-0.05831723,-0.03168379,-1.2112627e-32,0.0058619743,0.03339026,-0.06490803,0.09498754,-0.057118766,0.084841974,0.039094932,0.0016451728,0.0020323498,-0.010480678,-0.0642204,-0.08621824,0.057777554,-0.081434086,0.015484046,0.05315495,-0.028083572,-0.013700851,-0.039674416,-0.053148422,0.05590925,0.03440218,0.04983179,0.01299743,-0.011914448,-0.041638836,-0.116087474,-0.030858861,-0.09659137,0.03451941,0.027349053,-0.04775768,0.014301662,0.075260796,-0.065841354,-0.0023219406,0.034295585,0.012697471,0.0032936146,0.037984964,0.013398403,0.010678124,0.021667985,0.037403896,-0.024082435,0.021703215,-0.035787288,-0.12298968,-0.06682251,-0.007000891,0.07930133,-0.080165565,-0.10102488,-0.07504769,-0.04186143,0.0074134893,-0.048151325,-0.063632205,-0.039495017,0.015996234,0.0002833225,0.046574734,-0.05108967,0.007238922,0.0772823,0.006646407,0.018743748,0.065535404,-0.0010188231,0.0014498862,0.018300952,-0.0114598535,-0.043465577,-0.0011492607,-0.06535481,-0.015015183,-0.090667024,-0.06005563,0.008698249,0.0019535443,0.033198327,0.0061028088,0.011120944,-0.11036339,0.0014274087,0.035368197,-0.020129994,0.03743392,0.013324519,0.09371334,0.028850332,0.041729767,-0.06439134,-0.12221996,0.02285937,-4.5532865e-08,0.026307452,-0.06449182,-0.03862296,-0.047314156,0.013471309,-0.027087437,0.0011461258,0.043378778,0.03281151,0.08512879,0.020930259,-0.105468005,-0.061547734,0.12710924,0.004041763,0.020074328,0.103798814,0.09283878,-0.020136949,-0.021812603,0.026877688,0.056771524,-0.0037848714,0.026443286,-0.030710576,0.017964054,-0.08004304,0.022759782,-0.07270897,0.04710359,-0.01516055,-0.03251839,-0.05002874,-0.061769582,0.035550013,-0.01986805,-0.062204868,-0.068445764,-0.024102205,-0.02984184,0.053848207,0.059100334,-0.14249387,0.016325818,-0.011507438,-0.12339207,-0.05262671,0.009201665,-0.031802647,0.08710854,-0.027255137,-0.021316912,0.03401616,0.03466889,0.021639954,-0.06335065,0.02942386,0.022834929,-0.009321176,0.01189527,0.09082958,0.16215228,0.046138965,-0.09933635} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:06.599874+00 2026-01-30 02:01:10.150202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1644 google Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB 1 t 1647 Go Karts Mar Menor unknown Muy agradable entretenido para niños y adultos.\nEl personal muy familiar.\nMuchas gracias 😊\nVolveremos. muy agradable entretenido para niños y adultos. el personal muy familiar. muchas gracias 😊 volveremos. 5 2025-12-01 01:52:39.833374+00 es v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Muy agradable entretenido para niños y adultos.", "P1.01": "El personal muy familiar.", "R4.03": "Volveremos."} {-0.002609169,0.08800797,0.06906433,0.022811942,0.0077482173,0.0010893606,0.051999155,-0.005940535,-0.0053807404,0.003102167,0.0651751,-0.041800607,-0.049461354,0.033113573,0.0018322172,0.026505644,-0.01922858,0.047461364,0.015510064,0.012085171,0.084105864,0.029270943,-0.042325,0.063780166,-0.08240964,-0.033401895,-0.025486562,0.03962719,0.0015669785,0.046215665,-0.007936779,0.12074902,0.07127208,-0.020203562,-0.04039347,0.03689856,0.010411954,-0.017422713,-0.0040142913,0.048377134,-0.06745949,0.021918064,0.0051930347,-0.05285698,-0.042012874,-0.058014188,0.016720371,-0.0031777332,0.033229295,0.028467424,-0.067029566,-0.056378957,-0.0058873333,0.021700136,-0.029074132,-0.018261751,-0.08989618,-0.085702986,0.065330565,0.008335522,-0.06437991,0.033104468,-0.0074938713,0.032547466,-0.031022297,0.01176848,0.039183658,0.0021582118,-0.015497447,-0.029921234,0.0315354,0.039972,0.05640725,0.033572063,-0.04873202,0.029136889,0.009553999,-0.05411128,-0.08093639,-0.06286751,-0.068404116,0.049728263,0.038826883,-0.05334756,0.0062629757,0.048868176,-0.019477377,0.0024726228,-0.028136928,-0.049500756,-0.018064348,-0.016109841,0.011905088,0.022643322,-0.019627703,0.06197905,-0.027227866,-0.11642751,-0.046320207,0.008795404,0.040309038,0.014088102,0.104709014,0.098365605,-0.08494718,0.03458154,-0.051049694,-0.12195039,-0.02141227,0.039866403,-0.06270188,0.0074546933,0.004417173,0.010491993,-0.017495416,-0.017926596,-0.029456805,0.006586978,0.0068038804,-0.04648506,0.060258687,0.06410123,-0.073854126,-0.04775194,-0.017856428,-0.06475146,0.07979876,6.654082e-33,0.006493304,-0.03794326,0.045465842,0.078221485,0.019105522,0.01724948,-0.0012625718,-0.060942393,-0.0752578,-0.07253936,-0.024696637,0.0628183,-0.024594376,0.042317353,-0.004005529,0.1054832,-0.012312212,-0.018961255,0.088288836,0.08090741,-0.04604631,-0.03732622,-0.011834525,-0.030664576,-0.044703692,-0.01127122,0.03948468,-0.029504236,-0.010036941,0.05261243,-0.01858112,-0.014009807,0.006135473,-0.06216109,-0.028386855,0.014461182,0.08507308,0.04330168,-0.008592042,0.026600655,-0.0072531216,0.012938031,-0.028139817,0.039782505,-0.0035090013,-0.0056291646,0.063542955,0.01333156,-0.0026522109,0.03587672,-0.08246161,-0.102052145,-0.078863166,-0.09394139,-0.001085789,0.0618811,-0.035311867,0.036295038,-0.03391496,-0.08558599,0.06424991,-0.07558775,0.03333056,-0.08738828,-0.008435301,-0.06291885,0.058740348,0.039844915,0.094548956,-0.030784888,-0.07436297,-0.041362062,-0.052001633,-0.033694305,0.006947547,-0.046203483,0.11516341,-0.037178397,0.12020861,0.052804958,-0.057965517,0.030974645,0.018085018,0.0084392065,0.056340296,-0.04024552,0.053858314,0.050173014,-0.04246109,0.064339675,0.013017048,0.059239466,0.05170366,-0.024661811,-0.01602906,-7.02597e-33,0.019947883,-0.010959982,-0.00289216,0.092128895,-0.035771314,-0.06637138,-0.040248927,0.05724707,-0.054282274,-0.04501158,-0.1531102,-0.113980085,0.108219616,-0.08154474,-0.012059115,0.0699206,0.026316818,0.086795636,-0.044676032,-0.06881665,0.017772011,0.07514996,-0.039818414,-0.052056886,-0.015445849,-0.06501103,-0.05121134,0.022443833,-0.11570462,-0.010377792,-0.0021484937,-0.006482814,-0.030221928,0.032189745,0.037991084,0.056870703,0.057072263,0.0086565055,0.016941164,0.023639241,-0.036286414,0.07680437,0.022566728,0.021557342,-0.0115389535,0.06293917,-0.011168066,-0.07806143,0.045854226,0.00040756929,0.033487834,-0.036403146,-0.05882338,-0.037227325,0.070099175,-0.041923534,0.03404923,-0.068086095,-0.039244432,-0.016158286,0.024777602,-0.056216218,-0.09946152,0.0077031357,0.011133535,0.019262344,-0.05874667,-0.029593933,-0.0064118314,0.05403187,0.058726545,-0.032074023,-0.05073884,-0.07656528,-0.051037814,-0.081058264,-0.079811245,-0.017816955,-0.023995994,0.03810879,-0.003944463,0.0325015,-0.036395762,-0.06342566,-0.025952915,-0.060547344,-0.024792787,0.0810191,-0.014653655,0.05989513,0.044895977,0.03866716,-0.10510311,-0.05470796,0.036795363,-3.2213418e-08,0.073329434,0.009346992,-0.006107221,-0.02029966,-0.017574225,-0.02463827,-0.007814986,0.048291907,0.056195013,0.05801946,-0.021087436,0.013182643,0.041462477,0.0805357,0.047820933,0.048726518,0.1497723,0.078071624,-0.012922564,-0.013778652,0.16931869,0.043230847,-0.034881793,0.063037604,-0.04053636,0.025029255,-0.06337293,-0.01058373,-0.041880954,-0.0137723815,-0.011614269,0.025982235,-0.0445619,-0.06999563,-0.033833366,-0.018751672,-0.024537653,-0.004633217,-0.021827474,-0.009866929,0.10410777,-0.043857668,-0.005777823,0.004635899,-0.00047040515,-0.066840455,0.06182444,0.018201496,-0.07133145,0.08292466,-0.0022349665,-0.03963254,0.07024526,0.042773105,0.016885165,-0.028328137,0.036685403,0.029442629,0.040228207,-0.04716071,0.08877831,0.12902956,-0.048573744,-0.017220566} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:22.317617+00 2026-01-30 02:01:10.156012+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1518 google ChdDSUhNMG9nS0VJQ0FnSURReW9LbXFBRRAB 1 t 1521 Go Karts Mar Menor unknown Who doesnt like a go kart? Top value and fun who doesnt like a go kart? top value and fun 5 2026-01-30 01:52:39.833374+00 af v5.1 V4.01 {O1.05} V+ I3 CR-N {} {"V4.01": "Who doesnt like a go kart? Top value and fun"} {0.025561122,0.03928602,-0.019731672,0.027717017,-0.09713933,-0.008638199,0.059236,0.05788549,0.013429757,0.04817236,-0.026596189,-0.01047348,-0.06072404,0.013879141,0.018082349,-0.078938164,0.066886574,-0.082084596,0.056194734,-0.059557393,-0.09091605,0.00073151244,0.0035608907,-0.0103622675,-0.07764338,-0.004207679,-0.040022813,0.058767416,0.016044913,-0.053302493,-0.11123954,0.050784428,-0.026576815,-0.0083558895,-0.11525623,-0.084685676,0.0400133,-0.03055154,-0.02542099,0.020170107,0.005523689,0.012768244,-0.008176167,0.058800586,-0.0011648018,0.023243409,-0.029613899,-0.08216045,0.03200417,0.046088085,0.07392199,-0.032899976,0.024331516,-0.0070781237,0.075755976,-0.0041080457,-0.11865699,0.023576472,0.0769866,-0.016169017,0.017743554,0.03700617,0.0025117989,-0.013027691,0.0024347303,-0.043212518,-0.031909395,0.02368192,-0.030075392,0.04392253,-0.015175553,-0.025899606,0.039787892,-1.8563334e-05,-0.011178161,0.0179411,-0.0067001693,-0.06773076,-0.09286488,0.11965228,0.03374369,-0.0019310106,-0.033194765,-0.011192453,-0.024695355,-0.09420212,0.0005657467,0.06205721,0.03277721,-0.06450472,0.0777,0.014837826,0.007567828,-0.02275723,0.051958673,0.020371078,0.008842057,-0.024612445,-0.05547092,-0.0070737274,-0.0015129432,0.018559907,0.061155926,0.052799635,-0.022995783,0.038260765,-0.061790414,0.04419111,0.11029736,-0.0054550623,-0.045131676,0.05787288,-0.019113585,-0.09065429,-0.058632154,-0.009694369,-0.0051473295,0.0130131785,-0.026263189,-0.0018873565,0.048024002,-0.03606213,-0.0010699794,0.09406304,0.022812096,-0.08454481,-0.00937623,-1.1166875e-33,-0.10488841,0.04391717,-0.020835405,-0.044293128,0.004804739,-0.05229676,0.032551672,-0.13859345,-0.08853866,0.05177211,0.02073117,0.060416885,-0.111061215,0.035497688,0.12659448,0.002013603,-0.021536177,-0.018714327,-0.06717367,-0.06982177,0.02057383,-0.014597835,0.036701392,0.09556495,0.037857294,0.028745793,0.1279506,-0.08818259,-0.012323042,-0.010799417,0.016753934,-0.057292134,-0.054473765,0.02328362,-0.049637463,-0.008549218,-0.070700124,-0.042956624,-0.06416906,0.013091934,0.045222703,-0.018055705,-0.019754482,0.09897311,0.003991753,-0.055343885,0.078459196,0.046757106,-0.06656724,0.009041298,-0.04866375,0.013062072,-0.032189485,0.10107415,-0.029571678,-0.006679355,0.10223295,0.002746348,-0.05506678,-0.047648367,-0.020844866,-0.025849624,0.022387074,-0.047344577,-0.06102406,0.04979414,-0.022850638,-0.04085968,-0.038614977,-0.0023952005,0.032101564,0.017753504,-0.018648325,-0.09265546,0.00590488,0.064724565,-0.015447712,0.033691883,-0.039590754,-0.023289882,0.030046081,0.009878905,-0.05980587,0.03459742,0.045203436,-0.019797496,-0.07723333,-0.07137919,0.03713618,-0.021543907,-0.057695314,0.02096716,0.03143528,0.073633224,0.037107784,1.2075419e-33,0.017347759,0.0038918157,0.06077848,0.15694241,0.05806412,-0.031777784,0.050990198,-0.052221663,0.04833455,0.059403136,-0.04727858,0.07296679,-0.0149076525,0.040151898,0.09637845,0.016065173,0.056899697,0.025701253,0.058658272,-0.105069235,0.017943991,0.06247872,-0.07168889,-0.018534767,0.009651669,0.076702036,-0.05505718,-0.0011867441,-0.053915568,0.03645608,0.007829123,-0.06711007,0.0095663415,-0.063250825,0.034160607,0.04190273,0.06001098,0.12593271,-0.052563798,0.059162095,0.005266982,0.030886553,0.01401117,0.029986946,-0.031133354,0.029414887,0.042506304,0.00262997,0.14842884,-0.009694948,0.074149,0.097555146,-0.015294261,0.014801208,-0.0122326305,-0.04119682,0.04238176,0.04176032,-0.07520174,-0.054289598,0.029149357,0.04356416,-0.016575376,0.05150374,0.027669199,-0.02329841,-0.0163775,-0.03662718,-0.08355661,-0.06456949,-0.10088459,-0.024377795,0.028690124,0.024862103,0.008913924,0.022360038,0.049095005,0.07216754,0.078177765,0.047957327,0.033941787,0.012945705,-0.008706606,0.042760402,0.052134987,0.011667472,-0.07074357,0.047583986,0.0049836976,-0.0037373828,0.087109216,0.046385013,-0.0018365999,-0.010437383,-0.00023904831,-1.6548025e-08,-0.016677167,0.040149495,-0.044121504,0.04103187,0.038619842,-0.030405423,-0.011977882,0.020193512,-0.024244053,0.019525321,0.036663767,-0.0674087,-0.04832901,-0.015876811,0.069150925,0.018964741,-0.031617448,0.027956441,0.010491947,0.027330909,0.013793306,-0.02579531,0.010854311,-0.06678891,-0.11249476,-0.021303566,0.0018199575,0.0025515233,0.11044287,0.0214713,-0.007724868,0.056550577,-0.001853039,0.040594097,-0.0013499884,-0.06794237,-0.059889268,0.080417864,-0.015359413,0.031166932,-0.009379912,-0.028298156,-0.084331654,0.005083561,-0.12821381,0.03136539,-0.0708304,-0.097192705,-0.02393773,0.044580992,-0.045678042,-0.030027945,-0.0059866933,0.05970533,0.054956913,-0.004882733,0.04569815,-0.047882106,-0.03784263,-0.03220963,0.00940769,-0.11103814,-0.04613578,0.043254916} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.050269+00 2026-01-30 02:01:09.639281+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1611 google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB 1 t 1614 Go Karts Mar Menor unknown Muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió en una sesión, esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos tocó ,todo muy bien si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje repetiremos seguro muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió en una sesión, esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos tocó ,todo muy bien si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje repetiremos seguro 5 2025-09-02 00:52:39.833374+00 es v5.1 P1.01 {P3.02} V+ I2 CR-N {} {"J1.01": "esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos t", "O2.03": "si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje", "P1.01": "Muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió ", "R4.03": "repetiremos seguro", "V4.03": "todo muy bien"} {-0.054350056,0.0020969408,0.01897561,-0.028319355,-0.08708857,-0.012749272,0.09745088,0.06333868,0.014597072,0.019044897,0.06728335,0.019354407,-0.015186825,-0.01642646,-0.018970089,0.0655491,0.01443249,0.056879424,-0.0038108178,0.044411868,0.04922084,-0.084533215,-0.02631672,0.07935187,-0.054330852,-0.00905698,-0.0074481093,0.015915414,-0.06718691,-0.042378742,0.00692991,0.083647236,0.11595316,0.008013448,-0.041954633,0.025206698,0.064176574,-0.05373251,-0.008185994,0.06334343,-0.052001134,-0.03848087,-0.04996088,-0.06443038,-0.012666478,-0.048721865,0.0555413,0.071742736,-0.02348759,-0.008626069,-0.031818237,-0.024742736,-0.027610779,-0.010604299,0.044443835,-0.039998528,-0.031973638,-0.0067489245,0.051847473,0.039541077,-0.07730361,0.039937336,0.019785175,-0.017583545,0.009188014,-0.064085335,0.04284568,-0.0028947408,-0.08358032,0.057653945,0.08704571,-0.029518815,-0.047876664,-0.004120504,-0.124247454,0.045358587,0.05831414,0.030371135,0.030160995,0.009118814,-0.009916005,-0.0051198467,-0.0024311622,-0.059349135,-0.051875606,-0.011044886,-0.018932467,0.054581974,0.018525172,-0.047705416,-0.023078693,0.017288698,-0.02918808,0.026030611,0.055905793,0.019669672,-0.015776098,-0.045715164,0.04501696,-0.013499908,0.055678397,0.076260686,0.15004501,-0.05386742,-0.04348854,0.000708039,0.014400264,-0.024329428,-0.023208214,0.06634602,2.4508852e-05,-0.019274723,-0.038663633,0.0590177,-0.058462035,-0.051930692,0.022482969,-0.02507789,-0.038442556,-0.056654252,0.0137987835,-0.036046945,-0.09242899,-0.08227764,0.028547268,-0.020590108,0.051335633,1.89721e-32,-0.056145225,-0.12628345,-0.004918173,0.088967666,-0.040198863,0.07358059,0.025149379,-0.012646419,-0.03294754,-0.013426738,-0.058737192,0.0057213847,0.008158291,0.030157562,0.0007985297,0.006236749,0.04728943,-0.050815977,0.057386465,-0.013984581,-0.021289704,-0.0023342078,-0.009641054,-0.03180091,-0.008956116,0.051367957,0.015241701,-0.074242935,-0.05916169,0.01617949,-0.02263808,0.016104931,0.01939834,-0.0575294,-0.04803869,-0.014930223,0.053518396,0.033765804,-0.02634938,-0.07298014,-0.02349545,-0.019473583,0.015647223,-0.016306026,-0.028614521,0.046705432,0.08141223,0.0013228051,0.017154893,0.044286147,-0.0694864,-0.03751065,-0.05372246,-0.0107432045,0.011706591,0.0024603852,-0.08954311,-0.004084321,-0.05580598,-0.011966384,0.044241317,-0.047457334,-0.0036663204,0.0045500905,0.055608302,-0.03998161,0.00016651058,0.093181774,0.113833524,0.102343045,0.025590133,-0.02205038,-0.08132753,0.08265649,-0.0047731632,0.009477253,0.086596556,0.033560436,0.027906774,-0.001276318,0.027460452,-0.0057376847,0.011362401,0.030899325,0.08954851,0.10023423,0.042102177,0.04437968,-0.033521898,0.13063203,-0.005147632,0.029367186,0.014777132,0.00040534916,-0.02419522,-1.9033136e-32,-0.016375484,0.04116204,-0.039386433,0.0700643,-0.0041031954,-0.025330108,0.024515912,0.035566032,-0.08991305,-0.053725053,-0.11084218,-0.16627797,0.05496872,-0.029118996,-0.010250285,0.06334403,0.00740901,-0.06805215,-0.086485244,-0.074075006,-0.003971606,-0.012674002,0.061530586,-0.026059227,-0.035253666,-0.043004632,-0.033002585,-0.029929612,-0.10143612,0.016055932,0.0074110464,-0.067407764,0.023115486,-0.002994292,-0.024015345,-0.0918965,0.07105459,0.05904213,0.06542708,-0.023030743,-0.054267764,0.07986486,0.0095521435,0.014057381,0.003947356,0.04968423,0.02171331,-0.16935252,0.004735444,-0.08347502,0.06909342,-0.062458575,-0.011097127,-0.059965353,0.04580321,-0.06720078,-0.0018363607,-0.11581277,-0.06767238,-0.01522582,0.0047450424,-0.08034705,-0.061688635,-0.032349996,0.059002962,0.026859498,-0.044275176,-0.03357307,-0.05364486,0.0067119305,0.06723767,-0.09388363,-0.08010535,0.005370754,-0.029458338,-0.083861664,-0.09472852,0.013508447,0.061320506,-0.0017785828,0.03322192,-0.029136661,-0.027024478,-0.061246075,-0.044209592,0.0023383175,0.047067516,0.058345664,-0.009681104,0.047297448,-0.03286657,0.023662934,-0.09164064,-0.049290884,-0.008575233,-6.1568684e-08,-0.0006905983,-0.036336835,-0.001365552,-0.0305991,0.08192943,0.031585146,-0.0031023058,0.115190424,0.018187776,0.09428474,0.013916989,-0.031470876,-0.0061949324,0.06859964,0.06738365,0.036777142,0.15110055,-0.0033188446,-0.03986493,-0.045873754,0.04496439,0.012327732,-0.06327684,0.0714175,0.0044091665,0.031093964,-0.06608838,0.06922529,-0.009452521,0.029598063,-0.0004919667,0.0012937359,-0.030601222,-0.0911977,-0.12123452,-0.05177311,0.017395204,0.017929604,0.024239363,-0.02888594,0.04268733,-0.037080478,-0.0056595313,0.023613645,-0.073192,-0.081447445,-0.041147664,0.010074757,-0.056747854,0.031193838,0.013533194,-0.045374777,0.071341574,0.01651418,0.0012020491,-0.06650906,0.017553004,0.016383104,0.006535529,0.02370048,0.07370006,0.07840809,-0.012672229,-0.030186642} 0.78 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:44.767925+00 2026-01-30 02:01:10.044749+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1647 google ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE 1 t 1650 Go Karts Mar Menor unknown Karting sympa, personnel plutôt agréable. Le lieu est joli.\nPetit bémol le prix est un peu cher le les 8 minutes de circuit et dommage que les biplaces ne puissent pas être avec les karts ''adultes'' karting sympa, personnel plutôt agréable. le lieu est joli. petit bémol le prix est un peu cher le les 8 minutes de circuit et dommage que les biplaces ne puissent pas être avec les karts ''adultes'' 4 2024-01-31 01:52:39.833374+00 fr v5.1 O1.01 {P1.01,E1.04} V+ I2 CR-N {} {"O1.01": "Karting sympa, personnel plutôt agréable. Le lieu est joli.", "O3.02": "dommage que les biplaces ne puissent pas être avec les karts ''adultes''", "V1.01": "Petit bémol le prix est un peu cher le les 8 minutes de circuit"} {0.016246295,0.059921373,0.0103827445,-0.024399191,-0.09326854,0.04200394,-0.028978923,0.106559604,0.0068132533,0.037196558,0.042448927,-0.030403078,-0.036585156,-0.027321808,-0.029105615,-0.02438135,-0.011489157,0.036979537,0.07204012,0.03647286,0.041512925,-0.098708816,-0.0048124366,0.036453664,-0.07941951,0.023057053,-0.009924519,0.07682028,0.006746704,-0.012148009,-0.037739486,0.05382609,0.03852053,-0.05331388,0.01283364,0.0011254291,-0.01921514,-0.048775125,0.0283755,-0.0395768,-0.00858975,-0.09841445,-0.10583838,-0.06693253,0.020262131,0.030034965,-0.0013536119,0.0104554,-0.030891655,-0.025842393,0.026888302,-0.024088997,0.08390558,-0.0015930575,-0.017228914,-0.09757294,-0.020730564,-0.011993505,0.130503,0.047157273,0.005590159,0.004489497,-0.005532165,0.028012095,-0.09196415,-0.09525617,0.0029045988,-0.01814236,0.039840724,0.044141874,0.08181697,-0.06136261,-0.092799015,0.030271664,0.04848783,0.0014819542,-0.028321955,0.007870537,-0.032192755,-0.12694053,0.019503534,-0.068870746,0.0053065196,-0.07817933,0.059502825,-0.08359464,0.03975968,0.06056676,0.03655638,-0.018019548,-0.06498453,0.09686945,-0.07188114,-0.06858814,0.07279992,-0.031377316,-0.04163038,-0.039265648,0.00951152,0.027763871,0.04190371,0.01609787,0.0020338388,0.108000845,-0.080675334,0.027225368,-0.027782822,-0.0489412,-0.03766373,0.0066168946,-0.006342788,-0.014989828,-0.0122893,-0.04592239,-0.030272936,0.028489593,-0.043681305,-0.0062944284,-0.0108609665,0.021255048,0.03001792,-0.025642682,-0.025065621,0.003870648,0.10449382,0.00636474,0.1589596,6.1667896e-33,-0.09276757,0.004266145,-0.05935129,-0.0136326095,0.039334822,-0.01465883,-0.057576552,-0.06857654,-0.014445211,0.015067389,-0.044862643,0.08056373,-0.04169352,-0.05000517,0.10299557,0.049258012,0.023437569,-0.016222961,0.069737166,-0.0056997617,-0.049783908,-0.023952607,0.017142432,0.12876472,0.049107384,0.029862458,0.047076743,-0.05085867,-0.04173875,0.024562143,0.02604442,-0.033688623,-0.055043485,0.024709322,-0.054990172,0.017940553,0.020252911,0.07169298,-0.01304011,0.014155031,-0.011894409,-0.04701524,0.014673409,0.00959188,-0.08071481,0.061738104,0.0052973353,-0.036545362,0.023197172,0.04235617,-0.10195146,-0.012517187,-0.05285926,-0.012808009,-0.035659853,0.05655721,-0.04516217,0.010172364,-0.10966723,-0.003994122,0.0755678,0.016386326,-0.03678791,-0.024647435,-0.09506297,-0.017529683,0.0035696498,-0.015753537,0.1003117,-0.051897313,-0.101914726,0.04105677,0.0556529,-0.03863699,0.042974073,0.031031867,-0.04450632,0.06300382,-0.13100156,0.011698029,-0.051358674,-0.020007808,-0.02666589,-0.035916477,0.1316891,-0.072126225,-0.042992387,-0.0083084805,0.015476774,0.011502041,-0.038749356,-0.03749312,-2.4065128e-05,0.10534767,0.044728793,-9.0437165e-33,-0.008826273,0.028218793,0.07762593,0.07206266,0.053111218,0.06380594,0.024081334,-0.0036175295,-0.044041023,0.01264296,-0.11080486,-0.07715131,0.019421984,-0.035881028,0.00030371785,0.04892132,-0.031850833,-0.016515182,-0.026638862,-0.0010988556,-0.00868351,0.026148198,0.05751933,-0.032945696,0.0037207261,0.0042372113,0.04292814,-0.021595115,-0.07743342,0.06643123,0.0349654,0.0022319313,0.016571231,0.037225228,0.026438449,-0.0011138765,0.041901655,0.12973943,-0.04838233,0.097821765,0.024938209,0.083866656,0.03377775,0.03530053,0.0059986697,-0.062250614,0.031673063,-0.07522074,-0.07256657,0.0010677065,0.028245939,0.00522329,-0.032637015,-0.049992256,-0.009273967,-0.016257068,0.018402014,-0.035562113,-0.086658545,-0.0047087497,0.114416964,0.012374116,-0.019809114,-0.006804601,-0.007976595,-0.01904144,-0.08508694,-0.0132635925,-0.0061290185,-0.008597501,0.061815586,-0.019664923,0.0010483275,0.019995922,-0.009806217,-0.010749282,-0.02224528,0.048238836,0.047227632,-0.015088286,-0.06733584,-0.015474881,-0.01702737,0.015875464,-0.023041295,-0.02392787,0.037760824,0.024296232,0.006084964,-0.06722574,0.092538595,0.056703303,0.0022761694,-0.0074009546,-0.05775967,-4.0554884e-08,0.050616503,0.0010618236,-0.10234958,0.042390987,0.08657334,-0.12664276,-0.047622558,-0.007800407,-0.08169786,0.090802036,-0.0027551379,-0.0016049858,0.044193372,-0.017420694,0.0007617518,0.090071395,-0.017293079,0.11002603,-0.04729403,0.009499142,0.06196636,-0.031624716,-0.08680791,0.012044668,-0.044645812,-0.058641966,-0.05593632,-0.08490558,0.0077156085,-0.04590269,0.018504005,0.08129068,-0.01205812,-0.009261557,0.029142225,-0.046822302,-0.036893878,0.10784727,-0.01479894,0.03831998,-0.004283464,-0.08615687,-0.03591119,-0.043985065,0.009157763,0.033383153,-0.028036159,-0.009544937,-0.0026401887,0.13277167,-0.06455087,-0.023527486,0.013645133,0.035001583,0.06330661,0.019656915,0.0036369571,-0.020045439,-0.023484722,-0.04802262,-0.06594344,0.053258367,0.029335596,-0.045049634} 0.8666667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:54.103248+00 2026-01-30 02:01:10.168661+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1649 google Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB 1 t 1652 Go Karts Mar Menor unknown Espectacular circuito,y trato inmejorable por parte del personal,sobre todo de Roberto.\nSin duda volveré a ir !!! espectacular circuito,y trato inmejorable por parte del personal,sobre todo de roberto. sin duda volveré a ir !!! 5 2025-07-04 00:52:39.833374+00 es v5.1 O2.03 {} V+ I3 CR-N {Roberto} {"O2.03": "Espectacular circuito", "P1.01": "y trato inmejorable por parte del personal,sobre todo de Roberto", "R4.03": "Sin duda volveré a ir !!!"} {-0.041998155,0.0057676155,-0.0473802,-0.02744179,-0.07194639,0.021960134,0.09418412,0.16841553,0.03544762,0.033563532,0.08158072,-0.01394608,-0.05893065,0.062719375,0.021850212,-0.0002954841,-0.078271866,0.07247183,0.025378658,0.034343563,0.11775385,-0.049428564,-0.010394678,0.013888043,-0.039997444,0.06574257,0.055162273,0.040095028,-0.05188996,-0.14221908,-0.0352278,0.0752712,0.02386824,-0.04859932,0.028488528,-0.011658996,-0.008240232,-0.077696286,-0.024896018,0.013573921,-0.112322785,0.0078082816,0.012358204,-0.024529861,-0.032276772,-0.09457268,0.04211663,0.02582375,-0.028139815,-0.063857295,-0.042447172,-0.04423719,0.0085840495,0.03109539,-0.023954831,0.017302632,0.011074196,0.019893758,0.03439082,0.0031389361,0.08966486,0.0025462257,0.0049291747,0.061454315,-0.029771207,-0.046427693,0.06877274,-0.031433873,0.0025990198,0.045898225,0.043808214,-0.074379794,0.043653373,0.0067018056,0.048344243,-0.013401382,-0.059957787,0.03795951,0.022847917,0.022413563,0.026027847,-0.04510954,0.010084231,-0.05994435,0.07974619,0.025056181,0.012052856,-0.04596117,-0.044226058,-0.034608807,-0.06642908,-0.009551724,-0.022815298,-0.03874647,-0.081745505,-0.050592102,-0.0033953697,-0.0440708,0.017413022,0.031370234,0.07465503,0.019171193,0.06651673,0.08006942,-0.05961794,0.032553263,0.035048705,-0.023574503,0.011104495,-0.0037411859,-0.07297525,-0.025130415,-0.035700474,0.02565016,0.02258895,-0.0018662948,0.022547526,0.04944821,0.019345587,-0.038964793,0.050322916,-0.05661713,-0.08010336,0.01687792,-0.022910787,0.0060324525,0.074555755,3.2141696e-33,0.0012313128,0.017509393,-0.028014764,0.014681537,0.018038966,0.020750608,-0.06950072,0.016482158,-0.03264136,-0.015146779,-0.056293998,0.09456334,0.041450806,0.13132115,0.0021622926,0.021678038,-0.08539842,0.0017670505,0.09199578,-0.034972314,-0.030003192,0.027713707,0.011664829,0.08609943,-0.043779425,0.07049276,-0.026170194,-0.05696744,-0.019760963,0.025964295,0.012429341,0.09211222,-0.037646424,0.004215823,0.008631684,-0.011641682,0.043128792,-0.028854294,0.07095474,-0.0075196945,0.020883763,0.016317494,-0.009120539,-0.053009745,-0.006476902,-0.05068052,0.010025879,0.07706514,0.10359171,0.010014907,-0.095974654,-0.10976828,-0.014696065,-0.042851407,0.04970238,0.049832273,-0.055666573,0.09758932,0.024441985,-0.011563861,-0.016938413,0.078021094,0.028007483,-0.030574195,-0.058997463,-0.003508241,0.0006983706,-0.08378818,0.03468192,0.0068622353,-0.09900492,0.011504252,-0.01716378,-0.023322219,0.02531027,-0.020527983,-0.048927702,0.026593924,-0.014453593,0.040736504,-0.080966294,-0.059485946,-0.015372182,-0.02501687,0.036113903,0.08605388,0.07216585,-0.040223226,-0.006191889,0.13033912,-0.014888422,0.034038812,0.04546524,-0.035911337,0.042040084,-5.52998e-33,-0.003150378,-0.030463872,0.069074504,0.013163491,0.042049892,-0.0054676533,-0.016997654,-0.01854647,0.0042627803,-0.055430047,0.059525535,-0.050471533,0.059100244,-0.066191494,-0.07537357,0.029295174,-0.041942097,-0.07693803,-0.028493345,-0.041461833,-0.00062956294,0.055283185,0.010805977,-0.030773165,-0.09065273,-0.00612782,0.007394397,-0.029259684,-0.03951749,0.007978993,-0.05823047,0.020127738,-0.055755366,-0.025108928,-0.033097863,0.06651701,0.012087783,0.046071026,-0.025032846,-0.0036444145,-0.029565072,0.13526355,0.04919507,-0.009060284,0.0312909,-0.011896259,-0.009231564,-0.07392581,-0.069178626,-0.014967057,-0.011368397,-0.02016663,-0.032790434,-0.08733666,-0.028940665,-0.015754115,0.024178354,-0.10112975,-0.08846603,0.0072103664,-0.0025307108,-0.012880807,0.04785461,-0.009564736,0.10547003,0.051942755,-0.05263786,0.07612433,0.1502681,-0.008548981,0.1333084,0.036937807,0.034993943,0.017521027,0.0026201515,-0.088211276,-0.13387564,0.0018366065,-0.01911581,-0.014301913,0.004117969,0.018173994,-0.05492045,-0.091715306,0.024517197,-0.06586899,-0.05999248,-0.005033032,0.06549562,0.02998812,0.008446948,0.06786382,-0.07722545,0.012178137,0.08943429,-3.191859e-08,0.03346282,0.01672393,-0.008400414,-0.048316423,0.06537065,-0.08604398,0.04692108,-0.03991338,-0.021158407,0.026807504,-0.026230397,0.093542635,-0.0029462078,0.07317776,0.042187516,0.05693359,0.039987635,0.10044253,-0.03474637,-0.013084522,0.09116708,-0.025019744,-0.04760036,0.019573674,0.060196184,0.026250623,-0.021269431,-0.02939779,-0.040923547,-0.06991702,-0.04237124,0.05641134,-0.010348043,-0.021509206,-0.050641894,-0.019524736,0.012876342,-0.020227153,-0.12068559,-0.025526658,0.024884667,-0.02730153,-0.05372843,0.021667857,0.014628285,-0.051757004,0.02301418,0.030739184,-0.06422898,0.077482045,-0.11847125,-0.0072938544,-0.022293074,-0.021105662,-0.043459825,-0.014855076,0.01897046,0.024561916,-0.06928658,-0.053502083,0.01329412,0.051592063,0.0689874,-0.081920154} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:18.757994+00 2026-01-30 02:01:10.178207+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1651 google ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE 1 t 1654 Go Karts Mar Menor unknown Super tolle Bahn und klasse Karts. Wir sind so begeistert. Mein Sohn hat heute seinen Geburtstag dort gefeiert und er war so glücklich hier. Super netter, freundlicher und hilfsbereiter Mitarbeiter. Wir hatten sehr viel Spaß. Vielen Dank super tolle bahn und klasse karts. wir sind so begeistert. mein sohn hat heute seinen geburtstag dort gefeiert und er war so glücklich hier. super netter, freundlicher und hilfsbereiter mitarbeiter. wir hatten sehr viel spaß. vielen dank 5 2022-01-31 01:52:39.833374+00 de v5.1 O1.02 {O2.03} V+ I3 CR-N {} {"O1.02": "Super tolle Bahn und klasse Karts.", "O1.05": "Wir sind so begeistert. Mein Sohn hat heute seinen Geburtstag dort gefeiert und er war so glücklich ", "P1.01": "Super netter, freundlicher und hilfsbereiter Mitarbeiter."} {-0.043690424,0.08565577,0.04844941,-0.029050138,-0.08093247,0.03647825,-0.00905854,0.09740869,-0.008893619,-0.017817767,-0.028102048,0.0029533685,-0.035578735,-0.031840418,-0.031619214,-0.034341868,-0.0068883793,-0.013457484,-0.022732338,-0.09504787,0.050090514,-0.05683244,-0.031137256,0.026912544,-0.051346216,-0.03951915,-0.032340784,-0.0071715317,0.009779386,-0.06554831,-0.031890027,0.013396107,-0.13416086,0.03303544,-0.06560921,0.017045522,-0.0081760315,-0.037221156,0.008971552,0.04232876,-0.02701307,-0.03128294,-0.13302037,-0.0021979995,0.008481703,0.10424012,-0.049827054,0.01936255,-0.061464373,-0.021587713,-0.020111417,-0.09073106,0.07399805,-0.009193449,0.042663924,-0.019942425,-0.061989453,-0.031770125,0.06274448,0.06873446,-0.021248957,-0.02788834,0.008523949,0.015048101,-0.054658692,0.020774076,-0.046900943,0.08871704,-0.033046734,0.048680324,0.06100069,-0.07749158,0.003002434,0.06366801,0.061263017,-0.057722725,-0.0905424,0.07986516,0.009267867,-0.037051704,-0.020092797,-0.037222203,0.030238956,-0.016559921,0.046212252,-0.07784022,0.031951897,0.016354075,0.06196136,0.005358269,-0.020461893,-0.004848832,-0.07386767,-0.011763785,-0.03773294,-0.005755212,-0.007945126,0.02189843,-0.037972327,0.012757012,0.034405302,-0.08618462,-0.025371179,0.09042582,0.01747731,-0.014926483,-0.015875354,0.03172919,0.09271705,0.013282712,-0.031091427,-0.019692328,0.0035571062,-0.13694277,-0.017126765,-0.03590113,0.04753744,0.01687745,-0.030796897,-0.03991856,0.030687826,0.019775426,-0.03815272,0.021943524,0.0465869,0.00940896,0.025455864,1.1741174e-32,-0.023109596,-0.040239576,0.009676399,-0.030312086,-0.009987502,-0.0704555,-0.051408667,-0.020011434,0.005776606,0.055471215,0.005105472,-0.0004332327,-0.06256985,0.025159236,0.080622286,-0.03209585,-0.004592765,-0.10885499,0.032305878,-0.07310611,0.03026881,-0.06900788,0.07022506,0.05047599,0.04192598,-0.0487827,0.026860293,-0.09025886,-0.0028567617,0.028281156,0.063288346,-0.122452065,-0.017170364,0.052798603,-0.13781688,-0.079755746,-0.02499928,0.049983878,-0.048829217,-0.046692666,0.0229743,-0.050576642,-0.015878377,-0.0033590228,0.029420499,0.04152684,0.031800393,0.04293409,0.056545995,0.04550576,-0.052073997,-0.035035037,-0.08954329,0.018118931,0.00016103814,0.0948419,0.0025734126,0.021423267,-0.045644592,-7.685991e-07,0.005143899,-0.031660963,0.043069784,0.031465072,0.07474835,-0.07266035,0.03347758,0.0067251963,-0.010584866,0.05961129,-0.067581914,-0.004142437,0.02730321,-0.0015162508,0.06340291,0.061962172,-0.046389855,0.002736692,-0.06798666,0.034482818,-0.015901677,-0.070336185,0.01111766,-0.023396678,0.046103206,-0.0039542993,0.014827178,-0.11615107,0.074206315,0.1311341,-0.09374037,0.05074544,-0.0028468987,0.027481299,0.01796637,-1.2649975e-32,0.06485127,0.07050602,0.033882555,0.082572326,0.016876439,0.08769424,-0.06963423,0.01085705,-0.04299215,0.08549432,-0.024915189,0.041348062,-0.020550197,0.01017866,0.029129015,0.012012987,0.024177173,0.03865185,-0.021531787,-0.08123042,-0.056143425,0.013738713,-0.031489942,0.020586422,0.0137281865,0.012717719,0.0272178,0.10618316,-0.04701704,0.03005305,0.019257382,0.012640716,0.07459748,0.008846764,0.011247903,0.05383485,0.13454258,0.107197665,-0.034585774,0.052896675,-0.0177699,0.017961398,0.0060055866,0.04785117,0.04339092,-0.08838516,-0.08708386,-0.09806288,0.027261544,-0.050904468,0.0832292,0.005184892,-0.013390115,-0.048994433,-0.01899023,-0.0025877417,-0.022831794,-0.08091774,-0.05989263,-0.02110532,0.11872263,-0.0067015635,0.04843205,-0.030407017,0.024337368,-0.12480021,-0.081752084,-0.017682318,-0.02771168,0.022791905,0.03556651,0.049154777,0.0064330576,-0.012341426,-8.1294784e-05,-0.00973678,0.03086189,0.13658921,-0.07534971,0.08038312,-0.03326406,0.026622577,0.0040471875,-0.015301226,-0.009954237,0.0027388982,0.0884392,0.047804452,0.068815246,-0.034758084,0.04328573,0.09303652,-0.0067227073,0.044715673,-0.061127882,-4.744889e-08,0.03420858,-0.018507876,-0.083778545,0.0375291,0.0063690506,-0.07159675,-0.009884761,0.017247234,-0.097524576,0.049176745,-0.043790363,0.08035616,-0.10166066,0.051430393,0.0218863,-0.03923976,-0.11991034,0.086614735,0.007391245,0.0011203955,0.049418148,-0.072973624,-0.031270575,-0.0012000873,0.0031715282,-0.051943097,-0.011522029,-0.032622408,0.0641034,-0.016959028,0.01904448,0.1171148,-0.011320093,-0.02658315,-0.013515561,-0.0039984584,-0.028232869,0.053727034,0.0018082939,0.09088103,0.008351916,-0.009553984,0.026784783,-0.01511032,0.017514635,-0.02356613,-0.01153691,-0.013935144,0.043720677,0.040561493,-0.08804501,0.007822255,0.022272663,0.06173628,-0.042272545,0.04947807,0.004323386,-0.07958274,-0.08368,-0.0489343,-0.0021467726,-0.00077237585,-0.024586989,0.018429266} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:43.634828+00 2026-01-30 02:01:10.184515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1703 google ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE 1 t 1706 Go Karts Mar Menor unknown Circuito grande. Los niños lo pasaron muy bien. La única pega es que no pueden compartir circuito niños y adultos. circuito grande. los niños lo pasaron muy bien. la única pega es que no pueden compartir circuito niños y adultos. 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.05 {E1.03} V+ I2 CR-N {} {"A3.01": "La única pega es que no pueden compartir circuito niños y adultos.", "O1.05": "Circuito grande. Los niños lo pasaron muy bien."} {-0.008701713,0.026707795,0.026194854,-0.005343124,-0.073678516,0.02313607,0.00031990284,0.023850573,-0.00025100572,0.042666756,0.08344771,-0.029456813,-0.05407893,0.025601467,0.016894283,0.038082592,-0.026584214,-0.019416293,0.081679165,-0.051115926,0.0582359,-0.03449985,-0.0593261,0.10386371,-0.09237568,0.035207137,-0.0029089109,0.028076598,-0.07146396,-0.054661836,-0.08169175,0.122273676,0.06837196,-0.033959623,-0.105469495,0.0052473997,0.044085797,-0.02430631,-0.024200235,0.019460915,-0.046601817,-0.040079433,0.028129224,-0.062646285,-0.003672805,-0.09123188,-0.050928567,0.0034590967,0.05541604,-0.024235107,0.012571811,-0.03983676,0.034189902,0.090827025,-0.03324432,0.012492591,-0.010412862,-0.004134409,0.08477139,0.078170225,-0.057908148,0.069298,-0.01810483,0.011460896,0.018967545,-0.0004606277,-0.01835321,-0.01283087,-0.018608272,0.012244886,0.055426482,-0.029792774,0.02347679,-0.0005400122,0.012519578,-0.01825882,-0.012643263,-0.010856716,0.005385797,-0.022754442,-0.05623898,-0.016707309,-0.034170426,-0.07010088,0.03009879,0.034160875,-0.025939178,-0.016998975,-0.0247048,0.000117945885,-0.059591528,0.016346937,0.033312555,0.03237972,0.003178096,-0.050697844,0.018446881,-0.13667078,0.011258524,0.013405706,0.06421838,0.0053432314,0.07114831,0.031176057,-0.04257342,0.059497785,-0.0005315104,-0.06971647,0.0027158365,-0.03703611,-0.06332469,0.023614563,0.022567833,0.035631675,-0.049231477,-0.07365853,-0.0027454835,-0.021291893,0.006902252,-0.014685572,0.06935422,-0.056787163,-0.08899515,-0.016920542,-0.016716411,0.002862376,0.037335098,6.439833e-33,-0.008333894,-0.019454362,0.01872346,0.03061319,0.073208496,0.08126202,-0.01042593,-0.0058813384,-0.024178745,-0.04055343,-0.063031666,0.024761915,-0.019951655,0.012459707,0.117882416,0.032600347,-0.0070617013,-0.027905447,0.09452231,0.06481858,0.0031754116,-0.021666802,-0.0005635471,-0.0034271886,0.016036013,0.020217171,0.010665925,-0.055531148,-0.10158671,0.03274515,-0.0024936083,-0.030896692,0.017621657,-0.018606141,-0.027573206,0.0069779954,0.10187053,-0.0059384154,-0.015803315,0.029504513,-0.037255097,-0.024933375,-0.04198867,0.0939039,0.017880928,0.011182978,0.04247608,0.04272689,0.041530445,0.055712342,-0.09761088,-0.05557599,-0.07353933,-0.14164148,0.040799145,0.13338116,-0.046084445,0.060695957,-0.018898496,-0.029899247,0.045654386,0.017772809,-0.021786153,-0.10355628,-0.019722193,0.025643393,0.10202219,-0.02316194,0.09159133,-0.07072118,-0.08066759,-0.05326309,-0.029946744,-0.00012659145,0.03250814,-0.016724229,0.031385243,0.02324902,0.070950575,-0.02683327,-0.07338357,-0.005343927,0.019965077,0.05392348,0.06727041,-0.004829483,0.025011681,0.057971828,-0.04592357,0.09349883,0.010729207,0.07354787,0.100033514,-0.0028579917,0.07852939,-7.248641e-33,-0.009959793,-0.01812091,-0.0056080655,0.0432662,0.023416968,-0.06190164,-0.034838337,-0.04400952,-0.021202214,-0.022415234,-0.03902541,-0.11975077,0.053329665,-0.08891103,0.019172644,0.044307802,0.018744865,0.045925263,-0.06031413,-0.010147169,0.015165867,0.06569252,-0.0140350405,-0.026301336,-0.03813922,-0.05254912,-0.08426373,0.035765193,-0.13981308,0.05115862,-0.030141175,-0.030494291,0.008435677,0.024308404,-0.046746437,0.0167099,-0.01175276,0.03997814,-0.013284158,0.01749185,-0.0038790097,0.06336637,0.04970594,0.050512906,-0.03322409,0.060399897,-0.020647638,-0.04458376,-0.030606888,0.03417224,0.041661505,-0.040430035,-0.07815267,-0.06320367,0.0066979923,-0.07059997,0.03567505,-0.061071273,-0.058332667,-0.02182734,0.04564416,-0.08897199,-0.04322553,0.048324566,0.04607941,-0.019382736,-0.0036225738,0.01680284,0.1215995,0.013111939,0.08090801,0.029660614,-0.0062257033,-0.053228747,-0.040385816,-0.07481074,-0.14978002,-0.010585457,-0.002914889,-0.038666554,0.0045253173,0.00067615055,0.012789005,-0.101829514,0.018220495,-0.06153331,0.03610538,0.038043972,-0.022760633,0.056270417,0.015842952,0.06398162,-0.13410056,-0.088610366,0.011734819,-3.24259e-08,0.08612354,0.044648964,-0.049119998,-0.02918297,0.06930031,-0.07844174,-0.020781964,0.019846391,-0.012960846,0.03313841,-0.012204539,0.031129796,0.061668623,0.036376745,0.06810391,0.03589063,0.1391586,0.11910279,-0.043763507,0.03529374,0.03941613,0.051997356,-0.054676756,0.022477962,0.022703081,-0.01648337,0.011258093,0.0604549,0.023829559,-0.012831399,-0.008706722,0.009776019,-0.05682642,-0.084071666,0.022698194,-0.007712409,-0.0864086,0.0079818955,0.041002095,-0.06935852,0.04465002,-0.020236127,-0.06543491,0.00943774,-0.02051357,-0.10210948,0.014571764,-0.017145887,-0.04629889,0.08522642,-0.021045405,-0.07226837,0.033790495,-0.005751055,0.13042761,0.007866099,0.039152138,-0.007215645,-0.016770367,0.01686169,0.025324171,0.12175958,0.04232834,-0.07344496} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:45.02555+00 2026-01-30 02:01:10.38581+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1520 google ChdDSUhNMG9nS0VJQ0FnSUN1bUoyMXpRRRAB 1 t 1523 Go Karts Mar Menor unknown Such a fun amazing experience for all the family xxx such a fun amazing experience for all the family xxx 5 2023-01-31 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Such a fun amazing experience for all the family xxx"} {-0.012712895,0.0635044,0.060359523,-0.016318223,-0.055800155,0.0022261152,0.030235196,-0.069163576,0.016332734,-0.023637459,0.06192879,-0.028816601,0.06244864,0.04140869,-0.05636755,0.017981185,0.00076182873,-0.029201396,-0.013159914,0.025490306,0.04559017,-0.063082725,0.052353445,-0.012968266,-0.07426777,0.06795039,-0.056927867,-0.0040278276,0.0951691,-0.02355848,-0.012256801,0.04596565,0.05571195,0.030525519,0.03268554,0.04997546,-0.029082203,-0.06559711,0.008298584,-0.02108625,0.032432932,0.033445187,0.10526463,-0.017345775,0.004972981,0.047769833,0.0073303003,-0.03728596,0.087307155,0.09703589,0.040635742,-0.029397346,0.063751504,0.0029740669,-0.03981841,0.07986367,-0.040454745,-0.109689906,-0.033295162,-0.017946413,-0.017003074,0.111524284,0.035338834,0.052116487,-0.0566471,-0.057568435,-0.025961038,0.01787667,0.05430277,0.015790246,-0.11865474,0.07903447,0.014793544,0.0018287934,-0.044980057,0.06933737,-0.03238239,-0.05112107,-0.103246175,0.007346406,0.0257284,-0.03426543,0.017715873,0.059822988,-0.099487655,-0.0091658,0.027741523,0.0036460832,0.053811796,0.015419739,-0.062196784,-0.014300548,-0.013100205,-0.018713966,-0.02694469,-0.05096604,0.010702274,-0.027250534,-0.06704592,0.03938233,0.017894926,-0.03128009,0.037796192,0.028142199,-0.042409256,0.020749524,-0.01769323,0.005296072,-0.039303616,-0.05563382,-0.07769308,-0.0040172194,0.03737425,0.019996772,-0.06028802,-0.017756358,0.022214098,0.008974069,-0.037120607,-0.09060033,0.10071084,0.017368713,0.012773756,0.0012721325,0.047191326,-0.057195872,0.079876445,-3.9149266e-33,-0.04385556,-0.004875935,-0.0032933394,0.03202259,0.07622759,0.062417325,-0.039718356,0.019585336,-0.108417265,0.03022379,0.022329794,0.07086831,-0.002826568,-0.007106779,-0.08441938,-0.047548845,-0.11344723,0.050318405,0.020571724,0.06552643,-0.050567515,-0.03415479,-0.017539581,0.08509442,-0.045168374,0.061649647,0.0067477166,-0.021080604,0.037270498,0.007857777,-0.032303333,-0.013901095,-0.016994705,-0.06946566,-0.029759634,0.03644594,0.06739647,-0.08312816,-0.003499547,0.088764116,-0.0065261493,-0.05892509,0.003990253,-0.021899173,-0.07316886,0.024776645,-0.005191466,0.053513296,0.018290918,-0.045481116,-0.100875475,-0.018675338,-0.03085545,0.06400408,0.068934046,0.03174957,0.012193501,-0.022587718,0.0074838023,0.039136253,0.06386929,-0.051828664,0.0067262677,-0.008683301,-0.015873706,-0.025914583,0.121941246,-0.0058236625,-0.00031046907,0.0001844545,-0.07732662,0.031698935,0.0332712,-0.08519002,0.035604015,0.029848928,-0.06754603,-0.017105987,-0.001963908,-0.012634182,0.04076861,0.028024632,0.07078829,-0.004587433,0.042371295,-0.06774408,-0.034287367,-0.08745122,-0.14308994,0.0026298177,-0.04445479,-0.02751549,0.11805371,-0.02503704,0.032550074,1.9734443e-33,0.052731123,0.009791959,0.009976399,-0.036629736,0.08817095,-0.095569514,-0.006094652,0.020574182,0.011648553,0.05195994,0.0128500685,0.08519358,0.041869663,0.028105525,-0.123587355,-0.007628432,0.12080677,0.08057065,-0.008291817,-0.017090037,-0.009316104,0.0863155,-0.019230733,-0.011805579,-0.0043412833,0.022350444,0.016782207,0.07749401,0.021302981,-0.045889117,-0.07620083,0.07029335,0.013672651,-0.0075822393,0.042850927,0.023862232,0.06119284,0.08012669,-0.09840857,-0.09830352,0.018249433,-0.05205876,-0.040131003,0.063878275,0.02666319,0.040065046,-0.022216618,-0.07408431,0.019836495,0.048413813,-0.024817687,-0.030308507,-0.028137563,-0.061770797,0.027958723,-0.03593367,0.06105313,-0.056060106,-0.006009297,-0.035248794,-0.0859988,0.07199814,-0.0811897,0.09644299,0.020183079,-0.022127349,-0.030876901,-0.035245724,-0.12524207,0.04710542,-0.097788036,-0.03220019,-0.16719937,0.040784623,0.02071055,-0.014700996,-0.012395777,-0.01583584,0.05259785,0.021302255,-0.021838043,0.042671923,0.009875003,0.026491443,0.039112896,-0.030648878,0.0046081347,0.01386775,-0.049253084,0.020267742,0.048579827,0.008121819,-0.026899282,-0.025708476,0.04733549,-2.0430294e-08,-0.0019757368,0.05117859,-0.07657508,-0.07757476,0.039710935,-0.052583188,0.053386908,0.0045091445,-0.08220046,0.05397844,-0.05317414,0.013256494,0.0747678,0.07572407,0.08534444,-0.024809845,0.049904857,0.06362386,-0.009701376,-0.018597933,0.06294419,0.001220364,-0.02337848,0.0030430027,-0.054602157,-0.008445308,-0.009523802,-0.06902332,0.023767173,-0.016627697,-0.016047873,-0.044574976,-0.06511648,0.084795296,-0.07314046,-0.0033087926,-0.05054221,0.032279644,0.079543315,-0.023235295,-0.06181955,-0.07109973,-0.052803762,-0.06286188,-0.04409392,0.04577241,0.031182107,-0.008245023,0.011157696,0.050174918,-0.054247096,-0.001601906,-0.05357031,0.057338476,0.09467119,0.026282998,-0.012496621,0.024867006,0.04359614,0.06400856,0.08644907,0.06948138,-0.025726708,0.0017917536} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.070563+00 2026-01-30 02:01:09.646089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1569 google ChZDSUhNMG9nS0VJQ0FnTUNZdFA3OUp3EAE 1 t 1572 Go Karts Mar Menor unknown Top!!! top!!! 5 2025-06-04 00:52:39.833374+00 nl v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Top!!!"} {-0.058570817,-0.094613835,-0.0614831,-0.09480894,0.03968566,0.027877431,0.062847845,0.052883722,-0.04220442,-0.0023972217,-0.06060538,-0.06747316,0.041018873,-0.01648073,-0.03482329,-0.004826375,-0.052182548,0.015212588,0.043016132,-0.08193875,0.0010540179,0.028375136,0.019958237,0.020485468,-0.05093298,0.026927069,-0.08932183,0.076730594,-0.07318333,-0.11697751,-0.033937052,0.034279115,-0.027755162,0.013874809,-0.009532711,-0.022762828,-0.038401425,-0.056748502,0.081826486,-0.011548,-0.07731039,0.014290076,-0.035113703,-0.012437655,0.00072605687,0.07211396,0.02754272,-0.04582059,-0.014755108,0.0270663,-0.0025491952,0.0012279646,0.03400745,-0.010284559,0.044874735,0.011413521,0.0359802,-0.13140053,0.0048890114,-0.008526732,0.009088256,0.0789539,-0.032351207,0.016446782,0.02821875,-0.033527218,0.03843714,0.04631942,-0.055922665,0.019870596,0.105641715,0.032456122,0.072585866,-0.06289815,0.011147358,0.012782327,0.045481663,-0.045484368,0.034985553,0.09508488,0.0055733095,-0.08121818,-0.041753426,0.008986346,-0.015419868,-0.045027513,-0.048033323,-0.051269792,-0.0692979,-0.0068755345,-0.04561302,-0.0027573227,-0.01158466,0.039011292,-0.10368277,0.057318386,0.042859565,-0.0701214,-0.109635584,0.079841554,0.007178191,-0.015114355,0.039728977,-0.047152318,0.004993849,-0.01169395,0.08968871,0.09646088,-0.028499458,-0.06672221,0.025117699,-0.07500419,0.021854458,0.04765746,-0.026935408,0.012399671,0.06751418,0.030246513,0.059480418,-0.09335303,0.07546041,0.0060913917,-0.007704076,-0.0984554,-0.016977092,0.0068819267,0.09178065,-3.5978605e-33,0.024261646,-0.0042448835,0.060460158,0.026058486,-0.006910455,0.016899811,-0.0061911666,-0.038661793,-0.11148809,0.012616115,-0.06507862,-0.051451743,-0.10176375,0.0020183965,0.03058824,0.014052484,-0.033271283,-0.04706975,-0.17797667,0.0077016633,-0.022962946,0.07508193,-0.0131053645,0.012716699,-0.09068154,-0.033447657,0.015527271,-0.12973687,-0.024257604,0.027377779,0.03012174,0.011025551,0.02816514,0.041222364,-0.01289945,-0.007936357,-0.023080416,-0.064765334,0.028636906,0.01753627,0.05087166,0.0011519601,0.05609936,0.03205494,-0.12966414,0.12259144,-0.008279552,0.011005299,0.11753153,0.017347254,-0.080248214,-0.057120636,0.006451041,-0.008998244,-0.027470741,0.04584818,0.07010626,0.037409093,0.03860769,-0.0014165044,0.0060647335,-0.030104121,-0.044783037,-0.036734972,-0.020909037,-0.06846624,0.011036743,-0.008274734,0.08253672,0.035844818,-0.04556216,0.04361362,0.10686442,0.030801771,-0.023491379,0.0729282,-0.016235908,-0.04380171,-0.020515501,-0.042757247,0.019160442,0.021109931,-0.028326742,-0.051672056,0.044516902,0.013369439,-0.02354828,-0.021345863,-0.0057733124,0.046551425,-0.067536615,-0.039939016,0.18613741,-0.004495048,-0.10968253,2.742288e-33,0.06499184,0.028254863,0.050890084,-0.011132979,0.025187647,0.017426103,0.012883105,-0.018421045,-0.04894936,0.082996294,0.04975994,0.009568761,0.06306744,-0.033042613,0.04495455,0.067201264,0.035148468,-0.042549297,-0.05841107,-0.0600555,-0.08269017,-0.061443437,-0.056848187,0.008292883,-0.06343106,0.06689714,0.0854527,0.043834105,0.01485095,-0.03731019,-0.015456234,-0.019415148,0.03734435,0.04987578,-0.036810648,0.10847746,0.0035459322,-0.0469347,0.011728033,0.095341645,0.046391882,0.013462657,0.022726266,0.12560797,-0.04303703,-0.0070096636,-0.088628106,0.014665392,-0.040646132,-0.0031268806,-0.088669404,-0.018686166,-0.017605232,-0.03502742,0.04550355,0.04501702,0.027738506,0.04173097,0.021889508,-0.050668728,0.026978886,0.07260807,-0.009332977,0.1232494,0.060027774,0.022876604,-0.012198402,-0.018163016,-0.078622945,-0.014049769,-0.00036446852,0.022522122,-0.043838095,0.028621944,0.00021417702,-0.03132205,0.07804105,-0.0067171995,0.030501127,-0.048885345,-0.057879478,0.0019930417,-0.011111115,0.007954273,0.070444405,0.06775262,0.1122547,-0.041804645,-0.012344301,-0.020205254,-0.07912265,0.02585157,-0.058470827,0.010851729,-0.019334937,-1.773357e-08,0.04281312,-0.006892077,0.01952223,0.032795127,0.015533108,0.044647403,0.032494675,-0.009463658,0.011168657,-0.0075664027,0.0065823756,-0.0009570412,-0.021255935,0.018132012,-0.030254731,0.004621348,-0.06883612,0.11509599,-0.015180798,-0.08970339,-0.036858816,0.014149844,-0.022898864,-0.04382448,0.0058895666,-0.029033128,-0.014682107,0.07796115,0.042001892,0.051119056,0.01985802,0.03209982,-0.031941857,-0.06303866,-0.0017893191,0.023522574,-0.023837753,0.042150985,-0.006983989,-0.06432409,0.007889787,-0.0353471,0.06390939,-0.040170502,0.016166413,0.0074813296,0.037972767,0.051983986,0.05391195,-0.04340846,-0.07360468,0.015847502,0.05565776,0.059071906,-0.00732904,0.030792652,0.007082496,-0.028511746,-0.07801604,0.07413262,0.083954535,-0.009500505,-0.01760383,0.06575855} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.708155+00 2026-01-30 02:01:09.838058+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1657 google Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB 1 t 1660 Go Karts Mar Menor unknown Mucha gente, pistas llenas, reservar sirve de poco cuando están petados. Pero buen precio y los mejores de la zona y alrededores mucha gente, pistas llenas, reservar sirve de poco cuando están petados. pero buen precio y los mejores de la zona y alrededores 3 2025-10-02 00:52:39.833374+00 es v5.1 J1.03 {A1.02} V- I2 CR-N {} {"J1.03": "Mucha gente, pistas llenas, reservar sirve de poco cuando están petados.", "V1.01": "Pero buen precio y los mejores de la zona y alrededores"} {-0.0014653169,0.017107837,0.0009971311,-0.06535989,-0.084572434,-0.025824716,-0.02733794,0.0071836873,0.0014639752,0.042063344,0.023999164,-0.007267649,-0.029128244,-0.014923693,-0.02546762,0.052071627,-0.021720463,-0.0013061672,0.06013412,0.04810565,0.038506716,-0.014577547,-0.028621519,0.08795152,-0.041701045,0.0007787747,0.07400423,-0.025907388,-0.05516757,-0.040268954,-0.048474412,0.05331092,0.0836236,-0.01583583,0.018402454,0.008546352,0.09764177,-0.01311424,-0.039271574,0.017274756,-0.076823935,-0.027746355,0.0034849916,0.020135963,0.00088735565,-0.017783014,0.038333658,0.031458925,0.02321873,-0.031926546,-0.00856849,-0.021552268,-0.046324022,-0.022516303,-0.028342616,-0.007041732,-0.060880132,-0.034823563,0.027421,0.040525302,-0.04039869,0.03000463,-0.096316464,0.00027653485,0.010899832,-0.05806211,-4.4964534e-05,-0.03482943,-0.14988035,0.00089904055,0.10596328,-0.040685847,0.019269263,0.04386968,-0.05296257,0.09417335,0.012199467,-0.020408573,-0.017193386,-0.03952237,0.0050079185,0.008020928,-0.05111197,-0.0093735205,0.03444609,0.0016758393,-0.013715008,0.0062711216,0.020921774,0.0062652086,-0.0012820887,0.06212544,-0.037549846,0.034139328,-0.006295272,0.05610356,0.0011787526,-0.030359188,0.0647,-0.00767703,0.12043396,0.023637848,0.042336203,-0.036268562,-0.085393526,0.00056501065,0.03921522,0.016015703,0.018885417,0.0937721,-0.036615916,-0.005296054,-0.09432016,0.0068035275,-0.10508086,-0.010126545,-0.04990765,-0.078599714,-0.049266435,-0.14119042,-0.028858813,0.021247601,-0.064394064,0.011888941,0.015126834,-0.077179626,-0.022728708,9.227979e-33,-0.05893291,-0.03952916,-0.038166724,0.0602372,-0.08018553,0.10643052,-0.004097334,-0.041816942,-0.05407,-0.058659725,-0.08046977,0.067006,-0.0028564062,-0.014883751,-0.0060862345,0.0077630626,0.052509297,0.025138313,0.07363508,0.03001291,-0.06905784,0.06440889,0.00317754,0.02271619,-0.006265063,0.059636716,-0.059550274,-0.14853397,-0.09278796,0.027151603,0.037481286,0.0047323136,0.05272461,-0.050192058,-0.03837418,-0.020105125,0.020346168,-0.0133942785,-0.029888686,-0.036152624,0.021187548,0.031230656,-0.0032749253,0.057812195,-0.013091609,-0.02637704,0.045838095,0.055358738,-0.0074057654,0.018391086,-0.021144005,-0.08239372,-0.116221264,-0.061142128,-0.034690954,-0.0038960685,-0.06859355,0.032255046,-0.0038544948,-0.015845824,-0.009096605,0.06683991,0.08688093,-0.009415534,0.021871502,-0.09263912,0.019322174,0.09532411,0.16180758,0.107481174,0.010091081,-0.09057031,-0.014669627,0.026557531,-0.012147746,-0.013181634,0.10480636,0.051727068,0.03907372,0.01871799,-0.049263168,0.06934926,0.0014003596,0.03290913,0.10220161,0.07765752,0.06274713,0.02788807,-0.038211245,0.10192845,0.0029049597,0.050682463,0.029348727,-0.07477202,0.0022160271,-9.9856144e-33,-0.02071478,-0.024065046,0.026087787,-0.00045117238,-0.061313044,-0.032671887,-0.03239028,0.00088540715,-0.057572108,-0.085449345,-0.06238752,-0.13222317,0.14684233,-0.03729717,-0.07791955,0.046602454,0.0044466397,-0.054690238,-0.03793033,-0.016084598,-0.12132038,0.03832519,0.0558534,0.013234184,-0.046159215,-0.059094496,0.01736504,-0.02469196,-0.032018006,-0.01099485,0.06615309,-0.008285563,-0.03254484,0.05744733,-0.014187691,0.078727625,0.053539503,0.055077985,0.042408407,0.01874489,0.0008680123,0.061998636,-0.06490735,-0.035381164,-0.036449235,0.010381606,0.0048289774,-0.09714824,-0.03950279,-0.057147596,0.055367652,-0.046310734,0.010120821,-0.04191344,0.07039097,-0.029047744,-0.02079246,-0.075365186,-0.016496133,-0.041943517,0.014704029,-0.0068199555,-0.039084602,0.031120319,0.021377334,0.0141206775,0.0052025123,-0.017184097,0.036477514,0.07908319,0.088817716,0.031874597,-0.07894837,-0.005644929,-0.037424903,0.019241119,-0.062228493,0.021037852,0.04080451,0.027469644,-0.003443459,-0.011594771,0.0046966327,-0.023078946,0.008197704,-0.05255083,0.00721683,0.09368161,0.0029562581,0.066561855,0.0056544445,0.03599045,-0.0063430304,-0.092285074,-0.0486839,-3.9281275e-08,0.0033043816,-0.042510003,0.010123435,0.057798054,0.064564824,0.012472025,-0.032623388,0.020331785,0.02315826,0.10179288,0.017999405,-0.061150987,0.0026282219,-0.04545897,0.027028266,0.09104069,0.10699838,0.064617984,0.0054160203,-0.0328253,-0.003827656,0.050165754,-0.050597556,-0.008721353,0.02488015,0.0018268437,-0.01794743,0.02640503,-0.039844807,0.011929597,0.014291874,-0.04449643,-0.038819697,-0.134977,0.06879396,-0.03957954,0.040936742,-0.048684653,0.0053600576,-0.075406335,0.06028439,0.050037015,-0.043767996,0.025638323,-0.038689736,-0.10796239,-0.0325865,0.019325184,-0.00574458,0.07099905,-0.056689564,-0.015814777,0.11228556,-0.02266699,0.04909469,-0.003262921,0.052261055,-0.0012222368,-0.004102084,0.02766483,0.022082172,0.14127967,0.040362302,-0.04653503} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:01.72275+00 2026-01-30 02:01:10.207001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1660 google Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB 1 t 1663 Go Karts Mar Menor unknown No he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están mal.. tienen crono para los corredores y una terraza elevada para los visitantes. Recomendable . no he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están mal.. tienen crono para los corredores y una terraza elevada para los visitantes. recomendable . 4 2025-10-02 00:52:39.833374+00 es v5.1 E1.03 {O1.02} V+ I2 CR-N {} {"E1.03": "No he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están ma", "V4.03": "Recomendable ."} {0.035561904,0.010326698,-0.0017687273,-0.025274312,-0.06848785,-0.0377576,0.062372502,-0.02677386,-0.09701626,0.023193447,0.03481663,0.017765827,-0.07671404,0.03609889,0.05247882,0.027883437,-0.07037917,-0.0314989,0.014570932,-0.065762475,0.02666841,0.0024622849,-0.07454236,0.045151856,-0.095139496,-0.10358547,0.030838717,0.08297943,0.008216076,-0.031405605,-0.041874852,0.08812953,0.002464848,0.011378915,-0.0010774649,-0.009183918,0.0500201,-0.0482412,-0.07630569,0.0452207,-0.017070651,-0.04067445,-0.025074057,0.023681866,-0.045593105,-0.08003139,-0.08525487,-0.0068282927,0.006060544,-0.013481685,-0.026724739,-0.043246124,0.0115785375,-0.056151867,-0.008436044,-0.010733335,-0.074546106,0.06334903,0.14300422,0.053597927,0.086144745,0.058499824,-0.074378535,0.019492643,0.014675559,-0.060497347,-0.0012989045,0.036573596,-0.052279286,0.07288165,0.16474783,-0.04190843,0.022581581,0.03158707,-0.012780752,0.028560366,-0.02003579,-0.014807618,-0.08824051,-0.025248673,-0.001256872,0.020031862,0.02183658,-0.093254015,-0.04359434,-0.04358373,-0.009213852,-0.012238526,0.023151139,0.03694587,0.05976169,0.062186852,-0.042056978,-0.02467667,0.036593225,0.07267456,0.023056371,-0.08967762,-0.045309275,-0.0039484776,0.093828835,0.030078208,0.0709893,0.03217561,-0.070968665,0.041834243,-0.01475572,-0.01332516,0.033508465,0.022616938,-0.078579016,-0.0028630532,-0.021931699,-0.017436532,-0.1202262,-0.009151434,-0.019041633,-0.006256507,-0.065547034,-0.026310505,0.08066769,0.0067517697,-0.04683942,-0.0077811317,0.034814194,-0.07089835,0.0120223,9.276758e-33,-0.035163075,0.05810438,-0.05995753,0.011765861,0.034261454,-0.074010335,-0.07318988,-0.054879874,-0.112243325,-0.03550369,-0.06746408,0.044940062,-0.030618222,-0.0132277,0.107271746,0.085597105,0.016465247,-0.015819153,0.02283407,0.00916774,-0.03196593,-0.029989542,0.0026176542,0.019153303,0.0067477725,0.036947764,0.10119099,-0.058933027,-0.060829878,0.040797375,-0.06565592,0.08859861,-0.0007321177,0.05300135,-0.047811847,0.026507877,-0.014380301,-0.00049313315,-0.092836894,0.036017675,0.102209486,-0.014112321,-0.04760181,0.06690054,-0.06599509,-0.042116668,0.0663538,0.0013668681,0.073353834,0.02517964,-0.10189585,-0.029825768,-0.06367045,-0.07240753,0.023805689,0.04912566,0.016795224,0.03359858,0.025862472,-0.053333424,0.043577787,-0.061221857,0.031749867,-0.018218119,-0.041386988,-0.04897881,0.009596903,0.018878642,0.064084105,0.002790339,-0.07402021,-0.04284932,-0.008964332,-0.022449486,0.07113475,-0.02145893,-0.041671246,0.06336947,-0.016130187,0.08812512,-0.08015013,0.007796846,0.017847732,0.060383994,0.09325368,0.06303305,0.003908692,0.05944668,0.042409115,0.09281536,0.0014500368,0.0366287,-0.00447846,-0.03137216,-0.02718282,-1.0808529e-32,-0.048775055,0.02222732,0.1045906,0.09179024,0.03199949,0.022538742,-0.0012810319,-0.026991963,0.029476676,-0.034941062,-0.038032576,0.0019865232,0.056238085,-0.023776652,0.049777996,0.066992424,0.050784662,-0.042378575,-0.0318637,-0.0022706287,-0.018516626,0.00715367,0.047755525,-0.021082379,-0.038422264,-0.032618884,-0.010847944,0.044891037,-0.12252808,0.027704632,0.08549452,-0.11356575,-0.038159173,0.050102588,-0.07123055,0.022845622,0.10938224,0.067828685,-0.050362293,0.10539832,0.054498572,0.06490512,-0.048983008,-0.008072267,-0.0544617,0.010814138,0.06755948,-0.08787609,-0.0030757375,-0.092048496,0.10238523,0.09855499,-0.07229978,0.011814699,0.025913116,-0.010518631,-0.036045454,0.021997364,-0.06933339,0.0031018753,0.035112828,0.010653177,0.009421484,-0.049711943,0.07107417,-0.018120212,-0.017842,-0.014868216,0.0028893477,0.00084978284,0.019720055,-0.011000493,-0.08770676,-0.012288784,-0.014235682,-0.011705903,-0.039851826,0.013214093,0.0095063,-0.03622112,0.04359862,-0.05129588,-0.008430769,-0.014499314,0.06188806,-0.021187566,-0.047959834,0.033292327,0.06427736,0.05001609,0.07528805,0.037755426,-0.023429018,-0.017708965,-0.023803009,-4.266777e-08,0.029479787,0.028281083,-0.09275765,-0.022101767,0.00069155736,-0.02055365,-0.045325972,0.03919242,0.0040310025,0.10691468,-0.020227797,-0.015628621,0.008608461,0.031640563,-0.062227484,-0.022454156,0.051071737,0.08215359,-0.044364545,0.023024123,0.04659221,0.017677587,-0.036150847,0.051740002,-0.010831452,-0.024785517,-0.046818707,0.0077538337,0.047431853,0.009927201,-0.08439657,0.011698395,-0.064261176,-0.06243423,0.03415756,-0.048715163,-0.03389322,0.02947166,0.022909986,-0.045410004,0.083769955,-0.046188995,-0.09897264,0.052021682,-0.0950269,-0.043293335,-0.06876606,-0.05162271,-0.037286066,-0.016016804,-0.053560838,-0.06424341,0.029182764,0.005714479,0.11207697,-0.056277733,0.01528769,-0.015740126,-0.016381094,-0.03169318,-0.034669973,-0.014979504,0.0048736953,-0.069742106} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:36.663898+00 2026-01-30 02:01:10.219536+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1618 google Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB 1 t 1621 Go Karts Mar Menor unknown superbe karting pas loin de la mer , super ambiance course adaptée au enfants ( 1 course sur 2 , enfants , adultes ) superbe karting pas loin de la mer , super ambiance course adaptée au enfants ( 1 course sur 2 , enfants , adultes ) 5 2025-08-03 00:52:39.833374+00 fr v5.1 A4.01 {O1.01} V+ I3 CR-N {} {"A3.02": "course adaptée au enfants ( 1 course sur 2 , enfants , adultes )", "A4.01": "superbe karting pas loin de la mer", "E1.04": "super ambiance"} {0.008383578,-0.008219282,0.017251395,-0.008750493,-0.027679527,0.03678718,-0.060005024,0.101958044,-0.026942939,0.04738754,0.041204296,-0.042716436,0.038586725,-0.022840768,-0.032593206,-0.027292823,-0.03774326,0.019545851,0.055233005,0.0028027366,0.050079577,-0.04200011,0.0073912493,0.07070263,-0.13047947,-0.0014580287,-0.03969959,0.049257506,-0.016880894,-0.038289852,0.03398845,0.078182615,-0.06466453,0.0021693103,-0.007070544,-0.0072023454,-0.022306917,-0.13035111,-0.00703328,-0.0071612243,-0.047001183,-0.032819748,-0.07125924,-0.06726707,0.04554655,0.054518323,-0.042653613,-0.021303752,-0.008642535,0.018956674,0.003998124,-0.05692951,0.07872742,-0.056112766,-0.0024561707,-0.011282236,-0.06571605,-0.02386522,0.048552368,0.016718032,0.016542993,-0.002698317,-0.046989746,0.0014726658,-0.13664596,-0.06846643,-0.024972932,0.04581466,0.013485397,0.038279112,0.0476582,-0.035208,-0.04371816,0.022993654,0.08889028,0.03150454,-0.07796878,-0.006703786,-0.03158345,-0.10337259,0.026651163,-0.08700841,0.020181064,-0.053608328,0.12475996,-0.06687827,0.077615604,0.0054742144,0.01897232,0.0043259375,-0.029799024,-0.030626545,-0.07785136,-0.0042419657,0.01135493,0.02507354,-0.06647741,-0.017420318,-0.014505727,0.010958688,-0.06075777,0.024765432,0.051473804,0.115681626,-0.085369445,-0.039084632,-0.005843914,-0.028001996,0.05625444,-0.03713588,-0.007442905,-0.09802987,0.038600247,-0.073305435,-0.019621989,0.06694382,0.04957511,-0.048350345,-0.049658753,-0.014461417,-0.010986324,0.029892359,0.030433936,-0.00079176103,0.031085152,-0.03350149,0.07520079,2.972994e-33,-0.05389936,0.017352426,0.017614134,0.018192329,0.0016411912,-0.057462886,-0.017849935,0.013232414,0.018736728,-0.04970013,0.027501069,0.057634234,0.019471472,-0.0064550964,0.08043043,-0.002966289,-0.0039376104,-0.02982311,0.09009318,0.012304957,-0.032352775,-0.008482776,0.07437735,-0.0020044143,0.045482118,-0.050432023,0.057738375,-0.010621971,0.016634438,0.02783541,0.03645436,-0.020255327,-0.064497516,0.01573672,-0.015209998,-0.030471217,0.0020559232,0.06803016,-0.0050648637,0.036021966,0.012821693,-0.02929739,0.03923333,-0.07235456,-0.09647623,0.06650108,0.096623905,0.031504337,0.046724472,-0.0042122602,-0.059768334,-0.022825962,-0.06369729,-0.093119524,0.0038082479,0.050379947,-0.0077666864,0.031244578,-0.079843126,-0.029321702,0.09793394,-0.039943375,-0.03287456,0.024250394,-0.07659443,-0.04280111,0.009929689,-0.011255757,0.07767524,-0.017831692,-0.06548017,0.014192218,0.08045159,-0.06092883,0.05618864,0.0924561,-0.050931644,0.077590995,-0.039873973,0.03383318,-0.095652945,0.0131248925,0.022628754,0.003050094,0.06058152,-0.054434177,0.009659128,-0.027346756,0.06329244,0.017657211,-0.032166246,-0.043129124,0.04119,0.032719526,0.0816123,-4.721513e-33,0.031651538,0.064580336,0.0077016163,0.08276605,0.05565685,0.10001589,0.027534889,0.02675809,-0.014627204,-0.040810566,-0.050459415,-0.031621892,0.0649991,-0.051559195,0.0012056262,0.007579917,-0.009274494,-0.0035875202,-0.0060125957,0.022053104,-0.004571205,0.020482644,0.056063116,-0.062041484,0.035602756,0.046160396,0.068206415,0.018154385,-0.030001542,0.095348515,0.013191727,0.014428175,0.026448248,0.055315282,-0.015209632,0.059597753,0.03976281,0.1344529,-0.052233297,0.12852386,-0.025361143,0.04160053,0.004855814,0.056632746,0.05496951,-0.07569259,0.051134896,-0.048824195,-0.018558828,-0.014980639,0.007621323,-0.031535946,-0.055697918,-0.09346896,0.02734169,-0.032386508,0.030454718,-0.05879553,-0.09635749,-0.040265422,0.069096744,0.08498228,-0.060128547,0.011156586,-0.05000594,-0.08256038,-0.11224532,0.0033660221,-0.041209638,-0.009810714,0.017286932,0.0018413737,0.02195535,-0.05941582,-0.012894227,-0.05387701,-0.0056381,0.0783321,0.002464237,0.040597316,-0.08561548,-0.010652474,-0.053027257,0.04486205,0.002100405,-0.0028497034,-0.010753127,-0.015723828,0.02022683,-0.0721753,0.046514194,0.076074846,-0.00026446625,-0.00087872875,0.0039052865,-2.8255064e-08,0.020836923,-0.030487528,-0.090496235,0.0590004,0.06468922,-0.1395737,-0.06793348,0.019945532,-0.0591037,0.09911333,-0.06619137,0.022102114,0.026065191,-0.007047283,-0.014265803,0.065887325,-0.017877383,0.15210797,-0.033269834,-0.015958298,0.029096406,-0.053102005,-0.047236625,-0.047712855,-0.078130744,-0.07063655,-0.018408181,-0.13349427,-0.023207767,-0.083160646,0.048964553,0.024402667,-0.014653902,-0.019607853,0.0051265284,-0.05979625,-0.014890287,0.10228726,-0.03961696,0.10167116,0.031320214,-0.01746479,-0.013572164,-0.0049261195,0.05580127,0.035495505,-0.013355482,0.0056123356,0.025324855,0.10250839,-0.075826935,-0.011285959,0.04882883,0.012217656,0.093783036,0.064941905,-0.037595507,-0.011546876,-0.07711153,-0.008460501,-0.014800132,0.036792275,0.047993496,0.019166237} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:46.014265+00 2026-01-30 02:01:10.068024+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1620 google ChdDSUhNMG9nS0VJQ0FnSUQ5czdMMjNBRRAB 1 t 1623 Go Karts Mar Menor unknown Instalaciones nuevas . Circuito grande con distinto tipo de categorías . Marcador electrónico . Tienes una pequeña cafetería para tomar bebidas q tienen pantallas de seguimiento y mirador hacia el circuito . Disponen de billar y futbolín exterior con mesas . instalaciones nuevas . circuito grande con distinto tipo de categorías . marcador electrónico . tienes una pequeña cafetería para tomar bebidas q tienen pantallas de seguimiento y mirador hacia el circuito . disponen de billar y futbolín exterior con mesas . 5 2025-01-30 01:52:39.833374+00 es v5.1 O2.03 {E1.03,O3.02} V+ I2 CR-N {} {"O2.03": "Instalaciones nuevas . Circuito grande con distinto tipo de categorías . Marcador electrónico . Tien"} {0.0010948436,0.036297746,-0.038933434,-0.1081589,-0.123793125,-0.044494104,0.021568585,0.10710267,-0.02093666,0.019993603,0.09067207,-0.051641926,0.019602591,0.009861506,0.06377498,-0.04122575,0.006964975,-0.032351755,0.039276898,-0.038483795,0.031507377,-0.08298129,-0.07706188,0.039845254,-0.05499029,0.06872589,0.037970055,0.022314955,-0.10581262,-0.14019576,-0.08502397,0.070913054,0.08673952,-0.030864011,-0.030828724,-0.021237193,0.060366925,-0.019871008,0.02222292,-0.0004084629,-0.119582355,-0.050901875,0.033662938,-0.057011694,0.00953248,-0.050674602,-0.07769307,-0.036382157,0.011205449,-0.066575415,0.019455243,0.01301073,0.03856432,0.03557417,-0.02490958,-0.0045979396,0.038698334,0.031313967,0.011003961,0.09410718,0.078735866,0.047745347,-0.014020005,0.06435032,-0.028045297,-0.034145057,0.020898206,0.038482763,0.0031656078,-0.047355883,0.06622398,-0.11840891,0.037782993,-0.078291886,0.0031467683,-0.008620257,0.036297947,0.008856786,-0.014147474,-0.07349181,-0.052884895,-0.0068912287,-0.05162618,-0.025154902,0.02310923,0.036284853,-0.043086562,-0.023532147,0.0026152479,-0.018338338,-0.02064065,0.054068264,-0.07105902,-0.043196015,0.012581734,-0.021753795,-0.018903738,-0.0935967,0.03819942,0.041843552,0.08143407,0.007825416,0.06697907,-0.0013379959,-0.04617601,-0.039133046,-0.0063031204,-0.006611001,0.003270528,-0.028734045,-0.037550163,-0.03817292,-0.023363687,-0.061968446,-0.08241743,0.005603144,0.015347981,-0.04116777,0.06836439,-0.03353391,0.02985584,0.0031284206,-0.069629535,0.008931402,0.004732482,-0.006806291,0.056594167,1.0453258e-32,-0.07831481,-0.018121384,-0.037400965,0.06331383,0.08240794,0.047817495,-0.0060259835,0.02475247,-0.008389011,-0.031465232,-0.03444897,0.057343896,-0.044209596,0.054497477,0.19531448,-0.06435576,-0.047799796,-0.04276668,0.026305873,-0.011548221,-0.04835758,-0.041550457,0.042108584,0.05097188,0.10132209,0.07116193,-0.018225232,-0.016400907,-0.08244227,0.026708588,0.059352618,-0.028672319,0.04180894,0.018948553,-0.07436167,-0.02746997,0.030873645,0.008734825,0.0044534192,-0.031836398,-0.011728303,0.015356753,0.0010759191,0.08115747,-0.0047816196,0.07550468,0.012254143,0.06506103,0.12451734,0.0072805854,-0.09096273,-0.051840086,0.0039115003,-0.023671994,0.003968172,0.017474204,-0.022865294,0.014713031,0.07265379,0.012013928,-0.03897986,0.1412839,-0.04242547,-0.009837588,-0.026383577,0.017002197,0.048549563,-0.014067501,0.1218457,-0.030988792,-0.1178684,-0.06601744,-0.028625894,0.031487133,0.019011214,0.010151066,-0.11243948,0.00252285,-0.026700512,-0.008750858,-0.005945329,-0.050979912,0.032175627,0.018138736,0.08729498,0.053370096,0.026076814,0.03382745,-0.0061984584,0.11018405,-0.0167028,0.08766228,0.024491964,0.03485833,0.103040546,-1.2915453e-32,0.002871787,-0.022917813,-0.019337537,0.007606213,0.0018315049,0.031974886,-0.08181047,-0.09044425,-0.00640406,-0.04471088,-0.07588203,0.033206653,0.086830564,-0.030263536,-0.026367743,0.05059075,-0.051604703,-0.024732713,-0.013896756,0.009138159,0.026118293,0.017711574,-0.0752205,-0.062209837,-0.041648496,-0.04473878,-0.07784428,0.016903399,-0.081707574,0.005290785,-0.031196896,-0.051884685,0.053127233,0.09806735,-0.068909526,-0.016422495,0.09592321,0.03127601,-0.005349983,0.009472297,0.005565392,0.03117896,-0.004048382,0.06297211,-0.094416395,0.017940294,-0.06809105,-0.10940853,-0.06981019,-0.00797849,0.004446708,-0.0685494,-0.008494035,-0.09678545,0.02606669,-0.02183085,-0.013332394,-0.012076136,-0.06767267,-0.026304461,0.060834374,-0.045253232,0.031932898,-0.039424367,0.031507146,-0.012325407,0.020049384,0.03265738,0.013782139,0.0045996895,0.086984605,0.04779801,-0.015900109,-0.017555334,-0.05613837,-0.0097484365,-0.061987173,-0.017292129,-0.02922274,-0.05534658,-0.0062676617,-0.055360366,0.043908328,-0.065288454,0.0055027516,-0.043479096,0.041786365,0.053088017,-0.012144761,0.036261674,-0.007117392,0.084281355,0.010316554,0.0062872632,-0.01423302,-5.5734496e-08,0.028463176,-0.049288828,-0.07006387,-0.009667733,0.025153942,-0.08529864,0.053913347,0.013555522,0.008587883,0.016900655,-0.0016922763,0.014833661,-0.0040656137,0.073068015,0.02585508,0.046819,0.026026443,0.10352202,-0.053415768,0.028682353,0.07549449,-0.004701067,-0.022626562,0.023239585,0.05889401,-0.010940052,-0.023324696,0.00635171,0.022699727,0.021298042,-0.035251424,-0.004704622,-0.0079990495,-0.05649562,0.031986296,0.04419866,-0.05998605,-0.03934377,0.0032285824,-0.107761964,0.01097532,-0.13632067,-0.11489626,-0.020809503,0.017249506,-0.0716866,-0.07498348,-0.009466827,0.0010209107,0.038545854,-0.07617834,0.03857222,0.019925622,-0.02077889,0.04993485,-0.0023150246,0.019613331,0.010535527,0.029957565,0.0070758457,0.025347386,0.07573434,0.06352875,-0.06859175} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:06.745211+00 2026-01-30 02:01:10.074661+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1521 google ChZDSUhNMG9nS0VJQ0FnSUNVMHJ6cElBEAE 1 t 1524 Go Karts Mar Menor unknown Great place to take the kids but as good for adults great place to take the kids but as good for adults 5 2020-02-01 01:52:39.833374+00 en v5.1 O4.04 {} V+ I2 CR-N {} {"O4.04": "Great place to take the kids but as good for adults"} {0.082178764,0.05871259,0.01546328,0.041323792,-0.055104468,0.022046208,0.006003056,-0.068069614,0.0019835804,0.0063416255,0.09732775,0.07015175,0.025080828,0.032707926,0.017606696,-0.019694867,0.13990341,-0.12579593,0.049758248,-0.06987081,-0.019553078,0.009853626,0.08340149,0.008311877,-0.06305883,0.08454131,-0.059922505,0.027031858,0.040757213,0.04134324,0.048523348,0.018620402,0.08019477,-0.0074702394,-0.002028917,0.09878405,0.07377087,-0.029206473,0.02759852,0.030096767,0.0050546653,0.0005557417,0.00095701474,-0.051922325,-0.03392204,-0.028861402,0.002615142,-0.105041824,0.14476417,-0.0052978634,0.11114223,-0.030443918,0.06731895,-0.004094067,-0.04450871,0.026045214,-0.054185312,-0.13234891,0.025676474,-0.038996488,0.06808455,0.059595577,-0.06596703,0.022263339,0.0149135515,-0.05731508,-0.057427373,0.014783343,0.06894208,-0.10862134,-0.067506485,-0.003256303,0.06385369,0.031992383,-0.010527707,-0.029030912,-0.013519391,-0.0036240718,0.044531796,-0.058958527,0.030496623,-0.06784956,0.01348681,-0.013173388,-0.006856042,-0.024238959,0.009763701,-0.07274447,-0.009495133,0.036480103,0.006269701,0.06194584,-0.028361278,-0.014416911,0.02620254,-0.008199314,-0.053314798,-0.03757855,-0.06716357,0.02398365,-0.0018415593,0.083433576,0.031268273,0.004790287,-0.03143443,-0.0380507,0.011175017,0.008250739,-0.04111172,0.023648525,-0.048993196,0.04256438,0.03803449,0.10093224,-0.04210792,0.019841937,0.05666935,-0.029667176,-0.0036295387,-0.07115623,0.03622583,0.035907865,0.006779198,0.054584026,0.009630545,-0.028406272,-0.01639831,-2.6196632e-33,-0.06223245,0.056734655,0.011629198,0.011359154,0.045192156,0.035598528,-0.012064392,-0.03517697,-0.049663723,0.019335149,0.03472858,-0.04384326,-0.0063086245,-0.03898277,0.049403418,0.034111798,-0.06554729,0.025168115,-0.07476169,0.026646415,-0.07624833,0.03155262,-0.025064982,0.061445598,-0.007663773,-0.0063309898,0.03354393,0.031776484,0.0636356,0.017170496,-0.07431258,-0.051214185,-0.031414833,-0.043198723,0.041481424,0.06386723,-0.008337729,0.041482765,-0.09125275,0.022138571,-0.070641875,-0.036908913,-0.029360348,0.13012914,0.03621642,0.07118554,0.0045610345,-0.0689179,-0.024206225,0.058448635,-0.057386972,-0.04540669,-0.11331112,-0.04190113,-0.07513667,0.066453226,0.010452602,0.062220547,0.007016965,-0.02106808,0.066952646,0.02755068,-0.065303735,-0.064988606,0.004129148,-0.05686228,0.054078568,0.024110539,0.08516244,0.02657558,-0.0005944996,0.015701987,0.04731202,0.03637028,0.0128264725,-0.009143354,-0.09200114,0.020052224,0.028477132,0.03294943,0.069095194,-0.029149901,0.0021999727,0.037749007,0.07248882,-0.093936615,0.0010722608,-0.13611001,-0.049528934,-0.015163937,-0.08342148,-0.010996397,0.031700395,0.03702524,0.0033885543,7.3844247e-34,0.06377411,-0.059607044,0.021410767,0.059989143,-0.027740868,-0.028157929,-0.00804207,-0.02719814,0.026687616,0.044548254,-0.13838305,0.037395544,0.033285275,0.030386752,0.049842548,-0.02192405,0.093420506,-0.0127445785,-0.01662603,-0.052912544,-0.012873792,0.074446924,-0.011917915,0.03308856,0.019238535,0.045148652,-0.13767512,-0.023119915,-0.064819574,-0.00484954,-0.04399146,-0.011962358,0.04339115,0.06408406,-0.050598666,0.013048526,-0.044774245,0.014733645,-0.066290654,0.0071471026,0.051297046,-0.07588957,-0.10828098,0.07649885,0.00530941,0.036302496,0.006456734,-0.00086355244,-0.027282573,0.014343617,-0.08131325,0.005597984,-0.050326146,-0.05150834,-0.019774579,0.002985807,0.016344488,-0.045530707,0.0023044408,-0.036410693,-0.013159733,0.012001488,-0.090127684,0.09009494,-0.015080534,-0.023417622,-0.04239878,0.05532509,-0.0582108,0.06071118,-0.009480199,-0.09200851,-0.005722035,-0.007059283,-0.028255312,-0.029969461,0.17030007,0.06257116,-0.01965252,0.015971769,0.016919123,-0.04058813,-0.07903705,-0.017964754,-0.013689917,-0.027020445,0.07684017,-0.046081074,-0.09075305,0.034775957,-0.0025893582,0.010273501,-0.0763711,-0.05167091,-0.00294334,-1.7325547e-08,0.043420933,0.053944707,-0.024518864,0.020556416,-0.045784064,-0.11404313,-0.0070065036,0.039886933,0.025101818,0.14262268,-0.0076314923,-0.00018237525,-0.017311426,-0.045112185,-0.05704816,0.04635635,-0.005102426,0.0071548903,-0.03212456,0.068368204,-0.008732412,0.1020991,-0.06369848,0.09274098,-0.05094316,-0.008712958,0.041038234,-0.01741933,-0.036637228,-0.050112206,0.020190423,0.07916633,-0.002870868,0.045493048,0.026605131,-0.07153244,-0.030747548,-0.014130135,0.034816984,-0.02389394,-0.081311844,-0.06060686,-0.0041142586,-0.014456846,-0.01845898,0.0595355,0.060260464,0.07470909,-0.007018672,0.05246181,-0.072426245,0.0082708895,-0.025375418,-0.038257994,-0.0029041055,0.03226726,-0.030745625,-0.05046984,-0.032132443,0.034581125,0.04710718,0.02057925,-0.0151289245,0.05538209} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.080534+00 2026-01-30 02:01:09.6485+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1663 google Ci9DQUlRQUNvZENodHljRjlvT2xsa1ltNXNVVXhETm5FMlVVMXhObkYwUmtkU2RHYxAB 1 t 1666 Go Karts Mar Menor unknown Najlepszy GoKart na którym byliśmy, bardzo polecam, syn bardzo zadowolony. najlepszy gokart na którym byliśmy, bardzo polecam, syn bardzo zadowolony. 5 2025-12-01 01:52:39.833374+00 pl v5.1 V4.01 {O1.04} V+ I3 CR-B {} {"V4.01": "Najlepszy GoKart na którym byliśmy, bardzo polecam, syn bardzo zadowolony."} {-0.010761078,0.0130783,-0.052426245,-0.02950008,-0.026319215,0.012526486,0.12030263,0.11912841,-0.029456468,0.08202393,0.08887455,0.016599907,-0.014508894,0.08777955,0.049896993,-0.024645092,0.00191846,0.03718015,0.023894705,0.005097764,-0.0031568615,-0.049149796,0.08267964,0.020258464,-0.018297559,0.05179493,0.00847643,0.0782112,0.0020287076,-0.057632815,-0.058564197,0.100442074,0.0005888221,0.004026847,-0.037659224,-0.027350696,-0.051827352,-0.046619974,0.009494309,0.050470572,-0.041058198,0.060785465,-0.04009252,-0.0061071753,0.017942753,0.06799595,-0.0098550515,0.010144942,-0.007827402,0.013927752,-0.15985031,-0.07455977,0.025915317,0.03673461,-0.021141756,-0.0124390675,-0.02722915,0.01593068,0.00340878,-0.062889956,-0.028390773,-0.025083348,-0.1183547,0.017021421,0.034639888,0.025610449,-0.0010737333,0.050059896,-0.045826305,0.08164665,0.020966735,-0.08926305,-0.010458268,-0.04696815,-0.12464711,0.045726813,0.045890428,-0.043188374,-0.030319547,-0.10176958,0.08212894,-0.0049421694,-0.028364405,-0.033231206,-0.038503047,0.038643863,0.009319262,0.020646144,0.018141571,-0.020720707,0.022970276,0.07453673,0.00083684054,-0.024279637,-0.087928504,-0.03646913,0.0493392,-0.00059681706,0.038218997,0.0525895,0.13999669,-0.035523765,0.08910313,-0.0021547135,-0.0590232,0.0069220704,-0.018100403,-0.024918713,0.015428198,0.057182454,-0.08894365,-0.05758008,-0.028981604,-0.06616335,0.03769716,0.0476124,0.024682596,0.050462212,-0.0410435,0.029312447,0.041774027,-0.033748217,-0.0031995624,-0.0015383593,0.0057507367,0.055941083,0.03317388,7.360571e-33,-0.002115421,-0.013900217,-0.042491976,-0.011202408,0.05797368,0.02049392,-0.03307247,0.004545537,-0.088264786,-0.044802513,-0.049733084,-0.047692046,0.036919735,0.009859064,-0.046180647,0.048596993,-0.024304321,-0.03274834,-0.035563346,0.081664786,0.005452153,0.06611864,0.0027395529,0.024320671,0.013681957,0.0131714195,0.015045362,-0.05576602,-0.040878624,0.022052962,0.10132753,-0.029957488,-0.10501867,-0.026278106,-0.020279352,-0.009027015,-0.060460415,-0.08262304,-0.0069960156,-0.1472548,-0.03597429,-0.025702992,-0.05133929,0.025864398,0.03228017,0.012893135,-0.020346241,0.1025145,0.019884562,-0.0025253692,-0.07905476,0.014228415,-0.07258466,0.015285424,-0.04417901,0.059491288,-0.056194305,0.018211963,0.051714476,-0.048182685,-0.0017789275,0.019485617,0.022688711,-0.03641404,0.0604826,-0.08186607,-0.024482055,-0.08135616,0.019593073,-0.039690804,-0.0066122883,-0.05428696,0.023012312,0.12743294,-0.051431667,0.045307834,0.0044941767,-0.025156956,-0.056535333,0.06095784,-0.15892307,-0.0002886882,-0.022412155,-0.0384552,0.013759962,-0.0043125474,0.027922725,-0.031677697,-0.034121256,0.03592589,0.020746553,0.029870404,0.03973329,-0.034056623,-0.01368919,-6.423794e-33,0.054945607,0.046384208,-0.100851245,0.05210766,0.05443841,-0.0498832,-0.004708407,0.04552458,0.037670415,0.0011776445,0.05107793,-0.07543527,0.09156629,-0.014206134,0.020437501,0.0036379364,0.024415905,0.055925116,-0.014118552,-0.041504983,-0.0075116996,0.08486337,-0.042972837,0.042232916,0.0014360964,0.06470401,0.013236727,-0.04703023,-0.07412847,0.060996752,0.016732562,-0.031598244,-0.07797265,-0.06694613,0.008941923,0.014343151,0.050572585,0.06339998,-0.047995474,0.087289155,0.015018905,0.04595808,0.0023509357,-0.047979813,-0.021740628,-0.034217194,-0.08702509,0.046075664,-0.065704785,-0.0902833,0.048275292,0.044039223,0.034431987,-0.06903406,0.119562075,0.08116535,0.03384076,-0.0512675,-0.04042821,0.054506086,0.0314642,-0.047190335,0.052861176,-0.01371122,0.051661097,0.016795235,0.02443083,0.020072183,0.030198202,-0.0437663,0.019070035,-0.01026556,-0.03483132,0.043119807,-0.04350542,0.07965168,-0.06280456,0.07382422,0.027141178,-0.08421621,0.123056374,-0.07883585,-0.0029396717,0.11231832,0.007218124,-0.014891552,0.040387165,-0.004734109,0.013556251,-0.05574341,0.03703946,-0.024415748,0.008923375,0.0662418,0.0123139275,-2.816791e-08,0.007386123,-0.07513934,0.0146201365,-0.034140117,0.042570062,0.0010557262,-0.028181555,0.029433845,0.012072858,0.08437899,0.081521176,-0.009353658,0.00661629,0.0904579,0.043993734,0.03939781,0.029638072,0.033452924,-0.061597146,-0.0686255,0.03210019,-0.06646746,-0.04171799,0.016026853,0.017131645,0.04132366,0.023465147,0.0056358455,0.0016190357,-0.045570083,-0.10738142,0.06778369,0.05514417,-0.08530274,0.018547717,0.089236364,-0.029826542,-0.050333347,-0.029856438,0.056837082,-0.039462496,0.013634473,0.05437086,0.04423685,-0.015376603,-0.07808984,0.07123341,-0.05335607,0.008468503,-0.11930543,-0.10691239,0.058720727,0.033386778,0.030477647,0.014190785,0.009281024,0.020327393,0.018221436,-0.08300615,0.008111227,0.04427171,0.0044689886,-0.033260714,-0.036556475} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:00.067684+00 2026-01-30 02:01:10.230771+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1623 google ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE 1 t 1626 Go Karts Mar Menor unknown Z gokartów nie korzystałam, ale panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czekał mnie 2 godzinny spacer do domu). Przechodziłam obok nich przypadkiem i zaszłam zapytać, czy pomogą. Pomogli :) Dzięki nim udało się przejechać połowę trasy, a resztę spokojnie przejść i bezpiecznie dotarłam do domu przed zmrokiem. Dziękuję! PS dodam, że panowie byli mili i można było się dogadać po angielsku. z gokartów nie korzystałam, ale panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czekał mnie 2 godzinny spacer do domu). przechodziłam obok nich przypadkiem i zaszłam zapytać, czy pomogą. pomogli :) dzięki nim udało się przejechać połowę trasy, a resztę spokojnie przejść i bezpiecznie dotarłam do domu przed zmrokiem. dziękuję! ps dodam, że panowie byli mili i można było się dogadać po angielsku. 5 2025-01-30 01:52:39.833374+00 pl v5.1 P3.02 {P2.03} V+ I3 CR-N {} {"P1.01": "panowie byli mili i można było się dogadać po angielsku.", "P3.02": "panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czeka"} {-0.04942387,0.087017156,-0.026766252,-0.04582152,-0.1368608,-0.027704824,0.09388555,0.027559446,-0.022577506,-0.005372666,-0.025302643,0.03438104,-0.0046498454,0.02165746,-0.01667261,0.009070549,-0.049875256,0.09362223,-0.11678754,0.05466118,-0.0070139226,-0.011699579,0.074315466,0.047994472,-0.037998695,0.0025522024,-0.0059499373,0.100785375,-0.0017943286,-0.027346784,-0.012239531,0.07560768,0.0173084,-0.045906056,0.08460939,0.015927788,0.014839892,-0.12205246,-0.021059696,0.010339568,0.055266816,0.009622858,-0.13404395,0.0057278913,-0.031685255,0.090242215,-0.005794973,-0.0211291,-0.085789934,0.03464427,-0.14538197,-0.021764405,0.046380017,-0.042045,-0.062806696,-0.028074667,0.02062383,0.0903484,-0.0024641822,-0.055252828,-0.021754624,-0.00082980935,-0.07619824,0.06250651,-0.0048703984,-0.068450995,0.010971566,0.07580521,-0.04620717,0.02513621,0.0422013,-0.045509186,0.003301869,0.051498875,-0.116828054,-0.026297571,0.01612024,-0.04629343,0.022678975,-0.06374187,0.03861795,-0.014538363,-0.008257436,0.0040433863,0.052650243,0.049918953,-0.021086052,0.09639521,0.03794667,-0.048334483,0.04379762,0.05931936,-0.050011523,-0.019522563,-0.036206413,0.0061007184,0.011389532,-0.06575279,-0.026208328,0.0034999365,0.0845151,0.009659014,0.14211038,0.033719487,0.032910995,0.022534931,0.020517172,-0.017325308,-0.012831382,0.053687863,-0.030952504,-0.07672309,-0.018177588,-0.06339364,-0.026088655,-0.004257766,-0.017806288,0.015289217,0.0039708763,-0.04184439,-0.010255235,-0.064964324,-0.015988562,-0.0063698795,-0.021515576,-0.03675105,0.033578377,1.9104646e-32,-0.01705064,-0.03763893,-0.0056611546,0.015217438,0.08036529,0.0010913989,0.008568431,0.04462996,-0.014881218,0.026252326,-0.089895815,0.0037000591,0.051739383,-0.012026318,-0.05740223,-0.009773848,0.04966331,-0.07213935,-0.047837403,0.09905297,0.090480216,0.06698073,0.018602408,-0.00784435,0.0256038,0.0060154344,-0.009333057,-0.09722705,-0.0448961,0.019888652,0.064163424,-0.074031346,-0.09697833,-0.04282396,-0.04440952,-0.010678846,-0.026585884,-0.051408403,-0.027478242,-0.041434962,-0.03127526,-0.12566507,0.016091293,0.1097239,-0.045083884,0.030260857,-0.013656942,0.008929786,0.1010424,-0.05461158,0.031890247,-0.04532503,-0.115627065,0.009772601,-0.029422292,0.025024757,0.011214479,0.063340016,0.06647155,-0.03251121,-0.013804467,0.010375012,0.08967898,0.0020911659,0.08812959,-0.115331896,-0.091662005,0.032050513,0.07100027,0.014778878,-0.0064170687,-0.09849972,0.026561238,0.07179689,0.08091837,-0.033688262,0.061368182,-0.06863422,-0.041177895,0.00299065,0.05105725,-0.020548698,-0.07112673,-0.011212677,0.011616331,-0.020331014,0.045392904,0.0076270704,-0.03294923,0.06988945,0.008972338,0.012507472,0.06628194,-0.04234663,-0.055462334,-1.888907e-32,0.0076794038,0.06987675,-0.072696805,0.022848886,-0.0076398347,-0.009927789,-0.0035804,-0.016423503,0.014828642,0.008350512,-0.04011458,-0.078084156,0.05264666,0.041003354,-0.070800796,0.09100567,-0.025642153,0.05924852,-0.03856115,-0.07074763,-0.053687625,0.022288578,0.017992,0.10885776,-0.043858953,0.010138214,0.08322099,-0.04151314,0.002014815,0.05785233,0.0005337871,-0.044838447,-0.050869774,0.030386629,-0.0031557702,0.022802975,0.04301713,0.05794075,-0.060377356,0.0136197815,-0.0013042137,-0.04022802,-0.032120377,0.018137664,0.011072162,-0.03465536,-0.0432253,-0.02787366,-0.054322746,0.015615273,0.031274922,0.049927026,-0.011786918,0.008952022,0.043173447,0.03752902,0.00804732,-0.14758256,-0.053372566,0.038748406,0.017852914,-0.0019379645,0.05088778,0.032748703,0.019214509,-0.048908412,-0.019383296,0.06441748,0.0152658075,-0.0050511477,-0.038999222,0.005105612,-0.044360235,0.044969942,-0.08182701,0.058547553,0.0100887325,0.01616315,-0.0001637886,-0.06448495,0.052472048,-0.046474095,-0.0152139235,0.044752512,-0.0582816,-0.016259234,0.05940796,0.03285214,0.0053793974,-0.040300395,0.09915917,0.08621699,0.0565107,0.033663966,0.012868006,-5.7222223e-08,0.037769105,-0.061348956,0.016696466,0.048863772,0.07302632,-0.10618224,-0.041854154,-0.019877791,-0.015858041,0.011615234,0.031419374,-0.0024351995,-0.06279692,0.004887148,-0.029757462,0.14726137,0.0062822457,-0.013607878,-0.010478331,0.00056904304,0.03836229,-0.03119515,-0.09054043,0.023477063,-0.018496107,0.034493234,-0.0234927,0.038846865,-7.978816e-05,-0.10634571,-0.031539906,0.023434322,-0.016457034,-0.026783528,0.0005468096,0.036509532,0.0135160405,-0.024103656,-0.08008293,-0.055572506,-0.027183337,-0.017786222,0.07642817,0.022586774,-0.05105879,-0.026098056,-0.024541177,-0.09511229,0.08471331,-0.0318012,-0.06446016,0.08364464,0.05769857,0.04392751,-0.017785924,0.09712071,-0.08240938,0.033237215,0.013821119,0.0381738,-0.009480748,0.051089343,-0.03918202,-0.069994435} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:33.794518+00 2026-01-30 02:01:10.084537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1666 google ChdDSUhNMG9nS0VJQ0FnSUNtbjd1UXpnRRAB 1 t 1669 Go Karts Mar Menor unknown Mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc tot 400cc. vanaf 16 jaar. mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc tot 400cc. vanaf 16 jaar. 5 2022-01-31 01:52:39.833374+00 nl v5.1 O2.03 {O3.02} V+ I2 CR-N {} {"O2.03": "Mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc to"} {-0.07502305,0.10575581,-0.0695647,-0.10632315,-0.11309261,-0.0155329015,-0.0046033743,0.17315264,-0.034680825,-0.011645863,0.07937254,-0.06380516,0.010423929,-0.001020726,-0.054490745,-0.03264826,-0.020807162,0.0463822,0.01991591,-0.010553263,0.007171579,-0.04000308,0.065513514,-0.0020145378,-0.018871896,0.12497156,0.03815478,0.027656209,-0.025133077,-0.056192506,-0.04341344,0.061454687,-0.0028261626,-0.04146065,-0.012440066,-0.031618755,-0.013415252,-0.02374149,0.08598609,0.003678007,-0.06576991,-0.068360135,-0.018866925,-0.00500318,0.05279896,0.026019787,-0.025960306,-0.014795543,-0.05790296,-0.031008894,0.036660075,0.00097230513,0.08443926,-0.04203991,-0.028524615,-0.05365746,-0.0002292225,0.09363937,0.051506758,-0.025580771,0.08325191,-0.004253444,-0.051869992,0.01759704,-0.049359247,-0.06901858,0.024796218,-0.052935015,-0.0843114,-0.0032975539,0.017526232,-0.08707664,-0.016954964,-0.08564814,0.0056234165,0.055445194,0.004819474,-0.023045586,0.03377624,-0.03325562,0.022061592,-0.037155077,-0.025294503,-0.03154507,-0.034495402,0.034425937,0.0070222034,0.012192386,0.0010391361,-0.07904463,-0.06774208,-0.0358824,-0.08272958,-0.029665668,-0.043369293,-0.005254389,0.03210516,0.034089856,0.046203714,0.04501454,0.07881153,0.0061474945,-0.0076234764,0.0051052915,-0.10589605,0.032698452,0.042373236,-0.00049102464,-0.0017774191,-0.013535984,-0.041990228,0.019426152,0.0060129617,-0.09868183,-0.0017255524,-0.01695282,-0.046617243,-0.017624483,0.022236515,0.0144134965,0.011643492,-0.011393269,-0.07124725,0.04674574,0.016449658,-0.005009591,0.13716777,9.8445705e-33,-0.08177925,-0.03903562,0.044428844,-0.012681202,0.020468645,0.006264827,-0.064262375,0.0137054315,-0.007719085,0.0072940295,-0.0011160705,0.011929101,-0.036766227,-0.042277947,-0.02558112,-0.030628368,0.019068176,-0.0785389,0.038389605,-0.07295648,-0.020361274,-0.028910546,0.06729974,0.069047876,0.06516673,0.032586396,0.032651797,-0.09088834,-0.024610225,0.05053269,0.0672875,0.03114168,-0.047368083,0.020535227,-0.10552471,0.015467622,-0.0022625234,-0.019857144,-0.017242964,-0.08637376,-0.048803236,-0.021339549,-0.024500692,-0.0038221595,-0.044506364,0.014657856,0.026826914,0.029682629,0.08115324,0.082507364,-0.1287471,-0.016003417,-0.116945356,0.054294843,0.041884024,-0.012029696,-0.035643626,0.07853342,-0.026506536,-0.0024496713,-0.031295203,0.0892632,-0.017787466,-0.06712147,0.02157419,0.032858625,-0.03424345,-0.09368428,0.026320627,0.004599013,-0.029865757,0.014238596,0.040945847,-0.0457656,0.0199323,0.08784687,-0.025376044,0.025909835,-0.04109682,-0.044235397,-0.123977505,-0.08134733,-0.06379164,-0.084528424,0.10526728,0.001370072,-0.037882786,-0.034887943,-0.0048251846,0.038739797,0.011431676,-0.024030559,-0.024854323,0.038916145,0.071629286,-9.539533e-33,0.05474362,0.057084005,-0.008835741,0.08152129,0.069542915,0.015994295,-0.025944274,-0.060861066,-0.023582859,0.0133917555,-0.02432188,-0.064609356,0.080201894,0.024279641,-0.009279348,0.0043843505,0.032266065,-0.017988803,0.0040590125,-0.00816389,0.044888478,0.08158021,-0.03811919,0.03715671,0.005446031,0.004075696,-0.02649569,-0.0033880367,-0.021848965,0.0076936204,-0.010590685,-0.029449044,0.014542634,0.11939563,-0.03281277,-0.05609523,0.12743399,0.15583645,-0.008123453,-0.0142635675,-0.04250673,0.029814022,-0.014138417,0.038150493,-0.024886495,-0.03056024,-0.028526697,0.0004927674,0.07358155,-0.037595905,0.043143336,0.023449399,-0.017072918,-0.020313319,0.1040006,0.069622,0.0103208,-0.02214723,-0.090215445,-0.045575682,0.04953939,0.023671083,0.026743665,0.021800064,0.08591846,-0.063952476,-0.08538345,0.0315306,0.11951626,-0.04110696,0.08477639,-0.0017344994,0.10032343,-0.0047071963,-0.01591845,-0.08916673,0.014370516,-0.021554831,0.08259573,-0.013218826,-0.03260128,-0.010700412,0.032761764,0.056080952,0.03221654,-0.02472139,-0.003577554,-0.022941813,0.055528123,0.0013696727,0.03976504,0.11147084,-0.02703047,0.03812283,0.008883826,-4.150977e-08,0.03235571,-0.0420276,-0.096319176,0.027792422,0.08708438,-0.067037754,0.027318608,0.040240284,-0.11007154,0.016872192,0.11930828,0.010967815,0.023425125,0.029768502,0.07522829,0.0005222163,0.01735848,0.08626389,-0.012475077,-0.0043699136,-0.0030463915,-0.105816245,0.012751664,0.044304434,0.008390936,0.0038672532,0.02097689,0.019620854,0.068188876,-0.05701723,-0.07404,0.059309408,0.048279516,-0.0038035298,0.057880264,0.019031575,-0.056938723,0.07989765,-0.035188958,0.041861944,-0.008427802,-0.058427278,0.013139334,-0.017906863,0.0016962123,0.0108604515,-0.006367207,-0.0031333268,0.030886006,-0.006447669,-0.13587394,0.010522535,0.05860399,0.06357633,0.013227687,0.032738745,-0.038434833,0.0069040265,-0.04755447,-0.021505656,0.008059681,0.04860751,-0.021436958,-0.07120135} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:35.133003+00 2026-01-30 02:01:10.241092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1667 google Ci9DQUlRQUNvZENodHljRjlvT2xSNmRYbG9MWFZLVGw4ME9GSjFXRkl6UWpoSU4zYxAB 1 t 1670 Go Karts Mar Menor unknown Un buen sitio para llevar a los peques y hacer una actividad diferente. un buen sitio para llevar a los peques y hacer una actividad diferente. 4 2025-08-03 00:52:39.833374+00 es v5.1 O4.04 {A3.01} V+ I2 CR-N {} {"O4.04": "Un buen sitio para llevar a los peques y hacer una actividad diferente."} {-0.016700061,0.011067918,-0.025430022,-0.075932726,-0.040242363,0.042136833,0.033986986,-0.027502075,0.0025982303,0.034223568,0.054316267,-0.0031953384,0.02562302,0.029794278,0.08820535,0.0017724264,-0.10079174,0.057014793,0.0072773146,0.060748,0.12362353,-0.035172753,-0.031109449,0.13074785,-0.08655478,-0.10364812,0.018447058,0.011381521,-0.01831886,-0.06540668,-0.00995578,0.01951516,0.12464082,-0.010889419,0.013974348,0.013402867,0.068285786,-0.043365605,-0.015474737,-0.027648207,-0.09239612,-0.051209226,0.012067041,-0.031646907,-0.02110682,-0.07020948,0.02699372,0.03165756,-0.028133772,-0.019380394,-0.034795493,-0.0148248365,0.011229141,-0.002034825,-0.046268318,-0.0128846625,-0.0381689,0.022773676,0.08771916,0.015282694,-0.00018787809,0.024649916,-0.01467109,0.008240739,-0.036241826,0.014809298,-0.0025887296,-0.026641224,-0.08252331,0.108244345,0.091265544,-0.08560532,0.034321222,0.006926427,0.004637012,-0.0012602808,-0.055523872,-0.008175159,-0.077498116,-0.053890143,-0.007283415,0.0027678139,-0.036461454,-0.008858306,-0.008921349,-0.03263874,-0.017317755,0.030847013,0.036766473,0.03146023,-0.04068859,0.057830095,-0.12146587,0.0097282315,0.0109902425,0.033101704,-0.026490463,-0.09762137,0.09210128,0.01651883,0.080030106,0.09004991,0.05870209,0.023990894,-0.03202518,0.015981624,0.008958937,-0.0963036,-0.055343203,-0.0048073446,-0.05028984,0.012530668,-0.009331231,0.02595773,-0.10507228,0.036023885,-0.024175294,-0.087596245,-0.06483589,-0.15584634,0.088622004,0.04414577,-0.020318579,-0.014290302,0.056389086,-0.10013762,0.021720951,3.7970385e-33,-0.034823973,-0.040743586,-0.0014495002,0.048995875,0.009741203,0.03244982,0.012076364,0.03581439,-0.0069423555,0.02773958,-0.06409325,0.0397481,0.077924475,0.028393682,0.09342,0.027957043,-0.001001469,0.040602803,0.08161902,0.0060637775,-0.06159001,0.026711902,-0.056309372,0.05362928,-0.028319443,0.058120858,-0.0014495595,-0.052838515,-0.06286256,0.05707656,0.04462689,-0.0067633693,-0.021783877,0.005796396,0.013983261,-0.05697349,0.020607134,0.12796251,0.058232937,-0.04647966,0.0706909,0.042946648,-0.03238545,0.016070895,0.025611898,-0.039110158,0.02421858,0.04520604,0.015184501,0.057627235,-0.011159176,-0.06584542,-0.013309315,-0.10658228,-0.016812522,-0.02155798,-0.04883353,0.101783134,-0.08199379,-0.02894676,0.09315226,0.042753983,-0.00940445,0.008884417,-0.07634389,-0.025024079,0.026242718,0.04172583,0.116225235,0.019719305,-0.029012958,0.004083468,-0.04202787,-0.025331529,0.009859936,-0.019921482,-0.061136436,-0.011029652,0.053813662,-0.00542824,-0.11567751,-0.014125411,0.04391527,-0.0016941421,0.030596856,0.07388814,-0.024274902,0.0436565,-0.049805973,0.08856931,-0.0018691214,0.014518039,-0.0018694369,-0.012717651,0.08502904,-6.0057854e-33,-0.016261911,0.030752067,0.00033638446,0.09436835,-0.016972564,-0.0038087168,-0.07914158,-0.02607906,-0.042387713,-0.015382967,-0.113150604,-0.12974389,0.10846864,-0.030601192,-0.010045794,0.08240008,-0.028805671,-0.05390771,-0.09714608,0.0274932,-0.0336663,0.022295278,0.07857592,-0.034868862,0.019315306,-0.018428165,0.05311849,0.06889805,-0.012616508,0.047377266,0.024597948,-0.02254287,-0.043664377,0.028987544,-0.036955588,0.024128152,0.075029805,0.029116526,0.031647366,-0.032900847,-0.013352753,0.046458606,-0.046974435,-0.03784728,-0.012349786,0.04707089,-0.0076432475,-0.08794618,-0.04863043,-0.09480877,-0.009568652,-0.03617758,0.030190893,-0.04388571,0.021359844,-0.037910543,-0.007362237,-0.08958055,-0.08507111,-0.02684557,0.080997534,0.068819314,-0.07987507,0.012365373,0.046518885,-0.0033053185,-0.08268523,0.026339436,0.0033411658,0.046586197,0.105599776,0.009941929,-0.0734959,0.029456131,-0.11447318,0.022046095,-0.040192273,-0.029638913,-0.011092375,0.05038098,-0.017558588,-0.0006834835,-0.010187942,-0.07716392,-0.047088236,0.007849981,-0.025813548,0.042249504,-0.012966467,0.04312714,0.0068045715,0.023929251,-0.066393845,-0.075461276,-0.05676506,-3.0863056e-08,-0.008164712,-0.08128353,-0.013044561,0.022523172,-0.02952782,0.0074479864,-0.08661918,0.012978027,0.04924147,0.023446068,0.011266263,-0.08563459,0.049006376,0.0063726758,-0.017714852,-0.0037990687,0.13993205,0.0297274,-0.05076744,-0.0018619037,0.05992795,-0.045325886,-0.038578607,0.010973157,0.0021228797,0.0034601358,-0.07623572,0.0024093038,-0.003219281,-0.017845437,0.027099729,0.005962413,-0.029279295,-0.07657482,0.031344585,0.043920543,-0.018208066,0.0114369895,-0.03314842,0.011172665,0.056807224,0.03275149,-0.08331646,0.006934287,0.0035309978,-0.10015782,-0.069043845,0.032778256,0.025393365,0.06079745,0.012268892,-0.06552229,0.047598626,0.020122088,0.04235184,0.0532262,0.046302486,0.016396204,0.007200433,0.022546474,0.05829478,0.11861296,0.015575299,-0.046022683} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:39.752015+00 2026-01-30 02:01:10.243985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1668 google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB 1 t 1671 Go Karts Mar Menor unknown Un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares, nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera , lo recomiendo, te lo pasas genial y acabas entre risas y encima puedes tomar algo en la cantina, los cars y el circuito están muy bien. un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares, nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera , lo recomiendo, te lo pasas genial y acabas entre risas y encima puedes tomar algo en la cantina, los cars y el circuito están muy bien. 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.05 {E1.04} V+ I3 CR-N {} {"O1.05": "Un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares", "O2.03": "los cars y el circuito están muy bien", "O3.02": "nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera"} {-0.06275338,-0.012295439,-0.047967754,-0.052188914,-0.029506322,-0.01755097,0.072076626,0.049340747,-0.040784016,-0.024358256,0.107858166,-0.03055409,-0.035672795,-0.0073409043,0.07595016,0.004516674,-0.07571986,0.08876938,0.021963267,-0.014309876,0.13863245,-0.08612109,-0.05385039,0.0719566,-0.15643,0.04957277,0.013886331,-0.008003817,-0.0723617,-0.08789769,-0.026840018,0.03475423,0.08220905,0.007339436,-0.026533078,-0.049956877,0.010487012,-0.05969814,-0.074243836,0.04116756,-0.07414723,-0.0219019,-0.07266544,-0.052965615,0.060714096,-0.10455458,-0.018356435,0.04922624,0.05407329,-0.1030572,-0.033475462,-0.01157701,-0.061372474,-0.02928126,-0.014639223,0.011613576,-0.09461017,0.015445511,0.052160118,0.05287238,0.042670347,0.055947527,-0.05892786,-0.004518279,0.044663306,-0.06873353,0.023690615,2.8578335e-05,-0.06637193,0.03960966,0.025520625,-0.06502522,-0.0022864582,-0.022622673,-0.050981324,0.043205515,0.039320353,-0.016359517,-0.057485607,-0.05841579,0.013654036,-0.04088862,-0.07179576,-0.006453223,0.048850633,-0.027348127,-0.04088267,-0.0051190048,0.015638646,-0.0079093175,-0.043071575,0.030382771,-0.1050576,0.012623086,-0.05199157,0.019379688,0.06218723,-0.06983704,-0.041024122,0.040487014,0.093741596,0.00806704,0.07783466,-0.00014153437,-0.044828005,0.008764013,0.0057516447,-0.016387634,0.013597827,0.07274269,-0.08399099,-0.028465448,-0.058062322,-0.036479767,-0.0747538,0.014727357,-0.076723695,-0.027828807,0.032046195,-0.03809592,0.016346844,0.0010831959,0.037154388,0.0035816382,0.038986303,-0.038984872,0.09059642,1.4854295e-32,-0.04398316,0.0144700045,-0.013354926,0.09051439,-0.00068396976,0.038725555,-0.02596675,-0.006214082,-0.042937983,-0.026499117,-0.07890082,0.07204392,-0.030916017,0.10875495,0.07595797,-0.04349653,-0.036709465,-0.07368161,0.05495111,0.008483959,-0.08369756,0.011999012,0.012694117,0.016260568,-0.013690532,0.032578092,-0.025220895,-0.02008039,0.003618333,0.05703327,0.036245715,0.04132587,0.013002519,-0.006499685,-0.03777672,0.024810102,0.042487092,0.019292096,-0.0054603727,-0.005354137,0.015939835,0.01668825,0.032854784,0.039133918,0.019544449,0.09497527,0.053077646,0.043175705,0.02547125,0.05789865,-0.084555864,-0.10654947,-0.054787725,-0.099506885,-0.0016203957,0.060795203,-0.06688264,0.042890485,0.027728172,-0.024985809,0.011175797,0.032516986,-0.010345459,-0.0064656315,-0.06533637,0.02433625,0.03973568,-0.037661593,0.07237591,0.008597051,-0.0718671,-0.040895022,-0.02400431,0.02409949,0.05200746,-0.012766413,0.03922185,0.08888161,-0.06346949,-0.012451048,-0.08558952,-0.037171237,0.07479317,0.07746569,0.10758398,0.08132953,0.015379654,0.03853031,-0.04131352,0.08855772,0.029101247,0.1126888,0.03466226,-0.036367774,0.04676121,-1.5190552e-32,0.05551506,-0.029051118,0.024425933,0.018167377,-0.011938268,0.016904753,-0.034349035,-0.033199742,0.030013194,-0.014084862,-0.069332704,-0.08475567,0.096356444,-0.088263944,0.02020964,0.043927904,-0.008534016,-0.048386432,-0.076110944,0.0041979826,-0.04169367,0.046127032,0.018887868,-0.02266581,-0.0365571,-0.057602,-0.017966254,0.051177256,-0.105694555,-0.038971335,0.062607095,-0.067311235,0.023484115,0.064845674,-0.061519187,0.040028643,0.046319436,0.0001559049,-0.05527928,0.07374391,-0.033135008,0.028289746,0.0071084504,0.0042060204,-0.014413643,-0.020013914,0.038205832,-0.118215054,-0.037200574,0.025380395,0.09683492,-0.056757145,-0.06827239,-0.026547227,0.025486471,-0.009925261,-0.03248246,-0.057207856,-0.02304487,-0.03709916,0.08554247,-0.017315209,-0.055351876,-0.086538196,0.10471679,-0.022775503,-0.022738475,0.051403195,0.029341217,-0.007032617,0.11488518,-0.018232431,-0.051765475,-0.031494636,-0.06758906,-0.05653786,-0.15373196,0.039819717,0.0136265345,-0.02924006,-0.000505527,-0.012694048,-0.00074242253,0.040962316,-0.012424615,-0.0326845,0.058081523,0.07214618,0.0053846277,0.033308625,0.04061481,0.04750606,-0.045239497,0.041621607,-0.03130947,-6.1580124e-08,-0.004202349,-0.008319802,-0.07364527,-0.019455824,0.005054757,-0.06478561,0.012364961,0.02714489,0.0020508564,0.031449612,0.013809673,0.04334743,-0.019711893,0.05989087,0.010672307,0.038249288,0.053400386,0.119932294,-0.035662122,-0.005605258,0.058310628,0.02198697,-0.03890874,0.03128322,0.06651483,0.0047748387,0.01028649,-0.03651865,0.07526233,0.007326365,-0.039682962,-0.061921705,0.03745532,-0.056416105,-0.00023722272,-0.028315516,-0.010563662,0.0154912975,0.015577358,-0.032734353,0.07006975,-0.08335421,-0.041917924,-0.0040721814,-0.04216913,-0.08474888,-0.021646194,-0.015479305,-0.028534224,0.033466958,-0.048837423,0.024667088,0.044243284,0.008990343,0.008748588,-0.098788954,-0.033773523,0.040143244,-0.010974105,-0.02127873,0.07972637,0.11810153,0.03427997,0.03898026} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:51.999227+00 2026-01-30 02:01:10.246613+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1669 google ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE 1 t 1672 Go Karts Mar Menor unknown Proper circuit, alles prima verzorgd, de karts ook tip top in orde\nKeuze uit :\nKids-Kart / Duokart / 200cc / 300cc / 400cc\nKinderen vanaf 12jaar kunnen in 200cc al karten 👌 proper circuit, alles prima verzorgd, de karts ook tip top in orde keuze uit : kids-kart / duokart / 200cc / 300cc / 400cc kinderen vanaf 12jaar kunnen in 200cc al karten 👌 4 2025-01-30 01:52:39.833374+00 nl v5.1 O1.04 {O2.02} V+ I3 CR-N {} {"O1.04": "Proper circuit, alles prima verzorgd, de karts ook tip top in orde", "O3.02": "Keuze uit :\\nKids-Kart / Duokart / 200cc / 300cc / 400cc\\nKinderen vanaf 12jaar kunnen in 200cc al kar"} {-0.084447786,0.06432371,-0.015219984,-0.051721364,-0.103392154,0.005452506,-0.030618228,0.14104702,0.011707134,0.023089068,0.10373261,-0.0611094,-0.06647098,-0.01157233,-0.023570351,0.019398723,-0.013489469,0.04346955,0.034156255,-0.07533619,0.013241668,-0.034081038,0.07313363,0.0028999324,-0.025061723,0.05863284,0.042458154,0.07038527,-0.0012611222,-0.13011503,-0.033993356,0.017605161,-0.04435968,-0.05265044,-0.019940125,-0.010532545,-0.008496915,-0.077940516,0.002133418,-0.0243697,-0.012873882,-0.062032416,-0.074337654,-0.03510256,0.07206507,0.013274994,-0.04971354,-0.007957875,0.049127165,-0.043755215,0.011763205,-0.08108911,0.09141861,-0.03029455,0.06710155,-0.048511114,-0.06980232,0.050398502,0.07984392,0.017696114,0.05650621,0.028978597,-0.06158212,0.036608443,-0.04627258,-0.06929244,-0.025911499,0.015955718,-0.09248142,0.049014475,0.054746155,-0.11122866,-0.005264459,0.009849429,0.051595535,-0.0073311375,-0.03100814,-0.00062542415,-0.028309936,-0.037040334,0.0062716207,-0.010849998,-0.0009316943,-0.051635627,0.008301512,-0.031037094,0.05689044,-0.019159814,-0.038597528,-0.03947328,-0.017745849,0.014809075,-0.044119384,-0.03693959,0.011630297,-0.024241837,-0.015127979,-0.0075827204,-0.021398101,0.023741066,0.033972763,0.012833659,0.008073656,-0.0033330154,-0.085173756,0.059792038,0.020335818,0.017201418,0.03395889,-0.02504918,-0.008031572,0.02329734,-0.06018324,-0.056605205,-0.024887487,-0.05882813,-0.018446786,-0.03309153,0.02378115,0.0027235278,-0.04555592,-0.029155843,-0.056209426,0.047324803,-4.4677677e-06,0.0010293778,0.07064824,1.06360815e-32,-0.07615157,0.013557779,-0.022955334,-0.025354212,-0.02486449,-0.05766631,-0.012790207,-0.06167882,-0.01882181,0.01689667,-0.0026439507,-0.07918132,-0.06398849,-0.01871801,0.05870905,-0.043495752,0.03223019,-0.08921746,-0.047739778,-0.016436623,0.037606295,-0.056466382,0.01497338,0.06663096,0.08174368,0.07755953,0.13815954,-0.038534008,-0.05020397,0.01828808,0.06512208,0.0041142562,-0.060820166,0.0047593387,-0.14834575,0.01944218,0.0710114,-0.027265608,-0.009900882,-0.040936332,0.036211494,-0.016701287,0.051991917,0.03541465,-0.051469266,0.07456646,0.017667675,0.053093433,0.060559675,0.10930836,-0.11611028,-0.016119862,-0.03722865,0.0593482,0.017786512,0.08056538,0.026871154,0.04885607,-0.013746022,0.0033265096,0.0023618238,-0.039856434,-0.03022361,-0.06569621,-0.087038375,0.020596493,-0.012043398,-0.066995114,0.036327083,-0.08999207,-0.09195742,0.009958766,0.044476133,-0.016820367,-0.006944454,0.061366178,-0.048280995,0.033139978,-0.026279703,0.012915582,-0.029748313,0.0043932977,0.038819566,-0.06431629,0.102268115,-0.04112821,-0.0036278176,-0.004655231,0.014489326,0.15762456,-0.0106179565,0.05008045,0.0063904,0.025089918,0.029707918,-9.229604e-33,0.06666502,0.04636131,0.045818422,0.09644688,0.011646891,0.015302611,-0.007070294,-0.007751901,0.020846417,0.013403052,-0.0049044024,0.008333074,0.04984899,-0.057078823,0.02621025,0.014494045,-0.024069713,0.042703643,0.033845782,-0.067967065,0.0247161,0.08244296,-0.00806618,0.0086114155,0.03491534,0.014864438,-0.054552708,0.03538155,-0.05433632,0.04112601,0.025283,-0.073311426,0.03258913,0.14262557,-0.049000353,-0.049859896,0.108940706,0.102568954,-0.063694224,0.092367545,0.009234482,0.026482372,-0.09046344,0.040800408,-0.113577195,-0.07241733,0.05373648,-0.046510827,0.055283587,-0.029583123,0.052044738,-0.0012438833,0.034766093,-0.005120604,0.023029506,0.044944134,0.064032726,-0.027337942,-0.07845156,-0.04730049,0.11588413,0.0011524988,0.054260466,0.03738358,0.04412706,-0.07600488,-0.056530323,0.036807805,0.055300385,-0.031682517,-0.05500523,0.037241068,0.066705815,-0.0334944,0.004106901,-0.020398563,-0.002714807,0.0568087,0.113696896,-0.007239781,-0.02738338,-0.021326879,-0.044768114,0.022478843,0.05088403,-0.011943279,0.04359382,-0.03175263,0.009489786,-0.0014992547,0.026298812,0.084066555,0.030003818,0.072611935,0.016244324,-4.198916e-08,0.038098644,-0.009681289,-0.07663223,0.059758916,0.057984903,-0.059622057,0.030856024,0.004611215,-0.100952126,-0.0062256316,-0.044137638,0.06405462,-0.005120071,-0.0076624774,0.042600736,-0.010203689,-0.020244433,0.13466178,-0.03165454,0.025582965,0.04016537,0.012936605,0.031126957,0.049341097,-0.021457396,-0.0066434327,0.046199534,0.079550356,0.058092877,-0.008024249,-0.0455415,-0.020607015,-0.04646907,-0.032984752,0.043440346,0.044159465,-0.10159056,0.13869293,0.019184032,0.052833047,-0.06438983,-0.1242559,-0.014565396,0.0053370534,-0.044551272,0.011610699,-0.045777198,-0.010913982,0.014291067,-0.017800078,-0.09670998,-0.010308992,0.023722451,0.013529581,0.0011096594,0.0457496,-0.020569656,0.015207083,-0.08863356,-0.03130636,0.008532181,-0.015715417,-0.025013907,0.015815396} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:59.099588+00 2026-01-30 02:01:10.25082+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1522 google ChZDSUhNMG9nS0VJQ0FnSUNEdFlyVURnEAE 1 t 1525 Go Karts Mar Menor unknown Very good value and well organized. very good value and well organized. 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.01 {J3.01} V+ I2 CR-N {} {"V4.01": "Very good value and well organized."} {-0.026703313,0.0715388,-0.0339707,0.00974175,-0.11642764,0.020822098,0.019078655,0.02852931,0.018536739,0.0061427765,-0.017011022,0.04440797,0.00080214784,-0.022537706,-0.022629146,-0.018302212,0.06002037,-0.07278947,-0.04181159,-0.045979373,-0.08565905,-0.013433739,0.101772174,-0.0024343561,0.0137863485,0.086091295,-0.044347994,0.010552903,0.06789716,-0.061069656,-0.06326507,0.060224745,0.059844263,0.037031434,0.027367132,0.0510343,0.08944962,-0.0030337945,0.02144235,-0.0025401406,-0.026643468,-0.015943712,0.049334764,-0.02867382,-0.0804447,0.005953566,0.064219505,0.02359791,0.07063679,0.018003855,0.011558048,0.00056442845,-0.005312698,-0.025580304,-0.01824097,0.0876058,-0.04283664,-0.072183914,-0.011277519,-0.07180549,0.046725314,0.023334973,-0.029104726,0.05502202,0.08049163,-0.04415088,-0.042176537,0.022811694,-0.0172132,-0.04482724,0.07371289,0.030568384,-0.009383907,0.03224399,-0.0067867488,-0.017772846,0.02113126,-0.09119745,-0.006756159,-0.030394444,-0.0073048086,-0.023093363,-0.03501689,0.019887174,0.008341705,-0.0733089,0.04637752,0.0014933222,-0.007061412,0.022091232,0.06575125,0.06773022,-0.0017892969,-0.059768155,0.00371541,0.115679026,0.038268726,-0.05007018,0.032160893,0.06304566,0.040633716,0.07397649,0.07254436,-0.030908713,-0.0386276,-0.0832417,0.0019078128,0.045471452,-0.020132279,-0.0067022284,-0.05686079,0.040389214,-0.044644702,-0.007351189,0.013751214,0.034851987,-0.009822749,0.0039237477,0.0028201211,-0.061113603,0.08450354,-0.017092241,0.0361464,0.019423483,-0.07334403,-0.03091817,-0.008552965,-5.080142e-33,-0.030314855,0.08277264,0.0058096265,0.04393785,-0.0051758927,0.03567861,-0.03261264,0.031311084,-0.0523006,0.058251955,-0.029028976,0.108871505,-0.013767586,0.081673756,0.028123181,-0.038876988,-0.06457788,0.036042698,-0.05554861,-0.033081084,-0.051839113,0.016378198,0.058096156,-0.025410557,0.04300737,0.032303885,-0.029380308,0.022904728,0.0041971435,0.029000642,-0.019523965,0.00035005016,-0.02215588,-0.046518624,-0.00045367333,0.06153591,-0.10260122,-0.090547085,0.06784933,0.0009342183,-0.0007106254,0.036565892,-0.012676558,0.028485192,-0.025140692,0.050814465,0.061611526,0.02705495,-0.00052546896,-0.081205234,-0.021532454,-0.025873858,-0.109519586,-0.034877248,-0.05503253,-0.044098623,0.023422174,-0.008639011,-0.060882416,0.001397994,0.05610009,0.1241535,-0.045181464,-0.0024971575,-0.10934035,0.043114822,-0.03294712,0.034111682,0.094309576,-0.01026355,0.016875794,0.0073866933,0.03037994,-0.051320527,-0.012073182,0.08421749,-0.014853983,-0.052084263,0.0058293305,0.061565932,0.016364465,-0.061063178,0.018712094,0.009830709,0.037081297,0.015526693,0.08656502,-0.04338235,-0.055571493,0.018319484,-0.0023210181,0.026504336,0.03784624,-0.0660364,-0.019149788,2.1208528e-33,0.0486643,0.020474296,0.0111404825,0.091317125,0.016526582,-0.0032105334,-0.110353224,0.01704272,0.019945197,0.048846144,-0.047194645,0.024218129,-0.0021912102,-0.0059275203,0.057227366,-0.03762855,0.07508048,-0.06267937,0.031743426,-0.12439783,-0.017808497,0.110375166,-0.047803447,0.065725505,-0.10063838,0.03874908,-0.1533223,-0.11947466,-0.05281016,-0.0069488995,-0.03715654,-0.11865754,0.033654355,0.045410097,-0.06588601,0.017280232,0.06688668,-0.05964334,-0.0186144,0.064879656,0.040410593,0.033055555,-0.04471647,0.089065604,0.0059058755,-0.07181862,-0.011546746,0.09160831,0.032743327,0.025034204,0.0014679092,-0.027423538,-0.042590898,-0.09135966,-0.061185688,0.002199346,-0.052121613,-0.01708211,0.016498927,-0.010637479,-0.09673842,0.1081386,-0.011017531,0.12976399,0.008243515,-0.047388915,0.0038463413,-0.061945412,-0.13792601,-0.044351764,0.034722235,-0.06402575,0.035267472,0.028028637,-0.02781992,-0.011731861,0.054078534,-0.0027058613,0.07519728,0.06071501,-0.062383223,-0.024782438,-0.023454783,-0.004666626,0.0047368244,-0.014387117,0.010766739,-0.037873372,0.046217076,0.055628635,-0.005729472,0.0127938865,-0.030534064,-0.019275278,-0.010292555,-1.5819763e-08,-0.0415277,0.022931261,0.009990981,0.051308524,-0.03468951,-0.11453391,0.06495325,0.019505896,-0.024792247,0.09960481,0.091435105,-0.02987515,-0.13460921,0.027955545,0.0008784541,-0.039313514,-0.011249226,0.10501494,-0.053730566,0.052628256,0.09181537,0.03529388,0.047728237,0.021304812,-0.035159983,0.012540027,0.014728002,-0.03138965,-0.013147336,0.08039542,0.041005746,0.098067224,0.033517215,0.03379437,0.039892264,0.035746813,-0.06909028,-0.0135302935,0.013467709,-0.07012295,-0.033476803,-0.044382848,-0.10379718,0.028404685,0.0400005,-0.016380299,-0.031279445,0.057559535,-0.036119945,-0.04989185,-0.015439281,0.009044676,-0.00498192,0.009287653,-0.0548253,-0.047850072,0.016662154,0.0013521326,0.011157397,-0.042848222,0.020269476,-0.1095313,-0.11717705,0.02977681} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.091299+00 2026-01-30 02:01:09.651471+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1525 google ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE 1 t 1528 Go Karts Mar Menor unknown Ideal for kids starting out, you will need a car to get there though ideal for kids starting out, you will need a car to get there though 5 2019-02-01 01:52:39.833374+00 en v5.1 O4.04 {} V+ I2 CR-N {} {"A4.01": "you will need a car to get there though", "O4.04": "Ideal for kids starting out"} {0.039663784,0.0068302797,-0.007428807,0.03528595,-0.062256306,0.044202648,0.0042367303,0.018836565,-0.0315285,0.05538056,0.056179352,-0.018606232,-0.029511644,0.050647583,0.06362487,0.0016472788,0.14383137,-0.12009149,0.025546,-0.09284591,-0.016307013,0.0436047,0.008616526,-0.0027522643,-0.04893448,0.12325488,-0.022905845,0.055306192,-0.012546894,0.06293155,0.030478023,-0.03711832,0.014401773,-0.015570471,-0.010449853,0.03247089,0.1435878,-0.025411343,-0.039387107,0.011140385,0.013428181,0.0019438289,-0.018723032,0.015580544,0.00022513355,0.001584416,0.024294496,-0.04890985,0.1285066,-0.021951431,0.11134136,-0.022460887,0.04531301,-0.01920704,-0.06624402,0.029037435,-0.080640756,-0.07064498,0.045981284,-0.030282624,-0.015905412,0.029743876,-0.035826113,-0.037031278,-0.030129548,-0.0731701,-0.009129504,0.02746549,0.097541444,-0.043276124,-0.045276422,0.02473846,0.023660151,0.03269168,-0.048549145,-0.0036866728,0.05060015,0.015271597,0.098714314,-0.019403305,-0.049821205,-0.0040511675,-0.014484581,-0.0090260105,-0.060720347,0.015057125,0.05666971,0.018976491,-0.06614047,0.05614972,-0.02065343,-0.00966278,-0.058032,0.03335521,0.031286728,0.027173283,-0.05298051,-0.07887918,-0.048720222,-0.018066538,0.05200942,0.04784978,0.16154,0.09847125,-0.054140933,-0.04018843,-0.008030482,0.005086004,-0.01466867,-0.010368378,-0.028987747,-0.04971307,0.074617475,0.03846576,-0.04158285,0.004088689,0.008778872,-0.060245283,0.00526924,0.045177616,0.009008454,-0.024176853,0.05618758,0.023304366,-0.056176994,-0.10475258,-0.00035661831,-2.7829092e-33,0.00046472476,0.098160215,0.003374746,0.09702429,-0.0050747534,0.017089395,0.024634296,-0.018487077,0.0019689503,0.0050900704,-0.035190944,-0.09034673,-0.0195669,-0.015030294,0.085107826,0.039006747,-0.0652608,-0.013033588,-0.08850901,0.011104234,-0.080249764,-0.0417411,-0.0006218389,0.0074492265,0.061712205,-0.0015051863,-0.019517628,-0.0142026255,0.05296822,-0.005048768,-0.06568147,0.020932348,-0.043885082,-0.05142591,-0.033217523,-0.020126168,0.023677973,-0.0072922837,-0.021039288,-0.041234028,-0.0068153366,-0.04623974,-0.010761186,0.010420774,0.07855923,0.027327053,0.0566176,0.006686198,0.021223843,0.028080037,-0.053409647,-0.048390716,-0.06735607,-0.07785575,-0.118955195,0.067415066,0.06714255,0.07981073,-0.050144486,-0.09607592,-0.03731971,-0.01828604,-0.015739033,0.00078015774,-0.06473024,-0.002358184,0.07233101,0.022445552,0.047151726,-0.018247219,0.037361506,0.0021718063,0.004871887,0.017922333,0.06430165,0.09103138,-0.028821938,-0.05705761,-0.026721142,0.039735883,0.073172405,-0.011642678,-0.001676839,0.028170448,0.14712709,-0.050610878,-0.022693109,-0.057952162,-0.0728788,-0.03712014,-0.029183881,0.0024872744,-0.009061541,0.049431138,0.008808786,2.8658056e-34,0.092802,-0.04072725,0.07737231,-0.011315766,0.064143114,-0.0009946874,0.05773014,-0.035093803,0.011355063,0.057997867,-0.112590075,-6.8751244e-05,0.10014436,0.00838761,0.02011054,-0.033545334,0.0607334,0.0055665104,0.045945317,0.0075097196,0.00034592184,0.016769163,-0.037367858,-0.054839607,0.00756481,-0.0030616305,-0.14949259,0.046783406,-0.10844974,0.056214463,0.016566006,-0.022800501,0.06669682,-0.0027536366,-0.052480627,-0.032493424,-0.061110675,0.0259878,-0.09030699,0.029959554,0.051704764,-0.09686053,-0.027308505,0.06382591,0.015968563,-0.043123618,0.09823235,0.00680054,0.017180637,-0.01721837,0.023271251,0.027147124,-0.035893593,-0.026748585,-0.0048145778,-0.07441291,0.029331267,-0.031407002,0.027508192,0.023765985,-0.013401954,0.02292166,-0.053218678,0.05612382,-0.018919243,-0.10147885,-0.10749098,0.057691686,-0.076731026,0.021299494,-0.02418455,0.05088703,0.031290136,0.016715575,-0.06976033,-0.027232882,0.13436122,0.04208898,0.06034997,-0.02097592,-0.025260834,-0.011645922,-0.025036668,-0.06618653,0.059196252,-0.09419333,-0.008815764,-0.09017063,-0.022980053,0.0096213715,0.025326628,0.10461679,-0.020608306,0.026724858,-0.07938396,-1.8908656e-08,0.045769688,0.03979161,-0.01682334,0.051321287,-0.032577537,-0.06835345,0.03040156,-0.006925459,0.044333998,0.040814746,-0.005517695,-0.014646777,0.058102902,-0.011298573,-0.07481807,0.049895946,0.05829941,-0.00086640794,-0.024725134,0.037871856,-0.01987924,0.009865705,-0.108306274,0.08999362,0.00298322,-0.06868854,0.044574257,0.008883171,-0.017186001,0.021494012,0.02843289,-0.002594519,0.026443435,0.0011619622,-0.056504525,-0.032238588,-0.058261197,0.039132994,-0.03660177,-0.094433345,0.0080807,-0.014215022,-0.05139463,-0.041117195,-0.04682171,0.0007356237,-0.084265895,-0.01666251,0.014673738,0.045598578,-0.009235478,-0.04820277,-0.0465759,-0.06343043,0.117752135,0.07844354,-0.057362992,0.033259194,0.019478954,0.061373856,-0.033344027,0.039735053,-0.01880194,0.07054308} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.123341+00 2026-01-30 02:01:09.659028+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1679 google Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB 1 t 1682 Go Karts Mar Menor unknown Muy bonita pista de carreras, pero nada más. Los karts están en mal estado, y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático! muy bonita pista de carreras, pero nada más. los karts están en mal estado, y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡un hombre muy antipático! 1 2025-09-02 00:52:39.833374+00 es v5.1 P1.02 {P1.01} V- I3 CR-N {} {"E1.04": "Muy bonita pista de carreras, pero nada más.", "O1.03": "Los karts están en mal estado", "P1.02": "y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático!"} {0.026221063,0.00031281495,0.056268916,-0.07245984,-0.06401932,-0.035041437,0.053857777,-0.023012357,-0.021174118,0.024862265,0.08615085,8.847086e-05,-0.018997548,-0.043867197,-0.007412444,-0.030120526,-0.015566939,0.040239826,0.04009475,0.032720633,0.043900076,-0.026165506,-0.020343786,0.122713484,-0.1166752,-0.01571551,0.008749068,-0.004713148,-0.020876054,-0.033962157,-0.01899656,0.080034204,0.06998581,-0.033937793,-0.010239998,-0.062257465,0.0036286004,-0.023608575,-0.0056082103,0.016330862,-0.068397306,-0.035274375,-0.018137611,-0.01642389,0.03439156,-0.1267448,-0.024271013,0.012777526,0.040158972,0.035927925,-0.09719527,0.023284933,-0.041799262,-0.014083306,0.020643238,-0.06997375,-0.10086632,0.017711641,0.08548522,0.036127567,-0.055053428,0.09680008,-0.010296776,0.028180458,-0.0028506722,-0.050940227,0.047294617,-0.0030073042,-0.059244018,0.101799965,0.08687106,-0.09344591,0.013284364,0.020967923,-0.029853228,0.0012652188,-0.018677508,-0.022996468,-0.066229,-0.003005838,-3.7807236e-05,-0.03285129,0.006287766,-0.04386126,0.00017553101,-0.0049096323,-0.07340247,0.03484591,0.03320805,-0.022403672,0.024483241,0.069749855,-0.0071390145,-0.010954698,0.034845978,-0.015753854,0.02872364,-0.026440416,-0.012002478,0.028748421,0.1000892,0.018560594,0.043959163,-0.0025048675,-0.03209259,0.0340913,0.006445084,-0.08873841,0.0053400616,0.002897462,-0.0043155625,0.034891117,-0.111753784,-0.022799298,-0.057324708,0.07207199,0.043006968,-0.020399468,-0.07597475,-0.017107993,0.004506257,0.005355294,-0.045703072,-0.038754027,0.018796302,-0.09617811,0.02604644,6.7338686e-33,-0.06361586,-0.075282656,0.023094818,0.0027493099,0.0055702226,-0.071884915,-0.02720574,-0.07627196,-0.077318095,0.0136063155,-0.042716604,0.044184502,-0.07654653,0.066576324,0.048155993,0.04654722,-0.06785119,-0.13370004,0.054644387,0.04238304,-0.031201908,-0.077870704,-0.038488124,0.07818537,-0.021738049,0.05226806,-0.0028288006,-0.025226563,-0.023754245,0.072678186,-0.05646861,0.027165242,0.029390339,-0.005080796,-0.089945786,-0.04698524,-0.014935215,0.07383562,-0.05575549,0.010353444,0.034914922,-0.01179462,-0.025355011,-0.014210562,0.002402109,-0.0023432854,0.060461435,0.004813204,0.08960083,0.021157136,-0.03254782,-0.083214,-0.05049502,-0.0024456026,-0.02309733,0.019107185,-0.035399597,0.015956694,-0.05785683,-0.054856773,0.074372575,-0.04748152,0.0009595151,-0.009559238,-0.09950218,-0.067288935,-0.013127199,0.04037346,0.1432758,0.07419417,-0.07486406,-0.00029797625,-0.027987065,0.019995764,0.04158463,0.01773767,-0.023322985,0.09375517,0.0029884197,0.08921072,0.012848523,0.014172318,0.01560537,-0.0039002341,0.07404405,0.1373708,0.032336354,0.01911152,0.0036456778,0.10101154,-0.03473254,0.0724022,0.03490899,0.02057759,-0.014830306,-9.5907644e-33,0.03868073,0.0051420615,0.08213237,0.102776594,-0.041724678,0.041703537,0.015404686,-0.023736842,0.06329868,-0.0482719,-0.065605976,-0.06341175,0.074729286,-0.04081794,0.04406954,0.0860706,0.023889638,-0.0067259287,-0.085350186,-0.062697284,-0.04523017,0.028156003,0.056789443,-0.019248806,-0.05171638,-0.043906316,0.009158708,0.010213243,-0.1043331,-0.0010840491,0.0068389415,-0.04815143,0.014716274,0.04682053,-0.039731592,0.015414464,0.024907786,0.046968337,-0.07360076,0.070000224,-0.026653558,0.08390084,-0.0010704749,0.0070325374,-0.022338673,0.0077854823,0.052526895,-0.16004421,-0.01935549,-0.062498856,0.077986255,0.038324703,-0.011683954,-0.023241058,0.060387965,-0.0033457482,-0.024039501,-0.049932297,-0.059631437,0.008855265,0.007132482,0.015617477,-0.0124422405,-0.068341784,0.12710832,0.006670976,-0.0059439754,0.017442048,0.02586969,-0.00219113,0.077175386,0.0092998305,-0.0854362,0.032693386,-0.061668575,-0.037624955,-0.0948426,0.009422923,0.01689388,-0.016690794,0.04592807,-0.050886452,-0.017202275,0.03293957,-0.015514106,0.012728819,-0.040842827,0.06981629,0.0604859,0.020052057,0.048542008,0.035859372,-0.01908703,-0.10242246,-0.013550335,-4.3779412e-08,-0.01785838,-0.068426736,-0.12657964,0.051828828,-0.00909137,0.0018674328,-0.06843324,0.04000467,0.00017213114,0.04533774,-0.0122302985,0.018734874,-0.04549473,0.044157527,-0.020458614,0.08223503,0.051570836,0.121762745,-0.014033182,-0.051650412,0.035584047,0.0132712945,-0.006098145,0.057453483,-0.07424655,0.02686588,-0.054024775,0.02070724,0.0073175477,0.042329676,-0.0725081,-0.045961704,-0.087431684,-0.05747566,-0.08066456,-0.0729214,0.042378716,-0.013500655,-0.006391415,0.009585581,0.056413166,-0.059659466,-0.08348704,-0.043592583,-0.07772303,-0.05503936,-0.050173134,0.011803646,-0.036876425,0.076450914,-0.001632353,0.011396058,0.07631501,0.012669055,0.038197085,-0.030219957,0.0640076,-0.0054073343,-0.0047167414,-0.075412214,0.057259206,0.076298095,0.056181036,-0.03766708} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:15.965093+00 2026-01-30 02:01:10.296576+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1671 google ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE 1 t 1674 Go Karts Mar Menor unknown Espectacular!! Un gran circuito de Karts con cantidad y variedad de coches. Zona de cantina con aire acondicionado. espectacular!! un gran circuito de karts con cantidad y variedad de coches. zona de cantina con aire acondicionado. 5 2023-01-31 01:52:39.833374+00 es v5.1 O2.03 {O3.02} V+ I3 CR-N {} {"E2.03": "Zona de cantina con aire acondicionado.", "O2.03": "Espectacular!! Un gran circuito de Karts con cantidad y variedad de coches."} {-0.016076373,-0.002913887,-0.0050766827,-0.04475712,-0.05628185,-0.04063771,0.092908084,0.09383766,-0.025980832,0.035125375,0.06866622,-0.052300386,-0.056568325,0.04790687,0.008828381,-0.06214969,0.017067675,-0.01699524,0.03318673,-0.014891543,0.17740208,-0.0015170141,0.008555308,0.021991365,-0.050851855,0.009828271,-0.005195274,0.027951943,0.012699628,-0.18880482,-0.042560074,0.07413227,-0.024560425,-0.0054325936,-0.027934333,-0.06385219,-0.020024028,-0.10881428,-0.07104779,0.06285657,-0.12553625,-0.002030607,-0.0303819,-0.012083056,0.0135168955,0.013541022,-0.009721974,0.032113347,-0.02470596,-0.029419608,-0.020581923,-0.10231804,-0.0017274179,-0.045050982,0.00069409196,-0.013446743,-0.12143554,-0.015000433,0.07672996,-0.0010680701,0.13085034,0.022918262,-0.03827441,0.06071562,-0.05647376,-0.064322405,0.019727062,0.00088908384,0.017766666,-0.0031274671,0.024633626,-0.06367334,0.07824688,-0.013523651,-0.006194129,0.012270743,0.020700322,-0.07042745,0.02978039,0.044788074,0.101112895,-0.016290156,-0.05816585,-0.040928993,0.052743763,-0.01332569,0.004700011,-0.013025856,-0.06602067,-0.05839691,-0.07551078,-0.0015276729,-0.083599165,-0.013347283,-0.06299413,-0.020535445,0.021751767,-0.07934743,0.015752638,-0.017086996,0.007474486,-0.011227009,0.08121305,0.009783064,-0.11452541,-0.027071625,0.05390927,-0.031482574,0.046364315,0.05610762,-0.13295443,-0.0034339572,-0.031034395,-0.0009303029,-0.032915235,0.008872035,0.010619583,-0.025230408,0.014827039,-0.04420737,-0.011483599,-0.045787595,-0.015587035,0.011359534,0.034742426,0.0341188,0.09166127,4.242893e-33,-0.0684548,0.032986693,-0.023453636,-0.015457468,0.027701102,-0.036730282,-0.05364553,-0.039229203,-0.01310325,0.031485952,-0.09406268,0.06852336,-0.020267371,0.11324425,0.10146051,-0.058116924,0.000288067,-0.05289948,0.009780059,0.0032461085,-0.087578036,0.008419016,-0.006407439,0.08702106,-0.012597912,0.029587012,-0.040239193,-0.01581266,-0.014936839,0.026410414,0.10107912,0.029380228,-0.04631167,0.022951622,-0.066989556,0.017366782,0.03123837,-0.0015079905,0.035979804,-0.033620648,-0.046914287,0.043566316,-0.012133253,-0.031182585,-0.006198946,0.0061550206,-0.07273831,0.0792689,0.058365673,-0.0059041306,-0.04599414,-0.034971714,-0.0217622,-0.03771499,0.09250877,0.1349272,-0.02355923,0.019013226,-0.0037554204,-0.0053857462,-0.048708875,0.07558123,0.036127333,-0.014411677,-0.021324415,-0.013948805,-0.0026509217,-0.039888177,-0.0028207148,-0.014897284,-0.076867655,-0.026502823,0.006202996,-0.0036861368,-0.004466252,0.026390769,-0.021322167,0.05494346,-0.060573358,0.047618896,-0.07339273,-0.057354573,0.021004107,-0.019774962,0.015851302,0.012456603,-0.0011618424,0.035727862,0.056171197,0.09373536,-0.040564917,0.045896117,0.06774672,-0.0584037,0.067027874,-5.8501485e-33,0.09073111,0.009214445,0.031098586,0.034366198,0.030833272,0.058806602,0.03849483,-0.027861968,0.00030779248,-0.06769698,-0.03225085,0.0057142354,0.062195,-0.08625252,0.025609042,0.048908185,-0.05565472,0.0049628816,-0.015528213,0.0026730378,-0.06734953,0.022556478,-0.011676981,-0.047909603,-0.07472284,0.06524476,-0.012258286,-0.015511864,-0.098463215,0.01451358,-0.011902427,-0.04732564,0.050791215,0.042392507,-0.058404263,-0.0014764622,0.062681876,0.001977393,-0.092213675,-0.03570338,0.041639842,0.10066821,0.12262782,-0.015517535,0.038595825,0.009465435,0.03330598,-0.120511524,-0.027129086,-0.06127931,0.038568106,0.016736329,-0.067869276,-0.05626557,0.044795696,0.03667589,0.048844397,-0.09042409,-0.052589253,-0.04543816,0.067003846,-0.031031469,-0.021511776,-0.07561502,0.08030575,0.017325174,-0.030647837,0.027883546,0.15091313,-0.0023473897,0.08693161,0.070440024,0.017924733,0.04388688,-0.054185923,-0.026907558,-0.047139097,0.04073667,-0.01607089,-0.009112075,-0.008747769,0.025319468,-0.046096347,0.008009759,0.054954972,-0.021559611,-0.042189106,-0.057897262,0.08718918,0.040103983,-0.04113793,0.01339435,-0.028276475,0.02322727,0.083112426,-3.4802028e-08,0.024637172,0.029126512,0.016582983,-0.017218634,-0.051005773,-0.019449499,0.051749818,-0.026945239,-0.025327267,-0.0717788,-0.0128917545,0.11508346,0.06374038,0.13321301,0.047143754,-0.0028192673,0.010701932,0.115233675,-0.036173254,-0.009709322,-0.02363587,0.0013306604,-0.050067503,0.063042395,0.0010383263,0.01777726,0.019738935,0.015748512,0.064695545,-0.00730164,-0.054400627,0.037723128,0.026101572,0.008765406,-0.06622243,-0.025442924,-0.019076139,0.053500034,-0.09138309,0.033859476,-0.02667458,-0.04287343,-0.047943506,-0.005317186,-0.02714437,-0.033385452,0.053457607,-0.003555854,-0.05191143,0.098181695,-0.10080828,0.0018123908,0.013228289,0.0139896,-0.032047577,0.010852636,0.020589747,-0.020973574,-0.04084028,-0.053435452,0.010107611,0.033393584,0.025851807,-0.005496772} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:14.209277+00 2026-01-30 02:01:10.256723+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1674 google ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE 1 t 1677 Go Karts Mar Menor unknown Pasamos un día estupendo!! Buenas instalaciones y con un bar para tomar algo.\nRecomendado,nos gustó. pasamos un día estupendo!! buenas instalaciones y con un bar para tomar algo. recomendado,nos gustó. 5 2023-01-31 01:52:39.833374+00 es v5.1 E1.03 {E1.04} V+ I3 CR-N {} {"E1.03": "Pasamos un día estupendo!! Buenas instalaciones y con un bar para tomar algo.", "V4.03": "Recomendado,nos gustó."} {-0.03763294,0.019178279,-0.008627841,-0.088450275,-0.14042565,-0.025005892,-0.012806305,0.00040250606,-0.04104954,0.0012927939,0.034027454,0.022324549,-0.020893237,-0.020352583,0.048957203,0.052922115,0.010103344,0.011636118,0.045617,0.0073737837,-0.009056511,-0.05902146,-0.08569677,0.10151906,-0.07663492,-0.0040387805,0.004049576,0.014364514,-0.014705178,-0.06676881,0.024190461,0.0640217,0.086300805,-0.08167895,-0.06346032,-0.06377722,0.094208494,-0.10045821,-0.028964497,0.054214705,-0.0954908,0.058886144,-0.009751427,-0.0038913332,0.048985664,-0.030072937,0.00345638,0.05764726,0.09647375,-0.031085815,0.019252293,0.043094803,-0.0036808443,0.008900952,-0.04767491,-0.0065178717,-0.051892675,-0.020638334,0.05949499,0.038221005,0.041704394,0.083076574,-0.053039685,0.06162557,0.010778535,-0.020049337,0.020158643,0.06608631,-0.015163118,0.018499726,0.030453188,-0.07351169,0.07516805,0.013998651,-0.027203992,-0.005746146,0.037563287,-0.011537451,-0.021751517,-0.03846625,-0.059979234,-0.014586113,-0.051971592,-0.046296075,0.054744124,-0.0491014,-0.05615733,0.015390169,0.040636826,0.07463702,0.001663893,0.066204816,-0.0835874,-0.040309336,-0.005455851,0.023868863,0.005830855,-0.04762912,-0.049133763,0.016278528,0.10240395,0.051619995,0.09245766,-0.055166297,-0.0390615,0.03425653,0.049352318,0.016718052,0.051449824,0.04835273,-0.057644792,-0.018344164,-0.020662881,-0.076993294,-0.12744111,0.049403746,-0.00024853347,-0.054970406,0.018319404,-0.09801606,0.0020632502,0.057948854,-0.009471986,0.026522234,0.019381389,-0.039428934,0.04386479,5.360357e-33,-0.064544015,-0.041031912,-0.07350265,0.054974504,0.008818431,0.0012048858,-0.061680842,-0.058833428,-0.096781865,-0.0074335076,-0.08008719,-0.018805906,-0.042053413,0.036359884,0.12648632,0.037448477,0.019230979,-0.018704006,0.033512875,-0.008480451,-0.053745806,-0.040676545,-0.013463572,0.032318972,0.0241583,0.03824102,0.06624088,-0.039145708,-0.047689773,0.04573821,-0.05964675,0.017659146,0.009466968,-0.022915805,-0.039942667,0.010121833,0.018767942,0.02435573,0.010303551,-0.04002345,0.12213665,0.008075305,-0.008291945,0.02614653,-0.03753396,0.022204287,0.039819606,0.0073027597,0.08715189,0.015309731,-0.073223636,-0.08228753,-0.04297836,0.0022401954,-0.06556941,-0.023414731,-0.09613707,0.037165787,0.079860784,-0.08464995,-0.024929406,0.031138523,0.04391657,-0.025581654,-0.06224594,-0.05347845,0.03250036,0.046556905,0.088195294,-0.0033654503,-0.07176457,-0.03211759,0.008948522,0.029688755,0.026720041,0.04082891,-0.048898637,-0.0069196145,-0.011489903,0.10483333,-0.016737191,0.011742809,0.028467704,0.05722348,0.13779198,0.09062586,0.10634632,0.0017987735,-0.07798733,0.09667939,0.021495404,0.13327955,0.06412403,0.008879284,0.115212835,-8.378938e-33,0.06805128,-0.072427385,0.06378311,-0.04485064,-0.012452884,0.012539859,-0.11286371,0.0021472992,-0.012236728,-0.10480521,-0.090258256,-0.06306213,0.10526453,-0.031975422,-0.07962337,0.06096478,-0.014270291,-0.023714574,-0.033941902,-0.022024183,0.0089952955,-0.0038176363,0.03642221,-0.03331975,-0.06555178,-0.07404992,-0.016206568,0.053826664,-0.02222944,-0.009792994,-0.013514877,0.010561105,-0.03687694,0.0099807875,-0.03471176,0.0866234,0.063222095,0.018619379,-0.028195115,0.027003177,0.06510355,0.07928083,-0.04746339,-0.051191226,-0.03372413,0.050063077,0.04388116,-0.14545849,-0.07602277,-0.05424261,0.031585082,0.02115894,-0.03897834,0.021893628,0.062418364,-0.04020789,-0.008857949,-0.03410829,-0.07788654,-0.0026298845,-0.03651515,0.026660291,0.015512533,-0.073536456,0.10234105,-0.01675639,0.022529528,-0.017951505,0.020274013,0.014838966,0.075769246,0.017224561,-0.024300618,0.032269645,-0.036187604,-0.05795549,-0.014394464,-0.06354999,-0.023171173,-0.025526226,0.0130719105,-0.0005729194,0.067677066,0.006269431,-0.0103146555,0.0016512341,-0.012306929,0.021278728,-0.055429958,0.026819898,0.042107407,0.02275453,-0.030645419,-0.036855917,-0.039136183,-3.482665e-08,-0.013529234,-0.044625696,-0.019523172,0.008847005,0.004145594,-0.017773602,-0.08372333,0.027356708,-0.034847755,-0.052710157,0.011418378,-0.032649126,-0.06633757,0.066377565,-0.061893623,0.026573064,0.038607154,0.14293206,-0.0028103432,-0.035187587,0.051482603,0.014370087,0.009574442,0.017201304,-0.012169357,0.02168262,0.0100485915,0.016506733,0.07989865,-0.07539235,-0.01961749,0.012941746,-0.038053557,-0.08489951,0.0027787453,-0.0839115,-0.0115786875,-0.0050522014,0.0013013082,-0.07964693,0.08340519,-0.04637363,-0.07440013,-0.016196417,-0.010343016,-0.0696595,0.009137128,0.06336823,-0.015421135,0.04254445,0.022223424,0.012985379,0.10952636,-0.03146441,0.067618735,-0.008295521,0.005082567,-0.02339845,0.011537989,-0.01805354,0.063476354,0.006622378,-0.028568605,-0.029237831} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:40.317162+00 2026-01-30 02:01:10.280339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1675 google ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB 1 t 1678 Go Karts Mar Menor unknown Gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular, el circuito genial, las instalaciones de 10 y el personal súper atento. Recomendable 100%. Volveremos gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular, el circuito genial, las instalaciones de 10 y el personal súper atento. recomendable 100%. volveremos 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I3 CR-N {} {"O1.02": "Gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular", "P3.01": "el personal súper atento", "R3.05": "Recomendable 100%. Volveremos"} {-0.087764375,0.00018201339,-0.01898004,-0.0847981,-0.021179197,0.0019180104,0.105884574,0.16446881,-0.08583928,-0.00562566,0.1335658,-0.011151995,-0.051144585,0.04524027,0.067247696,0.016614342,0.024248835,0.03888682,0.015426547,-0.06546605,0.08617442,-0.10554958,-0.008588521,0.045761105,-0.049477246,0.047686413,-0.01157933,0.033267636,-0.020273626,-0.1325473,-0.012634708,0.046690438,0.07933547,-0.03144256,0.007126897,-0.026200507,0.001999959,-0.068472944,-0.09197547,0.00060577906,-0.0953574,-0.019064214,0.0033718497,-0.048051078,0.01640084,-0.08613653,-0.0053939656,-0.010165779,0.020132266,-0.024859278,0.011571462,-0.078402184,0.032350846,0.027397765,-0.03400987,-0.019963399,-0.06236904,-0.0053737196,0.04606915,-0.06368012,0.073650435,-0.0027415925,-0.0641609,0.060296558,-0.081537835,0.030179555,0.069701046,-0.01040803,0.030621864,0.011077499,-0.030839823,-0.057189852,0.032507002,0.039481916,0.037685063,0.07045325,0.07384827,-0.03296765,-0.040428117,-0.03959014,-0.0019213727,-0.009223506,-0.0027717235,-0.04792645,0.030143166,-0.025554549,0.043256965,-0.018695151,-0.05941226,-0.0647646,-0.0012011742,0.041740216,-0.025359316,-0.00570904,-0.08626913,-0.0019098002,-0.04463529,-0.08523781,-0.038852826,0.038348272,0.052226875,-0.019271927,0.10352392,0.06991287,-0.06420628,-0.08106885,0.00015164685,0.0071832496,-0.0032505197,0.033835296,-0.08735549,-0.009230724,-0.038290963,-0.033463813,-0.003925869,0.014232137,-0.07680034,0.059246577,0.066756256,-0.04079078,0.007268458,-0.009419688,0.023601243,-0.037578605,0.03523722,0.030388383,0.053899515,1.3417137e-32,-0.04966696,0.023533085,-0.06406398,0.08284769,0.0020222496,-0.02424822,-0.01923419,0.013905414,-0.025316393,-0.008705224,-0.11676186,0.06546206,-0.035735596,0.16158192,0.073883,-0.05282401,-0.06893146,0.012195022,0.07098561,0.011948126,-0.08504842,-0.0067933933,0.03090675,0.06310224,0.03367023,0.008094601,0.0016077412,0.046761442,-0.011333889,0.05700375,-0.015933566,0.027833005,0.027043678,-0.05734181,-0.0020002413,0.050985627,0.018060407,-0.011655866,0.08184752,-0.022356404,-0.014667185,0.03931324,-0.02571717,-0.0019986702,0.037836235,-0.019067273,0.058176924,0.04523082,0.121620916,-0.014021575,-0.13016295,-0.07948694,-0.060929496,0.004255841,-0.016829241,-0.008332516,-0.048435543,0.08020868,0.072855525,-0.0029457603,0.013066481,0.0556374,-0.028458385,-0.027572732,-0.048962954,-0.01723774,0.053758346,-0.060782183,0.016294947,-0.023690045,-0.06018048,-0.02347586,-0.008936677,-0.019491592,0.062782876,0.019164883,-0.007598981,0.015261804,-0.012438814,0.025353322,-0.060730547,-0.014873437,-0.02545587,0.007961224,0.08403551,0.05767657,-0.008948918,0.028044997,0.04129073,0.0760776,0.007730546,0.030414881,0.061541036,-0.0027494042,0.010812618,-1.3160149e-32,0.031263538,-0.038142167,0.093393974,0.07258227,0.024047134,0.080294736,-0.024971632,-0.024998145,0.05795801,-0.056323152,-0.0223544,0.035051025,0.11310906,-0.0463983,-0.013921629,-0.0042426214,-0.11068674,-0.10622359,0.033609286,-0.029385516,0.03370043,0.08749373,0.0060584187,-0.027844545,-0.004355989,-0.04488907,-0.05971889,0.093204126,0.0018184712,0.02913674,0.0058230828,-0.014377434,-0.057027362,0.028675988,-0.070965566,-0.015921712,0.06914896,0.09983868,-0.006831086,-0.021746917,-0.057025403,0.002614744,0.013476069,-0.07513406,-0.024778405,-0.020550791,0.04908973,-0.11801968,-0.0021541931,-0.010470479,-0.02074683,-0.00532644,-0.029017806,-0.029750796,-0.045372453,-0.033760548,-0.06726571,-0.03652799,-0.06367861,-0.058268998,0.04161753,0.04186769,0.05177967,-0.13531147,0.062375147,0.06883714,0.018801061,0.074747816,0.028830495,-0.0013391572,0.032077156,0.0055062436,-0.009182608,-0.06246603,-0.006566725,-0.04911359,-0.085434586,0.02418207,0.03882844,-0.0148046445,0.032996118,-0.027927743,-0.0441472,-0.07058164,0.008265315,-0.0039297366,-0.013642554,-0.0018825637,0.03183835,0.02012477,0.006569065,0.03928764,-0.05764789,0.024722584,0.04420074,-5.361192e-08,0.047034137,0.032674693,0.005840194,-0.018060492,0.04753049,-0.10667988,-0.014944521,0.019213295,0.027616033,0.0010503419,0.010676201,0.013643142,-0.01322505,0.074930206,-0.046043057,-0.019260045,-0.01619361,0.19480765,-0.050402917,-0.051748425,0.0362784,-0.0015478266,0.067552105,0.018502675,0.032643333,0.033375088,0.07455358,-0.06657298,0.019350212,-0.0017715886,-0.069856144,-0.02085077,-0.0031892203,-0.039414003,0.027996374,0.008090071,-0.037995234,0.051745716,0.0107937055,0.01574657,0.08082063,-0.11264603,-0.0380573,0.027079705,-0.07711417,-0.09598511,-0.035074815,-0.04235604,-0.06767852,0.049960237,-0.03609181,-0.048962153,-0.055258356,0.011493667,-0.030524448,-0.0035369191,-0.01857466,0.018197196,-0.011626165,0.05831324,-0.017323544,-0.0049828994,0.058131237,-0.07641602} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:49.362606+00 2026-01-30 02:01:10.283744+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1677 google ChdDSUhNMG9nS0VJQ0FnTUNBdGZDRTVRRRAB 1 t 1680 Go Karts Mar Menor unknown Muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!! muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!! 5 2025-03-06 01:52:39.833374+00 es v5.1 P1.01 {R4.03} V+ I3 CR-N {} {"P1.01": "Muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!!"} {-0.019130103,-0.033082698,0.030589966,0.021721186,-0.029896758,0.020562528,0.06584976,0.04274337,-0.034517076,-0.046044,0.07129727,0.028592903,-0.04973802,0.0015115824,-0.0147702275,-0.00022838594,-0.04177012,0.04163931,0.04462355,-0.01481477,0.11833307,-0.019135486,-0.030612377,0.08507475,-0.113559045,-0.0009313368,-0.007014826,0.0068152524,0.006029794,-0.10802431,0.054314107,0.14662796,0.008732543,-0.042719193,-0.01936798,0.009855694,0.03291121,-0.036968023,0.014614756,0.041321352,-0.11688897,0.019844713,-0.039985,-0.029680766,0.041459534,-0.097115286,-0.034827877,0.010904855,0.062011696,-0.013261496,-0.007890607,0.008110363,-0.02664302,0.038538966,-0.08961351,-0.027833413,-0.024340404,-0.07833932,0.09543003,0.025215853,0.004840936,0.07385371,-0.0573364,0.002050825,-0.02068315,-0.04003514,0.060249493,-0.00086923066,-0.022678426,0.017309844,0.039195746,-0.03883562,0.07176266,0.056965988,-0.056807794,0.042470094,0.012847846,0.009658039,-0.043363582,-0.014982666,0.013722486,-0.0009302682,0.012365899,-0.011852871,0.04331462,-0.029584754,-0.09030721,0.030891813,0.075846545,0.00869414,-0.044113554,0.035381123,0.02164952,0.021384785,0.011246364,0.021897752,-0.022355571,-0.1078752,0.0008854781,0.020402167,0.042468213,0.061427545,0.08636069,0.02081706,-0.00075972534,0.017669717,0.07648479,-0.037137367,0.060378786,0.010433812,-0.048678108,0.012212627,0.018750407,0.025021406,-0.10271758,0.055458922,-0.028435938,-0.029723197,-0.060889166,-0.10965568,0.029708833,0.055189352,-0.048395246,-0.01736196,0.008350538,0.0067446246,0.05329383,6.5283e-33,-0.09309423,-0.011628823,-0.05027745,0.08102854,0.028491369,-0.018821793,-0.0027806296,-0.07111665,-0.033536274,-0.04167084,-0.077867396,-0.057680853,-0.031168858,0.06996214,-0.013637483,-0.02998688,-0.029160995,0.034302592,0.0279438,0.029488243,-0.047105405,0.016833033,-0.022542682,0.0015411676,-0.025391724,0.059148483,-0.043658912,-0.04306724,0.019570136,0.07534725,-0.034897882,0.05448742,-0.025250018,-0.06893569,-0.031993635,-0.0680648,0.0125071425,-0.0013943467,-0.018036846,0.02135582,0.051286314,0.08946177,-0.024420459,0.026432687,-0.0037844395,-0.028332733,0.060437784,0.030314323,0.026870139,0.018957632,-0.08028893,-0.058059208,-0.09397036,-0.07099595,-0.006118276,0.006932126,-0.05973561,0.066788785,0.057279263,-0.03752864,0.08666273,-0.0036375858,0.019283157,-0.10807739,-0.026611881,-0.05048158,0.04452596,0.085003845,0.058178343,0.025498182,-0.07484027,-0.020033138,-0.05395697,0.06813571,0.0051825573,0.0039226105,0.049531665,0.07335405,0.03035142,0.0008264207,-0.0549894,0.071737036,-0.0044894014,0.043490402,0.14016934,0.015731243,0.1077974,0.019074708,-0.06438072,0.079787575,-0.0065327464,0.07124639,0.019194447,-0.04600302,0.06630786,-7.471118e-33,0.02646737,-0.035235908,0.004588847,0.021026207,-0.027770363,-0.020747688,0.030651957,0.017679384,-0.00054222764,-0.09884526,-0.15069464,-0.05361355,0.09779818,-0.061055355,-0.071349256,0.0036727365,0.06760878,-0.011007907,-0.0819801,0.0002745736,-0.019464679,0.087773584,0.07450391,-0.040202133,-0.02774218,0.010189405,-0.01063036,0.012599381,-0.061879467,0.041369703,0.01595518,-0.0046416214,-0.032937523,-0.01578322,-0.0123977,0.020128777,0.030637624,0.008859824,-0.07708762,0.037706602,-0.0044948375,0.08153675,-0.051575392,0.044961456,-0.041310932,0.07058773,-0.029701652,-0.102627955,-0.053304598,-0.03396931,0.019024668,0.0012146626,-0.018871179,-0.02863464,0.045871418,-0.09277234,0.055174306,-0.08700511,-0.13742389,-0.00959401,0.033573233,0.09033079,-0.036105234,-0.05771806,0.13517305,-0.0085509475,-0.031807803,-0.020584488,0.035847235,0.022795489,0.051900115,0.007799863,-0.07226094,0.010562551,0.012101223,-0.08368929,-0.06823966,0.0072062877,0.01073186,0.08087712,-0.016761547,0.016248524,0.02425414,-0.05494752,-0.05262313,-0.017095873,-0.027385117,-0.0032051452,-0.032326262,0.0015227334,0.038036395,-0.06574221,-0.054078326,-0.009381935,0.010544223,-3.1011773e-08,-0.015770424,0.025378393,0.034568097,-0.002576634,0.043607816,-0.10151668,-0.16491032,0.057954464,-0.008689586,0.0045898296,-0.015951727,0.008570379,0.009619077,0.11392762,-0.038269,-0.034718152,0.1025643,0.14281793,-0.026220905,-0.040807903,0.04860404,0.01909019,-0.016720448,0.017570915,0.055639416,0.023921555,0.032628875,-0.01913293,0.02684366,-0.09326229,0.011292061,-0.055217158,-0.042263255,-0.05179808,-0.03785013,-0.025089268,0.013904729,0.0133964615,0.063070044,-0.004178793,0.100340016,-0.04454234,-0.016517332,0.014784918,-0.041752495,-0.028232455,0.005069662,0.061740387,-0.019877242,0.012737961,-0.026696296,-0.06589375,0.072016574,0.010179399,0.060519986,-0.022167465,0.01738746,-0.028260583,-0.040337898,-0.033551905,0.034288,0.082408875,0.01105249,-0.08193791} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:01.126268+00 2026-01-30 02:01:10.290697+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1678 google Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB 1 t 1681 Go Karts Mar Menor unknown Beste GoKart -Bahn in der Region, liegt zwar etwas außerhalb von Torrevieja, ist aber sehr groß angelegt. Der Preis ist besser als bei den Konkurrenten in Torrevieja. beste gokart -bahn in der region, liegt zwar etwas außerhalb von torrevieja, ist aber sehr groß angelegt. der preis ist besser als bei den konkurrenten in torrevieja. 5 2025-09-02 00:52:39.833374+00 de v5.1 O1.02 {A4.01} V+ I3 CR-B {} {"O1.02": "Beste GoKart -Bahn in der Region, liegt zwar etwas außerhalb von Torrevieja, ist aber sehr groß ange", "V1.01": "Der Preis ist besser als bei den Konkurrenten in Torrevieja."} {-0.04077561,0.0738837,0.010078622,0.003321069,-0.0751412,0.10138927,-0.014311687,0.13836086,-0.055176686,-0.047354154,-0.052849695,0.032893505,-0.023200607,0.045130707,0.053233307,-0.053243436,0.044060897,-0.018359374,0.10260904,-0.08094819,0.018070126,-0.052130807,-0.024632867,0.002603489,0.03973857,0.033448916,0.006687461,0.025766483,0.0121548325,-0.024368946,-0.042596664,0.04934892,-0.01913757,0.0010908305,-0.110121526,0.071989425,-0.06911125,-0.114665575,0.023999637,0.0408428,-0.032763522,0.08010092,-0.045086175,-0.02023879,-0.029811053,0.07845568,0.038234245,0.044495113,-0.05176739,-0.08484834,-0.03829521,-0.044553112,0.09004932,0.04719286,0.0057055377,-0.093188964,-0.0078009935,-0.024868365,0.068132505,0.04069251,0.03415797,0.04242154,-0.026405314,-0.026145088,-0.032095075,-0.02256348,-8.940079e-05,0.12378875,0.030412003,-0.033632956,0.057042774,-0.06760437,0.036463864,0.016115734,-0.065940455,-0.0051189307,0.012327673,0.07661691,-0.07506759,-0.06708051,-0.10333227,-0.082409196,-0.001501426,-0.0065191123,-0.064761646,-0.037011106,0.0014469487,0.039786432,0.0635499,0.034555525,0.03727172,0.10102289,-0.06033604,0.030905405,0.056774665,0.022422634,-0.04609343,-0.05265068,0.024164854,0.025803532,0.044065334,-0.039183933,0.011922555,0.038816925,0.0061647166,-0.040063877,0.053799156,0.008027076,0.046697825,0.025923122,-0.0020527586,-0.07486113,0.05625599,-0.08007091,-0.088053085,-0.020717638,0.01594355,0.055497345,-0.14318413,0.028415192,0.03362457,-0.055959295,0.03238613,0.05458428,0.023062171,-0.029327124,0.013431089,9.1001975e-33,-0.020574963,-0.0688944,0.013287677,0.0034235776,-0.025801444,0.026803466,-0.030343313,-0.015677499,0.05042738,0.00027156746,-0.056369577,-0.049456738,-0.046486016,0.030468045,-0.013623025,-0.035726737,-0.00704878,-0.05001852,0.00027176522,0.010414823,0.01442313,-0.044191275,-0.013451558,-0.0501587,0.011453743,-0.009680492,0.05270542,-0.09793817,-0.0058871075,0.021948092,0.052567452,-0.052856065,-0.020697046,0.021942183,-0.011452688,-0.048703447,-0.04849377,0.049123984,-0.03409621,-0.10205648,0.13046567,-0.021233505,-0.009041757,0.013912575,0.0044295597,-0.027791752,-0.002161259,0.015616441,0.04389133,-0.0020597656,-0.05095866,-0.038129404,-0.06890463,-0.06812439,-0.055153742,0.08006007,-0.056133766,0.027828157,0.06441681,0.03484399,0.016134683,0.06324801,0.01513799,-0.052633565,-0.0062799715,-0.053146552,0.0826833,-0.05267609,0.03296532,0.03116583,-0.102278195,-0.10221232,0.088019595,-0.00467644,0.051115174,-0.022532824,-0.05514339,0.06372404,0.025691815,-0.028075589,-0.14588147,-0.02112709,0.0345406,-0.023372317,0.1001583,0.06669233,-0.0024639906,-0.056165326,0.0030404322,0.115458444,-0.03554998,0.01001385,0.05437316,0.04172487,0.035510395,-1.0278682e-32,0.07546915,-0.006209831,0.015574667,-0.029694408,-0.0013387962,0.06783047,-0.028231781,-0.0008950271,-0.058069114,0.082387276,-0.024727046,0.009387683,0.028494254,-0.0051870276,-0.019556284,0.048713885,0.10214091,-0.025861451,0.0022557222,-0.05859881,-0.0517886,-0.061723936,-0.06924159,-0.02462613,-0.009505316,0.008380083,0.004559807,0.09860627,-0.0805301,-0.008711746,0.0063968324,-0.048744064,-0.031944007,-0.051819332,-0.04946746,0.09158602,0.07961013,0.09915629,-0.011265826,0.038431183,0.023562692,0.007064299,0.0061982144,0.02214006,-0.011380165,0.00889684,-0.048743773,-0.042482287,-0.078735165,-0.039884858,0.04385463,0.027740251,-0.02231218,0.0084726615,0.061088867,0.037648443,-0.11320802,0.0251657,-0.03694755,-0.0257183,0.030493377,-0.029315092,0.07717278,-0.025620699,0.0072371894,-0.08494655,-0.038141087,0.0093438,0.025579624,0.024330806,-0.01774568,0.050812326,0.016058449,0.01758703,-0.07815736,-0.01906173,-0.015458181,0.012605456,-0.033547435,0.009090085,-0.0062191663,0.09047586,-0.07955328,0.014822234,0.007438944,0.027238188,0.11422879,0.014175836,0.037297852,-0.08794218,-0.018552054,0.02959291,0.014307247,-0.05182282,0.014648702,-4.2147345e-08,0.029095165,-0.045983493,-0.05192993,0.016506396,0.03553477,-0.06473097,-0.072064206,0.12690319,-0.11129386,0.05387294,0.06201613,-0.047363766,-0.06908474,-0.00748449,-0.0062679984,-0.008464386,-0.03384518,0.12860909,-0.020023527,-0.072289884,0.08252527,-0.057475418,0.0043048775,0.0025267208,0.04417099,-0.056087825,0.038790043,-0.085028864,0.025435247,-0.034774862,0.017397806,0.10268284,0.019902835,0.034255326,-0.020868933,-0.0101230005,-0.005407503,0.04989873,0.012393657,0.008592676,0.026767226,0.000951747,0.019248955,-0.025379237,0.015218247,-0.034254137,0.047138836,0.029471496,0.02955419,0.0071099447,-0.012313827,0.09601405,-0.025096914,0.045210812,0.09360122,-0.0073253484,-0.054135624,-0.098234326,-0.07332727,0.04334604,-0.042603176,-0.017944017,-0.020232648,-0.0015906985} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:07.525673+00 2026-01-30 02:01:10.293581+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1526 google ChZDSUhNMG9nS0VJQ0FnSURVc2NDVkhREAE 1 t 1529 Go Karts Mar Menor unknown We loved it couldn't get Conor of the track we loved it couldn't get conor of the track 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "We loved it couldn't get Conor of the track"} {-0.054118264,0.08786295,0.0051973546,-0.006488618,0.052104067,0.04469585,0.015933026,-0.012408789,0.06572948,-0.08243935,-0.0902754,-0.023115046,0.036965005,0.019939825,-0.04761653,-0.008132521,0.024846677,0.034443777,-0.020649528,0.0020203253,-0.008724311,0.10407216,-0.0030538908,0.0832775,-0.023812912,0.044945065,-0.040371854,-0.038659055,-0.003293397,-0.0038237297,0.07827871,-0.09583774,-0.034561954,-0.010725002,-0.064555675,-0.069227315,-0.07926185,0.05749143,0.05587962,0.02695336,-0.042086,-0.039602734,-0.010498357,0.02463236,0.093928814,-0.009063305,0.03312345,-0.057941344,0.049704038,-0.011851546,0.09331931,-0.07239499,0.07570979,-0.086813636,-0.0043900474,0.049822778,0.048354965,0.00570714,0.01030872,0.009207096,-0.05112461,-0.025233567,0.0009230116,-0.07662061,0.025888791,-0.12975442,-0.033535905,0.075613,0.04916243,0.10278737,0.04119053,-0.007397628,0.053953033,-0.02868495,0.04129397,0.060781296,-0.091818854,0.000785965,0.03625297,-0.0024063382,0.035018977,-0.08433988,-0.0012727925,-0.07120961,0.07561899,0.0014966476,0.039900236,-0.02686034,-0.045561813,-0.028480263,-0.04404376,0.037176047,-0.040669315,0.025158793,0.06693681,-0.07914351,0.00588818,0.020139514,-0.029303882,0.09536625,0.020428086,0.10035574,-0.0904665,0.04645099,0.04442469,-0.010070896,0.0572232,0.029152172,0.046417695,-0.0024498224,0.0015170567,0.015771572,0.039008416,0.036603224,0.016266866,0.003737895,-0.04621715,0.026830558,-0.01612849,-0.024355792,-0.103402175,0.00111866,-0.026000967,0.033920277,-0.052263763,-0.03699396,0.07769795,-5.280588e-33,0.00934305,-0.02501497,-0.01254526,-0.060572933,0.11281291,-0.023789408,-0.006783559,-0.051835068,-0.083710425,0.027870944,0.015045881,0.0019143556,0.0021249084,-0.07522514,0.10112459,0.0022593795,-0.06672922,-0.036972795,-0.048740987,0.010044189,-0.05151116,0.0759118,-0.00595593,0.0052495166,0.02210151,0.075081445,0.01575475,0.07572793,-0.016501816,-0.0113501195,-0.064175405,0.0071406933,-0.0047651962,0.042218268,-0.053974748,-0.05794021,0.018149558,0.022577947,-0.018237265,0.048755735,0.03297222,0.011951028,0.045172174,-0.032323252,-0.048919395,0.092019886,0.032750703,0.12680992,0.018010294,-0.00949964,0.056115787,-0.013769132,0.027038086,-0.00068855187,0.012433317,-0.029691074,0.048805185,0.043158066,0.015300995,0.028149206,-0.00095402956,-0.016928816,0.09009987,-0.0634515,-0.017898202,0.0099987015,-0.045868978,-0.04559944,-0.060158934,-0.002327919,-0.13163696,-0.011844741,-0.067063786,-0.10917273,0.08605987,-0.095464006,-0.037786577,0.017495017,-0.027401911,-0.032287396,-0.04998689,-0.07713473,0.051269036,-0.020752253,0.040813502,0.0020845563,0.06244539,-0.055939034,-0.03193463,0.02127883,-0.08413327,0.005424385,-0.036611088,0.03227577,0.049916506,3.623416e-33,0.07334015,0.047375966,0.06753756,-0.008880837,0.045134377,0.017715536,0.0012921648,0.02742338,0.10822908,0.090460144,0.051051512,-0.094689384,0.009710105,0.03176539,0.01810925,-0.03575971,-0.055068962,0.03311172,0.051596273,0.040419657,0.072542176,-0.026349345,-0.057472505,0.04956324,-0.027275415,-0.0037925856,-0.033641066,0.035063952,-0.0058004493,-0.0353649,-0.059404213,-0.038309965,-0.07685722,-0.05213139,-0.0074127177,0.12259774,0.018234778,0.12964503,-0.08590247,0.062649794,-0.010815342,-0.026555857,-0.041224144,0.05250396,0.041870967,-0.017476648,0.037307244,0.06051376,-0.0032425974,0.039662205,0.042030882,-0.033140924,-0.03369993,-0.012183197,-0.060387626,-0.0039226506,0.05612129,-0.003954665,0.017594444,0.008945539,-0.05181586,-0.011619073,-0.07885251,-0.049568374,0.039400052,0.017524866,0.044040684,-0.0004976426,0.028693171,0.05462226,-0.07971362,-0.012475368,-0.04165719,0.06308089,0.03273961,0.04660311,-0.1114466,0.079282604,0.0042960923,-0.011820319,0.07323743,0.020877918,0.0097642895,-0.06319991,0.09637408,0.06443228,0.07075187,-0.056457963,-0.01894957,0.0316417,0.121842474,0.0054400982,0.0012827258,0.0061736614,-0.006308716,-1.8923947e-08,-0.059821274,0.065286964,-0.039681103,-0.03068405,-0.022901313,0.072727986,0.099193275,-0.067854226,-0.0012351703,0.09833056,0.0035726035,0.020366553,-0.06035866,0.03348748,-0.057746667,-0.057836752,-0.07837549,0.045585204,-0.022980744,0.08057234,-0.05366121,-0.0027680907,-0.0049942667,-0.08608841,0.021751612,-0.060538027,0.0075898604,0.045003645,0.0043962463,-0.011025227,0.065756805,-0.055283193,-0.057865236,0.026348753,-0.08445121,-0.06660013,-0.07462678,0.070386045,0.041171595,-0.057138335,-0.058646016,0.05361252,-0.0392305,-0.029250126,0.008485532,0.02344067,-0.017107233,-0.029114448,0.0045018774,-0.03466473,0.050610725,-0.07098222,-0.06624204,-0.013563991,0.060957566,0.03527202,-0.040528525,-0.024538856,-0.043499757,-0.038763124,-0.047255684,-0.059781916,0.064228654,0.016329668} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.134016+00 2026-01-30 02:01:09.661144+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1425 google ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE 1 t 1428 Go Karts Mar Menor unknown Really good experience , proper go karts super track friendly faces and great service at a great price , recommended really good experience , proper go karts super track friendly faces and great service at a great price , recommended 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.02 {O2.01} V+ I3 CR-N {} {"O1.02": "proper go karts super track", "P1.01": "friendly faces and great service", "V1.01": "at a great price", "V4.03": "Really good experience"} {-0.04547267,0.036105793,0.048858523,0.045683473,-0.11611874,0.022448352,-0.023137245,-0.042744946,-0.03471528,-0.018858498,0.008408685,0.040947303,-0.025595726,0.03397326,0.037412707,-0.08806476,0.087081246,-0.039060716,0.060437243,-0.069531456,-0.040698923,-0.09894688,-0.012257112,-0.010313509,-0.13161297,-0.004772271,0.02946983,0.066598035,0.060944337,-0.0416006,-0.101961225,-0.005385216,-0.029813018,-0.01667304,-0.061280966,0.00077157957,0.0054168776,-0.019976275,-0.102746055,0.020173678,-0.06328203,-0.0032222085,-0.027210934,0.037354387,0.04040073,0.090113096,-0.0012894741,-0.016559606,0.0042063096,-0.0005505913,0.034461867,-0.13301238,0.0488981,-0.066003375,-0.019414917,0.04838504,-0.112183824,-0.02649314,0.039173815,-0.049344562,0.058863692,-0.03260934,-0.07616499,0.007485879,-0.02105581,1.8598528e-05,-0.04463431,0.021932904,0.0066290493,0.03460138,-0.023779897,-0.021324906,-0.036165472,-0.0037759163,0.004575659,0.048663728,-0.024649689,-0.040846154,-0.11949045,0.029586555,0.033162184,0.038386863,-0.008453561,-0.037013393,-0.047435023,-0.11397086,-0.004544871,0.019344298,-0.02631431,0.021593004,0.042937037,0.07083655,-0.06243422,-0.06836744,0.0372363,0.06666893,-0.01679036,-0.025915448,0.053179935,0.043892212,0.05037456,-0.014400631,0.025018938,0.051972315,0.001662031,0.033089455,-0.04394586,0.110946395,0.070407145,0.02459281,0.019263765,0.02174985,-0.06690637,-0.037753295,0.01646453,-0.01402166,-0.020288138,0.039889164,0.05392859,-0.032685965,0.03234455,0.0054667415,0.043220766,-0.0042081834,-0.008360633,-0.064664975,0.026088761,6.069129e-34,-0.030952739,0.070639126,-0.034278683,-0.014486265,0.051746055,-0.039290883,-0.025382722,-0.12107708,-0.097322136,0.12446531,-0.06349593,0.04957699,-0.048990425,0.034120757,0.07173013,-0.0053219567,-0.0678413,-0.00544081,-0.082831204,-0.005065172,-0.026931426,-0.043469496,-0.001762395,0.0497156,0.040308025,0.028048495,0.07701352,-0.050362565,0.05497495,-0.010687562,-0.06538568,-0.02583957,-0.027862709,-0.0037151815,0.04170069,0.057380363,-0.05548477,-0.065103255,-0.005563281,-0.013798513,0.03352616,0.045876935,-0.043840334,0.03376116,-0.050580874,0.07943071,-0.007689782,0.060313907,0.012471088,0.024793632,-0.06510174,-0.0037548544,-0.055412084,0.052558456,-0.0803823,0.042817418,0.06005453,0.016338138,-0.020694252,-0.050113473,0.1182472,-0.026853511,-0.02433653,-0.048361417,-0.06975775,0.009315402,0.018729798,-0.05363329,-0.010731,-0.006118792,-0.015478027,0.07562858,0.06065883,-0.003404169,0.041128892,0.020239368,-0.045112513,0.03988095,-0.054193895,0.13530034,-0.00069874234,0.11278401,-0.03940144,-0.010427729,0.06498322,-0.032964367,-0.070820935,-0.0635169,0.044838194,0.02594128,-0.010703642,0.02998231,0.0017288203,0.06599972,-0.030830873,-1.5073366e-33,0.062109515,0.06665732,0.11908687,0.08923932,0.046434347,0.06490883,0.023621803,0.08088092,0.09371215,0.08213432,-0.032831457,0.063201234,-0.029644374,0.00091242336,0.012975904,-0.040154003,0.06687071,0.02034941,0.0033917625,-0.11929032,-0.002147369,0.03649784,-0.02235281,-0.09832481,-0.0028877337,0.060494985,0.00014928897,0.039777376,-0.07713424,0.0047437493,0.013632533,0.02782324,0.016352378,0.0012434856,-0.03722079,0.06465508,0.020330645,0.13603418,-0.035836805,0.00046815758,-6.6184526e-05,-0.0035134386,0.026168931,0.049926825,-0.020186374,-0.08508849,0.038428314,-0.0148932,-0.024085071,-0.04702706,-0.023526363,0.029680254,-0.03459703,-0.021770036,-0.061382484,-0.08656054,0.042190354,0.0364815,-0.0035981084,-0.02079408,0.02165363,0.022596888,-0.07700084,0.020216094,0.08015332,-0.028502773,0.020429831,-0.09533434,-0.04034315,0.015447416,-0.109640725,0.020261932,-0.044004228,0.035420634,-0.013568638,-0.082011975,0.07648663,0.03970752,0.023768812,0.0734717,0.017771725,-0.05335072,-0.019670282,0.028311217,0.09318299,0.074975036,-0.06441433,0.027247483,0.0046823192,0.04240167,0.049137,0.051107787,-0.035975948,-0.013220175,-0.050393265,-2.4604306e-08,-0.022469051,0.07352779,-0.058158945,0.009150512,-0.017150577,-0.067288764,-0.0048882356,0.010239742,-0.088761285,-0.00881999,0.005846819,-0.05434462,-0.018372172,0.033704188,-0.013638632,-0.0074997325,-0.06707569,0.19664961,-0.03863716,-0.02331384,-0.010663403,0.0012277992,0.0055153677,0.03436368,-0.02536773,-0.054072443,0.05519619,0.11186663,-0.0067010284,-0.042468052,-0.02930243,0.06219415,0.044538513,-0.018322706,0.022530222,-0.055146072,-0.0064304927,0.035153825,0.053743802,0.00090473896,-0.06455737,-0.041710306,-0.027324265,0.014702376,-0.01608791,0.08108421,0.015946802,-0.029774316,-0.049154665,0.014200454,-0.023103146,-0.05533512,-0.048763312,0.058422465,0.01354954,0.021772496,0.054958463,-0.027074894,0.027142953,0.044406053,-0.056015223,-0.071760215,-0.032283317,0.06198479} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:09.979318+00 2026-01-30 02:01:09.316652+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1685 google Ci9DQUlRQUNvZENodHljRjlvT2tKU2IyZ3RTR3d3WldwTGJXbDZWM1ZtVVhJNWJHYxAB 1 t 1688 Go Karts Mar Menor unknown 10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc 10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc 5 2025-09-02 00:52:39.833374+00 es v5.1 V4.01 {O1.02} V+ I3 CR-N {} {"V4.01": "10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc"} {-0.09151645,0.077580936,-0.038046595,0.009926637,-0.016403466,0.07567522,0.06641291,0.10517813,0.06660948,0.026246091,0.12535124,-0.13166353,-0.016115248,0.0030361067,-0.024427699,-0.06975107,-0.0135733625,0.054167848,-0.029355418,0.01469961,0.05282908,0.0345132,-0.029179225,0.038731724,-0.025010621,-0.0033374326,-0.012547622,-0.060046643,0.0054028127,-0.039122265,0.0438572,0.048080686,0.07324513,-0.026910637,0.036391508,-0.006556356,-0.024188438,-0.085258104,-0.019542862,0.022422103,-0.090938926,-0.024540067,-0.038501672,-0.12708504,0.0078786295,-0.0390922,0.06890283,0.0853003,-0.03187404,-0.004365823,-0.021359349,-0.02300839,-0.002793462,-0.09852028,0.038925696,-0.08071681,-0.02050084,-0.014118213,0.031255078,-0.009639114,-0.0051013054,0.087172836,-0.068054736,0.023429899,0.011009293,-0.0076667676,0.05472236,-0.025624057,-0.07943144,0.03820433,0.0955926,-0.07848531,-0.026261326,-0.010194758,-0.02616439,0.02504145,0.017059786,-0.022540743,-0.019163856,-0.02659019,0.009747277,-0.032614306,-0.03453349,-0.043632057,-0.044278894,-0.048201878,0.05514961,0.033206318,0.040791254,-0.038099695,0.019399062,0.053624988,-0.11980315,-0.0093481345,-0.009760306,0.01201371,-0.05370185,-0.029793134,-0.05578146,0.08299135,0.13317132,0.13819098,0.019067498,-0.008238224,-0.04120457,-0.0064199483,0.08143562,-0.024466375,0.01920769,0.013721197,-0.0786235,-0.031036021,-0.11552501,-0.07711709,-0.030528499,0.001822725,-0.021410406,-0.038139984,0.06729483,-0.032591365,0.04612304,-0.06191344,-0.042882953,0.0312779,-0.0028450626,-0.057453893,0.09519841,7.960157e-33,-0.037708703,0.016801422,-0.017112747,0.02160386,0.006880657,0.031708073,-0.009185208,0.003815911,-0.0337295,-0.0599108,0.05602078,-0.002515924,-0.030522501,0.0058907066,0.044643153,0.06039506,-0.029758487,-0.00059485465,0.021621644,-0.0062498385,-0.0515651,-0.039602786,0.050917886,0.03848927,0.00082072883,0.046605937,-0.0282456,-0.047229785,0.0063411263,0.030220194,0.07442893,0.06264954,0.020975357,-0.05046335,-0.078192785,0.06570582,0.071358286,-0.009028335,-0.016224723,0.008401972,-0.03470352,0.008012947,-0.0064150947,-0.011697526,0.019291643,0.011989278,0.09203562,0.027791064,0.0025534201,-0.0027357354,-0.061265647,-0.030371465,-0.0905371,0.007314682,-0.008734423,-0.02103562,-0.06916486,0.04680875,-0.043792427,-0.0055856565,0.038358383,-0.033596765,0.016057437,0.029704249,-0.062764,-0.025871387,0.03993858,0.00043533844,0.1134949,0.032003082,-0.123444684,-0.009651815,0.0630614,-0.047860235,-0.009122497,0.02255398,0.00028025475,0.028670348,-0.011353582,0.069073156,-0.10521769,0.045510374,0.049033258,0.019240752,0.043308616,0.06926057,0.08238661,0.043304276,0.0028761467,0.096270636,0.066479914,0.024476951,0.042012375,-0.04109993,0.056880634,-8.943555e-33,-0.013646388,0.02205441,-0.030883506,0.03984235,-0.020331055,-0.018987933,-0.0028618616,0.07202497,0.004258335,-0.073920146,-0.10582782,-0.09790018,0.12623644,-0.032848123,-0.031213433,0.030287424,0.015347179,-0.026568027,-0.053403072,4.9768743e-05,0.044690996,0.070689045,0.06785401,0.0035494934,-0.006511317,0.017527994,-0.03007147,0.026914233,-0.059513375,-0.09132487,-0.0049408595,-0.041401852,-0.041921217,0.05116297,-0.09911424,0.008346232,0.047695566,0.09564387,0.0012551579,0.09298198,0.027039088,0.060666062,-0.070507504,-0.01608158,-0.024482716,-0.05103258,0.078240946,-0.179588,0.016749209,-0.061678056,0.10324986,-0.019103179,-0.03646704,0.009363186,-0.004858481,0.001994572,-0.022326352,-0.028375603,-0.11762604,-0.020661475,0.004553706,0.11332549,-0.064520314,0.04888502,0.04890129,-0.0117825465,0.00452358,0.022780783,0.06326295,0.0012408986,0.022420835,-0.012689591,-0.0038872645,-0.02718459,-0.046388164,0.003537439,-0.020407425,0.004343039,0.0788078,-0.007741225,-0.04891516,0.003378467,-0.019690156,-0.08199913,0.0010506271,-0.019080674,-0.06667319,-0.015487428,0.07957876,-0.02222458,-0.040871534,0.03757237,0.004415677,-0.108158894,-0.014187191,-3.1705518e-08,0.00878267,-0.04597631,-0.07314125,0.011623255,0.083698824,-0.028743597,0.05766069,0.06321216,-0.096224815,0.09220306,-0.00035886603,-0.08076498,-0.03986679,-0.026642561,-0.06322053,-0.04353243,0.055595845,0.09652881,-0.021126848,-0.08732233,0.032870304,0.037348967,-0.034633316,-0.029975176,-0.032159615,0.052944776,-0.0027478437,0.08812917,-0.02364682,-0.01968501,-0.021340735,-0.04068448,-0.05191404,-0.06801766,0.070005305,0.009611014,0.008628929,0.012999676,-0.03232329,0.037109084,0.027553096,-0.06298186,-0.039679445,0.01494753,0.0028169423,-0.033532474,-0.07289001,-0.01623396,0.03893624,0.0073512965,-0.05092604,-0.002623848,0.03370412,-0.00516224,-0.016204977,0.011790387,0.01922605,0.02121379,-0.09564805,0.06119533,0.07087017,0.012760557,-0.032823782,-0.033407707} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:57.698324+00 2026-01-30 02:01:10.319524+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1688 google Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB 1 t 1691 Go Karts Mar Menor unknown Personal encantador y muy amables. Instalaciones bien cuidadas. Circuito muy entretenido. Buen sitio para pasar un buen rato. personal encantador y muy amables. instalaciones bien cuidadas. circuito muy entretenido. buen sitio para pasar un buen rato. 5 2025-07-04 00:52:39.833374+00 es v5.1 P1.01 {P1.02} V+ I3 CR-N {} {"E1.01": "Instalaciones bien cuidadas.", "O1.02": "Circuito muy entretenido.", "P1.01": "Personal encantador y muy amables.", "V4.03": "Buen sitio para pasar un buen rato."} {-0.026308794,0.028558444,-0.029986747,-0.12541997,-0.058467165,-0.052563302,0.1014837,0.10720556,-0.036238704,0.010554905,0.080780916,0.013092362,-0.01362069,0.019986887,0.045874055,0.04342278,-0.050801985,0.028371042,0.033258203,-0.0010098486,0.03154927,-0.040935908,-0.05811568,0.08272605,-0.09081903,-0.011244461,0.05277724,-0.00016412609,-0.0500509,-0.09842142,-0.032260843,0.08087553,0.12440186,-0.08178606,-0.011048081,-0.03397321,0.016490564,-0.024879003,-0.018891633,-0.012828404,-0.08364986,-0.08782727,0.013304656,-0.04613699,0.009778136,-0.098833,0.05754118,0.003778091,0.07137895,-0.04251463,-0.021606602,0.042553123,0.0013318991,0.026440952,-0.0039291126,-0.03995978,-0.012191631,0.028370831,0.057307996,0.0425364,0.053543184,0.022633936,-0.039957847,0.05837297,0.0005843576,0.033054132,-0.0026823254,0.023338698,-0.031177294,0.020157034,0.07838373,-0.1333796,0.00026610977,0.035338894,-0.000990214,-0.011758461,-0.026155861,-0.007067576,-0.023982598,-0.02155872,-0.051456165,-0.0023902822,-0.04316744,-0.0319324,0.0818776,0.0048480104,-0.0035620835,0.02471746,-0.029464392,-0.0114059765,-0.00594756,0.042487428,-0.07277508,-0.06450688,-0.02093576,-0.043338858,0.03142469,-0.088796094,-0.008359186,0.050848003,0.061722096,0.006286738,0.049859345,0.044576373,-0.08870908,0.020184431,-0.01720514,-0.01843118,0.017949374,0.016907051,-0.11590924,-0.03155335,-0.11139896,-0.03461293,0.00913297,0.03570844,-0.008424317,0.0016821133,0.032550123,-0.04792971,-0.0042839893,0.0022069844,-0.03762944,-0.02571794,-0.018332306,-0.024188738,0.11551307,9.876073e-33,-0.063975215,-0.004526298,-0.065904304,0.046021856,-0.014357491,0.045237914,-0.036932115,0.014293693,-0.0030086536,0.0015039521,-0.029531477,0.103093326,-0.022115221,0.0896519,0.15189524,0.006069613,-0.021113703,-0.012355768,0.09726612,-0.023404913,-0.03276742,-0.03926001,-0.053989276,0.10434456,0.030490413,0.0251318,0.06732875,-0.029344263,-0.03916624,0.029777376,0.057417415,-0.006376736,0.047852714,-0.06854334,-0.03161769,-0.020201955,0.018761493,0.0039311363,0.058013547,-0.025677375,0.050441567,0.021036265,0.002535301,0.0508133,-0.015897777,0.025917998,0.040644832,0.044063676,0.06863727,0.01915872,-0.112940684,-0.04991919,-0.007893359,-0.012874442,-0.028566074,-0.023398845,-0.032723904,0.016337557,0.016113015,-0.028010294,-0.030310195,0.07408014,-0.007824658,-0.066299774,-0.083604775,-0.03217503,0.028348172,-0.008976545,0.08935005,-0.022779837,-0.14646383,-0.03555939,-0.038118057,-0.03766575,-0.0046298006,0.057113074,-0.067374006,0.040649537,-0.029481681,0.032350242,-0.06477497,0.024616253,0.0038965556,0.043780085,0.101709545,0.10461323,0.031030105,0.012315409,-0.022459747,0.15473291,0.024187684,0.13484141,0.03252037,0.05992359,0.035500623,-1.0372888e-32,-0.032501325,0.0012783422,0.04967104,0.06719109,0.04466345,0.02895479,-0.04252665,-0.027119871,-0.015864503,-0.012421971,-0.078443095,-0.07585531,0.09073438,-0.010588323,-0.04897595,0.06823795,-0.06944359,-0.06761343,-0.056867965,-0.055764236,0.024899904,0.08316466,0.0019871232,-0.10078809,-0.018448878,-0.053789426,-0.064954765,0.049607996,0.010624765,0.039221782,0.008073372,0.017224407,-0.072307214,0.05112658,-0.029306011,0.03720731,0.07944591,0.05497243,0.008976564,0.014436522,-0.011814718,0.098194845,-0.010584951,0.0032686281,-0.04415933,-0.016955338,0.032702114,-0.15755379,-0.08111014,-0.051264316,-0.0019007373,-0.021698266,0.026361518,-0.0806031,0.00672891,-0.07140965,0.004331711,-0.059556898,-0.06102749,-0.055703577,0.045660317,0.008057512,0.01477317,-0.056040145,0.04571168,-0.016643427,0.033442967,0.050484635,0.00027788608,0.0053980616,0.08073291,-0.009117538,0.0563347,0.008009027,-0.041183982,-0.0183602,-0.069179066,-0.03301002,0.011248005,-0.057321467,0.0042666346,-0.008040054,0.012729504,-0.12680691,-0.0126133915,-0.043472648,0.033386186,0.042230677,0.012936039,-0.0016187623,0.0104422225,0.07344742,-0.12071265,-0.009966748,-0.021016456,-4.2026954e-08,-0.00871034,-0.081003234,-0.018013455,0.050765228,0.034541246,-0.08621209,-0.0007800236,0.034698214,-0.00046871198,-0.008344901,0.0034155545,-0.06678567,-0.0206968,0.07412241,0.015047114,0.04704571,0.072629295,0.108325675,-0.00984758,0.013268299,0.07524192,-0.028122975,-0.0050225575,0.08519285,0.03949692,0.003419658,0.0052110697,0.021939876,-0.012900306,0.017510425,-0.010751558,0.00059962284,0.02639638,-0.023303082,0.042949848,0.005918641,-0.06131406,0.0036131172,-0.008552245,-0.046868037,0.058833107,-0.057988822,-0.075468905,0.009154479,0.0049613114,-0.11046338,-0.03287609,-0.03346041,-0.0154027175,0.056208532,-0.013298448,-0.061998297,0.07512717,-0.0013907801,0.037506875,0.026126048,0.027417988,0.034986127,-0.009287045,-0.013145276,-0.00972063,0.10483396,-0.0021328214,-0.075297475} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:21.924677+00 2026-01-30 02:01:10.329344+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1689 google Ci9DQUlRQUNvZENodHljRjlvT25FemVHNXBhbWxxYWw4NU5YaDVOVkUxVnkxa04zYxAB 1 t 1692 Go Karts Mar Menor unknown Fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los F200 y una gran experiencia, salió superfeliz fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los f200 y una gran experiencia, salió superfeliz 5 2025-08-03 00:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los F200 "} {0.0027803855,0.0052314354,0.013865299,-0.0037583078,-0.011278679,0.006438264,0.059784494,0.07215332,-0.040181197,0.02510346,0.054684445,-0.00908348,-0.0061928337,-0.018180145,0.037596602,0.02338814,-0.049114358,-0.046426404,-0.003007268,-0.00053827016,0.10999832,-0.044097982,-0.034158006,0.06622822,-0.09319433,-0.03660262,-0.06361349,0.070125535,-0.042459305,-0.0873842,0.04466341,0.08905965,0.089303076,0.024894293,0.0027939056,0.051472485,0.03793671,-0.0080801165,-0.04683143,0.011580632,-0.09313702,-0.054332897,-0.013381575,-0.041136034,0.012532323,-0.01367487,0.04062504,0.042851467,0.056611713,0.018792715,-0.064318314,-0.014531851,0.062876925,0.03761006,0.03967786,0.046011962,0.045340367,-0.1100958,0.025729438,0.074498735,-0.022626886,0.017630605,-0.12587509,-0.026924971,0.08179687,0.018034058,0.035301168,0.001837097,-0.09375928,0.06264244,0.1169251,-0.03163012,0.036505885,0.038094185,-0.0315918,0.052209903,0.011501694,-0.021630654,-0.018362196,-0.034786843,0.051095113,-0.027146164,0.041681986,-0.0734611,0.01651069,0.0011439134,-0.061345194,0.0012667598,-0.0027224657,0.050691262,-0.0680203,0.089705534,-0.042206936,0.005597276,-0.023697104,0.036974683,-0.03175807,-0.04702555,-0.028047698,0.07130409,0.091480225,0.009505969,0.041830257,0.018208707,-0.04073805,0.02140198,0.040196646,0.014390439,0.0007830446,0.042577095,-0.057428267,-0.05963762,-0.03969551,-0.010944874,-0.11518451,-0.041415833,-0.0104553895,0.03420585,-0.088256255,-0.12100854,0.04766344,0.05594302,-0.019082999,0.015413166,0.032563202,-0.02992596,-0.045468986,1.11772644e-32,0.016646173,-0.02268469,-0.019648958,0.09268073,-0.043289453,0.033454016,0.007989074,-0.002791072,-0.041593656,-0.010028218,-0.026914408,0.08293029,0.010623925,-0.07587985,0.0802675,-0.008414481,-0.049742177,0.016418714,0.0016574487,0.0077564353,-0.024442429,-0.0044281697,0.04340355,0.02297189,-0.003992832,0.06967669,0.0003188625,-0.06753915,-0.050221723,0.061023924,-0.037922118,0.01443645,0.012908117,-0.03851146,0.013314731,-0.052589905,0.0980683,0.026152536,-0.032125734,-0.025990406,-0.004787563,0.04047009,-0.022536444,0.0008878821,-0.020919511,-0.013062122,0.07174336,0.040537655,0.04675174,0.03339746,-0.019881848,-0.0775807,-0.044009354,-0.092287734,0.039516903,0.016740715,-0.06578043,0.043783233,-0.054611735,-0.047452476,0.05694974,-0.012734603,0.061077077,-0.06868774,-0.058377862,0.00024766504,0.055982064,0.047517236,0.15790303,0.0670187,-0.046833113,-0.021137843,0.026311148,0.042928204,0.03987783,0.042492624,0.033720843,-0.04009559,-0.017105715,0.00079855055,-0.026327249,0.0073664216,0.009597567,0.045317266,0.08198114,0.05560927,0.04014621,0.01572057,-0.015234816,0.058834013,0.0054438235,0.0008024,0.09055777,-0.0025972659,-0.037951093,-1.0401908e-32,-0.03290435,0.020736359,0.01390953,-0.016959524,0.015458205,-0.010853597,-0.05720579,0.02237657,-0.08780932,-0.02558259,-0.034227394,-0.11116469,0.16767181,-0.04560008,-0.0654326,0.0036402054,0.062192243,-0.104200676,-0.0664646,-0.05958806,-0.0019673621,0.084882,0.062572315,0.04289815,-0.024777867,-0.023370432,-0.033803802,0.078572266,0.009315262,0.0064873537,0.030305633,0.0059534158,-0.010263321,-0.012741567,0.013933909,0.040796217,0.028719224,0.0070807654,0.017078405,0.009264511,-0.042263936,0.11538269,-0.03772117,-0.029902117,-0.027868334,0.01708781,0.010789106,-0.1363322,-0.022219272,-0.08514635,0.057508983,-0.039423928,-0.13343392,-0.025410177,-0.03630869,-0.063864745,-0.04586723,-0.06281843,-0.11685176,-0.024361787,0.05111423,-0.028409103,-0.02701954,-0.019350858,0.051373404,-0.0058484594,-0.0034791494,0.07277567,0.01926143,0.09473156,0.09278224,0.0039459527,-0.11354136,0.028508706,-0.053289518,0.022642232,-0.053192448,-0.022243053,0.019497095,0.0026233587,-0.014248974,0.02610392,-0.010117999,-0.00947674,-0.0021303026,-0.034737553,0.016522424,0.039208714,0.02740649,0.0022935055,0.0059493394,-0.02496808,-0.0883116,-0.0841506,-0.048674516,-3.940703e-08,0.024766477,0.03535407,-0.03189495,-0.020844636,0.06862883,-0.039773583,-0.080433205,0.008260073,0.07501169,0.04815935,-0.027628407,0.029791174,0.044190533,-0.034155898,0.03600468,0.025903588,0.116670236,0.12561849,-0.04394877,-0.06909098,0.033463832,0.012400927,-0.042643957,0.0017660998,-0.038534656,-0.032715008,-0.06112356,-0.05748607,0.029930064,0.026286734,-0.07526147,-0.0033054568,-0.038143653,-0.13704084,-0.00819862,-0.007012199,-0.050153986,-0.0055055013,-0.032885436,-0.012444246,0.1266549,-0.010309802,-0.07888431,0.091806896,-0.11575664,-0.08452986,0.008775015,-0.041617338,-0.040741175,-0.048250012,-0.016535306,-0.03251973,0.01458083,0.040196374,-0.0006658349,-0.0005169226,0.018770432,0.05377374,-0.02524774,-0.0021164462,0.052125953,0.084623925,0.0021275794,-0.04216797} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:26.109107+00 2026-01-30 02:01:10.332399+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1717 google ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB 1 t 1720 Go Karts Mar Menor unknown A great venue to enjoy karting with the family, or group of friends\n\nRoberta and her twin boys will make you VERY welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁\n\nUn gran lugar para disfrutar del karting con la familia o un grupo de amigos.\n\nRoberta y sus hijos gemelos te harán sentir MUY bienvenido 😎😎🌞🌞🌞🏎️🏁 🏎️🏁 a great venue to enjoy karting with the family, or group of friends roberta and her twin boys will make you very welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁 un gran lugar para disfrutar del karting con la familia o un grupo de amigos. roberta y sus hijos gemelos te harán sentir muy bienvenido 😎😎🌞🌞🌞🏎️🏁 🏎️🏁 5 2025-04-05 00:52:39.833374+00 en v5.1 O1.05 {} V+ I2 CR-N {Roberta} {"O1.05": "A great venue to enjoy karting with the family, or group of friends", "P1.01": "Roberta and her twin boys will make you VERY welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁"} {-0.041335333,-0.07947233,-0.020572966,0.035115406,-0.09889059,0.074520685,0.011071099,-0.009669178,-0.0064565726,0.039405685,0.07496622,0.020981396,0.030392658,0.022749659,0.022793263,-0.014315671,0.057462577,0.004686482,-0.04221119,0.0144032175,-0.016189862,-0.06573179,0.061724313,0.05296595,-0.057318468,-0.0029925494,-0.039013717,0.027327,0.08129504,-0.0026453352,-0.0066443095,0.08344307,-0.031490304,0.03617739,0.04726879,0.047244027,-0.048538275,-0.076873556,0.0023964322,-0.0151917795,-0.02651617,0.013399248,-0.0030624636,-0.05832946,-0.013049548,-0.07009375,-0.0013185581,0.023455046,0.027317183,-0.020206604,0.03046595,-0.023636604,0.048862603,-0.013937455,0.018693004,-0.043633617,-0.092548236,-0.036353868,0.030221103,0.0035491015,0.004121114,0.01754212,-0.037983987,-0.04384945,-0.085056975,-0.100056395,-0.06424139,0.061380442,-0.017205004,0.035839427,0.035925947,-0.0039398996,-0.045215145,0.06655209,-0.0024229733,-0.017690811,-0.014583824,0.041849256,-0.10604208,0.0114007,0.0321217,-0.04093799,0.06585224,-0.060978975,-0.013520697,-0.006863794,-0.011698347,0.00087152096,-0.015478202,-0.054241758,-0.07949847,0.11335838,-0.029336251,-0.024275979,-0.06710698,0.028028827,-0.010892689,-0.036935084,-0.06514191,0.04084344,0.048258226,0.10323123,0.08790117,0.095717505,-0.107750736,0.036997966,-0.010381032,0.04712813,0.018138766,-0.031669535,0.024419164,-0.019455245,-0.020370914,-0.020084942,-0.042458452,-0.021223273,0.083872825,0.023206178,0.015555771,-0.038997512,0.026732793,-0.031958293,-0.01595726,0.012902186,0.014682606,-0.048549585,0.058056455,1.129069e-32,-0.05609932,0.017191503,-0.02674038,0.022084324,0.04656717,-0.012522968,-0.10802037,-0.058208313,-0.080524296,-0.0010056569,0.012520497,0.01153163,0.007990951,-0.049946208,-0.016156403,0.06639788,-0.06342428,-0.061563216,0.05541316,0.0055107083,0.0034019265,-0.012961095,-0.057148784,0.0665182,-0.076148205,-0.0114803985,0.08722647,-0.08736281,0.0033664561,0.03402783,-0.030817512,-0.003497978,-0.075465664,-0.073412925,-0.024431488,0.017851438,-0.02601997,0.016047252,-0.031986095,0.04218399,-0.030715782,-0.069317855,-0.04168332,0.04596148,-0.01661608,0.06821049,0.08560519,0.0019557842,0.042474784,-0.05616063,-0.099819764,-0.030473148,0.011655725,0.094594866,0.031349566,0.033300146,-0.002218607,0.0009123674,0.066866204,-0.06350191,0.09708696,-0.10283321,-0.048087034,-0.02640983,-0.10626678,-0.08364158,0.026549177,-0.054649454,0.14043908,0.05840925,-0.09981039,0.034429222,0.058316544,0.008042679,0.04393797,0.017879227,-0.02904858,0.056965042,0.044041857,0.077521145,-0.011448505,0.016437406,0.013608035,0.08558163,0.044323463,-0.06674595,0.022498915,-0.09578566,-0.13625772,0.02324956,-0.09042038,0.061976787,0.07822683,0.013016311,0.015273368,-1.0914797e-32,0.11405879,0.009036523,0.053508654,0.028601581,0.025840089,-0.01856269,-0.012859708,-0.06484021,0.051164024,0.037138082,-0.093115225,-0.04631802,0.03613655,-0.02977977,0.0092911385,0.040554844,0.043327417,0.033251796,-0.02298461,-0.019712666,-0.0774404,0.048928656,0.022815166,-0.021619834,-0.021559598,-0.009309546,0.03193161,-0.007470186,-0.10461698,0.06780136,0.008445321,-0.063255735,-0.0034282967,-0.020797415,-0.02013116,0.045582302,-0.00071600405,0.0072143595,-0.094794616,0.0052551306,0.085235916,0.024346255,-0.050134193,0.0780992,0.018107614,0.037333727,0.016069269,-0.07011076,-0.050371297,-0.007857545,0.046594407,0.007932846,-0.061815236,0.010364952,0.08734419,-0.031145696,0.08755606,0.009249281,-0.059379864,0.037872076,0.020654475,0.08164158,-0.053453952,0.06932907,0.06959325,-0.012282506,-0.05804663,0.013004018,-0.05603948,0.123457804,-0.082012214,0.015617063,-0.015473867,0.037171368,0.041815232,0.05087239,0.012702512,0.020385046,0.0151133,0.04304212,0.030387484,-0.021354415,-0.06287612,-0.025290005,0.01112957,-0.015994756,0.009770698,0.077968284,-0.0064607686,0.025037514,0.041592732,0.04706431,0.009444062,-0.07384593,-0.015597649,-4.6153957e-08,-0.019097839,0.033004988,-0.09072101,-0.054945603,-0.051743787,-0.054314665,0.012095681,0.04951521,-0.078004055,0.109570645,-0.05331066,-0.03340707,-7.4937896e-05,0.07449999,-0.030493835,0.05725604,0.0316813,0.08812308,-0.019643947,-0.003677022,0.07673037,0.010778702,-0.003159328,0.028088704,-0.08590031,-0.0068642055,-0.039984614,-0.030207094,0.0225778,-0.12237206,0.003275279,0.0040454213,-0.021615556,0.02025159,-0.1017747,-0.05631059,-0.09591338,0.053804316,-0.041045647,0.034703147,-0.027711809,-0.061132394,-0.024628142,-0.017217081,-0.03477405,0.06116308,0.09613956,0.004537398,-0.024496518,0.11314602,-0.07940463,-0.05596737,0.01549509,-0.0358202,-0.005017542,-0.016774328,-0.03957826,0.040007796,0.08583946,-0.016531494,0.028928325,0.06931064,-0.037956644,-0.04024729} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:42.826602+00 2026-01-30 02:01:10.446893+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1691 google Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB 1 t 1694 Go Karts Mar Menor unknown Le pongo una estrella porque no se lo puede poner menos, los empleados le hablan mal a los corredores y encima te controlan el kart en pista como les dé la gana, si quieres pagar para que los empleados te griten y te controlen el kart como les dé la gana, este es tu sitio ideal. le pongo una estrella porque no se lo puede poner menos, los empleados le hablan mal a los corredores y encima te controlan el kart en pista como les dé la gana, si quieres pagar para que los empleados te griten y te controlen el kart como les dé la gana, este es tu sitio ideal. 1 2025-08-03 00:52:39.833374+00 es v5.1 V4.03 {} V- I3 CR-N {} {"O1.02": "encima te controlan el kart en pista como les dé la gana", "P1.02": "los empleados le hablan mal a los corredores", "V4.03": "Le pongo una estrella porque no se lo puede poner menos"} {-0.024941169,-0.023892842,-0.04391091,-0.060968973,-0.11083427,0.0060019386,0.045265965,-0.07509224,-0.0030637009,0.02176298,0.08602809,-0.017505007,-0.061617546,-0.07456733,-0.004575669,0.107587345,-0.024501007,0.027257651,0.03340274,-0.031571653,0.024830617,-0.046588175,-0.058732457,0.09904834,-0.11594765,0.022108663,-0.01902491,0.020323616,-0.030227989,-0.15614577,-0.05559742,-0.062354386,0.07825574,0.018146345,-0.07711028,0.028972996,0.0060302233,-0.08429542,-0.04726007,0.02291042,-0.009871763,-0.01013168,-0.0011964212,-0.061136574,-0.028770853,-0.0638491,-0.031216076,0.029050764,-0.041969813,-0.11948559,-0.009522468,-0.09151861,-0.015414727,-0.08153371,0.027401417,-0.0030121023,-0.017754393,0.050093576,0.076909,0.06308612,-0.008709719,0.11759186,-0.06268804,0.0049739457,-0.028306993,-0.084352486,0.0688844,-0.03584268,-0.14007412,0.1166787,0.1381881,-0.06913263,-0.046898555,-0.0061307494,-0.012460489,0.049988654,0.009161729,-0.02977262,0.01923376,0.004612563,-0.0025072691,0.0360429,-0.013162808,-0.016419526,-0.013001265,-0.08386035,-0.095159,0.010300278,0.09276281,0.0020520699,0.015193007,0.068531975,-0.0458096,0.05231371,0.012002385,0.09008519,0.05001532,-0.10025252,-0.012945656,-0.0028094444,0.0903537,0.016562391,-0.003862239,0.0027748314,0.020094618,-0.005924066,0.063443504,-0.052914403,-0.0036066559,0.05173501,-0.065445006,-0.016940039,-0.0502119,0.055862702,-0.086925685,-0.063244745,-0.036341686,-0.08092316,-0.03214454,-0.05089309,0.00088597805,-0.031366233,-0.045441665,-0.005356198,0.03917815,-0.11495147,-0.026409298,1.0496233e-32,0.014448346,-0.039953396,0.010293696,-0.025421755,0.05321353,0.013416758,-0.02822026,-0.059935607,-0.0031602143,-0.05189603,-0.05845529,0.0094962055,-0.07914942,0.016872667,0.04967364,0.0041918317,-0.020323563,-0.0024695566,0.074494846,0.056982134,-0.015071949,0.04716476,-0.05965084,-0.0025041222,-0.004038277,0.0520781,0.011128503,-0.060402986,-0.086568415,0.057161782,-0.004057262,-0.01962744,-0.028772796,0.018021956,-0.047533758,-0.0110878,0.030336725,0.02931051,-0.05723093,0.041155886,0.014645466,-0.033865273,-0.036520854,0.036620174,-0.034158394,0.018822603,0.042758256,0.042166755,-0.094112135,0.026781056,-0.091702014,-0.069073536,-0.003109076,-0.010332321,0.042303804,0.04409812,-0.072714336,0.07909995,0.0027342748,-0.033732943,0.07221409,-0.04231272,0.08056792,-0.005589313,0.0039379406,-0.02478203,0.03161539,0.014118685,0.11909855,0.042144302,-0.021142688,-0.05884815,-0.023129968,0.03312195,0.04618599,-0.018191244,0.015077167,0.004143843,-0.021345194,0.020717839,-0.03012154,-0.046129864,-0.003769788,-0.01504925,0.08698874,0.024585335,0.052578706,0.05557208,-0.019247493,0.108844,-0.054753788,0.072372325,0.05144398,-0.053373277,0.0578868,-1.2244457e-32,-0.007918146,-0.0030785396,0.054493863,0.049475186,-0.023901835,0.018292343,-0.031390466,-0.035339165,-0.017953724,0.03753275,-0.10420961,-0.07220618,0.07275129,-0.057567224,-0.0019365997,0.024761686,-0.0127969645,-0.016735528,-0.06526285,0.0061805495,-0.12692104,-0.018100357,0.0336771,0.05540923,-0.010313858,-0.042493712,-0.080192186,0.033952635,-0.11161388,0.007716108,0.05519835,-0.087222256,0.03636082,0.046483904,-0.050247107,0.0051246136,0.065664485,0.042584322,0.062255997,0.08243569,0.013759162,0.040604196,0.005246439,0.038220055,0.006576282,0.080420315,0.046912853,-0.105115876,-0.07326963,-0.037216686,0.06318451,0.041097585,-0.0046567284,-0.008821178,0.023845466,-0.07499746,0.04031574,-0.016146647,-0.02822031,0.038161784,-0.035745367,-0.0115513895,-0.10725303,0.013219223,0.07809751,0.01459535,0.018088158,0.039186478,0.078952245,0.01969603,-0.0006356004,0.009907068,-0.054522343,0.028150368,-0.0030153044,-0.016544735,-0.08572715,0.01763496,0.053183552,-0.0380209,0.036412828,-0.036779452,0.01605354,-0.06581746,0.012284867,-0.0076817013,-0.019685842,0.11847377,0.020725116,0.06109969,0.051947646,0.015769552,-0.015227347,-0.039373014,-0.0173126,-4.7287823e-08,0.033989318,0.014519824,-0.033708584,0.027204806,0.02655615,-0.0077075786,-0.042957176,-0.015665995,0.086609855,0.058326945,-0.030055203,-0.016343392,0.018397149,0.016047074,0.029527158,0.031103507,0.089350544,0.031143446,0.01316895,-0.019998292,0.07841749,0.00041080418,-0.1055296,0.018798728,0.041056518,0.022752127,-0.08151378,0.013786567,0.0101651065,0.07611926,0.0058236513,0.025639731,-0.0682649,-0.035308745,0.010100798,0.003896772,0.05915499,-0.045042466,0.0362426,-0.09508895,-0.007803948,-0.008174916,-0.06203932,-0.060950115,-0.07202421,0.01924487,0.008330533,-0.040598627,-0.034540217,0.03938248,-0.023427192,-0.014563955,0.10610912,0.015205326,0.01742375,-0.039214298,0.043251038,0.016163582,-0.012204716,-0.025234161,0.03637798,0.099760674,0.02698372,-0.0504267} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:46.721161+00 2026-01-30 02:01:10.338512+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1697 google Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB 1 t 1700 Go Karts Mar Menor unknown Muy buen lugar para pasar un buen rato, precios razonables, el staff muy majo, te atienden y ayudan. Circuito en muy buenas condiciones y los karts también. Recomendable 100%. muy buen lugar para pasar un buen rato, precios razonables, el staff muy majo, te atienden y ayudan. circuito en muy buenas condiciones y los karts también. recomendable 100%. 5 2025-07-04 00:52:39.833374+00 es v5.1 P1.01 {P3.01} V+ I3 CR-N {} {"E1.04": "Muy buen lugar para pasar un buen rato", "O1.03": "Circuito en muy buenas condiciones y los karts también", "P1.01": "el staff muy majo, te atienden y ayudan", "V1.02": "precios razonables"} {-0.09453945,-0.012369893,-0.019212864,-0.064080015,-0.091401204,0.024570014,0.06125639,0.040823605,-0.030655235,-0.011647626,0.04109903,0.026459813,-0.03676789,0.05224629,0.045594946,0.036286075,-0.0045978273,0.05455639,0.019418668,-0.079275616,0.044704325,-0.03215907,-0.048923045,0.05161877,-0.061324574,-0.06412969,0.0478288,0.046325933,-0.04598858,-0.09143708,-0.02412824,0.06841313,0.03131047,-0.0728334,-0.08005423,0.0010549959,-0.028723726,-0.063661665,-0.0067999554,0.052129056,-0.06452812,-0.038811345,-0.03739605,-0.019579155,0.014650826,-0.09595518,0.015716923,-0.011681822,0.008972704,-0.01622955,0.029897312,-0.020690078,0.050999958,-0.026109772,-0.011730019,-0.008654022,-0.0919234,0.023818217,0.10022782,0.023633303,0.032469723,0.04094961,-0.064886875,0.019357257,-0.032292917,-0.0033886489,-0.01883049,0.082800984,-0.05984983,0.00865368,0.0857918,-0.1275381,0.052763116,0.025382439,0.041647248,0.021842165,0.012024122,-0.004168891,-0.055750847,-0.083030924,-0.009990444,-0.031192489,-0.010511466,-0.078074805,0.016426994,-0.039984602,-0.03321416,0.0490575,0.011229353,-0.017403856,0.051001888,0.118921876,-0.06949628,-0.035011392,0.049462985,0.050368205,0.025981203,-0.07322956,-0.046642914,0.058088034,0.035099555,0.019770676,0.08761484,0.028358225,-0.049982093,-0.037676297,0.03611924,-0.016018935,0.019362502,-0.0003587087,-0.046810053,0.035295617,-0.09493064,-0.04584995,-0.013459193,-0.045104656,-0.03854955,0.009077022,-0.00732024,-0.032788455,0.02386408,0.036924448,-0.05388032,0.026245568,0.024458434,-0.04873778,0.06316293,1.2918448e-32,-0.06545776,0.009415576,-0.07333341,0.026160179,0.03003621,-0.04856825,-0.023205943,-0.051960442,-0.034759283,-0.01367417,-0.02643013,0.12288613,-0.069208175,0.036094055,0.11557387,-0.06271369,0.0008349852,-0.058030494,0.08236314,-0.04219306,-0.05494824,-0.037837077,-0.014766671,0.07516838,0.036486078,0.0163354,0.03074173,-0.015422968,-0.040422034,0.065869905,-0.016850127,0.008047088,-0.02235502,-0.064749934,-0.16502018,0.010497399,-0.094628714,0.005480153,-0.0066219014,-0.042570297,0.011278579,0.015410866,-0.03249135,0.07150512,-0.044145744,0.0057810075,0.011391463,0.029066715,0.057364393,0.047846157,-0.12472289,-0.06072367,-0.04091926,0.020248499,0.016749091,-0.028787438,0.029101044,0.06356866,0.007870828,-0.04101261,0.01615472,0.030063385,-0.027434934,-0.074849755,-0.079073116,0.018235097,0.033535924,-0.053285323,0.08187237,-0.04139587,-0.10865666,-0.00765482,-0.01443278,-0.0028518403,0.024547348,0.02913071,0.03465161,0.065936394,-0.000559558,0.026908275,-0.08207077,0.033092692,0.010547294,0.07988071,0.11896732,0.048594,0.07318378,0.009476759,-0.027964918,0.1290605,0.006929155,0.09295471,0.07814191,0.04235152,0.007703366,-1.1709064e-32,0.011171564,0.055020746,0.06387777,0.16498007,-0.0022856926,0.030387513,-0.015726492,-0.048084047,0.04260958,0.0091336025,-0.08964497,-0.049940024,0.016468687,-0.06858852,-0.017672192,0.076640904,0.010764279,-0.030660864,-0.03593253,-0.07748925,0.037124686,0.080757804,-0.008865324,-0.052338872,-0.0140977325,-0.032265592,-0.07244925,0.009445778,-0.11864289,0.031992346,-0.010448733,-0.09529782,0.017643895,0.07623313,-0.058583736,-0.017341327,0.11034826,0.12745906,-0.025832597,0.057328295,0.09935263,0.030762576,-0.056893446,0.020091206,-0.07976677,-0.039198298,0.07951008,-0.10856819,-0.011081748,-0.06077221,0.072377615,0.013466655,-0.0014625385,-0.059449565,-0.011228532,-0.028775841,-0.010696723,-0.0526792,-0.05186503,-0.07106938,0.031952437,-0.00033801043,0.024409901,-0.014203056,0.09132601,-0.026866542,0.009553237,0.038556527,0.0335972,-0.032445576,0.09298532,0.04586239,0.029583935,0.041158788,-0.025415711,-0.021057606,-0.037389643,-0.014808667,-0.00270529,0.013762318,0.016297543,-0.01179554,-0.051509943,-0.023917811,0.0012590887,0.024449669,0.05769333,0.00553229,0.08227333,-0.0028372044,0.06728353,0.05923879,0.025667336,-0.001728592,0.029254636,-4.8968122e-08,-0.028442796,-0.043573912,-0.053439658,0.019459132,0.01117512,-0.03523186,0.0003202849,0.01545354,-0.035220724,0.04188582,0.0059220945,-0.032510463,-0.027897617,0.065341465,-0.033589706,0.07047178,0.025277214,0.15128303,-0.029633796,0.03076219,0.056466147,0.05055285,0.012926507,0.08000672,0.015242698,-0.0032321366,-0.10025807,0.030543344,0.04489069,0.021016803,-0.008003944,-0.045245748,0.0025085702,-0.0174435,-0.019004347,-0.021099785,-0.0542047,-0.0027357223,-0.021014877,0.034580313,0.021026675,-0.10782268,-0.069359586,0.05656916,-0.040491454,-0.083823025,-0.0522115,0.0037032538,-0.01815957,-0.0250941,-0.014350622,-0.022732744,0.03962537,0.0010889886,0.010497504,-0.0012634225,0.017347211,-0.008684024,-0.0021582597,-0.07138761,-0.014378983,0.06760671,0.013728683,-0.02894628} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:58.439899+00 2026-01-30 02:01:10.358918+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1699 google Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB 1 t 1702 Go Karts Mar Menor unknown Falta más explicación del manejo por parte de los instructores a los niños y más zonas sombreada en la terraza para el público. falta más explicación del manejo por parte de los instructores a los niños y más zonas sombreada en la terraza para el público. 3 2025-10-02 00:52:39.833374+00 es v5.1 P2.01 {P4.01} V- I2 CR-N {} {"E1.03": "más zonas sombreada en la terraza para el público", "P2.01": "Falta más explicación del manejo por parte de los instructores a los niños"} {0.06252552,0.08273615,0.0031412982,0.013869353,0.031469904,0.0032809896,-0.026510514,-0.042410642,-0.035849992,0.05340216,0.10032293,-0.033956733,-0.030473402,0.021203967,0.06741353,-0.0488694,-0.05730114,0.022924831,0.038652364,-0.0434094,0.09165865,0.043068293,-0.06454833,0.08552224,-0.087435015,-0.012273282,-0.032402102,0.026970482,-0.0481251,-0.021854337,-0.06349572,0.099583864,0.115720145,-0.0052033663,-0.06794191,0.029806798,0.09931419,-0.060057174,-0.066315465,0.073639706,-0.09251367,0.006805903,-0.0009860977,-0.05153408,-0.04672592,-0.06461821,0.002890605,-0.016016342,0.024140913,0.0037800153,-0.023830827,-0.08796928,-0.041182473,-0.015908781,-0.063849576,0.0150264185,-0.0397278,-0.029833153,0.027247814,0.09101323,-0.046660125,0.032247774,-0.13925141,0.011374994,0.06904099,-0.040504415,-0.00066606374,0.02594754,0.023280598,-0.010746377,0.08563287,-0.006880836,0.07024692,0.017096916,-0.0068681506,0.016706914,-0.05879262,0.0106617585,-0.026449515,-0.08402137,0.0220826,-0.0035738854,0.0139366025,-0.073644005,-0.0014043159,0.019130638,-0.028936444,0.066525646,0.056236994,0.014540416,0.015591533,0.032181326,-0.06545055,0.05245565,-0.0523767,0.06950423,0.00819338,-0.10409668,0.035349693,-0.0007935926,0.0152069,-0.009933746,0.09391666,0.04931278,-0.049767427,0.009160495,0.0006538603,-0.08692454,0.0044531575,0.061717715,-0.07020958,-0.038243957,-0.030767014,0.010391141,-0.057232242,-0.00739289,0.033790763,-0.0501816,-0.0763925,-0.041274138,0.041766964,0.00022669109,0.0025506222,-0.018709091,0.050272718,-0.04857265,0.0018827097,6.045264e-33,0.025433604,-0.009860764,0.012667183,0.14148974,0.05344567,0.010650097,0.01902057,-0.0029215717,0.010311273,-0.020036798,-0.006241203,0.04011042,0.0029978657,0.024410272,0.09017512,0.038081598,-0.044418804,0.007821051,0.038482476,0.080018654,-0.028691763,-0.052741434,-0.0027783697,-0.017294988,0.031186614,0.07074626,0.026006188,-0.06665674,-0.009298377,0.058495324,0.09160821,-0.022429168,-0.037537172,0.00026727712,0.08206175,0.011434087,0.06025776,0.062781624,-0.0019094269,0.020707123,0.014539745,-0.035865847,0.0070646633,0.059422836,0.027092166,0.012381571,0.06699294,0.0423806,0.050478116,0.06545924,-0.08108596,-0.060937863,-0.11371208,-0.10337047,0.025302425,0.12981614,0.0107288705,0.06166236,-0.088728294,-0.07017419,0.016200505,0.02824685,0.043305967,-0.02029629,0.024414964,-0.102466576,0.035654925,0.013196756,0.12717459,-0.062243994,-0.06757492,-0.058704365,-0.055931874,0.019075828,0.026532378,-0.026293568,0.050292104,0.0066615003,0.07986767,0.023518005,-0.072354704,-0.027076855,0.003282189,0.018512012,0.030518202,-0.013762566,0.045100268,0.08917377,0.009637389,0.07434402,0.007882595,0.08794047,-0.004933946,-0.039961666,0.062346242,-9.185757e-33,-0.016063074,0.040539168,-0.028412234,0.02473575,-0.016911713,-0.025883276,-0.014987241,0.013271672,-0.037641756,-0.04201424,-0.14489174,-0.08215844,0.06953573,-0.036645226,-0.014572466,0.03347161,-0.044544615,-0.037274163,-0.07509309,-0.005538823,-0.08776183,0.008734279,0.004871922,-0.035311446,-0.033967998,-0.1113256,-0.06732427,0.0298888,-0.10127056,0.03839538,0.040120896,-0.054304086,0.013173946,0.030809775,-0.06743271,0.083798006,0.04308257,0.025486227,-0.0045705484,0.087212965,0.036873978,0.024049774,-0.0023420854,-0.058658376,0.015489094,0.015329058,0.044568617,-0.08446476,-0.015773302,-0.0005581531,0.080179155,-0.05187346,-0.09444553,-0.11777798,0.095065214,-0.03233459,0.028282093,-0.09740429,-0.12438097,0.021273466,0.07870033,-0.004052087,-0.06467386,0.03074327,0.00799304,-0.05735001,-0.04413933,0.030508338,0.03204201,0.072194025,0.05421169,0.008542845,-0.05380472,-0.02338649,-0.088303015,-0.006910066,-0.057859205,0.035321113,-0.01764812,-0.009834091,-0.010987929,-0.018594597,-0.027860885,-0.048745483,0.024889518,-0.027910318,0.03176746,0.0450033,-0.046996087,0.035232943,0.033497747,0.04072462,-0.069716185,-0.0435518,-0.037424084,-4.008915e-08,0.0013342651,0.018135933,-0.027904913,0.0024917582,0.034952413,0.007952196,0.02835912,-0.0065533547,0.029096752,0.10258135,-0.04151429,0.009763208,0.009967725,0.06346535,0.027717855,0.019886522,0.06593231,0.04733069,-0.07942405,-0.021558806,0.031064142,-0.010039985,-0.060551442,0.04843804,0.0002679471,-0.04208033,-0.06329937,0.048190173,-0.0153528815,-0.0074495366,-0.048935544,-0.015657354,-0.08589517,-0.092305794,-0.022754174,-0.026866678,-0.039156925,0.0030766628,0.02023033,-0.031018237,0.044429317,-0.013214497,-0.058618553,0.023490444,0.013450545,-0.056035012,-0.04416864,-0.06260751,-0.04031754,0.03290604,-0.070326604,-0.08359935,0.03525304,-0.0012329287,0.07285157,0.031954866,-0.014897885,-0.0076606064,-0.008639819,-0.012097239,-0.042942982,0.10148988,-0.05674335,-0.021175064} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:12.37641+00 2026-01-30 02:01:10.365098+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1693 google ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE 1 t 1696 Go Karts Mar Menor unknown Llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiempo que siempre hace en la zona, lo cuidado que está todo...\n\nSin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, restaurante, es un complejo muy completo tanto para si vas a rodar, como si vas a ver a los tuyos rodar!!\n\n¡Parada obligatoria sin duda! llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiempo que siempre hace en la zona, lo cuidado que está todo... sin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, restaurante, es un complejo muy completo tanto para si vas a rodar, como si vas a ver a los tuyos rodar!! ¡parada obligatoria sin duda! 5 2025-03-06 01:52:39.833374+00 es v5.1 R3.04 {P1.01,E1.01} V+ I3 CR-N {} {"O1.02": "Sin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, res", "R3.04": "Llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiem", "V4.03": "¡Parada obligatoria sin duda!"} {-0.07642152,0.052263618,-0.0006477111,-0.09910049,-0.08168757,0.0009384042,0.060175423,0.050361596,-0.018473284,0.017693482,0.09516465,-0.04716634,0.016887682,0.034871746,0.06872924,0.030080102,-0.028105205,0.051550187,0.004735829,0.032214466,0.11428029,0.041068353,-0.07769473,0.07969478,-0.08872663,0.05497071,0.031821236,-0.017892683,-0.070023,-0.09515004,-0.07924692,0.06320013,0.093315996,-0.008066231,-0.072131634,-0.03987162,-0.010464693,-0.08163102,-0.041780412,0.07220077,-0.05045811,0.03809139,0.012398272,-0.0606777,0.0026461086,-0.056514613,0.039443363,0.024407886,0.022638882,-0.08787963,-0.056673836,-0.011589295,0.041634787,-0.016446568,-0.036162477,0.016177984,-0.014142681,0.012550747,0.09307064,0.08582099,0.025683383,0.020355375,-0.02075904,0.056813214,0.04539002,-0.067806326,0.039050806,0.025081059,-0.09249493,0.021739496,0.046398092,-0.041917726,0.016787997,-0.052859932,-0.033474647,0.06070772,0.030573186,-0.008844448,-0.03503057,-0.061097354,-0.0032015042,-0.09945645,-0.073216856,-0.042905916,0.063517205,0.011199544,-0.0699916,-0.025813738,0.02437557,-0.020747736,-0.018413717,0.03906765,-0.06886486,-0.04935174,-0.06868664,-0.012820933,0.028441139,-0.11451192,-0.03883997,0.055121053,0.0701993,0.0179366,0.050414063,-0.015386588,-0.011234328,0.05704858,0.08417954,0.025841646,0.027353369,0.029423168,-0.002091146,0.026607295,-0.03420269,-0.04742323,-0.024873674,-0.02721599,0.0091793705,-0.0035281556,0.015837802,-0.06949959,-0.042152643,-0.0681462,-0.06847893,0.0066508534,0.0036942384,-0.06497558,0.067980886,1.2422028e-32,-0.0369715,0.016551338,-0.017075025,-0.013392466,0.040397342,0.07378109,-0.032679934,0.039312746,-0.025954176,-0.029687088,-0.0073327282,0.029915033,-0.02298876,0.04680584,0.06681255,-0.036514435,-0.0126022715,-0.042953398,0.09666592,0.011734318,0.037612893,-0.03677334,0.00835829,0.05060895,-0.0258911,0.034344796,0.02212764,-0.072443865,-0.103394374,0.03033003,0.012189801,0.025835762,0.05038366,-0.0071834824,-0.013055524,-0.019588828,0.028858373,-0.00029203118,-0.010432714,-0.1093559,-0.010562057,-0.01054892,-0.09356434,0.10411474,-0.032000028,0.0013251341,0.04453889,0.007670334,0.073018685,0.045688014,-0.101292096,-0.06419622,-0.04294872,-0.03258115,0.016694741,0.017128285,-0.03596947,0.058963254,0.049768902,-0.07495533,-0.033295266,0.072299056,-0.010536691,-0.0500639,-0.062371016,0.036817443,0.041578226,-0.05047741,0.120755486,-0.05512153,-0.07023383,-0.006298871,-0.094707936,0.029182296,0.0035334304,0.033902533,-0.054504283,0.0007174503,0.0911021,0.009500474,-0.049464345,-0.0741341,0.07590869,0.04407704,0.09482816,0.06758372,0.10475938,-0.024544356,-0.008400288,0.10444093,0.036281645,0.074290305,0.09694175,-0.025393944,0.11034453,-1.3308838e-32,-0.017017862,0.056132223,0.018936252,-0.018269202,-0.0002090375,-0.06124736,-0.06421307,-0.07673555,-0.043522276,-0.09732158,-0.059562005,-0.067509495,0.048388373,-0.060618818,-0.034073457,0.019533627,0.016968904,-0.083348945,-0.08962422,-0.019613918,0.009472286,0.0070424564,0.048508644,-0.009457261,-0.058231447,-0.032969613,-0.038771424,0.012754684,-0.029994652,-0.009228874,0.035905432,0.059415344,0.025456838,0.003423588,-0.025931697,0.013067193,0.05522752,0.03710239,0.0046146265,0.022594523,0.021321097,0.005572111,-0.027213745,0.006757766,-0.09470421,0.035908375,0.09231965,-0.10637349,-0.060948383,-0.023415938,0.024505675,-0.04774891,-0.03205285,-0.07038777,0.06646618,-0.031416323,0.008156838,-0.07555795,-0.037313353,-0.03448209,0.057318732,-0.04903595,-0.004719055,-0.056468233,0.08823184,0.023882095,0.10438158,0.028243158,0.07400273,0.01605787,0.10746086,0.050381243,-0.018194983,-0.0009755631,-0.08517606,-0.01814167,-0.073041886,-0.05724936,-0.06147828,-0.052096263,0.03138662,-0.029064318,-0.0038307393,-0.080771826,-0.011070982,-0.08841331,0.03929961,0.040625725,-0.031178977,0.057307884,-0.05609897,0.06317127,-0.016265983,-0.030333066,0.012999102,-5.82476e-08,-0.02985948,-0.011005082,-0.061766196,-0.014037206,0.058354322,-0.090535305,-0.013169518,-0.030242076,0.01341624,-0.021695856,0.058791142,0.006630717,0.015679983,0.07232681,0.07628141,0.066040404,0.056174584,0.024764407,-0.011455175,0.03452349,0.08296011,-0.03723701,-0.017921424,-0.014106523,0.07996128,-0.037233785,-0.07043394,0.06815152,0.038539693,-0.041902587,-0.006673758,-0.024024278,0.011658373,-0.0052154604,0.017003112,0.0066754515,0.00541189,-0.036449872,0.007044743,-0.06711922,-0.0037697742,-0.049059846,-0.063150406,0.06227504,-0.04243405,-0.057038248,0.018401448,0.03750017,-0.015366135,0.02759724,-0.0960019,-0.013673768,0.050370745,0.00830757,0.06725008,-0.009758059,0.05850414,0.018564034,-0.026988242,-0.00649961,0.035122447,0.07345459,-0.03964303,-0.064395405} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:18.790239+00 2026-01-30 02:01:10.346165+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1694 google ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB 1 t 1697 Go Karts Mar Menor unknown Gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos.\nTienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final te luce 🫶🏼 gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos. tienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final te luce 🫶🏼 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {E1.04} V+ I3 CR-N {} {"O1.05": "Gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos.", "V1.01": "Tienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final "} {-0.014795412,0.00908598,0.0026656063,0.005229854,-0.06320759,-0.081180304,0.065356195,0.029902333,0.034863036,-0.026744729,0.094372615,-0.025623033,-0.03357252,0.007420214,0.062044293,0.040234473,-0.06393028,0.026206467,0.027873423,0.07240204,0.064865716,-0.029693626,-0.11421308,0.03588681,-0.07990778,0.037033528,0.0034560105,0.044881552,-0.023113433,-0.08002694,0.036398277,-0.029784257,0.11202342,-0.0031963838,-0.0028337142,-0.021796672,0.043797966,-0.06747793,-0.08510027,0.06897012,-0.06925017,-0.029985271,0.0026642883,-0.05894039,-0.037426338,-0.0998099,0.012004779,0.058179565,0.007462799,-0.008840972,-0.019479511,0.029764775,-0.07700618,0.031741872,-0.043202482,0.040110894,-0.07809325,-0.029031783,-0.000725195,0.03924025,-0.0074285916,0.07879299,-0.115536764,0.0142630655,0.063331686,-0.024004534,0.054259926,-0.011860923,-0.08244968,0.06535907,0.027611373,-0.04623734,-0.0010820561,-0.016321024,-0.0012737009,0.053468097,-0.008349723,-0.0646015,-0.03284739,0.015140389,0.03547921,-0.049656518,-0.046810903,-0.055924885,0.0393299,-0.010883323,-0.0028497572,-0.0073080384,0.053352628,0.045036674,-0.00038633976,0.092143245,-0.060403608,0.014979687,0.028690018,0.0654876,-0.005788859,-0.05748052,-0.01039865,0.031737767,0.07691265,0.056203805,0.016797522,-0.026347665,-0.028363872,0.0146716535,0.0031649375,-0.008221604,0.026353313,0.0104807895,-0.04202773,-0.065483026,-0.034466397,-0.07153298,-0.105166495,0.018868787,-0.058652654,-0.041665964,0.02615475,-0.12030458,0.037831087,0.033400387,-0.07201234,-0.011397954,0.04635198,-0.072753586,0.029465057,1.503069e-32,-0.007871039,-0.0077794734,-0.00050577696,0.060660694,-0.04979293,0.08990558,-0.037762832,-0.051051818,-0.012314945,0.015004478,-0.024083978,0.047052443,0.004929341,0.050008252,0.0599964,-0.014001896,0.070508145,0.013929806,0.060043935,0.08396632,-0.040230487,-0.011759404,0.021882027,-0.018078603,-0.018470876,0.038113724,-0.0089286305,-0.07214108,-0.07204841,0.058936484,0.008617568,-0.06350582,-0.016856998,-0.0044831033,-0.041907627,-0.056605194,0.030184073,0.06432814,0.044140853,-0.00074943353,0.018548556,0.034644138,0.04653038,0.05096625,0.05620141,-0.009057787,0.059150755,0.06332354,-0.018747268,0.05818065,-0.049588103,-0.084985286,-0.07149856,-0.071532264,0.017941792,-0.029668065,-0.103639714,0.028615585,-0.0071612815,-0.023878897,0.022664499,0.0020876396,0.010986427,-0.053158835,-0.051920008,-0.030963127,0.023874259,-0.023394523,0.08238235,0.08715079,-0.079775155,0.013622617,0.043043684,-0.017668473,0.03879311,-0.05065046,0.074858375,0.015937705,0.02829218,-0.009901735,-0.06938823,-0.045812033,0.05850998,0.10004363,0.054024454,0.04368809,0.042763263,0.06747198,-0.07372254,0.118730806,-0.0033598403,0.108985715,0.039273754,-0.048313748,0.04923719,-1.367317e-32,0.09315081,-0.019491607,0.009622432,-0.03928876,-0.04065574,0.014214203,0.009934538,0.0005745022,-0.0068588033,-0.050696064,-0.018807296,-0.06785045,0.069068566,-0.029713463,-0.03546037,0.045729786,0.029512744,-0.070650406,-0.021953898,-0.03556807,-0.026855132,0.06646284,0.05277738,0.016774993,0.004059779,-0.113699645,0.036022898,-0.031374115,-0.112018764,0.030794548,0.042934917,-0.119470336,0.035003424,0.026573183,-0.061229195,0.07595546,0.05898465,-0.069957584,-0.025615778,0.060529154,-0.024853272,-0.0037297346,-0.080123715,-0.03431093,-0.0103985695,0.011474511,-0.006368409,-0.13476023,-0.07921159,-0.06952418,0.060702678,-0.010857061,-0.06832425,-0.031113943,0.049574267,-0.044238534,-0.06022846,-0.09160844,-0.07996798,-0.037566714,0.026066672,0.023781579,0.042782333,-0.022773268,0.0844903,0.048936583,0.04743486,0.017955013,-0.029747972,0.086524405,0.15089092,0.050214455,-0.101932175,0.021688169,-0.001092979,-0.015632315,-0.052934177,0.030000364,0.014878427,0.04178329,-0.07116779,-0.002284662,-0.02448585,-0.01136421,-0.011698296,0.016476346,0.033050206,0.11400075,-0.027579041,0.05950148,0.015610644,0.051760837,0.0091720475,-0.00038057633,0.02229543,-4.8207408e-08,-0.04943051,-0.063683815,-0.059140794,0.012136801,-0.016512033,0.020164967,0.061666347,-0.005252266,0.009407608,0.0717848,0.035229262,0.022076176,0.016744146,0.023857573,0.018690454,0.023139698,0.07911048,0.05470971,-0.061975777,-0.10979807,0.072796665,0.04023516,-0.08339806,-0.012198277,0.06628272,0.018122595,-0.0429943,-0.01559221,0.0051067146,0.02557129,0.058162063,-0.107081525,-0.028143987,-0.091165096,-0.010261666,-0.06000036,0.0077670254,-0.008731535,-0.0320728,-0.04855206,0.035888754,0.04123425,-0.048850123,-0.0069892895,-0.013857705,-0.05897073,0.02601129,-0.01737445,-0.014506968,0.037320573,-0.011329807,-0.00030901108,0.041704096,0.007756664,0.01418083,-0.045623373,-0.002429613,0.028840438,-0.055234652,0.009449379,0.1016633,0.13465945,-0.08350161,-0.02598791} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:25.908932+00 2026-01-30 02:01:10.348937+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1695 google ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB 1 t 1698 Go Karts Mar Menor unknown Buen sitio para ir con los hijos y pasar una buena tarde. La pista es grande y amplia, es muy divertida. Tiene cafetería. Al finalizar puedes comprar fotos que te hacen. buen sitio para ir con los hijos y pasar una buena tarde. la pista es grande y amplia, es muy divertida. tiene cafetería. al finalizar puedes comprar fotos que te hacen. 4 2021-01-31 01:52:39.833374+00 es v5.1 A3.01 {O4.04} V+ I2 CR-N {} {"A3.01": "Buen sitio para ir con los hijos y pasar una buena tarde.", "O1.02": "La pista es grande y amplia, es muy divertida.", "O3.02": "Tiene cafetería."} {0.007126111,0.044914406,0.032728996,-0.06531775,-0.037592318,-0.010154495,0.029491657,0.020383736,-0.017738476,0.0019724816,0.093498945,-0.0061456705,0.013023773,0.0008346094,0.05993327,-0.0040603755,-0.001933003,0.021609476,0.00925692,0.01226723,0.032407004,-0.013884307,-0.07344456,0.076351084,-0.057575047,-0.011758717,0.053486206,-0.033432826,-0.049104974,-0.1363704,-0.01691404,0.018974846,0.043805547,0.026835296,0.0016864447,0.023598166,0.0771595,-0.08063792,-0.024981933,0.049382046,-0.09911645,-0.02489135,0.018598007,-0.007021194,-0.0072688675,-0.046015397,-0.016223174,-0.007738411,0.056094382,-0.042334925,-0.09244604,-0.0028331967,0.011817231,0.025685294,-0.03972359,0.0019723817,-0.03874178,-0.044828095,0.08342394,0.06481374,-0.029498972,0.004843411,-0.06261479,-0.014340656,0.036405403,-0.05777124,0.024405617,0.001006212,-0.027552374,0.005377281,0.093559176,-0.02888569,0.0069615752,-0.06971796,-0.052324742,-0.009579262,0.046397243,-0.016194468,-0.10533443,-0.0046168272,0.027857233,-0.023446789,0.014264534,-0.057088785,0.012188711,0.036305625,-0.10943388,0.05919468,-0.014887003,-0.022942135,-0.051540732,0.06326909,-0.09128195,-0.04774437,-0.009606443,0.0022437924,-0.039169393,-0.14667232,0.051956456,0.061765596,0.07857034,0.03785997,0.06898544,0.0009631578,-0.024713274,-0.033932853,0.041778803,0.023770668,-0.014104988,-0.031354867,0.009179017,0.0071315556,-0.030559598,-0.019588627,-0.14454311,0.022129692,0.006009257,-0.12218031,-0.045098007,-0.14799047,0.043056935,0.077226,-0.061341733,-0.0154997995,-0.0050580427,-0.077417485,0.0059252367,1.17295896e-32,-0.019830124,-0.007828533,-0.0058033057,0.030950613,0.031981125,0.022775607,0.01586167,-0.030212482,-0.041559268,-0.03496163,-0.011154877,0.028701425,0.01988209,-0.019573012,0.0098531395,0.0006650957,0.03590837,0.056337222,-0.019189369,0.05885683,-0.045111377,-0.05774023,-0.0063122036,0.038105264,-0.04163208,0.059218537,-0.0022593602,-0.035165057,-0.057881836,0.06011072,0.004862889,-0.0028239943,0.036291093,0.053851005,0.013359628,-0.088324025,0.016304083,0.055778857,-0.0133584095,-0.0029868316,0.02658747,0.085122146,-0.040218964,0.08766972,0.007160591,0.028422376,0.07223898,0.0505507,0.031681612,0.03545055,-0.01747875,-0.065374225,-0.058269743,-0.0572662,-0.0147566,0.0006659039,-0.03361377,0.013033988,0.027182145,-0.022159146,0.060560577,0.075039655,-0.015893066,-0.024731196,-0.030868554,-0.011911737,0.04154086,0.033300687,0.15961187,0.06613757,-0.046315577,-0.028653521,-0.004245624,0.018289087,0.055800196,0.026363788,-0.03784141,0.015364537,-0.003364227,0.05574231,-6.9431253e-06,-0.01836869,0.05412183,0.0018337156,0.025083637,0.05674394,0.09070403,0.052333858,-0.11755582,0.1290545,-0.038558032,0.103944875,0.058064852,-0.03769563,0.041223045,-1.0028081e-32,0.08588739,0.020899627,-0.041748393,-0.0022981572,-0.039923035,0.0056924755,0.015996063,-0.023389094,-0.069006875,-0.04745808,-0.032264885,-0.06968512,0.072823614,-0.043305248,-0.04678439,0.11080574,0.075524494,-0.11835052,-0.11588039,-0.0055711083,-0.09390759,0.03895699,0.05887862,0.009034069,-0.048355486,-0.015649552,0.0134785455,0.008599971,-0.086445704,0.029158162,-0.037833974,-0.104356654,0.011597638,0.028426554,-0.027508046,0.051604103,0.02397668,0.00017974034,0.020994997,0.03517089,-0.016853433,0.007468657,-0.022658624,0.018354973,-0.04249508,0.03689248,-0.016352663,-0.14353476,-0.09972376,-0.043079045,0.011220528,-0.06804502,-0.022651386,-0.05120482,0.025467893,-0.0831071,-0.043567855,-0.021439336,-0.06288372,-0.016342727,0.07593344,-0.04605273,-0.03920686,0.007767541,0.10203674,-0.019371074,-0.014162762,-0.040986694,0.025114456,0.09128722,0.09542702,0.055357154,0.021032872,0.06317385,-0.02276573,0.031175021,-0.016508162,0.024817836,0.010230682,0.03741351,-0.016232476,-0.015011288,-0.005475592,-0.031826735,0.047005173,0.00758693,-0.03648141,0.04268795,0.0017063703,0.00040152748,0.0074246665,0.009143917,-0.036612995,-0.036339566,0.032559533,-4.3363112e-08,0.029168082,-0.08201849,-0.069404684,0.023576507,0.009578233,-0.05083322,-0.013171881,0.0735786,0.03553052,0.10753915,-0.020297552,-0.017469365,0.015489943,0.03391397,0.005886528,0.0604238,0.10788999,0.105203,-0.007041533,-0.03441734,0.054503668,-0.038192753,-0.0023969407,0.035716,-0.003252149,0.0574608,-0.0573052,0.005681784,0.0134833325,-0.057383377,0.04407892,-0.043600786,-0.0279889,-0.08349955,-0.004149081,-0.01694029,-0.011662951,0.0071335607,0.005839611,0.004121258,0.03707224,-0.0059981467,-0.11097883,0.004736855,-0.04958041,-0.022963075,0.08649441,-0.012894768,-0.041789148,0.03565395,-0.029402345,-0.05591857,0.11496746,0.026945297,0.036985535,-0.022119533,0.07785483,-0.017371241,0.015454978,0.027376654,0.06832772,0.20260485,-0.07018067,-0.05227775} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:36.947784+00 2026-01-30 02:01:10.352688+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1698 google ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE 1 t 1701 Go Karts Mar Menor unknown Como siempre muy recomendable, el circuito y no los kart en perfecto estado. Grandes profesionales como siempre muy recomendable, el circuito y no los kart en perfecto estado. grandes profesionales 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.04 {O2.05} V+ I3 CR-N {} {"O1.04": "Como siempre muy recomendable, el circuito y no los kart en perfecto estado.", "P2.02": "Grandes profesionales"} {-0.011425261,0.013729181,-0.0076715457,-0.023512924,-0.08841509,0.034655064,-0.027261753,0.053042833,-0.03491208,0.02502046,0.00677525,0.033520054,-0.023857275,-0.012460231,0.04776092,0.01995309,0.018848477,0.0017526742,0.07796489,-0.11316867,0.07111915,-0.043399177,-0.04382195,0.018431854,-0.08608042,-0.007587343,0.028469343,0.026112476,-0.04460142,-0.14326288,-0.09237868,0.07826416,0.07485915,-0.01421161,-0.122869246,-0.033781733,0.025882322,-0.02948466,-0.042033244,-0.010921748,-0.10766618,-0.062487956,-0.0012185562,-0.039277017,0.006756478,-0.11503001,-0.015308949,-0.000849312,0.019551657,-0.04753814,-0.02945802,-0.06756888,0.0457187,0.005173157,0.010870482,0.00047696574,-0.1042174,0.06036828,0.121261224,0.04181288,0.030079534,0.022661485,-0.06721282,0.02994198,-0.019111339,-0.05512822,0.045207538,0.07649543,-0.029218514,0.028109698,0.021317707,-0.09884652,0.024697272,0.012616045,0.05777865,0.017478775,0.0092253955,-0.05353537,-0.06565417,0.03342736,0.030579694,0.026277078,-0.06386696,-0.07688617,0.04646084,-0.01868316,-0.01770492,-0.011066442,0.0012736025,-0.08827594,0.020411212,0.07802415,-0.04518323,-0.02995415,0.052033868,0.0052178954,0.029824482,-0.09170636,0.033626776,0.026726654,0.07445584,0.011549585,0.04443039,-0.00505219,-0.043998133,0.01498397,0.03254106,0.027858134,0.055649854,-0.03342549,-0.055641208,0.023806604,-0.05818962,-0.017942484,0.0145674,-0.03584335,-0.048215676,0.011383688,0.03248192,-0.008847528,7.8206656e-05,-0.018156556,-0.052702457,0.011086836,0.039925896,-0.0043917596,0.045545366,5.927538e-33,-0.09613617,0.06788291,-0.04685033,0.007980412,0.031231957,-0.03778392,-0.06069592,-0.034391463,-0.056687903,0.013686387,-0.0042824037,0.10010352,-0.04204563,0.06866506,0.14901188,-0.031046655,-0.05476044,-0.0011073509,0.069876224,-0.008861079,-0.005175763,-0.074228115,0.027163114,0.05038645,0.053260874,0.04760121,0.12962529,-0.021709343,-0.025340943,0.02049249,-0.028414266,0.03455638,-0.000992375,0.009829498,-0.06993827,0.01985087,0.0029216767,-0.013479834,0.0036087888,-0.013765579,-0.008794568,0.022064466,-0.0330149,-0.0006077652,-0.021606833,0.015862236,0.04084402,0.051608756,0.10487517,0.07984638,-0.13109294,-0.058275346,-0.026057737,0.016887952,0.03340681,0.08080854,0.022767775,0.04767167,0.04988552,-0.0045582177,-0.045468315,-0.011171478,-0.0272059,-0.07832318,-0.064546935,0.011080204,0.03408717,-0.07422493,0.043748602,-0.020481242,-0.10678026,-0.020942591,0.030447016,-0.029219216,0.035431255,0.036456775,-0.06732901,0.036529098,-0.014678997,0.06393673,-0.09047657,0.026489828,0.003602336,0.046474162,0.108147964,0.062133767,0.012342488,0.026790194,0.012203665,0.1278303,-0.031550437,0.09314895,0.036139864,0.059488837,0.046727218,-6.9588406e-33,-0.01223342,0.0047785165,0.09335565,0.18512158,0.035771705,0.017571451,-0.0065824287,-0.030804193,-0.002336197,-0.052978694,-0.024105044,-0.061511274,0.03346418,-0.019728476,-0.01624053,0.024709068,-0.027895456,-0.08680402,-0.043480586,-0.0154584935,0.040285528,0.07556393,-0.0126714455,-0.071471035,-0.013369142,-0.043173436,-0.10924688,0.037911113,-0.124696985,0.034950644,0.043277442,-0.054961193,-0.024011293,0.026611978,-0.043715455,0.041599605,0.10214651,0.095245264,-0.031107929,0.06582188,0.05416089,0.062174138,-0.02696894,-0.022130612,-0.05013208,-0.03754524,0.05127037,-0.0859481,0.053342216,-0.044621173,0.0518861,-0.013682316,-0.049388267,-0.06946433,0.016702343,-0.014819943,-0.015793782,-0.009776439,-0.037615262,-0.031488124,0.01831518,-0.03150116,0.030111067,-0.022059614,0.0794766,0.020582909,0.07141136,0.078724384,0.025145771,0.023588873,0.030288193,0.05482522,0.0069901524,-0.00074845355,-0.034754314,-0.04750913,-0.072442584,0.04001003,-0.014562506,0.016698131,0.0624419,-0.021447904,-0.056858115,-0.023360135,0.012980165,-0.0016228365,0.010724464,-0.012661471,0.036028452,-0.025346516,-0.0029597667,0.040990982,-0.04376988,-0.023491716,-0.014719124,-3.4155885e-08,0.010200018,-0.017801622,-0.102055185,-0.018037733,0.024765544,-0.122229084,0.0013541589,-0.0075719417,-0.03961393,-0.009374038,0.013501951,-0.051154792,-0.030418253,0.06270022,0.060629234,0.0008113484,0.059448548,0.15816817,-0.015943969,0.028485509,0.07978202,0.0020090758,-0.021180207,0.022987656,0.04098445,0.023685534,-0.0028689806,0.0040832404,0.039043553,0.03338453,-0.08225636,0.014829077,-0.034121387,-0.058667585,-0.02543324,0.0014019865,-0.038715556,-0.0023153855,0.009868851,-0.043413043,0.041401617,-0.05563774,-0.12927942,0.01129303,-0.083114415,-0.08537892,-0.038167376,-0.04979039,-0.01389436,0.037964154,-0.05246889,-0.047915693,0.016448928,-0.0041823364,0.09588711,0.011449942,0.07852055,-0.01985389,-0.04467502,-0.0009229243,0.00430633,0.025626382,0.023082431,-0.043211352} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:04.747142+00 2026-01-30 02:01:10.361719+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1700 google ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE 1 t 1703 Go Karts Mar Menor unknown Divertidos\nHay horas con muy poca gente donde te puedes divertir mucho\nPrecios razonables\nMucho aparcamiento divertidos hay horas con muy poca gente donde te puedes divertir mucho precios razonables mucho aparcamiento 5 2025-01-30 01:52:39.833374+00 es v5.1 J1.03 {O1.05} V+ I3 CR-N {} {"A4.02": "Mucho aparcamiento", "J1.03": "Hay horas con muy poca gente donde te puedes divertir mucho", "O1.05": "Divertidos", "V1.02": "Precios razonables"} {0.029438535,0.057029013,0.042720832,-0.043834433,-0.022968495,-0.04803365,0.08418452,0.060073834,0.001558886,0.06432632,0.10328497,-0.047634065,-0.04934632,0.026403138,0.011581529,-0.017750429,-0.00020395311,0.009877423,4.7724803e-05,0.06843659,0.041697342,-0.03241403,-0.08530524,0.09257227,-0.041609287,0.021297902,0.008306763,-0.036312647,0.0068372902,-0.050354272,0.01524725,0.116218776,0.08817778,0.010756049,-0.06874674,-0.00014075058,0.023301277,-0.00015625355,0.0008255661,0.09727,-0.07676809,0.039434098,-0.031129038,0.030849127,0.010189058,0.030496387,0.07316219,0.024064029,0.025081025,-0.02938387,-0.112448975,-0.0304764,-0.0046376935,-0.04151872,-0.06263566,-0.023792105,-0.018377159,0.018865312,0.04218807,0.023405807,-0.011011875,-0.04349307,-0.07223745,0.013553403,0.028150365,-0.01410178,-0.0147757875,0.03271208,-0.08944761,0.03264505,0.085481234,-0.0024847763,-0.020533942,-0.026481189,0.018990278,0.057282764,0.04156744,0.010892152,-0.025557507,-0.060723566,0.035683673,-0.035704616,-0.063308544,-0.08187225,0.013997573,0.003691717,-0.05473427,0.044056818,0.044665307,-0.098923154,-0.041730486,-0.024564581,-0.025392564,-0.0006479544,-0.004023323,0.043627385,-0.027569257,-0.12317571,-0.012602328,0.0063361134,0.050627757,0.028432349,0.029966738,0.01909592,-0.0074150003,0.012424996,-0.007025549,-0.026519064,0.02902774,0.086447686,-0.0038661056,0.01289034,-0.019636784,-0.010862488,-0.06622802,-0.01007582,-0.0069330083,-0.10724522,0.022615502,-0.042941503,0.027421804,0.024321835,-0.05303299,0.045892466,0.0025766953,-0.070629776,0.0701269,8.586839e-33,-0.063514546,-0.068825275,-0.05400365,0.09185717,0.0045415536,-0.013514271,-0.00104608,-0.08140193,0.05280381,-0.078748435,-0.043145843,0.0024423352,-0.011193831,0.13745198,-0.015946794,-0.015361502,0.053010352,0.03595317,0.007780809,0.08790313,-0.0770611,0.03178653,-0.038578235,0.013906663,0.014347588,0.07804338,-0.03460951,-0.05926118,-0.05883948,0.03981231,-0.005696309,0.030482175,-0.045322016,-0.0075646318,-0.05553371,0.0573659,-0.030610077,-0.012198312,0.039808705,-0.09033871,0.009875031,0.07053199,-0.058852457,0.050390672,0.06659967,-0.05546134,0.027500035,0.037538785,-0.018693984,0.061989736,-0.029049844,-0.05248419,-0.059530433,-0.026890568,-0.022113357,0.014993509,-0.026926843,0.09741152,0.030982379,-0.027827011,-0.045635123,0.0434264,-0.012159882,-0.03774636,-0.033019543,0.018785518,0.02545355,0.060810953,0.085062474,0.09107574,-0.11093336,-0.048815276,-0.10746845,0.033823323,-0.07383193,-0.027515776,0.022774033,0.01675937,-0.0021748457,0.039403062,-0.06421762,0.030626418,0.07630092,-0.00010571769,0.06486374,0.0726255,0.093482114,0.05019802,-0.051289096,0.10108588,-0.024988957,0.1187702,0.050395392,-0.06810412,0.036874652,-8.84673e-33,-0.04319097,-0.029726192,-0.033704598,0.060705386,-0.0630872,-0.035535663,-0.051922575,-0.008521429,-0.038334023,-0.13233113,-0.078243285,-0.066086285,0.081628814,-0.053613294,-0.08250738,0.01685987,0.0877398,0.05291085,-0.03667682,-0.0013609332,-0.05326069,0.08913027,0.042133033,-0.038658492,-0.028465517,-0.0710741,-0.0021972726,-0.03332187,-0.025840057,-0.05043176,-0.020597937,-0.027623773,-0.029801467,0.032240324,0.010332536,0.04240454,-0.007828664,0.08075015,-0.034519095,0.094802,-0.057771906,0.022977501,-0.035840657,0.012200147,-0.090447545,0.04781474,-0.017129522,-0.10117328,-0.06670103,-0.035508268,0.058547307,-0.02642284,0.045333967,-0.036203,0.02297371,-0.10079006,0.05648595,-0.06856776,-0.07421867,-0.030631218,0.067226,0.021986773,-0.07119523,-0.08566034,0.08430738,0.030779708,-0.12698929,-0.015247636,0.022302166,0.048887853,0.09287127,-0.004591192,0.007180913,-0.0023580363,0.011465041,0.045480084,-0.089128226,0.06529652,0.025640596,0.027731823,-0.08191239,-0.008204096,0.0370996,0.034139317,-0.006779875,-0.026920103,-0.036983542,-0.057297707,-0.008490752,0.038083058,-0.042031333,-0.04312802,0.014931309,-0.02846735,0.005067503,-3.1941287e-08,-0.00463399,-0.064055234,0.025398277,0.030598737,-0.019248696,-0.0029902519,-0.061674103,0.07255808,-0.021443775,0.067676224,-0.022427637,-0.012502869,0.06721087,0.07296747,0.006369555,0.003781776,0.100331835,0.054680143,-0.048731107,0.020855688,0.06534609,-0.029801542,-0.049648352,0.04386183,0.076763086,0.018399049,-0.034279764,0.021388633,-0.012644485,-0.07019954,0.043822657,-0.069488876,0.0274808,-0.026452465,-6.917352e-05,0.040622145,-0.013740651,0.038571276,-0.02663617,-0.0032801768,0.01009453,-0.0070605353,0.0011686763,0.027454253,-0.062929526,-0.04108541,0.012945579,0.034238443,-0.033131015,0.008520413,-0.034852825,0.0586802,0.09949789,0.0531387,-0.021550775,-0.048053376,0.056292493,-0.017477706,-0.038142864,-0.036630366,0.0480699,0.17264946,-0.00024961238,-0.022395799} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:21.898975+00 2026-01-30 02:01:10.369187+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1527 google ChZDSUhNMG9nS0VJQ0FnSUNudWFtSEZBEAE 1 t 1530 Go Karts Mar Menor unknown Loads of fun at a reasonable price loads of fun at a reasonable price 5 2025-01-30 01:52:39.833374+00 en v5.1 V1.01 {O1.05} V+ I2 CR-N {} {"V1.01": "Loads of fun at a reasonable price"} {0.006163625,0.015403004,0.056025077,-0.015055481,-0.08391045,0.005013891,0.07339386,0.029886654,0.018082222,0.09133733,-0.038409315,-0.04761337,-0.060795825,0.024476744,0.07399836,-0.04031612,0.11194437,-0.01914587,0.049203087,-0.010078392,-0.10220493,-0.03467616,0.021219917,0.008085665,0.0012423863,0.009468895,-0.026794558,-0.012487196,0.019015918,-0.029331867,-0.029201174,0.074897416,-0.031980388,-0.026636314,-0.0010108082,-0.050043598,0.07550599,-0.09883445,-0.04035023,0.0048216814,0.023317022,-0.05084103,-0.0017813715,0.04163577,-0.017296698,0.045164756,0.052756824,-0.011778675,0.09597661,0.07501158,0.0610793,-0.042948004,0.0042174472,-0.025877267,-0.007621151,0.0006867724,-0.043997265,-0.07813072,0.042957507,-0.019314848,-0.05683136,0.026291823,0.011274871,0.017852658,0.02657199,-0.12141822,0.032370634,-0.03486864,0.06111731,-0.023136627,-0.07857933,0.0015583131,0.02752384,0.034988202,0.059229746,0.012375774,0.0083658025,-0.118274234,-0.046498306,0.041349925,0.029369254,-0.07605933,0.014774018,0.009076149,-0.004818772,-0.07738241,0.058952123,-0.03394813,0.028024789,0.013976599,-0.01322192,-0.029260334,0.0060716043,0.0048824186,-0.022475865,0.008128544,0.02000477,-0.011752081,-0.03887587,0.12296565,-0.06262056,0.03257426,0.06850315,-0.033386957,-0.10182331,0.006734576,-0.00495169,0.009597433,0.0369155,-0.013410344,-0.06646853,-0.0257338,0.009851497,-0.050007455,0.015030685,-0.0580001,-0.052784123,-0.015267437,-0.05439432,-0.04226316,0.0638549,-0.022912137,0.033505805,0.045059536,-0.04131308,-0.010856858,-0.021524588,-4.0248166e-33,0.02392685,0.033660114,-0.019998701,-0.006496503,0.0042630285,0.025239171,0.03047343,-0.07755871,-0.06704183,0.089095876,0.010837883,0.08905258,-0.03913343,-0.022995258,0.11780679,-0.10442287,-0.050804317,-0.0058620484,0.036509573,-0.018352836,-0.08042695,-0.06143438,0.062100515,0.042773426,-0.031867966,0.036447473,0.02257932,-0.070453905,0.17528458,0.02833494,-0.024883172,-0.05237276,-0.039787196,-0.05504346,0.029864974,-0.011607527,-0.012353846,-0.13270299,-0.029931033,0.022258094,-0.0028754782,0.05157217,-0.0055861315,0.03695406,0.0047285194,0.03166133,0.018628873,0.032611836,-0.1015326,-0.034519102,-0.06264337,0.044749033,-0.005719599,0.040506102,0.024833238,0.00073781935,0.00040980798,-0.057687428,0.020366067,0.045292344,0.037732903,-0.0060074236,-0.06310017,0.012914673,-0.10199625,0.050445125,0.050160937,0.0053280536,-0.0363707,0.011914261,0.0060527446,0.020472292,0.07725749,-0.16645434,-0.008204662,0.05013191,0.010428521,-0.07163096,-0.05079748,0.07818031,0.011823252,0.010171604,-0.016058685,0.029096201,0.053190824,-0.047453444,0.022162635,-0.16438583,-0.03576235,-0.0081691295,-0.0676859,-0.009815102,0.03373827,-0.052118894,0.08015764,3.591887e-33,0.0021843554,-0.04453321,-0.04902218,0.06678763,0.064667016,-0.025556915,-0.073438644,-0.0037475731,0.0066678715,0.079442166,-0.04981103,0.048468217,0.03150455,0.049405176,0.029989261,-0.058837984,0.077901736,0.029407099,0.03405226,0.0114170015,-0.0048893,0.10581451,-0.042422187,-0.027158758,-0.057380497,0.09159435,-0.123573236,-0.0316483,-0.08198401,0.08861529,0.0015670076,0.04426141,0.04561968,-0.023110906,-0.013139477,0.06514905,0.119377255,0.11355091,-0.03947411,-0.049288686,-0.007890364,0.064725764,0.041776385,-0.008167549,0.04139146,0.02039553,-0.036426347,-0.022388175,-0.017356047,0.036657747,-0.01814775,0.0051978664,-0.036284693,-0.1270938,-0.025150837,-0.11793354,-0.045967672,0.03308538,0.006398956,-0.039254088,-0.031983517,0.10039387,-0.052540783,0.06278907,0.0120544955,-0.014565405,-0.011291622,-0.043875866,-0.026729645,0.0040405607,-0.07517377,0.052815124,0.023941068,0.004751261,-0.060670797,-0.015525627,-0.011417074,0.0043190923,0.100178055,0.048364982,0.0120763,-0.01973289,0.020711644,-0.024475664,-0.06304404,0.029521838,-0.042198956,0.024893304,-0.036756653,0.08297581,0.09469749,0.067063525,0.042055544,0.033514876,0.010292555,-2.039017e-08,-0.02038161,0.0017759816,0.00801264,-0.0013217727,0.03128225,0.03089425,0.066542834,0.056007363,0.00041156015,0.080043584,0.061402895,-0.061801758,0.04014457,0.06722123,0.056843024,0.051658966,0.019635115,0.06437995,-0.07777775,0.054371905,0.0018602288,0.07831618,0.01024493,-0.026428143,-0.118681036,0.0096186455,-0.004947137,-0.0038015721,0.063345656,0.020475803,-0.019052655,0.039696895,0.015117747,0.0057336823,-0.0040264684,-0.07788025,-0.0627289,-0.022338133,-0.033012714,0.014277863,-0.009120277,-0.05911742,0.003398221,-0.027425744,-0.032137915,0.016563931,-0.12762666,-0.0143538015,-0.02297043,0.061234046,-0.042296164,0.028563302,-0.06288335,0.016295468,0.09666684,0.033867214,0.009384139,0.02795632,-0.05635198,0.030216787,0.04800805,-0.032882065,-0.026578877,0.031248737} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.144184+00 2026-01-30 02:01:09.665132+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1706 google ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB 1 t 1709 Go Karts Mar Menor unknown Muy buena pista, ma de un kilómetro de recorrido y muy bien de precio muy buena pista, ma de un kilómetro de recorrido y muy bien de precio 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {O2.03} V+ I2 CR-N {} {"O1.02": "Muy buena pista, ma de un kilómetro de recorrido", "V1.01": "muy bien de precio"} {-0.030373378,0.024279805,-0.0022883771,-0.040553156,-0.08341363,3.2765573e-05,-0.01298015,0.008451334,0.00818957,0.013205179,0.11093957,-0.02932377,-0.017194672,0.026601007,-0.0046371277,-0.05151506,-0.038626503,0.00811563,0.031613648,0.06966056,0.06606622,-0.07684223,-0.11828728,0.07861706,-0.046279404,-0.02201453,0.03194003,0.027774548,-0.06581015,-0.08667367,-0.024470972,0.046138305,0.09926816,-0.012440042,7.948785e-05,0.034114778,0.05599013,-0.028262429,-0.01413387,0.042870104,-0.08951614,-0.011553978,-0.005774503,-0.06808187,0.052281518,0.03605264,0.04507101,0.05062627,0.0038485741,-0.05139699,-0.04537177,0.049043495,0.0019802945,0.012780881,0.04673158,-0.0024987804,-0.002833962,-0.017527658,0.044442907,-0.00068734726,-0.052718993,-0.020937549,-0.062324576,-0.0014818023,0.02874794,-0.04768037,-0.005118794,-0.054493785,-0.06651217,-0.0030278836,0.0937203,-0.10242914,0.027371317,-0.034788698,-0.0051241126,0.03505994,0.026175521,0.03965551,-0.08319159,-0.035067562,0.07437237,0.020500818,-0.079776965,-0.0179512,0.027190449,0.015969735,-0.026799811,-0.03299144,0.067717075,0.017256731,-0.011946264,0.111433424,0.0012623285,-0.019141676,-0.031609856,0.039353427,-0.030091653,-0.07790597,0.03534621,0.057818547,0.12427494,0.01995192,0.050756875,-0.05909482,-0.051449105,-0.035423413,0.07407799,0.018249674,-0.064930916,0.04998713,-0.036205553,-0.026751645,-0.05357985,-0.0012075906,-0.030767541,0.045621973,0.03313026,-0.05920106,-0.039728913,-0.124512784,0.04216939,0.015942968,-0.02122921,-0.00805319,-0.055210106,-0.0077715935,0.016898172,2.7046685e-33,-0.055138823,-0.03297199,-0.036471173,0.0028122705,-0.05251175,0.030411594,-0.030116955,-0.039996594,-0.0028921547,-0.053361062,0.044630587,0.09064464,-0.014876131,-0.00976592,0.0038289435,-0.03405718,0.01991671,0.009632716,0.04006536,0.017936062,-0.07905622,0.010362055,0.004815019,0.030701142,0.07915295,0.050708454,-0.0425498,-0.09975033,-0.067530386,0.020601034,0.012411677,0.08296927,0.029238887,-0.057575118,-0.06323601,-0.035462417,0.01577293,0.037545756,-0.04371941,-0.005438599,-0.03362468,0.007660331,-0.049882587,0.072479345,0.014716954,-0.022159675,0.03479801,0.028221639,0.032521557,-0.014114355,-0.04038388,-0.06683606,-0.08316555,-0.03000736,-0.025694251,-0.0021808478,-0.065161556,-0.015662657,-0.022034097,-0.082221575,0.043063816,0.09898431,-0.018907422,-0.03645213,-0.068586655,-0.0846857,0.04785258,0.09088653,0.12885708,0.024275765,-0.050644033,-0.044281572,-0.00039648102,0.01599379,0.0322644,-0.00641236,-0.0011209329,0.07175776,-0.012125627,0.05399,-0.09570017,0.01322456,0.023010828,0.034762442,0.0712515,0.08908668,0.08588416,0.061550163,0.011942842,0.031490963,-0.03606982,0.074446134,0.061329886,-0.015733557,0.036403827,-5.5346326e-33,0.07333956,-0.017417353,0.026637834,0.03416863,-0.03366823,-0.019227564,-0.03604766,-0.02762887,-0.050121628,-0.04066156,-0.1184871,-0.15498538,0.15702654,-0.02103991,0.048053794,0.117581084,0.0014451409,-0.086864084,-0.073833756,-0.015964063,-0.068447486,0.06725982,0.04132931,0.026217766,-0.07444463,-0.030168667,-0.056013476,0.008405637,-0.07300125,-0.017934062,-0.050199017,-0.048537787,-0.0086944215,0.0691843,-0.03808481,0.08597823,0.012722849,0.045951627,0.016781703,0.067600146,-0.0007419584,0.047263928,0.0049010403,0.0058792047,-0.020881034,0.005611923,0.039341222,-0.081881106,-0.0058733923,-0.03813215,0.071177274,0.0052113803,-0.029629115,-0.056881256,0.043291632,-0.029409992,-0.024059523,-0.0410641,-0.0943133,-0.003030279,0.020517167,-0.077866174,-0.07555344,0.00035105244,0.041470602,-0.03462904,-0.007629828,-0.030107962,0.07565318,-0.003528687,0.04194499,-0.0068650017,-0.023413435,0.010207904,-0.043174095,0.012707648,-0.080880605,0.06198841,0.04587027,0.06062822,-0.03702119,0.030460238,-0.016235877,0.006804811,-0.007972166,-0.068624794,-0.00854269,-0.046887655,0.05383049,0.031195398,-0.015253641,0.015662795,-0.024001528,-0.09916911,0.021143295,-2.9462736e-08,0.042654756,-0.030098556,0.021818295,0.041921742,0.051855534,-0.07660319,-0.008848418,0.046524234,-0.025589356,0.055895656,-0.017745562,-0.020943556,0.02947747,-0.013132391,0.010319299,0.052212637,0.06276346,0.10532764,-0.0031477683,-0.0370273,0.041326795,-0.009928972,-0.051212944,0.011911525,-0.024047086,0.025602903,-0.050782688,-0.05086894,-0.14278361,0.026287578,0.026399497,-0.017922096,0.0045440234,-0.119004115,0.01714796,-0.022324659,0.017869353,-0.041187756,0.030543491,-0.0683821,0.036848176,0.026453935,-0.121856906,0.035367947,-0.03194913,-0.09583302,-0.04161761,-0.03396265,0.022194946,0.05548581,-0.00645976,0.037856698,0.09219956,0.025479611,0.06822488,0.0031719333,0.09690195,0.03051041,-0.024826733,0.024804246,0.088299505,0.12690394,0.06826011,-0.08534876} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:28.747743+00 2026-01-30 02:01:10.396387+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1707 google ChdDSUhNMG9nS0VJQ0FnSURld3VhTTdBRRAB 1 t 1710 Go Karts Mar Menor unknown Todo el personal súper amable!!. Una experiencia genial 100% recomendada y repetiremos seguro!! Mil gracias!! todo el personal súper amable!!. una experiencia genial 100% recomendada y repetiremos seguro!! mil gracias!! 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {R4.03} V+ I3 CR-N {} {"P1.01": "Todo el personal súper amable!!. Una experiencia genial 100% recomendada y repetiremos seguro!! Mil "} {-0.03003551,-0.0012998675,0.0035712444,0.0112943435,-0.011131357,-0.008802458,0.112553984,0.03397397,-0.051283687,0.01440305,0.07880966,-0.025200646,0.0005646004,-0.016100725,7.684618e-05,0.02529595,-0.012023776,-0.012922153,-0.021260817,-0.0012608845,0.07138354,-0.07797854,-0.04666491,0.08867528,-0.0864598,-0.02268772,-0.045852814,-0.0019470048,-0.05793172,-0.09992809,0.051216666,0.12669677,0.07620623,-0.046403646,0.0017781269,0.037661836,0.033750523,-0.070655204,-0.028789489,0.006152912,-0.14514288,-0.00063712813,0.015167662,-0.029511327,0.040450282,-0.051654488,0.05482201,0.07760924,0.022541229,0.029445147,-0.06940381,-0.021858554,0.072256796,0.03842895,-0.011058503,0.024121653,-0.032063313,-0.09069755,0.06163609,0.033439495,-0.02306404,0.04921392,-0.09220183,0.011999869,-0.010020163,0.007319799,0.06786373,-0.052302722,-0.0903358,0.036477104,0.06825837,-0.018596575,0.08655691,0.05976469,0.02766951,0.09855534,-0.01594696,-0.061097935,-0.021850036,0.047968775,-0.011252184,0.013293801,0.003047883,-0.002880002,-0.007886467,0.002504948,-0.0217134,-0.021110585,-0.0007664555,-6.662302e-05,-0.0015419091,0.06713865,0.0012824916,-0.033098474,-0.0068751136,0.07225044,-0.03142041,-0.057438504,-0.04169343,0.03356914,0.0594768,0.04024487,0.07774511,0.051045198,-0.050872114,0.037945174,0.02387684,0.03175505,0.0072304364,0.059566557,-0.020024315,-0.08395647,-0.030319313,-0.009301329,-0.06705067,-0.010387855,0.047026485,0.010137699,0.0047463565,-0.07624273,0.040591005,0.08218787,-0.013244284,-0.09380931,0.017675532,-0.033189375,0.056123156,6.853929e-33,-0.05055322,0.057083726,-0.005112431,0.08345782,-0.015751785,0.031081265,-0.030437458,0.0047016945,-0.05137908,-0.05417892,-0.05867687,0.047977455,0.016768798,0.061920296,0.010315394,0.07853194,-0.040580492,-0.003032507,0.0048564887,0.06490219,-0.019062867,-0.06732924,-0.010883771,-0.012992452,-0.011855598,0.043730825,0.059571113,-0.040276088,0.009329743,0.017996358,-0.032742318,0.086107,0.018539246,-0.077385694,-0.002843862,-0.044868235,0.031399634,-0.014643946,0.0154101625,0.035558503,0.061797205,0.057181776,-0.011794661,-0.006059312,-0.06533014,0.043520708,0.081630565,0.0854383,0.06899651,-0.034880467,-0.07828914,-0.070711784,-0.08665582,-0.042635426,-0.009330137,0.010973805,-0.100774795,0.028873429,0.0046076984,-0.067364775,0.04936767,-0.0044832267,0.08021563,-0.07429258,-0.07125835,-0.05389024,0.025106447,0.048728693,0.11101067,0.051083356,-0.03935415,-0.007934647,0.012620246,-0.012851498,0.02011061,0.029063677,0.017302718,0.022697628,0.011578055,0.072048746,-0.06553044,0.08490878,0.0047486173,0.016609667,0.1024031,0.08851914,0.04064904,0.026325978,-0.028076686,0.107683845,0.031998973,0.03708716,0.055238724,-0.043785438,-0.032847032,-7.7181284e-33,-0.007826223,-0.03700875,0.027697587,0.008244535,0.02910987,-0.035553895,-0.05168489,0.038910348,0.027409466,-0.027963772,-0.09570655,-0.042586736,0.09640586,-0.07591567,-0.10757659,0.044566717,0.015980978,-0.033173885,-0.06292434,-0.061807953,0.007419233,0.111190006,0.047827184,-0.033401985,0.0056634294,-0.046621706,0.008865232,0.07984674,-0.0010514165,-0.030073265,-0.016813325,-0.0142027,-0.05837914,-0.045314476,-0.013440179,0.05935823,-0.0076755844,0.0154832415,0.038354397,0.05597442,-0.044912472,0.09301327,-0.06456915,0.0014541337,-0.01218369,-0.02823893,-0.0040176674,-0.14154433,-0.066822775,-0.100021556,-0.018055188,-0.059380874,-0.05950214,-0.037970304,-0.006417275,-0.06977531,-0.006737425,-0.0007644259,-0.055938542,0.012079297,-0.0039018907,0.02996936,0.0034445943,0.028422136,0.096177734,-0.050919015,0.013748239,-0.028192367,-0.030568374,0.03608684,0.084803835,0.015528777,-0.030611688,0.024455808,-0.04318068,-0.057039376,-0.0058771255,-0.034587715,0.070622385,0.032038055,-0.0018411621,0.042284045,0.0220135,-0.041944668,0.006113435,-0.012064173,-0.02745902,0.025162974,-0.020880435,0.035466444,-0.007940576,0.009027469,-0.11346843,-0.019930504,0.028507732,-3.5257187e-08,0.048192,-0.012168208,-0.011428258,0.040395368,0.039090678,-0.085879825,-0.12706654,0.018844271,0.048254497,0.0057521733,-0.053729184,-0.04453559,-0.020506993,0.066198826,-0.023544345,-0.009551143,0.10487077,0.16732883,-0.050952174,-0.051219612,0.05350702,-0.010305586,-0.08163549,0.0040527526,-0.009428807,0.011309361,0.034147777,-0.033229087,-0.04684852,-0.038987912,-0.07142058,-0.04224771,-0.024271324,-0.12336846,-0.0258132,-0.045020718,-0.041145593,-0.008655613,0.001960812,-0.032300003,0.08863908,-0.06123465,-0.051521055,0.030574711,-0.10275861,-0.08364155,-0.025314372,-0.018016987,-0.044487078,0.06166375,0.009971648,-0.071068116,0.106930576,0.0086402465,0.03657035,-0.030991094,0.07994274,0.039127924,0.018937327,0.056266155,0.036172915,0.042993877,-0.06041734,-0.04671168} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:33.659868+00 2026-01-30 02:01:10.400583+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1708 google Ci9DQUlRQUNvZENodHljRjlvT2toVU5WbzBWRVJZTVd4R1ltUlBWVlpLZHpKd1VuYxAB 1 t 1711 Go Karts Mar Menor unknown O experienta unica! Vom mai veni de câte ori vom avea ocazia! o experienta unica! vom mai veni de câte ori vom avea ocazia! 5 2025-11-01 01:52:39.833374+00 ro v5.1 V4.03 {R4.03} V+ I3 CR-N {} {"V4.03": "O experienta unica! Vom mai veni de câte ori vom avea ocazia!"} {0.027310658,0.015427813,-0.023852937,0.017656436,-0.090255775,-0.04379865,0.008795646,0.035643708,-0.006523181,0.025237711,0.07570336,-0.053137835,-0.0036299548,0.032867763,-0.033791233,0.017771846,0.011757162,0.029257972,-0.015334258,0.057750065,-0.0020765562,-0.0487831,0.017530665,0.055451583,-0.018725598,0.062802605,0.005537494,0.056961227,0.060200226,-0.09568839,0.040543526,0.1552979,0.025273716,-0.021436054,0.014590687,-0.056120273,0.007941821,-0.1567006,-0.014285242,0.040031683,-0.018688854,-0.015627805,-0.08461908,-0.0693149,0.004360871,-0.027062709,0.04155241,0.05536372,-0.0064199935,-0.027806396,-0.09535008,0.04384806,-0.06372585,-0.04198799,-0.11081462,-0.028827894,0.08758714,-0.079768494,-0.07288698,-0.012445326,-0.016361002,0.028531464,-0.02916699,0.09847854,-0.03786071,-0.038534537,-0.047892854,0.02439819,-0.08432356,0.042489965,0.038957343,-0.06522725,0.031943835,0.052254107,0.014700718,0.009031807,0.07657148,-0.008869237,0.08665465,0.0074201105,0.06304128,0.0012110617,-0.055186965,0.043399613,0.052181892,-0.007936443,0.0029755672,0.00948327,0.10133359,-0.010302293,-0.07456815,0.049542807,-0.07869263,-0.05317922,0.017198002,-0.07436773,-0.03266613,-0.044987366,-0.022496697,0.008832747,-0.003818544,0.029073691,0.0055780313,0.07793275,-0.06421266,0.01434234,0.022971746,-0.03322503,0.09586763,0.051729165,-0.008239211,-0.136783,-0.035625447,-0.0436461,-0.065209806,0.0043653892,0.07477821,-0.05477793,-0.015371483,-0.034406018,-0.03126676,-0.08100011,-0.042765547,-0.012458083,0.025251992,-0.08754709,0.0030952983,6.52219e-33,-0.011792295,-0.05799368,0.006548159,0.01349656,0.12216604,0.07047607,-0.004447791,-0.03895896,-0.0545626,-0.030361068,-0.057399116,0.03688443,0.025286803,0.018517159,0.05990858,0.08498614,0.0058564045,-0.042992596,-0.038127176,0.008884769,0.030907728,0.0047789393,0.042533666,0.037739556,0.030009162,-1.1147694e-05,-0.00090305496,-0.11393059,-0.012197518,-0.0065197954,0.07982039,-0.011420012,-0.05602865,-0.07897653,-0.06853342,-0.005820111,-0.04101192,0.014403635,0.030703645,-0.005948406,0.0087026255,0.05310307,0.08921218,-0.010950057,-0.039776623,-0.00393501,0.0236064,-0.006347183,0.076622896,-0.01569966,0.029880362,-0.04983886,-0.05085383,0.03584812,0.014802992,0.012947372,-0.053136252,0.06358166,0.011368618,-0.074561745,-0.045638315,0.007813911,0.057508975,-0.047703393,0.04265121,-0.043556135,0.0046634222,0.04756921,0.1276198,0.03146987,-0.017215889,0.01960958,-0.01656794,-0.06153097,-0.057016775,-0.0056398786,-0.0059412103,-0.01723207,0.014599648,0.03173771,0.018975962,-0.0019940361,0.055973295,0.030250028,0.03750196,0.12944748,0.007933987,0.0063217864,-0.010784797,0.08507526,0.022738177,0.05183082,0.05663171,-0.066542074,0.080973566,-6.799148e-33,0.006984833,-0.058675166,-0.01463282,-0.005874255,-0.006338782,-0.0495265,-0.12155276,0.09369306,-0.0052063535,-0.0154014705,-0.09527281,-0.025115862,0.1852194,0.02828688,-0.030768087,0.028219473,-0.054294035,0.062693045,0.0490948,-0.027283981,-0.039754875,-0.012312398,-0.029676788,0.012853892,-0.017234461,0.008667927,0.038246024,-0.051163595,-0.0546817,-0.10920783,0.028410947,-0.008207853,-0.031982232,-0.012581612,0.04116258,0.09833406,0.04122908,0.005186486,-0.029031072,0.038063616,-0.06355867,0.049689718,0.007058466,-0.029727092,-0.043491412,-0.01462927,-0.014215376,-0.08211656,-0.08945755,-0.007356581,0.054258227,-0.063080415,-0.023150472,-0.04435301,0.013303281,-0.03190285,0.034628328,-0.06974019,-0.032692097,-0.034229748,0.14387207,0.0105717275,-0.027879091,0.010055776,-0.009432679,-0.005634485,-5.377553e-05,0.04144251,-0.0008390016,-0.028596053,0.030074164,0.026240246,-0.15471232,0.058223154,-0.0035933163,0.021932192,-0.016787095,0.039999407,0.039870825,0.041383702,-0.06988954,-0.11617215,-0.0035090053,0.05422899,0.0025461365,-0.018682232,0.015899984,-0.022863643,0.0010604429,0.06887735,0.025181962,0.038162295,0.059124734,-0.015794687,0.026172295,-2.7528296e-08,0.002688168,-0.08655454,-0.03260742,0.057784364,0.035985537,-0.0754089,-0.083394215,-0.05405182,0.0020436249,-0.021198917,0.023208013,-0.02728667,0.0031591486,0.014300649,0.03560171,0.13424338,0.09878616,0.05045189,-0.011915684,-0.028419342,0.027580103,0.040682778,-0.04461004,-0.032092553,0.011522842,-0.00837842,-0.02719345,0.0054778713,-0.028347068,-0.1356883,-0.018247982,0.01691359,0.039603624,-0.029021887,-0.045490813,0.0020345198,0.0077747456,-0.04563178,0.016644496,-0.083838515,0.07428629,0.02853478,0.06573635,-0.015051702,-0.01906363,0.01551885,0.07812681,-0.08110706,0.008342403,0.0016432763,-0.086377725,0.070287526,0.07423288,0.039558876,-0.035483845,0.024404904,0.018405974,0.0062446967,0.037236046,0.051770676,0.05683697,0.056894306,-0.030496925,-0.02489566} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:38.142486+00 2026-01-30 02:01:10.40478+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1712 google ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB 1 t 1715 Go Karts Mar Menor unknown Para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.02} V+ I3 CR-B {} {"O1.02": "Para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas", "V1.01": "que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato"} {0.0028387175,0.045657452,0.014357147,-0.037647396,-0.07814667,-0.012168079,-0.0065985755,0.031446774,-0.026696475,-0.01645787,0.058355927,0.015365943,-0.030250655,-0.002963524,0.0804531,0.017104695,0.021579258,0.021691708,0.008497841,-0.054650087,0.07017988,-0.06231506,-0.05480121,0.038386554,-0.08068773,-0.0128528625,0.031568456,0.08565178,-0.019494835,-0.11024852,-0.10423708,0.080842696,-0.004291134,-0.03338765,-0.07697965,-0.046601832,0.007219222,-0.029613053,-0.06182483,0.024675572,-0.030844713,-0.047163796,0.004891988,-0.018584201,0.054817826,-0.05089271,-0.051035807,0.015333731,-0.0028044602,-0.08771427,-0.0011762703,-0.06035023,0.05941751,0.010262156,0.007054794,-0.045107577,-0.07343697,0.083405256,0.14792092,0.08777088,0.05863572,0.06583412,-0.04272299,0.027709879,0.019608915,-0.08720082,0.021924218,0.0358868,-0.06719419,0.030907406,0.07411943,-0.13233463,-0.031361185,-0.06888238,0.0403756,-0.0029698606,0.015938498,-0.018733889,-0.03640269,-0.061096102,0.026447978,-0.009962649,-0.03293182,-0.11572474,0.004149027,0.007650865,-0.008502157,-0.0010833745,0.009233074,0.014597118,-0.016063605,0.05532297,-0.06470182,-0.054643154,0.08386576,-0.022176117,0.05790209,-0.04159764,0.06610748,0.013685651,0.119429976,0.0075036413,0.041279938,0.020877916,-0.07840251,0.050146274,0.009465058,-0.014713693,0.018402938,0.037595473,-0.04170212,0.020521414,-0.05862117,-0.062189095,-0.028139785,-0.06756115,0.0025604921,0.02560949,-0.02833952,-0.020186802,-0.01842827,-0.04272727,-0.047996502,0.022331415,0.022788934,-0.024270084,0.064840585,6.3933676e-33,-0.04786377,-0.058650568,-0.027541995,0.02179559,0.009462211,-0.05984182,-0.069928035,-0.056009796,-0.035319664,0.002679315,-0.028840682,0.068109214,-0.03644389,-0.029697405,0.13629551,-0.0028135618,-0.023720736,-0.052273422,0.06953925,0.03462533,-0.029689116,-0.08987771,-0.012520494,0.08820918,-0.007372496,0.08771899,0.05425353,-0.036668375,-0.1398631,0.040773895,0.018517515,0.038593706,-0.019111305,0.014930038,-0.14580037,0.013164924,0.018256176,0.046572495,-0.024844611,-0.043300416,0.028290287,-0.02552439,-0.019646466,0.017102942,-0.025585499,-0.017160382,0.06978589,0.021803483,0.0770889,0.062735386,-0.13322525,-0.032510173,-0.058218665,-0.044293575,0.05573469,0.121390894,-0.0048753247,0.010933947,0.0030620615,-0.021791475,0.016000446,0.020731289,0.00403597,-0.089489706,-0.019408077,-0.010644109,0.041147374,-0.042032197,0.06715423,-0.0013102172,-0.07725923,-0.043810245,-8.339407e-05,0.018014718,0.060953043,0.02756361,-0.059109922,0.05469926,-0.0038839278,0.013803866,-0.085256435,-0.03213998,-0.03868174,0.040084008,0.12795466,0.094495505,0.00917356,-0.0014332789,0.01320427,0.10247897,-0.07038222,0.069477566,0.03178589,-0.003301681,0.07736162,-9.681956e-33,0.036884956,0.027237885,0.041431155,0.052484278,0.0064454433,-0.0068141785,-0.030391444,-0.021268135,-0.007707069,0.012180106,-0.05260702,-0.09013038,0.021613548,-0.009529339,0.019824464,0.05194488,-0.026181046,-0.019665722,-0.047622677,-0.015808564,0.014087484,0.03524353,0.033393957,-0.0046360744,-0.049770717,-0.048551627,-0.10721035,0.006413949,-0.067802936,0.004901435,0.008394932,-0.04274855,0.021014713,0.067077935,-0.08443171,-0.011623509,0.1126697,0.07092841,-0.015097865,0.0372748,0.03093017,0.10091314,0.010106292,0.008755043,-0.07209294,0.03463871,0.07549729,-0.09532534,-0.03802592,-0.05892602,0.14567342,0.0045708497,-0.07393508,-0.024237197,-0.0010918599,0.03217986,0.008099394,-0.0058643757,-0.08676579,-0.03185936,0.04265943,-0.055839263,0.002061656,-0.09480078,0.045929465,0.009146866,-0.0020874355,0.04865755,0.085666366,-0.021592788,0.059832186,0.0092630815,-0.014664361,0.007730335,-0.03701669,-0.09343123,-0.085207924,0.0017977544,-0.0077540954,-0.04175532,-0.00974686,-0.030087048,-0.04030132,0.0023438921,0.0035292178,0.012189864,-0.009622923,0.02207922,0.06814998,-0.0075293505,0.007831594,0.11567366,-0.079220854,-0.028462086,-0.0693856,-4.21473e-08,0.061747998,-0.02813513,-0.12476173,0.014512711,-0.019177172,-0.04171311,-0.03424436,0.036062803,-0.014427744,0.03518953,0.0141948005,0.00699963,0.020743001,0.01455337,0.013735016,0.05282272,0.03965779,0.103981465,-0.007807696,0.005689416,0.057479925,0.0012749122,-0.015572497,0.03870716,0.04339515,-0.012478758,-0.06678489,0.030893916,0.042056967,-0.0140126515,-0.038846128,0.027336285,-0.021075638,-0.03661303,-0.012861889,-0.022679392,-0.03913899,-0.006038849,0.0019170602,-0.015486768,0.018703358,-0.10730723,-0.084081806,0.035496447,-0.074128084,-0.059668798,-0.026406672,-0.0067506228,-0.03638577,0.033154655,-0.10583016,-0.02161062,0.013802041,0.050534796,0.086455636,0.0129383225,0.05058135,-0.031728607,0.00806577,-0.023315249,0.013595107,0.0722126,-0.021339847,-0.0679194} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:03.559882+00 2026-01-30 02:01:10.420469+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1713 google Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB 1 t 1716 Go Karts Mar Menor unknown Un karting de 10, todo en muy buenas condiciones, los karts, el circuito... Y además con un buen precio. un karting de 10, todo en muy buenas condiciones, los karts, el circuito... y además con un buen precio. 5 2025-09-02 00:52:39.833374+00 es v5.1 O1.02 {O1.03,E1.01} V+ I3 CR-N {} {"O1.02": "Un karting de 10, todo en muy buenas condiciones, los karts, el circuito...", "V1.01": "Y además con un buen precio."} {-0.02627549,0.00092626375,-0.012784193,-0.031188847,-0.08483856,0.079969704,0.024437102,0.06005992,-0.006333414,-0.007778348,0.077024065,0.033376835,-0.024475642,0.035427317,0.0064988644,-0.011840553,-0.038800698,0.014926944,-0.010969537,0.003724153,0.04519365,-0.030127734,-0.063685335,0.11327491,-0.05036339,-0.07037095,0.034416158,0.022094842,-0.044535913,-0.06907526,-0.06564958,0.03389768,0.038426638,0.018742602,-0.009722001,-0.0705969,-0.009344075,-0.034206633,-0.044342667,0.035403494,-0.05410385,-0.08597269,-0.017068805,-0.081519246,0.051848195,-0.034228835,-0.0012213712,0.04448958,-0.0013509301,-0.04774351,0.049019054,-0.027460707,0.045448955,-0.015765298,0.019065743,-0.03076657,-0.08874311,0.034766898,0.11759201,0.020952675,0.038068645,0.0066864276,-0.05233212,0.063657895,-0.092717856,-0.04949748,-0.014505586,0.007053422,-0.07384828,0.06081492,0.17154035,-0.101989165,-0.024515979,-0.006304094,0.02698375,0.055676427,-0.02574762,0.018406453,-0.118246205,-0.053425387,0.047535032,-0.032680288,-0.025631666,-0.09131891,0.018249962,-0.035080727,0.03118103,0.03547948,0.015260074,-0.0062253615,-0.06496303,0.08360842,-0.08967552,-0.053269234,-0.041255966,0.026491934,-0.0024357291,-0.02499457,-0.0051613334,0.03077269,0.08335265,0.033365373,0.062220663,0.07909077,-0.05650162,0.03984812,0.04796704,0.0030385712,0.009774564,-0.020639129,0.017974516,-0.010362037,-0.050222583,-0.07735392,-0.0656641,-0.037752192,-0.03473166,0.0066896924,0.030630404,-0.056228966,0.008181602,-0.011914263,-0.011209792,0.017540628,-0.017866498,-0.028197292,0.08840959,1.9149279e-33,-0.10539295,-0.030607319,-0.018684227,0.01844881,0.044850536,-0.045776613,-0.08282488,-0.008557124,-0.025792664,-0.0070493515,-0.0106240045,0.10115051,-0.014412002,-0.02126567,0.11849323,-0.02416494,-0.024605094,-0.031645544,0.113902874,-0.019072363,-0.027945746,-0.019669278,-0.024512932,0.115574285,-0.029499661,0.038383435,-0.01261849,-0.038272027,-0.071926616,0.035881914,0.006641465,0.06864924,0.0032875463,-0.0046456465,-0.08140527,0.030158415,0.07369613,0.04161876,-0.0024758384,-0.033060484,-0.03336363,-0.05123331,-0.064492725,0.011510209,-0.0034547532,-0.028850878,0.057126984,0.049892403,0.060578845,0.029716045,-0.12738058,-0.025920745,-0.015392421,-0.007848283,0.03597143,0.043945257,0.008360473,0.03778919,-0.009516761,0.012606047,0.037375048,0.049364332,-0.05696118,-0.010895964,-0.1455528,0.023541238,0.083825916,-0.033231884,0.11690172,-0.0091366535,-0.10685351,0.013150494,0.010393949,-0.03053067,0.08878544,0.02616253,-0.03556771,0.045659866,-0.023640776,0.059604395,-0.11509985,-0.026755864,0.017712155,0.06934653,0.1295643,0.063305415,0.024960512,0.005198712,-0.0020499716,0.055382274,-0.04383098,0.05724701,0.07209034,0.06311824,0.10483031,-3.8367504e-33,0.01044546,0.011874444,0.0846713,0.10051945,-0.03592491,0.07570102,0.035015553,-0.059372697,-0.026763253,-0.031242333,-0.057534784,-0.061246578,0.05935821,-0.06406995,-0.0020822918,0.021802284,-0.00041851852,-0.026461273,-0.037726272,-0.03565076,0.034031857,0.089642175,0.0019688422,-0.04371896,-0.02287191,-0.015230774,0.009646314,0.011250603,-0.098993495,0.05800815,-0.009654057,-0.051817875,0.017373193,0.06666447,-0.09631194,0.016217494,0.06960163,0.09225664,-0.037076037,0.038457133,0.01822462,0.050541107,-0.0044835834,-0.008262363,-0.040397353,-0.012922822,0.020475022,-0.101263225,-0.009766951,-0.0012929415,0.094825305,0.0016579328,-0.07073888,-0.02451749,-0.03852653,-0.053139444,-0.020111015,0.011865782,-0.09134315,-0.037088864,0.036289454,0.039143868,-0.00070484506,0.0126015525,0.036659807,-0.021042386,-0.055295717,0.06472746,-0.010447495,-0.048525684,0.007322369,0.040558,-0.004898377,0.03261124,-0.07407091,-0.04819521,-0.0372521,0.042079248,0.07938477,0.049969,-0.03085975,-0.013411656,-0.030272532,0.009564977,0.010519603,-0.014904134,3.0100327e-05,0.0052287346,0.08883025,0.029874364,0.04081334,0.09756109,0.01740264,-0.062694386,-0.05204779,-3.4188332e-08,0.0007646087,-0.023718204,-0.059983842,-0.0025161388,0.0772214,-0.09322091,-0.012670556,0.06769404,-0.047240134,0.041808568,0.022030097,-0.014912014,-0.061553523,0.05167884,-0.03101653,0.019677464,0.042746354,0.15016507,0.006074079,0.00080794323,0.02300478,0.03125178,-0.037726484,-0.0061639785,0.0072705518,-0.05371125,-0.045112904,0.012304463,0.006412764,-0.044300318,-0.017526548,-0.013709849,-0.061438456,-0.037765503,0.009041035,0.014894195,-0.07045261,0.050380353,-0.01180901,-0.0042081834,-0.009333114,-0.052968197,-0.09635662,-0.023804195,-0.04817193,-0.067898095,-0.08698006,0.012618415,-0.013087216,0.08487401,-0.07447722,0.01591851,0.03486203,0.030730909,0.06715251,-0.025345853,0.045413088,-0.055457942,-0.080710776,0.011163689,-0.012076189,0.0785965,0.037938904,-0.023387307} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:09.904887+00 2026-01-30 02:01:10.423172+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1715 google Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB 1 t 1718 Go Karts Mar Menor unknown Los karts y la pista es buena pero el personal es malísimo y grosero con los pilotos un sitio pésimo que no recomiendo para nada los karts y la pista es buena pero el personal es malísimo y grosero con los pilotos un sitio pésimo que no recomiendo para nada 1 2025-08-03 00:52:39.833374+00 es v5.1 P1.02 {P1.01} V- I3 CR-N {} {"O1.02": "Los karts y la pista es buena", "P1.02": "pero el personal es malísimo y grosero con los pilotos", "V4.03": "un sitio pésimo que no recomiendo para nada"} {0.030640056,0.0053377138,-0.025557643,-0.039850947,-0.08223683,0.022238806,0.07394707,0.033186853,0.031186821,0.05628274,0.08142146,0.051862184,-0.036083605,-0.0085789915,0.06802062,-0.006748759,-0.044608034,-0.008130025,0.013812403,0.062353704,0.04654633,-0.06896442,-0.06413429,0.088619836,-0.08852274,-0.02909884,0.040437024,0.01201749,-0.03877146,-0.076702714,-0.06327377,0.12697488,0.07225026,0.01115283,-0.04054596,-0.037337616,-0.009579112,-0.041391995,-0.059198737,-0.031318106,-0.048479907,-0.05155111,-0.017593624,-0.016415987,-0.0029356738,-0.07199663,-0.045941032,0.0187465,0.022568187,0.033130463,-0.05424697,-0.084023125,0.0092067765,0.020165415,0.022195136,-0.08744412,-0.070167676,0.06524059,0.096788645,0.044419,0.014560715,0.04104274,-0.08739291,0.014026086,-0.01532581,-0.041273396,0.018414875,-0.06485431,-0.03372167,0.101337746,0.026376149,-0.036762908,-0.011449721,0.02865925,-0.00049039937,0.021757582,-0.009536344,-0.050123695,-0.03850522,-0.004570252,0.022254966,0.03869316,-0.047400925,-0.011982443,-0.034108322,-0.001499673,-0.039383166,0.06586704,0.018642597,-0.019614622,-0.03236504,0.06828235,-0.011350117,-0.064223945,-0.045456506,0.008958496,0.012558221,-0.059627593,0.03007919,0.019006513,0.14414994,0.06843277,0.04435765,0.040119026,-0.096772484,0.068775654,0.055821285,-0.076810695,-0.04355312,0.007915548,-0.115221076,0.03580285,-0.03511496,0.02293294,-0.124252714,0.066619016,-0.02634968,-0.0057400665,-0.015453776,-0.04429248,-0.0014666263,-0.012550292,-0.018962422,-0.0257808,-0.027869629,-0.09383675,0.03366094,7.3533534e-33,-0.073368676,0.015074257,-0.00072226935,0.05845531,0.052360628,-0.023609407,-0.036586005,-0.109884165,-0.03597469,-0.0072680204,-0.03951713,0.023728348,0.050339904,-0.009984619,0.07861469,0.077243954,0.0027248545,-0.042554457,0.0011676847,0.044053935,0.0019167135,-0.054255538,-0.041999675,-0.024753787,0.026707077,0.06830841,0.03885984,-0.029708266,-0.11430176,0.050569143,-0.06998432,0.097058415,0.004095329,-0.01591194,-0.01807863,-0.039097372,0.048264977,0.022758085,-0.053866807,0.0058515184,-0.0150196515,-0.009455673,-0.07595049,0.06290166,-0.058956206,-0.0108430255,0.04166772,-0.001719154,0.046544116,0.038176484,-0.12473207,-0.007842419,-0.040351566,-0.05263314,-0.012386021,0.026320228,-0.019755047,-0.010831752,-0.054307837,-0.05808822,0.09973406,-0.018292028,0.038864315,-0.010662098,-0.044727694,-0.04588212,-0.01777666,-0.0070616966,0.09976661,0.0710171,-0.03833176,0.005612079,-0.004000474,-0.0022010687,0.048561163,0.008217429,0.002498482,0.07630026,-0.039237965,0.07243507,0.009883569,0.017107945,-0.020318955,0.076414734,0.07999536,0.0063367826,0.043307893,0.040976483,-0.035321437,0.101220526,-0.0438585,0.038801685,0.052327536,-0.05145087,0.026284501,-9.705711e-33,-0.004392108,0.05717974,0.060899965,-0.0019397148,0.023839792,-0.042424053,0.055859238,-0.038396664,0.0050630216,-0.030701933,-0.11127327,-0.108099535,0.11364149,0.008765112,0.040077582,0.09554872,0.012981613,-0.07499647,-0.057787508,-0.038476966,-0.015632609,0.045196317,0.04864563,-0.009815215,-0.002972878,-0.060836818,0.011059401,0.095188014,-0.15150933,0.00023738702,0.044289384,-0.065776706,-0.026942037,0.045604564,-0.02614636,0.04920723,0.019433863,0.09361523,-0.020356456,0.035586096,-0.005881846,0.025835767,-0.015918784,-0.040984396,-0.014292125,-0.038823258,0.07709951,-0.13345127,-0.028491866,-0.07208385,0.077626035,0.00069106463,-0.03427081,-0.0074142655,0.052007843,-0.021496905,0.002732688,-0.06198657,-0.05177721,-0.009055838,0.024945585,-0.014603618,-0.058661345,-0.013725028,0.07437648,-0.0422197,-0.008362742,0.0034575108,0.057782978,0.06722717,0.013463862,-0.027019912,-0.06716204,0.10288665,-0.030411055,-0.031043367,-0.10616253,0.015790235,0.0053705005,-0.03666226,0.03918888,-0.056786794,-0.017710663,-0.014861629,0.039367013,0.028315283,-0.05217344,0.06383476,-0.003937932,-0.005931535,0.06738622,0.043673564,-0.05504565,-0.027286522,-0.06399575,-3.5830872e-08,-0.0007699248,-0.024962572,-0.0603158,0.020257466,-0.013321068,-0.05806693,-0.027115017,-0.03385588,-0.016764611,0.041199215,-0.042007282,-0.03975997,0.0986109,0.03791662,0.017613854,0.06762904,0.084732525,0.107501514,-0.02713652,-0.012712003,0.009862509,-0.012946795,-0.046606425,0.03269935,-0.010591633,0.08276613,0.0056085763,0.031324856,-0.0032585019,-0.00070616015,-0.043533586,0.02308476,-0.053372506,-0.09213542,-0.05756352,-0.035529967,0.0027640047,0.01830477,-0.00066659716,-0.01852925,0.046042643,0.035088334,-0.08739852,0.08355108,-0.10606948,-0.040589686,-0.017852858,-0.06712138,-0.038824197,-0.0156897,-0.01858249,-0.058711898,0.060130954,0.0024838906,0.071656026,0.014307987,0.063344575,0.071173556,0.01415465,-0.013031622,-0.005702048,0.1116873,-0.03911108,-0.09217822} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:30.969597+00 2026-01-30 02:01:10.429214+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1718 google ChZDSUhNMG9nS0VJQ0FnSUREMW8tM09nEAE 1 t 1721 Go Karts Mar Menor unknown Mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectaculares. mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectaculares. 5 2025-01-30 01:52:39.833374+00 es v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectacu"} {-0.009676765,-0.028701622,0.015531468,-0.06251581,-0.09429583,0.008459469,-0.0029626798,0.025946263,0.012315305,-0.015375212,0.033539396,0.017929314,-0.036776118,-0.041944403,0.054220933,0.047853954,-0.031770814,0.048195694,0.010426297,0.068646,0.12915486,-0.09013559,-0.06838319,0.15312465,-0.038371228,0.0038614285,0.031391967,0.04799882,-0.018181676,-0.03991837,-0.007948716,0.021138499,0.09107798,0.011408464,-0.0038258021,-0.035001356,0.016394086,-0.0773135,-0.080350764,0.032003902,-0.13650098,0.026325895,-0.0019669195,-0.04431102,-0.015065056,-0.07802914,0.014265171,0.029127175,-0.006446871,-0.033121817,-0.09338696,-0.022010338,-0.051204782,0.0031555607,-0.013379341,0.042301334,-0.018135177,0.01289649,0.04656427,0.004725444,0.10515148,-0.008895285,-0.09872236,0.023880271,-0.0408977,0.0030214686,0.07745002,-0.00049999956,-0.0044294903,0.020564258,0.071051694,-0.07259005,0.06641579,0.079906404,-0.052826393,0.016869064,0.05790376,-0.0017836109,-0.038630553,-0.06389559,0.02005769,0.008295156,-0.06747721,-0.068516105,0.06584899,0.044762745,-0.11039414,0.096136995,0.04447656,-0.03407298,-0.046519704,0.012381055,-0.08343081,-0.003655334,-0.06629584,0.023216898,0.05623683,-0.107382394,0.021905137,0.060591575,0.11090694,0.011899034,0.078036085,0.0744182,-0.055619128,0.03610214,0.081743695,-0.02657591,-0.017032536,0.049174245,-0.014898478,-0.071269326,0.03358245,0.025447173,-0.08915456,-0.025288222,0.019016214,0.0021320598,0.03292035,-0.07763563,-0.00066333334,0.004445332,-0.005686604,-0.05660233,-0.009249419,-0.061055,-0.011925655,8.302544e-33,-0.02965922,-0.085840024,-0.014358638,0.03147114,-0.047380142,0.0015134162,-0.057588417,-0.02108936,-0.017011382,-0.016081046,-0.051352758,0.018053347,-0.0074902745,0.021775486,0.008118459,0.0051640533,-0.00022682661,0.018623386,0.06736232,0.020822382,-0.14914912,-0.057467576,-0.022525134,0.015310067,-0.021246344,0.06437047,-0.050025783,-0.07422112,-0.03768221,0.08169892,-0.01822266,0.047178667,-0.024157228,-0.061297413,-0.007853521,0.025591994,0.062272817,0.052808605,0.04473768,-0.05078385,0.035128128,0.039837755,-0.05756306,-0.05441167,0.02748014,-0.038231526,0.028048795,0.106483884,0.0765851,-0.022918725,-0.020234551,-0.1212778,-0.101733156,-0.08666943,-0.0044365926,0.032731384,-0.032700185,0.051344432,-0.00800421,0.0064360388,-0.027432693,0.058567498,0.038627,-0.07272615,-0.056894533,-0.022341073,0.071098775,0.02059199,0.09942949,0.023847787,-0.13810007,-0.02998923,0.005913941,0.03615215,0.05559607,0.02175841,-0.047499176,0.01987595,0.006862409,0.064841755,-0.030706123,-0.015917893,0.06006944,-0.012003214,0.01975666,0.09271075,0.050231326,-6.5263805e-05,-0.0403083,0.100808255,-0.01744478,0.051967245,0.07942697,0.017093945,0.05701943,-1.02144324e-32,-0.02660164,-0.0112682,0.029712085,0.0111215105,-0.015921453,0.05379343,-0.018442947,-0.036184855,-0.10227056,-0.12005524,0.028533546,-0.12402509,0.111295335,-0.03775632,-0.011879616,0.039474986,0.004821003,-0.123039335,-0.026557349,-0.071711384,0.024973562,0.008491838,0.012802135,0.013477959,-0.00851111,-0.062494077,-0.027310012,0.07539206,-0.054969233,0.008832019,0.015066675,-0.061630942,0.009143008,0.02098072,-0.04345464,0.08320058,0.026492555,0.02829178,-0.030723045,0.010023091,-0.014945974,0.08726125,0.0009647044,-0.012985683,-0.009214073,0.0259072,0.022733001,-0.11453331,-0.061358124,-0.102768674,0.03917106,-0.028651189,-0.07696914,-0.047514092,0.043550063,-0.010511898,-0.077684715,-0.06507917,-0.06756889,0.009555339,0.014353122,-0.043534458,-0.024310868,-0.056736305,0.07050055,0.047783356,-0.03792518,-0.008365816,0.101197906,-0.0010041796,0.11652976,0.03602894,-0.035015877,0.04428932,-0.005547585,-0.05505912,-0.05032567,-0.041879736,-0.015595247,0.010781756,-0.009615403,0.044494733,0.03528281,0.01071572,-0.023932302,0.0017770632,0.020203438,-0.015055655,-0.020134611,0.03680724,0.0039048195,0.091829546,-0.03125555,-0.03661296,-0.017270721,-3.8438856e-08,-0.004350792,-0.020490725,0.02823177,-0.017851567,-0.00036589286,-0.013874768,-0.012595654,0.0814518,0.024209417,0.012403251,0.002824918,-0.007802036,-0.047582306,0.060589146,-0.01706593,0.027248869,0.09121707,0.08925244,-0.033640537,-0.056729957,0.1291692,-0.007490695,0.0037609783,-0.016333662,0.023780847,-0.007773794,-0.07647412,0.014375229,0.010513136,0.02438253,-0.0483069,-0.027400458,0.008868962,-0.056302737,-0.025012191,-0.04431952,-0.0322983,0.016097603,-0.01846666,-0.010061239,0.085172564,0.049413376,-0.07353962,0.007676525,0.005234422,-0.084216006,0.060875356,0.007737307,-0.021384379,0.023147887,-0.017325543,5.0638293e-05,0.052303515,0.027670732,0.0005156791,-0.025421064,0.02522369,0.0048147603,-0.051371016,0.01144285,0.03270629,0.09425724,0.058095343,-0.050330095} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:47.045226+00 2026-01-30 02:01:10.453217+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1965 google ChdDSUhNMG9nS0VJQ0FnSURKMk9pcDVBRRAB 1 t 1968 Go Karts Mar Menor unknown Roligt, bra. Helt ok cartar. roligt, bra. helt ok cartar. 5 2024-01-31 01:52:39.833374+00 sv v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Roligt, bra. Helt ok cartar."} {-0.009211191,0.034871694,-0.069352135,0.04030811,-0.06884411,-0.021419764,0.051379733,0.08856102,-0.039967544,-0.041132938,0.013705953,0.011062238,-0.058820467,-0.030760247,-0.040516675,-0.03861333,-0.08806642,0.028626665,-0.030538002,-0.028160496,-0.021136038,0.03875432,0.0653498,0.014812638,-0.01593167,-0.018220734,0.04184005,0.0059858267,0.00087678153,-0.08771521,0.08215765,0.048730157,0.08283662,-0.033728164,-0.059838876,-0.02342775,0.069419086,-0.026087256,0.03487425,0.019156009,-0.031012844,-0.048381787,-0.07302914,0.035609853,0.037330817,-0.011241685,0.015703784,0.026821522,-0.038248908,0.053615306,-0.019591067,-0.015890501,0.035745658,-0.038081083,-0.021538109,0.016205652,-0.015497281,-0.033921618,0.09322178,0.0011853317,0.031394135,0.036003225,-0.0673959,0.013021875,-0.04159982,-0.028597033,0.006155358,-0.0024965915,-0.024498494,0.08927821,0.07110877,-0.073857,-0.079839185,0.051854685,-0.026974749,-0.035689555,0.058315657,-0.074828915,0.08175102,0.027103944,-0.054012336,-0.038701504,-0.09938492,-0.0003458371,-0.04217046,-0.041915894,-0.047461372,-0.016598448,0.03490744,0.006560595,-0.037163585,0.04462049,-0.07212338,-0.012800182,0.0125164,-0.06970507,0.048892304,0.043568376,-0.0624078,0.07624593,0.06040541,-0.027924176,-0.029127723,0.059812795,-0.08511657,-0.035690498,0.04114602,-0.035709243,-0.031184627,-0.00825247,-0.06677841,-0.034130447,0.013580943,-0.096289024,-0.025140407,0.025074389,-0.090297125,-0.0044842726,-0.026846038,0.00048837485,-0.044333957,0.06774629,0.0043465425,0.047639947,0.065239176,-0.07657237,0.03571817,-1.3487898e-33,-0.05584064,0.0021003985,0.0066012745,0.02424724,0.0036200776,0.026068516,-0.05328902,-0.04697771,-0.049735162,-0.01841542,0.06281951,0.00088901405,-0.062213767,-0.008243848,0.03136987,0.07682502,0.0021554525,-0.024537204,-0.073742695,-0.016998403,-0.025032194,0.021716023,-0.004459187,0.055813596,-0.016369656,-0.064859405,0.14396061,-0.037237708,-0.0899761,0.06393237,0.113538936,-0.025244571,0.07097251,0.0012668959,-0.023435008,-0.073270276,-0.083093956,0.0034790912,-0.13190664,-0.0069931345,0.044560846,0.0154596465,-0.0048079146,0.06582,-0.02419134,0.03245401,0.08725426,0.011118164,0.015800485,-0.047402482,-0.022716623,0.05538133,-0.017473934,0.053263947,0.03777321,0.006739799,-0.03808065,0.116761506,0.040647626,-0.055506535,0.042589832,0.05928545,0.07032884,-0.044770014,0.026789842,-0.028968902,-0.021551888,0.0038644255,0.03525243,-0.0261747,-0.0069218874,0.0026650534,-0.035191897,0.018260825,-0.03362438,0.092295185,0.041609336,0.097453296,-0.017844535,-0.03929912,-0.103204325,0.012654812,0.018127372,0.020143658,0.03553309,-0.06638421,-0.020943327,-0.11719252,-0.02772464,0.09586122,-0.04560121,0.049339075,-0.021520173,-0.06725949,0.053113047,1.360498e-33,0.06302607,0.041916937,-0.026193213,0.10797461,-0.012251899,-0.03028282,0.004280468,0.051207926,0.06387818,-0.062747106,-0.012640666,-0.047474146,0.078608066,-0.050440203,0.08212205,0.046167284,0.13693629,0.05248088,-0.005424395,0.0066885254,-0.07731533,0.061419565,0.01543217,0.06912619,0.039009094,-0.0062587047,0.015398165,0.030992677,-0.06850222,-0.005901022,0.082854174,-0.05153864,0.0054304083,0.070042685,-0.05146026,0.0036819084,0.08737955,0.04636031,-0.031428892,-0.0060454034,-0.00038606516,-0.005797256,-0.072818734,-0.042525873,0.018185044,-0.076220624,-0.0030101289,0.021001615,0.01525102,-0.038348116,0.05424029,0.009355179,-0.046357587,-0.067356475,0.14936143,-0.009971784,0.0075219437,-0.05785467,-0.023065561,-0.03214589,0.05019881,0.021353664,0.07104353,0.0009977216,0.042730648,-0.051430397,-0.02877172,-0.041140623,0.08590424,-0.021822171,0.065149896,0.025788302,-0.05439671,0.07925613,-0.042073127,0.08011233,0.036196116,0.029190037,-0.017485024,-0.027229205,-0.07727553,-0.0912151,0.026667949,0.046680875,0.050410513,0.021537932,-0.03342465,-0.021836208,0.07054005,0.029735053,-0.017835248,0.0208635,-0.076583534,0.03468558,0.058151085,-1.769199e-08,0.02878244,-0.035083123,-0.09613582,0.039993785,0.029348241,-0.04399301,-0.06912462,-0.057416443,-0.08587209,0.04141375,0.0005875504,0.041159343,0.024554003,-0.046933033,0.0347866,0.043180004,0.022024136,0.032345742,-0.040868867,0.0114175305,0.017758805,-0.05665414,0.014854526,0.05230756,-0.043315034,-0.0009968105,-0.007150803,0.020375842,0.13016711,-0.06819184,0.08680669,0.015235383,0.032813124,-0.016681137,0.024069224,0.02734869,-0.06826715,-0.018440355,0.0062849075,0.09882642,0.07248271,0.016994718,0.100045435,-0.013140119,-0.07627737,-0.026826382,-0.015828481,-0.01746451,-0.02792446,-0.09070804,-0.028850675,0.030777065,0.036485933,0.12219617,0.11359509,0.052776393,0.041615684,-0.06721334,-0.021455871,-0.004309855,0.073653914,-0.014379779,-0.0052095894,-0.047596086} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:42.339673+00 2026-01-30 02:01:11.395823+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1726 google Ci9DQUlRQUNvZENodHljRjlvT25GTGQyUjFWWHBSTVVWc1VEUnBjbUZuUkhwWlFXYxAB 1 t 1729 Go Karts Mar Menor unknown Hay circuitos mucho mejores y con mejor atención al cliente hay circuitos mucho mejores y con mejor atención al cliente 1 2025-09-02 00:52:39.833374+00 es v5.1 V4.01 {P3.01} V- I2 CR-W {} {"V4.01": "Hay circuitos mucho mejores y con mejor atención al cliente"} {-0.06078683,0.084395096,0.02387477,-0.066300996,-0.07125103,-0.022337025,0.09179466,0.11354701,0.017039867,0.061231766,0.033053398,-0.006184549,0.026419565,0.055017427,0.03505346,0.06730524,0.014574502,0.015625989,0.014808684,-0.0085343225,0.0329293,-0.046841294,-0.10637765,0.040148135,-0.035145562,-0.06632388,0.037738286,-0.025920566,-0.03676738,-0.078958884,-0.069353424,0.057305902,0.024338307,-0.009482495,-0.0062138005,0.0351472,0.07869571,-0.06785189,-0.0014387842,0.05660244,-0.07578562,-0.031015191,0.014636907,-0.00064674113,0.01990376,-0.05991591,0.01697566,0.040490907,0.030842783,-0.01819816,-0.07550623,-0.054222032,0.005148384,0.020090904,0.0019805261,-0.015793417,0.003182383,0.102877654,0.007341755,0.05619255,0.011044277,0.01610799,-0.020083332,0.07932402,0.021163141,0.01398873,-0.021778742,-0.0006141914,-0.15046485,0.001313267,0.07430493,-0.12382938,-0.016425563,-0.031530906,0.0028543868,-0.004346716,-0.040215548,-0.002851938,0.053628888,-0.09521367,-0.020123221,-0.027920451,-0.10329489,-0.026352655,-0.007427061,0.023225486,0.020160312,-0.07324798,0.023798078,-0.0060239267,-0.031498592,-0.0481781,-0.14668514,-0.049071487,-0.02867419,-0.027600922,0.08482445,0.037420347,-0.0144077055,0.06774055,0.046164215,0.0048053497,0.07091644,-0.012409686,-0.088283636,0.105686665,0.024131857,-0.0377608,0.028519277,0.023586834,-0.09255985,0.036502164,-0.077823825,-0.0436358,0.0070612803,0.007483504,0.023144977,0.040481206,-0.042142484,-0.053918436,0.014341008,0.012625907,-0.041546755,0.019951474,-0.030961027,-0.04864838,0.109606974,4.660672e-33,-0.07023714,-0.04018116,-0.08648254,0.060087882,0.04483754,0.044125672,-0.0009530312,0.011982982,-0.074691616,-0.03144912,-0.05213115,0.07911331,0.025575308,-0.025159474,0.05849309,-0.037270773,0.020227915,-0.021329714,0.10129591,-0.058211617,-0.057420906,-0.04051726,-0.013962732,0.090526015,-0.02150345,0.012673147,0.017406488,-0.0491709,-0.09585275,0.04141349,0.07332628,0.086629696,0.014520975,-0.013040953,-0.06979665,-0.02297216,0.006923324,-0.050307695,0.079916015,-0.122116834,-0.060835943,0.034262463,0.00056016765,-0.016988307,0.021225028,-0.00437597,0.031036995,0.0069181677,0.054177474,0.041719608,-0.061924633,-0.033109345,0.011987177,-0.0021185284,0.012427814,0.049768098,-0.04434277,0.08230254,0.038374,0.06934666,-0.082701966,0.07366696,-0.0102279745,-0.0463652,-0.061558817,0.02103267,0.01721048,-0.07809244,0.1273384,0.028276442,-0.07343392,0.0252095,-0.02119868,0.02576314,-0.07756657,-0.027276838,-0.002874746,0.008617868,-0.0018650395,-0.03195403,-0.06859759,-0.00487097,0.05504807,0.05785104,0.050186716,0.06568981,0.07160004,0.013335314,-0.022340864,0.16335326,0.014538938,0.06758277,0.058305938,-0.008322848,0.09433298,-5.9362138e-33,-0.040504865,-0.06984783,-0.028147005,-0.0128192,0.011403787,-0.005841936,-0.019126434,-0.06447588,-0.062110547,-0.03256656,-0.012081406,-0.08432656,0.016270524,-0.029658282,-0.05048478,-0.021392627,-0.0044648284,-0.06019781,-0.02202687,-0.020014554,0.031634625,0.10312024,0.016325891,-0.00618596,-0.011944866,-0.046004243,-0.11749246,0.050773773,0.01805695,-0.0016306483,0.038871925,-0.01277911,-0.034842737,0.032107558,-0.028659243,0.011081212,0.049695645,0.048516944,-0.009020345,-0.0035285957,0.0612093,-0.0010494008,-0.0964518,-0.025366547,-0.020425115,0.022689793,-0.050736412,-0.101012036,-0.07521455,-0.038226034,0.0042625125,0.001638392,-0.0066911234,-0.079973236,-0.02244405,0.026438901,0.032818716,-0.116705045,-0.043270484,-0.0080474885,0.089448504,-0.0127082495,0.038954053,0.035150938,0.07660971,0.004145624,0.024018772,0.070128255,0.085648626,0.06311595,0.10615945,0.0015512847,-0.015581724,-0.001375164,0.018528638,-0.06980838,-0.09048007,-0.006755766,-0.03472979,0.027197478,-0.031098757,0.027575875,0.03946372,0.010015727,-0.043741066,-0.017398732,0.03408252,0.06732576,-0.0017995199,-0.00317699,-0.040250786,0.057274986,-0.054154627,0.0066228523,-0.023638332,-2.4516886e-08,-0.036218036,-0.06750424,0.079388954,0.020387704,0.046840295,-0.085343584,-0.020145504,0.05200573,-0.031557843,0.11146623,0.027865151,-0.026283512,-0.033753484,0.021192284,0.049126692,0.08039059,0.030894129,0.021530211,-0.018731436,-0.019573689,0.07306482,-0.010293487,-0.051083732,0.009300516,0.06769506,0.0011120609,0.013286975,0.11009295,-0.053360198,0.021582438,-0.073932484,0.0085700415,-0.03074049,-0.074480526,0.004209915,0.016922673,-0.031805374,-0.0053581973,-0.024704603,-0.00078045443,-0.002148426,0.053447068,0.045786615,0.058154713,0.05499324,-0.028728275,-0.025913961,0.021197923,0.066390485,-0.0005280189,-0.0774318,-0.06457044,0.044626515,0.024927678,-0.032443322,-0.037370674,0.028653275,-0.008788779,-0.024135064,-0.02364184,0.02416248,0.08376393,0.03711582,-0.09955797} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:56.805122+00 2026-01-30 02:01:10.485709+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1727 google ChdDSUhNMG9nS0VJQ0FnSUM1OFoyVzNRRRAB 1 t 1730 Go Karts Mar Menor unknown Perfecto para pasar la tarde con amigos! Y tomar luego un refrigerio perfecto para pasar la tarde con amigos! y tomar luego un refrigerio 5 2024-01-31 01:52:39.833374+00 es v5.1 E1.04 {A3.01} V+ I3 CR-N {} {"E1.04": "Perfecto para pasar la tarde con amigos! Y tomar luego un refrigerio"} {-0.13545679,0.018618548,0.005020172,0.0076058013,0.04617876,-0.01081546,0.009510194,0.016839262,-0.006234207,0.035134133,0.03801619,-0.024616081,-0.039651565,-0.04107937,-0.0036367856,-0.018985644,-0.1035111,0.04357395,0.012754902,-0.01847042,0.08379298,-0.018034905,-0.061028235,0.10041527,-0.107305504,0.039005734,0.011167997,0.0069797067,-0.043014042,-0.04673091,-0.002454894,0.061642464,-0.03301327,-0.01929764,0.0044064284,0.06957914,0.10714613,-0.10239887,0.019531814,0.0057295114,-0.07041733,0.020781267,0.02161636,-0.004342852,-0.009820595,0.011827599,-0.005740119,0.08183323,0.015869979,-0.03667396,-0.028939124,0.018476801,-0.048929606,0.025152437,-0.008223539,0.03878652,-0.036415104,-0.10154469,0.008065824,0.041751143,-0.06896679,0.038977936,-0.047063917,-0.0064617116,-0.014251619,-0.032424036,-0.034027934,0.07199839,-0.07442387,0.09388521,-0.0034397608,-0.019367496,0.03839616,0.01764167,0.009267807,-0.023341183,-0.01677687,-0.008928922,-0.08096874,0.024555545,0.027935194,-0.08031169,-0.014484139,-0.046871763,-0.0028068237,-0.03208201,0.05925901,-0.027647246,0.11175691,0.020543342,0.03799981,0.04595113,-0.042783957,-0.015462356,-0.05980284,0.02280952,0.034838382,0.021626698,-0.022524275,-0.0030937593,0.07474688,0.06732544,0.04570831,-0.04937139,-0.004088706,-0.06416472,0.00884364,-0.028141335,0.044488963,0.0293256,-0.052740533,-0.023553584,-0.0420334,-0.044884145,-0.053706124,0.0068788696,-0.05810944,-0.113789134,-0.0139699,-0.07531496,0.01673801,0.089295395,0.036179073,0.051266517,0.043531235,-0.028913643,0.052102033,4.5431013e-33,-0.025635563,-0.04465147,0.014781449,0.054227546,-0.02121759,0.07091518,-0.08037944,0.01423782,0.014811191,-0.006754997,-0.08196184,0.019731486,-0.046052247,0.04007372,-0.009659064,0.083779305,-0.024818532,-0.032190043,0.020786824,-0.0006116238,-0.094567694,-0.022528963,0.010797896,0.006427326,-0.07668163,-0.0065623247,-0.022927705,-0.02555399,0.00014805034,0.04952882,0.035446085,0.0037597984,0.0051289,0.05905522,-0.036147945,-0.0059008957,0.028341658,0.059807945,-0.0216118,-0.016371971,0.07847898,0.07978941,0.056676097,0.02623052,0.032212965,0.0012721964,0.030172203,-0.017098017,0.044003554,-0.021919658,-0.05667258,-0.04919254,-0.02152837,-0.0784484,-0.04247552,-0.011672035,-0.039000772,0.021395706,0.037803017,-0.10017991,-0.0026368662,0.073842004,0.027054999,-0.087222666,0.014163978,-0.017763143,0.069417015,-0.015487975,0.018987373,0.055265218,0.02971614,-0.042706322,0.059147857,0.026855838,0.013426933,0.007015784,-0.033382155,0.056420982,-0.058528274,-0.031913865,-0.03584258,-0.09342525,0.010303016,0.066769116,0.020683302,0.0016680559,0.036757667,0.092404895,0.0093001155,0.11659616,0.00872531,0.071799025,0.052380595,-0.043777503,0.04961765,-4.939169e-33,0.112946026,-0.07583847,-0.036031302,0.08028865,-0.04796689,-0.002034466,-0.047081456,-0.008792598,0.042729337,-0.10183553,-0.07758582,-0.107131094,0.14106885,-0.049026556,-0.008739796,0.1065667,0.030437691,0.00634639,-0.047348436,0.022737652,-0.051856227,-0.039828405,0.0472352,0.062215496,-0.057870667,-0.027953262,0.075085245,0.04504563,-0.06905697,-0.08734432,0.03579485,-0.06539734,-0.024604736,0.040148295,-0.059496466,0.024914443,0.019042619,0.03289641,0.0056417254,0.073398866,0.02203991,0.03569276,-0.09375965,-0.048002392,-0.002056183,0.012610651,0.004415977,-0.14145873,-0.021580245,-0.010909471,0.036484364,-0.069270775,-0.06822559,-0.0721888,0.045486335,-8.8998466e-05,-0.1037321,-0.05574342,-0.053309973,0.013582268,0.07158407,-0.05401078,-0.0493209,-0.04749399,0.038798213,0.025734182,-0.0272598,0.03409657,0.06314694,0.0978114,0.102588296,0.002313073,-0.09733331,0.015494745,-0.025278699,-0.048414707,-0.046955157,-0.013699774,-0.015399709,-0.0067309765,-0.05757438,-0.002877451,-0.007057085,0.0040534637,-0.0059807436,-0.073725246,-0.0031215418,-0.0034263146,0.03716886,0.01527499,0.060204703,-0.0054826033,-0.03630267,0.03112592,-0.0045964634,-2.4073573e-08,-0.021821639,-0.027402466,-0.0428478,0.11596307,0.034498382,-0.073546715,0.04019673,-0.04995832,-0.004697854,0.082979485,-0.04602896,0.014715481,0.02861789,0.05017741,0.009949776,0.04469451,0.017249782,0.092093825,0.004892357,-0.03067302,0.09926623,-0.014749902,0.02078363,-0.025563698,0.06571998,0.055326097,0.07602355,-0.014020468,0.08037862,-0.032798234,-0.04363026,-0.039819803,-0.027668921,-0.075493984,-0.010314226,-0.029830987,-0.032627665,0.025042504,0.011997333,-0.08523149,0.090461515,-0.0036688908,-0.087066434,-0.027735533,0.017994309,-0.06329271,0.024458954,0.06609948,0.0012308037,0.08633185,0.018141182,0.010379942,0.16058253,0.04372766,0.047497876,-0.07955366,0.024681618,0.014073937,0.013955902,-0.056084663,0.08639104,0.1197414,-0.039475124,-0.0072618662} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:01.710608+00 2026-01-30 02:01:10.488978+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1834 google ChdDSUhNMG9nS0VJQ0FnSURybnJQbnR3RRAB 1 t 1837 Go Karts Mar Menor unknown Eine wirklich tolle Bahn. Tolle Auswahl an Fahrzeugklassen. Die Bahn ist eine tolle Herausforderung und macht somit besonders viel Spaß. eine wirklich tolle bahn. tolle auswahl an fahrzeugklassen. die bahn ist eine tolle herausforderung und macht somit besonders viel spaß. 5 2025-01-30 01:52:39.833374+00 de v5.1 O1.02 {O3.02} V+ I3 CR-N {} {"O1.02": "Eine wirklich tolle Bahn. Tolle Auswahl an Fahrzeugklassen. Die Bahn ist eine tolle Herausforderung "} {-0.056840904,0.060898304,0.009161552,0.065020345,-0.13435403,0.065477826,0.025893906,0.08480631,-0.007413336,0.0009867507,-0.06193735,-0.08226775,-0.016921747,-0.041992083,-0.025431214,0.005108256,-0.008542886,0.011448212,-0.02502031,-0.031841982,-0.020250084,-0.062613405,-0.040319916,0.069509886,-0.04424059,-0.05458647,-0.010071508,-0.0026738986,-0.02446365,-0.07690204,-0.047007382,-0.0387251,-0.09289457,-0.0382263,0.030472208,0.08739865,0.025722623,-0.08094065,0.02312222,-0.018354658,-0.056925815,-0.02293123,-0.010023518,-0.031941738,-0.022884848,0.11111291,-0.007847606,0.060278397,-0.014746528,-0.06196832,0.02260579,-0.024000308,0.052608885,-0.012682988,-0.045580074,-0.060451325,0.055368844,0.0039366395,0.00548014,0.032747563,-0.09108364,-0.04350553,-0.008966167,0.017827982,-0.15145133,0.0070144623,-0.032726277,0.033968676,0.016225044,0.023648746,0.04700437,-0.03792246,0.0127713885,-0.0063309413,0.055385165,-0.04386253,0.001166508,0.033561494,-0.0305249,-0.010592607,-0.038782828,-0.030067021,-0.003932007,0.03597081,0.07115462,-0.021133544,0.027625918,-0.05717639,0.05929488,0.05504946,0.0274593,-0.00752431,-0.057115063,0.027335089,0.031861693,0.006098576,0.046925616,-0.028654935,0.00048375898,0.017616069,-0.016661521,-0.04127349,-0.033339355,0.0901418,0.04617136,0.041710917,-0.00021524672,-0.047903582,0.010428452,-0.0121840965,0.06569144,-0.08538216,0.037872013,-0.082230665,0.003141348,0.02164447,0.10795166,-0.08852867,-0.01065344,-0.045304243,0.03703376,-0.05548673,-0.032654427,0.04449008,0.067183636,-0.013798585,0.074502654,4.6295445e-33,-0.09007235,-0.025101455,-0.017727114,-0.00026389345,-0.041059405,0.031223746,-0.028764093,0.042048395,0.05815765,-0.024624016,-0.07632651,-0.059092697,0.009788097,-0.020447575,0.053341735,-0.020517755,0.018687934,-0.0487342,0.0498746,-0.02621739,0.0011685668,0.00411412,0.04530233,0.016254542,-0.005238495,-0.03446746,0.08280042,-0.09559508,-0.04976242,0.02981397,0.03154027,-0.06676342,-0.0037829718,0.054826435,-0.066305876,0.02684638,0.02436947,0.08799376,-0.013090857,-0.029183004,0.03747475,-0.05713978,-0.08794175,-0.037018113,0.02503957,0.0058592404,0.0071644904,-0.0049493546,0.09891677,-0.031463075,-0.049307115,0.0013028675,-0.0346125,-0.0018217107,-0.03733215,0.035595376,-0.011558284,-0.021768466,-0.004504461,0.039476514,0.02150093,0.00662376,0.059931863,0.06533099,0.10090012,-0.02022376,0.078425415,-0.032213606,-0.016245514,0.049515203,-0.10327691,-0.08840744,0.022206254,0.068574466,-0.011312192,0.026157359,-0.033788618,0.007936185,0.06633911,0.03535116,-0.016853688,-0.06746017,-0.01509796,-0.04082573,0.07904134,0.025082532,0.00041785766,-0.07216093,0.03486816,0.05969977,-0.0421673,0.044470962,0.028261315,0.062113643,0.010749914,-7.933925e-33,0.009748748,-0.003971569,0.005410607,0.046683937,-0.00033631988,0.066490285,-0.06698275,0.052769434,0.030747635,0.15880422,-0.06264178,0.0090241,-0.029757671,-0.020449411,-0.0038340879,-0.009719345,0.0018289436,-0.054035485,-0.056279786,-0.005887708,-0.09578984,-0.046138104,-0.048183292,0.018681332,-0.025176574,0.025408177,0.0004582151,0.025957841,-0.018153515,0.031407204,-0.06925036,-0.041792788,0.10299218,-0.05003268,0.015711695,0.105417676,0.12380885,0.12931444,-0.025133336,0.06952326,0.0007944307,0.02159858,0.004653399,0.038843855,0.040273875,-0.054259177,-0.17403896,-0.073829204,-0.08936947,-0.012469994,0.04906901,0.012170814,0.03315982,0.0066695916,0.010949564,0.014720793,-0.036428455,-0.0695744,0.0153423995,0.012056608,0.063327424,-0.017097106,0.032316454,-0.02341798,0.02174382,-0.06334566,-0.09424648,-0.14442496,-0.02173985,0.060894147,-0.012898501,0.1146383,-0.0047782534,0.028156823,-0.025444891,-0.0033345192,-0.010126148,0.031745903,-0.03706514,0.07893163,0.03155856,0.041003678,0.096436344,0.015834512,-0.048711907,-0.02006978,0.13137574,0.10186514,-0.0009799876,-0.04064564,0.059415393,0.036697973,-0.019389888,-0.019523982,-0.044646833,-3.5131862e-08,0.04838494,-0.035627574,-0.031527318,0.009485186,-0.0013282928,-0.070725895,-0.04562077,0.021409886,-0.13809608,0.053138115,-0.014727654,0.10064638,-0.07407408,0.047956992,-0.029981147,0.012343206,-0.108235866,0.004814036,-0.023153374,0.04447831,0.05141003,-0.045104902,-0.05931618,-0.06834664,-0.012378138,-0.029192457,-0.00035369696,0.006144854,0.011458212,-0.10121767,0.03001847,0.04116122,0.0056119133,0.005710796,-0.05513255,0.05771774,0.013715387,-0.0022876663,-0.048302744,0.041499104,-0.029517677,0.03137156,0.033679757,-0.033707272,0.06280944,-0.040936794,-0.10253552,-0.056315884,-0.009670216,0.052294016,-0.024904765,0.021421395,0.027427208,0.03823578,-0.0033645604,0.017465398,-0.019185731,-0.08400532,-0.14530294,0.019422963,0.0404408,0.015308662,0.052092496,0.03330267} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:54.849303+00 2026-01-30 02:01:10.891701+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1662 google ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE 1 t 1665 Go Karts Mar Menor unknown Circuito muy recomendable. Buena categoría F-400 con motores Subaru. :) Buen servicio, mejores mecánicos :) circuito muy recomendable. buena categoría f-400 con motores subaru. :) buen servicio, mejores mecánicos :) 4 2026-01-30 01:52:39.833374+00 es v5.1 P2.02 {J2.01} V+ I3 CR-N {} {"O1.01": "Circuito muy recomendable.", "O2.01": "Buena categoría F-400 con motores Subaru. :)", "P2.02": "Buen servicio, mejores mecánicos :)"} {-0.020863978,-0.0029196294,-0.0061208387,-0.01002258,-0.055942744,0.031252,-0.053818375,0.13276777,-0.04679568,-0.009515858,0.04764266,0.0031933377,-0.05437567,-0.003994761,-0.033402808,0.10875923,0.020886047,0.053030357,-0.00085351116,-0.009241902,0.026270602,-0.010118961,0.0052962373,0.037999727,-0.12833743,-0.0006135773,-0.015297314,0.048629846,-0.101135746,-0.096814595,-0.04672074,0.058400486,0.011779448,-0.04976737,-0.036636822,-0.047297668,0.0091244755,-0.084756635,0.063580476,-0.013878435,-0.083359666,0.018548997,0.059353735,-0.049243618,0.006709828,-0.0021677844,0.06362681,0.025912903,0.1490062,-0.06771655,0.027006496,-0.027846953,0.04296413,-0.027578358,-0.014190184,-0.032754082,-0.033699114,-0.0020884273,0.012837273,-0.010381926,0.06930066,0.0072326227,-0.045602098,0.03117566,-0.06363097,-0.019604059,-0.028406067,0.03962511,-0.0313547,0.020489065,0.035844762,-0.06608543,0.028859558,0.023758579,0.002377151,-0.00819958,0.015323284,-0.014929119,-0.036667217,-0.03808076,0.004481928,0.013308892,-0.059037995,-0.0465977,0.07676377,0.011504676,0.022294693,-0.048057117,0.01468407,0.01579973,-0.033438478,-0.028880622,0.0067986385,-0.07375724,-0.08736623,0.02300118,0.044415478,-0.042703357,0.060166027,0.014804593,0.031997662,-0.03801969,0.018885475,-0.049496815,-0.11421691,0.09929475,0.006397525,0.09081493,0.009606607,-0.031474207,-0.06737397,-0.009866615,-0.04193639,-0.09354516,-0.006995383,-0.0459944,-0.0005055027,-0.026668629,0.022835383,0.022986963,-0.0268247,-0.08085202,0.020248832,0.025094002,0.11771243,-0.015733875,0.017418992,3.190744e-33,-0.03884862,0.034720905,-0.04568103,0.041718263,0.05403369,0.034984488,0.008529291,-0.0057312176,-0.024005586,0.011559846,-0.1019239,0.030596599,-0.07453588,-0.09496986,0.065697,-0.055062637,0.002649617,-0.06501627,-0.040212102,-0.047755722,0.034809552,0.0035462216,0.0836447,0.050618753,0.08489371,0.0111118965,0.0959058,-0.017331028,-0.013908354,0.06291249,0.00819754,0.06526324,-0.059253845,0.003245906,-0.06101499,0.00036834358,-0.071640745,-0.05646129,-0.040020727,-0.012074308,0.06482334,0.03647148,-0.09063591,-0.016294278,-0.0014640901,0.041504968,0.018094996,0.121065125,0.10020681,0.09618939,-0.08165562,-0.017679619,0.021843817,0.009756496,-0.013019171,0.016995205,-0.0008298448,0.048769835,-0.0288592,0.020465938,-0.069379255,0.035038166,-0.030376812,-0.08634007,-0.078216575,0.034241337,0.021866057,-0.011120398,0.016645994,0.03107345,-0.03404858,-0.01586939,0.02007152,0.056961935,0.03353102,0.022873875,-0.019894985,-0.05597259,-0.04328659,0.03254477,-0.061276738,0.017752495,-0.042313166,0.038971335,0.08654393,0.021674884,0.02752669,0.084167875,-0.010336087,0.10911712,0.03239806,0.05084597,0.021477541,0.044814173,0.057617042,-3.735129e-33,0.05229858,-0.07635505,0.10178787,0.04832446,0.019285185,0.027993185,-0.06143882,-0.024076022,-0.02427789,0.034994803,-0.083015494,-0.045595597,0.064676486,0.008199491,-0.05404491,-0.050878495,-0.017757159,-0.07345684,-0.024158163,-0.03258512,0.05014304,0.13154568,-0.00989435,-0.07889982,-0.0128787095,-0.03720686,-0.09199664,0.07783629,-0.046995517,-0.0015583986,-0.055705152,0.01563726,0.03407163,0.013071128,-0.10043805,-0.022620184,0.09589444,0.06574937,-0.057939377,0.03858025,-0.019445742,0.030624088,0.03441955,0.047414087,-0.032051854,-0.052203126,-0.02240611,-0.03559615,0.06094989,0.055851437,0.033122204,-0.10546429,0.001216188,-0.024402004,0.016755607,-0.06881012,0.051267665,-0.035433937,-0.07624281,0.012463539,-0.0045266678,-0.03980234,-0.0068470356,0.02586393,0.03562956,-0.07905132,0.032184437,0.020660443,0.07457333,0.027429102,0.035893682,-0.008716847,0.03646538,0.046707775,-0.010185742,-0.081654504,-0.03846935,0.013995669,0.07654663,0.046447117,0.037975047,-0.06543064,0.0069249514,0.035264537,0.008211229,0.02685421,-0.0395977,-0.013692817,0.08048224,0.00562643,0.0148233045,0.11161123,0.0722219,0.008814708,-0.04738841,-3.0636173e-08,0.06623804,0.027415155,0.018223401,0.029148703,0.006501185,-0.06510466,-0.06767868,0.017517708,-0.10799252,-0.004492156,0.073753886,0.034545153,0.024174811,0.02803312,-0.012905977,-0.059957877,0.08107256,0.12456078,-0.021415021,0.016241642,-0.034616623,0.012673627,-0.0071284715,0.13089328,0.047270585,-0.036215436,-0.0014350774,0.015945084,0.03192853,-0.054772858,-0.094982535,0.059476376,0.03303019,-0.0264832,-0.022168186,0.032142945,-0.11155687,0.039642613,-0.06793784,0.008714279,0.12344022,-0.058568478,-0.06458164,-0.0049752,0.015796369,0.0021653192,-0.01690523,-0.068873465,-0.029745752,-0.06644659,-0.031244563,-0.026903605,-0.06229857,0.08049412,-0.07965172,0.061268896,-0.019735998,-0.0014750377,-0.05935683,-0.05425595,-0.004981402,0.046653863,-0.02755917,-0.02789141} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:55.175741+00 2026-01-30 02:01:10.228072+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1751 google ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE 1 t 1754 Go Karts Mar Menor unknown Sitio para pasar un buen rato y divertirte compitiendo. Tienen vehículos para todas las edades y para personas minusválidas. Por poner un pero... la señora que te recibe y atiende es bastante seca. sitio para pasar un buen rato y divertirte compitiendo. tienen vehículos para todas las edades y para personas minusválidas. por poner un pero... la señora que te recibe y atiende es bastante seca. 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.05 {A3.01} V+ I2 CR-N {} {"O1.05": "Sitio para pasar un buen rato y divertirte compitiendo. Tienen vehículos para todas las edades y pa", "P1.01": "la señora que te recibe y atiende es bastante seca."} {0.017694384,-0.00030911103,0.025336994,-0.06655341,-0.060450885,-0.024035705,0.14037667,-0.0031397024,-0.026896216,-0.00025436515,0.07343695,-0.016305406,-0.08310913,0.021126028,0.020348452,-0.015222973,-0.016225766,0.13690792,0.029979201,0.06628033,0.017567914,0.005467026,-0.08522344,0.10369964,-0.08818532,-0.04761297,0.05177253,-0.044919904,-0.081434526,-0.051489238,0.034561098,0.05017289,0.0230922,-0.032400027,0.00082580745,-0.0012563708,0.047093686,0.0417288,-0.0057111476,0.031937987,-0.07829026,-0.060514603,-0.024688654,-0.01662225,0.008201789,-0.08163485,0.032895565,0.010097134,0.09454354,-0.07623663,-0.027088622,0.034288526,-0.06674784,0.0054298756,-0.02483324,0.0043988107,-0.0026458132,-0.005587445,0.06374251,0.0070364634,-0.00074116286,-0.0011916191,-0.046408925,0.019579303,0.04698809,0.018598331,0.02193473,0.05487334,-0.11029942,0.087812364,0.102211975,-0.041855182,0.024666617,-0.037420247,-0.027847907,-0.001932928,-0.008862061,0.032266308,-0.059104227,-0.035220835,0.017571295,0.021280246,-0.04537238,-0.030051889,0.042678256,0.01066548,-0.06435446,0.07627586,-0.01673101,-0.007063264,-0.039861824,0.07665085,-0.06085169,-0.03570808,-0.027535621,0.057458233,-0.010774618,-0.07257102,0.0764186,0.04058535,0.03830594,0.07430916,0.013484272,0.00023524476,-0.027162874,0.027964441,-0.0067094895,-0.038539633,0.03811875,0.026068902,-0.02731807,0.024858221,-0.05277578,-0.012446327,-0.09633026,-0.011188317,-0.017340459,-0.05506661,-0.013330747,-0.06248153,0.03031463,0.035079647,-0.044175103,0.017651662,0.014695673,-0.10152234,0.075065084,1.2515036e-32,-0.034900375,-0.0051014787,-0.010521016,0.05010514,0.005601652,0.02934014,-0.036288556,-0.06075466,0.008701774,0.009633476,-0.044675894,-0.01776724,-0.010665909,0.005588273,0.072019584,0.019279787,0.002244613,0.03164262,0.053050112,0.008830595,-0.030162599,-0.020119952,-0.083524756,0.039161924,-0.011209809,0.048054397,-0.010571124,-0.042885777,-0.029545974,0.06825627,0.007616775,0.007432968,-0.0040508183,-0.023406584,-0.008112906,-0.07678928,-0.023135865,0.03550197,0.020762797,-0.026921364,0.07053242,0.016321454,-0.08226185,0.07950837,0.013604974,-0.07820577,0.064897075,-0.02821906,0.041104656,0.0664559,-0.06786277,-0.07197413,-0.03067814,-0.09242617,-0.06710638,-0.05930448,-0.016774006,0.061952397,-0.07851996,-0.035018206,0.029655933,0.021301324,-0.03895746,-0.1433935,-0.042161554,0.0073520644,0.017120115,0.051607683,0.100755684,-0.0044797705,-0.0973735,0.017090159,-0.11965622,0.004400064,0.025228148,-0.00028255195,0.023733681,0.08931545,0.0182699,-0.013343362,-0.06457752,0.045179725,0.017995708,0.05514185,0.13095209,0.051610544,0.031755842,0.033345927,-0.055385277,0.080045275,0.075066224,0.082076766,-0.00650573,-0.0021002484,0.04770332,-1.2481987e-32,-0.029892473,0.049620174,-0.026935771,0.023686526,-0.028034456,-0.011183729,-0.034759738,-0.002433373,-0.022368798,-0.05696052,-0.14616199,-0.11344231,0.110034764,-0.013654221,-0.07463657,0.11411848,-0.0061143865,-0.069325626,-0.102856055,-0.04061887,-0.023904482,-0.004576168,0.09085227,-0.048467502,-0.0063281823,-0.045810297,0.020087037,0.02484783,-0.04629832,0.041051954,0.09342282,-0.02796934,-0.05721968,0.038730048,-0.030262476,0.015112887,-0.038873594,0.013904755,-0.035235986,0.04914125,-0.0021600805,0.053490706,-0.018331306,-0.04212879,-0.07678795,0.019619485,0.029442122,-0.09995895,-0.07554427,-0.072906315,0.06670416,-0.03919718,0.020694487,-0.058271296,0.034098815,-0.07801712,0.007421959,-0.09124783,-0.049989473,-0.007223503,0.06777477,0.030592598,-0.023946496,-0.017486451,0.02737018,0.009580181,-0.059313934,-0.003965432,-0.05417325,0.030275607,0.119348824,0.0017390394,-0.10665661,0.0324724,-0.062287204,-0.012245962,-0.06332079,0.0010783215,0.027044099,0.014191037,-0.033290476,0.007811982,-0.0059309136,-0.041684013,0.006150588,0.012000307,-0.060244024,0.056917787,-0.049232986,0.004047974,0.060106326,0.034055937,-0.016320774,-0.0356762,-0.052265592,-4.7821526e-08,-0.0386698,-0.06900806,-0.03700684,0.025440361,0.007860408,-0.025741931,0.0051164194,0.011937222,0.03418671,0.05832621,0.01125,-0.08269602,0.053619646,0.05173895,0.019038875,0.06824276,0.111799195,0.06904074,-0.038146302,0.041603032,0.12547414,-0.04036935,-0.07034496,0.07944502,0.06259425,-0.002580449,-0.008475673,0.049099058,0.035788514,0.0022085272,0.02328073,-0.04390191,-0.008794853,-0.019995462,0.044152908,0.011141521,-0.0056574196,0.03457513,-0.012761873,0.024040546,0.07585649,0.014410993,-0.039297897,0.034300484,-0.02227181,-0.06858658,0.012047911,0.036659595,-0.0378822,-0.035124756,0.029150767,-0.0504897,0.09034371,0.012509863,-0.015265292,0.0023972883,0.0024034393,0.049015436,0.020531641,-0.013349109,0.043111697,0.17538628,-0.07889962,-0.032672763} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:16.29532+00 2026-01-30 02:01:10.577964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1720 google Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB 1 t 1723 Go Karts Mar Menor unknown Muy buenas intenciones,,los kart van muy bien y el personal te atiende de 10 muy buenas intenciones,,los kart van muy bien y el personal te atiende de 10 5 2025-11-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "los kart van muy bien", "P3.01": "el personal te atiende de 10", "R1.02": "Muy buenas intenciones"} {-0.0371892,0.004043802,0.033123504,-0.046865117,0.0014349925,0.045041118,0.07055465,0.070278406,-0.000994491,0.021629311,0.038507365,0.06354375,-0.04057833,0.00406163,0.033555582,-0.038052384,-0.0609292,-0.011642205,-0.023971494,-0.032463618,0.055531617,-0.008862505,-0.016422462,0.031146578,-0.062265795,-0.08293906,0.035151903,-0.008392765,-0.016256243,-0.038666025,-0.0031173432,0.07882346,0.04940784,0.03641875,-0.076173805,-0.10143491,0.005936149,-0.0019605646,-0.055833675,0.077445865,-0.07770353,-0.08185928,-0.044535406,-0.07134766,-0.0431736,-0.078919396,-0.023344701,0.002522503,0.0017916459,0.03062564,0.0035987494,0.0034010801,0.020031996,0.021396197,0.038336817,-0.048146006,-0.14339164,0.021976497,0.109223716,0.008494429,0.075512215,0.08667762,-0.09179347,0.014045016,-0.06518182,-0.02117297,0.030822938,6.7405694e-05,-0.062044833,0.079418294,0.14369057,-0.08488144,-0.042386185,0.0014646326,-0.011164073,0.008231844,0.018866189,-0.087897874,-0.111301415,-0.0016086125,-0.0054777646,0.027483677,0.001998923,-0.09025068,-0.087417655,-0.036767565,0.00950671,0.11760813,-0.0014511577,-0.0019343348,0.017380215,0.08117494,-0.019803545,-0.030962596,0.02524466,0.056277152,0.046744373,-0.05681799,-0.0490865,0.05215694,0.12267123,0.07853749,0.09212082,0.1076281,-0.022794044,0.04615048,0.07401247,-0.028832028,-0.029376863,-0.049431548,-0.00838291,0.002588678,-0.05570417,-0.031552754,-0.05009449,-0.06607669,-0.014002834,0.010040302,0.02311735,-0.06027105,0.034510694,0.0072823814,-0.06388698,-0.0058071855,-0.03477857,-0.016492946,0.044104494,4.1707238e-33,-0.059655182,0.004485012,-0.02979048,0.06377862,-0.011336891,-0.06516194,-0.06496771,-0.0016303003,-0.074134484,-0.04287111,-0.002508333,0.030211376,-0.019727029,-0.000895922,0.0486852,0.075952195,-0.038446136,-0.0182071,0.051446967,0.026300156,-0.03710064,-0.05175775,-0.007676516,0.0776954,0.016235635,0.053143747,0.0038588403,-0.010490547,-0.055370476,0.014598252,-0.02838468,0.06308754,-0.0283655,-0.00733458,-0.035247847,-0.019157583,0.09787329,0.014635697,-0.0013538694,-0.04759118,0.056725077,-0.022008799,-0.038423922,0.04702535,-0.0030169503,0.028301015,0.055228293,0.02676946,0.01826577,-0.02411824,-0.11181448,0.012653143,-0.087509565,-0.0053510135,-0.031752452,0.04583098,0.012012051,0.030034764,-0.025207834,-0.026818475,0.1270924,-0.0407005,0.012696996,-0.059520215,-0.034588475,-0.0021119884,0.03546477,0.0009204263,0.12225828,0.030120818,-0.07967675,-0.014973105,-0.010666552,-0.059851483,0.1052877,0.080873154,0.026959645,0.033719804,0.039792202,0.054905504,-0.027663175,0.02515814,0.010176024,0.058095034,0.08714323,0.02440917,-0.04861367,-0.024972977,-0.041683335,0.109169126,-0.050584942,0.012922446,0.053807124,-0.0004694579,-0.01561417,-6.168329e-33,-0.061280373,0.023937562,0.03593517,0.08738108,-0.02486525,0.070318796,0.075682186,0.029682033,-0.0325204,-0.030218162,-0.04980054,-0.06053935,0.0786189,-0.032487534,0.017563688,0.08598536,0.036529977,-0.03070588,-0.046180673,-0.07140841,0.04884756,0.10909453,0.023220532,-0.012436538,-0.026896348,-0.037941746,-0.06970107,-0.010906247,-0.09800741,0.013763191,0.03402459,-0.09083833,-0.0060247253,0.055660482,-0.07931511,-0.016772198,0.08261925,0.048877124,-0.040784005,0.06694187,0.019792568,0.072099976,-0.042329386,-0.041244846,-0.037282567,-0.017559178,0.036906097,-0.122844934,-0.0035640758,-0.023710778,0.11889434,0.035956368,-0.0435266,0.0032574742,0.007288376,-0.0091875,0.011364222,-0.0048511354,-0.021103943,-0.011635537,-0.04133797,0.02721129,-0.0032957594,-0.06693917,0.049654037,0.008569392,-0.015797244,0.06281144,-0.0033205384,-0.076467186,0.06255161,-0.021458022,-0.010390363,0.015087661,-0.058942966,-0.089091696,0.009418291,0.0066333325,0.037830815,0.0410212,0.011486837,-0.009682631,-0.043899886,-0.050845772,0.0037461717,0.004645756,0.015195113,0.03200954,0.07027232,0.006281995,0.067501746,0.069490395,-0.07279975,-0.080668606,-0.028407782,-2.8472348e-08,0.025362428,-0.048393372,-0.08280951,-0.009680583,0.051885407,-0.075901195,-0.03989056,0.05113705,0.0069123353,0.07434096,0.005324809,-0.057645,-0.038403813,0.059440847,0.0053609447,-0.011712812,0.06555191,0.08611119,-0.0019343869,-0.020450877,0.049041767,0.034020986,-0.0058598816,0.02415587,-0.009486642,0.021539755,-0.042599887,0.0022836868,-0.008252658,-0.0022271704,-0.024575815,0.044787016,-0.108542226,-0.09973008,-0.03597796,-0.04375607,-0.02115641,0.010008419,0.024813926,0.027915748,0.04751367,-0.029157672,-0.11525431,0.05587061,-0.091219544,-0.06046812,-0.077992946,-0.023026688,-0.049811322,0.0051036007,-0.036556363,0.0019678122,0.017329846,0.037172798,0.035600234,-0.08436061,0.029730652,-0.011040503,-0.04514045,-0.004540623,0.0768852,0.09128144,-0.02881991,-0.07684664} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:06.01087+00 2026-01-30 02:01:10.463181+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1723 google Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB 1 t 1726 Go Karts Mar Menor unknown Experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena.\nDia perfecto para pasar un buen rato tanto en familia o grupo de amigos experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena. dia perfecto para pasar un buen rato tanto en familia o grupo de amigos 5 2025-07-04 00:52:39.833374+00 es v5.1 P1.01 {P2.04,O2.03} V+ I3 CR-N {} {"P1.01": "Experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena.", "V4.03": "Dia perfecto para pasar un buen rato tanto en familia o grupo de amigos"} {-0.010332984,0.00910026,-0.03222917,-0.018263256,-0.08179912,-0.027664745,0.09085595,-0.0054173036,-0.05386515,-0.01775706,0.10113266,0.010859122,-0.0753962,-0.0058624414,0.047582746,0.009255594,0.0008364235,0.0014868698,-0.010275125,-0.063791454,0.03278708,-0.10717928,-0.04024487,0.03685619,-0.08581863,-0.038132284,-0.009762348,-0.0402303,-0.024959158,-0.030719385,0.011953813,0.07554011,0.10963588,-0.024839662,-0.03163111,0.032084715,0.018654328,0.018779634,-0.0058961194,0.0008746997,-0.09206693,-0.030370155,-0.0019679766,-0.07529041,-0.0356626,-0.13863313,0.07826277,0.06193253,0.034601133,-0.026122298,-0.026800642,-0.000717777,-0.0029454208,0.052475,0.050208196,0.04777973,-0.05297787,-0.059952732,0.008361981,0.022869525,-0.02134934,0.0907947,-0.065176494,0.0036164448,0.03108097,0.013778876,0.027474487,0.048964404,-0.044996854,-0.009530326,0.04977192,-0.08589853,-0.055191934,0.0947404,-0.0020854482,0.021579625,-0.041609876,0.021960476,-0.04303258,0.0040098447,-0.031617064,-0.022066372,-0.058213323,-0.015103086,0.0028493325,0.04961727,0.009172602,0.00723104,-0.0010697006,0.05420606,-0.06332968,0.09659628,-0.11654775,-0.052545745,-0.019948807,-0.03694493,0.07724338,-0.053723365,0.007308188,0.061566055,0.051147044,0.075275905,0.109291136,0.04190647,-0.057949077,0.022836855,0.033910163,-0.012917319,0.061193366,0.072485946,-0.09909761,-0.07249881,-0.034860972,-0.024491373,-0.029131223,-0.030916141,-0.008007665,-0.017981421,-0.01823931,-0.030425442,0.03851797,0.0662964,0.04786481,-0.008412457,-0.011495934,-0.07338105,0.04993184,9.315475e-33,-0.012053507,-0.018697703,0.016056297,0.120424874,-0.0055488097,0.08977211,0.001725369,0.001580777,-0.016775282,-0.023325235,-0.029504478,0.068222515,0.057311065,0.032586582,0.04424512,0.0156602,-0.04049,0.046123635,0.006978964,0.073477626,-0.027553681,-0.037045665,-0.082760334,0.05596176,-0.019561589,0.012020662,0.007088211,0.001554372,0.07757575,0.06390038,0.03241334,0.023674577,-0.021233303,-0.11610708,-0.09674552,-0.032369398,0.06667708,-0.017801447,0.03613724,-0.015126238,-0.019662393,-0.023426551,0.022026924,0.03307895,0.0021745672,0.057516128,0.12414399,-0.036171917,0.027886096,0.056137417,-0.0875099,-0.09398723,-0.014698689,-0.03472148,-0.03594088,0.010871155,0.0020982602,0.055026222,-0.034809202,-0.068844974,0.031321086,-0.015796492,-0.030268695,-0.11537821,-0.069648966,-0.07044777,0.04469757,0.023861872,0.1086676,0.01826929,-0.07810775,0.001077341,-0.07073932,-0.02528547,0.017417796,0.020753963,-0.019024612,-0.008058478,0.002801553,0.04244201,-0.042036574,0.04216185,0.016923007,0.03259647,0.069763206,0.11177996,0.03320573,0.055802833,-0.05719037,0.13277993,0.05909311,0.09895264,0.055003922,0.015211263,0.04872566,-1.0085325e-32,0.017800977,0.0264878,-0.009649969,0.024884889,-4.311443e-06,0.009870286,-0.008205024,0.0037603937,-0.0026886738,-0.04539365,-0.083914064,-0.14255893,0.14193745,0.019043129,-0.055828094,0.008329063,-0.009342099,-0.08349774,-0.011099103,-0.030185487,0.026862362,0.004162551,0.06881227,-0.004168657,0.035906874,-0.040752064,-0.07164531,0.009310665,-0.0859474,-0.04988676,0.07710581,0.006119855,-0.04963743,0.047977258,0.009002833,0.014992639,-0.022811035,0.0321444,-0.054200973,0.001872415,0.09293423,0.05300007,-0.054933295,0.015529365,-0.03574774,0.0033127163,0.051648524,-0.123246685,-0.0061163553,-0.019620627,0.037915524,-0.027950177,-0.033363692,-0.039705925,0.04339347,-0.05445014,0.006732239,-0.04878433,-0.07738441,-0.015470957,-0.0027510633,-0.029711837,-0.010649426,0.06497407,-0.004252028,-0.06991672,0.031325575,0.054136075,-0.0014405566,0.046550598,0.017984131,-0.021428509,-0.07242276,-0.0014571599,-0.008257935,-0.009909997,-0.05060063,-0.11146427,-0.006802089,-0.015289617,-0.042265672,0.032984465,0.017554138,-0.11586798,-0.053186238,-0.070167646,-0.030511132,0.07109372,0.01461564,0.038645595,-0.020905165,-0.0016704948,-0.06848493,-0.08694046,-0.051014677,-3.9750596e-08,0.041906096,-0.06390852,0.0045394055,0.011547953,0.015535441,-0.06402208,0.005782973,0.04545544,0.03043847,0.038906526,-0.07242529,-0.03712624,-0.01941457,0.078082785,0.08796037,-0.0063730823,0.16787955,0.053543445,-0.024506414,-0.03183532,0.046465226,-0.0057027508,-0.08461488,0.06448486,-0.03264428,0.01915276,-0.01565236,0.02130583,-0.058770157,0.027076041,-0.04184738,0.0022371057,-0.011547138,-0.03373211,-0.019490328,-0.061851446,-0.06478258,-0.0007809447,-0.027294163,-0.06922546,0.084706105,-0.013165623,-0.041310966,-0.023609128,-0.019637888,-0.03348858,0.0019341144,0.000997172,-0.02448278,-0.007218069,-0.019172356,-0.017928481,0.06838394,-0.022820093,-0.021787724,-0.044574946,0.0042648567,0.074602656,0.052595064,-0.01720138,0.052481953,0.12932293,0.032927994,-0.03467758} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:36.008553+00 2026-01-30 02:01:10.475428+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1724 google ChdDSUhNMG9nS0VJQ0FnSUNIOUptUWdBRRAB 1 t 1727 Go Karts Mar Menor unknown Fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para participar, como para pasar un rato tomar unas cervezas, refrescos y picoteo, que es lo que tomemos allí mientras veíamos a las personas participar! fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para participar, como para pasar un rato tomar unas cervezas, refrescos y picoteo, que es lo que tomemos allí mientras veíamos a las personas participar! 5 2025-01-30 01:52:39.833374+00 es v5.1 E1.04 {O1.02} V+ I3 CR-N {} {"E1.04": "Fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para pa"} {-0.0056669503,-0.008532122,0.024019888,-0.05445886,-0.04964273,-0.02197328,0.08117705,0.019211942,-0.020761928,0.04531612,0.013610085,0.002452884,0.010942366,0.008705267,0.060922384,-0.009014182,-0.013866477,0.06893931,-0.02378532,0.06369287,-0.022645729,-0.053680502,-0.086157,0.06559398,-0.10074309,-0.06586823,0.06812069,0.01911736,-0.06023341,-0.115531206,-0.015603901,0.1049276,0.0016700262,-0.025627583,-0.023583824,0.0070569157,0.018761165,-0.07541708,0.016911369,-0.0060892776,-0.07146028,0.0024127497,-0.0036086054,-0.0010137861,-0.024574973,-0.04722658,0.057216022,0.05434278,0.06135844,-0.015416992,-0.110171646,-0.023886574,-0.050528813,0.052718803,-0.034872998,0.02255704,-0.04078757,-0.039805982,-0.013739323,0.009750064,-0.034521367,0.044494115,-0.0079969205,0.023290986,-0.005436943,-0.06506246,0.026857844,-0.050358985,-0.06189412,0.04066506,0.078074925,-0.010310163,0.08376253,-0.00093635643,-0.062362533,-0.03514569,0.032808114,0.018359458,0.04991767,-0.023104703,-0.003198743,0.033732817,-0.023479082,-0.0117815165,0.045904357,-0.015606573,-0.059257787,0.03616541,-0.025196968,0.009189989,-0.027221832,0.11321743,-0.02563153,-0.04449421,-0.004929671,0.026736861,0.031874944,-0.033360407,0.05043582,0.06411991,0.058063854,0.08714928,0.060451612,0.0131018795,-0.04621545,-0.0016467909,0.001536358,-0.04649384,-0.0191197,0.021685617,-0.049489375,0.0076537267,-0.035489764,-0.041759074,-0.08598055,-0.04623858,0.0662445,-0.080640905,0.02262887,-0.0992899,0.015201468,0.03620364,-0.0063334955,0.013410416,0.053096563,-0.13600427,0.035761476,1.2901696e-32,-0.028652593,-0.027955322,0.017049547,0.0596716,0.0022428348,0.06143811,-0.020896768,-0.00019460852,-0.0831963,0.0040733856,-0.0599709,-0.051637333,0.008890893,0.03819828,0.06330651,0.015002513,-0.027428158,-0.036664635,-0.020292008,-0.01582331,-0.06884281,-0.016802313,0.008270481,0.050116047,-0.014678124,0.076373905,0.053014193,-0.04928267,-0.07651531,0.060362976,0.037458625,0.0028205363,-0.022690795,-0.012246225,-0.015430981,-0.08317119,-0.012623418,-0.0010811762,0.015937144,0.002812488,0.03436077,0.047060974,-0.009128535,-0.01781849,-0.056050133,-0.031315666,-0.004575116,0.04897754,0.044119775,0.04176774,-0.028056221,-0.0592765,0.06934415,-0.09073003,-0.036345568,-0.051940437,-0.07165763,0.0201913,-0.07854535,-0.08422512,0.015078796,-0.04796582,-0.043895576,-0.05804579,-0.11066642,0.01610748,0.016314529,-0.027331574,0.15941189,0.008778979,-0.0962953,-0.021413818,-0.046371967,0.003594318,-0.031184966,0.05375606,-0.009577012,0.011850586,0.040883318,0.014653413,-0.016091922,0.032352325,0.031819966,0.07271773,0.101893604,0.041237507,0.07418584,0.00061799894,-0.073040344,0.11626077,0.063141696,0.08451816,0.055817876,-0.04640177,0.09747077,-1.4232073e-32,-0.054538265,0.03346461,-0.0103711225,-0.04081694,-0.036562067,-0.06415237,-0.02584827,-0.01631644,0.055766974,-0.02308833,-0.052767143,-0.12778081,0.043049186,-0.046054218,-0.064933725,0.08137535,-0.0318329,-0.025145717,-0.010637752,-0.030125264,-0.018919213,0.028858542,0.100645155,-0.108433776,-0.0026303327,-0.06694011,0.0012545642,0.03629966,-0.047558486,0.057399116,0.06849561,-0.058309924,-0.03694067,0.020129722,0.0061761155,0.022444287,-0.010821821,-0.005196389,0.0044996627,0.018957324,0.039627165,0.022129724,0.0026593008,0.008727041,-0.03321065,-0.0139086945,0.059349973,-0.12863569,-0.09539618,-0.031958234,-0.0137582375,-0.09761651,-0.003326915,-0.043579977,0.05320067,-0.056713905,0.019544398,-0.11074707,-0.0076707206,-0.029718107,0.045974914,0.04334657,-0.008686344,-0.018235357,0.09876169,-0.025809182,-0.033408634,0.00047167306,0.012212492,0.071308754,0.11263046,0.029323198,-0.09418675,0.05662228,0.0061426605,0.030531771,-0.026184248,0.046907157,0.012276808,0.066280395,-0.0040195896,-0.042992543,-0.023790132,-0.12117235,0.033138994,-0.0009254421,-0.015202732,0.10463307,-0.013175397,-0.006582674,0.015207312,0.027481018,-0.0035406686,-0.052788597,-0.00068367773,-4.8711833e-08,-0.009334817,-0.043442834,-0.12885018,0.002586794,0.022626992,-0.0413484,-0.0384064,0.045060538,-0.0052210307,0.11691319,0.06203803,-0.021007994,0.047112707,-0.007826053,0.0036309992,0.07881521,0.07740091,0.069241785,-0.06151688,-0.026320048,0.07166563,-0.04428338,-0.073647656,0.012265386,0.021742763,0.030681137,-0.076312184,-0.0055951993,-0.041132912,-0.0198888,0.0016019964,0.01693087,0.009366443,-0.071601786,-0.07761325,-0.0447563,-0.03404549,0.041465312,-0.014415861,-0.016986592,0.10056456,0.017870577,-0.05728332,0.041828196,0.00044671062,-0.047572274,0.042940196,0.012317411,-0.051377725,0.03507893,-0.03607194,-0.032466274,0.091316976,-0.041013043,-0.0092149405,-0.01655775,0.059133522,0.049774174,0.05749763,-0.009923535,0.07608546,0.17518216,-0.06457441,-0.040860783} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:40.697579+00 2026-01-30 02:01:10.47924+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1735 google Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB 1 t 1738 Go Karts Mar Menor unknown Schöne weitläufige Kartstrecke mit sehr netten Personal. Gerne wieder. schöne weitläufige kartstrecke mit sehr netten personal. gerne wieder. 5 2025-09-02 00:52:39.833374+00 de v5.1 O2.03 {E1.03} V+ I2 CR-N {} {"O2.03": "Schöne weitläufige Kartstrecke", "P1.01": "mit sehr netten Personal", "R4.03": "Gerne wieder."} {-0.097094625,0.116831794,0.046389315,-0.011534063,-0.06250652,0.021771202,0.08692025,0.09125916,0.011815477,-0.042240635,0.045245323,-0.054714575,-0.0028058311,-0.04941583,-0.006613564,-0.096095785,-0.068748586,0.01851043,0.0071840947,-0.00068649667,-0.041441653,0.020220557,0.015069304,-0.059812184,0.04680073,-0.050832286,0.0121415155,-0.06043341,0.0068588876,0.007867293,0.07076048,0.007227704,0.002311738,0.04861771,-0.018447377,0.004832943,-0.09774378,-0.0062566493,-0.038403884,0.06414852,-0.07901863,-0.061669394,-0.08369936,0.00043303912,-0.014244344,-0.02274589,-0.06310107,-0.008354568,-0.10381845,0.062665135,-0.10980212,-0.004216407,0.049231466,0.04674237,0.030813899,-0.079992525,-0.0015317608,0.019165369,0.035190668,-0.011037704,0.057018146,-0.018084828,-0.07997937,0.014365885,-0.07682289,0.029208245,0.014226884,0.011413717,-0.045988493,0.029945184,0.056809306,-0.044884495,-0.071425825,0.07378087,0.03421677,-0.08588428,-0.036080297,-0.024130255,-0.024935417,-0.016316166,0.024033181,0.013563827,-0.048275016,-0.010123314,0.05148336,-0.04605048,-0.017302416,0.04036485,0.0066800904,0.0106655555,-0.033937167,0.0376457,-0.0975494,-0.04367039,-0.053701006,0.00092033093,-0.015119315,-0.00972971,-0.052401576,0.050931364,-0.04703359,0.0010643337,0.08684678,0.071979746,-0.075654484,0.003082587,-0.027503269,-0.004217914,-0.04446493,-0.015880339,-0.05362274,-0.078095816,-0.05457249,-0.10131352,0.083414905,0.0049852547,0.012429364,0.015868587,0.07428211,0.008723393,0.03303792,0.016951876,-0.05610782,-0.031223804,-0.033703227,0.010850524,0.08927666,4.5171934e-33,-0.06342823,0.02705912,-0.06434034,0.03861793,-8.83953e-05,-0.10077923,-0.06976514,-0.015752574,-0.054844182,-0.001099204,0.0032474205,-0.006347753,-0.019052103,0.05033564,0.08495751,0.054777294,0.053698104,-0.030961806,0.10069003,-0.009990512,0.014036595,-0.080411494,0.045141693,-0.014167175,0.073172174,-0.085876256,0.1190796,-0.014812314,0.014512488,0.006832676,0.0921201,-0.037929375,0.02075531,-0.04521082,0.0010778698,0.019070169,0.008626921,0.028151069,-0.017212277,-0.015284733,0.0077797696,-0.00493678,0.008257537,0.0068651936,0.0008692142,0.066001855,0.0152989635,0.068262726,0.031438578,0.046108413,-0.045463413,0.0008055241,-0.059633866,0.10693184,0.032864854,0.09944859,-0.047399376,0.0057758493,-0.048571866,-0.050716277,-0.018373048,-0.05508213,-0.027111964,-0.00388393,0.05542501,-0.045741767,-0.028194696,-0.07543913,-0.012675095,-0.0069778506,-0.1413852,0.038295478,0.05709709,0.012751114,-0.051099233,0.09670824,-0.09778234,0.071355194,-0.059854023,0.051943526,-0.060962245,0.07020054,0.054833356,-0.00528097,0.009547446,-0.026848251,0.012231169,-0.0822452,0.049673125,0.1359993,0.009216472,-0.0010862108,0.0031315833,0.073940314,-0.025408488,-5.449518e-33,0.025169468,-0.003372704,-0.051296297,0.07373196,0.010325867,0.08517623,-0.009159334,0.014844636,-0.07735131,0.03844042,0.037917472,1.425771e-05,0.102320276,-0.061040778,-0.02046042,0.053889997,0.039394785,0.02451743,-0.0070284344,-0.078124896,0.016603258,0.03760876,0.010507006,-0.01291526,0.0019538442,-0.033392232,0.02147302,0.0629679,-0.12547338,0.010917791,-0.02342727,-0.031688288,0.033265278,-0.0011775354,0.029374944,0.090428025,0.056418844,0.10822338,0.023223145,0.06884047,0.06137131,0.059154674,0.0020189078,0.00933095,0.047437154,-0.05260488,0.00028237715,-0.09391959,-0.050568525,-0.06797857,0.057684757,0.037681893,-0.003524963,-0.10672151,0.03092583,0.06504414,0.04541388,-0.07015238,-0.032568287,-0.060763508,0.052703235,0.014645307,0.07892827,0.032264967,0.07335302,-0.08004463,-0.08131318,-0.016597213,0.06679819,-0.023074834,0.020689804,-0.058586206,0.03235932,-0.025432644,-0.011973375,-0.039706003,-0.0054755877,0.07721124,-0.018380085,0.033350162,0.034642603,0.04265093,0.0074188677,-0.057749134,0.00950905,-0.052260473,-0.018848747,0.017087717,0.042073905,-0.03460587,-0.07683525,0.05596878,-0.055200562,0.023562677,0.0129336715,-2.5318279e-08,-0.057315543,0.0041563814,-0.08307032,0.024628488,-0.027989462,-0.080854155,0.009937104,-0.04812462,-0.016384903,0.04669383,-0.09847728,0.032666046,-0.09522501,0.06019169,-0.005805444,0.016551668,-0.0006284432,0.029222034,0.013102687,0.003480176,0.12324164,-0.027666576,-0.03633505,0.05324395,-0.07261649,0.044527676,0.049088344,0.009433526,0.021231094,-0.018901438,-0.050082464,0.07335584,0.006026759,-0.010475909,-0.022896258,0.0155552095,-0.1006171,0.040450893,0.048420418,0.15576345,0.03099069,0.04180005,0.02010629,-0.011390492,-0.03278485,-0.008260032,0.0012807124,0.019339278,0.049826365,0.085534774,-0.058755606,-0.0287405,0.036842994,-0.0027765415,-0.013427817,0.022757255,0.06749266,0.005630372,-0.045787033,-0.009997242,-0.05946734,-0.0103679625,-0.0552874,0.021974562} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:45.054215+00 2026-01-30 02:01:10.521801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1887 google ChZDSUhNMG9nS0VJQ0FnSUNMaDk2bEtREAE 1 t 1890 Go Karts Mar Menor unknown Un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que hay. un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que hay. 4 2025-01-30 01:52:39.833374+00 es v5.1 E1.04 {O1.01} V+ I2 CR-N {} {"E1.04": "Un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que"} {-0.0043760547,-0.023322724,0.046164203,-0.052465994,-0.07595846,-0.0005968183,0.05459738,-0.009527583,0.030575186,0.021932561,0.02609458,0.020321805,0.0002458522,-0.044519644,0.07194352,0.016205007,-0.043076467,0.03981932,-0.0018535927,-0.03886176,0.0881865,-0.031640045,-0.07201088,0.10844411,-0.09157425,-0.099563025,0.0057935286,-0.02992888,-0.037829656,-0.048039254,-0.024640378,0.054573104,0.039300952,-0.007002584,-0.04275692,-0.020411696,0.054916386,-0.083814554,0.03571504,0.026914733,-0.08660561,0.023271637,-0.013159976,-0.023119913,0.030038493,-0.03789276,0.017252604,0.016142784,-0.04123644,-0.031005552,-0.0070377034,0.0028115786,-0.020861195,-0.05744206,0.01250095,-0.014992465,-0.08808247,0.0068072802,0.107566975,0.06381628,0.007903097,0.07909859,-0.03716145,-0.0026698182,-0.0359988,-0.06939519,0.07787131,0.05759966,-0.064375475,0.059000056,0.09129324,-0.107860535,-0.015933117,0.050559938,0.011396153,-0.0037568635,0.008718899,-0.002131008,-0.08040721,-0.05650098,-0.043834303,-0.034182,-0.013805903,-0.057063796,0.0012991409,-0.032255474,-0.088684134,0.06082223,0.053772185,0.0073035597,0.008289478,0.008112397,-0.089033775,-0.004239859,0.023705367,-0.029236685,0.047684606,-0.024983874,0.017637106,0.064127594,0.13675937,0.06830687,0.12735215,0.028172884,-0.02131173,0.010595666,0.057022676,-0.041812934,-0.010082986,0.004900155,0.011717881,0.06821041,-0.020933239,-0.008236836,-0.08538612,0.03842013,-0.02687284,-0.011281048,-0.066707894,-0.048520826,0.030412253,0.07116876,-0.01042313,0.03625688,-0.039417963,-0.10227945,0.032929007,6.630862e-33,-0.07104755,-0.0714873,-0.03063367,0.04022002,-0.005768212,-0.05621603,-0.05298643,-0.03705774,-0.09127185,0.0053772302,0.012731725,-0.003767501,-0.0094624935,-0.0016937656,0.061934546,0.11061197,-0.038525306,-0.08891137,0.07261846,0.0030505587,-0.06798382,-0.05434244,4.031113e-05,0.06276196,-0.040489934,0.019134643,0.023902345,-0.11697995,-0.06120949,0.08354818,-0.041970346,-0.00059604377,0.058407433,0.0033257804,-0.06742057,0.0008571706,0.024405641,0.050191067,0.006719092,-0.03904983,0.08911827,0.008331115,-0.0039876713,0.0004696987,-0.025682459,0.079462856,0.07861462,0.008504997,0.001438349,0.030661939,-0.028622542,-0.057744525,-0.031538084,-0.038885612,-0.050608873,0.010336516,-0.056028116,0.034476228,-0.04235813,-0.0312578,0.043526545,0.035079237,0.035458997,-0.035509624,-0.08076884,0.012943255,0.04762191,-0.0060557337,0.08573144,0.025668435,-0.08208827,-0.0377393,0.0026255632,0.0027202943,0.06862617,0.00577145,-0.010034298,0.043240447,-0.011926399,0.07279434,-0.030393723,0.006855509,0.007567829,0.042753756,0.04164021,0.06854397,0.13268517,-0.019894527,-0.061398737,0.13015534,-0.044069484,0.11230202,0.017794818,-0.005348977,0.0797177,-8.443116e-33,0.02859465,-0.010626926,0.056994695,0.07881256,-0.024934692,0.011597182,0.0032983283,-0.003326443,-0.050644085,-0.08834856,-0.043015234,-0.08655902,0.054952346,-0.033709805,0.010776291,0.04713707,0.009755914,-0.030503647,-0.084419765,-0.004671917,0.025080776,0.05622734,0.060969245,-0.023977695,-0.038121782,-0.061393395,-0.059632413,0.09563656,-0.058182266,-0.07185807,0.07865044,-0.027583173,0.009229533,-0.04437486,-0.084459886,0.04342339,0.05769141,0.07164825,-0.06557047,0.027284468,0.016731028,0.06959017,-0.085633926,-0.051401913,-0.0062518464,0.029318526,0.030070862,-0.1521349,0.0035898737,-0.06909378,0.07395156,0.0146654295,-0.043477405,-0.01763954,0.038847893,0.013449743,-0.015593651,-0.03794803,-0.09524946,-0.018038556,-0.013712456,0.0364381,-0.0026634033,-0.054849323,0.112469286,-0.018180437,0.0008558139,-0.017145634,0.04112262,-0.017394906,0.123150066,0.05337593,-0.020499108,-0.000976978,-0.05370467,-0.02853184,-0.08773526,-0.01862133,-0.03477072,-0.025741085,0.029816492,-0.018008992,0.034063555,0.029255122,0.0016183453,-0.020533377,-0.02497928,0.055540796,0.010811283,-0.012600695,0.040549304,-0.018104725,-0.029242538,-0.0430971,-0.062888116,-3.2805385e-08,-0.039950203,-0.070676774,-0.096919,0.012143849,-0.03233598,-0.010183144,-0.0542742,0.094418004,-0.008883864,0.008292436,-0.046729945,-0.0017790035,-0.03912714,0.06627422,-0.04752887,0.073111534,0.01372014,0.08024039,0.006794391,-0.05545876,0.094238296,-0.0022078955,0.029077837,0.050057236,-0.088181876,0.014284088,-0.04868953,-0.013039573,0.08303486,-0.05911502,-0.0073988284,0.013663305,-0.02026383,-0.060712487,-0.0052813133,-0.06471675,-0.02408531,-0.017167965,-0.037121385,0.069879055,0.10260849,-0.048136942,-0.06722002,0.01742431,-0.03193041,-0.069826804,-0.030150373,0.0533044,0.02036321,0.04510969,0.013496512,0.026970314,0.07805352,0.018406188,0.026042676,-0.04235687,0.016754482,-0.028532432,0.00861758,-0.06760622,0.054332387,0.042644873,0.036051318,-0.08117625} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:45.079897+00 2026-01-30 02:01:11.069049+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1737 google ChdDSUhNMG9nS0VJQ0FnSUNXZ3RXem93RRAB 1 t 1740 Go Karts Mar Menor unknown Estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente 4 2023-01-31 01:52:39.833374+00 es v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente"} {0.037247773,0.042549454,0.0754553,0.021482702,0.01384489,-0.011988787,0.014203405,0.050498486,0.011914857,0.012746684,-0.0071881413,-0.1285727,0.027130289,-0.022365235,0.046755545,0.0059558926,-0.010839589,0.05770047,0.023449244,0.024489645,0.08782233,-0.019450247,-0.040207513,0.077603996,-0.106815435,-0.0046746614,0.042167906,0.022636928,-0.056744926,-0.052581023,0.028474014,0.10638159,0.07778926,0.023965176,-0.011461044,0.024302704,0.038516887,-0.01750485,-0.023924744,0.057190534,-0.101527,-0.038737826,0.015745733,0.015199195,0.014879304,-0.041666184,0.035577737,-0.007488431,0.026346697,0.049929533,-0.08314794,0.03424388,0.025360746,-0.03553996,-0.006168542,-0.017349074,-0.0014533793,-0.007825263,0.061809674,0.028352948,0.0006678631,-0.008794385,-0.072490916,0.007779219,-0.020692056,-0.11016764,-0.008403676,0.029865392,-0.054336466,-0.021837743,0.085997105,-0.057045236,0.0052706595,-0.023497254,-0.028130258,0.13104467,-0.09996278,-0.029786984,-0.019307012,-0.09158681,-0.0014994359,-0.031477932,-0.03412075,-0.0727878,0.053814966,-0.029476507,0.005320044,0.0064060222,0.014690081,0.026927631,-0.031028517,0.0103233205,-0.07179413,0.038618136,0.013840618,0.08454567,0.0057551414,-0.06674823,0.043828934,0.07189283,-0.021314947,0.044775546,0.032076046,0.082702994,-0.095788345,-0.01546358,0.07846158,0.022558711,0.0041448395,-0.031919528,-0.0111486325,-0.053851236,0.011820232,-0.013647078,-0.027376711,0.029314943,0.060741235,-0.014181227,0.002414401,-0.02994062,0.04370273,0.0044075893,-0.020635648,0.038703375,0.01879302,-0.032968074,0.07297761,5.429166e-33,-0.042351022,-0.09933254,-0.06099751,0.11609564,-0.073457874,0.041673936,0.046159543,0.0037332207,-0.01595831,-0.0597549,-0.008451382,0.078578085,-0.025013037,0.06348034,0.076892614,-0.03664397,-0.009510444,-0.03858287,0.027910814,0.013573617,-0.09819437,-0.0039753984,0.04282636,0.03712349,0.020637605,0.08007561,0.021887658,-0.10384398,-0.036867026,0.0742506,0.07708496,-0.00945357,-0.0072882483,0.025167141,-0.0069452887,0.051553287,0.010105573,0.07407051,-0.008468998,-0.023901198,-0.06891696,-0.014427798,-0.02873618,-0.020020299,-0.04546678,0.021258656,0.031634368,0.05965964,-0.002837657,-0.013247504,-0.014678887,-0.069660954,-0.029212113,-0.05448089,0.030010499,-0.0262564,-0.04626129,0.017692687,-0.040963367,-0.06551366,0.0746733,0.09257139,0.0036735109,-0.012087961,-0.021317901,-0.013129552,0.04643915,0.030540043,0.10724912,-0.0024951764,-0.0065624565,0.0016798887,-0.021218032,0.036394317,-0.03731348,0.016831143,0.021654949,0.048043236,0.010487665,0.058709837,-0.099371515,0.06382843,0.045166425,-0.0279741,0.047862057,0.031126251,0.053120263,0.04931581,-0.061938155,0.13458493,-0.06830914,0.0016160901,0.03529253,-0.0030226198,-0.038440872,-6.6298e-33,-0.013503647,-0.06564133,-0.009259491,0.047327477,-0.047086816,-0.007387803,-0.10065564,0.037878945,-0.0904814,-0.051322408,-0.05136129,-0.082399815,0.09475701,-0.05481701,-0.0030799254,-0.006665252,0.039046433,-0.008295305,-0.15111546,0.049921077,-0.025633492,0.049637843,0.039268553,-0.039983846,-0.043002903,-0.043307256,-0.025706984,0.036410697,-0.13397922,0.02926255,-0.04299425,0.01081697,-0.011486902,0.047517367,-0.0016550904,0.09067528,0.08531773,0.045932073,0.00783951,0.057444595,-0.02165436,0.03392138,-0.03633159,0.0457212,0.035322152,0.05847139,-0.05097267,-0.12262233,0.012926646,-0.043216504,0.0865554,-0.0636221,-0.034895368,-0.053338435,0.08635124,-0.030471256,-0.023471376,-0.076035604,-0.11810226,-0.025000304,0.08236029,-0.0014606003,-0.090912,0.014182342,0.05110747,0.101640396,-0.102717355,-0.016783515,-0.023452777,0.03323373,0.005215145,-0.048021205,-0.089718096,0.06249306,-0.05372898,-0.009708467,-0.08077356,0.049430538,-0.0037075952,0.05279946,-0.026408462,-0.004692795,-0.063083224,-0.07184463,0.029017368,-0.036145214,0.0053581563,-0.024172084,-0.024212653,0.04042293,0.056521744,0.05527186,-0.025653254,-0.12400548,-0.004531491,-3.0507305e-08,0.013838034,-0.031237258,0.0685718,0.0103531135,-0.028841574,-0.027476452,-0.016038863,0.01193134,0.031907655,0.08672808,0.007907033,-0.041413575,0.032388292,0.034750596,0.036370084,0.024877869,0.021108517,0.017581906,-0.041357603,-0.014252425,0.051167846,-0.035522655,-0.04726077,0.0007545471,0.023147997,-0.036696397,-0.10104041,-0.0981412,0.0042614522,-0.060433365,0.038974468,-0.024332663,-0.0404561,-0.07233081,-0.050111055,-0.00363561,-0.017520666,-0.028639298,-0.020444933,-0.01529718,0.011716191,-0.02377139,-0.0519969,-0.019600388,0.0789197,-0.08746181,-0.019398537,-0.0048102466,-0.052880716,0.058950048,-0.08854208,-0.051530454,0.10596683,0.017267298,0.041375954,0.0067262463,0.062832214,0.049523298,-0.007486435,0.011432635,0.041732147,0.14177608,-0.03708362,-0.054531813} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:58.330938+00 2026-01-30 02:01:10.527696+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1725 google ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB 1 t 1728 Go Karts Mar Menor unknown Circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curvas; 6 a derechas y 4 a izquierdas.\n\nLa flota de los F300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo que llevo llendo al circuito.\n\nSi tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en Verano pues da mucho gusto también.\n\nComo anécdota tienen un perro guardián llamado Pepo, muy majo. circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curvas; 6 a derechas y 4 a izquierdas. la flota de los f300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo que llevo llendo al circuito. si tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en verano pues da mucho gusto también. como anécdota tienen un perro guardián llamado pepo, muy majo. 5 2025-03-06 01:52:39.833374+00 es v5.1 O1.03 {O2.02} V+ I2 CR-N {Pepo} {"A4.01": "Si tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en Ve", "E1.04": "Como anécdota tienen un perro guardián llamado Pepo, muy majo.", "O1.03": "La flota de los F300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo qu", "O2.03": "Circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curva"} {-0.0075130244,0.032371465,-0.0720748,-0.09702581,-0.078951895,0.030286573,0.028291756,0.13794188,-0.012324372,0.023180764,0.03461929,-0.041836914,-0.046584606,0.005701202,0.04447553,0.025982039,-0.0058723036,0.024607787,-0.0047691623,-0.00967635,0.029402172,-0.081737034,-0.0122217415,0.08849852,-0.109284446,0.04743039,-0.0075004934,0.005055245,-0.11156843,-0.12888198,-0.03686779,0.055970185,0.08979831,-0.056505352,-0.045219082,0.011154901,0.004375557,-0.09146254,-0.0097506875,0.07061252,-0.08277266,-0.050061706,0.01897018,-0.06164492,0.014610214,-0.018164745,0.0118881315,0.059905272,0.07472263,-0.030025655,0.010602332,0.060780596,-0.014851947,0.010237765,-0.021151569,-0.0027850457,-0.0058875848,0.04518315,0.11234511,0.09816378,0.02565281,0.03256945,-0.065704845,0.09814666,0.02533017,-0.07353841,0.00044196477,-0.07654664,0.02162084,0.034198888,0.08419584,-0.051123615,0.053823095,-0.07366322,0.01119922,0.05302341,-0.012277632,0.00749466,-0.024346435,-0.03606121,0.001719975,-0.07006291,-0.008797188,-0.10185565,0.045355026,-0.045320835,0.0015985754,0.050070893,0.011240192,0.031125786,-0.024715947,0.12261597,-0.09604166,-0.003410631,0.001213638,0.033769924,0.008442246,-0.0803792,-0.05065441,0.03596552,0.051921163,-0.04924209,0.054458458,0.10798794,0.02035953,0.039699025,0.040670704,0.034170654,-0.049883828,-0.008739116,-0.046542294,-0.007689078,-0.034012757,-0.07595928,-0.0404375,-0.02348306,-0.061715186,-0.054420713,0.017926037,-0.0037306296,0.03459086,-0.070239924,-0.026597848,0.0066975947,0.035326168,0.052235875,0.021085,1.6961788e-32,0.008106889,0.010975527,-0.066158175,-0.017863767,0.054043684,-0.0036069124,-0.009705054,0.015575719,-0.0060167997,0.007726542,-0.033360153,0.029681299,-0.012446762,-0.020814214,0.08415793,-0.08336288,0.04590136,-0.05626452,0.021320665,-0.04897131,0.032512303,-0.087149106,0.067229345,-0.022452854,0.02332879,0.09431411,-0.0130448975,-0.011401324,-0.083732,0.0655835,-0.017307922,-0.04123561,0.013122761,-0.061589245,-0.017819878,0.0004983842,0.074611396,-0.016344378,-0.063077025,-0.021865593,-0.04302167,-0.0059570544,-0.04111602,0.0030673838,-0.0049110204,-0.020484244,-0.045905545,0.06220013,0.050250914,0.084442206,-0.039248385,-0.051650353,-0.06816396,-0.007813892,0.03451787,0.022892354,-0.041634224,0.0026428616,-0.048600268,0.046806786,0.07485494,0.057277925,-0.03511847,-0.035259165,-0.04309271,0.029793045,0.061883863,0.03002312,0.11044189,0.0055651343,-0.065212965,-0.061162144,-0.004383262,0.04628218,0.055822663,0.001037096,-0.011891666,-0.03644355,-0.02988766,0.00073835795,0.01684411,-0.027538687,0.0376627,0.0070611043,0.04525427,0.0012918516,0.0049873614,0.019424574,-0.050138075,0.08867218,-0.036656473,0.009844047,0.12774222,0.045434568,0.05322816,-1.7170915e-32,-0.022935668,0.018507423,0.016785126,0.014595691,-0.04330004,-0.013574822,0.023328008,0.00910844,0.026050394,-0.013476557,-0.061475743,-0.044232808,0.080290824,-0.124525964,-0.048003882,-0.00919088,0.0006747389,-0.06167518,0.017432822,0.0056962166,0.04566749,0.029422576,-0.031547617,-0.041281477,-0.05346441,-0.027529297,-0.060490493,-0.00775486,-0.09562066,-0.040337212,0.014907474,0.014307684,0.04307984,0.059141234,-0.04296043,-0.0050406693,0.10440261,0.0337695,-0.017860034,0.008586995,0.1077917,0.10578676,0.00017833075,-0.04585868,-0.016575832,0.060920164,0.007652122,-0.115366116,-0.053410407,-0.036225583,0.044692647,-0.07351699,-0.09829632,-0.0295905,-0.005876935,-0.059924796,0.027390761,-0.08523535,-0.08619435,-0.06639086,0.11348252,-0.016209403,-0.013472478,-0.028071683,0.10053871,-0.02927166,-0.07408452,0.041611742,0.09153519,0.077714585,0.047207177,-0.018890178,-0.07259631,0.018682359,-0.054538723,-0.04161035,-0.09461168,0.04929483,0.055028506,0.02032338,0.00888289,0.032679647,-0.03158141,-0.045134265,-0.00010276406,-0.0006870847,0.06266268,0.0048362,0.0626087,0.02633874,0.019048877,0.09912975,-0.03919456,0.00032606666,0.0032546862,-6.4129104e-08,0.043927442,-0.014913723,-0.08768467,0.05102284,0.053388767,-0.08666806,-0.022419306,-0.024349267,-0.045767535,-0.044378273,0.07369681,-0.011830329,0.025097596,-0.0031304017,0.002501862,0.0084552225,0.06794008,0.10093838,-0.038032826,0.026854983,0.027448377,0.018979551,-0.016921116,-0.0050006784,0.024004841,-0.011996826,-0.076904275,0.038595602,0.035058554,0.026417261,-0.04934036,-0.022913897,-0.058405045,-0.0700204,-0.031362224,-0.001296499,-0.036464218,0.0118565075,-0.050215207,0.021536445,0.056173198,-0.076853365,-0.10392169,-0.012552091,-0.01828366,-0.087644026,-0.061722953,-0.0505962,-0.033559505,0.05721284,-0.054792315,0.030036286,-0.02894145,0.008242769,0.083471924,-0.055953357,0.009019305,0.0024547386,-0.11900547,-0.043249056,-0.035992336,0.06418863,-0.012863077,-0.076319344} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:52.326611+00 2026-01-30 02:01:10.48304+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1732 google Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB 1 t 1735 Go Karts Mar Menor unknown Atención fenomenal, vehículos en buen estado, circuito seguro, diversión asegurada. atención fenomenal, vehículos en buen estado, circuito seguro, diversión asegurada. 5 2025-09-02 00:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"E4.01": "circuito seguro", "O1.03": "vehículos en buen estado", "O1.05": "diversión asegurada", "P1.01": "Atención fenomenal"} {0.023534985,0.049033675,-0.02034166,0.008554965,-0.030592278,0.0041990723,0.023773018,0.1268714,-0.016298413,-0.043463383,0.034821395,0.011985032,-0.025093092,0.0030229366,-0.070619024,0.010702828,0.050486207,0.06843178,-0.001372131,0.0019830675,0.10072562,-0.009192123,-0.017283864,0.077556826,-0.0733187,0.008012936,-0.04197365,0.004860091,-0.07146942,-0.1553675,-0.0033010435,0.068086594,0.010106686,-0.05685072,0.02843438,-0.050110117,-0.046504106,-0.017963968,0.020224921,0.031628247,-0.071500935,-0.10369151,-0.06339352,-0.062414262,-0.015627598,-0.056734137,0.018120773,0.035974994,0.08747633,-0.09482011,0.030768272,-0.0102625415,-0.07509482,0.053029086,-0.06951747,-0.036116064,-0.0760405,0.021155246,0.099593766,0.04274415,0.085722975,0.06538146,-0.033765275,0.07504103,-0.057797875,-0.034472436,0.05122228,0.0054710126,-0.050877973,0.048764993,0.13041502,-0.07155858,0.055281315,-0.039830126,0.0028571298,-0.0004454206,0.020513069,0.0027611798,-0.00093921745,-0.07007227,-0.012423737,-0.034643523,-0.0073312307,-0.053476173,0.045827247,0.008636452,-0.049154077,-0.0048135174,0.022578599,0.039368253,-0.0389147,0.0052141678,0.013068483,-0.029362807,0.05629258,-0.010471099,0.049341,-0.047279093,0.11110883,0.04135424,0.05119444,0.063920096,0.011643344,0.037512697,-0.017224586,0.03935657,0.040954627,-0.018325416,0.03406081,-0.04202772,-0.015985094,0.0034424532,-0.005135744,-0.0238197,-0.058495827,0.04138641,-0.019560106,-0.05653072,-0.04440477,-0.014645015,0.009861876,0.009293916,0.00071991025,0.04338044,0.063366465,0.03183169,0.07621371,5.0723896e-33,-0.07727925,-0.05564868,-0.06606507,0.0050697783,0.017741272,0.0007517348,-0.07730776,-0.00653753,0.034037564,-0.022276994,-0.11917541,0.0043255812,-0.009668835,0.010493697,0.04494843,-0.08191928,-0.018959574,0.026650243,0.04599881,-0.048570268,-0.031202195,-0.04094101,-0.025515553,0.052297175,-0.008665438,0.026931748,-0.04621155,-0.062967524,-0.033288945,0.05330823,0.02324819,0.09719741,-0.0376654,-0.013130105,-0.062628016,-0.012939871,-0.0018587899,0.018466644,-0.046002794,-0.012421388,0.0064357263,0.03952456,-0.043223754,-0.0051775095,0.035061605,-0.072483964,0.0316551,0.08109925,0.1269746,0.07384351,-0.09256193,-0.07724335,-0.0034580654,-0.12212434,-0.0006436651,0.043990213,-0.07407154,0.07732325,0.060994845,0.04082098,-0.039261267,0.0982851,-0.008598466,-0.07931336,0.024757126,0.06788699,0.0150127355,0.003636967,0.037311632,-0.055150244,-0.11112498,-0.011016344,-0.024659619,0.11575621,0.030343669,0.0029989416,-0.034914944,0.01912542,-0.04523312,-0.045206062,-0.07650689,-0.0011432308,0.00661554,0.049944837,0.13044855,0.07640588,0.05585064,-0.0070778914,0.038487352,0.117291406,-0.023914095,0.030116852,-0.06005293,-0.046972428,0.115642756,-5.8009085e-33,0.05516922,-0.00422469,-0.018728862,0.05113971,0.043132447,0.031146666,-0.045579873,0.008156235,-0.03506491,-0.036825653,-0.08243524,-0.014369329,0.07604794,-0.08595417,-0.064433634,-0.04402169,0.011093963,-0.04050726,-0.093113594,0.025647849,-0.07604769,0.0035230336,0.044172768,-0.019088758,0.0018414307,0.033143274,-0.02458328,-0.02612499,-0.09007805,0.052771397,0.026732324,0.01572885,-0.056076907,0.031347476,-0.066235006,0.07446126,0.03598089,0.052991796,-0.07868946,-0.0238161,-0.01330052,0.06353201,0.06413568,0.017082702,-0.036427308,0.011465979,-0.021032508,-0.054655273,0.0195707,-0.03927557,0.052231047,0.006754714,-0.00028392422,-0.034470838,0.04054378,-0.012125597,0.063104376,-0.05057224,-0.091809355,0.006207523,0.10669736,0.08546059,-0.023969144,-0.084730566,0.108450145,-0.047673956,-0.08760558,-0.01131088,0.05794752,0.026466202,0.061187368,-0.07944815,-0.041431114,-0.010129727,0.0007623861,-0.085910365,-0.06239282,0.01982215,-0.0030486784,0.055896096,0.021394853,-0.066706076,0.038608026,-0.0104511455,-0.04756236,-0.03626022,-0.03901601,-0.0067141843,0.024597293,0.020563751,-0.037778407,0.018432967,0.0033107433,0.03355737,0.011743413,-3.2050092e-08,0.03382408,0.037959516,0.01124273,0.035419364,0.035606958,-0.07318355,-0.019158399,0.03149804,-0.09518076,-0.018706251,0.028039912,0.033827618,0.05116093,0.053606343,-0.0401352,-0.05281639,0.064777985,0.10168344,-0.024790462,0.004114719,0.02241453,-0.046508662,-0.06817106,0.0095158685,0.104184374,-0.031630814,0.07601374,0.008424489,0.057546824,-0.032487907,0.0058125476,-0.008293648,0.055050187,-0.040217683,0.0072028856,0.03569355,-0.022713093,0.062262326,0.012148387,-0.011342637,0.036705304,-0.03602947,0.026937623,-0.018631756,7.1183604e-06,-0.054106373,-0.03271803,0.0634071,-0.022751994,-0.01171829,-0.025679145,-0.08578504,0.011754099,0.101910114,0.050455663,-0.049718115,0.017877571,-0.021813223,-0.047418308,-0.032532375,-0.049660303,0.068879545,0.03366486,-0.08691753} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:15.77661+00 2026-01-30 02:01:10.512028+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1734 google ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB 1 t 1737 Go Karts Mar Menor unknown Hemos ido varias veces, los kart y el circuito como siempre bien.\nLa única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo por el mismo dinero por ser el día del piloto hasta ahí ok.\nPues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si nos van a sacar y uno de los chicos que estaba allí me responde de bastante malas maneras que estamos en temporada alta que que me creía, y le intenté explicar que en la web no pone nada de temporada alta ni baja y el hombre pasó de mí básicamente. y ni me avisaron de nada cuando compré los ticket. Por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo. hemos ido varias veces, los kart y el circuito como siempre bien. la única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo por el mismo dinero por ser el día del piloto hasta ahí ok. pues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si nos van a sacar y uno de los chicos que estaba allí me responde de bastante malas maneras que estamos en temporada alta que que me creía, y le intenté explicar que en la web no pone nada de temporada alta ni baja y el hombre pasó de mí básicamente. y ni me avisaron de nada cuando compré los ticket. por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo. 2 2025-01-30 01:52:39.833374+00 es v5.1 P1.02 {P4.01,V2.01} V- I3 CR-N {} {"O1.04": "Hemos ido varias veces, los kart y el circuito como siempre bien.", "P1.02": "Pues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si no", "V1.03": "La única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo ", "V4.03": "Por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo."} {0.0033441498,0.058584314,-0.008883507,-0.08171195,-0.06938366,0.048750374,0.08686464,0.041249104,0.026437368,0.024376644,0.06710905,0.0016784375,-0.015246751,-0.0095934,0.07270682,0.036917098,-0.0002735557,-0.021488676,-0.029230218,-0.0018317619,0.11964343,-0.044125825,-0.09582757,0.059892815,-0.10871235,-0.016375808,0.03293161,0.026317907,-0.09206358,-0.074462704,-0.092355326,0.079526,0.091891505,0.043945484,-0.07164269,-0.044583336,0.016756075,-0.046318922,-0.07717147,0.02431919,-0.113236696,-0.037335787,-0.037724547,0.023650952,-0.015479774,-0.10094731,0.015588035,-0.0057821544,0.04541804,-0.036121223,-0.03405357,0.0074383295,0.013183899,0.007996371,0.016374556,0.021577138,-0.06908134,0.07709644,0.13668062,0.03769209,-0.03757077,0.028401267,-0.0048004766,0.016602654,-0.034701917,-0.08467841,0.070010714,-0.019745007,-0.06463051,0.09529532,0.047599286,-0.017026,-0.07982341,0.031694446,-0.039193302,0.07131255,0.0035698984,-0.021703681,-0.03928794,-0.07252765,0.012530868,-0.0031884396,-0.01722882,-0.068751104,0.014516783,-0.030228551,-0.0257563,0.084907204,0.015876658,-0.04815476,-0.031992093,0.039925896,-0.033819318,-0.008718369,0.037247226,0.027746186,0.045540743,-0.06832593,-0.010705371,0.042742934,0.12678689,0.08337926,0.029622495,0.021489665,-0.041419182,0.049986374,0.050757762,0.017040258,0.013877455,0.014787633,-0.060206853,0.024793679,-0.03334256,-0.024510562,-0.08569647,0.0030142453,-0.053727876,0.031241953,0.035577293,-0.04914643,0.020422362,-0.0038361943,-0.005596456,0.013224472,0.0042897584,-0.057035245,0.087925985,1.4478843e-32,-0.021551574,-0.0004535268,-0.007080712,-0.034706518,0.047857367,-0.013372109,-0.03418964,0.013346269,-0.05999094,0.044650037,-0.08391178,-0.015106166,-0.0101644285,-0.0038762174,0.1277899,0.011632978,0.0062638875,-0.039202612,0.069101885,0.0060150367,0.012448405,-0.06975255,0.027016347,-0.03346026,-0.006051606,0.052547097,0.011815557,-0.013711264,-0.050513238,0.049644694,-0.014092118,0.010307272,0.00739827,0.0025586311,-0.02961397,-0.058222283,0.03478265,0.020416021,-0.080200166,-0.0655349,-0.06344802,-0.00087767874,-0.048382714,0.040140357,-0.0683449,-0.03975536,0.022175208,0.020038707,0.07761249,0.06516341,-0.13205656,-0.028521933,0.05064106,-0.03954198,0.006293871,0.06173078,-0.019367443,0.017314928,-0.039228626,-0.02055446,0.01374534,-0.034661107,-0.012153823,-0.018782899,-0.0355416,0.02231549,0.001755487,-0.053319987,0.101109125,-0.005612095,-0.07519022,0.0097931,-0.008397167,-0.0050982037,-0.00862584,0.017206885,0.022639297,0.027312802,0.004635671,0.021432387,0.013551945,-0.049929738,0.02492688,0.016213605,0.11363541,0.04571092,0.04859388,0.0052613104,-0.05131344,0.1325642,-0.05892772,0.08525371,0.035392866,0.00088142994,0.0709161,-1.5817236e-32,-0.04554843,0.05778752,0.014282502,0.010260141,0.024144182,0.00085706904,0.02989112,-0.063451864,-0.04496501,-0.123535976,-0.083951436,-0.06563318,0.01306018,-0.032539394,-0.0042835097,0.009651124,-0.009508411,-0.091677055,-0.026448706,-0.025501624,0.022680784,0.07010783,-0.042924326,-0.022262776,0.014108766,-0.075734906,-0.006350737,0.08686923,-0.13394895,0.006577045,0.09712471,-0.053503152,0.027996296,0.059369937,-0.046052124,0.004189565,0.05671144,0.029750675,-0.039819997,0.1050348,0.04034982,0.10144591,-0.04226366,-0.056305293,-0.045328822,0.03862463,0.1035,-0.09478676,-0.014272129,-0.029523568,0.06062987,-0.059510387,-0.04583186,-0.026465334,0.04192842,-0.034039177,-0.036047895,-0.030961096,-0.031300735,-0.05769704,0.03094362,-0.027365895,-0.007244713,-0.04186613,0.08106995,-0.065195486,0.05135944,0.05765604,0.0296705,0.00085682404,0.04974247,0.0099564465,-0.09504933,0.01492236,0.017030872,-0.07221113,-0.089138724,0.029352192,-0.016913882,0.001933549,0.03686406,0.017260237,-0.053022817,-0.07726724,0.00021453247,0.045472156,0.014590874,0.10407155,-0.010096715,0.027085692,0.017056426,0.09144949,-0.067625515,0.013531844,-0.08356316,-5.9290574e-08,0.037646815,-0.008979291,-0.07302148,-0.007870195,0.06725726,-0.08519716,-0.008272285,0.0010829965,-0.0063943644,-0.053398523,0.07278869,0.019730462,-0.07279883,0.012710959,-0.00014798334,0.0014474266,0.026579417,0.04681357,-0.023267737,-0.01125914,0.09197847,0.011490348,-0.083167404,-0.021045214,0.07764631,-0.0069826953,-0.03603342,0.035426434,-0.00037434083,0.030507306,-0.052689705,-0.005806246,-0.05893369,-0.09617266,-0.041860167,-0.10133777,0.002798952,-0.016256355,0.042271666,-0.022483606,0.07696999,-0.027251825,-0.088424034,0.026880976,-0.07782425,-0.028300207,-0.023248183,-0.028741451,-0.02341852,-0.026715077,-0.058836117,-0.08107713,0.024667306,0.017722256,0.09466049,-0.061168365,0.055579428,0.031131206,-0.009378408,-0.013482824,0.040777925,0.0778268,-0.0372708,-0.07429989} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:36.86593+00 2026-01-30 02:01:10.518931+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1736 google ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB 1 t 1739 Go Karts Mar Menor unknown Disfrutamos mucho. Nosngustabir pero los precios son demasiado caros para el tiempo de pista. Es minpercepción. Iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir cada semana disfrutamos mucho. nosngustabir pero los precios son demasiado caros para el tiempo de pista. es minpercepción. iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir cada semana 3 2026-01-30 01:52:39.833374+00 es v5.1 V1.01 {V1.02} V- I3 CR-N {} {"V1.01": "pero los precios son demasiado caros para el tiempo de pista", "V4.01": "Es minpercepción. Iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir ca", "V4.03": "Disfrutamos mucho. Nosngustabir"} {0.04099386,0.046880454,-0.015471348,-0.059869282,-0.14432275,-0.015882775,0.03395069,0.074678734,0.0009322065,0.0068715042,0.08676364,-0.018971613,-0.00011786698,-0.037109293,0.051101796,0.018777845,0.075262725,0.025663253,-0.022686815,0.05410443,-0.02667003,-0.09254547,-0.13734877,0.0724749,-0.04713272,-0.060374606,0.07306117,-0.0023099831,-0.054374926,-0.04581383,-0.037775297,0.0381394,0.10514113,0.0045598065,-0.02588294,0.050630797,0.031000528,-0.09129515,-0.059963904,0.05527867,-0.055133563,-0.0032970537,-0.061929073,-0.061294578,0.0009841578,-0.0061297854,0.02626839,0.08114149,0.033540685,-0.0060088634,-0.0775675,0.07050781,-0.022044633,-0.033875015,-0.06614303,-0.09084492,-0.0028334684,0.0024641044,0.017599072,0.046410687,-0.049301587,-0.01134111,-0.03822639,0.049268916,0.054041818,-0.029181972,0.0119826095,-0.04883652,-0.112427734,0.045085546,0.09099387,-0.057757076,-0.004796123,-0.027837861,-0.05351814,0.03336496,0.04377976,0.022610102,0.011840295,-0.07320319,0.012588901,0.01022595,-0.03322437,0.006929433,-0.026059227,0.03460482,-0.014169704,-0.0042137266,0.021794014,-0.0067487243,0.008810434,0.12737742,-0.08692927,-0.018411398,-0.051013146,0.02662231,-0.010985536,-0.06697684,-0.0021790292,0.018191136,0.076272935,0.046636768,0.01779534,-0.032131646,-0.109712504,0.011737322,0.009299109,-0.030825874,-0.0027967428,0.0768066,-0.027205277,-0.026681978,-0.021869052,-0.022432832,-0.0923814,-0.0016783355,0.04747747,-0.033156794,-0.004043814,-0.05247066,-0.010619599,0.010627356,-0.020372448,-0.03377811,-0.057001468,-0.11094413,-0.009984833,1.6305766e-32,-0.060287938,-0.009866662,-0.02280176,-0.010464411,-0.020141799,0.037368853,0.011688133,-0.036234856,-0.06733328,-0.0044101314,0.005966224,0.07325807,-0.0019231061,-0.020369025,0.034159143,0.037191767,0.04498916,0.006411342,0.05897881,-0.019538894,-0.094497524,-0.029450895,0.017586231,-0.0015268269,0.008992941,0.08945757,-0.011653048,-0.09429714,-0.0754522,0.028717035,0.043990336,0.031733137,0.038944468,-0.06643279,-0.031823903,-0.022540733,0.037345733,-0.001137037,-0.06977064,-0.012237175,-0.09105654,0.03990256,-0.004412359,0.041986525,-0.09646064,-0.02450539,0.04003675,0.014695161,-0.0092253275,0.06749866,-0.05077499,-0.07000305,-0.029555162,-0.0070288884,-0.023287803,-0.06829095,-0.10428581,-0.047663867,0.0026971789,-0.046394575,0.022295035,0.03280802,0.0016463957,-0.035405036,-0.061699647,-0.07126751,0.01617177,0.038561694,0.17146409,0.043785974,-0.014169918,-0.006283823,-0.031705372,0.0058780704,0.022108402,-0.0073302197,0.027202012,0.054940812,0.07133383,0.048099652,-0.015887545,0.023735946,0.06531661,-0.013797575,0.045794822,0.14697872,0.119718984,0.03017291,-0.042935155,0.14618495,0.0031183679,0.085390516,0.041813906,-0.029479023,0.07113975,-1.5320308e-32,0.0038318066,-0.02266102,-0.04629928,0.0123773385,0.011700968,-0.012487659,-0.020992978,-0.063032195,-0.013518357,-0.036066804,-0.07037267,-0.080598734,0.1316997,-0.0015312476,-0.05366458,0.079593934,0.04656899,-0.06160579,-0.012869509,-0.031913348,-0.011658604,0.018919319,-0.003925071,0.06611787,0.031274743,-0.10754672,-0.0070982985,-0.0055882926,-0.10057463,-0.05909635,0.053695276,-0.038598254,0.0026187385,0.040686596,-0.028359376,0.051794544,0.0122501375,0.08087158,0.044042002,0.06455096,0.014317482,0.012511596,-0.043094713,-0.021744464,-0.047379754,0.011356415,0.014627357,-0.16377857,-0.0074619413,-0.04557974,0.043138158,-0.03849448,-0.018128436,0.026853066,0.025470585,0.04327613,0.028637799,-0.04144505,-0.08395971,-0.03797067,0.07211156,-0.03705055,-0.009138997,-0.0013306288,0.08513985,0.010212091,0.053726513,-0.07329243,0.042502396,0.006336328,0.061753068,-0.012095138,-0.010646099,0.023073604,-0.053851888,0.049952753,-0.032991756,0.0131307915,0.059499264,0.038884617,0.006140049,-0.014378621,0.011998784,-0.041233506,0.009652026,-0.011368947,0.02169139,0.020326676,-0.0328661,0.04060419,-0.039678544,0.035253722,0.0060007353,-0.09084641,0.003022848,-5.141973e-08,-0.008041297,-0.11631394,-0.018912224,0.043756712,0.042440493,0.024235534,0.027162027,0.024130343,-0.020874467,0.13320094,0.05195278,0.004200738,-0.023470687,-0.0082347095,0.0018071947,0.05954372,0.13747247,0.044907786,-0.03431373,0.008983259,0.026901718,0.052809503,-0.041847974,-0.036588527,0.035547353,-0.030094516,-0.0020545847,0.011485517,-0.040124882,-0.049716715,-0.045697257,-0.05275832,-0.027811037,-0.101807445,-0.0058770278,0.01235798,-0.03234586,0.022935374,-0.007964701,-0.022107022,0.071090646,0.04282283,-0.0629587,0.0014743431,-0.053682804,-0.033267014,-0.01724236,-0.022032214,-0.051323406,0.0571529,-0.0205988,0.0078092967,0.13309155,0.010457432,-0.0031600161,-0.04417434,0.057598077,0.03700127,-0.010312283,0.009297142,0.05107259,0.12675294,0.042494074,-0.07024145} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:54.297656+00 2026-01-30 02:01:10.524848+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1738 google ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB 1 t 1741 Go Karts Mar Menor unknown He ido varias veces a rodar en los Karts de 200, 300 y 400. Siempre perfecto. Actualmente también ruedo con la pitbike y la pista siempre muy limpia. Además hay bar por lo que puedes quedarte a comer, almorzar... he ido varias veces a rodar en los karts de 200, 300 y 400. siempre perfecto. actualmente también ruedo con la pitbike y la pista siempre muy limpia. además hay bar por lo que puedes quedarte a comer, almorzar... 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.04 {} V+ I3 CR-N {} {"E1.01": "Actualmente también ruedo con la pitbike y la pista siempre muy limpia.", "O1.02": "Además hay bar por lo que puedes quedarte a comer, almorzar...", "O1.04": "He ido varias veces a rodar en los Karts de 200, 300 y 400. Siempre perfecto."} {-0.020320212,0.060823824,-0.012011359,-0.01995334,-0.13047254,0.016423333,0.009381142,0.13040951,-0.06490157,0.024097173,0.01351389,-0.034892183,0.005556637,-0.051307097,0.020586751,0.003046169,-0.05272429,0.025895106,0.04473349,-0.010520253,0.017880311,0.0049028294,-0.04904115,0.0052652527,-0.10798096,-0.016717104,0.04072987,0.0042487653,-0.021438235,-0.0255715,-0.004029374,0.04483759,0.012460666,-0.008477391,0.025574785,-0.00052206044,-0.015365276,-0.036505476,-0.04250621,0.02654856,0.0023832659,-0.039402165,-0.05703658,-0.011519078,0.027886692,-0.039477497,-0.020057954,0.06983095,0.044343747,-0.03761858,-0.072183385,-0.005781219,0.07068495,-0.076093465,-0.011784415,-0.0533065,-0.02153763,0.03892692,0.098127455,0.08430149,0.04344428,0.09095099,-0.062645026,0.023678731,0.009212358,-0.08088009,0.0020201649,0.032235228,-0.07348889,0.13475862,0.15293314,-0.030901588,-0.06866386,0.072463535,-0.032499574,0.011470685,-0.0065295054,0.02550049,-0.061097138,-0.02468145,-0.03257489,-0.05046125,-0.008319746,-0.11902421,-0.025239538,0.00991231,0.040186644,0.05853502,0.024163341,-0.0017008444,0.00023075422,0.05515222,-0.11699881,0.015880428,0.01621832,0.06102852,0.03780854,-0.039098367,0.024848329,0.011731741,0.10911902,-0.015269069,0.094047666,0.024425901,-0.086270556,-0.019363193,0.06937488,0.026985431,0.019572645,0.047926195,-0.037726372,-0.038634468,-0.0028973536,0.022387426,-0.046093557,-0.046773937,-0.09836166,-0.0108834775,0.0015981606,-0.017187716,0.06645853,0.07921349,-0.037737373,0.037672773,0.02010701,-0.049336024,0.02092116,9.969241e-33,-0.025258502,-0.02518377,-0.008602637,0.024148583,-0.0052071908,-0.027700545,-0.03344656,-0.09696585,-0.052267954,0.011484129,-0.04697708,-0.020725617,0.013158074,0.074266985,0.03473128,0.076318994,0.05748744,-0.0682438,0.056935135,-0.0016514631,-0.009732833,-0.05768475,0.03027132,0.040237978,-0.004166624,0.07585272,0.10911775,-0.1021083,-0.12170948,0.041887436,-0.07984909,-0.0023823506,0.025215663,-0.048242074,-0.023014648,-0.052951045,0.014183715,0.036442656,-0.09222861,-0.03291912,0.0458715,-0.024614546,-0.029358676,0.05312105,-0.05364771,0.026205394,0.07035008,0.0656462,0.019883884,-0.0057702702,-0.04903692,-0.02501228,-0.07102777,-0.008433491,-0.019726677,-0.047312554,-0.017406937,0.027590761,-0.00814096,-0.02441309,0.07607303,0.029950054,0.036637846,0.010023546,-0.06523602,-0.043894436,-0.023847237,3.0239891e-05,0.06941834,0.019735137,-0.03346446,-0.036456663,-0.0014104602,0.017447982,0.051479757,-0.036583364,0.00476268,0.1203482,-0.04601238,0.05283685,-0.0709517,0.017271701,-0.0053848475,0.013624371,0.020566747,0.079901755,0.06356061,0.046601735,-0.045604378,0.12409239,0.04533715,0.0053132344,-0.014962186,0.005561654,-0.00033879018,-1.0321502e-32,0.035286304,0.09597254,0.10089513,0.07436111,0.0067524198,-0.06978843,-0.011127953,0.028276015,-0.02144527,-0.06621838,-0.028597645,-0.050644185,0.1410412,-0.014763191,-0.018713534,0.08067646,0.041317888,-0.08801003,-0.06285546,-0.07442623,0.04478974,0.012569229,0.08228691,-0.0045722933,-0.04218063,-0.07011276,-0.016480446,0.034772415,-0.17641602,-0.023964025,0.043835938,-0.074942805,-0.025801824,0.020129513,-0.0174359,0.007189701,0.0765671,0.09442588,0.0076163,0.08014242,0.045516748,0.06577098,-0.049442623,-0.0022065635,0.0071029584,-0.014628718,0.101697035,-0.12973678,0.006029045,-0.09696745,0.093701854,0.033986807,0.0020504624,-0.024290415,0.08520504,-0.04411931,-0.029823061,-0.049027167,-0.14324704,-0.03336883,0.0130135575,0.009432045,0.013526445,0.0026730406,0.07322688,0.008089371,-0.036109883,-0.05624465,0.000576457,-0.035122544,0.02304732,-0.0513234,-0.0687605,0.066391386,-0.058474306,0.014467134,-0.09502813,0.0420575,0.041033644,0.0061184103,-0.027380263,-0.053273596,0.007768215,0.009228176,0.036838025,0.0027320487,-0.07891853,-0.013680745,0.02837132,0.015695797,0.031617288,0.03547833,-0.030039623,-0.0542898,0.01877283,-4.841493e-08,-0.012801741,0.020968227,-0.09585339,0.021805923,0.041652326,-0.0075708656,-0.012603142,0.023505922,-0.00095311203,0.052036725,-0.015679061,-0.048315823,0.031159373,0.06499192,-0.007133188,0.01529904,0.055602193,0.0677946,-0.025499195,-0.033263683,0.07519782,-0.05413281,-0.019916615,0.030759206,-0.041928668,-0.027776401,-0.055269804,-0.016884133,0.038868118,-0.0004697026,-0.01726268,0.0016499449,-0.0689586,-0.08353247,0.052198414,0.012776324,-0.017207196,0.049244404,-0.006281448,0.012373465,0.049640726,-0.044393454,-0.045430638,0.016030675,-0.06967233,-0.049220715,-0.07854758,-0.018688682,0.006436245,-0.029245162,-0.030144084,0.004903024,0.1006147,0.026849382,0.051916596,-0.026404409,-0.023425654,0.012899205,-0.04126321,-0.027575586,0.019331202,0.024922166,-0.036322817,-0.04051338} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:06.652135+00 2026-01-30 02:01:10.530926+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1743 google ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE 1 t 1746 Go Karts Mar Menor unknown Un circuito 10, rápido y muy técnico, los dueños son gente muy cercana y con precios asequibles. un circuito 10, rápido y muy técnico, los dueños son gente muy cercana y con precios asequibles. 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.04} V+ I3 CR-N {} {"O1.02": "Un circuito 10, rápido y muy técnico", "P1.01": "los dueños son gente muy cercana", "V1.01": "con precios asequibles"} {-0.06404159,0.03280362,-0.020007096,-0.05356683,-0.05004641,0.03173655,0.044770703,0.086564675,-0.05025073,0.031471193,0.06592552,-0.042495437,0.016386177,0.036585048,-0.017033186,-0.0038736023,-0.058642395,0.019743128,0.022029703,-0.024486164,0.096311495,-0.029501969,-0.057139594,0.14703217,-0.0382425,-0.06886893,0.0313969,0.03126388,-0.047518082,-0.054599103,-0.080738634,0.0722894,0.08497289,-0.0005086148,-0.046729494,-0.029138546,0.053728335,-0.029297384,-0.015053244,0.0395936,-0.1251971,-0.052921664,0.028450286,-0.0005340326,-0.026832262,-0.034124896,0.07734513,0.02757253,-0.0037499277,-0.04238406,-0.013174065,-0.025289793,0.00060514215,0.011572043,-0.050796982,0.00048504127,0.0030086644,0.01081462,0.029279787,0.025326507,-0.044264678,-0.008011233,-0.059368838,0.028185017,0.01405405,0.016533636,0.026226815,-0.016696278,-0.08917294,-0.0001901018,0.16171688,-0.08168789,0.05343341,0.011783487,-0.035680693,0.08335176,0.040977374,0.028714951,-0.05085484,-0.07633648,0.028971698,-0.012676588,-0.05085096,-0.079075165,6.123228e-05,0.0068736784,-0.034178328,0.0060266694,0.0068615437,-0.03675243,0.0009800323,0.009124652,0.003717142,-0.0052190633,-0.045443024,0.047968797,0.0486855,-0.07555151,0.033972286,0.012152483,0.06703401,0.020675234,0.041482754,0.041655555,-0.0043064244,0.043569915,0.07139195,-0.038107358,0.010768858,-0.005186317,-0.029270403,0.014200915,-0.08234563,-0.002690677,-0.0642357,-0.022816706,0.0111275185,-0.013286558,0.011705452,-0.119744256,0.039429035,-0.0035597014,-0.067251384,0.0039798473,-0.010169794,-0.002048622,0.04128298,8.082121e-33,-0.04824807,-0.031536505,-0.063844174,0.07480156,-0.023753455,0.05295652,-0.061022848,0.040892188,-0.02037818,-0.04735799,-0.07514434,0.051918097,0.022311788,0.026820065,0.01651939,-0.07021429,-0.015554798,-0.07610688,0.07958925,0.0135698095,-0.07631284,-0.0039823595,0.029677048,0.061503086,0.043461885,0.03635236,-0.071615875,-0.043271452,-0.023597721,0.025051253,-0.0076418878,0.051717546,0.0230378,-0.022060538,-0.02483574,-0.008629287,0.07485374,0.021230077,0.044271033,-0.035396084,-0.00021646827,-0.014742171,-0.047896016,0.019446714,0.032958765,-0.05342226,0.023011986,0.0744433,0.067498714,0.030670859,-0.06793312,-0.04287486,-0.11241671,-0.08448965,0.05353625,0.014425069,-0.01996338,0.07964586,0.052058045,0.033080425,-0.012109752,0.05819317,0.00563263,0.0137366885,-0.063020304,0.041797586,0.039629724,-0.0027003326,0.10885676,0.04538388,-0.09825957,-0.08436904,-0.07444344,0.017111173,0.014570345,0.009010103,0.0076981005,0.017802147,0.032306977,0.0079529835,-0.114785634,0.027344733,0.004764896,0.044729516,0.08742006,0.11129162,0.03855609,0.039805606,-0.002010556,0.0670888,-0.00036101855,0.06489795,0.098619215,-0.017928556,0.048801154,-8.6501375e-33,-0.01027622,-0.046176936,0.014551537,0.06755956,-0.01233219,-0.012662412,-0.027755788,-0.07531772,-0.0210127,-0.02815517,-0.054631907,-0.11096754,0.049530163,-0.07872861,-0.0042896033,0.0244943,0.032260764,-0.027725708,-0.04810023,-0.009806436,0.068558045,0.048038103,-0.027672509,-0.0523647,-0.05884318,-0.05221066,-0.07394942,0.023873772,-0.048732106,0.03160128,-0.07385955,-0.040973842,-0.01062772,0.07345813,-0.019757297,0.049506363,0.07651549,0.053920522,-0.018979486,0.0065196487,0.017622834,0.078562565,-0.03536121,0.05328802,-0.08484285,0.062324088,-0.0395861,-0.11223433,-0.053935036,-0.010157088,0.026801694,-0.03606553,-0.027317813,-0.022249276,0.0076874513,-0.030159138,-0.0500591,-0.027533863,-0.038692873,-0.018029023,0.059307918,-0.037007038,-0.022996532,-0.039974626,0.09558998,0.034888767,0.010056402,0.053008206,0.115141794,0.037632693,0.115850285,0.0346656,-0.028055646,-0.09089689,-0.09145923,-0.05590719,-0.12482528,0.03149716,0.0028121464,0.025756469,0.04366389,0.03984196,-0.026545791,-0.03505136,-0.033959888,-0.025754517,0.06123393,0.035863046,0.028791409,-0.013290277,0.025163878,0.069807775,-0.030617895,-0.051724005,0.015930993,-3.7670176e-08,0.030141098,-0.044200853,-0.016496032,-0.01936037,0.11632858,-0.08778102,-0.014490894,-0.01049571,-0.018440416,0.032864597,0.04035978,-0.052570306,-0.0010205418,0.055489764,0.013404177,0.004295464,0.01737731,0.11788264,-0.019746294,0.026893716,0.07965729,0.03746914,-0.048061978,0.027998935,0.025617516,0.026106443,-0.029451972,0.021998098,-0.040927544,-0.00871989,-0.033165764,-0.060619887,-0.09475597,-0.07409053,0.054362044,0.04664991,0.016474798,-0.013937515,0.019028304,-0.07087328,0.04105413,0.0043828622,-0.053794093,0.05286712,-0.008140513,-0.120424934,-0.088042796,0.042700987,-0.03162274,0.06592845,-0.05308911,0.014000314,0.027678683,0.022951342,0.027654408,-0.06607604,0.06203218,-0.024512311,-0.10502346,0.0043091695,0.04948763,0.12293168,0.09303998,-0.10545679} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:06.225564+00 2026-01-30 02:01:10.547308+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1867 google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB 1 t 1870 Go Karts Mar Menor unknown KARTING DE LUJO¡¡¡ perfecto para pasar un buen rato con los amigos,familia.\nlos chicos encantadores y muy atentos¡¡¡¡ comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta genial.muy bien localizado..\nMUY RECOMENDABLE¡¡¡¡¡ karting de lujo¡¡¡ perfecto para pasar un buen rato con los amigos,familia. los chicos encantadores y muy atentos¡¡¡¡ comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta genial.muy bien localizado.. muy recomendable¡¡¡¡¡ 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"A4.01": "muy bien localizado..", "E1.04": "comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta ", "O1.05": "KARTING DE LUJO¡¡¡ perfecto para pasar un buen rato con los amigos,familia.", "P1.01": "los chicos encantadores y muy atentos¡¡¡¡", "V4.03": "MUY RECOMENDABLE¡¡¡¡¡"} {0.050833017,-0.056437418,0.016410599,-0.021562086,-0.08196776,0.0050156517,0.055913795,-0.027804498,-0.03737492,-0.006586107,0.07193463,-0.011302717,-0.03718861,0.0013748158,0.0018825232,-0.02766124,0.01970718,0.03439288,-0.022456525,-0.009086182,-0.0083614485,-0.08023217,-0.02306196,0.11499286,-0.099118896,-0.027844029,0.011280741,-0.021423709,-0.0330175,-0.037129205,-0.030298837,0.09287857,0.072132036,-0.01918215,-0.004347333,-0.0022936882,-0.0025951234,-0.03428844,0.014041007,-0.019252865,0.0024550587,-0.032502893,0.02292028,-0.05685689,-0.028385159,-0.0742529,-0.06292853,-0.011755485,-0.0015945258,-0.028800434,0.017112218,-0.02065704,0.009434475,0.0213792,0.0030775135,-0.020710133,-0.07894694,-0.029133093,0.10275648,0.07615305,-0.038357127,0.046047587,-0.0015159667,0.02917288,-0.060518965,-0.100061476,-0.011665193,0.05109888,-0.0346442,0.07331241,0.059737165,-0.058875047,-0.0075129317,0.010892459,0.006375599,0.009801445,-0.015797297,0.016121337,-0.058184974,-0.026218262,-0.05023145,-0.027890382,0.040213894,-0.08010266,0.0584423,-0.000106111045,-0.0066028996,0.022231372,0.032721046,-0.011635484,-0.06597596,0.085233465,-0.117220536,-0.041183583,-0.062280774,0.027829785,0.021377493,-0.10536538,0.018985977,0.05617883,0.026528107,0.05881809,0.11793659,0.011271644,-0.04248476,-0.05209492,-0.0121285515,-0.043299794,0.01306746,-0.028485619,0.0144496765,-0.05278517,0.046539843,-0.010487338,-0.06889793,-0.017661102,0.055797882,-0.080011725,0.024026075,-0.030083945,0.00774354,0.004513377,-0.060256936,-0.010795891,-0.024579827,-0.053982202,0.104153395,1.2511274e-32,-0.07444315,-0.11184686,-0.028199574,0.043430302,0.11936629,-0.02902973,9.881372e-05,-0.050477374,-0.045149397,-0.03002826,-0.0020909037,0.043085724,0.013118482,-0.0018511052,0.085606605,0.017774682,-0.017320286,-0.038715884,0.08404244,0.060886268,-0.019917069,-0.03431521,-0.019590244,0.05860497,-0.00020211883,0.013873228,-0.020889312,-0.039942835,-0.0012518135,0.06058622,0.013631473,-0.0004677289,-0.020680727,-0.04819411,-0.11119015,0.0029891601,0.035247795,0.026801001,-0.056289934,0.03707902,-0.026327183,-0.036742747,-0.010319418,0.079205796,-0.07698904,0.05275615,0.078486495,-0.014029841,0.01208898,0.045612685,-0.07506096,-0.06620707,0.045829825,-0.012063458,0.00685755,0.039587665,0.019521398,0.0041098353,-0.009031881,-0.05960074,0.07151286,0.019670917,0.0076470952,-0.08747823,-0.02544834,-0.07251528,0.033982646,0.027474044,0.109469295,0.008616736,-0.070059076,0.01010717,-0.020946622,-0.050812915,0.06372046,-0.016268348,-0.020659136,0.025710754,0.0010562988,0.013033624,0.048914354,-0.017994078,-0.025590336,0.073353335,0.051925514,0.041054007,0.021491773,0.064720094,-0.014817466,0.053719793,-0.07040563,0.061150983,0.07404829,-0.0028970996,0.016103705,-1.2340234e-32,0.0050531146,0.045868397,0.010527692,0.12020321,-0.02626513,0.057609577,-0.025310595,-0.094545074,0.04052704,-0.03251808,-0.15589663,-0.0761463,0.058636844,-0.021135008,0.016052393,0.088439055,0.016973227,-0.014453553,-0.062470775,-0.06853665,-0.027276576,-0.0025827752,-0.005924082,-0.03765471,0.001045622,-0.016934091,0.0035924548,0.011945321,-0.14430815,0.004661254,0.011412362,-0.06838179,-0.0018518075,0.01924932,-0.045883887,-0.0075752023,0.04077571,0.10610907,-0.08225681,0.027270254,0.05166735,0.057730548,-0.012373546,0.11208897,-0.04976817,0.032992017,0.053076975,-0.10210272,-0.022691632,0.024497055,0.016572578,-0.024060115,-0.10004826,-0.063122176,0.01940836,-0.043088242,0.026887124,-0.034044318,-0.126001,-0.06918074,-0.031154308,-0.024426188,-0.018668482,0.020581724,0.0771655,0.023675013,-0.0664828,-0.0017216405,-0.028287452,0.054131635,0.00464917,0.033853598,-0.03384655,0.057795443,-0.0055231033,0.023726813,0.00046660964,-0.035388958,0.020896161,0.022453686,0.052252345,-0.06728031,0.016305424,-0.06261217,-0.013632945,-0.033551715,-0.0459353,0.09259649,-0.00025725146,0.027964754,0.057043876,0.065402076,0.013319253,-0.081288025,0.005407841,-5.772774e-08,-0.016675616,-0.10060199,-0.15067115,0.034702625,0.056113448,-0.038685095,0.013810724,0.03468879,-0.001153526,0.051107883,-0.06354537,-0.0035202974,0.043808322,0.10882117,0.017985363,0.09515222,0.12509796,0.07298763,-0.051603083,0.041199427,0.0058812993,0.0037946857,-0.028327778,0.04069093,-0.0054033627,0.005078863,-0.09411615,0.040153906,0.008071708,-0.02397089,0.0032524997,-0.027523799,-0.03347714,0.048184115,-0.025128428,-0.053682085,-0.07254778,0.022163752,-0.033874802,-0.046921544,0.02498651,-0.0961811,-0.027328758,-0.034229133,-0.077155724,-0.0042311437,-0.006702097,0.042595327,0.0032404484,0.09475184,-0.06552178,-0.023707215,0.065439716,0.0191203,0.041771453,-0.07576402,0.045173757,-0.010044996,0.08258677,-0.041316465,-0.029253775,0.16426183,0.051663425,-0.033305928} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:48.030286+00 2026-01-30 02:01:11.003802+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1745 google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB 1 t 1748 Go Karts Mar Menor unknown Me gustó la experiencia, tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 euros que fue la que elegimos, también dependía de la cilindrada. Incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte. Está bien para echar el rato. Las pistas están bien, los karts como es lógico con las ruedas desgastadas. me gustó la experiencia, tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 euros que fue la que elegimos, también dependía de la cilindrada. incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte. está bien para echar el rato. las pistas están bien, los karts como es lógico con las ruedas desgastadas. 4 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"E1.03": "Las pistas están bien", "O1.03": "los karts como es lógico con las ruedas desgastadas", "O3.01": "Incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte.", "V1.01": "tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 eu", "V4.03": "Me gustó la experiencia"} {0.02400953,-0.002905174,-0.035716873,-0.046439514,-0.117359094,0.01993344,-0.018242804,0.06929978,-0.018763192,0.029287905,0.008677632,0.01055382,-0.045991328,0.012032833,0.03584358,-0.05147627,-0.037356604,-0.030898554,-0.011434193,0.00508872,0.05435307,-0.10186044,-0.12129444,0.04927941,-0.031447943,-0.012301199,0.06600347,0.016608234,-0.019720856,-0.0715107,-0.06941789,0.035781275,-0.0064251544,-0.0461236,-0.0039210552,-0.04837606,-0.031313255,-0.05486026,-0.06700475,0.0483171,-0.019251565,-0.050012387,-0.090340495,0.046891883,-0.035796363,-0.03790856,-0.012348713,0.10478428,0.019198459,-0.0049698967,-0.02036951,0.029915858,-0.029925467,-0.038955495,-0.025500653,-0.011323103,-0.08398915,0.026073715,0.12901114,-0.010594616,0.015354484,0.07988981,-0.035064854,0.044928126,-0.023630219,-0.06965528,0.01843986,0.015281049,-0.05504571,0.048565134,0.108561225,-0.0693173,-0.018278394,0.020722114,0.05173508,0.05026172,0.052653227,-0.08249036,-0.12965189,-0.024609447,0.03672512,-0.029934507,-0.024102492,-0.063779354,0.0012951693,-0.029417234,0.018809708,0.1021434,0.031591937,-0.057282303,0.05633843,0.0674462,-0.057667084,-0.037287913,0.024544597,0.08687668,0.018122049,-0.0053526512,0.014107919,0.011684252,0.10474068,0.019132698,0.061120603,0.024567641,-0.03686918,0.033669043,0.080879465,-0.01642852,-0.014059278,0.022702675,-0.068729356,-0.00034251658,-0.028623983,-0.0652573,-0.10103856,0.0025153032,-0.028750295,-0.024178777,0.0430111,0.009150851,0.03721647,-0.043807518,0.005889316,0.0041936864,0.021371277,-0.03880024,0.01941451,1.20627335e-32,-0.11845701,-0.03998401,-0.05224129,-0.027712373,-0.060551107,-0.035017885,-0.038448542,-0.11314672,-0.13830228,0.004971589,-0.06327231,0.07349303,-0.029492127,0.0040311073,0.09471772,-0.0029032622,0.05841832,-0.047568176,0.060052752,0.009366942,-0.029700574,-0.10009815,0.010807366,0.07489668,-0.00073269097,0.039396584,0.054452416,-0.032837402,-0.04090978,0.042809006,-0.08532982,0.041746087,-0.04069042,0.0025315767,-0.08467493,-0.0026007884,-0.008797734,0.033871356,-0.041330993,-0.0042404276,0.00832779,-0.032343667,-0.012531098,0.045771733,-0.02995301,0.03361062,0.022800183,0.0017537937,0.004964342,-0.031179402,-0.09771864,-0.01146852,-0.06520585,0.005270382,-0.0151277,0.003617736,-0.016860178,-0.029289423,-0.064304,-0.036533616,-0.037777267,0.01567557,0.009421634,-0.045661792,-0.024764147,0.018379288,-0.0023848582,0.004195052,0.08795293,-0.017818194,-0.09264916,0.0045611258,0.036981165,-0.052145753,0.095765,0.0140701225,0.0030227702,0.065948926,0.023602866,0.05131698,-0.039063476,-0.010905,-0.00372778,0.065133825,0.143879,0.029918686,0.003189135,0.053973775,-0.032579206,0.078298226,0.006304157,0.026661128,0.035476103,-0.0017448824,0.031929906,-1.3084968e-32,0.026546683,0.051219948,0.12071043,0.083610624,0.028102245,0.006772464,-0.0040305,0.060671926,-0.014117522,-0.040661614,-0.07321748,-0.055798106,0.020277059,0.0035802706,0.017533632,0.04506131,0.06167153,-0.0838792,0.041011393,-0.09993425,0.014667338,0.019122442,-0.016932834,-0.010594653,0.019775895,-0.061629307,-0.03338459,0.0007730344,-0.14514183,0.03593812,0.05998609,-0.05883904,0.033846695,0.08252444,-0.078872524,0.03347495,0.067137085,0.062255934,-0.0083058365,0.04306389,0.041520093,0.02988927,-0.0042443033,-0.07518331,0.022430034,0.016861975,0.11329319,-0.1308263,0.0046536736,-0.05995993,0.117543764,0.03513056,-0.07137243,-0.02647084,0.046523433,-0.013802202,-0.04288352,-0.016397124,-0.051208578,-0.012285795,0.0672623,-0.007625739,-0.009566907,0.008336484,0.080480024,-0.023803968,0.012697632,-0.06421832,0.015077091,-0.010880036,0.011934304,0.044149514,-0.07302295,0.05081014,0.042411417,-0.008547796,-0.031241182,0.038002178,0.08484224,0.013364951,0.010618044,-0.046511486,-0.031027738,-0.027116241,0.0036305902,-0.008260365,-0.030652273,0.017419392,0.056371532,-0.0037048433,0.05412587,0.07494838,-0.0047675227,-0.04662832,-0.02229732,-5.1994718e-08,0.023841519,0.030592471,-0.09566219,0.042975567,0.06317491,-0.008735721,-0.020166673,0.0298597,-0.012187104,0.10232931,0.020252023,-0.056755845,0.017938927,0.04316817,-0.03670917,0.044498023,0.03970431,0.09386996,0.0032197007,-0.0060532386,0.101749,0.04263315,-0.034773987,-0.0068007857,-0.026228763,-0.04721519,-0.030541176,0.057578184,0.0043067886,0.025351837,-0.052537706,-0.009086158,-0.08629692,-0.011091331,-0.0045222794,-0.10652936,-0.0679159,0.087610155,0.033320386,0.042172804,0.0701487,-0.07881946,-0.14915867,-0.014795544,-0.060590956,-0.016358228,-0.105518155,-0.031939063,-0.043285124,0.001188364,-0.0068350774,0.01615505,0.0569737,0.014228466,0.06156159,-0.042108316,0.05207712,0.0046345955,-0.026593717,-0.054637533,-0.055619497,-0.044570353,-0.010977813,-0.011033102} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:29.24286+00 2026-01-30 02:01:10.555036+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1746 google ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB 1 t 1749 Go Karts Mar Menor unknown Gente muy agradable. Día de equipo muy divertido con comida incluida. Un 10 para echar una jornada de entrenamiento. Recomendado! gente muy agradable. día de equipo muy divertido con comida incluida. un 10 para echar una jornada de entrenamiento. recomendado! 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.05 {O3.02} V+ I3 CR-N {} {"O1.05": "Día de equipo muy divertido con comida incluida. Un 10 para echar una jornada de entrenamiento.", "P1.01": "Gente muy agradable.", "V4.03": "Recomendado!"} {-0.032241598,0.08100133,0.027556574,-0.06647243,-0.040602997,0.027639365,0.08374473,0.12008328,-0.046829343,-0.0010046948,0.07253493,-0.044453003,-0.043698397,0.0030895856,-0.016221782,-0.016635405,-0.026244631,0.07230153,-0.0034455878,0.01131473,0.06518543,0.012103191,-0.0343523,0.094973706,-0.08665299,0.019063745,-0.0144330235,0.010768408,-0.022646623,-0.06376493,0.06759856,0.116572194,0.0057370095,-0.037246775,-0.04798036,-0.027150987,-0.0067719705,-0.025297787,0.0066303634,0.056337155,-0.058219157,-0.017157208,-0.035844028,-0.087969206,0.002229064,-0.020662177,0.029121747,0.014101282,0.045620255,-0.018650457,-0.058771927,-0.03746632,-0.013060623,-0.011780399,0.0014237429,-0.052413113,-0.022566354,-0.059878185,0.06065533,-0.01618832,-0.0068532536,0.05941772,-0.014107909,0.047224306,-0.019813843,-0.04632707,0.081679605,-0.019607563,-0.044861816,-0.014674424,0.11170876,-0.035808463,-8.323681e-05,-0.034704413,-0.08576178,0.081201196,0.029921489,0.020535212,-0.05752387,0.008576661,-0.0017574946,0.036537416,-6.1820705e-05,-0.10501111,-0.003270724,0.006063042,-0.034171227,0.007056826,0.012342381,-0.017783226,-0.0145449275,0.025913185,-0.054644812,0.0154161,0.006322365,0.042439256,-0.07985746,-0.12712048,-0.060002465,-0.0009666794,0.0109683,0.13773572,0.027181432,0.0037620189,-0.067796774,-0.014310396,0.07196068,-0.068937495,0.0053980877,-0.003871713,-0.049301922,-0.04189081,-0.023232412,-0.058603857,-0.06647092,0.03590915,-0.0005380446,-0.057989493,-0.0031822852,-0.0405921,0.025408832,-0.037270945,-0.061699722,-0.0072906185,0.031769395,-0.024737205,0.09190336,7.76244e-33,-0.076517545,-0.05370207,-0.041374546,0.10354584,0.0068589784,0.005549963,-0.03793484,-0.036846817,-0.030809741,-0.083471246,-0.09254207,-0.012553208,0.028089069,0.11508566,-0.003029776,-0.022576328,0.004603115,0.009793459,0.08622242,0.05495228,-0.04723768,-0.022573782,-0.036341403,0.031301975,0.047037456,0.044400334,-0.04115074,-0.031516362,0.040569983,0.070997804,0.018212136,-0.002952745,-0.06403501,0.024066238,-0.06737393,-0.024736468,0.014570025,0.050653134,0.0653129,-0.0015085301,0.03423353,0.01440321,-0.01880869,0.045151785,0.11679551,-0.021922074,0.083734564,0.02882425,0.077413715,-0.013705591,-0.009667602,-0.015850676,-0.03765687,-0.019542096,0.03955618,-0.011723214,-0.05654928,0.065086775,-0.026192803,0.020820744,0.026670415,0.03873502,-0.0643157,-0.03750751,0.031093232,0.0049004424,-0.00016996413,0.05056919,0.13878447,0.028524542,-0.09955147,-0.08163919,-0.07929763,0.0327131,-0.04719883,-0.020476332,0.03193064,0.018434292,0.031112198,0.0650173,0.0046356292,0.0442119,0.0040747533,0.007035053,0.10983293,0.0636232,0.032775976,0.0666488,-0.029689109,0.057968523,0.037574913,0.048051443,0.04988421,-0.03515561,0.06807726,-8.3224765e-33,0.034927867,-0.03338868,-0.047135085,0.09640179,-0.019830426,0.004226861,-0.018722277,0.001002976,-0.047056664,-0.061888535,-0.11353792,-0.080522455,0.07888074,-0.08698831,-0.07375667,0.059568156,-0.06713946,0.0071825543,-0.054537486,-0.00086757634,0.012281297,0.07150345,0.057653073,-0.13698249,0.0083473055,0.015232889,-0.050360437,-0.058149867,-0.024753982,0.014812446,-0.05472805,-0.02082426,-0.0371816,0.03399715,0.030552488,0.049731087,0.07111067,-0.025282832,0.00095290056,0.052670345,-0.048478726,0.11500033,0.022530193,0.0028343662,-0.031716853,0.05422192,-0.058639184,-0.092022724,-0.036270585,-0.051326938,0.03497193,0.011133763,0.021131283,-0.056881405,0.039142225,-0.11378639,0.053378407,-0.04228103,-0.101387925,0.009712632,0.068351746,0.042871915,-0.037112586,-0.06289044,0.088380955,0.026505029,-0.06050035,0.036631152,-0.02623861,0.015445181,0.07235965,-0.066313624,0.021518499,-0.03000836,-0.014843914,-0.032863595,-0.030890081,0.03264567,-0.0025286034,0.09650955,-0.033564027,0.004359632,-0.029040778,-0.032851934,-0.055615764,-0.043521017,-0.03967562,-0.013423981,-0.018840313,0.011100279,0.0044870134,-0.028887684,0.0032636735,-0.004930778,0.07836053,-3.7031562e-08,0.0620527,-0.09641512,0.014957068,-0.005724384,0.034667224,-0.0590325,-0.105225414,0.004202791,-0.04171233,0.044475157,0.0035162724,-0.04673861,-0.027265491,0.15948388,5.486248e-05,-0.04911791,0.10348818,0.09070295,-0.038008172,-0.01686327,0.09782737,0.002006833,-0.02008978,0.03855718,0.022358125,0.04369545,0.0032699793,-0.06928707,-0.033974003,-0.056913614,0.007682633,-0.023663966,-0.022428641,-0.054790173,-0.06712028,0.03649438,0.012019653,0.032600567,-0.055421162,0.012952848,0.079474166,-0.033165872,-0.0025961339,-0.018533664,-0.015666155,-0.0592856,0.032307453,0.038932465,-0.058131672,0.050243862,-0.054610886,0.029727248,0.051960245,0.029067269,-0.046983056,-0.015121668,0.006910513,-0.03757532,-0.011475989,-0.00700853,0.030133434,0.15884492,-0.030307688,-0.028376} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:38.223992+00 2026-01-30 02:01:10.557835+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1747 google ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE 1 t 1750 Go Karts Mar Menor unknown Excelente alternativa para un fin de semana divertido con los amigos. Buen trato del personal excelente alternativa para un fin de semana divertido con los amigos. buen trato del personal 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"P1.02": "Buen trato del personal", "V4.03": "Excelente alternativa para un fin de semana divertido con los amigos."} {0.029343301,0.10781675,0.04960869,-0.024531597,-0.02360907,0.00446656,0.08408496,0.039826643,0.008205681,0.01556038,0.13908166,-0.045094967,-0.091775045,-0.058151677,0.0564978,-0.010020191,-0.027339678,0.050801456,-0.007475475,0.05873762,0.051751483,-0.02116979,-0.08221445,0.10730574,-0.08321013,-0.043990295,-0.0028426996,0.046125032,-0.028197255,-0.05576578,0.07457983,0.10114064,0.079098634,-0.004867916,-0.023923691,-0.0060810223,-0.0029752548,-0.028325452,0.009262584,0.024254287,-0.08862275,-0.044372052,0.012523861,-0.090836346,0.009251641,-0.0649393,-0.024167178,0.04839631,-0.00016479814,0.032517906,-0.10011394,0.003394868,-0.01004827,0.056056283,-0.016134035,0.001835916,-0.036273155,-0.028222393,0.06329387,0.013583973,-0.020197988,0.024694188,-0.020523481,0.022141224,-0.015603351,0.004435829,0.04635745,-0.011494621,-0.03387875,0.02694285,0.0400217,-0.13882758,-0.042147383,-0.009001525,-0.0074555394,-0.04302798,-0.05479747,0.0244501,-0.015550293,0.027735768,-0.022690032,0.038828503,-0.011186837,-0.08232548,-0.026928587,0.028423918,-0.05263291,0.028215531,0.0013075726,0.07167539,-0.017096592,-0.004135807,0.00949065,-0.038093317,-0.011749378,-0.014562841,-0.0147401495,-0.10819623,0.049192116,0.036135886,0.039045855,0.13777247,0.009897282,-0.01856654,-0.029801967,0.018549979,0.05733152,-0.023907004,0.010163673,-0.018059054,-0.042905413,-0.040084407,-0.049852174,-0.082004026,-0.03485308,0.0022837704,0.016884828,-0.010388048,0.029406535,0.03361096,0.0064208754,0.043681122,-0.050216123,-0.02595858,0.008898834,-0.026418773,0.007989542,5.535062e-33,-0.015552542,-0.017424656,-0.034494814,0.07193846,-0.048690032,0.043820355,-0.038548898,0.0051776553,-0.016703896,-0.04492261,0.0042983294,0.03909902,0.017276688,0.020399317,0.010236761,0.007125377,-0.041506097,0.006696723,0.13582122,0.104503125,-0.026130578,-0.06669458,-0.070974566,-0.011078943,-0.024635222,0.029285014,-0.049022812,-0.010143013,0.01200588,0.032544125,0.041806158,0.06896256,-0.009213659,-0.035053242,0.0065290174,-0.028663702,0.04533854,0.05929769,0.0044650002,0.008394065,0.0051544206,0.036005504,0.02777565,0.033304706,0.053020716,0.0308068,0.11062861,-0.0008283892,0.082592584,0.01211818,-0.07595643,-0.04806361,-0.04537868,-0.07778679,-0.04722695,0.007542078,-0.059917253,0.051121313,-0.038221076,-0.0821131,0.050505612,0.027452178,-0.071766414,-0.007172712,-0.043982293,-0.027983287,0.09897275,0.011056819,0.09313307,-0.010802589,-0.09570657,-0.041481044,-0.0036663548,0.068361536,0.002715478,0.009729639,-0.06705213,0.008048535,-0.00622099,-0.010129739,-0.0091031175,0.062423002,0.07519875,0.011596483,0.11415335,0.07850323,0.04526355,0.050902184,0.03363376,0.09356187,0.0032767463,0.03509836,0.03339737,-0.017645996,0.041304756,-7.310456e-33,-0.0067880694,-0.04539338,-0.07344095,0.02954777,0.039283156,-0.0038238629,0.014907463,0.053242493,-0.010104236,-0.037150793,-0.09420883,-0.11071811,0.13990332,-0.010367597,-0.0907666,0.06399872,0.011721389,-0.08909546,-0.09717766,-0.04687229,-0.044304557,0.046347607,0.13609086,-0.0052754185,0.02515883,-0.0038030457,-0.009260182,-0.007729954,-0.029420927,-0.067398585,0.0032618493,-0.004553875,-0.039972674,0.018498939,-0.009130825,0.033119094,-0.06781552,0.035357766,0.0018180492,0.060323104,-0.039967313,0.05926921,-0.008053436,-8.600849e-05,-0.005685138,0.047110453,-0.0015712157,-0.13276625,-0.05217723,-0.02746751,-0.025815794,-0.03692554,0.036252316,-0.08590488,0.024428876,-0.07287877,0.067321695,-0.11630435,-0.049957853,-0.00073286524,0.065155245,0.009794746,-0.049654175,-0.010372981,0.060959704,-0.0151064675,-0.056658033,-0.024073722,-0.016543724,0.061088555,0.06206034,-0.079509586,-0.026241837,-0.049098827,-0.049911354,-0.071179986,-0.070599,-0.048354853,-0.0086588785,0.0042306175,-0.0068646707,-0.02063457,-0.009648118,-0.06969426,-0.0683801,-0.090474844,-0.07607202,0.019917207,-0.08302281,0.046864185,-0.045010634,-0.02546406,-0.051835924,-0.025977554,-0.04445276,-3.1148765e-08,0.07327626,-0.06199503,0.023554256,0.0339909,0.05688038,-0.08621388,-0.075912744,-0.003329228,0.07693882,0.07683193,-0.07582706,-0.014314811,0.045881644,0.096309654,0.01253576,0.018449124,0.16235985,0.0058402657,0.0029596253,-0.010473049,0.07652021,-0.059830025,-0.04996894,-0.027465379,0.04233243,0.048801787,0.008607202,0.017810304,-0.029466314,0.009277761,-0.030045975,-0.036702342,0.0343033,-0.010952192,-0.060041685,0.012034509,-0.006277255,-0.011902405,0.02138417,0.0031305063,0.069075964,-0.028298117,-0.029856808,0.013932862,-0.053202398,-0.1322783,0.05309695,0.0128628295,-0.017318184,0.020910779,0.007884149,-0.047709286,0.083738826,0.029837508,0.088317,-0.008775069,0.067995355,0.047460157,-0.008805666,-0.0253734,0.057349563,0.10002817,-0.04474697,-0.058441807} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:44.508223+00 2026-01-30 02:01:10.563953+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1750 google Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB 1 t 1753 Go Karts Mar Menor unknown Flott bane med godt opplegg. Ikkje så flinke i engelsk. flott bane med godt opplegg. ikkje så flinke i engelsk. 4 2025-09-02 00:52:39.833374+00 no v5.1 O2.03 {O1.02} V+ I2 CR-N {} {"A2.02": "Ikkje så flinke i engelsk.", "O2.03": "Flott bane med godt opplegg."} {-0.074283615,0.07497381,-0.029412832,0.008696433,-0.0034507066,-0.027472816,0.05766075,0.1734936,0.066043526,-0.0030196998,-0.02743581,-0.011776052,-0.008214218,-0.026349528,-0.014324994,-0.07579028,-0.18889697,0.08478813,-0.006449246,-0.026125023,0.003850528,-0.037903436,0.067561164,-0.059742793,-0.025557755,-0.030262034,0.07364769,-0.061061643,-0.0022879262,-0.007494687,0.060596846,0.041304257,-0.013708054,-0.052179016,-0.07971301,0.05275023,-0.01534965,-0.058873978,0.01581406,0.054288935,-0.07052994,-0.0016133732,-0.030629784,-0.124975786,0.05677328,0.024572201,-0.04936817,0.0056712306,-0.062182188,0.034427386,-0.104009986,0.024877995,-0.053493045,0.03011079,0.040558245,-0.05465318,-0.013599053,0.039737713,-0.026270973,-0.009356454,-0.008561399,0.03949665,-0.049822148,0.038086258,0.009372018,-0.025849083,-0.033089697,0.041665535,-0.04735748,0.050069522,-0.003338918,-0.029968856,0.032539483,0.11050935,-0.038139865,0.0009607292,-0.041494742,0.019002037,0.05274229,0.0067631705,0.013834679,-0.042847387,-0.053013563,0.061741408,-0.053073127,-0.027662404,-0.051284794,0.0050317,0.017612804,0.04381617,0.06575271,0.027363382,-0.049333114,0.047104314,0.0053037815,0.0090826405,-0.0037000624,0.047835514,-0.06770639,0.05089653,-0.01022102,0.001866535,0.06514391,0.11579937,-0.03358303,-0.075274974,0.02502651,-0.10215088,0.05130426,-0.014106002,-0.01611449,-0.08974175,-0.030524775,-0.12786674,-0.024296066,0.006402897,-0.056460027,-0.048558097,-7.739117e-05,0.02000283,-0.01729955,0.026899632,0.012749033,0.0062380396,0.071728274,-0.07071144,0.03986438,4.3016147e-33,-0.02536755,-0.016588055,0.023030829,0.010681635,0.012519497,-0.08102714,0.011083785,-0.11183966,-0.028068049,-0.05635014,-0.029029118,0.0070702555,-0.10027149,-0.038101327,0.0025176501,0.05225814,-0.01031114,-0.024041204,-0.08374158,0.02521226,0.08618405,-0.081475854,0.04243223,-0.003330814,0.045200497,-0.040880896,0.036997054,-0.10280353,-0.021629954,0.08326452,0.059510153,-0.0006302899,-0.012472652,-0.008809333,-0.038821004,-0.04901414,-0.017906878,-0.0981634,-0.02800175,-0.06720129,0.015453175,-0.085563615,0.07391085,0.10784768,0.0014718758,0.15323232,-0.03351172,0.023553085,0.017617714,0.028461158,0.005257623,-0.013602026,-0.04541628,0.04243645,0.034163445,0.02237724,-0.075240575,0.007639905,0.06443846,0.037659097,-0.005197116,-0.013054977,0.0531769,-0.009508535,-0.044373628,-0.06602933,0.003365022,0.012765492,0.08317098,-0.044155072,0.0015742292,-0.045670487,-0.003815325,0.07430671,-0.011847759,0.047029737,0.035048787,0.025850171,-0.1189215,0.008896066,-0.04837522,-0.025436325,-0.036192365,-0.054222368,0.10181616,-0.021809915,0.009039008,-0.09503109,0.034938347,0.043794665,0.0043232637,0.04052444,-0.0010126119,-0.01582527,-0.052679542,-3.0421371e-33,-0.01982964,-0.0153069375,-0.087884896,0.0885057,-0.04249469,-0.017754447,-0.004361947,0.013419705,0.060158737,0.0146421855,-0.031006116,-0.03330306,0.07328261,-0.013640838,-0.053773202,0.036862522,0.084270604,0.028988963,0.059713136,0.021676715,-0.05818556,-0.040736303,-0.028427385,0.044969905,-0.019292438,0.056135323,0.022653885,-0.01387233,-0.07162937,-0.008808626,0.046967458,0.022649748,-0.0012645033,0.05411688,-0.018592482,-0.0071693677,0.096805945,-0.0012027225,-0.056821886,-0.028147513,0.034541536,0.0026758774,-0.046591047,-0.052279934,0.0102418335,-0.06834948,-0.008536614,0.0068690227,0.0043973983,-0.061437033,0.06321003,0.053390753,0.022643391,0.012521543,0.03164513,-0.025913704,0.011750151,-0.048354674,-0.076252975,0.037406743,0.081035785,-0.048454575,0.037703082,0.06606555,0.0935897,0.0017954361,0.058159947,0.019525677,0.057283867,0.020313986,0.02954923,-0.0071676723,0.045618065,-0.0025091516,0.019634198,0.060546692,0.017680105,0.06577179,-0.042093385,0.010033378,0.011456304,0.034110617,0.060280822,0.015703749,-0.021998141,-0.053832114,-0.006095422,-0.011781635,0.011248908,0.018684743,-0.0017932863,0.07137519,0.008956491,0.07160137,0.019373184,-2.368829e-08,-0.036524694,0.0073748385,-0.04518053,0.052838862,0.09480317,-0.060664076,-0.08296562,-0.04349148,-0.11900761,-0.0180279,-0.080736846,0.014287364,0.04133868,0.015367278,0.09609689,0.02851531,0.025986928,0.115589134,-0.021230295,-0.042194903,0.031806383,0.020036468,-0.015943933,0.06539788,-0.04627295,0.11679497,-0.03375898,-0.044104878,0.1446706,-0.051400248,0.007290705,0.05626936,0.0054349545,0.004678988,-0.0949738,0.040122665,-0.022634765,0.006735584,-0.06402942,0.12297483,0.01464899,0.025570797,0.13730869,0.004991051,-0.00052670663,0.019845977,-0.008504798,0.022671664,0.026831279,-0.026569342,-0.020489866,0.043225728,0.0154812345,0.042108737,0.03362723,-0.0077118846,-0.0546771,0.055897754,-0.08674928,-0.049792733,-0.010788743,0.02670856,0.021886261,0.026260735} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:09.5453+00 2026-01-30 02:01:10.574838+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1676 google ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE 1 t 1679 Go Karts Mar Menor unknown Ha sido un regalo sorpresa para mis hijos y han salido encantados! Buen circuito y divertida experiencia que seguro que repetiremos. Nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope. ha sido un regalo sorpresa para mis hijos y han salido encantados! buen circuito y divertida experiencia que seguro que repetiremos. nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {O2.03} V+ I3 CR-N {} {"J1.05": "Nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope.", "O1.05": "Ha sido un regalo sorpresa para mis hijos y han salido encantados! Buen circuito y divertida experie"} {-0.0058139726,0.050101016,-0.043637406,-0.069852345,-0.08821829,-0.0133410655,0.03530095,0.06241692,-0.014934394,0.012276065,0.08971587,0.025224399,0.033644337,-0.07651073,0.025787072,0.04076933,-0.011538328,0.035488043,0.04217352,0.018699996,0.11466221,-0.06973037,-0.08858694,0.14654237,-0.0676589,-0.021016961,0.015514479,0.042001013,-0.108844645,-0.1464263,-0.034307323,0.00900632,0.10668621,-0.06722248,-0.04239908,0.021760255,0.048288725,-0.044443402,-0.017074186,0.02442093,-0.059427325,-0.022789229,0.0027691138,-0.08590444,0.031729028,-0.006031856,0.04195935,0.026390053,0.05602863,-0.08580505,-0.007737424,0.015336405,0.019096194,0.002099058,-0.0110906605,0.07914273,-0.004611901,-0.0038311568,0.10519738,0.03725564,0.008963886,0.028670857,-0.00020908027,0.052235544,0.058164105,-0.07842144,0.04426646,0.050443113,-0.07162252,-0.006331794,0.12539043,-0.11600407,0.08406232,-0.014287599,-0.01301559,0.075207315,-0.025791243,0.0076694433,0.005415829,-0.027781384,0.013883903,-0.009358179,-0.0640468,-0.012149965,0.01543232,-0.017633889,-0.025452327,-0.049851257,-0.0013294353,-0.02831335,-0.0489221,0.0067037875,-0.059143316,-0.03515018,-0.086048275,-0.0055859364,0.0062317736,-0.08401026,0.008621399,0.055754296,0.06694874,0.04592655,0.03510098,-0.058349844,-0.04760405,0.040701274,0.027931584,0.0032132207,0.05728566,0.008811783,-0.065945,-0.028558893,-0.07369407,-0.06096311,-0.032164127,0.010063197,0.022251138,-0.013810682,-0.094797105,-0.1225887,0.012262031,-0.051458444,-0.040040858,-0.015226528,-0.010254419,-0.007385281,0.09167351,1.8104056e-32,-0.037853535,-0.0046024295,-0.053964034,0.020525154,0.0086329,0.04070101,-0.025689183,-0.04769511,0.0021877834,0.01635752,6.706447e-06,0.013061552,-0.014397984,0.005936645,0.040363092,-0.054763474,0.041249312,0.0026771673,0.014746309,-0.022148073,-0.06893657,-0.03036473,-0.008473202,0.044332836,0.010483637,0.075397834,0.02174514,-0.06401457,-0.025869519,0.034131903,0.072715655,0.048254587,0.058212362,-0.058848355,-0.037549075,-0.059135605,0.039517455,0.026977975,-0.016632142,-0.057663556,0.0049745985,0.01885133,-0.08508605,0.0688174,-0.0070212185,-0.0014503703,0.063686416,0.01661015,0.11958311,0.037868362,-0.08936901,-0.07078389,-0.0075416323,0.017434767,0.010241035,0.01110776,-0.01664847,-0.0032853382,0.10115215,-0.039454143,-0.02314863,0.038818527,-0.06569625,-0.108417384,-0.06585549,0.010208157,0.064919375,0.022470022,0.08950251,0.009186904,-0.059715748,0.031416476,-0.12953651,0.03880833,-0.017747957,0.0067410036,-0.056867007,0.040028684,0.057393335,-0.011833205,-0.041916396,0.0102385,0.04434405,0.06664216,0.13365296,0.07678334,0.06281902,0.04559572,-0.045973256,0.179773,0.035345122,0.11118197,0.0900393,0.01004752,0.079293765,-1.7648105e-32,-0.0071850587,0.0038718616,-0.019964285,-0.0052210893,0.005924905,0.016238673,-0.079743676,-0.0055254297,-0.06469615,-0.06483682,-0.07182009,-0.09855582,0.07639816,-0.033054486,0.009386693,0.025948,0.026146786,-0.03135905,-0.05140517,-0.01345783,0.04018153,0.04300869,0.0027928746,-0.07027077,-0.056617085,-0.008701914,-0.081797525,0.042928223,-0.06391664,0.02190146,0.022933256,-0.027800526,-0.031398658,0.07797701,-0.040541098,0.05813192,-0.0120483935,0.033315383,-0.03373052,0.023125269,-0.059468437,0.046748567,0.01433007,0.004595123,-0.0388656,-0.0037857206,-0.019431015,-0.1425291,-0.05534003,-0.026381409,-0.0031327833,-0.050458156,-0.021762455,-0.058138907,-0.0027665836,-0.048862007,-0.034330614,-0.016234659,-0.09765441,-0.053432636,0.07377532,-0.022675766,0.0031728826,-0.028917486,0.050405715,0.009194302,0.049835466,-0.017792571,0.066114426,0.00477151,0.06479564,0.03479097,0.007355217,0.026706671,0.0047206203,-0.074150614,-0.098009184,0.038296003,0.014641663,0.0017167476,-0.055955265,0.038235124,0.026732802,-0.10965258,-0.020150809,0.022410484,0.031166004,0.02201323,-0.0031068004,-0.004376711,-0.032281887,0.054299653,0.0021665073,-0.008984995,-0.017845258,-5.9793656e-08,-0.00024005343,-0.054559615,0.04182138,0.023917893,0.060931273,-0.056792755,-0.01511365,0.00019138597,-0.03764089,-0.039304264,0.036467616,-0.0017816296,-0.047991168,0.02280897,-0.022855358,-0.018043164,0.09477492,0.117914736,-0.024304599,-0.042809114,0.013943823,-0.02040881,-0.011248429,0.06858855,0.07687878,0.006621841,0.016631614,0.034343004,0.028853942,-0.05632466,0.028244592,-0.07362518,-0.030744806,-0.063084826,0.0015420706,0.032655638,-0.07528503,0.035635594,0.033156533,-0.033600356,0.04644151,-0.050714318,-0.048856754,0.048138168,-0.04129778,-0.019051805,-0.00624046,-0.0073731816,-0.016541423,0.015203062,-0.06118614,-0.09984487,0.022978406,-0.03128535,-0.013263744,-0.059427693,0.08342778,0.015992643,-0.027310712,-0.04022255,0.058524266,0.055226825,-0.05935939,-0.026747422} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:56.632854+00 2026-01-30 02:01:10.287884+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1741 google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE 1 t 1744 Go Karts Mar Menor unknown Buen ambiente en el circuito ,karts divertidos de conducir ,equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente . buen ambiente en el circuito ,karts divertidos de conducir ,equipo de monitores estratosférico y el personal diego,roberto ,chema y j.leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente . 5 2025-03-06 01:52:39.833374+00 es v5.1 P1.04 {P3.05} V+ I3 CR-N {Diego,Roberto,Chema,J.Leon} {"E1.04": "Buen ambiente en el circuito", "O1.02": "karts divertidos de conducir", "P1.04": "equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro t"} {-0.039846428,0.051178493,-0.033151273,-0.019203058,-0.011290663,-0.055651903,0.06465096,0.11042557,0.062546924,-0.0031506193,0.10755701,-0.03033477,-0.013585035,0.015567043,-0.023341246,-0.01402532,0.0038747247,0.030810097,0.05431715,-0.033897553,0.084205404,-0.11031632,-0.036847547,0.006995518,-0.099566646,0.010308718,0.026440734,0.011613856,-0.058077537,-0.111947075,-0.07700448,0.05585166,0.037104405,-0.03306714,-0.06168482,-0.037601568,0.028058961,-0.03924487,-0.06992189,-0.009175365,-0.04816558,-0.06955326,0.02113494,-0.021673413,-0.034872077,-0.07157401,-0.002095858,-0.027881986,-0.010769326,-0.025586523,-0.0170289,-0.022105929,0.07843315,0.019816246,0.012836457,-0.005947881,-0.022799054,0.03714859,0.13351329,0.07690714,0.13955046,0.040747236,-0.111337274,0.03262288,0.016882187,-0.010139174,0.02403618,0.05999116,-0.030718824,0.005896191,0.06743979,-0.08357377,0.0027618944,-0.061156504,0.055443812,0.015805721,-0.059742294,-0.018516952,-0.026614398,-0.06334599,-0.002112426,-0.042414702,-0.025212104,-0.028510878,0.014494526,0.018835047,0.034161553,-0.0065533025,-0.022602694,-0.02982912,-0.063263915,0.04132387,-0.081866734,-0.039719056,-0.016361764,-0.020154437,0.025730468,-0.027743595,0.007477557,0.051399842,0.101587996,0.016623897,0.046052683,0.08395507,-0.029449753,0.022449244,-0.048155606,0.01593906,-0.022773458,0.019802194,-0.035496473,0.042755757,-0.029842092,-0.025979465,0.040927887,-0.007404415,-0.06665878,0.04755246,0.014572173,0.03070029,0.04998492,-0.015311048,-0.047879096,0.023549454,0.10558787,-0.027495418,0.0975627,1.3050559e-32,-0.05056285,0.0037327476,-0.027740154,0.046301983,0.029515631,0.01339198,-0.05914273,0.022814415,0.024209224,0.05479634,-0.024503015,0.10822378,-0.06387114,0.050476927,0.12006211,-0.05210912,-0.022955664,-0.025824146,0.048024602,0.03363605,-0.03002116,-0.15233111,-0.004799625,0.0659077,0.044589877,0.09184697,-0.0005714049,0.031870186,-0.056913935,0.045660276,0.042718243,0.06046709,0.03071759,0.01858855,-0.089934744,0.0074905762,0.03610306,0.029302781,-0.062271588,-0.0037533161,0.008195702,-0.0050729346,0.008157553,0.006439686,-0.046939146,-0.04634292,0.022391085,0.030432362,0.07555332,0.095872454,-0.12996028,-0.09451353,-0.017175086,-0.042168204,0.03120179,0.048964687,-0.018636085,0.0014111655,-0.014899335,-0.012418618,-0.029567994,0.087970495,-0.028860211,-0.012606666,-0.03788289,0.040144168,0.049609005,-0.03623821,0.041654836,-0.012484189,-0.16654377,0.027555916,0.03321584,-0.038024787,-0.0024958546,0.032825842,-0.10396917,0.05495634,-0.037999365,-0.0070717703,-0.035100874,-0.027368028,0.07489314,0.0061036744,0.07314613,-0.0016162202,-0.028278759,0.018879896,-0.031358037,0.15424295,-0.006835505,0.07042134,0.01770739,-0.018205658,0.02943896,-1.3179206e-32,-0.016406227,0.0076364605,0.054768696,0.042234696,0.05017365,-0.018268023,0.010811967,-0.02669566,-0.018644467,-0.029797966,-0.032839376,-0.028223518,0.023886453,-0.014023636,0.00027133472,0.033447117,-0.01726724,-0.0630072,-0.03985475,-0.02277635,0.010702682,0.026792077,0.037579596,-0.07940095,-0.007437697,-0.009635557,-0.03781074,-0.01765937,-0.08969146,0.019034386,-0.02615482,-0.033200465,0.013830551,0.08346468,-0.030309092,-0.00471789,0.046256747,0.09370816,0.011889204,0.00453055,-0.0003957443,0.12701225,0.024015779,-0.0024196722,-0.08084569,-0.012161318,-0.0029396974,-0.10476144,-0.034355395,-0.07076193,0.028749363,0.01213719,-0.05564561,-0.07081049,-0.004483158,-0.007712687,0.038415525,-0.0019633807,-0.08725743,0.014302412,0.109928936,-0.049269322,-0.024038685,-0.046404507,0.09265535,0.008450754,-0.039116245,0.045026906,0.10048029,0.021182558,0.11776283,-0.011447805,0.007834072,-0.042491082,0.020261033,-0.065081835,-0.118358575,-0.00959475,-0.019575046,-0.0214377,-0.020474697,-0.04733712,-0.014878683,-0.05167974,-0.0257296,-0.0249153,-0.01970187,0.019002292,0.07159291,-0.009281428,-0.047536854,0.07468627,-0.04157469,-0.009035831,-0.0026384299,-5.5791798e-08,-0.03803832,0.01536726,-0.078170426,-0.027500112,0.012396696,-0.07662358,0.0030798335,-0.0010975916,-0.020270858,-0.0021688289,0.0103214625,-0.010560067,0.010992529,0.075326174,0.08335735,-0.03517029,0.03456387,0.09755595,-0.07313336,0.06765865,0.06122777,-0.0025713975,-0.031599276,0.049638662,0.073930204,-0.050212167,-0.022547493,0.018973686,0.05001684,0.028899545,-0.030327937,0.035614513,-0.06745812,-0.05891346,0.00063814316,0.050023656,-0.08498653,0.023069158,0.012651358,0.04556546,-0.0033424923,-0.10705355,-0.14341214,0.04867908,-0.01898099,-0.026924733,-0.015612366,-0.03228208,-0.072969876,0.012364506,-0.09428589,-0.045605402,0.025546836,-0.017689604,0.015070321,-0.03263189,0.080822095,0.029947635,-0.022081988,-0.033685107,-0.033580735,0.07139466,-0.00014725047,-0.090998836} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:47.471538+00 2026-01-30 02:01:10.541608+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1529 google ChZDSUhNMG9nS0VJQ0FnSURNdDR6LUdnEAE 1 t 1532 Go Karts Mar Menor unknown Loved it great place fun for all the family loved it great place fun for all the family 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.05 {O4.04} V+ I3 CR-N {} {"O1.05": "Loved it great place fun for all the family"} {0.0066482276,0.05449321,-0.012532377,-0.03816387,-0.08372914,0.054480463,0.05397292,-0.030411314,-0.025440643,-0.033902965,0.03111128,0.04968831,0.06743311,0.019622475,-0.005866924,-0.013527803,0.042663123,-0.05384456,0.068476155,-0.10776586,-0.031068828,0.011165445,0.07961055,0.010818454,-0.07547728,0.08305029,-0.055712886,0.06743169,0.022344755,-0.020984974,0.024263356,0.043325998,0.03431594,0.027908958,0.030657953,0.05777367,0.008464047,-0.072321534,0.033581354,0.043403342,-0.023227628,0.033717588,0.06593634,-0.046143413,0.010373387,0.072397865,0.024165625,-0.090310596,0.1470066,0.049400337,0.109835126,-0.0023355565,0.06134033,-0.039572384,-0.037393928,0.09862799,-0.0447975,-0.06961576,-0.0066895634,-0.12090631,0.09462804,0.021766165,0.0068011126,0.0305863,0.0005663962,-0.10905422,-0.044290725,-0.023426082,0.06341299,-0.08628713,-0.058207568,0.03004535,0.103674054,-0.031191383,-0.036839996,0.07332917,-0.0428067,-0.0338852,-0.08466318,-0.016075961,0.0430508,-0.042469725,-0.010254097,0.005132066,-0.06836414,-0.07284259,0.021981817,-0.018122852,0.0011686699,-0.0310715,0.037766796,0.026471028,-0.049273904,-0.035504542,-0.031267397,-0.028519625,-0.01735222,-0.034666356,-0.053570747,0.039569404,-0.008915526,0.022287656,0.004522103,-0.008457593,-0.01499488,0.020350752,0.025787655,0.03864707,-0.005072661,-0.01165235,-0.014499051,0.015265894,0.028344713,0.03545145,-0.029618958,0.0015254492,0.057656813,-0.015307907,-0.04086625,-0.04142061,0.08818354,0.053254113,-0.0112258205,0.061889295,-0.020599475,-0.018885588,0.08606266,-1.6956583e-33,-0.048259094,-0.028423132,0.0061546946,-0.0107635325,0.12773536,0.039036743,-0.03106209,-0.013317469,-0.13034147,0.015735397,0.043681122,-0.04276826,-0.04242971,-0.038619023,-0.016131608,0.016161576,-0.07988732,-0.01930369,-0.0075860634,0.03907852,-0.059985336,0.03969888,-0.04182941,0.01135617,-0.067681484,0.049537916,0.03408358,0.009958225,0.03462218,0.032353275,-0.0438276,-0.005089725,-0.046411213,0.006538549,0.039467644,-0.031888656,0.012094233,-0.029201917,-0.021940986,0.060221523,0.03376858,-0.031936258,-0.012302165,0.09832216,0.018832423,0.020034133,-0.0037404108,0.019658271,0.029038843,0.0031984798,-0.036552995,-0.033791397,-0.07113136,0.057947915,0.035388824,0.04427126,-0.023571795,0.013069228,0.04684286,0.024452189,0.07638445,-0.00936912,0.0044915467,-0.047872808,-0.035035204,-0.047337666,0.071200274,0.047630213,0.030286217,0.03639425,-0.0049150917,-0.013727051,0.035895742,-0.043157924,0.04083795,0.031549376,-0.07431129,0.026507998,-0.041935857,-0.008493275,0.08044438,0.005074651,0.00938969,0.022181403,0.03515632,-0.07429552,0.039988562,-0.1626956,-0.10435885,-0.026333593,-0.05783814,0.0026477247,0.0777639,-0.019526126,-0.00024167255,6.1458445e-34,0.048189748,0.00056691177,-0.017255608,-0.034590423,-0.05333895,-0.026384188,-0.11767649,0.0007170759,0.0751271,0.0900495,-0.044001758,0.019473348,0.06645681,0.005287879,-0.056918375,0.013921531,0.060737073,0.039608445,0.013639821,-0.024064988,-0.008850537,0.036236867,-0.08802865,-0.025007946,0.011653702,0.022338266,-0.07434547,0.019822376,-0.00082627527,0.0061687957,-0.042752247,0.054081358,0.014154182,0.026841315,0.06879733,0.05890405,0.021613201,-0.0052327137,-0.055042922,-0.06408435,0.056391224,-0.035372417,-0.091712184,0.055369683,0.03375259,0.055121735,-0.028499084,-0.017404549,0.00030794909,0.04124544,-0.052042473,-0.013346078,-0.054123405,-0.05761142,0.039911892,-0.037106536,0.11947133,-0.016058488,-0.049834844,-0.05734367,-0.13568363,0.04192541,-0.07562437,0.04643167,0.0880789,0.01289387,-0.0217248,-0.07892613,-0.050622467,0.038469482,-0.13623722,0.015182794,-0.08064619,0.02300918,0.03007912,-0.0105460705,0.06644437,-0.0008402887,0.024374515,0.09447834,0.0007477279,0.03473336,-0.1051135,-0.025093023,0.011576694,0.03686332,0.0101150265,-0.0023554992,-0.07924379,0.038754497,0.04532177,0.050098136,-0.04282316,-0.07990106,-0.022811085,-1.8701934e-08,0.008520656,0.08831563,-0.04051901,-0.033458427,0.027196765,-0.04540747,0.09660941,0.034491427,-0.038063336,0.14654872,-0.054321166,0.032279316,-0.003508916,0.055448584,0.017382242,-0.002874559,0.12989345,0.034009036,-0.0188442,-0.0048734643,0.071768716,0.02955643,-0.011895751,-0.0052030627,-0.091245726,-0.015467023,-0.010512334,-0.06258188,0.036802072,-0.05849109,0.044685405,0.0041800514,-0.082618594,0.059144527,-0.061487593,-0.038775675,-0.033370376,-0.012428004,0.03952607,-0.029513627,-0.032686405,-0.03754616,-0.019567069,-0.09438045,-0.012082979,0.0868247,0.06642106,-0.01071931,-0.01905455,0.022646021,-0.0982304,0.010077974,-0.107436925,0.061748534,0.060573097,0.0048025916,-0.056551244,-0.010358542,0.019494496,0.051703885,0.02019912,0.10174844,-0.024297755,0.03786315} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.165479+00 2026-01-30 02:01:09.672062+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1531 google ChZDSUhNMG9nS0VJQ0FnSUN1b3ZhSFZnEAE 1 t 1534 Go Karts Mar Menor unknown Love this place visit every year we are over love this place visit every year we are over 5 2023-01-31 01:52:39.833374+00 en v5.1 R4.03 {} V+ I3 CR-N {} {"R4.03": "Love this place visit every year we are over"} {0.036580235,0.00031862865,0.09231769,0.0038407436,-0.020462405,-0.029374259,0.021165682,-0.0961092,-0.013683002,-0.04561231,-0.034432147,-0.013645855,0.004565382,0.029825885,0.023452936,-0.021915732,-0.061714735,-0.058103446,0.08124698,-0.082134314,-0.021214535,-0.02645989,-0.045795273,0.09238846,-0.109734416,0.0800933,-0.03411223,0.046836093,0.039886385,0.03643093,0.030060811,0.082331695,-0.012734639,0.00038273874,0.0155547345,0.07417079,-0.043987475,-0.11812795,-0.0016584494,0.057314284,-0.0018373302,0.051547565,0.08279955,-0.034745853,-0.042237308,0.0012733073,0.028859692,-0.014460648,0.111069866,0.10702619,0.024948189,0.028776627,0.0027352103,-0.06503483,0.011462341,0.03993013,-0.03626459,-0.072610885,-0.07219518,-0.089560494,0.013367829,0.029178614,-0.04447893,-0.0009390496,-0.08143961,-0.08369682,-0.02051793,0.020841574,0.07993877,-0.06584468,-0.04805718,-0.002055368,0.020592237,0.0144259315,-0.010478872,0.027093187,-0.054336544,-0.04208134,0.030286893,-0.0071445443,0.043338474,-0.06737427,0.0459321,0.01587603,-0.037292786,-0.039072018,0.0120869065,0.018437928,0.029974297,-0.008376771,0.062487815,0.0018030176,-0.037626147,-0.035160597,-0.039703496,-0.028873913,-0.027994368,-0.003962051,-0.031160742,0.101126455,-0.02744968,0.08283239,0.0348542,0.04315312,-0.050930858,0.05009017,0.024552792,0.040097564,0.022463692,1.5430123e-05,-0.022877228,0.0051144506,0.027008858,-0.012573654,-0.008923177,-0.049858466,0.057648923,-0.026735483,0.029059034,-0.029112687,0.019450115,0.052561846,-0.026552344,0.035841327,-0.001901052,-0.036739066,0.09161575,-2.2230437e-33,0.001405644,0.038853284,0.02502753,0.014900375,0.05871423,-0.012564342,-0.026243653,-0.01535579,-0.09310658,-0.019997248,0.08879801,-0.008657221,0.018597787,-0.06522196,0.024986025,-0.0751503,-0.0023798952,-0.010586783,-0.01649472,-0.00033483893,0.0010328946,-0.116257004,0.032306436,0.055679306,-0.009916098,-0.009744211,0.03861644,0.04594373,-0.051581897,-0.0020288795,0.07117835,0.03517179,-0.044512704,-0.04286664,-0.025328066,0.0018631987,-0.006444106,0.00048966566,0.02285567,0.0510809,-0.027026199,-0.019004732,-0.021002006,0.07971218,0.071358226,0.045413796,0.08339048,0.029604735,0.037381,-0.04685484,-0.053216178,-0.067770205,-0.14929785,0.017647091,-0.0046820017,0.013633394,0.006018944,-0.009703026,0.07550501,-0.037819795,0.08655989,0.001738319,-0.058244664,-0.09020087,-0.00027680333,-0.06461912,0.026830913,0.029883336,0.010591899,-0.00079497154,0.007284343,0.021589283,-0.014462205,-0.02270951,0.020334369,0.073913805,0.013853762,0.032464843,0.048329085,0.06675546,-0.024719838,-0.008481675,0.00014592445,0.04956885,0.092839375,0.0028081725,0.04676076,-0.13996215,-0.09603852,-0.034619328,0.013922723,-0.045881964,0.09253397,-0.064694874,-0.046189062,-1.295825e-35,0.059766136,-0.059309177,0.0957315,0.03572639,-0.061318226,-0.077992246,-0.10918915,0.05197366,0.053140316,0.06875181,-0.030151844,0.019571995,0.118394114,0.06512176,-0.03626258,0.021868886,0.08738363,0.033640433,-0.1170793,-0.0020281377,-0.060475,0.11072344,-0.03728512,-0.008711476,-0.04344375,0.012278303,-0.037386652,-0.016517967,0.021332178,-0.026536753,-0.05930146,-0.043995745,-0.037760623,-0.03767612,0.05687323,0.11002549,0.069600515,0.0074479966,-0.030576896,0.09146062,0.064777896,-0.02492602,-0.024521185,0.08252911,0.076317824,-0.013905529,-0.09372802,0.041885436,-0.017302036,-0.030640336,-0.06371175,0.011702156,-0.041261867,-0.03453498,0.05613288,0.059553273,0.06496153,0.0292205,-0.04785987,-0.07326117,-0.06460646,-0.0019316692,-0.0100800535,0.06955515,0.033624627,0.0121065015,0.02791862,-0.024533505,-0.039646987,0.019932648,-0.07597994,-0.008519871,-0.1126212,-0.013714988,0.03921454,-0.018849209,0.10268933,-0.04536944,0.009498202,0.017326247,-0.012326336,0.06726086,-0.1201508,0.04494518,0.006412077,0.033601798,-0.044525847,-0.05972641,-0.023669397,0.009950412,-0.031904574,0.024844013,-0.12786856,-0.101683915,-0.016490186,-1.8895918e-08,-0.0077066384,0.061186768,-0.03511287,-0.03725893,0.059455376,-0.09118021,0.09663966,-0.00013823506,-0.0073399097,0.055752967,0.03296132,0.047471162,-0.013396485,0.0018106007,0.0384491,0.06999737,0.07377458,0.095898226,-0.0113362465,-0.0021268842,-0.07850523,0.028732423,-0.0052689975,0.056580774,-0.04899311,-0.010370316,-0.015305526,0.008667762,0.057046246,-0.09159012,0.018545555,0.025808286,0.0012084966,-0.022846334,-0.014153769,-0.07563612,-0.035127483,-0.03469964,-0.003555197,-0.048080657,-0.03757632,-0.039452035,0.018731311,0.020844528,-0.057846535,0.046968162,0.05134064,0.0026731456,-0.039517924,-0.03941475,-0.12617105,-0.0024326711,0.026058702,0.09541667,-0.020877527,0.01386036,-0.08844521,-0.018679155,-0.008569706,0.047374982,0.039053444,0.0042303135,-0.038713116,-0.06383645} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.502081+00 2026-01-30 02:01:09.677813+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1756 google ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB 1 t 1759 Go Karts Mar Menor unknown Magnifico circuito de karting outdoor con karts de calidad y a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan economico. magnifico circuito de karting outdoor con karts de calidad y a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan economico. 5 2020-02-01 01:52:39.833374+00 es v5.1 O2.01 {O1.02} V+ I3 CR-N {} {"O2.01": "Magnifico circuito de karting outdoor con karts de calidad", "V1.01": "a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan ec"} {0.026229106,0.025657348,0.016128756,0.049726058,-0.052468136,0.019483523,-0.010215882,0.0051323706,-0.058808282,-0.008650271,0.018151807,0.013484465,0.0022815454,0.061132498,0.01891217,-0.06411836,-0.066060126,0.008511569,-0.0046692714,-0.008367236,0.035776332,-0.052169897,-0.010022947,0.024923215,-0.06575229,-0.049057066,0.03032394,0.010097695,-0.04227106,-0.07092259,-0.08832398,0.038656488,0.00026425294,-0.053713333,-0.01835644,-0.0305345,-0.07115281,-0.04156062,-0.04909836,-0.010091396,-0.061093144,-0.09063035,-0.030366134,-0.016415235,0.026232572,0.016852142,0.017010711,0.0017336215,0.02519902,-0.0064712046,0.0021408987,-0.011960738,0.0053730174,-0.002713813,0.0354147,-0.031088805,-0.086568706,0.021139327,0.13027307,0.03688644,0.09154934,-0.009012892,-0.07260878,0.018034343,0.002406134,-0.061141226,-0.024440689,0.03793603,-0.03156205,-0.04620416,0.11165656,-0.039339192,-0.010780281,-0.049360927,0.033320434,0.050876442,-0.051768105,0.0021694223,-0.0797078,-0.0041255862,0.05438102,-0.025144499,-0.02828498,-0.08206525,0.068960086,-0.010153262,0.07144122,0.023777295,0.05978037,0.02797924,-0.034823902,0.07128152,-0.1339552,-0.025328834,-0.032302648,0.0008712173,-0.004953164,0.015571886,0.021559866,0.0065656654,0.11745341,-0.04789608,0.08897219,0.05495373,-0.012870403,0.0039637773,0.005746745,0.00568122,0.023911187,0.023728369,0.0013495008,0.003745761,-0.06385204,-0.11229035,-0.06658672,0.013572921,0.016563313,0.028890323,0.035852175,-0.0075610783,0.0411398,-0.00026689272,0.017486101,0.03700732,0.054790404,-0.018871097,0.110192835,7.9192834e-33,-0.12313488,-0.09129788,-0.024899913,0.004800363,0.044306405,-0.025734354,-0.033812307,-0.06348691,-0.01690878,-0.022486348,0.010434674,0.13502814,-0.00245425,0.028952546,0.16010492,-0.027421206,0.03832517,-0.06558742,0.054292753,0.0293414,-0.0027829248,-0.097816475,-0.008124825,0.10955793,0.02333586,0.055577736,0.07479001,-0.01715766,-0.113178514,0.044774815,0.065784,0.01520061,-0.01809063,-0.024907,-0.06187552,-0.011843619,0.030628722,0.019203225,-0.014697009,-0.018534815,-0.058384705,-0.058816656,-0.0014165066,-0.0032772883,-0.10025131,-0.036230985,0.041239813,0.03555131,0.047978684,0.05703768,-0.08326959,-0.0679226,-0.03323317,-0.03492509,0.05442785,0.1051377,-0.012336568,0.019206677,-0.01810044,-0.03259124,-0.010548489,0.04978432,-0.0027802973,-0.020188073,-0.07400605,-0.056971006,0.021339934,-0.0055445614,0.026765207,-0.024400814,-0.06654791,0.037467618,0.025044013,-0.04634467,0.09290838,0.011208115,-0.08612086,0.034494232,-0.024891265,0.07736381,-0.10684584,-0.012742155,-0.0027120023,-0.0017266253,0.055840664,0.053542733,0.04292699,0.052988924,0.040210187,0.043179877,-0.037903737,0.08839346,-0.016464407,0.029631235,0.08570049,-9.724801e-33,0.03822625,0.023373025,0.14297192,0.056229405,0.013723597,0.06346691,0.027588105,-0.1194788,-0.010485087,-0.0033393095,-0.12656513,0.00031673993,0.04781961,0.00010889914,0.0061949887,0.018286979,-0.027780337,-0.008331672,-0.038241416,0.0147592025,-0.026719298,0.03245202,-0.023271795,-0.03921279,-0.03987364,-0.04173293,0.01879275,-0.006814389,-0.092748895,0.020926727,-0.03275692,-0.013546935,0.012901151,0.044586327,-0.12115271,0.03159232,0.0623352,0.03918376,-0.015163371,0.035990916,0.058967527,0.060050953,0.031409003,-0.010327668,-0.09300762,-0.03628242,0.07038806,-0.020278651,0.05917423,-0.0021744987,0.11567921,0.035783846,-0.12047538,-0.01597331,0.0037042582,-0.02316612,-0.03614634,-0.017763691,-0.12519887,-0.0014701667,0.05139848,-0.023627069,0.011943889,0.011319963,0.038138315,0.03735923,-0.10026234,0.023058087,0.00025438424,-0.040683325,-0.014012963,0.047500722,0.003199302,-0.026609156,9.317604e-05,0.012660805,-0.024968553,0.1078913,0.023304667,-0.0027040038,0.055108186,-0.03477348,-0.065394506,-0.0066709816,0.029930046,-0.058716837,-0.038232166,-0.032234143,0.02278655,-0.031131798,0.024403641,0.07421545,-0.0035789781,0.0041907947,0.0021822697,-4.254405e-08,-0.05921251,0.06127484,-0.09639483,0.0016049397,-0.004449356,-0.011561578,0.07145906,0.03375755,-0.031881165,0.029279923,0.018759413,0.0016785159,0.039093018,0.031599183,-0.013443681,0.040033195,0.02171265,0.12325018,-0.010804617,0.08160723,0.023076564,-0.026755238,-0.06125514,0.081259266,-0.06936106,-0.014683758,-0.025813948,-0.02784436,0.060328137,-0.01613649,0.007438384,-0.012836954,-0.03068513,-0.03238048,-0.019232018,-0.008962967,-0.103000455,0.07669996,-0.00926346,0.057769846,-0.057529636,-0.12157826,-0.085692264,-0.016605554,-0.08796019,-0.035433304,-0.08186236,-0.02608092,-0.046846405,0.08084367,-0.045746807,-0.033316977,0.035655774,-0.019009685,0.073646404,0.052324504,0.07605862,-0.03537975,-0.08035714,-0.0028040991,-0.08621372,-0.0058021983,-0.013112275,-0.020080807} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:49.188549+00 2026-01-30 02:01:10.594444+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1773 google ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE 1 t 1776 Go Karts Mar Menor unknown Un buen lugar para disfrutar con amigos.\nLastima que muchas veces hay participantes de otras categorías superiores que no respetan a los F200 y van a fuego creando peligro y choques innecesarios. un buen lugar para disfrutar con amigos. lastima que muchas veces hay participantes de otras categorías superiores que no respetan a los f200 y van a fuego creando peligro y choques innecesarios. 4 2025-01-30 01:52:39.833374+00 es v5.1 E4.01 {P1.02} V- I3 CR-N {} {"E1.04": "Un buen lugar para disfrutar con amigos.", "E4.01": "Lastima que muchas veces hay participantes de otras categorías superiores que no respetan a los F200"} {0.09211362,0.02802739,0.02783079,-0.03015568,-0.029371861,0.034131225,-0.014088008,0.055381026,-0.0068449276,0.062389005,0.05434095,-0.019171735,-0.01383709,-0.008782156,0.029036747,-0.017862907,-0.07626573,0.009561312,-0.03628185,0.024072152,0.065461144,-0.06988914,-0.04177171,0.117567435,-0.17228106,-0.016349763,-0.01458744,0.0288424,-0.061882943,-0.091142274,0.005109958,0.046521533,0.06635385,0.05883886,-0.068182275,0.026797839,0.06225863,-0.039200913,-1.8381359e-05,0.043774437,-0.17447914,-0.05377832,-0.013255151,-0.11189183,0.070123285,-0.053323198,0.0045330646,0.050596427,0.030931314,-0.008646254,-0.016905222,1.1605743e-05,-0.0036091122,0.02989169,0.0058584227,-0.016091162,-0.028274534,-0.079445675,0.012990884,0.045044318,-0.043440133,0.04220985,-0.080010965,0.03418541,-0.041631434,-0.0055415886,-0.016593276,0.026736192,-0.062140696,0.12579206,0.100308456,-0.094389044,-0.0084466245,0.007783401,0.01697994,0.021361567,-0.035148624,-0.012211085,-0.021891981,-0.035492633,0.032280345,-0.032806557,-0.0018169725,-0.12977844,0.04583992,-0.0349133,-0.049327444,0.036111955,0.013372329,0.032822322,-0.032979272,0.09042361,-0.033068545,0.025487944,-0.014086129,0.045341764,0.018201102,-0.02788229,0.050648216,0.06910744,0.06730221,0.028281126,0.0008788537,-0.0027385605,-0.008151624,0.020784894,0.061998907,-0.00207055,-0.015143192,-0.03033482,-0.090737276,-0.019461637,-0.03821508,-0.030655451,-0.08130271,-0.03343089,-0.03138532,-0.009644578,-0.015068761,-0.05061433,0.0664862,-0.023069046,-0.013112272,0.018194117,0.067579046,-0.018141566,-0.04622876,1.1492749e-32,-0.014405489,-0.09518649,-0.043883305,0.041953634,-0.026992321,0.016947001,0.009853489,-0.018640578,-0.018057046,-0.0009971558,-0.041842837,0.10748499,-0.018359061,-0.03709568,0.14889492,-0.018178746,-0.03047618,0.033653963,-0.014139728,0.03215377,0.018239442,-0.0037046594,0.03742482,-0.039778795,-0.025884379,0.074064426,-0.015743196,-0.060271963,-0.052094616,0.055719607,-0.011609131,-0.032653157,0.0027519292,-0.03505866,0.0011748037,-0.049027786,0.07601781,0.045390118,-0.04449648,-0.04187751,0.04874604,0.0107991835,-0.0410362,-0.0028841717,0.05696008,0.042647623,0.054985423,-0.004750567,0.029823387,0.090959646,0.0044496176,-0.06951498,-0.013932967,-0.116757125,0.035271235,-0.015777588,-0.07154333,0.010975715,-0.03796462,-0.020580115,0.0047087683,0.0058145234,-0.042805612,-0.04442832,-0.03490331,-0.06408299,0.099012434,0.03162654,0.113011755,0.05925386,-0.024211917,-0.038209297,-0.0605192,-0.0066788928,0.056557167,-0.0037066378,0.048193023,-0.022355843,-0.0076912167,0.03702063,-0.034723166,-0.01725102,-4.2127092e-05,0.014872616,0.06611927,0.08339201,0.060663454,0.021038635,0.026254537,0.08145672,-0.050567005,0.019281978,0.022878714,-0.0006085058,0.059347205,-1.2123749e-32,-0.023182072,-0.023552977,-0.04242482,0.06865087,-0.015337904,0.024157166,0.022402637,0.0031538485,-0.018794827,-0.049228095,-0.055886965,-0.102360986,0.15358205,-0.064788476,-0.031546168,0.025328605,0.026557976,-0.10671543,-0.052704755,0.010379594,0.020570466,0.07912414,0.0560612,-0.0074866707,-0.018428208,-0.044628758,-0.02300723,0.028349971,-0.06313764,-0.08624273,0.08118354,-0.09425564,0.073785685,0.033043105,-0.05852748,0.026692888,0.05891257,-0.005442032,-0.015991531,0.044475228,-0.00602044,0.101378106,-0.074094094,-0.013824082,-0.035587486,0.026732294,-0.058899306,-0.08442546,0.06329069,-0.081835195,0.009677763,-0.06878327,-0.08925448,-0.056265455,0.059030246,-0.08904895,-0.029260263,-0.08090366,-0.09032325,0.019119717,0.05981987,-0.029382538,-0.055466816,-0.029828696,0.087357454,-0.01395667,-0.07173232,0.036400735,0.014889601,0.08712513,0.06691375,-0.0072740833,-0.12102619,0.010727068,-0.046412453,0.0218868,-0.098048545,-7.131359e-05,0.0062563447,0.058347598,0.0065699085,-0.03564731,-0.0031938015,0.0041149845,-0.037579022,0.013876768,0.024485173,0.02265778,-0.0029635334,0.051429957,0.08954587,-0.014926629,0.017891143,-0.03616598,-0.030796656,-4.784652e-08,0.0035510582,0.0033798455,-0.043619256,-0.016749067,0.021137917,-0.030932212,-0.010088012,-0.030646525,-0.009475243,0.07835446,0.028921032,-0.04321078,0.0401682,0.054709718,0.008787623,0.063331716,0.089998975,0.089033075,-0.016172191,-0.014161996,0.01714928,-0.0063377884,-0.06883228,0.004508306,-0.012070535,0.008553128,-0.044825096,-0.03198723,0.055349432,-0.0016485412,-0.02287366,-0.032682136,-0.041892245,-0.06729062,-0.0010451511,-0.0029605671,-0.11270028,-0.0020058397,-0.059793353,-0.01432108,0.10181608,0.008697855,-0.04347461,0.019793708,0.0055035003,-0.076142766,0.015332031,-0.019659983,-0.05005013,0.0040096166,-0.016157776,-0.019601876,0.022604458,0.03175767,-0.008395102,-0.013063673,0.03712539,0.056747835,-0.032605696,-0.031724896,0.15946692,0.10891063,0.0014269126,0.035288405} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:20.276952+00 2026-01-30 02:01:10.656043+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1754 google Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB 1 t 1757 Go Karts Mar Menor unknown Eine sehr tolle kartbahn. Ich konnte hier sogar mit meinem 4 Jährigen Sohn zusammen fahren. eine sehr tolle kartbahn. ich konnte hier sogar mit meinem 4 jährigen sohn zusammen fahren. 5 2025-07-04 00:52:39.833374+00 de v5.1 O1.01 {} V+ I3 CR-N {} {"A3.02": "Ich konnte hier sogar mit meinem 4 Jährigen Sohn zusammen fahren.", "O1.01": "Eine sehr tolle kartbahn."} {-0.045808878,0.080897026,0.037930533,-0.007964531,-0.1259216,0.058096793,0.020184666,0.025064677,-0.021560287,-0.058553156,0.01166492,-0.080081455,-0.075205185,-0.03103984,0.0106742,-0.026455339,-0.02282753,0.032559548,-0.042150438,-0.06472412,0.032531146,-0.025405604,0.02171793,0.012254595,-0.022764754,-0.009842065,0.014050995,0.03142318,0.07239837,-0.028201511,0.027442226,-0.0034008059,-0.039288145,-0.03484488,-0.02660739,-0.082255654,0.053455267,-0.045134537,0.030613257,-0.001253652,-0.06407833,0.066375226,-0.011701852,-0.008026324,0.036293074,0.032009687,0.0120429965,0.012908352,-0.0025394158,-0.039314784,-0.042647794,-0.027403444,0.057003926,-0.020498095,-0.020244807,-0.092145905,-0.0522093,0.028860126,-0.02976376,0.06419197,0.0017604305,-0.06257349,-0.036432292,0.015725061,-0.07651611,-0.008277399,0.010841252,-0.0061248536,-0.014745901,0.064784884,0.04203933,-0.09195971,0.047502827,0.03608705,-0.019184854,-0.13700075,-0.013726211,0.0431363,0.0050267717,-0.015319659,-0.004091022,-0.05123799,0.006240291,-0.0017773308,0.039707668,-0.059126377,-0.014821233,0.020357274,0.05391826,0.0407105,0.004955677,0.0013804642,-0.07212594,-0.027619313,-0.06436057,0.022513406,0.028354825,0.0016381611,0.040126372,0.065931,0.035895538,0.018578358,0.010774027,0.086237185,0.04758397,0.0760403,-0.004176204,0.03825919,-0.043518472,0.035161115,0.04479138,-0.043964427,0.012845376,-0.053514577,-0.03195359,-0.0065885396,0.07660489,-0.04142381,-0.05021399,0.01263072,-0.058128115,0.04921623,-0.0054759053,0.092754625,0.049377788,0.015182595,0.024093129,5.85122e-33,-0.06843673,-0.06637709,0.0030023567,-0.031924717,-0.06245545,-0.07223901,-0.07841947,0.012055408,-0.010023943,-0.026938166,0.02139862,-0.1461654,-0.026231881,-0.084051415,0.10832706,-0.016964756,-0.04293621,-0.0994091,0.078718044,-0.012375411,-0.03753427,-0.08073722,0.037301537,0.040523764,0.051281136,0.0031979582,0.13562682,-0.025847537,-0.009720321,0.06299356,0.03852995,-0.04652501,-0.05682845,-0.03326872,-0.03724688,0.037997592,-0.028323911,0.082378924,-0.048214283,-0.013975674,-0.02142073,-0.07374906,-0.098320946,-0.034293167,0.025917897,-0.00092457165,-0.029285165,0.054952767,0.096233696,0.01330367,-0.09589389,0.026132312,-0.010935816,0.035690468,-0.035502937,0.07302745,-0.020119399,0.063136354,-0.08271003,-0.008656663,-0.017334348,0.005727457,-0.063875735,0.07270489,0.012592112,-0.0063846684,0.0311293,-0.026856981,-0.016433729,0.045824647,-0.06910135,-0.079304285,0.06909756,0.06254754,-0.007936102,0.05904712,-0.07903002,0.06507332,-0.02548668,0.009200052,-0.0674558,0.0072989115,0.028086565,-0.015652863,0.09248185,-0.030766658,0.066926345,-0.07746263,-0.012211758,0.06813362,-0.012392744,0.058001593,0.043093067,0.030439131,-0.013395468,-8.444457e-33,0.032256693,0.06678595,0.012158919,0.04509188,-0.02512389,0.069214806,-0.030500157,0.04985345,-0.059369095,0.10323599,-0.03164977,-0.003660203,0.024215454,-0.035201084,0.048030887,-0.016547285,0.039832585,-0.01288509,-0.029649824,-0.03136499,-0.004705104,0.047952496,0.0031422912,0.019681986,-0.04831056,-0.020319715,0.05791795,0.056157224,-0.047625903,0.053111017,0.001262602,-0.042289928,0.07085644,-0.06586307,0.008641494,0.034775134,0.09880585,0.06730308,-0.03953221,0.027370503,-0.030195698,0.07928003,0.0048261127,0.04663451,0.04348039,-0.017997945,-0.14039789,0.003364733,-0.08072891,-0.042591535,0.030276053,0.0033324223,0.022429345,-0.08519564,0.030801201,-0.023754159,0.04783548,-0.097673506,-0.050676703,0.029427713,0.05047485,-0.00023853335,0.045169767,0.017728921,0.071149826,-0.09770649,-0.069352515,-0.058877155,-0.010299365,0.028822819,-0.0045139403,0.01687782,-0.007648454,0.015161669,-0.047163084,-0.037903838,0.024648994,0.103388615,-0.03280862,0.047635328,0.024384713,0.025099631,0.06864512,0.03266495,-0.0033894454,-0.10367671,0.046681985,0.03618771,0.060360644,0.031512458,0.047020584,0.05077309,-0.08659141,-0.0057307426,-0.0788568,-3.2333386e-08,0.046430405,-0.047984723,-0.048329096,0.013655045,-0.064625695,-0.07875695,-0.054486886,-0.004699472,-0.11241877,-0.022567408,0.041218873,0.07897526,-0.088845074,0.09391025,-0.004824134,-0.0104432115,-0.08522675,-0.026020305,-0.04191714,-0.020468906,0.063562766,-0.0666034,-0.04202207,0.05621292,0.013843362,0.06989625,-0.012801173,0.0007247564,0.047170497,-0.10210796,0.0136359595,0.0917997,0.042468376,0.0039583896,-0.08686531,-0.063073516,0.004718273,0.035871975,-0.0013549776,0.14069612,-0.032410603,-0.026307194,0.025633572,0.003650037,0.05951796,-0.04248932,-0.04819675,0.043621488,0.0366588,0.07500006,-0.10098929,0.010684886,0.010271164,0.028017057,0.007756791,0.061493147,-0.006408343,-0.0850764,-0.08058305,-0.039776884,0.11487608,0.04959264,-0.032223575,-0.01964042} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:46.329484+00 2026-01-30 02:01:10.58706+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1533 google ChZDSUhNMG9nS0VJQ0FnSURONnQ3OUdnEAE 1 t 1536 Go Karts Mar Menor unknown Good karts and the track was big and amazing good karts and the track was big and amazing 5 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {E1.03} V+ I3 CR-N {} {"O1.02": "Good karts and the track was big and amazing"} {-0.031884816,0.07940186,0.029303541,0.052076053,-0.04031023,0.041198928,-0.046133775,0.016542992,-0.04509782,0.00750185,-0.01323068,0.0816209,-0.0019739552,-0.01737862,-0.024028912,-0.049152564,0.06436542,-0.038452107,0.020416645,-0.10488877,-0.060820933,-0.0472132,-0.010385525,0.056773193,-0.09567381,0.029881692,-0.028230997,0.041743133,0.03244519,-0.02730452,-0.10683108,0.0389449,0.010571866,-0.028930357,-0.031590436,-0.027590599,0.0031205178,-0.032442298,-0.03525106,-0.013670066,0.046307933,0.022888824,0.04905183,0.02782764,0.022785693,-0.021391664,-0.014652738,-0.056141958,0.020472541,0.060053255,0.069072306,-0.07570841,0.0155931115,-0.09319052,-0.020628188,-0.01558065,-0.089930356,0.03031268,0.0692041,-0.07259146,0.060011435,-0.018358495,-0.032313596,-0.03214435,-0.011128545,-0.07452895,-0.07875572,0.07955796,0.009282065,0.078104064,0.038825776,0.0023783364,0.01447491,0.025630463,0.021948121,0.056648865,-0.08471396,-0.03415895,-0.0952831,0.033670332,0.06304957,-0.050196443,-0.013741621,-0.091888614,-0.013758776,-0.07882065,0.0847681,-0.0059205294,-0.010009762,-0.027830478,0.026875641,0.057299536,-0.057486802,-0.012821022,0.06994383,-0.054145362,-0.01800795,-0.0010612342,0.0914719,0.048258875,0.11368942,0.07111693,0.026418218,0.038620535,0.024222272,0.015966604,0.015769742,0.0654293,0.10678268,0.030164989,0.050920263,0.06602989,-0.025670147,0.024627442,0.008153181,0.010261411,-0.0018914323,0.10739733,-0.016252311,-0.003759846,0.029137932,0.006543677,0.011858244,0.009552983,-0.016866691,-0.010238351,0.07855935,-2.5908274e-33,-0.107139446,-0.0022201845,0.00084104465,-0.051746823,0.087473616,-0.08736131,-0.022784144,-0.10538814,-0.12041293,0.06684132,-0.035561804,0.06410552,-0.003366663,-0.055811197,0.10778704,-0.05164629,-0.08609435,-0.02087607,-0.05947991,0.07151527,-0.00012967894,0.028438862,0.024052812,0.0042967545,0.023986904,0.020015826,0.054245405,-0.0032850648,-0.020796012,0.0034203082,-0.011840813,-0.020394322,-0.021384818,0.079893306,-0.055092,0.012330358,-0.03121027,-0.075883,-0.004166064,0.036457404,0.08737178,-0.021602448,0.010522297,0.00061893975,-0.05792533,0.041494016,-0.026955232,0.06739357,0.04847097,-0.03320888,-0.047092732,-0.04327321,-0.01864187,-0.01972917,0.01624749,0.043374598,0.07398789,0.047072746,-0.043664373,-0.02718474,0.03921844,0.010102099,0.050102934,-0.06308892,-0.05311479,0.011841644,0.016796239,-0.040621888,-0.018062994,-0.003451702,-0.06040133,-0.0075285975,0.004992932,-0.111445285,0.11963638,-0.021735508,-0.11122578,0.01027374,-0.10222911,0.066663295,0.0017412619,-0.013150932,0.010030457,-0.0035440878,0.03396693,0.01347548,-0.080439776,-0.033114113,0.01709225,-0.016407747,-0.061279822,0.055127457,0.021473913,0.011399137,-0.0055327793,1.662096e-33,0.06870117,0.12862396,0.112477966,0.088771194,0.017143505,0.05318341,-0.044217978,0.06558926,0.031444088,0.05301181,0.059495676,0.031254325,-0.004604586,0.0052620196,-0.02081208,-0.0070556733,0.06271862,0.048172157,0.043190416,-0.07410547,-0.010905638,-0.010311221,-0.0028700568,-0.02078733,-0.01532155,0.057579797,-0.017979158,0.028030148,-0.044227723,-0.03490067,0.0058261007,-0.012921686,-0.016880095,0.005306798,-0.015740862,0.07150069,0.023147212,0.033528306,-0.09277659,-0.011937336,-0.016526358,0.03797081,-0.018435234,0.074569486,-0.012799502,-0.013104155,0.060666937,0.060666155,0.013790938,-0.038852897,0.022379685,0.05005614,-0.03700214,-0.0370378,-0.041674476,-0.02114924,0.06778523,-0.014826817,-0.005985258,-0.037122414,-0.111562386,-0.009505544,-0.029521346,-0.024179274,0.034432,-0.0020448829,-0.022678183,-0.108627394,-0.0988671,-0.02015091,-0.12127509,0.07274911,-0.06096044,0.07710597,-0.0010299815,-0.041711137,-0.02646192,0.049594544,0.042782087,0.0431,0.03936711,0.021553582,-0.056510378,0.02399472,0.07628906,0.15059593,-0.06278219,-0.026302697,0.008010173,0.08939049,0.113442875,0.028682044,0.0011188482,0.0008480886,-0.029088335,-1.5992423e-08,-0.0067929034,0.13692379,-0.10937262,-0.011800049,-0.009916644,-0.017032605,0.003121638,0.06460233,-0.066237114,0.09941592,-0.08006347,0.035564244,-0.02828576,0.06086702,0.024693383,-0.056647997,-0.016260542,0.09634246,-0.014698041,0.024413826,0.015299498,0.0008047056,0.012249045,0.0034746644,0.006214684,-0.07631398,-0.02072195,0.03456043,0.05821828,-0.034501985,0.03380301,0.02386609,-0.06286697,0.03906571,-0.01751385,-0.057399068,-0.06498881,0.0638586,0.072408274,-0.056015264,-0.017611142,0.008024841,-0.065061495,-0.014387016,-0.04152632,0.010166541,-0.02702383,-0.062217392,-0.089474715,-0.017687501,-0.02239912,-0.030801151,-0.063643806,0.083890095,0.05212268,-0.0107657425,-0.009539177,-0.054331105,-0.03618834,-0.037804045,-0.02592807,-0.06692275,-0.0013470479,0.037202325} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.533035+00 2026-01-30 02:01:09.682357+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1764 google ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE 1 t 1767 Go Karts Mar Menor unknown Wetter war top. Zufahrt und Beschreibung passt auch. Das Personal auch sehr nett, das Englisch könnte besser sein. wetter war top. zufahrt und beschreibung passt auch. das personal auch sehr nett, das englisch könnte besser sein. 5 2025-05-05 00:52:39.833374+00 de v5.1 P1.01 {P2.01} V± I2 CR-N {} {"A1.04": "Zufahrt und Beschreibung passt auch.", "E1.04": "Wetter war top.", "P1.01": "Das Personal auch sehr nett, das Englisch könnte besser sein."} {-0.031404667,0.08373337,0.03415405,-0.010888919,0.051358305,0.013889753,0.13736764,0.13460253,0.001852353,-0.0020614224,-0.04773487,-0.10571167,-0.011909144,-0.011574804,-0.051637676,-0.054467674,-0.09050241,0.050389063,-0.002169445,-0.04800991,-0.036577147,-0.020650432,0.024580674,-0.020055255,-0.029369097,-0.020873902,-0.021358108,0.0062217824,0.027588136,-0.03450449,0.013901246,0.0050031184,0.0058176573,0.012541185,0.025225995,0.033713225,-0.0318495,-0.04868652,-0.071975484,0.02193145,-0.07403124,-0.004376575,-0.018107884,-0.02118593,0.014461632,0.07011419,0.0842532,0.034251336,-0.104920074,0.06344197,-0.04888452,-0.024919486,0.047648124,-0.01872381,0.036315378,-0.07220792,0.019229943,-0.04870299,-0.046877548,-0.019365806,-0.017450947,0.0032199954,-0.103310026,0.038718626,0.03145571,0.0055729975,-0.042167958,0.10023223,-0.040663444,0.034236226,0.0453666,-0.07340523,-0.031646356,0.006071738,-0.00011602353,-0.087050185,-0.038314383,0.034463994,0.009892362,0.0023858116,-0.008429907,-0.03187732,0.014467879,-0.00016710078,0.014528214,0.023619534,0.024944559,0.027065141,-0.019427778,0.010657387,-0.033785827,-0.103287384,-0.08195937,0.08228165,-0.09459603,0.014527605,-0.033139285,-0.08122235,-0.031031631,0.049864404,-0.08653327,-0.03293391,0.09237111,0.07479791,-0.019025154,-0.021975901,-0.034862123,0.038964875,-0.011067159,0.003675678,-0.05927744,-0.13707545,-0.019687362,0.010949932,0.05296196,0.0040577333,0.05818418,-0.09167933,0.0039342856,-0.038495947,0.031630233,-0.0006343365,-0.016398208,-0.02884933,-0.03845354,-0.051674504,0.08806088,7.395257e-33,-0.0067319577,-0.07783662,-0.040214386,0.03799268,-0.06537158,-0.0064475266,0.021468965,-0.08745651,0.029576957,-0.0033854584,0.00064209703,0.027737677,-0.06145185,0.07584568,0.041220896,-0.0022021485,0.026360206,-0.031939276,-0.053930487,0.012136473,-0.062050447,0.058615867,-0.048161823,0.00038607387,0.022768222,-0.05712073,0.015318628,-0.0727181,-0.0055336663,0.016521947,0.04496912,0.0026193664,-0.0043052863,0.009585267,-0.04227278,0.013719548,0.010580228,0.038772564,0.085602164,-0.042971075,0.014580166,0.002533543,0.049011156,-0.022874944,0.03327013,0.034739733,-0.0006324489,0.024157874,0.01011773,0.013472066,-0.055194724,0.0046552815,-0.060453977,-0.028460175,0.014049791,0.057504546,-0.028569786,0.06266184,-0.06161381,0.011071357,-0.050583266,-0.008259639,0.001660894,0.016149733,0.0073439702,-0.06802237,0.03617796,-0.027377827,0.015149321,0.031261116,-0.16073178,0.03101881,0.06994225,0.026018765,0.018756427,0.035623025,0.0039608306,0.057940826,-0.008082721,-0.024606518,-0.011187845,0.072218865,0.040535003,-0.0351034,-0.0245142,0.030343551,0.05600232,-0.026180828,0.022716366,0.15711838,-0.04768744,0.011329385,0.0928613,0.010418849,-0.0070467996,-8.637663e-33,0.014671249,0.031138292,-0.031139884,0.094100095,0.06966002,0.08089567,-0.0040049898,0.03477868,-0.09954359,0.04625172,-0.040164888,0.010974353,0.08044616,-0.004939116,0.028387727,0.0002847399,0.021537341,-0.001936041,-0.0052235494,-0.104214355,0.038255926,0.015274496,-0.012387777,-0.053090345,-0.028593255,-0.041283872,-0.013199718,0.07074216,-0.03387044,0.021603262,-0.016982201,0.056466337,0.01522182,-0.029768238,0.034317944,0.024331355,0.07966196,0.033977766,-0.058630522,0.07726779,-0.017318953,0.0067225215,-0.08282511,0.0032794566,0.038078904,-0.021120418,-0.17706165,-0.09580685,-0.012823568,-0.10650561,0.001100368,-0.04825398,0.11078192,-0.101081766,0.031252336,0.0020439082,0.07008305,-0.09000541,-0.06968639,0.031576123,0.06618275,0.032296658,0.079957925,-0.040633805,-0.002466018,-0.07714652,-0.07693152,-0.0149451,-0.01802493,0.042281657,-0.012238814,-0.06755134,0.09448222,0.025961986,0.026310176,-0.12070028,-0.0006460774,0.10005552,-0.034378547,-0.014164851,-0.049736917,0.11190073,0.013797881,0.0030369652,0.044863254,-0.0289056,0.04564191,-0.003213912,-0.038192067,0.020772941,-0.020287903,-0.0071364427,-0.08282327,-0.004648429,-0.09941947,-4.0103863e-08,-0.0104238065,-0.08469027,0.020498808,0.03183222,-0.0468179,-0.0512467,0.071262166,-0.009969668,-0.05114051,0.04070997,-0.038426954,0.011571681,0.02794276,0.06494833,-0.031657267,0.056945402,0.04234448,-0.025508234,-0.070824504,-0.006493518,0.09483143,-0.031469706,-0.074538186,0.024830379,0.016985135,0.099978305,-0.013154494,0.010059637,-0.026348982,-0.0011594535,0.021390123,0.10667498,0.072460234,0.019770524,-0.050845064,0.04645813,0.02357057,0.037779313,-0.099941365,0.07410509,0.06876259,0.055959757,0.039525874,0.022104638,0.084173016,-0.07205464,-0.059271358,0.014776269,-0.018162472,0.04599957,-0.048250753,0.048153155,0.03320063,0.07641965,0.0051337588,0.073071696,-0.034945812,0.018170692,-0.047385342,-0.024606505,0.03081242,0.012977958,-0.063252844,0.064826205} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:08.425761+00 2026-01-30 02:01:10.621737+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1848 google ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE 1 t 1851 Go Karts Mar Menor unknown Buena pista, merece la pena. Distintas opciones. La cafeteria muy agradable y buenos precios. buena pista, merece la pena. distintas opciones. la cafeteria muy agradable y buenos precios. 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.01 {O3.02} V+ I2 CR-N {} {"O1.01": "Buena pista, merece la pena. Distintas opciones.", "V1.01": "La cafeteria muy agradable y buenos precios."} {-0.002111066,-0.0008836134,0.027599722,-0.04016011,-0.10331047,0.025748584,0.027044917,0.042062413,0.026128525,0.023459187,0.067819856,-0.0066756913,-0.0014234536,-0.008290432,0.03223189,-0.052219164,0.07532251,-0.00035762915,0.04234661,0.031673394,0.06689086,-0.05864845,-0.104295366,0.13961254,-0.09121338,0.01202559,0.056980982,-0.041700535,-0.031522036,-0.038234927,-0.028217152,0.044602484,0.14570256,-0.0031747797,-0.01823737,0.0076403464,0.112103745,-0.084085226,-0.010703704,0.041333817,-0.11168195,0.002287385,0.014312981,-0.011230833,-0.0118880505,-0.041351445,0.036243577,-0.005938688,0.04277925,-0.06686575,-0.013800956,0.019547952,0.029259382,-0.015576561,0.014895296,0.029795632,-0.0030032792,-0.08558676,0.0062524434,0.07363852,-0.07331213,0.033800606,-0.056137916,0.004233183,0.04587687,-0.008733526,0.01955157,0.017582076,-0.020766236,-0.0026865043,0.06630588,-0.07592026,0.081817634,0.025846047,-0.039041273,0.04751781,0.014114438,-0.007977425,-0.06805268,-0.06982865,0.0012272351,-0.053781983,-0.029855408,0.01579118,0.03332155,0.033927955,-0.0666892,0.025266623,0.10467175,0.011672401,-0.04974491,0.10528646,-0.085591726,-0.04246347,-0.0230491,-0.017696954,-0.04778486,-0.067619614,0.009866517,0.06446147,0.08524123,0.04607978,0.03407408,-0.0048178337,-0.042115193,-0.04021337,0.001095253,-0.041677777,0.001239057,0.03794659,-0.011963318,-0.042040072,-0.036242113,0.01484119,-0.12862647,0.04935087,0.085028745,-0.08713799,-0.04799324,-0.0790255,0.03965271,0.035888232,-0.034657665,0.0074847685,-0.060828518,-0.049106386,0.0035637752,2.7355781e-33,-0.09669814,-0.025637865,-0.016278591,0.03032541,0.02618043,0.01172783,0.0053903963,-0.033169318,0.03800773,-0.07839224,0.014692567,0.028587963,-0.009697342,0.017434921,0.022961589,0.070727624,-0.007973475,0.035416547,0.035900176,0.029090311,-0.09372388,-0.020348132,-0.01504812,0.01772462,0.022266135,0.041231483,-0.097055495,-0.09455354,-0.00028345553,0.046838045,0.01905844,0.024614971,0.026368683,-0.00015640973,-0.020697057,-0.054206423,0.04895365,0.0441696,-0.021144215,-0.003887299,-0.004882027,0.019635454,0.015993813,0.0612613,0.0131069,0.049078114,0.033162832,0.068007976,0.08446359,0.0049943263,-0.0031640234,-0.09721214,-0.05763182,-0.029257555,-0.05377262,-0.02327158,-0.058754902,-0.007961221,0.017799685,-0.022002973,0.032879733,0.09708859,-0.0008613722,-0.030205388,-0.023487745,-0.0142845865,0.00298022,0.04454906,0.20096102,0.02738378,-0.073920034,-0.06979781,-0.0059827403,0.06009076,0.003864368,-0.028693303,-0.010205887,0.02964847,-0.004038197,0.048692275,-0.0019030892,-0.010038139,0.0399389,-0.004508888,0.009218835,0.1190716,0.095175676,0.06118276,-0.024529973,0.068800405,-0.016074458,0.058080077,0.06379169,0.032172985,0.011428025,-4.226702e-33,0.010543181,-0.01221451,-0.0479811,0.0666048,-0.034368116,0.013487528,-0.0478517,-0.05599001,-0.017914759,-0.055694837,-0.10949895,-0.09555042,0.0812801,-0.047398772,-0.036438003,0.09976115,0.04797077,-0.05652334,-0.095148586,-0.02881161,-0.031347167,0.04262134,0.02987295,0.039473202,-0.002722926,-0.05344809,-0.0016909823,0.023455977,-0.04775871,-0.07490777,-0.055202834,0.00019680752,0.012744481,0.0058493665,-0.020669768,0.08072521,0.0018916046,0.03589852,-0.012603637,0.059211664,-0.0007668425,0.0008157827,-0.04187266,0.027540116,-0.07456485,0.039876126,-0.010695001,-0.14688587,-0.04527364,-0.051393587,0.06134852,-0.07223095,-0.05183707,-0.028282814,0.027990784,-0.04682121,-0.04964035,-0.0060088076,-0.05139784,-0.026094064,0.055633403,-0.03647661,-0.07792154,0.030648615,0.076301284,-0.035021227,0.0054777903,-0.022610344,-0.004474749,0.06431695,0.10464682,0.024549887,0.016595753,0.02847479,-0.07982331,0.037756894,-0.035970446,-0.031346567,-0.034370147,-0.023388855,-0.021274908,-0.022437865,0.026413275,-0.047171254,-0.029456299,-0.016797105,0.018527426,0.037004042,0.018082263,0.046827048,-0.034273367,0.021516722,-0.009685952,-0.097695395,0.027876882,-2.9918226e-08,0.057101455,-0.073935404,-0.040866382,0.07707697,-0.009871132,-0.078496024,-0.009382101,0.07841314,0.03157163,0.096863076,-0.07322181,-0.015145397,-0.008077281,0.02707862,-0.040079564,0.06795967,0.02955567,0.10058347,-0.0347322,-0.03222693,0.022093864,0.032826196,-0.024421528,-0.032020986,-0.013247589,0.03768145,-0.06875124,0.029044861,-0.0324215,-0.004262963,0.00048728296,-0.046990585,-0.053823914,-0.11418452,-0.006633447,0.023528537,-0.00062057946,-0.039466497,0.035135917,-0.0897759,0.044195488,-0.041709416,-0.093950085,-0.0025768739,0.04185532,-0.045282904,0.0038424977,0.013944479,0.017836783,0.08406949,0.022628967,0.03930742,0.11198369,-0.006466061,0.047360174,-0.07929652,0.043295395,-0.024715494,0.0018546198,-0.014178793,0.04245982,0.14180687,0.09117031,-0.06454151} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:55.659013+00 2026-01-30 02:01:10.939293+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1766 google ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE 1 t 1769 Go Karts Mar Menor unknown Fui el finde pasado con 7 amigos y nos trataron de lujo. Karts en perfecto estado y disfrute asegurado! fui el finde pasado con 7 amigos y nos trataron de lujo. karts en perfecto estado y disfrute asegurado! 5 2025-06-04 00:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"O1.03": "Karts en perfecto estado y disfrute asegurado!", "P1.01": "Fui el finde pasado con 7 amigos y nos trataron de lujo."} {-0.0071522733,0.0014141995,0.059200384,0.041539207,-0.011488486,-0.042132046,-0.013566521,0.023633353,-0.022691775,0.06561959,0.07382042,0.0084005315,-0.051540315,-0.043792408,0.037356224,-0.023686597,-0.07701098,0.0015875843,0.0025556155,-0.0501289,0.06987324,-0.089783855,-0.062456183,0.087743424,-0.07716493,-0.02972747,0.05621027,0.015693648,-0.060603287,-0.088100046,-0.045361888,0.050993808,0.09911599,0.029568944,-0.04413083,3.189362e-05,0.061574902,-0.08117057,-0.034053616,0.03195688,-0.097617365,-0.02166062,0.0038006145,-0.08643987,-0.012173677,-0.091463424,0.018395176,0.031740177,0.0662524,-0.05519604,-0.06439802,-0.06229909,-0.043404143,0.047623135,-0.0079238275,-0.037210174,-0.08757593,-0.067296706,0.11146146,0.048708234,0.035253692,0.09371432,-0.055599596,-0.00024033572,-0.040964946,-0.06822784,0.006388163,0.0040285457,-0.0962025,0.06763967,0.13017476,-0.044103056,-1.1720946e-06,0.09139345,0.020564325,0.03088946,-0.05621004,-0.071637124,-0.12468821,0.008778099,0.02132404,0.0069227577,0.019139362,-0.06932393,-0.025136799,-0.035313036,-0.03390819,0.04038302,0.048655782,-0.029627262,0.027001427,0.0859991,-0.098448955,-0.027198495,0.01998111,0.03603062,0.030249402,-0.0026487652,0.022902077,0.031699624,0.090422295,0.056476038,0.04158549,0.011181934,-0.034110002,0.047529846,0.01810313,-0.010730164,0.021224359,-0.028533636,-0.05064713,-0.05280522,0.009388273,0.01619665,-0.09105638,-0.041453987,-0.01987526,-0.011572863,-0.032115757,-0.009648603,0.07232822,0.0544798,0.048005555,0.03315204,-0.0068686595,-0.06762157,0.028885134,8.054726e-33,-0.07063762,-0.07446377,0.0078420825,0.067323275,-0.03726546,-0.022156289,-0.034116652,-0.066548236,-0.07133245,-0.05046224,-0.064791895,0.036275987,-0.02465157,-0.010346961,0.090226404,0.0289246,-0.017166356,-0.039270606,0.047641855,0.05305028,-0.037926923,-0.07275937,-0.021913169,0.0034089077,-0.02595739,0.0741698,0.03451712,-0.037640534,-0.017582927,0.041410882,-0.0927039,0.04437955,0.053374894,0.039849963,-0.05098351,-0.043122977,0.058284108,0.0008475643,-0.084548116,-0.014512871,0.037153445,0.018480172,-0.0052536507,0.011046225,0.007746643,0.09751551,0.07233533,0.028356984,0.11129725,0.0711271,-0.0724372,-0.06718757,-0.010434682,-0.09820959,0.03428811,0.0488079,-0.03705497,0.058282048,0.06631568,-0.029810151,0.08460321,-0.024774704,0.01489937,-0.08152988,-0.022371126,-0.013051351,0.048432313,-0.0116119,0.058958106,0.046788577,-0.04792102,-0.031379983,0.025870916,0.068940096,0.062715285,-0.012087871,-0.015522985,0.039888833,-0.034093626,0.011857755,-0.046247985,-0.0053119645,-0.030557878,0.080771685,0.05861112,0.056794375,0.04215758,0.01299638,-0.031526674,0.116459556,-0.016708365,0.0905659,-0.036943503,0.0018177497,0.04737006,-8.646573e-33,0.00075677584,0.00707237,0.024886953,0.06942454,-0.04213385,0.012723129,0.01601582,-0.0028980586,0.046647657,-0.058339726,-0.013835138,-0.1423443,0.086686395,-0.034352753,-0.020341499,0.075886324,0.01951896,-0.08092254,-0.04306708,-0.015317401,-0.0066928854,0.023086248,0.02122278,0.034910668,-0.0038389324,-0.061930608,-0.013495854,0.028322691,-0.13591585,0.0025962275,0.02858713,-0.09312326,-0.02944299,0.026662376,-0.07879648,-0.013260629,0.022565225,0.028695382,-0.017550776,0.025260458,-0.00063720386,0.08198041,-0.044966377,-0.03924938,-0.035758518,0.016762327,0.05865177,-0.09236303,0.01669408,-0.09076834,0.11789403,-0.0052629015,-0.04276692,-0.09330315,0.059424467,0.0029452944,0.009436303,-0.0026039137,-0.04351018,-0.0007427494,0.038432557,-0.008105119,-0.012002765,0.00040064857,0.08717418,0.039442364,-0.011170052,0.033281315,-0.017596377,0.015872432,0.035386745,-0.06336836,-0.062097844,0.026397884,0.008148067,-0.06758205,-0.10586048,0.034022022,-0.017679326,0.09174323,0.010441666,-0.02628345,-0.008830774,-0.030617861,-0.0122594675,0.005392944,-0.02461598,0.06185686,0.01608932,0.05476332,0.05490736,0.02310028,-0.024927218,-0.030859321,-0.04282529,-3.247566e-08,-0.014878795,-0.07114217,-0.05603714,-0.012358949,0.05805016,-0.021688087,0.04309394,0.029862879,0.0017800169,0.07653771,-0.027965927,-0.0497568,-0.023602154,0.10490429,0.018964905,0.012202387,0.100390114,0.09398709,0.004298082,-0.023599133,0.09986352,-0.006468586,-0.04069101,0.022325916,0.011234374,0.03532355,-0.05445476,0.012007204,0.0062252944,-0.0059310663,-0.03826015,-0.029164629,-0.04422817,-0.060807895,-0.047684893,-0.025053509,-0.07265464,0.020335324,-0.016883397,0.013185732,0.07680204,0.005628068,-0.06603909,-0.037388183,-0.02640068,-0.00059995725,-0.008191816,0.056973856,0.0042857123,0.025771048,-0.025343638,-0.05089111,0.08301474,0.025533145,0.064667664,-0.12623455,0.07439555,0.015028953,-0.017885122,-0.043297704,0.09216465,0.06326185,0.0050977976,0.0033982617} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:27.006505+00 2026-01-30 02:01:10.628932+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1767 google ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE 1 t 1770 Go Karts Mar Menor unknown Een super leuke namiddag gehad! Een lange baan met toffe bochten. Voor herhaling vatbaar! een super leuke namiddag gehad! een lange baan met toffe bochten. voor herhaling vatbaar! 5 2022-01-31 01:52:39.833374+00 nl v5.1 O1.02 {O2.03} V+ I3 CR-N {} {"O1.02": "Een super leuke namiddag gehad! Een lange baan met toffe bochten.", "R4.03": "Voor herhaling vatbaar!"} {-0.09984188,0.113703616,0.035299666,-0.0626196,-0.062263366,0.0059233718,0.051563688,0.080977276,-0.002635755,-0.059678067,0.047511034,-0.0059274444,0.0030307653,-0.060513895,-0.02753715,-0.008583471,-0.0010342866,0.06447244,-0.04818655,0.043485872,0.018904561,0.029301334,0.08355011,0.01099125,0.014889102,0.026072223,0.06782854,-0.049505394,0.014101038,0.012816997,0.10915506,0.070208244,-0.108944654,0.011103531,0.0030958185,0.043961782,0.0038501483,0.034703936,-0.008691427,0.04017761,-0.09619777,-0.018126262,-0.024363656,-0.14865252,0.05507844,0.044638295,-0.067629226,0.015499468,-0.032206763,0.03177844,0.0008087812,-0.03170583,0.0483943,-0.0041799145,-0.020172346,-0.082802474,-0.05170357,-0.017428225,-0.050404716,-0.033759788,-0.042263515,0.048478283,-0.064978406,0.031001696,-0.022343062,-0.053891726,-0.010510212,-0.012109822,-0.10366358,0.075276494,0.045831587,-0.06963257,-0.04849122,0.0025267347,-0.08494835,-0.024730504,0.0017230037,-0.11469332,0.050944716,-0.032212287,0.10249085,-0.002232673,0.028916856,0.04127528,0.007834761,0.015798336,0.015376076,0.012889303,0.02083391,-0.015580414,-0.01382991,-0.024871016,-0.066782735,0.026952043,-0.05759552,0.0012925272,-0.0113909105,0.07495424,0.029058507,0.045247052,0.029480917,0.02170594,-0.010601287,0.021994289,-0.09000287,-0.017846713,0.08372242,-0.069910295,0.13125792,1.7258523e-06,0.03586972,-0.0655894,0.02165288,-0.16771391,-0.009642934,0.051598217,-0.07982128,-0.08119382,-0.06134045,-0.074926145,0.006483969,-0.030579453,0.015240361,0.02741702,0.068140015,-0.012985128,0.09118453,7.1829986e-33,-0.009680293,-0.10423229,0.05239912,-0.024174316,0.00061062677,0.018780915,-0.04499937,-0.0701118,-0.027881207,0.011876339,-0.094524406,-0.057880368,-0.10952077,-0.016676728,-0.03225436,0.041653287,-0.032869257,-0.033808395,0.03861019,-0.031066434,0.031109232,-0.010680272,0.0029304477,0.051401272,-0.050355833,-0.025706712,0.037113238,-0.01729311,-0.03940281,0.057078984,0.10019471,-0.027938046,-0.039700165,-0.0014710499,-0.12909813,-0.01401504,-0.0064205467,0.079236485,-0.03813502,-0.011090019,0.060371228,-0.04144897,-0.06296266,-0.013916376,-0.009906699,0.034526683,0.003226551,-0.0127352625,0.07410045,-0.025374312,-0.06063954,-0.006901319,-0.049007807,0.05984068,0.035598263,0.10212921,0.022139343,0.019967439,0.054216992,0.0055659423,0.011477194,0.041226078,-0.012522396,0.0038624033,0.015785774,-0.06531556,0.036764346,-0.013432309,0.023517206,-0.055784006,0.020035902,0.03703285,0.037034273,-0.030780675,0.018741084,0.030232985,0.0215773,0.05983646,-0.03906596,0.041461315,-0.012852778,-0.056721393,-0.021950174,-0.017765809,0.07625673,0.00039031293,-0.03353897,-0.097532526,0.02068249,0.053819668,-0.03243704,0.026688127,0.04872031,-0.036889862,-0.005980991,-8.074108e-33,0.04748473,0.047009133,-0.077966176,0.046849165,0.04701435,0.05123738,-0.016048767,0.031581692,-0.089740805,-0.058127888,-0.024924567,-0.0362246,0.07020062,0.05055601,-0.04357854,0.015694356,0.061000776,0.07196464,-0.023450978,-0.03350414,-0.0070853042,0.010334039,-0.005786649,0.08379776,-0.05577494,0.0007872935,0.1065598,-0.011954821,0.00034540886,0.01784418,-0.011972518,0.095304295,0.074124694,0.043521088,0.001816449,-0.008282688,0.07205926,-0.008132482,-0.080547884,-0.04990318,-0.04005591,0.02433509,-0.0651994,0.018186577,0.06301215,0.003043944,-0.0648542,-0.084159866,-0.017538426,-0.065224186,0.024376476,0.009989465,0.04359285,-0.037470467,0.11131025,0.006733474,0.018501831,-0.088026375,0.05488601,-0.018509492,0.04348454,0.02970344,0.050967984,-0.011077123,0.027318059,-0.0049783485,-0.036059763,0.00015512838,0.09704856,-0.0507263,0.0147799095,-0.059976302,-0.03697441,0.036454313,-0.043961737,-0.011965105,0.056843493,-0.004503955,0.03653856,-0.010775522,-0.07741152,0.021279378,0.0018844819,-0.052322946,0.00855337,-0.005770693,-0.034148682,-0.03075672,-0.002054379,-0.005725927,-0.027340595,0.10196749,0.021972258,0.013828191,0.016057042,-3.1018203e-08,-0.046807807,-0.038852267,0.055899188,-0.003947036,0.057297546,-0.08613915,-0.0015491252,0.03496721,-0.09545221,0.0077575566,0.017585533,0.09228284,-0.064222224,0.07502451,0.10280118,0.032263614,0.03253773,0.052037414,-0.026328323,-0.08881392,0.018197933,-7.20153e-05,0.01819436,-0.023133129,-0.05897837,0.022022031,0.009401658,0.03981993,0.07799164,-0.15320367,-0.070756786,0.1033389,-0.054935943,-0.024261422,-0.08298453,0.0013613309,-0.040099155,0.05670652,-0.04290272,0.018891068,-0.006309208,-0.06022318,0.0976005,-0.035214942,-0.017127294,-0.010503091,0.09820186,-0.014959925,0.010682585,0.0015381838,-0.085091524,-0.0198854,0.079019845,-0.02328233,0.009184976,0.08273749,-0.033171758,-0.0026789128,-0.011147609,-0.024529004,0.067352094,0.066368096,-0.06368652,-0.006004755} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:33.602469+00 2026-01-30 02:01:10.633581+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1768 google ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE 1 t 1771 Go Karts Mar Menor unknown Esta muy divertido sirve para todas las edades. Y es un buen sitio para hacer carreras. El Vplaza para peques con adultos. Y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás volver a conducir. esta muy divertido sirve para todas las edades. y es un buen sitio para hacer carreras. el vplaza para peques con adultos. y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás volver a conducir. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Esta muy divertido sirve para todas las edades.", "O4.04": "Y es un buen sitio para hacer carreras. El Vplaza para peques con adultos.", "P3.02": "Y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás vo"} {0.015446659,0.08135718,-0.059401024,-0.05754074,-0.10103254,0.00336624,0.049959593,-0.012583447,-0.03679053,0.013713696,0.06344117,0.00027731364,0.039474443,0.0056314343,0.102382824,-0.066468365,-0.04387089,0.022277223,0.0395459,0.004234029,0.07657028,0.0014009246,-0.036564898,0.025350843,-0.11315692,-0.025511907,0.006412876,-0.00282246,-0.043520212,-0.054130375,0.025526553,0.069178686,0.031463046,0.023028033,0.042895887,-0.0143109,0.002408607,-0.07092023,0.017122455,0.063033186,0.00012346613,-0.05036019,-0.04135219,-0.04050001,-0.024669187,-0.0611727,0.030873004,0.016609194,0.06226227,-0.0631333,-0.04576014,-0.0042975824,-0.007229482,-0.011702629,-0.039132494,0.021382729,-0.04857207,-0.052495673,0.08724339,0.008445833,-0.036928963,0.055448096,-0.022517098,0.0004258739,-0.009962977,-0.07359697,0.06494192,0.016118413,-0.09119228,0.053037673,0.009296765,-0.017357875,-0.092227645,0.020129427,-0.06538991,-0.046306267,0.10460131,-0.03395734,-0.029066872,-0.07875206,0.007882881,-0.039120186,-0.052846245,-0.08126736,-0.0034195373,0.04557025,-0.036942095,0.032243736,0.056251008,-0.019208666,-0.04334247,0.043458138,-0.0027018513,0.013217493,-0.0021904735,-0.006708149,-0.033460826,-0.1243809,0.006199064,0.034560315,0.11320401,-0.0010479911,0.07023846,-0.021830665,-0.07164847,0.040937755,0.0047122505,0.0072472948,-0.046254046,0.08479143,-0.09740436,0.015330053,-0.032646682,-0.027597088,-0.06291542,0.025411056,-0.04814866,-0.067120194,-0.031436477,-0.10324323,-0.012575046,0.010702081,-0.01282736,0.044715565,0.0063982047,-0.057230607,0.03584496,1.1736618e-32,-0.085995674,-0.023997914,-0.021229008,0.0080954,-0.0589134,0.106048614,-0.018281057,-0.03836175,-0.04433124,-0.03766473,-0.055716105,0.014216686,-0.0150498105,0.041590285,0.03260726,0.066312194,0.031777397,0.060878288,0.05897636,0.06460157,-0.08363111,0.02984192,0.018299667,0.061890956,-0.020813385,0.013670274,-0.028080612,-0.07033117,-0.0043792836,0.031741783,0.030897424,-0.0053963806,0.0111523345,-0.0028154035,-0.018640827,-0.008441478,-0.001993617,0.08631032,-0.041507073,0.008155174,-0.013996149,0.028836088,0.011102491,0.069059364,0.013743941,0.0192201,0.056254964,0.03486716,0.036747433,0.024593264,-0.08636299,-0.030929085,-0.08567521,-0.09894289,-0.04280882,-0.010867008,-0.06324014,0.088263385,-0.03268712,-0.06538181,0.0376522,-0.009182494,-0.02584273,-0.03710886,-0.08627604,-0.020364488,-0.009801201,0.042752188,0.1254013,0.06560237,-0.06767028,-0.03427533,-0.03462799,0.08557162,0.08856593,0.008906815,0.025819112,0.036757883,0.06253501,0.038332045,-0.032590825,0.059816387,0.10819872,0.026278373,0.07002137,0.05617513,0.029860465,0.020007955,-0.0030215578,0.0878414,0.0066490993,0.038376223,0.06039463,-0.02258722,0.11776232,-1.2014896e-32,-0.024702366,0.04659805,-0.017162792,-0.0075312955,0.051571865,-0.023523852,0.028801946,-0.04259087,-0.04848539,-0.093772836,-0.11181129,-0.10864116,0.15665478,-0.027589666,-0.03444689,0.055281106,0.031928897,-0.07704708,-0.051517766,0.015676782,-0.10433083,0.038314693,0.08820472,0.018613003,-0.021834591,-0.06719947,-0.004769158,0.031513788,-0.07072411,0.03141692,0.09635299,-0.045637924,-0.075555496,0.08254005,-0.012235977,0.016484555,-0.024325654,0.032525726,0.04565595,0.03170216,-0.068268694,0.022597976,-0.0027043067,-0.019183539,-0.042466026,0.057648886,0.054385006,-0.11990443,-0.086527586,-0.039576367,0.0015330414,0.019726235,-0.012926248,-0.10047105,0.020086791,-0.046611443,-0.016935637,-0.05307115,-0.033817768,0.015705245,0.08600532,0.030207707,-0.017850341,-0.019007608,0.02496423,0.0010322502,0.020375157,-0.03854142,0.003593886,0.062137518,0.111929305,-0.015931837,-0.1068688,-0.024801726,-0.022347942,-0.0058874167,-0.08933998,-0.021443203,-0.030608451,-0.056279853,-0.007945028,-0.040047113,-0.02661234,-0.03401,0.017767433,-0.012572623,-0.03054474,0.018311506,-0.01273078,0.007465681,-0.008189242,-0.061824884,-0.04753115,-0.05059628,-0.020757167,-4.987144e-08,0.0039928993,-0.037263338,-0.048314843,0.030058235,0.000103516395,0.0045984657,-0.027523763,-0.027737642,0.09789426,0.03240965,-0.029261345,-0.08073559,0.07550308,0.023743885,-0.006333127,0.07031668,0.12263883,0.110110976,-0.009212575,-0.05775229,0.098234124,-0.022632085,-0.062403314,0.078887545,-0.003970312,0.030006891,0.004195878,0.020651512,0.013168245,-0.026352571,0.016057525,-0.056274954,-0.040671784,-0.07385339,0.036979705,-0.0044538938,0.06967231,0.03995698,-0.017247157,-0.009022824,0.13489503,0.019780941,-0.033673547,0.008127244,-0.04993186,-0.047376476,0.04676384,-0.034637026,0.034500986,0.049471784,0.026509115,-0.017633734,0.08688851,-0.014974432,0.07085358,-0.014084569,-0.008500731,0.017571395,0.008142776,0.023798896,0.032712128,0.07727662,-0.019062549,-0.059416495} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:41.794793+00 2026-01-30 02:01:10.637575+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1770 google ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB 1 t 1773 Go Karts Mar Menor unknown Esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchísimo.\nLos chicos muy simpáticos.\nY lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1. esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchísimo. los chicos muy simpáticos. y lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1. 5 2026-01-30 01:52:39.833374+00 es v5.1 O3.02 {O1.05} V+ I3 CR-N {} {"O3.02": "Esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchís", "P1.01": "Los chicos muy simpáticos.", "V1.01": "Y lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1."} {0.05354813,-0.02062157,0.07200979,0.028230598,-0.0837343,-0.042914227,0.023680182,0.050297413,-0.031560022,0.039354954,0.024710426,-0.026561819,-0.08630801,-0.023997046,0.067576125,0.006122856,-0.029010724,0.020876111,-0.030742664,0.025135342,0.0867566,-0.034699023,-0.049686145,0.12709054,-0.09701452,-0.027944842,0.036682777,0.07125368,-0.011188391,-0.12928447,-0.017475974,0.05523025,0.08891134,-0.02480856,0.016891576,-0.05951068,0.07511016,-0.07081737,-0.07287983,0.06302718,-0.045939997,0.01548927,-0.01934155,-0.014629384,-0.051169015,-0.11869345,-0.018954633,0.046367288,0.095089495,-0.02404814,-0.08949512,-0.07958177,-0.013924183,-0.007317001,0.041035812,-0.047060534,-0.122256495,0.0028610693,0.11075523,0.06076386,-0.011634835,0.059210528,-0.027822493,0.019642435,-0.052094243,-0.06684953,0.0089381235,-0.031600527,-0.09595592,0.06823011,0.07685668,-0.0312893,0.027693108,0.024748905,0.028310115,0.02520072,0.010872286,-0.03801877,-0.059047025,-0.025486706,0.00566623,-0.020135637,0.050211735,-0.08348311,-0.016243089,-0.041948672,-0.0359116,0.05209596,0.03432537,-0.03903266,-0.016035687,0.08170495,-0.0143385595,-0.055637166,-0.02388056,0.050365128,0.023342151,-0.037722528,0.048706297,0.039568536,0.109900676,0.02139704,0.08729763,0.052619446,-0.020681066,0.08214494,-0.02351897,-0.035944298,0.007842775,-0.05139644,-0.029561277,-0.00023021393,0.0019473555,0.026153842,-0.08660006,-0.074634716,0.013854264,0.012613884,-0.013341893,-0.0036171502,0.015856486,-0.00570311,0.0018563446,-0.03395533,-0.022468429,-0.08636098,0.023022741,1.0771866e-32,-0.069139324,-0.03893189,-0.025834296,0.086152285,-0.0149085075,-0.07671819,0.015353174,-0.081470296,-0.077850096,-0.0077290647,-0.04315344,0.049347237,-0.04029344,0.04313662,0.109685026,0.028798983,0.02399178,-0.050676774,0.037810806,0.048567496,-0.017430672,-0.06188077,-0.006990438,0.013701252,-0.020562576,0.07984098,0.03240218,-0.032404117,-0.024164217,0.040830337,-0.047833953,0.008124033,0.007104525,0.026520872,-0.070707664,-0.021183178,0.045107428,0.06477609,-0.043631982,-0.00419507,0.020333918,0.024701657,0.007996117,0.02064394,-0.04237625,-0.002393873,0.09076699,0.015428587,0.055663344,0.028016757,-0.0684083,-0.05396049,0.012612266,-0.036994446,0.044446934,0.0213277,0.013475591,0.035090193,-0.02271765,0.00043976872,0.062373914,-0.06109517,-0.005061247,-0.057309046,-0.017203677,-0.015241329,0.010128642,0.0014271162,0.1026085,0.08774832,-0.04435084,-0.022497771,-0.019454882,-0.004821766,0.044711042,-0.023276502,0.0028012125,0.054814603,0.021884691,0.04053816,-0.03230983,-0.012486914,-0.040882464,0.06964366,0.04820593,0.022051511,0.009179795,0.038544703,-0.06086262,0.0948403,-0.035079014,0.0670689,0.04340991,-0.06060687,0.041522328,-1.1015738e-32,-0.04004252,0.11264449,0.038861446,0.08868382,-0.06394071,0.05709289,0.023842063,0.051885493,-0.032747857,-0.07528151,-0.0594914,-0.08399776,0.06906831,-0.07494394,-0.02708097,0.107649416,0.041400973,-0.044769123,-0.0673411,-0.103924304,-0.05419147,0.05749593,0.0052624117,0.00025402562,0.0209915,-0.06734211,-0.028811345,-0.004968563,-0.052964512,0.049309097,0.0051501365,-0.08690106,0.0396484,0.011396734,-0.03309012,-0.008652904,0.027650585,0.0492514,0.007211868,0.051814336,-0.028583733,0.049665343,0.0023212559,0.010578094,-0.011269165,0.03893646,0.052654378,-0.17136729,0.017681226,-0.0301056,0.030337242,-0.003907005,-0.069766134,-0.013393702,0.004893429,-0.069942236,-0.008503423,-0.04399073,-0.0639152,-0.023482997,0.018481735,-0.007058991,-0.042970777,-0.040196057,0.10300704,0.0008622572,-0.08411678,-0.03893532,-0.032259464,-0.012808252,0.062127776,-0.04377854,-0.034140993,0.0101495525,-0.042477306,-0.0664789,-0.0955107,0.030977659,0.031906012,0.079771236,0.053911284,-0.04870437,-0.028661052,-0.03949311,0.03270827,0.013531458,0.02199879,0.050173983,0.049087007,0.059896424,0.100810684,0.04846011,-0.00073595386,-0.02658813,-0.03408002,-4.6063942e-08,0.028440153,-0.11171172,-0.082215846,0.001225282,-0.0062272,0.036102515,-0.08186618,0.07701653,0.0042859362,0.113462105,-0.024610063,0.023645537,0.021104645,0.0713335,-0.0015042479,0.09208777,0.119507976,0.08222809,-0.01447135,-0.033455506,0.056530356,-0.034682974,-0.022789434,0.06679531,0.002502599,-0.03502681,-0.07904658,0.0076733017,0.01308096,-0.014447903,-0.03367976,-0.026973914,-0.06318749,-0.056705732,-0.042137325,-0.044678062,-0.05649525,0.024603905,-0.0075817243,0.01704437,0.06312891,-0.01305062,-0.08876757,0.018969981,-0.029723207,-0.04181093,-0.021038897,-0.01009005,-0.0342853,0.021180974,-0.04216703,-0.022868065,0.030104624,0.0075750714,0.0155345965,-0.04260475,0.047977787,0.044154756,0.029065955,-0.04984136,0.06704855,0.11173892,-0.014039837,-0.06983684} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:54.601533+00 2026-01-30 02:01:10.645455+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1772 google ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE 1 t 1775 Go Karts Mar Menor unknown Allt fungerar som det skall och trevlig personal. Drivers day på onsdagar. Dubbel tid allt fungerar som det skall och trevlig personal. drivers day på onsdagar. dubbel tid 5 2025-01-30 01:52:39.833374+00 sv v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Allt fungerar som det skall", "P1.01": "trevlig personal", "V1.01": "Drivers day på onsdagar. Dubbel tid"} {-0.042193476,0.0512242,0.0049365177,-0.0551842,-0.074172325,-0.010280582,0.05830668,0.11690503,-0.027919149,-0.02229354,0.06040297,0.011557857,-0.07481864,-0.048548035,0.024261888,-0.054844674,-0.11400373,0.030030845,0.05949443,0.038057614,-0.075320594,-0.03943668,-0.009522999,-0.042618845,-0.005253379,0.006578151,0.053554773,-0.009160418,0.011561986,-0.053300414,0.05153677,0.0604847,0.0007461174,-0.0474475,-0.019691383,-0.017269202,-0.08721696,-0.03891227,0.061567686,0.039490785,-0.0836625,-0.062444914,-0.029565256,-0.047516596,0.03323162,0.03184112,0.0009673159,-0.0014177795,-0.025884282,0.050732695,-0.008826002,-0.0066624507,0.039235428,-0.03472343,0.034273308,-0.062821984,0.06732365,-0.014084744,-0.04559733,0.024888236,-0.05319842,0.053276647,-0.037749264,0.04717039,-0.07873899,0.04559734,-0.027093636,-0.0005337037,-0.061559226,0.019784741,0.020643232,-0.043100618,-0.02749055,0.10063861,0.025566552,-0.04694665,-0.060904387,0.01110949,0.092735566,-0.014970741,0.0620291,0.026335757,-0.036559574,-0.0020013286,0.0072126607,-0.037444796,-0.0154960565,0.098748796,0.040473837,0.025078576,0.025615295,-0.006626818,-0.03343253,-0.03358636,-0.05634348,0.024037542,0.00077996,0.069602266,0.018636517,-0.0107494285,0.023506844,0.02411057,-0.04606758,0.050620258,-0.092737004,-0.008480287,-0.008006247,-0.056024335,0.043003295,-0.035972238,0.019937608,-0.057860468,0.0021892865,-0.061949246,0.024622938,0.017894512,-0.01756349,0.049291093,0.030010188,0.008329183,-0.0733509,0.030915637,0.035565533,0.01736423,0.05784676,0.021952676,0.057658147,3.890792e-33,-0.047255293,-0.057824377,-0.09190194,0.055403132,0.062710814,-0.024960874,0.018797431,-0.14693607,0.005906473,-0.032607507,0.026959112,-0.037673213,-0.08935999,-0.036017317,0.037117507,0.08397085,-0.043648906,-0.049635563,-0.09307816,0.019018488,-0.009288613,-0.014045748,0.0080097085,0.01173044,0.017760104,-0.013396799,0.02827178,0.0049099284,0.052081794,-0.018013638,0.056299176,0.006948877,0.024080439,-0.0066801524,0.02245321,-0.02452474,-0.057518378,-0.0036654212,-0.111563824,-0.06166904,0.054637894,-0.062568575,0.03150826,-0.022707524,-0.019427016,-0.00508636,0.03372156,0.069231674,-0.00020540881,0.039127078,-0.075823225,0.01869755,-0.058212195,0.041399334,-0.04189909,0.05550993,-0.050780345,0.025264485,0.018124262,-0.007314733,-0.087319404,0.008355646,0.097671986,-0.06266707,0.00014787722,-0.053068653,0.016917981,-0.051174063,0.036284477,0.016812935,0.0998039,-0.030873861,-0.06707529,-0.04108372,-0.04444853,0.119600646,-0.021304907,0.003291082,-0.13527343,0.016018974,-0.103515625,0.033408504,0.024630582,-0.0037391342,0.07944664,-0.041644145,0.034987755,-0.09755696,0.006980293,0.086796634,-0.032331247,0.044498567,-0.030777369,0.015154722,0.0466745,-4.131124e-33,0.010834419,-0.054926604,-0.062249865,0.051776066,-0.008836473,-0.03243771,0.0007854908,-0.011447183,0.0074898726,0.03229914,-0.0113858525,-0.0009961971,-0.011829907,0.014420538,0.012217016,-0.009538709,0.115427755,0.032001067,-0.01718152,0.02707509,-0.014075239,0.0569281,-0.018560903,0.09513929,-0.0014672098,0.051724784,0.06702021,0.03888673,0.01263796,-0.06747823,0.058308866,-0.041452434,0.030170385,0.046201617,0.0041432795,0.048783317,0.1673824,0.052599695,-0.045670908,0.03603194,0.018852834,0.013397498,-0.025752675,-0.055628587,0.004991716,-0.078849904,-0.008244484,-0.08525576,-0.033202138,-0.010599223,0.04982574,-0.005888504,0.054206565,-0.011092303,0.009899561,-0.038842637,0.06678707,-0.08631349,-0.032257102,-0.023235235,0.052055307,0.02359528,-0.0067129117,0.01871178,0.009815469,-0.07972877,-0.06383603,-0.07415921,0.030195288,-0.0762165,-0.03961334,-0.027802907,0.0006787343,0.025456378,-0.015996352,-0.0733439,-0.014611705,0.07408422,0.10920897,-0.05154791,-0.03592211,-0.061010074,0.015734222,0.053934064,-0.04205791,-0.061072867,0.016878981,0.00011096931,-0.03582837,0.005587237,0.045598745,0.11388805,-0.03595487,0.060009297,-0.073406264,-2.3594914e-08,-0.0145089915,0.020542387,-0.07491549,0.04918544,0.043981172,-0.14268276,0.08291993,-0.082278706,-0.07908886,0.043607425,-0.04171223,7.964402e-05,-0.013682525,0.040792327,0.113651894,0.05238821,-0.027464317,0.042621102,-0.042670224,-0.049420062,0.08187302,-0.053702425,-0.10131397,0.07815181,-0.009507705,0.07358029,0.03867181,0.006358151,0.150026,-0.0579312,-0.014628467,0.09140653,0.012725181,0.0003300737,0.057784338,0.039248943,-0.0012870167,-0.0014949483,0.03356876,0.15677027,-0.033776402,0.003496444,0.07617118,-0.0075163553,-0.057229526,-0.018358096,-0.017579988,-0.060048915,0.007087076,0.059798922,-0.03698159,0.014034511,0.06572787,0.099713504,0.010872681,0.017165706,0.0639027,0.029876152,-0.06876486,0.04883428,-0.0060521173,0.013961626,-0.022137277,0.03805054} 0.75 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:13.715971+00 2026-01-30 02:01:10.652188+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1683 google ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE 1 t 1686 Go Karts Mar Menor unknown Gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado. Personal muy amable y buenos precios en la cafetería. gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado. personal muy amable y buenos precios en la cafetería. 5 2021-01-31 01:52:39.833374+00 es v5.1 E1.04 {A3.01} V+ I2 CR-N {} {"E1.04": "Gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado.", "P1.01": "Personal muy amable", "V1.01": "buenos precios en la cafetería"} {-0.03656771,0.010144776,-0.0048446297,-0.07281384,-0.027780537,-0.003380332,0.10011024,0.068797156,-0.004400456,-0.007571457,0.08159005,-0.03876934,-0.06621276,0.002811483,0.05391046,-0.031579528,0.015486713,-0.017760249,-0.017705522,0.00819949,0.049693488,-0.066454664,-0.06676015,0.10401452,-0.07892602,-0.017365297,0.04843539,-0.024193209,-0.06608113,-0.004610506,0.046448972,0.054568235,0.11914991,-0.013966567,-0.010028226,0.028397275,0.029054131,-0.015660338,0.027122904,0.012429653,-0.08790708,-0.02199324,0.008442626,-0.050424635,-0.027761959,-0.018810242,0.01270204,0.009939339,-0.020533858,-0.033844706,-0.018227486,0.032449335,0.016819354,0.018465083,0.0037191687,0.017294604,-0.008170318,-0.089634955,0.05472468,0.06930533,-0.11743635,0.021771273,-0.05757422,0.00805313,0.015558484,0.003336808,0.045242377,-0.0023261851,-0.030034339,0.018468732,0.077904336,-0.06688624,0.015557853,0.01673624,-0.016605878,0.0117227435,0.010795858,0.015139546,-0.047100328,-0.032375276,-0.00796661,0.010784058,-0.019226812,-0.053701736,0.020589234,0.018243939,-0.043532323,0.034999393,0.061977316,0.031242212,-0.038341325,0.020479929,-0.04050856,-0.019890945,0.010166351,-0.0055087577,0.014952266,-0.14155413,-0.03851551,0.06037684,0.0040407213,0.06853163,0.059282914,0.051721,-0.050689097,-0.04838533,0.020250442,-0.010489658,-0.042651497,0.043349117,-0.06722668,-0.046449542,-0.0119145475,-0.009727954,-0.08342102,-0.022486374,0.07418552,-0.07514729,-0.037486896,-0.05213645,0.02834255,0.07616247,-0.06782335,0.00048700787,-0.024125399,-0.05870606,0.014952092,9.553265e-33,-0.06095524,-0.056768328,-0.04435221,0.09275665,-0.014863127,0.06774918,-0.010291146,-0.008405518,0.052874748,-0.048052236,-0.0021133092,0.019719625,-0.0066037755,0.053809054,-0.011632125,0.08740895,-0.001174336,0.018837517,0.07040565,0.07012934,-0.055686932,-0.014543678,-0.042380087,0.015353314,-0.015433319,0.016634954,-0.044441424,-0.06775947,-0.012278101,0.06489412,0.006093571,-0.003998569,-0.00542316,-0.060771476,-0.024062928,-0.10288625,0.052675232,0.04129005,-0.0025531033,-0.038031664,-0.03694255,0.022085952,0.014256928,0.0436066,0.049342547,0.019583678,0.0750893,0.009224666,0.058359474,-0.00032790602,-0.03512752,-0.089030735,-0.05187573,-0.042453434,-0.043609332,-0.06354567,-0.019399606,0.03620553,0.016214864,-0.06376593,0.06879826,0.0038103878,-0.0017808069,-0.061239645,-0.032856077,-0.034946952,0.0102490615,0.01917729,0.1388493,0.028185789,-0.073818386,-0.04492209,-0.021729767,0.023514489,-0.010936549,0.029085876,0.0044263247,-0.001135415,-0.011382957,-0.008699691,0.014106423,0.04346361,0.070084214,0.045226492,0.05274797,0.1011341,0.03654385,0.08235104,-0.049265742,0.08854837,-0.020147994,0.06892382,0.012120489,-0.022573132,0.044145275,-1.013621e-32,0.06442293,-0.00623177,-0.05728202,0.05186974,-0.013309743,0.0056622466,-0.03529826,-0.04326086,0.028310563,-0.018187048,-0.15525094,-0.07511268,0.15111504,-0.05208283,-0.0018967667,0.097048886,0.051247533,-0.06072425,-0.0651873,-0.063911796,-0.020592397,-0.007140744,0.0496605,-0.035845615,0.048496,-0.08245167,0.013770409,0.10370084,-0.09111521,-0.05767793,-0.028765555,-0.045651607,0.046534944,-0.00371035,0.015838627,0.036780022,-0.0047241133,0.032103673,-0.10093262,0.02067837,0.03966385,0.02727877,-0.033050098,0.053081688,-0.044684224,0.07183426,-0.009117802,-0.17627127,-0.013098615,-0.038739648,0.0039012323,-0.07191328,-0.01324899,-0.06960897,0.046762824,-0.09930447,-0.0015436738,-0.06362587,-0.10154522,-0.03810775,0.050782964,-0.013437587,-0.06162831,0.016071806,0.043484636,-0.035962038,-0.041906603,-0.02148752,0.036689613,0.09103005,0.15012275,0.011232719,0.008106574,0.015384576,-0.032876045,0.034806266,-0.015970755,-0.032739967,0.009483572,-0.0053494126,-0.039783835,-0.02282551,0.038030744,-0.062151235,-0.052017055,-0.056274764,-0.0050110207,0.101493575,-0.0058605643,0.015116994,0.028826566,-0.0043189335,-0.00730098,-0.06886564,0.01003788,-4.0150006e-08,0.0347786,-0.11284982,-0.024838481,0.07807501,0.010805279,-0.07906446,0.04199261,0.0013377301,0.005575175,0.112305105,-0.08992959,-0.012271291,0.019118812,0.07617184,-0.0042343633,0.052265417,0.12028226,0.076270394,-0.03742267,-0.00650377,0.075554766,-0.016866917,-0.04702439,0.030994268,-0.0116115315,0.051862285,-0.073715866,0.006595371,-0.022244332,-0.01973014,0.039257202,-0.06027721,-0.02114204,-0.058649912,-0.072858214,0.0015014306,-0.023925338,0.009739067,-0.008576291,-0.04292663,0.10613491,-0.037430786,-0.04468407,-0.012234069,-0.016991192,0.0075760107,-0.0076035485,0.030746123,-0.009602707,0.09003504,0.012060389,0.0019126552,0.097664826,0.017852187,0.008567229,-0.06824357,0.026464337,-0.02705815,0.058967583,-0.054513086,0.07376492,0.16862032,-0.018054916,-0.043612152} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:46.260014+00 2026-01-30 02:01:10.311736+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1781 google ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB 1 t 1784 Go Karts Mar Menor unknown ¡No había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante! El personal muy amable y cercano (también bastante tranquilizador). Un plan perfecto para ir con amigos. ¡Repetimos y lo recomendamos sin ninguna duda! ¡no había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante! el personal muy amable y cercano (también bastante tranquilizador). un plan perfecto para ir con amigos. ¡repetimos y lo recomendamos sin ninguna duda! 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "¡No había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante!", "O4.04": "Un plan perfecto para ir con amigos.", "P1.01": "El personal muy amable y cercano (también bastante tranquilizador).", "R4.03": "¡Repetimos y lo recomendamos sin ninguna duda!"} {0.027529689,0.046493325,0.01782054,-0.014059436,-0.02721201,-0.022121001,0.08730731,-0.012876723,-0.01988438,0.022690382,0.06777039,-0.023645481,-0.029107079,-0.04644287,0.008259751,0.002860059,-0.036667496,0.03415405,-0.016987836,0.045015424,0.05404178,-0.011954227,-0.047479495,0.10094501,-0.08203876,0.004886098,0.0348615,0.047989056,-0.089232914,-0.06884061,0.0069397734,0.093016215,0.0852824,-0.012641477,-0.029416056,0.040772226,-0.03636485,-0.07987658,-0.06166553,-0.009483357,-0.12777519,-0.043967187,0.008566372,0.013781835,-0.019588431,-0.065896675,-0.0063052247,0.027807262,0.017267017,-0.035631556,-0.08304194,-0.0043508257,-0.022162901,0.014169895,0.019882146,0.007082621,-0.07271273,-0.036340505,0.11019295,0.044743124,-0.053399663,0.05036055,0.0023981617,0.02175057,0.041956604,0.010052429,0.045604758,0.021997,-0.07615565,0.05760996,0.11242078,-0.09059481,-0.023427498,-0.007770276,-0.019066555,0.046427652,0.003681027,0.007021167,-0.009135655,0.03977452,-0.01074766,0.011685609,0.03794271,-0.02240488,0.004070739,-0.03666365,-0.04193699,0.028376011,0.049935125,-0.013886354,-0.022271372,0.0760763,-0.06027546,-0.043802243,-0.06625443,0.031339087,-0.05055157,-0.0939455,-0.05978765,0.017179292,0.09022555,0.08845452,0.06508294,0.054116238,-0.022854544,0.011615005,0.07917268,-0.00908942,0.0029444897,0.031502053,-0.059971362,-0.0562122,-0.015331463,-0.0190825,0.02068543,-0.012688367,-0.028167818,-0.005137834,-0.042636883,-0.013562948,0.038795326,0.05785599,-0.044894896,-0.042717293,-0.072979614,-0.057740107,0.08725454,1.5054418e-32,-0.029242234,-0.025872635,0.038225118,0.08288202,0.0057165185,-0.035941947,-0.07984588,-0.0002653756,-0.067835934,0.031380095,0.017093375,0.07859101,-0.017076952,0.09162816,0.061235666,0.009027512,-0.010432684,-0.018808648,0.09930238,0.07753584,-0.009741852,-0.031200785,-0.009749169,-0.022656389,-0.035021096,0.04825293,0.05102568,-0.041722883,-0.019112011,0.039973248,-0.0799964,0.068381585,0.010017061,-0.086917795,-0.0007895728,-0.05632862,-0.014589749,0.08527489,-0.05620234,0.0060410835,0.033559214,0.032001704,-0.016189095,-0.002371543,0.017137155,0.00012246726,0.101958156,-0.014364502,0.039374344,0.008117333,-0.08355812,-0.07869562,-0.056737643,-0.069211334,0.042182047,0.007659535,-0.030221172,0.03413868,-0.039500967,-0.08185313,0.06307891,-0.056891758,0.02976199,-0.076344214,-0.00035636104,-0.013997935,-0.017605308,0.0020582702,0.13005254,0.007412472,-0.039907232,0.0121338675,-0.027101714,0.03412368,0.003935954,0.02855292,0.010250771,0.026892787,0.0038089892,0.0082681915,-0.014307235,0.027106484,0.000109523135,0.027398003,0.14726637,0.06863973,0.08195811,0.04854359,-0.08399721,0.14890553,-0.002174159,0.071220465,0.037244234,-0.011619639,-0.00051831227,-1.4912415e-32,0.03185598,-0.024732715,0.0019473234,-0.009521276,0.010366345,0.025345266,-0.009489453,0.058937017,0.024680538,-0.050747793,-0.12895858,-0.13193582,0.1451966,-0.025467442,-0.051948976,0.06357653,0.024968041,-0.11379855,-0.10817596,-0.027666885,-0.03837649,-0.006543013,0.0023330273,0.0034145406,0.02097667,-0.016764726,0.006093564,0.04143964,-0.041307393,-0.04731692,0.008058327,-0.07537664,-0.03108404,0.007130948,0.0017425054,0.04457497,0.045829963,0.015197065,-0.03147071,0.07852143,-0.010125732,0.074501716,-0.08355208,-0.011992855,-0.027151918,0.0120681,0.02490641,-0.16285585,-0.042779937,-0.067314096,0.040289223,-0.015240617,-0.07943831,-0.043232527,0.061911896,-0.07806303,-0.012519847,-0.038107608,-0.01733726,-0.046685994,0.025797632,0.021586211,-0.018101498,-0.07380097,0.09810502,0.028515501,-0.009282503,0.021663424,-0.006875944,-0.003601795,0.06303922,-0.032535903,-0.069247134,-0.017700283,0.014358872,-0.10195502,-0.015729604,-0.06486059,-0.004600871,-0.025921794,0.021325354,-0.017613307,-0.04492606,-0.042123582,-0.035658315,-0.028603261,-0.014050289,0.065319076,-0.0035121024,0.04665188,0.042392284,0.02395977,-0.10113467,-0.015419564,-0.03510614,-5.2093394e-08,0.03515139,-0.025491888,-0.031606555,-0.025612077,0.034521542,-0.023716073,-0.041678503,-0.044776887,0.030248092,0.035033796,-0.018504065,-0.006301731,0.005221913,0.046775572,-0.023228824,0.05387834,0.11821407,0.081007786,-0.00075172336,-0.05970423,0.06275133,-0.02671677,-0.059060276,0.04208888,-0.02139835,0.06440378,-0.03686234,-0.03434238,0.008214102,0.018268505,-0.025082594,-0.03702294,-0.038191803,-0.058623396,-0.091572285,-0.037171178,0.029451007,-0.030013971,0.01857758,-0.064701326,0.067612395,0.010414986,-0.092363,0.025117828,-0.117681496,-0.037810776,0.05570608,0.03683159,-0.030492306,0.01595938,-0.05731913,-0.041402627,0.07159825,0.046912804,0.045798626,0.014699928,0.10492711,0.038985148,-0.0025341364,-0.01283283,0.09127721,0.06587155,-0.072176106,-0.091548264} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:46.339493+00 2026-01-30 02:01:10.68337+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1782 google ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB 1 t 1785 Go Karts Mar Menor unknown Hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena. El personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la GoPro y el circuito y los karts estaban en buen estado. Esperamos volver y repetir pronto hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena. el personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la gopro y el circuito y los karts estaban en buen estado. esperamos volver y repetir pronto 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I2 CR-N {} {"O1.03": "el circuito y los karts estaban en buen estado.", "P1.01": "El personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la GoPro", "R4.03": "Esperamos volver y repetir pronto", "V4.01": "Hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena."} {0.02443336,-0.0326473,0.0058727697,-0.07167205,-0.04186206,-0.050904844,0.07121943,0.121869154,-0.016719075,0.020706374,0.102451034,-0.0027453422,-0.011502318,0.030016951,0.056447838,0.011297808,-0.009377486,-0.045967553,-0.00685408,0.050966557,0.1311277,-0.086231954,-0.03278795,0.042243686,-0.11900934,-0.03427089,0.036893714,0.018804979,-0.0832858,-0.0826275,0.009303995,0.038503136,0.052895993,-0.025669036,-0.0474505,-0.070581846,0.00756908,-0.045807537,-0.08120788,0.009520512,-0.035345048,-0.0347349,-0.00963159,-0.03187384,-0.01948207,-0.014579672,0.049666736,0.0444835,0.06578884,-0.055654474,-0.04310992,-0.04512293,0.0059835636,0.05335352,0.060353253,-0.021330029,-0.084387206,0.07070632,0.092392124,0.057586882,4.998666e-05,0.02587214,0.0039205095,0.023883121,0.044888593,-0.00786601,-0.009930364,-0.0485277,-0.07000095,0.042299613,0.005065915,-0.032251835,-0.0652715,-0.009192491,0.0040121246,0.042361848,-0.046308212,-0.026422806,0.015851263,-0.014327594,-0.006431173,-0.041535098,-0.0058123,0.01115473,-0.026619205,0.016506735,-0.041670766,0.063975714,0.0012255479,-0.0576922,0.010422262,-0.0019620534,0.02488703,-0.026787922,-0.016944619,-0.048982125,0.025818624,-0.06539481,-0.004507117,0.029984752,0.055888284,-0.0520181,0.13267507,0.07618683,-0.068942584,0.08892923,-0.01322219,-0.08101628,0.05079038,0.04015343,-0.019994892,0.002542886,-0.06771791,-0.011224976,-0.028255682,0.05025567,-0.048690274,0.0476457,-0.0015647272,-0.06953008,-0.0063670534,-0.051971335,-0.03271028,-0.022390509,0.0059846556,-0.055694498,0.08020388,1.5235403e-32,-0.1109825,-0.0045207315,-0.05312882,0.13979016,-0.031930655,0.024855964,0.02318343,-0.02549577,-0.0107931625,-0.03969838,-0.04675159,0.06707858,0.007221168,0.07658273,0.07606859,-0.02183744,-0.008612976,-0.03987381,0.07369726,0.068449944,0.038608696,-0.14119223,0.030042043,0.039645296,0.06747404,0.0153269665,0.03789355,0.01024362,-0.0202231,0.031416766,-0.0600997,-0.0031535018,-0.018384706,-0.03861603,-0.0014253863,-0.020871436,0.02626319,0.06284944,0.010970104,-0.007306057,-0.027317064,0.011805631,-0.03917827,-0.045889623,0.01102425,-0.024713945,0.057525277,0.04590079,-0.028872423,0.0109535465,-0.13490652,-0.026297353,-0.04897177,-0.037097998,0.014291137,0.052205984,-0.024601929,-0.018076321,0.038363755,-0.009168749,0.06174554,0.05230935,-0.0073167942,-0.041734494,-0.05990431,0.057800956,0.028173545,-0.029038092,0.040918708,0.06039663,-0.054224525,0.041483317,0.026341164,-0.037379514,0.015671635,0.029786037,-0.037579123,0.052297406,-0.004548181,0.050218552,-0.08140589,-0.008626162,0.008174826,0.121771075,0.04172202,0.021350212,0.0010370925,0.0016812532,-0.07557562,0.13286456,0.01421667,0.079858586,0.020701194,-0.023691023,0.04650037,-1.6337504e-32,-0.08887292,0.028862989,0.059271056,-0.020231478,0.04261039,-0.015592547,0.092502885,0.054984257,0.0078004925,0.020769788,-0.039928705,-0.05508351,0.019107485,-0.017189419,0.029668884,0.013672606,-0.021009807,-0.07382763,-0.010416994,-0.10286432,0.08413532,0.035072256,0.014864459,-0.054237913,0.014825786,-0.017200347,-0.0170143,0.042904664,-0.0638016,0.044598967,0.014590471,-0.06644175,-0.04350679,0.037870314,0.024979526,0.022226335,0.026621867,0.13004212,0.042839076,-0.04123979,-0.04964541,0.045769986,-0.004568274,-0.014795515,-0.0041320687,-0.0029387774,0.045638867,-0.10602847,-0.005594183,-0.09550881,-0.031295035,0.058315538,-0.06278393,-0.06265985,-5.9128433e-05,-0.08253776,0.0025593226,-0.044513468,-0.13557057,-0.011048098,0.05735172,-0.02328243,-0.02644437,-0.032382187,0.06445249,-0.028379004,-0.05218843,0.03803913,0.006449064,0.068016015,0.07831404,-0.008187782,-0.0515458,-0.043168183,-0.013150608,-0.080534175,-0.16632946,0.01881101,0.038018472,0.0122957155,0.07337363,-0.023885943,0.010649005,-0.115615875,0.055650197,-0.024986908,0.027032217,0.12681833,-0.010331283,-0.0484099,-0.03757842,0.040450025,-0.16129445,-0.01488888,-0.047052257,-5.961557e-08,-0.016268836,-0.041601263,0.017902095,-0.025004914,0.018293748,-0.0346797,-0.060222667,0.028032582,0.05140911,0.014948046,-0.04083366,-0.039477017,-0.04131923,0.018296672,0.060543574,0.03828568,0.025176134,0.072014116,-0.03294327,-0.08878311,0.1087649,-0.071160235,-0.087951474,-0.012704122,0.033009168,0.0063278917,-0.060616158,-0.016823066,-0.021913284,-0.05950115,-0.030763697,0.012080558,0.0009148343,-0.0681592,0.01337294,-0.09637488,-0.01144881,0.10362909,0.017315755,-0.023813892,0.0040715835,-0.0081800185,-0.03275342,0.054957468,-0.04793818,-0.024010599,0.036786605,-0.100128256,-0.021822091,-0.03186568,-0.032531552,-0.006104384,0.0118974,0.009755606,0.018120442,-0.012658035,0.010415095,0.044243097,-0.09451055,0.017425323,0.015164685,0.05712053,-0.028822107,-0.02215046} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:56.490508+00 2026-01-30 02:01:10.685927+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1740 google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE 1 t 1743 Go Karts Mar Menor unknown Lo tiene todo. Buen diseño del trazado . Asfalto en muy buenas condiciones . Kars modernos .Trabajadores profesionales . Entras allí y te olvidas del mundo exterior . Los médicos de la seguridad social deberían recetar este circuito para combatir el estrés. 5 estrellas . lo tiene todo. buen diseño del trazado . asfalto en muy buenas condiciones . kars modernos .trabajadores profesionales . entras allí y te olvidas del mundo exterior . los médicos de la seguridad social deberían recetar este circuito para combatir el estrés. 5 estrellas . 5 2025-01-30 01:52:39.833374+00 es v5.1 E1.04 {O1.05} V+ I3 CR-N {} {"E1.03": "Buen diseño del trazado", "E1.04": "Entras allí y te olvidas del mundo exterior . Los médicos de la seguridad social deberían recetar es", "O2.01": "Asfalto en muy buenas condiciones", "P2.05": "Trabajadores profesionales"} {-0.020815555,0.06736012,-0.053337414,-0.021440657,-0.067521416,-0.042848878,0.08536063,0.023676516,-0.039729863,0.02471983,0.08738783,0.022649357,-0.018112333,-0.0054178867,-0.0031293205,0.023405526,-0.06329285,0.03819258,0.015873406,0.00069244415,0.040288605,-0.042098325,-0.040430922,0.084853955,-0.104111895,-0.02900353,0.0040691593,-0.022998197,-0.083772115,-0.06230044,-0.050902717,0.05018034,0.088141136,-0.0010094867,-0.056384105,0.07439604,0.04110067,0.015720835,-0.016641999,0.070065044,-0.09998562,-0.036161914,-0.032969985,-0.11568122,-0.009284789,-0.104534715,-0.029528687,0.024436213,-0.023440948,-0.07596863,-0.0584375,-0.001568644,0.010780198,0.043696404,-0.007551312,-0.0087322695,0.021468138,0.014461226,0.0049765697,0.034895986,0.06888206,0.027498042,-0.0102127325,0.0717561,0.019654673,-0.021989226,-0.002975506,0.06799509,-0.047857735,-0.02870905,0.04135214,-0.1486724,0.040236477,-0.0066406126,0.025479265,-0.008168814,-0.04348699,-0.0029586502,-0.02351228,-0.03933274,0.029873023,-0.0392189,-0.015950037,-4.6325542e-05,0.020313911,-0.00477027,-0.043371808,-0.025120357,0.059361164,-0.0004995835,-0.05500916,0.07215245,-0.032268442,-0.054353062,-0.020514902,-0.0035118912,0.010294596,-0.04461643,0.049138334,0.0167927,0.056179415,-0.008685516,0.089494765,0.042138796,-0.04627713,0.0133103095,0.030517729,-0.023015827,0.016209586,0.02507888,-0.08237506,0.005204112,-0.056856427,-0.022619355,0.032398,-0.010308958,-0.01928591,0.0050143083,0.05024299,-0.009109958,0.03183826,-0.007429391,-0.044414867,-0.07036239,0.058894955,0.029503375,0.050779674,1.0831056e-32,-0.06393537,-0.017795432,0.0015594213,0.063452594,0.028638702,0.049938373,-0.053903103,0.00057435216,-0.019409133,0.006635819,-0.029726028,0.1243542,0.030735757,0.040133193,0.1364067,-0.031925473,-0.091613114,0.015732802,0.047273472,0.04770342,-0.009289498,0.013230613,-0.06798093,0.07797373,0.005645388,0.03589331,0.008768408,-0.019148076,0.00012633468,0.025586203,0.058216095,0.04472491,0.026479622,-0.09650865,-0.031245375,0.010636873,0.05829735,0.05212066,-0.008280306,-0.062953286,-0.014109366,-0.026818683,0.0017571343,0.02563318,0.021022735,0.038530197,0.06460176,-0.007554756,0.053659376,0.04888308,-0.08349536,-0.070284426,0.0057979994,-0.060470637,0.08387488,0.03573014,-0.049314346,0.055980183,-0.0013816106,-0.01886436,0.037512537,-0.011178048,-0.008193068,-0.074440144,-0.009323358,-0.055315737,0.039929323,-0.0049586864,0.10402543,-0.013414202,-0.13121654,0.06294363,-0.077815555,0.06370528,-0.005494235,0.013978331,-0.052380458,-0.013063969,-0.015774181,0.027360843,-0.065311484,-0.01045897,-0.0012026946,0.051033992,0.17098448,0.072373874,0.03006792,0.01294789,0.015825452,0.1631442,-0.038640007,0.06397989,0.0368775,0.055274017,0.051006213,-1.3043578e-32,-0.014116193,-0.00590458,-0.0016546344,0.0819402,0.047016766,0.0054271817,-0.053600937,-0.037966352,-0.0086844135,-0.0036082338,-0.037822608,-0.1445305,0.046184205,0.0011860746,-0.05751946,0.02125124,-0.03596383,-0.10351991,-0.110099584,-0.019575877,0.02689828,0.024234517,0.02681609,-0.025831671,-0.060272764,-0.01563662,-0.07773861,-0.006379233,-0.078550816,-0.009827147,-0.0057386016,-0.0067173103,0.0039754766,0.0873844,-0.067998074,0.04110923,0.0126652215,0.017003391,0.023783734,0.033348177,0.037652485,0.04764195,-0.03301212,0.009389591,-0.034185406,-0.020789567,-0.05589755,-0.17510387,-0.09120259,-0.10716698,0.10029494,-0.03741398,-0.028502451,-0.09892656,0.008811554,-0.027120782,-0.00808592,-0.0954544,-0.10624362,0.00885903,0.08720248,-0.053054024,-0.035167538,0.036368456,0.04382452,-0.0066643213,0.00956392,0.09212909,-0.048294794,0.011926986,0.05957409,-0.039485957,-0.065700606,0.025678268,-0.01970156,-0.06960819,-0.12439103,-0.030278048,-0.026002465,0.0022153042,-0.012676681,-0.078544386,-0.009980495,-0.076495185,-0.047091283,-0.024082502,-0.010931646,0.02059111,0.015879618,-0.008286484,-0.033209782,-0.018206865,-0.071933,-0.07292162,-0.042138692,-5.7899733e-08,0.0034472551,-0.021556668,0.008655848,0.006306996,-0.010645877,-0.016810335,0.010427187,0.009613261,-0.023133505,0.072816364,-0.033232175,-0.0042833956,0.0031820233,0.11856677,0.10172929,0.0115672145,0.06948942,0.066153854,-0.01768168,-0.04424603,0.08522897,-0.045965623,-0.11243564,0.06323641,0.045918535,0.01878564,-0.042802185,-0.008294702,-0.0043648216,0.0127212405,-0.02856784,0.007428611,-0.022187345,-0.03717029,-0.039172318,0.01917786,-0.015680922,-0.061328724,-0.0060764565,-0.037318073,0.044648096,0.0021980696,-0.063581586,-0.0010874753,-0.032482702,-0.084763825,0.023399955,0.063359335,-0.013536126,-0.0069756783,-0.01838188,-0.03780501,0.059020434,0.009720991,0.032722097,-0.052618284,0.10760719,0.049679518,-0.037947763,-0.012876137,0.016562207,0.049133737,0.032402582,-0.074460685} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:32.939737+00 2026-01-30 02:01:10.537774+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1779 google ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB 1 t 1782 Go Karts Mar Menor unknown Es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos. Se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart. Merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado. es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos. se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart. merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado. 4 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"E2.03": "Se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart.", "O1.02": "Es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos.", "V1.01": "Merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado."} {0.021183046,0.053542506,-0.042043813,-0.029202947,-0.00047186605,-0.0024620555,0.06276257,0.008899959,-0.010404886,0.07562245,0.12777442,0.009487789,-0.02291537,-0.02982106,0.074886985,-0.012033851,-0.04733557,0.010512031,0.00535978,-0.01148401,0.09612237,0.005900059,-0.044906292,0.06914774,-0.13788854,-0.036552362,-0.00034176875,0.030169243,-0.08025663,-0.107293,-0.0966206,0.08399009,0.07064653,0.002989235,-0.018073997,0.021623688,-0.06694978,-0.034416135,-0.078411706,-0.0023977088,-0.04622858,-0.018916037,0.011762305,-0.04338628,-0.010211083,0.017604263,0.04419151,0.044961527,0.065181814,-0.06260113,-0.0970569,-0.031380814,-0.017076042,-0.02692713,-0.02131217,-0.05097659,-0.0367619,0.024059147,0.14140943,0.05942715,0.054524913,0.082691215,-0.027537212,0.008446578,0.0073079476,-0.119190276,0.07544205,0.04475588,-0.049632154,0.0278082,0.1665523,-0.034411654,-0.021830054,-0.010037876,-0.020877877,0.042635538,-0.055300657,-0.013494219,-0.033957917,-0.017194549,-0.028936168,-0.04267481,-0.018276019,-0.046499982,-0.0020227847,-0.016402,-0.010720322,0.011848395,0.06737251,-0.022596357,0.04417179,0.019386739,-0.07642874,-0.03431374,0.041777242,0.026203161,0.003979418,-0.07233516,0.053323016,-0.031112771,0.051665533,0.06644658,0.017098986,0.007856241,-0.028618144,0.10000738,0.0021252981,-0.053615607,0.02448179,-0.00047098662,-0.03363053,0.02616224,-0.02020068,-0.00642695,-0.03397729,-0.046489876,-0.070008986,-0.05183178,-0.0052697444,-0.031955857,0.06397222,-0.0016534333,-0.07954502,-0.01310602,-0.0047749984,-0.07440666,0.062899835,1.5817881e-32,-0.043536056,0.014577562,-0.0014903565,0.031228654,0.001230085,-0.08753588,-0.018313065,-0.021254051,-0.071480125,-0.023462126,-0.021822168,-0.0101062525,0.0056837914,-0.022149872,0.015088563,-0.041082464,0.018368348,-0.058921676,0.055698145,0.05030572,-0.006576385,-0.025416153,-0.011405623,0.01979845,-0.030854896,0.027337167,0.047794644,-0.033539537,-0.068108164,0.054739166,0.023017114,0.022376856,-0.04180842,0.072441995,-0.053884227,-0.0073976303,0.0017642034,0.060019605,-0.07095773,-0.0012355567,0.00054191344,-0.03859491,-0.086467154,0.034104373,-0.025454778,-0.047595747,0.03449851,-0.002035234,0.06166214,0.09955589,-0.06788272,-0.06874904,0.0059840633,-0.108580485,0.036868416,0.061711933,0.018037336,0.031205501,-0.04091199,-0.004821611,0.0030289846,0.0053857765,0.023568992,-0.043186087,-0.060568172,0.0122738965,0.021177795,-0.014926082,0.08338795,0.07026135,-0.051313575,0.0052942345,-0.05791381,-0.013081484,0.018672435,-0.0077718813,-0.043378215,-0.015561396,-0.034650072,0.019951407,-0.06564055,0.053533014,0.007963247,0.09423682,0.079998285,0.0062229414,-0.004217881,0.06392976,-0.02249732,0.12364153,0.0011338226,0.041134745,0.02858282,0.00837931,0.025198555,-1.6807731e-32,-0.03221515,0.042148795,0.06465091,0.046231452,-0.053751554,0.007641305,0.041645475,-0.013566695,-0.030683544,-0.03823743,-0.13713855,-0.09645386,0.07040195,-0.008489997,0.011722775,0.0854525,0.04213527,-0.058173478,-0.09179871,0.00888543,0.02234376,0.0022784164,0.13295114,-0.04698355,0.00068415754,-0.03394769,-0.03196491,-0.0023706588,-0.14558865,0.016734054,0.0694084,-0.10155982,-0.0066145915,0.011112619,-0.096314974,-0.0032988123,0.06513562,0.08555347,-0.010810016,0.0408574,0.015368976,0.02210744,-0.0109918,0.004982957,-0.046027344,-0.019926876,0.114643864,-0.10736696,0.075276025,-0.02964984,0.15507492,-0.013768188,-0.0070008924,-0.050370812,0.036414955,-0.044006582,-0.022843534,-0.037974034,-0.07446979,-0.04235026,0.054405052,-0.04716179,-0.058721088,-0.07046966,0.08446319,0.0076414202,-0.012950556,-0.028880537,-0.0002130467,0.021664433,0.062091906,0.05700977,-0.07619694,-0.057935257,-0.008952917,-0.015599121,-0.09495333,-0.007590389,-0.067274064,0.07009978,0.03586808,0.0043039997,-0.011162246,-0.035655316,-0.04680739,-0.022336947,-0.09274544,0.052395504,0.013585298,0.038717527,-0.008313009,0.010698172,-0.045415442,-0.052935645,-0.066116184,-5.7224817e-08,-0.0006284962,0.00813904,-0.030609947,-0.0029573722,0.069609135,-0.00042133912,0.006350984,0.04276569,0.0020633559,0.009589791,0.023077082,-0.0037402094,0.08793842,0.065013275,0.023199437,-0.03929191,0.115604945,0.05474361,-0.007183844,-0.05481868,0.113712765,-0.07646841,-0.04625263,0.036389038,-0.003955817,0.005812294,-0.07640627,-0.056546587,0.001932832,0.0005277343,-0.028857514,-0.034567304,-0.012216084,-0.05924301,-0.0005508151,-0.05243822,-0.032746878,0.079048805,-0.04833126,0.0070500495,0.028263878,0.024331663,-0.0683484,0.05179324,-0.07842396,-0.036119178,-0.027663797,-0.00795585,-0.026190478,-0.04405752,-0.014837733,-0.07146235,0.043829303,0.09036144,0.010932679,-0.0074601877,0.06829573,-0.0055309823,-0.06902395,-0.026836317,0.019665964,0.0781365,0.0021219598,-0.039055347} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:23.389612+00 2026-01-30 02:01:10.676408+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1672 google ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB 1 t 1675 Go Karts Mar Menor unknown Her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige. En liten bar med refrescos har de også :-) De minste (under 12, 100cc) kan ikke kjøre samtidig med voksne. her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige. en liten bar med refrescos har de også :-) de minste (under 12, 100cc) kan ikke kjøre samtidig med voksne. 5 2026-01-30 01:52:39.833374+00 da v5.1 O2.02 {O3.01} V+ I2 CR-N {} {"J2.02": "De minste (under 12, 100cc) kan ikke kjøre samtidig med voksne.", "O2.02": "Her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige.", "O3.02": "En liten bar med refrescos har de også :-)"} {-0.014896536,0.11518811,-0.0037131815,-0.09775043,-0.13345414,0.02077518,-0.022983171,0.22005047,0.032469776,0.013018412,0.009027536,-0.06905631,0.00079269387,-0.08012435,-0.05192919,-0.020802364,-0.0048229746,0.1110933,-0.010527548,0.027508084,0.008147726,-0.06957721,-0.031507757,-0.04180856,0.0656856,-0.008406374,0.00079971534,-0.010211594,0.022306925,-0.01118031,0.12993433,0.03742842,0.019316608,-0.055694528,0.013607001,0.120741725,-0.035923056,-0.085404664,0.020075863,0.097517624,-0.08332767,-0.017532468,-0.07282467,-0.12034612,0.0014047329,0.06696155,-0.03408537,-0.029956603,-0.03150609,-0.011431178,-0.008421293,0.058656234,-0.02187829,0.05095688,0.021615779,-0.060271747,-0.07061588,0.01221631,0.080282405,-0.06378385,-0.0626956,0.041728828,0.062771216,0.006193494,-0.12093335,-0.057218406,-0.033339933,-0.013330283,-0.032637116,0.03412362,0.057117168,0.0027077799,-0.06733622,-0.027001893,0.00077871187,-0.0066843047,0.02821982,-0.03789516,0.045525253,-0.104996376,0.07501468,-0.004003971,-0.06424086,-0.017233238,-0.020223266,-0.05030876,0.048636954,0.055113275,0.050632324,-0.0014590751,0.024564449,0.03105946,-0.04698038,-0.0072415215,-0.0045887516,-0.032593917,-0.052826576,0.031615194,0.03256931,-0.026553905,0.04910797,0.051478237,0.02365835,0.017175062,-0.10339799,-0.051428653,0.08181696,-0.016629837,0.03646219,0.011575818,-0.030467635,-0.0162379,0.06554414,-0.108361825,0.074263915,0.05876205,0.012653035,-0.13411207,0.07476932,-0.015108,0.01748347,0.0324279,0.018977746,-0.023972591,0.0792251,0.089682356,0.08432832,9.271483e-33,-0.03631185,-0.001495187,-0.00017040722,-0.0138358725,0.020223264,-0.025768818,-0.0011993471,-0.06354918,-0.040688563,-0.0058069737,-0.05940184,-0.047450583,-0.06658721,-0.035976943,-0.059837084,0.011344298,0.066469826,-0.012017572,-0.054586638,0.016190387,-0.008756933,-0.06594311,0.031914737,0.108229525,0.04570048,-0.056877404,0.08550185,-0.027564242,-0.026782667,0.019517602,0.015642224,-0.020784415,-0.019098444,-0.08378783,-0.0051027182,0.03282347,0.06895094,0.04856063,-0.02888411,-0.033483084,0.031630173,-0.059994265,0.043354664,0.043570545,0.051476147,0.107943706,0.045162223,0.0058317296,0.015323154,-0.015811602,-0.07464039,-0.004938218,-0.10900447,0.04175666,0.0048673763,0.04755644,-0.059339136,-0.047673814,0.01547522,0.043662567,-0.021987997,0.021185502,0.0021691083,0.084290534,0.011741933,-0.07407474,0.029112685,-0.08211018,0.0025125977,-0.01951286,-0.046392072,-0.019848565,-0.014614803,0.002914854,-0.00031374508,0.03976269,0.040513594,-0.04031502,-0.01751415,0.001759063,-0.030664794,0.03246967,-0.06903767,0.026154991,0.06281416,-0.11050832,0.05056385,-0.029575188,-0.053736586,0.003434672,-0.00067621586,-0.018100884,-0.025676187,-0.0640817,0.0026221594,-9.240404e-33,0.034938335,0.009598817,-0.0065100286,0.09303905,0.007991986,0.066883795,0.058702845,0.065143645,-0.031028507,-0.0090913065,0.0016711132,-0.07963918,0.072842255,-0.009438668,-0.07287846,0.038569927,-0.0090686325,0.048148945,0.044331927,-0.06231952,0.02436914,-0.011095325,0.013261366,0.11990575,0.011759317,0.051818144,0.014435152,0.035490185,-0.042811215,-0.021906756,-0.0024307403,-0.009293557,0.013029603,0.02996641,-0.025534056,0.033489335,0.094723806,0.010774122,-0.088469006,0.021484908,0.006645866,-0.061411258,-0.019178897,-0.05692214,-0.022210011,-0.06287432,0.050527915,-0.06449262,0.034983262,-0.080977626,0.015628086,-0.02226975,0.028324842,0.03829568,0.06311153,-0.06465094,-0.03766507,-0.036556263,-0.010702602,-0.019896816,0.07191673,0.021359531,-0.015391,0.016627025,0.015631972,-0.042178787,0.00031838097,-0.08026499,0.02225803,-0.07642752,0.060246885,-0.0066283727,0.10510143,0.0065127993,0.015425474,-0.064016216,-0.04437106,0.016204072,0.060921878,-0.02801938,-0.11515259,-0.031247947,0.026960688,0.021073975,-0.025097426,-0.049168024,-0.018427607,0.014600604,-0.026167747,-0.029858852,-0.060883135,0.056773372,-0.0021743355,0.0019882042,-0.016888065,-3.940922e-08,-0.0029134243,-0.013493538,-0.034857508,0.014570164,0.056798853,-0.042475935,-0.025790507,-0.03594223,-0.10333153,0.08264427,-0.011478656,0.07223503,0.0032943164,-0.0075005796,0.022772959,0.033523444,0.06160206,0.07037431,-0.0054873037,-0.024180083,0.050126042,0.033600084,0.000897145,-0.05545749,-0.036330204,0.029527733,0.052244235,0.029655566,0.0970837,-0.08746957,0.043316804,0.06383389,-0.019632144,-0.07296886,-0.019788193,0.030144867,-0.08506989,0.10306394,-0.02902629,0.11305248,-0.03768192,-0.061826073,0.009894584,-0.049220927,-0.10614463,0.02820642,-0.05911332,0.0053073093,-0.026435986,-0.016122822,0.0031327298,0.009974475,0.06556267,-0.012494907,-0.0074582947,0.037386864,-0.002440651,0.006589127,-0.033565234,-0.042004522,0.030212125,0.0247764,-0.064600416,0.019960677} 0.8666667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:22.866431+00 2026-01-30 02:01:10.271466+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1534 google ChZDSUhNMG9nS0VJQ0FnSURMeThibU9nEAE 1 t 1537 Go Karts Mar Menor unknown Good price, nice ride. good price, nice ride. 5 2025-01-30 01:52:39.833374+00 ro v5.1 V1.01 {O1.02} V+ I2 CR-N {} {"V1.01": "Good price, nice ride."} {-0.047750928,0.08708134,0.022311265,0.02315479,-0.10043052,0.058341224,0.017108934,0.022145754,0.0050497362,-0.027117165,-0.031592645,0.025927018,0.008547262,0.018359102,-0.045008812,0.054305788,0.011918782,-0.048846565,0.086523764,-0.047133964,-0.12577651,0.03337906,0.034474224,-0.009971505,-0.05474956,0.078076184,0.029426476,0.0066530565,0.028726984,0.0071573234,-0.0745426,0.031992547,-0.030695135,-0.010291185,0.059567012,-0.027908873,0.019591406,-0.09231784,0.00057895336,-0.06406647,0.043495145,-0.048139963,-0.050160687,0.02548065,-0.061800968,0.09168469,0.020688515,0.066315845,0.13724856,0.0786777,0.04285748,-0.05374794,-0.018951869,-0.029902445,-0.039329223,0.059608545,-0.03655152,-0.08376258,0.028589355,-0.089269064,0.03433327,-0.031997353,-0.06317845,0.13685355,0.009554825,-0.0014546321,0.033242114,-0.11195481,0.0026923206,0.0037471564,0.01751136,0.08087237,0.008081819,-0.086721666,0.01258823,0.05995791,0.09311029,-0.017872086,-0.033965524,-0.044395067,0.017006963,-0.0039696028,0.006954515,0.035872336,0.042708583,-0.06735816,0.09582983,0.09332864,0.02441138,-0.02318799,0.0042989887,0.006586987,-0.04368201,0.018600663,-0.03686046,0.029018238,-0.035761345,0.033108767,0.0071883956,0.05873936,0.016800947,0.025945602,0.039374746,0.009261303,-0.041853894,0.08760835,0.037840743,-0.0055456366,-0.029201124,-0.025786463,0.041606076,0.009825042,-0.046659186,0.009304046,-0.032292504,0.023246327,-0.060128808,0.026245618,0.023414934,-0.08321501,-0.014578123,-0.054231774,0.068453796,0.046388708,-0.01306296,-0.113393605,0.033836123,-4.9211017e-33,-0.017570125,0.10040105,-0.033010084,-0.0018813886,0.009392097,0.035222407,-0.04024667,-0.029789252,-0.022920555,0.0038802926,0.03485268,0.016844599,-0.040880665,-0.010398233,-0.045368653,-0.114438385,0.0024023254,-0.07628842,0.07025037,0.02648278,-0.06252187,0.00012980412,-0.0072795697,0.046479177,-0.028807567,0.018207133,0.0045632925,-0.021774728,0.033706687,0.053295083,-0.02702033,-0.010665769,0.017057555,0.029930767,0.009091458,0.023451159,-0.006897442,-0.007405702,-0.035999045,0.0484555,-0.009097563,0.02584993,-0.05047098,-0.02140745,-0.061623987,-0.01637757,0.024846278,0.043288596,0.025767852,-0.021781042,-0.07885779,-0.00824626,-0.07328183,0.049839437,-0.042366784,-0.09488092,0.0074636727,-0.021742573,-0.0012163098,0.05607419,-0.004912864,0.027307874,0.046605736,-0.03397404,-0.09203981,0.040463295,0.007681138,0.019869037,-0.016062912,0.028907362,-0.009128249,0.0008838215,0.06723763,-0.037103355,0.05390516,-0.016759207,-0.10808853,-0.079457596,-0.0009555008,0.029407466,0.024298495,0.025921062,0.0035107906,-0.00948661,0.04419432,0.03054878,-0.016862284,-0.1122307,-0.010823846,0.002587706,0.02663825,0.030822923,0.02943191,-0.013048162,0.016877878,2.7190518e-33,0.063975126,0.041920528,0.09032458,0.08359147,-0.035719097,0.021295542,0.006240723,0.1367793,-0.088093266,0.04811425,-0.037494197,0.04493333,0.02704648,0.04451563,0.073015265,-0.0062020104,0.06875108,-0.004178685,-0.00097007526,-0.09098582,-0.032177668,0.090728514,-0.044917837,0.0030500586,-0.025403902,0.02173849,-0.06024607,0.10846674,0.07454505,0.065457724,-0.056965068,0.056465637,-0.042791914,-0.033465702,-0.046929937,0.068444274,0.041516807,0.0035910662,-0.01815766,-0.028260961,-0.017815296,0.021921098,0.033319563,0.032175932,0.08440592,-0.040882245,0.061762396,0.046637658,-0.004750636,-0.0096848095,0.039854676,0.02658987,0.047336146,0.007281239,-0.043149002,-0.13980699,0.033210527,-0.050313156,0.019687267,-0.07736408,-0.03189557,0.11498501,-0.05928971,-0.0026266028,0.046201702,-0.06838242,-0.026827354,0.011283502,-0.036197167,0.012230852,-0.059572864,-0.0016851055,0.07408791,-0.00677821,0.08371457,-0.11502181,0.017841654,0.0007837814,0.08503816,0.016840138,-0.06750031,0.0064443047,0.022195416,-0.032483116,0.001222005,-0.06933793,-0.07533569,-0.039348863,-0.024650011,0.08662519,-0.0233594,0.09228631,-0.052308448,-0.076383814,-0.0574481,-1.7767887e-08,0.008787227,0.05372942,0.007237739,0.037278585,0.014451814,0.0048240614,-0.016111014,0.020192575,-0.039338157,0.08150987,0.10712916,-0.03821843,-0.032129947,0.018810436,-0.055713657,0.0052797273,-0.068408854,0.16587622,-0.02829015,-0.040788777,-0.020300196,0.0028818045,0.061802305,0.062669925,-0.0067667724,-0.0069006523,-0.026601747,0.031798728,0.013443856,-0.08799164,-0.093109794,0.09086404,-0.046955753,0.003313006,-0.01853601,0.023987764,-0.08078441,0.016671399,0.103366636,-0.019629605,-0.048384387,-0.100732826,0.019068832,-0.085644126,0.0007464335,0.021815855,-0.104542226,-0.018019456,-0.061506383,0.020681925,0.025217708,-0.087903805,-0.045911252,0.111558594,0.0077346787,-0.014018919,0.00611717,0.0076299976,-0.0657262,0.04109065,-0.049228877,-0.007060328,-0.06708715,0.014873158} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.548514+00 2026-01-30 02:01:09.687664+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1536 google ChZDSUhNMG9nS0VJQ0FnSUNZNC1QeU1BEAE 1 t 1539 Go Karts Mar Menor unknown Nice service, nice track and nice staff. Will be back nice service, nice track and nice staff. will be back 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {E1.03,R4.03} V+ I2 CR-N {} {"P1.01": "Nice service, nice track and nice staff. Will be back"} {-0.06933279,-0.06238829,0.05822265,-0.029688943,-0.039276566,0.0446054,-0.00801404,-0.052016508,-0.04255709,-0.013943834,-0.0129818,0.047268834,-0.01777341,0.0060342285,-0.036901835,-0.03462581,0.050149005,-0.038968544,-0.040840466,-0.027995415,-0.1390926,0.0008856059,-0.041080486,0.07611791,-0.1424128,0.0557615,-0.07662225,0.059679903,-0.06438183,-0.05557672,-0.08666587,0.0022690697,-0.00073907844,-0.010844937,0.037950937,0.045657463,0.02946947,-0.0823162,-0.04235323,-0.005830487,-0.038403872,-0.03557387,-0.0570889,0.052301537,0.0026720874,0.04238149,0.0015243577,-0.05960442,0.086081006,0.060360607,0.08230752,-0.109028615,0.04620746,-0.019623633,-0.016798494,0.06700065,0.009551202,0.03976587,-0.023560034,-0.027804859,0.01395849,-0.054242395,-0.07772407,-0.010719914,0.03368991,-0.067495525,-0.06646197,0.0044111554,0.043550592,-0.035026837,-0.005043759,0.06591765,0.07538327,-0.01053359,0.017418126,0.108887196,0.009825579,-0.033120856,0.009684867,-0.06778942,0.015234527,-0.067955196,-0.026318178,0.05183635,-0.042892702,-0.11493184,0.009751084,-0.051653385,-0.012055637,-0.029444436,0.059798844,0.15230684,0.035989493,-0.051091526,-0.07188302,0.0061582313,-0.025072891,0.023162883,-0.0470103,0.087939814,0.07689418,0.114781395,0.067668356,0.006178534,-0.014171798,0.033963744,-0.015441631,0.10261496,-0.0067173084,-0.074821025,0.032121483,0.047521785,-0.05147127,0.027438864,0.03374339,0.06642849,-0.08334692,0.056159962,0.0031785793,-0.04427016,-0.011024485,0.046363287,0.0242614,0.020568505,0.021359522,0.031111224,0.14303192,-4.2401874e-33,-0.052016802,0.06272699,-0.012669719,-0.02645824,0.06673586,-0.03443351,-0.0651654,-0.002543539,-0.050345432,-0.0052537345,0.027385684,0.080956906,0.006747481,-0.04702713,-0.019728236,-0.08549084,-0.0058898646,0.016058346,-0.05967078,0.04051075,-0.051127005,0.026718857,-0.025339046,0.033909537,0.093524724,0.005103964,0.009662055,-0.029680345,0.07146347,0.017964512,-0.006383771,0.008591042,0.044901535,0.017932985,-0.07167896,0.010373397,-0.076924324,-0.0837093,-0.027918309,-0.075587004,0.03580114,0.031707916,-0.053433385,-0.01244708,-0.047937088,-0.029221974,0.053902052,0.04534778,0.09356485,-0.031733666,-0.017986251,-0.00411661,-0.029764768,0.030198636,0.04227664,-0.030451842,0.00662367,0.05033493,0.018336738,-0.053215325,0.11928588,0.009219031,0.0063968333,-0.09687677,0.011129202,-0.040796,0.024510609,-0.0047422997,0.036354985,0.007892623,-0.039945424,-0.014165736,0.008557762,0.030647911,0.008775137,0.07742586,-0.03370273,-0.060511086,0.022102991,0.027524756,-0.032392353,-0.0037919972,-0.057930324,-0.022974186,0.11967591,0.03278019,0.048345525,-0.132906,-0.06673904,0.02927256,-0.043202892,0.044408437,-0.003417341,0.12286533,0.029568987,2.366085e-33,0.046020523,0.1107194,0.050685663,0.012496688,-0.042613205,0.020411348,-0.023156216,0.16289262,-0.0024717224,0.1541371,-0.04217825,0.0038641521,-0.0013480948,0.03398582,-0.08908247,-0.044389114,0.016922822,-0.0048425803,-0.043303125,-0.013219801,-0.0038796335,0.09476511,-0.048396066,0.041762255,-0.058541,0.045049753,0.006500598,-0.0005262998,-0.03757139,-0.07846466,-0.024141178,-0.08794284,-0.04519465,-0.047176175,0.06277541,0.0014324195,0.060536288,0.05927545,-0.07756884,0.080814965,-0.015773965,-0.0070159826,0.019766554,-0.032297347,-0.03261042,-0.016131146,0.024867782,0.06990361,-0.06081532,-0.0011526155,-0.0066400114,-0.050938334,0.0021538567,-0.013683863,-0.004287961,-0.041932683,0.022601126,-0.048690934,-0.04870125,-0.009816633,-0.061144847,0.016059926,-0.0160064,0.038334616,0.09076276,-0.045719087,0.027945219,-0.01747145,-0.09474163,0.017726008,-0.030923044,0.025927402,-0.050576925,0.07896245,-0.00881043,-0.041322585,0.01717335,-0.07620757,0.006643084,0.032315955,-0.0070380787,0.032115318,0.019318588,-0.02905968,0.07423793,-0.0013343557,0.06850183,0.038287614,0.044786107,0.03318961,0.06802347,0.016381815,-0.046913818,0.035249908,-0.06227535,-2.0186667e-08,-0.00936699,0.09938896,0.011514333,0.057406217,0.05624791,-0.07613355,0.042845055,0.035286397,-0.0018837404,0.0070870644,0.029926943,-0.03496487,-0.07805764,0.048817296,0.046393726,0.009216079,-0.052532997,0.063767426,-0.032872036,-0.058853798,-0.033631045,0.029377704,0.05049284,0.06412012,0.055981245,-0.006489384,-0.0062317825,0.039074108,-0.0150957825,-0.006555151,-0.012091064,0.0026947008,0.031961575,-0.01858826,-0.032309562,-0.038736753,-0.065547824,-0.007492476,-0.0107597895,0.039899644,-0.031009076,0.049094934,-0.035832852,0.011258421,0.04504382,-0.043218423,-0.005050064,0.036797717,-0.05200225,-0.09819266,-0.07837479,-0.10772042,0.017045038,0.0529004,0.0699802,0.017284848,-0.004695423,-0.016785422,-0.00026116119,0.07359537,-0.0021823063,-0.03702385,-0.049388815,0.033861283} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.576279+00 2026-01-30 02:01:09.692665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1792 google ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB 1 t 1795 Go Karts Mar Menor unknown Es un buen lugar para pasar la tarde con los amigos. Esta bien localizado y tiene aparcamiento amplio para coches. Si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si lo desea. es un buen lugar para pasar la tarde con los amigos. esta bien localizado y tiene aparcamiento amplio para coches. si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si lo desea. 4 2020-02-01 01:52:39.833374+00 es v5.1 E1.04 {} V+ I2 CR-N {} {"A4.01": "Esta bien localizado y tiene aparcamiento amplio para coches.", "E1.04": "Es un buen lugar para pasar la tarde con los amigos.", "O3.02": "Si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si"} {-0.011598527,0.008153321,-0.0025600477,-0.091961704,0.019298075,-0.031829927,0.053085245,0.019858722,0.008191377,0.024139963,0.12191605,-0.058446147,-0.07007198,0.0042263716,0.049605355,0.05591711,-0.07142111,-0.0033238675,0.011734489,0.0154970605,0.044169486,-0.057367373,-0.043794677,0.075341694,-0.062495705,-0.03915278,0.057133082,0.0195567,-0.050260533,-0.06460355,-0.018145572,0.010331245,0.022881439,0.062379587,-0.018983359,0.032476924,0.08150608,-0.07274233,-0.033042334,0.11209959,-0.078313544,0.0133181885,0.01566652,-0.07989985,0.010882944,-0.10034084,0.01694705,0.076071575,-0.00727954,-0.051565584,-0.05550373,0.023187133,-0.044423517,0.027786924,-0.03217109,0.0068139597,-0.07657888,0.0034522575,0.026311478,0.06352608,0.016456768,0.054677177,-0.02872902,0.035238292,-0.03931082,-0.0022429985,0.037697367,0.030183317,-0.045997463,-0.011153087,-0.009902531,-0.08113105,-0.025388457,0.017563758,-0.018348617,0.012201036,-0.002894521,0.013258282,-0.056706935,-0.04158382,-0.015473763,-0.011309275,-0.049144417,-0.09278705,-0.0126221385,0.00010622046,-0.014363425,0.03491297,0.051805437,-0.03540737,-0.01710711,0.04891983,-0.097810484,0.015090537,0.0034323663,-0.0047616055,0.10094352,-0.075097546,0.008641478,0.021220582,0.08074149,0.036097236,-0.0079166135,-0.00485962,0.008449603,0.015803892,0.016579082,-0.008230093,0.06783514,0.017896695,-0.04744126,-0.012545664,-0.05198312,-0.04024699,-0.039329417,0.059687216,-0.0492485,-0.06424759,-0.006081788,-0.087103,0.03699184,-0.040705316,-0.0706612,-0.0025780797,0.048793353,-0.048632436,0.0626867,1.14842374e-32,0.006053748,-0.00065169274,0.02610144,0.05531933,-0.04408098,0.06179971,-0.015841002,0.004657508,-0.089251116,-0.071515575,-0.05111211,0.020479212,0.007234566,-0.020700658,0.03485013,0.05856767,-0.036352333,-0.014708195,0.053191658,0.10227267,-0.079358846,-0.06496235,0.010778159,0.06437904,-0.01692489,0.021509578,0.036242664,-0.0354766,0.03729113,0.043596063,0.008783284,-0.0070079253,0.03349672,-0.026829962,-0.018994719,0.025480224,0.05493756,0.025444131,-0.016404945,0.013894277,0.014624217,0.010903737,-0.025576174,0.026099466,0.051802892,0.033938885,0.046100248,-0.019853448,-0.038505215,0.042759486,-0.099524654,-0.041098367,-0.053913377,-0.082226366,-0.028796662,0.042559106,-0.06950532,0.022254854,-0.005221596,-0.06212463,0.03314759,0.024929587,0.009842275,-0.033945676,-0.022366878,-0.061631557,0.07919244,-0.00401896,0.08964206,0.044935446,-0.00086779986,-0.022688543,-0.022911679,0.08114867,-0.0025003403,0.08905824,-0.051556606,0.05800331,0.0010599627,0.0776502,-0.10646165,-0.019449145,-0.0089451205,0.051404055,0.07645177,0.0593027,0.03737143,-0.009960207,-0.038777955,0.119028166,-0.023420837,0.17400208,0.036987517,-0.08184246,0.07167555,-1.1740681e-32,0.08371371,-0.018486591,-0.022713935,-0.007493906,-0.03009737,0.017640451,0.07223325,-0.00410395,0.064796284,-0.06302409,-0.11144699,-0.13256997,0.08923808,-0.055334188,0.0224569,0.09763344,-0.017044028,-0.048589464,-0.019694356,0.046244107,-0.0041336287,0.010855927,0.07157022,0.04794827,-0.0027552193,-0.059011932,-0.029925385,0.00066026056,-0.08408457,-0.10502876,0.13714172,-0.096297316,0.027895086,0.013784754,-0.11566729,0.07976821,0.07176642,0.026577586,0.020686539,0.045381036,0.006125075,0.019599248,-0.06592486,-0.08002728,-0.039298076,-0.0008376374,-0.0017739041,-0.12159142,-0.10841185,-0.08017057,0.07742465,-0.0035489069,-0.068558656,-0.06703468,0.039237577,0.037963815,-0.06012848,-0.016407253,-0.05736325,0.010141485,0.08853264,0.008651262,-0.06095541,-0.055910114,0.05789626,0.033027362,-0.012575037,-0.054626286,0.0019161629,0.046502646,0.11144807,-0.046473734,-0.09069288,0.04164892,6.19321e-05,0.021654774,-0.056211818,-0.001514115,-0.009084791,0.0027701717,-0.013400921,-0.0688317,0.02964213,-0.014304899,-0.016884709,0.027600264,0.006402561,0.013266182,0.020487789,-0.013240459,-0.038259037,-0.0054995525,-0.10055314,-0.05751485,-0.03654504,-4.423163e-08,-0.0134385815,-0.040204097,-0.062804654,0.029960994,-0.049367193,-0.0075076963,0.02647957,0.07546525,0.053475667,0.05804549,-0.04986208,-0.0648053,-0.011509302,0.09692107,0.011363585,0.034955945,0.07175543,0.06477543,-0.01775427,0.00014700729,0.0620146,-0.04113123,-0.04090441,0.062450115,0.015090848,-0.036923666,-0.027344266,-0.0034283993,0.043825626,-0.05750659,-0.055973012,-0.012293301,0.0037983148,-0.04826304,0.053749222,-0.009401243,-0.068784446,0.004225999,0.013249137,0.027460046,0.08047051,0.007507415,-0.07588061,-0.010651147,-0.021835916,-0.10210608,0.04470822,-0.01641805,-0.022088496,0.04307517,-0.010838203,-0.051497,0.09396438,0.008175398,-0.00013940713,-0.08491457,0.06612428,-0.01791695,0.006376387,-0.014394278,0.053999443,0.09472756,0.00030824722,-0.00828396} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:34.715473+00 2026-01-30 02:01:10.72604+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1788 google ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE 1 t 1791 Go Karts Mar Menor unknown Espectacular amigos, todo muy bien organizado y un personal muy simpático. Lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezados. Volveremos a encontrarnos amigos, muchas gracias. espectacular amigos, todo muy bien organizado y un personal muy simpático. lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezados. volveremos a encontrarnos amigos, muchas gracias. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {J2.01} V+ I3 CR-N {} {"E4.01": "Lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezad", "P1.01": "Espectacular amigos, todo muy bien organizado y un personal muy simpático.", "R4.03": "Volveremos a encontrarnos amigos, muchas gracias."} {-0.010029001,0.027899288,0.009802442,-0.06897249,-0.010588049,-0.022510136,0.16781904,0.040883012,-0.025023472,0.06176616,0.059636716,-0.05073392,-0.09477596,0.022352345,-0.0073258383,0.027830433,-0.03404014,-0.03690309,0.024103846,0.013985971,0.09026762,0.051285625,-0.0054647704,0.0367566,-0.08385395,0.029413847,-0.040126976,0.016830927,0.007810927,-0.12232962,-0.0046069925,0.056702558,0.04934845,-0.022090068,-0.004323684,0.056781672,-0.0012880075,-0.11123037,-0.013916741,0.061277602,0.005400554,0.03568879,-0.017045736,-0.07075223,-0.10556952,-0.09146061,-0.0026926908,0.02499601,0.062594295,-0.06385457,-0.014634895,-0.10161444,-0.028807925,0.04266227,0.00078601873,-0.046764866,-0.06712278,-0.036028236,0.009250268,-0.008771662,0.012611548,0.06933898,0.049039777,0.062178068,-0.073847525,-0.016416468,0.059902944,-0.009867587,0.022222163,0.04524083,-0.0069925454,-0.051978685,0.00019671558,0.081222214,0.006742351,-0.0108973645,0.00044054445,-0.027102236,-0.0029512905,-0.033786453,-0.06771838,-0.027030768,0.012849902,-0.042750567,0.03349151,0.02436372,-0.016395006,0.04782719,0.009752959,0.02207442,0.041769773,0.0201283,-0.0040370706,0.044326115,-0.065917544,0.026927125,0.06225604,-0.094852835,0.036508396,0.038309336,0.02211865,-0.007432956,0.048528098,0.039908748,-0.015290237,-0.019073382,-0.019319236,-0.07933026,0.037163537,-0.03666586,-0.07882058,-0.024835667,-0.022354504,0.055825733,-0.042478375,-0.07121165,-0.06478858,-0.014380059,0.019924428,-0.026794799,0.048410952,-0.057324514,-0.02530138,-0.07503234,0.03870413,-0.003060986,-0.028505484,1.146498e-32,0.049555864,-0.018014356,0.062190726,0.021139393,0.048747774,0.025555937,-0.09177527,0.0708959,-0.01269408,-0.017649362,-0.16567366,0.03239928,0.019094229,0.16963258,0.023877293,-0.0009583975,-0.07886461,-0.054867152,0.07355587,0.024050336,-0.103465,-0.014253662,-0.022778654,-0.013835665,0.00791631,0.05506741,-0.08768944,-0.013600544,0.045910314,0.0625011,0.048688706,-0.0017671568,-0.0031556955,0.028637081,-0.0030393996,0.05906236,0.055193592,0.013355335,-0.015492796,-0.014235588,0.062883325,0.02205331,-0.047234904,0.0036836816,0.021571696,-0.013925668,-0.008389471,-0.01099111,0.057676997,0.00023141144,-0.048545174,-0.041841745,0.056947563,-0.074982114,0.08267039,0.112810396,-0.04085194,0.054627772,-0.049047515,-0.057407852,-0.0019323393,0.0594709,0.038691163,-0.015625289,0.053006317,-0.05596904,0.0347742,-0.055296667,0.024341658,-0.0556779,-0.041559502,-0.0058154226,-0.034730688,-0.023626603,-0.00017816377,0.02644659,-0.06720392,0.023273787,-0.0069640125,0.029630557,-0.057366416,-0.033782847,0.04892465,-0.032281294,0.054699156,0.0082502635,0.054925274,0.037600644,0.03022885,0.1246813,-0.015256004,0.05028954,0.06523283,-0.08079942,-0.030172244,-1.3168571e-32,-0.004573938,0.007316341,-0.033232555,-0.0023183818,0.00883179,0.040440094,0.0547101,0.034604184,-0.03742834,-0.0328109,-0.08126764,0.0030148567,0.10648355,-0.0972241,-0.0046548676,-0.023252552,-0.027698118,-0.00060644216,-0.011806552,-0.0824371,-0.03448076,-0.03260334,0.06250358,-0.05162668,-0.047082763,0.016708761,-0.034196865,-0.008595843,-0.11626791,-0.059609972,-0.0019111003,-0.030166285,0.002034029,0.00700165,-0.053154215,0.009658069,0.013075968,0.024515461,0.023387788,-0.05722562,0.038519006,0.11318233,0.012933742,-0.06239365,0.057089984,0.0464051,-0.041766778,-0.057813376,-0.08841069,-0.037222605,-0.029892562,0.02391883,-0.059808083,-0.052215397,0.03350665,-0.015045208,-0.07121027,-0.103311874,0.01308901,0.02574789,0.006807498,-0.04920883,-0.08695234,0.0048356457,0.102704726,0.0773086,-0.029641943,0.06448779,0.09560025,-0.0027875563,0.13903916,-0.019650841,-0.09747931,-0.057914115,-0.036815017,-0.048382677,-0.10481794,-0.07846711,-0.014283747,-0.048953727,0.098269165,-0.00969593,-0.024285557,-0.020561982,-0.014133394,-0.030427137,0.020981343,0.001880206,-0.018531816,0.061236903,-0.009826857,0.0067615407,-0.025098868,0.011366127,0.07401275,-5.1860628e-08,0.042065803,0.026299568,0.0021819575,-0.04632302,0.0117048295,0.0031348567,0.013047141,-0.0031354434,0.030650984,0.042057287,-0.007823597,-0.0553637,0.049735676,0.12149792,0.092706606,0.040430564,0.004877508,0.0681585,-0.06735168,-0.08508212,0.02109582,0.02242168,-0.059140254,0.06426929,0.0136025585,-0.0013183522,0.018781113,-0.056574903,0.008218817,0.051569488,-0.14808868,0.058925822,-0.0008029638,-0.0036496134,-0.057498742,-0.04628925,-0.070774026,-0.06907711,0.05127229,-0.060039178,0.036802545,-0.030965399,-0.023433898,-0.028180746,0.0037817196,-0.100185916,0.085697696,0.04216898,-0.02901119,0.028701298,0.03807691,-0.0033339588,-0.0027198298,-0.0070365295,-0.069277234,-0.06467098,0.006835029,-0.016076338,-0.020609856,-0.05721888,0.016291741,0.07097734,0.063991725,-0.012020791} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:54.525128+00 2026-01-30 02:01:10.713571+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1789 google ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB 1 t 1792 Go Karts Mar Menor unknown Es un sitio genial , lo tienen todo super bien cuidado y el personal es de 10\nRepetiremos es un sitio genial , lo tienen todo super bien cuidado y el personal es de 10 repetiremos 5 2025-04-05 00:52:39.833374+00 es v5.1 E1.01 {O2.04} V+ I3 CR-N {} {"E1.01": "Es un sitio genial , lo tienen todo super bien cuidado", "P1.01": "el personal es de 10", "R3.03": "Repetiremos"} {-0.07382911,-0.0039745313,-0.030969078,-0.073708095,-0.04405517,0.051078647,0.058207408,0.033185035,-0.027095482,0.036477964,0.051171392,0.0009729537,-0.033382807,-0.039637726,0.025589637,0.03713542,0.0002567273,0.086614266,-0.013500319,-0.011589548,0.0732036,-0.031427678,-0.01138844,0.08845251,-0.07577317,-0.045986287,0.031373728,0.035665214,-0.059393123,-0.048326213,0.018513389,0.039056774,0.14134185,-0.0063553043,-0.026335036,-0.055540517,0.027320594,-0.05408212,-0.013255413,0.01806171,-0.091928616,-0.03159526,-0.00010150011,-0.0873177,0.04284926,-0.05519053,0.017669829,0.051660858,0.024227513,0.031334575,-0.054321945,-0.0039374237,0.0046974695,0.015900658,-0.0236852,-0.023755409,-0.0037870235,0.0021429767,0.051260334,0.0068684854,0.047734525,0.02241375,-0.0997626,0.012100685,-0.017426152,0.031596664,0.05198714,-0.050320208,-0.049576458,0.052776348,0.058585875,-0.023517812,0.081585914,0.0037778583,-0.06896528,0.045527354,0.003049577,-0.02600724,-0.023798916,-0.0011104157,-0.017695438,0.048935138,-0.0045728246,-0.072604,-0.041935287,-0.025520626,0.0376122,0.04377181,-0.032188877,0.03773069,-0.04266664,0.15128912,0.06977255,-0.03863484,-0.042760774,0.06370113,0.032246817,-0.030395716,0.0012782562,0.014968611,0.118690595,0.09369872,0.076669395,0.07796274,-0.011282227,0.04262428,0.023224046,-0.018800769,-0.04226722,0.026146216,-0.039749604,-0.012332782,-0.076801464,0.038716048,-0.0973896,0.02430764,-0.0113123795,-0.059076477,-0.051163785,-0.035308216,0.04023424,-0.023764096,-0.013089251,-0.08385428,-0.001268307,-0.02218619,0.05279917,3.5421586e-33,-0.031545654,0.0047164634,0.0028089432,0.018804066,-0.00079817435,0.05583323,-0.08848884,0.06093954,-0.088856086,-0.050235257,-0.06075823,0.038307693,0.049763087,0.04246715,0.038895458,0.046303272,-0.07511689,0.062421963,0.070124425,0.031073412,-0.07773024,-0.0058713285,0.022968048,-0.00582537,0.015593004,0.08901372,0.026469974,-0.0146989655,-0.11253334,0.032332078,-0.012702898,0.025813682,0.037527144,-0.023897517,-0.004604854,-0.030577334,0.13039963,0.027805267,0.035362404,-0.017132102,0.04434056,0.021994023,-4.5590208e-05,0.07063717,0.014341884,-0.02124224,0.07951013,0.010876125,0.009524732,-0.034527175,-0.08147177,0.0116540035,-0.09591215,-0.046554305,0.00977463,-0.045194104,-0.04623623,0.053314425,-0.07314438,-0.06325396,0.12083163,0.022914384,0.008862125,-0.026590288,-0.0860481,0.0429579,0.030300012,0.05265415,0.15324128,0.03465623,-0.019527702,-0.0710717,-0.03313803,0.004418473,-0.007862251,0.05742483,0.04391819,0.01926034,0.043646097,0.041059677,-0.009461514,0.020555254,0.026111966,0.007925319,0.07264559,0.054084927,-0.04704013,0.01370045,-0.043843783,0.04307281,0.045990665,-0.008220427,0.044472486,-0.035915602,0.016296024,-5.7247423e-33,-0.097306825,0.014958233,-0.021417899,0.05877879,-0.038099267,-0.011185403,-0.047896147,-0.009699196,-0.045559347,-0.038025383,-0.07548789,-0.11143409,0.1485689,-0.02442784,-0.03993975,0.045587197,-0.017403983,-0.074572854,-0.10174172,-0.050975785,0.0995821,0.061175838,0.023586418,-0.017006684,0.035911787,-0.06703156,-0.0154788615,0.00044723295,-0.005982344,0.027877936,0.058782615,-0.03729675,-0.06617073,-0.009547167,0.019115493,0.024230437,0.03519826,0.008664332,0.0098275915,0.05452465,-0.010945648,0.017618239,-0.057556402,-0.04390747,-0.039342936,-0.005682974,-0.06712972,-0.12273414,-0.08110982,-0.06396101,-0.03541506,-0.040630836,-0.013947165,-0.023662154,0.0046981634,-0.023664182,-0.0059830137,-0.020694342,-0.025501635,0.024133435,0.008192316,0.06772162,-0.043139625,0.021819314,0.075647645,-0.02951681,-0.07141885,0.035564546,-0.05872503,0.051953673,0.073199674,-0.03146525,-0.07300269,-0.0042458517,-0.09558332,-0.013794371,-0.04185745,0.03966693,0.06561293,0.043998756,-0.024224365,0.0067515667,0.023548534,-0.09774537,0.030264638,-0.049972944,0.02007981,0.07304247,0.005383141,0.033857886,0.09023498,-0.025811536,-0.11140013,-0.06504425,-0.059955463,-2.7210408e-08,0.018371023,-0.0621543,0.019101003,0.04664555,0.048860777,-0.024094092,-0.06795458,0.00879909,0.08257162,0.09551382,-0.002161664,-0.079781026,-0.072861984,0.057541784,0.0072542913,0.0034144637,0.01810502,0.044282604,-0.018034322,-0.032300804,0.05023128,-0.019554444,-0.034841493,-0.021989953,0.029271357,0.003536502,0.0015599367,0.036999963,-0.06421743,-0.011860671,-0.04256508,-0.012607006,-0.14349574,-0.098415926,-0.0046489323,0.024972726,-0.024014167,0.016373502,0.012811526,-0.04095487,0.05225048,-0.014592883,-0.07831293,0.049947396,-0.04759082,-0.054594345,-0.045728546,0.009231019,-0.05351419,0.033158302,-0.02650487,-0.06594241,0.09940129,-0.044107337,0.033777785,-0.0019249887,0.10942423,0.0090170475,0.00543597,0.044896934,0.110714,0.06262176,-0.03661151,-0.049352} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:02.981594+00 2026-01-30 02:01:10.716232+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1790 google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE 1 t 1793 Go Karts Mar Menor unknown De los mejores recintos que he conocido. Las instalaciones y los Karts están muy bien, el servicio atento y los extras también. Y el precio es asequible. Hay vueltas específicas para niños y dúos con niños. de los mejores recintos que he conocido. las instalaciones y los karts están muy bien, el servicio atento y los extras también. y el precio es asequible. hay vueltas específicas para niños y dúos con niños. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "De los mejores recintos que he conocido.", "O2.01": "Las instalaciones y los Karts están muy bien", "O3.02": "Hay vueltas específicas para niños y dúos con niños.", "P3.01": "el servicio atento y los extras también", "V1.01": "Y el precio es asequible."} {0.019049613,-0.0025755714,0.014404336,-0.052306227,-0.07049657,0.01623163,0.07622715,0.015547247,0.01252723,0.028061952,0.04732486,-0.0010717431,-0.07255566,0.044978805,0.07982147,0.0060190754,-0.017263498,-0.04301511,0.00093411526,-0.053014874,0.037510604,-0.09004199,-0.1020921,0.023713063,-0.051649652,-0.05376242,-0.008801915,0.023731817,-0.020831496,-0.05973153,-0.015850917,0.060900014,0.07379261,-0.0321256,-0.02502769,0.015102257,0.03292811,-0.008582161,-0.051098622,-0.001760091,-0.06339745,-0.03826312,-0.050442558,0.024882436,-0.027900577,-0.109447256,-0.022393422,0.009975637,0.03716784,0.015510118,-0.029059766,-0.03183058,0.016976958,-0.008481926,-0.005923728,0.01516631,-0.09077433,0.030487655,0.08762686,0.023724651,0.0033433398,0.056915093,-0.052074134,0.0047816746,-0.017443929,-0.046749506,0.031679556,0.03422125,-0.044234037,0.05107937,0.14312509,-0.026041523,0.009874282,0.032877382,0.0012624664,0.031410433,0.011451958,-0.0054746694,-0.06360783,-0.06289356,-0.008835211,-0.015701948,0.003384215,-0.061435726,0.0073777842,-0.0044658757,-0.03572803,0.003371421,0.008972134,0.012471936,-0.0027452197,0.024578562,-0.008819322,-0.021570591,-0.0069199386,0.054096747,0.0017254907,-0.056814577,-0.01274781,0.03409615,0.07745079,0.013886689,0.12660562,0.060705803,-0.093214616,0.016632807,-0.011972518,-0.070382714,0.008717844,0.04493499,-0.04345966,-0.012134195,-0.002457555,-0.0075247744,-0.116912425,0.041429266,-0.040408038,-0.0016494031,-0.009376369,-0.077613726,0.042726554,0.067303576,-0.013032751,0.015371262,-0.023002742,-0.069197714,0.029467288,1.10955654e-32,-0.06164449,-0.005133451,0.0076204618,0.10476483,-0.025472838,-0.0411142,-0.017989391,-0.072179906,-0.10919587,-0.07327583,-0.06912297,0.094365485,0.008734146,0.0028621426,0.069686264,0.0018164872,-0.015525803,-0.02824774,0.09627024,0.0589859,-0.013336992,-0.03161664,0.0015495723,0.027841257,0.05657898,0.024319215,0.075984195,-0.016683903,-0.03855184,0.05548924,-0.056292575,0.06113552,-0.017822968,0.049871303,-0.079917714,0.02894131,0.026804473,0.024451524,-0.06307221,-0.0023312587,0.022749674,0.002472719,-0.07037496,0.023410765,-0.03725581,-0.03915225,0.08350023,0.028080894,0.0804455,-0.015821666,-0.044930156,-0.061899833,-0.093647294,-0.09544748,0.0036526888,0.0842074,-0.015777655,-0.0006702886,-0.005582721,-0.045517247,0.06971394,-0.09040047,0.021172108,0.0017207599,-0.038942385,-0.04540869,0.06458059,0.0015214336,0.12305322,-0.026105724,-0.13781944,-0.07111009,-0.010119659,-0.04467446,0.06392241,0.019085756,-0.03313679,0.062184665,0.003392832,0.073700644,-0.08035493,-0.022311771,0.023979047,0.04216773,0.09745904,0.043781985,0.02370902,0.046209805,-0.02118546,0.15271723,-0.011598705,0.075347595,-0.010130936,0.02116975,0.06146902,-1.2810095e-32,-0.014189647,0.044550348,0.06388168,0.04372773,0.015086431,0.031466763,0.033807393,-0.025734186,0.013347906,-0.01492898,-0.10845267,-0.08629599,0.049020275,-0.05164907,-0.065229125,0.054288667,0.0036320614,0.00080569007,0.00015639853,-0.0492792,0.040267892,0.038797434,0.067575626,-0.047524698,-0.021343125,-0.082613654,-0.079991534,0.04169396,-0.14150538,0.002015971,0.0547936,-0.09654253,-0.018108238,0.040773552,0.0031484975,0.03660725,-0.00013145975,0.09283404,-0.009336239,0.0713205,0.049043745,0.041011352,-0.036868904,0.024692643,-0.045818795,0.03718595,0.046145767,-0.10864163,-0.006774271,-0.06880259,0.053021736,0.02750974,-0.13020465,-0.027239643,0.02620868,0.025674812,-0.006699963,-0.018583588,-0.007357393,-0.007713403,0.04469347,-0.039370183,0.02415207,-0.06056147,0.06587575,-0.021301983,-0.03543031,-0.046903554,0.022884196,0.0048577106,0.022893144,-0.0054228883,-0.0728286,-0.014418885,-0.014232044,-0.05124422,-0.11750672,-0.019965554,0.03835213,-0.018543812,0.021785403,-0.022509715,-0.020876361,-0.014566179,-0.0038268198,-0.049427167,0.045309946,0.068949215,0.04570852,0.024574105,0.07201895,0.08184862,-0.03560575,-0.06698876,-0.012741225,-4.7613685e-08,0.04342055,-0.017915992,-0.10595916,-0.0076891673,0.016744673,-0.02012609,-0.07874182,0.04608865,0.042597305,0.09582821,-0.024469713,0.019493783,-0.008190073,-0.003496264,-0.0063928803,0.016919572,0.05465678,0.061728068,-0.037835076,-0.010126843,0.08568433,0.034998987,-0.016365595,0.043754373,0.001019565,-0.02691615,-0.08257681,0.025471942,0.0018676339,0.055382837,-0.017813997,-0.016920492,-0.03527717,-0.07945601,-0.005945057,-0.061294455,-0.060228422,0.026284814,0.050066877,-0.04848421,0.08979189,-0.019965563,-0.12524542,0.046087373,-0.055488635,-0.042925265,-0.10530834,0.03971987,-0.08506938,0.019083356,-0.074421525,-0.08357774,0.058495533,-0.0035069424,0.105162166,-0.040964972,0.021024028,0.040302396,0.024594918,-0.008639041,-0.009174526,0.07713922,0.045186147,-0.08886952} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:15.978999+00 2026-01-30 02:01:10.718416+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1793 google ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB 1 t 1796 Go Karts Mar Menor unknown El mejor karting de la región sin duda, los karts muy bien mantenidos y la pista igual además, es un circuito donde es difícil tener un accidente, es muy seguro. el mejor karting de la región sin duda, los karts muy bien mantenidos y la pista igual además, es un circuito donde es difícil tener un accidente, es muy seguro. 5 2025-03-06 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"E4.01": "es un circuito donde es difícil tener un accidente, es muy seguro", "O1.02": "El mejor karting de la región sin duda", "O1.03": "los karts muy bien mantenidos y la pista igual"} {-0.014997645,0.00823929,0.032326896,-0.016210482,-0.06604529,0.018474573,0.038188025,0.057323795,0.016361296,0.03913181,0.10256631,0.050036136,-0.017175531,0.037588414,0.021175414,-0.04343345,-0.05363443,0.026959693,-0.019589517,-0.030120922,0.06718937,-0.008470091,-0.057817537,0.076837175,-0.15276554,-0.054562703,0.03191838,0.04550281,-0.016946243,-0.1307321,-0.100646146,0.037895706,0.0019662902,-0.022176394,-0.034742706,-0.028670566,-0.038294025,-0.044425853,-0.052188106,0.011200715,-0.07074105,-0.06620096,-0.027060986,-0.078937344,0.01923926,-0.031458598,-0.042704947,0.019495767,0.007933682,-0.030865462,0.022779973,-0.02464753,0.06294774,-0.032653395,0.00914202,-0.08925153,-0.08711304,0.07194644,0.09436886,0.09108559,0.033176742,0.02174815,-0.013912892,0.051299952,-0.064830124,-0.09052797,0.062122535,-0.022713149,-0.02455484,0.065510705,0.100839026,-0.10176625,-0.049538765,-0.016251434,0.029445402,0.04230451,-0.040997785,-0.011482236,-0.10231603,-0.0078050555,0.002347079,-0.057949245,0.015981501,-0.06394676,0.0736474,-0.008533896,-0.011187485,0.033379097,0.05859239,0.0052071237,-0.059345774,0.07607082,-0.044527333,-0.031240769,0.048331704,-0.012041875,0.046917863,-0.039034434,0.0062806867,0.01091141,0.09187058,-0.0071515953,0.027630301,0.02962085,-0.036007036,0.008785617,-0.0018131399,-0.06037513,0.02519898,0.016723664,0.017365757,0.01766832,-0.024791319,-0.044166554,-0.058438838,-0.02584065,-0.05022768,0.011087455,-0.010570903,-0.032644458,-0.044666752,-0.06545495,-0.053829417,-0.0043689944,0.039577976,-0.058793176,0.10021551,9.1780975e-33,-0.060214587,-0.03529048,-0.035662904,0.016605861,0.02816108,-0.07857059,-0.07095708,-0.06601781,-0.048862062,-0.030619869,0.0042812605,0.10266772,-0.006107872,0.013600879,0.092213266,0.036978275,-0.0030404436,-0.06992301,0.024223123,0.0042678686,0.009164559,-0.03320497,-0.02797156,0.08108324,-0.02281188,0.09806987,0.023422278,-0.057233017,-0.09834139,0.03947249,-0.04752633,0.0034114663,-0.003598569,0.03461524,-0.060082514,0.03345751,0.02666965,0.036099926,-0.040339958,0.022965742,-0.003084937,-0.05014058,-0.039508086,0.025059389,-0.043060027,0.0042263716,0.008843187,0.020113204,0.04056164,0.03318021,-0.14301974,-0.03932758,0.0129504725,-0.057377152,0.007901398,0.0801404,-0.03747638,-0.008733617,0.009458374,0.03715918,0.043039557,0.042331647,-0.016982103,-0.05199408,-0.05409627,-0.06529607,0.028500866,-0.05219239,0.077364706,-0.0011505842,-0.09224542,0.010049194,0.011972652,-0.0060125343,0.079943515,0.023379914,-0.06520587,0.06346973,-0.029617742,0.04674107,-0.0741484,-0.08937459,0.00992822,0.037890777,0.0993825,0.056113873,0.046070635,0.045345128,-0.0025126734,0.081640966,-0.08078687,0.07341374,0.0654069,0.038209658,0.07951559,-1.1843284e-32,-0.025808178,0.017321555,0.08020796,0.106000625,-0.02643316,0.048552345,0.066249825,-0.00676696,-0.015860092,-0.018493185,-0.069405645,-0.052974224,0.029828064,-0.014434269,0.0111474395,0.043540422,-0.023071762,-0.017113913,-0.056090456,0.035589658,-0.047788195,0.03851046,0.035736408,-0.007730579,-0.03786126,-0.0065682805,-0.028639443,-0.038233742,-0.1172646,0.063927636,0.031009227,-0.048544843,0.0187057,0.07084036,-0.101607375,0.0145683335,0.042995993,0.08605995,-0.06564336,0.032146998,0.031194242,0.08611659,0.029200964,0.034783963,-0.028730182,-0.012306154,0.035879694,-0.08226879,-0.050901856,-0.0026546866,0.053327765,0.0030389798,-0.04005794,-0.024006724,0.039626557,-0.0061697704,0.02541525,-0.03361041,-0.15264286,-0.019556453,0.026398558,0.026774442,-0.013777741,-0.041927442,0.06358528,-0.015263553,-0.035851583,-0.022589374,0.066292375,-0.023903368,0.035470814,0.06415298,-0.057996362,-0.039771844,0.0047787037,-0.046831097,-0.117027506,0.056351837,-0.030467851,-0.016793132,0.038777687,-0.04939437,-0.047214177,-0.0025124874,-0.01002694,0.008805918,-0.037412867,0.0045575807,0.09135721,-0.029403085,0.011687305,0.12419936,-0.060287952,0.005237545,-0.07835877,-4.7802644e-08,-0.011172732,0.042627465,-0.09858345,-0.011395143,0.034229558,-0.094795085,0.017770827,0.060404256,-0.07224641,0.07170431,-0.004950822,-0.0042694355,0.016723549,0.03334823,-0.013053882,0.06246691,0.06537181,0.1917912,0.018855581,0.026377419,0.02983548,-0.027194418,0.0037488476,0.037809312,0.006350176,-9.000515e-05,-0.021291135,-0.015500957,0.022948788,-0.062077723,-0.05071056,-0.04119244,-0.06539055,0.009256529,-0.02165613,0.0022081735,-0.020656178,0.022546556,0.00864366,-0.0030509164,0.027105816,-0.03183602,-0.026533827,0.025233664,-0.04707632,-0.06006401,-0.018045697,-0.033062268,0.013621298,0.074066035,-0.082849555,-0.037409343,0.002929441,0.055407234,0.074971795,-0.01146321,0.04410153,-0.054004245,-0.044376083,-0.022318434,-0.007866597,0.109545074,0.033329662,-0.099450745} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:43.220548+00 2026-01-30 02:01:10.728753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1537 google ChdDSUhNMG9nS0VJQ0FnSUNKNUtMZXdnRRAB 1 t 1540 Go Karts Mar Menor unknown Brilliant evenings fun . For all ages . brilliant evenings fun . for all ages . 5 2024-01-31 01:52:39.833374+00 en v5.1 A3.01 {} V+ I3 CR-N {} {"A3.01": "Brilliant evenings fun . For all ages ."} {0.029549774,0.044440504,0.022428548,-0.023581633,-0.065207735,-0.021858951,0.03256062,-0.04377321,-0.012273372,0.015467346,-0.036460448,0.04761617,-0.026613086,0.044361718,0.03032514,0.011490211,0.05061706,-0.07220354,0.12698281,-0.04097204,-0.06486325,0.0063513117,0.060654566,0.0013268132,0.009916541,0.060340386,-0.017966546,-0.01893465,-0.04110621,-0.025690353,-0.010682311,0.104275405,0.01724919,-0.00041942074,0.027355226,0.027521795,0.06059265,-0.09660125,-0.0026579571,0.06171906,0.03218117,-0.049481288,0.0020293836,-0.03294571,-0.026627619,0.023090037,0.04176757,-0.06320939,0.075511865,0.08056971,0.1200587,-0.0027093904,-0.03133762,0.0014979857,-0.0008130857,0.0075085685,-0.105929,-0.092781596,0.05525367,-0.002744898,-0.03316147,0.111814715,-0.012552003,0.066049136,-0.052070606,-0.1132956,-0.08202479,0.04501727,0.032367777,0.032280847,-0.08908789,0.029968387,0.059795182,0.025575088,0.017062018,-0.042142272,-0.004132652,-0.07304812,0.01281705,0.036437474,0.011041386,-0.03605003,0.0057976856,-0.027822386,-0.01755848,-0.08565565,0.04485091,0.014168433,-0.027737543,-0.029610721,-0.02162282,-0.0081259515,-0.04756891,0.03702489,0.011819192,-0.0390563,0.0102770245,-0.08049911,-0.07885198,0.08326672,-0.024635252,0.029080378,0.031255867,-0.0016082894,-0.07374638,0.046232443,-0.001075563,0.05242716,0.03809775,-0.060918264,-0.010736787,0.09039276,0.03440231,-0.016049454,0.048518386,0.029640144,-0.010900214,0.03345838,-0.0124623375,0.01833501,0.06882248,0.10813629,-0.009367045,-0.0029687572,0.025497528,-0.03146098,0.038495142,-5.0066655e-33,-0.0040100003,0.009159526,-0.024092786,0.08789622,0.06918069,0.029527282,0.01652246,-0.04440993,-0.08507743,0.03511069,0.013695718,-0.013599477,-0.014390325,-0.08535265,0.06039009,0.034143608,0.024369918,0.069087096,0.06281346,-0.05452656,-0.03817337,-0.054711692,-0.011831746,0.05717215,-0.0067086513,-0.065510765,0.06540913,-0.09737078,0.1669755,0.024475638,-0.030076614,-0.007062917,-0.12312042,0.049899668,0.010987716,0.007908223,-0.012452726,-0.07103177,-0.01002721,0.07287506,0.028708324,0.0118167475,-0.027580433,0.00904513,-0.004082101,0.06548256,-0.00079702336,0.008082164,-0.014010257,0.029113725,-0.09852634,-0.006674205,0.03910194,-0.01729644,-0.016603114,0.036623213,-0.03438219,-0.0175327,0.03876044,-0.013628851,0.09978514,0.002471788,-0.0753296,-0.12900132,-0.06522903,0.060794756,0.059785813,0.030671356,0.020189617,0.0024112354,-0.0043361117,0.04389555,0.067147344,-0.07064643,0.014446735,-0.010105317,0.012817407,-0.093711466,0.026977027,0.012945397,0.07688768,0.029830774,-0.017278641,-0.055504292,0.07590698,-0.06717034,0.03619206,-0.17418593,-0.029204462,0.035971012,-0.10239942,-0.11674796,0.07854556,0.007939036,-0.03865441,4.8688256e-33,0.07052858,-0.090346135,-0.07233994,0.031462576,-0.0006309261,-0.049709134,-0.044450764,-0.07481785,0.033284776,0.08132656,-0.039973747,0.055260144,-0.03992125,0.037228208,-0.022008175,-0.13281645,0.04974375,0.06599287,-0.033595525,0.055720825,0.023169179,0.07849311,-0.023421634,-0.002747957,0.03787576,0.064243436,-0.017193645,0.010046682,-0.07795079,0.075931504,-0.011527282,0.04777194,0.024713658,-0.013517012,-0.019585466,0.059740473,-0.0053164526,-0.039491154,-0.03279337,-0.029673334,0.008406617,-0.034962352,0.0063580032,0.022505695,-0.0020715832,0.0399685,-0.04802015,0.06449962,-0.06636239,0.01241624,0.034157928,0.0070139435,-0.032622535,-0.066354275,0.002886568,-0.05826083,0.04119443,-0.056692995,0.008017036,0.011989861,-0.061156932,-0.0068378258,-0.05207886,0.038467962,0.037075344,-0.024061175,-0.06405516,-0.056844562,-0.054698072,0.031441484,-0.07097912,-0.029617498,-0.087808035,-0.0025557177,0.029708091,-0.02041099,0.018230028,0.01585303,-0.012984763,0.019156761,0.004158175,-0.009034742,-0.008308299,0.043731138,-0.08015378,-0.059964478,0.029154507,0.035457052,-0.031471163,0.086301476,0.06813851,-0.00090046134,-0.022877108,0.043736644,0.06445709,-1.8017028e-08,0.013737543,0.017454693,-0.122146145,-0.012841085,-0.045286234,-0.009210836,0.042539027,-0.032626532,0.05683426,0.0050898376,0.027200818,-0.020559004,0.14543599,0.009759879,0.083223335,0.016561937,0.049233615,0.024947165,-0.0522246,0.04377824,0.0948582,0.04821834,-0.015271962,0.011848048,-0.04252675,0.037702724,0.0143728405,0.024026088,-0.0034577693,0.017611297,-0.010819651,0.049977593,-0.036035806,0.033298224,-0.006734815,-0.074242,0.03586144,0.01626844,-0.052279327,0.036509626,-0.0709006,-0.039208584,-0.05722619,-0.10056134,-0.01711051,0.068151556,-0.014233521,0.019026035,-0.023970842,0.048469853,-0.04673253,0.028112892,0.06594096,0.026269343,0.098427504,-0.030382395,-0.04852404,-0.01713522,-0.0046853013,0.03145172,0.12746203,0.06596864,-0.073127806,0.008735268} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.591397+00 2026-01-30 02:01:09.701518+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1705 google Ci9DQUlRQUNvZENodHljRjlvT21GU1QwSmhNbkZ6TkRVM1lVa3lTbGRWYlhOcFRtYxAB 1 t 1708 Go Karts Mar Menor unknown Super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session 5 2025-10-02 00:52:39.833374+00 fr v5.1 O1.02 {E3.01} V+ I2 CR-N {} {"O1.02": "Super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session"} {-0.121277355,0.06913435,-0.06059665,-0.015437285,-0.071498305,0.03938405,-0.04015929,0.119467065,-0.05057747,0.021836255,0.0059178537,-0.023490325,0.042659286,-0.04937373,-0.07153877,-0.008392422,-0.026868677,-0.067853004,0.024991794,-0.017067462,0.054339852,-0.068887755,-0.037487667,0.038007323,-0.021744708,0.00675072,0.016097927,0.019993236,0.033160906,-0.05279728,-0.072587945,0.07642918,-0.057122,-0.008657782,0.002381947,0.05970441,-5.662018e-05,-0.094070494,0.053925086,-0.039660268,-0.054519277,-0.0053074947,-0.03205937,0.026662983,0.046465863,0.00990962,-0.03079609,0.01065608,-0.07387493,-0.065723844,0.021099718,-0.008390437,0.09982475,0.0073130643,-0.019424172,-0.0074124336,-0.063111864,0.018049205,0.120031655,0.03629806,0.012720543,-0.028656105,-0.045512006,0.055753607,-0.045920227,-0.021919126,-0.018626941,-0.009109194,-0.018895729,0.07234334,0.07095884,-0.058671527,0.002409566,0.0018642766,0.13207147,0.012463393,-0.044102103,-0.028156161,-0.061088912,-0.039601978,0.074695595,-0.059352178,-0.031381685,-0.10502811,0.008491471,-0.0021813675,0.029507337,-0.04958392,-0.025066061,-0.09110628,0.0032356859,-0.039723635,-0.0632794,-0.042204227,-0.0063248035,-0.005771496,0.02499495,-0.01814261,0.063129164,0.058165465,0.036039688,-0.019229582,-0.005704181,0.026642932,-0.032046333,0.0012904609,0.002042885,0.03186191,-0.07172519,-0.045883216,-0.016127983,0.010845686,-0.057926957,-0.07302106,0.05550169,-0.032905266,0.022160675,-0.011322431,-0.041413493,-0.020452768,0.0024365198,0.02025602,-0.04986561,0.009416851,0.076299176,0.015966052,0.053841267,3.206644e-33,-0.016197387,0.017371241,-0.033166084,-0.07512821,0.01433909,-0.062284365,-0.05913093,0.0074412627,-0.019654207,0.030772075,0.002926673,0.060678653,-0.03124692,-0.049605347,0.044158664,-0.048275292,-0.026327698,-0.07325822,0.108463116,-0.007183087,0.032002065,-0.035775907,0.052825484,0.12178661,0.015766136,0.042323504,0.108596265,-0.03921059,-0.1058885,0.041846063,0.03306748,0.07218888,-0.023504077,0.02569949,-0.10850757,-0.017508509,-0.0011380538,0.0038179976,0.011081979,0.00900357,-0.007508311,-0.0043512504,-0.06808628,-0.008247652,-0.042068273,-0.043876998,0.051908813,0.045670327,0.12633091,0.04547045,-0.122819565,0.017009122,-0.088901974,0.045648724,0.03757992,0.004762899,-0.0043744445,-0.01171973,-0.031847846,0.02001965,0.030265441,-0.022702957,-0.023056207,0.019190758,-0.086856395,-0.008723002,0.004578465,-0.052453376,0.01814102,-0.02349022,-0.07559666,-0.016859848,0.07572306,-0.06325239,0.09930052,0.07555058,-0.060111526,0.092012234,-0.09271892,0.01640584,-0.06512274,-0.057530254,0.051620755,0.056758557,0.030871354,0.0032809929,0.014897409,0.011832146,0.04217426,0.01967842,-0.046839297,-0.022137139,0.103009135,0.03567288,0.02365488,-4.6294692e-33,0.056520082,0.046388097,0.10232006,0.0891923,0.017644674,0.03627255,-0.010961013,-0.091495514,-0.04904317,0.058906414,0.03488832,0.018125268,0.064094305,-0.03972304,-0.014471375,-0.004164756,0.029593917,-0.0564095,0.016623346,-0.03362135,0.081970885,0.025003355,-0.017672867,-0.046633855,0.0163352,-0.004583059,-0.015094459,0.0465047,-0.029463327,0.030858587,-0.010149757,0.00804607,0.027369883,0.09291056,-0.021290632,-0.013392212,0.14303572,0.15419294,-0.047714084,0.051012665,0.025983324,0.11448501,-0.021517245,0.022291679,0.0007353346,-0.008378992,0.046469845,-0.057343937,0.008827687,-0.041491587,0.04695574,0.006085214,0.012503677,-0.040072475,0.0072642923,0.015720343,-0.0662324,-0.03488534,-0.068641074,-0.046652816,0.07093966,-0.03443942,0.022903368,0.005917842,0.07896492,-0.0833554,-0.053162597,0.050945073,0.048750747,0.014413166,0.0020883796,-0.006400264,0.04021734,0.044678688,-0.004967254,0.025327565,0.005710286,-0.033981465,0.015043408,0.06940302,-0.10877718,0.025667422,-0.036594637,0.014780081,-0.021066813,0.00157345,-0.017576616,-0.032571554,0.07678786,-0.06958776,-0.04791966,0.08726779,0.048267204,-0.009725179,0.05373589,-2.8017856e-08,0.054195825,0.02637328,-0.1435868,0.064109646,0.06941026,-0.1467338,-0.072699994,-0.05613472,-0.06418432,0.0011005453,-0.050824855,-0.009774182,-0.008323216,-0.037619058,0.005813292,0.0017361115,-0.045188133,0.09223442,0.019309822,0.045766797,0.028884545,-0.05805926,0.0053246156,-0.040211476,-0.022241283,0.015749477,-0.016775155,-0.024908366,-0.022232462,0.020283809,-0.10875023,0.06353024,-0.07477801,-0.04621917,0.024288427,-0.010434006,-0.043450527,0.076817825,-0.018719885,0.06885057,0.07001768,-0.05457963,-0.06985803,0.029544774,0.0014450563,0.0039848117,-0.045561407,-0.021546632,0.066654764,0.06935814,-0.09555397,0.00876139,0.014967525,0.019488413,0.06423601,0.022450868,0.040583935,-0.032420497,-0.058257047,-0.039697513,0.00085787196,0.056345463,-0.010020698,-0.059758} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:21.423264+00 2026-01-30 02:01:10.393235+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1305 google Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB 1 t 1308 Go Karts Mar Menor unknown I was there with my family on September 6. The kart track is in great condition. My son and nephew drove in the 40 km/h class and had a lot of fun. My daughter and I drove in the mixed class at 60 km/h and above. That was also a lot of fun and a great memory for everyone. i was there with my family on september 6. the kart track is in great condition. my son and nephew drove in the 40 km/h class and had a lot of fun. my daughter and i drove in the mixed class at 60 km/h and above. that was also a lot of fun and a great memory for everyone. 5 2025-11-01 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.03": "The kart track is in great condition.", "O1.05": "My son and nephew drove in the 40 km/h class and had a lot of fun. My daughter and I drove in the mi"} {0.0706792,0.032219414,0.05110168,0.056269728,-0.05948605,0.06474269,-0.12564835,0.006640537,-0.1228595,0.00694236,-0.0029195563,0.056866407,0.019042624,-0.052553788,0.025083307,-0.024258489,0.08017556,-0.13951525,-0.037327904,-0.0775008,-0.045606166,-0.045134768,-0.014227962,0.07273007,-0.022564463,0.06910127,-0.010995752,0.053941753,0.020767394,0.0030549723,-0.09590273,0.026328767,0.0059950836,0.005506274,-0.04153647,0.036754504,0.025467085,-0.086737454,-0.007914347,0.040155098,-0.024766397,0.012498232,-0.019919612,0.06639577,0.02157411,0.007723884,0.022516876,-0.063243315,0.038488027,0.039283134,0.09076685,0.005761335,0.07157067,-0.06488757,-0.038790938,0.018219993,-0.094168924,-0.0044739796,0.050335467,0.013122667,-0.04653873,-0.02967431,0.006686252,-0.0042042388,-0.05239599,-0.092748895,-0.035017904,-0.0013091799,0.101624385,-0.017387304,0.03272787,0.03215833,0.046380367,-0.04917483,0.01635496,0.058058407,0.001237777,-0.032546904,-0.058450587,-0.0284143,0.06496355,-0.04324414,0.053424347,-0.033440396,0.013620438,-0.07700123,0.049840257,0.08847482,-0.024359893,-0.056130532,0.029876629,0.08341444,-0.050360244,-0.033849742,0.004779885,0.005537495,-0.053011015,0.032800943,0.057634022,-0.008690505,0.028484616,0.08234169,0.018986626,0.007317571,-0.029098697,-0.0046196277,-0.020705042,0.04148396,-0.016719501,-0.03400096,0.024470719,-0.0062476434,0.04219176,-0.028847525,-0.03393795,0.008745871,0.043044075,0.027151246,-0.016040897,0.05403257,0.0044380333,-0.0015550035,0.075455755,0.03667024,-0.031728875,0.010105776,0.043589573,-2.628541e-33,-0.046676107,-0.045974217,-0.010729515,-0.011041782,0.011167513,-0.103943646,-0.078265145,-0.114477664,-0.055130903,0.019066328,0.062028915,-0.01630742,0.033463925,-0.09260352,0.057866786,-0.011385122,-0.13122033,-0.0034210274,-0.09442734,0.08466376,-0.03983593,-0.045886084,-0.02820528,0.0048791305,0.010474106,0.063594416,0.08280845,0.016241098,0.08074023,-0.003579024,-0.05907949,-0.014028787,-0.06181423,-0.0073775705,-0.015248272,0.052981734,-0.003759863,-0.008134517,-0.021469254,-0.010422489,0.07322993,-0.068406016,0.028050428,-0.013002466,0.011684019,0.029373294,0.060483243,0.007128313,0.0140347695,-0.04956745,-0.15531237,-0.036220584,-0.041852366,-0.036530957,0.022167636,0.07305798,0.07612395,-0.04055263,-0.017644923,0.013721281,0.03188776,0.011314046,0.031652875,-0.06715397,-0.059083406,-0.048125293,-0.03584453,-0.018681388,0.0034736786,-0.020093378,0.095771834,-0.008637285,-0.052270655,-0.09928163,0.13441336,0.028614016,-0.025640815,0.005487017,-0.04906408,0.05700321,0.036017086,0.009110208,0.032735072,0.0058868476,0.037206717,-0.02184781,-0.050309453,-0.052480564,-0.04659537,-0.005627571,-0.020315932,0.019472338,0.019633403,0.06769852,0.033910584,4.4434068e-34,0.07522277,0.12790982,0.070579015,0.0008497674,-0.025054138,-0.0040312503,0.02549455,0.06269567,0.007666449,0.046439555,-0.020607512,0.037165802,0.070908904,-0.027020818,-0.055505052,0.018497871,0.06805113,0.063381895,0.05732259,-0.06898596,-0.020162998,0.01118915,-0.017279413,-0.018810453,-0.003063466,0.032978334,0.011515222,-0.012475471,-0.042865846,-0.060731884,-0.026764616,-0.026500223,0.036721736,-0.034404844,-0.0079010455,0.07809128,0.040859964,0.039683342,-0.1146864,-0.01204369,0.016985126,0.012710231,-0.004018797,0.046086695,0.034962915,0.015251406,0.069998704,0.03723784,0.05620977,-0.013938642,0.0062623816,0.007848772,-0.050389282,0.002399451,0.05780378,0.025262183,0.06242919,-0.057696115,-0.03489988,-0.0459697,-0.0658021,0.02804018,-0.052240398,0.026611302,-0.01235505,-0.060695402,0.017848527,-0.03146369,-0.06340926,0.031620335,-0.105710804,0.012846155,-0.08397942,0.023533592,-0.014739077,-0.018790944,0.039883006,0.10751073,0.025184859,0.08732163,-0.013347392,0.049755562,-0.062954076,0.027635522,0.02097508,0.028941773,-0.011008133,-0.056567512,0.0054925703,0.026248584,0.10059197,0.09537785,-0.07521412,-0.040698167,-0.08064487,-3.096358e-08,0.0566742,0.1403788,-0.06114022,-0.03455793,0.048775364,-0.046935882,0.06494302,0.02909999,-0.030760167,0.12802029,-0.03056773,0.0374336,-0.0054632523,-0.027837174,0.032069884,-0.014000394,-0.011310565,0.06097866,0.014408539,0.008557,0.04185297,-0.0067141172,0.042677574,0.049772836,-0.015209498,-0.020139381,0.049604464,0.02508351,0.031316254,-0.06101527,-0.060604006,0.050788872,-0.08874587,-0.033148814,0.0061832955,-0.088323675,-0.06994005,0.093727484,0.022085838,0.04497581,-0.021649472,-0.045256525,-0.064792834,-0.00354841,0.014758933,0.060564008,-0.09002337,-0.062409572,-0.022383688,0.0012322585,-0.100043364,-0.0047134873,-0.10717574,0.078027464,0.051886395,-0.0062765297,-0.02213156,-0.049833074,-0.05694912,-0.017375495,-0.02277568,-0.048634283,-0.12959015,0.0761903} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:53.483539+00 2026-01-30 02:01:08.910417+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1835 google ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE 1 t 1838 Go Karts Mar Menor unknown El lugar es increíble. Incluso siendo principiante, te lo pasas genial. El personal muy atento en todo momento. Ojalá podamos repetir pronto.\nMuchas gracias! 😊 el lugar es increíble. incluso siendo principiante, te lo pasas genial. el personal muy atento en todo momento. ojalá podamos repetir pronto. muchas gracias! 😊 5 2026-01-30 01:52:39.833374+00 es v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "El lugar es increíble.", "O1.05": "Incluso siendo principiante, te lo pasas genial.", "P3.01": "El personal muy atento en todo momento.", "R4.03": "Ojalá podamos repetir pronto."} {-0.09133635,0.011813581,0.024650661,0.022793403,0.03260641,-0.04937959,0.13046272,0.060835633,0.060296837,-0.002067809,0.10957891,-0.025599191,0.013441457,-0.057622716,0.053102497,0.04835763,-0.06730707,-0.014816731,-0.078074396,0.021844134,0.099684626,-0.03996194,-0.067038156,0.07592011,-0.050559327,-0.04251512,0.028662773,0.031946495,-0.025720222,-0.014134161,0.037410706,-0.007946424,0.08792437,-0.029892655,-0.024372656,0.017529242,-0.0067830323,-0.032855943,0.01951356,0.04503019,-0.10926185,-0.013195161,-0.051668514,-0.07615042,0.0130838165,-0.08095343,0.029795472,0.032356676,-0.048577078,-0.02598579,-0.023757452,0.01732642,0.008883796,0.0047830837,-0.0036858774,-0.030210873,-0.00697514,-0.0408717,0.061899867,0.020161182,0.020407444,0.07563139,0.007404961,0.017493155,0.023482554,0.033942454,0.112832606,-0.04275011,-0.01360603,0.031565633,-0.0031731843,0.006308964,-0.0061456547,0.08594043,0.0212255,0.045445457,0.022962334,-0.0060502933,-0.024042958,0.039889336,-0.08933638,-0.015385407,-0.0043489276,-0.052378297,-0.03553663,-0.041575693,0.032450303,0.057446577,0.022382224,-0.031270456,-0.07492715,0.02517018,-0.039738595,0.04086125,-0.007329288,0.04592483,-0.017848143,-0.108031794,-0.10413894,0.0014679552,0.06782927,0.08035205,0.04291168,0.07058398,-0.05539533,0.0032970142,0.01807307,-0.05028593,-0.07395907,0.05978607,-0.0011995526,-0.069733135,0.012881734,0.023121849,-0.04543452,-0.0039472138,-0.02269993,0.013006419,0.0522177,0.007109352,0.0798314,0.03188657,-0.08244471,-0.009556977,-0.0146559,-0.0813049,0.07475166,1.08064415e-32,-0.03881593,-0.045327824,-0.03632672,0.078828044,-0.008874874,0.017080065,-0.056827012,0.008406661,-0.06486879,-0.09840011,0.01054734,0.04869139,0.011420121,0.041838363,0.008044156,0.099793665,0.019362144,-0.036121882,0.06218046,0.072478704,-0.023744917,-0.0043017957,-0.0084271245,-0.04266697,0.016096296,0.054904237,0.031582307,-0.06550858,-0.035688948,0.054618172,-0.007190017,-0.036620773,0.047739908,0.023159843,0.028766237,0.00034305043,0.023007343,-0.015589356,-0.026916068,-0.030088546,-0.013081368,0.05651005,-0.008197934,0.045956876,-0.021697268,0.045854572,0.06759513,-0.0017195565,-0.0062952773,-0.037981763,-0.03660675,-0.014605181,-0.024738753,-0.043143958,-0.024832936,-0.023118539,-0.06736911,0.013783935,0.00094914093,-0.064137,0.044741374,0.07767745,0.04522112,0.009918219,-0.053976905,-0.061529253,-0.030414458,0.05847275,0.09506473,0.07937283,-0.051632896,-0.038253713,-0.05829852,0.039196454,-0.06431174,-0.02631347,0.074445195,-0.018187502,-0.01618987,0.0737034,-0.052638464,0.01663161,0.04419388,-0.039627716,0.07155868,0.0565345,0.013534829,0.0077923466,0.004133939,0.0887875,0.041943345,0.04544907,-0.0039797956,-0.041244492,-0.048550095,-1.1219262e-32,-0.0061390568,-0.021764684,0.016611418,0.03915092,-0.051719856,0.0015941437,-0.033374164,-0.0583375,-0.00929691,-0.045630064,-0.17554891,-0.10747358,0.10988938,-0.041408207,-0.015995303,0.05608582,-0.0013945757,-0.047239702,-0.07673634,-0.022263058,0.032122944,0.045120288,0.051254295,-0.03629172,-0.044556633,-0.08194192,-0.044197425,0.058132067,-0.09274175,-0.10061979,0.022277135,0.008564815,-0.009550006,-0.1036169,-0.056172088,0.048334327,0.032756113,0.07136222,0.020394737,0.004407035,-0.056159712,0.061443985,-0.028133033,-0.028728625,-0.021946847,0.050272197,0.047405597,-0.16031769,0.0023116048,-0.026295582,-0.011921912,-0.031079354,-0.015410576,-0.02231178,0.07632285,-0.03941777,0.065675266,-0.010785388,-0.067985624,-0.013200754,0.010251664,0.03628703,-0.03247811,0.014169846,0.11151165,0.03629848,-0.018830618,0.006554302,0.06323059,0.0075838882,0.14963566,-0.046201337,-0.11554548,-0.05894853,-0.031667512,0.043962065,-0.1454357,0.0059568645,-0.005373295,0.014281545,0.052751154,-0.05859052,0.026539369,-0.067377746,-0.05331606,-0.065908,-0.0029422322,0.09011308,-0.053290322,-0.0073939855,0.048575737,-0.007955546,-0.12465913,-0.0831292,0.011270894,-4.5114557e-08,0.017486498,-0.02032831,-0.019908687,-0.0040227757,0.021518964,-0.06468787,0.019646889,-0.014987802,0.011404177,0.027954828,-0.05163099,-0.08940624,0.0045204316,0.06459539,0.052185826,0.06520064,0.098542385,0.08441405,-0.04361128,0.0066797286,0.06966363,-0.0028615156,-0.08303442,0.034384836,0.008337479,0.049852073,-0.031163076,-0.0024041205,-0.025899267,-0.008643566,-0.020849137,-0.04360423,-0.036562197,-0.033392742,-0.015002268,-0.025219921,0.016103797,-0.0030557157,-0.007029038,-0.0068197018,0.11924357,0.012699754,-0.011925678,0.018329725,-0.020971008,-0.012667402,0.017403925,0.0119580235,-0.07886192,0.017919922,-0.012680811,-0.06558998,0.066458456,0.026086295,0.010441866,-0.026883222,0.0719336,0.041556347,0.03300422,0.013262804,0.13501821,0.096364856,6.954101e-05,-0.0659779} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:05.042199+00 2026-01-30 02:01:10.895617+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1795 google Ci9DQUlRQUNvZENodHljRjlvT2pneGRGSnpibk5xUXpSWFNGSk9lVEpDWkhneWMwRRAB 1 t 1798 Go Karts Mar Menor unknown Super circuit ! Trop bien pour les grands et les petits !!! super circuit ! trop bien pour les grands et les petits !!! 5 2025-08-03 00:52:39.833374+00 fr v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Super circuit ! Trop bien pour les grands et les petits !!!"} {-0.06178365,0.03553078,0.0008513604,-0.05577536,-0.019206055,0.040958915,0.028035613,0.12260804,0.0012915267,0.041188136,-0.033442833,0.034970514,0.049364578,-0.05784751,-0.085593805,-0.028332744,-0.033049773,0.0036115914,0.038138717,0.029841581,0.09194254,-0.06619602,-0.0257396,0.031201452,-0.042478178,0.012919068,-0.05672474,0.024671363,0.024328094,-0.07922317,-0.014266049,0.067683645,-0.04183729,0.017441582,-0.039797857,-0.0051708682,0.04575303,-0.093165174,0.010195394,-0.036804367,-0.057546157,-0.056290638,-0.02332252,-0.047228668,0.016809797,0.048615847,-0.014522428,0.002594475,-0.07129942,-0.060823537,0.071842305,0.02999088,0.12894681,0.0249915,0.003936273,0.04985571,-0.009418077,-0.10610467,0.0531018,0.025016017,-0.016820822,0.00041963946,-0.05166051,-0.010839058,-0.08520142,-0.012881165,0.007436934,-0.042136528,-0.040544923,0.077537544,0.09537324,-0.03244733,-0.026126986,-0.041172687,0.094979234,0.04958572,-0.044606723,-0.04160988,-0.056936465,-0.078306936,0.07049432,-0.04204202,0.012620932,-0.025260678,0.05637627,-0.06400919,0.025494441,0.03843294,0.04841139,-0.083368964,-0.036086373,-0.005448464,-0.022123449,0.040766552,-0.056692068,-0.022387745,-0.0020617947,-0.08197533,-0.012059655,0.05924312,-0.014175315,0.003734238,0.061589647,-0.00786625,-0.025235698,0.02522913,0.008406527,0.08332165,0.009664553,-0.078599505,0.049205396,-0.017700892,-0.00013870093,0.0023746584,-0.01278439,-0.020147678,0.004134385,0.006305527,-0.0696015,-0.035590187,0.04729983,0.0649554,-0.080994986,0.0141572775,0.057691947,0.07735894,0.019429153,-1.0367571e-33,-0.062948175,0.09826,-0.014323447,-0.04016815,-0.029134415,0.026105741,-0.055414304,0.026951997,-0.015094727,0.048433244,-0.07298197,0.027532704,-0.011631224,0.018442005,0.05135426,-0.020998597,-0.029729992,-0.11548263,0.16154572,-0.045291904,-0.023314081,0.008024723,0.02151012,0.097437106,0.025707444,0.005790199,0.046264116,-0.0580274,-0.09237898,0.03711978,-0.014580591,0.0037667837,0.017086508,0.05447325,-0.059929587,0.04868542,0.017969863,0.0110422205,0.037266452,0.038195867,0.010115364,-0.033850946,-0.06888816,-0.04258167,-0.051276136,0.07244892,0.03263391,0.0039090933,0.10496891,-0.044499315,-0.049066745,-0.018301787,-0.13933106,0.03243378,0.018429989,0.06609968,-0.08355918,0.0016850217,-0.0017177946,-0.02218674,0.060617518,-0.06196226,-0.058819335,0.023044813,-0.027244247,0.020468213,0.080038235,-0.05844144,0.0009591096,-0.03046547,-0.09237557,0.030690081,0.08522946,-0.070791505,0.09295139,0.061105534,-0.0444181,0.039836254,0.019246997,0.031719603,-0.10748612,-0.0817382,-0.028163834,-0.007890889,0.091556534,0.008394692,-0.020560639,0.009870778,-0.027630659,-0.020312285,-0.09454461,-0.06535532,0.11443854,-0.010780703,0.00899565,-2.2322234e-33,0.0009790018,0.05301102,0.050764978,0.07146761,0.034188244,0.059740487,-0.018831333,-0.034877982,-0.09417581,-0.004436225,0.02148362,-0.0100559285,0.052991986,-0.023341581,-0.031170331,0.0029402745,1.23945765e-05,-0.055296477,-0.014327503,0.0025053762,0.030845568,-0.042866297,-0.007777616,0.025670204,-0.022344444,0.017956927,0.010274343,0.020291818,-0.03574966,0.07636498,0.0049540573,0.084230535,0.014906289,0.03970065,0.022065276,0.04455661,0.031355925,0.07204752,-0.019651072,0.030343467,-0.0894402,0.07518192,0.07493148,0.032478888,0.028660588,0.015339274,0.0008672127,-0.062172305,-0.05403535,-0.019045394,-0.03085627,0.028760683,-0.112713955,-0.042955685,-0.03288667,-0.016140312,-0.0029619983,-0.08163628,-0.067338884,-0.05458133,0.060513437,0.040798035,0.017299544,0.016112462,0.07277733,-0.019631362,-0.04128665,-0.031555258,0.07031648,0.01923105,0.09154667,0.028471228,-0.0024065103,-0.0031489867,-0.0928969,0.0169021,-0.025127731,-0.025112646,0.010134316,0.026250836,-0.054770373,0.05380216,0.008633701,-0.031548362,-0.015471168,-0.024004512,0.024418965,0.040098812,0.06249728,-0.028782187,-0.032779347,0.10586531,0.01391126,-0.059806816,0.06311518,-2.0096806e-08,0.046217162,0.07954215,-0.09112374,0.025152612,0.049278963,-0.15139826,-0.11215111,-0.016208822,-0.058699124,0.018532505,-0.040123343,-0.006083808,-0.04845325,0.01891088,0.023688672,0.059605412,-0.06578833,0.091489755,-0.0035629,-0.0052526314,-0.029755833,-0.019400349,-0.021002952,-0.05186399,-0.0074543394,-0.071032494,-0.006193516,-0.107301965,0.0156789,-0.07531598,-0.01435979,0.07696723,-0.062785745,-0.0048098555,0.039368037,-0.028200028,-0.04491785,0.0393868,0.063018575,-0.032983482,0.07533205,-0.04232604,-0.04296846,-0.025330145,0.01839724,-0.08486288,0.034814317,0.0008854077,0.015773533,0.13583106,-0.047566216,0.012005364,0.033324488,0.042680435,0.08387252,0.044844624,0.010303778,-0.022241121,-0.051706795,-0.02167505,-0.0022743712,0.07789121,0.00664202,-0.057588916} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:56.282096+00 2026-01-30 02:01:10.734902+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1798 google ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB 1 t 1801 Go Karts Mar Menor unknown Es la tercera vez que voy. Pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera vuelta se rompió los frenos, si, del todo. Mala suerte? Quizás. les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera vez que he tenido problemas con ellos. es la tercera vez que voy. pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera vuelta se rompió los frenos, si, del todo. mala suerte? quizás. les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera vez que he tenido problemas con ellos. 3 2020-02-01 01:52:39.833374+00 es v5.1 O1.04 {O1.01} V- I3 CR-N {} {"J4.03": "les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera ", "O1.04": "Pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera v", "R1.02": "Mala suerte? Quizás.", "R4.03": "Es la tercera vez que voy."} {0.06657605,0.031846397,0.037249364,-0.07952561,-0.05782069,0.016878225,0.102393135,0.043725677,0.0023659763,0.07795969,0.061867084,-0.00013394537,-0.010218455,-0.025577221,0.06827658,0.029493848,-0.029810842,-0.007407631,-0.022598797,0.018783743,0.131495,0.029165037,-0.05098312,0.093210995,-0.08029524,-0.037845537,0.00079977245,0.06447871,-0.059398748,-0.11618317,-0.054634023,0.032338735,-0.023790944,0.023260195,0.023314059,-0.045961138,-0.019904483,-0.053430807,-0.081552334,0.013459586,-0.016586283,-0.061165553,-0.038190544,-0.0011705678,-0.02691255,-0.06963091,0.019147659,0.11857872,0.056526456,-0.039722007,-0.052778974,-0.07830527,-0.025443625,0.02762056,-0.068674855,0.0068483464,0.06738039,0.013548138,0.037619635,0.04533343,-0.002724541,0.07951945,-0.044803783,0.02548501,0.031798203,-0.028007012,0.040706124,0.02441125,-0.11332348,0.012591576,0.09411119,-0.05039847,-0.030224463,0.016084045,-0.05236949,0.032894503,0.08459212,-0.060127784,-0.0097652525,-0.038708333,-0.0028284395,-0.05854802,-0.024108006,-0.024144165,0.008871414,-0.04815368,-0.044287577,0.027389094,0.034125816,-0.031594582,0.033950843,0.025597867,-0.030441172,0.0012312073,0.023723638,0.12035066,0.01998619,-0.06746593,0.055718955,0.020067833,0.08732018,-0.0071595577,0.033803787,-0.0004040361,-0.081435464,0.13952954,0.045061212,-0.011000001,-0.0013618493,-0.046110455,-0.0153615195,-0.02620905,0.03245331,0.020038154,-0.09669444,-0.08002527,-0.060542475,-0.040158365,0.01158343,-0.10989207,0.022389391,0.008972525,-0.07149833,0.004440739,0.047033243,-0.051033657,-0.00506842,1.09454746e-32,0.011033747,0.002948809,0.03096806,-0.00458425,0.0036754732,0.010889621,-0.016625144,0.052649584,-0.07615823,0.028686274,-0.058708925,-0.09997645,-0.0039679655,-0.040424317,0.04673773,-0.018706387,0.026626723,-0.06016722,0.021273535,0.024676679,-0.03460119,0.07586421,0.03480114,-0.041345917,-0.0025480816,0.001216879,0.0022389346,-0.07045655,-0.05759236,0.07348912,-0.021899411,0.024987498,-0.0062075136,0.06890162,-0.014874543,-0.007936873,-0.021744909,0.04374009,-0.0571683,-0.023008307,0.007945216,-0.01512015,-0.032374993,0.041103527,0.012190524,-0.054502204,0.042681437,0.06368035,-0.024133746,0.019000974,-0.0057889572,-0.05047248,-0.04732335,-0.046246458,0.05637359,-0.0009981374,-0.054355353,-0.011579097,0.004178751,0.005476008,0.07369831,0.018295214,0.011501896,-0.04265572,-0.03925275,0.011459367,0.000590909,0.022812895,0.09397811,0.069571726,-0.023053763,-0.018718036,0.015402644,-0.008165883,0.07072593,0.025876842,-0.0073539284,0.0032739115,0.02250495,-0.005194879,-0.038476445,-0.009166496,-0.012432679,0.0918885,0.07847152,0.06576004,0.032447115,0.037760887,0.0145860175,0.106100075,0.045047015,-0.010383539,0.049044233,-0.03803394,0.057393022,-1.11211904e-32,-0.01664946,0.04152655,0.016865375,-0.026668787,-0.006474947,-0.108351305,-0.016531497,0.01591567,-0.030589554,-0.07854988,-0.019996865,-0.11760075,0.06529146,-0.084111676,0.03670577,0.102339916,0.017768368,-0.057652295,-0.071281515,-0.011842367,-0.018517425,0.008806142,0.034902535,0.013067392,-0.011038544,-0.08730481,-0.023959532,0.06892699,-0.039102595,0.0320206,0.07020245,-0.059207406,0.050777547,-0.021577768,-0.01982146,0.0667402,-0.00828427,-0.031601008,0.10941197,0.06305428,-0.013338345,0.028515963,0.019365342,0.002897499,0.005085833,0.03375192,0.0007908039,-0.16739063,0.05910885,-0.035556678,0.14963931,-0.082667015,0.0077068936,-0.03349722,0.05302311,-0.0069062333,-0.029441113,-0.018341295,-0.04117887,-0.028469661,0.051932555,-0.025704153,-0.03754508,-0.051342018,0.050262924,-0.06035896,-0.07967924,0.0067288033,-0.018890947,0.06831598,0.024209406,0.030569538,-0.16458516,-0.020440562,-0.056364935,-0.031511836,-0.13167644,-0.00085570326,-0.045722075,0.057614516,0.042118467,0.0008363282,-0.058833044,-0.023724008,0.00930505,-0.046524897,-0.031223254,0.07457147,-0.011370029,0.038014464,0.033786356,0.025430122,0.0016083309,-0.012370015,0.03083921,-4.7897753e-08,0.038827118,0.002635916,-0.034615465,-0.016809216,0.022894405,-0.021926155,0.021241939,-0.010802071,0.0238088,0.093571804,0.062311504,-0.0019448103,0.045990776,-0.009320596,-0.03348933,0.024530318,0.034517057,0.040888146,-0.013615758,-0.12904364,0.11560895,-0.00980041,-0.07815561,0.0092019765,-0.035531912,0.016589992,-0.046609152,-0.08698391,0.015947431,0.0011513608,-0.014742517,0.021372814,-0.04002857,-0.085794054,-0.023003867,-0.03813641,0.004320568,0.022614447,-0.010384716,-0.037294455,0.08911123,0.03625548,-0.08710084,0.026766809,-0.027483042,-0.10418369,0.036642857,0.004765974,-0.044544198,-0.045961447,-0.033068318,-0.03145693,0.023545004,0.06690139,0.045066558,-0.060255118,0.014039306,0.076973066,-0.055991925,-0.007041532,0.10031044,0.097510174,0.049583245,-0.13003393} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:30.087288+00 2026-01-30 02:01:10.746971+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1538 google ChdDSUhNMG9nS0VJQ0FnSUM5LVBDTmp3RRAB 1 t 1541 Go Karts Mar Menor unknown Very good people and very good installations very good people and very good installations 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {E1.03} V+ I2 CR-N {} {"P1.01": "Very good people and very good installations"} {-0.03986487,0.0008380282,0.023654813,-0.0950197,-0.11855669,0.007197205,0.07712288,0.003975246,-0.095549315,0.021733942,0.04661339,0.00079716335,0.0048743607,-0.014422621,-0.03930906,0.023288498,0.02600631,-0.068331994,0.04161295,-0.082779065,-0.10882269,-0.05835963,0.02574267,-0.02554119,-0.05485538,0.014797966,-0.04669114,0.02450075,0.08672542,-0.031812746,0.008827343,0.009472078,0.08194095,0.021293225,-0.06472752,0.13926752,0.07772433,-0.036200117,-0.08244438,-0.012137852,-0.018066574,-0.00087029993,0.03902265,-0.053556833,-0.0326832,-0.044445705,0.04688374,-0.05586702,0.10015204,0.0029507568,-0.017281627,-0.05035433,0.061882067,-0.044894252,-0.03224999,0.014707332,-0.0074076396,-0.00340069,-0.017288137,-0.09270697,0.048866358,0.014067561,-0.11530966,0.03791479,0.095817864,0.0064135147,-0.056689553,0.025103055,0.02321153,-0.095553935,-0.02986806,-0.04980259,0.024802133,0.0012769977,-0.03569718,0.020184355,-0.0042491937,-0.022389848,-0.0047733355,-0.010032669,0.10628373,-0.015342438,-0.0648294,0.02391302,-0.04548041,-0.012202996,0.013268087,-0.06876504,-0.02013297,-0.017367534,0.092536874,0.13341624,0.02464707,-0.02276723,0.037942916,0.033089034,0.020303227,-0.043789186,-0.107200675,0.12196917,-0.007141329,0.028196938,0.019604748,-0.040628307,-0.047299005,0.024216706,-0.018096061,0.076774195,-0.0022507666,-0.044731572,-0.05455551,-0.021192629,-0.06860357,0.0125768585,0.04950898,0.018686024,-0.091671884,0.083171725,-0.07339057,-0.069806255,0.027768234,-0.00021738917,0.04662302,0.021965569,0.038010728,0.0018061453,0.014696838,-2.8301112e-33,0.007508948,0.14052409,-0.02254202,0.020871734,-0.015672946,0.016626138,-0.046168514,0.020432284,-0.07836858,-0.024257325,-0.0050871726,-0.007999477,-0.046210054,0.033041082,0.072880626,-0.061258312,-0.048430953,-0.053637575,-0.06190889,0.07009409,-0.007903244,0.0108021125,-0.081459545,0.058286045,0.022098737,-0.028488606,0.026727414,0.00038249107,0.10263436,0.02368159,-0.037147366,0.023415392,-0.0039466727,-0.0045897686,0.00881074,0.059223026,-0.10457524,-0.08254631,0.017356513,0.0022296954,0.01913776,0.06482489,0.008671807,0.017144704,0.038002443,0.04764363,0.015061613,-0.012759864,0.028532397,0.045635,-0.06406006,0.03174738,-0.055057157,0.087391,-0.003277849,0.013802816,0.0369191,0.07921741,0.052813854,0.025762083,-0.011841719,0.108418874,-0.023858642,-0.0070897904,-0.05075886,-0.09634355,0.05506434,0.01249936,0.102290094,0.03927963,-0.059397623,-0.032293007,0.0820065,0.02983562,-0.08197296,0.06704684,-0.11775672,-0.029861126,-0.03133444,0.14364024,-0.048352078,0.032904286,-0.031854313,-0.02316177,0.058207806,0.020468192,-0.01447173,-0.038049072,-0.002277656,0.08338023,0.027819354,0.042253286,0.07178062,0.020584218,-0.08293773,1.49011725e-33,-0.005571055,0.058909692,0.038972475,0.014510133,0.0492126,0.016494956,-0.03812486,-0.008628751,0.023099948,0.10123708,0.0058408696,0.02100148,0.09898539,-0.0043141837,-0.0050019813,-0.0149225155,0.08309412,-0.02532327,-0.025425522,-0.03684239,0.005519344,0.08106442,-0.040361147,-0.0053967573,-0.042407706,0.026659464,0.0067665544,0.040735736,-0.060938228,-0.0019874715,0.022241633,0.015124392,-0.13948601,-0.039842445,-0.013724185,0.0052641705,0.04555308,0.052985758,-0.05804522,0.014925665,0.04818182,0.044698022,-0.05249929,-0.0382324,-0.067674816,-0.015621543,-0.013437271,-0.05596008,-0.071116224,-0.035820097,0.0009865137,-0.01587021,0.0061268364,-0.02310908,0.009486546,-0.08321933,0.0420884,0.012173161,0.112087876,-0.0007122122,-0.03962193,0.022089189,0.023374656,0.02577717,-0.00041652468,-0.037829053,-0.015903667,0.08051704,-0.16099826,0.0048914654,0.069302976,-0.024505094,-0.03212746,0.014844826,-0.04802036,-0.011806165,-0.019297224,0.021436408,0.015348514,-0.07127406,-0.03454517,-0.012590538,0.0065823016,-0.00041136346,-0.0010091497,0.021357285,0.048571452,-0.056194436,0.018229686,0.03341212,0.03071298,0.04265336,0.015075207,-0.06603495,-0.030441273,-1.5371338e-08,-0.017846934,-0.041212443,0.016159683,0.043609183,-0.011099974,-0.09370575,0.022287268,0.020629875,-0.030277979,0.04499464,0.05911452,-0.022738148,-0.026316177,0.020003602,0.11820568,0.01782032,-0.017659739,0.14055817,-0.074266516,-0.084480874,0.076235324,0.04594139,0.0818734,0.05930317,0.0003182448,0.029294396,0.05181092,-0.08330577,-0.05888335,0.077686206,-0.051485457,0.04140725,-0.017606694,-0.049057394,0.11933492,0.04333309,-0.050524067,-0.047140162,0.0066335606,-0.043220676,-0.039394673,0.009042573,0.037079662,0.049028356,0.04837476,-0.05590024,0.0045769867,0.0046252003,0.004097178,-0.05825682,0.005846425,-0.041117974,-0.03116394,0.03942509,-0.0085581215,-0.04099901,0.01654096,-0.0009338962,0.01907329,-0.027237466,0.00827058,-0.0019305168,-0.044136703,0.005961279} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.605733+00 2026-01-30 02:01:09.705099+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1847 google ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB 1 t 1850 Go Karts Mar Menor unknown Nos lo pasamos genial. El precio está muy bien y la atención de los trabajadores también. Volveremos, sin duda. nos lo pasamos genial. el precio está muy bien y la atención de los trabajadores también. volveremos, sin duda. 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"P3.01": "la atención de los trabajadores también.", "R4.03": "Volveremos, sin duda.", "V1.01": "El precio está muy bien", "V4.03": "Nos lo pasamos genial."} {0.0051252637,0.020175237,0.012406709,-0.031193543,-0.10089157,0.026858382,0.009046411,-0.028814312,-0.0057931165,-0.0023784875,0.08662163,-0.005290418,-0.047487408,-0.044511538,0.024079379,0.016968573,0.0059838025,0.014664551,0.013745264,-0.00548023,0.07191033,-0.06046326,-0.12975116,0.09529056,-0.008294314,-0.06980713,0.013197273,0.035725933,-0.011202626,-0.022449838,0.004877855,0.03767466,0.058046818,0.025238242,-0.013908672,0.010227912,0.026247414,-0.0047406303,0.007862288,0.056508783,-0.079853795,-0.053737983,-0.031541426,-0.007826701,-0.019329278,-0.067422405,0.041785017,0.06574443,-0.014402397,-0.0013284311,-0.0268785,0.03596473,0.04727254,0.0037758136,-0.023917995,-0.010102011,0.01688938,-0.06367204,0.041396093,0.02901444,-0.028125728,0.038630974,-0.068832755,0.0015292944,-0.036514264,0.01571907,0.08376442,-0.023689551,-0.04463545,0.026058346,0.07526096,-0.055017132,0.010290838,0.06131679,-0.06633676,0.060340364,0.052141927,0.010593585,-0.027748955,-0.061771095,-0.024518259,-0.026596315,-0.027295584,0.008519764,0.024614967,0.034013487,-0.021712339,0.015986342,0.058121786,-0.0119685,-0.035624143,0.10177413,-0.006539182,0.026638817,-0.029847465,0.049910888,0.009975174,-0.08403256,0.013079807,0.035660066,0.0683327,0.02984713,0.051228892,0.11504789,-0.046304233,0.019828528,0.08403221,-0.013992411,-0.014353455,0.0662817,0.024508331,0.032468997,-0.036025118,0.054436147,-0.087205924,-0.0100576505,-0.018902512,0.011491549,-0.0352834,-0.10331532,0.09216466,0.034249455,-0.041411866,-0.016918672,-0.031686258,-0.060533985,0.01760524,5.8450344e-33,-0.042843826,-0.056059174,0.019926256,0.033096842,-0.063263156,0.0023117913,-0.007317926,0.030367916,-0.07077019,-0.027468171,-0.034865744,0.05736214,-0.020329414,0.03146568,-0.01943178,0.0002613491,-0.026791628,-0.033624645,0.12312615,0.043169376,-0.07207606,-0.007857905,0.0038239926,0.06030175,0.016304877,0.06594738,-0.016406914,-0.05448833,-0.073496394,0.076555125,-0.061798036,0.0058659,0.06656323,-0.032010045,-0.035363857,0.01916022,0.039591443,0.03619802,-0.018745344,-0.006816328,0.0044311546,0.04861432,0.0019319308,-0.048233498,-0.05523505,-0.03406127,0.02563773,0.044758696,0.03107415,0.018365933,-0.028024804,-0.08580202,-0.095352255,-0.068520084,0.023553375,0.009445374,-0.070273414,0.038818616,-0.03547673,-0.090580486,0.029631797,0.06524186,0.017780675,0.02470297,-0.06154035,0.0019722928,0.053005576,0.043694835,0.16037913,-0.01117168,-0.053792223,-0.07006471,-0.05319524,0.03627351,0.016581265,0.03695866,0.02163084,0.025387038,0.043245696,0.023159163,-0.06119218,0.030308096,0.03062642,-0.060370486,0.11332464,0.09515622,0.07033063,0.011070788,-0.005257867,0.07290696,0.057731383,0.076171696,0.086323075,0.030270746,-0.026351867,-7.1884675e-33,0.00077455916,0.003403384,0.04838332,0.040529046,-0.007403279,0.024461176,-0.0025141346,-0.033518814,-0.07948305,-0.033272885,-0.052367494,-0.09796713,0.071223386,-0.0463631,-0.00528514,0.05026234,0.043379884,-0.08901137,-0.046393555,-0.045251716,-0.02438718,0.04238527,-0.0007673486,0.023313709,0.009531519,-0.12841482,0.019580938,0.04800482,-0.08609707,-0.050395384,0.0329334,0.03536662,0.04004063,0.009209103,0.041064892,0.08141281,0.00558632,0.069309905,0.09344522,-0.007045156,-0.034146536,0.019692516,-0.03504846,0.013815592,-0.044591334,0.02858387,-0.010209005,-0.16463807,-0.029678429,-0.037613958,0.057294387,-0.014527687,-0.06791386,-0.024939662,0.0142392535,-0.020539539,0.010499002,-0.069990195,-0.044153508,-0.03567211,0.03404305,-0.030118596,-0.023432204,0.0011346933,0.07227992,-0.0108231045,-0.062356055,0.05132348,0.02455603,0.030704752,0.10948128,-0.0045778123,-0.09370912,-0.049764544,-0.08628753,-0.05030617,-0.13374297,-0.012766801,0.056024365,0.019607348,0.021010365,0.035138004,-0.011183681,-0.031863913,-0.044344965,-0.04755365,0.012656406,0.07179552,-0.024220997,0.073309004,0.023851736,-0.050552834,-0.070927925,-0.14587578,0.010151429,-3.5660793e-08,0.018531121,-0.028591856,0.00053769257,-0.001830161,0.013647589,-0.03300537,-0.054329734,0.042922337,0.09324735,0.072455436,-0.06557278,-0.014111507,-0.0102936635,0.011388972,-0.0024267493,0.056323133,0.049506202,0.07091095,-0.04093159,-0.036341496,0.095456176,0.037632365,-0.056735896,-0.0422527,0.033958696,-0.01887577,-0.0706185,-0.019317953,-0.047229927,0.01721142,-0.015021088,-0.03811149,-0.10209037,-0.122696325,-0.025257567,0.029503265,0.02097657,-0.05795727,0.027219228,-0.1011224,0.07725906,-0.004871087,-0.08002055,-0.010524446,-0.051398575,-0.08004828,-0.01643125,0.048761047,-0.074430645,0.056987613,-0.03624904,-0.016358197,0.08082513,0.014425075,0.05168676,-0.051574387,0.034935217,0.03387193,-0.044694833,-0.022223331,0.08199962,0.11008887,0.12323031,-0.0712461} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:49.389058+00 2026-01-30 02:01:10.934987+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1805 google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB 1 t 1808 Go Karts Mar Menor unknown Top, on a passé un très bon moment, réceptionniste qui parle français, le prix est très abordable pour 4 personnes, les moniteur au top, le circuit aussi. Pour ceux qui passe leur vacances à côté franchement à faire top, on a passé un très bon moment, réceptionniste qui parle français, le prix est très abordable pour 4 personnes, les moniteur au top, le circuit aussi. pour ceux qui passe leur vacances à côté franchement à faire 5 2023-01-31 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-N {} {"A2.02": "réceptionniste qui parle français", "P2.02": "les moniteur au top, le circuit aussi", "R4.03": "Pour ceux qui passe leur vacances à côté franchement à faire", "V1.01": "le prix est très abordable pour 4 personnes", "V4.03": "Top, on a passé un très bon moment"} {0.003427314,0.022739576,-0.024609985,-0.13457857,-0.0234333,0.088583186,0.08271397,0.15392466,0.032035027,0.028832119,-0.12257039,-0.060234673,0.03528971,-0.034025557,-0.041868865,-0.035562057,0.00039061773,0.050271153,0.048088387,0.027959503,0.025685383,-0.052001167,-0.017893735,0.026414415,-0.031446073,-0.04547814,-0.042444598,0.06222488,0.0047253584,-0.08618803,0.029654052,0.03787718,0.0423919,0.042623855,-0.035954397,-0.011557461,-0.05722013,-0.092644565,0.02567841,0.078007795,-0.018520119,-0.010130819,-0.057042338,-0.024009388,0.03689082,0.015447948,0.048186563,0.042564742,-0.04878252,-0.08342985,0.05754958,0.032438174,0.08398865,0.013572356,0.0040524355,-0.023668325,0.011388984,-0.07075858,0.07333823,0.05933911,0.024422878,-0.018591229,-0.035340916,-0.015353288,-0.010493722,-0.015344647,0.0046833,-0.028660148,-0.031588387,0.06030619,0.049912617,-0.024571612,-0.019612053,-0.08912844,0.07499102,0.023408026,-0.06979717,-0.02412835,-0.010385297,-0.10050619,0.01792009,-0.11521866,-0.022114564,-0.04096417,0.062243465,-0.03599686,0.0068700197,0.0007486755,-0.01038223,-0.0370024,-0.07047178,0.05975982,-0.04635173,-0.0076744407,-0.03918071,0.044598177,0.00926335,-0.070061274,-0.03756391,0.100230716,0.019495618,-0.033281583,-0.005120799,0.096524306,-0.021558862,0.020430148,0.054188624,0.025479313,-0.04252964,-0.07302784,0.008705587,-0.015036164,0.015742354,-0.015729623,-0.03444808,0.072169214,0.032976452,-0.02712566,0.016658105,-0.07679191,0.004441714,-0.023618402,0.0071330857,-0.08256652,0.010091061,0.02840774,0.13167459,7.8888925e-33,-0.056235418,0.059072208,0.023690362,-0.032256357,0.029324936,0.0031309992,-0.10241326,0.008519355,0.009826759,0.05268554,-0.023387348,0.026938522,-0.0009710091,0.02966015,0.07229214,-0.026646186,0.029912114,-0.03584302,-0.017984381,-0.06499704,-0.008263397,-0.0117235975,0.00051290524,0.13371952,-0.0070676133,0.03501898,-0.0140949795,-0.09305866,-0.06555248,0.023351302,-0.0324254,0.011710668,0.053624004,0.07345944,-0.049027454,-0.015396824,0.029165579,0.06833279,0.08808622,0.030147787,0.0015913744,0.013136129,0.034965213,-0.06523105,-0.10839687,0.06863709,-0.030081123,0.0007566496,0.09037703,0.056686424,-0.07223669,-0.0511709,-0.010428645,-0.037470844,0.07095094,0.0011289926,-0.075251125,0.049081724,-0.02937809,-0.021064362,0.027606454,-0.001644812,-0.05574097,0.033286016,-0.019988028,0.0024908744,0.010905533,-0.06507022,0.06954594,-0.039444305,-0.09975002,0.04780437,-0.0029133428,-0.035805028,0.07555232,0.08006331,-0.045207564,0.023214051,0.004997198,0.011904129,-0.051250096,-0.06492323,0.019628774,-0.0586202,0.0562721,0.016709674,0.019767977,0.020473195,0.008232379,0.08187286,-0.034712497,-0.021135138,0.11554676,-0.011758713,-0.017652983,-6.644445e-33,-0.01642002,0.07817702,0.056844402,0.07923909,0.011779691,0.023220608,0.014228398,-0.05387841,-0.06527347,0.06811923,0.005882941,-0.020433977,0.13972934,-0.070293725,-0.008617491,-0.004774001,-0.014061185,-0.11517945,-0.039552823,-0.03497823,0.025548212,-0.07916406,-0.019589633,-0.054881986,-0.06529016,-0.007319749,-0.0143257445,0.007025251,0.026440302,-0.0072865398,-0.03706374,0.046903376,0.03400442,0.08511537,-0.0023652276,0.082773685,0.087579206,0.0673389,-0.022186939,0.17659892,-0.075473554,0.017769527,0.02274418,0.02283,0.031462103,-0.025166508,-0.07424398,-0.056898598,-0.061253242,-0.064751945,-0.028444476,0.04659466,-0.024179883,-0.011791316,-0.05129115,0.061726905,0.041617323,-0.021814091,-0.03988751,-0.07015643,0.11405209,0.034592073,0.023667956,-0.022825507,0.084211454,0.0073211547,-0.10308101,-0.022204708,-0.034366358,0.020756045,0.01404019,-0.046730954,0.02941123,0.005713461,-0.05965686,0.034015898,-0.009508913,0.06903478,0.030591425,-0.018735291,-0.101707704,0.052241966,-0.041607197,-0.06548894,-0.0013638332,-0.012461356,0.073436156,-0.047146227,0.017449746,-0.09665117,0.004065019,0.08588341,0.010474342,-0.04506354,0.0035697129,-4.29794e-08,-0.008800587,-0.09688822,-0.08060244,0.013787378,0.018371155,-0.09557247,0.029974187,-0.029483456,-0.0020808452,0.044682264,-0.023423018,0.031711005,0.008410707,-0.032581232,0.0057452065,0.06917489,-0.06778794,0.041409574,-0.042549726,-0.0073578353,-0.021800717,0.023515508,-0.0064344723,-0.071072504,-0.022613827,-0.021168543,-0.014776915,-0.048381425,0.03803739,-0.008872587,0.029592393,0.03757222,0.023943132,-0.04202324,0.034553092,0.006722029,-0.07785293,0.06942552,0.028055983,0.05236246,0.12730291,-0.0001363086,-0.08637509,0.026644574,0.085982084,-0.05815035,-0.026259877,0.003250281,0.057463914,0.05711532,-0.054189425,0.034603823,0.05064744,0.0058062794,-0.0064206608,0.04661566,-0.0027839965,-0.010959799,-0.017752983,-0.041844197,-0.03767928,0.04812604,-0.017687663,-0.04141465} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:49.726423+00 2026-01-30 02:01:10.774274+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1807 google ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE 1 t 1810 Go Karts Mar Menor unknown Ha estado muy bien. Hemos ido a un cumpleaños y ha sido muy divertido. Las instalaciones están bastante bien y hemos pasado un rato muy agradable. Repetiremos. ha estado muy bien. hemos ido a un cumpleaños y ha sido muy divertido. las instalaciones están bastante bien y hemos pasado un rato muy agradable. repetiremos. 4 2024-01-31 01:52:39.833374+00 es v5.1 E1.04 {E1.03} V+ I2 CR-N {} {"E1.04": "Ha estado muy bien. Hemos ido a un cumpleaños y ha sido muy divertido. Las instalaciones están basta", "R4.03": "Repetiremos."} {0.017763235,0.0066628484,0.0031772736,-0.08015984,-0.028027827,-0.07553541,0.09309477,0.056643352,-0.027914798,0.017656079,0.070986904,0.03942079,-0.10881254,0.021257434,0.01995406,0.02950557,0.014585441,0.005746296,0.0052878116,0.03437848,-0.002633559,0.0068811243,-0.09536813,0.113179214,-0.07457726,-0.045770854,-0.004332274,0.012824651,-0.02664745,-0.045701593,-0.009029935,0.10515265,0.12511909,-0.104962856,-0.006727807,-0.064646274,-0.019831868,-0.031910837,-0.050800547,0.011474367,-0.01862726,-0.058122482,-0.041854136,-0.043630023,-0.059777923,-0.026569983,0.05629046,0.03125912,0.11175964,-0.04522829,-0.054403402,0.018442603,-0.0072055133,0.040532507,-0.03305384,-0.033824433,-0.08106647,-0.015456212,0.043016113,0.032180913,-0.06742277,0.075593084,-0.010930865,0.031128826,0.05076632,0.0009882714,0.046846755,-0.0049178745,-0.036191188,0.00066450797,0.11682455,-0.06311771,-0.011597758,-0.046956077,-0.044469364,0.035476845,0.08688618,0.073993154,-0.024076156,-0.019909019,-0.04393046,0.026989022,0.021354435,-0.018220287,-0.009924837,0.026018908,-0.123566344,0.061474357,-0.02994834,-0.033804595,0.014487119,0.061174158,-0.043682333,-0.0633166,0.078342035,0.025064737,0.049712043,-0.10009433,-0.02841961,0.049344063,0.01432533,0.044371057,0.044389233,-0.011284351,-0.0403882,0.02085123,-0.0072267065,-0.05166471,0.040650047,0.0029491172,-0.045904893,-0.036790293,0.0057206117,-0.0058194706,-0.111366466,0.012333323,-0.025150007,-0.06203393,-0.003622342,-0.05749558,-0.00076774607,0.029961616,-0.034061465,-0.03596838,-0.029285565,-0.08838847,0.09059755,8.086454e-33,-0.0132528115,-0.049099755,-0.04304959,0.07785025,-0.019568011,-0.013903634,-0.017440222,-0.088088825,-0.022176279,-0.044298254,-0.070038304,-0.05618076,-0.028318955,0.07931864,-0.021609297,-0.026395712,0.068580434,0.0032372456,0.058758836,0.07541347,-0.03541175,-0.028604861,-0.07431227,0.016677251,0.0010005017,0.087769605,0.008193236,-0.020911492,-0.016916787,0.0799083,-0.07290293,0.024192601,-0.0035971552,-0.0711108,-0.08190688,-0.0231453,-0.008161901,0.017543308,0.026767457,-0.020661302,0.067955196,0.059731856,-0.061161052,0.059542865,0.041610397,-0.006072386,0.024238363,-0.0047173016,0.10853434,0.0017554136,-0.04914868,-0.022579947,-0.004539397,-0.07058401,-0.019912822,-0.039558392,-0.051140193,0.008436246,0.027377771,0.00066484004,0.008108839,0.028378112,-0.059638064,-0.045763906,-0.0059258295,0.006296975,-0.037727557,0.09391624,0.10181121,0.020552218,-0.1097564,-0.08023312,-0.06864191,0.011455016,0.013590763,-0.020044304,0.009293528,0.04385054,0.041977096,0.00972316,0.018216189,0.02485403,0.03526832,0.031857707,0.11415455,0.09707053,0.013747042,0.07794606,-0.034198187,0.08640847,0.012141473,0.07968278,0.07268488,-0.051416498,0.05131893,-9.4380045e-33,0.014765186,0.0115288375,0.008333634,0.0039640777,-0.050155092,0.05242992,-0.040228065,0.016002955,-0.06037766,-0.034118496,-0.03510377,-0.054057427,0.064159535,-0.067411445,-0.051328816,0.0979254,0.016745314,-0.04400205,-0.06191529,-0.0434866,0.0024835009,0.00093944365,0.082531564,-0.092479646,-0.025354274,-0.061985493,-0.06169093,0.027423473,-0.030845422,0.07026506,-0.01966127,-0.0012573794,-0.12306398,0.04533489,0.03102617,0.0019666848,-0.0015499122,0.06511451,-0.042052306,0.01850097,-0.074441805,0.025408996,0.03720633,0.05203164,-0.02823283,0.054383796,0.010765924,-0.10056592,-0.03618278,-0.04288854,-0.02110068,0.022821067,-0.014809937,-0.0003315903,0.041667867,-0.12581307,-0.03534945,-0.054195564,-0.12374649,-0.03637624,-0.0046201325,0.020608846,-0.026819263,-0.12847058,0.12551358,0.008103575,-0.089550585,-0.031580225,0.01188804,0.014130705,0.12838535,0.022833446,0.0010385076,-0.0645487,0.028344851,0.0025852416,-0.049281955,-0.019064076,-0.012173617,-0.008397153,-0.016225286,-0.014260344,-0.010167264,-0.048790462,-0.00545945,-0.036979932,-0.0047111753,0.04932233,-0.03975162,0.017698511,0.02429771,0.016147252,-0.04856363,0.004337421,0.04100133,-4.0342364e-08,-0.037331745,-0.05639408,-0.042328734,-0.00026832698,0.044196155,-0.00088913506,-0.08596835,0.11108008,0.010096121,0.021859888,-0.027120762,-0.025413053,0.037448846,0.034032088,-0.037243187,0.030200562,0.10517002,0.13375664,-0.010504297,-0.020048952,0.08863717,-0.03854032,0.022878017,0.05939242,0.014411713,0.00540745,-0.009790231,-0.022664199,-0.040847275,-0.002273612,0.05056447,-0.023554208,0.05063302,0.0035613878,0.0668186,-0.042798057,-0.00048683054,0.060700506,0.00077589566,-0.09682767,0.04286892,-0.018842962,-0.02737816,0.0055084517,-0.043829024,-0.088316664,0.014432818,0.068910986,-0.044418223,-0.012351681,0.0144908205,0.02109839,0.067020416,0.049710073,0.043189045,-0.049346372,0.04394306,0.002985543,0.02138821,-0.021487782,0.0660685,0.11645973,0.0043688635,-0.043622486} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:06.555994+00 2026-01-30 02:01:10.780147+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1808 google ChZDSUhNMG9nS0VJQ0FnSURTcGNqZll3EAE 1 t 1811 Go Karts Mar Menor unknown Schöne Strecke zum Pitbiken, teilweise etwas rutschig aber sonst sehr spaßig. schöne strecke zum pitbiken, teilweise etwas rutschig aber sonst sehr spaßig. 4 2021-01-31 01:52:39.833374+00 de v5.1 O1.02 {E1.04} V+ I2 CR-N {} {"O1.02": "Schöne Strecke zum Pitbiken, teilweise etwas rutschig aber sonst sehr spaßig."} {-0.06296339,0.09179346,-0.05211591,0.042544253,-0.046456918,0.05512288,0.057804376,0.111520186,0.012120856,-0.08008919,-0.049496677,-0.03467257,0.014392487,-0.10671451,-0.03803665,-0.02522409,-0.012517759,0.05376069,0.084398136,-0.03121533,-0.1198744,-0.015730066,0.008121249,-0.0063566747,0.03230078,0.059538905,-0.051979247,-0.011913884,0.0069379658,0.006369693,0.072441496,-0.025142869,0.052425083,0.034466445,0.037912514,0.038837854,-0.01386266,-0.040398363,-0.047761787,0.060842004,-0.06196485,0.07846912,-0.08318658,-0.09709343,0.024667857,0.030768834,-0.009934655,0.031458013,-0.11189176,0.036883388,0.0067718914,-0.033188753,0.0637432,0.089139365,0.034604672,0.014292062,0.039861396,0.03603295,-0.011708774,-0.07285421,0.057797868,-0.02550842,-0.09342608,-0.051879067,-0.09738955,-0.001487715,-0.010093519,-0.031191286,-0.016278155,0.055112824,0.086984426,-0.061755504,0.0044429367,0.009466045,-0.081928924,0.034795765,-0.02848496,-0.0056891963,-0.022024252,-0.019711152,-0.0092184385,-0.005962972,-0.0013149146,-0.011165846,-0.014651106,0.034188572,0.028698415,-0.026391994,-0.019047853,0.03651752,-0.01579393,-0.051199675,-0.04500056,0.058063954,-0.05875229,-0.0776273,0.003349858,0.057128955,0.019703427,-0.0014326716,-0.0024251202,-0.0073979027,0.028621038,0.07756987,-0.021075329,-0.06963881,-0.059305135,0.035449367,0.06816969,-0.010093798,-0.021599555,-0.022379244,0.023648374,-0.0004182513,0.013939127,-0.0038126167,0.00036635014,-0.07870621,0.04322129,0.051798657,0.110111214,0.094036154,-0.009251139,0.0048054033,-0.010209038,-0.059001982,0.046833653,9.215719e-33,-0.05668072,-0.010036674,-0.0070849317,-0.02361296,-0.027093636,-0.009417263,-0.085406,0.0001800484,0.048835594,-0.0031581128,-0.07410168,-0.048815362,0.07781616,-0.031828772,0.018743813,0.013494838,-0.01687734,0.008104747,0.09465157,-0.05194567,-0.105050445,-0.02656794,0.013014514,0.05689006,0.027413819,-0.045060504,0.0829028,-0.022199212,0.036453012,0.02325084,0.07653731,-0.0058346833,0.002515602,-0.03856016,-0.04207354,0.034066375,0.020274784,0.0022518316,0.03603532,-0.079624884,0.018203897,-0.07947817,-0.0058449013,-0.0012399331,0.083955646,-0.033416774,-0.04057989,0.02803652,0.031927723,0.001976241,-0.02642118,-0.028032335,0.022893745,0.1154236,0.03012361,-0.0017244505,-0.014093941,0.06799855,-0.0055454858,0.065358095,-0.0059335935,-0.0010768675,0.0048307455,-0.046593953,0.050044987,0.014828487,-0.036593053,-0.036533263,-0.06949246,-0.011924037,-0.058189336,-0.0041418727,0.035627816,0.013522663,-0.035747897,-0.0051696273,0.0018735677,0.10246031,-0.042409677,-0.013117606,-0.105805434,-0.007303419,-0.036522653,-0.078764915,-0.03828941,-0.06747441,0.009422954,-0.042510495,0.0015079096,0.13167198,0.0054202396,-0.0094959475,-0.061848156,0.050021797,-0.03235557,-8.598121e-33,-0.0018346728,0.000416123,-0.060474988,0.04829304,0.015558499,0.058526393,-0.044880502,-0.025332604,-0.13615553,-0.01988966,-0.005725934,-0.018681204,0.07167802,0.01788609,-0.093049236,0.016795503,0.030945927,-0.021980315,0.009668918,-0.054436706,0.010451786,-0.0045157755,0.035391126,0.053687155,-0.054344032,0.046919607,0.03432602,-0.030436395,-0.05516832,0.03613617,0.038883302,0.019185863,0.0005877637,0.081525795,0.0044011944,0.11981085,0.07188771,0.111296065,0.07871549,-0.025105106,-0.041554075,0.09105131,-0.041116316,0.06492143,0.14195505,-0.008017604,-0.10640376,0.007573543,-0.086658515,-0.06109118,0.0068122977,0.0068813306,0.052548025,-0.07500811,-0.023995707,0.003274053,-0.10992317,-0.12133979,-0.048993267,0.0025493377,0.12440568,0.069177024,0.062263906,0.014070708,0.04742868,-0.11408233,-0.038673863,-0.05216807,0.09465274,-0.0047235982,0.040217258,0.004663351,0.022082223,0.04913798,-0.05124066,-0.041648034,-0.05870924,0.093315415,-0.07134656,-0.026728908,0.015474575,0.05469392,0.08986353,0.06450439,-0.017513737,-0.003908042,-0.0049841874,0.020733496,0.03208177,-0.0283871,-0.06569283,0.04520022,0.049735468,-0.015987253,0.073853515,-3.4521594e-08,0.043839067,-0.068690784,-0.051743634,0.033849224,0.029157225,-0.0798106,-0.054869477,-0.080662034,-0.03949047,0.026407236,-0.0708711,-0.06416636,-0.113696575,0.027776547,-0.0077887904,-0.005098845,-0.0018470474,-0.008500358,0.032131154,-0.02561766,0.040857013,0.0014157289,-0.0036371555,0.049322486,0.035738192,-0.011447331,0.040097613,-0.023310438,0.042760514,-0.03485815,0.02754894,0.08850983,0.058594406,0.056755286,0.010008556,0.010558064,-0.033621974,0.09753405,-0.023083555,0.04729342,-0.018656777,0.03645835,0.041208148,-0.052609775,-0.09942588,-0.075350076,-0.013012406,0.042212855,0.023255803,0.048273366,-0.022914194,-0.03163969,0.012737088,0.06379908,0.0103547005,0.05346599,-0.06508103,-0.04889624,-0.030846434,0.033239167,-0.019158578,0.0120625645,-0.05957809,0.0464524} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:10.535779+00 2026-01-30 02:01:10.782733+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1810 google ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE 1 t 1813 Go Karts Mar Menor unknown Circuito espectacular con un fantástico trato. Ha sido mi primera experiencia y no dudaré en repetir. Además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempos en pista. ¡Volveré sin dudarlo! circuito espectacular con un fantástico trato. ha sido mi primera experiencia y no dudaré en repetir. además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempos en pista. ¡volveré sin dudarlo! 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {P1.01} V+ I3 CR-N {} {"E1.03": "Además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempo", "O1.02": "Circuito espectacular con un fantástico trato.", "R4.03": "Ha sido mi primera experiencia y no dudaré en repetir."} {-0.06438005,-0.008118956,-0.06334908,-0.12813427,-0.117237605,-0.037485983,0.08446211,0.11240519,-0.03744631,0.024221174,0.062008426,-0.0036699485,-0.030799402,-0.003841819,-0.011964803,0.055997774,-0.031294234,0.0104608955,0.05506923,-0.012144647,0.06368904,-0.0631703,-0.0154734105,0.06591933,-0.03165184,0.053406905,0.009388302,0.0735988,-0.07342315,-0.17927441,-0.028883226,0.07524625,0.07636573,-0.045640185,-0.005821826,-0.009167086,0.0038681654,-0.09628204,-0.06536404,0.04089663,-0.07493686,0.011089214,0.0078424085,-0.083417445,0.012151285,-0.091546305,-0.03162175,0.024204748,0.011048294,-0.077256255,-0.027648054,-0.009337603,0.008545034,0.036364663,-0.07487813,0.020221539,-0.0058700615,0.011822208,0.01936801,0.00094027794,0.060232755,0.030580064,-0.025028743,0.07236334,-0.025796056,-0.05239818,0.07357091,-0.008240549,0.020663083,0.0454343,0.0076533863,-0.056906383,0.03313826,0.0119988555,-0.012312478,0.060825404,0.034152027,0.018236717,0.047420993,-0.01895644,0.0155194355,-0.06804428,-0.04619886,-0.02865789,0.08417369,0.010740331,-0.021130115,-0.00079386856,0.0083447825,-0.068752155,-0.02908188,0.07303168,-0.046837386,-0.021266233,-0.086399965,-0.054346442,-0.011261435,-0.11816305,-0.03773462,0.07415255,0.0943312,-0.022766113,0.06666131,0.012578564,-0.06678955,-0.028170988,0.08450488,-0.016084354,0.031277772,-0.00016409825,-0.038495332,-0.03941068,0.020274106,-0.024011781,0.006742397,0.050161313,-0.028672447,0.015334111,0.08395875,-0.10280421,0.007880604,-0.035960652,-0.10635863,-0.009923809,-1.9754696e-05,0.0046460987,0.07300455,1.5748104e-32,0.0065611284,0.046436213,-0.027154647,-0.00059450074,0.020657422,0.088568576,-0.08273367,-0.004835791,-0.07224666,0.0026693118,-0.12357672,0.079898775,0.010918208,0.109623946,0.029670106,-0.05783851,0.015451945,0.037446886,0.091828324,-0.028100826,-0.04200727,-0.008804026,-0.002762363,0.06811577,0.04694778,0.038756717,-0.017741174,-0.016302746,0.0031301747,0.041709352,0.013991308,0.04964667,0.03249233,-0.0024615186,-0.03526662,-0.037947025,-0.014219847,-0.013661858,0.031372745,0.013866012,0.015766142,0.03356388,-0.058053397,0.023414737,-0.009289179,-0.037413873,0.022083893,0.060374267,0.11730024,0.02413377,-0.08945851,-0.07309781,-0.029326688,-0.030810766,0.028128307,0.04830874,-0.059535675,0.033822846,0.10145341,0.004226036,-0.010685881,0.08509203,-0.0066903913,-0.0872843,-0.06113218,-0.013931272,0.044739272,-0.030927293,0.063179016,0.0058345967,-0.09508007,-0.012331212,-0.039558608,-0.002861435,0.046466168,-0.008308279,-0.074755564,0.006943855,-0.017060507,0.044314776,-0.026923778,-0.09509042,0.039690252,0.0049131135,0.09207828,0.0831602,0.033957645,0.0060484237,-0.00221183,0.08815757,0.003911571,0.064852744,0.05771086,0.0005555259,0.08376785,-1.5950787e-32,-0.021965528,-0.01313601,0.009914109,0.016185157,-0.029528227,0.033938024,-0.021129861,-0.06293254,0.017519377,-0.06861492,0.033673886,-0.047194038,0.09997184,-0.10349679,-0.026534082,0.0022867476,-0.069181,-0.08926338,-0.013176748,-0.034501955,0.036646344,0.000852485,-0.00054346985,-0.002770132,-0.06197246,-0.051591273,0.009403407,-0.02352023,-0.041699324,0.041815177,-0.00055811845,-0.016425915,-0.06906167,0.043046974,-0.023483226,0.036622953,0.12247373,0.060254768,-0.02814668,-0.024612604,-0.038810924,0.05632625,0.045713156,-0.019430209,0.008548623,-0.010076395,0.00471824,-0.09121805,-0.10356014,-0.002669448,-0.051751636,-0.02583833,-0.041976824,-0.095018595,0.0076622786,-0.028080838,-0.04291326,-0.0636129,-0.09351636,-0.016604269,0.022741757,-0.041279297,0.020167606,-0.06460691,0.10667077,0.048280228,0.022509536,0.05963228,0.112931296,0.011167043,0.073288776,0.026617149,-0.019908154,-0.0044698245,-0.0069514182,-0.0567076,-0.14027943,-0.05225092,-0.008887284,-0.008889732,0.038167574,-0.012122768,0.060277056,-0.10120888,-0.02123821,-0.070283026,0.007506147,0.02233185,0.007319154,0.082331166,-0.018803883,0.08227124,-0.03352241,0.0004835393,0.053445686,-5.944826e-08,0.061181016,-0.01776595,-0.028580636,-0.036925383,0.053529974,-0.105898015,0.015080694,0.010010709,0.0039789383,-0.044908237,-0.0018719849,0.004173425,-0.043752994,0.076831184,0.03625128,0.07369858,0.0664447,0.114374936,-0.034508254,-0.020255677,0.064106636,0.014482724,0.029890534,0.018538583,0.06778854,0.02690991,0.010565245,0.042423453,-0.02116105,-0.0442907,-0.047516756,-0.017532235,-0.006680825,-0.01869733,-0.004081613,-0.003866744,-0.026523804,0.0068035396,-0.019746898,-0.063745596,0.046698105,-0.023218453,-0.042904112,-0.008715512,-0.018451927,-0.06959964,0.012817614,-0.061323274,-0.016512139,0.018347954,-0.052768096,0.013934646,-0.014100889,0.020595329,0.061381787,-0.037233293,0.04194585,-0.015021392,-0.026389634,0.058316633,0.0019566352,0.07084163,0.0656483,-0.094754755} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:26.581408+00 2026-01-30 02:01:10.788426+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1812 google ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB 1 t 1815 Go Karts Mar Menor unknown Heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe. Oude en slecht onderhouden karts. Onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn. Heel jammer. heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe. oude en slecht onderhouden karts. onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn. heel jammer. 1 2024-01-31 01:52:39.833374+00 nl v5.1 O1.03 {O2.02} V- I2 CR-N {} {"O1.03": "Oude en slecht onderhouden karts.", "P1.01": "Onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn.", "R4.03": "Heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe."} {-0.10468836,0.0916971,-0.0148204155,-0.034726787,-0.08555297,0.017955426,0.04405019,0.034420174,0.0052994243,-0.042451087,0.013510169,0.060875744,-0.017936192,-0.04549726,-0.06871834,-0.074070744,-0.09022795,0.10731493,-0.01828009,-0.028183796,-0.047468085,-0.0096262805,0.045445494,-0.0061879563,-0.01600281,-0.026327059,0.08270693,-0.025495382,0.014996977,-0.024644455,0.054477923,-0.012378047,-0.049310297,0.038497966,-0.0066200746,0.014736633,-0.04264945,0.03098041,-0.04025385,0.093521684,-0.0009947228,-0.078728035,-0.12964985,-0.03955823,0.020806238,-0.041723035,-0.077491984,-0.0033748974,-0.08610625,0.01394722,-0.08919791,-0.0023046527,0.060829252,-0.051174697,0.066794164,-0.059996326,-0.024811605,0.036985163,0.06761248,0.023440486,0.06685003,0.02896644,-0.030308902,-0.043767057,-0.03395255,-0.06506972,-0.052626316,0.09044727,-0.08174426,0.072760165,0.018399112,-0.08365946,-0.03632907,0.065145105,-0.08996875,-0.054462135,-0.014627998,0.014446379,0.030149642,-0.044277716,-0.028003247,-0.042286098,0.046277188,-0.05726053,-0.015666498,-0.058580182,0.006444118,0.092560396,0.038030922,-0.015029066,-0.008906256,0.011688684,-0.030966477,-0.029516898,0.016802493,-0.018115409,-0.0054810983,0.029157363,-0.028295835,0.032323223,0.081889294,-0.037846163,0.0011096019,0.030972498,-0.072145596,0.011456509,0.048191056,-0.04459825,0.065344065,0.029064162,-0.0012434344,0.025866684,-0.08893109,-0.10203096,-0.020518431,0.006176573,-0.08162037,-0.042438753,0.060682192,0.00056591217,0.05598623,0.0012533492,-0.021020263,0.017767673,0.022399703,0.019892232,0.045742262,1.5255767e-32,-0.09495266,-0.027656961,-0.013670576,-0.013211041,-0.006460144,-0.053158976,-0.055762656,-0.036455695,-0.050142642,-0.04201836,-0.012346858,0.016026262,-0.041616883,-0.031144133,0.006355586,-0.016872758,-0.0251289,-0.08933309,-0.00860131,0.014665993,0.041344266,-0.06767604,0.05175694,0.07280237,-0.047109205,-0.08914102,-0.022364736,-0.09444555,-0.033646777,0.004956141,0.09155638,-0.06842364,2.945115e-05,-0.020328643,-0.1021239,0.0035341391,0.034430727,0.020796586,-0.049871396,-0.10602601,0.017219104,-0.030161627,0.06989286,0.027571037,0.024140585,0.121947706,0.044441447,0.0036280358,0.010731757,-0.020719165,-0.006439425,-0.0062641054,-0.03299246,0.025680121,0.046692394,0.087008774,0.060500138,0.087138645,0.058517743,-0.024730543,-0.0056406055,-0.00034528962,0.07905141,-0.06474126,0.01469809,-0.011916566,0.010220872,-0.030526226,-0.0053385315,-0.05593252,-0.066164196,0.018108902,0.016139815,0.038187895,0.020405779,0.06460874,-0.02758373,0.06731597,-0.013697879,-0.043623254,-0.075892456,-0.038654286,-0.039905455,-0.06229125,0.06824666,-0.034742564,-0.049631942,-0.072263926,-0.019858269,0.14420396,-0.04824693,0.012861826,0.013406556,0.035261657,0.016466567,-1.5168822e-32,-0.012366499,0.0904176,-0.02333271,0.076701984,-0.010205742,0.04866155,-0.01905932,-0.013943326,-0.02546744,-0.04521906,-0.02049813,-0.042702675,0.081527285,0.006944548,-0.039719127,0.013229129,0.06594058,0.07827684,0.02227379,-0.056057923,-0.00018052966,0.027123278,-0.049594782,0.110005334,-0.06909634,0.020670068,0.11205496,0.014633898,-0.094971515,-0.0027273493,0.077978306,-0.0844042,0.00087016186,0.005224979,-0.0068064188,0.057728983,0.09706586,0.03224564,-0.072675146,-0.030769559,0.03289775,0.016006308,-0.088868886,0.056635156,-0.04416888,-0.015577124,-0.03636015,0.0074685174,-0.05476123,-0.049522318,0.09004062,0.06688734,0.016019026,-0.01709458,-0.03615873,0.016331362,-0.059781253,-0.067030184,-0.027026894,0.02344028,0.068900146,0.029018683,0.031598825,0.016392624,0.09448487,-0.07135829,-0.07335002,0.075793914,0.046137612,-0.04992388,0.049098898,-0.018473513,0.0073334035,0.06884345,0.027636135,0.004620695,0.039001673,-0.03237956,-0.030120043,-0.045276668,-0.03764658,-0.06252205,-0.03300411,-0.045734596,0.00076857756,0.028705219,0.06995412,0.039690148,0.08701597,-0.019471692,0.0868176,0.062367383,0.0048372373,0.0043739,-0.06615093,-4.8093426e-08,0.014446237,-0.0352869,-0.023575278,-0.0061409,0.06039686,-0.08346954,0.041598734,0.0072208294,-0.066673264,0.051144615,-0.03209708,0.038808156,-0.03443355,0.013872802,0.08900935,0.055452,-0.02484202,0.09547194,0.00434613,0.021827094,0.10112146,-0.02115306,-0.041790556,0.0549075,-0.0033991395,0.0027371056,-0.009907572,-0.0016067313,0.09523331,-0.024262408,0.045820836,0.07852075,0.033678763,0.07910928,-0.014035939,0.04565559,-0.01222993,0.05607335,0.028651517,0.0026401635,-0.0408524,-0.046117943,0.084626116,-0.0568705,-0.17650098,0.016493184,-0.03326081,0.05005599,0.08165088,-0.013180867,-0.078885525,0.016670793,0.03953187,0.027028156,0.0052135936,-0.021862926,-0.0006751188,0.022189133,0.013770505,-0.07074435,0.0047688694,-0.02645464,-0.037942838,0.056908727} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:46.091984+00 2026-01-30 02:01:10.797273+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1539 google ChdDSUhNMG9nS0VJQ0FnSUNVOS1LZTBRRRAB 1 t 1542 Go Karts Mar Menor unknown Great place to go and best prices for the karts by far great place to go and best prices for the karts by far 4 2020-02-01 01:52:39.833374+00 en v5.1 V1.01 {} V+ I3 CR-B {} {"V1.01": "Great place to go and best prices for the karts by far"} {0.02796829,0.0008594104,0.012509582,0.108465254,-0.077191934,0.034279447,-0.080901824,-0.0012180117,0.028980546,0.029818492,0.004819328,0.03983306,-0.03128681,0.021087632,0.020040898,-0.06661003,0.09734532,-0.018611498,0.032985747,-0.13257457,-0.05602223,-0.05744918,-0.019393507,0.022581996,-0.038150404,-0.03827201,-0.032422177,0.045993783,0.045629483,-0.0068931854,-0.1354985,0.0026261806,-0.022244688,0.01326916,0.005840311,-0.049676314,0.0011632235,-0.093308575,-0.049490526,0.01688485,0.030712347,0.014659789,-0.031814203,0.032011513,-0.005365956,0.03615569,-0.045242395,0.012167253,0.06890073,0.103570744,0.013998289,-0.026611568,0.025757203,-0.039500743,0.0029064405,0.0039384486,-0.11163267,-0.01737076,0.1149144,-0.05563142,0.09363025,0.012471594,-0.09011136,0.01437315,-0.052621216,-0.04586245,-0.023889814,0.11613865,-0.036971457,0.0034467313,0.014555452,0.0065851915,0.04483288,0.03359347,0.050361603,0.030508598,0.037453026,-0.04072867,-0.08401776,0.07053236,0.0027442076,-0.01307914,0.020954112,-0.1020009,-0.014955005,-0.08470898,0.07695726,0.019002888,0.0606502,-0.027523695,0.042465817,0.036865722,-0.07227615,-0.034516003,0.031511642,0.050028592,-0.0010149031,0.01207198,0.045779068,-0.0136197945,0.06201326,0.026402542,0.012089345,-0.011376449,-0.025143849,0.005046108,-0.046172865,0.057360422,0.043097433,0.029796047,-0.06622475,0.038550623,-0.016369069,-0.019641474,-0.024918295,0.022528263,0.0015154718,0.02787526,0.043577533,-0.0072713047,0.0019237251,-0.040867016,0.06887069,0.050951194,0.012074248,-0.046688713,-0.03124031,-2.5068446e-33,-0.10016911,0.028112562,-0.0401384,-0.06140711,0.006258111,-0.09555124,0.017432833,-0.15946397,-0.08175502,0.07448259,-0.058754932,0.040145807,-0.01816321,-0.0033283578,0.067348056,-0.005634595,0.017032975,-0.04060904,-0.042058125,0.00054264505,-0.07369565,-0.055591617,0.019360166,0.06510991,0.010450919,0.0058713164,0.098231055,0.0064502098,0.036925845,0.014818668,-0.056457143,-0.037959952,-0.05482312,0.0390427,-0.046244584,0.020641217,-0.0730346,-0.023321513,-0.050982416,0.022586325,0.07007227,-0.0029922742,-0.032012388,0.032427266,0.0054744817,0.011777813,0.0065747956,0.008486303,0.056209777,-0.048936132,-0.12670347,-0.005950404,-0.04805499,0.008049157,-0.04537996,0.025146663,0.059109833,-0.013316669,-0.048053768,-0.03235962,-0.0017410778,0.017585015,0.0020316844,-0.07929221,-0.08960176,-0.076300584,-0.029702459,-0.008659224,-0.044822834,0.012102005,-0.02472977,0.035057787,0.10851453,-0.07061883,0.09789714,0.04741446,-0.057226896,0.07148771,-0.03395109,0.08811086,0.0056797974,0.04203055,-0.026957326,0.07105774,0.037790496,-0.03457242,-0.075224444,-0.015513087,0.01784816,0.017635895,-0.08250098,0.04724151,0.026311789,0.011225101,0.016863933,1.8602792e-34,0.080504775,0.055956073,0.12095457,0.18467328,-0.02202925,0.026324747,-0.009805226,0.019353384,0.048943564,0.043176286,-0.043164764,0.09525228,0.00067280093,0.055527512,-0.006658729,0.031552516,0.056256548,0.03831455,0.03840237,-0.14593829,-0.06387839,0.05811041,-0.048910026,-0.059503905,-0.008539829,0.0425555,-0.050798375,0.026530951,-0.111460455,-0.0112923235,-0.06723468,-0.044202585,0.010209484,0.057343192,-0.020513209,0.05625024,0.014898467,0.08080806,-0.04623132,0.054104216,0.05189352,0.03027306,0.0033302237,-0.014937489,-0.022721702,-0.039647356,0.05860816,-0.0032515738,0.08413548,-0.03686064,0.043302488,0.08240201,-0.020878458,-0.022935685,-0.046873067,-0.023857666,0.03157661,0.09274707,-0.049247053,-0.052478135,-0.06597769,0.04480052,-0.015901376,0.05350021,0.07524603,0.031093845,0.004354139,-0.084992886,-0.029176172,-0.0043652644,-0.12490783,0.028883887,0.017305441,0.02690445,-0.010180945,-0.01809866,0.07475632,0.047570486,0.059825335,0.042554118,0.06238784,-0.0025318689,-0.043933716,0.061647426,0.009568673,0.04075002,-0.07053277,0.016133934,0.057546936,0.038781185,-0.022089407,0.060193278,-0.009341482,-0.036503434,-0.042842463,-1.7399664e-08,0.030744987,0.06604403,-0.068814985,0.06899809,-0.015515998,-0.039177217,0.03213668,0.042733755,-0.043055605,0.06953832,-0.015380044,-0.02595759,-0.017604498,-0.023525504,-0.015158428,-0.059580833,-0.034944102,0.10868784,0.015107476,-0.023412168,-0.01504188,0.06384146,0.015740747,0.072629705,-0.042506576,-0.028544933,0.0061491095,0.056980815,0.007742332,-0.02440421,-0.031133952,0.046986952,-0.0063080853,-0.0051440313,0.0059517156,-0.045954242,-0.10718257,0.03069919,0.020487158,-0.018974906,-0.03809688,-0.10934494,-0.10873563,-0.00550809,-0.03800179,0.031653814,-0.010281666,-0.018218657,-0.06778714,0.027611842,-0.06995872,-0.031062016,-0.028090661,0.017681655,0.0018731492,-0.01166904,0.017905766,-0.08421639,0.00075541454,0.006211122,-0.029643996,-0.085282095,-0.024124231,0.03343014} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.619565+00 2026-01-30 02:01:09.707545+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1815 google ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE 1 t 1818 Go Karts Mar Menor unknown Increíble. El trato amable de sus dueños Roberto y Diego es tan solo la bienvenida a una experiencia divertida, y que va a más con el paso de las vueltas a su circuito. Gracias por todo! increíble. el trato amable de sus dueños roberto y diego es tan solo la bienvenida a una experiencia divertida, y que va a más con el paso de las vueltas a su circuito. gracias por todo! 5 2024-01-31 01:52:39.833374+00 es v5.1 P1.01 {O1.02} V+ I3 CR-N {"Roberto y Diego"} {"P1.01": "El trato amable de sus dueños Roberto y Diego es tan solo la bienvenida a una experiencia divertida,", "V4.03": "Gracias por todo!"} {-0.058270924,0.033065815,-0.011242079,-0.001110877,0.028005319,0.011653555,0.054753337,0.11101171,0.012467718,0.008393516,0.09713314,0.05088128,0.047624774,-0.011806463,0.03261239,-0.016316531,-0.072217435,4.4643344e-05,-0.01134151,0.051884223,0.0852919,-0.06010112,-0.13779294,0.06093203,-0.027403839,0.044622917,-0.0089803375,0.0010574694,-0.049948793,-0.08826633,-0.09118238,0.0036620873,-0.018659018,-0.06084612,-0.03911578,-0.022645677,-0.02378939,-0.03138888,0.028600324,-0.022093784,-0.09996473,-0.053407647,-0.0529084,-0.010607802,-0.06084993,-0.08490248,-0.0042116377,0.019276349,-0.0137288,-0.07695017,-0.026255766,-0.03816407,0.10309767,0.034754656,-0.0036865738,0.074477196,-0.06461885,0.0040835203,0.07277238,0.04001487,0.049678385,0.03355735,-0.030458163,0.056311134,0.054404426,0.011092955,0.027863152,-0.030555435,-0.0075167855,0.06176717,0.1322897,-0.033525497,0.036150575,0.029347796,0.08508755,0.0518567,-0.055830784,0.03793568,-0.07381214,-0.0039558397,-0.009052499,-0.025391974,0.0088505205,-0.078383885,0.02949958,-0.013646752,0.09030606,-0.054058656,-0.020659085,0.011467493,-0.075594574,0.044093184,-0.05408649,-0.060549825,-0.059172727,0.025841877,0.031493254,-0.0026985048,-0.036514148,0.04764586,0.0708109,0.08681483,0.066405624,0.005106083,-0.025093243,0.013420291,0.07191384,-0.056446973,-0.035991292,0.01466675,-0.06322337,-0.041778017,-0.041268203,-0.006795456,-0.03560757,0.023813976,0.009187673,0.039683606,-0.05777193,-0.088267304,0.09458646,0.010146991,-0.036771838,0.06835249,0.011517464,-0.012655982,0.019044159,5.74555e-33,-0.03130391,-0.017623939,-0.0382494,0.039524816,0.011162848,-0.0047935876,-0.05779832,0.012946323,-0.052367732,-0.0185727,-0.04647693,0.077827886,0.013349921,-0.033210542,0.09869322,0.04051213,-0.06362702,-0.01176399,0.09727727,-0.022344545,0.051915392,-0.022857018,-0.012185445,-0.011102771,-0.08146911,0.05034447,0.027128445,-0.055253588,-0.04492758,0.042949334,-0.05310812,0.049531437,-0.009742491,0.044734467,-0.03860007,0.009723461,0.023515938,0.013465197,0.015593198,0.047744613,-0.0060358583,0.0038441971,-0.040258966,-0.050403994,-0.0006189491,-0.04662733,0.07738035,0.032995198,0.06726203,-0.014763381,-0.030201526,-0.08380626,-0.038839992,-0.0011639924,0.027412402,0.06291379,0.033991218,0.04894799,-0.0047530243,0.0058311997,0.038563572,0.012691139,-0.02016351,0.017426958,-0.054605834,0.043237653,-0.015788978,-0.0032044826,0.06586852,-9.896943e-05,-0.14694332,-0.05218841,-0.07551883,-0.009338165,0.017556507,-0.043435432,-0.034018565,0.042013172,0.069833845,0.07841514,-0.123922676,-0.039035063,0.01304334,-0.009360768,0.09648317,0.10278247,-0.0122549245,0.018767951,-0.050683375,0.11855939,0.05544255,0.06462914,0.08668674,-0.066381164,0.020150613,-7.616048e-33,-0.0771944,-0.02891766,0.07900648,0.016483633,0.019502807,0.023464452,-0.0830009,0.0022787587,-0.028001932,-0.09521345,-0.08250818,-0.058425024,0.04469776,-0.030355819,-0.075300016,0.008591319,-0.007921017,-0.055400934,-0.062972695,-0.019526258,0.037428733,0.06078807,0.10887752,-0.06392893,-0.08381288,5.1421826e-05,0.033660475,0.08497887,-0.054202747,0.01966239,0.06676278,0.030868731,-0.03215809,-0.010815699,-0.0294444,0.049557425,-0.060366012,0.06152976,0.011653336,0.034932338,-0.06576611,0.06097541,0.0031918415,0.036727507,0.010487614,-0.0056551713,0.02937458,-0.08700647,0.0049376376,-0.01350228,0.006582042,-0.050751098,-0.0828546,0.023539908,-0.048972942,-0.029885734,0.0190159,-0.07479815,-0.048280843,-0.053891707,0.044054035,0.059023272,-0.001706413,-0.005120281,0.09467086,0.013373486,-0.033560213,-0.0014557784,0.059530444,-0.004545802,0.0842778,-0.029199174,-0.13140249,-0.0028016015,0.0141288545,-0.0051517016,-0.11347441,0.035787627,-0.008931844,-0.0046705147,-0.067042336,0.031471882,-0.07355933,-0.10838247,0.0055823037,0.016802112,-0.050101552,0.009879121,0.05931695,0.03604915,0.023160113,0.09898417,-0.060076114,-0.059076052,0.015948066,-3.879661e-08,0.024503892,0.03711252,-0.05535605,0.058349412,0.05242527,-0.07796313,-0.051638037,-0.08026597,0.027243624,0.0799881,0.022688312,0.003774624,-0.011062109,0.029921595,0.0004901913,-0.006873161,0.03848316,0.12605853,-0.051648133,-0.00749788,0.046736393,-0.055741325,-0.033092372,0.044653416,0.054190002,-0.0032959762,-0.083208464,0.02020631,-0.03661277,-0.021261629,0.005649432,-0.018407863,-0.019385839,-0.034379113,0.019606126,0.032170653,0.02190042,-0.029611351,-0.058077935,-0.058281634,0.066076055,-0.006410854,-0.06915992,0.08057044,-0.03531754,-0.08750424,-0.02931123,0.010831992,-0.042611487,0.0020905372,-0.07614753,-0.050977733,0.012130242,0.0074860547,0.07288012,0.013220221,0.012284389,0.06886234,-0.091949776,0.03268902,0.02797448,0.018136289,0.0730297,-0.02668983} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:15.441773+00 2026-01-30 02:01:10.815118+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1817 google ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB 1 t 1820 Go Karts Mar Menor unknown La pista mejor mantenida que he visto, curvas preciosas y kars mantenidos.\nPara los cascos utilizan una máquina para limpiarlos. Tiene una pantalla grande y de buena calidad que te dice los tiempos.\nVolvería a conducir la pista mejor mantenida que he visto, curvas preciosas y kars mantenidos. para los cascos utilizan una máquina para limpiarlos. tiene una pantalla grande y de buena calidad que te dice los tiempos. volvería a conducir 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.03 {O2.03} V+ I3 CR-B {} {"E1.01": "Para los cascos utilizan una máquina para limpiarlos.", "O1.03": "La pista mejor mantenida que he visto, curvas preciosas y kars mantenidos.", "O2.03": "Tiene una pantalla grande y de buena calidad que te dice los tiempos.", "R3.05": "Volvería a conducir"} {0.008041912,0.071847886,-0.002131734,-0.03521956,-0.11175743,-0.022944018,0.04480865,0.045282304,-0.015933797,0.03448591,0.09228318,-0.040416557,-0.019674737,0.054933183,-0.017791273,-0.0036725865,-0.082298085,0.053067643,0.024528692,0.0949851,0.068033636,0.017607892,-0.12286968,0.05007336,-0.07367754,-0.031112012,-0.012153771,-0.0173532,-0.053325865,-0.050523993,-0.06417301,-0.0136206085,0.02068262,-0.020789828,0.02431326,0.019815752,0.06565361,-0.044393323,-0.04597775,0.08745443,-0.041638132,-0.07230666,-0.02034902,0.009303878,0.023290029,-0.035130985,-0.0023942252,0.0442095,0.0729799,-0.017211303,-0.0880355,-0.026664626,-0.03729598,0.014529449,-0.032862324,-0.007672996,-0.032366764,0.030360736,0.028549464,-0.006021663,0.046320666,0.069209546,-0.013004502,0.06425851,0.017253071,-0.0018525851,-0.0012483044,0.016868616,-0.078151025,0.10131039,0.113820724,-0.08117913,0.01319385,-0.042737808,-0.027968062,0.04540442,-0.053767543,-0.04839901,-0.003918488,-0.032087315,0.0037165603,-0.03748234,-0.12518263,-0.02535746,0.012302701,0.07657326,-0.00999927,-0.017525187,0.02427686,0.03693581,-0.04487382,0.06612944,-0.08213271,-0.023944538,-0.047403917,0.04606403,-0.00837194,-0.05167639,0.05127409,-0.005652044,0.12839133,-0.014619353,0.07636171,0.009017216,-0.033228178,-0.0028996088,-0.043229617,-0.028745757,0.0112497695,0.05598926,-0.053872358,-0.02707963,-0.039914526,-0.002475418,-0.06975979,-0.00057281373,-0.027888078,-0.023880241,-0.020871038,-0.084377475,0.013604054,0.060318563,-0.04019455,-0.039614625,0.026147915,-0.053296294,0.000632735,1.0910864e-32,-0.01296735,-0.043332465,-0.023964362,0.066375904,-0.033537656,0.01831136,-0.03196432,-0.08184469,-0.044315696,-0.038047135,-0.058989067,0.05179466,-0.026336968,0.018945698,0.016737694,0.045251407,0.024367474,-0.061427597,0.013117455,0.06592779,-0.09270846,0.05095322,-0.023731306,-0.03170243,-0.008197799,0.02820697,-0.013753272,-0.07843885,-0.13055281,0.06083945,-0.029159345,0.010826387,0.050154746,-0.06220812,0.0005864423,-0.031307135,0.030386968,0.032885734,-0.05822937,-0.0031425834,0.016887877,0.010355807,-6.7424524e-05,0.07645105,-0.01685183,-0.0036095062,0.04799989,0.08607561,-0.0054031354,-0.037481863,-0.02470902,-0.029586194,0.005712393,-0.036598615,-0.0046766424,0.013104688,-0.057550002,0.014201707,-0.07782372,0.0065966737,0.06929168,0.012200379,0.02907983,-0.050692443,0.027885238,-0.11868141,0.025951484,0.037724417,0.06178274,0.035647884,-0.03319815,-0.010329133,-0.04758053,0.009935321,0.043049254,-0.01835464,0.012688124,0.045055848,-0.009606256,-0.00838155,-0.022696815,0.0008615018,0.0651749,-0.010429244,0.05848316,0.09514463,0.054817665,0.040782128,-0.053773083,0.065529905,-0.015795762,0.06681283,0.02974831,-0.04296094,0.06053321,-1.3160372e-32,-0.021834774,0.016237795,0.05218476,0.059523657,0.0117302835,-0.0047263782,-0.052959535,-0.022477316,-0.045421183,-0.034881838,-0.09566447,-0.08998941,0.0783249,-0.0028391324,0.020433884,0.06945214,-0.0022327856,-0.06387528,-0.025170743,-0.00028263064,-0.037985437,0.02654138,-0.001688261,0.0008778902,-0.033601005,-0.057139788,-0.03547085,-0.053201336,-0.102663554,-0.021909777,0.06777438,-0.048515756,-0.037454464,-0.009208752,-0.026638713,0.061608475,0.035227347,0.037943486,0.036122385,0.040066488,0.05841981,0.005982519,-0.009149369,-0.08860234,-0.009899843,0.080010176,0.019201534,-0.09118759,-0.046059296,0.0044296556,0.10111768,-0.0029805158,-0.04822874,-0.024045587,0.09895877,-0.022469645,-0.04569713,-0.122828655,-0.05915264,-0.00045591133,0.03855467,-0.04048414,-0.095892064,-0.031893734,0.032575447,0.03355165,-0.038276665,-0.08447748,-0.032483596,0.03006864,0.08851066,-0.016339026,-0.056575183,-0.011273994,-0.012233709,-0.025113389,-0.091055736,0.009647487,0.052498527,-0.00042530478,-0.0004006558,-0.054188628,0.05868401,-0.03152612,-0.0015749497,-0.0004032271,-0.049015854,0.0570026,0.013944623,0.079824306,-0.018871492,0.028476125,-0.065225914,-0.07201555,-0.041500393,-4.8886942e-08,0.06561761,-0.04705133,-0.056937493,-0.055597764,-0.028840885,0.0300789,-0.037655074,0.01854752,0.1006799,0.14157368,-0.0041033877,-0.08217388,0.037214767,0.028666085,-0.019570816,0.091147974,0.12718318,0.09018229,-0.03353689,-0.071134984,0.005714035,-0.009697568,-0.03823306,0.010194331,0.014632071,-0.04199443,-0.052797128,0.06656562,-0.06279561,0.02757439,-0.011905134,0.015301627,-0.095739074,-0.1461162,-0.00038269165,0.028524539,-0.034335,0.0036836835,0.09694582,-0.041673176,0.068967104,0.06413824,-0.0070876256,0.07577883,0.014927321,-0.107335396,0.0438729,0.0029500758,-0.02184705,0.05834781,-0.045524485,-0.0026322368,0.13349277,-0.031688318,0.012636608,-0.03711121,0.12081124,0.047840476,-0.06307218,-0.018639542,0.05410142,0.085230194,0.019730065,-0.050151274} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:36.889145+00 2026-01-30 02:01:10.823373+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1819 google ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB 1 t 1822 Go Karts Mar Menor unknown Está bastante guay, tienes su entrada y los karts muy bien Y tienes cosa hay que pillarle truco está bastante guay, tienes su entrada y los karts muy bien y tienes cosa hay que pillarle truco 5 2025-06-04 00:52:39.833374+00 es v5.1 O1.02 {O2.03} V+ I2 CR-N {} {"J2.01": "Y tienes cosa hay que pillarle truco", "O1.02": "Está bastante guay, tienes su entrada y los karts muy bien"} {-0.0154559305,-0.011287369,-0.028571641,-0.087960824,-0.054935306,-0.00704285,0.06843638,0.03379019,0.026032332,-0.00020615428,0.026857134,0.051392443,0.03154804,-0.061877046,0.03807374,0.018187061,-0.08690097,0.03813518,-0.017851442,-0.07050395,0.013441289,-0.06621366,-0.12842697,0.08766423,-0.059253693,-0.044402752,0.005351892,0.003041816,-0.0111401,-0.088874534,-0.04324589,0.060063716,-0.043141447,0.00088929624,-0.024564894,-0.009675337,0.040337108,-0.05392314,-0.030366512,0.0026631956,-0.07169643,-0.03777649,-0.05394427,-0.008789221,0.027022582,-0.07217136,-0.05792369,0.0066224188,-0.038070668,0.02117638,-0.021577876,0.00030237244,-0.043957796,-0.0016630407,0.017254494,0.068469785,-0.036381945,0.030531315,0.0955422,0.04918468,0.1054192,0.059209894,-0.06307229,-0.041674,-0.037295938,-0.08692104,0.0787306,0.03224153,-0.045418654,0.07863225,0.090168126,-0.048379377,-0.012824249,0.052051675,-0.06958789,0.051813412,-0.039398503,-0.047993615,-0.11705165,-0.03472876,-0.0063802497,0.0124298,0.0255553,-0.0943521,0.002686422,-0.03753835,-0.048433546,0.06062339,0.026749274,0.020530298,0.013740961,0.038003627,-0.04950915,0.0015914603,0.021315156,0.06475232,0.022320364,-0.06245038,0.0023034255,0.05071904,0.08933353,0.04203278,0.11232251,0.03444495,-0.04083142,0.014194071,0.033031072,-0.06093305,-0.012050791,0.007750835,-0.032733295,0.0018856352,-0.03829872,0.04267678,-0.08536855,0.0067438344,-0.005208542,0.0026808067,-0.07844302,-0.08411632,0.09892986,0.1227177,-0.030639714,-0.015308617,-0.060023844,-0.055848114,0.043581814,9.907283e-33,-0.02363706,-0.005162493,0.044523504,0.04339693,-0.027895585,-0.030752327,-0.08705687,-0.040265486,-0.032771863,0.040983636,-0.047288887,-0.022116618,0.026615793,-0.052893095,0.069987185,0.031150052,-0.050839484,-0.040286202,0.07902251,0.06447892,-0.072674654,-0.028817568,-0.0013753326,0.012448577,-0.019190088,-0.01596075,0.035781264,-0.03974481,-0.110413134,0.061686356,-0.010866348,0.017344685,0.020496782,-0.02721569,-0.023655592,-0.08747743,0.036616597,0.04222811,-0.007006083,-0.023735145,0.1002441,-0.01761961,0.013093153,0.008203095,-0.052612916,0.045922194,0.08718826,0.0521725,-0.015201209,-0.025620842,-0.053060584,-0.077463776,-0.10204339,-0.035054997,0.038822535,0.049428277,-0.026405673,0.022881085,-0.0076194233,-0.04380764,0.07672873,-0.014202091,0.006415336,-0.08646708,-0.071274415,0.021935962,-0.02381145,-0.0083384225,0.033009604,0.058571685,-0.059380654,-0.007890585,-0.0219933,0.058841556,0.07997947,-0.008697694,-0.005815893,0.05363589,-0.046074428,-0.034330223,-0.04574838,0.030938638,0.025761176,0.014438013,0.031941615,0.008660789,0.07028694,-0.034705408,-0.07205849,0.09939942,-0.05425999,0.0994926,0.018453825,0.014529501,0.02337025,-9.574033e-33,0.06764831,-0.01148899,0.045692872,0.05252497,0.042542282,0.049217314,0.009871025,-0.05767132,-0.011812466,-0.03811899,-0.050582133,-0.074202344,0.035434484,-0.01292921,0.04177719,0.03853595,0.05634834,-0.054612327,-0.08076862,-0.0452676,0.0017763748,-0.006825122,0.015277114,-0.009873343,-0.0062464736,-0.060042992,-0.03959116,0.03848514,-0.069187835,0.07120163,0.05870683,-0.102907695,0.022466576,0.07946754,-0.06475342,0.023103084,0.10790791,0.0310616,-0.0069523402,0.01617649,-0.03299468,0.0758314,-0.04944608,0.0217683,-0.007896515,0.027075004,0.054654736,-0.094566375,-0.117159866,-0.0854551,0.12853046,-0.008197344,-0.01859097,-0.026472341,0.011903303,0.03064313,-0.02980398,-0.068659306,-0.07394175,-0.023111679,0.07932715,0.046926536,-0.0448083,-0.06652094,0.0989084,-0.019036578,-0.004535508,-0.0033597518,0.0049415873,0.05433022,0.034458898,0.0002731935,-0.062730074,0.047099,0.004912064,-0.07399436,-0.12503566,0.00477904,-0.0022943644,-0.019392077,0.0054289964,0.0151424445,-0.021529552,-0.05233388,0.054082002,0.031648073,-0.0075682,0.12702955,0.07813859,0.028154045,0.05452125,0.021046309,-0.06342485,-0.006450491,0.020265495,-3.5051873e-08,0.0052165776,0.0023555565,-0.12447963,0.017305039,-0.02397984,-0.031008093,0.015589507,0.047637764,0.08838103,0.021746626,-0.05752193,-0.032192815,-0.015892394,0.06948585,-0.042611837,0.08921329,-0.0025407216,0.052210737,0.01811208,-0.07926352,0.096971,0.010897397,-0.058389306,0.037778508,-0.026851436,0.032716226,-0.06865163,0.02342534,0.04962954,0.057833027,0.032178536,0.0034640797,-0.07037573,-0.089512594,-0.02236802,0.020890845,0.016334008,0.010011463,0.025795912,0.037344497,0.10105027,0.029688865,-0.089939274,0.005047392,-0.052292947,-0.045202482,-0.004141289,0.07515397,-0.02740754,0.036924962,0.0041556805,-0.032603335,0.11227053,0.042281598,0.021130519,0.0014050897,0.041277524,0.018809456,-0.022149613,-0.033561666,-0.01835121,0.01259919,0.040199585,-0.04770098} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:55.553+00 2026-01-30 02:01:10.830214+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1820 google ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE 1 t 1823 Go Karts Mar Menor unknown La verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida. Siempre hay mucha gente en verano. Recomiendo llamar y reservar. la verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida. siempre hay mucha gente en verano. recomiendo llamar y reservar. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.03} V+ I2 CR-N {} {"E1.04": "Siempre hay mucha gente en verano.", "J2.01": "Recomiendo llamar y reservar.", "O1.02": "La verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida."} {-0.0033451768,0.01988809,0.0017844851,-0.07011817,-0.03727398,-0.00088440004,0.04856918,0.043193977,-0.006853139,-0.005197955,0.04996408,-0.032675326,-0.050216377,-0.025815023,0.037109002,0.049492575,-0.038383987,0.03309262,0.051422834,0.041222762,0.016922051,-0.016044885,-0.03264772,0.09189604,-0.08994399,-0.009465228,0.016831717,0.004110314,-0.07203796,-0.0789937,0.028336741,0.10805832,-0.02222086,-0.018999515,-0.021456946,0.023805229,0.021673482,0.024482872,-0.003961568,0.078496486,-0.05993063,-0.028595498,-0.006692191,-0.02806359,0.057332832,-0.011553792,-0.0017590163,0.03976414,0.055853013,-0.008598814,-0.03334075,-0.0073842593,-0.032712653,0.0037185112,0.007088776,-0.015545839,-0.0037335185,-0.038340244,0.05775422,0.045380477,-0.0007229274,0.028982041,-0.030645994,0.009175234,0.04197333,-0.075323485,0.060331754,0.009558126,-0.05357876,0.017148463,0.119000815,-0.007859169,-0.009800024,-0.016797516,-0.09411935,0.0315179,0.061133474,0.05294456,-0.04896519,0.044741433,-0.03006146,0.007745145,-0.050441455,-0.04318305,0.013751897,0.019701216,-0.07233378,0.038215104,0.039220136,-0.014802658,-0.018954026,0.03400016,-0.04970375,0.0032781572,0.0610467,0.05453361,-0.05263655,-0.13374257,-0.02093519,0.010824386,0.050319515,0.009490662,0.014104835,-0.0032731441,-0.06798666,-0.005869371,0.061009258,-0.045750525,-0.06321181,-0.01027505,0.031147148,-0.0035659638,0.034488883,0.006226773,-0.09339137,-0.006869577,-0.00027635938,-0.07841517,-0.010942208,-0.11772724,0.014970085,0.04784236,-0.09196186,0.0053753145,-0.042066388,-0.078159,0.06341863,1.0180755e-32,-0.020502422,-0.047041707,-0.031365722,0.06531227,-0.0131102875,0.0325504,0.00011985163,-0.08608249,-0.096469134,-0.04341674,-0.07711015,-0.0071730637,-0.009697698,0.023479922,-0.04074585,-0.01745681,0.037497293,-0.013679686,0.053755123,0.027708823,-0.05355614,0.0077803945,-0.029496692,0.013955533,0.0063317013,0.016975803,-0.0032306327,-0.060844947,-0.0866715,0.05512204,-0.05700983,0.0076065175,0.027646767,-0.0069032176,-0.047254626,-0.07282669,-0.0035913482,0.0622033,0.0092966715,0.037968192,0.060632735,0.065295324,-0.03745396,0.038362037,0.03614068,-0.065577306,0.07010434,0.055049997,0.054832377,-0.0020696295,-0.0059312005,-0.065924644,-0.075801544,-0.06269893,-0.051585604,-0.016900187,-0.031478122,0.033004552,-0.0264605,0.003554613,0.021104058,0.016195418,-0.015253928,-0.1044723,-0.022466393,0.012649614,0.017936954,0.060131285,0.12715773,0.053657528,-0.05784104,-0.041672647,-0.095115215,0.06702985,0.023816133,-0.06024786,0.036811244,0.059691615,0.021628676,-0.00039580383,0.013070901,0.0627394,0.05166547,0.046829585,0.090408,0.09347641,0.06926373,0.07038439,-0.07292592,0.09937731,0.028260926,0.06339659,0.07847737,-0.023462884,0.041490827,-1.0193496e-32,-0.034330413,-0.03161906,0.010071187,0.05944221,-0.029546564,-0.0026518058,0.0014705466,-0.026353342,-0.0907501,-0.08700657,-0.09382276,-0.056522537,0.10949329,-0.0477108,-0.03010125,0.05488859,0.0021395322,-0.041572195,-0.06752284,-0.023463735,-0.02514177,0.029714335,0.120151706,-0.05591517,-0.036475472,-0.046103314,-0.028657282,0.026810477,-0.063467875,0.012368714,-0.025706984,-0.040101685,-0.03244074,0.013850464,0.0018587061,0.061885986,0.03447728,0.03166926,0.012487344,0.07088753,-0.06338123,0.08177331,-0.006833372,0.042288717,-0.038845897,0.06258065,0.0077503123,-0.11194432,-0.038412467,-0.046719752,0.016155647,-0.05277416,0.018543951,0.009806517,0.062973626,-0.0681404,-0.051933136,-0.09799843,-0.052776366,-0.0060738763,0.06558287,-0.049186166,-0.029729519,-0.09611229,0.16206059,0.043374334,-0.05995039,-0.051438797,-0.03920877,0.075940385,0.10798446,0.016832033,-0.05494887,-0.010550665,0.0064564217,-0.0077309203,-0.1185977,0.005972931,0.013627756,0.12510912,-0.052956965,0.039320525,0.020846017,-0.07196308,0.00020670761,-0.040230885,-0.012456099,0.05163752,-0.043816917,0.014743709,0.012548423,-0.030924795,-0.049720608,-0.04769081,0.058758188,-4.0483613e-08,0.019551685,-0.07236528,-0.06813486,0.0123652285,0.052050132,-0.01046867,-0.073436216,0.05686473,0.04931308,0.05070186,-0.010897824,-0.013790593,0.05181564,0.058264557,0.0023695594,0.04088649,0.11813858,0.08244021,-0.02659123,-0.03823193,0.117362976,-0.020728976,0.0076822224,0.013953057,0.008323734,0.043360375,-0.056607734,0.013385635,-0.023760587,-0.013706467,0.0032602826,-0.09297254,0.0055683013,-0.05419426,-0.04209821,0.009377335,-0.01238718,0.06317918,0.040861946,-0.019638648,0.1121912,-0.001510504,-0.047605943,0.06082346,-0.06479821,-0.10695048,0.0005012453,0.019770283,-0.05315682,0.011405273,0.04335527,-0.027359197,0.11421393,0.016084595,0.01505269,-0.04277198,-0.0030430509,0.02001447,-0.015055398,-0.0029391178,0.0077840374,0.1529984,-0.026244523,-0.05506457} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:03.996912+00 2026-01-30 02:01:10.834091+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1821 google ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB 1 t 1824 Go Karts Mar Menor unknown Sitio muy agradable para pasar un buen rato entre amigos o en familia, personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática. sitio muy agradable para pasar un buen rato entre amigos o en familia, personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática. 5 2026-01-30 01:52:39.833374+00 es v5.1 P1.01 {P2.01} V+ I3 CR-N {} {"E1.04": "Sitio muy agradable para pasar un buen rato entre amigos o en familia", "P1.01": "personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática"} {-0.03261122,-0.018480463,0.03296379,-0.061681,-0.047514256,-0.0031352178,0.0857139,0.0013673156,-0.055260863,0.03655923,0.04274949,0.0061205695,-0.029267272,0.02852602,-0.008866422,0.024193158,-0.046995915,0.051995832,-0.010604159,0.021478616,0.07771334,-0.03025191,-0.06448695,0.08720006,-0.07947148,-0.0622785,0.043219,-0.046374045,-0.03964927,-0.014306609,0.025292506,0.0994393,0.08124425,-0.06468409,-0.0118433,0.005225724,0.055046063,-0.043895498,0.07037609,-0.01340055,-0.053532746,-0.026662746,0.032772534,-0.05846903,-0.013957446,-0.10251074,0.092332594,0.010707587,0.034724627,-0.035490658,-0.091374286,0.008817888,-0.033483107,-0.008901895,-0.009447973,-0.0026087547,-0.021361582,-0.061876114,0.012233007,0.02666802,-0.04971529,0.03163997,-0.0072972653,0.031489555,0.00066192023,0.011565232,0.00015991907,-0.024236068,-0.06673561,0.046006102,0.05918238,-0.09538836,0.00051730836,0.013461377,-0.006381805,0.009334619,-0.025184834,-0.0059956117,-0.012981253,-0.053746484,-0.05778807,-0.0276708,0.0027432723,-0.012446313,0.011736018,0.0036609184,-0.031290945,-0.007747461,-0.01620908,0.02054628,-0.0018051643,0.07085431,-0.07298821,-0.03333455,-0.010434998,0.0037180483,0.027694007,-0.0537497,0.03398207,0.043521058,0.038649023,0.08276118,0.06579586,0.04815668,-0.07271301,0.039445907,0.020063011,-0.11371899,-0.006137977,0.046469,-0.08150195,-0.002636304,-0.070953116,-8.434125e-06,-0.10313861,0.07364438,-0.0017927156,-0.064702205,-0.037302103,-0.05771234,0.033439636,0.046777558,-0.044695213,-0.016214421,-0.0019312119,-0.12267669,0.045906663,1.0938738e-32,-0.037314698,-0.044878155,-0.00964504,0.006603456,-0.031204786,0.041154705,-0.009563043,-0.045940436,-0.024317795,-0.038620636,-0.024351507,0.051831428,0.048052303,0.0514254,0.040985756,0.082127504,-0.004217087,-0.0064979135,0.05717449,0.037923098,-0.035197467,-0.02492669,-0.068099186,1.7941577e-06,0.01670403,0.040047016,0.0054071215,-0.06316848,-0.01127736,0.08287811,0.024886603,-0.009529468,-0.026606675,-0.084840715,-0.06763549,-0.083046675,0.016114585,0.034984335,0.032684844,-0.010768161,0.05551483,0.028185882,0.013339644,0.038216982,-0.018321052,0.051579773,0.10069815,-0.04657064,0.0386179,0.032304034,-0.06373207,-0.1241517,-0.04289158,-0.0055607464,0.022347052,-0.054395445,-0.023754437,0.08943944,-0.049622066,-0.043227527,0.0638287,-0.05817836,0.0046882643,-0.06838244,-0.04153141,-0.033862185,-4.188691e-05,0.047176547,0.14529938,0.03451401,-0.068888985,-0.02145889,-0.1086058,-0.0199773,-0.046888337,0.04131102,-0.0012293793,0.023147436,0.041053627,0.030804712,-0.026452715,0.051339477,0.008987812,0.025109082,0.06641105,0.052800506,0.055524264,0.08416295,-0.0721363,0.09107967,0.038926553,0.040278837,0.05545884,-0.020589622,-0.010199174,-1.17533485e-32,-0.038728725,0.051469274,-0.017522264,0.07814019,-0.019871725,-0.030653698,-0.047258407,0.012460447,0.0027968702,-0.025065575,-0.13612035,-0.12815411,0.13083273,-0.02653122,-0.028543664,0.12656015,-0.009953866,-0.049165256,-0.100911416,-0.0514157,0.035787184,0.039011057,0.06885713,-0.080579765,0.016765296,-0.06277266,-0.026541965,0.009310926,-0.026089603,0.04982145,0.030775674,0.01283156,-0.08939943,0.03777595,0.01102575,0.019489164,0.060111593,0.028157806,-0.021880807,0.021075917,0.05506329,0.05855286,-0.012333412,0.019485863,-0.013074607,0.011451441,-0.021352408,-0.14448367,-0.03974891,-0.06210192,-0.02381203,-0.06009886,0.049566243,-0.055396352,0.047553133,-0.059773184,0.006859905,-0.06157389,-0.08910007,-0.04257906,0.049802925,0.008625399,-0.07799977,0.012984885,0.019714968,-0.006706468,-0.07968237,-0.016481392,-0.07141275,0.08905494,0.076564595,-0.027906781,-0.06185339,0.04715859,-0.03682793,0.05313671,-0.027754668,-0.006225131,0.02140746,0.041404482,-0.0064544627,-0.011083896,-0.001167683,-0.09671813,-0.00097415654,-0.04827987,-0.049529534,0.07918461,0.025343293,-0.017819948,0.027372649,0.017504252,-0.035690013,-0.07306829,-0.023235867,-4.3928353e-08,0.001881961,-0.16023944,0.0027328068,0.035956554,-0.050201308,-0.008882576,-0.0117762,0.018401366,0.025526669,0.08207395,-0.047758155,-0.07622314,0.02725502,0.054919533,0.014066649,0.09059243,0.1537276,0.046650156,0.005052842,-0.008268157,0.09559696,-0.010570669,-0.040387016,0.07912471,-0.048709363,0.054227427,-7.6695826e-05,0.01025027,-0.044460025,0.009398813,-0.010237957,0.022026202,-0.0015347489,-0.048034802,-0.020634593,-0.03504043,-0.035743214,-0.012493475,-0.02630028,0.03938929,0.1120407,-0.0027555681,-0.043275107,0.008976665,0.08471809,-0.029005079,0.01853169,0.028330736,0.011803602,0.012839944,0.0051519903,-0.025997972,0.060693324,-0.030411063,-0.019630605,0.009044005,0.035844084,0.045300517,0.054362167,-0.03954425,0.06450212,0.16579515,-0.020347105,-0.047823764} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:10.456974+00 2026-01-30 02:01:10.838612+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1540 google ChdDSUhNMG9nS0VJQ0FnSUNZM2FmSTVRRRAB 1 t 1543 Go Karts Mar Menor unknown Nice outside track. Choice of f300 and f400 karts. nice outside track. choice of f300 and f400 karts. 4 2020-02-01 01:52:39.833374+00 en v5.1 O3.02 {E1.03} V+ I2 CR-N {} {"O3.02": "Nice outside track. Choice of f300 and f400 karts."} {-0.016227646,0.054777067,-0.009408291,0.07086883,-0.004983399,0.020140622,-0.049464088,0.06209515,-0.030527705,0.0037830046,-0.020168371,0.02598337,-0.030571528,-0.010321162,0.03786658,-0.00340512,0.064264975,-0.028823124,-0.005492901,-0.033928514,-0.115959644,-0.048864793,-0.0011286818,0.022040285,-0.14589246,0.018104766,-0.019007836,0.0718255,-0.048896596,-0.067333356,-0.071054555,0.017483361,0.022049742,-0.0240059,0.012692946,-0.068370976,0.008024568,-0.038222518,0.0015604283,-0.046169065,-0.057480603,-0.011103618,0.008384112,0.015142356,0.0386735,0.028641818,-0.031914987,0.02605563,0.07931457,0.047087777,0.06400728,-0.027551712,-0.020732945,0.029926071,-0.019695768,0.0008607979,-0.04863644,0.033536375,0.06039469,0.0075187413,0.056796588,-0.018207671,-0.08808291,0.003834419,-0.039542466,-0.04269007,-0.07623058,0.032581653,0.034077857,0.060511507,0.025890341,0.07010882,-0.003719202,-0.078458965,0.026477745,0.03538683,-0.03270389,0.021317745,-0.10743618,0.03215498,0.036878027,-0.008948989,0.016641727,-0.104860164,0.01264871,-0.034784306,0.030694004,0.035631955,0.018035067,0.034982886,-0.07036585,0.054899693,-0.096218854,-0.045150593,-0.035786986,0.026064316,-0.0114530325,0.030775718,0.0042961435,0.030148223,0.059150025,0.003930963,0.07005121,0.084025756,0.024875239,0.0038098523,-0.033165544,0.08059543,-0.00086046004,0.0006835092,0.025203688,-0.0148941185,-0.032735772,-0.034055103,-0.054672357,-0.053520907,-0.027533345,0.068658,0.09424168,0.00090566423,-0.0142609235,-0.062588766,0.031084595,0.042419873,0.0059415423,-0.036600903,-0.010574117,-6.4580677e-34,-0.045436956,0.08560133,-0.053706802,-0.09253411,0.074409775,-0.087402806,0.01264536,-0.13060182,-0.0860482,0.084229946,-0.035065543,0.026604827,-0.0027397778,-0.031587828,0.08852805,-0.10609875,-0.014908942,-0.0025591978,-0.12687342,0.028102314,0.031336073,-0.006084848,0.08011556,-0.009779155,0.11920329,0.011320633,0.042757124,0.026814349,-0.06181224,0.018069517,0.01654684,-0.016733443,-0.0075053633,0.0042739375,-0.004948923,-0.008649058,-0.062339123,-0.07747938,-0.031247847,-0.023483366,0.030396026,0.0071484228,-0.034414504,0.018715061,-0.0032645275,0.04024514,0.038431168,0.07463514,0.0431508,0.021477075,-0.036032427,-0.009092797,-0.05739976,-0.048716903,0.0022486267,-0.044985466,0.08466223,0.0042386306,-0.061603867,0.026643323,0.059336428,0.012046609,0.028825166,-0.07209118,-0.049117025,0.009510569,0.017851029,0.031794913,-0.018267158,0.07079874,-0.018199751,0.008133161,0.088427775,0.0060528317,0.106323734,0.017142339,-0.053788863,-0.04130147,-0.054467544,0.009250597,-0.051245723,0.023513515,-0.09048018,0.030011931,-0.019700447,0.0002375451,-0.079618305,-0.0009802094,0.012585268,-0.0073886286,0.00029714592,0.030440096,-0.02007473,0.090815835,-0.030997738,2.4445918e-34,0.06829974,0.09826423,0.10981534,0.059232805,-0.004059672,0.04893874,0.08255167,0.007437629,0.07228676,0.14395641,-0.0017126914,0.048586432,-0.006686061,0.056740925,-0.04350138,-0.019245097,0.03964459,0.024363223,0.051409166,-0.09895253,0.049670614,0.06561907,-0.016198315,-0.03695287,-0.025500186,0.033874862,-0.0302281,0.026490329,-0.10701168,-0.08562846,-0.064350896,0.024925038,0.05390999,-0.06458327,-0.03607923,0.0067403344,0.06664914,0.01827457,-0.040922705,0.0110918395,0.027115783,0.07333489,0.03572262,0.074519515,-0.061446056,-0.02699131,0.042531382,0.05634488,0.022292987,-0.01564157,0.027601987,-0.0024182335,-0.052019805,0.033490248,-0.060779586,-0.057261955,0.037568413,0.016816383,-0.1050977,0.014838211,0.004326708,0.02947009,-0.013633034,0.03463683,0.06004646,-0.014172264,-0.010828796,-0.018091945,-0.049357705,0.12156101,-0.0716666,-0.015239135,-0.028695479,0.0051262793,0.010284396,0.0053316955,0.047922622,0.054909293,0.089599855,0.10278337,0.012954836,-0.029099127,-0.017128883,0.107018135,0.052146856,0.02085585,-0.09936334,-0.04772393,0.05406777,0.017451277,0.11720626,0.050741255,0.0009704721,0.062958226,-0.074709825,-1.8555763e-08,0.015793761,0.102125674,-0.102952845,0.037070643,0.012693722,-0.048961446,-0.002292336,-0.009390954,-0.09060035,-0.021873945,-0.015661916,0.015728375,-0.005978959,0.02041517,-0.009853903,-0.042041518,-0.015421451,0.11475369,-0.019419974,0.035037696,-0.020618247,0.012700925,0.0028154387,0.066486195,-0.04757473,-0.08691785,-0.010754667,0.02345096,0.084899835,0.030189332,-0.034630965,0.07232189,-0.035809804,-0.007634239,-0.004939502,-0.0380853,-0.06359695,0.09732629,-0.07898644,0.050176423,0.01805877,-0.10526901,-0.11647921,-0.044141836,-0.02366848,0.013599429,-0.04281338,-0.08276762,-0.08669151,-0.0011603244,-0.025045866,-0.027696507,-0.047188155,0.05818639,-0.0012613271,0.035942636,-0.03659499,-0.02580902,-0.0567104,0.008456414,-0.05063273,-0.083248734,0.0073200096,0.038635958} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.63351+00 2026-01-30 02:01:09.710202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1831 google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE 1 t 1834 Go Karts Mar Menor unknown Uno de los mejores lugares para pasártelo genial con tus amigos y familia. Además los karts y la seguridad es máxima, la atención y simpatía de los trabajadores increíble y encima en su restaurante se come de lujo, k más se puede pedir.\nRepetiremos seguro. uno de los mejores lugares para pasártelo genial con tus amigos y familia. además los karts y la seguridad es máxima, la atención y simpatía de los trabajadores increíble y encima en su restaurante se come de lujo, k más se puede pedir. repetiremos seguro. 5 2022-01-31 01:52:39.833374+00 es v5.1 O4.04 {} V+ I3 CR-B {} {"E4.01": "Además los karts y la seguridad es máxima", "O2.03": "encima en su restaurante se come de lujo", "O4.04": "Uno de los mejores lugares para pasártelo genial con tus amigos y familia.", "P1.01": "la atención y simpatía de los trabajadores increíble", "R4.03": "Repetiremos seguro."} {-0.0020682884,-0.03041834,0.029922232,-0.022804467,-0.08915113,-0.026514923,0.06113556,-0.013279637,0.017063813,-0.03060879,0.13263373,-0.011319363,-0.009283896,-0.049060766,0.035027433,-0.0055506118,0.020047648,0.025775706,-0.035220765,-0.061109062,0.08529591,-0.093401,-0.083803505,0.052061323,-0.10449321,-0.028138002,0.051261306,0.01759179,-0.056139175,-0.03808806,-0.004442798,-0.01977589,0.09518421,0.015217426,-0.03684374,0.04220991,0.056876767,-0.09981708,-0.0019091037,0.02755761,-0.106414974,-0.031098137,-0.044923473,-0.07736238,0.016118005,-0.062416993,-0.06493716,0.039057977,-0.06257563,-0.0036293697,-0.029608384,-0.0049833106,0.0016255387,0.028491817,0.0327605,-0.045797724,-0.066575125,-0.02602886,0.13093035,0.06460248,-0.019364791,0.08226898,-0.03914102,0.007000848,-0.027560335,-0.07881631,0.055287067,0.015447339,-0.0746424,0.07316462,0.048516992,-0.07883708,0.0050717955,0.037939638,-0.004437745,0.020356648,-0.021472711,-0.02449218,-0.10730721,-0.023460427,-0.026185155,-0.031794276,-0.016579738,-0.054475714,-0.032210685,0.0007046707,-0.04292393,0.021908356,0.032410692,0.032477062,-0.07006629,0.0038008674,-0.052844666,-0.061621867,0.019339377,-0.007761975,0.00028142807,-0.10994096,0.029724527,-0.0020668032,0.04053781,0.07322967,0.10723065,0.058207456,-0.060273554,-0.019893631,0.015207537,-0.006038519,-0.013067896,0.035723094,-0.042576652,0.01883116,0.0026222826,-0.005810151,-0.1194126,-0.03807595,-0.00402523,-0.039529644,0.021025652,-0.040659957,0.054173127,0.01910288,-0.06957642,0.012208058,-0.023967622,-0.06198061,0.05869075,1.2590106e-32,-0.086417265,-0.012839353,0.02493597,0.066407286,0.06311479,-0.007253482,0.026725914,-0.016104572,-0.040050004,-0.018285431,-0.041558523,0.04522228,0.03049355,0.036501132,0.051340636,0.032595005,-0.006576762,0.00898354,0.04018934,0.08045602,0.0023874398,-0.038147744,-0.009239425,0.025530938,-0.027468624,0.024564184,0.009082753,-0.027495908,-0.06938582,0.05117873,-0.005207346,0.015854444,0.039171863,0.018971851,-0.08778674,-0.019710314,0.094477214,0.001822883,-0.04571415,-0.056070283,-0.01736059,0.019385623,0.008645801,0.056022406,-0.021977404,0.10092301,0.09864119,-0.05343639,0.059229698,0.03722664,-0.04635624,-0.0821608,0.0029212574,-0.073559664,-0.017574366,0.02240538,-0.04444468,-0.017899543,-0.0010500519,-0.047675062,0.045220066,-0.017726563,0.018054161,-0.018687721,-0.015586568,-0.081666395,0.06613556,0.00020167552,0.10508984,0.04063938,-0.072227865,-0.03808976,-0.029229349,0.017099824,0.015146109,0.014389862,0.01591888,0.010727727,-0.004655836,0.050371725,-0.024771942,0.05572744,0.018876875,0.005356443,0.10188127,0.06111542,-0.0025081914,0.050881572,0.0026442264,0.1376471,-0.028017512,0.054300997,0.0372209,0.007743742,0.0041472535,-1.4355075e-32,-0.03253297,0.030119274,-0.036646042,0.052872654,-0.052723993,0.012231296,-0.0010447721,-0.026931023,-0.005926667,-0.037889436,-0.13083555,-0.1009464,0.058334675,-0.037205275,-0.046742853,0.09064606,0.055758063,-0.06666407,-0.07333614,-0.020204302,0.011915324,0.099353775,0.09755727,0.015566635,0.0045613027,-0.036003847,-0.0052042976,0.06772582,-0.1566504,-0.039638035,0.01685629,-0.069908135,0.062898666,0.028898174,-0.054197486,0.006404468,0.009325284,0.07519492,-0.03407701,0.045001082,0.06944887,0.04859112,-0.03021075,0.06173874,-0.012827771,0.004060062,0.045850974,-0.17103952,-0.014585768,-0.07719406,0.04719872,-0.03587364,-0.08745462,-0.051434416,0.02922857,0.004820101,-0.008573654,-0.03367834,-0.07061082,-0.02403765,0.05478767,-0.0063407384,0.010580998,0.026430622,0.0817038,-0.0144267855,0.03941544,-0.032913234,0.021627318,0.031378005,0.05382945,-0.0210895,-0.05868045,0.039473303,-0.014509515,-0.07529135,-0.118055455,-0.0064801387,-0.04196149,0.012536652,0.03222602,-0.037586793,-0.00087761506,-0.029140808,-0.04505252,-0.08054806,-0.0031874208,0.101976156,-0.01533347,0.010487334,-0.0065458417,-0.000107351625,-0.023794,-0.058295712,-0.0110492585,-5.3042886e-08,0.056204475,-0.045623027,-0.04971486,0.037030797,0.011561348,-0.071556166,-0.020332277,0.053062122,0.04620682,0.065423004,-0.08767901,0.004602475,0.004112877,0.06872235,0.030150067,0.050030604,0.08076971,0.056785956,-0.031746436,0.0005946114,0.039121587,0.038264357,-0.0017757983,0.021989826,0.03532483,0.023512553,-0.05330144,0.021138392,0.026393602,0.009018457,-0.034754578,-0.05058693,-0.064155854,-0.025705656,-0.055615697,-0.09471212,-0.06952205,0.017847952,-0.011075067,-0.029610235,0.04025296,-0.014135064,-0.052456394,0.026375998,-0.090289526,0.054561388,-0.04893956,0.060548533,-0.008506284,0.059341595,-0.056168847,-0.07431539,0.05298904,-0.022196576,-0.0031105028,-0.087068856,0.051273834,0.015955424,0.07235078,-0.033501405,0.05949222,0.15521267,-0.00023846366,-0.059437986} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:31.111784+00 2026-01-30 02:01:10.883074+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1811 google ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE 1 t 1814 Go Karts Mar Menor unknown El personal es agradable y atento. Tienen una pista en condiciones de uso bastante aceptable.\nLos Karts están en buen estado. Quizás debería mejorar su nivel de frenada. Pero es una buena actividad en la que divertirse en grupo. el personal es agradable y atento. tienen una pista en condiciones de uso bastante aceptable. los karts están en buen estado. quizás debería mejorar su nivel de frenada. pero es una buena actividad en la que divertirse en grupo. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.03 {O1.02} V± I2 CR-N {} {"O1.03": "Los Karts están en buen estado. Quizás debería mejorar su nivel de frenada.", "O1.04": "Tienen una pista en condiciones de uso bastante aceptable.", "O1.05": "Pero es una buena actividad en la que divertirse en grupo.", "P1.01": "El personal es agradable y atento."} {0.008826538,0.04403028,-0.019656396,-0.032378737,-0.047396526,0.00060962065,0.13742733,0.03809345,0.047316577,0.0367196,0.08526133,0.021538036,-0.019653885,-0.008815005,0.067681976,-0.04932474,0.00022575559,0.0024534056,-0.0107134925,0.045360506,0.06488605,-0.043063525,-0.06168072,0.05617357,-0.11015105,0.008304853,0.020571345,-0.04213657,-0.030583348,-0.0707196,-0.049536992,0.07417435,0.0809506,-0.0059062545,-0.06214939,0.00461971,-0.016093342,-0.030303242,-0.073049374,0.029605888,-0.06720788,-0.08100201,0.01150248,-0.04526091,0.030310428,-0.08171686,-0.02203007,0.036830507,-0.020120408,0.035460286,-0.019574953,-0.033510767,-0.01902048,0.01887621,0.07652075,-0.035028994,-0.09856626,-0.014995773,0.096007526,0.09250529,0.058946162,-0.014784436,-0.05229784,0.020309815,0.049273044,-0.030461438,-0.0056053014,0.023383979,-0.07770692,0.026327234,0.06352134,-0.04988091,-0.049915574,0.008381233,0.04370874,0.020157633,-0.0553872,-0.048552066,-0.07124344,0.021844344,-0.01684797,-0.02084864,-0.021342654,-0.03139304,-0.0018290362,0.026949603,0.015715633,0.030555015,-0.009444559,0.01948512,-0.06256172,0.0976328,-0.05076075,-0.038805116,-0.053786423,-0.014027797,-0.023173252,-0.051073022,-0.02137074,0.03232317,0.10788697,0.070378855,0.005102929,0.053379364,-0.09410145,0.008371372,-0.008122228,-0.059891593,0.014869098,0.07320435,-0.10128882,-0.04104069,-0.11264084,-0.0711882,-0.059977397,-0.009038699,-0.077040665,-0.057667676,0.023677623,-0.020627387,-0.0014474334,0.056151893,-0.008314535,-0.014825634,-0.024396302,-0.05210882,0.036958743,6.1242554e-33,-0.06639797,-0.0018781932,0.0044664647,0.028262826,-0.005785734,-0.038075306,-0.053754482,-0.072616965,-0.0055952137,-0.049259584,0.045047812,0.17696728,-0.019271182,0.02286955,0.13575162,0.04829918,-0.035277225,-0.024926063,0.080734596,0.039765723,0.029121729,0.033849053,-0.023962647,0.027114823,-0.011583908,-0.047035802,0.037969038,-0.009074122,-0.039154068,0.044096947,0.025495343,0.00010962411,0.027163876,-0.046123147,-0.013893984,-0.019864285,0.027032752,0.012225216,-0.050740305,-0.020134002,0.008935676,-0.030378014,0.018091615,0.044157006,-0.015603111,0.081776604,0.09965032,0.045028236,-0.01282446,0.03812921,-0.05659194,-0.012500752,-0.012903958,-0.021031117,-0.035239212,0.017625907,-0.049791396,-0.024555646,-0.06440791,-0.06745647,-0.0066715796,-0.0024612336,0.042742606,-0.052764434,-0.065043665,-0.04260704,0.017941078,0.06057354,0.1417373,0.037347596,-0.08260854,-0.00638549,-0.028000563,0.043168586,0.09612476,0.03999619,0.007255698,0.073847026,-0.076814875,0.04732789,-0.012191554,0.011101369,0.007499774,0.027925745,0.05229744,0.08373021,0.030820694,-0.067476824,0.008513012,0.1591309,-0.040071413,0.07243193,0.016789172,0.05474512,0.017883288,-9.143849e-33,0.009315315,0.006366875,0.028931005,0.03825873,0.07747109,0.0049279267,-0.010850805,-0.035034984,-0.02858291,-0.045261838,-0.12981015,-0.109462224,0.09134014,0.025972268,-0.029516267,0.0379222,-0.008227925,-0.059861213,-0.0713739,-0.056975204,-0.06610515,0.06720742,0.05558441,-0.012681228,-0.0042436826,-0.022207918,-0.12102407,-0.020791605,-0.07256402,-0.04183344,0.06096011,-0.06503285,-0.028609589,0.02079396,-0.08492819,0.040689502,0.06504772,0.006206737,-0.017083267,0.09966721,0.031756952,0.08618861,0.00298947,-0.022833198,-0.03360568,-0.022655811,0.031802025,-0.2107131,-0.039088197,-0.07009545,0.046696313,-0.011846777,-0.0055593927,-0.06817219,0.048469864,-0.018121323,0.05832892,-0.03962753,0.0019777375,0.010292144,0.0454861,-0.04101219,-0.05435145,-0.013491911,0.08080521,-0.049353912,0.0033489577,-0.014080167,-0.06976274,0.034169853,-0.007756405,-0.05395248,-0.02659683,0.031214446,-0.009000182,-0.02910898,-0.00034162117,-0.040968295,-0.0021648502,-0.00860338,-0.00079852145,-0.071597226,-0.061186135,-0.04461765,-0.016288914,-0.051890463,0.011216904,0.038700413,0.009094287,0.013335461,-0.002776506,0.079660565,-0.09567393,-0.064902864,-0.05304621,-4.3255262e-08,0.029731588,-0.027551156,-0.041220307,0.07097509,-0.009033774,-0.062458113,-0.016084123,0.023444682,0.008974042,0.05781062,-0.008829343,-0.006071684,0.005362833,0.050508358,0.019347947,0.016696947,0.077532664,0.06876335,0.008041285,-0.033621274,0.027828611,0.0009054072,-0.046393532,-0.006013192,-0.0944253,0.017022684,0.009106895,0.0016367879,-0.00752115,0.06685379,-0.05231906,0.030933458,0.042589787,-0.048942752,-0.062087085,-0.06227754,0.01779481,0.028197795,0.0018028346,0.03020182,0.08154275,0.005535657,-0.1084193,0.07295523,-0.07827802,-0.013915243,-0.0005473649,0.003732575,-0.052899174,0.0008353401,-0.016757669,-0.03177174,0.093273476,0.006124398,0.021864073,-0.013201938,0.048597593,0.049811855,-0.043977793,-0.068550676,0.018174225,0.09033829,-0.037758064,-0.026047517} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:36.999702+00 2026-01-30 02:01:10.792689+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1832 google ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB 1 t 1835 Go Karts Mar Menor unknown Volvería una y mil veces más, me encanta este karting, los karts son un tiro y la pista es perfecta, un kartodromo genial para echar un buen rato y hacer buenos tiempos :) volvería una y mil veces más, me encanta este karting, los karts son un tiro y la pista es perfecta, un kartodromo genial para echar un buen rato y hacer buenos tiempos :) 5 2025-01-30 01:52:39.833374+00 es v5.1 R4.03 {} V+ I3 CR-N {} {"O1.02": "los karts son un tiro y la pista es perfecta", "O1.05": "un kartodromo genial para echar un buen rato y hacer buenos tiempos", "R4.03": "Volvería una y mil veces más, me encanta este karting"} {-0.0059175626,-0.016537193,-0.033120617,-0.020347139,-0.10339837,0.059074298,0.008406613,0.0021982633,-0.043308422,0.04444748,0.04582108,0.0019272942,-0.07256874,0.03360579,0.024212535,0.0063159466,-0.039356865,0.039392807,0.02118184,-0.0032166708,0.06422319,-0.08139519,-0.04968433,0.033245713,-0.104574114,-0.004605877,0.0009398477,0.023222242,0.0026441454,-0.07083437,-0.08367536,0.079158016,0.021590736,-0.017536458,0.028291998,-0.024479894,-0.06342295,-0.033543877,-0.03254764,-0.008195383,-0.042748824,-0.033547454,-0.03789897,0.00042452707,0.018250946,-0.021276733,0.009450441,0.06659004,0.031655338,-0.003738126,-0.031631876,-0.053769946,0.01178701,0.0054201307,-0.055929493,-0.0445725,-0.09280492,0.0013950274,0.12799339,0.054059725,-0.00672459,0.09217141,-0.044102777,0.026859205,-0.040261734,-0.073326096,0.041416854,0.02161144,-0.07784407,0.10860778,0.15775369,-0.0478475,-0.036726423,0.11118135,-0.0095706945,0.06206685,-0.017753305,0.031348404,-0.10263952,-0.0084522255,0.018808058,-0.02271843,-0.027500138,-0.0299165,0.015020024,0.03588446,0.0074143205,0.04788546,0.03523444,0.032358527,-0.0577365,0.085524336,-0.06478284,-0.05666215,0.061702173,0.04954764,0.023438647,-0.0359212,-0.014155193,-0.007129274,0.09497438,0.024801323,0.03402762,0.059625685,-0.056592394,0.03698084,0.024553128,-0.04871199,0.007999945,0.03411778,-0.008735237,-0.034946367,-0.023614252,0.0024333212,-0.09178736,-0.046036568,0.018725635,-0.019671146,-0.01572386,-0.016215323,0.043433156,-0.006750551,-0.036240973,0.0035196245,-0.031014271,-0.10233308,0.084111564,1.00886516e-32,-0.08747361,-0.048077922,-0.028995078,0.035625763,0.0017182895,-0.0012343883,-0.043525722,-0.083353706,-0.062063176,0.010385787,-0.08313774,0.05870383,-0.020592555,0.022938857,0.047660686,0.061558742,0.031437088,-0.04476125,0.09809062,0.019019498,-0.057055593,-0.013141675,0.0010052208,0.037090622,-0.036101922,0.05019008,0.02838984,-0.09941351,-0.039303098,0.053921666,-0.0513677,0.058965992,0.0016039878,-0.034705978,-0.06790649,-0.05735039,0.014722596,-0.004952598,-0.045595407,0.06020718,0.008025494,-0.01598492,-0.018067416,0.045837414,-0.070891246,-0.029125514,0.02443197,0.016552659,0.028742548,0.0078083496,-0.13398893,-0.0438922,-0.01773621,-0.11836101,-0.009352072,0.01967938,-0.02397688,0.013023219,-0.11117745,-0.045765594,0.031043867,0.03343985,0.03584483,-0.05878485,-0.088517234,-0.0854233,0.0053433725,0.00045042275,0.08316744,-0.0024438147,-0.05878219,-0.045973636,-0.012153907,-0.054977477,0.1115311,-0.0053244256,0.0478284,0.10531806,-0.07667058,0.022036793,-0.08885288,0.057049155,0.032256085,0.030884633,0.1106948,0.024480654,0.0875123,0.04230625,-0.0006551616,0.087145224,-0.015550732,0.059863005,0.0119918175,0.021797778,0.046367455,-1.0464687e-32,-0.0030599625,0.040093146,0.09747278,0.10621719,-0.05532956,0.021119315,-0.015749088,-0.019329473,-0.019462172,0.014089753,-0.05883116,-0.07571804,0.05748972,-0.055441346,0.026927311,0.032414958,0.03846401,-0.044691797,-0.063261576,-0.041675422,-0.04346409,0.04542102,0.043660145,-0.032250818,0.037707724,-0.04164083,0.028325493,0.049537953,-0.09851656,0.047832314,0.073337115,-0.09324347,-0.024857996,0.015801629,-0.012985178,0.061227944,0.093206696,0.059814602,-0.018076682,0.052563597,-0.012340283,0.08031999,-0.041377906,-0.0015877234,-0.037455663,-0.0006567602,0.07867965,-0.068787836,0.009167191,-0.038923126,0.11592999,0.0010278053,-0.065041855,0.00026732247,0.059297882,-0.05053536,-0.014252171,0.002270901,-0.10508449,-0.015398631,0.025638046,0.02352,-0.04259999,-0.044444777,0.04220529,0.018269684,-0.009078611,-0.0009565845,-0.0013393644,0.030359792,0.036298137,0.07067611,-0.062918976,0.040465146,0.0047090272,-0.0438432,-0.013359331,0.030444006,0.04324531,-0.0022207676,-0.0040566633,0.019166611,-0.031654507,-0.03322824,0.0008011094,-0.009134806,-0.049826797,0.08280031,0.038641497,0.026721742,0.09311823,0.0084693255,-0.085004985,-0.037153345,-0.030193225,-4.0867675e-08,-0.0055836514,0.014667377,-0.09540427,-0.012585274,0.07340963,-0.06665437,-0.007258849,-0.0117272725,0.013446597,0.03157764,0.002209969,-0.04296481,0.080962956,0.029262185,0.018446928,0.09661256,0.0740591,0.17743504,0.006125389,0.0039277426,0.06125,0.0120533705,-0.048505396,0.0100916065,-0.057251602,-0.027347058,-0.038266163,-0.024610989,8.2146784e-05,0.0018642534,-0.011102014,-0.03225548,-0.058950517,-0.05430873,-0.042993065,-0.04520054,-0.041630298,0.05639374,-0.019293405,-0.008758954,0.058181778,-0.004685154,-0.059709344,0.009048159,-0.10099873,-0.04090759,-0.04056216,-0.006613848,-0.059156276,0.030118646,-0.067280844,-0.024688134,0.09077476,0.032106362,0.05860481,-0.03333952,0.07004642,-0.059651345,-0.057096813,-0.018352948,0.001762841,0.082017735,0.025725022,-0.03359735} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:39.443713+00 2026-01-30 02:01:10.886053+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1827 google ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE 1 t 1830 Go Karts Mar Menor unknown Muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos. Quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido. Repetiremos muy recomendable muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos. quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido. repetiremos muy recomendable 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"J1.05": "Quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido.", "O1.05": "Muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos.", "R4.03": "Repetiremos muy recomendable"} {0.035780903,0.0431462,0.08721436,-0.010629552,0.028103745,0.011393708,0.053370837,0.0021662791,-0.009836551,0.015998822,0.080077104,-0.08644412,-0.10087691,0.012465101,0.0072595114,0.057565566,-0.05702113,0.034760594,0.04045123,0.008907552,0.002242248,0.01156174,-0.07759992,0.04495959,-0.09012053,0.023260253,0.004783724,0.010614963,-0.042286832,-0.02605238,-0.016563063,0.08180613,0.037086368,-0.009724931,-0.045508817,-0.008137246,0.0030524246,-0.019244093,-0.021183003,0.08678363,-0.0065228483,-0.034871284,-0.051224705,-0.06599735,-0.034702774,-0.036794785,-0.03247663,0.021261698,0.04976389,0.0011957765,-0.08119915,-0.071082525,-0.02131544,0.042403642,-0.0054559796,0.042576753,-0.14246362,-0.008861207,0.1142656,0.032350097,-0.054598104,0.041534092,-0.024853617,-0.011345058,0.028647173,-0.01694811,0.01591241,0.054496072,-0.0029873305,0.008913171,0.08419601,0.026723132,-0.02455671,-0.06317191,-0.014403605,0.052314904,0.06578288,0.0055275923,-0.055507135,-0.02666326,-0.053862,-0.023917476,0.028281346,-0.11918956,-0.024065662,0.019067882,-0.043471705,0.044779446,-0.023315128,-0.0641003,-0.024926458,-0.05189546,-0.011049259,-0.015082608,0.027428051,0.10289102,-0.007555345,-0.15544945,-0.008743406,-0.015123004,0.034825504,0.022656705,0.085237265,0.0018015717,-0.013055643,-0.00857528,-0.038054053,-0.11184934,-0.018157512,-0.041256208,-0.0331784,-0.007223811,0.0368499,0.03603102,-0.07640872,-0.04497137,-0.041324746,-0.049479686,0.00788745,-0.017511781,-0.013203482,0.046265546,-0.032521777,-0.0022229152,0.010222049,-0.022314463,0.050694574,1.1187061e-32,-0.0019503871,-0.070580244,-0.030355232,0.06677958,0.08203156,-0.03778397,-0.0145084625,-0.08908662,-0.03893564,-0.0884993,-0.057942115,-0.03990547,-0.004946834,-0.023894465,-0.021989916,0.0054909927,0.07552173,0.009771659,0.013512362,0.1414061,-0.046776075,0.0028370493,-0.009210516,-0.03901756,0.006297211,0.0011709435,-0.015602224,-0.01555173,-0.029401146,0.054016866,-0.0031729795,-0.05321742,-0.061745953,-0.01740419,-0.09001597,-0.0011410163,0.00034448225,0.012611065,0.009219328,0.029791096,-0.05110454,0.01452855,-0.046191413,0.105970435,0.016280571,-0.06481984,0.063481234,0.02253578,0.055992387,0.048201267,-0.023644255,-0.07948406,-0.082926996,-0.08898825,0.0015909594,0.04064653,-0.015526244,0.026687898,-0.044066545,-0.014405684,0.015799625,-0.05943848,-0.039068297,-0.1257919,0.022504702,-0.02829911,0.04534717,0.076244526,0.1180934,-0.028618205,-0.12196194,-0.037767496,-0.04978714,-0.034116667,0.03364116,-0.030811703,0.096510604,0.014517789,0.092457354,0.05522497,-0.046882592,0.09937581,0.060134143,0.06428096,0.053397108,0.0037019483,0.004931169,0.12216679,-0.055438295,0.12009658,-0.016727814,0.09847566,0.0154025,-0.076012686,0.08157369,-1.16763676e-32,0.0044714604,0.027664253,-0.01099569,0.071168385,0.008797225,0.008163352,0.029154763,-0.015076564,-0.029277554,-0.075615205,-0.12220302,-0.080186255,0.0923554,-0.08754368,-0.033551514,0.08936198,0.04014218,0.053141262,-0.026062913,-0.04004836,-0.014126506,0.036068264,0.1041116,-0.025980162,-0.025295097,-0.031029595,-0.034072682,-0.0200151,-0.117288,0.023802884,0.0036139612,-0.067377046,-0.0121741835,0.0406796,0.015620626,0.034459334,-0.04593349,0.0323271,-0.03164403,0.109060526,-0.0003669438,0.031569716,-0.037649617,0.037883054,-0.059800413,0.07935978,0.043323908,-0.07027004,0.0026587606,0.014567947,0.02136953,-0.016646773,-0.049615376,-0.024207633,0.042552024,-0.067608036,0.043754503,-0.015590733,-0.08553063,0.0076398063,0.03699222,-0.0452922,-0.027401805,-0.06285621,0.08002521,0.00407282,-0.06911921,-0.058603767,-0.033374324,-0.004553502,0.024584917,0.020471973,-0.009207482,0.01691205,0.05572157,-0.025928747,-0.09795572,-0.01757095,0.0044488492,0.041821346,-0.07220264,0.025544124,-0.0059423856,-0.07009684,-0.02041256,-0.041138683,0.012516941,0.01666252,-0.018085143,0.014425194,0.044435427,0.03169112,-0.07588862,0.02691218,0.051250428,-4.2052122e-08,0.0897384,-0.0165866,-0.04818095,0.025239743,0.039510272,-0.04313141,-0.047404435,0.057704665,0.005332087,0.03783384,-0.07520831,0.031943806,0.07107514,0.080014326,0.01461268,0.0047385325,0.1265255,0.05049586,-0.041951742,-0.015875703,0.074613914,-0.0077898214,0.0022252987,0.07686123,0.034676243,0.009307582,-0.03458903,0.052410845,-0.016171886,-0.032094944,0.046682425,-0.0807882,-0.020140443,-0.014349363,-0.0024434421,-0.03187135,-0.028392574,0.06442483,0.0034576838,0.036407225,0.06375044,-0.018645583,-0.033118058,0.04481076,-0.06512264,-0.015788361,0.027147284,0.0120426295,-0.02769123,0.009198201,-0.013739004,-0.070669055,0.10253628,0.04987216,0.012487944,-0.0019405381,0.016192742,-0.011617265,0.013077065,-0.025854116,-0.025912,0.14586805,-0.057090078,-0.032102495} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:12.569145+00 2026-01-30 02:01:10.869245+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1829 google ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB 1 t 1832 Go Karts Mar Menor unknown Estupendo circuito. Si te gusta el Karting es el lugar ideal para quemar adrenalina. Los coches están bastante a punto. Las sensaciones son muy buenas. He pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista. estupendo circuito. si te gusta el karting es el lugar ideal para quemar adrenalina. los coches están bastante a punto. las sensaciones son muy buenas. he pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista. 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.03 {O1.05} V+ I3 CR-N {} {"E1.04": "He pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista.", "O1.04": "Los coches están bastante a punto.", "O1.05": "Las sensaciones son muy buenas.", "O2.03": "Estupendo circuito. Si te gusta el Karting es el lugar ideal para quemar adrenalina."} {-0.013968164,0.0020191618,-0.048021168,-0.015328688,-0.106699355,0.023462838,0.083667345,0.048842307,-0.023600427,0.0065702163,0.060875364,0.01413288,-0.043874532,0.011129288,0.047323644,0.012153287,0.01372429,0.011933189,0.0067882943,0.01746777,0.05209018,-0.091115505,-0.05925073,0.07154262,-0.14742656,-0.016082298,0.03187254,-0.0037064913,-0.062045243,-0.05836254,-0.05372571,0.033766128,0.0136290565,-0.03527883,-0.054868348,-0.005093564,-0.067804836,-0.058687918,-0.03325184,0.06917411,-0.050387435,-0.053938758,0.019330908,-0.08274089,0.055310328,-0.057713263,-0.0175784,0.005314174,0.019042203,-0.042149518,0.00029839855,0.0024023799,0.02660211,-0.016480058,-0.030327385,-0.029749345,-0.10821948,0.04350017,0.05553237,0.07595969,0.013447353,0.06260052,0.0083914185,0.011823196,-0.038266763,-0.1312087,-0.0071016955,-0.006131267,-0.01612641,0.02875471,0.09004908,-0.07237674,-0.059176542,-0.046172697,0.017077576,0.012046726,-0.033204395,-0.005084663,-0.057430323,-0.05081537,0.044510525,-0.060616605,-0.035226215,-0.05167537,0.051704217,0.0010577695,0.0068522957,0.016851194,0.018019013,0.048761085,0.0014747523,0.09213156,-0.15050907,-0.040145062,-0.04345232,0.036219604,0.025570652,-0.02385269,-0.043408405,0.030086884,0.08677253,0.060596958,0.01832613,0.03474876,-0.074706264,-0.011123991,0.06208585,-0.018542066,0.0061996677,0.048952002,-0.03398823,-0.002049123,-0.023075297,-0.049044516,-0.0676226,0.05821941,-0.055053413,-0.028105307,-0.016572693,-0.025042512,0.021968072,-0.05298036,-0.038013887,0.018587738,-0.021466514,-0.07101228,0.12251805,1.3212289e-32,-0.039308615,-0.02436398,0.003096141,0.021076506,-0.030895632,0.00066938857,-0.0058650733,-0.082849115,-0.05071532,-0.08110572,-0.018151281,0.108829856,-0.031640373,0.038905945,0.05781941,-0.008275425,-0.038025506,-0.081925966,0.11647298,0.015196039,0.01057962,-0.04132957,-0.046704892,0.10013926,-0.017506193,0.040050324,0.03705208,-0.041282006,-0.077294305,0.06564921,-0.029008161,0.041861217,0.0010369961,-0.033391535,-0.04523129,0.06260563,0.0014518889,0.011993586,0.006246811,-0.02012843,0.008429847,-0.049168892,0.0026512763,0.07924508,-0.07902552,0.08940441,0.051244665,0.013890732,-0.0056862594,0.05861308,-0.13369393,-0.045644272,0.04471043,-0.0021210155,-0.009657838,0.020270301,-0.066636965,-0.022817051,-0.056491993,-0.035838787,0.018468618,0.06195255,-0.041757494,-0.025936276,-0.1420529,-0.028810665,0.01720244,-0.041590028,0.066964865,0.03838897,-0.06361979,-0.0016927223,0.021879498,-0.002894989,0.06362423,-0.0007408245,-0.018726317,0.08216849,-0.07095945,0.01938096,-0.06845289,-0.060134415,0.015176322,0.064883694,0.10644091,0.07740606,0.060414996,0.012419758,0.024323735,0.08661927,-0.039447643,0.10822451,0.07064996,0.050114665,0.0637589,-1.4282584e-32,0.037652034,0.01060828,0.06219847,0.10210677,0.008423187,0.050695743,0.04952028,-0.12492237,-0.0003275499,-0.02049139,-0.08378457,-0.051109996,0.010372942,-0.05077842,-0.012497661,0.029821306,-0.03691023,-0.036711585,-0.012854047,0.002199602,-0.04501783,0.08342512,-0.009977871,-0.036409587,-0.02676033,-0.039372344,-0.021653501,-0.0031922043,-0.141029,0.016767953,0.059951857,-0.0314756,0.011115214,0.01883974,-0.098664075,0.058967292,0.042039786,0.034380484,-0.06396181,0.09885766,0.0008439934,0.029818801,0.050117563,0.013039161,0.025694625,-0.004270435,0.06274864,-0.11842359,-0.038462754,0.009624273,0.08047,-0.014245455,-0.07961975,-0.052001953,0.050882954,-0.006236695,-0.012171182,-0.05611861,-0.11721792,-0.042487513,0.05739729,0.05795376,-0.038571175,-0.042669006,0.06479598,0.0038349058,0.00076146005,-0.016631821,0.054796483,0.023490988,0.05282136,0.038278904,0.012699507,0.048542503,-0.0007607626,-0.02493647,-0.06849504,0.06215016,0.036997087,-0.015870556,0.009904229,-0.04584085,0.037131097,-0.054697316,-0.021765385,-0.0063578086,-0.06637835,0.03668253,-0.0051065534,-0.007841349,0.014404669,0.050950173,-0.050723508,-0.081794254,-0.04869878,-5.4366875e-08,-0.045071967,-0.01630905,-0.06655484,0.005152365,0.009506915,-0.037938327,0.046729147,0.018316967,-0.025315864,0.0031543586,0.011355915,-0.015669586,0.080749415,0.055315685,0.023574512,0.021564318,0.108541965,0.1735909,-0.043810226,0.022596193,0.045464654,-0.014034943,-0.07023476,0.006333103,-0.0004300333,0.0155538935,0.00828316,0.03417096,0.0066057756,-0.0108905565,-0.03009631,-0.059954334,0.0037641083,-0.007169873,0.013292657,-0.008074188,-0.02526299,0.027973764,-0.011704983,0.018511685,-0.0033958708,-0.024242654,-0.06052481,0.004748946,-0.047194097,-0.06247895,-0.008195173,-0.035068676,0.017046511,0.12644324,-0.06277925,-0.0046005496,0.061254438,0.020463347,0.06466294,-0.051907763,-0.0031522014,-0.012802912,-0.06997925,-0.07420668,-0.00014950911,0.09023523,0.006600047,-0.018563889} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:32.27864+00 2026-01-30 02:01:10.876529+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1541 google ChZDSUhNMG9nS0VJQ0FnSUR5bG9TNVRBEAE 1 t 1544 Go Karts Mar Menor unknown Great set up, very friendly and helpful. great set up, very friendly and helpful. 5 2022-01-31 01:52:39.833374+00 en v5.1 P1.01 {E1.03} V+ I3 CR-N {} {"P1.01": "Great set up, very friendly and helpful."} {-0.015277484,0.032965,-0.0423414,-0.041181173,-0.11490927,0.033384472,-0.025363656,0.01643251,-0.04553141,-0.0025665427,0.05859205,0.07144391,-0.0021511314,0.015230135,-0.011747015,0.043377575,0.015043977,-0.09374995,0.041035403,-0.01875395,-0.08109758,-0.08225825,0.080961995,-0.08169376,-0.04048498,-0.0305469,0.03271538,0.05244733,0.028524615,-0.023418905,-0.05407519,-0.00163092,-0.005789155,-0.048352562,-0.04911825,-0.012196127,0.06695607,-0.038893666,-0.049804077,-0.012629329,-0.02733643,-0.006371803,0.05613802,-0.018017307,-0.058174126,0.13189209,0.008090435,0.026662963,0.11048842,-0.034473404,0.0558615,-0.056030266,0.045539115,-0.042690262,-0.03498307,0.14443704,-0.049387544,-0.005160836,0.0024357508,-0.10991261,0.1079758,0.01001284,-0.055389427,0.052481987,-0.014970478,-0.0149049815,-0.022960588,0.03126677,0.024288986,-0.0715929,-0.10064111,0.049296737,0.120210975,0.009952105,0.016502216,0.028641328,0.03219098,-0.058091138,0.004950641,-0.024823539,0.006350814,0.0899695,-0.05158174,0.031883206,-0.004766727,-0.16088586,0.05096885,-0.010303298,0.0048357504,0.014013114,0.05994313,0.07022589,-0.0059343674,-0.029671563,-0.020288717,0.06826014,0.027021643,-0.059840623,-0.06578118,0.030203816,-0.01114063,0.037955813,0.031677384,-0.018742627,-0.028082518,0.0018774784,-0.038493764,0.0589528,0.029706338,-0.049528275,-0.035797533,-0.041310634,-0.056272823,0.038987327,-0.0010674756,0.0645446,-0.018938549,0.008868662,-0.0009970432,-0.09066344,0.058254305,0.013005052,0.011444135,0.04693549,0.053820886,0.005274174,0.0364809,-3.2769032e-33,0.041426025,0.13981001,-0.09046586,0.02412435,0.06626143,0.06760814,-0.06241136,0.030554246,-0.062423807,0.0040627425,-0.03332127,0.023204688,-0.017463045,0.030747373,-0.016446661,-0.102761485,-0.019945286,0.060057033,-0.024222037,0.0072325743,-0.06324253,-0.03637731,-0.00535409,-0.0018540599,0.09563282,-0.024790278,0.044220492,0.03766361,0.07408874,-0.001263608,-0.005689462,-0.0670503,-0.021431431,0.017461754,0.046262953,0.033592187,-0.1342668,-0.04450465,-0.004904163,-0.014652461,0.0041971314,0.017756563,-0.008978447,-0.035002965,-0.018604785,0.032634906,-0.043105185,0.017465891,-0.053572826,0.014325089,-0.08639367,-0.03454035,-0.0698855,0.14440085,-0.032803413,-0.0110667255,0.021032471,-0.003022711,0.01612342,-0.017834587,0.061924312,0.043870706,-0.024765132,-0.092926025,-0.03740134,0.008441109,-0.006666463,0.0053071585,0.054825433,-0.031205012,-0.0033934317,0.03005814,0.116608314,0.06714723,-0.06689659,0.11279403,-0.10174072,-0.02413388,0.0014289896,0.07492657,0.069365144,0.028858764,0.006632178,0.035551056,0.0010040901,-0.015188853,-0.041037306,-0.051449858,-0.04143802,0.10924238,-0.0219787,0.06855368,0.0789844,0.037434146,0.013474857,1.9880851e-33,-0.012181857,0.0688682,0.020554408,-0.008335489,0.043827977,0.019915365,0.0031571267,0.008742464,0.020211287,0.09107741,-0.03459002,0.038782474,-0.0249909,-0.032790616,-0.053594507,0.027089663,0.028987875,-0.02353182,0.035770632,-0.121065184,-0.027058445,0.08753855,-0.054004457,-0.045561843,-0.008140995,0.025169464,-0.06910929,0.071007654,-0.02940222,0.020271407,0.008359875,-0.014904996,-0.02721291,-0.019666707,-0.002424584,0.04220766,-0.0020062965,0.057170406,-0.044508636,-0.04721754,0.029982587,0.06380522,-0.089600004,0.01043491,-0.009373601,-0.06730752,0.057981,0.010299172,-0.104935676,0.016130554,-0.056252766,-0.06800946,0.02748442,-0.09336037,0.018553492,-0.08037657,0.034003362,0.06923405,-0.015348328,0.021883659,-0.022890503,0.025068766,-0.0119092325,0.08584662,0.03768782,-0.048579723,0.057443,0.037709817,-0.0239418,0.02960659,0.0011090459,0.027840488,0.09993605,-0.011486051,0.05631286,-0.08227498,0.062450305,-0.068313584,0.053539895,-0.023235254,-0.037041295,-0.021634161,0.022433009,-0.07578884,0.02097929,0.013080881,-0.013459298,0.02142742,-0.036902647,0.00895244,0.021582248,0.027439153,0.012002416,-0.017930273,-0.011267179,-1.8427123e-08,0.032792825,0.034527443,-0.07179091,0.04303606,-0.049919978,-0.099624395,0.036651358,0.0104283355,-0.021260597,-0.04950941,0.05307068,-0.050139364,-0.060284514,0.085303254,0.03344512,-0.0610909,0.03931414,0.112486005,-0.0769221,0.006053186,-0.0032434477,0.021847004,-0.0014356564,0.10503214,0.023520794,-0.0487842,0.0007486436,0.018692698,-0.04094447,0.006267663,-0.037568208,0.093461186,-0.028201506,0.0047445428,0.016075544,0.07410638,-0.059505846,-0.029738396,0.063200966,-0.04930163,0.018273288,-0.09001434,-0.0499278,-0.017128013,0.009351808,0.016383912,0.025987806,-0.02761213,-0.05242485,-0.0398235,0.020933108,0.0012241255,0.07676634,1.4130093e-05,0.070605464,-0.010044058,0.0040966314,-0.002820307,0.050015073,0.0723452,-0.11580561,0.04005462,-0.07458637,0.06837959} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.650737+00 2026-01-30 02:01:09.714098+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1840 google ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE 1 t 1843 Go Karts Mar Menor unknown Hemos ido unas tres veces este mes y somos de Murcia centro, sin duda los mejores calidad precio. Me encanta el personal muy atentos y simpáticos. En cuanto a karst muy competitivos e igualados unos con otros hemos ido unas tres veces este mes y somos de murcia centro, sin duda los mejores calidad precio. me encanta el personal muy atentos y simpáticos. en cuanto a karst muy competitivos e igualados unos con otros 5 2018-02-01 01:52:39.833374+00 es v5.1 V4.01 {R3.03} V+ I3 CR-B {} {"O1.02": "En cuanto a karst muy competitivos e igualados unos con otros", "P3.01": "Me encanta el personal muy atentos y simpáticos.", "V4.01": "Hemos ido unas tres veces este mes y somos de Murcia centro, sin duda los mejores calidad precio."} {0.05699389,0.019569831,0.0337361,-0.041077662,-0.07658586,-0.04073725,0.048637506,0.049892955,0.037549704,0.054792862,0.028837912,-0.09391346,-0.025700131,0.01871301,0.009156676,0.0048462115,0.01988057,0.02411765,0.02242102,0.0072954497,0.08744727,-0.04229224,-0.08186506,0.14220263,-0.09768926,-0.008922664,0.032105193,0.031451777,-0.06537455,-0.06402992,-0.07399333,0.003506188,0.18408777,0.007945931,-0.029976184,0.024766518,-0.0014802399,-0.07966727,-0.03850827,0.051641967,-0.052213054,-0.04310069,0.07194034,0.025712345,-0.06805792,-0.000539483,0.03980557,0.08126499,0.023688573,-0.014110513,-0.029792998,-0.020266488,-0.040833637,-0.028860295,0.010015079,0.033502582,-0.07037581,0.040835626,0.07691826,0.04864225,0.043122027,0.008886759,-0.0031378479,0.08452139,0.03599732,-0.017900217,-0.038112532,0.056640122,-0.116978094,0.030827958,0.111978374,-0.09059663,-0.0051146545,0.0073195724,0.001713068,0.057463355,-0.015277938,0.038760092,-0.038532156,-0.026593534,-0.029081693,0.043625135,-0.040137216,-0.06825596,0.0016221795,0.04407996,-0.029427089,0.04441283,0.024602786,-0.06214196,0.035598624,0.055519067,-0.075934015,-0.046690967,0.010411086,0.05751767,-0.03789174,-0.088332,0.055982415,-0.014939018,0.062776804,0.039648887,0.052397985,0.0457862,-0.046005867,0.03167513,-0.011484099,-0.047395777,0.032539584,0.10435287,-0.023317043,-0.0136429565,-0.06896533,-0.022355614,-0.0874598,0.006233984,0.048904642,0.01028331,0.06365389,-0.019630348,-0.033246253,-0.018929495,-0.09449956,-0.080375254,-0.024304934,-0.013354111,0.026606476,1.1207173e-32,-0.1034638,-0.030221216,-0.032610346,0.06527107,-0.07941407,-0.06536548,-0.0034901216,-0.03482652,-0.089998335,0.01107782,0.0026348375,0.06146852,0.025708532,0.013406131,0.02486184,0.07190811,0.072274834,-0.045737524,-0.026426991,0.05606796,-0.04275818,0.0123727955,0.010315521,-0.061251912,-0.05490115,0.06402903,-0.035095975,-0.08764127,-0.075232744,0.029862825,0.018427985,0.016987689,-0.006982509,-0.05616188,-0.08677352,0.024787638,0.02583557,0.043871548,-0.033823296,0.02129816,-0.05160247,0.00404216,-0.005989817,0.008877483,0.012432628,0.011686272,0.03563448,0.05719733,0.15187205,0.025167113,-0.028686289,-0.086778305,-0.050427757,-0.040850908,0.032451455,0.04998916,-0.044242498,0.003731647,-0.041448433,-0.058175597,-0.010587265,-0.010750804,-0.004204915,-0.01851153,-0.013000603,-0.06574821,-0.0067060404,0.03068423,0.17279406,0.023061221,-0.07048639,-0.022728408,-0.06696025,0.058813427,0.0032622914,0.051292084,0.0011542666,0.023383807,0.028878817,0.065098286,-0.009497972,0.039928794,0.020034673,0.005040987,0.12644446,0.11089865,0.040124487,0.01997777,-0.017062962,0.089029506,-0.035367634,-0.0058994414,0.04600985,0.03726491,-0.02758863,-1.17546864e-32,0.0081446655,0.030034598,0.068686604,0.063662946,-0.0206831,0.018692467,0.025828252,-0.055947725,-0.07794305,0.01238212,-0.07095303,-0.07451311,0.042094994,-0.030644124,0.011919601,0.097754076,0.070671596,-0.08671353,-0.073731646,-0.050308995,-0.012179675,0.047967527,-0.03103881,-0.040262464,-0.0571365,-0.0551525,-0.038799997,-0.04781519,-0.05777988,-0.019439092,-0.027775457,-0.043498624,-0.03137178,0.04230332,-0.022273334,-0.037401214,-0.038551964,0.04736841,-0.011824169,0.07164924,-0.0008178335,0.095143706,0.010453993,0.040961508,-0.040814564,-0.004512166,0.036590684,-0.08680873,-0.014064723,-0.017550074,-0.0050353575,-0.024731392,-0.067062445,-0.040630553,0.058404505,0.023129968,-0.0072324066,0.00105989,-0.12749574,-0.046849854,0.07250772,-0.063788235,-0.057023015,-0.030127032,0.07983492,0.07380046,-0.038346052,-0.010616562,-0.09775422,0.04080599,0.051410142,0.017374996,-0.07852511,-0.077698275,-0.003907292,-0.01676363,-0.012845636,0.0071023116,0.004527624,0.07064771,-0.009064244,0.0121751875,-0.0069100857,-0.046373367,0.049366985,0.007658276,-0.008466265,-0.032733005,0.0623069,0.033198863,-0.042542066,0.059228767,-0.050699264,-0.07234639,-0.039192535,-4.5853085e-08,0.003789916,-0.09175368,-0.057378456,0.060270887,-0.051256873,-0.026214555,-0.049133755,0.059401248,-0.015178748,0.061931115,-0.08485219,-0.016073616,-0.012164116,0.02240233,0.0036892672,0.06180647,0.08147931,0.08953891,-0.027654612,-0.040581673,0.03005739,0.0043346165,-0.032894023,0.02253003,-0.029652894,-0.006680029,-0.030218784,0.040564932,0.022595692,0.02953798,-0.0134871015,-0.01472081,-0.0105888,-0.042517986,-0.0331733,-0.0590123,-0.025642721,0.060011435,0.0061612735,-0.062206168,0.09074043,-0.028285941,-0.0044474155,0.025872193,-0.06882859,-0.023754787,-0.056135792,0.062672086,0.015424607,0.02492231,-0.054023728,-0.01626137,-0.012637119,0.08654829,0.010180936,-0.034021202,0.11245227,-0.017152688,-0.036126938,-0.01063995,0.032196715,0.038756642,0.011855472,-0.11085932} 0.76666665 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:54.086797+00 2026-01-30 02:01:10.909496+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1842 google Ci9DQUlRQUNvZENodHljRjlvT2t0Mk4xQmFWWEZTTldrNVRrbDFlbmR0VldvNVltYxAB 1 t 1845 Go Karts Mar Menor unknown Fenomenal para una tarde en familia fenomenal para una tarde en familia 5 2025-10-02 00:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Fenomenal para una tarde en familia"} {-0.020070916,0.08272294,-0.09345166,-0.016734455,-0.002603847,0.028068464,0.04708876,0.046605244,-0.025966147,-8.687012e-05,0.027819462,-0.06960694,-0.024141166,0.02627926,-0.03986507,-0.013369723,-0.052863017,0.036146946,0.023289112,0.043202415,0.015767684,-0.03481011,0.028992627,0.026826296,-0.103636526,0.01993275,-0.014563164,-0.014801087,-0.02967852,-0.019487103,0.02505716,0.052841183,-0.024440836,0.005376372,-0.009483217,-0.022651471,0.048242185,-0.0005206445,0.07544431,0.07767899,-0.045960072,-0.034798604,-0.08508764,-0.05214046,0.015670065,-0.04435303,-0.0026197452,0.08808926,-0.041099407,0.028507436,-0.0011015714,-0.07397612,-0.028743284,0.10981982,0.043533314,-0.012792284,0.0070497473,0.0010822429,0.04527653,-0.00937789,-0.02213253,0.0778374,-0.08192531,-0.016703213,-0.016824847,-0.0024236818,0.05037223,-0.055354405,-0.058275204,0.07761773,0.045149453,-0.06487385,0.0638911,0.034071255,-0.018541548,0.030522611,-0.057421748,0.06697597,-0.04813051,-0.060349885,-0.00023510108,-0.012861814,-0.03592983,-0.036157485,-0.0022731281,0.03581631,0.023503866,-0.021465527,0.05926169,0.024775052,-0.02641748,0.061807215,-0.044254318,-0.016008016,0.0040988275,-0.0254784,0.057745647,-0.09925463,-0.07134183,0.029258033,0.036240276,0.019920541,0.06698296,0.116301164,-0.04346259,-0.053771198,0.028718872,-0.049725603,-0.03019932,0.06573133,-0.058457155,-0.08251004,-0.008495376,-0.050887566,-0.06774857,-0.018887125,0.02821021,-0.13299304,-0.014785888,-0.03550741,0.04496005,0.06564288,-0.0045164498,0.016483398,0.068119444,-0.064456485,-0.022869498,1.5755048e-33,-0.03836754,0.053851165,0.0065453025,0.05187632,-0.0076267975,0.061608795,-0.052986685,0.02550751,0.049550265,0.006564154,-0.10491891,0.0073686014,-0.03599277,-0.04289161,-0.0033792648,0.07792754,-0.045485705,-0.022871153,0.04044719,0.009309708,-0.05363421,0.038460348,0.024979591,-0.009526038,-0.02583502,0.0013758985,-0.004450134,-0.0321233,-0.047776155,0.036544867,0.063610055,-0.0047971294,0.014987705,-0.050759807,-0.027425712,0.004415206,0.05713804,0.002924653,-0.02432133,0.09725598,-0.025947375,-0.02279588,0.11346209,-0.05132726,0.045613363,-0.04468253,0.1266794,-0.06442741,-0.039664913,0.024511462,-0.029271573,-0.057459034,-0.0035211632,-0.016792113,-0.021675136,-0.00028614674,-0.06531653,0.037606366,-0.0064995186,-0.020601332,0.13584922,-0.08511293,0.033796936,0.007857652,-0.05621921,-0.03361648,0.026571939,0.026024703,0.11247083,0.029481145,-0.041402973,-0.042286538,0.05417074,0.02146339,-0.0045898166,0.11114721,0.020468913,-0.017254326,-0.05085526,-0.06399217,-0.061802875,-0.020382622,0.029528279,0.03183196,0.05773778,0.041352045,-0.01905057,0.061288036,-0.026419487,0.046255715,-0.0012981781,0.00024624055,-0.013155144,-0.10315179,0.07716955,-2.8382851e-33,0.06396836,-0.057736818,-0.034184217,-0.0009862084,-0.0050696987,-0.026384577,-0.017501634,-0.0033572013,0.037662465,-0.0027731715,-0.094192795,-0.08356959,0.15417801,-0.04314416,-0.0070976154,0.07137359,-0.025041087,-0.024474919,0.03628799,-0.01247408,-0.064293,-0.012085084,-0.07764053,0.013338543,-0.0024661003,-0.032975912,0.057783388,0.03141724,-0.082805455,-0.06496325,0.03400578,-0.07845216,0.026767036,-0.026697285,0.025458649,0.08384657,0.08066862,0.08371566,-0.020324081,-0.013152393,0.002315667,0.0085251685,0.008913171,-0.014037957,0.03610459,0.032047346,-0.019091094,-0.09251231,0.09457769,0.0137885995,0.099560186,-0.0009802027,0.001067943,-0.06776315,0.0612504,-0.061205536,-0.062010463,-0.03516302,-0.036510214,0.049719114,0.11321689,0.041866716,-0.101244584,-0.0045923158,0.034640193,-0.016761279,-0.14232284,0.041919634,0.008741753,0.1403409,0.080377474,-0.06771741,-0.071178764,0.033956796,-0.048290726,-0.02303929,0.017265487,0.0051780003,0.082177885,0.054290887,-0.004681526,-0.0674758,-0.029092593,-0.0036939112,-0.10513636,-0.098352686,0.0024929352,0.029211909,0.027738083,-0.048930164,0.05065601,-0.0055170194,-0.011864943,-0.10403294,0.021286992,-1.910499e-08,0.06253651,-0.029367624,-0.038325887,0.031554736,-0.022846857,-0.012984461,0.047461092,-0.012805365,0.0006392846,0.04664718,-0.11543453,0.032766927,0.09100851,0.024036465,-0.000947072,0.03787897,0.040596936,0.06834852,-0.019751197,-0.024299312,0.06838543,0.014429121,-0.05312844,-0.061645065,-0.014692553,-0.043049112,0.03777975,-0.009323813,-0.042652372,-0.026020257,-0.0025021003,0.009691011,-0.016545933,-0.10452253,-0.0570313,0.023562074,-0.015705306,0.08802758,0.033315852,0.003301311,0.1142011,0.021247813,-0.043018628,-0.08154288,-0.053449947,-0.048685476,-0.001368424,0.04897551,-0.04539077,0.006364008,0.006873302,0.0457142,0.044753812,-0.0011562768,0.020392437,-0.06489997,0.04054571,0.041550387,0.015176811,0.02000059,0.081767194,0.09150009,0.0923298,-0.028014645} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:08.875533+00 2026-01-30 02:01:10.917814+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1843 google ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE 1 t 1846 Go Karts Mar Menor unknown Muy corto el tiempo el sitio bien pero un poco caro muy corto el tiempo el sitio bien pero un poco caro 5 2020-02-01 01:52:39.833374+00 es v5.1 J1.05 {} V- I2 CR-N {} {"E1.04": "el sitio bien", "J1.05": "Muy corto el tiempo", "V1.01": "pero un poco caro"} {0.0044970186,0.019656815,-0.05215903,-0.064276576,-0.06950015,-0.05585212,0.064638205,0.0010941299,-0.0039611547,0.0324825,0.06414184,0.010978467,-0.0028319508,-0.00246372,0.016264983,0.047235295,-0.0023153976,0.040009007,0.00669625,0.039445028,0.037198506,-0.041484334,-0.09381378,0.08884267,-0.09931377,-0.040879298,0.015851706,0.06994666,-0.031116687,-0.05463956,-0.080482356,0.031000892,0.13907191,-0.023532465,0.011415538,-0.06837696,0.081611186,-0.097591676,0.0013823378,0.0111739775,-0.05853834,-0.006577349,-0.022750078,-0.012913645,-0.0043053166,-0.032536604,0.039813794,0.03656648,0.042499166,-0.05769027,-0.066817135,0.029042274,-0.046470735,-0.027841529,-0.11075793,0.03605227,-0.042545956,0.037457827,0.052208185,0.0061763716,0.037559308,0.010811941,-0.035097275,0.070681944,0.023815522,-0.028638506,0.061986387,-0.027843883,-0.0734351,0.087100975,0.06208934,-0.037019275,0.08442477,-0.048898827,-0.03415964,0.06812954,0.037678033,-0.046558198,-0.012670504,-0.022809915,-0.01598411,0.01658698,-0.03204192,-0.02853887,-0.021107087,-0.047295738,-0.016429055,-0.017850207,-0.030332599,-0.007518266,-0.006838033,0.070501104,-0.05433142,-0.022729956,0.05564301,0.091796264,0.052802384,0.02078153,-0.0057363347,0.0058747837,0.079460666,0.06194429,0.0729622,0.011014076,0.045619044,0.062289666,-0.017140817,-0.052995596,0.0070384485,0.035327714,-0.058816727,0.011350566,-0.030831186,0.0108434055,-0.13751958,-0.0012196518,-0.016303169,-0.05057856,-0.046581957,0.0067310412,0.038388155,0.005453662,-0.09282817,-0.039371267,0.029195378,-0.11726087,0.058334213,5.411911e-33,-0.034008525,-0.035650875,0.07352798,-0.0013394941,0.021321237,0.027668307,-0.08195721,-0.03169469,-0.058236957,0.024179853,-0.045060217,-0.035509396,0.029680783,0.03509839,0.046774425,0.06987341,0.00750599,-0.022071606,0.0401822,0.04623624,-0.08412709,-0.003367608,-0.01709709,-0.033065785,0.005915453,0.14049926,0.011100712,-0.12624943,-0.12187096,0.066315114,-0.010963911,0.052794926,0.023962406,0.036626182,-0.030722667,-0.06445282,0.009268032,0.045627303,-0.007352327,-0.019642217,0.064802565,0.036988292,-0.08430688,0.06568298,-0.035901543,-0.05281269,0.031769324,0.062047556,0.02856919,0.016187146,-0.09399604,-0.094868444,-0.11123476,-0.0530604,0.038369432,-0.08536465,-0.07430682,0.05900332,-0.030680843,-0.03287272,0.0522325,0.059205342,0.037020773,-0.03823223,-0.02627566,0.0015978084,-0.033580735,0.053086594,0.098804526,0.038794857,-0.022719795,-0.006359438,-0.101132005,-0.0004967027,-0.0075892466,0.019409014,0.030513667,-0.005867397,0.070940316,-0.009848881,0.005827507,-0.022773542,0.07965457,0.044276804,0.021251278,0.033757165,-0.024058288,0.09035202,-0.08719053,0.07635156,0.011276735,0.06857859,0.054248706,-0.061946247,0.035120413,-6.655254e-33,0.012175916,-0.028237935,0.024446856,0.028805012,-0.016556066,0.018896926,-0.08930581,-0.08334776,-0.010860257,0.01661531,-0.05304971,-0.106212705,0.1386608,-0.03795279,0.016906507,0.12744519,0.017640304,-0.03831637,-0.11264243,-0.0060888682,0.025712876,-0.05224097,0.042685896,-0.017487038,0.002172162,-0.07371359,-0.02321367,0.0033232342,-0.06872893,0.05763829,0.03552692,-0.04293793,-0.017737322,0.069609,-0.023253625,0.054121524,-0.017751843,0.04862173,0.04335919,0.033607982,-0.012654407,0.0018897132,0.0068383054,-0.076135084,-0.020115634,-0.006292415,-0.018793747,-0.12123809,-0.050209902,-0.012236026,0.031131756,-0.0037830777,-0.019271212,0.0035815202,0.029047795,0.03813893,-0.055866715,-0.06616604,-0.13739277,-0.013995147,0.015156511,0.023962809,-0.088257566,-0.033161983,0.059431415,-0.0018330485,-0.021385262,-0.016843576,-0.041477066,0.035196614,0.072698176,0.055102184,-0.12928286,0.014771942,-0.063088745,0.03661701,-0.060708165,0.037024435,0.020348981,0.07340453,-0.0523932,-0.010194056,0.039051384,-0.010955358,-0.0059351367,0.017207839,-0.052942995,0.06180387,0.02505011,0.04891832,0.04826034,0.021505773,-0.07309302,-0.068069085,-0.031235946,-2.6055933e-08,0.02483084,-0.09443365,-0.019707719,0.022304473,0.051461924,0.070832975,-0.03218853,-0.013731734,0.016992511,0.09747312,0.03908356,-0.066020526,0.030774312,0.018912083,-0.043318,0.046616197,0.07406678,0.041039944,0.019657236,0.02050842,0.014631353,-0.03746373,-0.01909763,0.03595675,0.0329783,-0.017417524,-0.035662,0.003998054,-0.022500101,0.010810597,0.009530493,-0.016585467,-0.0546295,-0.12705755,-0.020027557,0.006845146,0.011677083,-0.0047391234,-0.051207237,0.01928973,0.07607663,0.042605653,-0.06699476,-0.0050491598,0.04328014,-0.021114452,-0.004693927,-0.00273524,-0.044741776,0.038532607,0.0044081546,-0.029939815,0.050227184,0.032648917,0.06020322,-0.014836017,0.09401891,0.014362456,0.016849987,0.040546846,-0.009739256,0.10604859,0.03531101,-0.05297755} 0.6166667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:16.856056+00 2026-01-30 02:01:10.921058+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1845 google ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE 1 t 1848 Go Karts Mar Menor unknown Coches rápidos, circuito duro y Expectacular, instalaciones muy adecuadas, parking propio, y personal agradable.\n\nMi experiencia y la de mi hijo ha sido muy muy buena. Y repetiremos seguro. coches rápidos, circuito duro y expectacular, instalaciones muy adecuadas, parking propio, y personal agradable. mi experiencia y la de mi hijo ha sido muy muy buena. y repetiremos seguro. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {E1.03,A4.02,P1.01} V+ I3 CR-N {} {"O1.02": "Coches rápidos, circuito duro y Expectacular, instalaciones muy adecuadas, parking propio, y persona", "V4.03": "Mi experiencia y la de mi hijo ha sido muy muy buena. Y repetiremos seguro."} {0.00049357675,0.017668014,0.0458655,-0.08598445,-0.031045636,-0.033677287,0.123591185,0.081943415,-0.03257934,0.012762316,0.12708768,0.037707984,0.015102119,0.032310624,0.03857547,0.015207795,0.020680195,0.025165373,0.0072787814,-0.022907015,0.06735615,-0.061950188,-0.07400748,0.03969822,-0.12110081,-0.017854169,-0.00750744,0.05866442,-0.031466357,-0.063839875,-0.052514702,0.073635586,0.13569318,-0.066377275,-0.011650029,-0.009244941,0.040793464,-0.04925586,-0.02129221,0.044648692,-0.092404276,-0.094006486,0.0018079684,-0.073161535,0.037888292,-0.050772652,0.08507478,0.025592165,0.08311037,-0.12158927,0.0011454707,0.0590493,0.04442657,0.0020559782,-0.023029013,-0.020084126,-0.017485509,0.07055467,0.06419489,-0.0011403646,0.027837198,0.003731869,-0.025847666,0.077551715,0.040065914,-0.007222648,0.027275315,-0.015737128,0.037410907,-0.015670815,0.05153922,-0.07656921,0.01626984,-0.017637612,-0.038337175,0.045542687,0.014299381,0.038249236,-0.005562222,-0.106775455,-0.06803372,-0.04998467,0.011167641,-0.027082618,0.03887331,0.04184673,-0.030028053,0.033062823,-0.0017964726,-0.021429705,-0.00825545,0.013962331,-0.09292327,-0.042933717,-0.046123512,-0.0026284612,-0.01585444,-0.12085887,-0.03889408,0.07748325,0.07997228,0.03869668,0.11283641,0.009223728,-0.045921173,0.039809078,-0.010087389,-0.035719037,-0.007903131,0.057550408,-0.07848973,-0.033316918,-0.07286599,-0.024975538,-0.0943339,0.031536154,-0.09645943,0.0047890297,-0.00413271,-0.05643275,0.025846308,0.01187452,-0.021621348,-0.04455299,-0.013619684,-0.040544584,0.085152805,1.0158657e-32,-0.080367014,-0.0012648399,-0.057384327,0.018999489,0.029800177,-0.00038063264,-0.020337943,0.025710244,0.010186404,-0.0056923083,0.037472222,0.05964741,0.02456694,-0.0027051868,0.06449782,-0.0070005627,-0.019679585,-0.002223995,-0.007876321,0.037881114,-0.030824155,-0.031892583,0.0051629096,0.040221967,0.04093983,0.05741223,0.04459071,-0.01624643,0.031136887,0.05832497,-0.005888586,0.058939543,0.017624503,-0.049631312,-0.054378144,-0.03903189,-0.024505476,0.0035502373,-0.01752389,-0.07540004,-0.008817808,-0.03315142,-0.05111656,0.018933171,0.038392723,0.015314897,0.08279738,0.014518464,0.06688858,0.044374116,-0.109671675,-0.04519445,-0.10133323,-0.011904867,-0.06282243,0.037260327,-0.021519845,-0.009721653,0.04629891,-0.01129649,-0.044681396,0.1329551,-0.035105664,-0.079131395,-0.07626841,-0.05920122,0.035469413,-0.003935976,0.08919677,0.050013624,-0.022798803,-0.024574868,-0.0847372,0.05080743,-0.031090492,-0.005521718,-0.016274018,0.04715334,-0.0077292915,0.032858677,-0.07362863,0.00187704,0.02096752,0.03629072,0.12837568,0.07241923,0.04478025,0.012758555,-0.046851803,0.091245234,0.023871344,0.12549229,-0.004398643,0.00029112227,-0.0008762166,-1.12598466e-32,-0.0027098998,-0.022006217,0.019123698,0.0066476422,-0.017761014,0.046010412,-0.038617,-0.043701112,-0.019723136,-0.032825753,-0.15537354,-0.05581219,0.09001728,0.005007053,-0.0142357005,0.018237066,0.020462504,-0.038979042,-0.06693488,-0.004186033,0.071311116,0.14676006,0.030712396,-0.002300568,-0.09788584,-0.04587044,-0.049967285,0.041668978,-0.10759488,0.04043564,-0.03195013,-0.038550925,-0.11634475,0.07388491,-0.023876209,-0.0342925,0.07551232,0.036021203,-0.025516884,-0.0025902423,-0.009975184,0.04636176,0.067829475,-0.034873605,-0.022522546,0.014846138,-0.021711392,-0.11335899,-0.046380363,-0.04320624,0.009065456,-0.023472998,-0.034647666,-0.0015865858,0.00064983516,-0.027148517,0.0101225795,-0.044310447,-0.09783269,0.0014683272,0.05544088,0.0054354053,-0.03258747,-0.040892616,0.060658585,-0.042590402,0.017324317,-0.034252033,0.062863626,-0.013032944,0.09526572,0.03517493,-0.03170784,-0.017332058,-0.0472448,-8.732341e-05,-0.0648968,0.044580657,-0.0071074488,-0.08562225,0.04280891,-0.0065286523,0.024648035,-0.02140569,-0.06122791,-0.031175459,-0.0021326586,-0.043115385,0.04738332,0.016962314,-0.035802428,0.08838785,-0.11062729,0.05613555,-0.025810003,-4.899056e-08,-0.0176265,0.008314666,0.055371262,-0.038379304,0.020978115,-0.09301411,-0.029129818,0.07748068,-0.055402093,-0.0797889,0.001046464,-0.054768972,0.0052768933,0.07770619,0.009963257,0.028828176,0.09385038,0.10626654,-0.051023506,-0.03965426,0.089366175,-0.029971534,0.017530955,0.09429243,0.058969446,-0.00689038,0.032473616,0.0071344418,-0.044602484,-0.043560296,-0.02721178,-0.021277394,0.034761515,-0.0865271,0.0434643,0.0013597196,-0.03711298,-0.005351392,0.046456475,-0.018573787,0.021615729,-0.043655973,-0.044328302,0.03556451,-0.0009471356,-0.05500172,-0.046122894,-0.035384633,-0.014787721,-0.017433882,0.006215982,-0.058006655,0.0037955672,0.04678731,0.033991158,-0.009534844,0.034859892,-0.014944156,-0.0077792513,-0.011397855,0.039934948,0.091690466,-0.0003169078,-0.046252947} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:32.61673+00 2026-01-30 02:01:10.928336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1846 google ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE 1 t 1849 Go Karts Mar Menor unknown Muy buenas instalaciones. Se hace bastante ameno esperar tu turno porque tienen una terraza a la sombra para esperar. Un poco más caro que otros Karts. muy buenas instalaciones. se hace bastante ameno esperar tu turno porque tienen una terraza a la sombra para esperar. un poco más caro que otros karts. 4 2024-01-31 01:52:39.833374+00 es v5.1 E1.03 {E1.04} V+ I2 CR-N {} {"E1.03": "Muy buenas instalaciones. Se hace bastante ameno esperar tu turno porque tienen una terraza a la som", "V1.01": "Un poco más caro que otros Karts."} {0.0072215404,0.052886814,-0.0013707733,-0.040715743,-0.071107924,-0.054688156,0.009082888,0.0011938284,-0.03514944,0.0472449,0.02787347,0.002186619,-0.09799657,0.014181482,0.0803183,-0.003439452,-0.028202282,0.031843197,0.03707052,-0.028488874,0.042304017,-0.061151892,-0.070571974,0.05129218,-0.13577777,-0.030689543,-0.002820888,0.07710638,-0.030477503,-0.08358639,-0.046679307,0.038421467,0.033783056,-0.0052549774,-0.0069730384,-0.055352196,0.05479077,-0.08601802,-0.092270635,0.041917775,-0.013381888,-0.0041041235,-0.053455047,-0.0116547765,0.010108433,-0.06259633,0.00582154,0.04739442,0.038619176,-0.08865014,0.003078338,-0.041761704,-0.048843686,-0.03646514,-0.05418788,-0.008067469,-0.03384309,0.08027883,0.13921097,0.033845186,0.11269684,0.033936713,-0.051512904,0.02582766,-0.009199149,-0.033052884,0.008751531,0.042749394,-0.033236776,0.048501275,0.10423664,-0.09674699,-0.0047019282,0.03536182,-0.02186302,0.024662983,0.050949868,0.05113096,-0.046053614,-0.014267693,-0.028038897,-0.007291572,-0.017093876,-0.07760255,-0.020794503,-0.07031004,-0.017786894,0.04849951,0.09240314,0.00987013,0.015057273,0.04842895,-0.05423288,-0.00734771,0.011088636,0.02555252,0.037809983,-0.10471624,0.038319558,-0.029410325,0.09731529,-0.043800596,0.09278089,0.014756511,-0.04882822,0.033679668,-0.04952144,-0.04272702,0.024488026,0.088604495,-0.069282494,-0.04106531,-0.005203191,-0.012195345,-0.099321626,-0.013884966,-0.041912764,-0.01633311,-0.010959961,-0.012433569,0.01996869,-0.02827742,0.01651139,0.008656667,0.071587645,-0.040266506,0.02786913,1.037279e-32,-0.078517295,0.0437744,-0.022992395,0.048588827,0.019236615,-0.047598362,-0.0041963197,-0.061548997,-0.07544779,-0.012878861,-0.06567331,0.04521255,-0.08646462,0.028636755,0.14708099,0.070190676,-0.013650539,-0.053996265,-0.00754926,-0.0057113543,-0.08709412,-0.04717421,0.013650428,0.054208383,0.02951515,0.020624192,0.066235214,-0.1033316,-0.0812395,0.030029,0.030345384,-0.0050353603,0.009817572,0.033601694,-0.05158744,-0.020164201,0.015144475,0.045588102,-0.015667327,-0.010178095,0.074118115,-0.004700934,0.0042200596,0.060095493,0.008081711,-0.031252407,0.04340851,0.037932526,0.13545404,0.0078186365,-0.09804854,-0.05947986,-0.06678806,-0.011525004,-0.040639427,0.05980203,-0.0018549298,0.024840694,-0.0030569015,-0.0925785,0.017702822,0.034231503,0.06181775,-0.04957133,-0.018007154,-0.085598,0.04852577,0.0782317,0.06611624,0.019098433,-0.08845713,-0.059860643,-0.043547306,0.017578674,0.015413923,0.032942377,-0.020133873,0.04699464,-0.028752368,0.051735155,-0.06291187,0.0064598904,0.0012170383,0.03695509,0.076216586,0.051389482,-0.0034073382,0.06565239,0.020374512,0.10556731,0.016309667,0.090008095,-0.007325461,-0.027553596,0.020425271,-1.0970233e-32,0.03337368,-0.021379529,0.05687841,0.102607936,0.013912223,0.019998865,-0.04528133,-0.04683026,-0.022249408,-0.04433964,-0.09726588,-0.03662003,0.13954473,-0.05091916,-0.019251192,0.057259995,0.056088977,-0.024806362,-0.032103237,-0.030654624,-0.027558312,-0.02094902,0.052091062,-0.019916909,-0.06424428,-0.0893442,0.011695057,0.035156555,-0.0743454,0.04190794,0.057884008,-0.044196844,0.010989254,0.0399794,-0.042415705,0.0065038903,0.0997756,0.050498758,-0.02583979,0.07765987,0.006535439,0.03622138,-0.07203033,-0.011038634,-0.012666848,-0.0044391453,0.039538693,-0.11057028,-0.017976813,-0.05853966,0.13265829,0.03305233,-0.003058797,-0.009264414,0.0067268913,-0.04803393,0.024053855,-0.012247912,-0.10729903,0.03968018,0.094640054,0.01903371,0.017111003,-0.1573164,0.056573078,-0.04751834,-0.038857333,-0.033610776,-0.018231578,-0.010830533,0.072882764,-0.000117297415,-0.06490701,-0.012518527,-0.018197658,-0.04814071,-0.06442,0.0465076,0.042230494,-0.08581145,-0.023717336,-0.017905448,0.062249552,0.010444233,0.061567493,0.012342191,-0.04522004,0.04914022,0.069372565,0.07796854,0.07936076,0.02403124,-0.011085623,0.02725989,-0.060151104,-4.4799737e-08,0.033013638,-0.021482008,-0.042188566,0.03623727,-0.004649217,0.02427158,-0.00084660464,0.058215875,-0.0015094997,0.0035432067,-0.031009456,-0.06356302,0.0009807895,0.094799004,-0.0091425255,0.026381014,0.03566222,0.13737898,-0.041039225,-0.031683777,0.023019914,-0.008710788,-0.055909622,0.065864705,0.023482706,-0.023153298,-0.04792533,0.008591384,0.068828344,-0.018257115,-0.07008627,-0.030109968,0.0033820467,0.009110905,0.021485139,-0.03452157,-0.028532298,0.07431908,0.014185374,-0.055582173,0.0563575,-0.00020460342,-0.072105795,-0.0185956,-0.09123225,-0.040407486,-0.07298549,-0.043971144,-0.048309755,0.018128583,0.004009927,-0.039263725,-0.019484647,0.06266278,0.04514494,0.01359067,0.024815543,-0.012734899,0.0029452376,-0.0109482,-0.017851034,0.029435996,-0.0072517376,-0.035193034} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:39.037842+00 2026-01-30 02:01:10.93211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1542 google ChZDSUhNMG9nS0VJQ0FnSURVcU42X0VBEAE 1 t 1545 Go Karts Mar Menor unknown good value for money. kids love it good value for money. kids love it 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.01 {A3.01} V+ I3 CR-N {} {"V4.01": "good value for money. kids love it"} {-0.034567315,0.12429924,0.0025978144,0.00616054,-0.07178331,0.00741266,0.11082162,0.077243276,0.06389259,0.07421146,0.023362277,0.030250818,-0.0013395025,-0.017821869,0.008214629,0.0075347535,0.10436568,-0.09918504,0.004396423,-0.107312605,-0.077379845,-0.006661852,0.08629034,0.025100954,0.019816538,0.14463727,-0.058945127,-0.033333357,-0.010199452,-0.024214873,-0.022569947,0.0966637,0.029259805,-0.016203778,-0.029337356,-0.0058918935,0.14774399,0.038721185,-0.04510656,0.024819013,-0.024848204,-0.03430313,-0.010200156,-0.063671716,-0.062141903,-0.01058539,0.035700597,-0.01586144,0.12586717,0.039285716,0.094965816,-0.04070195,0.046269007,-0.044828277,0.023399547,0.045091555,0.0037755454,-0.06810825,0.025852008,0.00039894832,0.017897516,0.04072949,-0.08794955,-0.009816034,0.04808332,-0.1257724,-0.03660422,-0.07130397,-0.023313167,-0.029789288,0.01147418,0.012247673,0.049754165,-0.018179357,-0.018581491,0.022954645,0.041256353,-0.07713914,0.049882658,-0.023926433,0.02627515,-0.0749649,-0.008667996,-0.0214527,0.04886445,-0.024557497,0.07611034,-0.047917273,0.016831338,0.0128100505,0.044705693,0.04159845,-8.738212e-05,0.02393984,-0.017516712,0.034387086,0.003337404,-0.0049725776,-0.09490535,0.007804724,0.012424319,0.026064208,0.045507845,0.001213797,-0.05603571,-0.08787735,0.042992685,0.059556656,0.050949845,-0.021859499,-0.027069928,0.028326549,0.016215932,0.02157967,-0.050266165,0.0064169997,0.004511752,-0.05289064,0.02501857,-0.05810461,0.07924382,-0.005835139,-0.020331992,0.03529146,-0.09480149,-0.17469528,-0.035100143,-3.5765275e-33,-0.08254689,0.07736694,0.042610653,-0.038152367,-0.030964399,0.039534666,0.04420715,-0.015875736,-0.06827201,0.039744683,-0.015955597,0.003210282,-0.055806544,0.031804513,0.023867883,-0.03533305,-0.110812694,-0.0074152956,-0.030274814,0.04366212,-0.052588645,0.003814502,0.0324806,0.04760561,0.012367037,0.07102073,0.0044014878,0.013517087,0.092141904,0.042268783,-0.06472243,-0.008324787,-0.019671004,-0.025339391,-0.04467881,0.035023097,0.007908438,-0.06890824,-0.007379014,0.06069111,-0.011950724,-0.004941394,-0.015056955,0.052204356,0.019539975,0.055546805,0.033541817,0.024388533,-0.016016284,-0.016010754,0.016443042,0.003122771,-0.13721766,-0.0358374,-0.026821487,0.030982029,0.029619938,0.012964758,-0.08700784,-0.045736674,0.00246195,-0.032660995,0.03891977,-0.031830586,-0.088093266,0.1449115,0.092742056,0.06759416,0.05039746,-0.008560235,-0.026069125,0.013286211,-0.05671831,-0.07166424,-0.005548009,0.004825898,0.008580374,-0.027914317,0.040793113,0.0476416,0.026367987,-0.039410967,0.05028924,-0.00671035,0.056692153,-0.05425159,-0.018152647,-0.1133881,-5.87836e-05,-0.007991954,0.061982296,-0.0698976,-0.011408487,0.022199308,-0.012279359,1.8214283e-33,0.044349432,-0.018223314,-0.024147553,0.07688327,-0.035242565,-0.035871577,-0.0052435407,0.026586488,0.022669794,0.06937299,-0.058748376,0.0201297,-0.04575515,0.04068861,0.04502809,-0.079591125,0.047406133,-0.04535031,0.07276967,-0.10542088,0.015488993,0.046861533,-0.051282,0.06937015,-0.04411509,-0.014186228,-0.19313289,-0.08744214,0.0009889848,0.10558681,0.05289719,-0.044228792,0.05751972,-0.00027213743,-0.079829305,-0.0055699805,0.030493103,-0.0032003096,-0.031927384,0.010331771,0.0651628,-0.0020985627,-0.014385326,0.049675528,-0.0277804,-0.0088289855,0.08545603,0.06872111,0.06807728,0.04678703,0.053024348,0.00042132722,0.016212134,-0.05587907,-0.12158906,-0.020520862,0.0034263942,-0.018335296,-0.008428432,-0.0060985438,-0.041132227,0.046637792,-0.04457939,0.119159825,-0.015067529,0.019117685,-0.02911669,-0.00831315,-0.050342992,-0.01804723,0.031047108,-0.013859633,0.027206529,0.012594298,-0.030926917,0.04302927,0.05108133,0.061028175,0.027794538,0.15241405,-0.04236524,-0.029074078,-0.024106707,-0.051641542,-0.026804963,-0.06981574,0.023861725,-0.024513252,-0.059203718,0.029828068,-0.013729764,0.025641508,-0.09107284,-0.012179357,-0.0036148801,-1.5348123e-08,0.016336557,0.02279966,0.02156728,-0.0010002427,0.0057469117,-0.0010934729,0.025198521,0.029355844,0.024936302,0.10964699,0.021433208,-0.02557333,-0.052023556,-0.021173501,-0.004542193,0.0027174456,0.08058844,-0.004003147,0.00020908655,0.11036257,0.07470897,0.038703293,0.012542776,0.003554469,-0.05583442,-0.013857463,-0.0046018125,0.040435147,-0.018415757,-0.01842643,0.036405772,0.03373815,0.028128015,0.0682025,0.029220935,-0.026098503,-0.043617625,0.03127356,0.02307027,0.00013164282,0.03126771,-0.048664313,-0.08876953,-0.07341158,-0.028645031,0.013546097,-0.05328579,0.016458185,-0.015051488,0.06711984,-0.05771249,0.017100576,-0.01372095,-0.050863847,0.054481484,-0.05635831,-0.024137996,-0.0016050395,-0.04302192,-0.01109489,0.021605872,-0.099415086,-0.040302973,0.07081332} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.664573+00 2026-01-30 02:01:09.719534+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1850 google ChdDSUhNMG9nS0VJQ0FnSURTMWY3TWxRRRAB 1 t 1853 Go Karts Mar Menor unknown Un sitio muy divertido y con grandes profesionales 💯✨ un sitio muy divertido y con grandes profesionales 💯✨ 5 2021-01-31 01:52:39.833374+00 es v5.1 E1.04 {P2.01} V+ I3 CR-N {} {"E1.04": "Un sitio muy divertido y con grandes profesionales 💯✨"} {0.002573347,0.03152804,0.061255362,-0.0069034933,-0.034324788,-0.011016582,0.083491154,0.029240122,0.015882157,0.017721737,0.04443232,-0.03576187,-0.04827933,0.008884456,-0.032452885,-0.029535053,-0.04925273,0.08470739,0.016014699,0.057566367,0.039740015,0.030328888,-0.019573428,0.10353601,-0.055512417,-0.01159962,0.012624598,-0.06347386,-0.017191669,-0.037482645,-0.0040777544,0.12092432,0.07629153,-0.014728321,0.026750285,-0.011339854,0.06530549,0.014649965,0.09677377,0.01999917,-0.10368809,-0.03001252,0.02137692,-0.06373103,0.008663977,-0.038849335,0.048249274,0.053181175,0.0067480286,-0.023475053,-0.10615934,-0.055818103,0.025976062,0.03498698,-0.0042449604,-0.030412886,-0.012866296,-0.012209292,0.037262723,0.035752073,-0.029702937,0.0037140811,-0.02239409,0.009081351,-0.012850543,-0.010848377,0.006310303,0.0024308315,-0.045133647,0.05288164,0.09585687,-0.034903187,-0.0013321991,-0.077563874,-0.014164609,0.0074845934,-0.026992662,0.012977915,-0.06822857,-0.02644273,0.06427498,0.0034509595,0.013536895,-0.062564686,0.021316439,-0.02609125,-0.102238744,0.0010255694,0.004062559,-0.0767046,0.01009735,-0.028179927,-0.060630556,-0.012259718,0.014602723,0.01759582,-0.03190577,-0.10954641,0.010931156,0.041525204,-0.0016107521,0.055090938,0.050374094,0.040885117,-0.06311934,0.0008582851,0.037473626,-0.052868474,-0.048800405,0.040061317,-0.037051085,0.020703977,-0.059193265,-0.020253161,-0.104198135,0.047907013,-0.009636931,-0.067204654,-0.029838573,-0.04568905,0.03615413,0.036558494,-0.053390305,-0.041692708,-0.0071181995,-0.04250962,0.042128004,5.716075e-34,-0.05048677,-0.04853677,-0.069451496,0.05177516,-0.020714993,0.017490366,-0.014146135,-0.031843185,0.033664487,-0.020037167,-0.04041486,0.029234089,0.05970386,0.059776466,-0.0112938965,0.036004685,0.014192118,0.042840265,0.05100305,0.07051913,-0.04286355,0.06346411,-0.018838217,0.019593442,-0.05056823,0.06539297,-0.05740446,-0.07529068,-0.07665086,0.068709604,-0.043844394,-0.019416867,-0.040945694,-0.003906255,-0.0037487682,-0.005739382,-0.04155211,0.036154892,0.074616194,-0.011972182,0.04838958,0.0440376,-0.03614933,-0.02497358,0.047615502,0.053957686,0.049131013,0.010311616,0.0548819,0.02635896,-0.031218491,-0.06604125,-0.05348008,-0.009802223,0.098989874,-0.030070852,-0.04712152,0.10942218,-0.03517433,-0.004590678,0.05143333,0.033629663,-0.068001434,-0.008464054,-0.044461384,0.018183958,-0.01324816,0.05952868,0.10296775,0.04812981,-0.16785449,0.0058137947,-0.03904636,0.0630799,-0.051193483,-0.03023985,-0.0010674376,-0.0115892235,0.023162467,0.03605942,0.0038313738,0.025162237,0.05476269,0.023026675,0.029335015,0.05849761,0.024080954,0.1020531,-0.009825009,0.08104067,-0.0726473,0.0011530456,0.05940032,-0.00062371383,0.024099497,-3.8778817e-33,-0.036056772,0.014273323,-0.036327105,0.036563653,-0.03632451,-0.011686386,-0.05000899,0.039852124,-0.04702992,-0.04850119,-0.058095112,-0.09981495,0.078345835,0.017804485,-0.060213614,0.063128114,0.027776558,-0.050647266,-0.1207546,-0.014073681,0.014753313,0.019580005,0.055389896,-0.08124418,-0.0817931,-0.0152169615,0.02518093,-0.017632404,-0.04252837,0.0760964,-0.00034497984,0.06046087,-0.11363305,0.0045670285,0.019125657,0.017238148,-0.07706456,0.0033441153,-0.053505357,0.06454389,-0.02905385,-0.00021428158,0.036089245,0.030057058,-0.019948592,0.005069532,-0.053814963,-0.09813646,-0.0597609,-0.079380535,-0.06628239,-0.034469046,0.043112665,-0.08883692,0.01176876,-0.09795802,0.025552172,-0.09742282,-0.094432205,0.023286598,0.08884612,0.041293856,-0.0702086,0.019929364,0.079717055,-0.013436671,-0.104872175,-0.03569869,0.016019285,0.10361814,0.14337565,-0.0065369457,-0.06654944,0.034396466,-0.09727404,0.08514824,-0.061299756,0.018745797,0.01384778,0.07307319,-0.060811173,0.042690694,0.020870423,-0.008567513,-0.019608375,-0.008089619,-0.053542454,-0.0028328558,-0.0018354433,-0.059470247,0.014401331,-0.05587652,-0.026384957,-0.04071367,0.040257983,-2.2289242e-08,-0.021968342,-0.11984507,0.009704133,-0.0008800031,-0.064955,-0.085766844,-0.09672313,0.039858982,0.03504245,0.09554858,-0.016723193,-0.022168363,0.028883925,0.042904675,-0.0044835163,0.03171181,0.111947484,0.10225739,-0.013866729,-0.047070093,0.13771978,-0.07259607,-0.013456584,-0.022014169,0.008885988,0.062110167,0.011681133,0.04380615,-0.09237413,-0.00026582126,0.052386682,-0.02640757,-0.012396398,-0.055054042,-0.053442318,0.0026585502,0.020707946,-0.023595225,-0.030639049,0.0095193675,0.031125551,-0.0039926795,0.0046119816,0.011050261,0.021010123,-0.052645158,0.04705382,0.12629929,0.040508483,0.035021674,-0.015421264,-0.0060653067,0.09075857,0.00995671,0.032826055,0.031907815,0.04973228,0.031593155,-0.039861146,-0.052851386,0.065378286,0.10247984,-0.027050504,-0.044919774} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:08.768097+00 2026-01-30 02:01:10.946146+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1852 google ChdDSUhNMG9nS0VJQ0FnSURwcnZ6TnFBRRAB 1 t 1855 Go Karts Mar Menor unknown Muy buen sitio para pasar en familia y divertirse un rato.\nA los niños les encanta, pero los que disfrutamos somos los padres. muy buen sitio para pasar en familia y divertirse un rato. a los niños les encanta, pero los que disfrutamos somos los padres. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {E1.04} V+ I3 CR-N {} {"O1.05": "Muy buen sitio para pasar en familia y divertirse un rato. A los niños les encanta, pero los que dis"} {0.0013561449,0.004009436,0.02446076,-0.03329872,-0.00066366955,0.03405225,0.025482826,0.002000041,0.0069474243,0.016263874,0.055570003,-0.013356538,-0.07579418,0.0064733005,0.043662496,0.0107408175,-0.098264195,0.051439483,0.0386238,0.018079318,0.03116557,-0.007825465,-0.0652707,0.080294214,-0.057601586,-0.0030846922,0.011263554,0.020817704,-0.059740163,0.020266242,0.01486585,0.11557195,0.06587051,-0.02959381,0.005286537,-0.0131190475,0.004115611,0.0042130086,0.043854304,-0.00388572,-0.06624306,0.028646562,0.017284129,-0.026186055,-0.091646746,-0.10285746,0.023848673,0.0061602574,0.055360887,-0.023450442,-0.04198746,0.02068382,0.006640817,0.032945592,-0.051712804,0.0054119504,-0.033587545,-0.059482373,0.059125997,0.021974327,-0.032356415,0.041135304,-0.081554845,-0.00014782172,-0.024391947,0.02653061,0.013121767,-0.020356743,-0.011554197,0.046447005,0.050525077,0.009916801,0.031405557,0.029459242,-0.016019203,0.025445722,0.0135791795,0.025042836,-0.054357726,-0.093947895,0.00014221668,0.02453757,0.003665409,-0.0986865,0.01932433,0.02445765,-0.021561751,0.06357182,-0.0058625387,0.029436033,-0.05835314,0.026531415,-0.020169687,-0.013143442,0.0009848975,0.028160779,0.06164973,-0.1298134,0.0028243219,0.024548486,0.09040508,0.043946892,0.057160154,0.06862673,-0.032489285,-0.01992402,0.008680665,-0.12796026,-0.028401773,0.0015502874,-0.04734256,1.711431e-05,-0.0049800677,0.042108733,-0.13928169,-0.04641919,0.058632813,-0.05415986,-0.03917501,-0.044003647,0.046012692,0.05172615,-0.056749437,0.010670271,-0.00065724825,-0.084208466,0.0041959696,8.2571234e-33,-0.029965105,-0.064707495,-0.0002944954,0.053962585,0.004690926,0.035598088,0.022716552,-0.019116392,0.001752809,-0.07740499,-0.06765727,-0.04859888,0.048012488,-0.02545657,0.015206931,0.04129296,-0.021411968,0.020881364,0.10003164,0.062011074,-0.07116832,-0.018169595,-0.042082466,0.016758539,-0.019609097,0.010910718,0.007316994,-0.045954358,-0.055237725,0.06648925,-0.020705279,-0.019098252,-0.010161377,-0.018898733,0.009818437,-0.052241717,0.09413691,0.02707452,0.017151209,-0.0111091295,-0.007124197,0.01637201,-0.044311788,0.067574464,0.009985149,-0.024658076,0.0362698,-0.022575572,-0.0038374728,0.03468983,-0.010853138,-0.08142069,-0.06462021,-0.12012305,-0.02152437,0.0012240915,-0.014267352,0.06542857,-0.056433782,-0.038359255,0.10743751,-0.073535934,0.023593139,-0.07841391,-0.030121524,-0.03924979,0.054197732,0.030051507,0.10477738,0.010385123,-0.08782761,-0.06731608,-0.07044516,-0.03577124,0.016128127,0.057013735,0.019352302,0.025739228,0.04534064,-0.008299608,-0.054999486,0.073829524,0.012952444,0.055607177,0.066100076,0.004494715,-0.0016440358,0.13266009,-0.07852032,0.0483122,0.07638837,0.061447337,0.061537918,-0.06614985,0.08491544,-9.241001e-33,-0.04193013,0.07179744,0.0026928058,0.023148738,-0.050340414,-0.053483065,-0.068633564,0.009080449,-0.007645753,-0.056713942,-0.12069609,-0.1420054,0.09857069,-0.08972993,-0.035465002,0.09077492,0.038870893,-0.032443356,-0.076554984,-0.029611595,0.021473598,0.02097152,0.07059248,-0.031041786,0.019495469,-0.0767017,0.023222663,0.06828977,-0.0992195,0.029042015,0.060652412,0.0053627063,0.0041677942,0.040282536,0.03418359,0.05625759,-0.02313372,0.008176806,-0.0525919,0.018905856,-0.021231085,0.058478955,-0.018305937,0.056641918,-0.035008814,0.041305095,0.05066846,-0.06283605,0.0046909237,0.00363417,-0.007156805,-0.05402831,-0.053761642,-0.036818575,0.047630925,-0.06332703,0.016636113,-0.0772621,-0.12791388,-0.049233187,0.039120615,0.028641324,-0.0722171,-0.016422944,0.029872779,-0.035623323,-0.068817034,-0.031136902,0.053898685,0.07784106,0.11507849,0.052806303,-0.06866045,0.029339118,-0.039006956,0.019620074,-0.03276395,-0.036980923,-0.0004571792,0.026690958,-0.06906629,0.032684367,0.004068276,-0.03454454,-0.030710809,-0.07515495,-0.020891363,0.083172195,-0.0497239,0.008101574,0.086832955,-0.01590795,-0.056844097,-0.074863866,-0.027082812,-3.4951057e-08,0.02954628,-0.067309186,-0.072694145,0.02470771,-0.000116470415,0.021331327,0.011785059,0.054286223,0.033366445,0.05891709,-0.020248882,-0.019514987,0.04783394,0.07466586,0.0004159399,0.044703286,0.12564662,0.084913395,-0.038696546,-0.011569852,0.053540777,-0.03521967,-0.023736445,0.0880708,0.026288543,-0.01346636,-0.08362218,0.03775309,0.0149386665,-0.037104882,0.034358617,-0.040241692,-0.054211408,-0.049677238,0.01766387,-0.029716143,0.0071583074,0.0188973,0.010632768,0.020984024,0.11839618,0.052920986,-0.081174985,0.030620605,-0.031779043,-0.08448334,0.0022160567,0.05710845,-0.008149163,0.005957579,-0.011611865,-0.048334584,0.07521381,0.01785522,0.028628016,0.0034678942,-0.036092594,0.034683652,0.022619415,-0.0025568025,0.021142451,0.22200465,0.020996828,-0.03783973} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:21.976361+00 2026-01-30 02:01:10.953094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1853 google ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE 1 t 1856 Go Karts Mar Menor unknown Schöne Bahn, gutes Personal, nur schade das im July und August Mittwochs die 1 für 2 Regelung nicht gilt. Da habe ich mich schon verarscht gefühlt... schöne bahn, gutes personal, nur schade das im july und august mittwochs die 1 für 2 regelung nicht gilt. da habe ich mich schon verarscht gefühlt... 4 2024-01-31 01:52:39.833374+00 de v5.1 V1.03 {R1.02} V- I3 CR-N {} {"P1.01": "Schöne Bahn, gutes Personal", "V1.03": "nur schade das im July und August Mittwochs die 1 für 2 Regelung nicht gilt. Da habe ich mich schon "} {-0.034828622,0.037832107,0.061328594,0.032825686,-0.027658718,0.039097965,-0.03795355,0.067818664,-0.02947622,-0.03614929,0.0077553047,-0.1232858,0.0136904875,-0.083635375,0.0017330659,-0.03561428,-0.047751576,0.02621801,0.0065892916,-0.0068339156,-0.05051145,-0.065354735,-0.03669258,0.052112926,-0.0092051,-0.01889098,-0.071739756,-0.01620384,-0.0069972123,-0.02955177,0.02967423,0.0038364783,-0.008514004,-0.047996853,0.082842134,0.005014842,0.015184985,-0.06407324,-0.07169213,0.0592243,-0.11672388,0.0010006274,-0.0010741709,-0.082555644,0.034890488,0.056419645,0.021977523,-0.007395937,-0.11011809,0.021888474,-0.016806332,-0.025736688,0.047604688,0.04989348,0.040585384,-0.013937833,0.0056079817,0.023947548,-0.0306237,0.019002048,-0.0042108404,-0.02525007,-0.11524429,-0.012269232,-0.056043625,-0.046800133,0.024100244,-0.017114026,0.00012092662,0.019720048,0.047271203,-0.113969415,0.023575239,0.0149793625,0.075384974,0.024739008,-0.07096957,-0.00026283765,0.032882195,-0.08367904,-0.06882328,-0.080207646,0.027548071,-0.026324594,0.015740685,-0.007737304,0.029661521,0.038173236,0.01673449,0.033669136,0.0042855362,0.01837824,-0.064380296,0.06232423,-0.10004791,0.008622544,0.0006037672,0.01655095,0.071014814,0.01887999,-0.020809598,0.036148943,-0.03051119,0.10228134,0.010472284,0.026345737,-0.034148745,-0.051366698,-0.0050888066,-0.041066147,0.0228843,-0.07680034,0.053880908,-0.058623847,0.028885618,0.06333408,0.03824796,-0.001107463,0.025929844,0.019818727,0.020328792,-0.00041389777,0.036327187,-0.0022483035,-0.04314913,-0.009731399,0.12388605,7.620539e-33,-0.04346291,-0.014296426,-0.043869887,-0.009825909,-0.007166537,-0.05201573,-0.07934458,-0.038655344,0.004123504,0.03684982,0.014346459,-0.07403453,0.024708087,-0.07601306,0.02374241,-0.05775609,0.0859654,-0.08585142,0.08733173,0.0033756874,-0.04200881,-0.033477377,0.023461562,-0.046846904,0.040004708,-0.06060811,0.120010026,-0.052608274,0.014406033,0.06074196,0.100821584,-0.030259835,-0.04794539,-0.034804456,-0.09964306,0.05371777,0.012716518,0.059073765,0.028083801,-0.04594777,0.005960904,-0.0058523156,0.01215111,-0.09620582,0.0049185543,0.047578823,-0.028890846,0.009584205,0.08967083,-0.024739804,-0.007995258,-0.013181854,-0.001600701,0.025130007,0.0208488,0.044388227,-0.014859682,-0.017418807,0.016705617,0.0104339,0.011155584,-0.029232431,-0.040100317,-0.00020219482,0.011945003,-0.04356363,-0.007939292,-0.036156476,-0.04318403,0.042663675,-0.11092809,-0.014870852,0.046508603,-0.057238225,0.056117486,-0.03285485,0.035227284,0.030239943,-0.03773456,0.08628107,-0.0901616,0.054390028,0.021441352,-0.016051045,0.047727507,-0.03080344,-0.026518697,-0.02238034,0.05551662,0.095617376,-0.063309334,-0.014077521,0.021290705,0.11211877,0.016238818,-8.664001e-33,0.06482349,0.104084864,0.034942243,0.010305311,-0.02341337,0.0773458,-0.029005278,0.12243579,-0.050310407,0.0398838,-0.020985233,0.022200484,0.03227162,0.011889234,-0.0018707523,0.004698791,-0.030895326,-0.009225027,-0.0058613745,-0.012050852,-0.057401862,0.013536592,-0.08836591,0.041547813,-0.0124641,0.011982231,0.015290746,0.10701309,-0.040075373,0.014155144,-0.012828239,-0.015289689,-0.016818834,-0.032966666,0.03004546,0.10491073,0.06052348,0.10120001,0.014077179,0.108843744,-0.010176337,0.06794897,-0.026937122,0.039419867,0.07238558,-0.020843899,-0.042512786,-0.040171415,-0.10281554,-0.100655444,0.017378144,-0.028203668,-0.0062615233,-0.017455757,0.08086249,0.027310584,-0.059093975,-0.05482984,-0.037291076,-0.03852597,0.047171693,0.100789554,0.0087709855,0.001956415,0.01900603,-0.08596239,-0.13689774,-0.084542416,0.07522495,0.030202903,0.014005211,0.032320537,-0.036510278,0.042140055,-0.024548138,-0.07079427,-0.10610594,0.05375341,-0.0725794,0.062667586,0.04173336,0.11641887,0.036795072,0.033092197,-0.01966655,-0.011520614,0.06486369,0.06292065,-0.017985942,-0.10303587,0.05158156,0.07174233,-0.02052614,0.034143027,-0.004650896,-3.931313e-08,0.075029865,-0.065837935,0.00071721873,0.06153228,-0.01811278,-0.14341636,-0.005008167,0.037220374,-0.05614683,0.0054575587,-0.017144384,0.06142699,-0.06748904,0.058268774,-0.05380177,0.1172622,-0.015799383,0.07380444,-0.0067528337,-0.020775106,0.104096,-0.05813184,0.024993407,-0.0015652939,-0.082784995,0.0042202375,0.011697938,-0.0070214123,-0.017517284,-0.08789222,0.021584569,0.047257606,0.059323855,0.0023128137,-0.053117115,-0.029044166,-0.042229053,0.010975143,0.008597395,0.07017721,0.07013858,0.0014218602,0.059579708,-0.043553274,0.03300366,-0.040155575,-0.030924853,-0.0383127,0.017506292,-0.005561645,-0.083180495,-0.02052573,0.06611238,0.046412278,0.04317862,0.075688064,-0.07019678,-0.029662795,-0.071114086,-0.009869767,0.010778702,-0.034600805,-0.052789893,-0.05722151} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:28.947026+00 2026-01-30 02:01:10.956414+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1856 google ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE 1 t 1859 Go Karts Mar Menor unknown Mi hijo disfruta enormemente. Magníficas instalaciones. mi hijo disfruta enormemente. magníficas instalaciones. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"E1.03": "Magníficas instalaciones.", "O1.05": "Mi hijo disfruta enormemente."} {-0.00858079,0.05066522,0.012178945,-0.053572584,-0.06234219,-0.020765167,0.05596091,0.07425254,-0.043412354,0.0043360684,0.084949836,0.05124305,0.01636748,0.004379177,-0.001218195,-0.046770487,-0.023022834,0.029695874,-0.058022328,0.055393107,0.049652837,-0.11626799,-0.049341287,0.06818769,-0.044562094,0.012455889,-9.469273e-06,0.04451405,-0.024855783,-0.10651691,-0.0008829296,0.023062779,0.10057806,-0.12669311,0.03210046,0.0063116276,0.09155494,-0.051515725,-0.011972311,0.011057124,-0.08801265,-0.028206682,-0.021617845,-0.03161439,0.060821388,-0.061571375,0.052121315,0.016448269,0.0013323198,-0.03981495,-0.08252362,0.02455302,0.013229398,0.08288543,0.042681023,-0.03486456,0.016464433,0.014207647,0.05230398,0.034267116,0.058691338,0.034050662,-0.10253333,0.05712875,-0.00028550447,-0.010374791,0.008056179,-0.043507196,0.027695121,-0.035655662,0.077143565,-0.095137656,-0.0137197785,0.085654706,-0.03478184,0.03545437,0.027364546,0.067520626,0.018482463,-0.037338004,0.0025723155,-0.0051851566,0.01663261,-0.040044636,0.034771353,-0.01450678,0.020631228,-0.020013837,0.03924158,-0.0035909247,-0.048081245,0.099793635,-0.12926757,-0.01333815,0.007913773,-0.076448165,-0.007809169,0.0026889218,-0.033115804,0.03424416,0.08221986,-0.018507995,0.08386694,0.019610241,-0.08176116,-0.035507765,-0.0015081816,-0.067847036,0.0039159637,0.061794117,-0.063715816,-0.079559825,-0.051307276,-0.07865618,-0.042540252,0.036129292,0.04700502,-0.023318214,-0.0141365845,-0.05392205,0.06676343,-0.027371269,0.009881789,-0.066718444,0.015350873,-0.008693735,-0.02959561,4.844192e-33,-0.03756333,-0.060508505,-0.06813149,0.117154576,-0.053548787,0.002761782,-0.05473416,-0.036365036,0.010805519,-0.031095205,-0.029239949,0.05704081,-0.06768013,-0.006792266,0.13238838,-0.02525838,0.032478638,0.07789177,0.0030598287,-0.032600023,-0.049061652,0.025484676,-0.03677051,0.010357167,0.09042025,0.07725259,0.093122095,-0.07609543,-0.06254013,0.0501297,0.050709937,-0.050275255,-0.0066049662,-0.015237205,0.00441739,-0.06643133,0.044987,-0.027501276,0.032853343,-0.07259641,0.042496882,0.012248833,0.05712887,-0.025030948,0.062354717,0.06171034,0.0149561195,-0.057021767,0.123778194,-0.0003772617,0.00030662664,-0.068072446,-0.0065273005,0.023100784,0.010316337,0.044076756,-0.11173173,0.0011247606,0.06890994,-0.039806765,-0.026158432,0.056431193,-0.019407598,0.01501551,0.03825902,-0.103799075,0.010118447,0.064314306,0.064763375,0.11644688,-0.09351733,-0.09556559,-0.014850419,0.036745433,-0.096273065,-0.0025057348,-0.05554484,0.03069633,-0.040941976,0.032496497,-0.049140565,0.006577422,0.004732458,-0.014160109,0.115861215,0.11733655,0.021585897,0.017670063,0.015350625,0.06834039,0.032217965,0.16086468,-0.019509526,-0.0010348776,-0.029456012,-5.2535032e-33,0.0040982924,-0.067254625,-0.0047820583,-0.020536527,-0.049717207,0.051511317,-0.09816811,-0.0030053265,0.004973257,-0.053677686,-0.077995785,-0.08344697,0.040426265,-0.025929727,-0.0771395,0.028844358,0.057405505,-0.074401535,-0.017556729,0.032224882,-0.02424842,0.057038326,0.0030234351,0.011804254,-0.02485461,-0.09470761,0.021945097,0.023200344,-0.012940846,0.023266016,0.015083231,-0.02028061,-0.059999503,0.032417167,-0.069690414,-0.029674081,0.07395615,-0.014088765,0.036784634,-0.006806336,-0.04667769,0.034662727,-0.00010958376,-0.014012523,-0.07583805,-0.03900564,0.025571063,-0.12159971,-0.059104916,-0.018621588,0.037746336,-0.029728552,-0.016379181,-0.03872525,-0.024080021,-0.06254134,0.021546237,-0.018379431,-0.044205908,0.07150791,0.09126413,0.053231817,0.030844009,-0.088282764,0.061785545,0.08690171,-0.0077054934,0.04242715,-0.0130676245,0.04422931,0.1419693,-0.055177603,0.052093357,0.013399846,0.018798819,0.024741093,-0.07396872,0.11391143,0.009554301,-0.011295678,0.046185207,-0.059393924,-0.012023836,-0.009163956,-0.015246866,-0.10209485,-0.026643319,-0.03769115,0.00020950007,-0.028821217,0.037813205,0.038671553,0.06052553,0.06722258,-0.013114134,-2.7524356e-08,-0.007167974,-0.062257767,-0.05291478,0.0021857403,-0.0057968833,0.012170277,-0.047505897,0.06308545,-0.031106498,-0.027538488,0.040326763,-0.00581191,-0.051324457,0.08744058,-0.034843154,0.006060519,0.035674445,0.09891118,-0.023322681,0.00014312894,0.04642627,-0.014071915,-0.005586093,0.038399976,0.008443778,0.0468189,-0.004103554,-0.017769424,0.021493055,0.012375951,-0.004904627,0.017819867,0.048137553,-0.0041777245,-0.014480308,0.025645016,-0.038732566,0.0679724,0.020204963,-0.05375082,0.08315655,0.04087091,0.03840995,-0.045597088,-0.053627074,-0.082215026,-0.050480753,0.026024701,-0.00065568264,-0.015059162,-0.030442258,0.020328742,0.044028755,0.020819845,-0.004085665,0.011573478,0.071732245,0.03371975,-0.0022058361,0.028594837,0.055006623,0.008126471,0.04465587,-0.012117745} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:10.570129+00 2026-01-30 02:01:10.970623+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1857 google ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE 1 t 1860 Go Karts Mar Menor unknown buena atención y mi hijo disfruto mucho de los Karts. bonita experiencia buena atención y mi hijo disfruto mucho de los karts. bonita experiencia 5 2025-05-05 00:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "mi hijo disfruto mucho de los Karts", "P1.01": "buena atención", "V4.03": "bonita experiencia"} {0.016422171,0.019613422,0.06960645,0.009392751,-0.09447971,-0.019922983,0.018061727,0.025795354,0.03277632,0.040311217,0.047347624,0.042584576,-0.022065455,-0.07304382,0.04867798,-0.029837647,0.004631776,-0.019429523,-0.04222782,-0.034286603,0.055159893,-0.0731201,-0.083048604,0.10816997,-0.10026378,-0.036633853,0.0021513137,0.056594186,0.0065606725,-0.052196123,-0.093157895,0.08542394,0.0589641,-0.007008626,-0.031194415,-0.019729648,0.04792674,-0.040372897,-0.08150835,0.014997991,-0.056911737,0.005048413,-0.019505173,-0.0044555324,0.0139028365,-0.07880357,-0.06531252,0.019890279,0.009170726,-0.010098086,-0.028991528,-0.047600675,0.0675216,0.028156344,0.049097117,-0.028998507,-0.07676539,0.057586245,0.1447636,0.046502516,0.017115064,0.051597405,-0.0928107,-0.016156511,-0.008204478,-0.05146748,0.021107819,0.04456842,-0.09460439,0.0767588,0.13103776,-0.058489446,0.022874262,0.08061454,0.058714706,0.0060758092,-0.050845884,-0.03716367,-0.07462117,0.010156368,0.065061346,0.0350184,-0.01467386,-0.05231092,-0.034485236,-0.044500116,-0.013814975,0.028752374,0.030399535,-0.009414018,-0.061042707,0.0789897,-0.091029495,-0.061925784,9.954264e-06,-0.005747314,0.03915843,-0.031080425,0.03440559,0.07197905,0.13607278,0.06899983,0.11211317,0.044078615,-0.0530298,0.03560399,0.0057487935,-0.0016740975,0.038567744,0.026586764,-0.050942823,0.009082839,-0.05562329,-0.0060920035,-0.10337316,-0.01977641,0.029815007,0.021161322,-0.038518842,-0.085668884,0.027143331,0.011882589,-0.010915584,-0.018373797,-0.0107315,-0.077931136,-0.014177963,4.9702704e-33,-0.06958479,-0.028588938,-0.034719646,0.097868696,0.01857462,-0.12108152,-0.039870627,-0.07861763,-0.08067655,0.0040338836,0.008676615,0.089373395,-0.036579557,-0.054353666,0.118949436,0.04320942,-0.07067179,-0.029303024,0.037139293,0.018418022,-0.031297773,-0.01700469,-0.015608409,0.06325962,-0.03349986,0.03244876,0.034363337,-0.06663415,-0.07829472,0.053729646,0.0059571574,0.06761702,-0.014769544,-0.046202037,-0.045540024,-0.024600264,0.08426666,0.013364533,-0.027922722,-0.05506687,0.040821318,-0.03422873,-0.035559412,0.00089299347,-0.04565194,0.040918827,0.06927604,-0.026586339,0.070623614,0.019651745,-0.04860969,-0.047702726,-0.03730895,-0.038903862,-0.025008574,0.05032587,-0.005760552,-0.006359724,-0.038896974,-0.05694724,0.06050883,0.01900736,-0.009975156,-0.041676473,-0.0824619,-0.030222878,0.029483102,-0.00879812,0.11944865,0.03380956,-0.07628995,-0.04311231,0.003882842,-0.036714613,0.09339572,0.0031905787,-0.0151156755,0.047109473,0.008104504,0.05417545,-0.0190575,-0.022516493,-0.008149876,0.065289915,0.076730475,0.035817124,0.041411582,0.016329309,-0.005030091,0.11912754,-0.049342196,0.06051487,0.057259955,0.0028885177,-0.0008196885,-6.355347e-33,0.032449402,0.05437495,0.104749955,0.059568163,-0.0019358965,0.024101831,-0.025675466,0.05687286,-0.024687637,-0.053094972,-0.04385544,-0.10110426,0.06761522,-0.019057678,-0.013597314,0.041383762,0.08896675,-0.03629895,-0.07418347,-0.06619105,-0.03423513,0.058033884,0.06148231,-0.0006257571,-0.03266466,-0.04152003,0.004726248,0.07339746,-0.12372662,-0.021377403,0.059382252,-0.09067965,0.005159909,-0.00938563,-0.05475085,0.040969674,0.034899842,0.045805957,-0.043043178,0.009677516,-0.016211597,0.035422895,-0.060178697,0.005385074,0.004566412,0.0042951084,0.026673654,-0.13576563,0.009653585,-0.048087236,0.13280357,0.056774314,-0.03907205,0.008897547,0.001415523,-0.037554547,0.018311428,-0.024104716,-0.12518132,0.02682184,0.017049327,0.025220359,-0.055214282,-0.00052944286,0.09762587,-0.0084595075,-0.027414521,0.008848783,0.013088937,-0.0069385087,0.011073087,0.020353932,0.0047700936,0.05180253,-0.036117345,-0.069216,-0.060412858,0.011901446,0.030264147,0.04097115,0.05464938,-0.014923796,-0.033422258,0.005538081,-0.023690466,0.06298905,-0.049728837,0.07308577,0.05174174,0.034017973,0.07927581,0.035298448,-0.055908535,-0.04778538,-0.046383485,-2.9017016e-08,0.03602634,-0.0021996691,-0.054077778,-0.003453754,-0.0048805336,-0.012759923,-0.031396423,0.071575284,0.00022587852,0.088225685,-0.025227066,0.023489062,-0.03349584,0.029467495,-0.014570096,0.0045425114,0.08169145,0.123338036,-0.012590933,-0.023557125,0.048341587,-0.016410183,-0.012532754,0.046067663,-0.036907155,-0.061864074,-0.051302776,-0.025528148,0.003415524,0.002891532,-0.06522979,0.045627184,-0.07064012,-0.05273096,-0.04220191,-0.050829485,-0.08007608,-0.006714981,-0.0038165099,0.01595219,0.041785635,0.00045933144,-0.0996611,0.02414918,-0.071266964,-0.016783927,-0.020536233,0.013289525,-0.0522042,0.008601901,-0.056191824,-0.016049074,0.035346232,0.046966042,0.0015479235,-0.046366174,0.034352,0.030386195,-0.032612547,-0.08098258,0.06134926,0.0543665,0.038999207,-0.018326124} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:18.493448+00 2026-01-30 02:01:10.974032+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1858 google ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE 1 t 1861 Go Karts Mar Menor unknown Esta bien, pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo pues dara dos vueltas solo, deberian haber dos modalidades, una por tiempo y otra por ejemplo 5,10,15 vueltas segun precio. esta bien, pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo pues dara dos vueltas solo, deberian haber dos modalidades, una por tiempo y otra por ejemplo 5,10,15 vueltas segun precio. 3 2023-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.04} V- I2 CR-N {} {"O1.01": "Esta bien", "V1.01": "pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo p"} {0.018062992,0.017417943,0.03271205,-0.078437485,-0.03204737,-0.03416851,-0.02352346,0.07133866,-0.059910446,-0.00960968,0.04739766,-0.012994224,-0.019061064,-0.020091467,0.052443445,0.06118656,-0.023608003,0.0014848455,0.062596925,-0.01300898,0.07996933,-0.060396787,-0.09240685,0.07487981,-0.029524675,0.012529809,0.014209083,0.014661169,-0.06607434,-0.017022833,-0.04881826,0.033664044,0.04202252,-0.01572523,-0.0035572594,-0.0015814933,0.043261174,-0.030649815,-0.045747627,0.07627719,-0.07480158,0.011504732,-0.09080602,-0.044072557,0.016109709,-0.0708328,-0.007724662,0.050464902,0.04121022,0.006891345,0.031987637,0.009496672,-0.018472133,-0.008795274,-0.03721815,0.01879911,-0.06005058,-0.025851082,0.045986634,0.02921697,0.013016944,0.061161365,-0.08981474,-0.027901066,0.045944896,-0.0026049705,0.07221298,0.0390835,-0.018023627,0.030066878,0.10775129,-0.051002976,0.024231113,0.027309217,-0.044762354,0.053719006,0.002555962,0.011428637,-0.042410128,-0.10207646,-0.044494744,-0.020678498,-0.0050358963,-0.0787091,0.026240267,-0.039570794,-0.023300713,0.016543409,-0.016963273,0.016900908,-0.05760771,0.0957062,-0.031449817,0.05716646,-0.06352081,0.05126851,-0.021696784,0.012726959,0.03754719,0.005398816,0.07472641,0.022367686,0.06515013,0.03042174,0.02418316,0.05929472,0.11736981,-0.051865645,-0.009785692,-0.01222377,-0.056645814,0.012358639,0.05420133,-0.075873636,-0.081465535,-0.035405014,0.00919224,0.039241794,-0.025863146,0.003522745,0.025946183,-0.050198514,0.058188394,0.019399932,0.034902327,-0.055092167,-0.016348803,1.2512716e-32,-0.027935253,-0.096770726,-0.0034545814,0.12900089,-0.069792464,0.055542998,-0.026066514,-0.058052663,-0.10956935,-0.03799559,-0.04837973,-0.03657077,0.0009892375,-0.08826073,0.17072262,0.005408662,0.027952861,-0.06483519,0.07006546,0.031536374,-0.010210267,-0.024305511,0.0077431733,-0.011840425,0.008544844,0.07818475,0.023529513,-0.0410595,-0.0669733,0.063142754,-0.0679102,-0.006309288,-0.007731562,-0.003857277,-0.023171972,0.027433252,0.14306462,0.084009424,-0.05048549,-0.012687956,-0.0022644692,-0.087912634,-0.03389454,-0.00408675,0.059230883,-0.008545307,0.032140274,0.07173611,0.0032232415,0.002880913,-0.041391097,-0.08721645,-0.075807616,-0.10370772,0.0152609795,0.010567077,-0.03791881,0.013503088,-0.047485314,-0.012353935,0.041492496,0.018991232,-0.034519672,-0.052776746,-0.063063405,0.068138525,0.08112801,0.024931004,0.12210158,-0.05466419,-0.09242012,-0.032348044,-0.09994303,0.022866242,0.055829,-0.023580927,0.058485355,0.047895774,0.08864794,0.07082183,-0.038294617,-0.023146125,0.023915594,0.036294196,0.12349095,0.03256501,0.037531033,0.045362514,-0.078005396,0.06375012,0.06852179,0.01884218,0.07206888,0.012699614,0.058831964,-1.2184119e-32,0.026912717,0.01523209,0.008755315,-0.028354801,0.041398574,0.017740175,0.008947382,0.015114861,-0.04130984,-0.068893135,-0.040453993,-0.13576822,0.10032136,-0.02228716,-0.03461565,0.05696376,-0.018141665,-0.043088093,-0.04970193,-0.03558833,0.006427901,-0.017857803,-0.0070322794,0.0010143471,0.008859277,-0.057238866,-0.06372492,0.05773475,-0.07630082,0.030606622,0.09462311,-0.058676664,0.054514043,0.022614848,-0.019362561,0.08370753,-0.032668248,0.046769988,0.018172884,0.034344416,-0.03383846,0.013423005,0.0038891614,-0.03922456,-0.018067792,0.07502132,0.033089772,-0.122845314,-0.05532036,0.0006908922,0.07718046,-0.030911736,-0.087399974,-0.033485483,0.036730353,-0.016347729,-0.060293417,0.005837384,-0.061155036,-0.0013087755,0.0802607,-0.02682772,-0.0039750296,-0.0072108093,0.0277965,-0.041838285,-0.033941682,-0.033656087,-0.011615361,0.039874215,-0.010047206,0.06530814,-0.13973264,0.03904585,0.0072659724,-0.044828758,-0.081026,0.05018663,0.021968853,0.018486628,-0.03929874,0.005677274,-0.0574126,-0.040389065,-0.029220263,-0.031829555,0.060849983,0.04500471,0.005384827,0.044030126,0.10143069,0.019769438,-0.03483366,-0.08294279,-0.019709934,-4.476233e-08,0.0676564,0.049610667,-0.015816152,0.015002584,0.06675287,0.05371145,-0.022668336,0.00030364844,0.071305454,0.09676077,0.060865916,0.0011079104,-0.040235054,-0.0078579625,-0.04181076,0.0020243202,0.051999874,0.038500875,-0.0150445085,-0.07402603,0.055348232,-0.0010880496,-0.070360504,0.028649209,0.05425787,-0.09375068,-0.1011061,-0.044390444,0.0004887142,-0.01196169,0.021238148,-0.052056793,-0.07330894,-0.05696292,-0.04975011,-0.031267613,-0.045253035,0.06042004,0.012608927,0.0025180734,0.08040707,0.015447951,-0.08356613,0.03365127,-0.008178551,-0.062234204,-0.003311746,-0.024375977,-0.03498539,-0.015270747,-0.021560347,-0.040076908,0.067223236,-0.025137017,0.08503785,0.020849604,-0.008155004,0.078845985,-0.013029675,-0.00802522,-0.04025851,0.075054005,-0.030631913,0.0016381476} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.554672+00 2026-01-30 02:01:10.977885+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1861 google ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE 1 t 1864 Go Karts Mar Menor unknown Sehr gute Bahn, gute Benziner.\nFreundliche Mitarbeiter.\nHelme wurden nach der Nutzung desinfiziert.\nGutes Preis / Leistungsverhältnis. sehr gute bahn, gute benziner. freundliche mitarbeiter. helme wurden nach der nutzung desinfiziert. gutes preis / leistungsverhältnis. 5 2024-01-31 01:52:39.833374+00 de v5.1 E4.03 {} V+ I3 CR-N {} {"E4.03": "Helme wurden nach der Nutzung desinfiziert.", "O1.02": "Sehr gute Bahn, gute Benziner.", "P1.01": "Freundliche Mitarbeiter.", "V4.01": "Gutes Preis / Leistungsverhältnis."} {-0.036714777,0.078927666,0.046786577,0.009773249,-0.06963724,0.04583164,-0.010057683,0.13754413,-0.022506591,-0.059288017,-0.016886579,-0.08058558,-0.019353092,-0.051768206,-0.04153842,-0.03368307,0.011823906,0.03316096,-0.047419373,-0.08712369,-0.02326411,-0.027133781,0.025455186,0.053522922,-0.06641762,-0.040402852,-0.027322125,-0.029486446,-0.009986085,-0.060370002,0.05121306,-0.04657185,-0.011131537,0.06281431,-0.029711735,0.051133256,0.043670546,-0.0037900805,0.017595083,0.08542907,-0.060587227,-0.05317618,-0.07700718,-0.10553245,-0.01662767,0.02301961,-0.022260465,-0.0034407387,-0.08172522,-0.029898774,-0.05615914,-0.040462304,-0.013944527,0.07082011,0.0014210505,-0.026347682,0.0068959077,0.02931492,-0.045433793,0.01875473,0.023590954,-0.01808309,-0.039034583,0.054680828,-0.03160964,0.00015869159,-0.0030921907,0.022910928,0.010298979,0.007236834,0.004878229,-0.11422599,-0.01682187,-0.027316594,-0.03903347,-0.04603062,-0.017285783,0.03605994,-0.045067288,-0.13354792,-0.06753546,-0.016734554,-0.02641537,-0.031346127,-0.013651249,0.03276696,-0.027158521,0.011375391,0.085828766,0.018068992,-0.052413452,-0.044897236,-0.059426352,0.04376525,-0.048910305,0.008437565,-0.019512191,-0.008706033,0.0018263492,0.031798426,0.015604019,0.039887734,0.00366563,0.018674614,-0.04417711,0.008830619,0.014916488,0.030094424,-0.047110584,-0.014555439,0.022621505,-0.0010817773,0.03613051,-0.053775445,-0.008010621,0.013308347,0.034502268,-0.054962516,0.034433037,0.061935592,0.011786076,0.012246267,0.03438183,-0.049423255,-0.025668,0.008350963,0.053721856,9.027616e-33,-0.054550227,-0.06284765,0.03847815,-0.009271702,-0.00071273523,-0.0020515656,-0.110376135,0.0005313641,0.019552793,0.07910715,-0.025771454,-0.017798537,-0.06890035,0.02631359,0.045007337,-0.038926065,-0.0022127875,-0.014810336,-0.0023525078,-0.07751818,-0.048055585,-0.040886145,-0.006890367,-0.068219304,0.06648579,0.014302347,0.06711786,-0.04144736,-0.06432896,0.013705173,0.042936996,-0.06819911,-0.035280902,-0.035047542,-0.07793555,0.048415698,0.011417215,0.030162176,0.024147935,-0.043845553,0.068059504,-0.034198362,-0.0071830587,0.011484952,0.0025714932,0.016296005,-0.0902214,0.029233957,0.07613343,-0.0025507393,0.021854557,-0.026786411,0.08449342,-0.07722448,0.03784211,0.03658078,0.013195653,0.07257094,0.010197858,-0.013113076,0.0035399299,0.02032065,-0.06764344,0.01208473,0.070445105,-0.0075051826,-0.02654211,0.027373439,-0.048636835,0.06464135,-0.1713577,-0.035601944,0.060187813,0.07929573,0.0781065,-0.03490689,-0.05599982,0.030747453,-0.0032738105,-0.035379767,-0.030407786,-0.0065918686,0.004209605,-0.011290434,0.067528516,0.061733384,-0.0107879285,-0.047158062,0.08316884,0.108978085,-0.11345588,0.012427028,0.034100592,0.070504844,0.015053736,-1.00973966e-32,0.05265524,0.06315686,-0.05140227,0.038175225,0.05284346,0.013844903,-0.09009369,0.016936505,-0.02805927,0.017406298,-0.06754812,-0.006902752,0.04728417,-0.008976,-0.022566287,0.03645208,0.043809243,-0.07233904,-0.028689267,-0.0659978,-0.09209447,0.0066820313,-0.07150613,0.057672683,-0.06418296,-0.00884218,0.053450312,0.096380726,-0.067086525,0.029429432,0.007329612,-0.0030998506,0.045701474,-0.039778244,-0.060040098,0.075352624,0.01583754,0.070094064,-0.02642977,0.06401789,-0.05105452,0.01356589,0.055328697,0.020607512,0.03183827,-0.016366076,-0.06811495,-0.13528788,-0.10872093,0.006962686,0.07164222,0.03754108,-0.032018345,-0.0698556,0.044551097,0.08063044,-0.06404502,-0.14499523,0.03177462,-0.06289604,0.04766789,0.020713238,0.096675925,-0.040116202,0.041428123,-0.071304485,-0.13913012,0.009510797,0.014175927,0.025326118,0.06706857,0.008730589,0.007992249,0.062169984,-0.03695021,-0.02753224,-0.0429815,0.059321504,-0.054698054,0.083853826,0.0064473725,-0.012219753,0.03136188,0.006478381,-0.0046574213,0.010661829,-0.0062506422,0.02511026,-0.009626933,-0.059877172,0.043326743,0.035328183,-0.014833794,0.026355868,-0.032213707,-4.1918256e-08,0.09704289,-0.07937663,-0.026176564,0.066187546,-0.045211248,-0.027761562,0.013613336,-0.0030134635,-0.052160196,-0.029239278,-0.0064678723,0.07307792,-0.061444547,0.14887352,0.0024345478,0.009247771,-0.05558597,0.16090599,-0.022164173,-0.003413132,0.08778731,0.015575842,-0.013959918,0.02147392,0.06668836,-0.03744879,0.02004783,-0.025219543,0.040525552,-0.0107215755,0.029087888,0.120505616,0.122291565,0.0520466,-0.006769197,0.055597175,0.00048119106,0.034133293,-0.044178966,0.110784695,0.05507344,0.009919164,0.058287848,-0.069291174,-0.03981088,-0.046608035,0.022388024,0.10123474,0.024097145,0.043662734,-0.027653793,0.027667504,0.06585803,0.05966064,0.029893382,0.050748553,-0.04454524,-0.068942174,-0.056026064,-0.058429256,-0.02470212,0.022699816,0.04742904,0.0060403007} 0.825 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:59.779131+00 2026-01-30 02:01:10.986539+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1885 google ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE 1 t 1888 Go Karts Mar Menor unknown Circuito muy divertido técnico y muy bien cuidado . Trato muy muy agradable tanto de los dueños como del personal . Cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo . 100% recomendable circuito muy divertido técnico y muy bien cuidado . trato muy muy agradable tanto de los dueños como del personal . cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo . 100% recomendable 5 2026-01-30 01:52:39.833374+00 es v5.1 O2.02 {O1.02} V+ I3 CR-N {} {"E1.04": "Cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo", "O2.02": "Circuito muy divertido técnico y muy bien cuidado", "P1.01": "Trato muy muy agradable tanto de los dueños como del personal", "V4.03": "100% recomendable"} {-0.019384688,0.05962356,0.060070343,-0.08012921,-0.07099447,-0.020653479,0.099660926,0.07561155,-0.052249085,-0.0081720995,0.06543747,-0.07228005,-0.02496379,0.04015145,0.06046265,-0.015294245,0.06693938,0.050178815,0.025339996,-0.050596077,0.03162333,-0.03739982,-0.04709768,0.13363436,-0.12059646,0.020391218,0.03220525,0.044208113,-0.0994807,-0.093940005,-0.069797724,0.14498676,0.06377575,-0.06721159,-0.051332656,0.026614837,0.012003152,-0.043814007,-0.006519344,0.04031342,-0.08221378,-0.05325745,0.0783275,-0.05763079,0.0023161978,-0.041834384,0.015236009,-0.024761476,0.040779557,-0.052646108,-0.020782989,-0.00866632,0.05198961,0.021018622,-0.018389484,0.029720645,-0.0054747122,0.027819285,0.031486146,0.07388735,-0.0425812,-0.0322154,-0.026701381,0.036750324,0.028863577,-0.022113837,-0.024414724,0.049208187,-0.008055164,-0.008353233,0.048509806,-0.0888316,0.07777818,-0.0709457,-0.011330082,0.04051733,0.037023745,-0.030813595,-0.039720193,-0.05074156,-0.03403189,-0.0031974304,-0.019833034,-0.05669695,0.032481104,0.00903636,-0.024390249,-0.008782525,0.003674153,-0.022881875,0.017709486,0.06469657,0.0039936397,-0.08191037,-0.019258818,0.010193251,-0.036882102,-0.105158195,-0.0015654663,0.032482233,0.022916075,0.06529238,0.046209637,0.010890918,0.011525435,-0.0023782502,0.030567752,0.002671003,-0.0024138994,-0.021183532,-0.06322707,0.0014400593,-0.049687777,-0.022561876,0.01838195,-0.030108657,0.045542818,-0.045524593,0.02327471,-0.030721726,-0.014964326,-0.023126747,-0.08553928,-0.009183185,-0.013474056,0.009160029,0.122033134,1.3502311e-32,-0.03787921,0.0076452177,-0.05805231,0.0375855,0.09846337,0.030944366,-0.039440926,0.017187359,-0.008136498,-0.03909459,0.02928302,0.0457322,-0.01059617,0.05942396,0.06393323,-0.07133532,-0.027020285,-0.010636512,0.04355348,0.04291086,-0.042693272,-0.06629092,-0.015478611,0.051364433,0.023749864,0.03398656,-0.03803355,-0.0099469,-0.042396624,0.024447976,0.022735469,0.036130708,0.029858617,-0.02951802,-0.05894182,-0.010346526,-0.04766238,0.054320917,0.042757347,-0.0007679762,-0.044774137,0.053515453,-0.013727832,0.10288517,0.021188023,0.031185172,0.05433769,0.066940434,0.12372946,0.023768744,-0.060864996,-0.07443035,-0.061670817,-0.018822439,-0.02417355,0.026825821,0.034867775,0.015567368,0.057237174,-0.023346191,-0.01901515,0.1003493,-0.056753196,-0.08377935,-0.033761743,0.010372487,0.02598476,0.0035157336,0.08504569,-0.03886455,-0.10813868,-0.032379,-0.060024142,0.0539325,0.011637518,-0.0028084312,-0.040802233,-0.04275017,0.031114914,-0.027056195,0.003245865,-0.0321852,0.011081236,0.012621971,0.06362308,0.084152445,0.052702907,0.054186415,-0.00066828536,0.11451157,-0.043046154,0.05599081,0.093216345,0.011183325,0.03141811,-1.323109e-32,0.025348464,-0.023189876,-0.0035574,0.10294117,0.036800608,-0.038406063,-0.0426894,-0.09431845,0.017680617,0.0038790796,-0.06906542,-0.051146723,0.055258855,-0.03438495,-0.04857891,0.05406458,0.026258832,-0.05625373,-0.078450195,-0.031055098,0.015162078,0.0745491,-0.036971204,-0.07605815,-0.094283104,-0.022419838,-0.14896974,0.013208132,-0.03122635,0.0184575,-0.09826799,-0.013526574,0.005301966,0.0350113,-0.007021322,-0.0039194487,-0.0058960863,0.047563672,-0.017872883,0.060277633,0.010281927,0.030879702,-0.015704451,0.07527885,-0.05654215,0.060676884,-0.016520908,-0.1373586,-0.046917256,0.00806051,-0.0150337275,-0.08808934,-0.025592793,-0.07062928,0.00493573,-0.054750253,0.02562926,-0.06228083,-0.11854779,-0.069318086,0.06855803,-0.03767734,-0.012852909,-0.023422083,0.083631545,0.016052572,0.013208794,0.031393647,0.09123593,0.025444757,0.06983758,0.04883962,0.009067962,-0.05399118,-0.035771288,-0.06838157,-0.052198157,0.023453424,-0.038223885,-0.007847992,0.024380723,-0.0027330294,-0.009148189,-0.08544095,0.02922141,-0.022761913,-0.0038488489,0.02213949,-0.0071052844,0.037693735,-0.03928643,0.04926426,-0.03149476,-0.017804574,0.026409257,-4.922024e-08,0.029385353,-0.0718068,-0.0039128466,0.040231172,0.058344677,-0.13583943,-0.042992786,0.02623497,-0.0068310522,0.02998068,-0.04250223,0.033785377,0.009879046,0.07958117,0.016079437,0.020882891,0.08921088,0.07748099,-0.04750254,0.01652094,0.057824723,-0.02554073,0.0009343771,0.06413219,0.034574747,0.08793613,-0.01812777,0.02725008,-0.012162344,-0.013690541,0.029269598,-0.068630904,-0.027650107,-0.053188786,0.01529248,0.019450413,-0.042002566,-0.066715755,-0.011685977,-0.04539364,-0.010447191,-0.12755072,-0.09772072,0.06448584,-0.022633374,-0.08514394,-0.015495798,-0.0072195115,-0.040731043,0.089041166,-0.03492681,-0.05571175,0.028795073,0.013697506,0.05951269,-0.008448464,0.07435439,-0.016576782,-0.0067435135,-0.033676203,-0.0039857165,0.12756793,-0.026219673,-0.12912151} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:32.178551+00 2026-01-30 02:01:11.0632+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1786 google ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE 1 t 1789 Go Karts Mar Menor unknown Me encanto el trato recibido por el personal del circuito. Tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra.\nLa zona de ocio amplia.\nMuy buen sitio para ir solo, con amigos o con familia. me encanto el trato recibido por el personal del circuito. tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra. la zona de ocio amplia. muy buen sitio para ir solo, con amigos o con familia. 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"E1.03": "La zona de ocio amplia.", "O4.03": "Tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra.", "O4.04": "Muy buen sitio para ir solo, con amigos o con familia.", "P1.01": "Me encanto el trato recibido por el personal del circuito."} {-0.036342733,0.0513018,0.009962746,-0.021194473,-0.057260282,-0.018710319,0.04312014,0.003291552,-0.025085675,0.0124206245,0.12501001,-0.08088224,-0.010458055,0.019228714,-0.00161502,0.065044865,-0.036728438,0.04640843,0.056127444,0.00801355,0.050101884,0.004124777,-0.06538996,0.07147785,-0.063545026,0.030955607,-0.0029680175,0.06801421,-0.13104351,-0.053943995,-0.06061983,0.09217016,0.11836851,-0.031158254,-0.050074857,0.0141727645,0.049770594,0.015351104,-0.011784581,0.066478096,-0.074451916,-0.011324507,0.066506855,-0.080676295,-0.006164577,-0.07171561,-0.027954685,0.02153371,0.037964325,-0.040705364,-0.035967022,-0.04095398,0.017778551,0.068146914,-0.026050352,0.0021431304,-0.014312364,0.007404634,0.07226643,0.06783,-0.016652687,0.055043098,-0.05149883,0.023516497,0.04826059,0.004532258,0.040853854,-0.00047622476,-0.074687675,-0.022720542,0.02736728,-0.048696104,0.081575856,-0.01568856,-0.008896462,0.04420068,0.018275099,0.0011802868,0.027546508,-0.028592883,-0.046233464,-0.016292641,0.0058100126,-0.058402598,0.059094056,0.03276563,-0.011361394,-0.0016442207,0.020554027,-0.0042377315,-0.063439846,0.0418406,0.013441698,0.011252297,-0.031375594,0.025579035,-0.010280366,-0.08414208,0.004041487,0.035887755,0.07942026,0.0035423737,0.08315618,0.042897657,-0.08389394,0.028953308,0.03187186,-0.0630322,-0.055217262,0.008476453,-0.062382493,-0.013240141,0.010132111,-0.019436464,-0.012615486,0.012426992,-0.032760967,0.017381113,-0.027986918,-0.016963916,-0.0008479832,-0.053156298,-0.07193987,-0.009384142,0.0009499652,0.000970161,0.0601121,1.3843599e-32,-0.013800468,0.0063801305,-0.010968221,0.051236555,0.030227998,0.04404893,-0.04864852,0.006015707,-0.039531432,-0.06785869,-0.027691793,0.09290527,0.0065396,-0.006151546,0.06736991,0.035489555,-0.024954608,-0.048013113,0.056888457,0.03675531,-0.032116693,-0.06916407,0.0015803578,0.0066421367,0.027352212,0.05580556,0.021378972,-0.0048127193,-0.06033581,0.028243836,0.03287232,0.048560448,0.029066578,-0.068686426,-0.03801522,-0.029753372,0.072622344,0.067484416,-0.07213884,0.033439446,-0.062265668,0.03324754,-0.023636114,0.07284519,0.042940456,-0.0017142615,0.060502227,0.015808642,0.081889085,0.106336206,-0.10303768,-0.08163153,-0.13712509,-0.08655044,-0.011191253,0.07390936,-0.09755621,0.061157126,0.002355307,-0.09373888,0.06260537,-0.0010532256,0.03422293,-0.08454445,-0.07112501,0.008955647,0.048561934,0.004951677,0.12724271,-0.056780197,-0.037169598,-0.07174397,-0.06604928,-0.021073045,-0.0027533995,-0.0023908103,0.038707048,-0.0024497688,0.027814941,-0.012137145,-0.08147941,-0.00882726,0.051603682,0.05943562,0.08982525,0.017682578,0.039142124,0.05703999,-0.03516961,0.0920558,-0.032584716,0.08272457,0.03401366,-0.046846937,0.08029348,-1.2615592e-32,0.042049482,-6.631269e-06,0.013509806,0.01405023,0.020998592,-0.07395931,-0.03658882,-0.028907523,0.035727333,-0.0063244523,-0.09372174,-0.13813317,0.0995912,-0.046564315,0.013104604,0.038131602,-0.042177442,-0.020656426,-0.050611544,-0.015598428,0.027352123,0.038333002,0.015638106,-0.03741824,-0.012778283,-0.029900795,-0.058666375,-0.011156291,-0.0635671,-0.006058404,-0.013516223,-0.024348846,-0.012971508,0.06725488,-0.012614779,0.062962465,0.05210541,0.049686346,-0.027653903,0.004453408,-0.022023093,0.094270416,-0.0049844193,0.030352915,-0.059542816,0.076931655,0.028312882,-0.083293304,-0.031201387,-0.0031249935,0.0432042,-0.05524095,-0.05940403,-0.09308731,0.0032830457,0.0091500385,0.06452304,-0.056823846,-0.09753421,-0.05574837,0.040235355,-0.09042269,-0.08103715,-0.015456808,0.063619204,0.005509905,0.0031254403,0.012861307,0.08674666,0.0830049,0.019916752,-0.01595747,-0.057001088,-0.041100737,-0.046510264,-0.051401563,-0.14362109,0.010680569,-0.040068686,-0.029240945,0.025291014,-0.0101436125,-0.011896316,-0.08599285,0.0042419704,-0.080012,0.00802902,0.020831548,0.011173709,0.06378443,0.005332604,0.03978885,-0.08825093,-0.059257425,-0.02638951,-5.082367e-08,0.07323676,0.015639354,-0.027408214,0.039992936,0.05260544,-0.050261594,0.022000432,-0.02872061,0.018212566,0.07870292,-0.034429226,0.028630583,0.043041803,0.07455438,0.041261885,0.03197437,0.117758915,0.05591673,-0.056181725,0.01834131,0.06859893,-0.00022860845,-0.03804093,0.07720541,0.01918897,-0.01263861,-0.04870387,0.024915414,-0.059544813,-0.04205682,-0.010015963,0.0035718263,-0.02763221,-0.10761015,-0.05403426,0.01174622,-0.028158685,-0.010860553,-0.035855383,-0.039458945,0.064954065,-0.005732313,-0.04278769,0.0060038953,-0.013096313,-0.12632668,-0.0035499046,-0.031879485,0.023454214,0.08097129,-0.018408041,-0.08740899,0.052762702,0.0034010354,0.061246842,-0.012685806,0.069394425,0.043375082,0.017926889,0.020561602,0.051769115,0.10860075,-0.0476234,-0.124695115} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:36.734763+00 2026-01-30 02:01:10.706547+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1870 google ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE 1 t 1873 Go Karts Mar Menor unknown Los miércoles tienen una oferta genial para grupos grandes. Está genial de precio e instalaciones los miércoles tienen una oferta genial para grupos grandes. está genial de precio e instalaciones 5 2025-01-30 01:52:39.833374+00 es v5.1 V1.01 {A1.02} V+ I3 CR-N {} {"V1.01": "Los miércoles tienen una oferta genial para grupos grandes."} {0.009502263,-0.00040429752,-0.03185075,-0.026316702,-0.07254354,-0.008318804,0.021876281,0.027213821,-0.023959966,0.02257168,0.11466116,-0.016687576,0.0028328507,-0.072951704,0.018209767,0.038944088,-0.022479206,-0.01722513,0.011965077,-0.014529648,0.0065164394,-0.09311786,-0.06747069,0.08138588,-0.08456761,-0.008835933,-0.03827644,0.060666513,-0.00075324276,-0.015196453,0.014213809,0.09462766,0.12937172,0.005841816,0.010323286,-0.0006162173,0.08582653,-0.0020320464,0.0027425515,0.03872032,-0.09303892,-0.079295896,-0.031410553,-0.0072706,0.026017671,-0.055838306,-0.032737013,0.092181675,-0.007073366,-0.0021914965,0.007466862,0.005476117,0.00950065,0.012914056,-0.017779551,-0.04618032,-0.0013425988,-0.06880526,0.040195517,0.045567643,0.02630491,0.01458407,-0.07918196,0.012880831,-0.02069708,0.039709732,0.028298598,-0.01545966,-0.02435187,1.1853187e-05,0.09558398,-0.0914763,-0.01904118,0.10830582,-0.05139557,0.07636841,0.03938697,0.048830368,-0.04443041,-0.059281107,-0.017384464,0.0065340935,-0.023796437,-0.058335133,0.0039169015,0.0030028094,0.010227477,0.00030606994,0.018116789,0.041528076,-0.10198984,0.122292735,0.031385176,0.03031059,0.0046385555,0.041549217,0.012089281,-0.12762704,-0.0062304297,0.0014516853,0.080694064,0.012285074,0.055866297,0.081511445,-0.093284965,-0.026893707,0.00037327598,-0.040400572,0.037494432,0.03483101,-0.037983615,-0.08232231,-0.035673257,0.0065165707,-0.12104815,-0.04149701,0.034622975,-0.021460053,0.06956949,-0.09594236,0.071511686,-0.028237995,-0.026520189,-0.04810619,0.022095365,0.0064767534,-0.019425577,4.0556043e-33,-0.093920186,0.0067121848,-0.0016181357,0.094825275,-0.04118052,-0.004248103,-0.014836404,-0.011328984,-0.030586192,-0.012774311,-0.087919354,0.0392116,-0.02747978,0.026902448,0.11948288,-0.008059954,-0.035160877,0.030078731,0.049124863,0.060684,-0.09206385,0.033091657,0.0017060164,-0.030568283,0.026730807,0.09744572,0.003048759,-0.09518017,-0.04052791,0.043567542,0.009702094,-0.031733267,0.0071018864,-0.025548464,-0.08147554,0.015223802,0.10973225,0.015678393,-0.0143673085,0.029763732,-0.0044630184,0.020381963,0.03659058,0.022499561,0.057277653,0.024941657,0.041348983,0.011015967,0.05354452,0.034234002,-0.055151567,-0.045389928,-0.06999546,-0.06402614,0.04397545,0.012141952,-0.08277836,0.03696231,-0.021389686,-0.076935045,0.0029625206,0.0042309808,0.005859136,0.02207898,-0.016554672,-0.0679245,0.035094116,0.041626275,0.12948698,0.047523037,-0.052798267,-0.10111135,-0.007956833,0.044513974,-0.043548603,0.05153261,0.0027464975,0.09669132,-0.03438884,0.03296641,-0.04143001,0.06158777,-0.0021100403,-0.028769925,0.114894226,0.08464518,0.028875954,0.034706876,0.005349691,0.051106516,0.030920634,0.07557922,0.044848707,0.040563982,-0.011607981,-6.739865e-33,-0.030484691,-0.0029981204,0.02560328,-0.011777574,0.046221867,-0.0020790326,-0.040951576,-0.045287192,-0.049891405,-0.019792305,-0.07138597,-0.096995234,0.095592126,-0.03826479,-0.0448992,0.014394442,0.047108036,-0.051952213,-0.05154297,0.010678876,-0.017903043,0.0017289406,0.08096274,0.03987546,0.0022635532,-0.07465742,-0.02540225,-0.027383186,-0.07410843,-0.0018331413,0.016481142,-0.011865323,0.023590691,0.029162966,0.036421176,0.062182903,0.055695985,0.095535055,-0.010825024,0.01616345,-0.0020869263,0.04534739,-0.035238206,0.020968515,-0.052284416,0.036190227,0.005441805,-0.12966788,-0.0889106,0.0075807003,0.015319072,-0.010799762,-0.031575896,-0.10155772,-0.017232222,-0.060566094,0.042156894,-0.058214467,-0.037341435,0.060062587,0.10062677,0.010424099,-0.021825502,-0.015891913,0.016081087,-0.035750754,-0.031015595,0.006487559,-0.06892763,0.096390896,0.05231727,-0.06992505,-0.104199216,-0.024182979,-0.048854142,-0.020827439,-0.064160675,0.018564032,0.041412327,-0.050676554,-0.012583713,0.02784917,0.019253584,-0.056156967,-0.03652154,-0.08698272,0.039207038,0.08887583,-0.030495448,0.0474853,0.053268503,0.015965573,-0.041479476,-0.10209968,-0.047323603,-3.0069565e-08,0.05517048,-0.017651787,-0.03084327,0.0080803195,0.0073483265,-0.05762784,-0.07607351,0.04449217,0.07162728,0.022167623,-0.053511247,-0.0021952246,-0.016376032,0.08882439,0.0027022848,-0.016129145,0.001803399,0.06262476,-0.059053868,-0.008467999,0.058423985,0.02057091,-0.06255193,-0.07291852,0.06534805,-0.049337074,-0.063181065,-0.032078505,-0.002546597,0.047652896,-0.02736743,-0.011461691,-0.09628057,-0.0011484885,0.0035368984,-0.012572644,-0.0412589,0.047379825,0.036056112,-0.13551159,0.07671158,-0.013697453,-0.030482046,-0.023534741,-0.053599864,-0.08542402,-0.0707234,-0.0010936363,-0.034819942,0.04045534,-0.043211758,-0.065596685,0.0678815,0.006373346,0.075260915,-0.048024736,0.029728457,0.08946902,0.04807093,-0.025948843,0.015068314,0.09309781,0.03826834,-0.04595925} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:10.337774+00 2026-01-30 02:01:11.013106+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1871 google ChdDSUhNMG9nS0VJQ0FnSUNhd09uTGpnRRAB 1 t 1874 Go Karts Mar Menor unknown Muy buenas instalaciones para pasar un buen rato de karts. muy buenas instalaciones para pasar un buen rato de karts. 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Muy buenas instalaciones para pasar un buen rato de karts."} {-0.025524937,-0.00030350234,-0.055683978,-0.0771335,-0.09196474,-0.0039397804,-0.013690875,0.0017483155,-0.0069137677,0.02189915,0.050999317,0.030351352,-0.07504909,0.031805385,0.0666527,-0.04369224,-0.049556773,0.033697426,0.0032262125,-0.050988864,0.027193738,-0.0828648,-0.0647942,0.051136315,-0.10796743,-0.06070806,0.01784801,0.027545717,0.021338359,-0.058531202,-0.032056946,0.023036042,0.053416993,-0.089171566,-0.0090275705,-0.06932665,-0.013935944,-0.023613486,-0.04190981,-0.014882685,0.009655418,-0.05333045,-0.07556608,0.020496836,-0.0009752518,-0.080913335,-0.026189512,0.01642662,0.0258398,-0.053176384,0.019047553,0.011520224,-0.011683378,-0.0083775865,0.009292265,-0.045589134,-0.08800916,0.048549693,0.12173105,0.026208818,0.09585486,0.07277419,-0.07230427,0.030764429,-0.03751447,-0.01377931,-0.00066692254,0.06878533,-0.023400208,0.04298531,0.09716158,-0.13551927,-0.008560724,0.04102837,0.016483868,-0.043715548,-0.03358274,0.041789535,-0.085658975,-0.028423207,0.0018155851,0.022096792,-0.028613517,-0.020633789,0.024202997,-0.0046897708,0.01694014,0.06496606,0.007937662,-0.008293558,0.0052360776,0.052790523,-0.065270685,-0.055035766,0.058142584,-0.0021371716,0.06715641,-0.033951994,0.028010273,0.03943189,0.04149633,-0.0031577286,0.10206105,0.016606418,-0.076896586,-0.006878444,-0.045238197,-0.022290917,0.059742212,0.022611706,-0.11661673,-0.013613442,-0.029104063,-0.032997843,-0.073500305,0.011909804,-0.004073611,-0.03939251,0.02936219,-0.019931378,0.05626063,-0.004244087,0.02603993,0.012229816,0.053812753,-0.03948692,0.036221616,2.0967173e-33,-0.10598723,-0.003576782,-0.07236971,0.055959478,0.016952481,-0.07641421,-0.03182751,-0.11327323,-0.02682261,0.043831255,-0.06468281,0.056984436,-0.08024644,0.040637508,0.15674159,0.014499651,-0.0044700666,0.0009361159,0.0845103,-0.054685194,-0.06719229,-0.030301163,-0.029965501,0.09916693,0.074931845,0.049527008,0.06951493,-0.03589539,-0.027581764,0.052426815,0.05060257,0.017228872,-0.033721343,-0.032269455,-0.10518853,-0.036834706,-0.0131480275,-0.019523436,-0.00081459084,-0.020314785,0.13116959,-0.044418104,-0.0114448145,0.029505374,-0.0007794725,-0.029855965,-0.008655108,-0.0027038488,0.09756146,0.022907944,-0.07886416,-0.021171147,-0.016549552,-0.0027035067,-0.04845798,-0.024006328,0.012205239,-0.009632286,-0.038192227,-0.038274385,0.0049042315,0.0058684493,-0.0025700103,-0.058597084,-0.026056381,-0.07392247,-0.01245868,0.05252326,0.062221233,-0.021919895,-0.10253664,-0.040760506,0.01050452,-0.09286857,0.032009203,0.026381629,-0.057216916,0.10850017,-0.064731725,0.07217506,-0.05674325,0.027262531,-0.007123266,0.062116887,0.122061305,0.040383644,0.0034924543,0.052126728,0.008236713,0.07274127,0.018056681,0.11128112,0.0006164366,0.015180858,0.03444462,-4.489884e-33,0.008563067,0.028074851,0.09903319,0.084591836,-0.008044861,0.06711341,-0.042067677,-0.0025955727,0.01949124,-0.019887097,-0.05971477,-0.04060287,0.06446314,-0.015375576,0.026872257,0.09592425,0.02082388,0.011901466,-0.04729562,-0.08027023,-0.012253163,0.01266968,0.050559785,-0.047468204,0.00802363,-0.051660508,0.01351682,0.05692209,-0.08665646,0.039935462,0.057625473,-0.047730256,-0.07030327,0.09835954,-0.045263834,-0.025092188,0.09783107,0.123176254,-0.07937268,0.0033331339,0.05736679,0.07866113,-0.033715133,-0.00984465,-0.03753855,-0.026075149,0.09479935,-0.11162196,0.00075084437,-0.053141017,0.12334319,0.034170974,-0.010208131,-0.035844155,-0.0033048813,-0.037970584,0.021881325,0.013621417,-0.07192328,-0.03696084,0.053062253,0.049306616,0.043415077,-0.0675424,0.02090687,-0.06339702,-0.039271023,0.024429312,-0.010911723,0.008679746,0.081823885,0.042529613,0.04201099,0.05141506,-0.009503928,0.017792642,-0.027515853,0.041860014,0.019272977,-0.059005443,-0.03455091,-0.0400124,-0.0013113625,-0.018438434,-0.03249866,-0.018773763,-0.030285161,-0.0045753852,0.07699536,-0.023209376,0.059931528,0.0823313,0.03214543,0.016060492,-0.013978758,-2.461346e-08,0.0095245,-0.04911752,-0.122533694,0.041073333,0.044318072,-0.018343063,-0.034288276,0.05201855,-0.03842727,0.0077264635,-0.014962043,-0.017501952,-0.012659879,0.092021234,-0.041171104,0.049033694,0.010385076,0.13729736,0.0025021564,-0.0030674923,0.0033424736,-0.005178915,0.019650154,0.07921878,-0.0012437936,-0.09371874,-0.040841725,0.04765388,0.04134806,0.015159028,0.012805997,0.014504714,-0.05317815,0.023425447,0.040275693,-0.035799846,-0.069025286,0.09114159,0.007991528,-0.015308802,0.03873282,-0.04577473,-0.034614686,-0.02763507,-0.02672469,-0.06088127,-0.1104273,0.011815698,-0.032828376,-0.03784714,-0.0048484695,0.013170369,0.002419465,0.011941612,0.023740413,-0.015274642,-0.0041989246,-0.026873617,0.042905428,-0.06664651,-0.047462065,0.047527455,0.058445334,-0.029203808} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:14.367932+00 2026-01-30 02:01:11.017782+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1874 google ChdDSUhNMG9nS0VJQ0FnSURob0xHYXJBRRAB 1 t 1877 Go Karts Mar Menor unknown Un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encantados ellos y nosotros,lo recomiendo 100% un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encantados ellos y nosotros,lo recomiendo 100% 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encant"} {-0.031337157,0.08715038,0.038374227,0.018916758,-0.05243521,0.027446555,-0.009134689,0.005825304,-0.023691375,-0.0014939922,0.038667962,-0.09300282,-0.042271838,0.012046135,0.04116153,-0.0095049,-0.07576259,0.01674488,0.034789793,-0.03110926,0.029793903,-0.0051079215,-0.1305231,0.071843356,-0.07383478,0.015374028,-0.03426077,-0.010657087,-0.064665124,-0.01259036,-0.045218304,0.1111382,0.10575726,-0.056090835,-0.034034252,0.003934671,0.07463868,-0.11052896,-0.063059285,0.047389995,-0.050243225,0.009877095,0.025510289,4.131344e-05,0.0058779465,-0.06041232,0.023459276,0.04468664,0.07497508,0.041474164,-0.069850944,-0.008434635,0.014232163,0.04609834,-0.04515216,0.029065551,-0.05417156,-0.0816094,0.05897106,0.03782301,-0.017898602,0.043844704,-0.09339111,-0.0062076016,0.0446534,-0.03259825,-0.026327154,-0.025646327,-0.04494977,0.056652885,0.06286901,0.03857169,0.043587677,0.014059219,-0.061589632,0.050227325,0.039593596,-0.013004972,-0.0148999,-0.065949626,0.017606802,0.028198391,0.030880442,-0.10792191,-0.028177753,-0.019044973,-0.022956675,0.024016503,-0.03692129,-0.029554196,0.009681782,0.041436624,-0.015395605,-0.0057140165,-0.006519809,0.10796312,0.0055157985,-0.11990423,0.025565626,0.0005545166,0.0564935,0.0372817,0.045754757,0.021139206,-0.085286655,0.015879905,-0.025193084,-0.09952861,-0.046390515,-0.018253332,-0.060057603,-0.021561168,0.05784287,0.0065982463,-0.037522968,-0.012439121,-0.013179516,-0.04454778,-0.004703524,-0.01525919,0.0026904,-0.0066269473,-7.418131e-05,-0.014242697,0.022399114,-0.04559391,0.1080576,1.07381e-32,0.030996516,-0.026441175,-0.007311262,0.035504922,0.04973221,-0.035508767,-0.008106855,-0.033999626,-0.027373664,-0.076263316,-0.04022774,-0.03602749,-0.018896515,0.006383979,0.028407035,0.0157228,0.062233675,-0.048379935,-0.002438459,0.07843743,-0.079775915,-0.046410076,0.008017905,-0.013035698,-0.0046998695,0.03605466,0.013222924,-0.031077174,-0.09627438,0.038146302,0.03453585,-0.0141788,-0.03781938,0.0029279126,-0.02550074,-0.047352724,0.05313897,0.008832123,0.034448322,0.0054762852,0.011514155,0.027207058,0.0073984195,0.06874812,0.022325655,0.020950593,0.055552334,0.046108205,0.05453819,0.03970095,-0.06351447,0.0010385525,-0.125525,-0.14655268,0.001961889,0.018679203,-0.0128099425,0.04908679,-0.022173876,-0.039763875,0.07522335,-0.07763423,0.042785693,-0.11399467,-0.011735814,0.026838463,0.082285106,0.045631945,0.09421043,-0.02545568,-0.042631812,-0.008928341,-0.0056832414,-0.03395358,0.05162205,0.0052731466,0.08772951,-0.0009356243,0.09126711,0.073367044,-0.07330653,0.018803045,-0.0007728665,0.04080371,0.04994248,-0.043267123,0.02085373,0.1346985,-0.02835343,0.031643447,0.020445393,0.07548502,0.09049522,-0.047181528,0.014544251,-1.0819534e-32,0.01042174,-0.005245894,-0.00072648714,0.09067629,-0.077710085,-0.049033843,-0.05124033,0.03831913,-0.022810219,-0.030813148,-0.069644764,-0.10855073,0.17075928,-0.1241512,-0.059566133,0.10520197,-0.019009447,-0.011152334,-0.09564615,-0.02811967,-0.017017402,0.068099424,0.0029469589,-0.001188662,0.0030784653,-0.095782995,-0.07580933,-0.0026710108,-0.09194513,0.0630474,0.00100521,-0.08302467,-0.015961638,0.0297081,-0.045554336,0.05022077,0.05696872,-0.014617138,0.020903558,0.04320636,0.0470911,0.053729657,0.0026079218,-0.014065998,-0.040648926,0.033691775,0.018073646,-0.0497358,0.033793118,-0.007815915,0.073151775,-0.0036494175,-0.07811196,-0.003669149,0.04232959,0.0021226157,-0.040605884,-0.046698,-0.04976768,-0.032711837,-0.0009961395,-0.061135713,-0.006127825,-0.014534084,0.069115356,-0.028767046,-0.07742842,0.02252725,0.070018664,0.052407302,0.041845214,0.00071071874,-0.029283747,0.043803986,-0.025389742,-0.034253214,-0.008594179,-0.02698225,-0.017838981,0.042153787,-0.06844863,0.01181257,-0.031249968,-0.060930528,0.002166285,0.031064725,0.028477114,-0.021467695,0.011161457,0.07167985,0.028544465,0.04173311,-0.08722377,0.013072099,0.00033088477,-4.026715e-08,0.05544014,-0.08357039,0.0019639656,0.03550632,0.036015306,-0.010652085,-0.008051962,0.020504035,0.05262048,0.03092159,0.011106244,-0.0067174244,0.027397366,0.00802,-0.03224171,0.027625443,0.13875054,0.08496321,-0.035233643,-0.03596967,0.10458957,0.0063637574,-0.016590824,0.020849839,0.02255016,0.00638608,-0.047449946,0.06626737,-0.0070896014,-0.05530106,-0.023664182,-0.058651306,-0.05221534,-0.094098926,-0.0407015,0.006461672,-0.0420097,0.019045653,0.0052600834,-0.0718351,0.10317321,0.042374175,-0.10584503,0.0435539,-0.06725841,-0.113679856,-0.013464846,-0.029133245,-0.009530312,0.030266508,-0.018346919,-0.06420284,0.122616485,0.024875183,0.11354576,0.01033325,0.03023618,0.009037408,0.04474926,0.028234895,0.05326488,0.06704154,-0.061443273,-0.061798837} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:31.756077+00 2026-01-30 02:01:11.028767+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1866 google ChZDSUhNMG9nS0VJQ0FnSUQ3bkxfMlp3EAE 1 t 1869 Go Karts Mar Menor unknown Pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre karting c'est vraiment trop dangereux 😰 pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre karting c'est vraiment trop dangereux 😰 1 2025-01-30 01:52:39.833374+00 fr v5.1 E4.01 {} V- I3 CR-N {} {"E4.01": "Pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre k"} {-0.023977222,-0.046249904,0.016167758,0.010317533,0.024472577,0.1187938,0.05959165,0.100698516,0.0075035477,0.046301488,-0.028026296,-0.07393772,0.02942491,-0.010235438,-0.0923297,-0.07970016,-0.040666677,0.08379902,0.008707724,0.07365395,-0.020503726,-0.073899284,0.032298233,0.03761483,-0.08392795,0.04518872,-0.023496157,-0.000761234,0.050870765,0.0021259931,-0.01676685,0.019378953,-0.01851216,-0.034730554,0.051964242,-0.035692263,-0.06606653,-0.09753678,0.033146184,-0.03811486,-0.04089219,-0.014030268,-0.043203536,-0.01573185,0.004119033,0.04363185,0.0016144031,0.01872232,-0.1224032,0.01157583,-0.047560878,0.0672474,0.1095114,-0.0045078485,-0.02246935,-0.071987115,0.003878205,0.012434229,0.07342776,-0.003935332,0.052920707,-0.046239816,0.06866074,-0.027749352,-0.12847763,-0.05691776,0.0033387735,-0.043804828,0.036445227,0.08768473,0.035661623,-0.024801932,-0.06287634,-0.051817004,0.06929514,0.07741651,-0.024259377,-0.0139246695,-0.060485277,-0.11902139,0.039697524,-0.042283483,0.019090163,-0.017518053,0.06317346,-0.025971584,0.01280841,0.029691573,0.099424265,-0.0001968483,-0.06721419,0.01756653,-0.06369614,-0.037446573,-0.012241785,-0.002484581,-0.02637903,-0.055536088,0.038619213,-0.043385502,-0.02343183,0.027685594,0.005665747,0.08532893,-0.04124281,-0.0056695812,-0.07497294,-0.05352521,-0.011245994,0.04894194,0.023782244,-0.039927192,6.276265e-05,-0.068869464,0.03263548,0.063742906,0.0026844859,-0.04630037,-0.030774768,-0.022221953,0.011522553,-0.020268058,0.02574072,-0.040053032,0.044558704,-0.06808123,0.0667217,7.3297e-33,-0.086671084,0.020258378,0.00028372358,-0.040744897,0.008060496,-0.11584686,-0.07198212,-0.015794922,-0.015132756,0.039742935,-0.03182932,0.02681902,-0.006871703,0.018588021,0.035766814,0.001412426,0.04446234,-0.074355565,0.06762788,-0.046143577,-0.014251116,-0.023381853,0.009278308,0.096050136,0.07262858,-0.026125606,0.049768325,-0.037377283,-0.055487365,0.02022321,0.053623144,-0.061449435,-0.052789226,-0.03432139,0.06260748,0.031464085,-0.07073514,0.07339281,0.0151455235,0.023308966,0.0032083553,-0.04546361,-0.015385542,-0.03410607,-0.011005368,0.08302445,-0.034257807,-0.027230028,-0.041990306,-0.028837806,-0.018392514,0.006335137,-0.024543207,-0.012544853,0.030898852,-0.021534497,-0.070133,-0.05755854,-0.04764049,-0.030213391,0.061653472,-0.083443105,-0.053496476,-0.00042491072,-0.105121166,-0.06326588,0.011819663,0.018552836,0.020368086,-0.020079548,-0.1025374,0.074773856,0.061911553,-0.065337725,0.106067926,0.052096244,-0.073962666,0.009846306,-0.04923281,-0.029659685,-0.10078624,-0.0809005,0.021457406,0.007445233,0.047602154,-0.042121347,-0.036113594,-0.010192652,-0.011838115,0.065663435,-0.024691077,-0.029756239,0.034336004,0.11613327,-0.027047578,-9.993582e-33,-0.028444149,0.048479613,0.021039266,0.03620819,-0.05552649,0.060940806,-0.03255381,0.015346415,-0.004400235,-0.040009875,-0.0693637,-0.00012349083,0.00952629,0.012746834,0.013039444,0.046039697,0.0018373586,0.07746674,-0.008331024,0.0005714521,-0.033317026,-0.08309296,-0.016566006,-0.039485827,-0.042914525,0.015377529,0.065025285,0.011079358,0.021977589,0.08570255,0.021075182,0.07956154,-0.011091498,0.054406095,0.059253618,0.056854203,0.032317553,0.043559536,-0.049045894,-0.0016563449,-0.031374093,0.09018357,0.02074356,-0.013609661,0.030805778,-0.02288608,0.061703738,-0.08987106,-0.097279966,-0.008444034,0.08707391,0.03508959,-0.039763037,-0.04054426,0.09787433,0.06301424,0.03285099,-0.056920495,-0.13809198,0.0053228866,0.055843357,0.110853516,-0.013349075,-0.023240082,0.048311565,0.0069747157,-0.13220705,0.009045067,0.007923472,-0.06276855,-0.00016641078,0.04043982,0.035655268,0.037404906,-0.05127416,-0.08967345,-0.0008649384,0.050479684,0.045202687,0.07029656,-0.10050462,0.013973807,0.022272997,-0.015627023,-0.049330626,0.024722202,-0.048236985,-0.022063704,-0.0034022792,-0.013943475,0.02110861,0.05271626,0.06694742,-0.06277174,-0.004572493,-3.5931844e-08,0.041396122,-0.0059575033,-0.05392241,0.013128032,0.069142364,-0.06703584,-0.09917242,0.0038059477,-0.057103053,0.04977612,0.042796917,-0.015975306,0.029985806,0.0079019,-0.026145201,0.06287625,-0.031400703,0.033948354,0.0059811887,0.014397381,0.03142676,-0.054222997,-0.034457553,-0.0580262,-0.05211642,-0.05368193,-0.038030017,-0.119129516,-0.02346356,-0.012588861,0.047862332,0.037994277,-0.051411547,0.034615587,-0.05480263,-0.057810027,0.030907221,0.0045976136,-0.02301957,0.1070005,0.07904575,0.011853054,-0.009441205,-0.001042565,0.024174664,0.03435596,-0.010265643,0.017766116,0.046342563,0.12468205,-0.0757713,0.010475576,0.020338787,0.11373817,0.046921443,0.05198131,0.013345232,-0.02606837,-0.019658627,-0.07545769,-0.030808719,0.11295839,0.04572474,-0.030486502} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:35.493199+00 2026-01-30 02:01:11.000561+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1787 google ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB 1 t 1790 Go Karts Mar Menor unknown Me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no sabemos cómo es el funcionamiento de las áreas de diversión\nPero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepotencia\nYo creo que la educación ante todo me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no sabemos cómo es el funcionamiento de las áreas de diversión pero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepotencia yo creo que la educación ante todo 2 2025-01-30 01:52:39.833374+00 es v5.1 P1.02 {R1.01,J3.01} V- I3 CR-N {} {"P1.02": "Pero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepot", "P2.01": "Me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no s"} {0.038355105,-0.029317897,0.014336486,-0.053799056,-0.086253345,-0.06294459,0.063503414,0.0058753127,-0.0050235596,-0.02582183,0.08490935,0.031861335,-0.07828532,-0.02270041,0.06904496,-0.029818667,-0.009105563,0.017507285,-0.00022552809,-0.013226452,0.062407088,0.03667812,-0.06107176,0.079418354,-0.045167662,-0.048606887,0.044721015,-0.008321811,-0.045237374,-0.046267264,-0.023652682,0.1313051,0.081221744,0.013638659,-0.05146965,0.013591386,0.0485158,-0.032047905,0.012284443,0.0035055287,-0.073867545,-0.027817044,-0.014240014,-0.056432758,-0.017657252,-0.087458566,-0.0060970876,0.037008982,0.02598007,-0.05848642,-0.046802793,-0.025532559,0.039327104,0.08044997,-0.06587415,-0.005445612,0.010580865,0.07444364,0.09289482,0.05418129,-0.015380176,0.026467202,-0.049063064,0.041666932,0.011694933,-0.0066617476,-0.020486085,-0.008714667,0.003387546,0.074218035,-0.035005655,-0.024535917,0.029161943,-0.03953211,-0.027794387,0.031009972,0.006828529,-0.028571783,0.016332308,-0.0095798075,0.06871454,0.010013967,0.0079128975,-0.045643438,0.003291042,-0.027558494,-0.05433148,0.052395113,0.011081549,-0.04922285,-0.046024844,0.11016071,-0.023060372,-0.057031207,-0.07945707,0.016719019,-0.014407706,-0.051215485,0.03544479,0.0028763285,0.03515775,0.040133674,0.04290538,0.02559804,-0.10413925,0.0247008,0.046996456,-0.0324171,-0.0011933584,0.06982117,-0.04920967,0.0002878128,-0.011025974,-0.009498502,-0.09778073,0.029518694,-0.0043532723,-0.07732718,-0.029287871,-0.0035834876,-0.041790683,0.0012860234,-0.03645132,-0.003233277,0.049492765,-0.060116068,0.038763504,1.1397958e-32,0.012792421,0.010308183,-0.012765797,0.043631725,0.051738765,-0.00617453,-0.008263611,0.0011178016,-0.02182482,0.03129047,-0.0045226635,-0.035996113,0.05080591,-0.0037604794,0.09703429,-0.051462602,-0.0098500885,0.022633173,-0.051185317,0.03344566,-0.055894654,-0.06968301,-0.012405343,0.01696982,0.042734426,0.06917002,0.021456873,-0.027524628,0.013503644,0.05863362,-0.051356252,0.008454049,-0.011262493,-0.049397793,0.008918551,0.013262786,0.054978527,0.035868317,-0.04968414,-0.046651587,-0.0062920363,0.032877535,-0.034161475,0.024396513,-0.0076071452,0.05798467,0.0634332,-0.09778085,-0.03410087,0.02129947,-0.11099737,-0.030312376,-0.047792472,-0.05594581,0.04672973,0.034322776,-0.014378963,0.003570592,0.01861805,-0.007558311,0.037705176,-0.0010069687,-0.01968262,-0.04345619,-0.026637454,-0.05213523,0.02787017,0.046795264,0.13280688,0.006107296,-0.10215383,0.007995206,-0.06085561,0.07542537,-0.011650937,0.05745831,-0.06656342,-0.002000438,0.017846473,0.013502922,0.036967423,-0.07191644,0.04039332,-0.005669017,0.13961844,-0.030746311,0.019948553,0.015275998,-0.05621897,0.08911457,-0.05182399,0.13899262,-0.04649789,-0.015940184,0.04932134,-1.453567e-32,-0.028195476,0.06759795,-0.05571588,-0.015209676,-0.091615565,0.0077551673,0.042243566,0.023256974,-0.010615197,-0.039873686,-0.11400807,-0.116878726,0.05387195,-0.010615907,-0.01828247,0.014013675,0.035783824,-0.10832791,-0.08255525,0.008950378,0.020952236,-0.022187613,0.026531627,-0.028589668,-0.050620377,-0.09534236,-0.06114527,0.031474356,-0.059044633,0.062093,0.033937957,-0.030051338,0.0018329839,0.09438518,-0.05035802,0.045538496,0.02358179,0.08198468,0.0082771825,0.0391338,0.076381266,-0.035612524,-0.03070442,-0.07233861,-0.0623429,-0.024599744,-0.038072646,-0.08782177,-0.15564202,-0.042997543,0.061827835,-0.013249808,0.013177458,-0.028818632,0.04978392,-0.0031051994,0.036706924,-0.119323805,-0.119686715,-0.007332371,0.09723985,-0.00059207744,-0.07046689,-0.054589804,0.12649643,-0.06256068,-0.08574375,-0.015272925,0.035280704,0.052976348,0.07437535,-0.02291627,-0.12736483,0.037481252,-0.0036735681,0.013806254,-0.06951226,-3.692082e-05,-0.039348226,0.013794669,0.019856602,-0.02261591,0.03469401,-0.041352317,0.04086205,0.060018532,-0.025211766,0.026290817,-0.027091334,-0.038290583,-0.027783263,0.037113175,-0.0917627,-0.07127261,-0.06292844,-5.1097675e-08,-0.07517564,-0.06977721,0.05431807,0.0067404066,0.020909708,-0.017901177,0.0013368212,0.075610764,0.029878946,0.072103836,-0.07205006,-0.04572292,0.012770357,0.053281866,0.07893419,0.030231904,0.10160819,0.005083425,-0.06420072,0.009533928,0.086141564,-0.036077455,-0.048976094,0.039724767,0.043668974,0.0036678393,-0.017822325,0.073533185,-0.026755417,-0.023826027,-0.02169687,-0.03793948,-0.026419697,-0.06757692,-0.020263547,-0.0005184876,-0.006686079,-0.034107007,-0.0057052826,0.0057713883,0.03846087,-0.038387068,-0.051344916,0.019482201,-0.056379642,-0.051344145,0.00023682794,0.010709688,-0.018227223,-0.03851375,-0.06142973,-0.06727946,0.08006994,-0.021216327,0.08888094,-0.07079787,0.058234986,0.027123144,-0.04880482,0.055438038,0.050613537,0.1396119,-0.09254395,-0.054359116} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:45.85515+00 2026-01-30 02:01:10.710332+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1868 google ChZDSUhNMG9nS0VJQ0FnTURBNGVmN0tnEAE 1 t 1871 Go Karts Mar Menor unknown Nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de nuestra cita reservada nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de nuestra cita reservada 1 2025-03-06 01:52:39.833374+00 es v5.1 J2.02 {P1.02} V- I3 CR-N {} {"J2.02": "Nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de"} {-0.026767166,0.069831565,-0.050134793,-0.0094496,-0.118843906,-0.011668793,0.050099906,0.030791972,0.02676785,-0.0021547147,0.042551596,0.007761153,-0.022386765,0.018953001,0.055576753,-0.05335154,0.040462755,-0.020778619,0.064362764,0.032739464,0.037315086,-0.022889348,-0.1579476,0.03606565,-0.04687238,-0.045987226,-0.047856048,-0.01049445,-0.048357625,-0.08444557,-0.0069085537,0.059645988,0.04442806,0.03172707,-0.07974319,0.034797955,0.019941945,-0.07598442,-0.05888953,0.08914485,-0.076503456,-0.040316697,-0.07511474,0.019349016,0.008423908,-0.041628495,-0.012983033,0.09978348,0.034161966,0.0016370924,-0.12243157,-0.03140393,-0.029214634,0.05729073,-0.021202438,-0.04388573,-0.024131127,0.030391648,0.007388262,0.031648256,0.011708752,0.054603677,-0.008033184,0.0710441,0.008502058,-0.0026629644,-0.026067331,-0.051630184,-0.06427158,0.0053380663,0.07939811,-0.06492783,0.016444646,-0.009459485,-0.07718596,0.043191254,0.035070397,0.014543666,0.01346228,-0.013049291,0.06275886,0.024006097,0.016201856,0.038367752,-0.051048815,0.00012298794,0.00057855446,-0.026171124,0.028388161,-0.032889135,0.055924077,0.08571404,-0.084534734,-0.04825669,-0.015337844,0.009490259,-0.007530242,-0.025488762,-0.046046134,0.0074017155,0.1032379,0.04548025,0.050573785,-0.012202743,-0.06668173,0.061098054,0.029120173,-0.07889883,0.00095684064,0.10356373,-0.14840291,-0.0050594863,-0.10003818,-0.020943634,-0.08359061,0.032996543,0.016392564,-0.05232578,-0.005275336,-0.10294845,0.031142987,0.0034533315,-0.0003172188,-0.111917615,0.0072929137,-0.044691753,0.08835589,7.905165e-33,-0.12641375,-0.055641316,2.5008285e-07,0.051883113,0.052737005,-0.0040971856,-0.007309549,0.0048644524,-0.058843847,-0.030075364,0.00050467957,0.047876157,0.06325688,-0.022688774,-0.0023028143,-0.0022662666,0.06548449,0.0464373,0.043743942,-0.025961144,-0.036630165,-0.03899877,0.042295065,0.028517045,-0.0068913368,0.032007534,-0.02092492,0.013785844,-0.05045732,-0.0010168138,0.07839781,0.0047712913,0.00064994406,-0.0626103,-0.043216575,0.0027582129,0.02662428,-0.002926761,-0.06051803,-0.06726598,-0.008418169,0.06427246,0.03389041,0.107496545,-0.0128432615,-0.0022185035,-0.005725459,-0.019026883,0.05481117,0.019705895,-0.08653224,-0.03226713,-0.04601442,-0.015488482,0.0028201796,0.06888876,-0.0014543316,0.067477085,-0.03609258,-0.09804327,0.02967236,-0.086335175,-0.029831806,-0.0096479505,0.003961475,-0.035867225,-0.039815232,0.011855963,0.13174857,0.032012835,-0.04392305,0.0410516,0.07880369,0.035854287,-0.032780625,-0.024888719,-0.0033457752,-0.050711516,0.019008644,0.025402931,-0.00037774967,0.009161416,-0.008294248,0.04597741,0.14966579,0.0527275,0.03217519,0.041265495,-0.039796032,0.09863667,0.033490967,0.120269604,0.0010659677,-0.08074225,0.11028537,-9.550327e-33,-0.057472553,-0.04294255,-0.007311499,0.014903165,0.01832142,0.018379617,-0.019070162,0.045960307,-0.03335818,-0.016922757,-0.0574237,-0.11770864,0.045520373,-0.028819785,-0.07042362,0.035909753,-0.0045641284,-0.072579905,-0.07428858,-0.029580276,-0.04045982,0.09582926,0.07086869,-0.0031618183,-0.0029296456,-0.04056083,-0.033774663,-0.0027120707,-0.06484664,-0.04942293,0.073973864,-0.05162985,-0.04190361,0.029818604,-0.053370148,0.01225317,0.045954406,0.063997604,0.013771887,0.02886278,0.067201115,-0.031932015,-0.05313799,-0.036432557,-0.015424881,-0.00025690798,0.0010732029,-0.15771893,-0.022069221,-0.03153263,0.10775643,-0.03301991,-0.072450414,-0.0007376417,0.070869744,0.05299762,-0.051593293,-0.105858386,-0.03820701,-0.006788288,0.09874949,-0.015542209,-0.028868847,-0.010673042,0.07198083,-0.008343151,0.00936827,0.06031129,-6.440423e-05,0.04941908,0.011036855,0.013842904,-0.10086997,0.009196947,0.011338535,-0.035216447,-0.09519283,-0.011074496,-0.06651983,0.01703383,-0.021837877,-0.068798475,-0.00985373,-0.024912769,0.008611856,-0.07511874,0.05288728,-0.0047976817,0.013884048,0.029396314,-0.013301518,0.001554987,-0.060429394,0.009619324,-0.060026523,-3.495196e-08,-0.0049547683,-0.04383824,0.00843956,-0.02307599,0.028112663,-0.049975965,0.0090989815,0.0324725,-0.0018981588,0.08566749,-0.049069647,-0.023995524,0.0120137725,0.064290754,0.0900569,0.026199084,0.17121351,0.026954867,-0.026985599,-0.04511413,0.063554816,0.023706809,-0.045677412,-0.0067403596,0.050101317,0.0420929,-0.032627225,0.016428193,-0.028633434,-0.049549494,-0.055809222,0.002609879,0.02931611,-0.08689501,-0.052032806,0.0014779369,0.007541472,0.0023621423,-0.0054460033,-0.022253964,0.08444839,0.05358945,-0.030454788,0.0730137,-0.008919317,0.00068721455,-0.05761007,0.046825152,-0.011305529,-0.04231856,-0.069227986,-0.044573832,0.06244672,0.0028162396,-4.3517237e-05,-0.0305424,0.053850062,0.031038906,0.009084187,0.06176656,0.0738374,0.05654665,0.013826678,-0.03031228} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:53.147935+00 2026-01-30 02:01:11.006658+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1869 google ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE 1 t 1872 Go Karts Mar Menor unknown Sitio enorme, con un servicio excepcional. Estaba todo muy limpio y desinfectado y además el tiempo de carrera comparado con el precio estaba estupendamente.\nVolveremos. sitio enorme, con un servicio excepcional. estaba todo muy limpio y desinfectado y además el tiempo de carrera comparado con el precio estaba estupendamente. volveremos. 5 2023-01-31 01:52:39.833374+00 es v5.1 E1.03 {P3.01} V+ I3 CR-N {} {"E1.01": "Estaba todo muy limpio y desinfectado", "E1.03": "Sitio enorme, con un servicio excepcional.", "R4.03": "Volveremos.", "V4.01": "además el tiempo de carrera comparado con el precio estaba estupendamente."} {0.011998706,0.0031074886,0.027365824,-0.016442299,-0.09891683,-0.0052908217,0.06669164,0.06484613,-0.027907763,-0.01893962,0.043250628,0.017050235,-0.037147734,0.007568542,0.07527567,-0.029163646,0.045053817,0.051292848,0.013768412,0.064321116,0.09103957,-0.015108052,-0.11048074,0.059764214,-0.096807376,-0.06102721,0.013373283,-0.009138549,-0.10389012,-0.06939353,-0.022114702,0.0061275726,0.13546501,-0.01977473,0.028156422,0.027002707,0.053624865,-0.07419676,-0.013719363,0.02657157,-0.097310625,-0.06430178,-0.0108026555,-0.056825675,0.04310333,-0.07280162,0.06129438,0.043550335,0.0529837,-0.020544033,-0.11094364,-0.0008076112,-0.0050269472,0.029696615,-0.05796959,0.0009669105,0.018797386,0.0042209383,-0.0022524793,0.005769353,0.013380184,0.050281182,0.0140280565,0.041941468,0.03059484,-0.0067622676,0.030970816,-0.012710453,-0.044310085,0.04931692,0.074051216,-0.091068774,0.06474478,0.04775745,-0.025963286,0.049046054,0.01267757,-0.009026425,-0.0014144621,-0.07101453,0.028930223,-0.03857816,-0.013758035,0.022661015,-0.028152429,0.010739148,-0.04426174,-0.0064127706,0.0313251,0.0056137727,0.010514,0.053789087,-0.12007375,-0.022874799,-0.025497902,-0.004309139,-0.029133497,-0.038423024,0.012464619,0.012739129,0.056382008,0.012984726,0.11043682,0.077054374,-0.033785067,0.02195798,0.012139748,-0.06921346,0.0016286462,0.091164246,-0.06668161,0.013178025,-0.070624545,0.027795672,-0.11242952,0.08619646,-0.046568137,-0.07127302,-0.021339174,-0.0460969,0.10740059,0.064812444,0.01871466,-0.008016786,-0.044426296,-0.12705374,0.08799367,9.5365976e-33,-0.049168076,-0.10595038,0.08422634,0.0147580495,0.015908245,0.0026243518,-0.020668386,0.0064564478,-0.046674855,0.026831087,-0.098806664,0.05849906,0.07689095,0.029642656,0.022753663,0.03404665,-0.031684443,0.030041281,0.057449345,0.039353818,-0.06417125,-0.0092861485,-0.005887971,0.0036201593,-0.013709118,0.041684,0.0019816712,-0.08278547,-0.025398044,0.053871654,-0.0019282121,0.020150846,-0.0038236335,-0.059938632,-0.0411571,-0.02412168,-0.018518774,0.048380442,-0.0075965766,-0.04877584,0.004565398,0.047517072,0.010081711,0.030351765,-0.009920949,-0.02144134,0.055262245,0.040650457,0.08612982,0.019863091,-0.02263365,-0.11514061,-0.033151776,-0.054978646,0.020376742,0.004620045,0.0038934553,0.06952809,-0.030265318,-0.037947465,0.048519187,-0.03877572,0.020772206,-0.05744033,-0.072025865,-0.02206835,0.03193979,-0.011302948,0.13435163,0.00293869,-0.100823,-0.01381192,-0.049181897,0.040985864,-0.07174301,0.013912889,-0.015653951,-0.010860514,0.01902124,0.029267082,0.00047901995,-0.0062076035,0.028538264,-0.03607994,0.104348324,0.119287215,-0.0028917934,0.033827756,-0.029190429,0.0969935,0.0051033064,0.09165135,0.0015009252,0.03808153,0.06375333,-1.2133128e-32,0.0013206819,0.028897276,0.007360635,0.06827898,-0.046282023,0.020635841,-0.011837204,-0.03484071,-0.04901258,-0.003488624,-0.07991016,-0.094737865,0.12660961,-0.016056987,-0.05034247,0.11020555,-0.07801981,-0.085250266,-0.072238155,0.006631491,-0.0058936505,0.042383138,0.073702194,-0.048429098,-0.034011412,-0.09992298,-0.023113297,0.046903208,-0.111291185,-0.039873987,0.053305503,0.027763678,-0.077930436,-0.0058709057,0.006038588,0.07042975,-0.012550831,0.010268991,0.03152053,0.05691641,0.020888919,-0.023310596,-0.0061409883,-0.020728016,-0.0016820342,-0.025943907,-0.030931188,-0.12890042,0.01918231,-0.024997655,0.018767368,-0.04838647,-0.04172196,-0.017779421,0.03737531,0.015291399,-0.06859942,-0.09854011,-0.15328074,-0.02413957,0.07205783,0.014490137,-0.03309032,-0.030659754,0.06613789,-0.008886063,-0.044088736,-0.009668261,-0.05024528,0.044941418,0.03667113,-0.013159714,-0.0789226,0.039452855,-0.09410277,-0.014453109,-0.0741492,-0.052215077,0.027382193,0.024651706,-0.04117365,-0.018086601,0.04346148,-0.066305004,-0.08873453,0.021210952,0.004201734,0.025010586,0.0006691763,0.03136712,-0.009782825,-0.0035996647,-0.056709304,-0.100140706,-0.053981937,-4.6227655e-08,0.016363291,-0.08543526,0.02792241,0.021026757,-0.012669116,-0.06407666,-0.0245911,0.06156324,0.07359738,0.06314441,-0.080086805,-0.03723186,-0.012711559,0.0056568272,0.0027678467,0.035147022,0.09314828,0.07686371,-0.032281872,-0.06165407,0.10767374,-0.038506944,-0.017055308,-0.0007898379,0.026748689,0.0026342606,-0.014119724,0.019092813,-0.029232517,-0.0011749627,0.01138621,-0.038408097,0.005749773,-0.10530181,-0.019069962,-0.012174018,-0.022555947,-0.012114055,-0.057565976,-0.033238366,0.09291727,0.0043427367,-0.0329542,-0.025393326,0.0034694679,-0.016443431,-0.024807677,0.03981232,-0.01218512,0.024696387,-0.03599612,-0.03038795,0.09423185,-0.0050847465,0.030031491,0.022982579,0.05817647,0.040733673,-0.009709383,0.06331519,0.023440404,0.036075026,0.02421003,-0.06078334} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:03.684683+00 2026-01-30 02:01:11.009679+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1543 google ChdDSUhNMG9nS0VJQ0FnSUQ2MjcyajdnRRAB 1 t 1546 Go Karts Mar Menor unknown Superb! Great fun and well organised superb! great fun and well organised 5 2022-01-31 01:52:39.833374+00 en v5.1 J2.01 {} V+ I3 CR-N {} {"J2.01": "Superb! Great fun and well organised"} {-0.0059740916,0.027734311,-0.0135665145,0.019765982,-0.06704641,0.049161077,-0.007149323,-0.05206103,-0.07986022,0.03814398,0.0043069166,0.04132049,-0.00074400345,0.05397129,-0.035402942,0.0018189143,0.011594604,-0.07627226,0.043813672,-0.03922315,-0.018342998,-0.07211119,0.012005912,-0.025108336,-0.05878653,0.08914612,-0.099036165,0.038441014,0.047014453,-0.09129079,-0.020164113,0.01616435,0.009463831,-0.030787252,0.012947237,0.04677216,0.04305608,-0.08396464,0.008274224,-0.0021254832,-0.031010086,-0.025113963,0.00283458,-0.0068286266,-0.022744047,0.12613697,0.0077174734,-0.015385941,0.039174203,0.069141485,0.039075673,-0.0049326955,0.0242174,-0.0500928,-0.053194415,0.13323253,-0.036171082,-0.13919848,-0.070461474,-0.108171076,0.083038546,0.04450837,0.008520925,0.05998181,0.017640017,-0.057979673,-0.06453779,0.01881857,0.03634351,0.0018630128,-0.033140942,0.04856812,0.04418355,0.041470177,0.10159772,0.028926698,-0.017838074,-0.080826245,-0.022495091,-0.026492296,0.012958914,0.0080648605,-0.0023119724,-0.028263388,-0.045698985,-0.116726376,0.022575239,0.062465366,0.015437168,-0.031580243,0.033065647,0.07617376,-0.014377991,-0.028278014,-0.06926493,0.061214946,-0.0033274435,-0.02614056,0.0027937912,0.043768324,0.007461794,0.030500904,0.05547965,-0.04556642,-0.040133394,-0.00420656,-0.027368799,0.0361874,-0.011488383,-0.050815284,0.015746282,-0.02020177,-0.0025734408,0.0050723213,-0.00025968603,0.035179663,-0.044408802,0.040497214,-0.06896318,-0.024551874,0.1007732,0.034090117,0.07133087,-0.031183548,-0.032481946,0.027312811,0.10469504,-3.871903e-33,0.0158575,0.016931571,0.008956441,0.12545058,0.09853175,0.012566599,-0.04230214,-0.0121391555,-0.08611261,0.043238048,-0.0076973317,0.098559424,0.017363293,0.03371303,0.017892506,-0.077477776,-0.007478538,0.024061088,-0.012784023,0.014517674,-0.036185294,-0.036329098,-0.013376183,0.00566575,0.021495787,-0.018651057,0.04380157,0.001520308,0.068831,0.036247127,-0.025816029,-0.08523601,-0.108443946,0.022200972,0.038212806,-0.024542468,-0.099819764,-0.082039684,0.01968047,0.042761568,0.013239658,-0.07956471,-0.024293892,-0.00540337,-0.07561965,0.03047317,-0.0007948449,0.045053206,0.09498603,-0.034169044,-0.057677783,-0.03672341,-0.052697405,0.04082131,0.016348386,-0.051890563,0.005007648,0.014737622,0.021663316,-0.025533669,0.13134244,0.03858822,-0.10408956,-0.06295124,-0.047289897,-0.03976707,-0.0012773672,0.029690528,0.056321084,-0.021221299,0.026187846,0.01995538,0.12052954,-0.032448318,0.04278316,0.05735874,-0.036736354,-0.03981329,-0.0839458,0.036082603,0.019670706,0.03404013,0.021303335,-0.008993756,-0.036133975,0.0007685063,0.036127556,-0.07690908,-0.00042554273,0.027792072,-0.054687586,0.026139643,0.09035704,0.010252103,-0.0026155745,4.152427e-34,0.12755682,0.06734421,-0.01349936,-0.04039518,0.046222582,0.0008914264,-0.08103826,-0.012559556,0.03699916,0.07270541,0.012327908,0.056674927,0.014419601,-0.04325501,-0.07956529,-0.005600162,0.049048092,-0.008925751,-0.026670702,-0.055012353,-0.04048458,0.0608613,-0.023695162,-0.07437935,-0.045093417,0.07364423,-0.00041427067,0.0518101,0.08537195,0.0072964127,-0.018783776,-0.03156326,0.02309957,0.019204998,0.025212688,0.091232285,-0.0061004935,0.012716689,-0.056058172,-0.026861222,-0.02474534,0.032649703,-0.041659564,0.061414205,0.023268413,-0.035025492,-0.03736432,-0.006540521,-0.05530067,-0.026619531,0.021120435,-0.009781498,-0.03546812,-0.18302302,0.008075801,-0.016324494,-0.005082866,-0.05812206,0.037685186,-0.004305512,-0.09080645,0.053739578,-0.014074529,0.091521904,0.04160549,-0.07738953,-0.006001204,-0.08045042,-0.083818465,0.009687013,-0.048168156,0.04013291,-0.06543507,-0.007344657,0.054109182,-0.042433858,0.121240735,-0.0015098853,0.0873149,0.058754466,-0.07956873,0.016369574,0.025304368,-0.057865344,-0.031153714,0.01979571,-0.0191741,0.06182608,-0.064670004,0.06052933,0.054012366,0.10949776,-0.0041357675,-0.027283069,0.068411574,-1.96075e-08,0.02406472,0.06147159,-0.030827215,0.0109337615,0.033902895,-0.116730735,0.025483986,-0.03549012,-0.0084152715,0.059300166,0.035114467,-0.046189494,-0.01646723,0.07691838,0.039012127,-0.016068459,-0.036151387,0.1476969,-0.04014981,-0.02486991,0.069091395,-0.030946378,-0.07547364,0.049654767,-0.12359455,-0.0032301398,-0.021794442,-0.042095106,0.015654145,0.02015203,0.015095267,0.08305993,-0.049425557,0.027645122,-0.047645643,-0.05494456,0.015237025,0.014389323,0.02292008,0.010239013,-0.021824747,-0.14189306,-3.1658645e-05,-0.012034133,-0.030251535,0.015485437,-0.037888546,0.036374625,-0.048907597,-0.06808363,-0.04697792,-0.022226527,-0.030774737,0.005810809,-0.00014182375,0.029104182,-0.02852677,0.006833238,0.0024408642,0.062064204,-0.015785063,0.025528213,-0.04889518,0.03882035} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.67783+00 2026-01-30 02:01:09.724493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1880 google ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE 1 t 1883 Go Karts Mar Menor unknown Sin duda alguna, el mejor circuito para alquilar un Kart de 400cc, circuito divertido y técnico, y además el kart monta motor Subaru de competición y ruedas a la altura para ir muy fino. Sin duda volveré. sin duda alguna, el mejor circuito para alquilar un kart de 400cc, circuito divertido y técnico, y además el kart monta motor subaru de competición y ruedas a la altura para ir muy fino. sin duda volveré. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.01} V+ I3 CR-B {} {"O1.02": "Sin duda alguna, el mejor circuito para alquilar un Kart de 400cc, circuito divertido y técnico, y a", "R4.03": "Sin duda volveré."} {-0.07003251,0.042189308,-0.037988465,-0.04038562,-0.110319234,0.022383763,-0.06983114,0.06818782,-0.028382808,-0.0066702757,0.08463324,-0.03254108,0.00355126,-0.04371241,-0.030465456,0.09002452,0.007678912,0.038055565,-0.01058747,-0.045018185,0.12265411,0.01087602,-0.06936152,0.030427894,-0.12730585,0.025783358,0.0017965623,0.04714826,-0.047897916,-0.119581655,-0.098681405,0.04856719,0.008712613,-0.021132259,-0.04524815,-0.004649543,-0.07096094,-0.017671641,0.038538806,-0.004573946,-0.03776017,-0.0240739,0.011627347,-0.01798504,0.024859237,-0.0037028992,-0.015959585,-0.008521899,0.08982318,-0.09715405,-0.031775992,-0.025141122,-0.0029067022,-0.04287869,-0.012878702,-0.066284716,-0.067265846,0.06722206,0.16978848,0.051682614,0.066094466,0.045543596,-0.004522372,0.056683183,0.012639533,-0.11186916,0.039677452,0.03192389,-0.081431136,0.02486253,0.08376568,-0.098168425,-0.038456067,-0.017506622,0.017045839,0.014034279,-0.02047255,-0.040894583,-0.06384176,0.022393314,0.0026942985,-0.03789249,-0.039230544,-0.084352724,0.047564093,-0.0010162123,0.016918166,-0.05915828,0.072776705,-0.048071615,-0.02327731,-0.020379113,-0.04265723,-0.04025737,-0.010134118,0.025216047,0.03065739,-0.06723295,0.045636196,0.028301874,0.07291868,-0.010470101,-0.026289832,0.012072136,-0.07667023,0.08141457,0.038984254,0.079217486,0.02481179,-0.008223424,-0.0691211,0.06221561,-0.065907404,-0.11067923,0.0055526905,-0.05388838,-0.036625493,-0.0036160506,-0.04043685,-0.0033299967,-0.0067864573,-0.028860388,-0.0009001428,-0.0081934985,0.08797788,-0.06897473,0.05109101,1.0970693e-32,-0.048655905,-0.032784905,-0.013096856,0.016384415,0.025788784,-0.06389597,-0.02004102,0.0038472842,-0.036090888,0.035892256,0.0143926395,0.0637356,-0.032166395,-0.0068013966,0.029112924,-0.02651563,0.01235562,-0.13776255,0.03508808,-0.023350598,0.052242316,-0.020632328,0.04719969,0.100444704,0.033396006,0.06135948,0.10244334,-0.036734775,-0.07366873,0.06914279,-0.0015786804,0.07786435,-0.08923146,-2.2664453e-05,-0.031876087,0.012377816,-0.018799372,0.024434987,-0.01746964,0.008361001,0.03774833,-0.036421467,-0.082533,-0.030217705,-0.015779635,-0.030182948,0.035197683,0.05300195,0.11974961,0.096745245,-0.08608175,-0.029980902,-0.025857639,0.00045135093,0.03378839,0.030322412,0.026553988,0.016326906,-0.033514578,0.037516158,-0.07753578,0.020370286,-0.018376961,-0.043087944,-0.10926446,0.00980023,-0.005699551,-0.081429176,0.064210996,-0.023406835,-0.064720675,-0.024867339,-0.03356795,0.005500408,0.03482443,0.021455247,-0.023521904,0.052878432,-0.042447437,0.010908424,-0.07700923,0.0070547634,0.016966576,0.029544137,0.10635768,0.025177987,0.022828678,0.060875416,0.016836522,0.08794953,-0.0005192508,0.051899757,0.05776348,0.04515636,0.09158019,-1.1774231e-32,0.03719806,0.009779297,0.09730318,0.03777536,-0.022717467,0.04086707,0.04762531,-0.029986762,-0.073578194,0.04177728,-0.04417589,-0.027601955,0.057816513,-0.0026824828,-0.012254753,0.024340983,0.047040995,-0.044435456,-0.084599264,-0.027473953,0.019206872,0.09759239,0.028237047,-0.058731217,-0.0015726675,-0.041829288,-0.062273465,0.04344353,-0.059263576,0.0043696864,-0.0034881218,0.0028309706,0.01261178,0.11061969,-0.0974077,-0.01400636,0.086233355,0.07166307,-0.05834847,0.046032403,0.026113646,0.04128554,-0.026491314,0.014837265,-0.0616008,-0.030291606,0.09398505,-0.09907247,0.07866834,0.004776002,0.118022725,-0.049176626,0.04726739,0.008063371,0.056527894,-0.021405661,0.01931962,-0.0073997,-0.06872608,-0.021019364,0.07457053,-0.022032734,0.016556198,-0.07362877,0.046843994,-0.019883508,0.018301805,0.04583314,0.055131655,-0.04702022,0.07579171,0.024904296,0.021597348,-0.046865903,0.0035775192,-0.079142444,-0.07425521,0.030029807,-0.010028943,-0.0004407721,0.002415665,-0.050099228,-0.016794471,-0.017161649,-0.037031762,-0.029494839,-0.04616385,-0.01170437,0.07658818,-0.06768644,-0.007817517,0.047803733,0.024837315,-0.0026182656,-0.048809215,-4.673759e-08,0.029234832,0.056338847,-0.06503227,0.022118602,0.041108556,-0.04725624,-0.028896732,0.0011109269,-0.06024764,0.010405309,0.06808955,0.020264192,0.05874861,0.0331667,0.01784663,-0.015709963,0.014963145,0.10132534,0.040630385,0.01270495,0.049726006,-0.053118687,0.0018514927,0.082278915,0.015434986,-0.024986718,-0.029704342,0.008377356,0.031491425,-0.009540533,-0.08519662,0.024002772,-0.07551784,-0.075469345,-0.004055886,-0.0033177545,-0.049045768,0.06419155,-0.025101108,0.027398316,0.07421291,-0.009089942,-0.060243264,0.037511006,-0.047853023,0.027311761,-0.06684467,-0.053151514,0.012042919,-0.024202917,-0.06743274,-0.013595216,-0.019620163,0.070717745,-0.015185678,0.009661647,0.010287784,-0.036978733,-0.1121755,-0.081779465,0.028268257,0.027889695,-0.027359653,-0.089425445} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:41.782296+00 2026-01-30 02:01:11.048905+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1884 google Ci9DQUlRQUNvZENodHljRjlvT2xOeWNqQnJSMU4yUmpWTk9EWmpia1J6WmpocU9YYxAB 1 t 1887 Go Karts Mar Menor unknown Kul bana och vettiga Cartar. kul bana och vettiga cartar. 4 2026-01-09 01:52:39.833374+00 sv v5.1 O1.01 {O2.03} V+ I2 CR-N {} {"O1.01": "Kul bana och vettiga Cartar."} {-0.026264405,0.08739736,-0.067923024,-0.022105161,-0.12802376,-0.012271283,0.009026193,0.039119773,0.032650117,0.022338068,0.06385167,-0.01375422,-0.14057985,0.026876165,0.021898126,-0.03978639,-0.123172075,0.04607792,0.009273933,-0.015163735,0.014063903,0.0077794385,-0.00048383398,0.018887198,-0.035492692,0.046020858,0.006176673,0.013894807,-0.01161061,-0.08826501,-0.014278376,0.03534084,0.042927228,-0.0066691237,-0.039702367,0.00527021,0.037073094,-0.019528864,0.04431653,-0.043921858,-0.112866744,-0.05303416,-0.066388324,0.0018435528,0.046068955,-0.03285461,-0.02613476,-0.010107834,0.045550752,0.017693155,-0.025928343,-0.045225523,0.028656557,0.0053148153,0.016888654,-0.05373413,0.040763937,0.024272671,0.04673062,0.018976105,-0.010083714,0.0026610724,-0.055580053,0.022316841,-0.06619065,-0.033406653,-0.049776986,-0.065161504,-0.0910138,0.042727996,0.030263716,-0.10630936,-0.009513206,0.051216517,-0.038777925,-0.04402665,-0.0020936856,0.0006326264,0.114440694,-0.02462643,0.04076232,-0.015333516,-0.10492185,0.068091296,-0.08836643,-0.00035517724,-0.02803383,-0.07431665,0.02212006,0.0015394568,-0.0026601087,0.050507385,-0.03764924,-0.04074597,0.06284555,-0.0032030772,0.028583733,-0.022761896,0.062387403,0.058796663,0.0129157,-0.016216988,-0.050406706,-0.020479022,-0.086061575,-0.0172832,0.05291138,-0.07127026,0.024117151,0.016521411,-0.06677554,0.018879872,0.017820133,-0.07312407,-0.03189673,0.048356976,0.032454643,-0.023589646,0.023625065,0.04646708,0.004603831,-0.008520784,0.011694207,0.031419665,0.022767456,-0.059369814,0.09743643,1.47635175e-33,-0.013467105,-0.12886326,-0.07495312,0.0668449,0.052373577,-0.0071085887,0.021428142,-0.11209856,-0.10865743,0.00076438615,0.030821573,-0.040183157,-0.03515364,-0.0030847176,0.057778303,0.09547703,0.019667026,-0.0020390984,-0.05619478,-0.021546226,0.0040558022,-0.007434442,0.059218552,0.017184274,6.0088143e-05,0.011104001,0.03129267,-0.0567,-0.031089175,0.0071692546,0.08964803,0.03279717,0.028515585,-0.02701404,-0.012182651,-0.0015295028,-0.012932964,0.011097849,-0.04294825,0.01972691,0.033694454,-0.041546963,0.019262424,0.011253184,0.00048676564,0.0028332877,-0.022183897,0.010738087,0.0043790364,0.005285003,-0.034498055,0.037774283,-0.08106438,0.094373204,0.014878447,0.015640944,-0.0033605306,0.04397554,-0.012295549,-0.016464967,-0.048947997,0.058325954,0.058663808,-0.039415617,0.054415915,-0.056259736,-0.030039115,0.038357273,0.035988394,0.01749876,0.021353079,-0.0024371715,-0.106541514,-0.018958403,-0.07779101,0.037780233,0.03295243,0.08166975,-0.101353325,0.0044471566,-0.11409313,0.014341397,0.047056124,0.043394707,0.0101461895,0.013346825,-0.008191175,-0.040172696,-0.038683344,0.05261469,-0.07392744,0.052227482,0.0030719095,-0.031824782,0.06863932,-2.3341992e-33,0.063899636,-0.026684579,-0.008150481,0.036881194,0.023551468,-0.02759586,-0.078601055,-0.043088734,-0.013889028,0.061671145,-0.046957694,-0.0073834998,0.056238,0.053382352,-0.024095638,0.04899895,0.103114516,0.072829634,-0.049290467,-0.046600536,-0.0042686076,0.06591419,-0.0104500605,0.123984456,0.024540886,-0.036406126,0.0198459,0.03073788,-0.07074534,-0.096088864,0.09755751,-0.09740121,0.04245236,0.06381335,0.02437191,-0.0073701,0.1126063,0.049829952,-0.026006691,0.021099778,0.022323212,0.039409723,-0.07368965,-0.06758628,-0.032966137,-0.089321375,0.02771827,0.022985874,-0.028112149,-0.06587091,0.07359067,-0.034941327,0.0014681038,-0.025046518,0.09228385,0.048641562,0.08086116,-0.0741156,0.06349227,-0.010626676,0.04226011,-0.007988022,0.0274868,0.018308379,0.047454473,-0.023642197,0.0018129763,-0.089643046,0.077607006,-0.0014033809,0.067395195,-0.008685272,-0.03425158,0.097420946,-0.048537455,-0.0072583733,0.061329734,0.081141785,0.038908884,-0.07581226,-0.016989563,-0.10577712,0.058407713,0.04728594,0.09166271,0.01563166,-0.0423974,-0.09240326,-0.0018940276,0.037896093,-0.00598382,0.05009679,-0.069122694,-0.03977977,0.016216086,-1.9655037e-08,0.02611211,-0.051539175,-0.14482136,0.06197357,0.04043505,-0.0089826,0.01129809,-0.05392348,-0.0588211,0.014689772,-0.013150878,0.017876936,0.049747843,0.031977013,0.06512955,0.032979395,0.071920455,0.092571676,-0.0010751679,0.01458566,0.030497426,-0.011865602,-0.058400456,0.0060380083,-0.034007605,-0.015808035,0.020600291,0.059171792,0.09263857,-0.02741755,0.01962941,0.104592584,0.015919765,-0.034949385,0.04892857,0.07048235,-0.06427832,-0.013744152,-0.098920144,0.06603677,-0.012318251,0.007397339,0.120326705,-0.05793162,-0.05658292,-0.041488856,0.006843171,0.0068158624,-0.00097410684,-0.03550934,-0.051223658,0.029318323,0.060775716,0.12887913,-0.032278195,0.05706634,0.071919665,-0.017261488,-0.0036927594,0.00194571,0.1054996,-0.026531573,-0.00092324195,-0.024269728} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:21.839525+00 2026-01-30 02:01:11.06022+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1876 google ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE 1 t 1879 Go Karts Mar Menor unknown Trabajadores majísimos y genial para un día con amigos o familia. Siempre que vamos a karts elegimos este sitio. trabajadores majísimos y genial para un día con amigos o familia. siempre que vamos a karts elegimos este sitio. 5 2025-01-30 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"O4.04": "genial para un día con amigos o familia", "P1.01": "Trabajadores majísimos", "R4.03": "Siempre que vamos a karts elegimos este sitio"} {-0.052360736,0.039035615,0.00125546,-0.007558633,-0.109395914,0.026471214,0.013472129,0.033713806,-0.008409312,-0.0017655668,0.05705319,-0.029712219,-0.08086721,-0.06210783,0.03159295,0.02036057,-0.043409612,0.04832601,-0.012510585,-0.021654889,0.07243608,-0.068702884,-0.057392187,0.08938507,-0.058024295,-0.0018031236,0.019192336,0.030922245,0.025395123,-0.026494807,-0.002012976,0.04172808,0.08357252,0.005275119,0.020992558,-0.0014606611,0.040128365,-0.023391666,0.022620989,-0.02533472,-0.044905376,-0.017290557,-0.031190693,-0.050301578,0.012036033,-0.048006758,-0.02205505,0.0841106,0.02005493,0.050333086,-0.08306371,-0.06833256,0.034479566,0.0472292,-0.026602376,-0.027824178,-0.005279606,-0.018859556,0.081163876,0.048926666,0.006638426,0.05470367,-0.07333504,0.008681413,-0.04508044,0.0078270165,0.05186526,-0.02118764,-0.051515184,0.08386202,0.02365644,-0.028715713,0.019341411,0.070634395,-0.033965766,0.029653933,-0.021923812,-0.06009916,-0.04506801,-0.04068239,-0.014934815,0.017687177,-0.008208456,-0.076370195,-0.012535336,0.0033002787,0.0030557062,0.017721018,-0.0056587644,0.019387836,-0.075045906,0.04205808,-0.013451908,-0.049861703,-0.0113478955,0.011474271,-0.0121277915,-0.07108813,0.06495555,-0.015786644,0.08700012,0.07002996,0.09431642,0.08147113,-0.10217635,0.066055536,-0.013992705,-0.092002414,-0.009301205,0.08145828,-0.09520216,0.008744921,-0.049442913,0.019779406,-0.122668706,0.025844764,-0.039253566,-0.045623336,-0.034066662,-0.0007816336,0.043082718,0.009267205,-0.017604247,0.0037857066,0.029703297,-0.09694864,0.041046195,7.4087544e-33,-0.07099086,-0.033987988,0.018070593,0.028911496,0.005967265,0.0067392252,-0.028883662,-0.020528343,-0.0668033,0.02732747,-0.08780796,-0.0055960924,0.026888687,0.027697178,0.08054524,0.04292875,-0.035340656,-0.0066209035,0.0607826,0.08048402,-0.02272333,-0.042473163,-0.027065184,0.021939613,-0.03974089,0.027437413,0.032217596,-0.02854382,-0.05904533,0.093810394,-0.0033377395,-0.0076496755,0.025237344,-0.046299748,-0.09688569,-0.016641898,0.065521516,0.012537463,-0.019467195,0.0006590264,-0.0029994452,0.032486156,0.025488617,0.016016867,-0.019786103,-0.032991055,0.07722411,-0.047339264,0.09135869,0.021343008,-0.08941205,-0.11761456,-0.041403204,-0.06616826,0.06880777,-0.032863546,-0.055429023,0.09034371,-0.062123943,-0.06808902,0.08166037,-0.06063172,0.04058239,-0.026793174,-0.06593895,-0.00991159,0.045813512,0.034019474,0.11671921,0.06439783,-0.044273455,-0.018144371,-0.07571981,-0.010237248,-0.0053473976,0.046496764,0.030707892,0.0080720475,-0.0053548994,0.029729411,-0.031224413,0.04241945,-0.010357472,0.028475447,0.10101021,-0.0027886517,0.00036456762,0.11182552,-0.04171513,0.08393095,0.05856137,0.0462885,0.058632657,0.02815239,-0.009972047,-8.756762e-33,0.014935348,0.078752786,0.03253601,0.058794647,-0.046482015,-0.03726549,-0.011843141,-0.0064593554,-0.021250052,-0.06790347,-0.10320877,-0.12167709,0.14103697,-0.03901433,-0.05775159,0.05134562,0.0045641577,-0.07863313,-0.056018498,-0.027124718,0.0047742315,0.014505746,0.04666696,-0.0018193385,0.055658847,-0.081770234,-0.006714885,0.034852114,-0.088782825,0.005423829,0.03652702,0.0026834498,-0.008964851,0.026214857,0.028207121,0.031480916,0.04695794,0.049749788,-0.0009616448,-0.009329288,0.09048803,0.08457083,-0.02849532,-0.00934648,-0.05404381,0.027842274,0.021225683,-0.11498593,0.0065097944,-0.10742535,0.029460639,0.019018076,-0.02696799,-0.014788934,0.052373674,-0.01633948,-0.043314077,-0.050150946,-0.09949758,-0.0035799441,0.029515753,-0.030048713,-0.06582523,-0.030885223,0.053022064,-0.019318962,-0.053917058,0.010998236,0.033088766,0.115246445,0.0789667,-0.013644731,-0.081221566,0.036418833,-0.07189266,-0.048659094,-0.08698933,-0.036090985,0.01181693,0.039736178,-0.006048701,0.0024296045,-0.0027836552,-0.07383834,-0.00955185,-0.059275527,-0.06672078,0.07693521,0.016735965,0.034946144,0.033852994,-0.009973502,-0.020574655,-0.08186971,-0.06306661,-3.4512986e-08,0.082021594,-0.047309626,0.020821018,0.02501744,-0.0055017965,-0.033062596,-0.045962967,-0.00909199,0.04157598,0.062175676,-0.07316923,-0.01621922,0.031032035,0.052907266,0.052498262,0.0452026,0.08572069,0.09308561,0.008956128,-0.030109333,0.07925411,-0.01761405,-0.062000565,0.04437849,-0.0197557,0.05322147,0.00646199,0.0045862854,0.023897814,0.008091672,-0.030892132,0.0065279435,-0.071749404,-0.06409275,-0.072184496,-0.039812703,-0.067814566,0.038370024,-0.03480339,-0.048416935,0.12978296,0.027843457,-0.072127566,-0.036764245,-0.020543976,0.031166952,0.033196386,0.052481312,-0.028153947,0.043533318,-0.06309664,-0.08045162,0.07049823,0.021441398,0.0025991844,-0.023917878,0.07174952,-0.007927817,0.04174414,-0.0670846,0.07637973,0.13190985,0.028003993,-0.08076559} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:53.160798+00 2026-01-30 02:01:11.034638+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1882 google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB 1 t 1885 Go Karts Mar Menor unknown Muy contentos con ellos!\nLas instalaciones impecables, los vehículos de maravilla y lo mejor el personal! Muy recomendables para cualquier público y situación, incluso eventos. muy contentos con ellos! las instalaciones impecables, los vehículos de maravilla y lo mejor el personal! muy recomendables para cualquier público y situación, incluso eventos. 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E1.01": "Las instalaciones impecables", "O1.02": "los vehículos de maravilla", "O4.04": "Muy recomendables para cualquier público y situación, incluso eventos.", "P1.01": "lo mejor el personal!", "V4.03": "Muy contentos con ellos!"} {0.07217803,0.0016707862,-0.021099443,-0.038797148,-0.014068108,0.0034214293,0.017204553,0.004751323,-0.041784924,0.016464902,0.06308274,0.015727965,-0.042740915,0.028941745,0.08380933,-0.011779941,0.012928586,0.015712058,0.020693434,-0.004176835,0.06560512,-0.059852324,-0.0784818,0.09516907,-0.16167353,-0.013447781,-0.033412423,0.045631833,-0.038294077,-0.0576792,0.028174931,0.11319366,0.09044309,-0.035831217,-0.016225593,-0.0028930157,0.09317305,-0.080738164,-0.027826946,-0.02430727,-0.055686522,-0.07516429,-0.0053331163,-0.029142108,-0.03615693,-0.13624506,0.056394894,-0.0066877715,0.031189416,-0.047409922,0.0037979726,0.008588478,0.04689792,-0.049368024,-0.011914643,-0.06370146,-0.031986665,-0.02881206,0.09547182,-0.016293695,0.08522507,0.033399466,-0.09010794,0.06877449,-0.019788401,-0.053894375,0.055838734,0.06948048,0.003164474,-0.0048789056,0.09552378,-0.049635116,0.042977512,0.023971243,-0.010530207,0.04092225,-0.02880555,-0.030878121,-0.10927209,-0.015097984,0.012401662,-0.0059376173,0.013392676,-0.028712079,-0.016310837,-0.020401277,-0.051517583,0.016981417,-0.05671654,-0.0010067596,-0.051327184,0.101366945,-0.033355054,-0.0276439,-0.019724201,0.045216676,-0.0032584479,-0.12269898,0.021879327,0.017625265,0.015476334,0.11003931,0.07797857,0.040106848,-0.07996067,0.023007356,-0.038934045,-0.04384382,-0.051468357,0.07658886,-0.05035737,-0.048981827,-0.016365843,-0.02607618,-0.06954139,0.039650995,-0.030060789,-0.0069269463,0.00977003,-0.11929638,0.021940256,-0.0025578311,0.014699354,-0.040963717,0.051685836,-0.013461865,0.041276816,8.986181e-33,-0.04780409,0.029667022,-0.08095208,0.13401361,0.050520174,0.0034620054,-0.0059369304,-0.013280045,0.004965411,-0.00100231,0.061344914,0.029802943,-0.034339964,-0.006759248,0.1237253,0.0037567418,-0.014825859,-0.006319068,0.013153348,-0.019796472,-0.0548034,-0.025754184,-0.011851424,0.046264503,0.04339767,0.07194278,0.06757471,-0.062128313,-0.0042874734,0.044612385,0.02718682,0.04471643,0.018992743,-0.035905402,0.04414328,0.0036084633,-0.044680715,-0.003455261,-0.0022176283,0.00034209082,0.04756423,-0.010144552,-0.057959724,0.01844058,-0.007219168,0.07138977,0.028067151,-0.0065485775,0.11008582,0.044263307,-0.046874747,-0.040933818,-0.12686658,-0.041466683,-0.035214122,0.037383478,-0.018500958,-0.08120495,0.01987006,-0.1006982,-0.0026376876,-0.0006783944,0.0011038753,-0.06924756,-0.029557828,-0.055762935,0.03641983,-0.021268405,0.0812461,0.0482721,-0.08803937,0.0028960726,-0.020193605,-0.025069933,0.023797696,0.04749673,-0.051015124,0.016926423,0.029744558,0.09145199,-0.036808543,0.006481387,0.019205468,0.050496843,0.10796433,0.054036718,0.044949524,0.074261434,-0.042709257,0.093109995,-0.026473986,0.09036089,0.021035627,-0.028076857,0.009529166,-1.1658087e-32,0.029381284,-0.029677108,0.045390844,0.031926397,0.05389045,0.0266247,-0.07425373,-0.05052511,0.060894676,-0.016275702,-0.17971864,-0.028592296,0.07672113,-0.034187987,-0.054741275,0.04974312,0.008578226,-0.07556119,-0.07605796,0.015609337,-0.018430974,0.06487176,0.040712785,-0.05134332,-0.067101315,-0.09206414,-0.042291097,-0.0042715603,-0.06379169,0.014316009,-0.0011605903,-0.059200972,-0.0050139753,0.0083601335,-0.06667638,0.05352295,0.04885137,0.046591733,-0.021314058,0.006427095,0.012970051,0.05474933,-0.051888157,-0.022974966,-0.04652435,-0.017348353,-0.056323975,-0.12840004,0.018288873,-0.008834824,0.009876675,0.0022511466,-0.079515696,-0.06451832,0.041930266,-0.0059628356,0.01844146,-0.036300957,-0.09333577,0.01727618,-0.018001717,0.099986896,-0.050715547,0.0069400338,0.053426757,-0.053342078,-0.0003642791,0.009817726,-0.068477616,0.049206574,0.043124877,0.04038444,-0.052052416,0.05132524,-0.05094045,-0.026250103,-0.062638834,-0.011983071,0.038459476,0.07082068,0.038784165,0.052490152,-0.043604337,-0.027861262,0.047283575,0.007497932,0.006219022,-0.0020386889,-0.02440447,0.0042676777,0.059197363,0.038771585,-0.04620932,-0.0408441,0.03583816,-4.4425512e-08,-0.0037332717,-0.036581036,-0.056205906,0.0029276195,0.005613783,-0.10750337,-0.043226797,0.041596126,0.002650693,0.027720144,-0.046976455,-0.06896721,-0.052764703,0.12769452,-0.033486284,-0.04858803,0.06199428,0.048005078,-0.07794199,-0.022753956,0.04309285,-0.001973873,0.005818464,0.066167414,-0.0102100065,-0.008426854,-0.053634036,-0.06245574,0.028941328,0.030149583,-0.029694403,-0.016075049,-0.015128182,-0.050774608,-0.002141348,-0.033269264,-0.027909722,-0.005677313,0.001975087,-0.04343682,0.10974195,-0.04571459,-0.0665997,0.039851665,-0.008946729,-0.03388932,-0.066403255,-0.03369066,-0.06780613,0.01748,-0.040346663,-0.07635262,0.04091425,0.011661612,0.07612579,0.026101222,-0.015450189,0.09556264,0.06469179,0.024028193,0.06069266,0.087889135,-0.010319929,-0.039893605} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:06.33914+00 2026-01-30 02:01:11.054389+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1891 google ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE 1 t 1894 Go Karts Mar Menor unknown Excelente circuito, muy grande por lo que la sensación de competencia es increíble. Una gran experiencia. Apto solamente para amantes del motor excelente circuito, muy grande por lo que la sensación de competencia es increíble. una gran experiencia. apto solamente para amantes del motor 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.03} V+ I3 CR-N {} {"O1.02": "Excelente circuito, muy grande por lo que la sensación de competencia es increíble. Una gran experie", "O4.04": "Apto solamente para amantes del motor"} {-0.017613847,0.0069645783,-0.03003066,-0.069019645,-0.08141534,0.015883977,-0.00033341223,0.094675235,-0.009981486,0.019919954,0.095926024,0.00013737364,0.04311265,0.0032320207,0.038618337,0.0316071,0.007497133,0.060726322,-0.052276425,-0.04902978,0.11744972,-0.0024825044,-0.014647453,0.05294461,-0.12937777,0.03753692,-0.030462159,0.08072954,-0.06822223,-0.1593497,-0.1183342,0.039690457,0.052526016,-0.04753776,-0.06222336,-0.053881176,-0.02179486,-0.033038627,0.013937938,-0.011009057,-0.07486527,-0.10806069,0.052985463,-0.0864267,0.05720345,-0.0042483318,0.048460104,0.005739494,0.04357088,-0.10995626,-0.05533937,-0.050101697,0.0686076,-0.057742592,0.035057552,-0.010407891,0.0015983139,0.061874982,0.010997205,0.034050908,0.055294983,-0.004697887,-0.005820258,0.041243292,-0.0041611814,-0.07786296,0.014560893,-0.014842934,-0.02112678,-0.008209391,0.080663145,-0.1250697,0.028966412,-0.009709554,0.012488299,0.035721947,-0.010513553,-0.0020300648,0.0035857004,0.00025117045,-0.007492565,-0.038945727,-0.078460865,-0.045633774,0.094971314,-0.002447362,0.012178399,-0.023127623,0.019067576,0.024328642,-0.0140436655,0.04342792,-0.069952905,-0.04513611,-0.029739954,0.030142048,-0.00076425396,-0.0282006,0.056763478,-0.009794403,0.06486546,-0.009145079,0.0070793224,-0.0015106244,-0.12831622,0.08377453,0.0047821356,-0.02375022,0.038436085,-0.020715784,-0.04644602,-0.008623189,-0.07094878,-0.04321571,-0.05811025,-0.015285861,-0.02278146,-0.009084178,-0.011760316,-0.012077772,-0.02516725,-0.101705626,-0.022607388,-0.01219867,0.055597667,0.019263402,0.06258913,3.7729045e-33,-0.10379271,-0.031854644,-0.054454383,0.027064145,-0.010112508,0.023266483,-0.028035995,0.045063037,0.006254186,0.0037315236,0.015768096,0.09722104,-0.0021080514,-0.0021208625,0.107709445,-0.061641134,-0.060736667,-0.12196124,-0.007522208,-0.020511806,0.039629076,-0.0070990017,0.023549635,0.085926086,0.053774122,-0.014845602,0.072004944,-0.008485007,-0.08430252,0.04510044,0.011103939,0.04267576,-0.041565545,0.018931655,-0.07254948,0.026627822,0.018707706,-0.005875675,0.04916199,0.025037019,-0.028408531,-0.03586355,-0.08416482,0.006429275,-0.03202602,0.0070980024,0.03910421,0.014187863,0.07499972,0.060405765,-0.065143295,-0.05233109,0.031666704,-0.058352094,0.057900947,0.106070384,0.0017096589,0.033058587,-0.05934538,0.038790777,-0.09163148,0.05868109,-0.034048736,-0.038041588,-0.0531277,0.043772675,0.030612495,-0.044000205,0.05546709,-0.024997514,-0.028013317,-0.08509215,-0.052455973,0.031707797,0.012237163,-0.022042911,-0.041814454,0.010356392,0.0062045665,-0.012572369,-0.095339455,0.036670405,-0.028896162,-0.0058516255,0.11728135,0.054327223,-0.0055514053,0.023339601,0.018514851,0.023078268,0.037498467,0.084535204,-0.001867973,0.0475785,0.09770044,-6.886206e-33,-0.003990882,0.031933825,0.06421266,0.08095307,0.0035281666,0.039512973,0.058548465,-0.04963274,-0.03730287,0.0041341106,-0.07973619,-0.053477447,0.06535747,0.008567169,0.008019894,-0.03180796,-0.108984075,-0.039784037,-0.024209801,0.020504933,0.048966587,0.044138283,0.0020986742,-0.07910278,-0.04817102,-0.066742264,-0.121566854,-0.013326249,-0.03620288,0.012272528,-0.0032008102,0.032860998,0.025481572,0.07568769,-0.071221925,0.0010206251,0.06890919,0.016398018,0.0024415986,0.038117833,-0.035976313,-0.0011162239,0.08523293,0.015830321,-0.029345166,-0.015512634,0.025494244,-0.10710861,0.027000185,0.019973785,0.06911795,-0.01908374,0.016449647,-0.06956907,0.025565125,-0.0494029,0.036433477,-0.06695121,-0.07480537,0.0023290936,0.07249725,-0.032296136,-0.016912103,0.02033484,0.027527701,0.038277227,0.006097659,0.032780163,0.076348536,-0.015649622,0.03674592,0.05358503,-0.0011104876,-0.05988393,-0.07631057,-0.059963517,-0.11107409,0.057534277,0.0050376756,0.026728805,0.04096028,0.037943475,-0.00056094845,-0.051705994,-0.057692718,0.019934114,-0.058886234,0.027034992,0.011400772,-0.03209892,0.041588485,0.07739199,-0.033752427,-0.06329302,-0.06440609,-3.851153e-08,-0.028299492,0.01519043,0.04095895,-0.035461172,0.049612675,-0.03799277,0.015321723,-0.017234704,-0.03187031,0.053408355,0.081655204,-0.046587538,0.032394394,0.067085795,0.040921886,0.0062222728,0.059459966,0.15045881,-0.020984318,0.059927084,0.072562434,-0.011415711,-0.05960773,0.099011354,0.07778939,-0.056965902,-0.07786446,0.0054402193,-0.056922495,-0.015329118,-0.0473631,0.011870686,0.04544442,-0.05349476,-0.020998292,0.02139847,-0.056951836,-0.0042075342,-0.025580317,-0.008104821,0.0012146018,-0.03354728,-0.0820186,0.025446123,0.05903352,-0.08618681,-0.04897012,-0.087200284,-0.05809011,0.0003383241,-0.0092362845,-0.029381977,-0.0012768515,0.0496265,0.047536973,0.06674125,-0.01723084,0.0066768304,-0.09070848,0.017510371,0.02117881,0.06297296,0.04933673,-0.06976171} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:20.9431+00 2026-01-30 02:01:11.083307+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1893 google ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB 1 t 1896 Go Karts Mar Menor unknown Avions juste besoin de renseignements très bien accueil et cerise sur le gâteau une des employése parlait français\nNous irons avec les enfants avions juste besoin de renseignements très bien accueil et cerise sur le gâteau une des employése parlait français nous irons avec les enfants 5 2025-01-30 01:52:39.833374+00 fr v5.1 P1.01 {A3.03} V+ I2 CR-N {} {"A2.02": "cerise sur le gâteau une des employése parlait français", "P1.01": "Avions juste besoin de renseignements très bien accueil", "R4.03": "Nous irons avec les enfants"} {-0.033702843,0.032420512,-0.034210686,0.058928136,-0.02358202,0.023871649,0.028923508,0.016645443,0.0013302118,-0.011852939,0.0044736834,-0.012822416,-0.017462354,-0.020190043,-0.040093154,-0.09791117,-0.00957588,0.039653387,-0.01723336,-0.01455904,-0.050857894,-0.09596851,0.043655768,0.020635542,-0.024770606,-0.0016045901,-0.031205077,0.043098368,0.013332799,-0.022592241,0.018028235,0.025601309,0.0014046641,-0.038051795,-0.04956216,0.01604575,0.0024794408,-0.08261215,-0.029261287,0.036491662,-0.13554288,-0.016061965,-0.08433442,-0.06444998,-0.056073055,0.017324746,0.036224443,-0.023540044,-0.05690853,0.025940722,0.0024136405,0.043322552,0.076196775,-0.02727574,-0.0049920124,-0.06001567,0.05150648,-0.08506846,-0.0033099914,0.012663717,0.054500714,0.01571571,-0.056318797,0.02511052,-0.113522984,-0.017425703,0.060902808,-0.05893503,-0.053286377,-0.062175352,0.061500367,-0.03953152,-0.06976724,0.031185161,0.08098358,0.09591503,-0.010010025,-0.002967967,-0.021734364,-0.17117532,-0.0132481195,-0.072677,-0.0020623973,0.039251935,0.047913738,0.0014521475,-0.012156892,0.0035256925,0.054309417,0.028106047,-0.008598728,-0.019955229,-0.02679842,-0.0077654566,0.06724683,-0.02832126,-0.048247308,0.056211654,-0.0738196,0.0006817851,-0.06594972,-0.04206,0.015791727,0.07823187,-0.10941747,-0.00067376625,-0.029516794,-0.0013988583,-0.0009946338,-0.02893815,-0.013434385,-0.009120195,-0.008790438,0.018619902,0.019347578,-0.016267098,0.087186605,-0.070583254,-0.0029443365,0.053424157,0.10705411,0.06180161,-0.011688013,-0.025035055,-0.09942667,-0.047512613,0.03893854,4.1245375e-33,-0.044927653,0.070476525,0.0007988769,-0.01562592,-0.009562205,-0.02027266,-0.087667964,0.0040160045,0.0670422,0.051255304,-0.044306893,0.080520906,0.0036434047,0.01398752,0.03407035,-0.072739385,0.11724561,-0.0005789591,0.0870714,0.002043503,-0.07510979,0.03946668,0.09716793,0.1046464,0.06099044,-0.030753942,-0.008769712,-0.0506557,-0.13630986,0.015996892,0.037232,-0.014463899,-0.063119,-0.01090815,-0.0473107,-0.019844038,0.039525967,0.042298175,0.058031484,-0.045037735,0.0662021,-0.009639267,0.045146924,-0.02397536,-0.0464719,0.07024568,0.011823155,0.019960033,0.054860123,-0.0041709896,-0.035733156,0.05617069,-0.03059311,-0.044747043,0.033703856,0.042667143,-0.045125414,0.011180511,-0.07116291,-0.03828535,0.045545902,0.023120994,0.032899663,0.019258175,0.0068498603,-0.06606328,0.06250207,0.07093909,0.01703492,-0.031153385,-0.1362604,0.06689927,0.028199455,-0.02900836,0.017706173,0.06222801,-0.03662798,-0.015915558,0.022616543,-0.034926277,-0.011850662,0.03298231,-0.005772576,-0.03453363,0.019638766,0.03802849,0.04108247,0.07616668,0.05351941,0.009981298,-0.03222398,-0.032128237,0.012762443,-0.06205902,0.04573586,-8.321066e-33,-0.0697351,0.001323321,-0.039642323,0.043690782,0.0033191685,0.058889337,-0.010555333,0.03440069,-0.07762842,-0.021881046,0.020329261,-0.06588093,0.025495932,-0.06917942,-0.03767834,0.077341594,-0.086019464,-0.047057018,0.01564264,-0.0063867215,-0.009388922,0.012730976,0.037282895,-0.07284331,-0.025053786,-0.019955736,-0.070788115,0.029120317,-0.05215126,0.040581476,0.011436444,0.067013174,0.032465927,0.07355441,0.0149739,-0.041502878,0.0983871,0.089257106,0.0068223453,0.07210884,-0.019022942,-0.02123486,0.0939617,0.06615821,0.020537455,-0.053776342,-0.09127719,-0.11332674,-0.049123,-0.033925466,0.035069387,0.014185176,-0.043920126,-0.011487362,-0.029023582,-0.00050732115,0.03908035,-0.07105366,-0.085622326,0.04349141,0.03732149,0.066207066,0.073470816,-0.029492471,0.0052395454,-0.017728407,-0.09125873,-0.0069797356,-0.019564351,-0.03442224,0.076870546,-0.044373635,0.081853025,-0.0416659,-0.060997374,-0.041889187,0.041974977,-0.014868944,-0.038293764,0.050791785,-0.14200516,-0.006347697,-0.032926615,0.014299799,-0.020944994,-0.079090685,0.021799248,-0.028620826,0.02733188,-0.09500437,-0.03027952,0.0008573762,0.039809003,-0.09003618,0.025228046,-3.7386638e-08,-0.02053415,-0.018124541,-0.07630646,0.04635898,0.023628347,-0.12103654,-0.096533366,-0.00016860392,-0.04856642,0.058314063,-0.07041773,0.052569505,-0.008221917,0.06654433,-0.038544256,0.034549132,0.053172946,0.10380478,0.020230263,-0.025196142,0.05066338,0.018599037,0.017124899,-0.050180506,-0.04603336,-0.05036671,-0.08885105,-0.14720811,-0.011738718,0.015528624,-0.018230218,0.046026766,0.08089857,-0.07187516,0.007127437,-0.034593306,-0.004389405,0.04685801,-0.041876372,0.038221702,0.056512598,-0.00068459613,-0.053809576,0.0137316,0.016911464,-0.06384538,-0.04656957,0.04268746,0.028592845,0.094870366,0.020606624,0.04208865,0.072080836,0.028451718,0.029350692,0.08618402,-0.008221181,0.0033366743,0.053980436,0.02277081,-0.016252842,-0.014524388,-0.008019226,-0.097072154} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:36.124183+00 2026-01-30 02:01:11.090731+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1894 google ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE 1 t 1897 Go Karts Mar Menor unknown Los mejores Karts que he probado. Un circuito largo y divertido, unos Karts potentes pero cómodos y un trato absolutamente excepcional. Sin ninguna duda repetiré los mejores karts que he probado. un circuito largo y divertido, unos karts potentes pero cómodos y un trato absolutamente excepcional. sin ninguna duda repetiré 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.01,E1.02} V+ I3 CR-B {} {"O1.02": "Los mejores Karts que he probado. Un circuito largo y divertido, unos Karts potentes pero cómodos", "P1.01": "un trato absolutamente excepcional", "R4.03": "Sin ninguna duda repetiré"} {-0.033605237,0.026878957,0.0063556833,-0.021926073,-0.106449924,0.034410514,0.043967158,0.093164034,0.04432606,0.01708644,0.059894133,0.020590765,-0.052103054,0.018064877,-0.0028742687,0.009460227,-0.003031208,0.037176732,0.024704278,-0.07027185,0.054194458,-0.061100587,-0.061026093,0.06666287,-0.08743523,-0.0006827186,0.014553223,0.025513712,0.010756849,-0.1471198,-0.064748965,0.05107619,0.020517955,-0.039642356,-0.05249704,-0.018101078,-0.043342303,0.008239096,-0.04115464,0.021115936,-0.024497332,-0.06827021,-0.022036674,-0.029211575,0.012121902,-0.06169089,-0.050771043,0.0016360944,0.0018670488,-0.045274265,-0.054042444,-0.07721964,0.04343454,0.007729673,0.021743381,-0.05401914,-0.07333943,0.10375029,0.166921,0.06852127,0.03471385,0.06315377,-0.042650897,0.04204562,-0.03680042,-0.06042738,0.026465135,0.07162281,-0.036948513,0.071084484,0.13934052,-0.09279072,-0.012660916,-0.020256555,0.08109463,0.018513367,-0.059482694,-0.01584099,-0.10015177,-0.014869625,0.035801943,-0.0031296283,-0.039027616,-0.104465164,0.028315747,0.020421274,-0.037865195,0.027338682,0.020018747,-0.02633635,-0.019913228,0.015489904,-0.054044835,-0.07442077,0.0061921934,-0.013012353,0.004646712,-0.07285937,0.031694755,0.014372526,0.107412264,0.05837183,0.026132194,-0.010216278,-0.053801946,0.059806816,-0.009124892,-0.000321181,0.06951398,0.030303247,-0.06901818,0.018811874,-0.12088656,-0.054498695,-0.03961685,0.025005136,-0.033018455,0.018407963,-0.014493588,-0.028858732,-0.012118281,-0.013426319,-0.047118556,0.00010803843,-0.013313327,-0.025618061,0.08211199,6.517596e-33,-0.086083926,-0.01795245,-0.05064192,0.023538955,0.038930133,-0.112356246,-0.06183243,-0.09223511,-0.0358989,-0.012847467,-0.014490496,0.06951526,-0.019738544,0.048681233,0.07895213,-0.018783966,-0.006599595,-0.063915186,0.06392577,0.0071006943,-0.00030295918,-0.033444818,-0.03196336,0.066766374,-0.038711436,0.082139894,0.03230644,-0.00030960568,-0.0907429,0.04432825,-0.02099745,0.09404414,-0.030337214,0.039652683,-0.100743406,0.02051774,0.01183918,0.0064315246,0.00659774,-0.014697464,0.010152142,0.0028073872,-0.06726476,0.007958199,0.024932588,-0.059548087,0.03418626,0.0376018,0.13630484,0.049166307,-0.0601652,-0.031532537,-0.01024078,-0.05369599,0.033672366,0.07876146,-0.022796666,0.046292942,0.040937394,0.0122339595,-0.00067238044,0.0047222856,-0.035044063,-0.02409534,-0.07258251,0.00044088508,0.010130266,-0.052961044,0.045213133,0.00802136,-0.15363382,-0.0017279211,-0.0136387125,-0.0342966,0.051556177,0.0020333144,-0.075025916,0.07453098,-0.053253606,0.058115646,-0.05545784,-0.029407691,-0.0104832165,0.048158444,0.08737821,0.06014492,0.028250815,0.039374635,0.026231306,0.14266856,-0.022058915,0.05265649,0.036754124,0.03899037,0.052551907,-8.967418e-33,-0.01729571,0.052122995,0.07811255,0.08591387,0.029072199,0.01198518,0.0046873996,-0.02642778,-0.022603106,-0.040458463,-0.04833933,-0.028355664,0.02938396,-0.04559593,-0.045359563,0.035396054,0.021758996,0.005697913,-0.04663242,-0.05308611,0.032472696,0.078893945,0.048663903,-0.040087625,-0.03531394,-0.024794443,-0.017756376,-0.001380651,-0.06630839,0.03923435,0.04803616,-0.014200752,-0.041052856,0.013788191,-0.08574794,0.006777881,0.027677126,0.07392278,-0.060013827,0.046233524,0.033611238,0.1102103,-0.026099794,0.0048626238,-0.070225514,0.004536636,0.044354167,-0.09275917,0.018903026,-0.04515785,0.06257549,0.030703725,-0.04558204,-0.057841424,0.032157607,-0.01257506,-0.003812563,-0.020425072,-0.055125967,-0.022206634,0.034978688,0.014005669,0.030902922,-0.08077041,0.084091604,-0.0020247223,-0.014119125,0.043138925,0.08533649,0.008981649,0.09938874,0.06699575,-0.012287622,-0.025494551,0.0011038758,-0.06266071,-0.136865,0.0063877553,-0.023912702,-0.04415985,0.015506063,-0.033085275,-0.033050645,-0.03833177,-0.006583229,-0.030491974,-0.025955968,0.03755841,0.07914289,-0.008344841,0.034828395,0.068109095,-0.03819077,0.023440799,0.00070536113,-4.0721446e-08,0.048122503,0.001369955,-0.08018386,0.020267723,0.013240191,-0.061224073,-0.04406706,0.029909676,-0.04107402,0.08459185,0.006405549,0.012036125,0.03350021,0.024566218,0.0009773152,0.020001838,0.054461602,0.13019665,-0.010380279,0.0065616844,0.07234017,-0.01156718,-0.024310308,0.017266668,0.014567553,-0.02764991,-0.01072699,0.0654452,-0.015287766,-0.018972432,-0.038027752,0.0071162167,-0.05241601,-0.06782756,0.012615625,-0.018209001,-0.020011123,0.049482588,-0.019072324,-0.024072325,0.013590862,-0.05421518,-0.077331126,0.04638185,-0.12859096,-0.021610573,-0.027516307,0.027225517,-0.038567055,0.053383593,-0.10044301,-0.05320524,0.018094903,-0.011304901,0.048488207,-0.0087793395,0.04184272,-0.0006931366,-0.081236064,-0.1291183,0.014551079,0.050931238,0.050376806,-0.0957213} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:45.149335+00 2026-01-30 02:01:11.096598+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1896 google ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE 1 t 1899 Go Karts Mar Menor unknown Es el mejor circuito de karting de la Región de Murcia y de levante no solo por los karts, higiene y circuito sino por el trato y servicio al cliente. Se crea afición sana y competitiva y eso es de agradecer!! es el mejor circuito de karting de la región de murcia y de levante no solo por los karts, higiene y circuito sino por el trato y servicio al cliente. se crea afición sana y competitiva y eso es de agradecer!! 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {O1.02,E1.01,P1.01} V+ I3 CR-B {} {"R3.04": "Se crea afición sana y competitiva y eso es de agradecer!!", "V4.01": "Es el mejor circuito de karting de la Región de Murcia y de levante no solo por los karts, higiene y"} {0.04157994,0.039990447,-0.016167425,-0.049594168,-0.099401146,0.023262002,-0.025825163,0.057569727,0.010828604,-0.008843418,0.05327057,0.0048761144,0.049709048,0.020819113,0.05926871,-0.011043766,-0.022330375,0.005087653,0.06638706,-0.08295354,0.06586497,-0.062014315,-0.06488101,0.039932627,-0.11006154,-0.017483035,0.011253676,0.06255343,-0.038061295,-0.10791432,-0.10846604,0.09390777,0.019327402,-0.016570246,-0.09353795,0.030254327,-0.06674361,-0.013489934,-0.012100705,0.034166053,-0.011873908,-0.030814262,0.021902675,-0.03929745,0.030611651,-0.048627824,-0.017035268,0.0171878,-0.012798014,-0.044631112,0.014701679,-0.07085557,0.07765735,-0.020366358,0.014078225,-0.06789628,-0.081771486,0.073802836,0.13085446,0.089189745,0.050775893,0.02841175,-0.02485496,0.04070895,-0.022451948,-0.13031255,0.00019231024,0.03023869,-0.045416035,-0.03820614,0.07713651,-0.08401924,-0.03247124,-0.044974137,0.06158625,0.032351185,-0.016474826,0.024182776,-0.053226586,-0.03755818,0.047888886,-0.019537752,-0.013677331,-0.07368649,0.03964473,-0.042772006,0.03259557,-0.022073045,0.043375243,0.004351144,-0.0052940156,0.067033894,-0.07755104,-0.083162375,0.0004075512,0.03443059,-0.019447792,-0.031144878,0.007883896,0.004026508,0.092006736,-0.004497672,0.011226846,0.03991806,-0.04375699,0.04761745,0.015105601,-0.0059942184,0.029226081,-0.0017080453,-0.052636687,0.0022533387,-0.049195163,-0.06380288,-0.06450513,0.0027834603,0.0016753675,0.010163361,-0.023091177,-0.020625921,-0.032437786,-0.056849364,-0.02210151,-0.025504675,0.04471147,-0.021752734,0.13519011,6.923554e-33,-0.10693045,-0.05367753,-0.014180899,0.011096822,0.02431496,-0.075834714,-0.0412747,-0.012313239,-0.07140202,-0.05450757,0.011246896,0.10215902,0.03503293,-0.005529617,0.112653926,-0.025574775,-0.010662908,-0.14549567,0.05729303,-0.029214194,0.0024746475,-0.08379176,0.017331751,0.0904814,-0.0035851458,0.059450727,0.055196702,-0.029136626,-0.07345889,0.044208128,-0.015825806,0.013619167,0.0022594463,0.03569229,-0.10157781,0.08315742,-0.00559464,0.03649513,-0.060174078,0.026738064,-0.0566926,-0.05855023,-0.037975837,0.036237754,-0.052307345,0.0030183278,0.02784033,0.003246761,0.06503736,0.102698,-0.14129587,-0.0040530805,-0.023334788,-0.03111735,0.07416105,0.119284615,-0.0070415237,0.02544405,-0.06373331,-0.004090151,0.0047907974,0.050765734,-0.05204658,-0.054339364,-0.075229086,-0.01637292,0.011416597,-0.08125363,0.08102393,-0.026434438,-0.052044086,0.05114947,0.03151095,0.021054592,0.047520746,0.022563053,-0.08033837,0.054644834,0.024284547,-0.0051115304,-0.14130633,-0.034844525,-0.007490223,0.06278983,0.093078114,0.034422856,0.028323472,0.022312261,0.0038306355,0.077018686,-0.06403458,0.08290623,0.040103488,0.0488653,0.10374225,-9.222371e-33,-0.02148376,0.037389155,0.09395932,0.036057435,-0.0050730016,0.026275756,0.05590898,-0.03142657,-0.055814043,0.01936263,-0.10201853,-0.018482653,0.030517165,-0.018313043,-0.0010804423,-0.021131666,-0.018575838,0.00706733,-0.046973526,-0.007453971,0.012853189,0.072343856,0.036933187,-0.047538143,-0.043278225,-0.025465513,-0.012308863,0.011212923,-0.1178902,0.023374962,0.04541594,-0.035851967,0.011440647,0.008173231,-0.10773374,0.0004896055,0.06294965,0.07328263,-0.061624646,0.00626555,0.012120624,0.04574476,0.0026669274,-0.01160475,-0.059007693,0.06238062,0.08661597,-0.05269506,0.011534835,-0.020124936,0.06516835,0.0011271652,-0.05306326,-0.0132124275,0.03535383,0.012909361,-0.0028967394,0.012987974,-0.092571706,-0.0596958,0.04337655,-0.007852031,-0.024493258,-0.013692705,0.095573545,-0.018216042,-0.007132259,0.069962695,0.06630109,0.03406425,-0.018641073,0.07812348,-0.057074666,-0.011294883,0.013177988,-0.02419404,-0.077216536,-0.0004016304,-0.008911603,-0.04204974,0.007275875,-0.009387413,-0.049753428,-0.02771028,0.019447614,-0.012662209,-0.030098928,0.011821551,0.08011204,-0.0035278676,-0.0045528174,0.082098454,-0.072839774,-0.047569685,-0.039526004,-4.335595e-08,0.0012090438,0.024040744,-0.116867416,-0.004968108,0.02894635,-0.02962562,0.011168476,0.009132465,-0.07842727,0.045503985,-0.007175049,0.0020281577,-0.012159386,0.03306766,0.012204574,0.03628446,0.0854028,0.1193624,-0.015123566,-0.0071819383,0.022454314,-0.014639831,-0.07856752,0.059312545,0.03902926,-0.03110046,-0.026828967,0.0043614535,0.01750795,-0.08122304,-0.034633014,0.014849892,-0.033026002,-0.009291606,-0.016829634,-0.0023306645,-0.0807101,0.044043075,-0.0038693827,0.017795375,0.023635393,-0.06523195,-0.07821704,0.022144439,-0.06248672,-0.007955716,-0.049091864,-0.004390796,-0.011240577,0.050866045,-0.10728513,-0.0638356,0.018878158,0.052006725,0.083752036,-0.00052112335,0.037695892,-0.0720223,-0.033562798,-0.012734219,-0.035603847,0.045939736,0.03150319,-0.06600158} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:00.053912+00 2026-01-30 02:01:11.1051+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1897 google ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE 1 t 1900 Go Karts Mar Menor unknown Un gran lugar con gente muy agradable,a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la trataron muy bien. un gran lugar con gente muy agradable,a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la trataron muy bien. 5 2019-02-01 01:52:39.833374+00 es v5.1 P1.01 {E1.04} V+ I3 CR-N {} {"P1.01": "Un gran lugar con gente muy agradable", "P1.02": "a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la "} {-0.058058027,0.0011361415,0.0776285,-0.086282164,-0.016541028,4.7334644e-05,0.10907933,0.09560989,-0.05682555,-0.010049481,0.05536816,0.034662172,0.024928832,-0.008989357,0.0045985635,0.062985435,-0.040770866,0.03596186,0.016055547,0.01218021,0.08286925,0.008549106,-0.0011289685,0.10699734,-0.11419613,-0.027159441,0.029155904,0.04850061,-0.032143172,-0.013728253,-0.03426471,0.06020206,0.044865716,0.009708733,-0.08136576,0.019897005,0.029466037,-0.008534875,-0.036295697,0.037656013,-0.045609895,0.012243389,-0.04983883,-0.019553611,-0.011004769,-0.097101845,0.089580715,0.005677149,-0.028089777,-0.009305281,-0.01260681,-0.002349829,-0.012250089,0.011467985,0.012038245,-0.049411297,0.010406643,0.00566114,0.027782066,0.034039743,-0.0054541547,0.05508816,-0.052021828,-0.050138433,0.091697395,-0.06538042,0.07420133,-0.01461444,-0.10004891,0.03521706,0.07010711,-0.03269704,0.0049336166,0.052974693,-0.09522856,0.039741773,0.015968798,-0.009570406,-0.03814005,-0.0042152153,-0.024274867,0.011596152,0.022934124,-0.069259405,0.024954678,-0.040782653,-0.04710768,0.043701638,0.050889272,-0.051215485,0.020974424,0.050982054,-0.050820515,0.042742223,0.014500991,0.032835964,0.03501922,-0.039931238,0.019385312,0.030788908,0.077550344,0.07464026,0.07814633,-0.006678102,-0.037274044,0.0010738259,0.06917423,-0.0482112,-0.08944784,0.002230695,0.0009810245,-0.039434142,0.031544868,0.028711293,-0.065226205,-0.02146999,-0.01402094,-0.025893966,-0.05848667,-0.10375413,0.0036548357,-0.0028459541,-0.08826163,0.0096433805,0.0064606643,-0.007814568,0.041448314,8.562158e-33,-0.05290075,-0.06916053,-0.01945223,0.101927385,-0.056341268,0.028556108,-0.044462383,-0.045947686,-0.04365984,-0.026598854,-0.045828275,0.0062514255,-0.018594569,0.02308051,0.01974334,-3.683359e-05,0.015224104,-0.0792063,0.089352995,0.0260912,-0.05650245,-0.025840787,-0.029939497,-0.022092963,0.018298095,0.014211914,0.014279875,-0.04894283,-0.0481581,0.04215977,-0.02449408,0.022524381,0.035071664,-0.027765352,-0.024916783,-0.117614195,0.053298887,0.08041132,-0.036454834,-0.06654948,0.041236047,0.055175763,0.028061822,0.01750357,0.081464075,0.047071368,0.040094495,0.03860018,0.018736793,0.025125196,-0.048506018,-0.029129585,-0.11055924,-0.046104994,-0.032371044,0.013892362,-0.093848884,-0.019053595,-0.018413695,0.026288517,0.06450292,0.050435685,0.04149829,-0.02554683,-0.02447726,-0.05391264,-0.001317669,0.045615148,0.10905659,0.119579785,-0.05346048,-0.028556198,-0.033598583,0.028845174,0.02327721,-0.016667193,0.052160684,0.011787852,-0.02194166,0.0031145813,-0.04713841,-0.043441825,0.0420672,0.06697831,0.014550411,0.08668604,0.027821831,0.04304264,-0.06787523,0.06606964,-0.015866507,0.08005753,0.053728323,-0.037376013,0.014582291,-8.762151e-33,0.006610349,-0.007464239,0.0032072726,0.076941766,-0.029467385,0.019772578,0.041040074,-0.0036939376,-0.09020016,0.014844466,-0.092741,-0.13069329,0.07219137,-0.049053892,0.026975011,0.09067985,-0.04067255,-0.025233233,-0.08116337,-0.050307162,0.013944578,0.067161344,0.06906747,-0.024032667,-0.024137815,-0.054578856,-0.044896755,0.02906288,-0.11692118,0.026317155,0.0010909751,-0.03337419,0.033316076,0.033420745,-0.049973544,-0.038130134,0.111241385,-0.04461673,0.01898825,-0.007665243,-0.00514513,0.09598849,-0.011831118,0.023299467,-0.02263841,0.05523407,-0.0052456753,-0.13276161,-0.00770271,-0.05454964,0.060941957,-0.030711614,0.023511564,-0.09266601,0.07712165,-0.026842317,-0.06362293,-0.07627544,-0.07768478,0.034103412,0.0067109214,-0.00078261626,-0.052248128,-0.09979318,0.124435455,-0.010927972,-0.018744452,0.058191136,0.042785086,0.05164681,0.1027131,0.022726601,-0.04028698,0.01409699,-0.021877605,0.0041597113,-0.0385652,0.0066106888,-0.04683598,0.070541754,0.07469553,-0.016935384,-0.0066866144,-0.02914681,-0.027790973,-0.024617497,-0.015408013,0.084469914,-0.0030681074,0.02616151,-0.0036625075,-0.016179623,-0.06422101,-0.088836186,0.019902846,-3.69474e-08,-0.041696798,-0.0795795,-0.04883301,-0.044912722,-0.0018218125,-0.010080557,-0.05308677,0.09951988,0.015299551,0.059344675,-0.005102486,-0.040448528,-0.07820741,0.10830724,-0.007848363,0.06245357,0.059920773,0.041545253,-0.055342108,-0.08779641,0.04613187,0.02741351,-0.055885945,0.116228156,-0.03537295,0.05173451,-0.06143272,0.004113159,0.014313497,0.018951941,-0.012208713,-0.032071482,-0.060819328,-0.03614549,-0.060704734,-0.022096643,0.0032987609,-0.0100220395,-0.031188363,0.00840583,0.11888317,0.019440304,-0.02241668,0.012082218,-0.002601073,-0.1018988,-0.03409446,0.008238503,-0.0025649096,0.07097527,0.051195886,-0.0058665946,0.08531631,0.023025487,-0.025045948,-0.09636507,0.01604208,-0.045948077,0.013679708,-0.038080737,0.0859875,0.11810098,0.035353124,-0.06741392} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:06.910391+00 2026-01-30 02:01:11.11171+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1892 google ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE 1 t 1895 Go Karts Mar Menor unknown La pera!!! Siempre hacemos una carrera familiar y se portan muy bien! Es verdad que había un kart que se estropeó pero el resto muy bien! la pera!!! siempre hacemos una carrera familiar y se portan muy bien! es verdad que había un kart que se estropeó pero el resto muy bien! 4 2025-01-30 01:52:39.833374+00 es v5.1 P1.01 {R3.01} V+ I3 CR-N {} {"O1.04": "Es verdad que había un kart que se estropeó pero el resto muy bien!", "P1.01": "La pera!!! Siempre hacemos una carrera familiar y se portan muy bien!"} {0.05746553,-0.038502317,0.002429358,-0.05097703,-0.05899435,0.02725742,0.0631581,-0.04528672,-0.016806936,0.018407712,0.056164917,0.014191157,-0.028941061,9.334017e-05,0.014426598,0.030381119,-0.033716593,0.0032579699,0.038520537,0.027328992,0.002435905,-0.019602716,-0.07083875,0.06901073,-0.12689097,-0.03601951,0.02618899,0.0059646773,-0.021700809,-0.097853854,0.011956512,0.12257019,0.02859042,0.025938932,-0.0080687795,0.04253581,0.025155788,-0.08743854,-0.056260966,0.057535157,-0.1201527,-0.0057386295,-0.016927075,-0.0009282634,0.0170349,-0.08951914,0.039693084,0.0045457575,0.06369489,-0.020507175,-0.057633515,0.011788193,-0.013521683,-0.059154637,-0.06868502,0.019886814,-0.05089032,-0.020210354,0.06903006,0.019425008,0.0036095814,0.068021305,-0.011532031,0.0152354585,-0.01240671,-0.06877017,0.06765454,0.026221888,-0.08840154,0.018964622,0.08841794,-0.028892376,0.0057743033,0.026967121,0.0070838407,0.04253311,-0.032656897,-0.05591025,-0.051001873,-0.013263697,-0.01263946,0.023109928,-0.050633125,-0.006828482,0.0016255156,-0.004067133,-0.048048962,0.03590874,0.021986831,-0.095862344,0.012367036,0.051237933,-0.056554284,-0.04413573,0.04180039,0.03413776,-0.0046410016,-0.0421669,-0.043700114,0.026775537,0.07570194,0.1104486,0.066633284,0.052188728,-0.04004978,0.08254279,0.003545197,-0.010636975,0.050029933,-0.032554884,-0.028546808,0.034584366,-0.07955744,0.042110853,-0.0188311,-0.0059678117,0.019865349,-0.05422605,-0.020416124,-0.032081924,0.022322077,0.020780412,-0.08901063,0.0065725935,0.00463101,-0.082863584,0.043717325,9.8693264e-33,0.008501023,0.027194535,0.05936013,0.04397934,-0.03580102,-0.023779634,-0.02764983,-0.020355018,-0.108881295,0.005208965,-0.032929357,0.009242684,-0.08540019,0.026043909,-0.010670513,0.12439128,-0.0053416844,-0.05384193,0.031845145,0.036278028,-0.027949195,-0.013662385,0.009597862,-0.025126558,-0.043165408,0.028242532,0.08199801,-0.0476437,-0.008665525,0.032864675,-0.03268854,0.05327957,0.02660022,-0.04495233,-0.012915039,-0.059089627,0.015667599,0.053931475,-0.002015226,0.0254402,0.041844025,0.045744527,-0.010217262,-0.027224971,-0.033447623,-0.0282009,0.090754606,0.054298747,0.08947846,-0.025332212,-0.09143633,-0.108440846,-0.040114418,-0.05065303,0.0015353372,-0.011052347,-0.05671868,0.052541956,-0.020047339,-0.046765026,0.07444812,0.001957983,0.008134285,0.014095574,-0.000629395,0.0120601505,-0.017630877,0.052016392,0.14166398,0.04580601,-0.014189121,-0.024222717,-0.036354493,-0.007865331,0.049935117,0.00946774,0.0029046729,0.04273447,0.09235491,0.0289968,-0.019439386,0.031332113,0.011446287,-0.0016550455,0.060970448,0.1301049,0.079327926,-0.04057059,-0.049015973,0.1415807,0.03964773,0.087826505,0.035182264,-0.0410493,0.02855234,-1.15344465e-32,-0.00297056,-0.04708722,0.017599376,0.005798963,-0.01772332,-0.01834829,0.043286283,0.03756695,-0.042883016,-0.052929487,-0.082793444,-0.12065633,0.07330715,-0.081981115,-0.023417795,0.06379715,0.028880058,-0.00094791065,-0.04570532,0.0076287584,-0.071527705,-0.0013749503,0.08225247,0.029063383,-0.03938751,-0.086662136,0.021199018,0.036191974,-0.1581221,-0.06303862,0.061095923,-0.04265904,0.025022458,0.025927823,-0.039201207,-0.008422874,-0.036391743,0.055559486,-0.013576587,0.07487959,-0.01442856,0.08522487,-0.10803541,-0.038272273,-0.03248681,-0.032919098,0.0035786545,-0.1266133,-0.00077885395,-0.054379724,0.04002849,-0.04915835,0.007967109,-0.06502924,0.05061206,0.016467173,0.011099654,-0.037037507,-0.012507408,-0.021832142,0.0045100637,0.024175694,-0.020071398,-0.052107204,0.1373808,-0.022365233,-0.009107721,0.004476595,-0.011692177,0.029114256,0.077189006,-0.0007001022,-0.14101304,-0.028034102,-0.05554252,-0.051405348,-0.09106451,-0.0649323,0.01079222,0.0763106,-0.050815042,0.02498592,-0.05219802,-0.049730018,0.030718286,0.062310044,0.045690656,0.060821805,0.047798682,0.027329896,0.04029311,0.031268172,-0.09057978,-0.0936661,-0.02966124,-4.0281122e-08,-0.023476679,-0.020041497,-0.040076647,0.00989681,0.04052049,-0.06824952,-0.038617708,0.02099358,-0.006758827,3.754937e-05,-0.04101128,-0.0034767117,-0.028994482,-0.004505703,-0.015335983,0.10356637,0.15132403,0.074173175,0.004216761,-0.010218332,0.08972303,-0.00079041655,0.028438732,0.044537306,-0.081900135,0.020326296,-0.019924076,-0.023064649,0.051233895,-0.04078135,-0.026044833,-0.060544908,-0.0455578,-0.13489273,-0.011744673,-0.038468827,0.034088023,-0.026641792,-0.0050917747,-0.0342209,0.08524327,-0.061847307,-0.06398746,-0.005363267,-0.06429007,-0.061305568,-0.016543094,0.005819026,-0.032364607,0.061406363,-0.0037200404,-0.057880625,0.049159624,0.00992761,0.07700592,-0.062481564,0.055089932,0.009801059,-0.020536523,0.01405558,0.06469978,0.04885573,-0.0035315652,-0.027082536} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:27.560534+00 2026-01-30 02:01:11.086963+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1762 google ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE 1 t 1765 Go Karts Mar Menor unknown Cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y seguridad al tener amplias vías de escape. Excelente equipo electrónico que controla los tiempos a la perfección. Tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más intensa los Fascinantes F-400 cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y seguridad al tener amplias vías de escape. excelente equipo electrónico que controla los tiempos a la perfección. tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más intensa los fascinantes f-400 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {E4.01} V+ I3 CR-B {} {"O1.02": "Cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y segurid", "O1.04": "Excelente equipo electrónico que controla los tiempos a la perfección.", "O4.03": "Tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más in"} {-0.032931004,0.051929988,-0.088082574,-0.08459078,-0.09390624,0.045564175,-0.017621476,0.097135276,-0.0041888724,0.05507652,0.10903173,-0.033151377,0.05226948,-0.03714637,-0.025860364,0.07227302,0.002315675,0.009150797,-0.010586541,0.032117296,0.059980564,-0.016309233,0.0016807307,0.0005603318,-0.116039954,0.009808519,-0.038716234,0.04377451,-0.10634025,-0.15791582,-0.07553052,-0.015909525,0.034810383,-0.008902859,-0.101103045,0.016895821,-0.016538138,-0.022895789,0.011241272,0.031112246,-0.0856033,-0.07257851,0.053776994,-0.06997437,-0.015662074,-0.012888179,-0.009332495,-0.004155837,0.024856005,-0.124898314,0.006347881,0.022882005,0.026153024,0.011160169,-0.001396549,-0.068597935,0.0049769846,0.09138732,0.0056338715,0.026946848,0.0241005,0.052591823,-0.04465351,0.017495733,-0.029065486,-0.04330135,0.024303198,-0.052030697,-0.03317488,0.014148851,0.075527206,-0.10758897,-0.043670665,-0.11028452,0.061888445,0.05820971,-6.367783e-06,0.048505593,-0.035393514,0.007102628,0.05183972,-0.039135583,-0.10647847,-0.073233426,-0.00019330197,0.033757664,-0.018055608,-0.043988217,-0.018084114,-0.00758218,-0.051392794,-0.046463598,-0.036535855,-0.063786894,-0.026082719,0.0038786505,-0.007549875,-0.068618454,0.050782647,-0.034793384,0.11182977,0.036138915,-0.015621325,-0.033782363,-0.04432062,0.0114545375,0.023764925,0.047277316,-0.0043606586,-0.05779293,-0.02144697,0.007293735,-0.03019689,-0.053903602,-0.031142017,-0.024278281,-0.029359054,0.0059613422,0.055347312,-0.016187165,-0.07087341,-0.100152515,-0.01599164,0.05930792,0.06717525,-0.014798685,-0.001715848,9.327889e-33,-0.026850816,-6.311656e-05,-0.051579345,-0.00217578,0.00027607472,0.02740877,-0.029868973,0.01906915,-0.0059992108,0.001278781,-0.044452704,0.076177865,0.00040863984,-0.0074449168,0.06048118,-0.1046199,-0.0067899534,-0.1357819,0.053192977,-0.09184671,0.032684732,0.0028145586,0.052186288,0.028021129,0.081635594,0.11017529,0.004875942,-0.0023920618,-0.10962924,0.032945592,0.008959332,0.10731142,-0.010297205,-0.034275103,-0.0027552398,-0.0005552504,0.028251821,0.035361182,-0.0046065766,0.0034482232,0.027135225,-0.07259434,-0.09566401,0.054449197,-0.0045944643,-0.06349314,0.03490122,0.10151985,0.08594738,0.11213056,-0.07949927,-0.06618119,-0.026201366,0.0020530403,0.02908258,0.023562694,-0.04406554,-0.008972013,-0.078344874,0.06063359,-0.021737903,0.08914404,-0.00054791744,-0.04982065,-0.04851567,0.027055558,0.035563603,-0.07293228,0.06883456,0.081698865,-0.037132096,-0.014206878,0.013883481,-0.045137327,0.041424476,0.026810527,-0.035463717,0.010231346,0.02160799,-0.0060675177,-0.039673608,-0.035128616,0.011096258,0.07847539,0.07528595,0.04159319,0.03108082,0.03518202,0.011278839,0.06727126,0.012500472,0.05293838,-0.01056408,-0.023494668,0.0808582,-1.17872725e-32,0.051066205,0.012946506,0.02230132,-0.010704051,0.026342824,0.002870226,0.016799953,-0.051920153,-0.027547924,0.054720156,-0.07537337,-0.04406568,0.14233676,-0.027157802,-0.02409873,-0.0071578426,-0.060812898,-0.06317478,-0.0219916,0.02255381,-0.061822396,0.042849,0.041649155,0.012271924,-0.0017295415,-0.05642247,-0.0616975,0.049745575,-0.0702942,-0.03125686,-0.022962295,0.011188544,0.048697196,0.08768662,-0.11434254,-0.016917031,0.09530397,0.09906525,-0.008298221,-0.048763998,-0.01816677,0.089897774,0.038038608,-0.012620254,-0.023285178,-0.0023603637,-0.017372198,-0.018848564,-0.024257408,-0.026129737,0.043423403,-0.06785001,0.008670467,-0.032246765,-0.0007667399,0.0021724144,0.008496614,-0.008824603,-0.11184435,0.017167987,0.019776324,-0.0760172,0.03441558,0.016739227,0.043725684,-0.043077454,0.02611575,0.017778603,0.087779805,0.0028885761,0.12126717,-0.018893886,0.008763577,-0.0047027525,-0.022177298,-0.041387387,-0.127305,0.011204111,0.03084639,0.022161698,0.027411865,-0.007649568,-0.00093360816,-0.05251589,-0.05155667,-0.015762499,-0.029848456,0.04237633,0.030972455,-0.037007257,0.010841392,0.102355324,0.010489112,-0.009168472,-0.010698429,-5.273119e-08,0.04989803,0.0591634,-0.069859035,0.023736002,0.0042187134,-0.034386244,0.076800205,-0.04633742,-0.062033,-0.0012388488,0.024509937,-0.0077677025,0.037768427,0.025987707,0.028812299,-0.024372704,0.10077166,0.09166146,-0.0026059332,0.07920752,-0.004461007,-0.025334844,-0.058135767,0.0418363,0.11434033,-0.0011672862,-0.048468504,0.008140499,-0.016039036,0.056775995,-0.07061601,-0.0303971,-0.08348981,-0.02813606,-0.03236134,0.029445296,-0.041927267,-0.0057811346,-0.038023204,0.006676632,0.053603835,-0.049584292,-0.08488945,0.008320594,-0.05537957,-0.02548403,-0.012108509,-0.055476516,0.0023109005,0.06630044,-0.020333385,0.0014356602,-0.034289934,-0.005219149,-0.015292446,0.012733674,0.004537008,-0.018674504,-0.04810993,0.00110135,-0.0106438175,0.14240184,0.06300344,-0.094091155} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:49.269805+00 2026-01-30 02:01:10.613789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1969 google ChdDSUhNMG9nS0VJQ0FnSUQ3b3FudHl3RRAB 1 t 1972 Go Karts Mar Menor unknown Una pista estupenda siempre que voy por esa zona término haciendo unas visitas una pista estupenda siempre que voy por esa zona término haciendo unas visitas 5 2025-01-30 01:52:39.833374+00 es v5.1 R3.04 {O1.04} V+ I2 CR-N {} {"R3.04": "Una pista estupenda siempre que voy por esa zona término haciendo unas visitas"} {0.009735227,0.029859336,-0.043227024,-0.015607339,-0.09352987,0.011818996,0.04869113,-0.0064321924,-0.011522847,0.026953572,0.059297588,-0.026616866,-0.0021996594,0.0145826135,0.042764068,-0.01281121,-0.0031537295,0.0206901,0.07997675,0.064312644,0.04813575,-0.04947137,-0.06369484,0.08798362,-0.06685399,0.009346606,0.002672772,0.032754418,0.017764091,-0.018076219,-0.013562432,0.10819637,0.02361716,0.0104887,0.055915587,-0.020422155,-0.0078018056,-0.09551101,-0.018297264,0.06476653,-0.06444867,0.005430729,0.002053392,-0.04417112,-0.009841119,-0.06170905,0.019485028,0.04669915,0.016187297,-0.004693439,-0.061776895,-0.04671703,-0.042564034,0.037878122,-0.02461796,0.038339615,-0.03967242,-0.05258379,-0.013957695,0.0168197,-0.0167959,0.042651437,-0.07318412,0.0042429767,-0.0022226754,-0.025989708,-0.016605126,-0.04592539,-0.0027038697,0.037786726,0.041435964,-0.027822139,0.006515764,0.009493851,-0.0009461402,0.020878546,0.060429078,0.010752412,-0.018882075,-0.02654452,-0.03640172,0.028954519,-0.033570904,-0.007709961,0.034420405,0.057964,-0.058904063,-0.026839374,0.02571771,-0.015593215,-0.017586172,0.05379829,-0.0005811424,-0.034549102,0.006831338,-0.023535976,-0.036996044,-0.068973094,0.029109634,0.005278646,0.13740833,0.031774804,0.0045684176,-0.032440104,-0.09676894,0.009270344,0.10178704,-0.03747299,0.04384212,0.12636113,-0.06638745,-0.08914541,-0.0020377033,-0.0539566,-0.13527061,0.012090081,0.020414624,-0.058620613,-0.011741969,-0.057786286,0.06608371,-0.031974413,-0.024241421,-0.044909477,-0.022897229,-0.09065123,-0.022210546,4.9221875e-33,-0.0138142975,0.010232948,-0.011812779,0.001468362,0.0195335,0.125605,-0.027027331,-0.1036131,-0.05993404,-0.013168309,-0.01656118,0.10150564,-0.037370924,-0.038596254,0.022997309,0.04392466,0.04373219,0.0716634,0.014227384,0.018284608,-0.011213309,-0.04685058,0.034753278,0.015092612,0.04440925,0.03332565,-0.022264645,-0.075476706,-0.09300979,0.054175247,0.01174262,0.01918805,0.0021157297,-0.060244378,0.014163163,-0.06180172,0.05668291,-0.0065678866,0.0013496502,-0.044039335,-0.05102842,0.018574376,0.011147409,0.032959897,-0.030054599,0.011596796,0.05933294,-0.03594784,0.07169904,0.0024280434,-0.055639382,-0.12897775,-0.08520202,0.016969783,-0.047675394,0.024630755,-0.10380008,0.041167557,-0.02343226,-0.069156684,0.047039945,0.026300635,0.03586748,0.014265832,-0.017692627,-0.05324771,-0.026018374,0.041813437,0.11843322,0.118775904,-0.032068495,-0.042561617,-0.004369334,0.062455926,0.009802889,-0.056214318,0.034460843,0.040688787,-0.0020404772,0.028641228,-0.027440542,-0.026327863,0.07654077,0.0486256,0.06313089,0.10253982,0.085643925,0.012434037,-0.053515602,0.03827459,0.022453876,0.067346595,0.107404925,-0.046501916,-0.010391846,-7.275238e-33,0.008611281,-0.039922453,0.022642013,-0.05015904,0.013057256,-0.06772777,-0.016762754,-0.04350875,0.005447773,-0.08062484,-0.10009876,-0.074682735,0.10056898,0.0076884516,0.00049091416,0.09089385,0.07497466,-0.10705205,0.016443508,0.016692387,-0.1185418,-0.017693896,-0.0047107595,0.004052499,-0.0036915762,-0.08227536,0.023896938,0.014334358,-0.04280415,-0.040517423,-0.029236278,-0.008461535,-0.04655339,0.0033469216,-0.0202343,0.1391645,0.12572463,0.012873015,0.007612698,0.036859997,0.018274067,-0.0055209133,0.002293098,-0.050199416,0.005725875,0.029305547,-0.016054602,-0.031104904,-0.084179185,-0.0065394966,0.053557057,-0.054204058,-0.036772624,0.02856706,0.077955835,-0.016137669,-0.040510114,-0.027994303,-0.06991074,-0.010672722,0.07995712,-0.016503004,-0.12522852,0.0013562544,0.044278007,0.007725706,0.0035633359,-0.055174753,0.005124167,0.06018396,0.034377262,0.015081184,-0.12964116,-0.00233298,-0.081382185,-0.017657455,-0.06108534,0.005767588,0.030850321,-0.009987794,-0.038736973,-0.024242247,0.0047755954,-0.018128263,0.06935795,-0.09135034,0.0018476219,0.0839773,-0.04411882,0.033122256,0.019476278,-0.029370923,-0.021233382,-0.09730109,-0.07590431,-2.8364852e-08,0.032874007,0.007823333,-0.012330425,-0.030627333,0.04387749,-0.08161676,0.02580676,-0.0062308772,0.05508089,-0.00438703,-0.0053960965,-0.042832755,0.0837162,0.010679589,0.05112126,0.127577,0.05935874,0.10236072,-0.01819501,-0.0028785332,0.013504348,0.0052883,-0.054132298,-0.041303035,-0.029539559,0.06363292,-0.029255334,-0.00078915985,-0.038861558,-0.008492402,-0.021199776,-0.010978715,-0.0077198,-0.11286426,-0.032437187,-0.0058898227,0.06295493,-0.051438008,0.03573589,-0.096777275,0.066823184,0.09291112,-0.006719786,0.037396908,-0.056814168,-0.08067617,0.038689423,-0.06256619,9.637774e-05,-0.02327309,-0.044427063,0.009491503,0.072059445,0.033907592,0.11061866,-0.009118226,0.08599141,-0.0064188857,-0.0008090835,0.09384403,0.08156131,0.094513044,0.03586899,-0.039670642} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:12.050213+00 2026-01-30 02:01:11.446883+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1545 google ChdDSUhNMG9nS0VJQ0FnSUMtOE5TYzRRRRAB 1 t 1548 Go Karts Mar Menor unknown Very clean and well organised. very clean and well organised. 5 2026-01-30 01:52:39.833374+00 en v5.1 E1.01 {J2.01} V+ I2 CR-N {} {"E1.01": "Very clean and well organised."} {0.0066128094,0.055294078,0.07295856,0.050256245,-0.05691727,-0.03145055,0.010077728,-0.07935147,-0.05776797,0.016942855,-0.008501595,0.021209704,-0.032224182,-0.0064861006,-0.006957918,-0.047809195,0.03808662,-0.09783356,-0.030966908,-0.027714392,-0.052168444,0.010693035,0.08358807,-0.051519286,0.000102896076,0.06961633,-0.028455473,-0.011735455,0.07463973,-0.04177766,-0.000762,0.01539717,0.06372937,0.018100148,-0.0063890093,0.10231806,0.07826712,-0.059361458,0.037241895,0.0056898855,-0.05357188,-0.03997463,-0.003246715,-0.03428041,-0.028661814,-0.00029422026,0.0052200085,-0.029745204,0.03380944,-0.05152432,-0.020566177,-0.03576842,-0.014449297,-0.072572365,-0.0427903,0.01726262,-0.018483384,-0.06750106,-0.0010731884,-0.062383056,0.054186277,0.04557007,-0.05902152,0.09380607,0.10228425,-0.014562104,-0.06933912,0.057639413,0.05231192,-0.017604165,-0.023784978,0.053297684,-0.02084632,0.04741263,-0.041366592,-0.04002045,0.011580703,-0.061951354,-0.04456894,0.022104109,-0.029261889,-0.020064505,-0.019576807,0.039456125,-0.004185628,-0.070117414,0.005169216,-0.042127237,-0.041150976,-0.01214979,0.03176906,0.09797763,0.0058237663,-0.07884585,0.0008665557,0.06980416,0.059585586,0.0041067596,0.007598837,0.12362536,-0.026342785,0.09707714,0.060754772,0.016896829,-0.049123887,0.017302897,-0.004884679,0.0019359835,-0.064930744,-0.014651199,-0.056170687,0.008758183,-0.0805345,-0.028578728,0.014647818,0.015772877,-0.012461828,0.034202635,-0.016024048,0.014471479,0.067018025,-0.0077138273,0.00040265173,-0.014496577,-0.044832453,-0.0244904,0.081103906,-5.758433e-33,0.023742275,0.07194718,-0.0021471758,0.11951425,0.035799693,0.06742085,-0.03626061,-0.006535064,-0.015423091,0.13913496,0.08487919,0.029596984,-0.05278528,0.06759804,0.053972352,0.04036255,-0.072059505,0.06771324,-0.10043407,0.027406951,-0.05462702,0.06970509,0.052357707,-0.014478022,0.050477523,-0.042002764,0.024784666,0.01698774,-0.0016171571,0.024342058,-0.007582701,-0.033142302,-0.04421435,-0.022559583,-0.047368694,0.057892486,-0.13195238,-0.07521977,0.035215385,0.048138108,-0.02198024,-0.028518824,0.037537392,0.00392589,-0.04802493,0.049616855,0.0034625456,0.0055343197,0.051927596,-0.021814056,0.01733098,-0.019191153,-0.07814056,-0.024951812,-0.05362543,0.0075866757,0.05268906,-0.0065759365,0.015211945,0.034887463,0.10097421,0.06513996,-0.13210614,-0.00059257506,-0.05780722,-0.0798174,-0.027326267,0.07473277,0.11727017,-0.043379396,-0.00030002362,0.049620412,0.012560697,-0.0069688507,-0.0177113,0.06367188,-0.012504052,-0.052627843,-0.02461261,0.07477067,0.044782106,-0.005706427,-0.03891887,-0.011818724,0.011572184,0.027398847,0.059081398,0.017130384,-0.03408424,0.06837605,-0.0021287338,0.01291414,0.07390126,-0.07846859,-0.042055633,2.1320635e-33,0.092351384,-0.00039714962,0.008190399,0.078436255,-0.005458434,0.017297916,-0.08574058,0.069565065,-0.002939952,0.10098056,0.0018659969,0.032937516,0.062576845,-0.049386553,0.07011068,0.029074436,0.0642095,-0.0038319468,-0.010262828,-0.06922587,-0.0034914485,0.11868872,0.056348775,0.010250465,-0.11625354,0.028392408,-0.08799556,-0.012672851,-0.09109435,-0.030410701,-0.026277663,-0.057290886,-0.030281179,0.058679022,-0.037483275,0.043389395,-0.0644563,0.013636501,0.0037370014,0.099412315,0.0012753939,-0.01951729,-0.07754169,0.11005103,0.030629847,-0.060370892,-0.08122219,0.013693414,0.010936309,-0.013930539,0.032984365,0.011772883,-0.058597583,-0.085449964,0.004173237,0.00059920887,-0.058632817,-0.07337349,-0.004985555,0.010667779,-0.08734259,0.10357663,-0.0110379895,0.10007263,-0.01333097,-0.080453366,-0.0348593,-0.06939376,-0.10944867,-0.04781647,-0.02960366,-0.06062965,-0.032031603,0.008347428,-0.00021633251,-0.043814037,0.071733475,-0.041828606,0.03516605,0.022842675,-0.09584569,-0.021635896,-0.00027811583,-0.044692114,-0.009789617,-0.004539371,-0.029805597,-0.09807774,0.044435803,0.041034885,0.034759074,0.015824405,-0.028846905,0.016276298,0.0038496356,-1.5584192e-08,0.011079693,0.0013372112,0.06581809,0.061059356,-0.04261765,-0.12119805,0.020078415,0.04397629,0.012503914,0.084392644,0.045227714,-0.009626713,-0.10548907,0.06181743,-0.0031364253,0.012762646,-0.048632666,0.12850423,-0.087280765,0.017532539,0.08451957,0.008523845,0.009162891,0.10766951,-0.011258575,-0.016651658,0.0012998892,-0.0056305346,-0.060092583,0.08726267,0.042161852,0.0619001,-0.023419874,-0.027073786,-0.044657122,-0.0012296957,-0.024434393,-0.03647176,-0.018049752,-0.05460558,-0.068805315,-0.015978185,-0.033165798,0.02553111,0.029793087,-0.073020175,-0.051279213,0.069370165,-0.026847126,-0.030569276,-0.032517232,0.03531687,0.0072176694,0.07989767,-0.03859532,-0.009108253,-0.0022007986,-0.011971186,0.026617028,0.02437406,0.023463162,-0.022903804,-0.05149678,-0.05194054} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.716841+00 2026-01-30 02:01:09.737826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1903 google ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB 1 t 1906 Go Karts Mar Menor unknown Lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómodo y nada peligroso personal atento y gran variedad de coches,yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y muy buen ambiente que se agradece gracias y seguir asi lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómodo y nada peligroso personal atento y gran variedad de coches,yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y muy buen ambiente que se agradece gracias y seguir asi 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.01 {A3.01,E4.01} V+ I3 CR-N {} {"O1.01": "Lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómod", "O1.05": "yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y", "O3.02": "gran variedad de coches", "P3.01": "personal atento"} {-0.0395239,-0.021253714,0.022094067,-0.056097545,-0.048911974,-0.042206183,0.13803372,0.09048719,-0.031116497,0.0066214805,0.071967386,-0.045308266,-0.024922898,0.026664568,0.06229757,0.049763266,0.065090135,0.038880605,0.049535863,-0.023186304,0.081982404,-0.07255729,-0.020956136,0.03639641,-0.103063576,0.061738934,0.049951065,0.033771858,-0.043884963,-0.06389565,0.016467873,0.086982556,0.071539074,-0.08131634,-0.10969499,0.05471386,0.026128786,-0.07301813,0.0062915958,0.06274146,-0.09930341,0.0027138914,-0.025666986,-0.107301,0.024514185,-0.10145042,0.03835942,-0.0643422,-0.05657014,-0.06258761,-0.009076588,-0.041041937,-0.01729311,0.03534522,0.009650017,-0.007493007,-0.06530269,0.020507019,0.08059084,0.046468418,-0.044270903,0.023547472,-0.016856175,0.02747305,0.00534622,-0.0596094,0.07587665,0.0009966337,-0.022256883,-0.0007700277,0.0013856452,-0.041356828,0.058082584,0.013370963,-0.017307239,0.048707902,0.0020951682,-0.03939379,-0.040241238,-0.09102188,-0.084915206,-0.0041425396,-0.017746974,-0.06524789,0.04936237,-0.02035315,-0.0055833603,-0.00888862,-0.047670275,-0.05977075,0.048297457,0.03645755,-0.028376548,0.012637182,-0.0020846871,0.014908002,-0.036100127,-0.069731325,-0.028816145,-0.014538559,0.023865564,0.038360137,0.053669967,0.08265084,-0.056720935,-0.0313655,0.028862936,-0.013768981,-0.051983293,0.045877278,-0.11642828,0.008306657,-0.020550663,0.011966265,-0.029603569,-0.052044384,0.009741417,0.006209893,0.05426459,-0.032919284,-0.01761281,-0.024802903,-0.06286614,-0.013700982,-0.019257579,-0.08433994,0.11531419,1.4303815e-32,-0.058191292,-0.02446941,0.0016493461,0.07005212,0.0055073462,0.055897735,0.030510059,-0.047202498,0.011687058,-0.035610527,-0.0057899975,0.09487709,0.0028176766,0.08818967,0.10695881,-0.014760462,-0.03956538,-0.05497382,0.086504094,0.029476257,-0.040931948,-0.10547162,0.01672155,0.03825191,0.05768828,0.025687963,0.071060486,0.009833613,-0.05367871,0.033517987,-0.010995573,-0.013149978,0.03439868,-0.029871251,-0.08197119,-0.010682589,0.01154075,0.038874865,-0.031912025,-0.037345875,-0.059152335,0.0040340545,0.046340156,0.06171975,-0.02550339,0.10211033,0.04712956,-0.0046600364,-0.014768826,0.033565037,-0.07199797,-0.0733486,-0.03843317,-0.010676043,-0.04068321,0.07354313,-0.03700898,0.018469682,-0.015969966,-0.077266924,0.056019254,0.03443672,-0.0041083726,-0.11426254,-0.03952378,0.019768625,0.021304633,0.040591504,0.03938813,-0.0006476086,-0.119591616,-0.007787238,-0.072792456,0.01085986,0.016350493,-0.0043839775,0.029198864,-0.020415867,-0.021826427,-0.006111463,-0.015778575,0.012423224,0.045482717,0.015385831,0.018346192,-0.0162931,0.019061388,0.042251296,-0.02823858,0.16491659,-0.043156218,0.044959515,0.07264599,-0.018469973,0.021028414,-1.485732e-32,-0.032982476,0.002995487,0.0024489467,0.11426561,0.00059954956,-0.020021915,0.040619064,-0.055330478,0.017554468,-0.053818956,-0.10891003,-0.054642525,0.062363166,-0.07286268,-0.04893078,0.076281436,-0.074644476,-0.015324141,-0.018825054,-0.062455457,0.07139464,0.09167716,0.00055683986,-0.1008476,-0.010324667,-0.0167775,-0.11305169,0.04810018,-0.056623645,-0.00026320593,-0.0012954819,-0.02360697,0.07701114,0.043570437,-0.049261704,-0.020213012,0.030727595,0.06498312,-0.02134087,0.004364143,0.0064059584,0.055838432,-0.0072208536,0.059344035,-0.0423849,0.00442595,-0.008461875,-0.123945095,-0.01904965,-0.004434121,0.04891078,-0.01494093,-0.08089106,-0.12023928,0.023418693,0.013417714,0.0028768654,-0.075490326,-0.07832401,-0.018246831,0.042899586,-0.005048686,-0.034260556,-0.021243565,0.05499266,0.044347633,-0.010654164,0.0026889583,0.05368513,0.027358059,0.049461626,0.004784867,-0.050866466,-0.057444766,-0.020701664,-0.09374558,-0.13217886,0.009044604,-0.06170486,0.020286564,0.04362128,-0.017330546,-0.03252971,-0.06505796,-0.011086178,-0.08054106,-0.007172402,0.011102867,-0.028060509,-0.010201781,0.02675199,0.03179654,-0.104715526,-0.03750035,0.019355083,-5.6745954e-08,0.0018294427,-0.08211048,0.039316025,0.02593971,0.038443346,-0.08306313,0.03010833,0.034730423,-0.015163491,-0.00900244,-0.035201415,0.0013816535,0.0026702853,0.105598606,0.07371935,0.042792037,0.1106775,0.049478333,-0.05658187,-0.014610172,0.12562747,0.02607658,-0.0052468013,0.11566727,0.04432289,0.026536243,-0.013896029,-0.0008384615,-0.030232746,0.02192654,-0.005855999,4.9441074e-05,0.026944837,-0.048228815,-0.044116817,-0.027172767,-0.043613046,0.03785704,-0.02686183,0.024607519,0.04733781,-0.09708489,-0.054471094,0.06265753,0.012737315,-0.068187475,-0.017656175,-0.045617826,-0.0007994134,0.082131624,-0.018856924,-0.03157791,0.04873952,-0.010349622,0.036443498,0.0053787567,0.03206078,0.017378481,0.016094184,0.012719225,-0.00856583,0.077159345,0.05095815,-0.05950006} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:01.473246+00 2026-01-30 02:01:11.146794+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1908 google ChdDSUhNMG9nS0VJQ0FnSURRNWVMMHFBRRAB 1 t 1911 Go Karts Mar Menor unknown Lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc) maar er is ook keuze voor 400cc vanaf 18 jaar lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc) maar er is ook keuze voor 400cc vanaf 18 jaar 4 2018-02-01 01:52:39.833374+00 nl v5.1 O1.02 {J1.03,O4.03} V± I2 CR-N {} {"O1.02": "Lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc)"} {-0.04764875,0.10467657,-0.014559613,-0.0034911938,-0.123605475,0.02246643,-0.026541159,0.0876384,-0.003539956,-0.028164983,0.040651403,-0.07884564,-0.043455373,-0.038778376,-0.019114606,-0.067357354,-0.042398836,0.06430595,-0.059384063,-0.06537559,-0.04107426,-0.010522126,0.059153277,-0.055973638,-0.042884927,-0.013624276,0.016867656,0.016363801,-0.0053884955,-0.018580291,0.030660462,0.057721082,-0.035737038,0.022408335,-0.012992592,0.010624484,-0.042524204,-0.061709635,0.043961912,0.041705698,-0.020070123,-0.05918791,-0.112242855,-0.07203659,0.085920505,0.030713191,-0.07725318,-0.004475865,-0.036345668,-0.018072702,-0.078367464,-0.04785836,0.025413428,-0.021352096,-0.010971525,-0.09446186,-0.06604685,0.077690564,0.055949297,-0.0048707984,-0.0073217996,0.07922936,-0.030121455,0.0069018123,-0.04773106,-0.058967717,-0.03595873,0.07422295,-0.05256686,0.0626995,0.10256309,0.025126792,-0.06994533,0.028385544,-0.023456758,0.04595225,0.03451954,0.014757859,0.05530032,-0.038295187,0.02363764,-0.061630327,-0.042156905,0.01937267,-0.028236384,0.012155198,0.035973027,0.090842746,0.04808047,0.019803733,0.01963293,-0.008235669,-0.08862746,-0.00070111296,-0.025086138,0.012020228,-0.03537238,-0.010037331,-0.020585964,0.0023546107,0.035536353,-0.081344225,0.094787315,0.0768352,-0.11393099,0.0019423537,0.02313184,-0.013266234,0.07388744,0.01479778,-0.07439278,-0.069703154,-0.024774719,-0.063845955,-0.0221232,0.034145776,-0.06923115,-0.06993522,0.014938905,0.047130994,0.03600451,-0.0007221232,-0.014116622,-0.006067165,0.056778315,-0.06611094,0.094285645,1.17286176e-32,-0.08637335,-0.03268002,-0.043453865,0.020743659,-0.00021579623,-0.04394129,-0.022358134,-0.07541547,-0.08525502,-0.10206977,-0.054124955,-0.016964516,-0.040048458,0.0046144268,0.023208145,0.047304202,0.052324206,0.021478739,-0.044906165,0.10559822,0.023824962,-0.02585333,0.059318,0.055433426,0.022713091,-0.056412585,0.062378854,-0.056122456,-0.06808626,0.036053445,0.032139607,-0.070957266,0.012966063,-0.036788724,-0.11577005,-0.0036143316,0.019182168,-0.030704625,-0.031647895,-0.019824108,0.076529995,-0.07375951,0.03865009,0.1000582,-0.033370774,0.04890364,0.032945752,0.00919046,-0.00482253,0.03143171,-0.10934885,0.027416805,-0.031001775,-0.04561628,0.004046074,0.062472507,-0.02496699,0.048913244,-0.039866917,-0.0133831985,0.018635351,0.08436437,0.06829414,-0.053855006,0.021240778,-0.10667197,-0.035144035,-0.022391677,0.022255223,0.040758148,-0.002080459,-0.057082497,0.010502677,-0.03266763,0.06661917,0.020017475,0.061209556,0.08598102,-0.008847595,-0.008872747,-0.046278264,0.0030298387,-0.10081149,0.018559288,0.03201947,-0.032638725,-0.0038482258,0.015803175,0.05577679,0.08521587,0.04309846,-0.008170837,-0.05410245,-0.021988962,0.017782096,-1.0877105e-32,0.05858488,0.074883185,-0.030368501,0.12885094,0.007104415,0.050406925,0.027430272,0.039075796,-0.010429717,0.023789955,-0.013068194,-0.04836652,0.12453184,-0.05495374,-0.07357823,0.0014510641,0.039392628,0.06131261,0.068398185,-0.033343237,-0.023988077,0.021872457,0.01732468,0.06586585,-0.03708044,0.0071897367,0.015646737,0.015236251,-0.1300076,-0.0732046,0.005720977,-0.10488909,0.017598182,0.079446994,-0.010999793,-0.008690979,0.15756544,0.053969484,-0.01042238,0.043973062,0.009241363,-0.006288428,-0.10551687,0.012736541,-0.01825201,-0.043920666,0.026352944,-0.036383193,0.08154555,-0.04374024,0.120500915,0.0711187,0.038327105,0.026398076,0.0769217,-0.032015044,0.02584008,-0.083699435,-0.049037132,0.038978346,-0.011611641,0.023978261,0.048073277,0.04330669,0.020279104,-0.108559586,-0.06454427,-0.025187131,0.030731743,-0.07694916,0.036591638,-0.019661227,0.03722031,0.014607149,-0.043082893,-0.050463755,0.009040777,0.005789875,0.07496517,-0.0586876,-0.04130993,-0.016185813,0.056672487,0.039956048,0.030862235,0.0026921944,-0.04225554,0.02412924,0.051988546,0.009805031,0.04141083,0.07385496,0.03745979,0.050641928,-0.009130222,-4.1560643e-08,0.025967993,-0.048338972,-0.0904588,0.038429417,0.037023474,-0.057658397,-0.00080843136,-0.022540554,-0.047080893,0.107858665,-0.050675943,0.047441196,-0.031999428,0.027561067,0.05932377,0.022752672,0.026704393,0.09769639,-0.012040902,0.0145516535,0.067035474,0.010752553,-0.022402696,0.060032498,-0.009769783,-0.021209003,0.026672818,-0.053236537,0.05240459,-0.062209077,-0.05533474,0.06329981,-0.02454323,-0.0046155215,-0.010849136,-0.0034285386,-0.09974114,0.12612975,-0.034029674,0.08170768,0.006118843,-0.012771997,0.034675952,-0.04268351,-0.013014056,0.020288272,-0.030989558,-0.026735494,-0.033477005,-0.041252572,-0.0697567,-0.008865046,0.054993495,0.017339578,-0.019777747,0.013733847,-0.05853152,-0.0472704,0.016992008,0.0054028817,-0.005901815,0.0071823485,-0.006861745,-0.0220417} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.772592+00 2026-01-30 02:01:11.176628+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1904 google ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB 1 t 1907 Go Karts Mar Menor unknown Todo muy bien, a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos, en la 2 tanda. todo muy bien, a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos, en la 2 tanda. 4 2024-01-31 01:52:39.833374+00 es v5.1 E2.03 {O1.01} V- I3 CR-N {} {"E2.03": "a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos,", "V4.03": "Todo muy bien"} {0.020700281,-0.011324612,-0.010076526,-0.07024438,-0.058307372,0.008382826,0.06795056,-0.017732238,-0.047326602,0.004428469,0.1120236,-0.07306905,-0.06609236,-0.038121536,0.07892141,-0.0007233582,-0.0064868964,-0.0008175866,0.006815438,-0.053638145,0.13182132,0.0032445865,-0.079337366,0.05155078,-0.118139826,-0.0768255,-0.020476166,0.016981965,-0.026132885,-0.088561356,0.0036598966,0.090450555,0.008188084,-0.018288458,-0.014167358,-0.04948569,0.08466025,-0.121586144,0.012361174,0.077562734,-0.08321101,-0.012195394,-0.0198507,0.01074418,-0.038338684,-0.04667633,0.05169717,-0.0050432887,0.032624632,-0.029306974,-0.012852371,0.03848148,-0.061489936,-0.016974807,-0.018411104,0.063593365,-0.037198037,0.01826446,0.070374265,0.051881008,0.02422835,0.06559312,-0.028099949,-0.012140684,0.021401267,-0.08442606,0.0518902,-0.04373596,-0.07222056,0.021095127,0.063032605,-0.043002874,-0.03651228,0.0006965907,-0.05547564,0.046496753,0.005259666,-0.070670344,-0.051313326,-0.026928484,-0.040036257,0.03864724,-0.015942758,-0.03390288,0.0119085945,0.011514749,-0.04529748,0.076684274,0.022883005,-0.02454101,-0.031509344,0.037711818,-0.029108744,0.059060074,-0.010778101,0.03205953,0.06810787,-0.007301427,0.009621693,0.014010147,0.02050445,0.037763093,0.06397829,-0.0017511204,-0.026392221,0.018771632,-0.0020452181,-0.009525282,0.025386991,0.027220223,-0.02222334,0.037528403,-0.05896637,0.04122031,-0.0059066964,0.0060178875,-0.023711752,-0.040450454,-0.08364285,-0.09609733,0.055506088,-0.0024410917,-0.06344584,0.012857723,-0.05724018,-0.015639082,0.11282091,8.533709e-33,-0.02117579,-0.019860141,0.031133352,0.053411216,-0.032028258,0.0020415478,-0.0375548,0.008596616,-0.038876165,-0.041394107,-0.02613676,0.02367508,0.0071761706,0.031947635,-0.009561265,-0.014687141,0.013619389,-0.039833426,0.090536356,0.097582676,-0.07717299,-0.019136906,-0.008280557,0.0300756,-0.029388629,-0.008678998,0.030168273,-0.061765533,-0.066845104,0.041574247,-0.0153209735,0.028486961,0.04908836,-0.012300731,-0.035639927,-0.06884269,0.017694192,0.06774928,0.031932905,0.010238483,0.06661001,0.057686135,0.037736125,0.036114488,-0.0033925907,0.006079915,0.04996014,0.07986494,0.066657834,-0.007845637,-0.12895425,0.0018312248,-0.035464894,-0.004394827,0.01677719,0.031505506,-0.034411754,-0.005586574,-0.024773171,0.009285373,0.022137396,0.065101996,0.08030186,-0.033597145,-0.054488484,-0.010849217,-0.0065975576,-0.03392094,0.098723404,0.09118687,-0.05699441,-0.027509622,-0.027974697,0.002860705,0.106692985,0.0036753593,0.07452231,0.037086364,0.03282396,-0.0043423497,-0.0053946343,-0.0017456838,0.06493633,-0.016738899,0.012699386,0.05124502,-0.012360674,0.022914516,-0.025011584,0.10779537,-0.04709227,0.12124037,0.057749525,-0.06362054,0.0076219896,-8.694027e-33,0.025078012,0.04441732,-0.06191058,-0.016930262,-0.015237849,0.058257528,0.023250917,-0.049998153,-0.06315143,-0.0551435,-0.07413573,-0.06767573,0.08397666,-0.073389776,-0.039759014,0.08204808,0.016902424,-0.037000235,-0.032272987,-0.037316322,-0.0074981735,0.07109483,0.041801624,-0.03213503,0.018076448,-0.043952078,-0.030181972,0.023606839,-0.06505051,0.029776068,0.092933275,-0.06333758,0.023443112,0.010840053,-0.011649061,0.025206834,0.045779392,0.070543736,0.028232757,0.07306903,-0.04762578,0.06247392,0.03731249,0.008238355,0.009018244,0.040407762,-0.0073490604,-0.10374318,-0.08700842,0.0011213559,0.05261643,-0.0687011,-0.11384012,-0.081725344,0.012509289,0.011352602,-0.047297098,-0.09124018,-0.09395681,-0.04845151,0.010886003,0.026343541,-0.011021455,-0.08911483,0.061661974,-0.029395591,-0.016708443,-0.04189318,0.090296686,0.06289829,0.13218845,-0.008330761,-0.064593606,-0.055989817,-0.062387098,-0.02719984,-0.11395936,-0.054398287,-0.035062395,-0.0011013811,-0.028355503,0.032201976,0.06664193,-0.03629809,-0.042433556,0.0022775105,-0.056889605,0.041061524,0.006115308,0.06365025,-0.039511524,-0.03682822,-0.15774521,-0.07022362,0.044165906,-3.9390912e-08,0.03773238,-0.029118925,-0.033200596,0.02739695,-0.011502911,0.014953773,0.014566689,0.04722151,0.10624292,0.04924144,-0.047295976,-0.028838307,0.06259466,0.06552884,-0.013314389,0.06149528,0.08246048,0.1013946,-0.03540181,-0.101100065,0.048613258,0.0020321128,-0.016046938,0.079862416,-0.03505675,0.032877505,-0.082984336,0.00959447,-0.030906817,0.027869485,-0.0071759815,-0.027441056,-0.034438785,-0.09070322,0.06544162,-0.023287231,-0.034544196,0.016563809,-0.018580353,-0.030055003,-0.0077097365,0.032260135,-0.026573662,0.07937806,0.012801534,-0.11178524,0.035129536,-0.0021745737,0.030242845,0.095017314,0.07608735,-0.021762976,0.06398955,0.017432505,-0.015887797,-0.020475067,-0.030483961,-0.017299127,-0.017683111,-0.036739532,0.033308323,0.10296687,0.05763016,-0.09530587} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:08.256793+00 2026-01-30 02:01:11.154092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1909 google ChdDSUhNMG9nS0VJQ0FnSUNYMy1XcnJRRRAB 1 t 1912 Go Karts Mar Menor unknown Circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I2 CR-N {} {"O1.02": "Circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi"} {-0.027577333,0.06804937,-0.057727467,-0.022874683,-0.06874606,0.00490769,-0.014159654,0.08782994,-0.059380203,0.00910151,0.06796651,-0.012240859,0.061338633,-0.013453661,0.012593913,0.035193298,0.0040820907,0.000984216,-0.051963612,-0.06271631,0.07423833,-0.047036856,-0.09437644,0.040831696,-0.06286124,-0.0065247505,-0.021602193,0.014982598,-0.0023542098,-0.08323822,-0.09062732,0.03910423,0.053988513,-0.00415728,-0.05962013,0.016001627,0.000871301,-0.06588606,0.03503903,-0.018427506,-0.06473787,-0.008471872,-0.019437762,-0.047195368,0.049790878,0.030075466,-0.004121778,0.01849095,0.06567663,-0.07828053,0.014106733,0.020734852,0.019948307,-0.046081692,-0.021431051,-0.090452544,-0.019663982,0.082260475,0.15126543,0.04655615,0.012003864,0.039805908,-0.044689387,0.061437704,0.018649507,-0.107782155,0.03286999,-0.020152219,-0.07198304,0.045122337,0.0648503,-0.080393866,-0.023604192,0.042316787,0.034361295,0.021625282,-0.008457503,-0.020575242,-0.11218672,-0.009513932,0.027611366,-0.026630012,-0.05492376,-0.04533855,-0.0061518354,0.039833162,-0.009059174,0.0065327086,0.04015939,-0.0729426,-0.0126235355,0.05134092,-0.10199046,-0.027217526,-0.0040607904,0.028408093,0.0093948785,-0.085138254,-0.019475343,0.044836804,0.087329574,0.0018153423,0.046718907,0.011577072,-0.05329347,-0.016163945,0.022986772,0.078477316,-0.015375264,-0.017460868,-0.05612622,-0.0025551964,-0.042242546,-0.052286237,-0.014962697,-0.052942127,-0.028913898,0.001102686,-0.017876212,-0.02413344,0.026240177,-0.010599779,-0.020416688,0.010530402,0.072033234,-0.03424562,0.08696602,8.034012e-33,-0.06673848,0.0025021685,-0.044616725,-0.009134405,0.032747507,-0.036513157,-0.018371664,-0.007802905,-0.02352946,0.034374665,0.023259128,0.024049515,-0.0016359977,0.027145136,0.07009956,-0.043408923,0.021983052,-0.107940465,0.06819626,-0.0031231258,-0.024027446,-0.09988694,0.036652517,0.10308015,0.0016466472,0.09454235,0.119783856,-0.06563432,-0.06652908,0.0509916,0.043983225,0.07129144,-0.01618203,-0.03628549,-0.054986358,0.010455446,0.04781939,-0.0016084969,0.006742422,-0.0048718173,0.040272504,0.010884494,-0.03827132,0.06546351,-0.037388857,-0.007690039,0.028676707,0.044902522,0.08515442,0.057693228,-0.103596106,-0.03791821,-0.022011517,0.013462387,0.020125566,0.003727581,-0.013170774,0.0009243829,-0.0296081,0.04060396,-0.029283442,0.05275043,-0.00324001,-0.007387149,-0.07918021,-0.05390413,0.020729866,-0.069713116,0.029074052,-0.023573495,-0.07288021,-0.03808329,0.07616545,0.0022802665,0.03460247,0.051599633,-0.011745174,0.07901834,-0.035850838,0.012229096,-0.0844286,0.011341955,0.039958924,0.050653923,0.100167036,0.07632089,0.060736064,0.030979011,-0.023830798,0.126889,-0.0055364394,0.09614127,0.017321281,0.014347526,0.050782103,-7.9988284e-33,0.021587992,0.08205227,0.08919153,0.06806195,-0.005135301,-0.01653927,0.025321566,-0.050221402,-0.03169077,0.011172085,-0.0034835835,-0.074373394,0.12130795,-0.017404115,-0.027325917,0.034390107,-0.0073267743,-0.019390045,-0.070700124,-0.018024154,-0.01965052,0.09118592,-0.00036865353,-0.07853232,-0.00042200906,-0.044401616,-0.102236785,0.07949558,-0.12364572,-0.015980454,0.0032465362,-0.03737864,0.021891015,0.055972014,-0.080051295,-0.031156367,0.10639407,0.10219483,-0.03673277,0.05722145,0.0052430695,0.11297613,-0.04147564,-0.0396483,-0.01620476,-0.0013037919,0.086042546,-0.10472278,0.053134196,-0.033324547,0.105681114,-0.015143149,-0.019602647,0.0072278897,0.03568865,-0.041370362,-0.004119431,-0.014055562,-0.16398633,-0.06352322,0.04840466,0.016783342,0.009111022,0.014766674,0.0988564,-0.0024046868,0.03503358,0.0028086312,0.08497574,-0.01654808,0.049121298,-0.053023156,0.03459817,0.006300936,-0.01844316,-0.034041848,-0.1087462,0.047490332,-0.0031284743,0.023553181,-0.023198592,0.014550909,-0.014629785,-0.05210629,-0.021061335,0.0008309838,-0.08351451,0.018688548,0.079714924,-0.026187338,-0.024083273,0.04061934,0.012640904,-0.040474404,0.0042979256,-3.3886433e-08,-0.0028723006,0.032809276,-0.09274029,0.033253368,0.037211165,-0.032976896,0.0038656313,-0.02512677,-0.04103376,-0.04388334,0.0075773867,-0.056129172,-0.0070126755,0.0041955104,0.01751699,-0.030500013,0.03813738,0.12421589,0.01427779,0.02369422,0.08076519,-0.042076513,0.01992888,0.040275972,0.017587509,-0.0088695185,-0.04961719,0.012478682,0.034009583,-0.034805816,-0.0677582,0.015686002,-0.08369217,-0.097759955,-0.019099478,-0.021165213,-0.0897216,0.039124377,-0.0087130405,0.058213364,0.05307382,-0.06826926,-0.10191859,0.025637697,-0.032429576,-0.010080041,-0.020446394,-0.06500447,0.032627765,0.008979138,-0.034519065,-0.008665312,0.055537272,0.026752006,0.05213585,-0.018189978,0.042038172,-0.027131805,-0.09642537,-0.016873177,0.001936986,0.072878644,-0.021455605,-0.109577075} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.790053+00 2026-01-30 02:01:11.180815+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1905 google ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE 1 t 1908 Go Karts Mar Menor unknown Está genial!!!\nCircuito guapo, con Cars de diferentes cilindradas, tanto para niños como adultos.\nCafetería buena, y tasas las instalaciones muy cuidadas. está genial!!! circuito guapo, con cars de diferentes cilindradas, tanto para niños como adultos. cafetería buena, y tasas las instalaciones muy cuidadas. 5 2019-02-01 01:52:39.833374+00 es v5.1 O2.03 {O4.03} V+ I3 CR-N {} {"E1.01": "Cafetería buena, y tasas las instalaciones muy cuidadas.", "O2.03": "Está genial!!! Circuito guapo, con Cars de diferentes cilindradas, tanto para niños como adultos."} {-0.0068019186,0.037276447,0.0036372307,-0.02877661,-0.08600084,0.01841358,0.019693155,0.052143686,-0.05056352,0.018683834,0.10648365,-0.062649265,0.0028562902,0.0053883614,0.052538376,0.00450547,0.05088081,0.0024652,0.079409674,-0.058695856,0.035348315,-0.02349525,-0.07478681,0.0661099,-0.13263753,0.06619309,-0.0010547814,0.04032114,-0.07161621,-0.06402397,-0.05200862,0.11285757,0.085044734,-0.04405515,-0.0139199,-0.023079697,0.08698744,-0.03801036,0.025569448,-0.007097271,-0.0874269,-0.052774947,-0.0070116897,-0.053773705,0.021181135,-0.07315354,-0.0075078295,0.01392551,0.072960936,-0.08482053,0.0041533834,0.0102973245,0.048642863,0.017629238,-0.055587396,0.023757849,-0.0452262,-0.014592913,0.07299666,0.1039479,0.011558575,0.0033848216,-0.029577406,0.029163813,-0.013043673,0.0116033405,0.035337415,0.023831656,0.0022631946,-0.0047088084,0.07805992,-0.0712787,0.04876748,0.0007478829,-0.04335245,0.04605086,0.04410223,0.0025006328,0.0013281578,-0.06942928,-0.07309859,0.013718025,-0.009698521,-0.062317982,0.04716623,0.03225565,-0.02600737,-0.025285602,-0.03456166,0.039109483,-0.08178908,0.019920055,-0.049164616,-0.022752002,-0.023532713,-0.011706211,-0.046116166,-0.14750016,0.04297944,-0.012791002,0.041800246,0.011659715,0.10794402,0.050592,-0.07917151,0.026444301,-0.023999393,-0.05488032,-0.0049855425,0.040616244,-0.05530519,0.008006123,-0.015605434,0.023532733,-0.07437225,-0.029828569,0.012222914,-0.009814191,-0.014692222,0.0036685125,0.03100509,-0.051231466,-0.038348198,-0.018735943,0.02176555,0.0002754815,0.09166643,5.9999252e-33,-0.11574343,-0.0026610277,0.006061312,0.10695677,0.107037544,0.061999924,-0.027767664,0.020135716,-0.03178084,0.009876804,-0.05744478,0.009335114,-0.0677154,0.014366456,0.129477,0.05098388,-0.08216612,-0.03099384,0.0037233476,-0.023632055,-0.08169571,-0.013047908,0.032553177,0.025844442,0.034256306,0.06220038,0.00687532,-0.039763846,-0.024570305,0.036135796,0.0118991565,0.028938567,0.023277428,-0.0054807393,-0.06208932,-0.016230883,0.022619005,0.030577196,-0.045364648,0.013936421,0.001441327,0.0073301345,-0.013576753,0.070191376,-0.0107510295,0.019498363,0.07460291,0.011607259,0.09221692,0.053095277,-0.102739386,-0.07603164,-0.09579287,-0.0767625,-0.004584771,0.05746432,-0.036240317,0.03149711,0.0003329762,-0.076406315,-0.0027328886,0.05360109,-0.00017367631,-0.08445169,-0.026786203,-0.010126145,0.03879083,0.02126908,0.13166709,0.043611668,-0.015083991,-0.06906993,-0.08808931,0.04280711,0.03405892,-0.006827795,-0.029881423,0.019430373,-0.0100737,0.028278274,-0.020737762,0.0484781,-0.0025975145,-0.008129597,0.13780311,0.026426837,0.012693253,0.04150644,-0.0021001906,0.10646815,-0.016060391,0.104480185,0.03309987,0.03537339,0.08996336,-8.18514e-33,0.061451275,-0.036415517,0.010600267,-0.009843239,0.04209034,-0.032475997,-0.0629236,-0.07939304,-0.0011385647,-0.039791994,-0.126938,-0.034934517,0.098810345,-0.041949168,-0.007916998,0.026136398,0.03757641,-0.058263812,-0.076355875,-0.018635523,-0.011715402,-0.0103815505,-0.009649037,-0.037338227,-0.043266866,-0.060982615,-0.059284747,0.036124125,-0.045099493,0.021906894,-0.031932436,-0.03524941,0.035620324,0.076233104,-0.011089194,-0.019264745,0.031252176,0.07461044,-0.036270224,-0.0036114994,0.007057996,0.027823238,0.016606638,0.07328486,-0.032289907,0.03741112,-0.0006354931,-0.12849832,-0.075570434,0.0021037068,0.02824329,-0.046279408,-0.09170137,-0.073581286,-0.008627906,-0.047411747,0.04930731,-0.065973796,-0.045315348,0.008798012,0.07650195,-0.05548844,-0.04936944,-0.014865811,0.014542159,-0.050749276,0.014610945,-0.017313909,0.026924342,0.03693481,0.11108824,0.06417152,-0.011767607,-0.0282801,-0.11557477,-0.073059306,-0.094718635,0.037079107,0.025071727,-0.06068433,0.040235296,-0.02155117,0.024608925,-0.050028246,-0.019992903,-0.024426444,0.048420776,0.03723266,0.009870232,0.07171077,0.019610293,0.06564412,-0.07059834,-0.04117956,-0.04018391,-4.080436e-08,0.065735765,-0.003725743,-0.024470156,0.013458938,0.040003076,-0.08020499,-0.03823392,0.023935378,-0.0076000392,0.013045971,-0.026200986,0.025012676,0.020403653,0.095342115,0.017070195,0.063388824,0.037987296,0.081024416,-0.024366558,0.014842176,0.05405889,0.033825766,-0.05592121,0.1028916,0.02988104,-0.03466398,-0.0323626,-0.021604499,0.0047549997,-0.019829249,-0.0015713141,-0.027587103,0.0036385017,-0.034416657,0.008291989,-0.027197432,-0.04695079,0.015037858,0.02088588,-0.12592092,0.07464192,-0.07969893,-0.07860823,-0.03401895,-0.019013163,-0.033549327,-0.031022219,-0.00617164,-0.05645518,0.118060544,-0.05684694,-0.07451008,0.048353277,-0.004041518,0.0660122,-0.0336446,0.06606748,-0.031878255,0.011636874,-0.014444673,0.016463686,0.094214946,0.04196646,-0.037818257} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.714608+00 2026-01-30 02:01:11.159435+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1906 google ChdDSUhNMG9nS0VJQ0FnSURXdjl2VHVnRRAB 1 t 1909 Go Karts Mar Menor unknown La verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo recomiendo para cumpleaños como para pasar una tarde divertida buen sitio y trato espectacular la verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo recomiendo para cumpleaños como para pasar una tarde divertida buen sitio y trato espectacular 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {O4.04} V+ I3 CR-N {} {"P1.01": "La verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo reco"} {-0.0028322106,0.004725747,-0.00376455,-0.04553363,-0.081283905,0.010564004,0.09558262,0.12290462,-0.025217349,0.009743718,0.06670695,-0.021770574,-0.09240679,-0.010149228,0.0049352306,-0.03898401,-0.0021210962,0.038740803,0.030364476,0.069592,0.09716851,-0.017004952,-0.085181735,0.108881876,-0.09404307,0.035050407,0.010877853,-0.043582626,-0.019575773,-0.14199,-0.057667453,0.09133354,0.016261678,-0.037446786,0.010074386,0.040440522,-0.022217492,-0.0644528,-0.013790494,0.050938677,0.016676603,-0.035821322,-0.051333763,-0.09832656,-0.01774206,-0.093075074,0.01161668,0.048643194,-0.003056497,0.0031123497,-0.11508944,-0.07456598,-0.015406834,0.087762825,-0.05864396,-0.017126063,-0.045356493,-0.029424936,0.015072931,0.002121591,-0.033559028,0.050981544,-0.0024096158,0.013287047,0.09180097,-0.036594886,0.05247708,-0.06925193,0.02146689,0.07472475,0.08996499,-0.05093762,0.007669455,0.010924231,-0.037432265,0.047411427,0.047003597,0.017601805,-0.028268449,-0.030147126,0.0016061133,0.0317092,0.010009932,-0.049897693,0.0007824064,0.054596726,-0.051597815,0.058345318,-0.015096059,0.0015460629,0.039191734,0.06614153,-0.040452395,-0.055375878,-0.019443948,0.027992422,-0.0053459657,-0.10850253,0.09284518,-0.024594644,0.05085133,0.045272518,0.04316279,-0.025125414,-0.08309842,-0.044543214,0.046185117,-0.13871554,-0.011991435,0.03411178,-0.061230347,-0.06102912,0.024163138,0.03106119,-0.055597324,0.04138137,-0.025799857,-0.08429203,0.017639127,-0.07196419,-0.0055509526,-0.042631578,0.036757343,-0.042472903,-0.0016138806,-0.051261183,0.02721402,8.573039e-33,-0.0071182726,-0.080843635,-0.004373333,0.020438604,0.025912309,0.037982773,-0.04511588,-0.10266855,-0.007383006,-0.044137035,-0.12850139,0.029692424,0.020375412,0.06010517,-0.056239896,-0.03555739,0.031488307,0.08130233,0.006356818,0.004859224,-0.082640566,0.013213531,-0.05106858,0.026008768,-0.026536306,0.15690602,-0.08234275,0.014533324,-0.02327277,0.059573922,0.0724717,0.06631137,-0.03875414,0.025450863,-0.017910076,-0.034935478,-0.031189684,0.021096872,0.008961145,0.040003248,0.036609095,0.0005110144,-0.021069843,0.02183252,-0.017879633,-0.06944136,0.051878087,-0.04325704,0.041669633,-0.014637745,-0.018869119,-0.052770186,-0.010912425,-0.090303995,0.03646438,0.029522536,-0.059946597,0.027669694,-0.043759994,0.03769723,0.020781161,0.036848325,0.028837832,-0.007995198,-0.026662683,-0.009839364,-0.050271325,0.018282779,0.07495593,0.018207574,-0.10304507,-0.04267477,0.0037919562,0.06700213,0.09422311,-0.01652174,-0.041255966,0.014578156,-0.047966447,0.032559298,-0.07895412,-0.08977071,0.046198677,0.004112173,0.061994337,0.087073535,0.06265114,0.043379184,-0.036267284,0.07690169,-0.026893202,0.071942836,-0.013827689,-0.062480774,0.064360924,-1.25626e-32,0.027577486,-0.0011322234,-0.00976126,-0.024961615,-0.049371757,0.037252635,-0.012097392,-0.04341825,-0.040159844,-0.07283167,-0.01641718,-0.0810775,0.07643847,-0.045033846,-0.04771203,0.089351416,-0.015187103,-0.08697708,-0.07828105,-0.059266273,-0.057732813,-0.074046455,0.0591181,0.012886925,-0.06468009,-0.025704782,-0.009811075,-0.021958522,-0.03384412,0.0068537514,-0.006780554,-0.0060565826,-0.084064215,0.031568754,-0.025970332,0.024986722,0.033726294,0.027871147,0.007905452,-0.01027352,-0.029678378,0.019373735,0.03063108,-0.040003534,0.015747827,-0.012271193,0.022627039,-0.09202819,-0.08271994,-0.02115595,0.07438671,-0.0038936655,0.034628596,0.0059247725,0.042228434,0.035528757,-0.08593568,-0.07026255,-0.08494683,0.011998971,0.033303883,-0.05487763,-0.030840522,-0.1122122,0.09242164,0.02967786,-0.033648692,-0.0007161224,0.09391066,0.033285838,0.07755782,-0.00076226966,-0.047685012,0.069142655,0.02366189,-0.011105009,-0.078136146,-0.05247882,-0.013053922,-0.021591634,-0.037802342,-0.011349335,-0.0031173145,-0.07283941,0.017061902,-0.065766044,-0.056058113,-0.011940856,-0.018393107,0.045458563,-0.05230991,-0.0047843396,-0.07244005,0.039608546,0.037264545,-5.2903882e-08,0.022842912,-0.05233215,-0.006051565,0.032428958,0.06254097,-0.027569257,-0.08944836,0.061623517,2.6710806e-05,0.03045897,-0.08182584,0.024547141,0.069604635,0.075400256,0.040194083,0.04265483,0.077506006,0.049240887,-0.030380776,-0.03883595,0.04733608,-0.06374519,-0.051653005,0.0018614101,0.038263794,0.042786703,0.009554544,0.043061785,-0.08708807,-0.00064562284,0.017823664,5.8953927e-05,0.040813576,-0.068852894,0.018117825,0.020755695,0.020367505,0.0009216652,-0.02676033,0.0009508217,0.078897975,0.06392426,-0.04058095,0.032208934,-0.043627687,-0.09767482,-0.00618888,0.06702211,-0.016467206,-0.028822731,-0.03288996,0.0345068,0.04361722,0.034331027,0.036025092,-0.030411547,0.09352859,0.0047059557,-0.025168816,0.060967475,0.00068629306,0.085666634,0.059744313,-0.08896309} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.735525+00 2026-01-30 02:01:11.164311+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1833 google ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB 1 t 1836 Go Karts Mar Menor unknown El mejor circuito de Karting en la zona sin ninguna duda. Desinfectan los karts y los cascos antes y después de cada uso. Perfecto para estar con amigos y familia en la terraza o en el porche. Desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas el mejor circuito de karting en la zona sin ninguna duda. desinfectan los karts y los cascos antes y después de cada uso. perfecto para estar con amigos y familia en la terraza o en el porche. desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"A1.05": "Desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas", "E1.04": "Perfecto para estar con amigos y familia en la terraza o en el porche.", "E3.04": "Desinfectan los karts y los cascos antes y después de cada uso.", "O1.02": "El mejor circuito de Karting en la zona sin ninguna duda."} {-0.024969136,0.0821757,-0.011747708,-0.024620801,-0.05677864,0.007587383,0.022933979,0.043377887,-0.013215721,0.029278897,0.09144867,-0.00704954,0.03217373,0.08831441,0.010167406,-0.011957273,-0.017958572,0.045811154,-0.01748371,0.0077370238,0.05528447,-0.012151472,-0.06139398,-0.007315268,-0.14322521,-0.0017696245,0.033082135,0.022865092,-0.03288521,-0.09317963,-0.124654315,0.069266096,0.0144865755,-0.010051727,-0.0030791112,-0.047178484,-0.03405732,-0.016013665,-0.012568667,0.020473678,-0.010056877,-0.084482096,0.0006797114,-0.100158066,0.024649043,-0.042701945,0.0154653285,0.017046034,-0.0068184608,-0.12914197,0.010064479,-0.036759343,0.09208248,0.00082566135,0.01683453,-0.0575619,-0.065387025,0.08709425,0.11136363,0.05038108,0.1153637,0.02006536,-0.02019569,0.033306282,0.0013533817,-0.13069439,-0.019508716,0.014108979,-0.056586377,0.011048572,0.094574414,-0.08441733,-0.038067453,-0.06423118,0.04269213,0.046353705,-0.0144381365,0.032064095,-0.028432509,-0.07360644,0.022094665,-0.046054892,0.02608229,-0.049163178,0.075144164,0.028848434,-0.015248964,0.038753495,0.031656902,-0.0066404347,-0.07094308,0.05140412,-0.10071312,-0.05554415,-0.10164077,-0.026997034,-0.010673775,-0.081319645,-0.033451274,0.03364166,0.105955325,0.04707278,0.07728431,0.025553413,-0.038346805,0.08315998,0.042776972,-0.025872108,-0.0015106587,0.032939143,-0.00395539,-0.019167453,-0.04950862,-0.06478098,-0.08714626,-0.025296612,-0.05781081,0.012914482,-0.005539853,-0.037162684,-0.015799189,-0.06095741,-0.03600115,-0.026283078,0.03750925,-0.007862912,0.11696025,1.1231131e-32,-0.10972931,-0.0018867403,-0.04286367,-0.028461039,0.12590194,-0.03494433,-0.023354538,-0.021892818,-0.048400473,-0.0528035,0.008944568,0.074081495,-0.008722139,-0.06321062,0.09047341,0.025591807,-0.04699276,-0.11474304,0.056157358,0.05739992,0.09066566,-0.04818926,-0.015970815,0.05980786,-0.0020725112,0.09361924,0.054159094,-0.035368197,-0.049967837,0.029772833,0.0132901445,0.054418236,-0.007491556,0.022244819,-0.03815433,0.005857245,0.031213755,0.029864445,-0.025027324,-0.074494295,-0.06417923,-0.07841599,-0.039945345,0.008159883,-0.05498134,0.032236047,0.08266462,-0.032624923,0.06719915,0.046876397,-0.10849088,-0.042808082,-0.069625035,-0.016339235,0.0022459624,0.06566161,-0.021195486,0.02935993,0.027985556,-0.029509356,-0.008742352,0.0538848,-0.032326,-0.037877385,-0.069963336,-0.05511971,0.010288941,-0.056661826,0.07641001,-0.026681133,-0.054863058,0.025869826,0.005676202,-0.018971717,0.03261758,-0.0045853304,-0.0612434,0.043601137,-0.03516709,0.010340189,-0.09199962,-0.059771474,0.020827519,0.032092348,0.08690277,-0.010001299,0.03140637,0.041169852,-0.0060916576,0.083639555,-0.010867432,0.05973565,0.044845592,0.010280158,0.0820977,-1.3415932e-32,-0.02727199,0.031545747,0.0636673,0.020678343,0.024900012,0.0016693848,0.008530444,-0.09199908,-0.048493773,-0.053379722,-0.104283035,-0.0060311165,0.05819418,0.036831345,0.007951268,0.012562097,-0.013713788,-0.02710889,-0.05688911,-0.011376387,-0.007295344,0.05990777,-0.023962285,0.010020887,-0.07912669,-0.018103013,0.027363487,0.02611422,-0.10585386,0.04906354,0.008378807,-0.03477362,-0.01818217,0.010801148,-0.086745806,-0.026293863,0.0753852,0.036128335,-0.07099151,-0.008351852,0.060496718,0.035406765,-0.015710654,0.025945567,-0.03432236,0.03492653,0.029549193,-0.062451452,-0.04960462,0.0025502131,0.09718515,0.014091382,-0.0840044,-0.025370238,0.045542613,0.0029565196,0.09261132,-0.028492562,-0.10705896,-0.034436136,0.034254123,-0.02984982,-0.04757928,-0.009525151,0.03635196,-0.064149484,-0.013072873,0.054559156,0.049968805,0.027925493,0.0068970006,0.092675276,-0.0299989,-0.02253865,-0.018914718,-0.001819363,-0.03012093,0.014140237,0.040337786,-0.07638601,0.008478797,-0.058214407,-0.017268747,-0.031846296,0.029524377,-0.037673227,-0.028432494,0.045413207,0.064337604,-0.020768072,-0.014207024,0.09940172,-0.0543911,0.011245324,-0.10648217,-5.490445e-08,-0.016466582,0.004536861,-0.093474984,-0.032273497,0.012801636,-0.07358376,0.048535764,0.031185955,-0.027414102,0.041358136,0.018372642,0.0034748814,0.025456313,0.064518146,0.02733075,0.090871096,0.092368126,0.08301954,-0.006629819,0.030009093,0.031938795,-0.030837148,-0.08187581,0.060608443,0.018195333,-0.029250216,-0.02721217,-0.010598439,-0.01444976,-0.10698291,-0.020972168,0.007488456,-0.00084167894,-0.006696233,0.020802254,-0.0037046468,-0.051816765,0.03036106,0.0097848745,-0.0390192,0.02135113,-0.037266266,-0.031718433,-0.0074173887,-0.09020238,-0.0053872615,-0.024680087,-0.043272708,0.022982359,0.06283281,-0.122380465,-0.09111747,0.012098243,0.014122095,0.091858804,0.0070494944,0.0402057,0.00075803115,-0.03698389,-0.016474226,0.0011645196,0.09750135,0.0020140135,-0.024784476} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:50.328553+00 2026-01-30 02:01:10.889368+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1919 google ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB 1 t 1922 Go Karts Mar Menor unknown Uno de los mejores circuitos de Karts de Murcia. Buenos coches y muchas curvas para pasar un buen rato. Además el precio es bastante asequible. uno de los mejores circuitos de karts de murcia. buenos coches y muchas curvas para pasar un buen rato. además el precio es bastante asequible. 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.03 {E1.03} V+ I3 CR-B {} {"O2.03": "Uno de los mejores circuitos de Karts de Murcia. Buenos coches y muchas curvas para pasar un buen ra", "V1.01": "Además el precio es bastante asequible."} {-0.026844326,0.019384513,-0.018509338,-0.07207532,-0.11463551,-0.0107494835,0.018268684,0.048942823,0.02450964,0.04271541,0.06955116,-0.07389362,-0.053888593,0.0522578,0.01347521,-0.0009349862,-0.016684609,0.05922864,0.022350628,-0.04620386,0.072640695,-0.043379154,-0.05888787,0.0816246,-0.107242726,-0.05623451,0.01043094,-0.04786159,-0.04879432,-0.115952045,-0.09628792,0.00350647,0.055235818,-0.05025787,-0.061609585,0.0069079446,-0.009926176,-0.013414633,-0.019212777,0.05115051,-0.030927408,-0.06623212,-0.023757024,-0.021394547,-0.027822675,-0.056840576,0.0143441195,0.0010395359,-0.0015374925,-0.06371639,-0.03634873,-0.022671368,0.016935878,0.0014513562,0.0011877167,-0.05423842,-0.074067265,0.04762451,0.1342471,0.0569969,0.040905066,0.03316524,-0.039981708,0.06455899,-0.03702237,-0.03447668,-0.014868085,0.028115401,-0.06170779,0.035763748,0.116473526,-0.12998699,0.038386803,-0.033643533,0.06201935,0.01371319,-0.052269556,0.023319587,-0.03662784,-0.043387625,0.043236792,0.0012450349,-0.08748257,-0.060038675,0.057790104,0.012956618,0.0023491364,0.019804854,0.006099054,-0.014974965,-0.013546054,0.049568404,-0.07644321,-0.06459191,0.009749916,0.008383251,0.03471005,-0.056475364,0.03255419,0.028263757,0.035833083,0.019056845,0.038219843,0.05858301,-0.07945887,0.0048399726,0.0014605422,-0.017785504,0.052679487,0.026773458,-0.09005406,0.041275058,-0.072885275,-0.0046546967,-0.024893805,-0.028849045,0.016904403,-0.03603152,0.06716464,-0.013483254,0.030189127,-0.017495664,-0.054785598,0.01975251,0.009807048,-0.033525247,0.075473994,8.467761e-33,-0.075313345,-0.018350894,-0.024727859,0.016787753,0.0017093117,-0.061408125,-0.077116534,-0.055851616,0.0037478243,-0.024651805,-0.019500675,0.10334944,-0.017863307,0.041078776,0.06934884,-0.020064952,0.022819562,-0.09275367,0.14855269,-0.010092383,-0.036572516,-0.022280162,-0.011638623,0.08785199,0.05220738,0.035169154,0.018139565,-0.053334754,-0.0716788,0.050761145,0.028582644,0.041182544,-0.004553137,-0.010687824,-0.13988492,0.019031042,-0.010436456,0.004291312,-0.023024095,-0.01881263,-0.014115468,-0.049438752,-0.04383202,0.027801845,-0.0059415083,-0.056423657,-0.021842677,0.030691959,0.07054483,0.07319112,-0.07695087,-0.014770809,-0.01948036,-0.051177625,0.05694699,0.035718136,0.0019402968,0.0018886102,-0.054636132,0.003168565,-0.00616771,0.065292425,-0.029738493,-0.06572314,-0.038896576,-0.01327717,-0.011970384,-0.032903533,0.09332382,-0.054179776,-0.11203906,-0.02510639,-0.04978404,-0.043801956,-0.0034761215,0.03165543,-0.04184743,0.08936223,-0.016063822,0.029671175,-0.08978884,0.029374935,0.0319519,0.027859401,0.13373381,0.06687586,0.035231233,0.046593644,0.010965432,0.12802799,-0.04285194,0.10549197,0.035198547,0.042409677,0.059984095,-9.143444e-33,-0.0023053847,0.03304264,0.07559216,0.12197759,-0.055018123,0.04332192,-0.011494755,-0.056379966,-0.025944773,0.0052171047,-0.07494016,-0.051198687,0.046837687,-0.051587272,0.03716482,0.049523205,0.038665067,-0.029432602,-0.026133986,-0.069798656,-0.014273472,0.10114983,-0.02238657,-0.06646721,-0.033860866,-0.040559717,-0.032921,0.038368963,-0.11843308,-0.023315173,0.014930035,-0.017623229,0.026901906,0.08416726,-0.043973356,0.019025143,0.04316133,0.089042276,-0.05955723,0.017760552,0.036148358,0.075260825,0.026552433,-0.0041493494,-0.05882342,0.008782709,0.06024801,-0.11185938,5.3232874e-05,-0.023796307,0.10010385,-0.020260908,-0.046304338,-0.08793934,0.02326714,-4.3457592e-05,-0.030939143,-0.037339766,-0.026788736,-0.101169884,0.078012235,-0.018107684,-0.036691666,-0.048746552,0.07109438,-0.020985058,-0.031554684,0.06701354,0.06684048,0.011574043,0.14236157,0.06328528,-0.0109598525,-0.012416589,-0.03324992,-0.010341909,-0.05702533,0.02467136,0.023851056,-0.0017824679,-0.017836468,0.021258093,-0.004608495,-0.03953467,0.012127007,-0.016348578,-0.006194097,0.020572532,0.08392047,0.03453881,0.010190904,0.08549446,-0.04049102,-0.043330863,0.027685605,-4.1871296e-08,0.021324102,-0.04591884,-0.08740531,0.044795062,0.022703094,-0.057639822,0.035521653,-0.004279756,-0.06343715,0.049569212,-0.029871391,0.002692872,0.054890588,0.052594356,0.01182616,0.075427614,0.059619363,0.12367722,-0.0027541262,0.041329667,0.024676045,0.01841199,-0.048365295,0.08921139,0.008141043,-0.07908922,-0.03458817,0.04115202,-0.0042286897,0.0038512358,-0.028249169,-0.0045909993,-0.01006207,-0.023144811,0.02766191,-0.027489083,-0.070541084,0.041067768,-0.00015180353,0.01167552,0.040993653,-0.06434802,-0.052084144,-0.0015975108,-0.040042087,-0.050230652,-0.08447296,0.02095754,-0.045904532,0.041780233,-0.057268206,0.006535703,0.058737695,0.03916974,0.03216472,-0.038315676,0.069423206,-0.045038402,-0.030777914,-0.031780347,0.017956587,0.09048107,0.055107217,-0.059462678} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.959671+00 2026-01-30 02:01:11.230488+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1916 google ChZDSUhNMG9nS0VJQ0FnSUM3dHBlYlRnEAE 1 t 1919 Go Karts Mar Menor unknown Mon cœur balance entre le Go Karts Mar Menor et celui de Ciudad Quesada.\nVraiment très bon moment sur place. mon cœur balance entre le go karts mar menor et celui de ciudad quesada. vraiment très bon moment sur place. 5 2025-01-30 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-S {} {"V4.03": "Mon cœur balance entre le Go Karts Mar Menor et celui de Ciudad Quesada. Vraiment très bon moment su"} {0.008613827,0.062905855,-0.03367398,-0.049064532,-0.0876592,0.04615158,-0.027440945,0.045050234,0.094679795,-0.00050734443,0.03263332,-0.055956367,0.007511416,-0.048404694,-0.009446135,-0.06705553,-0.08930633,0.06248215,0.019072132,0.069523245,0.043273535,-0.08995763,-0.040956195,0.06142845,-0.0954717,0.058718387,-0.017837523,-0.035375595,0.034435075,0.0046749897,-0.018493358,0.05084411,0.012359025,-0.03119401,-0.019928869,-0.010924662,-0.000946879,-0.07540807,0.041946467,-0.021827009,-0.057830475,0.01166375,-0.0035871316,0.024563251,-0.0129079595,0.049809445,0.015234061,0.028992435,-0.066444255,0.017442895,0.08676919,-0.0071637593,-0.0028705893,-0.024968423,-0.009013806,0.028638337,0.005224741,-0.025026944,0.1449656,-0.0014942741,0.06706372,0.0020443024,-0.027405025,0.022246405,-0.066888236,-0.11882844,0.031532805,0.0079977475,-0.06897111,0.07839025,0.1261273,-0.093386956,-0.045519825,0.006616994,0.07420436,0.07777186,-0.05252631,-0.054025073,-0.039717402,-0.0709626,0.013933155,-0.030781372,0.0136159295,0.027156666,5.289051e-05,-0.05628166,-0.011274748,0.059101846,0.086440355,-0.013612001,-0.029410465,0.04951418,-0.07108263,-0.026858333,-0.004659618,0.011427377,-0.013007546,-0.026492419,0.044315122,-0.022147369,0.086545795,0.004182604,0.03146996,0.029851515,-0.02286071,0.021037813,-0.012013596,-0.061621323,0.043976903,0.03720145,-0.04582964,0.007388883,-0.0719807,-0.08368187,-0.060884338,0.02051283,0.011413503,-0.08226207,-0.057622906,-0.06718395,0.025931407,-0.010330439,-0.09874282,-0.027419494,0.06865455,-0.041781068,0.051507574,3.3611035e-33,-0.09211395,-0.040067136,-0.0025325243,0.011225309,0.013383816,-0.04990247,-0.08698258,-0.0058308453,0.015670413,-0.033160135,0.059266992,0.046354588,-0.0025739574,-0.05977479,-0.02311708,-0.006948042,0.002130301,-0.04875173,0.13467064,-0.052831374,-0.05790192,-0.04191764,0.018279113,0.031769212,0.081603505,-0.019929292,-0.031116704,-0.04734578,-0.07613504,0.006165606,0.00062523433,-0.042219523,-0.040908117,-0.010507231,-0.0036332249,0.004181816,0.028929416,0.09372693,-0.04531093,0.030577239,0.013300958,-0.030442731,-0.022548344,-0.030046484,0.006043348,0.06693035,0.024066413,0.016840866,0.038774002,0.070314616,-0.036244903,-0.028879507,-0.12947896,0.05002457,-0.031911593,0.049813494,-0.0865109,0.03719704,-0.05551951,-0.010002076,0.037924014,0.0011926243,0.017622076,-0.008579526,0.014499248,0.027051548,0.018575044,-0.018113004,0.0716996,0.07154351,-0.061887495,0.024766127,0.033048537,0.0032669595,0.009243738,0.09201663,-0.07731683,0.0985757,-0.033034477,0.08553247,-0.06405767,-0.049839452,-0.023475576,0.045495052,0.1008093,0.029182527,0.033686377,-0.05945741,-0.034087844,0.08148336,0.0065244082,-0.053720947,0.083725646,0.03925573,0.005528974,-5.984951e-33,0.044182133,-0.011717019,0.0050324355,0.11448979,0.026000088,0.021363214,-0.046064984,-0.021817528,-0.05882186,-0.031592913,-0.038896527,-0.03286677,0.027702551,0.031188961,-0.025479527,0.06740945,0.049126834,0.03439173,-0.061672036,0.034030885,-0.05436123,-0.062073886,0.00023927202,-0.030744934,0.014107377,0.0075035477,0.034851465,-0.042039227,-0.049334947,0.013297944,-0.015050589,-0.063251615,0.03847677,0.012302856,0.07078124,0.032186057,0.057049364,0.09895655,0.064594515,0.12067353,-0.009906007,0.1462136,0.006626769,0.06002679,0.018643223,0.026786562,-0.0060797073,-0.07443007,-0.011670301,0.0016144245,0.0636016,0.013379692,-0.07853408,-0.024202686,0.07211344,0.044038225,0.06307203,0.037561662,-0.11681453,-0.019004427,-0.00968911,0.08183137,-0.10028315,-0.089135386,0.029812256,0.009802324,-0.08246208,-0.036104385,-0.005644933,0.022950679,0.047826257,-0.07045621,0.036836464,0.044330563,-0.058871325,-0.021299548,0.09879326,0.03994677,0.042862236,0.037852567,-0.0461253,-0.026528986,0.005821378,0.0005470603,-0.018282441,0.03715204,-0.042488363,-0.0669446,0.029028347,0.013838395,-0.0064837746,0.060552116,-0.013726417,-0.0100265555,0.011883896,-2.8943331e-08,-0.0021773984,-0.024155261,-0.0808324,0.036763117,0.06496485,-0.06110723,-0.038684268,-0.029572515,-0.046303548,0.12927301,-0.01241298,0.001189989,-0.099783525,0.0066964035,-0.05524205,0.03563485,-0.059046194,-0.0004998034,-0.003563056,-0.091561906,-0.036165077,-0.053291425,-0.035079975,-0.078336515,-0.05626732,-0.028507002,-0.012619377,-0.04600639,0.060268167,-0.080214575,0.029906126,0.09501197,-0.10996612,-0.08113593,0.015655594,-0.044844013,0.047203828,0.040336963,0.060395565,0.07704045,0.046462696,0.05146589,-0.027581265,-0.040336877,0.039737243,-0.024226228,0.012561868,0.06606061,0.032576747,0.035355855,-0.08586119,-0.0009870352,0.031495932,0.07428959,0.0014432003,-0.004846879,-0.023889413,-0.002612999,-0.06923234,-0.041194417,-0.0053091967,0.04006917,0.01621597,-0.0686487} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.927361+00 2026-01-30 02:01:11.216569+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1921 google ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB 1 t 1924 Go Karts Mar Menor unknown Buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles porque suele haber menos gente alli y las esperas son mas cortas. Los miercoles (no verano) también tienen una oferta de 2x1 en los karts buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles porque suele haber menos gente alli y las esperas son mas cortas. los miercoles (no verano) también tienen una oferta de 2x1 en los karts 5 2020-02-01 01:52:39.833374+00 es v5.1 J1.03 {A1.01} V+ I2 CR-N {} {"J1.03": "Buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles", "V1.01": "Los miercoles (no verano) también tienen una oferta de 2x1 en los karts"} {0.03310738,0.023398045,-0.020836813,0.005218002,-0.031307086,-0.02896587,0.034539584,0.042880543,0.0076939217,0.022582293,0.08754184,0.029896246,-0.013912854,-0.032428674,0.043562744,0.058711775,-0.06733982,0.061114594,0.01822049,0.0050337897,0.03823274,-0.05674,-0.11841709,0.08972819,-0.100802995,-0.011175353,0.0060946047,0.0972554,-0.047644753,-0.102326095,-0.005705324,0.0568145,0.0114515815,0.04205139,0.020505425,-0.01401228,0.09493704,-0.05438682,-0.047119163,0.044554107,-0.038793262,-0.065176,-0.017524894,-0.050894134,-0.03330894,-0.084069505,-0.01653408,0.06628,0.042535838,0.00078435254,-0.044074576,-0.0074902214,-0.058001462,0.023153527,-0.043735076,-0.045878507,-0.051691994,0.0198308,0.09538954,0.061036967,0.03309602,0.03742236,-0.03443378,0.049693555,-0.0014241933,-0.040982738,0.012611209,-0.005589139,-0.14104322,0.07780996,0.07701229,-0.020941105,-0.005919665,0.036943596,-0.025523944,0.0176727,0.015895832,-0.0025097781,-0.04980003,-0.005373671,-0.010085609,-0.018755598,0.042022657,-0.109515004,-0.058099207,-0.011173405,-0.00213181,0.01533685,0.10372055,0.051497903,-0.021182107,0.051000897,-0.016746117,-0.013593842,-0.004238694,0.008450349,0.020903036,-0.0701725,0.012082708,-0.018759772,0.09342464,0.037466023,0.054112505,0.016547801,-0.041051142,0.0035845218,-0.03516659,-0.06633645,0.009766462,-0.035810865,-0.021771701,-0.018717542,-0.038200844,-0.00888777,-0.10518926,-0.008096603,-0.026317578,-0.046513278,-0.0015897041,-0.086992234,0.08857549,0.009027702,-0.052721422,-0.047159474,-0.0048693973,-0.0592804,0.019432371,1.553787e-32,-0.07570513,0.05056657,0.012830454,0.07409104,0.038009737,-0.051959623,-0.010833461,-0.017506765,-0.030741632,1.0232893e-05,-0.038330846,0.040778663,0.03939916,-0.023601891,0.06639498,0.04732779,0.014849601,-0.031733025,0.038260944,0.055566646,-0.040709723,-0.008546694,0.026447758,0.00590947,-0.052975804,0.057293404,0.038840298,-0.07990584,-0.030404445,0.02031379,-0.007441119,-0.01951956,0.004918899,0.050929464,-0.01976823,-0.04432917,0.04458792,0.07154866,-0.028846491,0.024688372,-0.014166298,0.026352873,0.026542513,0.037469372,0.0018470808,-0.07714159,0.061926823,-0.0049086264,-0.01273874,0.021107133,-0.09468607,-0.022319157,-0.035353635,-0.08011312,0.060780674,-0.014988204,-0.05294724,0.06328556,-0.019868026,-0.05095324,0.072207846,-0.051844783,0.0632045,-0.04022434,-0.050624616,-0.03337468,0.026358873,-0.028966602,0.12163577,0.0890075,-0.006014748,-0.01601934,0.07463975,-0.007932961,0.092535205,-0.0053612026,-0.0007080536,0.044156183,0.021496933,0.0061395136,-0.09262738,-0.010512787,0.032616638,0.0870748,0.057353325,0.005770075,-0.007933302,0.049110226,-0.025909495,0.10305995,-0.029551275,0.09393845,0.030533733,-0.113708034,0.044396605,-1.5370466e-32,0.028491538,0.04590447,0.045188364,0.0064350003,-0.049203027,0.00857854,-0.024956176,0.026460595,-0.0015856302,-0.055453748,-0.06935439,-0.090225756,0.065359995,-0.050351907,-0.02152784,0.08200943,0.06866754,-0.065245956,-0.06851161,-0.06891242,-0.006178092,0.035841692,0.07688889,0.023591876,-0.0004200716,-0.08479824,0.02333069,-0.04842872,-0.09018872,0.019699713,0.07278655,-0.13990207,0.045870114,0.044554126,-0.04444966,0.023929343,0.049448855,0.04422231,0.01188571,0.06704605,0.021645252,0.01460059,-0.06261445,0.012554409,-0.06808149,-0.02659206,0.005395079,-0.12972552,-0.011415056,-0.06517318,0.032372177,-0.0012867048,-0.122310646,-0.06076761,-0.02141919,-0.06460973,-0.03623656,-0.03884346,-0.09304679,-0.0020186428,0.0562061,0.025234425,0.008967115,-0.039533805,0.07670196,-0.0063582202,-0.03052755,-0.019493962,-0.0076186615,0.09337965,0.13258389,-0.026734183,-0.09152506,0.0049096877,-0.0130163925,-0.032842845,-0.08069264,0.011910196,-0.026452215,-0.025997015,0.0016716002,-0.06963221,-0.004555674,0.0070195217,0.0104844,0.012793015,0.03176845,0.12086892,0.020057278,-0.0036125882,0.08588954,0.007711506,-0.016488323,0.0019024877,-0.04666823,-5.2875013e-08,0.034737512,-0.088037536,-0.11095287,0.024555627,-0.054024428,0.02393365,-0.012520512,0.04271942,0.0057642525,0.12165803,-0.061490744,-0.0067952196,0.019549,0.057376187,0.014158562,0.04029956,0.106689684,0.06968886,-0.043631766,-0.05215389,0.07737232,-0.015953707,-0.062508695,0.015140291,0.038919516,0.025805067,-0.09156179,-0.038400006,0.06897625,-0.029347353,-0.008777897,-0.0051636877,-0.064047016,-0.052369002,0.0005935305,-0.05045033,-0.032434866,0.057275068,-0.025674313,-0.042387396,0.060713667,0.02993735,-0.08681057,0.0015850872,-0.10619038,-0.029913517,-0.031591557,-0.0138178235,-0.053733416,0.013688949,-0.041921843,-0.058226187,0.07016616,0.016957175,0.05244023,-0.026584258,0.053547606,0.04008605,0.017388007,-0.037436906,0.03168226,0.09871088,-0.008570358,-0.042269062} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.985954+00 2026-01-30 02:01:11.240898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1922 google ChZDSUhNMG9nS0VJQ0FnSURNMFBfRk93EAE 1 t 1925 Go Karts Mar Menor unknown Esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. Echamos una tarde bastante divertida. Los karts estan bien y el circuito es aceptable. Volvería a ir. esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. echamos una tarde bastante divertida. los karts estan bien y el circuito es aceptable. volvería a ir. 4 2020-02-01 01:52:39.833374+00 es v5.1 O2.03 {V4.03} V+ I2 CR-S {} {"O2.03": "Esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. Echamos una tarde b"} {-0.050408013,0.030315788,0.017067363,-0.044935375,-0.09146729,0.031346302,0.086030856,0.047751054,-0.0066606947,0.015547731,0.057872966,0.020784836,-0.046215996,0.019351428,0.03871362,0.030477848,0.011792634,0.054072876,0.01700435,-0.021062797,0.07271516,-0.015999481,-0.12138757,0.0355635,-0.06338079,0.0035121085,0.03335069,0.0102323685,-0.06680237,-0.15187743,-0.11248022,0.037799396,-0.008805294,-0.013676358,-0.07423261,-0.01970026,-0.08844755,0.0058535575,-0.01643186,0.035564333,-0.038702127,-0.095728524,-0.034383968,-0.070122354,0.030773032,-0.08673821,-0.04618202,-0.032862823,0.054523043,-0.050448857,-0.024247985,-0.022065954,0.051541295,-0.0110065555,0.011007821,-0.0328772,-0.06316155,0.064965576,0.13724293,0.057030465,0.07309377,0.03358963,-0.05813617,0.011109752,-0.026688391,-0.08567205,0.078343876,-0.008913517,-0.08386764,0.06654747,0.09836087,-0.033112317,-0.03586116,-0.006251414,0.10022198,-0.004389488,-0.035559606,0.01029405,-0.028796349,4.6474374e-06,0.03913839,-0.05712932,-0.06929533,-0.090912595,0.014407427,0.0069531747,-0.037044022,0.015320373,0.046709895,-0.0029303692,-0.033320375,0.019249324,-0.033711437,-0.0782805,0.03267032,-0.05327591,0.05596585,-0.07527221,-0.051050857,0.060912732,0.06744556,0.07615158,-0.006434759,0.009166203,-0.029052587,0.033248886,0.04943115,0.020849125,0.0068249526,-0.031150062,-0.030775292,0.010550434,-0.05312399,-0.07485943,-0.060938455,0.050647456,-0.107699834,-0.03831251,-0.03207251,-0.010483782,0.030076882,0.032578025,-0.046630412,0.08352258,0.026917476,-0.039086178,0.07485616,8.2358095e-33,-0.028151007,0.039780363,0.0057034343,0.018418726,0.0043543354,-0.06121624,-0.06088973,-0.04957039,-0.037023764,-0.07599973,-0.038077142,0.06443169,-0.008331084,0.06798818,0.086169355,0.013881578,-0.03431989,-0.07722325,0.08366156,0.013049667,-0.0021840374,-0.07564508,-0.03446527,0.06566756,-0.061229557,0.034154594,0.06843231,-0.03392285,-0.09943988,0.088785306,-0.07935562,0.08926738,-0.01603172,0.02465707,-0.052153647,0.05554202,-0.020287009,0.021561312,0.021908918,-0.027995054,0.021294968,0.051860847,-0.06891301,0.004736969,-0.047552478,-0.028869689,0.034183633,0.06715601,0.09727036,0.040729795,-0.07009625,-0.053381514,-0.01156855,-0.020685392,0.053597696,0.06127144,-0.011823401,0.08120097,0.033312522,0.035463486,0.05664612,0.026136575,-0.039882816,-0.021278895,-0.1533644,0.06386717,-0.010837737,-0.054329436,0.07503301,-0.07410381,-0.11947763,-0.022022672,0.003273817,0.0023589034,0.0630651,-0.021888228,-0.022352716,0.06786402,0.011428226,-0.011442113,-0.034729913,-0.021096412,0.039466072,0.029732399,0.04137517,0.082759,0.023992004,0.041855395,-0.017858556,0.14955397,-0.009951312,0.08404884,0.050124425,-0.011828995,0.06076776,-9.7919054e-33,0.0072863153,0.035766184,0.06380696,0.046875305,-0.014337476,0.053398445,0.046124134,0.000430126,-0.03574558,-0.044237316,-0.01784367,0.01902651,0.030508908,-0.061765555,-0.024488589,-0.035116713,-0.01363792,-0.05460266,-0.019246897,0.00309489,0.0069561265,0.035362937,0.031983208,-0.04604892,-0.05241004,-0.028387591,-0.10808816,0.07662456,-0.0740476,0.014964849,0.055125717,-0.06558798,-0.012941392,0.04219956,-0.070433706,0.05055627,0.07514674,0.08850049,-0.09056686,0.094214074,-0.018931152,0.052942105,-0.016779078,0.0060345302,-0.0009838006,0.034287132,0.08489514,-0.13258223,-0.004649992,-0.057851594,0.0340709,0.0056252666,-0.034552887,0.007784892,-0.019490698,-0.0028368547,-0.023246614,-0.029724013,-0.029587405,-0.026884552,0.023004392,0.0098102605,0.045656882,-0.050114226,0.122682,-0.028905353,-0.029687352,0.02771719,0.036204726,-0.023088418,0.0923834,0.022320813,-0.0012662617,-0.045126624,0.042025357,-0.033509318,-0.09562571,-0.002577683,-0.050441455,-0.06416897,0.022524308,-0.041605826,-0.042034626,-0.016520584,-0.005495376,0.007075313,-0.008275039,0.031879503,0.03854954,-0.0010837391,0.019802185,0.032284193,-0.04779904,-0.0348002,0.031658426,-4.0503892e-08,0.02307056,0.014694286,-0.07687738,0.0065423893,0.0032153698,-0.02646417,-0.021311816,0.0080204345,-0.005453551,0.014906301,0.0048840195,0.04247406,0.0436885,0.030241216,0.009930026,0.020983478,0.035910983,0.17879552,-0.010514686,0.048938144,0.045147646,-0.009720468,0.004579124,-0.03590909,0.020305887,-0.010289618,-0.018462261,0.05390669,0.00019611376,-0.013756218,-0.033347815,0.011225513,-0.012093859,-0.06712165,-0.007946662,-0.00666789,-0.041002568,0.031012831,0.017647846,-0.04565058,0.03466213,-0.038613357,-0.12828942,0.038858335,-0.046536226,-0.024904272,0.00066955417,-0.03446789,-0.054853857,0.0074761063,-0.07857754,-0.030965626,0.042361565,-0.005523367,0.073990315,-0.026654042,0.028439175,-0.04881789,-0.046648823,-0.08852444,0.062397357,0.061033733,-0.008826146,-0.035065394} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.997669+00 2026-01-30 02:01:11.24443+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1923 google ChdDSUhNMG9nS0VJQ0FnTUNnOUpyWjR3RRAB 1 t 1926 Go Karts Mar Menor unknown Increíble experiencia, y un muy buen trato.\nVolveré más veces. increíble experiencia, y un muy buen trato. volveré más veces. 5 2025-03-06 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Increíble experiencia, y un muy buen trato. Volveré más veces."} {-0.00801058,0.062656865,-0.013539961,0.004789557,-0.0666037,0.007424921,0.09213077,0.020956315,-0.023354761,-0.018511295,0.09923462,-0.018650532,-0.026625315,-0.020557921,-0.08351962,-0.036826096,-0.035877943,0.057770446,-0.029317174,0.021482999,0.08739217,-0.061978277,0.011417189,0.044526484,0.0058358945,-0.056914955,-0.012881927,0.051228408,-0.0033941255,-0.07445389,0.05236668,0.029977662,0.017482227,-0.061739717,0.039748862,0.0028081108,0.026364276,0.014547337,0.030274343,0.030151058,-0.098808266,-0.02901743,-0.04222914,-0.07487489,-0.026180556,-0.08484719,0.052196007,0.057502687,-0.055064816,0.023211267,-0.04856278,0.030035075,-0.0063201627,0.017504767,0.01602977,-0.0053084274,0.014842568,-0.028057232,0.017033845,-0.045409016,-0.018221607,0.06901216,-0.019669563,0.024560543,-0.013788936,0.011435988,0.011591306,0.0161036,-0.028099429,0.04098978,0.13364218,-0.11584537,-0.018476512,0.031964827,-0.04209083,0.06886933,0.008753039,-0.0014512219,-0.007305859,0.01024741,-0.006980537,0.0351462,-0.003973976,-0.0175013,0.019955838,-0.07366861,0.024799932,-0.08960509,-0.048100196,0.010976923,-0.07054534,0.020426622,-0.09232296,0.0055854265,0.010453029,0.031429645,-0.06929964,-0.06745651,0.003454408,0.03911584,-0.03232993,0.07817536,0.14266732,0.14236915,-0.060203075,-0.0002509692,0.055734657,-0.0988748,0.016304027,0.038235266,-0.04311268,-0.055860847,-0.08276966,-0.020015264,0.016074598,0.007348305,0.012218072,0.026857223,-0.040769238,-0.0943702,0.07126425,0.07529336,-0.050724253,-0.021733932,0.020370055,-0.05980951,0.06646113,3.9060065e-33,0.0023487087,-0.10391589,-0.009135374,0.055202365,0.026421724,0.03176455,-0.07546022,-0.017104767,-0.0091442615,-0.032019515,-0.030681793,0.10423233,0.042527284,0.0016615121,0.031296924,0.04131377,0.08587107,0.017871227,0.06444167,-0.047628265,-0.044530004,0.0005555564,-0.03744205,0.006850931,-0.0022640561,-0.006519172,-0.0028012749,-0.033747777,0.023969043,0.045075722,0.09047663,0.040066496,-0.043186795,-0.10105688,-0.021694308,-0.04644455,-0.03093917,0.06888345,0.028516732,-0.020994902,0.0045923013,0.042313855,0.05566638,-0.04754893,0.021378139,-0.012719067,0.14474396,-0.017592682,0.013208135,0.057134423,-0.009667214,-0.0973571,-0.0265926,0.0004925863,0.028383186,0.014647801,-0.0345659,0.105289124,-0.017524421,-0.021414706,0.0354902,0.072695285,0.01698965,-0.02407327,-0.032187086,-0.054265805,0.022919318,0.0014821917,0.074329086,0.0260391,-0.12636414,0.055707242,-0.041893844,-0.016686369,-0.013559224,-0.07419606,-0.044819385,-0.08522559,0.019321874,-0.008234317,-0.14617482,-0.02367128,0.033511125,-0.011555164,0.039405312,0.0706385,-0.0057883463,0.0035054625,0.00025881812,0.094075814,-0.0010019261,0.0452185,0.020757707,0.027085831,-0.011736958,-4.036463e-33,0.02760955,-0.023780666,-0.0067826947,0.062046908,0.0043959706,0.054832194,-0.11899356,0.023307372,-0.057819217,-0.053441018,-0.07461492,-0.12789379,0.116401546,0.015070606,-0.025948578,0.027712554,-0.0030761792,-0.014605407,-0.07176407,-0.09886993,0.041933883,0.048508104,0.053838756,-0.065379545,-0.025385581,0.009310681,0.03553973,0.03328806,-0.029945314,-0.022791963,0.041408733,0.055129472,-0.063087426,0.01964918,0.023616996,0.09934947,0.038009793,0.054228228,0.017371448,0.0010259711,-0.037455544,0.08451513,-0.016711105,0.03389962,-0.0013305476,0.054188702,0.042451274,-0.12284181,-0.0022593208,-0.060651395,0.07300047,0.0026969602,-0.009644687,-0.0038922771,0.038045835,-0.03998295,-0.01196105,-0.060632676,-0.13384072,-0.0110255135,0.062018402,0.016819678,-0.0075339447,0.032300632,0.06704181,0.024780147,-0.052533977,0.08132052,0.054279063,0.046480883,0.065549366,-0.076509215,-0.04523771,-0.039928563,-0.012716148,0.0017196112,-0.110368624,-0.06359283,0.02337649,0.03567682,-0.014886082,0.017218826,-0.011068134,-0.06028751,-0.062195063,-0.026654573,-0.09663479,0.0029788583,0.040464513,0.07876031,0.029034542,0.0048799403,-0.031439297,-0.09594477,-0.05315015,-2.71812e-08,0.042598844,-0.0587336,0.010073596,0.009084579,0.03653054,-0.029201107,-0.029031422,0.02472452,-0.030180324,0.06612107,-0.04668712,-0.019533178,-0.041408014,0.06885208,0.010512626,0.045173578,0.13821663,0.025847385,-0.009079604,-0.051654447,0.06702217,-0.0072697443,-0.11874606,0.018524118,-0.026119042,0.03267009,-0.015418248,-0.0001892359,-0.059805278,0.028294211,0.04168317,0.03890643,0.029475655,-0.0071124034,-0.045757506,-0.017034099,-0.027867988,-0.020394685,-0.09948787,0.0012917574,0.11663492,0.05104984,0.035265464,0.010843362,-0.017529886,-0.07073614,0.005547527,0.08287656,-0.018965906,-0.014568917,-0.023478018,-0.046720713,0.033381127,0.06977958,0.0059703845,0.004954165,0.04893278,0.042201754,0.0024334379,0.0013574186,0.056127355,0.068973646,0.010017057,-0.028962653} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.007747+00 2026-01-30 02:01:11.248064+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1917 google ChZDSUhNMG9nS0VJQ0FnSUN4cXFQN0tBEAE 1 t 1920 Go Karts Mar Menor unknown Experiencia más que recomendable, y los dueños son encantadores. experiencia más que recomendable, y los dueños son encantadores. 5 2024-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Experiencia más que recomendable, y los dueños son encantadores."} {0.0025741837,0.0012868558,-0.0020936304,-0.017261878,-0.011264509,-0.027031971,0.06831739,0.021501478,-0.042941004,0.040337436,0.038307626,-0.00728495,-0.040560562,0.005903463,0.05762976,0.006103541,0.02990436,0.02984892,0.05096887,-0.042158857,0.048046906,-0.050943445,-0.018039735,0.09391979,-0.09233041,-0.0036928144,-0.01475973,-0.009478897,-0.02449918,-0.07853778,-0.01329321,0.046251412,0.0499955,-0.052604843,-0.042602856,0.019800171,0.07239151,0.01956975,-0.08971022,0.036157176,-0.16968752,0.044480335,0.019279247,0.021635192,-0.0023111578,-0.1283268,0.01830701,0.040556516,0.026877418,0.03579963,-0.020503933,-0.049104355,0.0072764563,0.00925574,0.0030592298,0.006380117,-0.04004679,-0.045422222,-0.010428184,0.0374099,-0.014084865,-0.017370392,-0.16913119,-0.020562442,0.022512456,-0.047347546,0.058488607,-0.0043780054,-0.076500624,0.054609258,0.112756066,-0.058520608,0.01490532,0.052233465,-0.014366833,0.07521248,0.014280209,-0.02976465,-0.07278092,-0.012954447,0.011350965,0.05603021,-0.000550236,-0.02218575,0.044032592,-0.010530836,-0.010632171,-0.010867755,0.012984291,0.06367908,0.028624933,0.017573917,-0.1438972,-0.011999622,-0.014966499,0.031857606,0.021553077,-0.08878258,0.026426576,0.040725984,0.016663393,0.04769313,0.061612606,0.016940586,-0.038081273,-0.013470421,-0.013102415,-0.017579127,0.036090724,0.05303417,-0.049182717,-0.09682861,-0.05404612,0.023870228,-0.08865676,0.00047914725,0.024883281,-0.042547576,-0.02079093,-0.093366675,0.01574398,0.11643574,-0.0053369775,-0.03521888,0.025986781,-0.08988263,0.020143192,3.669877e-33,-0.027162414,-0.062044714,-0.0028697453,0.124614775,-0.00041989025,0.05174959,-0.022372171,0.0026170365,-0.015951939,-0.08624232,-0.05658052,0.063256405,0.037465293,-0.00072371424,0.07388281,0.006672791,-0.053506825,0.07110193,-0.056742124,0.039903954,-0.07712255,-0.02768875,-0.017417895,0.0009911758,0.021258108,0.015471336,0.01783717,-0.016770823,0.07050115,0.024562582,0.018157015,0.04201416,-0.042215645,-0.03545337,0.0038708027,0.034734864,0.06765291,0.01473551,0.023308927,-0.04789385,0.029881092,0.045592006,0.0041453787,0.03660034,-0.012954933,0.007213962,0.117446885,0.0038461867,0.0038095827,-0.0121532725,-0.030938806,-0.045939244,-0.031634714,-0.055974443,-0.04360915,0.06946344,-0.020115957,0.079589136,0.016107725,-0.058465697,0.018585214,0.0016760252,0.06041936,-0.09931605,-0.064370856,-0.06263878,0.052601777,0.03940086,0.1021254,0.06392481,-0.118922114,-0.027060535,0.014962122,0.03523794,0.020556789,0.023346966,-0.060765717,0.017850902,0.006732729,0.049748775,-0.10910168,-0.015734633,-0.016850729,0.054294594,0.064722165,0.06718206,0.017056968,0.012357132,-0.029144336,0.15830427,-0.037219677,0.059454035,0.03991591,0.04349439,0.0068568434,-5.3410966e-33,-0.054476853,-0.036436476,0.041224033,0.07005856,0.04939708,0.0074989754,-0.104828306,-0.005044201,0.022724085,-0.06785567,-0.12420402,-0.09387138,0.08410289,0.007555253,-0.07559477,0.019503443,-0.032921735,-0.022184864,-0.07602498,-0.029605065,0.023004873,0.09261851,0.041350048,-0.09092431,0.0119194165,-0.03583664,-0.05668573,0.010672935,-0.08632281,-0.023456996,0.023759462,-0.070435114,-0.05582588,0.009979183,-0.054728404,0.1413183,0.012918267,0.048181564,-0.014458707,0.11722532,0.03946424,0.109474786,-0.035703667,0.035408758,-0.011981525,0.024768552,0.00858381,-0.106312275,-0.03414554,-0.0241079,0.049175676,-0.007874182,-0.06770086,-0.014599318,0.072740905,-0.095535174,-0.04564821,-0.06873984,-0.048137236,0.03379073,0.017333034,0.002169008,-0.02790729,-0.016655132,0.049269125,-0.011206634,0.021182073,0.022793123,0.041037284,0.094591126,0.018688563,0.011972325,-0.0048066513,0.040824678,-0.016919272,-0.005498086,-0.03203655,-0.04089416,-0.009913746,-0.021900654,0.052209478,-0.007297103,0.009652226,0.01730669,0.005500245,-0.008742818,0.03329086,-0.04167635,-0.029822206,0.031914596,0.019146264,0.04511366,-0.043324597,-0.0012653728,-0.017196834,-2.8613844e-08,0.03361471,-0.07456512,-0.047599822,-0.005690809,0.019531963,-0.09520644,-0.03882575,0.064686276,-0.02314101,0.028169066,0.040287316,-0.031336885,0.0067776446,0.060168494,0.0321804,-0.07768178,0.13901259,0.10361312,-0.09740662,-0.014284909,0.049510952,0.017454442,-0.088807695,0.015322794,-0.006910175,0.033574436,-0.014192199,-0.0050320015,0.005432185,-0.0005973346,-0.022406235,0.013277958,-0.009760086,-0.069134936,0.002377749,-0.045180667,-0.05499741,-0.006843072,0.01970797,0.013535509,0.10684116,0.0035152708,-0.051334564,0.06328377,-0.033955455,-0.103252836,-0.023347279,0.037748273,-0.06810199,0.040249355,-0.020616727,-0.014209515,0.08774733,0.01252978,0.041898526,-0.030079728,0.01619642,0.036638606,-0.042490404,0.0134625,0.034720257,0.087019995,0.05895193,-0.021165721} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.937476+00 2026-01-30 02:01:11.220559+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1918 google ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE 1 t 1921 Go Karts Mar Menor unknown Circuito bastante grande y a buen precio. Esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente. circuito bastante grande y a buen precio. esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente. 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {E1.03} V+ I2 CR-N {} {"O4.04": "Esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente.", "V1.01": "Circuito bastante grande y a buen precio."} {-0.00026567545,0.06260139,0.034178644,0.015973577,-0.06518622,0.01876344,-0.037501935,0.009167873,0.006500704,0.011365057,0.042800874,-0.053458292,-0.03998655,-0.018350493,0.010628053,0.047139566,-0.054692082,0.007973392,0.031098133,-0.04426452,0.065949954,-0.010488841,-0.1359931,0.12879987,-0.054022394,-0.019746602,-0.009856557,0.043263964,-0.051513117,-0.030544665,-0.08321882,0.1040584,0.10539088,-0.028453346,-0.048627704,0.04125297,0.05639447,-0.016004274,-0.009497987,0.0553415,-0.049446475,-0.0351101,0.0386812,-0.035823688,0.018547233,-0.027489234,0.011253806,0.029897606,0.048455186,-0.016211547,0.02045594,0.02807462,-0.034839503,0.045066807,-0.033151742,0.022428537,0.033346187,-0.027334668,0.09323361,0.08698728,-0.026766157,0.061549716,-0.0732307,0.0022525203,0.031730782,0.013444472,-0.00061419973,-0.0017062199,-0.05585885,-0.014816221,0.10706057,-0.02816121,0.032164488,-0.008778744,0.043278877,0.02137302,0.023287311,0.00815532,-0.044032414,-0.06915868,0.021716315,-0.015240598,-0.014705674,-0.08661419,-0.016211119,0.020907462,-0.0006545973,-0.018916296,0.0485981,-0.016326748,-0.0465321,0.03126037,0.011968081,0.0063032,-0.018520324,0.05670922,0.002753638,-0.14419031,0.034963977,0.018736033,0.07775432,-0.029664742,0.04655106,-0.015907478,-0.019892212,0.014306547,0.00288566,-0.026344575,0.026918286,-0.02546703,-0.053958777,0.022147315,0.00718671,0.0007982182,-0.030373197,-0.0127511555,-0.016324334,0.026383894,-0.009580802,-0.051263552,0.03776492,0.018955091,-0.061457362,0.015323085,0.0012485683,-0.02462593,0.065663,9.4697296e-33,0.013519994,-0.07426606,0.00064695877,0.065017566,0.00041396596,0.07166952,-0.04184242,-0.019657936,0.0020753874,-0.05955453,-0.026887711,0.010737039,-0.035176214,0.005623638,0.048847996,-0.0002303719,0.022161521,-0.051149946,0.04970212,0.047055226,-0.033316713,-0.09439273,-0.04092614,0.052383516,-0.026589824,0.0150191,0.029312218,-0.088487275,-0.08930511,0.055917725,-0.020669388,-0.009449222,0.032547645,-0.031809885,0.009309378,-0.034205332,0.06624006,0.04823229,0.011773273,-0.022852244,-0.0288162,0.05422992,-0.0388242,0.045234475,0.06054853,-0.080125116,0.047019817,0.088545896,0.05927868,0.046884205,-0.054879934,-0.081917524,-0.06004461,-0.10026226,0.010351917,0.05323515,-0.039242905,0.047462787,-0.0066668848,-0.07332932,0.043108664,0.05871731,0.0070283967,-0.05350045,-0.06871791,0.011352008,0.043675873,0.014302859,0.09498616,-0.06728772,-0.068060964,-0.06822397,-0.020594327,-0.029382348,0.0049292743,-0.03917388,0.04193664,0.0426004,0.070505746,0.029367808,-0.060030036,0.0073805167,0.028095938,0.051239293,0.053518303,0.057171322,0.054887377,0.060752697,-0.029389946,0.07604765,0.010848727,0.13314828,0.08992763,-0.023018103,0.11049647,-8.654917e-33,0.05814618,0.018341057,0.023072265,0.029767597,-0.026644576,-0.037041232,0.017370565,0.010819777,-0.08113875,-0.0553457,0.0006306963,-0.11167251,0.11012403,-0.10797102,-0.04627366,0.06322324,0.028760504,-0.03462223,-0.04856028,0.019886516,-0.063991405,-0.0008028284,-0.03483476,-0.034212418,-0.03209433,-0.06393947,-0.08093652,0.039515465,-0.10314319,0.01771769,0.008428735,-0.010436828,-0.039393164,0.06782669,-0.03531102,0.07005019,0.032046814,0.009873055,-0.014531958,0.03270432,-0.04326136,0.044129428,0.004344328,-0.0074073556,-0.021453576,0.106272355,0.06502417,-0.079058036,-0.008055287,-0.011090047,0.03891541,-0.042227305,-0.09774633,-0.01320427,-0.012998799,-0.079089575,-0.010271542,-0.038170516,-0.12628828,-0.07254972,0.023993576,-0.070385166,0.044244178,0.0038889288,0.04365084,-0.027459139,-0.01723149,0.06604588,0.12056527,0.010091295,0.101059034,0.040573295,-0.007843087,-0.03382278,-0.05404404,-0.028146468,-0.110383995,-0.07040598,-0.029529,0.02905752,-0.031311296,0.055853065,-0.0026794544,-0.04895908,-0.011117797,-0.043849982,-0.01732814,0.038784735,0.008790846,0.08419336,-0.01408949,0.060596295,-0.037146326,-0.11600964,0.05181181,-3.7826755e-08,0.043369364,-0.013863003,-0.0033426145,0.01436917,0.013583256,-0.07416423,-0.025910238,0.048082184,0.016637936,0.013869496,-0.044293858,0.028877342,-0.010872713,-0.00085816026,-0.0018496001,0.032224756,0.14382735,0.08837252,-0.0008434711,-0.007989176,0.05384205,0.0008849408,-0.05813488,0.016515492,0.028904157,-0.03536358,-0.016594863,0.0042485455,0.032629754,-0.026685704,0.008341491,-0.043069806,-0.035976667,-0.09415553,0.010142826,0.04801814,-0.08624138,0.026251556,0.005623954,-0.08521413,0.113852404,0.021219691,-0.13209358,0.0051537086,-0.024168992,-0.10784663,-0.009326715,0.0043916632,-0.01164548,0.09531118,0.010160355,-0.07371971,0.07600513,0.04245734,0.11005745,-0.0035306246,0.047033954,-0.038103748,0.011006627,-0.014541257,-0.010930246,0.12129669,-0.0012232211,-0.11113282} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.948299+00 2026-01-30 02:01:11.226371+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1931 google ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB 1 t 1934 Go Karts Mar Menor unknown Roligt ställe för en fartfylld upplevelse. Ok priser! roligt ställe för en fartfylld upplevelse. ok priser! 4 2020-02-01 01:52:39.833374+00 sv v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Roligt ställe för en fartfylld upplevelse.", "V1.01": "Ok priser!"} {-0.06468347,0.025573669,-0.031326316,-0.04246587,-0.07825585,-0.026211446,0.035325203,0.1041556,0.028718011,-0.03604773,0.014040915,0.024145953,-0.011523788,-0.097468905,-0.033015978,-0.08609533,-0.12444726,0.1329675,-0.044473104,0.024318026,-0.004361576,-0.013937147,0.059683878,0.00092111324,-0.033871148,-0.058079988,0.048750762,-0.022113318,0.07346856,-0.07306096,0.06968003,-0.018458182,0.02029436,-0.031938516,0.04984381,0.002919352,0.024525942,-0.013526371,0.02857587,0.109197095,-0.030495618,-0.076145574,-0.14130639,-0.10832979,-0.019491278,-0.009676871,-0.038389802,0.038741797,-0.054789286,-0.03490954,-0.08400478,-0.029571507,0.014141577,-0.009392697,0.013744456,-0.012624449,0.005718276,-0.055899817,0.047821928,-0.06837087,0.008807649,0.0108911535,-0.063123174,0.00634792,-0.007830105,-0.016158177,-0.018266654,-0.015377926,-0.009564847,0.04000272,0.050230067,-0.044933286,-0.0955039,0.054005347,0.012254002,0.0012310274,-0.01805873,0.07239288,-0.0101955505,-0.087894894,0.112135984,-0.0025874514,-0.081427656,-0.021265347,0.045932285,-0.0631529,0.04003833,0.0673623,0.024392527,-0.027736291,-0.03828039,-0.013157649,-0.07859507,-0.0047171195,0.009521777,-0.0038707182,0.010651298,-0.012381402,-0.10420183,0.022670452,0.012173899,0.032025985,0.0294267,0.019401403,-0.060824554,-0.026754647,0.05950583,-0.08272072,0.0011724554,-0.044946402,-0.039786324,-0.055456553,0.04255898,-0.05863105,0.007203993,0.032533612,-0.039502624,-0.08051284,-0.012045478,-0.05883021,0.031771895,0.04990244,-0.07159168,0.009589003,0.038023125,-0.040136844,0.06589078,7.80926e-34,-0.06839245,0.0030452989,-0.0352533,0.026114352,-0.051331423,0.020650389,-0.06927949,-0.01859735,0.014638524,0.0071198978,-0.0051433556,-0.048696462,-0.032691892,0.010136294,-0.038721293,0.031406354,0.08734218,0.052301254,0.018815737,0.010963072,0.013969936,-0.010005528,0.050275777,0.04452271,0.036861133,-0.018949023,0.056868505,-0.07715329,-0.046979126,0.046937577,0.16229849,-0.08242034,-0.076108314,0.019866413,-0.060225762,-0.044874545,0.027089354,-0.036456324,-0.02296254,0.0032901596,-0.044839233,0.055161074,-0.047259297,0.018809881,0.026504498,0.029160382,0.035724003,-0.052006003,0.048240617,0.049476523,-0.0828723,0.029564144,-0.066465594,-0.0045940406,0.0047826264,0.036542285,-0.00968521,0.07522404,-0.007182829,-0.019924095,-0.0052464064,0.071428895,0.024713155,-0.049866118,-0.030094193,-0.023953138,-0.020581257,0.012490589,0.04776468,0.0154296225,-0.08722692,-0.022208663,0.011176359,0.09060783,-0.025444882,0.041302543,-0.031302087,0.018631069,0.043633223,-0.03880237,-0.08939386,-0.026285797,-0.017363237,0.003778951,0.061599743,-0.028299537,-0.018119168,0.0025861966,0.013655626,0.103637286,-0.027708912,0.018733999,0.01058209,-0.0035779825,0.024250792,-2.4015992e-33,0.015234136,0.023150625,-0.08549398,0.07220151,0.020960663,0.07852307,-0.077181004,0.018111799,-0.03671412,-0.0624424,-0.025131945,0.014791937,0.09480638,-0.010799945,0.02964901,-0.0010193862,0.065516956,-0.03418239,0.029937472,-0.0062921005,-0.05069195,0.04395024,-0.038328245,0.08057729,-0.052253783,0.051496547,0.04966441,-0.0010774434,-0.09753282,0.0060237003,0.032451734,0.028829036,-0.07360314,0.042309307,-0.051834743,-0.0027621773,0.0951161,0.015537466,-0.058713563,0.042109605,0.019193321,0.015420246,0.019546002,-0.004046724,-0.03921715,-0.04272016,-0.035567302,-0.12412396,0.0009871264,-0.05532828,0.07578817,0.0865751,0.051401578,0.01518278,0.06090928,-0.0041115773,-0.008777334,-0.08712242,-0.09376751,-0.0010252665,0.027941216,0.07843842,0.050962385,0.035110988,0.06270259,-0.054714087,-0.11254361,0.0025658344,0.049801644,0.00011495373,0.07494842,-0.017776912,-0.0081751635,0.0820041,-0.034766916,0.073450126,0.0473411,-0.021292875,0.052950572,0.072789334,-0.068028726,0.018528705,-0.034460843,-0.012003276,-0.027618429,0.008604192,0.013233924,0.059972763,0.025883738,-0.08614477,0.061866917,0.036966983,-0.04171537,0.03342031,0.071270086,-2.2250596e-08,0.017677061,-0.06494203,-0.037628297,0.093799435,0.018114321,-0.13670613,-0.05558805,-0.01702719,-0.099263035,-0.0023675987,-0.0055413432,0.029072728,-0.010908074,0.06441014,0.07603705,0.060717266,-0.0018116258,0.081189305,-0.04354351,-0.0074155387,0.057533033,0.016960714,-0.096150085,0.03761914,0.023419589,0.011508738,0.026798213,-0.022869047,-0.010300127,-0.06139579,0.089113094,0.01137249,-0.017274266,-0.002133963,0.03878964,0.08877199,0.006696297,0.05033747,0.0017131965,0.09232266,0.0651886,-0.00015542303,0.06406953,-0.048665084,-0.076478876,0.03992739,-0.01527488,0.02839171,-0.03281611,-0.043300137,-0.102239124,-0.053213608,0.13405398,0.049036458,0.068531334,0.0878956,-0.023244297,-0.016784584,-0.07551568,0.0017352706,0.032860138,0.021956624,0.02211096,0.054625113} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.056532+00 2026-01-30 02:01:11.272917+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1742 google ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE 1 t 1745 Go Karts Mar Menor unknown Experiencia 100% recomendable.\nEl circuito está genial y el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles.\nVolveremos!! experiencia 100% recomendable. el circuito está genial y el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles. volveremos!! 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"O1.02": "El circuito está genial", "P1.01": "el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles.", "R4.03": "Volveremos!!", "V4.03": "Experiencia 100% recomendable."} {-0.055064812,-0.016965704,0.015752917,-0.04464613,-0.044148784,0.014977119,0.06352575,0.068642385,-0.06568364,-0.014205168,0.049045026,-0.0118489945,-0.0053830678,0.016279686,0.048941348,0.07420105,0.044085972,0.034654345,0.011256138,-0.04158826,0.008951947,-0.06955216,-0.003404021,0.030977905,-0.04589013,0.010157605,-0.0060549886,0.05161201,-0.08364303,-0.14982018,-0.047936607,0.094723925,0.05885015,-0.06651778,-0.085962094,0.00014143874,0.04881953,-0.042523127,-0.061859693,0.028015314,-0.13005352,-0.019528404,0.030785179,-0.030402705,0.054646205,-0.11166228,0.027837422,0.024448372,0.059424598,-0.040036812,0.016394624,-0.052029118,0.11665759,0.036809485,-0.047702894,0.06085915,-0.0069542243,0.011316273,0.06690646,0.0015519238,0.03956008,-0.009845234,-0.07448502,0.045134827,0.008208169,-0.03184803,0.061045688,-0.036630485,-0.034926794,-0.009085481,0.02697374,-0.030514486,0.038428895,-0.013307753,0.02991781,0.09791389,0.01690211,-0.04302008,-0.014307916,0.0049680173,0.020848855,0.011333594,-0.014341726,-0.044493303,0.067163594,-0.042266645,-0.019654615,-0.013316427,-0.03499335,-0.028876362,0.019523121,0.08296583,-0.028892823,-0.052389976,-0.023879794,0.02899768,-0.03665707,-0.091293864,-0.05957784,0.030958036,0.030851565,0.028892014,0.060385693,0.0063862526,-0.044411927,-0.0149374725,0.026803285,0.032124363,0.029801441,-0.02191844,-0.037130047,-0.019314036,-0.040372726,0.012313174,0.031627685,-0.022556685,-0.018808246,0.03476141,0.02813272,-0.035632074,-0.006586887,0.014377549,-0.044529125,-0.008421549,0.07077469,-0.03540503,0.07804697,1.1091116e-32,-0.05134481,0.061095815,-0.037089877,0.068050295,0.04303504,0.021005036,-0.0675209,0.036429394,-0.036789503,-0.045235604,-0.04889544,0.13647947,0.017181465,0.055157352,0.13732015,-0.033749126,-0.07698289,0.005409595,0.01580579,-0.00304005,-0.0033929886,-0.09221151,0.023693627,0.044473458,0.02475405,0.026480174,0.06738175,-0.010896062,-0.008345928,0.024881307,-0.03784474,0.050923243,-0.018223053,-0.051789492,-0.041338827,0.06726317,0.0032226737,-0.007979301,0.04384962,-0.018679641,-0.048441295,0.06825095,-0.033294376,0.013448064,-0.019500906,0.014762431,0.06663088,0.028861437,0.05787728,0.027119998,-0.1370113,-0.08552023,-0.046642743,0.005279298,0.003823545,0.052180886,-0.020788742,0.054241516,0.034795884,-0.046379108,-0.0069892895,0.05254908,-0.012428581,-0.12737888,-0.10139255,0.042422913,0.059962973,-0.010652153,0.054206543,-0.0035474964,-0.08090466,-0.02095951,-0.027280677,-0.031860728,0.035941254,0.020695051,-0.03895288,-0.006899781,0.050690047,0.0062537,-0.0813936,-0.02141192,-0.033952314,0.05170616,0.1258167,0.077460885,0.057094134,0.015907357,-0.032796055,0.15640205,0.012264123,0.068210945,0.09505261,0.034453835,0.0108979,-1.0727335e-32,-0.059015922,-0.0038819152,0.053447958,0.0806982,0.019629538,-0.024779556,-0.054964572,-0.01588239,0.03278319,-0.029608808,-0.0716121,-0.03391516,0.044598237,-0.040818654,-0.097608,-0.0039604795,-0.067599155,-0.10104482,0.0034080222,-0.040450748,0.045733493,0.078544445,-0.030486373,-0.059214853,-0.03512098,-0.033175908,-0.09475212,0.025044464,-0.03938245,-0.015796432,-0.0068346835,0.034627702,-0.014999447,0.024571838,-0.01146869,0.08089288,0.064735204,0.07455974,0.040676262,0.06872186,-0.016959546,0.099295,-0.06481218,-0.020130528,-0.024575114,0.009738304,0.046398215,-0.11197952,-0.0476203,-0.01120501,0.010717216,0.0010999829,-0.044251643,-0.056510247,-0.042124182,-0.0541861,-0.025053227,-0.047405336,-0.07342038,-0.006499592,-0.0051479223,0.026339917,0.04330216,0.0005157898,0.10299218,-0.009405533,0.047134493,0.10055647,0.06981332,0.0024895663,0.037271757,0.01224704,-0.023988893,-0.002226794,-0.035376903,-0.0925762,-0.055423185,-0.061478723,-0.020288039,-0.031661313,0.051926833,0.013642109,-0.016975455,-0.13822474,0.031513717,-0.02065754,0.010303727,-0.02047689,0.0068730754,0.0061536874,0.0095203975,0.020765543,-0.07817937,-0.045383137,0.007594308,-4.7690584e-08,0.040578328,0.0062073786,0.020738091,-0.0026647206,0.018583136,-0.11328089,-0.05024929,0.02596568,-0.027451633,-0.012564669,0.05317654,-0.019505447,-0.06462448,0.072907165,0.044161525,0.023194894,0.108725965,0.1386209,-0.045544986,0.017446784,0.07713606,0.010587127,-0.03303125,0.042518318,0.05507197,0.030282527,0.014067047,2.0381005e-05,-0.020465929,-0.051332213,-0.069117814,-0.0034287374,0.019179944,-0.046313167,0.009045169,-0.0009887165,-0.035614394,-0.04125707,0.005631278,-0.048158042,0.043627843,-0.091997944,-0.08530653,0.042270154,-0.0970248,-0.13817957,0.014402487,-0.05122111,-0.0129716275,0.034331713,-0.044718564,-0.07324941,0.039045658,-0.0097153485,0.06122996,0.043556966,0.059532627,0.012735143,-0.029126845,0.03520567,0.033748556,0.059770584,0.0046398314,-0.06675345} 0.825 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:58.513042+00 2026-01-30 02:01:10.544753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1933 google ChZDSUhNMG9nS0VJQ0FnSUNRMXJXSVh3EAE 1 t 1936 Go Karts Mar Menor unknown Buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la velocidad, y si vas de acompañante dispone cafetería, bar donde tomarte algo mientras contemplas las carteras. buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la velocidad, y si vas de acompañante dispone cafetería, bar donde tomarte algo mientras contemplas las carteras. 4 2019-02-01 01:52:39.833374+00 es v5.1 V1.01 {A4.02,O3.02} V+ I2 CR-N {} {"V1.01": "Buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la "} {-0.037209485,0.010644783,0.017841347,-0.026491545,-0.08693552,-0.026495868,0.038106453,0.045807734,0.022234587,0.015586386,0.07438689,-0.029594656,-0.0003866935,0.0020143366,0.02911005,-0.08283475,0.018552277,0.017512271,0.038056172,-0.04408306,0.034678776,-0.11023434,-0.090118535,0.111125655,-0.009319669,0.01499582,0.026199272,0.009003382,0.027480617,-0.07936146,0.010779098,-0.000113925315,0.03549013,-0.0067734937,0.012159659,-0.010094592,0.030793278,-0.014840782,-0.05228384,0.061311174,-0.0708039,0.039070934,-0.088630535,0.009333512,0.029710859,-0.00900357,-0.113325626,0.097197756,-0.009135956,-0.028845461,-0.005472356,0.029307544,0.049527705,-0.027216392,-0.02280974,-0.088268995,-0.04969843,0.019434769,0.11408582,0.06408133,-0.016557217,0.036297318,-0.06908786,0.024243498,-0.040955126,-0.0037809245,0.015831089,0.035177458,-0.052082676,0.0811861,0.028496863,-0.09673188,0.071015835,-0.02163018,-0.0015193502,-0.022521593,0.025523694,-0.057907954,-0.060623653,-0.041693572,0.107361384,0.02059046,-0.01768219,-0.05172196,-0.058930296,-0.025655756,-0.01098932,-0.015808646,0.07496848,-0.018053755,-0.05420084,0.07663363,-0.1454413,-0.033835758,-0.009136538,0.030739669,-0.03984623,-0.0545826,2.6314226e-05,0.06373102,0.0854533,0.06589007,0.078245215,0.009811632,-0.03723504,-0.06504454,0.033361018,-0.02552702,0.017883496,0.03197588,-0.037267834,0.020069038,-0.039622325,-0.029850574,-0.0382992,-0.04372949,0.05479964,-0.08028818,-0.02016362,-0.057265658,0.05820873,0.0013118557,-0.015054441,0.022480892,-0.023342052,-0.07116333,0.053485516,1.2636638e-32,-0.09518588,-0.0480717,-0.05748938,0.060079597,0.098432116,-0.03932849,-0.03034175,-0.048284307,-0.024663012,-0.034098174,-0.024439048,-0.039811734,-0.07753461,-0.01257373,0.12527245,0.040945932,0.0028126908,0.010166465,0.019082205,0.06626256,-0.056847274,-0.01499831,-0.014481917,0.073155455,0.032859642,0.073435776,-0.014117132,-0.013564374,-0.010107475,0.02153703,0.046101637,-0.014049223,-0.04776027,-0.020157438,-0.080530904,-0.0421193,-0.0098554455,0.020897144,-0.023034614,-0.0796855,-0.040915646,0.015357044,0.009600506,0.06542184,0.010284681,0.058226276,0.05760624,-0.01157408,0.025501182,-0.016400306,-0.03130452,0.0057570944,-0.1026766,-0.07429523,-0.06507025,0.017790291,-0.01733292,-0.0003302828,0.106169604,-0.047623076,0.027279055,0.015712248,-0.033336814,-0.02287505,-0.029333405,-0.06897404,-0.010946081,-0.0018932724,0.120241016,0.044117466,-0.07350418,-0.037401687,0.030770928,-0.0034082711,0.032837134,0.034329757,0.013970292,0.050700523,-0.0600794,0.078061596,-0.022060959,-0.030388465,0.053849842,0.022600554,0.065108344,0.036917575,0.08180249,0.031044198,-0.008172646,0.11028352,-0.064505994,0.09151106,-0.021170162,-0.030734478,0.09281162,-1.293166e-32,0.047282137,0.040881474,0.048903625,0.054866243,-0.01369328,0.0064005083,-0.071284704,-0.032959912,0.04866173,0.01754629,-0.15605079,-0.061021168,-0.0042228964,0.0063012303,0.009634925,0.11821071,0.081973866,-0.0018154265,-0.10602171,-0.025451778,-0.07561006,0.11162508,0.06469965,0.011282294,0.02327937,-0.043595005,0.010363948,0.04134292,-0.06755042,-0.05371598,-0.016642202,-0.08248883,0.07525043,0.01613191,-0.06805309,-0.011257492,0.015695235,0.045617647,-0.09876731,0.029207049,0.08045972,0.027080223,-0.06049317,-0.021877266,0.011647138,0.010181712,0.0019439553,-0.14115524,0.028130587,-0.06587335,0.09961174,0.021858921,-0.038331237,0.010894682,0.02400682,-0.044211328,0.007989733,0.018827401,-0.0385029,-0.020176396,0.06813735,-0.02183954,-0.046409257,-0.03414,0.1109115,-0.0189009,-0.0034424146,0.009446623,0.03097888,0.008006004,0.044187125,-0.018094806,0.05878514,0.026755484,-0.062330417,0.046657495,-0.05937811,0.04118382,-0.011209041,-0.024545254,-0.015378991,-0.06896422,0.013845959,0.006277387,-0.04087553,-0.023123087,0.03155604,0.046550736,-0.025498208,0.063229345,0.0082697235,-0.019282576,0.044630177,-0.025455372,0.010947888,-5.1458343e-08,0.008691402,-0.037864123,-0.084502466,0.02420659,-0.015483711,-0.074983515,0.011873497,0.046906754,0.0009838276,0.09535256,-0.057085823,-0.034821287,0.0030434332,0.074793585,-0.044381715,0.09815986,0.021286996,0.043884546,-0.0075449552,0.002188215,0.017035762,0.010749126,-0.06414986,0.07929188,-0.016585555,0.010172368,-0.047664426,-0.008973472,0.068394676,-0.040592007,-0.025034178,-0.0013564341,-0.04064814,-0.08910712,-0.02233402,-0.019881798,-0.13084671,0.011008837,0.018965892,0.026728626,0.01390907,-0.06983961,-0.048435856,-0.011482434,-0.10004457,0.04990226,-0.055482887,0.030656043,-0.028717505,0.06067521,-0.027484236,0.025835134,0.077140324,-0.021621512,0.017574014,-0.0661868,0.06886389,-0.040747963,-0.014215052,-0.100515835,0.057125818,0.05405981,0.025889393,-0.0067041493} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.087539+00 2026-01-30 02:01:11.281154+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1935 google ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE 1 t 1938 Go Karts Mar Menor unknown Una experiencia inolvidable! Los encargados muy atentos y profesionales . El mejor karting de nuestra zona ! 100% recomendable! 💯 una experiencia inolvidable! los encargados muy atentos y profesionales . el mejor karting de nuestra zona ! 100% recomendable! 💯 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"P3.01": "Los encargados muy atentos y profesionales .", "V4.03": "Una experiencia inolvidable!"} {0.02988782,0.028080296,-0.0011835841,0.04640034,-0.09126676,-0.031668622,0.029129466,0.0145377675,-0.06933956,0.0366919,0.048232976,0.0006182269,-0.034183715,0.07436541,0.023436744,0.006107581,0.019508878,0.021472374,0.066434525,0.0132538825,0.017536674,0.0088073565,-0.017908085,0.07556363,-0.09150613,-0.057784643,-0.021305125,0.020937318,-0.027492119,-0.0852807,-0.036088403,0.13694772,0.0046271887,-0.046892174,0.025028976,-0.013946417,0.04770854,-0.0389814,-0.039109554,0.030981418,-0.07999662,-0.0061547956,0.012330994,-0.047268894,0.008840879,-0.07003704,0.024141802,0.017818337,-0.032635648,0.017528977,-0.02855506,-0.064081036,0.059864808,0.012114451,-0.005746547,-0.05668303,-0.09129106,-0.014824983,0.04307559,0.0062742336,0.025826985,0.041981373,-0.07192078,0.047484882,-0.063608326,-0.084126234,-0.0008401568,0.018962765,-0.10512712,0.03947325,0.101358235,-0.064698145,-0.0007052673,0.033031065,0.0030045114,0.027618207,0.00018301008,-0.035605177,-0.09615029,0.0020686772,0.045288835,-0.03801382,0.007313555,-0.044413924,0.062192276,-0.0060690925,-0.041525632,0.019999487,-0.004942962,-0.016607547,-0.036111873,0.088748224,-0.11698428,-0.039829556,-0.034871608,0.051653076,-0.05699553,-0.05118997,-0.0039002097,0.025843192,0.046112522,0.05491295,0.05609873,0.026084777,-0.11298413,0.056195185,0.045672204,-0.040573753,0.008648005,0.06535254,-0.03432657,-0.10213252,-0.000605116,-0.05347132,-0.10424648,0.023517605,0.013787143,0.039964274,0.0064501464,-0.039478652,-0.010366181,0.032386623,0.010603552,-0.07300828,0.014358086,-0.048928842,0.07615349,7.591102e-33,-0.07201334,-0.01432002,-0.038221672,0.07984966,0.024499021,-0.016357156,0.005205891,-0.04224242,-0.09823269,-0.009423424,0.032577384,0.10392075,-0.004726491,0.004849217,0.08999581,0.03562429,-0.056416824,-0.035387598,-0.013004911,0.011281673,-0.033955097,0.018064344,-0.0263523,0.03011175,-0.06290404,0.050770584,0.04104728,-0.096452005,0.008247785,0.041565947,-0.0016153633,0.05630073,-0.04316599,-0.0770629,0.009833667,0.0035246506,0.005419554,0.005258295,0.036527734,0.0080332365,0.0023402874,-0.00791055,-0.028244741,0.008202667,-0.08241617,0.0731956,0.09632266,-0.0052259825,0.0781414,-0.04230935,-0.08643223,-0.06086633,-0.03715036,-0.030704971,-0.01271313,0.04594953,-0.039723,0.04523185,-0.014589749,-0.061639674,0.004851116,0.04741536,-0.007302902,-0.11039015,-0.080553405,-0.0874752,0.008005198,0.00053114485,0.10184433,0.0053484016,-0.099806875,0.035710614,0.05223569,-0.020336218,0.05437299,-0.005296526,-0.028375756,0.0122976275,0.010750108,0.022549303,-0.060243666,-0.032997932,-0.024139505,0.068313755,0.12725027,0.02428343,0.029705375,0.009816027,0.019631078,0.09811406,-0.03600283,0.02023243,0.08179804,0.0123739485,0.036838163,-9.143914e-33,-0.0125865545,0.020436032,0.026904399,0.06934931,0.044650674,0.031114686,-0.048240688,-0.029045682,-0.021908505,-0.08637118,-0.12272772,-0.069039576,0.09937461,-0.023146851,-0.05323174,0.008071629,0.0129806185,-0.04277985,-0.036932662,-0.040151983,-0.014101841,0.067810796,-0.0096403565,-0.040916063,-0.061417453,0.02571014,0.01625216,-0.012672009,-0.05270032,0.052465137,-0.0031271968,-0.0010642263,0.0078053884,-0.053742472,-0.056029428,0.08826115,0.04863755,0.02168754,-0.011956278,0.07530219,-0.006444893,0.05915641,-0.025283482,0.019242046,0.038612016,-0.00040156147,-0.009587794,-0.10273109,-0.009012812,-0.039503347,0.08863432,-0.005053041,-0.09209606,-0.07902115,0.082736745,-0.058953527,0.023498971,-0.0882305,-0.07399691,-0.011305947,0.0065032835,0.08032879,-0.014786473,0.042619456,0.027951654,-0.0047793714,-0.006767461,0.009860632,-0.05563451,0.045352034,-0.021200014,0.08647417,-0.0712391,0.04591428,-0.04224984,-0.023557872,0.032523546,-0.077822536,0.060316663,0.037837103,-0.019622482,-0.01440033,-0.008421635,-0.0011041686,0.058977656,-0.009951307,-0.0582288,-0.0044059884,0.021673907,-3.6278794e-05,0.051175836,0.062293965,-0.030202173,-0.016309252,-0.018053465,-3.7253223e-08,-0.01856756,-0.06492865,-0.072478734,-0.025523305,0.0023377798,-0.08643064,-0.034537148,0.038905755,0.002556171,0.013808028,0.015427704,-0.011229748,0.017786665,0.09947427,0.031786326,0.045066662,0.17756839,0.17435901,-0.047980938,-0.037437394,0.06960382,0.0075021484,-0.09530318,-0.011233493,-0.09753353,0.014724069,-0.0010012271,-0.023633054,0.00868214,-0.06889198,-0.051573798,0.028249497,0.014855117,-0.020762084,-0.053843647,-0.059828106,-0.03931468,0.005192032,-0.045631304,-0.039809752,0.05730919,-0.018218918,-0.036656614,0.024417156,-0.08542585,-0.08007502,0.015167282,0.0060775345,-0.025426043,0.121032566,-0.0739061,-0.020638883,0.06985948,0.01472086,0.120280035,0.034221426,0.025707424,0.015693119,-0.048048407,0.033924192,0.034469567,0.040693983,0.031077502,0.028362026} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.112022+00 2026-01-30 02:01:11.286937+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1936 google ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB 1 t 1939 Go Karts Mar Menor unknown Simplemente espectacular. Buen circuito,, aunque sé hace corto el tiempo por lo divertido que es. Ya llevo dos veranos seguidos y repetiré simplemente espectacular. buen circuito,, aunque sé hace corto el tiempo por lo divertido que es. ya llevo dos veranos seguidos y repetiré 5 2018-02-01 01:52:39.833374+00 es v5.1 V4.03 {O1.02} V+ I3 CR-N {} {"R4.03": "Ya llevo dos veranos seguidos y repetiré", "V4.03": "Simplemente espectacular. Buen circuito,, aunque sé hace corto el tiempo por lo divertido que es."} {-0.02269995,-0.034692857,-0.0088464655,-0.085961625,-0.08268824,-0.0047831866,0.06485109,0.12766472,-0.024891607,0.009744422,0.039129205,-0.027017888,-0.04784596,0.027809473,0.027918402,0.009894109,-0.06489062,0.04792514,0.040722694,0.0019523321,0.1654197,0.0003107816,-0.0010983405,0.059818685,-0.0262735,0.08418813,0.048848297,0.037617438,0.019527888,-0.18405277,-0.0046821116,0.06474457,-0.0019266054,-0.015907662,-0.005690166,0.0058508767,-0.014268988,-0.070009924,-0.05479128,0.05111751,-0.088761255,0.01517955,0.027269425,-0.07899207,-0.0021549438,-0.06933973,-0.0019417717,-0.010322968,0.03902925,-0.06435157,-0.005278324,-0.05287781,-0.018741194,-0.010222715,-0.025178114,-0.020474052,-0.03827567,0.04506336,0.045292474,-0.004858961,0.10184079,-0.010339706,0.019179458,0.077475555,-0.023461249,-0.032929182,0.100082874,-0.009178801,0.028315889,0.0055621727,-0.002167176,-0.045905884,0.033966143,-0.007982732,0.02388309,-0.0007758751,0.015220769,0.0335122,0.03625796,0.051645767,0.008138389,-0.0683939,-0.038153253,-0.052655924,0.053455412,0.03199108,-0.047914185,0.03026501,0.0029766439,-0.05352644,-0.0415516,0.011542404,-0.050769463,-0.02996211,-0.028484149,-0.05069516,0.008717564,-0.12551878,-0.006145847,0.02184297,0.020385148,0.02070336,0.057368897,0.018353743,-0.042956483,0.007045474,0.06541338,0.0008482455,-0.0010097038,-0.048617117,-0.046121888,0.0028281766,0.027070628,0.033063974,0.017543947,-0.00032095448,0.01640069,-0.03612974,0.042341758,-0.05500953,-0.01271308,-0.033935107,-0.11532759,0.01423043,0.019380415,0.027588865,0.06930779,9.3592265e-33,0.019357238,0.02738571,-0.045517314,-0.01737418,0.017685318,0.029262684,-0.06796197,-0.006865022,0.008491921,-0.0036823,-0.065884195,0.02881996,0.065291554,0.12518974,-0.012427592,-0.08585465,-0.012721835,0.058701497,0.057136606,-0.010889937,-0.038403496,-0.01892111,-2.696104e-05,0.08214354,-0.03007039,0.05382565,-0.046043955,0.028256802,0.012576346,0.021621447,0.01899733,0.03714213,-0.0067074997,0.031877324,-0.006440337,-0.0031036055,0.03772049,0.020366373,0.111957,-0.018267553,0.027349869,0.052767858,-0.05431888,0.0009996071,0.026559124,-0.0993895,-0.01565603,0.061603375,0.0976896,0.024538698,-0.061177287,-0.083973,0.0012321519,-0.07125496,0.046319727,0.063700326,-0.06684093,0.08578503,0.0116086695,0.02034788,-0.044968367,0.117150806,-0.030993223,-0.05243489,-0.038416337,0.021264363,0.02494868,-0.04241348,0.029022621,-0.03650161,-0.099472485,0.017994251,-0.07444423,-0.010270291,0.06770313,0.0020469774,-0.03253416,0.0064479513,0.019638851,0.040025134,-0.049939103,-0.043304887,0.020802835,-0.015653696,0.034015484,0.055374574,0.049813755,0.007219548,0.013670834,0.096676946,-0.027347565,0.03444842,0.044646204,-0.042919237,0.08417604,-1.0638695e-32,-0.008427215,0.0067085335,0.028263852,0.01718413,-0.0068985918,0.04169026,0.083370686,-0.06654607,-0.02235832,-0.11588175,0.056421608,-0.016453002,0.06365794,-0.048929945,-0.010233461,-0.000705794,-0.075241715,-0.044963237,-0.00942761,0.0022119589,0.0072440193,0.025967259,0.00012601669,-0.052461956,-0.042066116,0.0048162336,-0.0730052,-0.017131278,-0.037825357,0.03408041,-0.018633476,-0.040988326,-0.049626123,0.0037597523,-0.04787835,0.05662315,0.016923914,0.041037325,-0.036535475,-0.042221528,-0.018644225,0.09403533,0.0237097,-0.054241687,0.027233673,0.016239848,0.028233247,-0.08604154,-0.096468575,-0.02848646,-0.05191015,-0.0066553457,-0.027882094,-0.07933269,-0.015374942,-0.029097011,-0.015060029,-0.08051126,-0.10889171,0.011313021,0.006671902,-0.030858653,0.018453943,-0.11858331,0.12636307,0.03928283,-0.03539044,0.023874996,0.1867294,-0.054422252,0.13095917,0.071872145,0.027850647,0.012573144,0.038756616,-0.09797215,-0.14470479,-0.04279373,-0.051459756,-0.033211287,0.054154858,0.051156785,0.015726924,-0.10467666,-0.0060601174,-0.051339373,-0.032004416,-0.025144326,0.013861477,0.040095408,-0.10065169,0.026874535,-0.024477856,0.07583358,0.08919613,-4.5102095e-08,0.02974214,0.02754631,0.026173163,-0.07047357,0.057076994,-0.034313563,0.007494896,-0.024845693,-0.0071246554,-0.07996665,0.011085131,0.05838882,0.017240457,0.06826188,0.02288642,0.03813343,0.04134489,0.0726021,-0.036947675,-0.047618933,0.076433174,-0.056399427,-0.0033003525,0.066592105,0.11250784,0.0246002,0.015145246,0.060955726,-0.0059761596,-0.052045755,-0.050567802,-0.023314964,0.016051134,0.011310645,0.013919898,-0.027773626,-0.031069783,0.051100597,-0.06791345,0.018123219,-0.007614347,-0.0054851947,-0.057030983,-0.005366685,-0.039427973,-0.040689632,0.06341915,-0.017235888,-0.063884825,-0.006471936,-0.044102628,-0.015748782,-0.044091865,0.010469513,-0.030652931,-0.030308677,-0.020425249,-0.03778947,-0.05304277,-0.013168592,-0.034702748,0.12496267,0.048207812,-0.11200505} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.126692+00 2026-01-30 02:01:11.290806+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1937 google ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB 1 t 1940 Go Karts Mar Menor unknown Una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. Tienen muy buenos frenos. Repitiria sin dudarlo una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. tienen muy buenos frenos. repitiria sin dudarlo 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {E4.01} V+ I2 CR-N {} {"O1.02": "Una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. Tienen muy ", "V4.03": "Repitiria sin dudarlo"} {-0.0037268566,-0.008086807,-0.01281378,-0.12058725,0.024953302,0.0125220725,0.12989467,0.046936188,-0.033054333,0.057858933,0.10732244,0.014172504,-0.04500616,-0.0017763161,0.035240922,0.034387015,-0.017512038,-0.0037887576,-0.01756013,-0.033675782,0.038788233,-0.068706036,-0.036629394,0.08834319,-0.10905937,-0.062796354,0.010704651,-0.0039911177,-0.008718736,0.007588542,-0.009578298,0.06556107,0.027490826,-0.010195179,-0.010005723,0.031850208,0.06267955,-0.09324187,-0.00087822316,0.09229109,-0.112317346,0.027678166,-0.014910739,-0.06180667,-0.038015652,-0.09734777,0.05898492,0.050165992,0.03385669,-0.0533414,0.03580916,0.03864805,-0.0011327082,-0.009057376,-0.002842236,0.022354253,-0.03320318,-0.031963706,0.009866305,0.05199012,-0.0047149844,0.021801408,-0.04141585,-0.012858704,0.02149554,-0.051888295,0.035614464,0.05069148,-0.06098024,0.009058277,0.0836274,-0.028488588,0.004899749,0.032612875,-0.03881764,0.065213546,-0.012498033,-0.0055120154,-0.052056495,-0.07787933,0.0058503295,-0.0014787243,0.033659376,-0.04545607,0.03882687,0.0054285587,-0.068733595,0.046297316,0.04330502,0.0341317,-0.025983462,0.1253675,-0.032106098,0.020193955,-0.06909166,-4.2697942e-05,0.03250242,-0.06375766,-0.06891307,0.11513463,0.03406617,0.088805705,0.11209346,0.0177741,-0.01074706,0.033900794,0.014026033,0.011400691,0.04414902,0.05704394,0.0028123055,-0.06434247,-0.02596037,0.015780587,-0.0665773,0.00074611953,-0.059427205,-0.027695168,-0.045011226,-0.13164338,0.056367625,0.05701299,-0.0771219,-0.0469721,-0.05453514,-0.024575979,0.038313344,1.1938573e-32,-0.0013299192,0.0068323333,0.04584898,0.074468635,-0.04691167,0.02537208,-0.02200662,0.008327159,-0.052383598,-0.09189547,-0.0154256,0.06647404,0.06718899,-0.027984375,0.016722558,0.027504837,-0.026535068,0.003669432,0.06322173,0.067074575,-0.030945105,-0.0038121121,0.008088998,0.032881413,0.008466464,-0.03318513,-0.00749696,-0.04505257,0.006100302,0.06378442,-0.044663772,0.025429362,0.037559927,-0.032631446,-0.032439645,-0.04035374,0.04993768,-0.00042201387,-0.00674269,-0.03034708,0.05681615,-0.011770862,-0.024966257,0.032964453,0.027160998,0.013957469,0.053905435,0.036988445,0.009745942,0.023744998,-0.032228593,-0.032566894,-0.06026225,-0.0074288845,-0.043594193,0.0065729623,-0.071659856,-0.0009841049,0.009758473,-0.07712104,0.073007286,0.034941874,-0.008942714,-0.058615867,-0.04016396,0.025972592,0.005356786,0.0050866944,0.13529027,0.026614312,-0.06350796,-0.0015572411,-0.056512687,0.017971372,0.028173178,0.031704914,-0.010049302,-0.0049969833,0.010809567,0.052834764,-0.053642932,-0.026918972,-0.02581798,0.0073954347,0.019014403,0.110880785,0.027713045,-0.025025303,-0.0031020844,0.13007756,-0.033704024,0.07673534,0.046535708,0.020014497,-0.017121041,-1.1292996e-32,-0.004136563,-0.021132775,-0.027196994,0.033600077,0.00041786136,0.04631613,-0.070782416,-0.069170915,-0.09567716,-0.09091056,-0.07864093,-0.14910844,0.09221145,-0.044822223,-0.026769636,0.066575155,-0.014712636,-0.00961078,-0.048348602,-0.03721493,0.103879064,0.08060286,0.06256917,0.024049671,-0.013360561,-0.064403564,-0.06754406,-0.05363861,-0.00088995654,0.008164767,0.09537123,-0.024417225,-0.011565063,0.0036477065,-0.025640875,0.088576764,0.03942344,0.032023046,0.03572478,0.051305655,-0.0474782,0.059103176,-0.043584924,-0.0023394527,-0.026800523,0.02752461,-0.03642939,-0.19313224,-0.04268653,-0.08211744,0.008872382,-0.042751007,-0.10375957,-0.060946308,-0.009767643,-0.019768976,-0.042645946,-0.02858705,-0.06804491,-0.044290584,0.044840567,0.0047550867,-0.082745746,-0.021924939,0.113126084,-0.038136307,-0.009664101,0.01985358,0.10524,0.04851353,0.071062095,0.047739156,-0.068872474,-0.021033812,-0.05215355,0.014597762,-0.053526036,-0.06942674,-0.022716014,0.035249826,-0.009217314,0.0073997183,0.054261807,-0.0099037215,-0.07765087,0.0068887467,-0.013249513,0.024924442,0.00039420763,0.06771535,-0.0043168636,0.011111515,-0.064284846,-0.07719248,0.017460298,-4.1700954e-08,0.027280627,-0.0432095,-0.02331351,0.038005978,-0.037252318,-0.035512514,-0.041303277,0.047381997,0.04584226,0.061522074,-0.04866235,-0.07490104,0.012647845,0.04608103,-0.025689887,0.025547339,0.09727449,0.1282221,-0.042694256,-0.06594081,0.06439312,0.00685817,-0.02074412,0.063203596,-0.07778245,-0.016126009,-0.05566897,-0.0062262677,-0.047101934,-0.00628549,-0.06962988,-0.013648199,0.0019580282,-0.08280332,0.06987022,-0.027146919,-0.0319895,-0.024325354,-0.0047436957,0.01815459,0.09502975,0.018981472,-0.07206071,0.03163307,0.0069823475,-0.11290777,0.045480937,0.026414406,-0.026799986,0.047514353,0.0055944887,0.012317499,0.043040514,0.04399765,0.0005528141,-0.04064099,-0.018311277,0.045347292,-0.02804094,-0.022008812,0.046072695,0.124872744,0.02846698,-0.07655649} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.140305+00 2026-01-30 02:01:11.293593+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1938 google ChdDSUhNMG9nS0VJQ0FnSUMzaE1PbjdBRRAB 1 t 1941 Go Karts Mar Menor unknown El mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instalaciones y los karts , de 10\n100% recomendable el mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instalaciones y los karts , de 10 100% recomendable 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.03 {P1.01,E1.03,O1.02} V+ I3 CR-B {} {"V4.03": "El mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instal"} {0.0022399302,0.013125811,0.0013552835,-0.05703293,-0.04627002,-0.0054089692,-0.018785844,0.09193521,-0.028205017,0.015464261,0.07519176,-0.00500466,-0.04638188,0.041602246,0.06966897,-0.011312861,0.01994736,-0.017595328,0.001347845,-0.11031678,0.00020909258,-0.08037343,-0.039356176,-0.014886016,-0.061739746,-0.0530136,0.0008744399,0.09306047,-0.026491644,-0.088566326,-0.07107098,0.06207858,0.07522781,-0.07039767,-0.055587336,-0.043638285,-0.030611629,-0.07273703,-0.0598491,-0.032337327,-0.003636721,-0.055406105,-0.011377801,-0.028619217,0.030782305,-0.0640123,-0.060843464,0.02455485,-0.0073765763,-0.02060093,0.03500424,-0.048332874,0.042793475,0.018728903,0.0069404976,-0.030505272,-0.069684185,0.09075182,0.12257658,0.052828155,0.11652522,0.026616605,-0.07508932,0.028091274,-0.057647325,-0.029161211,-0.0046433243,0.020153482,-0.027212631,0.007343295,0.0428402,-0.120296225,-0.017309377,-0.033586234,0.041184835,0.0015351148,0.038941763,-0.02990525,-0.083445,0.01003023,0.015672462,0.045509752,-0.00022768881,-0.06877945,-0.015734669,-0.024786089,0.038682237,-0.027078666,-0.023235278,-0.013561108,-0.0065524196,0.037182625,-0.045598768,-0.0628259,0.024812518,0.020058995,0.009344141,-0.06651856,0.029042814,-0.005263111,0.064702064,-0.05509658,0.037606947,0.019082414,-0.09994024,0.009361188,-0.091652974,0.022311796,0.016654346,0.01498728,-0.11799704,-0.010773415,-0.047460526,-0.037068136,-0.04268693,-0.03535327,-0.04571906,-0.0028971748,0.046558984,0.005660013,-0.014516249,-0.04621141,0.04414793,0.009287932,0.06305539,-0.0046304753,0.042169478,3.83203e-33,-0.10237867,0.029382158,-0.07434893,0.04917173,0.013461786,-0.07767316,-0.03055337,-0.04901767,-0.026904691,-0.036591295,-0.052157357,0.093173824,-0.060421854,0.041512147,0.1703035,-0.022487976,-0.028608326,-0.03545293,0.0057116365,-0.027505716,-0.045424357,-0.05744515,0.015439317,0.102958046,0.09066754,0.06551315,0.1227242,0.01686131,-0.09954729,0.020444524,0.019981476,0.040070333,0.03303222,-0.0033996054,-0.056683354,0.06288578,0.00050255394,-0.002297923,0.0077714515,0.009384126,0.033519402,-0.011062056,0.014010067,0.023760688,0.00095488544,-0.012620237,0.014455185,0.026771346,0.09393829,0.052822206,-0.13968009,0.011586098,0.009296961,-0.009066931,-0.008740806,0.05051543,0.026820231,-0.02614891,0.034086213,0.008427376,-0.018781507,0.0001856875,-0.0030509061,-0.03248023,-0.041299757,-0.0424521,0.042683236,-0.05388309,0.042214908,-0.022701938,-0.13602374,-0.024315866,0.051933404,-0.0016652611,0.054180503,0.049914636,-0.054275107,0.09202794,-0.052999396,0.040148016,-0.07791909,0.009824004,-0.073168434,0.04215301,0.122031905,0.023673315,-0.038582124,0.038990203,0.03920723,0.10633097,-0.004316148,0.07827519,0.021796027,0.040264867,0.040074866,-6.6520726e-33,0.0032121518,-0.015715467,0.08280746,0.081202984,0.031986754,0.06791148,0.019443985,-0.036799785,0.052641626,0.04268722,-0.06099009,0.030561617,0.043461632,-0.029393466,-0.029094208,0.029164651,-0.03151452,0.008880547,0.0075725773,-0.012722903,0.03055444,0.05632326,-0.0031400034,-0.059520327,-0.034220565,-0.049025375,-0.06358537,0.029224481,-0.0890019,0.016914135,-0.043550383,-0.04434116,-0.03723158,0.07747909,-0.118187405,-0.061547216,0.09106354,0.11165836,-0.03688404,0.027095454,0.037214354,0.025080144,-0.038454708,-0.014607948,-0.0833188,-0.012023365,0.09810908,-0.088863306,0.018675946,-0.030184751,0.0904713,0.035843696,-0.009259668,-0.013614916,-0.040905666,-0.009959325,0.042630434,0.0286638,-0.052947417,-0.0026431098,0.03652022,0.01837404,0.101698086,-0.10018807,0.036196467,-0.011743857,0.06093314,0.04992781,0.03427929,-0.02273958,0.027262706,0.046728138,0.03409421,-0.053258438,-0.012609855,-0.05533497,-0.07050265,0.031797636,0.014256852,-0.06320918,0.02185341,-0.069305256,-0.032888792,-0.0006475164,0.04561374,-0.02237284,-0.015290916,-0.010438448,0.08316961,-0.016980387,-0.0022140935,0.10679139,-0.04138466,-0.011528935,-0.03988181,-3.8409983e-08,0.05434294,-0.012048511,-0.10322299,0.0056301868,0.022189168,-0.05520886,-0.029013336,0.07699876,-0.060972903,0.015213882,0.007970356,0.01567875,-0.019534405,0.028321557,-0.027304823,-0.019352721,0.018580088,0.18086118,-0.010387671,0.04460637,0.020366682,0.01235145,0.024952427,0.07006324,0.0376194,-0.036158968,0.0074990513,0.0485147,0.0029869888,0.011374279,-0.033712644,0.008205166,-0.035519212,0.008264528,0.022492189,0.00030783896,-0.10267577,0.04646589,0.022276264,-0.0644825,0.017869767,-0.089515634,-0.06578612,0.05226705,-0.06469652,-0.054745927,-0.09802297,-0.030250113,-0.016851572,0.031389024,-0.06731952,-0.043818958,-0.053953014,0.0072325757,0.028232887,0.0058631236,0.03393549,-0.04111777,-0.026485741,0.018503673,-0.021396128,0.020209352,0.04068105,-0.101205125} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.152843+00 2026-01-30 02:01:11.296502+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1928 google ChdDSUhNMG9nS0VJQ0FnSURXOU9ub2tnRRAB 1 t 1931 Go Karts Mar Menor unknown Personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones en muy buen estado. Volveré sin duda a disfrutar de la experiencia. personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones en muy buen estado. volveré sin duda a disfrutar de la experiencia. 5 2023-01-31 01:52:39.833374+00 es v5.1 P3.01 {O1.01,E1.01} V+ I3 CR-N {} {"P3.01": "Personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones e"} {-0.016273614,0.010573458,-0.014707032,-0.06921862,-0.07995384,-0.026588926,0.047803726,0.10086673,-0.0070381733,0.010799766,0.11330225,0.030194527,-0.013804981,-0.006463561,0.086223565,-0.0331613,-0.039736684,-0.0077300323,0.029944427,-0.054881863,0.02909123,-0.07079433,-0.072114326,0.045562997,-0.09532423,-0.020846529,0.03478224,0.037451908,-0.023022875,-0.10109125,-0.053585052,0.044159878,0.1179017,-0.070438795,-0.0805056,-0.04767631,-0.0035491255,-0.030099217,-0.07800806,-0.050092492,-0.068686344,-0.06610742,-0.025109196,-0.035071447,0.05602566,-0.07926833,-0.028890302,-0.006747006,0.0012547119,-0.03851811,-0.00024816237,-0.022435172,0.027883062,0.00464435,0.04023434,-0.06324794,-0.04263681,0.09205621,0.12255443,0.060662474,0.081532486,0.023544978,-0.029920395,0.041824646,-0.02987043,-0.013820467,0.023583204,0.04194119,-0.0033399889,0.0015309933,0.052124377,-0.14162767,-0.016598362,0.040826302,0.044057246,0.0073245303,-0.03066795,-0.027435433,-0.086120345,0.038755056,0.0017583482,0.026347935,-0.017676972,-0.03596085,0.013041812,-0.036832336,0.0016379867,0.022708457,-0.0029057853,-0.038098905,-0.023603259,0.058661416,-0.04208377,-0.06172355,0.0059996583,-0.04859158,-0.00086786057,-0.08162731,0.022973238,0.010100001,0.07307497,0.006959409,0.024828304,0.046813916,-0.06923216,0.014763167,-0.06177835,-0.026664544,0.03478785,0.03130482,-0.11438354,-0.024624407,-0.11263526,-0.059386205,-0.004831322,-0.004781661,-0.038410023,0.019623518,0.047818903,-0.023090554,-0.01741203,-0.0047681676,0.004979283,-0.044713195,0.038950883,-0.028714038,0.10571401,7.113651e-33,-0.13858025,-0.008830931,-0.07741874,0.05437887,0.0050544003,-0.055769466,-0.036221955,-0.03906185,0.0035224685,-0.0060023842,-0.009464577,0.12770537,-0.06056947,0.097021215,0.1710182,0.010456722,-0.03864078,-0.04832147,0.06334793,0.013701263,0.00036092283,-0.06658901,0.004805377,0.09771837,0.051165786,0.036927547,0.10492934,0.02602065,-0.0441595,0.0057237484,0.015352843,-0.007917211,0.025901,-0.053228963,-0.06497392,0.017640654,0.016123807,0.010592132,0.01622076,-0.02232194,0.0059012123,-0.021353882,-0.0035386125,0.018067544,-0.020826299,0.012311843,0.029917799,0.012157795,0.07446145,0.060266215,-0.12808283,-0.044107195,0.01296898,0.014016195,-0.013131289,0.045538556,0.0017949105,-0.009450747,0.03593053,-0.031117927,-0.049318388,0.018532654,-0.0008452989,-0.021828614,-0.05844164,-0.03499186,0.0648797,-0.037217867,0.04914314,-0.0028793875,-0.120460875,-0.0027656981,-0.019116065,-0.064507715,0.012596023,0.030750223,-0.097823754,0.040406916,-0.067237996,0.07167225,-0.032553766,-0.03180042,0.010034552,0.04198522,0.10863867,0.088344425,-0.019191667,0.015072633,0.03928409,0.12672389,-0.0033305706,0.12298108,0.010405119,0.0924234,0.054390084,-9.466015e-33,0.0012823424,0.0090747215,0.080670066,0.09869058,0.048452254,0.04544193,-0.010127315,-0.029073954,0.007673413,0.015459031,-0.069653764,-0.047561135,0.048250437,0.0026735116,-0.03217454,0.043397404,-0.02972936,-0.03425188,-0.042774823,-0.038203254,-0.02170406,0.064351365,0.007546139,-0.06703535,-0.0155218225,-0.059752002,-0.07259645,0.035346013,-0.07499263,0.028926548,0.03509992,-0.033742435,-0.03508069,0.02587614,-0.034054168,-0.0044365376,0.11532943,0.11767346,-0.004398279,0.027718434,0.022031195,0.10094901,-0.007002457,-0.023408607,-0.07425829,-0.008223235,0.059271827,-0.15084304,-0.00043207445,-0.05139595,0.06621843,0.02751514,0.018345892,-0.06786972,0.00835108,-0.03935317,0.031255737,0.0022268163,-0.06841312,-0.014321416,0.068643644,-0.023347532,0.062551774,-0.08909095,0.025353434,-0.007864145,0.02704095,0.05273942,0.0036199412,0.0007026526,0.037390288,0.026648989,0.03831153,-0.004527166,-0.03198463,-0.054840475,-0.103535764,0.007829239,0.0029621334,-0.051205166,0.05294706,-0.041563187,-0.0045706253,-0.07360873,-0.06365215,-0.032871798,-0.026929796,0.022054465,0.038042735,-0.027637525,-0.02608516,0.075726375,-0.07987637,0.007250696,-0.04689934,-4.4693092e-08,0.032533,-0.022336809,-0.054213278,0.015671924,-0.009602708,-0.081283614,-0.005632466,0.040197525,-0.02329802,-0.002142901,-0.021595072,-0.038083676,-0.035369787,0.08443931,0.008008092,0.021219132,0.08821854,0.14434539,0.002592287,0.013585984,0.07332464,-0.016712835,-0.020675398,0.07521391,0.04008584,-0.009002179,0.012317858,0.031108733,0.017692141,-0.0019321513,-0.038602825,0.008300366,-0.013923331,-0.011455529,-0.012518503,-0.006598527,-0.03184691,0.039382212,0.012973205,-0.04101788,0.022456516,-0.07192722,-0.06862367,0.0032235214,-0.074659236,-0.060220633,-0.05432029,-0.029409375,-0.019864198,0.05600388,-0.026848316,-0.038409524,0.0005520501,0.012745829,0.049780592,-0.008570224,0.042446285,0.009749551,-0.03840748,-0.056058627,-0.0077261045,0.016217465,0.06529044,-0.07499416} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.089917+00 2026-01-30 02:01:11.264116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1930 google ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB 1 t 1933 Go Karts Mar Menor unknown Fantástico sitio para pasar la tarde con niños y/o amigos. Varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para que padres puedan montar con niños pequeños,y karts adaptados para personas con discapacidad.Muy recomendable fantástico sitio para pasar la tarde con niños y/o amigos. varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para que padres puedan montar con niños pequeños,y karts adaptados para personas con discapacidad.muy recomendable 5 2021-01-31 01:52:39.833374+00 es v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Fantástico sitio para pasar la tarde con niños y/o amigos.", "O3.02": "Varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para qu"} {-0.0078557795,0.01530327,0.022756461,0.0059697344,-0.051206578,0.011272798,-0.00042489675,0.046558835,-0.07125648,0.039701354,0.03728456,0.00900592,-0.09945117,0.024040474,0.030012093,-0.006402086,0.0032669117,0.0147569245,0.09441867,-0.055288162,0.029690463,-0.061985414,-0.072167814,0.066994525,-0.08079072,0.011596613,0.06627794,0.048389703,-0.031265646,-0.064932644,-0.05993714,0.13539645,0.052231282,-0.01325255,-0.067328826,0.006042485,0.06173997,-0.04907073,-0.037404187,-0.029229825,-0.044367045,0.0025914398,-0.041140113,-4.7762518e-05,-0.00089524686,-0.10147528,-0.057264164,0.05369549,0.027248584,0.05470656,-0.0674344,-0.08008057,0.03993217,0.00507649,0.008221628,-0.027685847,-0.09840578,0.012333943,0.10872884,0.019570297,0.0007085956,0.03472227,-0.057775013,0.025291195,0.017849633,-0.035693593,-0.0076301782,0.050729584,-0.03587474,0.04568377,-0.0007451879,-0.051619142,0.040589623,0.02611428,0.03263755,0.043939684,-0.029609786,-0.05029665,-0.08803451,-0.03300328,-0.008404309,0.011151936,0.007272026,-0.08372555,-0.048356067,-0.014809553,0.016873946,0.033831593,-0.0024590567,0.010062341,-0.043883257,0.0433334,-0.0077963104,-0.049914964,-0.0066118534,0.02762933,-0.010749337,-0.07445272,0.030979903,-0.017824752,0.07570689,0.036211498,0.095252484,0.037283357,-0.060005505,0.05110175,0.02686375,-0.13303699,0.055489115,0.03513669,-0.1278658,0.043778546,-0.025606636,-0.035139587,-0.10444157,-0.018156245,-0.054294962,-0.010397665,-0.009268259,0.015957283,0.07036364,0.0027220561,0.048420396,0.022313997,0.028146777,-0.03874285,0.052887667,9.041197e-33,-0.067448474,0.028686926,-0.018764889,0.08676577,0.073341206,-0.0802098,-6.0934766e-05,-0.106922634,-0.09570746,-0.014135349,-0.08878582,0.045821,0.006778199,0.003994771,0.12791309,0.021286115,-0.04571819,-0.040090427,0.036124554,0.02084793,-0.027829204,-0.069125466,0.011846542,-0.009421498,0.016347434,0.05850326,0.07407027,0.0041648163,-0.017153783,0.036370907,-0.041189883,0.012725334,-0.06396996,0.0012478706,-0.079745464,0.0057858387,0.0061683687,-0.009890167,-0.03151985,0.030668207,-0.010421967,-0.040902615,-0.04128014,0.075459786,-0.01525686,-0.00799856,0.06703075,-0.035214208,0.03725354,0.0750824,-0.14336874,-0.091550805,-0.06328056,-0.10098479,0.008783227,0.04290279,0.017412685,0.0072073513,-0.041867252,-0.08767403,0.043384444,-0.052175496,0.025844688,-0.09273201,-0.039307486,-0.010472908,0.05902885,0.0011153582,0.07922211,-0.02245341,-0.07053603,0.004252046,-0.029679062,-0.05123138,0.043000426,0.029593855,0.01988559,0.037995912,-0.0056694443,0.07128551,-0.049898714,0.0029645376,-0.038526397,0.06017302,0.075129256,-0.046035957,0.006534948,0.07173844,-0.010611768,0.098581925,-0.040639255,0.060166333,0.032311767,-0.018296089,0.08621413,-1.022814e-32,0.054945942,0.02424401,0.048228238,0.10025246,-0.0055412794,-0.032878798,-0.018680954,-0.00016828426,0.033312842,-0.07939774,-0.14467657,-0.08155413,0.089087956,-0.07027778,-0.009966888,0.07780976,-0.019779246,0.0012581925,-0.009104365,-0.06487434,0.042612974,0.012352407,-0.014204278,-0.029198075,-0.0023809592,-0.05528155,-0.015005134,0.0383328,-0.1382436,0.03187976,0.07155943,-0.06445494,0.009875652,0.04974028,-0.0021971792,0.072953865,0.049948376,0.10775282,-0.07124517,0.045807958,0.077922046,0.050559,-0.018952284,-0.047388192,-0.03891055,0.017331395,0.028518245,-0.080172695,-0.012707797,-0.05416195,0.09726863,0.008998228,-0.078485794,-0.06384317,0.016735917,0.006789389,0.021430854,-0.03405732,-0.029111225,0.015612029,0.02025485,-0.046401765,-0.044113155,-0.0076431087,0.015735788,-0.06942797,-0.048350945,-0.009861096,-0.01058394,0.077155076,-0.027554024,0.025064623,-0.030848142,0.082378864,-0.029776737,-0.040802233,-0.046894487,0.021819763,0.018896623,0.013275694,0.033792164,-0.024361128,-0.04684177,0.004405159,0.025312329,0.05683156,-0.02707546,0.053918142,0.01360832,-0.0017539441,0.10875191,0.0835827,-0.03614256,-0.037863944,-0.038351767,-4.490051e-08,0.041505147,-0.0047492413,-0.058675244,0.03998634,-0.051351883,-0.050893866,-0.017246986,0.0004206851,0.015670469,0.05609477,-0.06347634,-0.004762831,0.054706212,0.06488322,0.06365263,0.007482077,0.055363484,0.15263787,-0.023744507,0.00023567727,0.059541386,0.028621724,-0.026637413,0.060363576,-0.025099237,-0.014370141,-0.004309507,-0.010185257,0.022175845,0.011743119,-0.016860899,0.04019182,-0.04889206,-0.047600407,-0.0032011818,-0.057610236,-0.05791483,0.051260635,-0.002179979,0.030303195,0.06376518,0.007811449,-0.1490943,-0.018341243,-0.060678106,-0.02852335,-0.011643996,-0.023872443,-0.05124596,-0.016152034,-0.038988743,-0.045696087,0.032355916,0.009995067,0.10097178,0.03362204,0.032940596,0.024151893,0.031009166,-0.03191236,-0.011557621,0.08748583,-0.032790717,-0.011858644} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.038151+00 2026-01-30 02:01:11.26985+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1970 google ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB 1 t 1973 Go Karts Mar Menor unknown Das Personal ist sehr freundlich, auch im Restaurant. Die Preise nicht billig, aber durchaus im Durchschnitt..... das personal ist sehr freundlich, auch im restaurant. die preise nicht billig, aber durchaus im durchschnitt..... 5 2025-01-30 01:52:39.833374+00 de v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Das Personal ist sehr freundlich, auch im Restaurant.", "V1.01": "Die Preise nicht billig, aber durchaus im Durchschnitt....."} {-0.031715132,0.08600297,0.08190863,-0.006987111,-0.07607866,0.035226427,0.05565934,0.08005317,0.04060716,-0.018768113,-0.004894683,-0.0978685,-0.004465818,-0.042453945,0.017968748,-0.05668017,0.06869013,0.04051703,0.03551154,0.025859084,-0.045144763,-0.025387773,-0.0129699465,0.028260294,0.0013560726,-0.01694079,0.03451591,-0.0061349394,-0.005265356,-0.020267917,0.036712818,-0.025055397,0.07211216,-0.0040323185,0.0005991376,-0.0013570042,0.027012808,-0.11040068,0.002028849,0.06345981,-0.1218297,-0.033432078,-0.010015044,-0.071636416,0.0025728394,0.04074048,-0.04431999,0.03762888,-0.11154569,0.100213096,-0.068868786,0.011653022,0.09276356,0.018498043,0.11901713,-0.03124825,0.00617211,-0.083290994,-0.057688434,0.019594857,0.032184985,-0.031651583,-0.08469528,0.030554973,-0.05173305,0.10103837,-0.006462877,-0.021895379,-0.018976854,0.030237805,0.074193284,-0.07692094,0.009272268,0.0028043373,0.05274875,-0.0865674,0.024404472,-0.07284168,-0.039937593,-0.06901436,-0.04176517,-0.040213212,-0.0021781386,0.006497864,-0.010626828,-0.017754585,0.03820541,-0.024473242,-0.01833062,-0.04878477,-0.0028067403,-0.032325506,-0.10935969,-0.018643387,-0.048119415,-0.0038570575,-0.058465913,-0.010198956,0.011401093,0.01906237,0.008479826,0.025322855,0.064517036,0.13941601,-0.041027877,-0.0003565498,-0.04340403,0.024093539,-0.013237015,0.013878401,0.01546445,-0.0068217083,-0.013293251,-0.012207603,-0.01800667,-0.029836163,0.039047692,-0.122737795,0.06263481,0.0026132283,0.03801488,0.0521787,-0.027488986,0.03490842,-0.03849208,-0.031273674,0.058441523,1.0377261e-33,-0.100933544,-0.030232113,0.017804904,-0.0202329,-0.01822746,0.0031701308,-0.07061257,-0.03481992,-0.028840343,0.023757298,0.066317305,0.013877464,-0.008856309,0.0105928425,-0.032682527,0.009715571,0.08397806,0.0036285645,0.05484857,-0.0070068175,-0.014287713,-0.003927786,0.009911043,0.053808074,0.00893411,-0.032886125,0.090130955,-0.05332152,-0.025945494,0.0061550885,0.06652848,0.012051824,-0.040966067,-0.044685554,-0.04897824,0.008609732,0.019599583,0.063222736,0.0065166494,-0.07755085,0.006274309,0.05512561,-0.010503383,-0.049732678,-0.040862035,0.04940319,-0.0033137277,0.038358256,0.03131259,0.010702566,-0.03414081,-0.016484499,-0.06204217,0.08350241,-0.0570363,-0.0009147669,-0.03750084,-0.06548066,-0.04870758,-0.055525,-0.009985182,0.0026062883,-0.0358799,-0.0028534418,-0.011012303,-0.059492145,0.08799647,-0.026985196,0.07087491,0.037352998,-0.0793986,-0.039110955,0.040615086,-0.0065122554,-0.0036268726,0.044778563,-0.07150745,0.062156025,-0.03457767,0.03381318,-0.028864361,0.057840362,0.046352137,-0.060438223,0.047152776,0.05573228,0.0032371471,-0.047230188,0.06624646,0.13111492,0.02738038,0.046912342,0.044734493,0.036016703,-0.060493305,-4.0493503e-33,0.058053244,-0.034912728,-0.04853413,0.046342634,-0.009848617,0.07523075,-0.06706307,0.057004325,-0.05714124,0.0012733495,-0.022364708,0.05941836,0.087200195,-0.037444167,-0.015788049,0.10004365,0.020425241,0.018318843,-0.0018996969,-0.047398772,-0.007901146,-0.0060235467,-0.03080582,0.0576356,-0.014174032,0.013522773,0.024370648,0.07068985,-0.017421218,-0.08885391,-0.03540443,0.035369735,0.030712983,-0.07860676,0.04894728,0.03149747,-0.019792434,0.08659842,0.017964123,0.11324811,0.027170086,0.064286076,-0.089991525,-0.008222938,0.023931958,-0.08720005,-0.09727881,-0.10301924,-0.039488498,-0.028829383,-0.056025475,-0.05925416,0.032713033,-0.14544031,-0.017207824,0.04800239,0.0074380725,-0.053651422,0.06750042,0.008117067,0.05128486,0.071625166,0.08889913,0.0011483342,0.02086249,-0.069710426,-0.060439296,-0.06739894,0.07316878,0.03891292,-0.032110754,0.06274154,0.064972036,0.0055791754,-0.02992072,-0.08778489,-0.009371844,0.053565387,-0.0036978505,0.02439547,-0.01301749,0.026896294,0.04165229,-0.019881492,-0.04923751,-0.09560957,0.05390795,0.010565886,-0.045981303,-0.021142414,-0.062400997,0.054410033,-0.053548206,-0.045890037,-0.015792513,-3.6945668e-08,0.052716505,-0.06940905,-0.05281671,0.08333941,-0.018907528,-0.18902652,-0.003225085,0.0024338362,-0.054259446,0.039832015,-0.045359094,0.060969293,-0.053197663,0.06743742,-0.06359305,0.021920374,0.004448468,-0.07680466,-0.013871896,0.046498176,0.120905556,-0.01627225,-0.014748938,-0.03221465,0.015111666,0.07521984,0.07124912,-0.0094180545,-0.031584784,-0.01648728,-0.02722366,0.12845793,0.031247603,-0.049111944,-0.004719865,0.010773197,-0.009308123,0.0323236,-0.06916941,0.01546535,0.034850765,-0.023775244,-0.04474446,-0.0133743035,-0.012864878,-0.04688698,0.025527706,0.037613347,0.05385206,0.066593096,-0.08775706,0.02586948,0.051591136,-0.019245181,0.0043590716,0.08471883,0.013494697,-0.062123723,0.025960285,-0.05882929,0.08979937,-0.00071877457,0.010497579,-0.059494536} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:18.501876+00 2026-01-30 02:01:11.458856+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1763 google ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB 1 t 1766 Go Karts Mar Menor unknown Muy buen circuito para correr y echarse unas risas, muy recomendable.\nY la cantina también muy bueno todo, sobretodo los granizados de limón.\nAparte no es muy caro de precio.\nMuchas gracias por el servicio 👌🏻👌🏻 muy buen circuito para correr y echarse unas risas, muy recomendable. y la cantina también muy bueno todo, sobretodo los granizados de limón. aparte no es muy caro de precio. muchas gracias por el servicio 👌🏻👌🏻 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.01 {O4.04} V+ I3 CR-N {} {"O1.01": "Muy buen circuito para correr y echarse unas risas, muy recomendable.", "O2.01": "Y la cantina también muy bueno todo, sobretodo los granizados de limón.", "V1.01": "Aparte no es muy caro de precio.", "V4.03": "Muchas gracias por el servicio 👌🏻👌🏻"} {-0.052019022,0.0026088727,0.029646736,-0.07730029,-0.042196885,-0.024128087,0.058055975,0.021864954,-0.044685546,-0.03510852,0.07569234,-0.032710522,-0.028509015,0.06394069,0.045566365,0.031075696,0.0055621886,0.04770783,-0.0072493157,-0.00259962,0.14198792,-0.04153197,-0.07174315,0.103998035,-0.07115917,-0.048181627,0.030626273,0.020719271,-0.060821593,-0.11946165,-0.039303478,0.05793679,0.030219784,0.017068604,-0.046822906,-0.017479021,0.06143576,-0.069384545,-0.012996582,0.06572443,-0.1018085,-0.045026597,-0.033577465,-0.036766596,0.02938098,-0.075757064,0.06583974,0.02707413,0.06533885,-0.09316635,-0.023754355,-0.010591245,0.035701077,-0.058647256,0.012285082,0.049947917,-0.08478942,0.031753894,0.08357942,0.013254742,-0.021276075,0.0047251675,0.02324767,0.04338652,0.0015735521,-0.013959304,-0.01669145,0.020653343,-0.04973338,-0.019969082,0.1001043,-0.099606596,-0.0048909974,-0.039604127,-0.045424573,0.044583697,0.06370005,0.029678766,-0.037075553,-0.07168181,-0.013993304,-0.0006992955,-0.054834366,-0.0149597,0.0276219,-0.011244839,-0.046780042,0.0081349,-0.018244488,-0.04447508,-0.008143651,0.008393035,-0.055171777,-0.0062751435,-0.050868403,0.04111588,0.024057657,-0.10106201,-0.009440518,0.03807682,0.014860599,0.0028509838,0.09967345,-0.034364637,-0.060858298,0.02183713,0.06918437,0.0009748037,0.031754434,0.010903937,-0.027279869,0.03956201,-0.024434682,0.02217281,-0.018043278,-0.025500417,-0.026800841,0.023370545,-0.008815754,-0.08114968,0.010589836,-0.0054242974,-0.06882312,0.0068341475,-0.043872133,0.029543051,0.08941592,1.3392419e-32,-0.07064193,-0.02763766,-0.031336844,0.033271533,0.01600505,0.047943614,-0.011532399,0.027478814,-0.057570815,-0.037271764,-0.0028021736,0.09070374,-0.056827303,0.012212219,0.11067528,-0.089030914,0.016422529,-0.0652716,0.059986312,-0.023796381,-0.07764277,-0.042009406,-0.010528549,0.064400114,0.0039433264,0.034639273,0.013095899,-0.04618655,0.019853288,0.051375553,-0.000404129,0.04828496,0.048091576,-0.049601484,-0.11798299,-0.05568701,-0.014425835,0.04055209,-0.020816969,-0.06835454,-0.038357977,0.043798164,-0.07487353,0.031421237,-0.053103417,0.009187614,0.043054808,0.0992611,0.07456502,0.07012813,-0.08934196,-0.097032525,-0.09743229,-0.04735534,0.01595905,0.044399075,-0.021568784,0.016790744,0.02481064,-0.056315243,0.027535155,0.060056526,0.027710762,-0.056732766,-0.04631435,0.012186785,0.033845123,0.02422029,0.07389734,-0.0029053171,-0.08847633,-0.0063247294,-0.1094209,0.021094907,-0.004388891,0.022538442,0.01824668,0.013679835,0.07650381,0.034591924,-0.09562352,0.015910055,0.09009645,0.057223998,0.12504219,0.11273049,0.06536042,0.039001107,-0.045938,0.105691046,-0.05951108,0.078343935,0.07126599,-0.048383854,0.008462329,-1.2265582e-32,0.048770092,-0.0278781,0.044399995,0.044554785,0.017854735,0.003309348,-0.016319206,-0.07220314,-0.022060847,-0.0069680354,-0.11046328,-0.07585857,0.0651309,-0.07654358,0.032978885,0.048148338,0.0003785508,-0.030835725,-0.107098214,-0.0058306395,-0.018017994,0.07893186,0.0010061694,-0.074754015,-0.0789348,0.005645289,-0.09570233,0.055844516,-0.08626653,0.0117877675,-0.010115974,-0.033677086,-0.009272495,0.07295353,-0.023875285,0.016112357,0.082490236,0.05358167,0.016490877,0.027033621,-0.015086648,0.013388832,-0.0312057,0.023209374,-0.05486315,0.029029299,0.009518471,-0.13742477,-0.00073269923,0.00844025,0.025593257,-0.015069447,-0.024746418,-0.009234043,-0.059687134,-0.029389238,0.023551535,-0.056653596,-0.057828788,-0.09404575,0.045718975,-0.05127721,-0.023119085,-0.030967658,0.07346647,-0.016457014,-0.029094467,0.007835821,0.03427206,-0.026935047,0.10890146,-0.016946487,0.006993572,0.0128812445,-0.087650605,-0.034098104,-0.10507966,-0.037021037,0.020988505,0.007236212,0.035689853,0.009669624,-0.041223273,-0.02367605,0.01800219,-0.013714737,0.028275438,-0.0061343866,0.072282925,0.06333501,-0.028722394,0.04321141,-0.037870213,-0.01625068,0.035714064,-4.836282e-08,-0.0038632357,-0.06628098,0.016841317,0.0054760226,0.005388336,-0.039685726,-0.050520305,0.04876882,-0.029086137,0.011348517,0.031883243,-0.031479795,-0.044981398,0.07780502,-0.0065084253,0.058947936,0.12208879,0.08887179,-0.0047012754,-0.005239895,0.043522872,0.0068877637,-0.014287766,0.13224274,0.056040365,-0.012328253,-0.067765445,0.053667836,0.016865104,-0.024853252,0.019938968,-0.03496985,0.05595615,-0.017875858,0.006008369,-0.0048702164,-0.06385713,0.020124812,-0.015305178,-0.0051463237,0.014966521,-0.07336188,-0.057743873,0.051276505,-0.026110344,-0.084318995,0.004026829,-0.0061093876,-0.024759872,0.06619935,-0.006104196,-0.06338772,0.05721897,0.040228523,-0.031278227,-0.018958798,0.056805167,0.02227403,0.005966857,0.015615665,0.051534962,0.12913388,0.03641568,-0.075253345} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:59.791083+00 2026-01-30 02:01:10.617673+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1946 google ChdDSUhNMG9nS0VJQ0FnSUNtNWVuQ3Z3RRAB 1 t 1949 Go Karts Mar Menor unknown Un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron genial una buena experiencia y el precio económico un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron genial una buena experiencia y el precio económico 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {E1.04} V+ I3 CR-N {} {"V4.01": "Un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron"} {-0.008944717,0.011433922,-0.02838296,-0.04492685,-0.046976257,0.028446704,0.030098282,0.014359271,-0.037845686,-0.00237391,0.094487935,-0.05004023,-0.008957213,-0.035523776,0.03084824,0.008998051,-0.048157945,-0.028063053,-0.034667283,0.0057845996,0.067114875,-0.082384825,-0.045695294,0.051190548,-0.06991839,-0.054875135,0.03155399,-0.03518028,-0.046344902,0.012220585,-0.0013274418,0.03470064,0.13121232,0.033954285,-0.0036574032,0.004593385,0.07229516,-0.016056996,0.03568602,-0.0066585336,-0.08535543,-0.029347988,-0.005558862,-0.0980744,0.030045722,-0.09293047,0.07089891,0.030176729,-0.016770892,0.007157815,-0.052997056,-0.009983824,0.0060900403,0.008346686,0.017729554,-0.003846362,-0.016289778,-0.056866933,0.05585169,0.02827713,-0.047594093,0.024906611,-0.07605414,-0.032675654,-0.015718633,-0.00011613581,0.07722448,-0.06108326,-0.063751705,0.032991715,0.042009816,-0.049366146,-0.032990888,0.0065126526,-0.03199294,0.028889222,0.013771187,0.03536757,-0.07628551,-0.056782532,0.0069653005,-0.021997541,-0.050378516,-0.02577575,-0.03530445,0.057841916,-0.07064732,-0.008138443,0.029603396,0.013969741,-0.0020330418,0.063855246,-0.023082811,0.0043751327,-0.03629186,-0.0008170517,0.030344063,-0.10575622,0.045523103,0.011204516,0.08199711,0.06093384,0.11380459,0.039088596,-0.075493455,-0.003519857,0.044668656,-0.012132949,-0.017094173,0.060463782,-0.078657426,-0.042659275,-0.082000405,0.042516496,-0.15298043,-0.006507663,-0.0064615547,-0.06164594,-0.026495555,-0.052302748,0.050564345,0.049339764,-0.023049071,-0.004330574,0.022914412,-0.11900233,-0.0042739874,7.90076e-33,-0.11139952,-0.029315969,0.0016661411,0.045464087,-0.037195463,0.060799,0.013817104,0.0108533595,-0.019783482,-0.014969794,-0.056872565,0.02797625,0.026131535,0.011005978,0.033163507,0.0148896845,-0.10565132,-0.004431253,0.07672786,0.075170904,-0.03640769,-0.0144535275,0.009687521,0.028451206,-0.024708861,0.020782974,-0.008922035,-0.031844158,-0.015877463,0.06097466,0.017908892,0.030341102,0.035286665,-0.101221055,-0.078754716,-0.016984617,0.09085474,0.073485576,0.031622916,0.023892941,-0.0846935,0.018399535,0.015423635,0.010272517,0.014147053,-0.016141811,0.12096891,0.004899873,0.060624868,0.018246775,-0.03996653,-0.12033295,-0.07151087,-0.061722215,-0.01417457,-0.015036579,-0.05398737,0.042609736,-0.083973326,-0.094093025,0.070641555,-0.060328282,0.020665688,-0.016089406,-0.10210411,0.04358558,0.08891655,0.06773753,0.12720348,0.039514367,-0.024876941,-0.03965552,-0.022971775,-0.020596405,0.02803554,0.12333338,-0.020619605,0.03366612,0.0131784,0.042881805,-0.05609729,0.050433468,0.029647779,0.00950545,0.07007734,0.09062854,0.021395177,0.08931587,0.0023655167,0.06709208,0.048897535,0.051504925,-0.0029701882,-0.024269804,0.069724195,-1.0805243e-32,-0.012807154,0.025089733,0.00062811,0.006878133,-0.015348173,-0.067296505,0.03441741,-0.053543266,0.01885251,-0.027853603,-0.09319638,-0.123878404,0.15433075,-0.026511652,-0.027175246,0.056720737,-0.026409557,-0.058192026,-0.019486226,0.0037296624,-0.017391395,-0.020294001,0.091372296,0.02143231,0.0087487,-0.06632277,-0.05487221,0.062952995,-0.08091815,-0.042399246,0.02335594,-0.013063384,0.021904495,0.022180142,0.006239647,0.039459836,-0.010772808,0.06667618,-0.011794841,0.00035394458,0.04363109,0.040340345,-0.036173265,0.036119,-0.027935423,0.034884863,0.041567646,-0.101823114,0.015295496,-0.070156716,0.063522846,0.018173937,-0.014833738,-0.053620778,0.022988651,0.040498815,-0.008479957,-0.05680299,-0.07619063,0.010453327,0.033935983,0.012712473,-0.055456914,0.022877092,0.024509773,-0.021040782,-0.036817994,0.0025708314,0.021301473,0.054996975,0.082956724,-0.02557942,-0.111515954,-0.00810365,-0.090498805,0.038155977,-0.07735882,-0.04400524,0.064446084,0.048497558,-0.017855685,0.04475445,0.014766209,-0.09152108,-0.066815004,-0.09798578,-0.040008076,0.044996895,-0.012182315,-0.00078082,-0.01771579,-0.022793327,-0.019157298,-0.11367285,-0.051437184,-3.8645606e-08,0.04763607,-0.054381944,0.043974064,0.052115735,-0.04452303,-0.04167472,0.0059076645,0.05656768,0.057373744,0.0412771,-0.08955551,-0.004056975,0.0010920356,0.018345386,-0.03195504,-0.0003598991,0.10703371,0.04156652,-0.0013122092,-0.05285994,0.1201614,-0.024376497,-0.018353054,0.04455463,-0.045881703,-0.0019444376,-0.017540459,0.009424156,-0.057171684,-0.010064637,-0.044380225,-0.07179407,-0.04551736,-0.10016848,0.009800756,-0.031204574,-0.027034722,0.012678351,-0.00909397,-0.052375384,0.10134236,-0.050069675,-0.10252667,-0.028452748,0.0016956711,-0.025332974,-0.035995536,0.00782414,0.019280797,0.059724074,-0.005641685,-0.030942008,0.05031896,-0.051216736,0.021834726,-0.042738184,0.035412982,0.053865146,0.0024495232,0.029287271,0.032842256,0.09507086,0.078255266,-0.06782008} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.250217+00 2026-01-30 02:01:11.322619+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1947 google ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB 1 t 1950 Go Karts Mar Menor unknown Gran circuito y karts muy divertidos. Trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. Espero q sigan así mucho tiempo porque se merecen lo mejor. gran circuito y karts muy divertidos. trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. espero q sigan así mucho tiempo porque se merecen lo mejor. 5 2019-02-01 01:52:39.833374+00 es v5.1 R3.01 {P1.01,R2.01} V+ I3 CR-N {} {"O1.02": "Gran circuito y karts muy divertidos.", "R3.01": "Trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. Espero q "} {-0.04675622,0.023456967,0.023611128,-0.07840019,-0.042746473,-0.062196016,0.03449368,0.1292686,-0.037820928,-0.025456551,0.078716055,0.0076832674,-0.07559902,0.032664992,0.042418674,-0.00032311858,-0.016152006,0.049603753,-0.034166,-0.0837619,0.07161205,-0.053576916,-0.07457854,0.041318156,-0.06606912,-0.03094002,0.03290512,0.04608537,-0.022380099,-0.12239334,-0.057087272,0.110200174,0.039248593,-0.014572076,-0.036596518,-0.07114318,-0.04229524,0.047139216,-0.03710663,0.037612937,-0.0146604525,-0.082066156,0.009130001,-0.082052,0.046700235,-0.0522414,-0.04681472,0.005331474,0.028867109,-0.0683581,-0.020197822,-0.034841582,0.020930488,0.0074413586,-0.002186216,-0.05768064,-0.034285538,0.041771244,0.10419885,0.063208655,0.059497245,0.043484278,-0.0650134,0.029809954,0.008186523,-0.051987894,0.04221921,0.01032869,-0.04690634,0.04177849,0.14502022,-0.11187377,-0.006313779,-0.062036756,-0.033093616,0.023405006,0.046812467,0.013210665,-0.0848265,-0.025905605,-0.016974665,0.033290893,0.029928561,-0.12532061,-0.0265111,-0.025691546,-0.036757167,0.054018892,-0.02084164,-0.024757054,0.016705861,0.0859974,-0.041797068,-0.018704675,0.032626003,0.046006124,-0.015999828,-0.07680646,-0.024382899,-0.010142154,0.079043195,0.03333081,0.048848893,0.031068265,-0.024678405,0.033402774,0.056207757,-0.013979934,0.0075255204,-0.024392135,-0.0655556,-0.0039146077,-0.053844467,-0.034258723,-0.0592559,-0.06983535,-0.007770468,0.022734769,-0.020590302,-0.013886707,-0.017313262,0.02038558,-0.05954297,0.008799737,-0.017663019,0.027495068,0.11288795,1.1731016e-32,-0.06731482,-0.041319232,-0.10975586,0.045858953,0.013613167,-0.08031357,-0.044868566,-0.060395986,-0.03327532,-0.008614188,-0.05026847,0.0072184945,-0.07294617,0.030839894,0.109572776,-0.029096052,0.014992786,-0.022233369,0.06554881,-0.0038643098,-0.0393212,-0.06441066,-0.0760513,0.06819151,-0.0016273536,0.13752893,0.0015044009,-0.03746905,-0.06317621,0.038083736,-0.023111165,0.065293655,0.028144069,0.013826326,-0.03775284,0.01335875,0.048122264,0.061784837,0.0012098681,-0.044317063,-0.013691599,-0.0274779,-0.033200376,0.07439674,0.068432085,-0.039498206,0.028622532,0.036045868,0.1459028,0.041084573,-0.097641215,-0.027480807,-0.03173645,-0.0064579584,0.029341921,0.025525358,0.018749474,0.04686535,0.055616274,0.026906623,0.012718705,0.018884102,-0.044674758,-0.028222524,-0.007729236,0.03764783,0.051339906,0.02873543,0.10434827,0.0046447846,-0.16671987,-0.017187392,-0.04358438,0.01807016,0.056935966,-0.020806316,-0.00013739182,-0.026558911,-0.009070777,0.018924497,-0.030828008,-0.0062668407,0.0017662566,0.013569769,0.12962572,0.08314507,-0.0206782,0.0776266,0.006904442,0.08496557,-0.0076288986,0.05252386,0.04753731,0.0028676377,0.06555511,-1.2555673e-32,-0.01682132,0.013784285,0.000716182,0.050235964,-0.0381559,0.03807957,-0.011393868,-0.08594891,-0.015424655,-0.030437868,-0.06328269,-0.028011624,0.06883069,-0.064174384,-0.057754554,0.024618447,-0.018879708,-0.011073624,-0.040629126,-0.03744542,0.023625648,0.07173488,-0.0227784,-0.06870009,-0.035972457,-0.0087178815,-0.03175998,0.01864742,-0.052481987,0.070012346,-0.021535035,-0.0526267,-0.010398534,0.07736935,-0.03457589,-0.03170036,0.06797574,0.080452695,-0.062184624,-0.0071168006,-0.034503646,0.0423913,0.003929561,-0.01931868,-0.095785685,0.046988633,0.03762502,-0.10569633,-0.044324756,-0.0069026384,0.12849881,0.033165507,-0.017380541,0.00051743636,-0.00010783123,-0.038817808,0.025665974,-0.013813021,-0.10562842,-0.05993368,0.021700926,0.0033551622,0.02858712,-0.121932,0.07855305,0.021561831,-0.0040451693,0.068458,0.009095853,-0.031485517,0.047846675,0.015372603,0.040239975,-0.052202247,-0.019987566,-0.064984635,-0.07145473,0.03660756,0.030203486,-0.03091231,-0.009050214,-0.021002876,-0.004353162,-0.053984184,-0.0040726895,-0.054565452,-0.004078119,0.031758115,0.088368565,0.03554824,0.030577118,0.06554596,0.0021732526,-0.00066411414,-0.01609919,-4.817384e-08,0.057935297,-0.04189974,-0.053837515,-0.0006218349,0.09080158,-0.032435037,-0.03907868,0.11627394,-0.0048982897,0.06863688,0.027252913,0.031392008,-0.059690014,0.068876006,-0.008498376,-0.029260129,0.06777989,0.08914405,0.008536502,-0.036150295,0.002723544,-0.0074321595,0.0020392768,0.03757137,0.047186308,0.012966562,-0.019504704,0.020607471,0.020100549,-0.014443732,0.006147516,-0.03254642,-0.051818628,-0.0015714725,0.00672536,0.06346746,-0.040750254,0.025772078,0.018860288,-0.03543925,-0.014058043,-0.105342165,-0.06083344,0.009582856,-0.10464249,-0.07043473,-0.0952806,0.0021011957,-0.007622485,0.03808795,-0.063519865,-0.027119327,0.0074545424,0.037433255,0.03757958,-0.02552338,0.055438954,-0.06322075,-0.048301436,0.012003215,-0.0066774935,0.09580795,0.009607135,-0.09900525} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.260305+00 2026-01-30 02:01:11.325236+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1949 google ChZDSUhNMG9nS0VJQ0FnSUQ4LV9xYVR3EAE 1 t 1952 Go Karts Mar Menor unknown Un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el personal muy amable y cercano ademas de unas buenas medidas de seguridad. un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el personal muy amable y cercano ademas de unas buenas medidas de seguridad. 5 2021-01-31 01:52:39.833374+00 es v5.1 P1.01 {O1.02,E1.04,E4.01} V+ I2 CR-N {} {"P1.01": "Un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el perso"} {-0.022310888,-0.02979985,-0.011086556,-0.025265466,-0.050676662,-0.02682692,0.1274894,0.010614528,-0.049375474,-0.0071616475,0.032670505,-0.0069858828,-0.060291108,-0.00960128,0.04754978,-0.0099845445,-0.041969523,0.100246586,0.0029150862,0.052549183,0.073017366,0.006337121,-0.0032734103,0.1000285,-0.15690936,-0.045002077,0.054303095,-0.01589526,-0.023380382,-0.0642385,0.027943378,0.06771761,0.104725994,-0.0456441,-0.049222805,-0.007824099,0.015841125,-0.036486417,-0.0641533,0.0042300513,-0.06929835,-0.042139694,-0.020556064,-0.042241357,-0.010339595,-0.039738525,-0.0009399088,0.0059172115,0.06678139,-0.03277491,-0.03902705,-0.04144558,-0.036403596,0.04237676,-0.026100654,-0.0012612792,-0.07865349,-0.049194593,0.0718714,0.028266465,0.018969553,0.023796767,-0.021561915,0.044845566,0.020530777,0.041732352,-0.0077252137,0.04713904,-0.01715795,0.004160223,0.09873386,-0.09461077,0.03007088,0.04204554,-0.012116354,-0.008172802,-0.060722772,-0.056813046,-0.058424223,-0.0791173,-0.011261714,0.07663739,-0.027583003,0.010737382,0.016361257,0.0073592514,-0.015662383,0.058433715,-0.012906921,0.009286839,-0.023260105,0.047279365,-0.088950455,-0.08318999,0.045469653,0.0027477748,0.085342854,-0.060381822,-0.0066453055,0.047140416,0.031187983,0.054536615,0.0561407,0.07194476,-0.03529523,0.0036511007,-0.036822114,-0.05563564,0.046924643,0.055065785,-0.12726931,-0.030828368,-0.08880008,-0.016998917,-0.07345836,-0.03530974,0.021383805,-0.06950739,-0.01672982,0.005237069,0.041394524,-0.021727081,-0.033389904,-0.03951184,0.03477742,-0.062156603,0.042767614,9.796202e-33,-0.032437883,-0.019866882,-0.005975297,0.073925376,0.02599794,0.032595173,-0.052813623,-0.09914056,0.010161936,0.031571165,-0.083063595,0.1144663,-0.021779923,0.09876753,0.09215431,0.03538989,0.01584696,0.0041386075,0.10674131,-0.021900108,-0.08443564,-0.0117532825,-0.10224599,0.026686532,-0.02975963,0.028406847,0.018780323,-0.007549945,-0.022470852,0.04694866,0.002576856,0.046960726,-0.008206561,-0.069687,-0.04325924,-0.078892894,0.015989272,0.04377665,-0.0011670486,-0.06972545,0.03344655,0.0174823,-0.010589254,0.025249492,0.011847231,-0.010405628,0.04947648,-0.023172133,0.037310682,0.03284261,-0.06993582,-0.068184376,-0.014893374,-0.038538132,-0.022307824,-0.01339324,-0.045531694,0.021920413,-0.0585075,0.026309073,0.10361731,-0.010785745,0.01461506,-0.03864692,-0.023503397,-0.04665054,0.019716324,0.028321184,0.08209572,-0.005633078,-0.054825112,-0.022977669,-0.03030892,0.011961793,-0.0384946,0.029971046,0.017804524,0.04828194,-0.056338213,-0.00072425586,-0.037634492,0.009585263,0.04725341,0.09869021,0.0944447,0.04333099,-0.00053967675,0.09164549,-0.115454316,0.09680932,0.023734014,0.09589344,0.030906225,-0.016089791,-0.02956702,-1.1742167e-32,0.002389295,0.0023709356,-0.015529198,0.065385796,-0.03947676,0.006356266,-0.06804529,-0.007964627,-0.017219719,0.006280345,-0.104152635,-0.091665715,0.11001475,-0.07756689,0.009067203,0.16629234,-0.014476144,-0.062210023,-0.08001512,-0.046495695,-0.008688589,0.018015139,0.04160756,-0.04957392,-0.008578912,-0.058362965,-0.012964164,0.08530161,-0.11199581,0.022846652,0.0016521743,-0.06531538,-0.0016683299,0.0576283,-0.009113821,0.013368661,0.073580116,0.010265873,-0.07782877,0.0060137985,0.058853064,0.09065934,-0.013824939,-0.054730605,-0.012555194,-0.038188256,-0.033232052,-0.1295498,-0.042915877,-0.031943608,0.09082313,-0.061888516,-0.0063484823,-0.081511855,0.010644947,-0.06969445,-0.033246454,-0.08548924,-0.06939301,-0.046990894,0.08627453,0.0022704054,-0.08634248,0.016832827,0.007495257,-0.024220398,-0.058915354,0.02277135,-0.042452224,0.045770977,0.08474623,-0.027040772,-0.052325197,0.025683269,-0.05812557,-0.022650745,3.3240944e-05,-0.03619535,-0.0071930364,-0.011727939,-0.02476441,-0.039975796,-0.013964774,-0.058769174,-0.042361747,0.05553343,-0.04450537,0.08799504,0.019236013,0.036182184,0.012006352,0.04250536,-0.0660638,-0.018963536,-0.069558926,-4.708114e-08,-0.024098331,-0.081337914,0.028930584,0.011680652,-0.005820696,-0.038373213,-0.007975415,0.041926894,0.009319917,0.03984194,-0.015073033,-0.018750252,0.014924246,0.093561396,0.040372353,0.061018992,0.09692267,0.10123979,-0.045006357,-0.012396618,0.051568765,-0.027444575,-0.0033704026,0.061786726,0.032212906,-0.04768472,-0.024269976,0.033581547,0.028333627,0.029433511,-0.022741286,0.0067235306,-0.035524234,-0.061229866,-0.009837289,-0.0243806,-0.04090203,0.00616866,-0.037373263,0.024092952,0.060714092,-0.043727927,-0.03516784,-0.005020582,0.014738213,-0.09223196,0.03561932,0.009006842,-0.017605465,0.0020200585,0.04552858,-0.011991061,0.107358195,0.029824283,0.022295563,-0.05354385,0.04780568,0.042377207,0.07968885,0.009018789,0.02123896,0.13250545,-0.045355983,0.0068837567} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.282744+00 2026-01-30 02:01:11.333228+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1950 google ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB 1 t 1953 Go Karts Mar Menor unknown El paseo en los Karts muy bien, lo disfrutamos. La atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuito, dejó bastante que desear. el paseo en los karts muy bien, lo disfrutamos. la atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuito, dejó bastante que desear. 2 2024-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V- I2 CR-N {} {"P1.01": "La atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuit", "V4.03": "El paseo en los Karts muy bien, lo disfrutamos."} {0.0031463893,-0.014631819,0.009817952,-0.059214637,-0.073893644,-0.0046206643,0.08005988,0.043236706,0.03606399,0.017133133,0.08264665,0.022103172,-0.026340231,-0.009384565,0.05866838,0.010556087,-0.0081994245,0.023071205,0.016588423,-0.008291624,0.07607768,-0.069228016,-0.05845034,0.09468071,-0.0927771,-0.034102574,0.030138522,0.038528398,-0.054763794,-0.07103913,-0.09586613,0.02886323,0.060102038,-0.009408551,-0.08148098,-0.01132756,-0.008094772,-0.028987661,-0.03985156,0.018089626,-0.03895778,-0.06894485,-0.039147105,-0.033020165,-0.0088216,-0.05415015,-0.025405826,0.039338134,-0.02503601,-0.06029913,-0.0076274998,-0.04341476,0.059431948,-0.0022727686,0.015326141,-0.06875401,-0.09883448,0.06404575,0.12291582,0.08658922,0.0006984967,0.04849364,0.022761766,0.04097638,-0.012652964,-0.06780351,0.069989376,0.022343526,-0.08281093,0.03658857,0.054334566,-0.07946294,0.0053487937,-0.009047578,0.010536759,0.008422762,0.015824515,-0.028399345,-0.041373055,0.02065717,0.030696072,-0.02848373,-0.023362124,-0.04041489,0.010334699,-0.03204288,-0.026081735,0.028325696,-0.0023915514,-0.065306276,-0.019912148,0.049557902,-0.03627981,-0.016870169,0.070825025,0.027897649,0.020742917,-0.03005213,0.010967062,0.01950032,0.08205801,0.075200975,0.033551108,0.02194498,-0.05314349,0.01976977,0.01662841,-0.038401663,-0.031136813,-0.01553639,-0.044368017,0.039100807,-0.045168154,0.031484976,-0.021071842,-0.026276022,0.011025023,0.02338844,-0.018378545,-0.03344109,-0.016145302,-0.030340899,-0.104158476,0.013160362,0.028093796,-0.005891256,0.064176254,7.204763e-33,-0.07652285,-0.023818016,-0.0033368636,0.019973096,-0.0071868403,-0.031233303,-0.042755254,-0.02845713,-0.07415797,0.008866406,-0.02320256,0.0662108,0.0021405665,-0.011290031,0.0898745,0.017550059,-0.038999468,-0.103355154,0.08769285,0.0438216,0.008548135,-0.062397715,-0.012107665,0.07763714,-0.018890541,0.05267362,0.06712761,-0.0076248995,-0.08292708,0.021434305,-0.07448031,0.015372381,0.01284509,0.009879008,-0.10955214,-0.027473385,0.04346438,0.08042567,-0.027136886,-0.082651384,0.009270152,-0.017547943,-0.03189906,-0.0070460793,-0.022898786,0.016995938,0.04052933,-0.032393664,0.057348575,0.06816366,-0.11463516,-0.036523998,-0.021702427,-0.029733695,0.02289216,0.046693653,0.002150068,-0.03602989,-0.06782843,-0.026164318,0.026594982,-0.02349442,0.009358256,-0.08049076,-0.051960822,0.020548968,-0.013570311,-0.035811275,0.08092989,0.019837916,-0.07884655,0.02845631,-0.046067234,0.0415108,0.04150638,0.04074708,-0.04218779,0.067666724,0.002745025,0.0080214655,-0.023524474,-0.033833187,0.04568681,0.0750326,0.14023122,0.06306988,-0.013673099,0.0065104254,0.027820138,0.14577974,-0.05094742,0.103568904,0.02456444,0.030982858,0.049756262,-9.087102e-33,-0.025742775,0.07840787,0.02718153,0.12689643,0.01496005,0.0075353635,0.04696899,-0.0027142223,-0.0028833838,0.04572754,-0.04873313,-0.12566529,-0.01734876,-0.026618898,0.05978845,0.06504048,-0.009281929,-0.042573605,-0.06163694,-0.067073144,-0.029668355,0.07683077,0.066490956,-0.023722282,-0.0103762625,-0.030515378,-0.060691155,-0.0035058109,-0.12062879,-0.013749467,-0.0020975943,-0.05273965,0.029257681,0.051943075,-0.06521302,-0.05044042,0.031013716,0.089846596,0.0011253254,0.0671333,-0.002730841,0.11579266,-0.0014822115,0.027080985,-0.037053276,0.029356534,0.06262001,-0.19194427,0.009753766,-0.06554994,0.04828809,-0.0016395814,-0.029546987,-0.03313021,0.028166506,-0.01609638,-0.0027762875,-0.0176513,-0.0749877,-0.041800547,0.06811107,-0.030470401,-0.058567714,-0.08608513,0.100714885,0.0152817415,-0.019352999,-0.0061953063,0.078363426,0.023460895,0.06873388,0.0011265102,-0.052985176,-0.021864783,-0.007201869,-0.06369512,-0.16790749,0.013452142,-0.0022009276,-0.011196077,0.056511246,-0.03570556,-0.02656805,-0.07960994,0.018892895,0.004731114,0.013093655,0.07372311,0.003684259,0.01154762,0.0011423028,0.041849423,-0.07241456,-0.06374639,-0.01825982,-4.3701625e-08,-0.007216672,-0.011687781,-0.12668742,-0.017215973,0.00866206,-0.026273854,0.004048196,0.0436638,-0.027206745,0.075002454,-0.040146437,-0.025120236,0.0069873077,0.06238622,0.051487707,0.077513084,0.083884485,0.08191699,-0.0082949065,0.006498425,0.084642485,-0.009467709,-0.07754239,0.10647424,0.017585665,0.022889698,-0.050952528,0.05839671,0.025014846,-0.014076037,-0.031992353,0.014968111,-0.055772264,-0.050351657,-0.07232338,-0.01789879,-0.04613495,0.006753162,0.016988747,0.02389352,0.010092384,-0.038272593,-0.11710887,0.038176358,-0.04023664,-0.057704754,-0.04732022,-0.0118005285,-0.048733205,0.047789313,-0.024080317,-0.048141867,0.04008733,0.018109769,0.03644413,-0.07260882,0.06285272,-0.005482287,-0.03485303,-0.047359984,0.02944318,0.085356496,0.029116865,-0.093323685} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.292914+00 2026-01-30 02:01:11.336079+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1951 google ChZDSUhNMG9nS0VJQ0FnSUNhaHVEbWJBEAE 1 t 1954 Go Karts Mar Menor unknown Mi hijo de 9 años se lo ha pasado genial. Buen precio y un trato bueno. Karts y pista en buenas condiciones.\nRecomendable!!!! mi hijo de 9 años se lo ha pasado genial. buen precio y un trato bueno. karts y pista en buenas condiciones. recomendable!!!! 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {P1.01,O1.02} V+ I2 CR-N {} {"V4.01": "Mi hijo de 9 años se lo ha pasado genial. Buen precio y un trato bueno. Karts y pista en buenas cond"} {-0.029713752,-0.021067673,-0.008498503,-0.016218258,-0.068268225,0.078604676,-0.000889206,0.061485644,-0.09148803,-0.04388588,0.038539816,0.021648098,-0.12298787,-0.048719954,0.040488057,0.010148121,0.0071304715,0.0374682,0.05502206,-0.056692872,0.04604349,-0.033819288,-0.03120581,0.09183825,-0.061495334,-0.060722727,0.047423627,0.028640596,-0.048998054,-0.06345789,-0.028112665,0.07352361,0.05545198,0.0136585785,-0.026752396,0.007946828,0.055055104,-0.05376943,-0.07770374,0.0952887,-0.04521848,-0.009605157,-0.03004963,-0.035440397,0.07585806,-0.07241041,0.015289891,0.06461938,0.012282306,0.021584872,-0.058842648,-0.0039894534,0.057736404,0.025190653,-0.028574757,-0.031003764,-0.04062926,-0.02716927,0.092441976,0.015667662,-0.012819133,0.061724607,-0.08363513,-0.017407268,-0.011293372,-0.024004722,-0.0039992025,-0.014132783,-0.049856346,0.044292644,0.13361734,-0.05413774,-0.0018406758,0.05649687,-0.028484922,0.08646318,-0.0114054335,-0.03697234,-0.115630805,-0.026604908,0.053692903,0.0021294663,0.012504063,-0.04991983,-0.011861726,-0.05960739,0.007012143,0.06287928,-0.029190397,0.00012089747,0.013016529,0.13879092,-0.027487868,-0.008217233,-0.031185936,0.023430297,-0.027817685,-0.055787805,-0.0076692235,-0.008445264,0.087887965,0.030548422,0.07978698,0.0910104,-0.05731617,0.032734673,0.052520268,0.02273702,0.035475552,0.0061323,-0.034941584,-0.008738065,-0.06895013,-0.015390632,-0.07344687,-0.042865794,-0.0041774167,-0.016559247,0.018475462,-0.031992614,0.033067472,0.024376057,0.010950256,-0.05505187,-0.027416248,-0.04545444,0.03188935,5.6547483e-33,-0.11538374,0.0065587163,-0.032798063,0.04505972,-0.027627176,-0.047615748,-0.074685946,-0.067254305,-0.14203064,0.013727698,-0.0805164,0.045801014,-0.042049766,0.00996428,0.08250886,0.012168669,-0.00026687077,0.059829056,0.06722096,-0.004420519,-0.11038996,-0.028675541,-0.0334415,0.025731795,0.018445019,0.08470989,0.012932987,-0.075401306,0.011240153,0.019929197,-0.0005054045,0.04651562,0.0011097972,-0.055959027,-0.10287191,-0.047853135,-0.006390947,-0.0067536696,-0.041291848,0.009108696,0.0074794437,-0.004595011,0.004966016,0.034972776,0.024556678,-0.02145298,0.055244062,-0.010202721,0.08848912,0.007270775,-0.09041873,-0.07032461,-0.047323644,0.018546622,0.047517173,-0.024486272,-0.015174225,0.06241291,-0.02448213,-0.037797805,0.07507369,0.024346642,0.027748987,-0.085880145,-0.06944151,-0.04699584,0.05737392,0.073246144,0.16035803,-0.008611547,-0.025954736,-0.095332,0.021588445,-0.01217532,0.04616783,0.052934162,0.031854063,0.079691604,-0.0058591613,0.06738126,-0.009755017,0.027018536,-0.009547759,0.054692898,0.10005166,0.08547122,0.050463904,0.01877366,-0.06028368,0.09703236,0.045417592,0.060245708,0.0470909,0.0082209725,-0.007352225,-6.434827e-33,0.025377536,0.013467247,0.026554992,0.041617233,-0.055268522,-0.023661828,-0.03716057,-0.03423586,-0.050391126,-0.06341141,-0.037622347,-0.12340853,0.11142206,-0.10067121,-0.07207783,0.026549447,-0.0010307619,-0.02186388,-0.033980966,-0.07487154,-0.01828982,0.06143742,0.0004528912,-0.007472216,-0.0363535,-0.05784487,0.008555413,0.050566606,-0.0520776,0.020509154,-0.015436312,-0.046353865,0.010136726,0.06386743,-0.008481666,-0.008017612,0.07667159,0.07842213,0.030867161,0.04928536,0.017949127,0.062075414,-0.059902526,-0.04578159,-0.048244555,0.006210587,0.0380224,-0.054668996,-0.036125395,-0.06586537,0.090178706,0.02623854,-0.019650146,-0.057349715,-0.006984505,-0.009118321,0.007043435,-0.052409966,-0.05590597,-0.0007958898,0.006146299,0.056986094,0.014899443,-0.015770717,0.07281825,0.0011835136,-0.00636441,0.032393537,-0.004554022,-0.04851309,0.01646875,-0.0058150366,0.01038778,0.09308756,-0.028021995,-0.08294047,-0.032920595,0.0343916,0.06743015,0.06851259,-0.023674136,-0.0115143135,-0.002369299,-0.029765928,0.02763088,-0.070775695,0.02556046,-0.02919841,0.07322495,0.070229426,0.07203779,0.06893257,-0.003030007,-0.035182633,-0.030500403,-3.3150606e-08,0.09936949,-0.060092226,0.010099618,0.028863674,0.012761212,-0.11363238,-0.06919217,0.009717156,0.011619532,0.045583565,-0.06638095,-0.019359574,-0.054707687,0.061253916,-0.008957187,-0.0128740715,0.10034407,0.099998996,0.009244682,-0.013621205,0.050396357,0.043605767,-0.030428847,0.024720676,-0.021846693,0.011653044,-0.011075744,-0.01398584,0.021553814,-0.022606017,-0.0047032163,0.018473921,-0.0712809,-0.072974056,0.000467333,-0.051729724,0.0016877798,0.016727671,-0.06122849,-0.04086717,0.08591396,-0.09912768,-0.11241519,-0.016132325,-0.05706407,-0.06388805,-0.05689834,0.018274581,-0.01604419,0.082568035,-0.06287518,-0.028046122,0.09012479,-0.022932,0.06060506,-0.031191237,0.066727675,-0.019797001,-0.015714148,0.0597175,0.010435433,0.039688934,0.03249415,-0.05103795} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.306704+00 2026-01-30 02:01:11.338876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1943 google ChZDSUhNMG9nS0VJQ0FnSUNhek03cUxnEAE 1 t 1946 Go Karts Mar Menor unknown Magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est super attentif toujours souriant merci à vous magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est super attentif toujours souriant merci à vous 5 2022-01-31 01:52:39.833374+00 fr v5.1 P1.01 {P3.01,O1.02} V+ I3 CR-N {} {"P1.01": "Magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est "} {-0.07920707,0.00200268,-0.0012818851,-0.044499576,-0.028823623,0.019882938,0.034945183,0.14191149,-0.04732548,0.029724725,0.010070626,-0.014149867,0.07086415,-0.07532255,-0.1299971,-0.007194444,-0.02998836,-0.002046296,0.039797563,-0.055378985,0.020706963,-0.06551867,0.028771725,0.048331384,-0.04066684,0.020042367,-0.0764458,-0.00774768,-0.04572577,-0.077314824,-0.0035012208,0.07860856,-0.0004191004,-0.022570726,-0.04244896,0.08431777,-0.007859416,-0.04580838,0.05382926,-0.033797283,-0.06242349,-0.0699002,-0.025603833,-0.065897316,0.050952833,0.026182594,0.036671426,-0.03634587,-0.03944593,0.008589677,-0.020917386,-0.022874964,0.11260326,0.011625856,-0.00067210593,0.04337507,-0.012202791,-0.13640095,0.05816643,0.0052553406,-0.014667836,-0.024771607,-0.073444165,0.0011954288,-0.008509825,0.00011453134,0.001364962,-0.01811822,-0.031082543,-0.008197689,0.0909464,-0.06812057,-0.039159864,0.07475091,0.09450117,0.12042468,-0.03937383,-0.048939843,0.013154682,-0.101127185,0.048091494,-0.05855609,0.037696254,-0.07534146,0.047971446,-0.042630687,0.075655706,-0.039905418,0.023771439,-0.011527742,-0.05071876,-0.013875536,-0.057153292,0.021381268,0.023689197,-0.06216549,-0.0058789384,0.009431565,-0.04953077,0.026974153,0.06575322,-0.04140076,0.029578572,0.06077337,-0.08753467,-0.013463403,0.014599513,0.015213479,0.00054940325,-0.04805857,-0.0030832659,-0.0028641731,-0.086787194,-0.086823024,0.05289932,0.044580575,0.022441546,-0.018370135,-0.08607271,-0.03585088,0.039353423,0.06327387,-0.07125062,0.018379314,-0.0014460325,0.003402004,0.0341245,8.814997e-33,-0.014395272,0.025418183,-0.011816656,-0.0073016547,0.008210501,0.054724395,-0.052865744,0.05002499,0.07944141,0.046307128,-0.039293185,0.09739937,-0.01949179,0.00638842,0.061891865,-0.056847584,0.018415509,-0.06180285,0.06626937,-0.05217003,-0.06343328,-0.021023288,0.018735085,0.10984964,0.10644357,-0.018884681,0.02043764,-0.013644792,-0.1059111,0.055483613,0.025261356,-0.022385733,-0.0056904694,0.002705715,-0.07761114,-0.029985994,-0.0011483599,0.0058613005,0.05179384,0.01052587,-0.0109279435,-0.009279439,0.015808966,-0.04750564,-0.04390167,0.054693073,0.053890664,0.023136757,0.07947242,0.022110831,-0.0307095,-0.097861044,-0.06599768,-0.035574958,0.068323016,0.10625334,-0.06847011,0.053411257,0.033198025,-0.022068921,0.051540453,-0.011806418,-0.027614623,0.07484194,-0.038227003,-0.012042797,0.071055,0.0056997286,0.07052023,-0.0027603477,-0.12094136,0.03730591,-0.010883076,-0.042856574,0.010281371,0.04150226,-0.04149819,0.054524966,-0.011270972,0.009782674,-0.09380717,-0.0033332962,0.031127186,-0.014167,0.09335688,0.037636027,0.02993154,-0.00964422,0.013030385,0.0637455,-0.016418286,0.06496048,0.050850864,-0.0055883774,0.010851903,-1.0774824e-32,0.004356215,-0.008609764,0.016800068,0.064719334,0.025177075,0.060309503,-0.0097444635,-0.013986338,-0.08584092,-0.019484088,-0.036142122,0.026395326,0.05124755,-0.09547724,-0.004407474,-0.034793295,-0.015831394,-0.07736395,0.001613678,0.032972094,0.044731725,0.041121524,0.09264738,-0.03798968,-0.025262265,-0.03429914,-0.033735048,0.0117006665,-0.0056378455,0.06317671,-0.014786511,0.07207313,0.015496051,0.08302663,-0.018526822,0.025974834,0.07492067,0.09315264,-0.03002655,0.040906418,-0.076091506,0.08015396,0.03811364,0.010559576,-0.0036420608,-0.09138267,0.0058217165,-0.08687345,-0.05683864,-0.0382389,-0.051971536,-0.060547836,0.009044801,-0.061270334,-0.008437535,-0.012522258,-0.022349406,-0.13370863,-0.049079467,-0.0635265,0.10581025,-0.012681883,0.0054755076,-0.05408043,0.041651558,-0.00017546867,-0.04751243,0.025842935,0.019150257,0.032955263,0.14278367,-0.05995147,0.014299139,-0.052337073,-0.063872255,-0.03734701,-0.06646584,0.052245863,-0.013506948,-0.025575288,-0.05797592,0.0499002,-0.04744528,-0.029919667,-0.019666284,-0.06506347,0.05153712,0.023887826,8.185905e-05,-0.076057844,-0.02373647,0.046184555,0.016748592,-0.07216552,0.004071444,-4.2278085e-08,0.03132432,0.061988786,-0.09315874,0.061968103,0.10260441,-0.1633455,-0.10819467,-0.039921325,-0.003934225,0.028282326,-0.0070144488,0.023059214,0.021609752,-0.008153563,0.06059987,0.020351829,-0.061467905,0.091616735,-0.02234431,0.02778989,0.0017140049,-0.012604061,-0.003736427,-0.040127568,0.00135108,0.027565632,-0.022609478,-0.10285909,0.0025608116,-0.02842534,-0.010597228,0.030300833,-0.011867793,-0.07919542,0.01573412,0.0022029479,0.0028287745,0.021640485,0.014314189,-0.015468136,0.05721481,-0.029600784,0.043160602,0.030966576,-0.065881245,-0.078816235,0.022187186,-0.0044346554,0.014582884,0.08608163,-0.043542627,-0.040568553,0.089675784,0.025325775,0.08032833,0.05211651,0.041560646,-0.0064878557,-0.049577262,0.013637446,-0.01215128,0.041796908,-0.04372149,-0.0595828} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.219034+00 2026-01-30 02:01:11.312328+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1945 google ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE 1 t 1948 Go Karts Mar Menor unknown Trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi primera visita. Volveré sin duda. trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi primera visita. volveré sin duda. 5 2019-02-01 01:52:39.833374+00 es v5.1 P1.01 {E1.03} V+ I2 CR-N {} {"P1.01": "Trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi pri", "V4.03": "Volveré sin duda."} {0.0885708,-0.019506907,-0.034286607,-0.03426624,-0.11183465,0.016272645,0.05952238,0.049675293,-0.026369229,0.023238624,0.08851531,0.013304291,-0.09850083,0.04267369,0.06838505,0.0051930775,0.03930074,0.055243302,0.010325031,0.011279806,0.110790595,-0.08577205,-0.055062603,0.11057659,-0.074946046,0.015455995,-0.020568814,0.05535228,-0.030899173,-0.063049994,0.022161525,0.08305656,0.06325228,-0.013669576,0.051902942,0.009715262,0.030910794,-0.0861347,-0.022771476,0.08000808,-0.068931825,-0.015796255,-0.018545773,-0.035009343,-0.01791147,-0.13711153,0.0057237954,0.06559301,0.036981165,-0.016856158,-0.029853206,0.014301511,0.018824998,-0.00074080087,-0.04069806,0.037242245,0.013447301,-0.007466422,0.06047181,0.025929587,0.010293456,0.04415406,0.009133694,0.029040774,-0.07997501,-0.0089671705,0.0029923562,-0.0075207497,0.01140282,0.0031714265,0.06844291,-0.100626655,-0.03363817,0.048735764,-0.044324752,0.019767385,0.019198813,0.04899412,-0.024134772,-0.044245027,-0.025880428,0.01786037,-0.016007872,-0.01801143,0.050694082,-0.009787899,-0.02152604,-0.0035532217,0.028987627,0.020104649,0.0012518519,0.08102824,-0.0972817,-0.015056404,0.013314155,0.027608626,-0.042932954,-0.1513915,0.055306625,0.007568993,0.05746983,0.008278798,0.08227065,0.09528782,-0.052790634,-0.017787557,0.03429642,-0.07908059,0.0015095178,0.09740203,-0.074092336,-0.06737591,-0.02549755,-0.01679714,-0.036990914,0.020350164,0.005542365,0.026985047,0.013423705,-0.098128416,0.09987024,0.0068086404,0.025718402,-0.06528709,-0.0011626057,-0.07264886,0.015498769,9.198964e-33,-0.03554551,-0.009951333,-0.023226822,0.09383621,-0.022295136,-0.0049103266,-0.023998206,0.010208112,-0.036267612,0.021184536,-0.05237753,0.06600913,-0.013918962,0.014394231,0.09724168,0.067483716,0.030989291,0.055296898,0.06449342,-0.02941281,-0.019391337,-0.04777486,0.014081516,0.0046475763,-0.0046568373,0.036586095,0.019221837,-0.082259916,-0.029722875,0.04405126,0.03408122,-0.0005355811,-0.033004966,-0.047697764,1.5203185e-05,-0.04754501,0.0139387315,0.01504859,0.021358456,-0.0148094585,0.0072959876,0.022294281,0.035504837,-0.022893932,0.056217242,0.013291885,0.074954726,0.02967839,0.16293412,0.067657754,-0.056278363,-0.1406409,-0.04881495,-0.016736623,-0.030576512,0.023145473,-0.048794933,0.057223074,0.014517682,-0.077961095,-0.023900572,-0.013592793,0.0020843127,-0.004057243,-0.032581024,-0.062498525,-0.02435959,0.0288851,0.13672478,-0.0014816195,-0.08349225,-0.0731559,-0.06727845,-0.016333641,-0.035824813,-0.04440318,-0.03627179,-0.012383591,0.02130262,0.06293524,-0.06794536,-0.00024563097,0.06721088,-0.011903443,0.10075661,0.11137565,0.03233236,0.01320851,-0.033700675,0.033826917,0.04125755,0.09595794,0.0084299715,0.008710044,0.064283304,-1.0625466e-32,0.039745923,-0.032723702,0.036990214,-0.012770174,0.016314417,0.018247759,-0.1302163,-0.01745274,-0.009862243,-0.0064489464,-0.13740256,-0.08396086,0.08085156,-0.0225969,-0.05189233,0.06829359,0.027805975,-0.060394168,-0.05029713,-0.0055320766,-0.06141422,0.021587959,0.03275019,-0.03645959,-0.007158694,-0.10541919,0.054705977,0.0014283316,-0.021297961,-0.012774052,0.038585637,0.03982498,-0.1251989,0.049782153,0.0318954,0.041453157,0.09838517,0.06916867,0.025141666,0.030707266,-0.02102295,0.02320868,-0.0042451113,-0.0073023844,-0.008189553,0.06430743,-0.017530309,-0.06799346,-0.03822146,-0.05881248,0.012424593,-0.049338005,-0.036739517,-0.02250408,0.017862955,-0.031773165,-0.0014808046,-0.08163978,-0.052077394,-0.033591103,0.082246885,0.032810826,-0.053505465,-0.07497581,-0.0066866283,0.052502714,-0.04102257,0.0154085,-0.05276898,0.041451268,0.037685126,-0.046707492,-0.0683485,-0.040411,-0.06682588,-0.081379294,-0.08142349,-0.05509823,0.040831894,-0.004979047,0.019660493,-0.0033460977,-0.021449473,-0.10051292,-0.019878982,-0.06349836,-0.054999806,0.018493157,-0.046409786,0.08218608,0.026655592,0.015866915,-0.019135196,-0.07411695,-0.060938004,-4.234049e-08,0.02494735,-0.022648616,0.003993433,-0.034099944,0.017762508,-0.048588045,-0.057427928,0.09074788,0.08233544,0.021918943,-0.066347964,-0.0554911,0.005257722,0.0723582,-0.0059999777,0.072758466,0.10974518,0.084184445,-0.006628912,-0.007658963,0.0854119,-0.049335778,-0.021988258,0.03327587,-0.011454662,0.037548896,-0.04643128,-0.009727593,0.0076523283,0.020617444,0.003143098,0.02664557,0.025020178,-0.04410397,-0.022922669,0.014698866,0.014015682,-0.03182109,-0.028809952,-0.12124704,0.05756596,-0.004569847,0.033526286,-0.012461193,-0.027301153,-0.08502842,-0.03929728,0.012490657,-0.0026799226,0.015881581,-0.044908088,-0.06757287,0.0030893805,0.055307284,0.019403215,0.043345124,0.070760764,-0.021279797,0.01690648,0.03124829,0.051161554,0.05623114,0.018623231,-0.068161555} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.239787+00 2026-01-30 02:01:11.319965+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1961 google ChdDSUhNMG9nS0VJQ0FnSUR0aXJuTXp3RRAB 1 t 1964 Go Karts Mar Menor unknown Para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tienen en su local para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tienen en su local 2 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V- I2 CR-W {} {"O1.02": "Para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tie"} {-0.0031202869,0.05245024,-0.015999267,-0.08838335,0.004767452,0.004249218,0.061548654,-0.045340884,0.019674022,0.040553287,0.0325227,0.03035822,-0.05796821,0.004333875,0.039427295,0.029468186,-0.04791649,0.00024392677,0.014696655,0.04396324,0.0702176,-0.027201727,-0.016064644,0.069855005,-0.048167586,-0.0222887,0.043323826,0.032893695,0.001283407,-0.014655003,0.046943918,0.085015014,-0.037469316,-0.02399636,-0.0018150312,-0.0013091093,0.046602074,-0.07467011,-0.050713677,0.076404564,-0.04443403,0.04598618,-0.06751305,0.0024086412,-0.025458299,-0.07324828,-0.013067441,0.026341973,0.0067271,-0.087314226,-0.04711487,-0.03739284,-0.069436595,0.07150351,-0.041253574,0.088552885,-0.02128273,0.02384187,0.0047901142,0.04579219,-0.026171617,0.035895202,-0.104573876,0.016600259,0.005505103,-0.010334725,0.06117124,0.022743393,-0.08754614,0.02415198,0.039384358,-0.03326577,-0.0010935162,0.056531534,-0.014455187,0.040780198,-0.009816953,-0.04480096,-0.11422872,-0.04772903,0.0042104083,0.0058125188,0.016702428,-0.09421994,0.022836806,0.021779023,-0.00036693344,0.06466073,0.12459332,3.4758534e-05,0.012020521,0.068422906,-0.08169746,0.03968075,0.04240135,0.041374467,0.10613258,-0.083043374,0.045478895,0.04203231,0.10409569,0.058041252,0.027816799,0.015616172,-0.018202191,0.027222585,-0.009181604,-0.014260711,0.015398118,0.052127726,-0.0136569785,-0.060412984,-0.01937062,-0.04001097,-0.094946116,-0.039817322,0.029461369,-0.015304789,-0.070325606,-0.09242067,0.02649862,0.014133881,-0.077650614,0.024689268,-3.4448321e-06,0.02241147,-0.056644727,4.9663116e-33,0.022471337,-0.043623254,-0.02751044,0.050957173,-0.09557727,0.04199186,-0.0018296727,0.004787168,0.002430307,-0.035609666,-0.040038377,-0.0647878,0.021179188,-0.035234816,0.0004142509,0.04042998,-0.029170642,-0.0056980783,0.031217877,0.09751311,-0.086061694,-0.009910317,-0.02805457,-0.06720913,-0.0060326527,0.046308864,-0.017573556,-0.032674585,-0.05817957,0.050904877,-0.038933948,-0.010434257,-0.033631433,-0.04720896,0.027269619,0.008771655,0.064049914,0.052761655,-0.021639816,-0.06062735,0.06905848,-0.014376691,-0.048349835,0.048953094,0.005436046,0.019409312,0.048812073,-0.042774476,0.04825347,-0.02187507,-0.076550566,-0.08484195,-0.086988404,-0.06820296,-0.009980433,0.022777012,-0.060982298,0.01376888,0.0022429668,-0.043097693,0.00968996,-0.054897476,-0.020437423,0.005797726,0.012899982,-0.054137077,0.03170492,-0.0025968093,0.1510443,0.04017958,-0.1006705,-0.061376665,0.00599166,0.085599504,0.00574968,-0.01247871,-0.041481555,0.065884955,0.057395075,0.044502687,-0.018133149,-0.0047629033,-0.03363486,0.04429697,0.08218821,0.08089918,0.0491436,0.0153715145,-0.03102235,0.05858013,0.025291758,0.11898494,0.13123341,-0.109142944,0.07484344,-7.2924716e-33,-0.028039021,-0.003934182,-0.06506547,-0.0063415384,0.006783997,0.029256139,-0.04082944,0.047088664,-0.017985014,-0.06949742,-0.05962826,-0.11125795,0.08049653,0.029216817,-0.017444747,0.041891556,0.049740314,-0.09466228,-0.025671082,0.013220093,-0.044971216,0.028772173,0.047545534,-0.03415136,-0.01569803,-0.06746611,-0.003666521,0.048639555,-0.10818166,0.019959055,0.12356408,-0.047912348,0.011950866,0.062245503,-0.03564641,0.09275566,0.040435582,0.046853468,-0.04156375,0.025157401,-0.029844163,0.0012893066,0.035560083,0.008153794,-0.059608456,0.046954434,-0.0025329501,-0.08450116,-0.15196924,-0.023934208,0.061934557,-0.023668788,-0.0770498,-0.0532404,0.0653045,-0.05175176,-0.05349245,-0.09682727,-0.070285745,0.0031087415,0.0937996,0.04418704,-0.043314837,-0.057339005,0.02193761,0.01972048,-0.009053069,0.020887988,-0.0053680358,0.076801814,0.0695911,0.02605425,-0.07590016,0.01580078,-0.023943922,0.0051644705,-0.056219835,0.069798976,-0.0027143063,-0.014127487,0.006374414,0.014248581,-0.047750328,-0.027606897,-0.038249325,-0.0054809605,-0.030298997,0.026806114,-0.03965591,-0.049458813,-0.0143962605,0.037416413,-0.07857842,-0.04864682,-0.0623382,-2.99723e-08,0.022931969,-0.052125033,-0.081843995,-0.01599755,0.009224275,-0.01450823,0.029976912,0.06879292,0.050643988,0.11659266,0.021106739,-0.051332034,0.032810695,0.08363772,-0.05495763,0.012063937,0.046472773,0.08152381,-0.043552943,-0.05445962,0.10154846,0.007372464,0.0015278569,-0.015963012,0.02025858,-0.0051307413,-0.059876762,0.043772135,-0.0071560224,-0.023407482,-0.0027852189,-0.04867978,-0.031388305,-0.018355843,0.0077048936,-0.017967476,0.011920965,0.04476066,-0.0007943094,-0.03818999,0.11552007,-0.036214992,-0.026527038,0.033485267,0.00841277,-0.13688979,0.043250892,0.0007077029,0.0048141037,0.04881018,0.0017540812,-0.014842265,0.04778888,0.00046343546,0.08115091,-0.10653143,-0.047909584,0.026944038,-0.08043789,0.015116605,0.036657896,0.10961709,-0.019300967,-0.027546499} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:17.535996+00 2026-01-30 02:01:11.375857+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1963 google ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE 1 t 1966 Go Karts Mar Menor unknown El circuito es muy bueno y el servicio también pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida el circuito es muy bueno y el servicio también pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida 4 2024-01-31 01:52:39.833374+00 es v5.1 O1.01 {E1.02} V- I3 CR-N {} {"O1.01": "pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida", "O1.02": "El circuito es muy bueno y el servicio también"} {-0.025422404,0.016454816,-0.010383943,-0.03513884,-0.06689147,-0.012598894,0.04948522,0.023195907,0.038807753,0.022661613,0.069281906,0.01965869,-0.009536029,-0.0036666049,0.078464,0.04343282,-0.019400248,-2.0413407e-05,-0.024539689,-0.05701854,0.12381362,-0.017186055,-0.0924303,0.052663084,-0.081861824,-0.0148771675,0.023050195,0.033213373,-0.057467975,-0.11800773,-0.06599132,0.10069007,0.049425665,0.008030127,-0.090740785,0.03783798,0.008910662,-0.047409546,-0.0351763,0.021772554,-0.09362395,-0.05510078,-0.024596166,-0.016948229,0.019315552,-0.07604262,-0.008777759,-0.01691974,0.020752233,-0.074752,-0.012016596,-0.04123523,0.012639944,0.013301986,-0.041041687,-0.03295844,-0.02669772,0.06396981,0.13698566,0.056987174,0.020939382,0.06646333,-0.010313922,0.068542995,0.05947693,-0.07556748,0.029340362,-0.031813014,-0.08238288,-0.03811294,0.040080786,-0.06907508,0.040330682,0.01873406,-0.013288663,0.043158304,0.03346784,-0.0033728075,-0.025147522,0.0058224066,0.026986437,-0.017042005,0.017670441,-0.04731286,-0.007772243,-0.033346117,-0.026665565,-0.0010901195,0.024994213,-0.034484446,0.039885666,0.024303429,-0.000942895,0.011398344,0.03187034,0.011471484,-0.008097949,-0.11181133,-0.041319136,0.023096869,0.082748614,0.09303225,0.075137325,0.06367428,-0.037604097,0.05217032,0.016510887,-0.0042504626,-0.0014009207,-0.02086848,-0.06643729,-0.0032526662,-0.07236019,0.015870078,-0.051317733,-0.017807798,-0.054222036,0.0050938516,-0.020214187,-0.035626445,0.02527423,-0.01827018,-0.08876878,0.006356694,0.019593515,-0.01668171,0.09661467,9.809403e-33,-0.051636845,0.022515392,0.006468812,0.010086191,0.03975446,-0.022074101,-0.069271095,-0.0072292886,-0.037225224,-0.013591684,-0.018960655,0.055772528,0.04712252,-0.019443618,0.13157903,-0.0001565502,-0.035852123,-0.074356265,0.076113716,0.041325785,0.012818896,-0.06043636,0.043329023,0.055915534,0.023420203,0.08933978,0.055740904,-0.055053785,-0.07572418,0.049117632,-0.003709611,0.029218253,-0.010811565,0.0023045316,-0.08983269,-0.010413066,0.053698827,-0.00872983,-0.0191567,-0.032447603,0.0008500592,0.0079684295,-0.0062135668,0.059299033,-0.050396968,-0.060976185,0.040506806,0.023015123,0.07804069,0.081495404,-0.13791342,-0.06421346,-0.051083747,-0.04249416,0.054319486,0.0737355,-0.0024117432,0.0657937,0.021827433,-0.05654089,0.053749062,-0.027906807,0.050506786,-0.0143913105,-0.028465552,-0.011108866,0.013188352,-0.017843165,0.099727616,-0.0037045965,-0.078100644,-0.031414285,-0.016647216,-0.0041421694,0.017759932,0.0243157,0.0015550737,0.039457418,0.011647291,0.015404314,-0.070345886,-0.008912043,0.011782039,0.018928979,0.15155338,0.0371765,0.009870399,0.027213994,-0.018481523,0.16107811,-0.02759408,0.11071028,0.03320625,-0.008487932,0.04540504,-1.0752752e-32,-0.06570022,0.040758837,0.053232,0.03193427,-0.010405349,-0.040454283,0.0022239317,0.006867477,-0.025374832,0.025137374,-0.038151488,-0.07504689,0.07655241,-0.05932199,-0.014298781,0.013703151,0.010334975,-0.0005421024,-0.087633654,-0.02026568,-0.036156762,0.11096075,0.0077070016,-0.03719103,-0.05178074,-0.024071017,-0.08585916,0.011078916,-0.12640461,-0.0032560884,0.037520513,-0.07944992,0.013228363,0.07961639,-0.07476478,0.028570948,0.09800903,0.0684893,-0.008355702,0.03045633,0.02704521,0.0829708,-0.053782377,-0.03796504,-0.07959251,0.022497347,0.023247726,-0.1087345,0.056736737,-0.05483505,0.099004515,-0.013075177,-0.02268433,-0.03387604,-0.02807571,-0.0039638723,0.014210932,-0.031340152,-0.0985492,-0.039308507,0.05302854,-0.028073302,0.023290858,-0.046034496,0.08814344,-0.00865497,0.013800993,0.09198523,0.058528155,-0.0102851745,0.061572526,0.007022765,-0.09479566,-0.005978098,-0.006439787,-0.06856928,-0.13396005,-0.012837212,-0.054233316,-0.044965316,0.050276473,-0.040013205,-0.05875573,-0.065970145,-0.0035881342,-0.057801705,0.010543578,0.05707435,0.033468768,-0.032724086,0.0055671874,0.018219223,-0.09670026,-0.018222803,-0.014615773,-4.1970235e-08,0.017127275,-0.0014543623,-0.037381105,0.0018445494,0.054756794,-0.068866536,0.01118086,-0.0015272204,-0.026876641,0.00870324,-0.04806055,0.02308593,-0.022017218,0.026616542,0.0622817,0.029716616,0.06394827,0.07231684,0.008666691,-0.008054013,0.12485749,-0.03592279,-0.003946997,0.07224473,0.06310684,0.05240675,-0.053270876,0.0108462935,0.027583184,-0.03631112,-0.050186273,-0.01588885,-0.058272682,-0.05391209,-0.063405484,-0.004118606,-0.04343604,-0.019071247,-0.009614068,0.0027343805,0.020673567,-0.050311558,-0.06880349,0.050687235,-0.09323041,0.01059553,-0.047445163,-0.0064127543,-0.04256246,-0.039591845,-0.07983941,-0.08837464,0.03206195,0.028204314,0.047731638,-0.026594995,0.07608652,-0.03437372,-0.0018012943,0.0018576958,0.045350157,0.061506893,0.017846683,-0.14603361} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:31.943746+00 2026-01-30 02:01:11.383268+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1960 google ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE 1 t 1963 Go Karts Mar Menor unknown Mes enfants ont adoré le karting Mar Menor, on a payé 10 euros pour 8min. mes enfants ont adoré le karting mar menor, on a payé 10 euros pour 8min. 4 2025-01-30 01:52:39.833374+00 fr v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Mes enfants ont adoré le karting Mar Menor", "V1.01": "on a payé 10 euros pour 8min"} {-0.0823996,0.029955812,-0.0014307846,-0.001473525,-0.021915745,0.04601686,0.023690889,0.12035664,0.0754242,0.03195686,-0.020164207,-0.049608238,-0.032780837,-0.02247208,-0.051108114,-0.09437862,-0.015404693,0.0077207065,0.03338231,-0.022586068,0.0064794095,-0.074532636,-0.04117241,-0.0028424852,-0.05683562,-0.047836117,0.02444579,0.004036453,-0.016423915,-0.034834344,0.041176643,0.029214127,0.0011231654,0.011841481,0.04550576,-0.018388398,-0.019586261,-0.115039915,-0.035999816,0.008813619,-0.025612338,-0.04069649,-0.061571587,-0.06252087,0.045110077,0.075474925,0.032925285,0.051640097,-0.06577216,0.024885867,0.005596027,-0.010337026,0.10346494,-0.05952452,0.010795082,-0.040552635,-0.032281224,-0.025438173,0.10280709,-0.017096486,0.012821627,0.0006110025,-0.080665,0.035555862,-0.15369636,-0.069638,-0.02892591,0.019622097,-0.007607785,0.056792695,0.10936373,-0.06846293,-0.11584124,-0.02972219,0.018248584,0.045260105,-0.04192066,-0.014085143,-0.062252108,-0.1038308,0.017744293,-0.08406955,-0.0024001743,-0.031203253,0.08009483,-0.07774611,0.08930438,0.02125954,0.07512674,0.008362722,-0.051263243,-0.0028700393,-0.0952001,-0.03897473,-0.011276846,0.017709794,0.0142881395,0.0695338,-0.07422757,0.017005334,0.00619667,0.042096697,0.007246651,0.11700909,-0.084116414,0.0042317044,0.05857947,0.026802495,0.016509583,-0.015358699,-0.05020099,-0.033206917,0.00017222046,-0.09166997,0.031365447,0.03258251,0.033430703,-0.05302499,0.03520702,-0.02070692,0.0067747124,0.026520316,-0.05997969,-0.030949187,-0.010646335,-0.034372956,0.061260603,1.1999041e-33,-0.119271606,0.011413088,0.003954907,-0.025401078,-0.020616647,-0.058447186,-0.054478187,0.01795512,0.048060764,-0.06263077,0.0065962994,-0.017488737,-0.08164763,-0.037525017,0.032918032,0.0023597314,0.053929713,-0.03718885,0.05395871,-0.021780675,-0.047465716,-0.08178302,0.038401168,0.046174996,0.02705474,-0.042422492,0.047451396,-0.07862865,-0.009974608,0.011377045,0.03912256,0.0076076016,-0.0059713703,0.009758513,-0.016055493,0.019262612,0.069870815,0.033013403,0.0021026689,0.044243928,0.031417187,-0.04911076,-0.0108732665,-0.08883202,-0.020401666,0.13608168,0.024446923,-0.0013216713,0.03892851,-0.027734982,-0.03314711,0.033299293,-0.009619722,-0.012571277,0.0051165847,0.06462456,-0.004761919,-0.0016172911,-0.041683838,-0.021065934,0.053193543,0.0028517921,0.009342451,0.017286478,-0.07369996,-0.0081815785,0.046535887,-0.01564424,0.07477513,0.0063145766,-0.084518865,0.07444613,0.07936434,-0.07178008,0.071020044,0.086152814,-0.07232875,0.09297784,-0.03244953,0.084246576,-0.005214938,-0.044978734,-0.006029583,-0.0057400255,0.11306761,-0.0802969,0.011666644,-0.003601501,0.02493421,0.0011021848,-0.030595379,-0.062697016,0.043285012,0.052140407,0.059779063,-3.593028e-33,0.033055592,-0.016852753,0.054151036,0.11128855,-0.01189097,0.11333705,-0.0057402165,0.099841684,0.016864344,0.0011930652,-0.072876014,-0.05690996,0.08864882,-0.0745065,-0.029838277,0.0046708398,0.02319076,-0.0049054297,0.010592792,0.013311956,0.0012674564,0.0412505,0.06766712,-0.025659483,-0.001976204,0.025178758,0.051427443,0.03669942,-0.13651389,0.09432703,0.034570437,-0.009291504,-0.0038939249,-0.028891327,-0.019065822,0.049418684,0.06676636,0.1224212,-0.011651267,0.08498701,-0.0062325876,0.020196546,-0.018513292,0.010335402,0.086330675,-0.079010345,0.004479057,-0.09404282,-0.029450627,0.01223928,0.0705858,0.009535621,-0.064473785,-0.06707198,0.049733598,-0.04346361,0.035717603,-0.055873472,-0.11196264,-0.032836933,0.04235677,0.1025263,-0.017732942,0.02309549,-0.023725165,-0.05182331,-0.07777013,-0.005425612,0.01604483,-0.020530928,-0.011173269,-0.01485733,0.05407637,0.05403283,-0.03749794,0.011463269,0.06591398,0.025506888,0.0568141,0.042673342,-0.11717315,-0.055993136,0.011289274,-0.025409376,-0.029706221,-0.016888695,-0.032076187,-0.03743995,0.06270574,-0.057594534,0.026732776,0.031979606,0.047671214,0.015667675,-0.015133468,-2.4773302e-08,0.08389073,-0.076548696,-0.038515206,0.0055406685,0.08340706,-0.19011906,-0.06494102,0.013561271,-0.034851294,0.0729568,-0.012594345,0.0019349976,-0.008069006,-0.0031294473,0.01516982,0.041005157,0.029792149,0.046062212,-0.01834358,-0.026253087,0.047043227,-0.0059836204,-0.02980886,-0.043752566,-0.010286792,-0.0025111744,-0.0070119137,-0.09548793,-0.016646774,-0.04652972,0.058271714,0.05634188,-0.035336427,-0.025596758,0.044950653,-0.05056775,-0.005683258,0.043898392,0.007337629,0.10413383,0.02658991,-0.011353729,-0.015539533,-0.03990658,-0.01729826,0.060114183,-0.046770405,-0.0121135255,-0.0043237065,0.054113586,-0.042683885,0.039433368,0.06403621,-0.018515026,0.058925893,0.009544171,0.014197808,-0.016463712,-0.0637658,-0.061179433,-0.02419122,-0.00014441174,0.030491725,0.025799686} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:13.400735+00 2026-01-30 02:01:11.372893+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1964 google ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB 1 t 1967 Go Karts Mar Menor unknown Fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌. Tiene cafetería con terraza fantástica fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌. tiene cafetería con terraza fantástica 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {A3.01} V+ I3 CR-N {} {"O1.02": "Fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌.", "O2.03": "Tiene cafetería con terraza fantástica"} {-0.040726513,0.0083538415,0.006916243,0.01977336,-0.0741971,0.022786342,0.0026660033,0.057135932,-0.05930269,0.043297824,0.035546247,-0.014811568,-0.018902194,0.034392092,0.0045288107,-0.052583706,0.03101366,-0.0067081335,0.017676178,-0.040988587,0.056872804,-0.056333896,-0.05430848,0.0866135,-0.032112982,-0.038632322,0.033291526,0.071930796,-0.022134319,-0.05966145,-0.06384875,0.11352681,-0.0044257487,0.03618717,0.018416472,0.033599596,0.104955375,-0.107880816,0.033544797,-0.05003848,-0.07371916,-0.013248732,2.051848e-05,-0.027634155,0.008442939,-0.04497932,-0.059649188,0.041511126,0.049651306,0.008264829,-0.06043998,-0.054107092,0.025967432,0.022684682,-0.06590958,0.07022385,-0.034220476,-0.054367546,0.033147763,0.08709811,-0.051896613,0.032826822,-0.052892227,0.036570545,0.092143394,-0.007659962,-0.056670036,0.079542086,-0.09631912,0.10052071,0.03714864,-0.043452296,0.09157121,0.010320464,0.012891453,0.024668787,-0.014691024,-0.026495004,-0.054266598,-0.030096598,0.05435655,0.026601588,0.070556045,-0.05606256,-0.07089651,-0.015780628,-0.02718171,-0.0027352301,0.024684252,-0.0068265013,-0.008776256,0.045335293,-0.035967473,0.0025753235,-0.009082405,0.024005923,-0.041741703,-0.09050275,0.04008197,0.037219066,0.04934156,0.019555664,0.07073219,0.037260547,-0.059259377,-0.013295314,-0.00055333815,-0.06067144,0.036095593,0.022726838,-0.02980947,0.035941225,-0.020396492,0.0044195345,-0.08714797,-0.012452099,0.024308864,-0.06373972,-0.035605766,-0.046852157,0.10564536,0.054437187,-0.013267644,0.004991269,0.010405316,0.025936397,0.07746376,8.241726e-33,-0.007761214,-0.0077226325,0.0068729385,0.007483417,0.06745978,-0.025860481,0.00013564072,-0.053212456,-0.0625246,-0.031895183,-0.099638134,0.009614494,0.033495244,-0.058264293,0.084643915,0.09929031,-0.039352816,-0.0019292124,0.048988014,0.06586159,-0.013441795,-0.05583347,0.039013788,0.0021336419,-0.043026164,0.03829027,0.004506096,-0.024871893,-0.021178257,0.0560431,-0.051990137,-0.009605451,-0.050594267,0.07255298,-0.017849397,-0.112425275,-0.006713084,0.0395844,0.012945955,0.00089682115,0.054779466,0.014369229,-0.02264292,0.060926117,0.016075503,0.03573844,0.05552179,0.047868047,0.014939024,0.019716049,-0.088796854,-0.08535892,-0.0930621,-0.07501079,0.0032443109,0.0096173035,0.00211695,0.03102947,0.006932242,-0.0842558,0.08618319,-0.005291009,0.04898598,-0.08076618,0.015385008,-0.046432283,0.050628662,0.06089138,0.13915184,-0.007523107,-0.027965512,-0.046670027,0.0065843374,0.034826778,0.062659524,-0.016750023,0.02989936,0.022276873,-0.014466027,0.045654185,0.009883257,0.018204415,-0.0041353307,0.023084354,0.014035676,0.0031446556,0.018812072,0.047388937,-0.005112635,0.020498062,-0.012358633,0.058391545,0.044258777,-0.023007188,0.03507746,-7.653824e-33,0.07224325,0.026932597,-0.001354758,0.12747486,-0.048175186,-0.08655391,-0.10178384,-0.004433885,0.030709038,-0.019413194,-0.042035505,-0.0610197,0.13436554,-0.061567336,-0.07582534,0.07537674,0.035598233,-0.035443578,-0.0978339,-0.03121592,-0.0027699787,-0.015621324,-0.040518906,-0.024583945,-0.044356316,-0.03486522,-0.0048883073,0.06920863,-0.10619125,0.047114313,0.034571066,-0.06069402,-0.034154482,0.027535554,0.011187064,0.01965692,0.009925029,0.0010278185,-0.06308765,0.032845013,0.06338546,0.04568908,-0.0036590898,-0.003724944,-0.030595204,0.053812522,-0.03216648,-0.16906704,-0.06978331,-0.100013584,0.043632608,-0.01377513,-0.07118434,-0.06711926,-0.027612621,0.02341084,0.055019297,-0.0645614,-0.08437899,0.0062916395,0.056440208,-0.019661637,-0.025588281,0.019951576,0.04552637,-0.039209053,-0.018794827,-0.02814402,0.026802432,0.10408296,0.05472195,0.03799794,-0.020391526,0.082119934,-0.09175827,0.0059916843,-0.03819421,0.030530574,0.015143341,0.020381493,-0.003238109,-0.017677682,-0.0017598392,-0.041882273,0.030905042,0.019490968,-0.018367972,0.10904889,0.0061770882,0.034044832,0.08332925,0.025408586,-0.012781122,-0.04265632,-0.017895013,-3.1750726e-08,0.06399616,-0.075204216,-0.09740429,0.03897534,-0.02733203,-0.11726262,-0.024622269,-0.008068459,0.06321043,0.08866015,-0.09510867,0.028878476,-0.00857291,0.040457748,-0.010017084,0.050258305,0.085963346,0.13478282,-0.039964326,-0.05066188,0.05332324,-0.009503652,-0.039508525,0.022050008,-0.006409463,0.055543777,-0.03987382,0.024131034,0.06585598,-0.016789041,-0.00783905,-0.0065470305,-0.048917916,-0.060601905,-0.0999286,0.016776526,-0.027113026,-0.0007252527,-0.008312352,-0.02957134,0.097387105,-0.012861925,-0.10082004,-0.012528306,-0.060260605,-0.018060599,0.02481988,0.0066269557,-0.045795258,0.02246753,-0.060826775,-0.09105888,0.07244568,0.020421384,0.091305226,-0.011170911,0.043674,-0.05967391,0.0022831562,-0.0038272652,0.01996962,0.10998476,-0.043783292,-0.048098933} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:38.600503+00 2026-01-30 02:01:11.386218+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1837 google ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE 1 t 1840 Go Karts Mar Menor unknown Circuito divertido, pantalla con resultados, buena relación calidad -precio. La 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la dirección de los coches estaba muy dura. circuito divertido, pantalla con resultados, buena relación calidad -precio. la 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la dirección de los coches estaba muy dura. 4 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {O1.02,O2.03} V+ I2 CR-N {} {"O1.02": "La 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la direcció", "V4.01": "Circuito divertido, pantalla con resultados, buena relación calidad -precio."} {-0.008409113,0.038478762,-0.0027377708,-0.10791503,-0.1056131,-0.028105102,0.03246852,0.049658276,0.02399581,-0.004048341,0.07749318,-0.07748046,-0.074289955,0.0033501803,0.023433328,0.0061813,0.004089098,0.026367571,0.04174519,-0.06357456,0.13403195,-0.016661083,-0.07374358,0.08195052,-0.077063315,0.03349508,-0.016068917,-0.015911315,-0.086831875,-0.15237299,-0.10435154,0.074463844,0.061944492,-0.031080674,-0.084900275,-0.009642862,-0.0006135234,-0.030230492,0.01702004,0.076091394,-0.050866153,-0.03882793,0.040668175,-0.064472556,0.04270105,-0.026382541,-0.037824176,0.017847553,-0.005271718,-0.08991681,-0.018205343,-0.03288527,-0.040952086,0.0011040084,-0.008931445,0.010627615,-0.024822854,0.017546957,0.024740208,0.07097369,0.02550861,0.02278086,-0.052007858,0.0500315,0.022243084,-0.043018237,0.0635601,-0.016421102,-0.031654652,0.055763155,0.08287014,-0.055179402,0.04177555,-0.09903898,-0.0054416703,0.028988348,0.0130282985,0.033747885,0.046235234,-0.079344265,-0.019364715,-0.005690954,-0.07372927,-0.067007594,0.06025,0.024522658,-0.06710313,0.0039113373,0.051512152,-0.10592368,-0.031652518,0.023322565,-0.046586383,-0.0046923202,-0.079400755,-0.012402705,0.038666952,-0.12465817,0.025298966,0.043099117,0.047413465,-0.0010426973,-0.014659651,-0.046454005,-0.0025190394,0.031201804,0.10389405,0.025878843,0.025882948,-0.01175451,-0.038552385,0.020921402,-0.019885313,-0.049932044,-0.046384145,-0.012924365,0.01717763,-0.05299844,0.1062519,-0.07536257,-0.027313942,-0.02198749,-0.09597365,0.0258451,-0.020301705,-0.054552205,0.08039409,8.416274e-33,-0.032410674,-0.022144908,0.011844604,0.021463076,0.00487012,0.03250583,-0.0016625486,-0.031863824,0.0131956935,0.010903667,-0.03345756,0.07802753,-0.009212611,0.036703605,0.07071758,-0.038974233,-0.017988019,0.005405159,0.086004995,0.053824063,0.005487845,0.05569471,-0.027489841,0.0756331,0.07992232,0.07854015,-0.020821385,-0.04981374,-0.101619646,0.054409713,0.04636295,0.027806176,0.055541325,-0.01871201,-0.072539166,0.039826192,0.02903483,0.047604732,0.05467656,0.055576548,-0.027481431,-0.031480767,-0.04476375,0.062459033,0.0044367285,-0.030567449,-0.035280205,0.0770567,0.101796724,0.041133523,-0.0970335,-0.08322081,-0.027042203,0.000570862,-0.0022681272,0.051617313,-0.042589355,0.08922976,0.055174135,0.04055617,-0.018793797,0.085975215,-0.044822548,-0.071437515,-0.052685544,0.05392947,0.035946354,-0.039987236,0.11074388,-0.035111018,-0.14881752,-0.030407635,-0.055248678,0.098023005,0.0012714616,-0.024639474,-0.027043758,0.0029662,0.036417976,-0.008023254,-0.01767387,-0.07367742,0.053158116,-0.016255151,0.09579971,0.1210691,0.050232828,0.062214002,-0.01943738,0.06976187,-0.014386094,0.090373136,0.10430597,-0.009694045,0.12220829,-9.354693e-33,0.000818519,-0.03484223,-0.004315345,0.016085554,-0.038499605,0.027597556,0.03280819,-0.15077364,-0.037439372,-0.012780286,-0.0626884,-0.004563918,0.05715957,-0.04021895,-0.057258267,0.02211052,-0.05218826,-0.056542177,-0.035991896,0.0318322,-0.047645792,0.035724815,-0.019335281,-0.031393956,-0.031304322,0.010321401,-0.03387163,-0.022297407,-0.029399114,-0.01491536,-0.012474922,-0.01881129,0.010495545,0.038401775,-0.04004279,-0.0011670367,0.045379203,0.056288775,-0.006328548,0.05414654,-0.053591054,0.007343112,0.061736595,0.045707256,-0.06458583,0.0434557,0.017242678,-0.09657589,-0.10140625,0.025250688,0.019178897,-0.057668783,-0.06123611,-0.055040784,-0.0011013243,-0.035009682,-0.00016597818,-0.08305273,-0.037903596,0.0065609487,0.051546127,-0.03779959,-0.010429773,-0.046149958,0.08123518,0.008833669,-0.050259218,0.036336895,0.076906785,0.003260176,0.014419222,0.040041573,0.014718999,-0.06546638,-0.066543885,7.104408e-05,-0.097844906,0.031428326,0.013387493,0.0075782435,-0.021459589,0.010317128,0.036693197,-0.06594215,-0.032095343,-0.029728008,0.012077538,0.06166005,0.01992556,0.030232275,-0.06808538,0.05875333,-0.0082854,-0.048047382,0.031251103,-4.733436e-08,0.040986516,-0.034504272,0.0034012762,-0.012943688,0.015975367,-0.018962288,-0.035982788,0.004282143,0.016076079,-0.013734001,-0.0073288386,0.036419887,0.025570143,0.020029984,0.0029628382,0.027592972,0.085019484,0.089558095,-0.025220878,-0.02218683,0.03283768,-0.012433218,-0.010208724,-0.017262077,0.096625715,0.004673952,-0.00988019,0.09205243,-0.031357933,-0.060343437,-0.024536237,0.0043423064,0.030002749,-0.03806003,0.097123966,0.075311035,-0.008189667,0.05154907,-0.016050028,-0.051448867,-0.04415627,-0.10891456,-0.057119843,0.021688413,-0.015584456,-0.08708184,0.025781749,-0.0018002064,0.0024422873,0.019342842,-0.064911865,0.010326711,-0.015978936,0.053464036,0.032326452,-0.018522348,-0.000736348,-0.024158554,-0.07979657,0.00018516216,0.006709215,0.08321033,0.04859564,-0.07034205} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:20.699599+00 2026-01-30 02:01:10.900857+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1966 google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB 1 t 1969 Go Karts Mar Menor unknown Buen circuito, bien cuidado y gente excepcional, los karts están muy bien cuidados y muy competitivos, es ideal para pasar un día genial con amigos y pasarlo en grande.\nRepetiría sin duda alguna 💪 buen circuito, bien cuidado y gente excepcional, los karts están muy bien cuidados y muy competitivos, es ideal para pasar un día genial con amigos y pasarlo en grande. repetiría sin duda alguna 💪 5 2026-01-30 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"E1.01": "Buen circuito, bien cuidado", "O1.03": "los karts están muy bien cuidados y muy competitivos", "O1.05": "es ideal para pasar un día genial con amigos y pasarlo en grande", "P1.01": "gente excepcional", "R4.03": "Repetiría sin duda alguna 💪"} {-0.02588202,0.009228326,-0.016906803,-0.05968204,-0.08958476,0.04577184,0.04897282,-0.008171869,-0.0016294031,0.036350135,0.08178377,-0.00765382,-0.007378933,-0.036380734,0.0474006,0.06010465,-0.022671366,0.019045163,0.003953468,-0.050840616,0.047720555,-0.054232534,-0.029153805,0.084504165,-0.08700647,-0.0013373866,0.070157796,0.034893394,-0.043646336,-0.084653474,-0.047910675,0.0694103,0.06542746,-0.033734355,-0.07977346,0.012765537,-0.032172576,-0.035497718,-0.055873446,-0.01022961,-0.04802794,-0.06369464,-0.019213289,-0.03275952,-0.0011576049,-0.09101827,-0.021129562,0.032329578,-0.008542339,-0.05487428,0.041086994,-0.033499733,0.035378225,0.037911993,0.020690724,-0.027109554,-0.075146295,0.05486804,0.16105606,0.075424656,0.05448138,0.071078055,-0.0381904,-0.032146625,0.019427104,-0.047636222,0.04912659,0.058244992,-0.09628043,0.044512127,0.08722327,-0.086313754,-0.033660457,0.031317644,0.015518883,0.031221928,-0.038696416,-0.03166709,-0.08025297,4.8004007e-05,0.013931508,0.008487549,-0.008818469,-0.05826565,-0.028272677,-0.050017446,-0.016821457,0.021438336,0.042733625,0.016160822,-0.027177727,0.08745398,0.0174032,-0.024221802,0.025865184,-0.010227088,-0.007556888,-0.11211784,0.039768726,0.015559305,0.12283017,0.06846108,0.07061111,0.052976288,-0.044552546,0.0040512024,0.034576327,0.009812536,0.034374572,0.019636583,-0.044065937,0.033468366,-0.0671146,0.018905444,-0.024710525,-0.018088447,-0.037376888,0.01478436,-0.0047976645,-0.069809996,0.022731932,-0.05518998,-0.0689973,-0.01655962,-0.0005551095,-0.03460169,0.05838585,1.4163139e-32,-0.11670874,0.0022393551,-0.023956265,0.044673674,0.00014687727,-0.030830018,-0.018054757,-0.04729027,-0.08597418,-0.044879228,-0.05809237,0.09481635,-0.010496673,0.0784861,0.11816428,-0.009351549,-0.08916529,0.0057164948,0.1054556,0.0661242,0.00588278,0.009847335,-0.008884533,0.055173878,0.013176917,0.027022898,0.032433137,-0.053343087,-0.092387,0.02699685,0.013259805,0.033376064,0.028678792,-0.035257354,-0.09792402,-0.009366108,0.04114629,0.026257029,-0.01671385,-0.017661663,0.026744867,-0.013655958,-0.027997624,0.057535376,-0.012439421,0.009723803,0.06209298,-0.0141675705,-0.013595007,0.07733248,-0.08564806,-0.030448344,-0.05000228,-0.053242203,0.036939025,0.056717176,-0.01464954,0.053223,-0.06349594,-0.0837636,0.055482022,0.013126366,-0.00063259836,-0.045669474,-0.08722267,-0.02206061,0.056038514,-0.023278393,0.12147294,-0.008542072,-0.052506894,-0.005462121,-0.07643607,-0.036345996,0.03471152,0.0082872845,-0.03805565,0.077282906,-0.022396863,0.06564911,-0.04140787,-0.00039022564,-0.037309803,0.012234851,0.12772937,0.052381936,0.03769647,0.003707871,0.0069504883,0.16051652,-0.013604783,0.08184684,0.03600772,0.04492243,0.02489758,-1.43966e-32,0.04866134,0.03220707,0.074675284,0.10214822,0.0082975775,-0.009540534,-0.014562353,-0.028207043,-0.027447285,-0.012591033,-0.04214257,-0.087653525,0.060331713,-0.01882154,0.01605078,-0.014172168,0.034200072,-0.023388,-0.083854854,-0.05123993,0.034754533,0.061057474,0.018761,-0.008540483,-0.0060838913,-0.061494317,-0.09579307,0.017555585,-0.07895965,0.009586843,0.04155464,-0.044898465,-0.005363419,0.046645485,-0.020920368,0.012446096,0.092961185,0.097336076,-0.037137065,0.05113941,0.0049401033,0.10626309,-0.05133006,0.042371966,-0.094060406,0.0065410957,0.06662597,-0.12160159,0.013181326,-0.06814927,0.05684327,0.0053202934,-0.041837025,-0.070316866,-0.0072161644,-0.02242064,0.019278353,0.0002824429,-0.048490394,0.02017267,0.032485165,-0.026247349,-0.025528593,-0.022312092,0.07361948,-0.0028747264,0.0035683326,0.043700494,0.07062412,0.01902718,0.055408224,0.030602615,-0.03427472,-0.014698918,-0.06048826,-0.07279217,-0.09311486,-0.0011571903,0.023715192,-0.019971322,0.048477292,0.0041236356,-0.018432887,-0.07801903,-0.011084355,-0.059542127,0.005364296,0.05967172,0.004454644,-0.0027523537,0.0121877445,-0.007575873,-0.080474965,-0.09671885,-0.045049284,-5.0515162e-08,0.021986175,0.0020069361,-0.07797709,0.026475742,0.004202965,-0.07256598,-0.045699906,0.006797198,0.019461932,0.03202144,-0.037870802,-0.03518617,-0.010343154,0.07425868,0.030960357,-0.02215476,0.04480484,0.12091954,-0.006488072,-0.0064706653,0.09929253,0.017230773,-0.04971039,0.06571619,0.0035006918,-0.005580952,-0.004910352,0.032607127,0.0254092,0.022301285,-0.027092908,-0.022037223,-0.11015655,-0.033448,0.026282318,-0.036197197,-0.06270132,0.025522979,0.019289654,-0.062345326,0.05123636,-0.068355985,-0.11258138,-0.0012811442,-0.0713405,-0.036215317,-0.03792526,0.008204796,-0.04410627,0.029967014,-0.047984917,-0.0738622,0.044566732,-0.02422874,0.025394235,-0.020643419,0.056042016,0.02086556,-0.0031114907,-0.059924293,0.026973804,0.11378553,0.00871306,-0.1191262} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:54.014967+00 2026-01-30 02:01:11.399404+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1967 google ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB 1 t 1970 Go Karts Mar Menor unknown lo hemos pasado genial, grupo de 10, estupendo el personal, muy majos. carreras, organización, pista amplia, muchas gracias. lo hemos pasado genial, grupo de 10, estupendo el personal, muy majos. carreras, organización, pista amplia, muchas gracias. 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"O1.02": "carreras, organización, pista amplia", "P1.01": "estupendo el personal, muy majos", "V4.03": "lo hemos pasado genial, grupo de 10"} {0.009226828,-0.011834013,-0.023505082,-0.019702923,-0.07755758,0.0021265969,0.056967106,0.057028294,-0.0008576441,0.02385213,0.0741335,-0.020583814,-0.05409653,-0.06539709,0.024592133,-0.006884522,-0.019165033,0.0659778,-0.02127826,-0.046083726,0.03312562,-0.007569137,-0.01820565,0.059991,-0.13999647,-0.030445108,-0.0019741496,-0.016231313,-0.08004843,-0.051922757,-0.0062555685,0.10525966,0.13967505,-0.01759796,-0.0023554836,-6.3984655e-05,0.0026773235,-0.02017837,-0.0043817107,0.09922599,-0.050645962,-0.05052889,0.0008645671,-0.08292132,-0.0036620146,-0.12637183,0.037818007,0.027384097,0.004373545,0.04316013,-0.0423933,-0.02083455,-0.027043898,0.05100513,-0.003221,-0.0074041667,-0.062219348,-0.067638434,0.019163853,-0.001418699,-0.018569632,0.06674121,-0.067727126,0.030268854,-0.07001422,0.053014096,0.062191624,-0.029611032,-0.05685276,-0.017524088,0.10054533,-0.07850283,-0.04455688,0.071995035,-0.049886305,0.063797474,0.058032416,-0.021393713,-0.022508906,-0.05189026,-0.058904577,0.029467825,-0.0114901615,-0.055943556,-0.055864528,0.04233237,-0.025291732,0.051423665,-0.0951512,0.0025110173,-0.033396125,0.06973217,-0.013745859,0.0017915029,-0.01049641,0.049956575,0.020963639,-0.07836417,-2.1898673e-05,-0.028293572,0.10054376,0.028076608,0.09514784,0.10226709,-0.12042575,0.047351878,0.035125624,-0.031961393,0.03961481,0.0034312943,-0.0561085,0.009694462,-0.10003515,-0.030231042,-0.04763099,0.045662668,-0.01366741,-0.022961851,0.02190462,-0.018624594,-0.0056963577,-0.029673457,0.020601587,-0.091868326,-0.029423768,-0.0064184554,0.009743521,5.3309547e-33,-0.08345833,-0.00611434,0.03850259,0.05369008,-0.004369303,0.026543655,-0.027849885,-0.0034693913,-0.08866703,-0.05075442,-0.07224991,0.075223684,-0.027465155,0.060234033,0.0260182,0.028464701,-0.057375092,0.02012528,0.042241808,0.053115755,-0.07622088,0.057009786,-0.050292272,0.03241088,-0.016393283,0.09323688,-0.0019106749,-0.061959904,-0.020872269,0.061548125,0.014589797,0.0124969315,0.03573151,-0.058122378,-0.06669939,0.016058326,0.0903511,0.025575636,0.009719464,0.011491315,0.012795967,-0.0061454503,0.006505778,0.06534805,0.03970923,0.010316839,0.04326143,-0.009701907,0.044677567,0.050474457,-0.100341566,-0.02711043,-0.05337055,-0.016732348,0.029763917,-0.042411096,-0.10341741,0.044038568,-0.026682409,-0.041704163,0.12960123,0.04337275,-0.022050893,-0.012744853,-0.044958748,-0.038568135,0.022989014,0.03901118,0.1658831,0.03591231,-0.038793325,-0.05450646,-0.040494878,0.05601237,0.009943189,0.054076307,0.0895674,0.031935837,0.01866125,0.10239434,0.0024561144,0.089622945,0.0028546213,0.0012747332,0.074450165,0.069553375,-0.009443208,-0.0075048325,-0.07588933,0.09548477,-0.017877541,0.041856103,0.07366222,0.020911735,-0.03845686,-7.2878835e-33,0.0446933,-0.028632462,0.010689991,0.031307213,0.024995424,0.005831684,0.035623427,-0.02576745,0.0016883949,-0.033289127,-0.07999837,-0.07353,0.12635227,-0.1160818,-0.03660575,0.023487214,-0.03659953,-0.046200514,-0.055922523,-0.006161883,-0.026805239,0.024354048,0.052614823,0.020359516,-0.009446535,-0.03228758,-0.06829402,-0.02439665,-0.04223273,0.0036108585,0.044870194,0.03607125,-0.059254978,0.042422775,-0.031372774,0.04480519,-0.00070632575,0.09400904,0.026426293,0.03793822,-0.025173469,0.04416799,0.04758706,0.0015497243,0.0046914187,0.023199797,0.0058972333,-0.15013298,-0.046222176,-0.02984611,-0.005019786,-0.008579143,-0.04359121,-0.038309842,0.0702091,-0.047451302,0.02522674,-0.020264648,-0.07590491,0.03996308,0.014790968,0.03144468,-0.024586212,0.0021995292,0.026246492,0.04130185,-0.05602363,0.018013764,-0.062963724,0.03661406,0.101582624,-0.058560383,-0.04509345,-0.0077731106,-0.10410468,-0.03129293,-0.11689026,-0.033174463,0.013034065,0.0077998973,0.026292402,-0.03547378,-0.039028756,-0.059739213,-0.038644824,-0.07485175,0.025123784,0.06507823,0.010130672,0.03401819,-0.004982951,-0.013632735,-0.07228924,-0.109532006,-0.032099646,-3.9255582e-08,0.01624571,-0.043723606,0.0010954002,0.003682637,0.02555943,-0.025759077,-0.0035265035,0.070541,0.07678749,0.04583283,-0.055194896,-0.038683522,-0.018497698,0.07658809,0.07339064,0.007963733,0.057678923,0.12392571,0.03890486,-0.054517973,0.07992241,0.008634338,-0.053069178,0.0008034422,-0.033633195,-0.01556588,0.027335286,-0.076125465,-0.046080366,0.016135123,0.027508749,-0.011498516,-0.106660284,-0.04946916,0.011616042,0.012401015,-0.039977252,-0.0066049728,-0.016398009,-0.03470133,0.06663112,-0.026554396,-0.04131845,-0.002648317,-0.022381758,-0.09332246,0.0031259998,0.021753617,-0.013754557,0.04080904,-0.01908942,-0.024775662,0.0637281,-0.06379725,-0.0202901,-0.042972587,0.10540291,0.022013877,0.018600348,0.008873996,0.060670864,0.07525137,0.0506715,-0.0392042} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.258049+00 2026-01-30 02:01:11.402322+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1954 google ChdDSUhNMG9nS0VJQ0FnSUNPa3I2MXN3RRAB 1 t 1957 Go Karts Mar Menor unknown No está ni tan bien, ni tan mal .. relativo calidad -precio .. Cars antiguos y la pista un poco pequeña ! no está ni tan bien, ni tan mal .. relativo calidad -precio .. cars antiguos y la pista un poco pequeña ! 3 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {O1.03,E1.03} V0 I1 CR-N {} {"V4.01": "No está ni tan bien, ni tan mal .. relativo calidad -precio .. Cars antiguos y la pista un poco pequ"} {0.014298311,0.09954363,0.016974406,-0.075063355,-0.05421304,0.0017758522,0.0667739,0.009731923,0.015206799,0.04537416,0.09344405,0.002449076,-0.011624988,-0.01960188,-0.015165372,-0.044273652,0.0061694016,-0.0016487166,0.044660397,0.084287174,0.021733768,-0.049855974,-0.00029739283,0.1219676,-0.13908818,0.014490711,0.0074553825,0.007551306,-0.05245285,-0.04057845,-0.072178565,0.056967024,0.11144192,-6.9115646e-05,-0.025214208,-0.09728181,0.06607506,-0.061526988,-0.031960137,-0.017315539,-0.07759087,-0.0934927,-0.042635392,-0.005895288,0.07413018,-0.028542414,0.05556025,0.06315634,0.026873652,-0.08000752,-0.05237104,0.03859003,-0.006606995,-0.019605407,-0.01122916,0.022421574,-0.018976435,0.06301116,0.02327432,0.04162256,0.058297463,0.052743353,-0.0659189,-0.009862452,0.02640227,-0.02007787,0.026414,-0.050203897,-0.078441225,0.097077474,0.16425012,-0.06747871,0.014904093,-0.0064063254,-0.05083001,0.042210244,-0.0016183129,0.08103109,-0.02235932,-0.061757915,0.022094589,-0.005846008,-0.05548828,0.012845813,0.02323675,0.03990258,-0.0041354247,0.022066778,0.06365294,-0.049920186,-0.03865917,0.10885257,-0.027994081,0.004121193,0.0023694257,0.009328043,-0.011666809,-0.05170062,-0.0032557326,0.014033011,0.11402883,0.05127977,-0.007590646,0.029749762,-0.07564855,0.07759212,0.002374631,-0.027241051,0.026277008,0.039432205,0.013902914,-0.0038248873,-0.041722395,-0.038422488,-0.15873563,-0.03616712,-0.016973527,-0.013768339,-0.00714427,-0.05728839,0.0024244005,-0.013494674,-0.05981024,0.00887607,0.030747617,-0.1023944,0.025132423,2.5603487e-33,-0.109626584,-0.024124872,0.005735299,0.005986668,-0.016414298,0.042157926,-0.012692752,-0.036369972,0.0034539525,-0.019189449,-0.032748803,0.05492602,-0.03594326,-0.0073306174,0.060284212,0.0702029,-0.0052804006,-0.07330752,0.09569722,0.015196124,-0.089150764,0.041473396,-0.022675728,-0.009363482,-0.026299069,0.112515055,-0.044350263,-0.06430445,-0.0637258,0.056767963,0.032017365,0.05053997,0.07044443,0.03771098,0.009457809,-0.09124345,-0.028264336,0.041390758,-0.014420004,0.033070404,-0.006029182,0.007980259,-0.010796658,-0.008265492,-0.022321904,0.002434293,0.0007588498,0.033965267,0.053045772,-0.008050181,-0.05789209,-0.07444273,-0.10979127,-0.017089596,-0.02269229,0.013703266,-0.08881392,0.080325775,-0.062416334,-0.09932028,-0.050355308,0.060538016,0.050852,-0.040295165,-0.122108154,-0.03062827,-0.018121868,0.06974095,0.14733033,0.031966876,0.012134785,0.014069999,-0.02503008,0.043817393,0.037968174,-0.015156776,-0.0025653304,0.064882524,0.007219862,0.036325093,-0.024924077,0.03797022,0.066238046,-0.038157072,0.09473387,0.13179122,0.01594712,0.027098922,-0.008696553,0.07629071,-0.012695473,0.061624087,0.0046427795,0.0070018945,0.0057259123,-3.998474e-33,0.06673826,-0.019785205,0.036366537,-0.004631259,-0.022867015,-0.0005966273,-0.0009317019,-0.08895083,0.0006526268,-0.018788114,-0.036097772,-0.103932954,0.08796745,-0.023894513,0.010575318,0.06810453,0.0405555,-0.07480224,-0.10516944,-0.056898806,-0.09386624,-0.0041067633,-0.01525673,0.06379491,-0.034825824,-0.09491918,0.052102964,0.020525543,-0.0021287042,-0.044141512,0.027775394,-0.026199058,0.0031487942,0.06627381,0.024019834,-0.014108474,0.05637839,0.025991766,-0.048431482,0.009686833,-0.027225772,0.019569313,-0.014945906,-0.033118956,-0.009363181,-0.020789137,-0.005530697,-0.0659555,-0.08261685,-0.0026021407,0.10011922,-0.0061059454,-0.00600395,-0.0044287383,0.040792625,-0.0034337896,0.027981225,0.0052490225,-0.047618736,0.015150735,0.06025824,-0.0040112385,-0.03042265,-0.01686171,0.049246095,-0.025080223,-0.023505319,-0.001741106,0.11504638,-0.04906584,0.0906841,0.0019185866,-0.1089423,-0.010675411,-0.12987345,0.002347807,-0.00713479,0.052981652,0.060197648,0.034587003,-0.038207296,0.011305854,0.005111542,0.04088036,-0.004879559,-0.0071654,-0.046471864,-0.011263895,0.0025877282,0.08339694,0.01755609,0.04300352,-0.04585683,-0.055756945,-0.036496148,-3.0749298e-08,0.020919418,-0.034228664,-0.009514722,0.061600734,0.00040392065,-0.010609138,-0.046267424,0.04660101,-0.019464789,0.0075134113,0.025988184,-0.022611953,0.0066803126,0.02023544,-0.07872376,0.06661375,0.092129745,0.10053263,-0.027643502,-0.05649261,0.039449845,0.024989827,-0.06377099,0.029387886,-0.057477377,-0.03889208,-0.032049622,-0.05508157,-0.06607959,-0.039779175,-0.04513612,-0.0593035,0.002813477,-0.076692075,0.030783325,0.006660077,0.048989277,0.03279357,0.0154691115,-0.053194877,0.045397248,0.042639524,-0.03439991,-0.027208121,0.026130863,-0.1126759,-0.0021869256,-0.040987227,-0.018037228,0.058141075,0.019470382,0.024475599,0.035530943,0.060603887,0.004594708,-0.010241584,0.06241719,0.024861846,-0.09278506,0.022359984,0.049547575,0.055440865,0.06845727,-0.038655132} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.340154+00 2026-01-30 02:01:11.351631+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1958 google ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE 1 t 1961 Go Karts Mar Menor unknown Super buena atención, la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definitivamente repetiría super buena atención, la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definitivamente repetiría 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Super buena atención", "R4.03": "la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definiti"} {-0.079181366,-0.0325217,-0.028698582,-0.063076004,-0.09120705,0.01775462,0.032997046,0.039139662,-0.041858308,-0.012151131,0.093154445,0.00046078142,0.014465442,-0.019518366,-0.032881327,0.05001821,-0.00039351906,0.02189739,-0.0307062,-0.013907309,0.05262584,-0.08190908,0.00817902,0.081956066,-0.02476258,0.00352357,-0.006511869,0.048265338,-0.0012980651,-0.03199198,0.012450859,0.033395514,0.0252194,-0.021352414,-0.041675914,0.0035453378,0.041413937,0.028981129,0.0026035483,-0.009649089,-0.07421679,-0.008998552,0.005924231,-0.046441592,0.028462801,-0.060371872,0.061789233,0.077558026,0.017623838,-0.049983487,-0.0059002833,-0.08123611,-0.0395633,0.037565943,0.017492117,0.025436401,-0.003016832,-0.008889168,0.024246939,0.041298207,-0.016806249,0.08537808,-0.08244826,-0.002296358,-0.0031368893,-0.035302244,0.06982293,0.011013444,-0.04425344,0.0373862,0.07036156,-0.04438797,0.039672647,0.050552703,-0.08921465,0.07637781,0.017852385,0.033775955,0.0018822687,-0.008695578,-0.025488338,0.012283591,0.0023364099,-0.043462813,-0.03892035,-0.022592101,-0.055530563,0.026160516,0.062180363,0.041397825,-0.059426848,0.092635676,-0.029984653,-0.04307038,-0.024294144,-0.004345703,0.047712877,-0.07256609,0.035563108,0.026387984,0.049492355,0.0567666,0.11297254,0.036244158,-0.014501423,0.06304752,0.028599903,-0.023884846,-0.023034595,0.017667606,-0.030390743,-0.025713375,-0.025498101,0.021319773,-0.09156225,0.004226909,0.03997845,-0.03806693,-0.079487056,-0.12080951,-0.020862604,0.101455346,-0.06334681,-0.026696714,0.05248585,-0.050337847,0.01792043,8.136133e-33,-0.03813688,-0.007097679,-0.05632909,0.124136575,-0.02257417,0.080947444,-0.0017892584,0.07185661,-0.05713585,0.01565396,-0.035836075,-0.00958196,0.014763389,-0.0049370145,0.025096582,0.05725874,-0.0463024,-0.029243102,-0.008099504,0.08200379,-0.004398075,-0.03141171,0.018714365,-0.0107941525,-0.04207822,0.017474456,0.042936977,0.016614472,-0.103265226,0.050694525,-0.030883988,0.0077852723,0.023166068,-0.09870974,-0.04996718,-0.032635845,0.10417366,0.020201331,-0.0071825474,-0.008651061,0.0044006305,0.031362694,-0.035629556,-0.013700001,0.015084058,-0.03787014,0.07510153,-0.037693776,-0.007672697,0.0042033102,-0.033046674,-0.12253241,-0.07667173,-0.03701575,-0.052691568,0.0057168715,-0.048845742,0.035679985,-0.03341445,-0.075498626,0.09641595,-0.038398392,-0.002333986,-0.011535356,-0.045037713,-0.013793521,0.041194018,0.0666591,0.12021091,0.023497235,-0.038374845,0.0070106345,-0.086356945,-0.044689592,0.04292657,0.043622963,0.04829755,-0.011031954,0.008372749,0.023977185,-0.058901213,0.025746899,0.0051119975,0.04965367,0.07868741,0.086071655,0.023821006,0.034032024,-0.04423639,0.07780841,0.038734596,0.026778044,0.03736899,-0.053127762,0.06440987,-9.6586756e-33,-0.034244917,0.04075626,-0.0047289385,-0.011357777,-0.00035943848,-0.05941763,-0.02643227,0.049652584,-0.033364963,-0.12398219,-0.114483915,-0.1455176,0.1448323,0.013486826,-0.05069706,0.023588326,-0.025895996,-0.06582796,-0.01663086,-0.041419,-0.024632221,0.057196695,0.04388665,0.029183732,0.04698989,-0.09986479,-0.022937544,0.0440984,-0.08212095,0.015222885,0.07419102,-0.03922401,0.04235357,-0.0126229515,0.023584409,0.057387706,0.053756442,0.056406576,-0.0073564784,-0.016020317,0.046170034,0.026573556,-0.10233467,0.03606457,-0.0626447,0.07967473,0.014235456,-0.12696815,0.0317444,-0.055830024,0.0472038,-0.06426539,0.008345131,0.015472754,0.07107494,-0.07185118,0.025041152,-0.094568,-0.034999195,0.020627541,0.06583977,0.00024133458,-0.11264501,-0.01700979,0.075169444,0.016336394,-0.07862951,0.027966945,0.032494724,0.064170405,0.11848137,-0.02287326,-0.11557353,0.021175373,-0.027777651,-0.039532475,-0.0720692,-0.023765987,-0.004864247,0.04494131,0.036670424,0.006330974,0.036632415,-0.05701029,-0.023064166,-0.076365285,-0.03274382,0.09130189,-0.016973756,0.021343216,0.01927747,0.0048433742,-0.06644173,-0.1076322,-0.03206717,-3.673922e-08,0.08248724,0.013445553,-0.0144061195,0.0032568562,-0.006851292,0.015768303,-0.020969111,0.08798715,0.027745254,0.04345667,-0.03353495,0.00037607987,0.013294346,-0.0011239861,0.008709131,0.03926529,0.1098357,0.04116497,-0.037557658,-0.05639866,0.08117362,-0.03012566,-0.017399466,0.006247535,-0.015486986,0.0026809673,-0.04013418,0.024582395,-0.03633918,-0.045811675,-0.011826754,-0.00461606,-0.05010082,-0.076347224,-0.03262144,-0.020543104,0.02439571,0.02077238,0.017113913,-0.089862086,0.073279664,-0.02802118,-0.08350639,0.01026451,-0.07481394,-0.021264888,0.04080931,0.007441778,0.004217546,-0.009833001,-0.024971338,-0.055421483,0.021725975,-0.00763766,-0.042042885,-0.026654199,0.040170085,0.0668175,0.0049216077,-0.045797165,0.10598798,0.15803152,0.039350774,-0.11794137} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:02.696986+00 2026-01-30 02:01:11.364645+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1977 google ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE 1 t 1980 Go Karts Mar Menor unknown Super kartbaan vriendelijke mensen lekkere koffie super kartbaan vriendelijke mensen lekkere koffie 5 2019-02-01 01:52:39.833374+00 af v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Super kartbaan", "O2.01": "lekkere koffie", "P1.01": "vriendelijke mensen"} {-0.062333938,0.117716044,-0.011767745,-0.038741548,-0.10550504,0.01999343,0.042656895,0.022127807,0.0038748337,-0.0034418667,0.00026955572,-0.01949493,-0.04676914,-0.020045705,-0.083860315,-0.09187753,0.00506965,0.09298842,-0.03869366,-0.012704922,0.06812012,-0.10225679,0.045179956,-0.06079359,0.0026778704,0.034707427,0.04931988,0.024072126,0.066007584,-0.0059331586,0.05342334,0.012912818,-0.052712794,-0.014998734,-0.0016855749,0.0424009,-0.03233001,-0.018449364,0.064351514,0.030540653,-0.05180566,-0.09137334,-0.10083049,-0.06794723,0.037305124,0.07065575,-0.10650521,0.03761017,-0.07756892,-0.02872333,-0.05596425,-0.10681681,0.028178265,-0.017791964,0.06567096,-0.051806923,-0.074183606,0.043703824,0.013460621,-0.042583827,0.032779187,-0.0017854491,-0.033848055,0.031290043,-0.021340508,-0.045155812,-0.038122132,0.08244895,-0.058934424,0.098988846,0.03174956,-0.045780633,-0.027049469,-0.021857098,0.010297971,-0.029539442,-0.08024703,-0.088207744,0.044542287,-0.039966572,0.09928143,-0.031282715,0.0016512307,0.013318159,-0.037594162,-0.036927838,0.0827539,0.04422539,0.0156973,0.008791716,0.020971902,-0.017607054,-0.07369094,-0.0069754394,-0.002149121,-0.00988254,0.0122201,0.06287092,-0.035166025,0.013681103,0.014303586,0.019432455,0.088156976,0.019438786,-0.023400439,-0.04888112,-0.020947287,-0.05523085,0.08986384,-0.013564581,-0.10345051,-0.053813297,-0.06571609,-0.14817204,0.018216016,-0.021576831,0.010156538,-0.022803608,-0.08592508,-0.024128148,0.03587264,0.04000082,0.009480623,0.08381981,0.045180254,0.074948736,0.06719195,5.981319e-33,-0.08052773,-0.014726898,0.02440121,-0.01123828,-0.050577696,-0.07458687,-0.057510722,-0.058797676,-0.06599929,-0.011274769,0.05134827,-0.020931633,-0.02547799,-0.0032840073,0.05484663,0.06907062,-0.027026886,-0.057876594,0.028377708,0.022357723,0.024470503,-0.047658134,0.020622453,0.044756483,-0.013519886,-0.043211583,0.07178988,-0.017094942,-0.025495948,0.038343232,0.06652711,-0.025579393,-0.07181917,0.0034768512,-0.14602332,-0.016286379,-0.01894637,-0.066974826,-0.052767843,-0.057665262,-0.018813401,-0.080092564,0.002836071,0.020263944,0.007191518,0.039902695,0.0050155367,0.021146784,0.064404935,-0.0047564046,-0.071041696,-0.0063928463,-0.06944434,0.037738413,0.003750367,0.079844736,0.059421584,0.07410712,-0.014780072,-0.059342574,0.018681884,-0.0258488,0.04042913,0.049814735,0.06090257,-0.06775103,-0.014247134,-0.0384469,-0.0074908515,-0.0051094834,-0.028016856,0.013112972,0.05647247,-0.019256392,0.004932762,0.037037507,-0.013647295,0.056477267,-0.05503976,0.031229254,-0.07208572,0.0016011123,0.002101837,-0.08246501,0.09458598,-0.029144717,-0.028355742,-0.09943597,0.072558686,0.06815904,-0.03763777,-0.032512538,0.042040918,0.024927264,-0.008593269,-7.169597e-33,-0.006904298,0.09555622,-0.036407705,0.124840796,0.08201022,0.060951605,-0.051365413,0.027119044,-0.02770221,0.006708647,0.048333917,-0.05342594,0.08518973,0.04993859,0.007601475,0.0027057366,0.11136961,0.0066840765,0.04732257,-0.05659902,0.03649571,0.0129059665,-0.04420411,0.06544279,-0.02191685,0.010952782,0.040565506,0.03251374,-0.11731412,0.05649552,0.069610685,-0.02277507,0.0021698128,0.07056673,0.005034782,-0.060290087,0.078989714,0.06564255,-0.010205782,0.041497406,-0.024944777,0.03779386,-0.08965083,0.02352174,0.0069661606,-0.040093243,0.053658936,0.036191713,0.07535845,-0.14693618,0.02782259,0.07878748,-0.03923291,-0.019848108,0.03353298,0.10140974,-0.060727153,-0.020864597,0.03701339,0.004855743,0.042285666,-0.0065957494,0.019390197,0.05241247,0.020908764,-0.0033306617,-0.07711646,0.032769434,0.0437319,-0.071857825,0.0105866045,-0.01629154,-0.0017505845,0.04198225,-0.0074319,0.023127386,0.007541384,0.061196804,-0.016583735,-0.05419716,-0.019013878,-0.0014214325,-0.03164162,0.026164785,0.016680611,-0.037206434,-0.036393598,-0.03688619,0.014681166,-0.06265451,-0.002043986,0.080180995,-0.03533003,0.038104698,-0.03328455,-2.464401e-08,0.04054751,-0.02042233,-0.02318585,-0.03282287,0.11022764,-0.09348748,-0.047479626,-0.031429533,-0.06548765,0.022133118,-0.053726595,-0.005572618,0.008134446,0.06421921,0.0526632,-0.010075431,-0.025067013,0.05518787,-0.01895438,-0.028687885,0.07249413,-0.051400527,0.020148046,-0.032815434,-0.043018524,0.08676259,0.035580914,-0.053863242,0.086851954,-0.01167065,0.03572497,0.11399587,-0.035690635,0.049707443,-0.05302433,0.050962247,-0.073635764,0.09863046,-0.016251368,0.0375916,0.017205121,-0.068612695,0.05554418,0.01878004,-0.028000643,0.029292151,0.055857703,-0.04522225,0.061576333,0.0078247,-0.10445223,0.014707041,0.023268512,0.021802615,0.028771654,0.01376286,-0.014208484,0.030040102,-0.04471747,-0.07470605,0.018296188,0.018152287,-0.01927003,0.03713088} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:11.270108+00 2026-01-30 02:01:11.528456+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1981 google ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB 1 t 1984 Go Karts Mar Menor unknown Excelente atención. Muy buena pista . Buenos coches. Precios asequibles. Repetiremos! excelente atención. muy buena pista . buenos coches. precios asequibles. repetiremos! 5 2023-01-31 01:52:39.833374+00 es v5.1 P3.01 {} V+ I3 CR-N {} {"O1.02": "Muy buena pista . Buenos coches.", "P3.01": "Excelente atención.", "R4.03": "Repetiremos!", "V1.01": "Precios asequibles."} {-0.049738314,-0.022446912,-0.033357583,-0.07710989,-0.12677488,0.05834234,0.025071166,0.04871284,0.015485649,0.060219575,0.07467807,-0.020225588,-0.019153992,-0.039503433,-0.047618844,0.0014026603,-0.021287903,0.021605983,0.029519917,0.0022960757,0.0706084,-0.07374592,-0.10130912,0.13123384,0.014800857,-0.048459336,0.01668963,-0.040887803,0.007563542,-0.07310346,-0.018491013,0.020192457,0.11266697,0.012433692,0.036062278,-0.019691378,0.09934188,-0.12753823,0.012202375,0.06740364,-0.09947599,0.016383056,0.015652573,-0.03148354,0.003494613,-0.03664526,0.09872413,0.011657336,0.052445613,-0.016023863,-0.046426237,0.018150132,-0.0068422556,-0.048595935,-0.030989492,0.015249232,-0.009274006,-0.028363615,0.0031202445,0.0037759177,-0.018303929,0.05134926,-0.07210793,0.059086904,-0.015986217,0.048753534,-0.0008198465,0.021039246,-0.06252448,0.021401241,0.09421205,-0.029388163,0.036460612,0.067218035,-0.04913089,0.07537402,0.012981337,0.022625847,0.032769516,-0.044244215,0.006667466,0.002164259,-0.074881725,-0.008374138,0.005232365,0.003556014,-0.038868476,0.006696963,0.093124956,-0.0063778493,-0.05114072,0.10861239,0.015652908,0.012204123,-0.11077681,0.030354712,0.0041449666,-0.049183518,-0.004098146,0.034945738,0.08988759,0.04886885,0.060600247,-0.023162954,-0.094856076,0.004326732,0.050074246,-0.02187229,0.06053369,0.0988006,-0.0043590483,-0.073676325,-0.044613108,-0.032583464,-0.077460036,0.065910205,0.010153057,-0.045169905,-0.0066698394,-0.11928693,0.0790626,0.025685418,-0.05971111,-0.065776795,0.006209673,-0.042323,0.0021909203,3.841248e-33,-0.07415807,0.0268821,0.013814632,0.069231555,-0.06832273,0.013630046,-0.014359772,-0.039763693,-0.065323144,-0.052176654,-0.042662516,0.10379838,-0.007518573,0.04258214,-0.002022682,0.04761113,0.02082583,0.013307085,0.04450354,0.03619971,-0.09877545,-0.0252749,0.012857109,0.031131784,0.05193876,-0.0013040716,-0.03350068,-0.04621134,-0.048958495,0.04340321,0.0023598084,0.057480793,0.0008164768,-0.02539133,-0.04029455,-0.037244514,0.044634912,0.032363977,-0.032059968,-0.0033054638,0.026747307,0.0329825,-0.030666787,0.026502933,0.04258099,-0.05492572,0.034627683,0.02298914,0.13524753,-0.009272265,-0.04266166,-0.0753964,-0.048504706,0.024386628,0.016221466,0.030172436,-0.1450321,0.042416546,0.017146433,-0.0765896,0.04093725,0.04641772,0.029004851,-0.037447684,-0.06601228,0.03551098,-0.0035341016,0.049598332,0.13854921,0.052337788,-0.034634624,-0.055903126,-0.032871116,0.06514898,-0.05769914,0.0011640409,-0.018410286,0.03358921,-0.0028088745,0.046572577,-0.053520896,-0.027574431,0.005651713,0.043024227,0.0691835,0.13141651,0.120794654,0.04742821,-0.026975038,0.06067341,0.010258651,0.06229842,0.033334307,0.010226178,-0.005461083,-5.2381975e-33,0.027767152,-0.07363725,-0.019657131,0.044054367,-0.049074255,0.043944616,-0.027665213,-0.04381167,-0.01841163,-0.082860745,-0.0920385,-0.09683371,0.09885499,-0.09573152,-0.04823471,0.046192218,0.013808872,-0.056941893,-0.048325464,-0.029038366,-0.027988143,0.04107928,0.000985343,0.029043354,0.008993926,-0.07147522,-0.012446375,-0.029921195,-0.022836955,-0.021597752,0.024815686,-0.026335347,-0.021902615,0.027572919,-0.041142706,0.10514774,0.08479284,0.029057648,0.011500675,0.027298365,-0.022140563,-0.007219994,-0.008406533,-0.016578967,-0.024176363,0.018149275,-0.031339638,-0.1199989,-0.06469789,-0.06153368,0.013059022,-0.028622275,-0.04221838,-0.025701823,0.035420395,0.011422189,-0.032452557,0.013495064,-0.064501345,-0.032464538,0.008188678,-0.0047749016,-0.055089664,0.008589147,0.110496745,-0.036802266,-0.0315783,-0.017062796,0.044686206,0.063043945,0.119886346,0.006066653,-0.012401938,-0.028116634,-0.05962455,0.009800895,-0.08834166,0.019582264,0.015230328,0.034930382,-0.053412545,0.0077147167,0.079762235,0.0020262455,-0.033761006,-0.02541199,-0.002441715,-0.050796118,0.019128516,0.09754138,-0.039864983,0.019598518,-0.00520859,-0.031202126,0.03474954,-3.1931133e-08,0.024715962,-0.002571196,0.014314573,0.043394145,-0.019001357,-0.017039286,-0.09697739,0.023936272,0.021816531,0.033017617,-0.072539486,-0.07923936,-0.005613132,0.050769027,-0.063439175,0.063391596,0.037358604,0.14189065,-0.038967136,-0.038299862,0.0015549477,0.042899985,-0.06424296,-0.019011239,-0.025083343,0.006956034,-0.022974035,0.02977951,-0.12246042,-0.020483842,-0.072415516,-0.012412669,-0.002855006,-0.11717781,0.026667526,0.014067792,0.01370706,0.015537788,0.036193695,-0.063275255,0.045645975,0.023637779,-0.0856187,-0.03610748,0.045665685,-0.08640847,-0.0123024285,0.0074112625,0.0085288985,0.04419064,-0.0011951575,0.035009388,0.065820135,0.030478498,0.04942282,-0.03179973,0.059413355,-0.010890444,0.01680538,0.016677387,0.0672031,0.065609835,0.04005097,-0.061248675} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.003648+00 2026-01-30 02:01:11.549796+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1982 google ChdDSUhNMG9nS0VJQ0FnSURfanN2MGhnRRAB 1 t 1985 Go Karts Mar Menor unknown Muy agradable el personal y circuito muy intretenido. muy agradable el personal y circuito muy intretenido. 5 2025-01-30 01:52:39.833374+00 es v5.1 P1.01 {O1.01} V+ I2 CR-N {} {"P1.01": "Muy agradable el personal y circuito muy intretenido."} {-0.09009163,0.051445443,0.05724422,-0.071208246,-0.04340452,-0.039941087,0.13046642,0.10532462,-0.0054731364,0.030858919,0.062362462,-0.0019018127,0.028713375,0.02540281,0.026500331,0.048018817,-0.057427198,0.04586093,0.016253438,0.028057562,0.13154824,7.2171744e-05,-0.05489875,0.0843748,-0.09408388,-0.007767661,0.019426214,0.008811469,-0.052188884,-0.063984975,-0.053377792,0.12474338,0.08835484,-0.038750738,-0.031666923,-0.033473164,0.020559572,-0.032076906,0.040450092,0.0025294146,-0.09165769,-0.08046137,0.05701602,-0.057705663,-0.019125612,-0.047551848,0.042149432,0.015827894,0.0067905006,-0.0434602,-0.036679596,-0.031529456,0.032846957,0.03583671,0.016127745,-0.013058695,0.00088959007,0.010859461,0.009530172,0.05189423,-0.016989617,0.010182405,-0.018595742,0.049364947,0.015510111,0.013285929,0.057738587,-0.020656139,-0.06053202,0.023402322,0.09296821,-0.091233835,0.024338115,-0.018568678,-0.010163672,0.031017277,0.02411457,-0.006891227,-0.0024607342,-0.046041552,-0.059928484,-0.0045983037,-0.005976523,0.0003396713,0.024737976,-0.023964971,-0.024437048,-0.019817956,-0.03787012,-0.01683393,-0.01358639,0.000532008,-0.054174006,-0.05886187,-0.009006571,-0.028217144,0.010651519,-0.05809918,-0.068486005,0.07823094,0.065002985,0.026512932,0.079465784,0.042108934,-0.03880012,0.0551604,0.031807147,-0.05548819,-0.015300425,-0.013161435,-0.061714303,-0.029721554,-0.062390983,0.009236907,0.0142233465,0.05289365,-0.036160603,0.082202084,0.014484937,-0.056141585,0.040609084,0.010140489,-0.08798222,0.0032347054,-0.041998815,-0.05410248,0.1004704,2.5548973e-33,-0.09837213,-0.026820645,-0.04600911,0.036764696,0.013595991,0.019558787,-0.087445796,0.007352396,-0.016888756,-0.03253696,0.008445706,0.116087906,0.043693654,0.09775962,0.06397311,0.01572555,-0.040943425,-0.04101459,0.08680252,0.0037045241,0.007523136,-0.08606861,-0.015773227,0.067713104,-0.0065461365,0.024609352,0.02381814,-0.07142963,-0.031964175,0.05449587,0.014967696,0.032270078,0.05597735,-0.07046997,-0.041331828,-0.042400196,0.05924119,-0.010335679,0.048514325,-0.03871595,-0.010849633,0.04254173,-0.01152024,0.013322825,0.0024717133,0.037532162,0.044650394,0.079263136,0.05691556,0.04041351,-0.09208378,-0.08741341,-0.052848686,-0.057741746,-0.008119961,0.021908812,-0.072884955,0.07142145,0.016830249,-0.048545156,0.0026965477,0.058758456,0.028951515,-0.048675522,-0.06639186,0.010508853,0.039869983,-0.03797833,0.0803423,0.0110496245,-0.13369967,0.004274388,-0.063972354,0.0025219782,-0.037565824,-0.019983543,-0.019821247,0.010775996,0.05035499,0.008910391,-0.0912768,0.011869671,0.017404808,0.012818326,0.116602056,0.085953526,0.06317343,0.0541451,-0.025953745,0.123642534,-0.022065297,0.049755767,0.061870497,0.042138945,0.007230315,-3.5627977e-33,-0.04987404,-0.044792958,-0.010281451,0.074294224,0.056423686,-0.021433,-0.020571752,-0.020185597,-0.008800888,-0.024321325,-0.062068082,-0.08776174,0.095371455,-0.004299237,0.0067528575,0.040587522,-0.007272028,-0.045291945,-0.09301553,-0.04068288,0.0592015,0.06211125,0.0019484065,-0.042637136,-0.031276826,-0.014773738,-0.08868557,0.031269617,-0.017898358,0.009952902,-0.025279688,0.026136376,-0.1063728,0.03050249,-0.030906899,0.033639293,0.057779957,0.042425003,0.0013184524,0.029853206,-0.044747055,0.10957684,-0.012315829,0.01986669,-0.06538178,0.039924596,-0.0203027,-0.13998075,-0.03431427,-0.027453559,-0.035203196,-0.02046358,-0.011158636,-0.08647287,-0.039074548,-0.031816475,0.022856504,-0.08293238,-0.093160234,-0.014529707,0.033443306,0.0026484348,-0.025563085,-0.011165769,0.06644841,0.054660313,0.008276945,0.03934904,0.077864036,0.005433358,0.14974906,-0.025732448,-0.029838303,-0.048512258,-0.033873618,-0.061597984,-0.08901636,0.025698321,-0.004329794,-0.023717085,0.06900412,-0.019087208,-0.03975606,-0.0762847,-0.016269479,-0.0674022,-0.0021891883,0.061653893,0.012649847,-0.023597352,-0.0062787067,0.05669758,-0.14130417,-0.04755482,0.0070100483,-2.3847482e-08,-0.02351147,-0.05174011,0.04297816,0.040465645,0.05019372,-0.059354022,-0.023214,-0.013431287,-0.03443013,0.019976526,0.017736701,-0.016589219,0.010282479,0.06808317,0.013954377,0.06328626,0.07125091,0.08637176,-0.019494036,-0.0043001403,0.12518959,-0.034192145,-0.055514034,0.056021493,-0.0032387073,0.08428803,-0.016616307,-0.011021455,-0.034003712,-0.017203258,-0.022586556,0.03739145,-0.0013591807,-0.058461968,-0.03911852,0.039695237,-0.001612766,-0.028089073,-0.004709253,-0.025304083,0.025019411,-0.04124518,-0.013564446,0.037639122,0.054367118,-0.09539767,-0.0008315544,0.004042291,-0.00819187,0.057090383,-0.010550736,-0.05935308,0.06981942,0.07341234,0.040227227,-0.01581343,0.07989938,0.037829645,-0.06961947,0.0084773945,0.03970183,0.10261568,0.007362997,-0.119347416} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.023506+00 2026-01-30 02:01:11.553253+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1984 google ChdDSUhNMG9nS0VJQ0FnSUNveF9DS3hRRRAB 1 t 1987 Go Karts Mar Menor unknown Maravillo Kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza y cuidado! por estar a la última en todo! y por pedazo de pantalla gigante! maravillo kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza y cuidado! por estar a la última en todo! y por pedazo de pantalla gigante! 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.01 {O2.02,P3.01,E1.01} V+ I3 CR-N {} {"V4.01": "Maravillo Kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza "} {0.070704356,0.07534085,0.02284804,-0.05089911,-0.06814777,0.017433954,0.07198029,0.02728427,0.0031515048,0.03950791,0.014658249,0.012459033,-0.045968957,0.001980817,-0.015455153,-0.078194514,-0.09499575,0.030798653,0.05731786,0.07271975,0.13196084,-0.054714262,-0.0026990783,0.11753308,-0.111008674,0.06470386,-0.039673097,0.042512853,-0.042251002,-0.040971465,-0.030173132,0.14896111,0.09174374,-0.0010320614,-0.05237598,-0.008037823,0.030740788,-0.052949615,-0.047832612,0.0037031956,-0.03584813,-0.060636558,-0.02995735,-0.0073522045,0.012633457,-0.11630503,-0.021325251,0.023009166,0.031922735,0.018263582,-0.07129837,0.012249587,0.0038197674,0.0074764714,0.026421532,-0.06853267,0.025699753,-0.013680326,0.06485397,0.0110563245,0.0038619414,0.05342313,-0.0466781,0.07372504,0.037859444,-0.075003915,0.016953766,0.0027462512,-0.11475302,0.108806044,0.09002273,-0.07060419,0.10637935,0.041543264,-0.011684915,0.058829755,-0.078697376,-0.011121644,-0.040132843,0.0042683366,0.06591002,-0.017110292,-0.051833823,-0.033431504,-0.003089524,-0.0166825,-0.04609495,0.0425065,0.04608038,-0.11315586,-0.026869608,0.107777484,-0.06862325,0.004305683,-0.031125652,-0.030413881,-0.034530517,-0.14885312,-0.10856298,-0.020918937,0.09633693,0.10561112,0.12434367,0.045056365,0.016724067,0.052993223,-0.025124319,0.016911749,-0.03879859,0.06273996,-0.024650665,-0.064588726,-0.055196438,0.0053537763,-0.060625512,-0.006920492,-0.027776565,-0.032949205,-0.038856268,-0.03049922,0.0034165848,0.013976734,-0.06899717,-0.03704593,0.05709985,-0.054350175,0.02816342,8.92484e-33,-0.028867388,-0.021605853,-0.002558396,0.06760626,0.0020533027,-0.04359432,-0.034534484,-0.013319978,-0.06071554,0.05493499,-0.028509088,0.05977088,-0.010506817,0.058479097,0.07975805,0.09427606,-0.04803484,-0.03244112,0.07880311,0.04281359,-0.0129612265,0.041134384,0.03163747,0.005198578,-0.021126457,0.046297748,-0.029818567,-0.07743761,-0.041734427,0.052140806,-0.0048030955,0.033515994,-0.024498573,-0.044007543,-0.013418848,-0.090440474,0.02045241,0.017189564,-0.059761614,0.022784239,0.04471594,-0.013884831,0.03870512,0.03705341,-0.031842493,-0.00746097,0.03457089,-0.001205123,0.18695556,0.037255857,-0.058164395,-0.089409284,-0.06565964,-0.01982188,0.011809235,0.047867995,-0.04582445,0.01479361,-0.023755945,-0.0873812,0.03642918,-0.057138138,0.042756476,-0.061969586,-0.01178064,-0.053805277,0.030332562,0.03747342,0.06633425,0.045906935,-0.057538744,-0.04102495,-0.0005439507,0.0504476,0.0407582,0.033517998,0.013443299,-0.0037239078,0.0008378795,0.06508069,0.054074496,0.019695818,0.003902852,-0.019414902,0.0827635,0.113898806,0.003450824,-0.0053879493,-0.081465535,0.04974765,-0.022792898,0.053080842,0.04052002,-0.022094851,0.031401936,-1.0983979e-32,0.013021686,0.008351287,0.0860416,0.01045747,0.018454535,-0.015902039,-0.02692806,-0.04874991,0.015580242,0.025663804,-0.08288851,-0.082383126,0.047456235,-0.07880435,-0.09073182,0.061681498,0.008818018,-0.06719005,-0.046526536,-0.026549725,-0.067471854,0.07225593,0.0045667295,-0.019866794,-0.07290014,-0.03705565,0.05499349,-0.015839063,-0.056946546,-0.030453712,0.05602696,-0.01677071,-0.01844372,-0.030037424,-0.0011541643,0.035609096,0.0034953253,0.003958951,-0.07593143,0.08995537,-0.001662938,0.05643137,0.0019185592,-0.011522839,0.047576822,-0.046421215,0.0063087055,-0.09292513,-0.02128002,-0.028953413,0.0310451,-0.01064521,-0.048698414,-0.035975244,0.08370596,-0.019408692,0.048065327,-0.06843093,-0.115433626,-0.011477708,0.061106075,0.067611896,-0.03221936,-0.0017231118,0.08388355,0.027949201,-0.015730275,0.023525456,-0.027108565,0.089271784,0.062590174,-0.013628744,-0.08213416,0.05394352,-0.050682984,0.020373102,-0.046700977,-0.042858902,-0.007514076,0.023070153,0.02413617,0.0039150994,-0.05413086,-0.007396763,-0.059165306,-0.020179948,-0.040026244,0.039973423,-0.004128575,0.043650266,0.036481693,0.041780435,-0.051797077,-0.08486758,-0.019333186,-4.2747683e-08,-0.009292322,0.003850135,-0.0715976,-0.009185087,0.033440154,-0.06778234,-0.04848296,-0.042140316,0.059194975,0.033973157,-0.05426623,-0.026957216,-0.041898437,0.04710171,-0.02221272,0.053006258,0.07538703,0.074089445,-0.045813173,-0.07874736,0.0449947,-0.0063395095,-0.032285526,-0.042300656,-0.034425683,-0.017646834,-0.08540634,0.00040221328,-0.02161253,-0.0023677724,-9.357549e-05,-0.026056642,-0.07725943,-0.047917984,-0.023510305,-0.06383401,0.023875378,-0.0013995802,-0.016182104,-0.050972354,0.091137625,-0.015571186,-0.05645101,-0.024709452,-0.030838456,0.011305624,0.017810185,0.031795986,-0.02676466,0.034756616,-0.08682105,0.017384833,0.007832547,0.0069239065,0.026322154,0.019564306,0.045283575,0.01846458,0.00055119843,0.025137568,0.05513194,0.006393041,-0.0007698859,-0.054842893} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.048853+00 2026-01-30 02:01:11.561056+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1986 google ChdDSUhNMG9nS0VJQ0FnSUQ2dC1XZzJBRRAB 1 t 1989 Go Karts Mar Menor unknown Sehr gute Rennstrecke hat sehr viel Spaß gemacht. Sehr empfehlenswert. Jederzeit gerne wieder sehr gute rennstrecke hat sehr viel spaß gemacht. sehr empfehlenswert. jederzeit gerne wieder 5 2022-01-31 01:52:39.833374+00 de v5.1 V4.03 {O1.01} V+ I3 CR-N {} {"V4.03": "Sehr gute Rennstrecke hat sehr viel Spaß gemacht. Sehr empfehlenswert. Jederzeit gerne wieder"} {-0.029999299,0.06968096,0.08420725,-0.01642703,0.018244155,-0.005411174,0.05954753,0.051499188,-0.022960711,-0.05033739,-0.0015666246,0.005859717,0.007446515,-0.06342777,-0.075515375,-0.036781266,-0.00987408,0.052859984,0.022260552,-0.019509038,-0.06756756,-0.013462697,-0.0026819285,0.0012266615,0.061581563,-0.043449357,-0.03682065,0.009672876,-0.03987309,-0.063736014,0.07672859,-0.093769416,-0.018546714,0.02824936,-0.013250802,0.042943053,0.02716303,-0.0073182876,-0.028900372,0.106884554,-0.07879842,-0.05083433,-0.17182408,-0.039035995,0.01969498,0.05741949,0.021658078,-0.035885047,-0.03912348,0.034216367,-0.11842098,0.026558883,0.04180949,-0.07203147,0.008311927,-0.090346165,0.087092094,-0.0068298304,0.002821812,-0.035846822,0.024276404,-0.048890222,-0.031273928,-0.014208715,-0.09332995,-0.033471473,0.019915989,-0.035081916,-0.06726393,-0.03729413,-0.030072987,-0.06307554,-0.027161695,-0.04979566,-0.077124566,-0.036478993,-0.06111941,-0.0043914607,-0.0101184035,-0.009095673,-0.043978058,0.00883288,-0.06805249,0.0014519743,-0.020211646,-0.0027270468,-0.026322598,-0.017292676,0.031596135,0.051336456,-0.043541305,0.019766517,-0.07373841,0.056431763,-0.071414,-0.03433596,0.089607894,-0.012928019,-0.028955095,0.12719738,-0.03163526,-0.027492046,0.06603224,0.030266926,-0.07223975,-0.05967797,-0.06630477,0.026601037,-0.0012666386,-0.016952941,-0.0067885052,0.0083650155,0.0010292962,-0.08678202,0.057217862,0.05051414,0.0075855134,-0.0063514477,0.03408932,-0.022264548,0.07750212,0.04509267,-0.020268448,0.043530554,-0.06417544,0.0013409394,-0.026665626,1.0987237e-32,-0.04080247,0.00797116,-0.025438141,0.04341819,-0.10929906,0.010044363,-0.067662425,0.023021773,0.014828395,0.04430457,0.060944274,-0.06980703,0.06197376,-0.009952209,-0.023300497,0.008827848,0.0029491365,0.008994658,0.0029468162,-0.013199463,-0.011925619,-0.05623741,0.015357855,0.012008327,0.051973473,-0.08516013,0.062969975,-0.029841993,0.034721736,0.03864246,0.1002534,0.0023039626,0.029843835,-0.038757764,-0.0036989236,-0.07131711,0.03464324,0.029187702,0.040945835,-0.13990809,0.039053537,0.022034213,-0.017832736,-0.09058219,0.07141103,-0.0066571804,0.051724188,0.040927988,0.06679409,-0.019324396,0.031297136,-0.016377248,0.05817934,0.054214556,0.06773149,0.0015907066,-0.079116896,0.04273799,0.013453862,0.02799153,-0.009319416,0.04716887,-0.0066271084,-0.069307305,0.05223795,0.003268729,-0.025163006,-0.01379319,-0.039483022,0.0495175,-0.08746155,0.05779868,-0.048755664,0.08539191,-0.04876695,-0.06201813,-0.041754548,0.12554194,-0.029132098,0.04276528,-0.088800944,0.040838882,0.055593986,-0.11609693,0.034571666,-0.00774829,0.06993318,-0.06724901,-0.027807605,0.08784054,0.036695786,-0.021146677,0.006594113,0.04181953,0.0256872,-1.0554737e-32,0.035780568,-0.043273937,-0.07553093,0.023682412,-0.012488166,0.046646696,-0.09157724,-0.005456359,-0.10193412,0.03173796,-0.026538244,0.024695799,0.081115685,-0.020479053,-0.005950734,-0.0015191362,0.07140125,-0.029385054,-0.051672325,-0.0123124635,-0.0049183993,0.008370252,0.0384106,-0.04652928,-0.016140455,-0.016236722,0.040654346,0.03223698,-0.13189024,0.0008839651,-0.010067085,0.02065205,-0.0017228695,0.03505393,-0.02360178,0.0076998575,-0.022133999,0.09104252,0.016412608,0.04680908,-0.044102777,0.061524667,-0.0038178295,0.06346796,0.026483525,-0.007421608,-0.06386468,-0.025610063,-0.030063085,-0.04036903,0.011434458,-0.00862518,0.05628241,-0.14916442,0.03735416,0.04508392,-0.03429383,-0.015779542,-0.0010310442,-0.021936553,0.09262258,0.034025375,0.079365805,0.033212233,0.1117529,-0.053857602,-0.0359829,-0.10084039,0.06045492,-0.016032947,0.060989738,0.02788414,0.036849484,0.0018485063,0.06122383,-0.04113244,-0.042609364,0.1374394,-0.121354334,0.015782308,0.016959365,0.04547418,0.0034213287,-0.023799624,-0.023609908,3.5738998e-05,-0.03495133,0.05956109,-0.052657094,-0.02888212,-0.03170604,0.03274568,0.065909095,0.011222252,0.12381372,-3.924747e-08,0.0453912,-0.046929616,-0.02920673,-0.020907052,-0.03763968,-0.0034112856,0.0018471071,-0.007547755,-0.10472589,0.021324283,0.05040695,0.11402624,-0.0037361786,0.07747054,0.003299632,-0.05214262,0.01939654,0.050893843,-0.0030712786,0.06590326,0.15132187,-0.03342348,-0.0018677538,0.079023585,0.013443632,-0.020439303,0.05647569,-0.04204946,0.0016564111,-0.06755252,0.024261164,0.05759633,0.06309182,-0.033787478,-0.035880323,0.01390908,-0.09451433,0.06615822,-0.03346518,0.06256758,0.061336502,0.085679695,0.016420146,-0.037818443,-0.06930863,-0.049548574,-0.049718264,0.028862672,0.02708951,0.03542222,-0.020820858,0.033323657,0.020790836,0.021440122,-0.01576772,0.041299295,-0.01572381,-0.034768052,-0.056319617,0.01011845,0.010400254,0.0032006728,-0.075020015,0.022261206} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.074592+00 2026-01-30 02:01:11.566369+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1987 google ChZDSUhNMG9nS0VJQ0FnSUNRNGZPbFN3EAE 1 t 1990 Go Karts Mar Menor unknown Es un circuito muy divertido. Su trazado es muy acertado para permitir adelantamientos en gran parte de la pista. Los F200 van muy bien. es un circuito muy divertido. su trazado es muy acertado para permitir adelantamientos en gran parte de la pista. los f200 van muy bien. 5 2017-02-01 01:52:39.833374+00 es v5.1 O1.01 {E1.03,O1.02} V+ I2 CR-N {} {"O1.01": "Es un circuito muy divertido. Su trazado es muy acertado para permitir adelantamientos en gran part"} {-0.028994352,0.03506348,0.014877086,-0.052740168,-0.010769979,0.019169366,0.011872508,0.12047672,-0.004409473,-0.008616422,0.08286045,0.007190933,0.0017514473,0.033169303,0.014542955,-0.031586174,-0.052787364,-0.024788372,0.019914476,0.026650108,0.1362421,-0.006936181,-0.053194582,0.016704012,-0.1879797,0.033280164,0.02637393,0.026340706,-0.07388165,-0.104110464,-0.008049931,0.11219833,-0.0140976915,0.006093472,-0.054749947,-0.057451908,-0.04442315,0.052013874,0.020443356,0.03457705,-0.060811967,-0.102005124,0.044100665,-0.11509561,0.06918378,0.002560194,0.020805337,-0.017032176,0.0653611,-0.03100152,-0.034110807,0.043510914,0.034731958,-0.018830627,-0.028621212,-0.044670604,-0.036797706,0.024075061,0.03776096,0.0563734,-0.008126584,-0.0009680107,-0.078115195,0.0063426625,-0.024531381,-0.06375121,0.029972835,-0.052714545,0.0072308164,-0.00354733,0.075304285,-0.060555644,-0.034617826,-0.12415576,0.03356003,0.0015113574,0.007973228,0.05676201,-0.048360966,-0.015275126,0.016487475,-0.07845356,-0.027507538,-0.099633984,0.06843503,0.053838436,-0.05248155,0.0139562925,-0.00027277722,-0.0031267072,-0.03516911,0.04537786,-0.0355929,-0.023852732,-0.023256369,0.012016955,0.013667357,-0.12180209,-0.009865318,0.063491985,0.028864589,0.009188145,-0.033293653,-0.012756426,-0.055247612,0.0024007338,0.08524298,0.03544707,-0.072686434,-0.029545913,0.005535659,0.014260821,-0.037886895,-0.06796198,-0.035767846,0.014361585,-0.060369138,-0.08722099,0.04504984,-0.035086993,-0.06557219,-0.008085263,-0.06253833,0.035497624,0.009604846,-0.020420685,0.024131492,5.162355e-33,-0.08288873,-0.0007250938,-0.033434127,0.0014460492,-0.043506555,0.01295076,0.024222668,-0.03348511,0.025260376,-0.039341703,-0.012499713,0.09177336,-0.026612291,-0.0067670937,0.030148543,-0.093740284,0.03822646,-0.023376329,0.028908778,0.011459628,0.05070618,-0.046213653,0.034562428,0.036882848,0.05331769,0.083243705,-0.04025231,-0.037638936,-0.03856161,0.06544869,-0.06946834,0.042946957,0.032145213,-0.017848365,-0.027533794,0.016261969,-0.039108515,0.051812783,0.0014229119,0.014555434,0.057761513,0.0049838335,-0.06862974,0.06719245,-0.012091237,-0.012764963,-0.027463077,0.03670394,0.132536,0.090482734,-0.027501337,-0.05371708,-0.049102552,-0.040020518,0.03558928,0.0066877836,-0.036455423,0.036635768,-0.013883454,0.0044911406,-0.017501602,0.049114745,-0.07890792,-0.023196006,-0.028876105,0.022722654,0.04909498,0.02195108,0.101670556,0.017171672,-0.11061123,-0.046811294,0.0025933173,0.06562584,0.02091413,0.016014686,-0.005764545,0.023742262,0.0024786834,0.01473692,-0.042005252,-0.027197829,0.049823932,0.050809916,0.09425278,0.07537572,0.041028123,0.084627226,-0.015675941,0.020142823,0.020848468,0.0677687,0.0638049,-0.010307624,0.0820274,-6.259656e-33,0.011742653,-0.01778092,0.054304853,0.0025505666,0.0044251136,0.04684177,0.05534551,-0.051633004,-0.04920588,0.0134644285,-0.041416187,-0.04890004,0.14860316,-0.06534501,-0.06497797,0.011084644,-0.0037135205,-0.04798827,0.0013524486,0.05243295,-0.052865155,0.068054795,0.09754723,-0.04693348,-0.09415467,-0.014832277,-0.07662311,0.03711721,-0.046509597,0.038980402,-0.058728285,0.032853484,0.005417708,0.06557759,-0.04147322,-0.022965953,0.046860684,0.05685118,-0.030319847,0.039976794,-0.07250958,0.047902085,0.0653424,0.0383084,-0.043642428,0.030362677,0.060220134,-0.13129404,-0.044021472,-0.036714666,0.034395806,-0.059056897,-0.020907901,-0.033205636,0.010458007,-0.033729386,0.0024677198,-0.039229665,-0.11793685,-0.030882845,0.09729533,-0.017148448,-0.0332903,-0.09596455,0.101222605,-0.007038333,0.005479306,0.03299233,0.07332795,0.02539794,0.10997017,0.0103525575,0.015885968,-0.016818471,0.019948145,-0.03639738,-0.110010624,0.0065475414,-0.028415354,0.01609438,-0.030475441,0.0037674012,-0.06998718,-0.016273884,0.012685921,-0.068276525,0.004451987,-0.059950635,0.03514656,-0.015302291,-0.020931358,0.04615567,-0.030418301,-0.014268552,0.00556481,-3.4817077e-08,-0.0050719143,0.040328316,-0.07128964,-0.02799414,0.040605962,-0.05339385,-0.052336413,-0.0022481596,-0.06489854,0.001573485,-0.0018269963,-0.0044416697,0.09329238,0.042313576,0.018603154,0.018931612,0.09074731,0.17355566,-0.0072875433,0.014756752,0.024135089,-0.013641757,0.0023723512,0.029196545,0.05252806,0.0308068,-0.01392394,0.020607863,0.007342786,-0.05114232,-0.044308044,-0.04679088,0.016986309,-0.025986528,-0.0010076024,0.0371992,-0.0072971303,-0.0055883657,-0.060127873,0.021756437,0.10249046,-0.0008456885,-0.1020122,0.03761434,-0.042165358,-0.07454921,0.008689588,-0.08014647,-0.031420235,0.016957277,-0.039262176,0.05574969,-0.001117136,0.021361507,-0.004422942,0.022503866,-0.017633602,-0.013376795,-0.06844108,-0.05225499,0.020229073,0.17900126,0.03970104,-0.05783801} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.086295+00 2026-01-30 02:01:11.56918+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1974 google ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB 1 t 1977 Go Karts Mar Menor unknown Gran lugar para pasar unos momentos de diversión y soltar adrenalina. Karts de todas las edades y tipos de conducción. Lo recomiendo 100 x 100 gran lugar para pasar unos momentos de diversión y soltar adrenalina. karts de todas las edades y tipos de conducción. lo recomiendo 100 x 100 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Gran lugar para pasar unos momentos de diversión y soltar adrenalina.", "O3.02": "Karts de todas las edades y tipos de conducción.", "V4.03": "Lo recomiendo 100 x 100"} {-0.058831263,0.0339883,-0.0013957206,0.013760331,-0.00063843967,-0.023610245,0.09193134,0.1394149,-0.02769574,-0.030343184,0.07940052,-0.054694608,-0.03488371,0.026731068,0.017024906,-0.013221167,-0.04006321,0.088288486,-0.0108140865,0.027723962,0.07637905,-0.06087874,-0.10649895,0.039795924,-0.0752745,0.007872495,-0.054473612,-0.01126093,-0.03179572,0.0032313415,0.011853666,0.05619308,0.01707886,-0.06738477,-0.033406336,0.013166388,-0.04394469,-0.026771547,-0.037291873,0.07843739,-0.02646703,-0.007875955,-0.040139206,-0.074415475,0.08431779,-0.059134834,-0.07980658,0.07147925,0.052513395,-0.003078193,-0.011299481,0.027772447,-0.052967735,-0.004843601,-0.027692823,-0.03404967,-0.028318249,-0.04311822,0.04755966,0.03776748,-0.026858363,0.06874472,-0.05975405,-0.018278671,0.042970136,-0.05760802,-0.015311543,-0.017367912,-0.0150612155,0.025443679,0.08321271,-0.05335831,0.01850346,-0.040331673,-0.0042286217,-0.0035074078,0.0003357886,0.030418318,-0.07363427,0.023217937,0.07427927,-0.0077756154,-0.00978781,-0.04050528,-0.01845727,-0.00895084,-0.012555303,0.055795226,0.03743549,-0.007249076,-0.038730282,0.04521505,-0.13554752,0.010278949,-0.0090120565,0.044398088,-0.040649273,-0.017978653,-0.011433325,-0.013311065,0.052249596,0.035797026,0.0048618107,-0.010127099,-0.02945351,-0.0701691,0.070974045,0.0008701506,0.00472332,0.05629898,-0.07469968,-0.005275642,0.009061967,-0.026518675,-0.053126324,-0.029126162,-0.045808237,-0.036420744,0.021832222,-0.090636685,0.045107305,0.046978287,0.021456152,-0.020236783,0.056744263,0.023682395,0.12061338,7.6183554e-33,-0.04391052,-0.057490237,-0.0064094276,0.06361115,0.026223056,-0.024712335,-0.03856488,-0.029106151,0.07967148,-0.04132268,-0.078180104,0.03529644,-0.0505004,0.08150486,-0.08241697,-0.08299104,0.11048698,0.00055803434,0.058531787,0.006146984,-0.043768425,-0.020132687,-0.030456994,0.053003043,-0.04118478,0.07432829,-0.06861306,0.006818433,-0.046508923,0.056865744,0.05344585,0.008034434,-0.0137319835,-0.035279196,-0.08511439,0.015739799,0.02042013,0.037258983,0.0065630274,-0.012549291,-7.4108044e-05,0.052576818,0.070444286,0.07333836,0.051374253,0.057355974,0.06569637,0.013375656,0.061988298,0.0029345325,-0.07782167,-0.017872112,-0.084372215,-0.05201581,-0.045041114,0.031351365,-0.057977397,-0.0057713427,0.0145489145,0.018532835,-0.003950751,0.035013407,-0.07649627,-0.008896192,-0.04652037,-0.0047100754,0.024699554,-0.05874232,0.01972787,0.06606529,-0.10721993,-0.026566323,0.046704683,0.033950243,0.035259515,0.0002652889,0.092947714,0.040031504,-0.0804721,-0.02968319,-0.07188281,-0.02555182,0.06901881,0.106828794,0.16378355,0.015035427,-0.003380782,0.03802439,-0.018865943,-0.00090273865,-0.018673977,0.09835961,0.009288062,-0.017255751,0.037325133,-8.6906685e-33,0.0684647,0.006998681,-0.055238135,0.05043556,-0.02511248,0.069788165,0.032100577,0.025348388,0.050276853,-0.029358173,-0.14456627,-0.059191093,0.014902825,-0.067721784,-0.081405915,0.11283149,0.011135795,0.009534574,-0.12398166,-0.011975501,-0.06505265,0.1372132,0.07549089,-0.061029855,0.0337881,-0.087542914,0.02216219,0.004779252,-0.11188142,-0.033895247,-0.072119884,-0.07778824,0.046428252,0.041851386,-0.073855564,-0.023162067,0.05130754,-0.052474983,-0.061951917,0.100743435,-0.0033087868,-0.0024862872,0.020315673,-0.05119929,0.01940752,0.019161468,-0.008489278,-0.15602548,-0.037468538,0.010899181,0.100687586,-0.049985055,-0.008545854,-0.013308173,0.07800158,-0.0038795827,-0.019320883,-0.038163718,-0.1133631,-0.023516247,0.068625815,0.03512896,-0.026581313,-0.052872166,0.08158999,0.05366094,0.0036227438,-0.028733332,-0.013101305,0.010855417,0.093328394,0.011813517,-0.0147492755,-0.0037443289,-0.04127158,-0.037201375,-0.11025488,0.050895024,0.051700097,0.018079368,-0.027793247,0.0037602268,0.0021787449,-0.026706755,-0.039419495,0.009188844,-0.013273894,0.057239022,-0.045450877,0.01233847,0.0022528307,0.01025264,0.024325654,0.037749115,0.068966925,-3.732278e-08,-0.045089934,0.03617177,-0.052748173,0.050165292,0.021164069,-0.012811331,-0.0060457536,0.03935822,-0.04087802,0.027811084,0.007823584,0.042537957,-0.015175808,0.094043456,-0.03817623,-0.09074212,0.04606412,0.08510642,-0.039743524,-0.034148064,0.06471149,0.047569502,-0.04288096,-0.013661129,0.037501995,-0.024456337,0.034552485,0.04968847,0.025492495,-0.05020504,-0.024674892,-0.08248602,-0.081878304,-0.014537076,-0.028762065,0.010783761,-0.0178299,0.021777432,0.013846225,0.033461593,0.0002324749,-0.043669574,-0.022436723,-0.009457034,-0.0072135385,-0.043990538,-0.0375537,0.020525338,0.009063422,0.036868025,0.057810985,0.06315482,0.021162478,0.016918961,0.0024514047,-0.02124708,-0.04191775,-0.018320054,-0.10104331,-0.022685444,0.050759237,0.10360172,-0.06379459,-0.034697406} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:51.064093+00 2026-01-30 02:01:11.49789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1975 google ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE 1 t 1978 Go Karts Mar Menor unknown Son muy majos, siempre con una sonrisa en la boca y la pista es una pasada! Muy recomendable para ir tanto con amigos como con la familia. son muy majos, siempre con una sonrisa en la boca y la pista es una pasada! muy recomendable para ir tanto con amigos como con la familia. 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.01 {P1.04} V+ I3 CR-N {} {"A3.01": "Muy recomendable para ir tanto con amigos como con la familia", "O1.02": "la pista es una pasada", "P1.01": "Son muy majos, siempre con una sonrisa en la boca"} {-0.037010383,0.008504591,-0.037529066,-0.07560413,-0.028477242,0.053211883,0.06498504,-0.006281276,-0.023693657,0.013874139,0.0963318,-0.010301936,0.0049850787,0.04814664,0.0674774,0.03371027,-0.03065661,0.031978164,0.03599931,0.0045572626,0.046029776,-0.08428189,-0.063080505,0.05955113,-0.134921,-0.005901104,0.07342337,-0.009418295,-0.10652133,-0.037402105,-0.007711625,0.0837645,0.04411398,-0.0082452195,-0.017719226,0.019103901,0.03953398,-0.07924529,-0.0054157344,0.047993734,-0.09028748,0.037664928,0.040327076,-0.0146502545,-0.008525291,-0.11151545,0.024736878,0.030899681,0.041393004,0.010903222,-0.041514304,-0.030541463,0.010249266,0.001499417,-0.010559601,0.016095225,-0.013834606,-0.07827628,0.035796754,0.02896053,-0.020797102,0.06272333,-0.036365896,0.003859469,-0.030862596,-0.037346903,0.06766774,-0.0153369205,-0.05502852,0.048141077,0.06798013,-0.044066366,-0.015251496,0.0287354,-0.04177105,0.04894982,0.0041330177,-0.0053761555,-0.05479669,-0.016730584,-0.0420005,0.019419618,0.011086334,-0.034943823,0.0028327277,0.061833873,-0.014077697,0.012162138,0.03668706,0.0008816809,-0.04898441,0.068692185,-0.025389828,-0.022715615,-0.015578279,0.032518733,-0.009686404,-0.10977859,-0.066426635,-0.004064846,0.10941459,0.08039439,0.060296763,0.015600488,-0.099341996,0.008723126,0.07151807,-0.02247737,-0.0026125761,0.017225783,-0.07048215,-0.01812287,-0.010545921,0.023728456,-0.11634991,0.009661329,0.06175009,-0.036573015,-0.05318715,-0.10231644,0.060534235,0.049502123,-0.032241117,0.012927968,-0.011059154,-0.096731685,-0.0019789159,9.706011e-33,-0.052943893,0.053547114,-0.010321141,0.06797622,-0.052677285,0.04940879,-0.015423635,-0.067901924,-0.08382445,-0.06991204,-0.057581685,0.0069249226,-0.0024670349,-0.035821307,-0.0041436763,0.0034483564,-0.0018923165,0.0042891726,0.06896949,0.018514752,-0.08275325,0.012828591,0.023684409,-0.06733917,0.023367207,0.019682303,0.029747112,-0.015225495,-0.008604808,0.045321904,-0.047666755,0.058510926,0.03201724,-0.03363189,-0.021652892,-0.042533573,0.04593131,0.04127114,-0.018292718,0.026203305,0.003421214,0.025428332,-0.012665792,0.0138317235,0.005059693,-0.03512146,0.037702058,0.011991816,0.052893754,-0.022495208,-0.043145094,-0.084054366,-0.06968903,-0.053826146,0.0035802436,-0.017799472,-0.05458335,0.033433467,-0.015981741,-0.08234002,0.077621356,-0.12727587,0.03081911,-0.03627441,-0.061332185,-0.024964388,0.031002939,0.026246082,0.13627595,0.07234184,-0.015536936,-0.043399516,-0.07820253,0.01419088,0.015485235,-0.00044265547,0.03759605,0.056159995,0.019938897,0.044766657,-0.05213446,0.041814987,0.03871489,0.06181389,0.09197291,0.06760516,0.09379839,0.05091597,-0.11334265,0.10470098,0.0056380657,0.07787902,0.107148826,-0.046801925,0.05499859,-1.0266407e-32,0.009904651,-0.006350117,0.01916049,-0.017510777,-0.0005346496,-0.056520622,0.022914687,-0.0356954,0.021534055,-0.052925427,-0.15791447,-0.1244175,0.03790768,-0.079616144,-0.0387613,0.121098004,0.02819181,-0.05438,-0.050287843,-0.023628755,-0.008548982,0.0026075211,0.072102055,0.0188657,-0.0024256406,-0.057000447,0.00016265908,0.051969986,-0.08442405,-0.043769393,0.038072977,-0.05215471,-0.012871617,0.0154095655,-0.04469508,0.07039722,0.063384525,0.05146429,-0.002117695,0.068698816,0.011019013,0.039598703,-0.04416237,-0.010029896,-0.032217227,0.07609643,0.06628349,-0.11766818,-0.046486035,-0.029307008,-0.002817581,-0.07585688,-0.008821237,-0.015253168,0.08014226,-0.030291358,-0.011371662,-0.050796393,-0.032790694,-0.034719583,0.027218547,-0.012557795,-0.0803984,-0.027754692,0.05008669,-0.010204287,-0.017720193,-0.03191199,-0.00603326,0.10500972,0.05625963,-0.002257307,-0.098410614,0.03337713,-0.050097942,-0.03094307,-0.09740809,-0.024532089,-0.011956582,0.03233453,0.032715578,0.022594007,-0.06386642,-0.049661607,0.006000148,-0.07906385,0.008659311,0.054593034,0.04427795,0.02845981,0.032054838,0.025905643,-0.03240117,-0.09065933,0.015514162,-3.734348e-08,0.050263822,-0.037754625,-0.059038837,-0.0054513253,-0.028983561,-0.009876924,-0.038114596,-0.006490875,0.059389878,0.01924704,-0.05975991,-0.021349039,0.03990146,0.03571496,-0.007248215,0.071036346,0.111726604,0.06672215,0.012013574,-0.03638845,0.08455457,0.035644043,-0.029502984,0.06974669,-0.052471638,0.050662003,-0.03805101,0.004246929,-0.015717033,-0.00939462,-0.003277449,-0.04616954,-0.0351885,-0.07679588,-0.03107985,-0.051854283,0.042308595,0.0219305,0.06055416,-0.029109335,0.1462518,0.017180333,-0.11427588,0.04180439,-0.06519724,-0.047624253,0.0133327525,0.0014325363,-0.0028067494,0.068724945,-0.017673887,-0.012279579,0.051260795,-0.04089269,0.0075830654,-0.024364531,0.021843204,0.08903274,0.03295761,-0.0016366012,0.05720358,0.13553342,0.013667107,-0.042776283} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:59.320497+00 2026-01-30 02:01:11.509879+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1978 google ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB 1 t 1981 Go Karts Mar Menor unknown Inmejorable, las instalaciones y los equipos en perfecto estado y los empleados muy amables. Gran ambiente de carreras. 10/10. inmejorable, las instalaciones y los equipos en perfecto estado y los empleados muy amables. gran ambiente de carreras. 10/10. 5 2019-02-01 01:52:39.833374+00 es v5.1 E1.03 {O1.02} V+ I3 CR-N {} {"E1.03": "Inmejorable, las instalaciones y los equipos en perfecto estado", "E1.04": "Gran ambiente de carreras", "P1.01": "los empleados muy amables"} {0.0051671444,-0.003878931,0.06512919,-0.037119668,-0.004816794,-0.057145555,0.076234706,0.040455338,-0.02949756,0.020135853,0.074623406,-0.0023516847,0.0064617107,-0.014262178,0.06414022,-0.03260906,0.005544781,0.015371403,0.026240228,-0.016000966,0.040215455,-0.01564901,-0.036967967,0.07658974,-0.08366476,-0.023810212,-0.020089263,0.040245086,-0.028097808,-0.11005117,-0.016281253,0.07120937,0.13224825,-0.0179981,-0.024074795,-0.044696886,0.06588998,-0.063660614,-0.087626256,-0.0105946725,-0.12969454,-0.06413522,0.0065644416,-0.056692995,-0.040464375,-0.14547549,0.025215,-0.03552247,-0.0042494703,-0.041004434,-0.040964812,-0.001091942,-0.01654614,0.004783127,-0.0105221635,0.009009501,-0.03401279,-0.015045405,0.07749283,0.028254889,0.04111836,0.06871747,-0.033904474,0.06610256,0.017994236,0.029038064,0.06504533,0.01643426,-0.013640389,-0.021968948,0.03328394,-0.06680464,-0.02828384,0.026136395,-0.018727506,0.08315758,-0.031198181,-0.012197895,-0.06354998,-0.01706948,-0.0074280314,-0.027249293,-0.03370432,-0.05810924,-0.029863767,-0.010475513,-0.03437695,-0.018789342,0.034614384,-0.006482692,-0.024317779,0.021981811,-0.12700094,0.023784688,0.031098545,-0.0059844092,0.012420018,-0.09240902,0.006842514,0.02211804,0.048785757,0.058831178,0.028462386,0.036329545,-0.0707529,-0.027402094,-0.014073126,-0.062075727,0.029160324,0.0033948051,-0.07416186,-0.10204826,0.008327981,-0.07050102,-0.067197315,0.0055176993,-0.047533814,-0.018487167,0.03710152,-0.042930607,0.06519254,0.020115769,0.015054072,0.0077317334,0.033127822,-0.0720424,0.093906336,7.136563e-33,-0.017377991,0.03388819,-0.0155750085,0.13293807,0.01690254,-0.0034508684,-0.049274158,0.0036833612,-0.047837477,0.005252971,-0.06534229,0.08722606,-0.07421013,0.1001622,0.12518336,-0.02975042,-0.044274963,0.018241335,0.057658482,0.02231803,-0.0973899,-0.059798885,-0.013898449,0.034491774,0.03746672,0.08319407,0.06757443,0.020276714,0.0041001374,0.050483603,0.02625256,0.020975478,-0.0102842515,0.027009804,-0.002475435,-0.032759387,0.03783122,0.060345415,0.02869918,-0.016057659,0.0019682478,0.033242036,-0.0068996726,-0.021708103,0.079358265,0.02158367,0.07651365,0.059180845,0.1629154,0.03212854,-0.05016906,-0.02932394,-0.032933213,-0.052772347,-0.0400601,0.042201433,-0.027134972,0.0011572329,0.05346877,-0.0108827045,-0.014317131,0.039834164,-0.017137557,-0.09465072,0.037127156,-0.0023782433,0.033436827,0.01860168,0.10573017,0.022860501,-0.10852321,-0.094705574,0.038727384,0.037674863,0.0127546,-0.012697942,-0.058081243,0.036954112,0.009994694,0.068309695,-0.08312772,0.053302925,-0.028185524,0.019322803,0.09584478,0.051421937,0.019219087,0.020659229,0.026995163,0.105438456,0.008970941,0.099796295,0.0079274485,-0.016617723,0.011774512,-1.0134986e-32,0.033105798,-0.05500643,-0.025190568,0.075367756,-0.003325568,0.03397034,-0.041795168,0.017415918,0.03360114,-0.013235427,-0.049187526,-0.037649963,0.110832535,-0.06704179,-0.066032566,0.039529655,-0.040270638,-0.07296672,-0.052437514,0.070354454,0.020169621,-0.051788416,0.075871885,-0.043260954,-0.0027633733,-0.04076468,-0.075337015,0.05442142,-0.11525472,0.019262567,-0.006568286,-0.03473376,-0.08313149,0.03278126,-0.053434372,-0.0010825371,0.045481425,0.069870956,-0.031159438,-0.011801441,0.024559721,0.024675466,-0.05891669,-0.024020351,-0.016553968,-0.0037250088,-0.029677493,-0.11041565,-0.035595644,-0.045914892,0.11264023,-0.00689057,-0.061762623,-0.062226273,0.04646397,0.00093200506,0.0077786027,-0.020226981,-0.04223409,0.013905584,0.051343586,0.087892875,0.0038060467,-0.07709808,0.048350517,0.03483087,0.015961878,0.029115407,-0.04118252,0.014590571,0.07872056,-0.07383302,-0.0119415745,-0.07784759,-0.0056630154,-0.020065451,-0.08823772,-0.019274838,-0.013258617,-0.044425342,0.0078021707,-0.0183871,0.016603258,-0.0009217153,-0.03576147,-0.010503214,-0.03572841,0.04136681,0.009213349,0.03627465,0.0011310192,0.07895817,-0.007812931,0.011823956,-0.03212249,-4.4850857e-08,-0.019391757,-0.040452063,-0.055630364,-0.011704277,0.0148293525,-0.097370185,-0.013641197,0.08669471,0.017205818,0.005647669,0.008474805,-0.06931994,-0.0413958,0.11942964,0.011105016,-0.013873638,0.019249039,0.13395256,-0.09478138,-0.074921064,0.08520042,0.017453514,0.046007887,-0.0172841,0.01577878,0.00085433386,-0.06489723,-0.08870935,-0.016960783,0.08243306,-0.061625466,-0.017975496,-0.024421385,-0.063186266,-0.010482641,0.013600174,-0.030609988,-0.0079346895,-0.03707231,-0.11952342,0.02060721,-0.08385273,-0.07000067,-0.04222012,0.016715126,-0.09424504,-0.063304245,0.030467626,-0.06256707,0.031384435,-0.05518916,-0.02761809,0.0038337167,0.028665006,0.045212932,-0.041182227,0.01025124,0.018631268,0.013899438,0.022704555,0.013305049,0.09344605,0.026092952,-0.06386173} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.115908+00 2026-01-30 02:01:11.536601+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1980 google ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB 1 t 1983 Go Karts Mar Menor unknown Genial. Un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer carreras en grupo con los amigos. Buen precio y karts en buen estado. genial. un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer carreras en grupo con los amigos. buen precio y karts en buen estado. 4 2017-02-01 01:52:39.833374+00 es v5.1 O1.01 {E1.04} V+ I2 CR-N {} {"O1.01": "Genial. Un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer car", "V1.01": "Buen precio y karts en buen estado."} {0.014994134,0.039720327,0.033819363,0.0015970041,-0.067862116,0.0670513,0.03982983,0.011568796,0.00569677,0.009119349,0.08960848,-0.052183073,-0.07580929,-0.04177091,0.044860866,0.044844892,-0.05198959,0.038257964,0.06498664,-0.060004972,0.06271076,0.03514977,-0.03954416,0.02283951,-0.12072506,0.050936196,0.016291304,0.056967445,0.010520246,-0.005767969,-0.023299864,0.15991841,0.074295774,-0.0006644367,-0.07110436,0.028049493,-0.0016344493,-0.018439624,0.019048007,0.038275953,-0.011108053,-0.040664088,-0.003804592,-0.06119661,0.00047386804,-0.09213512,-0.043758173,0.049620952,0.028066771,0.00076579076,-0.04049179,-0.028430086,0.03054941,0.030842735,-0.03904951,0.0080383625,-0.032703463,-0.07419305,0.083684936,0.044690855,-0.046796143,0.02883527,-0.022717843,-0.017408319,0.015842574,0.04208685,0.03486268,0.001944322,-0.0114342645,-0.031545267,0.047548972,-0.04740109,-0.0060274554,0.012829822,-0.04237102,0.06282331,0.040248837,0.0070136026,-0.04013484,-0.07481831,-0.047036353,0.0040759956,-0.013471069,-0.12148758,-0.0018632833,0.04472834,0.04002585,0.025416208,0.0024243942,0.000959575,-0.08474673,-0.048527822,0.049910262,0.02239961,0.007991858,0.0147750825,-0.016593216,-0.15956838,0.02837599,0.005979091,0.042704303,0.043823626,0.051888123,0.064610146,-0.08243918,0.012624047,0.00057235616,-0.07681447,0.018454676,-0.022180552,-0.10600488,0.037117522,-0.016122619,0.05100051,-0.041343596,-0.045559376,0.0050893407,-0.013529033,0.03576482,-0.017176004,0.06451752,-0.061538022,-0.06051459,0.0046269144,-0.004526221,-0.032237954,0.08197634,8.420797e-33,-0.0446084,-0.01478076,0.028088272,0.04716421,0.04421846,0.03631677,-0.02680805,-0.017633926,-0.042638328,-0.037747696,-0.05610763,0.05894897,-0.020241424,0.046786696,0.0453117,-0.030241914,-0.061397873,0.0021523398,0.11293613,0.041813873,-0.065913565,0.022629725,0.020235091,-0.011485603,-0.01746348,0.07083188,0.008659104,-0.04805328,-0.004374201,0.040011834,0.034771197,-0.029304355,-0.010570953,-0.024833048,-0.08065511,0.034408,0.044451345,0.018962111,0.00516187,0.06735776,-0.025156297,-0.0012851964,-0.013819763,0.081290886,0.03534649,-0.052764732,0.083331145,-0.0051561664,0.0006201369,0.05473046,-0.08171173,-0.08074859,-0.09083679,-0.1321122,0.045530513,0.060997035,-0.0017885767,0.08161312,-0.043653246,-0.089676775,0.05514985,0.01072874,0.015134696,-0.039690506,-0.021877388,-0.020648547,0.053921223,0.007816389,0.13752165,-0.061480977,-0.048649967,-0.03194557,-0.09416841,0.024524761,-0.0086676255,0.0019613102,0.06542079,0.03732206,0.0669665,0.017908601,-0.07670106,0.0815038,-0.0015892304,-0.0014245838,0.0801907,0.043808747,0.03999509,0.06945999,-0.042705648,0.07095401,0.031768464,0.09880224,0.035105627,0.0016611172,0.038302578,-9.7014585e-33,-0.031366717,-0.017228821,-0.020853251,0.06649344,-0.0036258271,-0.0684965,0.013317565,-0.022895392,-0.06530924,-0.040906377,-0.063676305,-0.06458845,0.10951408,-0.115930535,-0.01135261,0.01564607,0.04213577,0.013017637,-0.028461916,-0.008008838,-0.0014494989,0.009753374,0.02311402,-0.03248856,-0.045062393,-0.020110212,-0.06145993,0.0052202526,-0.14227073,-0.013754181,0.019667393,0.021643713,0.014531399,0.064135514,0.033280667,0.054662105,0.049701937,0.06886371,-0.016808802,0.007410594,-0.034926657,0.10424116,-0.024136607,0.02269316,-0.054805342,0.05210784,0.030217212,-0.06726548,-0.02893198,0.059387416,0.012394718,0.028139332,-0.082424566,-0.12355102,-0.015572787,-0.03610725,0.02096481,-0.077190734,-0.06191924,0.027339328,0.060124487,-0.021153634,-0.005905763,-0.039029777,0.040795665,-0.018369379,-0.041139226,0.05452135,0.06698793,0.010405858,0.07890526,0.03386627,-0.043051343,-0.081893615,-0.053274363,-0.07095975,-0.13174818,-0.033601835,-0.021118795,-0.04234531,-0.059394915,0.0197226,-0.06446806,-0.06619679,-0.061486132,-0.047648955,0.04544933,0.065972514,0.005907026,0.02600756,0.013303765,0.019452691,-0.0925983,-0.07240547,-0.0066338545,-4.0010715e-08,0.056049243,-0.020502618,-0.007667263,-0.015007646,0.040323086,-0.08955985,-0.095380925,-0.023084836,0.061987672,0.0028481595,-0.07735338,0.043063372,-0.0006498589,0.0894258,0.051530063,0.037833296,0.061210427,0.052984808,-0.03512218,0.010568809,0.12743032,0.029984495,-0.024546094,0.054604758,0.06186713,-0.038154595,-0.030305443,0.027419992,-0.021392655,-0.0233237,0.0076745627,-0.02173589,-0.089706324,-0.004473816,0.019579371,0.006633611,0.0023538445,0.0074130157,0.008013233,-0.06513708,0.09697526,-0.09204387,-0.050579604,-0.001421824,-0.085402794,-0.04417924,0.020173484,-0.008789105,-0.02752093,0.03617856,-0.06201353,-0.052547775,0.055645503,0.007072706,0.029057126,-0.01477788,0.03794605,-0.013521173,0.041241325,-0.03239711,-0.018331168,0.1277944,0.006972787,-0.05870981} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:58.986524+00 2026-01-30 02:01:11.546211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1994 google ChZDSUhNMG9nS0VJQ0FnSURnZ2QzV0l3EAE 1 t 1997 Go Karts Mar Menor unknown EL MEJOR CIRCUITO DE ESPAÑA. IMPRESIONANTE LAS INSTALACIONES.\nLA PANTALLA GIGANTE ES EL NO VA MÁS.\nTODO EL MUNDO QUIERE REPETIR DESPUÉS DE PROBAR LOS KARTS.\nCOMIDA ESPECIAL el mejor circuito de españa. impresionante las instalaciones. la pantalla gigante es el no va más. todo el mundo quiere repetir después de probar los karts. comida especial 5 2019-02-01 01:52:39.833374+00 de v5.1 V4.03 {E1.03,O1.01} V+ I3 CR-B {} {"V4.03": "EL MEJOR CIRCUITO DE ESPAÑA. IMPRESIONANTE LAS INSTALACIONES.\\nLA PANTALLA GIGANTE ES EL NO VA MÁS.\\n"} {-0.012443862,0.036885016,0.023260431,-0.067284845,-0.068870515,0.01123902,-0.00070839527,0.05092782,0.0095951315,0.030994032,0.027637742,0.010166116,-0.016606128,0.029503053,0.011344998,-0.009598389,-0.041881368,-0.042946365,0.023265196,-0.048250675,0.052497886,-0.051903535,-0.08598366,0.06452507,-0.060941003,-0.059373356,0.0066908062,0.021951023,-0.067728356,-0.08522077,-0.110727236,0.05558168,0.077629864,-0.040778875,0.009268544,-0.06091918,0.008414715,-0.052861404,-0.10710795,0.0036875694,-0.0520708,-0.04303471,-0.023723796,-0.0054240315,0.020370059,-0.06716671,-0.0077335415,-0.00889705,-0.021096677,-0.035370894,-0.00036344063,-0.03600668,0.059176374,-0.036130693,0.029085008,-0.026409095,-0.06397391,0.05395149,0.12815255,0.07076228,0.059191372,0.03658703,-0.074796595,0.05028781,-0.03867519,-0.054137237,0.058021978,0.03030496,-0.06771192,0.04030981,0.08637442,-0.11585616,0.030625934,0.013777894,0.076104574,-0.032242794,-0.034316294,-0.02941773,-0.013815201,-0.047312148,-0.013890681,-0.006454181,-0.045890607,-0.078559436,0.045794703,-0.033368334,0.037047148,0.026239704,0.01261821,-0.043772068,-0.032370605,0.050400577,-0.07792567,-0.0119981915,-0.023867538,0.0038810885,0.049642,-0.06563821,0.03482807,0.028521016,0.14418142,-0.02740191,0.07653967,0.008222499,-0.09312178,0.053199068,-0.021694135,0.040415607,-0.0016661334,0.020639408,-0.03444541,0.014306172,-0.04132071,-0.090326965,-0.08084043,0.039751686,-0.02635981,-0.0024801919,0.056991898,-0.06374055,0.02348299,-0.0021761896,-0.029921452,0.030069917,0.0142201185,-0.0072853197,0.074823365,5.8082175e-33,-0.117869,-0.01426142,-0.052165072,0.07872051,0.06618463,-0.04987821,-0.012813115,-0.013110367,-0.07135539,-0.03576668,-0.047490347,0.08791116,-0.016088804,0.028308282,0.1468495,-0.01933945,-0.010701855,-0.05569905,0.05970811,-0.021606354,-0.004951442,-0.020861562,0.040489033,0.10355873,0.057716116,0.03319121,0.110184304,-0.034080528,-0.10411361,0.05390952,0.015744139,0.020792821,0.07121803,0.0018589867,-0.03369631,0.03343615,0.04418712,-0.0451978,-0.008947126,0.0016433129,0.0032673087,-0.011930772,-0.03178893,0.012898755,-0.05694691,-0.020951828,0.03881926,0.033624623,0.111067645,0.05592205,-0.05476845,-0.043917432,0.0067691053,-0.018721154,0.0071808193,0.14029524,-0.037323162,0.026482917,0.058259223,-0.0027472049,-0.028052425,0.027751554,-0.029319027,0.01754127,-0.018522266,0.015074925,0.0057005906,-0.02438149,0.0956221,-0.03452144,-0.13825795,-0.04264145,0.015497925,0.011196539,0.053917665,0.018596213,-0.10023729,0.057027034,-0.08834887,0.06923075,-0.039800018,-0.0041352096,0.0060122856,0.0057568476,0.088977575,0.0427646,0.056193836,0.10339719,0.018537723,0.10969439,0.008491866,0.059420668,0.06678081,0.04028809,0.07846441,-7.7200724e-33,-0.029233964,-0.00043681296,0.103217594,0.06306611,0.013793032,0.011142795,0.0037823617,-0.08707498,-0.029647343,-0.033899203,-0.04413978,-0.042273168,0.06457556,-0.046950717,-0.07065382,0.038932934,-0.03215862,-0.042625807,-0.071161695,0.0015487934,-0.0058878255,0.0019644639,-0.007918561,-0.031581737,-0.06548589,-0.04320815,0.0040651285,0.03144875,-0.0591309,0.0058255177,-0.010326812,0.008108958,-0.05155901,0.024331504,-0.087620124,0.005004822,0.0751614,0.08995075,-0.032858253,0.0436397,-0.01592009,0.041198585,-0.032821383,-0.0006254059,-0.0812847,0.021528913,0.06916214,-0.09196569,0.041552547,-0.09844999,0.032848287,-0.0054337243,-0.02866337,-0.06812125,0.03631896,-0.039949354,0.028923634,-0.03668206,-0.043975107,-0.00746223,0.054925997,0.003141751,0.046349104,-0.035349954,0.0946916,0.030348148,-0.04573303,0.0037381237,-0.00081851427,0.0019271713,0.045712974,0.04249272,-0.03164796,-0.048681658,-0.05779363,-0.02548406,-0.10520038,0.04563438,-0.009961812,-0.01107791,0.085325494,-0.10292692,0.020911347,-0.05485762,0.00766315,-0.048619978,-0.0017488663,0.038439013,0.033828266,0.0016801413,-0.0027776381,0.080942094,-0.0408132,-0.03638858,0.01729373,-3.9716884e-08,0.011707769,-0.025563681,-0.09775984,-0.026071588,-0.012658425,-0.055443227,0.027279112,0.062627554,0.0065877964,0.026574964,-0.028736025,0.004595285,-0.01818916,0.019466644,-0.033735458,0.041592047,0.02673408,0.14312239,-0.019748801,0.03086586,0.03345707,0.02255636,-0.041792072,0.035141498,0.01642196,-0.038322553,0.0018621567,0.06803035,0.02040239,-0.05359848,-0.08713495,0.014754864,-0.0668646,-0.027417071,0.030129531,-0.0051440415,-0.07017405,0.07416532,0.0110340575,-0.07958797,0.04098124,-0.03389354,-0.10836205,-0.0046130996,-0.045065902,-0.032905735,-0.11355339,0.008553086,-0.04655605,0.025575526,-0.034611087,-0.01608612,0.008322774,0.044115957,0.08008362,0.0016075375,0.04539765,-0.026586266,-0.048532095,0.009869915,-0.0018808636,0.01596207,0.08437836,-0.08336379} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.170694+00 2026-01-30 02:01:11.595868+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1995 google ChZDSUhNMG9nS0VJQ0FnSUN1d2NMQWFREAE 1 t 1998 Go Karts Mar Menor unknown El personal muy amable y simpáticos. Lo hemos pasado muy bien sobretodo las niñas (13 años) el personal muy amable y simpáticos. lo hemos pasado muy bien sobretodo las niñas (13 años) 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {V4.03} V+ I3 CR-N {} {"P1.01": "El personal muy amable y simpáticos. Lo hemos pasado muy bien sobretodo las niñas (13 años)"} {-0.04390304,0.01360559,0.03592257,0.019632708,-0.013009123,0.005925262,0.079256475,0.020638585,0.032331385,-0.0011491688,0.08364883,-0.0014807008,-0.06991228,-0.027312651,0.024049105,0.027486308,-0.023159973,0.014317376,-0.05030439,0.07830046,0.039018642,0.013203494,-0.066227876,0.13738357,-0.0676468,-0.009459755,-0.018618528,-0.020637672,-0.029204186,0.0037222407,-0.026721124,0.12110091,0.10358509,-7.324636e-05,0.0036403735,-0.02805923,0.015832761,-0.11314375,-0.060380362,0.021458229,-0.100101,-0.036631662,0.019212667,-0.02561351,-0.04145557,-0.121225595,0.049622294,0.06731508,0.028560843,-0.012628733,-0.09547986,-0.04674774,-0.030982455,0.041118436,0.048295014,0.026381595,-0.11221733,-0.07867879,0.09309733,0.057328057,-0.057295516,0.10744125,-0.054593842,0.04529808,0.012972309,-0.029927876,0.043154694,-0.0112936655,-0.07736122,0.043610472,0.049986962,-0.024457334,-0.009278212,0.0403798,-0.023912886,0.09219412,0.01811154,-0.04694711,-0.031200306,0.019790445,-0.0321441,-0.022306025,0.06661322,-0.002520045,-0.017130183,-0.032047376,-0.034072496,0.04593749,-0.036462028,-0.011654514,-0.051879577,-0.0020522657,-0.022932682,-0.0062234905,0.01961165,0.03519673,0.019771269,-0.108263046,0.01592973,0.053229276,0.051884424,0.044485845,0.10085166,0.07082245,-0.08683199,0.084705375,0.012901418,-0.094420046,0.018755315,-0.010735146,-0.057564203,-0.04759658,0.011341357,-0.007061529,-0.038390506,-0.054290693,-0.0029710028,0.03196537,0.008238217,0.015030334,0.0055606845,0.065409355,-0.03670533,-0.044424087,-0.040697098,-0.06396173,0.08394961,4.7821777e-33,-0.0070702415,-0.027405396,-0.0052196267,0.10710045,-0.004428371,0.029416323,-0.0028238269,-0.0435088,-0.04634135,-0.042967815,0.0010434706,0.009374153,-0.019759987,0.06775253,0.01760575,0.086049244,0.044338133,-0.10475017,0.022222323,0.10807519,-0.03060334,-0.0576176,-0.049691115,-0.047499843,-0.01935667,0.038079116,-0.022773165,-0.04215731,-0.06855769,0.074086726,-0.025617385,0.045871828,0.0072806817,-0.017717687,-0.011800199,0.01644556,0.08607582,0.015451556,0.008654901,-0.010986492,0.03768766,0.026016137,-0.07744923,0.026261522,0.0066146213,0.057009768,0.072465345,0.046538364,0.016934227,0.0032462312,-0.08812738,-0.042633716,-0.07638672,-0.10791831,0.010310019,0.034587987,-0.048448283,0.045471907,-0.023980651,-0.03063318,0.092517495,-0.033302948,0.015498723,-0.05731849,-0.033252504,-0.018080777,0.06702324,-0.001999718,0.036877986,0.06299274,-0.048492674,-0.021477848,-0.02815001,-0.037681684,0.03974278,-0.011745463,0.06898866,0.0048469803,0.07185744,0.034674197,-0.043924406,0.035416614,0.063834794,0.013071851,0.010389005,-0.005741377,0.01556616,0.065144934,-0.05252683,0.06050592,-0.00816986,0.04688849,0.077184126,-0.05368007,0.0069193165,-6.5892674e-33,-0.0100136455,0.05368467,-0.01851508,0.034156494,-0.012692612,-0.0056256237,0.030432183,0.023551464,-0.020369466,-0.06860771,-0.08934313,-0.13408725,0.074313015,-0.08958723,-0.011896402,0.09548121,0.025286289,-0.028854055,-0.07391039,-0.0520759,-0.045254122,0.058913473,-0.0004116194,-0.028231537,0.021708045,-0.08344844,-0.017635839,0.004322656,-0.0574739,-0.0076515116,0.0023441846,-0.026539499,-0.028371358,-0.055220544,-0.0076118573,0.12157269,-0.0042838124,0.03369608,0.0055804537,-0.0054807183,0.01830961,0.06512985,0.0017182109,-0.018831164,-0.027047114,0.057475325,0.02544483,-0.12827463,0.03477653,-0.0038136807,-0.008069058,-0.043677676,-0.02945932,0.045818184,0.05158937,-0.053006504,-0.023117589,-0.05613849,-0.07437344,0.003958076,0.024465198,-0.009092773,-0.084166855,-0.014396362,0.057524994,-0.00044028,-0.048128538,-0.03820852,0.0066780346,0.048659235,0.06424871,-0.04976882,-0.070544034,0.0049734875,-0.029330248,-0.089406975,-0.082033806,-0.05536759,-0.010438216,0.013706748,0.025182454,0.009470324,-0.036633097,-0.059431467,0.018978277,-0.037971385,0.004486155,0.04927339,-0.010631972,0.039721973,0.02456476,0.016264927,-0.112632774,-0.060452845,-0.02208209,-2.9424324e-08,0.05526435,-0.07409017,-0.04759836,-0.0020268448,0.02296412,0.033184547,-0.01274562,0.06141209,0.06147533,0.103325784,-0.04467911,-0.018171804,0.036922675,0.033181094,-0.024798539,0.032374106,0.12318429,0.06420055,0.0065021315,-0.029979918,0.118316874,0.010358508,-0.008698012,-0.00034918598,-0.02512955,0.022345984,-0.049133144,-0.0044972263,-0.05857876,0.007683268,-0.01078084,0.020505492,-0.0726007,-0.11057592,-0.07743564,-0.033254948,0.0028716368,-0.034585398,0.0056303255,-0.044839833,0.112248555,-0.011143538,-0.037402295,0.0026134737,-0.007607071,-0.05658677,0.034230165,-0.037761442,0.01465297,0.087078795,0.011101146,-0.046450417,0.05322574,0.050547767,0.024713647,-0.041669212,0.099230155,0.06060936,0.0059535224,-0.05164812,0.10577258,0.09481193,-0.025529953,-0.1290661} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.183762+00 2026-01-30 02:01:11.598014+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1997 google ChdDSUhNMG9nS0VJQ0FnSUNNdnJPVm9RRRAB 1 t 2000 Go Karts Mar Menor unknown Impresionante la pista, con todo detalle de gran calidad. Y repetir y repetir. Disfrutas muchísimo. Volveremos!! impresionante la pista, con todo detalle de gran calidad. y repetir y repetir. disfrutas muchísimo. volveremos!! 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {O2.02,O2.04} V+ I3 CR-N {} {"V4.03": "Impresionante la pista, con todo detalle de gran calidad. Y repetir y repetir. Disfrutas muchísimo. "} {0.028277325,0.028599916,0.0030814733,-0.08382455,-0.09160529,-0.015659772,0.015120035,0.044228595,0.0228872,0.057297092,0.094545856,-0.00025365356,0.030529277,-0.017683264,-0.01608111,-0.06279347,-0.059298635,0.03263897,-0.0005370326,0.04778257,0.044235583,-0.061351065,-0.033921495,0.13858698,-0.028391821,-0.0060133357,0.023627814,-0.013173546,-0.029358,-0.09388336,0.0023104162,0.047771987,0.041938607,-0.0071788696,-0.044816308,0.03131302,0.041052327,-0.061253298,-0.037857786,0.040427953,-0.09805172,0.0041208006,0.014385591,-0.0141313635,0.006435816,-0.020052686,0.027519554,0.016438624,0.037005186,-0.026831636,-0.053964365,0.016495248,0.048245434,-0.022038303,0.0080310395,-0.026901374,0.012256685,0.021161193,0.014361304,0.050881185,-0.024572805,0.08117254,-0.065405875,0.00976276,-0.0015751423,-0.005904599,0.018726604,-0.052576017,-0.0906295,0.0830501,0.12448058,-0.001520901,0.040629905,0.015751667,0.00077506993,0.024321835,-0.0750029,0.024215952,-0.011924788,0.029975563,0.046024967,0.00576344,-0.07005022,0.020088835,0.012147946,-0.0014184605,-0.011293439,0.02206273,0.039129347,-0.058248587,-0.016637335,0.11161268,-0.0076841055,-0.0227449,-0.09086993,0.011252032,-0.05511328,-0.056731265,0.028832087,-0.0004165022,0.0921633,0.06158203,0.0009907765,-0.032695897,-0.08062065,-0.0055627744,0.04836638,-0.007472509,0.0059676203,0.05768692,0.023383461,-0.032000046,-0.0287974,0.044140175,-0.07929906,0.05452513,0.037357032,-0.024059271,-0.031806845,-0.08996303,0.050502747,0.021465296,-0.036830332,-0.06168305,-0.031471577,-0.08125345,-0.004895319,5.885498e-33,-0.061814256,-0.024837883,-0.06120303,0.09901987,-0.05575743,0.046643715,0.0065340684,-0.06086475,-0.035684276,-0.058844466,0.0045609474,0.13448809,-0.0063006254,0.049888227,0.041092988,0.05625445,-0.013007163,0.03521972,-0.00525736,0.018904459,-0.030558003,0.02913655,-0.014155101,0.018701253,-0.02007451,0.06902468,0.016585797,-0.049266215,-0.14153273,0.010911453,-0.016402995,0.017027691,0.04275779,0.0031527765,0.029597236,-0.08519247,0.0973506,0.013771023,-0.011429314,-0.045735054,0.020042872,0.01602814,0.02348622,0.024197884,0.0061942437,0.036024682,0.09790949,-0.008894647,0.040699825,0.04777163,-0.014268985,-0.08607555,0.037736375,-0.077652015,-0.030460704,0.024519127,-0.09118494,0.005969067,-0.0018371098,-0.04380324,0.01393799,0.059996992,0.034909535,-0.027092516,-0.046725858,-0.042100385,-0.027417915,0.034397937,0.13122271,0.12826036,-0.046554513,-0.024236886,-0.048679844,0.046270486,-0.0107388105,-0.043022614,0.0055633564,0.030754488,-0.009567959,0.03568299,-0.019865088,-0.017708769,0.013270649,-0.013770162,0.07544876,0.10576269,0.09458998,0.06057793,-0.031543124,0.07618533,-0.0019010407,0.023049684,0.02900131,-0.012932391,-0.015743533,-6.97163e-33,0.00093403,-0.016198328,0.03843235,0.035692923,-0.028952716,-0.001623242,-0.0353792,-0.026105585,-0.007714998,-0.079171255,-0.13744451,-0.09665232,0.10390252,-0.0006362694,-0.050721463,0.0629687,-0.015559063,-0.093583375,-0.10375272,0.00022337642,-0.04737222,0.06845425,-0.021648966,0.0387763,-0.043600544,-0.072104424,0.052680008,-0.034634423,-0.01524798,-0.03956742,0.008863859,-0.049249902,-0.058597986,-0.05255521,-0.022306692,0.027599087,0.07372607,0.023394851,-0.010689579,0.008152806,-0.1052595,0.0016345212,-0.049257156,-0.06043476,-0.022868747,0.004633254,0.061446495,-0.14363685,-0.061997686,-0.025364595,0.04038019,-0.06651253,0.022873377,0.02252267,0.06996472,-0.08345236,0.010279527,-0.027415484,-0.07564742,-0.026244761,0.021037688,-0.015918965,-0.027326616,0.026461998,0.10919074,0.048507173,-0.03495204,-0.04398336,0.07080746,0.07885269,0.059556555,-0.0029585937,0.006588537,-0.0430004,-0.0444914,0.023735255,-0.112456724,0.04718123,0.028210735,0.09910136,0.016303195,0.00026083272,0.005254298,-0.07662173,7.0465634e-05,-0.0065488075,-0.05866546,0.011735504,-0.010708108,0.04506767,-0.0075778565,0.0012969334,-0.046520777,-0.065496415,0.0020073764,-3.409685e-08,-0.016585141,0.058613606,-0.035660174,0.040028222,0.027796322,-0.01303958,-0.021533854,0.033241656,-0.025456842,0.076283015,0.0063697807,-0.09617278,0.011413795,0.014094456,0.010316928,0.062477868,0.10355224,0.14742073,-0.034300882,0.011260149,0.055291507,-0.018211005,-0.06339001,0.007192766,-0.022647513,0.043205325,-0.021814043,0.030259443,-0.114224315,-0.029607696,-0.021161634,-0.030208929,-0.062348478,-0.14007552,-0.004727378,-0.00044065397,0.018890472,0.036860086,0.08539008,-0.042356968,0.037595503,0.04191875,-0.05217451,0.05681123,-0.013805588,-0.06569554,-0.027628498,0.019855872,6.698383e-05,0.025693199,0.0010296308,0.028818306,0.044768497,-0.013893359,0.017193008,-0.011680105,0.09947788,0.03340191,-0.094786756,0.013882379,0.12690136,0.10331447,0.022651745,-0.055773992} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.205303+00 2026-01-30 02:01:11.609544+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1999 google ChdDSUhNMG9nS0VJQ0FnSURYMy15RTZBRRAB 1 t 2002 Go Karts Mar Menor unknown Tolle Kartbahn. Für Anfänger und Fortgeschrittene gut geeignet. tolle kartbahn. für anfänger und fortgeschrittene gut geeignet. 5 2025-01-30 01:52:39.833374+00 de v5.1 O4.04 {O1.01} V+ I2 CR-N {} {"O4.04": "Tolle Kartbahn. Für Anfänger und Fortgeschrittene gut geeignet."} {-0.04194593,0.068249136,0.01630686,0.00859419,-0.110402234,0.07692894,0.008105475,0.075535655,0.012811789,0.013583076,-0.011461906,-0.094035245,-0.06287702,-0.040033855,0.0030927367,-0.076849766,-0.05783471,0.045267764,-0.016320555,-0.039942097,-0.06524181,-0.03196389,0.02259011,0.0024802391,-0.0600444,-0.03410864,0.0098849125,0.025679722,0.042255055,-0.059783276,0.037416797,-0.042897735,-0.05773379,0.030287694,0.03559882,-0.0019739668,0.0020315005,-0.03960156,0.0063550924,0.032591656,-0.05461303,-0.029152606,-0.07980944,-0.04676503,0.062040064,0.043621276,-0.0548786,0.0060795057,-0.0375474,-0.051224124,-0.030906543,-0.067537196,0.06051199,-0.0489853,0.0067839166,-0.11638685,-0.00041771456,-0.022620576,0.030577824,0.05399009,-0.024298849,-0.0089208465,-0.05418216,0.030461395,-0.11120941,-0.03692917,0.0014953542,0.05606279,-0.02689433,0.02525272,0.03344156,-0.10496454,-0.033403084,-0.009043227,0.014501097,-0.104799435,-0.06028558,0.026416322,-0.004829937,-0.07871461,0.050416503,-0.06936203,0.017302431,0.0012449234,0.061419863,-0.08572823,0.059156384,-0.015661657,0.09403299,0.019645918,-0.0225663,-0.025510982,-0.017705591,-0.008858577,-0.030015716,0.021702413,-0.04216984,-0.0094993105,-0.010950741,0.01702272,-0.04310853,0.01956143,0.016247723,0.1002598,0.0168746,0.029162047,-0.026132545,0.023704669,0.032668345,-0.050622962,-0.016400535,0.014227945,0.0017021007,-0.065851636,0.027267803,-0.010621298,-0.018957375,-0.0711477,0.045946147,0.0667532,0.030068902,0.023420284,0.018570388,0.11368902,0.03466029,0.014804726,0.08302027,5.960633e-34,-0.08360518,-0.072764196,-0.022814952,0.0019867595,-0.035837464,-0.08057659,-0.14346272,-0.031618964,0.0051653255,0.020058485,0.02534588,-0.038953353,-0.06847375,0.006130984,0.107204124,0.023197072,-0.032334,-0.022709733,0.02218843,-0.003743477,-0.035343066,-0.028940665,0.087042704,0.01398787,0.076722376,-0.05303531,0.081805386,-0.024069216,-0.047672104,0.04054827,0.008937025,-0.047046863,-0.043811783,0.0398451,-0.048449457,0.012991222,-0.021684183,0.053501304,-0.023326728,0.0215664,-0.031450264,-0.073008426,-0.07672473,-0.043607365,0.015881717,0.0720117,0.03324799,0.020542162,0.061963554,0.06999896,-0.05510259,0.045399033,-0.031093175,0.00076190976,-0.0016461163,0.058602653,-0.009834326,0.07175698,-0.022616338,-0.040273104,-0.011633834,0.0032162778,-0.010677739,0.015036216,0.07156367,-0.00291798,0.024262516,0.02210232,-0.01572886,0.054206427,-0.09704121,-0.0002727084,0.055792414,0.024050817,0.0037426588,0.013223362,-0.1089165,0.063370354,-0.051991567,-0.0018711906,-0.089505054,0.01595695,0.010282193,0.008465779,0.093224086,-0.032239165,0.053650826,-0.0340614,0.024069892,0.02383303,-0.037701696,0.06676062,0.014844642,0.056610834,0.008500683,-3.6579048e-33,0.061907973,0.060483713,-0.057568964,0.06924061,0.028680839,0.04426767,-0.017579151,0.058135226,-0.022493528,0.091946416,-0.04429635,0.021096248,0.0016526469,-0.062103778,-0.018181767,-0.03872701,0.06850023,-0.0038583411,-0.06721121,-0.041502476,-0.033599358,-0.056855395,-0.039000317,0.0053337202,-0.021889012,0.031496808,0.045375027,0.014788399,-0.10265745,-0.045466565,0.011253063,0.03842079,0.08490459,-0.030850058,0.03281005,0.039413583,0.124887906,0.08186664,-0.05262526,0.04828669,0.0018604093,0.0990789,0.04736612,0.006716849,0.027684899,-0.028235951,-0.06931098,-0.06138417,-0.042495996,-0.051445827,0.07021897,0.025532668,0.08256941,-0.07350263,0.008695764,0.012931428,0.034530737,-0.09439945,-0.025801498,0.020728799,0.08420528,-0.02013182,0.06175818,0.010842108,0.059805185,-0.04773418,-0.113634266,-0.05734296,0.018005326,0.05248049,0.061346266,0.044817705,0.011606073,-0.04294809,-0.02166908,-0.03286701,0.05434754,0.067218445,0.0012453388,0.057044134,0.0050010397,0.012615956,0.051092066,-0.015903765,-0.050543547,-0.09242281,-0.005331368,-0.041897446,0.056207765,-0.029819923,0.084611095,0.020280022,-0.053186443,0.004950487,-0.062139947,-2.509695e-08,0.021061292,-0.07491656,-0.13113286,0.030359779,0.017844277,-0.06106711,-0.046926554,-0.046802863,-0.13434169,0.015330881,0.0028750289,0.12799266,-0.091564685,0.11712994,-0.022581663,-0.06527226,-0.07146103,0.023441065,-0.019776748,0.042529866,0.08304268,-0.030558877,-0.100159265,0.004611078,-0.009786041,0.028126717,-0.022903299,-0.019742666,0.05385909,-0.0342223,0.053504616,0.08672215,0.0084284125,0.027585886,-0.0134644965,0.0021947096,-0.019001864,0.056554314,-0.0382767,0.13397598,0.059688527,0.046622295,0.049636032,-0.044854727,0.02671106,-0.013333423,-0.043418374,0.023009567,0.030359361,0.07968598,-0.05191913,0.001428473,0.04116583,0.07085537,-0.00994881,0.012748225,0.014594583,-0.07453559,-0.10483653,-0.06887004,0.02633942,0.0043864343,0.057769448,0.04602551} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.226308+00 2026-01-30 02:01:11.615531+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2000 google ChdDSUhNMG9nS0VJQ0FnSUNVd3JXVHpBRRAB 1 t 2003 Go Karts Mar Menor unknown Sehr lange Strecke (1,1km), top Preise und kinderfreundlich! Also schwer zu empfehlen! Besser als die Konkurrenz sehr lange strecke (1,1km), top preise und kinderfreundlich! also schwer zu empfehlen! besser als die konkurrenz 5 2020-02-01 01:52:39.833374+00 de v5.1 V4.01 {V1.01,A3.01} V+ I3 CR-B {} {"V4.01": "Sehr lange Strecke (1,1km), top Preise und kinderfreundlich! Also schwer zu empfehlen! Besser als di"} {0.044965357,0.068526596,0.0019226173,-0.026109068,-0.057669096,0.0823322,-0.057458352,0.17118476,-0.056237355,-0.036680337,0.001202422,-0.04388138,0.02566108,-0.09334917,-0.06724999,-0.046638224,-0.024043256,0.016764669,0.031396195,0.011666075,-0.032471158,-0.057003517,0.05086021,0.02943599,0.007183202,-0.05377661,-0.06561383,0.02467106,0.021280386,-0.05419853,0.0751047,-0.064721905,0.038090724,-0.0046055005,0.030246723,0.018773993,0.010795487,-0.030741507,-0.04115981,0.07771324,-0.052093484,-0.032805055,-0.09641223,-0.054111563,0.012294303,0.002203825,0.026519772,0.089886054,-0.14183429,-0.005648809,-0.04307355,-0.020810315,0.0321803,-0.021624992,0.07576545,-0.017937705,-0.017205324,-0.0014817785,0.045481596,-0.0938078,0.021083014,-0.02848614,-0.049817372,-0.027099222,-0.0750098,-0.05663354,-0.0038440076,-0.04742727,-0.017236967,0.06485882,0.08916844,-0.027444193,0.06916819,-0.0025322295,-0.0015357751,-0.0025723618,-0.064633794,0.035811596,0.009269168,-0.04165202,0.0053297253,-0.007921676,-0.018268012,-0.038006056,0.015538397,0.070502765,-0.004142578,0.010834235,0.0067682015,-0.073847845,-0.002713842,-0.050957244,-0.18360513,0.052505575,-0.09379529,-0.02577132,-0.07590042,-0.008239267,-0.021654153,0.012606645,0.045826353,0.05613131,0.09663973,0.11884973,-0.040024478,0.0013947426,-0.029051784,0.015617169,0.014753406,0.031067392,-0.005381786,-0.09034501,0.02587132,-0.015827965,0.024967095,-0.025019158,0.051685017,-0.059172988,-0.0030738313,-0.06459284,0.08793399,-0.026885236,0.019621523,-0.06651312,-0.0067446223,0.00163182,0.0991602,9.215803e-33,-0.06385609,0.033355117,0.051374372,0.00706981,-0.046062674,-0.022416737,-0.098378204,-0.016748494,-0.035548035,0.060430415,-0.023681737,0.016018106,-0.0015106662,-0.028137483,-0.05094466,-0.030723684,0.0642316,-0.03574973,0.014425735,0.0043309047,-0.025128584,-0.08709512,0.026735654,0.063646324,0.04396473,-0.062150363,0.046870317,-0.054848026,-0.026809284,0.034361277,-0.02078612,-0.03504729,-0.033566296,-0.02964142,-0.10240964,-0.0368333,-0.03546042,0.005863484,0.052715115,-0.048417605,0.055038285,-0.031525277,-0.015491229,-0.052106023,-0.013419081,0.004230129,0.0013630709,0.010422682,0.12572694,-0.028552435,-0.024184752,-0.026717955,-0.02126266,0.03131041,0.04605773,0.04999959,0.021534955,0.029902572,-0.019849842,0.044842426,-0.03334904,0.017223503,-0.019570285,-0.008642807,0.018241744,-0.105823226,0.005530086,-0.012075225,0.0017261455,0.022406837,-0.05199621,-0.03270331,0.046945754,-0.0127806,-0.010860583,0.041992474,-0.030018434,0.09400679,0.047722768,0.054687537,-0.04912808,4.707789e-05,-0.029099608,-0.0983832,0.0084612705,-0.05592022,0.0032262448,-0.02531834,-0.007138748,0.10456894,-0.012689283,-0.0028877247,0.06383924,-8.039469e-06,-0.06692065,-1.0175004e-32,0.008769778,0.033991292,-0.0085943425,0.027804418,0.002544992,0.11913488,-0.021167446,0.062217843,-0.09897863,-0.0047174804,-0.015945612,-0.044509444,0.100495815,-0.014078824,0.009546396,0.026568362,0.051083263,-0.0071116607,0.008213631,-0.027335577,0.046173673,-0.07260903,-0.056403983,-0.0014424581,-0.06655766,0.0800851,0.07100379,-0.0065649324,-0.06970963,0.024009908,-0.05179506,-0.0039225244,0.04459062,0.020035964,-0.019313667,0.053174604,0.0035347808,0.030314052,0.068935156,0.08801132,0.025858074,0.0654365,0.018249316,0.0007041409,0.056443654,-0.044273984,-0.11402506,0.035902504,-0.06655786,-0.11256642,-0.025057085,0.08290644,-0.031059299,-0.08700092,0.052342772,0.05954792,-0.03562404,-0.081592135,0.012442133,0.007099498,0.07822361,0.06894277,0.054915834,0.07246951,0.07103126,-0.16555502,0.0062643825,0.0054170564,0.0041236775,-0.0016562686,0.00280914,0.059195407,0.061584074,0.005006034,-0.030827958,-0.060629856,-0.04004964,0.09095874,0.05985322,0.071758695,-0.059711725,0.110667825,0.017213944,0.013432176,-0.037331022,0.011986433,0.048369087,-0.01248332,0.028414274,-0.028224807,-0.0228208,0.07573918,-0.038286176,0.007834486,0.027692702,-4.0692516e-08,0.015248676,-0.04611635,-0.013484831,0.0015669697,0.0048694983,-0.11403689,-0.006987496,0.0017460972,-0.05501143,0.0055043222,-0.0065631596,0.019576399,-0.041764293,0.025941221,-0.005658086,-0.02384978,-0.031097068,0.04218678,-0.038725015,-0.05431382,0.051242903,0.016811308,-0.015113618,-0.06210523,0.030078266,-0.014420748,-0.02249286,0.0074714865,-0.042032972,-0.07640654,-0.01506183,0.048511427,0.042396355,-0.025658824,-0.029030591,-0.015676592,-0.012179459,0.14990583,-0.05403755,0.09326504,0.05612587,-0.0023889807,0.05692348,-0.032613795,-0.053253796,0.0025484134,-0.0076252255,0.065217696,-0.009537442,0.028982783,-0.16025268,0.060992293,0.030209333,-0.007284705,0.005967967,0.08999288,-0.032914754,-0.025504082,-0.0687604,0.031867895,-0.0018347884,-0.0505709,0.030378068,0.06667105} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.236778+00 2026-01-30 02:01:11.618343+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2001 google ChZDSUhNMG9nS0VJQ0FnSUNneHZ1VFRBEAE 1 t 2004 Go Karts Mar Menor unknown Circuito muy divertido en un lugar privilegiado junto al mar menor. Si quieres pasar un buen rato con tus amigos no dudes en pasarte por Go Karts. circuito muy divertido en un lugar privilegiado junto al mar menor. si quieres pasar un buen rato con tus amigos no dudes en pasarte por go karts. 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.01 {A4.01} V+ I3 CR-N {} {"O1.01": "Circuito muy divertido en un lugar privilegiado junto al mar menor. Si quieres pasar un buen rato co"} {-0.05822768,0.06987079,0.009446315,-0.043738626,-0.112414,-0.022154769,0.048633117,0.023853876,0.04544117,0.05987953,0.09683237,0.006319085,-0.07202053,-0.008224303,0.058797177,-0.005239125,-0.07424915,-0.0041851928,0.01108149,-0.013448412,0.075362615,-0.07864329,-0.08457142,0.08389841,-0.1270233,-0.005029439,0.036903847,0.009225584,-0.054835815,-0.062916204,0.008023511,0.115282215,0.041407187,-0.051389627,-0.023251845,-0.019034594,-0.05808222,-0.037812736,0.013816715,0.047781657,-0.04950444,-0.06530684,0.028943308,-0.02409803,0.012515704,-0.005634516,0.010117482,0.042764753,0.030920163,-0.07242051,0.0060150526,0.027895482,0.013578359,0.028857835,-0.015536508,-0.04139733,-0.029372782,0.0243768,0.10800357,0.03574659,0.015452812,0.058281224,-0.06929187,0.0441784,-0.045792673,-0.020599263,0.030147562,0.033681273,-0.04002276,0.09487405,0.13228981,-0.09124175,0.00580802,-0.009189811,0.05640062,0.010687404,-0.035244975,0.015002833,-0.04204054,-0.055938374,-0.01675852,-0.038027894,-0.05677675,-0.09214744,0.047643248,-0.01112424,-0.037362114,0.027303124,0.016607672,-0.0252778,-0.055910215,-0.019690588,-0.04542716,-0.040350456,0.010134821,-0.009143622,0.010242592,-0.031039078,-0.07038037,0.061628103,0.08049405,0.064182736,0.0008471102,-0.01323484,-0.026013171,0.08594403,0.03861742,0.005297831,-0.0065716105,0.008068748,-0.05613194,0.048969004,-0.038431015,-0.053911567,-0.024908315,-0.027956415,-0.0063807187,-0.047753174,-0.024289234,0.019412398,-0.01309296,-0.014142251,-0.10116305,0.048693646,0.027212294,-0.051854875,0.11312965,1.4768432e-32,-0.060941078,-0.09172641,-0.05614497,0.030576099,-0.005450069,-0.013847438,-0.056660775,-0.106213115,-0.035151787,-0.06039467,-0.023989733,0.032903604,-0.021411354,0.03736392,0.05274731,0.024891106,0.038020473,-0.049236696,0.1152323,0.0017709152,-0.016467694,-0.070214674,-0.058202945,0.051062226,-0.037376937,0.099341616,0.012602233,-0.09729455,-0.04989128,0.07364311,-0.047817286,0.03952659,-0.0018207649,-0.006314927,-0.086701706,0.006833994,0.020987406,0.03154587,-0.00032295124,-0.05154848,0.030158317,0.0061692507,-0.05811238,0.0609311,0.036575273,-0.0051675,0.028044486,0.04369638,0.13132216,0.05253042,-0.08558323,-0.057742048,-0.016613029,-0.056214474,0.012179694,-0.022672866,-0.02946014,0.07010469,0.0103412615,-0.020968497,0.00031857213,0.07828565,0.0044209254,-0.045175347,-0.07789892,-0.020803291,0.015244644,-0.0284373,0.06911238,0.028717643,-0.10953611,0.00036690955,-0.07311178,0.042917613,0.016686855,0.018772062,0.014152808,0.04391592,-0.014498758,0.02088216,-0.012212555,-0.018916817,0.026449656,0.05295066,0.059707478,0.064936,0.08190702,0.030128133,-0.015105295,0.112186566,0.010292617,0.09552407,0.0774259,0.036905423,0.10174053,-1.4195581e-32,0.008916362,0.038922183,0.050541043,0.086636506,0.0094277775,0.03415299,-0.043026384,-0.04055704,-0.0022412671,-0.031007653,-0.04324596,-0.081966974,0.10151715,-0.028031897,0.0068791676,0.0036390128,0.05408502,-0.085864395,-0.03163305,-0.023722246,-0.0088980645,0.080036394,0.032997515,-0.07912022,-0.017225659,-0.043182183,-0.022500299,0.088639714,-0.085369386,0.012983648,0.03112305,-0.014831143,-0.0509546,0.04932986,-0.0446498,0.016760562,0.00666255,0.11010208,-0.048367463,0.047935743,-0.030181114,0.11284423,-0.028377,0.009236402,-0.04632518,0.020791246,0.061151933,-0.14212319,-0.0387825,-0.08181876,0.040154196,0.028980302,-0.017931662,-0.069805674,0.034903433,-0.054556917,-0.003136953,-0.064307414,-0.16258653,-0.03879868,0.024706502,0.016996628,-0.0021619473,-0.0787153,0.07354551,-0.012533677,-0.097210705,0.016538741,0.06343431,0.035439067,0.13980997,-0.0056353575,-0.010495762,0.02250775,0.017417256,0.0124647,-0.06780568,0.018475255,-0.023194054,-0.031125963,-0.018772166,-0.050319273,-0.010363282,-0.009226568,-0.03143058,-0.0073411632,-0.024314335,0.022293221,0.00902766,0.0050109825,0.0069075585,0.018539611,-0.012714194,0.015677366,-0.01874838,-4.671185e-08,-0.014410476,-0.024943199,-0.048230942,0.007835102,0.035517503,-0.059928812,-0.0015443247,-0.011610752,-0.042606458,0.05693047,-0.029165786,-0.007991094,0.03587554,0.06658127,0.020968175,0.09335869,0.11666579,0.074315846,-0.02828195,-0.010323348,0.0845879,-0.07657844,-0.054270774,0.055432465,0.0055103856,0.059842203,0.028794931,0.0015339534,0.02033053,-0.038667873,-0.0164491,-0.04460964,-0.047295876,0.004421079,0.010358159,0.055189703,-0.029552588,0.055728517,0.0037123282,0.03505287,0.037886847,-0.050068885,-0.044236664,-0.019903077,-0.068308875,-0.053755865,0.026840892,0.0059071667,-0.027613493,0.048036043,-0.04637987,-0.026670134,0.030591957,0.04514131,0.031435,-0.051138967,0.016866637,-0.022542125,-0.030034035,-0.096574426,0.0044311723,0.10671719,-0.010112488,-0.04573965} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.246852+00 2026-01-30 02:01:11.62184+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2003 google ChdDSUhNMG9nS0VJQ0FnSURJM05YVjd3RRAB 1 t 2006 Go Karts Mar Menor unknown Circuito muy chulo, variedad de coches con distintas potencias para alquilar. Te puedes tomar algo mientras ves a la gente correr. circuito muy chulo, variedad de coches con distintas potencias para alquilar. te puedes tomar algo mientras ves a la gente correr. 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.01 {O4.03,E1.04} V+ I2 CR-N {} {"O1.01": "Circuito muy chulo, variedad de coches con distintas potencias para alquilar. Te puedes tomar algo m"} {-0.052673083,0.026646951,-0.03563612,-0.091150254,-0.1485876,-0.015519299,0.03431623,0.056743678,0.0032235873,-0.0047940775,0.06330677,-0.07004038,0.05167462,-0.049359076,-0.019107686,0.032207992,-0.036849346,0.00492478,0.00756506,-0.035546914,0.04891334,-0.039123975,-0.07947377,0.07565691,-0.08328249,0.050014332,0.033007856,-0.00033689174,-0.018856114,-0.06787405,-0.024524989,0.07101909,0.012061237,-0.027597308,-0.07002328,0.004370107,0.016749354,-0.033027966,0.03767989,0.09325241,-0.107698135,0.03802939,0.033971466,0.0052704406,-0.020396732,-0.004793601,0.0030791492,0.0011812291,-0.04714435,-0.094304994,-0.0027611644,0.0367167,-0.03798864,0.052951306,-0.03149163,-0.045809183,-0.018808996,0.070943676,0.03205114,0.022287749,0.03898821,0.056849867,-0.027807612,0.049194243,0.034222614,-0.029755399,0.050957464,-0.0021067383,-0.050579995,0.005299949,0.049064107,-0.093195476,0.03938781,-0.057859562,0.017499747,0.074055254,0.0027590417,-0.020366453,-0.004253367,-0.04688315,-0.009313073,-0.017188096,-0.04515023,-0.051341727,0.018001067,-0.07101985,-0.0013991446,-0.015648933,0.03918554,-0.06322335,-0.07870937,0.045137577,-0.038846154,-0.039593097,-0.041209266,0.026277713,0.053406693,0.0111661805,0.016251266,0.021356998,0.09310242,0.01031064,0.020829428,0.0074291555,-0.04111445,0.030013597,0.045660075,-0.014715566,0.026036888,0.041169543,-0.09678173,0.050766658,-0.042754147,-0.027940746,0.028312458,-0.005856383,-7.232303e-05,-0.06973701,0.012277593,-0.070728235,0.038275614,-0.044020727,-0.09194456,0.010670966,-0.004007202,-0.023788055,0.07936711,9.638035e-33,-0.0802123,-0.037608493,0.018467724,0.030790484,-0.006680563,0.030701714,-0.039537467,-0.02580415,0.010616146,0.027503178,-0.04245284,0.09096262,-0.010918787,0.05410429,0.06506072,-0.016054336,-0.051579688,-0.09419003,0.0883369,0.032665618,-0.0380867,-0.0514597,-0.043379962,0.09702065,0.028087554,-0.008376909,0.034230158,-0.050074358,-0.08874255,0.00016154989,0.006559719,0.047702152,-0.002901212,-0.022001885,-0.12386852,-0.024972145,0.028171312,0.07740216,0.061960638,-0.06972837,0.023994554,-0.012916282,0.013714778,0.06795064,0.07237095,0.0036821708,-0.0446192,0.046227515,0.0025958482,0.044853315,-0.13745315,-0.063837476,-0.029903635,-0.023166016,0.026403204,0.033366658,-0.06752926,0.022605874,-0.042947814,0.0014292977,-0.021519437,0.07566707,0.010605973,-0.061004896,-0.03210817,-0.012050017,0.011805378,-0.04853055,0.101453915,0.027757198,-0.060492255,-0.0072855675,-0.08773643,-0.0017472276,-0.03124845,-0.024156177,0.0070061134,0.02424625,0.00076075277,0.029146787,-0.04926801,-0.04893721,0.0454278,0.031219635,-0.002741176,0.024511272,0.044071183,0.05238563,-0.018065039,0.13180505,-0.010567601,0.07344666,0.14309812,-0.01689931,0.06919807,-1.1148992e-32,0.0013600821,0.004409852,-0.014737112,0.07497005,-0.021100549,0.05641149,-0.007258804,-0.062461,-0.03278272,-0.0676656,-0.022828467,-0.033638608,0.0661918,-0.07981751,-0.032906484,0.063856594,-0.0051444015,-0.025582494,-0.0026889762,0.042007808,0.020594744,0.079777725,-0.037409093,-0.0475227,-0.06472093,-0.053083297,-0.06719602,-0.003964839,-0.048502643,0.069757245,0.03140647,0.042969406,0.068142876,0.05674586,-0.045392144,0.04036831,0.10360033,0.041654564,-0.0363901,0.022334902,-0.011217909,0.08648582,0.05679174,0.05839039,-0.029579457,0.06371119,-0.039111678,-0.14751618,-0.06498839,-0.0497184,0.06541162,-0.037731983,-0.040444255,-0.06427879,0.016405474,0.045718636,-0.07798137,-0.11899672,-0.060747035,0.008981569,0.034200136,-0.009786202,-0.059474695,-0.09932889,0.030582622,-0.015703613,-0.08084404,0.036628246,0.10270321,0.060221333,0.14049512,-0.00027916688,0.033262108,-0.054958858,-0.010374811,-0.07729528,-0.0922966,0.04491279,-0.055293024,-0.012341859,-0.04047117,0.06674073,0.036725704,-0.08114262,-0.079659946,-0.044064295,-0.01887992,0.021998268,0.014779391,0.020001125,-0.03343302,-0.006201718,-0.053489186,-0.09005191,-0.026617868,-4.5393808e-08,0.054931637,-0.00289041,-0.00921592,0.0032888013,0.0050834403,0.0022987314,0.0025132191,-0.01697934,-0.030371763,0.057301205,-0.0118900165,0.0011279627,0.008231052,0.10078223,0.03797693,0.06635265,0.05133451,0.11875724,-0.023893854,-0.009946025,0.07441225,-0.015551124,-0.061331827,0.07713072,0.07814728,0.07580506,-0.016369399,-0.02329037,0.02186744,0.025189701,-0.044911012,0.035107166,-0.027194561,-0.057161,0.06364459,0.030476246,-0.03305464,0.035291266,-0.026962817,-0.013562844,0.0025654382,-0.026366604,-0.07908057,-0.00037925353,0.020081677,-0.08786661,0.004910448,0.0075735548,0.045859046,0.11030898,-0.024711931,-0.002236059,0.05341098,0.0057608937,0.031483088,-0.049378153,0.030803267,-0.001993454,-0.024070092,-0.059438094,0.013552809,0.108182475,-0.037156317,-0.06947112} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.269505+00 2026-01-30 02:01:11.627025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2004 google ChdDSUhNMG9nS0VJQ0FnSURSMzVUNHNBRRAB 1 t 2007 Go Karts Mar Menor unknown Bra bane, lett og tilpasse fra liten til stor. Området ser ryddig og fint ut.\nKan anbefales👍 bra bane, lett og tilpasse fra liten til stor. området ser ryddig og fint ut. kan anbefales👍 5 2024-01-31 01:52:39.833374+00 no v5.1 O4.04 {E1.01,E1.04} V+ I2 CR-N {} {"O4.04": "Bra bane, lett og tilpasse fra liten til stor. Området ser ryddig og fint ut.\\nKan anbefales👍"} {-0.048479598,0.0417791,0.01341336,-0.08076709,-0.014326687,-0.0115942,0.03765992,0.08261921,0.033611126,0.015002819,-0.035471324,-0.031184772,-0.014079425,-0.001169697,-0.0026074082,-0.10717947,-0.14597194,0.060160633,0.014206205,-0.0022332037,0.018767983,-0.05220956,0.08096535,-0.04151199,0.015746241,-0.022453034,0.016713757,-0.059542216,0.033795275,-0.032138735,0.060346797,0.05560198,-0.06552061,-0.01750702,0.003435377,0.021942131,-0.021461572,-0.08763881,-0.058601867,0.05288366,-0.046317242,-0.06534416,-0.013357046,-0.041597717,0.016613133,0.07972467,0.049712572,-0.015939837,-0.10402494,-0.007370256,0.0017516192,-0.032515153,0.057527576,-0.009139783,0.07181641,0.022124533,0.028530167,0.046081997,0.02103297,-0.09392169,0.017793167,0.005613776,-0.020887258,0.012858893,-0.08492888,-0.028941661,0.036469582,0.06399135,-0.034878924,0.035025455,0.007847458,-0.04129007,-0.019479468,0.030112065,-0.028378421,0.045112792,-0.05299239,-0.041916456,0.009700978,-0.026325833,0.014628403,0.049996365,-0.0077499375,0.016099187,-0.017117685,0.02869577,0.035429575,0.0015712003,0.12215857,-0.0045720227,0.03767821,0.004690039,-0.07701802,0.043689907,-0.054506782,-0.07165378,0.023543868,0.05991192,-0.034550723,0.053784586,0.0061336695,0.072847106,-0.038684636,0.07617716,-0.02737906,-0.06707287,0.06068501,-0.007392181,0.045724194,0.026448086,0.02932201,0.015107198,-0.01427976,-0.095161036,0.039551787,-0.07561535,0.00934432,-0.07651642,0.07618242,0.025643868,-0.0067645446,0.022373721,-0.0224974,0.045747366,0.033637848,0.020165911,-0.008856108,5.734097e-33,-0.019002337,0.028295318,-0.015430737,-0.01578682,-0.0019172928,-0.049834926,-0.116548106,-0.06882066,-0.004015619,-0.0032597303,0.01041847,-0.068125084,-0.057983678,0.0035222645,-0.019403817,-0.048908316,0.040585183,0.014191675,-0.029966567,-0.06120369,0.024937695,0.018866343,0.020257408,0.01288302,-0.029231267,-0.11178939,0.022556681,-0.05817545,0.031803597,0.04937218,0.029658208,-0.09609965,0.011345627,-0.009435618,-0.0019363447,-0.0656828,0.065405354,0.013099965,-0.050199956,-0.067448646,0.013640548,-0.11275223,0.0049516414,0.023007445,0.03960436,0.0766458,0.029738085,-0.0013901362,-0.02422785,-0.022176594,-0.016906789,0.00976066,-0.15883324,-0.00415762,0.031218449,-0.028861735,-0.045216154,-0.033834476,0.012598063,0.017049713,-0.029080432,-0.035812937,0.052639447,-0.021917364,0.023687394,-0.049702987,0.0033340403,-0.043182854,0.043251332,-0.036627878,0.008756775,0.035684954,-0.04302809,0.024415754,-0.0040223496,0.10208863,0.00040118457,0.082809195,-0.019287786,-0.0063234055,-0.13215224,-0.066406436,-0.12023686,-0.043709263,0.054695565,0.028403983,0.03322578,-0.093922324,0.018265981,0.0534458,0.0020490075,-0.014001828,0.096160024,-0.07672565,-0.004419073,-4.719385e-33,0.022910794,0.012694887,-0.022286806,0.013190571,0.015815718,0.039572563,-0.0065898555,0.0345647,0.025824811,-0.0138522135,-0.044243105,-0.05161743,0.027642334,0.007169294,-0.038287323,0.027506096,0.13904849,0.052171662,0.017768262,0.09613797,-0.049408466,-0.07463077,-0.034633074,0.16286434,-0.013369742,0.0885739,0.06116405,0.06823146,-0.056490693,-0.021721242,0.039414655,-0.057853244,0.041881785,0.09572769,0.03857009,0.0074367984,0.090473615,0.03033811,-0.061790626,-0.021700723,-0.0074793478,0.006579359,-0.05313751,-0.015383351,-0.02144504,-0.043821875,-0.020106599,-0.02500405,0.002718719,-0.044774316,0.051761735,0.025493415,0.07792051,-0.080450244,0.016616985,-0.051867377,0.0021455428,-0.020090198,-0.046335634,0.04120317,0.092697196,0.046106122,0.015573506,0.02487567,0.07003077,-0.10085138,-0.04266008,-0.049385168,-0.004595543,0.02521047,0.06765238,-0.015931614,-0.00078689517,0.0067446674,-0.013777236,-0.028951231,0.08668718,0.038351413,-0.020257417,-0.010301403,-0.040667776,0.016236987,-0.009543612,-0.021454597,0.019902015,-0.017903931,0.07188579,-0.034900147,0.020696282,0.009446639,-0.024628654,0.056569524,-0.027969746,0.062855236,0.06900922,-2.721537e-08,0.033056792,-0.04281734,-0.09104888,0.06746823,0.118322045,-0.109801576,-0.028907662,-0.09900653,-0.10429808,0.0384729,-0.005407633,0.07806973,0.0061102454,-0.0019586473,0.088371076,0.035066817,-0.049217083,0.017976498,-0.0166231,-0.05362952,0.029893663,0.0042519853,-0.02354151,0.013296654,-0.038343355,0.076004714,0.040181857,0.021934904,0.12355684,-0.043669607,0.101037815,0.055330303,-0.006619609,0.040933438,-0.04566431,0.031211436,0.042225175,0.047769327,-0.0052206707,0.16810046,-0.034676533,-0.0069813835,0.14374845,-0.03248433,-0.11966266,-0.004568529,-0.029273506,0.0071640504,-0.013601203,-0.024492906,0.032205723,0.034687467,0.0010749309,0.0988959,0.014727949,-0.0056664846,-0.04918858,0.03694071,-0.09825171,-0.0039948877,0.004714704,0.028871676,0.016552962,-0.02260425} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.282074+00 2026-01-30 02:01:11.631155+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2005 google ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB 1 t 2008 Go Karts Mar Menor unknown Buen circuito, con bastantes curvas. Genial para niños y mayores. buen circuito, con bastantes curvas. genial para niños y mayores. 4 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"A3.01": "Genial para niños y mayores.", "O1.02": "Buen circuito, con bastantes curvas."} {-0.0115923295,0.06622661,-0.0017841952,0.0019508456,-0.061173648,0.06623813,0.01692408,0.04786565,-0.036703076,0.043732494,0.084716946,-0.124942206,-0.0422087,-0.005725621,-0.035042353,0.053668786,-0.061689988,0.0671141,0.08228597,-0.054701954,0.0024006304,0.025206285,-0.033466373,0.055957086,-0.06860468,0.037568852,-0.0028698358,0.0025944326,0.0066116797,-0.0394609,-0.06696069,0.09303785,0.041117076,-0.013161515,-0.00443465,0.041348472,0.05712352,-0.015802708,0.037678022,0.04999356,-0.040042765,-0.0011396195,-0.0474314,-0.045524884,-0.02201385,-0.067154296,-0.014330132,0.059648365,0.03189166,-0.081277326,-0.0042106,-0.07952989,0.017301783,0.076936886,-0.021391273,0.0035824818,-0.019588588,-0.050873872,0.09283771,0.0070368387,-0.0007134489,0.011305876,-0.07776602,0.004537253,0.032038186,0.027377987,0.006306114,0.021180071,-0.03999771,-0.009883449,0.105900295,0.0003688129,0.031530306,-0.00416131,-0.03880877,0.0480329,-0.06940988,0.0034218046,-0.038107798,-0.10006917,-0.027401596,0.0065047042,-0.015660414,-0.03191288,0.031970292,0.02337926,0.0049157343,-0.032482173,-0.017691115,0.028113902,-0.04704647,0.005773464,-0.015541908,0.016174408,-0.07012416,-7.85876e-05,-0.028873017,-0.07689087,0.08442831,-0.0027985158,0.010745273,-0.049798224,0.08425473,0.04914319,-0.07354369,-0.0005812813,0.01180703,-0.080391616,0.014277324,0.021404676,-0.09645558,-0.03374173,0.015187309,0.05164926,-0.03477076,-0.10455501,-0.021438802,-0.025151914,0.013912622,-0.042127877,0.07101098,0.0148545485,-0.09889834,-0.04116205,0.018891871,-0.0054301587,0.042102396,2.1556862e-33,-0.0079297,-0.034801632,-0.026688045,0.08779597,0.08041533,0.026464187,-0.065559745,-0.026129605,0.016601607,-0.06742773,-0.08565945,0.003753744,-0.0011563575,0.001243822,0.09291826,-0.007863563,0.026665917,-0.020705024,0.061561786,0.036361482,-0.06468667,0.03878066,0.0074127736,-0.0045563066,-0.003993697,0.0089489585,0.01233668,-0.06620915,-0.09237171,0.041870356,0.114510804,-0.0130781215,0.032881875,-0.004035966,-0.0029940223,0.03232635,0.09691818,0.0025784955,-0.03353529,0.012042108,-0.039889116,-0.016910575,0.019096809,0.0797584,0.061902385,-0.027586257,0.028927257,0.042302616,0.040428393,0.048161898,-0.0700948,-4.6021898e-05,-0.055087093,-0.095121555,0.051625963,0.08788999,-0.046277776,0.025283106,-0.044440817,-0.03209382,0.06420626,0.04228108,-0.027729494,-0.09797127,-0.0028505286,-0.070724316,0.05139374,0.04052711,0.08601677,-0.094308235,-0.035826106,-0.00856922,-0.059978385,-0.0049293125,-0.04885566,0.01909116,0.050114308,0.03439689,-0.020574741,0.014411023,-0.119929,0.0027842512,0.0066538975,0.0170953,0.10762217,-0.030181058,0.034774214,0.054699976,0.0070009767,0.07386664,-0.012009736,0.07497154,0.051152583,0.01943422,0.029611545,-2.5595526e-33,-0.034088865,-0.028299503,-0.01727328,0.06369358,-0.065840185,-0.0119197965,-0.0839584,0.015686931,-0.061654255,-0.06617426,-0.100292474,-0.041391805,0.13109125,-0.08463276,-0.017794942,0.0057292273,0.027821638,0.029556839,-0.08041736,-0.07134517,-0.048727166,0.11161923,-0.046120323,-0.028186262,-0.03945406,-0.0059760218,-0.037353095,0.03358917,-0.12029073,0.035722252,0.04555218,-0.014210272,-0.021574697,0.07021231,0.044228528,0.07978381,0.10249899,0.012586152,0.0014146491,0.030912347,0.01103413,0.06626318,0.0056689633,-0.027422,-0.0415199,0.074121796,0.032147713,-0.05473036,-0.065699145,0.003999727,0.0880075,0.07354851,-0.0751823,-0.057619922,0.048315343,-0.051209584,0.00031270055,-0.06361217,0.013590759,-0.026523635,0.09048192,-0.007222345,-0.008731427,0.02311086,0.030936278,-0.048355304,-0.07416908,0.083435886,0.12057089,0.017057287,0.07032548,-0.0017020059,-0.02309779,-0.034973443,-0.12366566,-0.037082784,-0.0789538,-0.0044453256,0.036198694,0.01662776,-0.04090328,0.031677958,-0.019162992,-0.052634243,-0.058867913,-0.03264801,0.03511508,0.0015784741,-0.0031113075,0.01958955,0.012395381,0.031437315,-0.07806593,-0.007621389,0.014006372,-2.4715657e-08,0.07632971,0.013553718,-0.045233194,0.055601474,0.042807743,-0.13774234,-0.045517366,-0.024086589,0.016204515,0.046406057,-0.01747552,0.015234257,0.032349057,0.067624494,0.052675154,0.027101345,0.09171841,0.058751985,-0.030538553,-0.02138045,0.037642498,0.042879313,-0.071273476,0.062083423,0.0129502285,-0.06439761,-0.018809896,0.007306337,0.0020806245,-0.016633656,0.0032062721,0.047694385,-0.061061956,-0.07179901,0.052004445,0.046471335,-0.06225298,0.003116578,0.029161204,-0.017631939,0.10652919,0.002139402,0.0676989,0.020459525,-0.017833035,-0.06285932,0.07618876,0.05754197,-0.021021942,0.015948398,-0.08343371,-0.05394862,0.09269781,0.040122848,0.006698829,-0.07030746,0.06852545,0.008246603,-0.018191768,0.0091800345,-0.019823775,0.11206852,0.009136593,-0.059862487} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.668207+00 2026-01-30 02:01:11.633822+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1989 google ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB 1 t 1992 Go Karts Mar Menor unknown Por 50€ disfrutas mucho. Buen circuito y buena atención. Hasta te dan tu medalla :) por 50€ disfrutas mucho. buen circuito y buena atención. hasta te dan tu medalla :) 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I2 CR-N {} {"O1.01": "Buen circuito y buena atención.", "R3.05": "Hasta te dan tu medalla :)", "V4.01": "Por 50€ disfrutas mucho."} {-0.040592946,0.07528849,0.003320814,-0.041171372,-0.05466964,-0.016956288,0.018388467,0.11542996,0.005316647,0.06912166,0.005724906,-0.041467097,0.03078385,0.028074898,-0.047028713,0.018823896,-0.07065594,-0.004777175,0.021812007,0.018077495,0.07527057,-0.059426405,-0.08445661,0.11661351,-0.024591414,0.0062523973,0.040538926,0.07006111,-0.051140063,-0.035317264,-0.12884338,0.0761033,-0.0032391532,-0.031877525,-0.05200706,-0.057896808,0.06097145,-0.08132948,-0.070891425,0.052274536,-0.08719248,0.037967037,-0.024143633,-0.00636047,0.084637366,-0.061415978,0.008946723,0.040309213,0.035099644,-0.04649204,-0.013258886,0.011110632,0.034199346,-0.024870867,-0.02012275,-0.015561534,0.0777802,0.0347942,0.03462385,0.06703042,0.019777982,0.02367293,-0.07467296,0.05217654,0.011132137,-0.03500091,-0.008779486,0.008151233,-0.13208584,0.012437418,0.076814815,-0.09468689,0.098477386,0.023780495,0.065186396,0.043588277,0.025982393,0.0035470743,-0.029980868,-0.030410493,0.0762343,-0.044225205,-0.044597168,-0.042132955,0.050891444,-0.01350899,0.0044513624,-0.047490764,0.03390896,-0.056244627,-0.042720187,0.041432507,-0.09395671,-0.010283013,-0.020459896,-0.026614027,-0.052604865,0.01985105,-0.052393224,0.04992878,0.080712885,0.059106994,0.06370096,0.0050757388,-0.059500236,0.07979052,0.07046209,0.021423794,0.04639091,-0.016340906,-0.026064985,0.033366974,-0.080331154,-0.037602186,-0.07049614,0.0050749453,-0.021496318,0.005577628,0.01665492,-0.06881908,0.004578238,-0.069022544,-0.07404656,-0.0102579,-0.02151162,-0.09183302,0.02280011,4.6587346e-33,-0.026539292,0.036909338,-0.06060267,-0.012056205,-0.04751676,0.022684056,-0.02269352,-0.012391255,-0.019435646,-0.024548639,-0.051946793,0.14258675,-0.024387121,0.030056579,0.08596755,-0.02064645,-0.018894851,-0.05801121,0.07971348,-0.017265758,-0.052938625,-0.056340303,-0.008842411,0.07704506,-7.663088e-05,0.03838221,-0.027059017,-0.094280675,-0.049230102,0.040930282,0.030831529,0.049995497,0.08180758,-0.077812016,-0.047992256,-0.06704065,0.0899269,0.0002541752,0.020195285,-0.038946945,0.03786372,0.040460076,0.003556162,0.012359496,-0.010544775,0.017390676,0.06223536,0.046302874,0.112966776,0.029359672,-0.105238445,-0.07978762,-0.08575373,-0.028627573,0.023625847,0.011965168,-0.06863082,0.07282737,0.10498932,-0.0001262038,-0.099580035,0.022064751,0.010124433,-0.011107488,-0.058900286,0.03337091,0.03422591,-0.012786123,0.05422565,-0.04431598,-0.100819096,-0.00043953015,0.016933147,-0.019663492,-0.043402854,-0.027352853,0.028117778,0.012049238,0.011799821,0.016857736,-0.120198466,-0.027680567,0.017383303,0.044010837,0.11380596,0.14409672,0.07760477,-0.0024953356,-0.023074906,0.10046101,0.017329812,0.06577943,0.06499978,-0.05125387,0.115048036,-5.411548e-33,-0.017456397,-0.030152354,0.05562463,0.06700913,0.018677333,-0.016842859,-0.039845504,0.04062292,0.005034468,-0.027482625,-0.017100265,-0.065029815,0.061728414,-0.023282135,-0.04106696,0.020672629,0.0070030224,-0.022624655,-0.025863593,0.015568623,-0.010535384,0.1191642,0.029222768,0.0155159915,0.005286878,-0.03368343,-0.013005704,0.041257907,0.015685473,-0.014332808,-0.014434125,-0.02224464,-0.02927403,0.086116806,-0.07301998,0.032925747,0.05956467,0.018454403,-0.001793542,0.067905314,-0.07445079,0.022723837,-0.045067336,-0.023673981,-0.021096762,-0.013687409,-0.0419467,-0.10723453,-0.012398166,-0.07216998,0.08510512,-0.004070647,-0.0047641266,-0.024595072,-0.03824569,-0.06672825,-0.009190109,-0.02349122,-0.098878026,-0.020167703,0.06855572,0.048821624,-0.04462182,0.023259358,0.04608588,0.06855959,0.062013503,0.10358059,0.06450056,0.041667018,0.05189278,0.018457592,0.04057223,-0.02133,-0.06101917,-0.0071890466,-0.09055639,0.07987599,0.057903014,0.08062839,-0.042624474,-0.018367682,0.00801119,-0.08064729,-0.0059387484,-0.055977244,-0.0074736355,-0.010811522,0.00494433,0.05267062,-0.011381646,0.023574246,0.010461667,-0.05573844,0.0028510643,-3.1780438e-08,0.00916747,0.03200686,0.0006617023,0.008002908,0.034640476,-0.06291289,0.008373365,0.021112094,-0.031587534,0.028961595,0.023130454,-0.04137319,-0.035954602,0.037369613,-0.08022535,0.035299655,0.009336321,0.14451534,0.016180221,-0.007895364,0.045955047,-0.014735985,-0.05257778,0.008150383,0.025351286,0.022709128,0.004771218,0.042040132,-0.024039084,-0.12434493,-0.08311558,-0.029279249,-0.044140898,-0.03905427,0.05865964,0.01809246,-0.050384935,-0.017546903,-0.0654114,-0.0026520225,0.062969305,-0.09502152,-0.0056440285,-0.031518,0.011238671,-0.042258188,-0.04438868,0.023350712,0.02103085,0.013174498,-0.033994783,-0.024975838,0.0035027838,0.010697714,0.014359078,0.036679205,0.08424317,-0.012870951,-0.069014005,-0.025892608,0.033801876,0.007943157,0.002214662,-0.048602257} 0.81666666 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.11027+00 2026-01-30 02:01:11.576199+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1991 google ChZDSUhNMG9nS0VJQ0FnSUNHOGNEdEJBEAE 1 t 1994 Go Karts Mar Menor unknown Nos lo hemos pasado como niños pequeños. El circuito esta de lujo y los trabajadores super simpáticos, repetiría sin duda! nos lo hemos pasado como niños pequeños. el circuito esta de lujo y los trabajadores super simpáticos, repetiría sin duda! 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.01,P1.01} V+ I3 CR-N {} {"V4.03": "Nos lo hemos pasado como niños pequeños. El circuito esta de lujo y los trabajadores super simpático"} {-0.028544368,0.016440503,0.0063978164,-0.04099713,-0.041925184,0.0003557347,-0.027447058,0.02600125,-0.0040556216,0.048944395,0.08604777,0.03451748,-0.043022867,-0.022073979,0.04539739,0.051934287,-0.009248573,-0.03654297,0.035860833,-0.06386106,0.1266478,-0.079992235,-0.106075786,0.073329195,-0.086641304,0.0104927365,0.0013670991,0.02705727,-0.07800919,-0.04852805,-0.06346074,0.102318905,0.06119626,-0.03999801,-0.08774673,4.1462994e-05,0.035178512,-0.054448582,-0.024416173,0.0145173725,-0.10459155,-0.030727249,-0.007298127,-0.07341081,-0.003438536,-0.06876986,0.006786761,0.04290773,0.016241351,-0.060247384,-0.012313384,-0.022965726,0.042314626,0.06779833,-0.014612679,0.027199458,-0.059625138,-0.017489577,0.09749039,0.08458028,-0.021867028,0.08962195,-0.076742604,0.030966926,0.01918312,-0.05097813,0.018236235,0.019853225,-0.06104371,0.018622246,0.081367865,-0.036586147,0.02672849,-0.0073688636,0.016058777,0.04876219,-0.018275928,-0.032707646,-0.0010716993,-0.028858474,-0.0148293,-0.036117233,0.004468527,-0.06872475,0.038065564,0.019852791,-0.020638091,0.021621203,0.009810247,-0.033068568,-0.0019652506,0.04112583,-0.0077401283,0.030338041,-0.04842873,0.0093967505,0.048783544,-0.06657164,0.013075305,0.01207974,0.09566721,-0.013506754,0.0671142,0.021629183,-0.048506245,0.05914697,0.02116818,-0.016516965,0.03452251,-0.0035036893,-0.068379775,0.022559043,-0.011589625,0.009295435,-0.076769024,-0.01667088,-0.032893322,-0.014959512,-0.06987012,-0.034263387,0.049371634,0.006661621,-0.0955217,-0.0057342527,0.030714776,-0.038224973,0.058977854,7.788561e-33,0.008557268,-0.026597586,0.00838246,0.04306312,0.027377611,0.046099216,-0.0061668954,0.002683045,-0.016728386,0.014680702,-0.05980353,0.04902862,-0.010596977,-0.016894303,0.048229977,-0.02767284,-0.07250564,-0.07754932,0.09372028,0.08022066,-0.008658368,-0.06181613,0.010091941,0.026848169,0.0061586495,0.09230563,0.029127162,-0.04096265,-0.044039775,0.0893201,-0.02077096,0.014569832,0.003267049,0.020637225,-0.06443694,0.013842871,0.09878416,0.005226501,-0.054518506,-0.025963152,-0.0037918538,0.0018359693,-0.07479668,0.010069916,8.048465e-05,-0.008039565,0.067702256,0.03853367,0.08821242,0.06860568,-0.14330952,-0.05918079,-0.045943536,-0.11863647,0.04872537,0.09755718,-0.031478737,0.022999624,0.01650174,-0.047926668,0.027735619,-0.005651932,-0.025221292,-0.06703547,-0.02968254,0.008558959,0.08406608,-0.02466306,0.10132731,-0.007330596,-0.023711894,-0.024203826,-0.0156177115,0.003805291,0.053760104,-0.0030702385,0.0051301843,0.038513284,0.027944379,0.038642444,-0.082287826,-0.022430161,0.024116937,0.024997348,0.12211714,0.08293916,0.035223603,0.045246437,-0.024559854,0.12244537,0.0035482447,0.08693542,0.10863444,0.0015307692,0.07569072,-9.298601e-33,-0.036572706,-0.017194552,0.011389122,0.027166605,0.008917102,-0.00529241,-0.01611337,0.00058947614,-0.06433085,-0.060867276,-0.058093622,-0.09491306,0.07754893,-0.05185497,-0.0087179905,0.0046610767,0.020945147,-0.060378022,-0.035876703,0.0006158323,0.0035204082,0.059542198,-0.009907203,0.0013045016,-0.015481339,-0.09005837,-0.061562046,0.055013794,-0.06521964,0.022109784,0.002368171,0.013544039,-0.0127774775,0.084987886,-0.032862354,0.034563884,0.0018959369,0.06636992,-0.0010243903,0.027922885,-0.004729076,0.05221091,0.0012768073,0.03384698,-0.049727533,0.0475514,0.0022705514,-0.122384496,-0.028529217,-0.047552485,0.03952553,-0.05556908,-0.08708549,-0.037019115,0.064257346,-0.039749883,-0.02678332,-0.033761274,-0.08706729,-0.021626074,0.070985205,-0.050038647,-0.037342798,-0.022329517,0.097634815,0.00039777657,-0.009758029,0.021622822,0.11626778,0.03343081,0.11826217,0.0199793,-0.08652699,-0.029641312,-0.051552422,-0.087969996,-0.1397,0.0015404487,-0.062076584,0.008883462,-0.0020083007,0.023992313,0.02025086,-0.08120971,-0.020822227,-0.029622154,0.0075099645,0.041186556,-0.018960178,0.0010076757,-0.020623975,0.056383606,-0.1271271,-0.051342644,-0.029404147,-3.7286675e-08,0.015168338,0.05545259,-0.019523527,-0.010501246,0.06633344,-0.089082696,0.02051491,0.006076203,0.013090948,0.055290036,0.012481282,-0.0076317014,0.023284962,0.05004248,0.08682192,0.034132548,0.10799271,0.11844117,-0.013142214,-0.028413478,0.051109567,0.0058556413,-0.04365766,0.019169388,0.016723674,0.007889019,-0.01189155,0.011629919,0.02725748,-0.011094962,-0.05180624,-0.026337877,-0.06571815,-0.109315716,-0.02586944,-0.0268429,-0.029325273,-0.01184646,0.033018,-0.0957494,0.066268854,-0.018030576,-0.09657902,0.023180315,-0.004586627,-0.100489534,-0.0215077,0.014446282,-0.0060035293,0.04161085,-0.05901661,-0.066563144,0.03880558,-0.027017698,0.12458654,-0.0412416,0.062767774,-0.020192808,-0.050232805,-0.014412141,0.08594459,0.07537956,-0.0008087119,-0.059654366} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.138516+00 2026-01-30 02:01:11.581123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2012 google ChdDSUhNMG9nS0VJQ0FnSURac2RURXF3RRAB 1 t 2015 Go Karts Mar Menor unknown Buen karting, coches potentes, circuito rapido e interesante, precios aceptables. buen karting, coches potentes, circuito rapido e interesante, precios aceptables. 5 2024-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.01} V+ I2 CR-N {} {"V1.01": "Buen karting, coches potentes, circuito rapido e interesante, precios aceptables."} {-0.045758314,-0.0037318578,-0.053947184,-0.015066952,-0.15084483,0.08995114,0.022038184,0.089937165,0.0055929776,-0.0065161637,0.06548445,-0.023150545,-0.064366676,-0.007582205,-0.0024307813,-0.05914352,0.023504432,0.059973743,0.022087915,-0.019086434,0.028617725,-0.07168623,-0.026509253,0.088306464,-0.07109753,0.02483113,0.02452986,0.08404027,0.036423218,-0.09990808,-0.036782537,0.056303337,0.0046633594,-0.0065123285,-0.021265564,-0.03461437,-0.030020246,-0.06878706,0.044587836,0.039824296,-0.046692878,-0.07261702,-0.022928147,-0.08720484,0.08373728,-0.04004766,-0.016438758,0.024818132,-0.011625229,-0.10021115,0.002576306,-0.04181594,0.019337038,-0.0077066217,0.014677754,-0.025360132,-0.030296378,0.054007135,0.06915207,0.029870667,0.015758514,-0.040426094,-0.007510526,0.060720265,-0.11812601,-0.03986198,-0.04467973,0.03361687,-0.008535813,0.058774494,0.087398134,-0.0853727,-0.046734042,0.0056229904,0.025747271,0.03183224,-0.019011036,0.0614607,-0.03173381,-0.10078229,0.02873859,-0.030180484,-0.04921843,-0.061039995,0.07546817,0.025080241,0.018051248,-0.00552507,0.021362498,-0.058749445,-0.038551793,0.031083407,-0.09783157,-0.037695125,-0.054731574,0.029446887,0.00479049,-0.011372423,0.010903698,0.030294571,0.035250884,0.06438944,0.043614484,0.022376884,-0.10373099,0.025999106,0.038048375,0.007995598,0.071663536,0.066474564,-0.052847985,-0.043945014,-0.060628235,-0.07163843,-0.053652726,0.029310342,-0.03693226,-0.01146001,0.06795772,-0.03600517,-0.013183932,-0.028091045,-0.026666416,0.0118483845,0.02019253,-0.015118682,0.09507328,2.1800132e-33,-0.08598733,-0.047440734,-0.020070422,-0.014529731,0.013935241,-0.036125902,-0.08009496,-0.055856142,0.022777172,-0.044522468,-0.04373868,0.119038336,-0.027757065,0.0027412735,0.087653145,-0.027636306,-0.049537178,-0.008297377,0.07706184,-0.019577136,-0.04289425,-0.07899344,0.002142902,0.104547404,0.0008387512,0.023938347,0.03543011,-0.11091372,-0.060255907,0.046756033,0.015435306,0.07130125,0.002513559,-0.046238225,-0.13842271,0.053172056,-0.021517508,-0.008621122,0.044835113,0.010879467,-0.032101773,-0.0213142,-0.031316847,0.027834514,-0.05287611,-0.03448694,0.0020591887,0.10035745,0.086547256,0.024355307,-0.15372919,-0.04899097,0.0024735578,0.031880125,-0.0027278743,0.056035172,-0.08896811,0.026732238,0.018727617,0.010525499,-0.0033655385,0.11127441,-0.054549348,0.013242503,-0.13032515,-0.0062411726,0.019111753,-0.040798616,0.07166773,-0.012093421,-0.091041915,-0.023648396,0.036906272,-0.03779405,0.02731763,0.010913555,-0.04328968,0.025479732,-0.025925918,0.028779069,-0.10104163,-0.04470701,-0.009462618,0.041830875,0.083795145,0.02780243,0.04579264,0.016496824,0.03730775,0.045111366,-0.02677246,0.05833865,0.03369702,0.023797933,0.04840281,-3.1086378e-33,0.10557081,-0.03738338,0.058732342,0.118319534,0.067232385,0.06819084,-0.028033732,-0.106350295,-0.020461958,-0.02564783,-0.04033245,-0.057937514,0.039009597,-0.079457484,-0.03253813,-0.008685955,-0.018660361,0.020446826,0.025653966,-0.012751139,0.028670922,0.042344756,-0.03728424,-0.0023740467,-0.036426425,-0.01479135,-0.009404851,-0.040482473,-0.08772094,0.085215814,0.03035552,-0.0193548,-0.01827578,0.07594182,-0.06521496,0.054085646,0.0856242,0.09544314,-0.016398124,0.032175034,0.031739205,0.012746066,0.012999297,0.044610426,-0.011814595,-0.00064681924,-0.020223364,-0.027724732,-0.005475013,0.01723293,0.08006979,0.0022118518,-0.06273655,-0.03641545,-0.0063225147,0.0074998448,-0.014209597,-0.119693436,-0.1386993,-0.020937398,0.03471018,0.06505785,0.0070232544,0.012175756,0.058269802,-0.031209836,-0.06666668,0.0030481822,0.056115195,-0.035143606,0.015432046,0.019135378,0.08325859,0.033112235,-0.028628958,-0.030846588,-0.026734434,0.016443992,0.034299426,-0.018731063,-0.048172504,0.006003642,-0.014452737,0.025649875,-0.07404793,0.034522444,-0.043651316,-0.019627139,0.04843755,-0.0045042215,0.008511164,0.096994,0.0467009,0.0048568775,-0.037260205,-2.486045e-08,0.034432862,-0.018841714,-0.011072115,0.059892405,0.056874275,-0.06570208,0.001769914,0.037489615,-0.08543345,-0.004301187,0.011776872,-0.022134049,0.040468365,0.043049745,0.012599297,0.048396796,0.039887283,0.17585205,-0.0058332453,-4.3070762e-05,0.051164046,0.006826191,0.0073130853,-0.03456863,0.03568287,-0.030703576,-0.009393381,0.008242794,-0.029973192,-0.04319185,0.0019995908,0.0030285814,0.045084797,0.033679906,0.050254215,0.0329815,-0.031016728,0.079369016,-0.075047925,-0.015026059,-0.039572693,-0.026323397,-0.029991506,-0.037237693,0.04526645,-0.042953014,-0.027337225,0.02939402,0.03162586,0.08885828,-0.110650264,0.020528318,0.056215923,0.0414921,0.04747418,0.059766836,0.0076607703,-0.06222052,-0.036351632,-0.055768356,0.02972208,0.017638797,0.09706266,0.018414551} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.782988+00 2026-01-30 02:01:11.651916+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2008 google ChZDSUhNMG9nS0VJQ0FnSUNhd09TdFVREAE 1 t 2011 Go Karts Mar Menor unknown Me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.05} V+ I3 CR-N {} {"V4.03": "Me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato"} {0.039279472,0.025772508,-0.06200173,-0.06457304,-0.08383643,0.012627279,0.08314498,0.0080195125,-0.028472774,0.0011257932,0.039044775,0.011557694,-0.07540958,0.029795524,0.028043093,0.013490924,-0.052519873,-0.011395592,-0.014797867,-0.017805785,0.049801648,-0.033471994,-0.03909984,0.032241568,-0.08732345,-0.043675143,0.00549954,-0.060756695,-0.051344037,-0.03282899,0.03520884,0.056387708,0.07087894,-0.02783627,0.017931158,-0.042477075,0.023509027,0.038095433,-0.008506641,0.0060643004,-0.05935385,-0.06245895,0.034548722,-0.0042549027,0.05631123,-0.112849414,0.04452137,0.022938853,0.06700711,-0.0053023244,-0.0790342,0.031240087,0.0011904568,-0.030824516,0.023873825,0.030307518,0.006088227,-0.0032463511,0.036966115,-0.028172985,0.026902003,0.07669664,-0.1458798,-0.02079637,-0.010878919,-0.016647475,0.042594396,-0.027683364,-0.06624943,0.078534976,0.113353364,-0.06760383,-0.023409607,0.10783762,-0.0048506097,0.021150958,-0.0463379,0.06436735,-0.0127839,-0.016905565,-0.0083612045,0.032290824,-0.05379847,-0.06855883,-0.012654338,0.024295483,-0.017576437,0.0011598303,-0.008513998,0.031486697,0.047965292,0.049111314,-0.08928865,-0.05593254,-0.03927943,-0.036950495,0.08088358,0.031098258,-0.01646074,0.034340322,0.09703376,0.028649062,0.106831074,0.0781943,-0.036215134,0.093182124,0.053705867,0.011000386,0.057326004,0.031827245,-0.09216218,-0.034507617,-0.10129644,-0.035667308,-0.05736267,0.03767221,0.06591235,-0.049341727,-0.042642985,-0.05799629,0.0032087904,0.084581465,-0.030052507,0.044242218,-0.0315504,-0.12130148,0.023727987,6.3641565e-33,-0.048904102,-0.074650556,-0.031107223,0.08000255,-0.022659704,0.08038503,-0.012767334,-0.03585533,-0.017410966,-0.0024533886,-0.039949995,-0.009207462,-0.036680304,0.012551634,0.00065666385,0.0835255,-0.024310557,-0.0033760185,0.06055954,0.011909383,-0.08019526,-0.008508555,-0.016418692,9.876604e-05,0.014405837,0.02641822,0.019560391,-0.080269195,-0.0082626715,0.08010551,0.008048335,0.06586913,0.0006599292,-0.113146536,-0.043577332,-0.06441467,0.06013821,-0.010754922,-0.05813481,0.01921066,0.050029892,0.008698677,0.014768146,0.008094377,-0.0030243564,-0.05348359,0.06494685,0.039433096,0.05800304,-0.0013039929,-0.027398573,-0.047012992,-0.07031617,-0.071226776,0.019632502,-0.026013229,-0.022275867,0.0628465,0.028846294,-0.028955732,0.040163927,-0.016329158,-0.015555569,-0.0017802438,-0.088821515,-0.072142705,0.013686459,0.06868791,0.08927467,0.033575356,-0.0033963688,-0.06498628,-0.041988406,-0.03532372,-0.010392825,0.040792126,-0.03181384,0.058818944,-0.06034938,0.03665634,-0.030249447,0.09487646,0.034336917,0.0047011604,0.041687824,0.15817317,0.059819713,0.008245494,-0.078744344,0.087582186,0.0660956,0.087986216,0.032464758,-0.09030314,0.07747315,-8.339412e-33,-0.03948786,-0.027907034,0.05900285,-0.0058213724,-0.03961375,-0.06565598,-0.022384906,0.037338838,0.05385524,-0.12109328,-0.030015625,-0.11137506,0.10839809,-0.042791657,-0.0108081745,0.017737452,-0.051511113,-0.07021264,-0.051375825,-0.019675374,-0.03740498,0.05362577,0.08196638,-0.0013514041,-0.009324483,-0.13612255,-0.018146047,0.11115704,-0.0398248,-0.02109412,0.08737941,-0.019195821,-0.03038885,0.052757923,-0.014789251,0.009255452,-0.039347224,0.033435956,-0.033930555,-0.020124372,0.023786234,0.05049058,-0.10851624,-0.036205344,0.00509278,0.058276296,0.039636422,-0.077867314,0.023406696,-0.058375496,0.063883334,0.01004824,-0.045290913,-0.041770965,0.100251,-0.009744568,-0.002552493,-0.09550528,-0.055271577,-0.036918692,-0.0067122495,0.051121064,-0.017788816,0.0043458105,0.08024785,-0.0069479765,-0.03868537,0.03237226,0.029008985,0.07328258,0.11062787,-0.050568312,-0.033731278,0.054583997,-0.03856574,0.0059112953,-0.049846563,0.039903,0.015208652,-0.0006690757,-0.03401038,0.0059759086,0.013647623,-0.071756124,-0.03837551,-0.08087626,0.0042324876,0.028257351,0.03471808,0.04892149,0.04099771,0.026529523,-0.037122045,-0.05624165,-0.05479851,-2.9828648e-08,0.015703265,-0.06469762,-0.0019237957,0.0124266455,0.015665544,0.018983917,0.007972471,0.0042646057,-0.0101469075,0.01726804,-0.044898763,-0.008503355,-0.025667729,0.0036606072,0.010395536,0.07020695,0.10256266,0.034503948,0.011342168,-0.047475573,0.056419946,0.008645185,-0.0016695008,0.059347045,-0.056127634,0.043239683,0.022001492,0.06781812,0.0130884135,-0.036556214,0.00053906103,-0.02566407,-0.038429588,-0.059841927,-0.008149084,-0.036856998,-0.00896017,0.022788215,-0.047296617,-0.028242074,0.13687715,-0.021524714,-0.049324956,-0.017561572,-0.071101494,-0.047768045,-0.026400913,0.05374697,-0.02523855,0.008035369,-0.114720866,-0.019936692,0.06309438,-0.05739598,0.04164189,-0.057077006,0.040199243,0.02180756,0.00031284132,-0.013048907,0.07858052,0.0729892,0.040911667,-0.054055654} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.720653+00 2026-01-30 02:01:11.641698+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2013 google ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB 1 t 2016 Go Karts Mar Menor unknown Bonne piste et sensation.\nUn peu excessif pour le 400cc 30€ les 10min bonne piste et sensation. un peu excessif pour le 400cc 30€ les 10min 4 2019-02-01 01:52:39.833374+00 fr v5.1 V1.02 {} V- I2 CR-N {} {"O1.02": "Bonne piste et sensation.", "V1.02": "Un peu excessif pour le 400cc 30€ les 10min"} {0.0008971463,-0.0038413934,0.05913196,-0.0658831,-0.010581051,0.04596844,0.055139206,0.16104372,0.063783176,0.016495809,-0.025404328,-0.0949308,0.026632782,-0.038946103,-0.05700804,-0.08390097,0.0652225,0.019296534,-0.0037853008,0.0524167,0.02166142,-0.07328272,0.055533316,-0.0011093091,-0.042988297,0.020947315,-0.020653015,-0.06189568,0.04270104,-0.05851281,0.05970739,0.061279528,0.037580885,-0.060978185,0.079719834,-0.026645364,-0.015092333,-0.10921081,-0.020818407,0.008245179,-0.041947164,0.0167635,-0.07932953,-0.029076895,0.036204178,0.052372698,0.032884765,0.013232972,-0.026959892,0.055624932,0.031847093,-0.015882077,0.020860536,-0.040932767,-0.033559196,-0.04476356,0.017749613,-0.0513653,-0.0005760008,-0.029043192,-0.042992774,0.05094927,-0.058224957,0.012901115,-0.047396645,-0.034898233,0.0015490415,-0.08215831,-0.0038613502,0.109943084,0.050744407,-0.058679916,-0.054966845,-0.03560665,0.0035093224,-0.011099843,-0.010024588,-0.039694283,-0.051000275,-0.079403445,0.029740434,-0.06303512,-0.06609053,-0.07903774,0.03344711,-0.045898985,0.08867098,0.091041215,-0.0007884569,-0.02777528,-0.05068205,-0.05250584,-0.15134743,-0.018665724,-0.018646657,0.0014266225,-0.014184155,-0.0014873551,-0.026289225,0.03815856,0.0005838256,0.04301871,0.01250051,0.03913944,-0.06648531,-0.07871844,0.042523973,0.08565604,-0.013629319,-0.00012193557,-0.011849498,-0.04934334,-0.029063294,-0.095228635,0.04328525,0.054776527,0.010009004,-0.07379323,0.022163099,-0.05122768,0.045409486,-0.09164026,-0.01376423,-0.04972232,-0.017740862,-0.04788618,0.019627407,2.2538967e-33,-0.07812012,0.010761159,0.017668128,-0.1191537,-0.032584824,0.046936627,-0.015444184,0.013531397,0.026914839,0.009581557,-0.04856531,0.07334174,-0.020071466,0.06579827,-0.0320426,-0.054388415,0.13225919,0.0011932885,0.051516276,-0.09475662,-0.07781538,-0.014407493,0.059893265,0.123146035,0.013281556,-0.0029183342,-0.021106279,-0.03435098,0.03704935,0.02863719,0.00668465,0.062320232,-0.026344376,-0.009978424,-0.016110472,0.038727265,0.08504366,0.07505903,0.05844034,0.062490482,0.013010286,-0.04357979,0.002347338,-0.036834937,0.011847508,0.06907114,0.023066059,-0.007704096,0.008482614,-0.046130583,-0.017522683,-0.0002784463,-0.019318067,0.0683056,-0.03517764,0.02716645,-0.038741443,-0.015668357,-0.06440103,-0.025557172,0.06248512,0.004503821,0.023256699,-0.021178512,-0.046223033,0.016388102,0.061734866,0.025604961,0.045573227,0.07349606,-0.16121276,0.038902894,0.07771537,-0.042314406,0.04260663,0.0043618637,-0.04882994,0.041593216,-0.016945804,0.016826475,-0.059368335,-0.04569717,0.070461266,-0.031819306,0.056848016,0.025282908,-0.004459038,0.08010491,-0.027986392,0.0070876726,-0.02315788,-0.029392688,0.06985267,0.014087343,-0.013163485,-5.1551125e-33,0.022352066,0.014585003,-0.006132624,0.11827831,-0.004891909,-0.002164325,-0.015733777,0.0691134,-0.07816437,0.004820477,-0.024115402,-0.10360979,0.09571027,-0.059559014,-0.05466764,0.02840192,-0.04580947,-0.0024497993,0.00794464,0.018041091,-0.044107016,0.0003539671,0.0669982,-0.01953899,-0.0188066,0.04470259,0.014467807,-0.0050818184,-0.067438796,-0.032910775,-0.051019534,0.08356816,0.0012631099,0.038196385,-0.035994217,0.09227373,0.06504225,0.14550036,-0.013257254,0.09422732,-0.05980448,0.025496865,-0.01511906,0.007349915,0.082592785,-0.08591668,-0.0520914,-0.09349641,-0.01982519,0.0062217284,0.07436563,-0.0045576277,0.05331393,-0.0054255696,0.0007301954,-0.004629719,-0.0119145885,-0.12329001,-0.041857593,-0.048983727,0.058789916,0.12156008,-0.014133619,0.016598424,0.046181124,0.010916182,-0.04891267,-0.031992983,0.02159973,0.012572042,-0.03784541,-0.0031968397,-0.016469106,0.046986636,-0.039866075,0.058469057,-0.027933136,0.017247712,0.032820072,0.054449413,-0.102852985,0.017902244,-0.033698604,-0.05862409,-0.03143011,-0.0049352646,-0.091757774,-0.036137436,-0.017857455,-0.06181878,0.040179376,0.020595137,0.02596418,-0.028389728,0.031574506,-2.5418535e-08,0.009579828,-0.036137365,-0.01452361,0.033748966,0.14750034,-0.086252615,-0.045583718,-0.03125107,-0.07405208,0.035742436,0.010661514,-0.057846963,0.014816848,0.009758477,-0.01303444,0.029144412,-0.0134389065,0.05419607,-0.013257787,-0.047214713,0.012194597,-0.0023535874,-0.012274016,-0.07318239,-0.016926508,-0.004428609,-0.023223588,0.024888087,-0.095060356,-0.073688224,0.00041177426,-0.020639684,-0.04148817,-0.053048007,0.071453,-0.041200172,-0.012766442,0.007355287,-0.081679046,0.10800861,0.07979286,0.0002051467,-0.021517832,-0.04147471,0.039424732,-0.039160147,0.00095309364,0.00379024,0.047638413,0.14887185,-0.0034127657,0.08341459,0.0018837542,0.019688664,-0.003089557,0.06730518,0.004064276,0.004506147,-0.07893495,-0.019984642,-0.009064304,0.0066920146,0.00012561862,-0.04319686} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.797671+00 2026-01-30 02:01:11.65427+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2014 google ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE 1 t 2017 Go Karts Mar Menor unknown Mal, realmente mal los karts le patinan las ruedas, falta de ralentí, te tratan mal me parece muy malo esto mal, realmente mal los karts le patinan las ruedas, falta de ralentí, te tratan mal me parece muy malo esto 1 2025-01-30 01:52:39.833374+00 es v5.1 O1.01 {O1.03} V- I3 CR-N {} {"O1.01": "Mal, realmente mal los karts le patinan las ruedas, falta de ralentí", "P1.02": "te tratan mal me parece muy malo esto"} {0.056981236,-0.0067749186,0.004179643,0.0060647987,-0.05192246,-0.013239954,0.025385035,0.019519832,0.041987166,-0.023583371,0.027060913,0.047373414,-0.06614528,-0.018176489,-0.01972067,-0.032446627,-0.061099984,0.057305735,0.012834273,0.025313782,0.06795676,0.002869301,-0.056577787,0.05510709,-0.12515537,-0.03886729,0.056000333,0.00536617,0.0587508,-0.03936502,-0.014296683,0.06079938,0.049326327,-0.00088189077,-0.013080753,0.01123786,0.012904702,-0.06474941,0.016109748,-0.0046607303,0.017488787,-0.10012625,-0.044917293,0.013202086,0.01062154,-0.11008309,-0.015395193,0.028629618,0.018909331,-0.013195054,-0.06447675,-0.037815653,-0.05148735,-0.0033344366,-0.047100555,-0.07944226,-0.04926737,0.0013012293,0.1231678,-0.0100247525,0.04715792,0.059128225,-0.07736936,-0.0022063085,-0.017972795,-0.03209606,0.035150606,-0.03436549,-0.09240228,0.124108076,0.056781966,-0.027325964,-0.0021854737,0.06553415,-0.016117543,-0.020483004,-0.02235824,-0.029835632,-0.08902738,-0.014715457,0.031524066,-0.008052431,0.03507638,-0.007473633,-0.03799414,-0.085041925,0.029911969,0.029908841,0.07634851,-0.0011052585,-0.01624756,0.11254309,-0.014334143,-0.03788254,0.085064456,0.05291219,0.041982796,-0.14349122,0.04737241,0.038475696,0.039868373,0.009510355,-0.01602863,0.079008244,-0.046313487,0.034060754,-0.063529655,-0.07127754,-0.0134414,0.01572384,0.026393117,-0.00713447,-0.04944653,-0.08386548,-0.11429908,-0.043185815,-0.017433047,-0.08498208,0.013397525,-0.026664685,-0.012150696,0.038192157,-0.06264923,-0.028903661,0.061666932,-0.061455462,0.0252076,6.26108e-33,-0.012870958,-0.0029321953,-0.049330883,-0.05667235,0.07660283,-0.09153364,-0.025291506,-0.049619135,-0.03361801,0.04456011,-0.015521727,-0.055344734,-0.04082888,-0.050977908,0.052523915,0.110339925,0.051525187,-0.08235533,0.07337172,0.009115985,-0.051993385,0.054716967,0.05663266,-0.006286239,-0.038276386,0.04116792,-0.0070200856,-0.013176749,-0.07650648,0.015320945,0.029936973,0.04959564,0.03262592,-0.018376155,0.011618491,-0.033207327,-0.00857842,0.041384395,0.0076757087,0.010851257,0.094422355,0.0017359556,0.040441,0.04118335,-0.01097877,0.03055787,-0.008141362,-0.004781237,0.042376712,0.015392943,-0.089207254,-0.01059031,-0.14757596,-0.010024803,-0.0011074643,-0.01366431,-0.043183133,0.02377638,-0.042880904,-0.032783452,0.07573648,-0.027584055,0.055681795,-0.02387893,-0.019807229,-0.10271762,0.03999539,0.027741298,0.11435831,-0.023430731,-0.075084396,-0.011275005,0.031991612,-0.017731853,0.07678546,0.015403543,0.007884255,0.08676678,0.000559011,0.0019383697,-0.063718244,0.014546466,0.036813162,0.026468415,0.052575555,0.047195654,-0.001913577,0.0011279957,-0.020071516,0.062498696,-0.10617062,0.04073242,0.015386295,-0.050303318,-0.022398211,-8.236811e-33,0.0069015175,0.00339631,0.059804346,0.068913974,-0.030679507,0.014229491,-0.02183914,0.0051100687,0.019603116,0.044345394,-0.068206154,-0.038579952,0.043629277,-0.06825627,0.011377546,0.16493116,0.025802132,-0.06278114,-0.07924938,-0.07225074,-0.07623534,0.08175439,0.04273992,0.060866047,0.012618481,-0.09618518,0.10598144,0.048660774,-0.120115325,0.04846959,0.097194545,-0.088393345,0.042126134,0.06430707,-0.028822927,0.04679019,0.059356023,0.023369433,-0.030567518,0.044062704,0.028072583,0.059153967,-0.03205327,-0.02753719,-0.042356774,-0.03885129,-0.0048629944,-0.09164099,-0.04431017,-0.047712732,0.1412915,0.068976365,0.0011853811,-0.017786229,0.029176295,-0.00420156,0.028419742,-0.020332593,0.0055471454,0.010612531,0.013237527,0.0070610256,-0.026067156,-0.071027786,0.07785878,0.027754208,-0.06145071,-0.011324758,0.031340588,0.033192042,0.0056592925,0.017418304,-0.058529574,0.040163945,-0.08200676,0.0061956453,-0.053591885,0.035999075,-0.02385542,0.02610235,0.045132127,-0.06964424,-0.020794213,-0.007803934,-0.03688578,0.0163465,0.016686207,0.06131154,0.051965058,0.004330101,0.074633494,0.022386497,0.008845752,-0.089412935,0.011391997,-3.6521925e-08,-0.0018965196,-0.036452774,-0.15887904,0.0075913607,0.015108732,-0.03175217,-0.008752211,0.039116967,-0.047261305,0.09594512,-0.038194776,-0.042848375,0.008039908,0.044579934,0.02704273,0.09120793,0.020483749,0.07107849,-0.029645588,-0.041721817,0.017059624,0.018172683,-0.027580442,-0.017151663,-0.0057362854,-0.045558646,-0.009542548,-0.053041544,0.034067158,0.03328262,0.035461783,0.06271594,-0.04168835,-0.065780714,-0.066364795,-0.001256425,0.010241086,-0.064703904,0.0017390074,0.024066012,0.07727456,0.008884691,-0.07777253,-0.016983338,-0.10269469,-0.028833507,0.0032373257,0.036034055,-0.00596669,0.018724132,0.004559094,0.024510184,-0.010186665,0.036811277,0.051176645,-0.082431555,0.022403855,-0.0062956274,-0.037851952,-0.0023348033,0.08351988,0.0825438,0.07100681,-0.11058952} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.816324+00 2026-01-30 02:01:11.658623+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2016 google ChZDSUhNMG9nS0VJQ0FnSURnbzlqcVBREAE 1 t 2019 Go Karts Mar Menor unknown Muy buen sitio, lo pasamos genial. La pista bien, material muy bien, duchas, barra, el pack completo! muy buen sitio, lo pasamos genial. la pista bien, material muy bien, duchas, barra, el pack completo! 5 2018-02-01 01:52:39.833374+00 es v5.1 V4.03 {O1.02,O2.01,O3.01} V+ I3 CR-N {} {"V4.03": "Muy buen sitio, lo pasamos genial. La pista bien, material muy bien, duchas, barra, el pack completo"} {-0.06341733,0.025576899,0.028774558,-0.032100525,-0.024426432,0.039913595,0.09256746,0.04597336,-0.06146488,0.03623439,0.052674063,-0.057851374,0.04342395,-0.04907382,0.019554459,0.008820761,-0.031128699,0.07572359,0.014825062,0.034959864,0.0666688,-0.030827023,-0.025941132,0.14886989,-0.05371433,0.06351769,0.041762356,-0.02309714,0.016609104,-0.048564985,-0.055072363,0.10375961,0.09044565,-0.017576648,0.019531569,-0.006291798,0.040328037,-0.08255335,0.024693906,0.030207794,-0.046350162,-0.0015436698,0.04855922,-0.03207508,0.014084994,-0.07139922,0.014770088,0.010236061,0.03790161,0.0077187787,-0.019750966,0.05955428,0.03630909,0.039681762,-0.048792772,-0.029092118,-0.0046551633,-0.016133044,0.01848144,0.050211612,-0.0049941083,0.031319223,-0.061162956,0.014939589,-0.015519402,0.0324137,0.017851328,-0.0120553225,-0.105337135,0.093492046,0.04939365,0.024837181,0.010536251,0.04177715,-0.012694202,0.07178321,0.058240127,-0.04386642,-0.09934175,-0.08017278,-0.09625509,-0.018058259,-0.017939478,-0.017755272,-0.02483922,0.016207904,-0.0075609083,0.02360021,0.02020426,-0.06583445,-0.035791367,0.0845814,-0.054044314,0.044943605,-0.039814346,0.059315007,-0.038824227,-0.038479753,-0.012030532,0.005164968,0.08957348,0.084001094,0.091289565,-0.003121844,-0.12132364,-0.056465026,0.0349229,-0.07001051,-0.017765086,0.024645902,0.0030853946,-0.043732673,-0.024065971,0.023280146,-0.099811874,0.016287738,-0.024357177,-0.065423936,-0.026241116,-0.05266368,0.04388765,-0.011520447,-0.0025527216,-0.04128428,-0.017113298,-0.12203478,0.019349182,3.8608098e-33,-0.07146149,-0.0030487722,0.025081256,0.06652528,-0.009333239,-0.013402476,-0.060990628,-0.07795902,-0.12511738,-0.019262647,-0.080913894,0.06407955,0.006222491,0.08275416,0.0385517,0.022967586,-0.0065196194,-0.07263575,0.078082524,0.0062190876,-0.11619587,0.02332327,0.025255008,0.015530318,0.015384282,0.06589146,0.012932554,-0.0810906,-0.12569697,0.058908336,-0.019876624,-0.0012280934,0.061525572,0.016684186,-0.03938688,-0.019579807,-0.07872787,0.06923294,0.017836606,0.04682571,0.058824904,0.010642095,0.001965387,0.09749317,-0.057631813,0.051847357,0.05203361,-0.020915838,0.015352951,-0.014427997,-0.0003864867,-0.035154097,-0.09511448,-0.032952446,0.003401738,-0.07683341,-0.10307046,0.05816769,-0.05716705,-0.041613538,0.15332443,0.04724099,0.08267229,-0.014403326,-0.033996716,-0.008597088,-0.0075584888,0.07956908,0.12218406,0.012066135,0.0037730946,-0.058260765,-0.04324929,0.047211256,0.07331472,0.018618185,0.05992747,0.052243013,0.023881055,0.018804634,-0.05488463,-0.05515478,0.00046717032,-0.019711072,-0.059971463,0.06116145,0.052874893,0.07204944,-0.06491164,0.031856094,-0.022805825,0.026619364,0.107694075,-0.070468865,-0.045595586,-4.100343e-33,0.06268754,0.016558452,0.06427805,0.06846144,-0.020809045,-0.063774064,-0.0468052,-0.023935005,-0.019548142,0.0061402866,-0.014829788,-0.092413805,0.09107622,-0.057754327,-0.040394444,0.0840009,-0.011285982,-0.051005278,-0.03090284,-0.04266398,-0.031549625,-0.010764457,0.022286043,-0.032767627,-0.071877055,0.010713696,-0.039908778,0.012073004,0.001374408,0.028708516,-0.013890658,-0.015857613,-0.058864363,0.044641554,0.021135017,0.05889017,0.05038316,0.095771685,0.03632836,-0.022251995,-0.09236259,0.021744858,0.010455373,-0.003117188,0.004416161,-0.013055607,0.0128523735,-0.11609288,-0.08666081,-0.04131637,0.034395885,0.054895587,0.022016617,-0.009926438,0.018897602,0.02071252,-0.083689585,-0.045217548,-0.10670008,-0.03929899,-0.03105661,0.01695705,-0.037790917,-0.056100752,0.047415987,0.008245601,-0.026609527,-0.04868556,-9.436559e-05,0.0711178,0.045340676,-0.01528684,-0.057805832,0.033808064,-0.07189654,0.02309474,-0.06296409,-0.002754899,0.008547777,0.05771264,-0.02050469,-0.025221555,-0.05089393,0.005812237,0.01600343,-0.018440366,-0.0179284,-0.0017610604,0.04339236,0.01292366,0.05050029,-0.022801846,-0.054662973,-0.023751857,0.013488735,-3.119804e-08,0.0031798976,-0.06600562,-0.07247656,0.007824726,0.038392223,-0.021958075,-0.09483164,0.028370982,0.024482628,0.042201906,-0.051365975,-0.038915593,0.028983654,0.0751283,-0.02471059,0.102998376,0.008720627,0.12080551,-0.00037396105,-0.058762692,0.047187183,-0.01931475,0.013362589,0.028168168,-0.05230638,0.036177788,-0.025478398,-0.062309787,-0.019064168,0.0042258943,0.01835444,0.013691617,-0.05727006,-0.09023138,0.06730957,-0.010254305,-0.018474724,0.0016900657,0.011668846,0.04233239,0.10920121,0.0014471858,-0.034436807,-0.00042393597,0.028304162,-0.09844124,0.0047154934,0.044704787,-0.027189424,0.053581662,0.018396964,-0.0073765926,0.10102282,0.03051938,0.040854055,-0.004710362,0.037523996,0.009947748,0.055870425,0.04136301,-0.040248577,0.08702488,0.046198286,-0.061995003} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.850046+00 2026-01-30 02:01:11.669132+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2017 google ChdDSUhNMG9nS0VJQ0FnSURoby1IV3Z3RRAB 1 t 2020 Go Karts Mar Menor unknown Sehr nette Leute. Preis und Leistung stimmt absolut!! Sehr empfehlenswert! 👍👍👍 sehr nette leute. preis und leistung stimmt absolut!! sehr empfehlenswert! 👍👍👍 5 2026-01-30 01:52:39.833374+00 de v5.1 V1.01 {V2.04} V+ I3 CR-N {} {"V1.01": "Sehr nette Leute. Preis und Leistung stimmt absolut!! Sehr empfehlenswert! 👍👍👍"} {0.036685396,0.08325639,0.0537642,-0.02245887,-0.0043930025,0.08594556,0.063552566,0.07114821,0.016633926,-0.027129255,0.051404517,-0.048380733,0.03192095,-0.05908519,-0.08579081,-0.07428799,-0.04092934,0.0523008,-0.050496075,0.002510762,0.0029993895,-0.051605873,-0.021718588,0.005630643,0.038769975,-0.011059522,-0.09450865,-0.028231854,0.09228189,-0.04086415,-0.00038740787,0.012732034,-0.016949702,-0.0073398617,0.0122095905,0.00381151,-0.019486167,-0.11369245,-0.015481231,0.05752955,-0.10640442,-0.049231373,-0.10481834,-0.12856789,-0.05352639,0.04822558,0.058709368,0.014409425,-0.09570291,0.033712085,-0.0004409588,0.046976384,0.07922391,-0.010744792,0.047230545,-0.06393408,-0.009330386,-0.0109056365,-0.07663517,-0.026527325,0.0038494354,0.0061616898,-0.01733746,0.025347669,-0.019480938,0.011646978,0.014859325,-0.05678337,-0.035477076,0.06144746,0.010146335,-0.032001853,0.068099275,0.027461253,-0.039460544,0.008201987,-0.00055591814,-0.04608041,-0.015585033,-0.036999878,0.024054404,0.058584444,0.011618386,0.04046384,-0.007646265,0.015678557,-0.0008953124,0.005358675,0.011198925,-0.07467555,-0.06565664,-0.0108873155,-0.1331145,0.027704496,-0.025383916,-0.0031051354,-0.09041407,-0.069761306,-0.062448602,0.017951,-0.03887274,0.10472688,0.039401747,-0.0031374653,-0.108623855,-0.05002022,-0.06993621,-0.035937976,0.030502455,0.0026098103,0.03705984,-0.051528923,0.02946831,0.0049370374,0.081074014,0.0066148466,0.049503032,-0.11114834,0.0039055536,-0.07054753,0.07296026,-0.095363505,0.021156374,-0.000937718,0.048060436,-0.06587079,0.027461817,4.8045606e-33,0.022327268,-0.03399432,-0.0037852472,-0.022984529,-0.008859116,-0.0015986036,-0.08566833,-0.008347692,-0.11333633,0.11374817,-0.026167613,-0.032593478,-0.0083313,0.04090212,-0.045668956,0.001515208,0.030185398,-0.08233306,0.06194938,-0.033413034,-0.019773591,-0.013367369,0.032442205,0.032703657,-0.036024075,-0.08208693,0.044013076,-0.015542269,0.04413305,0.04988763,0.041942693,-0.060020175,-0.016063815,-0.025147207,-0.09381332,-0.05198969,-0.0958406,0.04545477,0.05225304,0.021312175,0.082218386,0.011458824,-0.053682495,-0.08040311,0.058315225,-0.034961272,-0.019545784,-0.009509943,0.08343232,-0.029289616,-0.014416018,-0.01417978,0.02402349,-0.03390434,0.038298637,0.004712722,-0.10791014,0.008096822,-0.030924777,0.08417365,-0.030627621,-0.060659338,-0.061373405,-0.0039307633,0.062789865,-0.008495209,-0.027751174,-0.0063164993,-0.02159534,-0.007370217,-0.074391626,-0.008879051,0.023397353,0.062918305,-0.0023796924,0.030421544,-0.0567835,0.13742411,0.050934397,0.09272457,-0.011846116,0.03929902,-0.0017418633,-0.05855401,0.05095826,-0.034949027,0.018804595,-0.067639664,0.039722912,0.094273314,0.03392074,-0.02927386,0.057767067,0.043231323,-0.0099174855,-6.451863e-33,0.03600765,-0.0028557503,-0.10381932,0.0072142463,0.004917727,0.027505275,0.051776275,0.048540846,-0.082188,0.05493477,0.06144791,0.042274997,0.011177676,0.0027110581,-0.015771119,0.0057605025,0.055917155,-0.0146219935,0.072453365,-0.0063485075,0.02537013,-0.027856115,-0.03701577,0.040091753,0.0066931504,0.048464954,0.08783567,-0.030427609,-0.1230532,0.011487436,-0.04008081,0.047291644,0.017638134,0.02790819,0.018998712,-0.0035724998,0.01333714,0.03093055,-0.03777346,0.048160657,-0.0185157,0.05111902,-0.012238974,-0.051574003,0.0836952,-0.030400177,-0.15138434,-0.058017954,-0.05768411,-0.040339917,0.012658242,0.027990296,0.11738114,-0.15730901,0.074811675,0.057641953,0.009114122,-0.04333901,0.007517796,0.044367597,0.059905276,0.0035596672,0.11529834,-0.0012305827,0.07650312,-0.06080612,-0.016454456,-0.016756713,0.07273335,0.0064194277,0.015822396,0.048235472,-0.012420402,-0.03226658,-0.06259227,-0.06478217,-0.030556668,0.112774715,-0.039927218,0.024531757,-0.09260389,0.032294802,-0.035048407,-0.029322177,-0.03707909,-0.004340208,0.006923562,0.013187383,-0.026954986,-0.017547486,-0.08298679,0.042414736,0.02221663,0.020268772,0.08134102,-2.9049753e-08,0.0013586888,-0.03894249,-0.031705696,0.014225157,0.06439494,-0.0865844,-0.024007624,-0.0059314244,-0.08756472,-0.05222468,0.005649563,0.05800946,-0.019566508,0.055513866,0.01891374,0.04393282,-0.008594585,0.010275752,0.011901199,-0.03178913,0.13546458,-0.036083408,-0.04529523,0.013078764,0.0038933812,-0.0046379967,0.024242036,-0.043401696,-0.073610164,-0.034502484,0.0105472775,0.045750514,-0.0013655905,-0.003622711,-0.06275938,0.03133904,0.03444869,0.09245651,-0.058356203,0.034992453,0.046666127,0.015766926,0.10256596,-0.034730803,0.0627457,-0.049369726,0.017907484,0.09554368,0.044932246,0.017485889,-0.057594087,0.0493591,0.025954632,0.05137227,0.046401847,0.0055407407,0.0031323894,-0.03139741,-0.0012734086,0.03980605,0.007424532,0.04291283,0.008351089,-0.020846814} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.862287+00 2026-01-30 02:01:11.671443+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2020 google ChZDSUhNMG9nS0VJQ0FnSUNyNkpqRlRREAE 1 t 2023 Go Karts Mar Menor unknown Increíble la experiencia, muy buen trato e instalaciones. increíble la experiencia, muy buen trato e instalaciones. 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.05 {P1.01,E1.03} V+ I3 CR-N {} {"O1.05": "Increíble la experiencia, muy buen trato e instalaciones."} {0.003596815,0.026157733,-0.015313186,-0.05701091,-0.06359176,-0.018505197,0.07435081,0.054861303,-0.0071074176,-0.0031905624,0.11229785,-0.009296952,-0.012594066,0.0023404895,0.0014264295,-0.01768132,-0.029214226,0.0064268718,-0.020182913,-0.011814856,0.05955155,-0.08459673,-0.033595912,0.074285775,-0.046686687,-0.018912258,-0.025750441,0.069055304,0.008835319,-0.06150917,0.036327373,0.078030765,0.073534615,-0.081803046,0.05276562,-0.023859058,0.04606098,-0.018367482,-0.009977808,0.018407691,-0.07143224,-0.04919213,-0.06305651,-0.096450076,-0.031564683,-0.098348536,0.041741412,0.03313038,-0.04973693,-0.04712896,-0.02121327,0.04431382,0.04167881,-0.00073789194,0.007617405,0.03270408,0.006061376,0.025246058,0.01832676,0.021200774,0.045123328,0.055570845,-0.04171039,0.04356331,-0.011478021,0.02535509,-0.0011774137,-0.0489731,0.01844294,0.0013515018,0.09239847,-0.15163662,-0.05958335,0.03683378,0.0037203452,0.044871703,0.017066326,0.049404137,-0.011744679,-0.050437067,-0.021653133,-0.0048620705,-0.055512197,0.007317,-0.016716596,-0.04492643,0.0473292,-0.05226779,-0.0036093446,0.028553683,-0.024015738,0.052718587,-0.09446003,-0.021287704,0.02597149,0.0119176805,-0.028054403,-0.062656574,-0.028819239,0.033373274,-0.019821044,0.022490108,0.12083536,0.07757942,-0.120404646,-0.069195,0.024347892,-0.12230539,0.0045040296,0.018573318,-0.074207366,-0.1246149,-0.031046249,-0.017608946,-0.038874052,0.021493234,-0.009330319,-0.008948908,0.020166898,-0.053393323,0.069655366,0.06956066,-0.011836708,-0.010701431,0.041036166,-0.043110576,0.021500545,4.5223857e-33,-0.00393997,-0.013432584,-0.04910698,0.108791895,0.03163745,0.041122798,-0.066600725,0.02781479,0.018915795,-0.05470913,-0.05412393,0.104161575,-0.00804282,-0.027535478,0.1510368,0.044502284,0.0027083838,0.08919041,-0.0064854207,-0.018687664,-0.04765098,-0.004148851,-0.024369486,0.049630962,0.031023534,0.033199385,0.010712427,-0.01596853,0.0150958495,0.033466183,0.1191502,0.018628681,-0.028734779,-0.052685004,-0.03081702,-0.011554878,-0.020335313,0.03809666,0.07082422,0.035438426,0.0081023555,0.01603624,0.041579038,0.0024859793,0.04890074,0.005534707,0.08905137,-0.0201171,0.08259214,0.0019669626,-0.014978801,-0.07308883,-0.015626367,0.006716883,-0.029955456,0.020353008,-0.054128148,0.0451643,0.03885106,-0.051813837,0.009987512,0.06927246,0.024972392,-0.012271537,-0.0034624517,-0.055149347,0.03816162,0.054691616,0.10651783,0.0050817463,-0.118371435,-0.041692145,-0.0047465255,-0.013286986,-0.024456074,-0.040120702,-0.09618038,-0.01875004,0.0032419418,0.036958616,-0.10596145,-0.059293605,0.010185206,-0.009348197,0.11350146,0.076933496,-0.043286018,0.039665867,0.01777872,0.09182684,-0.009914531,0.048767522,-0.023780478,0.024416525,0.03206826,-5.5592765e-33,0.0047873827,-0.05019031,0.013165914,0.016912447,0.015030485,0.06417569,-0.11181531,-0.028083073,-0.0020180424,-0.00025847863,-0.0740699,-0.10603661,0.096613295,-0.02808935,-0.052461904,0.055761974,0.0017721368,-0.02869595,-0.0660614,-0.049522284,0.024332665,-0.0005456078,0.05893233,-0.010013632,-0.033766408,-0.018176755,-0.015152507,-0.011305844,-0.0012072545,-0.007851157,-0.0018798009,0.053316608,-0.12164876,0.08163497,-0.045858707,0.04741316,0.06636745,0.11017296,0.030633418,-0.0018699531,-0.05023413,0.048135724,-0.03325361,0.0049115,0.0142551,0.016890569,0.029998051,-0.17203537,-0.043212477,-0.037793547,0.07514844,0.025478538,-0.035869744,-0.03876007,-0.05271998,-0.032955185,0.005141823,-0.043316554,-0.0889812,0.0077762716,0.078085475,0.0623064,0.014546579,-0.0325403,-0.0004049499,0.011834702,-0.0069828387,0.06408944,0.0013003435,0.028869197,0.0757309,-0.07958868,-0.047880076,-0.021805206,-0.054081082,0.035277966,-0.097714536,-0.052128453,0.00030557424,-0.04799264,-0.023106901,-0.05014377,0.021173595,-0.054635387,-0.05211793,-0.06503628,-0.06558605,-0.065600835,0.01047571,0.04912721,0.011314881,0.04769992,-0.0012567797,-0.03745003,0.0022451028,-3.00618e-08,0.052154362,-0.054536372,-0.011728991,0.037715573,0.10769424,-0.07996344,-0.096008465,0.120607436,-0.0021116214,-0.020124568,-0.069546156,-0.045335438,-0.049276255,0.08703674,-0.00884995,0.057636216,0.10380785,0.075935364,-0.02074334,-0.04951291,0.04535429,-0.031083979,-0.06847174,0.040464967,-0.003195965,-0.027264286,-0.0371006,0.030640159,-0.028528059,0.04632025,0.0014644007,0.013218634,0.07881991,0.009923455,0.030266117,-0.0040469817,-0.03688038,0.0028555857,-0.05960314,-0.070578784,0.08270688,0.045124397,0.018566875,0.00093881035,0.015597869,-0.08275938,-0.07294101,0.016152022,0.00572977,-0.012231227,0.023123084,-0.0013972686,0.017413178,0.091174215,0.042986542,-0.004895844,0.030712113,0.02675304,0.038819056,0.034689944,-0.006138124,0.074959755,0.09459058,-0.04855235} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.90415+00 2026-01-30 02:01:11.683553+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2021 google ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE 1 t 2024 Go Karts Mar Menor unknown Divertido. No parece peligroso. Relativamente caro. 12 euros por 8 minutos divertido. no parece peligroso. relativamente caro. 12 euros por 8 minutos 4 2020-02-01 01:52:39.833374+00 pt v5.1 V1.02 {} V- I2 CR-N {} {"O1.05": "Divertido. No parece peligroso.", "V1.02": "Relativamente caro. 12 euros por 8 minutos"} {0.049293175,0.11329381,0.027949471,-0.020605832,-0.05849999,0.010577656,0.037468318,0.11416664,0.09386607,-0.024754424,0.09377646,-0.064209655,-0.10624703,0.00291987,-0.0032529554,-0.09226255,0.011120124,0.041788973,0.007870978,0.06939303,0.06826539,-0.014470987,-0.0866594,0.11322665,-0.019512367,0.016432649,0.052756537,-0.043444388,0.0094516,-0.03781055,0.048104525,0.10913613,0.015197897,-0.033072297,0.02657791,0.0010159074,0.03670354,-0.0032487148,-0.006568132,0.02790544,-0.09450247,-0.042138863,-0.04441447,-0.072284564,0.03544153,-0.0036501717,0.025359398,0.118908,0.014575421,-0.029814674,-0.06307729,-0.0025359583,-0.025505634,-0.00624718,0.0054477123,-0.0418804,-0.018630717,0.013775822,0.06291032,0.051303472,-0.04762732,-0.0033492013,-0.08604592,0.04856191,-0.014451106,-0.043964136,-0.0054042693,0.0014216754,-0.09458734,0.098314635,0.11227776,-0.038217478,-0.002282079,-0.046887737,-0.014602317,-0.0033595755,0.04475361,0.032878738,-0.039065324,-0.028583264,0.052948665,-0.052596997,-0.052854344,-0.09083226,0.0417716,-0.04154101,-0.028406383,0.084403396,0.013493233,-0.059999686,-0.019062277,0.026582267,-0.03574315,-0.008947487,0.03396794,0.01670127,-0.045219243,-0.13294947,-0.008621267,0.037243843,0.045334913,0.054839864,0.027821932,-0.01811456,-0.050854925,0.052198138,0.02948414,0.030491924,0.022480307,0.012735599,-0.04406788,-0.008316913,-0.018918585,-0.10920731,-0.064163886,0.043709863,0.031078506,-0.11351927,0.072452895,0.036140367,0.019881995,0.053382583,-0.067895666,-0.0025030954,0.011969686,-0.054437667,0.08891982,2.4744845e-33,-0.08687337,-0.035657216,-0.059123714,0.030515034,-0.020062657,-0.0062822076,0.00026088368,-0.06387646,0.0044629136,-0.0399291,-0.0025991737,-0.049238496,-0.0076577235,0.027867505,-9.3957395e-05,0.01611269,0.07009854,0.06996482,0.0676568,0.031082772,-0.04742974,-0.016728714,-0.028995907,0.029044595,-0.018102283,0.06947204,-0.06561225,-0.0724639,0.013865961,0.033778615,-0.018751917,0.056807958,-0.057145547,0.030393975,-0.0072020604,-0.0029260865,0.04623318,-0.02040113,0.029959394,-0.054237984,0.05552818,0.03352481,-0.06699452,0.0050532995,0.062720716,-0.02217442,0.05793073,0.013124304,0.097138144,0.019406833,0.006918721,-0.023191439,-0.039912876,-0.06618066,-0.0032232073,0.027992336,-0.06432898,0.09730834,-0.007910643,-0.033433698,-0.011403058,0.07267628,-0.047406,-0.017612115,-0.055870224,0.03452644,0.010805812,0.037598483,0.114297636,-0.0036036675,-0.13998921,0.0096498905,0.009465717,0.06422096,-0.02794893,-0.031283297,0.024005678,0.020395776,0.05248317,0.041316528,0.008693541,0.007391278,0.045565743,0.011000225,0.11700552,0.11605171,0.04557889,0.07488234,-0.008155463,0.058689658,-0.017969746,0.01937538,0.011010059,-0.029082961,0.09115153,-5.076645e-33,-0.0054690856,-0.031845003,-0.0134630315,0.0724178,0.021112634,0.018439595,-0.059563577,0.050158583,0.020758126,-0.060994703,-0.13209897,-0.060312845,0.1215521,-0.05634282,-0.12285092,0.043450672,0.038977638,-0.044328943,0.00832119,-0.016156249,-0.0711634,0.054003328,0.057821598,0.0062996238,-0.03072686,-0.043141037,0.02059014,0.013717057,-0.043954454,-0.016272653,0.030700315,-0.03442779,-0.026691707,0.006879802,-0.011128238,0.044343166,-0.0663701,0.028450387,-0.031693593,0.10951158,-0.0651466,-0.0031446868,-0.018462582,-0.0029314293,-0.03626019,-0.0035918069,0.03869325,-0.11106705,-0.06732621,-0.038163107,0.04608339,0.026649622,-0.0064549395,-0.047046855,0.02363389,-0.07873078,0.020495493,-0.0951422,-0.06775842,0.0047529577,0.101264894,0.018002512,-0.06459578,-0.03952652,0.083510034,0.026119094,-0.11664016,-0.02121963,-0.0004367433,0.028172225,0.09622494,-0.0005625924,-0.0042740568,0.009733802,-0.051605057,0.04360227,-0.04143764,0.037099537,0.041024916,0.024717744,-0.083098635,-0.006223257,-0.027215408,-0.022195527,-0.007969698,-0.08137285,-0.059853163,-0.055490084,-0.0067711794,-0.008803572,-0.020705132,0.0009062036,0.043344736,0.0027596215,0.011686893,-2.599593e-08,0.043861747,-0.07969736,-0.016745038,-0.041148506,0.026607854,-0.02062991,-0.08658754,-0.013137743,-0.035964046,0.048141185,0.00068778667,-0.0330485,0.042914867,0.030889515,-0.10267369,-0.023840737,0.15697506,0.048771616,-0.03760694,0.009382079,0.097489364,0.006408886,-0.02578077,-0.062142484,0.043588575,0.055118896,0.006262504,0.05353204,-0.090433896,-0.10322539,-0.004779154,-0.006021201,-0.0013534452,-0.06324751,-0.01750796,0.05627016,0.012857682,0.06063519,-0.023069495,0.0004765609,0.045396898,-0.038159803,-0.060559224,-0.044790603,-0.0490271,-0.02368029,-0.022976011,0.0031214156,-0.010210825,-0.007270692,-0.04567484,0.027523553,0.024102697,0.0077713733,0.056552187,-0.0044659413,-0.010835096,0.02091314,-0.050220337,-0.02462405,0.016697166,0.08718102,-0.026673025,-0.017255843} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.917006+00 2026-01-30 02:01:11.689835+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2022 google ChZDSUhNMG9nS0VJQ0FnSURLcFoza1V3EAE 1 t 2025 Go Karts Mar Menor unknown Una circuito espectacular!! El mejor espacio para sentirte piloto!! Un personal a pie de pista excepcional!!!! una circuito espectacular!! el mejor espacio para sentirte piloto!! un personal a pie de pista excepcional!!!! 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {P1.01,O1.05} V+ I3 CR-B {} {"O1.02": "Una circuito espectacular!! El mejor espacio para sentirte piloto!! Un personal a pie de pista excep"} {-0.02352342,0.011106355,-0.056956075,-0.05562295,-0.05424145,-0.022998227,0.069750644,0.12093537,0.030869223,0.069823496,0.06822018,-0.0664353,0.0008913032,0.031116402,-0.020167673,-0.010847157,-0.046092965,-0.018352399,0.056660946,0.027992448,0.15087873,-0.059653513,-0.036197376,0.088250175,-0.08292152,0.05435183,0.018384678,0.00035975612,-0.04140293,-0.14902817,-0.041504793,0.09122799,0.03275719,-0.045188017,0.021711787,-0.008707966,0.03138509,-0.1026914,-0.031259056,-0.013076622,-0.096689865,-0.037510578,0.06469192,-0.031462748,0.025226237,-0.016480928,-0.0020192254,0.036864772,0.0012378758,-0.05615957,-0.0058205575,-0.0499051,0.045758314,0.01053735,-0.041775014,-0.015351526,0.017420564,0.04904348,0.060245793,0.012830814,0.037167158,0.02488494,-0.017110532,0.056090083,-0.06361091,-0.023498846,0.030575328,-0.085837804,-0.031523574,0.045260675,0.06040857,-0.06855023,0.09319074,-0.009239213,0.08264087,0.06536751,-0.0142935,0.016617458,0.019148935,0.017905362,0.047817674,-0.044953186,-0.111225024,-0.034068957,0.034677636,0.021282716,-0.0201362,-0.059497334,0.006225227,-0.08508198,-0.0936159,-0.02378817,-0.05115224,-0.05811611,-0.08829083,-0.07277238,-0.027137311,-0.057250906,-0.026996853,0.047463745,0.083032675,0.046658218,0.017654948,-0.013427751,-0.10040675,0.034759514,0.067323476,-0.001353435,0.0075062797,-0.018450635,-0.04364202,-0.014598714,0.0012130784,-0.018424993,0.011568962,0.06049893,-0.0100471,-0.036134098,0.04753872,-0.048370812,0.008775359,-0.042642355,-0.07732268,-0.0015543791,0.025806256,-0.047417514,0.034517724,1.8494925e-33,-0.051469017,0.06230315,-0.024907725,0.012146705,0.052799277,0.05922726,-0.0920122,-0.014295741,-0.020486018,0.025586547,-0.06787041,0.12877844,0.04744544,0.10420707,0.076346256,-0.013960139,-0.018723862,-0.05532775,0.06775306,-0.044103242,-0.05325637,-0.036446314,0.01733006,0.034196,0.011297519,0.06747379,-0.02936038,-0.08433037,-0.048594255,0.04358098,-0.017476583,0.096578345,-0.0074758935,-0.028593134,-0.007839015,-0.026508577,0.04075314,0.030859698,0.094349585,-0.021396434,-0.009726907,0.026274545,-0.0055966363,-0.020689376,-0.0068625994,-0.06092362,0.006702091,0.070834205,0.13105623,-0.0044539575,-0.07574391,-0.10364399,0.005821292,-0.05311651,0.058449652,0.0011593733,-0.0776705,0.047195088,0.009550605,-0.005649114,0.02868848,0.07349006,-0.006264786,-0.010030157,-0.044204313,-0.00026962752,-0.018615134,-0.054839693,0.08112443,0.046873,-0.05166079,0.013379945,-0.0058073304,-0.0054144273,-0.031432286,0.016628265,-0.067143634,0.021418007,-0.026719086,0.05894405,-0.052931566,-0.06325834,0.014058109,-0.042644233,0.05472386,0.111728795,0.07837429,0.019873163,-0.01180269,0.090210006,-0.044676136,0.033143036,0.089021385,-0.017873913,0.06649662,-4.326913e-33,-0.013079805,-0.011188963,0.02275201,0.015628273,0.015014496,-0.009648029,0.015998984,-0.05006109,-0.040217187,-0.03915372,-0.03322469,-0.0632222,0.0928808,-0.062294506,-0.015050968,0.032486707,-0.035118666,-0.07806405,0.007098031,-0.004522276,-0.019347358,0.047094963,-0.0401086,-0.015246948,-0.054702077,0.00987149,0.007095776,0.028372046,-0.042016868,-0.0055355253,-0.11019988,-0.00023645899,-0.0020605037,0.034392063,-0.027837764,0.055557378,0.10843946,0.071496375,-0.021294452,0.0017784648,-0.06076384,0.08285216,0.034052256,-0.046128325,0.012229899,0.010029367,0.0012727566,-0.06960162,-0.107997335,-0.012737627,-0.01659198,-0.10132302,-0.0052629346,-0.071905635,-0.005729465,-0.015771443,-0.022930479,-0.033604916,-0.07658421,-0.001762249,0.050837275,0.02015717,0.0071016853,-0.012768477,0.08143751,-0.009140646,0.024776056,0.028052336,0.093637094,0.032239944,0.11668308,0.06648044,-0.022165094,0.053042967,-0.039227664,-0.06667813,-0.08294592,0.0061469073,-0.01565343,-0.022023465,-0.028678175,-0.0066904174,0.017063228,-0.053459205,0.020977793,-0.038807366,0.012648975,-0.03572805,0.028075512,0.030206896,-0.009907318,0.068028525,-0.04723237,-0.031953413,0.07067421,-3.3440553e-08,0.029960645,0.011268079,-0.030948168,0.00078430533,0.07342115,-0.10830026,0.009363835,-0.10236483,-0.05752371,-0.03973328,-0.023901321,-0.03070402,0.041669104,0.07244882,0.05015646,0.10004619,0.064431734,0.12355207,-0.019529713,-0.0028668158,0.017663687,-0.028797532,-0.031126294,-0.047634136,0.033455677,0.036214937,0.0026671065,-0.0058838716,-0.031001778,-0.0297909,-0.102891475,0.0076347175,-0.021606559,-0.07908053,-0.020042928,0.010605083,-0.028500104,0.0073012053,-0.055799432,-0.044377893,0.017411614,0.07049301,-0.058866743,0.018467007,0.017598243,-0.07503922,0.012905153,-0.049303867,-0.025967339,0.10987588,-0.047978334,0.0066578006,0.052028697,0.0020699282,0.055707373,-0.0067770914,0.0642819,0.00837145,-0.051042408,0.04068065,0.01903262,0.08890564,-0.0012994452,-0.09674455} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.930477+00 2026-01-30 02:01:11.694248+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2009 google ChZDSUhNMG9nS0VJQ0FnSUM2OExlakxnEAE 1 t 2012 Go Karts Mar Menor unknown Una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {J2.01,O1.02,A3.01} V+ I3 CR-N {} {"O1.05": "Una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales"} {0.034955952,0.014987696,-0.0049412535,-0.001320014,-0.03400483,0.025245184,0.015555123,0.019496378,-0.012246545,0.028169243,0.09564958,-0.043435473,-0.047205653,0.01238949,-0.00018629554,0.009429368,-0.05991845,0.04389593,0.040655844,0.037319493,-0.023519238,-0.03847316,-0.030980824,0.057228934,-0.09454899,0.011995195,-0.008354109,-0.0033980529,0.0031440707,-0.06609974,0.028345516,0.13053708,0.06420319,0.0029000968,0.017248107,0.011390249,0.0903874,-0.0111886645,-0.0066387453,0.05650525,-0.11436716,0.024965573,-0.014693389,-0.037861314,0.0057552974,-0.07188618,-0.051078163,0.01765722,-0.0012258311,-0.023754781,-0.07477215,-0.053550433,0.020416742,0.042546768,0.004953753,0.025232464,-0.025528824,-0.086367436,0.06164398,0.01337371,-0.013550932,0.069706626,-0.08266584,-0.054959368,0.038291864,0.01884214,0.06480679,0.0018135689,-0.05314332,-0.011283956,0.12314103,-0.013434047,-0.04546877,0.02658097,-0.020130847,0.070177875,-0.020047795,0.0015181596,-0.07619254,-0.053521495,0.0027592985,0.02056354,-0.029340697,-0.068613775,0.0155481575,0.050443225,-0.070771486,0.024901034,-0.025911028,0.010580761,-0.088918895,0.036686063,-0.0028951939,0.03289268,0.014439597,0.030095855,-0.052830115,-0.14335914,0.0027040774,0.009675373,0.05272334,0.041677315,0.06994705,0.06594193,-0.09219456,-0.023280233,0.0327951,-0.06394247,-0.014780138,0.016048571,-0.030773496,-0.051992,-0.027399635,0.0024052653,-0.10788101,-0.0018422842,-0.0070167165,-0.040098622,-0.011627686,-0.08912055,0.044689115,0.07561209,-0.047193203,-0.006466685,0.01628274,-0.0632306,0.00821785,4.5285586e-33,-0.012281504,-0.010391696,-0.03105402,0.10810959,0.02636644,0.042383906,0.043809403,-0.06894662,-0.057992633,-0.072654314,-0.057536636,0.06797696,0.045330975,-0.028032985,0.025430864,0.0031417294,0.025963556,0.026268916,0.064540766,0.08492785,-0.05216912,0.0661278,0.0024624087,7.603315e-05,0.04362107,0.016318107,-0.046817932,-0.08559347,-0.047873136,0.050465435,-0.0057192277,0.0023123198,-0.064607136,0.017064828,0.010038123,7.445665e-05,0.06448842,0.018731505,0.017277278,0.030941455,-0.0066050477,0.008642919,-0.0025466604,0.012031023,0.013020704,0.022603594,0.051491458,0.01771463,0.038994905,0.020630766,-0.041626543,-0.049053002,-0.07276706,-0.10360774,-0.001206769,0.036848355,-0.077059396,0.06858058,-0.065782286,-0.09211132,0.09226975,-0.015348318,-0.0073502907,-0.081702776,-0.001100319,-0.015076026,0.03809551,0.04243335,0.19479567,0.0070252437,-0.09939426,-0.06770075,-0.04259726,0.005152394,0.036325388,-0.028174514,0.06490268,0.006791372,0.022804357,0.054181773,-0.081064776,0.068734825,0.004895217,0.03743632,0.045499012,0.05470021,0.059398375,0.0844487,-0.05300814,0.12324636,-0.0015979746,0.04798917,0.021075476,0.017454477,0.03331388,-5.7825803e-33,0.014521279,-0.026868472,-0.026703868,0.033708006,-0.021908054,-0.027782742,-0.024916757,-0.0037098243,-0.064557746,-0.078567706,-0.0951168,-0.10223479,0.14436316,-0.06378187,-0.08769456,0.027501088,-0.019616893,-0.023198998,-0.012079482,-0.017068699,-0.036305524,0.055715133,0.049786802,-0.022059035,-0.016087001,-0.03311218,-0.043815535,-0.0025852262,-0.06012889,-0.009056574,0.0357962,-0.005065433,-0.04344148,-0.010645114,0.016528828,0.076505184,-0.022871733,0.07582329,0.00859151,0.03969543,-0.08189535,0.087387264,-0.02403855,0.009196437,0.0036667332,0.048772987,0.047025718,-0.094836056,-0.0677482,-0.0025789933,0.06281811,0.012366536,-0.054816384,-0.06456027,0.031514995,-0.08191964,0.00089080894,-0.029317515,-0.049478088,0.030956168,0.09283115,-0.018223274,-0.081787854,0.04162922,0.046279296,-0.009006522,-0.03546716,0.009076478,0.044023223,0.034526736,0.08083713,0.006798963,-0.0083355,0.0053250627,-0.02149014,-0.038954146,-0.12157485,-0.045287162,0.029085815,0.011547421,-0.076666534,0.034525745,-0.019848896,-0.036364365,-0.023183491,-0.06106345,0.014574713,0.032653943,-0.015594891,0.014721225,0.0636331,-0.012401543,-0.048455298,-0.08142367,-0.018121447,-2.9521216e-08,0.050772976,0.050432414,-0.043710813,0.055709664,0.023649393,-0.08557884,-0.024862496,0.041396085,0.07238306,0.07914834,-0.07276847,-0.035936352,0.058784537,0.06629726,0.029795978,0.033050235,0.07857809,0.09027263,-0.027146991,-0.027503498,0.11650946,0.004814333,-0.06877037,-0.01717068,-0.07340671,-0.02976535,-0.0681235,-0.061956223,-0.06713309,-0.0005373771,0.004230817,-0.030152677,-0.04805983,-0.08532509,0.0042329542,0.012350527,-0.0064536193,-0.0067701666,0.016784038,-0.034758452,0.11333182,0.045924734,-0.020409636,0.019605717,-0.052129924,-0.091974914,0.05043075,0.029022088,0.00848077,0.045912232,-0.0036304635,-0.0434608,0.09320944,0.01956326,0.060567427,0.010106775,0.04207897,0.035984773,0.025507927,0.00881419,-0.006088163,0.13624662,-0.035336137,-0.045673594} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.736713+00 2026-01-30 02:01:11.644175+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2010 google ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB 1 t 2013 Go Karts Mar Menor unknown Muy buen sitio para si te interesa el tema. Buenos precios y un servicio amable y simpático. muy buen sitio para si te interesa el tema. buenos precios y un servicio amable y simpático. 5 2019-02-01 01:52:39.833374+00 es v5.1 P1.01 {P1.01} V+ I2 CR-N {} {"P1.01": "Buenos precios y un servicio amable y simpático.", "V4.03": "Muy buen sitio para si te interesa el tema."} {-0.04422438,-0.0020084828,0.0068521514,-0.032333437,-0.08653944,-0.04507275,0.031817947,0.0314018,0.009528919,0.036634937,0.03070792,-0.02964347,-0.01659435,0.022755628,0.032290813,-0.016365575,-0.028930137,-0.010816569,-0.006029358,0.059542116,0.123851515,0.021038532,-0.12498778,0.10322438,-0.06473452,-0.03164855,-0.0043277624,-0.024512002,-0.052856665,-0.018635154,-0.009450165,0.01874261,0.076308385,-0.0019392796,0.023581903,-0.023148341,0.08495394,-0.11852784,0.018125068,-0.03927508,-0.11411334,-0.051187433,-0.02514488,-0.04960444,0.03497595,-0.07144738,0.08557737,0.021039823,0.019128026,0.010096248,-0.09764534,0.005741917,-0.030796122,0.044049095,-0.014837412,0.061113987,-0.0054077506,-0.017367998,0.0341646,0.038264513,-0.074125364,0.045854714,-0.020164574,0.013062629,0.07033724,-0.0012107355,-0.012455026,0.012408376,-0.028280662,0.029371386,0.09768395,-0.04293698,0.03962826,0.05827697,-0.067998394,0.091223754,0.07644285,-0.016829886,-0.015782628,-0.024147838,0.028235931,0.0034908487,-0.04696468,0.014681499,0.0004909924,-0.058957607,-0.10823941,-0.0029357176,0.06671218,0.013429173,0.04714696,0.07550141,-0.09400791,-0.02848905,0.015677225,-0.004575727,-0.036354687,-0.0790051,-0.01189424,0.021738749,0.03388133,0.043840773,0.07540083,0.066770054,-0.061367072,0.014346265,0.021549929,-0.076590195,-0.0039840722,0.0961992,-0.042684488,-0.046200704,-0.08611028,0.011435324,-0.1687382,0.035973925,-0.014356362,-0.061839875,-0.0011988634,-0.09300992,0.04802052,0.058552314,-0.040692165,-0.023691867,0.021838643,-0.11645678,0.06709314,6.340019e-33,-0.07109957,-0.06851779,0.04521511,0.08056758,-0.023788355,0.0028291664,-0.02059641,-0.03911129,-0.01720613,-0.038770374,-0.057252303,0.057912912,0.06745243,0.0049581425,0.04315537,0.014419831,0.023518251,-0.028978815,0.060833327,0.037672874,-0.08632888,0.009418866,-0.027281877,-0.03465987,0.034033738,0.021989193,-0.053590927,-0.08452701,-0.012481412,0.09499435,0.011850428,0.03123709,-0.00095011014,-0.042584673,0.030766912,0.017614724,0.007962235,0.035199944,-0.014403139,-0.048977625,0.0071121715,0.05919505,0.007381491,0.043640595,-0.013784139,-0.04016719,0.026945261,0.08123133,0.08491249,-0.021342518,-0.022619423,-0.07259143,-0.091395035,-0.07283167,0.04376997,-0.02147005,-0.023311604,0.098936535,-0.008214976,-0.009730221,0.014366867,-0.068078294,0.042728808,0.04764028,-0.014091878,-0.02323153,-0.007932728,0.049630813,0.13486701,0.04838673,-0.06898722,-0.046333253,0.0028639792,0.0028017997,-0.0564944,0.029396422,0.011098574,0.02067387,0.005202445,0.0374671,-0.09565269,-0.022784794,0.04679011,0.0104887,0.09230353,0.035537895,0.015870178,0.095116235,-0.0347211,0.0038368849,0.040735364,0.10073822,0.031679295,0.016929498,0.007319728,-8.064214e-33,0.014615561,-0.002809767,0.048322123,0.06119319,-0.06692165,0.0072968393,-0.003506642,-0.054690987,-0.017761966,0.017110318,-0.093650445,-0.10209766,0.12932265,-0.060890723,-0.05880286,0.1026394,-0.01042133,-0.061547697,-0.040532935,-0.0002489024,-0.010404318,0.049174055,0.057527836,-0.05542626,-0.04892831,-0.08818913,-0.021694664,0.05164058,-0.06677279,-0.034699228,0.019118836,-0.08930365,-0.011296459,0.02948116,0.0012874744,0.106477775,0.040852383,0.01409454,0.06426724,0.024881206,0.027195232,0.017306324,-0.045702223,-0.043111376,-0.058279116,-0.023271907,-0.023440357,-0.09501237,-0.0013705305,-0.05399296,0.048051868,-0.03356139,-0.02252423,-0.028760774,0.03721177,-0.03703816,-0.1057942,-0.05364867,-0.12925372,-0.012980419,0.10958829,-0.016096227,-0.06601469,-0.02537931,0.07963795,-0.028351847,-0.009172002,-0.023194967,-0.0019341919,0.010073723,0.09521723,0.0016426014,-0.07358869,0.04091199,-0.06699006,-0.026407527,-0.01195089,-0.028863383,0.025547132,-0.008137755,-0.018440403,-0.008407574,0.025291272,-0.010370685,-0.040362373,0.04023339,0.0252639,0.028413666,-0.006796309,0.03313341,-0.010054883,0.027883386,-0.006440177,-0.073261514,-0.052630518,-3.4550727e-08,-0.011479517,-0.078615725,-0.0053239483,0.05365869,0.010292021,-0.008483132,-0.057790134,0.011575249,0.071082756,0.05365434,-0.02691152,-0.046141844,0.017787533,-0.024284836,-0.018418238,0.05093723,0.04906456,0.03966991,-0.022107506,-0.030351488,0.07546905,-0.01889531,-0.006585264,-0.0073437225,0.0020913335,0.024443025,-0.07707904,0.018957602,-0.014219031,0.020149734,-0.049055014,-0.0784084,-0.033004906,-0.085652515,-0.05063556,0.021172553,0.00022416592,-0.051439736,-0.033461608,-0.03038093,0.090224564,0.06472929,-0.0418898,0.011264931,0.061695345,-0.02904036,-0.020677207,0.08622238,-0.02307824,0.040064435,-0.02654069,0.0015426566,0.10725772,0.033701357,0.048048396,-0.0137820365,0.04308327,0.042695116,0.032038257,0.06393474,0.078337125,0.09093506,-0.02693142,-0.09156321} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.751137+00 2026-01-30 02:01:11.646638+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2030 google ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE 1 t 2033 Go Karts Mar Menor unknown Circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divertido. Emplazamiento y clima idílico circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divertido. emplazamiento y clima idílico 3 2019-02-01 01:52:39.833374+00 es v5.1 O4.03 {O1.02} V+ I2 CR-N {} {"A4.01": "Emplazamiento y clima idílico", "O4.03": "Circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divert"} {-0.013580831,0.018438488,-0.010603284,-0.098228075,-0.09749365,-0.08280414,0.075650446,0.17041187,-0.047608998,0.043599505,0.066594295,-0.02834023,-0.02513929,0.07198018,-0.07698345,0.04751725,-0.0023439494,0.07335402,-0.00060194696,0.012384814,0.06870614,-0.02483501,0.0065474785,0.0016203398,-0.15978889,0.036440108,0.037468705,-0.023904968,-0.05908076,-0.11925345,-0.005538026,0.047703356,-0.006966202,-0.08176469,-0.05862707,-0.04324323,-0.08310861,0.048855774,0.0059052077,0.04207031,-0.027979793,-0.05303192,0.044388115,-0.048700217,0.046184674,0.015075409,0.0033401311,-0.0034720607,0.05732091,-0.07390614,-0.06336605,-0.0548864,0.030355796,0.020081298,-0.008694099,-0.030473644,-0.09399322,0.0233106,0.043609366,-0.0044433116,0.025575606,0.026865354,-0.012524619,-0.029078424,0.0190501,-0.07329059,0.013629361,0.009366321,-0.0034129582,0.0037151177,0.09888873,-0.052687768,-0.009077239,-0.080649406,0.022500504,-0.06473756,-0.035226647,0.07688856,-0.002267161,0.0099977,0.023474477,-0.025559742,-0.08637848,-0.034054052,0.030538172,0.103662364,-0.02167518,0.065170154,0.026947204,-0.045733422,-0.014788186,-0.02956593,-0.11303858,-0.06417804,0.07024224,-0.009758629,-0.0074814497,-0.08518731,-0.03791007,0.052462127,0.033340547,0.023962751,-0.047866736,-0.011853413,-0.040125344,0.025064625,0.03702873,0.0039184205,0.03953009,0.02384981,-0.06601358,-0.0076927585,-0.04987809,0.015579399,0.02079667,-0.024815971,0.029200548,-0.0146619,0.036005624,0.015313957,-0.021304235,-0.0502522,-0.06929399,0.007992357,0.012340684,0.025305161,0.102535285,4.9099628e-33,-0.050353132,0.033205956,-0.10273747,0.037706055,-0.018452747,-0.024511468,0.011049209,-0.057486266,0.061689172,-0.03811754,-0.10005856,0.024128942,-0.018269151,0.09844051,-0.022503734,-0.05458397,0.03754706,0.011885579,0.09626729,-0.028787205,-0.0011457988,-0.07088072,-0.036851827,0.084202364,0.030150991,0.057502944,-0.033010263,0.007216339,-0.02401066,0.031551212,-0.06044639,0.07109276,-0.041151095,-0.033674516,-0.11110803,0.012509216,-0.028735429,-0.06539777,0.09067743,-0.002912829,0.02441549,0.011721519,-0.044143472,0.023044858,0.041044567,-0.03577886,-0.057216015,0.04167562,0.06407094,0.06642365,-0.031617895,-0.020771904,0.008958241,-0.08257456,0.055497207,0.010060178,0.018313609,0.027236482,-0.0027482086,0.121108234,-0.071750544,0.06818336,-0.052649923,-0.0047051525,0.005335842,0.05216882,-0.05468121,0.004762641,0.012662473,-0.06583136,-0.13036282,-0.09053963,-0.010583328,-0.033176836,-0.008158833,-0.022832813,-0.01455235,0.08312598,-0.037583802,0.010369161,-0.054300353,0.058744937,-0.0036406165,0.021987258,0.06485524,0.06001645,0.04357781,0.08461027,-0.043904096,0.055469107,0.057707224,0.07873356,-0.03485202,-0.06472735,0.06660111,-6.662239e-33,-0.05057937,-0.010943935,0.02364752,0.08082726,-0.00031660078,0.011210985,-0.020090424,0.0006441316,-0.007777701,-0.0055912696,-0.05378036,0.012186722,0.038259417,-0.04909808,0.0005921471,0.014833614,0.0038154363,-0.063413635,-0.001964922,0.0050337566,0.0057975543,0.07153587,0.02870435,-0.061215788,-0.02240448,0.0004932519,-0.014710124,0.0354918,-0.028035035,0.008023629,-0.039845068,0.0012719665,0.014407456,0.07871713,0.042681046,0.036796708,0.014254861,0.0062644947,-0.05458398,-0.025123928,-0.03222509,0.06471102,0.047446895,-0.010778301,-0.04050777,-0.019432563,0.031761713,-0.03561176,-0.0052787135,-0.03601154,-0.0105243735,-0.013055257,0.01989068,-0.11131203,0.050709434,-0.07932321,-0.0044433475,-0.082061715,-0.0318455,-0.06426009,0.082538776,-0.019330943,-0.029128117,0.01086737,0.01807619,0.0027583425,0.007293074,0.1018574,0.0276985,0.021368317,0.102163725,0.090635344,0.12348229,-0.049258463,-0.020638725,-0.009164017,-0.07540695,0.008516369,0.016017742,-0.04766317,-0.021100193,0.04097393,-0.046753455,-0.09422006,0.034931816,-0.010288794,-0.028995316,0.050069157,-0.009685259,-0.034952357,0.024091983,0.0024821514,-0.041267462,0.0042455764,0.023697384,-3.8000373e-08,-0.04171368,0.011735909,-0.033386357,-0.02997243,0.03241395,0.015326898,-0.038991433,-0.015724413,-0.012905628,-0.012120499,0.04732513,0.03878798,0.09899027,0.1311128,0.03355746,-0.0046531013,0.056602627,0.11269983,-0.027114537,0.051824342,0.06933881,-0.038081445,0.00094082754,-0.034318157,0.13007246,-0.046066888,-0.04803894,0.049971864,-0.052136693,-0.06331527,-0.019880975,-0.050007664,0.06580495,0.046423014,0.07071125,0.044090055,-0.042485353,0.07363824,-0.04640098,0.018840645,0.004413729,-0.07212872,-0.009986401,-0.013119306,-0.07604115,-0.047373038,0.027013179,-0.034486614,-0.07984412,-0.0034977295,-0.07609685,0.055676237,0.022642696,-0.03945012,0.038579993,0.02443198,-0.0672397,-0.030061146,-0.097011685,-0.022233909,-0.054365594,0.13011189,-0.03288466,0.009280921} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.086096+00 2026-01-30 02:01:11.721246+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2031 google ChdDSUhNMG9nS0VJQ0FnSURnNXB1OW1nRRAB 1 t 2034 Go Karts Mar Menor unknown Es un lugar genial para hacer unas carreras con los amigos y la familia. Tiene posibilidad de hacer reservas para celebrar eventos. es un lugar genial para hacer unas carreras con los amigos y la familia. tiene posibilidad de hacer reservas para celebrar eventos. 5 2017-02-01 01:52:39.833374+00 es v5.1 O4.04 {A1.02} V+ I3 CR-N {} {"O4.04": "Es un lugar genial para hacer unas carreras con los amigos y la familia. Tiene posibilidad de hacer "} {-0.0016640354,0.07468324,-0.048026156,0.0021419732,-0.026141252,0.027454633,0.039801653,0.006874893,0.01234049,-0.007397037,0.0967691,-0.0930164,-0.029918563,-0.07092504,0.03802623,0.011031604,-0.06798392,0.028997814,-0.044996027,0.012994258,0.0898311,-0.04285116,-0.04462293,0.06289395,-0.14121129,-0.042547137,-0.004525372,-0.020977866,-0.072022535,0.015814014,0.06666921,0.0022956317,0.08272568,0.035979286,0.010033162,0.034217265,0.016318059,-0.053812042,0.038421094,0.023911687,-0.077080406,-0.054753825,-0.021679517,-0.055416472,0.051523738,-0.111055635,0.010296987,0.049950287,-0.051669136,0.00989588,-0.052715812,-0.026050337,-0.0127576245,-0.026564052,-0.005714241,0.019929891,-0.04396223,-0.085172765,0.06478668,0.013339088,-0.03606635,0.08113653,-0.014737399,-0.024353385,-0.084361404,-0.031445052,0.0877316,-0.02288499,-0.014259997,0.050163157,0.041113164,-0.049261205,0.024638603,0.059723727,-0.01364726,0.009400316,-0.021021621,0.03144816,-0.08951201,-0.031514086,0.005090868,-0.04210107,0.011308367,-0.06709254,0.0013395923,0.061326284,-0.01822706,0.01383866,-0.0278983,0.03881381,-0.06725027,0.010887231,-0.034313973,0.017608713,-0.055054087,0.0050005065,0.023304177,-0.1132387,0.057094365,-0.007375786,0.054872327,0.070441134,0.08525595,0.058479853,-0.06619507,0.025242476,-0.012509101,-0.06578866,-0.03315799,0.017599257,-0.05819239,-0.012108584,-0.021335665,0.017948842,-0.059347376,0.034424253,-0.014442748,-0.045829628,-0.027988402,-0.07819023,0.029273268,0.037219416,0.010527049,-0.056052282,0.0060759503,-0.11023349,0.02997386,8.573151e-33,-0.0716099,-0.024178047,-0.00200844,0.09435434,-0.032770146,0.034519855,0.0053326334,0.0035396498,-0.01601374,-0.016103756,-0.012716918,0.016534416,-0.02712714,-0.033161458,0.004165663,0.027555963,-0.11144542,-0.017416934,0.0394164,0.05849692,-0.106176004,-0.025916008,0.002599532,0.015939308,-0.018086307,0.012235801,0.038538147,-0.042263918,-0.0023220717,0.05875794,0.007883793,-0.013580388,0.07396604,-0.08716629,-0.031821705,0.012947914,0.07405406,0.015877629,0.008874794,0.029239971,-0.011770539,0.009223186,0.0028460284,0.0061231605,0.0047963243,0.040178217,0.12203534,-0.04299029,0.04743328,0.034466494,-0.033503313,-0.09943129,0.011123592,-0.07063098,0.0154601205,-0.023074972,-0.048266828,0.0096383495,-0.06399276,-0.0883132,0.09566367,-0.09431312,-0.030319365,0.007754449,-0.058214247,-0.026895888,0.07041472,0.0020288664,0.08679984,0.061946526,-0.01978628,-0.029287027,-0.013977609,-0.047098387,-0.020242058,0.08935574,0.02823422,0.042228416,-0.007506208,0.053314682,-0.051441256,0.09008126,0.02218746,-0.023635762,0.133694,0.067476325,0.020759514,0.053269055,-0.031593617,0.07551705,0.020153396,0.033829514,0.020628853,-0.06667824,0.06488532,-9.6252475e-33,-0.0012613944,-0.023342565,-0.05176699,0.08480619,0.016071443,-0.03860547,0.035373744,-0.039837766,-0.011615221,-0.065170035,-0.10370313,-0.11476717,0.12299993,-0.09000802,0.019051295,0.03486044,-0.010643253,-0.049055792,-0.046365026,0.08507644,-0.018019853,-0.008079164,0.04147035,-0.028954614,-0.017673716,-0.043882694,-0.04611649,0.04465495,-0.07840217,-0.06380138,0.050812565,-0.0040240893,0.046940006,0.017570578,-0.0068564,0.014230103,0.0686323,0.05585683,-0.011061405,-0.020750428,0.02541821,0.042024072,-0.053787366,0.022862097,-0.022000127,0.09125144,0.023634845,-0.094316,0.012627915,-0.022534886,0.02303196,-0.016350282,-0.07332628,-0.05541794,0.08384763,0.023417853,-0.029108873,-0.08047012,-0.041155215,0.03133671,0.031528898,0.036629617,-0.05721805,0.011100561,0.054799646,0.0121037755,-0.039856657,0.023997482,-0.04642293,0.084126,0.11947705,0.014982369,-0.08796701,-0.026755206,-0.08516941,-0.0198602,-0.12694873,-0.032637764,0.04176436,0.046023097,-0.008024879,0.0014875407,-0.0198544,-0.08053144,-0.05177698,-0.05802389,-0.012750242,0.059782807,0.0017699873,-0.0040657893,0.027566068,-0.03658587,0.0029305418,-0.10329931,-0.037511345,-3.8532374e-08,0.012989841,-0.04674428,-0.022709507,-0.03447872,-0.010296426,0.0021233135,-0.011670754,0.023820657,0.053304307,0.039774735,-0.12348937,-0.02387864,0.008876608,0.06997258,0.017794693,-0.01851855,0.11592685,0.057448786,0.0048288903,-0.018487085,0.13659373,0.005650009,-0.0065016784,0.068782166,-0.026284354,0.035215974,-0.0119201355,-0.038979173,-0.030004613,-0.051870726,-0.01749983,-0.057797436,-0.037804514,-0.012890352,0.0147009,-0.039560758,-0.057354737,0.019838296,-0.0059232456,0.03375594,0.16357836,0.024207802,-0.022827322,0.023629662,-0.030230155,-0.023310449,0.013190158,0.018744247,-0.010955053,0.088331826,-0.054639854,-0.054840684,0.022921585,-0.036083948,-0.034904126,-0.038299054,0.09286294,0.077967785,0.031908073,0.026928183,0.11222631,0.07968577,0.05402009,-0.027976802} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.114549+00 2026-01-30 02:01:11.724847+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2032 google ChZDSUhNMG9nS0VJQ0FnSUNEMEpua05BEAE 1 t 2035 Go Karts Mar Menor unknown Un plaisir de faire du karting avec les enfants et le petit fils wyatt un plaisir de faire du karting avec les enfants et le petit fils wyatt 5 2026-01-30 01:52:39.833374+00 fr v5.1 V4.03 {O4.04} V+ I3 CR-N {} {"V4.03": "Un plaisir de faire du karting avec les enfants et le petit fils wyatt"} {-0.0730061,0.046580277,0.017128443,0.018834107,-0.0008359861,0.12152135,-0.0037902854,0.11989443,-0.00085023174,0.033518802,0.04536718,-0.06359484,0.026585508,0.0099260695,-0.06958222,-0.06015254,-0.06851268,0.0637455,-0.0340045,0.026499284,-0.04306145,-0.022397423,0.006778765,0.089856826,-0.09615074,-0.087235935,-0.017522437,0.0046135173,-0.003963106,-0.040177032,0.011770392,-0.016516382,0.01601113,-0.060933396,0.013378142,-0.038559746,0.003914093,-0.033554822,0.050270606,-0.04589765,-0.043809954,-0.040201515,-0.094408356,-0.041488294,0.009012016,0.024667725,0.03176664,0.0143301375,-0.09914644,-0.004247135,0.06495268,0.022224408,0.029129105,-0.009844862,0.05493701,-0.04907968,-0.07918889,-0.037946217,0.07644965,-0.04339237,-0.0088948235,-0.005959144,-0.02376783,0.032157004,-0.17458442,-0.025158707,0.02309111,-0.033787798,-0.011503144,0.043004107,0.12856482,-0.019251853,-0.017842123,-0.041364368,0.035996985,-0.0034694292,-0.05892388,0.028406948,-0.059652135,-0.111500174,-0.01423193,-0.09770001,0.0031512221,0.001142303,0.047819633,-0.10410108,0.04532885,-0.03452508,0.037058584,-0.016250597,-0.031988855,0.065586425,-0.14073086,-0.0020623442,0.001604921,0.054834507,0.007760621,-0.02820006,-0.02141889,0.051365837,0.042115018,-0.0043103546,0.04991322,0.06505289,-0.040657703,0.0015773979,0.011271708,-0.08329879,-0.0019639516,-0.024102937,0.024960184,-0.066777095,0.030534819,-0.01945079,0.02976755,-0.010873774,0.012637586,-0.032082,0.0023309747,-0.01681346,0.04985049,0.054200225,0.034173954,-0.011246829,0.006318076,-0.032760415,0.114167355,3.0896543e-33,-0.10190735,-0.058030013,-0.11865225,-0.014338994,0.009298868,-0.053376094,-0.050097123,-0.041499436,0.01902208,-0.026904026,0.06051765,0.038647328,-0.032438647,-0.09375946,0.011907569,-0.017688189,-0.060920812,-0.060975052,0.098432,-0.016494304,-0.018133724,0.03702926,0.04549015,0.070607565,0.050031595,-0.024378909,0.048049584,-0.029404126,-0.046740495,0.04175825,0.042639118,-0.0061824564,0.018687055,-0.00085809396,-0.00088310597,0.032439977,-0.02303905,0.05783596,0.012549885,0.036054865,0.001241595,-0.050846852,-0.01740353,-0.100239806,-0.068560705,0.06287895,0.026923407,0.044580385,-0.0049190335,-0.01731265,0.027458051,-0.021099111,-0.031040326,-0.02506131,0.008917132,0.027489513,-0.07692071,-0.00045192186,-0.0848923,-0.002827814,0.10523677,-0.018265346,-0.048938625,-0.0009452349,-0.11018156,-0.07675903,0.0025191621,0.032877937,0.011002623,-0.02413391,-0.043585278,0.013175905,0.056048162,-0.101224065,0.07658457,0.0048253695,-0.042577337,0.11092223,-0.116686985,0.039346255,-0.13170584,-0.03556715,-0.009456281,0.01113006,0.045321397,-0.08084386,0.016550586,0.0040593,0.04952642,0.034082416,-0.004455099,-0.013978426,0.03888188,0.026956722,0.115478806,-5.9557777e-33,-0.012309212,0.011182854,0.10518983,0.06805025,0.014727958,0.04594458,0.025232047,0.046974167,-0.0075179376,0.013388706,-0.07765693,-0.02295374,-0.0073785665,-0.07324555,-0.0029355849,0.009907105,0.035771664,0.008170286,-0.0087783355,-0.021006092,0.012172027,-0.070696846,-0.003392134,-0.049697317,0.058983434,0.0851027,0.0027386735,0.048473243,-0.0771465,0.033070892,0.033529162,0.002399682,0.0500169,0.03073033,-0.041031808,0.025754122,0.0823306,0.09857831,-0.04030671,0.07501308,0.038398225,0.06150849,0.04639725,0.050073214,0.036074594,-0.016813297,0.03336992,-0.045103848,-0.01239904,-0.028724745,0.081112675,0.055514805,-0.04762629,-0.00954739,-0.0019295331,-0.00077771506,0.017728992,-0.022451175,-0.054851465,-0.006325793,0.040567346,0.040325716,-0.033710845,0.015728813,-0.001125994,-0.0440016,-0.12334804,-0.060227815,-0.03353532,0.025200706,0.026201291,-0.022117896,0.016491042,-0.03385383,-0.007498377,0.052865602,-0.016731951,0.017975558,-0.022815466,0.04410602,-0.10812877,-0.004309925,-0.038665794,0.040184,-0.027950037,-0.069682546,-0.028153997,0.032608032,0.009154284,-0.104778334,0.045774404,0.03111776,0.10684327,-0.014594909,0.009555191,-2.7595352e-08,-0.025234723,-0.024984267,-0.18344003,0.06779375,0.021280237,-0.024951486,-0.049595524,-0.008178757,-0.03899987,0.08792737,-0.032218244,0.04844872,-0.0238364,0.03627562,-0.021234013,0.053716525,-0.039651375,0.0053012692,0.014665236,-0.028174078,0.047774747,-0.048129734,-0.048240572,-0.020155683,-0.10814128,-0.0048850593,-0.018907057,-0.08145116,-0.035014275,-0.040278252,0.0725105,0.055303,-0.055673108,-0.06858613,0.0010425112,0.009116269,-0.028011689,0.067027666,-0.017118264,0.09365216,0.034955077,0.037280664,0.02925675,-0.039583687,0.06417177,-0.052217532,-0.011627559,0.0790382,0.03116826,0.08904717,-0.046580438,-0.0008396206,0.049265653,-0.01742588,0.042910747,0.047266755,0.04622335,0.003368628,-0.07653135,-0.0138914,-0.017746806,0.023469329,0.100569226,0.026834358} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.124893+00 2026-01-30 02:01:11.727435+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2034 google ChdDSUhNMG9nS0VJQ0FnSURrcTUtZjZRRRAB 1 t 2037 Go Karts Mar Menor unknown Dia bueno de karts, perfecto para ir en familia y amigos. Genial atención y cumple totalmente con las expectativas. Un saludo. dia bueno de karts, perfecto para ir en familia y amigos. genial atención y cumple totalmente con las expectativas. un saludo. 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {P1.01,O4.04} V+ I3 CR-N {} {"V4.03": "Dia bueno de karts, perfecto para ir en familia y amigos. Genial atención y cumple totalmente con la"} {0.00015037459,0.039510906,-0.004061837,0.0054084817,-0.07352899,0.0364195,0.0008547591,0.04953364,-0.030593265,0.041109372,0.08959163,-0.04509399,-0.05496612,-0.039182253,0.021059038,0.015040498,-0.04398994,0.02303651,-0.0009311167,-0.022852479,0.055603985,-0.025375228,-0.0002782523,0.084796146,-0.09956414,-0.0017792617,-0.005123761,0.019813342,-0.0021011836,-0.0061306613,-0.04235892,0.029356657,0.0894804,0.014136381,-0.007503798,-0.032838292,0.020225286,-0.059919763,-0.0539227,-0.017676862,-0.07523949,-0.045926757,-0.06341551,0.014587307,0.012750162,-0.08249332,-0.0031891004,0.08265758,0.02946875,-0.030172065,-0.03931948,-0.08426637,0.023784716,0.017423173,0.02734063,0.00105802,-0.074772425,-0.05016445,0.14812422,0.04231364,-0.038025964,0.09063038,-0.08149312,0.0023239597,0.0021068396,-0.008818523,0.053042196,0.017500307,-0.07315635,0.069487184,0.094967455,-0.046761446,0.019277982,0.09856313,-0.004480184,0.036508337,-0.03506303,0.0039691282,-0.12630533,0.0032234925,0.0017599878,-0.010948903,0.009144255,-0.08857252,-0.008789029,0.045329567,0.020127626,0.012374162,0.0056464383,0.0014156428,-0.079148486,0.024115454,-0.09510402,-0.0015089579,0.005089894,0.024715537,0.0053878315,-0.12571758,0.053461567,-0.018306501,0.09538929,0.007792153,0.06348902,0.035309337,-0.04767492,0.03743048,-0.015879868,-0.05196415,-0.015965931,0.055639386,-0.06321567,-0.029650753,-0.041144535,0.010305794,-0.082476206,-0.055700004,-0.042281624,-0.030431515,-0.004278922,-0.04668551,0.06568655,0.05273701,0.0003229347,-0.02223787,0.011418249,-0.10450369,0.055387355,6.905568e-33,-0.06960579,-0.011713869,0.013046879,0.076359175,0.018165218,0.015585751,-0.028845493,-0.011003519,-0.0143461125,-0.027121808,-0.047987618,0.040671363,-0.008412046,0.019428043,0.032808267,0.040340733,-0.0071542114,0.0048443126,0.06819459,0.11361562,-0.055917904,-0.027622169,-0.008597657,0.024599804,-0.05037467,0.037071895,0.01958044,-0.044304136,-0.037249524,0.050655156,0.008019476,0.0031196927,0.0014967091,-0.06697245,-0.10890969,-0.07430063,0.07448019,0.038440213,-0.04596086,0.025690079,-0.0003674905,-0.0007272136,0.01831758,0.011778946,-0.009117669,-0.040968303,0.11551587,-0.014987292,0.070352726,0.03130803,-0.08523155,-0.09563144,-0.033464033,-0.07037643,-0.011447019,0.017986864,0.0007099613,0.074142925,-0.06027933,-0.05497644,0.0615585,-0.059525046,0.01004208,-0.06815376,-0.070929326,-0.03564384,0.06409996,0.025322048,0.10884355,0.025056945,-0.027614435,-0.06248221,-0.060399555,-0.029460385,0.024787981,0.021480002,0.028263306,0.08938894,0.007899833,0.008805994,-0.061157808,0.05098466,0.001043265,0.052859712,0.0884497,0.059433658,-0.010606292,0.071247816,-0.04169394,0.092177,0.032671973,0.05697482,0.03632223,-0.010220363,0.037353452,-7.413496e-33,0.0785149,0.045160163,0.036865067,0.1219136,-0.041015178,-0.031231733,-0.035435647,-0.007949291,0.021450091,-0.02843304,-0.08457477,-0.11918881,0.16677035,-0.072895974,-0.038367476,0.053461395,0.024496863,-0.045016967,-0.042225868,-0.039209425,-0.007698401,0.02644446,0.03790873,-0.054552622,0.030369489,-0.043587532,-0.01514446,0.03330402,-0.1331884,-0.02122462,0.031556908,-0.06705675,-0.04495206,0.014832978,0.030705903,0.037713636,0.06819196,0.098871544,-0.023266414,0.032831743,0.06100303,0.07629925,-0.058202934,0.028182527,-0.031617846,0.047034584,0.05486383,-0.10556318,0.07765332,-0.058475196,0.07854975,0.0599815,-0.024884807,-0.014141872,0.02704558,-0.049624603,-0.010232333,-0.076630145,-0.03066739,-0.0007471901,-0.014540827,-0.011883117,-0.06554666,-0.018579748,0.018083444,0.0004886493,-0.030390233,0.028508203,0.02750156,0.045875262,0.061263397,-0.022664426,-0.037042856,0.010726119,-0.07293032,-0.03418923,-0.0634881,-0.037710067,0.05168553,0.09738735,0.004881493,-0.034838077,-0.033209298,-0.028654685,-0.024405034,-0.06361261,-0.02818939,0.0015722767,0.001163323,0.024674725,0.06363746,0.01752754,-0.02421544,-0.010736715,-0.027153024,-3.501556e-08,0.07909983,-0.038171478,-0.08245383,0.016682649,0.03197557,-0.097625375,-0.022095228,-0.012281165,-0.0009901976,0.06007051,-0.12269453,-0.026637428,0.016099779,0.0821254,0.0054864995,0.02091269,0.09522189,0.10910929,-0.008629119,-0.019457929,0.084487006,-0.006197765,-0.039096676,0.008615022,-0.018475618,0.017217884,-0.00507718,-0.013250794,-0.007147408,-0.04172711,-0.016701419,-0.023130594,-0.07069628,-0.025832996,-0.041171048,-0.012718317,-0.021691704,0.050991274,-0.008606167,-0.023728332,0.1378372,-0.011022969,-0.00030572264,-0.029808953,-0.038042445,-0.0032964507,0.017587999,0.062028337,-0.025944661,0.044101488,-0.050014425,-0.062363222,0.052254133,0.004863914,-0.0071057267,-0.016110096,0.08250858,-0.0013312073,0.0470831,-0.010211636,0.067521594,0.13363226,0.0050141797,-0.06425913} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.147007+00 2026-01-30 02:01:11.733306+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2035 google ChZDSUhNMG9nS0VJQ0FnSUNNdm9QaGZBEAE 1 t 2038 Go Karts Mar Menor unknown Una pista perfecta para pasar muy buenos ratos.. Muy buena gente... Un 10 una pista perfecta para pasar muy buenos ratos.. muy buena gente... un 10 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {P1.01} V+ I3 CR-N {} {"O1.02": "Una pista perfecta para pasar muy buenos ratos.. Muy buena gente... Un 10"} {-0.058057863,0.01463836,0.0134408325,-0.0742356,-0.046590056,0.04311807,0.08557917,0.042717297,-0.002488718,0.05827522,0.073460996,0.05526235,-0.058891635,0.04769976,-0.0043922067,-0.021028252,-0.07903351,0.046449702,0.013418817,-0.028332718,0.06308132,-0.054414958,-0.046393234,0.06552372,-0.12277088,-0.046812117,0.0047929864,-0.054984137,-0.043707404,0.00024935,0.009314615,0.06465954,0.046190087,0.007803642,0.0059507433,-0.08178935,0.030531684,-0.023498321,-0.0121267205,0.058916662,-0.036964335,-0.024267418,-0.011316374,-0.02312516,-0.014832792,-0.08289674,0.095942765,0.034364622,0.06267503,-0.03643198,-0.055347588,-0.015366967,-0.05341321,0.00069459213,-0.032951236,-0.0049142144,-0.029523201,-0.074692614,0.02668322,0.006223685,-0.031170037,0.10027885,-0.08838037,0.025523126,0.009689921,0.03746737,-0.0046606143,-0.02655938,-0.08346589,0.04984742,0.11884489,-0.067939915,0.015370652,0.06266007,-0.0704903,0.02656899,-0.016863018,0.011133749,-0.08944525,0.0035267603,-0.007626931,-0.040728167,-0.055107534,-0.07666938,-0.0107082855,0.017856322,0.028340869,0.05627449,-0.014169501,-0.014643469,-0.054822322,0.126048,-0.0228382,0.016495567,0.014995479,0.045012765,0.018911898,-0.037834376,-0.086950935,0.047138076,0.09058218,0.09325204,0.038862005,0.033814367,-0.0422491,0.00024773192,0.08689713,-0.025416045,0.011075931,0.028942537,-0.014292763,-0.023080224,-0.043649565,0.0017030165,-0.027365403,-0.036702055,0.041631248,-0.064005144,-0.003007465,-0.055132724,0.027563287,-0.0010998794,-0.006022524,0.009897963,-0.05677657,-0.053995326,0.009386949,1.1231696e-33,-0.017775511,-0.019346893,0.0059342417,0.04657917,-0.038440935,0.06871389,-0.023679288,-0.07610319,-0.040619247,-0.0075437133,-0.07646385,-0.034336396,-0.021121945,0.026346933,0.017388195,0.056043815,0.03303138,0.011728275,0.09956249,-0.020195823,-0.0929878,0.014291476,-0.026430082,0.010327024,0.059561014,0.047082175,-0.06636737,-0.035961624,0.004499805,0.038529772,-0.026428616,0.08399878,-0.0019107669,-0.011093699,-0.036401127,-0.10276205,0.11789794,0.02268198,0.046386674,-0.012297079,0.044454444,-0.031649854,0.01168854,0.04394686,0.0872095,0.008244744,0.018946683,0.032537233,0.02529263,0.013851137,-0.099863455,0.01861097,-0.036787495,-0.040473644,-0.00015873615,-0.08197691,-0.019660838,0.054824583,-0.056977082,-0.0136298975,0.13207787,0.0039264043,-0.048368946,-0.078844495,-0.0498057,0.002219937,0.025517067,0.03717103,0.1466108,0.038415324,-0.03127441,-0.07905045,-0.06396775,-0.033002112,0.053321205,-0.019060878,0.082266994,0.045404263,-0.030607639,0.03952705,-0.026243009,0.08577016,0.032904476,0.044236135,0.048822355,0.08406203,0.06571062,0.028398778,-0.08071347,0.02522914,0.06251407,0.027562706,0.07561677,-0.0025550895,0.012621364,-1.2777749e-33,0.0013449158,-0.05338677,-0.015243658,0.098778844,-0.08285021,-0.010323164,-0.0248338,-0.03678672,0.017338576,-0.033681262,-0.044903427,-0.11887199,0.11973416,-0.07988528,0.018485306,0.08027212,0.025884453,-0.032301884,-0.050672088,-0.039540138,0.034093898,0.044285443,0.03213984,-0.01635544,0.020931333,-0.061561916,0.027613081,0.0490409,-0.058174998,-0.014666849,0.04803417,-0.068985656,-0.04387195,0.035328086,-0.018970143,0.00076531345,0.06264051,-0.005005744,-0.023597628,-0.0026505678,-0.021814074,0.016394679,-0.059123874,-0.025745764,-0.037310302,0.010959778,0.03527771,-0.055118617,-0.08867954,-0.014424225,0.08842019,-0.07079334,-0.011744197,-0.018721046,0.039824378,-0.057688475,-0.03146921,0.03685815,-0.022992952,-0.026942294,0.029125975,0.026920693,-0.095948555,-0.020410992,0.025227321,0.008955313,0.014879243,0.038345747,-0.032395985,0.09722543,0.062332172,0.035102922,-0.08050901,0.022150815,-0.049702615,0.014117538,-0.020707848,0.035331655,0.019472348,0.022995183,-0.034974836,0.0023523043,-0.029452588,-0.010928407,0.026112596,-0.017636543,0.040562764,0.044854466,0.044933986,0.08366738,0.069159426,0.004475303,-0.050764468,-0.07393656,-0.029872026,-2.358025e-08,-0.018011477,-0.008586928,-0.06415518,0.0061394833,0.05950061,-0.054901484,0.052803606,-0.0060260044,0.05203172,0.046872612,-0.033230565,-0.09008013,0.025872137,0.11499634,0.020097123,0.04239481,0.07772415,0.11495452,0.005417562,0.0018965609,0.028607678,0.07607793,-0.034201395,-0.035268255,-0.028626176,0.013960149,-0.037596986,-0.025240479,-0.08679558,0.035078473,-0.008474715,-0.061127458,-0.07501951,-0.09717148,-0.03099626,0.03117422,0.024097959,0.017672919,-0.019270658,-0.072456695,0.09492148,0.04026146,-0.011579313,-0.014174061,0.0010233467,-0.11184702,-0.0066350563,-0.012640893,-0.015513566,0.02024419,-0.004454082,0.09323828,0.086553395,-0.007107719,0.014674159,-0.09744936,0.035556942,-0.0055100913,-0.0019464537,0.06797136,0.09167579,0.1652268,-0.059678145,-0.030897422} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.158506+00 2026-01-30 02:01:11.736483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2038 google ChZDSUhNMG9nS0VJQ0FnSURKLWMyYVJREAE 1 t 2041 Go Karts Mar Menor unknown Para grupos es genial,más de 10 personas,muy buen precio. para grupos es genial,más de 10 personas,muy buen precio. 5 2024-01-31 01:52:39.833374+00 es v5.1 V1.01 {O4.04} V+ I3 CR-N {} {"V1.01": "Para grupos es genial,mas de 10 personas,muy buen precio."} {-0.0042297486,0.015906515,0.0016959944,-0.02378674,-0.07347281,0.07495847,0.04269582,0.06667659,-0.03471438,-0.025559418,0.07159366,-0.06737474,-0.030999206,-0.0332894,0.0046640206,-0.008315553,-0.05069356,0.08143978,0.013014791,-0.054870933,0.049493883,-0.051131032,-0.035684813,0.057813134,-0.04956209,-0.040571827,0.006118074,-0.009354101,-0.032200202,0.00468019,0.054221023,0.07524396,0.11684696,0.051146023,-0.0012467587,-0.010414204,0.05978926,-0.010637192,-0.015029747,0.08182218,-0.08114115,-0.052402627,-0.068127975,-0.07094056,0.04843058,-0.07157485,0.02311163,0.07323717,0.038074587,0.01465069,-0.0141640175,0.02750492,-0.010950731,0.029184392,0.04454778,-0.05063464,-0.028597608,-0.09084191,0.026788967,-0.034309946,-0.036588296,-0.033335794,-0.08559635,0.014376886,-0.022649975,0.072648615,0.028631438,-0.021353142,-0.05310356,0.01806825,0.11352275,-0.1104148,-0.00021010773,0.060627297,-0.03384625,0.026349058,0.0382864,-0.033283383,-0.053172827,-0.048884336,0.023654781,0.0030609418,-0.040551953,-0.061428174,-0.021547861,0.012109109,0.038636282,0.027028432,-0.046921737,0.012532523,-0.101293504,0.12588517,0.011994114,0.029798537,-0.040326256,0.055144206,-0.0023221772,-0.078612685,-0.006048748,0.040653706,0.030183913,0.03521634,0.11781894,0.05623204,-0.08661201,0.0021628677,0.08461662,0.009812068,-0.026252776,-0.0017835418,-0.023103755,-0.0033029432,-0.100991026,-0.0037079968,-0.0054034255,-0.07636512,0.03983764,0.018217739,0.030745797,-0.08752403,0.06391645,0.008270219,0.037810836,-0.0029104538,0.015298878,0.052417673,0.004665817,6.4708544e-34,-0.06355992,-0.07512061,-0.0033159805,0.09664107,-0.02896975,0.0036769193,-0.052276567,0.046481296,-0.049685106,-0.04219363,-0.023630839,-0.019992387,-0.0030213872,0.054765705,0.05908613,0.0009383315,-0.007386175,0.03707305,0.043103047,0.015177628,-0.07678031,0.02179282,-0.020871125,0.04140619,-0.027733028,0.08873286,-0.027155172,-0.059489656,0.026260406,0.051246658,0.04183146,0.00436037,-0.007815498,-0.041870367,-0.06751335,0.071143545,0.10271429,0.017822126,0.02936668,-0.0030543068,-0.012393637,-0.004369242,0.03142443,0.009546914,0.01907124,-0.03476406,0.07691842,-0.009354397,-0.02543083,0.0644379,-0.095313266,-0.018725915,-0.06753543,0.033838037,0.081979424,-0.030611727,-0.04227855,0.009446318,-0.019354973,-0.022889663,0.08007765,0.026570538,-0.018456897,0.028924368,-0.013675011,-0.039236274,0.079707325,0.063544594,0.17596908,0.017998273,-0.030437853,-0.038866177,-0.04518988,-0.021931695,-0.06538281,0.06408419,0.041824207,0.041307617,-0.026544767,0.09944229,-0.03820993,0.055855326,0.015309618,-0.009884175,0.09133334,0.08439157,0.012502245,0.002006867,-0.08879272,0.030078854,0.013766933,0.018750804,0.05973692,0.02822542,-0.057298284,-1.7211614e-33,0.023032377,-0.019029995,-0.015509012,0.023418978,0.016439097,-0.008514317,0.034802355,-0.016031614,-0.06590132,-0.024020012,-0.08778402,-0.09527244,0.17373586,-0.11948131,0.0013019961,0.07525372,-0.004311113,-0.015041833,-0.04741161,-0.0272573,-0.0010723908,0.055998698,-0.010793787,0.0151485335,0.0045174793,0.0036210127,0.010854078,-0.035226345,-0.07139665,0.011928365,0.03795125,-0.025899822,-0.014023887,0.038064115,0.020444017,0.057428792,0.028355733,0.104196936,0.0010767211,0.030344293,-0.009680406,0.07302479,-0.0579578,-0.025614966,-0.0566817,0.08893716,0.02804453,-0.12307095,-0.04176104,0.023752216,-0.031954158,-0.040170185,-0.03757792,-0.092398286,-0.016189255,-0.10251254,0.01650529,-0.029994233,-0.025853995,0.01285882,0.057809297,-0.0025517344,-0.020563504,0.013007392,-0.004754581,-0.027120274,-0.07058448,0.048066538,-0.09868038,-0.006512553,0.03479731,-0.06533919,-0.035822887,0.011522161,-0.107615896,-0.064316764,-0.11371157,0.021301463,0.06092459,0.02922745,-0.013838059,-0.017273346,-0.069631904,-0.011031725,-0.03432762,-0.04241747,0.026726065,0.055477943,0.047160722,0.08422383,0.044579376,0.019895667,0.0006526493,-0.09114833,-0.02659417,-2.3657217e-08,0.016478987,-0.054738678,0.01680564,0.019678343,0.043551132,-0.028469319,-0.09667611,0.022280002,0.06850124,0.06924955,-0.06372628,-0.037113734,-0.05096175,0.09572946,0.012433594,-0.025122413,-0.019705663,0.02633616,-0.01616452,-0.035873268,0.07248674,0.05377257,-0.05807188,-0.048474036,0.054279737,-0.016048254,-0.051161665,-0.032506973,-0.05200849,-0.019532321,0.0140377255,0.008445135,-0.15224956,-0.017627329,-0.02876768,0.014251348,-0.041358504,0.06323901,-0.0073077227,-0.011999015,0.06484692,-0.042168282,-0.018065093,0.020989811,-0.030674074,-0.051534023,-0.03588868,0.02235309,-0.035102334,0.010243722,-0.026613789,0.002251172,0.059307244,0.028250717,0.017292012,-0.031473454,0.057181817,0.033858456,0.080162935,0.02290783,0.059079573,0.13271563,-0.025353506,-0.078983836} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.194128+00 2026-01-30 02:01:11.746341+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2039 google ChZDSUhNMG9nS0VJQ0FnSUM2NDZETkxREAE 1 t 2042 Go Karts Mar Menor unknown Genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {E1.03,O4.04} V+ I3 CR-N {} {"O1.02": "Genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones"} {-0.07114825,0.0329097,-0.039374396,-0.08970704,-0.052894864,0.022952763,-0.007978482,0.06578673,-0.030814499,0.008904288,0.07322374,-0.043037564,-0.026022192,-0.039076183,0.015777761,0.039251048,-0.053002734,-0.020688519,0.028344236,-0.01253822,0.024650007,-0.07713087,-0.04362041,0.026030643,-0.115278125,0.07850558,-0.017453466,-0.0119303325,0.023106819,-0.032211974,-0.0017298637,0.077934,0.03853901,0.0049380763,-0.013991308,-0.00061698776,0.0933306,-0.025043756,0.014068672,0.04170426,-0.0050836275,-0.017392721,-0.017054275,-0.06717038,0.013647489,-0.073839955,-0.009200538,0.028929468,-0.01801946,-0.004456164,-0.049419336,-0.011010336,0.020277053,0.051079545,0.0024990733,-0.051155638,-0.005898764,-0.04116704,0.025752682,0.028780214,-0.03548449,0.07998121,-0.07543694,-0.044383343,-0.0062264614,-0.022875546,0.024722284,-0.06307147,0.05305027,0.01121185,0.01079358,-0.039762307,-0.053178128,0.020655556,-0.037020784,0.08195496,0.038663294,0.07422322,-0.10923687,-0.06108882,-0.08190133,-0.029568601,-0.0075831795,-0.03618524,-0.07661977,0.05023107,0.016541969,0.024974514,0.0670838,0.0042796046,-0.01848306,0.10011173,0.0050843568,-0.025190221,0.0032491374,-0.010163019,0.014186484,-0.14290068,-0.045196034,-0.0120042525,0.06541113,0.019233553,0.066125736,0.018940972,-0.084027976,-0.06430457,0.027952788,-0.075197056,-0.026966112,0.057671905,-0.07447944,-0.082593784,-0.011424907,0.022565767,-0.12939955,0.019122409,-0.015978709,-0.07921882,0.030495968,-0.075876,0.047474384,0.022497747,-0.008296845,0.018439228,0.0017621856,-0.10989991,-0.0071609695,1.9376658e-33,-0.080798835,0.05427353,-0.010719293,0.083575375,-0.0012973073,0.063738175,0.015574257,-0.035849303,-0.01113236,-0.044706523,-0.09321574,0.05327045,-0.04970802,0.010269203,0.0640447,0.03138609,-0.037960388,0.017266061,0.014594956,0.037475154,-0.039795965,-0.0021499551,0.035270173,-0.0015374805,0.051613126,0.053545177,0.056553986,-0.016852416,-0.054605056,0.030999854,0.00867482,-0.027704453,0.05037342,-0.028122192,-0.02405797,0.018743915,0.048657857,0.0078913905,-0.0038826896,0.095654055,0.0095749255,-0.018047052,0.06186111,0.044105593,0.011765915,0.0004957866,0.08803503,-0.06962996,-0.0039470354,-0.021484971,-0.08423529,-0.05011671,-0.048642118,-0.022769343,-0.04852805,-0.035525203,-0.068404846,-0.038963836,-0.036496915,-0.07408699,0.085937604,-0.01165995,0.06558662,-0.020378487,-0.030178266,-0.07835487,0.043153856,0.098624624,0.14859053,0.050894175,-0.015418163,-0.087562226,0.019401208,0.0072503705,0.020598086,0.05823547,0.006306824,0.053850338,-0.029854411,0.045888655,-0.014556741,0.032652777,0.022436347,0.011861184,0.09143719,0.046859853,0.017008357,0.11405453,-0.10385403,0.050685294,0.02264076,0.081463665,0.042375818,-0.02547005,0.03610001,-5.2604324e-33,0.027415698,-0.056654412,0.02436364,-0.017438596,0.021010315,-0.023461988,0.0020764298,-0.034809332,0.025489582,-0.007631318,-0.10714954,-0.093794815,0.15437426,-0.023815794,-0.01778114,0.09320896,-0.018847454,-0.041285794,0.0002014009,-0.013765411,-0.06204211,0.032228213,-0.0011517992,0.07735941,-0.016895488,-0.07687616,-0.005688266,0.018262783,-0.0913294,-0.025517961,-0.014040573,-0.03786018,-0.024441982,0.04765377,-0.011074815,0.04444479,0.11630466,0.13200285,0.024633406,-0.027980072,-0.017518228,0.031177474,-0.02597328,-0.028093794,-0.013711137,0.035994276,0.043973498,-0.11995073,-0.06489564,0.025593918,0.09731539,0.009677072,0.0015930397,-0.050514672,0.056658868,-0.035388358,-0.055001143,0.00070384715,-0.07199349,0.047176074,0.048220348,-0.02660921,-0.037909247,-0.05455601,0.0019356118,0.0012800604,-0.020813614,-0.01468331,-0.023046117,0.062033176,0.07173591,0.004296386,-0.036434546,0.011904277,-0.024048219,0.006906717,-0.05548832,0.009518911,0.04706163,-0.03647554,-0.029955914,-0.04528494,-0.014086785,-0.046568982,-0.032994226,-0.12874788,0.024361001,0.0037794586,0.0072048125,-0.011474482,0.008572659,-0.006673549,-0.057044726,-0.064538546,0.010889858,-2.793417e-08,0.07696398,-0.022447383,-0.05645641,0.028548276,0.0002665288,-0.023956392,-0.046588503,0.08184776,0.0067035747,-0.011680422,-0.10205396,-0.021453692,0.037923694,0.06609856,0.01332326,0.03845837,0.048545435,0.12120631,0.0044093523,-0.020738818,0.07937437,0.017918738,-0.007277482,0.02331189,-0.02150881,-0.0047478643,0.014115308,-0.02975348,-0.0675518,-0.014594356,0.012014665,-0.035768546,-0.039738238,-0.062788755,0.030694744,-0.031083414,0.022455195,0.07482152,0.056869913,-0.043999944,0.13909426,0.05821936,-0.104025826,-0.034813937,-0.028816866,-0.056004163,-0.050035495,-0.025842529,-0.034569886,0.02559807,0.0044229073,0.030206617,0.0693101,-0.014802689,0.07082843,-0.057916615,0.03543898,0.021227542,0.020889876,0.062238075,0.046399683,0.12762436,0.13113292,-0.035205666} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.204781+00 2026-01-30 02:01:11.749207+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2040 google ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE 1 t 2043 Go Karts Mar Menor unknown Muy divertido el circuito, personal simpático y aunque los karts están muy usados mantienen la emoción muy divertido el circuito, personal simpático y aunque los karts están muy usados mantienen la emoción 4 2026-01-30 01:52:39.833374+00 es v5.1 O1.03 {O1.02} V± I2 CR-N {} {"O1.03": "y aunque los karts están muy usados mantienen la emoción", "P1.01": "Muy divertido el circuito, personal simpático"} {-0.044811144,0.025301164,0.018446902,-0.05923956,-0.07402567,-0.007536997,0.08409704,0.09263868,0.014150339,0.015204025,0.10088902,-0.008874907,-0.019436583,-0.0025326207,0.05312182,-0.00038536626,-0.030421207,0.042580854,0.021987895,-0.01303675,0.09425047,-0.04671652,-0.061426923,0.071354195,-0.113100775,-0.011475392,0.019947845,0.015476272,-0.039857224,-0.10153504,-0.029776866,0.08529585,0.072442874,-0.05154715,-0.041396834,-0.044999737,-0.0476576,-0.049250998,-0.027463319,0.0016694184,-0.08500553,-0.08699039,-0.004085677,-0.02945098,0.017903952,-0.021158878,0.003555855,0.012551652,-0.026687494,-0.040308196,-0.030594029,-0.041240145,0.046008304,-0.006951857,0.020272871,-0.073482364,-0.07691304,0.07559769,0.12198466,0.079248235,0.027980335,0.030018907,-0.043665156,0.05891132,-0.019303981,-0.03025014,0.048113246,0.012297205,-0.022970442,0.06964159,0.12835138,-0.109081954,-0.009200268,-0.039572537,0.03333462,0.021127008,-0.05672996,-0.025078354,-0.036127474,-0.011473979,-0.0005289644,-0.015898032,-0.011759677,-0.06290322,-0.013183522,-0.011783448,-0.045449957,0.031074075,-0.013162932,-0.027831761,-0.009159827,-0.017547827,0.012576082,-0.069307305,0.03078159,-0.026955534,0.015211844,-0.047381904,-0.034208816,0.051037543,0.07038395,0.04896084,0.01924819,0.055634405,-0.056408778,0.05341393,0.004399647,-0.027232097,-0.010820676,-0.02488326,-0.07742877,0.042090382,-0.108647674,-0.02036218,-0.026534263,0.0039394675,0.009524718,0.020816568,0.02043368,-0.008336966,-0.018218875,-0.0070729,-0.08343906,-0.018910902,0.029060766,-0.05982435,0.11802125,7.975927e-33,-0.100590095,-0.029122956,-0.051537193,0.050870147,0.007193839,-0.04707016,-0.03542689,-0.06692925,-0.008629058,-0.024693042,0.010894351,0.079582125,0.012644577,0.08720653,0.05381973,-0.011686031,-0.048474576,-0.07445698,0.11897521,0.039358553,0.028450925,-0.070115186,-0.0015273873,0.07459177,-0.03044142,0.06952352,0.029536244,-0.009639426,-0.0768567,0.05298033,-0.029466923,0.064610794,0.008127892,-0.013904808,-0.07541817,0.045349337,0.04644974,0.02417055,0.015256787,-0.04431307,-0.0076883617,0.0011888858,-0.06010281,0.022254188,-0.025245385,-0.013863134,0.039560553,0.050173722,0.07002898,0.07260603,-0.13076782,-0.06950741,-0.0331953,-0.07126489,0.0010010463,0.03283658,-0.024161262,0.032472454,-0.037187275,-0.028117988,0.00029682886,0.019603835,-0.02988028,-0.023091858,-0.057623543,0.030062199,0.008992562,-0.09719176,0.07074832,0.0033600065,-0.13090345,0.003629678,-0.046674736,0.022587992,0.044040147,0.031833056,-0.063287325,0.06652012,-0.0121921785,0.015007958,-0.061618455,-0.014094736,0.015461124,0.04751646,0.10819787,0.06481796,0.024222655,0.049610097,-0.005720025,0.17664854,-0.017808076,0.059168167,0.06545377,0.06831049,0.08084405,-1.0123608e-32,-0.035612915,0.0034408667,0.051110998,0.087412685,0.059469096,0.016742006,0.026533423,-0.021896217,-0.009500334,-0.018317845,-0.06382272,-0.055915814,0.063375756,-0.018975722,-0.03828681,0.04238334,0.011206254,-0.035472076,-0.0396874,-0.026229635,-0.010366495,0.0835773,0.025984555,-0.0951215,-0.012862243,-0.022182832,-0.07805805,0.023073426,-0.027461626,0.0015927207,-0.029063726,-0.020188136,-0.04190393,0.02466819,-0.04840842,0.0075581903,0.02812916,0.15070054,-0.013790373,0.071186505,-0.02096182,0.091708004,-0.034283485,0.025924385,-0.042057313,-0.0051512136,0.04612988,-0.16209307,-0.03922786,-0.060793463,0.029713167,0.004160228,0.017099937,-0.06609703,0.007256772,-0.0070390217,0.03652879,-0.071101144,-0.0932158,-0.017082376,0.06878354,-0.0007084703,-0.02122661,-0.051127337,0.084957056,-0.01646549,-0.028521227,0.024314214,0.06357181,-0.019247333,0.07566205,-0.0061964523,0.018363878,-0.019289898,0.004106161,-0.10211822,-0.119572125,0.032298062,0.010314185,-0.03908151,0.042252574,-0.0074533466,-0.03820211,-0.051512543,-0.0061563593,0.006495275,0.0007289627,0.046366166,0.03369048,-0.027176244,-0.00427599,0.06958545,-0.082949005,0.0057942066,-0.014717233,-3.8454747e-08,0.0066846567,-0.012927637,-0.040176664,0.025642103,0.04889874,-0.06555667,-0.025854718,0.006810261,-0.039924707,0.04459884,0.006290194,0.0357408,0.041443814,0.06129014,0.0024780275,0.029519198,0.077982165,0.12964875,-0.014408015,0.012710171,0.10406078,-0.06953948,-0.009535571,0.03565772,0.01746834,0.03722509,0.016367756,0.040033028,-0.007695094,-0.0044620023,-0.023669811,-0.0076956307,-0.058853794,-0.06477259,-0.05873066,-0.0033497652,-0.0032867498,0.011231195,0.018920958,-0.016145088,-0.0010508578,-0.059017714,-0.08388063,0.04778381,-0.025613772,-0.049784508,-0.041378055,0.005193675,-0.03647152,0.06610131,-0.06784309,-0.07375085,0.019183151,0.028979037,0.06334146,-0.01673423,0.059034206,0.027624026,-0.08234544,-0.07335058,-0.012560819,0.08389835,-0.023928205,-0.100496694} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.2158+00 2026-01-30 02:01:11.75133+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2042 google ChZDSUhNMG9nS0VJQ0FnSUQtamZYTGF3EAE 1 t 2045 Go Karts Mar Menor unknown Muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancados. muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancados. 5 2023-01-31 01:52:39.833374+00 es v5.1 E1.04 {E1.03,R2.04} V+ I2 CR-N {} {"E1.04": "Muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancado"} {0.023988515,0.024848932,0.046454255,-0.041059546,0.019699344,-0.1056965,0.05391572,0.009422955,-0.029703382,0.034831643,0.037357617,-0.026287045,-0.025840571,0.026424048,0.06860111,0.07908946,0.029699262,0.03011018,0.055811852,0.03717512,0.062462594,0.0021433884,-0.04768888,0.04744317,-0.11165292,-0.053142544,0.01377295,0.01926615,-0.019129096,-0.041166402,0.011924635,0.094937466,0.07567804,0.018706236,0.03693656,-0.059989057,0.114330806,-0.034017745,-0.08627388,0.037354518,-0.11372894,-0.050307907,-0.050351024,-0.056555327,-0.0019835832,-0.12921539,0.0079707345,-0.028193502,0.06922968,-0.07035566,-0.0016859089,0.047635395,-0.05428355,-0.002396525,-0.002159618,-0.006504214,-0.024507385,0.02697616,0.10681441,0.017223356,0.05715595,0.051556252,-0.079700306,0.04743595,0.023689516,-0.039883416,0.002584179,0.07668279,0.0066841417,-0.05179653,0.043222442,-0.11566106,0.0076711266,-0.02028534,-0.0254782,0.032973006,0.011076786,-0.03632566,-0.04425354,-0.097969316,-0.067146875,0.02228361,-0.027384173,-0.01846704,-0.019619204,0.031374697,-0.032588195,0.037727926,0.027326321,0.013725528,-0.03134132,0.005777043,-0.12863088,-0.006957024,-0.00556484,0.014093999,0.064793795,-0.087866,0.037009567,0.031692952,0.025792718,0.01370852,0.012786382,0.051709123,-0.07926823,-0.015913757,-0.0018899622,-0.06868154,0.035986595,0.06225249,-0.05569903,-0.09810003,-0.014931863,-0.027418416,-0.073510095,-0.025036251,-0.008763506,0.023877252,0.01643841,-0.054469444,0.055671826,0.036502965,0.0060205557,-0.014218375,0.03752137,-0.01899495,0.10452719,7.0240445e-33,-0.033039365,-0.012331057,-0.0445597,0.061241653,0.03509125,-0.03495829,-0.030325891,0.0145939225,0.017862769,0.03805596,-0.037530806,0.05927754,-0.08266691,0.058635693,0.14752522,0.021674512,0.0036715737,-0.020129414,0.030294407,0.00033244694,-0.10881164,-0.049412105,-0.038484823,0.044856098,0.027541768,0.05868983,0.06372544,0.012985405,-0.010561847,0.058772936,0.007818162,0.017481036,0.027470069,0.008797455,-0.023518713,-0.027623372,-0.005771398,0.053609148,-0.008820572,-0.06950046,0.010768533,0.033325434,0.0059024203,-0.053735357,-0.007754508,0.026113179,0.072609074,0.036535513,0.11073741,0.033307713,-0.054184314,-0.036809593,-0.036238886,0.0035943869,-0.05505032,-0.0101495925,-0.014320267,-0.02056516,0.09351705,-0.00465353,-0.017891897,0.030235836,0.007614476,-0.06810682,0.00023741106,-0.07520077,0.05876531,0.07956556,0.08198497,0.058803383,-0.09058908,-0.037267253,0.0123936925,0.01105218,0.01055503,-0.009755289,-0.040221825,0.045548066,-0.03401007,0.04183218,-0.054472096,0.030127417,0.039826043,0.007374513,0.115139775,0.061757952,0.014508449,0.09297668,-0.039701983,0.1135663,-0.03600995,0.097954705,0.03905922,0.014306729,-0.011795234,-9.305825e-33,-0.048927937,-0.049121723,-0.015341849,-0.01798412,0.006329068,0.04016044,-0.06433928,-0.0194467,-0.022496536,-0.05846438,-0.10209555,-0.052292444,0.060093276,-0.027491603,-0.030979365,0.07610989,-0.0133352615,-0.06108866,-0.09635193,0.009121765,-0.02028532,0.042981666,0.025778076,-0.018027876,-0.015076483,-0.083429426,-0.03036153,0.013722994,-0.050516356,0.01355282,-0.007209277,-0.010797132,-0.038398646,0.07273666,-0.044314276,-0.01796538,0.08101344,0.04565241,-0.02259703,0.0059531587,0.044028148,0.092693016,-0.06281529,-0.01267738,-0.040238965,0.065421656,-0.07673545,-0.123995274,-0.031224778,-0.07656548,0.08784319,-0.032865435,-0.028152147,-0.06641796,0.055272516,-0.030036591,0.054262117,-0.0073786164,-0.049490325,0.011424129,0.08672265,0.013536282,0.0107964175,-0.08324331,0.034503214,0.07131652,0.01964382,-0.013768104,-0.038411915,0.00073751225,0.14938505,-0.0018256773,-0.05568944,-0.056715157,-0.05656827,-0.08453309,-0.070127316,-0.031706404,-0.05219621,-0.061331984,0.02889493,-0.05458285,0.04183405,-0.047298282,-0.065587245,-0.022216083,-0.039742377,-0.026738293,-0.02306827,0.053822342,0.03173018,0.094910316,-0.038846865,0.031954452,-0.07062868,-3.82707e-08,-0.0058907922,-0.08416834,0.025331553,-0.04096517,-0.041946333,-0.061896957,0.0015144682,0.12780035,0.027375204,0.019922147,0.051995136,-0.094146326,-0.027472788,0.117412254,0.0033155156,0.030879825,0.05333003,0.08259045,-0.069686316,-0.08006585,0.03855897,0.022269111,0.0058758245,0.03805535,0.05228196,-0.02708048,-0.05648056,0.012631006,0.04979128,-0.010836962,-0.06426868,0.0044365814,-0.01517708,-0.0070127333,-0.022917736,-0.055278346,-0.042381383,-0.0009517575,0.00806607,-0.055329584,0.06432483,-0.008432845,-0.026542546,-0.023498002,0.010242701,-0.11066324,-0.029654352,-0.025589025,-0.014894718,0.033439457,0.022098802,-0.053446688,0.040267304,0.037014984,0.03703923,-0.046032116,0.0042462186,0.026092712,0.04712304,-0.0044230847,0.04557717,0.06823297,0.03569834,-0.06497193} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.238724+00 2026-01-30 02:01:11.758609+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2043 google ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE 1 t 2046 Go Karts Mar Menor unknown Un trato muy amable y familiar. Los karts, las instalaciones y las vistas estupendas. Un 10!❤️ un trato muy amable y familiar. los karts, las instalaciones y las vistas estupendas. un 10!❤️ 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {E1.03,E1.04} V+ I3 CR-N {} {"O1.02": "Los karts, las instalaciones y las vistas estupendas. Un 10!❤️", "P1.01": "Un trato muy amable y familiar."} {0.0039650463,-0.0302558,-0.007988179,-0.01872219,-0.0629624,0.03314928,0.050049864,0.029393515,-0.013131131,-0.007718517,0.030247651,0.05961513,-0.0741974,0.03625505,0.0037820146,0.015697556,-0.039176174,-0.006717787,0.0024435364,-0.012336205,0.051606067,-0.06673009,-0.043580607,0.11907357,-0.057844702,-0.08006419,-0.011350178,0.07106726,-0.012766968,-0.042094063,-0.04437944,0.105878405,0.044951808,0.021683317,0.008678534,-0.10380288,0.062820554,-0.074753486,-0.07825629,0.02300763,-0.07925247,-0.02811711,-0.021448052,-0.022554023,0.0024794147,-0.08876252,-0.05663513,0.05564862,-0.00631329,0.010744794,-0.057185434,-0.045553703,0.021027563,-0.023572117,-0.021519862,0.020654013,-0.082623124,0.016175028,0.112890854,0.046729602,0.044109218,0.06047949,-0.08242983,0.07298022,-0.07745828,-0.03599638,0.0093894,-0.010249289,-0.0642124,0.06483658,0.12438262,-0.067577794,-0.01846039,0.0066086403,-0.01665674,0.03525269,0.021137815,-0.049152087,-0.12658629,-0.0058572744,0.0077442913,0.039276313,0.020202493,-0.07162254,-0.035244484,-0.043298002,-0.031731147,0.076029256,0.0004393973,-0.0040557156,-0.020636523,0.05778455,-0.04340575,-0.025739372,0.043899473,0.038205795,0.05281099,-0.06721793,-0.072448626,0.02724531,0.084540255,0.018662099,0.09093941,0.07578069,-0.06529014,0.020022342,0.051814795,-0.0513607,-0.022490649,-0.026982117,-0.059636787,-0.027402569,-0.043990422,-0.03993166,-0.11746474,-0.046404343,0.010607728,0.022252858,0.032526955,-0.009690633,0.048834637,0.02907347,-0.009914106,0.0133547075,0.03009148,-0.062620915,0.021905992,3.0634582e-33,-0.06973073,0.043389756,-0.05612729,0.09050234,0.047749702,-0.07200952,-0.070749335,-0.05095482,-0.121198274,0.028221007,-0.049495365,0.04430151,-0.061721116,0.004485926,0.16064198,0.06480034,-0.043522082,-0.0031313105,0.043786973,-0.020903219,-0.0722793,-0.026672209,-0.0057234145,0.012976698,-0.049044933,0.056071762,0.006840127,-0.023905067,-0.051700156,0.048495453,-0.029636428,0.08755639,-0.01827812,0.0057752947,-0.03351991,-0.030196723,0.057711113,0.019875115,0.015932983,-0.011202824,0.04572278,-0.028154194,-0.044276763,-0.01650261,0.004367412,0.03104335,0.055504043,0.021663096,0.09220312,-0.012747774,-0.0843421,-0.036975276,-0.06367195,-0.015788063,0.009947366,0.06138411,-0.004945143,0.041000538,0.017430656,-0.027622337,0.0790255,-0.035483096,0.039369717,-0.027537944,-0.03647045,-0.01424249,0.07651917,0.04810562,0.10231382,0.04019268,-0.098305255,-0.09531761,0.04133503,-0.034854397,0.09569623,-0.0062883366,-0.013992467,0.028544875,-0.008037178,0.06374818,-0.032167904,0.0081503475,0.0042373757,0.038724296,0.10942371,0.044254616,-0.03368524,0.019286975,-0.009284789,0.08416264,-0.032600753,0.04541164,0.04396136,-0.02935434,0.024810104,-5.7043725e-33,-0.012083195,0.0014999368,0.045966234,0.013124264,-0.06134691,0.019393483,-0.04728525,-0.00017198296,0.012728449,0.0032708116,-0.07997017,-0.06704721,0.03929269,-0.096525796,-0.029163988,0.060046535,0.054981634,-0.03879134,-0.009491212,-0.0696634,-0.00012254741,-0.011297247,-0.009460803,-0.007900783,-0.010271436,-0.046034917,0.026464283,0.046137102,-0.060126398,0.015426448,-0.013202359,-0.0880602,-0.01216897,0.051728114,-0.0416594,-0.00074271177,0.05880196,0.045939915,-0.053154457,0.045564238,0.0019691472,0.016146395,-0.08970633,-0.034293447,0.0053571956,0.005659344,0.018141234,-0.111916624,-0.014887378,-0.053894114,0.11110154,0.016078906,-0.029781235,-0.00050679164,-0.030934963,-0.021358026,0.027340837,-0.008170071,0.007819399,-0.0061618993,0.04066531,0.055557933,-0.03439813,-0.045454737,0.04468854,0.0020844038,-0.010273257,0.026618486,-0.029879749,-0.0084675355,0.032424238,0.006144158,-0.0887943,-0.027641162,-0.11068106,-0.0792241,-0.066362165,0.015945066,0.017689666,-0.009562079,0.012673424,-0.031954445,0.00793351,0.026972061,0.09383773,-0.015908387,0.00578109,0.044035066,0.03105665,0.042475704,0.110983156,0.096043,-0.023688467,-0.011123702,-0.060512587,-3.081457e-08,0.046600975,-0.006391315,-0.09763677,-0.044606227,0.046906218,-0.07721893,-0.09786538,0.09859802,0.013745679,0.040136587,0.00048256258,-0.036799148,-0.029306302,0.1318138,-0.02932404,0.043738645,0.030779542,0.12657529,0.01599804,-0.023199176,0.06321955,0.04945864,0.004680472,0.010407468,-0.045147333,-0.04072336,-0.059391327,0.05280647,0.022552682,0.02716238,-0.03371833,0.011720271,-0.072326615,-0.037579935,-0.0032868218,-0.0017740668,-0.014894393,0.020555606,0.010416261,-0.102660865,0.042148877,-0.03724659,-0.07132707,-0.0048317974,-0.048341613,-0.0648182,-0.08567656,-0.0011308123,-0.057693474,0.043867365,-0.053196102,0.013577833,0.032753546,0.06874607,0.13832773,-0.044658873,0.052280504,-0.01823852,-0.039849635,0.038989313,0.059636246,0.07845409,0.023164848,-0.035471648} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.248836+00 2026-01-30 02:01:11.761415+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2027 google ChdDSUhNMG9nS0VJQ0FnSURnd0lIeHB3RRAB 1 t 2030 Go Karts Mar Menor unknown Una pista extraordinaria, circuito seguro y divertido. una pista extraordinaria, circuito seguro y divertido. 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {E4.01,O1.05} V+ I3 CR-N {} {"O1.02": "Una pista extraordinaria, circuito seguro y divertido."} {0.014148117,0.009668108,0.007503151,-0.033962008,-0.051406052,-0.01044798,0.029886065,0.10467504,0.026048377,0.017461605,0.11569918,-0.04073845,-0.050902985,0.014977984,0.0057606595,-0.024676016,-0.05497192,0.015394001,0.012910574,0.031417392,0.06885561,-0.047961824,-0.071958356,0.11196548,-0.09557603,0.03869459,0.023525394,0.010408794,-0.052456815,-0.11879128,-0.050759602,0.11560994,0.057873793,-0.006268048,0.0047098505,-0.0026642543,0.004295357,0.01781737,0.031378802,0.061241657,-0.087198704,-0.02378172,0.051956363,-0.033475164,0.019201284,-0.0009630177,-0.0061937096,0.032840226,0.05528718,-0.03845068,-0.019710766,-0.059184525,0.0016122472,0.11478676,-0.053977128,-0.02346282,-0.029093906,-0.020547446,0.0216233,0.041181874,-0.028899578,0.020025,-0.029517569,0.02507649,0.0062904814,-0.031937134,0.006746738,-0.021301433,-0.0997474,0.030929947,0.1374405,-0.04645785,0.018386662,-0.064140305,0.0024182117,0.02315614,-0.016566707,0.027013676,-0.07241242,-0.0030841783,0.020391418,-0.0035949296,-0.036986653,-0.040860534,0.05655187,0.04558859,-0.07549051,-0.018090758,-0.01601406,-0.025518656,-0.027164625,0.00075898535,-0.025766024,-0.042881455,0.04578289,-0.016697865,-0.033139594,-0.08867183,0.021584447,0.025260935,0.07895461,0.04342494,-0.020947693,-0.032659713,-0.011943076,0.014758887,0.007891793,-0.022532541,0.003866861,-0.029942969,-0.019982817,0.003285718,-0.05243715,-0.042606138,-0.06573611,0.04260058,0.031942215,-0.054792173,-0.039162885,-0.07146029,0.010981549,0.00050287903,-0.07315384,-0.0015277037,-0.016725754,-0.03769884,0.028605858,1.9075114e-33,-0.012668515,-0.029941846,-0.02768221,0.018157499,0.020671766,0.081137136,0.0010008919,-0.10549315,-0.038292777,-0.03004389,-0.08309472,0.051879525,0.014169281,0.04398593,0.007215526,-0.015316052,-0.010097506,-0.002619441,0.06298975,0.04497583,0.02909699,0.024000874,-0.05041867,0.042307008,-0.01707387,0.08867839,-0.056256317,-0.068483934,-0.09430133,0.03817063,-0.010565179,0.085499406,-0.010895559,0.020063454,0.029313995,-0.0566776,0.04845708,0.004226866,0.053201575,-0.007462079,0.011201958,0.018736878,-0.02865551,0.032316804,0.06258913,-0.06903585,0.042965434,0.044025075,0.16719343,0.039216325,-0.0635222,-0.06883462,0.034423683,-0.09451568,-0.002722473,-0.018478993,-0.081337385,0.08459722,0.036755513,0.03398759,0.017153537,0.1079062,-0.034610055,-0.02722894,-0.030268122,0.037872657,-0.00088286423,-0.03834604,0.101991005,0.007412088,-0.13901234,-0.056679465,-0.07231223,0.104226455,-0.020019274,-0.06258684,-0.035410866,0.01954821,-0.004714461,-0.0032871037,-0.052036356,-0.013911713,0.081683844,0.07309366,0.05787232,0.12760535,0.07115351,0.08757687,-0.045408897,0.09803478,-0.0016956347,0.061247293,0.053796127,-0.018855644,0.075065985,-2.7728883e-33,0.008885408,-0.09670173,-0.020617036,0.0044997633,0.008944681,-0.015456332,-0.052616358,-0.042430338,-0.059385527,-0.034109656,-0.06621981,-0.0065748338,0.10159999,-0.04423544,-0.036781542,0.0435819,-0.0027935684,-0.016264142,-0.056199446,-0.036541734,-0.032327637,0.049958263,0.07097635,-0.014252539,-0.006381874,0.026996167,0.0357277,0.014866374,-0.06640143,0.020776268,-0.049132805,0.014040825,-0.054122195,0.031141382,0.00055203395,0.0661683,-0.03231951,0.026565129,-0.027020143,0.061395667,-0.10270802,0.047593188,0.061697178,0.056685966,-0.031025115,0.048955992,-0.013861834,-0.011599044,-0.09662918,-0.010680963,-0.038754627,-0.029385535,0.023683436,-0.028273711,0.047611326,-0.086979,-0.06462278,-0.056027632,-0.061140023,-0.009359167,0.108437106,-0.0049613984,-0.07723695,-0.07303819,0.109897986,0.029829346,-0.025275355,-0.037544716,0.06184215,0.05102478,0.1046662,0.008102553,-0.02822427,-0.021652667,-0.005399313,0.01707495,-0.11247339,0.04364286,0.0022887064,0.0437696,-0.058394864,0.0037875955,0.03167113,-0.0020551034,-0.006992452,-0.06625961,-0.024578065,-0.014408851,-0.03126263,-0.021003276,-0.020330103,-0.01414298,-0.044062555,-0.017381867,0.04850949,-2.2103238e-08,0.051935706,-0.016407663,-0.007125923,-0.007910624,0.05633659,-0.06799017,0.011023941,0.0010166313,-0.009713795,0.03302731,0.021513589,0.0026607183,0.14967646,0.015691074,0.02161179,-0.0034906946,0.11395867,0.1468581,-0.014810971,0.053287745,0.08487435,-0.05097168,-0.020972447,-0.051447954,0.027945843,0.055198055,0.01500659,0.0030540668,-0.06494776,-0.054048464,0.059053313,-0.09433009,0.025962153,-0.062250946,-0.002272601,0.08587163,-0.01757884,-0.0034704811,-0.008275834,-0.089600794,0.018569332,-0.010693305,0.0087877745,0.03597458,-0.023936547,-0.106205456,0.017763766,0.015985183,0.0033448327,0.054653864,-0.024749653,0.0036628402,0.06379883,0.047137562,0.04218891,-0.02528353,0.06166981,0.01054549,-0.057278067,0.0067267604,-0.0016825082,0.11181213,0.0123457005,-0.06879089} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.987917+00 2026-01-30 02:01:11.712077+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2028 google ChdDSUhNMG9nS0VJQ0FnSURPM3NfZjhnRRAB 1 t 2031 Go Karts Mar Menor unknown Gran sitio, para pasar una mañana y un gran día. Buenos precios y buen precio para comer. gran sitio, para pasar una mañana y un gran día. buenos precios y buen precio para comer. 5 2023-01-31 01:52:39.833374+00 es v5.1 V1.01 {V4.03} V+ I2 CR-N {} {"V1.01": "Gran sitio, para pasar una mañana y un gran día. Buenos precios y buen precio para comer."} {-0.02181706,0.03255151,0.009647005,-0.097708724,-0.048962086,-0.012270468,0.039440535,0.023707224,-0.0012190131,0.013993485,0.0028629913,-0.047131814,-0.07645585,0.028855773,0.04951946,0.018283632,-0.025692934,0.05237369,-0.02281224,0.013860877,0.0719068,-0.011049137,-0.10058555,0.14102362,-0.04427893,-0.044253383,0.033457734,-0.01238545,-0.008720331,-0.010397677,-0.03707705,0.020045327,0.069215484,-0.006108314,0.008801299,-0.042110015,0.078130834,-0.022516048,-0.007638689,-0.013885545,-0.042198353,-0.06421005,-0.0003852783,0.010787839,0.024348697,0.0028351115,0.114169374,0.005777938,0.01848686,-0.009275936,-0.020478152,0.018253505,0.005713926,0.030025715,-0.014359818,0.095132396,0.039547503,-0.036172602,0.04562973,0.040681414,-0.09760748,-0.00884744,-0.058134653,-0.03843481,0.028382199,0.022824965,0.03850366,-0.03059811,-0.031888753,0.036701847,0.079449825,-0.06480209,0.016848471,0.06696766,-0.07722995,0.016951706,0.022145854,0.01434232,0.007875839,-0.079991825,0.06565099,0.065957315,-0.037951306,-0.00015052197,0.016992304,-0.004729445,-0.042704966,0.023314198,0.013121469,-0.05629603,-0.009952406,0.07207149,-0.053932022,0.05797936,-0.02679434,0.02221868,0.0012569499,-0.078300156,0.060538497,0.05122056,0.07420411,0.011062069,0.048737355,0.036389597,-0.09217675,-0.030890638,0.03200832,0.00032076382,0.021121752,0.12943189,-0.0067458814,0.026798887,-0.05250806,0.02665989,-0.1518585,-0.05397701,0.016134601,-0.043377265,-0.04460623,-0.10314348,0.07053224,0.029462187,-0.0071742903,0.021773525,0.01676772,-0.108371556,0.027715364,5.153091e-33,-0.02941948,-0.051487774,0.036910713,0.042327147,-0.051951915,0.06978474,-0.014168235,-0.049781453,-0.011941618,0.027531521,-0.10137238,-0.0072251502,-0.014502196,-0.008824758,0.0050235773,0.052092522,0.035697427,-0.066644765,0.076551594,-0.024021545,-0.10645036,0.050828867,-0.04667519,0.033589937,-0.018921494,0.026737327,-0.073140115,-0.14903457,-0.0480505,0.04773498,0.008400674,-0.0074572125,0.02444398,-0.02666802,-0.0027698495,-0.082802266,0.019488964,0.045826778,-0.040504027,-0.049420893,-0.0675062,0.038527425,0.034491464,0.021832861,0.010189639,-0.10278812,0.019517362,0.07448896,-0.02556054,0.013867538,-0.039933022,-0.10138917,-0.09882337,-0.012678733,0.01907829,-0.05379915,-0.089521416,0.06446021,-0.0061794445,0.006000251,0.09514508,0.024490625,0.012449162,0.030699793,-0.068727724,-0.01293444,0.04488076,0.032227527,0.14728808,0.068434484,-0.029784605,-0.052231155,-0.050155528,0.033851586,-0.046359487,0.031873167,-0.0065558935,0.053302594,-0.02167361,0.0016861415,-0.04941419,-0.019772997,0.08707633,0.073382825,0.018964605,0.11132846,-0.0036144913,0.020970479,-0.05595091,0.01317948,0.011780782,0.08798402,0.062428836,0.018487917,-0.019518876,-4.5400982e-33,0.08263893,0.0006312523,0.0050622337,0.02661604,-0.04462009,-0.02537195,-0.025243465,-0.045815047,-0.007375854,0.013926631,-0.042586803,-0.105183624,0.13542742,-0.044706795,0.013504542,0.13322982,-0.011914949,-0.015882388,-0.072489895,0.0023430372,0.03542132,0.017733471,-0.05560906,-0.011496841,-0.011530515,-0.117816694,0.07245887,0.0847099,-0.037441954,0.010968826,0.021470038,-0.057665825,-0.019131657,-0.019620016,0.039994568,0.029081125,0.055577077,0.039209332,0.014305593,-0.015006751,-0.02720596,0.008367034,-0.010816642,-0.035024572,-0.05665149,-0.0012255255,-0.022461012,-0.015109767,-0.021052333,-0.061426405,0.028711017,-0.080819234,0.045540024,-0.023116933,0.015080706,-0.062417164,-0.027777607,-0.063377164,-0.102242075,-0.020506645,0.0865133,-0.032569986,-0.0618278,-0.022250844,0.036186982,0.00052279496,-0.05744088,0.016072098,-0.018785382,0.10228701,0.060997423,0.003441608,-0.037083335,0.025019512,-0.098380506,-0.0015978679,-0.014481788,-0.008069439,0.07504095,0.0068726973,-0.016053092,0.028873643,0.014555264,-0.017009726,-0.025839329,0.033846065,-0.014329776,0.051745847,0.008943964,0.019528525,0.009660771,0.02126493,0.036038797,-0.09595429,-0.066648945,-2.8516881e-08,0.00089022116,-0.079146676,-0.028571181,0.033151343,0.005746521,0.06548392,-0.038982578,0.049792986,0.056773897,0.036956407,-0.008327903,-0.042295594,0.040196355,-0.03863528,-0.043146912,0.059955094,0.09170279,0.099994056,-0.011502557,-0.057195023,0.07740349,0.009167921,-0.010047889,-0.025370639,0.006483916,-0.039240204,-0.061411902,0.058872215,0.03082498,0.002591948,0.006450967,-0.011841739,0.004671977,-0.08153497,-0.0036989502,0.07079228,-0.037685696,-0.023382911,0.00010381962,-0.10750926,0.06569193,0.046049982,-0.01292549,-0.024225337,0.048975687,-0.11769197,-0.01278698,0.012505254,-0.023597341,0.06418822,0.07722203,0.018168913,0.13092235,0.083883636,0.10072912,-0.002248636,0.009328662,-0.020254897,0.020309845,0.036676787,0.054923616,0.089859605,-0.006185698,-0.0568914} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.999663+00 2026-01-30 02:01:11.714664+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2050 google ChdDSUhNMG9nS0VJQ0FnSUNwZzV1aDRRRRAB 1 t 2053 Go Karts Mar Menor unknown Un buen sitio para montar en car, Una pista espectacular. un buen sitio para montar en car, una pista espectacular. 4 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Un buen sitio para montar en car, Una pista espectacular."} {-0.09391412,0.015318021,-0.032620158,-0.07536724,-0.07624323,0.06948305,0.009741495,0.07965462,0.028363366,-0.020621931,0.031087557,-0.08052402,-0.008973897,-0.0043778084,-0.0006738667,-0.049267326,-0.092259884,0.059353594,0.06091051,0.090421334,0.10983007,-0.012219492,-0.02658124,0.1572353,-0.07336522,0.055058315,0.026521318,0.021415029,0.007700493,-0.110115424,0.0057318294,0.05029077,0.024290685,-0.03947415,0.0722368,-0.018570717,0.008392676,-0.11726607,-0.008616934,-0.024780072,-0.06411528,-0.021034501,-0.01845275,-0.055925436,0.048699394,-0.00835489,0.03974958,0.053178832,0.01760392,-0.032362215,-0.051681366,-0.04551765,-0.023658004,0.033145808,-0.05621061,0.015035962,-0.010875722,-0.0059910216,0.070942804,-0.028417042,0.0520588,-0.0065856706,-0.040714115,0.041534986,-0.059945744,0.03897575,-0.020106541,-0.092408694,-0.025121756,0.105772704,0.091228336,-0.034218397,0.007562128,-0.024767749,-0.021501862,0.008218494,0.0062450697,-0.01741234,-0.014913199,-0.041883327,0.048863973,-0.015929598,-0.04183944,-0.023735372,-0.013473746,-0.00020668711,-0.004456806,0.015898371,-0.013405434,-0.027769463,-0.043081693,0.037947606,-0.078913644,-0.01873906,-0.014122052,0.0048308074,-0.051518355,-0.04618334,0.09760091,0.025061276,0.10311696,0.008924397,0.036339894,0.059032727,-0.09482424,-0.022362778,0.09525159,-0.044102166,-0.015566507,0.042130828,-0.035416268,-0.055431515,0.017785644,-0.023900367,-0.09560288,0.04856557,-0.014246823,-0.103973135,-0.028854206,-0.03968877,0.02530249,-0.028041506,-0.021474471,0.0066435393,0.054284323,-0.056322906,-0.015930405,2.06155e-34,-0.030465307,-0.018452689,0.054787923,-0.016205426,0.029264487,0.082390495,-0.07447398,-0.054222245,-0.02169417,0.002337184,-0.092467844,0.10702447,0.028380828,0.08401853,0.05592506,0.008900335,0.021755874,0.028931238,0.012375107,-0.083039336,-0.110445544,0.056756742,0.014049027,0.05852515,0.013747805,0.023510726,-0.0476894,-0.035981923,-0.085064836,0.053044453,0.01987415,0.023091689,-0.01680501,0.020002177,0.03406821,-0.09184832,-0.019898811,0.07349842,0.02585356,0.014927006,0.077028416,0.01954114,-0.034973655,-0.008100371,-0.01534347,-0.052066114,0.035005167,0.052855395,-0.03052795,-0.0033300207,-0.024154875,-0.057440378,-0.036229264,-0.075989835,0.03238801,-0.005734307,-0.109887145,0.05885303,-0.096641384,0.015212911,0.07838771,0.079200156,0.09398754,-0.0035859821,-0.04771081,-0.00955241,-0.015027794,0.0455256,0.08308021,0.030516932,-0.015569679,-0.0229437,-0.021110801,0.04163196,0.036999125,0.019686138,-0.0408317,0.036747277,-0.08872372,0.020976348,-0.097710475,-0.040703524,0.03640909,0.02994107,0.0056217476,0.088646986,0.032553617,0.02100115,-0.03484031,0.080197945,-0.009026665,-0.0017283648,0.027001802,-0.04939528,0.026276462,-1.9506592e-33,0.045621473,-0.013004417,0.009023977,0.018627008,-0.050366215,0.014662989,-0.03179165,-0.028730055,-0.02773795,-0.003123401,-0.056598987,-0.033869065,0.13223657,-0.04576313,0.014135648,0.11809552,-0.007763482,-0.08918705,-0.06752414,-0.041387055,-0.026679885,-0.051589794,0.02026092,0.018095855,-0.026020382,0.002773828,0.015572935,0.034138933,0.035979148,-0.0034550317,-0.049050458,-0.040131245,-0.037331164,0.060738385,-0.02837662,0.0971266,0.12808304,0.028602216,-0.007521231,-0.029332446,-0.081590794,0.038116254,0.053762116,-0.05761007,0.07524286,-0.056035094,0.0447233,-0.0561282,-0.10534451,-0.06019567,-0.037924875,0.0010368655,0.06537292,0.03412461,0.0012234997,-0.035618328,-0.06262785,-0.01939504,-0.06817567,-0.0041846954,0.11226859,0.008134398,-0.07544073,-0.051766172,0.082371935,-0.058429476,-0.06829792,-0.08550916,0.069062725,0.052857406,0.08103772,0.00075368496,-0.057458095,0.07754835,-0.086669795,0.032532953,-0.0020277523,0.0046819174,-0.008165891,-0.039094307,-0.055742513,-0.021022707,0.021956626,0.017196726,-0.0195233,-0.0042725275,-0.02765259,-0.086430855,0.026246728,0.04969697,0.0111587895,0.013835015,-0.0045753634,0.039727442,-0.03245296,-2.2175918e-08,0.020313317,-0.03943195,-0.02674546,-0.0024711874,-0.008594505,-0.02763608,-0.018823884,-0.05100411,-0.024482185,-0.021188928,-0.023519898,-0.03828724,0.118787564,0.044083353,-0.038029034,0.12600529,0.05495512,0.07926727,0.006710765,-0.004193742,0.05038984,-0.046295904,-0.04528309,0.026357526,-0.035352323,-0.0046554753,0.018327212,-0.0051032887,0.012276233,-0.054667912,-0.0124081895,0.03778674,0.033049595,-0.074672714,0.022823436,0.0042242208,-0.0320008,0.069013216,-0.06941158,0.02066498,0.081025906,0.12342204,-0.003518287,-0.03826466,0.047292598,-0.04946193,0.023273336,0.012647214,-0.0023156037,0.051121216,0.003498351,0.03126073,0.03226389,0.067706555,0.03294859,0.02513427,0.08731593,-0.035219036,0.05528973,0.033219833,-0.013974149,0.11723028,-0.014110821,-0.04007049} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.325405+00 2026-01-30 02:01:11.787428+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2051 google ChdDSUhNMG9nS0VJQ0FnSURPNk1lZnpBRRAB 1 t 2054 Go Karts Mar Menor unknown Diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia. diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia. 4 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.02,O4.04} V+ I3 CR-N {} {"V4.03": "Diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia."} {-0.055962544,0.008526313,0.042105842,-0.012133028,0.014525085,0.028576892,0.054738592,0.10726362,-0.04133834,-0.018311588,0.038107634,-0.039194025,-0.039509937,-0.05960254,0.018791381,0.0025808197,-0.104569085,0.089675166,0.043379225,-0.0096995095,0.050708227,-0.023673551,-0.07254135,0.08854021,-0.09996099,0.011948573,-0.0181776,0.01797036,-0.03146046,-0.015813796,0.023820233,0.065317996,0.042728063,0.016982812,-0.016459858,0.0583583,0.046238028,-0.06432195,0.046897355,-0.005571836,-0.05515908,0.025919795,-0.013925346,-0.07215414,-0.009593996,-0.045138042,0.011095429,0.067913085,0.019251859,-0.049613707,-0.043212723,-0.059073925,-0.04742278,0.017633777,0.011367157,0.023815826,0.0028645752,-0.06928291,0.059013873,0.016352706,-0.061174918,0.046776973,-0.056404717,0.0046027335,0.074682,-0.018727696,0.03172371,0.045468353,-0.045519263,0.090501934,0.04894968,-0.048226528,0.0475261,0.009084094,-0.03756384,0.0099274805,-0.056216814,0.021011401,-0.05160897,-0.021572711,0.016132519,-0.0023864312,-0.014407701,-0.050148986,-0.0050200843,-0.018417902,-0.0041917935,0.0034369964,0.025573667,0.00384434,-0.069431186,0.07382801,-0.08294788,-0.044859618,-0.01652586,-0.0002560659,-0.009761447,-0.045153346,-0.0033218905,0.015532839,0.07034863,0.08067493,0.043131806,0.026364919,-0.03479192,-0.00063094066,0.10250728,-0.06512992,0.007372232,0.04928265,-0.0914368,-0.025784692,0.009237888,-0.022537882,-0.12373059,0.059807207,-0.058746453,-0.09706891,-0.010496579,-0.06651801,0.030934785,0.068200596,0.08010408,-0.015821433,0.03718948,-0.045374688,0.040102255,5.4372297e-33,-0.020232318,-0.008125701,0.020617297,0.040119875,0.01352615,0.042110413,-0.029110886,-0.03218398,0.009805675,0.017624827,-0.09984876,-0.057597406,0.0081932,0.042395376,-0.014296986,0.025586212,0.05142639,0.009690209,0.027394336,0.040201887,-0.019006955,0.0056936084,-0.017162649,0.0039611277,-0.10679202,0.018623602,-0.009502784,-0.05360939,-0.03586989,0.07140093,-0.018510884,0.038746353,-0.0026896747,-0.016891982,-0.031593893,-0.03123315,0.0634859,0.055981133,0.008658036,0.025729511,0.017565088,0.077611096,0.07003481,-0.026267689,0.027479608,-0.00092196517,0.07538384,-0.022894515,-0.007309884,0.060748596,-0.06794071,-0.116846584,-0.021154469,-0.10638743,-0.019004546,-0.005991105,-0.039461825,0.06790231,0.029794129,-0.027168617,0.09818569,0.0013081073,-0.02747572,-0.021148587,-0.055551443,0.02405064,0.082341306,-0.019809866,0.09835429,0.0553615,-0.054499142,-0.025176508,-0.027075572,0.036881167,-0.010227282,0.029003248,0.031591535,-0.012957476,-0.025535703,-0.054426517,-0.062625974,-0.00367408,0.05109038,0.05317034,0.095209755,0.014444738,0.029503528,0.098234594,-0.10311356,0.10436963,0.016396342,0.05907791,0.03236885,-0.09285995,0.059477035,-5.0971382e-33,0.09180976,0.024658946,-0.018544098,0.0102348365,-0.0113093415,-0.017569264,-0.035268024,-0.010259426,0.028225137,-0.06766811,-0.14930272,-0.11777396,0.16707839,-0.034292463,-0.06274184,0.08229141,-0.026682543,-0.067860365,-0.071552224,-0.012062954,0.0014361887,0.048747577,0.049253285,-0.0076498124,0.02997312,-0.06074197,0.029900946,0.0532182,-0.044174578,-0.04219931,0.049803637,-0.06752912,-0.03487331,-0.015507406,-0.018549606,0.07810298,0.022012947,-0.0060738013,-0.06475397,0.056888945,-0.017946674,0.025783958,-0.018204296,0.0068938388,-0.012946953,0.05115633,-0.06799318,-0.12637997,-0.085851446,-0.009556218,0.0051960074,-0.060976677,0.0032954293,-0.041960284,0.084482506,-0.014536027,-0.030074613,-0.05712336,-0.14485262,-0.0393243,0.10871578,0.0010382092,-0.10690235,-0.046499673,0.05841787,0.017943509,-0.06090011,0.0041381973,0.00078139425,0.10986404,0.044009734,-0.020688454,-0.06570991,0.029119194,-0.01007191,-0.0065613,-0.06824576,0.027634725,0.047195442,0.0160842,-0.026800435,-0.04772602,0.0073698605,-0.025402417,-0.023434427,-0.015344233,-0.041656654,0.025733603,-0.0016978642,-0.034411397,0.020652605,-0.030505482,-0.0224739,-0.012390576,-0.05194925,-2.9592409e-08,0.0074589285,-0.07216782,-0.007739463,0.055696487,0.022829683,-0.056554325,0.03574337,0.013918675,0.018346412,0.042541906,-0.07609098,-0.0376029,0.059661273,0.011369157,-0.023135355,0.014794763,0.11480583,0.11316888,-0.05348581,-0.04138405,0.088898204,-0.010415102,-0.026938327,0.0071306005,0.025020242,0.02456468,0.045731444,-0.008313137,-0.007074396,-0.04101185,-0.010797857,-0.055080466,-0.036786616,-0.054684415,-0.02874617,0.08461979,-0.025749581,0.06347746,0.025312798,-0.012972295,0.13596016,0.053159136,-0.02020903,-0.01894893,0.010734556,-0.0021073564,0.0063518393,0.062471256,0.024619218,0.016994448,-0.007277274,-0.012908338,0.10178815,0.055664834,0.0274999,-0.0017489049,0.042864278,0.04380413,-0.01019886,-0.032407243,0.12297144,0.13563657,-0.046264872,-0.0148436045} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.336262+00 2026-01-30 02:01:11.789907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2052 google ChZDSUhNMG9nS0VJQ0FnSURRektYYWJnEAE 1 t 2055 Go Karts Mar Menor unknown Excelente lugar para pasar un dia con los karts y celebrar cumpleaños. Muy buena pista y raida excelente lugar para pasar un dia con los karts y celebrar cumpleaños. muy buena pista y raida 5 2017-02-01 01:52:39.833374+00 es v5.1 O1.02 {O4.04} V+ I3 CR-N {} {"O1.02": "Excelente lugar para pasar un dia con los karts y celebrar cumpleaños. Muy buena pista y raida"} {-0.06432116,-0.023776317,-0.023567226,-0.10639955,-0.10645303,0.010055963,0.012438733,0.032413017,0.04967642,0.052775886,0.041365862,0.0001827092,-0.011997221,-0.02921465,0.020752624,0.029904919,-0.08334675,-0.0020523302,-0.010823697,0.0002938924,0.036308683,-0.08253278,-0.09521656,0.09372351,-0.07294354,-0.024207,0.031485725,-0.015688322,-0.038736753,-0.06507086,-0.0129169375,0.069418326,0.035772126,0.011042465,-0.010165425,-0.06949562,0.042088527,-0.044317015,-0.0015988426,0.0035552878,-0.032349717,-0.022764295,-0.036301397,-0.027652184,-0.031576514,-0.05844904,-0.0005758956,0.0015789192,0.031745587,-0.010174658,-0.049129292,-0.04569054,-0.014966378,0.033417024,0.018568894,-0.06290429,-0.08099184,-0.019308848,0.08146549,0.049403094,-0.027151125,0.09269532,-0.059444603,-0.0010537434,-0.004725504,-0.0515309,0.0059898426,0.07387896,-0.09588375,0.10256632,0.0912546,-0.06872471,-0.032279637,0.108085245,-0.03489434,0.060207423,0.0075042145,-0.0440268,-0.08270985,-0.04478437,-0.018120714,0.01983343,-0.015650049,-0.063505575,0.008457111,-0.03323081,-0.0571896,0.06332372,0.029466573,0.0080358405,0.04143643,0.09207575,-0.07916141,-0.013151658,-0.05593359,0.030555231,0.055852834,-0.092770204,0.06710937,0.029213948,0.08816491,0.03587538,0.065637514,-0.03916396,-0.11739616,-0.011007002,0.06183336,-0.03627084,-0.038092364,0.044431146,-0.026777754,-0.018783355,-0.07960005,0.026743878,-0.11269153,0.015329062,-0.051552247,0.010315658,-0.005446762,-0.13388096,0.045132745,0.018315533,-0.034939833,0.010475766,-0.013124999,-0.13916555,0.024506962,9.323671e-33,-0.027237898,-0.057254612,-0.03623813,0.046523526,-0.045324776,-0.012966556,0.014090673,-0.04729605,-0.028371708,0.0073459097,-0.012568167,0.055288013,0.0043558157,-0.04254171,0.022862203,0.064799815,-0.037787873,-0.04229619,0.011293498,0.042979266,-0.041875925,-0.044101585,0.012637021,0.061168637,-0.02423265,0.03389426,-0.0058483835,-0.039444916,-0.0651296,0.07210466,-0.009482784,0.014503739,0.013560101,-0.01723246,-0.0014858526,0.0080638565,0.027535807,-0.0017078986,-0.050642338,-0.0046036015,0.028803356,-0.031693798,-0.026507873,0.053169172,-0.083643205,0.05415229,0.093273826,-0.011833604,0.08887172,-0.01603357,-0.079925135,-0.08376846,-0.04519699,-0.07137571,0.023609642,0.03758403,-0.08214458,-0.012430425,-0.034694333,-0.049507007,0.019155186,-0.050361633,0.030896593,-0.023020888,-0.051756468,-0.040046625,0.026459157,0.019650506,0.118080825,0.08089473,-0.07018314,-0.097702004,0.037968,0.015840841,0.06560595,0.019761538,0.045651358,0.09455592,-0.029284483,0.060557365,-0.07251488,-0.010201703,0.0074753803,0.007264422,0.08548321,0.07990665,0.07057197,0.03137995,-0.026312858,0.11624215,-0.011133845,0.098887175,0.05467648,-0.012677592,0.027028952,-1.02904715e-32,0.04369277,0.00438011,0.05989439,0.083103895,0.020409826,0.005864172,0.0025616894,-0.014878404,-0.020027261,-0.02073814,-0.08530657,-0.119830765,0.08987869,-0.046089042,0.021535248,0.07488254,0.051771343,-0.042997688,-0.081387736,-0.0012799096,0.00091781333,0.06853073,0.009148899,-0.01844173,-0.019049603,-0.076606534,-0.050087802,0.054565992,-0.06594502,-2.8942237e-05,0.027602129,-0.058874294,-0.015121645,0.03243341,-0.06512317,0.02306884,0.104438215,0.02050103,0.007188214,0.0396956,0.028439613,0.076947294,-0.075115696,0.0066774725,-0.021817008,-0.003752777,0.060886655,-0.052321013,0.0027234242,-0.09640673,0.04590603,0.041554708,-0.031879045,-0.012137674,0.098096676,0.01170417,0.012273807,-0.037110306,-0.03410628,0.019282786,0.0087569365,-0.03039937,0.010706688,-0.086015716,0.093067914,0.02071633,0.02035918,-0.017859418,0.025841884,0.08091096,0.111963995,-0.029063744,-0.026338656,-0.0036920263,-0.07222652,-0.03817826,-0.1389907,-0.0042809956,-0.013003424,0.029965155,0.048828732,0.00040170294,-0.009430379,-0.045027338,1.7978547e-05,0.024601804,0.027326407,0.014313755,-0.009877446,-0.0056928005,0.056007456,0.009249411,0.024210688,-0.021281216,-0.038138174,-3.5917484e-08,-0.0013132783,-0.026123753,-0.06686877,-0.012668853,0.0074631847,-0.046219047,-0.06178574,0.058293913,0.06569278,0.07007846,0.019199431,-0.07775532,0.03876409,0.022277381,0.0023567667,0.06883582,0.071262345,0.092072584,-0.0143247945,-0.002786438,0.10928104,0.015801346,-0.027992977,0.00814033,-0.04801888,0.095733136,-0.076284096,0.04121639,-0.0056047956,-0.027753146,-0.027380988,-0.019000972,0.02614667,-0.10752696,0.013413343,0.0016321075,0.022801094,-0.03186763,0.019349135,0.04715889,0.09016829,0.009158828,-0.09735469,0.03591507,-0.03586463,-0.03147465,-0.027523354,0.03972449,-0.051478494,0.031922434,-0.033210356,-0.026379611,0.07581063,-0.0046146265,0.025906613,-0.04251698,0.045826755,0.031492196,-0.04125436,0.002471311,0.06312991,0.07087726,0.00966933,-0.07097523} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.349009+00 2026-01-30 02:01:11.792616+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2053 google ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB 1 t 2056 Go Karts Mar Menor unknown Muy buenas instalaciones y personal muy amable, el mejor circuito de la región de Murcia muy buenas instalaciones y personal muy amable, el mejor circuito de la región de murcia 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "el mejor circuito de la región de Murcia", "P1.01": "Muy buenas instalaciones y personal muy amable"} {0.008211306,0.03445701,0.048251882,-0.11116708,-0.058965117,-0.07672699,0.0037439908,0.10438435,-0.010769195,-0.018451907,0.10518453,-0.06286264,0.026298018,0.020187655,0.037152708,0.04788737,0.009535994,-0.021937909,0.040597092,-0.012814956,0.06613501,-0.030608034,-0.07987671,0.016336301,-0.10770494,-0.011142666,0.042857897,0.044233393,-0.062364448,-0.08472368,-0.056779902,0.06579581,0.12816198,-0.038831975,-0.06446724,-0.013782166,0.019597027,-0.025464512,-0.0054468196,-0.006461856,-0.07285572,-0.07671563,0.050793394,-0.04265063,0.0037115358,-0.026507769,0.036463458,-0.0074494598,-0.026102995,-0.06984251,-0.029750146,0.0076800543,0.02371423,0.042348605,0.010628828,-0.010280267,-0.037988394,0.08771426,0.065211676,0.06600199,0.026886038,0.0040288856,-0.0055603385,0.056666482,-0.013199313,-0.03438072,0.0013124222,-0.021194026,0.013176167,-0.055847704,-0.008735119,-0.11964104,-0.02705723,-0.09311833,0.030995559,0.04768321,-0.01643842,-0.0023901307,-0.00820723,-0.02739254,-0.03066287,0.02735776,-0.046667643,-0.026099438,0.06964895,0.019459905,0.03768501,-0.04872294,-0.011887794,-0.02427326,0.01545723,-0.03420003,-0.044161588,-0.04380892,0.0053994018,-0.009620609,0.026859624,-0.089607015,-0.0038690567,0.048191942,0.04858684,-0.07413589,0.036754865,0.03751759,-0.09712371,0.015765635,-0.03530022,-0.011594068,-0.013938484,-0.030550009,-0.07460469,-0.011066389,-0.07867817,-0.03791727,0.019661495,0.02600582,-0.012238577,0.049083196,0.05504163,-0.0028602532,-0.056985512,-0.041844886,-0.04098348,-0.04163367,0.013551888,0.009580835,0.09518361,3.0493363e-33,-0.055084407,0.0008239139,-0.07234381,0.086264186,-0.011843845,0.040738944,-0.0022641153,0.02502881,0.0066786073,-0.043866023,0.020943778,0.115476035,-0.035532285,0.06972453,0.10540031,-0.071416184,0.014897995,-0.096324705,0.050717827,-0.009311954,-0.0016490985,-0.06633835,0.014458728,0.03983676,0.07999616,0.07946271,0.066929564,0.014914999,-0.037839606,0.036521625,-0.006291376,-0.002045435,0.052012075,0.0025233226,-0.03624512,0.043957576,-0.012546453,0.0029061937,0.030630097,0.012326912,-0.03554225,0.032618914,-0.022339517,-0.016929705,0.017009983,0.041263185,0.036405556,0.049499013,0.11863424,0.06684499,-0.11854686,-0.0035909535,-0.020877441,-0.045025587,0.019804139,0.016463317,-0.03976995,0.012242073,0.025349328,-0.0016125977,-0.037403673,0.0821776,-0.0058904993,-0.054979183,-0.013313779,-0.023913274,0.007995414,-0.053542286,0.05656418,-0.0016621349,-0.10150527,-0.012118121,0.0033404077,0.022892678,-0.01070713,0.040241897,-0.110101,0.069232404,0.004479277,0.012964099,-0.094734475,0.018753886,-0.024491996,0.040336084,0.14495555,0.08520316,0.004253926,0.038493883,-0.012322503,0.09344374,-0.018659648,0.0750718,0.047399446,0.06413425,0.035376947,-5.1930912e-33,-0.05971078,-0.06651242,0.079614386,0.033250898,0.022580886,0.03387549,0.02017345,-0.0046688817,-0.03370207,0.020348683,-0.07778311,-0.0010522313,0.08889865,-0.009146312,0.0074434476,0.051448267,-0.04443564,-0.021329014,-0.035834193,0.01884047,0.05121529,0.07840339,0.022608647,-0.069790356,-0.081818804,-0.021919068,-0.04850504,0.015865164,-0.026056254,0.0121060815,-0.08673704,0.038873654,-0.07641477,0.057435337,-0.09254137,-0.07087051,0.04173247,0.10507481,-0.032116685,-0.059903603,-0.02700206,0.06570892,0.016152753,0.0037163293,-0.090223156,0.029695908,0.06739036,-0.09592473,-0.035978142,0.0043152976,0.00014402386,-0.04185162,0.0069445428,-0.038000986,-0.024059236,-0.021085408,0.012542079,-0.005483387,-0.051850755,-0.05591825,0.053041056,-0.03813567,0.025386296,-0.083611585,0.05028417,0.03799878,0.09117802,0.049913768,0.030986883,0.0019238552,0.08011292,-0.0054729637,0.014524982,-0.1044375,0.029185725,-0.027581004,-0.115477085,0.00028748868,-0.03085444,-0.059060875,0.037172284,-0.029561345,-0.008003905,-0.092446476,0.030068865,-0.07718843,0.019182852,-0.017374512,0.060566366,-0.019075852,-0.057691466,0.14705689,-0.12102967,-0.020271432,-0.020883374,-3.2951963e-08,0.019887172,-0.06677903,-0.08140255,0.013046611,0.022566805,-0.072276205,-0.017459743,0.06790922,-0.041419737,0.029003376,0.02332459,-0.0048907483,0.0061705713,0.053048886,0.028133765,0.029703517,0.067295946,0.11079513,-0.024863573,0.007866321,0.03894048,-0.037167437,0.036391947,0.08777061,0.07751531,-0.00020682692,-0.00064222736,0.018175643,-0.04859885,0.0117666945,0.006439923,0.006433594,0.016893797,6.6076456e-05,-0.019654816,-0.0031921763,-0.09827659,0.01007539,0.00837667,-0.06225481,0.05262999,-0.10086197,-0.004015064,0.0589377,-0.0014749399,-0.09757281,-0.07061277,-0.022426795,-0.004321588,0.07612784,-0.043022417,-0.05020487,-0.0061365864,0.039443314,0.03598428,0.0011609731,0.07784718,0.001488384,-0.032313023,0.02237583,-0.003260262,0.05986571,-0.014581957,-0.13551216} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.359285+00 2026-01-30 02:01:11.796554+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2055 google ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB 1 t 2058 Go Karts Mar Menor unknown Un gran circuito muy divertido y con diferentes zonas,precios razonables,merece la pena un gran circuito muy divertido y con diferentes zonas,precios razonables,merece la pena 4 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I2 CR-N {} {"O1.02": "Un gran circuito muy divertido y con diferentes zonas", "V1.02": "precios razonables,merece la pena"} {-0.057632368,0.058231562,0.013237299,-0.02734698,-0.04722517,-0.026217215,0.04896229,0.11705857,0.004570407,0.018628312,0.06670935,-0.06896854,0.025627559,0.034176085,0.015406519,-0.0023299821,0.0012483743,0.031282753,0.0061862892,0.046021957,0.08348648,0.011693029,-0.06278873,0.07220483,-0.08315223,0.057976585,0.0051867273,0.015634995,-0.034881707,-0.06828306,-0.070295185,0.11898929,0.0772002,-0.013531656,-0.010984744,-0.05227331,-0.014117153,-0.027787715,0.018981006,0.09372373,-0.09718277,-0.03660121,0.03612874,-0.050261922,-0.01375421,-0.0112198945,0.096234515,-0.01499698,-0.06063512,-0.12935172,-0.010379192,-0.029342817,0.02616278,0.024805196,-0.0254396,0.037263144,-0.038733084,-0.003795214,0.027191872,0.03947005,-0.005945706,0.0052644033,-0.06680561,-0.00997536,0.040458996,-0.0055926484,0.04847782,0.01201577,-0.021394977,-0.002212332,0.13261011,-0.059301868,0.042243734,-0.07974421,0.016601041,0.035297245,0.059046596,0.044274278,-0.050589614,-0.08895893,-0.02421607,-0.08919821,0.0002979075,-0.0717971,0.09412311,0.034036335,-0.053593956,-0.021089518,-0.029288284,-0.07764012,-0.029588694,0.017130176,-0.05448792,-0.032225505,0.018026428,0.008841648,0.024797596,-0.1119724,0.036674935,0.053341113,0.08483224,0.015394685,0.03416767,-0.0056112194,-0.02408137,0.037786584,0.04467402,0.00739885,-0.0648772,0.046700213,-0.02895973,-0.0017325749,-0.058984328,-0.031110683,-0.0731053,-0.047852788,0.017474174,-0.0046889177,-0.019514654,-0.072638206,0.012834622,-0.025483165,-0.06888693,0.0021357618,-0.01708572,0.020879019,0.07054371,5.253474e-33,-0.063826,0.0009471375,-0.111398935,0.00079830975,-0.007508876,0.0454743,-0.042170875,-0.017516237,0.050618596,-0.016869262,-0.030241726,0.071816124,-0.008269009,0.055502508,0.024429724,-0.0407011,0.011236528,-0.09146037,0.06310509,-0.007797913,-0.03074474,0.026416074,-0.0021326654,0.037752025,-0.016713278,0.05500151,-0.043706752,-0.12068277,-0.1346111,0.04030018,-0.005112847,0.054801073,0.0067621204,-0.007227241,-0.053441003,0.04175858,-0.030906886,0.013663201,0.034033466,-0.06517207,-0.034516625,0.023157863,-0.032924935,0.07086895,0.042555142,-0.009417838,-0.005516985,0.06762139,0.1006944,0.04948518,-0.070031516,-0.089059785,-0.059880037,-0.043691028,0.019710498,0.0173626,-0.046958636,0.024248598,0.00858432,0.031106774,-0.029195178,0.06541492,-0.0668447,-0.0028532771,-0.007496207,0.102291234,0.021708626,-0.033213038,0.08309536,-0.0069536716,-0.14651479,-0.051724598,-0.0063824,0.07683708,-0.026724294,-0.035604734,-0.0043743285,-0.00918813,0.037476152,0.021864641,-0.07722671,-0.012174389,0.0259553,0.008482222,0.03235972,0.10293059,0.08490372,0.047346387,0.008208796,0.091526255,0.00417228,0.050135992,0.13487044,-0.047243644,0.050324984,-6.193168e-33,-0.0127407815,-0.0059141926,-0.025336439,0.059562128,0.008706433,-0.035793558,-0.019667102,-0.040068056,-0.061594162,-0.050153367,-0.02720436,-0.03249977,0.07530789,-0.10566544,-0.06878125,0.040050812,-0.0008879016,-0.04789409,0.0265461,0.010309914,0.002145067,0.056283213,0.0029537836,-0.08068375,-0.089631,-0.03126494,-0.021017851,-0.004827323,-0.015504891,0.022375874,-0.0571972,0.06395394,-0.0048401863,0.008570068,-0.0034954112,0.038081694,-0.011924635,0.09353679,-0.043604143,0.028243562,-0.04218516,0.018262668,0.034605116,0.062298864,-0.061413515,0.07102517,0.0070243906,-0.109978996,-0.05625841,-0.053527884,0.045158375,-0.026300814,-0.00933833,-0.055326715,0.040328223,-0.044516183,-0.021203872,-0.08153413,-0.08250033,-0.05375794,0.09329768,-0.0034980634,-0.024997476,-0.041143734,0.1176973,0.003928124,-0.021934351,0.0012986157,0.03927584,0.040445324,0.075253874,0.014120575,0.04985878,-0.07723739,-0.046785846,-0.023772156,-0.1390351,0.011194753,-0.0053054676,-0.015768478,-0.020369437,0.043955564,-0.011071005,-0.0354035,-0.029471759,-0.04705505,-0.015803346,0.0252202,0.07330857,-0.016393838,-0.018062087,0.029021548,0.011187533,-0.010843676,0.065990046,-3.349417e-08,0.036103226,-0.055001535,-0.0373391,0.003967735,0.031160498,-0.052068222,-0.015803115,0.06256122,-0.030996947,0.069115914,-0.01572399,0.06647107,0.02196397,0.029573191,-0.02366101,0.047338415,0.012857921,0.12103699,-0.01225691,0.010511698,0.09954914,0.0005680805,-0.032723047,-0.012807162,0.061184533,-0.011346135,-0.036228757,-0.0039940095,-0.0657965,-0.032313894,0.033875793,-0.05489557,0.05444469,-0.04585038,0.007316262,0.038661294,-0.008193291,-0.029308897,-0.04369933,-0.10401633,0.03100904,-0.07155001,-0.05916978,0.05122124,0.012074321,-0.11331419,0.00045825652,0.036627226,0.025960822,0.108451635,-0.057304367,0.020685442,0.08998114,0.022654181,0.04256539,-0.013616389,0.040494766,0.032171093,-0.03876804,0.0054957136,0.02273219,0.09818439,0.04478743,-0.086039856} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.909251+00 2026-01-30 02:01:11.804035+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2056 google ChdDSUhNMG9nS0VJQ0FnSUR1MmNYNS1BRRAB 1 t 2059 Go Karts Mar Menor unknown Muy buena experiencia para niños y adultos. Disfrutamos toda la familia muy buena experiencia para niños y adultos. disfrutamos toda la familia 4 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {A3.01} V+ I2 CR-N {} {"V4.03": "Muy buena experiencia para niños y adultos. Disfrutamos toda la familia"} {0.0046631834,0.0692281,-0.0061984025,0.048658084,-0.015339087,0.0063772113,0.030186031,-0.011528468,-0.011334185,0.020204525,0.08409063,-0.050195917,-0.035271727,0.0099972505,0.00024218488,0.006820925,-0.05495492,-0.012975588,0.037025854,-0.0021802979,0.048996318,-0.029284848,-0.045684796,0.031331513,-0.07156488,0.011360897,-0.02590144,-0.0017833133,-0.0010356809,0.052870907,0.01639765,0.08271762,0.12526242,-0.0035223751,-0.04304326,0.02239943,0.0713838,-0.00309929,-0.01566421,0.03272216,-0.085214,0.012885055,0.014024643,-0.07909495,0.007937246,-0.08693727,-0.00945426,0.04915975,0.045005083,0.0098240115,-0.017299721,-0.04409442,0.01152456,0.0541504,0.020199623,0.023980828,-0.04343014,-0.09778245,0.046847638,0.025711264,-0.03832119,0.047265496,-0.060465142,-0.01998434,0.025615672,0.025510764,0.03317688,-0.02131361,0.0048727603,-0.009271745,0.002013616,-0.010006487,0.034163382,0.053322162,-0.03246013,0.021977413,-0.033399753,0.008891757,-0.050278045,-0.050053667,-0.03666839,0.008741123,-0.023852227,-0.0528225,-0.018889578,0.06068559,-0.030446062,-0.03223005,-0.0047344905,0.00688948,-0.030221716,-0.0012394176,-0.017303398,0.015015935,-0.03803933,0.0046131434,-0.019293156,-0.14907691,-0.010714662,0.040401563,0.039085556,0.033490114,0.13329947,0.11012728,-0.110167876,0.016874222,0.006993287,-0.0852056,-0.040959585,0.06911103,-0.069975644,-0.044419456,0.008693578,-0.0077080876,-0.07362323,-0.102386035,-0.0110743465,-0.01749172,-0.0012717128,-0.06416964,-0.0069944537,0.08973088,-0.043977663,-0.027884759,0.015180681,-0.08054953,0.0065435404,6.6121366e-33,-0.01715009,-0.03112092,0.017959768,0.1239656,0.037410967,0.06963885,0.036215216,-0.02547497,0.021889003,-0.06590051,0.0052617243,0.014710313,-0.009315595,-0.041145522,0.056656938,0.07157813,-0.06631153,0.01676029,-0.00400458,0.09793241,-0.025919493,-0.01872391,-0.00065291655,-0.032182794,-0.023356657,-0.007498431,-0.0023815348,0.016464578,-0.0284126,0.05058362,0.018578723,0.033392496,-0.022027103,-0.096299395,-0.008262006,0.003521833,0.09720879,0.023047885,-0.019370675,-0.011875365,-0.055247545,0.022114385,0.0063393903,0.024165986,0.015568949,-0.006133169,0.0953715,-0.004973112,-0.0030384902,0.050445236,-0.03857404,-0.094862014,-0.09287388,-0.1056819,-0.01621148,0.042920023,-0.051999602,0.0074693304,-0.032583676,-0.066964574,0.10303116,-0.09585184,0.025686687,-0.10206754,-0.060138248,-0.03751552,0.11948259,0.032504585,0.0947242,-0.013490297,-0.08229476,-0.021013893,-0.028137436,-0.010433525,0.037530094,0.028997164,0.070468195,-0.033623133,0.06719411,0.037827034,-0.067870446,0.054306976,0.06356469,0.029131597,0.08314846,-0.008661027,0.0054336376,0.08563299,-0.028026076,0.04658573,0.014380577,0.05294642,0.051925786,-0.009231584,0.08045532,-7.3195036e-33,0.026920717,-0.0017933244,-0.01950923,0.0021969283,-0.018812746,-0.07868775,-0.0040212083,0.028225442,0.03321603,-0.0726854,-0.13778712,-0.15270863,0.1651196,-0.045840137,-0.014225509,0.037214126,0.024205748,0.005507956,-0.03135454,-0.03535634,0.010962616,0.10415578,0.02533442,0.00853227,0.0095867915,-0.08220685,-0.07222888,0.04739333,-0.11163583,-0.03446893,0.04016815,-0.027803672,-0.015101998,0.029635405,0.024168639,0.01821016,0.012471518,0.06250946,-0.020997426,-0.010639674,0.0353567,0.042700242,0.0038061321,0.022595054,-0.03729002,0.064235896,0.032622457,-0.07893117,0.024649769,-0.012619814,0.05813937,-0.027872887,-0.10756023,-0.021747356,0.064314514,-0.03668461,0.027638888,-0.044575267,-0.10523366,0.0063561113,0.07233525,-0.046136387,-0.080345914,0.032080457,0.013563576,-0.042367827,-0.04170596,0.010124116,0.0171651,0.09129511,0.044264253,-0.026890656,-0.02164518,-0.0045963353,-0.03940805,-0.067918256,-0.09080181,-0.04467977,0.010932885,0.023171835,-0.004804857,0.023335364,-0.034128338,-0.081205316,-0.0806222,-0.08321603,-0.020110358,0.039989647,-0.04066775,0.06154263,0.021945799,-0.0041796546,-0.04183759,-0.065604426,0.00040710878,-2.913381e-08,0.11596272,0.031025195,0.01306179,-0.008823524,-0.013845023,-0.011101927,0.0074287,0.08198944,0.047747348,0.012240268,-0.07961534,0.008708925,0.071013056,0.008868282,0.03294151,-0.012949586,0.16899744,0.06069753,-0.028566068,-0.044206813,0.11110395,0.011338271,-0.04804549,0.07838904,-0.048831306,-0.02932139,-0.041773267,-0.0050605168,-0.056528255,-0.00071174273,-0.0126580335,-0.011338025,-0.034169298,-0.08140932,-0.05049125,-0.04997575,-0.045971993,-0.025299128,0.01132052,-0.01007617,0.118103676,0.039632745,-0.028286345,0.0008606319,-0.026983831,-0.019394891,0.023378449,0.007121011,-0.047744736,0.055464093,0.0083410265,-0.033961844,0.041238654,0.021267107,0.015932584,-0.02908641,0.009155227,0.060680106,0.03656793,-0.0099402135,0.08999723,0.1321915,0.015626615,-0.03789485} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.925313+00 2026-01-30 02:01:11.806784+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2059 google ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB 1 t 2062 Go Karts Mar Menor unknown Un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼 el mejor circuito y el mejor precio un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼 el mejor circuito y el mejor precio 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {V4.03} V+ I3 CR-N {} {"O1.02": "Un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼", "V1.02": "el mejor circuito y el mejor precio"} {-0.102577336,0.076721855,0.03209269,-0.032673974,-0.04641014,-0.034950953,0.049654093,0.0749395,0.0029869354,0.044455584,0.07153477,-0.04228917,0.031991478,0.018418657,-0.053792346,0.06664467,0.014069403,0.00963498,-0.0090145515,-0.008512598,0.07670667,-0.019692343,-0.11294045,0.050142933,-0.043188084,-0.0073062456,0.027512202,0.03105062,-0.041446183,-0.12059598,-0.07546631,-0.020899244,0.020560825,-0.007417003,-0.061307583,0.06784784,0.03839127,-0.045688804,-0.018827956,0.03997686,-0.07838543,-0.05823272,0.04089151,-0.08920444,0.0562533,-0.046044312,0.04381694,-0.026578398,0.016703617,-0.08867017,-0.048612893,0.013122897,0.062335674,0.058775384,0.01713592,0.018014565,0.0051847445,0.09645685,0.041927088,0.02136223,0.036213025,0.01766403,0.028099218,0.006877499,0.00862088,-0.009194461,0.0071575083,0.023236731,-0.02520113,0.01282663,0.1195522,-0.09657869,-0.017014416,-0.04166547,0.039163478,0.036180105,0.0019326808,0.006504419,0.01653558,0.0031399578,-0.021719718,-0.07275833,-0.08031161,-0.06140944,0.02340946,0.02801862,0.005178843,-0.062024444,0.018459354,-0.03971178,-0.07387723,-0.024514033,-0.08060624,-0.05113154,-0.03294277,-0.071757965,0.041245308,-0.009024088,0.0004960688,0.031060986,0.11773189,0.018899728,0.008663202,0.015002522,-0.08249874,0.08371656,0.0012453722,-0.013879568,0.04659237,0.0020077932,-0.035432037,0.026346,-0.08936728,-0.0016991247,0.0072326865,0.018173462,-0.009853124,0.051182568,0.011126765,-0.066405356,0.00057998026,0.008010356,-0.051840216,-0.011864793,-0.040316686,-0.06566143,0.085321695,5.829769e-33,-0.06039738,-0.02247651,-0.0015208673,0.04147826,0.025736142,0.025682088,-0.07672088,0.044735305,-0.011256184,-0.061133757,9.236674e-05,0.103282645,-0.041965988,-0.016080916,0.06143559,-0.05030183,0.01358384,-0.09189912,0.09547056,-0.02493498,0.02821798,-0.047570094,-0.013228402,0.03053879,0.013676323,0.029129617,0.060839497,-0.058736924,-0.102680646,0.04719454,-0.030162174,0.10576487,0.042099882,-0.007896129,-0.07431959,-0.015200432,0.038399264,-0.008120911,0.023784768,-0.0565739,-0.05409812,0.020063806,-0.03286201,-0.07179367,0.032266147,-0.049226273,0.068284154,0.024144188,0.08951896,0.035488736,-0.057494655,-0.046506967,0.016057318,-0.07284489,0.05160999,0.030483069,-0.027198693,0.06435097,0.09605787,0.06218148,-0.07231018,0.06185039,-0.06155054,0.024278978,-0.0732904,0.019094195,0.053263254,-0.045442335,0.085976094,0.010929141,-0.08343622,-0.0063916016,-0.049144853,-0.033857625,-0.028830206,-0.04188026,-0.06259804,0.0063973023,0.012077818,-0.0029134722,-0.05366526,-0.04148603,0.033900324,-0.010835011,0.06413124,0.0984296,0.05762847,0.018037075,0.0010490153,0.11574769,0.04784315,0.046753872,0.07605442,0.024492854,0.060825724,-9.222443e-33,-0.070437655,-0.013374302,0.04746328,0.024673695,0.030598821,0.0174881,0.03709488,-0.044657845,-0.04869913,-0.059680775,-0.055850677,-0.099422485,0.028215835,-0.0007281616,-0.05492396,-0.008131442,-0.060244296,-0.08407914,-0.06799776,0.013316142,0.04612053,0.11335032,-0.009719863,-0.03479524,-0.06716757,-0.035694547,-0.095291734,0.05784754,-0.02491671,-0.017652916,0.022301974,0.021556448,-0.028875662,0.035996187,-0.021401312,0.008154277,-0.001408235,0.035058625,0.035869073,-0.0002897077,0.017326172,0.09444702,-0.041790172,0.008818639,-0.09277498,0.012436528,0.009259649,-0.07160439,0.037145197,-0.028597752,-0.021934306,-0.049058486,-0.032291576,-0.060537424,0.005334623,-0.03967534,0.001687576,-0.05720048,-0.050386697,-0.002412135,0.026861005,-0.031629387,0.04022896,0.019137908,0.059551716,0.018028708,0.052350353,0.06486305,0.09299169,-0.002358348,0.12280271,0.011481163,0.00011578202,-0.089674674,0.033221412,-0.080438636,-0.14666398,0.034816682,-0.0009613772,-0.056768198,0.008653187,-0.00023930782,0.0024601032,-0.11448857,-0.044668693,-0.038676802,0.018459199,0.053525414,0.058782786,0.0015723201,-0.02277607,0.11056396,-0.105517745,-0.021680621,-0.0058414764,-3.449615e-08,0.034078214,-0.044062052,0.034644708,-0.0150063075,0.0727457,-0.12272643,0.009821215,-0.008901822,-0.0038376607,0.07465304,0.0007893428,-0.052024145,-0.034186635,-0.021154333,0.02519552,0.05614822,0.047090907,0.08775467,-0.004849044,0.008173927,0.022568317,-0.013374586,-0.021732513,-0.0037105812,0.065909535,0.0074901013,-0.030296506,0.059874676,-0.07376191,0.047103073,-0.08688903,0.02983234,-0.03806613,-0.059485026,-0.010760314,-0.00237435,0.01626058,0.011802816,-0.055706322,-0.13175227,0.033121593,-0.014675346,-0.03544137,0.071386926,-0.023086855,-0.051619604,-0.01735264,-0.0028128482,-0.019550035,0.06596111,-0.08889038,-0.07837443,0.036467306,0.015654948,0.056825783,0.0015691513,0.024915861,0.01518647,-0.055244666,-0.02643143,0.102684304,0.041707657,0.02126754,-0.07903988} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.965448+00 2026-01-30 02:01:11.815429+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2060 google ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE 1 t 2063 Go Karts Mar Menor unknown Personal muy agradable y circuito guapísimo, para pasar un buen rato👍 personal muy agradable y circuito guapísimo, para pasar un buen rato👍 5 2020-02-01 01:52:39.833374+00 es v5.1 E1.04 {V4.03} V+ I3 CR-N {} {"E1.04": "circuito guapísimo, para pasar un buen rato👍", "P1.01": "Personal muy agradable"} {-0.10992021,0.035526518,-0.00047498837,-0.062589996,-0.0658013,-0.011659097,0.1267461,0.07915589,0.022735659,0.008072374,0.099944495,-0.028832844,0.055599652,0.006484415,0.01587922,0.010128046,-0.0716035,0.052805725,0.028492246,0.0036768068,0.083449975,0.014329865,-0.053848293,0.0860083,-0.083323404,0.024115734,0.034548685,-0.02517737,-0.01893935,-0.052201696,-0.019242829,0.07578333,0.024957389,-0.00043174086,-0.018759662,-0.002376375,-0.0053611808,-0.057477005,0.053563353,0.038703386,-0.079342544,-0.08258239,0.035868935,-0.06736643,0.07032235,-0.056012303,0.043699846,0.008748294,-0.008911574,-0.024558641,0.00409452,0.012046558,0.03569003,0.0041485084,0.04874076,-0.05368029,-0.009692832,-0.010440645,0.013057021,0.036113825,0.0062699933,0.028836312,-0.013551655,-0.0060099936,0.010831861,0.005634782,0.01061086,0.016096,-0.015028064,0.038536727,0.10056898,-0.09072186,-0.0015831533,-0.02078006,-0.048263,0.019970493,0.023299327,-0.006618109,-0.026039202,-0.03774571,-0.009278441,-0.004871192,-0.03494065,0.021574033,0.024417844,-0.0038913223,-0.030923458,-0.016286388,-0.041077,-0.052350577,0.03562917,0.009776134,-0.054904107,-0.017105676,-0.013380019,-0.08453477,-0.013365573,-0.09019373,-0.050626077,0.06626272,0.042612847,0.04947779,0.06888655,0.036886387,-0.07343236,0.065070115,0.033814985,-0.013993651,0.0111150695,-0.022983078,-0.07595349,6.0553655e-05,-0.11478949,-0.0068528973,0.0219061,0.045505587,-0.038436577,0.05968394,-0.024342364,-0.08601928,0.01758545,0.04038682,-0.10026302,-0.03792802,-0.045790467,-0.0876392,0.13962467,5.2494672e-33,-0.07800799,-0.021660756,-0.024632925,0.006067232,0.01603017,0.069601566,-0.07566999,0.008709817,0.025619788,-0.005644074,-0.012199483,0.08430345,-0.015315208,0.08695722,0.04869459,-0.0036544916,-0.026185567,-0.03394035,0.10148232,-0.0064373696,-0.006370921,-0.07407104,-0.0013671528,0.060572237,-0.013730236,0.0034848184,0.020421393,-0.05778822,-0.05497866,0.052469295,0.044005238,0.014957301,0.024627615,-0.113715686,-0.058621667,-0.091580816,0.031854574,0.043025292,0.03483556,-0.048916698,0.024454158,0.039567314,-0.0005804551,0.03801246,-0.01167903,0.03416912,0.046176374,0.073056065,0.03623478,0.050380602,-0.11303404,-0.07495677,-0.0899711,-0.002233939,0.04552779,-0.020005237,-0.04311907,0.051212233,0.037535343,-0.054984376,0.058473114,0.053968564,-0.011495091,-0.06519952,-0.075657494,0.010959148,0.059746873,-0.018701985,0.040313255,0.015137854,-0.10021977,0.017817177,-0.05302198,-0.0043299366,-0.022641676,0.0004961601,-0.036646273,0.030634493,0.015405377,0.019429402,-0.101796456,0.015758853,0.041406106,0.015829619,0.08453378,0.13187155,0.0839496,-0.011226739,-0.04571757,0.12873352,-0.022019077,0.081778124,0.06594267,0.018486563,0.010710626,-5.6448164e-33,-0.010500559,-0.018585118,-0.015737746,0.028354574,0.045589518,-0.05984576,-0.007216613,-0.022380205,-0.01719462,0.029013753,-0.06391725,-0.076412685,0.08971983,0.008442892,-9.73371e-06,0.05656523,-0.03967137,-0.0021650484,-0.07683627,-0.053905092,0.023451481,0.0785024,0.0051047043,-0.08986419,-0.052021936,-0.0048236465,-0.06735,0.025325786,0.026374398,0.009839262,-0.03683629,-0.015957106,-0.098396406,0.04823118,-0.03844581,0.0019662215,0.093540855,0.06089418,-0.015745198,-0.005294427,-0.044967297,0.07908247,-0.023925243,0.02037492,-0.0390816,0.021025646,0.013519747,-0.154224,-0.06088891,-0.042095512,0.03477822,0.007286687,0.048026685,-0.052818708,0.0058290353,-0.0479665,-0.0034162004,-0.1108676,-0.06917945,-0.05399617,0.064122066,-0.015113754,-0.048322596,-0.004540661,0.067826934,0.026836777,0.026026845,0.074033454,0.07936839,0.0025556688,0.079103835,-0.042742126,0.05502972,-0.015400831,-0.06369233,-0.044402305,-0.09066365,0.016073208,0.053298835,-0.013626137,0.025047397,0.014505727,-0.035496745,-0.0630763,-0.036091212,-0.059625648,0.012672847,0.037472513,0.051189348,0.004798967,-0.037073392,0.062406104,-0.06983726,-0.0029091327,0.018067261,-2.7889564e-08,-0.04252259,-0.035785533,0.006471064,0.017081633,0.01939155,-0.12765093,-0.06282578,-0.022836242,-0.012802897,-0.031827718,-0.0076543735,-0.033829834,-0.022125227,0.06674727,-0.027431885,0.08366888,0.068361044,0.08039885,0.034446705,-0.039226085,0.1337884,-0.034865912,-0.037990574,0.05919849,-0.0035017314,0.0689536,0.0030216335,0.03402034,-0.04579793,-0.051516794,0.03480774,-0.007689894,-0.0094252825,-0.036629733,-0.014209574,0.03692657,-0.008416107,-0.0122897085,-0.0010969882,-0.010248696,0.03520796,-0.0812678,0.0008804035,0.060996495,0.05196633,-0.07247853,0.045299076,0.0022539785,0.010039108,0.08206308,-0.014322954,-0.078800365,0.1243786,0.04743122,-0.009157165,0.042943597,0.07013086,0.031642817,-0.06371633,-0.0185208,0.044471744,0.09854949,-0.05548134,-0.07425455} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.978226+00 2026-01-30 02:01:11.820529+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2061 google ChdDSUhNMG9nS0VJQ0FnSURwMG9XLW1nRRAB 1 t 2064 Go Karts Mar Menor unknown Con reserva tuvimos que esperar 2h y 15'. Me pregunto para qué sirve hacerla. Gracias. con reserva tuvimos que esperar 2h y 15'. me pregunto para qué sirve hacerla. gracias. 1 2024-01-31 01:52:39.833374+00 es v5.1 J1.01 {J2.01} V- I3 CR-N {} {"J1.01": "Con reserva tuvimos que esperar 2h y 15'. Me pregunto para qué sirve hacerla. Gracias."} {0.0054018283,0.07371762,0.031822726,-0.042233698,-0.053511936,-0.012057361,-0.019954128,0.07713162,-0.036575746,0.049657226,0.040934335,-0.05113348,-0.046702232,-0.023556955,0.034927595,0.0220599,0.0048128194,-0.029531462,0.05050037,-0.037623785,0.09560673,0.02923218,-0.049690045,0.052218255,-0.07576075,0.003207007,0.0013547532,-0.017275857,-0.071762644,-0.08405916,0.009672013,-0.0055932924,0.006342184,-0.017874958,-0.021349356,0.036074612,0.062130105,-0.09635644,-0.052598353,0.02450764,-0.09740843,-0.021063555,-0.053987693,0.027911214,0.050661936,-0.06162248,0.014990426,0.07666447,0.051730715,-0.03218699,-0.06399797,0.008464607,-0.009012383,-0.0018275224,0.01805764,0.047345866,-0.035569627,0.0019312939,0.11342401,-0.008636284,0.021439012,0.07088131,-0.14476515,0.0038419776,-0.08158324,-0.07732433,0.064090945,-0.021010906,-0.07615483,0.13317016,0.036572445,0.019685877,-0.00922987,0.010037969,-0.03904682,-0.00073213084,0.058409773,0.016214686,0.023615096,-0.00036221408,0.02607429,0.0025599513,0.015774436,-0.019842003,-0.0004718722,-0.016664527,-0.010265729,0.07281972,0.022102851,0.00420637,0.0068981354,-0.00050386024,-0.06361618,0.035605643,-0.09397427,0.036310375,-0.03652354,-0.06596142,0.045234393,0.014865188,0.09874482,-0.0041339765,0.06298311,0.050649676,-0.0643241,0.04910816,0.04219619,-0.0037843154,0.051210266,0.08459063,0.016466336,-0.0008304015,-0.024166474,-0.038015958,-0.030761806,0.07037315,-0.030777397,-0.05364618,0.028405592,-0.08890116,0.03788573,0.029097036,-0.0016811164,-0.052522976,0.020605093,-0.099181786,0.02172482,6.1633924e-33,-0.015049554,-0.044780187,0.07447068,0.06050584,-0.0060383542,0.0017706582,-0.029678697,-0.0077322843,-0.04815175,0.031446744,-0.0035556646,-0.052980803,-0.057945322,-0.036290385,-0.0043054223,0.07707784,0.061020207,0.011202801,0.0017946892,0.04256748,-0.07848207,-0.09813301,0.019748071,0.024885975,0.02814409,-0.054452777,-0.021539416,-0.03333687,0.0021950968,0.046812788,-0.012918013,0.0146313105,-0.007864511,0.009331402,-0.024195135,-0.041109003,0.14195016,0.003505862,-0.038266197,-0.04377491,0.08416318,0.040500052,0.070032895,-0.005279915,0.06069077,-0.044146847,0.030521758,-0.016517581,0.0069924267,0.022697551,-0.0666872,0.007335949,-0.015808297,-0.07831091,0.0190329,0.053918425,0.010354515,0.07003821,0.032017894,0.007345693,-0.015457728,-0.016467365,0.0378754,-0.029425947,-0.072900034,-0.06788006,0.07438021,0.0116605675,0.08140737,0.10243547,-0.021604376,0.018975403,0.0049056094,-0.0005144743,0.037929505,-0.022679873,-0.0011360215,0.03427267,0.0008438919,0.06279861,-0.036964454,-0.001643291,-0.0028465958,-0.017799119,0.10010877,-0.023532748,0.06671147,-0.0009454775,-0.0027399028,0.08987459,-0.022801332,0.053657904,0.01527887,-0.02718923,0.014209836,-5.7554716e-33,0.045659322,-0.013110076,0.013285653,0.071209654,-0.029518055,-0.0073421504,0.023177337,0.0994097,-0.07566546,-0.14548294,-0.03136252,-0.11828263,0.118728645,-0.017223839,0.00417184,0.045944683,0.020710055,-0.080867864,-0.07598993,-0.056566484,-0.005255908,0.030282764,0.038722098,-0.030859366,0.0116139585,-0.10611811,0.006585108,0.017439174,-0.117686145,0.014976812,0.024763618,-0.07112816,-0.030431831,0.024895115,-0.059206214,-0.01343345,0.042754225,-0.00016803226,0.038054395,0.05515226,0.012922127,0.104167804,-0.0103728995,-0.03153045,-0.041409038,0.029558225,0.032146625,-0.13182962,-0.028039334,-0.07914231,0.06794148,-0.030115243,-0.073212355,-0.019595351,0.07820512,-0.083077565,-0.047443844,-0.0775357,-0.021305798,-0.0010640547,0.058556084,-0.030635389,-0.053683326,-0.030730331,0.13338405,0.011690731,-0.03676179,0.041342616,0.017634997,0.07518513,-0.017167771,-0.028444655,-0.02609512,0.066030115,-0.07014571,-0.098331764,-0.03797218,0.038339403,0.06685556,0.027257927,0.042463314,-0.009113647,0.015628232,-0.09741541,-0.036032356,-0.04225034,-0.01701507,0.048087876,0.047548488,0.07647753,0.017846223,0.04691281,-0.046006188,0.0056204717,0.004934963,-2.997919e-08,-0.022648245,-0.011108223,-0.01648084,0.017848788,0.037295096,0.029240802,-0.023916082,0.012140158,0.06361195,0.021262445,0.0038078341,-0.028454166,0.055097185,0.011873785,0.025198644,0.027110012,0.15680131,0.044466946,-0.042519826,-0.076926425,0.10926686,0.06795359,-0.047715798,0.008848232,0.010407353,0.037049234,-0.033500396,0.0064658443,0.0151523575,-0.050259072,-0.08955186,0.009323216,-0.02322225,-0.09557145,-0.056315187,-0.03652885,-0.036507305,-0.005979315,-0.009103997,0.058010183,0.053052455,0.04802588,-0.09621238,-0.011139433,-0.058309894,-0.029014101,0.029906355,-0.0076994295,-0.03929833,-0.014543141,-0.06295381,-0.03539702,0.12675293,-0.030641329,0.06602419,-0.022050472,0.015418167,0.052002434,-0.080445416,-0.030329889,0.09677744,0.06985438,-0.07432434,-0.015749099} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.990276+00 2026-01-30 02:01:11.825491+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2045 google ChZDSUhNMG9nS0VJQ0FnSUNKekstU0hBEAE 1 t 2048 Go Karts Mar Menor unknown Buena experiencia! Cuidado con el cars si eres principiante 😅 buena experiencia! cuidado con el cars si eres principiante 😅 4 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.02} V+ I2 CR-N {} {"V4.03": "Buena experiencia! Cuidado con el cars si eres principiante 😅"} {0.000177856,0.081489466,0.053819355,-0.043262873,-0.03148826,-0.011269964,0.09841122,0.07293043,0.0030228593,0.014236388,0.11174991,0.03036816,0.049954098,-0.045520887,0.02046629,0.011541908,-0.0029274037,0.0151818,-0.06924201,0.06332957,0.0134449415,-0.07740791,-0.022438068,0.09583828,-0.06367325,0.032889318,0.015797945,0.043736387,0.0038973726,-0.060305074,-0.06359464,0.06310021,0.13667321,-0.0074861185,0.005551044,-0.046365675,0.051799737,-0.07833095,-0.044220455,-0.016113713,-0.09025847,-0.08989882,-0.03426253,-0.065771066,-0.0054912856,-0.04888584,0.09591208,0.043412484,0.03124955,-0.12207442,-0.028927349,0.036704287,0.0501936,-0.05520024,-0.0957972,-0.004592785,0.017395953,0.0061543672,0.041108526,-0.00049159426,0.051340867,0.047168635,-0.0907196,0.02368068,-0.0031405054,-0.0031162808,0.042786695,-0.015401168,-0.06898886,0.039293334,0.10604909,-0.034598187,0.04405569,0.019770348,0.0008958012,0.06486263,0.035474587,-0.031241665,-0.040755264,-0.058040448,0.018795982,0.016763538,-0.014150042,-0.00039038502,-0.009695146,-0.0076129087,-0.030208904,0.022005867,0.016825203,0.004772532,-0.05968131,0.06845239,-0.04518686,-0.033652596,-0.030046923,0.0236557,-0.0020463318,-0.08429665,-0.010739187,0.04276784,0.06849949,0.1060142,0.09087332,0.04115284,-0.06575917,0.044720966,-0.005618426,0.008296969,0.005630701,0.02088334,0.023201918,-0.08948087,-0.018793315,-0.014212536,-0.11464739,-0.0063327886,-0.054798167,0.010537342,0.005580457,-0.05607481,0.011586901,0.01558049,-0.035852145,-0.059467983,0.07467534,-0.07205426,0.065133914,4.4099093e-33,-0.11038272,-0.0057888846,0.024954313,0.08470252,-0.00932255,0.031122085,-0.042207327,0.017368987,-0.032518905,0.0057852976,0.026890516,0.014392761,0.0122200735,-0.0062823775,0.042369388,0.112977855,-0.087655224,-0.042890362,0.027618712,0.03767067,-0.051192123,-0.017122507,0.017958287,0.035621557,0.016036458,0.05216683,0.019117087,-0.042669717,0.019439971,0.050796147,0.001202571,0.10255634,-0.013163327,-0.007247976,-0.029511657,0.019340884,0.03146044,-0.010208359,0.019909756,-0.060671892,0.033859268,0.008627193,-0.066965744,-0.030619228,-0.040976547,0.021895388,0.055531956,-0.0051762452,0.039960854,-0.0071906834,-0.07834345,-0.059724625,-0.035735246,0.0024748384,0.0059508686,0.018845117,-0.034723267,0.04633338,-0.03522223,-0.11984693,0.015106168,0.08084937,0.030090827,-0.07025611,-0.06264367,-0.028104234,0.0009906259,0.038302965,0.10001622,0.0442747,-0.0060418225,0.0040733,-0.02371091,0.01222661,0.01834877,0.023486331,-0.08573794,-0.0279153,0.02220718,0.023856487,-0.088843085,-0.015097701,0.009439146,0.030544437,0.10455227,0.106933914,0.004368035,-0.008062375,0.0020345831,0.14830819,-0.031176955,0.03235349,-0.013205157,0.008223626,-0.006528859,-6.5498134e-33,0.026856327,0.017084945,0.023273498,0.027737422,0.0063823326,-0.026492884,-0.05728346,-0.0056625926,-0.047573447,-0.053485192,-0.055308856,-0.08355548,0.11186296,0.019022238,-0.025002414,0.024661645,0.06608669,-0.07063153,-0.0702483,-0.031214606,-0.04642675,-0.008357675,0.031004546,0.057561703,-0.04604573,-0.1015634,-0.03791606,0.023745367,-0.03837308,-0.08920748,0.027556578,-0.015694851,-0.041925058,0.043699592,-0.03815206,-0.017741999,0.016316338,0.0069217426,-0.0017626376,0.017068317,-0.07931576,0.0015802977,0.014970717,-0.0050424947,0.00016158566,-0.012714786,0.030081581,-0.15278329,-0.02469224,-0.03859087,0.06769305,0.00043066003,-0.049533572,-0.008734582,-0.047404762,-0.019074867,0.111073166,-0.055092674,-0.058425747,0.030861452,0.06714593,0.026632205,-0.05029381,0.013332791,0.03242983,-0.10889334,-0.022698335,0.029655503,0.08049676,-0.006560633,0.11020398,0.029671673,-0.06409696,0.064893246,-0.117968425,-0.013754331,0.020295858,-0.02166154,0.050295416,-0.03659769,0.024214841,-0.0014873783,0.038169313,-0.018324189,-0.034350764,0.07061277,-0.041941155,-0.0025562986,-0.0065991343,0.048796184,-0.017193358,0.08483284,-0.080839865,-0.02621185,-0.061621893,-2.8795858e-08,-0.0066048736,0.00086311495,0.042004373,-0.016099866,0.004357813,-0.06617046,-0.036820132,0.02109564,-0.07479753,0.002372449,-0.0004436044,-0.050292417,-0.038124707,0.07185302,-0.0030628287,0.022113107,0.14291185,0.126202,-0.063102186,-0.05687787,0.042562846,-0.015879195,-0.07943864,0.05618045,0.011856621,-0.04437903,-0.044123698,-0.021609297,-0.0034004673,-0.062952474,-0.05064197,-0.009871011,0.019406937,-0.06547401,0.0156651,-0.03824605,-0.001566045,0.0064675333,0.046267763,-0.052708488,0.13711189,-0.017311253,-0.07483559,-0.008290298,-0.051875073,-0.03627423,0.013718654,-0.017724939,-0.04222375,0.056069445,-0.022270903,-0.054802705,0.0489235,0.094025694,0.062117033,-0.033951003,0.026899451,0.051305875,-0.021070864,-0.0064899093,0.07302536,0.113432646,-0.019247876,-0.044768866} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.27008+00 2026-01-30 02:01:11.769199+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2046 google ChdDSUhNMG9nS0VJQ0FnSURwOG9TRV93RRAB 1 t 2049 Go Karts Mar Menor unknown Très bonne expérience à passer en famille pour ceux qui aiment la course auto. très bonne expérience à passer en famille pour ceux qui aiment la course auto. 5 2024-01-31 01:52:39.833374+00 fr v5.1 V4.03 {O4.04} V+ I2 CR-N {} {"V4.03": "Très bonne expérience à passer en famille pour ceux qui aiment la course auto."} {-0.009057576,0.017534502,-0.01862112,-0.078513525,-0.031368412,0.047857266,0.06475289,0.0982955,0.019661115,-0.007547524,-0.04190269,-0.107018776,0.06468829,-0.051971577,0.006403473,-0.043036398,-0.0900621,0.017955186,0.033536114,0.010491331,-0.0014136988,-0.06162671,0.02332314,0.07042112,-0.10529567,-0.037323933,0.011782724,-0.014685845,0.012998894,-0.11331096,0.057052583,0.08998357,-0.07137668,0.07116534,-0.04457418,-0.00738428,-0.033226233,-0.0600961,-0.02074983,0.0029670103,-0.06253025,0.017320266,-0.026399601,-0.049234863,0.036954146,0.045735694,0.021375163,-0.021185946,-0.016262516,-0.03985235,-0.0034124844,0.009996947,0.04029428,-0.030816263,-0.08933103,0.071234785,0.006183103,-0.015437006,0.025284057,-0.005003532,-0.05950293,-0.030367294,-0.084136195,-0.053545967,-0.101685025,-0.037019335,0.007241782,0.047028694,0.016552266,0.08925958,0.07037625,-0.028092688,-0.07884347,-0.019544072,0.087993294,0.006177706,-0.058013193,0.024235275,-0.08200075,-0.09841489,0.021920724,0.013587533,-0.032400817,-0.022627832,0.080589555,-0.03707647,0.04312064,0.04736426,0.09578685,0.022931153,0.0045999447,-0.06404888,-0.112843335,0.0039207544,0.021236403,0.03425509,0.04389473,-0.07110568,0.023140192,0.030736156,0.007901008,-0.024128381,-0.007417355,0.060064565,-0.043728292,0.033835564,0.012264926,0.008546885,0.021278804,-0.006185976,0.04828865,-0.01770564,0.012216143,-0.036905445,0.010242509,0.0869928,0.019384714,-0.1177933,0.028658003,-0.06600288,-0.0023762744,0.018172748,-0.036465652,-0.025673108,0.074552946,-0.07820507,-0.019138804,-9.993548e-34,-0.083678015,0.017027037,-0.0012662669,0.01159494,-0.037026502,-0.02830406,-0.027663471,0.07166692,0.041466642,0.013562305,0.013094354,0.02243458,-0.009296863,0.025176229,0.056526348,0.017632727,-0.0036706587,-0.034503277,0.01481727,-0.043774106,-0.07062043,-0.021746075,0.03890567,0.020062378,0.0034917037,-0.0014954237,0.05132867,-0.020452475,-0.052419923,0.026359726,0.0061981585,0.0024633605,-0.06858958,0.07661854,-0.018032327,0.060262833,-0.014675287,0.08414339,0.02070657,0.020511646,0.092968695,-0.019661097,-0.014007571,-0.07586349,-0.056813948,0.021723824,0.07382827,0.019561712,0.07337398,0.013214085,-0.048812058,-0.044986963,-0.10715846,-0.04561407,0.040735763,0.029694863,-0.075179346,0.002829066,-0.07354922,-0.033445623,0.035363987,-0.05216002,-0.01854459,0.09694958,-0.059128653,0.01218672,0.080068365,0.045894902,0.0421986,-0.017779777,-0.13724437,-0.053682957,-0.004157587,-0.036696624,0.07686637,0.081145965,-0.04496823,0.022322003,0.06429516,0.010181684,-0.04785283,-0.07919264,-0.008255467,-0.006335854,0.03066373,0.046511218,0.033606928,-0.0063484763,-0.009313287,0.077450655,0.042637613,-0.053435903,0.025042212,0.096568726,0.0075323815,-2.4509114e-33,0.016806755,0.05521699,0.043257095,0.11685085,0.09316306,0.050786816,0.014890073,0.056190968,-0.00025587267,0.050510943,-0.101879686,0.042671587,0.053418227,-0.012427178,0.006371742,0.015484401,-0.0025250714,0.004254346,-0.04581087,0.014514045,-0.040228862,-0.006725989,0.0911123,-0.029101692,-0.007699111,0.020273365,-0.0043828506,0.110548876,-0.0012301402,-0.020492703,0.031814758,0.050994787,0.053942177,0.019077633,-0.034345645,0.036980327,0.1298944,0.09159321,-0.03813265,0.14445817,-0.024356356,0.051774513,-0.009824252,-0.012424809,0.050649405,-0.030718775,-0.022411581,-0.11421489,0.027520794,0.04498939,0.046428557,0.009442461,-0.024254585,-0.073802955,-0.02254721,0.00082390377,0.040592056,-0.059174784,-0.06351207,0.02370146,0.07725131,0.09558491,-0.031054826,-0.016648572,0.039990164,-0.0606493,-0.10864236,0.022130445,-0.10038254,0.09290495,0.08861757,0.030045724,0.027598927,-0.0072381124,-0.06127807,-0.02181536,0.0012469322,0.00610733,-0.023812,0.02869898,-0.046665095,-0.02844273,-0.072791345,0.05799093,-0.0811542,0.044819683,-0.05307684,-0.043051325,-0.001255863,-0.057207935,0.05926203,0.042298492,-0.01844688,-0.014194069,-0.015041318,-2.3746235e-08,0.021180565,-0.019603798,-0.07441822,0.011190786,0.05321221,-0.09546873,-0.08007847,0.013899733,-0.11708812,0.07180328,-0.008776407,0.0065143104,0.03055828,0.03188501,-0.044679664,0.028911848,-0.040234014,0.03387548,-0.038890854,0.010330997,0.06695156,-0.02833921,-0.04090145,-0.07793556,-0.022664882,-0.08227258,-0.011141306,0.05131316,-0.05450641,-0.026944645,-0.022852823,0.05667617,0.020578966,-0.03352543,-0.044850815,-0.032723833,0.0607954,0.02499033,-0.015454541,0.06927398,0.08160433,0.05113833,-0.031703915,-0.064200506,0.03173502,-0.058127716,-0.06293831,-0.04562757,0.055882275,0.029196067,-0.028012067,0.02892203,0.0007387316,0.025693368,0.038459435,-0.00749293,-0.07473445,-0.08461054,-0.075147465,-0.10362253,-0.007807095,-0.0011785227,0.025533997,0.00903906} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.280097+00 2026-01-30 02:01:11.771482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2047 google ChdDSUhNMG9nS0VJQ0FnSUNhcmJxZG13RRAB 1 t 2050 Go Karts Mar Menor unknown Buenas instalaciones y coches con el rendimiento y conducción que se espera.\nMuy recomendable. buenas instalaciones y coches con el rendimiento y conducción que se espera. muy recomendable. 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I2 CR-N {} {"O1.02": "Buenas instalaciones y coches con el rendimiento y conducción que se espera.\\nMuy recomendable."} {-0.010843022,-0.040533144,-0.015617843,-0.07906513,-0.048024785,-0.043577448,0.025229132,0.044940162,-0.06924369,-0.038374446,0.076483935,-0.0094297575,-0.03648781,0.03482224,0.07869719,0.04006919,0.034873687,-0.006771476,0.032010276,-0.070696585,0.07325503,-0.053782452,-0.0908466,0.04554504,-0.070665136,-0.049778584,0.0021547456,0.02180805,-0.03873059,-0.12108646,-0.012469771,0.088035926,0.08222402,-0.025696745,-0.04547147,0.015583476,0.098657236,-0.08704591,-0.05632806,0.026435299,-0.10693348,0.017502457,-0.041163087,-0.035191916,-0.0044718194,-0.08919618,0.034132,0.005708238,0.07491211,-0.038367342,-0.021404853,-0.023113333,-0.03652397,0.0054079494,0.011423855,0.049156208,-0.012385363,0.024682412,0.048899442,0.014445428,0.0515792,0.03914173,-0.01668346,0.030759657,0.034534186,-0.052498866,0.028003614,0.03626362,-0.008944044,-0.036523245,0.048514947,-0.055508837,0.01835754,0.012161142,-0.020946525,0.025738882,0.021953497,0.015885038,-0.02802255,-0.004721915,-0.025898987,0.07568249,-0.042413775,-0.008479893,0.03875722,-0.033683173,-0.061304037,-0.025290756,-0.020249026,-0.0065784277,0.047242306,0.0666934,-0.06820654,-0.024417121,-0.025385177,-0.0005746263,0.0006366002,-0.044363793,0.028249072,0.012587008,0.027294252,-0.013769992,0.09164404,-0.012147191,-0.088807635,-0.051235422,0.009399812,-0.005694391,0.02624325,0.027009413,-0.08451902,-0.030529752,0.0025823514,-0.009423281,-0.045767006,0.05146805,-0.08453914,-0.01491683,0.017498402,-0.08826924,0.050243817,0.047718387,-0.0093272235,-0.023503965,0.026764177,0.025777314,0.046312455,7.958276e-33,-0.030953301,0.042584,-0.064684615,0.08414936,0.010512546,0.0073362025,-0.014668971,0.04063115,-0.026075978,-0.039883677,-0.040300418,0.05411753,-0.049369488,0.044641886,0.1299037,-0.06242608,-0.015980234,0.035366755,0.0022591043,0.020633243,-0.041824367,-0.025180543,-0.005404504,0.049451668,0.062480118,-0.02831036,0.061397817,0.01587691,-0.008089279,0.042258635,-0.037073236,0.042538356,0.005740811,-0.02204825,-0.03245154,-0.013127705,0.024720317,-0.0009997282,-0.00090763834,-0.041690134,0.040235236,0.062309463,-0.039243717,-0.011480944,-0.0066485265,0.027424587,0.09480732,0.021873042,0.047867816,0.006550656,-0.11739846,-0.05864061,0.021080593,-0.0015315288,-0.017212508,0.007440356,-0.00216911,-0.03305707,0.055174105,-0.042145427,-0.06617298,0.025492165,0.036279026,-0.037151564,-0.05142989,-0.04565424,0.07796328,-0.0012373776,0.08934122,0.047057875,-0.13130116,-0.030030407,-0.017019682,0.014276834,-0.0067113694,0.005766009,-0.08063693,0.007826204,-0.037137486,0.041610084,-0.0782434,0.05629978,0.015933346,0.026588174,0.14575246,0.028708834,0.07674922,0.04897941,-0.027966332,0.09938222,0.008272523,0.15679295,0.04879345,-0.009508195,0.053633884,-9.139001e-33,0.0024159087,-0.07106568,0.02827338,0.04766057,-0.004431482,0.052676264,-0.000542462,-0.020157855,-0.027889889,-0.11073868,-0.12427332,-0.087250486,0.077639356,-0.010805788,-0.07358704,0.06933216,-0.07736901,-0.043009978,-0.0347815,-0.042180885,0.01723653,0.10234078,0.062163264,-0.09148824,-0.017442921,-0.0885799,-0.091740444,0.019941064,-0.09096538,0.015712203,-0.015806526,-0.034942873,-0.07174022,0.054041024,-0.07605804,0.010977234,0.06460107,0.054593578,0.042417634,0.026583813,0.01799915,0.07792521,-0.033288516,-0.023676636,-0.026904747,-0.008713971,0.035128802,-0.1516482,-0.015366772,-0.03191732,0.029498857,-0.028756037,-0.04647527,-0.08666587,0.020127255,-0.057135914,0.014196896,-0.046979662,-0.05672989,-0.014061073,0.03343154,-0.005579489,0.038955685,-0.09446709,0.08398096,0.0041490607,0.061452057,0.052473202,0.040573996,-0.0027322762,0.097438015,-0.02231102,0.004903084,0.0141619295,-0.033454467,-0.097196065,-0.103639275,0.037777647,-0.008283522,0.045800395,0.015818438,0.022314742,0.04923514,-0.03999318,0.004501301,0.019311063,-0.0028850548,0.0047939927,-0.0005503915,0.021241756,-0.07187997,0.011183909,-0.040912826,0.03244157,0.004204243,-3.5859973e-08,-0.014186465,-0.05132565,-0.00042528438,0.02028242,0.026509931,-0.074723646,-0.06837646,0.12617901,0.030845571,0.00255169,0.036953308,-0.03674375,-0.04345148,0.12544098,-0.010037657,-0.022877162,0.055137876,0.1582534,-0.04220403,-0.047244422,0.11223234,0.024635354,0.015971258,0.10246178,0.060168736,-0.022884088,-0.070332274,0.006986382,-0.000678722,-0.00030452758,-0.04007386,-0.013683692,0.057698075,-0.055501416,0.01778817,-0.039480712,-0.052597538,0.040897056,0.02309505,-0.06173594,0.045535002,-0.03446152,-0.081905745,0.0105984025,-0.015878832,-0.10917765,-0.010207062,-0.015946718,-0.026357567,0.031319868,0.025804173,-0.01888829,0.055379935,0.01667171,0.07865708,-0.030163515,-0.016574819,0.014147398,-0.009894,0.013760084,0.018211247,0.07616849,0.054331146,-0.08450172} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.291096+00 2026-01-30 02:01:11.77626+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2066 google ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE 1 t 2069 Go Karts Mar Menor unknown Los kar van mas fuerte que otros de otros sitios con mismo motos ambiente acojedor y cercano. Circuito muy largo al que volvere los kar van mas fuerte que otros de otros sitios con mismo motos ambiente acojedor y cercano. circuito muy largo al que volvere 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-B {} {"E1.04": "ambiente acojedor y cercano.", "O1.02": "Los kar van mas fuerte que otros de otros sitios con mismo motos"} {-0.043649387,0.033986326,0.028503053,-0.03505617,-0.014653251,-0.09268296,0.0018061037,0.032875035,0.039435364,0.062653765,0.10321375,-0.051614627,0.033554345,-0.0071007214,0.036919683,0.032434657,0.001275431,0.08491174,0.04371405,-0.012046673,0.048696842,-0.020776398,-0.015265011,0.037097335,-0.0753797,0.0284808,0.047598053,0.022753974,-0.03380314,-0.1326883,-0.03249323,0.092146024,0.023112543,-0.0207005,-0.04219838,0.020914808,0.010544843,-0.030379552,0.00013536106,0.021043964,-0.106238246,-0.079248905,0.071074344,-0.05583741,-0.0018455895,-0.030006409,-0.020835204,-0.059252325,0.052852504,-0.054751605,0.014027765,0.004697338,0.040368427,0.014566174,-0.07695244,-0.051038593,-0.018452499,0.084054336,0.07645904,0.016614217,0.07355219,0.055349093,-0.07024838,0.05270111,-0.03988808,-0.04314166,0.028085634,0.016126815,-0.060461216,0.0439929,0.06981196,-0.076463126,0.04143075,-0.06694405,-0.019051986,0.027542895,-0.0015101144,-0.07725296,0.0006329216,-0.030299706,0.03862774,0.0009421649,-0.089299165,-0.07318051,-0.030537998,0.007848938,0.0049448856,-0.013992241,-0.010859007,-0.041306384,-0.037410688,-0.0033148562,-0.08480823,-0.035196804,0.0018971908,-0.017371945,0.062318753,0.013199165,0.078369156,0.0011550055,0.0774703,0.07116558,-0.040977724,0.04535997,-0.08032114,0.009586365,-0.019352546,-0.054697532,0.032119747,0.033730675,-0.06983592,-0.00097405614,-0.03653489,-0.014582334,-0.026982734,-0.07442782,0.030888274,-0.02509177,-0.028215403,-0.017140841,0.06049039,-0.04861473,-0.051386315,0.02085082,0.07269248,-0.08029139,0.13051015,9.663168e-33,-0.058478307,-0.051976494,-0.0032949592,-0.03843873,0.06429992,-0.032661308,-0.05089112,-0.007782107,-0.026314544,0.037148997,-0.082787864,0.05665887,0.010405642,-0.011301785,0.11472665,-0.016586766,0.0061403066,-0.11176443,0.020485252,-0.009719104,-0.07333758,-0.060589034,-0.022978961,0.066217,0.0023172342,0.046893578,0.05070016,-0.06500839,-0.12899762,0.025663929,-0.014573624,0.031200677,0.009410355,0.03362917,-0.03810966,0.031237008,0.045364667,0.06293531,0.0009167268,-0.11870434,-0.029222338,0.0021067157,-0.0146021405,0.064434156,0.0075964513,0.00668195,0.017644318,0.04612036,0.11130154,0.060444202,-0.08864882,-0.09509804,-0.057644747,-0.030092632,0.09471246,0.025535895,-0.04103919,-0.014692937,-0.022554182,0.020907046,-0.0064007873,0.0699391,-0.011596021,-0.06953984,-0.020390058,-0.015033994,0.044911046,-0.057297386,0.05993758,0.022198891,-0.06698826,0.017403062,-0.0365601,0.026871135,0.0008219237,0.049080584,-0.019702327,-0.016115427,-0.017549023,0.010589507,-0.065290265,-0.044073373,0.0498085,0.027041439,0.011873268,0.02287998,-0.042492535,0.07041001,0.010233835,0.15913695,0.0009033051,0.020855352,0.03927092,-0.028956091,0.0055441046,-1.1582787e-32,-0.028947685,0.028979136,0.008501494,0.044527162,-0.017736623,0.0104091875,-0.06559093,-0.027557086,-0.02882604,-0.017471885,-0.094670735,-0.028379919,0.08052973,-0.031067552,0.02046329,0.08116206,0.008465752,-0.009443728,-0.067532934,0.041080993,0.0172204,0.11495232,-0.028139105,-0.058181826,-0.038759165,-0.020331021,-0.017153485,0.04824888,-0.09315592,0.05777576,-0.01868411,-0.021605251,0.06925152,0.063193634,0.012350133,0.030249454,0.10175467,0.024307191,-0.057967678,-0.021959426,-0.012564835,0.11741919,-0.022393446,-0.03969301,-0.0443263,0.008720369,-0.043758143,-0.11042203,-0.034651607,-0.088006295,0.081650704,-0.05368948,-0.031997044,-0.05169862,0.049040597,0.04264056,-0.031079326,-0.040181793,-0.077619776,-0.03183855,0.11239608,-0.06282424,-0.033688772,-0.070663914,0.022001507,0.02910163,-0.023962699,0.032506682,0.07253263,0.029405992,0.09169303,0.015269255,-0.018432463,-0.028172437,-0.010569808,-0.075541005,-0.1007346,0.0063300324,-0.041665062,-0.008925646,0.008021872,0.011246837,-0.0023851693,-0.05026911,-0.034781214,0.019012308,-0.032355685,0.014045082,-0.0062979064,-0.014035888,0.02579977,0.038187437,-0.080306776,0.016450167,-0.056647692,-4.1141767e-08,0.019987548,-0.027745826,-0.02600651,-0.017576149,-0.010460615,-0.043254122,0.09802973,-0.030315086,-0.03237413,0.060071927,0.0373067,-0.012279128,0.06781207,0.043574873,0.09487859,0.0655323,0.07490914,0.1103628,-0.059207007,0.0050436864,0.09616415,-0.0041454043,-0.055466782,0.026703194,0.092631206,0.063054,-6.927291e-05,0.0449223,0.060698915,-0.015665157,-0.06588928,0.024133844,-0.044518013,-0.059475448,-0.014941419,-0.000704397,-0.039415248,0.0076465686,0.003186375,0.018716736,-0.04897346,-0.07028495,-0.10687962,0.044680294,-0.036350843,-0.051113136,-0.002850785,-0.047280867,-0.026426129,0.02593033,-0.027170964,-0.04606853,0.047774415,0.046771206,0.06624609,-0.057579685,0.03080635,0.029245395,-0.07228197,-0.054672115,0.030753572,0.12396858,-0.002784637,-0.04920022} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.055667+00 2026-01-30 02:01:11.840957+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2067 google ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB 1 t 2070 Go Karts Mar Menor unknown Fantástico, la pista es enorme y el personal muy atento. fantástico, la pista es enorme y el personal muy atento. 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Fantástico, la pista es enorme", "P3.01": "el personal muy atento."} {-0.0206933,0.01999728,0.014298507,-0.03668013,-0.016840853,-0.015202619,0.083733,0.05454847,-0.011330016,0.008714154,0.056731895,0.003391557,-0.0012612906,-0.006421922,0.036601182,-0.004106589,-0.03319991,-0.0039976714,-0.004491435,0.05376154,0.10681745,-0.05653077,-0.070851795,0.088890456,-0.14020492,-0.037808087,0.03454429,-0.014995191,-0.07238207,-0.07115663,-0.018216018,0.11384295,0.05129183,0.03508047,-0.02837038,0.0027546259,0.028405363,-0.04103672,-0.04640319,0.010401432,-0.088020466,0.00075742824,0.046205837,-0.042255957,0.020870008,-0.020178534,0.036515504,0.017809875,0.02683562,-0.025898453,-0.112712346,0.009960431,-0.004811969,0.014381017,-0.022585021,-0.0058617126,-0.038538,-0.09122604,0.022276735,0.05512816,-0.0359206,0.017763058,-0.06260616,0.06091746,0.07691903,-0.0017730753,0.020646429,-0.02128236,-0.077277154,0.063485906,0.08618357,-0.032235883,-0.01914204,0.03448946,0.032829724,0.067287914,-0.034231573,-0.034542736,-0.08143935,0.0047963345,-0.030628137,-0.021254856,0.019360423,-0.02243444,-0.0020562974,0.034448817,0.0107395705,-0.006031165,-0.0078933,0.0032836983,-0.030994345,0.028592382,-0.0337115,0.010748084,0.0019751266,0.016051708,-0.007314568,-0.028963087,-0.01601803,0.058883056,0.06501018,0.048949506,0.027226962,0.0011958337,-0.056551773,-0.0060464903,0.04244153,-0.028893288,0.0038194025,0.037838463,0.017161107,-0.04709948,-0.051387407,-0.008656211,-0.03968049,0.031334125,-0.0018504248,-0.02938461,0.009118978,-0.05330528,0.07352726,0.08751605,-0.04909222,0.016184114,-0.056735273,-0.028689208,0.020128137,1.6906955e-33,0.0024756468,-0.04753291,0.016416429,0.023715394,-0.045470707,0.01877976,-0.026277192,-0.045668315,-0.038619228,-0.055599425,-0.03488893,0.12798074,0.0141558945,0.05035894,0.027969604,0.04670633,0.031189824,-0.02960281,0.07725924,0.031860255,-0.052023422,-0.022500366,-0.04380688,0.017450418,-0.009922764,0.025949528,0.005490447,-0.046919167,-0.051803596,0.0440058,-0.08271194,0.023834435,0.031090638,0.027158536,0.0676827,-0.08169125,0.03770926,0.045096274,0.032726396,0.013390833,0.057153124,0.007912804,-0.03745481,0.03542902,-0.06561143,0.01568347,0.026109535,0.0744332,0.0134849455,0.007156385,-0.062492423,-0.07448565,-0.026558131,-0.057135306,-0.038302254,-0.037414256,-0.08296405,-0.020119153,0.0033923404,-0.05347991,0.042418137,0.054594625,0.04626061,-0.029734721,-0.066648036,-0.0539756,0.052855883,0.07595958,0.1061824,0.09338376,-0.06326463,0.003161695,0.018378338,0.033269342,0.031371444,-0.01426099,0.008467401,0.035506584,-0.044613007,0.072792284,0.015789319,0.031280193,0.05150731,0.030297438,0.025768446,0.077706754,0.10081308,0.04976356,-0.06402537,0.09619824,-0.022569463,0.07184069,0.076597095,0.0021775928,-0.0147011345,-2.9014755e-33,-0.001493306,-0.062390726,0.020763135,0.06072967,0.012633323,0.008695578,-0.05222763,-0.018881954,-0.044558253,-0.009954755,-0.09586194,-0.10993039,0.17968929,-0.030043278,0.0031580005,0.084307685,-0.050049257,-0.061358295,-0.12482711,-0.026177695,-0.07800527,0.07226772,0.026633237,0.03082508,-0.045255374,-0.038205743,-0.047332507,0.022918265,-0.06434875,-0.011747407,-0.00857745,-0.008912972,-0.079800844,0.017108807,-0.063577205,0.109428965,0.0056694755,0.03829428,0.03838435,0.039076157,-0.077200115,0.08206609,0.025463609,-0.050944205,-0.024125779,0.057165667,0.05116271,-0.15819809,-0.08592888,-0.06323854,-0.042532604,-0.018299077,0.006096229,-0.030954873,0.036873635,-0.04871075,5.4139386e-05,-0.10663663,-0.074800484,-0.015611861,0.022664484,-0.06034967,-0.068056144,0.0049012094,0.054011274,0.0069057164,0.005176117,-0.047735825,-0.02351601,0.06220975,0.09105105,-0.020101238,-0.04810881,0.038264714,-0.0322917,-0.038655616,-0.081629544,0.03663445,-0.0019016248,0.06907458,0.048940208,0.013533243,-0.04012918,-0.060262498,0.010550246,-0.04648701,-0.037605956,0.046267558,-0.030790206,0.039025735,0.025663555,0.03958544,-0.10552316,-0.07627145,0.013150176,-2.2316609e-08,0.03814699,-0.036525957,-0.0030136767,0.037938435,0.010506022,-0.07584758,0.01862927,0.03587753,0.014998386,0.07420652,-0.0109554995,-0.054254085,0.03724416,0.0133222705,0.01250567,0.047496904,0.12305681,0.13467598,0.0074654995,-0.027768156,0.03646087,-0.008553247,-0.012439901,-0.027760431,-0.05314298,0.092999056,-0.0015270683,-0.02211529,-0.055294286,-0.026727773,-0.026508858,-0.017252715,-0.025281914,-0.09579874,-0.06702404,-0.023422275,0.025799379,-0.008026129,0.033625092,0.020951746,0.105211504,0.027531214,-0.102343485,0.045697514,-0.009792226,-0.09469413,0.03284271,-0.036878023,-0.0248295,0.032468896,-0.004171468,-0.01369791,0.09653219,0.044525735,0.07013061,-0.033763204,0.07160104,0.049298454,-0.069221824,0.0220149,0.05759713,0.16543573,0.0045228116,-0.051387418} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.070959+00 2026-01-30 02:01:11.845052+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2069 google ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE 1 t 2072 Go Karts Mar Menor unknown Muy bien y entretenido como siempre.\nUn poco lentos para cobrar pero bien muy bien y entretenido como siempre. un poco lentos para cobrar pero bien 4 2022-01-31 01:52:39.833374+00 es v5.1 J1.01 {} V- I1 CR-N {} {"J1.01": "Un poco lentos para cobrar pero bien", "V4.03": "Muy bien y entretenido como siempre."} {-0.01854578,0.06640913,-0.05597405,-0.045379877,-0.10369968,0.005484099,0.05006461,0.018165275,0.0038029354,-0.03389334,0.05969276,0.017555637,-0.017323188,0.038380776,0.058266632,0.038051832,0.05665555,0.03678826,0.012284356,0.047409344,0.010853823,-0.048061993,-0.061449334,0.06954664,-0.14605965,-0.05965529,-0.031239763,-0.008337716,0.004416467,-0.08306339,-0.006543758,0.016429897,0.04748438,-0.027393775,-0.02394524,-0.045391686,0.050042246,-0.06109555,-0.009198773,0.01579481,-0.053365637,0.008544983,-0.05550138,-0.069410786,-0.0022863403,-0.039534774,0.07739625,0.05781385,0.0501249,-0.07288046,-0.03954336,-0.002379364,-0.0620433,-0.09028422,0.029914262,0.0046927496,-0.08230491,-0.05291079,0.0481667,-0.05053055,0.020832438,0.05602365,-0.043472994,0.06533709,-0.031183189,-0.084615745,0.08504554,0.061521787,-0.06682934,0.08046077,0.090588115,-0.07827316,-0.0037367668,0.023631064,-0.043617453,0.06827908,0.027841913,-0.001437337,-0.041718185,-0.05537084,-0.04486381,0.07017396,-0.031707402,-0.005254804,0.03178096,0.06605488,-0.011216403,0.023379162,0.050662633,0.003399403,6.072742e-06,0.053078666,-0.085841656,0.030767243,0.005203217,0.02306651,0.06543128,-0.05639811,-0.0009286785,0.054620504,0.068000324,0.06326536,0.13235009,0.019437583,0.009039691,0.0805203,0.013892151,-0.023779346,0.06969452,0.006704711,-0.04678656,0.038114917,-0.03163141,-0.023584541,0.0046326523,-0.008879119,-0.025520748,-0.012673191,0.0031263607,-0.055175614,0.012946579,0.0041297497,-0.06855498,-0.00027880527,-0.0069799013,-0.07744402,0.08266212,5.238943e-33,-0.03583321,-0.06183291,0.049329538,0.051268127,-0.0404446,0.02338202,-0.03589397,-0.04491698,-0.04831315,0.025266355,-0.048619602,0.0010960728,-0.016539918,0.09919669,0.025629744,0.0058974423,0.018567236,-0.009817276,0.059185714,-0.016978303,-0.03366196,-0.056177057,-0.04414645,-0.015051143,0.017268887,0.076045394,0.043079343,-0.11138873,-0.085329875,0.06588497,-0.007367242,0.045791507,0.013983289,-0.014503423,-0.026155196,-0.039264534,0.03201651,0.06493017,0.010696622,0.0039271624,0.08232879,0.01807466,-0.046975266,-0.01162872,0.031570084,-0.0227827,0.069046855,0.067554854,0.011005678,-0.012100228,-0.027077585,-0.07616484,-0.0788388,-0.04970344,-0.02217992,-0.0006926773,-0.025486873,0.026561718,-0.05209214,-0.03997471,0.007872432,0.009683287,-0.016085392,-0.018080177,-0.05234171,-0.054672617,-0.02058697,0.024769021,0.12787414,0.09172631,-0.025160361,0.028266864,-0.02675853,-0.07265593,0.07069994,-0.018361941,-0.024041144,-0.019689247,0.06919955,0.040358957,-0.02067205,0.04069487,0.051201757,-0.023344424,0.0798969,0.10158219,0.113171026,-0.010155986,-0.04597656,0.17766683,-0.0030975973,0.12547986,0.034752596,-0.058473602,0.035681672,-6.295879e-33,0.012736116,0.00732576,0.049767956,0.027026007,-0.02368275,-0.02022412,-0.017165845,0.047647376,-0.056390867,-0.06215534,-0.08698174,-0.13595194,0.11424418,0.01338749,-0.0048221643,0.03938979,-0.068699025,-0.067646146,-0.09661483,-0.002940366,-0.007186721,-0.029465228,0.0155484155,-0.026752071,-0.019833561,-0.054317523,-0.081385545,0.056434736,-0.009697893,0.004715481,0.036368895,-0.008254622,0.022959698,0.05677091,-0.012444628,0.01896785,0.005005705,0.052549146,0.045985408,-0.009725801,-0.017349673,0.07965831,-0.07762959,-0.0150726065,0.021838937,0.035883497,0.06520799,-0.11136793,-0.032006215,-0.053671435,0.077835195,-0.054033928,0.008124065,0.032209605,0.06291636,-0.053042114,-0.087377444,-0.09726261,-0.068225294,-0.018047616,0.027606143,-0.024364235,-0.06795789,-0.0036032232,0.08774236,0.043400705,0.016107373,-0.014052406,-0.012475384,0.0021111045,0.09089603,-0.021408875,-0.07270371,-0.049611375,-0.020620625,-0.08976848,-0.10451566,-0.014253599,0.002382051,0.09229429,-0.08721698,0.00039375332,-0.052782852,-0.040564906,-0.044616252,-0.021407591,0.007215888,0.048616856,0.016617125,0.050635833,0.012956705,0.050189637,-0.004426312,-0.1004249,-0.007316296,-2.9340667e-08,-0.007882434,-0.060307425,-0.053920697,0.023497831,0.018474407,0.045763362,-0.061193183,-0.031809576,0.029230177,0.09334107,0.028115379,-0.0110012265,-0.04444754,0.038767297,-0.009059786,0.03331754,0.07599599,-0.0128349895,0.018522527,-0.05772947,0.04691135,0.07761704,-0.0067668217,0.014266818,-0.04475192,0.031937532,-0.04354378,-0.038513925,0.016588274,0.036812764,0.03987729,-0.030206816,-0.03178949,-0.08814246,-0.039366003,-0.0072669075,0.0048584826,0.009368877,0.057383183,-0.04061766,0.11928563,0.011966668,-0.05385685,-0.004986115,-0.035769336,-0.08310045,0.020082315,-0.0070460257,-0.050449286,-0.012570589,0.013516387,-0.017960608,0.055911813,-0.052113585,-0.07517302,-0.0015044918,0.034963556,0.0029222465,-0.07727987,-0.02931773,0.064808,0.07755373,0.020499868,-0.0524154} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.092319+00 2026-01-30 02:01:11.850876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2070 google ChZDSUhNMG9nS0VJQ0FnSURhbnFLWVlBEAE 1 t 2073 Go Karts Mar Menor unknown Bien organizado. No está muy masificado y la pista está en buenas condiciones bien organizado. no está muy masificado y la pista está en buenas condiciones 4 2022-01-31 01:52:39.833374+00 es v5.1 J3.01 {E1.03,O2.05} V+ I2 CR-N {} {"J3.01": "Bien organizado. No está muy masificado y la pista está en buenas condiciones"} {0.06375914,0.015101436,-0.052344676,-0.047707625,-0.064055815,-0.013036802,0.015981784,-0.00057886087,0.010226137,0.0063165505,0.050636943,-0.023326453,-0.010544744,-0.008307304,0.023731131,0.0020815185,-0.014848872,0.017964115,-0.019569688,0.08940385,0.01982394,-0.11220471,-0.083772644,0.07813973,-0.09954473,0.017162949,0.043496497,-0.049646482,-0.06359804,-0.1148559,-0.023421783,0.06485812,0.1022126,0.04943209,0.033560257,-0.0009987855,0.11871571,-0.058059413,-0.013701361,0.047863815,-0.07472746,-0.0025837093,-0.0250202,-0.071748495,0.019621667,-0.032895062,0.009252277,0.010962117,-0.0098846,-0.090124205,-0.10052571,-0.028740726,-0.019244641,0.064135574,-0.010332079,0.032754727,-0.046740253,-0.033057798,-0.031250276,0.024630528,0.0042026057,0.05525195,-0.015236647,-0.008518815,0.056288835,-0.014890768,0.010673051,-0.04078258,-0.042681444,-0.031820223,0.12735824,-0.0402821,-0.05099499,-0.021447368,-0.021260737,0.03804077,-0.057287924,-0.0007603268,0.01636302,-0.013517918,0.00042520236,0.012342416,-0.04686844,0.0013209886,0.015164227,0.06594921,-0.05346769,0.027271334,-0.02032328,0.01368656,-0.016487254,0.10345831,0.03001125,-0.016967531,0.0349584,0.0033551126,0.006926624,-0.08742006,0.02970549,0.020880317,0.06700511,0.003393184,0.02633674,-0.018608352,-0.057618823,-0.011795322,0.033511627,-0.009421856,0.035649657,0.027090762,-0.08081144,-0.04772193,-0.068477765,0.022469828,-0.07258014,0.056248695,0.022339912,-0.034686312,-0.0008011112,-0.11441295,0.021771256,-0.00475967,-0.0479853,0.012359614,-0.01022005,-0.05351652,-0.019991994,2.4011239e-33,-0.043055747,-0.016142756,0.009007766,0.03714678,-0.08562055,0.051162023,0.021845687,-0.033422515,-0.06379332,-0.074341446,-0.050236423,0.13127676,0.0006399119,0.0110864425,0.09508748,0.010602543,-0.017900575,0.06549151,0.083762296,0.041129638,-0.0680909,0.054991163,-0.03522045,0.02968472,0.11268063,0.032461625,-0.04183931,-0.09115712,-0.06518262,0.027026506,-0.019583732,0.014592931,0.015388903,0.0025179693,0.010057465,-0.03338421,0.037981752,0.047961704,-0.03053418,-0.00887324,0.014614364,-0.035435803,-0.0010984796,-0.015467774,-0.018359313,0.08359802,0.038852904,-0.0010102771,0.06410731,0.0003312236,-0.026317716,-0.0017989851,-0.024703244,-0.04024921,0.031471334,0.0035048525,-0.07747832,0.053172644,-0.061334312,-0.08463785,0.022731747,0.020703949,0.002660685,-0.013319129,-0.033915784,-0.04308234,-0.026230155,0.052169017,0.17788959,0.05198687,-0.04847895,-0.04171531,-0.023544597,0.09525646,0.01538794,-0.0035223523,-0.023345457,-0.0127039505,-0.042044766,0.09571636,-0.0020983978,0.016447077,0.047708176,0.028946847,0.046512593,0.121348195,0.103351325,0.026869446,-0.03103328,0.09832779,-0.049195882,0.07682038,0.038348727,0.04574683,0.020651372,-5.196855e-33,0.012558101,-0.08768947,-0.029560419,0.032092486,-0.0023439815,0.0048958203,-0.015118542,-0.027567137,-0.03315428,-0.04737421,-0.02664763,-0.15914293,0.11311018,-0.004054803,-0.011695575,0.022968343,-0.06523349,-0.108166434,-0.03606823,0.014821579,-0.1028422,0.037090722,0.016379574,0.031297795,-0.043598466,-0.062391695,-0.10686524,-0.0036783507,-0.016567228,-0.05938092,0.01747574,-0.0064638746,-0.062507845,0.03417396,-0.025814664,0.041905623,0.025942616,0.0018713005,0.07482179,0.027467065,-0.0556732,0.060507413,-0.043122318,0.0035866909,0.002938625,-0.014073124,0.064727046,-0.1446092,-0.05529533,-0.06916576,0.040632043,-0.028492864,-0.02021354,-0.049222097,0.07082523,-0.009285414,-0.00851332,-0.04494749,-0.024894224,0.011063146,0.042227395,-0.014876352,-0.10124853,0.04157699,0.04907008,0.047051396,0.0066575557,-0.0021345424,-0.02147759,0.018639436,0.10559653,-0.060106073,-0.05469391,0.10785865,-0.044687044,-0.044060502,-0.07585579,0.011491774,0.037401415,-0.011803397,-0.01882303,-0.021418286,0.007600835,-0.06927516,0.04654118,-0.008345025,0.03793741,-0.005913397,-0.01497006,0.06891512,-0.008905926,-0.007834962,-0.08279758,-0.027873166,-0.01829493,-2.8482376e-08,0.026839562,-0.00917618,-0.03396807,0.026976408,-0.006449205,-0.087383814,0.05178549,0.08027966,0.011585804,0.07543133,-0.037231993,-0.06857191,-0.03390832,0.05124984,0.045867685,0.070225246,0.023336258,0.107308686,0.014026919,-0.036996678,0.071762145,-0.0018888912,-0.071601614,-0.061310094,-0.057892777,0.015020194,-0.046638023,-0.024292855,-0.068255104,0.045865376,0.009323058,0.017508827,-0.020912223,-0.047137294,-0.017691022,-0.022585832,0.044471648,-0.011589863,-0.009367829,-0.06984132,0.09144805,0.0789258,-0.10842614,-0.014876698,0.046649467,-0.09926018,0.047010344,-0.008313212,0.041110102,0.034264877,0.0019948643,0.033353962,0.07955207,0.011596224,0.043662973,-0.034240812,0.07110181,0.037802495,-0.030179592,0.0030935763,0.0073476573,0.0898712,0.0895011,-0.06333243} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.104914+00 2026-01-30 02:01:11.853548+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2072 google ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB 1 t 2075 Go Karts Mar Menor unknown Los Kars más pequeños corren bastante , bien cuidados ,bien de precio y gente muy agradable muy recomendable volveremos los kars más pequeños corren bastante , bien cuidados ,bien de precio y gente muy agradable muy recomendable volveremos 5 2019-02-01 01:52:39.833374+00 es v5.1 P1.01 {R4.03} V+ I3 CR-N {} {"O1.02": "Los Kars más pequeños corren bastante , bien cuidados", "P1.01": "gente muy agradable muy recomendable volveremos", "V1.02": "bien de precio"} {-0.010539939,-0.0060742465,0.013654628,-0.04205866,-0.08202182,0.04027652,-0.0015325596,-0.027907435,0.03222125,0.004490885,0.08777268,0.0027696842,-0.04629638,0.0091307815,0.013180411,0.017747993,0.014157225,0.014054958,0.014263859,-0.05510715,0.0122840395,-0.058696236,-0.12098379,0.12730317,-0.035452064,-0.0414755,0.024711104,0.018478353,-0.007203362,-0.0140239475,-0.008613475,0.05849074,0.09375637,-0.016169893,-0.070356354,0.039931733,0.017428918,-0.0012237565,-0.009986845,0.03258659,-0.09244649,-0.037426036,0.0041679563,-0.029204328,0.0135312695,-0.04259813,0.027582057,0.0044464404,0.021162178,0.02845789,-0.02298935,0.008149228,0.031779613,-0.07578505,0.0033113537,-0.059318736,-0.04423779,0.029829465,0.06572062,0.019757284,-0.028790781,-0.0074468213,-0.07783941,-0.0053833495,-0.02992484,-0.049154256,0.056012347,0.046375506,-0.075697854,0.0365269,0.08291962,-0.09087877,0.007930777,0.014622615,-0.046857387,0.073298655,-0.051535085,-0.015128793,-0.09895306,-0.07455084,0.09995005,0.024774572,-0.017494977,-0.03310299,-0.034539077,-0.0051604467,-0.0060467697,-0.028998448,0.033780407,0.004215842,0.011947353,0.04316743,-0.00980182,-0.017421916,-0.032206405,0.027181689,0.002055074,-0.09705673,0.07611062,0.019813221,0.07630441,0.061325002,0.07893856,0.023010457,-0.032791894,-0.021691835,-0.014625599,-0.017288264,0.048345976,0.094659336,-0.020756887,0.053274117,-0.044134725,0.024303598,-0.030920172,-0.030529108,-0.0038464584,-0.014507724,0.03386297,-0.11207122,0.08577921,0.007570101,-0.022488195,-0.068168856,0.016162653,-0.06740852,0.05280188,1.1231158e-32,-0.082739905,-0.029393671,0.035965193,0.06720198,-0.021457897,-0.07280753,-0.014046084,-0.01374266,-0.07945,-0.043343987,-0.030896824,0.08927508,0.04871009,0.023722485,0.07920751,-0.0032924323,-0.04772047,-0.034490537,0.05034203,0.061514467,-0.08695691,-0.0061962833,-0.0030668734,0.03148816,-0.003948851,0.045672398,0.020581923,-0.043602634,-0.057038363,0.0069626877,-0.007405452,0.0556495,0.009634706,-0.08576827,-0.09017607,0.015646618,0.0034346427,0.0027767518,0.020833159,-0.05658602,0.01959188,0.022364743,-0.03285814,0.06885094,-0.001479957,0.025951268,0.03982447,0.026692182,0.011574457,0.054003086,-0.07308322,-0.07965295,-0.13823456,0.0012177788,0.073469415,0.066696584,-0.05215153,0.0068399725,-0.058943048,-0.108085684,0.036673017,0.033489622,-0.010578412,-0.08087506,-0.023307053,-0.055610526,0.069704376,0.03639453,0.12555425,0.00903635,-0.05877152,-0.02333203,-0.045239374,-0.009102882,-0.0033223853,0.04261968,-0.014047182,0.06826286,0.015963625,0.094625615,-0.031390402,0.034572862,0.0016725826,0.009390909,0.059834607,0.07562833,0.07012256,0.025890809,0.009637911,0.11112416,-0.019476153,0.053523563,0.037069287,0.00024427057,-0.04844295,-1.15985315e-32,0.055961605,0.0011324297,0.07679811,0.15450664,0.00012109795,0.0034083652,-0.04716869,-0.03585368,-0.02362428,-0.04947737,-0.08671627,-0.0904031,0.082769535,-0.022539735,-0.026090788,0.05464686,0.024887871,0.0040610824,-0.08922079,-0.026321944,0.030061504,0.1373245,-0.024077754,-0.014883297,-0.044218313,-0.08322261,-0.057009857,-0.017385287,-0.08189671,0.044609424,0.06201264,-0.07137846,0.029092943,0.025364617,-0.0006098475,0.043099992,0.076871775,0.054092966,-0.00053085136,0.0785529,-0.002637142,0.13325563,-0.04412147,0.013729727,-0.056878977,-0.007401596,0.024822267,-0.09938892,-0.007761366,-0.07273886,0.07558653,-0.00039162912,-0.10358691,-0.03754243,-0.0026344904,-0.031376734,-0.010068783,-0.07445052,-0.030386467,-0.008589057,0.033681948,-0.03358287,-0.019705368,-0.033967063,0.032166425,-0.023623956,-0.008152201,0.023275454,-0.006528156,0.016797319,0.07078925,-0.007975621,-0.011083441,0.0048871418,-0.02909959,-0.019581787,-0.098856956,0.03919636,0.017544592,0.029499289,0.031122148,0.029769026,-0.011922946,-0.014692623,-0.028297542,0.017988695,-0.01909765,-0.015108143,0.023609059,-0.008471468,0.006632156,-0.028518992,0.009460721,-0.0690814,0.005383963,-4.2368693e-08,0.03745518,-0.06027964,-0.05411624,0.0077660233,-0.06472273,-0.05625456,0.0054869815,0.06397411,-0.023295604,0.0979523,-0.025775708,-0.047333036,-0.07198563,0.058500946,0.008345144,0.012617384,0.08612655,0.1267504,-0.04312195,-0.049674068,0.10541448,0.053653203,-0.050427094,-0.00726092,-0.0028333869,0.060971964,-0.06504754,-0.030613963,-0.026277559,0.029404314,0.002496265,0.0029995458,-0.042961445,-0.09668774,0.029605415,-0.037671536,-0.052381873,-0.023608524,0.039540753,-0.027837235,0.05246255,-0.08554915,-0.13513203,0.0453405,-0.059047483,-0.057537206,-0.022006994,0.03580032,-0.07413003,0.048434008,-0.020658284,-0.0406398,0.069273345,0.013695142,0.051867723,-0.058722552,0.07862106,0.055388834,-0.018113976,-0.022602413,0.072898224,0.100138776,0.060972657,-0.04835047} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.126793+00 2026-01-30 02:01:11.858869+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2073 google ChRDSUhNMG9nS0VJQ0FnSUNRcTRNORAB 1 t 2076 Go Karts Mar Menor unknown Har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen. har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen. 4 2019-02-01 01:52:39.833374+00 sv v5.1 O3.02 {A3.01} V+ I2 CR-N {} {"O3.02": "Har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen."} {-0.005138341,0.005142011,0.019080972,-0.08097546,-0.07683766,0.030886963,-0.007083053,0.13259776,0.054366693,0.00635719,-0.012418997,0.0090369,-0.023588665,-0.041480973,0.0151751675,-0.069050826,-0.059540108,0.09973184,0.07439837,0.024639338,-0.03388788,-0.019307248,-0.0055221007,0.0011450779,0.048535675,0.026112817,0.052225105,-0.06133048,0.03478147,-0.0079058595,0.082036294,0.052173156,-0.014609688,-0.007483875,-0.019377109,0.010671921,-0.061029,-0.040742557,-0.04249031,0.026959877,-0.030676594,-0.05303672,-0.035458222,-0.10019197,0.02785452,0.014778597,-0.0067800446,-0.06890747,-0.012759322,0.06898702,-0.085263856,0.0019527777,-0.035172775,0.04176272,-0.0011344464,-0.07584727,-0.007539206,0.0006570349,-0.041351855,-0.021879489,0.035730463,0.007898427,0.011818199,-0.014745194,-0.05668584,0.018881215,-0.006193512,0.022325248,-0.031733043,-0.025510324,0.032128748,-0.047640957,-0.02144994,0.02702306,-0.08625418,-0.117185585,0.039576337,-0.0688363,0.09870636,-0.07183964,0.054458886,0.07714383,-0.07769271,0.053428683,-0.051572464,0.016308839,0.074873686,0.050940763,0.039634965,-0.020402698,-0.0149445385,-0.0015626121,-0.036128145,-0.00044071517,0.05720991,-0.06980725,-0.032223456,0.05157211,0.07724822,-0.027474435,0.042837605,0.0010813865,-0.011189086,-0.008362577,-0.0887306,-0.097246416,-0.048410248,-0.07699415,0.054853667,0.04296732,-0.023212804,0.01518933,0.022909308,-0.031272143,0.0010006482,0.050077263,0.04855741,-0.10066919,-0.011436993,-0.05831594,0.0006483805,-0.035868783,0.03132838,0.042670418,0.101102695,-0.0587735,0.008075721,6.5529064e-33,-0.054731123,-0.12167167,0.005871527,-0.013522354,0.03526003,0.0055625164,0.020984797,-0.04647282,-0.009499024,-0.028655395,-0.05315214,-0.031252276,-0.00068485417,0.017598568,0.03733479,0.05907878,-0.015225141,-0.027339544,-0.027626414,-0.028263753,-0.021885846,0.0054908455,-0.01086547,0.026063425,-0.0049761767,-0.07750079,0.02506071,-0.015086111,0.028924042,-0.004398138,0.049529303,-0.07581223,-0.005335114,-0.038983017,0.0170693,-0.05645667,-0.010264454,0.03603417,-0.04318624,-0.018683814,0.039517265,0.024359973,0.05194285,0.03679854,0.050380263,0.08990174,-0.020454112,0.015739718,-0.00412648,-0.04234562,-0.06369968,-0.0077449256,-0.032090455,0.036587197,0.021151265,0.07778967,-0.04303986,0.07236264,-0.04672546,0.011488651,-0.00011045877,-0.017405089,0.08211312,0.019632826,0.05481046,-0.045669656,0.041760765,-0.057690483,0.026420327,0.030512769,-0.019220274,0.027366795,-0.06195783,-0.039288156,-0.06676608,-0.017141147,-0.07228577,0.062608615,-0.043773282,0.018891467,-0.022273123,-0.014000745,-0.012998801,0.06067478,0.031038815,-0.043308865,0.008320617,-0.017714886,-0.036392655,0.025355475,0.06580715,-0.027776085,0.06422184,-0.012479962,-0.031291045,-6.391215e-33,0.026628314,-0.034373816,-0.093940094,0.086887985,0.02310507,0.000528063,-0.0059667863,0.062609434,-0.06709851,0.011518945,0.027429255,-0.030543761,0.060102902,0.05664399,-0.042632952,0.045497566,0.12011351,-0.011206592,-0.041724645,-0.007078992,0.007782343,0.000119363795,-0.024755292,0.055066183,-0.021054322,0.056020357,0.047326237,0.055740684,-0.1168417,-0.03240466,0.024562806,-0.012457797,-0.021011032,-0.024203353,-0.004379345,0.013576137,0.15276906,-0.0015179253,-0.0890481,-0.024541136,-0.0032569985,0.028937684,-0.033495758,-0.007850585,-0.026387533,-0.110000506,-0.012116937,-0.025824588,-0.05031946,-0.056825727,0.037609063,-0.06933175,0.09185945,-0.09832175,0.02423403,-0.041676022,-0.1247168,-0.07306251,0.0028364584,0.008671491,0.112948805,-0.062847786,0.009090187,-0.00076780695,-0.042920597,-0.032670535,-0.012893111,-0.0539185,0.03397437,-0.072183594,0.07444541,-0.031080622,0.023878517,0.028948272,0.029597374,-0.045477152,0.035208344,0.047199752,0.038897004,-0.05714344,-0.036106043,-0.13484073,0.040113043,0.040108044,0.0031283426,0.05353568,0.045584824,-0.008555031,0.005276321,-0.019555703,-0.0066545424,0.04251041,-0.014632969,0.058480956,-0.045754254,-2.674531e-08,-0.009675867,-0.1587094,-0.072894484,0.059091393,0.0019301067,-0.08338554,-0.0027078714,-0.026734645,-0.0957802,0.049565136,-0.050874736,0.059839148,-0.050118707,0.04962246,0.13638157,0.008298005,-0.0068713743,0.07095965,-0.030354936,-0.053335566,0.061812833,-0.0163666,-0.024213012,0.021564228,0.019130517,0.10263967,0.043699984,-0.024562163,0.19740367,-0.06205031,0.022451252,0.09224178,-0.013494914,0.029058238,2.235749e-05,0.03428541,0.058553334,0.09079228,0.03883163,0.15097506,0.026551956,0.0043822885,0.09418813,0.03629048,0.0066659483,0.0052302047,0.044700596,-0.019297455,0.060420126,-0.12258995,0.019187849,0.043326396,0.039863806,0.052220486,-0.027622705,-0.0128228655,-0.030896612,-0.004177482,-0.0074322107,0.041912712,0.022630151,0.027104253,-0.057443134,0.07563986} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.137929+00 2026-01-30 02:01:11.861676+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2075 google ChdDSUhNMG9nS0VJQ0FnSUR5a3YyOTJRRRAB 1 t 2078 Go Karts Mar Menor unknown Buen precio, buen circuito, buenos karts y muy buen trato. Completamente recomendable! buen precio, buen circuito, buenos karts y muy buen trato. completamente recomendable! 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.02 {O1.02,P1.01} V+ I3 CR-N {} {"V1.02": "Buen precio, buen circuito, buenos karts y muy buen trato. Completamente recomendable!"} {-0.021514373,-0.036032606,-0.007322837,-0.035451423,-0.09110028,0.04396681,0.0091446815,0.053393617,-0.057705123,-0.005890891,0.061180472,0.03972855,-0.06569769,-0.014413898,0.03586921,0.045982353,-0.0012049899,0.09327826,0.06822722,-0.086571425,0.05578178,-0.027483374,-0.031101776,0.13828182,-0.0344761,-0.034756996,0.031881984,0.05666774,-0.0137668885,-0.09541716,-0.069036804,0.08834188,0.077390015,-0.021721717,-0.03421051,-0.047377553,0.048927344,-0.091942094,-0.0032423027,0.025583172,-0.07742045,-0.03151321,0.009033953,-0.0012267339,0.052511506,-0.07900878,0.01302469,0.03141802,0.065365836,-0.007247772,-0.0059928033,-0.031882845,0.056026053,0.013702958,-0.046762764,0.027275616,-0.037135817,0.03312388,0.11166087,0.022804456,0.0024260895,-0.013375589,-0.10118663,0.022995811,-0.021573504,-0.0096894745,-0.012579222,0.076786555,-0.032662824,0.058690812,0.12056225,-0.096419185,0.020663658,0.066823125,-0.025821924,0.08105098,0.006891538,0.0033650266,-0.072456695,-0.050229724,0.036290556,-0.008709129,-0.015560397,-0.052743085,0.012933402,-0.037709177,-0.034798574,-0.00044150162,0.002303192,-0.04630646,0.0046416726,0.08273686,-0.05564329,-0.038353503,-0.031271297,0.024032906,-0.021024428,-0.078698926,0.026882786,0.036272466,0.05213018,0.02590946,0.067608215,0.025413424,-0.072911784,0.0054989345,0.04857578,0.028635634,0.06599278,0.004489946,-0.0337963,-0.0025993946,-0.04273374,-0.040984076,0.0063045174,-0.0504388,0.012868707,0.02893241,0.025358133,-0.03508622,0.024355825,0.0469858,-0.04368155,-0.012341384,0.0146491965,-0.059973735,0.06070996,6.691915e-33,-0.06623231,0.01063292,-0.0429162,0.044003908,0.03317419,0.009045991,-0.066864714,-0.015563369,-0.06914634,0.036721732,-0.08607952,0.071964644,-0.059346035,-0.0141916685,0.08164554,-0.055662442,-0.005264043,0.007789346,0.091011666,-0.03334859,-0.0744892,-0.061756212,0.006221301,0.052137908,0.020358039,0.002321868,0.03208182,-0.071062975,0.01656464,0.029309161,0.035285328,0.08834384,-0.012752044,-0.04143474,-0.15425402,-0.010332913,-0.06372701,0.004938299,-0.03686875,-0.013571932,-0.01333449,0.032419838,-0.037657674,0.058900926,0.0013554584,-0.06724735,0.017189782,0.08073101,0.1196655,0.030284883,-0.13051675,-0.07427311,-0.06791383,0.008229097,0.020711381,0.05631756,-0.0032386358,0.08186242,0.040500604,-0.033465214,0.014379721,0.09030238,-0.003196698,-0.096393846,-0.08211452,0.040025838,0.059045788,-0.05031805,0.06801208,-0.03401232,-0.084344134,-0.035557203,0.044569355,-0.022817882,-0.007126566,0.03565286,-0.07132688,-0.008021618,-0.0011114974,0.022457242,-0.1087335,-0.03321545,0.02962926,0.061828088,0.10942629,0.10358953,0.041317515,-0.030256614,-0.014620649,0.100052,-0.02798393,0.07211145,0.050349988,0.04167968,0.019002527,-5.321698e-33,0.076060586,-0.045080565,0.042533077,0.099632986,-0.034748595,0.004804142,-0.09552145,-0.035630226,0.010975688,-0.026187794,-0.05085845,-0.09701811,0.057754446,-0.08172372,-0.0429998,0.03473709,0.0051631504,-0.04486543,-0.041259255,-0.068146154,-0.010024861,0.06392545,-0.04750291,-0.05137336,-0.065600894,-0.019421443,-0.004359585,0.0348819,-0.035698406,0.0340791,-0.012039503,-0.036987774,-0.027457073,0.053509638,-0.011104619,0.089145616,0.10555746,0.12969138,0.015555506,0.047053017,-0.013515423,0.07609943,-0.033696998,-0.032950714,-0.028768882,-0.02950352,-0.0010881455,-0.040340442,-0.017659005,-0.020421138,0.060982227,-0.014203053,-0.030100118,-0.07843937,-0.032031704,-0.036583275,-0.026759319,-0.07157705,-0.07807242,-0.067668885,0.032199413,-0.01159706,0.019718377,0.002162268,0.0728013,-0.016883783,0.005709024,0.047396407,0.07925162,0.033430997,-0.00865624,0.007881542,0.031347033,0.06332108,-0.050236102,-0.018148558,-0.041016676,-0.017530981,0.034427136,0.033437155,0.013926334,0.049861167,-0.044276714,0.019715073,0.004301877,0.013214369,0.0042597326,-0.012662537,0.057628077,0.078108825,0.015224937,0.08349575,0.021787388,-0.03499704,-0.01678802,-2.996273e-08,0.055488795,-0.019959979,-0.038358357,0.035259444,0.06314182,-0.1130754,-0.07559431,0.010748844,-0.020368412,-0.03272924,-0.057647403,-0.029380161,-0.03354711,0.06878638,-0.03860365,0.062110357,0.050024677,0.090852864,0.0031059266,-0.018178068,0.04493298,0.035351537,-0.016283646,0.06015087,0.017109072,0.005744484,-0.032956462,0.06387338,0.0332093,-0.037990533,-0.025480652,0.011372384,0.028267445,-0.07755472,0.061256487,0.021458313,-0.029906245,-0.013884074,-0.041844066,-0.028565697,0.038295876,-0.11809083,-0.07040603,0.0010838617,0.0034496249,-0.11976323,0.006544538,0.05310609,-0.0088132,0.03532714,-0.06620364,-0.055413064,0.05082768,0.023413246,0.066920474,0.03877986,0.061125852,-0.026574047,-0.005681049,0.046142783,-0.007067333,0.06290115,0.020437934,-0.055530354} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.156498+00 2026-01-30 02:01:11.870018+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2077 google ChZDSUhNMG9nS0VJQ0FnSUN3bF9MZUl3EAE 1 t 2080 Go Karts Mar Menor unknown Sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente 5 2019-02-01 01:52:39.833374+00 es v5.1 P1.01 {P2.01,E1.04} V+ I3 CR-N {} {"P1.01": "Sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente"} {-0.061697207,-0.010968645,0.012964663,0.012742696,-0.059845068,-0.03637665,0.092125155,0.050616335,-0.07712998,0.011367729,-0.02154843,0.012759944,-0.07258094,0.041169543,0.010059123,-0.006530773,0.027180146,0.10509127,0.024586627,-0.0067205653,0.081002526,-0.05014885,0.012223209,0.05389321,-0.10480268,-0.024436137,0.030220808,0.013286151,-0.0062868274,-0.06713923,0.04918254,0.14829436,0.054901745,-0.08133186,0.011486418,-0.0010592255,0.04102446,-0.022441968,0.012293339,0.030665062,-0.07787673,-0.047319435,0.007199284,-0.074934974,0.0028438536,-0.10354925,0.034241762,-0.009742525,0.043154743,-0.017724164,-0.08153162,-0.01338174,0.018506605,-0.010459541,-0.08327416,0.008051819,-0.0034774186,-0.05016883,0.021340983,-0.048088476,0.0027488226,0.026563166,-0.07316788,0.033481844,0.075466625,0.04926866,-0.08081967,0.071372874,-0.02653292,0.029910304,0.049119435,-0.12325262,0.06875274,0.007936062,0.024005856,0.00755478,-0.07653079,-0.04399792,0.0004176958,-0.091099314,0.09567244,-0.007635687,-0.037504833,0.0015637566,0.019974506,-0.0028213246,0.019468294,0.04149186,-0.034016445,0.030154439,0.043958206,0.027538894,-0.106387086,-0.02479692,0.034287967,0.023446737,0.00601617,-0.011345527,0.053762913,0.034859527,0.00823895,0.051111806,0.039744545,0.06468404,-0.07879252,-0.047947053,0.009162127,-0.016665192,0.05067525,0.044132184,-0.099935636,-0.0382495,-0.08250396,-0.055570513,0.006217897,0.027285146,0.0113906795,-0.025118537,0.006920293,-0.046433132,0.085959546,0.017892433,0.030319437,0.00029492553,0.04095973,-0.086754985,0.08993525,8.9658414e-33,0.008338632,-0.060871575,-0.040321954,-0.0027664336,0.028958816,0.02857807,-0.05267432,-0.033910878,0.04519327,0.059886765,-0.037106488,0.09050549,-0.0054708556,-6.93822e-05,0.09088036,0.0058352975,0.017952785,0.05834132,0.057219207,-0.02771382,-0.10785614,-0.056567382,-0.053890083,0.027644962,-0.0006032283,0.033563487,0.043362465,-0.005381872,-0.02124615,0.06325439,0.08083922,0.019019222,-0.07335065,-0.044939812,-0.070476405,-0.089211226,-0.07483193,0.0020895437,0.03349777,-0.046276815,0.009187525,0.0086623365,0.055076182,0.026699496,0.009571633,0.026338277,0.050078504,0.019970741,0.059655987,0.053070564,-0.08175921,-0.05282443,-0.028760225,-0.012385692,0.027647836,-0.035612434,0.028295742,0.05145816,-0.017020624,-0.025053889,0.01935099,0.054177888,-0.008966664,-0.07262851,-0.025241798,-0.048928734,0.019367535,0.041012473,0.041848432,0.0005347531,-0.062468044,-0.012265972,0.084578075,0.0010052908,-0.037006736,0.037625697,-0.0051006093,0.014769906,-0.04655956,0.010064774,-0.0692992,0.05516371,0.049946688,0.019501723,0.06563009,0.050901033,0.0062004365,0.056826804,-0.011566782,0.10650994,-0.0003228759,0.03663002,0.006041904,-0.0029377525,-0.016766235,-9.13749e-33,-0.01721625,0.021409933,-0.053095464,0.077054024,-0.02543609,-0.028489256,-0.1506527,-0.021870112,0.05389074,-0.0066971085,-0.06195164,-0.083385654,0.0958189,-0.017620789,-0.0062846607,0.07192002,-0.022032944,-0.089977466,-0.106190756,-0.048376936,-0.005475062,0.043293618,0.015141064,-0.09171639,-0.010230066,-0.022094533,-0.020196503,0.0759236,-0.030214531,0.06561085,0.008922682,0.012434488,-0.063794404,0.089401394,0.016344534,-0.013146918,0.06581927,-0.0028184345,-0.060543753,0.02174351,0.028854698,0.054999918,-0.003491796,-0.055554006,0.017747447,-0.04542343,-0.05055623,-0.07783944,-0.008683087,-0.0971205,0.07916227,-0.032019697,-0.026076138,-0.110885896,0.015767314,0.004799215,-0.005733598,-0.114670485,-0.10516625,-0.049032528,0.135824,0.019163018,-0.026170086,0.02744103,0.008574873,0.032973237,-0.065241724,-0.00715274,-0.032255426,0.0856572,0.059140433,-0.0072835106,-0.02305592,0.084621586,-0.03547396,0.0087961955,0.019873193,0.009116199,-0.0022515575,0.021063717,-0.05186923,-0.015846936,-0.041091256,-0.03473926,-0.022763437,0.020662671,-0.0724118,-0.0236228,0.015757125,-0.0166927,0.035006184,0.04564074,-0.056152128,0.00255386,-0.044492207,-3.3125495e-08,-0.046817366,-0.114809975,0.033521503,0.068031855,0.00677722,-0.1116255,0.015202111,-0.03808446,0.039469097,0.027794825,-0.061592374,-0.085868984,0.05471182,0.109358616,0.052896366,0.03231579,0.10008597,0.04814302,-0.07005837,-0.051562507,0.11876856,-0.07015786,-0.003704319,0.01026748,-0.011915833,0.0043779244,0.014814793,0.020774182,0.007885758,0.016705394,-0.04100277,0.030558065,0.0033905404,-0.045855418,-0.015329492,-0.006134656,0.0009435527,-0.011764853,-0.086490616,0.086623885,0.012943058,-0.07496753,-0.019201582,0.049528062,0.053848565,-0.10786536,0.0038762651,-0.003745861,0.00058370107,-0.0069115926,-0.033013206,-0.04955178,0.09042567,0.021520678,0.059253324,0.031437997,0.03148064,0.0411729,0.018495481,0.03629698,-0.00222402,0.09437682,-0.089712135,-0.0028033354} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.175856+00 2026-01-30 02:01:11.878481+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2078 google ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE 1 t 2081 Go Karts Mar Menor unknown Me lo.pase como un enano... seguro que vuelvo. Solo un karting con un pequeño bar. Pero eso era lo que buscaba. me lo.pase como un enano... seguro que vuelvo. solo un karting con un pequeño bar. pero eso era lo que buscaba. 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {R4.03} V+ I3 CR-N {} {"O3.02": "Solo un karting con un pequeño bar. Pero eso era lo que buscaba.", "V4.03": "Me lo.pase como un enano... seguro que vuelvo."} {0.01963864,0.017020348,-0.012514513,-0.028411143,-0.09341431,0.046412494,0.04000779,0.0808415,-0.016162485,0.011525593,0.037947968,0.0022475268,-0.036533836,-0.022209866,0.06786119,0.0117907785,0.020048795,0.011938914,0.042499386,0.061602976,0.03250469,-0.057414714,-0.097365074,0.052490037,-0.12366027,0.030771203,-0.010105558,0.05918943,-0.035019156,-0.08470119,-0.037169695,0.05628728,0.027817082,0.033500038,-0.026262525,-0.037328184,0.05834941,-0.08015869,-0.027585344,0.051142875,-0.03439322,0.026088426,-0.082537115,-0.08074322,0.11731832,-0.0095772855,0.03944974,0.05117286,7.862839e-05,-0.09063529,0.012534025,0.012588639,0.024898877,0.01272938,-0.010193078,-0.052637443,-0.048267227,0.017873194,0.117952585,0.039037354,0.031020151,0.05856939,-0.055849917,0.078013785,-0.047425944,-0.034121674,0.031893246,0.031469636,0.0024418929,0.06520407,0.07762944,-0.09209164,-0.0116737485,0.018495226,-0.04315572,-0.028396279,0.02292074,0.026394943,-0.0479032,-0.058382835,-0.028749513,-0.035477705,-0.053902917,-0.040987227,0.057680544,0.0113628935,0.03153988,0.017634934,0.061996758,0.03826583,-0.013437899,0.06962289,-0.081209436,-0.019138038,0.035399966,0.0003627885,-0.0148431705,-0.07611067,0.04692851,-0.003237494,0.044079546,0.06566506,0.10318705,0.008756172,-0.045739587,0.07917152,0.062749594,-0.006116639,0.017947085,0.012657858,-0.057175312,-0.04815577,0.007217354,-0.028205968,-0.095468774,0.024625907,0.004945593,-0.032721825,0.005326335,-0.057144053,-0.012907255,-0.051073864,-0.030033225,0.0013458058,-0.023364775,-0.04718422,0.10168511,3.755136e-33,-0.09359061,-0.08811389,0.0127223935,-0.032741107,0.09331786,0.062568486,-0.039861243,-0.040071383,-0.077786244,0.0027932213,-0.018638091,0.006657014,-0.022749038,0.03799821,0.080968335,0.07488762,0.021788986,-0.010751715,0.07542035,-0.01904951,-0.009590215,-0.034277372,-0.026842935,-0.019039419,-0.06181672,0.09859456,0.03436593,-0.093128115,-0.05699401,0.0250885,0.021502681,0.06833281,0.023148073,-0.0047510867,-0.03828095,-0.038247503,0.038059395,0.071735315,-0.008568543,0.0148811815,0.019003825,0.0013697,-0.02148059,-0.026086738,-0.10074224,-0.020558259,0.07482995,0.0191521,0.06764635,-0.004402667,-0.06764238,-0.017384736,-0.019547267,-0.07670425,0.009011916,0.012858887,-0.08256481,0.08957453,0.008531839,-0.051661473,0.050479054,0.041694216,0.030526826,-0.019981643,-0.048356086,-0.04579827,0.018206595,0.061330717,0.13715804,-0.015983699,-0.06821564,0.0038698858,-0.060580887,-0.011312787,0.095834255,-0.010625098,-0.07115892,0.0037696236,-0.065068,0.019176109,-0.121754,-0.006439655,0.06395847,0.077892914,0.14426486,0.08102707,0.06253782,0.042010594,-0.03977255,0.0812907,-0.01608146,0.040943284,0.06340104,0.024734199,0.10928424,-4.648919e-33,0.057799958,-0.018522568,0.035349164,0.07192197,0.0039360616,0.006641012,-0.046981253,-0.058717366,-0.0815695,-0.009269526,-0.074500285,-0.09029651,0.09187205,-0.026419582,-0.023555472,0.047111206,-0.04394982,-0.05922994,-0.074231274,-0.058188435,-0.009150126,0.0013103388,0.057689205,-0.0034123121,-0.04728675,-0.038616277,0.051266566,0.03529625,-0.08355419,0.0039917836,0.02764397,-0.0072708037,0.0057396125,-0.059907082,-0.062184267,0.021328067,0.02405765,0.013030199,0.046033982,0.055034284,0.023892548,0.11599146,-0.09355537,-0.041164808,0.03761821,-0.0023525185,0.0533137,-0.121731676,-0.047268197,0.003297534,0.0818084,0.0049834154,-0.06773991,-0.03424998,0.06141848,-0.022027714,0.003912055,0.0013584183,-0.11216152,-0.057034794,0.02661507,-0.011762901,-0.0029883345,-0.027817823,0.10240284,0.03850599,-0.048833173,0.04465635,0.0006118251,-0.050943006,0.03007023,-0.010078369,-0.035531763,0.07519088,-0.058478445,-0.02715604,-0.020500707,0.02134571,0.035905432,0.035171323,-0.030545648,-0.06818234,-0.0045822933,0.027205475,-0.047064725,0.011088353,-0.019557077,0.0081569115,-0.019251624,0.025958091,0.04326656,0.005641342,-0.024814745,0.10676081,-0.027317123,-3.270372e-08,0.005556015,-0.026959298,-0.012211863,0.038013466,0.023120362,-0.051232666,-0.050022535,0.026644625,-0.0461503,-0.0041988473,0.075253025,-0.072785646,0.004395579,0.1004761,0.035244916,0.102105744,0.07874768,0.06612839,-0.03974479,-0.022866623,0.018484006,-0.037207756,-0.04712435,-0.0007919872,0.021959081,-0.02780341,-0.03591298,0.004828844,0.0056409836,-0.11264485,-0.0363508,-0.03522986,-0.036113214,-0.04614026,-0.042888436,-0.009663744,-0.043750055,-0.011463209,-0.031444136,-0.011495065,0.12996845,-0.02619023,-0.041595828,-0.046363916,-0.026907682,-0.011881887,0.039086986,0.014421153,-0.03341284,0.08110934,-0.06453523,0.02638095,0.10914124,0.0072858613,0.043767605,0.023224236,0.009001629,-0.02296744,-0.032444995,-0.003705594,0.0059428057,0.026047414,-0.03283878,-0.05440295} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.186001+00 2026-01-30 02:01:11.882308+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2079 google ChdDSUhNMG9nS0VJQ0FnSUNDcU9YU3FnRRAB 1 t 2082 Go Karts Mar Menor unknown Buen sitio para pasar con familia, lo tienen todo muy bien organizado buen sitio para pasar con familia, lo tienen todo muy bien organizado 5 2021-01-31 01:52:39.833374+00 es v5.1 J3.01 {A3.01} V+ I2 CR-N {} {"J3.01": "Buen sitio para pasar con familia, lo tienen todo muy bien organizado"} {-0.045885485,0.02363638,-0.038271435,-0.039447334,-0.03383569,-0.005952193,0.022458991,0.01743709,-0.054291498,-0.0010532698,0.06577856,-0.075685725,-0.019373314,-0.05463562,0.006298632,0.066252925,-0.073947296,0.06506733,-0.10723817,0.036610674,0.018014964,-0.054485194,-0.033947363,0.048775867,-0.052839376,0.02071086,0.06614032,-0.013678101,-0.032520983,0.020481372,0.032359347,0.036363684,0.082450956,0.0143007785,0.024018921,-0.011400954,0.07971966,-0.049548157,0.057429288,-0.0049562557,-0.057312522,-0.04124446,0.00035484356,-0.09775026,0.055243768,-0.05077895,0.019396745,0.019037927,0.013529259,-0.023259515,-0.04423025,-0.0033375064,-0.019041827,0.044999864,-0.026066503,0.029307084,-0.028891848,-0.002228243,0.002790883,0.0019000134,0.027899075,0.020273639,-0.09293486,-0.036423925,-0.012505525,0.029673755,0.026191758,-0.028156864,-0.027445382,0.05855636,0.06495378,-0.019351514,-0.025462093,-0.008552969,-0.05534751,0.018208742,-0.008983263,0.008934343,-0.0236581,-0.043631166,0.012813572,-0.015513023,-0.04063959,-0.033058822,-0.010268873,0.030871036,-0.04309429,0.015818216,-0.038638093,0.015835768,-0.034161165,0.10242488,-0.0147917345,-0.024182824,-0.027109412,0.03839275,0.034942914,-0.08738321,0.01525869,0.031355422,0.041397005,0.062218245,0.11605881,0.070187315,-0.05458843,-0.0066704955,0.00071849365,-0.0034654546,0.016064074,0.0312668,-0.061489932,-0.05454945,-0.015091649,0.064651355,-0.09327613,-0.024629852,0.022562522,-0.097912274,0.0011096838,-0.04674811,0.025956051,0.042806264,-0.04013002,-0.052679595,0.08642543,-0.105646044,-0.010347085,5.6843983e-33,-0.051248755,0.00207272,0.037762504,0.051933136,-0.021421058,0.07536951,-0.049128257,0.0009538976,-0.07164864,-0.023627251,-0.067803115,-0.01978906,0.029919066,-0.024790073,0.077362455,0.04097809,-0.037050456,0.041769825,0.04721263,0.089712426,-0.058896072,0.0028360886,-0.024906896,-0.003232339,0.038549423,0.009327497,0.033575047,-0.045405418,-0.05796632,0.0516584,0.0010463664,-0.015663302,0.034275047,-0.09293538,-0.04057973,-0.022754926,0.0380714,0.03946396,0.0025302488,0.020714508,-0.0022137472,-0.009943331,0.005057928,0.014940225,-0.020251466,-0.022392506,0.080676675,-0.030884268,0.04900443,0.020612648,-0.039754417,-0.08015039,-0.090639375,-0.014622321,0.049706392,-0.083122835,-0.05356616,0.0878287,-0.06929632,-0.049334515,0.16508843,-0.083783604,-6.1224215e-05,0.012379358,-0.03546937,-0.0138059575,0.059533022,0.070062965,0.15090841,-0.00022337667,-0.047820225,-0.060746156,-0.07749293,-0.0145000275,-0.008514799,0.0946196,-0.021502357,0.022052057,-0.013454784,0.042499386,-0.003998116,-0.011756313,0.086615816,0.04164648,0.03375865,0.026930476,-0.045822676,0.05057378,-0.07649133,0.030199058,0.034710865,-0.0027204398,0.044387177,-0.0067377356,0.030485332,-5.9875495e-33,0.040295187,-0.012222195,0.0031247672,0.02322448,0.011586742,-0.042821683,-0.027780525,-0.07302,0.022112506,-0.045216523,-0.009394605,-0.17925514,0.15907447,-0.027149027,-0.054209225,0.080667675,-0.029935213,-0.03604009,-0.02217368,-0.024920331,0.004982385,0.0036479712,0.04605768,-0.022620361,0.020477986,-0.08855358,-0.06853354,0.018020475,-0.0038814738,0.033295535,0.025703868,-0.021019477,-0.016422428,0.032778826,0.036439184,0.036327664,0.051152978,0.048922118,0.035686247,-0.012297857,0.052136004,0.023625022,-0.06464995,0.017175477,-0.040283058,0.022160208,0.020355728,-0.12968768,-0.019043544,-0.10778908,0.043972146,-0.0042150347,0.026731925,-0.06647739,0.03833675,0.016624812,0.012658982,-0.06498734,-0.11317261,-0.02015221,0.026791185,0.0011570823,-0.07959005,0.052866545,0.041616112,-0.002572347,-0.05031343,0.02727985,-0.0023435892,0.10834497,0.07480181,-0.069385715,-0.01819621,0.12824993,-0.087061726,-0.0045548514,-0.032981772,-0.017126782,0.069509044,0.0773756,-0.044440664,-0.07436267,0.010786916,-0.07307812,-0.049843542,-0.074128546,-0.018739665,0.018516483,-0.012806905,0.01985148,-0.0024741206,0.013346162,-0.019588765,-0.064339064,-0.07003321,-2.6776767e-08,0.057739984,-0.089247845,-0.097997524,0.013416215,-0.0026694967,0.0026991514,0.02608038,0.057326466,0.008521373,0.100534305,-0.1258947,-0.04873747,0.006168414,0.027655778,-0.02376593,0.03152117,0.061902452,0.044366054,0.03375056,-0.02033478,0.12306508,-0.036181103,-0.036689702,0.046752904,-0.0047450727,-0.0023583518,0.016168756,0.08118337,-0.0046965755,0.013061349,-0.01130146,-0.0064965477,-0.054553833,-0.02214411,-0.026523901,0.010062176,-0.016746206,0.027681455,-0.03622988,0.017845362,0.1356702,0.07570261,-0.085539214,-0.03924195,0.079520874,-0.027994562,0.081523016,0.05713533,0.009602262,-0.0040843175,-0.0050694887,-0.01109146,0.055590805,-0.032092135,0.0067575336,0.01990233,0.0675297,0.051671334,0.068703525,0.018681955,0.07904883,0.14020278,0.04026911,-0.07629125} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.196534+00 2026-01-30 02:01:11.884955+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2063 google ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB 1 t 2066 Go Karts Mar Menor unknown Tres bien bonne experience avec un score final\n12euro 8mn Je recommande tres bien bonne experience avec un score final 12euro 8mn je recommande 4 2021-01-31 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I2 CR-N {} {"V1.02": "12euro 8mn Je recommande", "V4.03": "Tres bien bonne experience avec un score final"} {-0.042175166,0.06890139,0.026185157,-0.037528217,-0.041686006,0.13296479,0.011001552,0.13889891,0.051108718,0.014343726,-0.06408349,-0.021951769,0.0032461646,-0.06387801,-0.088918604,-0.07332121,-0.024764728,0.10660425,0.014635876,0.020298135,0.052359503,-0.061597735,0.0056354944,-0.00011452314,0.010439606,-0.027954962,0.012532098,0.026108833,0.025668466,-0.060341,0.062368315,0.0010341939,-0.018450055,-0.053087957,0.0054668635,0.0299146,-0.0054398812,-0.1423927,-0.0054125497,-0.003556035,-0.08589245,0.03709845,-0.10395173,-0.06528171,0.11235579,0.0340191,0.03655146,-0.03283784,-0.063736364,0.028961685,0.057815336,0.06715225,-0.02165135,0.060472853,0.012983133,0.10264488,-0.035828587,-0.058113426,0.034796666,-0.0732766,0.03253876,0.01566839,-0.013121134,-0.03660423,-0.054311994,-0.063678846,0.045977384,0.015813781,-0.017822428,0.07218165,0.09300423,-0.03262247,-0.019484695,-0.005933844,0.026578281,0.03620952,-0.10119369,0.032014564,-0.023562191,-0.04842311,0.024431266,-0.027567722,-0.013396453,-0.02210309,0.0844861,-0.05457461,-0.00028164065,0.069621935,0.08359697,0.010270442,-0.028474916,-0.04109958,-0.08087064,-0.016114028,0.030926118,-0.05992805,0.074576475,-0.047817543,0.07737289,0.04445156,0.022540588,0.07410542,-0.014328216,0.0037442313,-0.03606098,0.10603868,0.046480134,0.007176443,0.07754133,-0.027760038,-0.022267815,-0.05046968,0.02113198,-0.06376309,0.047441762,-0.0050806813,0.052834906,-0.07477412,-0.0031413217,-0.046327867,0.017797941,-0.02152328,0.02349283,-0.061628457,0.04481172,0.021428088,0.04237847,2.1016287e-33,-0.037477158,-0.041527823,-0.02383112,0.007802196,0.023791274,0.00680887,-0.07424643,0.04489694,-0.020876518,-0.008350409,-0.04318385,-0.0010788852,0.025370557,-0.006562706,-0.0010753145,0.0016425486,0.105725914,-0.022547191,0.022022247,-0.07263044,-0.12602867,-0.07073822,0.08535933,0.023031173,0.06938967,0.0061032344,-0.015809884,-0.028575733,-0.051990688,-0.0128079215,0.030169383,0.005229415,-0.06167353,0.028817553,-0.03518744,0.020541815,0.026614534,0.07589909,0.048708785,-0.02426882,0.14966431,-0.056844015,-0.018088106,-0.08437224,0.009070075,0.037558887,-0.0019584314,-0.05010857,0.09786902,-0.041321453,-0.020232562,0.0053245225,-0.08227612,-0.0012614756,0.0721324,0.026280262,-0.025885941,0.009394561,-0.043362074,-0.0029449982,0.016679553,0.0010502979,-0.03940573,-0.01593052,-0.05773194,-0.0118707325,0.06445465,0.023963809,0.015646918,-0.06302914,-0.11650892,0.061946712,0.05942472,-0.064330444,0.032200053,0.01138925,-0.09943797,0.020199953,-0.0040856106,0.046541605,-0.015288137,-0.106983066,-0.012464653,-0.046342637,0.0092989355,0.0005069581,0.018789679,-0.010867582,-0.07604588,0.04035063,0.039983746,-0.029162686,0.038028397,-0.007892577,-0.018507319,-4.9858012e-33,-0.010171067,0.01540526,-0.047815442,0.016656667,0.010996926,0.008760612,-0.03087073,0.046903074,-0.104257055,-0.073838115,-0.024955425,-0.06595315,0.1410375,-0.0023758016,-0.015691843,0.09609902,-0.0442167,0.04150687,0.018052928,-0.061907064,0.03155567,-0.030468812,0.06244774,-0.009990843,-0.015863117,-0.012095434,0.021471707,0.031880163,-0.0014368166,0.005988921,0.069430955,0.004929723,0.030250002,0.050720423,-0.0027147646,0.061744884,0.051679824,0.048628837,-0.039250363,0.12041476,0.06543425,0.065536216,-0.06541984,3.2448494e-05,0.018845065,-0.015870424,-0.0044632284,-0.1002411,-0.036322698,0.087976135,0.068540454,0.0009366707,-0.06830499,-0.00031399046,0.020505363,-0.035890292,-0.015796704,-0.05379684,-0.08672837,0.058076333,0.072997265,0.09316991,-0.0028984842,0.0311612,0.07782439,0.021059914,-0.082449384,0.052506514,-0.014796509,0.009326546,0.0123346895,0.01893971,-0.0011506717,0.079982765,-0.0300081,-0.018122137,-0.038907748,0.060080223,-0.065550715,0.025322799,-0.17079325,-0.03144703,-0.067643456,-0.0073462534,-0.05888887,0.01667235,0.021927677,-0.028581897,-0.005026785,-0.04903455,0.031640295,0.038783185,-0.030123353,-0.011973781,0.033126146,-2.2628866e-08,0.006019444,-0.07722281,-0.01420675,0.028884452,0.07410027,-0.08799996,-0.052243356,-0.0124907745,-0.07820643,-0.0052269544,0.010818706,-0.023539957,-0.068355225,0.037771787,-0.02786546,0.03231996,-0.016145326,0.06545518,0.021134267,-0.06628477,0.039628655,-0.012597649,-0.042815592,-0.08427387,-0.010041975,-0.013269236,-0.04064565,-0.0068944623,-0.119779706,-0.07174879,0.016546275,0.10541984,0.003222678,-0.056561723,-0.07965593,-0.009155231,0.041076973,0.02306612,-0.014854407,0.057698656,0.06563405,0.044016704,-0.0691411,-0.054066427,0.0313879,-0.080813594,0.003062219,0.004553701,0.05727074,0.008401274,-0.03672022,0.00019915465,0.0015973923,-0.050117455,0.08144711,0.028443752,-0.020861084,0.00076204404,-0.028110515,-0.00771587,0.028196169,0.05251711,0.021170558,-0.048098847} 0.75 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.016597+00 2026-01-30 02:01:11.831493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2065 google ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE 1 t 2068 Go Karts Mar Menor unknown Buenos profesionales, precios razonables y circuito rapido, divertido y seguro buenos profesionales, precios razonables y circuito rapido, divertido y seguro 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {E4.01} V+ I2 CR-N {} {"O1.02": "circuito rapido, divertido y seguro", "P2.01": "Buenos profesionales", "V1.02": "precios razonables"} {-0.013789668,0.00029683308,-0.0083987955,-0.046127327,-0.039259817,-0.0076347953,0.032048896,0.1286548,-0.06680823,0.010560953,0.06546453,0.008027726,-0.03179092,0.0043796753,0.013809828,0.014248236,0.0066384682,0.016871264,0.05549779,-0.05313866,0.110184446,-0.044270724,-0.07401222,0.07300227,-0.059893712,0.023352206,0.014973249,0.045351163,-0.040252507,-0.11086071,-0.07189788,0.08695291,0.117510684,-0.0093564,-0.06521483,-0.022698725,0.048515864,-0.032761805,0.014604998,0.02205737,-0.13227995,-0.08025733,0.055846747,-0.04094545,0.0118269455,-0.028128212,0.05008977,0.019653868,0.023334168,-0.071781486,-0.002205271,-0.055290893,0.029067975,-0.00031170732,-0.037508715,0.039903127,-0.005495649,0.036404062,0.04615764,0.061408553,-0.03837263,-0.016202953,-0.025173258,0.027451573,0.015803311,-0.013500454,0.015896857,0.031062534,0.0022145575,-0.015508573,0.1055808,-0.07276153,0.05005723,-0.018592892,-0.0109639,0.024603209,0.016259808,0.06680237,-0.03461455,-0.07520178,0.028414352,-0.051404864,-0.05164527,-0.05421623,0.037390437,0.026726192,-0.10381781,-0.040914234,0.017063012,-0.06694338,0.003403969,0.04125424,0.01334659,-0.031777352,0.0039315764,-0.0017856401,0.0077367895,-0.11042371,0.00055513147,0.037730437,0.06707941,0.04101735,0.021705464,0.027988067,-0.055884227,-0.003476761,0.011348561,0.027618146,0.005592214,0.034886435,-0.062230088,0.047819737,-0.077405065,-0.049033508,-0.0659311,-0.03832402,-0.020544937,-0.005987552,0.03553837,-0.059197795,0.008800997,0.029992187,-0.055986803,-0.032423988,-0.02767945,-0.010564412,0.071178466,4.1863894e-33,-0.09177651,0.008630902,-0.09298518,0.036964618,-0.005104757,0.030775027,-0.011207293,0.04555433,0.018744884,-0.015013405,-0.035918646,0.052275427,0.006650922,0.07729777,0.10678943,-0.08652788,0.020161232,-0.042930704,0.04068602,0.0030869292,-0.041826878,-0.04377835,0.02616998,0.030494949,0.03355955,0.059910636,-0.010086387,-0.046387523,-0.053551134,0.046362463,-0.024293192,0.10238981,0.0014900737,-0.042406365,-0.030110901,0.019198248,0.00043158862,-0.020835508,0.042814866,-0.00011267725,-0.037395652,0.030108625,-0.042880557,0.055907592,0.04858153,-0.004286845,-0.011427515,0.06932806,0.14577365,0.03908357,-0.09723513,-0.05955361,-0.072504975,-0.044558268,0.06510258,0.038424727,-0.04448859,0.07698213,0.04942944,0.04968622,-0.082776934,0.11083192,-0.055648703,-0.02741744,-0.05592053,0.1071644,0.061581604,-0.07985965,0.0926834,-0.041011423,-0.15073194,-0.04634735,-0.01337035,0.014716326,-0.03687422,0.0054553607,-0.020508198,0.025720855,0.038336944,0.0034501804,-0.11324124,0.048082586,0.0023261071,0.036426466,0.108013354,0.104674906,0.06461384,0.06950752,0.00040946633,0.06489502,0.0151485875,0.07137195,0.050264608,0.009223593,0.033743605,-5.681577e-33,0.01059395,-0.06415796,0.0062822714,0.038730364,0.015613917,0.0043314784,-0.05948282,-0.03673822,-0.04921632,-0.042704135,-0.05628515,-0.061787207,0.055052236,-0.050211642,-0.055635687,0.014806398,-0.013593453,-0.07098649,-0.035453364,-0.00093058904,0.034259535,0.105803475,0.025477136,-0.03559578,-0.10485107,-0.045341846,-0.031194782,0.0067434446,-0.06485077,0.029050883,-0.02864014,-0.01610552,-0.05070273,0.077832766,-0.0069144364,0.030270742,-0.007642122,0.08634712,-0.025536735,0.025473444,0.00024737068,0.028313475,0.0067079323,0.00040526822,-0.09357084,0.02682933,-0.019460397,-0.07586332,-0.034710553,-0.009723075,0.036916275,-0.0811912,-0.025551703,-0.056218736,0.01921604,-0.10301705,-0.0549884,-0.07927381,-0.08636812,-0.01640999,0.107390486,-0.020567022,-0.022657495,-0.005213813,0.10011999,0.012580065,0.040309675,-0.006412612,0.092889,0.013877093,0.11206494,0.053917315,0.03159835,-0.0179463,-0.034165546,-0.05463591,-0.12477506,0.029397007,-0.022392873,-0.03029837,-0.015628526,0.043736883,-0.020573096,-0.023631776,-0.035991687,-0.037916563,-6.622041e-05,-0.0064028148,0.06628332,-0.042421583,-0.019334162,0.034273006,-0.022381485,0.028533028,0.03431212,-3.185034e-08,0.017093968,-0.0038972767,-0.0004055748,0.011282488,0.04918428,-0.07063585,-0.035072103,0.007187428,-0.019849295,0.004500959,0.002484893,-0.018544592,0.04967858,0.036507517,-0.0063402797,0.0036479903,0.041267436,0.17593399,-0.0151116075,0.035228983,0.09606166,0.022858981,-0.00085032807,0.001915525,0.08391675,-0.010158003,-0.023394346,0.015309268,-0.046861377,0.023018984,-0.017532965,-0.041736484,0.026270453,-0.03825271,0.028355276,0.012174556,-0.024581239,-0.038938407,-0.004595345,-0.09524564,-0.0044102804,-0.09404343,-0.06725268,0.037815522,-0.023259547,-0.106392674,-0.04253442,0.021817602,-0.018138971,0.053311985,-0.05521195,-0.029116288,0.06487331,0.029230004,0.05033105,-0.018607287,0.021711392,-0.030900149,-0.09851523,0.0033356228,0.024472356,0.0340048,0.05965317,-0.054604445} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.043133+00 2026-01-30 02:01:11.837116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2086 google ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB 1 t 2089 Go Karts Mar Menor unknown Buen sitio, repetiría. Cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios. buen sitio, repetiría. cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios. 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.05 {O1.02} V+ I2 CR-B {} {"O2.05": "Cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios.", "V4.03": "Buen sitio, repetiría."} {-0.016535835,-0.0059131603,-0.042819772,-0.084939025,-0.06118726,-0.022842405,-0.010451436,0.010927467,-0.013403345,0.016510503,0.08213475,0.038179338,-0.007480223,-0.059464082,-0.003990829,-0.028800882,-0.024281172,0.052149538,-0.007260057,0.022422817,0.0024124929,-0.022221496,-0.0445399,0.12115188,-0.03101523,-0.011342325,0.065869786,0.024959577,-0.03575255,-0.10528379,-0.057277076,0.039494913,0.033272404,-0.026473109,0.051125806,-0.061626554,0.11462739,-0.09167525,0.03739592,-0.03260658,-0.10038829,-0.025228057,-0.0057369685,0.0114690745,0.03702128,-0.06870119,-0.028117843,0.023480281,0.047181997,0.017625364,0.008883121,-0.015568708,0.018999083,0.05116179,-0.090201356,0.01337642,-0.0071364394,0.03923283,0.076185234,-0.0066549783,0.12616903,0.022173585,-0.040243227,0.03355065,-0.08492346,-0.013524792,0.0010859608,-0.046550963,-0.08819687,0.08781629,0.024734393,-0.039186087,0.0073859533,-0.027942948,-0.021390349,0.0017425014,0.025116103,-0.07790377,-0.015953911,-0.043281056,-0.011805226,0.036472615,-0.034507502,-0.018492252,-0.039660662,-0.008729404,-0.0820458,0.07205628,0.031644624,-0.010268528,-0.086842075,0.059534628,-0.033195797,-0.04200668,-0.027414348,0.05588506,0.068157,0.05889843,0.07598946,0.031820975,0.11299014,0.058860976,0.049963955,-0.03163711,-0.034456935,0.07655908,-0.0017638685,-0.056633115,0.011239521,-0.013412142,-0.03852284,0.0011899781,-0.014053918,-0.03329773,-0.17559448,0.033199675,0.0017324561,-0.12918222,-0.092343755,0.0031464514,0.08120821,0.017511735,-0.04185336,-0.04622563,0.0005245938,-0.06692434,0.048308272,2.3298801e-33,-0.05821457,-0.015708314,0.03327078,0.0019267012,0.010999142,0.024959277,-0.043718006,0.0043570045,-0.058102045,-0.03250165,-0.07719713,0.0066629155,0.0604241,-0.060725678,0.0513991,0.07999255,-0.005622431,0.0056637567,0.07494351,0.009011888,-0.09181002,0.047891453,-0.01529156,-0.016622966,-0.013232429,0.061021596,0.02213377,-0.065371476,-0.07653411,0.04538924,0.020185174,0.0032461332,0.024593413,0.0673185,-0.010848092,-0.015034848,0.035435867,0.042250656,-0.034771476,-0.029444007,0.03411207,0.060290486,-0.055764746,0.053015325,-0.009530982,-0.0415061,0.041957855,-0.011295859,-0.0043627536,0.037542317,-0.05858425,-0.0031906695,-0.06785457,-0.024643976,-0.006479308,-0.041992646,-0.060765736,0.093339086,-0.03547095,-0.03303038,0.11325307,0.03853697,-0.0049146786,-0.015071641,-0.025229342,0.02091518,0.0014869786,0.036263596,0.10181259,0.055680074,-0.0030638224,-0.011652416,-0.11306703,0.050233662,0.000572989,0.059659168,-0.011869201,0.0538743,0.0327134,-0.026902603,-0.054467615,-0.0666601,-0.014503264,0.07761912,0.024541726,0.040650968,-0.064346746,0.02557344,-0.030257951,0.074247256,-0.0071476623,0.030341303,0.027663574,-0.015667375,0.033993207,-4.38572e-33,0.019053154,0.0780215,-0.023455482,0.05564656,-0.01609235,0.023624953,-0.09268747,-0.023724852,-0.043607976,-0.086190134,-0.062216006,-0.08219429,0.048424583,0.018543584,0.0132202,0.07858568,0.018057914,-0.045615487,-0.10350596,-0.014416426,0.07623457,0.085693136,-0.023786495,0.03727561,0.0050524883,-0.031455096,0.00063160906,0.03136423,-0.05652848,0.063844554,0.06717466,-0.08415367,0.020023463,0.05205062,-0.046956386,0.06062942,0.05092433,0.029039886,0.02077567,0.010669732,-0.018085754,0.02377996,-0.025782108,-0.0068791504,-0.020898078,-0.03584776,-0.09868294,-0.09760844,-0.019710535,-0.06255627,0.048989743,-0.038106434,-0.03281481,-0.03793461,0.051340528,0.02063801,-0.06844117,-0.023725096,-0.07879543,-0.06238119,0.016908582,0.049781967,-0.06631086,-0.02702973,0.07800365,-0.03377281,-0.059300706,-0.06861495,0.042448204,0.048033513,0.09621602,0.03467263,-0.060738288,0.06237387,-0.04866288,0.016203014,-0.009577308,-0.041742012,0.041222457,0.014904062,-0.06301894,-0.08360555,0.11271283,0.055318676,0.027426166,0.041660767,-0.07912852,0.0011810691,0.022098022,-0.0003860077,0.03921417,0.04344533,-0.111472234,-0.022330862,-0.062777795,-2.7652954e-08,0.034616776,-0.053083226,-0.07737812,0.069391645,-0.007318982,0.0024827342,-0.023382042,0.050500248,0.021231867,0.10790746,0.005501532,-0.041824948,0.053313904,0.0068702637,-0.025515247,0.07326026,0.06620424,0.023516469,-0.037286762,-0.016624229,-0.026859846,-0.0235048,-0.017792523,0.05281688,0.027101059,-0.048274513,0.04373582,0.05064072,0.082233824,-0.03821061,-0.05583085,0.03696726,-0.00881829,-0.07512422,0.03083582,-0.010031046,-0.040066037,0.03717564,-0.011631983,-0.0015386296,0.040640682,0.061186843,-0.09596476,-0.04613542,-0.03734055,-0.093469754,0.02801227,0.03170404,-0.04005597,-0.07360113,0.0040968508,-0.08003779,0.085804306,0.07808257,0.05645535,0.007344039,0.0774436,0.052188326,0.049342815,0.024350733,0.072928794,0.06862537,0.020497372,-0.058836527} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.660497+00 2026-01-30 02:01:11.908458+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2087 google ChZDSUhNMG9nS0VJQ0FnSURPMGRtelpBEAE 1 t 2090 Go Karts Mar Menor unknown Buenas instalaciones y mejor equipo! Sitio fantástico, enhorabuena buenas instalaciones y mejor equipo! sitio fantástico, enhorabuena 5 2023-01-31 01:52:39.833374+00 es v5.1 E1.03 {O2.05} V+ I3 CR-N {} {"E1.03": "Buenas instalaciones y mejor equipo! Sitio fantástico, enhorabuena"} {0.002519097,0.010473941,0.018614823,-0.056327723,-0.07796234,-0.042076398,0.0022392212,0.09720056,-0.07729389,-0.016748438,0.033894178,0.0010797172,0.008956359,-0.026424365,-0.019876106,0.0049585192,0.02809564,0.0015061185,0.046132997,-0.022022618,0.06671697,-0.09257727,-0.09962542,0.11387656,-0.0508535,-0.011830141,0.01842731,0.06621463,-0.017603355,-0.1193669,-0.022539068,0.06386899,0.11868422,0.005665273,-0.022868028,-0.038730796,0.11049946,-0.07735708,0.015800806,-0.051516533,-0.07627727,-0.036274724,-0.0054377127,-0.02972951,0.09155526,-0.057222743,-0.003780609,0.0448156,0.055168346,-0.016174084,-0.087138325,-0.018801,0.02531373,0.028770804,-0.035870522,-0.016748494,0.05124268,-0.023868462,0.030823879,0.044273213,0.047679037,0.037362624,-0.027186941,0.0652168,0.0034174444,-0.012221883,-0.0043367543,-0.004285751,-0.07053544,0.024731176,0.016543642,-0.060489945,0.04200858,0.0054721446,-0.056425106,0.06106218,-0.031355467,-0.032939583,-0.030413896,0.024628498,0.03959766,0.0033551678,0.0016368871,0.014403165,-0.013423719,-0.050290514,-0.019101111,-0.06094407,0.021343917,-0.02042676,-0.022615433,0.034457818,-0.12498624,-0.0064754602,-0.062225062,0.0075368686,-0.018422343,-0.019039353,-0.014174485,0.02402853,0.036770657,0.0179346,0.05416241,-0.035958264,-0.0881634,0.022089014,0.011039778,-0.06279566,0.08364758,0.027663847,-0.118958294,-0.06434716,-0.047791403,-0.010827468,-0.10439092,0.0571924,-0.046775177,-0.017241461,-0.014367071,-0.08202616,0.12259387,0.052271023,0.03332671,-0.0059308875,0.07452815,-0.046528555,0.07334796,5.0619883e-33,-0.012812312,0.027819317,-0.005177928,0.12819368,0.0050274516,-0.020657144,-0.00869218,-0.021730077,-0.108666964,0.008204021,-0.10853725,0.0096164085,0.0036267296,0.036484748,0.12649849,0.027082281,-0.023547314,-0.032178618,0.057271015,-0.018027635,-0.045871317,-0.026787596,0.005530469,0.031854417,-0.006465131,0.06783669,0.05994101,-0.013046781,-0.0038495194,0.06715224,0.0068232673,0.016831724,-0.026229179,0.05475395,-0.00093577,-0.112570174,-0.0014068022,-0.021207996,0.059239503,-0.01317425,0.06327447,0.07770517,-0.029885368,0.0072555454,0.02330972,0.0083934385,0.03851212,0.03991642,0.12640956,0.017005812,-0.117398046,-0.051269583,0.0052178437,0.0067617185,-0.0025491903,-0.025559228,-0.051591273,0.029002056,0.059212644,-0.04412331,-0.037791375,0.02134584,0.009536586,-0.06333825,-0.007990699,-0.031972725,0.065119214,0.09198682,0.10529053,0.05328528,-0.049185798,-0.08008796,0.04937823,-0.026739338,-0.02742042,0.005035353,-0.07994706,0.035181534,-0.014391293,0.043698143,-0.023291867,0.040973455,-0.0064006597,0.020707054,0.10947241,0.01926161,-0.007461334,0.06511468,-0.03564207,0.07419667,0.05657837,0.11551019,0.03462149,-0.0070647723,0.056386657,-6.919086e-33,0.025237322,-0.040089708,0.0118901115,0.016394597,-0.012141847,0.0097224265,-0.12796867,0.013085238,0.0017175021,-0.020719664,-0.03407427,-0.050138652,0.12314503,-0.029543042,-0.1220184,0.064370245,-0.014080955,-0.03205571,-0.09071677,-0.027596364,0.027705207,0.0120035745,0.03804036,-0.043232854,-0.019085648,-0.036188968,0.011100487,0.06024706,-0.043427836,0.036169525,0.0060537136,0.011263218,-0.1284481,0.030095778,-0.0427502,0.017293734,0.03772179,0.007686999,0.002628284,0.025867397,0.037220646,0.07632998,-0.024473846,-0.08038949,-0.02763924,-0.003813479,-0.04873341,-0.110134654,-0.07044406,-0.09486821,0.027253248,-0.012829213,-0.03235432,-0.032833137,-0.0028708954,-0.031918794,0.023918798,-0.06701229,-0.04489935,0.014377625,0.07613303,0.082100116,-0.011343036,-0.043522935,0.021734906,-0.009137502,0.042374257,0.003682827,0.005340233,0.088045515,0.054584913,-0.037804507,-0.003903679,0.050177872,-0.014568458,0.018226527,-0.06922905,0.017425572,0.0042793113,0.0027613945,0.00058818044,-0.011667798,0.07590778,-0.05609169,0.005145908,-0.07800524,-0.07154336,0.017245729,-0.007698056,0.014507927,0.03174806,0.08048513,-0.010841183,-0.020511892,0.01162494,-2.9892707e-08,0.031387668,-0.12471148,0.0058081835,0.0032002039,0.03492257,-0.11942002,-0.088910624,0.08615533,0.030551158,0.0015324415,0.034680326,-0.060963575,-0.03363361,0.052795094,0.0066034216,-0.013926313,0.09209754,0.1512147,-0.043781783,-0.081838325,0.031779446,-0.040324666,0.015388756,-0.04362991,0.031163845,-0.00059683947,0.0061667003,-0.02533766,-0.0021900127,-0.013714314,-0.051387463,0.041102182,0.025653368,-0.05892275,-0.042748395,0.01582519,-0.033210583,0.015281685,0.004546763,-0.08327277,0.070794284,-0.022922713,-0.06580909,-0.03832094,0.024321545,-0.040401097,-0.029234817,0.023192864,-0.010986999,-0.010413926,-0.06350856,-0.07266933,0.067039385,0.06447709,0.06894684,0.0069119516,0.04582796,0.004024026,0.015746899,0.02122897,0.053967185,0.039946403,0.03505547,-0.050813932} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.674087+00 2026-01-30 02:01:11.912297+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2089 google ChdDSUhNMG9nS0VJQ0FnSUN1LTRYS3dnRRAB 1 t 2092 Go Karts Mar Menor unknown On a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe on a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe 5 2023-01-31 01:52:39.833374+00 fr v5.1 V4.03 {V1.01,P1.01} V+ I3 CR-N {} {"V4.03": "On a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe"} {-0.0471381,0.07480464,0.06065602,-0.006857949,-0.0103181815,0.05176617,0.06969133,0.100227125,0.0010555701,-0.042175334,-0.045280796,-0.07920408,0.028395837,-0.08133181,0.011601454,-0.021284923,-0.030199427,0.059798263,-0.0071553933,0.03411981,0.056770723,-0.05811822,-0.051448323,0.066755444,-0.10001803,-0.0013816485,0.018125499,0.0700733,0.07846522,-0.05098253,-0.0031102444,-0.011853551,-0.070218936,-0.009884588,0.031009598,-0.04595316,0.014401306,-0.096506976,-0.030315887,0.046677124,0.0061145145,-0.012270701,-0.046576012,0.030486071,0.04211381,0.022824928,-0.008510087,0.029717527,-0.0042501567,-0.037530884,0.00992176,-0.0063254368,0.001627898,0.003127343,-0.08993609,0.04464752,0.08477298,-0.043470018,0.06983637,0.0043609566,0.04939786,-0.0332299,0.018060207,-0.029573958,-0.059890702,-0.055474088,0.0032162096,-0.00827313,0.010040117,0.03747704,0.0033025837,-0.029724594,-0.1328482,0.008318525,0.005218927,0.012063227,-0.072187625,-0.0052581667,-0.07089038,-0.046364337,-0.042773075,-0.08803538,0.0023667475,-0.120542265,0.07978149,-0.091362536,-0.014652135,0.02834289,0.099614,0.004182611,-0.09078886,-0.009245693,-0.15941976,-0.022039536,-0.017667279,0.021787629,-0.02807587,-0.04214895,0.0601732,0.07118117,0.021040345,0.07412796,-0.067482784,0.106835224,-0.0072510573,0.074924454,-0.019593202,-0.030113306,-0.0022117696,-0.027973205,0.015252947,-0.059918147,0.061333485,-0.05434084,-0.029262431,0.12025007,0.025871454,0.015211805,0.03673001,-0.009246732,0.011402388,0.01370989,-0.008752188,-0.017006952,0.016568262,-0.034646977,0.1039125,2.4677579e-33,-0.05969254,-0.0054872995,0.027680486,0.008109643,-0.05629126,-0.015140798,-0.107140586,0.03847541,0.006259907,-0.044979677,-0.0154638225,-0.046200674,-0.0025930165,-0.048097227,0.05264564,0.047347523,0.039784607,-0.041599315,0.003755629,-0.011951982,-0.020519529,-0.025038738,0.075228445,-0.02335598,0.032328997,0.05614773,-0.010436995,-0.033157557,0.016140623,0.03333408,0.05824781,-0.038240314,0.030614171,0.03497177,-0.010244725,0.027396766,-0.039879564,0.059867598,0.064631864,0.074983,0.0679485,-0.0100797685,0.030925473,-0.08338773,-0.041956134,0.01860665,0.06447289,0.03659834,0.13751651,0.05344199,-0.027433293,-0.011834959,-0.13836837,-0.03321011,0.020168927,0.04908547,-0.070276305,-0.0085357865,-0.062596485,-0.041640487,0.039416112,0.03240183,-0.043079644,-0.0037236796,-0.025421811,0.050488524,-0.00685952,0.045000903,0.056158,-0.05493921,-0.14798419,-0.069862515,-0.017970258,-0.061435882,0.046563912,0.049035963,-0.026984362,0.07223143,-0.009626994,0.011065837,-0.0797292,-0.01843224,-0.008909228,-0.005154202,0.04698372,-0.030647073,-0.01681816,-0.02223646,0.028695604,0.006370234,-0.038408976,0.017390503,0.030806743,0.0011849193,-0.009338883,-5.487564e-33,-0.010118007,0.014229458,0.08711525,0.09731161,0.030008363,0.04349937,-0.028368229,-0.031832285,-0.042536892,0.022691278,-0.045564234,-0.05501325,0.07643729,-0.049571715,-0.008182665,0.07791969,-0.034284893,0.057197742,-0.017372873,0.013280383,-0.09527235,0.0041678115,0.0747482,-0.06652365,-0.081887916,-0.017023887,0.034181714,-0.06131222,0.05767385,0.00236003,0.02668051,-0.0047640186,-0.011289214,0.028996445,0.048304375,0.0573194,0.09336561,0.0352314,-0.015809497,0.09486011,-0.020358734,0.044608317,0.033869978,0.011830752,-0.015042808,0.028714424,-0.07706833,-0.037723847,-0.045418017,0.04912169,0.071939394,-0.02142126,-0.035571124,-0.03571556,-0.04253766,0.0007089244,-0.023904586,0.002753022,-0.09169908,-0.010956545,0.058092672,0.04913295,0.0021318472,-0.04283584,0.051595517,-0.06264999,-0.076301545,0.00096557266,-0.027343065,-0.0014532241,0.058194928,0.0138781285,-0.055076007,-0.015372314,-0.023361534,0.042187326,0.018415045,0.021172425,-0.0508292,0.008152002,-0.09174454,0.033295345,-0.046706047,-0.021587264,-0.026129853,-0.01743064,-0.10470156,0.012155101,0.01860832,-0.0732658,0.042405006,0.10427095,0.04312187,-0.061656673,-0.047343355,-2.9541493e-08,0.054043435,-0.03865463,-0.056710534,0.015275849,0.037055817,-0.116894476,0.024649855,0.0050783427,-0.10879319,0.12565485,0.040837236,0.030377531,0.007120077,-0.011785379,-0.072521865,-0.0032932195,-0.08242418,0.018214876,0.004900679,-9.917659e-05,0.006247036,-0.020897044,-0.03793459,-0.06709585,-0.020365827,-0.06247535,0.046482906,0.012353962,-0.023509875,-0.039798036,0.08274258,0.079338625,-0.023921508,-0.07188784,-0.04339313,-0.047731075,0.08383773,0.081266984,0.024448708,0.037086945,0.10120036,0.09878758,-0.024864923,-0.019956231,0.10728296,-0.004523774,0.030231277,-0.009101081,-0.009590038,0.059753902,-0.11375043,-0.031512037,-0.011157935,0.06073662,0.027485348,0.017174102,-0.06679111,-0.017607396,-0.0102957245,-0.05136052,0.026891058,0.04252532,0.057211448,-0.07013722} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.69967+00 2026-01-30 02:01:11.922753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2090 google ChdDSUhNMG9nS0VJQ0FnSUN3a2JpMHB3RRAB 1 t 2093 Go Karts Mar Menor unknown Excelente precio y trato. Merece la pena viajar mas por venir aquí. excelente precio y trato. merece la pena viajar mas por venir aquí. 5 2019-02-01 01:52:39.833374+00 es v5.1 V1.01 {P1.01,V4.01} V+ I3 CR-N {} {"V1.01": "Excelente precio y trato. Merece la pena viajar mas por venir aquí."} {-0.0051030996,0.036984216,-0.025703901,-0.0077472595,-0.07965494,-0.0009652978,0.037470423,0.038064126,0.04320163,0.035236996,0.08747304,-0.0056810663,-0.06662879,-0.008226276,0.02476193,0.004391536,-0.000299452,-0.014684256,0.04640412,0.031647667,0.05898978,-0.023294056,-0.08972168,0.05584921,-0.0011778576,-0.04030698,0.027797317,-0.01949823,0.014091173,-0.062733136,-0.06086935,0.041559886,0.107812375,0.022001402,-0.06333684,-0.0045793103,-0.010737435,-0.05488512,0.0059045493,0.072497874,-0.10328677,0.0067069563,0.0020817164,-0.04587745,-0.002679859,-0.0769051,0.10265936,0.05584213,-0.018980063,-0.059282813,-0.05805568,0.0013540011,-0.02224699,-0.027204698,-0.042752814,-0.022688588,0.0034976,-0.061224353,0.0145947095,-0.0058429046,-0.053804047,0.034795504,-0.050630584,-0.0003244762,0.009108665,-0.043547716,0.035197593,0.024805978,-0.07862891,0.067438446,0.077502035,-0.074977554,0.054283783,0.061842542,-0.058294386,0.04679283,0.028572349,0.03190553,0.0020459106,-0.02816161,0.0326078,-0.0020230773,-0.008235075,0.008952011,0.04903042,0.011163916,-0.019428669,-0.0039232727,0.05408535,-0.02041548,0.034948986,0.09669407,-0.08706559,0.020013746,-0.07096947,0.024582716,-0.018072307,-0.039832205,0.021500323,0.058220647,0.09609547,0.010393783,0.015017335,0.021951642,-0.042505063,0.044993263,0.046988543,-0.039185114,0.0789814,0.06069313,-0.018698853,-0.017181974,-0.08935334,-0.016983515,-0.084554404,0.0009971638,-0.019101387,0.0008196201,0.040606406,-0.08596726,0.047322784,0.046219483,-0.0033073227,0.015868811,0.021363439,-0.021669956,0.019068155,4.4128686e-33,-0.052132282,-0.040125396,-0.033526585,0.053323302,-0.049281906,-0.01367945,-0.024176095,-0.042869132,-0.03943058,0.0055724042,-0.046669956,0.0154291475,-0.04520274,0.0026388292,0.019274762,0.049582586,0.014555904,-0.019004622,0.097221635,-0.0046023712,-0.07573983,-0.059192944,0.009852707,7.7214005e-05,0.046638053,0.042126473,-0.048294637,-0.101494744,-0.05378948,0.07239185,0.030585416,0.021325344,0.0071246796,-0.049114257,-0.05222591,-0.030409824,0.008199424,0.061553054,-0.081791505,0.021247167,-0.018430725,0.023889117,-0.008643745,-0.005985144,-0.018541936,-0.030531311,0.030580198,0.086639754,0.08628436,0.0666046,-0.068845265,-0.10797511,-0.016784746,-0.047884267,-0.039274972,0.0017578645,-0.09837066,0.057348333,0.015395639,-0.009193938,-0.0055719665,0.02586676,-0.024272224,0.060683444,-0.09094761,-0.038908713,0.051992387,0.05472799,0.19350307,-0.019131364,-0.06535886,-0.043760795,0.050700944,-0.0403461,-0.028994573,-0.023740835,-0.029249636,0.015063318,0.0015561365,0.011526166,-0.054596905,-0.003433871,0.065241,-0.0032473183,0.07813183,0.15098684,0.10042287,-0.010802976,-0.011829034,0.10059375,0.048321143,0.09740226,0.024665307,-0.0446363,0.07143717,-4.643196e-33,0.032247014,-0.026465064,-0.038092602,0.016159857,0.013401111,0.013163767,-0.012569196,-0.06092216,-0.051176228,-0.059215356,-0.080478355,-0.103790216,0.075747855,-0.053336244,-2.797502e-06,0.040446427,-0.026928462,-0.07785285,-0.066446096,-0.052867662,-0.048123527,-0.03667088,0.038572144,0.026795432,0.004944884,-0.07144965,0.08874778,0.079046965,-0.078716286,-0.06774955,0.028345589,-0.008870777,0.02857156,0.07183252,-0.013222159,0.080530845,0.021696579,0.085939586,0.059231076,0.07763602,0.039104678,0.0021048319,-0.04478281,0.014338012,-0.0922114,0.038078804,0.016495364,-0.095427305,-0.039715324,-0.11034557,0.12768456,-0.015860833,-0.01399705,-0.03221021,0.06404151,0.052982695,-0.074583575,-0.04941501,-0.10274135,0.0025402757,0.04546881,-0.0012718689,-0.026796682,-0.011982995,0.12893131,-0.0028186757,-0.030877056,0.012232617,-0.010693398,0.05558973,0.027984986,-0.02697561,-0.04433282,-0.03217688,-0.047115162,-0.016890524,-0.03640623,-0.019887578,0.026075358,0.0108618215,-0.01528163,-0.019129934,-0.0039383247,-0.027894747,-0.0033613578,-0.007934785,-0.034297332,0.0029324687,-0.0077545396,0.08580222,0.031071158,0.08013637,0.008482211,-0.12494779,-0.007891752,-3.000038e-08,-0.0031354602,-0.09125931,-0.01964131,0.031866346,0.06921982,0.031625103,0.028664842,0.023926388,-0.0077126715,0.087906465,-0.059724957,-0.013886752,-0.011238001,0.0022071146,-0.037836954,0.027612533,0.022553561,0.068671994,-0.04354855,-0.08406739,0.06201401,0.021033157,-0.071716934,-0.09205424,0.0025476404,0.000579294,-0.065946154,0.035393596,0.040287104,-0.021904496,-0.03483128,-0.028746642,-0.050951354,-0.06413275,0.031285767,0.030727362,0.058242604,-0.02733983,-0.018038025,-0.06418214,0.08341856,0.027531201,-0.033321597,-0.02920473,-0.009583298,-0.07041883,-0.069710225,0.07907207,0.019699795,0.092006825,-0.020806264,0.001281747,0.06556656,0.06548452,0.029598529,-0.038527977,0.018554125,0.03089869,-0.04430358,0.039271597,0.0754062,0.09525155,0.079115316,-0.081300914} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.712028+00 2026-01-30 02:01:11.926554+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2093 google ChZDSUhNMG9nS0VJQ0FnSURHX2RMMVdBEAE 1 t 2096 Go Karts Mar Menor unknown Nos lo pasamos increíble, el precio es genial. Los coches van de lujo. nos lo pasamos increíble, el precio es genial. los coches van de lujo. 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {V1.01,O1.02} V+ I3 CR-N {} {"V4.03": "Nos lo pasamos increíble, el precio es genial. Los coches van de lujo."} {-0.028271457,0.035299473,0.013390068,-0.028716957,-0.022931742,0.055578146,0.029376624,0.010349833,0.023669409,0.020306148,0.08339928,-0.045888606,-0.022682618,-0.08053663,-0.023697168,-0.008054228,-0.026744105,-0.0043288367,0.0053844084,0.024526326,0.11620561,-0.06348396,-0.12830815,0.07647196,-0.039035063,0.0074319122,0.036750436,0.038549833,-0.01243544,0.0075194077,0.01145236,0.022093765,0.059616894,-0.0136029,-0.039470352,-0.028277874,0.02948667,-0.05248899,0.07771528,0.070779786,-0.13612425,-0.027126238,-0.021892505,-0.060305778,0.037070338,-0.056344785,-0.03769549,0.041112524,-0.084047735,-0.010204767,0.019250449,0.028146926,0.018897854,0.010026488,-0.03428746,0.0078015164,-0.010980508,-0.030469581,0.045492645,0.01694785,-0.0013364785,0.03823363,-0.059885073,-0.01602278,-0.059423827,0.054439437,0.11130304,-0.06027913,-0.025038278,0.071729034,0.09321855,-0.027451433,0.007376665,0.061876263,-0.020981887,0.08875235,0.039465282,0.009173498,-0.056633115,-0.070082754,-0.042798094,0.008306672,-0.009944922,-0.05449904,0.0006231808,0.04181899,0.027407348,0.0027233073,0.044593737,-0.013890771,-0.10629054,0.029398626,-0.033133324,0.04766446,-0.017168997,0.058459233,0.009781949,-0.08368751,-0.045618426,-0.0043718508,0.07745749,0.07512213,0.032815054,0.08045717,-0.063674495,0.0036507915,0.09694656,-0.026564933,-0.0020666171,0.045598373,0.026470346,-0.01342663,0.018289069,0.012135059,-0.11973184,-0.0051396806,0.007468226,-0.059516463,0.033415783,-0.088582605,0.15232205,-0.0024664986,-0.02621601,0.008963394,-0.005221879,-0.06626101,0.029580234,2.625454e-33,-0.074958205,-0.018637778,0.02939684,0.049939662,-0.0304361,-0.008595105,-0.017252406,0.005282451,-0.07868036,-0.06354686,-0.04569987,0.08951233,-0.0113941915,-0.040889684,-0.02659026,0.064270094,0.035414096,-0.027290544,0.09740375,0.042391017,-0.1030775,0.03669923,0.026133126,0.0072322832,0.04934972,0.05668171,-0.020422509,-0.100859486,-0.07379992,0.07042256,-0.028165575,0.015189295,0.06752167,0.040295325,-0.04931579,0.033757024,0.003944329,-0.0076259263,0.009808092,0.025210997,0.037747286,0.042959798,-0.012268275,-0.0023930795,-0.0314469,-0.019379437,0.013181163,-0.011399644,-0.05451745,0.011069848,-0.026326114,-0.038143426,-0.14215773,-0.022907907,0.0043717925,-0.016657993,-0.10378921,0.035870865,-0.013815118,-0.026272021,0.10065951,0.07132395,0.042565558,0.09438511,-0.06636368,-0.048887875,0.02769779,0.045290902,0.12693177,0.002644873,-0.063282296,-0.11007829,-0.0026695451,0.0503382,-0.021033505,0.021601543,0.05204162,0.059636075,-0.009108558,0.063912585,-0.09254551,0.036859985,0.025382115,-0.07348899,0.068420656,0.07226752,0.005220008,0.026274918,-0.015777247,0.04760307,0.064327635,0.045192353,0.06688415,-0.049840063,-0.06936028,-3.616277e-33,-0.0077724145,-0.030134283,0.015682895,0.033508178,-0.038222656,0.03757193,-0.011244536,-0.111773975,-0.043004084,-0.040135317,-0.02883119,-0.11569655,0.09189461,-0.07561104,0.00691719,0.048863195,0.04901834,-0.070323326,-0.038505953,0.00029770666,0.043683875,0.031274524,0.053696323,0.015979588,-0.010684744,-0.04937294,0.035381228,0.056536213,-0.065691754,-0.049233615,0.029937603,0.0040793414,0.067298226,-0.0117260665,0.029836105,0.08231749,0.0067198225,0.113398015,0.058744468,-0.0026452888,-0.06066525,0.0517033,-0.03668134,0.04449069,0.0011281135,0.008426486,-0.02146234,-0.13185515,0.012358945,-0.013691568,0.0173004,-0.016652578,-0.09404472,-0.06407424,0.012131283,-0.017092267,0.01875981,-0.0043049734,-0.0747778,0.01679624,0.028141962,0.047829207,-0.0834074,0.03879857,0.07639393,0.02201816,-0.034182824,0.045786798,0.0782941,0.007485384,0.11180081,-0.007117782,-0.06614572,-0.031392254,-0.08329462,-0.017241117,-0.120289646,0.037036404,0.055505462,-0.008538739,-0.04954643,-0.031083154,0.004650619,0.013174166,-0.049377315,-0.04672173,-0.029355554,0.026841937,-0.04674689,0.00695767,0.053878944,-0.04135662,-0.057385977,-0.11010055,0.015346848,-2.6494778e-08,0.023102649,-0.0681998,-0.037636027,-0.0039222105,0.03567904,-0.05018198,-0.029945046,-0.035811473,0.022563163,0.048146863,-0.03886171,-0.020446153,0.02586006,0.035130482,-0.013642797,0.039225403,0.007031688,0.08667575,-0.045394722,-0.010741928,0.07309465,0.007607676,-0.059977826,-0.057788715,0.02833182,-0.008973962,-0.03908258,-0.024729049,-0.033187907,0.013923769,-0.024812574,-0.020064939,-0.069643155,-0.041333072,0.012489604,-0.02244965,0.02429907,0.025154933,-0.0016365282,-0.058459613,0.052574486,0.08016639,-0.05362731,-0.0017985781,0.0038243283,-0.064351544,0.029000148,0.024957616,-0.04045434,0.032327075,-0.033614524,0.014103384,0.060053922,0.049777597,0.05208238,-0.04360169,0.01372116,0.04079355,-0.01695915,0.006664084,0.065135665,0.11656482,0.11581674,-0.061072066} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.750454+00 2026-01-30 02:01:11.936702+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2094 google ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE 1 t 2097 Go Karts Mar Menor unknown Una pista realmente divertida. Puede que les falte un poco de asesoramiento para los conductores más novatos. una pista realmente divertida. puede que les falte un poco de asesoramiento para los conductores más novatos. 4 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Una pista realmente divertida.", "P2.04": "Puede que les falte un poco de asesoramiento para los conductores más novatos."} {-0.044109013,0.058949105,-0.031664234,-0.04262729,-0.05255004,0.0009506846,0.040060923,0.037984334,-0.009298471,0.036702752,0.07265139,-0.025555259,0.009295052,0.04859317,0.0037306377,-0.048379578,-0.005069597,-0.016367726,0.03012608,0.044755608,0.0676876,-0.050745048,-0.052271385,0.0494588,-0.07021711,0.038256478,-0.019993562,-0.06332748,-0.023830498,-0.10102679,-0.057221957,0.045539692,0.011228527,0.015834285,-0.030795699,0.0030658112,0.015700363,0.0045099305,-0.03512752,0.08388698,-0.03608465,-0.036066692,0.002970249,-0.042910744,-0.033530936,-0.044883,0.030834107,-0.04154218,-0.021985725,-0.039409198,-0.01336913,0.007905968,0.02385824,0.018145125,-0.019191222,-0.030163776,-0.01477815,0.0057550427,0.046414893,0.042959455,-0.04950745,0.022091083,-0.085599504,-0.004878014,0.026349628,-0.09889182,0.021165226,-0.013972299,-0.011317025,0.038991157,0.12946261,-0.06749443,-0.011829682,-0.0759085,0.07370584,0.117108785,-0.01960736,0.018378727,-0.07953742,-0.06622286,0.017220529,-0.028359298,-0.07716356,-0.0491963,0.0348932,0.061706334,-0.022472028,0.019817911,0.000117612544,-0.021398196,-0.028523862,0.050010312,-0.042548165,0.0027366492,-0.02401507,0.03459919,0.017483981,-0.04710759,0.059823267,0.0041526495,0.098768085,0.06147503,-0.066402815,-0.015606529,-0.09082516,-0.04415423,0.011413016,-0.024997063,-0.039649475,-0.0078174835,0.025956998,-0.03329067,-0.069128715,-0.07226164,-0.051983837,0.0793611,0.031776596,-0.055313893,-0.011746254,-0.010080772,-0.006587734,0.012110864,-0.024971405,0.021648707,0.004831344,-0.059376244,0.031857062,3.0661156e-33,-0.045495067,0.0032251605,0.0127599435,-0.025999442,-0.000111137655,0.032502413,-0.035762936,-0.020497141,0.08907499,0.017503766,-0.07959722,0.13683417,-0.010345396,0.037376445,0.014717061,-0.044514693,0.029681694,-0.05195024,0.03895377,-0.005877242,-0.038667653,0.03031276,-0.038275048,0.06465471,0.060975593,0.04602223,-0.03377205,-0.040213842,-0.08440115,0.058578305,0.024974769,0.07376831,0.01908291,0.084646255,-0.025593976,0.024764616,0.030973457,0.110745884,0.020662451,0.0051790182,0.020973776,-0.03478935,-0.024792798,0.09142769,0.040251285,-0.05690801,0.01154461,0.0029493503,0.054768138,0.017707506,-0.03100071,-0.032525387,0.0064605954,-0.03488149,0.030029127,0.04755937,-0.052956413,0.028300868,-0.013538848,-0.026121175,0.02669865,0.090095595,-0.050076347,0.07430736,-0.00015382067,-0.034295663,0.041405257,-0.0019492448,0.10033648,0.04147077,-0.13434169,0.020040628,0.0011078878,0.019655023,-0.014705815,-0.0057445234,-0.07223573,0.0646414,-0.009675184,-0.0023313267,-0.087161586,-0.039068602,0.047693808,-0.020458253,0.07219885,0.057697088,0.084056094,0.11610308,-0.061674535,0.0530696,0.0027749971,0.05495113,0.081356615,-0.056360077,0.08625411,-6.305799e-33,0.06041408,-0.014331617,0.018159153,-0.03357693,0.020970205,0.004206334,-0.020501953,-0.055365823,-0.08561318,0.009130497,-0.124357894,-0.066051565,0.10536413,-0.022404589,-0.08501416,0.023344517,-0.037411638,-0.017426126,-0.046765786,0.01625047,-0.12607516,0.0141058685,0.08115467,-0.03038568,-0.050978232,-0.05504073,-0.017573254,-0.03918448,-0.10005815,0.03689512,-0.0035316052,0.0318686,0.016990932,0.023277678,-0.052775934,0.086343974,0.07362951,0.072644375,0.017223798,0.0136105325,-0.07456616,0.022475183,0.07999603,-0.025371723,-0.037842147,-0.0037335053,-0.04712889,-0.13703726,-0.13122849,-0.02542653,0.031240508,-0.028616244,0.021289255,-0.07050846,0.07978402,-0.013578555,-0.06177422,-0.071468584,-0.06181148,0.04008301,0.12560731,-0.020595659,-0.06654229,-0.06068115,0.08594355,0.011619225,-0.03115137,0.0074281003,0.060846616,0.095567755,0.09607278,0.0537657,-0.03227653,0.040223572,-0.051564675,-0.02111356,-0.10063988,0.028114296,-0.013838662,0.03543159,-0.04084156,-0.007901701,-0.036444202,-0.05347137,0.0061901174,-0.0564524,0.060779788,0.03459637,-0.0181071,-0.051417418,0.011937581,0.0110832555,0.0061543835,-0.04719801,0.0034865174,-3.293535e-08,0.018634127,0.009817241,-0.056345254,0.018129902,0.046166033,-0.04412074,-0.05358543,-0.0111111775,-0.04971372,0.0045237914,-0.006032412,-0.080316246,0.06942988,0.06647421,0.059904676,0.010040761,0.060883578,0.10611148,-0.02358848,-0.030014956,0.042298216,-0.0012426538,-0.056753375,-0.01815659,0.014127635,0.037468877,-0.02316649,-0.015090616,-0.087191254,0.008322868,-0.026593193,-0.06417026,-0.040426973,-0.07782783,0.005111629,0.045936,0.048360843,-0.05484575,-0.007397236,-0.015825052,0.076629065,0.040993538,-0.075225,0.025846828,-0.010744633,-0.12772919,-0.020258443,-0.037213173,-0.0028728468,0.09759566,-0.0044130967,0.02567452,0.0408173,-0.030844113,0.065409675,0.0044754515,0.01696543,0.008756805,-0.11773237,-0.0047780564,-0.015332423,0.13338427,0.019055987,-0.0024099562} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.762015+00 2026-01-30 02:01:11.940774+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2095 google ChdDSUhNMG9nS0VJQ0FnSUNleklDZjF3RRAB 1 t 2098 Go Karts Mar Menor unknown Zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen. zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen. 5 2023-01-31 01:52:39.833374+00 nl v5.1 P1.01 {O1.04,E4.01} V+ I3 CR-N {} {"P1.01": "Zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen."} {-0.017516125,0.10102819,0.061884552,-0.05077849,0.007458814,0.018079182,0.054296363,0.12443557,0.06416315,0.022587134,-0.011825053,-0.03075621,-0.04535079,-0.023554135,-0.0021591592,-0.061602194,-0.047215387,0.066346705,-0.007016358,-0.032159936,-0.0030633456,-0.0459225,0.09803064,-0.07345124,-0.041392818,0.04335757,0.06101137,0.0051897625,0.06585683,-0.091357395,0.008499547,0.018018186,-0.15479344,0.03959039,0.015253597,0.005100022,0.0022185198,-0.008853184,-0.032320846,0.034647476,-0.028144205,-0.028003605,-0.14259605,-0.11790006,0.09936821,0.06969075,-0.03457263,-0.015753284,-0.024301017,-0.021646889,0.03255292,-0.04337199,0.07502687,-0.042413905,0.04356587,-0.040893096,-0.021998681,0.018460454,0.017080024,-0.008727804,0.053499706,-0.035553016,-0.01228126,0.007896507,-0.029635357,-0.07955145,-0.0364251,0.10178368,-0.07063466,0.015315312,0.037147604,-0.050180737,-0.11610381,0.026454378,-0.03156103,-0.027713815,-0.03211113,0.0075207776,-0.038771503,0.0092087705,-0.03395494,-0.0036833205,0.06383512,-0.047344636,0.019871213,0.0093120085,0.029059192,0.056963287,0.062775776,0.027823644,-0.07138585,-0.0010679673,-0.07864461,0.026431913,-0.0146778,0.021029962,-0.007282586,0.08413638,0.025163766,0.0130995335,0.064222105,0.010127206,0.03909872,0.04045098,-0.070101865,0.025242459,0.06486721,-0.073940665,0.06598846,-0.054762974,-0.055850685,-0.075732455,0.034826525,-0.07315006,-0.071132705,-0.061661083,-0.012589932,-0.052073903,0.045601502,0.018978912,-0.01510784,0.0159508,-0.04045255,0.102760285,0.0038297893,0.042119257,0.08661053,5.8164625e-33,-0.1536094,-0.019553062,0.013286117,-0.049839668,-0.04009874,-0.0074194963,-0.016716927,-0.033843666,-0.057938445,-0.046415605,-0.047857612,-0.054277137,-0.06819939,-0.009190935,0.025026076,0.050344057,0.046928104,-0.0011917237,-0.032174073,-0.006308394,0.052254494,-0.064157926,-0.011310496,0.018360093,-0.014383442,-0.06648396,0.06219373,-0.049328852,-0.023089305,-0.0023264966,0.04404165,0.005011729,-0.00659692,-0.026702102,-0.05544479,0.019497687,0.041568376,0.028838307,-0.07445829,-0.053288143,-0.0041492647,-0.054647878,-0.021651471,0.022441398,-0.07650932,0.09202789,-0.030002179,-0.0017948236,-0.003974094,-0.03299717,-0.11459127,-0.010525111,-0.050783213,0.0039044484,0.009106297,0.056771487,-0.009767288,0.0115379,0.0036949825,0.001457398,-0.01679584,0.0153036,-0.04407691,-0.012900835,0.021702688,-0.040659502,0.021370182,-0.00995731,0.03366526,-0.021520745,-0.06908773,0.0755519,0.069558926,0.008121948,0.024169076,-0.0031793101,-0.13849744,0.014536936,0.0030438567,0.024950985,-0.061405614,-0.002404292,-0.014318369,-0.061929654,0.11073583,-0.029136311,0.034328476,-0.056616396,0.041769907,0.10628782,0.003273615,0.022109022,-0.029205939,-0.027125062,-0.044788793,-5.9947196e-33,0.002289566,0.035579015,-0.03635765,0.111507036,0.042693686,0.10605385,-0.02586664,-0.00031964207,-0.042839672,-0.049846902,-0.01989796,-0.07895666,0.10781574,0.028588118,-0.044245113,0.028665073,0.016258676,0.042051107,0.027565096,-0.05306925,-0.008261482,-0.029945908,-0.0291678,0.058378916,-0.041885205,-0.006262495,0.05321262,0.022709487,-0.0824377,0.058696903,0.020646963,-0.013478284,0.041535895,0.015581785,0.0073008547,-0.00046993428,0.10816584,0.03539792,-0.012375355,0.011817991,-0.00035562596,-0.019198624,-0.082594365,0.05741272,0.0061612073,-0.044134967,-0.08359485,0.0064283605,0.0211403,-0.026882764,0.04424226,0.024961593,0.050831527,-0.019133879,0.054274395,0.0028414803,-0.00401271,-0.0547784,-0.022801349,-0.022229724,0.07284362,0.012388905,0.04858051,0.07568903,0.04937206,-0.062265556,-0.0876809,0.06572388,0.035445303,-0.042361066,-0.021262534,0.015633788,0.011818275,0.007141642,0.0057326434,-0.009747014,0.083038345,-0.024055934,0.047914837,-0.07617578,-0.09393253,-0.017952323,-0.011502397,-0.012005574,0.04207731,0.05324125,0.019101977,0.0040530334,-0.039222207,-0.029635873,0.08466647,0.032296017,-0.027282326,0.0721171,-0.06763391,-2.8686355e-08,0.002209417,-0.08184202,-0.030618237,-0.008881102,0.046522763,-0.10815236,0.08538366,0.0038043857,-0.098838545,0.08007082,0.039067507,0.05810615,-0.025695331,0.042268705,0.11092917,0.08048991,0.029567633,0.11969966,-0.00409491,0.0076666274,0.054128263,0.008591919,-0.025139384,-0.01030211,0.045899358,0.058273267,0.010522726,0.054674014,0.15540475,-0.11610074,0.026340175,0.037510797,-0.0034670075,0.015877752,-0.009514342,0.04420955,-0.062792875,0.08096327,-0.012782386,0.04238862,0.005229252,-0.014447941,0.09489817,-0.04603092,-0.046995822,0.030169725,0.037744794,-0.055496093,-0.013468481,-0.053961795,-0.08323306,-0.009164156,0.07847144,0.06730962,-0.0037021344,0.07274651,-0.040216234,-0.013463428,-0.068072006,-0.041974314,0.03739524,0.012369568,-0.03412493,0.03939507} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.774727+00 2026-01-30 02:01:11.944941+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2097 google ChZDSUhNMG9nS0VJQ0FnSUQtMHZtd2FREAE 1 t 2100 Go Karts Mar Menor unknown Buen sitio par air buenos precios buena atencion volvere seguro buen sitio par air buenos precios buena atencion volvere seguro 5 2023-01-31 01:52:39.833374+00 es v5.1 V1.01 {P1.01,V4.03} V+ I2 CR-N {} {"V1.01": "Buen sitio par ir buenos precios buena atencion volvere seguro"} {0.018190442,0.004310804,0.034535274,0.0119349,-0.05892753,0.01100126,0.029226098,0.0010136476,-0.0043030544,0.022433687,0.049526304,-0.0072914595,-0.027232053,-0.0648604,0.004911847,0.006358313,-0.01956907,0.043183617,-0.030614972,0.015170037,0.068793535,-0.037736792,-0.12962666,0.12719333,0.049384966,-0.07159234,0.02787011,0.015319639,-0.01191931,-0.0661111,0.017299725,-0.018049048,0.16967107,0.04459497,0.03453874,-0.016538214,0.106584966,-0.09824058,-0.0023205164,-0.02383026,-0.12683499,-0.082289726,-0.014040838,-0.03168322,-0.011265243,-0.0073454315,0.07966039,0.05374776,0.061602097,0.008801141,-0.030472418,-0.012714007,-0.024713388,-0.0037959751,-0.08153948,0.029187089,0.0060164393,-0.058385994,0.07783657,-0.016649429,-0.027801532,0.018232286,-0.07031005,0.048179876,-0.048777264,0.04590002,0.01258632,0.0030301148,-0.043127246,0.04272176,0.068605155,-0.065749705,0.048538297,0.043691847,-0.04211435,0.026069477,0.013759686,-0.070474595,0.024066366,-0.039455134,0.09704679,-0.002013577,-0.09501167,0.015441915,-0.01562469,-0.005776711,-0.040771224,-0.06569723,0.013267436,-0.030547576,-0.09493789,0.02903224,-0.02734246,0.014035997,0.016501632,0.06835738,-0.011248775,-0.059192646,0.044207357,0.056819715,0.039287034,0.057248183,0.030642765,0.059642505,-0.06402915,-0.021137977,0.022922104,-0.06377419,0.047399245,0.046707705,-0.055605873,-0.03953087,-0.0647848,-0.038814265,-0.063051544,0.05220348,0.02597555,-0.043755397,-0.07478348,-0.12243415,0.087276906,0.01860104,0.0070680557,-0.029521702,0.02070861,-0.10538918,0.04599415,6.268357e-33,-0.056780208,-0.051778425,0.02747758,0.04512848,-0.011371052,0.010900276,-0.008779466,-0.02438292,-0.044142228,0.038906682,-0.11297588,-0.019529862,0.010411018,-0.0088081695,0.10584104,0.020284256,0.020912264,-0.025286654,0.04570665,-0.043815758,-0.1287738,-0.029499842,-0.037654452,0.02290315,0.015254382,0.041542042,-0.0053512543,-0.07195323,-0.0398231,0.07422725,0.0451374,0.086223885,-0.009787444,-0.024029965,-0.006821365,-0.06609892,0.056666043,0.03546122,0.022295902,8.021149e-05,-0.0119968075,0.070899114,-0.010425257,-0.03981248,0.004177466,-0.059325825,-0.016071603,0.051388256,0.1144361,0.031834688,-0.07708072,-0.046396066,-0.052354068,0.00070266746,0.11701971,-0.016556371,-0.07623462,0.103207,-0.01451793,-0.056040827,0.03726377,0.070851676,0.045347393,-0.0067018797,-0.043254085,0.036586754,0.031996034,-0.0074067386,0.1333708,-0.01650643,-0.081886105,-0.060156405,-0.069970235,-0.038250003,-0.04746657,0.0069522047,-0.045895357,0.02014531,0.026264125,0.042826302,-0.061005205,-0.006501413,0.04973333,0.053325187,0.0475149,-0.004989393,0.06435773,0.062396884,-0.021392766,0.035104048,-0.026680997,0.02358974,0.07443653,-0.009501634,0.009853805,-7.1156875e-33,0.03841962,-0.0125502,-0.07559529,0.050041195,-0.07724446,0.02560948,-0.092978984,-0.018019894,-0.073474206,0.0031274718,-0.08202519,-0.06261895,0.12384345,-0.049257316,-0.0023790519,0.105382465,0.039524727,-0.07119726,-0.08767576,-0.00889484,0.010755607,0.0043072645,0.028798126,-0.002506011,0.0056359577,-0.057305265,0.08868003,0.072505794,-0.08864461,0.011629917,0.0066924538,0.028436666,0.0036399392,0.095297664,-0.0026597693,0.06903684,0.03766056,0.039319877,0.015550023,-0.021541601,0.0061897496,0.005191163,0.0148086045,-0.06419844,-0.022688275,-0.017556196,-0.007969768,-0.064357914,-0.030902522,-0.09720657,0.06871215,-0.06521311,-0.059927262,0.01863204,0.03905552,-0.017853333,6.3824824e-05,-0.03429044,-0.11777613,-0.02741836,0.102236405,0.010580058,-0.053491816,-0.008291584,0.04298846,0.025191182,-0.06841258,0.008206983,0.006908946,0.033687815,0.03103076,-0.042763516,-0.026241386,0.06275097,-0.10836395,-0.002053475,-0.005885965,0.06907585,0.026449874,0.090850934,-0.09869745,0.007437914,0.006611214,-0.0076882984,-0.031329863,0.014308067,-0.05683048,-0.010986818,0.036634915,0.058283184,0.00036923253,0.03360966,0.018302625,-0.09954197,-0.023395225,-2.9404505e-08,0.0076021207,-0.062518,0.08123968,0.0549811,-0.021948911,0.0058084736,-0.016912472,-0.033294585,0.03725383,0.051535387,-0.048408963,-0.009790378,0.043141223,0.011458261,-0.018431032,0.0050633876,0.02960831,0.09943165,-0.06023519,-0.025185775,0.059655756,0.0027929663,-0.049771357,-0.03643792,0.041927155,-0.0032085392,0.0061423485,-0.035674594,0.008627713,0.0008070051,-0.019956129,0.030394534,-0.044031568,-0.13362032,-0.06545007,0.06235586,0.013511313,-0.01998881,-0.060759485,-0.052189246,0.011135973,0.023391109,-0.04911664,-0.058971934,0.046155892,-0.041648123,0.014263142,0.05307846,-0.01517857,0.018120036,-0.01718872,-0.018940462,0.079952545,0.058283966,0.069900475,-0.015297909,0.029549016,0.012124292,0.014193044,0.011621691,0.040747896,0.08944687,-0.00888549,-0.019079626} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.797631+00 2026-01-30 02:01:11.951664+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2098 google ChdDSUhNMG9nS0VJQ0FnSURLcGY2eV93RRAB 1 t 2101 Go Karts Mar Menor unknown Un gran circuito ya sea para ir con vehículo privado o para alquilar un Kart con unos amigos un gran circuito ya sea para ir con vehículo privado o para alquilar un kart con unos amigos 5 2022-01-31 01:52:39.833374+00 es v5.1 O4.03 {O1.02} V+ I2 CR-N {} {"O4.03": "Un gran circuito ya sea para ir con vehículo privado o para alquilar un Kart con unos amigos"} {-0.033211786,0.09593151,-0.038363717,-0.05694785,-0.08377387,-0.03612021,0.040832456,0.0526899,-0.0008429453,0.043599315,0.06436914,-0.023394113,0.013959498,-0.018936489,0.01823966,0.032918107,-0.028408643,0.003938253,-0.05419981,0.0043249675,0.061781924,-0.014699966,-0.06626003,0.07901362,-0.09691,0.039240513,0.019826569,0.05970391,-0.0065514212,-0.050555125,-0.101815514,0.07830588,0.10241304,0.021265293,-0.030769361,-0.012273299,0.001969697,-0.03414506,-0.058718044,0.031584203,-0.063931845,-0.074426115,0.007669154,0.023227531,-0.011865994,-0.012530095,0.014880046,0.013515203,0.045809988,-0.08843878,-0.04476722,-0.000625558,0.0019329548,0.034863167,-0.067933075,0.014584208,-0.054473303,0.00388514,0.0876816,0.016907426,0.017169284,0.07702189,-0.02963139,0.02424368,0.059692435,-0.024715353,0.04310292,0.023251995,-0.1217763,0.052305553,0.11107098,-0.06667219,0.043750554,0.007755374,0.013617333,-0.0003075786,-0.009942804,-0.0094542,-0.0507826,-0.050186638,-0.005206941,-0.012488193,-0.06653684,-0.06940482,0.010651402,-0.010688207,0.024573144,-0.046912227,-0.0019879772,-0.021876324,-0.06685146,-0.017289102,0.01622943,-0.02934662,0.023182534,0.030217301,0.028772496,-0.058769442,0.0019037867,0.032304317,0.09987798,0.06681894,0.014603632,-0.016846081,-0.03564942,0.049442593,0.008630648,0.0050953287,0.049745176,0.027848992,-0.10201633,-0.008915755,-0.060433395,-0.040576316,-0.090904415,-0.039953478,-0.03423377,-0.044940468,-0.0749663,-0.075802684,0.03352614,-0.071978,-0.04370768,0.039442357,0.060270384,-0.037732366,0.090872616,7.768994e-33,-0.03453778,-0.034909498,-0.038449857,0.010582447,-0.026160836,0.08046168,-0.10413438,-0.063266225,-0.033721305,0.08146016,-0.08724178,0.078306206,-0.046896905,0.022532463,0.08214224,0.06803496,-0.019552536,-0.13788798,0.05073894,0.0015750186,-0.02214878,-0.020735616,-0.009944611,0.0032440203,-0.031172317,0.018505575,-0.012331661,-0.13868782,-0.027893867,0.053254906,-0.002085034,0.07573935,-0.044677038,-0.030054836,-0.0622217,-0.04410487,0.017343968,0.045423977,-0.006840209,-0.07374886,-0.028356662,-0.02196779,0.015652372,0.032440137,0.075298585,-0.00077145296,0.053250827,0.052055836,0.100745626,0.07448147,-0.09299292,-0.1003225,-0.04084311,-0.091155924,0.029075628,0.021098064,-0.047230385,0.069834225,-0.027569182,-0.016341563,-0.0013892931,0.029320579,0.03520817,-0.059750125,0.004734364,0.04496537,0.016103335,-0.034896534,0.08137334,0.01739811,-0.03666199,0.015829893,-0.030731525,0.08415045,-0.033246942,-0.0058093644,0.011751523,-0.040727317,-0.01009519,0.04838471,-0.08596925,0.022131056,-0.0070835557,0.13820834,0.070745215,0.100404926,0.005534095,0.044847824,0.019071532,0.083647326,-0.057247505,0.06665955,0.09898258,-0.06456302,0.01089781,-8.499828e-33,0.034505587,-0.031473584,-0.023297213,0.07254696,0.055698033,-0.013921622,-0.010390565,-0.0034772356,-0.016355945,0.002639188,-0.079782255,-0.112348124,0.14840728,-0.05498858,0.031426013,0.020768218,0.012931775,-0.031562187,-0.009320745,0.040254563,-0.001526184,-0.034248196,0.01213776,0.02100071,-0.02649956,-0.048884857,0.012972086,0.005529214,-0.09731347,-0.0169634,-0.00031575526,0.029785275,-0.03429659,0.05279216,-0.057235837,0.024870828,0.05734894,0.027001552,-0.08508464,-0.047760494,-0.02731002,0.041479263,0.0061402465,-0.020331616,-0.08963659,0.05289605,0.052085318,-0.07609625,-0.041261792,-0.041895162,0.11918565,-0.0036012598,-0.0072369524,-0.03792145,0.04252954,-0.020548355,-0.047424644,-0.032889,-0.023530856,-0.0096168155,0.06824375,-0.029911496,-0.06535744,-0.035187483,0.0014483267,0.03805982,0.024296738,0.09628212,-0.0006009576,0.054143533,0.08179535,-0.0374701,-0.061069816,-0.061275244,0.009178895,-0.05559146,-0.08191273,0.063248634,0.00861932,0.0068174787,0.02171187,-0.0034621716,-0.039615907,-0.019123247,-0.021121463,0.03052104,0.005776128,0.037567023,0.051559746,0.021548357,0.0013080005,0.02860744,-0.0546872,-0.023918062,-0.07445178,-3.2155604e-08,0.078334466,0.026821835,-0.009558381,0.02220995,-0.004745979,-0.044419102,0.056237325,0.0041433075,-0.08917896,0.042134807,0.038385395,-0.01995353,-0.016480433,0.052867558,0.014330887,0.055557664,0.05217259,0.12941958,-0.0073796697,-0.04513068,0.08535144,-0.02982961,-0.12584156,0.056695633,0.021336026,0.035560794,0.0069341366,-0.07749175,0.06724179,-0.040183093,-0.0033686596,-0.028235156,-0.08250236,-0.049298063,-0.019816242,-0.009160931,-0.06934038,0.015219719,-0.0051937695,-0.088664874,0.0316528,0.062732376,-0.02542718,0.0029389511,0.008653454,-0.026763907,0.0050811744,0.0031609875,-0.00060582417,0.067954615,0.0024949755,-0.06415996,0.05745466,0.07206485,0.040405538,-0.026798291,0.09826323,-0.034603164,-0.022132112,0.025866754,0.037710395,0.08145788,-0.050324503,-0.0151649015} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.810054+00 2026-01-30 02:01:11.956192+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2083 google ChdDSUhNMG9nS0VJQ0FnSUR5eGM2UnBRRRAB 1 t 2086 Go Karts Mar Menor unknown Lindo lugar para todas las edades.\nDiversión y seguridad. Un lugar para seguir volviendo 👍 lindo lugar para todas las edades. diversión y seguridad. un lugar para seguir volviendo 👍 5 2022-01-31 01:52:39.833374+00 es v5.1 A3.01 {E4.01,V4.03} V+ I2 CR-N {} {"A3.01": "Lindo lugar para todas las edades.\\nDiversión y seguridad. Un lugar para seguir volviendo 👍"} {-0.0093052,-0.008933208,0.06484742,-0.018481754,0.013119036,-0.007842372,0.07270528,0.032215595,0.019210666,-0.012596137,0.108183645,-0.0024129318,-0.07943007,0.029930225,0.05460567,0.005076823,-0.016643178,0.095369235,-0.079685144,0.027070392,0.16245732,0.006572287,-0.074921615,0.0859309,-0.029937292,-0.049919933,0.036938544,0.008431984,-0.07033241,-0.07500753,0.05204825,0.034188993,0.024290362,0.020595059,0.016227726,0.007096242,0.039640527,-0.074143015,0.036971826,0.087285146,-0.12813395,-0.029096367,-0.0084521035,-0.07575457,-0.025856167,-0.103318825,-0.013855694,0.026741171,0.006620864,-0.038004484,0.012479336,-0.033457868,-0.07689462,0.0011430574,-0.041724183,0.01902443,-0.027309451,-0.07182523,0.08532971,0.012516628,-0.005581301,0.07294251,0.019969808,0.058349874,-0.05347014,-0.034297273,0.066899024,0.008029144,-0.04768345,0.046879407,0.036821574,-0.07562787,0.018823113,-0.003884923,-0.041712195,-0.042350486,0.044238243,0.021590188,-0.0026566808,-0.015100025,-0.019050136,-0.010844492,-0.02083225,-0.035821427,0.0005659182,-0.020675104,-0.07659533,0.02727338,0.074684754,-0.021623287,-0.008868955,0.047394987,-0.024796423,0.048462182,0.00818141,0.006182025,0.004448627,-0.15313603,-0.02411193,0.045189317,0.06660395,0.089996584,0.055344943,-0.02363784,-0.033962063,-0.022625124,0.07728596,0.020629939,-0.019809129,0.023140855,0.0010923146,0.0031720528,-0.014502543,-0.01170258,-0.073371656,-0.0013786528,-0.018214326,0.013356768,-0.051105026,-0.028225612,0.038417432,0.025161156,-0.034434818,-0.0017279233,0.0059295865,-0.048103392,0.06763863,8.167491e-33,-0.037946064,-0.06490216,-0.03917068,0.07884694,-0.007744877,0.04304433,0.008098721,-0.010962185,-0.0947353,-0.0023393042,-0.05350711,0.008709029,-0.04673952,0.051178716,0.05666199,0.04122149,0.015003601,0.035695408,0.09182116,0.030315476,-0.01915509,-0.015352639,-0.02797999,-0.030138867,-0.035718646,0.026983429,-0.06960042,-0.09952328,-0.0039623114,0.09062289,-0.013301481,0.063270606,0.025413841,-0.0049489075,0.031201845,-0.03185245,0.054281358,0.023160271,-0.00047879398,-0.046329167,0.058639854,0.05766269,0.012579495,0.023678511,0.021778768,0.01863856,0.039196104,0.0006491095,0.040324315,0.011427727,-0.051460367,-0.05469835,-0.009069123,-0.06277326,0.030231811,-0.030206345,-0.12783425,0.05615446,0.04631862,-0.041853826,0.07698969,0.03544862,0.0051635127,-0.04685736,0.08597937,-0.054013815,0.07259873,-0.012413094,0.052857943,0.0035595018,-0.12693179,-0.020771388,-0.073600546,0.086516075,-0.033916596,-0.059177537,-0.038327113,-0.0054825386,0.012286186,0.0052371705,-0.05063734,0.01129185,0.022618124,-0.0025245675,0.1541907,0.04466344,0.050290395,0.037474684,-0.00791377,0.070264526,0.011669079,0.050111953,-0.025250267,-0.06890692,0.08360152,-8.072406e-33,0.015441918,-0.010404341,-0.06685278,0.069328055,0.0048680175,-0.024008827,-0.0059212404,-0.046687126,0.016181368,-0.01590859,-0.16647054,-0.0782704,0.021377964,-0.055871423,-0.055068407,0.05924691,0.037868306,-0.055944372,-0.12197138,-0.0132085085,-0.035609,0.025207888,0.058363516,-0.035987753,-0.01881934,-0.0119998325,0.026707381,0.0226776,-0.12198805,-0.016040228,0.03744211,-0.006622127,-0.03124033,0.0017373133,-0.047355052,0.0034046555,0.016472366,0.017034417,-0.036673896,0.017930096,-0.062453687,0.012615275,-0.009000243,-0.032177106,-0.017237948,0.030167479,-0.015776483,-0.09379663,-0.055188894,-0.037757702,0.04662883,-0.078962244,0.011510744,-0.05758438,0.08188161,-0.055568505,0.010662525,-0.086889975,-0.0971537,0.0057381443,0.09194499,0.08691371,-0.087820746,-0.030523442,0.10012633,0.05666184,-0.047800522,-0.040459372,-0.02522666,-0.0015033961,0.11080165,-0.052212995,-0.046088926,-0.036107697,-0.02874934,-0.050826885,-0.08864711,0.04375789,-0.01674944,0.01056701,0.045341767,-0.113200046,0.03783339,-0.018367046,-0.08514898,-0.06754936,-0.01606962,0.01854732,-0.05114844,-0.0016744343,-0.00018123214,-0.04279783,0.026206357,-0.0071717743,0.028471133,-3.2505717e-08,-0.03136416,0.026103247,-0.017813168,-0.01928615,0.033196136,-0.012748291,-0.026462149,0.080525726,0.043659832,0.06772114,-0.03310557,-0.016262135,0.071825705,0.13362406,0.013764728,0.009939631,0.08910675,0.11313896,-0.016751796,-0.0124271605,0.106329605,-0.0023510957,-0.033377003,0.008577282,0.061668113,0.038027883,-0.04827057,0.04174146,0.043404862,-0.025083642,0.027338892,-0.06936637,0.010745849,0.004703838,-0.064855866,-0.010687793,-0.005593467,-0.015941635,0.035492666,0.012372948,0.071684234,0.006366648,0.021967158,-0.006440857,0.025396015,-0.055056784,0.06359527,0.0711991,-0.03728026,0.059075154,-0.038848463,-0.04820326,0.04082612,0.049138494,0.02838144,-0.06914673,0.030513605,0.013004259,-0.026270969,0.009231745,0.08419501,0.08645486,-0.064463645,-0.06350303} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.621929+00 2026-01-30 02:01:11.898483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2084 google ChdDSUhNMG9nS0VJQ0FnSUNRNVl2N2hRRRAB 1 t 2087 Go Karts Mar Menor unknown Es estupendo. La pista de karts es brutal, cuando conduces un kart te da un subidón. es estupendo. la pista de karts es brutal, cuando conduces un kart te da un subidón. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.02 {V4.03} V+ I3 CR-N {} {"O1.02": "Es estupendo. La pista de karts es brutal, cuando conduces un kart te da un subidón."} {-0.06651061,0.020945327,0.014294562,-0.050229944,-0.05232315,-0.00290326,-0.04966882,0.060311247,0.027294403,0.008923502,0.004756339,-0.041736536,-0.03855878,-0.009144002,-0.050931666,-0.07134425,-0.043912113,0.03729589,0.08369634,0.0069011822,0.057582635,-0.04700866,-0.022701964,0.07916797,-0.10012379,-0.013283538,0.016988834,0.0126536,0.0119671,-0.07531793,-0.091816686,-0.015559583,0.0039141336,-0.053054243,-0.019556303,0.028813876,0.023097185,-0.06384121,-0.065572746,0.04314084,-0.054785486,0.045428857,-0.07734194,0.009348501,0.025330918,-0.056363527,-0.07795486,0.000794047,-0.042966753,-0.037513677,0.003319323,-0.018169435,0.0012867983,0.002035421,0.016833747,0.016764276,-0.101644255,-0.00283583,0.12931173,0.010581284,0.056088813,0.087032884,-0.06618863,0.04580906,-0.013441253,-0.06354513,0.08780168,0.011198043,-0.057755813,0.13999075,0.11754532,-0.052154634,0.012861471,0.027601987,0.015586834,0.090505004,-0.040428076,-0.06514466,-0.11147333,-0.02856599,0.020775376,-0.0103408275,0.014792686,-0.08452978,0.026684431,-0.052954637,0.05175021,0.00050557713,0.059121236,-0.01306222,-0.03017964,0.060175736,-0.059382323,-0.053986955,0.04270007,0.03270919,-0.040821053,0.040257186,0.030765608,0.012035879,0.083879575,0.03109674,-0.029348169,-0.0013285168,-0.036221948,-0.019134283,-0.004930356,-0.08455116,0.019794391,0.06896585,-0.06901507,0.0029059793,-0.042277705,-0.048336282,-0.083617255,0.027567945,-0.026702963,-0.05844493,-0.0425446,0.04530476,0.052597214,0.03164209,-0.050705764,0.023427654,0.021839606,-0.054155964,0.025000917,2.2371307e-33,-0.0392838,-0.048079435,0.012944697,-0.056157317,0.048581988,-0.060985707,-0.095765434,-0.060197562,-0.07705531,0.025071668,-0.041257255,0.12358564,-0.06599443,0.0003686054,0.021537991,0.033360276,0.026074804,-0.009668852,0.03582666,-0.040658947,-0.07189339,0.02958597,-0.02013469,0.05152755,-0.02866029,0.0010883097,-0.007939344,-0.01569711,-0.12689942,0.05145144,-0.0533984,0.013687191,-0.022205878,0.057076093,-0.016737232,-0.0061484636,0.054520085,0.045606393,-0.022091726,-0.008224715,0.024170127,-0.02104855,-0.065138996,0.034392104,-0.056565315,-0.0020191553,0.044892844,-0.020835454,0.045720454,0.005292895,-0.083062254,-0.064840406,-0.0020309624,-0.05275983,0.024062337,0.035923433,-0.03848028,0.02023107,0.0052040853,-0.07396029,0.03140783,0.0029664724,0.03914043,0.014302534,-0.057605002,-0.07254696,-0.005462958,0.045856167,0.11176953,0.01649972,-0.10299739,0.019972725,0.035783593,0.026079599,0.05077969,0.002684103,0.015994001,0.03732995,-0.0941565,0.0754635,-0.061010584,-0.010119503,0.021766802,0.055754676,0.05516612,0.07391042,0.037820745,0.008823672,0.011458387,0.12581658,-0.036143087,0.0069227205,0.043211684,-0.037870444,0.055827357,-4.159737e-33,0.042426694,0.032380234,0.039482363,0.06058452,-0.04152782,0.04284942,-0.0038313142,0.0063819312,-0.021050965,-0.04980449,-0.120169066,-0.0869603,0.084504925,-0.054249473,-0.0067494106,0.086688675,0.027233923,-0.03047614,-0.033914853,-0.043973036,-0.064102404,0.0301933,0.04249842,0.00881547,0.029213525,0.019341284,0.007826914,0.07149499,-0.111075245,-0.03297811,0.012867914,-0.008456814,0.02337692,0.056332693,-0.05206909,0.0961887,0.09864768,0.108828746,-0.022786248,0.017598363,0.01561973,0.040926848,0.006411495,-0.026798224,0.039487623,-0.011629093,0.09251117,-0.14904088,-0.024660412,-0.055742826,0.062058914,0.03823095,-0.009384141,0.02046669,0.089998156,-0.0753319,-0.08042853,-0.032403346,-0.057295416,0.052681513,0.057922482,-0.004397164,-0.071534984,0.0058486327,0.085174985,-0.004075734,-0.067728564,-0.017785788,-0.011938325,0.09872365,-0.0005172237,0.024778975,-0.045248915,0.02149079,0.010888036,-0.07248769,-0.07161986,0.054880545,-0.028146526,0.018459504,0.0031176847,-0.034725007,-0.023101408,0.031739745,0.012899675,-0.0029777226,-0.030269003,0.05008397,0.009520757,-0.0023824247,0.018882645,-0.0016943251,0.01616167,-0.018501185,-0.037510835,-2.8455393e-08,0.10799905,-0.0014087196,-0.03679502,0.053612925,0.088471286,-0.041396763,-0.06833445,-0.015936313,-0.019652484,0.08309925,-0.041684635,-0.0054788,0.075087,0.028745087,-0.0035939654,0.114673264,0.03297221,0.13713278,0.001651514,-0.019447647,-0.022286674,0.042630266,-0.036237266,-0.053836357,-0.03242925,0.049252003,-0.013006985,-0.01198608,0.014617427,-0.018633952,-0.054058976,-0.020066105,-0.090556875,-0.029052535,-0.03144314,0.00022853946,-0.029890198,0.058187384,-0.027662346,-0.004150157,0.08186693,0.08372351,-0.08303952,0.013033185,-0.052861486,-0.012497236,-0.059045836,0.018324746,-0.03547198,0.05902215,-0.026785381,0.00065678306,0.0724828,0.015469091,0.07431106,-0.023436684,0.0834465,0.010846078,-0.07773866,-0.029529516,0.01725397,0.049324524,0.06364133,-0.019596279} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.634273+00 2026-01-30 02:01:11.901586+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2106 google ChdDSUhNMG9nS0VJQ0FnSURzaFBxZjJBRRAB 1 t 2109 Go Karts Mar Menor unknown Es un buen Karting para todos y si quieres echar unos piques con tus amigos Adelante! es un buen karting para todos y si quieres echar unos piques con tus amigos adelante! 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.01 {A3.01} V+ I2 CR-N {} {"O1.01": "Es un buen Karting para todos y si quieres echar unos piques con tus amigos Adelante!"} {-0.034171972,0.014271511,-0.0044530565,-0.003411041,-0.023188962,0.035698123,0.054559376,-0.00938771,-0.0084208045,0.017678276,0.048115663,-0.0051116855,-0.031366404,-0.00027364912,0.03339407,-0.03455107,-0.06797281,0.038222227,-0.013668582,0.034214288,0.035870943,-0.05979292,-0.043516733,0.08680371,-0.124108166,-0.039054934,0.046468705,-0.006599082,-0.00433138,-0.084441565,0.00827854,0.035468,0.0014970567,-0.012213456,0.0402013,-0.0022326403,0.047314033,-0.13304609,-0.039286274,0.008450762,-0.06762377,0.015557473,0.0045499476,-0.07944462,0.10258012,-0.034280386,-0.05127829,0.057275042,0.033070307,-0.02733795,0.015676513,-0.026645081,0.020714844,-0.040215172,-0.0013910498,0.0019082675,-0.06618453,-0.019552257,0.07842671,0.015262415,0.0038489501,0.009754408,-0.013949632,0.019993931,-0.08765989,-0.06481985,0.036274195,0.035459302,-0.090139404,0.11556949,0.09211631,-0.017233606,-0.04366333,0.022248344,0.07907113,0.048815507,-0.046960108,0.027832998,-0.11773582,-0.031281367,-0.04029106,-0.068574674,-0.051857483,-0.03048846,0.050469365,-0.06024801,0.014325728,0.02821262,0.06481995,-0.009862043,-0.0684048,0.06758003,-0.07418394,-0.013336337,-0.028481819,0.03583439,0.012412408,0.022118302,-0.011289244,0.023214858,0.08094302,0.09207081,0.09312021,0.033941735,-0.016739272,0.057273988,0.022422144,-0.015404145,0.080201164,0.020080486,0.0035023212,-0.07414714,0.003950377,-0.05456403,-0.08553456,-0.018115003,-0.040367465,-0.078653544,0.00028019116,-0.05871178,0.024711583,0.0021877843,-0.10109444,0.0042539174,0.03171299,-0.05188269,0.0830334,7.756327e-33,-0.067569524,-0.007979248,0.046240974,-3.2041793e-05,-0.004424747,-0.010356829,-0.060875915,-0.07642225,-0.04596668,-0.012495488,-0.040996086,0.1181232,-0.017481567,0.04479716,0.09528222,0.052341342,0.023334675,-0.042724058,0.0914977,0.060300864,-0.042811796,-0.07323427,-0.07520398,0.021135371,-0.044826303,-0.014838073,-0.008772418,-0.08165658,-0.05179555,0.071237125,0.0050165,0.038640346,-0.013047748,0.008572054,-0.08755753,-0.02293859,0.040378638,0.048290692,0.00418126,0.01666266,0.05690709,-0.006652572,-0.011555093,-0.006069745,-0.049810138,-0.006066403,0.06421319,0.006105848,0.03388629,0.039067727,-0.12626405,-0.072315715,0.020783223,-0.06272973,0.024350554,-0.043576464,-0.080000065,-0.0007267903,-0.055371985,-0.059387103,0.065004684,0.043266274,-0.0031241048,-0.031700827,-0.0919278,-0.051477678,0.072732076,0.04480024,0.05266436,0.03710947,-0.06798221,0.08526284,0.0006334182,-0.046001274,0.08061616,-0.0012677361,-0.053576387,0.055271883,-0.027492374,0.054927435,-0.09798881,-0.07169142,0.049043946,0.07960687,0.091344126,0.023477133,0.06326284,0.023984369,-0.035553884,0.06466477,-0.034279656,0.09695132,0.03548787,0.022554632,0.052495413,-8.3487444e-33,0.03783856,0.009134954,0.030066058,0.0677676,-0.035926312,0.065095596,0.054311287,-0.02231755,-0.019769555,-0.122931205,-0.12823883,-0.100413725,0.14299798,-0.054200757,-0.052892223,0.039292708,-0.024512706,-0.059347805,0.020002803,0.015754582,-0.06860774,-0.0008391886,0.03144756,-0.017293368,0.0002552497,-0.021291759,0.03528176,-0.013017817,-0.07327414,0.023550818,0.01837498,-0.041633256,-0.015257048,0.018659353,-0.049860407,0.07128618,0.052055955,0.05055375,-0.0027211972,0.029559819,0.00020697969,0.05057354,-0.046629597,-0.015553183,-0.01682582,0.031700104,0.06327267,-0.069375366,-0.09600872,-0.0116909845,0.06721908,0.0043180594,-0.030603776,-0.00048107817,0.0380599,-0.024418531,-0.033655923,-0.030169297,-0.118709914,-0.025195826,0.03646462,0.06375161,-0.0299838,-0.010503876,0.05090232,-0.0078684045,-0.07062316,0.010702535,0.028399326,-0.01580351,0.045558203,0.04496071,-0.059182514,-0.006890943,-0.03948792,-0.026778515,-0.020939814,-0.024547217,0.011818434,0.027732994,-0.030373393,0.027976427,-0.032990962,-0.017063195,-0.043637075,-0.003262687,-0.08408162,0.0183704,0.0039147185,0.01794029,0.063738786,0.04428406,0.032829076,0.0073395427,-0.06756396,-3.2953174e-08,-0.025595285,0.016391149,-0.061993975,0.0037689386,0.03695729,-0.049392994,-0.007914652,0.020854864,-0.019042242,0.009240153,0.020968214,-0.048478775,0.014364508,0.049059298,0.016581407,0.10157173,0.07713813,0.14143442,0.0072320863,-0.015566607,0.021137979,-0.025818404,-0.06575668,0.0074850856,-0.020083098,0.0003851316,0.013388662,-0.03406804,0.03896971,-0.11272839,-0.040334355,-0.07972889,-0.07999571,0.017695846,0.020826051,-0.041206256,-0.06092725,0.033605877,0.010832771,-0.01096068,0.022533359,0.032712482,-0.06419666,-0.04202483,0.00027757892,-0.07720688,0.0374627,0.028138319,0.0152110215,0.09571013,-0.04560091,-0.07140816,0.11502539,0.025337188,0.09599219,0.012271811,0.06979731,-0.04621551,-0.016628258,0.0074369004,0.040319063,0.10717316,0.027740007,0.019353913} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.269602+00 2026-01-30 02:01:11.98493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2108 google ChZDSUhNMG9nS0VJQ0FnSUQwcU5QdUJ3EAE 1 t 2111 Go Karts Mar Menor unknown Sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato 5 2026-01-30 01:52:39.833374+00 es v5.1 A3.01 {E1.04} V+ I3 CR-N {} {"A3.01": "Sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato"} {-0.024966046,0.011075179,-0.021678315,-0.013372113,-0.058741353,-0.0063584507,0.02954311,-0.0025724676,-0.043814465,0.02342185,0.05474932,-0.002509504,-0.047524836,-0.023764474,0.013705148,0.0018381503,-0.0733465,0.061620817,-0.013767969,-0.04840265,0.023134863,-0.075518906,-0.017224245,0.08031259,-0.1064445,-0.0017456148,0.030330366,0.0025792331,-0.03057356,-0.0057080938,-0.00770294,0.066338696,0.12667197,-0.01700139,-0.0012866356,-0.006488014,0.04958804,-0.037326347,0.05351064,-0.02798387,-0.06714236,-0.019919243,0.02750133,-0.039446823,-0.008593354,-0.072244495,0.058542695,0.07485591,0.045353085,-0.027377468,-0.053813748,-0.04330037,-0.03449872,0.05946322,-0.026944473,0.0054071983,-0.04090769,-0.07667573,0.009523029,-0.01764325,-0.02025478,0.029623505,-0.06806093,0.024606254,0.003524656,0.070220985,0.034900032,-0.006902279,-0.04923423,0.084652804,0.06843489,-0.033065688,0.03795677,0.06643118,-0.02777251,0.011266276,-0.061241087,0.005616849,-0.0693382,-0.03517678,0.010939733,-0.014947284,-0.023159793,-0.0360046,0.01841092,0.04260616,0.020993551,-0.010629921,-0.04552771,0.019245524,-0.08434812,0.109290965,-0.052896556,-0.038550474,-0.007967617,0.008125766,0.056124363,-0.03535126,-0.0022718485,0.024941634,0.06691075,0.08113441,0.07690281,0.02114481,-0.052565113,0.018550657,0.015340167,-0.025234165,0.030947309,0.045834042,-0.10416446,-0.027131215,-0.055549864,0.009850929,-0.10007062,-0.04424771,0.03165794,-0.10287768,-0.034387976,-0.023200896,0.06671123,0.038382918,0.044857368,0.00859615,0.019961309,-0.07876717,-0.013579736,4.9674195e-33,-0.054562397,-0.01695561,0.0017736015,0.0093094185,-0.019559044,0.09214162,-0.03530198,-0.010288488,-0.03225627,2.8093029e-05,-0.075921744,-0.035761293,0.07094655,0.009947526,0.041269403,0.0257755,0.0013433705,0.021112274,0.06260952,0.06036467,-0.06777005,0.021488512,-0.05510179,0.020941466,-0.052191064,0.06850876,0.0017091341,-0.04461952,-0.014386841,0.07015709,0.027720658,0.008812511,-0.0061585438,-0.06696427,-0.087428845,-0.08631345,0.09487413,0.005836676,0.04044233,0.015221104,0.009995433,0.016145604,0.013324614,0.015106251,0.037223652,-0.039769463,0.030835595,-0.021918738,0.046959903,0.08734352,-0.1287441,-0.10400801,-0.024646072,-0.06678335,0.02493789,-0.093427114,-0.019812306,0.080700874,-0.043865148,-0.044094887,0.11878051,-0.043663003,-0.013060502,-0.07333393,-0.082936,-0.02291812,0.055097904,0.025020339,0.10124242,0.0065890145,0.0022435517,-0.043553073,-0.06600083,-0.035725456,-0.017263118,0.038469955,0.026984703,0.049185786,-0.005426787,0.023214338,-0.022044849,0.059103664,0.041732773,0.021469383,0.025297808,0.045455914,0.0071334387,0.08103548,-0.09773573,0.058038548,0.060269184,0.047823787,0.04601033,-0.047100533,0.033568747,-5.2130052e-33,0.027333558,0.06601861,-0.013273231,0.036502857,-0.041545693,-0.07380012,-0.0706134,-0.025734067,0.08067582,-0.022693293,-0.04218704,-0.14650455,0.16652736,-0.028508594,-0.023486594,0.0627233,-0.0047103274,-0.072887436,-0.019804146,-0.03656978,0.027693905,-0.009289328,0.08564895,-0.0036530357,0.07444785,-0.045570564,0.0018153931,0.05656303,-0.07243617,0.04124791,0.0815494,-0.04909408,-0.05411684,0.033835646,0.05123417,0.023864735,0.0029010251,0.08652616,-0.050847977,-0.013726066,0.07304159,0.030991552,-0.06351665,0.009953605,-0.03307615,0.03182138,0.04130757,-0.07311425,-0.029655604,-0.04167421,0.006751241,-0.043566342,0.016737113,-0.051407963,0.05271033,-0.033771582,-0.0155341765,-0.05458406,-0.08200759,-0.040358197,0.03661997,0.01166254,-0.077742346,0.047494788,-0.030988734,-0.015594407,-0.05065051,0.042067863,0.0039057345,0.15204121,0.047852542,-0.041792624,-0.0865801,0.05968036,-0.050316192,0.06894567,-0.032103762,0.022768565,0.024028745,0.053179916,-0.019992188,-0.013215147,-0.028118558,-0.031179732,-0.03810518,-0.08293633,-0.054650377,0.09510164,-0.0033890926,0.031855308,0.051597875,-0.00670669,-0.018661525,-0.07446731,-0.06297587,-2.5642745e-08,0.044456314,-0.07931134,-0.017253684,0.06740592,0.03960817,-0.047652848,0.056607794,-0.04681947,0.013033713,0.096817635,-0.087552026,-0.03537814,0.044830896,0.032711614,0.0062999884,0.029143006,0.10666428,0.07381857,0.0036765651,-0.018396799,0.09561532,-0.047352478,-0.016666366,0.0004663649,-0.001965727,0.022691138,0.009667514,-0.018863369,-0.046950523,-0.03809559,0.00010585181,-0.024335613,-0.058941275,-0.012671762,-0.04436801,-0.017464507,-0.05476853,0.07220305,-0.043970887,-0.04591344,0.096382566,-0.0038039503,-0.0021765071,-0.034443907,0.034044776,-0.024534447,0.03484214,0.050222874,0.0019745799,-0.026433093,-0.03493967,-0.020290019,0.056036863,0.012721339,-0.008715105,-0.018558515,0.05227719,0.08291925,0.06811545,-0.0015299107,0.06684619,0.18415155,-0.039698742,-0.043832947} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.307648+00 2026-01-30 02:01:11.99081+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2110 google ChZDSUhNMG9nS0VJQ0FnSUNDc01yRFJREAE 1 t 2113 Go Karts Mar Menor unknown Sans plus j I retourne demain on Vera bien il était tard il allait fermer sans plus j i retourne demain on vera bien il était tard il allait fermer 3 2021-01-31 01:52:39.833374+00 fr v5.1 V4.03 {A1.01} V0 I1 CR-N {} {"V4.03": "Sans plus j I retourne demain on Vera bien il était tard il allait fermer"} {-0.06361823,0.06981541,0.06693385,-0.0101709645,0.064623974,0.061936133,0.0686627,0.082605265,0.034770515,-0.030876284,-0.057729755,-0.02678927,-0.014065309,-0.06737186,-0.056046803,-0.119318634,-0.09304559,0.100826405,0.013461752,0.012880431,-0.028108355,-0.050292812,0.017108388,-0.008559086,-0.0030443661,0.015145584,-0.00060925353,0.024138559,0.016473023,-0.018845366,0.05353008,0.061077133,0.022403697,-0.032260362,-0.05869728,0.021105718,0.028536243,-0.017093137,0.0058825985,0.060837198,-0.040917546,-0.07214623,-0.09047904,-0.03448396,0.05413835,-0.016962059,-0.019036237,0.00059834495,-0.069678456,0.13089758,-0.045103554,0.034847405,0.06881228,0.06753128,0.059538145,0.035508778,0.033272456,-0.0044585974,0.00689156,-0.05373267,0.0039053557,-0.051678233,-0.022560243,-0.016579174,-0.06778479,-0.04928759,0.012913718,-0.03453159,-0.05089228,-0.01608691,0.02523063,-0.03520434,0.0036967706,-0.07335967,-0.0009630234,0.0239823,0.0069808373,-0.03777446,-0.010195479,-0.11181295,0.0294034,0.007969823,0.042224657,-0.022699565,-0.002451439,-0.0011270029,0.04056965,-0.050447,0.11772427,0.022408834,-0.008666927,0.051513784,-0.10045925,-0.0026140956,0.024848647,-0.0010248891,0.02257345,0.009361289,-0.041892085,0.028870687,-0.008405144,0.025985582,-0.015446427,0.065792084,-0.076807044,-0.041859064,0.01176606,-0.030922802,-0.019924209,0.034373336,0.020348564,-0.014080146,0.062024735,-0.05820837,0.09703998,-0.022089666,-0.040426906,-0.106115565,-0.0073997136,-0.102083415,0.037189968,0.0025770674,0.022778213,-0.025972258,0.037975054,-0.020039521,0.054581363,2.8233995e-33,-0.035052303,0.09379909,0.009530096,-0.0011114415,0.025866872,-0.012300867,-0.10490514,0.016508438,-0.05318549,0.053746324,-0.02612148,-0.06348044,-0.06681443,0.0014474172,-0.013656174,-0.040987104,0.13576484,-0.04989853,0.013462772,-0.06673535,-0.05281688,-0.001032494,0.09410282,-0.035747457,0.08276331,-0.011385984,0.060092717,-0.026988098,-0.09723006,0.02102865,0.08493162,-0.062622465,-0.0009857729,0.0024549053,-0.002432065,-0.0010561483,0.015062017,0.055115305,-0.023849223,0.0064697643,0.017246177,-0.0041048103,0.048390333,-0.052024577,0.032041248,0.07881035,-0.0038356574,-0.025554039,-0.023661042,-0.00021895193,-0.03217307,0.054410156,-0.09245691,0.014643668,-0.017072644,0.057719976,-0.12905625,0.018334236,-0.023976244,0.071961254,0.04237803,0.001575038,0.0003937448,0.013502891,-0.0011240172,-0.022365816,0.0021059662,0.03588202,0.11180218,0.0049336446,-0.037673935,0.044617627,0.13360685,0.02218592,0.06256246,0.12158362,-0.07999267,0.032188483,0.03312688,-0.07284502,-0.1100988,-0.07320737,0.017980713,-0.0110733695,0.035729386,-0.010956165,-0.047462303,-4.5123958e-05,0.0031258897,0.022861093,0.017811406,0.006089816,0.011234806,-0.03762785,-0.021512344,-4.1083645e-33,0.059872445,-0.020826073,-0.05711577,-0.016960075,-0.08960534,0.04274113,-0.039356686,0.004364886,-0.11804617,-0.040817276,0.014273082,-0.04993045,0.013620386,-0.0042674253,-0.033551943,0.09994654,-0.013235393,-0.03774675,0.02207775,0.00021347715,-0.026999852,-0.05691101,-0.06355135,0.053909723,-0.03220368,0.059233006,0.058379713,0.05325091,0.009733408,0.0031057175,0.09527624,-0.042846043,-0.0014842293,-0.054617785,0.07016694,0.047600705,0.0761871,0.013742389,-0.00034667342,0.06608677,-0.033418287,-0.015102792,-0.028797071,-0.06626134,0.07955737,-0.014350783,-0.07552238,-0.010553065,-0.018806186,-0.013130495,0.026192097,-0.023778437,-0.030819679,-0.033891052,-0.010687793,-0.031539675,-0.0009455838,-0.027778031,-0.08630007,0.021368796,0.07510655,0.08447232,0.014594969,-0.034528613,0.069212765,-0.04316799,-0.020041851,-0.004853905,0.1054272,0.003249621,0.09151172,-0.016431093,0.017880308,0.06509453,-0.042127457,-0.07556496,0.11449908,0.023707954,0.010567964,0.07210199,-0.06823152,-0.044610348,-0.04099598,0.03330425,-0.055569876,-0.07124754,0.05473226,-0.05906243,0.02166016,-0.07717162,-0.0068685994,0.02056021,-0.05162215,-0.008340838,0.013644278,-2.200027e-08,0.02169371,-0.087752394,-0.020742338,-0.028521342,0.06338293,-0.13372402,-0.07509786,-0.040466245,-0.056868847,0.01403425,-0.01741931,0.06362911,-0.0010293323,0.046586644,0.04594159,0.010846989,-0.024712982,0.07205897,-0.019692501,-0.13907969,0.0059240805,-0.008955997,-0.07764658,-0.08399123,0.008501134,-0.053007945,-0.022257114,-0.08914307,-0.003217942,-0.022744995,0.03172889,0.12039119,0.010908842,-0.029067475,0.010863816,0.016593708,0.040079985,-0.015178213,0.02027579,0.057246782,0.07172575,0.044183545,0.07622242,-0.05437822,-0.0017743239,-0.04503635,0.025528017,0.018442532,0.032396525,0.05200869,-0.014606948,0.05533587,0.09677565,0.04561952,0.026386008,0.037338346,-0.053119022,0.024989484,0.05894387,-0.0004078679,0.043867473,-0.005205907,-0.0011831354,-0.13685656} 0.55 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.34015+00 2026-01-30 02:01:11.996708+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2114 google ChZDSUhNMG9nS0VJQ0FnSURzaXNiU1JREAE 1 t 2117 Go Karts Mar Menor unknown Genial,el personal muy amable y atentos con los niños lo recomiendo 100% genial,el personal muy amable y atentos con los niños lo recomiendo 100% 5 2021-01-31 01:52:39.833374+00 es v5.1 P1.01 {P3.01} V+ I3 CR-N {} {"P1.01": "Genial,el personal muy amable y atentos con los niños lo recomiendo 100%"} {0.008657386,0.023993213,0.06886817,0.049034752,0.055305704,0.004805124,0.055658992,0.00019206718,0.009221747,0.033183295,0.07503778,-0.057539053,-0.027807476,-0.0015278921,0.04506013,0.024228891,-0.12382942,-0.025891956,-0.02244159,0.02257042,0.0074012903,0.015319922,-0.09065998,0.043056626,-0.08776082,-0.00700948,-0.038941666,0.04242327,-0.018856034,0.005075905,-0.06480323,0.18810235,0.070060864,-0.034632243,-0.055623766,0.0127238585,0.051525265,-0.041044805,-0.06147425,0.04036811,-0.039691433,-0.003983193,0.047182415,-0.0019971204,-0.01809319,-0.038757622,-0.025495656,0.07497414,-0.0033915208,0.04232784,-0.036199693,-0.02834251,-0.0012530504,0.0029031392,-0.021628689,0.046120953,0.008734599,-0.058398813,0.06670068,0.041449983,-0.0062991367,0.07562009,-0.064339556,-0.0005724034,0.09916625,0.020378413,0.035779513,-0.016156826,-0.053887818,0.03165659,0.064032994,0.047397334,0.04354266,0.023499884,-0.018283363,0.028599702,-0.0037988615,-0.018118974,-0.047840953,-0.020598592,-0.013722715,0.019391086,0.034854352,-0.10776438,-0.02991032,0.0106704505,0.01047535,0.011067279,0.020209908,-0.0132507095,-0.015144195,-0.039250415,0.026178574,0.036556788,0.029647509,0.12664744,0.0040780106,-0.10126176,0.013616512,-0.005370606,0.023380151,0.029655589,0.07712464,0.044472687,-0.026871555,-0.00053410203,-0.044091113,-0.08021357,-0.093989305,0.0008002919,-0.09088141,-0.022262724,0.044720862,0.023466107,-0.02796821,-0.08818687,0.013618512,0.0027239872,-0.008033932,-0.053833034,0.041010845,0.039507717,-0.08914003,0.0072891726,0.007234065,-0.01434564,0.07346954,5.2328e-33,0.046629664,-0.061099764,-0.016850049,0.05125608,0.019396821,0.011677802,-0.07197332,0.012550682,0.036146082,-0.09802729,-0.019332107,0.027981091,-0.0063273883,0.022798251,-0.0069354116,0.017326469,0.017576741,-0.035862383,0.041686226,0.07149071,-0.08166802,-0.025119996,-0.003124217,-0.025487835,-0.021982757,0.05011306,0.019040141,-0.029831823,-0.08181544,0.027658595,0.03011165,0.020503925,-0.025330393,-0.020335149,0.020541072,-0.020982277,0.074117914,0.044471692,-0.0049642916,0.024347667,-0.018685285,0.056482915,-0.044242688,0.020906566,0.024615344,-0.0043796687,0.07025837,0.072972186,-0.025088802,0.041839566,-0.08264573,-0.018529115,-0.119403645,-0.14539693,-0.020269869,0.035854794,-0.018696494,0.048218857,-0.08012241,-0.07505841,0.052711066,-0.0076192813,0.0859864,-0.090045035,0.00414721,-0.02751328,0.10208274,0.017689932,0.055167977,0.021858314,-0.026401326,-0.05505322,-0.014266439,0.008341038,0.038698874,-0.022748219,0.1137572,0.002901334,0.054954883,-0.0024672325,-0.062718935,0.05724666,0.012304581,0.014635903,0.049464192,-0.00090218993,0.072388716,0.09496596,-0.011000796,0.046962775,0.03350442,0.0469226,0.111050606,-0.061880834,-0.02279133,-5.4158346e-33,-0.045299962,-0.0282605,-0.018257057,0.0897205,-0.061971083,-0.07889749,-0.014805422,0.03957881,-0.027336435,-0.042089794,-0.10562282,-0.09313147,0.10060536,-0.0595582,-0.049207956,0.055644758,0.037879866,0.03235294,-0.08280892,-0.021818142,0.005596332,0.06826988,0.057478033,0.00022344275,-0.044352148,-0.042134028,-0.092930324,0.017376328,-0.099888384,0.017133554,-0.017870288,0.0022944317,-0.02708723,-0.010850767,-0.008545497,0.047011122,0.0045373137,0.027022311,0.01790984,0.003634725,-0.028808562,0.103384815,0.008370488,-0.033317644,-0.015388546,0.04328357,0.07741363,-0.094648466,0.03172499,0.028023692,0.040008087,-0.014098389,-0.08228823,0.015111868,0.025595803,-0.0019185635,0.007730014,-0.07514761,-0.11807737,0.016567875,-0.008754547,-0.02974027,-0.012468078,-0.032366443,0.08718372,-0.01914591,0.016407615,0.023329679,0.118413255,0.04530369,0.099553995,0.017552633,-0.06961524,0.00070549955,-0.023432074,-0.06841251,-0.08246763,-0.017026538,-0.028002951,0.028174952,-0.05301962,0.033622954,-0.020320836,-0.077554934,-0.067502886,-0.05114647,-0.02021456,0.0053820326,0.017809452,0.029157998,0.03592337,-0.010659767,-0.1498553,-0.019649215,0.014646567,-2.633919e-08,0.072644174,-0.004028334,-0.0058872886,0.047605924,0.049647268,-0.03434267,-0.011677784,0.044796314,0.047766775,0.064054735,-0.024240898,0.024375962,0.019279286,0.040926263,0.018641002,-0.0026516723,0.06967568,0.051613644,-0.054892924,-0.0372219,0.09045545,0.028691122,-0.047067896,-0.01014644,0.03548311,0.029565677,-0.05516613,0.021405233,-0.035059683,-0.005156819,-0.0047891014,-0.06858252,-0.06429886,-0.12361671,-0.035910312,-0.023670143,0.013369816,-0.0095775835,-0.008249435,-0.08885527,0.11872466,0.016769199,-0.067984775,0.05690421,-0.067643434,-0.15021855,-0.014899841,0.0026757205,-0.008604297,0.024450956,0.010211095,-0.070766404,0.04802001,0.044537403,0.05355128,-0.024594346,0.05109881,-0.0024563544,-0.019095132,-0.017029384,0.012452519,0.10879664,-0.0415087,-0.095438} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.402832+00 2026-01-30 02:01:12.006834+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2115 google ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB 1 t 2118 Go Karts Mar Menor unknown Buena experiencia, pero podrían acolchar los asientos para hacerlo más llevadero buena experiencia, pero podrían acolchar los asientos para hacerlo más llevadero 4 2021-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"E1.02": "pero podrían acolchar los asientos para hacerlo más llevadero", "V4.03": "Buena experiencia"} {0.020317702,0.07083867,-0.052351713,0.06708066,-0.10626863,-0.038697086,0.038083736,0.024599351,-0.012296705,-0.001759026,0.100044884,-0.017717157,0.00015003703,0.0036078973,0.027170038,0.031058852,0.045186143,-0.0018801759,-0.0106457425,-0.05511062,0.009775193,-0.032751124,-0.060511187,0.067954175,-0.0298033,-0.04899149,-0.030561456,-0.033336636,0.0095925955,-0.02740477,-0.006353292,-0.008801211,0.12992568,-0.008829221,-0.0087486515,0.09592947,-0.022000715,-0.028747596,-0.03073574,0.06434984,-0.11021365,-0.07882908,-0.016094167,-0.031241927,-0.060000956,-0.07691117,0.008700714,0.04130477,0.030902782,-0.014289213,-0.08538659,0.004886993,-0.053083375,-0.052964225,-0.09406895,0.025559504,-0.107850775,-0.00782882,-0.029629502,0.010118163,-0.016006527,0.015411618,-0.074578986,0.042638663,-0.006279212,-0.034593698,0.00083675823,0.024438027,-0.011405496,0.0422577,0.100235455,-0.09650079,0.074477494,0.023753341,-0.031248277,-0.009373474,-0.020761313,0.003805585,0.011510271,-0.07021818,0.086589955,0.061533373,-0.026779324,-0.020831844,-0.0460549,0.040360812,-0.028703319,0.015080678,0.0033746506,0.081642,-0.020373827,0.013318776,-0.16658239,-0.027072132,-0.034226313,0.032672584,0.007528309,-0.11904792,-0.012148347,0.042636476,0.060029764,0.041751973,0.04609927,0.008846132,0.0073616104,0.026911946,-0.05811913,-0.10901726,0.052877884,0.01667682,-0.07063979,-0.043950204,-0.07789992,-0.042814855,-0.04846796,0.027815137,0.022857593,-0.018196117,-0.06185562,-0.1165343,0.023909384,-0.05072286,-0.012657014,-0.031977877,0.09124131,-0.08924124,0.03043358,8.686957e-33,-0.023363076,-0.06473701,0.04702552,0.08123405,0.011051264,0.028142571,0.020290164,0.018824542,-0.009186862,-0.035519116,-0.00061224867,0.025161069,0.024526246,0.013625059,0.05644374,0.011067311,-0.03841411,0.029687865,-0.014766661,0.022079602,-0.04212928,-0.040944424,-0.057207987,0.0312817,-0.038975205,0.06888311,0.03976236,-0.04741226,0.008848369,0.047382213,0.05157883,0.0355511,-0.040539347,-0.077322744,0.0074204523,0.0687101,0.04195996,0.03919256,0.030725233,-0.062753335,-0.0011781941,0.06906599,-0.0035281766,0.032203924,-0.005790265,0.0024464685,0.06750289,-0.046020642,0.007837514,0.0242448,-0.05880085,-0.053035185,0.02999918,-0.028018493,-0.010889731,0.029700983,-0.031444028,0.0979538,-0.02169631,-0.06628298,0.079736166,0.0119401645,-0.0030020757,-0.077605486,-0.0114670405,-0.047485378,0.02064987,0.0058159605,0.1357003,0.061023287,-0.0120941,0.055149555,-0.03838321,0.008251549,-0.007980811,0.046214625,-0.043874335,0.00084649445,0.05797761,-0.016372344,-0.0550463,0.013118947,0.052675996,0.066745244,0.10556902,0.10799617,0.03673063,0.020437097,-0.003692965,0.14802963,-0.00082336325,0.072262764,0.04340429,0.013371484,0.0410704,-9.707091e-33,-0.0005508547,-0.034876738,-0.02423629,0.046022303,0.03252451,0.019120175,-0.07486516,0.043193765,-0.073380105,-0.081836686,-0.08391908,-0.053150404,0.17178136,0.012690915,-0.049280163,0.044390023,-0.03261655,-0.0037632594,-0.088292286,0.0074021393,-0.05959817,0.07114585,0.041485973,0.030064352,0.005942115,-0.05725599,-0.026077336,-0.031272102,-0.09267536,0.0057879686,0.115014836,-0.026087256,-0.020130966,-0.025340077,-0.050506596,0.049039077,0.038740043,0.039874922,-0.030001286,0.048639804,0.086069584,0.027273273,-0.023761956,-0.056523636,-0.014115227,0.025584795,0.022851357,-0.1424093,-0.021535248,-0.057537217,0.089854725,-0.0421102,-0.061027642,-0.035816807,0.04319689,-0.041878205,0.005613563,-0.1003643,-0.10660411,-0.035274744,0.010432586,-0.032498218,-0.0369018,0.02104612,0.0365657,-0.017591935,-0.0063057975,0.06862169,-0.02322473,0.05991729,0.062319104,0.0008334968,-0.07690587,0.04227828,0.020359496,-0.041862637,0.004965215,-0.048167683,-0.00083231815,0.014093735,-0.03783443,-0.04409933,0.026200643,-0.028784867,-0.094224505,-0.0056919986,0.026632478,-0.0056604673,-0.02543841,0.07710149,-0.031624623,0.030932121,-0.069448516,-0.06939514,-0.006292009,-3.507247e-08,0.015293822,-0.05449204,-0.0253632,-0.03122449,0.020732578,0.013576414,-0.010074224,0.044935666,-0.0361861,0.03893943,-0.048195187,-0.033858538,0.03310197,0.010255308,0.029818092,-0.04127153,0.20099463,0.11707287,-0.038780287,-0.04234119,0.046476617,-0.0008211369,-0.039971832,-0.0013446666,0.048460215,0.013098982,-0.07575551,-0.02028739,0.017948981,-0.040656142,-0.002401087,0.0042074807,-0.007518641,-0.035267852,0.049033377,-0.021087535,-0.046363067,-0.04178663,-0.0060174298,0.036888786,0.055012517,0.05980426,-0.004880967,0.066808425,-0.06651917,-0.029353727,0.024042727,-0.032117102,-0.03162263,0.03161222,0.0006166897,-0.036789436,0.05564252,-0.013391898,0.012672737,-0.04398486,0.038205937,0.05499994,-0.042071406,-0.017303135,0.05278582,0.11232046,-0.0051710866,0.0019804896} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.414624+00 2026-01-30 02:01:12.009674+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2116 google ChZDSUhNMG9nS0VJQ0FnSUNnMnNyOURBEAE 1 t 2119 Go Karts Mar Menor unknown Pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok 5 2019-02-01 01:52:39.833374+00 es v5.1 E1.03 {E1.04} V+ I2 CR-N {} {"E1.03": "Pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok"} {0.013477835,-0.010912965,0.08397017,0.047809903,-0.08642958,-0.0034280517,0.04718321,0.025737124,-0.019694237,-0.0006382734,0.054813568,-0.04932418,0.0037427905,-0.034011018,0.05404073,-0.029669618,0.0828094,-0.027094966,0.038066257,0.06139822,-0.01890321,-0.054075245,-0.05701971,0.15329605,-0.08771202,-0.0116530545,0.058937233,-0.0010123444,-0.013258966,-0.05377262,0.0023479618,0.11351551,0.076395266,0.004396913,0.016216058,0.03748753,0.12240098,-0.060010355,-0.008172742,0.0453628,-0.13067482,0.013526016,0.0506633,-0.018990284,0.0042870454,-0.06605014,-0.043993387,-0.049623176,0.0748134,-0.016697923,0.029310795,0.030107524,0.010010013,0.058781873,-0.039569415,0.0020981436,-0.04962224,-0.045011885,0.021058822,0.07076131,-0.051345326,0.015927782,-0.05848691,0.063766025,0.0197184,-0.0068038306,-0.06818738,0.020493835,-0.02999742,-0.031142129,0.040756762,-0.030816462,0.072892964,-0.013170534,-0.017690042,0.016329277,-0.08119644,-0.06184918,-0.074888274,-0.060429916,0.004369,0.008145637,-0.02286625,-0.03514344,-0.030086474,0.011459083,-0.029443296,0.04408143,0.06335202,0.028020624,-0.08310578,0.09474912,-0.0734271,-0.038622864,0.0094185965,0.0071546547,-0.03176278,-0.04918199,0.025641326,0.049787913,0.07179738,0.088096574,0.009933913,0.03285018,-0.049539767,-0.05644913,0.005430225,0.012262165,-0.015489578,-0.01615428,0.014225858,-0.030943237,0.023743335,-0.011845917,-0.04433294,0.027975822,0.10455637,-0.08186026,0.019202644,-0.027792238,0.018512644,0.015904322,-0.06373301,0.01081183,-0.059002947,-0.022807065,0.016040321,3.311262e-33,0.007724204,-0.031541277,-0.013154363,0.05953366,0.06885053,0.014280514,-0.0064364728,-0.062692806,-0.021443335,-0.02121824,0.02323719,0.12690715,-0.0059310533,-0.010516827,0.073412456,0.07726593,-0.007256037,0.06300824,-0.014545422,-0.029705875,-0.08548803,-0.018472636,-0.05621494,0.022601973,-0.036781278,0.07205583,-0.030839402,-0.03438809,-0.065051176,0.02680472,-0.016029228,0.0013400565,0.02713099,0.06304837,0.04206566,-0.050225962,0.046032805,0.041616574,-0.023282578,-0.014901962,-0.00551102,0.008178178,-0.011021746,0.049253616,0.017619593,0.06388439,0.094106086,0.0051865834,0.053966284,0.009163475,-0.02190753,-0.06908548,-0.07369243,-0.02370697,-0.058284137,-0.0032034435,-0.06496625,0.023018995,0.06670098,-0.0003583062,0.086314656,0.12497818,-0.026806554,-0.06151599,-0.007964189,-0.06567838,0.0035858091,0.051009186,0.1264443,0.048546433,-0.009867553,-0.06143577,0.057161003,0.11018008,0.06553345,-0.026296962,-0.04550513,0.006603627,-0.032127086,0.08204464,0.006514093,-0.020867066,-0.0020255465,0.035633285,-0.019095385,0.06923273,0.093490705,0.03795656,-0.069199726,0.06602052,-0.12080317,0.05741288,0.078922816,-0.021490341,-0.02863665,-4.260052e-33,0.0591828,-0.041391447,-0.041354787,0.0360507,-0.03329883,-0.007311928,-0.06528746,-0.0190896,-0.0016345626,-0.014801546,-0.0833632,-0.04867332,0.08933388,-0.051784202,-0.03105876,0.0842166,0.08535266,-0.07127813,-0.115821935,0.0463011,-0.06714622,0.06615976,-0.0246965,0.053240508,0.0035505746,-0.0052055554,-0.017156038,0.03371471,-0.053083938,0.013208431,-0.1163055,-0.035863817,0.033251762,0.053554017,-0.02739646,0.024635592,-0.0026171333,-0.040732026,-0.048700944,0.0061452137,-0.041927516,-0.041393302,-0.018020164,0.034308948,0.027935306,0.057488345,-0.0909278,-0.14194226,-0.04575869,-0.033691928,0.060945794,-0.08314301,-0.06048294,0.0035270266,0.047177255,-0.06285103,0.0021241247,-0.0126525685,-0.11095732,-0.037666254,0.06794168,-0.031033901,-0.049572073,0.049490057,0.04652687,0.03942161,-0.005893638,-0.06385861,0.03873267,0.05242119,0.068020865,-0.01776297,-0.005099122,-0.012537346,-0.115146145,0.020879425,-0.0146055445,-0.037222646,-0.033800624,0.03190571,0.007766129,-0.050357714,0.055917338,-0.04677077,0.021559095,0.007094584,-0.034916576,0.041132238,-0.026026016,0.075110406,0.016802732,0.026137752,-0.019110585,-0.044450738,-0.03141641,-3.018872e-08,0.036528613,-0.053043563,-0.022132874,0.040822074,-0.040311094,-0.09705163,0.014825813,0.03104784,0.027236167,0.10882471,-0.042503852,-0.028704673,0.023773884,0.08645665,0.0029971283,0.025842,0.04463481,0.043953512,-0.04602067,-0.019818665,-0.027934743,0.017725727,-0.017817857,-0.02744916,-0.019866535,0.082464956,-0.049860634,-0.028005378,0.030817382,-0.03458047,-0.020976294,-0.008621303,-0.094942495,-0.07307973,0.0015436197,-0.02129625,-0.06220743,-0.05382637,0.026051152,-0.01791061,0.032571625,0.0140027795,-0.09425819,-0.014599493,0.020984018,-0.056024406,0.006120299,-0.032053255,-0.03494804,0.053241305,-0.010281691,-0.014077615,0.07459551,-0.02033786,0.085338876,-0.062314995,0.04687336,0.0017521554,0.018408779,-0.013359846,0.040420547,0.16558486,0.0072784666,-0.060553655} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.43746+00 2026-01-30 02:01:12.013954+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2117 google ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB 1 t 2120 Go Karts Mar Menor unknown Trato malo mal educados y groseros y el kart no frenaba y me han echao por salirme de la pista trato malo mal educados y groseros y el kart no frenaba y me han echao por salirme de la pista 1 2022-01-31 01:52:39.833374+00 es v5.1 P1.02 {} V- I3 CR-N {} {"O1.01": "y el kart no frenaba y me han echao por salirme de la pista", "P1.02": "Trato malo mal educados y groseros"} {0.052898105,0.072941504,-0.043591663,0.012085174,-0.043489065,0.025663076,-0.022323145,0.016783291,0.045296945,0.07703292,0.09166727,0.02123899,-0.046221353,-0.030541312,0.035127796,-0.05491809,-0.06712641,0.044617686,0.003944288,-0.0149878925,0.12535147,-0.055768464,-0.031553067,0.05298632,-0.12842637,0.02001563,0.039243642,-0.046659112,-0.0136398375,-0.0781993,-0.022813242,0.07032641,0.0645593,0.03476445,-0.06551345,0.023719186,0.07370989,-0.024229953,-0.04087454,0.0455753,-0.08485218,0.0023654774,-0.014513603,-0.014407767,0.07294739,-0.0731096,-0.106570356,0.013724141,-0.024796834,-0.04670915,-0.08020572,-0.06438133,0.012709363,0.036977936,-0.031897485,0.028167266,-0.079436384,-0.008976845,0.086400904,0.063116446,-0.055384554,0.05103385,-0.08102904,0.029977864,0.013869386,-0.05605594,-0.021460405,-0.013035139,-0.06591327,0.10315568,0.064028986,-0.050009076,0.031961277,0.043190777,0.006273936,0.044207446,-0.05228167,0.007509603,-0.07679713,0.022190118,0.048751477,0.012599081,-0.006372072,-0.061675206,0.007678335,-0.032968707,-0.007418081,0.018311968,-0.001368994,-0.016145092,0.008914078,0.09001136,-0.067796394,0.02568262,0.013939601,0.008941222,-0.050525974,-0.026564192,0.0077898838,0.008006938,0.06717409,0.020785773,0.057157476,0.05339214,-0.052817855,-0.020277489,-0.0031908944,-0.061922457,-0.008988136,-0.006685243,-0.097679116,-0.07467502,-0.100203015,0.008499991,-0.017082516,-0.017246898,0.024838537,-0.042631306,-0.060109366,-0.02894041,0.056955066,0.035142936,-0.03935908,-0.013383183,-0.027945701,-0.078997284,0.004989134,9.1205754e-33,0.014457966,-0.0469813,-0.047818437,-0.0549963,0.016963366,-0.054518692,-0.004263162,-0.04951592,-0.03397656,-0.035242226,0.052356586,0.07067797,0.0030000233,-0.0045568324,0.07550121,0.07908834,0.0071762856,0.04017287,0.051584076,0.047368266,-0.010699586,-0.04882031,0.06383355,-0.04966733,-0.067266196,0.07989088,-0.024234487,-0.07494111,-0.034445755,0.058492724,0.049316283,0.018587844,-0.031332392,-0.036517616,-0.033123057,-0.084810965,0.07381042,0.021980036,-0.0657438,-0.039656088,0.05293512,-0.03618988,0.07465578,0.056868464,0.020696629,0.028034093,0.037573084,-0.018369796,0.0554726,0.032337934,-0.07992925,-0.06952144,-0.05093193,-0.02501531,0.030869722,0.035811815,-0.03972934,0.023662725,-0.05246529,-0.10322511,0.020290544,0.041865505,0.092606,-0.03612332,0.0007071367,-0.08914705,0.023374708,0.06679009,0.098340765,0.0044677337,-0.040545486,-0.07506025,-0.031810947,0.06955683,0.077118546,-0.039192308,0.028960884,0.02811041,-0.067044474,0.03328989,0.011038226,0.003947197,-0.0006092394,-0.058216363,0.0634668,0.02602355,0.02357842,0.054272097,0.02601846,0.0494762,-0.028070318,0.071002856,0.012117243,0.017337749,0.0367087,-1.0043035e-32,0.01723313,0.028989963,-0.013242038,0.008191921,-0.038074646,0.01032072,0.0002166874,-0.036728244,0.018539134,-0.044516552,-0.074303724,-0.18426016,0.114438936,-0.01390057,0.0020648486,0.05566246,0.016996106,-0.038853485,-0.088326834,-0.051927466,-0.08171014,0.08016459,0.0052093756,0.030776722,-0.010316429,-0.054787625,0.006418007,0.03176052,-0.10856463,0.021466186,0.10439527,-0.05330394,-0.046961036,0.030948047,-0.07089082,0.021812856,0.034626685,0.04591393,-0.03247544,0.05087202,0.0475618,0.047694236,-0.041740756,-0.10055737,0.018835494,0.031355526,0.10458859,-0.09035143,-0.035775717,-0.019919828,0.09029621,0.02201237,-0.024130529,-0.01886095,0.085757256,-0.008104213,0.0038427145,-0.053219024,-0.0931257,-0.0061639096,0.043220654,-0.062223446,-0.04451328,-0.049359683,0.101882935,0.0050811605,0.029315135,0.07359412,0.0035522517,0.049644187,0.08286757,0.02253312,-0.052867856,0.041003168,-0.045829978,0.03317772,-0.09999989,-0.00040075733,-0.035627924,0.014051854,0.021327209,-0.03765989,-0.03027751,-0.0029915937,0.01687304,-0.108822584,-0.040092453,0.00972326,0.058477655,-0.011915,0.034606796,0.0043956107,-0.013563989,-0.053684033,-0.018963538,-3.465234e-08,0.04809543,-0.050941385,-0.04729759,0.042395085,0.06612887,-0.026830586,-0.03268906,0.022947703,-0.0047255373,0.076352425,-0.0954214,0.007860351,0.069176815,-0.0030185995,0.052542176,0.07304153,0.11734107,0.09122967,0.062626995,-0.028201522,0.05413298,-0.03168563,0.020644104,0.0131620895,-0.1071797,0.06551423,0.015403109,-0.026171708,-0.05863434,0.041524682,-0.03915695,0.016428985,-0.005068732,-0.07527704,-0.045451418,-0.005094283,-0.0035267407,0.023407454,-0.005299278,0.033226535,0.035047404,-0.017596895,-0.058706827,0.02777561,-0.061924033,0.0018566645,-0.011918548,-2.1770351e-05,0.01612782,0.024428904,-0.0793015,-0.031348124,0.051199727,-0.018732077,0.06712877,-0.020276062,0.03204226,-0.06935815,-0.023563085,0.028193453,0.03967741,0.09940577,0.021840353,-0.05835788} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.45123+00 2026-01-30 02:01:12.016816+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2118 google ChdDSUhNMG9nS0VJQ0FnSUN1OGFQMzlnRRAB 1 t 2121 Go Karts Mar Menor unknown En general bien. Buen circuito y precios razonables. en general bien. buen circuito y precios razonables. 5 2023-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.02} V+ I2 CR-N {} {"V1.01": "En general bien. Buen circuito y precios razonables."} {-0.0142689785,0.014614562,-0.021274097,-0.057200618,-0.015820354,0.04628726,0.026080044,0.09024963,-0.03935145,0.0072506433,0.031843938,-0.011873583,0.00024156664,-0.021491596,0.014227763,0.007700341,-0.015449441,0.01837774,0.018829875,0.015129884,0.05277348,-0.026159259,-0.06974841,0.11184174,-0.024761952,-0.030762585,0.050350256,0.0324009,-0.025000578,-0.1073193,-0.08646581,0.027695797,0.089927495,0.011516564,-0.019656643,-0.033119537,0.041688632,-0.06464823,0.005305155,0.01935833,-0.11340368,-0.057945997,-0.005448336,-0.03759007,0.055182718,-0.052912004,0.067987226,0.029445667,-0.029990334,-0.09754151,0.052157193,0.00448908,0.026754538,0.03443835,0.017173784,0.072147936,-0.017171258,-0.004961091,0.04582049,0.055526014,0.006038667,-0.032998227,-0.07596183,0.0009991524,0.0033882626,0.014504069,0.003410053,0.02162338,-0.039134126,0.031367175,0.14367333,-0.117657624,-0.0037736653,-0.0064004143,0.025184022,0.046844747,-0.015838379,0.0631575,-0.04105451,-0.12456017,-0.011769292,-0.06976823,-0.049468,-0.030705068,0.09472382,0.0094051445,-0.036349136,-0.010819547,0.035988014,-0.027246173,-0.07026762,0.05616122,-0.021503098,-0.029247157,-0.028676987,-0.027740715,0.04938723,-0.079234764,0.040752456,0.0643542,0.051223435,-0.00390779,0.07773831,0.08002995,-0.035087965,0.0063620894,0.053172536,0.02444765,-0.0011937239,-0.01235394,-0.026161943,0.020811588,-0.040951982,-0.031775486,-0.019893115,-0.04199126,0.0078009763,-0.041376602,0.014858221,-0.10970572,0.04927289,0.04738613,-0.077209696,0.016896026,-0.011080623,-0.022571377,0.046868954,6.374768e-34,-0.048199583,0.014344525,-0.028103262,0.022122016,-0.042322844,0.08555204,-0.043202583,0.040417667,-0.0031092577,-0.016780322,-0.028703753,0.1579131,0.013096133,0.023717348,0.11737353,-0.039526444,0.008149676,-0.018937625,0.12476637,-0.050461356,-0.07171078,-0.028510883,-0.004681653,0.08643719,0.016138779,-0.03812992,-0.0038811145,-0.062071633,-0.12452722,0.044494476,0.0006770528,0.064188704,0.055409763,-0.0015328429,-0.086231805,0.03541153,0.03609513,0.04969822,0.02225932,0.010627174,0.010132139,0.026890848,-0.06274559,-0.009727369,0.03156456,-0.02499848,0.012206539,0.07207042,0.045417156,0.0050009536,-0.10058029,-0.0658329,-0.06002564,-0.041127853,0.04952749,0.06575412,-0.047096614,0.07161693,0.0106211,0.01637095,-0.022822957,0.09466851,-0.026591187,-0.02095774,-0.10973446,0.08284971,0.068481155,-0.03025379,0.034793824,-0.06289426,-0.11409713,-0.008607663,0.017869735,0.014723463,0.0022788825,0.029169858,-0.046110407,0.035443235,0.03612201,0.02306078,-0.13345176,-0.0348519,-0.0018376706,0.028273152,0.059780326,0.11510952,0.086825356,-0.032198593,0.0017933741,0.08031051,-0.012844583,0.04918264,0.09765611,0.0030272948,0.016979566,-1.5972568e-33,0.012999723,0.0014310657,-0.0028213114,0.09993919,-0.0011872665,0.030037299,-0.025935976,-0.03303206,-0.09306069,-0.053373802,0.00031971824,-0.086484596,0.079006396,-0.052540638,-0.039411,0.022268737,-0.018638711,-0.062093597,-0.03598606,-0.019711973,0.004309682,0.04428561,-0.01800235,0.011024028,-0.06268075,-0.056955926,-0.06459322,0.052933816,-0.054823283,0.0014411622,-0.014080967,0.025335189,-0.026799424,0.07095801,-0.014264591,0.08765154,0.015447467,0.09056316,0.010638357,0.052476417,-0.050770763,0.038149774,-0.048934147,0.04880044,-0.028099578,0.011160809,0.00028044722,-0.118779056,-0.025100201,-0.05656401,0.04447849,-0.014237337,-0.038117766,-0.041470643,-0.019057974,-0.052826397,-0.04267403,-0.03902309,-0.06934395,-0.0647433,0.0765054,-0.018053396,-0.0050172997,0.009651337,0.072970085,-0.023603356,-0.059564896,0.026841884,0.0998191,-0.027820563,0.088265106,-0.011306257,0.014877856,0.016854784,-0.09967884,-0.029779503,-0.05043462,-0.009206744,0.0182018,0.02850074,-0.049737234,0.043021895,0.0057509444,-0.010108193,-0.039720923,-0.053097975,0.030833451,-0.022231078,0.049259767,0.020781321,-0.03777728,0.055033978,-0.027358098,-0.008941142,0.05362148,-2.2897504e-08,0.012026004,-0.059731778,-0.025403867,0.053002037,0.045049492,-0.09256251,-0.06562406,0.010238933,0.0077791414,0.06520596,-0.05067816,0.014342993,-0.040170204,0.0074288878,-0.032140393,0.09411772,0.005114525,0.11711752,-0.00035564858,-0.021161454,0.048970614,0.051750936,-0.0046714256,-0.016246805,0.02900684,-0.035522193,-0.066245295,-0.052687645,-0.00990225,0.03165802,0.033328183,-0.0007701122,0.02630122,-0.020144442,0.05630968,0.023375753,-0.03957339,0.00195842,-0.008088101,-0.08387426,0.03817724,-0.03812509,-0.10040541,-0.01119761,0.0019930154,-0.15951698,-0.012606246,0.054848693,-0.009111751,0.047144298,-0.021194868,0.003675943,0.07519555,0.015242536,0.06763629,0.029982502,0.06140543,-0.0024126905,-0.059667815,0.00045506787,0.0069161355,0.088782355,0.09180648,-0.09112318} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.464126+00 2026-01-30 02:01:12.019429+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2119 google ChZDSUhNMG9nS0VJQ0FnSUNtM2VtZ1NREAE 1 t 2122 Go Karts Mar Menor unknown Endroit sympathique\nPas trop chère.bon rapport, qualité prix. endroit sympathique pas trop chère.bon rapport, qualité prix. 4 2022-01-31 01:52:39.833374+00 fr v5.1 V2.04 {E1.04} V+ I2 CR-N {} {"V2.04": "Endroit sympathique\\nPas trop chère.bon rapport, qualité prix."} {-0.032422155,0.03667259,0.03903211,-0.0067021176,-0.042472757,0.040723577,0.111110575,0.14876583,0.03172662,0.020396793,0.035886403,-0.033199508,-0.005567626,-0.076131344,-0.041605618,-0.08026273,-0.079717055,0.032583565,0.0698256,-0.01324618,0.016637998,-0.05748367,-0.036695674,0.047898628,-0.14921343,0.012465281,-0.0400745,0.060928125,-0.0013030678,-0.025089113,-0.02828725,0.10608159,-0.0024936576,-0.023206571,0.014173218,0.020736502,-0.02564371,-0.073229626,0.020653533,0.0050311834,0.0092507675,-0.04986571,-0.05850009,0.0054009655,0.04513514,-0.008496308,0.028197687,0.07932614,-0.014707109,-0.02133618,-0.07807115,0.017533045,0.11279258,-0.027963428,-0.027689582,0.010632067,0.0963704,-0.030513972,5.16564e-05,0.0024830874,0.046702426,-0.010104538,-0.10072308,-0.033073954,0.020415466,-0.050919265,-0.019696731,-0.01981606,0.01031279,0.060379412,0.010194932,-0.09958357,-0.07689301,0.03907687,0.03815785,0.057820026,-0.07765956,-1.8771407e-06,-0.070563555,-0.08510096,0.041279886,-0.026348641,-0.011156904,-0.082132675,0.060534447,-0.056714244,0.034305118,0.039737117,0.049992625,0.0020704644,-0.060986765,0.024768835,-0.06557956,-0.039439254,0.0054640556,0.04474956,-0.07462786,-0.078428045,0.03278848,0.0079779355,0.0034309372,0.016299557,-0.016552323,0.06829921,-0.063688114,-0.0088700745,-0.0013325069,-0.02183003,-0.0017286198,-0.024641836,-0.040876918,-0.049525622,-0.014593046,-0.081394345,0.016671235,0.15309258,0.021129427,-0.03256406,-0.015994674,-0.038682655,0.020949587,0.045958966,-0.027428985,-0.01375556,0.08233985,-0.022843726,0.0517669,-6.6421864e-34,-0.09545519,0.0293816,0.000533671,0.008510144,0.03172833,0.013305838,-0.09265452,-0.026584012,0.018048255,0.06220524,-0.029768681,-0.03859833,0.01863827,-0.056501865,0.063489124,0.056989927,-0.017831087,0.071628705,-0.0025157514,-0.091652066,-0.050930955,0.012251859,0.0337561,0.034014236,0.06218788,0.06375679,-0.014157227,-0.0018502227,0.025275238,0.033020224,0.093407504,0.012213612,0.027471267,0.007524665,0.00825404,-0.065455794,0.0034496668,0.048852995,0.056813985,0.042033024,0.064354524,0.021667838,0.05258823,-0.07662929,-0.04382696,0.0042723245,0.047641613,-0.02324715,0.10566584,0.03147911,-0.008391511,-0.03475542,-0.0805508,-0.013907193,0.0019364438,0.03863905,-0.065289184,0.010438068,-0.059379507,-0.06976457,0.07003886,-0.024324793,-0.06877478,-0.096763566,-0.037120692,-0.01698555,0.024397204,0.036398116,0.051583294,-0.010592369,-0.120955765,-0.016762597,-0.021820886,0.03680368,-0.0031417112,0.049588032,-0.05576378,0.058498558,-0.006533219,-0.012177839,-0.12558658,-0.007795016,-0.01828619,-0.042497147,0.06429926,0.027177267,-0.019007074,-0.022442622,0.008880269,0.033776056,-0.052427836,0.015628593,-0.014792738,0.07893725,-0.035829697,-2.1153074e-33,0.012443702,0.023397367,-0.026890332,0.056495085,-0.006016274,0.005072217,-0.03176739,-0.048067175,-0.05122837,0.003691305,-0.01866467,-0.054552965,0.06026686,-0.030237664,-0.059180003,0.09720925,0.002069085,0.005781275,-0.040725935,-0.0070758592,-0.06431163,-0.017141368,0.07822806,-0.010559132,-0.03555168,-0.019831177,0.09256441,-0.03438004,0.054144356,0.017056217,0.065232,-0.008222445,0.0009830475,0.017896442,0.05400698,0.07600737,0.069943465,0.02665911,-0.0039794133,0.107454844,-0.02514084,-0.008835436,0.06302023,0.0050528566,0.06254392,-0.05182431,-0.021749651,-0.07885412,-0.13801427,-0.009414825,0.11247863,0.031920884,0.044239227,-0.030675175,-0.02312764,0.02371931,-0.025289252,-0.018103216,-0.1450663,-0.075822465,0.117747664,0.080726035,-0.01831579,-0.08664337,0.08356354,-0.01220695,-0.12317497,0.019052088,0.006191579,-0.002207104,0.07245961,-0.04149622,-0.029093271,0.02012509,-0.08551773,0.044590183,-0.0076420386,0.04445756,0.079982385,0.025646584,-0.12310285,0.0134687675,-0.035572257,0.018943507,-0.07595357,-0.03571874,-0.047106456,-0.012173873,0.0696342,0.010178268,-0.01184385,0.01560316,0.04318702,-0.023423512,-0.0134076765,-2.2744878e-08,0.029835278,-0.051882584,-0.05321312,0.051181518,0.0046266797,-0.08363354,-0.056355998,0.011435139,-0.039503947,0.12824333,-0.023557266,0.023564892,-0.026617162,0.065035574,-0.017612977,0.05332956,-0.015596707,0.05442922,-0.017191814,-0.07120847,-0.0152991535,-0.05438595,-0.08677057,-0.07408847,-0.013436044,-0.02511037,0.0072818887,-0.09757548,-0.032071747,-0.041787487,0.09520506,0.029028337,-0.0060997503,-0.0023030213,0.010944884,0.045835376,0.0005012858,0.021032125,0.045838352,0.06498738,0.119321816,0.09110799,-0.017627044,-0.013924293,0.010472994,-0.015159534,0.040496968,0.018678403,0.024086932,0.073116615,-0.026965078,-0.0074619567,0.012764511,0.017946107,0.009291215,0.012066089,0.015223257,0.029459208,-0.0070807957,-0.0027852014,0.014551719,0.074031875,0.016853595,-0.029983245} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.476455+00 2026-01-30 02:01:12.022207+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2121 google ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB 1 t 2124 Go Karts Mar Menor unknown El precio es algo excesivo pero el trato excepcional muy atentos el precio es algo excesivo pero el trato excepcional muy atentos 5 2023-01-31 01:52:39.833374+00 es v5.1 V1.01 {} V- I2 CR-N {} {"P1.02": "pero el trato excepcional muy atentos", "V1.01": "El precio es algo excesivo"} {0.06401223,0.05233708,-0.010342256,0.018992374,-0.054855585,-0.0178247,0.08185919,0.009290308,0.025750121,0.053792484,0.06893007,-0.015801955,-0.085456654,0.013710154,0.0036035099,0.052767593,0.024614573,0.027525809,-0.054081313,0.013996698,0.069342665,-0.08206376,-0.07356033,0.093233615,-0.064665586,-0.10396068,-0.042018663,0.0023611914,-0.0231126,-0.025582893,-0.020822626,0.011102083,0.22181574,0.0014724173,-0.016349059,0.03942044,0.03953643,-0.02252603,-0.005964265,0.0134443445,-0.07077567,-0.06406167,-0.03842925,-0.0439409,-0.037736952,-0.037747234,0.07258285,0.045557443,-0.022786185,-0.008447689,-0.07787892,-0.00020392434,-0.017909369,-0.05336711,-0.009484645,0.026896855,-0.010116449,-0.030092921,0.007922285,-0.016312681,-0.045987107,-0.004608464,-0.07223189,0.03557709,0.04619656,0.007833885,0.019782241,-0.03547198,-0.0366722,-0.010102216,0.078693576,-0.10017388,0.03820942,0.03878782,0.013988713,0.06877085,0.038323544,0.024616651,-0.04931864,-0.058101002,0.050988354,-0.006485443,-0.05107468,-0.003316113,0.0481931,0.009269109,-0.027176542,-0.023225002,0.0034094828,-0.0073851943,0.035879496,0.0072959736,-0.034033187,-0.018301487,-0.0077500683,0.047809377,-0.0143545875,-0.072507635,0.015375701,0.053558886,0.06515105,0.03545301,0.068298265,0.056451153,-0.028934564,-0.04208543,0.056528345,0.009252988,-0.00727993,0.06722295,-0.032945447,-0.06063193,-0.036735438,0.006491287,-0.05169904,0.016212264,0.0024451185,0.032712933,0.040459625,-0.060928266,0.045124598,0.076838724,0.028745156,-0.042730194,0.008151271,-0.07865655,0.0056843725,6.549494e-33,-0.064434834,-0.10885845,0.0037178178,-0.027571276,-0.057726678,-0.005340408,-0.019534187,-0.02849398,0.007453727,0.035917625,-0.008311977,0.106184065,0.054964844,-0.005480756,0.056287028,0.05344769,-0.01161509,0.016476288,0.081469625,0.07200358,-0.08227612,-0.035321493,-0.005260882,0.013528926,0.031174002,0.0708993,-0.066678844,-0.09225414,-0.044520687,0.053507347,0.029498018,0.12024269,-0.026959712,-0.049159523,-0.115257315,-0.0056197075,-0.015987696,0.001639267,0.04467967,-0.04663283,-0.058132153,0.04035704,0.02511838,0.02032263,-0.034592316,-0.037775975,0.010809767,0.04767165,0.1063585,0.06550087,0.0007421088,-0.09054642,-0.015697435,-0.005246185,0.04896276,0.017119016,-0.03242764,0.076485276,0.02677115,-0.051244836,0.013747255,0.066651426,0.001208644,0.023922151,-0.06996709,-0.046656366,0.00900641,0.022541279,0.1233524,0.009255281,-0.08663674,-0.017075932,0.02929154,0.00468321,-0.061132174,-0.004721538,-0.07459824,-0.03432585,0.012454615,0.034160566,-0.024745636,-0.019428015,0.0628996,-0.058107898,0.09529253,0.14265938,0.012824631,0.00025994622,0.03648107,0.06497242,0.0067951,0.059801377,-0.049406983,0.04109852,0.03296218,-7.7404606e-33,0.031789146,0.004329814,-0.014791373,0.009264898,0.021239683,-0.027549688,-0.041438375,-0.11489664,-0.051985763,-0.0071957805,-0.051655486,-0.13742808,0.0981372,-0.010456103,0.0062309536,0.039294597,0.01150329,-0.041490052,-0.039025344,-0.04779949,-0.026076876,0.025948843,-0.03444394,0.049118754,-0.009065016,-0.11288697,-0.008831014,-0.029954728,-0.05866398,-0.095925435,-0.035958335,0.05558463,0.019116124,0.0943303,0.0019035005,-0.0049047596,0.006548827,0.068231136,0.06940842,0.037356153,0.035588235,0.07660571,-0.0024634714,-0.015745426,-0.034843106,0.02413566,0.032095063,-0.09768575,0.032785248,-0.06543209,0.04552535,-0.016158918,-0.059030887,-0.060017776,0.018406386,0.050916802,0.016778314,-0.08564088,-0.08786719,2.26915e-05,0.079450585,-0.034347683,-0.044379976,-0.00989732,0.050286304,0.006872482,-0.04340727,0.0668863,-0.03715706,0.028937161,0.06404392,-0.062226307,-0.15484776,-0.055305954,-0.0768063,0.0021977073,-0.06653853,-0.023532726,0.03595507,0.010543775,-0.005444402,0.01637224,0.013772951,-0.024918761,-0.036283314,0.0019033668,-0.035362195,-0.021096904,-0.01852087,0.038847487,-0.013963233,0.039712176,-0.00825633,-0.11954532,-0.003262469,-3.023632e-08,0.028396918,-0.075665556,0.065340936,0.052467246,0.020537442,0.013159719,-0.0039772964,0.05601028,-0.011733398,0.038347386,-0.066416256,-0.018634507,-0.011568712,-0.0076453905,0.034254886,-0.0032708077,0.10541844,0.044830795,-0.034305934,-0.029781183,0.072464466,-0.008890955,-0.06206272,-0.053789582,-0.016942976,-0.007426248,-0.058115825,0.012326563,-0.071865335,0.03765134,-0.024682669,-0.031111937,0.0031594404,-0.09546795,0.001156401,-0.010692218,0.0127510205,-0.07901857,-0.05227405,-0.060133208,0.019368444,-0.028517757,-0.00079881324,-0.0006970181,-0.03789093,-0.050913107,-0.08919133,0.036155134,0.002313755,0.042337377,0.02192224,-0.039149888,0.059029646,0.06774938,0.07812787,-0.030708935,0.07223639,0.025532952,-0.037235647,0.05897546,0.10800758,0.095570825,0.11236999,-0.08953537} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.497087+00 2026-01-30 02:01:12.030912+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2122 google ChdDSUhNMG9nS0VJQ0FnSURGamVtTzFBRRAB 1 t 2125 Go Karts Mar Menor unknown Hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa 5 2024-01-31 01:52:39.833374+00 fi v5.1 P3.01 {O3.02,O1.03} V+ I2 CR-N {} {"P3.01": "Hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa"} {0.008796318,0.13692877,-0.024565125,-0.06571881,-0.09024215,0.04750398,0.06730829,0.025072284,-0.05003022,0.032466177,0.0692178,0.0438839,-0.052232426,0.038876876,-0.004166699,-0.024991415,-0.009962428,0.041485716,-0.01859659,-0.025353104,0.04102146,-0.06670203,-0.054034404,-0.00041758205,-0.0020661056,-0.01899141,-0.0066119083,0.06503414,0.0014141586,-0.017726969,-0.048654422,0.035203982,0.03444864,-0.05422326,-0.03297801,-0.015113113,-0.06068143,-0.031361252,0.0076222215,0.014939029,-0.05494169,-0.08434381,-0.06994296,-0.0410663,0.01803949,-0.01397028,-0.0018203821,0.019801509,0.07824776,-0.0007443345,-0.06383399,0.036640495,-0.045912836,0.010617879,-0.04941573,-0.0558095,-0.024620946,0.08977925,0.008459367,-0.07335786,0.028358385,0.014868339,-0.051613748,-0.0068749087,0.044592705,-0.052954342,-0.029040614,0.0038214654,-0.08286807,0.07250701,0.056208853,-0.0603037,-0.015106388,0.012632948,-0.03881917,-0.108136974,-0.037223678,-0.03147116,0.08151852,-0.08190066,0.040257044,0.03690149,-0.06883313,0.05031403,-0.06383261,0.06774499,-0.04061268,0.016450085,-0.040734135,0.009010678,-0.028289039,-0.060187712,-0.047101334,-0.064127535,-0.021688603,0.022782274,0.06339434,0.026421875,0.025334314,0.05505591,0.026932977,0.00993938,0.010185851,0.008661243,-0.012196366,0.067949705,-0.002769363,-0.05260641,0.12078063,0.032673508,-0.12349835,0.048353788,-0.07792674,-0.13854116,-0.05580824,0.098235376,0.02001779,0.05555982,-0.066979334,-0.02083473,0.030596273,-0.057499733,0.019327983,-0.024978569,0.078066304,-0.10397264,0.071577184,1.0623927e-32,-0.0035425466,-0.085090876,0.005882687,0.02491412,-0.011865486,-0.07930371,0.00069474033,-0.06492497,-0.017951611,0.008408175,-0.0593453,-0.07425686,-0.05088652,-0.023511829,0.008398955,0.013916147,-0.026798079,-0.06946887,0.030034674,0.023814475,-0.024380464,-0.0007133716,0.0076417294,0.021268245,-0.009353181,0.0044448995,0.07304073,0.0042300406,0.052973423,0.09125099,0.060325503,0.03415621,-0.05888395,-0.10139729,-0.08297126,-0.018358482,-0.046693444,-0.08858498,0.004176528,-0.10517455,0.059768945,-0.020296963,-0.024181802,0.00091546105,-0.032320667,0.0350297,-0.005723045,-0.042009875,-0.002920359,0.059938848,-0.06953012,-0.042949665,0.028167011,-0.010370547,-0.035828665,-0.019377146,0.03293392,0.044113673,-0.0037570437,0.022270823,-0.027141094,0.007387899,-0.004738772,0.0032597114,-0.010884579,-0.06463073,-0.053101428,-0.009240482,0.06853449,-0.06552895,0.0017791322,-0.063832514,-0.106500864,-0.042452376,-0.06841764,0.019554919,0.05862916,0.00989599,-0.00712763,-0.03370507,-0.07036906,0.07937339,0.044434313,-0.014276414,0.14595948,0.03997062,0.04054363,-0.081872605,0.007154462,0.057495423,-0.020841474,0.05670834,0.12865695,0.0041409177,-0.015973458,-1.0780985e-32,-0.02401988,0.052999895,-0.015329857,0.025663577,0.053659048,0.03639479,-0.072325654,0.04846561,-0.047639836,-0.029358227,-0.06132906,-0.09828976,0.052378453,0.05907167,0.021746567,0.037567172,0.09760249,-0.028985463,-0.047775026,0.019859849,-0.06898632,-0.02212131,-0.028577883,0.021971064,-0.012482849,-0.04482204,0.0014612904,0.03990982,-0.0679023,0.03456621,0.067414865,-0.08737246,-0.08558648,0.21049158,0.0032592802,-0.04056407,0.086876914,-0.03612442,-0.060092192,-0.032618385,0.009135085,-0.0016487405,-0.026566666,0.027399609,-0.043591246,-0.010418883,-0.009529651,0.034479354,-0.04902055,-0.017989159,0.09410611,-0.01875066,-0.020839602,-0.017464349,0.029999392,0.054934833,0.086670965,-0.03613724,0.020841239,0.004028397,0.0045765177,0.031844445,-0.07977412,0.06539241,0.028089423,0.020071736,-0.03595772,0.027752964,0.0639576,-0.061187815,0.058198847,0.037186995,-0.032762814,0.08251721,-0.03593823,-0.003295349,0.022394411,0.026471969,-0.016670285,-0.036054824,-0.017877031,-0.033338115,-0.022682184,-0.0046723997,-0.04805841,0.014419665,-0.02715326,-0.00085009425,0.0076168724,0.0857561,0.070400186,0.11578493,-0.020498848,0.05548828,-0.02199425,-3.281145e-08,-0.06254467,-0.04200401,0.030548872,0.0062310128,0.009460093,-0.01525368,0.1085185,-0.0167145,-0.005927696,0.013274679,0.059913345,-0.036066893,0.05900956,0.028120153,-0.036367737,0.021048564,0.08729756,0.17606734,-0.037397332,0.03980305,0.030601837,-0.024418332,0.0017536613,0.036522835,-0.016194526,-0.015072926,0.014463466,0.017443856,0.019735329,0.016654855,0.012082008,0.10696873,-0.053227104,-0.03620891,-0.066459216,-0.011351977,0.0053687296,0.056060396,-0.040464208,-0.011084533,0.062579066,0.019331459,0.018263489,-0.0029269431,0.03193206,-0.04309285,-0.02439477,-0.03435269,0.005177873,-0.09675827,-0.014825897,0.011361564,0.054876234,0.023647888,-0.0072219083,0.014702159,0.024209,0.056295913,-0.020400954,-0.05106049,0.07839671,0.11179259,0.045400243,0.037040964} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.510165+00 2026-01-30 02:01:12.033318+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2104 google ChdDSUhNMG9nS0VJQ0FnSURTa3VHNmhnRRAB 1 t 2107 Go Karts Mar Menor unknown Gran circuito y en perfecto estado de mantenimiento. Muy amables. gran circuito y en perfecto estado de mantenimiento. muy amables. 1 2021-01-31 01:52:39.833374+00 es v5.1 O1.03 {O1.02,P1.01} V+ I3 CR-N {} {"O1.03": "Gran circuito y en perfecto estado de mantenimiento. Muy amables."} {-0.033180427,0.035906024,0.005471614,-0.0487733,-0.06423476,-0.05778427,0.05340212,0.09431806,-0.0594866,0.030123686,0.05171467,0.016343974,0.024414118,0.009667337,0.026196392,0.010770826,-0.020342844,0.033919487,0.03978439,-0.04309643,0.14697316,-0.036186997,-0.07435289,0.060311303,-0.13606405,-0.01837344,-0.021455329,0.0120027475,-0.04496459,-0.10546203,-0.09165046,0.07071458,0.11117722,-0.01999948,-0.042605866,-0.005528647,0.04885906,-0.05835513,-0.006361987,0.029752454,-0.1128512,-0.07883624,0.032892477,-0.02099454,-0.0042529493,-0.011650611,0.060895115,-0.002127709,0.029970085,-0.107057296,-0.027588196,-0.01475601,0.026325218,0.017603844,0.026342347,0.03778671,-0.022873508,-0.0008528418,0.035532963,0.05354241,-0.02632904,0.047064275,-0.014714355,0.043730464,0.09087491,-0.025421707,0.060292065,0.027688768,-0.064134695,0.05828059,0.15163597,-0.09220044,0.023304515,-0.011816818,-0.0018849374,0.03273415,-0.057744987,-0.0031503513,-0.02201565,-0.014063582,-0.026521005,-0.043959115,-0.026827665,-0.035628345,0.02650165,-0.010559228,-0.0158836,-0.017456906,0.005719603,-0.021288287,-0.07003853,0.022506753,-0.06710819,-0.0014034123,0.013639556,0.0013023325,0.032543458,-0.023335155,0.009660579,0.033101756,0.079110965,0.0007245682,0.057676744,-0.010362615,-0.002373115,0.05136368,0.0378417,0.02909678,0.019220484,0.032605074,-0.07527956,0.033031024,-0.0315609,0.00028995326,0.004705045,-0.073136084,0.02058149,0.020722229,-0.04417997,-0.06583457,0.057434704,0.018185489,-0.049043577,0.015659958,-0.001526486,-0.0049950737,0.091862924,2.177927e-33,-0.04147723,-0.01659741,-0.02104503,0.056510925,-0.030338159,0.06165019,-0.064138986,-0.042287406,0.03437555,0.035277836,-0.055318076,0.08233909,-0.01484585,0.0812527,0.06152826,-0.035703294,-0.019684926,-0.07092776,0.083560996,0.0016091962,-0.034443952,-0.014072,-0.038783133,0.04957541,-0.0015152374,0.06337676,0.013884995,-0.10028405,-0.058952063,0.020932194,-0.055424713,0.04915287,0.03494089,0.02129933,-0.035553537,-0.0522252,0.079640396,0.03534552,0.025982982,-0.036916006,-0.011436174,0.017601127,-0.005767024,-0.010770208,0.04599861,0.011922162,0.039844327,0.12141109,0.09338968,0.065704264,-0.11072565,-0.08713705,-0.026779315,-0.08269304,-0.0011359951,0.046650793,-0.030174803,0.049956832,0.0494492,0.03642139,0.006129892,0.03879617,-0.010027998,-0.07029947,-0.018089622,0.018348565,0.0316167,-0.058916364,0.050273888,0.039437283,-0.11306431,-0.031784337,-0.038337506,0.06990702,0.017335162,-0.0636835,0.010331858,0.018891487,0.023870787,-0.015786136,-0.06415795,-0.0012992548,0.043957133,-0.02162705,0.05999373,0.12847397,0.05978354,0.050806563,-0.050098184,0.10259806,-0.020898573,0.06906989,0.09399751,0.021893876,0.049104422,-3.5289924e-33,0.009918686,-0.01678165,0.01890312,0.100892544,0.024392664,0.030890131,-0.021448184,-0.055549394,-0.07886982,-0.035134535,-0.03556213,-0.08658105,0.09165136,-0.04019661,-0.04140323,0.009134527,-0.05878084,-0.07704557,-0.069121055,0.020797046,0.040160626,0.047606736,-0.013438757,-0.049490534,-0.02347425,-0.04070732,-0.086558074,0.067813694,-0.056764454,0.061070405,0.004664717,-0.021677507,-0.073884234,0.0035854862,0.011503445,0.010855262,0.056995697,0.11859904,0.00038970716,0.019573083,-0.03198796,0.06342958,-0.00573355,0.027911736,-0.028546128,0.081959054,-0.019169947,-0.12177805,-0.052634932,-0.0379473,0.0148803005,-0.071663156,-0.04554065,-0.072620735,0.048829075,-0.055577725,-0.0151346065,-0.09439309,-0.11255367,-0.024262823,-0.0014223666,0.00063118513,-0.036823902,-0.032184575,0.030006025,0.07241193,-0.0016131944,0.02203606,0.025732707,0.056130696,0.07951637,-0.016802471,0.027847143,-0.0626489,-0.028690848,-0.05540281,-0.10871833,0.023276227,0.0063346107,-0.029567458,0.060158506,0.01518678,-0.0060295765,-0.07159356,-0.042136457,-0.0226189,0.0036795519,0.05382494,0.028978532,0.030935999,-0.039026782,0.056544032,-0.08668518,-0.04492737,-0.0042979037,-2.6489122e-08,0.006593131,0.0007841663,-0.026143612,-0.041016836,0.09463548,-0.079417884,0.011606136,-0.006354802,0.027950136,0.047900755,0.013620967,-0.026504269,-0.044942472,0.034801845,0.033347674,0.042246066,0.07181791,0.13503681,-0.028110454,-0.015631557,0.07250552,0.0009678201,-0.048968725,0.021506794,0.05201006,0.049083844,-0.029830683,-0.039400376,-0.024056124,0.03639096,-0.034439374,0.028817523,-0.054472562,-0.08332894,-0.01773559,0.06182873,-0.023707004,0.017545067,0.019448927,-0.11620107,0.016847748,-0.03310194,-0.03214098,-0.018488819,0.050552666,-0.107003905,-0.031821404,0.021502182,-0.009599357,0.07051844,-0.012789723,0.0026615656,0.06649464,0.03220128,0.034255,-0.030240115,0.074925035,-0.019573059,-0.06379219,-0.03413951,0.030174626,0.08156541,0.026788654,-0.0816835} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.888959+00 2026-01-30 02:01:11.979065+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2105 google ChZDSUhNMG9nS0VJQ0FnSURiOE95cFBnEAE 1 t 2108 Go Karts Mar Menor unknown Хорошее место что-бы весело провести время хорошее место что-бы весело провести время 5 2025-01-30 01:52:39.833374+00 ru v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Хорошее место что-бы весело провести время"} {0.047108203,0.027935725,0.019943591,0.02259949,-0.012288592,0.0026455924,0.13426292,0.054638937,-0.029069746,0.0016752597,0.0075580296,0.095424846,0.0130841965,0.05347284,0.013572638,-0.03658807,0.001487972,0.016073545,0.018892746,0.05056816,-0.05516843,-0.05488854,0.07013873,0.039462116,-0.058494497,0.0037348547,-0.009547674,-0.006187534,0.075571924,0.106726676,-0.03318782,0.0027317258,0.074074134,-0.06356607,-0.01862937,0.048250783,0.014902438,-0.0002554924,0.0060932646,0.092329085,-0.06666133,-0.04248453,-0.094344735,0.044279248,-0.013897163,0.067425154,-0.02701175,0.021553427,0.047013834,-0.047084246,-0.11008963,0.014917802,-0.016759021,0.0016671658,0.028428284,-0.030121569,-0.020955514,-0.040943854,-0.066246584,-0.08089062,-0.017035186,0.03884723,-0.018814832,-0.021757089,0.037519507,0.020649342,0.023701346,0.08146843,0.013623343,0.08877975,0.05021376,-0.03922126,-0.073980674,-0.008293737,-0.091711566,-0.047997095,0.003907585,-0.09077875,-0.021934059,0.013886286,0.06034526,-0.057728402,-0.09310471,-0.06163182,-0.026562737,-0.047430824,0.030102132,0.043715917,-0.029496348,0.021473221,0.006067794,-0.028305985,-0.012507623,-0.01988695,-0.00398535,-0.008075542,0.0024109886,0.00066317676,0.121945955,-0.03445999,-0.03343017,-0.0074666184,0.07564995,0.038615998,-0.104707025,-0.014906554,-0.08182196,-0.053785186,0.016978228,0.049422868,-0.105473556,-0.08518591,-0.009443769,-0.034807876,-0.003987618,0.09580985,0.022694424,-0.022158789,-0.08092183,-0.026916249,0.062715724,0.043148268,0.023347275,0.00019470025,0.016329067,-0.017990414,0.058270633,1.2632263e-33,0.016579626,-0.0582689,-0.01846545,-0.027579552,-0.05459173,0.047329042,-0.003998924,-0.029456228,0.049903955,0.0999683,0.03538278,0.0070180427,0.0436154,-0.051624034,0.028499855,0.075755194,-0.007277254,0.0031044108,0.021134112,0.11763278,0.009433389,0.020371076,-0.083213605,0.04181097,0.052704226,-0.019882277,0.02917973,-0.0019491038,-0.0093870945,-0.036446657,0.010942451,-0.023456112,-0.07055004,-0.046584237,-0.06658557,-0.07434555,-0.027310807,0.060595866,0.055341277,-0.035065085,0.06363604,-0.08549872,0.026811806,-0.028935248,0.042709928,0.06538241,0.01655247,-0.03300526,-0.033683043,-0.0055667926,-0.014550228,-0.038610328,-0.031495377,0.02870694,0.067838214,-0.014809109,0.011880391,-0.012320601,-0.025751697,-0.024623528,0.05751156,-0.07612422,-0.027090969,-0.022888342,-0.029984402,-0.06777465,-0.028157994,0.050985638,0.04030775,0.053334825,-0.058406267,-0.009815872,-0.055674933,0.054561112,-0.01833828,-0.0026153573,-0.037841424,-0.021416666,-0.02993198,0.09464505,-0.07002535,0.0272331,0.0753155,0.037780166,0.068979934,0.14589493,-0.0072013126,-0.011678056,-0.014378936,0.06552863,-0.10685211,-0.03728727,0.05467166,0.055474807,-0.04541619,-4.982263e-33,0.032520246,0.008146954,-0.055780753,0.05175846,0.048245393,0.020757379,-0.025428683,0.05459618,0.007372254,0.019739946,-0.0021426852,-0.08592993,0.014661216,0.03121954,-0.023576207,-0.005155752,0.02687665,0.041156925,-0.15479884,-0.036362372,-0.0076957922,0.04371807,0.023535114,-0.0469415,0.003762112,-0.058420815,0.13943233,-0.077563904,-0.06579557,0.10602437,0.02272004,-0.010470742,-0.042395942,0.06437366,0.0874031,0.0157658,0.06972936,-0.0373113,-0.05754129,0.07861008,-0.03684274,0.04323563,0.10316013,0.015441115,-0.037274517,0.024654912,-0.08006232,-0.04314372,0.01806593,-0.04757631,0.020107593,-0.036042407,-0.008604369,-0.07097573,0.05537497,-0.03533534,-0.018549407,0.0047032856,-0.017402615,-0.016284537,0.031277116,-0.043776583,-0.012013025,-0.08137787,-0.07085537,0.06523647,-0.034366637,0.0026086054,0.088516526,-0.054073222,0.012965402,-0.094882116,0.04987663,0.143226,-0.05464327,0.038330827,-0.08833902,0.078088515,0.111464225,0.0103713395,-0.020273333,-0.062117234,-0.031990122,-0.010856484,-0.111981355,-0.015268181,-0.07764385,0.03371498,0.011533567,-0.076203674,-0.07901371,-0.0012728656,-0.0074078115,0.0102982875,0.017302414,-3.2136754e-08,0.03169564,-0.109553725,0.08156102,-0.02912504,-0.042056307,0.0022127216,0.026585435,0.008059592,-0.033425927,0.06031047,-0.03138471,-0.0034298361,-0.052490246,0.01654065,-0.081534944,-0.025334869,0.034403656,0.014966506,-0.0127561465,-0.15633716,0.06811475,-0.04316712,-0.053280883,-0.008027324,-0.04449035,0.025542438,0.03383381,0.0025751535,-0.033015903,-0.050935,0.025734058,0.011129754,0.0008876207,-0.026922032,0.018096333,-0.01517873,-0.010170291,0.0626949,-0.0018645548,0.004134464,0.024911381,-0.046119798,0.030493043,0.064609244,-0.03890775,-0.0043116617,-0.07107411,0.067865826,0.022584904,-0.020919437,0.06801166,0.04547883,0.038061883,-0.019700976,-0.0066152522,0.11452922,0.018747427,-0.017847076,-0.05271286,-0.0745845,0.020745577,0.036976464,-0.01344547,-0.018906863} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.249661+00 2026-01-30 02:01:11.981681+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2128 google ChZDSUhNMG9nS0VJQ0FnSURhNkliQ2ZBEAE 1 t 2131 Go Karts Mar Menor unknown Es un buen sitio, además tienen coches para niños. es un buen sitio, además tienen coches para niños. 5 2026-01-30 01:52:39.833374+00 es v5.1 O3.02 {A3.01} V+ I2 CR-N {} {"O3.02": "Es un buen sitio, además tienen coches para niños."} {-0.07900697,0.066293746,0.020253867,-0.025313888,-0.034724068,0.013598688,0.0115154395,-0.0038473562,0.006459745,0.033641722,0.047396757,-0.078158185,-0.11134191,-0.0012416812,-0.008334901,-0.026807897,-0.10691407,0.10316379,0.012592014,0.02689635,0.049808152,0.042327266,-0.086285576,0.09774535,-0.050781403,-0.010457908,0.074174516,0.0028900579,-0.03666216,0.008003054,-0.019127777,-0.0358957,0.041478243,-0.020957846,0.015330358,-0.01046574,0.0902172,-0.09731042,0.0003530986,0.026249425,-0.086875394,-0.013796111,-0.0416675,-0.087990485,0.052431192,-0.07001643,-0.035710584,0.074269086,0.031094968,0.013716058,-0.029821424,-0.008297994,-0.033684447,0.057386044,-0.029453112,0.055226617,-0.02986426,-0.027105767,0.039343845,0.022451907,0.031103766,-0.010168632,-0.0800565,0.037646998,-0.0024426833,0.030321384,0.030603573,-0.0012630502,-0.045182273,0.089755185,0.04081216,-0.02023517,0.023013093,0.04203975,-0.022707123,0.025540816,0.0017118715,-0.076964766,-0.021044105,-0.08769651,0.0010503955,-0.025901016,-0.055836916,-0.012012852,0.040243033,-0.0011100826,-0.011781535,-0.033858795,-0.0039274814,0.008275639,-0.05343543,-0.0027497197,-0.054364007,0.059738416,-0.008086788,0.047201984,0.024246415,0.0011190614,0.05676874,-0.0153172705,0.019291632,0.03246971,0.04996251,0.057777748,-0.04549179,0.0061947387,0.026003087,-0.09838269,0.028450709,0.05982964,-0.04488012,-0.026819851,0.01016394,-0.025545347,-0.07988658,-0.017026816,-0.039969247,-0.11133206,0.031357978,-0.0055448515,0.05159056,0.026216844,-0.118186235,-0.022210462,0.05617841,-0.07856197,0.045077164,1.8825237e-34,0.032732196,-0.028118744,0.070576355,0.03626125,0.027364036,0.05891598,-0.0808541,-0.038155366,-0.011716657,-0.041079845,-0.13800643,-0.015599694,0.0072153783,-0.022236893,0.058406774,0.07855935,0.063646734,0.02025109,0.0971729,0.10665729,-0.09181201,0.019380711,-0.0163262,0.013844678,0.0072842995,-0.0064393133,-0.023567317,-0.0752731,-0.07757823,0.07681447,0.028333519,-0.039615594,-0.043266222,0.0013903397,-0.053953625,-0.0028559268,0.04865307,0.05273943,0.010481168,0.044826943,0.043533154,0.023870153,-0.03711789,0.061677847,0.019848224,-0.050530706,0.017585425,0.0046917815,0.010758914,0.07160616,-0.076804206,-0.063480504,-0.051072612,-0.061015353,0.059506487,-0.02766356,-0.103118904,0.06960537,-0.0402263,0.016861673,0.09438272,0.018504562,0.036944818,-0.013347723,-0.01944422,-0.0023666846,0.08253361,0.03512781,0.10371072,-0.061617296,-0.08359617,-0.023206478,-0.024156094,-0.0102084745,-0.015555375,0.0031036527,0.032314457,0.025997588,0.031663712,-0.00124257,-0.076262794,-0.060230877,0.05682251,0.0889877,0.052008193,-0.0057398,-0.054346267,0.09761918,-0.034925498,0.02582962,0.03689851,0.034031097,0.044223215,-0.020421717,0.007305032,-1.4971347e-33,0.05275711,0.013101388,-0.05688321,0.07846666,-0.06482,0.04719761,-0.09453563,0.004222804,-0.054175243,-0.06390974,-0.004384475,-0.13670263,0.13181826,-0.062373057,-0.062760584,0.12518057,-0.0031650388,0.011476788,-0.066841185,-0.057584427,0.040631976,0.003973871,0.021126673,-0.0018692414,0.038765267,-0.060319565,0.03750671,0.035747938,-0.1054818,0.0513524,0.08221987,-0.02822332,-0.019529214,0.05630418,0.028778546,0.10859648,0.04219318,0.059099376,0.012610235,0.025243038,0.0049468903,-0.017252162,0.0029422431,-0.013489194,-0.03377212,0.01681549,-0.047842853,-0.06496457,-0.043692775,-0.060313936,-0.0067012706,-0.012836146,-0.04033304,-0.05178785,-0.0101733105,-0.036164362,-0.07359198,-0.031613905,-0.090051845,0.009300401,0.09054456,0.048745405,-0.061021876,-0.008285437,0.051295236,-0.036396544,-0.06373986,-0.066161424,0.050402086,0.047304515,0.057907615,-0.019796185,-0.03126765,0.08439621,-0.09411808,-0.02503104,-0.028772648,-0.021678992,0.010788592,0.019176602,-0.12345463,-0.051106576,0.045345265,0.0075945705,-0.05498384,0.01768939,-0.01981829,-0.010778357,-0.05116751,0.04645147,0.024248675,0.054245863,-0.036413703,-0.026098866,-0.07767984,-2.1545711e-08,0.08215701,-0.05782804,-0.0044677216,0.048155695,-0.010367559,0.03609535,-0.015136159,-0.008699481,0.07443827,0.040574916,-0.084775396,0.02135138,0.06294645,0.045507204,-0.0027263185,0.04843717,0.09816625,0.04781568,-0.026101619,-0.048441395,0.057829104,-0.021945288,-0.05951747,-0.0016488468,0.042036586,-0.0024541547,0.02077685,0.07538851,0.053858366,-0.037937324,-0.003762524,-0.009483806,-0.036020998,-0.04000186,-0.023180852,0.030661585,-0.015901163,0.008717509,-0.07982097,0.036716193,0.07783326,0.065785915,0.0069584385,-0.03297881,0.047771752,-0.09500147,0.07261653,0.0786582,-0.0038061524,0.030878596,0.021895528,-0.04317726,0.071206346,0.025633588,0.05498121,0.028922461,0.053579535,-0.028092362,0.049278658,0.06521402,0.022889202,0.09915411,-0.048869513,-0.006059406} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.577157+00 2026-01-30 02:01:12.052135+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2131 google ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB 1 t 2134 Go Karts Mar Menor unknown Tienen un kart de 400. El trato muy agradable y facil de llegar :) tienen un kart de 400. el trato muy agradable y facil de llegar :) 4 2018-02-01 01:52:39.833374+00 es v5.1 P1.01 {A4.01} V+ I2 CR-N {} {"O3.02": "Tienen un kart de 400.", "P1.01": "El trato muy agradable y facil de llegar :)"} {-0.026749441,0.044425707,-0.033892877,-0.06439232,-0.06674602,-0.011510425,-0.01054034,0.08799156,-0.014545263,0.0005321523,0.03553099,0.0025105507,-0.06799175,0.0053892755,-0.08203884,0.01945092,-0.07698225,0.051780354,-0.027835423,0.041462973,0.09656736,-0.058167536,-0.0106695155,0.07979163,-0.016738387,-0.040735893,0.011230033,0.05480968,0.02109684,-0.040546812,-0.018759962,0.03958915,0.0053011454,-0.027922053,-0.030584026,-0.014051173,0.0028016076,-0.0645402,0.03450188,0.0112875225,-0.02828782,0.0009894985,-0.020329772,-0.002570558,0.06366338,-0.008288792,-0.009692818,0.031781495,-0.041595317,-0.03306884,0.008006695,0.0049307668,0.05884956,-0.07536458,-0.022965154,-0.026070425,0.037948813,0.008120578,0.10662862,0.06301378,0.0053254003,0.033679947,-0.087998524,0.083701015,-0.031369157,-0.050455894,0.0255624,-0.020667927,-0.10406531,0.0840014,0.12925257,-0.07971398,0.018288568,0.068065375,-0.042432588,0.05194461,-0.025765914,-0.036114078,-0.0886408,0.046861075,0.05298089,-0.002173284,-0.019156361,-0.04675962,0.015994038,-0.017096058,-0.027049374,0.023285517,0.0038769385,-0.044291012,0.012584276,0.06685396,-0.12883438,-0.018621886,0.007206344,0.09255707,0.022155937,-0.0528991,0.0017106287,0.012682646,0.08531604,0.017463824,0.056744415,0.07411716,-0.03988956,-0.021108843,0.06223609,-0.014972542,-0.04837819,-0.02932901,-0.032249242,-0.041340932,0.015870582,-0.029358778,-0.00990985,-0.04377214,-0.012230442,0.020957986,0.04521442,-0.035522446,0.019685244,0.06937032,-0.00669726,-0.054927334,0.110913634,-0.06940482,0.023794536,3.1350717e-33,-0.02974153,0.025052648,-0.05574469,0.0076706866,-2.3899845e-06,-0.05786232,-0.05653071,0.002016476,-0.084895246,0.034868952,-0.060243648,-0.007219028,-0.0020402467,0.037356,0.034394164,0.03934505,0.03337017,-0.07486688,0.101604596,-0.015248194,-0.07453447,-0.03884571,0.045438766,0.043902818,-0.00062291557,0.10987352,0.06664885,-0.1067127,-0.024915053,0.079579405,0.039332118,0.06837692,-0.024624433,-0.065617815,-0.07822238,-0.0435157,0.014858763,0.02788533,-0.023808101,0.0035377026,0.063800305,-0.0023563413,0.00027320403,0.019650536,0.021393131,0.032390412,0.09514344,0.05031522,0.09177786,0.028348075,-0.08312244,-0.08607629,-0.085891575,0.011563748,0.03569574,-0.012027421,-0.083797954,0.040408622,-0.06436751,0.013594433,0.008773691,0.026958304,0.0033999747,-0.00656408,0.025336817,-0.012442607,0.026026355,0.004815437,0.07035807,0.004546011,-0.042763688,-0.0360098,0.037341237,-0.02899409,0.033685673,-0.002545821,-0.018594902,0.0865067,0.00037225566,-0.009652245,-0.12630701,-0.015949301,-0.0011597251,0.026298279,0.02346451,0.07094755,0.06047902,0.0008855517,-0.0068042944,0.081643134,-0.003375612,-0.016527304,0.010581681,0.01820265,-0.006710915,-3.316648e-33,0.036505096,0.042408466,0.05768496,0.11736576,-0.05106697,-0.029394317,-0.057135344,-0.033597585,-0.038114566,0.028667105,-0.011239149,-0.1208434,0.07778868,-0.032407243,-0.059032608,0.048488397,-0.01727001,-0.029045258,-0.071039855,-0.08996913,0.015220802,0.052973956,0.017706405,-0.011024453,0.0364556,-0.055897575,0.008301045,0.039397947,-0.05853838,-0.060887188,0.0058707916,-0.019111255,0.0038793935,0.038406473,-0.04494673,0.03579052,0.13646951,0.10601077,-0.007536768,0.07269524,0.013731063,0.11293982,-0.0587955,-0.029459314,0.024445754,-6.403292e-05,0.03041941,-0.10317092,0.054027524,-0.14583597,0.11614597,-0.014755063,0.038592372,-0.005897506,0.030813344,-0.010246091,0.012723959,-0.09632163,-0.11745053,-0.0051142955,0.024215441,0.01635773,0.015272129,0.014760194,0.079548575,0.001681494,-0.04833069,0.024355875,-0.01396148,0.04069049,0.06767076,-0.08675727,-0.036126953,0.05203726,-0.014847811,-0.02724148,-0.055084713,0.040777184,0.09101703,0.039874334,-0.061443683,0.0022793692,-0.013924242,-0.03295089,0.027087446,-0.025435617,-0.052903287,-0.012315691,0.048294973,3.355557e-05,0.030397028,0.11353798,0.036185224,-0.011342799,0.016555175,-2.4899418e-08,0.041004255,0.00051764963,-0.11356365,0.062377587,0.06428488,0.004723478,-0.02844669,0.004417301,-0.021864187,0.051511176,-0.052468665,-0.021889467,-0.07863743,0.039976504,0.024589555,0.010505905,0.015048945,0.030268634,0.01450616,-0.09156877,0.09597356,-0.023533823,-0.03468109,-0.010626856,-0.06729911,0.021246893,-0.058144495,0.052225206,0.017899055,-0.01321537,-0.046526913,0.059780046,-0.11896011,-0.061243396,-0.009042353,0.016154012,-0.07157679,-0.013516283,-0.043488692,0.08168595,0.08919212,-0.099570535,-0.04318583,-0.014297906,-0.010890044,-0.07213908,-0.044815008,0.018555587,0.020029813,0.047843833,-0.049518026,-0.016116448,0.037559517,0.06701653,0.022273656,-0.013686454,0.06300245,-0.04013925,-0.09716539,-0.012501431,0.0691486,0.0331365,-0.03574303,-0.041294165} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.749663+00 2026-01-30 02:01:12.065887+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2132 google ChdDSUhNMG9nS0VJQ0FnSURLOVlhNXJRRRAB 1 t 2135 Go Karts Mar Menor unknown Mucha variedad de Karts de alquiler, un trato familiar y excelente. Siempre repetimos! mucha variedad de karts de alquiler, un trato familiar y excelente. siempre repetimos! 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {O3.02,R4.03} V+ I3 CR-N {} {"P1.01": "Mucha variedad de Karts de alquiler, un trato familiar y excelente. Siempre repetimos!"} {0.043384988,-0.015534474,-0.035973515,-0.006846544,-0.16851024,0.049138054,-0.0028266837,0.06923823,-5.2598298e-05,0.022976983,0.058914244,-0.0036159412,-0.057220772,-0.056912478,0.018448703,-0.00869989,-0.0108262515,0.05420765,0.015469731,-0.021575907,7.375004e-05,-0.06857937,-0.008906313,0.10748367,-0.059468273,-0.038008478,0.012653679,0.099014685,0.049597334,-0.08220576,-0.028311716,0.10643757,0.02573302,0.006720614,-0.032713532,-0.008124812,-0.028338777,-0.02561567,-0.03119945,0.041116707,-0.09367788,0.028081952,-0.035376083,0.036305323,0.013444741,-0.026630439,-0.049622886,0.080166794,-0.014798214,0.012916049,-0.06132692,-0.06432487,-0.005773317,0.0137375975,-0.018746061,-0.050105955,-0.050089,0.055150334,0.094908774,0.043128833,-0.0015607585,0.07039778,-0.07252782,0.057050854,-0.022555925,-0.04230191,0.008935983,0.03224968,-0.06967243,0.04967634,0.121735804,-0.028075982,0.04461531,0.05919904,-0.00033857505,0.022634666,-0.07376673,-0.029059552,-0.08690093,-0.0010869956,0.03252861,0.06549491,-0.03352307,-0.056501675,0.013868762,-0.107335284,0.024490232,0.0022899527,0.09200153,-0.044541895,-0.046358,0.06817999,-0.04316153,-0.091490425,0.027407996,0.051822584,0.028642515,0.024886845,0.030847432,0.017787673,0.12761751,0.03310117,0.087390564,0.06550209,-0.06506476,0.03549479,-0.01503895,-0.056063723,0.04092807,0.05644785,-0.09640728,0.008676902,-0.04811221,-0.023858884,-0.025787098,-0.006029983,0.0058548655,-0.05605006,-0.017965404,-0.017416254,0.04541029,0.015726658,-0.031446517,-0.03001429,0.03974579,-0.034015395,0.05797307,2.7463962e-33,-0.053158395,-0.03305945,-0.007927094,0.08395772,0.018103665,-0.057212025,-0.039951634,-0.08743088,-0.10942412,0.05811015,-0.030955017,0.15284437,-0.015809728,0.06803893,0.08088956,0.09835376,-0.047117937,-0.011191573,0.11108757,-0.004370522,-0.072466925,-0.055812232,0.014811107,0.024185674,-0.07608261,0.021071678,0.049838416,-0.0057705045,-0.056591794,0.015163739,0.03327125,0.060232073,-0.054809958,-0.0457623,-0.072546124,-0.030773237,-0.010112538,0.040574428,-0.004023234,-0.03745809,0.057801582,0.0022989756,0.054247238,0.0025503514,0.018794896,-0.01817564,0.058139782,-0.017562123,0.012027993,0.007588853,-0.09108382,-0.09734808,-0.032299306,-0.018687641,-0.001862755,0.06407461,-0.04947861,0.070182994,-0.049240503,-0.021640312,0.0064375345,0.036798242,0.05321203,-0.023565562,-0.01787202,0.0021222027,0.010450734,0.01114098,0.09074396,0.048388995,-0.021670783,-0.05737857,0.016139468,-0.006812493,-0.01968363,0.0014775818,0.008936316,0.0130869765,0.015753048,-7.2657735e-05,-0.080111496,-0.015188162,-0.034865838,0.042100593,0.004743612,0.019290434,0.027449477,-0.001077783,0.006710768,0.14457119,-0.011049779,0.026134305,-0.0072307447,-0.0028696484,0.02617295,-5.010962e-33,0.015133182,0.027549598,0.024904551,0.06315068,-0.021550015,0.003771282,-0.055537943,0.008552792,-0.007903669,-0.041780233,-0.10995944,-0.118502095,0.10775788,-0.08221856,-0.06816186,0.08220831,0.033679955,-0.006626608,-0.043253798,-0.058318414,-0.016295588,0.023991775,0.017868487,-0.009714997,-0.015786735,-0.046223003,0.04035381,0.03151798,-0.11927902,-0.0034057081,0.03567452,-0.07010665,0.0075578373,-0.0053195823,-0.013967109,0.07270999,0.09818305,0.029986503,-0.021476481,0.063876,-0.0053484985,0.08875514,-0.013918571,-0.020317217,0.025947606,0.014854238,-0.0016578204,-0.15020682,0.0003054709,-0.10126077,0.10285698,-0.018448716,-0.016268497,-0.016768264,0.035922077,0.022171473,-0.023539824,-0.0653959,-0.05413392,0.0045042234,0.031730715,0.009893074,-0.034584533,-0.021134442,0.058735285,-0.031229027,-0.09504819,0.0030121044,0.014197252,0.050539643,0.08947926,-0.06740065,-0.0414205,-0.035487514,-0.061771125,-0.056469917,-0.04967426,0.037914343,-0.012252597,0.058606446,-0.0252854,-0.010104487,0.016529888,-0.0061383042,0.025935821,0.026023064,-0.04877472,0.009317837,0.050089657,0.044214513,0.073908806,0.028438302,-0.053363696,-0.07021951,-0.051541086,-2.9300953e-08,0.03156796,-0.003056444,-0.031871896,0.054584015,0.04199766,-0.06602306,-0.09390113,0.037915375,-0.045065068,0.12564246,-0.015491688,0.005016227,-0.0128379045,0.10913562,0.025908494,0.0799208,0.058441803,0.083817,-0.023973042,-0.05251237,0.10121634,-0.027046632,-0.028832614,-0.033442117,-0.020465588,0.014476763,-0.052774545,-0.020606155,0.0033087374,0.011296878,-0.048955973,0.05656552,-0.07756424,-0.11509153,0.01275267,0.014666268,-0.007358287,0.00817561,-0.02799866,-0.0051501603,-0.0041040746,-0.058568567,-0.053032566,0.0007214117,-0.0314373,-0.0227485,-0.022059167,0.08249698,-0.014150217,0.03393079,-0.031538744,-0.04285492,0.06893327,0.00986015,0.04368905,-0.03329916,0.056623768,-0.010600676,0.0035672013,-0.053844914,0.06342431,0.040974956,-0.013449884,-0.020314235} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.764515+00 2026-01-30 02:01:12.071643+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2136 google ChZDSUhNMG9nS0VJQ0FnSUNxd05xa1Z3EAE 1 t 2139 Go Karts Mar Menor unknown Un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100 un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {V4.03} V+ I3 CR-N {} {"P1.01": "Un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100"} {-0.0077201286,0.06672684,-0.04598727,-0.025962675,-0.081490114,0.029926302,0.096941,0.08530575,-0.04731671,0.033741776,0.031632677,-0.09084468,0.04325423,0.023237215,-0.09843974,-0.027281446,-0.05578897,0.119076736,-0.03399868,0.07946893,0.050385505,-0.05738744,-0.068421386,0.10640696,-0.07745549,-0.012647889,-0.029253574,0.0001348205,-0.04644493,0.0037107654,0.02743746,0.0784364,0.081626005,-0.034273915,0.0011069574,-0.04637237,0.045661394,-0.08101914,0.075225085,0.028260278,-0.040755328,-0.05583914,0.0075354343,0.00016601493,0.11451855,-0.09882389,0.0076762186,0.08338296,0.039959516,-0.015747834,-0.03715056,-0.012044455,-0.03483138,0.02184678,-0.03991955,-0.009660692,0.021239458,-0.03426776,0.024537781,-0.023028556,-0.0029113847,0.030992655,0.004483976,-0.004916724,-0.058296468,0.07096333,-0.016147478,-0.054803077,-0.11267943,0.081635855,0.102126904,-0.010334098,0.004842013,0.050042734,0.039589625,0.018622337,-0.009343023,0.036465462,-0.061239205,-0.04938349,0.021294275,-0.028074343,-0.05452486,-0.059911642,-0.039400604,0.009127517,0.03149073,-0.0037843857,0.010723986,-0.024679236,-0.06729003,0.03573059,-0.08299925,0.008215068,0.019965533,0.05364248,-0.045852214,-0.029505264,0.020069566,-0.03263434,0.06640999,0.08121524,0.09380918,0.028813753,-0.10181782,-0.032707613,0.0574993,-0.031855572,-0.015705455,0.0060501853,-0.05770972,-0.04167548,-0.012721663,-0.00050341827,-0.052593186,-0.0058452864,0.017508624,-0.10425348,0.0010415459,-0.05813766,0.07890729,-0.007781227,0.011507273,-0.014298455,0.07066945,-0.049845792,0.08844634,3.9727437e-33,-0.08821559,0.024417827,0.009450997,0.04721681,0.061659258,0.043971825,-0.045160875,0.007346695,-0.025188902,-0.019711532,-0.13584866,0.058414247,-0.006864437,0.04894499,0.049228348,0.03935804,0.021516835,0.016494194,-0.0043528047,-0.029640904,-0.13205846,0.083113864,0.008388317,0.04416522,0.012873715,0.0598293,-0.04143827,-0.046684455,-0.035303697,0.041545935,0.049262337,0.04182176,-0.0042531863,-0.050405152,-0.07640455,-0.014507948,0.015929181,0.07271645,0.05804826,0.046906825,0.028844375,0.03606355,0.03985391,0.0050473628,0.05156056,0.021256465,0.13453801,0.055581503,0.0249286,-0.014393032,-0.07055879,-0.0043772915,-0.097198375,-0.020509362,0.03724454,-0.07933177,-0.10908921,0.11094525,-0.07646032,-0.030951396,0.12387097,-0.016799511,-0.029770907,0.061780553,-0.09306367,0.013869124,0.022953385,0.03314635,0.107625484,0.083464645,-0.016680457,-0.085205145,-0.0014661993,-0.004774764,-0.018188791,0.008032799,0.05813038,0.02616951,-0.035845723,0.027797118,-0.08615094,0.041125286,0.041737348,0.03135485,0.08231969,0.07444357,-0.00192057,0.04291262,-0.015693622,0.013736954,0.06179985,0.036046498,0.042470776,-0.09753852,0.025940992,-4.135086e-33,-0.008110398,-0.024549382,-0.040322036,0.10180697,-0.075856335,-0.0005465135,-0.047877546,0.056756984,0.01987769,-0.06853281,-0.035520572,-0.103737466,0.09762521,-0.12844622,-0.070229486,0.044746794,0.006870109,-0.032836467,-0.07119725,-0.0107188,0.014477127,0.005523251,0.05413102,-0.041474264,-0.00939083,-0.028777871,-0.0067149554,0.06240018,0.013174422,-0.0017338399,-0.05663284,-0.052947387,-0.037467267,0.07890532,-0.021159682,0.0021100896,0.046127256,0.04002019,0.015707437,0.048407592,-0.03698525,0.008615049,-0.05335572,-0.027715364,0.020930944,-0.014125645,-0.033326834,-0.07696846,0.008693802,-0.074478865,0.036297716,-0.010440967,0.04762769,0.002213202,0.009086085,0.019068636,-0.035386886,0.011887675,-0.024292093,0.007267855,0.0640755,0.072892115,-0.0098852655,0.025916917,0.029316973,2.3289193e-05,-0.06408067,0.023282543,-0.06368911,0.061914768,0.054943357,-0.05088136,-0.07441258,-0.013787933,-0.16286078,0.024404041,-0.053079117,-0.012610857,0.048333496,0.004050747,-0.059804298,0.035186023,-0.011089404,-0.015531732,-0.011635241,0.009878104,-0.039803457,0.054118346,-0.010192615,0.004219776,0.043132044,-0.02149562,0.014745433,-0.060088865,0.0061079436,-2.6411746e-08,-0.024877274,-0.024708265,-0.020766888,0.06114643,0.016455881,-0.012202822,-0.04630225,-0.012023516,0.0034670876,0.022905514,-0.013250644,-0.067498334,-0.026621202,0.1150391,0.00043402228,-0.015564546,-0.0061318376,0.030932708,-0.011783276,-0.0265577,0.012003393,0.0013597213,-0.039547574,-0.03194296,-0.04283985,-0.006725694,0.037055526,-0.018761337,-0.025875377,-0.07457377,-0.010108213,-0.05207779,-0.056210175,-0.016784865,-0.018414345,0.016326282,-0.0604833,0.04281675,-0.047792923,-0.07660044,0.09320214,-0.026571212,-0.0028452254,-0.018793613,0.036008205,-0.114781864,-0.030206075,0.03134815,0.000511757,0.0397482,0.0631622,0.05966023,0.066942826,-0.03961737,0.016992591,0.036048613,0.049057666,0.017896429,0.003445153,0.09449107,0.00899752,0.06814479,-0.006847803,-0.056161217} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.811435+00 2026-01-30 02:01:12.090919+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2139 google ChdDSUhNMG9nS0VJQ0FnSUNyNWVyNThnRRAB 1 t 2142 Go Karts Mar Menor unknown Magnificad instalaciones para disfrutar com familia o amigos magnificad instalaciones para disfrutar com familia o amigos 5 2025-01-30 01:52:39.833374+00 es v5.1 E1.03 {V4.03} V+ I3 CR-N {} {"E1.03": "Magnificad instalaciones para disfrutar com familia o amigos"} {0.008251381,0.047927383,-0.033835836,-0.05149736,-0.036298674,-0.04807003,0.023730155,0.02936257,-0.10149957,0.016660046,0.121711455,0.009885117,-0.013479666,0.02270996,-0.04704913,-0.045644622,-0.07184191,-0.024452569,-0.049192216,0.018632654,0.043568272,-0.056346796,0.017229674,0.046791285,-0.08366056,0.018129574,-0.030767098,-0.00036694552,-0.01010701,-0.029447312,0.082210295,0.047840167,0.08208412,-0.081333034,-0.014834496,0.009803843,0.07997645,-0.016405303,0.008839288,-0.025876187,-0.04768491,-0.04354794,-0.014606919,-0.07780929,0.027128292,-0.023850366,0.023402093,0.046532873,0.025333136,-0.0075076073,-0.09354015,-0.02559905,-0.00039642875,0.054593485,0.027028866,-0.033103064,-8.7393775e-05,-0.022232318,0.04918422,0.010058348,0.024127573,0.051309127,-0.08176557,0.033313572,0.010138584,0.035163485,0.035746966,-0.07029306,0.060630545,-0.060911886,0.04371467,-0.089082316,-0.012940412,0.09173754,-0.02682523,0.0776272,0.00013034153,0.043262556,-0.01703318,-0.014743242,-0.028180828,-0.00017459111,0.001713079,-0.02227395,-0.0026178863,0.00960927,0.00063880446,-0.045950975,0.011593985,-0.022722282,0.0054667927,0.08473377,-0.06838797,0.0070887916,0.005284739,-0.05554833,0.021197006,-0.051357355,-0.0869012,0.022578482,0.052040923,-0.010369168,0.07697394,0.009533083,-0.10032663,-0.07532118,-0.0118728485,-0.031897396,-0.009784429,0.04485633,-0.07886023,-0.08301281,-0.07885438,-0.051612146,-0.06862784,-0.018550193,0.028946001,-0.019085545,0.026693054,-0.054754544,0.01779806,0.022695044,0.001961982,-0.08707024,0.038752798,-0.051632944,-0.0486077,7.394392e-33,-0.061369974,-0.023054993,-0.06032078,0.10836448,-0.0203706,0.05909454,-0.009518279,-0.028973643,0.025822315,-0.036443178,-0.035110477,0.019534178,-0.046273816,0.010312128,0.1174751,-0.0015875624,-0.005630767,0.016950622,-0.025418807,0.08606874,-0.0058102016,0.020282978,-0.024168378,0.021611491,0.09490403,0.034589663,0.031388953,-0.010777203,-0.039192338,0.059045423,0.08405791,-0.035699774,-0.015656952,-0.09726669,-0.044344984,-0.03900286,0.059768796,-0.042584877,-0.0110421935,-0.02314518,0.006620474,-0.013828451,0.0961782,0.03378845,0.036624987,0.07000387,0.06891491,-0.031880677,0.09952896,0.051109593,-0.030307256,-0.11052689,-0.041596446,0.00892394,0.01828203,-0.0038399769,-0.10051743,-0.037459623,0.071879365,-0.11107561,0.06324362,-0.014803292,0.008126291,0.04972802,0.045930482,-0.16520888,0.09774358,0.05983087,0.0693393,0.06486409,-0.05711221,-0.063248135,-0.034431368,0.005361871,-0.058032297,0.014996237,-0.043638464,0.037832316,-0.059951168,0.072286785,0.0050244164,0.020080734,0.026636556,0.00328821,0.1368021,0.10763456,-0.0025615399,0.08940631,0.0008569476,0.03056877,0.05096506,0.16042112,-0.03471086,-0.05120182,0.016773045,-8.430057e-33,0.005887694,-0.08306091,0.015155608,-0.013494683,-0.018434186,-0.011927681,-0.034177367,-0.032497745,0.09037337,-0.04280522,-0.11600077,-0.07411224,0.10870095,-0.06465049,-0.06853802,0.053255208,0.01155109,-0.051948383,0.014744868,0.03996224,-0.008441161,0.0846661,0.016053168,-0.0106705185,0.008091834,-0.082647674,0.012121262,0.0015251394,-0.037745573,-0.03183637,-0.017807327,0.0018534672,-0.09014291,0.08079923,-0.09265863,-0.046439186,0.041539334,0.050576,-0.005701355,-0.02086801,-0.0029615904,0.062376276,-0.011345064,-0.02617861,-0.09475179,-0.022769233,0.04945098,-0.08968973,0.007258166,0.039628956,0.050245654,0.017316584,0.0025340642,-0.041094527,0.017082801,-0.07877101,0.031652164,-0.034730375,-0.052916262,0.037024762,0.083716094,0.03580238,-0.030946419,-0.06752701,0.014266787,0.061762474,-0.015700055,0.042182602,0.003106588,0.06198733,0.10809031,-0.07165133,0.03983867,-0.071389005,0.0008851896,0.027050866,-0.09501102,0.0985667,0.02726689,0.011237172,0.09622739,-0.051682606,-0.030225579,-0.023687113,-0.038895387,-0.12107805,-0.044743843,-0.03178178,-0.029234232,-0.030927667,-0.008588957,0.012974397,0.04267167,0.015387856,0.019840885,-3.045983e-08,0.029299965,-0.013856961,-0.043774378,-0.008716223,0.026432995,0.0113851195,-0.028355503,0.056296118,-0.026513744,-0.009153645,-0.061939903,0.006069412,0.0056174677,0.089641035,-0.019044463,-0.026828388,0.051374827,0.10573836,-0.024904374,0.019525815,0.041435767,-0.04130817,-0.0340273,0.071321905,0.013129578,0.05693688,0.031934235,-0.064519286,0.0020742516,0.0122869555,-0.0098333,-0.04374561,0.036894333,-0.026498381,-0.025792958,-0.012238739,-0.05014576,0.05482929,0.05567893,-0.0456732,0.067458495,-0.005290777,0.05045145,-0.019894022,-0.06670754,-0.070466444,-0.04135263,0.016377332,-0.039995417,0.020590255,0.029901179,0.0038615146,0.052223355,0.014696307,-0.017373666,-0.013966822,0.085715525,0.024452472,0.010829845,0.040053125,0.05969937,0.06082807,0.038437188,-0.042431317} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.860948+00 2026-01-30 02:01:12.106752+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2140 google ChdDSUhNMG9nS0VJQ0FnSURLcFlHd3RRRRAB 1 t 2143 Go Karts Mar Menor unknown Magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda. magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda. 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {E1.03,O1.02,R4.03} V+ I3 CR-N {} {"P1.01": "Magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda."} {-0.011016652,0.005644199,-0.012965337,0.010154716,-0.09817628,0.035588175,0.032298267,0.06425894,-0.074381866,-0.011735485,0.031160425,-0.0021458121,-0.038201116,-0.016673714,-0.040901102,-0.06304277,-0.035458196,0.038074695,0.0550736,0.035709895,0.06360523,-0.067662366,-0.072500825,0.06635718,-0.055391304,0.0077466373,0.02408204,-0.0030796085,-0.044024076,-0.156168,-0.039661597,0.079660006,0.018304605,-0.023115205,0.0009875871,0.014755437,0.0158065,-0.0810215,0.011913556,0.0050500273,-0.0830026,-0.048886158,-0.023849033,-0.032428384,0.03704756,-0.036592055,0.025330305,0.015183039,-0.007337076,0.008547241,-0.09151683,-0.07663475,0.00049089093,0.06231802,0.031951293,-0.060630478,-0.01605828,-0.007631083,0.09913842,0.01970878,0.051928498,0.027802344,-0.096656054,0.049981117,-0.030185275,-0.011027711,0.026890432,0.051506296,-0.079238996,0.031487204,0.16415107,-0.07255758,0.016017903,0.085465975,-0.0059756124,0.050373364,-0.0189064,-0.026359761,-0.041225716,0.01435974,-0.0057889726,0.021644918,-0.014809711,-0.05305298,0.013198749,-0.0050551128,0.021896709,-0.021516036,0.03193328,-0.032602634,-0.072004564,0.055003367,-0.082365654,-0.023518253,0.02295694,-0.034457784,-0.018549345,-0.012080849,0.061197847,-0.0072815255,0.08912933,0.03928532,0.07667385,0.050515383,-0.084142186,0.04061652,0.0009444187,-0.009830892,0.044610005,0.044093337,-0.06511139,0.030776871,-0.11375744,-0.08109659,-0.0179015,0.017478185,0.03226066,0.052758902,-0.022236057,0.0044159554,0.060594875,0.007526438,-0.06054493,-0.06998446,0.00025517712,-0.020160994,0.055853426,3.716686e-33,-0.08342807,-0.07165743,-0.051034145,0.05078413,0.072188295,-0.027725937,-0.07424946,-0.057459384,-0.02456112,0.01032304,-0.03611938,0.11074884,-0.05145158,0.04887749,0.091315456,-0.0053993626,0.038856257,-0.05892081,0.060212687,-0.028861351,0.010111662,-0.036137734,-0.01849712,0.094914705,-0.008337451,0.07696235,0.07869769,-0.06209119,-0.10530474,0.04035367,0.049901552,0.028374786,0.011300961,-0.03422095,-0.05467472,-0.02799016,0.052404594,0.008023827,0.014993795,-0.014271657,0.021887261,-0.005788726,0.040591434,-0.016781628,-0.028784838,0.0050066793,0.057907317,0.040628638,0.12271894,0.048072588,-0.10392544,-0.10682915,-0.0544797,-0.003737167,0.04059778,0.070782356,-0.077903904,0.025119007,-6.723187e-05,-0.050463386,-0.007525816,0.059691664,0.013357632,-0.014754139,-0.022240248,-0.036657996,0.051485315,-0.0010144853,0.08750105,0.022418514,-0.13148032,-0.019200208,-0.035822175,-0.0011555261,0.0066087446,-0.011425715,-0.040371835,0.0102635715,-0.028809927,0.010179967,-0.07783276,0.0045397524,0.0064426484,0.041612845,0.05292028,0.065962724,0.08315972,0.042291295,-0.012611802,0.095438294,-0.004791285,0.11235854,0.05356763,0.010168544,-0.025134886,-5.4693162e-33,0.045304082,-0.06165278,0.09499165,0.1075928,0.0350716,0.07761905,-0.0736413,-0.011799013,-0.055740397,-0.0029091157,-0.102956794,-0.034498088,0.049434274,-0.05946953,-0.07803573,0.044859234,0.029604252,-0.06223971,-0.09139838,-0.07546116,-0.021204261,0.08657208,-0.0075683603,-0.03713935,-0.025397189,-0.029520288,-0.0051184744,0.015347727,-0.08480082,0.02373045,0.019370325,-0.023930985,-0.024223173,0.00686429,-0.044035666,0.043316096,0.09172847,0.075643584,-0.010549132,0.04025659,-0.011325375,0.07820852,0.005757459,0.0036445921,-0.0642759,-0.06574091,0.014106827,-0.11930336,0.021029437,-0.0020422316,0.087521836,-0.004773551,0.01331497,-0.0676599,0.029764906,-0.07158511,-0.026719667,-0.09182138,-0.066246785,0.00869438,0.06126383,-0.016007157,-0.006055697,0.0259143,0.0667455,0.019990368,-0.016074477,0.016210185,0.05636242,0.029670859,0.06853153,-0.023831172,0.02368867,-0.008065799,-0.06304827,-0.0433782,-0.085761525,0.07257333,0.069680765,0.01643552,0.077373065,-0.021505577,-0.064346775,-0.027155094,0.03054935,-0.037773818,-0.030849082,0.024461744,0.06288116,-0.019331614,0.004395513,0.05646184,-0.0459584,-0.026173158,-0.017586896,-2.8401512e-08,0.024177507,0.013758612,-0.064299785,0.023072008,0.021178786,-0.08951603,-0.032968324,0.007965145,0.02407424,0.07340623,0.0044346736,-0.000996962,0.035394832,0.080816194,0.024027575,0.010831641,0.07568215,0.121200934,-0.0069235372,0.040221773,0.054901607,-0.0043381415,-0.078307666,-0.0197624,-0.02483923,0.023272764,-0.018636925,-0.03596733,-0.01283934,0.057367753,-0.015244573,0.039728824,-0.038510665,-0.084670976,-0.084371775,0.027536932,-0.018591516,0.030421622,-0.014493255,-0.021082541,0.04102234,-0.052316602,-0.0010974106,0.0051225093,-0.107431956,-0.06291617,0.009400882,0.03270332,-0.021368265,0.082783476,-0.07366186,-0.041104242,0.06617927,0.007240443,-0.002704176,0.041875005,0.07173802,0.022749245,-0.04086593,-0.053991288,0.01600473,-0.005553931,0.0005640237,-0.015811149} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.871208+00 2026-01-30 02:01:12.111155+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2142 google ChZDSUhNMG9nS0VJQ0FnSURWbVBmV2R3EAE 1 t 2145 Go Karts Mar Menor unknown Variedad de karts y la pista está bastante bien. He disfrutado bastante . variedad de karts y la pista está bastante bien. he disfrutado bastante . 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {O3.02,E1.03} V+ I2 CR-N {} {"V4.03": "Variedad de karts y la pista está bastante bien. He disfrutado bastante ."} {0.03164705,0.017081548,0.014118694,-0.024334092,-0.09723154,0.043671362,0.041885696,0.08005829,0.0038145753,0.013184914,0.042918384,0.006215778,-0.0052495985,-0.0068441993,0.038624994,-0.051989563,-0.038931802,0.06155482,0.036599793,-0.015596305,0.021906316,-0.03839693,-0.08441485,0.06768327,-0.069496594,-0.025302662,0.039430972,-0.05196615,0.006919016,-0.045172952,-0.054869603,0.034793254,-0.006162052,0.0059428615,-0.0611106,-0.0391415,0.009090863,-0.01929535,0.0064522494,0.044394765,-0.07583294,-0.008832765,-0.041043166,-0.019481849,0.08500948,-0.022906875,-0.06276598,-0.00011210707,0.010483825,-0.020051451,-0.06886416,4.3354445e-05,0.0025036857,-0.011536082,0.020302989,-0.11174693,-0.016181922,0.07786661,0.104115985,0.045122568,0.015047938,0.06833533,-0.08264515,-0.02100871,0.021011934,-0.06863668,0.012720757,-0.04847023,-0.06453134,0.07201032,0.11919836,-0.0046134265,-0.034259226,0.045424554,0.02066234,-0.00025976426,-0.07246967,0.0018822609,-0.1206495,-0.06314374,0.046733797,0.014729355,-0.016473498,-0.0446901,-0.012724352,-0.024714384,0.00917691,0.037471425,0.049314857,0.014183797,-0.011166205,0.10500792,-0.08379137,-0.045569677,-0.009133279,-0.011210506,-0.0046454426,0.014431288,0.032862265,0.017564323,0.10570201,0.014794424,0.03277919,0.03283828,-0.083683915,-0.022344759,0.037200604,-0.034131825,-0.019238418,0.060275175,-0.046223287,-0.010095421,-0.08757578,-0.04597089,-0.09856902,0.057804942,-0.041944582,-0.061274257,-0.059235193,-0.045640633,0.05574259,0.04952871,-0.007846248,0.03245409,-0.09496847,-0.056078557,0.065826185,1.7057345e-33,-0.03645608,-0.08133195,-0.018302463,0.0815086,-0.0050007324,-0.033008963,-0.03882408,-0.1236248,-0.021491986,-0.033603303,0.032259565,0.14391917,-0.02566739,0.020447785,0.053722017,0.044700123,0.00029568994,-0.065564424,0.0958163,0.0066094794,-0.074849054,0.0044639786,-0.0020417727,0.04644276,0.013583602,-0.022257997,0.06594365,-0.048604637,-0.14134704,0.036490604,-0.043578353,0.025611568,-0.010654763,-0.029576318,0.024738923,-0.055357993,-0.019254277,0.018763017,-0.04767088,0.006568741,0.085332714,-0.013462867,0.048321046,0.03073975,-0.047053244,0.081847034,0.032209676,0.04706378,-0.0032553326,-0.012620249,-0.04776851,-0.007890798,-0.0076826215,-0.088025354,-0.004518803,-0.029916344,-0.062209994,-0.02186888,-0.043061104,0.05084184,0.109185964,0.035937037,0.029804308,-0.013519334,-0.10173031,-0.07559672,-0.06780298,0.03885008,0.060611226,0.016579453,-0.06550225,-0.044745184,0.038624786,0.028192244,0.01529317,-0.038532432,-0.019384487,0.11812916,-0.13172758,0.016896553,-0.06662309,0.0154833235,0.031349305,0.034500405,-0.056961842,0.08880116,0.0585044,0.0097529255,-0.043365188,0.109280586,-0.074421115,0.03009853,0.01981688,0.030895734,0.03393616,-4.8043046e-33,-0.011164965,0.05054895,0.052518107,0.050423548,0.0036814734,0.01045084,0.027129455,0.027309397,0.027022325,0.002567671,-0.081532784,-0.05358427,0.13832353,-0.032199606,-0.040169816,0.07934317,-0.03714533,-0.049480934,-0.075709514,0.008544884,-0.0541759,0.07482096,0.033901416,0.0022030906,-0.0343244,-0.0146279605,-0.02114533,0.08333169,-0.11479264,-0.005748753,0.03920402,-0.079616874,-0.0038023267,0.0191288,-0.06382886,0.0770457,0.08159584,0.092775285,-0.024994723,0.08204087,-0.049014214,0.06815245,0.010505173,-0.04273892,0.050985657,0.060655046,0.07478274,-0.124338634,-0.04840926,-0.05501811,0.10752473,0.045601357,-0.004817937,-0.0049589053,0.065686055,-0.016134862,-0.06310066,0.011809372,-0.04705492,0.0041999537,0.046700716,0.008021866,0.013160486,-0.036088508,0.06494181,-0.022246856,-0.06158785,-0.070715144,0.03871301,-0.016762229,0.04993831,-0.050412185,0.022949256,-0.0090472875,-0.058882713,0.021018358,-0.08464332,0.040337518,-0.04037718,0.055187263,0.0077138995,-0.034630395,-0.019184465,0.010898177,-0.026075829,-0.004411028,-0.030230546,-0.029810006,0.035194278,0.011725004,0.030534983,0.004508957,-0.04601209,-0.035707794,0.0050087394,-2.57513e-08,0.02130185,-0.03427761,-0.079319246,0.029972138,-0.019209862,-0.022311255,-0.009952509,0.003896425,0.0041360366,0.09493815,-0.061503023,-0.029665034,0.037385266,0.018698128,0.015928112,0.036776807,0.048388593,0.12579931,0.0054925974,0.0224853,0.052707992,-0.014372243,-0.029770723,-0.021688228,-0.07714274,0.0045036413,-0.020910105,-0.047893412,-0.001636551,0.027749099,0.008878362,0.03223125,-0.048681274,-0.12834959,-0.0093969265,0.004161847,-0.04425409,0.022888744,0.039434295,0.07888707,0.07039177,0.021066131,-0.060545463,0.035394736,-0.0077421963,-0.04353905,-0.0043792306,0.053107057,0.010479813,0.05939825,-0.028227538,0.016728017,0.10270892,-0.023776699,0.08339769,-0.047694482,0.03970285,0.00566768,-0.038249638,-0.04713811,0.019149918,0.05176011,0.0335205,-0.032803733} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.892496+00 2026-01-30 02:01:12.116607+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2143 google ChZDSUhNMG9nS0VJQ0FnSUM2eVlMaVR3EAE 1 t 2146 Go Karts Mar Menor unknown Genial, tanto las instalaciones, como el personal.\nUn sitio de 10, repetiremos genial, tanto las instalaciones, como el personal. un sitio de 10, repetiremos 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {E1.03,V4.03} V+ I3 CR-N {} {"P1.01": "Genial, tanto las instalaciones, como el personal.\\nUn sitio de 10, repetiremos"} {-0.051538933,0.05481389,-0.017543433,-0.055326577,-0.07056005,0.02885947,0.105295144,0.10710232,-0.016477086,0.054837376,0.08218881,0.0106077725,-0.041192215,-0.0073987045,0.04770046,0.0077166194,-0.017212572,0.027690323,0.011073412,0.0023386772,0.045792494,-0.036882088,-0.037837423,0.061771255,-0.08300716,-0.019278165,-0.03528586,0.040948786,-0.021295816,-0.030905377,0.031168288,0.087807365,0.13053605,-0.05036049,0.034733314,-0.084653154,0.0370404,-0.05497374,-0.02895306,0.030835113,-0.06608027,-0.07728443,-0.032729972,-0.053517006,-0.001935975,-0.08245111,0.025077635,0.08322262,-0.0069743018,0.010929656,-0.058192555,-0.013572594,-0.022792654,0.035244267,-8.280173e-05,0.0010958974,0.008724516,-0.046444844,0.042990226,0.030552095,0.05147414,0.056907374,-0.11247703,0.046637286,-0.061836988,0.05963758,0.06510733,-0.09975799,2.3749022e-05,0.07666136,0.0851932,-0.09013475,-0.0173494,0.04604967,-0.06276286,0.015974378,0.058332715,-0.007275877,-0.052482177,-0.05819474,-0.06494683,0.06416098,-0.0056524314,-0.05342552,-0.07331746,-0.019621521,0.0576316,0.026464406,-0.032598753,0.030623639,-0.07831055,0.052349925,-0.009477822,-0.048122395,-0.011422216,0.034921184,0.008830615,-0.067704566,-0.030446986,-0.012162688,0.088324584,0.039129693,0.08070148,0.11469596,-0.072151326,-0.0015179539,-0.024812842,-0.08638341,-0.036061175,0.03841348,-0.09239919,-0.06159423,-0.05556632,0.0010977677,-0.09232917,0.020024648,-0.011362684,-0.045604337,0.026390916,0.003381355,0.068688475,-0.02879781,0.017321192,-0.045056295,-0.01279774,-0.020862434,0.08248855,-1.625699e-34,-0.075567655,-0.0070481477,-0.038654916,0.094285846,0.029127536,0.025940211,-0.053912364,0.029714247,-0.022338582,-0.020559466,-0.08052711,0.0332558,-0.017901136,0.092072144,0.100496545,0.030967625,-0.049564004,0.052019335,0.05322377,0.030939953,-0.060045604,0.0352962,-0.004545615,0.01059873,0.029634835,0.07696456,0.03538305,0.0015242695,-0.07318292,0.042367876,0.013279401,0.013225487,0.04381863,-0.010784324,0.013495004,0.00095248106,0.093558155,0.007877193,0.06957927,0.0020796463,0.055872437,0.006552181,0.032189686,0.06758919,0.058508743,-0.010695588,0.0686619,0.024302743,0.04515196,-0.029394906,-0.07543032,0.029100694,-0.036213554,-0.03850587,-0.064350285,-0.017342525,-0.08090349,0.03726737,-0.04579596,-0.07134835,0.06874174,-0.002454105,0.03324533,0.009765925,-0.033804327,-0.02142315,0.05238378,0.063859195,0.14689352,0.027184838,-0.08559583,-0.07083399,-0.030230748,-0.0016755079,-0.008812346,0.035650548,0.03339224,0.02796845,-0.03660137,0.034690402,-0.025449207,0.049431346,-0.0062815435,-0.0067418334,0.12114384,0.058310755,-0.06276654,0.04816609,-0.013570908,0.060365874,0.019456161,0.021899188,0.018806195,-0.0025402377,0.0061899023,-3.5990724e-33,-0.06623767,-0.04609784,-0.029016687,0.00923,-0.029929226,0.038522795,-0.039429925,-0.004778244,-0.022427086,-0.01824568,-0.115984075,-0.036040813,0.12847868,-0.080602325,-0.09138902,0.043906324,-0.04070388,-0.0717431,-0.05013299,-0.005917102,0.059777427,0.04724797,-0.00076334365,-0.0361955,0.005063313,-0.060529925,0.008015474,-0.0050627207,-0.0009294722,0.02488042,0.010409626,0.02440179,-0.066317804,0.023811897,-0.004713733,0.015546262,0.06441287,0.05750368,0.0023674746,0.017941725,-0.03402657,0.044624645,-0.028609637,-0.04059733,0.0081008775,0.012471425,-0.03531506,-0.12924005,-0.07839132,-0.013726673,0.0063084443,-0.004425924,-0.02729961,-0.036428023,-0.024274224,-0.08489337,0.025278127,-0.059802666,-0.0019133835,0.05924101,0.005276742,0.08367065,0.03343611,-0.045089304,0.011303774,-0.009905454,-0.047153156,0.03130186,-0.057087686,0.029515173,0.086834826,-0.009882004,-0.041673638,-0.038507726,-0.11623866,-0.029828068,-0.055995926,0.011291008,0.031852666,-0.0036120908,-0.007906644,-0.05947903,0.027459474,-0.079609804,-0.02324746,-0.11713818,0.001494273,0.046306875,-0.026000174,0.03252943,0.061238337,0.011601449,-0.096728176,-0.055333458,-0.019315394,-2.8033385e-08,0.0413544,-0.0441601,-0.0038095529,0.022371788,0.06783568,-0.0708188,-0.0929962,0.059962664,0.068370335,-0.0010307881,-0.015257412,-0.025294624,-0.03102613,0.11536268,-0.018049179,0.023892736,0.043555725,0.03706813,-0.029344562,-0.0042439396,0.04681996,-0.0068472857,-0.014832132,-0.014947924,0.026055124,-0.0033965427,0.012364889,0.012823119,-0.05120319,0.031030163,-0.004683987,-0.004437215,-0.10184187,-0.043207098,0.008891712,0.013978815,-0.015123705,0.0561359,0.043098804,-0.12314659,0.06995454,-0.011532926,-0.041923203,0.018722147,-0.041248742,-0.09371999,-0.101920925,0.021460906,-0.075059235,0.039743528,-0.008851058,-0.012076895,0.05337854,-0.01681741,0.06326463,-0.02405165,0.089443,0.018725324,-0.027534544,0.09141385,0.06339569,0.082375005,0.03763897,-0.0582568} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.903376+00 2026-01-30 02:01:12.12216+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2144 google ChdDSUhNMG9nS0VJQ0FnSUNRcjZiM253RRAB 1 t 2147 Go Karts Mar Menor unknown Fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados .. fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados .. 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {O1.02,E1.03} V+ I3 CR-N {} {"V4.03": "Fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados .."} {0.044421785,-0.026845261,-0.03750451,-0.103899494,-0.09102109,0.070783734,0.04812579,0.05031777,0.069426514,0.045180544,0.080241434,-0.030531043,-0.064417884,0.021270698,0.033196148,-0.045934018,-0.060394336,0.0014732586,0.017175347,0.020398825,0.111647084,-0.02683958,-0.05868436,0.0598307,-0.08789421,0.03599916,0.010926326,0.010186097,-0.030959714,-0.13077903,0.003709463,0.060887165,-0.016281992,0.01479738,0.033607822,0.0019146503,0.039451588,-0.11821993,-0.02034826,0.0722311,-0.1389543,0.047544923,-0.009351832,-0.032452904,-0.060016245,-0.046113644,-0.011305795,0.031029485,-0.03658408,-0.025881672,-0.03851475,-0.047791984,-0.0730544,0.015646596,-0.034815,-0.014928614,0.0017228023,-0.031838395,0.020227037,0.028051214,0.017360356,0.059053168,-0.018362716,0.05596939,-0.05146763,-0.018139247,0.04531329,-0.07048399,-0.0114504555,0.072221465,0.058850575,-0.0153254885,0.050594736,0.018102994,-0.021682067,0.020330928,-0.032691415,-0.0199769,-0.011523026,-0.048444062,0.01628922,0.010018665,-0.0010461357,-0.045917965,0.030826757,0.028507011,-0.043097112,0.0152736725,0.037114292,-0.01422673,-0.037121933,0.03979868,-0.03911052,0.036098912,-0.032531854,-0.0039064814,0.017606804,-0.101617165,0.05713442,0.0051607946,0.055778995,-0.012244208,0.07170294,0.036637757,-0.052271828,-0.027109277,0.043138035,-0.066766195,-0.018899424,0.031187937,-0.043391462,-0.038305078,0.027166842,0.016281303,-0.074178435,0.028358523,0.028424734,-0.05367334,0.006075043,-0.08639984,0.07174376,-0.032083124,-0.05409312,0.0064185187,-0.027595866,-0.034233615,0.01283671,4.1344175e-33,0.019696217,-0.012899957,-0.005334647,0.013469582,-0.017068753,0.032602098,-0.02289063,-0.03703504,-0.025496544,-0.025591055,-0.06556006,0.15129933,0.041057926,0.07083263,-0.010657651,0.007395564,0.01198629,0.049844217,0.01690909,0.010242121,-0.068758726,0.059333697,0.0357715,0.06729337,-0.02752533,0.04576015,-0.062311985,-0.08483683,-0.06768284,0.0464559,-0.021545727,0.03569828,0.014209144,0.025409397,0.02987889,-0.03026823,0.059395462,0.03482178,0.027682258,-0.0012228057,0.06580061,0.013778263,-0.06006389,-0.031997137,0.007690257,-0.012875846,0.00085644494,0.03557608,0.0033663511,-0.006555254,-0.046684936,-0.08290076,-0.024939252,-0.03687939,0.009276182,0.03060891,-0.09548119,0.04312825,-0.036883067,-0.020736575,0.050345376,0.10173122,0.06850575,-0.023531124,0.00789249,-0.0686082,-0.007920015,-0.010602531,0.09469199,0.09776019,-0.091748886,-0.031658955,-0.0031183527,0.08360489,0.054724287,-0.0400001,0.0011052386,0.06293041,-0.07974474,0.059596583,-0.06344619,-0.045478463,0.006219096,-0.03861102,0.023625752,0.08435275,0.10637125,0.04405929,-0.041935474,0.10825994,-0.075881794,0.071103156,0.10845324,-0.04034877,0.0037606694,-6.356047e-33,-0.043500435,-0.024495058,0.008051556,0.047234762,-0.026706748,0.03188723,-0.014744571,-0.009393721,-0.044323236,-0.047754224,-0.055734,-0.08641883,0.10341173,-0.07912195,-0.0043118154,0.0312504,-0.02854467,-0.08113417,-0.030675165,-0.00095965585,-0.061816342,0.019230371,0.016012106,0.018501285,-0.027462084,0.00011196706,0.01021055,-0.06674835,-0.1012952,0.04281317,0.033447698,0.019568611,0.005409626,-0.034101766,-0.040774435,0.07765109,0.05352562,0.045158003,0.013428078,-0.01845845,-0.06278083,0.05964472,0.08345231,-0.05024203,0.031666417,-0.0032870984,0.016071333,-0.07523379,-0.123008125,-0.0037523704,-0.00039827856,-0.023606302,-0.06711583,-0.05261062,0.015868662,-0.0061668316,-0.051049724,-0.11299724,-0.051219594,0.02008111,0.036151074,-0.026547326,-0.06520699,-0.06386397,0.10549814,0.0292575,-0.020860748,-0.014637402,0.17963694,0.046925526,0.11822434,0.047720794,-0.07169635,0.015833981,-0.007631199,-0.014512916,-0.12994386,0.02065747,-0.032608952,0.033695087,-0.00037557626,0.037301376,0.048945088,-0.032521505,0.0118575245,-0.0148287965,-0.09952436,-0.011324645,0.025967302,0.032223776,-0.025001466,-0.0192337,-0.07720067,-0.039007295,0.040112533,-3.295838e-08,0.03843773,0.007912942,0.008230614,-0.022631811,-0.014253818,-0.03467964,0.046757046,0.00548642,0.0028556497,0.034922626,0.02249953,-0.004659661,0.07989267,0.05904407,-0.019984707,0.08862392,0.05915394,0.14200202,-0.018441597,0.004623523,0.06909341,-0.00901947,-0.02515144,-0.019740736,-0.0479586,0.042793017,-0.05070699,-0.03807086,-0.0694468,0.015551639,-0.00031691077,-0.00045202867,0.009013707,-0.084406346,-0.029775828,-0.012044353,0.04749003,0.0034079505,-0.055727776,-0.016088743,0.0775564,0.07563968,-0.033697728,0.011566811,0.011440082,-0.11047003,0.07352239,0.012472198,-0.0010667671,0.056491155,-0.068476,0.051481526,-0.00069572695,0.039068386,0.019271698,-0.038574353,0.025477098,-0.0099364845,-0.043298196,-0.007247623,0.009290377,0.11883268,0.094085455,-0.09715871} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.913495+00 2026-01-30 02:01:12.124609+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2126 google ChZDSUhNMG9nS0VJQ0FnSUREN01ER0tREAE 1 t 2129 Go Karts Mar Menor unknown Eine sehr schöne Anlage. Ein Besuch lohnt sich. eine sehr schöne anlage. ein besuch lohnt sich. 4 2025-01-30 01:52:39.833374+00 de v5.1 E1.04 {V4.01} V+ I2 CR-N {} {"E1.04": "Eine sehr schöne Anlage. Ein Besuch lohnt sich."} {-0.11036332,0.06936312,0.035989672,-0.04730178,-0.06402977,0.04425424,0.024688508,0.04670812,-0.0073214625,-0.028602002,0.030818954,-0.04848374,0.010506415,-0.008934604,-0.03666334,-0.032444574,-0.0056381524,0.012221087,0.02087369,-0.0413421,-0.029358948,0.06581868,-0.04719776,0.040411383,0.03527806,-0.054122593,-0.040656123,-0.0066142497,-0.0063041593,0.04164212,0.045647804,-0.035428565,0.0632818,0.030742386,0.051304437,-0.023369169,0.022690658,-0.03060624,-0.0054299883,0.102516994,-0.06833524,0.0033658776,-0.022284454,-0.029757287,-0.008344476,-0.04139984,0.00880622,0.025548967,-0.0598166,0.0028899612,-0.1072563,-0.063169055,0.021181015,-0.015641922,-0.032337848,0.024264755,0.033757,0.036518298,-0.07066958,-0.022271238,-0.0030170407,0.0174657,-0.07086252,0.03756248,-0.04037592,0.022446208,-0.006413086,0.0012543331,-0.04801411,0.07505314,0.10161398,-0.11257746,0.097491965,0.08068965,0.07503965,-0.11012962,-0.01151394,-0.02443146,0.049775455,-0.015185655,-0.019878523,0.0013421882,-0.024832193,-0.027330074,0.0034670827,-0.037362557,0.025179211,0.021219993,-0.039479703,-0.015822895,-0.03507883,-0.09138212,-0.15340583,0.031340215,-0.072159976,0.023189014,-0.0117568085,0.016824976,0.06087746,0.036800336,-0.057722066,0.0449325,0.092656426,0.038691014,-0.06532671,-0.0042715254,-0.05576613,0.05066677,0.04722996,-0.02655316,0.07585448,-0.05838998,-0.06489074,-0.029387604,0.03438118,0.037003845,0.08737388,-0.07372143,-0.07166406,-0.0047148154,0.02478049,0.020664541,0.0036427577,0.03943113,-0.055512615,-0.020048238,0.007263059,2.074514e-33,-0.036594532,0.009988787,0.033959437,-0.01313328,-0.112718925,-0.043998793,-0.07740368,0.060195543,-0.051589828,0.004961137,-0.007836181,0.028706938,0.016885513,-0.055353917,0.06577664,0.008544837,0.00090112415,0.0050598425,0.10671174,-0.073516265,-0.04356872,-0.068981916,0.031242508,0.030491097,0.0803104,-0.06107029,0.058877114,-0.08009084,0.02469909,0.045786206,0.07288804,-0.028730076,-0.0034342809,-0.03707727,-0.029299209,-0.0154356845,0.0118024545,0.088676915,0.07027612,-0.07940814,0.02471067,0.048130635,0.058819305,-0.06647826,0.058728725,0.055815693,-0.022483042,0.029983522,0.079492584,0.0066839056,0.031972043,-0.043450013,0.0138203455,0.025083302,-0.01562263,0.01749919,0.0020631226,0.05155158,-0.035131793,-0.021731142,0.033780713,-0.027217114,-0.03341456,-0.0079919165,-0.014656802,-0.014085027,-0.034880843,0.0109000625,0.011083064,0.0014606743,-0.17688508,-0.0050998772,0.022121595,-0.06735955,-0.07135165,0.04151482,-0.04129329,0.021149535,-0.043884076,0.011432441,-0.10646555,-0.0023370688,-0.029210754,-0.034552876,0.061490048,0.014718339,-0.0035950772,-0.01485624,0.05009912,0.08555682,0.028838698,-0.022839876,0.0016776298,0.017226046,0.039607875,-3.315154e-33,-0.0038574098,-0.016364798,-0.09621785,0.06972318,0.031927556,0.03853774,0.021264495,0.13543372,-0.110038206,0.06862817,-0.030567355,-0.03193621,0.046387244,-0.035961874,-0.018724501,0.055598684,0.010653016,-0.009555689,-0.010735888,-0.0061042947,0.03367274,0.04435403,0.0743664,0.04151706,-0.03779059,0.04267544,-0.042794712,0.035596196,-0.017344404,0.0732501,-0.0036012367,-0.007793017,-0.016308894,-0.016245317,0.002298193,0.09026529,0.11692221,0.078160934,0.0061037503,0.05496022,0.0140475575,0.06976069,-0.06290935,0.09371614,0.0972879,-0.009027956,-0.08625045,0.046553664,-0.099092215,-0.07134529,-0.023269622,-0.061879903,0.111556225,-0.09032071,-0.007459218,-0.0307234,-0.024280574,-0.07299898,-0.0567982,-0.020183943,0.046613745,0.07274654,-0.039198104,0.027593188,0.02627805,-0.079569116,-0.112095326,0.008139383,0.0034199366,-0.012168867,0.061636012,0.008802193,0.01752358,-0.012510353,-0.096656725,-0.0749797,-0.0023782055,0.0489756,-0.04718774,0.06494815,-0.044575155,0.01527715,0.023176705,0.063328035,0.051233273,0.016145792,0.07176091,0.05026422,0.055499513,0.019350639,-0.013257964,0.06857376,0.033972766,-0.009418853,0.0010914208,-2.6193634e-08,-0.034234777,-0.044106107,0.03158828,0.017629467,-0.006924994,-0.06479644,0.08068613,-0.009567931,0.008075444,-0.011100191,-0.055508334,-0.015054129,-0.07008726,0.06873773,-0.05728177,0.07616694,0.010703439,-0.004984552,-0.006641575,-0.036218725,0.08289704,-0.09340871,-0.020650119,0.06872323,-0.052529044,0.017960789,-0.072216816,-0.12027134,-0.052136548,-0.06966977,-0.028246118,0.069912106,0.024262764,0.04873545,0.013993417,-0.020429436,0.0052933507,0.019034732,-0.058892597,0.040900547,-0.00041415673,-0.015808241,0.020655638,0.0050073755,0.05562189,-0.09464371,0.042006765,0.027411224,0.09105558,0.10538154,-0.08074237,-0.09760426,-0.032095302,0.0030682925,-0.021570327,-0.020082556,0.013172095,-0.01719723,-0.0044920878,-0.053987242,0.038788874,0.047333572,-0.019314373,0.0407098} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.555212+00 2026-01-30 02:01:12.045065+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2151 google ChdDSUhNMG9nS0VJQ0FnSURNdEoyVnZ3RRAB 1 t 2154 Go Karts Mar Menor unknown Superbe circuit, le personnel est très gentil et les tarifs abordables. superbe circuit, le personnel est très gentil et les tarifs abordables. 5 2020-02-01 01:52:39.833374+00 fr v5.1 P1.01 {E1.03,V1.01} V+ I3 CR-N {} {"P1.01": "Superbe circuit, le personnel est très gentil et les tarifs abordables."} {-0.07012379,0.08121809,0.05347584,-0.08024895,-0.025983933,0.07497727,0.017913036,0.15620169,-0.00022762433,0.07288536,-0.04278564,0.0030955481,0.042537257,-0.036138996,-0.09504494,-0.049673107,-0.07969174,-4.647394e-05,0.034752943,0.01410151,0.06195747,-0.034410123,-0.0059487815,0.03188932,-0.09339842,0.06117347,-0.07424795,0.029354172,0.014324492,-0.11285641,-0.0057202876,0.05207989,0.014622445,-0.036101293,-0.03078598,0.017434824,0.040774286,-0.08891299,0.062044546,0.020665409,-0.07407035,-0.0045035747,-0.030381806,-0.05825518,0.028600208,0.0023842829,0.058014337,0.015497748,-0.096297346,-0.0068506384,0.053217266,0.01762306,0.14492765,0.065607145,0.03200972,0.019184442,-0.0034653775,-0.11575717,0.044974376,0.03295605,-0.028733477,-0.0022664724,-0.044941362,-0.04327018,-0.0637076,0.011268689,0.02607159,-0.07947088,-0.022663577,0.06452572,0.063958734,-0.1208672,0.0166655,0.014971183,0.105141535,0.06265134,-0.025726873,-0.0034567302,-0.06258855,-0.17401291,-0.0095481705,-0.08421762,0.009460156,-0.044440206,0.027294198,-0.009501722,0.07393255,0.0066722347,0.10388402,0.008155787,-0.07398056,-0.014334931,-0.019196969,-0.048570625,-0.01841508,-0.028565822,0.029173687,-0.045826007,-0.035200927,0.045990255,0.004452319,-0.007672536,-0.0040013827,0.027357783,-0.057664894,-0.048123993,-0.0032093043,-0.013461896,0.0025942582,-0.054373942,0.020305973,0.0071838642,-0.047586814,-0.031320196,-0.0073523815,-0.0065424996,-0.05791288,-0.05071418,-0.032365263,-0.08488534,0.082011834,-0.019130155,-0.006313749,0.04694108,0.008356187,0.07406299,0.07617434,-1.1005722e-34,-0.017332885,0.055273436,0.014698867,0.016344957,0.04043521,0.048540667,-0.032533262,0.075861014,0.043534476,0.018040294,-0.08597698,0.09547175,-0.009681886,0.013373395,0.03219202,-0.0752076,-0.0035798794,-0.054748114,0.056722187,-0.049747568,-0.022831658,0.0017747631,0.043914896,0.0815682,0.059429508,-0.00063416647,0.024340816,0.007893024,-0.0688052,0.034334008,0.0039357306,-0.039515894,0.024818463,0.046359308,-0.018190706,0.018803969,0.0054743392,0.061840482,0.06612524,0.057429086,-0.0055795363,-0.03710215,-0.014959305,-0.07161143,0.015760198,0.040873397,0.0046837335,0.02756365,0.04623489,0.01740822,-0.06972524,0.015266474,-0.041816644,-0.047446217,0.027051752,0.06166017,-0.06312399,0.04206627,-0.035809655,0.032044422,0.023303121,0.056715578,-0.012125131,0.023420677,-0.061995883,0.0057307165,0.041472126,-0.020599073,0.071818836,-0.03886964,-0.089537114,0.013076594,0.08976841,0.011311845,-0.0018111478,0.07513534,-0.043462522,0.06086081,0.03329426,-0.022928597,-0.12870532,-0.023911947,0.040846817,-0.06715775,0.07419283,-0.018333897,-0.00694941,0.012530339,-0.022470048,0.042463817,0.016588474,0.015572005,0.124558635,-0.026624396,0.013408872,-3.138373e-33,0.02094471,0.030722337,0.022974545,0.043240517,0.022423163,0.04239688,-0.024911446,-0.03007712,-0.09442213,0.005073564,0.010764346,0.010448128,0.04487694,-0.051512085,-0.041736614,-0.0013586588,-0.053103443,-0.09274929,-0.04690638,0.0011118433,0.033580605,-0.029406011,0.016056854,0.012866877,-0.049609665,0.04567735,0.0599404,0.07611,0.0036758557,0.0026763738,0.011375674,0.07604674,-0.00024100729,0.056432284,0.041416783,0.058419224,0.08660224,0.13286299,-0.020124568,0.0507911,-0.051290937,0.097674645,-0.025987279,0.015963418,0.01995788,-0.018651564,-0.03852419,-0.12342663,-0.082743235,-0.03420653,-0.037813317,0.026582086,-0.04730933,-0.074360594,-0.045222495,-0.020087853,-0.06518042,-0.041029964,-0.027211778,0.00846982,0.07372972,0.028954694,0.06053341,-0.015749365,0.04438333,-0.043803826,-0.068789646,-0.023119623,0.031608555,0.031896338,0.09601381,-0.03391882,0.03232635,-0.043932393,-0.07342762,0.00034960432,-0.029212587,-0.004482553,-0.0010006941,-0.015075194,-0.05639947,0.014768589,-0.057575073,-0.0040363073,-0.05965806,-0.0016191012,0.050751526,0.027584678,0.0132247,-0.06566526,-0.01005644,0.020165162,-0.03707153,-0.008412459,0.062143672,-2.5227719e-08,0.005681048,0.016750429,-0.096194126,0.006641601,0.07252984,-0.16598547,-0.08271844,-0.045734398,-0.013490523,0.02486603,-0.05519818,0.050847236,-0.050373685,0.021474216,0.02393936,0.03261072,-0.080767184,0.089263216,-0.055499505,0.0069887782,0.0032913254,-0.035415098,-0.049411766,-0.053868733,0.020593273,-0.061935622,-0.03601153,-0.09937514,-0.0155017655,0.020149488,0.0011088743,0.056335174,-0.016677774,-0.023832336,0.046801087,-0.0019389918,-0.05006792,0.0066392645,-0.0047316942,-0.023939496,0.08645297,-0.00811231,-0.05547733,0.0011586401,0.032945264,-0.115690514,0.003593592,0.04154444,-0.04780191,0.08781964,-0.073148966,-0.00821239,0.0396999,-0.0037673065,0.036007024,0.07537681,0.008765692,-0.023276066,-0.061419945,-0.02077706,0.017301915,0.059964616,0.08112049,-0.03605294} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.987073+00 2026-01-30 02:01:12.157537+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2152 google ChZDSUhNMG9nS0VJQ0FnSUN1MFpfcFBnEAE 1 t 2155 Go Karts Mar Menor unknown Muy bien los críos se lo pasaron en grande, y los mayores también. muy bien los críos se lo pasaron en grande, y los mayores también. 4 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Muy bien los críos se lo pasaron en grande, y los mayores también."} {0.012853965,-0.034799766,0.045960974,-0.026370818,0.0021802452,-0.0023164717,0.06179516,0.01779366,-0.03308638,-0.018687762,0.035973202,-0.012223258,-0.008285304,-0.0095758755,0.019872727,0.012175674,-0.023480017,0.0417288,0.029087318,0.011658327,0.078770705,-0.0463009,-0.051917974,0.16393137,-0.106372535,-0.057310756,0.049433626,0.036548045,-0.005535748,-0.019009626,-0.0038508528,0.055291746,0.043992825,-0.004589807,0.016185949,0.029667236,0.0642067,-0.06733839,0.01470272,-0.020544246,-0.103432104,-0.0017825885,-0.009253805,-0.033610035,-0.03554674,-0.12217834,0.031927068,0.012551264,0.0028957548,-0.01567927,0.014684408,-0.02028504,-0.026954418,0.019160151,-0.008912137,0.036404606,-0.08016225,-0.06893913,0.117148936,0.01892186,-0.046775293,0.058766764,-0.06457084,0.020135297,0.00089926954,-0.026554905,0.028623495,0.008423595,-0.067745775,0.022952212,0.118905626,-0.035075504,0.0030848046,-0.013534917,-0.018021723,-0.024753181,-0.02069879,-0.0047344854,-0.10514044,-0.016034808,-0.037246365,0.006330399,0.016666751,-0.0036952184,0.027990649,0.022805424,-0.06832331,0.052469064,0.06595369,0.030287558,0.015797589,0.13314185,-0.0018823338,0.020173406,0.00871447,0.045014877,0.050654154,-0.06425183,0.05380002,0.081540644,0.06308229,0.05821995,0.037995253,0.05407087,0.047793273,0.046114247,0.021096407,-0.018963465,-0.026927719,-0.059399042,0.038776815,-0.0153206065,0.020911241,0.031044193,-0.044620924,-0.025423577,-0.018109841,-0.0077185286,-0.025363583,-0.04959658,0.06380318,-0.003914313,-0.12667917,-0.08200111,0.008147551,0.019194335,0.0023526617,3.2006974e-33,-0.016304005,0.011326453,0.007831151,0.06137461,-0.027555784,-0.0010692758,-0.011208447,0.038964584,-0.04754769,-0.047763176,-0.023613099,0.02051,0.021755096,0.008973566,0.0469874,0.047261734,-0.01760185,-0.04883937,0.039368287,0.05058999,-0.05940865,-0.027466405,-0.015261216,0.022976106,-0.034345176,0.04236672,0.022990713,-0.02820508,-0.09240731,0.048380863,-0.0661889,0.034294654,0.07959537,0.060739134,0.06135216,-0.008916273,0.05640039,0.055813607,-0.03709944,0.045319747,0.082634926,0.011104003,-0.057384912,-0.009697999,0.014754488,0.024198553,0.040890478,0.002777076,0.023003258,-0.024617344,0.011744006,-0.017822165,-0.12815447,-0.039590288,-0.007968404,0.016972242,-0.058276035,0.03024976,-0.012490081,-0.0036021033,0.103313856,0.021963814,0.025796356,0.011072452,0.0043227803,-0.024742415,0.03216306,0.015552044,0.1352606,0.034522682,-0.044610668,-0.029507503,0.006059006,0.017191317,0.08537283,0.00045889436,-0.029566422,0.019542405,-0.012784763,0.04885108,-0.03130574,-0.029269822,0.037657034,0.01813362,0.06790869,0.004848305,0.04033363,-0.0044960007,-0.042207465,0.049224887,-0.033677734,0.021142248,0.071445614,-0.04125588,-0.09041394,-4.299681e-33,-0.031845286,-0.018104838,0.04868465,0.036419585,-0.09404605,0.033554327,-0.043914303,0.0148867965,-0.033567436,-0.070070274,-0.09109743,-0.074524246,0.10575679,-0.030252723,0.042270895,0.12830603,0.018763006,-0.08081261,-0.15328771,-0.0006954078,-0.0085820155,0.046091918,0.04275225,0.060908835,-0.026944531,-0.053961072,-0.057055335,0.06492197,-0.044238094,0.042036667,0.030503364,-0.10973064,-0.017254412,0.029185845,-0.050155096,0.079592705,0.026661351,0.0066182297,0.047135253,0.059276555,-0.03196102,0.036431946,0.027805999,0.0042626257,-0.038921054,0.06958942,-0.056615766,-0.13740544,-0.09106148,-0.04242179,0.012457069,-0.0145790875,-0.08767232,-0.024547067,0.040842302,-0.055228528,-0.022488026,-0.060673207,-0.046032663,0.0035779325,0.03239969,0.011400633,-0.056809314,0.016370507,0.06695704,-0.03784552,-0.04044449,-0.031960115,0.07743243,0.06410986,0.11557844,0.031465992,-0.115355775,-0.037567187,-0.10527025,-0.02383332,-0.08572725,0.014423855,-0.015610255,0.03648694,0.037541497,0.011169201,-0.0006791442,-0.028488556,-0.02922066,-0.011704392,-0.023710767,0.043157764,0.023417069,0.03536253,0.06952442,-0.012818963,-0.026643168,-0.07682777,0.022358231,-2.5936348e-08,-0.0062854025,-0.047289785,-0.13454829,-0.0020385562,0.013133398,-0.028296737,-0.06865927,0.04640303,0.040044896,0.10059421,-0.0110080885,-0.06024764,-0.018233053,0.050154507,-0.055693883,0.0739252,0.05890176,0.06061441,-0.013367895,-0.016974134,0.023782557,0.0079372795,-0.01156486,0.015192422,0.016329885,-0.0004799553,-0.10631658,0.013625316,-0.007416523,0.042652003,-0.044004284,-0.01439731,-0.08894823,-0.08355931,-0.02003885,0.0015747431,-0.016460717,-0.044765275,0.02643174,-0.07028589,0.09843054,0.019273417,-0.088010184,0.00746914,-0.046935156,-0.1266033,0.021860594,-0.0064217146,-0.0064444286,0.044531457,0.053987842,-0.0666356,0.054220792,0.015304161,0.051384747,-0.070256345,0.03058137,-0.006678983,-0.033316106,-0.058412284,0.023562184,0.1610606,0.05000728,-0.11189947} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.99626+00 2026-01-30 02:01:12.159894+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2156 google ChZDSUhNMG9nS0VJQ0FnSUNLcTQ3X1R3EAE 1 t 2159 Go Karts Mar Menor unknown Buen circuito, buena ubicación y excelente atención por su personal. buen circuito, buena ubicación y excelente atención por su personal. 4 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {A4.01,P1.01} V+ I3 CR-N {} {"O1.02": "Buen circuito, buena ubicación y excelente atención por su personal."} {-0.030548854,0.028701294,0.012367518,-0.04483792,-0.07506085,0.011902576,0.02362393,0.08791429,0.0122603215,0.023704205,0.07052292,0.02167378,0.001563695,-0.01656303,0.04972695,0.034687713,-0.045938168,0.021835767,0.0062767593,-0.018580187,0.107449785,-0.039957806,-0.07165381,0.12584722,-0.052472536,0.00033015825,0.025743075,-0.0041543385,-0.008520555,-0.101361506,-0.08873107,0.053538065,0.12955594,-0.038357176,-0.025855621,-0.034073487,0.05658862,-0.022770472,-0.0070759826,0.021854125,-0.13006999,-0.05771669,0.04799315,-0.020284865,0.0186341,-0.075764954,0.06142338,0.021235256,0.03715335,-0.03705791,-0.003888092,-0.035399545,0.00086648343,0.058855683,0.012450535,0.035703003,-0.02045224,0.0053771827,0.045227733,0.07308986,0.031188184,-0.001200587,-0.060190186,0.050979022,0.03041081,0.036192525,0.013592523,0.03808587,-0.04617513,0.033304237,0.09136944,-0.101832554,0.042843804,0.08740812,0.02318197,0.04919263,-0.0359905,-0.021856993,-0.015610908,-0.0115905935,-0.0037800155,0.004100782,-0.030305248,-0.043660905,0.041395992,-0.022965599,-0.014862998,0.0034841842,0.0039944253,0.014281669,-0.05709146,0.047127146,-0.09206889,-0.04051133,-0.098459736,-0.03148569,0.009877363,-0.013352197,0.04253467,0.055191617,0.10591087,0.03397418,0.07740656,0.02212112,-0.0028385464,0.08798662,0.020989172,0.0048716897,0.027332928,0.016665028,-0.032343514,0.010560267,-0.13356143,-0.014856538,-0.0016277545,0.022132527,-0.0024073236,0.030583046,-0.0010365148,-0.06390827,0.02863219,0.01822566,-0.07304875,-0.01572651,-0.0381121,-0.0876128,0.08286109,3.5572637e-33,-0.038580768,-0.041714888,-0.041096397,0.070875496,-0.011442322,0.026159728,-0.042987578,0.019351652,0.0021700596,0.047837406,0.0061489353,0.11119778,0.023447938,0.058662765,0.07957536,0.009711586,-0.069146864,0.0017294717,0.084270425,0.01116537,-0.02000848,-0.066789925,-0.041059047,0.057252854,-0.04005437,0.011039775,0.0073600803,-0.058922112,-0.03935407,0.03498722,0.019533807,0.04102891,0.034918744,-0.07147944,-0.034350093,-0.03983949,0.07862715,0.01291223,0.06527351,-0.02107934,0.028210185,0.038337294,-0.030738372,0.014214405,0.026727706,-0.013320651,0.046024833,0.08423925,0.06192399,0.03977294,-0.11550425,-0.09888847,-0.024422033,-0.032659065,-0.016177304,0.052806422,-0.036156096,0.08407668,0.004541382,-0.00790225,-0.021228505,0.094143204,-0.0151706785,-0.025789948,-0.13406813,0.024520526,0.037012443,-0.019167816,0.07757636,-0.025388166,-0.106022015,-0.038448982,-0.060089845,-0.0010078513,-0.01333536,-0.014948554,-0.036632225,0.020744406,-0.0032760424,0.0040115733,-0.068561286,-0.014208389,0.018971888,0.038328104,0.08119007,0.13544782,0.10004357,0.0025495156,-0.068664484,0.15655294,-0.0020519153,0.096581906,0.084604256,0.053813457,0.07485468,-4.6203423e-33,-0.0027079587,-0.027307274,0.036042806,0.02113795,0.04007266,0.009911741,-0.053001303,-0.032835845,-0.065481834,-0.06510037,-0.031723272,-0.07870427,0.09550429,0.010955858,-0.040053498,0.0071530975,0.004045649,-0.09537128,-0.09124241,-0.007063334,-0.0044269334,0.11835571,-0.00025045587,-0.024435626,-0.017916419,-0.057853818,-0.0545636,0.06260333,0.019346146,0.0034234626,0.029864866,-0.0052487315,-0.06340435,0.0304133,-0.046971943,0.057061538,0.07970704,0.01576654,0.02882933,0.04049062,-0.0036617466,0.05992504,-0.049563643,-0.018821236,-0.06592508,0.06319696,-0.019975001,-0.12806165,-0.0808466,-0.05005049,0.0072825584,-0.027403714,-0.049004525,-0.050176103,-0.023823006,-0.060734324,-0.0010529123,-0.07431788,-0.06735809,-0.027635556,0.023919499,-0.017999768,-0.009473293,-0.032885514,0.0666206,0.008780638,0.0039023457,0.05126682,0.046735626,0.051985342,0.08903114,0.01236853,0.00540861,0.004684372,-0.06454986,-0.04378866,-0.090430744,-0.040600043,-0.033059217,-0.01640368,0.0094327,-0.020432377,-0.003068576,-0.09892887,-0.03907352,-0.023404442,0.003415313,0.026616212,-0.01887684,0.047160454,-0.05283478,0.051877607,-0.12562531,-0.052279904,-0.03709458,-2.7767825e-08,0.0018548393,-0.0069705877,0.054789633,0.018064586,0.016818346,-0.10087784,-0.009297509,-0.0140873315,0.0074088597,0.016908022,-0.0005197996,-0.017401394,-0.02914928,0.045553446,-0.014257242,0.01570993,0.09734049,0.09637181,-0.015409497,-0.03487181,0.04792238,-0.04591393,-0.030040888,0.034883194,0.05336997,0.032919515,0.019532923,0.064198606,-0.015148428,-0.064198256,-0.027624955,-0.0037336443,-0.0025979676,-0.053525582,0.022683132,0.01899575,-0.013305216,-0.0257623,0.0041487073,-0.031993087,0.04642957,-0.046377707,-0.05249729,0.02472104,0.012761895,-0.09838828,0.023760613,0.036681868,0.004882845,0.04258232,-0.022293398,-0.09793667,0.02819993,0.013079248,0.04678745,0.017188415,0.057460867,0.03281287,-0.06298493,-0.016586464,0.02658967,0.07802832,0.02276635,-0.15442744} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.777305+00 2026-01-30 02:01:12.173649+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2158 google ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB 1 t 2161 Go Karts Mar Menor unknown El mejor de la zona.\nSolo cuatro estrellas porque la cafetería puede mejorar bastante. el mejor de la zona. solo cuatro estrellas porque la cafetería puede mejorar bastante. 4 2022-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"O1.02": "Solo cuatro estrellas porque la cafetería puede mejorar bastante.", "V4.01": "El mejor de la zona."} {-0.006916617,0.04470484,-0.017068496,0.0029313243,-0.054707676,-0.016285187,0.044280767,0.04552863,-0.02370699,-0.014013023,0.054171365,-0.117946975,0.06161358,-0.0008426869,0.028699415,-0.02157867,0.0657471,0.01640519,0.028118044,-0.013850436,0.017226065,-0.0051171617,-0.092367716,0.07699066,-0.02745483,-0.029249128,-0.01304656,-0.04115257,-0.010100259,-0.07840265,-0.05721071,0.004046125,0.09904089,0.03528682,0.03506776,0.004993297,0.082310125,-0.060016952,-0.04353875,0.06880664,-0.05803999,0.04182211,-0.0077947513,-0.038553033,-0.05935732,-0.03530025,0.002191764,0.006837503,-0.027013097,-0.052541256,-0.072883934,0.009817764,0.020193968,0.021491105,0.04024147,0.024349762,-0.024790378,-0.051697165,0.084428154,0.056157995,0.0033767654,-0.005087243,-0.028211266,0.042250175,0.03575534,-0.036747374,0.0058323904,0.029823843,-0.10127189,-0.0007576942,0.080202356,-0.04410595,0.059580594,-0.005991244,-0.017581306,0.048056558,0.05031449,-0.11495401,-0.009696485,-0.003051544,-0.0675686,-0.012786242,-0.017951235,-0.013826521,0.07554839,-0.002966613,-0.0008640899,0.032444175,0.028566211,0.026598258,-0.07066493,0.085446544,-0.0941068,-0.032250587,-0.03519672,0.02573009,-0.009011351,-0.05419358,0.04284179,0.04308,0.07315163,0.04986435,0.11236743,0.016132444,-0.05155858,0.01212051,0.06259222,-0.037509136,-0.03231661,0.06636238,-0.066857055,-0.057925005,-0.05558163,0.008437954,-0.080982536,0.057783026,0.05799719,-0.06921213,-0.034257334,-0.050968252,0.02322773,-0.018881788,-0.034714397,-0.054651484,-0.021478403,0.039946973,0.05619576,5.318975e-33,-0.1005203,0.011283272,0.012182982,0.010077306,0.10515301,0.019932235,-0.048314273,0.08608201,0.01764799,-0.062604904,0.024435164,-0.016373163,-0.040871453,-0.017658811,-0.012418437,0.040866014,-0.00900185,-0.018498508,0.008603521,0.09267784,0.011124554,0.035841156,-0.042104743,-0.0009414225,-0.043498747,0.031493373,-0.0002567334,-0.07030308,-0.09379814,0.038340632,0.053830262,-0.011308888,-0.012954336,0.0063639334,0.043935757,-0.033989135,0.019011658,0.036796752,-0.017110923,-0.080335185,-0.029657625,0.0060072346,0.029326078,0.00025088614,0.01350225,0.08384312,0.033465095,0.034231666,0.043228235,-0.060629632,0.021454731,-0.013628053,-0.10730367,-0.03617076,-0.020727573,0.016440041,-0.058055338,0.0042756097,0.06331387,-0.0369496,0.040020593,0.04415034,-0.024743497,0.053183272,0.035990052,0.012520251,-0.04306245,0.010845312,0.22572555,-0.029881068,-0.020678535,-0.107724614,0.053564172,0.08120476,-0.008794151,0.0021166338,0.0015417222,0.0029394007,0.033841986,-0.03779995,0.02125341,0.0050962237,0.04973535,-0.02549134,-0.007644595,0.031957377,0.016261015,0.0118028615,0.0071027093,0.12346569,0.007080137,-0.012115026,0.050293002,-0.045156784,-0.027546728,-6.102249e-33,0.014142756,0.022444049,0.017301718,-0.01026206,0.014044341,-0.0048366343,-0.054630116,-0.023568464,-0.007130048,-0.03565105,-0.06707259,-0.08199286,0.10320808,-0.05145162,-0.037826072,0.14472254,0.10082279,-0.03856206,-0.06425116,-0.022010306,-0.06539964,0.0100172665,0.043865252,0.028957475,-0.02959526,0.0090065645,0.034347124,0.011003823,-0.046236254,-0.016126843,-0.001566104,-0.032733742,0.028772596,-0.071387984,-0.052183144,0.01519466,-0.058125008,-0.038876243,0.021284744,0.03878253,0.04404763,0.00673049,-0.04661597,0.032214303,0.011312095,0.054558422,-0.038982145,-0.1462057,-0.09801188,-0.028511094,0.03974711,-0.062117297,-0.057672292,-0.084468275,0.09495932,0.015775707,0.069584005,-0.05611619,-0.01344563,-0.009563887,0.04692512,0.014591843,-0.05462852,0.030182272,0.054018345,-0.06133941,0.002992939,0.010812412,-0.028987873,0.0809684,0.0669736,0.03258298,0.0026873793,0.0018078131,-0.10976014,0.023881488,-0.12404835,-0.05223754,-0.027534047,-0.0452272,-0.050371323,-0.05999734,0.053090293,-0.014106466,0.014644741,-0.08874901,0.01620575,0.06315361,0.032646537,0.026165603,-0.026846163,0.035865508,-0.0033771785,-0.022948885,0.01116352,-3.105279e-08,0.07448879,-0.08132192,-0.057961233,0.044825904,0.041886874,-0.13228554,-0.06461776,-0.025304051,0.04804578,0.1410098,-0.04541036,-0.00935974,-0.016398968,0.013797807,-0.020021066,0.10943664,0.0863654,-0.027991438,-0.011427724,-0.0042353934,-0.0062064584,0.007739813,-0.061145484,-0.032686237,-0.025569627,0.06674939,-0.05928444,0.039182227,0.019463087,-0.028796297,0.006593393,0.03306932,-0.048950877,-0.12284068,-0.06522648,0.02866398,0.0043876604,-0.05041976,0.0038462412,-0.082776986,0.10945489,0.0015595073,-0.008566338,0.01441958,-0.033974435,0.017782023,-0.058359247,0.022299256,-0.0009255262,0.08705711,-0.054780714,-0.026543492,0.06958141,0.014425632,0.09939657,-0.06567799,0.0109547805,0.0119785825,0.0049934518,0.03673601,0.05334407,0.10879219,0.019158404,-0.039950144} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.80733+00 2026-01-30 02:01:12.180937+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2162 google ChZDSUhNMG9nS0VJQ0FnSURNOW9iMU5BEAE 1 t 2165 Go Karts Mar Menor unknown Un buen lugar para divertirse, sobre todo a los que les guste la velocidad. un buen lugar para divertirse, sobre todo a los que les guste la velocidad. 4 2020-02-01 01:52:39.833374+00 es v5.1 O1.05 {O1.02} V+ I2 CR-N {} {"O1.05": "Un buen lugar para divertirse, sobre todo a los que les guste la velocidad."} {0.022242453,-0.026833354,0.060809832,-0.052586507,-0.0014111398,0.050678346,0.08712571,-0.0052076094,0.038224593,0.0043787304,0.041187294,-0.052190237,0.0038052658,-0.06757586,0.05267069,0.012352971,-0.025354242,0.046639543,-0.038637016,0.04609464,0.09295507,0.047461186,-0.035423566,0.16576438,-0.09208834,-0.02062257,0.011940954,0.026895314,0.0057905614,-0.02893849,0.109452195,0.050874438,0.0374343,-0.024473827,-0.030294836,-0.02602626,-0.008706789,-0.050456237,0.0027548173,0.073635414,-0.09212112,-0.018267242,0.0026047549,-0.07238147,-0.0060199453,-0.01801541,0.0036668584,0.03241182,0.042511813,0.037113283,-0.0035458275,-0.005537149,-0.04640765,-0.04600625,0.0061849346,0.050055962,-0.06158936,-0.03433876,0.09368103,0.053731244,-0.032344583,-0.010467516,-0.027685512,0.0023216775,-0.03931611,-0.07582947,-0.010667789,0.014722702,-0.023056973,0.066155545,0.09701079,-0.031208785,-0.0042798286,-0.0049537406,-0.0025930782,-0.006762241,0.027459633,0.02004132,-0.08219151,-0.099574804,0.00032353305,-0.06301023,-0.02334989,-0.05785847,0.0017098245,-0.051584836,-0.020792412,0.07929962,0.03919852,0.0020165786,-0.04281727,-0.045427598,-0.076110415,0.023312036,0.019300466,0.03439493,0.0438529,-0.14206745,0.019560216,0.04043381,0.0384525,0.06469001,0.065562,0.05612034,0.016831405,-0.039425176,0.018138034,0.0030215,-0.0053613163,-0.077690534,0.03302598,0.0034657032,0.053856604,0.00095413416,-0.10624455,-0.10251346,0.025032643,-0.11025261,-0.06925725,-0.031630486,0.018909575,0.045850705,-0.07337858,0.01873891,0.0036802606,-0.0853901,0.03552302,2.367203e-33,-0.0007367421,-0.020728827,-0.030157078,0.08740781,-0.004978831,0.054041915,-0.03141915,0.019834159,-0.024174307,-0.02591935,0.0041514747,-0.008828281,-0.030853141,0.08364587,0.05099465,-0.013597836,-0.0050729173,0.009783479,0.04902699,0.03873872,-0.1062463,-0.011496631,-0.028043283,0.056757957,-0.030769255,0.0142165255,-0.02999801,-0.0441807,-0.039806135,0.07415326,-0.030936694,0.016887922,0.0019623572,-0.022023026,0.029278085,0.0084160445,0.009956676,0.0969362,0.060800217,-0.03967957,0.07574151,0.035312563,-0.08570205,0.041972548,0.0020488296,0.00013951979,0.038248744,-0.0022688298,0.03513507,0.003256418,0.010855239,-0.056542788,-0.0147306835,-0.059816897,-0.04407879,-0.028672334,-0.061396338,0.07232372,-0.023681061,-0.028668309,0.045376536,0.1001473,-0.021796295,-0.0058850884,-0.036779817,-0.023885038,0.07955888,0.008681089,0.07712244,-0.017237287,-0.059693813,-0.011682267,0.0010928622,0.011046369,-0.005564793,0.010031732,-0.022551946,0.014897421,0.05038111,-0.021831607,-0.042474646,0.004150037,0.085692756,0.03262294,0.087288514,0.09095451,0.009284749,-0.028283283,-0.038574204,0.054978367,-0.0568196,0.019510223,0.076892614,-0.056719013,0.07839573,-4.8696224e-33,-0.02142363,0.037409402,-0.018488418,0.0976073,0.013572788,0.04114224,-0.032232374,-0.02245281,-0.05763556,-0.08778061,-0.081158735,-0.075751565,0.09518834,-0.045768313,-0.0042723226,0.05404873,0.045886513,-0.06073347,-0.10156519,-0.0027551882,-0.08114137,-0.026111217,0.1005423,-0.038026046,0.001221146,-0.005492781,0.007914948,0.029586438,-0.1028162,-0.051028047,0.029102124,0.012904418,0.035413265,0.014956406,-0.022785466,0.06497586,-0.0036810236,0.045588493,-0.02324262,0.06292921,-0.047271274,0.026072748,0.02179642,-0.06143457,-0.014974164,0.030107101,0.047574334,-0.16509072,-0.027801048,-0.029656993,0.047851287,-0.031794257,-0.040672116,0.009899956,0.015754065,-0.10978606,-0.025192568,-0.09990544,-0.07674696,-0.047726072,0.029276758,0.04626647,-0.02714607,-0.06359377,0.077056944,-0.0060306937,-0.07247223,-0.032128576,0.011742021,-0.0055117565,0.13314445,-0.022931967,0.00070783787,0.059410196,-0.03414568,0.00059544377,-0.090768754,-0.046325482,-0.03506368,0.035987537,-0.0819387,-0.017950319,0.031838678,-0.018915609,-0.023724029,-0.025582151,-0.081845425,-0.016653685,-0.051487222,-0.016497115,0.011756506,-0.04892932,0.013358069,-0.07219361,0.0018494516,-2.840749e-08,0.020168312,-0.06515036,-0.08181973,-0.015384769,0.022580054,-0.024796337,-0.085759975,0.03005166,-0.038162045,0.01832717,0.004975585,-0.013270347,0.022490988,0.08645783,-0.0502525,0.048196174,0.06778385,0.032427784,-0.008431265,0.008109454,0.056600153,-0.007638704,-0.007571788,0.016049827,0.037827432,0.0015047815,-0.06325835,0.04130875,0.0635582,-0.07575975,0.05098603,-0.035489723,-0.039362982,-0.042001724,0.012787605,-0.037041645,0.01909626,0.040796228,-0.009707953,0.04946736,0.14472167,0.05111433,-0.059956733,0.02872696,-0.060025435,-0.07727974,0.0118326675,0.06766347,-0.017544812,0.10110976,-0.022678409,0.004741388,0.08658609,0.079004385,0.008216956,-0.0693066,-0.055912808,-0.01496905,0.011911235,-0.07645102,0.05205272,0.1708327,-0.05306212,-0.0045468686} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.866373+00 2026-01-30 02:01:12.202511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2165 google ChdDSUhNMG9nS0VJQ0FnSUQ4czd6eW93RRAB 1 t 2168 Go Karts Mar Menor unknown Buen circuito y la atención muy buena también. buen circuito y la atención muy buena también. 4 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {P1.01} V+ I2 CR-N {} {"O1.02": "Buen circuito y la atención muy buena también."} {-0.05876572,0.0062925667,0.016396554,-0.049864225,-0.075056106,0.021215882,0.052497026,0.0579845,0.031538814,0.027384998,0.08486154,0.03437403,0.041737143,0.0053871963,0.009063456,0.05399329,-0.06518558,0.03387527,0.035009336,-0.018272337,0.12250218,-0.04376062,-0.043845,0.13012144,-0.054735146,-0.022697637,0.029709598,0.024328465,-0.045000736,-0.113347575,-0.03913765,0.0778712,0.044945534,-0.031092782,-0.039727554,-0.030783778,0.073833846,-0.041666005,-0.012371678,0.020079419,-0.113223515,-0.075230986,0.010682146,-0.06000956,0.020495895,-0.087635614,0.052841436,0.019180648,0.061927084,-0.078396365,0.062509045,-0.02851895,-0.0051564076,0.03407584,-0.0006780825,0.04374732,-0.014417677,0.01533773,0.06536171,0.05935615,0.0067658755,0.06266819,-0.051722407,0.052190956,0.036779143,-0.026712498,0.044200778,0.034291264,-0.072074674,-0.012165204,0.11035063,-0.10699956,0.06330424,0.014204798,-0.014126541,0.014537123,-0.015794257,0.029902037,-0.0033789496,-0.04181629,-0.025986241,-0.020990197,-0.04885097,-0.009018456,0.036623202,-0.0038953556,-0.052363314,0.009357456,0.025976704,-0.013420674,-0.051725276,0.01704296,-0.04637459,-0.019224713,-0.0040269312,-0.028551033,0.03037682,-0.047393654,0.016545596,0.080261044,0.05969071,0.040419932,0.06750153,0.013898935,-0.0013606524,0.04214377,0.061171014,-0.003055143,0.04743946,-0.043299943,-0.03449312,0.008018721,-0.046102837,0.011120593,-0.0067114956,-0.0030028988,-0.0054454026,0.019279305,-0.028361643,-0.10219211,0.02810581,0.022339407,-0.097313374,-0.011541461,-0.025096063,-0.015413168,0.10036458,4.4930674e-33,-0.034694087,-0.052736603,-0.040155213,0.050554063,0.027399423,0.038902946,-0.01522968,0.020308286,-0.00548774,0.007429449,-0.04043163,0.07483757,-0.014001503,0.036956668,0.09497394,-0.039869513,-0.030308692,-0.05485465,0.107429735,-0.016012035,-0.046471335,-0.06986525,-0.02174997,0.12005432,-0.0047429516,0.031405654,-0.020635486,-0.034767013,-0.046514228,0.050487824,0.00679754,0.04595811,0.040580384,-0.0318087,-0.044788476,-0.08852108,0.06926145,0.042984128,0.040331125,-0.039031383,0.016921805,-0.004734338,-0.026256895,0.010061666,0.009410883,-0.0042137075,0.04544515,0.07931605,0.099178575,0.06954735,-0.08812661,-0.11061645,-0.05922601,-0.035832178,0.0029163903,0.03788697,-0.04113193,0.07087763,0.004205102,-0.00036430464,0.008305224,0.12144032,0.0054540667,-0.06630154,-0.08157796,0.05970624,0.055139836,-0.03897684,0.07961237,-0.030295558,-0.092449695,0.0002457231,-0.077370346,0.020162528,0.05116182,-0.022510663,-0.040809184,0.023329198,0.022383248,-0.023014272,-0.10369374,-0.042537455,0.020870881,0.086722665,0.07721019,0.101831354,0.07834002,0.034069635,-0.049713608,0.10013511,-0.048234697,0.06758904,0.08642683,0.020972207,0.06382255,-4.956644e-33,-0.022991717,-0.043646477,0.012591543,0.055800613,-0.0033047004,-0.0009774958,-0.048042003,-0.03122729,-0.07705228,-0.07200786,-0.047334515,-0.08986557,0.07664452,-0.0041441247,-0.013628282,0.02336083,0.0033022747,-0.055437237,-0.101114795,-0.0022046783,0.014165766,0.065088026,0.003542706,-0.018554127,-0.020738017,-0.021716904,-0.05157464,0.051772047,-0.034763414,0.045269895,-0.01695782,-0.04159946,-0.028312687,0.07707293,-0.07874557,0.047048606,0.09712726,0.027487861,-0.030809576,-0.026323983,0.015636854,0.05402438,-0.035879694,-0.0018927967,-0.076820105,0.07030028,-0.035032175,-0.1202955,-0.062271036,-0.016305786,0.026137028,-0.028849704,-0.0038355372,-0.024405662,-0.026842589,-0.052776206,-0.021547971,-0.048353612,-0.0673293,-0.02741232,0.07697095,-0.0134257795,-0.032381006,-0.021753654,0.10080743,0.02860299,-0.0011474784,0.10122556,0.08224318,0.014028927,0.14744188,-0.02192533,0.0077462564,-0.0145455105,-0.07078063,-0.06306563,-0.12272951,-0.03544812,-0.046716604,-0.0003984329,0.012582175,-0.0009999833,-0.028347231,-0.06942388,-0.06859412,0.0026407677,0.044723883,-0.0097951,0.0025019378,0.047140192,-0.042756498,0.0582273,-0.09230077,-0.03837293,-0.01371994,-2.6514709e-08,-0.0032295957,-0.020048153,0.024918634,-0.03812892,0.06663795,-0.072759986,-0.015873592,0.0051232334,-0.012218998,0.01237086,0.030309403,0.002536117,-0.011442512,0.06569989,-0.026069093,0.04708379,0.08087657,0.1140168,-0.022104718,-0.033814594,0.05136786,-0.015600095,-0.024550619,0.03822383,0.07805037,-0.0019953216,-0.055056833,0.07390088,0.010242946,-0.025075417,-0.026394822,-0.0020093916,-0.029695567,-0.061129767,-0.0027180095,0.03836988,-0.053445216,-0.05466256,0.013809196,-0.04720332,0.021702116,-0.052952394,-0.033869028,-0.004775678,0.039044432,-0.09269311,0.022441398,0.01644892,0.014019664,0.030999584,-0.017602677,-0.049097966,0.03939322,0.030303678,0.015063196,-0.038920663,0.057949275,-0.0065403543,-0.02089848,-0.011407323,0.015498064,0.10762596,0.05282602,-0.13316055} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.901842+00 2026-01-30 02:01:12.213028+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2167 google ChdDSUhNMG9nS0VJQ0FnSURVdWV6ZzZ3RRAB 1 t 2170 Go Karts Mar Menor unknown Buen circuito y organización. Los karts funcionaban todos similares (para que haya igualdad). buen circuito y organización. los karts funcionaban todos similares (para que haya igualdad). 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {J3.01} V+ I2 CR-N {} {"O1.02": "Buen circuito y organización. Los karts funcionaban todos similares (para que haya igualdad)."} {-0.015220135,-0.019916946,-0.031377263,-0.037337117,-0.08195785,-0.00814998,-0.009139914,0.057258926,0.008668628,0.02691646,0.050539345,0.038316313,-0.04027481,0.042661633,0.08304035,-0.0028067261,-0.029756133,0.025184939,0.0014418481,-0.06264259,0.07359949,-0.05205123,-0.051973563,0.082984895,-0.109621994,-0.043330446,0.03234467,0.048882276,-0.0131766945,-0.15329705,-0.08403499,0.07620759,0.0392332,-0.027504006,-0.06790054,-0.050561514,0.010497198,-0.052901793,-0.04688049,-0.027153473,-0.07004063,-0.056773987,-0.008720561,-0.016939588,0.009872128,-0.06960376,-0.065317586,0.03203351,0.011245964,-0.038373023,0.009148163,-0.09113518,0.025618909,0.0043304292,0.015202177,0.01188316,-0.117250025,0.08583227,0.13470848,0.073050514,0.07764264,0.05151606,-0.05058114,0.027020788,-0.056358904,-0.028922033,0.026551543,0.07553033,-0.043433465,-0.015277101,0.12599123,-0.12230949,-0.020404782,0.014730317,0.056880806,0.00061118143,-0.017712884,-0.022463942,-0.056096062,-0.0018748622,0.025950214,0.03246814,-0.027472539,-0.076160096,-0.016075194,-0.008837725,-0.026267447,0.04110745,-0.026175017,-0.013123773,-0.019875908,0.07031974,-0.04093793,-0.06727493,-0.012716246,0.0031294413,0.04848446,-0.04858225,0.08130035,0.021660585,0.09143313,0.0018763796,0.055754848,0.016950103,-0.06590498,0.031996135,-0.017297002,-0.0006503341,0.085524835,0.0025314954,-0.094530866,0.027462998,-0.062802665,-0.0026152844,-0.06754049,-0.0076370146,-0.017441371,0.023193762,0.020657603,-0.020219536,0.010861604,-0.025469696,-0.03084758,0.0008083237,0.04747133,-0.013671984,0.027751746,1.7700873e-33,-0.09924662,0.019604908,-0.06471676,0.026716588,0.03444571,-0.07303636,-0.016990911,-0.01582616,-0.064033434,-0.0031887104,-0.08191058,0.10514167,-0.031062061,0.04576388,0.16191585,-0.05463506,-0.09954751,-0.053518087,0.07442436,0.037011847,-0.011199807,-0.0252555,0.018407369,0.097781174,0.069137655,0.038134575,0.057513352,-0.026767002,-0.05657427,0.019477991,0.004481533,0.037653692,-0.00376579,0.0033862193,-0.08583968,0.030875009,0.05626784,-0.011684215,-0.007934103,-0.020610567,0.03600087,-0.041002214,-0.08958552,0.014313998,-0.04041383,0.019749016,0.029116172,0.0063464786,0.07751491,0.03671863,-0.08134556,-0.017058926,-0.027951265,-0.061151396,0.05047466,0.050770406,0.0009147946,0.02017106,0.015434709,0.0003108051,0.0018718701,0.0032334696,-0.020266727,-0.02835727,-0.04096992,0.013810122,0.02820915,-0.072413795,0.107916966,-0.018250387,-0.07284884,-0.035242666,-0.011703954,0.0010129157,0.04392477,0.04841452,-0.11155379,0.03554415,-0.036583014,0.07234651,-0.120218344,-0.0025186345,-0.01127115,0.046118703,0.10254327,0.041854456,0.037867036,0.007308164,0.017726518,0.1142585,-0.06621108,0.09774923,0.03866124,0.0634223,0.0951486,-4.1930457e-33,0.002646653,-0.00860519,0.06504043,0.12815477,0.020856058,0.02141609,-0.0005701696,-0.045399483,-0.00094477,-0.0018676581,-0.008411533,-0.054336455,0.014220615,-0.007201258,-0.013839455,0.017768843,0.0034402688,-0.0370586,-0.04066034,-0.0012689428,-0.08728808,0.06501091,-0.03927937,-0.05302253,-0.04080397,-0.04204269,-0.09344519,0.00936152,-0.016862174,0.023921464,0.02682055,-0.078806035,-0.010219857,0.034123633,-0.06159645,0.043192036,0.04405332,0.051320612,-0.008399859,0.018175183,0.03357237,0.05354871,-0.019345576,-0.019959956,-0.05979561,1.1459234e-05,0.02054194,-0.104011856,-0.003387718,-0.07785051,0.12655888,0.014764383,-0.024875402,-0.07853187,-0.0007019407,-0.025860086,0.065967776,-0.031297658,-0.05567004,-0.01156575,0.08098108,-0.024640204,0.021718169,-0.04771098,0.049804572,0.012050298,0.023968091,0.009041478,0.037539363,-0.0039866944,0.08705595,0.024994772,0.031729996,0.048444472,-0.057679735,-0.08696902,-0.08859109,0.01775372,0.022290342,-0.049734082,0.03757485,-0.017768165,0.002175328,-0.0418988,0.0036229799,0.031655546,0.010246897,0.028337874,0.06379385,0.027087558,0.011877249,0.09158507,-0.036305327,0.015274869,-0.03494776,-3.1144044e-08,0.028263511,-0.025918672,-0.07077751,0.008361376,-0.034205187,-0.070655786,-0.0035336826,0.049253922,0.0021750329,0.040669672,-0.051328328,-0.005410659,-0.0007927822,0.09656235,0.04149418,0.039756015,0.019857554,0.15675668,0.008221184,0.014027078,0.017367406,0.028641999,-0.05741929,0.03665315,0.023127919,-0.037315387,-0.026451463,0.05788593,0.049808916,-0.008051611,-0.0533281,0.032141533,-0.06213945,-0.04166757,0.027417626,-0.010258334,-0.028939165,0.0077946675,0.0011152296,-0.026864061,0.039846085,-0.08013178,-0.1228071,-0.0027488233,-0.019655615,-0.08176834,-0.038064856,-0.022759488,-0.018565308,0.034972172,-0.060395487,-0.034905724,-0.0059702354,0.0011101324,0.08572381,-0.0046014516,0.04070823,-0.03926951,-0.020319909,-0.04412529,-0.0197777,0.03383393,0.10646847,-0.071290515} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.926422+00 2026-01-30 02:01:12.218327+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2168 google ChZDSUhNMG9nS0VJQ0FnSUNhenBhTUVREAE 1 t 2171 Go Karts Mar Menor unknown Un lugar muy divertido para ir con los amigos, familia... un lugar muy divertido para ir con los amigos, familia... 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Un lugar muy divertido para ir con los amigos, familia..."} {-0.026943214,0.04484564,0.007012411,-0.019009948,0.008088167,-0.018623536,0.05509723,0.011367811,0.04354234,0.022637347,0.118560664,-0.07312906,-0.04265363,-0.011699731,0.021829095,0.020597203,-0.10281841,0.0055052703,-0.04923759,0.040361058,0.071229905,0.009145189,-0.06017525,0.108884096,-0.11398792,-0.02115265,0.019723091,0.038471054,-0.033990063,-0.0073694596,0.07110071,0.059726052,0.060942523,0.03521616,-0.008768371,0.009897409,0.05206813,-0.04692071,0.07608651,0.036629416,-0.12933731,0.028307175,0.017689489,-0.0867933,0.039138358,-0.043700486,-0.0014913424,0.06803128,-0.013510766,-0.018641785,-0.045774218,-0.041021932,-0.0048953104,0.017490776,0.010581604,-0.015279181,-0.06440276,-0.08349378,0.061976977,0.020559847,-0.06303022,0.057640877,-0.04769561,0.007098591,-0.095705435,-0.015223924,0.0925407,-0.045790307,-0.04403375,0.06933044,0.05997867,-0.055406917,-0.00063952885,0.0009663515,-0.014609743,0.004681392,-0.0033972757,0.029479781,-0.10615194,0.002582371,0.018859383,-0.03679424,-0.00011637266,-0.12769821,0.0506234,0.009314158,-0.026023138,0.005158136,-0.007709382,0.00096122,-0.029621858,-0.018754538,-0.002344506,0.027509226,0.007716631,0.0072716,0.030894628,-0.15800306,-0.03211433,0.025860203,0.02569918,0.073700294,0.040549383,-0.026058009,-0.02955527,-0.032438837,0.03528905,-0.0034277744,-0.060066972,-0.016612025,-0.011402452,-0.05049094,-0.02595182,-0.012275016,-0.11406728,-0.01806101,0.015620543,-0.05133734,-0.03429789,-0.02239355,0.029141558,0.048973855,-0.06560962,0.0060205916,0.085585736,-0.08010023,-0.015853407,2.7369956e-34,-0.019150043,-0.017562374,-0.06051493,0.07628013,-0.034337346,0.052887354,0.0031074644,0.034303367,-0.00047373536,-0.05577424,-0.010532576,-0.0025459877,0.018500036,0.0037084008,-0.034349244,0.030295797,-0.018808812,-0.05051877,0.05857102,0.11636938,-0.04416201,-0.007717034,-0.008280502,0.020298507,-0.011214507,0.028282225,-0.026851954,-0.06692334,-0.02653835,0.071124904,-0.022961132,-0.017368311,0.02273865,-0.004867061,-0.0023134206,-0.010092948,0.04488925,0.055099215,0.023496995,0.03985532,0.014023639,0.06640431,-0.03973909,0.012058369,0.04338086,0.033488847,0.093962625,-0.010178547,0.06962663,0.038767897,-0.038840126,-0.08115036,-0.025133964,-0.05554531,0.013609646,-0.041753314,-0.06568345,0.083499044,0.004224333,-0.035120323,0.07309927,-0.05041771,-0.023468211,-0.035698794,-0.03219178,-0.048333533,0.044680975,0.033528283,0.08670717,0.07206259,-0.047464557,-0.067976825,-0.026437778,0.031773243,-0.04001419,0.029738214,0.013699199,0.016163588,0.014231765,0.025600273,-0.026893377,0.060448512,0.05915927,0.034811806,0.060047183,0.06368249,0.0050786175,0.1009642,-0.031561404,0.024229232,-0.005251139,0.039247133,0.063262545,-0.09348673,0.07018866,-1.0827242e-33,0.038626622,-0.015927462,-0.03600248,0.069220364,-0.0026953393,0.00045547998,0.007698823,-0.003203091,0.002087845,-0.021722868,-0.11016799,-0.10318298,0.10425355,-0.07742124,-0.007816592,0.09004702,0.055507403,-0.040645707,0.0006951071,0.023560792,-0.04486482,0.00045828303,0.10147296,-0.022661483,0.022263976,-0.0097015165,0.011328031,0.004754714,-0.076954,-0.073104694,-0.01152923,-0.044650555,0.016711837,-0.027968,-0.021881169,0.03395707,-0.025021592,0.08102241,-0.042623654,0.021409951,0.01761192,0.048322465,-0.032166965,0.042397898,-0.043548137,0.08325608,0.0074435156,-0.10038742,-0.016929273,-0.03729821,-0.011337691,-0.050670765,0.022068439,-0.07473041,0.047454394,-0.10206822,-0.014309844,-0.019659508,-0.07088826,-0.004160633,0.066049986,-0.0124733625,-0.098804556,-0.008508998,0.06382447,0.047689233,-0.03716136,-0.00034740943,0.049686726,0.09280617,0.13617228,-0.040134247,-0.042552907,-0.033854496,-0.06615882,0.030284159,-0.12602796,-0.005482062,0.022395695,0.09234411,-0.009089446,-0.026277166,-0.0073019294,0.012048363,-0.054366443,-0.067797765,-0.060737398,0.029158007,-0.028039893,0.0072033824,0.0070554977,-0.008965679,0.029361598,-0.035744637,0.01428899,-2.3019817e-08,0.05773657,-0.09977063,-0.04616486,-0.010543769,-0.0016139258,-0.006472918,0.00025973874,0.015178282,-0.0052248086,0.13015927,-0.07935028,-0.0007707949,0.033538762,0.10754567,-0.03257708,0.0360681,0.08233468,0.07415638,0.016599556,-0.0031239472,0.10302504,-0.02014656,-0.0069255275,-0.008703496,0.004863107,0.050229486,-0.029205523,-0.011810552,-0.054316815,-0.068260424,-0.009689646,-0.081322886,-0.019787023,-0.02909768,-0.08057323,-0.037059847,-0.024088958,0.0072396,-0.0050842836,-0.0014387579,0.1484004,0.07065437,-0.03999937,-0.033730637,0.013530394,-0.07652664,0.07399224,0.09328448,0.018492028,0.069662355,-0.0027604417,-0.027346265,0.025158457,0.062864184,0.003925392,-0.0770088,0.041800205,0.0071567716,0.04437245,-0.046109814,0.081285104,0.16231772,-0.01144267,-0.025209062} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.942367+00 2026-01-30 02:01:12.221201+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2169 google ChdDSUhNMG9nS0VJQ0FnSUNVNlBqVW9RRRAB 1 t 2172 Go Karts Mar Menor unknown Riktigt bra till bra pris! Känndes seriöst och samtidigt roligt! riktigt bra till bra pris! känndes seriöst och samtidigt roligt! 5 2020-02-01 01:52:39.833374+00 sv v5.1 V1.01 {O1.05} V+ I2 CR-N {} {"V1.01": "Riktigt bra till bra pris! Känndes seriöst och samtidigt roligt!"} {-0.024845883,0.06450411,-0.053960185,-0.02357479,0.031455897,0.027204035,0.016171472,0.09283083,0.042239767,-0.04270175,0.046888396,0.048048362,-0.040363695,0.0030664182,-0.022474416,-0.10283136,-0.12143681,0.10435781,0.007791899,0.082361825,0.041334957,-0.058844775,-0.018884223,0.0044870856,0.11064937,0.04206758,0.06883319,-0.079527825,0.028724834,-0.040584076,0.05923032,-0.024117835,-0.008247415,-0.032059427,-0.043394554,-0.010774918,0.011322462,-0.055923052,0.02474623,0.054438863,-0.120329715,-0.07532193,-0.057998814,-0.03402061,0.08743403,0.010782624,-0.014657654,0.0022010817,-0.05167655,0.01132859,-0.061457787,-0.045465138,0.04202847,-0.0017827039,-0.0019820374,-0.04863067,0.03525381,-0.03004526,-0.03985804,-0.03759276,-0.004659831,0.030697294,-0.021203412,-0.029282449,-0.085375935,-0.0053342134,-0.0017353323,0.057570413,-0.034980576,0.012986767,0.0317241,0.010675104,-0.049949616,0.110132575,-0.0026766316,-0.059924603,0.01639299,-0.00831349,0.025905548,-0.024537977,0.03428578,0.05270303,-0.064294904,0.019206386,0.0041578044,0.0053058555,-0.008752282,0.018375732,0.08467147,-0.036241412,-0.00786417,0.08810132,-0.078947514,-0.008547544,-0.07337906,0.012809263,-0.040962577,-0.0054971385,-0.0050224923,0.00762815,0.025981816,0.09677413,-0.01474365,0.021983631,-0.045464803,-0.026281856,-0.014812567,-0.05079471,-0.015336352,-0.003782739,0.049673453,-0.069212586,-0.009273619,-0.038429875,0.0020174566,-0.0210793,-0.047330335,-0.02879805,-0.008040845,-0.021371257,-0.03474734,0.08357978,-0.027608752,0.026390629,0.10568873,0.023528436,0.018621689,6.1219004e-33,-0.054094564,-0.026655307,-0.042696018,0.06472772,-0.06843228,-0.031419367,-0.038702022,-0.14698163,-0.022176407,0.00786127,-0.014885307,-0.05866106,-0.07183502,-0.09849472,0.0766253,0.05958031,0.033711467,-0.03360497,-0.0023254848,0.041312635,-0.038727887,0.07966058,0.003930602,0.027865294,0.0006919386,-0.066738434,0.039966065,-0.056947418,0.010161429,0.026628325,0.09958925,0.05628355,-0.018970277,-0.019555936,0.0052193147,-0.037539218,0.0069615473,-0.038370494,-0.025367873,-0.034309216,0.07480389,-0.024586983,0.052404292,0.002142489,0.03343595,0.014965595,0.04038807,0.05887411,0.05599323,-0.008776575,-0.07034732,0.0147861885,-0.028404452,0.07238109,0.016732132,0.02378195,-0.0771617,0.033695456,0.015989698,0.014867281,-0.10359937,-0.0585258,0.085676625,-0.0377427,0.04897474,-0.048507083,-0.036287695,-0.0022603893,0.0745834,-0.0048957476,0.024306206,-0.061314583,-0.046956424,0.007860476,-0.059446674,0.022832744,0.0034884457,0.056427725,-0.043553673,0.009610728,-0.11961728,0.07724023,0.0022612258,-0.019782808,0.13323568,-0.026593143,-0.014363224,-0.08854229,-0.032244187,0.050596207,-0.024938203,0.04365215,-0.007815757,-0.0143397525,0.030452842,-6.1131573e-33,0.09589984,-0.056405377,-0.060237605,0.020683903,-0.04129068,0.00078712456,-0.10941992,0.02089174,-0.07918893,0.043611187,-0.018506402,-0.04408032,0.00042394656,-0.0065559866,-0.07282862,0.016387947,0.16938348,0.0392675,0.026889313,-0.011253975,-0.029709097,0.015313961,-0.022758435,0.07049965,0.049438827,-0.0014228635,0.06751573,0.06275041,-0.10076526,-0.094956696,0.050260592,-0.0025319064,-0.029635202,0.016458204,-0.0019165422,-0.029717918,0.1299312,0.051922645,-0.050272066,0.039478023,-0.046328377,-0.0029967062,-0.05749242,-0.06718498,-0.028438525,-0.05819308,0.046251494,-0.0072845346,-0.022899339,-0.082896695,0.054364026,-0.07114739,0.056746233,-0.011640464,0.052916806,-0.034613103,-0.03508964,-0.008795915,0.04503864,-0.011125484,0.096951686,0.07102636,-0.008358092,0.015570819,0.037837062,-0.06278086,0.0023214386,-0.10327077,0.11762608,-0.055697203,0.043409318,0.034970105,0.021613186,0.07092488,-0.06792059,-0.028146597,0.05266572,0.02382671,0.0059521007,-0.025174454,-0.053682953,-0.053543795,-0.00489519,0.016069653,-0.025454238,-0.061571892,0.047108337,0.011046869,-0.0066846847,-0.00081307016,-0.023544202,0.073237896,0.0019643723,0.01435712,0.063185066,-2.6152858e-08,-0.010551297,0.02093476,-0.07204147,0.038464643,0.056681417,-0.074375734,-0.0459868,-0.060483295,-0.11847558,0.0009448477,-0.11486482,0.029695472,0.014195393,0.042339638,0.07434907,0.019306393,0.05942484,0.07244606,-0.035222,-0.044105932,0.1202109,-0.03855953,-0.046350796,0.060223892,-0.022144308,0.011280841,0.032044787,-0.012470179,0.12270989,-0.063274264,0.07629722,0.027116613,0.08062907,-0.03416694,-0.008699767,0.005798926,0.027784085,0.023127982,0.02034278,0.050136622,0.0024520154,-0.014950385,0.0806245,0.0002898017,-0.09992059,-0.05250169,0.03391702,0.05639879,-0.009667292,-0.025968852,-0.028815653,-0.0014340203,0.0048196902,0.07042876,0.034958716,0.054439764,0.071568444,-0.0017520832,-0.0349664,0.057328276,0.06322772,0.015144974,-0.0049880985,0.013398031} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.953931+00 2026-01-30 02:01:12.224482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2148 google ChdDSUhNMG9nS0VJQ0FnSUNtNGEyajdBRRAB 1 t 2151 Go Karts Mar Menor unknown Grand circuit. Accueil sympathique et tarif interessant grand circuit. accueil sympathique et tarif interessant 5 2022-01-31 01:52:39.833374+00 fr v5.1 P1.01 {E1.03,V1.01} V+ I2 CR-N {} {"P1.01": "Grand circuit. Accueil sympathique et tarif interessant"} {-0.077973135,0.069313034,0.05301854,-0.046154406,-0.058409404,0.00022285143,0.09858788,0.15568492,-0.023654742,0.009018943,0.048530478,-0.04698128,0.042752974,-0.054982524,-0.07857567,-0.032565538,-0.042927846,0.006743633,0.034617968,-0.006886516,-0.024029793,-0.024906114,-0.040951163,0.016148299,-0.06005926,0.0351476,-0.0042434963,0.029283326,0.06246214,-0.032762777,-0.034564745,0.064473055,0.019368459,-0.0054375473,-0.009043008,0.05723659,0.005397488,0.023847729,0.027976979,-0.015728168,-0.00970851,-0.07583716,-0.015052269,-0.070412405,0.010956899,0.035193708,0.047694612,-0.009930461,-0.07874743,-0.030570138,0.0075342166,0.015432829,0.053592034,0.04516895,0.018556211,-0.011286105,0.03617118,-0.075371765,-0.034878675,-0.002433189,-0.0052910284,0.0076934127,-0.051790286,0.010562418,0.0014474173,0.0024474459,0.02577269,-0.030107167,-0.051857892,-0.036602475,0.0510887,-0.14138046,-0.053092796,-0.045373194,0.011616232,0.07421243,-0.029050268,0.017385565,0.04857044,-0.1250689,0.048909,0.042682488,-0.017458284,-0.041786343,-0.006991449,-0.057412397,0.04686706,-0.043024637,0.062864654,-0.05239942,0.036355622,-0.014281951,0.024639348,-0.043974802,0.022468185,-0.03413121,-0.0029901706,-0.0730798,0.021717584,0.05931334,0.059205364,0.009228546,-0.04344539,0.0010420323,-0.097481206,0.051319305,0.005793472,0.0077902735,-0.01780853,-0.10121275,-0.07095147,0.02988148,-0.02647734,-0.049274307,0.0058027203,0.031017378,-0.013679204,0.0056709754,0.0005496808,-0.04257375,0.034155775,0.044766646,-0.077199325,0.037434418,0.0379797,-0.0479095,0.07362057,1.1645059e-33,-0.102027625,0.013577766,-0.020021617,-0.023745645,0.010723329,0.07198969,-0.041385047,-0.011848147,0.04305427,0.06869354,-0.050816454,0.106005676,0.022861576,-0.03595103,0.020242572,0.009686508,-0.053413954,-0.02815148,0.0904315,-0.0334909,0.022548031,-0.0153380595,0.053807225,0.08489173,0.057611506,0.035439074,-0.015065429,-0.0250687,-0.039436642,0.022790594,0.084308244,0.012498601,0.025097053,0.029541066,-0.056734107,0.053821657,0.030206293,-0.031201666,0.016153635,-0.032359414,-0.06962937,0.030484445,0.029628959,-0.0036322766,0.018594414,0.02301169,0.06560943,-0.0003381305,0.060342338,0.1029899,-0.09238135,-0.06159286,-0.045938395,-0.011214259,-0.032079253,0.08123203,-0.07871197,0.037830237,0.045407813,0.0074858367,-0.010451312,0.05267497,-0.12173489,0.014741224,-0.054450274,0.017373635,0.022575472,-0.082015745,-0.0015065178,-0.03764022,-0.08229982,0.012904428,-0.024603412,0.030092163,-0.07261779,0.007119191,-0.048536394,0.017823793,0.0017989092,-0.04146837,-0.20503005,-0.0040692454,-0.017587526,-0.016910039,0.09034912,0.024552459,0.0049020546,0.032281563,0.012255121,0.06954246,-0.05188488,0.037331957,0.035866942,0.11174411,0.035936315,-3.6256066e-33,-0.0064876205,-0.039483327,0.01536447,0.053106934,0.06187225,0.036379762,-0.057312425,-0.08649557,-0.09361989,-0.003510628,-0.030779827,0.028252283,0.025417479,0.013330295,-0.031463943,-0.0012351414,0.025166212,-0.030292371,-0.059199836,0.040006258,0.025860388,0.1223463,-0.0015941621,-0.052177668,-0.05666092,0.011990551,0.009926149,-0.025720732,-0.019024415,0.027321978,-0.0075729606,0.026679024,-0.07439925,0.0564249,0.0009876118,-0.0056296485,0.16499557,0.023254072,-0.08951101,-0.005717034,-0.0451443,0.078378916,0.018922618,0.05117103,-0.0045598755,0.03280443,-0.028135546,-0.073133,-0.033398237,-0.014697058,-0.024782348,-0.022339892,0.04625811,-0.010264583,-0.023093568,0.041420214,0.052135676,-0.054568563,-0.08130277,-0.053374756,0.12946284,-0.021293039,-0.026035497,-0.05154657,0.07782057,0.027049232,0.020548407,0.019044392,0.13893145,0.014874047,0.07202331,-0.028323919,-0.040355727,-0.08559205,-0.026559487,0.038147178,-0.053705726,-0.0103836525,0.005140615,-0.067681015,0.017644426,-0.017816849,0.008943431,-0.013992094,-0.106904015,-0.056871396,0.07956544,0.045788027,0.06650593,-0.012349112,-0.13039264,0.016679913,-0.03297053,0.0017859738,0.00049664435,-2.7096707e-08,-0.013217096,0.020516101,-0.0316368,-0.0027058816,0.04080481,-0.11997782,-0.07262888,0.022965873,-0.104478195,0.07374606,0.035728246,0.027640138,-0.015590362,0.0031269286,0.039422993,0.025832778,-0.024899969,0.08517427,-0.06750187,-0.0046649314,0.04525231,0.016944919,-0.054360945,-0.016211938,0.056593493,-0.005642276,0.05675758,-0.032115262,-0.05902553,-0.024933612,-0.011859195,0.10067993,0.0034912364,-0.07830987,0.041541744,0.04932134,0.047610037,0.01543783,0.06919395,-0.08693825,-0.020706577,0.053080346,0.034334175,-0.026470207,0.016536588,-0.06965723,-0.06512207,-0.036788125,0.042925473,0.046700146,-0.05333075,-0.024795927,0.033055678,0.1102367,0.044665437,-0.04813588,0.013367584,0.021159833,-0.06370307,-0.023164593,0.037023827,0.05222782,-0.0052109086,-0.092079215} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.95843+00 2026-01-30 02:01:12.143631+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2149 google ChdDSUhNMG9nS0VJQ0FnSUQyMWVybDJBRRAB 1 t 2152 Go Karts Mar Menor unknown Muy bien organizado, vistas al mar y el personal muy amable. muy bien organizado, vistas al mar y el personal muy amable. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {J2.01,E1.04} V+ I2 CR-N {} {"P1.01": "Muy bien organizado, vistas al mar y el personal muy amable."} {0.021686636,0.02887946,0.056170426,-0.0018577933,-0.019563215,-0.02086539,0.06461734,0.024371104,0.022416085,0.010165374,0.025439195,-0.0060513616,0.025095666,-0.058492444,0.018204011,0.03553207,-0.043163314,0.02076318,-0.08172013,0.10370573,0.042324323,-0.013712097,-0.066950075,0.091775954,-0.072335266,-0.008912047,-0.018991407,-0.01625721,-0.003679857,-0.060263243,0.032036666,0.12723014,0.15226509,0.010354057,0.019176053,-0.024830492,0.040622544,-0.07600931,0.022668445,0.024632366,-0.081519485,-0.040678963,5.9790393e-05,-0.010757539,-0.041699655,-0.056258217,0.05540587,0.026818618,0.01389902,-0.017212076,-0.15585,-0.020876152,-0.0069519808,0.025126787,0.022924691,0.06475508,-0.058535308,-0.066915676,0.0013332963,0.0011731647,0.012457832,0.030280828,-0.056181125,0.018359194,-0.013515567,-0.0004293113,0.060702052,0.0028315375,-0.036855552,-0.007373456,0.11290267,-0.044919774,0.008954358,0.025223345,0.0012670766,0.053626485,-0.002138361,-0.06913689,-0.020582514,-0.06094416,-0.046740126,0.026537502,-0.0006653669,-0.043294273,0.009450211,0.016110305,-0.06553836,0.030431336,-0.038660187,0.0068787527,-0.051839393,0.023767406,-0.026339162,-0.045901775,0.025501397,0.057275943,0.049196437,-0.10417957,-0.050027918,0.059604723,0.05729128,0.052597076,0.11036895,0.06355433,-0.05034398,0.027018195,0.017389383,-0.012754079,-0.04407137,0.020633204,-0.061172023,-0.07093294,-0.046871267,-0.044256374,0.003159515,0.04479439,-0.013036097,-0.010335778,0.02853358,-0.06794561,0.010961637,0.02567937,-0.028206164,-0.05365845,-0.019013086,-0.05487122,0.057014503,1.1715363e-33,-0.06933568,-0.0029879287,-0.05279988,0.10079045,-0.03349649,0.009490829,-0.039847884,0.026203454,-0.063908584,-0.061997514,0.0040185107,0.06388345,0.0641942,0.032405224,0.059549566,0.02665954,0.0029749095,-0.040042408,0.06121313,0.0167715,-0.05901603,-0.05639895,-0.04522092,0.010905346,0.050400544,-0.0020670935,0.028659536,-0.071656786,-0.048214167,0.05689543,-0.019543674,0.0387254,-0.014554986,-0.059720792,-0.0004707199,0.035778847,0.0032661061,0.057643406,0.024528855,-0.005036681,0.011105484,0.04860918,-0.015605756,-0.02160978,-0.003671254,0.13001937,0.03587933,0.06442478,0.054528132,-0.036308434,-0.0011372342,-0.037732903,-0.10099783,-0.033845887,-0.022230905,0.023078892,-0.07622863,0.04878436,-0.072989024,-0.07471011,0.07713485,-0.034678407,0.06214351,-0.0066914805,-0.0487172,-0.01634594,-0.024033308,0.041829664,0.1401613,0.051061407,-0.11360104,-0.063455395,0.02433798,-0.0023706912,-0.031083114,0.05169412,0.010306826,-0.03888432,0.03363422,0.0652207,-0.03911091,0.051582817,0.06552348,0.0100874435,0.036807474,0.073577054,0.055313177,0.054457508,-0.06277395,0.09066362,-0.018510189,0.06253595,0.0904465,-0.036988534,-0.030489681,-2.3081586e-33,0.020889733,-0.07762933,-0.033343513,0.055112377,0.024369786,0.011256692,-0.03740747,0.035645276,-0.057727344,-0.068213776,-0.07698409,-0.11686818,0.13914056,-0.06412999,-0.018960554,0.07232711,-0.025237989,-0.10684025,-0.030937294,-0.006920668,-0.012078557,0.04272769,0.017421843,-0.03214746,-0.036436263,-0.050313447,-0.07965133,0.04156771,0.05951557,0.009469096,0.015621168,0.0153808445,-0.07863744,0.022963475,0.010311211,0.081816755,-0.0023093412,0.00022575779,0.033004094,0.047747973,-0.021621566,0.06667651,-0.05457369,0.027702041,0.017298294,0.05174387,0.018012764,-0.16974664,-0.010907907,-0.074027956,0.023639785,-0.024681121,-0.05195661,-0.02236618,0.027806507,0.004729685,0.0135472845,-0.0744318,-0.06277435,-0.031133957,-0.006950584,0.039517652,-0.04471407,0.00043512072,0.036817733,-0.0061533637,-0.030575134,0.033597734,-0.047500275,0.005650574,0.12908866,-0.070367746,-0.07497939,0.05893822,-0.055274386,-0.015589391,-0.015423359,-0.032951165,-0.007252142,0.012162799,0.008311629,-0.0066145523,-0.023528032,-0.031335082,0.018614903,-0.0056781955,-0.012641446,0.015433637,-0.022727937,0.027642898,0.030742846,-0.004413137,-0.11594932,-0.06550451,-0.01924891,-2.3330916e-08,-0.002797364,-0.04853819,-0.037906155,0.042752136,0.00956368,-0.058569096,-0.037019726,0.087563366,0.046140976,0.06715983,-0.047078993,-0.06769511,-0.043067098,0.09898141,0.0061478596,0.05554699,0.016313512,0.054212507,0.002061602,-0.058021512,0.09086685,-0.026143296,-0.027002478,-0.007177619,-0.05180667,0.04081224,-0.07506911,-0.05681142,-0.053427152,0.02962798,-0.0066139814,0.03543389,-0.0038587498,-0.07290797,-0.02034254,-0.0051878784,-0.005416435,-0.057284728,-0.0068421573,-0.008702482,0.14996736,0.022875654,-0.05137676,0.0045627803,0.05786811,-0.09124613,0.053449254,0.024369977,0.042397354,0.035211068,0.009794003,-0.019387307,0.10173573,0.04929429,0.020879831,-0.0023301041,0.04716628,0.04067032,-0.0077262763,-0.014162022,0.08600596,0.106128804,0.009890356,-0.121636115} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.967877+00 2026-01-30 02:01:12.14725+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2178 google ChZDSUhNMG9nS0VJQ0FnSUNBNVlUQVNREAE 1 t 2181 Go Karts Mar Menor unknown Sehr schnelle Karts. Da lohnt sich der Besuch. Sehr zu empfehlen sind die 300ccm. Sehr schnell..... sehr schnelle karts. da lohnt sich der besuch. sehr zu empfehlen sind die 300ccm. sehr schnell..... 5 2018-02-01 01:52:39.833374+00 de v5.1 O1.02 {V4.01} V+ I3 CR-N {} {"O1.02": "Sehr schnelle Karts. Da lohnt sich der Besuch. Sehr zu empfehlen sind die 300ccm. Sehr schnell....."} {-0.062197622,0.051837463,-0.03114079,-0.011747435,-0.09256028,0.066208065,-0.032722127,0.035950582,0.014733417,0.018613327,0.06630656,-0.08706278,0.005576457,-0.076048546,-0.03158848,-0.049932823,-0.025988612,0.07322564,-0.034727257,-0.044759948,-0.04602599,0.02436,0.029374253,0.06779781,0.020206464,0.0057376446,-0.044026557,0.028044213,0.045408934,0.014782034,-0.002715489,0.02665873,0.020294674,-0.017517993,0.023721823,-0.011775975,-0.015445887,-0.057487566,-0.05546207,0.051747188,-0.059045423,0.05533368,-0.089844204,-0.06809124,-0.028062101,-0.029138936,-0.03406278,0.04541175,-0.08741168,0.04893012,-0.069591396,-0.06933298,-0.0021950426,-0.07316362,0.014651634,-0.11190942,0.0021138848,0.054488186,0.028595291,0.06760882,0.051343158,0.0020929065,-0.084728345,0.06869946,-0.046000574,-0.048548456,0.035600573,-0.04752748,-0.10965244,0.11226726,0.0716081,-0.115807645,-0.018183809,0.0916619,-0.027568007,-0.09546953,-0.0069240467,-0.047649574,-0.0041792654,-0.0633832,-0.01625056,-0.013850553,0.032268405,-0.07031855,0.0044306205,0.021182973,-0.034820408,0.14126508,-0.038382903,-0.017173644,-0.044031918,-0.014125296,-0.144859,0.0058002453,-0.082243584,0.07546547,-0.032790266,-0.013182719,0.04624653,-0.026162906,0.035788722,0.08262322,0.026117118,0.032497372,-0.06752165,-0.023613632,0.0042363103,0.07646728,-0.018393328,0.051673364,0.0018305394,-0.047815237,-0.0406306,-0.049268626,-0.0032606183,0.0054870322,0.030704321,-0.06214815,0.0324508,0.054905765,0.0510454,-0.008741822,-0.01134898,-0.030650113,0.05302906,-0.04117017,0.08442795,3.862829e-33,-0.005642718,-0.01225479,-0.0008473421,0.029039163,-0.0037175026,-0.058942772,-0.033832215,0.021491813,-0.059411027,0.057997223,-0.026764788,-0.059765212,0.020208852,-0.04248881,0.016420797,-0.026233684,-0.0052349586,-0.05211516,0.0206083,-0.067434564,-0.0061223,-0.05504625,0.037206363,0.07828593,0.04248468,-0.04738904,0.07057976,-0.020791214,0.02247729,0.029794259,0.110177316,-0.020767132,-0.060246184,-0.07334657,-0.079130255,0.051488258,-0.047158446,0.030713983,-0.000730627,0.022329783,0.027538193,0.00041482347,-0.0003156313,-0.003793192,-0.055882968,0.08889925,0.014485813,-0.036246248,0.07117846,-0.0100793885,-0.012432974,0.021236284,0.055921383,0.03559762,0.032712344,0.046304904,0.034105875,0.024734315,-0.031523418,0.045495357,-0.0011122948,-0.0071066814,0.031878754,0.0116218375,0.036770444,-0.037178453,-0.06104655,0.0016751469,-0.026520533,0.06983741,-0.09266676,-0.058453143,0.038222272,-0.07118704,0.001677671,0.017701218,0.037703093,0.114827275,-0.056903627,-0.0030829296,-0.053556893,0.02288191,-0.0005843025,-0.044707887,0.06842628,-0.04782461,0.012219817,-0.02676074,0.007988423,0.102515474,0.016371584,-0.016654523,0.03967291,0.019583676,-0.034485247,-4.312691e-33,0.0046033347,0.13418338,-0.006176094,0.04409414,-0.04809752,0.04340099,-0.019695848,0.0999291,-0.08079676,0.013020535,-0.008946547,-0.04553418,0.09458686,-0.021437619,-0.07035912,0.03777079,0.10509707,-0.005378717,-0.013589417,-0.08131215,-0.07990055,0.09045102,0.017665697,0.06567663,0.0063166874,0.023513852,-0.011762356,0.017054228,-0.05460417,0.02028366,0.047184817,-0.08445094,-0.038126312,0.033196718,-0.015817987,9.040266e-05,0.089798465,0.09624346,-0.030581288,0.035315737,0.058899626,0.06051916,-0.088958904,0.06604664,0.07364316,-0.064539164,-0.041527983,-0.079984896,-0.099905424,-0.052532136,0.04886317,-0.029131653,0.05622605,-0.04024726,0.07940327,-0.015289307,0.015039455,-0.075277,-0.053976253,-0.0485108,0.03371351,0.15873326,0.043765564,0.003348831,0.0062273606,-0.07252191,-0.07658752,0.005844209,0.06552151,0.016333446,-0.0345863,-0.02571287,-0.023917552,-0.0054833777,-0.08319615,-0.07059487,-0.03275052,0.0998187,-0.0142611535,0.042931307,0.046260357,0.014573402,0.0037293003,0.067796476,0.024858305,-0.024396284,-0.029789912,0.0033306305,0.09052528,0.015293532,-0.029900944,0.04706791,0.0667998,0.07912371,0.047847822,-3.3566675e-08,0.023955675,-0.009008844,-0.049203455,0.027789935,0.051896542,-0.08138308,0.030928297,0.008425865,-0.028896973,0.059080962,-0.023761498,-0.0063178833,0.04610999,0.07814135,-0.033529613,0.047673024,-0.047974706,0.02101899,0.028931072,0.020756284,0.077946365,-0.040695064,0.0024267056,0.0674991,0.03703744,0.0314031,-0.08183337,-0.029909268,-0.013922346,-0.024447616,-0.07725281,0.035147075,-0.01327279,0.026319697,0.020397304,-0.03961999,0.030320534,0.05745914,-0.09760604,0.08393461,0.045962058,-0.044955462,0.019945249,-0.020585964,-0.029432356,-0.049319528,-0.0492287,0.041609313,0.07677893,0.013950077,-0.1238344,0.026177155,0.03003705,0.019022945,-0.028857378,0.004578382,-0.02401057,-0.014049487,-0.03296703,-0.048376035,0.023999117,-0.00061832595,-0.004965578,-0.0055423183} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:03.047835+00 2026-01-30 02:01:12.256637+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2179 google ChZDSUhNMG9nS0VJQ0FnSURhNy1YWkR3EAE 1 t 2182 Go Karts Mar Menor unknown La simpatía de los instructores, y el buen asesoramiento a los participantes. Repetiremos la simpatía de los instructores, y el buen asesoramiento a los participantes. repetiremos 4 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {P2.04} V+ I2 CR-N {} {"P1.01": "La simpatía de los instructores, y el buen asesoramiento a los participantes. Repetiremos"} {0.025061889,-0.008057948,-0.06613757,-0.04473729,-0.1254734,0.03839857,-0.012699737,-0.028599199,0.016717028,0.032903634,0.09499585,0.06686623,0.025425721,0.0085583385,0.0037047116,-0.022730509,-0.007090762,0.06324776,-0.025989909,-0.005778857,0.019295821,0.004503595,0.015357844,0.13330837,-0.102832116,-0.05372445,-0.017442062,-0.056617334,0.025554437,-0.060147576,-0.060535867,0.02754178,0.057509907,0.002133224,-0.080506645,0.02363165,0.026965238,-0.020708684,-0.06308645,0.063020915,-0.11959539,-0.010611091,-0.026490293,-0.05321489,0.027672926,-0.04524659,-0.0014229832,-0.048762083,0.004326789,0.0051626745,-0.058501795,-0.09424458,0.014359323,-0.054818578,0.0052299467,-0.02571206,-0.026925275,-0.03020827,0.0010122545,0.047193762,0.0078124073,0.042755548,-0.0824297,0.041437995,-0.0719139,-0.04987253,-0.0068026716,0.04666208,0.060043283,0.0125349155,0.031560756,-0.054932076,0.020036284,0.041195378,0.009174231,0.004368296,-0.050754674,0.0057231714,0.016742207,-0.03875713,0.020734223,-0.056169994,0.03261447,-0.033407077,0.005337461,-0.036653448,-0.03917575,0.08416426,0.0036275112,-0.011235513,0.024922494,0.06619496,-0.06303066,-0.052675612,-0.031314634,0.022754628,-0.017208861,0.0027837981,0.11205616,0.043328635,0.0030091987,0.042555425,0.03971324,0.008324022,-0.13631585,0.0033786932,-0.003073371,-0.07492825,0.056813,0.004982343,-0.06448676,0.019454723,-0.044592578,-0.0073197377,-0.037248556,0.07664823,0.026094453,-0.019319382,-0.08647015,-0.024897926,0.04397144,0.016714852,0.024075298,-0.05986678,0.031621777,-0.06549467,-0.03467961,-8.174788e-35,0.029440966,-0.009631633,-0.024184972,0.12033352,0.031173483,-0.034379624,-0.018082842,-0.0014598578,0.07386853,-0.052523285,0.05703268,0.049769934,0.06479466,0.0652929,0.058960207,-0.026039138,-0.08474419,0.019033313,-0.032237116,0.03528159,0.004615212,-0.021076262,0.017578326,0.04391031,-0.04731935,0.073827535,0.060917385,0.0063480865,0.047259286,0.03448906,0.050721467,-0.018190218,-0.061264098,-0.04263054,0.058745958,0.03393178,0.10788036,0.052913796,-0.007257191,-0.0063454183,0.0016621328,-0.0014063334,0.0072179325,-0.00488684,0.013986128,0.0024829633,0.085390985,-0.009289959,0.05235412,0.031665966,-0.099479325,-0.04804936,0.019384163,-0.09638318,0.07205812,0.058468357,-0.006837929,0.08816633,-0.11961074,-0.03146349,0.011020983,0.08455931,-0.07696359,0.08033678,-0.03583788,0.0070577995,-0.07025248,-0.053762197,0.14260574,-0.057610597,-0.11570648,-0.0132571235,-0.04707105,0.01242731,0.0026566926,-0.051731277,-0.06432876,0.0017298308,0.03125424,0.014131798,-0.023700248,-0.07591281,0.025052413,-0.005741556,0.016635356,-0.026480576,0.00975798,-0.019020965,0.05369533,0.09497415,-0.013165064,0.00023888567,-0.0058667627,0.069869876,0.07923848,-5.1226743e-33,-0.021976817,0.065693095,-0.07242148,0.07124342,0.087224804,0.066113725,-0.0040706145,0.023363398,-0.049797885,-0.09183519,-0.0966419,-0.053516563,0.0024981035,0.022070939,-0.013309251,-0.02255859,-0.06406389,-0.020817881,-0.10607979,-0.010024562,0.02321803,0.012418895,0.08920975,-0.09156227,0.030892491,-0.014569842,0.032851703,0.018946242,-0.0066985926,0.004101113,0.06122407,-0.068870716,0.0029821263,-0.027831241,-0.06222223,0.10099788,0.058641773,0.08346909,-0.03207343,0.040699434,0.028175442,-0.02083008,-0.0051860465,-0.044442423,0.007096551,-0.04528225,-0.0036047287,-0.103175916,0.025798561,-0.084940806,-0.02385362,-0.08793204,-0.026875466,-0.14167777,0.11313328,-0.04624373,0.030056538,-0.14749968,-0.012544149,0.026139444,0.017430747,-0.0044335825,-0.021263987,0.06538969,0.06842184,0.0116895195,-0.06698726,0.091083765,-0.016338967,0.064127944,0.030357482,0.016023831,-0.026418598,-0.021958843,-0.03280187,-0.012748858,-0.089406505,0.025869418,-0.04717629,0.0028365708,-0.019610416,-0.062167503,-0.027609676,-0.001313648,0.021237142,0.018114092,0.024068153,0.03612516,-0.027208585,-0.00920814,0.029300414,0.037264325,0.034428257,-0.052224495,-0.0050314707,-3.2614864e-08,-0.05221981,0.018145608,-0.026412763,-0.0019367943,0.023725733,0.016171088,-0.07485173,-0.0045354455,-0.06406754,0.06588975,0.045391165,-0.0236602,0.04596258,-0.0023136623,0.057270717,0.022072908,0.03525089,0.069760114,-0.057945803,-0.023387237,0.06263277,-0.0719541,0.008370196,-0.022092864,-0.049747568,-0.03700516,-0.009768053,0.12068651,-0.035395958,-0.005826056,-0.069932,0.04160973,-0.03543937,-0.09150085,0.021784356,-0.027590336,-0.0445955,-0.016836401,0.028371418,0.019864,-0.0705558,-0.049821574,0.010138826,0.058748163,0.104818694,0.015914714,-0.07297846,0.024080224,-0.009497598,0.02596121,-0.042756394,-0.050531168,-0.028127344,-0.016855126,0.008723005,0.107681155,0.028246438,0.0102207335,-0.100726016,-0.039907973,-0.008872256,0.10103473,-0.020332567,-0.004017759} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:03.056955+00 2026-01-30 02:01:12.259433+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2180 google ChdDSUhNMG9nS0VJQ0FnSURwMk5YZDZnRRAB 1 t 2183 Go Karts Mar Menor unknown Un rato divertido para los que les guste estas cosas claro. un rato divertido para los que les guste estas cosas claro. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Un rato divertido para los que les guste estas cosas claro."} {0.013068,-0.029508976,0.048795097,-0.055556316,-0.039669037,0.0030420264,0.15807082,-0.029115064,0.034012817,0.02532347,0.016310204,0.0028681052,-0.070261806,0.0051705227,0.036607016,-0.036461737,-0.0018676654,0.020860175,0.009348468,0.05788635,0.07921926,-0.014178699,-0.08819084,0.13105392,-0.14574069,-0.054191463,0.009520709,0.001981706,0.00038364236,-0.04641967,0.046857417,0.09511008,-0.017871685,-0.057774756,-0.0070468467,-0.034779523,-0.012011879,-0.04031664,0.019888766,0.07665273,-0.100202575,0.021904424,-0.00056901807,-0.027766861,-0.04777678,-0.023754206,0.0021406843,0.014319245,0.05975174,-0.0033217908,-0.038905907,0.0032863847,-0.04411557,-0.04367243,-0.043528017,0.02889045,-0.07027772,-0.08179692,0.08053743,0.014797743,-0.044982694,-0.004187372,-0.048616167,0.051691376,0.014017989,-0.024307285,0.0265307,0.0075541185,-0.023056872,0.054359216,0.15920772,-0.08515258,0.0606293,-0.020167815,0.02866061,0.013992983,-0.013218798,0.010312199,-0.09313688,-0.04974829,-0.0014533168,0.012349621,-0.029136095,-0.036948193,0.040500283,-0.006613213,-0.03736072,0.08043518,0.012516645,0.02042936,-0.061705716,-0.023037871,-0.037434794,-0.009895323,0.027102076,0.047747638,0.07554917,-0.10398175,-0.0034307677,0.07119295,0.04526984,0.087526426,-0.008289726,0.03116685,0.017269349,-0.025541114,0.043239854,-0.016933853,0.05057133,-0.014498337,-0.05727381,0.024842398,-0.011455631,-0.030214604,-0.10144156,-0.029090833,0.09447966,-0.08652528,-0.0037564822,-0.024076337,0.038013343,0.011122516,-0.07002718,-0.030202258,-0.0013550202,-0.028880874,0.0032564304,9.842795e-34,-0.0071510444,-0.061721247,-0.029118825,0.028236074,-0.00800085,0.028090814,-0.016958693,-0.05850979,-0.012814559,0.017835258,-0.057074003,0.0016963338,-0.026245244,0.089516275,-0.012110978,-0.006189932,-0.00036320178,0.027470257,0.11379521,-0.002782275,-0.10862687,-0.01741486,-0.038449958,0.09406505,-0.0049100257,0.059410807,-0.07370845,-0.028601624,-0.049854536,0.094106145,-0.03139555,0.06646415,-0.012878829,-0.022080244,-0.02020086,-0.03781907,0.046540163,0.044418085,0.08273654,-0.0047436273,0.114576675,-0.015844638,-0.08082271,0.016029306,0.010690158,-0.064079314,-0.022443965,0.005626237,0.053652015,0.027843276,-0.03612947,-0.021997461,0.026806042,-0.049921967,-0.05634394,-0.028703453,-0.020694464,0.024949312,-0.023558022,-0.022721764,0.00092911243,0.047004882,-0.06180421,-0.05560376,-0.016335744,0.019646194,0.025082214,-0.005623281,0.08562289,0.0045195497,-0.09854573,-0.022492215,-0.032505967,0.007241489,-0.008612905,0.027538337,-0.044406172,0.024047753,0.058606874,0.0024793718,-0.009265321,0.034784675,0.06831113,0.061206866,0.09205467,0.10440246,0.06947675,0.028021052,-0.04737767,0.057432283,-0.015246107,0.07211843,0.072390325,-0.06771024,0.06787442,-3.953218e-33,-0.059904166,0.035569184,-0.014303877,0.045642156,-0.035478495,0.013058207,-0.08621968,-0.061304934,-0.028511621,-0.06354067,-0.06692216,-0.09325972,0.05945551,-0.040581763,-0.017035242,0.054097533,0.044592682,-0.049327984,-0.08855962,-0.041468274,-0.040402852,-0.044317603,0.090653785,-0.004012125,0.025777312,-0.037635073,0.047330562,0.06855534,-0.04199403,-0.019859023,0.03755434,0.051765524,0.029189084,0.060502566,0.041314695,0.035213567,-0.039192826,0.019106515,-0.050899703,0.039847504,-0.03147047,0.041370317,0.04769076,-0.0021603198,0.022860186,0.01713409,0.021159763,-0.117822945,-0.059566613,0.025195882,-0.00041117173,-0.05418304,-0.04896762,-0.018974284,0.044623528,-0.09216676,-0.023082543,-0.101690166,-0.054553717,-0.049300008,0.06397539,0.08256285,-0.091880545,-0.06561814,0.08577912,-0.028983882,-0.06956677,-0.042618472,0.017435253,0.0731547,0.12596393,0.040579136,-0.011472281,-0.0050567235,-0.022930296,0.0034939034,-0.082110405,0.02180964,0.024274454,0.00044121483,-0.09741518,0.0285955,0.0036871526,-0.04087211,-0.0076869116,0.02288124,-0.09456665,0.014410155,-0.010709265,-0.021975687,0.04035496,-0.037887298,-0.01899901,-0.051962648,-0.050773118,-2.3040952e-08,0.014017647,-0.056717314,-0.07658361,0.038417522,0.048114758,0.017142424,-0.03416215,-0.028611125,0.004291769,0.054242626,0.03983246,-0.0007625816,0.06240115,0.090041034,-0.05683619,0.061084468,0.056790352,0.07430857,0.004397283,0.017236453,0.046607565,-0.028963389,0.01893005,-0.012507849,0.04257179,0.0002621645,-0.066648304,0.0757853,-0.0039732167,-0.04211185,-0.0005232064,-0.04218532,-0.06226345,-0.03941451,-0.0012982218,-0.028554836,0.060213666,0.047438413,-0.032917622,-0.00558179,0.10957404,0.015687328,-0.047663912,0.00225754,-0.06757811,-0.10935817,0.045128256,0.05456828,-0.04253751,0.05699335,-0.00039272217,0.006490284,0.06157193,0.053432375,0.013948785,-0.076009296,-0.044197384,-0.020827381,-0.019208616,-0.0647339,0.028161155,0.16352895,-0.0411906,-0.017417341} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.643609+00 2026-01-30 02:01:12.263482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2182 google ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB 1 t 2185 Go Karts Mar Menor unknown Instalaciones muy cuidadas. Con varias opciones para niños y adultos. instalaciones muy cuidadas. con varias opciones para niños y adultos. 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Instalaciones muy cuidadas.", "O3.02": "Con varias opciones para niños y adultos."} {0.04476007,0.059403677,-0.016712943,-0.032412633,-0.06558961,-0.03844038,0.034709238,0.04793002,-0.034311578,0.057281684,0.12540999,0.04419149,-0.044348348,0.07435758,0.047811266,0.013151904,0.030030739,-0.021943014,0.016027935,-0.036793415,0.04769515,-0.02091818,-0.06467693,0.027562238,-0.086067095,0.039325304,-0.037964083,0.019181227,0.005270664,0.015457394,0.033086997,0.055208407,0.16196297,-0.087977365,-0.03444396,-0.022609334,0.08356799,-0.031789605,-0.052039977,0.0006264741,-0.058791187,-0.04425927,-0.04700566,-0.048687324,-0.035536837,-0.0858591,-0.006025894,0.0033820067,0.066861786,-0.020118505,-0.005838544,-0.0068271356,0.029117785,0.055330113,-0.04267119,-0.010528149,-0.06212868,-0.01608129,0.07026128,0.040362634,-0.0038599626,0.055576023,-0.06032484,0.04583112,0.01726743,0.015079867,0.030235494,0.0036067998,0.075800635,-0.025598768,0.013520837,-0.060384173,-0.0061421855,0.050161254,-0.024321524,0.0028337124,0.043744523,-0.0029016226,-0.006855302,-0.050200038,-0.08431748,0.026261067,0.0056955516,-0.022370864,0.010096187,0.022679163,-0.019093808,0.011101566,-0.051801946,0.022283219,0.012486263,0.062508024,0.004435157,0.003241497,0.026154723,-0.0137234405,-0.022854652,-0.13159414,-0.022451844,0.009315942,0.033402786,-0.010110375,0.11249494,0.059252575,-0.113773555,-0.05056422,-0.022819402,-0.13985236,0.0092145465,0.0849473,-0.114184946,-0.053996336,0.01272738,0.0106052505,-0.09246366,-0.025898755,0.0022461792,0.011314279,0.051878445,-0.06429128,0.05537337,0.042957626,0.0067798663,-0.060402922,0.017156018,-0.051223896,0.054040994,3.599706e-33,-0.077742785,0.01628072,-0.028127719,0.1581466,0.019018177,0.044856586,0.034313984,-0.028658342,-0.011169837,0.00081518054,-0.03567802,-0.0015393866,-0.06348407,0.05036392,0.18255785,0.02971001,-0.026793772,0.044063002,0.023145465,0.091034755,-0.020302638,-0.022623645,-0.0058727683,0.04215653,0.05137367,0.0456149,0.04917238,0.010000403,0.0021137516,0.037552748,0.022756515,-0.019825673,0.01901439,-0.04159221,-0.048022233,0.022492152,0.072250865,0.0014524765,-0.017329337,-0.031442437,0.009930881,0.006855748,0.014846533,0.107324794,0.059837606,0.05550204,0.025680646,-0.012908613,0.06821957,0.028919298,-0.08465077,-0.023327928,-0.07277005,-0.08399886,-0.052529175,0.029786032,-0.030215586,-0.02111906,0.017438909,-0.11201428,-0.010975937,-0.022804746,-0.007104332,-0.017303009,-0.019482156,-0.09809327,0.0683009,0.03948518,0.12766166,-0.028836578,-0.13404222,-0.03907808,-0.0646986,-0.023732202,-0.037621334,-0.0024368642,-0.004384959,0.031035729,0.00076682674,0.024380332,-0.021093998,-0.008499914,0.03594196,0.021074792,0.15029362,0.024346076,-0.07506402,0.05821847,0.0064657154,0.04520872,0.038365524,0.08199762,0.001365027,0.035884622,0.05167522,-6.323067e-33,0.023678593,-0.053099047,-0.008712188,0.01121456,0.03517454,0.018767321,-0.04959213,-0.023216661,0.034383785,-0.09501085,-0.13098103,-0.0712202,0.10349682,-0.027598178,-0.035633583,0.04775792,0.00052482466,-0.002187735,-0.042777814,-0.015727146,-0.0039683552,0.05834427,0.026177913,-0.022541257,-0.03557522,-0.10565104,-0.056962352,-0.012724742,-0.0824694,0.069780834,0.013339994,-0.011111703,-0.061961044,0.09092912,-0.044216383,-0.021309655,0.032349225,0.08864261,-0.00759838,0.0068930527,0.025791181,0.050330464,0.0048529836,0.02141285,-0.07085203,0.03268892,0.025379177,-0.10042401,-0.059790723,-0.009667291,0.021383697,0.014201035,-0.07007398,-0.08537713,0.009384147,-0.05968802,0.03652906,-0.09131803,-0.022422044,0.037006903,0.044164896,0.01529248,-0.025087023,-0.07472952,-0.024271604,0.0036963252,-0.046951223,0.018861521,-0.031963542,0.0153494505,0.072534874,0.012755885,-0.016648624,-0.06634231,-0.058428846,-0.055338327,-0.07039664,-0.019070365,-0.03282563,-0.036535345,0.036919124,-0.05419455,0.006540205,-0.08892348,-0.026015347,-0.10293683,0.01429288,-0.011135979,-0.061299473,0.066880204,-0.014193605,0.082654305,-0.0633068,-0.021421855,0.02490277,-2.9427197e-08,0.030630503,-0.012606679,-0.012529256,-0.009196445,0.020001434,-0.020069998,-0.043498952,0.10123081,0.032578446,-0.015057916,-0.056953613,0.012670691,0.025995405,0.04968455,0.004127927,0.029552884,0.081369676,0.10593569,-0.044072162,-0.032594934,0.06198347,0.0017495201,-8.169207e-05,0.06931403,0.007104678,-0.04841258,-0.035454873,0.012389344,-0.024617186,0.036850486,0.029077938,-0.03975206,0.053865276,-0.024045277,0.007806341,-0.052945413,-0.035460345,0.019509261,0.035614166,-0.09420017,0.07175371,0.0002863628,-0.022218397,-0.019218046,-0.04005651,-0.056518566,-0.08396765,0.037308127,-0.020340158,0.07018415,-0.014624532,-0.05171594,0.028019994,-0.0059787864,0.08406053,-0.0032084452,0.03597324,0.048048057,0.022484684,0.020147262,0.022118635,0.080092065,0.06659419,-0.062623784} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.682315+00 2026-01-30 02:01:12.268775+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2184 google ChZDSUhNMG9nS0VJQ0FnSURncmRQdExBEAE 1 t 2187 Go Karts Mar Menor unknown Unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos. unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos. 4 2017-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos."} {-0.014916085,0.025206778,0.050021198,-0.008407985,0.01908111,-0.008897664,0.044662137,0.0026491634,0.019824257,0.04148028,0.064640224,0.021854892,-0.06984501,-0.031881798,0.033222076,0.016055822,-0.07517503,0.0015333868,0.0466036,0.012625856,0.097237244,-0.050618146,-0.074059,0.14754146,-0.08104192,-0.04226653,-0.01168768,0.04494713,0.023580596,-0.084118694,-0.049197413,0.06547351,0.017953694,-0.019577172,-0.029766895,0.037633676,0.069064856,-0.08585633,-0.0310197,0.026150953,-0.1061131,0.005745891,-0.020723004,-0.012177376,-0.0025469288,-0.07996277,-0.01785698,0.04862025,0.009176456,-0.016828548,-0.025203874,-0.06353621,0.01025939,-0.0048616594,0.03439272,-0.033123568,-0.11505507,-0.024264248,0.07900818,0.04584191,-0.020934658,0.052826416,-0.05322271,0.031727713,-0.060275298,-0.044524107,0.045540474,0.06918583,-0.11610236,0.059847172,0.117256396,-0.060597323,0.004637442,0.05902982,0.014158238,0.020634208,-0.020342449,-0.012893693,-0.09829913,-0.0049768654,-0.045258198,-0.0149374865,0.0015366115,-0.06441251,-0.040931538,-0.006918414,-0.0031200405,0.03601456,0.0711995,-0.013592166,0.016486034,0.030854538,-0.08697637,0.011028302,0.02353924,0.043601707,0.04829808,0.0009867728,0.029744806,0.050180096,0.13256383,0.08573779,0.029707285,0.023762854,-0.037754394,0.006431557,-0.0037542046,-0.10233233,0.01958765,0.013175767,-0.04021193,-0.0032357713,-0.017012876,-0.010990537,-0.14048144,-0.024413798,-0.040720135,-0.02450779,-0.035479005,-0.028771225,0.06346334,0.019946555,0.013334648,-0.0014305061,-0.00073236047,-0.03815564,-0.0020962993,4.24315e-33,-0.07733558,-0.028372223,-0.024098247,0.07253115,0.02203497,-0.05919725,-0.02705892,-0.030205743,-0.070570156,-0.034546096,-0.07100099,0.05747607,-0.0059503024,-0.0026714066,0.021009017,0.04012248,-0.06972239,-0.06412568,0.0531664,0.03443602,-0.07071342,-0.016239565,-0.0028227728,0.020924209,-0.08253218,0.013991044,0.025333118,-0.09067948,-0.008910283,0.075571254,0.008519306,0.030916054,-0.012864177,-0.01338856,-0.05438693,-0.01706233,0.06707214,0.060273085,-0.023678748,0.003544534,0.04385105,0.0061312146,0.016244205,-0.019142335,0.0071163685,0.035961676,0.12792723,0.011496093,0.037940238,0.04490637,-0.09252297,-0.058438897,-0.019645734,-0.11651235,-0.02370156,0.042167913,-0.0328692,-0.008786724,-0.06329166,-0.039638504,0.015777344,0.028991112,0.037170846,-0.06352403,-0.03620678,-0.02475087,0.018181505,-0.014604754,0.10551044,0.069850035,-0.039686114,-0.064443685,0.0019705738,0.02152708,0.033056475,0.00041246068,-0.020284714,0.083303094,0.004119785,0.039409045,-0.117643446,-0.010546281,-0.01154853,0.045311704,0.058155015,0.043278612,0.05383909,0.039400343,-0.008166879,0.11355567,-0.056477703,0.11110787,0.027366363,-0.09565281,0.022321362,-6.4636305e-33,0.010849443,-0.0068062823,0.032199454,0.08433427,-0.021407451,0.03326236,-0.007213504,0.055791073,-0.0036508837,-0.060461313,-0.11033011,-0.0662594,0.059296377,-0.042052586,-0.008786416,0.07396254,0.023390053,-0.028524011,-0.07590868,-0.04088845,-0.01221198,0.08673977,0.056017675,0.056904882,0.008618734,-0.020227643,-0.0012427983,-0.0032798583,-0.071403176,-0.06395569,0.06153738,-0.10158255,-0.022908567,0.008340802,-0.038340755,0.0655245,0.069669455,0.055574678,-0.058541857,0.06932084,0.022045368,0.08359431,-0.02825002,-0.04341337,0.013637016,0.0057168193,-0.078110605,-0.110226355,0.024155611,-0.07512406,0.06546688,-0.025326362,-0.022503275,-0.041521545,0.076589525,-0.0540738,-0.04583679,-0.015724827,-0.041867603,0.008577927,0.050713446,-0.017399138,-0.080161564,-0.043160144,0.04004725,-0.012539615,-0.05240711,-0.05694107,0.0022288917,0.053159606,0.059222594,0.01825582,-0.07406551,-0.05166041,-0.03115893,-0.03344507,-0.050893232,-0.00054255483,0.039917596,-0.050134942,0.02540156,-0.034001797,-0.00045294032,0.011106391,-0.013483767,-0.012010233,-0.01715401,0.024846407,0.034706164,0.01962916,0.06336424,0.012731015,-0.036738906,0.004080906,-0.040379383,-3.2907312e-08,0.021088384,-0.049194437,-0.0694219,0.022061998,-0.06362886,-0.0365511,-0.020842722,0.04708186,0.014317513,0.10543473,0.015921175,0.014267722,0.043032173,0.11841856,0.01091135,0.0089998655,0.03799968,0.14552093,-0.03349364,-0.057064112,0.09625659,0.012902994,-0.029989531,0.031789795,0.009553841,-0.04738295,-0.04207633,-0.037849348,0.057742335,-0.004115215,-0.08036567,0.015305829,-0.05811905,-0.038734246,0.026247378,-0.010528199,-0.08014951,0.02968866,0.018414717,0.048196636,0.0635327,-0.031289395,-0.076506965,-0.028514568,-0.02940239,-0.1087338,-0.05112402,0.043122165,-0.06622703,0.063433625,0.0155063085,-0.028632455,0.07626684,0.07105931,0.03351557,-0.06817354,0.03493831,-0.01722732,-0.010531432,-0.070144005,0.059588373,0.086286,0.07883238,-0.017291427} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.711551+00 2026-01-30 02:01:12.276371+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2186 google ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB 1 t 2189 Go Karts Mar Menor unknown Bien para adultos. Para chicos me parece un poco peligroso. bien para adultos. para chicos me parece un poco peligroso. 3 2019-02-01 01:52:39.833374+00 es v5.1 E4.01 {} V- I2 CR-N {} {"E4.01": "Para chicos me parece un poco peligroso.", "O4.04": "Bien para adultos."} {-0.022929316,0.041463908,-0.037461426,-0.019584764,-0.03519573,-0.033456102,0.05476158,0.039662194,0.040245336,0.045619007,0.07357559,-0.045371838,-0.03402548,-0.019448733,0.005292532,-0.01847477,-0.021879451,0.037018955,0.040798325,0.05358137,0.046780586,-0.032807413,-0.015357236,0.07066128,-0.1542075,-0.008154694,-0.044588804,0.040840637,0.019835215,-0.005292446,0.005566907,0.021323318,0.14058836,-0.03305606,0.0123505425,-0.001520194,0.07127265,-0.043772474,-0.0010183861,-0.0010244953,-0.079347186,-0.010749759,-0.09144941,-0.061037306,0.016662307,-0.047490127,0.03543685,0.04645244,-0.006398041,-0.059016444,0.008464546,-0.019636452,0.02548534,0.04374355,-0.036485005,-0.0052848766,-0.044145003,-0.0303642,0.09072575,0.013338318,-0.045196075,-0.0043584667,-0.10281472,0.024764601,-0.043186843,-0.04447241,0.08302096,-0.037664343,-0.08526301,0.07001313,0.039391857,-0.04367827,-0.0019838824,0.08381723,0.023213334,0.020334827,-0.0075483834,-0.0451804,0.00023837949,-0.094611906,0.025187638,0.008608651,-0.07358927,-0.028685711,0.024983667,-0.020549364,-0.025603259,-0.003871964,0.037249047,0.018072633,-0.05492087,0.04335985,-0.03723698,0.031394094,-0.025419066,-0.014769693,-0.01844509,-0.09292976,-0.0033542034,0.0035550762,0.06603149,0.05364164,0.15382802,0.062062852,-0.021225227,0.020307958,-0.028746808,0.008539646,0.046849355,0.025525447,-0.062689684,-0.012486534,-0.04999495,-0.0048532337,-0.034677945,-0.023548618,0.0053362576,-0.09127955,0.008204771,-0.027694995,-0.0362254,-0.00044706007,-0.09135525,0.0071721445,0.0153774675,-0.09970192,0.104076184,-5.090215e-35,-0.060249973,-0.00942085,0.0033802574,0.0034715435,0.018357504,0.07187251,-0.018498981,-0.04079404,-0.020763237,0.019597815,-0.035285596,-0.013532755,-0.06279696,0.0920461,0.048973784,0.10277411,0.06664483,0.04717694,0.08224952,0.06740669,-0.05602907,0.014042209,-0.039120324,-0.052387856,0.09015453,0.019130252,-0.0010264214,-0.060374532,-0.019963806,0.026683418,0.038619503,0.0015295378,0.0078634145,-0.018527588,0.019738011,0.0028046956,0.04674487,0.1272516,-0.014612073,0.0075945095,0.034276884,0.004868862,0.003939534,0.02312931,-0.022819838,-0.003265025,0.050450433,0.02201439,-0.0023673815,0.023496665,-0.024086041,-0.036499117,-0.056786854,-0.037915524,-0.007868581,0.020697352,-0.10478765,0.06300579,-0.018517135,-0.06670942,0.13202234,-0.010991578,-0.026662724,-0.007818523,-0.006182148,-0.09461996,0.005195818,0.029926924,0.1011246,0.057717342,-0.068327665,-0.014292598,0.012959697,-0.015409516,0.02213864,-0.016555604,-0.026063584,-0.0014003109,0.010212883,0.037893612,-0.021087725,-0.032872345,0.027943173,0.04567201,0.05477392,0.060808685,0.0029650796,0.0984778,-0.0018427034,0.039552085,-0.006620622,0.00089093874,0.052090306,0.008400599,0.023473965,-1.6928674e-33,0.06651366,-0.02169469,-0.0064978367,0.022434196,0.020400906,0.029579315,-0.074169315,0.01347708,-0.049327735,-0.08011741,-0.0989987,-0.15940163,0.08504337,-0.04907272,-0.0041425354,0.13541773,-0.07878222,-0.034610085,-0.06628055,-0.01765579,-0.110848375,0.008612291,-0.027597027,-0.0075709284,-0.000904243,-0.044992317,0.046440978,0.053443674,-0.083196245,0.05377724,0.0029270158,-0.03853929,0.014456221,0.045746658,0.0420553,0.026313357,-0.015591968,0.040304214,0.071204215,0.00891228,-0.051907394,0.074914925,-0.007871783,-0.008612992,0.0122857895,0.052823223,0.0031487371,-0.115237944,-0.07405213,0.028846659,0.02491851,0.040275488,0.0052109086,-0.04235777,0.06344166,-0.087891065,-0.004911591,-0.06187865,-0.12488524,-0.050298385,-0.030121772,-0.019212909,-0.10232873,0.032683235,0.039099958,-8.231139e-05,-0.03548473,0.019598274,-0.017078135,0.039517023,0.107783124,-0.008765426,-0.06447213,-0.03290859,-0.06880425,-0.055857804,-0.015004893,0.030913752,0.059097145,0.028956927,0.0072875596,-0.04706799,-0.017349955,-0.0081022205,-0.04703313,-0.04341548,-0.01274908,0.023021095,-0.040624347,0.06624377,0.06477003,-0.04292845,-0.007288023,-0.08163225,0.04135062,-2.361428e-08,0.04746469,-0.052277848,-0.124256484,0.02732676,0.052430037,-0.009416394,-0.06903543,0.0044552493,0.015862273,0.046832543,-0.038492296,-0.014796106,0.07235022,0.039039135,0.0013442211,0.057001457,0.07648155,0.045612603,-0.02190255,0.0035749706,0.013068834,0.03275363,-0.07774754,-0.00093915657,0.008597597,0.024190545,0.021971593,-0.07117092,-0.061054252,-0.0020353966,-0.009181498,0.042996585,-0.13255453,-0.08350847,0.013846101,-0.010500085,-0.02923222,-0.003023624,-0.056824844,-0.011298897,0.11560468,0.044144284,-0.013982263,-0.07130745,0.040485106,-0.014598085,0.041017033,0.011259901,-0.0008813738,0.113069855,0.039173182,0.006026063,0.08603933,-0.007274668,0.00058450655,0.012567047,0.018563269,-0.0014739042,-0.026696306,0.012149821,0.10654002,0.14997031,0.07532065,-0.086017415} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.745887+00 2026-01-30 02:01:12.284816+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2188 google ChZDSUhNMG9nS0VJQ0FnSURXZ0lucVVnEAE 1 t 2191 Go Karts Mar Menor unknown Lo pasamos de lujo, la gente del circuito muy atenta. lo pasamos de lujo, la gente del circuito muy atenta. 4 2023-01-31 01:52:39.833374+00 es v5.1 P3.01 {O1.05} V+ I3 CR-N {} {"P3.01": "Lo pasamos de lujo, la gente del circuito muy atenta."} {-0.1123639,0.0073699974,0.023473917,-0.006279684,-0.024220454,0.006286122,0.041464966,0.08735723,0.027221447,0.04026702,0.08128245,-0.062210497,0.023384677,-0.05443175,-0.004091586,0.042463675,-0.06546466,0.0657551,0.02952646,0.001236458,0.10202186,-0.09462251,-0.08768926,0.08401235,-0.082325,0.033735085,0.077099375,0.042580407,-0.10017879,-0.05638911,-0.031957276,0.07328949,0.10502585,-0.04265647,-0.02067276,-0.014508393,0.040358625,-0.07769205,0.043227497,0.032211106,-0.09863007,0.004406786,0.052684687,-0.05960636,0.045843456,-0.056815125,0.005639747,0.013945508,-0.038287252,-0.096099734,0.025880126,-0.010210819,0.02855428,0.05386375,-0.07313206,-0.018369712,0.039360896,0.0081844395,0.048362307,0.0632194,0.01215772,0.018314617,-0.0634619,0.02450254,-0.03824017,-0.016758487,0.09170584,-0.039992098,-0.100890934,0.004426433,0.06835728,-0.050690252,0.038138356,0.013117722,0.0036925017,0.05888592,0.010521566,0.01018737,-0.088029355,-0.06982158,-0.0044588344,-0.04617141,-0.011529597,-0.07029905,0.034457196,0.022266412,0.0018176769,0.01595354,0.050517693,-0.029498251,-0.0885279,0.0026392161,-0.084291,0.024692236,-0.0051926877,-0.0003590493,0.02194083,-0.03157012,-0.005254914,0.02173698,0.07299486,0.079866305,0.052204777,0.02652494,-0.042030707,0.05102856,0.05633714,0.009491981,-0.060838062,-0.0388354,0.0036659539,0.01349335,0.0018509512,-0.012179556,-0.053868104,-0.01454189,0.0041996017,-0.03622168,-0.014283794,-0.00387463,0.06995832,-0.027888095,-0.054574363,0.014960206,-0.0038212528,-0.053081907,0.059234925,3.187324e-33,-0.03415689,-0.0660298,-0.032319725,0.054153334,0.009884967,0.08748764,-0.021352192,-0.0061872974,-0.08438487,-0.035965253,-0.08262259,0.022408087,0.048453156,-0.011882244,0.058115996,0.022255076,-0.020368028,-0.08933211,0.12130237,-0.03651233,-0.07677835,-0.02728291,-0.017762763,0.04683879,0.064336926,0.09150576,0.0020532112,-0.08221603,-0.09396005,0.064777896,-0.020405503,0.025125356,0.06479081,0.042204887,-0.04598241,0.025714818,0.04117701,0.027440902,0.077750884,-0.0475806,0.028022667,0.03868278,-0.017611505,0.015488369,-0.0023493718,0.026068699,-0.0007994999,0.014902092,0.109716244,0.05357784,-0.08033339,-0.10720887,-0.06541149,-0.05930321,0.021662282,-0.007493888,-0.13191634,0.04930977,0.01419159,0.026115464,0.06838948,0.09998232,-0.03005653,0.0024971883,-0.07161057,0.036068324,0.009907266,-0.0029743384,0.09695109,0.010148048,-0.08713343,-0.08955451,-0.012761789,0.053778443,-0.015530489,-0.026275754,0.023683578,0.0445042,-0.010966307,0.021298498,-0.06313044,-0.027410261,0.03835314,0.04239068,0.077145174,0.0828825,0.038943242,0.06944146,-0.059235588,0.0462341,0.031058803,0.03608832,0.087713525,-0.011662748,0.02437609,-3.8648006e-33,-0.0053628944,-0.013504928,0.017908176,0.078014,-0.04676075,-0.0076941596,-0.053823415,-0.055921532,-0.052872494,0.014128951,-0.013755284,-0.10673676,0.03877241,-0.09663444,0.036626715,0.04616762,0.012262064,-0.08136616,-0.06910049,0.014278406,0.017811868,0.040461574,0.0015709656,-0.047983672,-0.053715046,-0.015627893,-0.016794262,0.054756407,-0.08183466,0.030082585,-0.057314474,0.018038211,0.02942248,0.06818729,-0.01793282,0.053431135,0.0745755,0.07746616,0.00909011,0.01359043,-0.068587594,0.070299536,-0.00021488972,0.053098712,0.0005053651,0.06751307,-0.040608577,-0.10963774,-0.045868255,-0.052199982,0.023236021,-0.05787878,-0.009257775,-0.05480896,0.00013114246,-0.05315602,-0.019243432,-0.0077766194,-0.122211725,-0.036178056,0.08980795,0.0069252886,-0.027782228,0.0043765916,0.076169476,0.054871447,-0.003410745,0.04827271,0.062976666,0.04338598,0.099704556,-0.026786968,-0.030856712,-0.027786609,-0.08253348,-0.032500662,-0.16647856,0.05212739,-0.045973282,0.041431323,0.0737252,-0.024335468,-0.02373495,-0.04202309,-0.047000673,-0.070902,0.0132932225,0.0043015927,-0.013256169,-0.020116434,-0.0020482999,0.038800266,-0.048110664,-0.06206644,0.024422584,-2.688745e-08,0.009539899,-0.028044607,-0.06337262,0.012128737,0.04876571,-0.063463196,-0.0014118331,0.01769129,0.0019430683,0.06701046,-0.011232735,0.014118836,0.0027047785,0.07671325,0.027739702,0.086159214,0.026942264,0.078722894,0.0023088094,0.035021193,0.07980421,-0.0140399,-0.015448966,-0.02572718,0.046091422,0.016268505,-0.013162876,-0.027384467,0.013576572,-0.06271006,0.000389105,-0.049007155,-0.05255688,-0.04747117,-0.03398673,0.026070222,-0.04134852,-0.03892079,0.0027554175,-0.017297594,0.058719613,0.03283933,-0.019731957,0.013701231,0.05878319,-0.081546456,0.01698282,0.012677583,0.004079023,0.0677281,-0.044702273,-0.01255542,0.022643762,0.030215016,0.011750479,-0.032928485,0.05779899,-0.0039130147,-0.032042403,0.0004569296,0.0205631,0.12662952,0.053437006,-0.067422986} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.768481+00 2026-01-30 02:01:12.291718+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2190 google ChdDSUhNMG9nS0VJQ0FnSUR1bmFLLXJBRRAB 1 t 2193 Go Karts Mar Menor unknown Genial para pasar un rato con los amigos conduciendo karts genial para pasar un rato con los amigos conduciendo karts 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Genial para pasar un rato con los amigos conduciendo karts"} {-0.042223584,0.008654577,-0.01731267,-0.024287619,-0.056779183,0.013222931,0.027692765,0.009185891,0.0054713255,0.055766296,0.05611027,-0.016789129,-0.09026429,0.0045048413,0.015770152,-0.022529885,-0.082454875,0.020245314,0.0077033592,-0.043611065,0.06544648,-0.08661662,-0.05271134,0.05154972,-0.09830001,-0.04708388,0.01032703,-0.009146098,0.030351352,-0.04914203,-0.026802653,0.07361131,0.026101781,-0.06409712,0.0037636533,0.0025194965,-0.009177623,-0.08163952,-0.0013200375,-0.005961954,-0.039253306,-0.05274951,-0.07730204,-0.017460633,-0.019702155,-0.08212098,-0.036628693,0.04211086,-0.014286864,-0.0085773105,-0.049158517,-0.034280594,0.0033396708,-0.038437787,-0.04461604,-0.07460009,-0.06981878,-0.038402505,0.12013208,0.04085816,0.031532917,0.05540128,-0.08835434,0.0042338995,-0.018013593,-0.013895804,0.027529811,0.036688533,-0.10702713,0.107173376,0.10752585,-0.124756135,-0.013577642,0.056581266,0.03553643,-0.009268576,-0.04800327,0.013644921,-0.09224202,-0.061499737,0.024915162,0.021370292,-0.051320784,-0.06645275,0.01708905,0.015181686,0.023378206,0.05931255,0.03300934,0.026575973,-0.042962473,0.031700414,-0.0520263,-0.026889654,0.060989767,0.029271364,0.03328716,-0.042715058,0.033900283,0.026410671,0.09475564,0.08817849,0.044137757,0.004111405,-0.042487286,-0.010995227,-0.02934598,-0.019676847,0.048077904,0.03486594,-0.10358825,0.0124088675,-0.038152885,0.009991327,-0.07593585,-0.0026678739,0.025711631,-0.04472407,0.021784954,-0.011227994,0.08954395,-0.039671086,-0.01728187,-0.002530069,0.054143876,-0.067301445,0.04097882,4.1535204e-33,-0.072675146,-0.042754453,-0.002356141,0.02739467,0.011890219,-0.021501495,-0.04485677,-0.06639645,-0.042185426,0.029204074,-0.07503051,0.053004146,-0.02500076,0.057489496,0.08781402,0.0016973243,-0.039211113,-0.040397502,0.11795986,0.010331983,-0.09494887,-0.019063674,-0.0076366104,0.050420236,0.041448057,0.058857862,-0.004977375,-0.05307308,-0.06412642,0.06723247,0.042088848,0.0249855,-0.045021184,-0.0046233274,-0.111374095,-0.048103202,0.03670051,-0.015810622,0.015320073,0.03290403,0.08124968,-0.03451464,-0.0032984086,0.039597712,-0.010070648,0.0075411885,0.053683143,-0.053121373,0.028172413,0.04467352,-0.08708439,-0.01684065,-0.017081587,-0.11341078,0.017061584,-0.02237824,-0.024838954,0.042402115,-0.0862817,-0.08725397,0.048108894,0.002665767,-0.000628475,-0.04783652,-0.043412354,-0.06212552,0.008520445,0.0074539683,0.09686502,0.011048056,-0.047315177,-0.042714328,-0.017510941,-0.04976762,0.018567894,0.038724694,-0.045826573,0.10695631,-0.058558732,0.03522916,-0.061129708,0.08038519,-0.017453829,0.061736237,0.10855643,0.035134416,0.05626439,0.08406116,0.03335251,0.07588698,0.0086584035,0.07226917,-0.0035019217,-0.0097299535,0.025446484,-6.1404974e-33,-0.0048316563,0.028963435,0.064198464,0.11843626,-0.028924417,6.210779e-05,-0.012945114,-0.019145925,0.026460197,-0.012499411,-0.086235404,-0.06866671,0.093936354,-0.058801673,0.03107095,0.06031481,0.05653778,-0.038011674,-0.06635843,-0.06468773,-0.005588854,-0.0075437473,0.061569765,-0.040869374,0.034903377,-0.027105657,-0.015390995,0.0056539928,-0.09083434,-0.015909482,0.06512649,-0.020355847,0.02195978,0.07038169,0.008692126,0.015731359,0.092538275,0.10385456,-0.066023625,0.00022182561,0.044414606,0.09979812,-0.01589853,0.026992345,-0.019141229,-0.031216916,0.07637392,-0.12933545,-0.013138548,-0.035940602,0.1162404,0.05986681,-0.048112128,-0.1054966,0.044419404,-0.020047817,-0.008441908,-0.045191612,-0.071051426,-0.002611407,0.06379663,0.042973336,-0.044171885,-0.016940963,0.06671858,-0.02340455,-0.023233319,0.04844265,0.04409939,0.062402267,0.09837981,0.05036337,-0.042381898,0.0053389925,-0.043144714,-0.006732194,-0.046543743,0.046951924,0.031109575,0.0047182892,-0.025112504,-0.013455729,-0.026475053,-0.026185198,-0.036406025,-0.0060988828,-0.029318005,0.056671884,0.050019816,0.0004952587,0.07278331,-0.005744816,-0.026236348,-0.010885117,-0.025927115,-2.5131476e-08,0.029583339,-0.052070405,-0.102534026,0.04187136,0.023327738,-0.06731988,-0.013670143,-0.033353828,-0.011169275,0.10390455,-0.045757864,-0.022316087,0.057209868,0.12535837,0.029573306,0.039501052,0.015289006,0.11319048,-0.005918679,0.01827065,0.065031104,0.009930463,-0.060928743,0.01549329,-0.004172215,-0.064632066,-0.05081514,0.011281395,0.024149701,0.026056666,-0.033809535,-0.011050362,-0.111043565,-0.013106088,-0.015834108,-0.06309923,-0.031352356,0.05996679,0.004305571,-0.039495334,0.07005754,-0.0413349,-0.030072615,-0.0081169745,-0.05493198,-0.038856678,-0.045498352,0.008466631,-0.050450813,0.00014504266,-0.05538473,-0.022432756,0.086294115,0.003153108,0.05441328,-0.050642107,0.061409205,-0.010043949,0.014470813,-0.06590826,-0.006949628,0.12216029,0.03147956,-0.008682025} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.788757+00 2026-01-30 02:01:12.296805+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2191 google ChdDSUhNMG9nS0VJQ0FnSURhblBISjlBRRAB 1 t 2194 Go Karts Mar Menor unknown Excelente diseño, coches muy cuidados y personal profesional!!! excelente diseño, coches muy cuidados y personal profesional!!! 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.03 {O1.03,P2.02} V+ I3 CR-N {} {"E1.03": "Excelente diseño, coches muy cuidados y personal profesional!!!"} {0.021125145,0.08582031,-0.011501137,-0.042167533,-0.043491215,-0.014562523,0.07389829,0.028723435,0.047508862,0.044474375,0.060826685,-0.015681498,-0.051800054,0.0056283413,-0.027215922,0.020184679,-0.046306897,0.046800025,-0.005741161,-0.003463789,0.07040671,-0.0172389,-0.06786896,0.051845755,-0.10292848,-0.049105227,0.019232197,-0.01867429,0.013240316,-0.06985695,-0.026322497,0.09062919,0.060794517,0.04069978,-0.018094502,0.008529323,0.055286855,0.017568685,0.056524146,0.07938141,-0.12950167,0.018127734,0.05006645,-0.042188488,-0.0066943266,-0.06892407,0.07647313,0.07692649,0.011137795,-0.0014136971,-0.11312817,-0.0037653209,0.011890667,0.008446783,0.037287347,-0.01735754,0.007222104,-0.02340234,-0.009527471,0.007075792,-0.03671847,0.03765392,-0.05956409,0.06434892,0.00301887,-0.010044142,-0.026999855,0.04142238,-0.048530396,0.06977862,0.03258247,-0.033834416,-0.01498714,0.03883834,0.047973827,0.06381283,-0.063358985,-0.044777676,-0.02873742,0.026801214,0.009992312,-0.0019641502,0.030507594,-0.030431705,-0.028963875,-0.045564786,-0.0049913167,0.009833392,0.012410257,-0.022030478,0.008844479,0.068346746,-0.017848454,-0.00028496466,-0.082470365,-0.0037676785,-0.021902299,0.011652868,0.023147352,0.0055760304,-0.011003274,0.031829774,0.045310717,0.049130023,-0.035190526,0.06504763,0.008271052,-0.03662259,-0.011538954,0.09383888,-0.046450354,0.011358855,-0.10484924,-0.031659786,0.005341519,0.034621045,-0.027384417,0.032836325,0.019344676,-0.06415376,0.07228003,0.056238323,-0.03804946,-0.05682506,-0.033472504,-0.07734415,0.05525601,2.1154147e-33,-0.043295838,-0.031997748,-0.0726077,0.105047405,-0.074538484,0.009608215,-0.045438748,-0.024669854,-0.008424985,0.04516753,0.03096455,0.12827128,0.034572057,0.038936697,0.021382181,0.09717025,0.008178408,0.018905805,0.016280275,0.09432192,0.0215237,0.027250923,-0.014932523,-0.0019956024,-0.06263559,0.04934925,0.031285785,-0.049181588,-0.01320469,0.028833391,0.001934711,-0.029742844,-0.00041870083,-0.099438526,0.040822268,-0.0033078913,-0.00026106,0.029379837,0.025328381,-0.02262208,0.029416764,-0.04589485,0.01632396,-0.008809014,-0.040343277,0.0925452,0.06622452,-0.017070638,0.039068513,0.02683226,-0.0429033,-0.06441113,-0.026951222,0.032082003,0.013136129,-0.0033261029,-0.043198973,0.018763924,0.009052504,-0.06376362,-0.02531122,0.044160664,-0.01029024,0.0045271036,-0.05305447,-0.083044805,0.004166352,0.042928673,0.11723877,0.03827954,-0.09796816,0.0011000314,-0.01475777,-0.0040605995,-0.026736097,-0.007183242,0.0034714192,-0.040967558,0.030637346,0.032436863,0.024633313,0.07603261,0.016670058,-0.07149943,0.0674421,0.074973375,0.065081604,0.061911173,0.008131826,0.16460972,-0.024370728,0.034352433,0.02478201,0.019005386,-0.006325583,-4.875171e-33,0.00520152,-0.011909253,0.010497543,0.022029009,0.027454166,0.050803386,-0.0067874556,0.07744207,-0.015187279,-0.042451225,-0.038929548,-0.14450106,0.046628628,0.021951402,-0.06352203,0.057914533,-0.015515987,-0.080818534,-0.13905933,-0.048708644,0.018571444,0.06658598,0.007940604,-0.036294382,-0.060204316,-0.07282553,-0.028229889,0.004674415,-0.05403515,-0.0068352125,0.04735378,0.09675517,-0.059105773,0.002905179,-0.04006246,0.006578957,-0.013836497,0.0003332847,0.0065987855,0.121567376,-0.03369304,0.07088361,-0.012081039,-0.01815495,0.020753726,-0.011401052,-0.04660316,-0.17561871,-0.0151007855,-0.060100354,-0.07722436,-0.042513713,-0.037695166,-0.098848715,0.037324842,-0.021687884,0.10924683,-0.06470634,-0.08884231,0.021896107,0.06128813,-0.006944614,0.015734607,0.052479718,0.08602541,-0.016853966,-0.05573389,0.047995545,-0.060410347,0.076274894,0.10863602,0.047900554,-0.03115863,0.0068032444,-0.08854368,0.0013931538,-0.0706038,-0.044259284,0.020800253,0.05708337,-0.022936178,-0.025521154,0.053698212,-0.029610852,-0.057235807,-0.00979116,-0.059024993,0.009397789,-0.029588748,-0.02270746,-0.012708475,-0.026906507,-0.09629413,-0.030799324,-0.028108343,-2.7325978e-08,-0.0035254105,-0.06337676,0.09317076,-0.030690592,-0.07407846,-0.09600541,-0.024930613,-0.025918538,0.039752074,0.062382538,-0.0038716507,-0.10125271,-0.064517945,0.06349967,0.03520227,0.039276008,0.12173497,0.038132347,0.0056158123,-0.0824052,0.07302504,-0.02214688,-0.09581736,0.015224834,-0.021991476,0.10738797,0.016428508,0.010828467,-0.09108761,0.04031496,-0.029018037,0.02579129,0.006252313,-0.096233375,-0.08492259,-0.031939894,0.024028622,-0.051110968,0.00080747704,0.022870054,0.046089083,-0.053207796,-0.04561988,0.003796028,-0.02566192,-0.027445009,0.057494555,0.07649054,-0.006408383,0.054624185,-0.027861813,-0.033369318,0.0055760266,-0.041384965,0.012617189,-0.004397977,0.04356848,0.04524699,-0.11843334,-0.05957808,0.037856072,0.018577876,0.0191941,-0.07928008} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.800043+00 2026-01-30 02:01:12.299427+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2193 google ChdDSUhNMG9nS0VJQ0FnSURTd1p5cW5RRRAB 1 t 2196 Go Karts Mar Menor unknown Siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de crisis, enhorabuena!!! siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de crisis, enhorabuena!!! 5 2021-01-31 01:52:39.833374+00 es v5.1 R3.05 {E1.03,E4.01} V+ I3 CR-N {} {"R3.05": "Siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de cris"} {0.042274293,0.066067554,0.00881251,-0.08094525,-0.04108377,-0.020895276,0.03210817,0.10027304,0.0024806343,0.008460173,0.044547226,-0.028931681,0.023510579,-0.0294128,0.010996638,-0.007787904,-0.043168068,0.00444982,-0.008579658,0.03610632,0.10064439,-0.083377294,-0.116912864,0.09242237,-0.090431646,0.03466893,-0.026866265,0.020006906,-0.037368238,-0.077054515,0.02695193,0.020782629,0.06286515,-0.049020097,0.05888793,0.03066942,0.086029954,-0.045186937,-0.015223503,0.030519923,-0.10737316,-0.030984752,-0.07913796,-0.043013707,0.047026973,-0.042633664,0.032880858,0.07263834,-0.002094657,-0.033818312,-0.07020068,-0.035318926,0.00670695,0.017559437,0.030650396,-0.015155964,-0.0046792245,-0.04879157,0.013735614,0.03173082,0.032250583,0.042123515,0.009415349,0.077282675,0.027133811,0.0011750844,0.03805092,-0.05690877,-0.0044508977,-0.011830907,0.06894818,-0.09443285,0.11847888,0.04556998,-0.03235686,0.07831251,0.007370754,-0.0010444687,0.034190517,-0.023290796,0.050248455,0.0014277848,0.013397589,-0.024699124,-0.019683909,-0.025859859,0.0044682524,-0.043966718,0.03965139,-0.012225933,-0.032066535,0.028678246,-0.03795678,-0.0029050722,0.020058345,-0.016622715,-0.01135011,-0.10514102,-0.023311647,0.0011887369,0.032166082,0.010635412,0.08290761,-0.012479184,-0.07020135,-0.009458493,-0.038551208,-0.081070974,0.00774177,0.06077114,-0.1152211,-0.09797332,-0.036346577,-0.057289746,-0.071529984,0.03119724,-0.005175519,-0.040599916,0.032542907,-0.048663568,0.06392637,-0.03168935,-0.04442802,-0.0765137,0.030682227,0.015979141,0.044587906,3.2761325e-33,-0.09214808,-0.037026003,-0.030713454,0.10068901,0.021406451,-0.0067255325,-0.043328542,-0.041765533,-0.03985576,-0.032253113,-0.06607758,-0.029053677,0.0008944452,0.02685055,0.06777087,-0.012506429,-0.00015440585,0.009165116,-0.016607756,-0.011535082,-0.07777902,-0.036741473,0.0038596897,0.032450415,0.03574419,0.102418184,0.057111014,-0.028717436,0.05283543,0.038374968,0.015759882,0.01347665,-0.010581765,-0.060111176,-0.041051857,-0.040147595,-0.029285964,-0.015332455,-0.030756867,-0.023272038,0.02796893,0.04719206,0.031717293,0.021757264,0.070539355,0.014360965,0.051492304,0.040308356,0.12926741,-0.0659069,-0.06442277,-0.043239277,-0.060893077,-0.0768335,0.021261677,-0.0028542452,-0.06221192,-0.01842562,0.058679573,-0.0548939,-0.032779813,-0.051212527,0.052075032,-0.028438332,0.06400649,-0.059566956,0.050691094,0.057254806,0.06819807,0.061210033,-0.115040004,-0.03647855,0.008080828,0.022273134,-0.08418092,0.010072244,-0.0049048713,0.032678504,-0.060567632,0.04354255,-0.051737737,0.05515805,0.09846338,0.016779114,0.09825849,0.055054523,0.023531593,0.09806333,-0.051687445,0.11185498,0.008144545,0.10097914,0.07400435,0.018874027,0.022146245,-6.658634e-33,0.006338686,-0.0418168,-0.038955018,-0.025103068,0.00881523,0.024810739,-0.06696115,-0.03267985,-0.004678722,0.0070181414,-0.090077296,-0.056351434,0.06182326,-0.043684654,-0.11966944,0.05833588,0.050281595,-0.05758379,-0.07252261,0.02061135,-0.0024902918,0.0739072,0.022192,-0.0073838513,-0.03778408,-0.0013936989,0.052894186,-0.000227861,-0.092661195,-0.026945045,0.009680589,0.0043219696,-0.08069055,0.06839167,-0.043503165,0.02612525,0.02380501,-0.07182041,-0.01541691,0.0458154,0.016921896,0.069309,-0.026761575,-0.0023618408,-0.041442033,-0.014649777,0.035391517,-0.12589915,-0.07557849,-0.06641393,0.025337962,-0.030051874,-0.054583583,-0.05989244,0.038102318,-0.05963674,-0.052304406,-0.08380237,-0.09476883,0.022755206,0.06827088,0.056875315,-0.024802826,-0.039470386,0.025871947,0.011322598,-0.033637963,-0.023698391,0.008901478,0.034245268,0.13796002,0.024944276,-0.09479899,0.05284214,-0.05274746,-0.022079565,-0.057372734,0.017267585,-0.032559063,0.053850662,-0.016453633,-0.05109957,0.011326201,-0.0009551763,-0.030211091,7.98612e-05,-0.014426602,0.021541223,-0.03354409,0.0434821,-0.055994254,0.008759242,-0.03217912,0.010896623,0.004848685,-3.5586687e-08,0.041231763,-0.021168765,0.041237246,-0.00935466,0.060955252,-0.10863691,-0.088849865,0.0597644,-0.01163552,0.04329093,-0.012506088,-0.03122039,-0.06355945,0.10530794,-0.014145639,0.010598571,0.09559239,0.102302864,-0.038790032,-0.056561183,0.029253613,-0.032613132,-0.06606996,-0.033321977,0.09356559,0.032263245,0.014288555,0.021047518,-0.028052857,0.020130219,-0.018597797,-0.053960603,-0.0025414382,-0.023234984,-0.055364348,0.030379714,0.034125004,0.0454854,0.016860714,-0.09092998,0.12502803,0.021398867,0.017528454,0.010352075,-0.06303284,-0.05598012,-0.05553365,0.052749865,-0.018665364,-0.033557054,-0.0360814,-0.03800589,0.06756454,0.09605669,0.07933055,-0.04623802,0.059666663,0.009379202,-0.010427419,0.06376646,0.06875459,-0.046201658,0.022227384,-0.042844575} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.819606+00 2026-01-30 02:01:12.306315+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2174 google ChZDSUhNMG9nS0VJQ0FnSUNhaVlDLWJnEAE 1 t 2177 Go Karts Mar Menor unknown Los críos se lo pasaron genial\nEl trato es muy bueno\n👍👍👍 los críos se lo pasaron genial el trato es muy bueno 👍👍👍 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {P1.01} V+ I3 CR-N {} {"O1.05": "Los críos se lo pasaron genial\\nEl trato es muy bueno\\n👍👍👍"} {-0.018441595,-0.003195773,0.0026597104,-7.976753e-05,-0.011586985,0.016857775,0.07695843,-0.014817215,0.012917781,-0.040345427,0.06268568,-0.033146735,-0.060176305,-0.044668213,-0.015159794,0.04961608,-0.03576999,0.0677814,-0.0047561107,-0.010571472,0.08829991,-0.03504902,-0.04652212,0.14315237,-0.09906168,-0.01363749,0.01726925,0.08090455,0.01686336,-0.019115223,-0.03450347,0.094932824,0.04837715,-0.008295794,0.018550195,-0.021741202,0.034832675,-0.06905897,0.040220257,0.039776985,-0.052253935,-0.019605353,-0.012712587,-0.005074167,-0.0048312633,-0.1688859,0.017756915,0.090501316,0.0013663825,0.026628878,-0.044123113,-0.018882493,0.019993063,0.057049107,-0.07441693,0.04871219,-0.0055940826,-0.050096795,0.092623755,0.018756878,-0.033267867,0.03295844,-0.024733473,-0.017763287,-0.005958014,-0.0047592786,-0.0025760746,-0.05592302,-0.0617543,0.062722884,0.047094185,-0.005476758,0.0005504839,0.04436037,-0.03978035,0.071781866,0.035391532,-0.02293017,-0.107841894,-0.017376821,-0.012205972,-0.017316777,0.027068352,-0.036055896,-0.000985402,0.022793043,0.0007134339,0.045829516,0.012639578,0.007182789,0.0145405205,0.057283904,0.059534244,0.013665731,0.0076934644,0.10454449,0.028983273,-0.102736674,0.042872816,0.010475934,0.07840017,0.06635212,0.108163685,0.03561986,-0.013146724,0.021327877,0.012698856,-0.011210929,-0.0068169613,-0.052412312,0.016323386,-0.010397255,0.012609428,0.024148623,-0.044632502,-0.0440904,0.007974141,-0.01185439,0.0026560845,-0.027328618,0.07304028,0.00018043235,-0.103906915,-0.07436827,0.012699681,-0.017193504,-0.0006362009,7.993186e-33,-0.03863199,-0.0068146614,0.025103616,0.018282315,-0.013511874,0.035690043,-0.061501797,0.025170462,-0.10703912,-0.019220186,-0.07596166,0.024356298,0.00095671404,-0.03619153,0.052657414,0.033413526,-0.037665132,-0.014574626,0.08176842,0.07777662,-0.1290745,-0.01975129,0.002289751,-0.0015654854,-0.037498314,0.08825237,-0.01859782,-0.04448393,-0.08051819,0.057651535,0.017942939,0.08783478,0.042749196,0.011577976,-0.044326447,-0.07083034,0.020272974,0.017331373,-0.021865388,0.0574284,0.09056447,0.031297427,-0.036837872,0.05651457,0.024780944,-0.054385927,0.033610366,0.011106328,0.04124999,0.015775917,-0.08668925,-0.024482941,-0.06590353,-0.076494664,0.06654012,-0.03430359,-0.050487682,0.056620527,-0.011821967,-0.03516324,0.12539597,0.043671362,0.03982214,0.0069840513,-0.058619592,-0.007794939,0.029058011,0.05737346,0.12641464,-0.012184191,-0.021681968,-0.05846969,0.006516067,0.01662817,0.04373054,-0.02888548,-0.0068792873,-0.015078174,0.00971709,0.03404517,-0.04752154,0.026053673,0.04896581,-0.017010449,0.06240194,0.05235672,-0.013596495,0.006112714,-0.02719183,0.029083243,-0.036164246,0.0021623853,0.007979315,-0.03425104,-0.040203843,-6.987061e-33,-0.026535116,-0.044374593,0.014484339,0.021571452,-0.089269616,-0.07607253,-0.08884009,-0.024794301,0.0034235884,0.019565959,-0.017328018,-0.10929793,0.046010263,-0.07578472,0.037288476,0.101403125,0.05132175,-0.055517357,-0.12202832,-0.04615444,0.002965249,-0.006986445,0.02542381,0.053747453,-0.024170736,-0.022742992,0.029287588,0.05120415,-0.008880793,-0.0037175093,0.027115166,-0.03137312,0.02662254,0.10330605,-0.009496799,0.016082227,0.022208976,0.09470171,0.079494715,0.02893123,-0.060469147,0.05765919,-0.019909082,0.024856597,-0.03541437,0.044643804,0.007391599,-0.09276228,-0.054686498,-0.05377297,0.021172993,-0.04293127,-0.031414222,-0.03644475,0.022569764,0.0064068595,-0.033845343,-0.04654592,-0.10313928,0.0032764263,0.040199835,0.029910304,-0.055882797,-0.0073019606,0.06611951,0.022631701,-0.06281346,0.027024496,-0.0025531617,0.067470476,0.061767075,-0.024935436,-0.10597263,0.011306509,-0.07849997,0.001931048,-0.1374271,-0.030112477,-0.023946803,0.026259737,-0.014322676,-0.023170505,-0.025348,-0.018312365,-0.027383476,-0.067481816,-0.06965154,0.012883382,-0.0080144,0.058069434,0.112167135,-0.002546359,-0.04270112,-0.091190286,0.0070462967,-2.6313069e-08,0.042511158,-0.015951395,-0.011589473,0.008436818,0.06506716,-0.017516384,-0.056067318,-0.0016893041,0.05344146,0.09868047,-0.11810535,-0.05775998,0.045921147,0.09640686,-0.032076392,0.096675426,0.06918162,0.017965503,0.038784888,-0.027587315,0.06459935,-0.0063492157,-0.01199009,0.02757166,0.022969302,0.0012254332,-0.06362465,0.02850889,0.017998572,-0.0034159592,-0.0007885422,-0.05614342,-0.0757863,-0.039327513,-0.024192028,0.009553537,-0.014747529,-0.041796826,-0.028254714,-0.06870556,0.1273021,-0.0441104,-0.030045295,-0.008908378,-0.033809707,-0.10324961,-0.023779005,0.0446512,-0.013371336,0.03080086,-0.002999469,-0.09729638,0.056983724,0.014956339,0.07196483,-0.055388086,0.08802263,-0.010768876,0.039804015,0.05033381,0.029552111,0.1653569,0.04326238,-0.11988669} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:03.007855+00 2026-01-30 02:01:12.242097+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2175 google ChdDSUhNMG9nS0VJQ0FnSURhc0lpMTVnRRAB 1 t 2178 Go Karts Mar Menor unknown Para pasar un rato excelente con los precios bastante competitivos para pasar un rato excelente con los precios bastante competitivos 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {O1.05} V+ I3 CR-B {} {"V1.01": "Para pasar un rato excelente con los precios bastante competitivos"} {-0.0047953646,-0.010135568,-0.053460162,-0.085766256,-0.10835342,0.09150859,0.043381397,-0.0033457328,0.025385568,0.0259403,0.013000467,-0.046915546,-0.015724994,0.05964467,0.012033385,-0.030927831,-0.014503985,0.034730755,-0.0058234367,-0.014035175,0.043342724,-0.09875193,-0.09931136,0.08061867,-0.05062585,-0.11403559,-0.024154568,-0.064260766,-0.03837445,0.010383942,-0.06412566,-0.04353742,0.08836757,0.012018398,-0.05376571,-0.016280565,-0.019710802,-0.03905684,0.028384311,0.055230167,-0.040974718,-0.06397377,-0.02793494,-0.055625025,-0.023911694,0.0013729293,0.07921186,0.021048479,-0.038140718,-0.0468675,-0.054608095,0.04101828,0.01446596,-0.021183662,-0.012174294,-0.04530262,0.030434676,-0.021021709,0.03247573,-0.020848481,0.0073325154,0.007169951,-0.08861084,0.0089363055,0.034907952,0.0058342097,-0.015934119,0.06257515,-0.03977715,0.09970309,0.09963704,-0.1262176,-0.022499768,0.008222946,0.038418114,0.029841714,-0.051397063,0.058353115,-0.04409948,-0.09941513,0.09607152,-0.0016246694,-0.11096039,0.007662868,0.039977647,0.05748542,0.0036827181,0.047679204,0.060110196,-0.017792339,-0.017389713,0.14424513,-0.062542945,-0.039246384,-0.0495935,0.052430872,0.017171284,-0.062051907,0.048588637,0.06420198,0.083120644,0.01395175,0.03922846,0.0003008383,-0.043093048,-0.030826556,0.049954407,0.0020513537,0.069894895,0.09612055,0.009778359,-0.025323998,-0.06289638,0.00011278613,-0.13639052,0.049521722,0.0017981974,-0.03072315,0.011756411,-0.09037406,0.0739819,0.011040013,0.023666639,-0.014709284,0.010296333,-0.09410036,0.0021508655,3.4547445e-33,-0.04346685,-0.09278808,-0.0020599584,0.049379967,-0.11826957,0.02241298,-0.008196278,-0.047745634,-0.0031598604,-0.01591602,-0.05144726,0.094453536,0.012428086,0.019048365,0.0032422482,-0.0038813718,-0.00061252306,0.015376924,0.16006507,-0.007980874,-0.08836919,0.01556886,-0.006846475,0.058675174,0.08752098,0.018927675,-0.09777654,-0.07583099,-0.092673324,0.06159256,0.0694267,0.033659786,-0.049605332,-0.06266209,-0.037386566,-0.027318742,0.009956311,0.02381154,0.04195742,-0.008041484,0.01731363,-0.022510104,-0.03466402,0.018393435,0.029336043,-0.038194936,-0.043492116,0.006417685,0.022637066,0.03321945,-0.014500588,-0.046185505,-0.06469973,-0.08181668,0.01813558,-0.014597362,-0.06452983,0.038651187,-0.076216936,-0.025630353,-0.014814299,0.030301059,-0.07892032,-0.0040861256,-0.0778962,-0.011557089,0.03957965,0.026690893,0.142482,-0.036074996,-0.0466554,-0.07058794,-0.012140615,-0.016443651,-0.033785276,0.021425132,-0.050812364,0.045047753,-0.031622045,0.0379196,-0.05051068,-0.007762622,0.023855291,-0.0190353,0.023694176,0.11557123,0.06748302,0.024658412,-0.0022464748,0.060459375,0.025092596,0.0566517,-0.0042400146,0.05713693,0.024770617,-5.8700165e-33,0.021872194,-0.0009947728,0.059397098,0.05642743,0.0075327274,0.03374469,-0.008891325,-0.1020548,-0.0555612,0.020699276,-0.023036964,-0.10409908,0.09836684,-0.016755316,-0.010905461,0.08313142,0.0516419,-0.006745747,-0.061784085,-0.032401204,0.009988571,-0.02482496,0.02578379,0.010056867,0.0046739974,-0.114947096,0.027722318,0.0024382854,-0.059308898,-0.007991511,0.07484352,-0.00556881,-0.019348895,0.0670001,0.019659486,0.05041731,0.048884433,0.04869115,0.011390857,0.0065512797,-0.018572615,0.011863179,-0.044259667,-0.0136428345,0.009100373,-0.018042628,0.047219444,-0.082388975,-0.010208373,-0.031985123,0.10019628,-0.027594762,-0.06418675,-0.09290707,0.024209255,0.03663362,-0.0316237,-0.029114269,-0.06850105,-0.036884964,0.058859427,0.048479233,-0.018834444,0.030879255,0.066610835,-0.02191051,-0.039991625,0.039422486,0.01660186,0.0252691,0.12227236,0.047692318,-0.04211201,0.029655691,-0.112886205,0.0496522,-0.013382559,0.025853772,0.05699343,0.060414586,-0.09222083,0.0617475,0.059051555,-0.028312413,-0.08449556,0.03398479,0.020971945,-0.013147635,0.010016051,0.0053628315,-0.0032599778,-0.008043682,0.024266133,-0.09331615,0.042639986,-2.7054954e-08,0.0015936778,-0.051119704,-0.0053244215,0.099506736,-0.017453616,-0.020275652,-0.00080616673,-0.022590553,0.027810983,0.08070401,-0.042988855,-0.07271651,0.00391161,-0.0009324077,-0.017736137,0.031623583,0.025784647,0.07407375,-0.034878045,-0.006950406,0.07582032,-0.009383233,-0.072495654,-0.06177471,-0.018289506,-0.07388499,-0.09364714,0.037554957,-0.027597694,0.037431836,0.022905815,-0.05676843,-0.0047955466,-0.13762376,0.016005168,-0.008341497,-0.013243951,0.0048664566,0.0071910066,-0.06094148,0.048124243,0.015256533,-0.00022701391,0.016928364,0.0049561267,-0.039926853,-0.066023566,0.037262954,-0.01117145,0.018233629,0.026631992,0.01463194,0.070163146,0.03200797,0.057267856,-0.010456238,0.026892364,0.029600576,-0.04079754,0.011007845,0.03754901,0.09375411,0.066670835,-0.019096745} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:03.019323+00 2026-01-30 02:01:12.24685+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2199 google ChdDSUhNMG9nS0VJQ0FnSUNDNVpHTnNnRRAB 1 t 2202 Go Karts Mar Menor unknown Muy buenos, buen circuito y buen precio. De los mejorcitos muy buenos, buen circuito y buen precio. de los mejorcitos 5 2021-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.01} V+ I3 CR-B {} {"V1.01": "Muy buenos, buen circuito y buen precio. De los mejorcitos"} {-0.009173088,0.03737678,0.022218043,-0.06184899,-0.0666584,0.047567613,0.034081437,0.0634338,0.020952236,0.041230258,0.060638938,-0.03370452,0.03141895,-0.0074540465,-0.011890385,0.06171556,-0.03255136,0.014319817,0.0009296069,-0.0014116804,0.08757951,-0.015492216,-0.09239245,0.1448027,-0.02112376,-0.030957751,0.029674215,-0.0014768295,-0.050280415,-0.09815599,-0.077681795,-0.0073288926,0.09935692,0.013564808,-0.027960503,-0.014275062,0.07226183,-0.044949967,0.0021603974,0.045734182,-0.090819955,-0.09347784,0.039932076,-0.010435009,0.025594862,-0.06751415,0.060003024,0.026890358,0.007955895,-0.061529573,0.0051456746,0.009314629,0.013936016,0.032675207,0.028127968,0.037130687,-0.018200904,0.016269634,0.094896875,0.058710173,-0.019271394,-0.021596383,-0.04943017,0.046016064,-0.011308096,-0.021788647,-0.015614341,0.032445166,-0.03805938,0.027863977,0.14660512,-0.115301415,0.004262634,-0.003867521,0.024463363,0.042720746,0.0087200375,0.034125622,-0.03411786,-0.10515892,0.042398717,-0.056415237,-0.06942936,-0.031741586,0.035042938,0.029632226,-0.039186925,-0.026356949,0.01972318,-0.032371815,-0.04790891,-0.021114489,-0.054607816,-0.020141223,-0.04901617,-0.015320496,0.0014042549,-0.054500204,0.05038078,0.09282129,0.07404401,-0.011331461,0.038749438,0.055068117,-0.060143303,0.03252998,0.04431874,0.028968828,0.03951904,-0.0006021362,0.0064108516,0.010262549,-0.09063644,0.004649326,-0.017486764,-0.019472089,0.04396198,0.02517713,-0.003062558,-0.095483266,0.022104766,0.040002927,-0.068560794,0.011092983,-0.06435511,-0.04468574,0.033607803,3.951602e-33,-0.067064404,-0.054955043,0.006360765,0.051560618,-0.019127205,0.0364348,-0.03629775,0.040553126,-0.005521955,-0.021295207,-0.008662377,0.12844333,-0.014586471,-0.0031386574,0.059907544,-0.07934171,-0.014868207,-0.06471438,0.12717234,-0.024050739,-0.04173248,-0.012887842,-0.0050796415,0.073164545,0.02253273,-0.0060893972,-0.022950834,-0.09510625,-0.081392854,0.057393007,-0.017172249,0.06705664,0.052920576,-0.01592651,-0.09175515,0.0028384603,0.04588584,0.032739423,0.030852128,-0.053422585,-0.056254115,0.014267868,-0.08587619,-0.002901995,0.029667683,-0.06799677,0.028562136,0.08926934,0.08435698,0.037809227,-0.07310523,-0.051578157,-0.04386411,-0.06566426,0.042650428,0.04753432,-0.053701792,0.08301423,0.047517363,-0.00043787248,-0.0038259712,0.11872052,-0.03679421,-0.009812895,-0.085477225,0.04769836,0.07779502,-0.038331803,0.120766826,-0.025727611,-0.112836495,-0.022472842,-0.04589596,-0.024540145,-0.0103984345,0.028916497,-0.08872802,0.050725184,0.006095199,0.007800578,-0.11485936,-0.0112819,0.028685024,0.034321763,0.12595135,0.12881716,0.07865765,-0.005462667,-0.010765713,0.09766117,-0.035140373,0.03931665,0.10093125,0.049408823,0.018260974,-5.044763e-33,-0.0014910128,-0.032958627,0.040480703,0.04024094,-0.019178819,0.012064373,-0.038642213,-0.05029407,-0.098361075,-0.017616076,-0.025733164,-0.09677254,0.06521727,-0.032827903,-0.018556824,-0.00048791178,0.019507952,-0.05854505,-0.077455565,-0.019849995,-0.0018487283,0.076430105,-0.021682665,0.004172925,-0.0889343,-0.044642556,-0.012897498,0.044160884,-0.037646312,0.021826683,-0.009644224,-0.013076322,-0.015352643,0.06436713,-0.04523874,0.0704912,0.0072977855,0.07805034,0.021613332,-0.002021399,-0.01605587,0.046908997,-0.041835655,-0.011283616,-0.0921794,0.020274943,-0.004893244,-0.07112418,-0.038417116,-0.040557675,-0.004096315,-0.05533388,-0.032375332,-0.07705274,-0.027898759,-0.06153935,-0.03184474,-0.05696531,-0.040335592,-0.041766897,0.06631354,-0.056434035,0.010450856,-0.017031837,0.07053108,-0.013087676,-0.014777768,0.05790062,0.07920079,0.009626051,0.09694045,0.0024442882,-0.009146781,0.0015756359,-0.072364055,-0.0267339,-0.08832098,-0.023221523,0.0174203,0.021722844,-0.04255026,0.0500228,-0.022658654,-0.014566507,-0.0304231,-0.044698432,0.03471732,0.011576882,0.05312017,0.052939307,-0.010271714,0.093320176,-0.022302922,-0.082722835,-0.0018122423,-2.9513707e-08,0.022640461,-0.054933477,-0.0070873704,0.043607164,0.043417607,-0.088551104,-0.07189628,-0.005151031,-0.0051016654,0.041289072,0.0032016824,-0.008887493,-0.0060414826,-0.013893128,-0.05494664,0.07596134,0.056812312,0.08239717,0.009921961,-0.015056321,0.04032132,0.015687684,0.01617051,0.0044024833,0.052660473,-0.029639281,-0.047735848,0.039610665,-0.025170073,0.031006051,-0.030624744,-0.008852734,-0.03474858,-0.06528966,0.038579896,0.011175656,-0.0305847,-0.013771862,0.0013320851,-0.07008125,0.05372692,-0.05951043,-0.06400004,0.016505066,-0.0025015878,-0.09961554,-0.023172697,0.084586255,-0.009292011,0.05916639,-0.05795679,-0.02094067,0.054800957,0.050707445,0.07310909,0.017840955,0.051735573,-0.0051365066,-0.045054447,0.014048252,0.015246038,0.12146152,0.05989044,-0.11226689} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.885581+00 2026-01-30 02:01:12.32786+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2201 google ChdDSUhNMG9nS0VJQ0FnSUNtMW95RzZBRRAB 1 t 2204 Go Karts Mar Menor unknown Een hele mooie en leuke baan met rechte en moeilijke bochten een hele mooie en leuke baan met rechte en moeilijke bochten 4 2022-01-31 01:52:39.833374+00 nl v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Een hele mooie en leuke baan met rechte en moeilijke bochten"} {-0.08868608,0.10931988,0.01427182,-0.0675662,-0.12847008,-0.022929814,0.10877386,0.060541656,-0.014810026,-0.094818555,0.0013784894,-0.011211549,0.0071730027,-0.048531555,-0.032466892,0.0032742196,-0.011565675,0.097190656,-0.053440727,-0.0730717,-0.019235197,-0.046706256,0.095751576,0.033168133,-0.014013994,-0.007513173,0.11737488,-0.0022085877,-0.010082682,-0.012455727,0.10810512,0.02923578,0.023490537,-0.030653698,0.020076862,0.067537196,0.057683535,0.003023553,-0.066360466,0.059317406,-0.06638075,0.013220962,-0.06604136,-0.15055601,0.077518314,-0.030916423,0.0024486515,-0.012869063,-0.05791381,-0.032671034,0.02000344,-0.029192802,-0.0010623882,-0.046853993,0.04751959,0.010941965,0.0004291289,0.045181885,0.015822949,-0.030041734,-0.014078467,0.059279673,-0.04928373,0.053394005,0.02345676,-0.03934143,-0.041686133,-0.01565285,-0.15588759,0.036482476,0.041403282,-0.07754712,-0.032880362,-0.047303654,-0.06568306,-0.034971613,-0.027624141,-0.05955555,0.030167641,-0.017483326,0.007995511,-0.033313844,-0.0026873883,0.0041708783,0.008552412,-0.03989969,0.05590721,0.018019056,0.03295486,0.013099009,-0.013247963,-0.03239566,-0.07658912,0.042139705,-0.036419418,0.029658796,0.028019268,0.061210085,0.018595861,0.076857165,0.055709794,-0.0020045068,0.06106218,0.022273744,-0.079624414,-0.019405082,0.058547698,-0.0046759276,0.08497402,0.0008978784,0.0033525326,-0.07806372,0.059473462,-0.08188951,0.0059256586,-0.029294759,-0.07390993,-0.07038658,0.017083744,-0.064667836,-0.009296574,0.0344962,0.06836523,0.028157098,0.053445652,0.021098817,0.057987284,8.4325424e-33,-0.027112935,-0.113478504,0.030141154,-0.03348643,-0.047931753,-0.010108887,-0.08222139,-0.051314645,-0.05239659,-0.0913956,0.017074037,0.014253085,-0.04091518,-0.05819267,0.018565115,0.04556185,-0.008132303,0.044307895,0.018344745,0.010647179,-0.025793856,-0.017817426,-0.015217637,0.051325865,0.007908273,-0.07157287,0.029151928,-0.042185195,-0.06395601,0.06239612,0.047690507,-0.0075454204,-0.006076004,-0.0012770045,-0.10845048,-0.0040886574,-0.0075245695,0.03264718,-0.016436784,-0.0641602,0.07060802,-0.057615448,-0.029581519,0.016720481,0.08268239,0.02347471,0.03072163,-0.02786448,0.029658578,0.0080396775,-0.02563536,-0.017713388,-0.022290891,0.0023208093,0.0010604736,0.056887455,0.024153423,0.08770677,0.058011275,0.03768761,0.045954783,0.090434514,0.008698614,0.02793421,0.0751258,-0.053130247,0.03697322,0.047853418,0.013877692,-0.04265972,-0.02314747,-0.021069508,0.11682234,-0.038724087,0.052409302,-0.0214006,0.0045143496,0.021666212,-0.047690198,0.03211347,-0.0384739,-0.06087018,-0.0068795406,-0.0043236264,0.06910648,0.03697956,-0.011214485,-0.07813926,0.005371781,0.08931597,0.012235267,-0.01840717,-0.03943691,-0.09669483,0.07524554,-8.630838e-33,-0.001218819,0.03972163,-0.03174996,-0.0043311343,-0.009239892,-0.02292557,0.0022843366,0.06675887,-0.004256219,-0.0749389,-0.06909253,-0.13670315,0.10992537,0.013946604,-0.059019588,-0.009670755,0.012177891,-0.005493864,0.015828265,-0.027233055,0.047593407,-0.009661786,0.008489688,0.10889845,-0.039714586,-0.0016863574,0.024583546,0.041667547,0.008921705,-0.001086158,-0.026672477,0.02884552,-0.0034652124,0.08451273,-0.040553484,0.008351414,0.07959957,0.0034383463,-0.02536759,-0.0339475,-0.07980603,0.0066353506,-0.089424565,-0.00394723,0.03611769,0.060454562,-0.0896176,0.0120374905,0.040790003,-0.07892373,-0.015801731,0.044129364,0.041956536,-0.10381027,0.01734265,-0.034291096,-0.018358426,-0.059329126,0.021190349,-0.01632488,0.043003403,-0.014919185,0.098199524,0.069629215,0.012848466,0.01318574,-0.04519392,0.031581655,0.06492757,-0.08873589,0.043888543,-0.03732949,0.012557561,0.035657816,0.008508228,-0.027000878,-0.00973567,0.042599376,-0.034790743,-0.0061312644,-0.07834755,0.017986175,-0.054794412,-0.014410905,0.005996215,-0.033557802,-0.098642744,-0.02646205,0.0025964847,-0.045535274,0.03583773,0.09437643,0.031115362,0.023696091,-0.030362383,-3.060569e-08,-0.016001726,-0.0700953,0.013189634,0.03234156,0.06832896,-0.06275776,-0.0010452436,-0.0014617027,-0.0519795,-0.04177891,0.00026557667,0.10026022,-0.06353701,0.08410791,-0.0040418673,0.07457704,0.018567042,-0.11053949,0.04180067,-0.042584,0.07258189,-0.055966787,0.009178883,0.053653836,-0.07116035,0.058525987,-0.02739813,0.044719126,0.044248763,-0.12862249,-0.000741054,0.05398825,0.020131031,0.039670274,0.026605159,0.025332572,-0.08573578,0.071587086,-0.037197467,-0.0152333565,0.029166868,-0.039662175,0.12725492,-0.04760659,-0.0133021455,-0.014919715,0.023263926,0.07983902,0.08014665,-0.051437184,-0.117425,-0.043653857,0.036402665,-0.06117522,0.067359984,0.043570716,0.017605223,-0.06822492,0.016268253,0.017354557,0.057608303,0.053342357,-2.9080624e-05,-0.045244683} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.905746+00 2026-01-30 02:01:12.33315+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2203 google ChZDSUhNMG9nS0VJQ0FnSURZdXFDcU1BEAE 1 t 2206 Go Karts Mar Menor unknown Circuito grande y ancho, para novatos y expertos. Coches de todas las categorías,. circuito grande y ancho, para novatos y expertos. coches de todas las categorías,. 4 2020-02-01 01:52:39.833374+00 es v5.1 E1.03 {O3.02,A3.01} V+ I2 CR-N {} {"E1.03": "Circuito grande y ancho, para novatos y expertos. Coches de todas las categorías,."} {0.016339622,0.0060950783,-0.017771378,-0.015241799,-0.1018134,-0.027957078,0.012788714,0.077522516,-0.017615005,0.05829449,0.018822715,-0.029468264,-0.020077715,0.03783074,-0.067172445,0.058074985,-0.040843904,0.05331794,-0.006245526,-0.01920424,0.07498673,-0.06547765,-0.03819946,0.12555608,-0.09795582,0.028161682,-0.00862279,-0.023421997,-0.08890393,-0.1271957,-0.10386055,0.07051778,0.049192518,0.023862695,-0.025790758,-0.00080923695,0.05130443,-0.025330449,0.011033142,0.063692994,-0.14367147,-0.025625434,0.054947503,-0.04104366,0.016539628,-0.013983248,-0.031306643,0.020407727,0.033430923,-0.0794498,-0.06468666,-0.0855673,-0.032307684,0.012540149,-0.05031452,0.03236331,0.00595736,-0.042909395,0.037639037,0.076278165,-0.013233072,0.041000076,-0.056372784,0.06889224,0.0155319935,0.0045013116,0.010660024,0.027018793,-0.095031716,0.058163654,0.117601804,-0.07062239,0.038076006,-0.003974766,0.054713152,0.006334007,-0.011025355,-0.0002581379,-0.031734504,-0.08423926,-0.0009609275,0.0005569508,-0.019396236,-0.030407831,0.04850917,0.013615707,-0.07746804,0.034727227,0.027214818,-0.010441921,-0.049279287,-0.0190641,-0.059712455,-0.001710117,-0.04738077,-0.0016079566,0.06981174,-0.06702103,0.051930565,0.022292126,0.07851158,-0.033734586,0.03652754,0.02365474,-0.034577396,0.05466386,0.013165669,0.023720585,0.10189084,-0.004660765,-0.03098423,0.018629195,-0.07460938,-0.03822428,-0.04099863,0.012428246,-0.007931041,0.037360467,0.00764641,-0.053646684,0.03168879,0.01210473,-0.05355671,-0.002695824,0.036075253,0.022375127,0.011807834,7.87781e-34,-0.027396785,-0.017331146,-0.026290622,0.08352973,0.033427328,0.014389698,-0.024391947,-0.0069204965,-0.009980083,0.00857039,-0.09176661,0.10865105,0.00018667104,0.024878627,0.13336204,-0.0038889362,-0.032910705,-0.03808502,0.007938547,0.0052216616,-0.025014775,-0.00912861,-0.011975546,0.0737287,-0.053223576,0.029778527,-0.002882068,-0.099686585,-0.07882933,0.04732737,0.013327476,0.032729544,0.021266067,0.008601036,-0.0030665388,0.0059737167,0.11077422,0.031917006,0.06517962,-0.03132432,0.027338866,0.0060422965,-0.0076317964,0.021258844,0.014258504,0.004693681,0.025476046,0.069500566,0.07905658,0.059723068,-0.0822453,-0.06848311,0.025340507,-0.047470998,-0.012946312,0.092322506,-0.08611613,0.030605402,0.03895082,0.039620668,-0.02138892,0.07210967,-0.016590642,-0.013093019,-0.03144148,0.02421618,0.05830923,-0.031801593,0.11806487,0.058874216,-0.11565798,-0.009370278,-0.0027942425,0.00861621,-0.01425783,-0.043897774,-0.042982936,0.032904573,-0.028921416,0.038099196,-0.09295983,-0.036604233,0.008416107,0.023805087,0.03887708,0.08919717,0.078032434,0.046088867,-0.0066682952,0.08185323,-0.058381326,0.099551246,0.06480458,-0.05205694,0.07571779,-3.3042794e-33,-0.03201886,-0.028289761,-0.03973052,0.06418576,-0.017300352,0.017840039,-0.09040738,-0.068382286,-0.081960216,-0.05597279,-0.088034,-0.011826135,0.04147914,-0.09313681,-0.0587827,-0.00062691636,-0.092163645,-0.049549397,-0.059396833,-0.01572191,-0.043166414,0.049527027,-0.09711835,0.01017783,-0.031864904,-0.036483977,-0.07069374,0.043933317,-0.015627563,0.018578129,0.028298065,-0.035350673,0.01683151,0.013396336,-0.033217553,0.094189934,0.028274711,0.031799614,-0.014595697,0.06733276,-0.04680678,0.09165036,-0.0353002,-0.04214192,-0.02861384,0.07601362,-0.058015343,-0.04225304,-0.031520184,-0.022752907,0.039082833,-0.06256135,-0.012233082,-0.095915794,0.03439193,-0.039980907,-0.059975944,-0.10734312,-0.051497597,0.04005052,0.06875682,-0.0050321547,-0.0019314465,0.015406224,0.034569766,0.013451901,-0.0077655213,0.00209727,0.064345114,0.04733945,0.111353226,0.059233833,-0.038752306,-0.03488915,-0.07332481,-0.08423441,-0.115195855,0.004073234,-0.029376974,-0.016093932,0.06275027,-0.020500151,0.07893432,-0.04709531,0.0206759,-0.028532052,0.011008466,0.06589049,-0.017605552,0.01654027,0.025252433,0.027324961,-0.052312665,-0.06545355,-0.029261073,-2.7776046e-08,0.017555498,0.016395407,-0.062670864,-0.028822938,0.057192434,-0.03638239,-0.027714375,0.027749194,-0.0013397454,0.022803662,0.02820163,-0.03297443,0.0026522602,0.09278886,0.034003872,0.041587535,0.07940129,0.10805792,-0.015540165,0.04079374,0.07341824,-0.00370539,-0.07119245,-0.025995249,0.038196824,0.019772153,-0.038241297,0.024084482,-0.026419733,0.0052139484,-0.0644854,0.00710611,-0.0108015025,-0.051047783,0.089748584,0.02098922,-0.029917544,-0.045871016,0.0041859923,-0.05837908,0.035464242,-0.02272859,-0.008538453,-0.0030812086,0.013371951,-0.11310291,0.061819207,-0.029911824,0.009983437,0.115834475,-0.021706693,0.0032713353,0.025750997,0.015774874,0.026872031,0.00023402195,0.07170613,-0.042403854,-0.06716166,-0.020901114,0.09893644,0.11295148,0.026924849,-0.046453133} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.926578+00 2026-01-30 02:01:12.349318+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2204 google ChdDSUhNMG9nS0VJQ0FnSURTM1pyOWlBRRAB 1 t 2207 Go Karts Mar Menor unknown Estupenda pista, muy bien organizados y buenos karts. estupenda pista, muy bien organizados y buenos karts. 5 2021-01-31 01:52:39.833374+00 es v5.1 E1.03 {J1.03,O1.03} V+ I3 CR-N {} {"E1.03": "Estupenda pista, muy bien organizados y buenos karts."} {0.0038604492,-0.03678436,-0.015017009,-0.02773296,-0.0606175,0.025077518,-0.01584661,0.048783157,0.0044856644,0.034553796,0.04747027,0.014406292,-0.065708734,-0.04025878,0.035755675,-0.017014777,-0.025916738,0.044875998,0.018202003,-0.0012464129,0.028827041,-0.08981898,-0.044997647,0.10543583,-0.101665996,-0.025105806,0.020935195,-0.007819028,-0.015121305,-0.06824636,-0.045160986,0.059105184,0.06687385,0.018716145,0.058176994,-0.04582869,0.09893428,-0.082648896,-0.020614346,-0.0066716895,-0.060123593,0.0029601157,-0.021527417,-0.020488223,0.032463025,-0.055006165,-0.057860438,0.02781466,0.008570344,-0.028890021,-0.036626667,-0.07605766,0.00064290455,0.012757739,-0.023474183,0.004928407,-0.09073962,-0.0065161847,0.080408074,0.071298726,0.008381782,0.06935749,-0.08565214,-0.022756096,-0.02144744,-0.052515022,0.04374578,0.039786078,-0.060296442,0.041890427,0.1816843,-0.04542936,-0.014790636,0.06311544,-0.015874378,0.06082905,-0.007673571,0.0018147907,-0.07169725,-0.03370606,0.004784402,0.015319992,-0.028421724,-0.03243181,0.0035184016,-0.01889544,-0.10191038,0.06179901,0.018217525,0.032524385,-0.05278915,0.11493436,-0.009922824,-0.008492236,0.041150328,0.031457324,-0.008084863,-0.06737282,0.025202937,0.020406215,0.09301349,0.020552158,0.060192183,0.018435337,-0.09240752,0.0004274211,0.02707765,-0.035225105,0.05624345,0.03721349,-0.062708534,0.0034380213,-0.062455215,-0.0035832808,-0.11961558,0.042773087,0.013609856,-0.005871538,-0.042164065,-0.10520869,0.031667214,0.034648683,-0.022316577,-0.013104112,-0.009303462,-0.07823412,0.0024555696,5.9207056e-34,-0.09234057,-0.03086414,-0.034349848,0.06822298,-0.01054751,-0.056364752,-0.011843048,-0.097331576,-0.10977771,-0.048679695,-0.083997495,0.09747413,-0.016449649,0.01137451,0.100721054,-0.0025590586,0.012797837,0.0326555,0.100026175,0.00079414976,-0.06973495,-0.04657582,0.031669427,0.050703295,0.04313772,0.029082967,0.0005988935,-0.0827604,-0.08714488,0.055544738,-0.018794028,0.04390334,-0.010400602,0.0060156374,-0.014105059,-0.027768226,0.03568841,0.033792928,-0.046660304,0.028505681,0.041224044,-0.010941782,-0.0464571,0.023947466,-0.008560963,0.05350483,0.012099863,0.03528822,0.104219206,0.0082037635,-0.06718017,-0.03645845,-0.050006915,-0.04385206,0.0054994067,0.021119995,-0.07504496,0.0098292045,-0.06648245,-0.07749718,0.051529128,0.05068886,0.024326373,-0.03568967,-0.062248364,-0.0025091155,-0.00045973866,-0.025791006,0.116962396,0.076263346,-0.08830278,-0.057587154,0.04664162,0.05763655,0.03330277,0.00012745161,-0.03883192,0.082069196,-0.03809817,0.080587864,-0.04549544,0.017121287,-0.013848483,0.048716497,0.057456512,0.070409514,0.060984157,0.040116955,-0.037458606,0.08221889,-0.027057962,0.048670344,0.042155333,0.048468444,-0.01579907,-2.7709207e-33,0.046926722,-0.049843147,0.029603403,0.046369378,-0.03909706,0.028500456,-0.0099791465,-0.023608666,0.014800579,-0.050227154,-0.094504364,-0.07602297,0.14280151,-0.08219383,-0.024947701,0.08043533,-0.02042163,-0.041752663,-0.064639606,-0.03889705,-0.05660805,-0.0027307048,0.057126235,0.016791327,-0.03850244,-0.033559356,-0.059913814,0.02225604,-0.052416436,-0.012521455,0.037379675,-0.07529993,-0.056877933,0.013028682,-0.025888603,0.10374091,0.04640467,0.08297173,0.024033735,0.061424926,0.0021288292,0.06782854,-0.058195025,0.0054209004,0.004521252,-0.0031077794,0.024535155,-0.0879911,-0.038133115,-0.06095908,0.09109123,0.014149077,-0.012855869,-0.0015418348,0.072715595,-0.011564938,-0.051438175,0.011291116,-0.08524,-0.0023763129,0.045710206,0.020540223,-0.075246885,0.017057985,0.061432227,-0.014890016,0.022284225,-0.063123934,0.02574145,0.045660455,0.08926054,0.025175756,-0.03287929,0.0577835,-0.034172066,-0.026998052,-0.046804886,0.008658171,0.0291113,0.01568345,-0.027286137,0.03816245,0.0080251405,0.032495756,0.018990707,0.011706731,-0.00024699172,0.038581803,0.040116835,0.044206098,0.07513876,0.0037610026,-0.0016367928,-0.017942227,-0.03032662,-2.1722878e-08,0.051512513,-0.007302127,-0.114963114,0.057868265,-0.0076200794,-0.06240658,-0.059507217,0.092432395,0.033963118,0.069360696,-0.06575957,-0.0235046,0.04312487,0.054032374,-0.021935405,0.04835067,-0.0078711035,0.19796358,0.02023234,-0.044313055,0.042679474,0.034503933,-0.025554309,-0.017401097,-0.092499636,-0.028503437,-0.07224661,-0.03410399,-0.04118381,0.042077735,-0.020915853,0.020197533,-0.043212734,-0.078835435,-0.0045068734,-0.021972066,-0.014060064,0.020161327,-0.022638487,-0.024200441,0.051210236,0.008186372,-0.10023283,-0.017081104,0.019424312,-0.08132357,-0.013733641,0.035585377,-0.037336815,0.07169407,-0.0217049,-0.0018686503,0.086032845,0.014600279,0.029073205,-0.015873162,0.06127598,-0.053050604,-0.033027407,-0.031171564,-0.01010256,0.036195904,0.07176572,-0.051870298} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.936536+00 2026-01-30 02:01:12.435483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2205 google ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB 1 t 2208 Go Karts Mar Menor unknown Mi mejor experiencia en los karst pero se podría mejorar un poco más el precio,es un poco caro mi mejor experiencia en los karst pero se podría mejorar un poco más el precio,es un poco caro 4 2016-02-02 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-B {} {"V1.01": "pero se podría mejorar un poco más el precio,es un poco caro", "V4.03": "Mi mejor experiencia en los karst"} {-0.009992456,0.057760593,0.034147315,-0.020985017,-0.09626708,-0.03848301,0.029297777,0.03659498,0.014677947,0.03710423,0.027973572,-0.012429258,-0.06760146,0.041038457,0.005520063,0.013456274,0.03305301,0.022095313,0.037211236,0.0036624533,0.06657123,-0.06294622,-0.12433716,0.081512585,-0.058403444,-0.022217613,-0.024897655,0.042309847,0.0009723715,-0.09079177,-0.0540915,-0.06717272,0.16683437,-0.035469092,0.049473193,0.041175433,0.01418469,-0.059684586,-0.046528812,0.02434924,-0.088495344,0.0002613347,0.0022108092,-0.026364239,0.012712303,-0.013054207,0.04718417,0.019188995,-0.011152682,-0.06945954,0.0048176614,0.0016093017,0.002608503,-0.08328732,-0.02534764,0.018624203,-0.09217518,0.048513073,0.08858926,0.036538962,0.02661462,0.015218336,-0.087613754,0.019998712,0.018890379,-0.054301348,0.038129076,-0.028469356,-0.084994525,0.038838454,0.12861775,-0.049613655,0.07822832,-0.025456348,0.0100909285,0.042993613,0.0044954238,0.043565832,-0.05041298,0.0013165937,-0.0069237477,0.0451099,-0.08351057,-0.10138294,-0.07197111,-0.0035050295,-0.0010585763,0.022066161,0.019026743,0.00033906268,-0.010844309,0.043689843,-0.08952015,0.0071012,0.04396706,0.038506977,0.031044189,-0.071747266,0.067280136,0.0073800157,0.056005463,0.06867303,0.06172372,0.009756639,0.008791904,0.018878782,-0.059813146,-0.06785628,0.053873,0.06850451,-0.052977044,-0.00084440806,-0.06846127,-0.036837555,-0.110506035,-0.06017432,0.015298811,-0.025183689,0.03527672,-0.02557658,0.022405885,0.0017755401,-0.074922085,-0.013026548,0.014284436,-0.077832535,0.062194057,8.267951e-33,-0.06151565,-0.056485604,0.04142663,0.012579044,0.03333031,-0.05665748,-0.020515673,-0.052232042,-0.04079973,0.022860702,0.019710036,-0.016155668,-0.011215798,-0.042431906,-0.012708891,0.07122021,-0.009393259,-0.04130139,-0.011733191,0.056860015,-0.035581246,-0.006234389,-0.04153066,0.039729528,-0.01224072,0.11024586,0.02043184,-0.08062738,-0.06974521,0.029435217,0.029734839,0.06523083,-0.02079404,-0.02255836,-0.03440094,-0.0034858058,0.040904973,0.035042513,-0.03283884,-0.03012761,-0.008072056,0.038937718,-0.026917128,-0.0070985197,-0.026823636,-0.08215542,0.068109564,0.08637613,0.09407946,0.008057573,-0.036959615,-0.08241007,-0.11951289,0.008880639,0.03179496,0.068771,-0.055702075,0.014438158,0.034219366,-0.036350466,0.0279491,0.09481151,0.014854657,0.05831588,-0.04608318,-0.07625529,0.035159383,0.055768427,0.14014658,0.0550748,-0.06165078,-0.047020342,-0.00599943,-0.0064967996,0.0040366324,0.039677493,0.027884742,0.030324826,0.050138645,0.035186294,-0.0738008,0.013100539,0.095002785,0.015885351,0.049322464,0.12765616,0.0046390276,0.029988559,0.0059858165,0.104337886,-0.0010887827,0.0106553435,0.053305652,-0.04200095,0.0073544392,-1.0450015e-32,0.055282228,-0.032495342,0.0672088,-0.036122993,-0.046169642,0.03662819,-0.05708215,-0.06579811,-0.046186756,-0.0033947611,-0.114230976,-0.03058259,0.12206781,-0.030845111,-0.05645772,0.10531016,0.06629274,-0.033425555,-0.075739846,0.05250274,-0.06700641,0.020449786,-0.029614666,0.01664569,-0.0052136187,-0.07753277,0.06667272,0.016654255,-0.10582842,-0.055159103,0.03556235,-0.081871964,0.021418974,0.01607516,-0.071210444,-0.03162761,-0.053621832,0.010375106,0.06027319,0.094684534,0.026485424,0.08879313,0.011533351,-0.012818903,-0.05763125,-0.010307395,0.050096434,-0.07116322,0.002043666,-0.024211949,0.075277686,0.017501473,-0.046689954,-0.046632446,0.02789423,-0.027802447,0.0042275214,-0.03963486,-0.10240001,0.017287012,0.026486384,-0.01906149,-0.030766498,0.019919675,0.033294357,-0.034752384,-0.03638058,0.0088581,-0.05605089,-0.0021677841,0.07293202,0.045389388,-0.05671443,-0.023107719,0.010835137,-0.03336755,-0.054071505,0.07317942,0.05218371,0.028591175,-0.013953402,0.00785484,-0.012210058,-0.010890468,0.020013483,-0.01129156,-0.03397526,-0.001003643,0.06598348,0.025224771,-0.03568151,0.055206347,0.00800997,-0.048526507,-0.011873023,-3.625189e-08,0.06249568,-0.06538064,-0.072017506,0.04560237,-0.0050904504,-0.03536708,-0.043919075,0.062444005,-0.06489987,0.043639924,-0.033694655,0.0011721617,-0.04487538,-0.037361506,-0.049963955,0.030447694,0.11633793,0.07285163,-0.009596827,0.008729879,-0.03213593,-0.0016268737,-0.046181567,-0.04083599,0.029163538,0.016580947,-0.0033301755,0.02324339,-0.016957914,0.010927171,-0.027870392,0.01531758,-0.042605024,-0.09224292,-0.0009483786,0.005085894,0.04186033,0.047758233,-0.046174224,-0.075578876,0.04044837,0.010370639,-0.04837594,-0.012403374,-0.1708779,0.01903662,-0.14295653,0.027225604,-0.011619106,0.007930395,-0.047514543,0.004332977,-0.00027070165,0.07722811,0.08548144,0.03184749,0.0680222,-0.03409596,-0.05610932,0.007074679,0.033909023,0.057662155,0.02605422,-0.005960045} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.123929+00 2026-01-30 02:01:12.440022+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2206 google ChdDSUhNMG9nS0VJQ0FnSUN3MkpDRjNRRRAB 1 t 2209 Go Karts Mar Menor unknown Lugar excelente i divertido para los aficcionados de moto i karting!!! lugar excelente i divertido para los aficcionados de moto i karting!!! 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.03 {O1.05} V+ I3 CR-N {} {"V4.03": "Lugar excelente i divertido para los aficcionados de moto i karting!!!"} {0.006915009,0.00015847509,0.041096438,0.00084432657,-0.032265186,0.00046668388,0.07607108,0.0293487,0.046516225,0.014654641,0.0630643,-0.030542288,0.0013043808,0.009392449,0.0043674223,-0.018615453,-0.02529277,0.06356798,-0.00057093607,0.086442426,0.06691806,0.04193342,-0.086485885,0.09300883,-0.1218854,0.022242658,0.00028676708,0.0038576801,-0.0022376177,-0.08874282,0.028497262,0.13120225,-0.010822965,0.002817295,0.029008351,-0.07821909,0.004156668,-0.06359594,0.03158999,0.03827721,-0.07986238,-0.04418521,0.023064846,-0.056493983,0.04808752,-0.022254784,-0.037800517,0.071125016,-0.005832327,-0.0059998143,-0.020372964,-0.057709545,0.010482663,0.030523991,-0.010184031,-0.068534866,-0.076944776,0.025817879,0.07949665,0.072115295,-0.0441769,0.052592274,-0.04776251,0.049231354,-0.08689049,-0.084913366,0.01288108,0.0048706043,-0.09932768,0.13749254,0.09769994,-0.005316825,-0.009400175,-0.0074957386,-0.012247214,0.036565796,0.014246742,0.010322248,-0.07020349,-0.028656216,0.051514268,-0.0666716,-0.0048049153,-0.11236463,0.07647636,-0.04399973,-0.040453356,0.0625834,0.05594924,-0.02560635,-0.045790147,0.007126481,-0.09178531,0.0036565783,-0.07225496,0.043027475,0.010360354,-0.07065143,-0.025862698,0.026382597,0.08504626,0.03915178,0.057355635,-0.011421136,-0.04991736,0.021972936,0.027378645,0.017904006,-0.009851743,-0.009894482,0.025026994,0.001974101,0.013616027,-0.06384646,-0.08768264,-0.01120004,0.009142822,-0.0040577534,-0.020031402,-0.04027702,-0.0053344807,0.037476093,-0.07711968,-0.00066440646,0.039929125,-0.08528727,0.08798896,5.166531e-34,-0.09342542,-0.07463829,-0.03350219,0.10871632,-0.0038156519,-0.03310998,-0.022203475,-0.06058569,-0.0619704,-0.028177945,-0.012943899,0.00736675,-0.04021901,0.022539416,0.04288969,0.053110685,-0.030621113,-0.06910127,0.053103805,0.038141493,0.002020022,-0.056704663,-0.0029761174,0.045865256,-0.050355308,0.09784214,0.021407142,-0.10384841,-0.05788829,0.09922631,-0.017054027,0.034976292,-0.014599892,0.014630761,0.0015439203,0.04103437,0.0013748873,-0.015427315,-0.0018435925,0.014682912,0.011364663,-0.014192258,-0.10029544,0.02827126,-0.025205268,0.03151225,0.04730359,0.028977241,0.1084878,-0.0001200279,-0.082548626,-0.061419412,0.017257012,-0.05197334,-0.013230174,0.033436637,-0.09106556,0.03868755,-0.015147362,-0.04841333,0.009830943,0.015143761,-0.054134004,0.016659992,-0.10341874,-0.04497458,0.008165028,0.003787248,0.09568797,0.08050955,-0.083230875,-0.035570126,0.02227208,0.008667041,0.073293895,-0.0030269094,0.005191314,0.021879107,-0.011116162,0.046133086,-0.04613811,-0.035372194,0.013457356,-0.012231651,0.14748171,0.052449785,0.004747378,0.037555445,-0.0064319633,0.049868718,-0.04939982,0.03647637,0.039588895,-0.032666672,0.07079675,-3.1820426e-33,0.04094387,-0.008715295,0.089786924,0.045951355,-0.032756604,0.027277144,-0.013937695,-0.035900075,-0.032598197,-0.04749396,-0.18212354,-0.046936937,0.043608803,-0.07797969,-0.066490024,0.047665592,0.032303322,-0.050542552,-0.05736478,0.005795338,-0.11656657,0.016635995,0.028982354,-0.03402846,-0.024687137,0.010721851,0.0595372,0.02325345,-0.048472706,0.034322057,0.034280203,-0.058909796,-0.0053620883,-0.030483216,-0.06736606,0.055565313,-0.017724814,0.07135847,-0.034410745,0.056948856,-0.0742888,0.048116155,-0.03548689,0.008714222,0.0011493105,-0.0023059994,0.044041306,-0.09915009,-0.044784475,-0.0029344615,0.041660618,-0.0034768404,-0.034615997,-0.042696085,0.04720146,-0.08821592,0.016599702,-0.08702573,-0.14087896,-0.0255504,0.03900129,0.11101219,-0.017750988,-0.022564745,0.10337428,-0.01335185,-0.04514953,-0.025036182,-0.014546006,0.018263655,0.0456519,0.07684491,-0.0635591,0.062794924,-0.01186663,0.003911451,-0.045562226,0.037586845,0.016215228,0.046681058,-0.0019106732,-0.013929281,0.026520424,0.014534602,-0.02565818,-0.032056257,-0.060640447,0.0011129933,0.0005072108,0.0010939044,0.03586839,0.07360012,0.021814609,-0.015371924,0.0050316732,-2.4537592e-08,-0.0074231797,-0.028742108,-0.046783846,-0.007567331,0.04553981,-0.07354998,-0.07311779,0.035968155,-0.009006412,0.03693992,0.012801855,0.008843821,0.079282776,0.083453715,-0.008895359,0.066345006,0.09101553,0.08299784,-0.028022675,0.037330307,0.07015932,-0.019371724,-0.018855736,-0.027498811,0.027238104,0.022876237,-0.042163655,-0.019428425,0.019829908,-0.066309124,-0.016639838,-0.019993817,-0.043659292,-0.044014346,-0.12566595,0.0053142617,-0.034551177,0.03627373,0.00722759,0.03828262,0.04281676,0.01619538,0.0009035888,0.009594192,-0.05902849,-0.05717599,-0.012618814,0.033662494,-2.3254026e-05,0.073695295,-0.09360567,-0.007829564,0.049946133,0.09021221,0.09160339,0.01684072,0.03310299,-0.047452256,-0.07188152,-0.04727459,0.028484555,0.07068181,0.011957903,-0.05562335} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.148563+00 2026-01-30 02:01:12.449567+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2209 google ChZDSUhNMG9nS0VJQ0FnSUQ4bS03S0NnEAE 1 t 2212 Go Karts Mar Menor unknown Buenos karts,buen trato\nEl mejor plan para pasar la tarde buenos karts,buen trato el mejor plan para pasar la tarde 5 2021-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.02,P1.01} V+ I3 CR-B {} {"V4.03": "Buenos karts,buen trato El mejor plan para pasar la tarde"} {-0.059341777,0.05500767,0.03960567,0.008612225,-0.040467475,0.017070513,-0.006426348,0.058948122,0.02239182,0.03935277,0.007887872,-0.022015875,-0.14022698,-0.050222427,0.032538842,0.008112979,-0.06480941,0.053039838,-0.011936097,-0.040677592,0.08589319,-0.028021531,-0.061394233,0.06457236,-0.06828736,-0.010675682,0.0582786,0.021816565,0.05352,-0.057155542,0.00092823716,0.06107847,-0.0634845,0.030215241,0.0152278785,0.01901998,0.014608513,-0.097655065,0.018118547,0.03332846,-0.0031709268,-0.020608833,-0.00044194268,-0.011892622,0.0064563737,-0.06409514,-0.028779283,0.07019586,-0.03798409,-0.0012523582,-0.03650733,-0.045477103,0.026496926,-0.029414838,-0.040650602,-0.023268407,-0.033844363,0.017035505,0.14457041,0.03760568,-0.007280402,-0.01701442,-0.046593413,-0.025135402,-0.061272908,-0.033636846,-0.018012375,0.061862085,-0.037579525,0.11475206,0.0809655,-0.1037571,-0.033756677,0.041542437,0.010839806,0.019289238,0.029521672,0.029664671,-0.09825491,-0.06680906,0.010483652,0.0026283453,-0.0007910213,-0.045275144,-0.05471154,-0.021669813,0.01543963,0.06038162,0.10932693,0.016265677,-0.01568332,0.0649537,-0.11537288,-0.034938376,-0.016340395,0.039894853,-0.004742289,-0.08815759,0.004931108,0.028003925,0.081953615,0.06798822,0.08162305,0.034971043,-0.049160194,-0.026494622,0.021290828,-0.040126096,0.053303268,0.018146167,-0.036683127,-0.023007346,0.0014340276,-0.02904808,-0.004452023,-0.054543685,-0.004260228,-0.012846552,0.05101772,-0.009254259,0.067263044,0.023308491,0.0051378678,0.0032055466,-0.005381169,-0.09161563,0.03246748,3.393083e-33,-0.062911086,0.0043073455,-0.0042727543,0.08763727,0.030308692,-0.04268689,-0.04837435,-0.0044349707,-0.050799165,0.03798645,-0.036625154,-0.0216267,-0.039211947,-0.014728909,0.10879627,0.051381916,0.017152704,-0.0063066296,0.04223365,-0.047966186,-0.086250775,-0.046221063,0.023073051,-0.043133684,-0.02958835,0.06236781,0.013217716,-0.059280217,-0.061350793,0.03633857,0.04726489,0.12659195,-0.036403988,0.042094957,-0.0605339,0.029263187,-0.02790802,0.042689037,-0.035520818,0.01772631,0.031346172,0.0070113786,0.035638873,-0.018426146,0.044700477,-0.042117666,0.06447771,-0.0035424605,0.016731929,-0.02047916,-0.0534556,-0.009301381,-0.0780593,-0.050794967,0.03833016,0.0041994816,-0.07288513,0.023072515,-0.011922861,-0.006295806,0.09833338,0.018146992,-0.013846447,0.028992623,-0.035520356,-0.0011134222,0.03048576,-0.02308626,0.1322138,-0.0023684874,-0.01805072,-0.055933837,0.12436078,-0.013710694,-0.0070059365,0.06706413,-0.06940468,0.06749975,-0.031737998,0.008295621,-0.10306409,-0.0128421,0.05525514,0.008845396,0.11625761,0.047556426,0.04257406,0.032635182,-0.008668548,0.05626745,-0.07695394,0.036209807,-0.011580957,-0.0060649924,0.008366242,-4.901091e-33,0.09751564,-0.018571638,0.0025798841,0.03096652,-0.025827432,0.0067752693,-0.0358408,-0.035680525,0.0030646152,-0.0043003554,-0.07355396,-0.1115637,0.06343283,-0.06043937,0.0202629,0.10161807,0.052364245,-0.07486742,-0.07691571,-0.088609,-0.051825456,0.010325782,-0.037168156,0.0905694,-0.05757786,-0.054655124,0.0626186,0.03354723,-0.04680657,-0.049481206,0.06236429,-0.114151366,-0.0056805294,0.014148377,-0.00895155,0.056408107,0.05088236,0.099314496,0.045862265,0.06676758,0.034369264,0.04544837,-0.059277818,-0.09249914,-0.02587461,-0.0623713,0.0020635428,-0.09280276,-0.042189993,-0.05493476,0.11311557,0.0023802568,-0.055446673,-0.09861526,0.02482524,0.017572597,-0.06370435,-0.06339384,-0.05976782,0.010701236,0.072068706,0.053515323,0.008135135,-0.05796152,0.03437853,-0.0052164644,-0.06623802,-0.026389707,0.03830394,0.056617294,0.050614126,0.0037843538,-0.037913475,0.09191359,-0.009871682,-0.08302635,0.0060457145,5.8487203e-06,0.03742663,-0.038949594,-0.04990096,-0.0495073,-0.024897432,0.05780003,-0.01010337,-0.03267225,-0.05128336,0.016965365,0.06464189,0.038129907,0.07607757,0.035038106,0.0024341354,0.017080925,-0.05433867,-2.5578876e-08,0.04328559,-0.02581469,-0.09278763,0.06820962,0.027010934,-0.037102867,-0.08230771,0.0178605,0.016452897,0.08526927,-0.086398326,-0.006576033,0.028039174,0.085713685,-0.06317609,0.06792583,0.043196183,0.055415172,0.019983456,-0.081453785,0.028098792,-0.009152815,-0.03483461,-0.020773152,0.014777885,-0.019843183,-0.04063574,0.101635635,0.06273725,0.030027699,-0.06086001,0.055612635,-0.053687543,-0.053544465,0.021469746,0.015879134,-0.0062593576,0.00074462494,0.039109383,0.029717596,0.09242194,0.003489651,-0.03277001,-0.030679695,-0.031526107,-0.069973506,-0.03378494,0.00989636,-0.064686425,-0.013538939,-0.07675696,-0.0086283805,0.08899161,0.092630856,0.09150679,-0.035169367,0.011910077,-0.05733293,4.5588975e-05,-0.016493287,0.031463902,0.046872146,-0.02391373,-0.052113444} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.197742+00 2026-01-30 02:01:12.463273+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2211 google ChZDSUhNMG9nS0VJQ0FnSURLNWE2bUpREAE 1 t 2214 Go Karts Mar Menor unknown Experiencia muy buena para pasar con los pequeños y los no tan pequeños. experiencia muy buena para pasar con los pequeños y los no tan pequeños. 4 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {A3.01} V+ I2 CR-N {} {"V4.03": "Experiencia muy buena para pasar con los pequeños y los no tan pequeños."} {0.05559857,0.036179427,0.01029973,-0.014579361,0.022946889,-0.0138286585,0.12690622,-0.019388987,0.012970549,0.026246235,0.16021441,-0.002277336,-0.028946333,0.0235554,0.11660877,0.045372542,-0.04581972,-0.04848357,0.02325173,-0.0131155215,0.056233358,-0.05288938,-0.03608435,0.02746201,-0.16002615,-0.054119773,-0.0010158345,-0.030858343,-0.03331686,-0.031109357,-0.08550894,0.048742168,0.03342588,-0.0033762704,-0.03446675,0.0014335708,0.08787435,0.018160854,-0.053348202,0.029808685,-0.16338272,-0.009411523,-0.031619478,-0.032572925,-0.0012326755,-0.08689592,0.046726454,0.054416418,0.0062991814,-0.056288365,0.0023504824,-0.011336609,-0.04187507,-0.014024463,0.021387795,0.010655276,-0.09789292,0.005024786,0.022972705,0.029647697,0.0029080813,0.03004294,-0.110114515,-0.018301398,0.08412792,-0.0073786317,0.063055515,0.025994023,-0.035436813,0.015392332,0.053029485,-0.049809013,-0.044377845,0.056737904,-0.039721925,0.015959714,-0.020366836,0.029822566,-0.12591252,0.005654597,-0.02442115,0.04755688,-0.048235815,-0.00671925,-0.0134953335,0.027684232,-0.052288495,0.062116303,0.020408344,0.012241029,-0.022130158,0.06740147,-0.11794673,0.023833502,0.0113322465,0.046850882,0.01630758,-0.08948759,0.010502313,0.057850696,0.06799328,0.0578935,0.12652233,0.04260673,-0.040504575,0.014360148,-0.0028466939,-0.05442732,0.006597079,-0.0033457761,-0.04747987,-0.03591294,-0.0145595595,0.0397767,-0.09621317,-0.072403274,-0.03031883,-0.023649115,-0.03465978,-0.08967076,0.06268982,0.04462967,-0.057700865,0.03817229,-0.0005198845,-0.020763932,0.077709496,7.973571e-33,0.019103877,-0.022000065,0.00996189,0.066773005,0.041255698,0.057121042,0.05543741,0.010429154,-0.0008137094,0.00840988,-0.015065669,0.057626225,0.053614788,-0.03402974,0.044107053,0.049146112,-0.030731097,0.060260247,0.015158785,0.04739666,-0.07343602,0.019904349,-0.057640325,0.005388898,-0.07846133,0.1127494,0.023361476,-0.038135033,-0.029864779,0.03482586,0.022273105,0.063655354,0.0169634,-0.039509486,0.027701136,-0.03500752,0.062003642,0.048723705,0.04225188,-0.054328386,0.00034738338,0.047219984,-0.00824234,0.040426318,-0.011007686,0.015232443,0.09961756,-0.0029476734,-0.057767875,0.020491272,-0.030866275,-0.0027835479,-0.06861234,-0.011887902,-0.047229473,0.020190353,-0.014517482,0.04105345,-0.05781333,-0.10165088,0.042006984,0.0077577783,-0.027629575,-0.14502715,-0.07567423,-0.06252693,-0.006793042,0.004776061,0.11687557,0.048202313,-0.023063295,0.040871285,-0.0452122,0.021827674,0.08902982,-0.008605594,-0.07210168,0.039811462,0.043971,0.051320914,-0.0811232,0.028757267,0.025709214,0.0028822818,0.093702674,0.08529969,0.052689925,0.07368816,-0.015680842,0.08301759,-0.05529923,0.10275299,-0.0030016033,0.0106210625,0.05201903,-8.7894644e-33,-0.027874725,-0.02448901,-0.012153075,0.030453203,0.020773206,0.011628686,-0.00449383,0.019445252,-0.011377302,-0.11678821,-0.070206836,-0.11771874,0.10118316,-0.0057301703,-0.022428684,0.08816051,-0.027935099,-0.041361257,-0.09743137,-0.0025892782,-0.0152775915,0.031170292,0.03468224,0.04078178,-0.014726412,-0.054763094,-0.01824466,-0.0023549444,-0.114016175,-0.0041911486,0.10315244,-0.03575639,-0.025364613,0.04303877,-0.054821815,0.026982464,0.04462335,0.03833101,-0.006815654,0.04613727,0.03284927,0.06823041,-0.022044556,-0.035581104,-0.050063483,0.03170346,0.021818604,-0.11577942,-0.0739637,-0.013210393,0.074943386,-0.019856151,-0.058627177,-0.04960606,0.051723797,-0.03939949,-0.033928357,-0.07031138,-0.09120614,0.013263541,0.04328353,-0.030799028,-0.014573036,-0.0018607537,0.056960586,-0.0002891318,0.03534956,0.09155926,0.024269434,0.038094953,0.087304026,-0.029995663,-0.09193743,-0.013263059,-0.016288495,-0.011408152,-0.044425454,-0.02122274,-0.036597196,0.010984249,0.01205225,0.015173951,-0.0010231361,-0.054715514,-0.03127736,0.018285964,-0.039113734,-0.0036887457,-0.017475996,0.027768258,-0.021944983,-0.01492669,-0.06532078,-0.05810119,-0.011893263,-3.1029803e-08,-0.0023073961,-0.039801285,-0.0042369305,0.016391097,-0.029964127,-0.015008416,-0.016993744,0.12826546,-0.0013265125,0.019502642,-0.0026078946,-0.03998397,-0.015179448,0.0669918,0.048989777,-0.005975318,0.16246144,0.033583015,-0.04100128,-0.065140255,0.011339308,0.011102264,-0.061062828,0.068872586,0.0011662005,0.0063687335,-0.042766582,-9.935871e-05,0.008894085,0.048363846,-0.037967872,-0.05923825,-0.0453946,-0.058291733,0.016839594,-0.046698317,-0.04595695,-0.03198665,-0.0033755768,-0.009687908,0.05129755,-0.00275295,-0.052533463,0.032292936,-0.04802298,-0.09517626,0.0016240311,-0.033464,-0.04158538,0.035122972,0.05715491,-0.02751185,0.037713148,0.03431374,-0.03264623,-0.05419698,0.048652258,0.09452512,-0.023685796,-0.0088126855,0.042664297,0.066355094,0.022047993,-0.026861263} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.2254+00 2026-01-30 02:01:12.470125+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2212 google ChZDSUhNMG9nS0VJQ0FnSUN3dUxQQ05BEAE 1 t 2215 Go Karts Mar Menor unknown Un trazado para auténticos leones, trato exquisito, recomendable 100% un trazado para auténticos leones, trato exquisito, recomendable 100% 5 2018-02-01 01:52:39.833374+00 es v5.1 O2.03 {P1.01} V+ I3 CR-N {} {"O2.03": "Un trazado para auténticos leones, trato exquisito, recomendable 100%"} {-0.010037247,0.007175302,-0.11570487,0.034508538,0.006300822,-0.010364179,0.070077345,0.068692595,-0.06048674,0.00929481,0.10492561,-0.07902001,-0.09105579,0.030050537,-0.019018173,0.018829599,0.033074852,0.063489504,-0.046372008,-0.025255123,0.011918279,-0.011202514,-0.027923841,0.076603934,-0.061130412,-0.030142803,-0.055009525,0.046912294,0.018275077,-0.052237205,-0.008622634,0.07194482,0.07283789,-0.029769126,-0.006775268,-0.0026558514,-0.03365952,-0.07026489,0.068080835,0.04259738,-0.015890311,-0.049757496,0.027449716,-0.03163698,0.012016463,-0.053191375,0.030537374,0.119446956,0.026965845,0.07878642,-0.035829496,-0.01283209,-0.027949397,-0.018971246,-0.10614394,-0.019474074,-0.047775257,0.01536284,0.024595153,-0.05117919,0.044796158,0.0391298,-0.10744045,0.008618728,0.026986578,-0.021926437,-8.144824e-05,0.03312474,0.018954104,0.068849176,0.061782386,-0.093089536,0.07450811,0.03965897,-0.023364441,0.10064767,0.025083661,-0.022260452,-0.030342031,-0.041625198,0.0544065,0.0028634279,0.019703038,-0.05693746,0.041623056,-0.047259472,-0.021415178,0.02551043,0.015613116,-0.03657808,0.061081238,0.08111913,-0.032074805,0.015814066,0.015047782,0.08309017,0.014822286,-0.055258997,-0.04937096,0.0104823895,-0.009625319,0.009024113,0.05757461,0.007963081,-0.029204035,-0.038959328,-0.007425939,-0.0004312562,0.010933738,0.014889075,-0.121390946,-0.07879229,-0.033326123,-0.047475427,0.008445051,-0.04174753,0.049130075,-0.05745025,-0.011373796,0.00038189758,-0.019725937,-0.0012044035,0.015654435,-0.09026842,0.11090138,-0.022876976,0.11022199,3.602015e-33,-0.014950969,0.039603826,-0.068896875,0.03941453,0.054315113,0.013073383,-0.099376865,0.004324101,-0.0025874435,0.042919762,-0.10367406,0.030265652,-0.037759643,0.062927015,0.030300016,0.020532373,0.048760485,0.0049577495,0.017671542,-0.018313242,-0.11792239,0.017409978,-0.01348975,0.008118186,0.031425573,0.037472654,-0.010919979,-0.07131818,0.022716202,0.026146764,0.06461843,0.07370332,-0.08636014,-0.11687456,-0.08915265,0.048500128,-0.13438876,0.03323792,0.0040122285,0.030540483,0.055265628,0.034705505,0.04073037,0.063795656,0.011688486,-0.03573201,-0.009928537,0.05780218,0.081077166,-0.002534293,-0.024366058,-0.07496221,-0.08756713,-0.0064728432,0.032350544,-0.020895341,-0.10852454,0.1058677,0.05399554,-0.040488888,0.080017895,-0.062596865,-0.010889654,-0.054829214,-0.025167648,-0.050453074,0.031974137,0.037584707,0.008069364,-0.027122883,-0.09995761,-0.07005884,0.11080153,0.053944297,-0.017902303,0.036857586,0.031682476,-0.055009946,0.0059413975,0.017661136,-0.078464724,0.019759353,0.019871168,0.05207717,0.008601009,0.048776437,0.016045824,0.009305359,0.017310102,-0.008728499,-0.018975135,0.058153506,-0.008287583,-0.044130355,0.03234895,-3.992062e-33,0.026920406,-0.023735257,-0.026925333,0.11184102,0.019583007,-0.004274434,-0.09503436,-0.03852582,0.064207576,0.034655657,0.020723077,-0.10516678,0.07692028,-0.091011114,-0.056573626,0.03181895,-0.012974042,-0.011988234,-0.0027944895,-0.02969566,-0.03702489,0.008605642,0.03132826,-0.077954225,0.0021214313,-0.014127428,-0.062923856,-0.024074212,0.00067861984,0.03056246,0.0040939404,0.04734003,0.0009295825,0.031436022,-0.049029365,0.09925949,0.052818906,0.051813826,0.0125707155,0.09312592,0.07699446,-0.022704458,-0.0031216363,-0.01787181,-0.01876916,0.019187946,0.043447834,-0.101748206,-0.012379222,-0.032755405,0.17307556,0.051081277,-0.053213466,0.0347093,0.06927856,0.06746052,-0.088756435,-0.075158946,-0.07065556,-0.03573471,-0.016645731,0.07570688,-0.058169585,-0.03876318,0.06887139,0.021057842,-0.051564787,0.10514191,0.021001926,0.08178527,0.04590528,-0.050184593,-0.01229557,0.025579339,-0.013607862,-0.026533686,-0.0032845628,-0.061138466,0.00290319,-0.059617076,-0.022879275,-0.063764244,-0.018478677,0.012103776,-0.03922067,0.004482809,-0.026840705,-0.04098752,0.009249645,0.083590545,0.00032674475,-0.041725945,0.03906424,-0.010707376,0.040993877,-2.6764413e-08,0.056016583,-0.018384181,-0.004419008,0.058191366,0.020322414,0.03901401,-0.07525009,0.03315291,-0.0144435465,0.10424636,-0.055954777,-0.05916884,-0.0613364,0.018689962,-0.06508476,0.012628872,0.0188485,0.05425157,-0.03110576,-0.043787077,0.015669592,0.02736454,-0.044234306,-0.08855763,0.009274634,0.03152364,0.0057520973,-0.028219769,-0.054357335,-0.032456413,0.019651007,-0.0029831342,0.012603983,-0.062480345,-0.054713953,0.036158197,0.009348397,-0.090187095,-0.09378211,-0.053917684,0.07307379,-0.0013058439,-0.07511772,0.0053316904,0.011812484,-0.13115226,0.029347023,0.035808437,-0.021497466,0.025752403,-0.006421829,-0.01796387,0.07334689,0.02633769,0.026544863,0.0012626732,0.06730633,0.012403386,0.023760054,0.05679511,0.017538603,0.025849571,-0.012209578,-0.044271417} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.237058+00 2026-01-30 02:01:12.475937+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2217 google ChdDSUhNMG9nS0VJQ0FnSUNhNC1XUGdRRRAB 1 t 2220 Go Karts Mar Menor unknown Peefecto todos se lo pasaron pipa peefecto todos se lo pasaron pipa 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Peefecto todos se lo pasaron pipa"} {-0.06731218,0.024155704,0.025135392,6.5089596e-05,-0.07855208,0.027613645,0.13666691,0.052818894,0.028599933,0.054589536,0.011723926,-0.027130079,-0.029304765,-0.006503851,-0.037487976,-0.072734036,-0.027671408,0.061929174,-0.038140155,-0.03370152,0.08892713,-0.028005129,-0.07546759,0.0910094,-0.118012086,0.038340997,0.062406357,-0.0050651035,-0.033002112,-0.06910724,0.016173558,0.037915554,0.079212636,-0.06511644,0.0015253446,-0.009019996,0.06530222,-0.085256726,0.0038189602,0.014977504,0.017335918,-0.011292406,-0.04583946,-0.071940154,0.08220449,-0.035682984,0.038251687,0.04157014,0.031252142,0.008382221,-0.04869826,0.016927471,0.026011238,-0.025127377,-0.09008244,-0.0072859763,0.017844826,-0.0016254684,0.05648808,-0.031121638,-0.04003645,0.04697427,-0.00054137723,0.02661239,-0.014990382,0.010702617,0.0077362726,0.0155112,-0.024926206,0.060476683,0.070275694,-0.01084412,-0.038703978,0.012787487,-0.008742788,0.0062411996,0.02430918,0.04117535,-0.050391506,-0.022504477,-0.032591,-0.104574636,-0.006461756,0.018463511,-0.0521452,0.0210582,-0.039126374,-0.0015307092,0.031012494,-0.042326227,-0.0029868588,0.032911487,0.044990525,0.018315421,0.012947516,0.019754605,0.05158285,-0.08153638,0.0056037004,0.084535375,0.06941896,0.045309417,0.009048056,0.025653739,0.0098609375,0.04945842,0.011606387,-0.056521848,0.090505905,-0.0037266465,-0.027763687,-0.048696823,0.04003982,-0.012075758,-0.029156074,-0.04685207,-0.015830785,-0.07669569,0.007487357,0.0016210194,0.060487404,-0.007879554,-0.031905096,-0.025668431,-0.015467294,-0.06617904,0.028294595,1.5846536e-33,-0.026254063,-0.069373466,0.04953064,-0.022232955,0.10275743,0.033243883,0.022726057,-0.08537732,-0.03572723,-0.081473246,-0.037994515,-0.025464807,-0.02443747,-0.027370837,-0.024365664,0.09213348,-0.019733783,0.020731943,0.03677304,0.040081635,-0.03825375,-0.046122704,0.04035223,-0.0010029904,0.05357068,0.07117121,-0.026406078,-0.05361138,-0.118007,0.06526052,0.023066029,0.085301,0.021160983,-0.01232252,-0.033095118,-0.1300029,-0.006096655,-0.007217124,0.0033427668,0.013497823,0.031138869,-0.040020794,0.020619556,0.037166663,0.0152259525,-0.025455238,-0.0043401066,0.036290966,0.02397147,0.051055964,0.0043350863,-0.00026831627,-0.02108241,-0.04291881,0.06265109,-0.0640378,-0.069408946,0.058194645,0.022809794,-0.024363551,0.14530021,0.07599678,-0.006452648,-0.06904898,-0.019645939,-0.07017999,0.071596585,0.0820813,0.087406725,0.033568054,-0.08100436,0.0026413542,-0.09376352,0.10521236,0.013834733,-0.03181013,-0.036905777,0.0024729918,0.020355772,0.029479895,-0.056534596,-0.0065908884,0.117040314,-0.016477438,0.046567637,0.049314845,0.03528616,-0.022456652,-0.1521942,-0.004220223,0.023600359,0.061629456,0.015857924,-0.017997997,0.01572058,-3.130319e-33,0.003281595,0.0008822688,-0.038941257,0.05966961,-0.06695728,-0.022682548,-0.04030396,-0.056854136,0.09992879,0.041916147,-0.07046935,-0.0800708,0.12252476,-0.055310592,0.03700938,0.11330399,0.09883444,-0.057600457,-0.04763151,-0.07129548,-0.051523436,-0.029771272,0.010889569,0.021506425,-0.044073183,-0.117745124,0.044200853,0.02152952,-0.019669019,-0.024171988,0.009701932,-0.03720829,-0.054567963,0.02077137,-0.023221554,0.014842704,-0.0102110645,0.012055057,0.0660154,0.00037589043,-0.0010644387,-0.016776498,-0.007111647,-0.024255197,-0.02716161,0.02961024,-0.008055008,-0.050322436,-0.064243615,-0.010744394,0.09962214,-0.010197525,0.012464086,0.061355516,0.05673479,-0.034303892,-0.057293992,0.018642414,-0.1400693,-0.00990317,0.055048008,0.021098074,-0.029190244,0.01387041,0.040112972,-0.0065040495,-0.042703588,0.04666467,0.037858617,-0.015625644,0.15648681,-0.053484622,-0.048335202,-0.014381795,-0.06774652,-0.05930057,-0.06018069,0.045636807,0.037142057,0.0028358027,-0.08143087,0.0010713303,-0.018571362,-0.015350917,0.048729938,-0.0374653,0.04101586,-0.0010099609,0.010287742,0.03983437,0.05008164,-0.04619116,0.008069396,-0.013649208,-0.007798763,-1.9366889e-08,0.01480311,-0.04514561,-0.11370159,0.06632244,0.03588448,-0.012793051,-0.08961201,0.028121972,-0.0767281,0.04154798,0.07490673,-0.05141571,0.019443052,0.04429432,0.023771875,0.14765488,0.03154741,0.094131835,0.022555036,-0.05938785,0.037650745,-0.03950639,-0.044281937,-0.031601377,-0.0009744659,0.0077905743,0.006513906,-0.08048303,-0.0056796237,-0.07000644,-0.048906744,-0.07822376,-0.05605209,-0.089676544,0.0017854105,0.02447753,-0.046115097,-0.021438632,0.056104172,-0.044139154,0.05181764,0.0526441,0.04080382,-0.042207092,-0.023277234,-0.02649721,0.01807387,0.017172532,-0.0015073642,0.009061713,-0.0012780377,-0.005987885,0.10707806,0.004650526,0.072319075,0.039387472,0.09509731,-0.059398178,-0.013621398,0.042315334,0.076149,0.11566161,0.028968753,-0.034169342} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.293021+00 2026-01-30 02:01:12.493961+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2198 google ChdDSUhNMG9nS0VJQ0FnSURVdU52WWxBRRAB 1 t 2201 Go Karts Mar Menor unknown Un buen sitio para pasar un buen rato, ¡¡¡Super divertido!!!..... un buen sitio para pasar un buen rato, ¡¡¡super divertido!!!..... 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Un buen sitio para pasar un buen rato, ¡¡¡Super divertido!!!....."} {-0.038151708,0.002333048,0.007974041,-0.0559398,-0.038938817,0.03720745,0.08829564,0.00036908808,0.02403476,0.005358945,0.043722026,-0.03550145,-0.06533883,-0.010590877,-0.048974056,-0.050579224,-0.039131258,0.10234943,-0.00877234,0.081085294,0.04179308,0.012599296,-0.029643875,0.14619705,-0.09724279,0.01813591,0.06528513,-0.0245515,-0.020141836,-0.058474347,0.03369616,0.10616434,0.012681724,-0.10301904,0.006775914,-0.056559,-0.019366166,-0.028340977,0.058666732,0.012474849,-0.030328466,-0.05065966,0.016006034,-0.03163238,0.031333607,-0.033998262,0.018564504,0.031336002,0.089711435,-0.027619412,-0.050890777,0.020498881,-0.0077275517,0.017516065,-0.055279855,-0.025877679,-0.028836621,-0.08315757,0.04398725,0.014360729,-0.018779252,0.019499853,-0.005133605,0.051415306,-0.00855687,0.008525023,-0.040735535,0.020706479,-0.07138,0.09169782,0.116832435,-0.035230316,0.026992442,-0.03341147,-0.01204163,-0.03308537,-0.023452472,0.031709682,-0.050955664,-0.06930675,0.07997834,-0.039870456,-0.029474473,-0.069496095,0.03598434,-0.0018448932,-0.011232007,0.067235954,-0.028907634,-0.048842665,-0.0024175837,0.0064715245,-0.08696508,0.0022218984,-0.011451782,-0.00994659,0.023222668,-0.0570673,-0.0066609574,0.019755594,-0.02892812,0.04854111,0.011508686,-0.016604088,-0.03360211,-0.023274183,0.022596426,0.026195444,0.0791877,-0.029140476,-0.044769067,-0.008852716,-0.020871043,-0.0478668,-0.08376652,0.020739527,0.017698895,-0.14748937,-0.022036295,-0.0064811865,0.056758914,0.012891012,-0.07416855,0.03746495,0.0379126,-0.06523174,0.03805501,-2.0179364e-33,-0.018884461,-0.041210998,0.011971093,0.0020253055,0.0045569437,0.032755937,-0.067196235,-0.057931986,-0.010814497,0.0072715417,-0.06609912,-0.033806656,0.009581831,0.060144108,0.032773126,-0.005938953,0.022364158,0.012182836,0.13172828,-0.029890303,-0.07618941,0.05660469,-0.07965123,0.07903033,-0.025131682,0.06000474,-0.053286817,-0.038162805,-0.048641242,0.06615526,0.038317084,0.0055844774,-0.06998261,-0.018578371,-0.03863211,-0.077769145,-0.07662943,0.028624896,0.035156205,0.018235812,0.061333105,0.0338915,-0.08358704,0.06404604,0.021262148,-0.09121683,-0.017632663,0.008291336,0.085534506,0.02741547,-0.0461779,-0.031637765,0.0051364736,-0.028052498,0.034170512,-0.07465804,-0.0026063698,0.13772848,-0.059712056,0.0029231845,0.059267454,0.014572957,-0.03021532,-0.050212093,-0.054045737,0.010757944,0.030778933,0.05696716,0.06461895,-0.025662817,-0.10538119,-0.00020424274,-0.047942072,0.013153522,-0.04095632,0.014321311,0.0040505654,0.052450776,0.018382525,0.0068868357,-0.044253625,0.031137835,0.06587804,0.033293683,0.057457462,0.11474964,-0.011857705,0.047760356,-0.023988279,0.06868665,0.021760361,0.040382512,0.07366999,-0.041379277,0.05671344,-7.129637e-34,0.01179827,0.03254702,-0.038310684,0.044737138,-0.05763685,-0.018059202,-0.11452122,0.0095377145,-0.024324367,-0.023759773,-0.006635147,-0.027457224,0.12441659,-0.031638492,-0.034146357,0.09375989,0.060488448,-0.0038411592,-0.0642709,-0.05306182,-0.029905701,-0.05685402,0.07280957,-0.03177107,-0.022776797,-0.0121874735,0.0833902,0.039566763,-0.0007867734,0.060829174,0.026532054,0.006308738,-0.07264732,0.066558234,0.05262668,0.007945439,-0.016514743,0.035890676,-0.038555153,0.053339053,-0.06292156,0.03235345,-0.012141332,-0.0030007171,-0.033116825,-0.0511258,0.02785756,-0.061880264,-0.0907212,-0.044538207,0.000454281,-0.034392275,0.030742014,-0.055527017,-0.016698485,-0.12049077,-0.03480412,-0.06954242,-0.06370229,-0.07041167,0.08987612,0.06061913,-0.025014646,-0.049066138,0.06347669,-0.023864461,-0.12118708,0.0064017773,0.01841132,0.081942804,0.10799147,0.0003743823,-0.041087262,0.11850598,-0.07784405,0.10712384,0.0071715824,-0.016542058,-0.008070634,0.009513389,-0.09983274,0.0011504375,-0.0073125027,-0.0045274966,-0.0126459105,0.0035355,-0.0673688,-0.012839439,-0.036390167,-0.009747239,0.012506768,-0.028786054,-0.005257953,-0.016417576,0.012210199,-2.328816e-08,-0.01888172,-0.07804523,-0.04976777,0.050256778,0.05215439,-0.02257637,-0.06520487,-0.052917056,-0.0009797511,0.010837468,-0.040362842,-0.03727624,0.07382752,0.066440485,-0.035445172,0.08192057,0.059356693,0.05011798,0.009174207,0.00023944983,0.036711875,-0.06466395,0.01796127,-0.0503509,0.026620185,-0.010626364,0.003054428,0.06347738,-0.010869331,-0.09870904,0.063479975,-0.03954766,-0.0055514816,0.0015728342,0.028040025,0.062443208,0.030092899,0.078390375,-0.046650197,-0.0061661773,0.06362807,-0.018282238,0.006260261,-0.019329445,0.009035353,-0.09255397,0.053345744,0.10873676,0.0009923441,-0.03954668,-0.012201939,0.0138012655,0.08320905,0.025686141,0.07504129,0.0674642,0.008511749,0.031060586,0.036857504,-0.0012222441,0.0039146473,0.18176146,-0.08936473,0.0028451127} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.873351+00 2026-01-30 02:01:12.324742+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2225 google ChZDSUhNMG9nS0VJQ0FnSUM2cUpDdVl3EAE 1 t 2228 Go Karts Mar Menor unknown Una pasada... Recomendable 100x100...de los mejores que he visitado. una pasada... recomendable 100x100...de los mejores que he visitado. 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-B {} {"V4.03": "Una pasada... Recomendable 100x100...de los mejores que he visitado."} {0.04448191,0.07390167,-0.042854097,-0.06042311,-0.08004246,-0.027149128,0.06422105,0.08098076,-0.07569879,0.039798506,0.06285176,-0.05919126,-0.025877206,0.1079566,0.038380485,-0.013334225,0.0034011963,0.03241977,0.03550822,0.020581162,0.031428177,-0.024584724,-0.054761935,0.0013133311,-0.121709086,0.0014546103,0.044590358,0.014286947,-0.030168928,-0.032922532,0.04394328,0.06139789,-0.036101647,-0.01847183,-0.023724182,-0.030105203,0.02378294,-0.056453086,-0.013962441,0.08234728,-0.08373724,0.015139593,0.042447962,-0.0033552689,0.013647761,-0.1401652,-0.0048423563,0.08832457,0.07638993,0.017674012,-0.029802663,-0.025891155,-0.014812262,-0.006476156,-0.023109488,-0.004435542,-0.0076516783,-0.041890714,0.010548143,0.042789318,-0.02336538,0.05305028,-0.07775368,0.016626662,-0.06339037,0.0037740814,-0.06983202,-0.09173085,-0.025534596,0.09497785,0.06476773,-0.04055917,0.006360679,0.033457465,-0.027831145,-0.04848087,-0.008629081,0.028484223,-0.061748695,-0.009480031,-0.010061801,-0.013984029,-0.03793043,-0.057258602,0.015391154,0.0012938591,0.0372054,0.036138706,-0.003645028,0.0031540587,0.023601104,0.08894663,-0.10790514,-0.01682995,-0.011755647,0.057640076,0.017241936,-0.041409437,-0.037124127,0.0022283015,0.10170827,0.02018064,0.071574405,0.06416835,-0.043090988,0.018131599,0.093531,0.032872833,0.00094292895,0.020439055,-0.039375085,-0.06025056,-0.019559912,-0.027030151,-0.062872656,-0.065020494,0.018248402,-0.016611867,0.010444442,-0.04819169,0.101931155,-0.025969515,0.0041690064,0.008051975,0.021967424,-0.07255897,0.092763044,-2.7876869e-33,-0.022273624,0.071419545,-0.07174377,0.047586564,0.09185275,0.062541455,-0.018362097,0.021977196,-0.04521718,-0.030268451,-0.04957457,0.05958026,-0.02571287,0.065352775,0.0058750836,0.030177768,0.07024904,0.058713388,-0.028220076,-0.006715687,-0.02577501,-0.0064318418,0.08660223,0.03905357,0.05078842,0.0516504,0.0062314793,-0.04574372,-0.030364245,0.028594345,-0.041850314,0.034174196,0.014714144,-0.046757888,-0.01878943,0.012191672,-0.026818162,-0.00434984,-0.039441418,0.06669096,0.039866004,0.05273888,0.0083482275,0.0027886298,0.0047397953,0.028445836,0.12081397,0.101538055,0.027033908,-0.05649488,-0.05741069,-0.027547756,-0.116595805,-0.06416025,-0.035079986,-0.04316494,0.0028857277,0.08912746,0.033106476,-0.0017853462,0.08962303,0.027201897,-0.025075493,0.03991737,-0.056568213,-0.06728732,0.024240514,0.011505519,0.053623218,0.053671245,-0.046480786,-0.03329814,0.06456852,0.0060331803,0.013604448,-0.007792184,-0.0076110973,0.07001109,-0.04618399,0.066262,-0.10884934,0.050182685,-0.0010637693,0.031737905,0.014005895,0.05882807,0.032827478,0.028706433,-0.1009368,0.015551053,0.026994541,0.076905526,0.07149404,-0.04146914,-0.004566142,2.7239097e-34,0.0072424235,-0.055632364,0.02783515,0.09601984,0.019259945,0.009693968,0.0012232482,0.09671335,0.0649665,-0.05046266,-0.047605667,-0.05415305,0.062205657,-0.122559585,-0.016164519,0.08407146,0.035663143,-0.074171886,-0.06692266,-0.02620125,0.026777482,0.12637162,0.08607183,-0.022638042,-0.018263118,-0.07142868,0.050732292,0.016640075,-0.094278276,-0.009687048,-0.09862655,-0.086058356,0.001433233,0.045676596,-0.06921188,0.06802789,0.06317727,0.05519912,0.02654283,0.16586015,0.036148038,0.027323123,-0.06319418,0.0047334903,0.014931825,-0.046867587,-0.057437558,-0.06382297,-0.024272524,-0.056334298,0.012245228,-0.0174051,-0.035641503,-0.01812713,0.037112564,-0.0025073087,-0.07252366,-0.022476109,0.0024951277,-0.003267291,-0.015894651,0.037542675,-0.033143483,0.060248982,0.001271144,0.05173125,-0.053550467,-0.037033617,-0.033039294,0.039093163,-0.0033305918,-0.010950266,-0.055928927,0.0024492352,-0.095219634,5.122696e-05,-0.032747675,0.0025766895,0.0936752,0.03468838,-0.0048070643,-0.05107828,-0.02676565,0.0013339977,0.095160946,-0.0169053,-0.0124064,-0.014718115,-0.013732953,0.071056284,0.06188574,-0.0010257973,-0.026743963,-0.072128996,0.066901304,-2.34801e-08,-0.027088078,0.029082663,-0.054200202,-0.042854097,0.036910295,-0.045078762,-0.021072647,0.0067528244,0.004691871,0.06764484,0.07121293,-0.07282877,-0.042164672,0.10484511,-0.028298104,-0.031003151,0.030930148,0.04933216,-0.05619697,0.013449139,0.01899495,0.021825533,-0.043219406,-0.0418692,-0.0051627867,0.022562271,-0.04036613,0.0026189806,-0.015845902,-0.039939687,-0.07268108,-0.020527773,-0.096414305,-0.09397502,0.009915531,-0.019186884,-0.0005712753,0.0021454082,-0.0053729685,-0.08156022,0.11065282,-0.01949032,-0.09063989,0.008669222,0.030540077,-0.11077598,0.0049516745,-0.041613005,-0.05432294,-0.026500393,0.030367974,0.042876083,0.024906186,-0.027177354,0.043635823,-0.020481829,0.00042092262,0.0052821836,-0.09674877,0.076882385,0.043534547,0.085105665,-0.06001737,-0.07044651} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.383057+00 2026-01-30 02:01:12.517282+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2227 google ChdDSUhNMG9nS0VJQ0FnSUNLdVlXb3R3RRAB 1 t 2230 Go Karts Mar Menor unknown Velocidad, seguridad y buen precio. Una tarde super divertida velocidad, seguridad y buen precio. una tarde super divertida 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.02,E4.01,V1.01} V+ I3 CR-N {} {"V4.03": "Velocidad, seguridad y buen precio. Una tarde super divertida"} {0.05174276,0.06160298,0.030840004,-0.05008869,-0.025319694,0.0071345055,0.033277847,0.06815357,-0.026143325,0.0051880023,0.073391356,-0.036530085,-0.0664828,-0.020306785,-0.01866261,0.0030692648,0.011537572,0.013421574,-0.0074549248,0.0328877,0.13755748,-0.01993091,-0.046838664,0.14508753,-0.042341735,-0.011579017,-0.011557899,-0.0027817818,0.0026244903,-0.09231024,0.018593395,0.072997116,0.08734606,0.031893276,-0.024478348,0.026875611,0.06909127,-0.0044853296,-0.0027364993,0.03661838,-0.08616581,-0.06956114,-0.01548564,-0.0721795,0.02698384,0.01122849,0.06985139,0.07788508,0.021541014,-0.012083916,-0.04692299,-0.049473617,-0.0130110225,0.04241905,0.035818465,0.03024997,-0.021913784,-0.0911466,0.07245815,0.02324212,-0.039218422,-0.0063248836,-0.038291447,0.00731627,0.053648006,0.0007742888,-0.03290233,0.050570846,-0.08096479,0.04502142,0.1441163,-0.08306348,0.027991215,0.020474557,-0.021721149,0.0036048556,-0.013997591,0.05509748,-0.0419765,-0.04903676,0.04773717,-0.006191282,-0.045654897,-0.06036044,0.0041574007,0.028080441,-0.019653859,-0.023362631,0.04964476,-0.014681236,0.009372853,0.022524241,-0.03731918,-0.0036175882,0.02333722,0.017346228,-0.042578954,-0.13549729,0.043464158,0.058895398,0.044930175,0.03064832,0.041961137,-0.012649675,-0.012540161,-0.040233478,0.034847938,0.01182396,0.0313124,0.0059812195,-0.0056363284,-0.058179703,-0.047200046,-0.044489294,-0.12618226,-0.026968412,0.00638532,-0.058760047,-0.03514564,-0.1270912,0.0666918,0.09421245,-0.016667208,0.011486211,0.007957208,-0.04300127,-0.0031690437,4.299426e-33,-0.02723266,-0.029799495,-0.019029181,0.07467262,-0.04895137,0.061888713,-0.011406042,6.132651e-05,0.011125,0.0100755235,-0.04098623,0.0013815593,0.011706432,0.013876663,0.0048830793,-0.019359719,-0.0022934417,0.013997052,0.08394981,0.032401867,-0.04760483,0.04107099,-0.02638591,-0.0031802927,-0.015436932,0.018981699,-0.06220932,-0.05109422,-0.01676739,0.061998837,0.017822158,0.04898156,-0.023130031,-0.047264572,-0.004304523,-0.04254963,-0.0146563,0.027997471,-0.00046890072,0.016404396,-0.025051579,0.04416117,-0.007619187,-0.020454476,0.04736782,-0.07879735,0.09106948,0.034372788,0.06476128,0.043323554,0.0016651308,-0.0558035,-0.06869753,-0.067183346,0.01184815,0.013364279,-0.03840111,0.098284505,-0.028897561,-0.02389335,0.022441091,0.04335987,-0.020197771,0.009474191,-0.033368908,0.008107874,0.07853664,0.042879008,0.12411512,-0.02280996,-0.095643416,-0.06006892,-0.026794992,0.03166904,-0.052155685,-0.018508423,-0.042487644,0.04388869,0.013228509,-0.0064823767,-0.081890225,0.04309646,0.11958568,-0.014103311,0.09108788,0.14631988,0.03782305,0.046392754,-0.0024601193,0.0805108,0.010806078,0.036073864,0.054754272,-0.08447172,0.035308328,-4.187165e-33,0.051061474,-0.039402623,-0.025684379,0.030565763,0.002177243,-0.011096745,-0.052885722,-0.058633618,-0.09927388,-0.07317605,-0.018965637,-0.02865714,0.13700175,-0.03242436,-0.048891667,0.04873837,0.0741839,-0.059387475,-0.05379747,-0.041707266,-0.07642395,0.06076492,0.0696721,0.051104706,-0.052785162,-0.032238606,0.078732796,0.043823835,-0.013680245,-0.02441763,0.013702174,-0.032641508,-0.06344248,0.046329398,0.003757826,0.03817708,-0.0465383,0.021255692,0.006463437,0.03974563,-0.061813686,0.060264338,-0.029849583,-0.011835871,-0.07079802,0.0038663608,-0.0087424135,-0.06603046,0.006839733,-0.07729965,0.04127195,-0.06813479,0.004765474,-0.06783928,-0.0036566162,-0.110512726,-0.032060068,-0.051526148,-0.06262163,-0.0034013542,0.1469928,-0.012371927,-0.046720874,-0.060080197,0.049916785,-0.0074712117,-0.11309902,-0.009530469,-0.0062577617,0.03665832,0.110449,-0.034649026,-0.06661978,0.021155532,-0.077590264,0.02971979,-0.009419282,0.034395475,0.044436105,0.07759763,-0.075273104,0.0030353165,-0.0066473167,0.019210672,-0.009910185,-0.035178557,-0.09059734,-0.020890107,0.009260833,0.04679778,-0.085549526,-0.04136956,-0.030432839,0.0016465776,0.06299139,-2.7440871e-08,0.0138783585,-0.041299924,0.0006388996,0.032175735,0.03809266,-0.054779142,-0.07324883,0.0016529113,0.023794498,0.011761744,-0.053383816,0.0072253523,0.03197132,0.021531729,-0.031720404,-0.027872043,0.06620633,0.10590617,-0.037865885,-0.046281703,0.11152309,-0.01868491,-0.04385512,-0.04503125,0.067387655,-0.021023909,0.0136100035,0.02964445,-0.020946525,-0.021751016,0.025465433,-0.08995973,0.0119161755,-0.05210018,0.052951507,0.057130188,-0.007988418,0.047939427,0.040582214,-0.026462762,0.10136873,0.010370554,-0.055171102,-0.014784538,-0.09644831,-0.086641625,-0.012609796,0.091100834,-0.045926414,0.024389638,-0.0054898616,0.009207519,0.07243952,0.11218349,0.071509525,-0.03910426,0.036067996,0.03593493,-0.05187205,0.029943755,0.048176274,0.1020259,0.011028456,-0.05627117} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.402871+00 2026-01-30 02:01:12.522631+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2229 google ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE 1 t 2232 Go Karts Mar Menor unknown Mucha variedad de karts,lo malo que mezclan karts de todas las cilindradas mucha variedad de karts,lo malo que mezclan karts de todas las cilindradas 3 2022-01-31 01:52:39.833374+00 es v5.1 J3.01 {} V- I2 CR-N {} {"J3.01": "lo malo que mezclan karts de todas las cilindradas", "O3.02": "Mucha variedad de karts"} {0.027951164,0.05982305,-0.019707495,0.016754122,-0.09669776,-0.012573051,-0.047097262,0.06939362,0.0006464067,0.025178751,0.0043043024,-0.035110354,-0.037047464,0.01718718,-0.008980918,-0.025998143,-0.022866897,0.06042022,-0.03444264,-0.018420758,0.02345336,-0.03810004,-0.08890651,0.08113344,-0.12489456,-0.020606894,0.004803724,0.079177074,0.025177805,-0.07605977,-0.08577382,0.086535595,0.0032103055,-0.012564051,0.00031095542,-0.05764684,-0.025837513,-0.030200185,-0.03238385,0.01839797,-0.012775174,0.009864223,-0.023068631,0.054371305,0.0001324753,-0.053355858,-0.108811736,0.05653164,-0.029230518,0.00903747,-0.07317179,-0.070553124,-0.035629544,-0.033005,0.020512424,-0.08382802,-0.116098665,0.06244472,0.1704608,0.00758297,0.10028754,0.0688544,-0.06644206,0.06457511,-0.08685307,-0.04117788,0.010565831,0.018919066,-0.08384704,0.0809343,0.11304784,-0.03532946,-0.0032813589,0.020674722,0.031538278,0.012049805,0.012310849,-0.059075613,-0.13189907,0.025215061,-0.06009427,-0.0054794243,-0.012113998,-0.11403957,-0.005757895,-0.022338517,0.018053828,0.02002584,0.014432734,0.0019147393,-0.036728162,0.058258135,-0.0742002,-0.052607667,0.00036066264,0.07757812,0.026717443,-0.04856168,0.12926754,-0.012833614,0.07088514,-0.039170016,0.07762858,0.08237274,-0.12085489,0.045100078,-0.033366162,-0.056104664,0.023006894,0.06625648,-0.08039174,0.006476798,-0.06158685,-0.022530949,-0.10937483,-0.04285404,-0.021475036,-0.0039758943,-0.009535218,0.03435413,0.046759658,-0.036211737,0.037791856,-0.07359946,0.029118264,-0.0020041794,0.035295825,1.2096548e-33,-0.15062203,-0.047877897,-0.023020241,0.040966183,0.041307174,-0.10436959,-0.0424987,-0.08155047,-0.028460328,0.060648974,-0.035767175,0.10641301,-0.06017486,-0.039284047,0.10948119,0.015825154,0.008865937,-0.0745291,-0.028029958,0.02884273,-0.032119382,0.020079335,0.027946725,0.032156277,-0.047182266,0.04869781,0.0956814,-0.045940027,-0.12568867,0.033333477,0.017068122,0.029230291,-0.015104886,0.0047039646,-0.049390655,0.029905649,-0.035901144,0.018572522,-0.0010303132,-0.039028913,0.075092204,-0.07637876,0.025635665,0.053279735,-0.07096351,0.06723794,0.03132366,0.02750575,0.01967415,-0.0037121463,-0.06554721,-0.0055003576,-0.05099429,-0.032558795,0.017076727,0.04265361,-0.03913855,-0.0075536575,-0.054111592,-0.05294687,0.0029029273,-0.022896806,0.028975027,-0.053748816,0.03375122,-0.047340382,0.017479988,0.0035961221,0.08995114,0.019997623,-0.08366032,-0.054660395,0.020798521,0.01566596,0.051781133,0.024228742,0.00209978,0.0590867,-0.034694787,0.05577694,-0.055376623,0.052838437,-0.021439932,-0.016033562,0.019587107,0.000345798,-0.03173504,0.042547036,0.063589476,0.07689441,-0.030684479,0.02461537,0.01588857,-0.045128774,0.044357482,-4.768463e-33,-0.0014370936,0.06963541,0.06778713,0.10329298,0.07278984,0.0028415392,0.013877673,0.0028422542,-0.007261232,-0.032480884,-0.08398461,-0.029139787,0.04664923,-0.051662195,-0.006164526,0.07253971,0.06556405,-0.007639453,-0.038702972,-0.08241922,-0.059090137,0.020320587,-0.0012755751,-0.06689176,-0.014353438,-0.014047303,-0.029457368,-0.022330282,-0.10363653,0.034583274,0.038642403,-0.09557763,0.050142705,0.07192141,-0.055534616,-0.0045567118,0.07240638,0.05978987,-0.030567374,0.03608926,0.04762987,0.054519117,0.027589405,0.025935348,-0.022121325,0.014197104,0.051751267,-0.060082875,0.013315077,-0.052467115,0.10359251,0.065895155,-0.013967,-0.056869738,0.06959923,-0.015092644,0.0332044,-0.032470807,-0.004528642,0.06907883,0.04024181,0.011556908,-0.032535918,-0.027493149,0.028031189,-0.02493172,-0.02472644,-0.09645051,-0.03645416,0.0231756,0.028761432,-0.00017509556,-0.022448558,0.0063491846,-0.030758051,-0.06535313,-0.07581969,0.05828741,0.010900693,-0.0015972911,0.002179294,-0.04353498,0.013080082,0.057368144,0.0070218444,-0.0059729284,-0.041575108,-0.017392712,0.06293448,0.035107277,0.07701823,0.08047919,0.021519672,0.008679755,-0.01782075,-2.6283484e-08,0.053146906,-0.012045799,-0.088210754,0.027679797,0.013898582,-0.03644795,-0.060576882,0.07165163,-0.0058010947,0.11016273,0.009954124,-0.020649526,0.048831757,0.0817473,-0.016916495,0.041708242,0.004319097,0.07340086,0.015934333,-0.025971977,0.052486386,-0.0013107002,-0.073269345,-0.02132193,-0.048935868,-0.05164434,-0.046654385,-0.01204933,0.029252253,0.022460017,-0.022001607,0.03309373,-0.030001463,-0.023606682,-0.032725587,-0.0248349,-0.074548595,0.05038611,-0.028013362,-0.021620438,0.059382495,-0.030813113,-0.04141394,0.016447952,-0.043782093,0.007157779,-0.05286618,0.006345194,-0.030914187,0.049810503,-0.090179965,-0.007694195,0.055286318,0.03939986,0.06537312,0.0055317725,0.07545134,-0.021830924,-0.006745239,-0.062887296,-0.01452455,-0.015556337,0.045798734,-0.016477453} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.42602+00 2026-01-30 02:01:12.532831+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2231 google ChZDSUhNMG9nS0VJQ0FnSUNPMmNyd1pnEAE 1 t 2234 Go Karts Mar Menor unknown El mejor sitio para ir a montar karts del mar menor el mejor sitio para ir a montar karts del mar menor 5 2023-01-31 01:52:39.833374+00 ca v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "El mejor sitio para ir a montar karts del mar menor"} {-0.11632085,0.0683377,-0.0032276534,-0.0043772343,-0.07028392,0.006149514,0.0048767505,0.02307246,0.081265874,0.0343956,0.019462267,-0.050894935,-0.013902145,-0.03250069,0.051365852,-0.034387827,-0.06824669,0.07256848,0.006586546,0.020357005,0.045383602,-0.027310755,-0.1548732,0.066566035,-0.042467434,-0.01677509,0.0062406166,-0.011602411,-0.018591627,-0.038400967,0.037650626,0.018598754,0.10526358,0.001859365,0.042322908,-0.01562866,0.0061142305,-0.11675843,0.040936954,-0.02301566,-0.04276121,-0.08648142,0.015153386,-0.047103588,0.0001940231,0.009357947,-0.010671032,0.059133995,0.044636745,0.024859479,-0.09603933,-0.02478204,-0.011287944,0.0024361485,-0.034978315,-0.058925997,-0.023408912,0.030179527,0.13476872,0.038322844,0.009285136,-0.0067581553,-0.036090568,0.032118257,-0.03491295,-0.034839585,-0.008651718,-0.003041281,-0.07759567,0.12419467,0.10644608,-0.051397163,-0.021353591,-0.010384399,0.0011728626,-0.03211557,-0.039494146,-0.064284876,-0.056575183,-0.01762718,-0.016163189,0.0049296506,0.0013633679,-0.05680246,-0.028060084,-0.010792797,-0.002880853,-0.013520115,0.049426746,0.0062311552,-0.084992446,-0.0067762025,-0.14391285,-0.04868979,0.0019146096,0.03600258,0.0041851597,-0.00021293666,0.027710043,0.027134769,0.13057782,0.058232833,-0.00021175998,-0.0014624674,-0.095383435,0.05231356,0.020825872,0.003457887,-0.006554985,0.06236165,-0.099017955,-0.0013394825,-0.037343077,-0.04420173,-0.06527848,0.010938481,0.0022970757,-0.059961252,0.017710863,-0.06045562,0.029096387,-0.014719119,0.008574223,-0.036645878,0.08608551,-0.07598766,0.04332959,3.3497034e-33,-0.10943605,-0.016882515,0.043238662,0.060472615,0.063646585,-0.034534257,-0.071106136,-0.036378566,-0.040976916,-0.02920605,0.0076625575,-0.02587684,0.037225056,-0.03324637,0.11976829,0.054740433,0.029780474,-0.073549755,0.006883824,-0.023084942,-0.06388757,-0.021706361,0.006664475,0.02780977,-0.051032614,0.04113247,0.033749755,-0.045482058,-0.13392806,0.053103413,0.019579215,0.018058611,0.009371127,0.01737372,0.004484553,-0.03321214,-0.033905387,0.044905864,-0.027956948,-0.0028977336,0.043397255,0.02241467,-0.013224311,0.007910798,-0.020254578,0.045588303,0.056234848,0.034889672,0.027458752,0.0076769656,-0.054379378,-0.02191571,-0.09012667,-0.0668227,0.054995015,-0.0047824616,-0.074410655,0.05882759,-0.031246306,-0.009755324,0.08076234,-0.019020822,0.06385744,0.036540665,-0.014932507,-0.041088197,0.015422267,-0.015827624,0.14262007,0.06154126,0.0045243492,0.013509909,0.02372272,-0.048032682,0.03573021,0.06709743,-0.03141375,0.06434073,0.01172603,0.013585024,-0.06987863,-0.014252348,0.03150235,0.08079367,0.0124423355,0.027012877,0.006423358,0.04478463,-0.0036434263,0.10223318,-0.013459143,-0.009144895,0.028591145,-0.06972856,0.04199709,-4.0256354e-33,0.074317224,0.04396469,0.061152387,0.087383226,-0.03263184,-0.00067771965,0.0060363603,0.026093438,0.032575965,-0.015691241,-0.060227577,-0.07434647,0.10598051,-0.039651804,-0.00014756991,0.15498747,0.07571657,-0.061068468,-0.08111152,-0.007390585,-0.0018820015,0.037299365,0.042304363,-0.012072807,-0.019661913,-0.045680802,0.03351877,0.071791634,-0.048732013,0.034895364,0.023205793,-0.09204685,0.010150252,0.021877231,0.008783019,0.011673708,0.065525815,0.06960956,0.035841852,0.024327202,0.042006273,0.086631306,-0.043479033,-0.01993843,-0.008720704,-0.05604804,0.009167362,-0.062586,0.016743792,-0.09938961,0.00081346196,-0.057984065,-0.05728356,-0.053535007,0.037527855,-0.016539527,0.002061371,-0.017476955,-0.11327616,-0.00782811,0.00050423323,0.07401254,-0.04496807,-0.024849648,0.04135033,-0.020042388,-0.076005526,-0.072002195,-0.011766053,0.08800177,0.110185586,-0.04490379,0.0153507935,0.07628039,-0.036254857,-0.0064279623,0.022617668,0.07970643,0.0012108004,0.010978434,-0.055622816,-0.08459825,-0.045960933,-0.0030807336,-0.009950164,0.039432373,-0.053084422,-0.044024244,0.073599875,-0.024591848,0.047538035,0.045804124,0.004772804,0.017244613,-0.058034923,-2.1894268e-08,0.0019101843,-0.081619054,-0.06644263,0.02982948,0.033916343,-0.023889612,-0.0076153767,-0.04399676,0.0031847777,0.12473222,-0.05533716,-0.013078665,0.05275459,-0.0120403655,-0.022227606,0.069025256,0.10228118,0.0449502,-0.014758776,-0.03720716,0.067589015,-0.09939028,0.014724739,-0.0095726475,-0.03815788,0.017553136,0.0077760867,-0.022435071,0.07605812,-0.030455085,-0.03653571,0.06441054,-0.050296072,-0.08739837,-0.019975046,0.02136327,-0.040580172,0.036568526,-0.0105719855,0.08514925,0.04762954,0.079286955,-0.044203896,0.0012415502,-0.017144484,0.023412844,-0.0516645,-0.0010154207,-0.059489604,0.006967882,-0.037037622,-0.021446768,0.09367502,0.060549572,0.04857346,-0.00039475516,0.07196972,0.0048731295,0.020668626,-0.017639805,0.092937216,0.07118888,-0.05767248,-0.07061935} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.702863+00 2026-01-30 02:01:12.544475+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2235 google ChZDSUhNMG9nS0VJQ0FnSURhdU4teWJnEAE 1 t 2238 Go Karts Mar Menor unknown Estupendo diseño del circuito y muy buena la gestión!!! estupendo diseño del circuito y muy buena la gestión!!! 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.03 {J2.01} V+ I3 CR-N {} {"O2.03": "Estupendo diseño del circuito y muy buena la gestión!!!"} {-0.040839665,0.041086722,-0.015489745,-0.057376403,-0.032388814,-0.00627358,0.028403077,0.068187505,-0.0031335342,0.012550777,0.07339355,0.020562729,0.04344054,0.014737199,-0.0008167274,0.035627674,-0.0648265,0.03458417,0.02401985,0.011176693,0.11331563,-0.09508587,-0.07715269,0.10476604,-0.091858886,-0.025379775,0.035495397,0.027304623,-0.07914295,-0.11117024,-0.073063485,0.0666307,0.048012,-0.0068578934,-0.068228595,-0.031369474,0.07761344,-0.062506706,0.0020705084,0.04852917,-0.13056342,-0.020538855,0.019740535,-0.051664934,0.03605474,-0.03906339,-0.013407167,-0.0021966593,0.046143748,-0.091463916,0.03933364,-0.014195479,0.043968342,0.022987014,-0.029045908,0.022101691,0.0012506634,-0.012810424,0.0440381,0.058070075,0.016448975,0.060602777,-0.026485955,0.044358365,-0.0044398406,-0.056767907,0.05176766,0.013387075,-0.054987807,0.008173657,0.08907499,-0.06450467,0.0803936,-0.03182588,0.025999844,0.073205836,-0.048508927,0.025789037,-0.020229965,-0.018145114,0.044828996,-0.025958635,-0.049314156,-0.019345906,0.06526267,-0.01471252,-0.06586955,0.0038386707,0.04025157,-0.046780746,-0.06443774,0.02042371,-0.04393963,-0.031827502,-0.016448796,-0.009730036,0.016827393,-0.035652895,-0.050359517,0.043198463,0.06285933,0.0013656028,0.047237534,-0.009132297,-0.016944373,0.05589082,0.057557937,-0.0017784826,0.03256364,-0.053582225,-0.043170568,0.04164741,-0.025807256,-0.006557777,-0.050147288,0.0039682747,0.03463438,0.038519587,-0.03218005,-0.09905995,0.065474086,-0.007998307,-0.07895228,-0.010757621,0.005524056,-0.015087317,0.07391007,3.639903e-33,-0.044554554,-0.017345129,-0.04900654,0.03657101,0.0445167,0.041472193,-0.057573054,0.014544511,-0.027713943,-0.0049512996,-0.043447487,0.037890952,-0.0018661751,0.034279987,0.049715776,-0.04079445,-0.056560304,-0.06937603,0.091951765,-0.012436219,-0.0044784457,-0.088203624,0.018643728,0.09728335,-0.027199682,0.08179061,-0.030840768,-0.07447461,-0.061812587,0.039137468,-0.012886865,0.063909985,0.011990431,0.02681147,-0.05441846,-0.040427696,0.049067475,0.007747745,0.05217975,-0.026416147,0.009134439,0.02215945,-0.069551185,-0.027716737,0.008358381,-0.002820403,0.035915323,0.07547145,0.13836333,0.04352895,-0.14507651,-0.09511452,-0.070273764,-0.04388915,0.027355261,0.028178003,-0.024467062,0.019590892,0.07041901,-0.009511746,-0.025697825,0.094225794,-0.03119898,-0.07150654,-0.040407907,0.053564966,0.059413247,-0.054008927,0.04966493,0.03091099,-0.06970564,0.004841211,-0.07216513,0.031882767,0.0039299526,0.010110962,-0.041753314,0.021613402,0.05617521,-0.0050220103,-0.06988937,-0.035166886,-0.0035551896,0.02613203,0.10451474,0.12421875,0.04995376,0.05665437,-0.03725056,0.10955742,-0.022497687,0.066926405,0.1126747,-0.014274934,0.09932498,-5.64528e-33,-0.016066493,-0.028345326,0.037392817,0.0075666625,0.0022503852,0.0043919226,-0.021971127,-0.023262909,-0.012104468,-0.038869526,-0.07299987,-0.07130428,0.047086406,-0.034684774,-0.0570317,0.013079181,-0.0038344087,-0.04925569,-0.058838855,0.016667327,0.029162632,0.0831896,-0.024813166,-0.035039946,-0.077665396,-0.025008855,-0.056842726,0.07180981,-0.05806766,0.037094675,-0.04776693,0.046516225,-0.005717149,0.03895576,-0.044095103,0.0072544236,0.052188583,0.08470192,-0.016600007,0.030544924,-0.014507286,0.0873625,0.012924302,0.016109668,-0.055127464,0.08555866,-0.034983765,-0.113969944,-0.047906652,0.004112861,-0.014036366,-0.08187926,-0.038446695,-0.027722297,0.0024129637,-0.0709017,-0.0056768856,-0.030778056,-0.08367066,-0.028147768,0.06058238,0.033448406,-0.021375176,-0.0063577094,0.0895032,0.034079056,0.011663022,0.07681396,0.0887316,0.023965806,0.08978443,0.04594324,-0.014313163,-0.03153922,-0.075134106,-0.061306994,-0.12267969,0.015011547,-0.02601441,0.037918374,-0.0034325668,0.057427723,-0.030458592,-0.09940361,-0.029350577,0.0017387497,0.0005417859,0.049407147,0.03704069,-0.011165832,-0.036108226,0.07076364,-0.067598194,-0.031927172,0.027801367,-2.824072e-08,0.006047788,0.045930356,0.005742824,-0.031636275,0.07799108,-0.10900918,-0.004505905,0.026296344,-0.016395355,0.0012368596,0.062213413,-0.014542573,-0.047632135,0.052517068,0.007011396,0.033832252,0.033323195,0.15903361,0.016298052,0.0002648622,0.07561148,-0.02268936,-0.031929396,0.01181178,0.0774802,-0.01164443,-0.027619334,-0.00549505,-0.05624293,-0.047808602,-0.025782153,-0.0019446383,-0.034994278,-0.07131234,-0.03669155,0.028645106,-0.04856589,-0.023212546,0.027643155,-0.08638445,0.010795078,-0.057230696,-0.09595658,0.002070903,-0.017706234,-0.09732684,0.0051391595,-0.0016922898,-0.013857618,0.063913085,-0.039350577,-0.05363274,0.07213307,-0.006821697,0.085398,-0.018637547,0.07325506,-0.0056224335,-0.07888384,-0.004162099,0.03456146,0.035586532,0.05987297,-0.06775081} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.797323+00 2026-01-30 02:01:12.565984+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2237 google ChdDSUhNMG9nS0VJQ0FnSUM4aHFlVDFBRRAB 1 t 2240 Go Karts Mar Menor unknown El mejor karting para correr y pasar un tiempo espectacular!!! el mejor karting para correr y pasar un tiempo espectacular!!! 5 2021-01-31 01:52:39.833374+00 es v5.1 V4.01 {O1.05} V+ I3 CR-B {} {"V4.01": "El mejor karting para correr y pasar un tiempo espectacular!!!"} {-0.025177073,-0.012750053,-0.020440212,-0.039268687,-0.06386083,0.0109998975,0.010868071,0.09499488,0.021509293,0.04014902,0.054446064,-0.011542641,-0.04985677,0.020362413,-0.005836724,-0.02031403,-0.07842633,0.031320605,0.026651153,0.023586689,0.13155569,-0.045556344,-0.065618254,0.024999766,-0.103786536,-0.007217794,0.024610378,0.029480623,0.059929352,-0.1115478,-0.025633728,0.026740704,-0.05694,0.0063478113,0.022362443,-0.0067733354,0.0014025833,-0.1314099,-0.018608797,0.026858179,-0.100090206,-0.011793349,-0.012563092,-0.11724873,0.078334,0.019786328,-0.027651822,0.04942814,-0.022215165,-0.011632916,-0.02996986,-0.040258758,0.012214824,-0.0443179,-0.021731319,-0.05844491,-0.051692795,0.019023458,0.08511166,0.028253853,0.04034231,-0.01151485,-0.020246748,0.064593986,-0.10793522,-0.09617592,0.045289956,0.038688943,-0.025729192,0.11911064,0.08301499,-0.035255697,0.0125582935,0.024452528,-0.0053444635,0.033332486,-0.024353111,0.02211609,-0.04555299,-0.0075181504,0.04243913,-0.042618472,-0.032970693,-0.06125005,0.083853886,-0.019957319,0.009964539,0.00937286,0.027657963,-0.017190324,-0.03036835,0.037722465,-0.17325984,-0.04107146,-0.06319246,0.031239165,-0.015050831,-0.016543945,-0.013904986,0.010243359,0.038977236,0.010223886,0.10736483,0.06269266,-0.07175517,0.051422257,0.021974266,-0.04215396,0.053165488,0.042189553,-0.030415393,-0.06961322,0.021845981,-0.04758444,-0.07221691,0.042502347,-0.01621953,0.026760546,0.021692684,-0.07290491,0.0058016554,-0.049431305,-0.042419408,-0.021169335,0.031199345,-0.0443871,0.11867137,3.0695603e-33,-0.10984273,-0.025690494,-0.023887172,0.0017351508,-0.00880704,-0.015472184,-0.07417706,-0.039582815,-0.053212818,0.012043937,-0.018665286,0.015021844,-0.02098068,0.042206977,0.0736823,0.028508946,-0.02482022,-0.04198124,0.029788792,0.031880647,-0.026091658,-0.051184166,0.010995207,0.029402068,-0.04838333,0.052535765,0.022503356,-0.09945419,-0.06840165,0.071190745,0.016562909,0.039456137,-0.02019856,-0.0064448263,-0.014066228,-0.03729783,0.013036815,0.019278022,-0.020617913,-0.012664365,0.047949303,-0.008424935,-0.057371527,-0.037059426,-0.063417844,-0.024827419,0.059365287,0.048773997,0.023052417,-0.03248852,-0.10569656,-0.037191693,-0.012829191,-0.10212711,0.055092644,0.0031965512,-0.08415195,0.00930093,-0.037590824,-0.0061778263,0.032623876,0.038901687,-0.014860246,-0.0606394,-0.034954622,-0.06317414,0.049558796,-0.016758539,0.061728608,0.029424846,-0.071438074,0.042854685,-0.008014531,-0.014404125,0.05956549,0.044212744,-0.04675139,0.08416984,-0.0148003865,0.01676706,-0.117397554,-0.0032344984,0.019546226,-0.012924877,0.08014932,0.029474683,0.0418825,-0.002345008,0.028204551,0.09413906,-0.047999945,0.038531788,0.028355079,0.0552228,0.063464835,-5.6313107e-33,0.033490956,-0.024094142,0.052158006,0.07200845,0.002319106,0.07661567,0.042721506,-0.032991186,-0.015097824,-0.08370029,-0.041498113,-0.07125871,0.08563652,-0.04187327,4.7541917e-06,0.04495078,-0.038250394,0.018099353,-0.035075095,-0.014080897,0.015058711,0.011051832,0.03599993,-0.015432383,-0.066897884,0.00299372,0.043554153,-0.032349486,-0.1014538,0.044024915,0.009759205,-0.05997489,0.00047240834,0.0039244858,-0.09644071,0.054381415,0.072751515,0.07075634,-0.010036861,0.022109998,0.052267354,0.15142615,-0.0073235766,-0.030628534,0.0017225756,-0.05152965,0.02580099,-0.054224383,-0.09136542,-0.0036207398,0.041816503,0.009375976,-0.064515665,-0.07897082,0.039837893,-0.007682132,-0.02950611,-0.10842033,-0.15221386,0.03471974,0.010503547,0.06565267,-0.005665075,0.0061918288,0.11842057,0.022118626,-0.047623023,-0.0024010271,0.022682227,0.03496444,0.06826622,0.10015293,-0.06603487,0.059037413,0.037145395,-0.038911637,-0.025621396,0.011751797,0.020022297,0.03772933,-0.056360047,0.03993437,0.036183298,-0.012360253,-0.015668137,0.035464562,-0.06199207,0.0012529242,0.05690996,0.00876245,0.0683056,0.07693815,-0.029778404,0.0535933,-0.01208005,-2.6429394e-08,-0.02440714,-0.0025825724,-0.032918878,-0.030071221,0.08767729,-0.07106703,-0.009072337,-0.031418428,-0.06483028,0.026201699,0.020304378,-0.0028949932,-0.0061524836,0.07928279,-0.0021420883,0.060676496,0.058841724,0.17619209,-0.015659053,-0.042453434,0.066564985,-0.053417522,0.00094396994,-0.019372247,0.00090497674,-0.014414473,-0.03127864,-0.007794041,0.034868434,-0.06475538,-0.027602391,0.021886636,-0.045408517,-0.039525736,-0.08919104,-0.043624282,-0.040179092,0.08201925,-0.047667295,0.062355835,0.060513195,0.05499815,-0.005872268,0.005492989,0.04516137,0.013510358,0.011267498,0.0035317477,-0.035281885,0.097189195,-0.08149716,-0.04884576,0.08207612,0.040820662,0.07955909,-0.009925953,0.023162598,-0.030268544,-0.07458861,-0.02618947,0.008030386,0.044565696,0.012864551,-0.014042303} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.832634+00 2026-01-30 02:01:12.573072+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2240 google ChdDSUhNMG9nS0VJQ0FnSUNhemV6YzRRRRAB 1 t 2243 Go Karts Mar Menor unknown Espectacular, trato, circuito. De 10 espectacular, trato, circuito. de 10 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {P1.01,O2.03} V+ I3 CR-N {} {"V4.03": "Espectacular, trato, circuito. De 10"} {-0.05325525,-0.022302667,-0.05631338,-0.053709295,-0.070698045,-0.018200802,0.12465481,0.19505554,-0.008504443,0.0056311972,0.039604735,-0.07630256,-0.08607304,0.034648754,-0.021768402,0.0056574014,-0.020655096,0.0014552779,0.05525537,-0.00663668,0.12548897,-0.0006216531,0.024003547,0.028951455,0.026822407,0.061962638,0.052242506,0.07227109,0.016935557,-0.16653842,0.0049719466,0.05596483,0.003373447,0.00018738631,0.04496715,0.019140784,-0.08255524,-0.08621136,0.036508996,0.035773262,-0.038079523,0.020010935,0.0638794,-0.036367256,-0.0483452,-0.04629544,0.005749144,0.05615971,-0.023036504,-0.034902148,0.019331949,-0.06554277,0.013978491,0.03206613,-0.062039334,0.020012354,-0.025252348,0.013411404,0.020602696,-0.056803606,0.091399014,0.009563736,0.026481658,0.03744556,-0.04979664,-0.042786982,0.09731623,-0.059640236,0.034934875,0.04602393,-0.03933723,-0.011621376,0.061068505,-0.026317026,0.009891065,0.03268985,0.0075283204,-0.001856429,0.05428429,0.016890632,0.050397336,-0.050079513,0.014045,-0.048653275,0.044209637,0.00828332,0.0030346296,-0.0069048554,-0.035905115,-0.031118276,0.032123294,0.0070612556,0.0016142895,-0.029009366,-0.07390021,0.00234842,0.010337911,-0.04463115,0.013685583,0.036716804,0.059602883,0.009836898,0.04049877,0.07937148,-0.031518824,0.02267127,0.07473355,-0.018029455,-0.022901112,-0.02099077,-0.060242996,-0.017276503,0.01580731,0.04892324,0.071798034,-0.007982119,0.021465223,0.041398697,0.07422804,-0.010629821,-0.008013433,-0.025618508,-0.048266485,0.0005966265,-0.04814035,0.029546525,0.039656676,-3.7627712e-34,0.068626665,0.056701154,-0.007985315,-0.057314333,0.045273237,0.033122037,-0.07218317,0.0072643054,-0.111157216,0.011233901,-0.108657174,0.009177716,0.07108673,0.072486036,0.014140446,-0.05733085,-0.039136317,0.05654994,0.077565804,-0.074500635,-0.019513953,0.016188327,-0.013380602,0.10030899,-0.035617277,0.061053388,-0.07887598,0.039473794,-0.0022594696,0.0031416195,0.08299603,0.0677435,-0.035463963,0.05480504,0.007910953,0.017369604,-0.020605804,-0.0044979285,0.1021721,-0.028116623,-0.003773344,0.02438287,-0.0031878608,0.012865735,0.033066727,-0.08805333,-0.035219725,0.03779226,0.11278937,0.00809884,-0.053814176,-0.07922134,-0.025091184,-0.029696422,0.059851117,0.031324714,-0.049916323,0.09900619,0.052323047,0.011425049,-0.007629604,0.091816776,-0.026964689,-0.026669879,-0.05751303,0.036104638,-0.027193926,-0.104105435,0.010859143,-0.05831658,-0.049663574,-0.011201925,0.030906297,0.010999899,0.090135135,0.052095912,-0.061165664,-0.086406775,-0.033623137,0.016210623,-0.07015865,-0.07875936,-0.017148223,-0.044077024,-0.033642516,-0.00021308841,0.019162484,-0.042817626,0.06376755,0.074532025,-0.052981127,-0.045880545,-0.03617305,-0.00498838,0.031520747,-5.1638714e-34,0.053887695,-0.0037222188,0.042505212,-0.012432542,-0.04419942,0.038749885,0.054210875,-0.06264383,0.031110696,-0.012225167,0.13543698,0.010235888,0.012529367,-0.06740832,0.01790523,-0.016307428,-0.066097245,-0.07531005,0.00052463845,-0.050903067,0.0063369637,0.026564615,-0.0635252,0.021420166,-0.051094133,0.054705,0.016822718,-0.054833338,0.010795673,0.0420001,-0.063871525,-0.010261009,-0.014424127,0.07750013,-0.059926324,0.014033167,0.046702813,0.0029856728,-0.030602736,-0.047678627,0.024790846,0.087737605,0.06768093,-0.016428256,0.057027053,0.017654935,0.046567373,-0.0064752162,-0.06709623,-0.023659356,-0.038631473,-0.005884403,-0.013073076,-0.045921102,-0.011516129,0.051714987,-0.03453354,-0.073213354,-0.082321,-0.037253123,0.0009460803,-0.010193692,0.03364862,-0.06268526,0.083703175,0.006208973,-0.027397308,0.06932811,0.16911386,-0.07007077,0.05123425,0.07544679,0.03109173,-0.020748613,0.034791302,-0.056688454,-0.112156,-0.029707896,0.009114627,-0.07845227,0.046159472,0.04663792,-0.014634094,-0.05813843,0.03280281,-0.090366006,0.000340589,-0.0052198633,0.0567997,0.06182166,-0.0047723297,0.037278123,-0.011305478,0.06512598,0.13468608,-2.1086016e-08,0.08308844,0.034125727,-0.011922918,-0.082046255,0.086187206,-0.020846168,0.0470039,-0.039947197,0.015461372,-0.04750349,-0.058912866,0.087680206,0.008007903,0.07614123,0.051608294,0.06402116,-0.09225866,-0.03038684,-0.018187925,-0.028021954,-0.008817078,-0.037001505,-0.01106482,0.013000611,0.01881667,0.013806264,-0.006541371,-0.003698951,-0.04816558,0.008476496,-0.026062902,0.062251,0.027337767,-0.0022563795,0.009952329,-0.0024553859,-0.03912856,-0.020749897,-0.10470765,0.02790519,-0.020396536,-0.001773225,-0.034007333,-0.011100769,-0.0053677484,-0.01875008,-0.0006976226,0.06792908,-0.056780968,0.0065408926,-0.11250136,-0.013884728,-0.07379195,0.045809165,-0.069493204,-0.055237014,-0.042421814,-0.037938833,-0.05447515,-0.012569291,-0.008942887,0.023038074,0.091624424,-0.09423154} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.884514+00 2026-01-30 02:01:12.588026+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2219 google ChdDSUhNMG9nS0VJQ0FnSUNDdklDYnVRRRAB 1 t 2222 Go Karts Mar Menor unknown Buenos karts a muy buen precio con buenas medidas de prevención del covid. buenos karts a muy buen precio con buenas medidas de prevención del covid. 4 2021-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.01,E4.03} V+ I2 CR-N {} {"V1.01": "Buenos karts a muy buen precio con buenas medidas de prevención del covid."} {-0.028949449,0.015848832,-0.013046936,-0.0055761454,-0.06005138,0.051425505,0.004920537,0.05914083,0.022380544,0.07035325,0.04038133,-0.024858246,-0.075305976,-0.010894098,-0.021805597,-0.041745964,-0.06313415,-0.016306797,0.007190906,-0.028346252,0.04461285,-0.010672628,-0.04836044,0.10289256,-0.069042,-0.061303493,-0.0124835875,-0.008094522,0.023906529,0.035339843,0.020003581,0.01376085,0.123605706,0.008271319,-0.06319562,-0.021490185,0.06760638,-0.071027845,-0.0027528047,0.046544336,-0.03353215,-0.02927381,0.005338043,0.0083435755,0.006389046,-0.054695524,-0.044829477,0.066718064,0.015917767,-0.017066833,-0.022515101,-0.06302208,-0.028536348,-0.03188715,0.018276231,0.0153576415,-0.087128244,-0.070178285,0.076945,0.03006479,-0.006890613,0.02907941,-0.061931558,0.042552773,-0.028826784,-0.009934476,0.030198967,0.094170325,-0.0020125192,0.030378997,0.12591419,-0.08201215,0.020270199,0.082784645,-0.037263118,0.02066926,0.018129302,0.021881016,-0.016012922,-0.082287006,0.11467895,0.06324586,0.031766016,0.0055929893,0.0018444881,0.004200354,-0.03411363,0.0040303455,0.08297683,-0.012789014,-0.033034276,0.022525607,-0.009157341,-0.002557867,-0.08216324,0.05274029,0.059139818,-0.09399491,0.052460473,0.046514492,0.0539594,-0.06836893,0.08100789,0.082448065,-0.06747768,-0.026231864,0.009831404,-0.012584912,0.051021572,0.06994349,-0.026933303,6.3195315e-05,-0.06011104,-0.036999367,-0.07409426,0.012605035,0.0412454,-0.040551506,-0.0006267752,-0.051015507,0.058218773,0.0032411371,-0.009505708,-0.10181039,0.05149859,-0.028604114,0.038280893,1.9794564e-33,-0.01754658,-0.08649088,0.032347675,0.07475269,-0.027579516,-0.012234657,-0.025514282,-0.032902785,-0.025325853,-0.0153175825,-0.10387789,0.043608133,-0.0004185483,0.02915536,0.03742283,0.008778264,0.0007598583,-0.053019706,0.03489056,0.082996555,-0.04770638,-0.052630894,0.00195661,0.0832441,0.06807457,0.036797613,-0.028897211,-0.059357584,0.01792883,0.0556116,0.008036744,0.054759067,-0.013646951,-0.054326613,-0.07417707,0.028868224,-0.0012404958,0.01918496,-0.02121311,0.012479379,0.041961115,0.03205593,-0.03267944,-0.014607278,0.035870485,-0.053267837,-0.043953616,0.020383574,0.0028403017,0.025508659,-0.07052231,-0.019549334,-0.102770284,0.020436121,0.006398123,0.08413523,-0.050458256,0.08696584,-0.038706686,-0.05462913,0.05168173,-0.0099132005,-0.03311588,-0.009438485,-0.050258115,-0.074494325,0.03845451,-0.03934532,0.101928756,-0.001702743,-0.1131726,-0.039324954,-0.060393676,-0.008988691,-0.021518523,0.038211584,-0.030599225,0.057216514,-0.03240945,0.071496576,-0.14056535,-0.015626052,0.06271203,0.07135993,0.104286775,0.049185522,-0.019449381,0.08642294,-0.052603953,-0.027684083,-0.048909195,0.085691735,0.13461179,0.033409327,-0.010409534,-4.418106e-33,0.06730183,-0.026319949,0.04309369,0.040793013,-0.011628443,0.10698472,-0.021465855,-0.07268464,-0.052138485,-0.05542327,-0.04399548,-0.02893256,0.09494322,-0.021315336,0.015495395,0.09265438,0.03847844,0.00990712,-0.09392327,-0.05029265,-0.05650898,0.045739796,0.04826485,0.0073774285,-0.033480883,-0.05411004,0.027028577,0.0031743827,-0.092353635,-0.028102444,0.0019610773,-0.059691712,-0.0073879007,0.06658382,-0.052184604,0.049049743,0.07227084,0.0125943655,0.00053701364,0.044904176,0.10002484,0.08641493,-0.014188738,-0.022875689,-0.04352802,0.037499513,-0.0019711866,-0.09009301,0.042321205,-0.055473752,0.046679858,-0.04469342,-0.089060575,0.006085967,-0.019435566,-0.09824486,-0.037508022,-0.051730275,-0.066800386,-0.0120975645,0.017849479,-0.027208542,-0.052736133,-0.01203476,0.037996855,-0.022906061,-0.03996661,0.07004272,0.07254229,-0.029702773,0.072998285,0.03226314,-0.07200924,0.030859027,-0.07661484,-0.049449746,-0.05542471,-0.029458323,0.06647902,0.028209899,-0.009648928,-0.030221175,-0.0028535104,-0.00921426,-0.022302277,-0.0074048154,0.0066724857,-0.077810295,0.08667198,0.06900693,-0.07730543,0.03202868,0.0042759897,-0.08071716,-0.03985062,-2.7027507e-08,0.06831957,-0.046035882,-0.061333235,0.078009866,-0.015412436,-0.005665482,-0.13959943,0.02829558,0.04022902,0.07875004,-0.050447416,0.020381646,-0.01660018,0.026629118,-0.03813504,0.03317248,-0.01309509,0.14937402,-0.049970582,-0.05226733,0.0075632613,0.023121288,-0.05134675,0.013965998,0.013404155,-0.050270297,-0.029612904,-3.1823838e-05,0.008266758,0.018732693,-0.091585115,0.034577392,-0.03781334,-0.03640197,-0.0022088771,-0.010313105,0.030946497,-0.02292414,0.04630628,-0.0070058694,0.09887641,-0.0013194293,-0.076181196,-0.028733177,-0.056061268,-0.08795853,-0.0018878267,0.05516445,-0.0025784215,-0.0090039,0.01534164,0.041702624,0.05433587,0.0678514,-0.0067532174,-0.031088319,0.060082823,-0.047050852,-0.003274627,-0.047367003,0.038024075,-0.015941117,0.08411263,-0.02261671} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.315449+00 2026-01-30 02:01:12.498915+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2250 google ChZDSUhNMG9nS0VJQ0FnSUM2bk1YM1BnEAE 1 t 2253 Go Karts Mar Menor unknown Circuito de Cars económico en el que tanto pequeños como grandes disfrutan mucho circuito de cars económico en el que tanto pequeños como grandes disfrutan mucho 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {A3.01} V+ I2 CR-N {} {"V1.01": "Circuito de Cars económico en el que tanto pequeños como grandes disfrutan mucho"} {-0.012527382,0.05561007,0.005835125,-0.030104825,-0.045116052,-0.013050132,-0.0072104223,0.10813781,-0.05246763,0.015262063,0.02678708,0.03182382,0.0091421725,-0.0048274896,0.025030391,-0.012530819,0.023387957,0.032907404,-0.022534734,-0.046821374,0.05585815,-0.0786306,-0.047591686,0.037986867,-0.08836114,0.014573038,-0.0061015226,0.024191119,-0.03776494,-0.0862029,-0.117288515,0.08412953,0.07250712,-0.01583741,-0.006070136,-0.08514941,0.040770672,-0.02511052,-0.0026953483,-0.02596801,-0.08076065,-0.07228769,-0.022135528,-0.044755053,0.033477835,-0.013630119,0.08256688,0.06570503,0.032280356,-0.12326435,0.0051997597,0.049729206,-0.013596143,-0.014375426,-0.044384576,-0.0205381,-0.020364905,0.0511445,0.025916917,0.056748077,0.016821507,-0.03238262,-0.013653441,0.027130084,0.026622776,-0.031167222,-0.030963207,-0.016003706,-0.10714144,0.0302065,0.10977494,-0.14288343,-0.018823523,-0.069485396,-0.027644444,-0.043212336,0.046853807,0.056804735,-0.030501256,-0.06214127,0.03611599,0.0009259107,-0.090000935,-0.05331765,-0.0075864797,0.011574667,-0.00950429,-0.0736195,0.024930209,-0.003405523,-0.0135088,0.059703115,-0.03010797,-0.047086287,-0.0016276278,0.0316679,0.059534736,-0.044046447,0.090289086,0.009287947,0.12882331,0.043756217,0.07503795,-0.025126012,-0.06661823,0.05935751,0.006745744,0.03571046,0.02826168,0.017021222,-0.05636468,0.00929763,-0.05444637,-0.04302018,-0.07895702,-0.07964538,0.018725656,-0.014281596,-0.018960994,0.04778686,0.026799979,-0.12230372,-0.037396543,0.015055697,0.0016805561,-0.013486222,0.0678821,9.020804e-34,-0.12668115,-0.047831457,-0.047329646,-0.0031086057,-0.013882856,0.07507824,-0.018154208,0.03873367,0.0139818415,-0.0056638373,-0.011442393,0.066540316,0.006324629,0.01583701,0.15837477,-0.0032466694,-0.08341372,-0.041880786,0.025882032,-0.03926567,-0.05292781,-0.013779864,0.06858676,0.040172186,0.023392348,0.085173585,0.032455288,-0.032026842,-0.06878862,0.021743461,0.052490957,0.08822804,0.027417531,0.018005216,-0.10870099,0.017784197,0.029429888,-0.0027692043,0.030554162,-0.013226256,-0.032222338,-0.02591944,-0.077617966,0.017659111,-0.025587464,0.032613695,0.06944986,-0.013118165,0.055935442,0.02192737,-0.081290245,-0.040334325,-0.022079421,-0.10400521,-0.013028384,0.058620743,-0.01909139,-0.022378976,-0.031450037,-0.024866248,-0.123250164,0.05956974,-0.015964221,-0.049989257,-0.069669485,0.057162188,0.0037642212,0.001494476,0.04765325,0.047675982,-0.035782818,-0.003641197,-0.021150745,0.026751462,0.049666636,0.026425933,-0.024616173,0.008761919,-0.01889871,0.029959802,-0.10671289,0.01944854,-0.00013512337,0.0006385776,0.14112838,0.08445196,0.010556784,0.059772186,0.06894989,0.08139156,-0.06267877,0.089887865,0.0024961203,-0.0047456915,0.12538655,-5.1920267e-33,0.00933101,0.010913059,0.021117847,0.038184218,0.034770362,-1.9329502e-05,-0.06991623,-0.03615662,-0.019897927,-0.010601983,-0.0834036,-0.034210227,0.1000632,0.003246248,-0.024095822,-0.02718028,0.03719945,-0.07242544,-0.08211817,-0.007649082,-0.043982875,0.036198083,-0.010457263,-0.006587809,-0.04086666,-0.051263284,-0.1493597,0.00066494767,0.009139135,-0.034096655,0.036535587,-0.0015883099,0.016806806,0.06826763,-0.062816866,-0.008356131,0.0073592714,0.04453214,-0.05067563,0.0013435535,-0.019590342,-0.038584013,0.03721132,-0.011229854,-0.00067514856,-0.037147768,-0.012048165,-0.06506214,0.055461247,0.0052430457,0.1613281,0.015469796,-0.028696312,-0.008351944,-0.05592305,-0.0083361,0.06950692,-0.014555299,-0.102205485,-0.011521393,0.10132449,-0.0061272853,-0.029150127,0.019254005,0.013757541,-0.05242953,0.049872313,-0.045518517,0.09120907,-0.050127845,0.06965985,0.017228633,0.0067226766,0.01776835,-0.06720578,0.040587228,-0.028629936,0.059788916,0.045694634,-0.015559359,0.039037075,0.0010296414,0.074559,-0.051898688,-0.047863342,-0.030316694,-0.046511244,-0.0075703543,0.026816508,0.012598129,-0.06958439,0.04856075,-0.052947957,-0.016818695,-0.063151844,-2.7757258e-08,0.030701432,-0.029681634,0.0062808865,0.024752522,-0.0067191273,-0.051684566,0.03157912,0.057213448,-0.07926579,0.030955601,0.036895055,-0.015940165,0.04284182,0.06570609,-0.010235371,0.011336941,0.041503392,0.08916474,0.00404437,-0.009791062,0.05861227,-0.010648372,-0.055012427,0.07660312,0.06893213,-0.032161426,-0.013919373,-0.0050571593,-0.019974094,0.008555052,-0.040176444,-0.03786247,0.060113173,-0.048055112,0.053606283,-0.032679405,-0.06028565,0.0070792306,0.026527403,-0.08586925,0.09654551,-0.04976584,-0.059499275,0.0027876352,0.013114958,-0.121141255,-0.07701293,-0.06705937,0.0070211035,0.023756752,-0.04696189,-0.026866825,0.013205777,0.028466033,0.029031536,-0.031785313,0.051599916,0.005466656,-0.1086125,-0.047765348,-0.0008327124,0.020611666,0.06627304,-0.031103091} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.076221+00 2026-01-30 02:01:12.621269+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2252 google ChZDSUhNMG9nS0VJQ0FnSURncU5pX0lREAE 1 t 2255 Go Karts Mar Menor unknown Buen lugar para descargar adrenalina con los amigos y familia. buen lugar para descargar adrenalina con los amigos y familia. 5 2018-02-01 01:52:39.833374+00 es v5.1 V4.03 {A3.01} V+ I2 CR-N {} {"V4.03": "Buen lugar para descargar adrenalina con los amigos y familia."} {-0.050210245,0.05707568,-0.011629005,0.008619348,-0.01776677,-0.0004714946,0.048423495,0.0022062978,-0.001025003,-0.045803785,0.103253596,-0.087384924,-0.059940692,-0.046266034,0.06130655,0.07161301,-0.07931354,0.029970638,-0.029338585,0.0014847004,0.092994675,0.004790565,-0.0684982,0.09116204,-0.07069257,-0.019337654,0.025361001,0.009229053,-0.025494564,0.021826752,0.067861095,-0.029638266,0.107462384,0.028415194,-0.00023992562,0.042049255,0.06846023,-0.05802647,0.024098115,0.02157707,-0.14080419,0.016428199,-0.013958611,-0.1015729,0.036151912,-0.110143475,-0.025663959,0.0778033,-0.014644044,-0.022288525,0.021808198,-0.04155646,-0.02119449,0.008690897,0.0123486025,0.013750461,-0.05448292,-0.083428755,0.030488225,0.041621298,-0.025356404,0.07942023,-0.09805184,-0.028780503,-0.052022126,-0.030609787,0.09065267,-0.009787021,-0.0128834415,0.07391757,0.038956523,-0.038683135,-0.018501807,0.05808288,-0.052724414,-0.012042459,-0.058068816,-0.038703535,-0.07371122,-0.02329942,0.036988202,-0.015855288,-0.034348115,-0.0596095,-0.013184698,-0.0022514223,-0.041447658,0.009519976,0.007990093,0.02294513,-0.0070993565,0.015265072,-0.10181849,0.067784764,-0.034544647,-0.0011871014,0.039591804,-0.049853504,0.00748974,0.034452774,0.044156305,0.087568246,0.04714288,0.011029409,-0.028676221,-0.03817636,0.045462944,0.0046787714,-0.01991263,-0.012553221,-0.05746882,-0.051048167,-0.030917492,0.02623205,-0.111368835,-0.029837228,-0.017870437,-0.029331008,-0.027827164,-0.067582645,0.06939084,0.06959929,-0.048608318,0.014175102,0.07164672,-0.07231054,0.008105736,5.8449447e-33,0.01602711,-0.052787054,0.009072801,0.11741833,-0.03276658,0.09151185,0.011487225,0.020293523,0.019183984,-0.064176194,-0.03336738,-0.012875724,-0.031025264,0.02728132,0.006717893,0.014346823,-0.06457327,-0.058414392,0.09027079,0.0794702,-0.043635037,-0.012895825,-0.06384641,-0.0009342273,-0.037729185,-0.0045276526,0.0093735745,-0.00798969,-0.013239973,0.090880975,0.014010873,-0.028014807,0.031621307,-0.0409918,0.021214886,0.009714203,0.095316455,0.04026151,-0.007792706,0.0026933074,0.042535763,0.017668463,0.0023968348,0.010226544,0.04257009,0.0510175,0.1026309,-0.0315587,0.014795349,0.03932113,-0.043727115,-0.08389633,-0.02734069,-0.07008181,-0.023622606,0.0014352824,-0.060859572,0.039913435,-0.017466595,-0.019040134,0.040814117,0.009862368,0.033409446,-0.014575417,-0.032506287,-0.06883385,0.09317891,-0.010036111,0.013960649,0.087894194,-0.025176229,-0.05107356,-0.006324337,0.0021782583,-0.012613391,0.03197254,-0.01611254,0.03633701,-0.062335778,-0.009963171,-0.06762826,0.03015346,0.02909126,0.06724259,0.09946642,0.039720073,0.014637261,0.051462233,-0.038809408,0.062088568,-0.029158456,0.067520395,0.040386897,-0.06357651,0.067522794,-6.432761e-33,0.023852939,-0.04273539,-0.033051167,0.06733856,-0.0150023615,-0.0011047436,0.011988367,0.013745441,0.023120755,-0.039440867,-0.11498513,-0.086829625,0.09119678,-0.0474199,-0.016139142,0.08792224,0.022762582,-0.027581856,-0.0711734,0.0047096354,-0.039862074,0.06877943,0.044069815,0.016428564,0.07894811,-0.06622798,0.029302293,0.03145797,-0.07376003,-0.08745369,0.0583382,-0.07393495,0.067036964,0.016141761,-0.10015793,0.04972298,0.035552904,0.0034410295,-0.032057773,-0.0032036304,0.034456816,0.03922758,-0.052641302,-0.021238498,-0.010432407,0.097679295,0.011973265,-0.13647145,0.011363407,-0.017390445,0.043611642,-0.067505054,-0.022310758,-0.038865667,0.10953912,-0.06569807,-0.03863069,-0.0649214,-0.055784576,-0.036771003,0.05635546,-0.0067679314,-0.09171243,-0.006648023,0.05556612,0.008018446,0.037170567,0.026716547,0.07539176,0.06312438,0.11097533,-0.041579165,-0.046928115,0.0038494626,-0.10817778,-0.02156199,-0.13261001,-0.022876985,0.025056735,0.047686785,0.009121033,-0.04114514,0.0363564,-0.035460293,-0.060082417,-0.056705613,-0.074505985,0.09470026,-0.043432675,0.047146134,0.01919106,-0.01984681,0.009462248,-0.066802904,-0.04262332,-2.8157633e-08,0.046154328,-0.061064854,-0.012414633,-0.030958567,-0.028347071,-0.026425894,0.063882746,0.019837318,0.010761412,0.083008245,-0.05330281,0.0131457625,-0.0073036416,0.07866567,-0.041933935,-0.02295671,0.090939105,0.055368572,-0.0041711815,-0.04569195,0.0591239,0.02217962,-0.039439104,0.016959045,0.016795916,0.027498154,0.0029538765,0.029458378,0.08363819,-0.029958133,-0.029239947,-0.042301983,-0.046916176,0.0012134963,-0.036561463,-0.05796441,-0.06732303,2.4932347e-06,0.0046123443,0.0127723105,0.12409946,0.028867008,-0.02637925,-0.021367988,0.03336392,-0.057563648,0.068941355,0.07206298,-0.0018788523,0.052250367,-0.011117003,-0.052573174,0.051264793,0.051250625,-0.040842436,-0.046798952,-0.0031479006,0.012881196,0.025817256,-0.027417531,0.10655955,0.15281042,0.018403014,-0.014093641} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.102325+00 2026-01-30 02:01:12.627231+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2260 google ChZDSUhNMG9nS0VJQ0FnSUNXM2RqNUJBEAE 1 t 2263 Go Karts Mar Menor unknown Unas instalaciones muy bien acondicionadas unas instalaciones muy bien acondicionadas 5 2023-01-31 01:52:39.833374+00 es v5.1 E1.03 {} V+ I3 CR-N {} {"E1.03": "Unas instalaciones muy bien acondicionadas"} {0.0010840886,0.004866632,-0.057708994,-0.06843963,-0.053933114,-0.016296124,0.075844474,0.036698513,0.03259272,0.049198072,0.11729467,-0.0044912556,0.002831916,0.0026199527,0.027993368,0.0045906343,0.005461324,0.0025314721,-0.009394739,-0.0006903676,-0.04323276,-0.07569826,-0.09074413,0.089113355,-0.10021099,0.010546558,-0.07141528,0.020024484,-0.0024315235,-0.078804865,0.01259004,0.045783862,0.119767845,-0.056123238,0.034512293,-0.04999001,0.0677717,-0.05476579,-0.007619629,0.025538696,-0.07551035,-0.040246554,-0.04414831,0.0059863003,-0.022877704,-0.092048876,-0.03435977,0.06777039,-0.018241359,-0.018387027,-0.010685817,0.0091250315,0.03901942,0.026021376,-0.0011941704,-0.0005844515,-0.010056387,0.04344569,0.02866668,0.054189414,0.04580332,0.07523693,-0.05612803,0.000662177,-0.038771443,0.016689878,0.03684872,-0.04423857,0.031716824,0.02722366,0.058422387,-0.1084593,0.010241709,0.008698046,-0.0077876346,0.009671563,0.04386987,0.06430251,-0.021416377,-0.075958,-0.0245518,-0.031279247,-0.050391305,-0.012734862,0.03392603,0.0069754426,-0.05828255,-0.00944786,0.04655947,0.009997077,-0.024954172,0.04707092,-0.011982537,-0.057749875,0.027692972,-0.011653367,0.04561826,-0.10787097,-0.055366438,0.06347141,0.06785004,0.025380965,0.0759553,0.04823265,-0.07246373,-0.03095881,-0.014534574,-0.07997207,-0.015991395,0.055105552,-0.07311234,-0.11591224,-0.0086988,-0.061570447,-0.09593127,0.027681133,0.0072411075,-0.050491482,0.016429944,-0.08522214,0.04654872,-0.0017015571,-0.022540694,-0.058167394,0.036373172,-0.019992167,0.06447027,1.750256e-33,-0.07404481,0.04443558,-0.060274053,0.1199468,0.0050141336,0.0053379685,-0.014915428,-0.0017967165,-0.024300952,0.010813274,-0.104298405,0.053147983,-0.02591597,0.024198737,0.15331292,-0.015212516,0.051112033,-0.007992255,0.046959836,0.017216556,-0.052274045,0.0013777781,0.03619805,0.034240857,0.07195794,0.011073066,0.032251623,-0.021949762,-0.034923438,0.04776024,0.0022816227,0.0111819925,-0.014896075,-0.00959771,0.012760458,-0.038515706,-0.012559919,0.016152767,0.06525902,0.013066381,0.054951727,0.025545776,0.011887325,-0.038081422,0.08323944,0.05018936,-0.0015499776,0.034369007,0.14330208,-0.022230536,-0.027808093,-0.024829114,-0.07002554,-0.015442642,-0.050268054,-0.021038529,-0.09431862,-0.0053349556,0.017244803,-0.08033626,0.019278772,-0.017242063,-0.017478814,-0.026445005,-0.020613039,-0.07866718,-0.027965453,0.047417402,0.114179574,0.009277501,-0.13658726,-0.102539584,0.0072005037,0.00816076,-0.04930197,0.04695569,-0.04432314,0.0096538495,-0.022368213,0.05749733,-0.05247586,0.012549802,0.05637251,0.033808436,0.11746233,0.087383136,-0.04458357,0.053586032,-0.01114573,0.050806567,0.010717086,0.10813754,0.015423072,-0.019186765,0.059568066,-5.4362716e-33,-0.0060333624,-0.060444515,-0.0077873245,-0.022938613,0.004506729,0.062080834,-0.064214714,0.0047379583,-0.019778427,-0.060727257,-0.058520768,-0.043140862,0.053378567,-0.054451484,-0.016116472,0.07130528,0.0049489588,-0.06110333,-0.019278336,0.02713718,0.012928756,0.005551686,0.08977273,-0.004244129,-0.0129944235,-0.09644813,-0.023058647,0.02357033,-0.006484312,0.054598738,-0.003254213,0.00035434737,-0.07181322,0.042446896,-0.048702836,0.023059055,0.09873503,0.061647695,-0.0271719,0.0263734,0.007151299,0.03422182,-0.047256473,0.019528786,0.007940428,0.03330068,-0.030526085,-0.16006422,-0.07866585,-0.038067512,0.0658582,-0.027182152,-0.029497871,-0.01071399,0.016494293,-0.052493963,-0.033550486,-0.0014732921,-0.0068001756,0.0077774352,0.078366086,0.06916177,-0.033886235,-0.0840645,0.057121553,-0.028939012,-0.020646665,0.037970625,-0.02623154,0.02569546,0.08180097,-0.018573921,-0.06847992,-0.041635934,-0.03433106,0.014702719,-0.071989834,-0.013259204,0.0019203392,-0.05890606,-0.0527977,-0.039120235,0.04386646,0.00026093255,-0.057134014,-0.078321986,0.04204275,-0.057313345,-0.010719916,0.03517422,0.040729873,0.03237597,0.046475735,-0.0030401126,0.028099436,-2.6197368e-08,0.009125212,-0.07054543,-0.07113678,-0.010716833,0.041191913,-0.034299906,-0.111554846,0.106873386,0.0396646,-0.019295117,-0.025873737,-0.027483089,-0.018251,0.085449174,-0.050316148,0.050946563,0.008328473,0.15161556,-0.04163283,-0.043143548,0.034552958,-0.014106358,-0.012384099,-0.0019911667,0.05162705,-0.050827302,-0.03566249,-0.045235272,-0.03734122,0.049206454,-0.029169377,-0.042551506,0.05395382,-0.05226872,0.055502564,-0.0067537613,-0.02476024,0.0024143339,0.01847554,-0.12846811,0.057071898,0.071316175,-0.048624985,-0.0011592474,-0.004678848,-0.12676464,-0.07339202,0.009761341,0.0030798325,0.021801103,0.017394308,0.0054505426,0.018024033,0.050453898,0.06492955,-0.034534335,0.043400653,0.023339693,-0.0043791747,0.025559992,0.048672143,0.06886601,0.12183142,-0.11001373} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.692288+00 2026-01-30 02:01:12.662037+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2264 google ChZDSUhNMG9nS0VJQ0FnSUQ4Xy02ZWV3EAE 1 t 2267 Go Karts Mar Menor unknown Buen estado de los karts, limpieza y seguridad 100% buen estado de los karts, limpieza y seguridad 100% 4 2021-01-31 01:52:39.833374+00 es v5.1 O1.03 {E1.01,E4.01} V+ I3 CR-N {} {"O1.03": "Buen estado de los karts, limpieza y seguridad 100%"} {0.033906583,-0.004072987,0.015901465,0.029341413,-0.02531651,0.0023926059,0.036388952,0.04950824,-0.03169735,0.009074003,0.07143541,-0.030196313,-0.041858673,-0.008462503,0.05328003,-0.027971214,0.0025295562,0.015662218,-0.053921185,-0.03660899,0.04810796,-0.044604663,0.017238116,0.040354133,-0.086598225,-0.06726063,-0.0059778066,0.02608078,-0.00063833274,-0.105773106,-0.085921496,0.041163042,0.03350153,-0.03800057,0.019618357,-0.059489746,0.057890166,-0.10296403,-0.053662732,0.06147596,-0.013258234,-0.040461395,-0.069282785,-0.020813659,0.007708602,-0.06164404,-0.0630421,0.0739085,-0.0032239219,0.048624285,-0.042491958,-0.077283524,0.021449236,-0.014308186,0.004217307,-0.046752084,-0.05741287,0.03640093,0.1242501,0.03254384,0.10904725,0.11167658,-0.04000204,0.0045452416,-0.02642632,-0.08689035,-0.008430912,0.069888614,-0.07898405,0.09526587,0.13390025,-0.100287065,0.03991383,0.033875555,0.017587999,-0.007723143,-0.019616503,-0.034586493,-0.107149184,0.0050317002,-0.012945616,-0.04204474,0.014865793,-0.06413539,-0.031719957,0.0012219821,-0.013445991,0.07313723,-0.0066911476,-0.0039539146,0.0039354553,0.08663602,-0.003194215,-0.0251384,0.11946108,0.070284225,0.05253706,-0.092532165,0.06934144,0.01618692,0.026016146,0.026905578,0.161346,0.000570273,-0.037654635,-0.05145932,-0.030880861,0.02912988,0.045442566,0.034523472,-0.03745016,0.01143545,-0.020818204,0.057280507,-0.10721212,-0.10395428,-0.03096094,-0.009539655,-0.008108342,-0.042842302,0.06273736,0.08149919,0.010950184,0.041242253,0.054347288,-0.012565198,-0.007772154,3.2131763e-33,-0.055321734,-0.0070305266,-0.04481629,0.018327976,0.0038503855,-0.08712234,-0.016783653,-0.043014698,-0.05645921,0.036527563,-0.10673391,0.031261705,0.011865354,0.035458997,0.07759924,0.012407979,-0.04222662,0.002624882,0.04436711,0.037462953,-0.040702514,0.029479839,0.02551896,0.0498856,-0.011941608,0.039804846,0.030601649,-0.032415673,-0.10730419,0.019327618,0.012557123,0.04266084,-0.009310692,-0.08115285,-0.03097835,-0.063136354,0.042401507,0.043619227,-0.07063082,0.010952826,0.046295978,-0.03011353,-0.015840799,0.0050573857,-0.04964287,0.03149568,0.07265688,0.046114564,0.08126584,0.01145806,-0.07601291,-0.0059397565,-0.043186266,-0.008545395,-0.018620335,0.006875913,-0.015573082,-0.0044108867,-0.0696026,-0.020494347,0.08959915,0.023953691,0.031376418,-0.1276576,-0.021540524,-0.038232427,0.036273956,-0.020122232,0.0581585,-0.029827524,-0.06611918,-0.06655777,0.02777594,0.035827283,0.05700063,-8.610351e-05,-0.00071943976,0.10445041,-0.010298483,0.029953938,-0.04444517,0.05985559,-0.01521015,0.002508211,0.050032206,0.07343411,0.005569382,0.03682539,-0.0047052857,0.0897178,-0.09441048,0.01462649,-0.017870579,-0.027367022,-0.016271211,-4.410594e-33,-0.012747486,0.028678961,0.068350606,0.14455268,0.010010335,-0.014576829,-0.0044323285,0.030018007,0.029708616,0.024718098,-0.022006122,-0.05090489,0.0026137847,-0.02612868,-0.00397074,0.0950714,0.01799607,-0.0035402337,-0.07121215,-0.023192102,-0.031479098,0.012668521,0.07746877,0.053622525,-0.019918885,0.024527129,-0.01820012,0.0048877886,-0.12116611,0.0013638862,0.08358055,-0.114542745,-0.055720694,-0.014489733,-0.07807112,-0.03403301,-0.04883431,0.11642152,-0.021000188,0.06782254,0.08415912,0.0348347,-0.06650013,0.051075455,0.014788902,-0.011401435,0.07142885,-0.10775553,0.00039923872,-0.074665405,0.14316659,0.014485259,0.01722602,-0.005912628,0.019611176,0.0013076712,-0.008838128,-0.017851122,-0.09593488,0.016327241,0.06302971,0.03258127,-0.028945602,-0.037578695,0.0855584,-0.009355684,-0.04780694,-0.046611063,0.019844824,-0.0132401865,0.03476127,-0.010351689,-0.0109359855,0.04580544,-0.070308454,-0.023999764,-0.10388771,0.002234014,0.028562652,0.023379348,0.02945914,-0.063622706,-0.053793706,0.0035707946,-0.0066003962,0.057677537,-0.08165512,0.008636153,0.090424486,0.0021008444,0.010267228,0.0053099873,-0.012075168,0.013770987,-0.023939617,-2.558219e-08,0.054132257,0.01734736,-0.074790515,0.069035836,-0.009396182,-0.0018588804,-0.030572748,-0.005366908,0.022137046,0.11575027,-0.06330291,-0.02395435,-0.044153146,0.047452446,-0.043978028,0.0013532627,0.028083023,0.18293095,0.006976011,-0.066410415,0.05718365,0.0053134905,-0.0129773235,0.028558198,-0.0064704902,-0.06883429,-0.051306844,0.020200487,0.02106217,-0.014625061,0.01781155,-0.020625768,-0.037831455,-0.022457756,0.018616294,-0.034837276,-0.053334225,0.011284131,0.009697716,-0.02061311,0.019476684,-0.017501825,-0.07101134,0.001509808,-0.077200286,-0.07430564,-0.022793347,0.047864757,-0.019994961,-0.0038087212,-0.043988682,-0.05965119,-0.021748468,0.076869786,0.0068025393,-0.018025775,0.039123222,0.01212147,-0.037133228,0.0013562475,-0.0054757204,0.0018865624,0.029205386,-0.052705396} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.78099+00 2026-01-30 02:01:12.673711+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2245 google ChZDSUhNMG9nS0VJQ0FnSURJOUoteVRBEAE 1 t 2248 Go Karts Mar Menor unknown Un muy buen rato de risas y competición sana un muy buen rato de risas y competición sana 4 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {E1.04} V+ I2 CR-N {} {"V4.03": "Un muy buen rato de risas y competición sana"} {-0.00037647013,0.006354446,-0.04269849,-0.046393625,-0.05918572,0.034660596,0.06040387,-0.025110716,0.007679787,0.0018682104,0.014198977,-0.03245486,-0.039887693,0.062429734,0.02147584,-0.033300288,-0.04329138,0.012850837,0.007351736,0.001714356,0.11086835,-0.07502849,-0.07849851,0.08068428,-0.07999691,-0.07490366,0.03334734,0.0046774545,-0.007045059,-0.07551997,0.03682348,0.06915185,0.10878891,-0.043321364,-0.015992006,0.008310523,0.035420746,-0.09131413,-0.015254497,0.08502572,-0.0759372,0.0133943055,-0.035885718,0.0072049806,-0.007886614,-0.07579035,0.07059974,0.010221268,0.024710665,-0.042919546,-0.058823198,0.026983598,-0.016557112,0.025883762,-0.046303913,-0.022447756,0.009533452,-0.103461675,0.050284132,-0.0073035955,0.04594928,0.058233242,-0.02314721,0.03758195,0.02940953,-0.016176626,-0.034642413,0.035851978,-0.03376779,-0.0144137405,0.10576214,-0.07904263,0.02102781,0.086813666,-0.012192427,-0.030681401,-0.038005613,0.03148286,-0.043210834,-0.05126682,0.0009217532,0.0016347648,-0.050340384,-0.026430245,0.035942074,0.011151614,-0.03970486,-0.01508814,0.027268946,0.012710584,0.023045272,0.08113568,-0.054959677,-0.08286146,0.05064332,0.019397711,-0.036957845,-0.085617,0.052820228,0.042293422,-0.0039962507,0.061151985,0.038002122,-0.0044792155,0.00038186772,0.016326403,0.038217463,-0.06327638,-0.027042456,0.056534532,-0.058407012,0.04173045,-0.08942514,0.040160548,-0.047832474,0.016360842,0.048743505,-0.004823587,-0.06908767,-0.073451586,0.05177029,-0.005472775,-0.08610496,-0.081088424,-0.032396067,-0.04386695,-0.008265404,3.4667165e-33,-0.04640967,-0.15026717,-0.06393273,0.008290346,-0.0061119623,-0.0028279552,0.02448512,-0.06314338,-0.025263067,0.0028738268,-0.04053844,0.037021447,0.053829014,-0.006057854,0.08944694,0.024588482,0.06356464,-0.039003596,0.119348675,-0.07008215,-0.03411628,0.039000113,0.0042060087,-0.0021585831,0.033832945,0.046271577,-0.046927836,-0.069049045,-0.024949085,0.05632443,0.032887217,0.023968484,-0.048976697,-0.048673376,0.0024363506,-0.108486034,0.012479058,0.0057520824,0.03541257,-0.014962374,0.018728448,0.0016863437,-0.022666322,0.017886002,0.007582752,0.0011567596,0.00061730325,0.032462332,0.038611837,0.06986411,-0.04138432,-0.039723366,-0.08340002,-0.050654244,-0.0009116939,-0.016548458,0.0009185135,0.0070382506,-0.101978764,0.013097439,-0.019243069,0.07894144,-0.040813968,-0.041127294,-0.03607664,-0.013636651,0.0343302,0.030584441,0.110850096,0.018707657,-0.0654017,-0.015535918,-0.05494018,-0.022591732,-0.07061494,-0.06094213,-0.017152105,0.025157241,0.06022282,0.024669208,-0.07643199,0.07840877,-0.008595564,0.037701994,0.06080458,0.11612913,0.06667792,0.021831179,-0.032841202,0.074144185,0.008710398,0.07526895,0.07704409,0.0010467647,-0.006192521,-4.552761e-33,0.020219842,-0.037269935,0.034078803,0.07189911,-0.0018410955,-0.0037166688,-0.07722983,-0.034377277,-0.07036615,-0.0021328162,-0.11409093,-0.10121006,0.09880038,-0.014329615,0.034074683,0.046760812,0.09596392,-0.0013360834,-0.09688279,-0.063754074,0.06110798,0.05413518,0.08552371,-0.057271592,0.014772481,-0.0895071,0.0018482206,0.075749956,-0.064112075,0.011413722,0.053903814,-0.08459193,-0.07181067,0.03445026,-0.012828711,0.012679141,0.05186534,0.013028539,0.028757012,-0.0023628874,0.0030855907,0.026321154,-0.06891303,0.07060572,-0.032729674,0.041586824,0.012221467,-0.07477045,0.003174143,-0.043895308,0.07735175,-0.086481184,0.0063593225,-0.04833751,0.01900947,-0.03521785,-0.038639996,-0.04063932,-0.101030074,-0.040793154,0.07536117,0.023349473,-0.07324854,0.04173513,0.078325555,0.024278406,0.030496208,0.042967554,0.030194083,0.009509335,0.119150385,0.021238944,-0.04467043,0.02986728,-0.13032672,0.020395558,-0.08681854,-0.015898773,0.046701506,0.072757006,-0.07775572,0.057790074,-0.022193113,-0.001307455,-0.0047320346,0.046705723,-0.0025780443,-0.0071688704,0.054523177,0.017336858,0.06157218,-1.8099636e-05,-0.06011262,-0.04245132,0.03342776,-2.3069623e-08,-0.016613832,-0.103352614,-0.035695836,0.055866227,0.050974682,0.0009924022,-0.026972415,-0.010952027,-0.014642506,0.09673958,0.04657254,-0.009987191,-0.018070761,0.07994707,-0.019746788,0.044339776,0.1165308,0.0752658,0.011089222,-0.04721037,0.097820684,-0.004417663,-0.035809774,0.02816891,-0.02833448,-0.020133168,-0.103593715,0.025593543,-0.03293078,0.024130255,0.07232529,-0.056777213,-0.0037410224,-0.04563264,0.043240897,-0.03133924,0.017470691,0.012082787,-0.004941904,-0.06286922,0.05731349,0.0679955,0.003966273,0.0662185,-4.1112045e-05,-0.043367263,-0.07584053,0.05169315,-0.021035712,-0.035393104,0.045449603,-0.05033967,0.057023674,0.07441039,0.0033770653,-0.008791884,-0.01409912,-0.017013546,-0.031638067,0.07120633,0.07321459,0.09603918,0.011246764,-0.002491765} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.978605+00 2026-01-30 02:01:12.602958+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2247 google ChdDSUhNMG9nS0VJQ0FnSUN1eU9PUWdnRRAB 1 t 2250 Go Karts Mar Menor unknown He ido a varios de la región y este es el mejor que he probado. he ido a varios de la región y este es el mejor que he probado. 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "He ido a varios de la región y este es el mejor que he probado."} {0.055741243,0.04418792,0.009857945,-0.052472487,-0.0046815635,0.0135926,0.06853502,0.028856302,-0.014392561,0.0073150937,0.016987832,8.032541e-05,-0.029820621,0.03533814,0.089748755,0.020242296,-0.024973528,-0.078574054,0.033865653,-0.081198595,0.113989145,-0.00010985019,-0.06314451,0.026757043,-0.055204667,-0.115980856,0.070685774,0.048469167,0.023937296,-0.0387674,0.03375366,0.056640293,0.001526163,-0.039236665,-0.012729169,0.017792892,0.02736547,-0.02698505,-0.030423375,0.052056648,-0.063241,-0.017963802,0.008554764,-0.011033923,-0.02570939,-0.06361634,0.033067644,0.08006172,0.03420105,-0.03432049,-0.06004468,-0.056890458,0.0061351783,-0.026649443,-0.02904503,0.031511948,0.010664205,0.009563224,0.06092379,0.08905879,-0.019113222,0.06125977,-0.026961928,0.03950665,0.007876452,-0.03280934,0.019402204,0.009526214,-0.111281075,0.014157226,0.1089859,0.008632325,0.0391442,0.068190716,0.008883044,0.022443388,-0.047790583,-0.010702307,-0.018556897,0.0032744685,-0.014950854,0.06622361,0.007877784,-0.08353209,0.012587349,-0.033709776,0.021118397,-0.003072909,0.04453949,0.016019884,0.039006185,0.037825298,-0.05572285,0.0013328845,0.030926934,0.0022474064,0.08278716,-0.012397153,0.021028053,0.05528786,0.068886794,-0.0071574147,0.055756576,0.026074866,-0.041798186,0.03963713,0.017821508,0.009654181,0.007985613,0.022749767,-0.054103676,0.010482917,-0.054721348,-0.0039042179,-0.08389577,0.002989341,-0.0021400682,0.023347432,-0.08557389,-0.09426709,0.04311636,0.01645102,-0.063586704,0.043933287,-0.012709813,-0.013980018,-0.012301847,8.34906e-34,0.04083166,-0.08543406,-0.0132855335,0.06868685,-0.049377657,0.0066588945,-0.029088292,-0.014571304,-0.053582672,-0.051995132,-0.0028552753,0.018214671,0.0060493853,0.046889476,0.06088344,0.09714987,0.029225603,0.027837018,-0.022729015,0.016711628,-0.06618927,-0.045817096,0.031937443,0.03493655,-0.020465115,0.11277406,0.05055808,-0.088685095,-0.07931339,0.061741125,-0.09452036,0.06917827,-0.0049672723,0.0695853,0.007022254,-0.0040491833,0.018872626,0.011466886,-0.041883316,0.022521343,0.06741655,0.058770373,-0.06065039,-0.03435291,0.0057488335,-0.053390633,0.05925764,0.07542701,0.040090587,-0.023984756,-0.038444918,0.0058241608,-0.019038444,-0.14533694,0.038602166,0.020943698,-0.07830464,0.037944883,0.05964412,0.009040251,0.034173008,0.014903008,-0.0014425506,0.014231452,-0.05568211,-0.060522534,0.049296033,0.020092538,0.063972056,0.039287657,-0.00443454,-0.022318821,0.05277453,0.06833615,-0.027574545,-0.0030548011,-0.029768841,0.044679627,-0.010616633,-0.0041077295,-0.09768215,0.026219089,-0.04218847,-0.0020754621,0.0043631103,0.11433773,0.07847537,0.0380521,-0.055654302,0.09504866,-0.011934174,0.05388567,0.0005451939,-0.057722922,0.02062562,-3.8250138e-33,-0.06622209,-0.015356176,0.0032535945,0.010127979,-0.018773958,-0.045546476,0.015580548,0.06874435,-0.018984053,-0.079665326,-0.094865106,-0.034582958,0.09672124,-0.013532853,-3.143265e-05,0.0644128,-0.025111688,-0.031208321,-0.08936622,0.034627263,0.01550381,0.06462514,0.09786873,0.004643761,-0.07454015,-0.07623599,-0.044768523,0.05920159,-0.115548305,-0.028210882,0.04898738,-0.033233974,-0.039183464,0.06931586,-0.11020414,0.027114082,-0.026081802,0.015889218,0.0660999,0.09592736,0.0023395366,0.07869746,-0.025775542,-0.060611233,-0.030812258,0.0290409,0.042160258,-0.074565396,-0.010590271,-0.12320306,0.0065687643,0.015058974,-0.06999599,-0.032566085,0.033975083,-0.045586534,-0.07672648,-0.08258983,-0.07789099,0.0027073482,0.036998443,0.037952755,0.04507857,-0.026710665,0.052153166,-0.008606447,-0.023498878,-0.02493393,0.055650298,0.03957816,0.15624468,0.03397246,-0.13908117,-0.029454967,-0.021561587,0.017589407,-0.11681837,0.040489428,-0.03919845,0.0040171696,0.006585476,-0.044431217,-0.011064797,-0.05054377,-0.020668833,0.025833396,-0.06647474,-0.002868663,0.05266347,0.026774557,0.018320369,0.05465212,-0.13222194,-0.0439614,0.012481309,-2.3602814e-08,0.015633482,-0.015425327,-0.035865635,-0.04027185,-0.001910883,0.020678412,-0.09123307,-0.00026196736,0.080336004,0.094340056,0.050882377,-0.05696711,-0.0141660925,-0.066277154,-0.017414981,-0.004692466,0.09430902,0.09081393,-0.03157865,0.0060449135,0.029486343,0.0065191127,-2.3895342e-05,-0.054902438,0.021391487,-0.036923707,-0.093017824,0.0083958525,-0.010023516,-0.013678538,-0.056176294,0.028868938,-0.049820717,-0.13567555,0.046018597,-0.01979481,0.013618316,0.035256285,0.03764449,-0.03288505,0.12266585,-0.048993837,-0.061825864,0.027078552,-0.08441886,-0.050944023,-0.023230257,0.015063614,-0.047441583,0.059491605,-0.07368702,-0.06052697,0.038624734,0.0015573358,0.066130824,-0.059475742,-0.007003913,-0.038935427,-0.056200746,-0.017358964,0.055678405,0.043662444,0.01602223,-0.08661257} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.01857+00 2026-01-30 02:01:12.608476+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2274 google ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB 1 t 2277 Go Karts Mar Menor unknown Magnífico circuito y trato supermamable magnífico circuito y trato supermamable 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Magnífico circuito", "P1.01": "trato supermamable"} {-0.05883183,0.004138924,-0.06551074,-0.005028114,-0.0027011456,-0.0068918164,0.072749995,0.1139065,-0.15790959,0.020061601,0.053756382,0.03750287,-0.03583721,0.019412,-0.07915879,0.031401806,0.0073327296,0.022609983,0.022535166,-0.0018379489,0.18835938,-0.064844556,0.03379149,0.030011803,-0.029822323,0.026707668,-0.028515896,-0.006466243,-0.08650639,-0.123852775,-0.08270053,0.046290196,-0.07780494,-0.032875374,0.00085297733,-0.0059260097,-0.053343285,-0.0063605234,0.08005963,-0.0483936,-0.045397054,-0.07242721,0.054190587,-0.09229002,0.046412077,0.008932119,0.03604847,0.017791435,-0.004043147,-0.007173591,-0.09643249,-0.06681828,0.033185605,0.08660734,0.05039415,0.09711953,-0.0387539,-0.037339676,0.022970919,-0.02002277,-0.02326911,0.020091714,-0.04550113,-0.031038027,0.14098184,-0.05014475,-0.045892566,-0.049915183,0.040418044,0.025748855,0.09215653,0.00047329077,0.06893244,-0.017737167,0.0057945424,0.08142565,-0.018507347,0.04056926,0.08231745,0.08325419,0.075323716,-0.10079204,-0.0013671316,-0.038874384,0.042063,0.024857113,0.029011516,-0.038439486,-0.033929985,0.0066694934,0.023711365,0.05607568,-0.062870525,-0.0075688604,-0.013157496,-0.061000768,0.02745466,0.018770717,0.008399758,0.029478567,0.07780981,-0.085683405,0.06573319,-0.031037714,-0.000527957,-0.035626944,0.020808212,0.008770492,-0.0011260128,0.032232616,0.02439286,-0.026856655,-0.056744725,-0.057965502,0.03129917,-0.02111668,0.015209431,0.046787325,-0.04499251,-0.05320723,-0.041964736,0.072153576,-0.06482689,0.024046967,0.011507056,0.0529428,0.0007939716,3.8135006e-33,0.041497707,-0.04752051,-0.018806124,-0.013858986,-0.030701129,0.05204841,-0.020776343,-0.001856738,-0.044234574,0.009610194,0.013879505,0.073727146,-0.010466369,0.016489862,0.053516157,-0.1167341,0.030640021,-0.05686849,0.023081163,-0.037439454,0.009240876,0.029476665,-0.025538485,0.048842214,0.01635461,0.08023481,-0.050179657,-0.029001806,-0.083879314,0.07609224,0.058657233,0.11985867,-0.026856057,0.005874103,-0.032822195,-0.07296004,-0.050607763,-0.0079541905,-0.009258373,0.036416702,0.035698835,-0.027881915,-0.016795836,0.00819457,-0.013051391,0.0014428416,0.01579462,0.10601853,0.053939186,0.021541359,-0.029158289,-0.1302191,-0.12956995,0.017506266,0.124080464,0.089064956,-0.029770881,0.0052667474,0.08544994,-0.02435171,-5.2031974e-05,0.023460342,0.021914857,0.05545366,-0.027484866,-0.023175916,0.067498386,-0.052941047,0.047971975,0.002042204,-0.020864593,-0.013806694,0.029769262,-0.04337051,0.017188862,0.017943615,-0.025146985,-0.040478196,-0.061401397,0.0022761538,-0.087418474,-0.03851201,0.023920018,-0.015637806,-0.010737148,0.03854107,-0.004331352,0.029486427,-0.028256051,-0.029598251,0.0053460426,0.04697022,0.010251514,-0.030944956,-0.017276732,-4.403989e-33,0.080899484,-0.0778952,0.05577547,0.042645015,-0.025972666,0.052744836,-0.04856231,-0.11843403,0.022743372,0.04427317,0.01295028,-0.028107777,0.026582759,-0.057901952,-0.013808023,-0.06218835,-0.026035996,-0.11737765,-0.006139546,0.018034149,0.014712964,0.03066232,-0.007878141,0.03605739,-0.037012868,-0.020377763,-0.014614994,0.05753365,0.0037671824,0.04599542,-0.014604752,0.04820306,0.0070788125,0.079704575,-0.0544783,0.0066413963,0.009524828,0.022496486,0.036872845,-0.012381543,-0.03720407,0.06689337,-0.023521272,-0.0068415534,-0.06753592,-0.06659882,0.05776279,-0.030283432,0.0476933,0.07539173,-0.035866186,-0.07979407,-0.053099,-0.040095888,-0.04758392,0.014530027,-0.09758064,-0.066560924,-0.047632854,-0.025034891,0.103264146,-0.061436445,0.028737076,-0.03228872,0.07738741,0.068082504,-0.040362865,0.08373627,0.09612232,0.017867878,0.10707233,0.047948584,0.057221908,0.021935644,0.008458639,-0.06840708,-0.042473223,0.0573293,0.031220267,-0.08627926,0.029778948,0.04446642,-0.048835702,-0.03584627,0.066146225,-0.04048079,-0.009367895,0.0076357666,-0.001537901,0.03306097,0.0070877243,0.012430191,0.010845366,-0.008852821,0.030963767,-2.0932504e-08,0.020678356,0.08746264,-0.045100745,0.03574822,0.07327693,-0.037287254,-0.011253899,0.01994468,0.06374738,0.0017275568,-0.017617201,0.0076440917,0.06428537,0.026486758,0.088210866,-0.0016022691,-0.019805398,0.035711754,-0.005512948,0.042899974,-0.0060893297,-0.048048742,-0.038695905,-0.023481721,-0.0527929,0.056405902,-0.010167893,-0.03251395,-0.0284228,0.0155765675,-0.046290226,-0.0206678,0.028625805,-0.02414374,-0.029274972,0.028098965,-0.00825094,-0.05789887,-0.043570224,-0.015059033,0.0556757,-0.09540751,0.012607431,-0.019610684,-0.12781882,-0.093719274,0.032548577,-0.012840469,-0.030015035,0.14080608,-0.053309526,0.02914267,0.0131782675,-0.049639296,0.061621252,0.024621192,0.07173077,-0.00043628452,-0.059174936,0.057253465,0.05686015,0.018141882,-0.02363237,-0.069297075} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.96817+00 2026-01-30 02:01:12.70935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2278 google ChdDSUhNMG9nS0VJQ0FnSUNhN08yYzRRRRAB 1 t 2281 Go Karts Mar Menor unknown El circuito super cuidado y los karts increíbles 🙌 el circuito super cuidado y los karts increíbles 🙌 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.02 {O1.02} V+ I3 CR-N {} {"O2.02": "El circuito super cuidado y los karts increíbles 🙌"} {-0.078942366,0.016375033,-0.001798284,-0.006265208,-0.059471056,0.018762145,-0.008262442,0.065173894,0.024416363,0.048583418,0.07517311,-0.011875448,0.015391492,-0.00752684,-0.010895395,-0.009419278,-0.03699291,0.023029586,-0.039065752,-0.04697024,0.09481571,-0.086326316,-0.040645473,0.0738845,-0.0766295,0.045779005,-0.013452258,0.06735363,-0.012869022,-0.13951589,-0.12515618,0.06782473,0.02064898,-0.021843966,-0.05031352,-0.021284241,-0.031678334,-0.04682998,-0.014050485,-0.034877934,-0.04511932,-0.06766736,0.015748505,-0.03814117,0.032083277,-0.025941152,-0.042061727,0.0043664617,-0.027823428,-0.054021854,-0.011283853,-0.06647829,0.07716949,0.01177719,0.042121973,-0.02092,-0.08963503,0.06451528,0.15262207,0.04583199,0.097328804,0.014877292,-0.045103736,0.036425725,-0.012176058,-0.060790658,0.005070954,0.05902972,-0.08218616,0.08154145,0.12949626,-0.06187689,0.019681314,-0.027493488,0.101501435,0.041293465,-0.024703184,-0.0317098,-0.066029936,0.01850264,0.013475959,-0.026509503,-0.010899723,-0.05954773,-0.027339565,-0.02403217,0.038646583,-0.056561723,0.016617926,-0.050869666,-0.006592284,0.034280192,-0.02295518,-0.029295761,0.02113696,-0.00730523,0.027924374,-0.06419661,0.037558205,0.015397207,0.113136515,0.02095211,0.07613996,0.04488364,-0.058703065,0.031029114,-0.039482508,0.05082731,0.027857285,-0.003250122,-0.05557526,0.023861479,-0.07706433,-0.023125049,-0.028695837,-0.05891339,-0.015041429,0.034386504,-0.025466362,-0.03539337,0.043042712,-0.017440578,-0.05262985,0.010237871,0.028988851,0.002112763,0.069247976,2.176817e-33,-0.089054324,0.02735595,-0.025515197,-0.009126159,0.041855525,-0.08804635,-0.072834,-0.031007225,-0.065455616,0.022813603,-0.024730245,0.12942111,-0.038969133,0.0103302635,0.11764082,-0.031792674,-0.04700798,-0.12654434,0.0695224,-0.0050376733,0.031139206,-0.04883263,0.008838722,0.06744951,0.010500485,0.08425693,0.08494835,-0.040864345,-0.12738092,0.036978524,0.027175058,0.046584122,-0.0031885528,0.022063596,-0.10383822,0.030627698,0.024273515,-0.0016159097,-0.030454947,-0.024237007,0.0056691957,-0.04214758,-0.061787974,0.021443395,-0.033801608,-0.016618287,0.030440249,0.019526139,0.10339672,0.08004144,-0.10011289,-0.03598912,-0.06653656,0.014871532,0.063976996,0.076587126,0.026434481,0.020936636,-0.010825687,-0.033330675,0.041506168,-0.001478171,0.0053218245,-0.018974798,-0.059260838,0.048811983,0.00740732,-0.044468213,0.08601841,-0.039453033,-0.111151785,0.008088815,0.010756392,-0.008377471,0.0400938,-0.0041480656,-0.070759974,0.017449021,-0.014887635,0.06738744,-0.124180526,-0.014956511,-0.0051006223,0.025867157,0.07108146,0.02631958,-0.02096697,0.04375645,0.046110112,0.109764606,-0.041846752,0.041108232,0.06982096,0.0002599035,0.017374353,-4.2643974e-33,-0.016275257,0.024855906,0.09308109,0.09852433,0.010564451,-0.009596496,-0.03564703,0.00842306,0.003952267,-8.5099164e-05,0.010219504,-0.018034464,0.01520399,-0.029019216,0.007797346,-0.00014718004,0.030945992,0.0046928828,-0.04855049,-0.038510334,0.012373206,0.048836794,-0.021780342,-0.026814982,-0.046276227,0.02442538,-0.044374857,0.06325194,-0.050446376,0.040694863,0.014252571,-0.03564528,-0.031209357,0.0843106,-0.07471078,-0.021038976,0.031127859,0.091330595,-0.0636376,0.0193397,0.025715053,0.070457,-0.025268547,0.056405377,-0.08317341,-0.0068193856,0.0948424,-0.08145362,0.0596829,-0.047003925,0.093115374,-0.019364582,-0.03385032,-0.021548782,-0.011482819,0.014923103,0.02654814,0.00042361635,-0.03858565,-0.032229006,0.09695251,-0.03165022,-0.02964428,0.0018646918,0.06306665,0.0019476775,-0.019768756,0.05855874,0.096569404,-0.03420292,0.051409498,0.062928736,-0.03720158,-0.069595404,-0.025753153,-0.03069812,-0.13058493,0.0692419,0.033411924,-0.05825414,0.034312703,-0.01828318,-0.050794713,-0.021952944,0.052945975,-0.019900754,-0.011494918,0.058839113,0.074421726,-0.012682067,-0.009877337,0.09272692,-0.04163241,0.00940857,-0.036376752,-2.3834046e-08,0.012354852,0.043128856,-0.09622531,-0.0027735871,0.0495748,-0.090188526,0.006220651,-0.01352795,-0.053013396,0.0361598,-0.00017252681,0.019559527,-0.009687346,0.04512972,0.026786616,-0.0066661085,-0.019604195,0.1756612,0.0024728554,0.016997674,0.01992838,-0.017594563,-0.00906227,0.0178005,0.004430291,-0.016503682,-0.009363256,0.018487247,0.010336331,0.024771463,-0.045589134,0.0011806358,-0.067588985,-0.031388376,0.008604169,0.0105686635,-0.056000717,0.026058393,-0.020247199,-0.05016112,-0.0065719895,-0.09115414,-0.12341329,0.05444703,-0.05792321,-0.019934032,-0.05763322,0.0015587824,-0.044263024,0.024382783,-0.110956535,-0.03332972,0.0025550947,0.016686153,0.05066553,-0.019800456,0.05874095,0.0090663945,-0.054369494,-0.02452213,0.024163358,0.01749545,0.04144521,-0.091295175} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.045779+00 2026-01-30 02:01:12.735751+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2280 google ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE 1 t 2283 Go Karts Mar Menor unknown Трасса хорошая,но картинги старые! трасса хорошая,но картинги старые! 3 2023-01-31 01:52:39.833374+00 ru v5.1 O1.03 {} V- I2 CR-N {} {"O1.02": "Трасса хорошая", "O1.03": "но картинги старые!"} {9.878535e-05,0.06952055,0.019836225,0.008470558,-0.058688354,0.047197297,0.14186849,0.036713775,-0.041636415,-0.023954008,-0.04035181,0.048073743,0.03385476,0.057263616,-0.049590454,-0.051255222,-0.041623116,0.01073328,-0.010813429,-0.015398296,0.009665891,-0.033178426,0.078638256,0.055885125,-0.0767083,-0.0006686145,-0.091081485,-0.006098277,0.07350477,0.036060084,-0.05991966,-0.05077231,0.03263096,0.007189076,-0.011072517,0.032078248,-0.014475979,-0.040650047,-0.006735371,0.09000519,-0.07185176,-0.022522751,-0.099780045,0.04095033,0.025222735,0.08214554,-0.06225418,0.045569915,0.054957755,0.00084615545,-0.14795338,-0.014354853,0.031489868,-0.0055012186,0.05038012,-0.07202983,-0.015346139,-0.04390934,-0.051670454,-0.060464423,0.06603228,-0.04792077,-0.025163496,-0.030674065,0.014625367,-0.029611178,-0.033400655,0.07335716,-0.0313647,0.074984975,0.050603345,-0.009519158,-0.1607859,0.026985528,-0.100850716,-0.041522816,-0.01988963,-0.09525568,-0.050498873,0.053889655,0.11110141,-0.01440594,-0.06898738,-0.00680937,-0.028579501,-0.02724783,-0.034953006,0.05910544,0.0029926647,0.034660242,-0.007264808,0.012589868,0.0385575,-0.008901468,-0.07065978,0.0042653233,-0.015513157,-0.053081036,0.027944969,-0.014331455,-0.040427417,0.0041730916,0.0826897,0.044482205,-0.10255753,-0.0097664865,-0.070545,0.0051011047,0.025347037,0.03217658,-0.05806531,-0.05411923,-0.0039664274,0.017902153,-0.028430192,0.071503155,0.040262863,-0.0012707954,-0.04759978,0.016157396,0.08799932,-0.00399083,-0.02532303,0.021903979,-0.01397094,-0.03766712,0.06524269,7.680916e-33,-0.012926663,-0.030611625,0.0175296,0.003912691,-0.057616238,-0.008742798,-0.010144606,-0.012826861,-0.045339245,0.09010461,-0.061111785,0.036651123,0.030271502,-0.07415483,-0.0065611447,0.043164093,0.009375811,0.0011458762,0.058891192,0.1329409,0.013889533,0.059967928,-0.010446017,0.04933435,0.023497287,-0.08508865,-0.002039365,-0.024845442,0.044847008,-0.06468195,0.016965395,0.01362431,-0.046525788,-0.038684018,-0.07613553,-0.09812948,-0.0034734556,0.051657017,0.03404225,0.052092634,0.041625287,-0.05577888,0.014806835,-0.008475786,0.035309393,0.06313603,-0.0008631017,0.034931906,-0.0016952314,0.0065224967,0.016457109,-0.0097769555,-0.06435971,0.10198681,0.07122404,0.03227138,0.016849073,-0.023418209,0.019137003,-0.027217181,0.006775466,-0.14123288,0.07847738,-0.054766096,-0.023528699,-0.13883668,0.0036652132,0.0001869752,0.008245958,0.056852505,-0.051230002,-0.012666679,-0.038478713,0.09597668,-0.03203254,-0.015191852,-0.16029161,-0.033108283,0.011197422,0.06947197,-0.07185494,0.022063265,0.11465862,0.054259032,0.064956725,0.031267647,-0.033232115,-0.03235357,-0.004274499,0.02219421,-0.13773058,-0.04849297,0.020624615,0.007160854,-0.006633947,-8.115433e-33,0.06330492,-0.052498598,-0.07015878,0.07973406,0.012308297,0.05485753,-0.07268652,0.09531347,0.031224048,0.056877647,0.0674488,-0.041261286,0.05620668,0.038700394,0.018130364,-0.008551381,0.024836177,0.056124862,-0.14507905,-0.04028182,-0.06798468,-0.06804124,-0.053902593,0.044553902,-0.003080074,0.0014517577,0.07193477,-0.018824067,-0.10153519,0.07159271,-0.027761057,-0.05068988,-0.05372771,0.03395143,0.1025693,0.018188884,0.13923639,-0.06996514,-0.078268915,0.06309886,0.034883566,0.07387716,0.10458552,0.0778933,-0.0053773844,0.00026246684,-0.09099669,-0.05135933,-0.0021730612,-0.0008564826,0.033035077,0.00046864213,0.024686055,-0.011862342,0.077603556,-0.028393934,-0.049983088,0.018877666,-0.011685717,0.0012917676,0.055597037,-0.049640927,-0.0075575234,-0.022570105,-0.047024053,-0.007816564,-0.023450108,0.059493925,0.08938897,0.024299461,-0.010043929,-0.03849902,0.0015590484,0.06553363,-0.0074894167,-0.028091904,-0.048926212,0.080893755,0.12634987,-0.026190264,0.01714875,0.0046548075,-0.00038699066,-0.050605338,-0.006265261,0.01539586,-0.017039178,0.028904177,0.02881055,-0.018613102,-0.05403495,-0.0161571,0.03703578,0.027080651,-0.023521842,-2.8141432e-08,0.003925683,-0.07454497,0.045446984,-0.020830091,-0.052986123,-0.019304996,0.025129765,-0.0098522045,-0.07037497,-0.013663707,0.029954376,-0.016747905,-0.015269156,0.01934081,-0.032777376,0.007392768,0.016433977,0.08087177,0.030154673,-0.03698017,0.08594223,-0.0332419,-0.05857276,0.007910812,-0.0040892498,0.042752497,-0.01451775,-0.006561783,0.025048168,-0.04859742,0.012294695,-0.04948251,-0.008219775,0.0398353,-0.0072731576,-0.017175414,-0.049155224,0.021847833,0.02550946,-0.0820136,0.045886997,-0.014719996,-0.0060760127,-0.009688117,-0.038495187,-0.03541495,-0.029607993,0.024343159,0.00223075,0.030620513,0.020246653,0.053148504,0.05603321,0.04078653,0.0139898695,0.09598422,0.07137727,0.013429119,-0.03966946,-0.009709791,-0.029592821,0.017189937,0.029032132,-0.01735189} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.74978+00 2026-01-30 02:01:12.742833+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2284 google ChZDSUhNMG9nS0VJQ0FnSURudHBuRVFnEAE 1 t 2287 Go Karts Mar Menor unknown Simplemente increíble!!!! simplemente increíble!!!! 5 2025-01-30 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Simplemente increíble!!!!"} {-0.06369053,0.05940752,0.035548046,-0.008872403,-0.016077764,0.057784233,0.11966624,0.041872077,-0.01574598,0.01454496,0.06273445,-0.10750864,0.07642127,0.0020162761,-0.094584845,-0.11011231,-0.053111166,0.06856087,-0.059190255,0.06650698,0.06305227,-0.0031874238,-0.07472787,0.06706698,-0.015900608,0.05698439,-0.03459859,0.06049792,0.058405805,-0.08787383,0.059933364,0.016767748,-0.07855736,-0.07388574,0.062005673,-0.04164973,0.04835932,-0.045165654,0.05940478,0.0020745178,-0.118403256,-0.07349806,-0.098015815,-0.027650198,-0.03158454,0.030217996,-0.037623104,0.059252452,0.021601152,-0.051501036,-0.035283398,-0.011734753,-0.0067217373,-0.04165802,0.04416771,-0.040002637,-0.036160532,0.017033305,0.033686694,-0.00080159144,0.026995998,-0.012640116,0.006669697,0.02846164,0.00058875,0.048351146,0.054782413,-0.085041404,-0.008818243,0.036472104,0.10420513,-0.039800975,-0.03207696,0.062160775,-0.016701978,-0.015088431,-0.039079987,0.051212538,-0.013228819,0.07321111,-0.1302061,-0.097991146,0.00041112024,0.021922119,0.016119584,-0.028440962,0.013876979,-0.009189439,0.047698148,-0.0229582,-0.10478612,0.009924919,-0.012415203,0.015856152,-0.022795936,0.011340193,-0.02597756,-0.019401377,-0.09892753,0.04756253,-0.027176037,0.09910427,0.04702925,0.005487529,-0.099138066,-0.032762654,0.00911831,-0.09434533,0.056916106,0.039826736,-0.06557043,-0.094935924,0.10829376,0.031627055,0.03944956,0.018814513,0.02223906,-0.06766646,0.010705091,-0.05172157,0.093946226,-0.00507898,-0.053454638,0.044136506,0.002925189,-0.022131553,0.07995632,-3.7046685e-33,-0.032499056,0.03286063,0.041473683,0.09439397,-0.012148335,-0.00888869,-0.15233536,0.032684546,-0.0024849717,-0.06436348,0.007975579,0.010651048,-0.039215777,0.019918174,0.013380694,0.062113192,0.04996425,0.015751932,-0.0065701893,-0.07816275,-0.045541886,0.066487126,0.021286529,0.020519923,0.025501838,-0.021861166,0.07263853,-0.042655844,-0.019181479,0.005135023,0.062230434,-0.035685603,-0.028016834,0.007909165,-0.0024563258,-0.03358817,0.0032732186,0.013438129,-0.0017271097,0.051770072,0.014245783,-0.03943482,0.031937957,-0.1256097,0.07579374,0.03262443,0.04153248,-0.038541626,0.04193749,0.0051868604,-0.0067534847,0.02391906,-0.07656155,-0.002079152,-0.022025561,0.03390081,-0.020073308,0.04951481,-0.019683575,0.036678027,-0.020362427,0.05217142,0.034906477,0.030717775,-0.045012888,-0.048205804,-0.049403366,-0.00914534,-0.015426545,0.0786252,-0.06743288,-0.027314555,0.013146188,0.029325172,0.018340817,-0.027271563,-0.013643731,-0.08048356,-0.008197225,0.04166015,-0.08281371,0.014177795,0.04946298,-0.07217562,0.006427644,0.0038629123,-0.018413572,0.0034986737,-0.00071729417,0.04078861,-0.015952295,-0.025180645,0.05009545,-0.06382334,0.005674266,3.5789308e-34,-0.034803394,-0.043568265,-0.04566256,0.03599469,-0.04628156,0.020738637,-0.038622763,0.02884716,0.05457614,-0.03427916,-0.034084234,-0.05453242,0.057403397,-0.0146761425,-0.020657536,0.1016711,0.024094399,0.056076497,-0.016626162,0.038125955,0.051158678,-0.023713313,0.024043564,-0.015270639,-0.050360948,0.07221501,-0.049793895,0.033073414,0.009397395,0.016015386,0.029396337,-0.013199804,-0.05679538,-0.09998417,-0.04429687,0.0041598147,0.056033485,0.016698636,-0.016365333,0.010955738,-0.033800174,0.10021961,0.032830723,0.087168075,0.0054192105,-0.064015806,0.005149005,-0.09882211,-0.02688289,-0.018284582,-0.034375835,-0.032372396,-0.012733996,-0.026691379,0.0038383526,0.0055610016,0.06902761,0.010430806,-0.05536759,0.013634962,0.03299433,0.0755484,-0.029117575,0.028341092,0.0758856,-0.029238148,-0.092586815,0.02691077,0.062026575,0.042675875,0.12697324,0.017455615,-0.09806804,-0.012327208,-0.02765838,0.023800796,-0.040116943,0.04930921,-0.008136335,-0.010055104,-0.052456718,0.0013336802,-0.09326507,-0.108946614,-0.047575004,-0.016318005,0.03907769,-0.029903313,0.0138479555,-0.019329954,-0.06365771,0.05387657,0.014231556,-0.019675773,0.015500338,-1.8101918e-08,0.030939152,-0.061481826,-0.02109062,0.056536704,0.07240407,-0.13870941,-0.0005879909,-0.0483771,-0.07164901,0.015503654,0.034235794,-0.056312658,-0.059520796,0.15349714,0.005698986,0.11021774,-0.020690495,0.013545763,-0.04501755,0.023661612,0.03363807,0.015112647,-0.05909297,-0.01847367,0.015407067,0.012740022,0.025679894,0.058203083,-0.022844078,0.05489379,-0.036308214,0.023233313,-0.0007737099,-0.05726579,-0.09638319,0.02554686,0.0747063,0.0875129,-0.05259831,-0.11556099,0.042595334,0.040163495,0.0038624725,-0.010131123,0.06780419,-0.0748003,0.0068525714,-0.05350748,-0.010454793,-0.049117465,-0.047357284,0.057382617,0.07054621,-0.011092747,0.027308583,0.03530748,0.042423364,0.039638232,-0.03355571,0.09220717,0.07451696,0.055254653,0.07109413,-0.02087168} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.815118+00 2026-01-30 02:01:12.770007+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2287 google ChdDSUhNMG9nS0VJQ0FnSUNNdm9QLThnRRAB 1 t 2290 Go Karts Mar Menor unknown Buena atención del personal y muy buenas instalaciones. buena atención del personal y muy buenas instalaciones. 5 2020-02-01 01:52:39.833374+00 es v5.1 P3.01 {E1.03} V+ I2 CR-N {} {"P3.01": "Buena atención del personal y muy buenas instalaciones."} {-0.009308891,-0.0078028743,0.03451517,-0.0879149,-0.064312674,-0.02296422,0.12186755,0.050121278,0.0018625332,-0.00117772,0.09905813,0.02292055,-0.033865377,1.1583886e-05,0.09616099,-0.00029888522,-0.020872215,-0.014302342,0.038403984,0.0011778236,0.03834774,-0.045520887,-0.07012997,0.059436988,-0.08756052,-0.04874959,-0.042353373,0.017487872,0.017070774,-0.03277367,0.018508783,0.07238323,0.15093781,-0.03446458,-0.0067064213,-0.045530666,0.07213353,0.008154142,-0.032153342,-0.0014766087,-0.13809296,-0.05815503,-0.017851753,-0.0017296323,0.018770032,-0.10466722,0.020167228,0.046807103,0.050347075,-0.012584778,-0.02130273,-0.0033028862,-0.017704181,0.04810725,0.04100868,0.00959718,-0.004982302,-0.026239214,0.047313992,0.049383417,0.021291597,0.05327439,-0.07324459,0.00902684,0.03052377,0.034166984,0.05717419,0.010611458,0.039671022,-0.022494784,0.019897297,-0.12071681,-0.057161503,0.09679329,-0.04409331,-0.014110255,-0.022737902,0.030561604,-0.034803458,0.004236037,-0.08091031,0.036213893,-0.026916444,0.004004847,0.011797646,0.012108106,-0.060980707,-0.023399875,0.014079654,0.03861817,-0.02298827,0.006764239,-0.051387325,-0.03361961,-0.035026517,-0.026455482,0.048673388,-0.08122451,0.0039175535,0.055667862,0.082315706,-0.0243378,0.09596646,0.05174575,-0.04053401,0.05485643,0.0049046883,-0.066082485,0.015014885,0.073292635,-0.07751805,-0.08808876,-0.05972279,-0.014088265,-0.07399537,0.0559249,-0.043076206,0.052916214,0.035799563,-0.064661354,0.02367357,0.08754186,-0.024475321,-0.078097515,-0.031003667,-0.0155614475,0.036619086,1.1837195e-33,-0.05494569,0.018751085,-0.0636654,0.1455088,-0.013174864,-0.018481849,0.008118619,0.022081628,-0.011318269,0.019392949,-0.029538916,0.021414492,-0.06386389,0.055530332,0.11413645,0.07446584,-0.035640456,0.007077289,0.035691205,0.055348005,-0.027360473,-0.030425297,-0.042342346,0.02720399,0.015659375,0.017358948,0.0525424,0.013393503,-0.010747559,0.031400863,0.00084212143,0.024019085,0.06643542,-0.07646555,0.04077934,-0.031271186,0.051376443,-0.0055045714,0.012062393,0.0061037005,0.05993218,0.024919294,-0.007331687,-0.023805944,0.029737804,0.06207943,0.053855356,0.06904696,0.06823145,0.028853096,-0.07795702,-0.06647298,-0.06668857,0.03985233,-0.09527925,0.0190868,-0.0507598,0.00017288528,0.019068144,-0.06007862,-0.006339895,0.0087511,0.050060384,-0.058150984,-0.06886873,-0.054493796,0.053069673,0.03147594,0.08463946,0.053819213,-0.14014523,-0.033368353,-0.01576942,-0.01188043,0.020733122,0.021052493,-0.061573684,0.053685553,-0.009795129,0.03667368,-0.057005435,0.026499523,-0.006265791,0.07866725,0.11230023,0.076289736,0.032631718,0.063360296,-0.067210585,0.09605116,-0.029350253,0.11251438,0.026859526,0.041545752,-0.0010723663,-4.231355e-33,-0.04131994,-0.074894786,0.00086452736,-0.00092819904,0.037986215,0.034515355,0.00538539,0.0053540007,-0.032953527,-0.07940357,-0.11466692,-0.07205281,0.1276477,0.0400964,-0.031235158,0.07352485,-0.01908935,-0.04588304,-0.08503582,-0.011358503,0.01662347,0.04582628,0.087601334,-0.0093252,0.009807381,-0.0797081,-0.026568642,0.040280756,-0.020687327,0.008884571,0.024847506,-0.02901036,-0.11754473,0.004524742,-0.06294277,0.021199211,0.054299753,0.043981552,0.025641885,0.0033002526,0.02922357,0.04383902,-0.055681355,0.0006845879,-0.047635425,0.0643902,0.0016154354,-0.17325981,-0.0107428925,-0.027319757,-5.3354037e-05,-0.01398048,-0.027951427,0.0029406422,-0.025597483,-0.0811774,0.04890295,-0.054140944,-0.06090709,-0.00260413,-0.021369614,0.038786277,0.020028302,-0.051358264,0.044159114,-0.043766607,0.0021174448,0.024356993,-0.051276907,0.01149645,0.07269303,-0.010180025,0.021927947,-0.033341065,-0.05278075,-0.052359235,-0.06251004,-0.041090474,-0.014803682,-0.02492469,0.027131518,-0.019741278,0.00673037,-0.07605684,-0.06596704,-0.06655749,-0.012555742,-0.003130356,-0.035366256,0.031391565,0.010805879,0.05893057,-0.09522211,-0.037301034,-0.054433458,-2.3752904e-08,-0.004543367,-0.050147995,0.027185395,0.014540172,0.012750305,-0.046507604,-0.10329859,0.13103858,0.04152402,-0.0032530965,-0.010654303,-0.00028842184,-0.042045623,0.06990395,-0.047227066,0.0049138293,0.09051219,0.08879764,-0.032262776,-0.067025565,0.030771498,-0.025540752,0.0052740336,0.06353683,0.023014711,0.022042867,-0.005056835,0.0012419445,-0.011154157,0.026451869,0.0005573415,0.01126544,0.035667904,-0.06516715,-0.027520113,-0.03936616,-0.043153174,-0.0073033227,0.06826195,-0.09000623,0.056676522,0.010182171,-0.044436928,0.0039445763,0.02630765,-0.081013255,-0.050811153,0.0014616427,-0.03121058,0.029916076,0.0339296,-0.049936775,0.043564238,0.03089029,0.025990665,-0.045419935,0.03565004,0.04173537,0.009753182,-0.023889186,0.051928177,0.055515423,0.08356977,-0.13727896} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.847731+00 2026-01-30 02:01:12.784676+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2289 google ChdDSUhNMG9nS0VJQ0FnSURROVlxUWpRRRAB 1 t 2292 Go Karts Mar Menor unknown El mejor circuito y karts,mejor servicio y atención del personal el mejor circuito y karts,mejor servicio y atención del personal 5 2017-02-01 01:52:39.833374+00 es v5.1 O1.02 {P3.01} V+ I3 CR-B {} {"O1.02": "El mejor circuito y karts,mejor servicio y atención del personal"} {-0.054990135,0.061697204,0.04303809,-0.034708537,-0.05494497,-0.044067457,0.12200539,0.073151454,0.031988796,0.03476236,0.0685974,-0.009315484,-0.028951827,0.031548183,0.0272338,0.01369122,-0.0010222425,0.014744412,0.023010677,-0.013130746,0.07301937,-0.05481543,-0.10978373,0.050876256,-0.083700456,-0.04481718,0.006485347,-0.010274654,-0.051501412,-0.09343063,-0.054862972,0.022611067,0.07210803,0.021069631,-0.018567726,0.033283368,0.031783063,-0.05052496,-0.026442038,0.020789072,-0.08010223,-0.09032944,0.009047243,-0.043754883,0.03788485,-0.028312892,-0.024851777,-0.008496447,0.0063680983,-0.028657295,-0.074116975,-0.07556973,0.033893358,0.035295665,0.029209191,-0.053379994,-0.025709465,0.060668908,0.105085514,0.07328331,0.03981163,0.019020958,-0.027091868,0.06254988,0.027386922,-0.018705701,0.0023246717,0.023135336,-0.09055716,0.04735069,0.09733312,-0.10518398,-0.009306415,0.058430634,0.026673822,-0.0026549601,-0.061742373,-0.032448154,-0.0348609,-0.03830374,-0.02881504,-0.013351652,-0.035512146,-0.023671001,-0.057811182,0.00584343,0.0054041445,-0.03296411,0.034988284,0.00057643774,-0.03712853,-0.032020044,-0.07980639,-0.072023734,-0.011756995,-0.05445335,0.00786694,-0.0015432839,-0.0033912896,0.041998517,0.10318408,0.030953571,0.06564379,0.045665517,-0.049047533,0.10576059,-0.022814438,-0.013597997,0.02507211,0.03799797,-0.106962435,0.029905278,-0.12525643,-0.028413804,-0.029415913,0.0335258,-0.020120008,0.06271318,0.03021788,-0.012621096,0.0400876,0.013962701,-0.052074894,-0.038328543,-0.030845417,-0.04533921,0.1031432,4.5483322e-33,-0.1123176,-0.022132708,-0.018213095,0.076586425,0.058793284,-0.049750566,-0.05925238,-0.015631692,-0.020272313,-0.007831858,0.0025635185,0.10674281,0.004652475,0.0048613534,0.08154274,-0.0016848505,-0.020896954,-0.075043894,0.07722598,0.017562514,0.015543678,-0.039859515,-0.021846808,0.03898382,-0.03589547,0.0142224375,0.025504773,-0.059453934,-0.09155315,0.05304538,0.018984675,0.07933918,0.04578197,0.0074528796,-0.040154424,-0.012115038,0.03489108,-0.02600841,-0.020988159,-0.0963458,-0.032266915,0.00054204545,-0.0008230891,-0.008983602,-0.04219619,0.007354113,0.05918782,0.026394397,0.07818055,0.061927516,-0.06815774,-0.05210974,-0.01504731,-0.07241242,-0.0037762912,0.0421343,-0.015330547,0.05229604,0.019210415,-0.030468125,0.012281935,0.011805829,0.013217131,-0.005825977,-0.036200695,-0.036738187,0.059892938,-0.057293132,0.11435404,-0.0036216981,-0.09733549,0.027376259,0.011058863,0.006861308,-0.0009911258,0.02414294,-0.047854554,0.05912145,-0.062458817,-0.0047611366,-0.036001563,0.011511227,-0.008657116,0.058113243,0.11542284,0.08006105,0.06383716,0.02356523,0.01465551,0.18673635,-0.048308823,0.0697362,0.045673672,0.07128203,0.005413554,-6.597731e-33,-0.052583747,-0.01053982,0.046782438,0.062479146,0.0488881,0.0022988126,0.040970486,0.0013818943,-0.026263334,0.024946222,-0.07049865,-0.09560154,0.066426225,-0.0081846705,-0.02874388,0.043777224,-0.017294591,-0.038497586,-0.10176239,-0.029476691,-0.027513573,0.13564086,0.014118714,-0.0033018962,-0.039501455,-0.0067177056,-0.04692772,0.05524711,-0.07907328,-0.037104,0.026492218,-0.063503414,-0.044657152,0.0027090637,-0.062155295,-0.016871614,0.01610537,0.078318425,0.014740498,0.02293364,0.037128657,0.06507397,-0.07158076,-0.012677847,-0.085086934,-0.017248087,0.0069797104,-0.12694731,0.009266121,-0.0395228,0.0034195923,0.008222123,-0.024552753,-0.07560357,-0.008762127,-0.016516851,0.025950912,-0.10308693,-0.07766847,0.010264739,0.04606387,0.003971484,0.00073888456,0.060579944,0.09477478,-0.014666234,0.04031724,0.018217474,0.031435635,0.029239528,0.06604858,0.002567658,-0.010967799,-0.0036312223,0.00537008,-0.10468026,-0.0809477,-0.02013981,-0.019217234,-0.030996796,0.024487851,-0.044910226,-0.012925592,-0.041602254,-0.014437696,-0.045268178,0.004826222,0.058543347,0.049975164,0.005386156,0.028394606,0.0800275,-0.10713104,-0.016714303,-0.060941085,-2.8093837e-08,0.014542716,-0.006005686,0.007951817,0.050523818,0.051749196,-0.11324091,-0.019284746,0.030814985,-0.0040567107,0.11184513,-0.02585116,-0.0041440106,0.0046738186,0.030198194,0.0140354335,0.02036303,0.070657246,0.093884215,-0.004872585,-0.011455587,0.059017293,-0.035105772,-0.010603588,0.012369698,0.011536211,0.047947977,-0.014060507,0.056446068,0.000493747,0.029200958,-0.041337177,0.043375492,-0.061289653,-0.07265779,-0.082661256,-0.014670071,-0.065120086,0.0074418033,-0.005764164,-0.04558298,0.03966466,0.019063067,-0.038226597,0.07820205,-0.026831692,0.023608657,-0.084578484,0.0032451374,-0.03087886,0.046517186,-0.067635134,-0.11237588,0.08415422,0.048796404,0.051010706,-0.038765877,0.087238826,0.024154993,-0.033790413,-0.037906002,0.020659467,0.03994864,-0.012290219,-0.13060814} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.872532+00 2026-01-30 02:01:12.79078+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2292 google ChZDSUhNMG9nS0VJQ0FnSUR1NE95WkdBEAE 1 t 2295 Go Karts Mar Menor unknown Simplemente los mejores es lo que puedo decir después de tantos años simplemente los mejores es lo que puedo decir después de tantos años 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {R3.01} V+ I3 CR-B {} {"V4.03": "Simplemente los mejores es lo que puedo decir después de tantos años"} {-0.008669096,0.059308138,0.046766803,-0.02432864,0.017025163,-0.009418785,0.09662915,0.008548265,0.06882216,0.09304502,0.09372221,-0.019495733,-0.03490947,0.007817189,0.03437213,-0.03123093,0.0079755755,0.034675896,-0.00863885,-0.036411736,0.07942052,-0.018765787,-0.14408995,0.0883007,-0.11042002,0.009341716,0.008977537,-0.024906961,-0.0052892063,-0.092596695,-0.03573744,0.01024768,0.06931977,0.020028917,-0.030897358,0.038500134,0.12490146,-0.095569655,-0.055041414,0.035193007,-0.1405061,-0.02736527,-0.007929183,-0.02708957,-0.013040603,-0.07519543,-0.012250395,0.03675186,0.046725497,-0.0394446,-0.034606267,0.029809672,-0.033682957,-0.020007737,-0.02222734,0.002281977,-0.07783503,0.027106106,0.031831168,0.048431445,0.0107953185,-0.018678267,-0.062423144,0.0072617577,0.016721232,-0.017491587,0.05851601,-0.012738987,-0.08724813,0.08390522,0.057341814,-0.04999831,-0.029995056,0.05790022,-0.05355573,0.06555854,-0.038506642,0.0026753575,-0.12934281,-0.02084718,-0.02460112,0.013450143,-0.0162762,-0.023340868,-0.016163941,0.031982716,-0.0013259526,0.058581885,0.11828948,0.0007054709,-0.04742387,0.045698706,-0.04290818,0.0047701155,0.017723266,-0.015904589,0.096980855,0.018567296,-0.0025149025,0.009640686,0.0869973,0.09208219,0.05632162,0.021736322,-0.043495547,0.037055645,-0.037430502,-0.08381967,0.05355607,0.008339245,-0.06801127,0.0031133047,-0.01498089,0.043109737,-0.028534524,-0.04473635,0.016107816,-0.049067784,-0.029048113,-0.03657806,0.09757805,0.007880647,-0.051112033,-0.002791079,-0.00944008,-0.03159228,0.031706396,4.2659245e-33,-0.00905235,0.034540635,0.0007521904,0.08334046,-0.026547927,0.019025989,-0.05314308,0.028946457,-0.044494703,0.02288769,-0.066236176,0.04299492,0.009720867,0.003085689,0.0258496,0.009549931,0.025637457,0.047034502,0.042412803,0.0028164464,-0.11387455,0.0684919,-0.022076122,-0.051714882,-0.024269568,0.09429864,0.014086416,-0.040965058,-0.107322924,0.052383855,0.014892115,0.0304956,0.02192713,0.034785815,0.030640576,0.008006845,0.054368485,0.034860026,0.052255265,-0.054333474,0.0018051394,0.035393286,-0.06445884,-0.00047190383,-0.011372724,0.0077796592,0.046868194,-0.032989684,0.056684196,0.007920815,-0.046696324,0.025034513,-0.028437404,-0.088616066,0.0117581375,0.0041097105,-0.06910041,0.011869779,-0.053021695,0.004218661,-0.00715296,0.010247932,-0.07643725,-0.019762456,-0.074861966,-0.049051058,0.016222158,0.0536494,0.16722849,0.08864741,-0.06457873,0.0072396994,0.009996687,-0.0070270994,0.02686564,-0.0050445916,0.034617435,0.014429501,-0.022095518,0.04401936,-0.019570796,0.014904611,0.02966977,-0.010721312,0.056759372,0.12705937,0.06991712,0.043922853,-0.046887483,0.08849062,-0.022851916,0.07268656,0.04229509,-0.049204737,0.04176127,-6.487377e-33,-0.054804564,-0.027221937,-0.083194606,0.0022882023,-0.037701797,0.048942618,0.028376821,0.022719806,-0.04371582,-0.11356066,-0.06764169,-0.12822229,0.0069699064,-0.007711537,-0.06586607,0.10298092,0.025653798,-0.06896374,-0.10757076,-0.03225155,-0.035359684,0.031059442,0.032897264,-0.013639832,0.025086448,-0.051316872,-0.035458826,0.0034175124,-0.056758463,-0.003191712,0.11026946,-0.0386297,-0.017783558,-0.0147710135,-0.04984584,0.0018256719,-0.021635335,0.047579754,0.020971285,0.021584908,0.0026867527,0.032320995,-0.03510243,-0.041634664,-0.03380644,0.020392787,-0.008880568,-0.12973225,-0.09212782,-0.03335149,0.04330685,-0.08709137,-0.029214138,-0.042706974,0.08977265,-0.04638074,-0.0019771664,-0.06523858,-0.03795628,0.042925477,0.020335343,-0.0015586183,-0.029013494,-0.025684975,0.048659816,-0.03397227,0.022496436,0.009890859,-0.016956752,0.07319449,0.1442957,-0.015845891,-0.06421851,-0.015629362,-0.036911894,-0.10328361,-0.11721965,0.0099022975,-0.01941352,-0.0050867163,-0.009062537,0.012101644,-0.00084512046,-0.03284167,-0.0222618,-0.014058255,0.014542026,0.046646968,-0.028350772,0.07150621,-0.012154766,0.025922988,-0.04042797,-0.021937855,-0.01517321,-2.491846e-08,0.02475603,-0.1161256,-0.09690033,0.013545329,0.012030804,0.03489257,-0.013147618,0.08073589,0.009140351,0.08358449,0.035622343,-0.052673556,-0.021358617,0.07398538,-0.00598954,0.10726446,0.062628135,0.015208959,0.02139274,-0.019421585,0.0704474,0.0014318582,-0.038806655,-0.03518835,0.012259599,0.033055246,-0.026414456,0.058974687,0.008470958,0.032512773,-0.0612095,-0.049033206,-0.04571848,-0.052212246,0.01289691,-0.02281843,-0.012023266,0.019480577,0.016149724,-0.03108915,0.045817897,0.054184772,-0.045955043,0.080248475,-0.0598132,-0.074399605,-0.010091319,0.0067797243,-0.073194824,0.006082916,-0.0039689164,-0.02239869,0.047760233,0.035439324,0.013021305,-0.07261984,0.06283166,0.013694796,-0.07526489,0.0065448824,0.09536114,0.12740488,0.031621706,-0.043908585} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.912391+00 2026-01-30 02:01:12.805969+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2300 google ChZDSUhNMG9nS0VJQ0FnSUNJaDlpcWVREAE 1 t 2303 Go Karts Mar Menor unknown Está muy bien! está muy bien! 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Está muy bien!"} {-0.031403992,-0.017603014,0.03220371,-0.05166986,-0.025114674,-0.009591212,0.07309113,-0.005490411,0.022052875,0.014273915,0.06888562,-0.009040634,0.015803974,-0.030863713,0.0059014587,0.03635829,0.04337169,0.015071104,-0.008240147,0.0030172905,0.03675615,0.0132992165,-0.06340215,0.10329853,-0.116391115,-0.018004652,0.004695759,0.011822188,0.004092879,-0.09377459,0.04010172,0.09655964,-0.021787068,-0.0031408817,0.033817135,-0.040854882,0.08804799,-0.17906894,0.047975797,0.051905654,-0.112111315,-0.014861148,-0.07489188,-0.04140708,0.016796893,-0.031956986,0.032861907,0.06390003,0.07490325,0.017269952,0.0067924145,0.0335784,-0.0008289454,-0.025603622,0.025295442,0.05838608,-0.007069059,-0.067744024,0.02524234,0.07447349,-0.0054623927,0.08205134,-0.0028456529,0.0027024406,0.03378679,-0.08143285,0.09268726,-0.009207932,-0.06965509,-0.0011821564,0.06430565,-0.04500836,-0.005251279,0.014267459,-0.018406564,-0.025048677,0.013102842,0.01116071,-0.021605127,-0.002665832,-0.042692047,-0.028274877,-0.02835888,-0.01506098,0.07233064,-0.006874052,-0.068232514,0.02493355,0.117233545,-0.020471483,-0.06340636,0.052890576,-0.004422488,0.04619783,0.057901923,0.012454872,0.03495031,-0.09180828,-0.05662335,0.118821,0.0067967605,0.069642544,0.020253796,0.0027610313,0.018708203,0.024830997,0.058449373,0.041809607,-0.017391972,-0.009966925,-0.011395244,-0.002645711,0.015423396,-0.002533036,-0.0031311975,-0.023344515,0.013556717,-0.024467768,-0.012556332,-0.12691605,0.046906922,0.023637969,-0.076530136,-0.020473424,0.009286254,-0.048164383,0.028676093,-1.9800111e-33,0.017141927,0.0090689,0.032362644,0.053289227,-0.04960965,0.026745226,-0.02095349,0.017518178,-0.08043024,-0.036499947,-0.034343682,-0.020438155,-0.010976759,0.024509594,0.013329712,0.049012925,0.052115444,-0.07209339,0.09662815,0.03539374,-0.053229593,-0.10996414,0.05571459,0.04846945,0.013531909,0.033812165,0.0034782912,-0.03388431,-0.05569814,0.041933782,-0.08810469,0.013019611,-0.009063351,-0.020172395,-0.024246281,-0.09762811,-0.007685631,0.04807484,-0.0046574683,0.085853234,0.050901096,0.056362506,0.0034461266,-0.07448917,0.013662068,0.053811226,0.0024797241,0.048477203,0.1040726,-0.06288583,-0.06722307,-0.04203857,-0.122521535,-0.014776247,0.005432562,-0.01642384,-0.02617182,0.005031764,-0.04612765,-0.07555818,0.056525875,-0.03180092,0.011397834,-0.06353298,-0.07877408,-0.056317773,-0.026020147,0.08487161,0.06447362,0.031343672,-0.01517203,-0.018952245,0.011482013,0.017525755,0.010589916,0.022205515,0.014169013,0.03019697,0.106162004,0.040468488,0.0037898927,0.025671007,0.049612734,0.020222975,0.055732112,0.116002314,0.052432418,-0.0014216274,-0.001853455,0.035797644,-0.040854055,0.031820927,0.110365145,-0.06668585,-0.013681833,8.8103155e-34,0.053437274,-0.0062613073,-0.0053226952,0.038513243,0.037692837,-0.022483185,0.016980363,0.06508864,-0.037007052,-0.0012419155,-0.046008643,-0.120941415,0.068528056,-0.026120361,0.024198461,0.12985343,0.042655427,-0.047675505,-0.058078524,-0.0038623456,-0.015620027,-0.0007303131,0.07177661,-0.01713378,-0.026104545,-0.062017918,-0.05688936,0.048151113,-0.06433972,-0.0043887654,-0.040674496,-0.038326696,-0.036177136,0.03618798,0.0076094167,0.026429748,0.011977174,0.049005352,0.01924555,0.04672652,-0.023875507,0.09772686,0.015296253,0.09378948,-0.02799525,0.05954636,-0.0061220583,-0.14401539,-0.10570118,-0.0030226705,0.016612155,-0.052951597,-0.023531107,-0.01916504,-0.009706437,-0.0459316,-0.018993953,-0.055450633,-0.048473746,-0.041356858,0.013062181,0.05235446,-0.06254407,-0.008883359,0.089810126,-0.036307916,-0.029373765,-0.03282564,0.021871464,0.046811245,0.11771378,-0.015305525,-0.11789955,-0.0028065701,-0.059431497,-0.066867396,-0.07137871,0.004669656,0.02528305,0.08446369,-0.05954049,-0.0017589428,-0.0599688,-0.028547952,0.0063345106,0.058529,-0.018119,-0.012166032,0.03524335,0.044212207,0.0011970772,0.012949049,-0.04014261,-0.03914422,0.041850626,-1.5307597e-08,-0.009603326,-0.041987844,-0.06818167,-0.015381837,-0.0034849835,-0.10316054,-0.07601966,0.06019105,0.07596394,0.009479464,-0.054536514,0.007851325,-0.04544133,0.029666446,-0.015529484,0.13136022,0.04400226,0.12663393,0.0052332934,-0.05574721,0.0870726,0.012745196,0.025824342,0.018940201,-0.040412858,0.0044441186,-0.08039974,0.016456457,-0.03585619,-0.018070333,0.020388551,0.034106288,-0.06962133,-0.098401986,-0.055540208,-0.049571328,-0.021554306,-0.0043426435,-0.0033548265,-0.0029421921,0.05708323,-0.0012033667,-0.07367034,-0.037390567,0.06014512,-0.10165716,0.025589969,0.0012413546,0.012073847,0.0028907154,0.01092924,-0.022712989,0.090222985,0.07756209,0.015442372,0.02463824,0.06855205,-0.006493034,-0.008417835,0.0018715274,0.08583858,0.08070502,0.037153162,-0.09589286} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:12.007302+00 2026-01-30 02:01:12.838945+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2306 google ChdDSUhNMG9nS0VJQ0FnSUNBcHVLcGxRRRAB 1 t 2309 Go Karts Mar Menor unknown Unas carreras 🏁, unos bocatas, unos refrescos. Chulo, chulo 😎. unas carreras 🏁, unos bocatas, unos refrescos. chulo, chulo 😎. 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Unas carreras 🏁, unos bocatas, unos refrescos. Chulo, chulo 😎."} {-0.0771948,-0.04885964,-0.047586113,-0.011822533,-0.050668478,-0.012928106,0.09068448,-0.011406408,0.0740716,-0.007080489,0.08237783,-0.04653524,-0.003621795,0.01348669,-0.03805227,-0.015845008,-0.024665061,0.023765864,0.02462638,-0.010043578,0.05878984,-0.07438092,-0.077472016,0.10219276,-0.050930325,-0.056796163,-0.009437443,0.01933655,-0.039113007,-0.053764913,-0.068392366,0.07662706,0.083254054,-0.006571006,0.07422702,-0.018132167,0.07741224,-0.031912126,0.035737846,0.08906253,-0.077193074,0.014076624,0.05523525,0.05396337,0.050731875,-0.08243239,0.00013355917,0.037337363,-0.019156756,0.051861744,-0.028440982,0.034601808,-0.032069586,0.056441516,0.03308309,0.030544313,-0.023681901,-0.05620735,0.02375949,-0.0021351445,0.021912955,0.017540753,-0.015862979,0.047915354,-0.1008582,-0.018424511,0.005408512,0.0046750703,-0.068747826,0.09834443,0.056021564,-0.04678289,0.02315692,0.033503402,0.007544451,0.0003344872,0.031691942,0.0020320327,-0.008849369,-0.043045517,-0.029239057,-0.033666812,-0.0450831,-0.05552817,-0.016431872,0.046430755,-0.08071105,0.034880653,-0.005904685,-0.036293805,-0.07559486,0.029069943,0.024695264,0.018875156,-0.050073948,0.02488009,0.035367813,-0.056564447,-0.05634045,0.03171707,0.1030734,0.082046404,0.094043605,-0.06880011,-0.07291662,0.05047038,-0.0004206447,-0.0059034657,0.035351783,0.07342776,-0.048054624,0.013652436,-0.06866902,0.003323547,-0.08856718,0.0071259243,-0.015166285,-0.09984188,-0.05572207,-0.025942396,0.02564324,0.03167933,-0.058078256,0.011118113,0.0003780048,-0.052547917,0.031793866,3.1819401e-34,-0.03396545,0.032753553,0.0026917637,0.036570136,-0.004773044,0.008817072,-0.042648684,-0.052343905,-0.10739197,0.047408856,-0.053507645,0.03538623,-0.059941046,0.03292341,0.012987023,0.10935451,-0.03862692,-0.07075565,0.062932156,-0.055926807,-0.08860592,0.046638023,-0.038739067,0.007998174,0.011897232,-0.042655837,-0.06196384,-0.07797562,-0.011597585,0.04711748,0.0066065504,0.09523699,0.02706382,-0.015650533,-0.04349649,-0.035298843,0.048849206,0.03790517,-0.044722367,0.03734322,0.057234358,0.004392264,-0.0471516,0.008499408,0.04668055,-0.056446314,-0.029887384,0.02202792,0.078517616,0.026579823,-0.05173626,-0.085644126,-0.005327815,0.010508992,0.028996654,-0.024822405,-0.100143805,0.02229827,-0.012089345,-0.071329944,0.09664816,-0.046459936,-0.014430129,0.013528673,-0.099129565,0.01836747,0.013351051,0.00047413318,0.12484614,0.000722167,-0.077264376,-0.025397403,-0.042475127,0.05398265,-0.0455995,-0.028775696,-0.0045035374,0.019042993,0.0039481516,0.06949195,0.0045520314,0.03966351,0.071907766,0.056829993,0.037288494,0.1328144,0.03230242,-0.011488164,-0.011694259,0.072370164,-0.04570954,0.08769426,0.084383614,-0.05186955,0.04600779,-1.5334203e-33,-0.027007125,-0.0719491,0.006902038,-0.010247039,-0.054979037,-0.05188127,0.026423223,-0.02444979,-0.0067290086,-0.089564435,-0.06986515,-0.060412016,0.015340082,-0.0966233,0.033137422,0.06927993,0.039622135,-0.027826691,0.0019188374,0.048515446,0.01650024,-0.06336997,0.030406907,0.04997285,-0.09407965,-0.0052889897,0.0198823,0.028001182,-0.011432084,0.0056305625,0.025640119,-0.042584844,-0.027219001,-0.0044067986,-0.04745631,-0.03045323,-0.04684236,0.0074363607,-0.051214427,0.037543155,-0.034324586,0.031550474,-0.023375656,0.0073765726,0.018781973,0.0027551572,-0.007652713,-0.14847337,-0.09055089,-0.08640873,0.012994821,-0.044832263,-0.04550482,0.02455137,0.094413586,0.028408183,-0.026390733,-0.016538449,0.022834027,-0.019098822,0.024732307,0.04451155,-0.12856211,0.0464682,0.10783862,0.038570657,-0.04193914,0.04991283,-0.023045437,0.039903656,0.07320814,0.008154737,-0.13610145,-0.016209155,-0.05783167,-0.017137507,-0.13295026,0.033306167,0.005200369,0.052961145,-0.09959417,0.009404741,-0.02544792,0.07702507,-0.028263291,-0.0036481826,0.017788038,0.059538975,0.061830025,0.031175723,0.058980368,0.010808143,0.08044323,-0.08140418,-0.018718617,-2.1903706e-08,-0.016539235,0.011783061,-0.041112274,0.028090768,-0.041911792,-0.047051743,-0.06638275,0.0326523,0.093040355,-0.023389589,0.012372371,-0.0019422049,0.053158958,0.062854476,0.025563158,0.09290047,0.032871507,0.11791335,0.053959943,-0.0058139446,0.026686713,0.068031855,-0.016940191,-0.00042111953,-0.010574914,0.04809649,-0.08226529,-0.0056987917,0.0123899095,-0.013682279,-0.04260458,-0.033238273,-0.019202089,-0.09122377,-0.030177938,0.027367456,0.031687967,-0.06377045,-0.01595516,-0.08081194,0.10808204,0.016510665,-0.03703274,-0.024694713,0.038928345,-0.08640008,0.041149855,0.0023104998,0.013853599,0.018236663,-0.036222484,0.0145035945,0.04292579,-0.002094881,0.099457525,-0.0492321,0.05332754,0.013265948,0.05000885,0.03191345,0.056395594,0.059843842,-0.028505726,-0.004757349} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.202943+00 2026-01-30 02:01:12.869294+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2308 google ChdDSUhNMG9nS0VJQ0FnSURVLXYtb3d3RRAB 1 t 2311 Go Karts Mar Menor unknown El personal es muy diligente y educadisimo el personal es muy diligente y educadisimo 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.02 {P3.05} V+ I3 CR-N {} {"P1.02": "El personal es muy diligente y educadisimo"} {0.0063877045,0.070277594,0.04216209,-0.026097441,-0.008563595,-0.06226941,0.08399781,0.044923007,0.059144896,0.07162402,0.12701198,0.009681828,-0.051799297,-0.0051416797,0.04438981,0.009430367,-0.027818799,0.0008407692,-0.09665376,0.022113537,0.07537193,0.013407996,-0.014074901,0.07171744,-0.08310761,-0.021081146,0.041663032,-0.053775433,-0.0047652507,-0.07263596,0.038012076,0.046586268,0.09015529,0.003716556,0.0017823521,0.012257439,0.06591915,0.017413583,0.009039902,-0.0019220563,-0.11657124,-0.008970151,0.0006725974,0.009793243,0.021402327,-0.12103975,0.0448256,0.0037126336,-0.0045850724,-0.010516644,-0.09277192,-0.049356513,0.00710098,-0.022313204,0.040152635,0.01142194,-0.046039898,0.012875084,0.03862681,0.054812543,0.006789037,-0.0076065767,-0.021500416,0.07179263,0.0033737272,-0.0063039972,0.046179824,-0.0034991235,-0.06872056,0.06785876,0.08276227,-0.029806394,-0.004748668,0.047106963,0.008744147,-0.0011685918,-0.0064087007,-0.030653412,-0.026239742,0.03320258,-0.0173092,-0.01045235,-0.021857223,-0.010080565,-0.017464425,-0.022947367,0.005699455,0.016020343,0.018427536,-0.045251653,-0.02069948,0.03246845,-0.020275503,-0.0035786002,0.04629792,0.023953704,-0.024002817,-0.06710166,-0.025427606,0.0917782,0.026834223,0.06501211,0.00420197,0.09814015,-0.03537455,0.053770978,0.0068103718,-0.011590535,-0.010660815,0.0091027925,-0.03801693,-0.03113448,-0.08435496,0.060095616,0.03198374,-0.045455974,0.023160972,0.028646091,0.018660903,-0.049856808,0.0067184395,0.0444134,-0.0661247,-0.021655703,-0.0633086,-0.10501843,0.019713234,4.1618275e-33,0.0140939765,-0.07430001,-0.06254308,0.05272145,-0.06150035,-0.023643963,-0.012564703,0.016040955,-0.04179787,-0.011879097,0.058316648,0.062881835,0.023862528,0.13472316,0.018506503,0.037286688,-0.056223694,-0.01572,0.06935012,0.08727707,0.008847804,-0.07067498,-0.04330054,-0.06691755,-0.051590692,-0.044639368,0.016918765,0.028215947,-0.028886925,0.039989986,-0.0486344,-0.0072619924,-0.0034206707,-0.04271205,0.050131064,0.011005901,0.11303278,0.03294568,0.05103285,-0.03857847,0.039747708,0.009426966,-0.0041564177,0.0024039613,0.0035675634,0.060027573,0.073023595,0.040747423,-0.03998726,0.015890907,-0.07890884,-0.06933739,-0.032616783,-0.07445864,-0.009926006,0.012960994,-0.011475369,0.081116,-0.015233872,-0.10531229,-0.0066071465,0.0121718235,-0.02922768,-0.02346817,-0.02138722,-0.009717282,0.008544969,-0.014977687,0.112410724,-0.012784226,-0.09653715,-0.05717009,-0.061320532,0.02155986,0.030375255,-0.04477603,-0.028794479,-0.018038658,0.06613664,0.0426299,0.015111873,0.019946966,0.0068794517,-0.06228366,0.07420003,0.05681225,0.046523456,0.048919175,0.043462846,0.0739058,-0.0012209474,-0.004877724,-0.008567477,-0.013502829,-0.013521741,-5.196581e-33,-0.038940985,0.03856431,-0.0013952131,0.09201247,0.046448696,0.037763167,0.034560602,0.018927906,-0.01593009,-0.072840765,-0.07087707,-0.10249631,0.09721233,0.040238068,-0.015125842,0.090545654,0.033950068,-0.061567407,-0.09811934,-0.04754239,0.008658746,0.046434745,0.009452628,-0.004129016,0.0245128,-0.07710219,-0.048653428,0.06393536,-0.04336718,-0.02388308,0.034254473,-0.022795895,-0.10454025,-0.005649451,-0.02515929,0.022108437,-0.0063805287,0.048528075,-0.0042850845,0.028011955,-0.026217708,0.03516226,-0.094924375,-0.018574,-0.033437148,0.053877715,0.03642591,-0.10535976,-0.005327224,-0.006977289,-0.052832346,-0.0044058254,0.03176342,-0.018920649,0.09047498,-0.074614495,0.11608732,-0.048541438,-0.04742266,0.024450159,0.06590433,0.0045236656,-0.027746664,-0.017442157,0.055749867,0.030968048,-0.02352645,0.0525243,-0.08005405,0.07843188,0.11664341,-0.02211978,-0.07719551,-0.102293,-0.055723343,-0.028327152,-0.08676455,-0.023277318,0.009353872,0.050977167,0.07137894,-0.059441246,0.002934343,-0.052242756,-0.04228933,-0.06655308,-0.046382327,0.021274906,0.010821762,0.01441326,0.059141405,-0.027505351,-0.13326167,-0.088210694,-0.0031198666,-2.385388e-08,0.004776234,-0.050261367,0.028650787,0.0015838994,0.057172365,0.020911703,0.0056083687,0.019258196,0.021228554,0.06812417,-0.050134275,-0.021616263,0.017886741,0.012119914,0.042408623,0.044403702,0.10966722,0.036113404,0.01750737,0.002113659,0.14026187,-0.029042315,-0.019758815,-0.0331804,-0.05592494,0.081549615,-0.0124396905,-0.015641065,-0.04327979,0.036139652,-0.07645971,0.03456766,-0.0726325,-0.1537589,-0.043666393,-0.05253042,0.008757816,0.014150012,0.025243465,0.027436113,0.015802063,-0.053823337,0.017026324,0.032040592,0.02002115,-0.008050096,-0.022287011,0.04782975,-0.07567358,0.026951207,-0.0010679214,-0.06969875,0.03525935,0.013526857,-0.015602804,-0.04310443,0.0042182454,0.022966526,-0.12324144,-0.01572051,0.108865306,0.14186691,-0.03397167,-0.16069327} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.22875+00 2026-01-30 02:01:12.874665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2315 google ChdDSUhNMG9nS0VJQ0FnSUNzOUlyU3BRRRAB 1 t 2318 Go Karts Mar Menor unknown Muy chulo muy chulo 4 2020-02-01 01:52:39.833374+00 vi v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy chulo"} {-0.09283803,-0.03034011,0.023868969,0.020784814,-0.042456396,-0.05198986,0.17269173,-0.03876453,0.037802104,-0.025768593,0.026576884,-0.07391395,0.06512643,-0.015571491,-0.015409306,0.08750757,0.0028890497,0.05164789,-0.04980452,-0.07871115,-0.0122719165,-0.0126744425,-0.051864646,0.066284284,-0.028545726,-0.04821695,0.010269606,0.049903788,-0.06435846,-0.025672635,-0.0011373103,0.13269134,0.097864285,0.017299414,0.029735934,-0.0059206886,0.0054990137,0.0032008372,0.030175498,0.03640279,0.020140864,-0.027847843,0.03670875,-0.0046684146,-0.014015069,-0.05389672,0.030012716,-0.04579358,0.0005259139,0.025598813,-0.09107428,0.023798442,-0.028351864,0.026013166,0.04168354,-0.0020142868,-0.04016203,0.0125504015,0.03484804,-0.06441563,-0.05865558,0.009638624,-0.02244578,0.0314092,-0.0049020355,-0.056240026,0.02422032,0.025664127,-0.024706045,0.05390056,0.06541859,-0.059932563,-0.06390352,0.009057728,-0.05388791,-0.021471906,0.102621056,0.0030550363,0.027569678,0.0059339823,-0.027055696,-0.014752266,0.014263895,-0.05156273,-0.013127172,0.025485653,-0.050219163,0.011215864,-0.11969605,-0.09868394,-0.017158175,-0.025440866,0.031844202,0.011202001,-0.024845256,0.05373033,0.0055739805,-0.07564154,-0.096621215,0.14891943,0.008424749,0.026932247,0.10418775,-0.069204904,0.014911574,-0.02407742,0.025402311,-0.055631086,0.0004989006,0.03463791,0.00081314344,0.00854497,-0.031500734,0.08234706,0.097735904,-0.0065880404,0.018897686,0.06463003,-0.07680886,-0.01975116,-0.021386398,0.038833942,-0.0514313,-0.013874117,-0.08996708,-0.05181486,-0.0038349032,1.5039854e-33,-0.023140388,-0.10943298,0.04041469,0.020505542,0.032441124,-0.01756615,0.010696831,-0.016127793,-0.094107985,0.014905036,-0.016024468,-0.04787382,-0.011319531,0.056717414,0.0027287672,0.002949659,-0.03936694,-0.07157927,0.03449802,-0.017129792,-0.036385555,-0.0030971903,-0.017261215,0.049333427,0.019582486,-0.037659757,0.028961962,-0.09156403,0.00855133,0.041804016,-0.012888797,0.053534757,0.06394333,-0.052925915,-0.123958535,-0.13580693,-0.049567416,0.022828367,-0.03292977,0.012624938,-0.015766725,-0.025587145,-0.06994691,-0.008279328,-0.011335206,0.041070238,0.026437836,0.049536113,0.05376187,0.07743531,-0.07448818,-0.05454632,-0.037473775,0.05401929,0.044514004,-0.017884787,0.03469767,-0.032410458,-0.00011632149,-0.033657238,0.016068261,-0.011096548,-0.011612235,-0.02733102,-0.04999837,-0.044565544,-0.025944602,-0.013500669,0.05608143,0.025270792,-0.02574904,0.0027893013,-0.12057256,-0.017335188,-0.04254528,-0.10254798,0.036435056,0.01842045,0.040451676,0.051766742,0.07765323,0.046497717,0.10066995,0.053102862,-0.025680838,0.023426991,0.0071095806,0.044582803,-0.016136589,0.042808857,-0.124877475,0.035844024,0.06382299,-0.037143726,-0.013659524,5.5276015e-34,0.037624817,-0.036590613,0.025615811,0.096864834,-0.0013459855,-0.0084630335,0.08791148,0.0034173322,0.003628441,-0.008598573,-0.039813984,-0.04784301,0.046687815,-0.015104901,0.13136926,0.12719811,0.027644224,0.06556386,-0.051639773,0.004864862,-0.04049226,-0.025275089,-0.013936003,-0.022002852,-0.09595596,0.03050407,-0.017246788,0.02945629,-0.0070533915,0.048614565,-0.053007957,-0.042562723,-0.07612667,0.01562718,-0.028179523,-0.05387925,0.0073666414,0.10394212,-0.0027436274,0.0028046828,-0.036855415,0.089156784,0.013535699,0.12315451,0.020897001,0.029138265,0.03711835,-0.004402648,-0.02966745,-0.05075714,-0.065338634,-0.038310803,0.00485477,0.019376403,-0.008154473,0.014477137,-0.034105685,-0.029276172,-0.11035493,-0.040682647,-0.028665254,0.006539738,-0.06725503,-0.008187646,0.048785936,0.11206887,-0.034348544,-0.0056848084,-0.077835016,-0.0112759285,0.049587823,-0.026105372,-0.07818475,-0.05057993,-0.008760124,0.023310728,-0.14483291,0.09159158,0.013226162,0.062096402,0.0013206745,0.022953551,-0.096471556,0.076490365,-0.0077336286,0.03698949,-0.012246795,-0.0017779471,0.10723192,-0.018963458,0.0037677246,0.028258663,0.036788233,-0.02890081,0.018993055,-1.5785234e-08,-0.026459346,-0.036169402,-0.05331689,0.00021009479,0.013299166,0.059914596,-0.0110031525,0.036863882,0.05462125,0.053498406,0.007514585,-0.008470172,0.033685055,0.1356821,0.036718197,0.092701994,0.046209004,0.00020884961,0.053823553,0.01186621,0.065552026,0.01359807,0.044080094,0.1357747,-0.010472496,0.08258971,-0.07248493,0.0587507,-0.006026467,0.06061115,-0.019898994,0.059673358,-0.06218785,-0.033002254,6.573539e-05,-0.02663203,0.020360475,-0.012364045,-0.017495666,0.03739647,0.025674779,0.0011737869,0.073572755,-0.023177968,0.010168508,-0.027158067,0.018034898,-0.08765573,0.04610154,-0.023913346,-0.05226284,0.019425675,0.032938182,0.12448768,0.058166046,0.0020720356,0.047251113,-0.035466306,0.025299408,0.041592278,0.026176903,0.02684748,-0.022451386,-0.060773466} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.31559+00 2026-01-30 02:01:12.915054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2327 google ChdDSUhNMG9nS0VJQ0FnSURndXJ5RDNRRRAB 1 t 2330 Go Karts Mar Menor unknown Gran sitio de entretenimiento para la familia gran sitio de entretenimiento para la familia 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.01 {A3.01} V+ I3 CR-N {} {"O1.01": "Gran sitio de entretenimiento para la familia"} {-0.020236857,0.04894334,-0.047576774,-0.056258414,-0.058440603,0.018469386,0.046856392,0.079739645,-0.058394987,0.00023018268,0.06852606,-0.07992229,0.0204979,-0.043375164,-0.009893184,-0.013464773,0.009230257,0.059169862,-0.044655282,0.008153202,0.05221767,-0.040666014,-0.016618337,0.05392847,-0.051434718,0.002255397,-0.0130203385,-0.01553134,-0.02352704,0.04056604,-0.012209388,0.01491026,0.1012295,0.013473281,-0.0061814687,0.01530454,0.062218383,-0.0072704526,0.04996162,-0.023404045,-0.06637164,-0.05842955,-0.0074018165,-0.07739246,0.026450776,-0.025023153,0.04601575,0.034123354,-0.021774584,0.015976755,-0.03570464,-0.0278176,0.03895508,0.030516794,0.00022789637,-0.002294745,0.004034597,-0.022166938,0.03159752,0.07515211,-0.029052261,0.032594796,-0.06918352,0.0321381,0.008236928,-0.017111255,0.0654603,-0.092081,-0.02020416,0.071500644,0.050122723,-0.04836972,0.022356847,0.016977152,-0.024706982,0.012724287,-0.039798576,0.016494354,-0.010456171,-0.08431346,0.027113484,0.014429395,-0.013382688,-0.01784553,-0.039405953,0.006525732,-0.021981612,-0.003867768,-0.016011864,-0.016706983,-0.05497403,0.07700067,-0.048008967,-0.023743663,-0.014072433,-0.011204873,0.021715447,-0.083143495,-0.025991227,0.018514976,0.027593376,0.07258606,0.103760764,0.07783019,-0.102325425,-0.063514665,0.0057203015,-0.022412606,-0.067995444,0.045549545,-0.09664729,-0.044451788,-0.0009043615,0.008957147,-0.1346454,-0.044476572,0.07203417,-0.11690693,-0.0587637,-0.00951236,0.032782573,0.009087564,-0.04525724,-0.0036590858,0.058819026,-0.06562103,0.018108053,1.9324837e-33,-0.05090903,0.009901696,0.010920076,0.07145282,-0.024148937,0.064330354,-0.016359942,-0.01016696,0.0007341317,0.028906954,-0.06448246,-0.036890164,0.03000848,0.00042369895,0.06947271,0.08901831,-0.08194065,-0.029834196,0.030685177,0.065619364,-0.018196534,0.0436856,-0.012989575,0.03693539,-0.032153923,0.05427892,0.026259981,-0.045222927,-0.08138073,0.038598917,-0.0019287285,0.0022087265,0.018188357,-0.059996698,-0.0010845406,-0.028769726,0.07910345,0.024557242,0.03214695,-0.012394887,-0.05651316,0.014414759,0.06467122,-0.00025381148,0.014265888,-0.0060384,0.09821603,-0.036589544,0.023532826,0.046223637,-0.037856113,-0.099937566,-0.07199902,-0.038269106,-0.012443405,-0.021243863,-0.08816228,0.038004644,-0.024700738,-0.021333989,0.16907914,-0.111730136,-0.011974523,0.018816184,-0.01544423,-0.0323417,0.059768345,0.05058634,0.123078726,0.028210152,-0.032252647,-0.05506299,-0.0207547,0.014558315,-0.054079644,0.0826216,0.02526418,-0.016294241,-0.011881381,-0.008035838,0.0164149,0.02582936,0.0618769,0.022449633,0.04693129,0.043280397,-0.06847784,0.10505021,-0.066098,0.019533278,-0.0019144334,-0.0034662685,0.04062186,-0.033945207,0.0030111263,-4.1936712e-33,0.007876638,0.01153936,-0.024746573,-0.0060869334,-0.0085536055,-0.050960626,-0.019816626,-0.016152011,-0.0018947814,0.03811161,-0.06587393,-0.13344032,0.17384753,-0.03087226,-0.06371069,0.095403686,-0.031416465,-0.036829915,-0.032113872,0.00623879,0.022954402,0.017056458,-0.012058947,-0.010484224,0.053652868,-0.05509554,-0.020713061,0.05021588,-0.1141293,0.010205438,-0.015166364,-0.031197254,-0.0029894817,0.007324421,0.020160418,0.007298161,0.072754346,0.08132753,-0.046998184,-0.02214235,0.00494493,0.018283032,0.024426188,0.021079427,0.014030678,0.046944216,-0.0018018277,-0.11613938,-0.01531109,-0.044927374,0.042603705,-0.042909812,0.051880844,-0.026777126,0.05821712,-0.050669175,0.013322415,-0.08769569,-0.12678552,-0.026098674,0.06719805,0.014051918,-0.14324667,0.038781926,-0.0016285215,0.022244316,-0.12316686,-0.0009196708,-0.021364272,0.14326021,0.044752564,-0.098347664,-0.027944045,-0.0006275407,-0.0946913,0.023792109,-0.044145554,0.046500854,0.059395596,0.06442988,-0.021270871,-0.042395983,-0.024292612,-0.068039574,-0.052324526,-0.09235234,-0.074999735,0.035678063,0.033148423,-0.025179707,-0.024758825,-0.015970632,-0.027603371,-0.106401,-0.019614775,-2.2991843e-08,0.08260475,-0.042793255,-0.032081462,-0.006621022,0.00030426038,0.043655384,-0.018208982,0.04573599,0.031060545,0.08614099,-0.110829554,-0.017377688,0.05140041,-0.031248454,-0.018294001,0.0150311235,0.13792469,0.06457986,-0.0037457496,0.009866209,0.082234114,-0.013512874,-0.020073308,0.039703805,-0.017117351,-0.010744137,-0.00027348084,0.015132786,-0.050836183,-0.015857132,-0.037342712,0.027757889,-0.054812532,-0.11097466,-0.081878215,0.0393976,-0.03861605,0.07023294,-0.0070019616,-0.017855471,0.08497541,0.06299097,-0.02859279,-0.017860463,0.040890682,-0.007825916,-0.000698349,0.029366124,0.02296449,0.032524515,-0.004251105,0.010347126,0.037456267,-0.008745359,0.019451981,-0.030639257,0.06956146,0.0486211,0.0057584415,0.042573456,0.082622446,0.14412798,0.057123102,-0.032886054} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.465447+00 2026-01-30 02:01:13.000823+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2334 google ChdDSUhNMG9nS0VJQ0FnSUR1cThuVTJnRRAB 1 t 2337 Go Karts Mar Menor unknown Buena pista, mañana volveremos buena pista, mañana volveremos 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {R4.03} V+ I2 CR-N {} {"O1.02": "Buena pista, mañana volveremos"} {0.02889299,0.04489267,0.00299554,-0.038918443,-0.11072973,0.010091125,0.0570464,-0.010389844,0.04604144,-0.014659943,0.08097683,-0.013097788,-0.07315803,0.004080805,-0.0013779755,-0.036998477,-0.014833207,0.02278893,0.036288776,0.028519332,0.074646905,-0.05814182,-0.090847574,0.07685385,-0.036734536,0.03526702,0.046946976,-0.00890776,-0.021477584,-0.1109017,-0.023928382,0.003992427,0.033441477,0.031489585,-0.036592253,0.0013224243,0.0030869094,-0.017313529,0.0134121,0.050608836,-0.07126859,-0.023505451,0.013541384,-0.033760514,0.022910574,-0.106779926,0.026818443,-0.020739442,0.06236163,0.00765481,-0.104417235,-0.008567345,-0.024599044,0.060253378,0.003136532,-0.016319454,0.015747549,-0.021790192,0.05441215,0.020782845,0.03457294,0.07901319,-0.067372896,0.024954326,-0.055154003,-0.04286823,0.030796405,0.036035217,-0.075508274,-7.745524e-05,0.09410712,-0.030220827,-0.037913915,0.044481725,-0.033132818,0.09071105,-0.027071867,-0.00847554,-0.0333246,0.00154124,0.02102206,-0.013882701,-0.07799655,0.016829489,-0.022143602,0.0037811087,-0.018024703,-0.017275067,0.0887072,-0.04570282,-0.028873662,0.09616628,-0.038995218,0.040660515,-0.014871844,0.033846386,-0.036178663,-0.053065244,-0.005660065,0.07342801,0.13201416,0.027545001,-0.033444665,-0.034703497,-0.04268931,0.041709095,0.041069284,0.0036601515,0.058865342,0.024479942,-0.021816298,-0.010309286,-0.0855056,0.008174022,-0.06435838,0.0706832,0.014058357,0.0130956005,-0.018223299,-0.064050175,0.04974814,0.016299639,-0.036238212,-0.0382387,0.02055336,-0.050647892,-0.00525268,1.2472128e-33,-0.022152347,-0.07377456,0.038731676,0.07457528,0.048037387,0.037437722,0.038097613,-0.103587925,-0.11207109,-0.064252704,-0.066166356,0.074645564,-0.09053158,0.0333359,-0.01326789,0.0757998,0.011604522,-0.05556923,-0.018236088,-0.014232699,-0.030178197,0.014403359,-0.041149877,0.005205189,-0.06021142,0.026278835,0.03407178,-0.096510366,0.0055930214,0.07472521,-0.02385739,0.035882387,0.073325075,-0.0010922016,0.10078521,-0.03695581,0.045808706,-0.012639715,-0.021994703,0.013744081,-0.001351121,0.0062339096,0.003686208,0.05557309,-0.029738516,-0.01656656,0.033895493,0.057513583,0.07237607,0.06305983,-0.08053713,-0.104391016,-0.052946743,0.00498774,-0.0031529798,-0.006258449,-0.14940548,0.021494014,-0.031906623,-0.06440303,0.020015605,0.04455671,0.018239109,-0.0026975423,-0.02691341,-0.040292162,0.01633656,0.08200573,0.17802584,0.021329207,-0.036488164,-0.036116306,-0.032445993,0.034676205,0.009221133,-0.033341557,-0.025133416,0.049947944,-0.05848058,0.08771424,-0.06731566,0.0017877637,0.017270265,0.106567174,0.046768274,0.05709291,0.09852423,0.018816292,-0.060024954,0.07923337,-0.029630985,0.13188653,0.093860194,-0.040646054,-0.026916873,-2.4048238e-33,0.012150364,-0.026635364,0.038103692,0.034607556,-0.023160443,-0.028199807,0.013408165,0.021352665,-0.04443218,-0.045540705,-0.08351845,-0.11129432,0.08905669,-0.03344899,-0.03007727,0.075252354,0.052275084,-0.039570477,-0.06998843,0.0023880051,-0.10603542,0.04487951,-0.06487212,0.08080611,0.015299725,-0.05433209,0.044774875,0.017055945,-0.114356145,-0.06485449,0.04160885,-0.018420162,-0.057393424,0.032123808,-0.03680452,0.067150794,0.09297153,0.014687767,0.03760703,0.040787663,-0.021615503,-0.02505931,0.005713686,-0.017956655,0.014590275,0.009080992,-0.022107258,-0.039761923,-0.0016046215,-0.008668329,0.066992365,-0.034595706,-0.019349214,0.073334314,0.06918886,-0.1033178,-0.001015156,-0.0025391683,-0.046168912,0.025796127,0.024218166,-0.027226422,-0.051507093,0.0060896366,0.09266041,0.047441542,-0.005195843,0.038925085,-0.041962486,0.048733145,0.08160573,0.0067351395,-0.03852629,-0.025750728,-0.058881212,-0.020662716,-0.08335488,0.022698855,-0.014935316,-0.0065614493,0.044224527,-0.036113318,-0.02663761,-0.084381804,-0.051273882,-0.005465322,-0.0019718222,0.026599044,-0.011033009,0.07812417,-0.023857541,0.031119892,-0.055615187,-0.10384002,-0.01620071,-2.0026828e-08,0.030521533,0.05457793,-0.06927213,0.024983125,-0.030644843,0.0045772726,0.020797648,0.05185533,0.016118968,0.07845805,0.013346135,-0.031071566,0.08963268,0.058047596,0.02260375,0.028139535,0.08106589,0.14111501,0.0044953176,-0.049660087,0.0036123062,0.024877777,-0.0492757,-0.049912676,-0.03019421,0.032022752,-0.009078273,-0.008507979,-0.0061395005,-0.037062872,-0.014632971,0.03106111,-0.026185192,-0.090085156,-0.06478798,0.023105102,-0.018422602,-0.06459745,0.028874379,-0.094262496,0.04011161,-0.0043746317,0.003196265,-0.052426312,0.016952787,-0.09837227,0.08772369,-0.02639843,-0.014845423,0.022698198,-0.037042536,0.0050924663,0.06777843,0.016339935,0.07401061,-0.06876735,0.06311727,0.027052721,-0.0552577,-0.016369937,0.07667281,0.0628998,0.04504077,-0.009675444} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.082507+00 2026-01-30 02:01:13.036072+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2341 google ChZDSUhNMG9nS0VJQ0FnSURNOC1iRlBnEAE 1 t 2344 Go Karts Mar Menor unknown Buen circuito ,los cart y el personal buen circuito ,los cart y el personal 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {P1.01} V+ I2 CR-N {} {"O1.02": "Buen circuito ,los cart y el personal"} {-0.026080167,0.047544245,0.028355744,-0.056954894,-0.01673429,0.0066747195,0.09098061,0.07699039,-0.015763797,-0.0023185832,0.08621687,0.026640303,0.023256961,-0.047620308,0.014178597,0.036663778,-0.049907804,0.01605856,0.023628946,0.00075463153,0.083411716,0.0060620653,-0.06090537,0.11975524,-0.07872566,-0.003380473,0.04382664,0.03476329,-0.06700043,-0.10622898,-0.05122656,0.083754726,0.06341841,-0.016240228,-0.0076727727,-0.053224664,0.06058013,-0.06811921,0.014762314,-0.027857872,-0.107778534,-0.11197867,0.031450167,-0.007820045,0.031424664,-0.029848397,0.032728836,0.043952018,0.04965736,-0.01672942,0.047331404,-0.0066212863,0.07231017,0.025861176,-0.03641409,0.045774724,-0.024810199,0.01742014,0.1423861,0.06336494,0.041170612,-0.005592565,-0.031862285,0.07384065,-0.02962135,-0.017977191,0.026119722,-0.04259908,-0.09878674,0.027577773,0.1415451,-0.08998642,0.0028492094,-0.00540871,0.03785245,0.0062388387,-0.05283644,-0.038119275,-0.027139902,-0.03988539,-0.028302433,-0.05545088,-0.061112486,0.0044281925,-0.045851942,0.010343948,-0.014221493,0.0006610262,0.00786109,-0.042329166,-0.04943998,-0.02781205,-0.053901963,-0.027561123,-0.015093617,-0.042754445,0.0477104,-0.031776067,0.0057134293,0.105801605,0.06558112,0.049754232,0.040673498,-0.0053142505,-0.004558395,0.045102496,0.029791364,0.03651862,0.0017247767,-0.09516037,-0.052475538,-0.00037492902,-0.020551981,-0.019122189,-0.018447945,-0.03996443,-0.012407708,0.00083763094,-0.037516255,-0.017983105,0.052491345,0.041023687,-0.08733162,-0.02645645,-0.03935647,-0.033396475,0.112421826,6.822819e-34,-0.04330707,0.032979906,-0.022034602,0.043756254,0.05491983,0.07503082,-0.035973616,0.04015619,-0.027470512,0.030403325,0.0122831315,0.07964234,-0.00065420003,0.018557336,0.0656577,0.010255664,-0.026563352,-0.06607809,0.10098839,-0.033920567,-0.013181165,-0.035056032,-0.013597216,0.06377003,-0.015204103,0.08051229,0.042253464,-0.03821119,-0.0306733,0.041567065,0.033548757,0.05095591,0.078664206,-0.0064287954,0.001657424,-0.051584143,0.036593504,0.025679724,-0.014775626,-0.04352613,-0.028725203,0.012278716,-0.072208054,0.056763474,-0.037148546,-0.027749805,0.058707036,0.04369133,0.06802596,0.061064634,-0.11804761,-0.051655505,-0.061566073,-0.016590351,-0.010840179,-0.013087377,-0.06130729,0.07906044,-0.00077020854,-0.045174092,0.061540812,0.12533996,-0.01191977,-0.014384707,-0.07161051,0.021333313,0.05168022,-0.04491655,0.07436257,-0.038756665,-0.053379964,0.0039853947,-0.0048910375,0.002372987,0.038940296,0.06746781,-0.05627188,0.04756704,-0.003844054,-0.046556722,-0.14293745,-0.024354672,0.011361323,0.09405955,0.10866373,0.07854416,0.005127284,-0.011573,-0.0058789607,0.12153271,-0.057503674,0.06823467,0.076674215,-0.020762356,0.03500144,-1.7188212e-33,-0.030900672,0.0018940327,0.04244484,0.04036128,0.05653394,-0.013946406,-0.04917769,-0.017016947,-0.034198545,-0.026312256,-0.075775586,-0.06780171,0.09902308,-0.03155811,0.04213513,0.056788813,0.018287512,-0.0337933,-0.09478713,-0.004966735,-0.010003243,0.06779193,-0.007323471,0.008328322,-0.0045483047,0.0002736444,-0.030883715,0.048890498,-0.030256812,0.038304664,0.0014594586,-0.048691377,-0.026413612,0.06981859,-0.0837463,0.028098134,0.027679473,0.0940761,-0.005954142,-0.021110823,-0.049822528,0.026354404,-0.040553868,-0.02741535,-0.07461164,-0.014999166,0.0016004946,-0.1408992,0.00020092513,0.004735362,-0.016575774,-0.019489912,-0.039585117,-0.07265425,-0.018556967,-0.046988487,-0.005614598,-0.061428156,-0.055203475,-0.068127,0.050747942,0.006368529,0.009742391,0.03393363,0.06224606,-0.04342283,0.01947444,0.04595478,0.12231393,-0.01537142,0.06530434,-0.0067073377,-0.0110904,0.031380508,-0.08894562,-0.02079242,-0.053903483,-0.039260145,0.019634364,-0.024859864,0.02439348,-0.03628634,-0.027960703,-0.023937654,0.017892249,-0.022855597,-0.020304287,0.021233575,0.043443117,0.004990033,0.0023683475,0.066425994,-0.1356407,-0.054380402,-0.023529232,-2.001455e-08,0.027335163,-0.0103471605,-0.043809287,0.030175755,0.089540906,-0.121350326,-0.0107643055,-0.008564052,-0.044168428,0.030695945,0.058521613,0.007836981,0.0049656075,0.030533116,-0.01917018,0.032913674,0.059445042,0.08126046,-0.0140717095,0.0074066287,0.022606479,-0.051062286,0.00046486422,0.031035172,0.029147575,-0.012054054,0.008912061,0.04104495,0.051102564,-0.034363337,-0.023117876,0.023560084,-0.05733174,-0.07973955,0.05745051,-0.0051456713,-0.11015084,0.0026546265,0.011987613,-0.015736634,0.04524384,-0.03687997,-0.055130266,0.015695013,-0.020502472,-0.08650334,-0.020380044,-0.006760433,-0.015287093,0.037999798,-0.07800675,-0.118711166,0.04816824,0.07588437,0.11524037,0.019088823,0.061990418,0.029649148,-0.041970264,-0.017018393,-0.027413096,0.11606988,-0.010854163,-0.113566525} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.167029+00 2026-01-30 02:01:13.061495+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2352 google ChZDSUhNMG9nS0VJQ0FnSUNVanNxb1ZnEAE 1 t 2355 Go Karts Mar Menor unknown Dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet 1 2020-02-01 01:52:39.833374+00 no v5.1 E4.01 {P1.04} V- I3 CR-N {} {"E4.01": "Dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet"} {-0.06447897,0.07014927,0.051757235,-0.037315316,-0.080803335,0.0074766865,0.10610273,0.08823863,0.065694496,-0.030759463,-0.02155271,-0.018697444,0.0069216406,-0.050397623,-0.05892826,-0.06448289,-0.081772864,0.088512614,-0.041028123,-0.013538937,-0.03009415,-0.008833212,-0.024454912,-0.026013672,0.0032759882,-0.03947158,0.043093376,-0.008533984,0.058775418,-0.11054011,0.062183145,0.05532713,-0.08155271,0.020597586,-0.020231422,0.105298266,-0.03161797,-0.026391251,0.004352656,0.049369752,0.0034059712,-0.08931384,-0.025161458,-0.055790026,0.0115070185,0.07755171,-0.0894296,0.031367246,-0.028868672,-0.027844224,-0.119660094,-0.035751514,0.018574413,-0.0011436844,0.01547324,-0.13617599,-0.014140619,0.046687886,-0.028967319,-0.041633006,0.030244572,-0.025518252,-0.0202118,0.06783781,-0.03338331,0.03961452,0.078377165,0.014053212,-0.106998354,0.03591225,-0.060365155,-0.073449634,-0.010519528,0.067773715,2.0038318e-05,-0.024115833,-0.030528544,-0.00943123,0.06833499,-0.09222408,0.047840968,0.050919563,-0.011399928,-0.0011950381,-0.052746236,-0.057417043,0.06335129,0.049465626,0.078874245,-0.019067219,0.06633895,0.11959922,-0.120509595,-0.016755497,-0.030532608,0.023477975,-0.020549431,-0.056937642,-0.013828383,0.06427949,0.024320042,0.12751372,0.008914192,0.050227832,0.010524656,-0.026415931,0.009088086,-0.06407395,0.044731416,-0.014223589,-0.06919543,0.006089213,0.012195872,-0.08548202,-0.010126103,-0.019724896,0.018353347,-0.01925112,0.014713266,-0.05761307,-0.03826294,-0.0015791638,-0.047566667,0.03029677,-0.02443623,0.00966173,0.0015912192,4.6017243e-33,-0.021008302,-0.005006437,-0.0100565,-0.05179421,-0.039861966,-0.020458007,-0.0097573465,0.022809435,-0.0141782435,0.048569743,0.0043532257,-0.085922934,-0.10081647,-0.0060802298,0.022405531,0.025832241,0.0017135526,0.0040716687,-0.049967233,-0.033250567,0.0065495013,0.032468412,0.018286424,0.029829875,0.05547056,0.074702784,0.052484967,0.054940417,-0.04111252,-0.0012065389,0.023457615,-0.06382134,-0.02901516,-0.043303803,-0.036171008,-0.06251084,-0.025590645,-0.046681963,0.051973633,-0.0030114455,0.0076794927,-0.03550714,0.059033677,-0.017302388,0.010585864,0.025643583,-0.052710272,-0.024937516,0.10779645,-0.020772206,-0.013402145,-0.024257576,-0.057484783,-0.049746126,0.0016519275,0.048976153,-0.09447138,0.02304606,0.026106546,-0.05616421,-0.017034883,-0.08777048,-0.0027504475,-0.04026463,0.0089367805,-0.033877373,-0.030253423,0.08011656,0.061813995,0.009521333,-0.006779648,-0.018134136,0.0059293914,0.049675286,-0.060181435,0.037816294,-0.025259351,-0.009972802,0.06607068,-0.013382279,-0.058719017,-0.00448109,-0.012023399,-0.019053895,0.044663362,-0.046845764,0.043430276,-0.0022940421,0.017193323,0.077151515,0.020588882,0.0871729,-0.010106966,-0.08756913,0.03813532,-5.991537e-33,0.08641216,0.08230683,-0.07250436,-0.020827174,0.05346525,-0.020918973,0.074507594,0.041093897,0.0071501923,0.060275245,-0.038578577,-0.085705206,0.06506662,-0.049322244,-0.10422304,0.021298477,0.09750418,0.010650282,-0.006644411,0.02316396,-0.031860225,0.022556672,0.010438966,0.06306634,0.018852476,-0.03137027,0.0087152235,0.0785615,-0.13730443,0.019523872,0.10172854,-0.06431208,-0.00038113305,-0.011824006,0.002646644,-0.016593803,0.13907468,0.06879718,-0.09937436,0.03368842,0.06781839,-0.02064771,-0.0031623854,0.07506196,0.046553675,0.035809465,0.0055470024,-0.044482976,-0.007104997,-0.069733985,0.03073131,0.05914029,0.032169197,-0.07386115,0.030273145,0.059314124,-0.04591368,-0.1012047,-0.031416725,-0.0047096782,0.018429868,0.020797683,0.042538248,-0.018250145,0.05060631,0.038463984,-0.11914621,0.0046356856,0.047675822,0.027822165,0.06383109,-0.068132535,-0.03586346,-0.060167268,-0.09065672,0.05966362,0.011464119,0.0611447,-0.028832106,-0.08706185,0.01671295,-0.0324365,-0.037112568,0.030142203,-0.119245835,-0.0417035,0.0752238,-0.03150452,-0.024110114,-0.011551809,-0.03422084,0.096078165,-0.01047731,0.03148694,-0.002209038,-2.7890422e-08,0.031612437,-0.05938388,-0.075657554,-0.025087638,0.06732144,-0.06590047,-0.020624122,-0.04186161,-0.09048833,0.05833195,-0.05271189,0.0038567672,-0.013741413,0.065110914,0.07370866,-0.029824788,-0.0048285183,0.042548116,-0.03973104,0.0021123653,0.07992226,0.0066689737,-0.056497674,-0.012103025,0.048032526,0.09130199,0.0012795589,-0.05258824,0.030794416,0.011816392,0.05387865,0.09432075,0.016867446,-0.00920865,0.018717453,0.11500593,-0.044555683,0.009485711,0.0143472515,-0.05144731,0.041987024,0.080171704,0.03177808,0.004959307,-0.03353712,-0.012455292,0.046212263,0.020461645,0.05965615,-0.006498049,-0.05775823,-0.0429327,-0.026316749,-0.012986241,0.06753745,-0.019575182,-0.01562646,0.075410455,-0.008568586,-0.04669218,0.06509533,0.014586864,0.07251456,-0.042982735} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.304921+00 2026-01-30 02:01:13.108719+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2361 google ChdDSUhNMG9nS0VJQ0FnSUR1d055WWt3RRAB 1 t 2364 Go Karts Mar Menor unknown Snelle karts heel leuk daar snelle karts heel leuk daar 5 2023-01-31 01:52:39.833374+00 af v5.1 O1.02 {O1.05} V+ I2 CR-N {} {"O1.02": "Snelle karts heel leuk daar"} {-0.103304744,0.04930525,-0.014290282,-0.006346932,-0.070140205,0.01389179,-0.016021142,0.05534983,0.04514887,0.0131343035,-0.014655193,-0.021374617,-0.0593147,-0.021621358,-0.019832838,-0.027495977,-0.0802059,0.06693742,0.0029373285,-0.06582322,-0.0041588945,-0.016246315,-0.008911889,0.014681678,-0.060503677,-0.006732076,0.018945893,0.041110605,0.028405689,-0.019236378,0.019913683,0.002864396,0.042151827,0.05456292,-0.05145148,-0.044140883,-0.001726535,0.0009603283,-0.011816549,0.10896228,0.012211828,-0.05483581,-0.072020836,-0.06423823,0.06497457,-0.0070324503,-0.061985627,0.055354275,-0.077861026,0.04643865,-0.06964799,-0.107975654,0.0023968937,-0.04305662,0.06331155,-0.0555508,-0.038929287,0.032727394,0.08596823,-0.044320308,0.14809401,0.00592435,-0.088357575,0.03919467,-0.04622585,-0.05393159,-0.024826655,0.005092243,-0.035357114,0.10603912,0.008457708,-0.09024309,-0.021740587,0.066035375,-0.04365393,-0.03943564,-0.04399642,-0.042009868,-0.020598592,-0.0028165134,0.060935248,-0.03138007,-0.012338052,0.008062637,-0.012226646,-0.016696269,0.029243859,0.013540612,0.033957347,-0.057742227,-0.048529908,-0.049992602,-0.092093624,-0.052200645,0.078413054,-0.01473778,-0.0064600077,-0.017202292,-0.034442008,0.06534942,0.012693393,-0.040059436,-0.002264896,0.02846934,-0.08193716,-0.01583814,-0.01144991,-0.026318235,0.010282846,0.054221738,-0.042373344,-0.016949918,-0.08540738,-0.051012978,-0.016017059,-0.039327364,-0.021885378,-0.032397818,0.035134513,0.030613821,-0.004579452,-0.026027419,0.027252669,0.053730857,0.0041934135,-0.04295564,0.02596172,2.820788e-33,-0.070730604,-0.013770894,-0.059930507,-0.07292497,0.025827551,-0.1313507,-0.0176207,-0.029981578,-0.05272378,0.058459792,-0.06771946,0.06084667,-0.049164865,-0.05558466,0.035141572,0.05946836,0.092107005,0.008847014,-0.056909144,-0.084429815,0.034260537,-0.0144758895,0.077432096,0.011269971,0.04124393,-0.041148353,0.091523804,-0.079600856,-0.015807286,0.03199442,0.08409153,-0.04681871,0.039115164,0.014554684,-0.073058255,-0.0021938228,-0.0315168,-0.017798513,-0.06160705,-0.0040219324,0.07316032,-0.068996735,0.036716726,0.014864671,-0.019831266,0.15715827,-0.011827957,0.020141015,-0.008679593,0.017064894,0.021146694,0.017970264,-0.10565869,0.021325042,0.010789234,0.014810728,0.023087732,0.04913455,-0.013230236,-0.025061011,-0.029624607,-0.058040507,0.025374273,-0.09342141,0.03721958,-0.080498286,-0.015332509,0.012141185,-0.035749912,-0.027823642,-0.037432626,-0.002627714,0.054567378,0.030669754,-0.0041299216,0.07222098,0.026719157,0.08564406,-0.038817707,0.012146155,-0.1478134,-0.025080005,-0.02351814,-0.003895947,0.0366333,-0.015359212,-0.050668374,-0.031232815,0.05148394,0.09448449,-0.064999014,-0.0017361399,-0.047007903,0.012473355,0.03718362,-3.0699637e-33,-0.0061524273,0.07252076,-0.028962221,0.12231219,0.017357634,0.04249913,0.013780462,0.07955103,0.058611173,-0.005858491,0.028310666,-0.038170688,0.04192077,0.016961861,-0.002866728,0.014549354,0.10482678,0.08007842,0.050143972,-0.04000671,0.00046632404,0.048635013,0.031842515,0.029908238,-0.03487872,0.064256735,0.13217951,0.028834587,-0.15498237,0.026899515,0.08362066,-0.085891,-0.0055148555,0.04527151,-0.040166456,0.060449317,0.02421348,0.080401696,-0.05851629,0.040128343,0.040022284,0.011962389,0.009530546,0.06053647,0.03258311,-0.07509732,0.007871667,0.039922986,0.086533755,-0.07178749,0.12700722,0.04816397,0.029848114,-0.014919853,0.018809788,0.055324852,-0.00031673422,-0.061829872,-0.07501714,-0.008149841,0.049122166,0.009844043,-0.017331764,-0.022636302,0.046572335,0.0112815015,-0.10094828,-0.055933986,-0.0062795733,9.47487e-05,0.019152075,-0.02738853,-0.048247192,0.023312666,-0.06830357,-0.022593893,-0.029214319,0.033103358,0.022491496,-0.0027786803,-0.08903715,-0.052219197,-0.029608168,0.070726335,0.0073081097,0.04655725,0.028311396,-0.01689115,0.10996436,-0.0482264,0.051902696,0.09373153,0.021070346,0.06294372,-0.022755008,-1.718512e-08,0.06719953,0.035014722,-0.072263084,0.0731051,0.011977146,-0.05978936,-0.012776687,-0.02326257,-0.030173272,0.007849977,-0.06641562,0.04117591,0.0123298075,0.04120967,0.07724812,0.028123507,-0.015485839,0.086954735,0.007990767,-0.07272479,0.053887725,-0.054134484,0.042871725,0.018001623,-0.07656712,-0.066392265,0.06242075,0.018907044,0.12249553,0.02372848,0.035927415,0.087027475,0.0065265545,0.09359512,0.004070784,-6.1836385e-05,-0.033876568,0.024067232,0.008049621,0.055349573,-0.034582827,-0.022912834,0.053293876,0.0041104294,-0.08856635,0.057947762,0.03197632,0.016335756,-0.009634853,-0.051394343,-0.059067383,0.0007848349,0.013225497,0.080641024,0.050350636,0.00027465948,0.041687723,-0.020734258,-0.05915235,-0.0366665,-0.013360052,-0.04221977,-0.000679548,0.020706559} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.816268+00 2026-01-30 02:01:13.16001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2368 google ChZDSUhNMG9nS0VJQ0FnSUQ2NDhpbUJnEAE 1 t 2371 Go Karts Mar Menor unknown Muy bien 👍 muy bien 👍 5 2022-01-31 01:52:39.833374+00 de v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy bien 👍"} {-0.06908058,0.0010897019,0.08900657,-0.053023353,0.05162786,-6.577007e-05,0.08628544,0.02541999,0.032282475,-0.019796079,0.07822625,-0.05633242,0.0974669,-0.0434916,-0.023455981,-0.0017160521,0.025258295,0.03499742,-0.07292055,0.032550577,-0.04252905,0.04212132,-0.016173763,0.07444305,-0.086277865,-0.021478469,-0.03907602,0.012850244,0.02650287,-0.05203463,0.018237885,0.08173887,0.010166862,-0.019801669,0.014864283,-0.03694487,0.040206216,-0.11183284,0.012059481,0.046914663,-0.077302895,0.011254196,-0.05860817,-0.028502004,0.018378211,-0.013388613,0.0049978714,0.011092821,0.0064239125,-0.0050409376,-0.0615844,0.035585552,0.024112668,0.02465443,0.0502781,0.07828136,-0.04313528,-0.061994243,-0.0106245475,0.0065179355,-0.013600915,0.056382995,-0.012224397,-0.028582009,0.016448103,-0.018891754,0.056456335,-0.0010707774,-0.023861183,-0.013297603,0.040360224,-0.022169525,-0.009052075,-0.05454307,-0.0011877485,0.005721148,0.055770267,-0.0025372228,-0.034396417,-0.01920101,-0.03410604,-0.036350694,-0.018893026,-0.003508145,0.011255857,-0.007420267,-0.077655576,0.022265678,0.04865244,-0.014840435,-0.051773936,0.05450141,-0.009744357,0.03561216,0.00328418,0.026653318,0.02502953,-0.07500543,-0.08229001,0.12655285,0.012575842,0.080429226,0.12050281,0.0164028,-0.013238404,0.029513046,0.0352711,0.039951265,-0.006973474,-0.03244399,0.039456926,-0.02741206,-0.007905631,0.013870657,0.031396236,0.016191153,-0.015291035,0.012258873,-0.03582692,-0.07487252,0.07964804,0.026207814,-0.095568456,-0.061139107,-0.06588661,-0.05065855,0.05457432,-2.2431672e-33,-0.022595953,0.032335855,0.014984785,0.039803866,-0.049493693,0.015538607,-0.0463679,0.06784311,-0.13788907,-0.040490467,-0.008333605,-0.010914159,0.013050985,0.06582739,-0.043835156,0.022489091,0.043305382,-0.11225791,0.13067079,0.029260095,-0.052765235,-0.13548684,-0.012365749,0.029086906,0.024547528,-0.011065125,0.01841151,-0.04278862,-0.09366549,0.044544537,-0.044493347,0.016192345,0.022979649,-0.033117473,-0.0377174,-0.06875895,0.0012920839,0.07665528,0.004292929,0.06101753,0.044555694,-0.011232338,-0.05783467,-0.053327695,0.00947239,0.10102805,-0.029193228,0.02577182,0.046552412,-0.06719204,-0.027833333,-0.017273322,-0.16378151,0.07550024,0.033778954,-0.04904928,-0.017166095,-0.000302485,-0.07496171,-0.04138688,0.1092295,-0.04851968,-0.014390998,-0.0060804244,-0.09288184,-0.029538073,-0.028160887,0.07697397,0.07116918,-0.0075754323,-0.07587134,-0.012655199,0.04419043,-0.034049466,0.014966188,-0.03818302,-0.019601034,0.004782675,0.12757342,0.024938995,0.038787827,-0.008805914,0.04490975,0.013251081,0.037315164,0.054124255,0.039813235,-0.0076752673,-0.030890988,0.037815303,-0.09782161,-0.0153951775,0.12209736,-0.03358559,-0.090735234,1.5565444e-33,0.08232132,0.04705261,-0.0006446678,0.07372787,-0.021775393,-0.011730063,0.05543848,0.056090996,-0.08713931,-0.0046833474,0.021481281,-0.122040056,0.056949545,0.007884138,0.055654105,0.11965455,0.03517898,-6.323221e-05,-0.05899583,0.013783932,0.036189687,-0.04059795,-0.0015310915,-0.029048419,-0.052837938,0.0052342773,-0.018468613,0.037029903,-0.05395908,0.032484677,-0.03150074,-0.03874833,-0.052387763,0.013811432,0.018356377,0.023668611,0.0038635316,0.040876623,-0.01552647,0.037142944,-0.04798234,0.064066805,-0.008525068,0.10954329,-0.0032195905,0.065206334,-0.008843034,-0.12558943,-0.059749343,-0.0031425687,0.054952137,-0.04615658,0.005324059,0.013480085,-0.029066892,0.0104619805,-0.021152005,-0.024569046,-0.08879363,-0.06103298,-0.06226858,0.05555543,-0.095155016,0.0027712274,0.07404781,-0.02950882,-0.028654573,-0.024083577,0.043931082,-0.04364498,0.07478031,0.013762411,-0.0360104,-0.02235567,-0.059393067,-0.02580298,-0.07005391,0.01927571,0.03383508,0.11502859,-0.025144577,-0.026198713,-0.03156123,0.015670847,-0.03859652,-0.022137608,0.0033542374,-0.0101425145,0.044630606,0.029689077,-0.0014902249,0.041351914,-0.008125709,-0.07135292,0.07591426,-1.5075383e-08,0.011063589,-0.057845563,-0.029011827,-0.004830145,0.012365279,-0.06561686,-0.09117143,0.05771071,0.06849932,0.048434023,-0.04164372,0.010473498,-0.059037708,0.072548464,-0.033153072,0.07514561,0.004201861,0.1000423,0.044560157,-0.066766806,0.06986244,0.0054342872,-0.013075478,0.053668264,-0.005200905,0.007039881,-0.092549644,0.00044681533,-0.082585394,0.016634798,0.042398676,0.025377536,-0.06539349,-0.03352783,-0.0006647997,-0.029013751,-0.025642954,-0.02447666,-0.0019262554,0.038482815,0.044731043,-0.02486385,-0.0054617794,-0.0091732,0.072649755,-0.10459305,0.05447404,0.05341877,0.03349524,-0.001847,0.04321106,0.022323843,0.088047504,0.079561025,-0.010759104,0.045598008,0.035075463,0.0061099604,0.024092572,-0.022507224,0.08506683,0.113579266,0.028145319,-0.14699997} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.896759+00 2026-01-30 02:01:13.203576+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2349 google ChZDSUhNMG9nS0VJQ0FnSURRNTdXb0x3EAE 1 t 2352 Go Karts Mar Menor unknown Buen lugar para descargar adrenalina buen lugar para descargar adrenalina 5 2018-02-01 01:52:39.833374+00 es v5.1 O4.04 {V4.03} V+ I2 CR-N {} {"O4.04": "Buen lugar para descargar adrenalina"} {-0.060160637,0.06128778,-0.04948009,0.001812728,-0.09351227,-2.8429624e-05,0.053920444,0.03510531,0.023704374,-0.0716026,0.079900935,-0.11933059,-0.09627576,-0.06700825,0.018882355,0.03406972,-0.038900193,0.10554037,-0.021792773,0.019205414,0.07746461,0.032893464,-0.083332196,0.04997554,-0.032032333,0.019032678,0.050108366,-0.013976455,-0.015939478,-0.016080048,0.089160524,-0.07993119,0.093930125,-0.008337305,-0.0060954653,-0.0073901727,-0.008641983,-0.044334166,0.051158506,0.05814128,-0.06053054,-0.020967016,-0.0842447,-0.10146909,0.032019515,-0.08950192,-0.010935469,0.10058467,-0.02661405,-0.019687338,0.029775292,0.015533917,-0.05088515,-0.011360117,-0.014505251,-0.015350226,-0.03318447,-0.019569738,0.007942846,0.0019524464,0.027882054,0.08146806,-0.068763584,-0.045417674,-0.016288668,-0.044989955,0.0346985,-0.007586132,0.016005328,0.05632636,0.038046986,-0.060044743,-0.058205333,0.00986633,-0.0473816,-0.050247192,-0.024069265,-0.09059334,0.0128921885,-0.06037671,0.085224204,-0.041171238,-0.07164082,-0.021964116,0.0031878648,-0.040769555,-0.017092858,0.0030573788,0.0337436,-0.035431534,0.06297542,0.009980948,-0.16477926,0.07858868,-0.0274911,0.0022869338,0.007996147,0.003504785,-0.015354112,0.05078739,-0.007571093,0.06361625,0.006394532,-0.0021078268,-0.06636684,-0.062946334,0.0993219,0.019650495,0.03300418,-0.0070976033,-0.054577477,-0.067201845,-0.026975207,-0.010362462,-0.031161997,0.008748757,-0.06525995,-0.08224988,-0.035172764,-0.052149035,0.032424755,0.016873728,-0.03810739,0.029615803,0.06190593,-0.04916407,0.06856233,4.6843696e-33,0.036403812,-0.11710041,0.026869494,0.093990594,-0.036463283,0.06344308,-0.04540115,-0.026182324,0.0040847715,-0.06079865,-0.011330543,-0.018149508,-0.08575708,0.063642584,0.053161487,0.031606816,0.041156154,-0.06763445,0.092687644,-0.0035597829,-0.04667418,0.07156522,-0.0611582,0.0041318918,0.023317542,0.004899306,0.0111506535,0.010011536,0.0033802853,0.090442255,0.098395586,-0.07457584,-0.016453173,-0.006251358,0.016432673,0.032115653,-0.04968205,0.024980772,-0.039865553,-0.035527788,0.024558494,-0.0047064866,0.03212757,0.049409833,0.018274348,0.0753867,0.06119071,-0.0054401727,0.007507717,0.022816598,-0.01374589,0.0038434803,-0.025455734,0.00017225124,0.0041998685,-0.0032204033,-0.088313945,0.047841214,-0.025662752,0.030066524,0.022711556,0.047386017,0.010099748,0.0067177853,0.029378528,-0.059882063,0.026472887,0.004880221,0.028310511,0.0022484823,-0.07256571,-0.035386886,0.021274243,0.03416602,-0.06327642,0.029908352,0.02522647,0.05410642,-0.11129788,-0.031823523,-0.09766094,-0.059961,0.030241206,0.05743011,0.082289755,0.046479058,-0.02240301,-0.028206425,0.024208762,0.052348703,-0.0356589,0.09596182,-0.020775355,-0.017289115,0.08732402,-5.495427e-33,0.04690676,-0.054483406,-0.029564733,0.08741704,-0.010825603,0.056028727,-0.009751127,0.04713246,-0.017310483,0.028426945,-0.03854835,-0.06487841,0.061720897,-0.02627643,-0.0023187888,0.12622222,0.057191722,0.03434547,-0.079493575,-0.050866134,-0.049698893,0.117172875,-0.010035602,-0.01272164,0.032027185,-0.04574472,0.03838856,0.004832639,-0.0754993,-0.061074976,0.08048991,-0.061258666,0.056505337,0.07168614,-0.12731719,0.03526892,0.082266755,-0.04596988,-0.03016256,0.017160006,-0.045272663,-0.015679386,-0.0126634035,-0.063862756,0.043032847,0.021379577,0.028046135,-0.10385525,0.023497228,-0.03168199,0.11476812,-0.03788267,0.024555821,-0.053486884,0.122783996,-0.05425864,-0.034202266,-0.035746217,-0.01642621,-0.030967703,0.08513374,0.032350227,-0.0067899623,-0.0438739,0.042370398,-0.0018777092,0.03102213,0.038241837,0.060315933,-0.048006408,0.095847785,-0.07218361,-0.040477753,0.07166144,-0.11411676,0.0005036844,-0.062117595,0.018732203,0.004260488,-0.015459608,-0.0337244,-0.12828872,0.05895926,0.01822218,-0.045127105,-0.008128886,-0.011002066,0.00021568085,-0.03570204,0.052998483,-0.005365797,-0.00064112945,0.018110594,-0.010568731,-0.017292297,-2.3182574e-08,0.003994634,-0.046016518,-0.031677186,-0.02382679,-0.028019175,-0.026140917,0.07056103,0.0076156408,-0.048365664,0.034632813,-0.024689712,0.017455447,-0.0032309976,0.07422579,-0.027256338,-0.009291581,0.03288283,0.004157363,-0.026175153,-0.07735829,0.03392492,0.007087757,-0.054271095,-0.013077221,0.022115387,-0.00845345,0.048135612,0.04797804,0.14205673,-0.026812742,0.04452868,0.011959842,0.0020922844,-0.0067572217,-0.022350447,0.011443751,-0.045921728,-0.008709252,-0.035657484,0.06903039,0.051353607,0.021459948,0.08731823,0.008948434,0.049392734,-0.032361995,0.07865557,0.06585102,-0.013536733,0.010963007,-0.028167062,-0.0034002864,0.070183545,0.072158344,-0.057543382,0.0043433746,-0.05326742,0.005340152,-0.0029624095,-0.022176577,0.12528057,0.081259295,-0.06787687,0.03130106} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.26717+00 2026-01-30 02:01:13.097673+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2385 google ChZDSUhNMG9nS0VJQ0FnSURPbU9tUUdREAE 1 t 2388 Go Karts Mar Menor unknown Bonita experiencia bonita experiencia 4 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Bonita experiencia"} {0.017302442,0.05364497,0.062417127,-0.025971418,-0.05839026,-0.023599446,0.12383504,-0.0066812164,-0.017394876,0.056656174,0.088694245,-0.075692356,-0.027593851,-0.037398953,-0.001490719,0.016412443,-0.033496108,0.00388081,-0.046892896,0.0036237508,-0.015472661,-0.010636096,-0.027316572,-0.0052765263,0.015308489,0.070038475,0.009017507,0.0204445,0.010922154,-0.021303134,-0.03985931,0.050583046,0.007319893,0.0022481289,0.0078114397,0.033560406,0.009769439,0.05227879,-0.04073516,-0.04727759,-0.023253929,-0.022898583,0.0077035087,-0.06472558,-0.0015913573,-0.08359202,-0.036431167,0.009799778,0.02428997,-0.04190583,-0.061097942,0.028527414,0.0018193136,0.07412685,0.03548973,0.049946513,0.022770882,-0.023043534,0.019197844,0.01913549,-0.094908,0.0056185788,-0.05840847,-0.08480138,0.10548432,-0.042762183,-0.053950764,0.0608566,-0.04638116,-0.015544616,0.061020546,0.007038827,-0.017414236,0.05680733,-0.015029151,0.023388313,-0.014550163,-0.018681493,0.04240609,-0.034283746,0.048155013,-0.030689253,-0.059082866,0.02185265,0.056125283,-0.022590084,-0.03895099,-0.055513613,0.048490442,0.0240772,-0.10652144,0.07120049,-0.09519824,-0.03832344,-0.084829494,-0.011259258,0.007349025,-0.03986927,-0.11148366,0.14727995,0.031539544,0.056544363,0.04616076,0.010055296,-0.040595468,-0.047167175,0.07922139,0.006664239,0.070290096,-0.016666502,-0.032918062,-0.0927533,-0.080878384,-0.03698105,-0.022935752,0.021170102,0.012718948,-0.004843282,-0.024955034,-0.16648646,-0.031542066,0.040859878,-0.029272059,-0.020472154,-0.02832751,-0.08339361,-0.056903247,7.4240127e-34,0.017332075,-0.017461754,0.05031925,0.112408735,0.07614698,0.034160767,-0.032481994,-0.017840466,-0.07038498,-0.12919173,0.02156492,0.03551157,-0.031891413,-0.059002344,0.120050244,0.061446935,-0.10695943,0.03284283,0.061020967,-0.016123757,0.0354724,0.023181997,-0.022832992,0.050339166,-0.033660885,-0.08369141,0.03220702,-0.010852533,0.013305359,0.06960546,0.03162478,0.121442474,0.018739745,-0.09142468,0.037759684,0.039395276,0.01480664,-0.0300734,-0.00869442,-0.021209782,-0.006813755,-0.030557618,0.04869103,-0.011142398,-0.07602337,0.03212009,0.085545085,-0.035207342,0.07368269,0.033868827,0.0048720525,-0.03759414,-0.040562626,0.037902415,-0.051843423,0.0108579425,-0.0037866884,0.034962673,0.0025309823,-0.06481487,0.08151704,0.040077455,-0.0077810977,0.0035528634,-0.053674642,-0.026890952,0.026363166,0.035067137,0.108251825,-0.003418345,-0.08088759,0.038603958,-0.0290447,-0.012734589,0.016382566,-0.00836968,-0.029154744,-0.0013235685,0.012778266,0.025893696,-0.023099167,-0.015055001,-0.024901846,0.08889331,-0.024588466,0.0068788123,0.08304028,-0.017302977,-0.00850455,0.021366099,-0.032887056,-0.014282061,0.10932428,0.0026914068,-0.11509994,-1.765066e-33,0.06447178,-0.055922605,0.08636528,0.014459346,0.10594132,-0.006092585,-0.040637847,0.043807086,-0.07387703,-0.009263997,0.0065063876,-0.068867005,0.20905651,0.040021975,-0.0012653143,0.030121624,0.07996452,-0.051396195,0.012028007,-0.019816028,0.034747045,-0.0468186,0.01554228,0.020506509,-0.053494435,-0.012390071,0.04753519,0.00742383,-0.09390326,-0.07868187,0.025931604,0.041318517,-0.07656168,0.030621272,-0.016560376,0.07740062,0.08041763,-0.04765414,-0.037589725,0.0040528276,0.0014733259,0.0061455206,0.0058707725,0.07896901,0.016548634,-0.020991407,0.033949368,-0.0761175,-0.08643779,0.032377273,0.08927296,0.059026223,-0.0717998,0.0038395887,0.016462358,-0.058881406,-0.025468485,0.020837016,-0.10883132,0.03742389,-0.009541323,-0.03483621,-0.12412942,0.066363096,0.032758478,-0.04762154,0.035471227,0.09330613,-0.03648814,-0.03497661,0.020668192,-0.012539953,-0.010907465,0.031856947,0.009515837,-0.010282431,0.041558657,-0.10366368,0.01664959,-0.048284814,-0.045948777,-0.050817717,-0.03185305,0.016023662,-0.056499284,0.01192256,-0.022883255,0.046505753,0.026300648,0.08385306,-0.0320018,-0.0320602,-0.05266328,-0.070999034,-0.009512746,-1.7605544e-08,-0.03095206,-0.007366451,-0.03940611,0.014196271,-0.0129868835,0.004332286,-0.00597949,0.035101198,0.044945445,0.013035481,-0.029820837,0.063760206,-0.016229397,0.0443041,0.022451123,-0.041368544,0.068616375,0.050558746,-0.022923917,-0.01621907,-0.04447683,0.018639358,-0.004165262,-0.029392784,-0.059577,-0.008639566,-0.087508656,-0.08685895,-0.07399812,0.04551393,-0.039969187,0.07308544,-0.008153796,-0.083715335,-0.0030820146,-0.016860781,-0.046698242,-0.06574215,0.009379944,0.002062635,0.06735926,0.044522677,-0.030004665,0.020003142,0.008022563,0.00021626089,0.07286064,0.0123918215,0.0008943249,0.009790626,0.018662846,0.04095974,0.10228504,-0.0048680413,-0.007488892,-0.013398785,-0.0029628566,0.102462605,0.02407398,0.0020173208,0.12101083,0.059681535,0.004846385,0.0536368} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.893562+00 2026-01-30 02:01:13.322776+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2392 google ChdDSUhNMG9nS0VJQ0FnSUR1bktfZnNnRRAB 1 t 2395 Go Karts Mar Menor unknown El mejor el mejor 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "El mejor"} {-0.05685166,0.097736135,0.08270249,-0.014076494,0.002902296,-0.0708914,0.083965935,0.040597096,0.07021997,0.062014896,0.035370745,-0.08326732,0.051854506,0.02397206,-0.06520542,0.06598646,-0.01457302,-0.005330386,-0.08428201,-0.03262359,0.016162623,0.016520558,-0.12933742,-0.0040474134,-0.033218198,-0.040016536,-0.016736683,-0.00454244,-0.003480918,-0.09223141,0.030567307,-0.042302705,0.040551923,0.049463436,-0.049977742,0.015751617,0.000109964276,-0.057869293,-0.014928278,0.074465744,-0.060419098,-0.055067766,0.04780492,-0.06890697,0.036664754,-0.044436254,0.012542464,-0.030448813,0.032016546,-0.006621126,-0.06325806,0.013623389,0.019527907,0.010674235,0.041929647,0.018346846,-0.008301498,0.056646373,0.10022449,0.066906415,0.039478116,-0.015755864,0.0020806964,0.019940486,-0.031050414,-0.046055134,0.031831235,0.02464874,-0.08201237,0.024794227,0.07239779,0.0061226776,0.012780961,0.005068576,0.05110581,0.015508215,-0.0038395866,-0.04653292,0.018284367,0.02698368,-0.06151438,-0.080590464,-0.0634825,-0.024058593,-0.02446421,0.012688941,0.0546071,-0.024955159,0.041465636,0.012330188,-0.13836992,-0.016763693,-0.10840038,-0.022718087,-0.04148434,-0.010889366,0.042105295,0.05026666,-0.059691656,0.13530406,0.07408925,0.057485007,0.057524282,-0.040852424,-0.04732744,0.01148109,0.010485897,0.025511404,0.055076513,0.009017605,0.0025410692,-0.020344596,-0.030422801,0.016606575,0.020246321,0.01110497,-0.007379829,0.014443803,0.05514069,-0.03781075,0.076236874,0.0031241823,-0.028809758,-0.046053085,0.04241318,-0.073497176,-0.0007292459,-1.2477715e-33,-0.05109952,0.0019335413,0.022982648,0.059327606,0.036951292,-0.02342488,-0.070333034,0.09506849,-0.033223193,-0.11900528,0.027499728,0.04785777,-0.053650714,0.0062839114,0.08984031,0.03406999,-0.015214476,-0.07893526,0.011441803,-0.013171339,-0.02517632,-0.00043447939,-0.043579478,0.017660089,-0.055021327,-0.0042958735,0.07253944,-0.06105074,-0.083489634,0.03346922,-0.033540923,0.069522336,0.06397245,0.04927413,0.017087376,-0.01385736,0.045481697,0.01686146,0.006721939,-0.10853582,-0.021828061,0.06826924,-0.04740004,-0.035920374,0.024973813,0.025558416,0.08349226,0.02653749,0.04648171,-0.016286094,0.020719128,-0.0122712,-0.007648795,-0.08103503,0.058237597,0.010682175,-0.09727855,0.017938334,0.038163465,0.025928471,0.009238018,-0.005084621,0.018587815,0.089594826,-0.010468948,-0.09488008,0.0740877,0.016521268,0.13272935,0.04129347,-0.025721775,0.0032461118,0.08480521,-0.019968087,-0.01415212,0.01746989,-0.06790104,0.05626245,-0.020259265,-0.027391294,0.038243245,0.023041045,0.024083748,-0.012955447,0.062176496,0.07944637,0.054516938,0.0045571807,0.072262466,0.09497636,-0.05460629,-0.025711307,0.0626977,-0.058648936,-0.09545514,5.424041e-34,-0.03427917,-0.023698691,0.03425439,0.04779728,0.027825424,0.013387006,0.06578799,0.058408543,-0.034705874,-0.05995703,-0.014924133,-0.058358762,0.116852775,-0.014021826,0.033862732,0.10145222,0.014868236,-0.026585251,-0.07740257,-0.013156171,-0.032467466,0.0054600867,0.024980983,0.04100103,-0.036362074,-0.01263288,-0.016406154,0.013479372,-0.10280134,-0.009119024,0.030058082,-0.013540763,0.00529049,-0.0029669737,-0.07816966,0.010105757,-0.028214592,0.018063657,0.06273287,-0.0033685225,0.03051412,0.06624285,-0.04455847,0.017151598,-0.03322296,0.0032814245,-0.0081637995,-0.059780292,0.037279975,-0.008604269,-0.07844731,-0.06647797,-0.05979748,-0.12190609,-4.891765e-05,-0.013640729,0.010028253,-0.08416153,-0.036457963,0.080656104,-0.025626114,0.058857,0.012891315,0.022767592,0.011587761,-0.015361381,0.016057169,-0.032293547,-0.044243652,0.046093788,0.19258036,-0.0352032,-0.06013272,-0.010373988,0.020901889,-0.045687735,-0.0930945,-0.012876043,-0.06354122,-0.0270941,-0.07579825,-0.050208516,-0.003032303,-0.0058982684,0.0019887998,-0.010194011,-0.010557138,0.003952529,0.020827418,-0.0022410427,0.05390799,0.044076424,-0.054118037,-0.0773156,-0.017912915,-1.5898838e-08,0.009188583,-0.028745731,0.0048454027,0.015151668,0.07012749,0.0060579516,-0.052984428,0.021184826,0.013974913,0.13780105,0.038862873,-0.08426858,-0.017167669,0.0074434746,0.03146698,0.032588936,0.07241775,0.06082234,-0.010531924,-0.019913372,-0.057774335,0.008772057,0.033846725,-0.099060506,0.0011437965,0.04640966,-0.075344324,0.07602851,-0.0037545224,0.013276069,-0.095528685,0.1116911,-0.041640785,-0.124018855,-0.05438381,-0.042402223,-0.0026116727,0.015395175,0.003787713,0.0033290433,0.07741571,0.123096295,0.027489454,0.015238289,-0.042142693,0.008432301,-0.046827465,-0.019911278,-0.011007366,-0.006388936,-0.005057989,-0.075225845,0.099513635,0.06008421,0.076191224,-0.05843724,0.012997913,0.03287028,-0.014518587,-0.0067989086,0.102364026,0.04863905,-0.01599958,-0.03986312} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.973942+00 2026-01-30 02:01:13.360961+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2400 google ChdDSUhNMG9nS0VJQ0FnSUNhcHF5eTZ3RRAB 1 t 2403 Go Karts Mar Menor unknown Zeer leuke karting zeer leuke karting 5 2026-01-30 01:52:39.833374+00 af v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Zeer leuke karting"} {-0.095075294,0.116159655,-0.039218567,-0.037896883,-0.07664712,0.033511393,0.0078267325,0.09466481,0.0008922096,-0.029459726,0.07550458,0.00080215075,-0.0051773544,0.04394905,0.022175394,-0.03021466,0.048346974,0.037450954,-0.06494986,-0.026794666,-0.052583158,-0.05177143,0.05685701,-0.043334834,-0.029342217,-0.01947002,0.06468541,0.025021078,0.07775214,-0.074979305,0.060785033,0.058298703,-0.09113361,-0.038575783,-0.0031168181,-0.040244564,-0.1004749,0.041004427,-0.005419177,-0.01661035,0.03169896,-0.057087306,-0.01971622,-0.13562287,0.049987987,0.0555834,-0.06757227,-0.03515113,-0.016010124,0.007683811,-0.05509719,-0.02838381,0.027224213,0.008601663,0.06732234,-0.09051524,-0.032695305,0.03143117,-0.023340298,0.0016832678,-0.019162022,0.0067454404,-0.045190442,0.025218815,-0.06729832,-0.10393397,-0.024024257,0.014318758,-0.05375808,0.07746458,-0.0115782125,-0.06528225,-0.046055134,-0.026888376,-0.043775924,-0.117780596,-0.017513312,0.026915211,-0.01825846,-0.013785923,0.017587865,-0.08432837,0.035362843,0.02309215,0.0007714112,0.028743688,0.09635408,-0.0020480228,0.06443939,0.028856477,0.004424599,0.018888371,-0.11352426,-0.017212324,-0.08424531,0.08110268,-0.03653984,0.01939338,0.02396649,0.08148406,0.06816235,0.008715515,0.04871812,-0.014359579,-0.1260297,0.019088507,0.0721153,-0.011594331,0.05378961,0.037255473,-0.012016517,-0.074038476,0.005820406,-0.093221866,-0.026569434,-0.04327943,0.036504902,0.023231054,0.019571377,-0.04631544,-0.00869702,-0.004383435,0.048522763,-0.0012538753,0.07642399,-0.016995605,0.06489536,7.129438e-34,-0.05909193,-0.057038598,-0.035277426,-0.011224582,-0.0424712,-0.015534807,-0.011846405,-0.006710946,-0.07254484,-0.016353257,0.013883799,-0.046064403,-0.093727686,-0.09431185,0.060422756,0.016824715,-0.032815717,-0.04737895,-0.03601088,-0.01994084,0.11272404,-0.010658412,-0.011644649,0.0069888197,-0.007365614,0.029129438,0.09630841,-0.054261416,-0.039785963,0.03243647,0.09778062,0.017865948,-0.047202837,0.0014617658,-0.016494047,0.046641067,-0.08325341,0.024554744,-0.043728784,-0.0049044252,0.014538144,-0.10833561,-0.083416745,0.033799674,-0.010440602,0.07041882,0.062278397,0.0043573896,-0.00022298678,-0.016127331,-0.10064759,0.011852312,-0.034676198,0.05726479,-0.04216232,0.051834855,0.014060318,-0.01677176,-0.029856818,-0.012649709,-0.00080691924,0.05513773,-0.09627652,0.017975539,-0.020332558,-0.11475731,0.011525599,-0.051639352,-0.016319817,-0.04692102,0.018434413,-0.04177309,0.11246453,-0.013365196,0.056102768,-0.0034977165,-0.06151706,0.03321332,-0.043013334,0.04106264,-0.07399479,-0.007659491,0.007366596,0.001452209,0.08084514,-0.022364795,-0.018722959,-0.095016964,0.077445656,0.021029593,-0.00580145,-0.035939295,0.02297819,0.016802292,0.03919664,-1.6898422e-33,0.04491385,0.023498995,0.07793572,0.12378802,0.10297712,0.0013034332,0.04795422,0.025729442,0.0038506307,0.009114966,-0.020561809,-0.018777182,0.022216037,0.034684785,0.06785449,0.032046225,0.06827962,0.076263435,0.0014850416,0.023385258,0.008665075,0.05030664,-0.01298933,0.04376952,-0.010928463,0.06425403,0.18269205,0.021804402,-0.073016696,0.08998696,-0.017217832,-0.020105306,0.0069447276,-0.00517632,-0.07767289,-0.009876448,0.010724712,0.038798746,-0.07114511,0.009929207,0.041171048,0.0084538795,-0.051161475,0.09800646,0.060100883,-0.1008965,-0.027122937,0.04189093,0.05257824,-0.030776093,0.041317053,0.022446316,0.010191854,-0.047165547,0.05645989,0.0008032828,0.014508398,-0.025698347,-0.056784473,0.0015419703,0.036737192,0.07655274,0.021156069,0.07161997,-0.015105186,-0.021602212,0.053069506,-0.050271254,0.021703823,-0.068055585,-0.035745233,0.008138947,0.00607916,0.0081419675,0.022285106,0.03347748,-0.02017528,0.05514738,0.012961247,-0.018884275,-0.07018008,-0.034634154,-0.028754503,0.01138981,0.020077378,-0.013275774,-0.045047462,-0.07150784,0.017755486,-0.067811616,0.041828025,0.09684818,0.045987673,0.09481235,-0.07005818,-1.4878051e-08,-0.04105729,-0.047893807,-0.07051847,-0.0378404,0.04076347,-0.04791604,-0.003761726,-0.025361437,-0.04680918,0.09236336,0.06635771,0.07665415,-0.0076701986,0.07844662,0.06440062,0.028077805,0.074618734,0.0667063,-0.024174945,-0.027760135,0.07290048,-0.02928241,0.050481208,-0.04469514,-0.036956616,0.04344007,-0.035248194,0.030128302,0.060245525,-0.10010921,0.028246578,0.0892952,0.096648574,0.00029283046,0.0067611327,0.016971212,-0.0029406426,0.011604265,-0.0027848077,0.042112567,-0.013929938,-0.002865324,0.116306625,-0.005528359,-0.055217914,0.016473202,-0.0064446414,-0.08232383,0.0052271024,-0.033730175,-0.067254476,-0.02775504,0.0038418218,0.009529569,0.093853675,0.05601151,-0.029706059,-0.02930969,-0.047024723,-0.024386471,0.029731508,-0.015312318,-0.031374544,0.008276978} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.083136+00 2026-01-30 02:01:13.41607+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2414 google ChZDSUhNMG9nS0VJQ0FnSURLa3VxS1JnEAE 1 t 2417 Go Karts Mar Menor unknown Es un sitio espectácular es un sitio espectácular 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Es un sitio espectácular"} {-0.04229212,-0.037352737,0.0014042677,-0.054041006,-0.08498418,0.011286025,0.06305367,0.08910697,0.046956524,0.024771148,0.02091887,-0.05989938,-0.063261814,0.02853972,0.023864083,-0.08271926,-0.04750664,0.045500442,0.03958077,0.07151543,0.16362463,0.03628076,-0.031337935,0.08552643,0.0010877732,0.021987882,0.0675545,0.029712342,0.016562179,-0.1471492,0.0027982907,0.03717426,0.035263043,-0.051007137,0.043090172,0.0034522724,-0.00091382046,-0.15013388,-0.0052533667,-0.02325417,-0.10685376,0.002338006,0.010034786,-0.050043385,0.026933206,-0.027184984,0.011810885,0.023381064,0.004011664,-0.015577668,-0.06328215,-0.095604755,-0.0484894,0.043754928,-0.044482514,-0.009548279,0.0010241594,0.017694326,0.07339955,-0.04617737,0.12594862,-0.025648948,-0.0059466055,0.06772057,-0.0713437,0.017335605,0.053247966,-0.10393747,0.009620738,0.13858105,-0.03372945,0.009318854,0.116747625,-0.050171744,-0.0036321878,-0.009362709,-0.010568257,-0.049403235,0.084904745,0.009294259,0.061523393,0.0025875422,-0.031558335,-0.03852694,-0.008490794,0.015201746,-0.016323633,0.01444161,-0.040530376,-0.057881627,-0.02357089,0.010179115,-0.120973,-0.071006455,-0.052268103,-0.020857409,-0.015631024,-0.03552195,0.06066898,0.04928362,0.07301139,0.040571738,0.07946498,0.10762944,-0.05478848,-0.004353183,0.040549852,-0.11413637,-0.042394828,0.05958804,-0.080433175,-0.023914134,-0.013386459,0.010077413,-0.105685584,0.030134074,-0.0006420485,-0.08475808,0.008501557,0.00028984883,0.04591833,-0.047209855,-0.01292866,0.014456644,0.014426776,-0.060912933,0.00036499748,9.53546e-34,0.025697099,-0.0040505603,0.045752138,-0.09435145,0.050487686,0.024296165,-0.08015174,-0.0041743056,-0.042727407,0.0002249465,-0.1449954,0.028600883,0.09025667,0.114427775,0.025309645,-0.00070774235,0.01861044,0.052727863,0.03030834,-0.051311843,-0.070873655,0.06592753,0.010808361,0.028929474,-0.027424794,0.059519723,-0.067555934,-0.021025306,-0.074873224,0.059571274,0.021950886,0.006260948,-0.025637029,0.05727702,0.026331944,-0.030428592,-0.01038994,0.025956836,0.06114343,-0.0030873031,0.05027013,0.068012364,-0.032820385,-0.027292335,0.007935996,-0.057443436,0.00051208714,0.04681554,0.017644836,-0.030696139,-0.030111857,-0.056290258,-0.029779894,-0.082939304,0.102017105,-0.023776779,-0.07627806,0.10932197,-0.058963574,0.024967235,0.08108993,0.060131937,0.04551434,0.014227767,-0.03251856,0.011060298,-0.023404857,-0.007268385,0.051330063,-0.024310388,-0.07311374,-0.0042129415,0.012586576,0.048002984,-0.01732132,0.052029412,-0.03070902,-0.019007456,-0.039412986,0.044844054,-0.078595385,-0.044740207,-0.027567279,-0.031750042,-0.052514262,0.030306827,-0.015947897,0.03794901,0.018164832,0.08077596,-0.04882016,-0.029741922,0.0059551066,-0.08295588,-0.0067681973,-2.8048195e-33,0.01622662,0.010801756,-0.0053881174,0.04049964,-0.059504617,0.011229894,0.023914551,0.012396202,-0.0035563568,-0.051041164,0.029670488,-0.018137386,0.12560764,-0.06383415,0.018207198,0.080208614,-0.024989296,-0.058757026,-0.03806199,-0.013630244,0.064465016,-0.0043339795,0.011623212,-0.025573408,-0.018397713,0.023543319,0.021950986,-0.016794767,-0.099608935,0.06318284,-0.021040358,-0.067482576,-0.053452615,0.024204133,-0.054219976,0.033155605,0.053932898,0.01587761,-0.05534183,-0.02066514,0.039673135,0.08935113,0.07818916,-0.016219528,0.04960416,-0.05483279,-0.018208181,-0.0056884363,-0.09630144,-0.064760946,-0.110487595,-0.011118726,0.025782559,-0.040046383,0.01615378,0.009400974,-0.049442295,-0.06040339,-0.06602542,0.014358802,0.04655557,0.030843627,-0.0772843,-0.030420983,0.13117923,0.01272643,-0.06196869,-0.035030354,0.0819466,0.064449236,0.09946918,0.025948893,-0.095589824,0.047602866,-0.03748795,0.046959452,-0.03897085,-0.0039799195,0.0028889289,0.006494224,0.0141235255,0.013233632,0.032465138,-0.005295702,0.055651877,-0.009372954,-0.06404107,-0.055004176,0.04454021,0.028782787,0.019470077,-0.010302172,-0.03514425,0.04079165,0.0825513,-1.797477e-08,0.04506081,-0.056082543,0.028604927,-0.043920487,0.0010489521,-0.020867819,0.012735666,-0.04275093,0.015106417,-0.0072268914,-0.025743892,0.011245335,0.050251454,0.03664683,0.019424403,0.09155015,0.047635287,0.09305815,-0.03377741,-0.016496133,0.055224262,-0.04591461,-0.0067120497,-0.023134692,0.03180831,0.013944607,0.018891335,-0.00053972716,-0.020373674,-0.026460607,-0.039169386,0.06172093,0.0150882825,-0.06344846,-0.0548186,-0.048617024,-0.039072666,0.0616716,-0.10781352,0.030290384,0.025437104,0.08559579,-0.025557842,-0.03587791,0.05170915,0.043368075,0.028792009,0.04313409,-0.034994528,-0.0058423993,-0.044155426,0.009726773,0.00044252764,0.041048847,-0.026086282,0.033040904,0.0657362,-0.0027422702,0.022035373,0.037189674,0.025924515,0.03955752,0.039909568,-0.06569018} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.919563+00 2026-01-30 02:01:13.497065+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2422 google ChZDSUhNMG9nS0VJQ0FnSUNnLTRfVkJ3EAE 1 t 2425 Go Karts Mar Menor unknown Encantada.. encantada.. 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Encantada.."} {0.009767197,0.122871,-0.0700765,-0.01102045,-0.07963087,-0.057664167,0.048058752,0.02572336,0.0133289555,0.042129878,0.043879546,-0.081181206,0.013173305,-0.0011908264,-0.008802958,0.0061163898,0.004525862,-0.003513192,0.06445033,0.014212453,0.039654467,0.0139663825,-0.025324322,0.08535344,-0.0423521,0.02131611,0.010139198,-0.02292851,-0.081758216,-0.109272525,-0.0029589653,0.03504695,-0.019901907,-0.00932254,-0.0267287,0.05373106,-0.040914387,0.004836921,-0.020274015,0.048441816,-0.1173386,0.027508443,-0.08171417,-0.018388009,0.016252853,-0.10899587,-0.018679574,0.046499383,0.019329851,0.022101536,-0.0043387027,-0.019744685,-0.062094968,0.020046212,0.068666995,-0.05943921,0.019368095,-0.009101391,0.022242343,0.07435067,0.11624918,-0.006166303,-0.10517039,0.05885706,-0.0016984616,-0.06007564,0.022729184,-0.0008240879,-0.10899526,0.04898274,0.09774509,-0.05442366,-0.0077614696,0.07430615,-0.04997435,-0.029703155,0.018742746,0.03822228,-0.04523026,0.0096157985,0.06752462,-0.01747897,-0.05684808,0.0037875131,0.03912879,0.04843062,0.040319405,0.0007533539,0.05957909,0.004743263,0.013100587,0.029638441,-0.057032757,-0.03119732,-0.0048439945,-6.452937e-05,-0.01994369,-0.033833306,0.008855403,0.09527348,0.046229076,-0.04287783,-0.04919042,-0.01375373,-0.084330656,0.017034966,0.06805313,-0.039354935,0.007921017,0.05682878,-0.09109848,-0.09931973,0.019206371,0.006984018,-0.068546735,0.10668671,0.022876518,-0.04180392,0.05012954,-0.029972337,0.025241043,0.051721726,0.0042031677,0.042558856,0.03580044,-0.018675368,0.015921645,-4.37764e-33,0.0015033562,-0.09359794,0.055209465,0.08156895,-0.0010232239,0.009324985,0.0030306084,-0.051446557,-0.08339796,-0.06754531,-0.03433158,0.042678885,-0.008958553,-0.0064770053,0.08235409,0.099959865,0.002610847,0.04455553,-0.018269382,0.012474182,-0.09071242,0.040721092,-0.0075399843,0.046107046,-0.027671069,-0.022457961,0.022799369,-0.07044358,-0.0006351393,0.012524445,0.032249026,0.009658374,-0.038304262,0.0046586692,0.056931976,-0.008324033,0.091010675,0.0036072736,-0.022601197,-0.010594022,0.0058257044,0.043164104,0.011964891,-0.016705804,-0.040002313,0.041949037,0.0491384,0.049036063,0.026494855,-0.028723905,0.018897442,0.018950274,-0.0415363,-0.028417978,-0.047794156,0.07248381,0.006246178,0.022675581,0.055267747,0.0021135623,-0.00784171,-0.02520875,0.03829745,-0.10430537,-0.027588358,-0.09518821,-0.032549646,0.07513775,0.07527301,-0.028700294,-0.061047073,-0.020049512,0.039632,0.119857475,-0.016056756,0.02846291,-0.029981863,0.0787393,-0.079701446,0.0791979,-0.034053206,-0.01984518,0.046512015,-0.0023525779,0.109570965,0.07774646,0.022675313,-0.0698782,-0.022009552,0.1169794,-0.04535623,0.08817184,0.037772458,-0.008670712,0.029708773,2.2311133e-33,0.03370944,-0.055370696,0.014819168,0.02176787,0.03613823,0.030198358,-0.08303031,0.066804565,-0.032034487,0.025338596,0.034500573,-0.07779134,0.14718664,-0.0032578737,0.015835175,0.048048027,0.025097538,-0.0055025327,-0.072586305,-0.078101054,-0.06332233,0.02146844,0.007029854,-0.006631515,-0.006225633,-0.013370946,0.02107163,0.039171744,-0.14931889,-0.06070286,-0.03159284,-0.09304544,-0.03226755,0.11870834,-0.07845382,0.10103146,0.037453327,-0.027413083,-0.0037564416,0.046936326,-0.022979414,0.057312593,-0.0050526145,0.065211855,-0.01198752,-0.041908886,-0.0048959157,0.0139531065,-0.056837007,-0.03246807,0.10516646,-0.00019476344,-0.01807852,-0.025404442,0.11675134,-0.026054608,-0.064599186,0.00977678,-0.0037707593,0.029032798,0.10525786,0.059976898,-0.08539164,-0.03558176,0.030437814,0.013561588,-0.07813748,-0.026582496,-0.017715456,0.041755304,0.076243654,-0.07101243,-0.09924905,0.011788758,-0.02789032,-0.0027025295,-0.06607881,0.010841182,-0.028605118,-0.0753696,-0.038839906,-0.012684445,0.0030393146,0.033643,0.061299067,0.012336712,0.04216469,-0.07279906,-0.018934423,0.043074995,-0.017277936,0.08545993,-0.043271735,0.06201729,0.02219435,-1.4398978e-08,0.016155547,-0.058127087,-0.11225367,0.0149107985,0.009182599,-0.044124592,0.044075817,0.024062628,-0.014994215,0.0072943633,-0.0009974618,-0.009972486,0.015454012,0.09245317,-0.0025832956,-0.00022758167,0.11661862,0.10947396,-0.031064097,-0.009399999,0.011813099,0.03028591,-0.05589874,-0.05264449,-0.07593071,0.007483343,-0.0025045073,0.051672414,0.060409214,-0.04309638,-0.056446243,-0.004818921,-0.048932172,-0.07970468,-0.010318263,0.035917148,-0.06897856,0.015706813,0.00073775405,-0.015388244,0.052809328,0.0580409,0.03998009,-0.051983092,-0.081114575,-0.0688859,0.032532003,0.037489075,-0.020171018,-0.050022446,-0.09951606,0.03694898,0.07775053,0.014411746,0.041842967,-0.014274586,-0.00048377243,0.029086377,-0.038774196,-0.013854767,0.056567002,0.011043726,0.01854471,0.008544407} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.020125+00 2026-01-30 02:01:13.560579+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2407 google ChdDSUhNMG9nS0VJQ0FnSURVNjVhVDVnRRAB 1 t 2410 Go Karts Mar Menor unknown Buena experiencia 🙉 buena experiencia 🙉 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Buena experiencia 🙉"} {-0.014433989,0.04751866,0.09470326,-0.02813624,-0.04899721,-0.0017548547,0.1513262,0.0066666473,0.04128505,-0.0033702112,0.13149387,-0.036839,0.02141397,-0.0301327,-0.021091646,0.009215605,0.016860284,-0.0020823898,-0.0049588084,0.007664426,0.010476597,-0.03204402,-0.03473008,0.058693923,-0.033887036,0.0059657525,-0.03331806,-0.011341664,0.03181338,-0.05890847,-0.010145639,0.04914082,0.10492031,-0.023168592,-0.00069213967,0.012383961,0.0301911,-0.016864873,-0.008083601,0.027967224,-0.1209687,-0.05000633,0.015686445,-0.068145916,0.025796104,-0.08947854,0.025805565,0.051743243,0.0391922,-0.040960964,-0.04954467,0.040956724,-0.023510482,0.03484109,0.073251896,0.06943072,-0.006914814,-0.05458044,-0.033997055,0.015953112,-0.0070762984,0.08251233,-0.019788712,-0.0414686,0.02315665,-0.015954567,0.019771626,0.04612682,-0.048622854,1.6231932e-05,0.040194727,-0.04833464,0.008811466,0.027543863,-0.040129963,0.011865949,-0.015762825,-0.003908896,-0.0054525193,-0.0074256803,0.0098899435,-0.0016320191,-0.040075526,0.025595805,-0.020957284,-0.005223334,-0.013832008,-0.0388707,0.0558272,0.05035011,-0.078214645,0.044421252,-0.09166881,0.01589334,-0.06120708,-0.036568705,0.0017525671,-0.09183721,-0.08717981,0.13768823,0.04052971,0.11005315,0.09819241,0.042822886,-0.06309043,0.038953513,0.023323998,0.024376497,0.052520443,-0.017938418,-0.03516645,-0.086093865,-0.07244239,-0.05958572,-0.02191301,0.054292485,-0.024331493,-0.0008992445,-0.03322308,-0.09517881,0.037663084,0.07109678,-0.063114606,-0.008011525,-0.0034253865,-0.09722871,0.06335218,3.3261471e-34,-0.028398376,0.0043994356,0.07466628,0.08367099,0.016978228,0.07760784,-0.01620469,0.0422597,-0.047470476,-0.05442684,0.02010898,0.061079103,-0.011267235,-0.0011985396,0.0362131,0.11948508,-0.09678429,0.02063886,0.016921874,0.034479816,-0.036891278,-0.081359155,-0.044762038,0.026399245,-0.04404415,-0.03391326,-0.00025667067,-0.022488551,0.038758315,0.057564564,0.020126568,0.07572726,0.0064370735,-0.045680225,0.026500566,0.012516214,0.052518964,-0.01659883,0.029508453,0.013399502,0.016926097,0.016318042,-0.018621756,-0.042348396,-0.0129513955,0.023659687,0.07097369,-0.013521333,0.045735437,-0.006255848,-0.017565554,-0.05379063,-0.060375392,0.10302796,0.009918361,0.021410985,-0.06269187,0.09547908,-0.028788755,-0.09307262,0.08894524,-0.040187422,0.022423156,-0.091545545,-0.113389835,-0.045451246,0.049520195,0.030768558,0.11449312,-0.012072864,-0.11714262,0.052988164,0.0070182467,-0.012607795,0.024011169,-0.005679103,-0.07766502,-0.019157587,0.11267595,0.045399092,-0.08328006,-0.004596831,0.029905522,0.043265775,0.097089864,0.102206394,0.028944295,0.006123862,-0.029569836,0.14581144,-0.101378255,0.016792815,0.08587156,0.0207526,-0.0064560706,-1.7561006e-33,0.03442933,0.0031806412,0.011888072,-0.021405622,0.024098447,-0.035255924,-0.035232995,0.07744224,-0.09261771,-0.035819914,-0.0050918553,-0.09143636,0.1312025,0.062278982,-0.013299627,0.04963521,0.07208844,-0.014900433,-0.06137715,-0.019077698,0.010350005,-0.0070571294,0.059225112,0.030412605,-0.028757319,-0.021640282,0.008527704,0.012235562,-0.05995211,-0.08473532,0.009512092,0.010673409,-0.09031229,0.024827953,-0.039699454,0.048712306,0.017911451,-0.019445546,-0.07000635,0.075164385,0.024695452,0.028937722,-0.00040478059,0.041832276,-0.015569645,0.031506542,-0.008602349,-0.13258456,-0.004945855,-0.0026276482,0.058858246,-0.036455877,-0.052371867,-0.01828738,-0.036870115,-0.02955376,0.011642158,4.2515207e-05,-0.085299134,0.010446154,-0.021355527,0.04314954,-0.061005577,0.06724515,0.03179515,-0.07455534,0.030494578,0.08322702,-0.010270597,-0.019229671,0.06113046,0.0021297038,-0.048601836,0.04364443,-0.04847635,-0.039511625,-0.010547355,-0.09741151,0.015681796,-0.03499566,-0.05765327,-0.008879658,0.012029602,-0.05258011,-0.10407866,-0.009933226,-0.010436723,0.04602726,-0.0040694787,0.05918396,-0.038797017,0.037734088,-0.054773606,-0.11460422,-0.008254315,-1.8284192e-08,-0.011521538,0.009996777,0.026359472,-0.0259487,0.00043600274,-0.07073151,-0.07450139,0.09561294,0.018578427,-0.015795497,0.0009382981,0.037562273,-0.06031014,0.059173897,-0.0063605807,-0.021124931,0.10972913,0.11151456,-0.028589629,-0.09302406,0.035403363,0.0116385585,-0.08707241,0.019730385,-0.02026226,-0.018828537,-0.07118878,0.009295593,-0.055446558,-0.00326554,0.0020224298,0.063286915,-0.026044583,-0.070134036,-0.04526053,-0.03928757,-0.03447252,-0.04112582,0.005806706,-0.022172673,0.053359028,-0.02474573,-0.01087644,-0.020175666,0.012644909,-0.04719891,0.08757513,0.010336493,-0.025099516,0.0020611247,0.0084120305,-0.007703482,0.07303008,0.020610347,0.015079537,-0.025119344,0.026784588,0.075892664,0.02319935,-0.03664603,0.051895753,0.06372031,0.002938827,-0.049675398} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.809934+00 2026-01-30 02:01:13.467444+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2429 google ChdDSUhNMG9nS0VJQ0FnSUNhOTliTm9nRRAB 1 t 2432 Go Karts Mar Menor unknown Aangenaam. aangenaam. 4 2022-01-31 01:52:39.833374+00 nl v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Aangenaam."} {-0.06271216,0.037100438,-0.039159123,0.026610674,-0.12390903,0.031782802,0.12240379,0.0309972,-0.018424375,0.057819095,0.11235361,-0.06424285,0.005267119,-0.08353999,-0.0008026506,0.05407035,0.0331401,0.042493947,-0.033305697,-0.048347734,-0.031925485,0.03180993,0.108406946,-0.021300608,0.006564724,-0.021924485,0.007841126,0.09730912,0.14348862,-0.04526768,0.04295227,0.042357616,-0.05142433,-0.021725312,-0.028252462,-0.051776696,-0.07324306,-0.0504559,0.014702806,0.0031122987,-0.030982988,0.08137667,-0.040677592,-0.021229943,-0.018428788,-0.020597942,0.005532348,0.018580448,0.0044901976,0.05427549,0.00033106792,-0.019037087,-0.06654079,0.02553069,0.05926502,-0.003895166,0.033509575,-0.0087239025,-0.028245071,0.015898176,0.0021298237,0.018289164,-0.10047426,0.08394237,-0.10262305,-0.007511007,0.08905729,0.0017578383,-0.027171126,0.09909831,0.039728355,-0.09804937,0.015302392,-1.9499805e-05,-0.00421891,-0.025329147,0.045615267,-0.009639758,-0.023967396,0.050070856,0.001672887,-0.07609586,-0.0132607585,0.047969304,0.017799411,0.03892778,0.050202888,-0.053956326,0.011054921,0.022751793,-0.0865279,-0.023677401,0.0039357943,-0.04652884,-0.06321525,0.029977055,0.023712683,0.070818886,-0.030385805,0.07273307,-0.031349596,0.025802301,-0.01241846,0.057243884,0.0022255299,-0.023532517,-0.066061266,-0.029521074,0.049072366,0.044531427,-0.029151635,-0.10262343,-0.09290766,0.011280157,0.047767777,0.037680943,-0.01758322,-0.08152187,-0.011765789,0.0030825995,-0.023567984,-0.01771348,0.01995423,0.04386406,0.011883984,-0.080605194,0.023105057,-2.919838e-33,-0.00087023084,-0.03153661,-0.006702622,-0.015450296,0.06588189,-0.03981003,-0.046772003,0.0047824024,0.0072704786,-0.010517329,-0.025714392,-0.013002373,-0.052923985,-0.044782728,0.078391396,0.004864048,-0.039690256,-0.021043263,0.0050934865,0.0045997314,-0.08795047,0.007729709,0.01421808,0.03931437,-0.053036444,-0.05044021,0.093403555,0.03827458,0.008105818,0.012946652,-0.0115074385,0.009178556,-0.07145443,-0.07433299,-0.0182023,-0.013410624,0.05127196,0.019314196,-0.014704135,-0.01589274,0.00039758903,-0.018808937,-0.04124143,0.036431883,0.04317063,0.07838174,-0.018012192,0.0017417361,0.007611146,0.05079121,-0.031207738,0.025011381,0.033095993,0.10783542,0.033760823,0.06991217,0.013411135,-0.042172514,0.06648778,-0.04068257,-0.043843,-0.07764811,0.024128262,-0.013603744,-0.10464243,-0.026168196,0.009613652,0.028308913,0.0049700676,-0.040188495,0.0055717677,-0.050057948,0.052322906,0.05577087,-0.040430803,0.0028637985,-0.029660057,0.07210339,-0.04988456,-0.005542734,-0.0057467045,0.03736215,0.037886757,-0.052775104,0.043791924,0.0046702,-0.0013816915,-0.11682089,0.022193918,-0.007899141,-0.05395463,0.021465102,0.08652256,-0.002864318,-0.075053304,2.0592389e-33,0.03691205,0.0047327415,-0.09943841,0.028051326,0.041290708,-0.011933103,-0.013641126,0.20310757,-0.12525882,0.021322174,0.013364072,0.07543973,0.06671144,0.039805524,-0.043427043,0.04455211,0.13631086,0.02219971,0.015596334,-0.01617788,0.00470663,0.013815085,0.0036068032,0.060107842,-0.056582317,0.062142607,0.07110081,-0.030241545,-0.07587385,-0.015193411,0.070543274,-0.028629664,-0.044291377,0.0068994635,-0.08016799,0.075892724,0.08578913,0.018140128,-0.13713753,0.019867117,0.020295667,0.03637314,-0.10559031,0.078694575,0.018727943,0.031774677,-0.0050390842,-0.019806046,-0.07511024,-0.00021920595,0.0035800396,-0.010300589,0.057550803,-0.05881367,0.038464345,0.0441034,0.020359166,-0.068169884,-0.044804588,0.008151628,0.06359293,0.06817775,0.029642764,-0.03026553,0.027515562,0.013004768,0.009248863,-0.00014771808,-0.02644984,-0.007844024,0.12937406,0.0053488067,-0.112576604,0.00559237,-0.027448215,-0.0011271309,0.013118675,0.006352976,-0.04313005,-0.10410987,-0.09546245,-0.03978948,0.028707147,0.04033155,-0.026039043,-0.019693658,0.058945112,0.048504584,0.010708284,0.0014815617,0.058452155,-0.013901424,0.016244955,0.04228534,0.010836961,-1.786359e-08,-0.0083204415,0.025171096,0.012513236,0.0066131293,0.08622607,-0.053951625,-0.10573756,0.030748595,-0.01706983,0.035159007,-0.008341671,0.044193845,-0.1065087,0.17012239,-0.011208709,0.030135566,-0.008539995,-0.030225161,-0.054184943,-0.09882067,-0.067071885,0.05574862,-0.013549152,-0.081414826,0.017046977,0.048690327,-0.070318826,0.055080872,0.009299395,0.045254327,-0.051135097,0.08963911,-0.018217253,0.013841232,0.009396358,-0.04518908,0.025189513,0.018549565,-0.0318891,0.015292231,-0.019672768,0.044454753,0.08153342,0.013165233,-0.03312414,-0.009547691,0.07865294,-0.06302775,0.05119313,-0.062317632,0.005772824,0.06652611,-0.02736345,0.055684693,0.0022143635,-0.008954329,-0.024565784,-0.041169737,-0.0136035085,-0.042716354,0.119177654,-0.017313018,-0.045399435,0.024064304} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.124051+00 2026-01-30 02:01:13.610793+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1316 google ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB 1 t 1319 Go Karts Mar Menor unknown Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace and free entry you just pay to race fantastic track with supermoto and mini motorbikes as well plus a bar and roof terrace and free entry you just pay to race 5 2021-01-31 01:52:39.833374+00 en v5.1 O2.02 {O3.02} V+ I3 CR-N {} {"O2.02": "Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace", "V1.01": "free entry you just pay to race"} {-0.018101545,0.044064183,0.03114869,-0.0013968964,-0.02787709,0.07357881,-0.028410986,-0.034322772,-0.055370487,-0.009193196,-0.015260721,-0.01645804,0.012072237,-0.0049206275,-0.014153045,-0.036583543,0.11808377,-0.009947553,0.06129081,-0.0057533695,-0.060875356,-0.07201041,-0.019994693,0.06520784,-0.07257345,0.039836094,-0.07096361,0.07482704,-0.02594597,-0.0036841042,-0.026538676,0.055734433,0.026090635,-0.032411933,-0.01481425,-0.0419017,0.017440874,-0.051958207,-0.09499308,-0.037461024,-0.029080115,-0.019531803,0.03249621,0.036870588,0.082558945,0.05895881,0.023458894,-0.05477269,0.08406166,0.01888591,0.055693746,-0.04138951,0.04974762,-0.048862275,-0.07393962,0.034243833,-0.0824983,-0.035976704,0.01371691,-0.047875233,0.019990321,-0.079065405,-0.07435631,-0.0338204,0.017393637,-0.077284135,-0.13290885,0.10469403,0.035456885,0.019539041,0.012153186,0.024563812,0.028827064,-0.027653659,0.018678855,0.04351082,-0.012680056,-0.056686044,-0.11489005,-0.026611285,0.004184583,-0.09703868,-0.027877524,-0.042560797,0.062876284,-0.055101197,0.09028795,-0.0017027593,0.05533317,-0.0049286345,-0.01343831,0.03309567,-0.027234089,-0.03989995,-0.015203383,0.036930863,-0.010519512,-0.0074146306,0.010018754,0.0289583,0.10179471,0.020687267,0.03524926,0.026025094,-0.0038255174,0.014254681,0.024732308,0.135918,0.056083016,-0.035742335,0.05596028,-0.05550944,0.035988685,0.0068806647,-0.043322675,0.039189488,0.0023309996,0.05498071,0.05153327,0.029056666,-0.04607256,0.0031645207,0.04450873,0.046559475,0.0112770405,-0.026830785,0.026333936,6.8303626e-35,-0.05426499,0.01917291,-0.0075851604,-0.055976156,0.08317826,-0.0042952322,-0.08375766,-0.071292676,-0.08319971,0.0641895,-0.02706245,-0.0029057178,-0.017032824,-0.022632021,0.06925593,-0.067497335,-0.08372644,-0.043953266,-0.03378557,-0.010787489,-0.02326216,0.022001669,0.0011171498,-0.0010714818,0.047589146,-0.016743975,0.042163994,-0.048755668,0.03686726,0.04505824,-0.109294556,-0.027798897,-0.037434947,0.029774157,0.011849042,0.032162532,-0.058662377,-0.061902773,-0.02415031,0.015340786,0.0036640777,-0.09204076,-0.06961182,-0.028789306,-0.06611817,0.05966953,0.072934784,0.095799156,0.064004086,0.016170394,-0.07969397,-0.018498018,-0.0835468,-0.03774167,-0.053640198,0.0075472984,0.027918944,0.008337892,0.009250444,-0.009199127,-0.017286997,0.016455013,-0.011810576,-0.052963722,-0.062482987,0.016774759,0.042796742,-0.025525477,-0.005275884,0.039626036,-0.044079013,-0.024961218,0.0944203,0.04878636,0.094010375,0.048005067,-0.023064682,-0.05167386,-0.06436291,0.06783545,-0.044220477,0.006620287,-0.014570011,0.042756442,0.13100672,0.04954845,0.043236863,-0.07335543,-0.021922188,-0.09233117,-0.050018854,-0.035404623,-0.018692512,0.023670755,0.03851661,-1.9772184e-33,0.050242733,-0.005004332,0.13726851,-0.012789366,0.06887897,0.04164118,-0.0221277,0.0065771146,0.016040292,0.08120303,-0.07321782,0.052317295,0.042353842,0.057189953,-0.05783613,-0.05808334,0.061742272,-0.044609424,0.008595713,-0.03972634,0.040820524,0.023234222,-0.026070317,0.003227585,0.011106783,0.014845956,-0.023370547,0.08099871,-0.0021603496,0.03805204,-0.103298664,0.051875267,-0.008238593,-0.11503108,-0.02846418,0.06835233,0.054067172,0.034089837,-0.05839444,0.01791248,-0.03260469,-0.040555224,0.04772549,0.076308705,0.054195464,0.00554151,-0.031115705,0.071884826,-0.0681083,-0.0034899896,0.03319068,-0.005896612,-0.04915898,-0.013771094,-0.022919739,-0.026287666,0.069141835,-0.007125356,-0.063312404,-0.03572144,-0.037711006,-0.010641662,-0.09016286,0.05358874,0.034163997,-0.07141829,0.024009362,-0.06963905,-0.077301584,0.026171813,-0.13032147,0.014634337,-0.05868845,-0.01592464,-0.05637945,-0.0065587773,0.06666105,0.06298859,0.07163604,0.010225532,0.035239626,0.0057287845,0.087890886,0.004797898,0.062443424,0.062023677,-0.08522667,0.018701417,-0.009283844,0.061745234,0.07076295,0.11452855,0.00047424407,0.06649291,-0.10304927,-2.3274733e-08,0.022158815,0.077913746,-0.014989412,-0.057834003,0.030838598,-0.022946162,0.03775364,0.02856791,-0.049726117,0.070722975,0.04327814,-0.022002708,-0.056049474,0.067823395,-0.065168925,7.702521e-05,-6.496107e-05,0.08273988,-0.031715367,-0.008334934,-0.020272592,0.04547922,0.004916071,0.02633681,-0.004767161,-0.059078954,0.055135183,0.0026543995,0.09744911,-0.10147556,-0.015124608,0.024543878,0.045434326,-0.003556544,-0.026406575,-0.05570813,-0.08263549,0.07842526,0.009103093,-0.061389897,0.011686676,-0.014900848,-0.0786014,-0.016307712,-0.016124697,0.017407969,-0.038180202,-0.07075568,-0.03635629,-0.035476893,-0.046125878,-0.037155885,-0.023740971,0.051018123,0.09815439,0.12268918,-0.053567342,-0.04213756,0.019931512,0.013025045,0.055530738,-0.043800052,-0.06392033,0.0013845889} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:50.064638+00 2026-01-30 02:01:08.950662+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1546 google ChdDSUhNMG9nS0VJQ0FnSUNBcE9pWGpBRRAB 1 t 1549 Go Karts Mar Menor unknown Fantastic morning all of us really enjoyed it. fantastic morning all of us really enjoyed it. 5 2018-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Fantastic morning all of us really enjoyed it."} {0.015860906,0.10166403,0.06569291,0.011810169,0.024999442,0.018306004,-0.013985077,0.0076995892,-0.015085596,-0.06284584,-0.1158456,0.10819948,0.026379518,-0.0044196406,-0.04381173,0.06561232,0.0788115,-0.07974983,0.035724394,0.03673897,-0.008133603,0.021928085,0.117337175,0.04002755,0.005265605,0.043577917,0.073852345,0.026813677,0.012985573,-0.0853513,-0.021748697,0.06244683,0.011856861,-0.033716872,0.011423615,0.029469112,0.066043824,-0.1111277,-0.0036645934,0.029961634,-0.0093640955,0.026425013,0.059419964,0.07730157,0.01191477,0.069941916,-0.041404903,-0.000453793,0.12437236,0.053450905,-0.015535991,0.0058835256,0.027065437,-0.0015912415,-0.027546423,0.09489026,-0.0045687645,-0.13562395,0.026937505,-0.016521187,-0.07700596,0.048932634,0.065382615,0.059739973,0.12692109,-0.10179504,-0.058787066,-0.013033339,-0.04867605,0.06803639,-0.102260634,-0.0004890528,0.056456883,-0.0065655396,0.00020638925,0.037669875,0.02073334,-0.00754515,0.048767824,-0.023027126,0.040717795,-0.047096994,0.016685033,0.02315532,-0.0138674155,0.019217463,-0.0039476524,0.04675986,0.005233483,-0.0014484937,-0.029471118,0.018684309,-0.009453642,-0.013790284,0.020146998,-0.030030273,-0.031107739,-0.05690643,-0.015533342,0.06833796,0.07120485,0.03264323,-0.04948384,-0.0014970168,-0.03352286,-0.013724463,-0.01691444,0.027036512,-0.00024178033,-0.02853918,0.042681724,0.024969457,-0.026341638,-0.011258402,0.057227146,0.03105501,0.0021201607,0.030192055,-0.058169074,-0.00077194796,0.029242188,-0.012682516,0.016007124,-0.021855911,-0.021923698,-0.028475702,0.12959312,-4.6256467e-33,0.008815471,0.0015306935,0.048238102,0.014073876,0.028536085,0.032695245,0.027522255,-0.0064541716,-0.10573148,-0.05663779,0.0053686975,0.08929265,-0.037215725,-0.0190056,-0.09356995,-0.008718398,-0.013161881,0.016313082,0.039625645,0.01645354,-0.05712348,0.053270858,0.035104983,0.038801152,-0.023798823,0.014040983,-0.018072676,-0.02964932,0.04883271,0.0024111327,-0.011234133,0.004674309,-0.063369095,0.019985748,0.07546529,-0.029868938,-0.024180498,-0.030242419,-0.023028867,0.047816776,-0.0012693969,-0.008030512,0.048290513,-0.05513251,-0.07112512,-0.04278257,-0.065084696,0.15390992,-0.029103115,-0.04096361,0.0066042254,0.044708986,-0.0085339565,-0.008330675,-0.06722918,0.014089819,-0.04083684,-0.012488617,0.05646165,-0.01066286,-0.012758268,0.03407793,0.0213165,-0.114511386,-0.07007287,-0.036872286,0.009432416,0.05133306,-0.033132438,-0.019960798,-0.04138975,-0.03711206,0.115199134,0.03733105,-0.0019329442,-0.023476798,-0.019995552,-0.0138223125,0.009412983,-0.01949464,0.037352387,-0.019252583,0.012248084,-0.120045625,0.016066704,0.026224568,0.060013473,-0.05796529,-0.02914221,-0.014074113,-0.04044391,-0.011654069,0.08652925,0.04676012,-0.049252424,2.441214e-33,0.0804446,0.005242075,-0.11793204,0.041243877,-0.028267067,-0.08379496,-0.09766262,0.014734532,-0.07760865,0.05946668,0.025013516,-0.020911451,0.05981073,-0.0045266734,-0.03192261,-0.086906165,0.08414206,0.054701854,0.015473823,-0.0015097751,0.009131443,0.031061169,-0.016076166,-0.031959068,-0.035450675,0.070039764,0.023623245,0.08983059,-0.018377319,-0.042784523,0.026742965,0.043032628,-0.07484259,0.028211258,0.028235175,0.0809641,0.05594894,-0.0058545233,-0.02939896,-0.054304022,-0.024368793,0.0403224,0.008429001,0.06628771,0.031299327,0.03571219,0.00078788755,-0.0050939294,-0.088454634,0.019392079,-0.08653827,0.00017062714,-0.017735096,-0.111543834,-0.028840205,-0.058047175,0.028223824,-0.11019134,0.09319218,-0.022107342,-0.20501764,0.03910889,-0.021942437,-0.07854228,0.059514575,-0.024244977,-0.018584523,0.01413397,-0.060264356,0.0024285065,-0.14808485,0.015883723,-0.021165593,-0.0031173439,0.0817968,0.04753234,-0.019770185,-0.07902417,0.006715609,0.048134644,0.019371822,0.040190306,-0.015136708,0.019868407,-0.0046443874,-0.02565926,0.10439638,-0.0046327696,-0.028927613,0.03871877,0.047751233,-0.0030403368,-0.057913367,-0.064500086,0.029568566,-2.0264407e-08,-0.010877661,0.037691694,-0.05228875,0.014751661,0.06746884,-0.08799256,0.07470366,0.025055252,-0.062017698,0.0724884,-0.007000684,0.05862262,-0.06411909,-0.0107607,0.0017279497,-0.030784013,0.091515794,0.08771464,-0.050325606,-0.038700514,0.038684282,0.007506605,-0.008527179,-0.0482269,0.06776406,0.022965388,-0.115971155,-0.055938996,0.067705795,0.007970287,0.007289168,0.01456808,-0.06523944,0.0024136973,-0.075558655,-0.020478858,0.014098606,0.067653336,0.02368285,-0.075387165,-0.031113239,-0.019843189,-0.04009469,-0.041658845,-0.018696832,-0.0136132995,0.04816185,-0.061802153,-0.055405494,0.029463539,-0.040614277,-0.11184415,0.030798737,0.0860134,0.052585974,-0.023857387,-0.014915808,-0.04028146,-0.029916307,-0.018316956,0.024245452,0.051847078,-0.016128445,0.05021938} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.807889+00 2026-01-30 02:01:09.740989+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1322 google ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE 1 t 1325 Go Karts Mar Menor unknown Lugar fantástico, situado en uno de los lugares con más encanto de España, el mar menor, en el término municipal de San Javier, no necesita apellidos. Con una amplia terraza donde tomar algo. De fácil acceso y un circuito genial para entrenamientos y competiciones.\nLo recomiendo. lugar fantástico, situado en uno de los lugares con más encanto de españa, el mar menor, en el término municipal de san javier, no necesita apellidos. con una amplia terraza donde tomar algo. de fácil acceso y un circuito genial para entrenamientos y competiciones. lo recomiendo. 5 2022-01-31 01:52:39.833374+00 es v5.1 A4.01 {E1.04} V+ I3 CR-N {} {"A4.01": "Lugar fantástico, situado en uno de los lugares con más encanto de España, el mar menor, en el térmi", "E1.03": "Con una amplia terraza donde tomar algo.", "V4.03": "Lo recomiendo."} {-0.007799672,0.03901352,0.018496433,-0.019436415,-0.054697137,-0.058892775,-0.0046421853,0.035399664,-0.058628157,0.011296825,0.076418005,-0.08838916,0.03675064,0.017950242,0.009638744,0.07458537,-0.04715695,-0.03560108,0.024563832,-0.027116392,0.11471298,-0.077829115,-0.09315231,0.035147607,-0.12474009,-0.029814065,0.015456713,0.059621815,-0.121688046,-0.06305672,-0.037820112,0.072833106,0.0740892,-0.011751719,-0.041327268,-0.008905678,0.042124968,-0.06210704,-0.031049795,0.05177782,-0.13508216,-0.029249076,0.06394236,-0.014369291,0.0027068506,-0.07109524,0.012890164,0.02478359,-0.016368005,-0.10037823,0.011998254,-0.027799364,0.0041379295,0.035676405,-0.037090123,0.0022205869,-0.019737342,-0.023728967,0.100642085,0.044907797,0.07754002,0.08099727,-0.0610372,0.01591958,0.011585442,-0.05199159,0.02604102,0.021499693,-0.043296237,0.0038024434,0.039053604,-0.11767127,0.04468221,-0.03323435,0.06091202,0.010166889,-0.08063586,-0.0066922214,-0.023039568,-0.08328188,0.004742385,-0.046824142,-0.046880286,-0.07202303,0.06526343,-0.0058589284,0.0013181868,-0.024143277,0.021887276,0.023788067,-0.028592376,0.013890761,-0.09002834,0.04034994,-0.0500446,0.019175667,0.05596788,-0.061163306,-0.027184242,0.038789663,0.07451335,-0.037630804,0.017098518,-0.010420579,-0.022878874,0.009072304,0.04275744,0.0067698103,-0.04381515,-0.011913679,-0.04483792,0.020618096,-0.05607331,-0.0628713,-0.06684183,0.0066910447,0.011865621,-0.020317573,-0.008633988,-0.020031752,0.04395542,-0.030093689,-0.035473496,0.016810007,0.06226957,-0.00730426,0.06368963,1.1758046e-32,-0.05541499,-0.04418334,-0.059513617,0.110013425,0.034069963,0.0042420914,0.0007332653,0.022057699,-0.074832015,-0.05891467,-0.0495955,0.096674144,0.025504624,0.012175542,0.13042639,-0.02322605,0.022437904,-0.11485789,0.06702601,0.0059829494,-0.010699222,-0.039133117,0.030668247,-0.0006992134,0.03912703,0.029938068,0.0043161428,-0.050229482,-0.04991591,0.07117561,-0.023107726,0.007498008,0.069611736,0.04949875,0.02997141,0.0620758,0.033195443,-0.017492771,-0.012204408,-0.011388011,0.016269734,0.0014968072,-0.039329723,0.07733669,0.0072790515,0.05361381,0.0193406,-0.003553287,0.09373293,0.08093232,-0.08906357,-0.066916056,-0.0675374,-0.038464025,0.045216918,0.099069424,-0.042927496,0.016904514,-0.0067557413,-0.0005758597,-0.033927508,0.08348129,-0.0092700785,-0.010287311,-0.011566018,-0.05286938,0.06934917,0.01428371,0.03598127,-0.0071436367,-0.05510836,-0.030944029,0.023880819,0.036349446,-0.005047064,-0.023256259,0.0042612427,0.049170274,-0.03425743,0.060860477,-0.062499344,-0.027872087,-0.026382316,0.013028076,0.07727361,0.06491743,0.078251444,0.075873785,-0.0030970697,0.10381211,-0.030072054,0.09156738,0.06972145,-0.032515872,0.05746873,-1.2871028e-32,0.005036198,-0.037377276,0.04248598,0.080494136,-0.012176106,0.02912374,-0.04589306,-0.084587514,-0.04694881,-0.03894215,-0.09194976,-0.03400407,0.12293162,-0.0602754,-0.0016734577,0.026791764,-0.023789437,-0.09936999,-0.09123251,0.07776276,-0.009206706,0.04357959,-0.023621531,-0.09955369,-0.08514537,-0.044955615,-0.07251597,0.050842267,-0.11086236,0.006655328,-0.060005732,0.011647019,-0.00071746326,0.00837019,-0.09091335,0.059486553,0.08562841,0.04084494,-0.04698493,0.057510253,-0.025262535,0.04541043,0.016732855,0.013108306,-0.042482596,0.07173571,-0.0046603777,-0.11594114,-0.021722347,-0.06880019,0.08156924,-0.08646076,-0.10253711,-0.056050282,0.0661749,-0.035500117,0.007683002,-0.0018703718,-0.10186273,-0.0029789568,0.081459925,-0.0125642335,-0.057106152,0.0062176697,0.057531983,0.036221087,-0.019928712,0.029110786,0.0420926,0.01969455,0.10291043,0.02233329,-0.064779855,-0.015364189,-0.050928976,-0.03704134,-0.090414,0.030949341,-0.04742917,0.00308103,0.054775055,0.0050266557,0.0020930453,-0.044029996,-0.011346187,-0.08278384,-0.0035405522,0.030254116,-0.0073469537,-0.0051043197,-0.003566819,0.045199808,-0.054684024,-0.09569959,0.031816233,-5.857157e-08,-0.03977681,-0.016421858,-0.043431614,-0.053681027,-0.02420782,-0.043579124,0.07776697,0.020559648,0.019722803,0.046199456,-0.012688208,-0.010339156,-0.01844358,0.06455127,0.0010913225,-0.00456007,0.03930278,0.10410013,-0.03170389,0.04939128,0.0075761713,0.05571029,-0.07029093,0.031096626,0.03747284,0.037586283,-0.0058163963,-0.049417537,0.039066248,-0.030524442,-0.006367533,-0.021949697,-0.03247592,-0.036881566,-0.025057023,0.012683843,-0.07477807,0.025678454,-0.014513172,-0.046119068,0.083941385,-0.018230064,-0.12612009,0.0121695455,-0.0060160835,-0.05771351,-0.04341198,-0.011573505,-0.0024140456,0.055781413,0.0032490068,-0.04860579,0.027458204,0.024875691,0.06646903,-0.040251505,0.041961778,-0.019306313,-0.032376684,0.031364687,0.036757246,0.068053946,-0.0048543974,-0.028560663} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:48.608282+00 2026-01-30 02:01:08.972919+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1814 google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB 1 t 1817 Go Karts Mar Menor unknown Esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 y después 15 personas (8 ajenas). No volveré ni lo recomendaré\n\nEn respuesta: Se llamó 2semanas antes y no se reservaba..Esperamos 35 minutos de reloj y luego se fue sumando gente a la sesión sin previo aviso. En el marcador ni se veían los nombres de los 7. Reafirmo no volveré ni recomendaré , también se salió la rueda de un car y el circuito dejaba que desear. esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 y después 15 personas (8 ajenas). no volveré ni lo recomendaré en respuesta: se llamó 2semanas antes y no se reservaba..esperamos 35 minutos de reloj y luego se fue sumando gente a la sesión sin previo aviso. en el marcador ni se veían los nombres de los 7. reafirmo no volveré ni recomendaré , también se salió la rueda de un car y el circuito dejaba que desear. 1 2026-01-30 01:52:39.833374+00 es v5.1 J1.01 {J3.01} V- I3 CR-N {} {"J1.01": "Esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 ", "J2.01": "Se llamó 2semanas antes y no se reservaba..Esperamos 35 minutos de reloj y luego se fue sumando gent", "O1.01": "también se salió la rueda de un car y el circuito dejaba que desear.", "V4.03": "No volveré ni lo recomendaré"} {-0.033681814,0.043128394,0.05516366,-0.062572286,-0.102293685,0.06494107,0.01777972,0.052535433,0.016174193,0.0035541938,0.075905815,0.0036285755,-0.035155293,0.012075211,0.0050685243,-0.049388845,0.0020023875,0.06485892,0.010303301,-0.032379366,0.09642119,-0.055621393,-0.06570376,0.031806022,-0.04021369,0.030221261,-0.01820995,0.032500725,-0.07677789,-0.11534815,0.05869823,0.025678106,0.07533035,-0.0037412448,-0.06180377,0.01672679,0.022584926,-0.04006771,-0.067030385,0.07267578,-0.10769469,-0.024751704,-0.04414179,-0.06777264,-0.0015360203,-0.07133675,0.03768274,-0.023970818,0.07854189,-0.035469294,-0.04377794,-0.019257633,-0.014283789,0.09518081,0.009990112,-0.042089,-0.04441851,-0.016855642,0.1095218,0.015105222,0.032279916,0.03125156,-0.032628965,0.01154863,-0.06934423,-0.008564605,0.034766696,-0.035848726,-0.03666944,0.07978709,0.1225032,-0.0023174232,0.010667265,0.010226446,-0.06738797,0.011082763,0.017382128,-0.037266146,0.0015228692,-0.08987693,0.028393308,0.0012445156,-0.0055343667,-0.03427447,-0.013636967,-0.06975963,-0.03647202,0.05152305,-0.01737181,-0.010266597,-0.050014064,0.12489749,-0.009304262,-0.0040954733,0.012271269,0.03702814,-0.04706553,-0.05306365,-0.036454313,0.042217176,0.09435411,0.09722453,0.034240596,0.05147951,-0.10394713,0.05378901,0.03770384,0.016490884,-0.046938285,-0.00045309798,-0.0456958,0.03088146,-0.006560227,0.017086167,-0.038997337,-0.018325672,-0.032053962,0.012980409,-0.013954538,-0.0066389954,0.07565016,0.0058439528,0.012107143,-0.048282895,0.012098107,-0.040359348,0.03243187,1.5327512e-32,-0.054520816,-0.054734204,-0.0069118487,0.08692826,0.03334897,0.0121126445,-0.022692926,0.04182772,-0.04989638,-0.06360101,-0.052605055,0.0013827246,0.029996479,-0.054535724,0.06885339,0.026695175,-0.010555777,0.0054568388,-0.028427811,-0.04362274,-0.011814053,-0.029088842,-0.0012420658,0.034478884,-0.033626247,0.042639807,0.0073049017,0.024498591,0.008646361,0.025640886,-0.07055928,0.03732891,0.043470833,-0.0048771407,-0.0154962335,-0.0003050587,0.11332181,0.02991241,-0.060608163,-0.029804073,0.04291875,0.03744959,-0.04490846,0.008470195,0.03609581,-0.011305812,0.09656341,0.0011343567,0.07139522,0.04452342,-0.048212543,-0.02129012,-0.018633196,-0.0698636,0.010348294,0.058493942,-0.073137805,0.056731287,-0.05711888,-0.06347887,0.10430618,0.03205772,-0.0011061322,-0.03277734,-0.028451597,0.034992926,0.046228,-0.009502728,0.09799088,0.020391349,-0.06487458,-0.011625982,-0.047470596,-0.002522485,0.05756539,-0.029543065,0.013819473,-0.0025238525,0.021428045,0.021325761,-0.024366666,-0.03598785,-0.056355745,0.028393313,0.13007522,-0.01671266,0.028806955,-0.018343005,-0.051542696,0.095949076,0.01621279,0.03766257,0.059479997,-0.015950581,0.03481374,-1.4774152e-32,-0.058031615,0.05260659,-0.0076388824,0.011400399,0.006055785,0.009297088,0.035440672,0.07202779,-0.06862159,-0.10691213,-0.07704217,-0.16303904,0.13344151,-0.016625443,-0.06132468,0.011511511,-0.015234098,-0.103709705,-0.058761377,-0.07266476,0.048303224,0.07779174,0.015455359,0.016360568,0.03082978,-0.012324291,-0.0049556848,0.0042103794,-0.080684744,0.055167757,0.06371571,-0.08419027,-0.007999643,0.027455166,-0.002933592,0.0145924045,-0.017618457,0.040853716,-0.029872913,0.016720388,-0.042196125,0.059704687,0.0023819446,-0.041470833,-0.041059293,-0.009319156,0.05595351,-0.12688756,0.006819737,-0.059022132,0.062111016,-0.06127788,-0.109020256,-0.056564063,0.012374908,-0.05857731,0.017954726,-0.057542086,-0.004945456,-0.005621022,0.053629875,-0.045629278,0.016250966,-0.010875906,0.08472259,0.040375937,-0.024973134,0.089043066,-0.019148247,-0.022181058,0.050419524,-0.05272358,-0.041805167,-0.047129296,-0.040924124,-0.13743792,-0.13338137,0.021851538,-0.06025833,0.010066567,0.013580423,0.0076123253,-0.07477503,-0.05152406,-0.03181134,-0.016390782,0.06334895,0.07415873,0.012374083,0.049730465,0.0746489,0.020515133,0.014012866,-0.020337727,-0.023648202,-5.416166e-08,-0.0020350039,-0.017145185,0.004913365,-0.015496094,0.06569585,-0.040222537,-0.027640805,0.020135088,0.009151009,0.05518864,0.07446001,-0.027148578,0.053506013,0.082732975,0.036228005,0.047613148,0.10804899,0.024039168,-0.03297184,-0.05392828,0.10185353,-0.021933103,-0.032096986,0.02576802,0.06717585,0.011831618,-0.0051794183,-0.04592605,-0.045002565,-0.09356145,-0.026038874,-0.024104193,0.0014520051,-0.060252476,-0.08062547,-0.02794036,-0.00010815053,0.05538289,0.0014107317,-0.042415544,0.041406203,-0.042289678,-0.04261004,0.08941264,-0.068469636,-0.05918775,-0.021464704,0.05574115,-0.05080634,-0.02038472,-0.06841289,-0.029618142,0.021784091,-0.02036197,0.06550624,-0.025931388,0.02433094,0.11382861,-0.018411314,0.0009091626,0.097406015,0.105529755,-0.065477826,-0.06110099} 0.96 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:08.282945+00 2026-01-30 02:01:10.810812+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1407 google ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB 1 t 1410 Go Karts Mar Menor unknown One of the best tracks I've done in Spain, well-maintained karts and helpful, friendly staff. Prices are a bit higher than similar tracks around, but they are not that strict on actual run times, so it evens out. one of the best tracks i've done in spain, well-maintained karts and helpful, friendly staff. prices are a bit higher than similar tracks around, but they are not that strict on actual run times, so it evens out. 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I3 CR-B {} {"P1.01": "One of the best tracks I've done in Spain, well-maintained karts and helpful, friendly staff.", "V1.01": "Prices are a bit higher than similar tracks around, but they are not that strict on actual run times"} {-0.008177083,-0.06811454,0.034491528,0.09700562,-0.059643287,0.0305379,-0.08774188,-0.048601195,-0.045724094,-0.030600011,-0.033636905,0.026447015,-0.035279278,0.06613728,0.015295273,-0.057032254,0.049998585,-0.0661607,0.04480785,-0.044755507,-0.088788286,-0.04500383,-0.013232492,0.066589855,-0.036211055,-0.05981437,-0.007063125,0.0022475757,-0.052440017,-0.05239251,-0.13063474,0.025705798,0.003462317,-0.043165375,-0.030859837,-0.023853173,0.03687576,-0.04565667,-0.10667836,0.04471756,-0.051867377,0.052125428,-0.014293364,0.04906498,0.008581783,-0.019572442,-0.0035858648,-0.010633842,-0.006347472,0.07026262,0.046021912,-0.07807217,0.10953166,-0.06590226,-0.052026074,0.010442155,-0.046003927,0.040976357,0.09528698,0.025510369,0.044333976,-0.03797349,-0.06436647,-0.037526555,-0.028768033,-0.052070115,-0.0084546935,0.10193388,-0.043575644,0.0119579,0.01778062,-0.022899805,0.048940714,0.057774194,0.06031534,0.04261907,-0.058265686,-0.094856225,-0.066057965,-0.008690862,0.008074594,-0.04529241,-0.010968981,-0.10531378,0.07381993,-0.09047142,0.11849627,0.03154772,0.076002486,0.023651779,0.04295686,0.13427567,-0.038222466,-0.03278301,0.04856797,0.06597057,0.055900645,0.10387614,0.03665402,0.009776434,0.09375783,0.06354132,0.047024295,0.0029026947,-0.030485628,0.007040452,-0.014198578,0.033582173,0.04003937,-0.023859378,-0.0065525016,0.021311443,-0.0074792616,-0.081699796,-0.013904002,0.03750386,0.02140481,0.037638444,0.019362196,0.022222782,-0.014527508,-0.00022584468,0.0070232097,0.045507982,0.018246433,-0.010706983,0.00809836,-5.4753007e-34,-0.08144292,-0.0152751785,-0.016116336,-0.049827285,0.088746876,-0.1003208,-0.052450854,-0.08315649,-0.1400917,0.043951746,-0.030041868,0.04954008,-0.01024458,0.023037028,0.1062287,-0.023042917,0.0012879794,-0.036327783,-0.05440215,0.049324844,0.018511534,-0.011562964,0.050550148,0.003507203,0.058446083,0.031866524,0.060880147,0.013673526,0.038811486,0.008622913,-0.042700306,-0.03691724,-0.014159806,-0.033042103,-0.02421988,0.021774968,-0.04690128,-0.04205222,-0.012858143,-0.013028816,0.04571733,-0.0043769563,0.002385701,-0.036275394,-0.06466532,-0.0066632223,0.031217823,0.05659751,0.026497044,-0.003606758,-0.078714766,-0.029649222,-0.061108205,-0.009868637,0.01876472,0.03859625,0.021602122,0.052240077,0.008466401,-0.055413786,0.054663893,0.04383001,-0.012280213,-0.04660692,-0.0568487,0.036520656,0.008885699,-0.015482987,0.06405253,-0.013202962,-0.04334257,0.0099645825,0.030054903,-0.051067725,0.12177445,-0.032181032,-0.07717296,0.010113769,-0.0064873416,0.043552816,-0.06904841,0.05571094,-0.028258087,0.061160963,0.056969654,0.07763409,0.02543208,0.00925814,-0.038349885,0.06904644,-0.018049883,0.06673001,0.0018721648,0.029106056,0.037702356,-6.9992855e-34,0.09161784,0.033988114,0.17767999,0.08421687,-0.015125913,0.07974703,-0.073037915,-0.021314839,0.04361968,0.035626806,-0.093838826,-0.0038730244,0.029101925,-0.004883496,-0.009512985,-0.007072983,0.04936465,0.0047522928,0.03367907,-0.104031265,-0.051356483,-0.0018727644,0.011221243,-0.053132422,-0.0042352537,-0.021983216,-0.037620604,0.02698929,-0.078923464,-0.034684256,-0.05931278,0.005374973,-0.016808683,-0.12936741,-0.07342821,0.06096593,0.011155631,0.049387623,-0.033775922,0.10263047,-0.036912587,0.04514772,0.0076965336,0.027366487,-0.02084971,0.025901,-0.0066180755,0.052759536,-0.013115695,-0.0789366,0.05279836,-0.035045017,-0.05413289,-0.04960023,0.001594066,-0.036640704,-0.037972532,-0.026670607,-0.09827973,-0.021917902,-0.060460396,0.04997311,-0.051202875,0.052293476,0.03639417,0.04979626,-0.06321445,-0.04011587,-0.054253813,-0.010826895,-0.07840333,0.023785971,-0.06100563,0.024108142,-0.096145935,-0.026772432,-0.026747422,0.05082645,0.044129476,0.070646934,0.10141336,-0.07142577,-0.0020281675,-0.03473366,0.069033064,0.0660666,-0.06581114,-0.018670201,0.021837542,0.057766553,0.09536655,0.04292896,-0.016776469,-0.008041059,0.0036134298,-3.294123e-08,-0.013163102,0.045876194,-0.0063766935,-0.021434,-0.033189185,-0.024138853,0.07279694,0.088271596,-0.019832943,0.05646729,-0.012792179,-0.055117358,0.017218744,0.046162795,-0.0052598724,-0.021511227,0.0023091915,0.13871329,-0.021091225,0.070194215,0.018662008,0.08583668,0.0011321036,0.008068863,-0.041132912,-0.049962997,0.014256909,-0.010866511,0.031609725,-0.0486959,-0.023199275,0.021252211,0.037534233,-0.012388869,0.036392484,-0.062446583,-0.08262233,0.041964687,-0.0367764,-0.0046791174,0.015341321,-0.029509151,-0.092727415,-0.026771368,-0.0016267003,-0.01893333,-0.07512063,-0.008878511,-0.07025039,0.013469396,-0.008553884,-0.00968771,0.005936939,0.048570957,0.10773216,0.020208187,0.0049209716,-0.038759377,-0.023720024,0.04377342,-0.048913926,-0.12311005,0.028022377,0.020717796} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:07.846448+00 2026-01-30 02:01:09.256542+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1308 google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE 1 t 1311 Go Karts Mar Menor unknown ‼️AMAZING‼️Amazing go karting, very professional and authentic. Well kept and unique track which is a pleasure to race on! And the karts are well maintained to the best standards. They have amazing staff there getting you on the track quickly and efficiently and helping with any problems on the track. Great facilities with food and drink available, a good main room with a view of the karts and an amazing roof terrace overlooking the complex! We have been going for years and has never failed to disappoint even in the hottest temperatures or heavy rain. The atmosphere is very welcoming and authentic giving a true racing experience. They have karts for all ages and abilities and are superbly priced. I would highly recommend a few races here no matter the time of day it is always one of the highlights of our trip! Thank you to all of the crew here who never fail to offer the best service and giving the best experience! All of the best and look forward to our visit next week!! ‼️amazing‼️amazing go karting, very professional and authentic. well kept and unique track which is a pleasure to race on! and the karts are well maintained to the best standards. they have amazing staff there getting you on the track quickly and efficiently and helping with any problems on the track. great facilities with food and drink available, a good main room with a view of the karts and an amazing roof terrace overlooking the complex! we have been going for years and has never failed to disappoint even in the hottest temperatures or heavy rain. the atmosphere is very welcoming and authentic giving a true racing experience. they have karts for all ages and abilities and are superbly priced. i would highly recommend a few races here no matter the time of day it is always one of the highlights of our trip! thank you to all of the crew here who never fail to offer the best service and giving the best experience! all of the best and look forward to our visit next week!! 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {O2.02} V+ I3 CR-N {} {"E1.03": "Great facilities with food and drink available, a good main room with a view of the karts and an ama", "O1.03": "Well kept and unique track which is a pleasure to race on!", "P1.01": "‼️AMAZING‼️Amazing go karting, very professional and authentic.", "P3.02": "They have amazing staff there getting you on the track quickly and efficiently and helping with any ", "P3.05": "Thank you to all of the crew here who never fail to offer the best service and giving the best exper", "R2.01": "We have been going for years and has never failed to disappoint even in the hottest temperatures or ", "R4.03": "All of the best and look forward to our visit next week!!", "V1.01": "They have karts for all ages and abilities and are superbly priced.", "V4.03": "I would highly recommend a few races here no matter the time of day it is always one of the highligh"} {0.02472046,0.009947176,0.07539464,0.077737376,-0.08481559,0.038745854,-0.041366093,-0.09143312,-0.07239447,0.0064953016,-0.0225763,-0.020995196,-0.0037368268,0.023233213,-0.0085288845,-0.056927882,0.08795839,-0.1257275,0.016325831,-0.023100207,-0.047829688,-0.0513306,0.030369762,0.06314485,-0.084422976,0.053064942,-0.030908857,0.082658306,0.003363226,-0.02356806,-0.08751606,0.037214924,-0.021170415,-0.002811779,0.0038697633,0.0283178,-0.010011498,-0.13834429,-0.031666096,0.056565013,0.0035351121,0.0027856282,0.010371945,0.04519738,0.03526469,0.03469591,-0.030184118,-0.028556777,0.012247873,0.06028756,0.03603017,-0.034856196,0.10072738,-0.085800454,-0.051882893,0.014959143,-0.09502651,-0.07055205,0.024354782,-0.06380367,0.058774255,0.03196293,-0.043582246,0.021271644,-0.05811833,-0.10688572,-0.0927679,0.056198746,0.042616174,-0.055079583,0.0144187575,0.030841125,0.04766916,0.024065197,0.006678955,0.045146506,-0.0268653,-0.023386627,-0.07271291,-0.006879743,0.1042005,-0.051451497,0.030295303,-0.00938385,-0.05407454,-0.09386293,0.043696236,0.035446923,0.029173236,-0.047773875,0.06789201,0.06954662,-0.03842999,-0.080688804,0.025972733,0.09401799,-0.03437805,-0.022059033,0.009904075,-0.03659969,0.088567615,0.07032567,0.005453897,0.010490257,-0.050363902,-0.014346787,-0.029054755,0.063113555,0.057469696,-0.0050947396,0.020708444,0.011559402,0.0057711564,-0.030223778,-0.013655188,0.04460788,-0.0027918895,0.0555759,-0.0002512432,-0.002661015,-0.022490459,-0.0023929381,-0.008902002,0.02911887,0.055799477,-0.04885526,0.040157605,2.0133436e-33,-0.049116552,0.065967895,-0.0076625375,-0.0025157137,0.032666855,-0.07618913,-0.047789417,-0.1534171,-0.1664733,0.02940533,-0.009031464,0.042089883,0.010828353,-0.00016878957,0.055080116,0.023088811,-0.045982555,-0.06308567,-0.079757184,0.017460965,0.021103352,-0.039286945,-0.023153681,0.07745289,0.023149636,-0.013135036,0.078600734,-0.027110059,0.043213777,0.013911755,-0.104550965,-0.058169875,-0.08518319,-0.021366583,-0.039438907,0.0065564113,-0.07983115,-0.043047484,-0.0033753684,0.022431647,0.0181001,-0.04080193,-0.041694984,0.047318384,-0.027432099,0.041682072,0.04956155,0.031087639,0.050954722,-0.03499533,-0.14455609,-0.046345446,-0.02436194,0.035851944,-0.01743192,0.047615737,0.050168574,0.022852732,-0.0052363602,-0.045375858,0.05411381,0.036821116,-0.056322586,-0.11832604,-0.06532902,-0.04914897,0.007986007,-0.017238561,0.032559372,-0.008348541,-0.024617482,0.039628,0.04832624,-0.026306314,0.08096101,0.020991335,-0.039953727,0.011748542,0.021649005,0.1300892,-0.03570993,0.07242383,-0.035325997,0.023803465,0.04427341,-0.035842177,-0.011519653,-0.057342228,-0.03519848,0.00968076,0.035683393,-0.0196451,0.066379085,0.056799687,0.014177305,-4.7716875e-33,0.11474276,0.03642968,0.10544805,0.031445254,0.022105288,0.019828485,-0.0038594266,0.0014806389,0.029017566,-0.0038704905,-0.060918897,0.06553341,0.008119214,0.0028891552,-0.057034362,-0.011202975,0.07883455,0.07579876,0.010826224,-0.08249338,0.0052770176,0.022403931,-0.03373432,-0.06161443,-0.019116474,0.07668067,0.032742582,-0.014720991,-0.03380497,0.011516429,-0.044458132,-0.012055311,0.012132311,-0.0096599525,0.049754456,0.05886669,0.10376457,0.01813583,-0.08102998,0.04350372,0.07638447,0.007905647,0.034151826,-0.014387193,0.01882245,-0.014230867,0.008023304,-0.0037411042,-0.021645637,-0.061272025,0.0488561,0.00057184626,-0.074113905,0.0011804895,0.022598717,-0.041542847,0.041498102,0.028973699,-0.037784085,-0.019313546,-0.06497596,0.036208514,-0.006287184,0.08757923,0.009380031,-0.065264404,0.00043473075,-0.016887771,-0.054987803,-0.029498233,-0.17717645,-0.020691175,-0.07954249,0.012432175,0.033045433,-0.011817294,0.07390864,-0.0022900659,0.03316783,0.0650977,0.06183693,0.020831758,-0.020385059,0.01400055,0.0917042,0.08001438,-0.06094466,-0.0056301286,0.009813508,0.05170142,0.06898037,0.08463236,-0.04381781,-0.025406934,-0.06553936,-4.620918e-08,0.007066699,0.0675868,-0.036252208,0.050178178,0.0036071,-0.11433355,0.01792215,0.010060012,-0.04665435,0.033613548,-0.01671715,-0.023586018,-0.038964294,0.008029185,0.016632598,0.017136384,-0.010848365,0.16353907,0.011901399,-0.033042744,0.023685923,-0.0027555162,-0.03624048,0.0427473,-0.050054755,-0.02425931,0.018019281,-0.0070638964,0.029717028,-0.06503073,-0.03204344,0.005634451,-0.030959764,0.04544497,-0.0155010745,-0.0836503,-0.034990586,0.031751983,0.023556996,0.00898083,-0.048931666,-0.09524161,-0.093895674,0.001781297,-0.051920597,0.01650725,-0.017031996,-0.0412142,-0.025390573,0.018666623,-0.09052204,-0.035241388,-0.0011398952,0.07690679,0.028408956,0.07295108,0.011626466,-0.053869378,0.02538292,0.028384997,0.025153814,-0.067599,-0.08858579,0.05776457} 0.92727274 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:44.951749+00 2026-01-30 02:01:08.92562+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1547 google ChZDSUhNMG9nS0VJQ0FnSURNMGRENkh3EAE 1 t 1550 Go Karts Mar Menor unknown The best go kart place close to Torrevieja. the best go kart place close to torrevieja. 5 2026-01-30 01:52:39.833374+00 en v5.1 V2.05 {} V+ I3 CR-B {} {"V2.05": "The best go kart place close to Torrevieja."} {0.05206376,0.025795126,-0.035956543,0.02024336,-0.09820924,0.04431168,-0.058668975,0.025512991,-0.024845155,-0.015286668,-0.013089093,0.060520157,-0.047294423,0.088507935,0.07087645,-0.061168466,0.099196725,-0.0717295,0.13503401,-0.08017573,0.042867776,-0.003928477,0.016051933,-0.028493868,-0.002785877,0.051830158,0.026203332,0.065818846,0.032388892,-0.016172655,-0.08430199,0.059327297,-0.055093493,-0.019490961,-0.081129044,0.011246305,-0.06645167,-0.059488136,0.019689012,0.082223944,0.00050984835,0.09828187,-0.025500055,0.06881678,0.010604903,-0.02978239,-0.032429118,0.008579038,0.08045542,0.00939015,0.006553204,-0.00035745572,0.044814426,0.0070825117,0.04110372,-0.06525797,-0.048310325,-0.006364338,0.10816229,0.016663324,0.09337839,0.033871505,-0.09691883,-0.016381182,-0.025636714,-0.043105714,0.0034465396,0.17180079,0.014188767,-0.025112117,0.019735353,0.00059979106,0.06811932,0.054254126,-0.025151702,0.024851162,-0.026581194,-0.004378647,-0.12079426,0.041445557,-0.049738746,-0.08649471,-0.015427335,-0.0010438713,-0.087209776,-0.07099813,0.015509003,0.066580884,0.098855846,-0.035487525,0.05499351,0.06066071,-0.10784276,-0.020536745,0.03885385,-0.011718267,-0.004822165,-0.058625765,-0.019591026,0.009376437,0.035409253,0.018472007,0.032176495,-0.019251758,0.033308633,0.0151315145,0.020707525,0.033609685,0.08273515,0.03851464,-0.053976327,0.04503009,-0.003130122,-0.04568517,-0.12701699,0.024091383,0.018107206,0.04563974,-0.08246735,0.017151117,0.04117816,0.030872827,-0.03566294,0.097512804,0.05686395,-0.09119514,-0.01798776,-1.6200944e-33,-0.030686997,0.0029868546,0.012832723,-0.0020821008,0.05537566,-0.03749737,-0.044750474,-0.104618914,-0.08309641,0.027184576,-0.004330405,-0.054363653,-0.05745083,-0.018559003,0.04931421,0.02419284,-0.06128241,-0.03213103,-0.04135723,-0.013892071,0.012709206,-0.049673524,0.009337367,0.013543393,-0.039229497,0.048149537,0.09262191,-0.06280815,0.016517648,0.028236829,-0.016962817,-0.024254827,-0.031309173,0.016205017,-0.0031461383,-0.030599443,-0.07643791,-0.041729677,-0.081783175,-0.017708793,0.04273392,-0.02180779,-0.048779063,0.11110769,-0.012020468,-0.06404517,0.039910223,-0.0055595073,0.06994714,0.020863643,-0.08871447,-0.031124147,-0.05177792,0.013984234,-0.072013535,0.033422768,0.02617292,0.0227223,0.02323226,-0.0534024,0.039453875,0.012865988,0.005152897,-0.05030237,-0.014654443,-0.069427654,-0.00055354676,-0.0017602551,0.066296756,0.009338453,-0.013236608,-0.018790744,0.052558266,-0.028675925,-0.00048888894,0.031424046,-0.09397563,0.07645397,0.002279747,0.007474412,-0.041430376,-0.014591645,-0.027073922,0.02726599,0.04814335,0.029754091,0.012008144,-0.069296084,-0.079823405,0.04194913,-0.056831986,0.052933153,0.047760822,0.009140017,0.01758366,7.487623e-34,0.03735189,-0.06818495,0.091324694,0.116611324,0.00547047,0.003033744,0.04902902,-0.00084599113,0.015201611,0.071850814,-0.042425852,0.03717359,0.058371484,0.014343684,0.03627775,0.09547144,0.15021743,0.04896082,-0.028425183,-0.08290213,-0.03080581,0.0068797097,-0.038841896,-0.033073578,0.031518064,0.053296782,-0.015137327,-0.028220152,-0.1448049,0.00664594,-0.032358147,-0.09982724,-0.050798506,0.009157825,-0.0027151147,0.07229553,0.058630023,0.0808262,-0.024949826,0.06348192,0.049705986,0.008220875,-0.034609184,0.04212195,-0.009932519,-0.005767306,0.00020302158,0.0046491283,0.077020034,-0.06246655,0.054237615,0.10623171,-0.07557536,0.019827655,0.06941534,-0.010332431,0.00015025116,0.013943529,-0.067754075,-0.027251123,-0.004975559,-0.02956636,-0.02707123,0.030155715,0.08338387,0.024300251,-7.070868e-05,0.031539444,-0.032049216,0.011211536,-0.080939785,0.026458774,0.048213072,0.015257049,-0.04504718,0.0084716035,0.10265721,0.056267727,-0.021880262,-0.0071928133,0.08315549,-0.0077324896,-0.09171272,0.039766368,0.060425524,0.03453558,0.023871643,-0.041319765,0.04199402,-0.016936291,0.0025858195,0.06241662,-0.043232456,-0.08859935,-0.0141477315,-1.61258e-08,-0.046177495,0.0038452344,-0.058553357,0.022130484,0.00708549,-0.057239417,-0.020793699,0.10600408,-0.05029949,0.040869545,0.048242588,-0.076937586,0.0037558835,0.0024593943,0.03652594,-0.031944126,-0.0019546072,0.0978462,-0.010522987,-0.033667013,-0.0257808,-0.022754923,0.010359741,-0.01818758,-0.07731312,0.011881719,0.026141133,-0.018730186,0.12901841,-0.0511458,-0.00444835,0.019026032,-0.06674016,-0.004567076,-0.05225278,-0.026657222,-0.03834071,0.058173526,0.0031207616,0.031822186,-0.03304185,-0.07054392,-0.08273723,0.039059024,-0.0060456446,0.03732626,0.051413946,0.0025977415,-0.01959742,-0.05708685,-0.034344427,0.029752841,-0.02192023,0.0103482185,0.06498085,-0.017123742,-0.012984713,-0.10456551,-0.029638072,0.056739494,-0.017701967,-0.03477274,-0.0601826,0.050089866} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.831693+00 2026-01-30 02:01:09.745184+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1325 google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB 1 t 1328 Go Karts Mar Menor unknown Fabulous track and an exciting way to pass time in the region. Well organised system, observing safety rules. You can even drive with your children. For €12 or less you get 10 circuits of excitement and are provided with a race helmet. Highly recommended. fabulous track and an exciting way to pass time in the region. well organised system, observing safety rules. you can even drive with your children. for €12 or less you get 10 circuits of excitement and are provided with a race helmet. highly recommended. 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.02 {O2.03} V+ I3 CR-N {} {"A3.01": "You can even drive with your children.", "J2.01": "Well organised system, observing safety rules.", "O1.02": "Fabulous track and an exciting way to pass time in the region.", "V4.01": "For €12 or less you get 10 circuits of excitement and are provided with a race helmet.", "V4.03": "Highly recommended."} {0.0018897883,0.08497717,0.008323318,-0.016503476,-0.028559009,0.061581064,0.030869005,0.041380126,-0.035945408,-0.00989089,-0.0069347504,-0.035165153,0.0039032197,-0.002329671,-0.04579786,-0.041854925,0.11183399,-0.048901044,0.01776009,-0.059919637,-0.012910643,-0.03651304,0.0053329826,0.08309506,-0.13503431,0.046323355,-0.07246733,0.020058898,-0.023988472,-0.034421608,-0.030464135,-0.01546527,0.03677156,-0.040766288,-0.06585396,-0.06784754,0.10960815,-0.02960395,-0.07633844,0.025071857,-0.050742667,-0.033297885,-0.004932355,0.028907891,0.055958223,0.04803461,0.03171648,-0.037286766,0.034040716,-0.019169223,0.076524295,-0.031193428,0.11209179,-0.046467267,0.018834293,0.012376682,-0.057870857,0.032046776,0.012376307,0.010211036,-0.027790362,-0.023965731,-0.09222731,-0.0073794182,-0.03586253,-0.094209485,-0.10204305,0.039560854,0.06718884,0.031439815,-0.0039977334,-0.015627984,0.097742654,-0.025509171,0.01884032,0.024134662,-0.006934334,-0.060977664,-0.060469158,-0.037747312,-0.016588043,-0.08219447,0.021383373,-0.06703197,0.10087273,-0.03241726,0.023795731,-0.016971698,0.014766875,0.0062394575,-0.009867658,0.038606666,0.057600666,-0.06567514,0.03920263,0.020040864,-0.029114446,0.022146167,0.020488435,0.0690421,0.028374257,-0.017063867,0.020428434,0.06147733,-0.05452203,-0.026531894,-0.04108785,0.115074396,0.062362522,-0.051945534,0.014301651,-0.021458922,-0.018245358,-0.028808685,-0.03581713,0.0034888603,-0.049428117,0.031619895,0.053387664,0.040309843,0.005542195,-0.04785716,-0.030293442,0.0200249,0.016063679,-0.06600243,0.06322855,-1.7517656e-33,-0.09007767,0.03290993,-0.051633503,-0.052872986,0.038373675,0.02123352,-0.04678252,-0.06982961,-0.07730606,0.080098376,-0.010668282,0.059015445,-0.019135252,0.010325952,0.10759872,-0.088101186,-0.09613744,-0.0071711508,-0.029320702,-0.018371124,-0.008846765,-0.010391296,0.016149053,-0.0031966919,0.0640124,0.06105049,0.030645384,-0.018633911,0.10569968,0.05523684,-0.13383944,-0.0008269296,-0.04907424,-0.048417103,-0.038087893,0.08511671,-0.049230363,-0.08077441,0.007062687,0.014643463,0.019373309,-0.068792,-0.07337766,0.0026730127,-0.044194892,0.09850967,0.082264766,0.054089934,0.011247267,0.005864959,-0.08651796,-0.029990029,-0.058976732,-0.10588511,-0.0037955162,0.024028758,0.021395655,0.031871162,0.0129920365,-0.0070806667,0.012141889,0.0098426165,-0.014298687,-0.03736895,-0.048960242,0.04589637,0.04831699,-0.029747892,0.00085253734,-0.044088777,-0.05385109,0.035255227,0.0067095743,-0.04740988,0.055762812,0.042877346,-0.0020328485,-0.015512997,0.029301582,0.00669249,-0.09010503,-0.005519672,-0.020213671,0.0115975095,0.16737603,0.011800193,-0.016149264,-0.00905194,-0.091181464,-0.021634657,0.0038681861,-0.04545612,-0.0049498896,0.08846534,-0.036647297,3.4809058e-34,0.050336234,-0.016138738,0.085943334,0.037689332,0.032392625,0.07121457,-0.015274655,-0.021167625,0.013173344,0.096320115,-0.06286375,0.014864733,0.05838419,0.07037687,-0.015810372,-0.11960977,0.038260937,0.048822787,0.052125834,-0.053180493,0.029466445,0.008693863,-0.04673728,-0.035940792,-0.053959087,0.030631602,-0.06539583,0.00030065485,-0.03886877,0.018282535,-0.09038005,0.016522495,0.031294644,-0.043214574,-0.067914195,0.058806345,0.053308744,0.047443207,-0.08219681,-0.0037209773,-0.036636103,0.004357255,0.0864564,0.050123375,-0.013573051,0.040550675,0.0115465885,0.10545311,-0.073943175,0.049100455,0.03175682,-0.009178472,-0.033633363,-0.035015993,-0.09022991,0.0059596268,-0.038675077,-0.010869205,0.013133978,-0.024532996,0.0149917165,0.030510234,-0.10295926,0.11181886,0.032078035,-0.035802353,-0.060179833,-0.017100269,-0.016241403,0.04873957,-0.0580179,0.03943128,-0.035834737,-0.009414565,-0.08371874,-0.008601523,0.02644943,0.04821694,0.07694144,0.08184693,-0.009607222,-0.023477864,0.08043098,0.006133793,0.043998018,0.022683946,0.00079908763,-0.008146438,0.006874969,0.056971367,0.059561,0.09190497,-0.008475733,0.045804214,-0.04202048,-3.27442e-08,0.024848115,0.075244986,-0.0073969425,-0.024835449,-0.011903782,-0.032027412,0.042372998,0.0054686596,-0.10693657,0.022123449,0.027031489,-0.044789523,0.0024466629,0.030416574,-0.015789757,0.027200582,0.05052701,0.13266985,-0.048280586,0.096998565,0.02104589,0.06174659,0.035489477,0.038338352,-0.021726208,-0.02610475,0.042592317,0.059037652,0.039274935,-0.025262361,-0.01476247,0.03031009,0.033035915,0.018528104,-0.02712491,-0.09674665,-0.13192342,0.0682491,0.019648744,-0.011434315,-0.014523336,-0.056067273,-0.047168016,0.039809115,0.030009428,-0.028062128,-0.1018448,-0.046735108,-0.046293564,0.028302576,-0.029587239,-0.07669225,-0.052467953,0.057566002,0.10440941,0.048230607,-0.00055407383,-0.052221317,-0.08380146,0.066082045,-0.017549677,-0.037312545,-0.017044246,0.029460741} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:22.530312+00 2026-01-30 02:01:08.982876+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1411 google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB 1 t 1414 Go Karts Mar Menor unknown Very well organised. Staff very helpful and friendly. Karts are good and grades to your ability and age. Will go again. The roof top seating over looking the track and digital score boatf very well organised. staff very helpful and friendly. karts are good and grades to your ability and age. will go again. the roof top seating over looking the track and digital score boatf 5 2023-01-31 01:52:39.833374+00 en v5.1 R4.03 {} V+ I3 CR-N {} {"E1.03": "The roof top seating over looking the track and digital score boatf", "J2.01": "Very well organised.", "O1.02": "Karts are good and grades to your ability and age.", "P1.01": "Staff very helpful and friendly.", "R4.03": "Will go again."} {0.036018565,0.019865265,0.04348367,0.1208236,-0.051164966,-0.015304006,-0.046318226,-0.055811718,-0.041358713,0.038467266,-0.03225361,0.062426634,-0.005296339,0.026700795,-0.02342425,-0.07361318,0.0477531,-0.1065736,0.0014085614,-0.09918576,-0.1003723,-0.0679671,-0.0038861337,-0.0012272416,-0.06546444,0.015867462,-0.06108398,0.06994274,0.021867914,-0.028890695,-0.03704585,0.0049431273,0.08567366,0.022208337,-0.03997304,0.06349401,0.056002125,-0.0744499,-0.09257212,0.013188937,-0.012505241,-0.010853781,-0.011396886,-0.011577864,0.02272448,0.016830722,-0.062173035,-0.063767076,0.0137302885,0.037290055,0.036287606,-0.072640285,0.0743077,-0.07234067,-0.026942132,0.07593988,-0.072352484,-0.007754742,0.05469966,-0.08853219,0.074475415,0.048637394,-0.052996885,0.063388504,0.034334313,-0.049890842,-0.06885815,0.10686924,0.024110125,-0.046082117,0.077138156,-0.031730637,0.05970508,0.035965715,0.07518381,0.009007225,-0.023575723,-0.044335775,-0.008007417,0.0031968383,0.02058663,0.019053685,-0.023627209,0.0070541017,-0.026158681,-0.097958475,0.022380592,0.040519323,-0.024954686,0.023713283,0.030962257,0.07247166,-0.032328878,-0.045898084,0.06741907,0.09494972,-0.024850247,0.013716166,0.030143391,0.01910056,0.010274924,0.074517004,0.07011404,0.05073134,-0.06897126,-0.015488227,-0.043741763,0.0486399,-0.01216642,-0.040127765,-0.032648623,0.049340133,-0.041161302,-0.03673859,-0.04937652,0.020690091,-0.028176138,0.06737677,0.036528755,0.019888869,0.0704375,0.03865692,0.067219354,0.023937497,0.043193925,0.010208015,0.011549283,-9.561117e-34,-0.073464125,0.026886731,-0.03611123,0.042371806,0.05646798,-0.08063776,-0.056773957,-0.08642624,-0.0687685,0.076656476,0.019276703,0.09290932,0.014118713,-0.020156275,0.14184818,0.011805048,-0.04202233,0.02792456,-0.16080578,-0.004534706,-0.03534206,-0.017231477,-0.010601526,-0.010109778,0.06913601,0.02771077,0.067224376,0.014981428,-0.002181238,0.01530198,-0.021596637,-0.02685568,-0.07822812,-0.02826569,-0.0019504189,0.034419224,-0.023538401,-0.054299075,-8.719155e-06,-0.008734092,0.006408179,-0.07570955,0.032923218,0.020635413,-0.067404225,0.0860672,0.025370648,-0.015895393,0.028122628,0.0238901,-0.08680975,-0.04559566,-0.042705428,-0.028394124,-0.010834064,0.009028993,0.076499075,0.025551232,-0.01737296,-0.03300148,0.113400154,-0.027202975,-0.039065134,-0.03647914,-0.04734225,-0.05843129,-0.02370519,-0.03413755,0.1131478,-0.032330453,-0.05373017,0.0623814,-0.004392959,0.007509585,0.06732853,0.07923021,-0.0636613,-0.008649601,-0.060654342,0.081042916,0.029933892,0.050141316,0.0030912955,0.030383147,0.07907214,-0.018058676,-0.047148854,-0.02963843,-0.013818076,0.10031144,-0.038029715,0.03501428,0.039485946,0.066769555,-0.023194905,-1.5953016e-33,0.041287415,0.11683424,0.051303994,0.015588596,0.009389185,-0.0104037225,-0.014796034,-0.008252255,0.06751719,0.10580415,-0.051450923,0.055889115,0.010795131,-0.026467226,-0.0072036386,-0.018108249,0.04636003,0.024207273,0.034793086,-0.13728191,-0.005183527,0.034045003,0.0009560418,-0.018359533,-0.027343836,0.05613588,-0.07481993,-0.014178949,-0.09594989,0.022311667,-0.023521692,-0.07990546,0.036040526,0.042948913,-0.014938807,0.008639998,-0.025609184,0.034991622,-0.069103144,0.076796815,0.026598679,-0.008293129,-0.08420647,-0.0016333398,0.0093178395,-0.030115116,0.06256416,0.010444055,0.00589879,-0.06349096,0.030999213,0.044159252,-0.008650049,-0.09188805,0.025215592,0.015422608,0.042748716,-0.0071287695,-0.041648142,-0.022979205,-0.032763984,0.0266866,-0.00710888,0.08789758,0.0014680435,-0.053433754,-0.034719124,-0.0910077,-0.10281959,-0.016856281,-0.09326717,-0.06019931,-0.036140136,0.021751942,-0.013408176,-0.037055183,0.077523455,0.02377029,0.035521735,0.030050522,-0.03821861,-0.054980163,0.015746716,0.015710117,0.0010055806,0.054468457,0.0162571,0.022625929,0.037845228,0.024799092,0.08985221,0.047283515,-0.016734727,-0.0043530087,-0.027843744,-2.5082114e-08,-0.026316466,0.02120293,-0.033514388,0.02327556,-0.049007118,-0.12090507,0.012226227,0.054263286,-0.041704737,0.06992222,-0.04183761,0.02124752,-0.05845632,-0.003453915,0.025151903,0.022497112,-0.05672416,0.16176651,-0.07542658,0.016454685,0.083001114,0.019142894,-0.07703931,0.08603191,-0.07630025,-0.07813579,0.035552733,0.014818979,-0.014526924,0.0012940058,0.00028010513,0.07156687,-0.061106652,0.039788898,-0.035243988,-0.05199576,-0.057012036,0.04730564,0.034839746,0.00024249047,-0.08632683,-0.04602974,-0.029746585,0.043276053,-0.012103784,0.05755459,-0.045086227,0.02939864,-0.054841723,-0.073481396,-0.061224114,-0.010633064,-0.050105415,0.029158393,0.018602595,-0.0056004464,0.015427793,-0.08897724,0.011995841,-0.039521556,-0.038987756,-0.07412204,-0.051071994,0.026793586} 0.68 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:52.418185+00 2026-01-30 02:01:09.269801+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1330 google Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB 1 t 1333 Go Karts Mar Menor unknown Amazing karting circuit! The track is exciting and well-designed, and the prices are super affordable. Perfect for a fun day out with friends or family — highly recommended! amazing karting circuit! the track is exciting and well-designed, and the prices are super affordable. perfect for a fun day out with friends or family — highly recommended! 5 2025-09-02 00:52:39.833374+00 en v5.1 V1.01 {} V+ I3 CR-N {} {"O2.02": "The track is exciting and well-designed", "V1.01": "the prices are super affordable"} {-0.06834786,0.0010481728,0.0042153923,0.045211412,-0.09443053,0.07175094,-0.028615827,-0.005652257,0.009783398,0.0069843363,-0.0012481987,0.033161923,0.019822812,0.0057565467,-0.051979683,0.00690751,0.040958032,0.003741616,0.042084925,-0.057386063,-0.04963978,-0.05089822,-2.9001789e-05,0.04902429,-0.072529145,0.057239495,-0.032257255,0.039946564,-0.023680871,-0.08769777,-0.08030683,0.037894808,-0.02466965,-0.028072586,-0.057139546,-0.056940723,-0.051490866,-0.002761612,-0.008096915,-0.018297385,-0.02325103,-0.042512074,0.05889653,0.0004507364,0.012072601,0.083701015,-0.037385643,-0.057185244,0.026408847,-0.015133098,0.04803639,-0.06150287,0.11452095,-0.009320019,0.016620519,0.0073187514,-0.1070386,0.005057747,0.05495315,0.0018291527,0.021721998,-0.032749716,-0.0048757447,0.01610432,-0.05642249,-0.10691488,-0.09404666,0.02328192,0.030402748,-0.025527645,0.005499762,0.024976674,0.011255445,-0.047687188,0.059542805,0.016691526,-0.01204981,0.029122008,-0.0786206,0.051091626,0.049147777,-0.050516374,0.0139513975,-0.086308695,0.057553776,-0.0697577,0.09876797,-0.000118764554,0.047821376,-0.0029721877,-0.011198069,0.09499937,-0.06713244,-0.069961004,-0.06469957,0.034894172,-0.067776434,0.01649871,-0.015166309,0.015843023,0.08976095,0.07721696,0.041065782,0.00277907,-0.04041831,-0.029459555,-0.014703174,0.07232622,0.047306668,-0.049058452,0.042075206,-0.046190843,-0.0018231791,-0.04324588,0.03612286,-0.0040581077,-0.0020995352,0.08061944,0.02186875,0.00975158,-0.046740923,-0.04235531,-0.03241043,0.032762535,0.005302626,0.0020001933,0.07155043,-8.167626e-34,-0.06832942,0.009195865,-0.0074372706,-0.07057441,0.020957626,-0.0838599,-0.06968601,-0.073782764,-0.10792282,0.04451446,-0.038019847,0.041416075,-0.014756727,0.0138554,0.09128053,-0.081686504,-0.08285967,-0.039955225,0.011802939,0.014979141,0.047850017,-0.023261616,-0.0020774228,0.06917962,0.013028649,0.03166504,0.11062787,-0.050815683,0.044740174,0.0064516934,-0.088691786,0.0079820305,-0.046556495,-0.0017746579,-0.05933557,0.017028566,-0.063340135,-0.04608589,0.0025331634,0.04581191,-0.008354389,-0.060586043,-0.020910395,0.013555969,-0.07036392,0.02125501,0.03515761,0.056205682,0.070479415,0.021122664,-0.13305818,-0.0475204,0.02894575,0.02307033,0.029074343,0.026772745,0.055022478,-0.014372877,-0.006851658,0.00737083,0.02050557,0.035236787,-0.058420505,-0.0596089,-0.14335942,0.039565478,0.0021813416,-0.047778424,0.020101348,0.005026414,-0.058598947,0.065576605,0.035648633,-0.07058806,0.11984717,-0.009582614,-0.087370634,-0.037702337,-0.024049526,0.068351,-0.101773866,0.013863436,0.0066011874,0.02558162,0.08034873,-0.012169392,-0.05123897,-0.058051497,-0.0041355165,-0.0020377876,-0.0027312264,-0.018127747,0.04011254,0.11842935,0.088190705,-1.0709214e-33,0.08841586,0.048140112,0.11154648,0.064669594,0.0663721,0.06415726,0.004462411,-0.038336355,0.0020904182,0.04805938,-0.044710286,0.06985925,0.00824539,0.055201847,-0.02599026,-0.07012498,0.015563496,0.02313179,0.06672836,-0.07544656,0.035177637,0.027146846,-0.07194523,-0.054722805,-0.008203506,0.03851527,0.043959875,-0.007905743,-0.01133043,0.06885374,-0.08538663,0.016363326,0.04156332,-0.059013754,-0.071995035,0.068039075,0.07115638,0.04072163,-0.07426343,-0.021316705,0.03528299,0.05622914,0.047022205,0.037378695,-0.021386659,-0.00421453,0.072726,0.06585881,-0.042114507,0.03249809,0.01329438,0.0029022563,-0.039605774,-0.053227093,-0.013054667,-0.050554153,-0.014975982,0.04832551,-0.0525775,-0.024366466,-0.03953986,0.029810078,-0.022602687,0.07526093,0.036777988,0.011915695,0.03063473,-0.015380685,-0.05283206,-0.002340393,-0.09537713,0.06423191,-0.016471537,0.005176725,0.06385362,-0.040173963,0.057745583,0.025605328,0.067349665,0.05927913,0.04739178,-0.037416246,0.01129356,-0.030607136,0.041194517,0.025593337,-0.04631993,0.024031918,0.0059519736,0.064798824,0.075809985,0.07523038,-0.02102143,0.0070313355,-0.059285644,-3.3126796e-08,0.0004499514,0.0880747,-0.07729253,-0.04910123,0.04855117,-0.0753283,0.08327094,0.026691718,-0.11073213,-0.013899043,0.021553494,0.01220104,0.014348326,0.028388325,0.023269858,0.031409424,0.015804285,0.17882793,0.006208835,0.042263303,-0.00395815,-0.04094008,-0.030765384,0.010503718,-0.019173773,-0.01435636,0.02523715,0.060770392,0.028819693,-0.082659334,0.007683728,0.01103783,0.03260332,0.048682716,0.0075100837,-0.028892204,-0.10691695,0.04155435,0.029456643,-0.010216853,-0.07429633,-0.09687051,-0.081442244,-0.029988948,-0.058007985,0.03933943,-0.051553786,-0.06471322,-0.031520464,0.060908645,-0.090222344,-0.059035983,-0.0059432513,0.032627225,0.08105608,0.062008083,0.04853731,-0.062889576,-0.05136713,-0.016733237,-0.030241739,-0.046482112,-0.009777432,0.06721124} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.3002+00 2026-01-30 02:01:08.996935+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1331 google ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE 1 t 1334 Go Karts Mar Menor unknown Great fun for all the family, carts to suit all ages and all are well maintained. 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights. Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package which includes practice time, real F1 grid start based on lap times longer race time, medals plus lots more. great fun for all the family, carts to suit all ages and all are well maintained. 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights. basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package which includes practice time, real f1 grid start based on lap times longer race time, medals plus lots more. 5 2024-01-31 01:52:39.833374+00 en v5.1 V1.04 {O3.02} V+ I2 CR-N {} {"O1.04": "carts to suit all ages and all are well maintained", "O2.02": "1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and strai", "V1.04": "Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp"} {0.04612896,0.010496742,-0.028795501,0.017794693,-0.010542557,-0.02578092,-0.07812022,0.11434897,-0.1017615,0.019954447,-0.020816652,0.012969737,-0.06918868,0.0028766084,-0.027553549,-0.01523487,0.06896735,-0.041067306,0.00016277196,-0.034174345,-0.003914931,-0.06559024,0.03818388,0.056796037,-0.066949785,0.03799908,-0.0470828,0.008770892,0.0020671352,-0.012771699,-0.040351078,0.06077737,0.02834021,-0.0732993,-0.0022004312,-0.1180942,0.085683085,-0.0023794062,-0.008399243,-0.03493509,-0.032259338,-0.042728774,-0.042736143,0.059711795,0.055654056,0.0051527484,0.025763923,0.05475699,0.01655306,0.09829746,0.06733194,-0.010217705,0.050428156,-0.06422473,0.026369896,0.0020021964,-0.03012896,0.046490483,0.03547534,0.0075004147,0.052643202,-0.074859776,-0.057778623,-0.016659737,-0.034211118,-0.061782863,-0.074133165,-0.07843971,-0.00070047425,0.06953871,0.016836522,0.013430279,0.023913607,-0.016957967,0.029279698,0.0074695367,0.008389761,-0.0496098,-0.050629593,0.032632884,0.00023058351,-0.086103,0.06324291,-0.096147515,-0.018740486,-0.06068858,0.09104181,0.029456211,-0.015179278,-0.018528707,-0.048115745,0.00723192,0.0032025864,-0.026047233,-0.043126833,0.05290529,-0.03318987,0.08163751,0.031355835,0.010093226,0.038708866,0.04364152,0.034477223,-0.040791795,-0.025008557,0.0017083561,-0.044095844,0.019467583,0.06098497,0.035015333,-0.0112770945,-0.051312182,-0.017893394,-0.034062564,-0.09953785,-0.02675028,-0.0075498037,0.008868028,0.044540327,0.087768145,0.04217769,-0.062022552,-0.00721472,0.01969304,-0.06694378,-0.036602303,0.04099748,3.23603e-33,-0.1036367,0.05455236,-0.057617106,-0.06859711,-0.0023629924,0.03861027,0.0024500745,-0.074914,0.0005591229,0.07765737,-0.026961125,0.05200547,0.034635574,0.020671524,0.037487127,-0.09639111,-0.019201234,-0.0017026279,-0.036925435,-0.026159972,-0.02236132,-0.031403545,0.081981085,0.0101018045,0.09715958,0.073281646,0.050664842,-0.0026658801,0.06620874,0.02793179,-0.07398598,-0.073699445,-0.025090372,-0.015879245,-0.03994537,-0.044930603,-0.00870115,-0.035599705,0.023816837,-0.0011955547,-0.064604245,0.009175594,-0.018919533,-0.037010763,-0.060100656,0.018417131,0.0740304,0.02529649,-0.015195802,0.0034458886,-0.10788827,0.017563498,-0.055750437,0.024109382,0.057913113,-0.07036925,0.09526982,0.0363487,-0.001429537,0.037728425,-0.0027416365,0.015895242,0.003907364,-0.017243646,-0.013843574,0.0477787,-0.054040335,0.030004453,-0.048178475,0.015435154,0.014637328,0.044621244,0.044713266,-0.06194171,0.039226584,0.013734923,0.03834251,0.0054125036,-0.008986495,0.021118142,-0.17927794,0.012795435,-0.048366375,-0.0053199106,0.02883985,-0.052672207,-0.10290876,0.011538574,-0.036517512,-0.00426276,-0.041804124,0.02237103,-0.039544057,0.03650539,0.031970013,-4.4856842e-33,0.0153192375,0.11294031,0.088078305,0.07128298,0.04069205,0.058411345,-3.172992e-05,0.03522898,0.06016033,0.06893481,-0.08149197,0.00029092692,0.04164487,0.06446868,0.029590767,-0.04255517,0.06467841,0.0025242046,0.056803662,-0.164783,0.06956802,0.042823654,-0.015964188,0.02955137,0.0015490584,0.026366174,-0.011727133,-0.11536065,-0.016065031,0.03965812,-0.056399558,-0.029381648,0.05116574,-0.013898325,-0.048926633,0.020609679,0.03841053,0.11902551,0.013788235,0.06671671,0.042454172,0.01396608,0.021088088,0.00922687,-0.014204245,-0.08245102,-0.0033734292,0.014293924,0.043382518,-0.058846243,0.02102915,0.0018992128,-0.06489914,-0.028130632,-0.06402604,-0.020567859,-0.040921744,0.022523528,-0.01745753,-0.10384797,0.030007767,0.008697482,-0.044459872,0.11416637,-0.0058997767,-0.01887471,-0.018444898,-0.058603548,-0.003195593,0.03997483,-0.08186805,0.054370124,0.014163994,0.051597606,-0.07024459,0.06260069,0.06425995,0.010613013,0.17671709,0.032037064,-0.0014879267,-0.03523019,0.08647934,0.04615212,0.050423674,-0.03307396,-0.058738284,0.00051323266,-0.0015245134,0.01333123,0.05749299,0.08606806,-0.07306463,-0.010969672,-0.037955757,-4.3160906e-08,-0.037877023,0.03238757,-0.021827715,0.07278782,0.042126924,0.003042347,0.018141706,0.1284197,-0.0715046,0.06856945,0.046451963,0.022831935,0.014889129,-0.011799179,-0.032052793,-0.0077396254,0.030566052,0.08793268,-0.01914217,0.05866851,0.016977856,0.013988488,-0.024050804,-0.028840873,-0.09336778,-0.07475299,-0.011552537,0.062360868,0.042734202,-0.06766442,-0.018179577,-0.010168787,0.03495519,0.003979359,0.042526256,-0.09282576,-0.1254229,0.083361275,-0.06701004,0.045797106,-0.042781245,-0.05217034,-0.044657003,-0.037973493,-0.014530753,-0.013249418,-0.11723658,-0.009212884,-0.06370652,-0.060308337,-0.051618304,0.005925098,-0.011393807,0.043531958,0.09592685,0.06436482,-0.06091142,-0.004312415,-0.0545862,0.017915202,-0.03478235,-0.08617074,-0.00851465,0.008154179} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.551656+00 2026-01-30 02:01:08.999994+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1333 google ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB 1 t 1336 Go Karts Mar Menor unknown Great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. He absolutely loved it and dad (a former saloon car racer) enjoyed it too! Great value, friendly team and highly recommended for a fun afternoon. great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. he absolutely loved it and dad (a former saloon car racer) enjoyed it too! great value, friendly team and highly recommended for a fun afternoon. 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {A3.02,P1.01} V+ I3 CR-N {} {"P1.01": "Great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. He absolutely "} {-0.028889176,0.083478734,-0.020954879,-0.0028404146,-0.13337241,0.064876534,-0.0022555566,0.062050518,-0.059776004,0.06356235,-0.0029030219,0.03563548,0.073157184,0.018500043,-0.024711883,0.022076482,0.058539636,-0.047106925,0.06873998,-0.11687969,-0.06433972,-0.0020784813,0.030280054,0.002651941,-0.053820234,0.025329055,-0.055715196,0.055540264,-0.03331117,-0.12759696,-0.0652344,0.0053048907,0.011058115,-0.031788412,-0.111064434,-0.03607476,0.07308622,0.00021019802,-0.011542268,-0.032330237,-0.054495696,-0.06285677,-0.008020663,-0.038946602,0.026491186,-0.00018825293,-0.034525562,-0.086048976,0.06877835,-0.037665557,0.062099505,-0.070720136,0.16994205,-0.020777868,0.041599054,0.0042722467,-0.1339404,0.06626176,0.046794493,-0.013972185,0.041174702,-0.016314764,-0.037562586,0.035539005,-0.034153573,-0.08196003,-0.042937275,-0.060880248,0.021620717,-0.030819736,-0.0027586226,-0.0034941977,0.06473646,-0.040380333,0.02762805,-0.031927027,-0.009560538,-0.02528824,-0.018262884,0.032913245,0.04883844,-0.0057609053,-0.08502629,-0.06976157,0.047439057,-0.059166983,-0.00019777594,-0.03192451,-0.07808036,-0.058021065,0.018254738,0.07040839,0.015466539,-0.0156129375,0.028840331,-0.02195747,-0.034768652,-0.0012754892,-0.027809776,0.031035941,0.025808703,0.07666517,0.02401821,-0.0024516645,-0.0023781478,0.050444365,0.00078260264,0.0888623,0.012291578,-0.047211,-0.008854378,0.04529441,-0.054192103,0.0067674853,-0.0057666493,0.00848613,-0.06516208,0.04218601,-0.026208444,-0.0048395493,0.039573576,0.003151953,-0.014210549,0.08600992,0.048313204,-0.003432729,0.032433063,9.9492235e-34,-0.07622281,0.07266431,-0.03222041,0.037738252,0.04411655,-0.022171158,-0.051263798,-0.043582074,-0.13411137,0.065046854,0.012398435,0.045937065,0.014636561,0.021902207,0.11504258,-0.044382587,-0.1126501,-0.026749216,0.032225486,-0.047775052,-0.004022072,0.014390133,-0.003507887,0.093157634,0.07471876,0.05779787,0.09110128,0.008222479,0.027229646,0.022629393,-0.055781994,0.0147764655,-0.07227816,0.0003726299,-0.050179787,-0.038807835,-0.0036042174,-0.06102526,-0.08027169,0.061609335,-0.05524324,-0.019447949,-0.04830011,-0.0062675267,-0.04604098,-0.012473894,0.023117859,0.04252005,-0.016424716,0.057347897,-0.12648952,-0.0058687115,-0.021353468,0.025783662,0.007314004,0.062472112,0.035349526,0.0034257027,-0.029179761,0.009367252,0.04083555,0.0039627957,-0.043573108,-0.08249547,-0.14278424,0.07808135,0.013997138,-0.060694996,0.054788038,0.012135712,-0.02964561,0.004415057,-0.03241735,-0.112456046,0.06003116,0.036121514,-0.03979682,-0.03145507,-0.01017196,0.027416075,0.03100423,-0.01841143,0.010227236,0.029110415,0.061076522,-0.028939169,-0.077095315,-0.1247983,0.0064114616,0.06383816,-0.03719773,-0.05427459,0.042451132,0.08944433,0.07509796,-2.795271e-33,0.04797193,0.05033148,0.08638613,0.08356555,0.06991781,-0.031250987,-0.030975252,-0.03386858,0.031067668,0.036156617,-0.0002640083,0.10225334,0.037801407,0.018760093,0.020939354,-0.042248983,0.06866953,-0.0051845117,0.045404833,-0.07739146,0.0933405,0.05671,-0.0738752,-0.061312407,0.029952735,0.05650255,-0.110674046,-0.01312605,-0.02934344,0.033392023,0.0058078323,-0.026269855,0.1202781,0.027336862,-0.04514214,0.018500732,0.06320831,0.068908505,-0.07407691,-0.05894744,0.035881735,0.013487121,0.0012371895,0.05540248,-0.0035792845,-0.00051390927,0.10096672,0.031151908,0.04898055,0.05119827,-0.009054923,0.023144832,0.012454578,-0.042564534,-0.01714513,-0.08835703,0.031481165,0.0053468524,0.020351611,-0.007081938,0.025673946,-0.033712704,-0.049135633,0.04846824,0.02886384,-0.051562913,-0.006891249,0.020656379,-0.014412714,0.008064162,0.003932804,0.02697996,0.0013554333,0.006422594,-0.014895581,-0.018911317,0.019297792,0.0012156918,-0.009689305,0.065316804,0.035289567,-0.042117797,-0.013315111,-0.052630614,0.02240638,-0.005752853,0.022327026,-0.03239797,-0.006656358,0.03359437,0.028878259,0.099858955,-0.030967643,-0.06506252,-0.021044314,-3.750065e-08,0.043450806,0.09268344,-0.11309589,-0.010128538,0.014409247,-0.06775184,0.031435423,-0.017640825,-0.10893236,0.015584367,0.001398927,0.045863256,0.038038854,-0.031136,0.062321287,-0.02723285,0.009414303,0.097504705,-0.0014770362,0.06926437,0.039199647,0.02271035,-0.022147078,0.009740391,-0.06216792,-0.075062014,0.016236821,0.033628855,0.017033635,-0.008866626,-0.023595935,0.07154861,-0.040608097,0.030619366,-0.022475034,-0.04865701,-0.064388834,0.08804888,0.016548727,-0.025409458,-0.021659685,-0.06817749,-0.12906484,-0.0028070963,-0.07158062,0.024827475,-0.04849932,-0.08718824,-0.035811145,0.037011843,-0.06637937,-0.02623604,-0.006536207,0.027925104,0.08396431,0.07736911,0.035773806,-0.051316205,-0.013829299,-0.018757083,-0.033022646,-0.02153312,-0.024268877,0.027787704} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.350278+00 2026-01-30 02:01:09.005577+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1548 google ChZDSUhNMG9nS0VJQ0FnSURzLVBpaFJ3EAE 1 t 1551 Go Karts Mar Menor unknown Reasonable prices, friendly staff. reasonable prices, friendly staff. 5 2021-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I2 CR-N {} {"P1.01": "Reasonable prices, friendly staff."} {0.01133355,0.023011478,0.03781849,0.039590158,-0.05388507,0.00026070574,-0.017739262,0.0033812015,-0.036131687,0.036414262,-0.00067717803,-0.020265104,-0.028339723,0.019388165,-0.0070046205,-0.080298275,0.12809452,-0.040708967,0.027912606,-0.03844119,-0.10799626,-0.016937459,0.014817926,0.0125607755,0.028908977,-0.0066251713,0.051556148,0.0391509,0.0023900564,-0.024009792,-0.03214081,0.012417069,0.009723033,-0.022834271,0.029774603,0.093224585,0.051083285,-0.007648284,-0.015815051,0.03774844,-0.0333768,-0.059101745,-0.029611934,0.004155693,-0.06394053,-0.0052032256,0.037672818,0.03956841,0.06839098,0.051372096,0.06430402,-0.018118383,0.022938775,-0.066883974,0.008007142,0.0058726743,-0.04198053,-0.08461109,0.03592398,0.039201587,-0.028770525,-0.04161206,-0.08375123,0.021426074,0.050088607,-0.07444424,-0.0451417,0.024938567,-0.0007816115,-0.07792885,-0.029087866,-0.028279224,0.051222216,-0.014068206,-0.010099599,0.006816783,0.070308484,-0.021973053,0.035981998,-0.056349635,-0.035115615,-0.07336297,0.005202918,0.07139266,0.0063015064,-0.07547283,0.101034895,-0.042832065,0.06320142,0.024681505,0.08800446,0.08266858,-0.043170895,-0.035120085,-0.002933019,0.050350685,0.011889494,0.033653006,-0.05993923,0.07785044,0.0018827438,0.10262945,0.038358137,-0.031168234,-0.07343609,-0.012976044,-0.011050219,-0.011167581,-0.02925938,-0.0025068831,-0.081452034,-0.02579266,-0.13538057,-0.005977744,0.011601949,-0.021470483,0.03658421,-0.08733981,-0.019000078,-0.019254774,0.040541194,-0.007878258,-0.070000045,0.0021169838,-0.052011363,0.027084012,5.9004447e-05,-5.0799576e-33,0.013415647,0.13010845,-0.04457628,-0.014046896,0.03818253,-0.018185582,-0.05094619,0.048369497,-0.008384649,0.054714404,0.013925116,0.034477666,0.018925186,-0.06712528,0.035806432,-0.058951706,-0.026080493,0.062270243,-0.03966116,0.04052859,-0.07532212,-0.03541194,-0.015105124,0.026828729,0.042997453,-0.03549528,0.039486736,0.02834553,0.17619008,0.018886665,-0.009206484,-0.024172151,0.059266806,-0.034783494,-0.039065085,0.069536276,-0.09397434,-0.07448739,0.036153868,-0.019325705,-0.035838682,0.028614441,0.112806834,0.0077281976,0.0808122,0.09907363,0.09007686,-0.013279679,-0.034821175,-0.022610504,-0.048826966,0.017804222,-0.026197338,0.077248566,-0.029492518,-0.0540495,0.059304796,-0.007870644,0.043368686,0.030796563,-0.013096688,0.11835407,-0.0017322267,-0.013460012,-0.03820824,-0.08640038,-0.022276849,0.02744623,0.07237564,-0.04544345,-0.0017515811,0.06325897,0.099270724,-0.032128584,-0.09405452,0.0864349,-0.02133314,0.025289379,0.100642376,-0.010190888,0.01625826,0.014413249,0.035960276,0.046679776,0.081371,-0.02097722,0.04391937,-0.015817322,-0.06513587,0.070674025,-0.021356883,0.0567926,0.008670846,0.022432372,-0.012537066,4.0273527e-33,0.06683385,0.010144161,-0.015409494,0.03906719,0.0070644515,0.07889321,-0.05473411,0.0062692147,0.038920708,0.07184181,-0.17329265,0.040025942,0.028260404,0.027077729,-0.03676051,-0.024870869,0.03704482,-0.022523835,0.028446492,-0.07004508,0.02688741,0.13504817,-0.03546396,0.07476968,0.014570223,0.09467815,-0.13132788,-0.03815465,-0.10021723,0.028456427,-0.08959529,-0.05251671,-0.018559333,0.0022772043,-0.065300554,0.036582828,-0.0044266223,0.06641013,0.011388907,0.07867171,0.065235555,-0.017536458,0.0330505,0.033317752,0.04223897,-0.072557315,0.0019510142,-0.10511482,-0.04762054,-0.0014403944,-0.069632865,-0.01048718,-0.046481445,-0.03521704,-0.091467075,-0.059652925,-0.015542487,0.008552772,-0.018285738,-0.036724553,0.038648866,0.06598432,0.009771079,0.11006284,0.027284807,-0.05204296,0.022005353,-0.035420865,0.01304967,0.0011782584,-0.0750908,-0.017127085,0.043963443,-0.01974267,-0.0148030035,0.018042196,0.089208916,-0.07563626,0.043194473,0.058200337,0.005202618,-0.014837851,0.045228235,-0.017292839,-0.02013792,-0.029903974,0.015399926,-0.038723044,0.009916581,0.042576507,-0.05645561,-0.040342197,0.013578639,-0.01744588,-0.010807135,-1.536397e-08,0.03869387,-0.028135892,0.019170355,0.025594555,-0.026329825,-0.113076076,0.0011069885,0.027455343,0.008948847,0.083339155,0.0021264197,-0.073022105,-0.026419314,0.055656202,-0.02687108,0.058744792,-0.05087489,0.07408964,-0.130426,0.024643784,-0.04072769,0.10704103,-0.03784184,0.02729539,0.0020679513,0.062359136,-0.03469528,0.019019932,-0.025243968,0.07214906,-0.064035185,0.030967416,-0.008695159,-0.0015268417,0.0018500052,-0.009244673,-0.16161697,-0.0027343703,-0.028601369,-0.02840534,-0.023106039,-0.023930129,-0.095613725,-0.018746037,0.08235569,0.002075928,-0.065650046,0.051357295,-0.014582501,0.013738403,0.019212311,0.016811064,0.027319793,-0.037410233,0.02896451,-0.013863013,-0.0025541997,-0.005528174,-0.022174539,0.056037985,-0.012219814,-0.03977065,-0.018352896,0.06632943} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.860307+00 2026-01-30 02:01:09.748641+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1796 google ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB 1 t 1799 Go Karts Mar Menor unknown La opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tus amigos, la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo. Siempre que vamos acabamos muy contentos. la opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tus amigos, la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo. siempre que vamos acabamos muy contentos. 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.01 {V1.01} V+ I3 CR-N {} {"O2.03": "la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo", "R3.01": "Siempre que vamos acabamos muy contentos", "V4.01": "La opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tu"} {0.033801492,0.037310578,-0.05959126,-0.08542637,-0.04783783,0.010568947,0.009582043,0.072500005,0.022699099,0.021990981,0.049955375,-0.016722882,-0.008159326,0.0007604624,0.055038176,-0.0067292787,0.01876937,0.041007053,0.049426757,-0.015725762,0.06658293,-0.0442758,-0.06603307,0.070850536,-0.06446303,0.030156866,0.017270796,-0.0034587628,-0.077138215,-0.07775071,-0.09972368,0.06753753,0.042605985,-0.041146565,-0.015054431,-0.037326973,-0.029283812,-0.084224746,-0.04077614,0.03845956,-0.05607992,-0.007818784,-0.01301712,-0.0662798,0.018478075,-0.078362845,0.04770988,0.079144776,0.06613909,-0.059944842,0.04423021,-0.0025460552,-0.001217451,-0.0113817435,-0.041582618,0.025352137,-0.02285192,-0.014440674,0.115895286,0.028816009,-0.037468746,0.050401684,-0.053976953,0.05188623,-0.03002176,-0.05089394,0.055886354,-0.013988647,-0.04705389,0.035034712,0.055147905,-0.06414387,0.038381733,0.00037853897,0.016685015,0.04591447,0.02422835,0.008848968,-0.07098,-0.060378477,-0.039786197,-0.07335663,-0.04608159,-0.04705659,0.073058695,0.007801637,0.02465973,0.08763117,0.07588279,-0.05098387,-0.01560175,0.11207727,-0.0490051,0.0040977933,-0.07407608,0.023214726,0.00045751,-0.062002312,-0.04943473,0.044997633,0.12917197,0.016363416,0.053431213,0.0114963325,-0.013515588,0.042204216,0.12538585,0.04092903,0.013785732,0.048840407,-0.07964866,0.014637913,-0.02795242,-0.081842914,-0.08709311,0.02681232,0.0018513745,-0.03165529,0.0720652,-0.028825888,0.03521579,-0.09417898,0.0068043377,0.0041885576,0.022507299,-0.028723,0.05774939,1.09269466e-32,-0.070027865,0.043375403,-0.06332921,0.017905336,-0.0688722,0.035949808,0.01096142,-0.012346473,-0.104435235,-0.048038404,-0.08042337,0.021281607,0.013371544,0.02477975,0.10766366,-0.03783153,0.043298133,-0.074855536,0.0794955,-0.03382144,-0.052813783,-0.10503157,0.02888742,0.045517497,-0.02315301,0.027735285,0.002933291,-0.05365199,-0.017255433,0.068143554,-0.081958175,0.04943552,0.036733516,-0.039773233,-0.03690932,0.06991052,0.0932423,0.06112786,-0.0019693167,0.039038498,-0.022591902,-0.03657004,-0.06658444,0.00995599,-0.00019132566,0.02122297,0.026785046,0.07245915,0.07481811,0.0010018698,-0.06384389,-0.08169339,-0.09169111,0.021028137,-0.03417863,0.045078143,-0.030569427,-0.0005674352,0.001762862,0.019388668,-0.023724504,0.029111288,-0.008140821,-0.009848207,-0.07323746,0.072134115,0.036231514,-0.0049106036,0.09432609,-0.027633268,-0.090312116,-0.06155485,0.009193919,0.01918766,0.04476854,0.0063286093,-0.009725812,0.018849349,0.061005104,0.05757258,-0.01604235,-0.030771676,0.033205166,0.029451463,0.09254728,0.061705794,0.055964056,0.08960682,-0.020780515,0.06694757,0.06403321,0.03353606,0.08385201,-0.005249056,0.09023625,-1.1275959e-32,-0.01839396,0.023396183,0.021862566,0.054730244,0.019034613,-0.046678208,0.030589519,0.016339246,-0.02291346,-0.05248877,-0.1295151,-0.08796412,0.041353855,-0.032677993,-0.035333566,-0.0030941404,-0.005700305,-0.047829155,0.046459246,-0.016227448,-0.014643915,-0.028657647,0.014826305,0.013048219,-0.017826498,-0.025049401,-0.040839326,0.037670825,-0.09742943,-0.0011111648,0.017016469,-0.011629012,0.0036289264,0.037775427,-0.066426046,0.10338801,0.035759576,0.07257765,0.029745633,0.032438766,-0.023386603,-0.034919005,-0.019524494,-0.023294242,-0.0016856974,0.010560378,0.07745776,-0.12815882,-0.035916805,-0.019361325,0.06609154,-0.07427648,-0.016157977,-0.0014017773,0.010587101,-0.003799986,-0.060485438,-0.06774201,-0.014635477,-0.04280241,0.08639497,0.025844384,-0.055393428,0.023572002,0.12290878,-0.035900164,0.020624805,-0.029112192,0.014456885,0.07379627,-0.036485773,0.011539287,-0.071171276,0.019211654,-0.01728266,-0.016914634,-0.08121954,0.031185763,0.035820834,-0.02560461,0.015739022,0.015912822,-0.013725108,-0.11143105,-0.03600533,-0.042883698,-0.002774031,0.039755423,-0.008699399,0.031234313,-0.000857548,0.07421386,0.0040812655,-0.06609252,-0.03833874,-5.0229033e-08,0.05489964,0.01220282,-0.086679146,0.018886294,0.02928878,-0.010414195,-0.02132885,0.028743751,0.04484373,0.03618066,-0.008140124,-0.045112923,0.014023703,0.0038920392,-0.08853095,0.10586557,0.056448054,0.08204703,-0.017903587,-0.053135015,0.082106896,0.0586761,-0.034327738,-0.017332263,0.06406109,-0.028308222,-0.051822077,0.12153378,-0.045359388,-0.060910787,-0.09272799,-0.086426884,-0.0725756,-0.04254251,0.04237417,0.0043996344,-0.069157705,0.007013575,0.03810193,-0.05887575,0.04248557,-0.08272243,-0.11196018,-0.03687586,-0.039000828,-0.07380756,-0.09392568,-0.04394956,-0.032522406,-0.012038864,-0.039825577,-0.017186107,0.014357318,0.015268166,0.074477136,-0.035023704,0.008195416,0.029922683,-0.018635659,-0.037716836,-0.050129026,0.01329687,-0.0072211255,-0.058837637} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:04.831153+00 2026-01-30 02:01:10.737956+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1364 google review_59 1 t 1367 Go Karts Mar Menor unknown Wide variety of karts even an adapted one.\nStaff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry.\nThe track is actually pretty strenuous if (like me) you've not done it recently.\nDemanding and twisty with\nvaried corners. wide variety of karts even an adapted one. staff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry. the track is actually pretty strenuous if (like me) you've not done it recently. demanding and twisty with varied corners. 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"A3.02": "Wide variety of karts even an adapted one.", "O1.02": "The track is actually pretty strenuous if (like me) you've not done it recently.\\nDemanding and twist", "P2.01": "Staff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry."} {-0.016185464,-0.008033994,-0.010566202,0.013162619,-0.03174868,0.057006087,-0.101928666,-0.024395445,-0.009188153,-0.00038121594,-0.04081181,0.04725939,-0.048014637,0.03858076,0.020195868,-0.090964034,0.07194078,-0.0410432,0.09292614,-0.054731667,-0.051935337,-0.048236612,-0.014151498,0.019201443,-0.098094955,-0.052717093,0.02194441,0.051564433,-0.009623197,-0.07485181,-0.11208099,0.024881909,-0.0011670538,-0.01854203,-0.034592714,-0.033283714,0.0060070814,0.0133257955,-0.05587787,-0.014858749,0.011372788,0.005016832,0.05354602,0.02361177,0.024674203,0.0080745425,-0.08394645,-0.005888631,-0.04606447,0.06930675,0.030833486,-0.12021189,0.058740802,-0.093589775,0.030762844,0.012974629,-0.058636043,0.0773058,0.094488956,-0.010092735,0.06094702,-0.01584984,-0.08720655,-0.016438263,-0.04651715,-0.06758586,-0.030465519,0.14762975,0.008929132,0.0057103555,0.029623615,-0.01661938,0.014872726,0.021354068,0.06109792,-0.0053374576,-0.043910597,-0.029607885,-0.056715287,0.003247968,0.013910958,0.030246766,0.014871246,-0.019058332,-0.010325104,-0.11626905,0.043724056,0.022517534,0.021488149,-0.005134163,-0.0012408823,0.07180546,0.0148165915,-0.09762424,0.048268884,0.11029393,-0.002472563,0.027392818,0.048505314,0.026321992,0.023837956,0.033223186,0.040833026,0.0068733185,0.024212163,-0.01986836,-0.07019822,-0.025082102,0.05921147,-0.006505248,0.003420757,0.046678383,-0.03890146,-0.040452827,0.0368403,-0.049310736,-0.012446377,0.04532742,0.004339739,0.06027051,0.0008848914,-0.02658298,-0.029686922,-0.018877761,0.016284367,0.0061787283,0.012717927,1.5582493e-33,-0.055180993,0.06900284,-0.030863294,-0.027116278,0.07390712,-0.13991693,-0.049346745,-0.1482814,-0.10190917,0.03421007,-0.035919026,0.08778432,-0.016622286,0.029196542,0.12856027,-0.024620129,-0.065660745,0.0022409074,-0.10306496,0.018614775,0.018276226,-0.025229508,0.022313926,-0.013538889,0.07850913,0.023071293,0.07435927,0.009944203,0.038821813,-0.0055958643,-0.028703984,-0.04276554,-0.062245913,-0.0087423595,-0.050085615,-0.012014322,-0.061832752,-0.07650689,0.005370319,0.02454544,0.0008278879,-0.034796905,-0.0036760375,-0.0014364115,-0.022896951,0.057617012,0.03825639,0.010005914,-0.018433403,-0.011174903,-0.03823028,-0.03892534,-0.010277562,-0.016265951,0.030853292,-0.018427858,0.102256596,-0.009982102,-0.010401633,-0.019293224,0.083065026,0.011485347,0.038189657,-0.03586117,-0.076039046,0.03871221,-0.013828903,-0.035464842,0.047810968,-0.03731602,-0.1170609,-0.009021052,-0.013130909,-0.07093731,0.07351732,0.013232429,-0.013726571,0.031511012,0.0036100314,0.029829768,-0.08385712,-0.018462753,-0.019517746,0.012071901,0.0049132183,-0.01945671,-0.061291352,-0.03628415,0.035838906,0.08872115,-0.0738789,0.060013395,-0.0140972845,0.109302126,0.0106238285,-3.0810269e-33,0.052377902,0.060398944,0.12256951,0.11948821,0.04635998,0.03353721,0.02035509,-0.013465827,0.064731754,0.06312462,-0.060247213,0.0018501014,-0.034643967,0.0163354,0.04444188,-0.053027663,0.0384256,0.041025236,0.041914985,-0.12453277,0.048274506,-0.011445874,0.006037604,-0.08320918,0.069921985,0.04679224,-0.03970466,-0.079298906,-0.086058006,0.015096636,-0.03107841,-0.09755775,0.04293313,-0.032453507,0.0276297,0.05545548,0.048856292,0.06765276,-0.06169068,0.06286012,0.043278422,0.017595932,0.01021813,0.045148123,-0.032171797,-0.016840996,0.010813278,0.012421442,0.015094294,-0.048815392,0.057281073,0.034841117,-0.023762342,-0.06752903,-0.06033332,-0.042242043,0.03410679,0.025526756,-0.023448687,0.03095949,-0.040701974,-0.037885386,-0.050715793,0.059741937,0.051331908,0.0010484075,-0.027869727,-0.063072205,-0.06586808,-0.015509291,-0.11179155,0.031372033,-0.055343192,-0.014623558,0.020204345,0.028246015,0.021518067,0.008327627,0.009177662,0.043224014,0.048699234,-0.011211445,0.029645134,0.056105874,0.05034361,0.1706364,-0.05397061,-0.0008225987,0.045648776,0.028173277,0.11397754,0.044417508,0.043067407,0.011532725,-0.008884975,-4.028172e-08,-0.058162827,0.05902011,0.013871267,-0.005181124,-0.034056023,-0.03147257,-0.0009776872,-0.03440413,-0.03190058,0.11041993,-0.012752689,-0.039151773,-0.0053323777,0.009656078,0.050170895,0.024113951,-0.045875408,0.114185475,-0.06691964,0.06588788,0.007453801,0.018781744,-0.014738433,0.0114870565,-0.07451787,-0.059945438,-0.010427845,0.0387611,0.046784766,-0.014821895,0.014053067,0.048915904,-0.04139365,0.053707734,0.0235818,-0.053752154,-0.10576596,0.067254186,0.02056158,0.068481065,-0.08719598,-0.016578708,-0.109251,0.03926424,-0.03336485,0.021899555,-0.009109262,-0.06761548,-0.10833693,-0.0201932,-0.027057406,-0.057542797,0.039378263,0.0043712645,0.063788205,0.05114968,0.021753324,-0.053459305,0.028525725,0.0018662122,-0.034765,-0.09170097,0.0023554424,0.058148738} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.705698+00 2026-01-30 02:01:09.122757+00 22c747a6-b913-4ae4-82bc-14b4195008b6 236 google review_62 1 t 239 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown NOT PROFESSIONALS/. SCAMMERS\nWe landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van but nobody … not professionals/. scammers we landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van but nobody … 1 2025-03-01 01:27:48.34054+00 en v5.1 A4.01 {E1.03,A3.01} V+ I3 CR-N {} {"A4.01": "Really good set up, great location and great for kids."} {-0.0022171165,0.027929146,0.022511303,-0.018128252,-0.12612349,0.04351237,0.006512618,0.023504576,-0.007366457,0.032244563,0.08049122,0.06381686,0.02623821,0.0009120306,-0.007254406,0.029121218,0.12084514,-0.10927655,0.02574863,-0.107252054,-0.08202072,-0.026435789,0.12928014,-0.02924691,-0.043941867,0.08857252,-0.014284915,0.050956007,0.009936701,-0.0072834035,0.0046951114,0.038469806,0.014803054,-0.004970017,-0.04206317,0.05819801,0.09692193,-0.0782698,-0.02713915,0.016001755,-0.018031565,0.016566975,0.03807871,-0.074447736,-0.10942095,0.06250436,0.04173401,-0.012318862,0.122887745,-0.0221454,0.109105796,-0.056221977,0.06757845,-0.04965923,-0.06415107,0.0976,-0.06470945,-0.051774994,0.02878758,-0.0948171,0.12682496,0.026699966,-0.10422991,0.008124755,0.032890446,-0.063880116,-0.06271385,0.029250007,0.08598899,-0.101455115,-0.025931831,0.0044264006,0.0906633,-0.011604064,-0.029829562,0.020646919,0.044396084,-0.024174126,0.05240463,-0.035811752,0.05377794,0.019479502,-0.028472057,0.004577092,0.013755165,-0.12838334,0.034166485,-0.022453789,-0.007857955,0.010589038,0.07946271,0.04454079,-0.07205161,0.012589178,-0.019158479,0.033991378,-0.008444482,-0.025786567,-0.045469407,0.0031228769,0.0029782085,0.0582941,0.06715574,0.0076497565,-0.024791356,-0.044441085,-0.029554997,0.06060093,-0.016366621,-0.03261147,-0.009038275,-0.036284972,-0.025678687,0.0660557,-0.028551823,0.07200118,0.006445478,0.013532745,-0.014932344,-0.081064746,0.029185055,0.0036707993,0.022310147,0.05494727,0.03990558,-0.03489436,0.022894928,-1.560654e-33,0.0053518545,0.10520503,-0.015674962,0.055267517,0.0765974,0.051276796,-0.021475477,-0.0040265773,-0.0739176,0.07144675,-0.03990367,-0.027086029,-0.021792484,0.022795117,0.040675364,-0.059145916,-0.050565984,-0.010973487,-0.056033246,0.065263964,-0.081683636,0.00024699862,-0.015632747,0.018666213,0.069589145,0.0030618766,0.02034501,0.05232042,0.04584098,0.009875369,-0.094930515,-0.036905464,-0.03138692,0.045865502,0.034408722,0.025225317,-0.06353915,-0.06510873,-0.045595057,0.059789483,0.012882465,0.0030292221,-0.048222132,0.053658955,0.040685967,0.07135966,-0.06376496,0.022331154,0.012663529,0.006280469,-0.08836377,-0.008437188,-0.11954063,0.029181099,-0.04740853,0.06173814,0.009250974,0.0021224024,0.019763066,-0.019728847,0.07448017,0.012859388,-0.041708823,-0.05697675,-0.044794988,-0.060824864,0.058833633,0.022789255,0.10233203,-0.009971594,0.006535243,-0.021103377,0.0803727,0.06468672,-0.025468579,0.065832004,-0.13429296,0.008412018,-0.00999288,0.11577778,0.03644894,0.04181775,0.0067565055,0.016849382,0.055073436,-0.090220526,-0.027925277,-0.107402965,-0.07095189,0.028704759,-0.02474176,0.05556612,0.023998693,0.017514843,0.009280165,1.1115204e-33,0.02550525,0.01971701,0.012454517,0.014145161,-0.021699842,0.027446168,-0.03084254,0.020484481,0.028882917,0.07311381,-0.09474206,0.07981579,0.019327408,-0.011868698,-0.022109985,-0.019001313,0.090136275,-0.016145367,0.023220617,-0.12405266,0.00035059996,0.029491695,-0.09674268,-0.00989966,0.0033530805,-0.006917837,-0.15075317,0.011758675,-0.052827373,0.06791178,-0.051327202,-0.029240463,0.002618503,0.066915445,-0.042488422,0.023545127,-0.006991785,0.03265417,-0.06196938,-0.028325452,0.06333604,-0.012757237,-0.080952466,0.021710793,-0.0033520118,-0.0054839985,0.05935384,0.043608326,-0.038952112,-0.013757319,-0.031967778,0.020174718,-0.042511914,-0.08039508,-0.013220527,-0.07570321,0.030221732,0.019121567,0.014576462,-0.007820829,-0.07497886,0.037097536,-0.020936385,0.09740684,0.0422431,-0.004414278,-0.022968067,-0.016616903,-0.03698601,0.00773995,-0.00095108827,-0.019539397,0.022540804,0.009717199,-0.037217386,-0.050669957,0.09450149,0.00655533,0.022837974,0.049069792,0.0012693414,-0.03438498,-0.058558878,-0.034449767,0.020462086,0.02779072,-0.042154323,-0.037370156,-0.0096348,0.057854112,0.042900104,0.057558723,-0.08448167,-0.0226207,-0.01732988,-1.7995928e-08,0.030593907,0.06844429,-0.06694765,0.014357857,-0.05406795,-0.07511359,0.07324993,0.029697947,0.0049389894,0.020746656,0.039948363,-0.0066185384,-0.05548742,0.028449023,-0.023982974,-0.027967516,0.030982213,0.11819174,-0.05191996,0.054806467,0.01841827,0.07946844,-0.007709019,0.09013146,-0.015777102,-0.030130869,0.02065135,0.023832295,-0.0564031,-0.0031971594,0.0006757992,0.049455386,0.002837272,0.03781553,5.4248074e-05,-0.003303514,-0.08390539,-0.016522584,0.046094444,-0.06048224,-0.028135598,-0.062210906,-0.046924043,-0.0043928,-0.009902798,0.011727769,0.006284181,0.018164657,-0.06016954,0.03081954,-0.04100677,0.020493487,-0.012807355,-0.02540711,0.09106172,-0.008441004,-0.015603195,-0.043368462,0.03233174,0.09040017,-0.05240143,0.04732823,-0.08453562,0.09921637} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.075012+00 2026-01-25 01:27:50.182966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1345 google ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE 1 t 1348 Go Karts Mar Menor unknown Amazing opportunities for the young and old, even 2 seated cars for parent and child if the little one isn't old enough to take the wheel. Very pleasant day out. Also has cafe and roof top viewing. amazing opportunities for the young and old, even 2 seated cars for parent and child if the little one isn't old enough to take the wheel. very pleasant day out. also has cafe and roof top viewing. 5 2020-02-01 01:52:39.833374+00 en v5.1 A3.02 {O3.02} V+ I3 CR-N {} {"A3.02": "Amazing opportunities for the young and old, even 2 seated cars for parent and child if the little o", "O3.02": "Also has cafe and roof top viewing"} {0.035382256,0.10340486,0.054442324,0.028485496,-0.011694141,0.06394863,0.02436929,0.008580322,-0.066833265,0.01132228,0.048226144,0.029365612,0.073723614,0.025261762,0.017482199,0.012728585,0.10172178,-0.0559553,0.040404473,-0.06784214,-0.09389648,-0.04694675,0.026234949,0.019780634,-0.029448401,0.09549858,-0.07441519,0.07323376,0.051573362,0.008478295,0.01175274,0.113406815,0.03655533,-0.007843295,-0.017450428,-0.037537675,0.10921536,-0.07518115,-0.05048419,-0.037481844,0.039236926,-0.024911892,-0.008516817,-0.05905624,-0.015304425,-0.077170685,0.031238293,-0.086301915,0.119086266,-0.061342094,0.06658732,0.020333635,0.07825759,-0.08496006,-0.09610353,0.03669757,-0.085869975,-0.023270305,0.029645033,-0.007657201,0.06599617,-0.017604847,-0.026750559,0.007777936,-0.03486624,-0.13100602,-0.052987393,-0.040232386,0.019917361,-0.061425038,-0.025412066,0.030748384,0.059269764,-0.06019411,-0.038353678,-0.05025961,0.01961742,-0.03288645,0.009965426,-0.06588799,-0.0059501133,-0.04222878,0.010929819,-0.01518932,-0.060717143,-0.008403676,-0.012128923,0.01249792,-0.022136189,0.044799827,-0.045863915,0.023245964,-0.06581434,-0.003474693,-0.025622241,-0.015296106,0.0030096667,0.0023897216,-0.029024038,0.02028367,0.0006385126,0.08570456,0.08819846,-0.017722508,-0.051098462,0.016385134,0.006077912,-0.006414632,-0.03281796,0.011787507,0.044906225,0.024022032,0.02688689,0.042919803,-0.11344407,0.014296638,0.029237919,-0.011311833,0.030602489,0.030847171,0.03914007,0.030158948,0.030476807,0.039408565,0.001699353,-0.09204796,-0.001885243,1.7932799e-34,-0.09988676,0.03397493,0.023375336,0.07268014,0.15729563,0.040469807,-0.04619017,-0.052292347,-0.02055062,0.010623437,-0.005226127,-0.029693604,0.036345992,-0.07134331,0.015975256,-0.0049634846,-0.10827906,0.013068228,-0.05930555,-0.04512601,-0.051834,0.024057977,-0.0044994494,0.052466903,0.05638563,0.032278765,0.07179749,-0.0021109153,0.11006691,0.013520608,-0.051668976,0.067253456,-0.06836933,0.04976034,-0.031978037,-0.035249706,-0.055511005,-0.050722793,-0.06897153,0.0024016267,-0.05564053,-0.048016537,-0.067345195,0.021341603,-0.04513166,0.05723334,0.1094067,0.0050048344,0.014128562,0.0036411253,-0.05797677,-0.012959281,-0.09663381,-0.009620336,-0.04851619,0.061072726,-0.0028321121,-0.002583765,-0.002087407,-0.0399212,0.019321142,0.008497855,0.00019589467,-0.1125116,0.0027896555,0.017601686,0.06460667,0.043751553,0.009296159,0.056731414,0.041992694,-0.027346091,0.002401897,-0.051854115,0.036736283,0.030091094,0.019755365,-0.07322,0.03585326,0.010751387,0.057105616,0.03669642,0.036823325,-0.011388924,0.11374257,-0.037104756,-0.06663431,-0.07480522,-0.07446714,0.02200892,-0.05163154,-0.016683366,0.016543413,0.013731461,0.0087027885,-2.2616295e-33,0.04472192,0.0010620654,0.015544857,-0.046875134,-0.010540169,-0.014577187,0.0013072633,-0.039052695,0.009118292,0.049195603,-0.09771758,0.05735497,0.059873477,0.034979522,-0.041345526,-0.032164913,0.10146789,0.016150242,-0.058371726,-0.014564785,0.031143583,0.04722517,-0.08157813,0.03985742,0.017068867,0.026681606,-0.0790128,0.013820314,-0.07189147,0.0174874,-0.071329504,-0.04540271,0.07180818,0.026361758,0.015568939,0.02648474,-0.04086706,-0.06776159,-0.06737213,0.03495901,0.028201614,-0.121738784,0.06700938,0.085577324,0.03413141,0.027217457,-0.008097753,0.04678314,-0.0481283,-0.010722651,0.08153328,0.018202195,-0.08631971,0.009155021,-0.01765014,0.0013410491,0.08109235,-0.03386476,0.023364097,-0.0008128309,-0.008385704,-0.014347785,-0.10218965,0.043223113,-0.0040764515,-0.088782586,-0.07017942,-0.04686545,-0.06700874,0.0014862713,-0.015297534,-0.017082406,-0.029317258,-0.035638485,-0.09927965,0.056004837,0.1258048,0.039441295,0.05184602,-0.024045454,-0.023319183,-0.0126331225,0.05014211,0.006411847,0.021654818,-0.045871504,-0.040245607,-0.07468495,0.020081451,0.09556328,0.046346333,0.10504158,-0.085043915,0.05429416,-0.047549114,-3.1962156e-08,0.048137393,-0.009254804,-0.0487783,-0.049758695,-0.022297008,-0.0932197,0.063157916,0.02808795,-0.06290591,0.07750417,0.019258449,0.04016343,0.005914488,0.042741787,0.060138535,0.019599352,0.041380502,0.04129833,-0.003994352,0.061533935,0.052210327,0.0168264,-0.011454521,0.10494629,-0.03415548,-0.06672394,0.011440062,0.007375424,0.04847701,-0.06634245,0.0044569513,0.028707905,0.005596017,0.021781221,0.0022409577,-0.08801023,-0.065322414,0.042504314,-0.010131961,-0.027265279,0.002095903,-0.028426785,-0.12637013,-0.02172393,-0.01969524,0.034439377,-0.080385365,-0.028533852,-0.05137469,0.020180304,-0.082004994,-0.030921558,0.007051121,0.064232476,0.084590055,0.042424325,-0.026560158,-0.018924333,0.033857863,0.055794057,0.005491952,0.05819142,-0.03321445,0.048816767} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.520599+00 2026-01-30 02:01:09.064176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1461 google ChZDSUhNMG9nS0VJQ0FnSUQ5bXNhVEVBEAE 1 t 1464 Go Karts Mar Menor unknown Great track, carts and Staff. Overall recomended great track, carts and staff. overall recomended 5 2025-01-30 01:52:39.833374+00 en v5.1 O2.03 {P1.01,V4.03} V+ I3 CR-N {} {"O2.03": "Great track, carts and Staff. Overall recomended"} {-0.029287871,-0.011808051,0.00680533,0.0013685507,-0.061763037,0.034575064,-0.012928749,0.013339407,-0.0896156,0.00013896881,-0.03598503,0.053029295,-0.058821864,0.007346541,-0.048160926,0.013274785,0.107798435,0.037327074,0.06465116,-0.09616897,-0.072854005,-0.060591232,0.011789909,0.055221874,-0.16451505,0.0466391,-0.09101795,0.061981235,-0.04575128,-0.079400696,-0.071663156,-3.1910044e-05,0.04640021,-0.054752693,-0.022427034,0.0018531623,0.107712656,-0.031830724,-0.012161519,-0.018104902,-0.04989059,-0.029114397,-0.0038270943,0.07900856,0.032491673,0.04084195,0.028110217,-0.035560016,0.034556,0.06525617,0.0901555,-0.07050697,0.07268206,-0.03630457,-0.013765506,0.040914565,-0.03643741,-0.0056005735,0.027716283,-0.065905795,0.051454134,-0.055480924,-0.057069182,-0.031278428,-0.018040325,-0.05625705,-0.095286146,0.023439128,0.03844962,0.007277359,0.040347908,0.0033559662,0.018739466,-0.039458305,0.039902046,0.0723596,-0.011012203,-0.045653734,-0.037167016,-0.009698843,-0.036995,-0.041262094,0.02426271,-0.08005994,-0.012952851,-0.07526709,0.053267296,0.0049324497,-0.026692588,0.01363822,0.033412296,0.0946577,-0.02064221,-0.05221902,-0.007346524,0.061713878,-0.027045505,0.02136499,0.015900541,0.016567465,0.06616135,0.077509,0.065592095,0.008478327,-0.09325891,-0.0020667464,-0.04700298,0.036916986,0.026617473,-0.0077932514,0.048095647,-0.0362536,-0.057778433,0.01655029,-0.04569604,-0.0087096365,-0.035726212,0.05346467,-0.022049509,0.032146633,0.027083972,0.009211345,0.031224534,0.021455036,-0.06190573,-0.0059937728,0.07279059,-2.0837755e-33,-0.055824466,0.04544354,-0.026202861,-0.021640949,0.09833741,-0.011056983,-0.04600876,-0.018297344,-0.06121821,0.054807823,-0.013089505,0.05844581,-0.01724078,0.0063854144,0.019937336,-0.07871682,-0.064896874,0.042424157,-0.06475345,-0.00128625,-0.06994981,0.015643954,-0.0038347833,0.011276143,0.12882671,0.028842703,0.04082939,-0.00028549673,0.06370903,0.024548871,-0.05460164,-0.009696397,-0.008532542,0.03948115,-0.03092693,-0.025388611,-0.13273707,-0.065328665,0.022082848,-0.040482808,0.03465187,0.005556508,0.012647566,-0.01239614,-0.07299753,0.04465184,0.029050197,0.054104473,0.057590842,0.027088348,-0.10059731,-0.032511387,-0.01974906,0.00436906,-0.0034296722,-0.09155921,0.07068861,0.06694424,-0.030916303,-0.050397314,0.061657246,0.0853535,-0.026500903,-0.064436354,-0.0046043475,-0.0010808798,-0.03387953,-0.03777331,0.0661312,0.0039777486,-0.072763786,0.008231506,0.08944444,0.045063276,0.021217834,0.04264905,-0.018023325,-0.0023441638,-0.0623786,-0.0020141033,-0.10285636,0.016313644,-0.018360812,0.021952286,0.02680852,-0.020658247,-0.03612305,-0.053634603,-0.054195937,0.0011370505,-0.03456758,0.017966624,-0.043491397,0.082041085,-0.026315846,6.0229663e-34,0.08653206,0.07945274,0.10892071,0.045408364,0.07451531,0.082851306,-0.018924069,-0.047778063,0.07281581,0.050632447,-0.063541576,0.042725623,-0.028090343,0.07151627,-0.060465276,-0.0064187516,0.035731766,-0.045127008,0.021814963,-0.14772673,0.025643047,0.08746906,-0.03204554,-0.011404501,0.015286553,0.01769355,-0.05025182,-0.097461075,-0.040105112,0.034299124,-0.07700333,-0.0013165376,0.06018354,-0.021881383,-0.04343208,0.03312513,0.07746791,0.097135186,-0.009087046,0.05092752,0.057934005,-0.012518389,0.053218693,0.053527713,-0.036978133,-0.03917743,-0.006224951,0.083207354,-0.04339488,0.029803596,-0.03896156,-0.009768122,-0.06895616,-0.075228125,-0.010768538,-0.0050647375,0.048353612,-0.07427845,0.016392652,-0.05000148,-0.081296675,0.075890444,-0.036472734,0.080043174,0.030723758,-0.060905285,-0.0063827652,-0.06671448,-0.07231459,0.011520535,-0.0875341,0.06057776,0.046882346,0.043404907,-0.03577082,-0.029245354,0.07992747,-0.00984243,0.076836005,0.07274594,-0.009450085,-0.017403368,0.025549565,0.053608418,0.08532471,0.108951576,-0.0624685,0.0028531877,0.023863796,0.04238438,0.076309726,0.058337122,-0.019714098,0.009380192,-0.07423535,-1.532559e-08,0.0078569995,0.09381058,-0.03277063,-0.008316213,0.028030623,-0.08853364,0.06153771,0.095724046,-0.067461975,0.05804415,0.05962218,-0.027211795,-0.013253456,0.048805773,0.047018655,-0.04282094,-0.017091222,0.13666388,-0.0654686,-0.023706868,0.0007353581,-0.020805614,0.025481885,0.037943255,-0.047331735,-0.071300216,0.008946287,0.023552855,0.01952786,0.00022490196,0.044319898,0.053700767,0.07476748,-0.00038200917,0.053771816,-0.027975949,-0.069424205,0.026736349,-0.023535848,0.024338001,-0.007038222,-0.019881131,-0.07140196,0.018229619,0.035970103,-0.030680913,-0.0348154,0.0208098,-0.08142645,-0.021428687,-0.030040856,-0.07169681,-0.027233345,0.02784313,0.0527543,0.08214657,0.0012749371,-0.012725706,-0.017472774,0.043655973,-0.0016763167,-0.05602017,-0.008783371,0.034118723} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.347465+00 2026-01-30 02:01:09.432805+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1359 google ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB 1 t 1362 Go Karts Mar Menor unknown Every year we come back and we never get bored, it’s now like a family tradition.\nFriendly staff who speak English and very good with kids. every year we come back and we never get bored, it’s now like a family tradition. friendly staff who speak english and very good with kids. 5 2026-01-30 01:52:39.833374+00 en v5.1 R3.03 {} V+ I3 CR-N {} {"P1.01": "Friendly staff who speak English and very good with kids.", "R3.03": "Every year we come back and we never get bored, it's now like a family tradition."} {0.074334726,-0.039812613,0.09398603,-0.011296729,-0.03650894,0.0126946755,0.03612228,-0.11677427,0.0201195,-0.009836333,0.016183497,0.008323774,-0.040078226,0.043813728,0.030622846,-0.04745678,-0.05318296,-0.100978166,0.036448304,-0.0977634,-0.057271916,0.03556994,0.018919198,0.035357207,-0.03852245,0.029525964,0.018955968,-0.029205436,-0.0043943403,0.057335097,-0.02943354,0.043103393,0.018682482,-0.019724581,-0.00048097761,0.098803595,0.037098855,-0.04393992,-0.017101223,0.061137773,-0.06093369,-0.003874064,0.09399781,-0.038599182,0.00875184,0.06799649,-0.002755021,-0.028404545,0.0705396,0.09814132,0.08290081,0.018461071,0.09527356,0.0044786856,0.046604168,0.0064554545,0.0074538304,0.015353472,-0.04307801,0.02440708,-0.08966473,-0.011171265,-0.06939199,0.01634178,-0.08535195,-0.0849673,-0.02833517,0.016512528,0.026405253,-0.080798626,-0.104152784,0.011201296,0.104219496,0.084823616,-0.000590109,0.11347601,-0.01862548,-0.04264427,0.045521062,-0.053580705,0.016042532,-0.02008471,0.049296632,-0.010864671,-0.03206203,-0.07089079,-0.010846943,0.00885895,0.034041822,0.026253775,-0.028561804,0.016724665,0.032548133,-0.007790923,-0.01662577,0.011604309,-0.0033862416,0.07198228,-0.14808546,0.077980764,-0.044417642,0.08268313,0.058902513,0.030860096,-0.083708666,0.052207556,-0.018702203,0.012873594,-0.012577399,-0.099754214,-0.043154057,0.03457476,-0.009600338,0.01944674,-0.024579154,-0.03667997,0.04814539,-0.061131332,-0.048943624,-0.012467328,0.06195922,0.12091036,-0.063491546,-0.0058579408,0.019661086,0.015746506,0.10102592,-2.3606645e-33,0.08610336,0.0996409,0.00470676,0.075915135,0.025879065,-0.032571834,0.021546515,0.021299357,0.006872352,-0.07034326,0.071944,-0.025477396,-0.031228274,-0.10161775,-0.0034348103,-0.006532813,-0.0970929,0.009286832,0.031396415,0.010928655,-0.004360329,0.002096433,0.0420483,0.050486185,0.003937742,0.008241001,0.048641756,-0.0687215,0.09438094,0.01472284,0.029547071,0.013725822,-0.017191906,-0.07051304,-0.069331594,-0.012262391,0.10601473,0.0012762437,0.029201286,0.025238654,-0.038461227,-0.037884116,0.06373077,0.037873484,0.007128906,0.0010095104,0.11645623,0.002688543,-0.03055307,0.03720695,0.0157575,-0.07246291,-0.005945134,0.05843438,0.092136405,0.015741704,0.08772738,0.026574515,0.03759087,-0.07045815,0.05722544,0.0764509,-0.00064769574,0.038323145,0.009680231,-0.011421407,0.054838862,-0.009756883,0.031821903,-0.1154838,0.035950772,0.013521434,-0.080471314,-0.04068755,-0.045845427,0.09581334,0.0092849275,-0.120845206,0.076473795,-0.020263426,0.016758028,-0.006299446,0.031538423,-0.007923024,0.089761816,-0.056024175,0.099723555,-0.07749222,-0.0036996792,-0.02123425,0.013903996,-0.014129497,0.12353883,-0.00017448424,0.039841734,1.4918432e-33,-0.017937914,-0.04225003,-0.017298205,-0.016531708,-0.048843123,-0.051220536,0.005854096,0.032083273,0.02724702,0.047074713,-0.052052353,-0.056103334,0.018807296,0.115712084,-0.029632922,-0.08213029,0.011591883,0.038905676,0.007121446,-0.010048936,-0.0106115,0.09720911,-0.053917073,-0.018200645,0.004330771,-0.015644476,-0.08603119,0.012236733,-0.099046044,0.008408752,-0.06258957,-0.006643883,0.02351527,-0.033600505,0.0050433343,0.04212318,-0.039019853,-0.0186944,-0.1070905,0.062073205,-0.018770764,-0.04458622,-0.04217346,0.010474206,-0.014526778,0.029840719,-0.08520757,-0.049370542,-0.07207644,-0.025807116,0.015513115,-0.016169323,-0.07801988,-0.11764644,-0.032721393,0.03747823,0.004900317,-0.06033429,-0.066535026,-0.06039115,0.014017779,-0.02905485,-0.033349894,-0.020576607,0.03574981,-0.045925975,-0.028738702,0.045118086,-0.013697749,0.022134664,0.006874259,-0.032544307,-0.06933903,-0.03966323,-0.027850414,0.049718183,0.04971163,-0.097868495,-0.008894456,0.018910127,-0.024128878,0.009549652,-0.0051618475,-0.010115544,-0.016129227,0.046833888,-0.03296447,0.025262794,-0.025795784,0.01019243,0.048446957,-0.024213638,-0.0353359,0.006095295,0.011361579,-3.0025525e-08,-0.0033853853,0.039894477,0.0029885892,-0.015858306,0.05832641,-0.117424466,0.040057316,0.03282327,0.025621498,-0.02354076,-0.046426214,-0.003701899,0.059848316,-0.024637869,0.1293662,0.09124591,0.06361004,0.08464241,-0.04919381,0.009945317,0.033456896,0.058094144,-0.026309568,0.015951768,-0.10287324,0.035129823,0.006938309,-0.046042938,0.017133966,0.004519962,-0.018441029,0.011535738,-0.04667552,0.0012931465,-0.06487738,-0.105107404,-0.11463767,-0.016503772,-0.021840032,0.011189247,-0.037631232,0.019874027,-0.008679357,0.013547016,-0.032196924,0.056830592,-0.005708019,0.07125839,0.02352894,-0.007407846,-0.06684558,-0.026597308,-0.001374082,0.0055620135,0.097002655,0.015124798,-0.010634891,0.0057734097,-0.0126433335,-0.02298997,-0.04020717,0.09974112,-0.05571991,0.031605978} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.669099+00 2026-01-30 02:01:09.108014+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1338 google ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB 1 t 1341 Go Karts Mar Menor unknown A great place to spend time and have great fun. The track is long and full of turns. Fast go-karts, which further enhances the driving experience and puts a smile on your face 😁 a great place to spend time and have great fun. the track is long and full of turns. fast go-karts, which further enhances the driving experience and puts a smile on your face 😁 5 2026-01-30 01:52:39.833374+00 en v5.1 O2.02 {O1.02} V+ I3 CR-N {} {"O2.02": "The track is long and full of turns. Fast go-karts, which further enhances the driving experience an"} {0.03155256,0.025817115,0.041785143,0.10013139,-0.08991001,0.07157558,-0.023247978,-0.04306615,0.009924624,-0.008610823,0.024781011,0.046773043,-0.024596436,-0.00093187205,0.022733651,-0.09428046,0.12368683,-0.06555925,0.0691081,-0.07264019,-0.034955412,-0.08226796,0.039505806,0.07087736,-0.13144484,0.046117537,-0.059107218,0.08809256,0.038017333,-0.0055706594,-0.083271995,0.06640038,0.0154687865,-0.0038765962,-0.07415546,0.0068221865,0.02109725,-0.065621376,-0.0279522,0.0109116575,0.03274581,-0.020466011,0.04317252,0.061422426,0.00074906094,-0.009223003,-0.048651155,-0.052454874,0.030784626,0.039623037,0.09138352,-0.013039086,0.0330771,-0.056202963,-0.0023244421,0.018428724,-0.12071284,-0.004783779,0.062806144,-0.03849897,0.07650629,-0.0020604073,-0.024992533,0.022708014,-0.019682175,-0.079981,-0.05833851,0.069314905,0.013580089,-0.036535304,0.041454766,-0.0010960875,0.038913317,0.0076753115,0.00018709007,0.008871667,-0.055209987,0.01147035,-0.11173281,0.04863984,0.06893205,-0.013468028,0.04109639,-0.023589332,-0.050442252,-0.076772735,0.013508024,0.010006248,0.0073633795,-0.028893927,0.066840924,0.032277465,-0.059320208,-0.0731919,0.027336245,0.056636166,-0.045181043,0.031126821,0.029074933,-0.01750603,0.09027459,0.031687148,0.030947179,0.05891442,-0.05641526,-0.007812461,-0.05531747,0.06832158,0.09650992,0.034405664,0.015320861,0.06094365,0.0312535,-0.011343185,-0.045055665,0.06020397,-0.008989468,0.05112831,0.01214136,0.033006515,-0.015212755,-0.020766696,0.008191268,0.045233924,0.046002414,-0.05915592,-0.0013574417,-2.1576691e-33,-0.10078157,0.02460744,0.016335266,-0.051734272,0.043270823,-0.07244862,-0.04686365,-0.16046953,-0.14479122,0.054183275,-0.013660715,0.021352239,-0.020563459,0.03239357,0.09798979,0.003850726,-0.058727592,-0.038366985,-0.07183973,-0.030643746,-0.00018217342,-0.07252544,0.004274966,0.024183547,0.03953828,0.014864101,0.06015004,-0.02405072,0.043019563,0.013717725,-0.098167956,-0.019282684,-0.09404876,-0.013715775,0.0038475161,0.005884854,-0.07851364,-0.06310959,-0.039486032,0.023738103,0.046244856,-0.07255875,-0.07074593,0.05419666,-0.04314771,0.055369757,0.0072058504,0.03395933,0.06993443,0.017158277,-0.08736638,-0.049661,-0.06982923,-0.006331878,-0.013434043,0.054308485,0.07554317,-0.007988502,-0.0139168,-0.047086168,0.034869075,-0.010107875,-0.02121885,-0.054102037,-0.070572555,0.02255361,0.01442208,-0.026377307,0.082230106,0.016614974,-0.011590606,0.02548168,0.032728553,-0.027839405,0.07684281,0.015917258,-0.06616465,0.016968468,-0.029683812,0.087868415,-0.007328226,0.004461086,-0.06184836,0.03896089,0.084711336,0.012324597,-0.028288921,-0.0981853,0.0013047869,-0.031397026,-0.026158582,0.034091122,-0.024753788,0.06387826,-0.04251011,1.7970272e-35,0.13417718,-0.014134519,0.08099779,0.06042857,-0.007125193,0.01609829,-0.0032456252,0.003781009,0.062400408,0.085892625,-0.07865121,0.041471135,-0.009276704,0.003165667,0.046562806,-0.010053938,0.10021929,0.03573933,0.015118493,-0.079408795,-0.0029525857,-0.022776896,-0.03760944,-0.06203449,-0.02002379,0.04115501,-0.029087968,-0.02046526,-0.0883576,0.020179763,-0.0472316,-0.029887373,-0.010162183,-0.07347233,-0.0061184387,0.054856148,0.014439811,0.019133445,-0.07881313,0.0065258793,0.047322527,0.0013366889,0.03498889,0.036335975,-0.016612692,0.043159038,0.034043763,0.05128618,0.005632653,-0.037104957,0.0680449,0.04641182,-0.034686983,-0.00464287,0.0075270967,-0.023371138,0.0077758296,0.008200366,-0.061655987,-0.037596956,-0.025911247,0.03376248,-0.039533056,0.06672168,0.026335536,-0.048672438,-0.054810096,-0.079451144,-0.057036318,-0.010811917,-0.13065302,0.009296061,-0.053772975,0.07378224,-0.07435506,-0.034647863,0.067651935,0.032672167,0.055243555,0.07161531,0.013026729,-0.007500271,-0.021143682,0.021184634,0.0017299623,0.039717034,-0.0576744,0.027856613,0.047569856,0.0050411597,0.113421984,0.09978745,-0.06356142,0.0028438868,-0.07950913,-2.774913e-08,-0.007171248,0.04468712,-0.06483963,0.0139938425,-0.05479999,-0.049653582,0.03655383,0.07666204,-0.058196258,0.046935435,0.013006508,-0.04465825,-0.030864323,0.025413554,0.014384257,0.012011597,-0.0070819184,0.11212939,-0.0072031356,0.06557023,0.020504395,0.02227287,-0.0141492905,0.04693314,-0.06478758,-0.04753277,0.06409347,0.06027185,0.050707836,-0.09563163,-0.04400533,0.07853586,-0.02894748,0.051502693,-0.03208057,-0.06517738,-0.06757652,0.080565326,0.056331135,0.015765179,-0.06853935,-0.0312916,-0.044776995,-0.0035518373,-0.072325684,0.027894221,0.011812477,-0.035336055,-0.05711072,0.046211753,-0.11070782,-0.0013785226,-0.04964997,0.049290955,0.042086378,0.038757365,0.0008555401,-0.09592436,-0.025155352,-0.022092013,-0.020520857,-0.041742884,0.0012200221,0.019868005} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.660068+00 2026-01-30 02:01:09.021803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1549 google ChZDSUhNMG9nS0VJQ0FnSURRNktIaEZ3EAE 1 t 1552 Go Karts Mar Menor unknown Great track with very helpful staff great track with very helpful staff 5 2019-02-01 01:52:39.833374+00 en v5.1 P1.01 {E1.03} V+ I3 CR-N {} {"P1.01": "Great track with very helpful staff"} {-0.067133896,-0.017400313,0.017158503,-0.0029888484,-0.003008883,0.10786395,-0.0019254583,-0.019211808,-0.060928784,-0.06691482,-0.033241153,0.059201397,-0.019153686,-0.024931794,-0.08844628,0.031896763,0.023988444,-0.0131488135,0.019656852,-0.05759499,-0.072045006,-0.005332684,0.029054344,0.08850271,-0.14206173,0.055222355,-0.09533469,0.033321112,-0.0065269493,-0.049709253,-0.062100478,0.024973,0.03544863,-0.02625586,-0.029032772,0.019724982,0.020140182,0.032484572,6.4092616e-05,0.0067112893,-0.05401535,-0.02874792,0.056801807,-0.005572054,0.027450623,0.039586883,-0.024857057,-0.084710635,0.04118629,0.037640974,0.0028866609,-0.08537408,0.05407808,-0.04345271,-0.0382802,0.08025539,0.029522603,-0.007192958,0.013537324,-0.07569327,0.023890965,-0.08310309,-0.069127515,-0.049547657,0.034212682,-0.016828578,-0.092286125,0.054403353,-0.010257225,-0.0056433436,-0.014863458,0.021742508,0.050179202,-0.011373602,0.025768077,0.0969279,-0.0389474,0.017891355,-0.02006896,-0.05724875,0.050294183,-0.059476066,0.013011912,-0.058730472,0.034503046,-0.045846928,0.06348232,-0.028877242,-0.0077674906,0.0027066402,0.02759303,0.12222556,-0.00040941918,-0.07031758,-0.007754108,0.0137010235,0.0019913237,0.021873327,-0.039896287,0.08818186,0.08581795,0.062148884,-0.008710645,0.015426386,-0.027153851,-0.01976906,-0.012761978,0.0717064,0.03994228,-0.042514745,0.09291141,-0.020161191,-0.034378164,0.041466948,0.040444568,0.0017775707,-0.026255485,0.054786347,-0.050944626,-0.01932335,-0.014191264,0.011533408,-0.029830737,0.0062009944,-0.01370216,0.025829975,0.07619435,-2.0814243e-33,0.017643968,0.022106605,0.04393709,-0.06010388,0.09928983,-0.009956922,-0.123187184,-0.021041976,-0.06334235,0.05288565,-0.016443487,0.055626716,-0.004656597,-0.03995303,-0.03671128,-0.12083329,-0.09717232,-0.007989786,-0.07735565,0.06393958,-0.024125988,0.023419129,0.007899837,-0.08270152,0.107192785,0.003374186,0.006776741,-0.020129856,0.109899424,0.03547456,-0.035274673,-0.0249735,-0.03290956,-0.011463918,-0.02402184,0.010729243,-0.13412066,-0.07315883,0.01141556,-0.051611606,0.080124795,0.0041837976,0.024310049,-0.025044547,-0.079693496,0.054443873,0.022876672,0.078169286,0.09367304,0.020232268,-0.07166839,-0.023111792,-0.06517497,-0.04116139,0.055765122,-0.046832837,0.060763735,0.06344788,0.008813224,-0.032327753,0.11865323,0.07631746,-0.028378515,-0.05340016,-0.0134164,0.011642152,-0.0054880306,-0.03825273,0.03516439,0.0106941005,-0.09027892,-0.019144068,0.08065255,-0.0422243,0.04896295,0.004428118,-0.047333572,-0.01901311,-0.0018670359,-0.033993483,-0.06926095,-0.033121932,0.022311177,0.0007860736,0.043682966,-0.01844193,-0.013459041,-0.032913428,-0.063001595,-0.01760295,-0.025330532,0.036148496,-0.03618584,0.08238988,-0.03472311,4.965078e-34,0.058119263,0.11333731,0.12516493,0.024520079,0.039771143,0.08635092,-0.036762465,0.008599477,0.06670788,0.11748202,-0.01710809,0.006044624,-0.017390491,0.04406296,-0.05990185,-0.08343054,0.024963321,-0.010823366,-0.011819088,-0.13013542,-0.0009708321,0.0031231574,-0.0049225744,-0.0007487066,-0.010959397,0.035102114,0.03234671,-0.019911326,-0.03380486,-0.058564298,-0.058283716,-0.0037781657,-0.03605442,-0.07241013,-0.044611607,0.04104399,0.0023975815,0.04655305,-0.070787705,0.030653363,0.0069745583,0.078819685,0.035223,0.011468726,-0.022099627,-0.02482827,-0.007161157,0.13714199,-0.08507111,0.053683657,-0.051328227,-0.04716284,-0.0049069533,-0.05769511,-0.033105616,0.04137439,0.033658173,-0.06354893,-0.023575714,-0.03729294,-0.11783476,0.070436575,-0.05182917,0.024097146,0.06901845,-0.06155927,-0.0046172747,-0.029650532,-0.06788002,0.075597174,-0.08044171,0.061030887,-0.013604277,-0.01796469,-0.032634687,-0.0061390647,-0.0013308295,-0.04440963,0.0033926412,0.019039009,0.009382526,-0.040292673,0.038425162,0.008757104,0.029384336,0.12794198,0.015753778,-0.0011900547,-0.008300077,0.08837917,0.08128039,0.06319751,0.004738401,0.017124278,-0.09156938,-1.5743963e-08,-0.017504472,0.10040282,-0.031153636,-0.05996838,0.064623386,-0.055660065,0.064731054,0.05315011,-0.051110405,0.046524677,0.05292154,-0.037811458,-0.052058462,0.08625944,0.04867441,-0.04300064,-0.040721707,0.14215268,-0.07300754,-0.022600336,0.027431043,-0.015808862,0.044206817,0.0021549633,0.022677619,-0.020381628,0.0129796155,0.065881975,0.0022854588,-0.048387416,0.062207937,0.058377042,0.027429866,-0.025797358,0.051429287,0.03521311,-0.033041112,0.039248507,0.02128603,-0.013301713,-0.028576164,0.042918112,0.01147842,0.030100798,-0.0003913757,-0.040839378,0.02725831,-0.017924234,-0.04195842,-0.04481876,-0.018776447,-0.07199595,-0.0064943153,0.055924803,0.054280665,0.10525775,-0.0038789236,-0.011536637,-0.060539182,0.006944797,-0.01451137,-0.0105354255,0.008791248,0.05864382} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.90176+00 2026-01-30 02:01:09.751825+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1376 google review_71 1 t 1379 Go Karts Mar Menor unknown Track is good but €20 for 8 minutes is a lot and the track is small. Longer time would be better track is good but €20 for 8 minutes is a lot and the track is small. longer time would be better 3 2025-06-04 00:52:39.833374+00 en v5.1 V1.02 {V3.01} V- I2 CR-N {} {"O1.02": "Track is good", "V1.02": "but €20 for 8 minutes is a lot and the track is small. Longer time would be better"} {0.041519325,0.020831209,0.0105869835,0.009878824,0.015796704,0.062339142,-0.09159506,0.03880766,0.0038699226,-0.0642992,-0.008654874,-0.0008999165,-0.07807539,0.02348793,-0.019736549,-0.04877048,0.09717692,-0.03378267,-0.040175386,-0.0438048,-0.009260501,-0.08034579,-0.003933774,0.074548565,-0.060727086,0.012668989,-0.007814217,-0.029287541,-0.015942167,0.00015775346,-0.036591202,0.05410416,0.011103698,-0.035478055,-0.023367146,-0.031451248,0.047802992,-0.008432312,-0.06714849,-0.004715929,-0.032065433,0.0041631726,0.018499525,0.011042765,0.029498827,0.049175546,0.049449805,0.0018299425,-0.01168412,0.07198134,0.06413432,-0.04498801,0.023509128,-0.06819791,-0.030538876,0.079171434,-0.008448902,0.062906176,0.027713265,-0.013951241,-0.04016276,-0.043607716,-0.046016645,-0.051157027,0.010630182,-0.07325501,-0.09293983,0.038224977,-0.0033978387,0.090275995,0.017650997,-0.016362462,0.009235149,0.019710872,-0.0014100088,0.021466611,-0.027548071,-0.04229075,-0.038983084,-0.0023817562,0.035860695,-0.076343976,0.001656912,-0.08134729,0.0790471,-0.05622188,0.125483,0.027762756,-0.0098530045,-0.039534364,0.039903544,0.11077692,-0.01686008,-0.034431305,0.016900081,0.06950411,0.0030072625,0.13685071,0.011054704,0.02029641,0.050072845,0.054397188,-0.016403724,0.06748911,-0.05100394,-0.051125698,0.054073293,0.10713329,0.042444073,-0.036105063,0.065131396,-0.02540272,0.00403032,-0.045599926,0.022366064,0.0777935,-0.044843383,0.022743518,0.07350375,0.046475418,0.024588952,-0.0052729715,-0.033901572,0.040812816,-0.051672842,-0.023384059,0.098628476,-1.944813e-34,-0.12268702,0.034081653,-0.07057225,-0.14975214,0.05415685,-0.0002245944,-0.08169004,-0.002959116,-0.019919867,0.021599079,-0.01918888,-0.033054743,-0.041416075,-0.007124313,0.07874444,-0.055762876,-0.0033362238,0.067955196,-0.08749605,0.035483524,0.05989608,-0.08668235,0.04369015,-0.04849656,0.11516914,0.00075028284,0.023447853,-0.06971677,0.09420354,-0.0140652135,-0.064473026,-0.00855864,-0.07697231,-0.036801204,-0.031862244,-0.00030272987,0.0005889417,-0.008098176,0.015269251,-0.055801224,0.006584653,0.0059215357,-0.024277324,-0.024959026,-0.049068578,0.050299563,0.016623821,0.019849766,-0.024801759,-0.005054148,-0.034475174,-0.041879073,-0.06306659,-0.084307715,0.027297998,-0.004509569,0.056606084,0.011975296,-0.010683588,-0.0061016562,0.04496387,0.012896498,0.0563162,-0.053713556,-0.024412282,0.11485709,0.0018274531,0.0071308473,0.039698653,-0.06386428,-0.06226616,0.011219732,0.09884595,0.03606933,0.06683445,-0.008389514,-0.0172009,-0.03384565,-0.02464742,0.010973755,-0.048626557,-0.024789,-0.009044253,0.0072791255,0.08228907,0.033440612,0.011893171,-0.03238141,-0.0064580548,0.015323601,-0.05773197,0.023655672,-0.046992864,0.041712273,-0.013398978,-1.1878998e-33,0.061905116,0.010961851,0.09980379,0.050063826,0.04663227,0.079857655,-0.03189995,0.061011065,0.05140098,0.11782362,-0.07173628,-0.050282102,-0.061902966,0.015636476,-0.039007377,-0.05528818,0.07713722,-0.028331667,0.10740199,-0.0818888,0.0075696283,0.03001547,-0.00511095,0.003649474,-0.04684676,0.000994367,0.0023201592,-0.03587538,-0.018634958,0.0011778801,-0.07314508,-0.013128373,0.009890364,-0.10055248,-0.042727254,0.084138006,0.02114159,0.04091188,-0.025760481,0.0950469,-0.011481289,-0.029094398,-0.005404936,-0.010503951,0.012862198,-0.03835747,0.010075363,0.10880311,-0.024130255,0.05516533,0.075789176,-0.021722272,-0.01664498,-0.0690404,-0.060978573,-0.020825777,-0.013025363,-0.1270354,-0.043336444,-0.044294864,-0.026438648,0.056695003,-0.039890345,0.031479053,0.03256448,0.023825144,-0.04798741,-0.028172847,-0.018952964,0.034041025,-0.08401104,0.02199919,-0.045944996,0.05497391,-0.027416293,0.01066203,0.027938468,0.06942496,0.046562884,0.025571827,-0.028072668,-0.039418448,0.053976685,-0.07433377,0.012079053,0.045992523,-0.035468794,-0.016379844,0.007444685,0.035716645,0.10157094,0.034779284,0.027431376,0.045268655,-0.042428963,-2.2386677e-08,-0.027814146,0.04197946,0.026480751,-0.034081373,-0.006616513,-0.07497775,0.022013031,0.030347588,-0.009373012,0.03923661,0.05296923,-0.05970082,-0.053587276,0.049132608,-0.09706904,0.0021185908,0.007380978,0.040573023,-0.026065432,0.11670584,0.03913401,0.0659896,-0.03830936,-0.030767573,-0.021934256,-0.07460443,0.05808363,0.12415799,-0.0069813994,-0.14268336,0.0043593375,0.05423183,-0.008875148,0.06871067,0.043737195,-0.11808982,-0.049341783,0.05253036,-0.025408894,0.016216228,-0.030560484,-0.06479921,-0.06714506,-0.01627975,0.047234852,-0.09019856,-0.030113699,-0.0914773,-0.052067634,-0.026690468,-0.042481095,-0.015983779,0.008028047,0.0061164335,0.13969624,0.0709562,-0.017071959,-0.022800794,-0.039223876,0.04960681,-0.041312423,-0.10441407,0.0034523483,0.04249687} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.724293+00 2026-01-30 02:01:09.157937+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1385 google ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB 1 t 1388 Go Karts Mar Menor unknown Very drively and power place.\nRegular competition on cart and motorbike. very drively and power place. regular competition on cart and motorbike. 5 2021-01-31 01:52:39.833374+00 en v5.1 O1.02 {O2.02} V+ I2 CR-N {} {"O1.02": "Very drively and power place. Regular competition on cart and motorbike."} {0.042664763,0.07355812,-0.006212791,0.058246564,-0.015724568,0.0060906634,-0.013624875,0.04532392,-0.05574512,-0.033735704,0.026341649,0.08638071,0.064697355,0.009615574,0.0059718085,-0.008097091,0.15567535,-0.095230624,0.0063336496,-0.0026069265,0.01345891,0.014928073,0.05357469,0.007993173,-0.052812465,-0.024748595,-0.05564138,0.10934508,-0.00858066,-0.08846875,-0.04742015,0.045810293,0.0031835323,-0.011662307,-0.029388245,0.025086919,0.04471865,-0.0062931185,0.015418681,-0.06289915,-0.0039172675,-0.094182335,0.093986794,-0.017370898,0.017473362,0.017327506,0.08433429,-0.023025006,0.06320104,-0.05930031,0.029016439,-0.051858917,0.061132755,-0.068184905,-0.05157105,-0.02573512,-0.05199795,0.029543491,0.05480487,-0.04831003,0.12942299,-0.011214345,-0.034579102,0.05695737,0.056036416,-0.08320982,-0.037469782,-0.0318822,-0.02450912,-0.026881633,0.039161537,-0.0044457926,-0.00019076717,-0.04455436,0.0059646354,-0.033503238,-0.032215003,-0.022527028,-0.030602876,0.072261915,-0.005212487,-0.09383977,0.0069059627,0.06200818,-0.0043957783,-0.09598416,0.07014564,-0.04087216,-0.01709171,-0.0028448394,-0.050614014,0.06262559,-0.039664157,0.020893497,-0.05117563,0.02448131,-0.0288868,-0.026961472,0.042090494,0.0479721,0.004021359,0.13375716,0.017833773,-0.029060742,-0.05924895,0.05682485,-0.03521947,0.043441705,0.004785116,0.030340476,-0.040731728,-0.021332983,-0.055807084,-0.024971059,-0.09606423,-0.009866026,-0.04951382,0.093918405,-0.014135241,0.048473686,0.007340106,0.010361897,0.043391068,0.009409337,0.021723455,-0.03205987,0.01613611,-3.1160039e-34,-0.06492333,-0.028266612,0.018957658,0.04051336,0.008683005,-0.016343255,-0.0693838,-0.04146419,-0.087471336,0.06908314,0.05099631,0.0010373142,0.035021834,0.018180605,0.14723147,-0.0866242,-0.086694255,-0.07558011,-0.118038096,-0.02789125,-0.008153618,0.028573683,0.0297717,0.011026622,0.055643126,0.011812026,0.08940899,-0.0039521665,-0.0033258991,0.046153594,-0.028129121,-0.004173533,-0.0391247,0.037651427,-0.0151002845,0.05573485,-0.06802769,-0.038865026,-0.005698495,0.07416335,-0.07835489,-0.08582955,-0.10187957,-0.0222938,-0.026390133,0.044553038,0.043951128,0.005316157,-0.07225126,0.027368093,-0.104322635,0.0063298205,-0.015366713,0.04926956,-0.018276518,0.0003755357,0.04868906,-0.013650711,-0.055620845,0.025677323,-0.030411372,0.08595089,-0.022391737,-0.08678859,-0.098879464,-0.019451771,0.007941051,-0.032244015,-0.021086723,0.030113978,0.093436696,-0.05002513,0.01883684,-0.023825437,0.05550838,0.0020132747,-0.037890352,0.01656221,-0.013769835,0.023587411,-0.089195736,-0.0009936403,-0.041367374,-0.052528504,0.042761132,-0.042551626,-0.082769774,-0.1281852,-0.011341045,0.01714419,0.011488457,-0.02802827,0.010763628,0.016498566,-0.0057363794,-9.098071e-34,4.948294e-05,0.040091056,0.05608769,0.0973678,0.050538335,-0.013044115,0.012786927,0.004957357,-0.025062906,0.09104706,-0.124316044,0.015641468,0.053473845,0.01903969,0.06140407,0.018409953,0.097336486,0.00038560195,0.038021892,-0.094028935,0.06532615,0.11239544,-0.013750841,-0.022369826,0.03627248,0.031199122,-0.14653039,0.014682511,-0.045865066,0.027129428,-0.048070367,0.012627516,0.0012737458,0.028105237,-0.09374189,0.13369879,-0.05511164,0.034232505,-0.0066569014,0.001243285,-0.002545358,-0.067221195,-0.011371464,0.05572852,0.025078366,-0.01849134,0.0010085294,-0.02446784,0.06702304,0.018842822,0.043258656,0.08707568,-0.015944552,0.023333983,0.009129485,0.0098429015,0.050641727,0.052045085,-0.10516682,-0.043815553,0.066100515,0.028459426,-0.0048631183,0.1270779,0.0050521805,-0.037209813,-0.0017911557,-0.046641037,-0.012559743,-0.011656743,-0.04722179,0.036487713,0.0089791,0.0450383,-0.07735534,0.029588712,0.103750065,0.036978547,0.029188206,0.0026627618,-0.034114853,0.008929359,0.03387412,0.00542623,-0.029522285,0.06889419,-0.091232575,-0.08811998,0.021479636,0.05479363,0.04679422,0.07473539,-0.10036464,-0.018488768,-0.030644838,-2.1864588e-08,0.010394661,-0.002864005,0.0241456,-0.013877749,-0.031750176,-0.038297668,0.100782044,0.07344032,-0.05881314,0.031323455,0.09836152,-0.008181712,0.052612014,0.021291884,-0.0020526396,0.019622663,0.027817126,0.10606362,-0.06607658,-0.018113982,0.03079709,-0.013425791,0.020879213,0.017542271,-0.058360066,-0.031777978,-0.009361978,-0.0076042917,-0.007425214,-0.053551946,-0.032182027,0.004865003,-0.002337968,-0.040673822,-0.0053174114,0.015263782,-0.09056573,0.015805382,-0.036223255,-0.0006021256,-0.025537476,-0.043602515,-0.030154461,0.05113681,0.022640366,-0.019748492,-0.080319926,-0.03504401,-0.021501247,-0.008917524,-0.059341937,-0.005205814,-0.017885286,0.08395944,0.040172633,0.10545089,-0.052217636,-0.054031815,-0.07030762,0.04278568,-0.01666421,0.007082147,-0.0038252422,0.02834768} 0.55 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.382612+00 2026-01-30 02:01:09.188849+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1387 google ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE 1 t 1390 Go Karts Mar Menor unknown If you're a karting lover don't come here, safety is just not there. You can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. Be aware that there are no marshalls with flags on the track. Maintenance of the karts is not great. They could do a lot better for such a nice track. if you're a karting lover don't come here, safety is just not there. you can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. be aware that there are no marshalls with flags on the track. maintenance of the karts is not great. they could do a lot better for such a nice track. 1 2025-01-30 01:52:39.833374+00 en v5.1 E4.01 {R1.02,O1.03} V- I3 CR-N {} {"E4.01": "If you're a karting lover don't come here, safety is just not there. You can only drive a kart accor"} {0.0758918,0.001548561,-0.025858982,0.020392373,0.031533938,0.050849114,-0.007015305,-0.04459146,-0.058639996,0.012921131,0.0007775137,0.034137547,-0.0040414515,0.015075992,-0.040577818,-0.07201626,0.07614967,-0.07205723,-0.087069474,-0.050319817,-0.041280437,-0.011759993,0.010685915,0.02464778,-0.15403041,0.031373184,0.019414961,0.03294553,0.016149266,0.010506585,-0.06180688,-0.021404352,-0.0134423515,-0.021645762,-0.019254712,-0.056219246,0.0022345802,0.024157494,6.387188e-05,0.007325521,0.023366595,-0.08618877,-0.084706716,0.040551003,0.01792097,0.0391698,-0.059026342,-0.09333575,0.0065380093,0.004299056,0.06969244,-0.0052662515,0.111634575,-0.06577001,0.03661004,-0.090884134,-0.082088865,-0.0018004788,0.056418944,0.06257777,0.06308009,-0.0038061067,-0.0075392043,-0.011246014,-0.066430025,-0.06542297,-0.08675503,0.04761334,0.041631147,0.065057255,0.015490726,-0.004403605,0.026201509,0.018842416,0.04496553,-0.022028646,-0.032097436,-0.043034114,-0.045640226,-0.016895719,0.03527338,-0.029191498,0.06900612,-0.06824338,0.019498458,-0.04629415,0.028122138,0.054977413,0.0153287565,0.02354574,-0.021716537,0.027116967,0.05004193,-0.044658236,0.084489316,0.01783483,-0.050919645,-0.0025568488,0.007343806,-0.044849373,0.036084265,0.05932875,-0.012387241,0.081888914,0.0002084743,-0.004257586,-0.060064413,0.028993646,0.022149866,0.07982471,0.10815647,0.06809927,0.0803762,-0.04900639,-0.045424625,-0.0057232976,-0.13612917,0.050352324,0.010852539,0.022359727,-0.027868832,0.024938628,0.044772517,0.030688046,0.06716448,-0.046855178,0.06506037,-2.530941e-34,-0.07436713,0.031803202,-0.083898045,-0.07534886,-5.746078e-05,-0.14130066,-0.0358113,-0.16040532,-0.091361806,0.052767087,0.0455382,0.013326566,-0.024156146,-0.0680179,0.14502758,0.07900219,-0.02085928,-0.0129354475,-0.12978575,-0.053049486,0.0006086049,-0.098054536,-0.02987758,0.06421481,-0.009021549,0.010561896,0.09629661,0.0021540395,0.045667592,0.010385829,-0.09768225,-0.0037246197,-0.07170639,0.011713266,-0.018265953,0.052958686,-0.10040212,0.008152315,-0.06790832,-0.02573095,-0.036450386,-0.08012369,-0.012554919,0.037425246,-0.012851852,0.051733714,0.061132114,-0.04928243,-0.047237523,0.001972514,-0.11727588,-0.034674875,0.012447172,0.0072296658,-0.052377403,0.06373444,0.07493613,0.0048470073,-0.039717175,-0.059344236,-0.027403384,-0.0013381777,-0.05906287,-0.033169664,-0.07951033,0.012384644,0.03215551,-0.058611356,0.014744819,0.007843123,-0.023524864,0.057762705,-0.08395794,-0.018519033,0.05269182,0.008568131,-0.020908415,0.028183166,-0.023026226,0.028487615,0.023006404,0.019499108,-0.033589292,0.033367444,0.09351502,-0.11179836,-0.07135401,0.038632087,0.0052221664,0.019758804,-0.0378727,-0.045488946,0.013736281,0.091684446,0.0020070053,-3.0111735e-33,0.05456203,0.0286816,0.103821784,0.069783874,-0.044972345,-0.00053176784,0.048728555,-0.043548673,0.0003275145,-0.012491078,-0.06569294,0.018791318,-0.039816447,0.013352161,0.047730274,-0.035102963,0.034817893,0.12509824,-0.018365687,-0.068747595,-0.0013228558,7.013456e-05,-0.01842733,0.045330394,-0.07333177,0.03847572,-0.030164426,-0.05648627,-0.06468075,0.017874144,0.052824587,-0.010931848,0.02082941,0.00844386,-0.05344744,-0.05491152,0.021735275,0.01484829,-0.08607156,-0.0064648464,0.072833404,0.09347782,0.026527826,-0.04101874,-0.04972408,-0.014538776,0.07798846,-0.026105776,-0.0015422661,-0.00530625,0.02822234,0.05162443,-0.002279285,-0.0072074663,0.0043253507,-0.011431669,0.0046351915,0.011153086,-0.045547105,0.0021608614,0.040952124,-0.0024300038,0.0145803075,-0.0015827026,0.008045815,0.023299515,-0.10943976,-0.049642876,0.0062796003,-0.027282644,-0.07725953,-0.006544419,-0.0820657,0.009411423,0.020780021,-0.060708985,0.03445767,0.09631199,0.0001486571,0.0011730529,0.06661866,-0.03591141,-0.01689213,0.0929876,0.0631828,0.03757753,-0.032005843,-0.07493946,0.016982235,-0.015067694,0.058419593,0.05873765,-0.06889452,0.02626223,-0.07775073,-4.6381704e-08,-0.03381025,0.07437386,-0.02247454,0.0140508255,-0.029342543,-0.0017172653,0.03188696,-0.0072726654,-0.03933537,0.053992014,0.00034622423,-0.06615132,0.035896473,-0.029000644,0.007865127,0.07446748,-0.0044812565,0.08814518,-0.004951421,0.08404642,0.052822415,-0.00016767104,-0.018823994,0.11146688,-0.046428155,-0.033020213,0.008345087,0.018478394,0.017402643,0.02083811,0.012113465,-0.006146253,-0.019142456,0.08532192,-0.002386092,-0.07070502,-0.022047592,0.057669107,0.048960794,0.07536738,-0.051911417,-0.02404266,-0.050002318,0.05444161,-0.049843192,0.063730836,-0.06513847,0.004978493,-0.04352836,0.05055306,-0.046825316,-0.051965564,0.01213341,0.095743954,0.04349624,0.041765288,0.047228586,-0.011223491,0.029251086,0.0019842207,-0.048732255,-0.055969384,0.05845228,0.042947605} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.692001+00 2026-01-30 02:01:09.194541+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1391 google ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB 1 t 1394 Go Karts Mar Menor unknown Good karting circuit with a lot of choice. For adults and kids. Also nice investments done during the last years. good karting circuit with a lot of choice. for adults and kids. also nice investments done during the last years. 5 2021-01-31 01:52:39.833374+00 en v5.1 O4.03 {E1.03} V+ I2 CR-N {} {"O4.03": "Good karting circuit with a lot of choice. For adults and kids. Also nice investments done during "} {-0.032764766,0.047212996,0.023690753,0.025370255,-0.13301201,0.05292166,-0.033396125,0.02458945,0.00024017169,0.03557917,0.030348014,0.07865194,0.004802626,0.046768997,-0.02057586,0.0062461207,0.07474936,-0.032759126,0.06807464,-0.10127146,-0.057084017,-0.048530847,0.031690687,0.000558987,-0.0030032657,0.10136611,-0.040330537,0.08552474,-0.016765729,-0.055805035,-0.05710924,0.016255613,-0.017276306,-0.048423897,-0.06069703,-0.011721917,-0.013500553,-0.0042376905,-0.060291093,-0.043769605,-0.008350743,-0.04332306,0.041804142,-0.02826225,-0.0038196656,0.023338983,0.024650533,-0.048459504,0.09099739,-0.01780916,0.106298946,-0.07342954,0.08743027,-0.04421185,0.004709414,-0.032940373,-0.12762593,0.028774736,0.036616012,-0.028629571,0.026785709,-0.035874963,-0.000657981,0.0176108,-0.08984725,-0.066473946,-0.08013817,0.024347998,0.007189276,-0.019181473,-0.0014892548,-0.004881151,-0.036041845,-0.057610508,0.033115964,-0.018445816,0.019923635,0.002322061,-0.032769058,0.015532285,0.032804634,-0.02726178,-0.036266275,-0.05375278,0.051370054,-0.052746627,0.044014465,-0.029465102,0.0034119776,-0.009859348,0.020760313,0.09967617,-0.009579055,-0.03610475,-0.052254807,0.032889795,-0.080103435,-0.012454944,-0.028928958,0.01744344,0.05264177,0.04244311,0.061733343,-0.016284343,-0.041801743,-0.020236786,0.0057278033,0.038232066,0.037752166,-0.03639565,-0.009415477,0.026151681,-0.042310443,-0.017143002,-0.030056903,0.027332311,-0.011805706,0.056236036,0.08694126,0.02513984,0.008664925,-0.013434944,-0.013638186,0.093919344,-0.0093327,0.009647724,0.049061857,-1.9525123e-33,-0.09781003,0.068631314,-0.036089428,0.03735851,0.030830063,-0.024766019,0.0008981311,-0.026477097,-0.0974643,0.0068129958,0.024779823,0.067893974,-0.044279404,0.040298764,0.11499984,-0.09527164,-0.11101797,0.013941526,0.019917145,-0.029836586,0.013122272,-0.00032680813,0.04477094,0.0978842,0.06604162,-0.022050586,0.10692077,-0.042083956,0.029370358,-0.0090986695,-0.051879,0.032601368,-0.010849115,-0.040075026,-0.083890125,0.056922026,-0.043599233,-0.05787864,-0.03732632,0.05848702,-0.061127532,-0.002828895,-0.025233535,0.01689917,-0.015605726,0.04903427,0.023400439,0.08521476,0.017970756,0.031067483,-0.11677085,-0.020670224,0.00960164,0.022438409,-0.02303536,0.024230663,0.061665963,0.034764573,-0.020671483,-0.020147718,-0.007827449,0.03980149,-0.08368924,-0.06447626,-0.16773953,0.073985964,0.045852132,-0.027205423,0.0002777291,-0.003675834,-0.062685,0.045989577,0.06854797,-0.08400874,0.07101492,0.03670551,-0.11712591,-0.048529923,-0.027968913,0.048898924,-0.026109172,-0.018601261,0.00059105485,0.030744882,0.079241395,0.00033589784,-0.025857788,-0.046286125,-0.0009528953,-0.019077258,-0.037252653,-0.020325955,0.0815298,0.12449081,0.07824561,5.6234975e-34,0.042465873,0.03077437,0.1300135,0.124978445,0.0899223,-0.0013631436,-0.0017917654,-0.07734118,0.021637125,-0.0021536616,-0.028923124,0.032738373,0.010974513,0.061415814,-0.033952877,-0.060659226,-0.005147716,-0.03985216,0.059821755,-0.08819327,0.079300895,0.098756276,-0.070278905,-0.02021165,-0.020191295,0.011813056,-0.082157776,-0.030724335,-0.07264404,0.083785705,-0.07074585,0.013041442,0.0670089,-0.011880114,-0.07005649,0.051463522,0.099609435,0.07439837,-0.079255484,-0.0040609636,0.057292335,0.00036779398,0.04455053,0.068620995,-0.0310994,-0.010712886,0.014960315,0.045284573,0.016217798,0.03515222,-0.03299549,-0.006156734,-0.07617235,-0.05428557,-0.049303755,-0.044571266,0.020317681,0.010173869,-0.040732287,-0.022358727,-0.09724361,-0.0016168565,-0.007097857,0.07450713,-0.038325362,-0.013938999,0.0357359,0.004681048,-0.061283387,-0.0069812774,-0.03183374,0.03219832,0.030313583,0.0076101627,0.045900688,-0.0055548265,0.114488445,0.039587345,0.05717293,0.06534825,0.028501675,-0.02758192,-0.04751796,-0.016979767,0.061459128,0.006928973,-0.019565294,-0.06525868,-0.016272806,0.055260386,0.01768918,0.038864713,0.017677039,-0.018748594,-0.043782182,-2.2214921e-08,0.028552286,0.074625514,-0.07536351,-0.020330481,0.019687379,-0.11649166,0.07257812,0.049013853,-0.055494327,-0.031991735,0.04203124,0.031453952,0.026228812,-0.012470712,-0.009716945,-0.021726489,0.037405424,0.16413726,-0.0073859533,0.040946517,0.021796878,-0.00030454158,-0.0024427194,0.017967096,-0.023974737,-0.0366441,0.027826743,0.042309534,-0.0007270354,-0.027169406,-0.016204223,0.0021506252,0.047655743,0.026712641,-0.0064253784,-0.016965283,-0.06927442,0.048627824,0.01668982,0.019143451,-0.035541963,-0.08727093,-0.099108055,-0.040467322,-0.0375299,0.019262215,-0.051077224,-0.080005944,0.009678654,0.11792831,-0.038108014,-0.047055893,-0.018868215,-0.011714546,0.06793482,0.050445486,-0.0045896093,-0.030321635,-0.038087737,-0.044098735,-0.008348511,-0.030766185,-0.053164154,0.09512532} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.619115+00 2026-01-30 02:01:09.206993+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1392 google ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB 1 t 1395 Go Karts Mar Menor unknown Excellent place for Supermoto riding. Fresh facilities, very helpful and pleasant staff. Worth a visit! excellent place for supermoto riding. fresh facilities, very helpful and pleasant staff. worth a visit! 5 2021-01-31 01:52:39.833374+00 en v5.1 P1.01 {E1.01,V4.01} V+ I3 CR-N {} {"P1.01": "Excellent place for Supermoto riding. Fresh facilities, very helpful and pleasant staff. Worth a vis"} {-0.0046480354,0.006327539,-0.0071993247,0.015589037,-0.0949596,0.020338133,-0.019293956,0.02411501,-0.09240587,0.0038542792,0.07395244,0.08421686,0.03764098,0.054461826,-0.019064507,0.016046433,0.14790048,-0.057806134,0.05578754,-0.010568386,0.07065115,-0.010807204,0.0342469,0.08306807,-0.10684009,0.035098616,-0.07462317,0.0904413,0.02136976,0.0013004056,-0.054483097,0.0831277,-0.04443594,-0.04487961,-0.00399475,0.11794376,-0.019955708,-0.060759384,0.015312015,-0.056663506,-0.028972056,-0.0022877292,0.030726532,-0.066741206,0.06422933,0.087034255,0.018979894,-0.05685849,0.10465416,-0.01692752,0.055540692,-0.06427774,0.1182352,-0.07920371,-0.04413113,-0.0043913443,-0.102686785,-0.09105329,-0.000983201,-0.06188774,0.097018845,0.008771771,-0.07405288,0.025764288,0.041970085,-0.04927728,-0.12049693,0.028596105,0.04351988,-0.09208569,0.004969777,-0.027871069,0.05395666,-0.014187076,-0.0345644,0.0032461633,0.024289437,-0.034825783,-0.05445684,-0.0016660116,0.06764968,-0.08988552,0.07618824,0.054998145,0.030741239,-0.073455155,0.082337625,-0.06469203,0.022151899,0.036260188,0.059257347,0.07037362,-0.045042243,-0.0161906,-0.066950716,0.05671825,-0.05820169,0.06778865,-0.0020544447,0.009497222,0.02054363,0.00048507602,0.04176341,-0.02085829,-0.049188692,0.035220593,0.02453083,0.054576036,0.042374443,0.016818319,-0.06973931,-0.018182302,-0.036107853,-0.018592058,-0.09646099,0.079706654,-0.0350083,0.023490325,-0.08264083,0.0017939039,0.027437408,0.061268594,0.06399575,0.026028216,0.10716458,0.028390812,-0.023187801,-3.9265277e-33,-0.047010977,0.04337293,0.00456781,-0.011517614,0.044867966,-0.0059763244,-0.043283436,-0.04324739,-0.020848861,0.04074145,0.045748908,0.04221398,0.02705932,-0.06941412,0.015374842,-0.040811088,-0.027113084,-0.118050665,-0.051445078,-0.041202463,-0.017450275,-0.03284295,-0.0024566802,0.035727125,-0.025280809,-0.032734822,0.017449526,0.038384322,0.039147068,0.08096694,-0.04452947,-0.021482669,-0.100544795,-0.0007619183,0.016026821,0.013671665,-0.074562095,-0.07930082,-0.0639952,0.050803218,0.0235646,-0.040796846,-0.057911165,0.010654762,-0.04621751,0.025432687,0.052840218,0.04273686,0.06485688,0.009861771,-0.09539622,-0.02953782,-0.07064866,0.017687343,-0.04954476,0.028673602,0.01993983,0.009705169,0.0016179542,-0.037670337,0.0075469725,0.068179436,-0.058732845,-0.038908962,-0.070669726,-0.06900164,0.035396367,0.002327704,0.07593329,-0.0058286176,0.023140619,0.022132024,0.13129635,0.036506634,0.040273186,0.009959225,-0.09807604,0.0044572786,-0.0003849924,0.10169749,0.008773273,0.015317555,-0.07479064,0.07843476,0.08963212,-0.009451735,0.044120446,-0.10692857,-0.022801697,-0.006593971,-0.0067862784,-0.040259384,0.013079063,0.005643986,-0.01994317,1.3038568e-33,0.06341743,0.026525145,0.076963276,0.039837107,0.027771922,0.02120639,0.006250916,-0.014221472,-0.029292837,0.02564709,-0.08190178,0.10484174,0.048496656,0.02762597,0.07040978,-0.0037388885,-0.009394783,-0.044743497,-0.022023775,-0.058495294,0.06730896,0.053588696,-0.024118934,-0.0009477307,0.019534072,0.035643835,-0.069610715,0.04791488,-0.022834565,0.08186681,-0.11643464,0.033484038,0.026265882,0.036749,-0.01377544,0.047936272,-0.010789767,0.0015783529,-0.044176668,0.012147818,0.041442767,-0.07799706,0.011481921,0.05962937,0.05359816,-0.035493437,-0.008843568,0.017243207,0.025031088,-0.040306147,0.049230717,-0.000120207376,-0.027047502,-0.043579843,0.04048875,0.0014655452,-0.004863488,-0.04261217,-0.04070077,-0.05789424,0.046534706,0.005889792,-0.06690287,0.065943964,0.012719102,-0.067565106,-0.008519699,-0.05226898,-0.060694184,-0.009502578,-0.0674778,-0.016944721,0.01052643,-0.025922518,-0.035724975,0.0008781447,0.11277887,-0.036316775,0.0429667,0.020487804,0.01186533,0.040694512,0.02938057,-0.0051438324,0.05446334,0.057221916,-0.08110099,-0.0024705487,0.027245024,-0.022176636,-0.0071955044,0.113807246,-0.09047574,-0.05171213,-0.08116642,-2.1472253e-08,0.0041611115,0.034642763,0.04228627,0.026650535,-0.0006920502,-0.07836913,-0.006437737,0.04844911,-0.033686873,0.08238368,0.040142763,0.009414939,-0.018257227,0.0055988478,-0.02304558,-0.013678169,0.024735434,0.1198099,-0.06252648,-0.052528713,-0.032263156,0.022031656,0.0108744865,-0.02394556,-0.0718834,-0.020972297,0.027812721,-0.0597583,0.0053058467,-0.10682475,-0.033360913,0.06356825,0.048572134,-0.017033054,-0.030671671,-0.017570548,-0.056250155,0.01802944,-0.018955247,-0.045413997,-0.030059205,-0.074005276,-0.028192004,0.04882462,0.009238469,0.017184708,0.04841664,0.019430296,-0.025582494,-0.043995753,-0.053963654,-0.05203677,-0.013631171,0.052663077,0.0050708065,0.0957018,-0.047243454,-0.079963356,-0.06610883,0.038641885,-0.054692797,0.04291784,-0.06163713,0.01573546} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.635374+00 2026-01-30 02:01:09.210956+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1393 google ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB 1 t 1396 Go Karts Mar Menor unknown Great place to visit and super cheap for a lap for the kids on 100cc = £10.\n\nYou can't go on with the younger kids if they want to go themselves.\n\nFun and great track!\nFacilities are fab great place to visit and super cheap for a lap for the kids on 100cc = £10. you can't go on with the younger kids if they want to go themselves. fun and great track! facilities are fab 5 2024-01-31 01:52:39.833374+00 en v5.1 V1.01 {V4.01} V+ I3 CR-N {} {"E1.03": "Fun and great track! Facilities are fab", "O4.03": "You can't go on with the younger kids if they want to go themselves.", "V1.01": "Great place to visit and super cheap for a lap for the kids on 100cc = £10."} {0.04314169,-0.00076543237,-0.010453368,0.06129124,-0.09592292,0.016578939,-0.020125119,0.008250955,-0.0668526,0.03135072,0.042613987,-0.054669697,0.0016225767,0.059309706,-0.008016196,-0.013634836,0.13617493,-0.11538329,0.039171416,-0.06741698,-0.040110197,-0.004069961,0.01565877,0.047306575,-0.07060028,0.072384745,-0.05701396,0.092113785,0.008818592,0.01818488,-0.0003975132,0.040277816,0.021149183,-0.02687237,0.010709431,0.043614388,0.08948961,-0.064584285,-0.0463313,-0.015486081,-0.023300264,-0.0047076996,0.021733664,-0.017636372,0.059264056,0.048709694,-0.016260875,-0.06498526,0.07963386,-0.006657901,0.09536109,-0.0317854,0.09605783,-0.087562434,-0.10280062,0.01852372,-0.014552056,-0.02497815,0.003952156,-0.035900965,-0.00010316009,-0.025877815,-0.11299968,-0.02235643,-0.02148603,-0.10304606,-0.10535825,0.0362173,0.101954065,-0.06246269,0.026286084,-0.055393927,0.030739838,-0.010916872,0.014548097,0.07348757,9.055397e-05,0.04993538,-0.032507755,-0.032108672,0.0319152,-0.07257025,0.022941213,-0.054813284,0.03567436,-0.11392539,0.04159554,-0.058878284,-0.012186606,-0.0525124,0.0594896,0.0805902,-0.04824615,0.008996836,0.004191401,0.0072416672,-0.042098977,0.054343898,-0.032655917,-0.013443471,0.02196261,0.112036556,0.050645124,0.026279643,-0.115954496,-0.020265233,0.037926447,0.122870125,0.04758221,-0.06167428,0.0150679825,0.02706931,0.034623995,-0.013403568,-0.07852614,-0.007323344,0.009994966,0.0024922956,0.022772444,-0.028374217,-0.036910553,-0.010727185,-0.036015164,0.037614644,0.013985046,-0.056055836,-0.022851195,-9.530673e-34,-0.0771146,0.017753338,-0.0037615197,-0.044915013,0.055582557,-0.021823484,-0.051139325,-0.021627465,-0.013055336,0.026669981,0.074452825,-0.04693835,0.022156935,-0.09253809,0.008112041,-0.012314362,-0.047319874,-0.019473756,-0.08381719,0.009363096,-0.05433323,0.010090966,0.02856313,-0.00042105527,0.061400756,0.009737825,0.007868278,-0.0037471477,0.1345897,0.0616033,-0.06353657,-0.02840931,-0.0883813,-0.06608135,-0.058293875,0.07078695,-0.043178648,-0.052357454,-0.030859342,0.026622126,-0.010465714,-0.057240833,-0.026472652,0.013131893,-0.034696717,0.07141113,0.06086975,0.036798123,0.06334127,0.018226288,-0.099521056,-0.04355013,-0.16925628,0.000753696,-0.03361009,0.020139202,0.05898699,0.07197134,0.04308967,-0.05798753,0.061127894,0.045070205,-0.07602526,-0.059771575,-0.08992861,-0.01698158,0.06655555,-0.00863986,0.03666368,0.022626674,-0.009412511,0.011907102,0.06949122,-0.014874612,0.05082905,0.038355954,-0.053362247,0.010004492,0.025414689,0.07823824,-0.025012726,0.05783279,-0.019333607,0.020668413,0.08421581,-0.028466526,0.0062914174,-0.084255554,-0.054403506,-0.019052207,-0.01956108,0.013274093,-0.0055975975,0.0731087,0.021197533,-3.2800455e-34,0.07005889,0.012076502,0.048632544,0.035362147,-0.019485226,0.04692218,0.053740956,-0.0052930997,0.06159112,0.053080462,-0.10357954,0.039277397,0.036845088,-0.030064434,-0.05064331,-0.018059162,0.020719199,0.026538175,0.045720425,-0.04398945,0.0013145249,0.031830475,0.043192085,-0.03950123,0.030205954,0.007875947,-0.045750134,-0.0054135337,-0.0011153254,0.03174485,-0.11494048,0.011426197,0.020390283,-0.0013651494,-0.04525294,-0.010924782,0.007495237,0.07161862,-0.051810883,0.049560856,0.011441464,-0.053925358,-0.064708784,0.03585761,0.04751561,-0.016976196,0.007703231,0.01625528,0.0037322305,-0.009835967,0.06508565,-0.0016506247,-0.03612809,-0.032079883,-0.0029929641,0.033472255,0.016869929,0.0052327216,-0.024984509,-0.041111574,-0.02683479,0.016454188,-0.046740267,0.09392107,0.0029026086,0.03921864,-0.06814549,0.0030491233,-0.008921098,0.025966734,-0.096743,-0.0032684146,0.027708981,-0.022803321,-0.076154955,-0.0231374,0.10218052,0.00021961503,0.029836912,0.070224285,0.02368271,0.043128278,0.03355685,-0.03490549,0.042116452,0.02511702,-0.032045297,0.007557941,-0.017358823,0.048708167,0.07596233,0.06014989,-0.0020888697,-0.031251855,-0.012262895,-2.5444425e-08,-0.013368761,0.076609775,0.011043164,0.076225534,0.0019666008,-0.07264476,0.032998092,0.07850301,-0.047268484,0.1505746,0.03057297,-0.03504577,-0.038966306,-0.010194192,-0.023907889,0.04336157,-0.0022763312,0.06552536,-0.0026770344,0.0800107,0.01502212,0.06392024,0.016554965,0.0974175,-0.028470322,-0.061705783,0.032179706,0.0057537067,-0.008408578,-0.15853636,-0.031744655,0.025276558,-0.0061629135,0.058406506,-0.009705964,-0.11050635,-0.044912998,0.04454712,-0.02280792,-0.028024737,-0.086155325,-0.13277033,-0.07024448,0.0015124623,0.030138563,0.03619195,-0.061269768,0.0083097825,-0.018737385,0.05227386,-0.071123555,-0.002088338,-0.022318242,0.009205334,0.06708739,0.06684278,-0.053494055,-0.03505794,-0.08060587,0.09183874,0.014968805,-0.033650286,-0.0030564927,0.011397659} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.728225+00 2026-01-30 02:01:09.213362+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1378 google review_73 1 t 1381 Go Karts Mar Menor unknown Brought my family here a couple of times at Christmas and it was so much fun! Great for all ages and especially those looking for adventure! The staff are friendly and the helmets and go karts cleaned after every use. Minimal waiting times … brought my family here a couple of times at christmas and it was so much fun! great for all ages and especially those looking for adventure! the staff are friendly and the helmets and go karts cleaned after every use. minimal waiting times … 5 2023-01-31 01:52:39.833374+00 en v5.1 A3.01 {} V+ I3 CR-N {} {"A3.01": "Brought my family here a couple of times at Christmas and it was so much fun! Great for all ages and", "J1.01": "Minimal waiting times", "P1.01": "The staff are friendly and the helmets and go karts cleaned after every use."} {0.04457846,0.08091092,0.05001937,0.025713677,-0.06997233,0.00074182573,0.0022153514,-0.07722853,-0.06317821,0.026759012,0.0060507944,0.013176299,0.03745701,0.08060337,0.051858053,-0.07472007,0.028863858,-0.095269814,0.06153895,-0.05739346,-0.043635793,-0.05224502,-0.030390948,0.040573165,-0.05853274,0.014779424,-0.07980412,0.031208528,-0.004825734,-0.009107178,-0.064809956,0.028532242,0.004160379,-0.0025103323,-0.024532245,0.10267087,0.084427945,-0.11263031,-0.03509401,0.06012998,-0.02289991,0.0015624273,-0.002881708,-0.021438133,0.027399903,0.036458608,-0.015825352,-0.03466628,0.05214101,0.03168964,0.11895777,-0.01173329,0.10738104,-0.060428735,-0.024011986,0.01462777,-0.059147976,-0.07662639,0.009787839,0.0011311114,-0.029603539,0.05029551,-0.007141261,0.059698876,-0.04240355,-0.13630643,-0.07526418,0.008238576,0.0793566,-0.06718361,-0.033880007,0.015345112,0.08683345,-0.0030561488,-0.0071272636,-0.023006236,-0.0024448868,-0.06905806,-0.03885959,-0.025296539,0.05965721,-0.031993974,0.04470632,0.02231425,-0.042236213,-0.047025967,0.029179305,0.062082328,-0.0032628193,-0.010237115,0.035485007,0.04344795,-0.023249878,-0.031843152,0.0005685104,0.003147235,-0.014885941,0.036062617,-0.03858989,0.033903886,-0.01658023,0.03322339,0.057782408,-0.045053672,-0.055869646,0.023499254,-0.050388373,0.007676136,-0.031586643,-0.022695677,-0.052204408,0.035018027,-0.010734932,-0.02851424,-0.056976236,0.021150656,-0.0016632952,-0.013832896,-0.049761333,0.024087703,0.085835434,0.056284837,0.022880338,0.010982414,0.03798723,0.027499272,0.053962607,-1.138455e-34,-0.030605622,0.017908135,-0.034127317,0.032113418,0.07530793,-0.07062764,0.008534509,-0.0871251,-0.089447595,0.042810626,0.08092137,0.044855334,-0.026840422,-0.022346199,0.06672424,-0.01771665,-0.07794669,-0.0460316,-0.03939623,0.00772864,-0.029883215,-0.10392072,-0.011383598,0.11780736,0.008356066,0.031448934,0.055105433,0.015493491,0.10256769,0.018218532,-0.0022567215,-0.03570182,-0.06258242,-0.02868505,-0.017985051,0.045529976,0.04257088,-0.04969286,-0.05809623,-0.037815657,-0.014201971,-0.061757144,-0.006366554,0.06402286,-0.03270579,0.0020800775,0.04896765,-0.0012420096,-0.0073631746,0.01568883,-0.052751347,0.011797022,-0.048770715,0.019450234,0.031799942,0.021445332,0.05743998,-0.014120319,-0.0015154498,-0.05121829,0.0627554,-0.015335399,-0.029637897,-0.08683668,-0.024466736,-0.020099144,0.08060233,0.020122379,0.05500805,-0.06822185,0.039257295,0.04479135,-0.019703893,-0.12962353,0.06964538,0.07951642,-0.028680086,-0.014471892,0.06857775,0.024475897,0.04717368,0.047234092,-0.014134799,0.063889205,0.09705138,-0.05126535,0.010299673,-0.07596286,-0.08193416,0.02585567,0.037975937,-0.009388044,0.085880876,0.033471912,0.011170773,-2.0115917e-33,0.06718038,-0.015866019,0.013248017,-0.0070456197,-0.017814696,-0.05596764,-0.054921295,0.039452218,0.0408663,0.03442359,-0.0808538,0.041754995,0.03840384,0.021613741,-0.009483459,-0.009637254,0.090497926,0.11238523,0.04929387,-0.08544416,0.039566804,0.088988625,-0.069223,-0.073072836,-0.055021856,0.05690076,-0.06825962,-0.030029854,-0.08781437,-0.022486115,-0.05659526,-0.027899763,0.057254106,-0.014794796,0.042699948,0.03808579,0.0072592194,0.08076748,-0.07254396,-0.012120858,0.028315881,-0.047598664,-0.008747875,0.029592063,0.01571951,0.004924537,-0.05318803,-0.01239993,0.022882074,0.036291026,-0.027922906,0.012475621,-0.08868935,-0.1265376,-0.00957873,-0.011216362,-0.021566495,-0.06000017,-0.03675078,-0.02290729,-0.029105335,0.031979155,-0.06262149,0.07599865,0.01147386,-0.087806456,-0.026809858,-0.03489265,-0.061107162,0.020770237,-0.08441844,0.009549635,-0.10628946,-0.018605312,-0.02195249,-0.04903581,0.076895125,-0.014791746,0.030341871,0.07391008,-0.00016921504,0.05661027,-0.031553496,0.042087484,-0.0052839224,0.043170307,0.023272108,-0.010889015,-0.04749003,0.063659,0.099591225,0.1148296,-0.025043866,-0.013241822,0.0041960008,-3.232958e-08,0.066324554,0.13150792,-0.048752807,-0.010228659,0.0410671,-0.07361083,0.041581437,0.011223608,-0.065718636,0.06669276,-0.021101883,0.04033091,0.029027527,0.019883268,0.040079247,0.058735337,0.05973926,0.07991666,-0.054942973,-0.056421787,0.016939603,0.048658554,-0.0022275713,0.022626443,-0.12243484,-0.021911405,-0.007823296,-0.018317644,0.019841548,-0.0406752,-0.06329857,0.029595649,-0.10686782,0.03831796,-0.0048440415,-0.1361338,-0.086354226,-0.029280698,0.005775912,-0.021899328,-0.03484387,-0.05754218,-0.027439004,0.02053003,-0.022438964,0.088696964,-0.066957176,-0.0037376296,-0.05132285,0.021183157,-0.10360899,-0.04072601,-0.06454262,0.06774833,0.03540562,0.06847987,0.027065853,-0.031515498,0.038016032,-0.022187844,-0.039276555,-0.026872225,-0.051262684,0.08044633} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.77863+00 2026-01-30 02:01:09.168652+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1844 google ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB 1 t 1847 Go Karts Mar Menor unknown Buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien! Muy cuidado todo, y Con buena tecnología de control de tiempos!! Para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! Recomendable!!! buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien! muy cuidado todo, y con buena tecnología de control de tiempos!! para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! recomendable!!! 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {O4.04} V+ I2 CR-N {} {"O1.02": "Buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien", "O2.04": "Muy cuidado todo, y Con buena tecnología de control de tiempos!!", "V4.03": "Para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! Recomendabl"} {-0.056480538,-0.008649496,-0.055324096,-0.043820113,-0.10105939,-0.0011030349,-0.0122676315,0.069138564,-0.06829355,0.083518475,0.09120418,0.028456112,-0.033486217,-0.014540794,0.02973262,0.08147023,-0.06497987,0.049657416,0.01674515,0.018676424,0.057878625,-0.07954053,-0.06470317,0.040981837,-0.15346433,0.015769945,0.009829592,0.023891337,-0.06312855,-0.1380999,-0.0737113,0.056170356,0.06381949,-0.0641431,-0.0619499,-0.038954217,-0.016907806,-0.093965076,-0.07222341,0.014838803,-0.02931235,-0.029167175,-0.03246763,-0.06180957,0.003434932,-0.036633823,-0.013693879,0.026019003,0.056552462,-0.07628898,0.00447152,-0.011188125,0.043045677,-0.0019476464,-0.0431815,0.00066718936,-0.03765819,0.029128332,0.0990397,0.005088259,0.047217563,0.082843915,-0.06768961,0.02613158,0.03887345,-0.061843667,0.004786026,0.049339186,-0.016369376,0.048791617,0.05868421,-0.12121798,0.057818912,-0.01986703,0.027434818,0.022081867,-0.02583484,-0.0076373206,-0.095158674,-0.022010822,0.0380074,-0.02577946,-0.07238062,-0.06675959,0.060151346,0.004638593,-0.022993958,0.006663414,0.05841065,0.037861165,0.013914318,0.12173107,-0.047364816,-0.10150662,-0.0026186877,0.0006775128,-0.00020513801,-0.04801808,-0.034930825,0.010997252,0.061349675,-0.019313851,0.025988026,0.02059189,-0.010564442,0.06997591,0.038600955,-0.00023671449,0.04560254,-0.019648958,-0.07122603,0.01592675,-0.0262967,-0.0068633873,0.028115876,-0.010987348,0.017590139,-0.018397318,0.020044282,-0.04595708,-0.023183879,-0.057170875,-0.022960834,-0.011780267,0.044890113,-0.021764936,0.053634517,1.0476039e-32,-0.03919744,0.024938436,-0.08741584,0.0068287076,0.005495745,0.04242477,-0.05844724,-0.05226762,-0.061712485,0.039988223,-0.031144923,0.039499316,-0.05144853,0.015790997,0.08777601,-0.06493014,0.010922506,-0.07862237,0.08574093,-0.0027581097,-0.0050962865,-0.09844711,-0.017535577,0.07513027,0.009815079,0.045316167,0.046174206,-0.027046846,-0.035810035,0.027990982,0.010779462,0.036311906,8.4108455e-05,-0.035106074,-0.07433372,0.005808598,-0.021306982,0.025354195,-0.022911632,0.007634652,0.03452532,-0.03316304,-0.034782242,0.07865011,-0.036665373,-0.026316274,0.01602373,0.012924387,0.09606373,0.056286294,-0.1536603,-0.067003906,-0.03369947,-0.043687433,0.03725487,0.020350339,-0.020708185,0.019236982,-0.0014117071,-0.01805677,0.0021119707,0.009551662,-0.03977738,-0.11555276,-0.088318445,0.029073425,0.02966113,-0.04466101,0.08813056,-0.09233815,-0.068147935,0.0074568414,-0.04028572,-0.007965356,0.09213065,0.033286992,-0.018383428,0.040041182,-0.036745023,0.009796604,-0.024223791,-0.0042409915,0.013499967,0.09648921,0.13987163,0.021788903,0.04031269,0.049159665,-0.041944537,0.13265327,0.05685416,0.085881755,0.0462301,0.0110236835,0.069468245,-1.075743e-32,0.050021905,0.016900761,0.037634667,0.021424565,-0.01013996,0.021024562,-0.04309301,-0.06746435,-1.4577282e-05,-0.024776759,0.019318845,-0.067849025,0.0117181195,-0.082161665,-0.015263128,0.009454315,0.0024639282,-0.061376452,-0.05190983,-0.06444091,-0.012836178,0.05583067,-0.004419843,-0.041495737,-0.041957486,-0.061265815,-0.07830006,0.055839714,-0.08706683,0.04588944,0.011436632,0.023899242,0.057053186,0.09589288,-0.034846276,0.009019768,0.07301679,0.059717443,-0.020008855,-0.0011088878,0.01599383,0.0900448,0.0055960575,0.00047076115,-0.07216072,0.028677585,0.060076505,-0.13608262,-0.055398926,0.00665723,0.070794865,-0.029416382,-0.020607995,-0.08632124,0.04096897,-0.019364962,-0.017903894,-0.04804381,-0.0789596,-0.049739864,0.07710184,-0.007209454,0.007840982,-0.041511398,0.091439396,-0.035086937,0.057266038,0.07881188,0.11997152,-0.002728362,0.048994496,0.08329365,0.014605842,0.06036551,0.0075903824,-0.07243064,-0.04005337,-0.019588415,-0.0038880776,-0.030959757,-0.024725685,0.009028699,-0.0011407019,-0.110380106,-0.024383046,0.009492127,-0.016582077,0.060072325,0.053263832,0.06398185,0.022052264,0.047236744,0.0032643976,0.016434332,0.026252767,-4.9346287e-08,0.00056182925,0.018905131,-0.0752125,0.023318527,0.061801773,-0.036077417,-0.012298921,-0.0469665,-0.033286523,-0.008907896,0.004126985,0.00861866,-0.020929769,0.07780377,0.02656687,0.021827383,0.055556756,0.13613117,0.003087677,0.030940391,0.04462499,-0.0037324997,-0.075395614,0.08174489,0.093049794,-0.0058523295,-0.007249799,0.027969792,0.019146351,-0.010808719,-0.0067176814,-0.0178197,-0.051504333,0.009254788,-0.009434441,-0.010044831,-0.081584446,0.0055713044,-0.028164776,0.0069272444,0.050662097,-0.047896344,-0.10194332,0.0053479695,-0.069310196,-0.054601967,-0.0023601274,-0.03643995,-0.02016773,0.022165235,-0.020893043,-0.011303576,0.06808184,-0.004816652,0.085280895,-0.008183923,0.08285964,0.016482979,-0.042492237,-0.045030072,-0.018862441,0.06260379,-0.0223656,-0.05004586} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:25.362479+00 2026-01-30 02:01:10.924831+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1397 google ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE 1 t 1400 Go Karts Mar Menor unknown Excellent outdoor track with a selection of karts for all ages and abilities. The pilot day deal 2x1 on Wednesday is great value. The staff are lovely and helpful. The step from F300 to F400 is significant. excellent outdoor track with a selection of karts for all ages and abilities. the pilot day deal 2x1 on wednesday is great value. the staff are lovely and helpful. the step from f300 to f400 is significant. 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {O4.03,P1.01} V+ I3 CR-N {} {"P1.01": "Excellent outdoor track with a selection of karts for all ages and abilities. The pilot day deal 2x1"} {0.03205371,0.06720913,0.016825635,0.071790546,-0.025364708,0.042409234,-0.039952528,0.040566605,-0.08002213,0.026859758,-0.03839028,0.036084738,-0.052245423,0.029422006,0.053770106,0.008982818,0.040413287,-0.017224716,-0.02387673,-0.03630034,-0.124579325,-0.061578378,0.020702226,0.026265083,-0.12202755,-0.015193622,-0.040432304,0.035696886,-0.016726416,-0.08193733,-0.057801023,0.08157916,0.00419565,-0.027302967,0.014897122,-0.024422234,0.027054293,-0.04399398,-0.039307363,-0.0067631355,-0.028802097,-0.024026169,0.003338135,0.0077391467,0.0075618713,-0.008940213,-0.0112696225,0.03538496,0.08057576,0.061803058,0.07073684,-0.07689277,0.04028294,-0.039422028,0.025296375,0.025382737,-0.075977154,0.013721462,0.076831006,-0.039300006,0.0473985,-0.023195976,-0.0866181,-0.018611347,-0.028670745,-0.088833235,-0.10725629,-0.033384103,0.024538614,0.026064394,-0.0025317178,0.037268076,0.053229216,-0.039008908,0.0309482,0.043625638,-0.0304401,0.016060662,-0.046732232,0.007214226,0.042883348,-0.02370987,0.005058554,-0.060780376,0.024765495,-0.019215193,0.01798928,0.07322893,0.04367732,0.022412188,-0.02715519,0.06314146,-0.043711454,-0.052755065,-0.02172336,0.03148062,-0.035905775,0.01871218,0.027762458,0.024233323,0.060600244,0.03517708,0.07344415,0.029319316,-0.0011013781,-0.027688606,-0.0064845835,0.031973716,0.01870215,-0.049056605,-0.017133357,0.0048880675,0.009341377,-0.024775323,-0.03836972,-0.006485391,-0.042386007,0.06112444,0.06413089,-0.005405104,0.016064147,-0.06974552,0.05469131,0.03877595,-0.020661332,-0.012107632,0.01470971,9.923109e-34,-0.08628259,0.10072559,-0.037326034,-0.07388707,0.09560143,-0.10847223,0.0047844164,-0.17280354,-0.053599365,0.048685923,-0.044701144,0.0041203937,0.023174854,0.006070313,0.08602697,-0.10541354,0.011067881,-0.008950159,-0.07296381,0.019715408,0.032319903,-0.07773893,0.052903775,-0.034858055,0.120945364,-0.012890933,0.055555716,0.04025683,0.009820488,0.019080361,-0.021125782,-0.03657845,-0.030566249,-0.019172454,-0.008623048,-0.016325332,0.004928673,-0.054848075,-0.054257046,-0.019842684,0.0017968434,-0.012283363,-0.026544785,-0.033850037,-0.009653143,0.0141599085,0.057478204,0.07542147,0.031464733,0.02136647,-0.07159841,0.023069972,-0.04522152,-0.07934811,0.0055291373,-0.03544695,0.085726015,-0.029534759,-0.047412828,0.016223812,0.056411035,-0.029861089,0.0244783,-0.02053093,-0.0701054,0.053232823,0.002995747,0.0038756393,-0.012950254,0.079129525,-0.009472442,0.03412802,0.076748885,-0.09208412,0.11350975,-0.0056374865,-0.002042281,-0.039706226,0.024881784,0.07730698,-0.038270857,0.027074097,-0.053086743,0.02184615,0.025696939,-0.04675898,-0.079231374,0.01877416,0.00027112773,0.01003579,0.0022336412,0.0124471765,-0.027619535,0.08793066,0.027531423,-1.8722945e-33,0.02794464,0.10463591,0.09979971,0.05124585,-0.020883398,0.037341606,0.0031623635,-0.024029192,0.0737476,0.09654238,-0.06799888,0.08701008,-0.04030373,0.014709326,-0.011104863,-0.05611522,0.039483532,-0.0004683685,0.08438437,-0.11947798,0.048283137,0.049212594,-0.04777958,-0.046016265,0.005692791,0.06373612,0.00074076705,0.023191437,-0.10857062,-0.018789023,-0.04385231,-0.030171184,0.08211879,-0.042729218,-0.033433676,0.02001016,0.08409635,0.056083255,-0.038811848,0.041280836,0.06126086,0.030259803,0.0018075284,0.016976265,-0.06677485,0.0035203828,0.052081935,0.08507272,0.022643818,-0.019583514,0.024037916,0.026015505,-0.056194194,0.0069348984,-0.014990692,-0.026827035,0.014805411,-0.016632097,-0.08438072,0.015566579,-0.042718314,0.014709187,-0.02799929,0.10105756,0.0421322,-0.06450454,-0.015746715,0.0045900275,-0.054548793,0.11732205,-0.090079315,2.9203129e-05,-0.02318313,0.02465769,-0.05906182,0.015729975,0.0582353,0.055604637,0.07553014,0.108148634,0.027054518,-0.05490612,-0.030955123,0.06926328,0.033321902,0.009153947,-0.105726145,0.00041039567,0.01294701,0.027960602,0.13056737,0.0652646,0.014253376,0.05233713,-0.06653874,-3.142463e-08,-0.03022098,0.086727075,-0.07428705,0.007315124,-0.004120336,-0.084703475,0.015142666,0.017691722,-0.05876515,0.015595071,-0.012843428,0.01010043,-0.0060741226,0.0049719964,0.017001253,-0.08125775,0.016933497,0.09613888,-0.03893135,0.047729053,0.0075948187,-0.0023990653,-0.019195063,0.023655247,-0.07518368,-0.046869557,-0.0037915376,0.077784665,0.06118811,0.03150921,-0.02183609,0.08146914,-0.034312844,0.038944803,-0.012976751,-0.08185288,-0.081363335,0.08891506,-0.05598849,0.039623145,0.03491906,-0.035061035,-0.08648383,-0.029179841,-0.046094786,0.057696015,-0.07601954,-0.11709313,-0.0967713,-0.06860003,-0.06169272,-0.008463093,-0.020255161,0.057728454,0.001834346,0.080670506,-0.037436172,-0.03250798,-0.030604871,-0.01317265,-0.08626199,-0.0846187,-0.061445642,0.00121778} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.554155+00 2026-01-30 02:01:09.226425+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1400 google ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB 1 t 1403 Go Karts Mar Menor unknown I have been here numerous times. Very easy to book through their WhatsApp. Staff are friendly and helpful. Had a brilliant time with my group of 12 people and will be returning very soon. i have been here numerous times. very easy to book through their whatsapp. staff are friendly and helpful. had a brilliant time with my group of 12 people and will be returning very soon. 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01,V4.03} V+ I3 CR-N {} {"P1.01": "I have been here numerous times. Very easy to book through their WhatsApp. Staff are friendly and he"} {-0.029847007,-0.035984073,0.07075695,0.025717823,-0.066771165,0.013521363,0.009107799,-0.0015416177,-0.022456346,-0.0028176198,0.0057607284,0.05680311,0.008540674,0.011861172,0.033649325,-0.07916595,0.024703262,-0.18402012,-0.02566514,-0.048274897,-0.05913186,-0.011400822,0.0014517147,0.035668008,-0.011999715,-0.04109605,-0.09284149,0.02796325,0.012988966,-0.00015058828,-0.04808713,0.027592411,0.0076833786,0.061983317,-0.045040004,0.08169077,0.10379554,-0.019452907,-0.022880513,0.011047735,-0.078708366,0.01031344,-0.026218936,0.0034041372,0.113455325,-0.044017985,-0.026530316,0.024659086,0.005198053,0.010531991,0.025326181,-0.02563048,0.10963167,0.02455949,-0.04071803,0.061594635,-0.034615543,0.005001176,0.0017971867,-0.04747244,-0.037060305,-0.06286428,-0.022581376,0.04292177,-0.065706916,0.02711472,-0.054280728,-0.05637325,0.07660291,-0.12569882,-0.07990843,0.00022563827,0.04415907,0.07258262,0.008032757,-0.033223007,0.01311823,-0.02179194,0.036928143,-0.019748319,0.055495497,0.02719836,-0.006067843,0.09113502,0.021894306,-0.040475577,0.055780925,0.0312262,-0.003519852,-0.01981607,0.119784385,0.12460346,-0.01832428,0.01331994,-0.052885793,-0.027357897,0.06229383,0.05507114,-0.076290146,0.018355157,-0.018298512,0.1030856,0.034760367,-0.08028124,-0.018201318,0.01432475,-0.021703431,0.017177355,0.034741968,-0.005054608,-0.074163675,0.009856102,-0.05345715,-0.013093698,-0.010986698,-0.010812144,-0.0032837593,-0.008379082,0.042675212,0.016029015,0.06401661,0.077294886,-0.024552602,0.013404842,0.02030571,-0.0060690306,0.025483927,-3.0207186e-34,0.04816983,0.13342756,0.026829392,0.040370617,-0.032813195,-0.005230002,-0.03986679,0.037037894,-0.07013724,-0.04026747,0.028570948,0.07949432,0.06998336,-0.02934107,-0.044082828,0.024139259,-0.06703242,0.02317494,-0.005530297,0.059021346,-0.04352572,-0.036547333,-0.01033922,0.03538291,0.112475045,0.043359574,0.06366757,0.028293986,0.15029675,-0.00430864,-0.06120468,-0.07314818,-0.06949036,-0.070342176,0.029567823,0.03977774,-0.02352449,-0.044749927,0.03450825,0.021472154,-0.11898773,0.016363425,0.0071326634,-0.012256844,0.019124012,0.06773457,0.04497149,-0.015915908,-0.029351903,0.031813,-0.15319596,-0.03508879,-0.12062761,0.09131365,-0.02442776,-0.00087484415,0.019366361,-0.0022206877,0.026079463,-0.032440722,0.05177231,0.06236892,-0.04056663,-0.04076535,-0.05320138,-0.09578954,-0.081851125,-0.0013472734,0.027520398,-0.012332303,0.012185575,0.05094619,0.048557274,-0.014326539,-0.053034585,0.055398665,-0.03771667,0.03430497,0.05701756,0.05892247,0.08859985,0.014951733,0.039923385,0.038295023,0.012737525,0.044456005,0.026691891,-0.0927789,-0.11553399,0.079320885,0.024596382,0.02330988,0.09715983,0.046790585,-0.023584813,-3.8804643e-34,0.013449819,-0.01764261,0.012286699,-0.040505186,-0.052239582,-0.03378253,0.020679567,0.097477436,0.047442123,0.030829266,-0.08007763,0.033210263,0.0211606,-0.028424777,-0.038283285,0.026439028,0.028475279,-0.012224821,0.0023502528,-0.107786536,0.0011743547,0.013392872,0.002688739,-0.022102363,0.046949808,-0.0017415682,0.040546145,0.0066072033,-0.089208126,-0.08725621,0.02563483,-0.059219394,-0.013550807,0.0124887265,-0.012013502,0.049908254,0.015168886,0.06403317,-0.017125223,-0.03572952,0.018328954,-0.0077452357,-0.05328114,-0.09823023,-0.025639623,0.022287851,0.0035034225,0.0050497404,-0.07581923,0.012479027,0.018485721,-0.08179389,-0.040147066,-0.08185403,-0.0152404765,0.02890026,0.026657743,-0.03518534,0.02289562,-0.0467184,-0.067636564,-0.017162157,0.046461746,0.04405619,0.050091505,-0.13417086,0.06034967,0.0013790895,-0.0018435518,0.003543525,-0.09687495,-0.12531504,-0.032209616,-0.028038634,0.08579492,0.039668657,0.0054967604,-0.11109775,-0.08132156,-0.0043908358,0.0446788,0.012158312,0.06273948,-0.051065788,0.031814042,0.07082034,0.06292846,-0.038875937,-0.016721563,0.0248927,-0.00876339,0.025011247,0.023050824,-0.009507587,0.034663524,-2.8315334e-08,0.038753215,-0.026830297,0.016327266,0.019271089,-0.010171551,-0.0743672,0.049895395,0.067031965,0.0017332658,-3.628316e-05,-0.037722692,-0.033320997,-0.09008594,0.022314489,0.06316971,-0.007856259,0.12131184,0.027586933,-0.018643035,-0.03225886,0.006431632,0.034438193,-0.014087831,-0.0054493602,0.058610357,0.030928321,-0.0077319006,0.02732149,-0.019132132,-0.06304901,-0.12422872,0.015709355,-0.020949135,0.024994122,0.018617202,-0.094539806,-0.04251976,-0.07663365,0.004327111,-0.016857067,0.068725996,0.019262115,0.018580595,0.043129474,0.01635359,-0.008867045,0.019113943,-0.045112662,0.051374145,-0.040523265,-0.052155256,-0.04821346,0.07979294,-0.0031913745,-0.044288345,-0.014560414,0.021728782,-0.031853117,0.0409944,0.041989513,-0.01951784,0.043281153,-0.07254179,0.10374418} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.141718+00 2026-01-30 02:01:09.234982+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1401 google ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB 1 t 1404 Go Karts Mar Menor unknown A repeat visit here for us. We really like go-karting here. Good track layout, staff are friendly and helpful and it’s reasonably priced. A bit out the way so a car is needed. But for a good afternoon out racing it’s ideal. a repeat visit here for us. we really like go-karting here. good track layout, staff are friendly and helpful and it’s reasonably priced. a bit out the way so a car is needed. but for a good afternoon out racing it’s ideal. 4 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {O1.02,P1.01} V+ I2 CR-N {} {"A4.01": "A bit out the way so a car is needed. But for a good afternoon out racing it's ideal.", "P1.01": "A repeat visit here for us. We really like go-karting here. Good track layout, staff are friendly an"} {0.045107003,0.006054631,0.064864695,0.08245282,-0.10805072,0.025004,-0.047236603,-0.030316079,-0.007491893,-0.0032441637,-0.044853322,0.041909356,-0.038321476,0.070657335,0.0507893,-0.09083907,0.13434649,-0.07668203,0.061635476,-0.046475936,-0.08665571,-0.018663025,0.026635822,0.056119677,-0.053992987,0.06728156,0.0036859752,0.07678097,-0.020183804,-0.04589245,-0.07297106,0.06757049,-0.037330784,-0.03381482,0.00033510785,-0.0127433445,0.014039707,-0.07900554,-0.04045055,0.03358999,-0.022296306,-0.0025365842,0.029305084,0.0353054,0.030646618,0.0464439,-0.012250482,-0.03731736,0.071671665,0.036529385,0.09794287,-0.03857182,0.058048222,-0.060820382,-0.016226493,0.007959781,-0.08423355,-0.0061975378,0.020142263,-0.029620538,0.014728089,-0.014251312,-0.0060000513,0.028715154,-0.06907774,-0.086767055,-0.085972495,0.05576074,0.03722795,-0.054616444,-0.006863186,0.011140863,0.04509643,0.021640483,-0.0019403453,-0.012264693,0.010876538,-0.01686697,-0.02398363,0.011223118,0.05301248,-0.01195241,0.0299368,-0.012917925,-0.0147664035,-0.10147069,0.041372124,0.06610175,0.028818682,-0.01605666,0.022134423,0.09247173,-0.039868366,-0.039680965,-0.016313076,0.07454331,-0.026939033,0.01134253,0.012531214,0.00024568383,0.06740346,0.066858575,0.07838571,0.057085652,-0.08271001,0.023641113,-0.053635687,0.059412826,0.06157421,-0.022137707,0.03799099,-0.01155418,-0.023118775,-0.05503374,0.0038882212,0.040048487,0.044080537,0.040537745,-0.0014199151,0.04411967,-0.0996284,-0.032516997,-0.023759393,0.04092977,0.05796314,-0.029268486,0.015431267,-1.824084e-33,-0.018329648,0.013756981,0.014222857,-0.012017652,0.05612593,-0.02841728,0.0023603446,-0.12921049,-0.08356195,-0.012785555,0.05984105,0.020188134,-0.009067159,-0.0011489977,0.09368983,-0.0015120826,-0.024627024,0.005597469,-0.114424974,-0.017601075,-0.004198965,-0.06457667,0.013665787,0.03697135,0.06131701,-0.0013200484,0.07616346,-0.08189572,0.06380257,0.0024953622,-0.07628151,0.015141323,-0.06730745,0.003408257,-0.027574407,-0.022445053,-0.09336091,-0.03211712,-0.009346551,0.026362855,-0.012301696,-0.01893217,-0.038966876,0.0048131696,-0.0003183581,0.052671853,0.06578438,0.04659716,0.017754525,-0.03799388,-0.12809847,-0.05942122,0.018275296,0.033610575,-0.062398635,0.0356346,0.044654302,-0.004367351,0.008157214,-0.044916794,0.042209677,0.07792084,-0.04952399,-0.107446775,-0.11084715,-0.007633712,0.012896099,-0.00974995,0.034189273,0.024261344,-0.02079665,0.031980347,0.029336046,0.02057049,0.06796889,0.030468386,-0.043588184,-0.022342637,-0.021793827,0.05854868,-0.04925568,0.023624063,-0.03890195,0.011375377,0.11791041,-0.025823757,-0.04367093,-0.08792649,-0.049499836,0.0009015185,-0.04138479,-0.009454821,0.01782854,0.115383655,0.031775225,-1.1432565e-34,0.09200367,-0.04149842,0.09327947,0.05159407,0.0296387,0.006158106,0.024821099,-0.07633497,0.032444507,0.06285621,-0.15345922,0.04624708,0.0360753,0.06860501,-0.02405407,-0.035898097,0.07281945,0.023494158,0.015188532,-0.06790263,0.014068893,0.02998573,-0.056247905,-0.044756953,0.02676055,0.0494201,-0.031563643,-0.049412597,-0.064581536,0.039261166,-0.055392068,-0.048449688,0.046845146,-0.07555672,0.025621727,0.067179576,0.06946285,0.040071744,-0.054068558,0.042139128,0.010318206,-0.03185229,0.08383331,0.04155238,0.012702602,-0.016765041,-0.008989983,0.060822364,-0.04818103,-0.03474848,0.01816681,-0.0015375989,-0.06578301,-0.02751192,-0.008125081,-0.039561022,0.013839993,-0.00034579227,-0.10240908,-0.022670565,-0.04649764,0.0298347,-0.026962005,0.06392743,0.010108866,-0.042130146,-0.043177158,-0.026004942,-0.052167237,-0.024944967,-0.1750721,0.005388956,-0.05877441,0.03153398,0.015223544,0.023340367,0.12571387,-0.032532718,0.050431136,0.05253943,0.0315979,0.007675922,0.0089798365,-0.0007999753,0.044162113,0.042573806,-0.056715377,0.025062159,0.025169218,0.030341055,0.098045066,0.07774218,-0.06300657,0.030552953,-0.0992649,-3.5605893e-08,0.0012143077,0.023187673,0.0008826126,0.010871102,-0.024914512,-0.07711226,0.058678064,0.03345192,-0.039769594,0.006341008,0.0053603505,-0.06363835,-0.025004858,0.013134477,0.05389545,0.010879986,0.018595805,0.16270381,-0.043970946,0.009060753,-0.0119250845,-0.009360926,-0.030447368,0.039933827,-0.011477179,-0.02702587,0.015815191,0.017136974,0.027158787,-0.06307666,-0.01900534,0.03255968,0.009308829,0.04634355,-0.0065087574,-0.13364689,-0.05069445,0.049843993,-0.002211651,-0.02882255,-0.058541257,-0.082508385,-0.025550636,-0.012682597,-0.032215685,0.031203603,-0.010727446,-0.07018305,-0.05184538,0.061757747,-0.102418035,-0.06567341,0.005638386,0.02176281,0.09778499,0.08310095,0.0027556985,-0.08158481,0.024446197,0.004602038,-0.030308617,-0.020954682,-0.047786847,0.1189146} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.157723+00 2026-01-30 02:01:09.238255+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1404 google ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE 1 t 1407 Go Karts Mar Menor unknown A bit expensive, so it is a rare pleasure :D But the place and service are great! We celebrated a kid's birthday and the menu was very rich!! a bit expensive, so it is a rare pleasure :d but the place and service are great! we celebrated a kid's birthday and the menu was very rich!! 5 2024-01-31 01:52:39.833374+00 en v5.1 V1.01 {} V- I1 CR-N {} {"P1.01": "But the place and service are great! We celebrated a kid's birthday and the menu was very rich!!", "V1.01": "A bit expensive, so it is a rare pleasure :D"} {0.0027444486,0.07882529,0.04883571,0.021265697,-0.10601461,0.0029460813,0.02031732,-0.07927032,-0.004059572,0.05161816,0.027408065,-0.00066113274,0.00035764187,0.026157074,0.09411904,-0.09023209,0.13723995,-0.0822113,0.024906617,-0.065444134,-0.08378975,-0.04447394,0.02447764,0.028852267,-0.0050601787,-0.0008578158,0.00056921697,0.05378208,0.00014144431,-0.02362855,0.013469552,0.07936946,-0.010512369,-0.060248353,-0.008331562,0.043558154,0.084740534,-0.12271491,-0.032917116,0.03486456,0.007923614,0.019813234,0.033192806,-0.005329974,-0.019527975,-0.0012738543,0.0026965828,-0.028273074,0.069568776,0.06766953,0.054915093,-0.0014579841,0.0740565,-0.07496582,-0.055382676,0.045363974,-0.08191674,-0.120512456,-0.013061052,-0.022811312,-0.09034202,0.040200472,-0.043654386,-0.003267187,0.007208652,-0.11190239,-0.024972724,-0.029126896,0.004134562,-0.098255135,-0.041473377,0.020294018,0.16212624,0.08267981,-0.019459,-0.026118482,0.00870716,-0.084003575,-0.059217937,-0.0092255045,-0.0014966863,-0.027218133,0.025872825,0.0065889657,-0.09856235,-0.051847782,0.038201157,0.0044987896,0.007752438,-0.0255115,0.019799026,0.052944012,-0.031135285,-0.0730415,-0.025722856,-0.01671974,-0.058606748,0.012089076,-0.045569118,-0.011531819,0.0011180324,0.14663826,0.07554225,0.04437795,-0.056177236,-0.027887428,-0.0071348776,0.08515339,-0.00047818694,-0.036343724,-0.059776027,0.014391186,0.05202713,-0.03365426,-0.0459999,0.025651757,0.047824156,-0.04515598,0.010283952,-0.045243412,0.027977759,0.056151938,0.021941438,0.035838727,-0.12015704,-0.015941478,0.08325411,-4.901097e-33,-0.05430543,0.0076157236,0.016381405,0.046475682,0.059145942,0.06746224,-0.009659711,-0.06316379,-0.07432983,0.032196604,0.024551345,-0.052209057,0.04165814,0.009888316,0.06920277,0.021792706,-0.064928815,-0.015015707,-0.037204817,-0.02930979,-0.054306455,0.016153224,0.047996648,0.04271688,0.00046525852,0.07522631,0.015500741,0.027759641,0.06034359,-0.00406352,0.033514112,-0.037902266,-0.03005892,-0.03586845,-0.052805938,0.039058857,-0.008003432,-0.08844709,-0.036319774,0.031867284,-0.04775413,-0.056579992,-0.035580322,0.08538411,-0.07792635,0.06256543,0.043119892,0.012528925,0.09200341,-0.055717725,-0.011573832,0.0006322072,-0.037356354,0.033081487,-0.02252324,0.026357712,0.05210533,-0.01454452,0.061784722,-0.09714032,0.062374946,-0.04122705,-0.012716942,-0.03248789,-0.039749544,0.02040218,0.0674477,0.033145305,0.07183984,-0.002731371,0.024237452,0.009394979,0.04343808,-0.12693028,0.041137584,0.0424427,0.015974013,-0.09044594,0.06573882,0.008148864,0.07141919,-0.0018223398,0.020594465,0.04469519,0.033784717,0.010197261,-0.019590467,-0.066175215,-0.0038825371,0.030701138,-0.013714737,-0.018895261,0.035912484,0.026065933,0.026595145,1.18626895e-33,0.041629624,-0.0155934105,-0.009170371,0.010279559,0.004510934,-0.07762873,-0.07836968,0.027548766,-0.05249938,0.0473417,-0.08655593,0.06731237,-0.03213969,-0.03760683,-0.012603117,0.04351185,0.031976122,0.11206479,0.023969606,-0.05701907,-0.061071005,0.118428044,0.009718875,-0.038529765,-0.05717946,0.00404485,-0.010330253,0.0040546847,-0.0011833722,-0.016004134,-0.006988692,0.023301708,-0.0023846705,-0.08595939,0.036627762,0.09838864,-0.024193482,0.029707061,-0.03605472,0.041253828,-0.016285105,-0.01958383,-0.018552376,0.08606997,0.011861495,-0.00626045,-0.055211745,-0.025662284,0.009389273,0.015418243,-0.0036434527,0.0018206231,-0.017364219,-0.09510676,-0.0025645643,0.0066179684,-0.029510409,-0.0092698485,0.025920294,-0.02266122,-0.040330403,0.044472996,-0.043627873,0.053436972,0.05832378,-0.03585047,-0.0052605984,-0.040370423,-0.073525876,0.042681843,-0.043626305,-0.011699184,-0.02869733,0.03567149,-0.058057465,-0.050053183,0.09844014,-0.0027014704,0.009977647,0.0427544,-0.031253897,-0.0020533223,0.023504157,-0.054410297,-0.056411717,-0.038426638,0.005210292,-0.040995754,-0.061808877,0.062149383,0.06364585,0.054861564,-0.042156123,0.0013348841,0.079131044,-2.9069843e-08,0.08578892,0.06301977,-0.03225584,0.067021124,0.017964872,-0.13244912,0.043552916,0.035982396,0.016635576,0.091957994,-0.021635251,0.017747521,-0.037529353,0.037638392,0.032959025,0.03324048,0.052373026,0.079158634,-0.011706984,0.023090392,0.049053364,0.04794309,0.0474263,-0.015953943,-0.082571134,-0.017466912,-0.016631506,-0.005926373,-0.0068737566,-0.08145191,0.020802354,-0.024522364,-0.0143903205,0.025783245,-0.0027241134,-0.0693177,-0.0944847,-0.06149825,-0.030316768,-0.073453,-0.027112717,-0.13786715,-0.021935122,0.023716563,-0.033803605,0.082299665,-0.073423274,0.01788383,-0.02562912,0.12354915,-0.111215055,0.009183399,0.048933227,-0.056475863,0.0719702,-0.025869284,-0.015718702,-0.028819444,0.08109186,0.072799645,0.038283184,-0.0076564443,-0.09348442,0.0066952077} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.730833+00 2026-01-30 02:01:09.24775+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1405 google ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE 1 t 1408 Go Karts Mar Menor unknown Spent a few hours here on Friday. The kids (age 12 & 14) had a fantastic time. The staff were really friendly and the prices are very reasonable. All in all a brilliant experience. spent a few hours here on friday. the kids (age 12 & 14) had a fantastic time. the staff were really friendly and the prices are very reasonable. all in all a brilliant experience. 5 2019-02-01 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "The kids (age 12 & 14) had a fantastic time.", "P1.01": "The staff were really friendly", "V1.02": "the prices are very reasonable.", "V4.03": "All in all a brilliant experience."} {0.030751448,0.05185285,0.060624354,0.066619836,-0.055737536,-0.03974695,-0.026410108,-0.03751243,-0.07136896,-0.005823905,0.010311075,0.0026169703,0.013789339,0.0535735,0.023267418,-0.06158741,0.08889862,-0.13328607,0.052867956,-0.123278014,-0.0585061,-0.030961486,0.004446116,0.020613194,0.07173468,0.108906694,-0.021164464,0.017734226,-0.001716203,-0.032913834,-0.032461274,-0.0042853234,-0.004149604,-0.029313557,0.01969948,0.11731366,0.058377817,-0.1250074,-0.014384203,0.08329635,-0.006528168,0.027498193,-0.011284495,-0.029661125,-0.01737022,-0.03893256,0.06682136,-0.066448696,0.050489996,0.04019387,0.07632829,0.008143994,0.07585425,-0.05862554,-0.05818113,0.075687334,-0.059753973,-0.08168143,0.046266384,-0.027645584,-0.07665113,0.021866757,-0.041189924,0.041810594,-0.041386936,-0.09188284,-0.1136913,-0.025618576,0.06966053,-0.11109675,-0.06535577,0.007586766,0.12523691,-0.026432995,-0.010089169,0.036513373,0.063024275,-0.040511504,0.033112098,-0.049281657,0.027820233,-0.07621978,0.011524861,0.0707065,-0.024757028,-0.055464055,0.08942244,0.07373051,0.03828801,-0.016868882,0.12903032,0.08810783,-0.054736473,0.02164053,0.0009508239,-0.05422204,-0.038999554,0.03459079,-0.012867391,0.016299652,0.020102596,0.11660745,0.018157164,-0.035536326,-0.049494684,-0.0012155914,-0.043282114,0.036351737,-0.040611688,-0.04817896,-0.046342567,0.05204361,0.0030025812,-0.0074605164,-0.05096076,0.04321294,0.06950371,-0.050889086,-0.05789777,0.010340097,0.08493376,0.09152135,-0.0125976065,-0.022695359,-0.037798464,0.011660859,0.03786632,-2.4011076e-33,-0.021986626,0.033387143,-0.005213684,0.0018715585,0.07476905,0.0139678465,-0.0160438,0.008752932,-0.014209877,0.03973988,0.04031634,-0.045657862,-0.006607001,-0.07741703,-0.023086417,0.016639495,-0.04692721,0.021804478,-0.036114402,0.030668622,-0.081438996,-0.014488834,-0.0628252,0.0509384,0.0075092106,0.0024217607,0.026263652,0.035582427,0.17430352,0.010722254,-0.024065426,-0.025723523,-0.041085918,0.013077018,-0.0056740753,0.027951352,0.024009043,-0.079298176,0.00010635156,-0.011700921,-0.0027880536,-0.04178718,0.028748207,-0.026012402,0.031323217,0.05297578,0.020831782,-0.0073768785,0.00073792576,0.028623946,-0.08598126,-0.0027331265,-0.060500633,0.05636978,-0.026925826,0.037752002,0.031454206,0.017065888,0.0073778657,-0.022152737,0.07585725,-0.0009658454,-0.028125392,-0.09757408,-0.061275892,-0.03604372,0.038981277,0.024679152,0.054042023,-0.045507576,0.04059345,0.057964444,0.033993047,-0.08387151,0.0076409564,0.050797615,-0.049718954,-0.0010600851,0.08405143,0.09101821,0.075069316,0.06004893,-0.003138552,-0.02603065,0.082926065,-0.048044994,-0.0049331826,-0.077204816,-0.06741993,0.010948546,-0.004644869,0.005540223,0.05700961,-0.003334601,0.052740086,1.05825495e-33,0.045400724,-0.042857163,-0.035659526,-0.018996881,-0.018199647,-0.027101578,-0.073311456,0.010528667,0.022625223,0.037747733,-0.09297013,0.07878307,-0.027963096,-0.03432081,-0.06941253,-0.036141057,0.057103228,0.043962386,0.09105551,-0.03631968,0.041647863,0.05716424,-0.03535859,-0.012206646,0.04060145,0.047148667,0.0031058143,0.017869143,-0.055361312,0.011351013,-0.028164856,-0.025119463,0.04830315,0.055416536,-0.0023681447,0.061722063,0.023506643,0.06555325,-0.019557029,-0.032790877,0.050501972,-0.0712074,0.02716259,-0.005863926,0.022010362,0.021789886,-0.051132876,-0.06463987,-0.028663471,0.03283719,-0.01035548,0.059349347,-0.09675011,-0.064673334,-0.03923803,-0.026590902,0.026023367,-0.092370935,-0.0002433835,0.009749072,-0.036972176,-0.010432075,-0.053185854,0.056665357,0.0030541008,-0.05929223,-0.009529599,-0.04463225,-0.06704528,0.0028251684,-0.100921944,0.013497268,-0.026213009,-0.008937965,-0.015195163,-0.03529768,0.056184668,-0.00927932,-0.018579848,0.05939067,0.0028115374,0.017480405,0.035677213,-0.039257824,-0.026101563,0.012326448,0.046720754,-0.014483057,-0.026194895,0.076028384,0.07405036,0.050137963,0.02137988,-0.015481943,0.016845044,-2.8346376e-08,0.07413133,0.04471953,0.012779302,0.015601998,0.04544676,-0.1726593,0.05813367,0.08255342,0.0015610969,0.096827924,-0.04428274,-0.015596781,-0.003216456,0.010663441,0.068268456,-0.0015490192,0.07471907,-0.006683828,0.0028918795,-0.01388547,0.05290604,0.075387545,-0.038593333,0.029245451,-0.016991459,0.035629597,-0.008163425,0.0025971655,-0.070246674,-0.015247635,-0.037703212,0.01267783,-0.07979541,-0.008984474,-0.032541405,-0.1166016,-0.056071073,-0.05843135,-0.008655801,-0.005639963,-0.04366624,-0.053281277,-0.06032463,-0.031596355,0.07003327,0.08372226,-0.09964041,0.003338098,-0.0074250014,0.042956047,-0.049143877,-0.0019804433,0.0101748835,-0.022260142,0.06329201,0.008111538,-0.009725229,-0.05118799,0.023850067,0.09866937,0.0033415002,-0.03577657,-0.13933691,0.07883183} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:56.710076+00 2026-01-30 02:01:09.250695+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1395 google ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB 1 t 1398 Go Karts Mar Menor unknown Great family fun great family fun 5 2025-07-04 00:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great family fun"} {-0.04259147,0.027709836,0.006801376,-0.018687874,-0.12198987,0.047070798,0.08052581,-0.021362416,0.006711493,-0.0016444281,0.07680501,0.024004517,0.02241961,0.019547034,-0.062463775,-0.02171394,0.035741948,0.009368594,-0.045675606,-0.052714027,-0.052416474,-0.015904514,0.07515824,-0.0028471646,-0.10289807,0.09578285,-0.030809676,-0.005100163,0.05073994,-0.019563967,-0.03827581,0.023961358,0.058529053,0.030436605,-0.017545247,0.005246494,0.045717344,-0.029897835,0.038224213,0.0067357407,-0.0037130076,0.012450892,0.10276913,-0.059406668,-0.02535192,0.12034238,0.01931215,-0.01802036,0.108622424,0.13036916,0.07610807,0.015989805,0.011412446,0.019081388,0.038190205,0.09627114,-0.05307091,-0.13254064,-0.061410505,-0.030258302,0.057942037,0.078613624,-0.03682946,0.017521206,-0.0783591,-0.03093278,-0.013577251,0.03424887,0.004407404,-0.0121727735,-0.113348804,0.040198497,0.06610611,0.049463432,-0.031468894,0.08412589,-0.014505727,-0.003054342,-0.0752923,-0.022907209,0.024745679,-0.059056677,-0.020027192,-0.042385887,-0.046713088,-0.071153164,0.015488522,-0.0343534,0.010523685,-0.020580985,-0.009752182,-0.009389537,0.04554198,-0.026522247,-0.08881757,-0.043734875,0.045346007,-0.01998181,-0.08554658,0.12659048,-0.0036422177,-0.015276055,-0.0129034,-0.0020275281,-0.0668055,0.057277296,-0.025066657,0.04140593,0.042868435,-0.030617582,-0.025722558,0.049339294,0.007879978,0.052654456,-0.013694667,0.026020262,0.027141603,0.028422052,-0.08107904,-0.107316144,0.09636739,0.04975112,0.024154425,-0.019643422,0.018089015,-0.03596789,0.0678833,-3.622629e-33,-0.037065763,0.020781064,0.026927857,0.019339988,0.01965424,0.053829886,-0.059951868,-0.030345626,-0.0914778,-0.0026610694,-0.013980214,0.03674189,-0.038456216,-0.04082377,-0.023192236,-0.0057165315,-0.09923908,0.037396166,0.055437263,0.056652125,-0.06963401,0.026366437,-0.01162498,0.094524965,-0.04155436,0.00860156,0.067274295,-0.062872246,0.057408627,0.024817921,-0.073469006,0.009973355,-0.023857962,0.035443887,0.01374128,-0.06824631,-0.011342151,-0.09214079,0.025071748,0.095902435,0.07105198,-0.04366454,-0.007873459,0.05310688,-0.009074786,-0.0086489525,0.040074043,0.02029663,-0.021290721,-0.015596213,-0.0885,-0.07373839,-0.056428343,0.058649395,-0.010676191,0.02977723,0.025153967,0.0010137627,0.01728819,0.03683507,0.08875263,0.03031027,-0.025890755,-0.028000461,-0.03554312,-0.0037352191,0.052467972,0.053580284,0.01044106,0.0025413595,0.020438194,-0.0076428084,0.050947525,-0.07129189,0.035116363,0.06624095,0.018466374,-0.014689265,-0.029576195,-0.0064851334,0.024277635,0.0065419916,0.045540567,-0.068844445,0.020862391,-0.051970262,-0.03778728,-0.13835435,-0.10381877,0.04533536,-0.0968288,-0.006763712,0.11091749,-0.017738312,0.008615191,3.533257e-33,0.059746593,0.033294976,-0.03332369,0.009376187,-0.006267272,-0.05315022,-0.049146682,-0.034511354,0.07287947,0.07678729,0.0061257435,0.03079621,0.07455698,0.0017914145,-0.044483516,-0.029994307,0.07915638,0.070514664,0.023157148,-0.067478396,-0.022107242,0.0711086,-0.09683243,-0.00670661,0.022457428,0.028313613,-0.08466494,0.037268188,-0.021802612,0.018454527,-0.037360054,0.04166147,0.044421855,-0.03762502,0.06799029,0.050465956,-0.0024577726,0.021890413,-0.08083619,-0.10436377,0.019685885,0.04611127,-0.014013022,0.06595678,-0.01687505,0.05802191,-0.030042706,-0.008392762,0.0015751878,0.0387923,-0.06439409,-0.029024083,-0.041552875,-0.057936728,0.0020446,-0.083822966,0.10333632,0.0111110555,-0.04431558,-0.050879702,-0.094204664,0.092197366,-0.042609446,0.0935792,0.08884492,-0.025439385,-0.063666314,-0.07325502,-0.051877692,0.052493796,-0.09778939,0.0032747209,-0.08753897,-0.0102052735,0.003768768,-0.0012433721,-0.025870627,-0.0024515719,0.063323885,0.101592265,-0.01640692,0.005117561,-0.061302368,0.011009903,-0.05114276,-0.045865364,-0.0048808693,0.050212827,-0.043647762,0.043782357,0.07871257,0.012784999,0.0025267426,-0.020199802,-0.008812613,-1.3953932e-08,0.064497456,0.030242663,-0.027052624,-0.068099655,0.013276607,-0.014098575,0.019180447,0.033145882,-0.0377707,0.04838388,0.038909033,-0.018552931,0.05200791,0.045823365,0.0985245,-0.015921367,0.024479384,0.055159345,-0.025149213,0.03556308,0.04968008,0.0075593023,0.024968319,0.062389772,-0.09327795,0.013396703,0.04444039,-0.0026624952,0.04414395,0.006192003,0.02052566,0.08172372,-0.085028276,0.05929446,-0.055529345,-0.015345634,-0.028672395,-0.022029603,0.07026827,0.021293914,-0.07239613,0.017844964,-0.03814434,-0.06883428,-0.05771445,0.019264292,0.039671537,-0.00014259448,-0.058875762,0.026757851,-0.044756092,0.002290217,-0.08298642,0.061564267,0.04893476,-0.017879777,1.23119635e-05,0.033163074,0.005730609,0.08277565,0.08678458,0.096157424,0.008538739,0.025125349} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.439508+00 2026-01-30 02:01:09.220288+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1414 google ChdDSUhNMG9nS0VJQ0FnSUR1aDRhNXVBRRAB 1 t 1417 Go Karts Mar Menor unknown Great place to enjoy on holiday, not too expensive great place to enjoy on holiday, not too expensive 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {V1.01} V+ I2 CR-N {} {"V4.01": "Great place to enjoy on holiday, not too expensive"} {0.13881105,0.039426427,0.0043618944,0.052392595,-0.06095656,0.025251983,0.0012574208,-0.032469694,-0.024312828,0.023927534,0.010541361,0.0021898902,-0.023804592,0.038954582,0.06834237,-0.05470326,0.11627518,-0.050104707,0.06529312,-0.104645856,-0.046519548,-0.025149863,0.020891951,0.003578835,-0.03223964,0.03502255,-0.046742167,0.03701327,0.003230774,-0.01605575,-0.0066327923,0.047232103,-0.021918233,0.017065836,0.022837788,0.07062315,0.030446757,-0.11709284,0.033229187,0.041892797,-0.0052668652,0.04805957,0.057235982,-0.06622724,-0.009279705,0.019670598,-0.0048387656,0.027982,0.117942035,0.0706904,0.08387851,0.06114196,0.015133311,-0.037260752,-0.06559167,0.004110393,-0.07637583,-0.13734543,0.008942353,-0.08919941,0.059297554,0.029636601,-0.023803791,0.01832618,-0.02459399,-0.091825165,-0.06801986,0.048385963,0.026660835,-0.07566175,-0.061562635,0.02653105,0.06436362,0.01033935,-0.041208003,-0.041315403,0.011490334,-0.008080809,-0.055178832,0.060891833,0.029544039,-0.0311475,0.04489573,0.02806884,-0.037177008,-0.04933861,-0.007899554,-0.010943302,0.030315287,0.008054924,0.06500231,0.022924723,-0.07559395,0.034450065,-0.016352706,-0.0006210768,-0.007863737,0.034317266,-0.0687232,0.059908777,0.024737153,0.09657535,0.05774769,-0.003640259,-0.08840901,-0.0026521063,-0.011046489,0.06271402,-0.019327974,-0.075341865,-0.054225367,0.03158774,-0.016272781,-0.03765467,-0.036832232,0.06435317,0.03551534,-0.049355477,0.031339988,-0.02229039,0.03354496,0.005144166,0.0109574795,0.06472146,-0.053693023,-0.046125025,-0.0039925016,-3.110707e-33,-0.041574262,0.056916498,0.012152943,-0.03819466,0.038104314,0.028120438,-0.022804648,-0.034863282,-0.08863723,-0.006694368,0.0379221,-0.021373618,-0.037907638,-0.01774621,0.062129818,-0.031330787,0.01272895,-0.0021890008,-0.02643859,-0.027326297,-0.0149398735,-0.07396508,0.02941256,0.022999447,-0.037139073,-0.030137556,0.07085639,0.026743896,0.07989171,0.023235826,-0.03321092,-0.031813174,0.018744014,-0.01991328,0.027133722,0.019210875,-0.062563956,-0.025623592,-0.039481957,0.021507941,0.026285479,0.009514557,-0.024870196,0.099347465,0.007955268,0.029017797,0.07152288,0.008740077,0.06707368,0.008325005,-0.020999992,-0.0315577,-0.08708429,0.019254308,-0.0049554626,-0.02143783,0.008086926,0.024804583,0.08403943,-0.04345056,-0.010809992,-0.015241475,-0.059954204,-0.10755691,-0.057180975,0.00630408,0.06676238,0.05688795,-0.027254827,-0.005585427,0.043620635,0.0062156026,0.13022001,-0.051051807,0.024505412,0.085914455,-0.045646302,0.025900163,0.08752179,0.051004265,0.03253124,0.017078122,-0.03321013,0.06527835,0.02341564,-0.043967545,0.03838085,-0.075655855,-0.06933309,-0.03729073,-0.01995634,0.055576798,0.01572139,-0.06209737,0.025613023,8.109646e-34,0.07775923,-0.10344397,0.009643298,0.051104788,-0.039366845,0.012005763,-0.05708098,0.0032733686,0.015354716,0.04479296,-0.10369201,0.058007937,0.060042392,0.05751926,-0.009600929,0.018736117,0.092962705,0.06601246,-0.032098304,-0.006109748,-0.02503148,0.13906017,-0.021856727,-0.023257488,-0.031137334,0.08024087,-0.12732805,-0.028503472,-0.07570826,-0.04237677,-0.0888796,-0.0028901277,-0.03547153,0.004496529,-0.00906985,0.11833597,-0.010024991,0.03140208,-0.037765622,0.06539058,0.061478805,0.0036128385,-0.03454578,0.061969504,0.10030522,0.006395445,-0.105866745,0.05244131,0.121383734,0.011037748,-0.02288694,0.0440726,-0.09821512,-0.0599444,-0.021747394,-0.022187678,-0.06491187,0.021824213,-0.06634118,-0.09132516,-0.074381344,0.009661895,-0.04018852,0.04149124,0.037127726,-0.017654102,-0.015176681,0.010209247,0.028220752,0.06387496,-0.104801945,-0.029175282,-0.044641808,0.0024996167,-0.030571934,0.011887936,0.14513972,0.011124453,0.042071387,0.048750255,0.011895303,0.031051824,-0.06793661,-0.033494793,0.0076490487,-0.03082608,-0.031087771,-0.008692529,-0.05337319,0.063294835,-0.005532001,0.07384035,-0.09012851,-0.0537886,0.015195378,-1.8790061e-08,0.04990747,0.016961897,-0.04031814,0.044133246,-0.043328084,-0.14287907,0.08403437,-0.018498594,0.021146458,0.09714234,-0.0041897357,-0.0402568,-0.021561813,0.0013558525,-0.049899146,0.03390325,0.016995935,0.049425457,-0.024896614,9.654658e-05,-0.0051649064,0.035104115,-0.011049988,0.053987805,-0.051188678,-0.00019375315,0.05727571,-0.028589202,0.06949657,-0.07919404,-0.020351581,0.046029076,-0.024494719,-0.07273901,0.01104916,-0.043445025,-0.04888004,-0.060944274,-0.04460109,-0.07788995,-0.044501536,-0.12035997,-0.03423696,-0.012547099,-0.008578796,0.027484313,0.019211289,-0.0047294293,-0.06082434,0.05532,-0.08213275,0.04235546,-0.029945685,0.026134513,-0.024436662,0.020090748,-0.024212033,-0.05138252,0.014717843,0.04689504,0.025170177,-0.083189994,-0.040716548,0.073759} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:15.64063+00 2026-01-30 02:01:09.278322+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1416 google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE 1 t 1419 Go Karts Mar Menor unknown Lots of fun, great track. Following all hygiene rules. The karts are fast and some of the bends tricky. The staff were friendly, helpful and safety focused. Would take the family again. lots of fun, great track. following all hygiene rules. the karts are fast and some of the bends tricky. the staff were friendly, helpful and safety focused. would take the family again. 4 2022-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"E4.03": "Following all hygiene rules.", "O1.02": "Lots of fun, great track.", "P1.01": "The staff were friendly, helpful and safety focused.", "R4.03": "Would take the family again."} {-0.023483533,0.06848824,0.058168136,0.07112553,-0.06379742,0.037980486,-0.047245372,-0.030540865,-0.076680675,-0.0057642227,0.025056012,0.027629314,-0.010651158,0.031819962,-0.01335666,-0.07087508,0.065311,-0.040067293,-0.01869512,-0.056646563,-0.063884474,-0.06385028,0.051875684,0.054896206,-0.1476863,0.034899555,-0.08144529,0.054121543,0.0058042076,-0.022653116,-0.09084817,0.028695937,0.024844252,0.0012563696,-0.03860274,-0.005218545,0.05370131,-0.031400945,-0.06374878,0.005624725,0.0254676,-0.03443813,0.007842665,0.022219136,0.028281916,0.065707155,-0.06553786,-0.061156157,0.03764771,0.06402189,0.116796926,-0.08439215,0.10773033,-0.05934452,0.010565063,-0.027632479,-0.095991604,-0.011109932,0.04552309,-0.014397435,0.0857455,0.014795005,-0.06320946,0.04915545,-0.048104268,-0.10936422,-0.049234614,0.028489687,0.10091388,-0.0049270024,0.01701529,0.0017330875,0.033796623,0.013710877,-0.008771563,0.042360593,-0.053174384,-0.021234345,-0.1039858,-0.020241952,0.018104393,-0.04522063,0.059528414,-0.014274024,-0.02368699,-0.055662032,0.03073677,-0.025224326,-0.008672291,0.0027540838,0.030864319,0.06661939,0.00709765,-0.09003913,0.03394394,0.043965407,-0.050041948,0.06374714,0.024686283,0.016087223,0.045051295,0.03782199,0.04622975,0.006792105,-0.04143449,-0.0076586464,-0.06364165,0.032795258,0.049659256,0.01880984,-0.025371099,0.03660792,0.028282214,-0.015810596,-0.033796463,0.024147505,-0.04739488,0.053966768,-0.02558111,0.021158071,0.047018725,-0.008823083,0.016433856,-0.011461047,-0.00076070026,0.0027338117,0.055993136,-3.566973e-33,-0.09898397,0.043770064,-0.049094003,-0.031706356,0.08850545,-0.08187036,-0.054067448,-0.16974579,-0.08940233,0.07254686,0.004723705,0.05584469,-0.022472478,-0.044362422,0.088879205,-0.00043325432,-0.0853529,-0.013275569,-0.053396713,0.047236994,-0.027028939,0.00083955587,0.0101052215,0.064495146,0.041264426,0.042017493,0.05424869,0.010338117,0.034740143,0.009554075,-0.07548216,0.008970763,-0.06790681,-0.007736657,-0.08690535,0.0372885,0.006535797,-0.077491835,-0.063536346,-0.0023919812,0.035961457,-0.048525352,0.036217164,0.06334303,-0.106177874,0.032525852,0.02241863,0.027676692,0.04042163,-0.0047585014,-0.04106303,-0.010778933,-0.05176829,-0.021358993,0.02078499,0.06115319,0.0723236,-0.009181243,-0.038487546,-0.027330348,0.1535431,-0.013959281,-0.0012725812,-0.036940817,-0.06431881,-0.04506261,0.001747041,-0.036819093,0.0718949,-0.050050568,-0.07191208,0.05260358,-0.031960838,-0.09424986,0.0766172,0.040551428,-0.04124586,0.017930873,-0.031108517,0.040283754,-0.0013450613,0.014660998,-0.0071413666,0.048158333,0.039101053,-0.015111904,-0.05673686,-0.051504,-0.039179847,0.019049548,-0.044954423,0.030153308,0.01607173,0.07450648,0.026052607,8.278549e-34,0.06689674,0.12617186,0.058750756,0.052664123,0.02544072,0.011192076,-0.022254141,0.035572313,0.08453818,0.0659678,-0.047828175,0.05181227,-0.037172142,0.014607597,-0.01183238,-0.025474314,0.0555023,0.0644969,0.03068007,-0.122687064,0.012615161,0.031762213,-0.013269794,-0.051676903,-0.041317645,0.06536974,-0.014343708,-0.032079153,-0.08631269,-0.034409653,-0.0033571636,-0.04291072,0.060122535,-0.032680444,-0.00037451414,0.03447493,0.0140239885,0.046830397,-0.094199315,-0.024406614,0.090196446,0.016257541,-0.016480386,0.05094439,-0.04448814,0.03574076,0.06094615,0.02672355,-0.002028522,-0.004093434,0.06004254,0.044903435,-0.031917028,-0.03694129,-0.00687241,-0.03413099,0.045890857,-0.07086931,-0.02775656,-0.02943537,-0.086070195,0.060163073,-0.068939194,0.074526176,0.0023271819,-0.0356587,-0.0597473,-0.07112962,-0.07370659,0.00021153863,-0.12474745,0.02944959,-0.030466938,0.031161873,-0.013667047,-0.038860407,-0.013072704,-0.022238208,0.0075684246,0.07491956,0.00030395502,-0.06471516,0.014084188,0.033600606,0.03625587,0.067614235,-0.029031616,0.011446808,0.032477517,0.030419743,0.12663259,0.052296665,0.022307666,0.024788428,-0.054445352,-2.6182452e-08,0.006012684,0.09389859,-0.04649789,0.013437705,0.0050853915,-0.036331818,0.0027764803,0.082375936,-0.05031608,0.0862228,-0.06735219,0.06299917,0.00022501651,0.045745376,0.018857012,-0.015554975,0.006903416,0.13017167,-0.032746434,0.057588644,0.0067893895,0.005806375,-0.0039197155,0.06903851,-0.08294328,-0.060996782,0.017444,0.041212007,0.02520177,0.004996905,0.0063982736,0.048057407,-0.052694086,0.08588087,-0.058839794,-0.08796546,-0.08122686,0.049479228,0.014750447,0.031377185,-0.07259385,-0.030025562,-0.06381555,0.020920185,-0.047672648,0.015707944,-0.057171296,0.013726958,-0.080759585,-8.924098e-05,-0.08134352,-0.024873191,-0.06419283,0.09574045,0.022706406,0.0055102953,0.034251638,-0.049112216,-0.009468092,0.002231819,-0.05133124,-0.048005924,0.012120993,0.030845579} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:31.877943+00 2026-01-30 02:01:09.284659+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1417 google ChdDSUhNMG9nS0VJQ0FnTURBMXBTZHhRRRAB 1 t 1420 Go Karts Mar Menor unknown We had a great meal here tonight. Lovely food and excellent service !!! Thank you !!! we had a great meal here tonight. lovely food and excellent service !!! thank you !!! 5 2025-03-06 01:52:39.833374+00 en v5.1 O2.03 {P3.01} V+ I3 CR-N {} {"O2.03": "We had a great meal here tonight. Lovely food and excellent service !!!"} {-0.024134062,0.05651359,0.036369044,0.019556232,-0.043519083,0.011744769,-0.011813607,-0.15112735,-0.0017497183,-0.05938464,0.05505246,-0.041792072,0.001860843,-0.040103566,-0.03723911,-0.02633852,0.06911499,-0.054611716,0.008924547,0.005707926,-0.026790723,0.016861174,0.0073563335,0.0383577,0.004498775,0.013872583,-0.013176527,-0.0059695663,-0.023248028,-0.12243162,-0.03408355,0.026910273,0.05796314,-0.021401953,0.0412301,0.016159007,0.07866422,-0.15658371,0.062896386,0.056057252,-0.010474494,0.01839035,0.05863841,-0.0401916,0.014157514,0.046695467,-0.06253051,0.02246751,0.093865715,0.014829659,-0.10538638,0.032007795,0.0007680405,-0.042618033,0.017539078,0.06295818,-0.014776634,-0.09614254,-0.04108292,0.00029528665,0.010315943,0.040039968,-0.029337592,0.01986861,-0.03787759,-0.0778594,-0.076558135,-0.001245906,-0.056415107,-0.032243982,-0.040994454,0.006670648,0.08171493,-0.03653956,-0.03519977,-0.025579892,0.023342269,-0.07867349,-0.006954722,-0.017108712,0.002055579,-0.025779597,0.05718609,0.02373796,-0.046862487,-0.027755441,-0.034587827,0.011466667,0.0400733,-0.07597869,0.048046738,0.04795497,-0.021909047,-0.038803536,-0.028065145,-0.023660865,-0.01772516,-0.07018735,-0.037672047,0.009929305,0.0024582664,0.04459326,0.016142696,-0.018534137,-0.053439055,0.006546753,-0.06515745,0.07174434,0.010270992,-0.032611996,0.043734234,0.06783751,-0.004882166,-0.027276738,-0.01578615,0.021582983,0.017331949,-0.06833237,0.0026317767,-0.05324285,-0.029587973,0.05686278,-0.08971978,-0.018454552,-0.005480009,0.003593932,0.089589536,-5.5606507e-33,-0.029193053,0.04288369,0.10065179,0.024949085,0.0818379,-0.043153767,-0.07827428,-0.03961884,-0.07310621,-0.0008755286,-0.017163467,-0.040005006,0.06521355,0.032885298,-0.06508273,-0.04779943,-0.040477913,0.012378065,0.03217596,0.026176859,-0.047197286,-0.019446945,0.036167394,0.05049031,-0.032197136,-0.050120372,0.0066854306,-0.012497971,0.024791703,0.013823108,0.014994796,-0.008370098,-0.020713182,-0.0048705754,-0.04206607,-0.016528346,-0.08399074,-0.05608039,-0.030615618,0.030268772,0.05259461,0.0037647022,0.039700143,0.052669946,-0.105378,-0.049973123,-0.012865626,0.05490379,0.10399642,-0.039890572,-0.04322967,-0.021508617,-0.023753636,0.023874946,-0.02427374,0.01602066,-0.019393781,0.06932941,0.0032367222,-0.03296971,0.053045075,0.03167764,-0.03001093,-0.14436282,0.0071213227,-0.08516156,-0.05776644,0.0048750695,0.024839269,0.033607144,0.037850466,-0.0030772856,0.1249408,0.012836743,0.04728198,0.06984163,-0.034943968,-0.010904902,0.13472575,-0.019791659,0.06489439,0.006838074,-0.0036596807,-0.036097135,-0.0196628,0.069534406,-0.027435228,-0.05819079,0.007782225,0.08242297,-0.073818564,-0.006539056,0.11177457,-0.01680177,-0.07346376,1.552307e-33,0.0519246,0.012159014,-0.06454106,0.042837992,0.020492576,-0.08633498,-0.017845428,0.045667544,0.002401236,0.041806336,-0.0044559124,0.018212076,0.008909129,-0.056291852,-0.104824066,0.057686668,0.049265195,0.106216684,-0.013832647,-0.0791148,-0.060565446,0.07469906,0.04473952,-0.009792255,-0.0018705551,0.076366104,0.07813242,0.08241282,-0.08486073,-0.088548556,-0.01659227,-0.06857457,-0.0038063629,-0.020338697,0.023149576,0.08473982,0.059140917,-0.085863106,0.037222408,0.04721999,-0.011094572,-0.012130458,-0.007486368,0.0917824,0.0022560237,-0.021533187,-0.041960232,-0.08436762,-0.09167357,-0.0071933363,0.049832437,-0.031180087,-0.027415905,-0.032797974,-0.034653336,0.029162342,0.011112172,0.004720553,0.039885666,-0.04568459,-0.06904061,0.08622454,0.0077570654,0.07424094,0.18624035,-0.030653331,0.035160013,-0.07221705,-0.0076824096,0.027835948,-0.03498878,0.017748153,-0.019207625,0.050007496,0.05554457,-0.010187889,0.06829065,-0.06820397,-0.022685567,0.0069381343,-0.016163824,-0.03866292,-0.0017956311,-0.022279754,0.03433278,0.006483119,0.06447847,-0.0025101511,0.017881539,0.0802316,-0.031951897,0.057914212,0.0065012625,-0.046107806,0.06594163,-1.9998772e-08,0.093427,-0.030410822,-0.10929315,0.08965322,0.06255801,-0.115968145,0.023491949,-0.0495472,-0.019613298,0.014177159,-0.038275417,0.07517495,-0.056054138,0.028124519,0.036228172,-0.0129837375,0.015235357,0.061636075,0.0035779977,-0.053259123,0.05991678,0.0709955,-0.024504654,-0.0037186649,0.054273874,0.040349506,-0.04357068,0.009970918,0.024106095,-0.016678901,0.0023139413,0.075745285,-0.07190125,-0.012108374,0.02533513,-0.0523831,-0.04084802,-0.025209814,0.016328508,-0.051702045,-0.07654519,-0.025762402,-0.07729475,-0.0367174,0.0074118194,-0.006245704,-0.014427868,0.13517912,-0.047857545,0.052268058,-0.03943515,-0.018893227,0.08760295,0.048764534,-0.012527903,-0.032605525,-0.0011081175,-0.04981706,0.09960119,0.07307977,0.022526443,0.07024831,-0.08129702,-0.009121724} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:36.13989+00 2026-01-30 02:01:09.288148+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1421 google ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB 1 t 1424 Go Karts Mar Menor unknown Great track with performing karts!\nThe twin brothers are doing a great job to give you a real racing experience from beginner to advanced drivers.\nAlso good covid rules and disinfecting of karts and helmets. great track with performing karts! the twin brothers are doing a great job to give you a real racing experience from beginner to advanced drivers. also good covid rules and disinfecting of karts and helmets. 5 2022-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"E3.04": "Also good covid rules and disinfecting of karts and helmets.", "O1.02": "Great track with performing karts!", "P2.02": "The twin brothers are doing a great job to give you a real racing experience from beginner to advanc"} {-0.12112642,0.01819834,0.0049775178,-0.011019524,-0.045191318,0.07641976,-0.06041417,-0.017458811,-0.055833597,-0.03671876,-0.019512635,0.024264054,-0.015229184,-0.015025776,-0.019376745,-0.053732615,0.04740055,0.017340966,-0.005760912,-0.077313475,-0.054677255,-0.06102093,0.033352725,0.042485487,-0.09583679,0.056935497,-0.036768958,0.026855022,0.032915365,-0.049802676,-0.052814253,-0.0024833032,-0.024459293,-0.008071516,-0.026773762,-0.027281756,0.043887768,-0.03493341,-0.061667137,-0.07187226,-0.0078719165,-0.024681656,0.02506182,0.023436667,0.034061886,0.011433005,-0.043857437,-0.056969583,0.03241892,0.06765579,0.053852767,-0.109650224,0.11544605,-0.08199234,0.049809657,0.06280233,-0.11844014,-0.021796817,0.015669936,-0.029170366,0.072165236,-0.023011426,-0.053088292,0.028424645,-0.07342274,-0.104657255,-0.06966398,0.04231782,0.0048133535,0.015960507,0.032450955,0.00430666,0.014697506,-0.00592861,0.037442457,0.050820418,-0.076414704,-0.019696528,-0.10643663,0.0015712734,0.04006797,-0.09028186,-0.020727009,-0.06736029,0.024629688,-0.09240059,0.03132955,-0.03329182,0.0046516145,-0.011485013,-0.017633172,0.06445459,0.031672407,-0.04773377,0.020158565,0.053758398,-0.00026393984,0.04719077,0.001672422,0.02390678,0.020350719,-0.025730837,0.022131395,0.040345963,0.0061464715,0.028944734,-0.036312584,0.034600683,0.10032981,-0.023555,0.031944785,-0.024978017,0.0183294,0.037072,0.012070623,0.03151834,-0.017240344,0.112183824,0.047339696,0.0040268567,-0.03466633,-0.024032455,-0.01501951,0.040462248,0.046483878,-0.08162938,-0.00044154524,9.474842e-34,-0.06326316,0.051818065,0.005606436,0.015892683,0.083362535,-0.0892495,-0.10745203,-0.09706401,-0.103900865,0.06444789,-0.071668215,0.04277265,0.015542183,-0.0014839786,-0.035576575,-0.01465104,-0.09801705,-0.017225558,-0.07624804,0.06327443,0.02137067,0.04149287,0.00022811671,0.062401205,0.024638588,0.033727016,0.05293057,-0.029940233,0.051904898,0.033821262,-0.05208391,-0.012304315,-0.09125556,0.0473521,-0.08459923,0.04900978,-0.047811877,-0.06881816,-0.034554206,0.071362846,0.021354986,-0.020949358,-0.02596915,-0.060220785,-0.07364396,0.037588026,0.052991122,0.060709737,0.056674402,-0.06500361,-0.04517439,-0.047643613,-0.076662414,-0.0024433532,0.022091735,0.08786671,0.030642932,-0.0014729226,-0.017504629,0.0014961337,0.054329075,-0.050019033,-0.035448737,-0.06457262,-0.10685486,0.0024076102,0.085964516,0.018484188,0.041910086,0.025983151,-0.060879666,-0.0027695624,-0.05219794,-0.07354386,0.14207293,0.006647269,-0.07745403,0.006872503,-0.040810164,0.064157166,-0.039994944,0.032824915,0.043175302,-0.037976008,-0.021783264,-0.045363713,-0.09102785,-0.035435196,-0.0039136303,0.06312388,-0.024973039,0.025787242,0.027629651,0.07741637,-0.0036054538,-2.4521653e-33,0.02360613,0.020554695,0.12519957,0.07562703,0.028856842,0.022374377,0.024280215,-0.015716944,0.1117278,0.05627492,0.029685069,0.0703868,-0.06988292,0.026340995,-0.03830976,-0.03502721,0.09089267,0.069884524,0.031691734,-0.12680085,0.08578072,-0.00609714,-0.040868115,-0.06814848,0.00323096,0.034025505,-0.040565785,0.025049709,-0.03719016,0.029838165,-0.047922213,-0.0112349605,0.03498292,-0.058790185,-0.0027697252,0.08856089,0.0029334985,0.0106948195,-0.076331206,-0.04045609,0.038771432,0.028942768,-0.04232921,0.028126338,0.011196521,-0.010195651,0.07201201,0.06768404,-0.024924899,0.0012792156,0.020279333,0.050441176,-0.039979078,-0.011509787,-0.034167636,-0.054885887,0.0440191,0.014567219,0.005326963,0.06517953,0.011182938,0.029556941,-0.06583033,0.06613103,0.032046497,0.033485625,-0.016158434,-0.035414584,-0.024492402,0.072837815,-0.056493178,0.034212757,-0.062070098,0.0358774,-0.08126318,-0.032669846,0.0038627675,0.0011121527,0.008051719,0.041888982,0.027573677,-0.08390702,-0.0024954174,0.083107494,0.05581981,0.0600332,0.02976429,0.012656488,0.0702823,0.016669052,0.036352452,0.08533308,-0.015612482,0.027728427,-0.06180129,-2.6529536e-08,0.03090034,0.05426057,-0.09037904,-0.020118235,-0.061960973,0.050065834,-0.037747122,0.024082834,-0.1162425,0.061929543,0.0047854497,-0.0024647212,-0.016877182,0.0062851673,0.02718634,-0.031811405,-0.0057086726,0.08041802,-0.007994768,0.004980077,-0.020762503,0.057958037,0.041086566,0.07499892,-0.050903015,-0.05963186,0.09382617,0.04578889,0.10578495,-0.07112836,-0.052170638,0.0771031,-0.007826482,0.02986859,-0.0036082475,-0.027687816,-0.04741331,0.10171134,0.07573656,-0.0011588352,-0.016394021,0.011358692,-0.0667859,-0.0074265287,-0.003400863,0.030455988,0.044227403,-0.07654691,-0.08850912,-0.028673632,-0.025882635,0.021755321,-0.04116768,0.108316846,0.014092125,0.022540674,-0.055205755,-0.049351808,-0.0040661613,0.011054543,0.00488398,-0.06612897,0.023417687,0.0014615786} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:28.893859+00 2026-01-30 02:01:09.304239+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1428 google ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE 1 t 1431 Go Karts Mar Menor unknown Love coming to this track,been coming for a couple of years,very nice track,very friendly staff and very reasonable price good fun here we go again for the 3rd time this week. love coming to this track,been coming for a couple of years,very nice track,very friendly staff and very reasonable price good fun here we go again for the 3rd time this week. 5 2023-01-31 01:52:39.833374+00 en v5.1 R4.03 {O2.03} V+ I3 CR-N {} {"P1.01": "very friendly staff", "R4.03": "Love coming to this track,been coming for a couple of years,very nice track", "V1.02": "very reasonable price good fun"} {-0.026113328,-0.048624627,0.060034715,0.015894819,-0.02992503,0.059107356,0.013461795,-0.056019556,-0.040736083,-0.030365516,-0.06241111,-0.032198973,-0.027922194,-0.030846588,-0.040188577,0.018540336,0.036022235,-0.057169802,0.012883509,-0.022657404,-0.072217874,-0.026438205,-0.025131192,0.122976735,-0.122191146,0.02659592,-0.07796223,0.09252543,0.0017556916,-0.06793346,-0.074133895,0.05093977,-0.012930664,-0.04287461,0.010634011,0.021476746,0.026326068,-0.061496228,-0.02270046,0.053041548,-0.037265535,0.0060622483,0.054104857,0.034710985,-0.013797318,0.042076774,-0.013933665,-0.048032053,0.06579813,0.05511638,0.050343562,-0.05574001,0.07177556,-0.051341765,-0.040168326,0.068700045,-0.009145466,-0.024858704,0.016180007,-0.029310502,0.0108863395,-0.086636655,-0.050622374,-0.029204065,0.0036679762,-0.07163608,-0.10393996,0.040403634,0.05846769,-0.019533042,0.010894074,0.020086648,0.041093662,-0.047772095,0.00588026,0.063659035,-0.041799504,-0.027770184,-0.039462168,-0.0554794,0.09390812,-0.053929847,0.012006544,-0.07315884,-0.019344281,-0.07932501,0.058113888,0.026649412,0.0055688703,-0.040922355,0.039404098,0.1232718,-0.07161771,-0.060973674,-0.009942377,0.011214213,-0.032611575,0.0016027131,-0.030630048,0.07574282,0.08586622,0.09097535,0.012708293,0.007144266,-0.036052052,-0.0055450224,-0.02139329,0.12400914,0.055098772,-0.06230383,0.054101214,-0.00015568038,-0.007846611,0.0146410335,0.032386404,-0.007209917,-0.018400641,0.0595229,0.023432668,0.0026569243,0.012330146,0.041316986,0.012669493,0.04372828,-0.057026923,-0.04981986,0.047232755,-2.793443e-34,-0.011403966,0.029829696,0.007927466,-0.02735951,0.057265267,-0.07092415,-0.10057147,-0.011827361,-0.14347641,0.047903087,0.0014635894,0.030231517,0.0043048253,-0.04663329,0.0029620333,-0.08162223,-0.0759223,-0.006863961,-0.06915507,0.060995024,-0.014802495,0.032366548,0.015303444,-0.041250795,0.04517746,-0.027042722,-0.035576146,-0.040934443,0.07148298,0.018197538,-0.057643928,-0.008699612,-0.053589202,-0.019375514,-0.025196224,0.0036685474,-0.06587835,-0.02846344,0.006786475,-0.039823014,0.048909392,-0.037937816,-0.008404283,0.035622098,-0.03302065,0.0139774075,0.040619705,0.059883486,0.09467096,-0.024255784,-0.048507582,-0.054068316,-0.08698451,0.037307285,0.06969934,-0.020160198,0.054390144,-0.0024897843,0.040467344,0.0011077565,0.09205021,0.046889555,0.00013388443,-0.09453677,-0.054396577,0.045543436,-0.0050442214,-0.059693005,0.07226495,-0.005095228,-0.02408294,-0.03323203,0.0048010307,-0.035125174,0.068699956,0.0030414502,-0.04129094,-0.02528474,0.06550502,0.023456953,-0.0742922,0.025694938,-0.022946453,0.020331854,0.06935927,-0.008289021,0.008851719,-0.12228644,-0.043980267,0.004327114,0.0012008245,0.008625313,-0.00089440454,0.044090565,0.018342745,-3.0645448e-33,0.09944219,0.0895081,0.07404225,0.0010630843,0.0094337305,0.045921367,-0.04484162,0.120051466,0.08050047,0.11683897,-0.05751518,-0.018871754,0.047279183,0.046968807,-0.039919656,-0.056294683,0.083103046,0.029100392,0.030356903,-0.09444624,-0.010213895,0.024748357,-0.052919764,-0.031401932,-0.040678903,0.005970593,0.064562984,-0.013554668,-0.020009022,-0.05570244,-0.07476926,0.020969197,-0.025772236,-0.10003628,0.010210047,0.059762664,0.0744987,0.031085417,-0.059703957,0.052707516,-0.0440884,0.025430417,0.021143124,0.012457713,-0.020782433,-0.002981231,0.04510817,0.13778031,-0.07941984,0.029469868,-0.0040442524,-0.059219453,-0.02549521,-0.06502311,-0.042338494,-0.0015497181,0.034583285,-0.03979016,-0.033203725,0.0021848113,-0.045823038,0.050772928,-0.061439473,0.031319104,0.068622604,-0.006205465,-0.003556746,-0.048727818,-0.06005746,0.048305433,-0.13058081,0.0007725574,-0.07005403,0.013714531,-0.0003441002,-0.049887493,0.060633905,-0.0674915,0.024171451,0.034019634,0.00733207,0.03839419,0.027661834,0.00398164,0.047244366,0.086000405,-0.023285387,0.010389846,0.0070544844,0.045353424,0.10466731,0.044158056,-0.05054268,-0.03405369,-0.0962842,-3.3234556e-08,-0.0395542,0.123245746,-0.045529794,-0.02686973,0.063200414,-0.031876415,0.09277726,-0.03567053,-0.06986252,0.017586036,0.03985234,-0.018528158,-0.026240597,0.02265443,0.02416,0.018263321,0.008241401,0.10278958,-0.01813896,-0.03630782,0.0038409946,0.033661224,0.055680975,-0.0037608247,0.023816528,-0.03954981,0.003955409,0.0346852,0.010736373,-0.075186424,0.02834534,0.06639112,-0.0074651428,0.004407886,-0.0102983685,-0.088064425,-0.05395618,0.048982486,0.00518513,-0.070827834,-0.058092624,0.018744346,-0.05346484,0.00014167032,-0.03432163,-0.014231663,0.017734878,-0.015972883,-0.03250564,-0.051371973,-0.11936059,-0.10379419,-0.040493734,0.12972207,0.08260321,0.04673995,-0.10517973,0.02938311,-0.036584876,-0.006825315,-0.010654004,-0.06737909,0.020960297,0.051480863} 0.825 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:35.521422+00 2026-01-30 02:01:09.324273+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1422 google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB 1 t 1425 Go Karts Mar Menor unknown Brilliant place. Lovely staff, very helpful and friendly. Very very reasonable rates. Will definitely go back with the grandchildren. Food good too. brilliant place. lovely staff, very helpful and friendly. very very reasonable rates. will definitely go back with the grandchildren. food good too. 4 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"O2.03": "Food good too.", "P1.01": "Lovely staff, very helpful and friendly.", "R4.03": "Will definitely go back with the grandchildren.", "V1.01": "Very very reasonable rates.", "V4.03": "Brilliant place."} {0.016497167,0.03253414,-0.019499753,0.019810053,-0.10749201,0.013246297,-0.031128341,-0.05823779,-0.025639888,-0.040747363,0.061211843,-0.039666455,0.016476441,0.024150934,-0.06451527,-0.04434552,0.11214285,-0.11965186,0.05921494,-0.10528103,-0.03009422,0.03736307,0.092471436,-0.0075747124,0.004599828,0.06389443,-0.071830794,0.05827836,0.03098436,0.014726678,0.025493845,-0.004881751,-0.017096426,0.0023270794,-0.036054946,0.11429036,0.024429142,-0.06948016,0.035833575,0.051757272,-0.0064290124,0.025367044,0.007730989,-0.053802166,-0.013018792,0.04671987,-0.0029174727,-0.025150789,0.06727156,0.009561742,0.03915539,0.01678477,0.056313325,-0.05848899,-0.07544631,0.053667136,-0.0068404865,-0.122084506,-0.0029452057,-0.034149192,0.07690615,0.027293723,-0.056208804,-0.020942496,-0.041381534,-0.07995116,-0.0652961,-0.010570644,0.012929281,-0.16264234,0.0033111668,-0.010127904,0.121806,0.007961572,-0.015956128,-0.014307499,0.023487126,-0.035536308,-0.061940018,-0.084982365,0.034011327,-0.041782282,0.05727381,0.015939998,-0.07158304,-0.073406726,0.036839116,-0.02556487,0.062401026,-0.011708109,0.086009145,0.07040427,-0.028817395,-0.0124124605,-0.026672004,0.017654367,-0.051741235,-0.035730887,-0.05825674,0.035276,-0.0025879587,0.096150614,0.015567424,0.003867598,-0.054364305,-0.006203818,-0.01232603,0.07757431,-0.008866603,-0.010276889,-0.039524708,0.033583686,-0.025826558,0.027475743,-0.07796603,0.023661891,0.038881775,-0.09118461,0.0063047474,-0.052907616,0.033120506,0.061910365,-0.064524315,0.022305338,0.008490724,0.030083522,0.0353827,-3.501326e-33,-0.040114526,0.074819244,0.03060387,-0.03293561,0.051244862,0.011385133,-0.070288986,0.0630426,-0.0262696,0.021327052,0.042610362,-0.078377336,0.024487717,-0.02505017,-0.032302737,-0.0019841199,-0.0129167335,0.03428265,-0.0069741877,0.018082242,-0.10286634,-0.0094409445,-0.012793069,0.029718552,0.021169256,-0.029227233,-0.016647547,0.07214449,0.096174665,0.020605402,-0.0040195365,-0.046824936,-0.031311687,-0.07826375,-0.03650704,0.043949302,-0.009062847,-0.059392057,-0.022628784,0.026387215,-0.04329284,0.01508559,0.05828512,0.08604791,-0.026465457,0.05701312,0.10312874,-0.020958105,0.044426706,0.03284965,-0.073774196,-0.058581084,-0.067238405,0.117825225,-0.0059191682,-0.0066828574,-0.01211148,0.07653179,0.048422188,-0.029605992,0.12085104,0.0220191,-0.08494759,-0.05247576,-0.010390029,-0.12161932,0.028274938,0.034656253,0.07587164,-0.009470261,0.043511022,0.02366247,0.0953008,-0.012557287,-0.021545935,0.08621647,-0.023966588,0.015730979,0.0653286,0.0060334858,0.060398616,0.045910228,-0.02016245,0.05183945,0.07274939,-0.017452732,0.025137722,-0.088374525,-0.07369921,0.02590098,-0.046627406,0.042780627,0.058239955,-0.027759094,-0.026912412,9.151457e-34,0.010330958,0.01335473,-0.0018849839,0.065367125,-0.048787568,-0.012231807,-0.07497297,0.014156788,0.01351281,0.02713832,-0.13311054,0.06799218,0.0400897,-0.010052065,-0.05619392,-0.012695192,0.02210054,-0.057267986,-0.0039967787,-0.082347035,-0.04186347,0.088626735,0.026841782,-0.006790019,0.0126836775,0.065414205,-0.056779884,0.011564781,-0.08273403,-0.0290202,-0.0791042,-0.06277927,0.07243978,0.03529123,-0.0012357857,0.02624968,-0.0015766002,-0.006187088,-0.05431308,0.05379668,0.086551525,-0.006557604,-0.07460182,0.03715277,0.006804891,-0.03334293,-0.039869547,-0.028935941,0.024713924,-0.0030362052,-0.003751068,0.040877193,-0.048247572,-0.06408621,-0.03937536,0.019947307,-0.0022183529,-0.018004755,0.00053188927,-0.075405136,-0.0367375,0.06757012,-0.010764224,0.12211968,0.07605587,-0.019504348,0.017064795,-0.01519165,-0.010496165,0.007596816,-0.042630248,-0.00422406,0.030484745,-0.024516415,0.0025398568,0.017370753,0.15559404,-0.036819153,0.011966028,0.063431926,0.036019575,-0.03195662,0.02524975,-0.03901749,0.008656722,-0.07497043,0.014827904,-0.0091096405,-0.01265675,0.013627126,-0.01012463,0.040784415,-0.019504232,-0.061003674,0.0028400496,-2.5946996e-08,0.071341425,0.015175762,-0.012355827,0.04385913,-0.012778224,-0.18868172,0.07591785,0.052339196,-0.03173292,0.060729664,-0.0531889,0.033653554,-0.04607103,0.006850387,-0.0038819758,-0.009188665,0.048013486,0.061252456,-0.055812296,0.03920633,0.021935133,0.10574856,-0.034821488,0.039359424,-0.063558035,-0.0033334098,0.040866047,-0.011527068,-0.03534137,-0.04628138,-0.020303266,0.030373637,-0.034951027,0.031599388,-0.00771524,-0.047523934,-0.09703322,-0.03969845,-0.0120215155,-0.035999805,-0.058859106,-0.07041609,-0.07453512,-0.005135874,0.030964904,0.027400564,-0.0017046932,0.07292001,0.010978296,-0.014269897,-0.11419371,0.037615206,-0.0031775765,0.0029890493,-0.023170102,-0.05489417,-0.040034905,-0.08490559,-0.023542691,0.13175318,0.013440774,0.009003532,-0.028200595,0.024506988} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:41.345553+00 2026-01-30 02:01:09.307486+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1462 google ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB 1 t 1465 Go Karts Mar Menor unknown Health and safety standards are not very high witnessed 2 accidents and were only there for an hour\nApart from that excellent track health and safety standards are not very high witnessed 2 accidents and were only there for an hour apart from that excellent track 4 2020-02-01 01:52:39.833374+00 en v5.1 E4.01 {} V- I3 CR-N {} {"E4.01": "Health and safety standards are not very high witnessed 2 accidents and were only there for an hour", "O2.03": "Apart from that excellent track"} {0.056617532,0.013243526,0.014635006,0.04502411,0.019074975,0.018313779,-0.06985114,0.07057935,-0.11280991,-0.004841005,0.050317492,0.02577644,0.01793558,-0.0031544396,-0.06645085,-0.052413408,0.096359864,-0.04985698,-0.10787342,0.013438172,-0.013269392,0.024693623,0.091079615,0.08274085,-0.12757967,0.015801359,-0.052623156,0.06613282,0.0014042726,0.015668772,-0.05379026,-0.050541908,0.0522911,-0.026362577,-0.01589242,-0.033596512,0.07499954,-0.006151376,0.010947227,-0.032432165,0.011556328,-0.049315568,0.016638918,-0.03255516,0.023469167,0.04880589,6.18142e-07,-0.10436012,0.020216115,-0.018928848,0.011229442,0.03563494,0.099812925,-0.08116564,0.009314035,-0.02204162,-0.056044783,0.0039958525,0.01947509,0.030401336,0.011221272,-0.031537805,-0.05385964,-0.041498594,0.052918695,-0.063918784,-0.10604108,-0.029727627,0.10170215,0.04847098,0.018666232,-0.015477093,0.032390095,-0.0068083373,-0.0064501045,0.019823179,-0.0346863,0.04650356,-0.05688213,-0.036521275,-0.016529564,-0.13208151,0.095356606,0.011761355,0.09464425,0.008074125,1.3725356e-05,0.049825106,-0.021938575,0.037918154,0.017956607,0.028795108,0.09913179,-0.00505655,0.08988933,0.014447002,-0.027168088,0.07540003,0.058202222,-0.024729377,0.035089288,0.053595323,-0.08164705,0.05745501,0.03898503,0.03265051,-0.025180038,0.022801109,0.018118521,0.031255227,0.10427447,0.028521746,0.07879303,-0.015418008,-0.010122347,0.040420733,-0.109372616,0.030987736,0.0051958007,-0.006298728,-0.018451534,-0.0506445,0.038024735,-0.04158493,0.02285788,-0.04050878,0.07377472,-1.25700965e-33,0.0054533924,-0.0015727174,-0.0018376727,-0.13318217,0.033323105,-0.022330647,-0.18030454,-0.106507495,0.049844757,0.046707354,0.010824233,-0.01274114,0.017597781,-0.10793915,0.028238442,0.0067696827,-0.03429178,0.048386656,-0.12563488,0.028799172,-0.012913765,-0.05790504,0.0012041751,-0.006968265,0.019316306,0.07853376,-0.009853183,0.03353991,0.0792895,0.010034644,-0.051344167,-0.009872753,0.03249237,0.007900404,0.018524183,0.048150554,-0.048196398,-0.00043474004,-0.052055016,-0.033275105,0.0058235987,-0.045462593,0.0017334415,-0.01750675,0.037160028,0.047478106,-0.04353049,-0.00090572523,-0.034286153,-0.027724843,-0.111202314,0.0012825002,-0.0014570557,-0.090294145,-0.0058800937,0.09020359,0.07474614,0.05138133,0.0031213753,0.09415817,-0.0018828674,0.1367383,-0.009444288,-0.053681206,-0.015537883,-0.0004644635,0.00937219,-0.017320925,-0.021320108,0.043027207,0.042120248,0.039499935,-0.035535417,-0.02264158,0.0043659266,-0.02250635,-0.017861716,-0.006177941,0.053605366,-0.028151762,-0.06773521,0.009732533,0.012681606,-0.016132949,0.044880457,-0.0021538807,-0.04594628,0.029069727,-0.08847975,0.039758187,-0.0403647,0.035828505,0.019407911,0.0031604248,0.017593535,-6.67058e-34,0.010040569,0.09783923,0.02550533,0.024974344,0.0006883498,0.026575133,-0.011261842,-0.035638664,0.03529571,0.12568364,0.02343326,-0.00975785,-0.0084596025,0.0072349114,0.0118419,-0.070643574,0.11688709,-0.023182377,-0.008001093,-0.06873693,0.08870482,-0.02779172,-0.03479765,0.055190362,-0.09687669,0.057120297,-0.069873,-0.06845535,-0.08348982,-0.10415936,-0.02846005,0.052223105,-0.011138957,0.01425824,-0.008203997,-0.019481137,0.0064273733,-0.032503024,-0.091271505,-0.04755154,0.039062794,0.078043416,-0.034749106,0.0016693671,-0.024254365,0.013289036,0.030907895,0.0018357018,-0.04842849,-0.027541332,-0.06226336,-0.039004665,-0.050610937,0.053127963,-0.012049905,0.013550674,0.04377966,-0.06896326,-0.0483662,-0.06556302,0.068383105,0.054370478,-0.104588546,0.1049792,0.05093808,-0.016399432,-0.075341016,-0.038998555,-0.03457731,0.023708561,-0.047654867,0.04421042,-0.024034282,0.0006155562,-0.07765526,-0.023006145,-0.07106042,0.017170085,-0.04261293,-0.0078083994,0.021607114,-0.027912518,0.0119168945,0.0391333,-0.007868783,0.062340442,0.012392769,-0.081857756,0.025534825,0.070635475,0.00080256455,0.07616865,-0.025696091,0.042502828,-0.13658823,-2.336895e-08,-0.06076779,0.0646935,-0.027713375,-0.043491993,-0.05700948,-0.05418244,0.019238206,0.113222584,-0.055445135,0.10027752,-0.05296856,-0.0053593246,-0.02775987,0.0402274,-0.0022833084,-0.08494856,0.0018924177,0.04310328,-0.037513763,0.049932063,0.039255735,0.026037285,-0.0042561046,0.033715293,-0.016087059,-0.0041033826,-0.0036701907,0.045713153,0.00926193,0.002756227,0.03606052,-0.018290598,0.032378115,-0.0058011888,0.017240604,-0.07817184,0.041999776,0.05079728,0.03893292,0.0026680434,-0.06206408,-0.04124778,0.03958847,0.11281871,0.08913141,-0.03838272,-0.065103754,0.027913213,-0.027546935,-0.049601525,0.011944016,-0.033039823,0.020914081,0.03324476,0.048262995,0.0496537,-0.005737494,-0.025503805,-0.05992493,-0.037668083,-0.0012149343,-0.054754682,-0.00046207273,0.08038064} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.359527+00 2026-01-30 02:01:09.435519+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1427 google ChdDSUhNMG9nS0VJQ0FnSURELXNPVG1nRRAB 1 t 1430 Go Karts Mar Menor unknown Very enjoyable experience here. Have been a few times now and the whole family loved it very enjoyable experience here. have been a few times now and the whole family loved it 5 2025-01-30 01:52:39.833374+00 en v5.1 R4.03 {} V+ I2 CR-N {} {"R4.03": "Very enjoyable experience here. Have been a few times now and the whole family loved it"} {0.008011299,0.037657306,0.012459718,-0.010489406,-0.12550624,0.0015102525,0.007251605,-0.030472936,-0.0135324495,-0.0932712,0.02175477,0.047974754,0.025804374,0.034464624,-0.007937942,0.01982465,0.10399304,-0.11217451,0.029999865,-0.075941734,-0.029778713,-0.05511326,0.039802365,-0.00077076216,-0.039547596,0.0056901216,-0.03021086,0.08863274,0.05682758,-0.060500592,-0.016801015,0.074373916,0.0022715565,0.0066987267,-0.019093443,0.07407469,-0.0017741905,-0.07273476,-0.016786909,-0.013659826,0.015038537,0.023827417,0.08536709,-0.07456952,0.026453497,0.04826792,0.029488895,-0.048288934,0.13098966,0.014830791,0.07491335,-0.06578764,0.09330705,-0.025458919,-0.05473537,0.045328133,-0.047930695,-0.06351066,-0.050718952,-0.10336907,0.026566409,0.07374504,0.009154324,0.051162314,-0.003454493,-0.09699513,-0.059654474,-0.048864998,0.09494845,-0.09073207,-0.08366714,0.019040043,0.013486432,-0.010071075,-0.06782614,0.018919352,0.008594225,-0.076714404,-0.08085037,-0.008388689,0.049426224,0.024014056,0.016912442,0.0066440254,-0.09894691,-0.07233677,0.051333707,0.016658422,0.01181514,0.0142141525,0.041602463,0.05847816,-0.03983856,-0.0532276,-0.0058719446,-0.036913298,-0.032348488,0.0507188,-0.030881867,0.011077412,-0.015670707,0.044707745,-0.016103758,-0.01852769,-0.043089807,0.03988022,-0.03072431,0.05516952,-0.0222123,-0.013985645,-0.06674761,0.03376721,0.007949189,0.03685375,-0.04369559,0.045325443,0.074151196,-0.005211354,-0.013513917,0.04717793,0.05404297,0.018578783,0.0065215942,-0.027725352,0.005524948,-0.08778071,0.07057259,-3.701868e-33,-0.021136686,-0.010877101,0.037457943,0.010239754,0.0585796,0.06966723,-0.020284481,-0.014457751,-0.15652135,0.0068906215,0.0517169,0.022010706,0.017983107,-0.021592997,-0.026747132,-0.043210182,-0.10242643,0.026168095,-0.07713275,0.08687818,-0.06310303,0.045348894,-0.0014199513,0.051531658,-0.029016515,0.017186612,-0.007826963,0.0062065404,0.05948849,0.015560093,-0.051519487,0.014955407,-0.07758198,-0.045460235,0.0037545338,0.083327055,0.06771282,-0.0069060484,0.014588628,0.052044015,-0.03355329,-0.004572457,-0.046726614,0.04467898,-0.022035494,0.0046392395,0.01970217,0.041020982,-0.04337173,-0.060715236,-0.086024195,0.0032951622,-0.0061700665,0.069893725,0.023057744,0.07422692,0.017066162,-0.0017488501,0.04606716,0.013722889,0.018076139,0.026182922,-0.030583324,-0.071288675,-0.06538064,-0.009661443,0.07100832,0.024249863,0.039431207,-0.02025928,-0.0017872975,0.0049713217,0.029679472,-0.039329182,0.003648713,-0.006905286,-0.061247084,0.02453284,0.07589294,8.70399e-05,0.050145682,0.003072213,0.02190148,0.01722249,0.0964843,0.0053123436,-0.036169242,-0.15279226,-0.09063399,0.033433788,0.037658233,-0.023157224,0.15023339,-0.04139704,0.058241352,2.0098724e-33,0.04931325,0.0021810462,-0.037075672,0.0032300563,-0.031606786,-0.0453437,-0.10856727,0.10577554,-0.034473438,0.055477522,-0.02653951,0.015979975,0.07285024,0.058185674,-0.04656704,-0.014114661,0.069129206,0.06497679,0.027611041,-0.050496835,0.050744995,0.078596234,0.005747169,-0.03743604,-0.038410123,0.020818202,-0.044446524,0.009604026,-0.06027558,-0.019903442,-0.002173994,0.061459173,0.004911224,-0.030892193,0.02631087,0.06829307,0.08934811,0.0026731263,-0.0056831692,-0.061871782,0.011944213,-0.047910012,-0.023914397,-0.0030907628,0.013014466,-9.667871e-05,0.029325048,-0.034330186,-0.036554605,0.021130634,-0.072864816,0.017005965,-0.0704294,-0.09551649,0.0024511702,-0.06978887,0.07519011,-0.04228142,-0.025415543,-0.04675096,-0.042935207,0.05014611,-0.05930574,0.03670006,0.078965984,-0.005146874,-0.015525206,-0.09739834,-0.08476722,0.039016828,-0.12178044,-0.02891446,-0.12015228,0.011174223,0.08261304,-0.04297884,0.031179963,-0.077434964,-0.012212529,0.03785066,-0.016418066,-0.0074198092,0.011381556,-0.017928842,0.0553318,0.018428788,-0.0053110914,-0.04888042,-0.05353355,0.054501057,0.03155822,0.04206648,-0.075333014,-0.04569966,0.04228163,-2.3107953e-08,-0.014580536,0.055379216,-0.030619387,-0.009671714,0.022229986,-0.055990912,0.08900685,0.0033296766,-0.060974993,0.017228685,-0.038966294,0.025966229,0.012625358,0.038036037,0.057672955,0.019696608,0.16670011,0.105411805,-0.013583246,0.0204834,0.06948836,0.047749776,0.01081521,-0.0028728854,-0.08148721,0.0797992,0.039576586,-0.066840105,0.018243928,-0.08589819,-0.018315597,0.0035468997,-0.024396393,0.086530834,-0.061924163,-0.041209575,-0.0041923425,-0.00860298,0.036495693,-0.057034157,-0.022482561,-0.07037497,-0.021601047,-0.0087511,-0.01781207,0.046061568,0.04599502,0.020100696,-0.012010437,0.09080704,-0.02301954,0.0015353048,-0.04126406,0.07964352,0.08276678,0.012130128,-0.017328212,-0.0046022856,0.05323262,0.053137537,0.012604177,0.035033602,0.0017441893,0.09389871} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:24.665332+00 2026-01-30 02:01:09.321795+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1433 google ChdDSUhNMG9nS0VJQ0FnSURaMXBxZTVRRRAB 1 t 1436 Go Karts Mar Menor unknown Took my daughter for her first time karting here. We all had a great time. Would go again definitely. Muy Bien. took my daughter for her first time karting here. we all had a great time. would go again definitely. muy bien. 5 2024-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Took my daughter for her first time karting here. We all had a great time. Would go again definitely"} {0.058843352,-0.027498325,0.04119777,0.08136805,-0.09351957,-0.020283127,-0.01630548,-0.04684138,-0.03417679,0.0050694044,0.01892689,0.0405698,-0.00013779446,0.057611175,0.03457174,-0.009268415,0.13034037,-0.11474382,0.044624273,-0.0758555,-0.06969513,0.0010261084,-0.030578624,0.015441167,-0.028246103,0.028439192,-0.0138452025,0.126037,0.032036796,-0.02993563,-0.08381837,0.05134081,-0.07284862,0.03347862,0.01646865,0.058915567,0.01329878,-0.14062046,-0.007940002,0.025347048,0.029310562,0.034352664,-0.009619728,-0.06431261,0.031275097,0.03196832,-0.014742801,-0.04801811,0.032212332,-0.010641426,0.11227609,-0.049001288,0.07742017,-0.076070555,0.0074596084,-0.01678107,-0.07403539,0.004604062,0.011948012,-0.027360894,-0.08186401,0.06316459,0.025831662,0.043791074,-0.047245424,-0.08416143,-0.04321289,-0.013072027,0.082830615,-0.027027735,-0.02054153,0.047814045,0.004433036,-0.0204987,-0.020380083,-0.051966894,-0.026872857,0.037998777,-0.055864234,-0.017807085,0.054433238,-0.008414448,0.030703751,-0.013451362,-0.043808106,-0.085999854,0.03772278,0.0268817,0.010697847,-0.04663862,0.035191722,0.08672995,-0.033207595,-0.026842462,-0.009159055,0.03644018,-0.074289806,0.04402058,-0.012744669,0.006334922,-0.0051352773,0.10073182,0.063764006,0.017013064,-0.030396862,0.014269852,0.021570612,-0.008386283,0.0027583905,0.0042815898,0.020491928,0.031272408,0.060946807,-0.010966075,-0.027955271,0.042747147,0.016272696,0.033046905,-0.030818474,-0.017509978,-0.036951747,0.016650023,0.018249312,0.028573457,-0.005471404,-0.060980797,0.07691257,-1.3139415e-33,-0.089557946,0.013323848,0.005784291,0.043801595,0.07300253,-0.010351264,-0.0004228118,-0.12495344,-0.09450407,-0.03792285,0.0838106,-0.00767063,0.014604314,-0.046350613,0.052956335,0.09235151,-0.018911345,-0.04172201,-0.044508945,0.004242005,0.019071367,-0.053896297,0.00836313,0.087468125,-0.031358622,0.017272245,0.085268706,-0.053099047,0.023646522,-0.00899284,-0.08785108,0.031450167,-0.08648582,-0.036256835,-0.034397,0.020260515,0.06061383,0.03256204,-0.061563917,0.035953425,-0.026414534,-0.032221813,0.011619659,-0.009197086,-0.05753112,-0.018563166,0.0277449,0.0352754,0.021373644,-0.042124756,-0.14840607,-0.022902455,0.022796199,0.02691624,-0.03951755,0.08120558,0.037263192,-0.009306816,-0.05985902,-0.04150146,0.02773099,-0.025396943,-0.0331148,-0.074802466,-0.073589295,-0.050002765,0.026520012,0.020324187,0.03847089,-0.030751554,-0.009403186,0.017627591,-0.021494485,-0.050340094,0.13567124,0.019906208,-0.0076812287,-0.014753161,0.05380683,0.05548045,-0.007791082,0.006800189,-0.034154095,0.062293172,0.096685216,-0.055679567,0.01570663,-0.13819833,-0.04004367,0.021812035,-0.04366311,0.021761457,0.09109901,0.05894251,0.026274359,-5.3819655e-34,0.11497135,0.059999116,0.08904892,0.08842803,0.029112024,-0.014769174,-0.0049655763,-0.03791032,0.019859362,-0.01183608,-0.050496995,-0.038802683,0.047211945,-0.0034871772,-0.021801313,0.031079717,0.057297952,0.02006544,0.012888114,-0.017768461,-0.009619929,0.07335404,-0.008482607,-0.05940103,-0.020487702,0.047249876,0.025099754,-0.035294402,-0.09916717,0.04464012,0.0109395785,-0.021621617,0.0052251904,0.043207522,-0.01078839,0.05247218,0.071674995,0.03754564,-0.070800416,0.061073173,0.027500037,0.0040263077,-0.019787995,0.032848254,0.0022186355,-0.012129852,0.06867972,-0.002976464,0.02227612,-0.0012395817,0.0315519,0.06516823,-0.11929038,-0.012471562,0.050743043,-0.032679416,0.063678846,-0.059291422,-0.10382034,-0.0818177,-0.09919014,0.0021969853,-0.022780113,0.032620687,0.03882804,-0.032960262,-0.06911693,-0.004644142,-0.07799916,-0.02733225,-0.107888564,0.03384156,-0.07039906,0.058418903,0.0945177,-0.057373166,0.07504536,0.021055195,0.015394861,0.079599984,0.017388612,0.0136072785,-0.024342582,-0.045061633,0.08554066,0.024795938,-0.04371706,-0.06894181,0.04935552,-0.004601511,0.054106183,0.064759396,-0.00085534854,-0.045910936,-0.06106299,-2.4253353e-08,-0.03972153,0.11272389,-0.07727087,0.023915455,-0.012994237,-0.10806693,-0.002605856,0.040860046,-0.08690514,0.015378188,-0.05582195,0.05390336,0.008827434,0.009142052,-0.00083485246,0.071738675,0.06837706,0.09256248,-0.0023304883,0.011149416,0.031393185,0.03649887,-0.047009815,0.024561917,-0.07453062,-0.020645125,0.015262903,-0.009441265,0.0026594168,-0.07972589,-0.027266877,0.008854225,-0.091467366,0.061403614,-0.040456437,-0.13990673,-0.054214325,0.034516264,-0.015095055,0.029490445,-0.07753571,-0.02716175,-0.019724838,0.0060477657,-0.065269165,0.002654306,-0.024780676,-0.03372562,-0.005403048,0.07055257,-0.09938629,-0.010627592,0.015826296,0.071422,0.07397095,0.058603697,0.0027416006,-0.058260072,-0.0345708,0.042113453,-0.019040462,0.0046968604,-0.027054107,0.025381772} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.002877+00 2026-01-30 02:01:09.342057+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1435 google ChdDSUhNMG9nS0VJQ0FnSURHNDlXN2tBRRAB 1 t 1438 Go Karts Mar Menor unknown Take the kid a few times a months all the staff are first rate...have now joined a group to race at the track again well organised and friendly/helpful staff take the kid a few times a months all the staff are first rate...have now joined a group to race at the track again well organised and friendly/helpful staff 5 2026-01-30 01:52:39.833374+00 en v5.1 P1.01 {J2.01} V+ I3 CR-N {} {"P1.01": "Take the kid a few times a months all the staff are first rate...have now joined a group to race at "} {0.013088226,0.0018456643,0.049341034,0.041183114,-0.010484644,0.0033239124,-0.057255678,-0.01885897,-0.06569477,-0.0013297228,0.013444913,-0.06782516,-0.0997431,0.051506888,-0.0389761,0.005179159,0.09778199,-0.003268305,-0.020210173,-0.093868546,-0.053389627,-0.07944864,0.022136545,0.0487475,-0.016646137,0.05912468,-0.059981395,0.07284713,-0.0026488046,-0.011793706,-0.023196314,-0.047553886,0.055483766,-0.013689765,-0.02391498,0.05512502,-0.0034224468,-0.0009965443,-0.05090468,0.042148955,-0.013027595,-0.01821821,-0.0764139,-0.033922594,0.02836934,0.0014166214,0.039329495,-0.024015177,0.04045321,0.0052781915,0.041909717,-0.08630262,0.09834064,-0.067909315,-0.045120616,0.057824038,0.00971138,0.006693071,0.025123836,-0.029896017,-0.07379281,-0.0289599,-0.10654668,0.0027701622,-0.04860983,-0.06747442,-0.043426655,0.045101017,0.062359028,0.026122006,0.07732132,0.0034123121,0.07711326,0.017004479,0.030219287,0.11766526,-0.015973667,0.019381484,0.072074234,-0.12859182,-0.0032252287,-0.059208516,0.044766054,0.014769297,0.028943457,-0.021669973,0.13110751,0.0052178493,-0.010907526,0.04822958,0.059676,0.1549002,0.07339896,-0.07429656,0.010201554,0.03591001,-0.029631078,0.09422162,-0.043081675,0.0010615918,0.017625855,0.04984188,-0.004666892,0.06836709,-0.04569078,-0.057782657,-0.025236199,0.056642268,-0.035989713,-0.037659023,0.04884289,0.005340425,0.039818518,0.043729935,-0.066007785,0.022826044,-0.068141185,0.046464436,-0.056215484,0.07521583,0.013651179,0.039764967,-0.03552944,0.010813351,-0.03477138,-0.039167475,0.087867364,-1.764327e-33,-0.05477379,0.010549737,0.0068204147,-0.03285482,0.0147834,0.020240188,-0.035638243,-0.011839853,-0.020329928,-0.008194911,0.026877802,-0.015181981,0.041539352,-0.13299389,-0.0076908204,-0.00052005355,-0.08093185,-0.021193856,-0.09218566,0.04756243,-0.0040118457,0.002603369,-0.021697866,0.02352565,0.11978492,0.024754226,0.053172827,-0.008224402,0.08934745,0.027060151,-0.10993325,0.036406465,-0.039760858,-0.033151574,-0.07281945,0.018815335,0.07491636,-0.00066916423,0.005065679,-0.009343018,-0.032104924,-0.059892196,0.01192718,-0.034756217,-0.08052847,0.067698136,0.07985609,0.03216958,0.0054510245,0.080092154,-0.058502343,-0.06765776,-0.034512926,-0.017432047,-0.008796535,0.002102823,0.040628117,0.0324977,-0.03128854,-0.062580384,0.12819633,-0.0006694626,-0.02347926,0.036973182,-0.015057288,-0.07104286,0.011502337,-0.02784322,0.03251423,-0.09803626,-0.021924486,0.01937883,-0.056215532,-0.030002274,-0.029050725,-0.0013671281,0.05411886,-0.0075534857,-0.019498028,-0.019296708,-0.026857266,0.009759662,-0.014296879,-0.04356651,0.05405284,-0.024704,0.014759891,0.0059923083,-0.005061199,0.05542785,-0.03290996,-0.018880842,-0.006246386,0.121404596,0.014506291,2.9940319e-34,0.06633237,0.055394657,0.09314648,-0.033679616,0.06631106,0.04939706,0.0053436365,-0.040822137,0.05493434,0.1068482,-0.08125751,0.006997483,0.0090092765,-0.00880412,-0.09226219,-0.072570056,0.03343514,0.06498027,0.012163131,-0.06049462,0.044571444,0.01765529,0.005676244,0.03997347,0.040544465,0.0050440985,0.060555536,-0.057981383,-0.08130146,-0.022740591,-0.015321012,-0.036798794,0.025232451,-0.012475611,0.023374677,0.027938938,-0.04406846,0.029625349,-0.069818564,0.13316564,0.04448423,-0.033882093,0.016457615,-0.0282464,0.0037107843,-0.016826233,0.05766981,-0.0018891788,-0.09758287,0.051452454,0.023532784,-0.0136912605,-0.011066384,-0.022139587,-0.030143715,0.051143523,0.07391742,-0.09770722,-0.0330178,0.039002772,0.008567131,-0.0032605324,0.0007754187,0.06971772,-0.014966972,-0.113096654,-0.049088303,0.024473483,-0.035172552,0.019877441,-0.090522304,0.08867864,0.008084173,-0.07496077,-0.059416715,-0.036823828,-0.049154963,-0.005869071,0.0019894359,0.0058171134,-0.0014762466,0.027457424,0.12346081,-0.05268758,-0.011631051,0.05905508,0.06596658,-0.010906064,-0.0009442249,0.019225713,0.09792609,-0.0052913036,0.067072496,0.057234965,-0.062702134,-2.629995e-08,0.04609819,-0.007513463,0.03467521,0.03183234,0.12653014,-0.04454521,-0.043362863,0.046005417,-0.045634534,0.038190145,-0.018120749,-0.006616258,-0.016723596,0.00032863172,0.07310482,-0.045545895,0.020002548,0.0425114,-0.06325221,-0.0019754807,-0.012932845,0.0743411,-0.0038374788,0.004372778,0.01744617,-0.110706724,-0.020535855,0.03948185,-0.07270749,-0.025718978,-0.013900532,-0.013155021,0.0006230066,0.0012767506,0.00497405,-0.061387423,-0.0981244,0.10698842,0.008119225,0.03532452,-0.066350006,0.059338614,-0.022819491,0.041062795,0.024018588,-0.0027820496,-0.09082442,0.03882003,0.016583811,-0.057704985,-0.07262809,-0.086057834,-0.02620954,-0.012479482,0.08349369,0.02871154,-0.030027859,-0.010711743,-0.07014796,0.07592938,-0.06446228,-0.055370767,-0.021236314,0.07666393} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.024555+00 2026-01-30 02:01:09.349123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1438 google ChdDSUhNMG9nS0VJQ0FnSUNRbHYtRzVBRRAB 1 t 1441 Go Karts Mar Menor unknown Took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. Great fun . Highly recommended. took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. great fun . highly recommended. 5 2019-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. Great fun . Hig"} {0.047761176,0.016254246,0.03469867,0.016486587,-0.1060705,0.016943729,-0.010196197,-0.013018453,-0.047664806,0.0067927483,0.020010436,0.0053259917,0.029273741,0.080919474,0.008171846,0.01615877,0.063482046,-0.06111794,0.10374327,-0.14009427,-0.02999478,-0.050372705,0.042525582,0.02106555,-0.0008154043,0.08870893,-0.07432488,0.0008031646,-0.035469662,-0.07001075,-0.00890848,0.036367048,-0.0034005211,-0.024624793,-0.024281047,0.019663587,0.045723915,-0.10256894,-0.03166184,0.11688632,-0.038671363,0.042864062,0.009361784,-0.008903672,0.009364092,-0.012039749,-0.04284933,-0.092604585,0.08609114,0.03994189,0.035080787,-0.067544654,0.049429655,0.003130189,-0.014559436,0.023053246,-0.0511564,-0.058750216,-0.013339987,-0.024649808,-0.116825804,0.0048042494,-0.05243455,0.025910646,-0.0059252833,-0.026901336,-0.06581463,-0.07399395,0.065257356,-0.042587623,-0.074766725,0.0048162765,0.07721949,0.01166593,0.0196774,-0.020503571,0.030422805,-0.04371596,-0.024328433,-0.07346112,-0.0034129957,0.012150362,-0.022814997,-0.0045354203,-0.013563106,-0.06578848,-0.0051923315,0.03730585,-0.001283377,-0.04651987,0.05517646,0.085515305,-0.022756958,0.062952474,-0.0012142629,0.0037565983,-0.057263747,-0.045183267,-0.05032476,0.017640773,-0.004121284,0.07065845,0.07641715,0.00021666524,-0.05484368,-0.034349315,0.043647796,-0.029501325,0.0046868473,-0.05686872,-0.04182228,0.047317054,0.07579502,0.058069095,-0.052973066,0.0068996837,0.09247585,-0.010419273,-0.023883777,-0.008480126,0.04396058,0.024986789,0.100271605,0.037885386,-0.053303607,-0.060094047,0.031922363,-2.2358955e-33,-0.05272599,-0.016390134,0.026061298,0.09432867,0.053792667,0.0065354337,0.025692219,-0.039539576,-0.094381586,-0.015334047,0.03748517,-0.07201074,0.0010889521,0.044160355,0.0155736,0.057334006,-0.08181152,-0.002736849,0.0034522167,0.020799851,-0.0074599152,-0.010478225,-0.023022575,0.07628313,-0.013741488,0.07574342,-0.02583546,0.021757614,0.16315915,0.023211867,-0.018722108,-0.069340676,-0.12218827,-0.021883562,0.03441316,0.015195777,0.079910904,-0.033487253,-0.044003766,0.06984616,-0.03363175,-0.045485012,0.012559865,0.06403251,-0.01339209,0.015281567,-0.009620179,0.023494007,-0.02198053,0.047872823,-0.094435975,-0.012261051,-0.020350782,0.016188856,-0.033383302,0.03559164,0.03001471,0.018703235,-0.019738438,0.023090132,0.111813225,0.015460086,-0.021353662,-0.102378495,-0.05083214,0.037595946,-0.010257513,0.006494055,0.12195084,-0.024083925,-0.008685653,-0.015716812,0.009578568,-0.05089272,0.04033813,-0.008391333,-0.028168598,-0.01103399,0.078895606,0.01073321,0.036709905,-0.011470938,-0.027898306,-0.0063286135,0.029476149,-0.046610028,-0.020555468,-0.20516515,-0.024183154,-0.031995036,-5.707122e-06,-0.041020773,0.084345564,0.031249594,0.020663606,4.16588e-34,0.014119325,0.019338943,0.0056307456,-0.009914789,0.044213664,-0.058556303,-0.0050254315,-0.006477425,0.10079851,0.013794763,-0.0445682,0.046517372,0.10266599,-0.032218564,0.011157151,0.020291902,0.033756323,-0.024154315,0.015545635,-0.06840901,0.0013087105,0.07562642,-0.055316694,-0.012175116,0.03182966,0.048618004,0.0012648974,-0.02515,0.029307835,0.07140249,0.02420551,-0.025078267,0.0767475,0.006134305,-0.010364183,0.00021828878,0.042248778,0.10481456,-0.071447134,-0.043424565,-0.0048486497,-0.09829697,-0.036817044,0.02759524,-0.063498594,0.11310361,0.021054137,0.023718135,-0.04539524,0.05848039,-0.038883798,0.0397873,-0.08034881,-0.09170406,0.01458432,-0.058557335,0.024191538,-0.08705639,0.06593846,0.007305768,-0.059193566,0.0050758887,-0.078433044,0.043582305,-0.008720185,-0.06591445,-0.04262691,-0.00842201,-0.12129283,0.03167476,-0.1287646,0.027304368,0.019281859,-0.048032425,0.023815779,-0.06641194,0.058531143,0.06607775,-0.021586861,0.05203904,0.01393616,0.0030680941,0.014600078,-0.0033872582,0.015353888,-0.041246425,0.07222,-0.027201526,-0.07949156,0.06632812,0.09190934,0.052111268,0.041232254,-0.028860452,0.018283797,-2.66299e-08,0.022453336,0.098980166,-0.028490355,0.020444885,0.07054586,-0.050016996,0.0010230826,0.08619095,-0.020194631,0.09826273,0.010009138,0.04550168,0.038347438,0.0031362807,0.025960127,-0.01641716,0.09421821,0.08608741,-0.0014827133,-0.02400378,0.020963,0.024464522,0.018286332,-0.026040448,-0.022209935,0.01559442,0.0055010617,-0.0025214003,-0.027946943,-0.09805298,0.016370015,0.029520532,-0.037510738,0.03659844,-0.06704605,-0.08064778,-0.06058622,0.011997848,-0.002461074,-0.014994739,-0.041876715,-0.018252917,-0.0046446556,0.0054764566,-0.04671126,0.069424875,-0.07821372,-0.08352725,0.053263184,0.04719134,-0.08075576,-0.04802356,-0.053463046,0.030180894,0.13140486,0.023875488,-0.03541003,-0.02830562,-6.378621e-05,0.060956128,0.04770467,0.005567261,-0.07515663,0.061725568} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.081409+00 2026-01-30 02:01:09.361848+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1440 google ChdDSUhNMG9nS0VJQ0FnSUMwdl8zVHFBRRAB 1 t 1443 Go Karts Mar Menor unknown Fantastic place! A good range of karts and a nice long outdoor track with food and drink on site. Great fun for all the family. fantastic place! a good range of karts and a nice long outdoor track with food and drink on site. great fun for all the family. 5 2020-02-01 01:52:39.833374+00 en v5.1 O3.02 {E1.04} V+ I3 CR-N {} {"O3.02": "Fantastic place! A good range of karts and a nice long outdoor track with food and drink on site. Gr"} {0.02275281,0.002144118,0.017822992,0.08173911,-0.097086646,0.04666833,-0.026328865,-0.06908591,-0.038817834,-0.008620962,0.012194445,-0.0078096786,0.008302772,0.025344206,0.023356969,-0.05088991,0.12667479,-0.06548833,0.06683494,-0.1108086,-0.042245977,-0.031627543,0.0698287,0.06563319,-0.08365764,0.033946767,-0.08738734,0.09647956,0.03307667,-0.016233427,-0.044129994,0.04163737,0.009684898,-0.009043225,-0.017353142,0.038346946,0.028370474,-0.114513665,-0.0013937558,0.032639258,0.017363878,0.038124487,0.02625968,0.019898562,-0.0034514775,0.06184171,-0.06611237,-0.033814415,0.07206871,0.052902024,0.092936285,-0.023342809,0.06490017,-0.06532,-0.07154606,-0.0061824326,-0.11025975,-0.06885806,0.047554985,-0.06274536,0.12875824,0.03634305,-0.041589014,0.021518892,-0.046367683,-0.08760556,-0.1261086,0.08506309,0.061507184,-0.0842971,0.034256633,0.042660613,0.06749386,0.01297652,0.02018065,-0.0017926655,-0.034853388,-0.018212564,-0.08694834,0.03701754,0.060259815,-0.02980835,0.06632815,-0.032509476,-0.060639776,-0.082991004,0.03169588,0.010925972,-0.005982378,-0.039868273,-0.0022635392,0.042207524,-0.05136106,-0.060135886,-0.015440792,0.026721934,-0.035175145,0.0057212897,0.002798855,0.00067419274,0.050114457,0.06348668,0.046016466,0.012110243,-0.036286213,0.018221287,-0.03859873,0.1012882,0.06790034,0.008037217,-0.009803457,0.041348573,0.02110015,0.024051849,-0.033081982,0.017882904,0.019044405,0.03640455,0.015427627,-0.029754318,0.011522252,0.02012908,0.04094342,0.04389358,0.060313653,-0.0017481311,-0.004475736,-2.2780647e-33,-0.04927017,0.015554503,0.026068123,-0.04040554,0.07883142,-0.053163484,-0.060630344,-0.12640962,-0.121944964,0.028924162,-0.007964024,-0.0016297478,0.0036721434,-0.0017971633,0.101561315,-0.008240485,-0.020673847,-0.05471345,-0.047172133,-0.02518314,-0.03609827,-0.07812941,-0.004703154,0.06487966,-0.008188712,0.012195415,0.058700994,0.01376121,0.027962437,0.0032767209,-0.067095295,-0.03672143,-0.061888896,0.0015753446,-0.0090311915,-0.021969242,-0.008354227,-0.05838769,-0.009419055,0.03624709,0.057247132,-0.0444725,-0.014560956,0.059057206,-0.048825692,0.02234652,0.03153997,0.018605174,0.06865443,0.011020536,-0.1032377,-0.048608854,-0.025884058,0.03141958,-0.007545739,0.03430058,0.02487103,0.0076184305,0.010192115,-0.048733905,0.08648816,0.0033341427,-0.026268039,-0.10288942,-0.049844682,-0.047279976,0.009863875,0.009815772,0.064072415,0.010200815,0.02362948,0.04493641,0.07797351,-0.009018083,0.04054138,0.05588833,-0.07807298,0.014771844,-0.032990046,0.08838622,0.01915882,0.02247531,-0.030786997,0.05079756,0.030263625,-0.0486947,-0.050166704,-0.11108528,-0.04635714,0.0020558138,-0.06273418,0.04331803,0.0032158797,0.024841003,-0.0073802564,2.2296928e-35,0.07648648,0.029501189,0.08143589,0.03319011,-0.01087922,-0.022237413,-0.0034161354,0.001123156,0.06850614,0.049700744,-0.07384252,0.08862848,0.027593235,0.018723458,-0.053507477,0.026660118,0.070611864,0.048531063,-0.0025355478,-0.11095256,-0.067708336,0.022895651,-0.0646659,-0.038233317,0.006516287,0.07169812,-0.036505613,-0.0043212967,-0.08685875,-0.01742639,-0.061682608,-0.025180906,0.0747717,-0.040645786,0.030565321,0.061133865,-5.186597e-05,-0.0029711428,-0.08349924,0.006495324,0.0812419,-0.007326558,-0.033319283,0.02812371,-0.028237749,0.02253925,-0.003403951,0.02140723,-0.0030552344,-0.061760124,0.039765526,0.0047025476,-0.03943538,-0.045111958,0.021393878,-0.016301937,0.020083822,0.030001786,-0.035002243,-0.055108003,-0.08666662,0.07857495,-0.033040874,0.08586874,0.0744094,-0.025909832,-0.033312123,-0.05693536,-0.06886302,0.015418496,-0.08019923,0.05042937,-0.017326606,0.033212613,-0.0122019015,-0.027822115,0.107648425,0.017140796,0.072216675,0.07907391,0.030639851,0.022094246,-0.02727236,-0.024995146,0.04692305,0.021355163,-0.060407385,0.013958068,-0.0059101433,0.04467525,0.073955484,0.08839434,-0.096192405,-0.012539606,-0.07197748,-2.3000716e-08,0.03414968,0.08858527,-0.076703005,0.03880093,-0.02177891,-0.068928495,0.08794424,0.015989693,-0.05302364,0.04721477,-0.025664467,0.009618957,-0.03033219,0.0074594775,-0.011773389,-0.047015697,0.016498882,0.13222146,-0.010946313,0.01573219,0.02546816,0.042375658,-0.02663622,0.060501713,-0.07398073,-0.060858358,0.04207635,0.02282824,0.067220844,-0.064894184,0.009954251,0.06235979,-0.061887503,0.054651264,-0.024006253,-0.09119909,-0.100998126,0.03132855,-0.018966768,0.009062171,-0.07891607,-0.06713435,-0.059559785,-0.017134279,-0.047646236,0.07875243,-0.009620191,-0.010494988,-0.057084918,0.0043098824,-0.1473569,-0.02518986,-0.062089175,0.057219375,0.035418097,0.0020105627,-0.011457559,-0.06587414,-0.017487457,0.03148708,-0.022397509,-0.021061936,-0.02872748,0.041302215} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.126823+00 2026-01-30 02:01:09.369553+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1444 google ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE 1 t 1447 Go Karts Mar Menor unknown Karts for all ages, nice circuit and friendly staff. You should make a reserve if you don't want to wait karts for all ages, nice circuit and friendly staff. you should make a reserve if you don't want to wait 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I2 CR-N {} {"A1.02": "You should make a reserve if you don't want to wait", "P1.01": "Karts for all ages, nice circuit and friendly staff."} {-0.0092484,0.017703965,0.02580041,0.054988906,-0.059962466,0.047873378,-0.042535838,-0.025804121,0.004315103,0.034956407,0.030916434,-0.009027188,-0.06122074,0.049730584,0.049144264,-0.0465041,0.05926836,-0.066051655,0.06157687,-0.11647676,-0.044629097,-0.031697705,-0.029084146,-0.012397283,-0.07921427,0.016182972,-0.026105454,0.048534043,0.024011875,-0.013360366,-0.117324024,-0.028904632,0.05295374,-0.017131161,-0.009667338,0.030593116,0.01724174,-0.041470017,-0.058641173,0.022663051,-0.009534853,-0.02601044,-0.04484821,-0.006900073,0.004357804,0.038143363,-0.026507284,-0.049900603,0.05649156,0.021613276,0.12811576,-0.08801093,0.061782464,-0.022776792,0.030697249,-0.01165082,-0.10005729,-0.021583233,0.10474801,0.017803866,0.00788514,-0.026406134,-0.04876975,-0.0033095032,-0.06384087,-0.061364498,-0.022617735,0.13077673,0.04647535,5.0710467e-05,-0.0043402566,0.031602584,0.06108175,0.014474898,0.06320056,-0.0029867792,-0.00070720614,-0.08076122,-0.0117469495,-0.018601764,-0.015397808,0.01084044,-0.03789182,-0.0469412,-0.065301456,-0.056696497,0.09126105,0.056331266,-0.021293523,-0.025835397,0.011278027,0.10169562,-0.002212454,-0.00894417,0.013006281,0.034480467,-0.045909777,0.031701095,-0.037946533,-0.016774472,0.086474255,0.058952425,0.095211245,0.07835828,-0.03937351,-0.010869124,-0.064024165,0.02720022,0.017132863,0.012241292,-0.022194367,0.0963906,-0.005523214,-0.0034833062,-0.06511488,0.040690754,-0.06250334,0.022099564,0.0140374685,0.06419582,0.01945173,0.034697745,0.025363596,0.047337133,0.017715856,-0.002562123,0.027526481,-4.617191e-33,-0.074235,0.033213034,-0.119346865,0.013043541,0.06445804,-0.12963712,0.022227408,-0.11926992,-0.14403793,0.036830902,0.016701948,0.031348128,-0.038698755,-0.023846274,0.07840103,-0.030515088,0.032682,-0.026996445,-0.00030306267,-0.043073263,-0.02730288,-0.12151885,-0.048043046,0.121035375,0.0749005,-0.020183623,0.08395994,0.0012719926,0.04627019,0.00066926127,-0.03454358,0.017676583,-0.050361756,-0.028619424,-0.04397891,0.0171902,0.018819587,-0.016748967,-0.0016926441,-0.04539599,-0.010572256,0.008927645,0.01650595,-0.0066644954,-0.0015533258,-0.014680718,0.059843175,0.0041892575,-0.01807333,0.055745542,-0.10938154,-0.0074681076,-0.007627535,0.015574349,-0.051686537,-0.011474501,0.064401165,0.049819753,-0.061090644,-0.07456334,0.043059073,0.019144513,-0.0091220215,-0.04422476,-0.104547456,0.007943546,0.013147458,-0.020208377,0.034080163,-0.022397827,-0.03886295,0.046388682,-0.0039041669,-0.009828544,0.04910376,0.06546101,-0.06331922,0.0069403197,-0.03310025,0.040365435,0.04794634,-0.025392974,-0.06290015,0.10320652,0.07653831,-0.04178111,-0.05260764,-0.024256222,0.030210761,0.059081096,-0.111251615,-0.013409784,0.057127748,0.1010888,0.0064813974,2.3095964e-33,0.0870466,0.043701757,0.07126205,0.07591249,0.0803444,0.00806635,-0.012240941,-0.036190324,0.03630614,0.049726687,-0.06980437,0.07000147,-0.019445473,0.024997702,-0.028473929,-0.040167022,0.006643976,0.047411233,0.059369132,-0.07501363,-0.03216067,0.076593,-0.05273062,-0.040528093,0.0027025319,0.07168854,-0.09875817,-0.015065393,-0.12845242,0.04841052,-0.054733034,-0.114913665,0.030838618,-0.020993493,-0.011055164,-0.03399782,0.0074760737,0.07989859,-0.04336935,0.08723672,0.07510002,0.010121351,0.01935527,0.017585319,-0.06016273,-0.014212812,0.1402361,-0.03491793,0.023697922,-0.012976431,0.04157323,0.03847181,0.021993281,-0.05264476,0.0038269141,-0.030760456,0.028100431,0.013406956,-0.025865143,-0.019272046,-0.01986442,-0.03286372,0.019658893,0.050063163,0.024791406,-0.035435762,-0.034072842,0.00035044653,-0.026693538,-0.011016305,-0.043597244,0.07739356,-0.016733453,0.0060840547,-0.023936747,-0.06354293,0.05439882,0.0286691,0.03065162,0.023914186,0.031179795,0.007121081,-0.028054716,0.01581949,0.07657654,0.037985135,0.0043768133,-0.018192045,-0.012079919,0.015555952,0.052304745,0.064161725,0.009734184,0.0070421207,-0.039370786,-2.4251207e-08,0.054747187,0.08685709,-0.075758755,0.038376942,0.027198773,-0.08202899,0.003349224,-0.048216738,-0.007397014,0.05698922,0.03727087,-0.006409513,0.0757359,-0.057844717,0.028287364,0.014095666,-0.037992112,0.052130185,-0.040506557,0.030903518,0.029019704,0.046045072,-0.012755544,0.06243729,-0.042530507,-0.10399551,0.060000464,0.03125909,-0.013428973,0.012387761,-0.03794332,0.044880897,-0.045984484,0.014686884,0.03260919,-0.03570452,-0.14124878,0.039047707,-0.015323865,0.056497518,-0.053301852,-0.1106222,-0.10569255,0.018225303,-0.055821236,0.056687683,-0.06691014,-0.018392218,-0.060491174,0.023462025,-0.046056554,-0.056206685,0.053314753,0.03391391,0.09470208,0.024979176,0.043523367,-0.026121804,0.07758865,-0.06273379,-0.060449496,-0.06693959,-0.049625292,0.019985689} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.173521+00 2026-01-30 02:01:09.383974+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1446 google ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE 1 t 1449 Go Karts Mar Menor unknown Friendly staff with a good choice of go karts. Great fun, 5/6 laps in total and the go kart I used (f-300) had plenty of power, hands were aching by the end. friendly staff with a good choice of go karts. great fun, 5/6 laps in total and the go kart i used (f-300) had plenty of power, hands were aching by the end. 4 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Great fun, 5/6 laps in total and the go kart I used (f-300) had plenty of power, hands were aching b", "P1.01": "Friendly staff with a good choice of go karts."} {0.01541546,0.051095832,0.010508977,0.05850455,-0.114083774,0.007996389,-0.012423126,0.0010882757,-0.019796025,0.02698495,0.018189697,0.03457809,-0.037914004,0.07190542,0.03946702,-0.08488156,0.07091739,-0.068763174,0.054139167,-0.040151894,-0.08515211,0.020748314,0.015981195,0.06334136,-0.098112896,0.0023763862,-0.053267498,0.042188365,0.005893704,-0.038273994,-0.13398132,0.0327433,0.00020297676,-0.011740644,-0.12397855,0.025079036,0.024785066,-0.053900428,-0.050334387,0.028997144,-0.055378754,-0.036602255,0.047072843,0.037638653,0.035869922,0.071473755,-0.0012300087,-0.0051440066,0.053354688,0.061043985,0.10257976,-0.06358441,0.038293406,-0.060202535,0.08773843,-0.018469663,-0.08236022,-0.03508427,0.014202328,-0.01601158,0.030325277,-0.02797198,-0.057918776,0.028453099,-0.10490956,-0.029689407,-0.064837344,0.0395312,-0.015931176,0.012948369,-0.0106018465,0.0043997495,0.047987,0.0036218488,0.030635,0.046000857,-0.021003395,-0.016186565,-0.037550114,-0.0034953475,0.04930719,-0.0043000453,-0.011366233,0.05127614,-0.036700066,-0.08702896,0.012616238,0.046274483,0.024753818,-0.021913553,0.033108883,0.08729898,-0.01863036,-0.03765812,-0.008114061,0.046070118,-0.06063796,-0.019229598,-0.051447734,0.010896458,0.039154228,0.04052574,0.094402395,0.06303287,-0.063947104,0.05333653,-0.07139642,0.030698063,0.06092265,0.011371505,-0.015716236,0.053278983,-0.06943611,-0.07740633,-0.075076014,-0.043449644,-0.053427946,0.061946522,-0.014714968,0.046544738,0.013857327,-0.019664621,-0.0042793183,0.034793563,0.02612967,-0.020527665,0.036194053,3.5897228e-34,-0.050895393,0.04774867,-0.007118302,0.014088805,0.043463,-0.06644286,0.011794455,-0.12805852,-0.08608992,0.05092258,0.038901374,0.06707642,-0.004532015,-0.005336114,0.12525907,-0.055601157,-0.060435683,-0.017004767,-0.09147268,-0.057483893,0.041124187,0.01849393,0.023128893,0.058442593,0.12186221,0.028882353,0.09379712,-0.024430102,0.020234969,0.01491867,-0.03418629,-0.04740474,-0.035854083,-0.020464389,-0.02841864,0.018912654,-0.07109339,-0.080999285,-0.03836627,0.012145063,0.031004908,-0.016051978,0.026390271,0.021567583,-0.034215793,0.0081861075,0.040845826,0.07429868,-0.053212255,0.054369908,-0.08490934,-0.011259987,0.006587618,0.06886728,-0.040777784,-0.016467834,0.10665283,0.05721271,-0.08933435,-0.021462092,0.041593924,0.07960035,-0.0087402,-0.038515918,-0.066416666,-0.0018967768,-0.014288701,-0.07251384,0.05083733,-0.0019092812,-0.055400975,0.025862802,0.027260982,-0.02023883,-0.022952737,0.047735106,-0.050836455,-0.00474661,-0.053082924,0.0008271984,-0.03515751,0.0262496,-0.0430099,0.05424364,-0.0132940505,0.0009296852,-0.06843994,-0.036880083,0.017729308,0.0013087032,-0.0615229,-0.017902847,0.04432288,0.09976014,-0.021824695,-1.4785313e-33,0.023583055,0.031894032,0.10928144,0.109434664,0.10356013,-0.03147882,0.045496836,-0.052596215,0.05166513,0.01927045,-0.059579838,0.050499726,-0.019512683,0.02371194,0.033613212,-0.0030896796,0.03641037,-0.0041507427,0.04923332,-0.091722034,0.08203504,0.025934098,0.047221236,-0.07190015,0.042070307,0.10373739,-0.031847715,-0.051784664,-0.098025315,-0.0062010125,-0.008644375,-0.07451698,0.058957882,-0.029130124,0.030956373,0.031271752,0.03150594,0.16387895,-0.05428362,0.024294885,0.069673784,0.016563157,0.058281284,0.06540796,-0.03210245,-0.005123718,0.016080448,-0.037481155,0.01968164,-0.017871812,-0.02249733,-0.003387178,-0.08647469,-0.008064582,-0.023560436,-0.094477184,0.07196593,-0.048419677,-0.044888902,-0.016285632,-0.019498121,0.028067624,-0.06537561,0.09758758,0.012759966,-0.05337912,-0.033194274,0.007163018,-0.071788676,0.021682743,-0.14049822,-0.004853817,0.04473592,0.021073453,-0.029358888,0.008613317,0.053379197,-0.035879467,0.058296148,0.0873908,0.013276279,-0.043719552,-0.015451419,0.09716001,0.028007178,0.06411637,-0.007395814,-0.014245885,0.024683615,0.01899151,0.098638296,0.049276788,0.037358765,0.0017831682,-0.0051002777,-3.0942704e-08,0.01624356,0.07531308,-0.03480215,0.026188001,0.012843333,-0.09998723,-0.03964368,0.016153403,-0.056668714,0.046246585,0.018608473,-0.035316736,0.025453415,-0.03343389,0.050743222,-0.012598115,-0.03668398,0.13060178,-0.060350608,-0.01765177,0.012500103,-0.04345798,-0.023822412,-0.022815315,-0.056472886,-0.02439733,-0.02724896,-0.014589323,0.012454314,0.032903694,-0.039188698,0.050856333,-0.057324782,0.026489906,-0.004443142,-0.016505966,-0.08963291,0.045551464,-0.0016340285,0.07170315,-0.068070725,-0.0331956,-0.07001774,0.011381022,-0.07329008,0.029633801,-0.031391025,-0.04617491,-0.014891589,-0.019463394,-0.009934574,-0.010121431,-0.011327034,0.04861929,-0.016385045,0.042412773,0.037849996,-0.072134905,-0.028362814,-0.004947196,-0.089453556,-0.10155979,-0.0776563,0.07334535} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.215445+00 2026-01-30 02:01:09.389024+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1448 google ChdDSUhNMG9nS0VJQ0FnSUN4OC1XLWxnRRAB 1 t 1451 Go Karts Mar Menor unknown Such a great experience from enquiring about our Stag event, through to looking after us ensuring everyone had an amazing time. such a great experience from enquiring about our stag event, through to looking after us ensuring everyone had an amazing time. 5 2024-01-31 01:52:39.833374+00 en v5.1 P3.01 {} V+ I3 CR-N {} {"P3.01": "Such a great experience from enquiring about our Stag event, through to looking after us ensuring ev"} {0.03646349,0.12740614,0.028402057,0.005263345,0.04069975,0.024251789,-0.016066998,-0.039224856,0.015912272,-0.11156799,-0.012446945,0.0099901,-0.044741623,-0.01848639,-0.0066741887,-0.041936744,-0.0076920325,-0.04009152,-0.005767217,-0.04039358,-0.010684184,-0.06712543,0.041860923,0.05724531,-0.046406016,0.057353456,-0.06389931,0.0054666973,0.080254644,-0.04786962,0.00053034065,-0.04200503,0.022451172,0.022392817,0.05078536,0.09909111,-0.008124005,-0.13274333,-0.04821304,-0.03901819,0.021972079,0.007990206,0.051195607,0.030438568,-0.008809002,-0.007592587,0.060475044,0.027587403,-0.011139465,-0.00012935582,0.052048944,-0.03761519,0.028627532,-0.112532645,-0.0010594003,0.1306872,-0.006767863,-0.09511229,-0.015635401,-0.12086018,-0.07728207,0.06295662,-0.022473417,0.011423307,-0.055641305,-0.029150857,0.016353006,0.07086284,0.045117673,0.0066870605,-0.044442352,0.029155465,0.048552636,0.04280061,-0.07697206,0.056752723,-0.049681857,-0.03308784,0.00658759,0.035875574,0.04279064,0.022968983,0.044163447,0.0011205974,0.0015100755,-0.040375184,-0.02182191,-0.008899239,0.07939326,0.021884026,0.006405743,-0.003743104,-0.065784626,0.05988962,0.0035519367,-0.022978023,0.0030639106,0.052226026,0.04023067,0.053122334,0.02554453,0.071264766,-0.030695194,0.05032742,0.05875142,0.03340006,-0.09433453,-0.03937125,-0.0030807906,-0.036995582,0.011985782,0.008143418,0.04706066,-0.0435484,0.028307406,0.07174299,-0.019929739,-0.0009128729,-0.018400734,-0.05484391,0.017390318,0.07784331,-0.009836327,-0.03474945,0.051145017,-0.03507365,0.11930373,-2.0586335e-33,0.067229204,0.012795842,0.020461408,0.06563185,0.030381257,0.069239296,-0.11228746,-0.027736755,-0.046339393,-0.0077234153,-0.0062631406,0.033924982,0.06100863,-0.104916945,-0.04649038,-0.060852632,-0.1090587,0.055835433,0.03580462,0.029835787,-0.03256852,-0.09123056,-0.042123914,0.057732664,0.018313643,0.10239094,0.014009092,0.05234964,0.05851754,0.018143708,0.0019497968,0.041510712,-0.018128412,0.013954759,0.045633562,0.013398761,-0.0124048935,-0.09306028,0.003015615,0.06409742,0.038939085,-0.07548115,-0.036195308,-0.029855615,-0.035559002,-0.027053898,-0.0064782966,0.009081458,0.032561816,-0.058197405,-0.05213357,0.05444637,-0.010260976,0.024654252,-0.004905541,0.048063435,0.04792855,0.018889993,0.030268421,-0.015751878,-0.019482998,0.023702417,0.02416789,-0.055523485,0.014209128,-0.056837652,0.020223517,-0.011602542,0.01230487,-0.030585237,-0.0138998665,-0.00069221196,-0.035293538,-0.05473405,0.003441298,0.036092322,-0.0074541005,0.05920741,0.11334012,0.02088892,-0.015309846,-0.049437087,-0.0004584418,-0.07796674,0.06240343,0.006563984,0.052534096,-0.12378881,-0.1519326,0.0032563254,0.018390145,0.01044087,0.0860636,-0.05853034,-0.021363793,-5.088816e-34,0.03738028,-0.06385916,0.047673997,0.06013223,0.053224787,-0.09163472,-0.049066108,0.0003780031,-0.005103319,0.104277246,0.018217688,0.04145823,0.05052839,-0.0039181057,-0.08573087,0.007900526,0.0702445,0.04012172,-0.019513251,-0.0025905196,0.036726188,0.058026794,-0.030273363,-0.04942659,-0.02012247,0.05705703,0.07942137,-0.12569277,-0.055454127,-0.09356484,-0.01726226,0.000791891,-0.075197905,0.05190088,0.009689882,0.082199946,0.078662984,0.061786972,-0.0076098507,-0.048717376,0.05607131,0.023400368,-0.052146357,0.0528177,-0.0043436205,0.030210318,-0.08911284,0.007854978,-0.042498738,0.043062426,-0.12021216,0.037987124,-0.048822716,-0.04411534,0.025834572,-0.030602142,0.011225647,-0.14058037,-0.0057448805,0.0026143682,-0.0905092,0.012949019,-0.051289886,0.052580822,0.13098562,-0.117601566,0.022770982,0.0061940597,-0.077894576,-0.007508607,-0.0128854085,0.002036233,-0.13261865,0.077914245,0.05602035,0.0022157824,0.026959918,-0.010666839,-0.0015766284,-0.009481189,-0.0114668375,0.0058297655,0.050448533,0.023399578,0.06418723,0.016236663,0.0022586433,-0.05171504,0.0048814407,0.06341737,-0.025794735,-0.01239794,0.008075941,-0.04248901,0.057556182,-2.5576398e-08,0.0011861703,0.10014915,-0.11523701,-0.024993006,0.108809166,-0.08420063,-0.032224268,0.007297079,-0.050007768,0.010345759,-0.071211934,-0.018032597,-0.025495533,0.03130464,0.1086018,-0.027555881,-0.026352685,-0.045672636,-0.031210817,-0.0352517,0.014443107,0.055856112,0.004858891,-0.0033788548,-0.044862725,0.09068915,-0.04056141,0.009191191,0.037281178,-0.015915338,-0.032540865,0.00508606,-0.07063826,0.002589131,-0.013956656,0.013233487,0.032003038,-0.06667648,0.09398205,-0.061166197,-0.035699323,-0.016642705,0.0049558976,0.02950463,-0.042725973,0.033157825,-0.022093503,0.018626159,-0.04047947,0.01853265,-0.040642492,-0.041467465,-0.023193618,0.081601374,0.040653393,-0.007738916,-0.012378398,-0.026262302,0.04960938,-0.0015041854,0.02997239,-0.021059757,-0.11093146,0.023184022} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.241083+00 2026-01-30 02:01:09.395039+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1451 google ChZDSUhNMG9nS0VJQ0FnSURnN003a05BEAE 1 t 1454 Go Karts Mar Menor unknown Top place to go staff are very helpful and are a great laugh. They have an amazing track and it's fun for everyone top place to go staff are very helpful and are a great laugh. they have an amazing track and it's fun for everyone 5 2019-02-01 01:52:39.833374+00 en v5.1 P1.01 {O1.02} V+ I3 CR-N {} {"P1.01": "Top place to go staff are very helpful and are a great laugh. They have an amazing track and it's fu"} {0.044331327,-0.1095161,0.034846704,-0.013784562,-0.02851252,0.016807288,0.036045577,0.0039362623,-0.026508471,-0.057644464,-0.031729568,0.05933673,-0.06803712,0.041601073,-0.020531861,-0.06507916,0.095547624,-0.012626959,0.07014089,-0.08158538,-0.033541188,0.022849012,0.006731086,0.055992544,-0.120093964,0.013335019,-0.10791186,0.017945495,-0.020411674,0.0010323,-0.100921236,-0.012581635,-0.011873318,-0.03470331,-0.06436679,0.08579532,0.051955085,-0.026742743,0.009117031,0.060316365,-0.06683987,0.013329456,0.035097446,-0.0072733206,0.029666642,0.013412552,0.01349082,-0.07328449,0.04905398,0.05072663,0.098483145,-0.06529021,0.07963671,-0.022717554,-0.026770538,0.07950163,0.0053571276,-0.046707008,0.02475968,0.0003905498,-0.02561867,-0.081019364,-0.025677202,-0.03449297,-0.026469128,-0.07011602,-0.054166693,0.10584971,0.04090434,-0.0772433,0.017712425,-0.042629972,0.08963826,0.071890794,0.06292465,0.14394836,-0.024883978,-0.012286647,-0.017503006,-0.008467852,0.0243485,-0.028027294,0.091146,-0.042706743,0.030032365,-0.046671394,0.018802762,-0.0043950714,-0.01820551,0.030817376,0.07288958,0.09882219,-0.0030785159,-0.07265798,-0.0019586936,0.028489767,-0.036667075,0.019391973,-0.00898366,0.019930426,0.0030208393,0.05120621,0.042729538,-0.04603,0.0029544448,-0.012621439,-0.013423972,0.032239273,0.06336885,-0.036631666,0.035471518,0.015671114,0.029654711,-0.04061437,-0.015788231,0.0011339356,-0.022821674,0.012070165,-0.036428373,-0.032104213,0.010918336,0.03125384,0.041214548,0.014691938,-0.01668989,0.03540585,0.018595837,-3.5925895e-33,0.0032386917,0.06310077,0.044501632,-0.06195457,0.09817551,0.008239891,-0.09263684,0.0060477112,-0.026833262,0.024433307,0.023914468,0.020957323,-0.0059077716,-0.09900312,-0.020338556,-0.031372506,-0.05573654,-0.03011,-0.09015283,-0.02533351,-0.034673978,0.002819186,0.0004104236,0.009106078,0.11469175,0.010022941,0.017991101,-0.045636266,0.13170451,0.009098599,-0.11151382,-0.0266797,-0.040889073,-0.05259097,-0.01401463,0.0060861474,-0.0795354,-0.03565528,-0.008138395,-0.06253825,-0.02040292,-0.0017347306,0.0052759903,0.049062047,-0.0588425,0.032733716,0.041250106,0.0068214354,0.08505101,0.027813725,-0.07434626,-0.074703895,0.01615802,0.008418283,0.05833247,-0.03358693,0.08836634,0.018272892,0.003685682,-0.07699964,0.11092409,0.08515665,-0.0007022783,-0.02603368,0.0012731652,0.007876088,-0.022963792,-0.104708284,0.11980667,-0.03874383,-0.008488016,0.029576577,0.10475516,0.013080343,-0.05276645,0.051992416,-0.09506858,-0.0413196,0.00070761296,-0.02669479,0.05461785,-0.028808227,-0.05398279,0.03232609,0.06486264,-0.03952349,0.029112399,-0.09314091,-0.068875775,-0.014852378,-0.011715433,0.04904944,0.021349277,0.087738656,-0.033449814,2.5372434e-33,0.056781024,0.037012007,0.042905167,0.014763766,0.011855119,0.055038676,-0.027026137,-0.09898795,0.070918374,0.10220371,-0.06764012,0.07009698,-0.03980688,0.025513759,0.008975901,-0.10185823,0.011784142,-0.045368392,-0.02717882,-0.083941914,0.00559312,0.021227762,-0.006584645,-0.020880468,0.011642366,0.044561148,0.008475228,-0.038985066,-0.083181106,-0.037007432,-0.089203894,-0.014178267,0.05550148,-0.07945305,0.018691847,0.04567495,-0.0018327811,0.04233211,-0.05026735,0.030931596,0.029409045,-0.025307748,0.062149458,-0.020606052,-0.041708756,0.061826676,-0.06168049,0.06597269,-0.064731665,-0.009881993,-0.08835621,-0.028101014,-0.06560112,-0.06147409,-0.012329164,0.02636326,0.014989948,-0.033807516,-0.06733773,-0.0632895,-0.06962201,0.054539386,-0.031540006,0.09159013,0.013426544,-0.06927843,-0.019828027,-0.003830153,-0.08559281,0.010514381,-0.11810865,0.021730516,0.09763879,-0.0024228909,-0.059786372,0.011177583,0.10582613,-0.040271953,0.008839526,0.003521147,0.021030804,-0.018054105,-0.00048378127,0.04365623,0.050279837,0.11222576,0.041712396,0.05129943,-0.054269828,0.08207298,0.07002308,0.023107635,0.0063250186,0.0049259374,-0.039458446,-2.6499007e-08,-0.017202454,0.03840978,0.063424684,-0.03963385,0.028279036,-0.118461676,0.029309167,0.09114329,-0.016687669,0.037187897,0.0107009355,-0.045088414,-0.011436859,0.0128608905,0.11088372,0.0048539806,0.02066185,0.03893338,-0.08015003,-0.037949435,-0.040383477,0.05613353,0.005213329,-0.0055206716,-0.02567185,0.047265496,0.03759282,0.046330452,-0.034751564,0.009909638,0.03541953,0.004052584,0.015160714,-0.0008974446,0.05239149,-0.008846179,-0.053718828,-0.018046062,0.03307303,0.0148998825,-0.08257513,-0.031458847,0.018800788,0.05631819,-0.01205542,0.050730508,0.05062022,0.033511303,-0.016318966,-0.01086821,-0.102355756,-0.07423389,-0.06155705,-0.0053075105,0.040146817,0.03587334,-0.0048008068,-0.031438444,-0.040963057,0.07350654,-0.038118735,0.023271294,-0.03648043,0.09191672} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.292979+00 2026-01-30 02:01:09.403862+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1452 google ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE 1 t 1455 Go Karts Mar Menor unknown Fun.. but the steering wheel was so hard to move so it really hurt. Last 2 minutes was living hell for my under arms fun.. but the steering wheel was so hard to move so it really hurt. last 2 minutes was living hell for my under arms 2 2023-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V- I3 CR-N {} {"O1.02": "but the steering wheel was so hard to move so it really hurt. Last 2 minutes was living hell for my ", "V4.03": "Fun.."} {0.031318482,0.03644693,0.055958714,0.009010144,-0.014078196,-0.04993581,0.0317064,-0.008101514,-0.008446026,0.0076224743,0.03133592,0.048412904,0.059124455,0.055777278,-0.033211462,-0.035616897,0.05388462,-0.07112943,-0.06137922,0.0035962611,-0.025303898,0.023108363,-0.0129318265,0.000487014,-0.069722764,0.00035513792,-0.007465791,0.028757937,0.02423209,-0.059734404,-0.07531228,0.0038825274,-0.053906966,-0.051841535,-0.049283393,-0.051184174,0.056292515,-0.07643684,-0.035354983,-0.0060485993,0.014370936,-0.0047976417,0.09179181,-0.030690532,0.07895741,0.022658091,0.09674178,-0.1023416,0.14382754,-0.0021654929,0.083997674,0.028172575,0.09310163,-0.07699894,-0.063869834,0.05115382,-0.03356273,0.014220092,-0.03221838,-0.019879974,0.01883907,-0.03408483,0.050707407,0.015698558,0.014210915,-0.06146577,0.045765154,-0.13731167,0.090755895,0.046865758,-0.019538308,-0.039009094,0.023598079,-0.061542086,0.005765005,-0.044164713,-0.008989623,-0.027323557,-0.02355984,0.037713557,0.018236509,0.0071122316,-0.041019436,0.025224105,0.009691248,-0.048741035,0.055362575,0.07010081,-0.028197065,0.051935036,0.018548181,0.043641802,-0.023570437,-0.003194386,-0.017916711,-0.042632915,0.041233968,0.03517613,-0.022594268,0.068494126,0.011320674,0.07515597,0.036646344,-0.000318857,-0.05943422,0.06333826,5.449373e-06,-0.0046212543,-0.04909622,-0.020337695,0.009644292,0.0037315537,0.032297786,0.012193643,-0.03419047,0.04527124,0.008607076,0.042149115,-0.018586634,0.04645691,0.043852493,0.0053263656,0.014979958,0.07681558,-0.023743983,-0.009329576,0.013560431,-1.4994379e-33,-0.034244675,-0.034789283,-0.0051708044,0.011885649,0.042333357,0.006141929,-0.012581043,0.020451682,-0.058453362,0.071414724,0.030361399,-0.015722511,-0.013213327,-0.15631837,0.07860555,-0.053425353,-0.12839465,0.014407685,-0.150628,0.014682398,-0.057128645,0.04353512,-0.02650843,-0.014273689,-0.022548372,0.13166516,0.012248167,-0.04431035,0.14829855,-0.011787514,-0.08607344,0.0058263913,-0.04867107,0.040445767,-0.0010127538,0.0068250727,-0.038500614,-0.023092378,-0.024761025,0.040992863,-0.011522032,-0.007285457,0.016240692,0.0036778722,-0.030129997,0.00015713928,-0.03325206,0.045157973,0.006038012,-0.09036579,-0.06944136,-0.016042622,0.0007437106,0.006033496,-0.008792114,0.12038734,0.023296148,-0.047506582,-0.049322434,0.04366743,0.029210066,-0.0030593309,0.023225667,-0.0066729602,-0.058192212,0.0007915241,-0.025374934,-0.037573025,0.07087365,-0.042565644,0.022783726,-0.03936507,-0.04885029,0.005751097,0.0021445956,0.07604245,-0.02459202,-0.06982598,-0.07149309,-0.036700655,0.06988675,0.024166143,0.01217385,0.010567819,0.11669966,-0.066400155,-0.09554625,-0.16605364,-0.023290142,0.029411118,-0.093078405,0.004396016,0.0015056113,-0.031847246,0.0863938,1.0667348e-34,0.03647633,0.028626513,-0.0009966105,0.011345301,0.012854963,-0.06307101,-0.007217969,0.068387195,0.014217707,0.034906257,-0.054087635,-0.02947044,-0.01688005,-0.0039924723,-0.0006936238,-0.073238924,0.07558186,0.025893418,0.03687046,0.004108751,0.059554897,0.07442857,0.051209196,-0.012435552,-0.0503598,0.0004209749,0.042773377,0.044398066,-0.045849048,0.025456956,0.025050951,0.013190759,-0.0013695915,-0.029394496,-0.021781627,0.049745154,0.009535179,0.02452663,-0.041618902,-0.14051338,-0.044592246,-0.03676242,0.03646602,0.02496695,0.05887979,-0.020826485,0.014712959,-0.044798777,-0.031875238,0.055969294,0.009101098,-0.036525954,-0.030097788,-0.07083666,0.0049130428,-0.12285719,0.09064022,-0.045081552,0.035512205,-0.029848248,-0.0039688046,0.091182,-0.074402325,-0.010487174,0.056576066,-0.044053175,-0.0033089586,-0.08007179,-0.06326971,-0.007242737,-0.059744913,0.03296797,-0.034348838,0.10262518,0.022815054,-0.030287422,0.0022062645,-0.027940033,0.08789677,-0.039996006,-0.015547111,-0.013388912,0.035869587,0.0003328795,-0.03712227,0.084492974,0.036086794,0.06315539,-0.046000045,0.07288248,0.13749607,0.090402,-0.0018979748,0.07572056,-0.024759902,-2.6527031e-08,-0.005408293,0.14730306,-0.075907305,-0.027015412,-0.07609014,0.0042329733,0.033416618,-0.04852883,-0.07634918,-0.055404454,-0.0043170257,-0.014581241,0.078798726,0.07770749,-0.019598493,0.03818579,0.061121702,0.08623309,-0.014200284,-0.010255413,0.022221837,0.02530685,-0.048259262,-0.024498608,0.010637965,-0.02021372,0.021033105,0.07539906,0.024327189,-0.0884948,-0.033687275,-0.015548636,-0.033781722,0.06416712,-0.07775019,-0.07036204,0.020075038,-0.02934246,0.024746599,0.010266142,-0.046427514,0.05636081,-0.0045095,-0.047415085,-0.06162995,0.014767853,-0.006627871,-0.0010198933,-0.021105362,0.0078032967,0.026548259,-0.05611389,-0.046171557,0.08986538,0.056570467,0.0020929119,-0.026316846,-0.002548598,-0.07595346,0.044247646,-0.049560193,0.047673192,-0.108368404,0.103297755} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:24.304155+00 2026-01-30 02:01:09.406147+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1458 google ChdDSUhNMG9nS0VJQ0FnSUMwcTZpWjV3RRAB 1 t 1461 Go Karts Mar Menor unknown Good fun for all abilities and all ages from 4 yrs up. We'll organised. good fun for all abilities and all ages from 4 yrs up. we'll organised. 5 2026-01-30 01:52:39.833374+00 en v5.1 A3.01 {J2.01} V+ I2 CR-N {} {"A3.01": "Good fun for all abilities and all ages from 4 yrs up. We'll organised."} {0.0028187917,-0.033358447,-0.005864539,0.015933203,-0.094845876,0.020193163,-0.01965291,-0.070493676,-0.08447698,0.025419971,-0.011474972,-0.03683261,-0.05141561,0.088668905,0.038262192,0.01020476,0.045268968,-0.058944643,-0.011323959,-0.07618357,-0.007506902,-0.008123073,0.042109255,-0.022885002,-0.06257339,0.026364595,-0.08606402,-0.04948692,0.037348002,-0.012393652,-0.006966259,0.043367196,0.07951469,-0.02836009,0.015299107,0.054811627,0.07524739,-0.08201535,0.0088415025,0.049743596,-0.059860937,0.008352606,-0.045962807,0.00049422274,-0.050189078,0.08475437,0.040449087,-0.08558871,0.05837834,0.060392868,0.070023805,-0.019963028,0.0059035355,0.004398329,0.0009291551,0.020194458,-0.06267071,-0.1130468,0.015542178,-0.055640165,-0.07237324,0.012232727,0.0024943699,0.06499638,-0.010149545,-0.09537191,0.043978047,0.109920785,0.022839185,-0.050485764,-0.05198638,-0.0031082279,0.033380236,0.0626465,0.0646031,0.047360346,-0.022023812,-0.07727235,0.045919165,-0.014629522,0.043534905,0.081401736,-0.031099025,0.0066763638,-0.02997779,-0.024152769,-0.031815104,0.026305322,-0.056254037,-0.008729851,0.02555822,0.06973349,0.04485959,0.037918527,0.026721241,0.021227105,0.052084893,-0.028719977,-0.03120982,0.040037062,-0.040570676,0.026329217,0.040453896,0.03592519,-0.09836412,0.043630145,-0.007288699,-0.009895585,-0.036475856,-0.04082262,-0.016311266,0.039941225,0.007816117,0.03468578,0.007264843,0.056654166,-0.03604778,-0.0006507105,-0.046454903,-0.01036934,0.04307361,0.099095024,0.07912212,0.038658585,0.047883924,-0.011186634,-0.031790737,-3.4627713e-33,0.013732672,0.051491722,0.0070493664,0.12775636,0.07720913,0.01528887,-0.007428816,-0.07234829,-0.10465298,0.047938958,0.0091993185,0.03599201,0.01292437,-0.030940171,0.08633269,-0.0085752085,0.025420317,0.043899026,0.010632282,-0.021241304,-0.033741426,-0.053817995,-0.031409055,0.048900615,0.021536324,0.07007193,0.06682789,-0.041219164,0.14432327,0.0058096005,-0.04869932,-0.004337707,-0.14286408,-0.04842415,0.007226416,0.01684935,-0.03115926,-0.08156715,-0.02324744,0.06798725,-0.01605637,-0.007999717,-0.06931785,-0.024973704,-0.017367994,0.0031207965,0.04753756,-0.011034089,0.021954305,-0.019720308,-0.100766994,-0.04620732,-0.049904525,-0.04806576,-0.012913578,-0.020499589,-0.04694649,-0.023052782,-0.01957577,-0.025026768,0.091620825,0.02757955,-0.052329853,-0.06884606,-0.05843019,-0.032446958,0.052653324,0.012085996,0.056121342,-0.06505065,0.030198373,-0.0031154903,0.023490135,-0.03344391,0.046372477,0.10546894,-0.015340744,-0.0524131,-0.038287982,0.040377185,0.019074574,-0.004652497,-0.05342985,0.0086916825,0.07246707,-0.059561223,0.070293166,-0.11858395,-0.07519266,0.008213753,-0.030418672,-0.040260516,0.10819998,0.03287521,-0.022999272,1.4689193e-33,0.044322733,-0.009515305,-0.04185823,-0.0071366,0.071171775,-0.05526476,-0.016382275,-0.021754093,0.05013737,0.07183434,-0.03853622,0.03590872,0.016652813,0.015003498,-0.002647495,-0.05080295,-0.017221613,0.04639171,0.012921454,0.0052092117,-0.012939173,0.12043382,-0.07274625,-0.02214936,0.021126945,0.0435529,-0.017339319,-0.02246875,-0.014365868,0.12603495,-0.052466072,-0.04387448,0.008646107,0.021375282,0.02320215,-0.020143962,0.02058859,-0.014588886,-0.0036036177,-0.063601635,0.0027974066,-0.011074683,0.019905427,0.024913358,-0.044090994,-0.0046511157,-0.006288245,0.10117589,-0.026161993,0.010833206,0.08161088,-0.013149674,-0.013984943,-0.1618765,0.028729232,-0.033951897,0.01838052,-0.11419585,0.015351347,0.010030933,-0.097360834,-0.00037267545,0.03724929,0.07101992,-0.011222782,-0.048241146,-0.07199759,-0.007755339,-0.1188073,-0.013587114,0.0054849377,-0.056024395,-0.04221702,-0.028971042,0.020678451,-0.09276392,0.025738765,-0.044277072,0.037840426,0.057031453,-0.03490284,0.054659855,-0.00042019738,-0.01970626,-0.027295876,-0.0566039,0.05510313,0.115818046,-0.032835882,0.0328671,0.04153843,0.005288967,0.09078912,-0.0065639317,0.046420183,-2.5168667e-08,0.031338204,0.08269455,-0.0118727125,0.019520167,-0.024352184,-0.023691595,-0.017568987,0.041492768,0.038030665,0.045946486,0.046591267,-0.015275263,0.0757215,-0.025783835,0.13269189,0.041820336,-0.041024808,0.0981784,-0.03862974,-0.029532613,0.079061605,0.057182696,-0.023746276,0.031293258,-0.10796057,-0.015480882,0.0044564526,-0.036001384,-0.030711763,0.0038941016,0.019408498,0.010880951,0.026553823,0.010780827,-0.020144826,-0.08572638,-0.14221731,0.030334678,-0.068854295,0.03219005,-0.025186649,-0.06707151,0.035497334,0.020155726,-0.11220687,0.022014095,-0.083115906,-0.024456305,-0.015734006,0.0057274606,-0.07930341,0.030344347,0.039057188,0.021907037,0.11674268,0.10050213,0.0031638844,0.018407127,0.032408483,0.011867934,0.05188865,0.026167851,-0.07962343,0.016114214} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.312322+00 2026-01-30 02:01:09.422004+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1455 google ChZDSUhNMG9nS0VJQ0FnTURvb0l5RUZBEAE 1 t 1458 Go Karts Mar Menor unknown Nice karting with the possibility that kids can race to on their own level nice karting with the possibility that kids can race to on their own level 5 2025-05-05 00:52:39.833374+00 en v5.1 O2.03 {A3.02} V+ I2 CR-N {} {"O2.03": "Nice karting with the possibility that kids can race to on their own level"} {-0.026439521,0.017260652,0.016722122,0.06783257,-0.060786333,0.021429861,-0.043628935,-0.011465351,-0.010487465,0.008551243,0.037811615,7.7608665e-06,-0.015509644,0.06653344,-0.02438101,-0.0076130517,0.10651529,0.008991915,-0.027808135,-0.0198186,-0.045377925,-0.051279437,0.060961697,0.038986847,-0.024193283,0.06718281,-0.013893248,0.03489663,0.004364206,-0.015494082,-0.025999237,-0.0012023007,-0.006566913,0.0074319625,-0.017210439,-0.029823152,-0.031659592,0.039330985,-0.061406787,-0.027835837,-0.010470075,-0.058171753,-0.03241303,-0.0089530125,0.020126855,0.060878154,0.019916171,-0.050865598,-0.0016133715,-0.023674166,0.053325005,-0.07556459,0.07081066,-0.093753025,0.012983333,-0.019055596,-0.09258182,-0.031087486,0.048344783,0.008744716,-0.025616841,-0.009600673,-0.079802915,0.002964426,-0.07032133,-0.086109735,-0.05076819,0.07713937,0.0161326,0.05357174,0.031904005,0.020955846,0.0052491142,-0.015966915,0.045856386,0.013849151,-0.030289937,-0.008639399,-0.031260632,-0.04709361,-0.0027216072,-0.042102713,0.007927952,-0.04344868,0.073745064,-0.054049857,0.06869016,-0.032587986,0.037351448,0.04793938,-0.07668128,0.07943736,0.02516076,-0.018051129,-0.03350669,0.032538243,-0.026901376,-0.038260687,-0.014451109,-0.0082104,-0.00028527915,0.04166159,0.0151852295,0.08498348,-0.015642995,-0.0031746058,-0.011028922,-0.02593094,0.034400575,-0.014715206,0.05449838,-0.025501112,0.09562858,0.023411902,-0.04728423,0.009079795,-0.011545724,0.034001224,-0.00869119,0.0013722997,-0.055771638,-0.07215071,-0.03442739,0.04750718,0.055615578,-0.04693462,0.06009494,-2.964873e-33,-0.045422994,-0.016637892,0.034692515,-0.0055411174,0.073470764,-0.06971134,-0.015559429,-0.105619095,-0.09279069,-0.002194542,0.038710613,0.021237941,-0.0037120052,-0.072308466,0.13974743,0.010435781,-0.11483842,-0.03214988,-0.041423455,0.049099695,0.045322437,0.011883558,-0.031084236,0.044919617,0.04820495,0.0397556,0.078566976,-0.04689875,0.069254294,0.025507264,-0.076917745,0.013110293,-0.08303287,0.025876056,-0.03923174,0.03357188,0.054453794,-0.011225464,-0.014833394,0.13739043,-0.008323695,-0.1437802,0.01707674,0.025105434,-0.06380254,0.05561699,0.062372837,0.07497476,-0.12805396,0.07827182,-0.09849703,0.04012652,0.02015259,-0.053011548,0.0004872482,0.083071604,0.042939138,0.05184607,-0.0682881,-0.0058715725,0.016243774,0.0037313704,-0.042424936,-0.035480626,-0.13577376,-0.054605052,0.040841162,0.031846803,0.025780803,-0.01441298,-0.022398433,0.03104279,-0.06890617,-0.079723306,0.04725254,0.010499393,0.0069869016,0.001721975,-0.016008904,-0.027988676,-0.05829595,-0.0041742264,-0.008502506,-0.046169586,0.084343955,-0.077397674,-0.07461848,-0.056142434,-0.014551063,-0.006114132,-0.10143631,-0.09433877,0.04084342,0.10772414,0.009968948,9.297591e-34,0.025267502,-0.018308911,0.05775277,0.08973921,0.07017033,0.021751607,0.09440483,-0.033663914,-0.0078024715,0.047239546,-0.10262313,0.0085317865,0.055929855,0.06584033,-0.03143417,-0.09185835,0.052771684,0.09798959,-0.004702521,-0.03482105,0.029270945,0.03325049,-0.04067976,0.057940368,0.04944071,0.044147808,-0.05331057,-0.015594537,-0.0891813,0.087989606,0.0091657145,-0.044349734,0.029394338,-0.04633207,-0.060319565,0.04573759,-0.00054161245,0.073721744,-0.11092764,0.023317695,0.07684904,-0.04629841,-0.013003363,0.04088779,-0.0066532404,0.009685541,0.07140117,0.016510764,-0.045444474,0.013979558,0.015345426,0.062904604,-0.045955684,0.023657866,-0.03923116,-0.051399477,0.081122905,-0.0010968455,-0.038069867,0.041542366,-0.016964395,-0.05507915,-0.0143545065,0.07122979,-0.0043046763,-0.08922308,-0.11844335,0.03206722,-0.05914693,-0.0076980377,-0.048504807,0.042876907,-0.04654263,0.016801858,0.048173275,-0.019559354,0.065544635,0.097108915,-0.0008622717,0.014269921,0.012142863,-0.04937522,0.06432898,0.015658673,0.02129419,-0.0068897665,-0.046293158,-0.029197855,0.048504632,0.016248504,0.069657065,0.08020104,-0.0049317186,0.05261676,-0.07988392,-1.8032699e-08,0.04235178,0.027030647,-0.046626512,0.0116889095,0.070276335,0.0064303633,0.02227656,-0.02468516,-0.062370367,0.08843531,0.02229509,-0.008420411,0.064263076,0.056949433,0.023422081,0.065168016,0.003819125,0.0466606,-0.029297195,0.06263183,-0.010196069,0.03714222,-0.02981424,0.044348806,-0.019445742,-0.10507451,-0.038794097,0.006784226,-0.011835579,-0.04128253,-0.0034397223,-0.0090782605,-0.024340378,0.08084056,-0.036335204,-0.03836453,-0.09295733,0.13357033,-0.007222099,-0.019816788,-0.10580108,0.000972285,-0.04054353,0.03415567,0.00072631065,0.036465038,-0.0592375,-0.0663169,0.045917906,0.053873956,-0.07065543,-0.03497509,-0.022078559,0.021996351,0.12920599,0.07584176,-0.029388022,-0.005287001,-0.054269098,0.018021837,0.015095587,0.009639942,-0.007892019,0.09600665} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.275398+00 2026-01-30 02:01:09.414435+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1507 google ChdDSUhNMG9nS0VJQ0FnSURnc3NUVjZBRRAB 1 t 1510 Go Karts Mar Menor unknown Very good track. Lots of different levels of cars to choose from. very good track. lots of different levels of cars to choose from. 5 2018-02-01 01:52:39.833374+00 en v5.1 O2.03 {O3.02} V+ I2 CR-N {} {"O2.03": "Very good track. Lots of different levels of cars to choose from."} {-0.07008965,-0.032540143,0.012812203,0.012062008,-0.042420905,0.11483083,-0.017909072,0.0065852175,-0.038828105,-0.110009134,-0.055740654,0.0244505,-0.007994832,-0.010307802,-0.044054225,0.04995449,0.068413556,-0.047014304,0.045393232,-0.05316958,-0.051562358,-0.025955921,0.069554605,0.064866416,-0.12205618,0.06798541,-0.050976098,0.066359214,-0.026590684,-0.041380547,-0.048347272,0.100186154,0.033242363,-0.0374417,-0.052836344,-0.09441575,0.01950027,-0.024944372,-0.020332135,0.0056271013,-0.040351175,-0.024122847,0.043006036,-0.0037609208,0.010600347,0.019700363,0.0010149117,-0.06675554,0.054765638,-0.009133009,0.032517206,-0.016864529,0.009031541,-0.046415087,-0.102007106,0.053484023,-0.01794322,0.0018220774,0.0047781053,-0.081875235,0.020556957,-0.051635534,-0.06516312,-0.06430442,0.07027046,-0.06917896,-0.07447281,0.020477274,0.022684745,0.04895142,0.033676296,0.023660094,0.031167792,-0.04182793,-0.033823922,0.013388526,-0.0024816669,-0.0053405743,-0.06988134,-0.045659102,0.025391806,-0.039841257,-0.02381341,-0.07934568,0.044459287,-0.090416595,0.06849288,-0.040481564,-0.035425875,0.049599763,-0.021513576,0.06703635,-0.00989712,-0.0316174,0.006231665,0.08107133,0.04532241,-0.0019145821,0.068754,0.018594967,0.059717152,0.029948555,0.011325709,0.031043256,-0.06099926,-0.00012326935,0.02732745,0.09520503,0.028742833,-0.028859675,0.09711644,-0.016887158,0.00076724804,-0.01351087,-0.0065113986,0.049377855,-0.00060891465,0.046938907,-0.0061877393,0.06076733,-0.038021162,-0.061109092,0.02588882,0.03674574,-0.0109880855,-0.023096772,0.0058371434,-4.008026e-33,-0.046791617,0.00050751836,0.03507834,0.0045444155,0.08082278,-0.0131664695,-0.09165732,-0.012498824,-0.09451527,0.109556675,-0.037900124,0.0041868705,-0.034931738,-0.032575306,0.06519807,-0.049963433,-0.113396764,-0.016321847,-0.083370104,0.06306852,-0.030756475,0.096355386,0.010974005,-0.10078518,0.074533,0.034841113,-0.0030683433,-0.016365964,0.0022436203,0.014713861,-0.06675168,0.050382182,-0.036772437,0.047510415,-0.01560077,0.060038947,-0.100071155,-0.017042262,-0.0052330005,0.009880916,0.08439766,-0.00067663717,-0.017444668,0.03277871,-0.035366826,0.073393375,-0.019277168,0.061195385,0.070485756,0.018998828,-0.023384819,-0.072785616,-0.07625923,-0.03829858,0.016128037,0.019096756,0.04637681,0.04250521,-0.023596803,-0.020689495,0.05603722,0.061955355,-0.02874206,-0.08427406,-0.06909404,0.10534507,-0.046420883,-0.03206199,0.031875104,0.06971543,-0.0301226,-0.06258736,0.023357915,-0.03699469,0.06418001,-0.0073441654,-0.05634582,-0.019842535,-0.027457517,0.0023784556,-0.08635119,0.055826724,-0.022985023,-0.036508787,0.09689517,0.051197935,-0.058518756,-0.05586708,0.002054768,-0.0052821664,-0.010162553,-0.0025469742,0.006672321,0.029996509,0.00063595286,1.3384388e-33,0.0935506,0.076376826,0.10321067,0.05693341,0.025119154,0.097692795,-0.060292993,0.05223164,0.08410085,0.116304286,-0.0109909605,0.035374634,0.024794087,0.028616503,-0.022023292,-0.06522368,0.07699251,-0.05161285,0.035077382,-0.09511004,-0.010687531,-0.02451494,-0.031563006,0.0030043705,-0.023388851,-0.01329348,-0.049989115,-0.012315141,0.04928601,-0.05362033,-0.045075916,-0.005926667,-0.0004220671,-0.05871834,-0.03093751,0.06589181,1.9636787e-05,-0.0057484265,-0.07189036,0.014389261,-0.06130898,0.008174003,0.013649648,0.031580634,0.011701944,-0.018712716,0.048480038,0.14721707,-0.020134987,0.067727566,0.024985006,-0.042195313,-0.049830474,-0.0020899186,-0.06946041,-0.009949979,0.04564257,-0.030008947,0.0045456337,-0.014037353,-0.04231436,0.04207561,-0.068114676,-0.025443112,-0.014220955,-0.07152193,-0.045755498,-0.057762284,-0.052629493,0.002854503,-0.09920427,-0.022681424,-0.034573466,0.0443661,-0.021761319,-0.07611632,0.014722686,0.0058262805,0.039376862,0.007942777,0.0037778865,-0.063388616,0.010488975,0.043600604,0.04222059,0.12898378,-0.032462165,-0.025920676,0.04027386,0.09364077,0.10618734,0.05451282,-0.03482239,0.003978601,-0.11102405,-2.100725e-08,0.008431773,0.06844562,-0.0047429744,-0.043975774,-0.025105903,0.008857578,0.019384734,0.02930176,-0.07514683,0.051600926,0.08062795,0.016384725,-0.034398105,0.07571552,-0.027757226,-0.034860127,0.026403781,0.12106934,-0.0104956655,0.06578081,0.00018077232,0.022521358,0.03496951,0.036344234,0.04595001,-0.09234082,0.018765928,0.017224522,0.012261412,-0.07677941,0.040122926,0.044634998,0.088779494,0.042933717,0.032449774,-0.0029275122,-0.016925573,0.075023964,0.021404393,-0.072232485,0.046099346,-0.018001594,-0.049914952,-0.015732184,-0.009170394,-0.048473425,-0.01919801,-0.089267015,-0.0563673,-0.0011722677,-0.016908301,-0.036057696,-0.10081567,0.099315666,0.07144546,0.05652798,-0.1002695,-0.007910088,-0.049459703,-0.020634985,0.026924592,-0.0068665487,0.026488654,0.07936947} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.915109+00 2026-01-30 02:01:09.604688+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1510 google ChdDSUhNMG9nS0VJQ0FnSURxNXNubWlRRRAB 1 t 1513 Go Karts Mar Menor unknown Friendly and service minded personal, spend a day here and never brake. friendly and service minded personal, spend a day here and never brake. 5 2022-01-31 01:52:39.833374+00 en v5.1 P1.01 {P3.01,O1.05} V+ I2 CR-N {} {"P1.01": "Friendly and service minded personal, spend a day here and never brake."} {0.03195065,-0.007554361,0.11422928,-0.02840256,-0.018880999,-0.04491265,0.07253501,-0.034574922,-0.024144288,0.013867406,-0.0022212581,-0.005512855,-0.012288178,0.051712967,-0.01136092,-0.011927099,0.04560933,-0.09115324,0.0028257857,-0.022863403,-0.027471812,0.0021520525,0.0013929978,0.04343641,-0.13860245,0.0347457,0.014385297,0.04931262,-0.0057791993,5.3210337e-05,-0.032108758,0.09130602,-0.026682742,0.028892072,0.03433872,0.009672891,0.07162175,-0.08521807,0.07530445,0.016932843,0.007979373,-0.08085944,0.061071564,-0.008338391,0.04270449,-0.018875802,0.025817432,0.035635464,0.09443978,0.028534502,0.004624289,0.03810445,0.012321239,0.040550422,0.05989563,0.03517696,-0.021926789,0.06025107,0.020367334,0.00051065115,0.008382376,0.031109175,-0.026842779,0.041351393,0.012770751,-0.004657319,-0.026591936,-0.0023767294,0.006802817,-0.0180271,-0.102873504,0.032444973,-0.033278067,0.048398364,-0.013953789,-0.06897678,0.03200424,-0.06093537,0.021837238,-0.002550426,-0.076963305,0.052858595,-0.010889457,0.07469018,-0.05718642,-0.08607633,0.037038386,-0.013726032,0.12750602,-0.009183561,0.00065326854,0.05007107,0.03260822,-0.09463901,-0.095112965,-0.04970352,-0.058898706,0.02180542,-0.079001464,0.09007204,0.033064477,0.130579,0.003447866,0.07938078,-0.008987706,0.050738312,-0.0787558,0.121045604,-0.06069384,0.031416062,-0.05056419,0.06455259,-0.093163215,-0.006254244,0.03569031,0.013133871,-0.017926736,0.03674501,0.032640036,0.06956971,-0.03344132,0.05220669,-0.03980211,0.046854295,0.037462592,-0.06707921,0.03463061,-5.2659465e-33,0.0031590825,0.068968624,0.056553654,-0.0065601473,-0.023824915,0.023932979,-0.03597792,0.063631564,-0.010019143,0.030609827,0.09141604,0.025348905,0.03966327,-0.058578797,0.061487276,0.006337836,-0.04473056,0.0138703855,-0.037791308,0.0118037015,0.015716972,-0.086498186,0.00715299,0.079094365,0.02267089,-0.091445714,0.021856561,-0.009169732,0.14892235,6.5139604e-05,-0.04304072,0.0059350487,0.04570271,0.003581763,-0.02948218,0.019606741,-0.07154343,-0.064237796,-0.038563084,-0.055531207,-0.050174262,0.026112596,-0.029442154,0.010215759,0.0638734,-0.0074780793,0.07912943,-0.0031542256,-0.027081951,0.0088622365,-0.045344375,0.03137558,0.01888449,0.10333676,-0.12034478,-0.0377602,0.026579823,0.021655427,-0.009624383,-0.057865825,-0.030248344,-0.08321828,-0.029782768,-0.061718192,-0.05710352,-0.054147635,-0.019676782,0.016202856,0.010707749,0.0125276735,0.025713844,0.043064073,0.03933557,0.037390728,-0.10183631,0.021027608,-0.0104354685,-0.013091618,0.06494757,0.024444649,0.03402495,0.066207215,-0.05697068,-0.019450903,0.13493273,0.020426221,0.102514,-0.11745745,0.01273828,-0.015029483,-0.06783899,0.055075098,0.07405266,-0.008774851,0.0045600682,3.2942755e-33,0.08266915,-0.028112434,0.038674526,0.033590954,-0.06869042,-0.002288748,-0.07363047,0.070547976,-0.000177406,0.107300654,0.009094318,0.041097466,0.009525546,0.0719345,-0.0433743,-0.036798667,0.110106,-0.01529324,-0.08024049,0.04376177,-0.0279675,0.102667026,0.036339168,0.051111795,-0.047508914,0.044503413,0.017375065,0.03463686,-0.09513972,-0.066306494,-0.018211551,0.08101969,-0.07786652,0.008846082,-0.007221878,0.07097836,-0.039251328,0.015937489,-0.004233831,0.09392613,-0.066224605,-0.047359075,-0.02651054,-0.055161715,-0.02214843,-0.04486312,0.036065813,-0.037870824,-0.067183845,-0.0005515555,-0.023227116,0.010407604,0.035469536,-0.028122764,-0.02413303,-0.02024086,0.004092777,-0.030067189,-0.05524865,0.014315689,-0.018443676,0.016749002,-0.005398949,0.0841602,0.0579286,-0.14381425,-0.055255715,0.05675217,-0.013233547,-0.009341484,-0.04185369,0.04473808,-0.028307889,-0.055321496,-0.016577804,-0.07813613,0.0014938753,-0.123778604,0.013695453,-0.07340917,-0.042388394,0.027761107,0.04662647,-0.0009135032,-0.08147736,-0.037366208,-0.046920378,-0.05033664,0.06229175,-0.008343806,-0.08317694,-0.0046469076,-0.08003528,0.054384418,-0.06153976,-2.215601e-08,-0.0065664276,-0.028901437,-0.031289354,0.12850322,-0.02014902,-0.028936408,-0.048014164,0.018505165,-0.02882439,0.04350791,0.049179185,-0.041170143,-0.02240259,0.057910077,-0.017209746,0.011192267,0.060241323,0.0013338679,-0.06959305,-0.00013005524,-0.0085681565,-0.030418376,-0.058203276,0.056512676,-0.042367414,-0.007849013,0.04432055,0.026468392,0.041820124,0.019237433,-0.12756775,0.00835648,-0.035968512,-0.038031884,-0.02630485,-0.042352352,-0.047238167,-0.027857745,0.010426023,0.036039766,-0.038835518,0.032356463,-0.0051642014,-0.00055370317,-0.013107206,0.04183058,0.015552433,0.029554624,-0.014765976,0.048282485,0.008978026,-0.003992394,0.08735209,0.06682783,0.029677896,-0.018080242,-0.026962915,0.020502217,0.0397093,0.114083886,-0.04220622,-0.009717634,-0.083543964,0.022898797} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:15.952001+00 2026-01-30 02:01:09.61329+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1515 google ChdDSUhNMG9nS0VJQ0FnSUNBMy1UdW1nRRAB 1 t 1518 Go Karts Mar Menor unknown - fun for all the family and best prices in the area. Vroom Vroom - fun for all the family and best prices in the area. vroom vroom 5 2017-02-01 01:52:39.833374+00 en v5.1 V1.01 {O1.05} V+ I3 CR-B {} {"V1.01": "- fun for all the family and best prices in the area. Vroom Vroom"} {0.043076947,0.058568068,0.03636617,-0.035620477,-0.09403906,0.014914498,0.054140266,-0.015330986,-0.009791282,0.010531857,0.033329725,-0.0718267,0.0036588067,-0.0028445928,0.01882609,-0.043295093,0.12826075,-0.041087236,0.035268474,-0.07375046,-0.04279933,0.037940744,0.022837956,0.00604857,-0.011381211,0.08482905,-0.036659062,0.037691798,0.034673017,0.014635493,0.002678688,0.12525287,0.002677684,0.017546067,0.064658016,0.0077748867,0.0076470785,-0.109002836,0.02763808,0.049673207,0.013764683,0.021937795,-0.035243575,-0.024720507,-0.008995322,0.02529543,0.023380822,0.012896612,0.13497865,0.05969137,0.14550406,-0.0245664,0.049175005,0.0042910473,-0.0341166,0.05664398,-0.081675544,-0.065151975,0.0014010991,0.01667276,-0.040507212,0.10606587,-0.06208777,0.064289935,-0.053854354,-0.08670113,0.02944986,0.06969262,0.030794617,-0.042987857,-0.0639434,0.04821344,0.067952484,-0.0015968214,-0.009960676,0.050302472,0.0047854227,-0.009396633,-0.032763287,-0.0015679367,0.019583648,-0.055649873,0.048802696,-0.022787089,-0.03836965,-0.03568839,0.02009905,0.024649492,0.057328086,-0.0015350197,-0.06505126,-0.0067334585,-0.024944833,0.059387427,-0.07481791,-0.034529954,-0.00023092939,0.0040013283,-0.052018844,0.03250221,0.0038086234,0.051063173,0.05804244,0.041000333,-0.0035843025,0.019112134,-0.008473418,0.04147546,0.0015318153,-0.019535817,-0.11046489,-0.004799957,0.021936031,-0.007152039,-0.061499756,0.00085872976,-0.019867964,0.023656035,-0.07302065,-0.03517496,0.004563723,0.055615656,-0.015311364,0.017716888,-0.0051600505,-0.08237596,0.03951415,-4.015194e-33,-0.061209075,0.021220453,0.063304506,0.028265389,-0.0131609505,0.048067342,-0.054821163,-0.08236569,-0.12341004,0.044330034,0.033331357,-0.07855656,-0.021820294,-0.003886321,0.081509784,0.02399092,-0.07450461,0.022321869,-0.0053697163,0.008839564,-0.104891114,-0.060827825,-0.004569104,0.030479109,-0.07455264,0.023311535,0.08520167,-0.018784188,0.13130656,0.059463136,-0.09107916,0.0014590109,-0.0012079297,-0.016912404,-0.066554874,0.014737051,0.008965366,-0.123240285,-0.08081328,0.05654692,-0.0077225897,-0.012958407,-0.06393028,0.04784837,-0.02125134,0.062822595,0.090165645,0.0020787616,-0.005741793,-0.00974629,-0.1543557,-0.010602432,-0.08052579,-0.0004986549,-0.0354265,-0.02889851,0.033770528,0.011709809,0.03981237,0.03683349,0.021999694,-0.0091154035,-0.018916812,-0.04068302,-0.11273843,-0.065729424,0.047249258,0.0081075085,0.054189373,-0.00125886,0.04580664,0.029114924,0.051651478,-0.019928586,0.061333228,0.10101565,-0.060288858,-0.00023409407,-0.06280896,0.054177567,0.040128406,0.024339907,-0.015760371,-0.0081304,0.12634851,-0.028657649,0.04240076,-0.11981482,-0.06807847,-0.018601976,-0.060122486,0.009495146,0.090227425,0.018119942,0.019555101,2.5543757e-33,0.022797221,0.003671934,0.01012935,0.0468818,-0.004991578,-0.044051077,0.033216912,-0.04303858,0.02924837,0.0164853,-0.16664034,0.06742298,0.043861695,0.044802982,-0.08838727,0.022456396,0.07502689,-0.023780873,0.088349395,-0.03557215,-0.036080204,0.030128501,-0.07308631,0.019595606,-0.055025037,0.046730764,-0.1143494,0.02494435,-0.03661319,0.054190088,-0.089545846,1.4661348e-06,0.0148046,-0.017580407,0.026784683,0.03249205,0.076128006,0.029438565,-0.017205754,-0.04463929,-0.0016493774,-0.06004868,-0.014554278,-0.013076278,0.010846048,0.06558618,-0.028365904,-0.031382475,0.05471653,0.011624296,0.03296061,0.065605804,-0.072081424,0.008614151,0.013325543,0.01985957,0.041666005,0.027785791,-0.069419496,-0.06552478,-0.028376982,0.06838348,-0.065661825,0.08165629,0.0054063485,0.0119270785,0.015180823,-6.1111314e-05,-0.025855087,0.013595748,-0.07564754,0.02505297,-0.025191752,-0.027688572,-0.11659687,-0.023397971,0.073446125,-0.044369444,0.06398021,0.075640716,-0.010007561,-0.03592853,0.019433632,-0.014976813,-0.08224391,-0.071612194,0.0015813259,-0.01589552,-0.05637625,0.052810147,0.0032181432,0.03942944,-0.010210057,0.018168349,0.02126041,-2.274453e-08,0.056654956,-0.043938518,-0.02742244,-0.018072307,0.034558166,-0.059984125,0.02702636,0.14034854,0.008556204,0.08122139,-0.019716397,-0.018153938,0.022769433,0.068560526,5.6968325e-05,0.04627125,0.041517977,0.07541884,-0.04068528,-0.042805728,0.016299061,0.073480405,0.032778863,-0.0028632593,-0.057631616,0.040309977,0.037210926,0.01477634,0.027206423,-0.00016275616,-0.0045042187,-0.036139056,-0.07359216,-0.027139159,-0.0378481,-0.12675214,-0.09166359,0.042152166,0.012778879,0.024948299,-0.023016442,-0.075442865,-0.026308656,-0.00912709,-0.001888082,0.055389345,0.003317674,-0.024245905,-0.03161424,0.031687003,-0.05819221,0.04233215,-0.05659799,0.0046412675,0.116268136,0.003974084,-0.051642735,-0.018253824,0.023762798,0.04967754,0.029817257,0.008622949,-0.023008328,0.022253634} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:16.01683+00 2026-01-30 02:01:09.628593+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1482 google ChZDSUhNMG9nS0VJQ0FnSURoaVo2d0t3EAE 1 t 1485 Go Karts Mar Menor unknown Really fun place did a few 180 tough, and really funny and good personel really fun place did a few 180 tough, and really funny and good personel 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Really fun place did a few 180 tough, and really funny and good personel"} {0.0057092826,-0.070970304,0.017576823,-0.0022326363,-0.101833045,0.02331607,0.06430452,-0.05048389,-0.0565441,-0.041945897,0.022759493,0.0036932535,0.03519332,0.048423287,0.0069701388,-0.05086514,0.08228573,-0.0514726,0.047489643,-0.05040774,-0.013282673,0.01856176,0.04056972,-0.029177127,-0.040840007,0.0252893,-0.04806579,0.05619545,0.047164895,-0.011575637,-0.0007420494,0.062335875,-0.054513253,-0.0015835202,0.040299166,0.033953,-0.026801677,-0.039998867,0.040808465,0.10596214,-0.021984877,0.049498454,0.112686865,-0.021226509,0.051027868,-0.031659074,0.04184252,-0.06511056,0.08483567,0.022849964,0.057371214,0.044499006,-0.02418322,-0.05556944,-0.09309146,0.043258477,-0.05177314,0.0071052327,-0.038364843,-0.059149086,0.087773785,-0.04974637,0.019748718,0.009193329,0.05588251,-0.053172108,-0.060208682,0.05693424,0.043461952,0.01636296,-0.06579686,-0.007554535,-0.0089712385,0.058745284,0.048683327,0.05470894,-0.08275975,-0.040019218,-0.044492774,0.02636361,0.04069556,-0.05740529,0.010272124,-0.023040118,-0.00946023,-0.11104048,0.029538345,-0.023395747,0.0071137557,0.010806391,0.06236189,0.035816796,0.03203295,0.025953608,-0.012723947,-0.047780093,-0.009473533,0.008533228,0.01807272,0.07538527,0.010598442,0.06916772,0.00827879,-0.019671498,0.10999426,0.053589154,0.0011153447,0.044632785,0.019624026,-0.007907084,-0.010770279,0.057109956,0.089239925,-0.029797025,0.030263096,0.02049232,0.013133526,0.027698288,-0.022304995,-0.05881204,0.046302896,0.07210577,0.05911176,0.037257522,0.0032943173,0.02591305,0.08161855,-1.6043725e-33,0.040560193,-0.042996805,0.0045025204,0.030992297,0.06572735,0.08653548,-0.07097157,0.0013603556,-0.06920372,0.035512023,0.015103926,-0.008955363,-0.019910159,-0.032243066,-0.0118110925,0.03036184,-0.095170826,-0.06070389,-0.0043284753,0.037186563,-0.05161625,0.01676723,0.028443111,-0.035422243,-0.04032832,0.044674303,0.019535031,-0.053425595,0.03206901,-0.005117304,-0.04507115,0.0014187589,-0.022425696,-0.01406329,0.08753108,0.028785065,-0.0043093204,-0.10456206,-0.034919657,0.09025288,-0.020050814,0.0666764,-0.020337962,0.043219607,0.029544603,0.061719093,-0.07386485,0.025297776,0.013246832,0.004641201,-0.09934975,-0.029980889,-0.03150621,0.040060073,-0.02064287,0.018223755,-0.0052443715,0.03500282,-0.0018774233,0.020243367,0.049816564,0.07925519,0.002884533,-0.078564204,-0.059774075,-0.030798193,0.022830863,-0.015034209,0.018712828,-0.007823399,0.0037023197,0.055519953,0.052916687,-0.10436946,-0.0027067205,0.05805247,-0.04458451,-0.06747144,-0.11796667,0.030589456,0.05117343,-0.024875924,-0.06665504,-0.016809095,0.020673707,-0.020701908,0.016897539,-0.21237253,-0.068774216,-0.024311034,-0.065632716,-0.023652969,0.052696966,-0.024493089,0.037824567,1.912321e-33,0.033867776,-0.017338311,-0.017672032,0.08046839,0.06471303,-0.033139937,-0.083539754,0.007731608,0.08701421,0.0836285,0.029301563,-0.007303308,0.08459344,0.0029701067,0.013035442,-0.06994175,0.020477999,0.012396382,-0.07910725,0.050474245,0.0057299654,0.033399697,-0.02518083,0.053219166,0.037405487,0.101321936,-0.018093256,-0.03145115,-0.04566686,-0.029206092,-0.04299518,0.081776865,-0.031572923,0.03549421,-0.01631431,0.054825593,-0.01354875,-0.012720154,-0.053862456,-0.046146184,0.0025687357,-0.0074171335,-0.071418196,0.025658729,0.038771253,0.04217253,-0.046878107,-0.082605734,-0.012194502,-0.044712443,-0.09313778,0.0050974214,-0.10823082,0.013543367,0.054287795,-0.094017886,0.039704453,-0.0038186782,0.0021192697,-0.041648738,-0.16121376,0.03622498,-0.040977936,0.09939174,0.031350333,-0.025786094,-0.05780274,-0.024981136,-0.15415148,-0.018009085,-0.12277416,0.0372503,0.028951423,0.057064313,0.017047714,0.017929772,0.05462684,-0.016510265,0.048425235,-0.009539043,0.025063485,0.04452352,-0.09409157,0.044289827,0.03100326,0.12260553,-0.013727406,-0.0125238085,-0.041948996,0.11296836,0.08700724,0.06672119,0.0044325264,-0.083563045,-0.0296325,-2.2955351e-08,-0.011722054,0.08701186,-0.06708625,-0.009203477,0.0033275061,-0.022523953,0.042127717,0.0597343,-0.011565732,0.02100683,-0.0026453023,0.020660544,-0.0011332956,0.043298837,-0.0052867318,-0.021654282,0.05466818,0.025611173,-0.034047086,-0.0072591025,0.039119095,0.041731466,0.03955999,-0.00948035,-0.098045915,0.03718077,0.029389733,-0.036728565,0.055564642,0.009475368,0.0070266216,-0.044724282,-0.042421397,0.00011102161,-0.060599513,-0.001437102,-0.024579784,-0.05729137,0.017977957,0.041613184,-0.098688126,-0.045122176,0.11033368,-0.006256107,0.012701263,0.074392155,0.010522229,-0.048126068,0.034355205,-0.060856573,-0.069994025,-0.0433658,-0.0953911,0.012334001,0.040124465,-0.026071496,-0.06495367,-0.004664367,-0.10599704,0.06745766,0.023459487,0.02318519,-0.04151183,0.0013294842} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.76381+00 2026-01-30 02:01:09.497144+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1484 google ChdDSUhNMG9nS0VJQ0FnSUNNaXJUSjhnRRAB 1 t 1487 Go Karts Mar Menor unknown Perfect time to go is on a Wednesday as it it 2x1 (you pay once and your time gets doubled). perfect time to go is on a wednesday as it it 2x1 (you pay once and your time gets doubled). 5 2020-02-01 01:52:39.833374+00 en v5.1 V1.01 {A1.01} V+ I3 CR-N {} {"V1.01": "Perfect time to go is on a Wednesday as it it 2x1 (you pay once and your time gets doubled)."} {0.037100926,-6.681626e-05,0.039550066,0.032948658,-0.026511904,-0.0019205747,0.013007072,-0.017626053,-0.054089446,-0.03196903,-0.025857404,0.008883354,-0.02264688,0.07096585,0.029809384,-0.092429355,0.033001356,-0.08704237,0.021140251,-0.017791318,-0.002710881,-0.10936684,-0.00027806195,0.01132663,-0.0006220865,0.015749924,0.008666876,-0.013569989,0.0040755146,-0.028514903,-0.11872423,0.039247505,-0.06320897,0.013332634,0.010681551,0.017735654,0.032193344,-0.040886596,-0.009027149,0.046542574,0.07439687,-0.01910224,0.016572708,0.071250685,-0.07971558,-0.03486079,0.10143662,0.04820488,0.09018199,0.059155617,0.052386425,-0.03545753,0.025694814,-0.0030378802,0.015221357,0.15398717,-0.04271716,-0.00046896763,0.02412746,0.04442024,-0.05627842,0.050888047,-0.029530043,0.06352931,0.029735219,-0.010905319,-0.10353121,-0.027201531,-0.025997387,0.027318379,-0.06546216,0.042997137,0.008401112,-0.0038398,0.07699767,-0.0053637372,0.0010261395,-0.027752502,0.010372243,0.0553229,-0.040304933,-0.07058177,0.0059687737,0.017732313,0.014916687,-0.018812055,0.03696013,0.10653445,0.14951515,-0.07424966,0.07700718,0.06409235,-0.024012184,-0.042463094,-0.03100104,0.005558651,-0.028755734,0.05951643,0.01822286,0.02184064,0.04808599,0.027482314,-0.01567046,0.00900512,0.081822366,-0.026089272,0.010619268,0.06259827,0.058567,-0.03160359,0.03893595,0.009362662,0.13783652,0.0035329505,-0.034645703,0.11740344,-0.060726076,-0.018861156,0.07468833,0.009277204,0.018662548,0.018019406,0.038807772,-0.09572569,-0.0741283,0.004529599,0.050091147,-4.878827e-33,-0.103280105,0.05172402,0.012751666,-0.061839808,0.030001774,-0.028545178,-0.042757098,-0.01044001,0.015466942,-0.014499706,-0.032176893,-0.10058418,-0.03230314,0.020987492,-0.044683278,-0.05521141,0.073214695,0.07560223,0.0035155518,-0.016139692,-0.017272849,-0.07936734,-0.014282939,0.021600563,0.03923192,-0.081801884,0.022036536,-0.033855647,0.15768623,-0.011336832,-0.041095637,-0.014956374,-0.05961843,0.030937623,0.030102411,-0.020640366,0.06051075,0.040719498,-0.01078654,0.033959955,-0.065377906,-0.030840294,-0.007791931,-0.08652114,0.0379531,-0.0022546945,0.032609466,0.0012448054,0.01326002,0.011341207,-0.08119452,0.06034351,0.03626847,-0.022745464,-0.0653881,0.0016007012,0.08955685,-0.003832259,-0.0131527,0.023405697,0.0480933,-0.071648486,0.040517174,-0.0837255,-0.09717918,0.03538062,0.0015865751,-0.03764182,0.038729075,0.06679509,0.052069984,0.034073886,0.072179824,-0.040483244,0.03945493,-0.034241974,0.03223322,-0.005248386,0.09327261,0.11293185,-0.0030288768,-0.0065500946,0.033616394,-0.04694413,0.07973276,-0.027961105,0.023512311,-0.051865906,-0.033151302,-0.053588346,-6.8309106e-05,0.02379919,0.030816352,-0.008439001,0.07432447,3.832437e-33,0.057386234,-0.052401625,0.048749734,0.11822815,-0.008930397,-0.026310263,-0.048652317,0.07375487,0.04033338,0.0778745,-0.016531004,0.07473104,-0.0027959028,-0.061513674,0.0774896,-0.0876896,0.100853674,-0.061073285,0.041774407,0.050149523,0.055893335,-0.022717398,-0.033271458,-0.016938847,0.0378104,0.027347755,0.0074962988,0.025131578,-0.08026622,0.0985271,-0.053512637,-0.07456191,-0.09939956,-0.021791114,0.017521527,0.054285817,0.02341252,0.10707965,0.02417095,0.057010416,0.03588012,-0.11876168,-0.06968581,0.027908571,-0.0233039,0.052643772,0.009445895,-0.022669114,-0.047733504,0.04468961,-0.04245864,-0.0079134265,-0.013415077,0.016720798,0.02775728,-0.0018178064,-0.014652541,-0.06801057,-0.04621318,0.022051115,-0.05314711,-0.035466116,-0.040000755,0.08391269,-0.033533532,-0.0868789,-0.009254415,-0.03943258,-0.026064372,0.063867494,-0.12412694,0.03150844,-0.06325085,-0.02929474,-0.09362966,0.025776567,0.1117566,0.026941294,0.018269029,0.011008754,-0.017997071,-0.0112188645,0.016040156,-0.015929004,-0.045293264,-0.044091213,0.048759796,0.06326603,-0.012137378,0.030644199,0.019707955,0.032101516,-0.028520346,0.04263378,-0.02165682,-2.6208575e-08,0.004903325,-0.0065091955,0.019556222,-0.06887696,0.05662183,-0.16487215,0.00778263,-0.0050188657,-0.0071101515,0.0126097575,0.06293735,-0.030617887,-0.00033102563,-0.012653573,0.013973435,-0.0488184,0.022328435,-0.047635704,-0.067913085,-0.034308467,-0.036433615,0.021206174,0.0036078407,-0.023626527,-0.043883573,0.10888493,0.0362667,0.09135601,0.072870255,-0.02799183,-0.076442786,-0.006514366,-0.08675653,-0.04779928,-0.016151335,-0.0958639,0.0062490418,-0.022766052,-0.008109819,-0.040190965,0.021784358,-0.036325015,-0.023954593,-0.04462488,-0.020064088,0.040851593,-0.017096858,-0.008769188,-0.010366158,-0.061323956,-0.036147762,0.05511739,0.00085898035,-0.0049282233,0.03434951,-0.01027187,-0.017542852,-0.01787573,-0.017944423,0.036989793,-0.023858033,0.008289607,-0.11403871,-0.050043706} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.814744+00 2026-01-30 02:01:09.506625+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1486 google ChdDSUhNMG9nS0VJQ0FnSUNHanU3Tm1nRRAB 1 t 1489 Go Karts Mar Menor unknown Took family for a birthday treat and they all had a great time, reasonably priced, took family for a birthday treat and they all had a great time, reasonably priced, 5 2022-01-31 01:52:39.833374+00 en v5.1 V1.01 {} V+ I2 CR-N {} {"V1.01": "Took family for a birthday treat and they all had a great time, reasonably priced,"} {-0.005526901,0.091508895,0.024104588,0.041881643,-0.08208187,-0.0115174735,0.006468079,-0.017441623,-0.081368014,-0.013570494,0.059164587,-0.024614342,0.032088175,-0.009338555,0.008445503,-0.027160235,0.037526812,-0.09332412,-0.025139991,-0.08984697,-0.14040212,-0.060757693,0.034822132,0.03389901,0.009611157,0.08634254,-0.026701549,-0.008756639,0.045045935,-0.00028483456,-0.035299756,0.058813304,0.0107876295,0.0016704358,0.0002811985,0.023317233,0.03573691,-0.089121215,0.040583033,0.026092326,0.013528731,0.054380413,0.06303978,0.033886317,-0.0036522036,-0.04303693,0.03368122,-0.0026648117,0.082245894,0.061542682,0.042248353,-0.026702188,-0.011649034,-0.07410996,-0.054580696,0.05916184,-0.10009018,-0.08628421,0.0349672,-0.020470181,-0.1436643,-0.020199785,0.025860034,0.021064417,-0.025732128,-0.046920046,-0.010505837,-0.0067356923,0.018515222,-0.018345503,-0.11421316,0.052279815,0.107756935,0.039891116,-0.033790793,-0.0066170054,0.03979064,-0.051636443,-0.059714466,-0.017740624,-0.07170606,-0.050522882,-0.0505769,0.012750677,-0.0093130125,-0.039363082,0.07563046,0.034957137,0.025747236,-0.011604768,-0.0010959244,0.046126,-0.033892702,-0.021926442,-0.035632472,-0.041940764,-0.002144918,0.012513232,0.057381477,0.081492454,0.013519801,0.08164978,0.03989439,-0.017707542,0.01930784,-0.018616792,0.00047192836,0.027852999,-0.025391622,-0.00893552,-0.066134945,0.046393827,0.044426493,0.022706062,-0.04668166,0.019856699,0.005446678,-0.039198827,0.022940978,-0.054951593,0.08688953,0.06892067,0.063530095,0.016006496,-0.10081456,0.04389748,0.15627864,-3.3679118e-33,-0.02971826,0.02908773,-0.027328916,0.047302336,0.050424572,0.054866195,-0.039407272,0.0040345583,-0.050910838,0.0127942385,0.0016304217,-0.034643177,-0.004387233,-0.03811191,-0.0021330647,0.036823,-0.10089803,0.0414553,0.040239736,0.047096845,-0.0926351,0.03669395,0.006569576,0.040079817,-0.056882147,0.038423162,0.0039577237,0.017757928,0.088395566,-0.008063632,0.03564164,-0.008717426,-0.0033900095,-0.023864262,-0.018933645,0.017181646,-0.028886024,-0.07537733,-0.00701693,0.04683525,-0.017940208,-0.018119486,0.022885665,0.021943517,-0.07736518,0.010737375,-0.030415146,0.04565173,-0.024204254,-0.037319753,-0.09117167,-0.052270614,-0.023201596,0.031629942,-0.07768865,-0.012832802,0.01099198,-0.0071436996,0.0038472535,-0.020439366,0.093836024,0.00875303,0.003958103,-0.061502125,-0.06623012,-0.0029330805,0.04281409,0.071541265,-0.0059181997,0.058293737,0.052301362,0.022797123,0.010696443,-0.16951719,0.04036276,0.08103754,0.032961715,-0.0265381,0.030681618,0.040714443,0.10133943,-0.010899341,0.014672164,-0.025267946,0.005360337,0.008354742,-0.05902389,-0.08172972,-0.0373963,-0.0120883845,-0.05873573,0.011307574,0.057447553,-0.05617672,0.06806159,1.4405875e-33,0.044195034,0.061004754,0.0061579747,0.06690631,0.0681452,-0.062472697,-0.11454817,-0.008486176,0.057891935,0.06148534,-0.061579917,0.03227504,0.06308587,-0.026966874,-0.014848889,0.013111318,0.11255379,0.07034997,0.10754395,-0.055247243,-0.065544166,0.1563801,-0.029381925,0.002171346,-0.026916925,0.08558972,0.018505204,-0.026570225,-0.07598196,-0.039480757,-0.015786663,-0.05325,0.009222245,-0.012567466,0.028058717,0.11435935,-0.012025118,0.011789452,-0.060904477,-0.005986271,-0.045738183,0.006611659,-0.02536954,0.13023359,-0.00017325762,0.03491829,-0.076239355,-0.03801769,0.05788994,0.06984165,-0.05312711,0.021639775,-0.028763494,-0.016975213,-0.055081386,-0.062434986,0.027083931,-0.04475291,0.037547056,-0.028180989,-0.1221692,0.011368405,-0.070205905,0.04434813,-0.026991092,-0.022040445,0.040519834,-0.08162663,-0.08538576,0.06358374,-0.05959557,0.016232898,-0.0037317863,0.03425863,0.0031301787,0.018477457,0.027378285,0.007138833,0.037537392,0.03072458,-0.018796243,0.07656148,0.014092503,-0.0067325663,-0.065947294,-0.049126312,0.011227065,-0.043920975,-0.06395156,0.06569818,0.06777798,-0.0030721535,0.05610115,0.014959961,0.018772747,-2.2305167e-08,0.122451104,0.060261056,-0.12100942,0.014153323,0.023128526,-0.117095,0.039905317,0.07276603,-0.015239488,0.12204021,-0.010540957,0.013805972,-0.028554682,0.027858304,0.019564752,-0.03749041,0.0037193063,0.04898121,-0.024005042,0.007284889,0.021379378,0.031545658,0.07253779,-0.014555044,-0.02463523,0.026474291,-0.0016627336,-0.033069726,0.01443725,-0.011826516,-0.022609944,0.0283288,-0.05810606,-0.016339872,0.011598359,-0.034878913,-0.11780821,-0.05477421,0.01878846,-0.06417329,-0.030707965,-0.050432645,-0.08781204,-0.017287642,0.024804331,0.040457014,-0.053107075,0.03250169,-0.048431482,0.0700437,-0.032180972,0.018000012,-0.06663231,0.04890769,-0.0012830811,-0.049827408,-0.02311505,-0.0571684,0.039921988,0.038856614,0.004667944,-0.029940527,-0.07889001,0.00788188} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.839156+00 2026-01-30 02:01:09.515749+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1489 google ChZDSUhNMG9nS0VJQ0FnSURPMXNiUEd3EAE 1 t 1492 Go Karts Mar Menor unknown Excellent fun time,even though my grandson almost lapped me 🏎😀🤪 excellent fun time,even though my grandson almost lapped me 🏎😀🤪 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Excellent fun time,even though my grandson almost lapped me 🏎😀🤪"} {-0.015555271,0.061082773,0.02638464,-0.027604494,-0.04473975,-0.0042284587,0.052535288,-0.02935984,-0.041017544,-0.03321097,0.027996484,-0.027532935,0.066199094,0.05468616,0.0023615013,-0.029911043,0.024738194,-0.037511826,0.009309667,-0.02142445,-0.052651886,0.008884674,0.0645487,-0.003198631,-0.03947502,0.03997857,0.020411132,-0.023378262,0.055684082,0.012945112,-0.0657719,0.0009409474,-0.06008148,0.004178758,-0.027334893,-0.051413547,0.0906482,-0.10413569,0.049901,-0.011542768,0.03270479,0.0024946167,0.061702624,-0.02693059,0.0603271,0.028290426,-0.008399955,-0.059917532,0.026097562,0.059718434,0.06430103,0.016499002,0.05828912,-0.0066862395,-0.037386157,0.062965535,0.004611473,-0.058037005,0.036303017,-0.061127394,-0.09027353,0.06919062,0.019676821,0.024095878,-0.010409477,-0.15077713,-0.025982756,-0.035656285,0.020282386,0.04162592,0.02841287,0.06018008,-0.03559638,0.038986165,-0.02918925,0.06961981,-0.00081273215,0.0042912224,0.032996852,-0.049182903,0.01912108,0.012813782,-0.009410683,0.034001492,-0.04791338,-0.13863914,0.055091973,0.043477237,0.024644336,-0.01601912,0.016815174,-0.055758968,-0.026999006,-0.022352772,-0.07032526,-0.059215438,-0.0036102063,0.030497069,-0.121097624,-0.012457073,-0.012740406,0.07846321,0.046276476,0.048022315,-0.03137984,0.10206853,0.007751399,0.057556096,-0.0047567915,-0.060543463,0.0007299507,-0.0006844342,0.0674969,0.043710567,-0.07581293,0.04899792,-0.08316261,0.034823738,-0.0151418615,0.014317594,0.009540457,0.031165328,-0.01568487,0.0014996246,0.026598122,-0.09146078,0.06028838,-3.8792967e-33,-0.01765082,-0.025423115,-0.035343386,0.014905727,0.075808026,0.06532189,-0.021010492,-0.043733403,-0.065867096,-0.036113303,-0.056837376,-0.039539684,-0.013600586,-0.033285365,-0.072505035,0.015353117,-0.05015985,-0.02775553,-0.021130398,0.022112653,-0.04691365,-0.056569483,-0.0036251715,0.0412938,0.073371165,0.055114385,-0.04292032,-0.07553614,0.070482306,0.06367248,-0.057636615,0.0053245574,-0.09009173,0.03352306,-0.022522673,-0.03641178,0.015216928,-0.07574424,-0.023022627,0.049675126,0.011726691,-0.037350014,-0.0352992,-0.011749319,-0.08163654,-0.02954973,0.011393692,0.01564226,0.018400209,-0.040784393,-0.15121678,0.021741277,0.012497332,-0.064548515,-0.027636433,0.006980166,0.035077456,-0.0021998142,-0.06687591,0.016153052,0.16081358,0.057848003,0.058881454,-0.09608287,-0.07406565,-0.05786875,0.08952674,0.018840848,0.089691214,-0.07543806,0.015622829,-0.031399537,0.015504668,-0.11909013,0.08101549,-0.0006971198,0.107189275,-0.032845903,0.025705598,-0.07386873,0.048028767,0.018606426,-0.006952477,-0.046458997,-0.0019406531,-0.05315783,-0.02492937,-0.105923556,-0.006706658,0.053168908,-0.084267735,-0.033648204,0.08883996,0.01584958,-0.057457313,1.3959509e-33,0.08599241,0.015814506,0.024371514,-0.0094399415,-0.00855264,-0.04762546,-0.039085552,0.06838565,-0.029745327,0.050388772,-0.040755477,0.041722264,-0.0713107,-0.090844676,-0.004514711,0.0006684298,0.13313502,0.051222343,-0.027355244,0.055879198,0.009286696,0.0026723817,0.05262238,-0.00090215623,0.020922592,0.020446861,0.04504305,-0.042201567,0.021744467,0.049793,0.0041260114,-0.0345888,-0.024401838,-0.014713715,0.014429528,0.023704655,0.024967063,0.05366589,-0.03471332,-0.02371667,0.0467963,-0.0013772039,-0.013251461,0.07793084,0.04831564,-0.006138678,-0.05018405,0.014000777,-0.084241204,0.10161633,0.032993823,0.0010017356,0.02255004,-0.004170908,0.010835493,-0.09118129,0.088716626,-0.067860715,0.03998042,-0.014415927,-0.116811484,0.026633684,-0.070839524,0.03932574,0.039923638,-0.017369395,-0.059174307,-0.0031155797,-0.0066492963,-0.021741929,-0.07391334,0.04434949,-0.077412225,0.075336225,-0.011396599,-0.001874854,0.060143795,-0.016429277,0.017355537,-0.0052410387,-0.005490336,0.040109746,0.026833516,-0.029027553,-0.07528896,-0.059738662,0.0025257766,0.0019493006,-0.029851412,-0.00671848,0.058566086,0.049485486,0.018596185,0.029476402,0.05064693,-2.176147e-08,0.039921194,0.11760412,-0.015711505,0.011446554,0.06403075,-0.08494638,-0.030232117,-0.042848207,-0.00878638,0.009686497,0.062172815,-0.047265116,0.121724404,0.008173339,0.10050535,0.008562304,0.04284527,0.044204272,0.007525952,0.049426846,0.038957324,0.005167849,-0.020200135,0.054584175,-0.010717773,0.03455352,-0.0059294803,0.039160322,-0.014560122,-0.11528335,0.04933698,0.057572752,-0.15402491,0.030673562,-0.05954821,-0.025087014,0.044251543,-0.0021127576,0.045396596,0.016205257,-0.060420286,-0.070165776,-0.0014573144,-0.0044489144,0.009869133,0.026710689,0.015508757,-0.029964432,-0.023924388,0.021374332,-0.058276847,-0.03924128,0.013421845,0.05664023,0.09311574,-0.0019213393,-0.01458529,-0.063562945,0.038011704,0.0891533,0.08755377,0.097698465,-0.1212015,0.0031341135} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.874083+00 2026-01-30 02:01:09.525519+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1493 google ChZDSUhNMG9nS0VJQ0FnSUNRa2FqZEdREAE 1 t 1496 Go Karts Mar Menor unknown 12yr old and 7yr old on the F100 go carts. Had a brilliant time can't wait to go back. 12yr old and 7yr old on the f100 go carts. had a brilliant time can't wait to go back. 5 2019-02-01 01:52:39.833374+00 en v5.1 V4.03 {R4.03} V+ I3 CR-N {} {"V4.03": "12yr old and 7yr old on the F100 go carts. Had a brilliant time can't wait to go back."} {0.0785082,0.062479384,-0.023781108,0.025428595,-0.00060563843,0.020946316,-0.027675988,0.04247835,-0.120255895,-0.0080804415,0.028541664,0.078861676,-0.016512418,0.09285698,-0.001551389,-0.06564854,0.05853108,-0.08826133,0.0052152392,-0.07951339,-0.0447956,-0.018838814,0.02735026,0.060529802,-0.03491915,0.10439542,-0.06815855,0.048277818,-0.039051887,0.022208074,-0.049283814,0.0016723922,-0.009245945,-0.022204649,-0.010913216,0.00040931936,0.084061414,-0.05520388,0.044146597,-0.041616447,-0.059985034,-0.024112696,-0.019547626,-0.014660814,0.029395448,0.011308113,0.08563814,-0.0990155,0.1282879,0.023746442,0.088925116,0.0062386277,0.055640955,-0.04170749,0.018608367,0.03814134,-0.041887987,-0.04035409,0.0046889703,-0.0040129423,-0.02792319,-0.046356265,0.0016720933,0.034734007,-0.0792761,0.026684467,-0.080403715,-0.09021778,0.07616311,0.06578517,-0.01089374,0.022287635,0.029934725,-0.05046689,-0.016209712,0.060462557,0.046611343,-0.03791133,-0.0056553474,-0.0106414985,-0.011588927,-0.06983966,-0.04742027,0.021163855,-0.03798553,-0.10188421,-0.031545185,0.023168944,-0.05152069,-0.025154553,-0.0064242235,0.01641854,0.04107678,0.033010785,-0.04072516,-0.08861504,-0.004208918,0.025044855,-0.0042618723,0.023013625,-0.02170889,0.08943672,0.082597435,0.048781224,-0.032281876,0.09514217,0.018279448,0.038228482,-0.015275902,-0.06551905,0.013778309,0.04162886,0.09125124,-0.0076244473,-0.13817199,-0.045993887,-0.030648194,0.017683223,-0.03639715,0.054024894,0.03226231,0.06867447,0.028978543,0.08517508,-0.016124168,-0.11211785,-0.020853844,-9.544994e-34,-0.052621137,0.011234341,-0.012910395,0.08158766,0.043359242,0.1100722,0.007262979,-0.044435002,-0.014033836,0.054635048,0.06746589,-0.0010652463,-0.031994373,-0.11884234,-0.011561548,0.033452716,-0.073593594,0.0034687992,-0.08955971,-0.06464766,-0.03652293,0.018276624,0.024106946,0.07957471,0.09221491,0.12424894,0.01369029,0.003203041,0.084694155,0.025334606,-0.038107228,0.022496292,-0.052829042,0.0478161,-0.056767117,-0.05543725,0.029733993,-0.0239047,-0.04905853,-0.0023130246,-0.016703637,-0.05701467,-0.04591936,0.0028867736,-0.047688924,-0.008355431,0.06089546,0.02775688,0.016559837,0.04094787,-0.116821244,-0.021386093,-0.035492897,0.0135724805,-0.016099172,-0.026773235,0.041626275,0.01566199,-0.059173092,-0.05908648,0.046903558,0.062114324,0.0056655365,-0.07932473,-0.008402971,0.04869737,0.05881869,0.019818882,-0.022975162,0.055971123,0.044868816,0.044684935,-0.10640525,-0.066623345,0.013970517,0.03426824,-0.011297362,-0.07127092,-0.03600492,-0.029696135,0.050413396,0.020515515,-0.0704004,0.0046095233,0.047321614,-0.06134777,-0.08918561,-0.14746097,-0.024774112,-0.031360365,-0.009363766,-0.053072628,0.06926396,0.04579543,0.044273175,-1.0903307e-33,0.05566986,-0.0065787015,0.056260698,0.0058127358,0.053941503,-0.05206229,0.017611077,0.0007218597,0.024814071,0.07323505,-0.085685946,0.027784294,0.036646068,0.0050104335,-0.030812284,0.014670421,0.10387542,0.039482474,0.024446305,-0.094785556,0.06510487,0.06360635,-0.09212156,0.03981565,-0.013706101,0.0407108,-0.007908756,-0.04165527,-0.07235446,0.048400264,-0.017643776,-0.06911964,0.06365272,0.03593868,0.027118353,0.061125517,-0.074565284,0.10128887,-0.09466119,-0.029317506,0.041656625,-0.038506396,-0.0018199519,0.00502818,-0.009162274,0.0040300502,-0.0010382956,-0.017795743,0.064066105,0.082018495,0.018572474,0.033583317,-0.044841617,-0.05327902,-0.022285668,-0.048958138,0.10630677,-0.052829307,0.013138471,0.021181863,0.011941161,-0.033553176,-0.0679361,0.020637376,-0.043606587,-0.053368945,-0.053399526,-0.03902722,-0.069085464,0.0256308,-0.028199319,-0.008282946,-0.010119909,0.026001174,-0.06357514,-0.028438928,0.017392524,0.023715375,0.009891084,0.013756945,0.027488153,-0.04453991,0.08140458,0.080969065,0.031671684,0.026611613,-0.0018489289,-0.021868216,0.002763239,0.015547253,0.10248231,0.0846535,-0.0607512,0.0034774847,-0.055442505,-2.2520613e-08,-0.006512602,0.06805903,-0.02009879,0.00031810263,0.07936078,-0.045455124,0.0108138975,0.094123036,-0.08426113,0.009001831,0.051243164,0.028631281,0.097730696,-0.017478121,0.06736017,0.007947386,0.06582535,-0.023236254,0.02294965,0.010837973,0.0012949854,-0.04276423,-0.006314304,-0.007722745,-0.047055278,-0.09542716,0.04381094,0.05093849,-0.002470667,-0.02670786,-0.016709981,0.0031017216,-0.0344622,-0.03454957,-0.02724813,-0.091168515,0.020757789,0.05226309,-0.04619543,0.0015410931,-0.04866251,0.011964199,-0.08378059,0.017160185,-0.074156746,0.04920353,-0.075721174,0.0034962778,-0.0342141,0.015155396,-0.05949131,-0.018636087,-0.012223432,0.077262886,0.0776026,-0.020838838,-0.039388213,0.008357911,-0.018047592,0.08516069,0.022120725,0.027902324,-0.051140103,0.0027958422} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.2944+00 2026-01-30 02:01:09.541158+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1499 google ChZDSUhNMG9nS0VJQ0FnSUNKb1kyaWRREAE 1 t 1502 Go Karts Mar Menor unknown Great place,, spotlessly clean and very friendly accommodating staff. great place,, spotlessly clean and very friendly accommodating staff. 5 2024-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"P1.01": "Great place,, spotlessly clean and very friendly accommodating staff."} {0.024527412,0.014490968,0.014549211,0.0076650036,-0.058087166,-0.0035872245,0.023808172,-0.09373337,-0.07222606,-0.028114121,0.052885722,0.030321188,0.020685915,-0.020150937,-0.023998301,-0.051192634,0.08684335,-0.0908628,0.07873911,-0.0869284,-0.07084217,0.015220937,0.091715835,-0.021993415,-0.06514922,0.055612534,-0.033402164,0.028163174,0.04938137,-0.045973405,-0.011158055,0.0264717,0.034911722,0.010553391,0.00239626,0.13696466,0.056005865,-0.05083675,0.07261312,0.029826373,-0.033521175,-0.057725262,0.0077820644,-0.030081252,-0.053209696,-0.018563626,0.019015515,-0.07178443,0.050038423,-0.042649016,0.10798588,-0.02086529,0.04886665,-0.047550563,-0.05167192,0.022114292,-0.019243348,-0.11240545,0.011748714,-0.049480427,0.105901115,0.015598827,-0.04070853,0.058657236,0.029967519,-0.0515537,-0.06597171,0.060393788,0.02297564,-0.12151907,-0.04176497,-0.0037639167,0.072247274,-0.0016326887,-0.021314152,0.0010841343,-0.02892426,-0.011555029,0.005195163,-0.029111268,0.02581575,-0.06256236,0.033472214,0.0649686,-0.064778104,-0.072206505,0.03710244,-0.07273997,0.05186721,-0.007853769,0.074258454,0.1365203,-0.04424539,-0.09196667,-0.031545285,0.006888258,-0.006190432,0.04770048,-0.04923601,0.07723635,-0.048744082,0.09104535,-0.0029193598,-0.007695594,-0.04089273,0.018302813,-0.011903887,0.022935808,-0.024861015,-0.01328013,-0.04466882,0.026723767,-0.06853065,-0.009727018,0.0073215817,0.031115115,0.05098554,-0.04880105,-0.06926385,-0.0269055,0.05976407,0.009919462,-0.06781262,-0.00029876496,-0.0048340694,0.027304577,0.060211904,-1.9176642e-33,0.020681519,0.14407031,0.01297634,0.029568292,0.092528954,0.016637273,-0.055153456,0.017659249,-0.00097398675,0.039874412,0.05779313,-0.021389429,-0.039031014,-0.00027435692,0.035809442,-0.03701953,-0.0117640495,0.008726608,-0.0647897,0.010929263,-0.008852829,0.014366361,-0.03703011,0.028713869,0.026855353,-0.015022902,0.0038172381,0.07265226,0.058611255,0.036160063,-0.016989853,-0.017256826,-0.030323679,-0.013781012,-0.048951738,0.014676107,-0.10606431,-0.053575404,0.027469324,0.012951332,-0.007353176,0.023231052,0.033107936,0.051930703,0.0210203,0.0594397,0.020138444,-0.008030427,0.08973331,0.017786475,-0.01624415,-0.017141642,-0.09965486,0.095649615,-0.011124935,0.022569753,0.0059979623,0.008466481,0.05447346,-0.008290744,0.07624967,0.10598417,-0.07841318,-0.057117634,-0.00622542,-0.1208427,0.021949617,0.04438792,0.13764764,-0.016936732,-0.0076514785,0.04585265,0.03895868,0.022879155,-0.070709735,0.032549076,-0.07564363,0.0056211334,0.01908311,0.06362759,0.058475588,-0.0049551623,-0.07307605,0.030738788,0.048484106,-0.009609672,0.09666491,-0.07147194,-0.08142648,0.034831654,0.041833244,0.049528603,0.029956907,-0.015666416,-0.08892071,-1.8569311e-34,0.12840767,-0.07704034,-0.01352279,0.051296078,-0.06413504,0.05078106,-0.07980552,0.042942196,-0.008481982,0.096427366,-0.11308222,0.078756675,0.046779502,-0.011299907,-0.020077327,0.058063384,0.059312534,-0.037615407,-0.11645306,-0.041361563,0.0079077585,0.11207897,0.010980939,0.0033664915,-0.044175662,0.05929554,-0.09885753,-0.02454713,-0.076855555,0.010247087,-0.09839974,-0.0032374717,-0.021820372,0.02119447,0.02787528,0.041443486,0.005599155,-0.0047419737,-0.042469125,0.07358294,0.07771726,-0.049056884,-0.08745268,0.08005517,0.01001754,-0.013583181,-0.065885976,-0.027659725,-0.063983545,-0.03296897,-0.030320864,0.011433661,-0.064681515,-0.03763438,0.013841634,0.027922068,-0.017151464,-0.030900976,-0.008038099,-0.01842006,-0.03338211,0.07878565,-0.0125150345,0.10592981,0.05322459,-0.06405915,-0.0050525684,0.006571182,-0.04810386,-0.031087907,-0.048451792,-0.013538723,-0.039682005,-0.004591337,-0.013487682,-0.024704585,0.117316484,-0.09265626,-0.014548965,0.041953936,-0.03356337,0.019773722,-0.04126243,-0.021340104,-0.0042347885,-0.018292159,-0.003465122,-0.06620718,0.007585113,-0.00794761,0.00040091752,0.0397983,-0.113619894,-0.06109907,-0.03197379,-2.5350616e-08,0.010254418,0.00845718,0.0011879168,0.068086706,-0.018288529,-0.12378446,0.0121490965,0.098292135,0.014622462,0.07742669,0.01771161,-0.024164068,-0.077295296,0.015982747,0.0076131676,0.048323985,-0.01296612,0.05741716,-0.09281743,1.0863547e-05,0.0127674835,0.070967905,-0.013294399,0.044026215,-0.05154208,-0.0015755901,0.013952798,-0.017546793,-0.018999394,-0.033531517,0.013364861,0.04508833,-0.03134177,0.035242938,-0.0045657284,0.046057206,-0.049348794,-0.057084676,-0.019072358,-0.050756585,-0.06902634,-0.027121898,-0.056411866,0.01776103,-0.0028134426,0.008855283,0.02111084,0.036006268,-0.005044808,-0.04159267,-0.069104895,0.0025546516,0.03860433,0.04478029,-0.0314735,-0.0015291101,-0.03334426,-0.03647393,0.01353869,0.10360533,-0.024872275,0.048048068,-0.0104932645,-0.00052105286} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.81752+00 2026-01-30 02:01:09.569726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1476 google ChZDSUhNMG9nS0VJQ0FnSUNwd0pidkVBEAE 1 t 1479 Go Karts Mar Menor unknown Always great to come back. Been waiting 4yrs..All fun for all the family. always great to come back. been waiting 4yrs..all fun for all the family. 5 2024-01-31 01:52:39.833374+00 en v5.1 R3.04 {V4.03} V+ I3 CR-N {} {"R3.04": "Always great to come back. Been waiting 4yrs..All fun for all the family."} {-0.015039355,-0.045424975,0.0745824,0.0059813797,-0.04558796,0.016855141,-0.008464889,-0.08393623,-0.009017056,-0.067070305,0.037869446,0.033800658,0.003299988,0.021126766,0.025023501,0.00047056194,0.049461596,-0.069447696,-0.036672596,-0.053936347,-0.08268633,-0.02162581,-0.002984934,0.0065868665,-0.032930765,0.051157884,-0.07823794,0.05856367,0.041581195,0.01793398,-0.05694823,0.032478202,0.0018857295,-0.01384742,0.042618304,0.064124934,-0.020967152,-0.08308164,0.00669737,0.03462567,0.0088786725,0.08955613,0.03922462,-0.00047122285,-0.014638813,0.12623605,0.05161796,-0.082891755,0.11791279,0.051765688,0.06868184,0.040837757,0.015232861,0.050038878,0.01349225,0.11316574,0.04436848,-0.07229858,-0.040429562,-0.034253724,-0.0063185054,0.08032644,-0.034058735,0.0836083,-0.024119444,-0.04540421,0.011912008,-0.086901344,0.1108567,-0.014787706,-0.1132154,0.07309826,0.04511797,0.032903675,-0.032906912,0.031070102,0.04003106,0.030603576,0.011133632,0.00837303,0.038090542,0.009933597,-0.06498055,0.036423255,-0.08597856,-0.11092691,-0.020870961,-0.021974152,-0.025085641,-0.04621146,0.06104481,0.0076517714,0.023737708,0.026624566,-0.03766988,-0.053727034,-0.019953925,0.020067336,-0.015333725,0.024443425,-0.02528857,0.013425277,0.044827376,0.00073388155,-0.021869553,0.07585053,0.035814904,0.04233511,-0.034831543,-0.031079562,-0.04476371,0.072990686,0.045609,0.012669861,-0.037943,0.034957834,0.0023981237,0.029454151,0.028348623,-0.02344875,0.017027235,0.079402454,0.079834215,-0.016036574,0.013417175,-0.035094906,0.085390106,-3.8686276e-33,-0.07866766,0.057113267,0.018093709,0.073877044,-0.033558253,0.06296582,0.0011005696,-0.077234715,-0.04129599,-0.020554926,2.736273e-05,0.0045452933,0.005245818,-0.106317475,-0.025303997,0.0110582635,-0.04391885,0.026525622,0.00897831,0.061120305,-0.064681076,-0.029859131,-0.017088074,0.10636339,0.027286284,0.00810498,0.01985913,-0.0585451,0.013144792,0.0064300834,-0.07330693,0.060468804,-0.015964368,-0.05990787,-0.029287219,-0.013939816,-0.009220591,-0.042709015,-0.045594532,0.055787608,-0.0034970783,-0.0059140096,-0.043177765,0.03820412,-0.022664392,-0.08724408,0.0158494,0.00072722393,0.005566198,-0.11014401,-0.08076902,-0.02308292,0.024119208,0.015656497,-0.017953284,-0.00027221182,-0.09359715,0.0123201255,-0.027373556,0.013508119,0.12677534,0.009627524,0.004212077,-0.07771065,-0.019287897,-0.07029605,0.04701746,0.028232401,-0.054447487,0.009546612,0.08912467,0.01182529,-0.04784048,-0.03186115,0.030980403,0.10450868,-0.0070802155,-0.108169585,0.015335718,-0.010256488,0.025496056,0.082438886,-0.029640872,-0.0001368109,0.06849784,-0.048057567,0.024601696,-0.21288876,-0.026518349,0.030440768,-0.006077703,0.010341352,0.110639185,-0.03507917,0.039254613,1.7850545e-33,0.088119276,0.09346428,0.04679307,-0.040845327,-0.0032472222,-0.08255032,-0.03656769,0.15328294,0.015181217,0.05264393,-0.0018523216,0.026583584,0.047906566,0.0027467883,-0.10964156,-0.011714736,0.04926158,-0.021282585,0.012243865,-0.04938099,0.011393762,0.09237106,-0.08749085,-0.030424263,-0.033645034,-0.013426571,0.039371222,0.03732449,-0.014866289,-0.06082521,-0.043155674,-0.02798262,0.0019584135,0.057329006,0.110783614,-0.016393071,0.012254057,-0.014529694,-0.06281831,0.0028871216,-0.08265974,-0.024028467,-0.016551109,-0.00883022,-0.009576608,0.074569404,0.06334342,0.016451726,0.013660974,0.056739695,0.04994134,0.015628856,-0.019080272,-0.074783355,0.047839526,-0.025238061,0.083598845,-0.042773746,-0.07250364,-0.038425937,-0.14482783,-0.02027998,0.023644414,0.015271511,0.08419899,-0.027630193,-0.0028113218,-0.091113314,-0.084144995,-0.04287445,-0.057090934,-0.007628279,-0.059584875,0.041768543,0.018317247,-0.08219615,-0.014706346,-0.11066444,-0.023340188,0.02963305,-0.02092172,0.076421745,0.016792413,-0.06312135,0.042913407,-0.06131237,0.014211102,0.025999393,-0.029257583,-0.012298419,0.080769815,0.026171193,0.027641298,-0.02904446,-0.019780682,-2.086768e-08,0.023486288,0.10238199,-0.039498445,0.0052615306,0.016039217,-0.029366035,0.056418654,0.012020188,-0.04664477,-0.022206131,-0.0070221503,0.03587349,0.03823265,0.023865758,0.081134535,0.027121883,0.07351579,0.016895946,0.017410262,-0.057596564,-0.02461927,0.045422427,-0.06949825,0.07075547,-0.03367037,0.040967185,0.06326359,-0.023727223,0.011717257,-0.057975788,0.044765938,-0.01289597,-0.0055977046,0.044114705,-0.042831462,-0.0757307,-0.054212075,-0.029493554,0.016121369,0.0192016,-0.068593144,0.045323208,-0.016085366,-0.009930466,-0.093796775,-0.0019934438,0.027955268,0.06882098,-0.04717259,-0.031303145,-0.072800815,-0.035099935,-0.061968364,0.04213187,0.053830277,-0.010348626,-0.029193426,-0.014136188,0.011182464,0.050316975,0.03579693,0.05030936,-0.0047276802,0.010924746} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.227705+00 2026-01-30 02:01:09.475461+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1478 google ChdDSUhNMG9nS0VJQ0FnSUM1b2U3RXpnRRAB 1 t 1481 Go Karts Mar Menor unknown We go everytime we'rein Spain, Go-Karts on a track exactly what you'd expect. we go everytime we'rein spain, go-karts on a track exactly what you'd expect. 5 2024-01-31 01:52:39.833374+00 en v5.1 J3.01 {} V+ I2 CR-N {} {"J3.01": "We go everytime we'rein Spain, Go-Karts on a track exactly what you'd expect."} {0.016298039,-0.031736184,0.02982125,0.10799886,-0.04861839,-0.004408852,-0.010532653,-0.12162158,0.02588678,-0.037342474,-0.0056911474,0.021005956,-0.040247794,0.060275696,-0.02308798,-0.058177873,-0.013716676,-0.08563203,-0.024709953,0.038428426,-0.021969954,-0.030409899,-0.0457441,0.0392887,-0.08743232,-0.056928907,0.0009888682,-0.0049822726,-0.014993388,-0.01246406,-0.12387661,-0.04614023,-0.04155961,-0.04007148,-0.015083684,-0.019626407,-0.018727278,-0.053001177,-0.060106188,0.014041944,0.008494293,-0.05209384,0.015178095,0.118636735,0.006552738,0.0015969307,-0.043803252,-0.020187713,0.00072221295,0.03633738,0.041475732,-0.07284991,0.06573628,-0.08033266,0.0079581505,0.078498594,-0.00850069,0.04400126,0.13720448,0.044174258,0.040701147,0.005729129,-0.017674224,-0.0024226848,-0.08931838,-0.07479133,0.026292946,0.13871273,-0.027303917,0.11343999,0.03760141,-0.029000564,0.01589458,0.070679024,0.087358475,0.08311743,-0.119433075,-0.08987095,-0.09255924,-0.007291092,0.05788646,-0.03345216,0.033866093,-0.11246,0.045806218,-0.04836392,0.04773351,0.0033347001,0.06335915,-0.035750523,-0.051665187,0.017427322,-0.019078411,0.029425763,0.016221127,0.049045164,-0.0027022732,0.08251022,0.06737306,0.049929455,0.07803102,0.08422777,0.061277512,0.074989244,-0.04128583,0.014068146,-0.03024128,0.034821656,0.06655167,0.027118137,-0.0019161131,0.069370165,-0.0016100659,-0.0030083815,-0.09822858,-0.030068228,-0.040536016,-0.010924117,-0.00017882237,-0.021665491,-0.0144147705,0.05270953,-0.0077033327,0.031449083,0.046862513,-0.039844763,0.03755063,-5.100731e-33,-0.0787055,-0.015080876,0.004797283,-0.002337207,0.05413724,-0.086245544,-0.0590278,-0.0999664,-0.05389526,-0.037401203,0.017144335,0.02929014,-0.006273221,0.037232745,0.108371384,-0.0044582817,0.0033620696,-0.009972132,-0.020481655,-0.030970069,0.020225352,0.0021285738,0.057635974,-0.0023537492,0.06864099,0.043584034,0.02561311,-0.02555576,-0.053878836,0.001473004,0.019873787,-0.003940037,-0.046038374,0.00036535732,-0.06479292,0.047360823,0.049002487,0.028307166,-0.030741032,0.011001679,0.042566925,-0.053741574,-0.022088172,0.045209922,-0.015458195,-0.01072092,0.043921556,0.057127662,-0.029964082,0.0029019103,-0.017782897,-0.0156153245,0.0051717623,-0.02025048,-0.0009791096,0.0725696,0.062653795,0.03995815,-0.046205897,-0.0646849,0.05921808,0.012823937,0.01566428,-0.027119849,-0.046618346,0.042316988,0.009686781,-0.019850206,-0.009089493,0.019474363,-0.014708765,-0.002623121,-0.06869561,-0.014819157,0.059818003,-0.013373787,-0.04894296,0.021692928,-0.007122006,-0.033571187,-0.07999985,-0.0038419026,-0.0444542,0.00095257023,0.102627166,0.04618556,0.027068991,-0.065442756,-0.019205758,0.014001545,0.0067929025,0.10523451,0.0019586498,0.029676571,-0.010134942,2.5471082e-33,0.07840222,0.047477305,0.15591446,0.14733753,-0.005955954,0.034899857,0.039384264,0.0026985095,0.058951315,0.039271172,-0.015361351,-0.02507684,0.052076116,0.041398246,-0.012201263,0.0007411207,0.106536984,0.056300424,0.051078655,-0.033555564,-0.030799873,-0.025034985,-0.033139993,0.00467323,-0.02798255,0.0021746827,0.010830059,-0.034526423,-0.1288575,-0.048022415,-0.024069022,-0.069680475,-0.05655924,-0.05325784,-0.032440584,0.07050234,-0.012195476,0.086735636,-0.03844406,0.0617523,-0.08283698,0.01984131,-0.046556562,0.054479312,-0.045391157,0.019282885,0.031864315,0.04018505,-0.0078390725,-0.07787591,0.07877698,-0.0014243532,-0.10445292,-0.012023443,-0.022680981,0.027962299,0.01420159,-0.05472171,-0.07756974,-0.005580856,-0.014699034,0.027541546,-0.06703987,-0.009737157,0.032409508,0.025307432,-0.07986631,-0.05099583,-0.082565956,0.003962514,-0.048896793,0.04582647,-0.15511464,0.019956695,-0.0640959,-0.029409794,0.002088964,0.026164584,0.0065460894,0.031676907,0.044498306,-0.080743365,0.007247373,-0.0039742743,0.044981938,0.053478573,-0.050373998,-0.04521073,0.0797982,0.031369817,0.067985535,-0.011951491,-0.0077101327,-0.0201169,-0.023385052,-2.3800865e-08,-0.030567368,0.1006725,-0.026058238,0.011438759,-0.033169508,-0.01333691,0.06580802,-0.0025553019,-0.030077633,-0.013190284,-0.03719191,-0.011465815,0.033812717,0.090280466,0.039585676,0.05194636,-0.058024045,0.11068664,-0.03317146,0.08172763,-0.086385034,0.0688684,-0.034622855,0.021966195,-0.03966767,-0.053553708,-0.01607498,0.07162634,0.09910427,-0.029381115,-0.018042114,-0.008196903,-0.043776073,0.02729332,-0.050760224,-0.036560845,-0.06545088,0.06584736,0.009890166,-0.023881314,-0.07165677,0.0017429338,-0.06875886,0.029494746,-0.016200935,-0.0065196706,-0.062754974,0.047824774,-0.08491871,-0.025858508,-0.022670373,-0.043215435,-0.022490779,0.09591454,0.136985,0.017314868,-0.0031296655,-0.030349763,-0.038979623,0.013757717,-0.030056199,-0.04687864,0.018083045,-0.027968157} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.267194+00 2026-01-30 02:01:09.480619+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1479 google ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB 1 t 1482 Go Karts Mar Menor unknown Good location great track....thou no pre safety talks like uk...\nJust get in kart and go good location great track....thou no pre safety talks like uk... just get in kart and go 4 2020-02-01 01:52:39.833374+00 en v5.1 A4.01 {O2.03} V+ I2 CR-N {} {"A4.01": "Good location great track", "E4.01": "....thou no pre safety talks like uk... Just get in kart and go"} {0.084984355,-0.012961651,-0.034169275,0.010024203,0.014690169,0.07806199,-0.0262915,-0.065452404,-0.07960845,-0.011460559,-0.016859738,0.017932134,-0.03031495,-0.006286404,-0.01376281,0.012486235,0.09330423,-0.11617346,-0.028322957,-0.06445386,-0.038973577,0.030748941,0.058960643,0.08218942,-0.13069765,0.01569993,0.029618675,0.114140235,0.01877864,-0.0022240416,-0.0515563,0.012160154,0.026392976,0.021164404,-0.020771464,-0.009956665,0.029483085,-0.058296837,-0.025563102,0.022872696,-0.007929936,-0.057666324,-0.0041693137,0.03755052,0.035075773,0.07370944,-0.021869749,-0.061903417,0.05038918,-0.035951775,0.048727963,-0.010363135,0.05054178,-0.071469136,-0.012679307,-0.01928507,-0.06352371,0.04426815,0.05770186,-0.04362161,0.037173666,-0.008693275,-0.079325065,-0.021620855,0.012164144,-0.06375812,-0.066304095,0.08345557,0.08479342,0.026562402,0.010855088,-0.029921908,0.029500691,-0.014030409,-0.0061705024,0.09592615,-0.038008492,-0.022546303,-0.092577696,-0.008503251,0.050503783,-0.00051053206,0.0440176,-0.039832693,0.033488367,-0.0897488,0.031092215,0.0017420222,0.0026874566,-0.02204714,0.022095649,0.026357131,-0.007338963,0.07108672,0.05958059,-0.0008854531,-0.012755977,0.018438868,0.011974223,0.021696815,0.08024806,0.057309516,-0.024442576,0.13378786,-0.04075802,-0.022667253,-0.08228677,0.1341806,0.058037095,-0.031578124,0.07313654,0.031114047,0.014833216,0.0084314495,-0.053011015,0.028342513,-0.054744706,0.04251638,0.0049489327,0.014613454,-0.019724006,-0.01925595,-0.017542925,0.030280758,0.0051086755,-0.021817166,0.023004036,-3.1672777e-33,-0.04669037,0.006249259,-0.027800767,-0.04848865,0.03418058,-0.08156533,-0.12765323,-0.09314558,-0.056572344,0.061223906,0.043910444,-0.049831152,-0.04756391,-0.12086247,0.04145919,-0.016222954,-0.011876858,-0.019202966,-0.12919448,0.03334069,-0.021874962,-0.078126244,-0.011895193,-0.03943408,0.043595616,0.040920883,0.072716095,-0.049652994,0.084840596,0.030604362,-0.08426622,0.004849797,-0.06969191,-0.0015103897,-0.03571676,0.02363432,-0.1364511,-0.047712203,-0.04716129,-0.002762022,0.03225846,-0.03193546,-0.020131085,0.010472237,0.048307758,0.045292407,-0.021454671,0.009650135,0.058007207,-0.014282268,-0.085341826,-0.057976704,-0.08954169,-0.03697044,-0.012005592,0.03362336,0.08479777,0.07624271,0.040864654,-0.026746765,0.0068428693,0.014611936,0.032738857,-0.07679761,-0.007930815,-0.054041333,-0.014755718,-0.06400643,-0.0020558108,0.010001036,-0.027606742,0.045699604,0.083099075,0.018023856,0.048104405,0.033401307,-0.0692279,0.035612267,-0.021176076,0.018645233,-0.062427823,0.057961516,-0.042481378,0.044801302,0.117526665,-0.024636438,-0.03766747,-0.10700006,-0.008932842,0.037749637,-0.08289565,0.030525768,-0.043822285,0.060651746,0.012779436,2.2308585e-33,0.08762263,0.061843436,0.113918215,0.05368451,-0.031166613,0.05569546,0.07119071,0.017555347,0.09254859,0.12235489,-0.03473105,-0.008722464,0.04948046,0.028036589,0.026280623,-0.048370913,0.11444052,0.032527506,0.030308833,-0.047143035,0.031053722,-0.048633665,-0.04198606,0.0016505569,-0.017819917,0.013681525,0.0006914492,-0.01065231,-0.062839344,-0.030207671,-0.0817717,0.009844676,-0.05659929,-0.017009491,-0.06484452,-0.008581426,0.033141065,0.018277127,-0.08457407,0.0068382323,-0.0006257018,0.066353455,-0.030781971,-0.015708221,-0.06443926,-0.013920985,0.087851405,0.10993416,0.013234133,0.011965669,0.07976609,0.07043784,-0.035790507,-0.015424994,0.002350726,-0.008566611,0.025608383,-0.040304217,-0.05206036,-0.05447395,-0.006384248,0.0046525155,-0.059591267,-0.026877396,0.033281524,0.027846696,-0.056454487,0.01338732,0.01971537,0.0414623,-0.10186221,0.0457204,-0.0131492,-0.030139755,0.015629686,-0.033168387,0.043514114,0.0061908895,0.01706143,0.026853498,0.042016372,-0.013581608,-0.019744344,0.060514145,0.10100774,0.083610564,-0.022932423,0.01613106,0.02870837,-0.018548762,0.041096903,0.1215234,-0.05683638,-0.024596287,-0.088466056,-2.1684036e-08,-0.027439836,0.053133316,-0.043517504,0.0056169597,0.0047466075,-0.064034775,0.009486484,0.0071041817,-0.052905623,0.036560092,-0.010491065,-0.031958986,-0.033669937,-0.039142318,-0.06980788,0.009173107,-0.049540773,0.092409186,-0.019331172,0.075860314,-0.009635551,0.04466619,0.0064379903,0.06162102,-0.0068174247,-0.03517444,0.049095437,0.03646854,0.008115835,-0.0074865967,-0.014170313,0.03262939,-0.009412084,0.06428888,-0.013595126,-0.08174263,-0.024228165,0.10433481,0.042191353,-0.018501705,-0.0116537055,-0.07127267,-0.020353027,0.03760888,-0.06703111,0.008665722,-0.009957938,-0.015886059,-0.068081155,-0.014368315,-0.040309068,-0.05580668,0.014917205,0.09507908,0.10785685,0.08334208,0.016232576,-0.08883346,-0.022419812,0.08029893,-0.057002373,-0.052564055,-0.007839073,0.045644995} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.277152+00 2026-01-30 02:01:09.484043+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1480 google ChZDSUhNMG9nS0VJQ0FnSURwNktTZkFnEAE 1 t 1483 Go Karts Mar Menor unknown Great time Great price for all the family highly recommend will go again great time great price for all the family highly recommend will go again 5 2024-01-31 01:52:39.833374+00 en v5.1 V1.01 {R4.03} V+ I3 CR-N {} {"V1.01": "Great time Great price for all the family highly recommend will go again"} {-0.086465225,0.08980356,0.029047018,0.0081488425,-0.06507361,0.028063323,-0.0151475975,0.006122033,-0.006725184,-0.0754111,0.074840076,0.027226325,0.016535118,-0.008780984,-0.041458957,0.024257457,-0.018464586,-0.047609605,0.00086580927,-0.08368699,-0.047477204,-0.044056606,0.019359915,0.03372823,-0.050171096,0.03670712,-0.033987667,0.0031266469,0.05177174,0.0033634405,-0.06493227,0.004429834,0.0058429493,0.041994296,0.046480063,0.015633928,0.034794662,-0.07025872,0.02816922,0.0068845805,0.0032785116,-0.010804899,0.013999724,-0.033343174,0.028974058,0.07664293,0.067952335,-0.030393338,0.12365889,0.13137935,0.004866738,-0.037078407,0.021832092,-0.041720256,-0.003289147,0.12637714,-0.022827351,-0.05340299,0.046047237,-0.08229445,0.0016649616,0.012464631,-0.088945255,0.03393485,-0.015813658,-0.051385254,-0.005503853,-0.028653335,0.011230914,-0.0332262,-0.054981712,0.022730498,0.07463527,-0.03923475,-0.05668785,0.078048214,0.04729333,-0.029201746,-0.08328861,-0.037080605,-0.025478028,-0.070129365,-0.03351006,-0.03185675,-0.0423424,-0.0609788,0.038901635,0.07749815,0.034189343,-0.024417667,0.039186515,0.04312258,-0.0041332655,-0.02334566,-0.06630146,0.027319165,-0.0053891083,0.006087472,-0.024852214,0.04879935,0.018174566,0.025864784,0.007188632,0.037290268,-0.03733443,-0.00949281,0.011240279,0.0777489,-0.027596278,-0.03650219,-0.07228333,0.019293811,0.0069555207,-0.01930274,-0.045539636,0.0546421,-0.0021718573,-0.029541738,0.06904826,-0.063074864,0.06758773,0.06086123,0.017264947,-0.023112457,-0.041318443,-0.021455523,0.102858156,-1.3398386e-33,-0.099561505,0.043416195,-0.034737326,-0.022027072,-0.020963892,0.07682399,0.011672611,-0.0027288029,-0.08183002,0.00017628197,-0.028291045,-0.04540859,-0.046386298,-0.04830305,-0.120537184,-0.0047875745,-0.06078278,0.06776728,0.04931608,0.044696063,-0.07628791,0.049137134,-0.032577693,0.09122398,-0.027201483,-0.0250658,0.063482694,-0.025263565,0.11348226,0.045250572,-0.058682937,0.005982068,-0.084514804,0.018861014,-0.00016174719,0.06910705,-0.023197591,-0.077333875,-0.03508633,0.035375714,0.016609482,0.01658053,0.002072544,0.015212224,-0.03301696,-0.04528633,-0.0046864827,0.039775077,0.012791445,-0.02538052,-0.13396333,-0.0052882447,-0.054261047,0.024820853,-0.05008036,-0.014159024,-0.018070692,-0.03538066,-0.029182874,0.014500137,0.108589,0.0035615673,-0.0025255375,-0.07507189,-0.09786934,-0.007648934,0.032156967,0.030129248,-0.051316846,0.06654969,0.05066134,0.0014022209,0.093714714,-0.056374464,0.070050344,0.06483612,0.034563705,0.0035376148,0.04685059,0.081406124,0.05176946,0.045302294,0.09385205,-0.009914383,0.036153264,-0.031952888,-0.006843698,-0.06700235,-0.038060196,0.012205879,-0.04324082,0.051927846,0.1227268,-0.015861131,0.0401912,-1.6653552e-33,0.10124743,0.10330903,0.029884474,0.01581768,0.04324177,-0.067669675,-0.06658662,0.09505718,0.08134201,0.026994621,-0.038204867,0.022493467,0.068156436,-0.0032756827,-0.09030843,-0.063430354,0.0860589,-0.039181016,0.072654374,-0.104083665,-0.048953373,0.10433674,-0.06089194,-0.03686083,-0.014437062,0.0012732395,-0.0032178245,0.07588302,-0.06655942,-0.03169802,-0.07009979,-0.0074489913,-0.0013156288,0.08535715,0.031988133,0.05899826,0.091086216,0.012028773,-0.06801566,0.00055520865,0.017180545,-0.012520283,-0.029432995,0.036557164,-0.0027105252,-0.004880958,-0.0025557436,-0.011982507,0.05639243,0.11029976,0.002222165,-0.0153141795,0.0022037765,-0.033798814,-0.053240106,-0.03402651,0.10375092,0.008800423,-0.0175507,-0.019850962,-0.10366541,0.051923905,-0.059935857,0.049725555,0.03924273,-0.028837968,0.04049536,-0.08397889,-0.07375083,0.020649055,-0.09041444,-0.037102997,-0.057164557,0.0119264955,-0.002149514,0.013337257,0.03640155,-0.0011040083,0.07502534,0.028323382,0.013490379,0.017878827,-0.0090504745,-0.04965254,-0.01902543,-0.047483776,0.024934748,0.06024133,-0.05273538,0.014443485,0.010580193,-0.031411648,0.058388866,-0.05099221,-0.012130124,-2.1603082e-08,0.08724661,0.06239869,-0.04665064,-0.009489033,0.07794279,-0.13943471,0.09142342,-0.001308118,-0.009318825,0.1005923,0.011911825,0.018011887,0.0006992387,-0.034924243,-0.028135126,-0.05168638,0.005581766,0.01719489,-0.006965128,-0.076715395,0.04238809,-0.008521515,0.017000057,0.1395301,0.0006427027,0.03406183,-0.031323172,0.034423806,0.002191648,0.036655497,-0.027873544,0.025867868,-0.05802944,-0.03778828,-0.019138075,-0.1201989,-0.037828784,0.010175075,0.014331691,-0.020134887,-0.004131737,-0.08543044,-0.11342742,-0.0032025026,0.02460316,-0.041000478,-0.015434709,0.008699359,-0.09049951,-0.026310006,-0.06593636,0.012956322,-0.067572,0.04742418,0.00074378506,0.0073209675,-0.021738732,0.020010011,-0.0042229453,0.051489357,0.043926064,-0.07073478,-0.046761688,0.030538227} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.734333+00 2026-01-30 02:01:09.488681+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1544 google ChZDSUhNMG9nS0VJQ0FnSURndElHU0NREAE 1 t 1547 Go Karts Mar Menor unknown Fun little go kart track, great for all ages fun little go kart track, great for all ages 5 2018-02-01 01:52:39.833374+00 en v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Fun little go kart track, great for all ages"} {-0.0008859841,0.040230524,0.002853512,0.008037414,-0.08214321,0.04256721,0.012988688,-0.075863555,-0.015019563,-0.0024233153,0.008319462,0.03625356,-0.031188147,0.036265306,-0.027474336,-0.022031702,0.038172588,0.046560656,0.078093156,-0.11293404,-0.060534906,0.01112364,0.0021077166,0.039856065,-0.12294067,0.059018884,-0.047851376,0.042574376,0.0029184083,-0.00038657963,-0.07062266,0.035616226,0.016967144,-0.019953445,-0.086141385,-0.05618822,0.045488387,-0.0045725857,-0.030528584,0.052000847,-0.027365804,-0.0029046151,0.0040526474,0.013922327,0.004562095,0.06837235,-0.02649279,-0.12560244,0.036085594,0.05578861,0.08355951,-0.02741427,0.025126077,-0.016854329,0.030227866,-0.009694691,-0.098369025,0.014222272,0.09473542,-0.0053964434,0.0027669142,-0.034623474,-0.023002697,-0.0016571699,-0.07611654,-0.092605285,-0.052110706,0.059531692,0.030299604,0.047062982,-0.022115767,-0.0044958913,0.05843365,0.031844523,0.002345277,0.034333833,-0.06712521,-0.030324254,-0.107718445,0.022335805,0.012873569,-0.04009719,0.0014026057,-0.09827546,-0.014541147,-0.063704446,0.037016466,0.04210964,-0.013915919,-0.058984313,-0.0359956,0.0684711,-0.020565262,-0.0031856333,0.054829936,-0.0570159,-0.0022613886,-0.044990297,-0.053098947,-0.013788559,0.047588408,0.03386571,0.080078825,0.06298576,-0.021125402,0.030873092,-0.0046671215,0.04066695,0.08950001,-0.008067882,0.036080766,0.01635138,0.00059851055,-0.018614646,-0.008996546,-0.073609285,-0.014897254,0.033601362,-0.050189607,0.0258889,0.040654305,0.007928062,-0.0229916,0.056727856,0.024830544,-0.07326822,0.043428563,-5.364482e-34,-0.024386188,0.032560457,-0.029883072,-0.035218485,0.08388211,-0.07629497,-0.026377257,-0.12641773,-0.11542001,0.09054041,0.028734498,0.0043428913,-0.064725704,-0.015864551,0.088778295,-0.022872983,-0.069319524,-0.001285009,-0.0029383546,0.028907282,-0.033102028,0.012202386,0.03779187,0.023871375,0.099803306,0.029958926,0.09684369,-0.073492564,0.08755481,-0.009726314,-0.002100946,-0.012467869,-0.08513434,0.013385769,-0.057634752,-0.055654716,-0.044913735,-0.005111796,-0.029096834,0.051317193,0.06974419,-0.05476115,0.002545152,0.06719482,-0.034976676,0.012820441,0.06298409,0.071058795,0.007269573,0.030999968,-0.083300136,-0.05807934,-0.061241955,-0.011286462,-0.020451104,0.019666122,0.061910436,0.053554587,-0.0586776,-0.06002099,0.08970408,0.018292412,0.014844504,-0.10081665,-0.008856324,0.034821186,0.010610196,-0.043938763,-0.02964065,0.020314686,0.0038847676,-0.00021313784,0.018430846,-0.080625616,0.037292082,0.02200961,-0.013601557,-0.026949177,-0.092676334,-0.040468134,-0.013916221,-0.018379362,-0.02427651,0.01652087,0.043391626,-0.06592054,-0.08436798,-0.10930653,-0.048561476,-0.03843948,-0.07770432,-0.012736296,0.0024011747,0.09278067,0.01847348,7.31539e-35,0.05486601,0.043328937,0.11260531,0.12119961,0.05892379,0.055854253,0.029283622,0.0054557924,0.1054566,0.08787038,-0.039006725,0.027242094,0.014969487,0.04523791,-0.005431362,0.016804127,0.06726127,0.1148953,0.061321907,-0.09923446,0.0019884042,0.012646964,-0.056543585,-0.011833718,0.039155398,0.04437665,0.035342302,-0.049503647,-0.029392114,0.02767439,-0.036305007,-0.04805067,0.040622495,-0.062466267,-0.024607701,0.03125566,0.039887946,0.027954068,-0.07525939,-0.034751225,-0.021113988,0.03809649,0.06467027,0.02595406,-0.042870253,0.004199986,0.034482844,0.14217488,0.009592546,0.0042709266,0.082561344,0.038736105,0.005872641,-0.03597138,-0.043660093,0.013614411,0.042664,-0.021168483,-0.020988531,-0.03506709,-0.039092317,0.0063214875,-0.05664884,0.014674363,0.004476194,0.019598085,-0.020320442,-0.040158473,-0.0785692,0.015346321,-0.077695735,0.059085317,-0.037976228,-0.024888175,-0.0047978703,-0.027631003,0.05925066,0.046562877,0.016206905,0.10345803,0.087959744,-0.0179244,-0.017353542,0.017904539,0.050632313,0.018749975,-0.04246956,0.032342352,-0.039426677,0.065568835,0.1003672,0.0932902,-0.0034726772,0.02588232,-0.08813072,-1.6042096e-08,0.015912795,0.07796562,-0.13302583,-0.030972777,0.03072344,-0.023890417,0.044404663,-0.022833902,-0.026729729,-0.018229868,0.03237119,-0.030441979,0.037378076,0.04837929,0.044094358,-0.016527038,-0.028842375,0.04580589,0.009234205,0.040973943,0.023250628,-0.0054286127,0.015144464,-0.017295081,-0.08692187,-0.07648942,0.05580002,0.06749183,0.045517378,-0.042914137,0.015829321,0.089678116,-0.027480839,0.02698382,-0.013010002,-0.08654162,-0.055435695,0.11158679,0.0027616676,-0.0011158546,-0.060669977,0.007520569,-0.021348737,-0.013874403,-0.10862553,0.023412917,-0.029738285,-0.09334858,-0.029967988,0.03760572,-0.06980276,-0.0433829,-0.0481785,0.07157141,0.13075192,0.08738224,0.010294205,-0.021620013,-0.03779636,0.014209398,-0.0050685364,-0.036503866,-0.0055367653,0.046550166} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.691208+00 2026-01-30 02:01:09.734832+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2218 google ChdDSUhNMG9nS0VJQ0FnSURJb0t2SGp3RRAB 1 t 2221 Go Karts Mar Menor unknown Una pista buena y buena atención personal y la pista está en un buen estado una pista buena y buena atención personal y la pista está en un buen estado 5 2019-02-01 01:52:39.833374+00 es v5.1 O2.03 {P3.01,O1.03} V+ I2 CR-N {} {"O2.03": "Una pista buena y buena atención personal y la pista está en un buen estado"} {0.0047299634,-0.0016594712,-0.00574277,-0.060125984,-0.07187383,0.021510733,0.08864419,-0.016538924,0.0233944,0.009750227,0.08642255,0.0036909336,-0.018451517,-0.04793789,0.05099642,-0.011984979,-0.037323684,-0.035858814,0.07019091,0.048699424,0.042969707,-0.0545661,-0.0841649,0.09833099,-0.09826889,0.02277663,0.035066545,-0.0394833,-0.05644053,-0.06937928,-0.002738681,0.03722179,0.11023951,-0.004675623,-0.030592661,-0.008295489,0.030714884,-0.013311588,-0.05697485,0.081373334,-0.08552985,-0.06603649,0.04385024,-0.034674484,0.029309016,-0.06928618,0.019772012,0.008903789,0.045241047,-0.005532374,-0.03758441,0.01035122,-0.025573948,0.054426044,0.05067775,0.020654086,-0.027683957,-0.04273337,0.03926976,0.07359117,-0.010939168,0.048121136,-0.037693884,-0.025925007,0.092505254,-0.010408426,-0.010508309,-0.02039178,-0.024117837,-0.007034393,0.088771716,-0.0727464,-0.07981732,0.03517669,-0.010753532,0.012458093,-0.03554676,-0.007189006,-0.066524744,0.023799142,-0.06539073,0.017403692,-0.078400694,0.023747267,-0.017969681,0.0302441,-0.020369126,0.021717612,0.031939022,0.017635362,-0.03418106,0.06728532,-0.0026361537,-0.010006935,-0.00058827933,-0.021399995,-0.0023475653,-0.055503044,0.010014935,0.041488145,0.12475285,0.037129413,0.015237759,-0.02532487,-0.04718719,0.021925097,0.07563874,0.0058222148,0.004956228,0.03320422,-0.042490475,-0.06692873,-0.080509156,-0.020227602,-0.050235517,0.04796438,-0.016202006,-0.051689856,-0.018926173,-0.08780942,0.00087942806,0.027611377,-0.03907867,0.018276421,-0.073439226,-0.070226654,0.009387355,3.9172743e-33,-0.017552404,-0.009370787,-0.012339409,0.04953444,-0.046989664,0.09923313,0.003742753,-0.09157445,-0.025104504,-0.03671897,0.01716615,0.14628062,-0.04682791,0.023245085,0.05341287,0.06359268,-0.035824593,0.040628336,0.029031003,0.030760953,-0.038982656,0.013019016,-0.055752046,0.02675523,0.015581772,0.0018705105,-0.017465552,-0.046711586,-0.060419776,0.037663896,-0.005914409,0.07109783,0.06422197,-0.05991736,0.010424713,-0.13363315,0.047796465,0.030288784,-0.024000928,0.020212699,0.011643046,-0.0024221109,0.0083013605,0.03693972,-0.022941768,0.050348498,0.061315417,0.07053375,-0.016628873,0.010277816,-0.068140656,-0.042192258,-0.04108649,0.0016220743,-0.061153293,-0.0066259485,-0.074931026,0.019041425,-0.045903575,-0.05803952,0.08861616,0.07523183,0.05511755,-0.06951474,-0.10359302,-0.051363513,0.045161095,0.087871246,0.12365476,0.07542508,-0.024487982,-0.024696913,-0.006908633,0.049767647,0.06312952,-0.023044845,-0.0043195775,0.079021424,-0.051057234,0.036610782,-0.02520833,0.015564572,0.052836496,0.06978479,0.029657478,0.12782148,0.103469945,0.0122825755,-0.079540975,0.11466953,-0.024645237,0.09032144,0.09201614,0.013498066,0.018661613,-6.601745e-33,-0.024002073,-0.05871789,0.01754171,-0.034521837,0.024969183,-0.018494848,0.019212304,-0.009711707,-0.043089684,-0.007597082,-0.084827036,-0.14336587,0.14039186,0.020199044,0.00969891,0.08120457,0.015193646,-0.09349999,-0.08467919,-0.04096816,-0.077485,0.03766908,0.078479856,0.05043103,-0.018821174,-0.033503808,-0.0440885,0.031844113,-0.0592147,-0.06582366,-0.0062289536,0.002866091,-0.0952145,0.022118747,-0.07283219,0.049937874,0.042227104,0.005771131,0.019415932,0.019949049,-0.019726062,0.012401143,-0.025507914,-0.048664935,-0.031178987,0.029679824,0.052644175,-0.14715005,-0.060792863,-0.00053053204,0.020517439,-0.03485591,0.017748784,0.00617726,0.008687945,-0.08148186,-0.022494832,-0.033665773,-0.029630294,0.010287758,0.0145882955,-0.05366559,-0.06879281,0.019623948,0.034416385,-0.030430228,0.012932509,-0.029478056,-0.04510672,0.031409394,0.05942102,-0.043216337,-0.038221594,0.032227177,-0.025311964,-0.032310553,-0.06553315,-0.029359853,-0.0043307105,-0.02849662,-0.004399866,-0.0033594505,0.0049447976,-0.09534983,-0.0078032906,-0.037610576,-0.013197058,0.037421834,-0.03599723,0.059033725,-0.020742044,0.019984903,-0.123765394,-0.09430762,-0.054085977,-2.5417364e-08,0.03881673,0.0035331326,0.017198397,0.024675274,0.022535708,-0.0648642,-0.0004268483,0.02098488,0.044771217,0.02878476,-0.025716573,-0.03999271,0.050690893,0.024198394,0.017861009,0.072342865,0.096694686,0.071683474,0.028990746,-0.055095352,0.016617764,-0.03837421,-0.04629421,-0.00837695,-0.092483,0.061424483,0.011504734,0.033635832,-0.04194731,0.015078148,-0.00611644,-0.013102481,-0.01460723,-0.11631716,-0.013713256,-0.020907652,0.02931968,-0.025340756,0.031854823,-0.06286574,0.06260099,0.039238855,-0.10456812,0.052575972,-0.013373784,-0.094429106,0.016768606,-0.046110794,0.0025547908,0.052251376,0.027857136,-0.03377013,0.11685046,-0.013338129,0.078779295,-0.037521977,0.065659106,0.05073292,0.0045265653,-0.0010964219,0.021099715,0.10587305,0.0035095168,-0.05920678} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.304381+00 2026-01-30 02:01:12.496489+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1575 google ChZDSUhNMG9nS0VJQ0FnSURyblozTGF3EAE 1 t 1578 Go Karts Mar Menor unknown Best on the coast 😃 best on the coast 😃 4 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-B {} {"V4.03": "Best on the coast 😃"} {-0.035710234,0.009094975,0.09945977,-0.019237397,0.0042763962,-0.014720855,0.0023169806,0.0023103673,-0.023925263,0.035175342,-0.072626695,-0.026805924,0.09547512,0.0709786,6.5153e-05,0.073288575,0.031997923,-0.07137114,0.04178483,-0.02066714,-0.09123297,0.06805193,-0.069416925,-0.019233739,-0.015479569,0.030090222,-0.027899439,0.017200477,-0.0012244564,-0.009126564,-0.053851806,0.039131694,-0.012559841,-0.009970551,-0.0010218482,0.018058289,-0.017013328,-0.108788185,-0.016097127,0.064020894,-0.05218506,0.06369772,0.02184662,0.03248451,-0.031235429,-0.019813146,-0.0034817231,-0.010861666,0.059143964,0.07063279,-0.045762997,-0.020686086,-0.026319537,-0.028019564,-0.020912312,0.08500951,-0.07179341,-0.065805525,0.04577468,-0.0354378,0.037805375,0.07940639,-0.025326222,-0.0009319697,0.09365124,-0.0061672805,-0.03890548,0.086483516,-0.04697908,-0.00777386,-0.056551293,0.044147156,0.019596478,0.023308977,0.02126724,-0.0016097297,0.0709954,-0.030093905,-0.00035078096,-0.013493649,-0.046271376,-0.11282721,0.022350164,0.06359918,0.014795469,-0.115312934,0.0051446967,-0.022883492,0.09895522,0.038817484,0.0032201402,0.010008983,-0.0572102,0.0040446506,-0.026296731,-0.045934908,-0.045102477,-0.04434088,-0.119699396,0.10015499,0.03413228,0.046399154,0.004586019,-0.053486966,0.03243324,0.012127497,0.05617918,0.043850224,0.022582313,-0.029581845,-0.036880597,0.06276556,-0.07926957,0.048957653,-0.030775301,0.027068546,0.05127405,0.01690915,-0.03383285,-0.120268464,-0.015500644,-0.0013984377,0.06272231,0.018391183,-0.021342661,-0.041822486,0.090219155,-6.1362407e-33,-0.037359074,-0.01368423,-0.0052959956,-0.03579401,0.026268467,0.02168379,-0.0057538077,-0.06064263,-0.08285552,-0.0342985,-0.0507657,0.0452584,-0.0761709,0.049414646,0.06685662,-0.021848723,-0.025240395,-0.11420127,-0.14589216,0.01749891,-0.011059786,0.00755342,0.02749614,-0.09532536,-0.017131481,-0.015049327,0.027434742,-0.011727606,-0.045044143,0.06482584,0.010363279,-0.053439654,0.010424176,0.033341777,0.060927033,0.002050836,-0.0077273017,-0.030616729,-0.014969518,0.07011601,0.080486946,0.013278023,0.014256991,0.074863784,-0.020927629,-0.0015891821,-0.020173984,0.024193292,0.11774817,-0.034513105,-0.062445737,-0.03299414,-0.057768244,0.022167506,0.008342986,0.020358223,0.04835884,-0.010008055,-0.052304994,-0.003974943,0.02772913,0.015392058,0.025774628,-0.06200356,0.0018113989,0.025746569,0.11220691,-0.0010439487,-0.0203852,-0.1039732,-0.038669407,-0.009775591,0.11692919,-0.04961833,0.06431701,0.0029681795,0.0280468,0.040720664,0.02814636,0.0077275177,-0.0081822295,0.03392538,-0.037944734,-0.058986653,0.03564051,0.024063809,0.011273721,-0.055506695,0.009528133,0.068359755,-0.12566823,-0.024989316,0.18999225,-0.060011465,-0.059260704,4.754659e-33,0.02007525,-0.019149648,0.09964194,0.04483182,-0.05603055,-0.06403908,0.073660396,0.014691543,-0.06868923,-0.012577178,-0.07807929,-0.0043771747,0.056666568,0.022423659,0.096962854,0.035961077,0.10702101,0.0310126,-0.0036802473,-0.111329354,0.00017154825,-0.07911071,-0.05976949,0.087803006,-0.029855454,0.038947348,0.0168296,0.048430134,-0.041793272,-0.1181652,-0.041554652,0.083848774,-0.01296635,-0.0038884433,-0.10006027,0.04466471,-0.041706704,-0.0026842768,-0.07518306,0.0954587,-0.016745105,-0.0755211,0.0021371858,0.030754456,-0.034972757,0.035625346,-0.0110230455,0.0056922813,-0.047963712,0.02676709,0.021219326,-0.03644707,-0.00034124288,0.047806658,0.05369164,0.018125113,0.019083476,0.04209234,-0.061808903,-0.014914928,-0.011286525,0.033945214,-0.094441816,0.09604999,0.069356225,0.018388307,0.01848031,-0.020720514,-0.07396011,-0.0020597838,-0.0656407,0.037290175,-0.10058264,0.0075105373,-0.027017504,0.022159683,-0.00918595,-0.009701536,-0.0061659305,0.08618982,-0.06245168,-0.02321563,-0.08193417,0.041334238,-0.029441813,0.0024793048,0.07506955,-0.095604636,0.056107055,-0.0052390206,-0.03958703,0.05218023,-0.113113396,-0.033307165,0.0026449205,-1.732536e-08,0.03271259,0.055255577,-0.030629903,0.03554399,-0.06858666,0.0032178636,-0.023437213,0.022954384,-0.0013085771,-0.007846934,0.033861987,0.015009074,-0.016314933,0.0188683,0.013232616,-0.035089884,0.04354844,0.05971153,-0.010745101,-0.048469145,-0.013474841,0.09801393,-0.05749771,0.028405378,-0.011630732,0.021531329,0.046705697,0.093751945,0.007540189,0.06903452,0.044567488,-0.019127471,-0.07938616,0.0050987606,-0.021023553,-0.070649765,-0.024293508,0.023783213,-0.012581518,0.07588362,-0.013688773,0.033749625,-0.041935734,0.024109935,-0.03984353,0.04384595,0.060147777,0.060080584,-0.022260528,-0.026966088,0.036987863,-0.016600855,-0.009161867,0.09052359,0.046943508,0.05645458,-0.004566705,-0.034393232,-0.029435256,0.10637609,0.050007135,0.0028511388,-0.011501521,0.06804607} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.78293+00 2026-01-30 02:01:09.868154+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1582 google ChdDSUhNMG9nS0VJQ0FnSURnbHBtVDdBRRAB 1 t 1585 Go Karts Mar Menor unknown Great family fun. great family fun. 5 2018-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great family fun."} {-0.0325803,0.03914733,0.008521586,-0.011766569,-0.13403872,0.048098337,0.05821306,-0.032282297,-0.0047819396,-0.00960094,0.08560071,0.048992693,0.012435205,0.010948436,-0.053347006,-0.021534089,0.044511758,-0.009020403,-0.030667225,-0.033581436,-0.03920944,-0.01542073,0.098834634,-0.009638423,-0.08924208,0.09284971,-0.03437159,-0.011157923,0.040352605,-0.011497025,-0.046205394,0.03099856,0.03838959,0.020387286,-0.023232555,0.008674007,0.06066273,-0.029501922,0.03638384,0.010052313,0.0007658682,0.015072974,0.10916932,-0.03278323,-0.026597248,0.10831341,0.017316125,-0.006792614,0.117722735,0.12352621,0.0892894,0.007176068,0.0172436,0.024604319,0.036792524,0.080821246,-0.027192358,-0.15228553,-0.06027863,-0.021319835,0.039997097,0.0813109,-0.05014858,0.062134035,-0.08045929,-0.025940457,-0.012200871,0.03077405,-0.0019629572,-0.0059333583,-0.08450629,0.03871263,0.062427722,0.043867532,-0.037273675,0.0763101,-0.014003608,0.012252106,-0.07698711,-0.008982952,0.031195845,-0.054027364,-0.0068583037,-0.03606526,-0.034083296,-0.0757295,0.02053699,-0.049678117,0.0030140835,-0.0092642605,-0.01554172,-0.02056853,0.046837214,-0.028596064,-0.09099147,-0.050618745,0.041000832,-0.0114018675,-0.0780251,0.09806847,-0.014199955,-0.008363627,-0.0064382353,0.0014156589,-0.0762188,0.0450165,-0.026266688,0.041455913,0.041894063,-0.036842726,-0.024359545,0.055192374,0.004618303,0.053280033,-0.020608945,0.04528186,0.030415554,0.028390106,-0.07565199,-0.09108098,0.104021974,0.05147,0.029618664,-0.021026045,0.03559197,-0.046504673,0.06600615,-6.517954e-33,-0.030644653,0.040843274,0.039014846,0.027425926,0.0165069,0.04311192,-0.066669516,-0.017019816,-0.08420979,0.0011566441,-0.0102838995,0.047627587,-0.025966832,-0.06357224,-0.036270306,-0.0070219105,-0.10698047,0.04130948,0.05040913,0.05286137,-0.05934913,0.029398397,-0.021550065,0.10062165,-0.022381496,0.0046891347,0.069690175,-0.05453617,0.056306925,0.018373273,-0.08788894,0.017734604,-0.017769024,0.043727078,0.010389794,-0.06754972,-0.019119196,-0.09614978,0.01685543,0.10168506,0.061208777,-0.03319106,0.001916621,0.052974574,-0.01770809,-0.013861909,0.04312753,0.016190827,-0.021884419,-0.025049603,-0.07528529,-0.06275002,-0.03407814,0.06223311,-0.012686528,0.03527689,0.029606253,-0.011121459,0.015384372,0.03530864,0.07812682,0.019381898,-0.026964214,-0.020621428,-0.047392715,0.004376992,0.045851957,0.07750018,0.020866547,-0.002150501,0.01494446,-0.013880921,0.03160441,-0.078448355,0.025144497,0.06879482,0.021822704,-0.03154699,-0.011084535,-0.0049770535,0.031820342,0.013409289,0.051430732,-0.07109364,0.026555428,-0.044341438,-0.030079018,-0.14171126,-0.11070559,0.03817155,-0.07466721,-0.0061674407,0.11352472,-0.010656937,-0.009019699,6.0478104e-33,0.0660574,0.02755921,-0.029584106,0.011662912,-0.018972797,-0.058999207,-0.0560172,-0.03917085,0.058031183,0.07053871,0.0051245485,0.0315227,0.06547501,0.010453982,-0.043598305,-0.021377167,0.073343776,0.07227143,0.025624583,-0.07221462,-0.0067557828,0.08356783,-0.08700153,0.0010441832,0.02543266,0.041466482,-0.081923604,0.038260397,-0.035543386,0.022457156,-0.029329045,0.028247543,0.03753995,-0.048385657,0.06353455,0.060665462,-0.007823387,0.01715366,-0.071652874,-0.12435867,0.008691896,0.04350678,-0.013328411,0.08239754,-0.0056538903,0.06761211,-0.016775567,-0.0100487275,-0.014482743,0.033159472,-0.05989284,-0.04260717,-0.04578645,-0.06891842,-0.0018259169,-0.089798555,0.08989925,0.014546003,-0.046269607,-0.05982714,-0.10530835,0.09215849,-0.026168553,0.08833864,0.10374088,-0.024008706,-0.06828753,-0.081025556,-0.05563446,0.047439475,-0.086457565,-0.008351658,-0.075852096,-0.019449713,0.0044421605,-0.007892858,-0.03861694,-0.011463708,0.06969603,0.093356036,-0.012614493,-0.002320347,-0.04740354,0.023434473,-0.038653404,-0.044027504,-0.01197716,0.035241697,-0.044538155,0.06379971,0.072060764,0.0130541185,-0.0064877872,-0.011263592,-0.00925065,-1.5735306e-08,0.052856833,0.012122436,-0.02111329,-0.06504705,0.0041057114,0.003662248,0.008885904,0.039699495,-0.03690545,0.055454284,0.03239538,-0.016007135,0.049662847,0.05473854,0.10444688,-0.008299874,0.030191282,0.0641283,-0.036199417,0.057017688,0.046583332,0.010725294,0.029912164,0.060540482,-0.08991881,0.023947025,0.0377988,-0.00011442269,0.054395165,0.0049480116,0.017345143,0.07497398,-0.08935672,0.07995163,-0.039183293,-0.0010273361,-0.039869763,-0.018415052,0.0890269,0.035127137,-0.08338374,0.039428167,-0.05020003,-0.08557159,-0.043471374,0.0043569217,0.03912655,0.007632787,-0.05356309,0.020365283,-0.034886174,0.018611105,-0.07505129,0.068958506,0.05269263,-0.038176388,-0.007551984,0.023783686,0.0016033275,0.083717875,0.056815054,0.089786455,-0.011978136,0.030725038} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.051046+00 2026-01-30 02:01:09.897525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1617 google Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB 1 t 1620 Go Karts Mar Menor unknown Un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo. No trataron de lujo y los karts son muy buenos. un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo. no trataron de lujo y los karts son muy buenos. 5 2025-11-01 01:52:39.833374+00 es v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo.", "O1.02": "los karts son muy buenos.", "P1.01": "No trataron de lujo"} {-0.00451995,-0.047546335,0.018075425,-0.056220315,-0.089384355,-0.027527839,0.026456209,0.0018996745,0.0020676393,0.012935328,0.08135848,-0.0011526309,-0.08593269,-0.031921882,0.064833745,-0.009165686,-0.0726945,0.002369894,0.055233255,-0.041810855,0.11011744,-0.06458551,-0.093739145,0.10478903,-0.063386045,-0.046510488,0.06616322,0.048971847,-0.023254203,-0.05162251,-0.055831715,0.04696297,0.054200415,0.006717128,-0.0032179619,-0.0101481555,0.045335665,-0.07270518,-0.027278172,-0.010754809,-0.07254959,0.0044196653,-0.0017850797,-0.04992074,-0.004267838,-0.10492357,-0.049658775,0.04807004,-0.021555737,0.026612327,-0.024840266,-0.06837095,-0.0074906223,0.04055435,-0.02376564,-0.0112075135,-0.08257851,0.03067129,0.09874117,0.05137587,0.021356413,0.04335849,-0.03346139,0.0056442143,-0.035997786,-0.038023133,0.02187506,-0.012161528,-0.06481115,0.099306226,0.023018189,-0.092141986,0.022257654,0.029812604,-0.050578557,-0.018751586,0.016608782,-0.04224645,-0.066381596,0.010457051,0.022326268,0.021981755,-0.00054201414,-0.078469396,-0.038302183,0.025080884,-0.04828733,0.057476763,0.031726632,0.047901858,-0.038074154,0.07243959,-0.07722274,-0.059743952,-0.026395459,0.039370023,0.04846545,-0.057764772,0.01408348,0.021196699,0.1259901,0.048471756,0.082311556,0.018958889,-0.10300144,0.027739028,0.0393341,-0.085450076,-0.021364056,0.019940471,-0.08566966,0.016327912,-0.03908869,-0.00024355741,-0.17972945,0.017392647,-0.036567897,-0.04048612,-0.04607801,-0.020974893,0.05077619,0.020329855,-0.013383443,0.0038615493,0.013366461,-0.12372224,0.048872575,9.954063e-33,-0.04883089,0.0028693022,0.0013091326,0.01365956,0.027497416,0.0058252644,-0.024595559,-0.012268783,-0.07007719,0.0067527033,-0.10491872,0.01685163,0.04385531,-0.03766101,0.08683558,0.04843909,-0.02157233,-0.024148142,0.06790858,0.023013199,-0.07478931,-0.031944223,-0.02728952,0.03518958,-0.022664117,0.015882399,-0.023097666,-0.020973109,-0.032722708,0.08493802,-0.03266533,0.070295945,0.0019306157,0.008103027,-0.04951966,-0.04314246,0.028366147,0.047570482,-0.011291729,-0.010229453,0.007068643,0.041386634,-0.01588824,0.018972462,-0.024245804,0.038832735,0.07559388,-0.01081624,0.051939394,0.021500798,-0.11366392,-0.075202584,-0.035121284,-0.0875578,0.027520888,0.034986068,-0.023378154,0.06620361,-0.024411071,-0.026410842,0.08743887,-0.013334999,0.015543055,-0.042254165,-0.09855926,0.0005118144,0.018865822,-0.019195294,0.10577516,0.017943341,-0.039245747,-0.048468202,-0.00867465,0.013181684,0.056055967,0.042814102,-0.029261407,0.033401348,-0.006511283,0.02555675,-0.06232043,-0.0068916604,0.019153774,0.028472036,0.10482577,0.055433095,0.017531758,0.103071116,-0.019420339,0.1154811,-0.040207077,0.0852235,0.016859474,-0.024320003,0.066909164,-1.12939e-32,0.02992379,0.050321974,0.035727374,0.06300153,-0.03819167,0.050808363,0.030090341,-0.027584648,-0.007541315,-0.009431887,-0.07680747,-0.10764458,0.052515935,-0.033379726,0.02475158,0.105710976,0.029121665,-0.08716985,-0.06758138,-0.018428538,0.041120276,0.009125384,0.041784164,0.009313176,-0.023574997,-0.05299759,-0.008297044,0.043253385,-0.13265789,-0.0049589486,0.0088451505,-0.07590502,-0.0060686446,0.045506373,-0.07538346,0.03211193,0.059958898,0.041432478,-0.013021671,0.05487663,0.05311568,0.06476018,0.0073059094,-0.017227534,-0.018561631,-0.040297877,-0.0036388605,-0.14806458,-0.042249594,-0.09452645,0.059077505,0.01181313,-0.027988859,-0.04438534,0.02017743,-0.0011335257,-0.043614533,-0.037131343,-0.09380882,-0.0072142626,0.054594196,-0.0025754238,-0.038118314,-0.019281747,0.103804745,-0.006278465,0.014191247,-0.005502212,0.044423267,0.06000371,0.046159416,-0.005542728,-0.1047745,0.03481666,-0.016598172,-0.017014375,-0.057882667,-0.05003595,0.013636854,-0.0038413806,0.028156087,-0.01378249,0.06032561,-0.008864395,0.022058945,0.010282346,-0.048055593,0.0427793,0.031964276,0.04125128,0.041185807,0.010560918,-0.0341494,-0.028278524,-0.018065574,-4.207892e-08,-0.004949193,-0.087462544,-0.07466847,0.003717938,-0.03409052,-0.032088786,-0.0059131854,0.033576254,0.057216648,0.0938857,-0.059204306,-0.033301484,0.01903065,0.10533248,-0.0032104806,0.054107893,0.068370834,0.10876072,-0.022625225,-0.04172818,0.0634615,-0.006811485,-0.060849756,0.07731029,0.032592133,0.017089112,-0.04466186,0.066513136,0.04961858,0.0026496623,-0.07587611,-0.003341794,-0.0577551,-0.08309727,-0.042968407,-0.0526754,-0.07336776,0.030273004,-0.01375385,0.01534909,0.08631034,0.0528178,-0.103760205,-0.01963354,-0.007441205,-0.038593847,-0.043637443,0.0029075071,-0.037829775,0.05080029,-0.0037989363,-0.03994994,0.0668757,0.037828814,0.04313497,-0.09427743,0.041258026,-0.006111344,0.0076764384,-0.023027202,0.057831094,0.08523301,0.009966482,-0.06375022} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:37.325015+00 2026-01-30 02:01:10.065276+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1630 google Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB 1 t 1633 Go Karts Mar Menor unknown Las instalaciones están estupendas. Fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un bar bastante grande y muy agradable. Me sorprendió muy favorablemente las instalaciones están estupendas. fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un bar bastante grande y muy agradable. me sorprendió muy favorablemente 5 2025-10-02 00:52:39.833374+00 es v5.1 E1.03 {} V+ I3 CR-N {} {"E1.02": "Fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un ", "E1.03": "Las instalaciones están estupendas.", "V4.03": "Me sorprendió muy favorablemente"} {0.03151266,0.02059651,0.013237097,-0.03634852,-0.05448172,0.014760437,0.017763034,0.02231379,-0.03637874,0.029122308,0.07224691,0.0036171956,-0.050953615,0.014294482,0.08089816,0.061920606,-0.013406775,-0.015914641,0.04467603,-0.04699896,0.011277886,-0.03551554,-0.072934166,0.05878496,-0.062086325,-0.017883161,-0.046431404,0.04438711,-0.02728602,0.0009897668,-0.0203648,0.114109784,0.108368464,-0.05063912,-0.018273655,-0.026297417,0.050774083,-0.050083876,-0.039460883,0.0461278,-0.06848187,0.018881157,-0.019547826,-0.05818242,-0.023400905,-0.12638691,-0.02652685,0.016850358,0.037497453,-0.0044329646,-0.0011680005,0.008184849,0.02203938,0.009981458,-0.04102803,0.0244898,-0.036176644,-0.054701325,0.1068126,0.07539643,0.011386915,0.09499538,-0.034360394,-0.015435826,0.0303697,-0.025898105,0.04958763,-0.0011142712,0.032352902,-0.0061470093,0.10344644,-0.032831196,-0.034275617,0.03046454,-0.03479557,0.003113555,0.04973923,0.028934,-0.051333316,-0.09339107,-0.07954866,0.0075323535,0.004252221,-0.07952476,-0.054824654,0.004312193,-0.052934755,0.016903697,0.034596693,0.043655008,-0.003964952,0.03671803,-0.0392424,0.032509495,0.053949453,0.00753251,0.023511333,-0.15243794,-0.0143351,-0.0032104447,0.09366524,-0.0139076905,0.075445674,0.03629883,-0.05915608,-0.021802833,0.015757047,-0.111684665,-0.018158415,0.037674103,-0.059522826,-0.055858754,0.03215315,0.040951204,-0.13053656,-0.004120037,0.013434421,-0.013415772,-0.021136506,-0.061137084,0.052594513,0.0314083,-0.029472606,0.012321563,-0.021431612,-0.040822178,0.02566161,1.0252675e-32,-0.03856671,-0.022274124,-0.01974434,0.09611279,0.043197844,6.488866e-05,-0.016515411,-0.040585905,-0.01717239,-0.1008233,-0.069982916,-0.022163158,-0.01841885,0.015566925,0.11641495,0.004598185,-0.017697593,0.03782413,0.059787616,0.07046432,-0.07914621,-0.030998595,0.018148975,0.0020393815,0.0079116095,0.026396146,0.07613725,-0.010340465,-0.0758345,0.04892491,0.0081332605,-0.02546476,0.036073085,-0.015643345,0.028848123,0.011120834,0.07813224,0.047708575,-0.019444011,-0.0024878604,0.017446337,0.006818747,0.01181234,0.06827328,0.05293043,0.03525333,0.05373123,0.0053742006,0.040955864,-0.0053413673,-0.07192906,-0.009553105,-0.09288005,-0.0922075,-0.040262427,0.07782893,-0.0805775,0.015568289,-0.004594933,-0.07949026,0.024050843,-0.059438135,0.004319353,-0.042107344,-0.03287366,-0.04646065,0.073851086,0.054646168,0.12695101,-0.047377657,-0.10934722,-0.08186603,-0.019054847,0.02882024,0.047936745,0.008659709,0.028074317,0.056769066,0.020399852,0.036701508,-0.07694349,0.047229547,-0.008268643,0.034740884,0.12900151,-0.008415878,0.017867053,0.06194976,-0.017780513,0.08232524,0.009829348,0.10286098,0.02983865,-0.00804558,0.08254984,-1.2421491e-32,-0.017985275,-0.036439914,0.0025182571,-0.023623068,-0.03496096,0.015246082,-0.064950965,-0.008242212,-0.037580162,-0.03164892,-0.13995704,-0.05204083,0.0914967,-0.12483292,-0.067284934,0.0703887,0.020624753,-0.0079573225,-0.062228978,-0.007671193,0.0553629,0.01651147,0.05569325,-0.023573464,-0.013006837,-0.06302034,-0.06448087,0.009228415,-0.102552265,0.012769382,0.024916988,-0.043274555,-0.02992111,0.026794463,-0.0031480733,0.020184778,0.085504286,0.03122407,-0.043399572,0.028863033,-0.00059089786,0.07785921,-0.037318837,-0.021573827,-0.019283457,0.07082948,0.05578291,-0.103572704,-0.041818503,0.0060374825,0.058973826,0.0010305875,-0.11712616,-0.035888497,0.05182421,-0.08690573,0.05639497,-0.009898896,-0.07969028,-0.003909259,-0.0014343673,0.028132899,0.02225527,-0.059091706,0.051363613,-0.019959332,0.030702394,-0.019304894,0.038983878,-0.008585477,0.06670697,0.0047632614,-0.057161413,-0.021641202,-0.047171514,-0.066778414,-0.040817007,-0.032102384,-0.025534615,-0.059651785,-0.0017576508,0.0021474154,0.038811665,-0.03426427,0.0058236844,-0.07195383,0.02914149,0.076395825,-0.035113595,0.0428322,0.051869716,0.014890334,-0.080771014,-0.07826771,0.0073675495,-4.6142272e-08,0.04356554,0.0013708423,-0.07615901,-0.0014734577,-0.017659886,-0.06926426,-0.085254766,0.09584485,0.036477584,-0.037698977,-0.025072228,0.011110269,-0.015583395,0.058042504,-0.037398517,-0.016739398,0.09537971,0.10100784,-0.044438474,-0.046540104,0.030269869,0.027574046,-0.007430097,0.042775318,-0.016792716,-0.051550962,-0.09699728,-0.004920522,0.04367179,0.008907468,0.009401328,-0.006143748,-0.03799811,-0.07441867,0.03280314,-0.07381582,-0.034277707,0.0026486034,0.044283923,-0.07869249,0.09237096,0.001315811,-0.06931485,0.011352664,-0.024235435,-0.10755953,-0.06448268,0.032527782,-0.038977854,0.05558679,-0.014573634,-0.056529332,0.08039353,0.0077098226,0.09493642,-0.013619636,-0.012667515,0.0043739574,0.024373978,0.04594684,0.028767878,0.09991305,0.017645458,-0.06904531} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:01:48.317348+00 2026-01-30 02:01:10.104797+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1983 google ChdDSUhNMG9nS0VJQ0FnSUNDeWRiMzdBRRAB 1 t 1986 Go Karts Mar Menor unknown Trato perfecto, mis niños disfrutaron un monton trato perfecto, mis niños disfrutaron un monton 4 2021-01-31 01:52:39.833374+00 es v5.1 P1.01 {V4.03} V+ I3 CR-N {} {"P1.01": "Trato perfecto, mis niños disfrutaron un monton"} {-0.042800236,0.09309875,0.041300133,0.04897498,-0.07727365,-0.0015002646,0.021912184,0.062432557,-0.013627321,0.039117202,0.044141926,-0.042880766,-0.09013346,-0.014647332,-0.053872548,-0.051925927,-0.011838401,0.10808604,0.06080746,-0.0193457,-0.015072411,-0.066516615,-0.03208737,0.11156886,-0.09937591,0.03682002,-0.02822962,0.075419664,0.009116149,0.010285522,-0.03801179,0.09113389,0.08312873,-0.03220457,-0.009769455,0.037127566,0.023260295,-0.021654502,0.026821634,0.03963908,-0.0514179,-0.011631049,-0.03424047,-0.025890185,-0.031250264,-0.06317929,-0.00677567,0.12560502,0.02085024,0.015526842,-0.09833961,-0.02646665,0.030222766,0.049344577,-0.05383877,0.06780112,-0.005373067,-0.04075819,0.045100976,-0.006252547,-0.026229413,0.04479365,-0.074212156,0.02729663,0.077592514,0.08079638,-0.0015780737,0.005367958,-0.016955154,0.09026533,0.10424355,-0.016601272,0.04098833,0.084296346,-0.05002427,0.044507608,-0.052214675,-0.016371103,-0.07136691,-0.019917868,-0.0011713827,-0.007225667,-0.01325458,-0.09968958,0.023185035,0.013802524,0.0074611763,-0.055075888,0.01077288,-0.015858425,-0.044716224,-0.006895505,-0.0113998065,0.033745848,-0.010916446,0.059721407,-0.0068321032,-0.023239337,0.004493233,0.031204058,0.09286327,0.013002909,0.055384524,0.049853813,-0.029455258,0.00048532276,0.07293381,-0.08242224,-0.008900528,0.061631646,-0.07086494,-0.0968631,0.042684548,-0.023149611,0.020715553,-0.0550346,0.050024606,-0.044690117,0.004059301,0.053808507,0.05643673,0.015122126,0.01536947,-0.029457783,-0.022574939,-0.05302029,0.015107348,3.4213604e-33,-0.005579772,-0.048632007,0.04371475,0.08269725,0.08175046,0.06262924,-0.07409046,-0.068906374,-0.012949298,-0.0020294564,-0.07948733,-0.042740084,-0.022372661,-0.016417455,0.024490332,0.037779782,0.103871524,0.0077730147,0.07172868,0.033190064,-0.06702074,0.033366743,0.033093013,-0.029488733,0.012019085,0.06648867,-0.047531642,-0.02515058,-0.055504903,0.042102605,0.0083232615,0.038831294,-0.019201111,0.0064184736,-0.034330096,-0.07986653,-0.0054471837,0.0046532946,0.0075863074,0.046372835,-0.033879858,-0.02300789,-0.0024177285,-0.010078712,0.085695215,0.018866338,0.055717967,0.017167706,0.021318618,0.07220068,-0.032168586,-0.05788986,-0.13718204,-0.12697701,0.033665616,0.08927377,-0.04704518,0.012953506,0.028555833,-0.03288282,0.08889674,0.013396647,-0.038814135,-0.06772055,-0.05240733,-0.03912111,0.06845145,0.0011160453,0.088292316,-0.07105468,-0.090630226,-0.058044218,-0.00317538,0.048571743,0.014672877,-0.007668437,0.05448372,-0.032300953,-0.0045198477,-0.009916054,-0.08729018,0.011571879,0.035787407,-0.0019026765,-0.012960126,0.045766577,0.017470906,0.041407518,-0.0027386898,0.05696341,0.0020711762,0.028903237,-0.03295676,-0.046488848,0.07721393,-3.7740506e-33,0.045018174,-0.027716413,-0.04008692,0.01444813,-0.09468913,-0.05182925,-0.10858285,-0.00170901,0.046115436,-0.009872778,0.00082271977,-0.18908143,0.046668753,-0.06737409,-0.02957542,0.094977655,0.07244497,-0.044888686,-0.04349439,-0.053506892,0.056028474,-0.01578315,-0.011227166,0.021296695,0.0024853463,-0.07258429,0.034430448,0.04852028,-0.030501602,0.02258926,0.009677877,-0.00073015736,-0.016133102,0.033947706,0.05135792,0.023785923,-0.0037399163,0.04843738,-0.015665425,-0.012725541,-0.031977475,-0.01947734,0.014646579,0.014127372,-0.0018749018,0.028590765,-0.014174714,-0.033150222,-0.019110888,-0.023336364,0.034588702,-0.03303677,-0.074920245,0.060576826,0.09208291,-0.01597357,-0.00511051,0.012185248,-0.0750105,-0.013841603,0.045566123,-0.012461589,-0.08783507,-0.045356955,0.06329407,-0.032555416,-0.108852364,0.024939932,0.052313853,0.07895211,0.0050008013,-0.06633997,-0.058374163,-0.036665052,-0.089914806,-0.009691698,-0.06677583,0.04151291,-0.009456827,0.007064831,-0.09566936,-0.0044920845,-0.06123941,0.023308134,-0.05047194,-0.027012251,0.025689438,-0.04998373,-0.017271943,0.062551335,0.080273755,0.023567766,-0.00066532235,-0.054517046,-0.03889408,-2.2836783e-08,0.041826762,0.013558955,-0.06401747,0.018650666,0.060969688,-0.090109356,-0.0133624,-0.007422596,0.016865404,0.06250352,-0.08439383,-0.0043251486,0.056730982,0.049597267,0.027461866,0.058632407,0.09481011,0.042013522,0.017344337,-0.039064255,0.09860645,-0.0069093313,-0.036466934,-0.031367276,-0.026579177,0.021136578,-0.01937609,-0.07000491,-0.06382067,0.017793717,0.035012115,-0.027270973,-0.0044101565,-0.08951978,-0.0034884454,0.056159344,-0.04285115,-0.05780186,-0.053804155,-0.08442026,0.100214764,0.05669035,0.07101885,-0.029981406,-0.008711541,-0.059580155,0.020276217,0.08630501,0.029518496,0.033901457,-0.06256919,-0.003619819,0.05021408,0.05953605,0.094334446,-0.009643715,0.089296944,0.019137528,-0.015426746,0.06251256,0.08766902,0.09883527,-0.030295087,-0.04460182} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.036978+00 2026-01-30 02:01:11.55779+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1985 google ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE 1 t 1988 Go Karts Mar Menor unknown Estupendo el trato, la pista está en perfectas condiciones con escapada de sobra. El kart de 400 funciona sobradamente para ir muy rápido. estupendo el trato, la pista está en perfectas condiciones con escapada de sobra. el kart de 400 funciona sobradamente para ir muy rápido. 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {O1.03} V+ I3 CR-N {} {"O1.02": "El kart de 400 funciona sobradamente para ir muy rápido.", "P1.01": "Estupendo el trato, la pista está en perfectas condiciones con escapada de sobra."} {-0.012320738,0.033111937,-0.08028331,-0.023523793,-0.08820342,-0.003983496,-0.04717822,0.09182034,-0.046780195,-0.015799664,0.02542805,0.035368394,0.0017568877,-0.03779617,-0.012906082,-0.053382624,0.01581573,0.030284056,-0.0246692,-0.047426883,0.05460854,-0.066065945,-0.048814807,0.036278926,-0.099238604,0.0248901,0.019650357,0.016659487,-0.010026996,-0.12946676,-0.06307568,0.030265234,0.076865286,0.0259753,-0.070245266,-0.0031038583,-0.031257235,-0.034749173,-0.018101415,0.007225345,-0.009617079,-0.018963601,-0.018927539,0.011740376,0.040984258,-0.038654543,-0.06641934,0.036052026,-0.008207936,-0.028149445,-0.06791599,0.0010914846,-0.006551832,0.0027278827,-0.023270668,-0.05841769,-0.04792744,0.026615296,0.08391948,0.049564622,-0.0073236115,0.047894377,-0.022771293,0.02858792,0.038980752,-0.060828384,0.006455493,-0.012278024,-0.031204358,0.023469767,0.074550346,-0.0201452,-0.036902297,0.014850622,-0.00460666,0.057364143,-0.022181673,-0.011073061,-0.09406933,0.05298493,0.06604885,-0.07542038,-0.056915313,-0.061821286,0.024711765,0.03295996,-0.017163347,0.039289284,0.034953054,-0.07680533,0.0077822716,0.079562195,-0.089515746,-0.043706164,0.020908942,0.07491883,0.02150494,-0.10654277,0.032209698,-0.013466402,0.0658179,-0.03089912,-0.0023659056,-0.021436052,-0.07092501,-0.08040505,0.06439775,0.020832296,-0.017099246,0.01636634,-0.05876261,-0.055113986,-0.0054961666,-0.040811058,-0.005943724,-0.014485861,-0.06623698,-0.045172397,0.010518749,-0.016599907,0.030619843,0.0061681676,0.028742108,-0.030528922,0.020569026,-0.036015734,0.057242237,3.5861827e-33,-0.073791735,0.03380201,-0.046384636,-0.049495995,-0.061871815,-0.068212494,-0.028750805,-0.09711625,-0.081080735,0.016556028,-0.04033504,0.119805776,-0.029552551,0.01805933,0.07341531,-0.056535058,0.0617919,0.023407407,0.02513418,0.036796715,-0.022260802,-0.057905488,0.021734957,0.04717306,0.08302426,0.14382985,0.08560668,-0.041233856,-0.05766296,0.043280434,0.0069057494,0.06670544,-0.05184322,0.0037312086,-0.0959332,-0.03558192,-0.05626265,0.016266126,-0.057374112,0.0027651142,0.008426975,-0.035464328,-0.018783405,0.05094025,-0.025228163,0.014661674,-0.013094852,0.029001042,0.08772609,0.0736384,-0.106342986,0.01370553,-0.05014265,0.030294385,0.031644966,0.00080282334,0.024913553,0.0020669757,-0.021394525,0.0061866683,-0.006305395,-0.008967029,0.020348087,-0.018696522,-0.046437822,-0.06431927,-0.029378677,0.008604568,0.07088176,0.10662346,-0.0055599534,-0.050556578,0.037230052,-0.0016197956,0.043221906,0.006352803,0.049220342,0.1209767,-0.067640126,0.052429184,-0.08618751,-0.01572709,0.017170638,0.052398007,0.041654766,0.067840084,0.058537334,0.050611995,-0.039072342,0.07620973,-0.03314334,0.057393696,-0.018544959,0.019573187,0.015667353,-5.1346798e-33,0.05744584,0.056079462,0.075211726,0.10872047,-0.023625169,-0.008119305,0.0035710556,-0.050830137,-0.009133994,0.033906344,-0.028357236,-0.09809156,0.07189134,0.0025269177,0.009265661,0.06210625,-0.0055809054,-0.07360701,-0.020630343,-0.04407103,-0.048329413,0.05038379,0.044116527,0.007224097,-0.0042534973,-0.047173142,-0.038428787,-0.0054307133,-0.16021425,-0.05624241,-0.03166946,-0.06592458,-0.02203945,0.07078401,-0.0688396,0.013119632,0.18231265,0.113346025,-0.00036354177,0.04644918,0.04441954,0.048465118,-0.028954303,-0.047169656,-0.014974728,-0.008720644,0.11984279,-0.09229201,0.03241649,-0.0458767,0.14720932,0.00088063575,0.031847708,0.05446648,0.063846804,0.015946658,-0.04073273,-0.031110441,-0.10472785,-0.012216333,0.030938454,-0.032411285,-0.0035795516,0.02551846,0.057343654,0.015247455,0.03744639,-0.049541075,-0.015679564,0.042538594,-0.010766191,-0.04974719,0.02872253,0.12013011,-0.00023140838,-0.017943652,-0.08680925,0.01490148,0.005128581,-0.008536862,-0.03531899,-0.008741203,-0.031359266,0.00015321732,0.03278498,-0.045857597,-0.042395025,-0.02973184,0.042038888,0.02081398,-0.016008435,0.097589314,-0.017610468,-0.04022672,-0.004306021,-3.7653184e-08,0.016824089,0.000990048,-0.098825336,0.052770834,0.067969434,-0.05521763,-0.00089914177,0.003855224,-0.044563722,-0.017986499,-0.04703563,-0.058057435,-1.6805428e-05,0.030481298,0.051749103,-0.021409722,0.060552422,0.09823766,0.014895704,-0.008820189,0.06778863,0.0016892113,0.027680106,-0.037681065,-0.04716845,0.07046105,-0.043310214,0.031220218,-0.011739367,0.021107022,-0.029428404,0.024951104,-0.0478293,-0.06323791,-0.024977803,0.001351658,-0.026501587,0.07775241,-0.06098634,0.04145842,0.056051634,-0.018793369,-0.12119625,0.003238071,-0.04370259,-0.011398685,-0.11684805,-0.090468384,0.036488336,0.005913052,-0.048430983,0.044399977,0.056941904,0.024867577,0.028910493,-0.016489783,0.106594704,-0.08077317,-0.04338134,-0.010663318,0.04371461,0.044845957,0.033045985,-0.03648152} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.060676+00 2026-01-30 02:01:11.564274+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1646 google ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB 1 t 1649 Go Karts Mar Menor unknown Es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo.\nSi es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa hora tomando algo con los colegas mientras veíamos a la gente correr y lo pasamos bien.\nEn cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante grande.\nTotalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia! es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo. si es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa hora tomando algo con los colegas mientras veíamos a la gente correr y lo pasamos bien. en cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante grande. totalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia! 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-B {} {"J1.01": "Si es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa h", "O1.02": "En cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante gra", "O1.05": "Es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo.", "V4.03": "Totalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia!"} {-0.015162619,0.0027570315,-0.02001619,-0.03339414,-0.13013756,-0.00042468027,0.041738924,0.03805583,-0.020924347,0.024125507,0.04217841,-0.018369084,-0.0059135784,0.007586505,0.028989984,0.016424486,0.0065290965,-0.0075264177,0.060469754,-0.0096566705,0.04627656,-0.026445502,-0.08557258,0.03051145,-0.048163947,-0.042015504,0.0065076533,-0.007616287,-0.05008034,-0.120298855,-0.048626788,0.023037879,0.07123644,-0.027795713,-0.06751998,0.0078049167,0.023987802,-0.07212307,-0.089589074,0.02452326,-0.05553279,-0.060272343,-0.01521835,0.026163828,0.0027613007,-0.057460215,0.008149649,0.037278518,0.027402189,-0.02852007,0.003347532,-0.011742811,0.0600794,0.046744175,-0.033462826,-0.019507933,-0.08307277,0.12297516,0.12237213,0.033318706,0.05204935,0.07447439,-0.033553224,-0.02253149,-0.020419851,-0.057362314,0.07709333,-0.012058054,-0.0376224,0.07058198,0.034328084,-0.046533648,-0.014065012,0.007436953,0.0047352826,0.018498335,0.0045120646,-0.06341459,-0.04373186,-0.032754637,0.043262634,-0.024100786,-0.023920769,-0.0627398,-0.018963061,-0.0006608582,-0.028295523,0.08772302,-0.0067552365,-0.06221399,0.014571652,0.09749845,-0.09498491,-0.0740266,0.002476978,0.013802065,-0.02089419,-0.0293204,0.007948367,-0.005925667,0.102652326,0.031528167,0.06993584,0.04187744,-0.036402754,0.08416652,-0.008353882,-0.042217717,-0.01157141,0.040172692,-0.054211568,0.03815917,-0.04922384,0.0057797157,-0.06641337,0.02487441,-0.048630483,-0.0137130255,0.0031121208,-0.040514044,-0.026809298,-0.0112575395,-0.0114575755,-0.036747333,0.036398917,-0.10016905,0.118476056,1.6030735e-32,-0.06575153,0.039269865,0.016185608,0.008662188,-0.009691095,-0.024505725,-0.0022379784,-0.008249817,-0.10209201,0.058819707,-0.02776436,0.0459733,0.021551602,0.018814389,0.09920929,-0.02286706,-0.0039005156,-0.08708267,0.053538047,0.020029265,-0.029967384,-0.05106515,-0.00021465187,0.0627839,0.0036000095,0.01197464,0.07384825,0.011185355,-0.06830483,0.024127726,-0.026251998,0.026705943,-0.012595435,-0.017934462,-0.11366147,-0.004400235,0.04358818,0.057876777,-0.0450666,-0.040265962,-0.017163798,0.048582554,-0.031105222,0.017795054,-0.054190915,-0.03741857,0.033080895,-0.019965934,0.036215547,0.00028684217,-0.15356725,-0.05715741,-0.04429482,-0.012639003,0.0362443,0.059316497,0.016956221,0.042102374,-0.047340862,-0.047741458,0.04263097,-0.010958907,0.004279949,-0.04967463,-0.11854318,-0.056736052,0.015786486,-0.039763026,0.075881176,0.02513967,-0.071475774,0.0009160085,-0.063199446,-0.0781086,0.05472753,0.047187872,-0.00451304,0.059870314,-0.044137582,0.060898103,-0.049658258,-0.056481086,0.02065837,0.078765705,0.09076236,0.02969146,0.0073779477,0.020470941,-0.049756844,0.14145932,-0.009489288,0.072656676,0.093764946,0.007347794,0.054013237,-1.7033332e-32,-0.006421537,0.09701769,0.11084355,0.07820393,0.0009513698,0.013659556,0.023796951,0.023052944,-0.025537672,-0.07219185,-0.040576898,-0.047850627,0.030617408,-0.032454643,-0.035474304,0.027411958,-0.025914963,-0.06401485,-0.018709514,-0.050378647,-0.0074228253,0.10985134,0.04302171,-0.030206857,-0.019564679,-0.069538206,-0.04333412,0.040232055,-0.120879464,0.039555375,0.029253183,-0.02440402,0.043290406,0.06159917,-0.07165811,-0.014800541,0.08902827,0.075652465,0.0036703506,0.09666493,0.026247343,0.11249545,-0.04094951,-0.05360461,-0.033400435,0.006234522,0.06967664,-0.13732684,-0.0076293075,-0.07206802,0.09311213,0.013519314,-0.08208901,-0.036752943,0.04962344,-0.013780421,-0.018995369,-0.0074580465,-0.052924328,-0.030437443,0.0216216,-0.015852826,0.026309807,-0.028808728,0.084623784,-0.033728343,-0.004156779,0.04430021,0.09994503,0.034732703,0.04212079,0.06063872,-0.02954936,0.047324874,0.002180158,-0.038709432,-0.064342365,0.0022267222,-0.00019989065,-0.026608031,0.017911809,0.006832214,-0.025043696,-0.07880204,0.020692628,-0.023534976,0.0040473933,0.017313745,0.048111346,0.03502129,-0.016461898,0.05689418,-0.077631384,-0.058941793,-0.0067899125,-6.1289775e-08,0.007846832,-0.049532477,-0.11205494,-0.034203608,0.021065982,-0.043862592,-0.029720053,0.013313465,-0.019600702,-0.0015528402,4.8374033e-05,-0.00036545665,-2.260832e-05,-0.013081553,0.04719347,0.060183946,0.07698885,0.1068891,-0.024571141,0.0062677385,0.11113936,-0.026643889,-0.055328194,0.036951326,0.052847587,-0.003901788,-0.03187087,0.024106765,0.0400408,-0.036669098,-0.03710004,-0.00728393,-0.019330245,-0.083694994,0.0018120591,-0.06076384,-0.04954707,0.05976671,0.010669199,0.011614793,0.055291608,-0.07049912,-0.1511955,0.039831117,-0.13389531,-0.058582738,-0.0031188212,-0.035613626,-0.034830965,0.03306724,-0.05876114,-0.040135484,0.054966215,-0.052787974,0.042957123,0.005423625,0.03659486,0.026381342,-0.0060323062,-0.057617884,0.0022226681,0.050775573,-0.04493689,-0.06387696} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:45.389124+00 2026-01-30 02:01:10.162943+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1629 google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB 1 t 1632 Go Karts Mar Menor unknown De los mejores karting que he probado, los coches funcionan bien, el trazado es bueno y esta en buenas condiciones, los empleados son simpáticos y están siempre atentos. Pero hay un pequeño problema que es el PRECIO del karting, si solo vas a pasar un rato y no vas a compartir es algo caro y apenas te dan tiempo, aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas personas o no están experimentadas o no tienen ni cuidado ni respeto, por lo demás todo perfecto. Recomendable 👌 de los mejores karting que he probado, los coches funcionan bien, el trazado es bueno y esta en buenas condiciones, los empleados son simpáticos y están siempre atentos. pero hay un pequeño problema que es el precio del karting, si solo vas a pasar un rato y no vas a compartir es algo caro y apenas te dan tiempo, aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas personas o no están experimentadas o no tienen ni cuidado ni respeto, por lo demás todo perfecto. recomendable 👌 4 2025-09-02 00:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"E4.01": "aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas person", "O1.01": "los coches funcionan bien, el trazado es bueno y esta en buenas condiciones", "O1.02": "De los mejores karting que he probado", "P1.01": "los empleados son simpáticos y están siempre atentos", "V1.01": "Pero hay un pequeño problema que es el PRECIO del karting, si solo vas a pasar un rato y no vas a co", "V4.03": "por lo demás todo perfecto. Recomendable 👌"} {0.046727464,2.8898912e-06,-0.013043083,-0.07320215,-0.08458602,0.01787129,0.064015456,-0.00067150913,-0.046330772,0.02102296,0.07822842,0.047062926,-0.06682508,0.035655707,0.05656402,0.0054213633,0.027597625,0.02358311,-0.0020924925,0.018729683,0.02652113,-0.08760056,-0.054713853,0.014448826,-0.13597828,-0.06513158,0.022017514,0.008110236,-0.016279869,-0.05941604,-0.0049921474,0.056537997,0.009357902,-0.026865935,-0.018995142,-0.031028617,-0.033696745,-0.06769602,-0.057920333,0.039391514,-0.04413967,-0.030495688,-0.008835352,-0.031015372,0.010504744,-0.026732406,0.053324122,0.07764997,0.009705534,-0.06187679,-0.0023985002,-0.027527148,0.03337755,-0.030920675,0.004274246,-0.01802888,-0.08506565,0.010900492,0.05283521,0.03429774,0.010372019,0.026093181,0.010243688,-0.022263294,-0.024922207,-0.09090438,-0.0036451088,0.037005953,-0.03657745,0.09383653,0.13189566,-0.027041053,-0.03116776,0.031709317,-0.0072719734,0.055148594,-0.03794238,0.029483575,-0.039541807,-0.032921232,0.01713316,-0.0033081265,-0.0029918507,-0.078849524,0.030430581,-0.02915654,0.005900651,0.056919113,0.01329429,0.026777053,-0.040131494,0.14665899,-0.07216367,-0.08403815,-0.044732247,0.07258368,0.035009485,-0.026198873,0.010339493,0.012120586,0.08703418,0.06113367,0.0786784,0.0828961,-0.06017512,0.058392122,0.014259964,-0.028449737,0.045854114,0.09316765,-0.0031500843,-0.07494221,0.01101712,-0.03951969,-0.08590333,-0.030578595,-0.060388077,-0.007617714,-0.012989379,-0.024292087,-0.019756855,-0.0072003785,0.019860473,-0.030781336,0.020637078,-0.045509428,0.13772866,1.5471053e-32,-0.054912396,-0.04945919,-0.03359159,0.024361145,-0.0065246974,-0.012122498,-0.014756899,-0.056010045,-0.09238623,-0.03815121,-0.0303211,0.036485616,0.003304876,-0.017129853,0.13406195,-0.020570794,-0.03632415,-0.03010248,0.06443018,0.033892065,0.0040163724,-0.04033441,-0.0051666847,0.032671347,-0.031083168,0.04639999,0.04333076,-0.0479999,-0.04328416,0.045326162,-0.027315011,0.046106376,-0.025991574,-0.012431427,-0.112879485,-0.006091391,0.032174513,0.02006165,-0.07361519,0.012209958,-0.024698233,-0.039857164,-0.06342896,0.026831904,-0.07166766,-0.040104557,0.054965008,-0.01596243,-0.06185727,0.018953549,-0.13671055,-0.016396096,0.06362467,-0.045400675,-0.021235134,0.0186375,-0.043543905,0.00027852537,-0.07686379,-0.061832283,0.032775603,0.025156155,-0.025027407,-0.047323365,-0.113204196,-0.056466497,0.041845944,0.0045796153,0.112169094,0.029530935,-0.039950248,-0.0034810572,-0.03721613,-0.035893876,0.07437955,-0.010682661,-0.025722336,0.058125515,-0.032627046,0.0071926354,-0.05940445,-0.026950268,-0.027367588,0.02657422,0.09858018,0.042555038,0.040084213,-0.016890785,-0.014770517,0.06882083,-0.011720222,0.080406696,0.06734724,0.046480007,0.09303874,-1.6245663e-32,-0.007450486,0.058715675,0.07662367,0.052737266,0.014319415,0.037558235,0.0041637155,-0.07994279,-0.009228209,-0.07947149,-0.11551486,-0.112146616,0.040258087,-0.0087364325,-0.027829355,0.0049199862,-0.010205841,-0.06008814,-0.018868178,-0.03210264,0.0071908967,0.04817552,0.015445841,-0.019523503,-0.008583314,-0.06586401,0.027003223,-0.035796728,-0.08341309,0.02961012,0.1347061,-0.021189667,0.0117275445,0.03394716,-0.0361668,0.035841797,0.013130866,0.094689466,-0.02181556,0.047129415,0.057832383,0.10157233,-0.036884133,0.002455195,-0.019832257,0.021237506,0.06896156,-0.12521653,-0.01610438,-0.009260882,0.05798019,-0.026390888,-0.10592017,-0.07436717,0.04244183,-0.03858298,0.033438995,-0.07081745,-0.1351521,-0.025289854,0.017075244,0.02932751,0.023299264,-0.008077855,0.05787434,-0.04742021,-0.08734468,0.03154263,0.02966686,0.006236996,-0.027509501,0.07682843,-0.104941264,0.046412826,0.06077798,-0.0026519245,-0.051249556,0.019349838,0.05915101,0.010112199,-0.0095117865,0.0064007905,-0.0032404135,-0.06521365,-0.010732558,-0.0029992936,-0.07011623,0.05887186,0.0066791484,0.048880238,0.08984984,0.06740265,-0.03278229,-0.014435842,-0.08994386,-5.979273e-08,-0.018837282,-0.02662465,-0.047633983,-0.0012156824,0.07279662,-0.01561905,0.018220231,0.005274068,0.010300724,0.02189627,0.0266839,-0.072542146,-0.0034254603,0.078680634,0.033889297,0.075852655,0.09457554,0.11752513,-0.056160223,-0.0037698706,0.059825595,-0.028337449,-0.09139987,0.023862023,-0.022044918,-0.03813726,-0.06792834,-0.0029616521,-0.022863925,0.0082821315,-0.04798307,-0.042284857,-0.01737234,-0.00742652,0.005023648,-0.062457837,-0.002575429,0.08017234,-0.0015548767,-0.019463893,0.046371233,-0.02961257,-0.07041589,0.02664074,-0.09314677,-0.06626139,-0.012913771,-0.022021418,-0.04092758,0.07334361,-0.08283208,-0.06793457,0.05276434,0.0075329044,0.072027564,-0.0031117313,0.00400963,0.030771842,-0.016445812,-0.04870771,0.0140705565,0.10421789,0.019863613,0.012086775} 0.9166667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:37.969163+00 2026-01-30 02:01:10.101248+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1550 google ChZDSUhNMG9nS0VJQ0FnSUQwcmJPZ1RREAE 1 t 1553 Go Karts Mar Menor unknown Very nice employees, nice race track! very nice employees, nice race track! 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {E1.03} V+ I2 CR-N {} {"P1.01": "Very nice employees, nice race track!"} {-0.036456425,0.080702685,0.038400136,0.0055471426,-0.10007028,0.018988892,-0.0100337425,-0.08458201,-0.09001323,-0.04289431,-0.020503415,0.004948248,-0.024334678,-0.021191975,-0.12072439,-0.013301948,0.056226313,-0.0067634177,0.0053849616,-0.057464756,-0.1098117,-0.07665263,0.025048459,0.06921301,-0.12181813,0.047204524,-0.059036452,0.09033336,-0.011254991,0.0013253331,-0.0853883,-0.015326653,0.057310842,0.058339525,-0.013968304,-0.009219728,0.015125361,-0.020819781,-0.062242907,0.02024685,-0.018009026,-0.009483137,0.00022347589,0.031244243,-0.0059933313,0.059102062,0.027875025,-0.0056584724,0.012656132,0.033882074,0.03490313,-0.048642505,0.08958848,-0.05784011,-0.049047627,0.06451992,-0.0063378117,-0.07726749,-0.008915922,-0.057882577,0.031138742,-0.050094586,-0.08107663,0.03554732,0.015144986,-0.05853942,-0.08108509,0.029051857,0.044875357,-0.051894646,0.05113891,0.008581245,0.029005643,0.0057898266,0.0153559055,0.04722007,-0.00081057654,0.018646475,-0.05632655,-0.083615854,0.020725053,-0.114233665,0.037306275,0.024968576,0.013662434,-0.05405175,0.05624535,-0.03209949,0.025732545,-0.014758296,-0.0017146351,0.13385405,-0.005682785,-0.0901666,-0.06210218,0.0028589303,-0.036743257,0.08533831,-0.021064173,0.041694768,0.04317122,0.051159296,0.020113435,0.020869868,-0.024429731,0.01298017,-0.061086714,0.07657457,-0.028978864,-0.05619439,0.074800596,0.024717025,-0.026092205,0.04937483,0.010547542,0.040628094,-0.0758382,0.03410009,-0.022009453,0.010716973,0.005236523,0.0076781674,-0.06496168,0.0032882167,-0.017721612,-0.03832887,0.07871759,-4.3664913e-33,0.009083215,0.04874918,0.045229133,-0.020683585,0.08031648,0.019703517,-0.09816312,-0.023013735,-0.07090564,0.021327917,-0.07431893,0.060463965,0.023412103,-0.013424356,-0.012055566,-0.049489364,-0.07656557,-0.028316792,-0.08869513,0.06497681,0.006754956,0.023095101,-0.079115115,0.05323138,0.054704763,0.011587522,0.0020704262,0.021782514,0.08714506,0.04974404,-0.04987937,0.0054967925,0.030026745,0.005829111,-0.037959345,-0.015879322,-0.06848988,-0.06752824,0.048647095,0.014926797,0.06964197,-0.023536783,0.051140357,0.0091180755,-0.08021913,0.09144785,0.037251662,0.0626146,0.13157965,0.06374547,-0.091065206,-0.009042756,0.006277781,0.033539455,0.030561954,-0.034648377,0.05140124,0.016278885,0.0022975197,-0.017340042,0.026768858,0.10924094,-0.07575586,-0.054922502,-0.022931984,-0.08213418,0.0045967465,0.002116753,0.097835295,0.03406281,0.009959458,0.031219669,0.015330147,-0.009571603,-0.018203206,0.07448265,-0.0029083926,0.002480855,0.008601435,0.00951572,-0.0006128914,-0.033919137,0.03711169,-0.061071184,0.04746474,0.032949362,0.00094403134,-0.027343806,0.016834024,0.049021296,-0.014240757,0.018853609,0.045077123,0.10132789,-0.059295997,2.7473634e-33,0.051514897,0.038760297,0.08039195,0.0018476747,0.020678766,0.0776321,-0.008070328,0.012869975,0.03584098,0.108320236,-0.011893198,0.019059742,0.031972703,0.044701155,-0.072382346,-0.04906874,0.11096675,0.013470859,-0.07293505,-0.09030889,-0.030626658,0.028137242,-0.013930727,0.014740479,-0.024499038,0.039638262,0.015671292,-0.03609514,-0.04557075,-0.02381067,-0.10755544,0.0033991463,-0.09594622,-0.042468764,0.052956183,0.004873656,-0.007829868,0.022733375,-0.0056620715,0.06357056,0.023780234,-0.004595006,0.03666581,0.054819968,-0.0029135346,0.011139192,-0.042143583,0.015719827,-0.15632786,-0.06882188,-0.04477119,-0.042945486,-0.0053695673,-0.007668976,0.0011155937,-0.05858087,0.05154851,-0.034060095,-0.035286788,-0.009613954,-0.09905956,0.027244227,0.04115682,0.10317726,0.029437741,-0.092787825,0.009912961,-0.028293107,-0.07447706,0.015487341,-0.017889284,0.031027485,-0.05174814,0.031434465,-0.07406189,-0.07725871,0.05598126,-0.03870204,-0.031394262,0.053883705,-0.032704644,-0.008977038,0.10610607,0.023251541,0.042990316,0.10149431,-0.019584596,-0.009319246,0.005622664,0.08151679,0.047111284,0.076749675,-0.06928867,0.03012584,-0.078924656,-1.58407e-08,0.039618254,0.06128012,-0.039456215,0.017097313,0.050550994,-0.06756838,0.030180825,0.0006508371,-0.04190887,0.051254474,0.042645976,-0.006463213,-0.0794454,0.0952762,0.05053378,0.036820784,0.0055411407,0.11803574,-0.042604856,-0.027049156,0.0063866023,0.06436273,0.024489317,0.088926904,-0.003675664,-0.021580895,0.020809332,0.014874161,0.06030359,-0.006910033,-0.018064132,0.09377912,-0.03894207,-0.0060264957,-0.0029678429,0.012348798,-0.052072115,0.03277684,0.060707603,-0.037623234,-0.09523549,-0.014986113,-0.029266678,0.028318722,0.04009249,-0.07065404,-0.025919728,0.06387081,-0.05673402,-0.0796602,-0.005829053,-0.0706769,-0.027017135,0.057409186,0.053207044,-0.050790194,-0.009690728,-0.08585325,-0.0066326563,0.012075282,0.00022111641,-0.014316255,-0.062220544,0.09261936} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.945438+00 2026-01-30 02:01:09.756335+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1551 google ChZDSUhNMG9nS0VJQ0FnSUNnck1MS0FnEAE 1 t 1554 Go Karts Mar Menor unknown Very good not busy got straight on very good not busy got straight on 4 2018-02-01 01:52:39.833374+00 en v5.1 J1.01 {} V+ I2 CR-N {} {"J1.01": "Very good not busy got straight on"} {-0.073286474,-0.062281657,0.0067152465,0.0031343147,-0.029299816,-0.002673428,0.074520715,-0.029247489,-0.0059522926,0.0132888295,-0.013133015,0.062750936,-0.12844753,0.011134407,0.0063117486,-0.01401512,0.09794316,-0.15101098,-0.0266538,-0.04367461,-0.060227375,-0.01676429,0.016445866,-0.049671486,-0.040388133,-0.05674976,-0.026643483,-0.0041458285,0.07775896,-0.014932901,-0.047986005,0.11911279,0.027438538,0.009647648,-0.07615812,0.064412996,0.012964044,-0.011385157,0.011204733,0.0049309363,0.06397319,-0.06634293,0.007015397,-0.040036198,-0.019948289,-0.029969618,0.028321534,-0.026138358,0.069348946,0.003723069,-0.054151908,-0.05974465,0.013759535,-0.022115609,0.023858242,0.06927704,-0.04891906,0.050241295,0.032325786,-0.06671616,0.008040245,-0.022371996,-0.023798745,-0.033969145,0.109387755,-0.058108363,-0.055264782,-0.03145281,0.05036287,0.008396279,0.026653813,0.0023483834,-0.06737353,-0.051219158,-0.030369889,-0.06885048,0.013279747,-0.025697118,0.019135213,-0.0022499922,-0.049198747,-0.12443786,-0.031806704,0.007189225,-0.0137563385,-0.08357935,0.026862264,0.025318729,0.007291092,0.0040027634,0.07970326,0.1255204,0.040893734,-0.015006361,0.04645024,0.054642875,0.09064391,0.016995111,-0.15016988,0.08894593,0.03987292,0.19919835,-0.026911471,-0.03766798,-0.04116122,0.04359408,0.036300514,0.1034449,-0.03946454,0.015759548,0.012791412,0.027966943,-0.012423138,0.022422777,0.025147088,0.06473219,-0.043064456,-0.0026158104,0.025098855,0.018689862,0.046857152,0.039551564,-0.0007257833,-0.003684499,-0.10316693,-0.04271149,0.08841679,-1.9656444e-33,0.014009661,-0.024339695,-0.0027073906,0.05345048,-0.0516297,0.0034495268,0.025763258,0.017169591,-0.013189353,0.046591304,-0.010969684,0.087734096,-0.033222742,0.0069242995,0.06467816,-0.046235718,0.056106016,-0.073035076,-0.04305181,0.0837974,0.05089255,-0.022839725,-0.044584136,-0.058009263,0.04363817,0.026924446,-0.04544748,-0.016770864,0.06978739,0.048792172,-0.018207645,0.0066070687,-0.05193204,0.029595172,0.028702155,0.010072631,-0.08171722,-0.04408198,0.029229252,0.031270087,-0.030038826,0.029974705,0.005281907,-0.05401183,-0.038298942,-0.001046005,-0.07585906,0.03213224,0.03237707,0.028337345,0.0034488414,-0.005106309,-0.07612818,0.017642306,-0.08372536,0.07578458,-0.022199098,0.024133248,-0.036632817,0.097848214,0.12532102,0.10964981,-0.040153056,-0.05359552,-0.10699149,0.036337554,-0.031697042,-0.03517232,0.04442739,-0.044367246,-0.037525218,-0.022497775,0.07143234,-0.0748055,0.06310865,0.05450022,-0.069821954,-0.08284829,0.012329773,0.13591236,0.088216566,-0.008661209,0.005668429,-0.11366508,-0.013317694,0.022635972,-0.056107614,-0.08823563,-0.019228477,0.076965615,-0.05795719,0.07045791,0.0322685,-0.07085705,0.015216998,3.865047e-34,0.026495574,-0.0030121498,-0.04637497,0.03270956,0.008443967,0.045974772,-0.06773401,0.078101784,0.0077571752,0.06974719,0.010568109,-0.0062470194,0.011486561,0.03434012,0.06366395,-0.002431017,0.1261364,0.05315779,0.011576023,0.023030313,0.00081624486,0.029524261,-0.028005315,0.021331603,-0.060941912,0.043311886,-0.08123166,0.010011229,-0.1184486,-0.018061215,-0.005455806,-0.042310935,-0.07946378,0.051675037,-0.023249894,0.037506502,0.0045744693,0.0894499,-0.008873618,0.0017841966,0.022671463,-0.03848925,-0.085792966,0.06657463,-0.01496701,-0.0039878716,0.015426534,0.005358455,-0.04033277,0.09813495,0.037757777,0.027685601,-0.023484353,0.026625935,-0.00900481,-0.060441773,-0.057454173,-0.027542658,0.0035700437,-0.05928759,-0.048662294,0.010961792,0.010757111,-0.058705937,0.08981695,-0.08085564,0.007278216,-0.10640784,0.003946695,-0.04600116,-0.055664085,-0.021159539,-0.0011141616,0.022420945,0.038390324,0.070868775,-0.042561933,-0.0761645,0.023264976,0.030877797,-0.015088343,0.009569518,-0.07187904,-0.10397221,-0.04375825,0.013713351,0.09784947,-0.018282084,0.024969008,0.052428,0.067095466,-0.012969641,0.047081187,-0.040484693,0.052702133,-1.7103494e-08,0.043609507,0.008270709,0.065822735,-0.030240552,-0.019460186,-0.025173135,-0.004765297,0.0064204014,-0.021749808,0.032537863,0.055407584,0.03214342,-0.08840887,0.03065,0.021207562,-0.02868966,0.0050518694,0.0626062,-0.03611718,-0.017768307,0.065679565,0.0116800675,-0.00042613337,0.033401206,0.0103088,0.020745112,0.0041514877,-0.05129139,-0.0063933474,-0.0034900936,0.06522765,0.037828267,-0.024119671,-0.025734652,-0.029889178,-0.02558747,0.032116145,-0.035786625,0.0006422836,-0.028518083,0.024780009,-0.0014759538,0.06257859,0.062226146,0.04655697,-0.02445713,-0.029234178,-0.011354907,-0.042948734,-0.11045135,0.020892857,-0.007136183,-0.03270289,0.03168653,0.021422517,0.009603267,-0.0020147813,-0.009900626,-0.02719257,0.007327071,-0.0008718009,-0.014750559,-0.12968126,0.048703223} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:17.985271+00 2026-01-30 02:01:09.76232+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1988 google ChdDSUhNMG9nS0VJQ0FnSURhNXNDNTNBRRAB 1 t 1991 Go Karts Mar Menor unknown Excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, respecto al circuito es bastante amplio con curvas rapidas y muy cuidado excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, respecto al circuito es bastante amplio con curvas rapidas y muy cuidado 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.03,P3.01,P1.01,E1.03} V+ I3 CR-N {} {"V4.03": "Excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, "} {-0.0377987,-0.008446374,0.012916603,-0.032074362,-0.10212786,-0.00945684,0.04972772,0.065650836,0.009831567,0.0025086156,0.06528083,0.026486281,0.019574171,0.0081226835,0.053397212,0.013977262,0.016269058,0.035451494,0.009409338,-0.039428253,0.050565384,-0.04947216,-0.045089092,0.04039961,-0.06023528,-0.023969691,-0.0031915235,0.043876186,-0.02220222,-0.13504735,-0.11721773,0.04782403,0.07631052,-0.047455937,-0.1157573,0.007857465,-0.044268083,-0.011203436,-0.04940287,0.036837574,-0.038215254,-0.072011374,0.016327314,-0.052630574,0.0005800786,-0.07409981,-0.009426007,-0.023574477,-0.013815821,-0.05372269,-0.02009547,-0.07842363,0.064662054,0.019212492,0.024418266,-0.04391151,-0.081805244,0.10907953,0.12644729,0.06310212,0.059638448,0.0025528981,-0.008483135,0.028293232,0.0056953644,-0.027451683,0.022820475,0.03237719,-0.043355867,0.016568081,0.049751505,-0.10540052,0.0126647735,0.015913127,0.06599107,0.046401408,-0.0093324995,-0.053985946,-0.07081351,-0.0057928725,0.036306243,0.0018323619,-0.07066907,-0.06622676,0.005174205,-0.030353554,0.011014109,0.008955127,-0.061636806,-0.02935564,0.022611052,0.049048055,-0.024508853,-0.044482548,0.02812021,-0.015064291,-0.01599259,-0.057819966,0.03501652,0.017220605,0.11535659,0.062331423,0.036578618,0.04118448,-0.075913966,-0.0039052994,-0.009572431,0.0153243905,-0.007833301,0.020930914,-0.041390076,0.029968318,-0.11343304,-0.035211924,-0.001202312,-0.017722482,-0.0369765,0.045606922,9.6657226e-05,-0.013031772,-0.04344926,-0.054580886,-0.04337673,-0.0053035715,0.037491474,-0.026939388,0.06605707,7.601843e-33,-0.12815322,0.002035365,-0.0444151,0.0018372138,-0.005365649,-0.10335038,-0.068410106,-0.044341154,-0.014108312,0.008291713,0.036863886,0.14756869,0.023544405,0.049700458,0.09641483,-0.012448639,-0.031118883,-0.08767772,0.06415445,0.008638877,0.009952434,-0.09906968,-0.020807173,0.09123319,0.008142439,0.016698148,0.087724105,0.03886171,-0.12301879,0.014382086,0.009273257,0.036388326,0.006286621,-0.05078375,-0.09201258,0.037090585,0.0382756,0.03237086,-0.0005930286,-0.02745162,-0.04027585,-0.0072759716,-0.037606932,0.045829155,-0.032566857,0.0052157757,0.00019723008,0.012130836,0.05090637,0.070313014,-0.13282858,-0.036318038,-0.04550049,0.045787662,0.03046017,0.12624443,0.019121295,-0.01865436,-0.033869322,-0.022021206,-0.013001666,0.026465783,-0.01597013,-0.07357126,-0.09276996,0.003205572,0.056123707,-0.0542288,0.05366732,-0.029365607,-0.08721246,0.014388671,-0.036488637,-0.034368448,0.05266774,0.021190217,-0.03720962,0.0602143,-0.012887622,0.03214735,-0.046233837,-0.013744818,0.020019189,0.031142836,0.06630299,0.0405779,0.011681185,-0.0009059619,0.020552915,0.15910508,-0.067023516,0.11501336,-0.020479994,0.039947145,0.01029836,-9.392758e-33,0.030496571,0.06962324,0.07629094,0.11137683,0.03889919,0.014367115,0.03128142,-0.0031625032,-0.019315604,0.015583027,-0.025248362,-0.033216927,0.011725459,-0.012613354,0.025402863,0.008211277,-0.0037365225,-0.048610058,-0.026986104,-0.049711574,0.030344602,0.10473039,0.016697854,-0.05021541,-0.05549631,-0.033010036,-0.11470192,0.0061180633,-0.09756515,0.011243434,0.034519434,-0.014536267,-9.99878e-05,0.05687452,-0.044752494,-0.007449613,0.10568337,0.08854139,-0.024713408,0.035157274,0.012967937,0.100154266,0.00238238,-0.035722904,-0.0628464,-0.023316633,0.08214225,-0.13874482,-0.010488551,-0.03758189,0.09200522,0.019632256,-0.03171117,-0.06493861,-0.005275049,-0.01009746,0.0020595985,-0.022123357,-0.09257091,-0.011166104,0.06893205,-0.024870744,-0.017462347,-0.05665779,0.06730526,-0.016811578,0.0124063995,0.025508603,0.105515756,-0.0031819744,0.041806176,0.006433354,-0.022385294,0.007111525,-0.048043065,-0.09767029,-0.10590414,0.020724112,-0.008106994,-0.06734826,0.04031846,-0.00034953083,-0.04118493,-0.051336445,-0.009718174,0.008829797,-0.0037895457,0.026831863,0.046295334,-0.024164049,-0.015271362,0.065217964,-0.06450305,-0.03198792,-0.035419896,-4.2859817e-08,0.007874688,0.008719219,-0.058556046,0.037607092,-0.021080619,-0.08727676,-0.0007092956,0.024004415,-0.04990369,0.023968538,-0.0027276105,-0.042875882,-0.0014931115,0.05898505,0.03677274,0.01670473,0.061098345,0.13231044,-0.010812523,0.037269223,0.06547047,0.020362938,-0.04108878,0.07630336,0.045490876,0.006089265,0.0054877284,0.044114728,-0.0030373922,-0.020274973,-0.07168409,0.04048933,-0.039328568,-0.057372563,-0.00942765,-0.001701412,-0.040087614,-0.0052171694,0.01399885,0.056697536,-0.0028598413,-0.096466534,-0.09877659,0.0569896,-0.07820786,-0.053018644,-0.04534305,-0.02376711,-0.043660462,0.039685156,-0.028663514,-0.047469202,0.019400295,0.010403763,0.030658249,-0.016903507,0.06161622,0.006796707,-0.051734723,-0.044335365,-0.0072669513,0.029203657,0.010965988,-0.11060959} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.099231+00 2026-01-30 02:01:11.572142+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1610 google Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB 1 t 1613 Go Karts Mar Menor unknown Si te gustan los karts, esta pista es obligatoria! La mejor pista de karts, servicio, atención, coches, todo!\nTiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adultos. Varios tipos de coches. Pista muy divertida.\nCada año repito, y ya son unos cuantos.\nDiversión asegurada! si te gustan los karts, esta pista es obligatoria! la mejor pista de karts, servicio, atención, coches, todo! tiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adultos. varios tipos de coches. pista muy divertida. cada año repito, y ya son unos cuantos. diversión asegurada! 5 2025-09-02 00:52:39.833374+00 es v5.1 V4.01 {O1.02,P1.01} V+ I3 CR-B {} {"O3.02": "Tiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adul", "R4.03": "Cada año repito, y ya son unos cuantos. Diversión asegurada!", "V4.01": "Si te gustan los karts, esta pista es obligatoria! La mejor pista de karts, servicio, atención, coch"} {-0.034476157,0.05031083,0.04990117,-0.0393464,-0.08660059,0.0035586695,0.044348657,0.010658214,0.0015989307,0.028312089,0.07453357,-0.03739847,-0.05760035,0.027445152,-0.0031591807,-0.04108096,-0.028829735,0.014738349,0.05993997,0.018444909,0.03976204,-0.030977119,-0.11174462,0.1110717,-0.10754381,0.01118936,0.041710045,-0.03777664,-0.03301076,-0.074471034,-0.054435987,0.0419274,-0.0030717258,-0.016777875,-0.030761741,-0.007493065,-0.004477352,-0.06064786,-0.035110027,0.08608874,-0.034899555,0.028544266,-0.036169015,-0.0075458186,0.06686261,-0.011040445,-0.07174638,-0.02232442,0.006549167,0.02631507,-0.07787633,-0.021328587,-0.020501254,0.0151672,-0.037817292,-0.083303794,-0.11834273,0.0031557702,0.08904024,0.05478552,-0.003945027,0.025715835,-0.039600264,0.0032426165,0.025729714,-0.07989718,0.019704936,0.031482752,-0.033850815,0.0779918,0.09059182,-0.009086361,-0.01696888,-0.0063006203,-0.0031181055,0.03068234,-0.014431512,-0.030992066,-0.11437773,-0.039457045,-0.006882569,-0.042320278,-0.03796331,-0.062267832,-0.03386271,0.0241851,-0.07232921,0.027831666,0.05907443,-0.009918786,-0.038166154,0.0381016,0.007041969,-0.018618194,0.011334762,0.01847619,-0.021858303,-0.1161607,0.0062583303,-0.021544725,0.11916041,0.041467965,0.01950054,-0.024491182,-0.06470633,0.011352073,0.037034333,-0.057343587,-0.006561841,0.06591553,-0.025333302,0.028840378,-0.020814212,-0.06764353,-0.14296994,0.06512899,-0.010993763,-0.07371159,0.02574326,-0.003216048,-0.018881386,0.034607712,-0.07667655,0.031362098,-0.0060035237,-0.061347295,0.03267711,8.582424e-33,-0.09213159,-0.026130082,-0.013070617,0.052441042,-0.019397598,-0.03623337,0.00927096,-0.18296476,-0.0906574,-0.07815522,-0.021697441,0.071999766,-0.04281603,-0.0015896694,0.02398904,0.019817695,0.013592237,0.0049568275,0.0535722,0.067072004,-0.020314919,-0.002524051,-0.019746045,0.045341857,-0.01924643,0.035597686,-0.00048114258,-0.0379826,-0.09440399,0.025251878,-0.0076146936,0.014973396,6.364631e-05,0.007799957,-0.045883905,-0.008675999,0.0025681918,0.023285218,-0.04943994,-0.020500265,0.007992308,-0.031984806,-0.007854333,0.115531005,-0.049037587,-0.041241925,0.03507291,-0.043928772,0.04394576,-0.005441717,-0.06353488,-0.06574978,-0.030233309,-0.04439893,-0.02533067,0.015787635,-0.06903229,-0.011695045,-0.051849615,-0.042829648,0.049654577,-0.03043219,0.0037912522,-0.062437117,-0.018314674,-0.038691673,0.021553254,0.07219649,0.1286666,0.03056308,-0.06868892,-0.024608972,-0.024591302,0.031170286,0.05351377,0.026674157,0.019853633,0.0708506,-0.0300535,0.08773013,0.0089611495,-0.046664413,0.022893934,0.07484062,0.09919674,0.04281721,0.080483764,0.01686628,-0.031055056,0.10329869,-0.034898147,0.08677621,0.06328502,0.011773581,0.06084106,-1.0390981e-32,0.045893896,0.031670164,0.06922024,0.0366956,0.0004403489,-0.0047129644,-0.01941368,-0.09852172,0.02979021,-0.02552856,-0.16818939,-0.07851007,0.0751354,-0.056794018,-0.037759565,0.10732152,0.040589653,0.023976434,-0.03150133,-0.04333293,-0.11276735,0.04062714,0.023842415,0.026513299,-0.036647744,-0.0017420873,-0.008740659,-0.026988005,-0.07681684,0.010852663,-0.0049082255,-0.099296324,0.0015059926,0.04032659,-0.0073351385,0.0606202,0.032451082,0.05233588,-0.013293762,0.09463448,-0.021535467,0.0322395,0.018492442,-0.02045239,-0.035579503,0.027287075,0.08966402,-0.08111741,-0.06772325,-0.017925244,0.06818991,0.040761575,-0.029593064,-0.011575414,0.100164115,-0.013565702,-0.021035101,0.010302243,-0.059213515,-0.0036334735,0.058475964,-0.024032157,-0.074999176,-0.0397841,0.0785819,-0.052114964,-0.018260257,-0.13677585,-0.026336161,0.04009978,0.025694322,0.031842012,-0.011983498,0.0030096665,0.010261802,-0.045680225,-0.05346817,0.07545863,-0.018989874,0.007327615,-0.0022450488,-0.029127829,0.031701103,-0.0014938974,0.019858843,-0.019880146,-0.03169356,-0.0006964226,-0.0021663206,0.024219343,0.027202675,0.031958293,0.027788248,-0.0063851303,-0.010532684,-4.630579e-08,0.07776539,0.013502142,-0.112950735,0.044180717,-0.021287391,-0.03510957,-0.034775447,0.027070826,-0.010755473,0.068692006,-0.029891033,0.02112889,0.08105641,0.06705435,0.0039281086,0.039741103,0.08207781,0.15019284,0.02337765,0.009041835,0.022886844,0.012726855,-0.036981236,0.0024613964,-0.0641787,0.03373004,0.01956291,0.052788902,0.013515256,-0.020523757,0.0023239008,-0.060426768,-0.032797083,-0.08742747,-0.030006511,-0.048983194,0.011593052,0.046140213,0.036058478,0.0560628,0.04089036,0.045126267,-0.0854163,0.03632875,-0.0977503,-0.031054603,-0.014196108,0.018333364,-0.02931743,0.052008353,-0.05336198,-0.008390427,0.083234295,0.016354099,0.10357779,0.01975656,0.0834679,-0.004451691,-0.01671147,-0.021832952,0.031122204,0.13300294,-0.02698862,-0.041975487} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:32.231191+00 2026-01-30 02:01:10.041599+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1653 google ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB 1 t 1656 Go Karts Mar Menor unknown Un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el F300 por 19e pero si tienes la posibilidad de coger el F400 sin duda vas a disfrutar.\nSuelen hacer 1 tanda de adultos y una de niños y así sucesivamente.\nSin duda uno de los mejores karting que he probado. En cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata, que no ha corrido nunca, que alguien le explique lo básico. un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el f300 por 19e pero si tienes la posibilidad de coger el f400 sin duda vas a disfrutar. suelen hacer 1 tanda de adultos y una de niños y así sucesivamente. sin duda uno de los mejores karting que he probado. en cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata, que no ha corrido nunca, que alguien le explique lo básico. 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.01 {O1.01,O3.02} V+ I3 CR-N {} {"J1.03": "Suelen hacer 1 tanda de adultos y una de niños y así sucesivamente.", "P2.01": "En cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata", "V4.01": "Un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el F300 por 19e per"} {0.023285905,0.040597804,-0.10387124,-0.030162888,-0.058296546,0.06801104,-0.03659501,0.13251893,-0.060184974,0.041474838,0.10152682,0.048557166,-0.04309673,0.02709106,0.0388854,-0.042297557,0.013862826,-0.028925348,-0.050036334,0.007421012,0.0109519055,-0.04683161,-0.008190702,-0.004498537,-0.13754158,-0.0058989697,0.021233032,0.031997226,-0.050503578,-0.091033414,0.031393982,0.0742523,0.048570648,-0.025079217,-0.035655018,-0.053366303,-0.04030974,-0.061968975,-0.011830842,0.01411948,-0.06580601,-0.054661762,-0.021221338,-0.12211483,0.033269085,0.00049872487,-0.009049603,0.0552221,0.041340873,-0.030178677,0.043131996,-0.025221456,0.031954776,-0.017800964,0.008652782,-0.07580659,-0.06585135,0.017731719,0.08857518,0.06706926,0.009547064,0.023616996,-0.0017341805,0.06266944,-0.0011716583,-0.08511058,-0.008674255,-0.071556695,-0.019292582,0.05506877,0.041946396,-0.023044735,-0.06672003,-0.016467676,0.01991761,-0.0006242055,-0.0023978672,0.074163325,-0.0035717965,-0.032120317,-0.008790661,-0.006902922,-0.0037985393,-0.06889359,0.025023477,-0.015384559,-0.02215254,0.07468353,-0.0062121456,0.03675616,-0.03746878,0.098896615,-0.07991947,-0.030608406,-0.059066422,0.05338877,0.023658475,-0.03462258,-0.049371704,-0.03208252,0.009632425,-0.003756763,0.11838535,0.13068771,-0.031556167,0.014952824,0.08060782,0.0067777187,-0.022823267,0.034970026,-0.031385377,-0.032837953,-0.035854593,-0.101537615,-0.026366873,-0.054648805,-0.04221463,-0.03399482,0.048778005,-0.058924247,-0.0029110915,-0.10245654,-0.0077859573,-0.015734347,-0.0055492297,-0.023752384,0.047487877,1.2172104e-32,-0.057551794,0.035324555,-0.04370356,0.034006834,-0.012258044,-0.030023495,0.051447548,-0.033698674,0.018171703,-0.017602595,-0.030110275,0.083226055,-0.019096186,-0.042160667,0.06763676,-0.00915804,0.0064053624,-0.021112222,0.00076790556,0.01943872,0.08477916,-0.022158222,0.0999764,0.0017489848,0.03969584,0.079414174,0.036008243,0.0118895825,-0.09271764,0.04645131,-0.00042641046,-0.0013799967,-0.018875573,-0.07894522,-0.04172471,0.012621963,0.051586736,-0.0051295417,-0.09923408,0.0052492167,-0.067404814,-0.009092285,-0.05872303,0.034413897,-0.04230511,0.019909797,0.06187939,-0.0052146786,-0.029154895,0.120099366,-0.16191334,0.039757777,0.0009078713,-0.029093172,0.010875144,0.045509923,-0.002436027,-0.00800406,-0.10185172,-0.012039204,0.062922984,-0.001575955,0.0071732453,-0.015061646,-0.05198863,-0.030192137,0.07146534,0.038748067,0.087558106,0.092398524,-0.023533126,-0.031175105,-0.0010698931,-0.058738872,0.10995967,-0.0103731835,-0.014612176,-0.010387258,-0.08116959,-0.046528786,-0.045379713,-0.02857375,0.018222649,-0.00039151052,0.037520044,-0.011722608,0.0065667904,0.053111352,0.0010235313,0.014972287,0.0012686389,0.031876307,0.091433294,0.0716794,0.081366055,-1.2738635e-32,0.003772895,0.08079216,0.047701795,0.0010528305,-0.043877497,0.03353927,0.08455879,-0.028515138,-0.032525387,-0.01777768,-0.057483867,-0.070707396,0.049526066,-0.05697073,-0.04348945,0.029383106,-0.048536025,-0.05176237,-0.0030323628,-0.001485026,0.009872811,0.08363959,-0.053583983,-0.05511185,-0.0689166,-0.020238053,-0.048020326,-0.040147033,-0.11531223,-0.032747053,0.039121356,-0.008902022,0.070892155,0.040334035,-0.054485142,-0.06976158,0.05263393,0.0760133,-0.002429772,-0.0028294956,0.08000371,0.103852145,-0.010724865,0.0069964323,-0.01948049,0.016247274,0.046159957,-0.09064633,0.025060784,0.009972493,0.09411087,-0.03362713,-0.09140457,-0.030481368,-0.01564683,-0.061702345,0.05170959,-0.03421611,-0.17552572,0.011203515,0.023561135,0.006396234,0.0016943596,-0.0045959824,0.03242954,-0.035542574,-0.083207235,0.033510566,0.08579504,0.08465442,-0.049150415,-0.027213225,-0.01773543,0.0010514018,0.0130821755,-0.039860237,-0.02730738,0.01266996,0.049458608,0.032903507,-0.0060493317,-0.01951099,-0.023709795,-0.018575318,-0.013153924,-0.04815468,-0.04550291,-0.027455118,0.005335808,0.016020447,0.032092348,0.087951854,-0.043605465,0.048800923,-0.054111913,-5.814994e-08,-0.014693814,0.053340066,-0.06873258,0.0143075995,0.045033284,-0.06949708,0.0005995391,0.0019332069,-0.03917669,0.021123799,-0.045569226,-0.008996381,0.06217508,0.021875946,0.042003915,0.0071256864,0.08832998,0.16464067,-0.04684407,0.012767524,0.09062822,-0.0066089104,-0.055824056,0.039329797,-0.008034856,-0.007929299,-0.049405977,0.023676487,0.014521632,0.0007612474,-0.051695637,0.009086374,-0.045575127,0.012653545,-0.015700182,-0.0004140999,-0.01756584,0.06907218,-0.07436791,0.056996692,0.051391363,-0.040108312,-0.097452335,-0.021935333,-0.05383446,-0.0069684954,-0.046394177,-0.07492052,-0.044914607,0.12709075,-0.10612313,0.02750274,0.0011253634,-0.010069328,0.042615186,-0.0049925456,0.022457168,-0.017167328,-0.07518302,-0.040925313,0.034594942,0.053113736,0.050297525,-0.009057761} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:11.024061+00 2026-01-30 02:01:10.192881+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1634 google ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB 1 t 1637 Go Karts Mar Menor unknown Cal reservar, sinó potser et quedes amb un pam de nas. Ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins. És destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom. 14 euros volta amb F200 per 8 minuts. F300 19€. F400, 30€ però 10 minuts i sense F200s pel mig. cal reservar, sinó potser et quedes amb un pam de nas. ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins. és destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom. 14 euros volta amb f200 per 8 minuts. f300 19€. f400, 30€ però 10 minuts i sense f200s pel mig. 4 2025-01-30 01:52:39.833374+00 ca v5.1 E4.01 {} V- I2 CR-N {} {"E4.01": "Ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins.", "J2.01": "Cal reservar, sinó potser et quedes amb un pam de nas.", "O2.04": "És destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom.", "V1.01": "14 euros volta amb F200 per 8 minuts. F300 19€. F400, 30€ però 10 minuts i sense F200s pel mig."} {-0.06139531,0.028816923,-0.026512714,-0.0072126505,-0.07490548,0.026448706,0.028527884,0.13709815,0.07234447,0.049672674,0.012596939,-0.06065628,0.031395413,-0.028054738,-0.051021952,-0.056350917,-0.053438436,0.018289639,0.04114968,0.021988016,0.028159307,0.045385476,-0.003503893,0.017158987,-0.02863166,0.014482464,-0.0022860458,0.031270526,-0.07248197,-0.09840386,0.025984526,0.09368785,-0.030683983,0.0013618049,-0.043990936,0.010229832,-0.049675338,-0.06988527,-0.044402275,-0.007436401,-0.05060844,-0.036663562,-0.011556135,-0.09913133,-0.0033991323,0.057814367,0.07232179,0.10251748,0.027282255,-0.008485556,-0.0077749486,0.05993039,0.015810719,-0.017550774,0.017041868,0.0063982857,0.09393168,0.015679367,0.05668741,0.04380333,-0.038074795,0.0780812,-0.10399085,0.028686626,-0.004934631,0.010658611,-0.008759121,-0.0031521914,-0.027536277,0.010770226,0.051526006,-0.06397626,0.03796456,-0.016702887,-0.026419235,-0.010850346,0.015028107,-0.01813952,0.051831964,-0.056949854,0.0115364315,-0.021759648,-0.03919963,-0.05730223,0.06910622,-0.01072892,0.0044987896,-0.003759403,0.09656733,-0.07150111,-0.018569725,0.053312328,-0.046994496,-0.023197968,-0.060295478,-0.03183759,-0.038831998,0.04647193,-0.049738422,0.045776684,0.045119014,-0.025494283,-0.044319615,0.05128154,-0.09153296,0.053934205,0.040294833,0.011053301,-0.058211297,0.031844094,-0.03854869,0.025851024,-0.08068173,-0.12696168,0.003751541,0.022322131,-0.058625463,-0.09928044,0.016986808,-0.088763915,-0.021142934,-0.08167381,-0.033752542,-0.038946234,0.02400702,-0.022571245,0.035113927,1.3658787e-32,-0.13009003,0.03538867,-0.006171437,-0.044490337,0.0142898755,0.01143377,0.041017033,0.023690019,0.024461543,-0.021621834,-0.04564337,0.0668408,-0.059169844,0.0012682244,0.040959455,-0.10874564,0.110450365,-0.039917134,0.0429108,-0.06214874,-0.011472879,0.015825685,0.14127105,0.016516153,0.041071795,-0.024696432,0.021309733,0.0023450635,-0.04556972,0.044413634,0.05490908,-0.00044520124,-0.008563418,-0.077123806,-0.06232687,-0.04824256,-0.004390329,0.0130553115,-0.06667641,-0.01944416,0.017350577,0.06637031,-0.0032203551,0.016756436,-0.023756994,0.040893633,-0.0060253325,0.03877177,0.047098227,0.11654423,-0.056964573,-0.051796187,-0.11638932,-0.01958244,0.03886507,0.020882227,-0.09991034,-0.027431928,0.017422102,0.05866989,-0.045581736,0.0029503917,-0.019754117,-0.05915025,-0.050707567,0.0473629,0.064572714,0.03277998,0.10191786,0.044480033,-0.038478363,-0.0057736724,0.072827585,0.0045764386,0.030317394,0.07635808,0.0318041,-0.02479757,-0.039797615,-0.018170116,-0.030642537,-0.024335913,-0.009186572,0.05810882,0.07526985,-0.019973509,0.056301385,0.043023758,0.0059406045,0.08895366,0.03820584,0.048295133,0.0501395,-0.016453847,0.027784243,-1.17779545e-32,0.02679295,0.01940325,-0.0065487945,0.08713191,-0.050816927,-0.016411282,0.010130465,0.018999154,-0.027844047,0.004323071,-0.08881449,-0.022029191,0.08021217,-0.107006475,-0.049960382,0.033306357,0.008667964,-0.058543794,0.020113654,-0.016519718,-0.026457608,0.10196239,0.043233994,-0.06823255,-0.07325619,-0.027760142,-0.03914862,0.042966958,-0.028638098,-0.0045870165,-0.03039566,0.019395227,0.0084499065,0.077128105,-0.051820118,-0.04709869,0.13742341,0.023649909,-0.022572782,0.013045812,-0.022411667,0.10951674,-0.0033272381,-0.0126665225,0.0077309664,-0.028681038,-0.04189887,-0.076971136,-0.020522635,-0.028357904,0.06978799,-0.08529446,-0.038789045,-0.070502214,-0.055946622,-0.04677477,0.074445635,-0.08979993,-0.0605578,-0.023973046,0.12345046,0.01734018,-0.0016426437,-0.051672027,0.060553163,-0.018434525,0.024276782,0.039420284,0.13029525,0.042475276,0.11251906,-0.05742673,0.03159927,-0.030002577,-0.023479342,-0.014047378,-0.054753594,0.054716256,0.05771839,0.04067859,-0.04305504,0.00084074633,-0.0014505857,-0.018519374,-0.021090325,-0.058773067,-0.019013152,-0.056423433,0.1279066,0.03759281,-0.0468685,0.008746209,0.07096531,0.006050922,0.0044537988,-5.6398054e-08,-0.026658123,-0.010389606,-0.023173623,0.043835808,0.07442031,-0.07705575,-0.047868937,0.026847655,-0.005200669,0.0924751,0.052151263,-0.00034885487,0.0117496755,-0.0027960036,-0.024507105,0.059087034,0.094997585,0.12063115,-0.07680444,-0.043714214,0.060488634,0.113648325,-0.035012383,0.014013718,0.058429748,-0.0079676015,-0.07363663,0.0055321986,-0.0016141087,-0.0319694,-0.071745664,0.006500612,0.0065885303,-0.061558258,0.03758183,0.014926419,-0.04422701,0.037936695,-0.041006517,0.040177807,0.027689235,-0.068742946,-0.05340003,-0.003268656,-0.01527718,-0.044944394,-0.02074522,-0.01657544,-0.06000909,0.014774181,0.019135043,0.054784436,0.0116063,0.037139386,-0.04658938,-0.0036090715,-0.0585977,-0.030974947,-0.059085093,-0.04419429,0.03810835,0.05565667,-0.06240665,-0.06956059} 0.975 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:37.039378+00 2026-01-30 02:01:10.119472+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1990 google ChdDSUhNMG9nS0VJQ0FnSUN4bXVlQWtRRRAB 1 t 1993 Go Karts Mar Menor unknown Una pista muy divertida y unas instalaciones cuidadas al detalle. Todo es perfecto una pista muy divertida y unas instalaciones cuidadas al detalle. todo es perfecto 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.01,E1.01,O2.04} V+ I3 CR-N {} {"V4.03": "Una pista muy divertida y unas instalaciones cuidadas al detalle. Todo es perfecto"} {0.007087517,0.033452667,-0.0003998292,-0.074689716,-0.017814185,-0.051602818,0.062827475,0.04087227,-0.01095567,0.031788286,0.12002366,-0.007814836,-0.034696423,0.026068764,0.055185284,-0.00879501,-0.05271676,0.0067245555,0.030635677,0.030086717,0.02190408,-0.040416036,-0.10446397,0.09469097,-0.12923504,0.032763533,0.01640435,0.00063949695,-0.024923954,-0.11131871,0.008819478,0.080717914,0.12073217,-0.02685999,-0.028226214,-0.04356576,0.040393665,0.004821861,-0.021675337,0.024620492,-0.090456955,-0.010176544,0.00056046265,-0.01417865,-0.0035465565,-0.07904494,0.0055836444,0.052976016,0.06243107,-0.044166826,-0.06427758,-0.016031738,-0.022366505,0.049372602,-0.01752469,-0.021276487,-0.025688192,0.0065431553,0.059291545,0.06251528,0.016803268,0.05218655,-0.036669787,0.050511375,0.006054433,0.0046745674,0.008096864,-0.029556025,-0.0100527685,0.005946024,0.10041925,-0.057624955,0.005720685,-0.021462418,-0.008909981,0.0399238,0.01927615,0.038396038,-0.08105805,0.03849592,-0.030378105,-0.0028523563,-0.045786295,-0.042373512,0.031830214,0.010743072,-0.06202894,-0.011914565,0.029439239,-0.040577706,-0.015811024,0.07938342,-0.008765091,-0.035646103,0.051624816,0.024991093,0.016444836,-0.10932661,-0.02895294,0.025806725,0.09055961,0.0036142098,0.034092795,0.00455078,-0.023133442,-0.02544259,0.040986784,-0.09114176,-0.024252683,0.048949376,-0.044397525,-0.054741755,-0.031400986,-0.0325213,-0.11847905,0.018287793,-0.021386646,-0.060433675,0.0031944423,-0.07044548,0.02790878,0.06501963,-0.01843435,-0.044052824,-0.00027798465,-0.02039974,0.041237067,4.67256e-33,-0.08368064,-0.021163689,-0.08663295,0.07862549,0.0026547401,-0.0016667033,-0.018297186,-0.102999374,-0.018658927,-0.020696787,-0.06322925,0.059589844,-0.027412953,0.06215792,0.08482898,-0.013791082,0.03463122,0.040463623,0.020709807,0.043124605,-0.03822332,0.015185306,-0.036466975,0.003325574,0.021919703,0.09268124,0.020860221,-0.04794388,-0.026484752,0.039462853,-0.059829433,0.011264951,0.005186863,0.006139128,-0.017062139,-0.06954306,-0.0012640754,-0.010253555,0.037616093,-0.015517203,0.04005166,0.041611847,-0.031221587,0.03567078,0.07992107,-0.01382469,0.010667238,0.041066352,0.104938775,0.041446973,-0.046955727,-0.072570495,0.0016884496,-0.031325772,-0.06456634,-0.025213351,-0.02974233,0.012623363,0.04662497,-0.016829954,-0.015304672,0.0392025,0.0013672695,-0.054815028,-0.029160844,-0.047657937,0.008708105,0.059277426,0.13574971,0.07743294,-0.13458689,-0.0743306,-0.054102182,0.05620125,-0.039548896,-0.05810285,0.0003145071,0.031373642,-0.041013647,0.053208724,-0.034546323,0.02274113,0.046116453,0.013204477,0.07363973,0.10226296,0.028866585,0.07551676,-0.069778,0.09262401,0.04139843,0.16131334,0.008192598,-0.00713863,0.07021109,-6.7992944e-33,-0.010134462,-0.06685032,0.030282095,-0.010678193,-0.021491954,0.012544556,-0.046194073,-0.055382483,0.002803894,-0.055607125,-0.10870956,-0.073490284,0.0982622,-0.0316648,-0.07809108,0.07128252,0.046452515,-0.07485878,-0.057405382,0.0058703194,-0.037401628,0.08141965,0.08862817,-0.012498958,-0.02482197,-0.08680623,-0.0118638575,0.025892228,-0.024422452,0.02364183,0.0034150784,-0.022268895,-0.0913489,0.01487214,-0.014965606,0.04202752,0.03369797,0.035805713,0.011027696,0.045510933,-0.04478598,0.012613289,-0.037039742,0.0015518115,-0.03356091,0.054588586,0.0383947,-0.1368266,-0.114312336,-0.054205637,0.038312048,-0.03454535,0.012695144,0.004292667,0.058160674,-0.0650902,-0.031005073,-0.056742385,-0.04314649,0.0036696745,0.06830616,0.0008440035,-0.044392493,-0.10162664,0.055977132,0.0094027165,-0.017905235,-0.020783035,-0.0361936,0.04713528,0.09036857,0.02262886,-0.058046166,-0.021639146,-0.015176762,0.02595815,-0.13416773,0.0008826364,-0.021381244,-0.01857046,-0.0047916546,-0.03234571,0.036706623,-0.030583771,0.0072993613,-0.061469566,-0.032608967,-0.015441381,-0.03287854,0.03218819,0.01700608,0.016698757,-0.043909054,0.0018044462,0.002756015,-2.8961782e-08,-0.009986646,-0.055944502,-0.04554519,-0.0051077073,0.049816146,-0.058484536,-0.05218597,0.06880434,0.023111831,-0.0012619824,0.008999834,-0.066639915,0.019611163,0.096466765,-0.015518508,0.048857987,0.06315172,0.14899048,-0.0009929518,-0.037625983,0.09496458,-0.03328903,-0.017013827,0.0075640883,0.036387663,0.040901594,0.0065550385,0.0063684382,-0.05627966,-0.004455672,-0.0053648064,-0.09635465,0.023658246,-0.051212214,0.040080987,0.05149098,0.040321555,0.039566427,0.05346063,-0.08993307,0.05891809,0.06127537,-0.07511323,0.0010510818,-0.07631075,-0.11126443,-0.04937104,0.023355331,-0.00015869399,0.0007372311,0.03053804,0.010755752,0.047926307,0.06362994,0.069646366,-0.065627955,0.041600052,0.029063845,-0.039909378,0.03935919,0.05607248,0.1245985,0.046039198,-0.050045896} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.125146+00 2026-01-30 02:01:11.578806+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1992 google ChdDSUhNMG9nS0VJQ0FnSUNNdnZQUTlBRRAB 1 t 1995 Go Karts Mar Menor unknown Muy buena experiencia, los Kars van muy bien y el trazado-asfalto una pasada. Se pasa una buena tarde de risas con los amigos en un ambiente muy familiar. muy buena experiencia, los kars van muy bien y el trazado-asfalto una pasada. se pasa una buena tarde de risas con los amigos en un ambiente muy familiar. 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {O1.02,E1.04} V+ I3 CR-N {} {"V4.03": "Muy buena experiencia, los Kars van muy bien y el trazado-asfalto una pasada. Se pasa una buena tard"} {-0.01935902,-0.034220435,0.06290612,-0.016909808,0.059707835,-0.042640187,0.09381501,-0.05927968,0.02521406,0.00089734385,0.109195,-0.0016202778,-0.05921646,0.023791913,0.08133742,0.036054906,-0.06304241,0.020793717,-0.021655558,0.022268511,0.032544564,0.0012392686,-0.019049704,0.07393004,-0.07704891,-0.049580175,0.03707441,0.029904867,0.017389342,-0.02869609,0.021778144,0.119711705,0.049109705,0.010297763,-0.04224142,0.032756004,-0.023178255,-0.0049868873,-0.03838723,0.025985053,-0.10291428,-0.014791112,-0.009766137,-0.0883153,-0.07252783,-0.105232246,0.001960778,-0.040316805,0.032680247,-0.013409494,-0.034133308,-0.0027131194,-0.0011909639,0.008314637,-0.012034458,-0.031644393,-0.10825264,0.012074128,0.080699176,0.016496208,-0.017495643,0.007534359,-0.026943542,0.012486424,-0.020408776,-0.031917505,0.02700515,0.046365697,-0.024801,-0.05564398,0.037639245,-0.06752908,-0.001542158,-0.026256641,-0.029748295,0.034226388,-0.022274405,-0.036099106,-0.119358584,-0.037637874,0.00035629934,-0.008021367,-0.005683853,-0.10629314,-0.0026852235,0.012674175,-0.021952704,0.042519595,0.0034934778,0.010083931,-0.019687893,0.0073061935,-0.035933502,-0.046093628,0.056999307,0.033885334,0.065400004,-0.054311015,0.002341112,0.06678686,0.06860074,0.09067962,0.06387874,0.016082833,-0.0031748996,-0.02795881,-0.017323945,-0.0951814,0.01849675,0.017239867,-0.02077149,-0.039176356,-0.026878217,0.015167593,0.0011559082,-0.07933613,0.0041389735,-0.011867121,0.009186468,-0.0430302,0.05056976,-0.004707909,-0.040699452,0.023507345,0.046936896,-0.030689174,0.0385868,8.423082e-33,0.0023083647,-0.021008722,0.016233735,0.038540784,0.039943878,-0.044360477,-0.06418406,-0.02489402,-0.07873317,-0.0077999746,-0.026109274,0.111893475,0.021298818,-0.009742419,0.05668963,0.021230463,-0.053251617,-0.046362262,0.07233775,0.063117445,-0.071461625,-0.03712513,-0.031528722,0.038100116,-0.0047859196,0.003983305,0.02166819,0.001400323,-0.0024847197,0.035760395,-0.013402281,0.04291721,-0.003308368,-0.014840004,-0.061206058,0.0010162465,0.0030795916,0.08751567,-0.01145656,-0.05161348,0.031561654,0.016273346,-0.0587587,0.009057573,-0.03401728,0.045900665,0.07557856,-0.0069007454,0.009825899,0.029884418,-0.07261306,-0.11003301,-0.11763271,-0.012401334,0.024115551,0.07484436,-0.0050788904,0.0054636686,-0.0044141165,-0.037545796,0.07104365,0.013661698,0.028259404,-0.090728074,0.046693355,-0.059039902,0.037806615,0.051612195,0.07189705,0.06440768,-0.032089725,-0.016645098,-0.03848623,0.0052372306,0.054678302,0.00093313144,-0.00457307,0.015633848,0.057716653,0.08157852,-0.057073776,0.04723106,0.027437232,0.07396786,0.007329946,0.03876996,0.0094189495,0.03724105,-0.062148385,0.13594289,-0.07024229,0.07422034,0.012190055,-0.041200582,-0.078101695,-1.0647506e-32,0.035027605,-0.0018124456,0.006322284,0.0851691,-0.0068875127,0.017820593,-0.0012217932,0.018988384,-0.043317333,-0.013845396,-0.10776222,-0.113297924,0.04430452,-0.02613294,0.08533803,0.09586312,0.054895468,-0.00544041,-0.06702233,-0.018858297,0.013248545,-0.0047769444,0.05480482,0.014177199,-0.045098662,-0.06631951,-0.052259754,0.024806,-0.1721068,-0.016033897,-0.034466315,-0.059856802,0.033618487,0.02327781,-0.05843737,0.03091886,0.05782281,0.03913545,-0.04576999,0.019694835,0.03334808,0.14392418,-0.04101951,0.026327573,-0.033040643,-0.0091596,-0.033074945,-0.0861142,-0.048021067,-0.0665728,0.09088845,-0.039839543,-0.029576937,-0.06556678,0.03136835,0.043641277,-0.011276759,-0.038212232,-0.06550709,0.0015006579,0.04612564,-0.08039132,-0.09219933,-0.0337817,0.040873673,0.004965703,-0.022422941,0.008614235,-0.010933152,0.0022349735,0.09080006,-0.05094351,-0.1122903,-0.0425838,-0.01036579,-0.08502443,-0.11705387,-0.048901424,-0.04165452,-0.018993212,0.005719677,-0.00029184108,-0.049694475,-0.028780872,-0.021585882,0.03103343,-0.025076889,0.024806282,0.021182522,0.01457016,0.04530715,0.03555224,-0.07130531,-0.06343609,-0.056677308,-4.3302883e-08,-0.020885926,-0.052468207,-0.031091373,-0.041637022,0.012385717,-0.014325544,-0.0046024863,0.10478379,-0.019625345,0.0860669,-0.008441314,-0.06217966,-0.03440011,0.12904792,0.07788067,0.07521645,0.098218404,0.07991629,-0.036088996,-0.03486234,0.08609867,0.032200016,-0.021895187,0.07098241,0.035252683,0.055099465,-0.09592749,-0.014169968,0.022945995,0.02103146,-0.065438464,0.01922135,-0.027283378,-0.05837592,0.007744436,-0.07596331,-0.01212871,-0.06740195,-0.01840928,0.009739283,0.030383417,-0.035670668,-0.09591041,0.006690362,-0.027325781,-0.057278987,0.025794797,-0.031877425,-0.03354191,0.025009051,0.04205388,-0.027710896,0.04317549,0.07771027,0.042637922,-0.10005376,0.056581877,0.024495788,0.04187635,-0.036798194,0.089188874,0.16893892,-0.016368032,-0.03419532} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.148747+00 2026-01-30 02:01:11.583826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1993 google ChZDSUhNMG9nS0VJQ0FnSURMN3A3MGNBEAE 1 t 1996 Go Karts Mar Menor unknown 10/10 buenísima experiencia y me lo he pasado pipa 10/10 buenísima experiencia y me lo he pasado pipa 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "10/10 buenísima experiencia y me lo he pasado pipa"} {-0.033345632,0.031220296,-0.031448707,-0.0066828365,-0.024743604,0.040012293,0.11993264,0.058059946,-0.017693484,0.013481362,0.039450657,-0.027078304,-0.08459399,0.018996028,0.003958889,0.010530866,-0.03695043,0.029178418,-0.07346213,-0.033315398,0.07512246,0.04179932,0.008139902,0.0678465,-0.061244167,-0.022277124,0.06697591,-0.051150277,-0.021626873,-0.036814984,0.029552236,0.028847445,0.07064852,-0.0061290446,-0.009015218,-0.039262682,0.06861495,-0.019179001,-0.023432065,0.018989833,-0.05720302,-0.07484498,0.00022185994,-0.059953894,0.02101124,-0.08548037,0.0018411598,0.08308777,0.023357319,0.03226222,-0.07222323,0.0357377,-0.02625181,-0.064246126,0.03224281,0.011686772,-0.0025164513,0.015480697,0.03889412,-0.019924626,-0.036798917,0.07822312,-0.10286222,-0.0073312297,-0.0013224767,-0.02428178,-0.01637914,-0.012481943,-0.07747206,0.051635116,0.13592654,-0.06298418,-0.061545163,0.03923598,-0.11392489,0.01781201,-0.022262787,-0.038099483,-0.042463467,0.022398567,-0.0063611683,0.02764927,0.0113126,-0.0111747105,-0.09724759,-0.023963984,0.0307175,0.0038828668,0.007953832,-0.009584466,0.07657136,0.053990353,-0.095776975,-0.021027138,0.03076406,0.005717375,0.05300254,-0.036934175,-0.03369025,0.101742566,0.07134,0.055926632,0.034530625,0.072895475,-0.05868492,0.07628506,0.06348631,0.0016125609,0.021919742,-0.001909909,-0.019540653,-0.0905619,-0.08935268,-0.049524155,-0.015246076,-0.050477643,-0.00040389216,-0.0016889621,-0.03335249,-0.07992946,-0.028756365,0.036278237,-0.028941663,0.034361295,-0.06779556,-0.06737619,0.08759409,3.4618764e-33,-0.01832293,-0.12749746,-0.046898264,0.067921095,0.05635516,0.08872143,-0.0129536,-0.057695217,-0.025395386,-0.080584764,0.034021977,0.036657628,-0.032368496,-0.015578738,-0.011619126,0.063240916,-0.025494806,0.05098528,0.023817588,0.045383878,-0.03137309,0.01231771,0.0068763504,0.00012253963,-0.011042564,0.046320178,-0.0389037,-0.05556389,-0.03174788,0.06472774,0.040215757,0.079780415,-0.017687334,-0.096861586,-0.008478155,-0.045719765,0.06879561,-0.020913629,-0.04387504,-0.058545776,0.04397506,-0.02699357,0.009622742,0.03029062,-0.00029776673,-0.022404602,0.06016979,0.0578673,-0.00046635699,-0.039622348,-0.010881126,0.025985379,-0.021016305,-0.042203985,0.0744756,-0.029517382,-0.013437645,0.09757918,0.081777625,0.020548018,0.1563818,0.068243556,0.027449468,-0.037500717,-0.05373578,-0.11775293,0.050413337,0.075270236,0.10626281,0.041971944,-0.059064437,0.020260543,-0.05702476,0.04919855,0.014688544,-0.031393692,0.030309545,0.03171577,-0.02223304,0.0511982,-0.03822433,0.046624783,0.07236371,-0.023866098,0.050240688,0.07731234,0.028828168,-0.003972929,-0.13362086,0.04779682,-0.0017580212,0.058232363,0.032794554,-0.0073013506,0.032250535,-4.9058548e-33,-0.010178318,-0.06706392,-0.03136616,0.069889136,-0.048090376,-0.028039929,0.012308974,0.037263077,0.07086772,0.013678737,-0.026019577,-0.059280273,0.17799881,-0.02922872,0.013567946,-0.018606942,0.0007340433,-0.047406018,-0.10414154,-0.02692646,-0.00476525,0.055518303,0.05334266,0.0068896585,-0.02590192,-0.058884874,0.022116572,0.0045916406,-0.08631658,-0.02236054,0.040149778,-0.06277688,-0.0912496,0.04146983,-0.065778375,-0.021476762,0.0033118532,0.0050582094,-0.017511304,0.011486453,-0.008069181,0.08372433,-0.078866325,-0.08116336,-0.036339737,0.016494716,0.03745337,-0.04550199,-0.049421962,-0.046234872,0.059655327,0.0334449,-0.028191565,0.02610693,0.067127444,-0.05857567,-0.004264801,-0.01658177,-0.10607227,0.012140939,-0.025281057,0.04135523,-0.034759898,0.04020958,0.060783673,0.032524876,-0.000793449,0.050270233,0.03295802,-0.041788783,0.10425044,-0.021050114,-0.029303072,0.066916645,-0.061419502,-0.020689882,-0.0070581296,0.039425228,0.043927014,0.010315173,-0.02936249,-0.028304255,-0.0038349733,-0.05307907,-0.0027267374,-0.038656894,0.02522747,0.027122298,0.075837195,0.059863165,0.042757604,0.0016672021,-0.07289436,-0.032650195,0.028967746,-2.479148e-08,-0.02905556,-0.059110194,-0.010893654,-0.030863581,0.05074989,0.0033242682,-0.058986526,-0.0021094705,-0.02568687,0.04014598,0.06959753,-0.037512913,-0.061822202,0.01795819,0.0028238,0.044681434,0.15932608,0.053071443,0.008743276,-0.063927956,0.01123284,0.0031454896,0.0011120208,-0.0016509286,-0.062009506,0.0424711,-0.020642826,0.03217458,0.003959983,-0.005257423,-0.0071723163,-0.031694345,-0.08983717,-0.09505816,-0.010744349,0.02387673,-0.03091128,-0.0042633703,-0.006322816,0.03137211,0.042734433,-0.040315095,0.002339609,-0.011982909,-0.09256737,-0.060253456,-0.007105931,0.022345793,-0.025281068,-0.012313897,-0.0688968,0.0070267073,0.07006355,-0.020131668,0.0061434214,-0.029241182,0.02886238,-0.022023614,-0.09660043,0.055457547,0.12608777,0.13841099,-0.026973965,-0.09303564} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.159499+00 2026-01-30 02:01:11.58701+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1673 google ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB 1 t 1676 Go Karts Mar Menor unknown Soy habitual de los circuitos de karting, me he recorrido muchos en toda España y este es con diferencia mi favorito, el personal es amable, te dicen trucos para bajar los tiempos y da gusto correr con karts donde el mantenimiento lo hacen a la perfección. Cada año que vengo tienen alguna novedad y eso dice mucho de una empresa, enhorabuena por vuestro negocio, volveré pronto a bajar mis tiempos! soy habitual de los circuitos de karting, me he recorrido muchos en toda españa y este es con diferencia mi favorito, el personal es amable, te dicen trucos para bajar los tiempos y da gusto correr con karts donde el mantenimiento lo hacen a la perfección. cada año que vengo tienen alguna novedad y eso dice mucho de una empresa, enhorabuena por vuestro negocio, volveré pronto a bajar mis tiempos! 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"O1.04": "da gusto correr con karts donde el mantenimiento lo hacen a la perfección", "P1.01": "el personal es amable, te dicen trucos para bajar los tiempos", "R3.05": "Cada año que vengo tienen alguna novedad y eso dice mucho de una empresa", "V4.01": "Soy habitual de los circuitos de karting, me he recorrido muchos en toda España y este es con difere"} {0.020534573,0.0017953708,-0.0020688786,-0.020774221,-0.13134168,0.004455724,0.035612892,0.032198783,-0.03694829,0.008084774,0.08102474,0.0494634,-0.0012017647,0.04484161,0.03317371,0.036306527,-0.027964145,0.0061306776,0.010008212,0.030291086,0.003700683,-0.06870463,-0.087459184,0.030748231,-0.090289585,-0.088955805,0.057320945,0.017434234,-0.047766957,-0.116033606,-0.063406736,0.035080276,0.0054389336,-0.02743382,0.003988644,-0.017608406,-0.04117071,-0.054697417,-0.07640333,0.045053888,-0.076543696,-0.04800843,-0.009839672,-0.023346892,0.0049840896,-0.003375823,-0.0059925998,0.026161201,0.03224539,-0.035139788,0.01621105,-0.04487128,0.030184336,-0.075682074,0.019954003,-0.04789823,-0.07957189,0.07936562,0.10219187,0.062416434,0.08712583,0.016681295,-0.0060160486,0.05099189,-0.019131826,-0.11218477,0.05624655,0.042856097,-0.09688136,0.075728014,0.11957987,-0.07994591,0.001542481,-0.010760398,0.038611613,0.0060243174,-0.045819987,-0.0051618605,-0.041632947,-0.015601737,0.012308886,-0.0164675,-0.053178653,-0.050950147,0.06006526,-0.067772426,0.01650372,-0.030962003,0.02910468,0.026155261,-0.035888538,0.058523186,-0.067479566,-0.067008756,-0.07690785,0.07989968,0.014493451,0.011775217,-0.029667757,0.017505366,0.11119338,0.011622378,0.053363867,0.041737888,-0.019426627,0.06614246,-0.04042885,-0.012883086,0.031042976,0.03978815,-0.024738407,0.012428371,-0.02863401,-0.077645026,-0.07707133,-0.0034498877,0.004307811,0.031706806,0.030540852,-0.019360105,-0.032679252,-0.0039454484,-0.019955577,0.0193172,0.022202384,-0.058330625,0.08589874,1.4945801e-32,-0.089764,-0.053452555,-0.025572719,0.038841963,0.055460617,-0.04415308,-0.04527043,-0.043875925,-0.087883465,-0.017296841,-0.036373198,0.059221115,0.0027514317,0.048200194,0.11986109,0.003672754,-0.023541532,-0.080314465,0.025255933,0.01588615,0.033263624,-0.04567125,0.01600905,0.038642637,-0.03858296,0.029532788,0.091045715,-0.044161376,-0.100335315,0.038552642,-0.022047397,0.023666713,0.043341085,-0.0376255,-0.029359628,0.021221599,0.050225366,0.004387801,-0.08823784,0.0057499926,-0.015346374,-0.011366079,-0.048844684,0.017070673,-0.08105932,-0.02780483,0.077656254,0.041044198,-0.027282668,0.07280934,-0.11969923,-0.05926495,0.047865417,-0.012865267,0.019299814,0.034822967,-0.06933586,0.02022391,-0.010589069,-0.022770602,0.027374297,0.0419654,-0.020294568,-0.053240728,-0.08779874,-0.018882366,0.030017184,-0.03468907,0.054049626,-0.0024680886,-0.0914361,0.03990589,-0.07899892,-0.03456616,0.08326433,-0.029675577,-0.06188406,0.06451444,0.009272779,0.014955618,-0.07112185,-0.058575083,0.046581894,0.047736388,0.096529,0.022039842,0.0902189,-0.013840713,0.037755754,0.15437585,-0.03332209,0.064804,0.05227447,0.042141177,0.098368965,-1.6012462e-32,-0.035074636,0.02234093,0.14732538,0.03994504,0.014802443,0.036663763,-0.026145931,-0.076612346,-0.02170348,-0.06723318,-0.0436409,-0.046460092,0.039092585,-0.021436607,-0.0297471,0.012993994,-0.00790036,-0.026070783,-0.08216488,-0.024761638,-0.03765276,0.023594646,-0.017997475,-0.027391106,-0.02328788,-0.04573628,0.00047436845,-0.017408876,-0.09847794,0.018015916,0.029323414,-0.025007721,0.004476593,0.03210759,-0.07604513,0.05364607,0.008337165,0.11229798,-0.008009864,0.059418917,0.036921594,0.08959636,-0.030954054,0.0071943314,-0.060862783,0.022878876,0.008675616,-0.12831731,0.016858602,-0.04306734,0.08070325,0.0057696234,-0.05013699,-0.026837725,0.024395728,-0.020704167,0.0043186643,-0.054269902,-0.112944536,-0.018410683,0.020882994,-0.012759033,0.004553857,-0.025394851,0.11020719,0.0060140505,-0.08335573,-0.045512024,-0.020332055,-0.010187726,-0.010292714,0.038705867,-0.08837837,0.010508696,0.021117387,-0.052175567,-0.07043094,0.026130896,0.019932875,0.020944038,0.02913777,-0.03870828,0.0007147997,-0.08618205,0.0059302025,0.0049953326,-0.04508442,0.043075256,0.05363109,0.004589403,0.05591009,0.084258065,-0.06298967,-0.028691303,0.0028787553,-5.8990487e-08,-0.04032394,-0.018109962,-0.0833961,-0.029673338,0.03109227,0.0018611941,0.029703107,0.01817582,-0.03972889,0.06736566,0.037650656,0.040479925,-0.03633202,0.050258607,0.02281822,0.04955575,0.077141434,0.14670122,-0.018013014,0.065719485,0.041083664,0.0059233382,-0.056337092,0.019939004,0.005853291,-0.026747653,0.005811297,0.036380857,0.0377436,-0.048898533,-0.03528867,-0.01368972,-0.08454367,-0.038124587,-0.08549909,-0.028190497,-0.06840761,0.05841631,-0.0009099363,0.029826524,0.04273411,-0.03527948,-0.099157624,0.01892235,-0.07665677,-0.039655726,-0.021295378,0.007222377,-0.053576265,0.08091929,-0.06336408,-0.05000909,0.06426159,-0.011240603,0.078890674,-0.044910997,0.051277928,-0.0042761154,-0.072793595,-0.031228585,-0.004192257,0.02243769,0.03986142,-0.023674631} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:33.631258+00 2026-01-30 02:01:10.276066+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1670 google ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB 1 t 1673 Go Karts Mar Menor unknown Los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos, que disponen de una carrera de clasificación y carrera después para ver el ganador. La atención al cliente es buena, el ambiente es agradable y cómodo. los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos, que disponen de una carrera de clasificación y carrera después para ver el ganador. la atención al cliente es buena, el ambiente es agradable y cómodo. 5 2024-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.02,O2.02} V+ I2 CR-N {} {"E1.04": "el ambiente es agradable y cómodo.", "P1.01": "La atención al cliente es buena", "V1.01": "Los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos"} {0.023845876,0.0052478123,0.004474726,-0.033705503,-0.04013627,-0.032441277,0.07152266,0.004489294,0.012311857,-0.0121633,0.10282142,0.008875919,-0.022716781,-0.0131305335,0.04816452,-0.040769715,-0.004462628,0.009878834,0.0060355975,0.06347799,-0.0025184713,-0.06149339,-0.12411792,0.1305989,-0.055510983,-0.07145918,-0.025907937,-0.022863409,-0.059955854,0.0256559,-0.00052354217,0.06952332,0.15624574,0.051478513,-0.047450688,0.043509558,0.04720379,-0.04016258,0.0024457213,0.10159577,-0.11225945,-0.051880687,-0.007466258,-0.02189881,-0.0031743946,-0.07895699,0.040545113,0.018512331,0.010556231,0.018737435,-0.053978384,0.026718035,-0.024592273,-0.01976688,-0.014546069,-0.012413926,-0.035245407,-0.03644373,0.032133788,0.005361906,-0.033731453,-0.010676976,-0.0030844188,0.02753925,0.009917436,0.048817348,-0.0037431538,0.04191554,-0.030709367,-0.016566545,0.12620068,-0.10636856,0.0057999603,-0.0070792884,-0.02283278,0.060436048,-0.0040105768,0.023323173,-0.034662258,-0.10455513,0.03470079,-0.02721977,-0.081418104,-0.022279896,-0.028384672,0.027006496,-0.036403384,-0.025902586,0.014405835,-0.0049008247,-0.041890625,0.07889991,-0.07414531,-0.008101,-0.07518838,0.01760619,0.03987193,-0.09476973,0.0094099045,0.07456839,0.0756645,0.044330224,0.034421455,0.05477681,-0.09761138,-0.007138361,0.051098283,-0.029536135,0.0008966781,0.09426708,-0.030660389,-0.012258414,-0.054515153,-0.020666255,-0.049477898,-0.007147399,0.00047633884,0.025432203,0.030055199,-0.09409216,0.026324814,0.008068721,0.04224402,-0.025421169,-0.023922194,-0.07761125,0.018655475,9.136654e-33,-0.07745132,-0.04266414,-0.002061782,0.07553779,-0.018080957,-0.009713626,0.0041462593,6.1794664e-05,-0.05076595,-0.04114915,-0.008251285,0.08907901,-0.011356415,0.053521678,0.058010347,-0.03559819,-0.0417115,-0.03666734,0.07956162,-0.002769221,-0.09691376,-0.025760323,-0.019303711,0.03126373,-0.0026925246,0.037563283,-0.052456483,-0.050803624,-0.026171435,0.051445838,0.045723006,0.048470475,0.047191195,-0.061569884,-0.11553248,0.043518808,0.012795433,0.032264546,0.019127091,-0.011223232,-0.085191526,0.017876105,-0.010448716,-0.015968932,0.0011479052,0.020560108,0.05852717,0.037248943,0.012480854,0.021029046,-0.045540992,-0.09565126,-0.06766319,0.011398618,0.008392477,0.028879553,-0.026947765,-0.038701028,-0.026054248,-0.08213421,0.047507767,0.019260338,-0.048506025,-0.057061557,-0.08089906,0.0027970865,0.053372398,0.032552723,0.1464362,0.056837868,-0.07778404,-0.028516527,-0.04269835,0.041349247,-0.00018462325,0.057535138,-0.053040948,0.07013759,0.040377654,0.056861203,-0.052381806,0.02603182,0.04148715,0.013304218,0.07501827,0.16334428,0.060198564,0.013179962,-0.010940641,0.12012712,-0.01161144,0.10535393,0.025841888,0.01328663,0.021836461,-1.2318299e-32,0.012552009,0.0025496597,-0.0024835232,0.0015270594,0.029562697,-0.034681633,-0.0278637,-0.103071064,-0.047128662,-0.023607396,-0.09665924,-0.094234064,0.044108134,-0.025986314,-0.00770015,0.030092,0.011089914,-0.064277425,-0.03197601,-0.032599676,0.0067641404,0.024681373,0.045610428,0.012550778,-0.0011092845,-0.12199893,-0.07054967,0.015147471,-0.06414823,-0.0616782,0.020367153,0.0033733107,0.026552795,0.029919054,0.0065614674,0.07545959,-0.039758835,0.07473708,-0.031138051,0.04569529,0.020379173,0.0020069948,-0.039213065,0.020864455,-0.07394211,0.047075745,0.004274177,-0.12272972,0.0021869529,-0.015858574,0.029382667,-0.068055816,-0.03772657,-0.081143096,0.01430713,0.028139044,0.030433824,-0.10114639,-0.019618766,-0.02516172,0.09096906,-0.007515022,-0.037747823,-0.017634023,0.021929456,-0.030183963,-0.06942373,0.020600218,-0.043143626,0.019638276,0.045460682,-0.051978093,-0.120269634,-0.027449353,-0.07386199,-0.033743076,-0.116164275,-0.007454155,0.059064005,0.0155297825,0.009460712,0.037037008,-0.011893202,-0.010846772,-0.0427477,-0.014956097,0.01869826,0.06296179,-0.027328374,0.05657894,-0.0073362235,0.036654856,-0.0013426463,-0.12850985,-0.049582586,-5.235308e-08,-0.0022155894,-0.0690629,0.031644747,0.04343388,-0.03375881,-0.0505421,-0.018683458,0.097611815,0.067259975,0.08293134,-0.059309226,-0.04889955,-0.05962442,0.019631742,-0.027915327,0.03818346,0.076787956,0.041335084,-0.04439538,-0.059828646,0.086605325,0.0042813607,-0.028446738,-0.029233964,0.027416227,-0.04184591,-0.07102174,0.012738082,-0.058599927,0.04050199,-0.074713856,-0.039410334,-0.022292051,-0.048123434,0.008620195,-0.03694618,-0.04133749,-0.017677952,-0.004216542,-0.050523236,0.034752708,-0.05298968,-0.07845357,0.013684399,-0.028890518,-0.06203155,-0.035002388,0.043853626,-0.038648624,0.061410587,-0.0038433447,-0.0475024,0.087423235,0.035646774,0.012878045,-0.02095224,0.018116396,0.11537427,0.025333306,0.0011239483,0.020489095,0.11225303,0.05571339,-0.05414243} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:07.542254+00 2026-01-30 02:01:10.253383+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1553 google ChdDSUhNMG9nS0VJQ0FnSUNlNzlYdm13RRAB 1 t 1556 Go Karts Mar Menor unknown Was there several times. Karts are fast. was there several times. karts are fast. 5 2023-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Was there several times. Karts are fast."} {0.031991754,0.05399033,0.014206349,0.14540717,-0.072911754,-0.011190048,-0.087251514,-0.08746447,-0.027265474,-0.013862309,0.04500713,0.08164829,0.014022072,0.044885844,0.03931986,-0.07705433,0.0586216,-0.034559228,0.013045983,-0.084155224,-0.07306912,-0.07745704,-0.014026132,0.03881149,-0.018455354,-0.07825123,-0.057716094,0.088132285,0.021574548,-0.026400808,-0.13657685,0.008237404,-0.037786778,0.035931546,-0.0008954016,0.009922147,0.004405951,-0.04312262,-0.013674803,0.002170962,0.08428166,-0.05740336,-0.010545372,-0.0049389056,0.03362111,0.015542913,-0.01983766,-0.023787938,0.056750838,0.0013132233,0.014394047,-0.068290554,0.07512869,-0.042768314,0.05789553,-0.04339188,-0.07438944,0.05364106,0.11479409,-0.008923596,0.07437064,0.013313519,-0.055024106,0.051450055,-0.04644749,0.013117498,-0.07235333,-0.00411388,0.072480164,0.038868226,0.05038025,0.017400436,-0.0029107435,0.023682365,0.009223748,0.00509386,0.0121174585,-0.025939442,-0.112716354,-0.0010551914,-0.038002398,-0.034379944,0.04197017,-0.016321078,-0.014623111,-0.03450349,0.04154333,0.08522369,-0.029803896,-0.06437483,0.056781646,0.04866041,-0.024714703,-0.016917685,0.05474035,-0.07383951,-0.040177695,0.04342437,0.040834785,-0.0053680423,0.051154897,0.049931817,0.07036753,0.046161085,-0.015236133,0.007871102,-0.0125573445,0.061802726,0.03102407,0.06524848,-0.061802357,0.08094997,0.06647112,-0.020934256,-0.10792209,-0.013649392,-0.014329943,0.03921856,-0.0050972984,0.1019297,-0.016594527,0.02574145,0.07699729,-0.039362773,0.022812514,-0.022581324,0.064875856,-3.3969322e-33,-0.07708949,-0.009924462,-0.02703173,-0.02089506,0.028532794,-0.122201264,0.0014718762,-0.11071373,-0.084013656,-0.00087683776,-0.0038739322,0.00031449052,0.00063721655,-0.029854797,0.11302538,-0.06252016,0.007374016,-0.05146828,-0.06101202,-0.014153691,-0.010340737,-0.074553855,0.014573173,0.014423015,0.05598753,0.06864899,0.075879395,0.010433235,0.073774934,0.033692326,-0.014632429,0.007918077,-0.05362385,0.052458018,-0.007989945,0.07430319,0.047161918,-0.039968506,-0.036470942,0.040854998,0.039655216,-0.020077303,-0.018684333,-0.013831892,-0.04552992,0.040585563,-0.040199757,0.048044372,-0.002626799,-0.0055920505,-0.066173404,0.05726373,-0.014287836,-0.027042689,0.032408047,0.043288283,0.108821996,-0.026025187,-0.036303133,0.066753544,-0.0009231125,0.032491866,-0.00689888,-0.021875069,-0.07930251,-0.053359177,-0.0040513054,0.008692824,0.019891277,-0.0038754959,-0.00842118,-0.026639966,-0.0028593359,-0.13072336,0.083443016,-0.04515524,-0.04424533,0.029839354,-0.07791851,0.010039562,0.0032401744,0.014154746,-0.041735206,0.073767334,0.04795509,0.0018192078,-0.050309177,-0.057864737,0.036833547,-0.012623885,-0.081036486,0.03236584,0.026898278,-0.020577447,-0.04762423,2.1049282e-33,0.048956063,0.05949367,0.08819964,0.11447589,0.054997228,0.008720624,0.035820626,0.05108216,-0.0008248656,0.017857563,0.0017113346,0.018495074,0.030674608,-0.0030148393,0.05723169,0.07044845,0.092838876,0.068286955,0.055437576,-0.07860789,-0.018224513,-0.038229257,0.024727732,-0.041302763,-0.024113296,0.06356439,0.030899068,-0.008395943,-0.16579811,-0.041441556,-0.018220533,0.0061926926,-0.027279828,0.02582598,-0.01493309,0.05209607,0.006761565,0.07068945,-0.082349405,0.0061823283,0.025426885,-0.014308495,-0.028278653,0.08359864,-0.05731072,-0.015632791,0.08040482,-0.05454777,0.06893972,0.0056706863,-0.0019443277,0.018883605,-0.0699739,-0.0065435423,-0.001873857,-0.009013232,-0.009972195,0.012223391,-0.04837921,-0.010073567,-0.038135134,-0.0047499025,-0.031152848,0.01587581,0.058594167,-0.020572096,-0.015397013,-0.08969963,-0.07904872,0.0018630616,-0.09451744,0.03411318,-0.030978,0.041623335,-0.07489883,-0.018086214,-0.024231311,0.04138209,-0.043142214,0.0022095204,-0.0036291848,-0.025658969,-0.020380782,0.047252506,-0.018411258,0.04480959,-0.041809585,-0.033934258,0.051993743,0.040811144,0.1078005,0.030268494,0.053879473,0.06940165,-0.042283505,-1.6787443e-08,0.018134793,0.1162499,-0.06318792,0.027771344,0.030027367,0.029850744,0.034934998,0.07141821,-0.055506997,0.022668619,-0.0467271,0.083236374,0.037880205,0.010607554,0.029419294,-0.0753513,-0.0047513684,0.059884306,-0.043979086,-0.017422743,0.015029051,0.074510366,0.021867204,0.007844432,-0.07738043,-0.023603598,-0.011358973,0.038024336,0.05011164,-0.06258215,-0.06456614,0.022519642,-0.05748262,-0.0133699905,0.017836228,-0.048416562,-0.06457892,0.10941344,0.026152076,0.006632573,-0.044078335,-0.049316075,-0.044289276,0.030632552,-0.0078100534,0.117459305,-0.08958887,-0.0115443915,-0.04145882,-0.04198885,-0.076275505,0.006106107,-0.053975213,0.056700733,0.031453792,0.012328308,-0.002728966,-0.14538334,-0.008685634,-0.07039094,-0.072512224,-0.10539317,0.019794283,0.04674738} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:18.058617+00 2026-01-30 02:01:09.769751+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1996 google ChZDSUhNMG9nS0VJQ0FnSUM2cFpieUdBEAE 1 t 1999 Go Karts Mar Menor unknown Grandísima experiencia.\nRepetiremos!! grandísima experiencia. repetiremos!! 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Grandísima experiencia.\\nRepetiremos!!"} {-0.007912026,0.07979626,0.015824733,-0.04110094,-0.14176376,0.0077417754,0.10064782,0.0076344465,-0.065011896,0.008137219,0.05477303,-0.008719972,-0.007287477,-0.07174888,-0.13501431,-0.023782816,0.012773353,0.060726203,0.013090052,0.07600793,0.029329045,-0.060287286,0.0009376627,0.055142768,-0.016540397,0.042751923,-0.012972532,-0.01027747,0.009032467,-0.02928394,0.048197687,0.069925874,0.037485696,0.0057615223,0.03581867,0.03789536,0.009355196,0.048145548,-0.012100519,0.041563977,-0.049548373,0.0103991125,-0.0059094285,-0.07145836,0.02391495,-0.005080316,0.019984877,0.024826856,-0.023699844,-0.006710036,-0.04260576,0.024279263,-0.013843501,0.008326148,0.02551497,-0.023295034,0.040185545,-0.0805844,-0.06762313,0.012329862,-0.017049678,0.033614155,-0.051085632,-0.039382458,-0.012038787,-0.044933233,-0.006699485,0.0013128256,-0.08846467,-0.037263863,0.09123216,-0.009296967,0.015911544,0.022835359,-0.06980623,0.055639807,-0.0053135143,0.0033095004,0.020901166,-0.026713926,0.078675576,0.024384176,-0.017680775,-0.026604556,-0.034017835,-0.025131227,-0.044286076,-0.032295354,0.04700281,-0.033264603,-0.019730685,0.027956786,-0.029758131,-0.005050583,-0.09268407,-0.017791461,-0.039271332,-0.12570576,-0.012971374,0.08698099,-0.005291502,0.04242986,0.08093988,-0.016910098,-0.098381594,0.030516524,0.018480685,0.01639296,0.052516494,0.014891655,-0.016593967,-0.080797955,-0.014472978,-0.013921458,-0.059715506,0.07071421,-0.0014961027,-0.014432957,-0.08172743,-0.038387407,0.028507551,0.05349735,-0.0402099,-0.006267535,0.029488992,-0.059207205,0.04131868,2.647733e-34,-0.041634735,-0.025127644,-0.014289597,0.086934574,0.0003119454,0.08645377,-0.07730305,-0.05325983,-0.04627401,-0.03470854,0.024155268,0.0146810915,0.00089328527,0.04020105,-0.014434009,0.1130483,-0.10155899,0.0108942,-0.015959416,0.03107689,-0.0013239948,0.017703516,0.014806953,-0.0063575716,0.0024625116,0.03910986,0.016231919,-0.020995853,-0.05005857,0.02866246,0.010486103,0.02987374,0.009961535,-0.020778237,-0.009178759,0.025864823,0.03131387,-0.082285,-0.023023035,-0.014465359,-0.04441734,0.007815553,0.015451371,0.031066988,0.0012681544,0.015099175,0.17033292,-0.013046745,0.079205476,0.027771227,-0.05002511,-0.06445233,-0.119739264,0.035065804,-0.09616311,0.052848265,-0.06882684,0.03906815,0.08459067,-0.11830405,0.12007422,-0.0017036685,-0.031432834,-0.064017154,-0.017450184,-0.027550466,-0.014660889,0.061883904,0.071687914,0.10580222,0.018584382,-0.011836495,-0.02668567,0.017126786,-0.042142697,0.055548396,0.04319927,0.009098455,0.03916936,0.05744638,-0.077976614,0.014635337,-0.012280791,-0.0024804277,0.13890588,0.12850447,0.010406881,-0.013946254,0.06591299,0.08646429,-0.043414276,0.026581986,0.037020475,-0.017396923,-0.0328661,-1.9723287e-33,-0.0065421322,-0.016286954,0.018161664,0.014568083,0.07074129,-0.019122805,-0.17146328,-0.015761638,-0.07794034,-0.046593133,-0.072680935,-0.07375307,0.0999473,0.052052073,-0.048589602,0.01952342,0.06607992,0.0009812393,-0.06259525,-0.03630011,-0.011797844,0.08152141,-0.06390741,0.0558016,-0.013013115,-0.053262457,-0.024657512,-0.08416574,-0.05374765,0.015044337,-0.0672169,0.0071815304,-0.11959283,-0.03328922,0.004598688,0.06748409,0.052085567,0.0012060519,-0.053999618,0.055179622,-0.05721492,0.035779152,0.045241773,0.06407886,-0.012783903,0.040919144,-0.06696454,-0.03213394,-0.016982486,-0.010124373,-0.013488545,0.031867158,-0.013301892,-0.0022376757,0.057593167,-0.06127104,0.026478078,-0.037393462,-0.083348654,-0.0077564633,-0.0036230257,-0.03121885,-0.023249233,0.045009825,0.08805555,0.05358597,-0.017216371,0.036360186,0.044969384,0.07217318,0.086231515,-0.042592622,-0.07377111,0.012048967,-0.05900715,0.051564343,-0.011233834,0.0105223665,0.05854489,0.0010295568,0.029721452,-0.0055525927,0.035745405,-0.04970104,-0.023568913,-0.044548094,-0.0138353165,0.046310294,0.025414744,0.031406324,-0.05921068,0.049478386,-0.0043149195,-0.0581692,0.011139983,-2.355771e-08,-0.017515607,0.0515435,-0.012580621,0.03435963,0.009207455,-0.07220832,-0.10740392,0.06343285,-0.013950323,0.02550839,-0.028709246,0.025166973,-0.047458515,0.017070932,0.0361306,0.0064507364,0.09993259,0.085946515,-0.03613943,-0.024872044,-0.024733022,0.0051587126,-0.08468225,-0.007819049,-0.05900408,-0.012507108,0.08120659,0.041174665,-0.03830729,-0.038413644,-0.008733974,0.064101554,-0.084738925,-0.09492044,-0.032083306,-0.006036472,-0.056398515,0.056165062,0.06587558,-0.09842144,0.010475609,0.06911261,0.057553597,-0.024533035,-0.08845416,-0.035617016,0.02406629,-0.026674721,0.0241297,0.0034517797,-0.014456229,0.04031194,0.11274611,0.055064395,0.0399067,0.014241178,0.098025985,0.036233034,-0.04949452,-0.016421476,0.13044058,0.035391733,-0.022780295,-0.01786789} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.19479+00 2026-01-30 02:01:11.605662+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1635 google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB 1 t 1638 Go Karts Mar Menor unknown tolle rennbahn mit schnellen karts für verschiedene leistungsklassen. kleines bistro mit essen und getränke. freundliches und kompetentes personal, gutes preis / leistungsverhältnis. geeignet mit gruppen um eigene renne durchzuführen tolle rennbahn mit schnellen karts für verschiedene leistungsklassen. kleines bistro mit essen und getränke. freundliches und kompetentes personal, gutes preis / leistungsverhältnis. geeignet mit gruppen um eigene renne durchzuführen 5 2022-01-31 01:52:39.833374+00 de v5.1 O1.02 {O4.03} V+ I2 CR-N {} {"O1.02": "tolle rennbahn mit schnellen karts für verschiedene leistungsklassen.", "O3.02": "kleines bistro mit essen und getränke.", "O4.03": "geeignet mit gruppen um eigene renne durchzuführen", "P1.01": "freundliches und kompetentes personal,", "V2.04": "gutes preis / leistungsverhältnis."} {-0.066684775,0.07463563,0.00338554,-0.01366482,-0.12985295,0.04970154,0.051895328,0.05382541,-0.0030748427,-0.00061885064,0.07263273,-0.058215868,-0.017140334,-0.059425052,-0.030911786,-0.127979,-0.0018354817,0.11012604,-0.076048374,-0.0005394351,-0.006954939,-0.05941101,-0.027612166,0.09819857,-0.031494994,-0.04374248,0.01780415,-0.025803521,0.056814056,-0.09510525,-0.00070891815,0.045308486,0.025259167,-0.020167971,-0.013526414,0.07777808,0.010642092,-0.05347421,0.05932069,0.03886611,-0.046781834,-0.043723885,-0.11071683,-0.08462226,-0.0016686771,0.034310445,0.025620341,-0.015952393,-0.08370503,-0.017605472,-0.056042068,-0.07374385,0.03558903,-0.009133248,0.05611477,-0.06594781,-0.066362746,0.05448583,0.024619035,0.049467973,0.02210839,-0.035036713,-0.00049205497,0.0035110698,-0.09212562,-0.018480156,-0.005596591,0.0673131,-0.013309474,0.021709245,0.10536287,-0.08243659,-0.008106125,0.061381675,-0.02639128,-0.06478827,0.0069070417,-0.022715745,-0.042647026,-0.08643579,-0.013104567,-0.039388165,-0.07881489,0.023039687,-0.020100998,-0.029918104,-0.041060768,0.026414424,0.035062753,-0.022402776,-0.010937005,0.0069782306,0.0051230136,-0.08676787,-0.030383212,-0.039783243,-0.10855544,-0.04951048,0.009865923,0.03286521,0.01581743,0.06735237,0.0067655267,0.004464642,0.0036853035,0.012350939,-0.073718205,-0.03377616,0.07709685,0.024260396,-0.0613455,0.032338683,-0.10179496,-0.0863674,-0.029091962,-0.016552553,0.049231537,-0.15662809,0.073219754,0.0036494057,-0.00066727196,-0.0066972217,-0.0064492975,0.0048884945,0.04128623,0.05658577,0.04450256,1.4472807e-32,-0.06654293,-0.049911335,-0.03629716,0.020175025,-0.03202996,-0.08985171,-0.05481026,-0.058195896,-0.034050155,-0.050504852,0.03255203,0.08016349,-0.028153807,0.045390464,0.043134633,0.0472269,-0.011762796,-0.022499325,0.017914088,-0.072213225,-0.0706497,0.043957654,-0.011961558,0.0079605235,0.02158341,-0.05955286,0.032355364,-0.018669637,0.0035327103,-0.011748385,0.12440624,-0.04871982,-0.043865614,0.001064103,-0.084581904,0.0586782,0.013386038,0.04749477,0.02357332,-0.073837414,0.02320258,-0.07864411,0.02243063,-0.005194682,0.04445832,0.07509308,0.013337217,0.00077369105,0.12029091,0.0115808565,0.05268889,-0.014146856,0.027179802,0.006579336,-0.043705102,0.0244742,-0.030446853,-0.0015710096,-0.07970752,-0.039998375,-0.050475795,-0.038340118,-0.029098645,-0.0001650106,0.02642343,0.014492942,-0.0422793,0.0012915526,0.033251915,0.020672258,-0.114473075,-0.03129567,-0.009203444,0.027580738,0.060038205,0.05207339,-0.06802403,0.05141842,-0.095668994,0.10592482,-0.015567857,0.02459445,-0.0066987337,0.03650851,0.015319601,-0.0060558314,0.02294989,-0.039153162,0.11632794,0.11559048,-0.11271125,0.004892786,-0.027563466,0.1114819,-0.00892128,-1.6703037e-32,-0.0032956162,0.042658105,0.0063703526,0.13930556,0.03916555,0.014827633,-0.05787138,0.03913751,-0.11716202,-0.04531409,-0.026135035,-0.015192904,0.048102748,0.0107944375,-0.024470601,0.08251798,-0.018137269,0.03338912,-0.007685335,-0.06500501,0.0038962073,0.10084118,0.033150055,0.05206473,-0.0723674,0.017334916,-0.019154683,0.037256993,-0.030469669,-0.0485441,0.070552304,-0.07777436,0.03347219,0.018552052,-0.013540554,-0.043053623,0.021028869,0.029660938,-0.06202372,0.07433041,-0.02112174,0.005557038,0.0021057606,0.00078275776,0.005301713,-0.09550858,0.029547853,-0.112298734,-0.051908154,-0.012706847,0.0900441,0.056075186,0.0039294534,-0.03313639,0.053968787,0.03003772,-0.0150632905,0.0019877772,0.017599126,0.02507613,0.053148042,-0.0062124855,0.05094841,-0.0581836,0.050701942,-0.031906024,-0.06648186,-0.041275416,-0.041296847,0.034329183,0.050178375,0.0019607348,0.03974793,-0.030848695,-0.06261999,-0.009631458,-0.049652714,0.048622962,-0.029621735,0.018953562,-0.042532876,-0.052002426,-0.0004898177,0.044410467,-0.043473087,-0.0016676185,0.059113473,-0.0016043624,0.065445185,-0.059792314,-0.035180014,-0.013604676,0.024011891,-0.0068131695,-0.019463003,-6.325224e-08,0.0507417,-0.0021708861,-0.08649894,0.109010756,-0.046356324,-0.058935363,-0.04501984,0.0049950792,-0.13408084,0.12350342,-0.04415955,0.049812656,-0.07399191,0.10087514,-0.008728903,-0.07993797,-0.013774766,0.035493147,0.0005178522,-0.025466321,0.03482617,-0.017931692,-0.00032372173,-0.017050615,-0.060882777,-0.017583404,0.032997683,-0.01601209,0.06692069,0.01629933,-0.015475688,0.08085227,0.029905075,0.00024291078,0.03825101,-0.0008222483,-0.09130115,0.05095086,-0.035765752,0.10768229,0.024673855,-0.044784054,0.0019455536,0.030708143,-0.05180294,0.022499984,0.03349312,0.06998386,0.04969111,0.04905403,-0.016021335,-0.0039421404,0.0017052244,-0.030230038,-0.040511325,-0.0002454562,-0.023682877,0.030362712,-0.046449162,-0.051334344,0.013275896,0.0044670813,-0.018327234,0.0047650845} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:48.801035+00 2026-01-30 02:01:10.124081+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1739 google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE 1 t 1742 Go Karts Mar Menor unknown Es un sitio más que recomendable para ir y pasar un buen rato. El ambiente es bueno. Es entrar por la puerta y empiezas a sentir la adrenalina.\n\nHe perdido la cuenta de las veces que he ido y he disfrutado como un niño. He llevado, por primera vez, a varias personas de mi entorno y siempre quieren repetir. Los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos.\n\nLa única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de cinturón, para ir más seguro.\nPor lo demás, todo excelente. es un sitio más que recomendable para ir y pasar un buen rato. el ambiente es bueno. es entrar por la puerta y empiezas a sentir la adrenalina. he perdido la cuenta de las veces que he ido y he disfrutado como un niño. he llevado, por primera vez, a varias personas de mi entorno y siempre quieren repetir. los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos. la única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de cinturón, para ir más seguro. por lo demás, todo excelente. 5 2024-01-31 01:52:39.833374+00 es v5.1 E1.04 {O1.05} V+ I3 CR-N {} {"E1.04": "Es un sitio más que recomendable para ir y pasar un buen rato. El ambiente es bueno. Es entrar por l", "E4.01": "La única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de", "P1.01": "Los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos.", "R3.03": "He perdido la cuenta de las veces que he ido y he disfrutado como un niño. He llevado, por primera v", "V4.03": "Por lo demás, todo excelente."} {-0.00708432,-0.01838553,0.01831286,-0.02881794,-0.034654103,-0.021666838,0.115200564,0.0020288592,-0.0023366222,-0.000108789005,0.056180168,-0.025347415,-0.07467498,0.02285567,0.068281256,0.01574459,0.010401349,0.015921708,0.0629775,0.02088713,0.039680652,-0.042674616,-0.059630327,0.06417582,-0.049313452,0.010698327,0.048740026,0.03308325,-0.08867409,-0.04780602,-0.0001778767,0.024480881,0.093737856,-0.06805415,-0.019921085,0.043269478,-0.0012622653,-0.064178504,-0.075808525,0.073113374,-0.035188485,-0.017571066,-0.05015744,-0.03126879,-0.03342048,-0.09353879,-0.0026100536,0.012680848,0.036182757,-0.026563704,-0.03576008,0.022726297,0.025646076,0.03321689,-0.06756666,0.0036047488,-0.01652352,0.014155171,0.06281223,0.059207562,-0.05317476,0.02259465,-0.019110393,0.021043595,0.04948155,-0.024736708,-0.031107446,-9.187498e-05,-0.03480416,0.05906166,0.060811907,-0.06960671,0.032180633,-0.042350486,-0.009150095,0.005151366,-0.027775353,-0.030696247,0.006091288,-0.0559964,0.04609371,0.037896283,-0.011702085,-0.053063594,-0.022241252,0.007626364,0.012344834,0.03981266,-0.0030550056,0.056394473,-0.024463834,0.04867795,-0.10249965,-0.03916971,0.023668708,0.009833199,-0.013909531,-0.10500962,0.008973605,-0.011071024,0.056766864,0.08266127,0.096601695,0.053180493,-0.051546797,-0.0048161927,-0.04001507,-0.07025715,-0.030933276,0.031734437,-0.10642131,-0.016645862,-0.021763343,0.020233065,-0.06709051,-0.024550758,-0.02889695,-0.078713484,-0.029998774,-0.04538896,0.06192579,-0.011876111,-0.021364616,0.01678396,0.0069443444,-0.065672554,0.012789037,1.3977252e-32,0.008127979,-0.06664896,0.029431932,-0.024168212,0.085249186,0.066214,-0.021292796,-0.023491936,0.019151231,-0.0012874064,-0.10384627,0.030242097,0.02938001,0.049315363,0.08752636,0.0064945077,0.0005985485,-0.0012880316,0.067196466,0.042094212,-0.03914326,-0.014934679,-0.057722203,-0.0059015863,0.0020877908,0.039838143,0.026703715,0.0035829262,-0.06312684,0.05861303,0.005508427,-0.009887776,-0.040809866,-0.05644543,-0.038245205,-0.06962575,0.018277442,0.059298035,-0.03075873,-0.053647824,-0.025896937,0.036199864,0.040793862,0.06551369,-0.014766399,0.005729317,0.05451191,-0.02182355,-0.0033930265,0.03540576,-0.06176224,-0.053469833,0.05355886,-0.12247749,-0.012350175,0.02249498,-0.029702066,0.038654853,-0.06868742,-0.049383868,0.052436836,0.020348307,0.03229762,-0.094414145,-0.027696187,-0.05766632,0.00012857557,0.029357761,0.10449438,-0.018687025,-0.061027747,0.015034961,0.011554073,-0.032876473,0.024685895,-0.00077127316,0.020279715,0.009636929,-0.010987817,-0.041697145,-0.05765242,-0.03112612,0.025584716,0.0418287,0.085914366,0.0447328,-0.010426404,0.08923671,-0.022748258,0.21506321,0.00014786997,0.08061213,0.049727425,-0.01031716,-0.009266139,-1.3809067e-32,0.052947152,0.04971443,0.005393151,0.02101906,-0.020036643,-0.03966583,-0.048063345,0.00016320022,0.022346076,-0.023106357,-0.115019895,-0.03421792,0.04391081,-0.023525544,0.004999262,0.13000478,-0.03863664,-0.025591822,-0.100597195,-0.13228135,0.0046508284,0.08837618,0.045793798,-0.01015007,-0.014879358,-0.0694363,0.035660375,0.042753898,-0.12956811,0.007983165,0.024872081,-0.05680738,0.034802448,0.053517852,0.0025624863,-0.023056056,-0.00018463073,-0.01767161,-0.079546325,0.07689529,0.09507405,0.06834099,-0.027665012,-0.0227017,0.0076909717,0.018296724,0.0134746665,-0.14045241,-0.04157258,-0.050872937,0.06729692,-0.07661967,-0.06416903,-0.074208595,0.046742525,-0.05380857,0.04597552,-0.063807495,-0.08871856,-0.044810448,0.059674982,-0.04200904,-0.0024512447,0.011832119,0.06962845,-0.03739871,-0.029851316,0.019590238,0.038300894,0.019670073,0.079054065,0.04698121,-0.046608206,0.023703037,0.007822963,-0.0024018127,-0.05544034,0.0029881627,0.008567859,-0.050008286,-0.025867157,-0.056240007,-0.015825966,-0.03721167,-0.011582269,0.018985977,-0.015380713,0.0684951,-0.03939621,0.056848846,0.037148204,0.0063316813,-0.10569726,0.0067311083,0.020655217,-5.84485e-08,0.006934877,-0.027898056,-0.046296075,0.042980496,0.03875503,-0.08416672,0.03815748,0.004815393,0.036433097,0.039300933,-0.0158183,0.021487273,0.048872076,0.088976294,0.06000859,0.057847,0.14852752,0.08323797,-0.0669915,-0.029132009,0.093821175,-0.006210885,-0.083167486,0.07619355,0.041201312,-0.03514006,-0.07315738,0.080928445,0.0343644,0.026467402,0.008507403,-0.019530494,-0.04425443,-0.0648319,-0.01463884,-0.07185363,-0.009565226,0.0037385295,-0.0009295792,-0.00918124,0.024201129,-0.027891036,-0.080315776,0.006683514,-0.06591735,-0.071707785,0.008990073,0.052241027,-0.052787665,0.013755069,-0.08798472,-0.057338577,0.10857557,0.0072791097,0.093996115,-0.052203517,0.016828503,0.017001886,0.022607999,-0.01622866,0.055134658,0.17046909,-0.041184843,-0.03658616} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:20.711785+00 2026-01-30 02:01:10.534713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1554 google ChdDSUhNMG9nS0VJQ0FnSUM3N0pMcGhRRRAB 1 t 1557 Go Karts Mar Menor unknown Always a nice experience. always a nice experience. 5 2025-01-30 01:52:39.833374+00 en v5.1 R2.01 {} V+ I2 CR-N {} {"R2.01": "Always a nice experience."} {-0.041272927,0.056277253,0.02056977,0.004978629,-0.0996122,-0.0450322,-0.021582676,-0.06390331,0.031140292,-0.045907915,0.05921187,0.12734897,0.024710853,0.06811905,0.05461122,0.04911524,0.11321636,-0.008966325,0.026581977,-0.022578565,-0.05216137,-0.07197094,0.027364194,-0.039622337,-0.029185392,0.022918006,0.027939416,0.055166714,0.10280762,0.021563714,-0.09616257,0.046333697,-0.04619591,-0.025863353,0.020961441,0.04709912,-0.015954727,-0.042315327,-0.048015255,-0.015614184,-0.0036445393,0.006211273,0.051742632,0.023155017,-0.03128688,0.0947434,0.071879745,-0.05387666,0.09161604,0.0075623426,0.011729758,-0.017783348,0.033485025,0.030916598,0.00034292642,0.069848366,-0.028175361,-0.07006833,-0.042208813,-0.08949061,-0.06615858,0.0551094,-0.032199144,0.119583175,0.06097066,0.0247959,0.014167198,0.04886692,0.018719176,0.004508717,-0.124746926,0.0290269,-0.0023437466,-0.021468747,-0.001978734,0.045692578,0.051158067,-0.058655117,-0.033553727,0.058092847,-0.0841108,0.019692222,0.0427877,0.039136697,-0.06717051,-0.058401626,0.09642062,-0.07279085,-0.04492443,0.021431305,-0.023883283,0.0830856,-0.05984417,-0.00802894,0.043352064,-0.030203605,-0.035818126,0.02871154,-0.022573905,0.053763423,0.04488226,-0.0011949803,0.0040372573,0.0874435,0.0055078524,0.04380615,-0.05864825,-0.0054963827,-0.014802842,-0.057477023,0.008442423,0.036190096,0.044497214,0.032726493,-0.006764369,0.06456714,0.015293632,0.03520058,0.031902272,-0.040852074,0.0056838156,-0.012724483,0.040894743,-0.043139923,0.0068524634,-0.060237143,0.10406742,-9.5972156e-33,0.030755,-0.021109786,-0.031478804,-0.016104832,0.07716773,0.04994661,-0.053508908,0.054714408,-0.079505265,0.025709968,0.04602539,0.05808774,-0.007840016,-0.031249791,-0.036980566,-0.0028071692,-0.070592225,0.06269919,-0.0042003854,0.023528,-0.05670156,-0.039309893,-0.034066968,0.03927947,0.029927623,-0.013763,-0.046557393,-0.026332095,0.08759839,0.012091028,-0.057484094,0.020230042,-0.07667155,-0.031158218,0.06531062,0.025277924,0.048613306,-0.018662479,-0.06604727,0.040303584,-0.03160871,0.010978476,-0.06448683,0.0016941731,0.024254944,0.03260936,-0.021988565,0.012524719,-0.011042045,-0.08198535,-0.07477121,0.029542455,0.08302675,0.07184868,0.010349917,-0.035555836,0.03266722,-0.023518283,0.028792696,0.02660871,-0.02935033,0.03404344,-0.067891024,-0.04060659,-0.14198504,0.014142415,0.05704205,0.023993127,0.0026996548,-0.044143036,0.005528137,0.09045101,0.06890372,0.018798027,-0.028609505,-0.0034455287,-0.054168012,0.017066902,0.07335649,-0.0073164054,0.05370731,-0.0060970224,0.047167722,-0.0024358977,0.12439281,0.05551063,-0.0064646313,-0.10302485,-0.08497522,0.033631694,0.03174139,-0.024743829,0.08101727,-0.07690353,-0.0010549929,7.989288e-33,0.05008029,0.05292413,0.03150109,0.06167496,0.024980156,-0.06663557,-0.08163151,0.12507534,-0.03482063,0.065556906,-0.005600094,0.044167537,0.0360776,0.019325793,0.011897558,-0.04784431,0.002402269,0.021629423,-0.025131905,-0.03724067,-0.00092846283,0.10929694,0.018003976,-0.012913129,-0.058728322,0.0191761,-0.023298895,-0.015120509,-0.078928985,-0.1003836,0.033248827,0.07940286,-0.110860035,-0.02477353,-0.05678284,0.037418544,0.06151473,0.021591887,0.015252866,0.010637884,-0.004689408,-0.045898397,0.03651756,-0.020519882,-0.0061803036,0.016227575,0.09018244,-0.039299887,0.017131694,0.0031801574,-0.04983422,0.039380774,-0.013151615,-0.05456166,0.0042669843,-0.09633977,0.03362381,-0.037975878,-0.062137328,-0.07310536,-0.10736803,0.035111636,-0.100982584,0.05129627,0.034766372,-0.037550148,-0.038254432,-0.014835504,-0.111055106,0.0338736,-0.06185703,0.035693917,-0.114210054,0.09366248,-0.0061200093,-0.08741398,0.036448263,-0.10091112,-0.008033969,-0.012135893,-0.09947413,-0.028441206,0.050163124,0.031011218,0.089766584,0.045169383,0.00044525892,-0.07366781,-0.04770186,0.017896773,-0.065195754,0.022120543,-0.05778352,0.03572813,0.03663684,-1.9001254e-08,-0.02319222,0.090651,0.018664211,0.005740176,0.014894514,-0.034564093,0.024088042,-0.01835965,-0.05279607,-0.026632585,0.005201492,0.019599345,0.03354487,0.035596788,0.07533624,-0.012825283,0.015990619,0.034876682,-0.080376804,0.013555533,0.016768904,0.086376846,0.013428953,0.106516145,-0.0056942166,0.047988012,0.026072785,0.048305653,0.01598372,-0.05183118,-0.0578134,0.042409748,0.0077239256,0.030455492,-0.047381666,0.050330248,0.03498007,-0.033890955,0.06299201,-0.059015404,-0.08521381,-0.064956136,0.026326047,-0.014533022,-0.08377657,-0.010734076,0.036918815,-0.0066963863,-0.004575835,0.07206636,0.021628201,-0.0021654542,0.01946913,0.09310163,0.08187713,-0.06252474,0.009519702,0.008232698,0.079854764,0.0019992585,-0.018713538,0.046048958,-0.04051985,0.053788893} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:18.079911+00 2026-01-30 02:01:09.773238+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1420 google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE 1 t 1423 Go Karts Mar Menor unknown Kids both loved it and already want to go back. 5 types of car. Slowest are F100 (6yrs+) and Tandem (for adults and kids 6 yrs+) which go around together. These were 8 euros for 8 minutes.\nNext up are F200 (min age 12) 12 euros / 8 mins; and F300 (min age 16) 17 euros for 8 mins.\nThen fastest for adults only are F400s, which are very fast.\nDepending on numbers sold F300s normally race with F200s or F400s.\nTrack is large 1100m with several corners. Fastest lap times are sub 1 minute for fastest cars.\nThere is a very good electronic leaderboard and split timing measuring your fastest lap and gap to car in front.\nOverall very good and will probably go back. kids both loved it and already want to go back. 5 types of car. slowest are f100 (6yrs+) and tandem (for adults and kids 6 yrs+) which go around together. these were 8 euros for 8 minutes. next up are f200 (min age 12) 12 euros / 8 mins; and f300 (min age 16) 17 euros for 8 mins. then fastest for adults only are f400s, which are very fast. depending on numbers sold f300s normally race with f200s or f400s. track is large 1100m with several corners. fastest lap times are sub 1 minute for fastest cars. there is a very good electronic leaderboard and split timing measuring your fastest lap and gap to car in front. overall very good and will probably go back. 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"O1.03": "Track is large 1100m with several corners. Fastest lap times are sub 1 minute for fastest cars.", "O1.05": "Kids both loved it and already want to go back.", "O3.02": "There is a very good electronic leaderboard and split timing measuring your fastest lap and gap to c", "V1.01": "5 types of car. Slowest are F100 (6yrs+) and Tandem (for adults and kids 6 yrs+) which go around tog", "V4.03": "Overall very good and will probably go back."} {0.052418347,0.021774506,-0.030493582,0.015934978,-0.03447119,0.06734514,-0.10637326,0.06300168,-0.064443484,-0.03310367,0.02103589,0.0064421734,-0.039373927,0.045093685,-0.00901435,-0.056457747,0.115971565,-0.0077049043,-0.007585158,-0.039557826,-0.030074136,-0.12473742,0.052958485,-0.01870448,-0.007118002,0.06352699,-0.056325797,-0.019008944,-0.067076676,-0.047650777,0.01921229,0.014850274,0.034454707,-0.034505572,-0.035136126,-0.025877485,0.041743923,-0.029179156,-0.028389286,-0.0033685311,-0.05750709,-0.059788436,-0.079992324,-0.07496817,0.07411682,0.047849976,0.06925267,0.04139415,0.068423815,0.028795566,0.04559498,-0.0041427873,-0.048182447,-0.044255983,-0.05291377,0.054392576,-0.043052737,-0.010971407,0.0029551522,0.014515628,-0.026427,-0.0403512,-0.059768416,-0.01028597,-0.07178514,-0.065456554,-0.049297668,-0.024749417,0.052140586,0.107510895,0.022801228,0.0053976374,0.017075915,-0.015130209,0.033402294,0.011527078,0.07916514,-0.01729981,-0.039883304,-0.08853244,0.009346211,-0.064992376,-0.03928684,-0.06435184,0.074002355,-0.0495094,0.03515063,0.059920233,0.006441599,0.024853276,0.0015574327,0.10010422,0.025364658,-0.015282327,0.0035385385,0.05313958,0.011445969,0.07426475,0.022550058,-0.011172136,0.036951765,0.0069346176,0.09849194,0.07756287,-0.085593455,0.0013483266,0.09147491,0.09113049,0.008856053,0.00047806202,-0.016449204,-0.0050295754,0.03356957,-0.023766201,-0.09081897,0.00068824796,-0.03148032,-0.005220046,0.0840688,0.053300716,-0.020110698,-0.016607476,0.07299747,0.040959135,-0.011010156,-0.00057727937,0.033365157,6.8599176e-33,-0.12447956,0.051643554,-0.04973862,-0.018482083,-0.0579508,0.013899044,0.024968173,-0.045849748,-0.032378532,0.038800035,-0.024850445,-0.040899076,0.0009723909,-0.007096403,0.0688438,-0.018944727,-0.016063465,0.0028976686,-0.08182297,0.003602871,0.060727663,0.061396763,0.07323043,-0.02724996,0.15990156,0.01102083,0.0030354494,-0.015260087,0.05474882,0.008387684,-0.12697905,-0.00317425,-0.09159885,-0.06295361,-0.01786767,0.029429018,0.017680034,-0.051918875,-0.035823356,0.05073927,0.008254433,-0.02176431,-0.095402814,-0.024309374,-0.04526887,0.019933077,-0.047456242,0.08584611,0.002181614,0.009605852,-0.07534767,-0.061697423,-0.07953215,-0.07351937,-0.034371637,0.07533591,0.033413853,0.040844485,-0.083999135,0.006092407,0.05690027,-0.009162117,0.016999159,-0.02996492,-0.085019946,0.06899368,0.027201194,0.06255448,0.011747466,-0.02491457,-0.044441205,-0.0399515,0.052257907,-0.03438719,0.117463976,0.021142917,0.025392717,-0.06281956,0.01574656,-0.006542252,-0.0053166836,0.07298405,-0.04136849,-0.026676014,0.06574513,-0.0011836815,-0.044528753,-0.055451475,0.021891043,-0.0046913964,-0.0011180209,-0.061302733,-0.004720432,0.07079382,-0.014129025,-7.7937575e-33,0.07371175,0.027967418,0.11348758,0.04416396,0.0719662,0.031914447,0.011903351,0.03789782,0.050510284,0.065953165,-0.08818791,-0.031393245,0.09779709,-0.049945727,-0.114802256,-0.016914936,0.073045105,-0.017434776,0.07004773,-0.054823387,0.053973723,0.019519923,0.0015866839,0.007403027,-0.032455266,-0.020983856,-0.02536875,-0.06873032,-0.030622618,-0.061549798,-0.030411744,-0.032763176,0.09744847,-0.01753117,-0.016358383,0.0376525,-0.02811109,0.020134762,-0.042142067,0.0697171,0.04560681,-0.015941944,0.011900868,-0.010990301,0.03132342,0.005442773,-0.041707538,0.015402479,0.0132134715,0.060505733,0.08155838,-0.039483286,-0.08006257,-0.0027161248,-0.047196284,-0.06699669,0.07590232,-0.08238926,-0.015687393,0.058417417,0.009913523,-0.03967113,-0.008285396,0.06443739,-0.019563466,-0.05990639,-0.03700431,-0.019709846,-0.037668597,0.047989413,-0.08552829,0.03475249,-0.021186635,0.055549897,-0.040493984,-0.03363696,0.011716429,0.047707606,0.09916918,0.06956901,0.059875008,-0.0021412505,0.046313144,-0.014873072,-0.050419267,-0.024905633,-0.0061014877,-0.057005845,0.03290268,-0.0062396936,0.13486461,0.0017875868,0.09113392,0.03245529,-0.058674317,-4.4248456e-08,0.06215941,0.038652454,-0.0107628,0.044014283,0.024588306,-0.06950356,-0.047001652,0.024976468,-0.021461328,-0.010513327,-0.021204388,-0.0016265794,0.04523644,-0.03595788,-0.020091735,-0.010573897,0.06499116,0.043686785,0.019967949,0.040594056,0.049527887,0.07410706,-0.04058393,0.027425727,-0.010268446,-0.10818843,-0.023980396,0.07142248,-0.058208305,-0.07612115,-0.036196247,-0.0086248955,0.035452224,0.059691124,-0.021054963,-0.039486703,-0.040280737,0.09447863,-0.06876907,0.03778887,0.03641395,-0.07881987,-0.08507368,-0.05961732,0.024761504,0.0017080951,-0.12881391,-0.08529355,-0.035231613,0.026574373,-0.012790157,0.008831421,-0.051934637,0.0073749498,0.06468296,0.09737766,-0.085536785,-0.015913794,-0.027971353,0.015655011,-0.032979168,-0.07480392,-0.01866141,0.024962815} 0.96 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:20.550405+00 2026-01-30 02:01:09.301396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2224 google ChdDSUhNMG9nS0VJQ0FnSUNRM1lHNzhRRRAB 1 t 2227 Go Karts Mar Menor unknown el mejor karting de la zona con diferencia. A destacar el trato de sus gerentes . el mejor karting de la zona con diferencia. a destacar el trato de sus gerentes . 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {P1.01} V+ I3 CR-B {} {"V4.03": "el mejor karting de la zona con diferencia. A destacar el trato de sus gerentes ."} {-0.014816477,0.09789298,0.012324549,0.05591226,-0.119233795,-0.01602881,0.050052863,0.064629294,0.011752965,0.0023203327,0.09847638,0.010137106,0.02826204,0.052835274,0.012608478,-0.03434971,0.00890823,0.01880088,-0.057094444,0.06660039,0.058193658,-0.026928483,-0.07218648,0.048102528,-0.08173413,-0.008451552,0.0074472744,0.04022824,0.047103498,-0.04090221,-0.06600745,0.044678323,0.027427148,0.0039636986,-0.009137376,-0.03467532,0.0014037025,-0.0048457403,0.031621862,0.07158084,-0.008022052,-0.008578223,-0.040025067,-0.059998028,-0.019318081,-0.009883414,0.0101595195,0.07100268,-0.11501862,-0.04656185,-0.1037699,-0.052262705,0.009084247,0.02010122,-0.019833663,-0.034548394,-0.061671194,0.0007294137,0.06527732,-0.011289269,0.035922255,-0.0108411405,-0.03694041,0.051648155,0.00075423246,-0.09497983,-0.03610772,0.0355981,-0.062052734,0.03127685,0.07904228,-0.05595507,0.024815626,0.030843066,-0.019465711,0.028336797,0.00875963,-0.03933693,-0.06365362,-0.045390062,0.033291943,-0.05800826,0.039304115,-0.054074325,0.07934696,0.0061969077,0.057632808,0.014577192,0.006476673,0.010352334,-0.058776625,0.029313799,-0.113314785,-0.062948205,-0.07524916,0.06283304,-0.004795429,-0.02745285,0.07147772,0.025408745,0.10121931,0.027833054,0.10316875,0.021197062,-0.07844102,0.034804657,0.03903101,-0.080755904,-0.034415554,0.07709669,-0.07299248,-0.121486634,-0.035443064,-0.07946763,-0.086484425,0.0141207995,0.0043057213,0.041858763,-0.022256354,-0.067876026,0.037391502,-0.046489757,-0.0064917603,-0.03808166,0.04888146,0.012575372,0.075427376,3.435663e-33,-0.10645649,-0.07343784,-0.02967853,0.0043246313,0.04666947,0.004116164,-0.065461636,0.0075812778,-0.02615053,-0.005309771,0.017366212,0.097486354,-0.022167418,-0.0983492,0.035808526,0.034412146,-0.04401198,-0.07930752,0.055444133,0.016107555,0.013569711,-0.03665797,-0.01178675,0.0051517524,-0.018876534,0.03783806,0.010265784,-0.09444168,-0.098712765,0.021767205,0.07877838,0.029508881,-0.03092337,0.010245923,-0.030245768,-0.00888643,0.0025955667,0.004955938,0.0035797388,-0.05618124,-0.06634758,-0.048354216,0.020914203,0.02569742,-0.02022221,0.08050344,0.059085913,-0.043242455,0.03280931,-0.0009618885,-0.045255996,-0.051799327,-0.062009946,-0.018731752,0.0008166808,0.06561739,-0.09758251,0.037775833,-0.014862169,-0.040732812,-0.008833439,0.026030421,-0.050355364,0.026373638,-0.03644233,-0.060344547,-0.037910126,-0.0053730537,0.12606154,0.05735978,-0.09254783,-0.054607496,0.058499448,-0.021173792,0.0061479136,-0.019606661,-0.051499136,-0.0055203987,-0.016036235,0.009693031,-0.1310078,-0.08934535,0.024425186,0.044427224,0.051532045,0.028658947,-0.010113323,-0.02567918,0.04605202,0.050303902,-0.048211366,0.03779465,0.076793864,-0.0032486701,0.065946646,-6.198534e-33,-0.028179165,0.048652943,0.031020785,0.07425,0.028726658,0.0020206529,-0.05512613,-0.07072861,-0.07616395,-0.05903032,-0.08073001,-0.07676328,0.062204465,0.029643286,-0.06694269,0.069857575,0.026308013,-0.04541185,0.0023429056,-0.071917675,-0.03215611,0.055859298,-0.00071086246,-0.014350055,-0.05596897,-0.0063591134,0.12048843,-0.035365235,-0.03367787,0.07000014,0.03990947,0.022080533,0.031655267,-0.04511632,-0.071267456,0.012391408,0.08062245,0.020715268,-0.0003166271,0.023146905,-0.001572756,0.02140648,0.054566845,0.02337555,0.033896737,0.023529012,0.035181418,-0.053720396,-0.012943292,-0.025510473,0.15322827,-0.013736004,-0.06625878,-0.064860664,0.07562362,0.029972816,0.041833226,-0.10901344,-0.061764773,-0.0138185145,0.050920792,0.029084701,-0.04145533,-0.013078203,0.01687165,0.022732738,-0.033575226,0.0403551,-0.015089911,0.06657719,0.0014167238,-0.028944524,-0.05155202,-0.008879392,-0.04674134,0.026067939,-0.07071894,-0.014950096,0.020334018,0.023192925,-0.055826794,-0.040763948,-0.016669288,-0.013305336,0.010729491,-0.08726212,-0.09309142,0.0041830633,0.056135446,0.02663229,0.019248692,0.076854296,0.0046344073,-0.04318022,-0.067142956,-3.5233782e-08,0.016004875,-0.09709248,-0.029527059,-0.008270132,0.067768216,-0.0402858,-0.00015716585,-0.005707084,0.005091263,0.12625182,-0.014849602,0.007838458,-0.01772415,0.07624758,0.065800205,0.052271992,0.103993595,0.048659377,-0.033529524,-0.062167652,0.06278436,-0.03149755,-0.080151826,-0.039347846,-0.021222051,-0.0025904148,-0.033569403,-0.0057625207,-0.023221826,-0.052519172,-0.013692687,0.07586805,0.07207859,-0.029454378,-0.024774179,0.015828434,-0.010903918,-0.049016953,-0.0413784,0.0022587683,0.06954413,0.03029785,0.038304005,0.0103340885,-0.021766435,-0.056779888,0.023173677,0.033810537,0.028851474,0.1098171,-0.08028888,-0.029858213,0.060025744,0.033239085,0.114575535,0.006013882,0.03607938,-0.00409785,-0.055132028,0.020923885,0.047793303,0.11484715,0.062169023,-0.023454193} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.370805+00 2026-01-30 02:01:12.513375+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1794 google ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE 1 t 1797 Go Karts Mar Menor unknown Disculpad la reseña sin comentario! He sido asiduo a este Karting desde sus inicios y ha evolucionado de una manera sobresaliente. Después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un biplaza. El trato genial! Siempre volveré. disculpad la reseña sin comentario! he sido asiduo a este karting desde sus inicios y ha evolucionado de una manera sobresaliente. después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un biplaza. el trato genial! siempre volveré. 5 2026-01-30 01:52:39.833374+00 es v5.1 R4.03 {O1.04} V+ I3 CR-N {} {"P1.01": "Después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un", "R4.03": "He sido asiduo a este Karting desde sus inicios y ha evolucionado de una manera sobresaliente."} {-0.031527936,0.06251567,-0.016112559,0.00035165023,-0.12458607,0.07281367,-0.029077947,0.044554424,-0.020357989,0.024987431,0.08228283,-0.060204037,-0.062299553,-0.040447075,0.029327054,-0.03950877,-0.025062481,0.07520878,0.025192868,0.030705415,0.08299093,-0.032810684,-0.10474953,0.001975668,-0.07806199,0.046225,-0.014162604,0.032477826,-0.0035982302,-0.05690819,-0.014645456,0.075577185,-0.052419987,-0.029550064,-0.024532411,0.01994164,-0.023356277,-0.013866253,0.007874858,0.029552834,-0.03732584,0.010896704,-0.048527274,0.008662732,0.0113979345,-0.0717873,-0.012906744,0.1208945,0.029606404,-0.027078511,-0.05747626,-0.028377665,-0.010291178,-0.012260839,-0.10133272,-0.01020557,-0.008890149,-0.036121484,0.09716971,0.0020185234,0.005304444,0.08424776,-0.012655289,0.011073014,-0.11430966,-0.085935764,0.0319055,-0.050957277,-0.019118473,0.04875443,0.102848925,0.0016996843,0.018987086,0.063260555,-0.03213446,0.032849666,-0.05062182,0.044354938,0.0098778065,-0.06523015,0.059359588,0.014438967,0.010194622,-0.034896616,0.07031953,-0.012608969,0.038532972,-0.01462929,0.03761154,-0.013563962,-0.07489079,0.10382341,-0.041799773,-0.059084255,-0.0978802,0.052925587,-0.03426898,-0.013700732,0.037993524,-0.0026492793,0.057835076,0.030788586,0.03267421,0.083135135,-0.0818093,0.015751548,0.02776049,-0.067654,0.008319053,0.038287293,-0.01585214,-0.048103902,0.0025981427,-0.06497145,0.03820382,0.027346198,-0.07340918,-0.021693693,0.008489534,-0.0017219372,0.079413176,-0.008274701,-0.027751924,-0.023901759,0.017790342,-0.075381264,0.100445725,1.20159804e-32,-0.027675947,-0.053489942,0.03952906,0.05238681,-0.020838855,0.011451522,-0.09363348,-0.0049558044,-0.06652877,-0.022417951,-0.028091816,0.018233228,-0.05766971,0.0023709997,0.0125309555,0.052046344,0.051103752,-0.08150795,0.09025721,-0.03184092,-0.056602843,-0.039641507,0.02623068,-0.014694414,-0.03178753,0.03994455,0.015441825,-0.065799244,-0.056435183,0.0612828,-0.01487034,-0.011884416,-0.006048791,-0.01046416,-0.031246703,0.013588104,-0.04004025,0.012783432,-0.059461404,0.043962255,0.008551708,-0.00043184907,-0.05689731,-0.011227667,-0.023510437,-0.03864368,0.10514108,-0.0072629163,0.11203716,0.030598633,-0.086368814,-0.067725696,0.03468011,-0.0676959,0.0112409685,0.017101299,-0.057627257,0.042333648,-0.076972604,-0.03118446,0.049735557,-0.0037679395,-0.009662252,-0.008793949,-0.106436566,-0.11224706,0.015765466,0.008806904,0.058339525,0.027625175,-0.04352347,-0.04930809,-0.084591195,-0.050963096,-0.006489912,-0.00897684,0.02499971,0.089346826,-0.03254906,-0.003403237,-0.04329559,-0.0075422814,0.027331417,-0.01518783,0.11879979,0.0371646,0.09634279,-0.018654035,0.010368594,0.032639787,0.013386491,0.035290845,0.045725863,0.0014751707,0.0794944,-1.3645988e-32,-0.011223704,0.028427033,0.043702215,0.032928113,-0.056596436,0.0022516667,-0.051114716,0.06873867,-0.054813176,-0.07310187,-0.09133624,-0.06562123,0.07680738,-0.08524803,-0.019676639,0.037654478,0.08594074,-0.06069469,-0.020439105,-0.027006073,-0.0264754,-0.018861666,-0.0042540208,-0.091582835,-0.04105608,-0.046697628,0.12067135,-0.035259597,-0.10360132,0.0033712455,0.05275375,0.0116207255,0.031778324,0.00072942174,0.009689776,0.03430953,0.04936347,0.009585433,-0.009526894,0.045363814,-0.06260839,0.060240116,0.06210687,0.005652099,0.012499387,0.006236103,0.07807493,-0.06093096,0.0074065807,0.034606796,0.08619667,-0.08360831,-0.026889995,-0.01857993,0.018150236,-0.028396772,0.0051480257,-0.023646576,-0.071447894,-0.038290825,-0.015504977,0.0028160054,-0.021758547,-0.04491217,0.1042426,0.022333192,-0.064641535,0.04450638,-0.015343096,0.044251256,0.024754552,-0.0502456,-0.11362739,-0.009693851,-0.069440916,-0.07347013,-0.05158729,-0.020835288,-0.0534331,0.045975782,-0.069922484,-0.009442872,-0.07561792,-0.0734817,-0.06982515,-0.061314512,-0.075446784,0.00053827267,0.0037083123,0.03829941,0.03770996,0.039670467,-0.024208657,-0.05093966,-0.021333976,-5.4656105e-08,0.007683354,0.042577345,-0.012761657,-0.0029297243,0.08156232,-0.021167321,0.018325122,-0.03368898,-0.0050774794,0.10273312,-0.011843229,-0.014758194,0.076528855,0.063358046,0.04832515,0.08610668,0.106799535,0.09013902,-0.009275845,-0.03647333,0.10477087,0.0032245163,-0.017266084,-0.04588594,-0.03494391,-0.0042226,-0.02843891,-0.053374555,-0.01712798,-0.017007733,0.040254798,0.019566879,-0.01856332,-0.118029065,-0.100123204,0.0138835795,0.02440006,0.048921388,0.021416897,-0.084980205,0.088902235,0.051646825,0.008471967,0.046966095,-0.042484522,-0.044287007,0.06224794,0.0732306,0.0017251639,0.07556744,-0.1283394,-0.034553733,0.046809155,-0.04385009,0.020958828,-0.028324906,0.0726848,0.03459313,-0.034574956,-0.029609002,0.050073512,0.057203367,0.03426623,-0.007143165} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:52.355822+00 2026-01-30 02:01:10.731905+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1775 google ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB 1 t 1778 Go Karts Mar Menor unknown Venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fondo. No necesitas más velocidad para pasarlo muy bien 15 minutos. Vueltas de 1 minuto sabiendo coger las curvas y con cuidado de no patinar, 👍😃😃😃👍 .\nBuena atención y no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momento. venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fondo. no necesitas más velocidad para pasarlo muy bien 15 minutos. vueltas de 1 minuto sabiendo coger las curvas y con cuidado de no patinar, 👍😃😃😃👍 . buena atención y no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momento. 4 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {O4.04} V+ I3 CR-N {} {"O1.02": "Venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fon", "O3.04": "no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momen", "P3.01": "Buena atención"} {0.03663332,0.09395025,-0.013734568,-0.0731837,-0.058814548,0.03287062,-0.015743336,0.07861418,-0.052840278,0.018851165,0.11904325,-0.051082913,-0.03084333,-0.00417708,0.02854361,-0.047624987,0.0041838707,-0.058809813,-0.029200645,0.014334233,0.018555483,-0.08508415,0.028122356,0.06051748,-0.08646384,0.018029759,-0.05853057,-0.046719056,-0.042616885,-0.032617234,0.008918301,0.075405665,0.009260797,-0.029022066,0.014851776,0.021605492,0.045592256,-0.05329292,0.016322697,-0.025100762,-0.11638458,-0.042035803,-0.0018700485,-0.100258335,0.03235803,-0.041876886,0.017837677,0.013814688,0.07605618,-0.019300336,-0.0047728424,-0.023275524,0.030059049,0.03603278,0.06439226,0.004915792,-0.053367887,-0.045846406,0.05836553,0.059078433,-0.03963117,-0.016158052,-0.07669964,0.014439944,-0.012410761,-0.06033426,0.03804635,-0.1003819,-0.0068682986,0.12077734,0.10771333,0.04616181,0.028527608,-0.011427129,-0.021042377,0.03416785,-0.0021494713,0.034777746,-0.03343896,-0.1030331,0.033196248,-0.041245,0.01707126,-0.025370674,-0.035588827,-0.050677415,-0.025615444,0.05341945,-0.049018864,-0.011059979,-0.07127482,0.0899254,-0.031854168,-0.014603841,-0.06212945,-0.017824754,-0.0017073359,-0.060984846,-0.04529209,0.042804357,0.03164759,0.040067196,0.06283552,0.011327161,-0.023108346,0.050342906,-0.016448991,0.011365252,-0.028178237,0.038782638,-0.046364214,-0.029314762,0.031406734,-0.033527263,-0.11589067,-0.09957045,-0.020641899,-0.08011408,0.037803806,-0.08231888,0.057552848,0.021863569,-0.022138769,0.022168938,-0.01807379,-0.09167367,-0.019191809,1.4687806e-32,0.02640821,0.018042495,-0.012135724,0.070154935,0.0593183,0.038487975,0.01938836,-0.034241762,-0.022247273,-0.03171874,-0.011810629,-0.03129915,-0.016366387,-0.042102553,0.09287884,-0.022211501,0.08956054,-0.046566926,0.050341625,0.028091898,0.007044956,-0.06292381,0.022334313,0.012079435,-0.009069284,0.09335663,0.018697176,-0.0030912508,-0.099288814,0.05862692,-0.026574973,-0.008058024,0.048924506,-0.047719143,0.014175074,-0.07597326,0.12716675,0.010055757,-0.05701333,-0.03702717,-0.0104837315,0.020905036,-0.028996566,0.023358718,0.044803984,0.03954542,0.08700678,0.018882593,-0.019350812,0.07323297,-0.03240042,-0.031282555,-0.08302124,-0.041320644,-0.014391229,0.039417442,-0.038078256,-0.062205754,-0.06993925,-0.023091745,0.13311952,0.007403243,-0.0018335369,-0.041947503,-0.0885839,0.0014914344,0.07161217,0.07217566,0.04617324,0.07284231,-0.020346213,0.05873197,-0.039453268,-0.077645026,0.06991959,0.06397081,0.0331064,-0.018528333,0.0027269525,0.04587166,0.0021236038,-0.016600255,0.020597596,-0.004157791,-0.01088544,0.011295446,0.010013973,0.06122922,-0.06225538,0.07492621,-0.023284473,0.051529106,0.068737514,0.010885928,0.02552882,-1.5231969e-32,0.02397118,0.07668193,0.023719955,-0.031541213,0.00052621966,-0.03788647,0.029549135,0.03491791,0.041503605,-0.021891631,-0.061116003,-0.12821522,0.05583985,-0.09337439,-0.06908124,0.046235707,0.039165024,-0.0542857,-0.0032480948,-0.05256076,0.008676162,0.08912138,-0.021686614,0.033499386,-0.004370141,-0.024504231,-0.021396121,0.012357117,-0.13919781,-0.008512383,0.032924768,-0.10699692,0.07067057,0.001790757,-0.01336382,0.020177104,0.021859905,0.053352974,-0.036830515,0.015863795,0.058363486,0.07012286,-0.016094934,-0.017695146,-0.038887214,0.014165257,0.026681302,-0.11778027,0.018711217,0.024336852,0.06432813,-0.099559695,-0.0045557395,-0.020903952,0.04731611,-0.054657348,0.013561542,-0.045894716,-0.068408005,0.037679717,0.08289577,-0.05109975,-0.056740496,0.04263108,0.03723039,0.018869625,-0.091366135,0.00988369,0.039134875,0.115957476,0.07484497,-0.006193323,-0.08960884,0.036220532,-0.08594705,-0.02950575,-0.051757824,-0.002178426,0.040532306,0.055225376,-0.02507925,-0.0010632479,-0.065065525,-0.018260507,-0.015262902,-0.062060215,-0.0035052318,-0.020476671,-0.024742955,-0.0075799148,0.011116148,0.089990176,0.01572527,-0.06776409,0.03307378,-5.6916694e-08,0.059572633,-0.027906155,-0.05695477,0.005603854,0.075272076,-0.027921634,-0.0138290385,-0.016068608,-0.012287426,0.05024398,-0.05162909,0.033164844,0.02093268,-0.029248316,-0.08324097,0.0030813618,0.15958782,0.034429267,-0.013908388,-0.07138024,0.05282357,-0.02689265,-0.017799385,0.0036515384,-0.08446381,-0.04040427,-0.013932183,0.0004091365,0.0024479858,-0.012581861,-0.06645708,-0.041082803,-0.069150135,-0.1060895,-0.030338937,-0.06320387,-0.06939698,-0.003864101,-0.057678018,0.026773632,0.071053736,0.009925688,-0.07980171,-0.0076576453,-0.03072354,-0.020277057,0.06919246,-0.037751082,-0.05626133,0.06910238,-0.034137305,0.006491697,0.0414428,0.02684843,0.027436027,-0.037927315,0.057739977,0.09955255,0.012125779,0.09071913,0.072042994,0.08055266,-0.0029344873,-0.023333386} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:40.602166+00 2026-01-30 02:01:10.662459+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1849 google ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE 1 t 1852 Go Karts Mar Menor unknown Los trabajadores son muy amables, hay un ambiente súper bueno, he ido 4 veces y en las 4 veces ha sido la experiencia de 10, el circuito muy guapo y los Karts también. Espectacular 👌 los trabajadores son muy amables, hay un ambiente súper bueno, he ido 4 veces y en las 4 veces ha sido la experiencia de 10, el circuito muy guapo y los karts también. espectacular 👌 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {E1.04} V+ I3 CR-N {} {"O2.03": "el circuito muy guapo y los Karts también. Espectacular 👌", "P1.01": "Los trabajadores son muy amables, hay un ambiente súper bueno", "R3.01": "he ido 4 veces y en las 4 veces ha sido la experiencia de 10"} {-0.019542089,0.0067286277,0.018911274,-0.046756007,-0.056973677,-0.0040563303,0.090939336,0.058145925,-0.03509868,-0.008081077,0.06420301,-0.02150348,-0.01889026,0.037825402,0.04607771,0.049086243,-0.03560209,0.008837542,0.0007875058,-0.051598266,0.1158706,-0.056893304,-0.011837794,0.041039277,-0.03847564,-0.03926094,0.01604841,0.02577663,-0.024341881,-0.088111974,-0.035992898,0.10017658,0.010257399,0.0055184597,-0.0072837025,-0.00849402,-0.0029088298,-0.022307554,-0.039114643,0.0494782,-0.06415638,-0.08066089,-0.0009758341,-0.080111735,-0.048496902,-0.100920066,0.00568146,-0.0046165134,0.003651687,-0.0275869,-0.0048105074,-0.038054436,0.055907365,0.02451516,-0.00562231,-0.025914801,-0.049291536,0.04362536,0.09357102,0.076958574,0.06990096,0.04769827,-0.080926046,0.028120315,0.018154308,-0.022780579,0.017435933,0.0021043392,-0.06563256,0.065616444,0.12079056,-0.08228878,0.00033949214,-0.041781407,0.009699037,0.04202709,0.0014679903,-0.058983672,-0.032980423,-0.052140586,0.03512546,-0.02733734,-0.003217091,-0.10024802,-0.044367865,-0.006768889,-0.013385022,-0.006792819,-0.013574233,0.029003393,-0.0011278223,0.034351736,-0.0658565,-0.041655574,-0.0053297873,0.021856362,0.033832647,-0.06538538,0.0018869584,0.03341019,0.07947385,0.043104645,0.087337084,0.08022515,-0.047441892,0.018269043,0.071957715,-0.015822284,-0.037999146,-0.04243373,-0.02061371,0.005340456,-0.039247777,0.016048457,-0.022038572,-0.025537213,-0.011850838,0.036761098,-0.077469304,-0.032907546,0.03414599,0.018183522,-0.037245415,0.030322665,-0.0017280318,-0.036406994,0.06954388,1.11100416e-32,0.009204438,0.0013146165,-0.018031336,0.014497363,0.08127023,-0.010762045,-0.09218285,0.035194475,-0.023306191,0.006942492,-0.05562014,0.07073877,0.025466694,0.054463763,0.0890212,-0.03939012,-0.057652906,-0.03937355,0.089655414,0.00812182,-0.037749395,-0.059196267,-0.028043685,0.13173579,-0.028252594,0.06199549,0.0051431763,0.02332878,-0.041324273,0.0719105,-0.036861237,0.07601088,-0.025193036,-0.02140226,-0.047032937,-0.007524138,0.052050423,0.055726882,-0.0015029812,-0.05631921,-0.025725123,-0.03146289,-0.04643888,0.004185944,-0.020572726,-0.022970233,0.049504653,0.038876027,0.080813825,0.008718279,-0.101264946,-0.03899325,-0.054310583,-0.05886129,0.07103089,0.019466847,0.01589342,0.05349519,0.029688347,0.0037012235,0.08471049,0.03905841,-0.004444158,-0.030638045,-0.041674234,0.005995249,0.06315195,-0.037821863,0.09163732,0.0070228316,-0.079064175,-0.0028353152,0.022351582,-0.0014650867,0.12688504,-0.00026408618,-0.022390699,2.6226155e-05,-0.019389864,0.027412454,-0.13613579,0.0001956947,0.03760112,0.020522546,0.081501275,0.058645997,0.009250255,0.016665401,-0.00736111,0.1612781,-0.059571113,0.056235414,0.062282726,0.009052156,0.0073702633,-1.1857615e-32,-0.025422426,0.048183527,0.005603334,0.044667874,-0.037139975,0.03402295,0.011967724,0.018476957,-0.035308935,0.00052690296,-0.011677129,-0.023408877,0.05592065,-0.061533377,0.04908868,0.040925447,-0.008315137,-0.08475443,-0.05570657,-0.02555248,0.06614976,0.059600558,-0.006231317,-0.022425694,-0.023571711,-0.03009322,-0.038774412,0.016045798,-0.089705564,0.032283425,-0.03288044,-0.061704334,-0.012824477,0.124160595,-0.07535521,0.0002754133,0.072463945,0.04913891,-0.026840024,-0.004959576,0.012015597,0.041243818,-0.0024754466,0.0007428616,-0.0490688,0.004452172,-0.01614608,-0.14729461,-0.06649754,-0.08000239,0.11832135,0.0034271153,-0.06833148,-0.055751942,-0.00075372175,0.0010210657,-0.0034856512,-0.08026915,-0.09981566,-0.01587944,0.05493112,-0.021652121,0.024121491,-0.013949919,0.07461937,0.008775192,-0.031766117,0.060495112,0.069906324,-0.048651513,0.08030506,0.009348129,-0.07962414,-0.0114339255,-0.030812832,-0.06365319,-0.12566197,-0.036718175,-0.03360776,-0.02332839,-0.027203126,0.0039253747,-0.03381811,-0.08092657,0.00070177956,-0.05323985,0.009562484,0.047636542,0.08888241,0.05780763,0.036966972,0.07333231,-0.0655589,-0.005091547,0.018452344,-4.605871e-08,-0.003003801,0.009556657,-0.02334956,-0.021011392,0.03995188,-0.07823673,-0.010826019,0.04268291,0.01743663,0.053910736,-0.007739546,-0.035993446,-0.029896377,0.100552686,0.058344405,0.004568233,0.026265537,0.07874573,-0.05185308,-0.06019487,0.04782493,0.017509915,-0.057917114,0.041866552,0.028823392,0.039819982,-0.06567153,0.004703069,0.019064497,-0.01086307,-0.056208037,0.02689751,-0.121630765,-0.078384824,-0.06666255,-0.004775314,-0.038706746,-0.004093555,-0.0230177,0.025240231,0.035531897,-0.066030875,-0.111762404,0.05663121,-0.07011877,-0.085287385,-0.10036304,0.0057501486,-0.014487668,0.06824101,-0.08211702,-0.03129233,0.047514565,0.038620617,0.05608685,-0.079299666,0.027579263,-0.028366935,-0.070863515,-0.001709154,0.03902001,0.12557903,0.022999082,-0.1179529} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:04.199802+00 2026-01-30 02:01:10.942579+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1813 google ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB 1 t 1816 Go Karts Mar Menor unknown Muy buenas instalaciones y bien diseñadas las medidas de seguridad. El mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viejas. Por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de movilidad. muy buenas instalaciones y bien diseñadas las medidas de seguridad. el mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viejas. por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de movilidad. 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.03 {E4.01} V+ I2 CR-N {} {"E1.03": "Muy buenas instalaciones y bien diseñadas las medidas de seguridad.", "O1.03": "El mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viej", "V1.02": "Por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de mo"} {0.03312972,0.051484544,-0.029787147,-0.037177306,-0.06471854,-0.015218325,0.017287832,0.043864336,-0.04873724,0.022657331,0.11219672,0.045556646,-0.010828997,0.005566176,-0.014065453,-0.04518767,-0.03163231,0.0024439134,-0.038206343,-0.03086793,0.009288468,-0.04954597,-0.057854477,0.06424333,-0.12820943,-0.030686056,0.00033309875,0.028199082,-0.020463333,-0.07545642,-0.056408066,0.010074005,0.095489234,-0.012573057,-0.070068285,0.0055994936,0.050877396,-0.03399355,-0.07482893,0.062183224,-0.04904224,-0.030221662,-0.07074902,-0.017744964,0.014782754,-0.03511659,-0.06361587,0.013220673,-0.018516373,-0.009619019,-0.05572419,-0.025848644,0.022926996,0.02300769,0.023601716,-0.036532283,-0.065155484,0.043477226,0.10588983,0.01753107,0.07039119,0.07201601,0.001492491,0.0030141417,-0.030929122,-0.06488943,0.030088358,-0.019733543,-0.0068399976,0.018806756,0.07862738,-0.117667235,0.011443076,0.019613897,-0.02632732,0.014140477,0.01108293,-0.01319203,-0.046064086,-0.0656787,0.035498973,0.02626256,0.026227953,0.011073276,-0.044264942,-0.017666113,-0.028462961,0.0059206197,0.07823534,0.03628149,0.008153774,0.04098133,-0.051714934,-0.097764865,0.033672027,0.016979605,0.034995627,-0.101380944,-0.0014389481,-0.029353043,0.05839768,-0.094741605,0.098099716,0.0582354,-0.04299482,0.013518741,-0.06288734,-0.07046969,-0.0015484915,0.06927022,-0.07120286,0.027175482,-0.045109686,-0.005485813,-0.11869524,0.025606615,-0.039581858,-0.045877732,-0.0046044583,0.003922381,0.044100888,-0.016664345,0.03514077,-0.044200897,0.07329297,-0.014194379,0.016465487,9.537496e-33,-0.13101935,-0.024313943,-0.05493355,0.06526682,0.020870348,-0.12850456,-0.0003850389,-0.10463874,-0.049369063,-0.0035348549,-0.075110406,0.09676792,-0.033741057,0.071339846,0.11512753,0.0067576324,-0.02412365,-0.026573118,0.015663318,0.039851937,-0.022346536,-0.013088336,0.0071951863,0.040846672,0.067240946,0.047649845,0.066000044,-0.013979569,-0.05312022,0.022913301,0.010177089,0.00013734584,0.022769107,-0.037231605,-0.07747269,0.006085946,0.0059698294,-0.008955964,-0.07518186,-0.016152905,0.052522294,-0.031260185,-0.004576051,0.002240218,0.022956476,0.015755825,0.04714708,0.01196084,0.036495786,0.042288575,-0.07611524,0.026406458,0.0015648482,-0.07445234,0.008291375,0.05215792,-0.03243271,-0.029670764,-0.033104338,-0.019613069,-0.0051573175,-0.041283287,0.019863907,-0.031201737,0.016928218,-0.16259986,0.059118815,0.057537623,0.07128867,0.023832528,-0.11505583,-0.060131792,-0.090728715,0.006981645,-0.028801916,0.033489183,-0.011924048,0.1030278,-0.066296145,0.03778789,-0.05394247,0.01898237,0.021296855,0.01877661,0.13148025,-0.0077162297,-0.023193149,0.07699469,-0.013365392,0.08730774,-0.030906491,0.0971656,-6.844796e-05,0.029753473,0.02601801,-1.3881469e-32,-0.027593786,0.033665303,0.030652834,0.074273,0.0025322856,0.049641598,-0.0073060044,-0.028145598,-0.027194694,-0.017582199,-0.09612207,-0.01758344,0.03179454,-0.04328293,-0.011339375,0.047506534,-0.030768927,-0.024552925,-0.056513906,-0.021963611,-0.022386486,0.083519764,0.044059895,-0.017763078,-0.03687553,-0.03250555,-0.02914343,0.046221003,-0.1947863,0.042623244,0.04500586,-0.07909473,0.027146181,0.052311905,-0.06707242,-0.055098698,0.028521009,0.056641784,-0.058648188,0.072420344,0.072797135,0.092265874,-0.022527754,0.024487507,-0.06329474,-0.020199466,0.0370865,-0.15287985,0.0052503822,-0.06918765,0.11796776,0.030293293,-0.005113698,-0.04983711,0.009336903,-0.05600634,-0.003714802,-0.00706837,-0.034782596,0.02827362,0.051401895,-0.023602787,-0.030893214,-0.063374646,0.041616354,-0.024885256,-0.030182332,-0.051330823,-0.04210039,-0.008107425,0.051102445,-0.0026227715,0.0013635041,0.025945984,-0.00281891,-0.050026987,-0.048458412,0.069674775,0.008373265,-0.02277646,0.060506135,-0.10844896,0.020440608,0.00824474,-0.055424646,0.004429057,-0.049273133,0.033468403,0.056056026,0.013961488,-0.008229973,0.02323366,-0.049124505,-0.014245704,-0.027541855,-5.8519788e-08,0.029261343,0.0062679066,-0.051139913,0.01040902,-0.029747624,-0.032119423,-0.04584288,0.104946986,-0.007583173,0.076984085,-0.059320934,0.015046551,-0.00468157,0.06609497,0.026810067,0.0012441337,0.008516512,0.14810266,-0.059711117,-0.0151176965,0.056324583,-0.015662458,-0.008971632,0.09382478,0.036358207,-0.068707585,-0.051682703,-0.04233338,0.022301005,0.054967523,-0.0057948777,0.011265896,-0.013027858,-0.017356368,-0.023235295,-0.052547798,-0.058261964,0.046776123,0.03957588,-0.043306258,0.0037690443,-0.030683499,-0.0779156,-0.018729353,-0.108512044,-0.044409968,-0.057857845,0.03062251,-0.06598562,-0.0069979755,0.00561025,-0.050352007,0.05338826,0.045544773,0.012562982,-0.05277783,0.07941782,0.016569173,0.00014303098,-0.04078464,-0.015078301,0.04058752,0.06972028,-0.06659356} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:54.915988+00 2026-01-30 02:01:10.802534+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1836 google ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB 1 t 1839 Go Karts Mar Menor unknown Heel vriendelijke mensen en heel proper zowel buiten als binnen. Ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke mensen heel vriendelijke mensen en heel proper zowel buiten als binnen. ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke mensen 5 2024-01-31 01:52:39.833374+00 nl v5.1 P1.01 {E1.01} V+ I3 CR-N {} {"O2.03": "Ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super", "P1.01": "Heel vriendelijke mensen en heel proper zowel buiten als binnen.", "P3.05": "en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke "} {-0.0763371,0.08284471,0.020274542,-0.019579548,-0.11109868,-0.015390285,0.011600822,0.047938064,-0.031518452,0.011423447,-0.003035777,0.01929764,-0.02373331,0.022006372,-0.08079643,-0.04524208,-0.047451444,0.12483315,-0.018065384,-0.04932916,0.10450941,-0.064815335,0.009090564,-0.05094609,-0.04748981,0.025049983,0.044923592,0.065072335,0.0637899,-0.049676605,-0.0065727467,0.012585593,-0.028044013,0.018239193,-0.031054737,0.04710538,-0.021309659,-0.047184918,0.020786833,0.033705264,-0.0670233,-0.09446136,-0.062060297,-0.09901813,0.11449966,0.0196323,-0.012597776,-0.025620492,-0.04837601,-0.028870748,0.009721531,-0.08025278,0.08531455,-0.007841688,0.02506983,-0.0022950463,-0.06547171,0.012391053,0.07753263,-0.04066587,0.072820276,-0.00095146894,-0.03634174,0.009982655,-0.0281051,-0.06479971,-0.092691585,0.06813777,-0.07590832,0.13259722,0.05228354,-0.048525512,-0.05765087,-0.02584182,0.05662657,0.027525796,-0.046588376,-0.058883917,0.015235928,0.0008692233,0.062640205,-0.043095108,0.001209857,0.0075983037,0.00047409782,-0.0072391457,0.044816647,0.030068075,-0.0025533387,-0.005780734,-0.096004725,-0.036348913,-0.043466587,0.01238676,0.012726467,-0.024646332,-0.036135737,0.10018495,-0.06923524,0.012611801,0.09252334,-0.0039144875,-0.024060154,-0.012475695,-0.028706223,0.02370313,0.031871684,0.027909735,0.12141046,0.0035193933,-0.051067423,-0.012889143,-0.090531975,-0.13342242,-0.057157353,-0.013419317,-0.101419725,0.008776267,-0.028222714,0.024395796,-0.015913406,0.065000236,-0.0038541206,0.060185052,0.0628501,0.019556694,0.06977868,1.8208363e-32,-0.11090206,-0.0032191954,0.037161574,-0.06374403,0.0137431435,-0.015265502,-0.028370835,-0.07818234,-0.0019354707,-0.044714775,-0.00036900284,0.054710172,-0.059024256,-0.09079178,0.04546291,-0.027073316,-0.029844226,-0.0844384,-0.042731468,-0.007280986,0.063615896,-0.060539257,-0.011381106,0.019991785,0.022662772,-0.06372238,0.07091977,-0.08123623,-0.0027996663,0.038262635,0.015689462,-0.03321574,0.012790371,0.0023461226,-0.07200552,0.02593637,0.055307064,-0.012379493,-0.026169129,-0.08572904,0.027310878,-0.08837518,0.016710702,-0.005553733,-0.025993776,0.09367097,0.021220412,0.062102903,0.010205845,-0.038388636,-0.06726191,0.021256452,0.0042138565,-0.00040677233,0.0843467,0.013633579,0.06828522,0.09165882,0.01631099,-0.02546559,-0.008623923,0.004229953,0.04774304,0.034893833,-0.04449011,-0.039843697,0.011277035,-0.07352879,-0.0051734936,0.010874198,-0.09909866,0.047616042,0.02636125,-0.015212128,0.018014193,0.05317582,-0.06021413,0.058942497,-0.02115168,-0.008992632,-0.14050235,-0.087112136,-0.024992213,-0.051191606,0.1001996,0.0108925495,-0.022689525,-0.111524545,0.05262924,0.11107923,-0.05599984,-0.011287386,-0.011216311,0.008853388,0.037048355,-1.7575028e-32,-0.030099545,0.13426977,0.00015858366,0.10691891,0.025896598,0.0070332545,-0.018705873,-0.0509604,0.018565057,-0.04539134,-0.015880613,-0.031200789,0.07052544,0.014877507,-0.010558017,-0.048497073,0.028769983,0.014389207,0.100977995,0.015719084,0.038231608,0.010524319,-0.07345949,0.050044138,-0.061599992,0.034453727,0.06930934,0.02890943,-0.0857991,0.06995768,0.07426535,-0.08408942,-0.011232518,0.07216783,-0.028625201,0.037075352,0.030639175,0.092212744,-0.021897322,-0.0071384003,-0.019570667,-0.0008058592,-0.07862693,0.027884046,-0.010379099,-0.052189533,0.0014609662,0.0069450354,0.0182831,-0.065430075,0.069057815,0.07375597,-0.07023613,-0.05526264,0.004508994,0.0050539295,-0.033856895,-0.057889972,-0.05772256,-0.03479192,0.024189884,0.0049694413,0.011251991,0.0263884,0.023113796,-0.04763328,-0.10847739,0.043677535,-0.0048649726,-0.06284429,-0.011046506,0.028730633,-0.007715359,0.020167286,0.003062257,-0.0005707933,0.011705636,0.02910492,0.041109137,-0.024353808,-0.078291886,-0.027813002,-0.01808902,0.0151503915,0.0019457473,0.072963014,-0.013905678,0.032210298,0.032268327,0.025935356,0.022581913,0.12463033,0.0128895175,-0.01817931,-0.09842493,-4.831313e-08,-0.0035373431,-0.013495201,-0.0034666872,0.014610564,0.06321598,-0.07192545,0.005053185,-0.011658675,-0.06259322,0.019138109,-0.023995051,0.014307844,0.0031071117,0.020945486,0.034428123,0.04998772,-0.015037846,0.1043686,-0.012680743,-0.048106983,0.021022635,-0.034445606,-0.009732638,0.06349732,-0.016620442,0.017968044,0.07138187,-0.03610089,0.08666261,-0.02447495,0.03273684,0.030859351,-0.0142820375,0.046376925,0.020576067,0.060979873,-0.09046215,0.10822818,0.019132411,0.0028129069,-0.024355901,-0.04838379,0.0692969,0.010653627,-0.09796168,0.017852226,0.036542166,-0.032260533,0.047586508,0.0049913116,-0.11121714,0.0020666001,0.015553749,0.052814424,0.09166744,0.05212663,2.1007687e-05,-0.018018156,-0.061426878,-0.056134157,0.0030411275,-0.0037822179,-0.051770233,0.03691184} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:13.982781+00 2026-01-30 02:01:10.898221+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1774 google ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE 1 t 1777 Go Karts Mar Menor unknown Siempre ha sido un sitio familiar y muy bien atendido. Pero ña chica nueva deja mucho qie desear en el trato con el cliente. Le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello. Pero si ham de tomar nota. siempre ha sido un sitio familiar y muy bien atendido. pero ña chica nueva deja mucho qie desear en el trato con el cliente. le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello. pero si ham de tomar nota. 5 2026-01-30 01:52:39.833374+00 es v5.1 P1.02 {} V- I3 CR-N {} {"P1.02": "Pero ña chica nueva deja mucho qie desear en el trato con el cliente.", "P2.05": "Pero si ham de tomar nota.", "R3.04": "Siempre ha sido un sitio familiar y muy bien atendido.", "R3.05": "Le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello."} {-0.0030690483,0.02681361,0.02745832,-0.07949221,-0.10750106,0.0043443027,0.0597164,-0.01665904,-0.025675233,0.0018961255,0.036443606,-0.015846144,-0.031686857,-0.043895997,0.024703747,0.07166684,-0.011708644,0.0455725,0.019936915,0.012779742,-0.016373178,-0.07403656,-0.096971646,0.06892194,-0.06385786,-0.033453275,0.07906317,0.018541574,-0.060271848,-0.0747351,-0.07816868,0.07819965,0.068573385,0.024927052,-0.04069098,0.01624663,0.040003836,-0.054307487,-0.06269123,0.04896315,-0.033190113,-0.0015405702,-0.030291555,-0.010396626,-0.016569491,-0.06507107,-0.009099158,0.059263065,0.04343493,-0.09230687,-0.122413285,-0.06109939,0.003523961,-0.005460553,-0.061584342,-0.04613262,-0.003152234,0.0036711537,0.009948354,0.042212922,-0.0058513386,0.014700211,-0.03933902,0.040186178,0.021997688,0.008114545,0.0019801096,-0.032122888,-0.11451096,0.00048067828,0.04812316,-0.008660156,0.0084109,0.023804732,-0.10156607,0.022222025,0.02891094,-0.024799079,0.025901645,-0.04277325,-0.055154774,0.08564176,-0.014034969,-0.06741489,-0.006385738,0.018463068,-0.031284407,0.060031187,-0.0039086966,-0.020781007,0.0027951542,0.0691279,-0.07937318,-0.05804649,-0.008963687,0.04226344,0.03488132,-0.022327652,-0.01715334,-0.0019558496,0.1154666,0.10495635,0.021564139,0.02300039,-0.027216587,0.084671676,0.00046456006,-0.06294459,0.029200211,0.03724629,-0.11701433,-0.005060873,-0.101723395,0.025571894,-0.076545045,0.016020924,0.00037697534,-0.05320387,-0.021893447,-0.06606607,-0.009664378,0.030942058,-0.080201775,-0.017694522,-0.0024097553,-0.073881954,0.021357369,1.5129281e-32,-0.011482314,0.0036250665,0.02817396,0.041787043,0.012183645,0.023127262,-0.015735565,-0.031737518,-0.09758897,-0.06356585,-0.06746969,0.009587639,0.0071524223,-0.010469389,0.02471335,0.08033521,0.026511144,-0.038339186,0.10375744,-0.02234382,-0.050244827,-0.032021943,-0.022703646,-0.0073524895,-0.033663202,0.08017778,0.012497013,-0.030136421,-0.014060637,0.046854984,-0.011375775,-0.023447724,0.03449046,0.014558934,-0.019337814,-0.023903701,0.04093885,0.03271748,-0.011641597,-0.029188694,0.026207225,0.058112673,0.012619095,0.017731868,-0.031339724,0.0066525443,0.046586193,-0.024862373,0.0024043848,6.615347e-05,-0.052416928,-0.08636174,-0.086921364,0.028579567,0.031834517,0.018562945,-0.012406383,0.06426543,-0.00227291,0.0117094545,0.067653276,0.001143499,0.03419034,0.01285433,-0.0045917286,-0.014834473,-0.010679633,0.02414511,0.13418873,0.026619332,-0.0021574365,-0.033876546,-0.044146307,0.014959477,-0.014976183,-0.011289436,0.037314504,-0.027836483,0.124343485,0.02495115,0.029054755,-0.019130683,0.028937733,0.03026324,-0.006142267,0.094274655,0.0884271,-0.0055853785,-0.09159063,0.17308262,0.078282915,0.0400629,0.051999822,-0.0641863,0.021991495,-1.6464516e-32,-0.024191316,0.01686612,0.03274624,-0.035078023,-0.036972366,-0.046298582,-0.07298796,-0.008608998,-0.04768615,-0.03838414,-0.05197288,-0.15100576,0.13862753,-0.017479343,-0.048945803,0.087236375,0.045733362,-0.047948014,-0.03970541,-0.06821591,0.020995565,-0.016764864,0.02743803,0.021196116,0.025852703,-0.10851009,0.00066388043,0.027503727,-0.15623994,-0.052225225,0.04232838,-0.054649804,0.013677758,0.004367283,0.005911619,0.014837346,0.04889275,0.022943407,0.034866005,0.050257348,0.007219094,0.052075494,-0.076256886,-0.035740394,-0.08441446,0.010650433,-0.011606084,-0.11093226,-0.016107121,-0.015521245,0.05291907,-0.06560692,0.00617086,-0.018283252,0.0010090312,0.032673877,0.018181255,-0.052034885,-0.05540126,-0.008571891,0.0038807802,-0.0044641728,-0.06698792,-0.034401346,0.10093134,-0.0016406839,-0.041183993,0.079985,0.019628605,0.025074752,0.027443906,-0.028292287,-0.123039246,-0.025088461,-0.07788504,-0.048882127,-0.09276003,-0.020947177,-0.005740002,0.043607704,-0.03449443,-0.008659588,-0.019948779,0.013609112,0.023255555,-0.028417457,0.06098128,0.10193412,0.00017805048,0.036711343,0.04018795,0.078229934,-0.08542965,-0.069115944,-0.043262508,-5.520596e-08,-0.010289482,-0.13507259,-0.021391895,-0.022245347,0.055278696,-0.008125401,-0.039928664,0.021357927,0.025216585,0.15535377,0.016431386,0.026033532,-0.06682357,0.025501441,0.0005412772,0.0654508,0.13693567,0.016247937,0.009701541,0.0064885896,0.08014792,0.02705822,-0.05592473,0.0014597374,0.0074555525,0.0019875097,-0.015937964,0.013243155,0.015772589,-0.012346942,-0.061345592,0.031061208,-0.05574348,-0.114730515,0.005753052,0.050935693,0.042140547,-0.032326143,-0.034426134,-0.016569113,0.07183993,-0.005642298,-0.04744338,0.01438803,-0.01972376,-0.03792533,0.0038921125,0.0029428748,-0.0029334382,-0.034709726,-0.08011504,-0.025895702,0.1231769,0.013028494,0.026379518,-0.05612391,0.024117019,0.029686587,0.06737771,-0.00038415138,0.071828544,0.09998454,0.028938755,-0.010075471} 0.775 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:31.216033+00 2026-01-30 02:01:10.659531+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1753 google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE 1 t 1756 Go Karts Mar Menor unknown Perfecto para pasar una tarde de ocio diferente. Tienen distintos paquetes dependiendo del tiempo que quieras estar. De precio muy bien. Estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver. El personal un 10. Muy amables y ayudando en todo momento. Cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al Mar Menor. Recomendable. perfecto para pasar una tarde de ocio diferente. tienen distintos paquetes dependiendo del tiempo que quieras estar. de precio muy bien. estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver. el personal un 10. muy amables y ayudando en todo momento. cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al mar menor. recomendable. 5 2020-02-01 01:52:39.833374+00 es v5.1 O2.03 {O4.03} V+ I3 CR-N {} {"E1.04": "Cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al Mar Men", "O2.03": "Perfecto para pasar una tarde de ocio diferente. Tienen distintos paquetes dependiendo del tiempo qu", "P1.01": "El personal un 10. Muy amables y ayudando en todo momento.", "R4.03": "Estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver.", "V4.01": "De precio muy bien.", "V4.03": "Recomendable."} {-0.050821953,0.04103552,0.00941676,-0.10050325,-0.09915493,-0.041413732,0.0571709,0.027673377,-0.036620785,-0.016667606,0.09695159,-0.011830834,-0.07957267,-0.040608037,0.044839244,0.044022094,-0.040912382,0.014324248,-0.02583498,0.071369596,0.0071931053,-0.08489305,-0.08976736,0.09361031,-0.06517391,-0.06687143,0.021924209,0.021774407,-0.04413965,-0.016148424,0.04654922,0.00016304143,0.1111489,0.05172957,-0.033855736,-0.0055796113,0.043506656,-0.059435017,-0.02251511,0.1501577,-0.074269645,-0.032955024,-0.019009236,-0.013775051,0.019304914,-0.007581028,0.06608112,0.08196141,0.0015552471,0.013466153,-0.08352252,0.05287772,-0.06968305,0.033169717,0.0247777,0.015219503,-0.045310207,-0.016339721,-0.009061333,-0.011830068,0.006063243,0.023758419,-0.069046326,0.043490395,-0.0047185537,0.034870185,0.027667852,0.045741573,-0.0056039244,0.05166607,0.12877476,-0.0854384,0.01882658,0.00886924,-0.04931228,0.07161255,0.018871766,-0.02877665,-0.05366584,-0.01131016,-0.051457997,-0.07517212,-0.07379442,-0.062838696,0.0005422021,0.0039859097,0.0040649725,0.009142718,-0.008889334,0.0045660567,-0.0424045,0.114062674,-0.027755218,-0.024131954,-0.030773723,0.1162662,0.019920247,-0.034126922,-0.07096926,0.041657384,0.13468818,0.07253215,0.016673513,0.025778806,-0.024353508,0.06514521,0.0639846,-0.013991076,-0.0022696126,0.036003996,-0.0011038638,-0.037423223,-0.03144631,-0.03627236,-0.08847197,-0.06525347,-0.024554212,-0.0054894397,0.072729714,-0.051804468,-0.019004317,0.035010926,0.0012294113,-0.024537254,-0.08416046,-0.05047115,0.0238641,1.4341556e-32,-0.049727924,-0.04170344,-0.01228699,0.026770823,-0.079638876,0.031080976,-0.06749062,-0.026993128,-0.09732301,-0.04584585,-0.008056051,-0.008194115,-0.039599724,-0.023902263,0.04239494,0.010812473,-0.002730451,-0.0044432636,0.04726606,0.044084784,-0.05361973,-0.04234937,-0.035272855,-0.031227123,0.019944713,0.015198654,-0.0007235834,-0.0042568827,-0.027139623,0.028440222,-0.017969577,0.02063241,0.044117182,-0.058394656,-0.09604278,0.0076138657,0.07267114,0.064801514,-0.033272594,-0.0203594,-0.00045653057,-0.020663835,-0.0059115347,0.03677283,0.034682125,0.0021537424,0.09023163,0.043058753,-0.02684082,-0.013087403,-0.0867794,-0.08993061,-0.028453907,-0.019881736,-0.024012174,-0.0364835,-0.045683455,0.020082086,-0.027378632,-0.083533764,0.077661425,-0.011182658,-0.019082995,-0.039318778,-0.05099661,0.02226973,0.06811959,0.037630025,0.15378694,0.011649834,-0.07174206,-0.036649,-0.11440039,0.0044121235,0.043680623,0.048292145,-0.0015814409,0.0072880937,0.02876705,0.037355233,-0.0009995842,0.030247113,0.019425672,0.09168361,0.051504157,0.09737772,0.083608374,0.022805218,-0.046389714,0.10737271,0.024462944,0.05296913,0.08950294,-0.015196059,0.07434848,-1.3601316e-32,0.0340059,-0.010418097,0.022256212,0.067165315,0.037244897,0.022938864,-0.018720945,-0.044743914,-0.00016533794,-0.044185027,-0.053695805,-0.14457105,0.10166058,-0.048255455,-0.012229947,0.099006295,-0.010440035,-0.092335865,-0.009691353,-0.024925008,0.078033976,0.017791418,0.017911864,0.004775476,-0.021141987,-0.07180749,-0.017014084,-0.0065746834,-0.06275839,-0.020069515,0.01986429,-0.04566093,0.00074358605,0.0022890659,-0.025656521,0.073284894,0.04684941,0.015315415,-0.006235275,0.060977932,0.01168583,0.05863854,-0.04937425,-0.036733657,-0.04459204,0.036435988,0.033333067,-0.11528521,-0.092516065,-0.028533095,0.038442407,-0.008631153,-0.07106203,-0.03539171,0.04673762,-0.0015984097,-0.014920686,-0.023514468,-0.09587013,-0.022124412,-0.0006528287,-0.028637612,-0.06301152,-0.026622713,0.054918934,0.012330623,-0.042388655,-0.004672815,-0.11740763,0.006188867,-0.002621036,-0.014415783,-0.06852788,-0.0045020077,-0.02708923,-0.027269606,-0.03292546,-0.01321074,0.096440464,0.0695992,-0.02680973,0.0037148467,-0.022551205,-0.004251482,-0.0012388324,-0.019405948,0.02095202,0.06094885,0.012864996,0.06519674,0.030969743,0.047330674,-0.040077053,-0.08817761,-0.030895216,-5.1630987e-08,0.03860176,-0.05561635,0.012835315,0.022365024,0.02862645,-0.006607672,0.005579963,0.016734734,0.06655456,0.06168427,-0.006866753,-0.059517376,-0.0705356,0.03741691,-0.022145458,0.0037673742,0.082000256,0.039900027,-0.029164389,-0.037837554,0.12582622,0.00492915,-0.039320696,0.026929883,0.005455352,0.0027496335,-0.06595923,-0.028022964,-0.0489114,0.06662242,-0.009683286,-0.05689796,-0.012626453,-0.103903145,-0.021925732,-0.021117296,-0.031683154,0.02293576,0.02758983,0.0032988014,0.116497986,-0.045730468,-0.10966897,0.02100981,-0.00883591,-0.062311165,0.032058664,0.009677417,-0.05471084,0.05127791,-0.015918873,-0.011414236,0.1178904,-0.034134503,-0.006889415,-0.05408157,0.048782155,0.09715171,-0.0151905,0.026184423,0.07437882,0.08871122,-0.046703912,-0.05372} 0.9166667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:39.98322+00 2026-01-30 02:01:10.584835+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1824 google ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB 1 t 1827 Go Karts Mar Menor unknown Muy buen servicio y el niño encantado , ya quiere volver muy buen servicio y el niño encantado , ya quiere volver 5 2022-01-31 01:52:39.833374+00 es v5.1 P3.01 {} V+ I2 CR-N {} {"P3.01": "Muy buen servicio", "V4.03": "el niño encantado , ya quiere volver"} {-0.018240904,0.083526455,0.07048144,-0.019447006,0.0077879014,-0.03958008,0.011203575,-0.03747315,0.0016198416,0.0053839646,0.034405794,-0.024407826,-0.03624331,-0.006437294,0.02259017,0.01993438,-0.07810065,0.018492028,0.02034849,-0.01861128,0.113570854,0.028823264,-0.1521595,0.06918089,-0.06085677,-0.011399181,-0.034692407,0.04540509,-0.056193173,0.004135043,-0.05049033,0.07695727,0.022621354,0.034684077,-0.068451956,0.018158615,0.054395683,-0.029489782,-0.05874936,0.09529086,-0.051396843,0.008221366,-0.007384658,-0.015471056,0.013673238,-0.033678107,0.0024633112,0.0069540413,0.018568533,0.01227171,-0.059792776,-0.03137399,-0.044534523,0.030323459,-0.025258945,0.0126167545,-0.03118653,-0.052313317,0.0698378,0.05285654,-0.046195086,0.06088806,-0.041338783,-0.011944939,0.08564492,-0.038550466,-0.017767513,0.02546473,-0.06481643,-0.00013930397,0.08854198,0.022300903,0.023225745,0.013556342,-0.0536145,0.03275266,-0.03074299,0.010954861,-0.03302463,-0.039710373,-0.008392994,0.008544079,0.00028179362,-0.020797672,-0.008409551,0.004108318,-0.0006067707,0.015719993,0.045488525,-0.029282806,0.03084405,-0.037728224,-0.017050436,0.013036709,0.008273177,0.07299844,-0.003059273,-0.11422971,-0.018557148,0.024019403,0.053276453,-0.04736189,0.10477774,0.023943007,-0.028305829,0.006636842,0.021538047,-0.059053153,-0.012805528,0.008559796,-0.070920184,-0.019576412,0.0137626715,-0.0034024073,-0.02762098,-0.028108548,-0.03060823,0.013989974,-0.028368682,-0.08002974,0.034241542,0.08956851,-0.08654861,0.0009304806,-0.010051893,0.002392919,0.085156016,5.56445e-33,0.0077139367,-0.09340125,0.036137402,0.081973046,0.00077851705,-0.0003925755,-0.032425348,-0.0069463775,-0.054769635,-0.103310384,-0.016220322,0.006847939,-0.019265935,0.015119151,0.00403025,0.025948538,0.034664705,-0.033007205,0.0220862,0.055750944,-0.07759749,-0.07021617,-0.013478417,0.003968635,-0.061819382,-0.016292369,0.022086348,-0.079472676,-0.06465882,0.054448444,0.055986587,0.0010850085,0.02710698,-0.011864802,0.013913086,-0.03834553,0.04946923,0.05438782,-0.02491426,0.006334696,0.0038785965,0.043922696,-0.01652112,0.041110992,0.0035084002,-0.025971016,0.075920284,0.07772685,0.06330862,0.020067036,-0.055353027,-0.059826326,-0.10289498,-0.14342071,0.008735263,0.102443494,0.0025005722,0.033330627,-0.03544534,-0.12476598,0.032365266,-0.03192093,0.11493959,-0.12769353,0.04620193,-0.030509697,0.0605092,0.025369098,0.06957448,-0.03429781,-0.053731486,-0.026010456,0.006332805,-0.047533825,0.024934635,0.012575514,0.084231,-0.033824597,0.05744958,0.037795424,-0.06399686,0.0004753459,0.0147666205,0.052792907,0.044833787,-0.032216992,0.05854684,0.07861685,-0.009392257,0.073379986,0.017855579,0.091315694,0.05141816,-0.07737436,0.032289576,-5.369669e-33,-0.000982807,-0.018210335,0.005240218,0.093303375,-0.028932178,-0.013801517,-0.04627516,0.0421025,-0.052782863,-0.02465374,-0.088558905,-0.13831457,0.13804215,-0.07223175,-0.013439094,0.09801953,-0.02002344,0.040266838,-0.06829156,-0.013945488,-0.037725262,0.07313837,0.03212769,0.009088899,-0.034209445,-0.052923337,-0.015950242,0.0783332,-0.13020624,-0.0014002591,-0.0014214177,-0.08207645,-0.037613314,0.054324154,-0.012733653,0.10825313,0.075610064,0.0038448088,0.02978864,0.032264628,-0.0675009,0.029387355,0.011493496,-0.022906782,-0.02200611,0.032592848,0.06309647,-0.0087117385,0.03832054,0.023295235,0.09462991,-0.018611692,-0.09393231,0.038787436,0.067473,-0.016380807,-0.06245142,-0.030310435,-0.12018172,-0.026787402,0.002851032,-0.044031035,-0.039349437,-0.021579785,0.04756498,-0.012007299,-0.066667974,0.0459273,0.055550843,0.048509132,0.08368774,-0.011482867,-0.045160264,-0.02735297,0.0072190617,-0.03543942,-0.050857596,-0.04894538,-0.073626034,0.0030161173,-0.06538575,0.042757656,-0.011236722,-0.036635574,-0.06351617,-0.036556695,0.014720228,0.029745717,-0.011004527,0.072638206,0.030797547,0.056106023,-0.12512238,-0.016904721,0.011172317,-2.4570891e-08,0.081931084,-0.004500698,-0.02363838,0.04209572,0.016016893,-0.04790359,0.028527068,0.021846367,0.067563325,0.08714334,-0.00011961968,0.015887408,0.009566599,0.028370457,0.052735668,0.020909116,0.10498523,0.08534448,-0.014654338,-0.062006503,0.0795097,0.005192177,-0.024633624,0.008016341,0.027585236,0.0018199768,-0.07737301,0.03279408,-0.004220953,0.0019854433,0.0014212861,-0.012033684,-0.07451609,-0.113191925,-0.040782157,-0.010449678,-0.05965302,0.011422424,0.0072279307,-0.060195945,0.12907593,0.04857152,-0.059951294,0.026695112,-0.045426365,-0.053699184,0.02946933,0.03212739,-0.010809179,0.04417321,-0.027357468,-0.056418646,0.09376861,0.05586253,0.04396693,-0.00029426633,0.06390126,-0.029514879,0.025824603,-0.01365171,0.012541589,0.105721824,5.7514273e-05,-0.11650625} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:42.138802+00 2026-01-30 02:01:10.851293+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1803 google ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE 1 t 1806 Go Karts Mar Menor unknown Primera vez que mi hija de siete años pilotaba un kart. Espectacular, ha salido eufórica de su carrera. Los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infantil, todos corren en la misma pista, mejor este método que la pista infantil ).\nLo hemos pasado en grande. Volveremos seguro primera vez que mi hija de siete años pilotaba un kart. espectacular, ha salido eufórica de su carrera. los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infantil, todos corren en la misma pista, mejor este método que la pista infantil ). lo hemos pasado en grande. volveremos seguro 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"J2.01": "Los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infanti", "O1.05": "Primera vez que mi hija de siete años pilotaba un kart. Espectacular, ha salido eufórica de su carre", "V4.03": "Lo hemos pasado en grande. Volveremos seguro"} {0.008646318,0.005132778,-0.058578715,-0.031904783,-0.10470176,0.025088945,0.021162277,0.083267756,-0.020844877,0.06504919,0.07666842,0.0027207287,-0.060324308,0.0076455045,0.01061632,-0.02003827,-0.007411573,0.025081554,0.06944924,-0.0037291928,0.06683535,-0.018900309,-0.043921065,0.07535434,-0.071875684,0.044367526,0.051722888,0.009659791,0.022682164,-0.116062425,-0.070192024,0.05616433,0.07749799,-0.029243786,-0.03249841,0.010682986,-0.011541214,-0.04309898,-0.079518534,0.019696176,-0.028337568,-0.010292366,-0.089287736,-0.021660818,0.015363822,-0.039837286,-0.07837784,0.016918013,0.016851371,0.0006444768,-0.067820184,-0.06303307,-0.033697244,0.044973064,-0.0019907712,-0.09159799,-0.12309201,0.0648599,0.1143782,0.01612703,0.025605438,0.06375938,-0.038726203,0.007487082,-0.03367927,-0.039737288,0.049088676,-0.031619698,0.011278346,0.04986391,0.019412197,-0.06460633,0.039991252,0.06172669,-0.020220187,0.0041536647,0.017613012,-0.030256988,-0.04082331,-0.044292457,0.00035242704,-0.009567154,-0.07125948,-0.05511915,-0.005651965,0.019025235,-0.050886866,0.053554162,0.00593234,-0.056730255,-0.0031426335,0.05909961,-0.06642028,-0.07247619,-0.027949333,-0.0338433,-0.036557768,-0.0977825,0.014687244,-0.045110594,0.11009648,0.013646611,0.10041235,0.1028961,-0.084338166,0.04819757,0.03389563,-0.11207556,0.019836603,0.07231987,-0.12740126,0.039446324,-0.028098822,-0.008696541,-0.083120264,0.035188902,-0.035511695,-0.05023742,0.04053414,0.016549686,0.0028267135,-0.03714374,0.00043701453,-0.0026728015,0.019142782,-0.10313918,0.0680432,1.2321527e-32,-0.092415184,-0.016737642,-0.006481814,0.018487466,0.042300068,-0.06307264,-0.00028102574,-0.14817122,-0.054089848,0.029809128,-0.088802904,0.105524026,0.020238688,0.086126365,0.045236338,0.016089235,0.0074811676,-0.015807433,0.021840217,0.05115226,-0.0440236,-0.07211255,-0.0036500348,0.024520904,0.06806977,0.082644194,0.038908176,-0.038744573,-0.02229629,0.0470514,-0.019050736,0.023438768,-0.06175848,-0.016995322,-0.08459509,-0.04048105,0.020364048,0.029276157,-0.07370157,0.023725735,-0.060849313,-0.0346298,0.009965128,0.046894543,-0.037543204,-0.03457087,0.0059206183,0.011640255,0.09278864,0.01405164,-0.040712543,-0.07837268,-0.055154897,-0.06544571,0.009963738,0.08919872,-0.063951455,0.052132666,-0.062038843,-0.054128494,0.026079755,-0.01656363,0.0030175515,-0.0015025354,-0.038510367,-0.092006534,-0.053367104,0.056065116,0.10427812,0.039439797,-0.08218121,-0.032020587,-0.050130643,-0.043368176,0.04129449,0.020220647,0.049457945,0.07422387,-0.09839062,0.10764441,-0.012209811,0.02385978,0.037852693,0.038838405,0.07739044,-0.02454728,0.024601677,0.029332984,-0.013457149,0.091510765,-0.06709356,0.04761386,0.039949253,0.02217065,0.021695286,-1.3247264e-32,0.05365046,0.066390224,0.088630676,0.05277777,-0.017978404,0.030894244,0.0829625,-0.009188057,-0.05993044,-0.055721436,-0.09072478,-0.05437004,0.06042785,-0.055649396,0.019566378,0.05203124,-0.01874933,0.0063986694,-0.0033617825,-0.052520625,-0.04950631,0.039855797,-0.0039046563,-0.024490856,-0.000748172,-0.019817974,-0.014379072,0.064934224,-0.15047403,0.006773033,0.036638387,-0.0460036,0.034887288,0.061693314,-0.026472397,0.031760454,0.050591983,0.062187433,-0.052616008,-0.0005170206,0.06787742,0.025340753,0.030554509,-0.034282546,0.0022925034,-0.047005415,0.112983294,-0.09676898,-0.030627523,-0.033906534,0.099817485,-0.00033903125,-0.047561534,-0.007086986,0.07574654,0.008227189,-0.0024925966,-0.038489893,-0.021166928,0.020325894,0.02150501,-0.045569032,-0.036531605,-0.04848204,0.09589711,-0.01840804,0.036366533,-0.010588695,0.03743627,0.03034867,0.047005013,0.05823336,0.00012339439,0.0705886,-0.006336382,-0.056586247,-0.07921176,0.02500736,-0.030740159,-0.027955443,0.063144214,-0.06541106,-0.02892955,0.020459738,-0.018978674,-0.01944789,-0.034891292,-0.00010901873,0.038341716,-0.031922992,0.058240023,0.050441585,-0.058578406,-0.02011612,0.0013322501,-5.4657505e-08,0.030859629,-0.008962872,-0.06705746,0.00018292252,0.008757698,-0.05645872,-0.0022473978,-0.006367427,-0.06454557,-0.021083692,-0.058024503,-0.014699242,0.055334248,0.0652719,0.05926186,0.042703435,0.061091453,0.13244128,-0.009270839,0.003181715,0.03197044,0.034222677,0.02253872,0.0077586053,-0.043897554,0.020431923,0.0042050993,0.01389173,0.0035204038,0.010487253,-0.038794536,0.04101068,-0.048669465,-0.022346424,-0.04834868,-0.065587595,-0.00021674781,0.11010593,-0.044518515,0.015762087,0.031024585,0.05432766,-0.07953262,-0.012299468,-0.10027939,-0.02962634,-0.041994665,-0.053336944,-0.012314118,-0.0023486135,-0.047266852,-0.014878991,0.05494978,0.007239954,0.030171238,0.03668981,0.052541513,-0.07183375,-0.0034241807,-0.0015128943,-0.008932667,0.054477334,0.04308209,-0.034075107} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:20.885258+00 2026-01-30 02:01:10.766365+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1555 google ChZDSUhNMG9nS0VJQ0FnSUNnc3JhellnEAE 1 t 1558 Go Karts Mar Menor unknown Great track, well run! great track, well run! 5 2019-02-01 01:52:39.833374+00 en v5.1 O1.02 {J3.01} V+ I2 CR-N {} {"O1.02": "Great track, well run!"} {-0.028030349,0.00084007654,0.013453673,0.027535152,-0.01993537,0.080793925,-0.06932328,-0.05825298,-0.04903391,-0.080624394,-0.042514574,0.032854095,-0.051883314,-0.09003041,-0.03952385,0.048621457,-0.041873857,-0.019672424,-0.004195368,0.034100942,-0.034288395,-0.011214002,0.043231845,0.05860869,-0.16802321,0.097746275,-0.018812865,0.009540187,-0.04773122,-0.013016299,-0.03509409,0.022493236,-0.010073314,0.01887088,-0.008822054,0.037982754,0.010725149,-0.054162316,-0.0030601916,0.01984159,-0.015279907,-0.033562932,0.06541166,0.036661703,-0.007820363,0.11064116,-0.012431673,-0.07435325,-0.0009191384,0.031023728,0.01183968,-0.007082425,0.006773093,-0.031215487,-0.051979538,0.07687815,0.005553172,-0.05019711,0.0015738554,-0.09611599,0.0079340385,0.004113022,-0.073413946,0.032073367,0.029942498,-0.039094556,-0.050556313,0.052941762,0.00078254513,0.052111365,0.0417772,0.064004205,0.02033634,-0.033015292,0.0026328026,0.053795844,0.010751879,-0.016096855,-0.051353436,-0.056362752,0.054237,-0.066788435,0.002400487,-0.06935401,0.002268204,-0.04484242,0.024056934,-0.010532047,0.023153102,-0.009016931,-0.019196074,0.057606123,-0.013473647,0.00130165,0.069997706,0.0277287,-0.029960267,0.01189339,-0.04267965,0.026571382,0.09970672,0.003763373,0.0077777435,0.06936512,-0.021952173,-0.007976227,0.0024333901,0.0762468,0.014450067,-0.07220604,0.16788991,-0.038164392,0.057066318,0.093925506,0.03900601,0.006733089,-0.020343313,0.040753983,-0.014374358,0.054985434,-0.024989257,-0.0070297285,-0.028103957,0.041168027,0.009405623,-0.0662874,0.086349465,-3.4387137e-33,-0.0042595295,0.024219243,0.022613995,0.025159448,0.07728918,0.011250677,-0.07329592,-0.015298773,-0.098468125,0.031824358,0.013210364,0.012584539,-0.031650804,-0.0039239437,-0.030011121,-0.070822105,-0.06530021,-0.051470295,0.034580342,0.11339095,-0.00845287,0.02384867,-0.040079836,-0.05994538,0.05223137,-0.018696316,0.0080690775,-0.027313024,0.042197127,0.03129386,-0.0044148257,-0.012285228,-0.06968015,0.0431141,-0.038792226,-0.01857863,-0.10702791,0.029025996,0.0132184345,-0.0009882733,0.073438734,-0.0019127821,-0.0004956177,-0.003948604,-0.097168386,0.02432002,-0.019417746,0.117971264,0.123092525,0.0075365626,-0.047490668,-0.05535335,-0.057792604,-0.0039615175,0.019690558,-0.09048845,0.027284173,0.058568522,-0.018129677,-0.009185837,0.087026164,0.06486044,-0.09867092,-0.0625326,-0.021925233,0.026849436,0.027012562,-0.05583829,0.021992479,0.038758874,-0.038326535,-0.066314235,0.022537244,-0.019981418,0.06945,-0.00029402575,-0.020211251,0.016021607,-0.056605946,-0.03921177,-0.0217838,0.027684065,-0.03807786,-0.04115992,0.039422467,0.017960733,-0.01708975,-0.08131341,0.014679431,-0.018746564,-0.030262206,0.021953916,-0.02724056,-0.0010239838,-0.07353505,1.4576416e-33,0.103910945,0.14612381,0.09927733,0.04457222,0.0024543435,0.06262163,-0.02090281,0.019398773,0.048794728,0.037626788,-0.039979305,-0.040486865,-0.025731454,0.013141004,-0.018186951,-0.031051248,0.08301999,0.018396199,0.00019887493,-0.075251356,-0.058090195,-0.01609864,-0.0081370035,-0.015376086,-0.021583414,0.018056862,0.06714812,-0.012477016,0.024921453,-0.06328048,-0.034694225,0.04071772,-0.07207112,-0.104237475,-0.045015294,0.06669648,-0.006067714,-0.019707752,-0.05720538,0.005922027,-0.016553715,0.08697579,0.021088265,0.08308727,-0.034942288,0.0044950205,0.006736417,0.15396515,-0.106512025,0.015723575,0.026843518,-0.08626587,0.0077029695,-0.015097145,-0.049230237,-0.07220027,0.06392145,-0.007615401,-0.039414022,-0.007999136,-0.044724595,0.09639794,-0.01986908,0.009412869,0.07023754,-0.021381114,-0.04281416,-0.05000523,-0.0026639502,0.08877494,-0.15455443,0.049083915,-0.08350679,0.033997543,-0.050575383,-0.057208925,-0.01926913,-0.014354313,0.022938462,0.07571042,-0.017671673,0.020437324,0.05624179,-0.041694943,0.038105074,0.0913526,-0.020438543,0.009035493,-0.039259486,0.10304101,0.037896,0.11106441,-0.004994711,0.029700277,-0.072984755,-1.6164652e-08,-0.025229324,0.13103956,-0.0534873,0.0076293447,0.066557065,0.03100323,0.062631264,-0.03709228,-0.030480258,-0.012741847,0.04991454,-0.013392222,-0.052598674,0.1252354,-0.009272722,-0.04616447,-0.04935856,0.09946173,-0.03039054,0.02489822,-0.0333554,-0.029741175,0.013678918,0.055773392,0.0123733375,-0.06889684,0.023852602,0.034388117,0.002329738,-0.06908604,0.012967502,0.10242918,-0.031375743,0.03227821,-0.0142629165,0.040376086,-0.015102422,0.076363936,0.07372247,-0.0315772,-0.060831413,-0.006111628,0.032390125,-0.020826101,-0.019352064,-0.05399756,0.0029709926,0.012273831,-0.044579815,-0.053442545,0.0075614327,-0.06176659,-0.03135532,0.052145533,0.072732106,0.06079713,-0.012846988,0.030439295,-0.0755024,0.04351624,-0.024670126,-0.0694469,0.014344924,0.07295319} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.529157+00 2026-01-30 02:01:09.77621+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1556 google ChdDSUhNMG9nS0VJQ0FnSURtOFp2aXBnRRAB 1 t 1559 Go Karts Mar Menor unknown Nice place, reasonably priced. nice place, reasonably priced. 3 2023-01-31 01:52:39.833374+00 en v5.1 V1.01 {E1.04} V+ I1 CR-N {} {"V1.01": "Nice place, reasonably priced."} {0.019009354,0.018056246,-0.030146534,0.042380575,-0.090356946,0.009148098,-0.03493131,0.035502274,0.018792655,-0.002555107,0.007903205,0.011734292,-0.01945065,0.0024702507,0.005047469,-0.05871745,0.11044509,-0.06619536,0.099835515,-0.11661927,-0.1409023,0.029484684,0.11223695,-0.007327232,0.022122644,0.027304,0.001830308,0.07271585,0.040123597,-0.013774984,-0.01566537,0.026522886,-0.05890869,-0.017613208,0.055013876,-0.00053851266,0.0357393,-0.08869677,-0.04349824,-0.0034032618,-0.018013094,0.0053199106,-0.00693811,0.002438983,-0.086948335,0.074908674,0.02295557,0.00029846077,0.07677612,0.056822594,-0.019696357,0.01541189,0.004822843,-0.09312007,-0.042596336,0.04294939,-0.06269449,-0.08592139,0.05262374,-0.14545414,0.059443023,-0.008570371,-0.10353749,0.10988146,0.05651857,0.006525836,0.0011303375,0.0441218,0.03761538,-0.03592393,-0.010867847,0.018166145,0.05014629,-0.0013388094,-0.0074454946,0.0015455093,0.0821965,0.0042924345,-0.034900498,0.0033584137,-0.017168641,-0.022976415,-0.019871194,0.04413777,0.006058285,-0.093903884,0.078690395,-0.023467356,0.046388183,-0.025961755,0.043107934,0.0715379,-0.11502772,0.0071040187,-0.031226704,0.028497966,0.001621348,0.018454928,0.0091994135,0.032078214,0.027159424,0.08545891,0.02165348,-0.025568139,-0.020716874,0.028087992,0.022249367,0.07403499,-0.018804166,-0.06024328,-0.04701557,0.046392847,-0.10771674,0.0030514193,-0.011970259,0.027122203,0.024429109,-0.04522213,0.043554917,-0.0455153,0.030878117,-0.05525046,-0.005213622,0.04351276,-0.017310595,-0.045829717,-0.024015816,-5.3649944e-33,0.014390011,0.11606146,-0.03674132,-0.022693438,0.033039324,0.013836253,-0.036429264,0.022045325,-0.020444373,0.080694295,0.0396426,0.034994762,-0.041255217,-0.022854716,0.012955538,-0.0987328,0.05939179,-0.049137734,0.0034782167,0.020465882,-0.12373438,0.024658445,-0.0011621241,-0.018001407,0.0025702743,-0.019025331,0.015731497,0.026791308,0.14071308,0.031566165,-0.06034231,-0.015698504,0.025713224,-0.023268258,-0.002461823,0.023479236,-0.05431749,-0.007236587,-0.009649182,0.023359299,-0.0007924044,0.038434498,-0.020919316,0.033385914,0.070710234,0.035262085,0.038553912,0.02355173,0.035938036,-0.026877478,-0.09212591,-0.0067517767,-0.08421842,0.077845864,-0.040466007,-0.058144897,-0.0039285365,0.007136957,0.07717,0.0005092435,-0.012284596,0.040992584,-0.061882384,-0.035067007,-0.09856938,-0.013973199,-0.00088783423,0.0585498,0.0026803238,0.011224832,-0.006995722,0.012870388,0.13047852,-0.058476157,-0.039342802,0.03331735,-0.07665126,0.03923918,-0.009612409,0.04766351,0.05482882,0.0071863355,-0.03486038,0.046721693,0.06283923,-0.0423428,0.02004376,-0.109299794,-0.06567366,-0.043059092,-0.011896424,0.040273793,-0.00066417345,-0.017490119,-0.0083577875,3.184055e-33,0.09798206,-0.040674366,0.073783495,0.12195859,-0.056280375,0.035434388,-0.08782418,0.045934726,-0.034075197,0.095876545,-0.10322956,0.056120392,0.122945204,0.022057083,0.035413254,0.0016637992,0.043450274,0.028745227,-0.032788478,-0.07606729,0.00013219539,0.061414722,0.0030817464,-0.01918365,-0.021628931,0.07625597,-0.13280168,0.01298185,-0.03065357,-0.0065495614,-0.08870415,-0.030585252,-0.04276634,-0.0026890775,-0.011833147,0.04607506,0.0038741275,0.0231319,-0.02919394,0.041529328,0.021701984,0.026772497,0.011904521,0.067565896,0.05490714,-0.04236041,0.010305281,-0.021899914,0.034449082,-0.039918184,0.024805514,0.027614161,-0.010958292,-0.057111736,-0.04810858,-0.119874045,-0.015219316,0.063352086,-0.003025866,-0.070606306,-0.060414344,0.08505441,-0.0627104,0.0683153,0.060659714,0.012050399,0.03618234,-0.018590983,-0.035205048,0.050669763,-0.03368102,0.010280198,0.074710816,0.009152759,-0.011935888,-0.05404878,0.12461504,0.0022640019,0.06446329,0.029093994,0.06237082,0.015855638,-0.013980128,-0.025264902,0.010323582,-0.048091915,-0.0425939,-0.07712447,-0.011425864,0.032384068,-0.029501133,0.05798302,-0.08866054,-0.034281906,-0.08069022,-1.7953786e-08,0.007863015,0.005099423,0.004287338,0.056393895,-0.0002740825,-0.023872545,0.104972735,0.035703152,0.011211805,0.070315324,-0.0047579547,-0.10120568,-0.029368572,0.0005586198,-0.0392673,0.020403631,-0.06245959,0.12889037,-0.064261355,-0.005364068,0.013587652,0.0508917,0.08435363,-0.020341426,-0.058868986,0.015747976,0.059618074,-0.006415699,-0.009913928,-0.084518984,-0.0681414,0.06781024,0.07080115,-0.007526462,0.0062993374,0.0149181485,-0.064657755,-0.037828974,0.02057881,-0.04522699,-0.05382257,-0.11428805,-0.046718385,-0.04086992,0.08961641,-0.0018918315,-0.019706223,0.047470633,-0.027566334,0.020937005,-0.021285934,0.016409354,-0.030006412,0.006089864,-0.015275109,-0.015316241,0.0034916447,-0.030618474,-0.06329723,0.06835924,-0.0030962222,-0.030980386,-0.0641158,0.050228614} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.54449+00 2026-01-30 02:01:09.778755+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1886 google ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB 1 t 1889 Go Karts Mar Menor unknown Posiblemente la mejor pista de Murcia. Si sois 10 o más se pueden hacer calentamientos, clasi y carreras. Pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora. posiblemente la mejor pista de murcia. si sois 10 o más se pueden hacer calentamientos, clasi y carreras. pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora. 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"J2.02": "Pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora.", "O1.02": "Posiblemente la mejor pista de Murcia.", "O2.02": "Si sois 10 o más se pueden hacer calentamientos, clasi y carreras."} {-0.0016836941,0.07946502,-0.010645085,-0.060100097,-0.07048637,-0.005061278,0.040323377,0.069018126,0.02187495,0.008081018,0.095024996,-0.027432011,-0.0016821587,0.018230515,-0.011893127,-0.048429508,-0.015258122,0.10270822,0.026089806,0.06593405,0.08266385,-0.023180148,-0.07798804,0.1056902,-0.1357372,-0.0040147584,0.032501508,-0.09461043,-0.08996548,-0.03313577,-0.04845478,0.035247173,0.10481047,0.047942713,-0.01554474,-0.022288395,0.04692826,-0.033582985,-0.021497851,0.09843915,-0.058270562,-0.042790186,-0.006820705,-0.08456752,0.007961993,-0.02394525,0.06473717,0.003597093,-0.0032021808,0.0024760896,-0.15171616,0.059008643,-0.030290827,-0.032640822,-0.06334699,-0.06613436,-0.07799758,-0.027543452,0.036125977,0.009583908,-0.033784874,0.06162421,-3.816999e-05,0.058165148,-0.00073726586,-0.02246898,0.006564533,-0.0038111259,-0.061632983,0.040283687,0.06843882,-0.033233624,-0.051458444,-0.013910617,-0.0698695,0.0882665,-0.020942068,-0.005199862,-0.055738483,-0.07034868,0.0026682594,-0.0030159669,-0.049233954,-0.015953662,-0.01003677,0.060391236,0.003478973,0.058069788,0.00071477273,-0.020682862,0.03782267,0.05479179,-0.044646323,-0.040372603,-0.05046009,0.01757071,-0.04339713,-0.03148869,0.08179886,-0.0071268245,0.031094072,-0.011488152,0.021889362,0.021810181,-0.04618072,0.03154406,0.03646649,-0.14812496,-0.01894709,0.03194766,-0.022575293,0.021982748,-0.08677062,-0.03240341,0.02378688,0.07880999,0.026863804,-0.042552345,0.033979148,-0.0156131815,0.015045802,-0.023131285,-0.051883165,-0.026985599,-0.082202755,-0.048481278,0.08119149,1.3463589e-32,-0.10240762,-0.07990248,0.048119258,0.021372318,-0.0126299905,0.012368676,0.027599212,-0.056915108,-0.044578187,-0.06403298,0.0096048275,0.035922766,-0.012640823,0.013143435,-0.00024540888,0.051606838,0.027307404,-0.045844447,0.030294016,0.0012148482,-0.03641779,-0.024037963,0.005147074,0.033180237,-0.030922687,0.060313694,-0.0062533086,-0.05757843,-0.015337661,0.02419881,0.055649914,-0.0072345487,0.06686831,0.0025598737,-0.041147925,0.03723131,0.01814099,0.0771667,-0.031564668,-0.014253502,-0.03481082,-0.044259176,-0.009351256,0.055668347,0.03975949,0.0062818807,0.029162142,-0.0010221893,0.0576859,0.035306945,-0.013650894,-0.010815596,-0.028289773,-0.083944425,0.022011498,-0.059472144,-0.06790204,0.0344187,-0.04860075,-0.02708614,0.06838305,0.009038072,-0.02893471,-0.004579519,-0.062923685,-0.005693133,0.00041597625,0.084445864,0.15851845,0.0744659,-0.02401343,0.033447832,-0.09178167,0.03520085,0.0019111395,0.042505555,-0.004460178,-0.015046292,-0.023411943,0.10774137,-0.04289588,0.069353834,0.04460589,0.029595777,0.11476747,0.11529299,0.04858107,0.0886524,-0.04795917,0.09192217,0.022152584,0.014306548,0.05745604,0.039860424,0.02166541,-1.3188895e-32,0.011877775,-0.02694831,0.044984266,0.054461103,-0.077593766,-0.004843819,-0.0017885328,0.0096151335,-0.03376578,-0.027668491,-0.09047921,-0.11086564,0.107379735,-0.05023587,0.026293818,0.060924347,0.016797619,-0.055224624,-0.08395346,-0.007833483,-0.028628327,0.0778967,0.020358805,-0.018414268,-0.07593887,-0.030707953,0.0034101713,-0.015382496,-0.06834168,-0.0074180556,0.0069649816,-0.040458757,-0.055783823,0.0399865,-0.06979051,-0.006844819,0.004124639,0.043233316,-0.009570878,-0.019577708,-0.0827174,-0.011609968,0.0065786573,0.00744112,-0.043047816,0.024756407,0.058831077,-0.10328348,0.0035818666,-0.04145138,0.058060516,-0.0150293205,-0.0323201,-0.03576517,0.07659374,0.010069538,-0.084686436,-0.02208974,-0.06838882,-0.045863673,0.045827836,-0.014025132,-0.056898497,-0.0713268,0.065927275,0.055276327,0.0058105113,-0.026137395,-0.020165097,0.009018193,0.1371356,0.008448177,-0.07305006,-0.007907107,-0.032023028,0.008052358,-0.08141782,0.046501927,-0.03804289,0.08245576,-0.048820417,-0.06165057,-0.051538516,-0.00666379,-0.007580641,-0.04170474,0.0031912292,-0.051280748,0.052109446,0.06777933,-0.023534767,0.04934895,-0.04487328,-0.059557363,-0.052536085,-4.845614e-08,0.01586021,-0.09087453,-0.036494307,0.03368478,-0.021421455,-0.015475888,0.02285666,0.046473574,-0.020663576,0.073919445,-0.004372232,-0.03419341,0.03199542,0.06066048,0.007998471,0.03652453,0.16993256,0.069243565,0.025297869,-0.055057816,0.028008973,-0.032902826,-0.01180893,0.06790941,-0.08044798,0.02918813,0.01984512,-0.026947062,0.010129007,-0.054986045,0.03549568,-0.05995559,0.013493317,-0.033057667,-0.017042847,-0.06708354,-0.036137313,0.036203407,-0.030146854,0.020201454,0.10500765,0.018311927,0.022915427,0.039520983,-0.055243474,-0.04342223,-0.03812014,0.013841156,0.0046734447,0.047183923,-0.03575007,0.007962837,0.04839024,0.022863843,-0.047620814,-0.032951202,0.17232881,-0.017285021,-0.05755183,0.024664542,0.032297555,0.066541895,0.028558925,-0.027963582} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:40.909593+00 2026-01-30 02:01:11.066225+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1888 google ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB 1 t 1891 Go Karts Mar Menor unknown Es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona, súper divertido y rápido pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas cosas. 5 estrellas se queda corto. es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona, súper divertido y rápido pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas cosas. 5 estrellas se queda corto. 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {O2.04} V+ I3 CR-B {} {"O1.02": "Es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona", "P1.01": "pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas ", "V4.03": "5 estrellas se queda corto."} {-0.060865004,0.06042129,-0.016028862,-0.06430264,-0.100346416,-0.042322397,0.03381099,0.0484652,-0.020743053,0.033619978,0.11004012,-0.024570113,0.010040705,0.033653054,-0.010699448,-0.02711936,-0.023282442,0.07671448,-0.00057736225,0.0195945,0.16324465,-0.022611406,-0.10232226,0.10398329,-0.11656642,0.03082137,0.0036195402,0.0128312465,-0.05381557,-0.095573805,-0.06947704,0.0726265,0.053572215,-0.015831545,-0.10620785,0.04346571,0.014962129,0.0033405954,-0.01773407,0.059086382,-0.10045493,0.018330097,-0.015270907,-0.07737436,0.032523986,-0.0448769,-0.00059941516,-0.011832452,0.00795429,-0.09753849,-0.05916855,-0.03192597,0.008087222,0.03783356,-0.0111797685,0.014311258,-0.029369697,-0.006292394,0.10902652,0.056220297,-0.014794521,0.036477726,0.0073298197,0.042727023,0.052388575,0.007422466,0.042593163,0.00028290375,-0.07129428,0.0076597626,0.03495247,-0.101997375,0.078877494,-0.038325693,-0.0014191079,6.5691056e-05,0.0056884266,-0.02721582,-0.028633375,-0.043540847,0.036786813,-0.041764732,-0.063333966,-0.058282442,0.030770838,0.03379902,-0.03969315,0.0047485903,0.026649881,-0.00785592,-0.011352773,0.0549534,-0.034593396,-0.041322764,-0.07958406,-0.0057625836,0.0063267495,-0.13596259,0.037453618,0.029267248,0.059013624,0.04369316,0.053088635,0.0032290628,-0.019405706,0.05379193,0.114404954,0.027951756,-0.041821927,0.029467322,-0.075308226,0.035617784,-0.08321634,-0.05211031,-0.033045657,-0.029133666,-0.02428383,9.174869e-05,-0.009514295,-0.07569448,0.0287806,-0.043919846,-0.058447283,0.0003128374,0.004876802,-0.0036295427,0.03304266,1.290227e-32,-0.046812028,0.029854245,-0.048343588,0.08964721,-0.004709056,0.05165329,-0.02127037,-0.010293878,-0.002603661,0.015067816,-0.01876464,0.050966308,0.00809761,-0.018380214,0.0656459,-0.0237829,-0.017325083,-0.071380526,0.03625458,0.033534646,0.015357942,0.028064739,0.0022709258,0.030891793,0.022190932,0.06975528,-0.02329741,-0.03681902,-0.061774686,0.026555624,-0.003814437,0.011690126,0.000792812,-0.036982432,0.025701346,0.007882818,0.029540777,0.007302736,0.05297331,-0.066587776,-0.030153597,-0.027095655,-0.046751905,0.07898398,-0.01258519,0.02782499,0.011771009,0.008288052,0.07105531,0.04883122,-0.080269344,-0.025104439,-0.11105593,-0.07646595,-0.006823334,0.03486474,-0.05766395,0.029102247,0.019203428,0.029420858,-0.0059154024,-0.009564659,-0.052843653,-0.012854675,-0.034237627,-0.04908991,0.00084879814,-0.023939684,0.13556847,-0.00014121055,-0.1225869,-0.03116248,-0.017470071,0.010174148,-0.0148359025,-0.010598869,0.015663989,0.020046663,0.012228671,0.0142469695,-0.055957176,-0.035393704,0.05908488,0.03817896,0.14652638,0.08044812,0.033218343,0.00500846,-0.029259862,0.09942315,-0.0049019773,0.066889256,0.1324063,-0.042271715,0.083148055,-1.4046188e-32,0.021050861,-0.0090787355,0.035779424,0.002075897,0.04133727,-0.0045002163,-0.04908163,-0.046806943,-0.09570459,-0.058301836,-0.05862966,-0.06217896,0.080767624,-0.048366867,-0.018516976,0.069963746,0.05336456,-0.06795787,-0.036677837,-0.0037080052,0.005623655,0.088503964,0.036398795,-0.03734231,-0.043687962,-0.01952948,-0.030957144,0.03805704,-0.047040567,0.048475478,-0.011822771,-0.014203808,0.017514013,0.03841042,-0.069262534,0.03881677,0.004410022,0.030616349,-0.02177984,0.026767487,-0.024564145,0.04301695,0.0033447307,-0.013409129,-0.05910132,0.07368532,0.011497389,-0.118478015,-0.034210045,0.026662448,0.064996175,-0.06935494,-0.029104587,-0.063932426,0.043716095,-0.09860901,0.0029401104,-0.11072536,-0.040710144,-0.030374324,0.11633657,-0.039108023,-0.03413476,-0.056925207,0.08035042,-0.0069285864,0.004139883,0.021195732,0.028689941,0.034198582,0.08609023,0.017883927,-0.032136753,-0.07572817,-0.0809866,-0.10171455,-0.16794725,-0.042129975,-0.045242418,-0.048732705,0.008001938,-0.008151813,-0.010766939,-0.045997623,-0.055472672,-0.039230715,0.014702776,0.07344522,0.010427877,-0.020027975,-0.04449835,0.029562648,-0.004138362,-0.07391563,-0.009315555,-6.0086904e-08,-0.0050017852,-0.030968048,-0.036106307,-0.049597323,0.073879465,-0.0287952,-0.028773038,-0.001988995,0.0063628666,0.029014247,0.043568283,0.00938512,0.06898016,0.04191957,0.034357443,0.044221003,0.046619296,0.09808581,-0.003072845,-0.035644528,0.072482884,-0.03637814,-0.055629466,0.033868477,0.05701793,-0.0033424173,-0.0018177972,0.020295534,-0.023418643,-0.05247126,-0.018071849,-0.050985016,0.023089353,-0.056312155,-0.0030284724,0.051367685,-0.018519847,0.009921514,0.00052128464,-0.035206217,0.0444665,0.015968475,-0.04717491,0.091625914,-0.080202326,-0.11336403,0.008982411,0.0204146,0.031048562,0.038746208,-0.032532383,-0.0011100128,0.025059342,0.0065488103,0.052100837,-0.033794977,0.04731182,0.059046447,-0.06672259,0.017532056,0.085167356,0.12550078,0.002891283,-0.10707338} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:53.500053+00 2026-01-30 02:01:11.07215+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1899 google ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB 1 t 1902 Go Karts Mar Menor unknown No nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente con kar que corren mas y nos hagan sentirnos inseguros, y no son nada atentos ni simpaticos no nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente con kar que corren mas y nos hagan sentirnos inseguros, y no son nada atentos ni simpaticos 1 2025-01-30 01:52:39.833374+00 es v5.1 E4.01 {J3.01} V- I3 CR-N {} {"E4.01": "No nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente co", "P3.01": "y no son nada atentos ni simpaticos"} {0.06497482,0.03854597,-0.03494543,-0.021446023,-0.048000347,-0.019984141,0.06527325,0.0011988862,0.028444767,0.04273681,0.07354395,0.023626696,-0.04111706,-0.024230126,0.059921402,-0.01326505,-0.07034483,-0.014329758,0.030525181,0.014740149,-0.0023990315,-0.031634945,-0.072558075,0.108518995,-0.09460022,0.013501314,-0.0049385075,0.0042652097,-0.057636935,-0.07045975,0.081418976,0.07583867,0.06387404,-0.020477336,-0.018468583,-0.009834191,0.05772547,-0.046043336,-0.045112863,0.008234126,-0.09319931,-0.023385527,-0.012243583,0.003467671,0.011731087,-0.05588928,0.009226181,0.02696964,0.053037368,-0.0057672565,-0.083491094,-0.014354985,-0.045421973,0.012079032,0.008105308,0.062381662,0.0022881718,-0.061832126,0.07392567,0.024971047,0.01836622,0.058923982,-0.04063838,-0.031036863,0.04990597,-0.025052091,0.052833516,0.019495124,-0.08260224,0.05203052,0.10117717,-0.0765946,-0.035786852,0.02550644,-0.06522601,0.0751857,-0.011120803,-0.008479901,0.0017897902,-0.006056282,-0.008393877,0.040708937,-0.00089105096,-0.052311387,-0.017387383,0.012685967,-0.07558257,0.015124714,-0.007840616,-0.0040395167,-0.023878256,0.027547091,-0.005278143,0.011476879,-0.049450375,0.031003764,-0.044936854,-0.019781958,0.020641046,0.03894728,0.14802726,0.091136,0.034383923,0.013204894,-0.040370375,0.11715858,0.06294824,-0.059085842,0.06375161,0.044263616,-0.09156243,-0.0069602346,-0.04851632,-0.05421467,-0.093987934,-0.004048069,0.018353393,-0.0024377736,-0.024852674,-0.0265821,-0.0046261805,0.006016072,-0.037213754,-0.038932458,0.04388739,-0.06840032,-0.0078037097,1.6948087e-32,-0.047441985,-0.053665727,-0.023520675,0.08894279,0.012447726,0.048593044,0.05465874,-0.06749593,-0.06839126,0.0010662732,-0.07564241,-0.025378773,-0.03689611,0.02760388,0.06654211,0.012425688,-0.053738408,-0.05178287,0.0019542908,0.04963931,-0.077358834,-0.010903781,-0.014646037,0.0016046659,-0.025393564,0.011613784,-0.030833717,-0.05935381,-0.018164154,0.04751887,-0.020106357,0.025195554,0.037398547,-0.07257764,-0.07936265,-0.110361144,0.092796415,0.053549968,-0.036523487,-0.038295273,0.009232065,0.03391181,0.011838265,0.018923836,-0.0046199923,0.009490251,0.072453484,0.04956875,0.046712987,0.0053842645,-0.054131363,-0.068937644,-0.013674961,-0.082579024,0.04094683,0.031094866,-0.06471023,0.057927527,-0.032151252,-0.08175294,0.034854498,-0.07018904,-0.03434868,-0.0050729434,-0.044509526,0.012806722,0.017061623,0.042278294,0.16726422,0.03461153,-0.033358924,0.0029402592,-0.11497817,0.023258409,0.017973326,-0.017534066,0.015851503,0.0232267,-0.018434104,0.018180108,-0.025059767,0.040100917,-0.011224975,0.04293909,0.094369285,0.12102925,0.053942982,-0.017780354,-0.01129195,0.10704031,0.037797023,0.07093671,0.06653558,-0.054103617,0.042065177,-1.6176931e-32,-0.0594946,0.009261283,-0.0065404153,0.0105488375,-0.020806503,-0.0022622957,0.029829266,-0.021807654,-0.04462249,-0.1436113,-0.014421327,-0.09800096,0.07004233,-0.028626295,-0.007954567,0.006324922,0.040468443,-0.0818208,-0.028696708,-0.016812855,-0.003996393,0.0187255,0.03200736,0.0032627964,-0.02620987,-0.075155415,-0.0503202,0.06589537,-0.06472936,0.003699423,0.101932496,0.018303992,-0.0050040088,0.05380223,0.00182806,0.025916193,0.023905551,0.0049580405,-0.042336427,-0.0174885,-0.018057663,0.10803785,-0.034703225,-0.023079216,-0.028833574,0.07099414,0.009994798,-0.14696899,-0.0030539455,-0.033822235,0.073201984,-0.02117821,-0.089022405,-0.023049131,0.07660245,-0.05071093,-0.022332273,-0.053089406,-0.0115692625,-0.015001811,0.06378531,0.0077227186,-0.064671546,-0.0695101,0.10576014,0.016839696,-0.029207725,0.03940892,0.055432633,0.043084588,0.085790485,-0.005196624,-0.09274446,-0.026574338,-0.0115675,-0.029061796,-0.08631292,-0.0048705656,-0.025700727,-0.033366278,-0.036182374,0.025684306,-0.013037283,-0.10140084,-0.011700988,-0.004162068,-0.003301224,0.054432273,0.008998186,0.05574199,0.036048405,0.008095278,-0.0034124048,-0.065476134,-0.109360635,-5.0441834e-08,0.022128794,-0.02536411,-0.026571037,0.010275322,-0.038221154,0.0038754134,0.0037009395,-0.011005377,0.038161892,0.06728499,0.0046921433,-0.014852957,-0.0019252988,0.04305624,0.03842764,0.030159784,0.12443147,0.06469881,-0.039775297,-0.09294537,0.09843085,0.030684503,-0.04347987,0.06444985,-0.024160601,0.05015322,0.005757761,-0.0006326985,0.06788877,0.039164007,-0.010758427,-0.06298819,-0.03488848,-0.06973004,-0.019402925,-0.08974503,-0.010231964,0.023025623,-0.0030398897,-0.11639724,0.098525226,-0.013303579,-0.055674054,0.0039187013,-0.11510219,-0.061640095,0.022720598,0.019749587,-0.016489802,0.060023732,-0.023017397,-0.05748049,0.044151727,0.012783359,0.02768846,-0.08598763,0.031845197,0.06770475,-0.023473237,-0.050440732,0.101788916,0.073797606,-0.024504172,-0.0754538} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:21.435894+00 2026-01-30 02:01:11.127775+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2244 google ChZDSUhNMG9nS0VJQ0FnSUNRaXAySGV3EAE 1 t 2247 Go Karts Mar Menor unknown Entretenido para niños y mayores en un buen ambiente. entretenido para niños y mayores en un buen ambiente. 4 2018-02-01 01:52:39.833374+00 es v5.1 A3.01 {E1.04} V+ I2 CR-N {} {"A3.01": "Entretenido para niños y mayores en un buen ambiente."} {0.03001891,0.06426607,0.046017777,0.048157252,0.060365338,0.0054680216,0.06830434,0.006039486,-0.019900179,0.02365737,0.037777014,-0.1276807,-0.06383619,0.027169932,0.03724595,0.019966286,-0.009998943,0.10182152,0.06643469,0.017284213,0.047602735,0.04300227,-0.013452131,0.06624695,-0.09812914,0.029350094,0.007319243,0.011509098,0.022374328,-0.00048171775,0.033225387,0.05172101,0.08769992,-0.018376926,0.016156692,0.041308075,0.08969705,-0.032329567,-0.052190173,0.03626172,-0.08968436,-0.033434696,-0.06683138,-0.10070058,-0.008026268,-0.07994878,-0.02042968,0.028180733,0.014836393,-0.035384763,0.038590312,-0.004214295,-0.029864868,0.017454147,-0.0057049096,0.027469063,-0.061226342,-0.07391856,0.13914403,0.0067555956,-0.0032709674,0.033266064,-0.09602674,0.016721657,0.06312648,0.010648042,-0.0051709763,0.0489561,-0.015489696,-0.033226687,0.103750505,-0.054192282,0.028844265,0.0032459155,-0.013174592,0.0061045773,-0.090543546,-0.026542433,-0.071415335,-0.1070138,-0.009668271,-0.015401673,-0.037299443,-0.03287244,0.034987874,0.028405186,-0.008796943,0.0013076466,0.012826881,0.04645396,-0.044146366,0.0037453352,-0.058531266,0.05954231,-0.019410262,0.008341926,-0.019544696,-0.09314808,0.049679954,0.01104541,-0.025075134,-0.00316705,0.051397275,0.09186772,-0.041949365,-0.038913302,0.0068407557,-0.113070086,-0.012840623,0.044101667,-0.0722533,-0.0649185,0.026451906,-0.029867899,-3.1670752e-05,-0.0869343,0.0056581483,-0.02939815,-0.030658038,-0.027402386,0.07914986,0.046933744,-0.07065634,-0.021222364,0.03468549,-0.05706802,0.062256515,9.383818e-34,0.014363554,-0.06402704,-0.018073631,0.09746761,0.059199274,0.040804733,-0.007997866,-0.028518321,0.050490417,-0.0017989168,-0.055286154,0.04079278,-0.028285673,0.019821677,0.10839447,0.0033491508,0.010184193,0.014232163,0.051933233,0.07141143,-0.109698035,-0.02664812,-0.03289899,0.03925307,0.006665782,-0.017631175,0.014828143,-0.022289013,-0.0091328155,0.05658542,0.063504696,-0.0022076266,-0.034696966,-0.012202308,0.025677165,0.011845046,0.06114749,0.09989691,-0.028825037,0.006015062,-0.0435777,-0.0071866647,0.013539692,0.021196464,0.07421549,0.014720454,0.088503174,0.03613908,0.025321877,0.03925903,-0.023077061,-0.04912061,-0.07548612,-0.08430684,-0.00075477693,0.07555718,-0.021328041,-0.010693603,-0.047413044,-0.017785136,0.06656402,0.020252412,-0.009089246,-0.10753613,0.025692971,-0.06827292,0.10149609,0.055398498,0.07007405,-0.051255804,-0.053056933,0.018457359,0.057745896,0.022463197,-0.0049556037,0.013889492,0.035816126,0.03519224,-0.026373591,0.021222716,-0.09652653,0.018125039,0.052188993,0.016507315,0.06611969,-0.037186626,0.014764882,0.05583507,-0.054946307,0.07895196,-0.009238655,0.06139174,0.019706829,-0.011645542,-0.031390775,-3.3779806e-33,-0.0051627243,-0.031015657,-0.05549257,0.015057187,-0.03875595,0.011219667,-0.11082962,0.021797951,-0.029358525,-0.06769802,-0.13681786,-0.09043891,0.16185619,-0.07967396,-0.015843369,0.060272705,-0.010425203,0.020855071,-0.11260743,-0.028019773,-0.034344666,0.0021820567,-0.017505014,-0.00056488847,-0.019846356,-0.026796706,-0.04943518,0.046600968,-0.0890545,0.045331333,-0.022076095,-0.03610209,-0.03567583,0.038287945,-0.0038460784,0.104659334,0.032229975,-0.0035170312,-0.025295472,0.023230273,0.010007865,0.037945665,0.04650707,-0.007295431,-0.012544677,0.08863125,-0.029377887,-0.07878395,-0.056132577,-0.039966583,0.10865338,0.008150453,-0.082530625,-0.042288437,0.077516586,-0.052071754,0.0011009609,-0.054831393,-0.027215084,0.019362323,0.13482198,-0.00792089,-0.007099791,0.027624851,-0.055371873,-0.01077044,-0.10288535,-0.020376937,0.032276,0.037979834,0.044767696,-0.009842448,-0.05298369,-0.020097138,-0.10007979,-0.10265606,-0.055055212,-0.003514782,-0.013090842,0.01756406,-0.08680954,0.02961526,-0.059139982,-0.07691905,-0.062565096,-0.03839949,0.0012018756,-0.004610924,-0.034463003,0.047734674,0.035906907,0.049541958,-0.05974201,-0.02113693,-0.041832585,-2.375078e-08,0.030243006,-0.024390385,-0.009005123,0.042606484,-0.0066961795,-0.060363073,0.006447402,-0.0029089036,0.05558228,0.04909548,-0.026243728,0.018708853,0.02570164,0.08414264,0.04243861,0.0023141392,0.10486029,-0.00096428924,-0.046539407,-0.053771496,0.09288342,0.03795724,-0.074207984,0.01104293,0.015248712,-0.04039624,-0.07671946,-0.024077268,0.008178649,0.013944941,0.025476485,0.016386075,-0.07415274,-0.07188022,-0.020715835,-0.0221981,-0.06371059,0.021381002,-0.03411714,0.014851623,0.07465442,0.021993736,-0.034344386,0.004826901,0.017375862,-0.10349892,0.06816776,0.05374646,-0.020429285,0.033430077,-0.0037927742,-0.10286069,0.06749384,0.011904146,0.05396737,-0.027419908,0.01455285,0.027272992,0.035024397,0.00097348297,-0.022064857,0.12572137,-0.06652738,0.024850925} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.958297+00 2026-01-30 02:01:12.600599+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1557 google ChZDSUhNMG9nS0VJQ0FnSURKOE1EVUJnEAE 1 t 1560 Go Karts Mar Menor unknown Great karts and awesome track great karts and awesome track 5 2024-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Great karts and awesome track"} {-0.055970598,0.008780359,0.03877416,0.034226384,-0.046731003,0.047711454,0.00492796,-0.040269915,0.030198881,-0.0020063976,0.0007728374,0.05152952,-0.010126295,-0.017298449,-0.023123872,-0.005353784,0.048706688,-0.003841429,0.029096274,-0.09221987,-0.07024332,-0.07772204,-0.0036068996,0.049784847,-0.13836819,0.04500227,-0.030350003,0.03975535,0.023331676,-0.044916432,-0.096275516,0.028818157,-0.0023985098,-0.022483159,-0.024893178,-0.040720955,0.04540541,-0.048990015,-0.019159311,-0.016454453,0.0035973585,-0.0068415925,0.013016754,0.043740507,-0.0117490925,0.037095122,-0.023619715,-0.059433263,0.0045083053,0.08411189,0.04184843,-0.07382725,0.010114274,-0.030655438,-0.015798338,0.008625432,-0.07984565,-0.005124484,0.05527037,-0.06562013,0.079799555,0.009556854,-0.06160059,-0.01138913,-0.035288043,-0.03520205,-0.06940213,0.11003836,-0.015492622,0.08340031,0.01979054,0.044184595,0.019291949,0.030655824,0.05537765,0.081987284,-0.06129101,-0.04053201,-0.10604231,0.015473146,0.07412894,-0.05105307,-0.0048535713,-0.14842618,-0.01718601,-0.11416752,0.054618124,-8.182684e-06,-0.022869129,-0.02272246,0.010427102,0.048689708,-0.03793675,-0.04837764,0.039280776,-0.008723128,0.018965913,-0.009307093,0.01237933,0.06319388,0.06782767,0.03316004,0.015970442,0.060587496,0.0023907602,-0.0013226396,-0.015386874,0.046561547,0.093371406,0.012794458,0.06360951,0.024743212,-0.050422914,0.018269174,0.027843995,0.00040571296,-0.0042100176,0.09446739,-0.011843539,-0.025151217,-0.0033903709,0.01033814,0.020687621,0.03202698,0.016362816,-0.039442092,0.039534308,-8.461229e-34,-0.08291283,0.00086986716,0.010123369,-0.035147626,0.0800006,-0.123178095,-0.02507559,-0.12670712,-0.11208122,0.08611241,-0.07700046,0.07048348,0.012719544,0.00039342753,0.056656383,-0.074639544,-0.049729265,-0.033469304,-0.035585593,0.04251778,-0.01958926,0.005538516,0.010943796,0.061433196,0.059183214,-0.01897064,0.084717944,-0.011438022,0.0018488666,0.024063904,-0.027792798,-0.018354047,-0.020839214,0.06915018,-0.046237387,0.006240395,-0.08543668,-0.048719596,0.023190722,0.040428437,0.114586055,-0.02802712,-0.030824361,0.0026866638,-0.04402894,0.060870267,0.023487145,0.108013704,0.08203215,-0.020424776,-0.09112384,-0.05327925,-0.045327842,0.0231884,0.02506918,-0.03149475,0.044446874,0.023920042,-0.045973536,-0.023130529,0.051830668,-0.0035616003,-0.007962184,-0.10537716,-0.029717011,0.010281114,0.028051049,-0.025951093,0.0064895325,0.030100537,-0.063809276,-0.002398547,0.06462078,-0.07312156,0.10807337,-0.0104271425,-0.045800254,0.016786067,-0.10695414,0.056504626,-0.029534217,0.02106581,-0.0109329885,0.011382357,0.013185025,-0.0015523087,-0.07618603,-0.02985993,0.014218258,0.0053284816,-0.09237372,-0.0021217414,0.013787168,0.044553205,-0.030526012,7.800161e-34,0.10075868,0.086414754,0.1356771,0.11023463,0.040254254,0.05175823,-0.023561625,0.060909975,0.031264193,0.06687601,0.023913162,0.04574095,-0.00460374,0.024090825,-0.033702616,-0.01865752,0.05939137,0.059475143,0.027370058,-0.111676596,-0.030283978,0.015377517,-0.024577448,-0.05628155,-0.020236904,0.04063015,-0.013486075,0.026356498,-0.029999498,-0.014156896,-0.03003137,0.04034053,-0.009712931,-0.02805163,-0.013858483,0.037984993,0.020457663,0.053138275,-0.08408611,0.011037309,0.016430054,0.06374747,0.01914464,0.067561276,-0.010397765,-0.008289087,0.05708474,0.08073888,-0.02179349,-0.0516129,0.002446873,0.022718376,-0.010392726,-0.06469864,-0.01097229,-0.01285635,0.069237456,0.014229409,-0.012220237,-0.0033620112,-0.07985322,0.049100216,-0.005774101,0.00910907,0.089477226,-0.012195365,-0.0003353839,-0.098048285,-0.085235335,-0.008931716,-0.12663126,0.07932231,-0.084650815,0.008327851,0.006637268,-0.08497101,0.012177627,0.034730785,0.03201254,0.06952997,0.047929477,0.014482423,-0.041751206,0.0150564825,0.06364515,0.11481105,-0.09689459,-0.018848585,0.030842058,0.019353727,0.07811517,0.068649314,-0.029555535,0.035897315,-0.03809839,-1.461548e-08,0.011772614,0.13906628,-0.11717681,-0.027565505,-0.0014017588,-0.016451396,0.021061266,-0.005305277,-0.07641093,0.018544145,0.008227886,0.005133012,-0.01837497,0.06117894,0.022850096,-0.067472614,-0.029483952,0.1504142,-0.0044262637,0.010666035,0.011796733,0.011723627,0.042984936,0.03487257,-0.03602202,-0.09268053,0.033690393,0.031420253,0.09252399,-0.026737602,0.021679536,0.06870083,-0.0058939676,0.032756627,0.0024869791,-0.046047963,-0.057727996,0.06352203,0.007419136,-0.02082952,-0.018779535,-0.042055923,-0.08998528,-0.028845798,-0.09201243,-0.03259045,0.011460857,-0.037116174,-0.07063031,0.0117152305,-0.041650224,-0.061566785,-0.019284423,0.059850402,0.070678,0.030621422,0.04028604,-0.053332545,-0.0043492327,0.009959828,-0.0037905725,-0.058245298,0.030481664,-0.011127141} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.558321+00 2026-01-30 02:01:09.782452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1912 google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE 1 t 1915 Go Karts Mar Menor unknown Uno de los mejores circuitos de la region de Murcia. Algunos karts estan algo descuidados. Buena organización. Fresca terraza para tomar algo mientras esperas y Bar. Buena actividad para cumpleaños o despedidas. uno de los mejores circuitos de la region de murcia. algunos karts estan algo descuidados. buena organización. fresca terraza para tomar algo mientras esperas y bar. buena actividad para cumpleaños o despedidas. 4 2018-02-01 01:52:39.833374+00 es v5.1 O2.03 {} V+ I3 CR-B {} {"E1.04": "Fresca terraza para tomar algo mientras esperas y Bar.", "J2.01": "Buena organización.", "O1.03": "Algunos karts estan algo descuidados.", "O2.03": "Uno de los mejores circuitos de la region de Murcia.", "O4.04": "Buena actividad para cumpleaños o despedidas."} {-0.015219434,0.061617743,0.027037783,-0.04073131,-0.09060051,-0.04790021,-0.041978586,0.023275029,0.007734892,0.038800213,0.043261006,-0.051584262,-0.017706504,0.018236252,0.026511978,0.022989666,-0.0222884,0.042471953,0.010504823,-0.014478491,0.10863545,-0.031235958,-0.0823624,0.06309583,-0.09743042,-0.017790351,0.006001542,0.009671078,-0.052201983,-0.10718466,-0.097817846,0.06412036,0.040029265,-0.0051234798,-0.086071275,0.0013466781,0.0019991528,-0.048021145,-0.047383945,0.036673736,-0.03466937,-0.020715049,0.0039725415,-0.014165757,-0.009210463,-0.055692,-0.010213002,0.035384044,0.003648716,-0.054949574,0.015543611,-0.065775275,-0.05519817,0.038451362,0.020204814,-0.07222442,-0.091527894,0.07641202,0.111590795,0.051029433,0.07329753,0.05693542,-0.059308473,0.0388734,0.020653259,-0.07121539,-0.0612243,0.08370267,-0.05217256,-0.0053579686,0.08183783,-0.12834734,0.009285425,-0.07238918,0.049692806,0.005657535,-0.007969051,0.0136692645,-0.05278186,-0.051004153,0.02665678,0.017408026,-0.064729966,-0.071998894,0.044283163,-0.008768395,-0.00624548,0.03225558,0.041265815,0.027183969,-0.007799663,0.060401328,-0.094044104,-0.051301047,0.014079483,0.028399806,0.022918131,-0.084429696,0.066496484,0.0065844227,0.11983013,-0.006276158,0.06869972,0.011106749,-0.06776617,0.010993969,-0.01260038,0.00841036,0.025817027,0.022546344,-0.061922066,0.0022971402,-0.12157992,-0.051917367,-0.07355096,-0.003005519,-0.028659312,-0.02273093,0.038592666,-0.027988808,-0.052240048,-0.03851435,-0.008281176,0.02325593,0.050645575,-0.021107733,0.053838644,8.767433e-33,-0.06672778,-0.06697782,-0.06370284,0.03490658,0.023873089,-0.071656995,-0.020979594,-0.06270072,-0.07711286,-0.014726903,-0.05950518,0.11173466,-0.035066072,0.0649164,0.16837195,-0.034410514,-0.0074598566,-0.088130005,0.0341719,0.032782685,-0.017055964,-0.01686056,-0.002630474,0.07367908,0.039456796,0.05812233,0.032965556,-0.043055415,-0.114633575,0.046308734,-0.012804649,0.022597544,-0.007332142,0.049129635,-0.10956708,0.075658984,0.010700096,0.015836298,0.0032919927,4.4746364e-05,0.031400077,-0.05337329,0.00074067735,0.013427364,-0.0039555384,-0.0068586734,0.03215556,0.03307464,0.08386598,0.107204445,-0.08123708,-0.007906974,0.00022307027,-0.07939011,0.04121805,0.09216904,-0.019029625,0.025539698,-0.036100958,-0.00763603,-0.029241329,0.051204197,0.033017997,-0.05086987,-0.0053653964,-0.032635707,0.008440503,-0.0039026637,0.05265481,-0.026111986,-0.12167413,-0.0143715255,0.001370468,0.03042258,0.047900524,0.030479003,-0.0634641,0.043219663,-0.035875846,0.09436017,-0.12571484,0.0066564474,-0.071930535,0.024683258,0.10950505,0.07659887,0.047849204,0.014657647,0.030247895,0.08634693,-0.07623691,0.08464403,0.005035128,-0.0009507749,0.08046879,-1.15250095e-32,0.044513136,0.005566308,0.10810594,0.09392002,-0.0045551145,-0.014430322,-0.025639031,-0.039589796,-0.060335487,0.0064560543,-0.088366054,-0.010012653,0.064638674,-0.0020495357,0.00811805,0.032418303,-0.003793475,-0.046292596,-0.03343805,-0.042271364,-0.009994265,0.04332372,-0.0031391373,-0.03724309,-0.07645689,-0.08770377,-0.074975565,-0.014325906,-0.092206165,-0.0024020497,-0.004227239,0.0005250239,0.0013279623,0.0652896,-0.123772666,0.013358974,0.07602265,0.083779745,-0.061691687,0.046062287,0.07453466,0.0562328,0.034118276,0.015747964,-0.069944076,0.0076666772,0.065487124,-0.048855845,-0.0124608725,-0.03035302,0.12169814,0.011459909,-0.019682257,-0.021118052,0.04433066,-0.00100753,-0.016448753,0.011167893,-0.058641735,-0.0035773043,0.067435175,-0.03917247,-0.07618047,-0.05998114,0.052508175,0.006733984,-0.019330027,0.030685829,-0.016826514,0.03967523,0.08549425,0.039794736,-0.058442187,-0.04234935,0.009314781,-0.027855603,-0.051916152,0.017042654,-0.015126109,-0.035649043,0.037570912,-0.028811224,-0.013297812,-0.014803968,0.057817124,0.040291224,-0.05506614,0.008577052,0.047938753,-0.0020314672,-0.008034114,0.06543105,-0.066084795,-0.04995196,-0.07076772,-4.9524118e-08,-0.02580778,0.027430674,-0.088516794,0.00012081808,-0.05434213,0.012325652,0.04813074,0.070757456,-0.011289479,0.041458964,-0.0055097514,-0.03938901,0.02282503,0.039971266,0.038550016,0.022288295,0.023673438,0.13425612,-0.011096967,0.008067315,0.061383348,-0.0035059853,-0.05273451,0.07532925,0.020483509,-0.041630644,-0.0149090225,0.018069765,0.021215754,0.006248622,-0.008233949,0.005415578,-0.017765176,-0.02638667,0.04137918,-0.042654406,-0.07160039,0.05429935,-0.013552569,-0.03567299,0.02642714,-0.086277366,-0.080987014,-0.003340808,-0.05229716,-0.041807394,-0.024790836,0.013452769,-0.032208346,0.025521236,-0.06650977,-0.018603645,0.017082948,0.013972464,0.04582344,0.025651516,0.0644221,-0.035760596,-0.025503052,-0.028998673,0.008650881,0.049566176,-0.02099956,-0.07058335} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.86879+00 2026-01-30 02:01:11.196544+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1971 google ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB 1 t 1974 Go Karts Mar Menor unknown Para pasar un rato muy bueno y con un personal magnífico. Los coches están muy bien. Perfectamente organizado. Repetiré. para pasar un rato muy bueno y con un personal magnífico. los coches están muy bien. perfectamente organizado. repetiré. 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.01 {V4.01} V+ I3 CR-N {} {"J2.01": "Perfectamente organizado.", "O1.02": "Los coches están muy bien.", "P1.01": "Para pasar un rato muy bueno y con un personal magnífico.", "R4.03": "Repetiré."} {-0.0015740317,-0.027736561,-0.053449444,-0.10140864,0.003892015,-0.031929698,0.10154176,0.00045174084,-0.057777513,-0.004677564,0.053769376,0.026794592,-0.051390335,0.004772958,-0.019644523,0.0007757089,-0.069002725,0.044503804,-0.004271988,0.07232642,0.031502154,-0.07406848,0.010755687,0.061453566,-0.067183025,-0.11441274,0.006451531,-0.026518106,-0.059297096,-0.07866507,0.035444904,0.090780444,-0.005556072,-0.03460275,-0.0005103321,-0.008304691,0.02069718,-0.07797406,0.005829646,0.06423008,-0.11327178,-0.028950032,-0.0236491,-0.019543026,-0.03744559,-0.054786284,0.059322014,0.031569246,0.044210646,-0.01393526,-0.12710764,-0.0040313755,-0.061274193,0.04452895,0.0010713188,0.05700684,-0.054399654,-0.06407743,0.054288313,0.0076722153,-0.00418686,0.05711864,-0.053634144,0.0410262,0.06544373,0.037987646,0.022885105,-0.00205532,0.013236704,-0.025707653,0.12338716,-0.0643821,-0.02530462,0.03731567,-0.03703047,0.05392252,-0.053842805,0.014670461,-0.027174577,-0.010495107,-0.010297248,0.020632848,0.0063550454,-0.044013746,0.025564663,0.006790651,-0.030383144,0.07196974,-0.01834566,0.020829827,-0.014236791,0.09483005,-0.049893156,0.010313218,-0.020993175,-0.015423824,0.076407366,-0.03978412,-0.035526227,0.04635396,0.06408991,0.050237384,0.0852823,0.009400168,-0.037349377,-0.007142375,0.06092961,-0.013617566,0.010553171,0.03486071,-0.028687894,0.010697878,-0.113797106,-0.03735635,0.012333495,0.062774904,0.04125275,-0.024195913,0.0025347604,-0.07051854,0.057118375,0.036050353,-0.07957452,-0.06980555,-0.029839586,-0.022535548,0.030845154,7.7048365e-33,0.02400001,0.0039996393,0.009621169,0.065359324,-0.07667184,0.055407338,-0.049773302,0.004709473,-0.022118062,-0.03852204,0.005831258,0.07820678,-0.008504727,0.04913995,0.016570386,0.009464834,0.024432885,0.034826834,0.094209656,0.04599233,-0.03854242,0.00059010636,-0.064348474,0.06498587,0.064328685,0.028362952,-0.02164941,-0.057136137,-0.07488023,0.07165889,0.009994494,0.044128973,0.038900044,-0.042122155,-0.03817401,-0.100571714,0.02936738,0.0076343124,0.030307634,-0.007315498,0.099013075,-0.0063944985,-0.0048151594,0.0067262803,0.0017804919,0.039058737,0.05210548,0.013226368,0.014714007,0.014517471,-0.048126694,-0.07799684,-0.09383119,-0.030164033,0.014057745,-0.005981634,-0.08144927,-0.031679653,-0.038584348,-0.10835241,0.10940612,0.056551114,-0.014582572,-0.0036691108,0.0068176426,-0.063845605,0.022631368,0.04607352,0.0867753,0.055890117,-0.07733133,-0.078330606,-0.05502975,-0.0034094385,0.011605651,0.044618826,-0.010508797,0.021119261,-0.028102292,0.05582176,-0.033174418,0.051854186,0.0036579869,-0.0118755195,0.049502444,0.13574314,0.09366736,0.016560642,-0.01785899,0.10664584,0.0036137335,0.13316034,0.007852748,-0.029740127,-0.02887749,-7.8879256e-33,0.008300144,-0.06956319,0.010368156,0.061073974,-0.015822124,0.02558325,-0.028431948,-0.01669352,0.020859487,-0.020744069,-0.11476336,-0.15552971,0.08695353,-0.097903326,-0.011325065,0.059556562,-0.027732575,-0.09856868,-0.07925386,-0.027533934,0.0100314915,0.018475588,0.0423116,-0.029747715,-0.00095438573,-0.08727472,-0.040211838,-0.0025671439,0.0069064163,0.0057580727,0.06351533,-0.019695604,-0.040908623,0.019786987,-0.009333369,0.030087749,-0.0029209533,0.03204015,0.075892895,0.027040835,-0.06133297,0.075596906,-0.024296058,-0.03384893,-0.041242674,-0.066609256,0.017620146,-0.13934158,-0.01897073,-0.027807668,-0.01994858,-0.0578033,-0.0229043,-0.09673843,0.0056765364,-0.012329038,-0.024268337,-0.07621865,-0.042655773,-0.009939716,0.017588666,0.044349395,-0.048779625,-0.018915977,0.105411746,0.002225824,-0.01996569,0.07415654,0.006715176,0.06115021,0.1751612,-0.017631587,0.029820997,0.06068087,-0.057896335,-0.030188454,-0.047942713,0.042621236,0.04240702,0.014405264,0.014316045,0.03882276,-0.024799487,-0.059298147,0.02043497,0.0054734503,-0.008257785,0.048518527,-0.015961122,-0.03711001,0.07376767,-0.0016341356,-0.09019944,-0.029549556,0.019902395,-3.5419177e-08,0.0023096572,-0.015360775,-0.040032502,0.06475702,0.034058284,-0.036954723,-0.008264265,0.01731725,0.030631388,0.07770542,-0.020800333,-0.06961675,0.029191088,0.106553204,-0.0068570557,0.031685095,0.06315994,0.06352196,-0.005348939,0.0013659546,0.07787275,-0.044511065,-0.021990541,0.005763131,-0.08303819,0.05852189,-0.04616051,-0.0026867425,-0.06251815,0.042464312,0.015977517,-0.010229815,-0.005454986,-0.07197357,-0.01561677,-0.015093998,-0.022545557,0.010255456,-0.016956687,-0.01686736,0.10697046,0.008719408,0.0054545226,-0.009424998,-0.039667528,-0.117800534,0.04730678,-5.9161826e-05,-0.0103250835,0.08305161,-0.0022562318,-0.03660714,0.112911984,0.0138027705,0.0052417545,-0.019528255,0.048084334,0.042905238,0.009467031,-0.02258794,0.04544251,0.10978042,-0.079422444,-0.04473904} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:30.017513+00 2026-01-30 02:01:11.471171+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1925 google ChdDSUhNMG9nS0VJQ0FnSURkXy15UHRnRRAB 1 t 1928 Go Karts Mar Menor unknown Muy divertido para ir con amigos\nRecomiendo la modalidad de grande prix es la mejor relación calidad precio muy divertido para ir con amigos recomiendo la modalidad de grande prix es la mejor relación calidad precio 5 2025-01-30 01:52:39.833374+00 es v5.1 V2.04 {O4.04} V+ I3 CR-B {} {"V2.04": "Muy divertido para ir con amigos Recomiendo la modalidad de grande prix es la mejor relación calidad"} {-0.0022366648,0.046220023,-0.003492895,0.0077467365,-0.06263907,0.0075918566,-0.03806569,0.07295416,-0.025502227,-0.031295504,0.03782661,-0.024764776,-0.029566363,-0.02132301,0.00651321,-0.033936944,0.017876253,0.050344273,0.0069468836,0.0032786506,0.13269907,-0.04021442,-0.12049588,0.09694323,-0.027954364,0.003087554,-0.058732048,0.08364495,-0.02958267,-0.02126744,-0.067343384,0.09153089,0.12512001,0.017952355,-0.040004194,0.032327265,-0.0019470592,-0.06278472,-0.033857267,-0.0024735746,-0.09692923,-0.08906612,0.0048677796,-0.03307605,0.0021843016,-0.02066465,0.065254636,0.06516447,0.023056587,-0.021207362,-0.0634548,0.06617394,-0.030102514,-0.031795338,-0.009518934,0.0045631034,0.015920125,-0.015739191,0.03933846,0.024918165,0.007480749,-0.019431446,-0.072308905,-0.00069109135,0.029536435,-0.033529807,-0.035350963,0.0019114631,-0.052640475,0.013912945,0.13551489,-0.08800392,0.0009941522,-0.021151554,-0.032092873,0.001497399,-0.010360936,0.06693915,-0.019998852,-0.0019771259,0.0739332,-0.020692827,-0.019499244,-0.12719245,0.043720618,-0.008769701,0.025176924,-0.0113312425,0.03490407,0.0049273795,0.012715625,0.10241449,-0.024388477,-0.020811683,-0.058946364,0.044176877,-0.038931273,-0.09564763,0.102153555,0.019561691,0.07107385,0.0988758,-0.04769369,-0.010221287,-0.09724,0.023562774,0.037120197,0.06974969,-0.00049945345,0.0006459623,-0.0068314984,0.00957819,-0.00336407,-0.09356867,-0.15496574,0.030152567,-0.047920685,0.017839333,0.022198616,-0.04119601,-0.016030014,-0.028640345,-0.027206888,-0.041020602,0.06224211,-0.037277985,0.018773684,5.867237e-33,-0.11195281,-0.029013947,-0.039294504,0.034546267,-0.072110415,0.044066243,-0.03030373,0.0032672754,0.028635649,-0.055535182,0.056494176,0.08732304,-0.007027149,-0.049757473,0.0943335,-0.01592839,-0.015884934,-0.0018488447,0.04421721,0.04258642,-0.017786132,-0.015697708,0.020195672,0.015980244,0.027529683,0.12545086,-0.0031623906,-0.028403066,-0.092354946,0.055919036,0.07274054,0.062992275,-0.022954304,-0.031760868,-0.0925606,0.01015908,0.054578178,0.028941197,0.007966993,0.026890166,-0.046943936,0.023501337,-0.03533302,-0.0011345336,-0.020467233,0.06147024,0.057706717,0.06173996,0.0992088,0.065860964,-0.067214295,-0.08334971,-0.050691146,-0.09803259,-0.009169162,0.049191657,-0.06843979,0.02361327,-0.047923,-0.08469785,-0.058866475,-0.019909227,-0.025316004,-0.024553383,-0.041905325,-0.028112613,0.049263652,0.031766195,0.110193476,0.007154521,-0.07420291,-0.07276007,-0.031632625,0.02567175,0.010149257,-0.04307324,-0.020054985,-0.00045970595,0.019375265,0.023218991,-0.07920504,0.05628945,0.0014306741,-0.02516746,0.1523138,0.0970218,0.047185715,0.11516411,0.07873163,0.030100282,-0.06522238,0.011226559,0.00983712,0.0056453287,0.049827863,-7.61933e-33,0.053735234,-0.015519357,0.0087646535,0.050879154,0.020394025,0.034945153,0.031095607,-0.07189267,-0.049316987,-0.038176183,-0.07623342,-0.08876978,0.090877905,-0.0035095066,-0.089902565,0.043158863,-0.019066727,-0.04762011,-0.09999671,0.014967327,-0.025424683,0.036709134,0.053260304,-0.025850134,-0.07636238,-0.0885798,-0.0770415,-0.03649728,-0.0010579216,-0.035513353,-0.0007578914,-0.048488982,-0.010957971,0.077566124,-0.02026242,0.043982692,0.028939005,0.03739336,-0.014033157,0.11851132,-0.014696724,0.028700236,-0.012807843,-0.012147403,-0.0017382732,-0.013837232,0.084583215,-0.11456132,0.022033947,-0.03939595,0.10253341,-0.05937585,-0.07144644,-0.040160354,-0.03925802,-0.016297119,0.066929184,-0.06012087,-0.097989626,0.007560849,0.090843745,-0.005022079,-0.0031479942,0.009799445,0.044600386,-0.015115325,-0.0015602538,-0.047845244,0.07121377,0.017903524,0.034470674,-0.044916607,0.006795789,0.02120574,-0.05025795,0.015764048,-0.036926918,0.08353996,0.030390818,0.03123241,-0.00035632,0.065035604,0.0018584053,-0.00822785,-0.026153289,-0.02368721,-0.0018273727,-0.04536474,0.03445856,-0.0015216488,-0.03998264,0.07587253,0.017889023,-0.02663236,-0.010039154,-3.626449e-08,-0.0061509777,-0.052282106,-0.0101372935,0.087393686,0.043167613,-0.042056266,-0.05383781,-0.00666363,-0.06121965,0.054944266,0.02361378,-0.027849324,-0.0015117138,0.0012959046,-0.017071176,-0.018547349,0.05591507,0.13523433,-0.038152292,0.0155151775,0.060507465,-0.009539591,-0.00021674084,0.012239918,0.03484527,-0.034568127,-0.05744483,-0.02877608,-0.0123611465,0.012219861,0.0022575236,-0.014901562,0.014387591,-0.07673238,-0.018143311,-0.004240078,-0.010454505,0.037959434,0.04513773,-0.032759424,0.06092397,-0.02939206,-0.10821239,0.0318759,0.006056251,-0.07215209,-0.056379292,-0.043654244,-0.0065984484,0.035295807,0.0097446265,-0.060062367,0.006044691,0.043546826,0.03565605,0.013485257,-0.011546937,0.02246519,-0.05466298,-0.026666066,0.049237814,0.05753652,0.014824266,-0.10890394} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.05122+00 2026-01-30 02:01:11.254964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1940 google ChdDSUhNMG9nS0VJQ0FnSUNDMzlXQjJnRRAB 1 t 1943 Go Karts Mar Menor unknown Bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo pero bonita experiencia 😘💙 bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo pero bonita experiencia 😘💙 5 2021-01-31 01:52:39.833374+00 es v5.1 E4.01 {P1.01} V± I2 CR-N {} {"E4.01": "Bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo"} {0.0018371685,0.033997204,-0.026300792,-0.060287375,-0.07811299,-0.009644216,0.0072652837,0.05059413,-0.008866258,0.0048450055,0.04384834,-0.007678258,-0.019753756,-0.06104172,-0.027221104,0.02458178,0.0032323643,0.10549836,-0.038547106,-0.008377193,-0.011947975,-0.054602485,-0.03164138,0.123961665,-0.101527356,0.015670292,-0.055863626,0.060743507,-0.015840521,-0.034741502,-0.0345642,0.091220275,0.13937545,-0.0006240749,-0.02544316,0.025950508,0.036200397,-0.055173438,-0.013371908,0.0032651492,-0.024000239,0.04181359,-0.014191035,-0.054348283,0.10162971,-0.076020025,0.027929593,0.05198332,-0.01567573,-0.05407694,-0.024612792,0.01713798,0.03240026,0.052532572,-0.011375363,0.06484032,0.02896633,-0.07440982,0.0502322,-0.014859134,-0.013141831,0.08039935,-0.022812914,0.033008743,0.014506642,-0.069368154,0.008268741,0.01822925,-0.06857104,0.05357012,0.07644696,-0.08501685,-0.03215739,-0.012156303,-0.023825103,0.1031442,0.013873979,-0.04306032,-0.058932472,-0.06466614,0.063054524,-0.02028459,-0.0031124365,0.0044138785,0.015217988,-0.039632123,-0.0016782188,0.01451716,0.010802901,0.03646063,-0.028822014,0.09729295,-0.054790642,-0.021660883,-0.11484664,0.014185269,0.010008371,-0.106056616,-0.029884776,0.027366117,0.059463713,0.007247895,0.12617646,-0.037791975,-0.0365906,0.0371089,0.05251417,-0.024569329,0.03771214,0.031517662,-0.024122704,-0.057846475,-0.06597257,-0.005493025,0.007014394,0.0440298,0.033049013,-0.028335122,-0.054763243,-0.008785849,0.0054257936,-0.00068406935,0.031172976,-0.061385777,0.038915075,-0.033471324,0.074667856,1.3136232e-32,-0.022155274,-0.06418915,-0.051159743,0.027443286,0.011555786,0.006044074,-0.03213328,0.00967594,-0.066720255,0.06734315,0.033400543,0.053133335,0.018575082,-0.03665244,0.0440727,0.105252005,0.013420759,-0.026972383,0.0439088,0.032542378,-0.12654243,-0.02414961,-0.04060912,-0.01778296,-0.04386188,0.023887942,0.008935497,-0.13848996,-0.014262745,0.04400816,0.019357635,0.07953158,-0.01991923,-0.06528333,-0.08171416,0.016104246,0.021772444,0.030677656,0.017315784,0.033224907,0.07748789,-0.0014609612,-0.006612662,-0.012240469,0.034474965,-0.017909778,0.031045998,-0.010397011,0.11989083,0.021180183,-0.028154956,-0.069454886,-0.028519442,-0.010324416,0.02484657,0.03177181,-0.05185997,0.11513182,0.031701624,-0.054339804,0.05440424,0.031019043,-0.07376045,-0.010815999,-0.049965166,-0.063492835,0.025362292,0.08088798,0.06605713,-0.043847844,-0.027987665,-0.050014455,-0.07776704,0.049916856,-0.007729358,-0.031354345,0.024298485,0.0057795704,0.034122985,0.030237027,0.019696493,-0.010968325,0.03528834,-0.018228706,-0.010571497,0.13060334,0.080779456,0.027619623,-0.033655822,0.1282058,-0.039669067,0.04058672,0.04967897,0.021544186,0.06465904,-1.287333e-32,-0.04201113,0.030835917,-0.03201715,0.044022262,0.009084083,-0.037046738,-0.1309365,-0.018131265,-0.08958307,-0.090866394,-0.012511775,-0.12373744,0.06872206,-0.02277507,-0.008273812,0.016471075,0.012636851,-0.06099596,-0.08342753,-0.06809781,-0.03645268,-0.018803224,-0.008096792,0.04475941,-0.05843968,-0.013538558,-0.0047929944,0.085347846,-0.0035569794,-0.0049458314,0.07743072,0.0190471,0.005372392,0.090268545,-0.04640802,0.01868634,-0.002864728,0.009293715,-0.0036865256,0.05432118,-0.044967327,0.06829094,-0.040993936,-0.047739778,0.006446733,0.036776107,-0.019588536,-0.1359421,-0.013541165,-0.044316627,0.065923296,-0.054098807,-0.028583804,0.002632285,0.036812477,0.01045216,0.022204174,-0.07760968,-0.073478326,-0.066350676,0.036145855,0.039747793,-0.035593953,-0.06613827,0.04903751,0.03152266,4.04451e-05,0.004991796,-0.076522075,0.032434653,-0.0051142485,0.046824027,-0.0011041046,0.08466932,-0.03838986,0.023861196,-0.053976856,-0.03435418,0.006136835,-0.095590584,-0.07496996,-0.0012405422,0.0007380717,-0.021497888,-0.061469484,-0.04027088,-0.051357813,0.012205661,0.004483614,0.025491731,0.023307797,-0.012509341,-0.0824548,-0.13880087,-0.031621143,-4.2693763e-08,0.019844629,-0.083288945,-0.016757717,0.045409154,0.033612188,0.026322205,0.047574762,0.0038324099,0.08748223,0.020266216,-0.060922064,0.012193816,-0.013398416,0.041945275,-0.051920008,0.09558605,0.104662485,-0.048393942,-0.014005623,-0.08257607,0.011603448,-0.030270083,-0.018555248,-0.032269955,-0.037764136,-0.0072368737,-0.096425615,0.0024949615,-0.011717781,-0.065755494,0.034646172,-0.02954733,0.055998724,-0.03313263,0.06316487,0.028246308,-0.00037159995,-0.08639221,-0.04191221,-0.04328897,0.11609189,-0.055873614,-0.041984588,-0.04511177,-0.04282362,-0.10080955,0.013774007,0.08241738,0.004845188,0.040564872,-0.013199684,-0.04244042,0.07571458,0.045139667,0.020560933,-0.01667891,0.094353564,0.06857998,0.03495128,0.0077971932,0.064198844,-0.00016207402,-0.016749084,-0.021416679} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.181636+00 2026-01-30 02:01:11.302407+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1953 google ChZDSUhNMG9nS0VJQ0FnSUR1anVUWFhnEAE 1 t 1956 Go Karts Mar Menor unknown Genial. La mujer rubia súper encantadora. Los chicos de pista súper atentos a que todos estuviéramos agusto. Súper recomendable este sitio. Volveré seguro genial. la mujer rubia súper encantadora. los chicos de pista súper atentos a que todos estuviéramos agusto. súper recomendable este sitio. volveré seguro 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {P3.01} V+ I3 CR-N {} {"P1.01": "Genial. La mujer rubia súper encantadora. Los chicos de pista súper atentos a que todos estuviéramos"} {-0.063879766,-0.0511362,0.014478871,0.010145557,-0.09970598,0.0294473,0.015649468,0.07829279,-0.086560905,0.019556263,0.039538573,0.07163492,-0.033580843,-0.045754027,-0.042984944,0.013787681,0.086440764,0.023141371,0.064788125,0.04033382,0.12107635,-0.1162659,-0.046346433,0.112029955,-0.1065472,-0.0069633913,-0.026915208,-0.011183502,-0.03073683,-0.070454165,-0.04380645,0.10009045,0.056945123,-0.03166142,-0.025488945,0.0024234941,0.02510609,-0.037902124,0.00041444367,0.027120357,-0.07369796,-0.00072577543,-0.023600953,-0.07220075,0.02909938,-0.08164863,0.00811113,0.07732653,0.0486842,5.7642865e-05,-0.14845483,-0.055800077,0.03643927,0.028992375,0.0072867484,-0.06349913,-0.037848096,-0.10769274,0.025978765,0.044499222,0.0084189195,-5.4452463e-05,-0.05530449,0.0100096855,0.021852061,-0.040758234,-0.01993693,-0.02528597,-0.095522456,0.11114275,0.02610182,-0.003450337,-0.0045320415,0.047288135,-0.0070880093,0.08086449,-0.0070995414,-0.04263136,-0.04171363,-0.004378277,-0.021261971,-0.053530343,0.013292233,-0.08492908,0.023292597,0.038996864,0.058655795,0.027379086,0.030414885,-0.023261914,-0.036097784,0.09817258,-0.07948235,-0.0019385436,-0.04686577,0.049331494,-0.05404037,-0.029723575,0.06176668,0.0007468719,0.053323355,-0.01155152,0.021613566,-0.07029436,-0.107236825,-0.073313415,-0.013142285,-0.042020693,0.016940301,0.025511386,-0.010790235,-0.035305202,-0.03848804,0.0026911576,-0.09609835,0.019052237,0.039797854,-0.056758646,-0.044417635,-0.054536536,0.06487953,0.03289263,-0.025126506,0.012578022,-0.0019885388,0.0013974353,0.0147824325,7.5710946e-33,-0.02496105,-0.056609266,0.018229477,0.047840405,-0.0032571708,0.05557387,-0.026134508,-0.051870197,-0.046246707,0.00056480384,-0.07649659,0.09231638,0.028409928,0.0039843074,0.004997472,0.024847422,0.0022933476,-0.034163013,0.04170823,-0.0092503885,0.0053310622,0.086551,-0.02007037,0.036081597,-0.03330524,0.087117076,0.04178035,-0.093454465,-0.007730553,0.046658963,-0.026550097,-0.042288058,-0.025457183,0.04814762,-0.014260234,-0.03400551,-0.006458741,0.0010318311,-0.008369436,0.029039595,0.008624061,0.01027713,0.019199299,0.045832444,-0.05917153,0.018838316,0.08096369,0.0041797026,0.080188826,0.0021443395,-0.062249184,-0.03967737,0.0038906555,-0.017282039,-0.0062314137,0.02775803,-0.061339065,0.01262776,-0.05630757,-0.05777593,0.076196656,-0.058393974,0.035463184,-0.089569755,-0.079347216,-0.05488608,-0.0019807853,0.08020145,0.14468162,0.066262096,-0.0016355619,-0.022199085,0.031152261,0.07461064,0.026332822,-0.007990827,0.037353303,0.07830891,-0.049723476,0.06832519,-0.06935417,0.018501736,0.056351993,0.05250927,0.046836913,0.06212486,0.0036165675,0.051166996,-0.00086704845,0.056611586,-0.06811034,0.028497912,0.10450707,0.01029443,-0.033463627,-8.653959e-33,-0.0045719757,-0.0027720917,0.025082437,0.12126565,0.009927,0.019407472,-0.09520219,-0.02927528,-0.056009762,-0.04969763,-0.042681593,-0.10279659,0.13052191,-0.056809556,-0.029953621,0.048737902,0.006810333,-0.07536234,-0.07824252,-0.05260028,-0.105082214,0.08231314,0.035451353,0.0021083679,0.030044185,-0.010241779,0.029666845,-0.0026762737,-0.06187607,0.069116205,-0.003990125,0.009709854,-0.0464575,0.028810456,-0.017241022,0.089419015,0.03242587,0.011446726,0.012996275,0.06690485,-0.027298646,0.047179785,0.053286016,0.035364278,0.019696705,-0.0038499269,-0.020622283,-0.052024987,-0.046863217,0.0027581893,0.025126418,-0.007744077,-0.058686443,-0.014288441,0.043449275,-0.08880537,-0.003073674,-0.07616437,-0.07122329,-0.0010288712,0.056713443,-0.055657007,-0.11682012,-0.03956387,0.030678118,0.063898645,-0.027766382,-0.067620814,-0.016881466,0.05093658,0.06195345,-0.024520447,-0.07237114,0.034008708,-0.041389335,0.031087572,-0.029406058,0.021188792,-0.005276646,0.015123197,-0.026761997,-0.02295908,-0.02654486,0.00027867363,0.05613884,0.021563642,-0.060189832,0.01549821,0.007045762,0.018163309,-0.014453755,0.013218352,-0.03693506,-0.08292645,0.023789722,-3.647666e-08,0.04800688,-0.0017085151,-0.01672033,0.023200173,0.024062533,-0.056013465,-0.07273669,0.05148089,0.029678434,0.103034206,-0.059592582,-0.019526126,0.062740654,0.054107875,0.038296927,0.036425743,0.10884716,0.12177916,-0.04378733,-0.018970344,-0.010257918,-0.02675343,-0.052116334,-0.025607748,-0.0703818,-0.010646506,0.00207922,-0.08454049,0.022927472,-0.024980098,-0.039576933,0.008176629,-0.009663448,-0.076827705,-0.030438436,0.022418112,0.0013261691,0.051369555,0.013611029,0.023881415,0.10379267,-0.007622314,-0.033295464,-0.0071984166,-0.07585278,-0.12423756,0.011608353,-0.025491877,0.010052851,0.11080507,-0.039110273,0.019949136,0.08734164,0.012169347,0.05965157,-0.011984196,0.052233413,0.009229833,0.026321143,0.048887055,0.054103527,0.08528369,-0.0120158745,-0.0031475546} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.330874+00 2026-01-30 02:01:11.347917+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1955 google ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB 1 t 1958 Go Karts Mar Menor unknown una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio, personal muy agradable y amable. Desde Galicia vine y me quedé con ganas de volver, repetiré 👋 una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio, personal muy agradable y amable. desde galicia vine y me quedé con ganas de volver, repetiré 👋 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.02 {E1.01,O1.03} V+ I3 CR-N {} {"O2.02": "una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio", "P1.01": "personal muy agradable y amable", "R4.03": "Desde Galicia vine y me quedé con ganas de volver, repetiré"} {-0.08262404,-0.015225392,0.01705394,-0.013991894,-0.059409518,-0.01923734,0.06298516,0.048285548,-0.050915238,-0.023463983,0.055425163,-0.021015044,-0.07067422,-0.012276165,0.03074681,0.012869748,-0.0011108837,0.0532879,0.014794148,-0.009348132,0.03265533,-0.00868599,-0.09175642,0.10370652,-0.011194503,-0.0106793055,0.0065278895,0.048449956,-0.051760685,-0.14883018,-0.06846824,0.08109727,0.03316092,-0.034368914,0.0059237937,-0.026070116,0.012922137,-0.116368346,-0.04024906,0.010661352,-0.05109879,-0.03174865,0.010340929,-0.034063324,0.0044896905,-0.011595971,0.011376531,0.037808277,0.07173174,-0.06833166,0.013648711,-0.0832257,0.04201081,-0.01868457,0.023029527,-0.028820101,0.013074135,0.060722437,0.12620938,0.09139668,0.08171087,0.04065666,-0.02356581,0.0291905,-0.023099482,-0.06874526,0.03773278,0.04055252,-0.03995646,-0.014974693,0.11751245,-0.117281325,-0.020080246,0.03303093,-0.009408081,-0.034804393,-0.01882474,-0.0006048468,-0.07160955,0.043205503,-0.02169853,0.024891144,-0.06656892,-0.057456076,0.007171361,-0.014942273,-0.062290054,0.04857468,0.009528879,-0.023897463,-0.013942503,0.062204443,-0.06859947,-0.060011327,-0.014543265,-0.0033319774,0.07845211,-0.087456465,0.050661333,0.054574914,0.08086282,0.0409929,0.05111112,0.04482419,-0.04360781,0.06871706,0.010760423,0.019952642,0.011520634,-0.003950244,-0.015241248,0.035926387,-0.06930139,-0.043785874,-0.044259634,-0.057498273,-0.024914613,0.032095686,-0.037317388,-0.020457108,0.029522965,-0.02882574,-0.06689773,-0.02183012,-0.010099852,-0.03228347,0.0375201,6.449697e-33,-0.062207717,-0.03097045,-0.040008705,0.067021005,0.049752213,0.012653346,-0.06014609,-0.019323204,-0.04576389,-0.038527723,-0.06110271,0.0075150738,0.008571024,0.07990266,0.084142625,0.0050398936,-0.008580222,-0.10581958,0.06336539,0.024273736,0.02097715,-0.03991673,-0.01370462,0.06753331,-0.041655,0.032435365,0.074725114,-0.06614572,-0.06846311,0.025030848,-0.011172589,0.026591545,0.0785777,-0.058808107,-0.043768205,-0.026422704,0.019206261,-0.010960382,-0.026579494,-0.028931005,0.03420319,0.06086641,-0.016663203,0.034024887,-0.029086728,0.048094023,0.024305861,0.041056566,0.09016693,-0.004209082,-0.074307814,-0.043503594,-0.07110656,-0.0024977792,0.008268333,0.097518966,-0.0127645545,0.012874165,-0.03238458,-0.06264384,0.06414999,0.0067611528,-0.016096951,-0.062418543,-0.016718026,0.031413168,-0.000345785,-0.046313945,0.12551339,-0.0052308785,-0.15597148,-0.013340564,-0.08701471,-0.009105744,0.023469279,-0.013143689,-0.042831723,0.07407185,0.022116506,0.04639997,-0.090699404,-0.0525412,0.008735434,0.0023822656,0.1048603,0.06050013,0.057592247,0.0036546215,0.02973939,0.11648926,-0.06770035,0.04745454,0.07666421,-0.020044245,0.071014464,-8.879747e-33,0.017250761,0.017468913,0.11098947,0.07308267,-0.0098341415,0.035976797,-0.07450556,0.007890512,-0.0336084,0.011180766,-0.09282668,-0.010209204,0.023269858,-0.019363347,0.029912379,0.054893192,-0.0023485983,-0.038857765,-0.07621673,-0.009420892,-0.005205522,0.11184469,0.005345242,-0.089866035,-0.043512747,-0.079221666,-0.08924027,0.0058526015,-0.018464403,0.00077578507,0.03299572,-0.05876737,-0.022723747,0.004780815,-0.039908987,0.030927993,0.09283639,0.03830117,0.014779348,0.10886869,0.0117522115,0.064472966,0.0057596834,-0.00024689388,-0.09304936,0.007924061,-0.011043555,-0.08715296,-0.011607959,-0.046054937,0.08918476,-0.041234877,-0.061768804,0.015465137,0.02695921,-0.113480054,-0.0018129732,-0.02747091,-0.07670256,-0.07074112,0.022589078,-1.4207443e-05,-0.038342852,-0.014863484,0.06451305,0.04373544,-0.040902745,-0.019592086,0.044969734,0.0012256069,0.030255789,-0.0017367073,-0.005081069,-0.019003786,-0.028189434,-0.0911344,-0.12888451,0.048387043,0.03731877,-0.038443636,0.048970815,-0.05413725,-0.035770684,-0.051254224,0.07757721,-0.03705049,0.016110316,0.06942142,0.07910518,-0.005724252,0.013090648,0.04657239,-0.04351272,-0.025694516,0.042089984,-4.1156103e-08,-0.009445301,0.044938665,-0.099324785,0.046505664,0.037705954,-0.058519978,-0.024956984,0.060703672,-0.017249387,0.06505424,-0.020966712,-0.02741561,-0.03457173,0.011870303,0.020524258,0.06947125,0.015007767,0.100669324,0.0061754766,0.026480032,0.076001845,-0.013673095,-0.025716128,0.06575785,-0.03933772,-0.008831531,0.043503065,-0.0042869165,0.021928513,-0.029397074,-0.014401263,0.031791292,-0.054328535,-0.035328895,-0.02018594,-0.017398821,-0.06661611,0.011634252,0.0056406423,-0.039458822,0.029871745,-0.092118986,-0.112076424,0.043658838,-0.07617489,-0.085336,0.004689821,-0.009190555,-0.06790959,0.044152003,0.0063296524,-0.070357114,0.0652426,0.048231397,-0.016600657,0.018369326,0.08051826,0.011139931,-0.07283858,-0.01247834,0.06161333,0.0006023601,0.021738915,-0.07468831} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:41.76811+00 2026-01-30 02:01:11.355966+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2006 google ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB 1 t 2009 Go Karts Mar Menor unknown Presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mantenimiento, el personal de pista muy bien presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mantenimiento, el personal de pista muy bien 4 2023-01-31 01:52:39.833374+00 es v5.1 E4.01 {O1.03} V- I3 CR-N {} {"E4.01": "Presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mante", "P1.01": "el personal de pista muy bien"} {0.019808711,0.039222002,-0.011891682,-0.05990985,-0.07622718,-0.0050028428,0.03889268,0.020138035,0.00064411596,0.040405218,0.08614089,-0.02932214,-0.027827313,-0.023331948,0.061123516,-0.02371939,-0.03267531,-0.011465277,0.02499433,0.024070019,-0.026959369,-0.043807264,-0.06191829,0.04795584,-0.118496254,-0.047097903,-0.006111237,0.014140065,-0.017108716,-0.066182196,-0.0012939386,0.02311572,0.11502507,0.057115905,-0.041533533,0.036249496,-0.012905852,-0.043299254,-0.04877955,0.056755185,-0.09467859,-0.03630475,-0.016362324,-0.048134286,-0.035429187,-0.045891024,0.028548392,0.011186899,0.005878056,-0.02327242,-0.090952694,0.035822753,-0.020430325,0.008362808,0.051221885,0.03767659,-0.04974125,-0.008355274,0.051187325,0.064663544,-0.035549406,0.03983066,-0.060158484,0.0143217025,-0.0036320772,-0.06422411,0.03351809,-0.02458529,0.012082995,0.06974715,0.14092173,-0.04268922,-0.018769447,0.011789947,-0.01818594,0.033205085,0.0008378623,-0.03604054,-0.05028784,0.006904636,-0.021672914,0.018325185,-0.041979108,-0.011405644,-0.055017542,6.552151e-05,-0.050457556,0.010710968,0.02259147,0.0011238226,-0.023169478,0.075837806,-0.04602231,-0.053891756,-0.06724655,0.013425156,0.02878837,-0.023458382,-0.017066497,0.011186074,0.11846205,0.04821856,0.0631947,-0.011735388,-0.07215443,-0.0054423455,-0.007446526,-0.027148696,-0.023519987,0.051438384,-0.012902125,-0.013317285,-0.087227635,0.007910725,-0.07454207,-0.027989136,0.0055287844,-0.035012793,-0.018651428,0.009850243,0.011491649,0.019668752,-0.06949632,0.021559885,-0.023958474,-0.09385611,0.02273306,9.931809e-33,-0.030555192,-0.06634934,-0.0072030476,0.011874254,-0.05119173,0.026576841,0.0027104004,-0.06099896,-0.05531238,-0.025784483,0.008658124,0.08514767,-0.025763128,0.048762813,0.006934078,0.09396436,-0.047156237,-0.023843719,-0.004984629,0.041388642,0.014325918,-0.03725034,-0.04590502,-0.036953233,-0.00077139284,0.01973146,-0.010076509,-0.101251416,-0.048605517,0.026824774,-0.06917875,0.052160867,0.016493568,-0.04058632,0.009050657,-0.030187199,0.01811286,0.054370377,-0.061081752,-0.053446557,0.021293795,0.03383778,0.019550515,0.011736016,-0.031337302,0.02251698,0.098536134,0.057995226,-0.005120208,-0.004192408,-0.043187868,-0.07493906,0.018479288,-0.021224478,-0.04022494,0.004948881,-0.0499756,-0.010628127,-0.034052633,-0.0006831457,0.08172155,0.009217125,0.048619702,-0.019026024,0.02160645,-0.14222962,0.06986664,0.04080444,0.12070518,0.10803482,-0.046642028,-0.0088956375,-0.038005576,0.021018935,0.056973588,-0.0012519585,0.009834961,0.047129814,0.010514028,0.0009523812,-0.005873082,0.0054930183,0.041248452,0.046729274,0.051315926,0.05681285,0.061938796,0.06615423,-0.05463708,0.15446061,0.023872951,0.103275456,0.075087965,-0.00239635,-0.01853437,-1.20962894e-32,-0.068160415,0.021260526,0.030061431,0.028052451,0.009610258,0.028844416,0.006827982,0.018665984,-0.055143703,-0.05223322,-0.07829779,-0.14823796,0.17132412,0.008085581,-0.024418721,0.08872515,-0.006930055,-0.02158146,-0.072224565,-0.023759186,-0.0017036652,0.049249157,0.019695027,0.031804014,-0.020953368,-0.11581595,0.0256922,-0.045896422,-0.13584349,0.01579113,0.047512263,-0.020532494,-0.03382266,-0.033163585,0.018398875,-0.0028041974,0.0050637,0.061957594,0.071082965,0.08988273,0.003956186,0.12710337,-0.033313137,-0.05101899,-0.031386968,0.03400941,0.070913136,-0.18233645,-0.036700737,0.021814067,-0.021847,-0.028864406,-0.040480938,-0.039990425,0.060638383,-0.08744422,0.040818226,-0.09402713,-0.10695917,-0.010772643,-0.050674822,-0.058268882,-0.015242636,-0.0541839,0.074183956,0.02623468,-0.012735732,-0.026633142,-0.01751027,0.005489941,0.050860826,-0.029823763,-0.03856403,0.004470586,-0.03670039,-0.074115366,-0.07146988,0.01261399,0.025997438,0.030015672,0.036272023,-0.030987509,-0.0014756913,-0.046572924,-0.006611197,-0.028247995,-0.022317532,0.048499245,0.024840068,0.04417475,0.035910383,0.022208275,-0.07783409,-0.04399186,-0.039351378,-4.281969e-08,0.015571241,-0.071914114,-0.053239595,0.009795278,0.044568505,0.043891,-0.017931083,0.029844182,0.0033325239,0.10756722,-0.006794563,-0.023813223,0.007393606,0.024860146,0.045473497,0.03634912,0.15385202,0.06577437,-0.03268227,-0.026009,0.027965542,-0.010721719,-0.013985255,0.028448446,-0.0058798166,0.057905894,-0.05871892,-0.009736302,-0.0359224,-0.0051283417,-0.0040042335,0.019214276,-0.091957174,-0.10647401,-0.037966855,-0.0020057487,0.04377479,0.01826906,0.009434023,0.0077646216,0.056984063,0.04591769,-0.10509092,0.068013445,-0.01957482,-0.08570763,-0.03538376,-0.03799552,-0.02966344,0.04394467,-0.015230075,-0.029682562,0.087265566,-0.0030514013,0.06124879,-0.064571775,0.03117183,0.04542834,-0.060454614,-0.0290991,0.09706518,0.153318,0.012560714,-0.044577807} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.687567+00 2026-01-30 02:01:11.636424+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2044 google ChZDSUhNMG9nS0VJQ0FnSUM2cmJxS0dnEAE 1 t 2047 Go Karts Mar Menor unknown Mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. Y la merienda genial mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. y la merienda genial 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O4.04,O2.03} V+ I3 CR-N {} {"V4.03": "Mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. Y la merienda genial"} {0.089709006,0.04406655,0.033795647,-0.021842891,-0.08371014,0.006727484,0.06709119,0.03136504,0.015725672,0.029567668,0.061094098,0.0491875,0.012515365,-0.083788276,0.018819286,0.005974855,-0.0053623547,-0.002098802,-0.034144368,0.04564282,0.049030248,-0.058130093,-0.040587284,0.101201944,-0.1052986,-0.011627029,-0.0127829,-0.0075387773,-0.0043104435,-0.01921749,0.016843151,0.101820536,0.08802789,-0.012986154,0.0052771126,-0.0072691496,0.07252356,-0.07830758,0.0037841753,0.014847469,-0.06755371,-0.0019172267,-0.009215503,0.048932727,0.03877628,-0.12877695,0.018608674,0.014895938,0.030087056,-0.0365266,-0.09113895,0.005428223,0.050196424,-0.011753521,-0.034110934,0.009363025,0.008260498,-0.04309466,0.092007294,-0.009235817,-0.07426933,0.06913428,-0.058529377,-0.044181038,0.053139035,0.004621296,0.046693623,-0.010178001,-0.08094811,0.07067182,0.04994481,-0.041381657,-0.03847923,0.12442593,-0.040322594,0.0048707672,-0.018454384,-0.025044117,-0.019386718,-0.060118448,0.015178769,0.0055819107,-0.02795402,-0.047974024,-0.0044025574,0.0027243793,-0.020938905,-0.012941231,-0.000245757,0.0018448242,-0.03884132,0.032199457,-0.027142432,-0.039486825,-0.025766505,-0.017842744,-0.011996933,-0.021466289,0.036924925,0.013556611,0.11375196,0.08040352,0.048805498,0.06758857,-0.060460523,0.07037662,0.023149705,-0.045191947,0.019255547,0.028227989,-0.0450511,-0.018596496,-0.06990705,0.040927317,-0.025033513,0.021169528,0.028152473,0.00023554168,-0.00729566,-0.1108344,0.026324222,-0.023091303,0.0038001803,-0.06565226,-0.050178144,-0.09771595,-0.043870345,8.7094345e-33,-0.040947054,-0.011983968,-0.008845369,0.112428986,0.007224016,-0.0044250996,-0.017184027,-6.0051966e-06,-0.0704616,0.043547563,-0.035968065,0.041806307,-0.060248073,-0.04309903,0.0405792,-0.00080191303,-0.03208299,0.007506352,0.046510875,0.018157244,-0.104415365,0.046343103,-0.00016486656,-0.016892439,-0.04108487,-0.01709535,0.013725759,-0.057069346,0.019638542,0.06346653,0.046398096,-0.005392517,-0.0071901516,-0.058609717,-0.010278162,-0.07598923,0.07863425,-0.0075026383,0.006177174,-0.050307125,0.017279731,0.019644395,0.03674443,-0.0080836285,-0.024511125,0.06485884,0.093176916,-0.02390706,0.036915366,0.03122072,-0.028456012,-0.05420066,-0.078324206,-0.098800816,-0.031617314,0.0032573296,-0.07459236,0.011242736,0.025037073,-0.02952989,0.026134418,-0.029434793,-0.021726942,-0.004275384,-0.05991387,0.015167544,0.040515892,0.04822208,0.15612936,0.09751252,-0.052321292,-0.07089121,-0.056372475,0.0069220643,-0.003583562,0.03607204,0.0016075454,0.066641316,0.0011585032,0.0138971545,-0.032282267,0.04639865,0.00025283595,0.0076731923,0.098203294,0.12794544,0.07232698,0.019999638,-0.02289619,0.13481253,0.010763679,0.018458031,0.07866965,-0.07516026,-0.046375092,-8.138751e-33,-0.027474435,-0.05638979,-0.026904168,0.018713439,-0.042285725,-0.020851625,0.0029764953,0.0030415624,-0.047196276,-0.1163692,0.015127628,-0.10110493,0.13579565,-0.085563585,-0.059161883,-0.0020009137,0.0861707,-0.087939285,-0.11265544,-0.03252697,-0.03946029,0.016081544,0.11348659,0.020549823,-0.0048424625,-0.052476864,-0.013591039,0.07153029,-0.013844711,0.003822383,0.059286285,0.038817134,-0.020226551,0.034253817,-0.010691206,-0.008617251,0.004051165,0.08018367,-0.006050891,-0.015554677,-0.08856833,0.0070878137,-0.07255985,0.037986077,-0.007695152,0.054556683,-0.046000868,-0.11765699,0.023539612,0.023130512,0.032866325,0.012128671,-0.039134763,-0.0009637682,0.023049701,-0.029253097,0.051056203,-0.034006834,-0.043197654,0.016258882,0.032592766,0.06946054,-0.010991032,-0.03464734,0.13059585,0.0024101124,-0.039121486,0.06513282,0.037122943,0.042448133,0.098045714,0.012371959,0.013777904,-0.011223263,-0.08478257,0.0045241266,-0.096855655,-0.033820026,0.021649497,0.054997873,-0.0115245655,0.019909443,-0.031255193,-0.020803297,-0.07899804,-0.056039114,-0.0070652887,0.08128228,-0.0028808848,0.02364435,0.055602796,-0.06830352,-0.025341583,-0.10078953,-0.0768079,-3.146807e-08,-0.04973715,-0.07270972,0.05681766,-0.002980607,0.004224601,0.009993087,-0.04717345,0.0879132,0.025168832,0.023659479,-0.034918793,-0.02928515,-0.0050008665,0.017575825,-0.0035783376,0.05660955,0.09643807,0.04363824,-0.022581847,-0.06338601,0.11354731,-0.023268605,-0.034380734,0.08288662,-0.032130033,0.028165935,-0.020971656,-0.051025826,-0.009143531,-0.008681538,0.0010506152,-0.0700662,-0.049185675,-0.06707699,0.0035248224,-0.0180243,-0.018472219,-0.037407372,0.008400115,-0.01601919,0.11026281,-0.04023501,-0.028932383,0.04266734,-0.048775323,-0.04610009,0.009135813,0.045999154,-0.022016652,0.025152434,-0.0105597,-0.017397204,0.05855623,0.006259172,0.009165694,-0.053472742,0.03923135,0.047399994,-0.017879106,0.002708699,0.108594336,0.1345788,0.073465735,-0.0635205} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.259559+00 2026-01-30 02:01:11.765494+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2062 google ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE 1 t 2065 Go Karts Mar Menor unknown Супер, карты свежие, трасса крутая, в среду акция двойное время, одни из лучших картингов где я был. супер, карты свежие, трасса крутая, в среду акция двойное время, одни из лучших картингов где я был. 5 2021-01-31 01:52:39.833374+00 ru v5.1 O1.02 {O2.05} V+ I3 CR-N {} {"O1.02": "Супер, карты свежие, трасса крутая", "V2.05": "в среду акция двойное время", "V4.03": "одни из лучших картингов где я был."} {0.029203234,0.07136529,0.0066827373,0.0053235353,-0.05536156,0.059411727,0.10949772,-0.0093979025,-0.0387321,-0.015624544,-0.04821959,0.041863944,0.00048556866,0.026259748,0.023275105,0.009462208,-0.04553537,0.10792084,-0.008419814,0.038081355,-0.019221045,-0.03421163,0.101665005,0.021176625,0.02304848,0.061880134,-0.0037784325,-0.010510612,0.04751039,0.061573274,-0.049201097,-0.016885811,0.043649286,-0.0033135815,0.011905321,-0.0051274514,-0.042159744,-0.017426968,0.020604951,0.08051056,-0.03130564,-0.0017294363,-0.082861744,0.048112284,-0.014743315,0.042185053,-0.12254051,0.07113596,0.021883195,-0.0071138525,-0.09167135,-0.05725058,-0.034469347,0.05099357,0.01683618,-0.100770205,-0.026904777,-0.026807595,-0.027107611,-0.05010143,0.026947737,0.017636038,0.019612756,-0.009583978,-0.040691443,0.008417879,0.01068908,0.064557575,-0.020418528,0.13029465,-0.009457746,-0.022524174,-0.0758236,0.02317808,-0.058763925,-0.11004078,0.01823346,-0.07024925,-0.028484957,-0.021902455,-0.017621769,0.040149234,-0.08187204,-0.025922855,-0.09696226,0.0047948337,-0.011131584,0.025644246,-0.023381345,0.030397128,-0.043960445,-0.011608572,0.06311545,-0.062215023,-0.028568393,-0.040284555,0.0013911187,-0.07100356,0.11978269,-0.044738278,-0.010265668,-0.0023879078,0.01534742,0.048786975,-0.09201853,-0.03714317,-0.100698516,-0.05786485,-0.021886548,0.010130122,-0.020901252,-0.09643157,0.018490693,-0.032352846,-0.0016355283,0.06775611,-0.053725373,-0.04963099,0.043200877,0.020553805,0.07348771,-0.04128107,0.02256557,0.018535538,-0.030334307,-0.044962157,0.057106365,1.3135027e-32,0.009467077,-0.03929936,0.005453531,0.057467707,-0.09069,0.028691253,-0.06296548,0.0046547935,-0.006714042,0.06235655,-0.05714574,0.0450971,0.0114329625,-0.04487322,0.03793544,0.012541918,0.064815335,0.050924834,0.047022242,0.08174669,0.032363545,0.15350918,-0.01964693,0.0049814046,0.01659292,-0.050417405,0.0112245465,-0.055771828,0.047841065,-0.020011298,0.079567365,-0.032994673,-0.044209152,0.019830864,-0.05137231,-0.08570681,-0.01579203,0.07670139,0.013853168,0.075780064,0.043637644,-0.06922363,0.0062455176,0.0070824674,0.07521301,0.040198326,0.022151293,-0.0054686163,0.03689199,-0.027082639,-0.06207715,0.031738322,-0.029656336,0.036029406,0.011828708,0.03611432,-0.0041406415,0.009175711,-0.10655845,0.0045803264,-0.006635438,-0.051063273,0.054613788,-0.04795096,0.012344644,-0.11014342,-0.030460812,-0.03512147,0.039767895,0.028483966,-0.10150564,-0.0210828,-0.055366553,0.06367957,-0.01476421,-0.0268997,-0.046613246,-0.005660573,-0.093705505,0.056879673,-0.07058043,0.016802534,0.0060204975,0.0011502305,0.06465634,0.033063702,-0.026555022,-0.071373686,-0.0035966577,0.014148358,-0.18253982,-0.06480805,0.060281727,0.011668286,-0.029527377,-1.5451422e-32,0.023042867,-0.06969868,-0.059133813,0.088481456,-0.006817733,0.040010415,-0.049255013,0.05276889,0.005458698,0.110185295,0.017351564,-0.056950003,0.010769842,-0.01956885,0.0042405813,0.018297276,0.052848067,0.080807514,-0.14433601,-0.002220921,-0.05296731,-0.047533933,0.008841949,0.027696418,-0.019202566,0.013796931,0.13212872,-0.04455701,-0.017889967,0.0965099,-0.009594841,-0.06407715,-0.04652713,0.044528555,0.020913735,0.029494295,0.088116325,-0.0352119,-0.12609589,0.06119762,0.019462466,0.09025562,0.12766369,0.090380155,0.0498511,-0.086369656,-0.14133984,0.044439465,0.0378292,0.011317776,0.025574975,0.006049902,-0.013170842,-0.04690255,0.087003745,-0.11766063,-0.038477346,0.015976503,0.04288038,0.036602393,-0.021379016,-0.048165087,0.07221206,-0.042448282,-0.045576926,-0.046641316,-0.0385094,0.020874089,0.019429943,-0.016079357,0.067938566,-0.06674728,-0.075127944,0.06373135,-0.0022936668,0.018007558,-0.033894062,0.07375199,0.04613831,0.03062213,0.024475183,-0.0023129885,-0.03388019,0.032852944,-0.07055946,0.02290469,-0.033308625,0.015792279,0.025944421,-0.013549498,-0.0016975311,0.011191271,0.048017114,0.0054923343,0.0020636236,-5.2169483e-08,0.05497763,-0.049032837,0.05655666,0.0040160427,-0.007701185,-0.05692174,0.02766348,-0.03322596,-0.054361086,-0.014415991,0.032165766,0.05794925,-0.032289255,-0.054727726,0.0051208828,-0.010747528,-0.024065578,0.08582232,0.020561742,-0.02090954,0.040753372,-0.056676984,-0.05943019,-0.07937668,-0.041330945,0.030654375,0.020891681,-0.08924258,0.07086629,-0.01011978,0.026582852,-0.021862624,-0.04119055,-0.050075844,0.0036905704,-0.027371356,0.00037911723,0.020407557,-0.009044891,-0.006654751,0.060116045,-0.0344877,0.04574058,0.012728127,-0.049969096,-0.0005594214,-0.021062661,-0.03377429,-0.025406845,-0.05816531,-0.040689006,0.009728436,0.017416999,0.022531526,-0.037083674,0.10968631,0.013529549,-0.034815293,-0.0168517,0.034550082,-0.018213889,0.09954748,-0.008607604,0.008305458} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.004238+00 2026-01-30 02:01:11.828265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2135 google ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE 1 t 2138 Go Karts Mar Menor unknown El circuito está bien, pero los mismos karts de misma categoría corren de manera distinta, unos más que otros. el circuito está bien, pero los mismos karts de misma categoría corren de manera distinta, unos más que otros. 3 2020-02-01 01:52:39.833374+00 es v5.1 J3.01 {O1.04} V- I2 CR-N {} {"E1.03": "El circuito está bien", "J3.01": "pero los mismos karts de misma categoría corren de manera distinta, unos más que otros."} {-0.014360249,0.0021760229,-0.03053588,-0.045114454,-0.065598615,-0.014202378,-0.023155568,0.044738546,0.010949003,0.017024808,0.070432745,-0.011876456,-0.014594603,-0.0043842387,0.058629833,0.027724588,-0.014483158,0.051834498,0.04168657,-0.034937833,0.068878636,-0.09110542,-0.08428492,0.087095916,-0.09924121,-0.0034613418,0.0320382,0.057940055,-0.07398581,-0.15272866,-0.09509956,0.04996334,0.05137659,-0.024417423,-0.07006588,-0.032690473,0.02246402,-0.047072947,-0.030549988,0.04057772,-0.09945095,0.008718148,-0.0025996454,-0.023152746,-0.009249729,-0.07013609,-0.045371085,0.04915969,0.028496776,-0.06612138,0.011900958,-0.020822152,0.011987051,0.0128293345,-0.037626997,0.003946936,-0.072562136,0.07482078,0.11271931,0.0711908,0.09465679,0.0389657,-0.047410604,0.062296387,-0.020543057,-0.03921808,0.0385897,0.015622999,-0.046935484,0.027926432,0.12671617,-0.107047044,0.018279731,0.0065841684,0.015394116,0.044286862,0.0026674883,-0.020956373,-0.06385735,-0.052018333,0.018428849,0.036877688,-0.051454112,-0.07342514,0.08034234,-0.005129764,-0.046155293,0.034474757,0.036528755,-0.05156714,-0.064133495,0.04653688,-0.00039479017,-0.030296493,0.039816,-0.017576803,0.10376356,-0.008613176,0.03992056,0.03902066,0.104466274,0.015752101,0.0028316765,0.031355705,-0.028589332,0.05223254,0.004157883,0.015421748,0.05187633,0.010051066,-0.054537043,-0.017780202,-0.074303344,-0.029892283,-0.057246048,-0.009585621,0.00683189,0.0074404604,-0.023895394,0.012751146,0.03183905,-0.073827446,-0.07228786,0.00891809,0.04381569,-0.06844525,0.06043638,5.3834486e-33,-0.050610956,-0.015358238,-0.052804768,0.012732103,0.036498584,-0.020421064,-0.03975294,-0.07014551,-0.074763596,0.015995258,-0.083864406,0.105878256,-0.02489029,0.038530443,0.1289707,0.003393164,0.0075440477,-0.08626808,0.10538423,0.03781878,0.00031757052,-0.055291608,-0.018523423,0.0354134,0.02988087,0.10733368,0.017729424,-0.08075445,-0.049180277,0.036217347,-0.0075724106,0.0073273163,0.060585212,0.019402703,-0.066130765,0.025143003,0.04196446,0.024280855,0.0061815996,-0.06150519,0.021634959,-0.014532103,-0.041309495,0.018042672,-0.011063736,0.014650398,0.01753815,0.042583764,0.08169825,0.05660207,-0.11139793,-0.07890122,-0.058178265,-0.02511053,0.020246936,0.030071499,-0.058357626,0.024914766,0.043231767,0.020348676,0.018104397,0.06851282,-0.006070582,-0.037417468,-0.04131036,-0.014280868,0.07079983,-0.0640218,0.09636959,0.0079097515,-0.0987164,0.013201933,-0.042078868,0.029456323,0.010490128,0.03376594,-0.041639253,0.021068746,-0.008201632,0.036126345,-0.07709714,-0.047423538,0.015154501,0.06874464,0.04513626,0.10267593,0.026675692,0.05025853,-0.03605307,0.16706389,-0.009598029,0.13398087,0.039756984,0.020821892,0.077408694,-6.727337e-33,-0.053299204,0.00010976628,0.05960278,0.0459099,-0.036108833,0.05802809,0.0041664564,-0.026753422,-0.013908277,0.026122538,-0.062168255,-0.059535675,0.015654119,-0.048349667,0.011356854,0.010244084,-0.0067024627,-0.024868501,-0.04013016,-0.038202096,-0.00088641344,0.10494084,-0.04734394,-0.061869457,-0.010169383,-0.039234094,-0.06548728,0.008970126,-0.10394289,0.010637247,0.041743677,-0.057343703,0.040244028,0.0480204,-0.031197444,0.047928695,0.040564816,0.06507127,-0.05059514,0.022268075,-0.031360775,0.11295035,-0.029949274,-0.031692773,-0.053777743,-0.013389249,0.013640541,-0.10962445,-0.013550561,-0.029439207,0.065173104,-0.05863324,-0.027858535,-0.023928458,0.032253128,0.011542623,-0.054696888,-0.023706462,-0.05943404,0.0076534688,0.07294493,-0.052761644,-0.05477738,-0.044201046,0.07657337,-0.0038791024,-0.031030638,-0.0015515952,0.073725544,0.019327689,0.098081306,0.004557363,-0.034038987,-0.015917215,-0.0350305,-0.08361476,-0.14644423,0.054290827,0.0010938686,-0.008462432,0.04001645,-0.037474893,0.010164335,-0.015279527,0.03373683,-0.0075102025,0.022394875,0.06627925,0.049933057,0.03224966,0.033054262,0.034818143,0.00076632085,-0.015331696,-0.044203423,-3.5752127e-08,0.037043303,0.026435947,-0.09849855,-0.008041763,0.013712321,-0.048084147,0.031678986,-0.022443155,-0.021755535,0.05308812,0.01703593,-0.02328669,-0.0347834,0.03848692,0.03515825,0.038692005,0.05519549,0.13837427,0.016016584,0.060498085,0.053956013,0.00095713645,-0.06803631,0.001604827,0.03818704,-0.0155849205,-0.0427731,0.019835185,0.027035024,-0.032917187,-0.09001777,0.012798074,-0.046091642,-0.048665736,-0.005878469,0.020405024,-0.07095001,0.013021222,-0.0011362558,-0.033488974,0.021347567,-0.075882144,-0.07745646,-0.0150751015,-0.04592297,-0.07945043,-0.010558214,-0.05274345,-0.007313225,0.030642938,-0.03855326,-0.0239833,0.020396069,0.016371332,0.052101705,-0.059125032,0.07052457,-0.020329779,-0.07752116,-0.04518897,0.03738062,0.07975428,0.06859896,-0.038761534} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.800071+00 2026-01-30 02:01:12.087108+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2109 google ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB 1 t 2112 Go Karts Mar Menor unknown Los mejores kart de todo levante con diferencia!!! Muy recomendable y unos precios muy economicos!!! 5** los mejores kart de todo levante con diferencia!!! muy recomendable y unos precios muy economicos!!! 5** 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "Los mejores kart de todo levante con diferencia!!!", "V1.01": "Muy recomendable y unos precios muy economicos!!! 5**"} {0.022719432,0.028749008,0.012903184,-0.05094657,-0.071001686,-0.019862661,0.002794748,-0.045225527,-0.023729764,0.078589045,-0.0025447868,-0.02244019,0.016783444,-0.008605323,-0.015468205,-0.040920485,-0.012956632,-0.036509406,0.0047295284,-0.06295393,0.07285726,-0.0555381,-0.040901233,0.052004494,-0.05433054,-0.03577133,0.030102052,0.006533012,0.0073175165,-0.07643259,-0.005326747,0.14244424,0.10357484,-0.028632253,-0.06295066,0.061495025,0.08870709,-0.057069246,-0.013800679,0.025525099,-0.04889409,-0.036291473,0.015467745,-0.032939717,0.020602234,-0.05622809,0.049935557,0.07242301,0.039634563,0.035145655,-0.012480797,0.012713846,0.0562863,-0.10403394,-0.027982619,0.0059706625,-0.08933231,-0.04777239,0.039932843,0.003367092,-0.034546822,0.04260862,-0.07926119,0.01619094,-0.01833743,-0.029578598,0.028266583,0.0023060085,-0.10778686,0.043785825,0.10505483,-0.08207086,0.013034217,-0.016822675,-0.03049613,0.05458265,0.047134254,-0.05158354,-0.051377106,-0.04298894,0.07912201,0.0031580701,-0.0659201,-0.080083564,0.045453772,-0.019518873,-0.028531443,-0.013501736,0.07133564,-0.040840168,0.046927806,0.052756403,-0.033764713,-0.0151208155,0.002471594,0.068432406,-0.016708408,-0.064391,0.017802244,0.011688616,0.096013315,0.019634089,0.042351246,0.051309578,-0.034377728,-0.017791428,0.016335554,0.03030327,0.01237075,0.052129492,-0.0998795,-0.033627357,-0.05243022,-0.032485172,-0.110535525,-0.013272098,0.08452029,-0.06868175,-0.00585629,-0.118082866,0.036202338,-0.0324299,-0.025392858,-0.04631171,0.029562414,-0.046456028,-0.041210797,3.7239595e-33,-0.13024436,-0.016103273,-0.05528262,0.025492584,-0.12324837,0.010987251,-0.08637809,0.028548539,-0.12551576,-0.06098153,0.006552579,0.057651382,0.046634484,0.056573216,0.062111206,0.024504151,0.04058312,-0.03138326,0.058915846,0.013913566,-0.089488745,-0.012929996,0.04329645,0.07417102,0.022961222,0.08320419,-0.007822474,-0.079987355,0.021613482,0.034442425,-0.0035337706,0.04784601,-0.013813702,-0.04894926,-0.062645115,0.04034072,-0.043292105,0.05457914,-0.019559119,0.029584436,0.0026352203,-0.01759889,-0.0372358,0.016498145,0.052228563,0.048434597,0.043593768,-0.0018500041,0.113322355,0.00814485,-0.04788032,-0.012134078,-0.084657826,-0.09931068,0.028311908,0.046764117,-0.07913884,0.064242154,-0.015796483,-0.018893514,-0.03579238,0.02601478,-0.012540856,-0.082288794,-0.019165339,-0.0017725568,0.015378375,0.026703937,0.102986865,0.05329045,-0.04862598,-0.024611896,0.05644553,0.067549095,-0.0010194036,0.11803167,-0.0041273483,-0.0005332572,0.04917885,0.07621,-0.04611712,0.017127497,0.017168576,0.020293394,0.036724977,0.059402794,0.05699207,0.03333709,-0.019504117,0.013632464,-0.008941698,0.068672545,0.056591406,0.0115163615,0.07229993,-6.808748e-33,0.05269373,0.018315692,-0.0025196616,0.04601283,-0.023225693,0.024575694,0.006298282,-0.0034540712,-0.00580701,-0.071022354,-0.07871746,-0.07251644,0.080852464,-0.04321566,-0.09265171,0.06103796,0.029555744,-0.05831522,-0.035088558,-0.013341067,-0.03152828,0.07134197,0.021364607,-0.014867553,-0.03740347,-0.048912752,-0.013070866,-0.003674684,-0.04284428,-0.032214522,0.009683419,-0.014183917,0.026804734,0.0038569996,0.0007976284,0.096600056,-0.017688783,0.011082518,-0.02730052,0.07152435,0.038965374,0.11089172,-0.014556757,-0.051095676,-0.05308399,0.02419959,0.010220654,-0.060093645,-0.0038216983,-0.0910937,0.12439454,0.020276327,-0.07711452,-0.080013424,0.04126596,-0.011984676,-0.0026489012,0.01963443,0.016804958,-0.04309601,-0.023416232,0.024624929,0.03937978,0.0067364406,0.057337273,-0.030747518,0.05691086,0.022239255,0.018198075,0.060376152,0.04508582,0.033208247,-0.08211112,0.023445643,-0.02326034,0.018411547,-0.05189897,-0.017307913,0.020800281,0.047892082,-0.033897955,0.034495253,0.010045429,0.008669631,-0.020312754,0.005987036,0.00039755422,-0.053481687,0.04573649,0.033529423,-0.044768836,-0.01562112,-0.03410178,-0.01326686,0.011135709,-3.1210135e-08,0.04177366,-0.12413002,-0.015767192,0.022782737,-0.033832356,-0.036499538,-0.07316193,0.02900471,0.03095622,0.08729852,-0.060063522,-0.041878406,-0.06845749,0.043600544,-0.058541514,0.04564713,0.01046222,0.09580718,-0.018043043,-0.10563285,0.059103414,0.042402126,-0.12082132,0.011112581,-0.016366908,-0.03435352,-0.043290406,-0.036807936,-0.04793821,-0.015764918,-0.07028464,-0.0070175724,-0.027014198,-0.111467674,-0.03365359,-0.029850757,-0.0072996365,-0.020951029,0.016974794,-0.0289811,0.11686874,-0.0490431,-0.12671793,-0.017797455,-0.053958073,-0.10390353,-0.0070080496,0.0059880703,-0.014905121,0.07603954,-0.010858775,0.045449354,0.082745604,0.018339314,0.11095765,-0.04847411,0.022792565,-0.07034079,0.0053724875,0.017067662,0.040794507,0.03055916,0.04488156,-0.047662962} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.322624+00 2026-01-30 02:01:11.993508+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2102 google ChZDSUhNMG9nS0VJQ0FnSURScmN1WUhnEAE 1 t 2105 Go Karts Mar Menor unknown Muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores. muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores. 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {P1.01,E1.03} V+ I2 CR-N {} {"O1.02": "Muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores."} {0.005868433,0.031655934,0.02726418,-0.04251641,-0.041407477,-0.05913014,0.050489433,0.06960389,-0.031041732,-0.015863163,0.051797524,-0.0066873855,0.009909109,-0.00072444475,0.10627986,0.03733545,-0.018822793,0.032283258,0.031443007,-0.030390555,0.05921321,-0.032503355,-0.054955862,0.06272499,-0.07871469,-0.02278217,0.0466876,0.11436219,0.012597612,-0.110308364,-0.0413545,0.057586413,0.078917116,0.011661237,-0.0019550796,-0.053853698,0.05624404,-0.017693318,0.0032627513,-0.0386488,-0.07907969,-0.05965388,0.017873356,-0.038414165,0.02667562,-0.10041913,0.010035363,-0.012915241,0.071838014,-0.10319337,-0.010630412,0.032967787,-0.0052971547,0.08029579,-0.041265547,0.076563336,0.0003959199,0.052363798,0.06931884,0.022961302,0.07872789,0.0192737,-0.0072248015,0.030378528,0.014534538,-0.028380534,-0.030457364,0.07568626,-0.027520414,-0.024009123,0.14118358,-0.13273549,-0.03762943,-0.034379795,-0.03140512,0.005892691,-0.029521974,0.014046549,-0.077102594,-0.06727738,-0.010830111,0.043898687,-0.03956773,-0.019409787,0.039728675,-0.0006944524,-0.018423818,-0.005852341,-0.03355519,0.01816401,0.009325363,-0.028943963,-0.087126024,0.015283291,-0.008350063,0.0043431683,-0.0044580405,-0.07333548,0.06820218,0.039677918,0.03437077,-0.060266998,0.08990544,0.032983992,-0.046040386,0.0393137,0.017878829,-0.020243602,0.02208494,-0.053749442,-0.065402195,-0.023788666,-0.033406243,-0.016283927,-0.024018737,-0.06356831,-0.0010074151,0.038810063,0.045592923,-0.02288722,0.044878986,0.04054384,-0.0092958715,-0.009950532,0.014207826,-0.023922455,0.08449502,2.1925495e-33,-0.04380795,-0.03241782,-0.048157305,0.07967902,0.032004546,0.045953978,-0.0051925974,0.06513097,-0.0030282603,0.034634065,-0.039175246,0.043014172,-0.051603902,0.04123807,0.1892222,-0.025118802,-0.044702616,0.00067831075,0.02018653,-0.06044341,-0.078015305,-0.039318874,-0.013692474,0.076147676,0.028910564,0.017344961,0.021811565,-0.042925667,-0.081328,0.05254597,0.068722,0.049732655,0.046592668,0.030712565,-0.047512203,-0.008702531,-0.0013342281,0.021233449,0.0021864262,-0.008152706,-0.01318418,0.0032340644,0.0012777289,0.03331444,0.013279579,-0.014484894,0.030746853,0.06441885,0.12300714,0.061262526,-0.08732124,-0.059487242,-0.027161064,0.0010887474,-0.020496989,0.053252585,-0.006521254,0.041805845,0.064801484,0.013553438,-0.0704436,0.11946586,-0.022867767,-0.037561554,-0.095211744,0.035561793,0.05573845,-0.03181065,0.05126123,-0.022164566,-0.14652757,-0.03565949,-0.06404708,0.015763206,0.016752632,-0.030762471,-0.10458061,-0.0152675845,-0.004388764,0.015433115,-0.1149013,0.013791055,-0.010291563,0.040174652,0.11721729,0.07926084,0.05741739,0.03579372,-0.0044117165,0.08415715,-0.024062898,0.07074309,0.025571607,0.020303387,0.024629958,-4.3860574e-33,-0.0036467589,-0.045464735,0.024670009,-0.023719473,-0.016211411,0.022545964,-0.087066084,-0.041191127,-0.014892137,-0.0333298,-0.02881975,-0.020834299,0.09655063,-0.02216031,-0.06191335,0.023734264,-0.058748182,-0.03671708,-0.09141509,-0.0026773587,0.043509122,0.015319278,0.0070021246,-0.010153566,-0.08637294,-0.039403476,-0.05031478,0.08819608,-0.0069060815,0.059798654,-0.017842604,0.031019619,-0.07819256,0.11577309,-0.08532012,-0.04051576,0.10707644,0.03925504,-0.024888232,-0.0332439,-0.016138257,0.08691526,-0.011891988,0.017175743,-0.0942427,0.050944306,-0.007797205,-0.12841897,-0.04603684,-0.04210282,0.034925625,-0.009232309,-0.014878528,-0.0038434614,-0.012124419,-0.059949134,-0.06431066,-0.021563496,-0.06747023,-0.03088402,0.080401234,-0.0075284406,0.050323784,-0.0888117,0.02931091,-0.013066394,0.0037975896,0.025076224,0.03763388,-0.01859023,0.09883788,-0.0108550675,-0.031634144,-0.032702267,-0.059094902,-0.013936184,-0.069906816,-0.047075886,-0.027528562,-0.025150187,-0.019160185,-0.029945571,-0.02010194,-0.06310635,-0.042441357,-0.08364231,-0.014846213,0.016144745,0.023430157,0.042399984,-0.017467277,0.1298373,-0.014192823,-0.02481721,-0.045454606,-2.9672588e-08,-0.007042227,-0.054829918,0.0039128787,0.021078575,0.010234924,-0.08824207,-0.011629043,0.06883558,0.032034192,-0.015250573,0.031182382,-0.012936234,-0.026180362,0.049763624,-0.045895334,0.061889045,-0.006133758,0.08186871,0.0020559432,-0.057553988,0.09570271,-0.0073725777,0.0127480095,0.08302512,0.06836768,0.00097598386,-0.039148096,0.0061106924,0.009889655,0.07550299,-0.0029904668,0.0049734847,0.02207453,0.0041649104,0.061907426,0.032940026,-0.03533422,-0.02914006,-0.02660312,-0.10234911,0.022309454,-0.11439324,-0.040135466,-0.024602965,0.052446827,-0.09182627,-0.010987594,0.08520546,-0.017088784,0.008359231,-0.022691652,-0.065306045,-0.035762805,0.04651882,0.03397077,0.0036834986,0.02151586,-0.004658013,0.0055248667,-0.0072976425,-0.048172966,0.080884814,0.044496812,-0.1043395} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.858672+00 2026-01-30 02:01:11.972339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2157 google ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE 1 t 2160 Go Karts Mar Menor unknown Está bien pero es poco tiempo para lo que cuesta. Está mejor el de Orihuela y más tiempo. está bien pero es poco tiempo para lo que cuesta. está mejor el de orihuela y más tiempo. 3 2019-02-01 01:52:39.833374+00 es v5.1 V1.02 {} V- I2 CR-N {} {"V1.02": "Está bien pero es poco tiempo para lo que cuesta.", "V4.01": "Está mejor el de Orihuela y más tiempo."} {0.016746454,0.021172756,-0.01895055,-0.084790334,-0.023910929,-0.061295472,0.06304719,-0.0010559019,-0.024242483,0.00835607,0.09041021,0.008377751,-0.05676736,-0.024142204,0.08572571,0.10410206,0.0169541,-0.00067530805,0.0401205,0.04423743,0.0921916,-0.026439562,-0.07775848,0.052195113,-0.117337845,-0.007271193,0.010576076,0.032696936,-0.013577542,-0.09935984,-0.099475384,-0.011783329,0.029697696,-0.022200644,0.0031652248,-0.044225313,0.11786601,-0.038273133,-0.05881559,0.07015708,-0.108165026,0.0071888147,-0.059432946,-0.01759383,-0.014411296,-0.05731098,0.02558623,0.05704076,0.06581551,-0.006783037,-0.026800375,0.027948897,-0.09428734,-0.036444567,0.0040761586,0.024679806,-0.029373795,-0.020154584,0.042195637,0.03892439,0.008454649,0.033804853,-0.06265687,0.05922211,0.03187191,-0.04820243,0.083250314,0.054898966,-0.06938164,0.045466788,0.099882886,-0.054362956,0.057819363,0.029958487,-0.020003958,0.06394066,0.009732588,-0.02658189,-0.06078917,0.007065541,-0.077281386,-0.0071094744,-0.090613484,-0.041355047,-0.0147364065,0.0036273007,-0.011397981,-0.003773667,0.053487588,-0.0015364984,-0.043410014,0.06883074,-0.08022668,0.009063873,0.049705543,0.06407099,0.039390817,0.0050383024,0.04579638,0.02835616,0.08049233,0.051044352,0.012487299,0.031655703,0.039388917,0.06998337,-0.025589395,-0.044400238,0.05397336,0.02234857,-0.035951518,-0.0011937126,0.03695838,3.191608e-05,-0.09200281,-0.03345708,-0.03076253,-0.008998956,0.020116242,-0.06985034,0.05919004,0.011308539,-0.09644245,0.046004973,-0.012008497,-0.081047766,0.039504766,7.571814e-33,-0.0016024988,-0.01981498,0.03591027,0.014038395,-0.022734037,0.049917202,-0.04214896,-0.016744368,-0.04553931,0.03459195,-0.075009875,-0.06769331,-0.056829818,-0.009895631,0.014430157,0.02418385,-0.0010605274,0.009845099,0.032672036,0.068661615,-0.04353806,-0.05880108,-0.055267263,-0.014168199,0.009788983,0.10184803,0.056355815,-0.06928209,-0.075461514,0.04172326,0.02404108,0.0060110656,0.064048775,-0.05697974,-0.008803051,-0.0765236,0.08936376,0.06955641,-0.04286187,-0.013935709,0.07204303,0.018276867,-0.054830667,0.010105232,0.012134092,-0.07102959,0.06552217,0.08184685,0.018767951,0.019747598,-0.062302243,-0.07198158,-0.044211946,-0.044594463,-0.03084707,-0.045479976,-0.0685366,-0.015897568,-0.019977473,-0.028271658,-0.0041479706,0.04094911,0.0024603677,-0.042232413,-0.0016736094,-0.043046687,0.017847585,0.010019876,0.14937134,0.01840744,-0.075750865,0.014496364,-0.100441515,0.026821744,-0.008759565,-0.025511952,-0.013655538,0.046804685,0.06778379,-0.02515608,-0.0044310405,0.018862138,0.073581964,0.03382016,0.048050623,0.110779904,0.058264032,-0.003334737,-0.03401743,0.09390954,0.015245625,0.11411967,0.03344977,-0.047392767,0.044713415,-8.104959e-33,-0.0070909983,-0.02996282,0.0056408346,0.0053566154,0.010343409,0.039068837,-0.01919582,0.010496376,-0.01785815,-0.054977745,-0.095508374,-0.086968124,0.10283106,-0.04398467,0.007877718,0.07523083,-0.021005915,-0.06700792,-0.091370225,0.009471393,-0.052193563,-0.021170856,0.036260184,-0.028300067,0.0003969931,-0.054497257,-0.012290995,0.0028304437,-0.056694392,0.044401962,0.10034808,-0.020975739,0.027835274,0.06706849,-0.0293041,0.025761507,0.032379653,0.024174199,0.052923776,0.041138146,-0.033254165,0.10707616,-0.037723433,-0.089764185,-0.06764091,0.05289194,0.0036098785,-0.0874381,-0.091813706,-0.04661319,0.072560295,-0.068357356,-0.020092001,-0.041814834,0.09205609,-0.006521934,-0.08746163,-0.11352654,-0.063343465,-0.003709873,0.035345327,-0.050747108,-0.05546748,-0.061089035,0.05323377,0.081447005,0.03693145,-0.04078832,-0.06417851,0.05675154,0.07851206,0.01607433,-0.09155292,0.012641491,-0.0053189443,-0.053665627,-0.07681399,-0.033056714,0.009831151,0.05703967,-0.05724258,-0.016513253,0.0018130532,-0.046067826,0.0033372678,0.062371142,-0.037662517,0.11309592,-0.009306624,0.06981793,0.044862386,0.0004295109,-0.04441126,-0.0622243,0.00867481,-3.143285e-08,0.025125429,-0.06327199,-0.04584825,0.03288645,0.00040230926,0.025516497,0.03322569,-0.010716656,0.06522225,0.04933764,0.054439444,-0.016690478,-0.0154765975,-3.4214114e-05,-0.0043724496,0.01955644,0.09048329,0.039559666,-0.01981196,-0.0300966,0.013514131,0.02064052,-0.030071879,-0.0008099011,0.027841287,-0.008103695,-0.02412621,0.037561174,0.06548394,0.048221946,-0.034452442,-0.017474089,-0.051854916,-0.12745875,-0.0012621948,-0.015855653,-0.024052517,0.02061193,0.044007737,-0.029757585,0.11620171,0.034523755,-0.06510837,-0.013073186,0.024462558,-0.092706084,0.017754797,-0.03154192,-0.062682666,0.0310007,0.018700374,-0.018247874,0.108136125,-0.022925911,0.0021208331,-0.010150582,-0.019230712,0.019219568,-0.08765289,0.034500133,0.03342964,0.05871859,0.046899155,-0.0465612} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.791033+00 2026-01-30 02:01:12.178134+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2124 google ChdDSUhNMG9nS0VJQ0FnSURNeHUtQl93RRAB 1 t 2127 Go Karts Mar Menor unknown Superdivertido un buen sitio para pasar un rato agradable con amigos y familia superdivertido un buen sitio para pasar un rato agradable con amigos y familia 5 2020-02-01 01:52:39.833374+00 es v5.1 E1.04 {A3.01} V+ I3 CR-N {} {"E1.04": "Superdivertido un buen sitio para pasar un rato agradable con amigos y familia"} {-0.059295006,-0.00909378,-0.02770558,-0.051002864,-0.054532893,0.009006579,0.03966226,0.042929962,-0.03550816,0.049957335,0.07385473,0.015726285,-0.04282853,0.041625954,-0.047140334,0.006284023,-0.013188123,0.030583123,-0.04616888,0.040046316,0.13109325,-0.10909058,-0.03348201,0.09752954,-0.07446206,0.0016537627,-0.008611685,-0.028466024,-0.02564779,0.021006241,0.0009695323,0.10543941,0.10219559,-0.05939358,-0.0043856893,-0.030565022,0.046328478,-0.04314167,0.077996634,-0.06076024,-0.07597476,-0.061844155,0.024194896,-0.096325465,0.0035919703,-0.06772403,0.01183631,0.07506022,0.056194995,-0.011845657,-0.03315763,-0.062847756,-0.015501464,0.033643566,0.009674247,0.004064125,-0.04922152,-0.07697956,0.062434517,0.008104269,-0.021420103,0.04584062,-0.051754814,-0.0065704393,0.04509997,0.016092978,-0.027744133,-0.02628899,-0.08629886,0.11991513,0.109903075,-0.05427646,0.041825246,0.012009336,0.028762082,-0.0072876066,-0.07314989,-0.0053062416,-0.066962026,-0.08527577,0.06490307,0.0026142986,0.0068673254,-0.032188155,0.02776157,0.025004849,0.0349014,0.017158577,-0.008294935,0.016852673,-0.014289267,0.043705996,-0.06886448,-0.023867765,-0.05152273,-0.00870337,0.03242493,-0.011362311,0.030956479,0.039933108,0.06807795,0.065082826,0.044823926,-0.007084461,-0.051726483,-0.028056514,-0.004970516,-0.033629086,0.056461,0.04645214,-0.10903261,-0.058221683,-0.037453238,-0.00936592,-0.10340226,0.009679264,0.007809131,-0.083978035,-0.09561025,-0.057150148,0.051083505,0.07036359,0.0004127681,0.03639463,0.06721872,-0.07356549,0.009666794,7.654833e-33,-0.010279969,-0.028680135,0.0006440169,-0.003523142,-0.025287937,0.07273212,-0.017628036,-0.019442532,0.012843878,0.03377972,-0.053650662,0.016227847,0.05247503,0.021630768,0.045507725,0.02258572,-0.028760225,-0.022613237,0.092987224,0.027884768,-0.05443944,0.027386598,-0.040894266,0.047319375,-0.02423649,-0.023592604,-0.033506606,-0.021913812,0.0021020935,0.09747735,0.00939411,0.003511682,-0.035098772,-0.046175007,-0.083901316,-0.057893146,0.04843173,-0.009825776,0.009915557,0.02417444,0.02556172,0.007542175,-0.035849296,0.007010989,0.05472432,-0.04505788,0.091271095,0.006753459,0.01918561,0.041239794,-0.089485765,-0.08342136,-0.05151399,-0.051075026,0.0057344935,-0.023750417,-0.03356292,0.096731804,-0.06567019,-0.06937179,0.08252049,-0.058112122,-0.0050200555,-0.008897568,-0.09452017,-0.047890622,0.07743808,0.014219433,0.08197298,0.055497997,-0.06563903,-0.020512043,-0.054490067,-0.007546268,-0.026965566,0.046108466,0.020488486,0.084222205,-0.015359748,0.023566948,-0.09371614,0.062188875,0.044222046,0.032655433,0.043185946,0.058477066,0.012130945,0.049795467,-0.045376945,0.021672755,0.049086664,0.0089217825,0.017092528,-0.058691952,0.03553109,-8.408333e-33,-0.021649621,0.040225666,-0.022846749,0.01960206,-0.043926932,-0.03449484,-0.07298406,-0.052153587,0.019034248,-0.066912614,-0.059010647,-0.088722356,0.20018408,-0.019730598,-0.032798685,0.04092972,0.0382613,-0.034495037,-0.046083927,-0.06646424,0.02016722,0.05014373,0.043200962,-0.03326627,0.06293959,-0.061130606,-0.0060189203,0.08072088,0.012808494,0.02730077,0.04415532,0.027507793,-0.04399518,0.062294003,0.005907064,0.05374116,-0.0057214256,0.020835757,-0.042239323,-0.016592814,-0.024176437,0.05953421,-0.03040403,0.011417864,-0.019266881,0.008484237,0.014993173,-0.08466268,0.032258693,-0.076275095,0.008065271,-0.027511563,0.03238855,-0.03172402,0.039732568,-0.06133406,-0.043589875,-0.09672223,-0.07098099,-0.03237891,0.10273404,0.027298694,-0.08814424,0.0013102684,0.008341456,-0.021191204,-0.09018806,0.007643247,0.018131444,0.12011055,0.11012899,-0.026862212,-0.06883224,0.07432176,-0.053820495,0.011512867,-0.01492577,0.051724527,0.025308285,0.048909433,-0.06695598,0.03326867,0.01133066,-0.050154846,-0.0213638,-0.046672758,-0.068078384,0.070886806,0.023148723,-0.029638473,-0.0014257452,0.005972397,-0.009634419,-0.078436226,-0.037394386,-2.9117295e-08,0.011010397,-0.07287654,0.012649787,0.058040585,0.02993037,-0.03318808,-0.002019829,-0.029192306,0.028471932,0.058934975,-0.07649073,-0.03801518,0.04972529,0.010857315,-0.02495998,0.014287874,0.12129754,0.046068624,-0.012098659,-0.0389494,0.07195498,-0.0731547,-0.031591803,-0.009259493,-0.034538962,-0.00094484416,0.030818578,-0.044364855,-0.034259308,-0.040234443,-0.045188393,-0.018069452,-0.023553222,-0.030975675,-0.030111061,0.025489476,-0.029512042,0.07191689,-0.0075368457,0.025102539,0.13139375,-0.021757895,-0.070139006,-0.007400402,0.037368268,-0.0544061,0.03201424,0.05037648,-0.01240784,-0.028920256,-0.030896744,-0.016269796,0.07565364,-0.004079786,0.030122602,0.013644371,0.042619158,0.09483222,0.042751584,0.014616274,0.07042407,0.18889633,-0.04007269,-0.024720242} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.531321+00 2026-01-30 02:01:12.040249+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2172 google ChZDSUhNMG9nS0VJQ0FnSURPMV82R2V3EAE 1 t 2175 Go Karts Mar Menor unknown Buena pista y coches rápidos según cilindrada escogida buena pista y coches rápidos según cilindrada escogida 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {O4.03} V+ I2 CR-N {} {"O1.02": "Buena pista y coches rápidos según cilindrada escogida"} {-0.01397642,0.0039631305,-0.071248755,-0.070718735,-0.075703636,0.007420927,0.025402578,0.04042472,0.006274563,0.015074521,0.09026639,-0.011131067,-0.053893667,-0.009983921,0.02236427,-0.063729785,0.048878837,0.03727449,0.02211706,0.016904602,0.060591087,-0.04465581,-0.101444915,0.10468456,-0.050130825,-0.02014165,-0.0012339493,0.01951322,-0.03785057,-0.083625875,-0.04277812,0.01426266,0.07109532,0.046780195,-0.005437286,-0.021645509,0.08373386,-0.095880896,0.003647305,0.06696112,-0.13923515,0.013563459,-0.022232592,-0.007223202,-0.050438005,-0.09195843,-0.044879742,0.065534264,0.032373242,-0.051912513,-0.061555833,-0.053354334,-0.15179929,-0.0069216858,0.008147105,-0.009787094,-0.05490884,-0.011452258,0.07022476,0.05175396,0.026489902,0.052410282,0.0052595544,0.031684566,0.014970845,-0.050012507,-0.010354482,0.026811402,-0.0721041,0.037769154,0.08624634,0.006168971,0.031979423,0.003558714,-0.06661192,-0.013862879,-0.022328012,-0.029221838,-0.05787351,0.0030359505,-0.020034289,0.0077874116,-0.015553031,-0.050933752,0.0005033071,0.0021584197,-0.038232926,0.042746093,0.031022506,0.004350431,0.03536026,0.019445289,-0.033195358,0.03756052,-0.03621862,0.0497538,0.019234875,-0.07236123,0.04027456,0.016470812,0.080347955,0.06180396,0.09940956,-0.009456452,-0.05508642,0.010300637,0.058539417,-0.021122387,0.04368126,0.030819854,-0.06857381,-0.0056811976,-0.070208505,0.011602504,-0.10691492,0.054574776,-0.0134242205,-0.05478704,-0.006374404,-0.09347751,0.06798163,-0.015916752,-0.023151712,-0.036395058,-0.0030760989,0.02235685,0.06103674,7.409615e-33,-0.053761594,-0.08892739,-0.025044015,0.04399944,-0.047802016,0.022222865,-0.0122442525,-0.040405996,-0.05474602,0.028493997,-0.07646049,0.054737534,-9.992337e-05,0.04733434,0.0027557302,-0.0071015917,0.008415943,-0.022903316,-0.031708535,0.075472765,-0.022304386,-0.01400582,-0.018583404,0.006115069,-0.04564457,0.05753077,-0.05727197,-0.05062992,-0.017254442,0.11278455,0.006805589,0.048328146,-0.016536137,-0.014941494,0.012257713,-0.0657066,0.05199956,-0.03961749,0.004025203,-0.005992449,0.022421248,-0.001749858,-0.04257409,0.04557546,-0.022490285,0.014209595,0.018874755,0.06177844,0.06573307,0.027614525,-0.11379445,-0.045662887,-0.06655151,0.00441335,0.038548045,0.032288145,-0.107282236,0.041660435,-0.0064567677,-0.0211681,-0.022861443,0.06555954,0.02732057,-0.0027108935,0.06631262,-0.067967206,0.036517277,0.03094704,0.14360908,0.07503507,-0.062172443,-0.060516156,-0.02598793,0.031028973,0.041342374,-0.027274948,0.05387231,0.0219485,-0.044251654,0.03403094,-0.032494802,0.027797813,-0.022017134,-0.002395989,0.07013662,0.058711346,0.078108504,0.035568833,-0.031020025,0.077023506,-0.044138372,0.11408194,0.047916528,-0.0557406,-0.014564881,-8.521767e-33,0.09228088,-0.10018916,-0.010001579,0.0017096455,-0.0032160364,0.01648586,-0.027181424,-0.056594364,-0.07017995,-0.07568965,-0.09071305,-0.11939499,0.068888344,-0.01900593,0.032810226,0.036242314,0.03413909,-0.046436682,-0.071914084,-0.037172128,-0.05476665,0.009235552,0.003595467,0.042703696,-0.013767035,-0.01228846,-0.018675853,-0.04454715,-0.16236916,0.018744482,-0.010999033,-0.041701958,-0.017063182,0.09542441,-0.06741868,0.058223028,0.050791595,-0.011365048,0.006564037,-0.01640539,0.04969786,0.076008745,-0.015848823,-0.025787756,-0.03420092,0.05769273,-0.013039592,-0.02794259,-0.005819369,0.037483692,0.03275849,-0.041825853,-0.02543056,-0.021522192,0.10257797,-0.07949591,-0.058864973,-0.10010119,-0.083799355,0.07090833,0.028486319,-0.0069268835,-0.12043106,-0.024446888,0.15109763,-0.0032808338,-0.006658264,-0.025020499,0.0855915,0.049717136,0.07985941,0.013232914,-0.091988325,0.019370316,-0.052071773,-0.097420074,-0.1423898,0.027417686,-0.039695874,0.0054124766,0.049399953,0.00013991182,0.050608657,-0.039705094,-0.037481066,0.0042417734,-0.06661182,0.02482616,-0.011331458,0.014667587,0.005251517,0.019290056,-0.036756445,0.0068679303,0.0036092459,-2.950293e-08,0.033542555,0.031385653,0.049072843,0.0036286532,0.03961951,-0.022787204,0.020790944,0.029039908,0.0035939438,0.05684279,0.046563365,-0.023974854,0.1064654,0.10441988,0.0019395589,0.025362505,0.10519427,0.07069253,-0.014697491,-0.03405427,0.069079906,0.0021296237,-0.026755663,-0.02767799,-0.056935716,0.035430595,-0.00036189824,0.041357417,0.0032530937,0.022749221,-0.055370133,-0.019102143,-0.023775565,-0.07149772,-0.022712067,0.0044642673,-0.005019423,0.014566401,0.008970786,-0.08192034,0.015010482,0.051328074,-0.020933215,-0.026788851,0.0028190129,-0.052441556,0.018788114,0.01816386,-0.008762191,0.03623862,-0.04274335,-0.026313657,0.07462089,0.094170295,0.011430075,-0.02082012,0.037713476,-0.011410292,-0.028750159,-0.009355012,0.066396125,0.086758964,0.077966355,-0.074364804} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.987434+00 2026-01-30 02:01:12.234761+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2194 google ChZDSUhNMG9nS0VJQ0FnSUNrM3VPUUZ3EAE 1 t 2197 Go Karts Mar Menor unknown Super jazda za 12 euro 10 minut szaleństwa, polecam super jazda za 12 euro 10 minut szaleństwa, polecam 5 2020-02-01 01:52:39.833374+00 pl v5.1 V1.01 {V1.01} V+ I3 CR-N {} {"V1.01": "Super jazda za 12 euro 10 minut szaleństwa, polecam"} {-0.034263015,0.116869375,-0.06403288,-0.035359416,-0.004514771,-0.0041703326,0.04246989,0.1618652,0.012781489,-0.01332152,0.012157937,-0.009134961,-0.05416544,0.07459467,-0.00467277,-0.10998954,0.007006833,0.028546564,-0.032192115,-0.029843228,0.032215647,-0.12624553,0.01585398,0.029441593,0.056081552,-0.010798404,0.01111239,0.05136967,0.015136323,0.013069377,-0.06724847,0.076444365,0.014651053,-0.00942645,0.036284935,-0.06121448,0.033940796,-0.10347023,-0.061870262,0.05151213,-0.07461099,-0.017776005,-0.079028435,-0.068112105,0.004241386,0.053598348,0.026815785,0.09772759,-0.043739717,0.046125025,-0.11712854,-0.02644011,0.042889632,-0.06277455,0.036583014,0.0254857,-0.05754715,0.054622978,0.010823774,-0.03166857,-0.010540117,-0.04861847,-0.14231403,0.022456503,0.0026752073,-0.014480707,-0.06961278,-0.02227524,-0.03909783,0.046215303,0.0020137576,-0.058867387,-0.03516833,-0.033802804,-0.040390875,-0.023568317,0.039877675,-0.057268668,-0.032177553,-0.042199586,0.11459909,-0.04525244,-0.051579658,-0.052776184,0.021342754,-0.009894762,0.091264345,0.054155987,0.031619366,-0.025330074,0.012346199,0.034269746,-0.056341883,-0.016709268,-0.05523131,0.0044256146,0.08590389,-0.0055739004,0.008470631,0.08853357,0.13293026,-0.062197015,0.03576224,0.00032821638,-0.039028995,0.059146192,0.0026024925,0.026817584,-0.016415829,-0.018709421,-0.078462474,-0.032480348,-0.04652274,-0.14510891,0.03857789,0.056927413,0.044294175,-0.08523991,-0.0053134626,-5.2715845e-05,0.043275338,-0.03832514,-0.0023295586,0.05862168,0.055101845,0.05740635,0.08319386,4.0606203e-33,-0.00066998566,0.052451808,-0.03167636,-0.03051309,-0.03955265,0.06526287,-0.009132442,0.047157504,-0.06342134,0.021659723,0.019195467,-0.028163185,0.010413505,-0.043878857,-0.029613988,0.008940485,0.05581577,-0.051216573,0.04524755,0.005653635,-0.029511837,-0.04553401,0.023415113,0.06397215,-0.013802812,0.029334642,0.04053217,-0.029374419,0.02073052,0.047130473,0.059497695,-0.031418685,-0.107935324,0.042744264,-0.030759193,0.010286738,0.0367771,-0.021360917,0.012126688,-0.11171897,0.03268406,-0.03616712,-0.05417255,0.05161708,0.07192148,0.013376972,0.02448645,-0.0049543665,0.05803963,-0.046234887,-0.05393726,0.0146417,-0.11027667,-0.029721484,-0.06745739,0.086635135,-0.01736798,0.00070352224,-0.04099553,0.033018418,-0.020333713,-0.032777153,-0.028095346,-0.020409642,0.046189032,-0.054654825,0.0141035495,-0.03146509,0.04927152,-0.035080172,-0.008933754,0.028816817,0.17226468,0.08691622,-0.01820953,0.07782743,0.036469378,0.052808706,-0.0050748046,0.107704595,-0.10402421,0.07208299,0.052962627,-0.027265038,0.031040674,-0.01508244,0.018875217,-0.066624895,-0.03422604,0.015626984,-0.062930346,0.035556845,0.07348161,-0.035214063,0.030677937,-4.9534403e-33,0.009863792,0.036373086,-0.11010125,0.04536814,-0.020777868,0.008428746,0.029525304,0.07217959,-0.0076850317,0.038498815,0.0043566856,-0.09919688,0.108475,-0.034951337,0.0158291,0.01682777,0.04902308,-0.014295076,0.010935505,-0.024425095,-0.019110907,0.033175502,0.02172338,0.09564098,-0.016874783,0.020212125,0.0826467,-0.045739297,-0.08583686,0.095584095,0.020504829,-0.06973174,-0.03298934,0.03699568,-0.02872431,0.0060639866,0.014315121,0.029227434,-0.06020968,0.0663233,-0.039695326,-0.018504955,0.0037526202,-0.050449073,0.058205854,-0.052655805,-0.00791702,0.012336638,-0.0043181824,-0.09030088,0.056598723,-0.014795286,-0.035121698,0.01922696,0.08037497,0.023205012,0.016993612,-0.04376815,0.033422332,-0.0023533432,0.10409102,0.056133885,-0.03854198,0.017183332,0.097236454,-0.019805226,0.028304104,-0.065633334,0.07849455,-0.020279367,0.07077371,0.0397684,-0.00076871755,0.027063757,-0.05620235,0.052198485,0.023997853,0.13954228,-0.0019192017,-0.021738281,0.00035298712,-0.06418674,-0.024051119,0.041177567,-0.001835612,-0.043419346,-0.003979534,-0.030507382,0.04829078,-0.06439466,-0.031159164,0.07386078,-0.0153702125,0.056155607,0.0008389866,-2.1091926e-08,-0.017399846,-0.03723563,-0.12385199,0.011464236,0.031908967,-0.057198532,-0.03651415,-0.040794216,-0.0026850153,0.029034264,-0.0073404345,0.0014088784,0.017151836,0.03455044,-0.05949105,0.006793574,-0.0103806285,0.0019215537,-0.003862721,-0.0034470854,0.053086046,-0.025120862,-0.033635214,-0.065714456,-0.058774505,-0.010875603,0.01664865,0.055378713,0.07945206,-0.08046167,-0.025998624,0.04660672,-0.002528858,-0.04482423,-0.022347162,0.023787834,-0.05131805,0.05360452,0.006546812,0.032216996,-0.0032523265,-0.061720457,-0.02783526,0.011385561,-0.028588962,-0.034157205,-0.019417733,-0.08392888,0.017423099,-0.015605301,-0.08555991,0.023940634,0.016899073,0.014003754,0.07528202,0.028833566,0.084904246,-0.056746908,-0.08037313,0.032571755,-0.0006870239,0.030673798,-0.09931307,-0.017264882} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.829467+00 2026-01-30 02:01:12.308898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2025 google ChZDSUhNMG9nS0VJQ0FnSURheE9DMlNnEAE 1 t 2028 Go Karts Mar Menor unknown Tienen un trato magnífico, siguen todas las precauciones respecto a COVID 19, divertido, limpio, trato inmejorable, regreso con toda seguridad. tienen un trato magnífico, siguen todas las precauciones respecto a covid 19, divertido, limpio, trato inmejorable, regreso con toda seguridad. 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {E4.03,E1.01,O1.05} V+ I3 CR-N {} {"P1.01": "Tienen un trato magnífico, siguen todas las precauciones respecto a COVID 19, divertido, limpio, tra"} {-0.033906747,0.009520901,-0.033944048,-0.026195943,-0.058212653,0.044890452,0.07822157,0.088213556,-0.06900739,0.0043866793,0.0927905,-0.035041284,-0.08367822,0.02509392,-0.04704725,-0.06644765,-0.023536194,0.06217954,-0.03116449,0.07987854,0.057614375,-0.00013446994,-0.016220866,0.074963,-0.065697834,-0.025242584,-0.04722078,0.014832847,-0.032961763,-0.06002703,0.035528958,0.099670805,0.049450584,-0.027616486,-0.009290921,-0.019336406,0.0102693485,-0.051507145,0.038313452,0.047816563,-0.055696733,-0.050324842,0.051915538,-0.055768177,0.045902517,-0.037914947,-0.06051956,0.07148106,0.017309772,0.010626503,-0.09246322,-0.040777236,-0.019100094,0.056283258,-0.025643336,0.08002724,-0.045910187,-0.065872625,0.09798899,0.028982658,0.0409377,-0.012866977,-0.04061126,0.042352494,0.03693052,-0.019502982,0.052940536,-0.0011979726,0.030381236,0.008905232,0.08242786,-0.040876433,-0.0053659403,-0.030280948,-0.073503174,0.077412754,0.008961154,0.02655634,-0.05142465,-0.008414964,0.010959649,0.022607708,0.068840526,-0.070834875,0.010991951,0.042460382,0.018465573,0.040739704,0.027918957,0.03923445,-0.04160655,0.048726458,-0.008213449,0.0030589087,-0.042350024,0.063594855,0.027282037,-0.111760154,0.04223778,0.0036931236,0.023126032,-0.039549716,0.07654615,0.049745407,0.0013739921,-0.056103982,0.016403751,-0.036708266,0.0002107691,0.023607451,0.002449667,-0.023726868,-0.0019934203,-0.06823209,-0.0069443737,0.03748633,0.031733584,-0.06316802,0.006329924,0.015003363,0.039344553,-0.013063747,-0.016816089,-0.085105695,0.04121221,-0.002708101,0.034848634,8.32215e-33,0.039180286,-0.116336755,-0.01296425,0.049751673,-0.03446633,0.03602675,-0.02850948,-0.05079477,-0.02092106,-0.03789668,-0.060842566,0.050956596,-0.036129165,0.0587486,-0.0114691425,-0.008840966,0.03391726,0.080239296,0.00045678345,0.05975055,-0.014383826,0.051452328,-0.037909966,0.021952756,0.04543045,0.071439184,-0.10915892,-0.00900473,-0.030022668,0.057528574,0.062558115,0.074452974,0.0091542825,-0.02519986,-0.03022944,-0.063395575,-0.042791396,0.012529067,0.018835701,0.011699097,0.06592195,0.008322437,-0.012409562,0.015305923,0.10712748,-0.058781162,0.05220857,-0.004411271,0.04270336,0.03837094,-0.029126586,-0.0376928,-0.12768029,-0.017581226,0.033425566,0.019297821,-0.11037246,0.090721406,-0.016608447,-0.0089427335,0.021493057,0.010163905,-0.052663542,-0.0046428684,0.005460076,-0.06670856,0.08799474,0.025207669,0.051350974,-0.00231276,-0.12437981,-0.10293313,-0.10582656,0.07595295,0.022678118,-0.037583444,-0.011300091,-0.0025705334,-0.03747044,-0.032554455,-0.07011574,0.022677468,0.06491475,0.0047363257,0.0671416,0.09191627,-0.019657914,0.040258948,-0.03441993,-0.026488729,-0.054434657,0.086403064,0.014808798,-0.005205239,0.020744264,-9.0421876e-33,0.097918585,-0.037740223,0.014945407,0.029996198,-0.038469445,0.06770927,-0.07876396,-0.11312488,-0.017307727,-0.06444255,-0.0083293645,-0.046207897,0.025215356,-0.063526064,-0.06645212,0.023672659,0.015911134,-0.06406777,-0.08888445,-0.0037620189,-0.05325748,-0.030511882,0.040501896,-0.017015917,-0.071637094,-0.020668902,0.060286645,-0.10254236,-0.0025755137,0.04793891,-0.025269452,-0.010657163,0.0062033795,0.0730109,-0.04421126,-0.0146148885,0.022401804,-0.028244408,0.005208474,0.030200556,0.006614136,0.015714433,0.052905302,-0.021751847,-0.06051133,0.011033835,0.021831308,-0.06665438,-0.050428532,-0.016996162,0.010868229,-0.031034742,0.011297817,-0.026482351,-0.023535503,-0.06099535,-0.028131751,-0.124871485,-0.067620896,0.0106422,0.10949861,0.010153156,-0.056211513,-0.06487178,0.1085519,0.04270705,-0.07943164,0.02477325,0.040277224,0.06191722,0.08800088,-0.058429375,-0.04281715,-0.031495806,-0.030480528,-0.066971,-0.059446536,-0.015204665,0.05511529,-0.014045143,-0.06199737,-0.01665571,-0.04906777,-0.053969037,0.060668953,-0.06345494,-0.012353284,-0.12082353,-0.0099911885,0.07617208,-0.053175922,-0.0060232594,0.038055774,-0.039995823,-0.03255996,-4.4281546e-08,0.100026116,0.0075465105,-0.064600475,0.046980847,0.020562796,0.038776062,-0.08066791,0.011254756,0.03441141,0.17042768,-0.008872646,-0.01811653,0.04656997,0.07395162,-0.012192791,-0.008114013,0.0060913656,0.06165358,-0.073640175,-0.038916122,0.051217813,-0.009843564,-0.061108314,-0.0345226,0.013924432,0.027002279,0.026285473,0.047925387,-0.040477578,0.047569443,0.004416446,-0.055870514,0.022089517,-0.031859234,-0.0266917,0.074633725,0.06380936,-0.06950867,0.0465336,-0.023577323,0.13721868,0.061228253,-0.0068978937,-0.016714744,-0.068713225,-0.10496561,0.028616317,0.053178657,-0.020531973,0.07018009,-0.024850614,0.05532128,0.042420395,0.047026925,0.0188976,0.057134945,0.115539834,-0.0046094996,-0.02426246,0.0155414045,0.048889782,0.014239336,-0.0114954,-0.004014421} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.966146+00 2026-01-30 02:01:11.703624+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1558 google ChZDSUhNMG9nS0VJQ0FnSUR1OXR5b0d3EAE 1 t 1561 Go Karts Mar Menor unknown Another brilliant time , thank you. another brilliant time , thank you. 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Another brilliant time , thank you."} {-0.030472757,0.0007766534,-0.0020076402,-0.029792575,0.025821568,0.012300419,0.019702788,0.019438498,-0.031463012,-0.09021,0.06340833,0.0062461863,-0.021930244,-0.0017096963,-0.094426304,0.08060746,-0.06964691,-0.071194835,0.0028839153,0.050216112,0.15418603,-0.0043152217,0.06389859,0.04589859,-0.019847067,-0.013067414,0.026260773,0.025688972,-0.08708341,0.039920166,-0.04466374,-0.011132016,-0.03371263,-0.00217257,0.049834978,0.063770704,0.10635077,0.00035321777,0.048362963,-0.023789154,0.050505023,-0.041045405,-0.09484767,-0.00014334987,0.025205782,0.06304313,-0.028349802,-0.024692442,-0.012746687,0.006286554,-0.022850959,0.041909207,-0.050098658,-0.041223396,0.020127345,0.044697076,0.11524375,-0.06367323,0.04459313,0.003185791,0.035083562,0.07438053,-0.015483481,0.09952329,0.020150095,-0.07356777,0.014019788,-0.01593241,-0.08868038,0.108554795,-0.0060501713,0.06418229,0.02278911,-0.004810241,0.0054476587,0.00014546023,-0.088753246,0.06423717,0.0140284775,-0.06099889,-0.052155737,-0.00731809,-0.023799097,-0.06803212,0.013366168,-0.06261909,-0.050176762,-0.011618609,0.012644692,-0.0041272263,0.008076365,0.045854483,-0.006772767,0.06049567,-0.0021007168,-0.043328553,-0.022435358,0.017901825,0.019363105,0.04252586,-0.027946478,-0.033307258,-0.076064825,-0.028583637,0.03250828,-0.031858485,0.040242486,0.064925276,-0.028239302,-0.055692874,0.004319454,0.0110880695,0.10872982,0.042293232,-0.025545556,0.12156054,-0.053306002,-2.4366256e-05,0.0526768,0.02126952,0.0484581,-0.022639135,-0.052695133,-0.0071283076,0.0056870626,-0.075119324,0.077991284,-6.5136126e-33,-0.016474828,0.009597142,-0.03346951,0.018267196,0.086544715,0.04605062,-0.016025612,-0.036965527,-0.031142395,-0.020667866,-0.016782196,-0.021861207,0.01997583,-0.12488842,-0.16718166,0.015541584,0.035027295,0.08223067,0.1097761,-0.017743152,-0.027974106,0.049002476,-0.044541687,0.020146076,-0.0022055877,-0.01793246,0.05161578,0.0058175954,0.11769573,0.019825364,-0.08172941,0.0103852665,-0.0916886,0.05684508,0.02240069,0.063472755,0.009879124,-0.051786456,-0.044864997,-0.043442648,-0.0058541596,0.024857953,-0.056539666,0.030007381,-0.00039553866,-0.044530787,0.022271916,0.05826517,0.061102994,-0.015675178,-0.06268564,0.016845142,0.095223844,-0.03867061,0.0025754438,-0.0027234864,-0.02072906,0.059760686,0.03916402,-0.052985102,-0.027010199,0.05918464,-0.047142226,-0.022776827,-0.06634446,0.024190348,0.03320629,0.021741595,-0.017253596,0.06371088,0.019514415,0.025744818,0.08751519,-0.029177463,-0.044042207,-0.046119913,-0.039553113,-0.03776227,0.058536112,0.050790094,0.07321961,0.07530867,-0.060367595,-0.024714747,0.07584686,-0.03413872,0.09871459,-0.07131385,-0.06410143,-0.0014419941,-0.05758307,-0.019928765,0.080662996,-0.07079365,-0.12782454,4.0997926e-33,0.095620096,0.044491146,-0.016878538,0.08634794,0.06449867,-0.052860778,-0.031542446,0.054618843,-0.030194199,0.05563563,0.044744268,0.013202042,0.0024381704,-0.02776226,0.03278834,-0.035121378,0.044060227,0.033000268,-0.07529153,0.039551035,-0.008090535,0.06899588,0.046433285,-0.004254432,-0.034383684,0.023179196,0.07679062,0.0711154,-0.031644035,-0.07783272,-0.0057608765,0.0035500044,-0.081354365,-0.0018406563,-0.029942628,0.093951285,0.07128703,-0.09253063,-0.06992019,0.1066554,-0.018665252,0.03447141,-0.0055389316,0.09398144,0.0303324,0.015961912,-0.060508873,0.06905219,0.038025714,0.030074455,0.031115266,-0.019469194,-0.03409334,-0.06004438,-0.019388057,-0.0024227283,0.061746165,-0.077782735,0.064913735,-0.03050442,-0.1363102,-0.030375307,-0.107299864,0.02825323,0.0619556,-0.025209932,-0.009363254,0.0002932941,-0.015082766,0.034587976,-0.12251916,0.04020359,-0.031159993,-0.053769644,0.01868827,0.019242208,0.03434384,0.026660122,-0.014045575,-0.044865225,0.029143412,-0.0687071,0.010104513,0.055460952,-0.018543111,-0.021829551,0.07146306,-0.032225095,0.03924881,-0.04815109,-0.05135433,0.016423225,0.05135608,0.07763288,-0.018177178,-1.9163526e-08,0.014572287,0.058018647,-0.042147,-0.0038119657,0.04313802,-0.061100587,0.010529654,-0.037375372,-0.021772472,0.020576764,0.043949153,0.032357883,0.055994272,0.043963123,-0.014541646,-0.05267213,-0.015877195,-0.053673945,-0.03862413,-0.043944206,-0.06028851,0.013067674,0.022171326,0.050547574,-0.060737666,0.0051662894,-0.044267755,0.07457177,-0.032396857,-0.037959997,-0.019163629,0.07375308,-0.07161523,-0.010278235,-0.020610135,-0.03475996,0.0441515,0.06669806,0.03023623,0.014371576,0.0057948735,-0.053343143,-0.03962062,0.02811506,0.03979226,-0.058589727,0.03837526,0.02490119,0.0033498572,-0.050552867,0.005763575,-0.05560237,0.03999325,0.023556486,0.08611434,-0.03134607,-0.008958884,-0.09381665,-0.084927,0.11836741,0.0099426685,0.052155763,-0.053941593,4.6009478e-05} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.571434+00 2026-01-30 02:01:09.785084+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1998 google ChdDSUhNMG9nS0VJQ0FnTUNvdXBPMXZBRRAB 1 t 2001 Go Karts Mar Menor unknown Servicio muy bueno. Personal estupendo servicio muy bueno. personal estupendo 5 2025-05-05 00:52:39.833374+00 es v5.1 P3.01 {} V+ I3 CR-N {} {"P3.01": "Servicio muy bueno. Personal estupendo"} {-0.034276742,0.041227207,-0.01337875,-0.04435935,-0.052253876,-0.025452534,0.1250347,0.04386051,-0.008701139,-0.041476373,0.045109678,0.0064283013,-0.06676807,-0.02831449,0.034980353,0.023790436,0.012521601,0.050845508,0.036510643,0.073927306,0.060018554,-0.03616826,-0.050952308,0.076468274,-0.057600882,-0.003828288,0.04054893,0.028206712,-0.038755488,-0.0040434464,0.016109668,0.07567838,0.069133155,-0.033702064,0.029513992,-0.019057212,0.05003155,-0.09546466,0.0030916105,0.08341703,-0.10116504,-0.08102973,-0.022014523,-0.056694657,0.0066876207,-0.07700875,0.044720635,0.05561613,0.069057435,-0.05873178,-0.10028542,-0.04484711,-0.029657345,0.03386169,-0.020276953,0.0021946393,-0.048882768,-0.0039692502,-0.005925431,-0.02548926,-0.02836182,-0.0035463427,0.018831057,0.05707976,0.08673039,0.021352295,-0.018710488,0.00074559037,-0.03308144,-0.004311083,0.0493448,-0.07091873,-0.029086601,0.06621799,-0.027892685,0.010752619,0.026260182,0.01322004,0.058635827,-0.05562784,-0.022014981,-0.015799081,-0.04030736,0.027170118,-0.004325404,-0.022992363,0.0024752459,0.047979202,0.043369945,0.019884007,0.024662213,-0.025327057,-0.034676068,-0.029805457,0.0019673908,0.014542264,-0.0009403418,-0.0415482,-0.052834954,0.042221673,0.028554998,-0.013651248,0.11467763,0.031485118,0.007390834,0.081717685,0.023372216,-0.0155986985,-0.00030990643,0.051009357,-0.08906997,-0.07358503,-0.13711882,-0.01853082,-0.017907739,0.039626036,-0.019864488,0.009007816,0.0030302247,-0.014005197,0.040114757,-0.0015667884,-0.07080707,-0.020509643,-0.023188425,0.006982743,0.062138017,2.5090381e-33,0.011012781,-0.03192994,0.060421202,0.03476459,-0.0118778255,0.029254023,-0.11326404,0.010565726,-0.023592925,-0.03181845,-0.043778982,0.116460994,0.0156084,0.03938944,0.056545272,0.00867032,0.0207834,0.08248828,0.07951391,0.059480757,0.01547099,-0.03953467,-0.017472379,0.0034727405,-0.05511242,0.05765301,-0.016749445,-0.032019585,-0.05751171,0.058500037,0.0643053,-0.023783173,-0.0070425672,-0.04185782,-0.06599482,-0.07956989,-0.014628963,-0.017824331,-0.03447074,-0.048444547,-0.016030869,0.045627136,-0.008841553,0.09235979,-0.02148552,-0.04867632,0.061958443,0.029156879,0.1094858,0.04076113,-0.08717388,-0.11089657,-0.07301767,-0.009040883,0.009495007,0.017542418,-0.018813139,0.11728266,0.014671511,-0.10152349,0.06600592,-0.035358373,0.054932356,-0.039134763,-0.033832047,-0.036662698,0.005347582,0.07829656,0.088629,-0.003092989,-0.06670283,-0.019149322,0.018320238,0.076426215,-0.032079253,0.026715988,0.024405474,-0.036842156,-0.0027566282,0.02056284,-0.01896409,0.03527455,0.004347537,0.01677588,0.103194065,0.14367536,0.017609954,0.026213696,-0.0036065588,0.113880225,-0.030565405,0.07935373,0.051589653,0.025827123,-0.014405973,-3.082981e-33,-0.0153056225,-0.044926517,-0.004553252,-0.00578738,0.029056245,-0.0076582883,0.0050918073,0.028787326,-0.022957245,0.048908856,-0.094682515,-0.1338809,0.13760144,-0.047408406,-0.078339726,0.11054208,-0.010336243,-0.03341311,-0.077807955,-0.08083331,-0.06819945,0.04748253,0.06688489,-0.022773288,-0.04926961,-0.016637279,-0.06738436,0.0031223122,-0.051180657,-0.039050963,0.028724765,0.012463661,-0.12668554,0.01814152,0.028197356,0.022516036,0.017911322,0.07024196,0.05400498,0.05867854,0.0010077296,0.018616218,-0.006540222,0.0012951159,-0.036172763,-0.0009381261,-0.040766478,-0.12778176,0.029363692,-0.02185845,-0.0406553,0.030152475,0.021541875,-0.008315108,-0.007801855,-0.059503548,-0.028133033,-0.06814778,-0.12583993,0.0015791449,0.03470568,0.002869282,-0.07645178,0.057335358,0.071448095,-0.0052391468,-0.069902964,0.0064837732,-0.06593767,0.04480689,0.01756374,-0.13791612,-0.059070893,0.053854253,-0.030081246,-0.045174796,-0.024982965,-0.07918869,0.02397519,-0.011551693,-0.016041756,-0.07075746,-0.031516615,-0.036031913,-0.0848538,-0.09676352,0.01465589,0.016728403,-0.0051394803,0.035572313,0.02482101,0.033065066,-0.100901514,0.012547119,-0.019579278,-2.027261e-08,0.04254722,-0.027835492,0.065092616,0.04939874,0.032075163,-0.07917141,-0.048889026,-0.0027263272,0.06445898,0.0066191712,-0.095733695,-0.059340306,0.036708508,0.038037095,0.013522484,0.05874438,0.10267133,0.027238525,0.008862421,-0.02515439,0.06935145,-0.052029595,-0.013262437,-0.0014447091,0.018298997,0.07928601,-0.019861402,0.03473264,-0.040985856,0.010015324,0.027844837,0.008405866,-0.010761054,-0.039402597,-0.06438139,0.029091582,-0.032323744,-0.031011308,-0.049010303,-0.003583558,0.09145843,-0.0030542824,0.023944065,-0.007282173,0.076452665,0.044698667,0.012489432,0.010392309,-0.044686083,0.043941103,-0.03897922,-0.06421508,0.11206206,0.043513745,0.0015972406,0.02685817,0.0863281,0.041231573,0.048248157,0.046530142,0.020550493,0.065797366,0.0013193972,-0.06817836} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.216049+00 2026-01-30 02:01:11.613059+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2293 google ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB 1 t 2296 Go Karts Mar Menor unknown Buenos karts... Pero los precios.... Los precios.... Poco tiempo.... Pero es lo que hay!! buenos karts... pero los precios.... los precios.... poco tiempo.... pero es lo que hay!! 3 2020-02-01 01:52:39.833374+00 es v5.1 V1.02 {J1.05} V- I2 CR-N {} {"O1.02": "Buenos karts...", "V1.02": "Pero los precios.... Los precios.... Poco tiempo...."} {0.013390946,-0.010704472,-0.012487236,-0.014561059,-0.076276734,0.022145184,0.048215136,0.0055353604,0.07843659,0.05032931,0.06726019,-0.011805675,-0.046796247,0.00885581,0.021716846,0.019298486,-0.014490884,-0.0033048855,0.049015045,0.028716968,0.042647723,-0.06980472,-0.13189428,0.07825362,-0.07412088,-0.06381315,0.032773692,0.018046403,-0.039346438,-0.05844138,-0.081721194,0.031118166,0.073900394,0.011936853,0.022776736,-0.064256065,0.02441046,-0.08198865,-0.043025356,0.0533859,-0.08485751,-0.036266115,-0.00014322398,0.018862443,0.046702255,-0.03743503,0.02914047,0.06257517,-0.028134013,0.0046148845,0.0010131854,-0.04221309,0.0021321685,-0.052917376,-0.027817963,0.00043944363,-0.047965273,-0.0076979008,0.09259592,0.02895931,0.014045479,0.033857543,-0.09667463,0.008565302,-0.07121904,-0.010819393,0.08910236,0.048771434,-0.060058244,0.0927286,0.15606241,-0.08864157,0.055103626,0.045845892,0.015240825,0.08625842,0.024166778,-0.042316902,-0.053481013,-0.065436155,0.046365507,-0.018410772,-0.052845504,-0.07096935,0.0047699073,-0.021345621,-0.028249227,0.0067238654,0.058296114,-0.022968499,-0.043523442,0.074450605,-0.081701584,0.0016971558,0.0077839294,0.04215135,0.032982513,-0.057145078,0.033979945,-0.00507793,0.10670729,0.01829061,0.031408533,0.025097456,-0.014397776,0.05910736,-0.02689078,0.03566447,0.028995827,0.06571878,-0.0064204256,0.029660512,-0.03924663,-0.012052668,-0.146172,-0.05240411,0.043252118,0.022864107,-0.0049121263,-0.031056475,0.05326227,0.032484654,-0.0077079013,-0.017112104,0.022643983,-0.1033136,-0.0024097208,-3.1060546e-33,-0.097204074,-0.019538611,-0.0035283514,0.027197747,-0.0035601787,-0.043363955,-0.045701206,-0.10515267,-0.049546324,-0.00015088441,-0.05065254,0.015152257,-0.012220466,-0.007959707,0.07666796,0.02983636,0.06646654,-0.044350024,0.060133457,0.056180373,-0.09684313,0.008621562,0.023847835,0.019255877,-0.011930443,0.07775708,0.019433375,-0.12472882,-0.11199039,0.01755188,0.019059962,0.06466535,0.030318819,0.0236872,-0.082113005,-0.022806626,0.017449407,-0.009905853,-0.04392661,0.02469316,0.014556146,0.015554876,-0.047714416,-0.01473667,-0.05150569,-0.07722505,-0.021873156,0.06620679,0.043337975,-0.007765415,-0.05973396,-0.076491185,-0.094822004,-0.038656056,0.035930738,-0.0003963914,-0.06717535,0.035683677,-0.017873267,-0.03940695,0.051237945,0.017553747,0.008297707,-0.021705717,-0.02816054,-0.028326733,0.028931553,0.0070128385,0.10837214,0.019076262,-0.07866295,-0.03542918,-0.005582972,-0.0066009113,0.022415183,0.0046558045,-0.026669247,0.08109541,0.045662344,0.05284533,-0.05532692,0.0067013446,0.027713759,0.020199828,0.08041871,0.14614286,-0.018000571,0.011941354,-0.010452913,0.060862232,-0.025296386,0.038902253,0.04714742,0.013718071,0.05191709,1.326569e-34,0.082528405,-0.012984192,0.06026759,0.043564446,0.007724244,0.038697075,-0.026846431,-0.051065326,-0.019773826,0.005961029,-0.045158036,-0.060137246,0.047880646,-0.07531383,0.0026785196,0.07785993,0.05828519,-0.0031167972,-0.08250399,-0.0035698665,-0.051775046,-0.030156853,0.04180754,0.033581328,-0.0163626,-0.097838946,0.029084262,0.058456175,-0.124348655,0.014769612,0.030791389,-0.10195474,0.051609512,0.0045093107,-0.003921253,0.037667386,0.0048555094,0.108366676,0.049073223,0.07623867,0.017859643,0.08550594,-0.04821895,-0.025035473,-0.063219465,-0.029857794,-0.017758094,-0.072797276,-0.029725797,-0.06756712,0.10056886,-0.016550593,-0.052330267,-0.051707923,0.0039747665,-0.030908143,-0.03162736,-0.0065718396,-0.048981804,-0.034824446,0.020971091,-0.009683708,-0.025488004,-0.020660363,0.06589989,0.030037468,-0.065320775,-0.022618068,-0.03157331,-0.0012265582,0.040533006,0.052926514,-0.10260821,0.04530433,-0.06933952,-0.003450728,-0.05222041,0.045321807,0.13059929,0.07867446,-0.03967624,-0.0021986896,6.9814796e-06,0.07859788,0.025870144,0.030715609,0.037690885,0.07001463,0.056277364,0.050692275,0.044503972,0.07933903,0.027158376,-0.035067707,0.015190146,-2.8247582e-08,0.026850514,-0.038318984,-0.08986061,0.07250884,0.03785614,-0.016462801,-0.07124031,0.014743319,0.029953174,0.07490282,-0.042785037,0.00014128421,0.0067784763,0.0011415478,-0.05697934,0.054169618,0.018667651,0.13454014,-0.0037971071,-0.0016439835,-0.0006905135,0.02445657,-0.074332654,-0.049207356,-0.013619124,-0.101958446,-0.0734263,0.007852722,-0.01168587,0.054999147,-0.029765977,-0.031630296,-0.04543964,-0.087366894,0.01168494,-0.0016168291,0.01902164,-0.011191025,-0.014284404,-0.041211277,0.07091656,-0.047041386,-0.09218859,-0.03665302,-0.036564425,-0.09385682,-0.040761277,0.006090056,-0.08829434,0.03145233,-0.03818361,0.026474504,0.052343134,0.040292777,0.062236764,0.0016185973,0.042814553,-0.012652496,-0.03427171,0.043285124,0.02055027,0.03975872,0.038053352,-0.04677764} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.924889+00 2026-01-30 02:01:12.808803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2321 google ChdDSUhNMG9nS0VJQ0FnSURTemJEU21RRRAB 1 t 2324 Go Karts Mar Menor unknown Karts en buen estado, pista divertida y bien organizado karts en buen estado, pista divertida y bien organizado 4 2021-01-31 01:52:39.833374+00 es v5.1 O1.03 {O1.02,J2.01} V+ I2 CR-N {} {"O1.03": "Karts en buen estado, pista divertida y bien organizado"} {0.026207723,0.0040127947,-0.0020078456,-0.017855015,-0.038034543,0.025130257,0.014463365,0.0199228,0.014056682,-0.0036085634,0.059660617,-0.0251154,-0.05988062,-0.03983058,0.032607455,-0.058578264,-0.029228467,0.038398113,-0.0030192065,-0.011898106,0.00032553155,-0.039161135,-0.05481186,0.075145766,-0.09054676,0.0058757463,0.034069616,-0.08395209,-0.010656643,-0.12485639,0.019736357,0.07316925,0.02874579,0.00837937,0.0112746395,0.005976795,0.019284204,-0.014202045,-0.023507727,0.010791899,-0.022657653,-0.06658243,-0.010564132,-0.06376004,0.066787995,-0.008265499,-0.050364397,2.4898845e-05,0.017311763,-0.049614463,-0.06979968,-0.05541305,0.00038445526,0.032153744,-0.012351419,-0.031901963,-0.08621081,-0.017104007,0.0925408,0.08299628,0.049035966,0.035870068,-0.059735496,-0.035700187,-0.007371621,-0.08089153,0.022105124,0.05087155,-0.060921963,0.004944728,0.15498932,-0.019478329,-0.10283881,-0.023403654,0.015372447,-0.011777048,-0.023865253,0.0041293018,-0.07694528,-0.014312597,0.047089998,0.0061769416,-0.03597377,-0.057417978,-0.032116342,0.011191724,-0.08636542,0.07087899,0.017574513,-0.0033961956,0.0003552197,0.027036484,-0.015391539,-0.015882587,0.064070694,0.005023141,-0.0258355,-0.12441022,0.05412688,0.029566752,0.04200833,0.018654672,0.04461572,-0.055844285,-0.050214868,-0.03456751,0.02830205,0.007788574,0.065421104,-0.007505231,-0.053801235,0.01768758,-0.064548686,-0.044346936,-0.103873976,-0.004858293,-0.002076963,-0.13295062,0.0022620116,-0.06870499,0.026417773,0.06426235,-0.039907824,0.041905116,-0.016066208,-0.06092777,0.045170385,2.5025665e-33,-0.095836654,-0.054365117,-0.04884013,0.09572476,-0.0069178916,-0.050856728,-0.009200426,-0.123051226,-0.0509182,-0.07751711,-0.048227884,0.05896111,-0.020340344,0.060896788,0.055016458,-0.029548062,0.008776555,0.060404934,0.07150953,0.052663438,-0.05176966,0.01540045,-0.06388941,0.07044966,0.04976423,0.026408205,-0.03894895,-0.074810624,-0.056515705,0.05744128,-0.000279452,0.006457832,-0.021477165,0.029294016,-0.047502633,-0.014058416,-0.020250604,0.008769043,-0.04001572,0.017336061,0.041993536,-0.007896995,-0.05096599,0.056970533,-0.010884597,0.005548046,0.06531438,0.02410214,0.098363265,0.038667288,-0.034032207,-0.022117427,-0.02734866,-0.035114866,0.021506803,0.025071304,-0.031732444,0.05308478,-0.04904887,-0.038141567,0.026083764,0.06985478,-0.005717259,-0.028020548,0.016600028,-0.0077525387,0.028995562,0.046066545,0.13791935,0.045192607,-0.15755558,-0.028255807,0.022638245,0.065893054,0.04621974,-0.01419617,-0.049883183,0.10204335,-0.050397824,0.09951985,-0.015875766,0.022094557,0.032282405,0.06485911,0.081728294,0.10753164,0.064878345,0.054700505,-0.045546103,0.11897437,-0.026309012,0.10695048,0.0149555225,0.024999544,0.038230475,-5.1098328e-33,0.045418456,-0.02732035,0.010032573,0.05132329,-0.018581148,0.011747101,-0.015913863,-0.027799524,-0.041868065,-0.056773145,-0.060867503,-0.0588692,0.15524773,-0.047473453,-0.0661026,0.04080162,0.0205726,-0.04016301,-0.06620048,-0.0066808695,-0.13917412,0.037898444,0.076297835,0.008487526,-0.046324592,-0.0012154089,-0.0460896,0.0035968276,-0.039811496,0.014579022,-0.021252798,-0.050898578,-0.080892384,0.05937551,-0.020650432,0.052986417,-0.018821118,0.06668923,0.025939927,0.09124236,-0.029397208,0.046641733,-0.06455173,-0.0057252306,-0.068938516,-0.0026901718,0.06928555,-0.09931583,-0.035730384,-0.08557998,0.071658716,0.064335786,0.0021947843,-0.05712069,0.061396662,-0.07233913,-0.00924537,-0.03220768,-0.06981142,-0.0052504507,0.0466231,0.005561921,-0.02465535,-0.07148782,0.06563664,0.005919528,-0.048865404,-0.052849196,0.021748524,0.008935539,0.09854947,-0.0020009181,0.03696599,0.07367114,0.009412233,-0.0058135646,-0.053443246,0.022457618,-0.014900402,0.029081605,-0.06005749,-0.0072079753,-0.00025263737,-0.038231097,0.007794296,-0.029459056,-0.057035066,-0.027669312,0.0027839972,0.00083604624,-0.007106931,0.004041647,0.002397729,0.027170064,0.0051978654,-2.5158407e-08,0.03458648,-5.7048477e-05,-0.09833663,0.052269522,-0.011560415,-0.060163133,-0.055148523,0.05936574,-0.011673649,0.069661476,-0.055188764,0.006281668,0.061641384,0.07476422,-0.014224411,0.005419759,0.018772392,0.15737389,0.028322339,-0.03051267,0.0844355,-0.02854364,-0.04129103,-0.027239602,-0.032765448,0.025444454,-0.010783725,0.029201971,0.007546923,-0.0192298,0.041807875,-0.028430125,-0.062460203,-0.0017130901,0.026567658,0.025671065,0.012729597,0.044846326,-0.007679778,0.01524025,0.048269715,0.009589304,-0.10864212,-0.008278138,-0.07680641,-0.038453814,0.014158242,0.07220845,-0.0013073861,0.008038167,-0.030475967,-0.0043001194,0.07288248,0.057199806,0.063666984,0.0029480702,0.056888133,-0.020640684,-0.03353157,-0.04676606,-0.044193245,0.13283809,0.023042243,-0.04326282} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.38927+00 2026-01-30 02:01:12.946636+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2348 google ChdDSUhNMG9nS0VJQ0FnSURDbzVfc2tBRRAB 1 t 2351 Go Karts Mar Menor unknown Классная траса и смотровая площадка классная траса и смотровая площадка 5 2021-01-31 01:52:39.833374+00 ru v5.1 O1.02 {E1.03} V+ I2 CR-N {} {"O1.02": "Классная траса и смотровая площадка"} {0.05467165,0.05670348,-0.03922524,0.029952338,-0.09781868,0.043755993,0.10070972,0.004118596,0.004597423,-0.00014669266,-0.005119024,-0.009392658,0.015915694,-0.036139205,-0.01769114,-0.020436399,-0.008579854,0.0055548977,-0.015061538,0.009936813,-0.0018741898,-0.078771904,0.05652301,0.0981449,-0.042253155,0.020125741,-0.05302834,-0.00037652982,-0.01767759,0.006471398,-0.07235957,-0.0053846342,0.06698536,0.011577319,0.03880516,0.013222063,-0.008769881,0.048902947,0.012127497,0.09805723,-0.07690983,-0.058588788,-0.11020378,0.08656571,-0.05759846,0.012686796,-0.06979556,0.004189996,0.01780309,0.017935254,-0.08924011,0.010934902,-0.025558673,-0.00917346,-0.0061874674,-0.09029661,0.012052091,0.023137085,-0.07732789,-0.027123574,0.08800662,-0.043484397,-0.031162819,-0.0216342,0.00040930024,-0.01564075,0.0012595764,-0.042734955,2.2822021e-05,0.047997054,0.0041814037,-0.03228241,-0.063725874,0.038289793,-0.08130682,-0.13135687,0.008219989,-0.051926006,-0.014265594,0.027852641,0.082635805,0.06510179,-0.094978146,-0.040599216,-0.06899241,0.005862073,0.026850492,0.009755269,0.017533762,-0.0015565167,-0.008033502,0.034165923,-0.02801421,-0.028766187,-0.12251211,0.012084198,-0.0036889983,-0.025969213,0.08072617,-0.013378077,0.031140525,0.02769234,0.026303587,0.04580649,-0.11109181,-0.011259049,-0.105808385,-0.014033702,-0.03508939,-0.0017076737,-0.057215773,-0.08293736,-0.03071429,0.00031647753,0.032368675,0.0337496,0.014680821,-0.03681132,0.020494333,-0.0025861447,0.09145218,-0.043305412,0.014182345,0.040639937,-0.037766937,-0.04240908,0.041625477,9.2643406e-33,0.026158303,-0.058777943,0.01629106,0.055820763,-0.07971883,-0.009106227,-0.026713304,-0.018912442,-0.036731724,0.04917742,-0.011350102,0.0037084466,-0.0065741935,-0.084503554,0.044424225,0.0482438,-0.020267492,-0.02307309,0.037117884,0.09889435,0.000116213625,0.11194668,-0.0043476503,0.0034572326,0.05132267,0.01788444,-0.011323838,0.036755685,0.036981013,-0.02398307,0.07614577,0.035579596,-0.08302889,-0.012283252,-0.030717937,-0.030172067,0.023765685,0.06552761,0.05957003,-0.00800814,0.015414531,-0.060829386,0.07693034,0.015933905,0.033975992,0.04855281,-0.02950082,0.013826092,0.023968842,0.0075854575,-0.043375753,-0.018363416,0.048905876,0.10160998,0.048320264,0.05233015,-0.0041700024,-0.03158187,-0.045379966,-0.032543365,0.012758202,-0.038498897,0.03840719,-0.05084157,0.01170412,-0.08756376,0.026745459,0.007141429,0.026556795,0.056387667,-0.10237399,0.02244761,0.039425015,0.045313,-0.037009507,-0.04176483,-0.12176672,-0.005826585,-0.12890516,0.12246674,-0.11818471,0.02516547,0.073826574,0.047537375,0.034089718,0.0634745,-0.023891434,-0.02428149,0.032149605,0.069096714,-0.14040719,-0.0063445056,0.032749016,0.040145855,-0.0063168113,-1.13452845e-32,0.05745355,-0.06637416,-0.009158677,0.109750025,0.012316324,0.032075595,-0.07440251,0.0324667,0.018275967,0.064800344,0.05177624,-0.01173003,-0.0026458837,0.038884863,-0.013226193,0.021021573,0.10297979,0.0073548933,-0.19989079,-0.07110788,-0.071060896,0.0064823106,-0.10054132,-0.005605976,0.049507845,-0.00860952,0.08301801,-0.103421986,-0.10248201,0.026967248,0.0698418,-0.014327031,-0.031524274,0.08460016,0.026023665,-0.0111770965,0.05305467,-0.05767172,-0.051511772,0.059936658,-0.009874596,0.059245955,0.068253614,0.041188642,0.016873382,-0.04953008,-0.10095396,-0.022934321,0.017392842,-0.037259046,0.03221556,0.013253786,-0.043701783,-0.045290984,0.10133555,-0.0051929965,-0.016441306,-0.0015065502,0.030531308,0.025114313,0.028422652,-0.010689681,-0.021970797,-0.08364712,-0.05772844,-0.017264402,-0.057642486,0.04505676,0.10755309,0.06964345,0.06696482,-0.023949092,-0.062078368,0.080311276,-0.0243831,0.033597868,-0.069956526,0.1657996,0.08818094,0.04609803,0.024269175,-0.05557783,-0.012286415,0.012809246,-0.0057413317,-0.066057704,-0.021988032,0.02063794,-0.019402174,-0.06603079,0.0076550255,-0.04481637,0.04262017,0.0058541954,0.022383077,-3.1348478e-08,0.023311475,-0.06804934,-0.01362412,-0.021682816,0.00015017556,-0.025216766,0.06450468,0.0059694992,-0.02999251,-0.0058426424,-0.009943675,0.003457242,0.014245011,0.061394747,-0.019655775,-0.03610071,0.028498322,0.06520877,0.025241623,-0.0306406,0.057359252,-0.0749216,-0.11890408,-0.06284987,-0.030040022,0.017913,0.05394323,0.0072409417,-0.024787119,-0.028058574,0.013892664,-0.031647813,-0.019300396,0.017657878,0.05169464,0.04824853,-0.02358374,0.016417852,-0.05895692,-0.013040076,0.032512285,-0.0051830285,0.022958381,0.015847057,-0.021544011,-0.03399317,-0.02909318,-0.004104948,-0.008887667,-0.04254268,-0.05118663,0.08264871,-0.0017490389,0.015594994,-0.022090148,0.0775653,0.08294051,-0.038470116,-0.07402032,-0.0051395055,0.0059769126,0.008019313,0.02759388,-0.045647137} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.254573+00 2026-01-30 02:01:13.093665+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2421 google ChZDSUhNMG9nS0VJQ0FnSUM2aUlMWGJREAE 1 t 2424 Go Karts Mar Menor unknown Volveremos!!🏎️🏎️🏎️🏎️ volveremos!!🏎️🏎️🏎️🏎️ 5 2026-01-30 01:52:39.833374+00 lt v5.1 R4.03 {} V+ I3 CR-N {} {"R4.03": "Volveremos!!🏎️🏎️🏎️🏎️"} {0.0042322013,0.064125985,0.0304667,-0.05130487,-0.06344898,-0.023769973,0.074458785,-0.027722554,0.054601636,0.014954266,0.047943186,-0.0878406,0.018782357,0.034455,-0.09324996,-0.08887102,-0.0077168234,0.11535075,-0.017923646,0.032745063,0.03132259,-0.04569575,-0.051779874,0.08183482,0.022616642,0.024196317,0.010054216,0.04533305,0.0010052298,-0.1341135,0.032700118,-0.037564293,-0.04839613,-0.005969421,-0.017087463,0.00057504646,-0.012944576,-0.043424387,0.009788539,0.027532285,-0.09530601,-0.023422554,0.004096956,-0.006799281,0.005398135,-0.0340584,-0.03495414,-0.019714663,0.0317736,0.04559608,-0.07404566,-0.013813886,0.021017494,0.031495463,-0.05596344,-0.026449997,0.03839338,-0.07123152,0.033806164,-0.01942055,-0.0048663723,0.07547301,-0.036463752,0.04445948,-0.14891273,0.0032069832,0.049917083,0.032886147,-0.06599939,0.08506212,0.0684197,0.01875808,0.053468913,-0.0063813697,-0.012262604,0.069901906,0.039267078,-0.05258746,0.03500793,0.05856857,0.066454254,-0.083061256,-0.05363861,0.055530395,0.0070376555,-0.034294773,-0.049253665,-0.037300754,0.0034307411,-0.08432868,-0.060730856,0.040802166,0.0018130282,0.051760167,-0.11352512,0.038372543,-0.015177428,-0.03312861,-0.0790716,0.040109597,0.012338454,0.026001275,0.03604137,0.053723797,0.0017474248,0.045209777,-0.004864625,0.027228894,0.05095712,-0.006279578,0.017219132,-0.006372364,-0.052305255,0.05300259,-0.009292365,0.010086936,0.01588614,0.04129322,-0.08619767,-0.035569504,0.090920694,0.0040719383,-0.07779497,-0.111316554,0.046276864,0.007953533,0.0077303797,-2.3438175e-33,-0.040417112,-0.05010999,0.021720048,0.03245898,-0.02558302,0.016314162,-0.044982545,-0.0040357606,-0.15766925,-0.06560122,-0.0913433,-0.0028648179,-0.10210725,0.10192518,-0.0036265366,0.13420595,-0.00808552,-0.11671817,0.019907935,0.014238591,-0.007192081,-0.0035322434,-0.0015895594,0.0800626,-0.047578484,0.023914421,0.092266284,-0.08579823,-0.035104845,0.073829666,-0.031629305,-0.036265045,0.022650782,0.049998835,0.07404233,-0.018595973,-0.0031433587,-0.06444795,0.042247828,0.02063837,0.06740062,-0.004668987,-0.074974954,-0.080125555,-0.0553034,-0.022999933,0.026050678,0.015786313,0.11892577,0.026867319,-0.08589304,-0.038686305,0.0033646924,0.028295381,0.09649136,0.0029539396,-0.042816892,0.05088706,0.020028414,-0.06488189,-0.033075877,0.05149758,0.034582272,-0.0096532535,0.029695187,-0.061967675,0.015597644,0.010151085,0.02019239,-0.018427135,-0.020736868,-0.0024423858,-0.054556616,-0.022669015,-0.022819066,-0.054881677,-0.034779277,0.011134137,0.0551199,-0.010681202,-0.028683137,-0.0016662902,-0.039330427,-0.043117043,0.06235615,0.062300697,0.019741433,-0.021158783,-0.0052146367,0.038756784,-0.021069486,-0.060112312,0.11063989,-0.0141851995,-0.065172486,4.601241e-34,0.060456343,-0.009954897,0.04866426,0.005044967,0.0019986473,0.0046900087,-0.04453831,0.09246866,-0.04872444,0.0016701525,-0.03504493,-0.013445303,0.051367547,-0.037231326,-0.05582035,0.06355435,0.08840541,-0.026083654,0.0286464,0.018732611,-0.08574518,-0.027546037,-0.1398047,0.0032850585,-0.07511416,-0.015098273,0.11383771,0.017535614,-0.09688286,-0.025839638,-0.02614134,0.019939318,-0.038794994,-0.014512896,0.028518567,-0.0042679887,-0.00095957343,-0.026413944,0.014281005,0.016260158,-0.046868425,0.01387425,0.054321293,0.030160872,-0.0009043362,0.023504,-0.07145205,0.0047634537,-0.00425208,-0.03295867,5.252297e-05,-0.038636863,0.036585316,0.031322647,0.02613566,-0.070063464,0.058238924,-0.022820886,0.010100023,-0.0067006075,-0.061367635,0.02104854,0.008433711,0.087672934,0.07834684,0.05682125,-0.040046223,0.026883218,-0.02646359,0.028845932,0.11543622,0.04069014,-0.08124887,-0.05887005,-0.060012836,-0.002591862,-0.071994156,0.0047337054,0.028781524,0.053095642,0.01605531,0.044387978,-0.02169016,-0.025654014,-4.4915636e-05,0.01824682,-0.019157702,0.07473178,0.0082595525,0.04847663,0.049405888,0.055479232,-0.010930211,-0.05862012,0.087431535,-1.6126656e-08,0.013468312,0.096883066,0.0041100937,-0.02650022,-0.015654983,-0.057342168,-0.037831277,-0.0109394435,-0.0068496107,0.04788034,0.06891269,0.023850253,0.04820479,0.07885068,0.04100856,0.07428658,0.08120279,0.13039215,-0.003170453,0.0057834983,0.039869606,0.019166062,-0.038600907,-0.05650406,0.048862267,0.0050724675,-0.022793531,-0.06564917,-0.023123961,-0.026250105,-0.0072099185,0.037953444,-0.09907217,0.017422164,-0.07913617,-0.025884634,-0.010303122,0.0416277,0.039633382,-0.102062106,-0.0030434127,-0.042693,-0.0054347264,-0.029342206,-0.023328995,-0.013975546,0.088466816,0.019944906,-0.02407997,-0.03042774,-0.094144665,-0.022619013,0.052674595,0.033015016,0.06652397,0.031613033,0.105509244,0.05181333,-0.084160574,-0.016281,0.13332364,-0.0131992,0.0048686387,0.031397693} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.006881+00 2026-01-30 02:01:13.555623+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1326 google Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB 1 t 1329 Go Karts Mar Menor unknown Been here 2 times now in the evening, always very busy so you have to wait around an hour before it's your turn if you don't book a timeslot, which is reasonable. The track is pretty good, lots of variety of turns and straights. But I absolutely dislike the karts comfort, I drive the F300 which is pretty quick but once you crash or take short turns and end your turn, I'm always hurt in my back or the insides of my knees (which is in between the fuel tank) because I have a fragile body and I always have a helmet that tilts up in my view so every bump I have to tilt it back down but that's something that the staff can't notice beforehand so I don't blame them. Next time I'll make a reservation and wear something less thin and a smaller helmet that still fits been here 2 times now in the evening, always very busy so you have to wait around an hour before it's your turn if you don't book a timeslot, which is reasonable. the track is pretty good, lots of variety of turns and straights. but i absolutely dislike the karts comfort, i drive the f300 which is pretty quick but once you crash or take short turns and end your turn, i'm always hurt in my back or the insides of my knees (which is in between the fuel tank) because i have a fragile body and i always have a helmet that tilts up in my view so every bump i have to tilt it back down but that's something that the staff can't notice beforehand so i don't blame them. next time i'll make a reservation and wear something less thin and a smaller helmet that still fits 3 2025-09-02 00:52:39.833374+00 en v5.1 E1.02 {O1.02} V- I3 CR-N {} {"E1.02": "But I absolutely dislike the karts comfort, I drive the F300 which is pretty quick but once you cras", "J1.01": "Been here 2 times now in the evening, always very busy so you have to wait around an hour before it'", "O2.03": "The track is pretty good, lots of variety of turns and straights.", "R4.05": "Next time I'll make a reservation and wear something less thin and a smaller helmet that still fits"} {0.058698494,0.010764901,0.057599265,0.075210564,0.028707426,0.0054128557,-0.029080207,0.034090545,0.0003334882,0.028183868,-0.06044121,0.015912239,-0.024909003,0.019293023,0.0013345076,-0.06467956,0.085085146,-0.051987294,0.039690644,0.033167087,-0.080853954,-0.021159854,-0.022152297,0.09386971,-0.16077279,-0.011305737,0.0200991,0.025621539,-0.03885906,-0.11455836,-0.10129134,-0.027897317,0.018392568,-0.016396632,-0.045540866,0.002001208,0.037486263,-0.042450305,-0.056632716,0.018959276,0.01191366,-0.0070752976,-0.0015333084,0.051445216,0.11420002,0.037215393,0.016862191,-0.022993894,0.09639736,0.06606448,0.06748536,-0.056076575,0.068747394,-0.041692026,0.00037956072,0.017699415,-0.053879574,0.030633144,0.07038267,0.036304157,0.020496147,-0.02934353,0.013588452,0.018755432,-0.035986777,-0.013536286,-0.0029142299,-0.018653182,0.059956733,0.115934454,-0.009070016,0.0128718335,0.012275211,-0.09234979,0.028238328,-0.05142464,-0.022952817,-0.04346467,-0.016273119,0.0102127055,0.008170937,0.01381951,0.022880502,0.002238784,-0.016219957,-0.10229209,0.09264697,0.07433865,0.03903403,-0.0032740182,0.060216248,0.055344496,-0.013846693,-0.015122261,0.11912973,0.075787745,-0.04750676,0.0038024017,-0.0039512943,0.017122656,0.04684695,-0.0012449814,0.005454555,0.0827861,0.014155158,-0.059988923,-0.058635928,0.028140893,-0.043232188,0.03742236,0.03674665,0.09090216,0.026790082,-0.0016860104,-0.063185796,0.059101313,-0.04723377,0.06272413,-0.031401046,0.065678164,-0.0012828205,-0.014531155,0.03468364,-0.013196027,0.04129172,-0.0031742298,-0.008082083,-9.37917e-34,-0.08096811,0.050968785,-0.07350297,-0.048628855,0.024046054,-0.17308684,-0.032725137,-0.093783826,-0.082336806,0.07111485,0.06647597,0.051751293,0.0021319045,-0.049517386,0.010273781,-0.040774096,-0.013107039,0.030269966,-0.13123453,-0.058147896,-0.010621969,-0.13960442,-0.06452235,0.029002506,0.0096972985,0.07547454,0.07483041,-0.0036482236,0.0028921473,0.009934387,-0.089447886,-0.015640054,-0.048368536,-0.05514422,0.0064766956,0.059046302,-0.034115568,0.016327333,-0.06010117,-0.053732567,-0.04646582,0.024076479,-0.040578317,-5.938732e-06,0.0039015769,0.032568023,0.0162471,0.010702281,-0.029573705,0.03636433,-0.09933737,0.017422186,0.015139822,-0.014978966,-0.061903097,0.019111838,0.091997355,-0.04478317,-0.05304621,-0.010184189,0.0556502,-0.028314764,-0.012741762,-0.08833836,-0.07912989,-0.0056504253,-0.030810282,0.009875537,0.022227764,-0.015796328,0.018336335,0.067336984,-0.029018521,-0.037558343,0.0557979,0.03965401,-0.02614481,0.019228442,-0.050685987,0.0021299578,0.04937957,0.028862046,-0.00447605,0.023657573,0.07936784,-0.041458923,-0.07120009,-0.009176124,-0.013293761,0.03045424,-0.022227172,0.0106650945,0.034314524,0.058943704,-0.041039236,7.7248834e-35,0.07858913,0.030877972,0.077122524,0.054358143,-0.017610487,-0.04682228,0.04414943,0.08259162,0.043053523,0.07940845,-0.034792475,-0.016738616,-0.1046733,-0.01585704,0.041270427,-0.055440873,0.03663587,0.04157214,0.029386062,-0.039940335,0.009195425,0.0024764433,0.0044321325,-0.030417671,-0.020619292,0.10806372,-0.023038454,-0.035529885,-0.10441481,-0.085369825,-0.07514647,-0.064695,0.006719214,-0.046634004,0.03458857,0.05436038,-0.0045945896,0.08485052,-0.10079712,0.053767394,0.01917251,0.05792372,0.023257446,-0.02544467,-0.00674642,-0.018199624,0.11046037,0.010536076,-0.031444315,0.03368372,0.0362111,0.045100953,-0.0011668549,-0.014322722,0.023269068,-0.0035275104,0.029791579,-0.031678982,-0.044984356,-0.01282267,-0.00530793,-0.020494401,-0.020856252,0.027836734,0.015663972,-0.0799806,-0.040982354,-0.061300185,0.02999841,0.072759435,-0.13300495,-0.0062308745,-0.07036293,-0.021823786,0.02913743,-0.013606841,0.061124273,0.013356881,0.02381847,0.03900519,0.045122955,-0.054974988,0.03354676,0.06237952,-0.005904082,0.06207664,-0.016164403,-0.003739241,0.004016184,0.040302992,0.056446802,0.10155096,-0.014392943,0.07609708,-0.04287091,-5.3360555e-08,-0.042601537,0.013871371,0.0008542442,0.0147557445,-0.0014658116,-0.08481043,0.007709603,0.0015796066,-0.14111872,-0.011974731,0.028137583,-0.0065644556,0.028641453,0.007522874,-0.010937838,0.026222875,-0.044185206,0.11938573,-0.06585181,0.02539677,-0.03503199,0.027382195,-0.008116138,-0.033919986,0.026526319,-0.033393126,0.024375116,0.071423076,-0.0019768619,-0.0036154094,-0.03898951,0.053997654,-0.092748314,0.03706825,-0.06408525,-0.05712647,-0.018461209,0.06654615,0.06530054,0.11320888,-0.0675256,0.008501037,-0.026459126,0.08149625,-0.046309277,0.009870523,0.0059867045,0.024954386,-0.04208932,-0.03863021,-0.0031601891,-0.10070143,0.002441533,0.11401904,-0.04090337,0.07300852,0.010849664,-0.038842887,-0.021237317,-0.015718441,-0.09573611,-0.070319146,-0.069140226,0.03405476} 0.975 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:34.080879+00 2026-01-30 02:01:08.986516+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2002 google ChdDSUhNMG9nS0VJQ0FnTURvM0tEOTJBRRAB 1 t 2005 Go Karts Mar Menor unknown Sehr schöner Platz. Gut zu erreichen sehr schöner platz. gut zu erreichen 5 2025-05-05 00:52:39.833374+00 de v5.1 A4.01 {E1.04} V+ I2 CR-N {} {"A4.01": "Sehr schöner Platz. Gut zu erreichen"} {-0.06399771,0.087786645,0.009471424,-0.008894879,-0.051811222,0.06790834,0.04399712,0.12555598,0.012452819,-0.06993285,0.007515955,-0.046757556,-0.010979027,-0.058250275,-0.025615603,-0.039370615,-0.026564978,0.08626892,-0.021127336,-0.020174466,-0.025549298,-0.0029371006,0.04831847,0.037042253,-0.0138962725,0.020863993,-0.0217137,0.058111798,0.05651181,-0.0863908,0.073794656,-0.04579937,0.11186155,0.03221757,0.051284637,0.0439617,0.014814763,-0.07545375,-0.05445568,0.05659796,-0.031830687,0.043730333,-0.03511804,-0.058951695,0.020090686,-0.027714364,-0.0039188717,0.022701485,-0.09896997,0.094811015,-0.04661678,-0.032951947,0.033836965,-0.008219479,-0.0036349506,0.014729973,0.026650818,0.020125944,-0.0074225985,-0.0908574,0.026522633,-0.052151848,-0.0965131,-0.012521852,-0.09303573,0.050602,-0.015443294,-0.07017582,-0.0712776,0.067891024,-0.03074978,-0.1400481,0.0005814282,0.076920524,-0.031270225,-0.02513978,-0.035203904,0.0022230921,-0.022021133,0.0036383693,0.02127998,0.008415367,-0.05042189,-0.0073005627,-0.054180156,0.037533544,-0.03815043,0.05878211,0.0096939625,-0.00891312,0.0003171163,-0.012971913,-0.060607314,0.052955396,-0.07184289,0.042421233,-0.053212702,-0.04810104,0.100271344,0.053816985,0.018573828,0.061628863,0.1016099,0.020985425,-0.07563316,0.0023268668,0.011598133,0.02372608,-0.01635775,-0.025106387,-0.010898585,-0.011257156,0.025298381,-0.07303012,0.040667817,0.016002672,0.030002045,-0.07567629,0.009940383,0.00052782753,0.05058315,0.0059211226,0.02511076,0.011551692,0.0614566,-0.06774835,0.03509539,4.157622e-33,-0.07308521,-0.029074375,0.01609801,-0.04510261,-0.0055314996,-0.0061233845,-0.041909765,0.01641161,0.051607203,0.025403269,-0.0171938,-0.095856555,0.050380386,-0.060163725,0.0016075566,-0.020646814,0.07463408,0.016494308,0.035564095,-0.023531348,-0.018182509,-0.11633553,0.07849915,-0.05982236,0.026210194,-0.009697601,0.023598079,0.011338056,0.087406,-0.01332118,0.1391508,-0.012366921,-0.027382351,0.012314121,-1.8596418e-05,0.06612281,0.04720227,0.090014234,0.089317,-0.00922336,-0.029655926,-0.006166922,-0.02469325,0.019794928,0.12504129,-0.05248628,-0.01806924,0.020975802,0.11741563,-0.041886102,0.031291094,-0.036887143,-0.0062782904,0.032551248,0.06802628,0.030948171,-0.021164486,0.06151936,-0.0425685,-0.014399326,0.041959066,0.011812761,-0.033995766,-0.054158244,0.070175156,-0.007027063,0.020174773,-0.045972224,-0.006638644,0.0047999136,-0.09705783,-0.048096254,0.035567578,0.10264102,-0.0544574,0.00046220876,-0.10297409,0.040796813,0.017464282,0.001182272,-0.12468484,0.08104749,-0.024688147,-0.042302296,0.011692795,-0.037528846,0.013042248,-0.060168605,0.036239278,0.108466364,-0.013126664,-0.08077786,-0.017016761,0.058464225,-0.010679131,-4.875727e-33,-0.004730666,0.0018940181,-0.07091743,0.098859966,-0.015850106,-0.017676547,-0.063149855,0.106291585,-0.0921828,0.11694201,0.017826643,-0.011625906,0.093171135,-0.01642752,-0.0030863949,0.07979937,0.016697098,0.015656551,-0.023779092,-0.04465153,-0.032516193,-0.049233418,-0.00065275724,0.08197658,-0.057314772,0.08081245,0.004244889,0.028786689,-0.06332708,-0.0073104054,-0.11951458,-0.03176803,-0.04079757,-0.03956685,0.039657578,0.044942934,0.023314299,0.07754342,0.010796809,-0.04015913,-0.0019953293,0.0500176,-0.030424392,0.011034641,0.10770907,-0.032029383,-0.04071443,-0.009405073,-0.091725335,-0.021837747,-0.008547074,0.026978716,0.07028947,-0.059066627,0.00909929,0.05611753,-0.039138712,-0.07814403,-0.0054772166,0.047539294,0.07173006,0.07296143,-0.041155588,0.03852081,0.09275676,-0.09250678,-0.05061371,-0.056613762,0.017684238,0.064123325,0.018125413,0.004780436,-0.06507189,0.047776703,-0.03975888,-0.024072463,-0.09372417,0.031403877,-0.082250096,0.042415895,-0.017572554,0.05284608,-0.02386525,0.020407533,-0.017434211,-0.027926266,0.02017436,0.0035474126,0.0077387267,-0.02013254,-0.018369602,0.0012447739,0.025452305,0.080200866,0.016724717,-2.6251069e-08,0.022226335,-0.03669598,-0.04050724,-0.03361335,0.013327117,-0.08138854,-0.07204677,-0.075558476,-0.01972301,0.017466968,-0.03354145,-0.022301694,-0.067934565,0.061578125,-0.0018319417,0.047848135,0.004816137,0.047016308,-0.016905569,-0.03518106,0.14118709,-0.0076606697,-0.023335641,-0.0016306638,0.07082089,-0.020848151,-0.062906295,0.019007117,-0.0443316,-0.026056917,0.0674335,0.049050175,0.12184493,0.014528742,-0.00084324094,-0.003978209,0.04080443,0.0009821992,-0.020563252,0.0393941,0.003910098,-0.052021395,0.013889305,-0.07575974,-0.017322972,-0.043077145,-0.01621254,-0.022793366,0.052479118,0.0037179687,-0.09799223,-0.09935399,0.067048885,-0.043433238,0.004778342,0.010402615,-0.007987883,0.039602384,0.02605115,0.053259604,-0.022569353,0.038553383,-0.051861353,-0.023375923} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:59.257277+00 2026-01-30 02:01:11.623998+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1334 google ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB 1 t 1337 Go Karts Mar Menor unknown Friendly folks. They only speak Spanish, but they’ll be happy to let you write down your list of drivers and cars on a piece of paper. In the off season, they can put together a race for the whole family in different car types, even tandem for the little ones. During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars. friendly folks. they only speak spanish, but they’ll be happy to let you write down your list of drivers and cars on a piece of paper. in the off season, they can put together a race for the whole family in different car types, even tandem for the little ones. during high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars. 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {A2.02,A3.02} V+ I2 CR-N {} {"A3.02": "In the off season, they can put together a race for the whole family in different car types, even ta", "P1.01": "Friendly folks. They only speak Spanish, but they'll be happy to let you write down your list of dri"} {-0.0029845412,0.0051063052,0.040533625,0.004755395,-0.05108576,0.0780468,-0.001147693,0.0022907108,-0.058221422,-0.074545674,0.011955023,-0.02685798,-0.060082354,0.018900787,0.0026006696,-0.03795119,0.015367357,-0.003054109,0.01210189,0.024346948,-0.06336498,-0.06406149,0.01040807,0.089603,-0.0718167,0.009891452,-0.013338142,0.06175037,-0.008299101,-0.011497215,-0.040984523,0.07718378,0.100454375,0.0403201,-0.038669884,-0.026709348,0.020248268,-0.007174735,-0.063844875,0.03014882,-0.0314896,-0.062765695,-0.0018204227,-0.014418403,0.02929688,-0.044732425,0.020888403,0.028265817,0.06215157,-0.03320526,0.03621609,-0.03443553,0.055123623,-0.037456367,-0.012325027,0.04217996,-0.035187308,-0.025080314,-0.0010264062,0.044553287,0.046760112,-0.0036854232,-0.10089014,0.025346963,-0.09955578,-0.03957251,0.016883643,0.09818052,-0.023377027,-0.03499426,0.039243672,0.012605579,0.08963905,0.08419521,0.011377592,0.020624278,0.061776113,-0.051890165,-0.018783608,-0.08227672,-0.106998816,-0.05471735,0.020997569,-0.08184856,0.061411086,0.0007969668,-0.003026213,-0.0031589516,-0.014345527,0.049771007,-0.13176772,0.044002965,0.080779605,-0.040784165,-0.040154338,0.09071892,0.1026798,0.019498045,0.026734315,0.040464602,0.053023554,-0.023328338,0.09226667,0.02072378,-0.12787186,0.05426545,-0.04009455,-0.04846566,0.010352233,-0.038163375,0.016154407,0.02056135,0.018941628,0.039307877,-0.122272156,-0.014542104,0.0006431238,-0.007687274,0.03235657,0.0067200414,-0.0740267,-0.016157387,-0.019288626,-0.008952694,0.084720865,0.0016551899,0.07076248,-5.656882e-34,-0.010560032,0.0047946107,0.030920098,0.0894721,0.05123853,0.027516626,-0.05149192,-0.043512177,-0.11961335,-0.04087826,0.0042703883,0.0042040017,-0.034225356,-0.030913519,0.013481967,0.07697352,-0.08715965,-0.06381074,-0.072379656,0.021540044,0.02267692,0.104627825,0.0035448212,0.05383428,0.033595033,0.05187489,0.045151293,-0.092274025,0.04896587,0.061574154,-0.079381034,0.008273167,-0.03994689,0.023291873,0.032939103,0.04255244,0.040298294,-0.0239909,-0.033031765,0.064787105,0.038393367,-0.07093962,-0.031788755,-0.010731328,-0.07448975,-0.007670763,0.09203982,0.045965597,-0.0029314156,0.033482768,-0.088643566,-0.12785912,-0.03422067,-0.010261179,0.010774149,0.10278271,-0.025542384,0.0027155462,-0.059689686,-0.04733495,0.013466192,0.05812582,0.012918423,-0.0123135485,-0.02239615,-0.014999008,0.022786574,0.02120163,0.08417762,-0.028305532,0.029744448,-0.04747769,-0.08230099,0.0036296991,0.025655847,0.08926171,0.09308245,-0.0065549426,0.053439245,0.059963964,-0.01724273,0.01504435,-0.008239727,-0.010268905,0.041720387,-0.00085613504,-0.027356146,0.0028747427,0.0020018928,0.03346925,-0.05650954,0.01938845,0.07565824,-0.0421641,-0.016788894,-2.3564075e-33,0.0064408733,-0.04105907,0.115413606,-0.04058595,0.01966586,0.02135735,0.048312817,-0.07279474,0.02220599,0.041030146,-0.084255874,-0.072151855,0.119319096,-0.050362874,-0.07963951,-0.07258806,0.043805026,0.059514996,-0.0053978236,-0.02067219,-0.030732393,-0.028718809,-0.032640945,0.0035682344,0.012490179,-0.058415584,-0.03949137,0.013847541,-0.074781604,0.004728599,0.027699312,-0.08715526,-0.009830725,-0.057856727,-0.037413597,0.060754247,-0.053747866,0.010143694,-0.0792362,0.02540296,-0.021889808,-0.04546546,-0.012475288,0.056561723,-0.02171197,0.011178732,-0.024901345,-0.01656166,-0.06381156,-0.025575649,0.03779609,-0.0295917,-0.078931965,0.018152261,-0.067034975,-0.060605746,0.11581166,-0.029925317,-0.067478985,0.036528908,0.011273413,-0.036042422,-0.012184555,0.029587364,0.014466292,-0.09903858,-0.078798085,-0.049309254,-0.025071647,-0.035115544,0.010374741,-0.02787209,-0.07510476,0.026357181,-0.07592634,-0.034620076,-0.07987645,0.013275746,0.0653444,0.041792274,0.046648264,-0.03518183,0.051186413,0.06172741,0.04386655,-0.00032157457,-0.041554824,0.06000974,0.08154272,0.046681367,0.07962374,0.11395384,-0.0010329739,0.04754999,-0.06434386,-4.0615237e-08,0.056347482,0.005701553,-0.029439906,-0.030682666,-0.03160344,-0.058921862,-0.030945323,-0.04800616,-0.05370033,0.10668024,0.0036412457,-0.018053515,0.03788438,-0.023165632,0.082491,0.032703713,0.025338816,0.10340682,-0.04525525,0.02735652,0.027392803,0.043925095,-0.011179633,0.13264859,0.025618898,-0.077020034,-0.033999786,0.007964116,0.021676157,-0.06716568,-0.04539887,0.036216445,-0.03335504,0.018821232,0.039390642,-0.03957599,-0.109087154,0.07023871,0.026815819,-0.043268945,0.04734436,-0.011657722,-0.07956321,0.016787,0.0524613,0.0134332925,-0.049416516,-0.06019981,-0.026446458,-0.028243147,-0.06720469,-0.0452003,-0.016200393,0.08663992,0.025627494,0.039949026,-0.038157064,0.008171653,0.07302932,-0.0399245,-0.004626971,0.08710344,-0.007970302,0.03504935} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.411101+00 2026-01-30 02:01:09.010331+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1488 google ChZDSUhNMG9nS0VJQ0FnSUR1eU1lQkxBEAE 1 t 1491 Go Karts Mar Menor unknown Well organised, not too expensive and great fun...especially at night well organised, not too expensive and great fun...especially at night 5 2023-01-31 01:52:39.833374+00 en v5.1 V1.01 {V1.01} V+ I3 CR-N {} {"V1.01": "Well organised, not too expensive and great fun...especially at night"} {0.038166292,0.013697587,0.030169066,0.11915504,-0.09199692,-0.04182994,0.0099705495,-0.049623575,-0.026572965,0.077440366,0.0047039744,-0.018569663,-0.041299738,0.082085304,0.041810278,-0.11538203,0.123262,-0.06528196,0.037951097,-0.0781992,-0.070825614,-0.0139505295,0.06546786,-0.010466149,0.013142268,0.04796722,-0.052263737,0.002427519,0.022719257,-0.050529633,0.0031973685,0.06106819,-0.011068965,0.012362465,-0.01835981,0.08212316,0.04720314,-0.089136995,-0.021355808,0.045428663,-0.018491225,0.025499221,0.04362842,-0.03721086,-0.019417217,-0.00013366273,0.04527582,-0.013995821,0.021264533,0.012291565,0.054346833,-0.0126971165,-0.0057048495,0.00010403502,-0.030609839,0.06109228,-0.079638585,-0.09519494,0.019806137,-0.07712675,0.012275138,0.053351156,-0.0067663104,0.06530575,0.007244106,-0.024747344,-0.07140307,0.1108273,0.09845473,-0.047243964,-0.044511158,0.017045287,-0.0038285314,0.05654041,-0.0037120443,-0.020418825,0.066892,-0.08531041,-0.023550332,0.05933291,0.0025857207,0.03449404,0.028907092,0.04691318,0.001081771,-0.07698566,-0.01267749,0.0698803,-0.018874096,0.0006390711,0.012261131,0.031979512,-0.062427662,-0.02900177,0.00012575083,0.056207567,0.05636302,0.03215053,0.016467605,0.043205332,0.008134935,0.081998296,0.060630497,0.06987378,-0.10325814,-0.0051595476,-0.020252492,0.013148847,-0.041054364,-0.043515507,-0.066441864,0.012641324,-0.027793534,-0.07044403,0.0077868053,0.062105387,0.033306096,0.06398902,0.007348556,0.035981674,0.078536116,0.03267774,0.09284081,-0.013790301,-0.007879011,0.032929834,0.05304546,-4.0733385e-33,0.03318802,0.003364185,-0.03049409,0.09068884,0.048036814,0.06846119,0.00895828,0.0026980168,-0.084084034,0.121941775,0.07907523,0.0647703,-0.015798125,0.07521581,0.15484016,-0.02152921,-0.04430327,0.082890496,-0.041240282,-0.051925175,-0.06532817,0.0024268213,0.024422962,-0.0018090822,0.045515083,0.0010406089,0.06511795,-0.048266377,0.07625626,0.0011773411,-0.018138485,-0.0685427,-0.033610642,-0.0010566028,0.048914902,0.026061703,-0.1184263,-0.09272103,0.021818694,0.06287687,-0.010694355,-0.03244432,-0.042294253,-0.026200755,-0.021891775,0.04852495,0.0031541497,0.017095102,0.019232666,-0.06728072,-0.054512255,-0.025897026,-0.078205496,-0.029423023,-0.020114755,-0.020830829,0.057853654,-0.012489259,0.007989972,0.025749654,0.064685225,0.018525003,-0.09556288,-0.029802172,-0.084284306,-0.063907154,0.010741461,0.007567271,0.09554437,-0.07233884,-0.012270274,0.02101207,0.08640893,-0.056508772,0.02919155,0.09365396,0.0062337755,-0.034902073,-0.07511164,0.04123831,0.03663574,0.0071094437,-0.013928174,0.027768092,0.07920716,-0.012741647,-0.0157322,-0.061569694,-0.04906449,0.053685103,-0.066970296,-0.024322813,0.07844731,-0.042263526,0.006126688,1.8038234e-33,0.057806864,-0.036265332,-0.019891618,0.002104371,0.05699729,-0.03665055,-0.053599514,-0.0433632,0.017057275,0.10107663,-0.10432144,0.034633037,0.043888267,-0.0012964968,0.046840336,-0.065058954,0.04087215,0.021065595,0.0075617917,-0.010617315,-0.0032498266,0.081951246,0.022678096,-0.040355355,-0.06790556,0.014008571,-0.10775067,0.012638301,-0.07826216,0.044713754,-0.07871616,-0.015887668,-0.015094299,-0.012062515,-0.042892322,0.09303642,-0.03876757,0.031649668,-0.02978959,0.039847758,-0.005565216,-0.015123351,-0.069148965,0.003663866,0.042099256,0.009806013,-0.12441122,0.033682533,0.03002518,-0.010015101,0.03405171,-0.020738902,-0.07196497,-0.1127239,0.006896536,-0.048867136,-0.03778403,-0.03932326,-0.040655863,-0.0324171,-0.064719126,0.042423517,-0.015836945,0.1380598,-0.043343127,-0.008291699,-0.06177163,-0.037981108,-0.11651406,-0.008569243,-0.05134016,-0.046140112,-0.0004746216,0.076575674,-0.03575454,-0.0075266617,0.04714372,0.034736235,0.08215817,0.025954692,-0.060661897,-0.012658378,0.03085907,-0.02889785,-0.060256794,-0.00037736775,0.011594242,-0.00056576333,0.0046872087,0.052980714,0.05152358,-0.0020879817,-0.03510188,0.043765202,0.069306225,-1.9433642e-08,-0.03681144,-0.0020086395,0.015338283,0.021241892,-0.026990332,-0.15746652,0.11382775,0.02145981,0.04708839,0.05597311,0.024973853,-0.025422635,0.009157652,0.03351975,0.0022409847,0.0065100184,-0.020591922,0.13718782,-0.059428237,0.015525582,0.057364237,-0.014469089,-0.054241557,0.030315863,-0.033546947,-0.015509699,0.012306987,-0.010663314,-0.0013536547,0.077947505,-0.0030841175,0.0048891166,0.01084951,-0.014238832,-0.073440805,-0.107564695,-0.02109287,-0.03786082,-0.01884165,-0.012505301,-0.057239246,-0.044152196,-0.026798002,0.025299065,0.01682632,-0.0064266687,-0.0721909,0.017510599,-0.018281896,-0.027896458,-0.03474347,0.039282892,-0.012088239,-0.029566875,0.049756914,0.013413854,-0.010336292,-0.013629961,0.044846285,0.024282109,0.011450664,-0.04279207,-0.1274219,0.028274646} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.863393+00 2026-01-30 02:01:09.521626+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1490 google ChZDSUhNMG9nS0VNeXd1c1NtbV91bEF3EAE 1 t 1493 Go Karts Mar Menor unknown Great track and experience! great track and experience! 5 2025-06-04 00:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Great track and experience!"} {-0.044365115,0.009161501,0.026632428,0.03823135,-0.034934916,0.056438997,-0.040874876,-0.05714809,-0.057226777,-0.089097366,-0.0131051205,0.04059449,0.0027158742,-0.051864486,-0.005611848,0.07230759,-0.007916926,0.027843826,0.04732883,-0.031440947,-0.038931925,-0.08187404,0.034274984,0.07582455,-0.13587466,0.108831495,-0.03237741,0.04366319,0.0041107885,-0.06616465,-0.07337455,0.04195338,0.014104997,-0.020493811,-0.0008706197,0.019298675,0.02950213,-0.008861187,-0.0029978626,0.0056215785,-0.048829604,0.018174792,0.061335005,-0.013067865,-0.0013670182,0.077463455,0.023378193,-0.08578983,0.022896033,0.04614167,0.024341514,-0.04009691,0.061249234,-0.04015203,-0.08834933,0.06607289,0.0038916238,-0.03999394,-0.0029453107,-0.11841568,0.03252813,-0.015233663,-0.059666652,0.011241584,0.027503366,-0.038041085,-0.07305048,0.07393162,0.01526389,0.0018949484,-0.004789581,0.059234884,0.0027752589,-0.028416524,0.01870496,0.11227243,-0.020626038,0.003129681,-0.07559301,0.01498,0.053854145,-0.046519715,0.0234107,-0.07251255,0.00081527274,-0.1007258,0.037713714,-0.001403069,0.013503093,0.015750661,0.015397052,0.07509601,-0.06978746,-0.065386236,0.037563376,0.010368378,-0.013906789,0.01686634,0.008894934,0.040420275,0.07790615,0.030228296,-0.026513208,0.06254045,-0.043594643,-0.006192236,-0.014737748,0.05853558,0.032562267,-0.043935478,0.10876588,-0.039696153,0.020048188,0.06394574,0.06925727,0.020646213,0.012168235,0.08524608,-0.01787613,-0.01560501,-0.029796388,0.0028265219,-0.0076411986,-0.016256234,-0.022215633,-0.04054522,0.09395832,-3.7737964e-33,-0.013724152,0.020025678,-0.0020714682,-0.00569945,0.072661586,-0.003967638,-0.102857575,-0.04195931,-0.108230904,0.07452803,-0.015459199,0.00094396155,0.0040772776,-0.008616466,0.0054001957,-0.049947828,-0.1123536,-0.008953011,-0.046067875,0.07503713,-0.034694977,0.043387678,-0.0055413856,-0.028182471,0.063730374,0.007281828,0.011834104,-0.030061914,0.05614483,0.0061088325,-0.05695809,0.00018951189,-0.044862833,0.007759945,-0.019701777,0.037169795,-0.07568018,-0.028966146,0.04473663,0.01807505,0.10123768,-0.038026936,-0.010568229,-0.04518087,-0.08228618,0.029751863,-0.0046679447,0.10662487,0.093423694,-0.028796041,-0.079762496,-0.06576895,-0.04002066,-0.01829489,0.06155535,-0.0211268,0.072680905,0.028487425,-0.0075992816,-0.013004947,0.06295348,0.04422045,-0.027270926,-0.1005158,-0.019166049,0.030486291,0.0040568286,-0.052339375,0.025829235,0.020864666,-0.05671586,-0.025542447,0.048744604,-0.054139115,0.08541377,-0.08027685,-0.048674278,-0.008389561,-0.018455734,-0.026557252,-0.045597322,0.033054475,-0.005852255,-0.007012783,0.05910194,-0.0037016661,-0.030530497,-0.058742445,-0.04069105,-0.015123421,-0.0062133786,-0.0075111114,-0.006389314,0.03808037,-0.0066180066,2.0979402e-33,0.07436834,0.10942922,0.13008118,0.011808681,0.049079098,0.069172055,-0.022053922,0.055470634,0.030995589,0.07660818,-0.015788913,0.007792253,-0.029850356,0.022229169,-0.08582335,-0.008477015,0.04007419,0.039416008,0.056530584,-0.10633745,0.0010933616,-0.0068285023,0.0048092427,-0.024254395,-0.042455435,-0.009485247,0.07377558,-0.02448963,0.0320214,-0.061396744,-0.023219608,0.10633315,-0.024511011,-0.09055562,-0.057537574,0.11070074,0.031270616,0.01007006,-0.034893136,-0.002920543,-0.04064564,0.03397906,0.027147228,0.07015875,0.006406377,-0.021336168,0.015970135,0.13409346,-0.07592754,-0.004021915,-0.039893184,-0.048104122,-0.003500056,-0.085436895,-0.021437977,-0.057074122,0.06859881,-0.036402248,-0.01731255,-0.030364186,-0.04136883,0.09497716,-0.04890234,0.012474961,0.07651535,0.00014661647,0.010350993,-0.051531382,-0.080861256,0.07906345,-0.13337912,0.055925976,-0.0689981,0.034313153,-0.022053722,-0.100135274,0.020519817,-0.019209726,0.018679451,0.049432106,-0.029588949,0.008569879,0.02082309,-0.029354947,0.08183877,0.13222718,-0.0674095,-0.03391351,-0.026040051,0.062184732,0.06823887,0.08165227,-0.02927491,0.003049044,-0.07696166,-1.4228723e-08,-0.027854485,0.12983862,-0.028766196,-0.025369415,0.048604567,-0.010810537,0.049340542,-0.013401622,-0.079184145,-0.016484255,0.049844466,-0.031548068,-0.041213587,0.10681898,0.014646427,-0.017461196,-0.016166551,0.16239509,-0.03263339,0.031961296,0.02226952,-0.0063538975,0.040432587,0.004764092,0.040002704,-0.08344956,0.037998166,0.050338514,0.020700822,-0.10249763,0.00783722,0.08022287,0.055302862,0.040413707,0.016426714,-0.0017695318,-0.0031247935,0.07536851,0.044669554,-0.05640341,-0.062418945,-0.023692818,-0.0018985358,-0.053828314,-0.04183557,-0.03087354,-0.0008963432,-0.012982349,-0.02305335,0.00081152626,-0.0011263919,-0.061708894,0.010061894,0.06814853,0.06913868,0.06310486,-0.009421272,0.0153626,-0.037635185,0.031532567,-0.02881248,-0.06278659,0.0114376275,0.038660437} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.257919+00 2026-01-30 02:01:09.530881+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1560 google ChZDSUhNMG9nS0VJQ0FnSURRd3NHek5nEAE 1 t 1563 Go Karts Mar Menor unknown Great morning & safe staff 👌 great morning & safe staff 👌 4 2019-02-01 01:52:39.833374+00 en v5.1 E4.01 {P1.01} V+ I2 CR-N {} {"E4.01": "Great morning & safe staff 👌"} {-0.029724814,0.050606135,0.061596647,0.0011961557,0.039644208,-0.010122489,0.05785238,-0.037513956,0.018419592,0.0005575056,-0.03866567,0.03007229,0.061578024,0.034740306,-0.06541788,0.0024345212,0.019187482,-0.045221128,-0.01785405,0.07066458,-0.085385375,0.033054862,0.08514482,0.056568865,-0.08579188,0.031049076,-0.004001802,0.0023723177,0.040184915,-0.07305425,-0.055641077,-0.0065934164,-0.035230972,-0.037514556,0.011120094,0.07481074,0.084968455,-0.050863873,0.019844154,0.030578658,-0.04824991,-0.052324247,-0.03143869,0.025184833,-0.00031030294,0.04962873,0.016807066,-0.042599585,0.058628555,0.02572604,-0.012539794,-0.02965399,0.026389664,0.02519108,0.009113632,0.04303841,0.010089532,-0.11440636,0.021378065,0.066828184,-0.04354878,0.030612607,0.02376719,-0.013137497,0.050075643,-0.028900975,-0.092167445,0.023317726,-0.006100683,-0.024364227,-0.07766877,-0.013471633,0.09137785,-0.022386685,0.0016828785,0.07277675,0.04854781,-0.024022443,0.059870973,-0.044948637,0.025621582,-0.041517306,0.033872098,0.08111932,-0.06427834,0.023452418,-0.004129283,-0.012196484,0.08780138,-0.021173442,0.07163072,0.12914588,0.015355239,-0.0082022445,-0.00898564,-0.059523195,-0.0023913693,-0.02232836,-0.13564786,0.077489644,0.061365142,0.078816764,0.010446218,0.0032728952,-0.03663719,-0.008138057,-0.053183064,-0.015834318,-0.035730515,-0.042384155,0.04967654,0.010819055,-0.062853,-0.050853252,0.030362701,0.0023750556,-0.032681733,0.034958713,-0.082393974,0.026469696,0.017560983,-0.015188383,-0.016038068,-0.07987263,-0.023365557,0.036961928,0.13118607,-3.728053e-33,0.026375081,0.082958005,0.031436857,0.04556935,0.011804612,-0.003124931,-0.0396312,0.038947355,-0.02615024,-0.042036258,0.056828268,0.05778768,-0.034488954,0.0030999528,-0.110836245,-0.017834343,-0.04196587,0.009932547,-0.016693585,0.03505716,-0.06784439,-0.050623607,-0.016810086,0.062447913,0.05687978,0.026362497,0.005132808,-0.0018736346,0.025473066,0.051966798,-0.026348567,-0.03888061,-0.008186488,-0.008261515,-0.017867003,-0.014417326,-0.09624689,-0.09502032,-0.023923995,-0.047162756,0.006678972,0.006986697,0.12868583,-0.039246444,-0.03470483,0.025758954,-0.028296718,0.060312625,0.06441452,-0.07559218,-0.08867273,-0.00080681604,-0.03571887,0.037095316,-0.021893676,-0.003470344,0.015717693,0.08384158,0.00068514416,-0.0017315251,0.06442418,0.11815259,-0.015521856,-0.04670914,0.021143354,-0.10286256,-0.01294769,-0.06441363,0.08627247,-0.07709673,-0.01846852,0.0036999797,0.12964658,0.028783657,-0.08836719,0.0017645415,0.005947001,-0.012666997,0.07917862,-0.015724977,0.0667936,0.03620454,0.03842069,-0.05330149,0.053109895,-0.0028769376,0.041697096,0.007445193,-0.068992585,0.07818386,-0.09332723,-0.03932143,0.10811549,0.08761533,-0.0985074,3.0188857e-33,0.104842626,0.014193243,-0.12092669,0.014284676,-0.03414314,-0.04868929,-0.007801189,-0.00048010328,-0.048846647,0.08432277,0.01780195,0.02686495,0.008457289,0.03220099,0.027891736,-0.067699775,0.11353185,0.067892365,-0.06500943,-0.008917344,-0.03255338,0.030930573,-0.06957712,0.06317946,-0.0060799047,0.052539233,0.008869398,0.039240196,-0.03516907,-0.07120308,-0.046626564,0.0054061506,-0.019070124,0.09260634,0.00079032383,-0.06823314,0.03652832,-0.071461886,0.010544585,-0.0022921406,0.044294264,0.018962456,0.0070563783,0.03688435,-0.08029047,-0.041201882,-0.025123326,0.013254466,-0.045598373,0.034290925,-0.078736745,-0.08599288,0.0038592953,-0.036812972,0.021520095,-0.02179685,0.056263514,-0.07895208,0.02383513,0.0064493907,-0.080085136,0.05391973,0.03985791,0.080478325,0.06424027,-0.014420757,-0.049748477,-0.0013756264,-0.01880201,-0.042270437,-0.01205249,0.0063149403,-0.0021254062,-0.034829166,-0.03200266,-0.0080985045,0.022402067,-0.116493985,-0.022282831,0.06268586,-0.03412119,-0.01397691,-0.031426847,0.047894236,-0.010767281,-0.03776008,0.13377644,0.0012009718,-0.016084664,-0.013847656,0.009080136,0.039552815,-0.06930627,-0.009659093,0.0196327,-1.6137276e-08,0.02321672,0.005684349,0.04602443,0.015634872,0.07384949,-0.16992256,-0.028937107,-0.034747,-0.03478129,0.09150061,0.032362144,0.01574685,-0.059297975,-0.010622668,0.062174257,-0.010525299,-0.032839842,0.08239207,-0.044453338,-0.09566561,0.041321367,0.049362596,0.009380168,-0.038323667,0.093584746,0.08414815,-0.08701528,0.03371269,-0.04471132,0.06527711,0.04345196,-0.011485463,-0.07961663,0.0056838254,-0.026841797,0.026221817,0.0034461473,0.04283681,0.02443589,-0.0026266626,-0.008580985,-0.08629811,-0.012456602,0.0026461254,-0.0553739,-0.005683449,0.013298925,0.042111866,-0.03354328,-0.027998114,-0.03346017,-0.055699058,0.107463926,0.0639996,-0.03649523,-0.0016123997,0.051407248,-0.032411784,0.034463685,0.076093525,0.036147915,0.021617183,0.011838184,0.005160911} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.595486+00 2026-01-30 02:01:09.793429+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1561 google ChdDSUhNMG9nS0VJQ0FnSURVOXJyMjV3RRAB 1 t 1564 Go Karts Mar Menor unknown Great place for all ages great place for all ages 5 2020-02-01 01:52:39.833374+00 en v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Great place for all ages"} {0.091034874,0.053078283,0.012511004,-0.021474672,-0.080540515,0.024284448,-0.023123067,-0.06352553,-0.01017379,0.022549024,0.051810488,0.039213385,0.020734467,-0.0023678222,0.008648791,-0.028299287,0.06161575,-0.061208747,0.099864855,-0.16138853,-0.019100863,0.076196045,0.08736495,0.021925537,-0.06654406,0.08039966,-0.078245886,0.014084486,0.044651028,0.0143463425,0.021012053,0.016597394,0.0770264,0.015033794,0.021210214,0.0747364,0.039476197,-0.060231764,-0.010812626,0.06422652,-0.048550643,-0.017830359,-0.01952028,-0.06534625,0.006540273,-5.9036527e-05,0.016339326,-0.099031165,0.13697384,0.0077578863,0.08776235,0.001915837,0.04534124,-0.041228436,-0.024022592,0.028254118,-0.11093556,-0.085519865,0.03561413,-0.07596672,0.05080047,0.04830341,-0.042252563,0.016707785,-0.035150442,-0.079543345,-0.0316605,0.12768598,0.052883662,-0.061724868,-0.032873947,0.02275885,0.07202436,0.027683904,0.013272015,-0.03246951,-0.021145908,-0.013537864,0.0072746114,0.003571958,0.027336037,-0.06283711,0.015846537,-0.026435805,-0.0015667748,-0.07515182,0.040633515,-0.025328264,-0.026346201,-0.048264436,0.0025788469,0.07859861,-0.09689902,0.052123047,0.03740823,-0.02714868,0.008793373,-0.039552018,-0.09039043,0.050741173,-0.042937886,0.03695124,0.02578687,-0.0018048004,-0.037855517,0.00623851,0.046166692,0.057704043,-0.016292302,-0.011045312,-0.016438907,0.030071327,0.0027755422,0.047849048,-0.016165437,-0.011111914,0.040576886,-0.029602868,-0.014747945,-0.058599457,0.010499277,0.07359529,-0.037337147,0.0674297,0.020245645,-0.035826065,-0.010804032,-2.3990651e-33,-0.021626657,0.06374182,-0.040204514,0.043844923,0.06668284,0.036927406,-0.0015592857,-0.039798718,-0.09752563,0.03733171,0.041460603,-0.04537871,-0.042707518,-0.043721355,0.062900566,0.06036901,0.008558757,-0.0060887267,-0.049700126,-0.029386789,-0.06405983,0.006275175,-0.032921486,0.051024936,-0.033570338,0.006378407,0.047774903,0.014211227,0.0703917,0.036206845,-0.046033964,-0.078394465,-0.09780961,-0.022168119,0.006480669,-0.024774473,-0.0025842113,0.018162765,-0.010408862,0.04521499,0.01776618,-0.009082529,-0.043422915,0.097071454,0.029736256,0.1143354,0.057163253,0.01616573,0.021747448,0.04628523,-0.066485584,-0.053331953,-0.12552713,0.023947462,-0.025875734,0.038611542,-0.05267871,0.045231234,0.030209497,-0.009799296,0.06471561,0.038521063,-0.058924418,-0.09514344,-0.030272542,-0.019647155,0.073209964,0.045229442,0.005959466,0.07526206,0.0077304877,0.011761499,0.06702447,-0.013231487,-0.010045601,0.022934696,-0.06804481,0.019951543,0.009144604,0.05268608,0.076118276,0.024044808,-0.026370214,0.03714094,0.12660418,-0.11283658,0.019384455,-0.16024947,-0.07935405,-0.042106684,-0.071104445,-0.03963934,0.111275926,-0.053556167,-0.067450136,1.1222698e-33,0.058827486,-0.08840973,0.058357403,0.06574513,-0.05354661,0.003979012,-0.05701542,-0.010879205,0.024048882,0.08811845,-0.049820397,0.034281816,0.06741657,0.05462637,0.0037726026,0.02652435,0.06899258,0.04730712,-0.044746473,-0.031772103,0.0009128381,0.067010604,-0.067395896,0.0021104077,0.016392175,0.031617437,-0.110297866,-0.052826602,-0.07482794,0.037887815,-0.022906678,0.010905923,0.014038265,0.07787124,-0.0044488367,0.027637705,-0.03317802,-0.017218238,-0.0332997,0.015919754,0.08596075,-0.07348113,-0.039891064,0.07211502,0.017944407,0.0013032255,-0.05259964,0.036085106,0.00964647,0.0018160573,-0.026100941,0.041209713,0.013675575,-0.06565831,-0.019456252,0.02464134,-0.013729986,-0.024631819,-0.03627239,-0.043224886,-0.058503322,-0.011011157,-0.06155574,0.07302309,0.033972222,-0.016945945,-0.03810223,0.017287038,-0.10415698,0.042467073,-0.04093289,-0.04348546,-0.10465101,0.025945848,-0.028397745,-0.013473336,0.113177374,0.05339378,-0.024693642,0.082620844,0.04696841,0.01516595,-0.08259116,0.0020192799,-0.006375844,-0.027270261,0.014708619,-0.013721523,-0.04629134,0.04374787,-0.008525181,0.025996033,-0.08718473,-0.04335539,-0.0069305366,-1.5660591e-08,0.02002216,0.0760896,-0.06617985,0.04132376,-0.07758477,-0.016613575,0.065000676,0.025814753,0.029861063,0.08978158,-0.0059921816,0.005436696,0.033175096,-0.021419453,0.0006242816,0.0089899795,0.009425683,-0.03141463,-0.010387928,0.045359153,0.06544625,0.08031475,-0.009922574,0.03001223,-0.07570657,-0.059413493,0.07154644,-0.042848855,-0.061997116,-0.0821471,0.030102795,0.06450556,-0.049129996,-0.003086116,0.014167709,-0.035696838,-0.03794988,-0.0119538875,-0.015198939,-0.04915356,-0.058148906,-0.041679237,-0.026140131,-0.030295402,-0.011183832,0.07565573,0.072167836,0.00895681,-0.03614011,0.07014434,-0.089047275,0.06140038,0.032035448,0.012175682,0.034656312,-0.0007995111,-0.04748202,-0.043663878,0.003042425,0.05027166,0.093880214,-0.01957984,-0.020384388,0.0408258} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.60661+00 2026-01-30 02:01:09.797087+00 22c747a6-b913-4ae4-82bc-14b4195008b6 241 google review_67 1 t 244 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown We have rented car several times in different cities, but so far clickRent experience was the best one. Everything was smooth and clear. Huge thanks to Carlos for super fast and friendly service! And of course a ride from Fran and Antonio was super welcoming. We are looking forward to use clickRent again we have rented car several times in different cities, but so far clickrent experience was the best one. everything was smooth and clear. huge thanks to carlos for super fast and friendly service! and of course a ride from fran and antonio was super welcoming. we are looking forward to use clickrent again 5 2025-01-25 01:27:48.340562+00 en v5.1 J2.01 {} V+ I3 CR-N {} {"J2.01": "We had a fantastic time at this kart track. Booked on line for two us at 1130am and when arrived we ", "P1.01": "Staff in the cafe were very friendly."} {0.02902103,0.0010423033,-0.009465086,0.07907534,-0.03254572,0.0274231,-0.042057343,-0.06364955,-0.061448634,-0.025381904,-0.037313942,-0.0047285245,-0.036057208,-0.031663883,-0.0016791142,-0.05214933,0.042910654,-0.116956346,0.035983175,-0.10267641,-0.06675615,-0.04707481,-0.0136657795,0.035593215,-0.038460612,-0.009512053,0.009086008,0.06638016,0.03566132,-0.08071638,-0.11965809,0.038894553,0.049941674,0.02870078,-0.032562446,0.028391764,0.04276965,-0.047887757,0.024524927,-0.0048576104,0.02617281,-0.018596916,-0.01093617,0.05941452,0.051318087,0.009594853,-0.033509724,-0.055871535,0.01647398,0.054092955,0.029256372,-0.031559367,0.09622857,-0.058808383,-0.0075552706,0.034515105,-0.05285942,0.01059464,0.14073355,0.028855834,0.040775448,-0.03633783,-0.07127806,0.05508363,-0.017205736,-0.09379526,-0.14894706,0.049541093,0.06562842,-0.061635863,0.02277169,-0.014432968,0.029980332,-0.011410675,0.020167904,0.01162332,-0.00122795,-0.0067738844,-0.05060779,0.008535778,0.027658558,-0.10215248,0.023907488,-7.565372e-06,0.010684993,-0.080023274,0.0667184,0.06498753,0.017291572,-0.059299596,0.031598795,0.0815812,-0.046143603,-0.029589072,0.040848624,0.0003587209,-0.02934014,0.07930652,0.034824908,0.041852966,0.032571707,0.112043135,0.023194833,0.056104228,-0.043898504,-0.009223654,-0.09467411,0.076379806,0.04541887,-0.022512522,0.02293694,0.024602607,0.002178057,0.0020880196,0.0058765137,0.022026526,-0.035995968,0.034710057,0.0062775854,0.03705862,0.01504931,0.04600753,-0.027708292,-0.01166067,-0.06353081,0.036080018,0.10495496,3.1323375e-34,-0.06893417,0.022235753,-0.011425059,-0.047899924,0.12581071,-0.11792403,-0.12792587,-0.07758628,-0.0432042,0.08787809,0.055162147,-0.013171366,0.01981414,-0.096320555,-0.00441347,-0.002989808,0.0064079766,-0.0011373358,-0.08018609,0.0056719864,-0.009864621,-0.03864016,-0.05601797,0.010857508,0.029273326,0.020286033,0.059333093,-0.010492788,0.111495584,0.0042005037,-0.02475712,-0.018877365,-0.028648159,0.05945198,-0.04048277,-0.0076829772,-0.036980532,-0.058230594,-0.030544147,-0.011048732,0.0074891066,-0.03999149,0.013233023,-0.009179783,-0.065666504,0.02557261,0.019547181,0.011496387,0.04812669,0.08234797,-0.13067493,0.01588561,-0.035370823,0.04512907,0.044783626,-0.013381264,0.085708156,-0.03641544,-0.003932502,-0.03662517,0.080718406,0.0052321535,0.01606372,-0.0674054,-0.018553022,-0.06888592,-0.029287504,-0.08117886,0.066774,-0.004914079,-0.036071047,0.04231725,0.008839215,-0.073603496,0.08076212,0.019693125,-0.04716836,0.036356468,-0.04258007,0.06232376,0.013705527,0.041820195,0.0087883985,0.03485983,0.07825551,0.0010084425,-0.01885767,-0.083362415,-0.025886957,0.06148733,-0.08221487,0.061515164,-0.0037779121,0.08088053,0.020298451,-1.8468667e-33,0.06805562,0.066971995,0.06658547,0.042004757,-0.01184356,0.026126843,0.02710754,-0.017213132,0.0530264,0.10770993,-0.060514357,0.0499779,0.038525935,0.0029110825,-0.04103739,-0.006107419,0.111897364,0.057230275,0.040822983,-0.08495023,0.022190671,-0.010106696,-0.04213461,-0.023009604,0.012060152,0.10136261,0.05292532,-0.048058413,-0.14523542,-0.03142709,-0.07059479,-0.052172914,-0.011053557,-0.013687773,-0.018253319,0.07555585,0.052584752,0.114643775,-0.029556295,0.056626726,0.021144236,0.019316483,-0.046480376,0.019242844,-0.049896114,-0.038826887,0.08232479,-0.0020112805,-0.023878291,-0.024553088,0.04101532,0.073348746,-0.03737126,-0.0026685293,-0.011859696,0.037572388,0.044827495,-0.046203937,0.011289418,-0.038821656,-0.013742758,-0.021001514,-0.008091474,0.0063846,0.06574102,-0.018804288,0.042205688,-0.025853531,-0.036144204,0.006920743,-0.08731592,0.047927752,-0.022248834,0.041054633,-0.024861027,0.026601495,0.041691672,-0.030972304,-0.05536483,0.026344985,0.03151854,-0.012835129,0.0020507884,0.01787937,0.022199614,0.06693997,0.027640726,-0.010953379,0.016876604,0.019868657,0.091591805,0.09300126,-0.034089852,-0.054083556,-0.050369292,-3.626483e-08,-0.045223318,0.026925215,-0.07423992,-0.017243719,0.069788426,-0.06479423,0.052581668,0.010506216,-0.06002854,0.013333044,-0.10284135,-0.0069827917,-0.028838826,0.02373253,0.09251546,-0.021761738,-0.0065781754,0.03665072,-0.0491312,0.020839568,0.021044256,0.03726286,0.013265674,-0.015528061,-0.03721688,-0.028013328,0.008106312,0.06082123,0.046326153,-0.054873776,-0.031837776,0.05808132,-0.08744242,0.007124123,-0.007141371,-0.09917434,-0.07371902,0.036525663,0.009330643,0.015183899,-0.086086445,-0.0469162,-0.09458526,0.024183352,-0.012419511,0.06459461,-0.07636841,0.008450288,-0.079922825,-0.03330496,-0.11159358,-0.06220935,0.031825524,0.025482116,0.06317813,-0.00989538,0.005700124,-0.069991,1.6759737e-05,0.030631391,-0.05811441,-0.06223378,-0.10491355,0.004043725} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.121076+00 2026-01-25 01:27:50.206277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 242 google review_68 1 t 245 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown I had a smooth rent, great customer service, and very nice affordable cars i had a smooth rent, great customer service, and very nice affordable cars 5 2025-09-27 01:27:48.340569+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Great session. Very enjoyable despite the result! 😁😁"} {-0.03547409,0.094507545,0.015067695,-0.02712626,-0.050124303,0.0155210085,0.0949077,-0.010941018,-0.0077406336,-0.0149851395,0.011405787,0.02398819,0.046955336,0.053620163,-0.027323747,0.035259433,-0.05626001,-0.052180357,0.07640988,0.017187688,-0.011840766,-0.0024285375,0.030422349,0.005971352,-0.07660474,6.9686635e-06,-0.056847606,-0.012147314,0.09676991,-0.049879987,-0.06937141,0.077338606,-0.03378286,-0.044215143,0.018590737,0.0098038595,-0.017461607,-0.060934983,0.0150548415,-0.023160549,-0.012259849,0.0115802,0.04915678,0.011275911,0.013754111,0.04011356,-0.014511209,-0.041540094,0.015152611,0.008104883,0.00077828404,0.024419904,0.056807443,0.025985923,-0.08141474,0.064102575,-0.016583657,-0.06270387,-0.093331724,-0.0321977,-0.051300205,0.01853244,-0.059621044,0.04193704,0.035955966,-0.06584747,-0.019402219,-0.09202309,0.047090642,0.06440774,-0.024962109,-0.00673702,-0.0069488254,-0.061770216,0.029760465,-0.014268503,-0.0075246054,-0.0418298,-0.024740297,0.042066637,0.017098926,-0.020456074,0.026620518,0.01361295,-0.025650308,-0.1344067,-0.035577472,-0.0042394847,0.02594809,-0.019189987,0.016620673,0.14556475,-0.050125424,0.03237409,-0.00696827,0.0028149989,0.02923666,0.025878228,-0.0045923074,0.05298493,0.016134555,0.12467967,-0.07085618,-0.025027135,-0.09935621,0.049126364,-0.011561495,0.014683183,0.018471245,-0.033432946,0.019459333,0.00703399,0.03271665,-0.0026987493,0.016604709,0.106976986,0.033142116,0.038043074,-0.06878366,0.07801707,0.04383955,-0.0062509244,0.0028760673,-0.007951409,0.020780526,-0.035955254,0.12207054,-4.1666845e-33,-0.017176583,-0.058550965,-0.01590506,0.07087064,0.0061495192,0.1153747,-0.078466676,-0.0033978058,-0.119224,-0.02602651,-0.037468042,0.07342469,0.03935179,-0.029409926,-0.107867084,-0.05502076,-0.084651574,0.0052338643,0.012192694,0.059565194,-0.0057700463,-0.002008523,0.0012480859,0.066593856,-0.009295621,0.059631046,0.014939131,-0.05542864,0.038469464,0.027444497,-0.014363499,-0.007852546,-0.08242047,0.04011761,0.036667384,0.02646244,-0.02808661,-0.0012726581,-0.0109862285,0.04231701,0.0020566469,0.01900718,0.017663456,-0.053269118,-0.10099773,-0.056575306,-0.054223437,0.013399294,0.028409667,-0.053781204,-0.13049468,0.041968454,-0.02550214,0.066726014,0.0072176815,-0.010836276,-0.048134726,0.044531487,-0.037244037,0.009535574,0.07886343,0.05923412,-0.06379137,-0.108694434,-0.03776977,-0.035295356,-0.018939883,-0.03898674,0.02238388,-0.083886065,-0.043325406,0.05678367,0.05460957,-0.040793527,0.056857318,-0.007755204,-0.05168169,0.020053102,0.041964885,0.0052584587,0.08869238,-0.010013973,-0.050445218,-0.03437485,-0.0026458367,0.024713874,-0.018546833,-0.17512724,-0.011335374,0.05252203,-0.06550065,-0.011420065,0.13870223,0.0712367,0.020123,1.6769764e-33,0.05603293,0.04449594,-0.051193334,-0.028891902,0.0067557576,-0.0003425089,0.0032898225,-0.0007610629,-0.086346544,0.00970296,0.06686956,0.014841925,-0.024252158,-0.010020893,-0.14356588,-0.042528097,0.028634256,-0.0033679379,-0.045795925,0.0119953565,0.04303688,0.08045581,-0.027736979,-0.059864562,-0.039696325,0.036523968,0.06334363,0.013318172,0.04536929,-0.023453029,0.037154835,0.008173621,-0.070304185,-0.011264784,0.031235538,0.019523192,0.032560244,-0.022016414,-0.03562465,0.024556722,0.019621197,-0.021538677,-0.04828389,0.064031854,0.016402338,-0.015107574,-0.017118853,-0.030132888,-0.08217525,-0.011534538,0.0373963,-0.020537613,-0.07203953,-0.10277349,0.022610856,-0.07638749,0.035250157,-0.026059624,-0.0053418293,-0.03354104,-0.09767597,0.040170632,-0.0029525983,0.06211409,0.098606475,-0.046677362,0.026601145,0.05948865,0.03072075,0.034980167,-0.079548955,0.044086676,-0.0060892836,0.06842162,0.1436216,0.009271449,-0.012604339,-0.1033224,0.03813133,0.06302737,-0.08907892,0.034939848,-0.010323791,-0.057460878,0.04049165,0.022215918,0.042334456,0.0044009797,-0.07736752,0.033516694,0.03412063,0.04506914,-0.015656192,-0.027096113,0.13128959,-1.9104107e-08,-0.012860136,0.009008942,-0.0388192,0.04505267,0.034166206,-0.08348336,-0.0690944,-0.0011894528,-0.07452883,0.0045578997,0.058427114,-0.0026371318,-0.013818286,0.06377841,0.011380209,0.012337716,0.058922287,0.15420759,-0.008009148,-0.1084023,0.0019953991,0.0061246892,-0.0794533,0.021303438,-0.038207125,0.042226832,0.0085654585,0.06888086,-0.08597704,-0.09745551,0.03454692,0.038124897,-0.07838059,0.035887875,-0.029017847,0.029667487,0.005990107,0.02163687,0.054349866,-0.0041602203,-0.05155881,-0.05844894,0.031588472,0.038503032,0.03274417,0.020760007,-0.00024063849,0.089669,0.029090704,-0.011750714,0.003578607,-0.02203355,-0.018265402,0.02728316,0.054330368,0.01437991,0.031167572,0.009978793,-0.025188645,0.0597262,0.050643172,0.06344974,-0.11569739,0.024796257} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.164278+00 2026-01-25 01:27:50.210596+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1394 google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE 1 t 1397 Go Karts Mar Menor unknown -1 star: On our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), but we (400cc carts) only got the standard 10 min. This meant that we didn't get the two extra rounds, without the other carts, that we paid for.\n\n-2 stars: La jefa had absolutely no understanding for our reasoning and complaints. After shelling out 180€ in total for two rounds (2 rounds x 3 people x 400cc), we felt a little cheated. It would cost them so little, next to nothing, to give us a couple of extra rounds to set things right.\n\n+1 star: Because the 400cc carts are INSANE!\n\nWould easily have given 5 stars if the boss had been more forthcoming and set things straight. Being service minded is more important in order to earn money (in the future), than saving scraps in the moment. Will never spend money here again.\n\nSome good aspects:\n- Most of the employees are helpful and service minded.\n- The track is good.\n- Times are shown on a big screen visible for the drivers.\n\nTips for improvement:\n1) Always let the 400cc start first\n2) Take the time on the two extra laps for 400cc. These two rounds are the most important to time since this is where one can excel.\n3) Let the 400cc have two extra minutes (as it actually says) instead of two extra rounds.\n4) Be more service minded. -1 star: on our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), but we (400cc carts) only got the standard 10 min. this meant that we didn't get the two extra rounds, without the other carts, that we paid for. -2 stars: la jefa had absolutely no understanding for our reasoning and complaints. after shelling out 180€ in total for two rounds (2 rounds x 3 people x 400cc), we felt a little cheated. it would cost them so little, next to nothing, to give us a couple of extra rounds to set things right. +1 star: because the 400cc carts are insane! would easily have given 5 stars if the boss had been more forthcoming and set things straight. being service minded is more important in order to earn money (in the future), than saving scraps in the moment. will never spend money here again. some good aspects: - most of the employees are helpful and service minded. - the track is good. - times are shown on a big screen visible for the drivers. tips for improvement: 1) always let the 400cc start first 2) take the time on the two extra laps for 400cc. these two rounds are the most important to time since this is where one can excel. 3) let the 400cc have two extra minutes (as it actually says) instead of two extra rounds. 4) be more service minded. 3 2026-01-30 01:52:39.833374+00 en v5.1 R1.02 {O3.03,V1.02} V- I3 CR-N {} {"J2.01": "Tips for improvement: 1) Always let the 400cc start first 2) Take the time on the two extra laps for", "O1.02": "+1 star: Because the 400cc carts are INSANE!", "P1.01": "Some good aspects: - Most of the employees are helpful and service minded. - The track is good. - Ti", "R1.02": "-1 star: On our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), bu", "R4.04": "Would easily have given 5 stars if the boss had been more forthcoming and set things straight. Being", "V1.03": "-2 stars: La jefa had absolutely no understanding for our reasoning and complaints. After shelling o"} {0.009722565,0.075476915,-0.00804773,0.017153762,0.009291555,0.012167309,-0.029125473,0.07128998,-0.068831265,-0.012845301,-0.02614407,-0.0118719665,0.019237872,0.0042576105,-0.022189133,-0.05355186,0.06607334,-0.038437217,-0.04745666,-0.029901331,-0.020866038,-0.12031278,-0.025861112,0.052555267,-0.004846453,0.02823347,-0.08362963,0.053794414,-0.038610388,-0.07461079,-0.022796772,0.09002498,0.044488557,-0.047003776,-0.0067214826,-0.025954476,0.024995485,-0.026857486,-0.006258793,-0.108202256,0.025512839,-0.032077294,-0.013399821,0.036325518,0.0046771145,-0.013139162,0.0070790024,0.015113851,-0.003238919,0.020274531,0.03525038,-0.04881595,0.056889288,-0.09785699,-0.03966977,-0.033741936,0.076476984,-0.0027654069,0.007276732,-0.014428048,-0.0027118158,-0.07712712,-0.027054656,-0.0037575255,0.022633554,-0.078002855,-0.044592258,-0.08655997,-0.10177524,0.13058124,0.039232988,-0.013946396,-0.0043417523,-0.0492887,0.06524515,0.014068285,-0.015761482,-0.022405902,0.008884104,0.007686068,0.00070365035,-0.07974101,0.002156327,-0.034857612,-0.048428494,-0.11558572,0.066513315,0.0011972749,0.074047655,-0.06297301,-0.006932828,0.04043932,-0.020634662,-0.023860818,-0.022033203,0.07779713,-0.00045531426,0.08466996,0.05944698,0.052710086,0.07355769,0.059290003,0.022221014,-0.073385455,-0.0025526127,0.016441971,0.027235858,0.044056553,-0.033327684,-0.049800448,0.029828126,0.041292094,0.054441825,-0.04683722,-0.080739856,0.08496804,-0.051551726,0.005783618,-0.02207195,0.011237731,0.052424055,0.03074959,0.016175909,0.00029787765,-0.0032775751,-0.0044713137,0.07671257,5.3823006e-33,-0.04559777,0.0101769315,-0.0005641116,0.0017914437,0.069802284,0.028652893,0.03136951,-0.0042526037,0.011076664,0.012202097,0.006714649,0.043080945,0.06671146,-0.030401492,-0.0164436,-0.050484974,0.016540665,-0.008910899,-0.007649066,-0.031790882,0.03706002,-0.0822833,0.0030650042,-0.027200293,0.06874537,0.11703653,0.035487093,-0.025715597,0.04712891,0.047827087,0.017271692,0.056504328,-0.028123772,0.059959244,-0.037381656,-0.0066277515,0.011848987,0.002057332,0.01277611,-0.05979779,-0.052633576,0.024842098,-0.041214284,-0.079766415,-0.0901043,0.032480452,0.0156035265,0.00456589,-0.04388217,0.102537155,-0.04904101,0.0011991818,0.03587177,0.07220448,0.00190647,-0.06368197,0.06485322,-0.020160258,-0.08503041,-0.0017774911,0.054276623,0.04952624,-0.03983733,0.0008066199,-0.09485427,0.023202488,-0.019884003,0.035935197,0.043414757,0.051429514,-0.025662668,0.04914795,0.035552822,-0.029860588,0.041988496,0.032593466,0.088245,0.06801646,0.007000337,-0.07124355,-0.05768337,0.015773788,-0.017817574,-0.09285965,0.021997672,0.0023802787,-0.020542242,0.029249424,-0.028291985,0.0055044196,-0.035759427,-0.02815276,0.04876049,0.08740873,-0.034644675,-5.57271e-33,0.03926956,0.08416088,0.09876257,0.019153912,0.08676709,0.033417292,0.029698065,-0.119719826,0.025278956,0.009737589,-0.11901384,0.04613164,0.0065390347,0.0136579955,0.020704092,-0.072565295,0.07541762,-0.07242941,0.0055053122,-0.075935796,0.07562218,0.08819981,-0.01951846,0.07068777,-0.016900972,0.019050414,-0.070152305,-0.10429427,-0.02411339,0.031288713,-0.029620936,-0.065192886,-0.00034417651,0.045511436,0.0130829895,-0.011713495,0.002247365,0.13485506,-0.042481195,0.07615598,0.01536189,-0.01871266,-0.12166578,0.004944092,0.040479805,-0.044174816,0.028787108,-0.06447458,-0.02017388,0.05556313,-0.0034041977,-0.06394711,-0.13475971,0.039144695,-0.049501132,-0.0010086101,0.02384012,-0.05402683,-0.04431546,0.013499636,-0.027744904,0.076727405,-0.02756432,0.034759153,0.005411126,-0.017590705,-0.027084015,-0.059921127,0.050264608,-0.025164982,-0.09198583,0.05112654,-0.03344255,0.06889268,0.03707536,0.11227691,-0.03211802,-0.020029718,0.07280821,0.02756303,-0.08432195,-0.010389679,0.07644616,0.042781737,0.016748872,0.09061954,-0.038123693,-0.07521789,0.0395863,-0.029198183,0.01732871,0.07487202,0.064874895,0.0627972,0.04991428,-5.975341e-08,-0.02138621,0.038643524,-0.05898678,0.10851499,0.0044445354,-0.1267389,-0.011637801,0.09006972,-0.0394206,0.051543765,0.08917876,-0.018789923,0.024733659,-0.016375115,-0.01110778,-0.035609882,-0.024381917,0.035810675,-0.06556512,0.06117651,-0.02000593,0.0030692776,-0.0058580195,-0.044430632,-0.07020527,-0.0699873,-0.018809848,0.099749245,0.01628522,-0.023618484,-0.039734427,-0.0036652915,-0.048293356,-0.00157652,0.020792019,-0.08746023,-0.02985247,0.05139881,0.0002797486,0.10873036,-0.017043084,-0.018724924,-0.031971227,-0.012328162,-0.009774796,0.010755631,-0.15472949,0.011646517,-0.0242568,-0.06754763,-0.013005857,-0.014116471,-0.014416401,0.11767716,0.07829866,-0.020886166,-0.04199413,-0.01383705,-0.022142166,0.03243141,-0.03800208,-0.078581795,-0.04487357,-0.023405999} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.978345+00 2026-01-30 02:01:09.217386+00 22c747a6-b913-4ae4-82bc-14b4195008b6 238 google review_64 1 t 241 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Honestly, astounded at how amazing the service from these guys has been - especially considering the amazing price! … honestly, astounded at how amazing the service from these guys has been - especially considering the amazing price! … 5 2025-01-25 01:27:48.340555+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Great experience and track,", "P1.01": "Staff really friendly and helpful.", "V4.03": "Loved our visit and will be back."} {-0.0014585626,-0.008329654,0.07846528,0.013536785,-0.026243253,0.013739174,-0.023868797,-0.08002775,-0.08659772,-0.03865387,0.022505376,0.01859343,0.003573321,0.016263131,-0.06180058,-0.0035470356,0.030416038,-0.052294374,0.013420907,-0.05491109,-0.042942606,-0.026515447,0.029189613,0.07201744,-0.10003551,0.04378966,-0.055674143,0.04087285,-0.0029773621,-0.045441084,-0.050366364,0.017474713,-0.029371008,-0.0011294925,0.034474034,0.11196492,0.047598377,-0.098233126,-0.013275482,-0.0020004236,-0.06067864,-0.008506873,0.055014633,0.008708364,0.01944699,-0.0032805924,0.011779568,-0.03379887,0.066714704,0.054209378,0.06462217,-0.054865573,0.07558239,-0.059400506,-0.05688803,0.099038325,0.0018647029,-0.050331306,-0.040761095,-0.0780038,0.016988514,-0.041495055,-0.05733567,0.042691182,-0.06041956,-0.06633609,-0.117583364,-0.019707749,0.089381,-0.111175045,-0.04069397,0.0060154917,0.10467317,0.011087486,0.010837384,0.06422966,-0.0016209533,-0.000263656,-0.0046805274,-0.059771538,0.036750723,-0.060135935,0.009249685,0.05489947,-0.0076222993,-0.12324621,0.009822264,-0.0071118036,-0.007907862,-0.009270788,0.13317549,0.12424326,-0.03525864,-0.07853334,-0.045720004,-0.014619432,-0.035194304,0.065957196,-0.007916673,0.04255728,0.048536427,0.10267574,0.024577005,0.008899994,-0.055721126,0.03321069,-0.014235436,0.056020353,0.01840791,-0.007973558,0.018558657,0.016177252,-0.022141943,0.014717789,0.032998063,0.052333754,-0.05452747,0.026185999,-0.027207695,-0.02419393,0.0029174038,0.049951002,0.0017581907,-0.030170174,-0.005642878,0.037245527,0.13190334,-3.1443607e-33,0.02364995,0.109521575,0.009550038,-0.02026284,0.037232667,0.043527212,-0.10848602,-0.022102403,-0.06755374,0.00884516,0.031701338,0.066748485,0.054843422,-0.043697715,-0.05774464,-0.05033859,-0.08120187,0.038265795,-0.065187916,0.048783667,-0.03302288,-0.045416486,-0.025548832,0.038833972,0.10615046,-0.008718587,0.003330774,0.031982854,0.083876446,0.020507189,-0.04119404,-0.004927262,-0.0052657155,-0.061438523,-0.0031604625,0.028595135,-0.10139272,-0.10910249,-0.0021860644,-0.010630248,0.032373067,0.007334955,0.024559965,-0.0018601392,-0.056540463,-0.016426414,0.06754613,0.034302868,0.05114591,-0.024527028,-0.08607478,-0.044738717,-0.07820088,0.028172549,0.015794432,0.012334249,0.011392895,0.046551283,0.02397814,-0.055910695,0.13703468,0.06827608,-0.016916733,-0.082323104,0.008830391,-0.124975175,-0.006445552,-0.0057991887,0.08064064,-0.03444856,0.0032925257,0.060746808,0.05523517,-0.007143469,0.017803067,0.04999548,-0.061290637,-0.00096956355,0.035699937,0.016841648,-0.05804765,-0.0016355937,-0.0025272344,0.034537878,0.09354102,0.012308739,0.026949171,-0.10796563,-0.09918722,0.032888487,0.008132037,0.035972625,0.037414487,0.04934852,-0.017526504,1.1835006e-33,0.038336657,0.062471848,0.1036862,-0.052177418,-0.021783466,-0.0073899617,-0.0364116,0.10326672,0.018173976,0.08459646,-0.044408422,0.06270751,0.010348245,0.040113818,-0.09726248,-0.016600017,0.04819087,0.008223843,0.006224176,-0.08818407,0.0142509295,0.105950065,-0.06380856,-0.021226626,-0.015459572,0.045875322,0.021735528,-0.03247077,-0.032435466,-0.079376735,-0.021152513,-0.007273172,-0.0094011305,0.02637173,0.026237788,0.044270243,0.073819496,0.017637994,-0.053412337,0.04524373,-0.004146562,0.012569292,0.008044254,-0.0068046004,-0.011693029,-0.048648626,-0.002988717,0.04505615,-0.10612483,-0.038591366,-0.047943253,-0.016866274,-0.030053454,-0.046446186,0.0059238286,0.018566912,0.06520112,-0.07269159,-0.031489793,-0.06939272,-0.09619286,0.034776304,0.008598821,0.08746829,0.0917959,-0.067880474,0.03281211,-0.022986557,-0.08358941,0.013631103,-0.06765472,0.022183599,-0.038240004,0.03256006,0.015755843,-0.049685564,0.086640246,-0.12186871,-0.031530198,0.04013358,0.01325611,0.01641537,0.012945712,-0.05522814,0.07204398,0.054839607,-0.018916612,-0.034479387,0.005471436,0.06053738,0.030868253,0.05231349,-0.059236072,-0.07644626,-0.03488979,-1.9934502e-08,-0.017256662,0.09245406,-0.017738273,0.026196135,0.030886887,-0.11302314,0.04968344,0.06856707,-0.039761204,0.011577368,-0.027382866,-0.0118612405,-0.08235542,0.043665443,0.10959293,-0.01865344,0.060794566,0.1196123,-0.031931754,-0.016848754,-0.015759777,0.052957762,-0.029865488,0.06175343,-0.0060376334,0.030271657,0.009459504,0.005692574,0.0009023223,-0.031918935,-0.026132831,0.051630702,0.017297516,-0.007320071,-0.008669223,-0.05058143,-0.0506064,-0.055969067,0.026254516,0.003155454,-0.041339334,0.013051931,-0.021198267,0.020217933,0.0026867257,-0.011161856,0.024307532,0.0028139364,-0.032599326,-0.04808663,-0.0759676,-0.06152758,0.028993532,0.052982286,0.0050437595,0.039672703,-0.014578678,-0.06501733,0.009626696,0.071570925,0.0032760825,-0.029367132,-0.06559715,0.04071096} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.527753+00 2026-01-25 01:27:50.189868+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1656 google ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE 1 t 1659 Go Karts Mar Menor unknown Nos a gustado mucho el sitio. Era la primera vez . Mi hijo de 8 se montó por primera vez y salió super contento . El trato muy bueno, simpáticas las dos mujeres . Y los chicos de pista que ponen los cascos y te asignan un karts también.\nTe dan gorritos de papel para ponerte con el casco. ( Por higiene) Y después los desinfectan entre carrera y carrera.\nNos a encantado , volveremos nos a gustado mucho el sitio. era la primera vez . mi hijo de 8 se montó por primera vez y salió super contento . el trato muy bueno, simpáticas las dos mujeres . y los chicos de pista que ponen los cascos y te asignan un karts también. te dan gorritos de papel para ponerte con el casco. ( por higiene) y después los desinfectan entre carrera y carrera. nos a encantado , volveremos 4 2025-01-30 01:52:39.833374+00 es v5.1 O4.05 {} V+ I3 CR-N {} {"E4.03": "Te dan gorritos de papel para ponerte con el casco. ( Por higiene) Y después los desinfectan entre c", "O4.05": "Nos a gustado mucho el sitio. Era la primera vez . Mi hijo de 8 se montó por primera vez y salió sup", "P1.01": "El trato muy bueno, simpáticas las dos mujeres . Y los chicos de pista que ponen los cascos y te as", "V4.03": "Nos a encantado , volveremos"} {0.02177901,0.034339067,0.061015315,-0.04526384,-0.10431019,-0.006190771,0.03662991,0.09284774,0.017810939,0.007927986,0.05372269,0.050998192,-0.035691995,-0.019779893,0.042062756,-0.0053846044,-0.01277897,0.06717128,-0.020500379,0.053557195,0.10252922,-0.03993083,-0.067032665,0.1311233,-0.079123266,-0.025991587,0.049060386,0.029841525,-0.103091836,-0.11108507,-0.036578484,0.061888494,0.1025543,-0.013722782,-0.0010646959,0.0020176258,0.059460234,-0.09569798,-0.031028913,0.032317933,-0.04517613,-0.043598447,-0.0024835025,0.0029155456,0.0074809133,-0.10855627,0.04603186,0.021207327,0.07362393,-0.020820225,-0.11514562,-0.032646988,-0.016364135,0.02036221,-0.055924043,0.0115208905,-0.061689448,-0.035384953,0.074073724,0.023653472,-0.01937721,0.044481583,-0.005750929,0.04553936,-0.00021450948,-0.08885353,0.02641296,-0.03630322,-0.107644916,0.105125494,0.07841509,-0.04027753,-0.0019401178,0.03970369,-0.055904884,0.044065367,0.00019413591,-0.05655669,-0.015313714,-0.049951117,0.06681774,-0.00083671743,0.043500252,-0.049498998,-0.06632219,-0.034151163,-0.057356637,0.03684673,-0.007334537,-0.03876296,0.0031742882,0.09601622,-0.034594897,-0.017196776,-0.04366548,0.03148406,-0.014122976,-0.00606399,0.037177198,0.009086255,0.15461221,0.023476826,0.056930847,0.051357094,-0.0052161645,0.03491713,0.049763817,-0.07363464,-0.018507639,-0.03790934,-0.061212678,0.015408957,-0.03740253,-0.02649962,-0.098297514,0.024683014,0.0037099752,-0.024553576,-0.038017035,-0.046183083,-0.0065457853,0.014647693,-0.02856425,-0.04649567,-0.018164737,-0.0610827,0.04654099,1.4914155e-32,-0.004773082,-0.03729056,0.011567631,0.042269196,0.020697115,-0.010326567,0.013395454,-0.052512113,-0.12971082,-0.008563159,-0.057610035,0.030267,-0.014262239,0.0068650898,0.06340226,0.04791528,-0.0233225,-0.042113792,0.025012594,-0.00027881836,-0.08374752,-0.048609592,-0.014536476,0.018103095,-0.06703345,0.085581906,-0.0005624024,-0.09022498,-0.062960684,0.038153328,-0.003771279,0.02465104,0.019147169,-0.015587937,-0.039068982,-0.04325667,0.049582917,0.06942761,-0.0056592026,-0.046301175,-0.0064700698,0.027344896,0.011874289,0.041704755,-0.007910555,0.029047884,0.009656831,0.0008047734,0.049006827,0.031750657,-0.03178999,-0.08570674,-0.029784149,-0.005893544,0.0059370985,-0.005138469,-0.04823649,0.04037346,0.00745545,-0.0034022543,0.0976493,0.028015641,0.023874441,-0.054925527,-0.04518304,0.01903384,0.0043195905,0.022520663,0.12932068,0.05298403,-0.005277949,-0.017529782,-0.081093185,0.02472515,0.040115435,0.022278061,-0.0023222992,-0.0004355187,0.020061756,0.03380842,-0.025316652,-0.027391884,-0.009984063,0.07728899,0.07025109,0.08595037,0.0101656895,-0.00020048815,-0.03412272,0.09737642,0.0014913077,0.05420603,0.0820686,-0.049943708,0.015431383,-1.4385164e-32,0.0065625748,0.07024312,0.010370883,0.035660047,-0.032899264,-0.04727628,-0.036716226,0.010553122,-0.03616725,-0.05474109,-0.081309594,-0.12528285,0.09506459,-0.046080153,-0.04088782,0.07127076,0.015570146,-0.09889859,-0.09502579,-0.083210595,-0.026882002,0.025245601,-0.00019211568,0.030549098,-0.016515696,-0.06904571,-0.009570617,0.040392764,-0.09526429,0.04110079,0.07652359,-0.0142515665,0.015909726,0.05952487,-0.037336852,0.005710759,0.015262363,0.0012362484,0.029952386,-0.0070093097,-0.042743698,-0.008930499,-0.026598595,-0.019529032,-0.0060470593,0.05005224,0.058464088,-0.15000156,-0.02352167,-0.010478827,0.046583142,-0.028610187,-0.0691518,-0.030160604,0.028235594,-0.012929009,-0.030445177,-0.094574615,-0.0785577,-0.06726762,0.0482527,0.05605094,-0.08757015,-0.050659493,0.09383038,0.036585856,-0.033361696,0.0028222408,-0.055730335,0.00035341235,0.049721077,-0.036162414,-0.11119173,0.02719817,-0.039068356,-0.017071515,-0.083572224,0.031250212,0.024494711,0.058090672,-0.039590046,-0.047540218,-0.011795847,-0.026081985,0.03558267,0.03740324,-0.012493821,0.029129704,0.02890001,0.062033836,0.06829089,0.022594268,-0.06191289,-0.0625365,-0.03568329,-5.4680985e-08,0.047308486,-0.10500559,-0.049830217,0.008458832,-0.0020209544,0.02466302,-0.007273247,0.09836239,0.056382585,0.11014753,-0.01618758,0.019599063,-0.018299362,0.024291467,0.010465556,0.08484584,0.1125206,0.075202726,-0.017024904,-0.042526357,0.07258686,-0.0031571917,-0.007926992,0.038877852,0.002273273,0.019204604,-0.035516813,0.0037285886,0.007837077,-0.040416893,0.034448605,0.010011865,-0.07150708,-0.052129127,-0.009092244,-0.050490044,0.006301838,0.00033335335,-0.045179237,-0.031779047,0.06527783,-0.036326867,-0.05660565,0.004087773,-0.07633619,-0.075380504,-0.0039553666,-0.0023763906,0.03735062,0.03091032,-0.06591212,-0.04471318,0.09069478,8.57807e-06,0.045817573,-0.035592727,0.07297929,0.038516022,-0.008953473,0.00555907,0.12975237,0.090199515,0.036134627,-0.084696546} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:55.125817+00 2026-01-30 02:01:10.202903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1889 google ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE 1 t 1892 Go Karts Mar Menor unknown Un sitio estupendo para disfrutar de un buen día de Karts. Además de la carrera puedes comer allí y saldrás más que satisfecho. Un 10 para la dirección del establecimiento que se nota que año tras año se van superando. un sitio estupendo para disfrutar de un buen día de karts. además de la carrera puedes comer allí y saldrás más que satisfecho. un 10 para la dirección del establecimiento que se nota que año tras año se van superando. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Un sitio estupendo para disfrutar de un buen día de Karts.", "R3.05": "Un 10 para la dirección del establecimiento que se nota que año tras año se van superando."} {-0.024394577,0.020267544,-0.016224183,-0.025035838,-0.05927561,0.01743037,0.009105669,0.0038786223,-0.0037929993,-0.008811528,0.041503325,0.008269152,-0.017109862,-0.008464777,0.03291432,-0.09821911,-0.011036252,0.09147219,-0.010295041,0.0068694013,0.078162976,0.008871608,-0.098593764,0.08701088,-0.06055502,-0.021102542,0.050981507,-0.04699854,-0.081530094,-0.06571452,-0.024491042,-0.01537304,0.09043657,0.00302272,0.031121142,-0.041043364,0.041538823,-0.07037419,-0.05155332,-0.0043782224,-0.049282722,-0.10184455,-0.049944848,-0.06131001,0.053402334,-0.07458252,-0.031916384,0.05034161,0.058323815,-0.036397,-0.08567738,-0.01516511,-0.038751353,0.0017788557,-0.015998555,-0.031627636,-0.06609312,0.029431483,0.10345487,0.0020933375,0.02003032,0.048482597,0.00057427096,0.014915971,-0.003266468,-0.0035186585,-0.0136134215,-0.00832348,-0.099957205,0.15276937,0.06570619,-0.06689653,0.023978997,-0.020608863,-0.0018026768,-0.029166616,0.006441176,-0.06397143,-0.027397308,-0.040057298,0.008015008,0.025083665,-0.015495168,-0.07473446,-0.098299354,-0.030195124,0.008513516,0.0395146,-0.011819104,-0.015060272,0.0107179005,0.0403551,-0.08096216,-0.041627347,-0.03824329,0.008457729,-0.0041740355,0.0058111353,0.066778705,-0.029259166,0.115199246,0.06840776,0.055969555,0.038642496,-0.046151664,0.014880772,0.022026518,-0.11909838,-0.004288794,0.02363908,-0.09413337,0.028293971,-0.12199848,-0.027147112,-0.11177909,-0.014625745,-0.024539396,-0.111976236,-0.024852721,-0.041442692,0.03600699,-0.02797644,0.044046897,0.042912707,0.01368588,-0.07751548,0.07817084,9.737109e-33,-0.085032284,-0.061104696,0.05076068,-0.008197917,0.073864564,-0.047940407,-0.06052116,-0.0119083095,-0.012718709,-0.006913184,-0.09031213,0.01611902,-0.014054663,0.019232662,0.1394504,0.022588128,-0.052366808,0.005319882,0.04726464,0.020042202,-0.075480685,-0.0035810664,-0.033380352,0.056044236,-0.025194116,0.048127733,-0.0041027414,0.0012710547,-0.09235938,0.058324225,0.021182302,-0.007960097,-0.041795775,0.009386992,-0.066390246,-0.036325235,0.051019907,0.074420266,-0.0069339494,-0.047035668,-0.018862957,-0.02319156,0.0028564297,0.08716449,-0.0033989334,-0.008649685,0.067377664,-0.008951588,0.045124125,0.01610607,-0.087436505,-0.030475713,0.033567574,-0.05093568,0.017858535,-0.02895899,0.012562333,0.062192217,-0.052348748,-0.003231982,0.07494275,-0.055983502,0.025162647,-0.011439174,-0.10722108,0.011819959,0.034247883,0.042141795,0.12703702,0.036234863,-0.074297726,-0.00897358,-0.034011852,0.0091819195,0.04425342,0.044615872,0.031532086,0.06056803,0.0014256245,0.0146759115,-0.0077490024,-0.011226341,0.019571254,0.043641526,0.06583643,0.0864032,-0.06139681,0.067068465,-0.012783308,0.08414078,-0.0127158165,0.083253734,0.0062597548,-0.053703517,0.09224032,-1.21812145e-32,0.024410315,0.04740741,0.0030954476,0.08158221,-0.086507194,0.021204162,-0.018896272,0.0044116126,0.020704618,-0.025120545,-0.11396436,-0.07105829,0.12759456,-0.07330466,-0.028072083,0.14158918,-0.014702444,-0.04878398,-0.11359897,-0.0064957114,-0.0073663187,0.069386564,0.05334846,-0.0883551,-0.01752159,-0.03956517,-0.010712871,0.054325297,-0.1146837,0.020497395,0.0634229,-0.07784834,-0.041907415,0.057606652,-0.06819871,-0.022658255,0.040125772,0.03480326,-0.060511447,0.066406734,0.053963922,0.027316978,0.003209169,-0.008932606,-0.0014667679,-0.00530887,-0.0028287652,-0.114301346,0.015765553,-0.05983674,0.06406061,-0.00071989873,0.012331177,0.034731943,0.0074967016,-0.008024354,-0.04270401,0.001432838,-0.078186706,-0.009438457,0.028007302,0.0342241,-0.034767322,-0.066706695,0.07220473,-0.046442844,-0.040802054,-0.03747544,-0.055815205,0.022371834,0.05224507,-0.04915525,-0.011523339,0.08150727,-0.089907125,0.03110169,-0.03575213,0.0045906366,-0.000901788,0.02861696,-0.033771574,-0.061608475,-0.0086347,-0.027412849,-0.00685058,-0.004544565,-0.002088554,0.038577706,0.03252712,0.008761318,0.051508512,0.027033383,-0.048943926,-0.024344485,-0.08923106,-4.8583892e-08,0.003279319,-0.12825638,-0.043562923,0.02513834,0.0017650896,-0.032912813,-0.032845575,0.027260404,0.03254538,0.045483947,-0.0295136,-0.039683808,-0.022812381,0.058214586,-0.006739371,0.03325198,0.08971194,0.06828223,0.0048583876,0.004754291,0.041613426,-0.029679507,-0.017784547,0.06427833,0.033750217,0.0016843785,0.01813738,0.010478928,0.062110145,-0.01823526,0.045509957,-0.008489593,-0.034638904,-0.035725888,0.012757823,0.02750209,-0.05312971,0.06756507,-0.029072424,0.004999703,0.006749205,-0.04568369,-0.088604786,0.02623078,-0.07712738,-0.019911176,-0.08172798,0.031696115,-0.040833477,0.021600006,-0.027888684,-0.029303588,0.07475591,-0.021470599,0.025837312,0.002804039,0.07997298,0.0014752448,0.0155444965,0.05081082,0.075002946,0.12310472,-0.027775163,-0.018587494} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:01.966776+00 2026-01-30 02:01:11.075079+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2007 google ChdDSUhNMG9nS0VJQ0FnSUM2LUw3OW5BRRAB 1 t 2010 Go Karts Mar Menor unknown Ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. Podio, contador de vueltas, pole, medallas y comida. Un plan diferente Enel mar menor. ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. podio, contador de vueltas, pole, medallas y comida. un plan diferente enel mar menor. 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {O3.02,A3.01} V+ I3 CR-N {} {"O1.05": "Ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. Pod"} {-0.016058909,0.10933703,-0.0047946204,-0.041948445,-0.06801396,-0.011750205,0.03488186,0.114674926,-0.07102519,0.04580309,-0.0024066737,-0.058555048,0.0048974366,-0.011952513,-0.00085311045,-0.004208799,-0.016748635,0.0224253,-0.008846802,0.04533172,0.10943037,-0.045318507,-0.03368553,0.08849692,-0.13992536,0.061342206,-0.043975227,0.047353186,-0.026617136,-0.0480634,-0.027455382,0.059467163,-0.00908026,0.008356888,-0.020208122,0.026780868,-0.017562497,-0.055982795,-0.054618254,0.02877579,-0.07005221,0.00014459371,-0.0034763676,-0.017895542,-0.0022334869,-0.031226238,0.00064367463,0.09239674,0.0019143686,-0.054233037,-0.02614479,-0.03567616,-0.00897588,-0.023202414,0.014186593,0.00014938641,-0.08614165,-0.07866269,0.09141184,0.01595659,0.020887239,0.05433965,-0.03426935,0.008562459,-0.042475972,-0.05468678,-0.026533805,0.07396633,-0.06375465,0.041807946,0.12027632,-0.053443033,-0.07807545,-0.016946087,-0.008969855,0.04682721,-0.010854707,-0.021755163,-0.11473606,-0.034111522,0.031650186,-0.027230047,-0.03271727,-0.036797557,0.057978984,0.009982261,0.010172758,-0.011622186,0.04917045,0.027903957,-0.03112065,0.042899758,-0.13297386,-0.02711801,-0.07155587,0.092484064,-0.049385004,-0.15035026,0.056340333,0.04728305,0.062178764,-0.036800474,0.10562714,0.015646173,-0.071150795,0.0070538498,0.042441033,-0.008158473,-0.019768827,0.024846604,-0.06424615,-0.052654587,-0.02557174,-0.045839343,-0.0702672,0.03801724,-0.048378192,-0.012213239,-0.004332422,-0.046918407,0.02121695,-0.024463896,0.021395478,-0.0124685485,-0.0027766959,-0.0020344805,0.060557324,6.973708e-33,-0.103287645,-0.04582802,-0.0110447295,0.09092153,-0.05139187,0.012787238,-0.018949326,-0.006880912,-0.0035920201,-0.057974733,-0.04187721,0.05395861,0.026085826,0.03926576,0.13091373,-0.017712187,0.019165741,0.011158249,-0.0015927213,0.0020849532,0.03623556,0.012224118,0.02855778,0.02425985,0.034196544,0.05129329,-0.0012384937,-0.08262313,-0.07540924,0.054327153,0.038852446,0.007518402,-0.010069904,-0.031532653,0.013051045,0.04407076,0.021224085,0.03349051,0.004414883,-0.012238088,0.059198067,-0.0563887,-0.008208987,0.0862437,0.054525733,0.07485327,0.13489622,0.0555388,0.009721879,0.0052444227,-0.038089596,-0.028813565,-0.04755679,-0.09041692,0.012206027,0.06401329,-0.030859023,0.054523706,-0.09118782,-0.025168156,-0.01571003,-0.028991872,-0.06910681,-0.045295943,0.04338558,-0.011130359,0.024731927,-0.013582021,0.1336294,0.011539905,-0.07841804,-0.011573913,0.02807815,0.010341473,0.071186125,0.040460967,-0.03279691,0.038496412,-0.0025786404,0.07629898,-0.14751741,0.05317106,-0.0336024,0.0015026944,0.123304375,-0.054240588,0.09886515,0.089007616,-0.021509381,0.033703327,-0.017216865,0.032497857,0.050578855,0.027740119,0.0069528325,-8.828849e-33,0.0075090392,0.022197356,0.03763928,0.098123156,0.08059845,0.036841426,-0.058769405,-0.034181267,-0.08095409,-0.046351615,-0.14404067,-0.075331435,0.12990382,-0.00468121,-0.0048039476,0.03916052,-0.041532695,-0.073145464,-0.103507705,-0.008410208,-0.020403711,0.0065705106,0.03080843,-0.029403653,-0.043234058,-0.014382391,-0.0060058776,-0.04241921,-0.099624254,0.040843602,-0.028861677,-0.034394953,-0.015133733,0.01956953,-0.03281518,0.09652482,0.06454142,0.000755586,0.030139588,0.06821695,-0.01670201,0.05786583,0.047001917,-0.019425044,-0.0326632,-0.029578686,0.01575046,-0.018590875,-0.02513851,-0.048620027,0.0468447,0.009269616,-0.044276185,-0.065800905,0.08358057,-0.10307038,-0.07105316,-0.084910944,-0.008831344,0.047132816,0.062338922,-0.0043647434,-0.059666883,0.06904056,-0.012484538,-0.04137462,-0.0033974866,0.0022446476,-0.07688162,0.06405539,0.011648636,0.028396508,-0.027806332,0.02892958,-0.012382172,-0.07118128,-0.010267138,0.04358591,0.06326332,0.015340927,-0.008616878,0.0025520064,-0.025292223,-0.04384458,-0.019343577,-0.019768368,-0.013538598,0.001119894,0.017568843,0.03350281,0.029348005,0.019143457,-0.031991,-0.033589367,-0.0010931899,-4.5846352e-08,0.05416844,0.03161528,-0.032886073,0.03816362,0.010971532,-0.06173044,-0.07399208,0.026215738,0.021066695,0.05443721,0.030657355,-0.010502898,0.016309444,0.06113226,-0.028190501,-0.036954984,0.056481693,0.05756044,-0.056298397,-0.051357515,0.06726846,-0.008446499,-0.12158753,-0.04292494,-0.008602977,-0.032632645,-0.03239802,-0.12716883,0.008380852,0.075273335,0.0013184807,0.002468145,-0.0527996,-0.07714354,-0.029647626,-0.0059271385,-0.08814223,0.024298692,0.0054575014,-0.038729176,0.113094166,0.05321635,-0.044590253,-0.019395351,0.011168822,0.014013298,0.026092116,0.0066883187,-0.03470658,0.0068045175,-0.041402962,-0.03070425,0.06164046,0.035339665,0.00069033296,0.0170195,0.03697127,0.03550979,-0.02993834,-0.06362776,-0.00623997,0.061621547,-0.038531523,-0.0008755609} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.70608+00 2026-01-30 02:01:11.639224+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1612 google Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB 1 t 1615 Go Karts Mar Menor unknown No le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y lo hemos pasado de lujo instalaciones completísimas el personal super amable y los chicos de pista igual me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en familia!!!!nos vemos pronto gracias por todo no le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y lo hemos pasado de lujo instalaciones completísimas el personal super amable y los chicos de pista igual me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en familia!!!!nos vemos pronto gracias por todo 5 2025-11-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E1.02": "me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en", "E1.03": "instalaciones completísimas", "P1.01": "el personal super amable y los chicos de pista igual", "V4.03": "No le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y "} {-0.032097016,0.020527957,0.040136296,-0.060471185,-0.04221797,-0.044773374,0.09903676,0.010721851,-0.037602108,0.031199008,0.11407626,-0.019430045,-0.09216011,-0.018340973,0.013736405,0.07327249,0.0054087527,-0.023831375,0.0051338915,-0.023750981,0.05537549,-0.08426716,-0.070695445,0.07779409,-0.101960056,0.01498968,-0.030323893,-0.016429478,-0.07434525,-0.061728466,0.033197373,0.058556154,0.17530593,-0.04860147,-0.041542105,-0.0034924436,0.048605476,-0.10921474,-0.017501274,0.030059747,-0.07623563,0.008924195,-0.02890476,-0.074937016,0.009662558,-0.08645724,0.038463783,0.054544162,-0.008349322,-0.04366922,-0.02168926,-0.06312209,0.005374616,0.03485542,0.018801574,0.011501553,-0.08713973,-0.058944132,0.07412167,0.05041692,-0.05847683,0.079866335,-0.06255073,-0.0033914763,-0.029149648,-0.007234712,0.09618792,-0.034745134,-0.040842634,0.04957028,0.10545134,-0.017619265,-0.03297679,0.04583852,-0.0065053087,0.10866092,0.027334446,-0.0401722,-0.0053563984,0.0069086947,-0.096949644,0.01559483,0.014482933,-0.029803397,-0.0046539945,-0.0143379355,-0.044630032,0.028341336,-0.068916604,0.014861049,-0.019038051,0.023226313,-0.030752515,0.032657318,-0.021045156,0.03094072,0.05061132,-0.08218614,-0.021772372,-0.012568049,0.072262496,0.06868122,0.049006704,0.005056736,-0.041882306,0.028987562,0.033282727,-0.04847785,0.024691483,0.049857598,-0.07588603,-0.07494272,-0.033480044,-0.00085500546,-0.11550655,-0.041442823,-0.014845207,-0.018919688,0.024721077,-0.022633605,-0.0062636286,0.04422131,0.00033946862,-0.008215866,-0.016846417,-0.053985402,0.0058673783,1.2403947e-32,-0.037361003,0.0028764673,0.007792418,0.06382235,0.017601153,0.057556465,-0.008725115,-0.008604484,-0.04341641,-0.04731917,-0.10304421,0.012825093,-0.0045849863,-0.011079132,0.047873825,0.03942585,-0.03006626,-0.024429332,0.03580147,0.07875165,-0.028296057,-0.025408978,-0.0524732,-0.038359478,-0.0016372008,0.08286133,0.022641048,-0.021718144,0.03106528,0.06267179,-0.026544478,-0.029713033,0.031873718,-0.021575315,-0.10859362,-0.011350798,0.08707755,-0.0169542,-0.030309085,0.017745275,0.038777713,0.0017371615,-0.037197694,0.06778214,-0.016027527,0.06197376,0.05932837,-0.011097753,0.027799677,-0.020587908,-0.12284482,-0.07997713,-0.07741534,-0.028591512,-0.020376066,0.009158178,-0.09919349,0.0007584121,0.018486375,-0.092373565,0.099348225,-0.009230036,0.034124184,-0.036525253,-0.006070313,-0.08772239,0.07363738,0.05783533,0.095330276,0.0281648,-0.019067107,-0.050648224,-0.016540714,-0.036564507,0.034939043,0.0060855914,0.058470897,0.0144755915,0.0092171,0.062472682,-0.022859791,-0.021137875,0.02295991,0.014733362,0.070754826,0.0930997,0.022787975,0.068596646,-0.0341189,0.09543528,0.017888393,0.048418447,0.049448464,-0.0730382,0.0342274,-1.4386827e-32,0.008822704,0.031998858,0.005230916,-0.050546747,0.02991743,-0.036405154,0.039099663,0.031935018,0.008265039,-0.03552348,-0.10478897,-0.13197055,0.07666845,-0.0677505,-0.010985044,0.07407937,-0.0069051795,-0.030572584,-0.036683287,-0.026143981,-0.05937545,0.008445816,0.02141867,0.048276752,0.015005091,-0.072957814,-0.030413188,0.010079503,-0.06950473,0.0097065205,0.062158477,-0.032288093,-0.02065162,0.030207155,-0.014585632,-0.0010894483,-0.05248515,0.08377008,0.037603598,0.06482962,-0.0016092263,0.08068605,-0.011197219,0.049947478,-0.02855657,0.06995763,0.022304669,-0.13053203,-0.029918544,0.022068895,-0.023359515,-0.0058146045,-0.024540644,-0.021942457,0.039435603,-0.07372001,0.013469187,-0.02402395,-0.08599255,0.024535801,0.018605037,-0.042200632,-0.044218637,-0.027765349,0.04064282,-0.009559806,-0.06536157,-0.03634695,-0.03669023,0.039611697,0.019907584,-0.018701449,-0.0972496,-0.00906483,-0.040532652,-0.05590182,-0.11351436,-0.02308212,0.010733696,-0.028646989,0.05820778,0.0075497893,0.00472916,-0.08620501,0.0032430782,-0.11804051,-0.021846652,0.14356743,-0.034173254,0.06644782,0.0012958929,0.031065512,-0.063698694,-0.056401446,-0.026264396,-5.1387534e-08,0.045027163,-0.015101226,-0.026411429,0.04043725,0.045397464,0.004692206,-0.095068686,0.026929896,0.096736066,0.017722562,-0.057501093,-0.0022345842,-0.05272643,0.034944963,0.016962312,0.009415854,0.122153684,0.03301978,0.0060556005,-0.06685879,0.05056519,0.013490956,-0.06537663,-0.0129236085,-0.012295222,0.02960864,-0.005144262,-0.035309374,-0.04523039,-0.018498981,0.00482356,-0.01738622,-0.0019195983,-0.03523593,0.04626501,-0.041432537,-0.019588096,0.005968056,0.022718117,-0.098426364,0.094703965,-0.07044361,-0.07167719,-0.006406547,-0.0428343,-0.038713414,0.0072963797,-0.035856444,-0.020275006,0.07884779,-0.012328057,-0.058734417,0.10491561,0.004409738,0.035860617,-0.06610785,0.029850123,0.07453555,0.0487202,0.0061223065,0.096452914,0.08584513,-0.01924724,-0.043289453} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:55.616324+00 2026-01-30 02:01:10.048123+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1619 google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB 1 t 1622 Go Karts Mar Menor unknown Un sitio amplio, buena organización. Fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches y muy atentos. El cumpleaños tmb muy bien organizado. La pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos. Tiene terraza exterior y una en la planta de arriba donde se ve la pista entera con detalle. No sé qué más decir, que nos gustó y que volveremos. un sitio amplio, buena organización. fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches y muy atentos. el cumpleaños tmb muy bien organizado. la pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos. tiene terraza exterior y una en la planta de arriba donde se ve la pista entera con detalle. no sé qué más decir, que nos gustó y que volveremos. 5 2023-01-31 01:52:39.833374+00 es v5.1 O3.02 {E1.03} V+ I3 CR-N {} {"E1.03": "Un sitio amplio, buena organización.", "J2.01": "El cumpleaños tmb muy bien organizado.", "O3.02": "La pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos.", "P3.01": "Fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches ", "V4.03": "No sé qué más decir, que nos gustó y que volveremos."} {-0.009886863,0.040044364,0.013238985,-0.04396308,-0.06130145,0.01520576,0.06186302,-0.0038601314,-0.02661467,0.06789139,0.065426886,-0.06675648,-0.06296032,-0.011187147,0.013558882,0.029026631,-0.03951008,0.010117475,0.030823521,0.049004752,0.038637727,-0.036501296,-0.08177461,0.097193554,-0.06318663,0.034302454,-0.028604096,0.04364304,-0.03463607,-0.061704192,-0.06267797,0.07273762,0.12063906,-0.018787265,7.365356e-05,0.013159128,0.060178075,-0.071699284,-0.016370036,0.04268692,-0.0048515443,0.013399608,0.0076871584,-0.054041382,-0.023573682,-0.021515543,0.011788693,-0.039242446,0.052558664,-0.048294175,-0.08390362,-0.010420211,-0.062053345,0.09393831,-0.07556925,-0.015217827,-0.035223518,-0.05225838,-0.0014516701,0.034638226,-0.046159223,0.043039706,-0.048060615,-0.020702913,0.06884679,-0.025970323,-0.03759523,0.01397955,-0.0065453583,0.0596443,0.12150324,0.028826712,0.005379289,-0.0006010371,-0.08091301,0.08247288,0.0145455655,-0.0057396013,-0.025988724,-0.06245813,0.005948225,0.027385563,-0.04677875,-0.043426294,-0.014167355,0.050728846,-0.053116415,0.01786358,-0.0762839,-0.011745842,0.010303776,0.09058969,-0.011170674,0.0170925,-0.013187632,0.046318132,-0.022481289,-0.122781835,0.018965729,-0.026547134,0.09496841,0.009129548,0.05809439,0.0049580773,-0.04907228,-0.00967192,-0.01854421,-0.09702465,-0.0047097933,0.038765065,-0.056058176,-0.05964535,0.006198085,0.07618232,-0.1415051,0.031850222,-0.023068413,-0.056191932,-0.010246171,-0.054574396,-0.0056464747,-0.006171023,-0.06608091,-0.0021311366,-0.053182755,-0.11099445,0.0041530053,1.348639e-32,0.023053909,-0.07116807,0.02791997,0.020925874,0.021987688,0.09333612,-0.00736894,-0.1048885,-0.100663275,-0.060203798,-0.12608324,0.051160265,-0.005015047,0.043786388,0.02484821,0.004953627,-0.024837647,-0.0011373007,0.037454803,0.0717605,-0.06649984,-0.020518128,-0.052980125,0.005603971,0.02892289,0.010699562,-0.012220008,-0.059739728,-0.09766615,0.04525843,-0.015846267,0.009188915,0.004859747,0.0068980563,-0.029822713,-0.07484779,0.04947571,0.056848638,-0.04299261,0.02415171,-0.03630746,-0.012986843,0.0031301547,0.10546119,-0.03472517,0.028874177,0.048988007,0.013406318,0.035730537,0.014824676,-0.038386032,-0.060282625,-0.0019600142,-0.064744584,0.003389981,0.04878106,-0.07329721,0.041657146,-0.07602334,-0.06762035,0.060503114,0.0078422325,0.051856805,-0.06830066,0.0029735607,-0.0009255728,0.007272279,0.08344246,0.15788077,0.051335208,-0.032534994,-0.08125542,-0.097683325,0.01838468,0.045675647,-0.05822434,0.07450038,0.011155451,-0.009787813,0.05201236,-0.012345591,-0.031653017,0.03154292,0.03827376,0.022168,0.031698704,0.06250733,0.06959515,-0.045173183,0.0670845,-0.021798272,0.09503018,0.10879689,-0.013495899,-0.0026891646,-1.3222122e-32,0.010197403,0.0028007806,0.0011100332,0.05562925,-0.06816656,-0.019403137,-0.0484617,-0.05621652,-0.055937055,0.0076103983,-0.06416595,-0.062883474,0.1509163,-0.07163178,-0.004161655,0.055830516,0.0016349708,-0.02104657,-0.05404421,-0.038826227,-0.04446908,0.016669547,-0.013297939,0.0014897205,-0.040435676,-0.07053718,-0.085620746,0.013231567,-0.07015444,0.0074607083,-0.0031989873,0.03753301,-0.041735593,0.051040065,0.02512006,0.029224623,0.03476011,0.0039200545,-0.0050420333,0.009912188,-0.024433129,0.04131485,0.025274448,0.0165237,0.01095149,0.014481795,0.062605806,-0.077347554,-0.08876408,-0.01665911,0.0384185,-0.024192085,-0.035807163,0.007246867,0.07043421,-0.0040280824,-0.029042896,-0.04911644,-0.09133992,-0.019114887,0.047311295,-0.07296205,-0.08032544,-0.03498852,0.06276479,0.0073955064,0.008601194,-0.05971627,0.003095312,0.08627791,0.08394644,0.025406877,-0.03376525,-0.018183282,-0.014099676,0.014364589,-0.096465096,0.012309302,-0.005565238,0.0123736905,-0.02355974,0.032699928,0.024130572,-0.072751,0.013690023,-0.031507637,-0.032514337,0.06856502,-0.03961267,0.100330584,0.013888745,0.024234738,-0.090598606,-0.060140293,-0.0032376116,-5.0837595e-08,0.06653431,-0.008839197,-0.04671877,0.050787088,0.017346941,-0.038488667,0.012613669,0.072683044,0.07079778,0.050549127,-0.050817456,-0.04193289,0.06256948,0.074009046,0.030857611,0.04560554,0.11205021,0.091128886,-0.020059286,0.02078183,0.059308138,0.033283703,-0.039581206,0.005462418,-0.027795251,0.012313383,-0.04074203,0.013709132,-0.04616892,0.056316454,0.035581138,-0.015764121,-0.029817808,-0.06569038,-0.010794632,-0.023687119,0.021957617,0.029553017,-0.0019894405,-0.08579547,0.09799887,0.03685145,-0.0643038,0.010980378,-0.03435584,-0.11658739,0.04573689,0.008222109,-0.013062427,0.06010048,-0.008617561,-0.022278002,0.10175417,0.0018766499,0.087448515,-0.019057294,0.06081564,0.03144015,0.013393074,0.06965335,-0.006946591,0.12565443,0.013852297,-0.060567398} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:01.25646+00 2026-01-30 02:01:10.071273+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1562 google ChdDSUhNMG9nS0VJQ0FnSUNZbDZUUmdBRRAB 1 t 1565 Go Karts Mar Menor unknown Perfect go karts.. Friendly staff perfect go karts.. friendly staff 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"P1.01": "Perfect go karts.. Friendly staff"} {-0.0024185346,0.04107513,0.004383522,0.07134358,-0.06988332,-0.0042690434,0.010630593,-0.053036198,0.0100212805,0.034126237,-0.0003942426,0.012707327,-0.05986032,0.08937996,-4.2944193e-05,-0.08748922,0.038599726,-0.048880447,0.0683007,-0.053535674,-0.07930093,-0.0107076075,-0.024181487,0.009171732,-0.12611426,-0.010168341,-0.010404044,0.05877969,0.011823346,-0.017349439,-0.14140265,0.019902572,-0.020640573,0.0125969425,-0.057896998,0.058132567,0.0011871174,-0.05852217,-0.028519195,0.051122207,-0.012001364,-0.024866294,-0.0046090786,0.06402618,-0.012473595,0.057896987,-0.031913765,-0.0067704823,0.0007916229,0.06043047,0.07723201,-0.099958,0.055631146,-0.05066775,0.072290264,-0.006034712,-0.066728726,-0.0020840082,0.07850566,0.035610422,0.033484202,0.009380788,-0.06499116,-0.0139075,-0.08721045,-0.026623992,-0.037224777,0.12756267,-0.025738005,0.033741176,0.019570507,-0.025528386,0.07454406,0.017227722,0.03458357,0.04868606,-0.07951231,-0.03955431,-0.024640245,-0.0021103758,0.014499508,-0.056176886,0.006479453,0.031621344,-0.079178855,-0.06609244,0.054710887,0.023065416,0.072720274,0.0007230718,0.0014631547,0.105767734,-0.007436375,-0.026560526,0.010516667,0.018586457,0.0019097581,0.029458627,-0.04923602,0.058670614,0.030040348,0.08265399,0.091446646,0.039785642,-0.03738704,0.05972701,-0.055947732,0.00982608,0.0830407,0.041861527,-0.027192434,0.113481775,-0.07682387,-0.053103287,-0.05637139,-0.0046531097,-0.022914793,0.011219042,-0.077931985,0.004245009,0.050952375,0.0019767105,-0.013622193,0.058515634,0.016225677,-0.03546858,0.059734564,-4.2535454e-33,-0.055107955,0.0674426,-0.00981285,-0.013520785,0.09276431,-0.101644255,-0.01966484,-0.10578018,-0.08241531,0.014078701,0.03954448,0.061899208,-0.026327442,-0.02413539,0.07236685,-0.001877153,0.016295634,-0.0028066535,-0.02233765,-0.04025835,0.0038771182,-0.051479228,0.0036902968,0.06391608,0.0907395,0.012938806,0.082660966,-0.054492142,0.08332414,0.0066926684,0.017683614,-0.034333475,-0.013885397,0.0035880248,-0.04255218,0.038605005,-0.05115309,-0.03586276,-0.029766142,-0.008897425,0.023135846,-0.02409253,0.06583931,0.0026708385,-0.021021383,0.05736421,0.087942176,0.04612048,-0.00077910343,0.031257056,-0.07395256,-0.0145988325,0.027991697,0.0801982,-0.019164959,-0.034231216,0.100702725,0.06885657,-0.038409486,-0.046989515,0.111304514,0.06850481,-0.0067130537,-0.016405119,-0.021117767,-0.07386608,-0.014103664,-0.038105562,0.113149546,-0.07226936,-0.047557,0.042727925,0.039544094,-0.006700285,-0.03238338,0.03724345,-0.043644823,0.031533927,-0.003228815,0.010248909,-0.06329796,0.0066964626,-0.05959195,0.028550975,0.012585722,0.009814277,-0.025137208,-0.07146793,-0.013579238,0.07933789,-0.06896544,0.043665424,0.037349418,0.11453138,-0.033646915,3.598713e-33,0.07559298,0.03958346,0.06806641,0.1373101,0.0661899,0.00919865,0.0072140396,-0.009269782,0.07949103,0.08204693,-0.01527657,0.028227024,-0.011349269,0.01693661,0.02451331,-0.004826061,0.05280948,0.048085507,0.008002785,-0.069389425,0.03666948,0.009186712,0.0075780298,-0.02687342,0.04871939,0.09217705,-0.017337598,0.0014060974,-0.18795851,0.037319332,-0.01008056,-0.13330783,-0.022566034,-0.04468027,0.05296072,-0.009775211,-0.0020092586,0.11605709,-0.04538572,0.030313492,0.03896247,0.002403979,-0.0130302245,0.04078785,-0.043204468,-0.023427108,0.07357074,-0.05936547,0.01907583,-0.060041446,0.03476411,0.037159152,-0.061203048,-0.047607973,0.011112299,-0.00330161,0.042383097,-0.013305353,-0.046528883,-0.024302593,-0.01880767,0.026608111,-0.039823014,0.07320828,0.062270675,-0.030946475,-0.05012775,-0.017267749,-0.051112015,-0.021648088,-0.13900572,0.050363693,-0.016242744,-0.018984161,-0.01488518,-0.068706684,0.05394605,-0.042898763,0.024488114,0.0461617,0.025299707,-0.042223874,-0.0048065335,0.06776375,0.0828799,0.040898208,0.023153808,0.02167229,0.03696102,0.01418382,0.059833,0.038523506,0.026881259,0.016422193,-0.006247307,-1.7232322e-08,0.009687057,0.05154826,-0.065479554,0.010255693,0.020655628,-0.110052004,-0.061541155,0.0034873055,-0.044755336,0.08455034,-0.019718513,-0.036905564,0.0087825805,-0.00045211407,0.057344675,0.0022635926,-0.084390484,0.113488376,-0.09578666,-0.033239838,-0.016206635,0.016730443,-0.055668123,0.03561952,-0.07219854,-0.03323536,-0.044349115,-0.0019142234,0.014856575,0.056779627,-0.0065708226,0.037118204,-0.081778765,0.021321574,0.0012196451,-0.01075653,-0.0978667,0.04427298,-7.38976e-05,0.041136395,-0.07764696,-0.059291806,-0.06300161,-0.0018079875,-0.07823775,0.04825415,0.01816614,-0.014908984,-0.052775618,-0.05238417,-0.02572853,-0.026204139,0.023019517,0.022952817,0.030855687,0.011432782,0.04408449,-0.065217584,0.00089925394,0.0063535566,-0.07173336,-0.060950566,-0.027386095,0.013162888} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.621302+00 2026-01-30 02:01:09.802079+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2011 google ChZDSUhNMG9nS0VJQ0FnSUNnbk5ma093EAE 1 t 2014 Go Karts Mar Menor unknown Increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a cualquier persona. Todo muy bien. Gracias ! increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a cualquier persona. todo muy bien. gracias ! 5 2019-02-01 01:52:39.833374+00 es v5.1 O2.02 {P1.01,E3.01} V+ I3 CR-N {} {"O2.02": "Increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a"} {-0.061072916,0.006014098,-0.01504579,-0.040819872,-0.06874588,-0.0024066682,0.06793762,0.026914109,-0.049507137,0.019666802,0.06008264,-0.014975449,0.0056137387,-0.043222934,-0.044662237,-0.034702335,0.01978214,0.04206907,0.05650523,0.046874385,0.09740445,-0.050973885,-0.05343659,0.13322651,-0.099664204,0.0493765,-0.004079068,0.00042517937,-0.06883167,-0.12004719,-0.06304596,0.10849538,0.07104194,-0.027571177,-0.021437112,-0.012175704,-0.003318767,-0.028189613,-0.0005659814,0.03867404,-0.077659674,-0.026602035,0.0043209777,-0.063189074,0.01806391,-0.05933803,-0.020354394,0.026699504,0.016147442,-0.003046135,-0.08036333,-0.006739175,-0.015057786,0.039816055,-0.0018800823,-0.010261901,-0.032169983,-0.03986505,0.037115805,0.023738313,-0.0064013866,0.047712874,-0.043614354,0.031075152,0.099714324,-0.009895447,-0.022675939,-0.012985855,-0.025946038,0.04177871,0.09428957,0.01671807,0.06442966,0.030085176,-0.0411599,0.090469934,-0.030771641,-0.04080436,-0.08998508,0.042816963,-0.0072395527,-0.011793958,-0.006893605,-0.057945978,0.028521098,0.010121611,0.0072976793,0.043230392,-8.4108826e-05,0.023289576,-0.015499015,0.15464295,-0.025008392,-0.029469967,-0.036057543,0.039234202,-0.017818118,-0.08687772,0.031130314,-0.03554072,0.107763015,0.032093324,0.021419149,-0.02801992,-0.046214096,-0.024172816,0.03825138,-0.08242705,0.033784904,0.06103566,-0.049636345,-0.09019768,-0.037772503,-0.022850903,-0.0749585,0.039806563,0.0018533812,-0.04271486,0.008148113,-0.061217763,0.04086487,0.035770696,-0.022660328,0.019387886,-0.009267424,-0.057913143,0.06430027,8.0754045e-33,-0.040128496,0.015211864,-0.0022726404,0.09143697,0.022898713,0.07147725,-0.08823869,-0.10752512,-0.100625515,-0.028178148,-0.054869257,0.14804058,-0.046317033,0.060325284,0.026153358,0.031007404,-0.024068734,0.0072402875,0.039703686,0.009976754,-0.053667888,0.04436518,-0.03137036,-0.013965681,-0.0025423102,0.096397586,-0.020643141,-0.0745612,-0.044383626,0.036043018,0.017996011,0.024642576,0.009400996,-0.0025680703,-0.013278215,-0.07216232,-0.015484037,0.015609702,-0.014984634,0.0660527,0.01733279,-0.001835434,-0.002555215,0.04197802,-0.0061413096,0.010274446,0.019922698,0.040643256,0.0608305,-0.00042382732,-0.036298323,-0.051353805,-0.06826791,-0.030030806,-0.028715502,0.008038423,-0.033901084,-0.030318927,0.012550409,-0.03798942,0.053207416,0.04352325,0.00088108826,-0.07724872,-0.05059131,-0.07434791,-0.0092580225,0.06379741,0.14282869,0.07050659,-0.04158152,-0.10260108,0.002385254,0.026158731,0.042756714,-0.037789304,0.018917685,0.019218076,-0.04468308,0.11568417,-0.045485184,-0.019608336,0.031685557,-0.041089397,0.03490044,0.09353504,0.028757839,0.04154337,-0.06720264,0.066976935,0.036637146,0.06536992,0.09915103,-0.0147804525,0.0021453903,-9.8164225e-33,0.04359066,-0.033740535,0.024507564,0.032289807,-0.028255265,-0.02942024,-0.121195056,-0.03177653,0.021514133,-0.03744581,-0.028628943,-0.1317316,0.10581585,-0.046547715,-0.03835628,0.05164554,0.0014023943,-0.060828045,-0.12569126,-0.004442002,-0.052754395,0.02973409,-0.018475886,0.00063123927,-0.035589345,-0.026376005,-0.03246295,0.012360146,-0.015956992,-0.0011041502,-0.011485221,-0.026768366,-0.04978599,-0.00721509,-0.010520133,0.07895443,0.020114671,-0.0029180867,-0.00071365735,0.06525044,-0.03806972,0.059839983,0.012198836,-0.0061777257,0.017624881,0.0006327103,0.04044082,-0.093008116,-0.054270204,0.0064638243,0.06513451,-0.039502926,-0.007084211,-0.00779024,0.081867635,-0.034505382,-0.027622052,-0.053497247,-0.06360138,-0.0029866511,0.04825702,-0.029005295,-0.055737417,-0.017708115,0.042601146,0.02694076,0.008588646,0.0223274,-0.0015905051,0.051387258,0.041945104,-0.028785793,-0.096661486,0.035545886,0.00864678,-0.013947651,-0.107905634,0.020427493,-0.011673899,-0.005356295,-0.039850306,-0.0030103906,-0.028253756,-0.03925044,0.059218466,-0.05009831,-0.042672195,-0.01405234,0.012586234,0.05523046,0.014251467,0.07225514,-0.06383404,-0.03696747,-0.0005368231,-4.115256e-08,0.03957554,-0.050099894,-0.046274062,-0.007834887,0.08362569,-0.10000193,-0.007764303,-0.0055427914,-0.0025612414,0.042136367,-0.0028924916,-0.06335773,-0.0050973007,0.06842596,0.052843682,0.046624325,0.10288171,0.1447143,0.016073823,-0.05493877,0.028432094,0.012628726,-0.06021348,-0.043870945,-0.08954718,0.069248535,0.010819057,-0.040301606,-0.074085146,0.04110156,-0.0027725806,-0.018961754,-0.041583896,-0.07474214,0.0027385547,0.03856931,0.06301743,-0.03139385,-0.048956905,-0.08652411,0.08813432,0.047576997,-0.07087478,-0.00027604523,-0.019322855,-0.11207656,0.04527603,-0.043866158,-0.0014659363,0.088146135,-0.028623242,0.021761417,0.09446722,-0.020739004,0.0585323,-0.016291551,0.08444386,0.024572,-0.0058786785,0.012700891,0.10338327,0.11283086,0.0077927187,-0.040847447} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.766128+00 2026-01-30 02:01:11.648912+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1681 google ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE 1 t 1684 Go Karts Mar Menor unknown Uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de competición. Las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y un ancho de pista considerable. Ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competitivo. Mi sitio favorito! uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de competición. las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y un ancho de pista considerable. ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competitivo. mi sitio favorito! 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {O4.03} V+ I3 CR-B {} {"E1.03": "Las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y ", "O1.02": "Uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de comp", "R4.03": "Mi sitio favorito!", "V2.05": "Ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competi"} {0.017244589,0.036358815,-0.047464285,-0.11701852,-0.1278024,0.0012799326,0.019604443,0.059777882,-0.037795667,0.045189876,0.050090123,-0.035191733,-0.012979707,0.031491302,0.054826375,0.027201304,0.010164121,-0.043153755,0.02995817,-0.03408581,0.07404733,-0.09506811,-0.049282204,0.038401395,-0.11323783,-0.012761477,0.05031363,0.014899835,-0.07286001,-0.08338495,-0.09462885,0.02588529,0.08079,-0.0354759,-0.085175954,-0.014190384,-0.05395948,-0.049292665,-0.052258994,0.016090054,-0.025506835,-0.05694498,0.005631759,-0.034090295,0.00027677347,-0.06815282,-0.02661309,0.0043020956,4.1681677e-05,-0.10503671,-0.011891721,-0.017955974,0.011678354,0.059911754,-0.0036070128,-0.033646353,-0.07134857,0.07207728,0.09903075,0.07660056,0.03331165,0.058813315,-0.031509385,0.023183994,0.0043249493,-0.055581376,0.017999897,0.0335767,-0.051314343,-0.015623301,0.09048841,-0.15017648,-0.005548121,-0.076351345,0.05569389,0.024369176,-0.029647827,0.003312167,-0.052483022,-0.043165144,0.06450426,0.000843241,-0.079977915,-0.039639488,0.009997764,-0.0034375887,0.008995815,-0.030390084,0.050980218,-0.035158582,-0.033062156,0.103184395,-0.075962715,-0.07357664,0.027130404,-0.0018859517,0.053423874,-0.10001046,-0.0041558333,0.02233918,0.11223632,-0.041280854,0.038707282,0.020236455,-0.07195999,-0.0027037272,0.011095684,-0.009022106,0.05024246,0.040509403,-0.09873265,0.0092129735,-0.065193094,-0.040921006,-0.034137942,0.027895521,0.0031344118,-0.009959778,0.025108656,-0.024423968,-0.019518653,-0.0758425,-0.047230486,0.013752243,0.025603268,-0.054859363,0.020165347,7.7489756e-33,-0.08777422,-0.023624929,-0.05348543,0.031604998,-0.026226345,0.012761729,0.008011004,-0.09443636,-0.062215015,-0.06138358,-0.06250679,0.11193876,-0.02152763,0.06435864,0.14099695,-0.05733189,-0.029123979,-0.02138574,0.11737287,0.003908882,-0.010210288,-0.024601758,-0.038478497,0.09603454,0.06611675,0.028572613,0.029427975,-0.029963037,-0.07442294,0.048081484,0.018411126,0.04924966,-0.001123059,-0.035716694,-0.09229264,-0.02145035,-0.011871246,0.022205086,0.030247265,-0.029245405,-0.013923313,-0.028505143,-0.00461701,0.015539198,0.033227492,-0.02158139,0.018193012,0.01787071,0.047322124,0.06632022,-0.124133736,-0.035063118,0.013895613,-0.06678578,0.050653912,0.036818057,-0.015308831,0.028008372,-0.044818986,0.022392318,-0.035379123,0.007039703,-0.044788014,-0.05875049,-0.06113158,-0.043931853,0.034919653,-0.03340846,0.12411478,0.0056263204,-0.0854559,-0.020963823,-0.011326542,-0.02003755,-0.002650377,0.011340056,-0.06275565,0.117051266,-0.055875156,0.054522045,-0.09317943,-0.004602686,-0.06316097,0.075513504,0.13290446,0.06968403,0.03596474,0.057368916,0.0012834363,0.11412409,0.009759564,0.09604136,0.07054185,0.04751533,0.061205026,-1.0507161e-32,0.042962436,0.006422909,0.052046467,0.046217974,0.014202655,0.039689854,0.03209198,-0.111646965,-0.0021535803,0.022132581,-0.08552283,-0.036715396,0.06707224,-0.038906094,-0.027540702,0.039116293,-0.010277379,-0.050350863,-0.0074625374,-0.018892279,0.0053905733,0.02958837,0.007050045,-0.007879868,-0.03326683,-0.079781875,-0.06643713,0.024252791,-0.103890374,0.016447779,-0.0011849402,-0.013256033,-0.012691322,0.08067927,-0.04783691,-0.014245687,0.08867135,0.06044142,-0.0618864,0.019357603,0.042463254,0.036375385,0.012209999,0.017091246,-0.06464681,0.004233848,0.08501716,-0.08856368,-0.028743995,-0.05893197,0.065858185,-0.031015288,-0.016663834,-0.081955105,0.0018552943,-0.03285211,-0.042795554,0.0052608903,-0.042298738,-0.031856973,0.070661634,-0.03801863,-0.0051729246,-0.023834314,0.0033968443,-0.003117146,0.03314241,0.046809547,0.043994423,0.03340493,0.07933162,0.040363956,0.0007854895,-0.0097160125,0.00051799987,-0.02151565,-0.05128444,0.05107389,0.0180717,-0.024504237,-0.017077727,0.015776286,-0.0101960655,-0.08321586,-0.0062099723,-0.030070752,0.010517042,0.02344646,0.06164828,-0.030982476,-0.020843918,0.06881033,-0.06324585,-0.08164135,-0.020905392,-5.3952505e-08,0.07206946,-0.04313425,-0.07453436,0.046898652,0.010431672,-0.05700456,-0.01063006,0.031455033,-0.00670279,0.07326556,0.01810265,0.0017689002,0.027198955,0.03630599,0.019213744,0.044485815,0.055283017,0.1533705,-0.007122653,0.018710073,0.043302156,-0.006842508,-0.04096322,0.039917618,0.033151973,-0.023615386,-0.013474742,0.017045805,-0.023117898,0.053572606,-0.00018576618,-0.038165092,-0.0581344,-0.043712415,0.026680406,-0.032391354,-0.080308296,0.0628951,0.008399917,-0.07110115,0.051217966,-0.04036533,-0.07727171,0.01184249,-0.049589977,-0.07782517,-0.049319904,-0.0069395304,0.029976685,0.029795527,-0.048832156,-0.01924724,0.012117847,-0.00764553,0.053844877,-0.007961896,0.05319034,-0.0059514157,-0.019516807,0.006946633,-0.0012048122,0.10084848,-0.004411663,-0.053456128} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:24.658394+00 2026-01-30 02:01:10.303758+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1900 google ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE 1 t 1903 Go Karts Mar Menor unknown Enhorabuena por vuestro Karting, sois los mejores de Murcia con diferencia, cada día vais a mejor los karts super cuidados y super rápidos, los mejores que he probado y las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de dentro del bar el recorrido virtual es increíble, volveremos pronto! enhorabuena por vuestro karting, sois los mejores de murcia con diferencia, cada día vais a mejor los karts super cuidados y super rápidos, los mejores que he probado y las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de dentro del bar el recorrido virtual es increíble, volveremos pronto! 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {O2.02} V+ I3 CR-B {} {"E1.03": "las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de de", "O1.02": "Enhorabuena por vuestro Karting, sois los mejores de Murcia con diferencia, cada día vais a mejor lo", "R3.04": "volveremos pronto!"} {0.009596895,0.00135419,-0.017792352,-0.07549043,-0.112493336,0.028760675,-0.013445109,0.06371394,-0.008859197,0.025213633,0.07637908,0.027268054,-0.036223203,0.033156,0.015463679,-0.043421626,0.017569909,0.05852226,-0.010415712,-0.025023388,0.062031902,-0.08261407,-0.07844255,0.018826395,-0.08424872,-0.0074673994,-0.041101016,0.047992878,-0.0334102,-0.11370723,-0.0674207,0.051032383,0.009926833,-0.0002128875,-0.038547475,-0.02982879,-0.054948602,-0.0067331977,-0.03494856,-0.022753542,-0.022867093,-0.055856872,-0.0391314,-0.093364626,0.083198875,0.0056865085,-0.04182476,-0.027284347,-0.000966795,-0.05592329,0.020038145,-0.061638445,0.07775748,-0.010654718,0.029626312,-0.07175265,-0.07968431,0.04443178,0.1485097,0.04444871,0.07066099,0.03438193,-0.015277056,0.060388457,-0.05239567,-0.10726502,-0.013758022,0.00622402,-0.04664702,0.06170135,0.11600758,-0.0692064,-0.027409172,-0.06389009,0.06457279,0.014144625,-0.03204452,0.0664517,-0.056018464,-0.022273567,0.029725516,0.011813871,-0.005222445,-0.07718663,-0.0020804068,-0.019279609,0.033027686,-0.0060316874,-0.0116721,-0.0013948847,-0.038067512,0.07123407,-0.07885284,-0.0495408,-0.02671291,-0.013929326,-0.032680493,-0.06781264,0.01291806,-0.0073709562,0.07566859,0.011172888,0.07631323,0.069293894,-0.07404882,0.0056161378,-0.0060196607,-0.0061979177,-0.0037243608,0.0044723437,0.0062218197,-0.041670315,-0.008796774,-0.09190944,-0.071876466,0.009758359,-0.055453036,-0.0035246692,0.015717732,-0.08324889,0.01775776,-0.044381253,0.017101426,0.0065714703,-0.007940213,-0.017922292,0.13077052,1.255606e-32,-0.10586263,-0.029884601,-0.061407894,0.033427455,0.084741525,-0.108482935,-0.0098640025,-0.031997122,-0.059532043,-0.047656976,-0.0149628725,0.055191785,-0.025672657,0.02840332,0.119842656,-0.017625684,-0.032133833,-0.07731921,-0.012911042,-0.03680246,-0.0025667527,-0.022363676,0.023833765,0.10800799,0.009181506,0.07497758,0.080014914,-0.029692112,-0.10506718,0.0538893,-0.01011514,0.040032182,0.020770267,0.014048708,-0.07653556,0.05099093,0.055931572,0.0023820305,-0.028139675,0.04346278,-0.0151492795,-0.09473901,-0.056548275,0.039178792,-0.07495518,-0.04330693,0.054694764,0.019746996,0.04502495,0.034538973,-0.118260935,0.02793355,0.0022066603,0.025681939,-0.0011164268,0.07150326,0.028420912,0.019605473,0.008154648,-0.014233965,0.020886147,0.032349523,-0.03046748,0.036085933,-0.10244006,-0.03504887,0.063856736,-0.0017184053,0.110033415,-0.00295979,-0.11486347,0.01943784,-0.046597917,-0.045089982,0.08890003,0.012828538,-0.057467416,0.041952446,-0.0663029,0.035434265,-0.049132053,0.0035897235,0.014345432,0.032495137,0.119973406,-0.0314535,-0.0032625922,0.037020184,0.036018584,0.038336147,-0.040537287,0.03498232,0.061522998,0.027834736,0.10694573,-1.4579496e-32,-0.014182105,-0.0023137236,0.08173378,0.081206754,-0.028680097,0.047204196,-0.021926006,-0.043485075,-0.07083026,-0.029325588,-0.09456216,0.027456963,0.03886946,-0.027079798,-0.01581089,0.02319685,-0.022391556,-0.017003246,-0.052001715,-0.011486781,0.06446822,0.056043837,0.030705446,-0.045037605,-0.06564983,0.0041279667,0.029221803,0.009744082,-0.09567021,0.049549617,-6.14512e-05,-0.03314319,-0.021782111,0.056074634,-0.10288607,-0.01554958,0.08999323,0.08633797,-0.068617,-0.017040562,0.035843957,0.0826816,0.012135047,0.003018376,-0.0684828,0.0025501421,0.06568133,-0.05679067,0.042965077,0.007099115,0.09557165,0.02856832,-0.037899658,-0.025641885,0.01379393,-0.04224221,0.027668623,-0.02339586,-0.08039008,-0.015388259,0.015264947,0.007835178,0.051430933,-0.07215364,0.077445135,0.015043064,-0.036230806,0.031275608,-0.01869934,-0.039429378,-0.014975172,0.05530136,-0.04702226,-0.0112258475,0.00083725405,-0.012727628,-0.05707595,0.069260016,0.034565516,0.018412182,0.013736752,-0.06515557,0.028714305,-0.06600239,0.021365732,-0.029537216,-0.07912811,0.03801148,0.044079814,-0.007941713,0.049720913,0.07065477,-0.018187037,-0.005106479,-0.054777116,-5.819743e-08,-0.009038949,-0.017668877,-0.09306732,-0.01985303,0.016151251,-0.068117395,0.0056152157,0.054662008,-0.069846444,-0.031778187,-0.0061500007,-0.006372891,0.0031945053,0.07516575,0.010900832,0.043832324,0.038592473,0.13410297,-0.030860718,0.012977119,0.014738293,-0.02817405,0.022149744,0.028954534,-0.016002825,-0.030621726,-0.046845295,0.00583117,0.012150977,-0.04782585,-0.030059448,0.030712137,-0.081193686,0.010489296,-0.0044022184,-0.0251297,-0.09789689,0.093540706,0.0099728415,-0.06508339,0.011845865,-0.08588619,-0.05797925,0.027454223,-0.09553669,-0.02157553,-0.09631332,-0.019520711,-0.02987886,0.044973698,-0.120882384,-0.001837702,0.008142226,0.040181097,0.031003714,0.0034578182,0.06945737,-0.05118321,-0.042695034,-0.0035623687,0.008902895,0.03780534,0.07445888,-0.03748842} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:30.41846+00 2026-01-30 02:01:11.133446+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1652 google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB 1 t 1655 Go Karts Mar Menor unknown Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. Explicaciones las justas para alguien que no ha llevado nunca un kart y en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. También escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. Un saludo, circuito y maquinaria bien, personal penoso los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. explicaciones las justas para alguien que no ha llevado nunca un kart y en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. también escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. un saludo, circuito y maquinaria bien, personal penoso 1 2025-08-03 00:52:39.833374+00 es v5.1 P1.02 {P1.01} V- I3 CR-N {} {"O1.02": "circuito y maquinaria bien", "O1.04": "en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentem", "P1.02": "Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una ve", "P2.04": "Explicaciones las justas para alguien que no ha llevado nunca un kart"} {0.0017286696,0.06366416,0.0070190136,-0.03816678,-0.09434337,-0.009018958,0.0870273,0.0375161,0.015097277,0.026446493,0.18028568,-0.031090764,0.014882638,-0.025919711,0.059253532,0.004746905,0.0021271668,-0.0069609145,-0.027767023,0.050738014,0.017560303,-0.054510884,-0.06090327,0.06937372,-0.05929744,-0.009673044,-0.016586455,-0.012577054,-0.1237817,-0.027638989,-0.058955442,0.059529915,0.08073666,-0.0032944642,-0.00080758333,0.04037426,0.015805138,0.014169055,-0.027506098,0.052249163,-0.11752063,-0.02482725,-0.0114656575,0.0034105058,0.040761314,-0.09095724,0.008395991,0.0751375,0.048968103,-0.005942574,-0.056652352,-0.035282418,0.018236062,0.05109921,0.0019676476,0.01014569,-0.051877078,0.032570746,0.05933927,0.05835581,-0.016820833,0.06255467,-0.049973372,0.0042076227,0.013985409,0.01113685,-0.012683679,-0.05593578,-0.045690842,0.12752067,0.09015147,-0.065226525,-0.023886694,0.027312858,-0.039821036,0.08691737,0.015130904,0.007362958,0.009116812,-0.0255101,-0.0009586749,0.00068185024,-0.0022138644,-0.08382825,-0.008118843,-0.048623916,-0.016387124,-0.005109147,0.012531944,-0.0018078244,-0.019115152,0.06906091,-0.05693688,-0.053857982,0.06083958,0.010171619,0.004693024,-0.026571317,0.019942092,0.02993485,0.084973656,0.03841227,0.05828164,0.06710224,-0.013166555,0.05060801,-0.006385526,-0.053816464,-0.020161098,0.05710336,-0.090271614,-0.045675326,-0.08223554,-0.05865907,-0.036069687,-0.050951097,0.034698818,-0.017406989,-0.044062342,-0.020919738,-0.048373323,0.068696015,0.002065222,-0.014573945,0.0054945922,-0.07072595,0.020282216,1.5808542e-32,-0.039129954,-0.012522921,-0.020242918,0.04441256,0.014198931,0.013387295,-0.007361474,0.04048765,-0.055456564,0.0062718624,-0.03452389,0.023808643,0.021598883,0.014362393,0.12347609,0.057284784,-0.029746244,-0.064282954,0.071765974,0.06939422,0.015857393,-0.0057259537,0.035296418,0.010060236,-0.067381,-0.011627304,-0.004294495,0.011966149,-0.06883978,0.06473496,-0.037860684,-0.029926047,0.058406543,-0.118290834,-0.06856215,-0.05395296,0.05441567,0.0048184833,-0.018246572,-0.0877103,-0.093198076,0.059124004,-0.0005872893,0.043812525,-0.02540132,0.036547877,0.077320434,-0.037984513,-0.023245953,0.001487821,-0.07702905,-0.028838295,-0.011973205,0.029700695,-0.04613898,0.04717764,-0.02902017,0.0742338,-0.05451242,-0.080161355,0.045330796,0.029534582,0.025066117,-0.0326445,-0.039322186,-0.05728402,0.051405523,0.032185357,0.12854296,-0.025735486,-0.070438385,-0.008897798,-0.06833824,-0.028980384,0.03684471,0.0058852034,0.009938539,-0.018614655,-0.0067182663,-0.027462501,0.0055049234,-0.0129458355,-0.0088428045,0.004744223,0.036594342,0.08802345,0.06407703,0.019744543,-0.020740185,0.14769468,0.045852635,0.053169634,0.036750454,-0.008827357,0.056359604,-1.6448143e-32,-0.050211683,0.06340407,-0.0031286327,-0.008398207,-0.038567387,-0.0053401357,-0.037579827,-0.01449563,-0.033837337,-0.07369566,-0.06713252,-0.0805289,0.042275805,-0.013637873,-0.10333764,0.024010887,-0.044984367,-0.08271397,-0.018090656,-0.07740009,0.029762471,0.06512578,-0.0072117466,0.033337098,0.034620084,-0.081069395,-0.08037145,0.026642125,-0.04941492,-0.039429903,0.06137207,0.031863224,0.05188491,0.029109297,0.0016831225,-0.0059057386,0.018635059,0.03185383,-0.0249258,0.068960495,0.071479835,0.041578628,-0.10756937,-0.066279,-0.03985717,0.07554637,0.07384667,-0.13820067,-0.013541503,-0.020346,0.05351253,-0.041476686,-0.06264616,0.02595675,0.03805436,-0.03749909,0.008270512,-0.10231867,-0.06845913,0.026856238,0.056891643,-0.041355357,-0.09310819,-0.05315143,0.10507088,-0.0734765,-0.0230331,0.089388356,0.010756938,0.04931031,0.064688645,-0.006987253,-0.09221673,-0.047799934,0.012137771,-0.00023038636,-0.05691225,-0.04129159,-0.00965835,-0.020110171,-0.010794746,-0.025426326,0.009925761,-0.037878122,0.028056601,-0.086958006,-0.015545483,0.06598182,-0.027560709,0.07025469,0.031953085,0.006705818,-0.009055048,-0.09339173,-0.047826674,-6.211417e-08,0.041104283,-0.043138623,-2.3322748e-06,-0.0012000724,0.041505348,-0.02016116,-0.029511483,0.0532289,0.05679273,0.049416892,-0.01621471,0.012867294,-0.06097366,-0.015872272,0.0027136141,0.07122033,0.1128329,0.038250536,-0.022087459,-0.05156326,0.07642214,0.022470746,-0.09162211,0.003230643,-0.023972781,-0.0036571138,-0.022018196,-0.002395798,-0.06923117,0.02858904,-0.06959356,-0.06844993,-0.00042834145,-0.109303825,-0.030883789,-0.033623174,-0.0045197797,-0.023143401,0.05307924,-0.026764458,0.07255611,-0.0434317,-0.09949877,0.022988304,-0.09028307,-0.019291142,0.018563965,0.033600215,-0.0032260893,0.035074867,-0.0808961,-0.03273911,0.05441994,0.0075605223,-0.0093644215,-0.044803817,0.04825127,0.04342634,0.011224739,-0.051986177,0.10881303,0.11652535,-0.02510132,-0.057808504} 0.9166667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:59.739236+00 2026-01-30 02:01:10.189242+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1563 google ChZDSUhNMG9nS0VJQ0FnSUNQMklIUUR3EAE 1 t 1566 Go Karts Mar Menor unknown Excellent track. excellent track. 5 2025-01-30 01:52:39.833374+00 ca v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Excellent track."} {-0.105522625,0.027880233,-0.006382263,0.057457227,-0.03323594,0.10220606,-0.0038069845,-0.05751634,-0.03302093,-0.09788335,-0.02220207,0.04112612,-0.03888459,-0.06443971,-0.053464994,0.0791565,-0.016693978,-0.04651957,0.051072445,-0.030283868,-0.07888039,0.011522215,0.079602875,0.0478986,-0.13979872,0.075114325,-0.016884312,0.0029935534,-0.038487326,-0.036885083,-0.045582067,0.0443532,0.026596583,-0.0026003805,-0.027789848,0.0072239432,0.0063322685,-0.026592027,0.041819014,0.035460472,-0.037606567,-0.0029499508,0.055164646,-0.006382095,-0.024646584,0.06527019,-0.028354667,-0.06543348,0.046993643,0.035856403,0.026363898,0.0005959375,0.015636269,-0.05151753,-0.045614354,0.055793997,0.057811238,-0.042003147,0.028079165,-0.09820659,-0.0014211776,-0.0054336637,-0.09310904,0.016509106,0.053064216,-0.029946392,-0.03217951,0.05036328,-0.044165973,0.08101858,0.07012908,0.055955663,-0.007128053,-0.04584899,-0.011145713,0.052162293,-0.02204715,0.03280244,-0.007815173,-0.04032581,0.06836967,-0.0680503,0.008918922,-0.080676205,0.023433825,-0.061440706,0.07797953,-0.009775888,-0.033269268,0.022087859,-0.023173828,0.03883483,-0.03550338,-0.029055938,0.028930364,0.0008223863,0.00526253,-0.0054523926,-0.001133107,0.109201804,0.07347354,0.04697031,-0.016257925,0.10590986,-0.031637836,-0.03883452,0.010069881,0.08741445,0.027678607,-0.05484779,0.13155499,0.016730633,-0.014985679,0.098507844,0.033904217,0.08123626,0.0051775128,0.03805856,-0.042369537,0.0033442627,0.0042878618,0.0011358305,-0.029822813,0.024343487,-0.009918561,-0.060716365,0.063185655,-7.810276e-33,-0.008893837,-0.00012827684,0.03866467,-0.039724812,0.09881128,-0.010827574,-0.09248943,-0.036180533,-0.059255324,0.06551802,-0.038951218,0.014660357,-0.021957852,-0.07550454,0.026993878,-0.07581425,-0.0645051,0.034866314,-0.026776921,0.09925789,-0.029800199,0.08195542,-0.009082802,-0.056044616,0.017149623,-0.020620804,0.027855424,-0.019111866,0.05343664,0.022331579,-0.03948714,0.009865676,0.0059575196,0.06442175,-0.0093525285,-0.0006286249,-0.06329802,0.005158732,0.021208985,-0.019399887,0.059036355,0.0019944238,-0.012212477,-0.023572935,-0.05319228,0.06215234,0.015812214,0.0891468,0.10856644,-0.005448653,-0.006719799,-0.030115722,-0.10088858,-0.019828498,0.028188454,-0.027279627,0.028517224,0.052637663,0.030923525,-0.006100769,0.072646014,0.06256381,-0.078798115,-0.062381618,-0.020435698,0.081804484,0.011150159,-0.0053878734,0.04869256,0.02964626,-0.09966422,-0.062579624,0.0734184,-0.07019846,0.073214136,-0.020085175,-0.05042612,-0.015740994,-0.0105651235,-0.002399234,-0.059831448,-0.022190897,0.012878297,-0.017886808,0.060235325,0.027645525,-0.022201141,-0.063833214,-0.048308305,-0.03733627,-0.01865334,0.012847466,-0.00044487667,0.022337511,-0.07376466,6.925387e-33,0.07993703,0.13375403,0.11062958,0.09814862,0.0065791444,0.066781655,-0.03592924,0.039887514,0.022783063,0.07229489,-0.027288973,-0.040095,0.0029645772,0.032668192,-0.028442746,-0.038690418,0.072684266,-0.009501629,0.06479079,-0.1288007,-0.029746983,-0.026810009,0.017953863,-0.0013083939,-0.0017815948,0.02272111,0.029896319,0.020275032,0.016034067,-0.016090846,-0.022461865,0.026842844,-0.044148214,-0.06920633,-0.037799597,0.1212186,0.005870236,0.034247324,-0.07003804,-0.043429002,-0.025479406,0.08971035,-0.0086256545,0.049496286,0.0047217463,0.0030246847,0.048254397,0.1613071,-0.10020293,0.057994593,-0.009006694,-0.032256886,-0.030723922,-0.037393793,-0.04686152,-0.012636841,-0.0027582508,-0.03337501,-0.021122023,-0.037256185,-0.089454174,0.122749396,-0.0567656,-0.01506762,0.088674106,0.013837348,-0.026474677,-0.060392972,-0.017085353,0.02409055,-0.061250295,0.026818857,-0.06760517,-0.0013137615,-0.010907191,-0.061345983,-0.02638178,0.00900273,0.011447015,0.01584994,-0.013083291,-0.053878542,-0.00365993,0.008225027,0.06397499,0.06521305,-0.03969182,-0.014766541,-0.020319166,0.10613548,0.0318587,0.04784806,-0.030416386,-0.007347942,-0.08390541,-1.4807005e-08,-0.00939445,0.07469662,-0.01537468,-0.061701145,0.042238124,0.035176035,0.07194182,-0.02864784,-0.053947594,0.00059353653,0.0710477,0.00051977887,-0.042549152,0.1223972,-0.037980307,-0.0463805,-0.029122127,0.14042233,-0.06767557,0.08129882,-0.0017242386,-0.014432192,0.050003506,0.03431952,0.015971154,-0.006489342,-0.032792844,0.06516481,0.0045017265,-0.07426096,0.047575314,0.12410106,-0.0017404533,0.030161079,0.033438716,0.01737392,-0.038659222,0.04880832,0.06013127,-0.05893938,-0.02670424,0.05668115,-0.0055550477,-0.07082681,-0.02246931,-0.07154022,0.013587581,0.006872726,-0.027533745,-0.050720796,0.036713164,-0.06882305,-0.017775841,0.057353728,0.075959474,0.03895385,-0.026240489,-0.014978589,-0.077500805,0.011319954,0.026660267,-0.009191182,0.03965282,0.052374974} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.633945+00 2026-01-30 02:01:09.808629+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1761 google ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB 1 t 1764 Go Karts Mar Menor unknown Nunca habia dejado reseña aquí y ya tocaba. Llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin. Ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como las chicas de la barra, la organizacion, el detalle y el mino. Vuestros asturianos favoritos recomiendan 100% vuestro negocio. nunca habia dejado reseña aquí y ya tocaba. llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin. ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como las chicas de la barra, la organizacion, el detalle y el mino. vuestros asturianos favoritos recomiendan 100% vuestro negocio. 5 2024-01-31 01:52:39.833374+00 es v5.1 P1.01 {J2.01,O2.04} V+ I3 CR-N {manolo} {"P1.01": "Ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como l", "R4.03": "Llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin.", "V4.03": "Vuestros asturianos favoritos recomiendan 100% vuestro negocio."} {0.031638764,0.017075777,0.03280586,-0.067910925,-0.07789585,0.0674358,0.05800929,0.027838597,-0.020990321,0.036187295,0.030332102,-0.0024475006,-0.0029501924,-0.027934263,-0.023119705,-0.022496179,-0.054085437,0.013257152,-0.014360353,0.0003979984,0.007833682,-0.022826169,-0.081358805,0.057745136,-0.032982588,0.008481154,-0.10761678,0.0030976513,-0.018809106,-0.039938476,-0.018587632,0.123453654,0.044576682,0.034013283,-0.12236933,-0.022364754,0.032606326,0.048374884,0.0053391685,0.09711243,-0.062770024,-0.0411398,0.011377551,0.029355412,0.011055876,-0.043420862,-0.018627737,0.043939978,0.08707973,-0.028863713,-0.06488028,0.026758844,0.01975054,0.045358527,-0.10938028,0.008590214,0.016554736,-0.07218552,0.069162056,0.018709412,-0.020142494,0.036849212,0.0208107,0.017735224,-0.022968799,-0.045012485,0.02767747,-0.02181935,-0.04342259,0.002486957,0.108197585,-0.016009353,-0.046072006,0.0143218385,-0.037638526,0.06779925,0.0067006326,-0.018446723,-0.0030469878,-0.04391744,0.015936686,-0.05116506,0.02975644,-0.011155964,-0.007816718,-0.060575146,-0.08029271,0.006605587,0.03879414,0.03195194,-0.040094934,0.09748481,0.001224466,-0.044839118,-0.023632623,0.03418529,0.01641859,-0.080837965,0.050194565,0.02502301,0.0872746,0.0630558,-0.0031360977,0.03799935,0.019753719,0.022534441,0.0726126,-0.05334085,0.025788264,-0.018541874,-0.0862386,0.0051396457,0.008175498,-0.045471948,-0.07786317,0.015042142,-0.06405867,0.012129115,-0.059439044,-0.0716893,-0.001000017,0.11448074,-0.05038776,0.0065295873,0.06107104,-0.06836703,-0.0031569381,1.2842232e-32,-0.044466183,-0.013527343,0.0017921965,0.1175789,-0.027522895,0.028366601,-0.052553985,-0.026395006,-0.13905434,0.01181063,-0.09448194,0.00032463053,-0.055827845,0.006208805,0.084817275,0.06419612,-0.028288672,-0.042889334,0.02278226,-0.0023151725,-0.055384085,0.02798796,0.0069405246,0.011433407,0.04025472,0.07844424,0.0061827535,-0.033659916,-0.029088179,0.03734246,-0.010608188,0.07539353,0.029355675,-0.05467233,-0.07502303,-0.02292002,0.0027812938,0.05039307,-0.020162037,0.004701951,0.06989873,0.07659979,-0.10387779,0.0067273816,0.045799285,-0.0012125567,0.15159534,-0.036693726,0.095140345,0.042926446,-0.11552132,-0.06042979,-0.039913435,-0.033017766,0.023063386,-0.04359453,-0.07370077,0.052102774,-0.0035734356,-0.013587742,0.079343535,-0.030469641,-0.006154289,0.0074547464,0.017981067,0.019368237,0.079410195,-0.040302318,0.09353714,0.043123674,-0.03802243,-0.059056178,-0.017911403,-0.07001745,0.037335653,-0.0017574722,0.0013763172,-0.009526825,0.017057676,-0.03630294,0.053413864,-0.0017265584,-0.027999008,0.08357234,0.12637506,0.103478216,0.09165141,-0.006097011,-0.046397768,0.07209292,0.074317336,-0.011963462,0.064163156,-0.074330755,0.04775531,-1.2627451e-32,0.039754476,0.005814614,-0.0049589896,0.031108586,0.09657341,0.0040582386,-3.9682596e-05,0.06431996,-0.015690919,-0.04670321,-0.030660111,-0.12340336,0.05792938,-0.062214274,-0.08411805,0.068860225,0.027499866,-0.033284802,-0.09305988,-0.0153337885,-0.08655175,0.008149427,0.035192624,-0.042702146,-0.0009146747,-0.03434896,0.010684748,0.024972197,-0.09065389,-0.020707715,-0.037510484,-0.035267953,-0.015322756,-0.014306926,0.0071703824,-0.005170956,0.0120722065,0.039346866,0.026922083,0.059919763,-0.008059983,0.044836,0.0028076917,-0.058529288,-0.021758923,0.02690437,0.01303252,-0.13058777,-0.025005797,-0.037237547,0.08559767,-0.08973493,-0.044073686,0.025778536,0.10126292,0.01016332,-0.05128792,-0.005963746,-0.037486948,-0.012572125,0.031579725,0.046195567,-0.081575595,-0.022939123,0.033457078,0.07295214,-0.063506074,0.03050798,-0.029500205,0.01461889,0.046662,-0.012175618,-0.056159567,-0.029185688,-0.013164024,-0.029182903,-0.049878467,0.01823816,-0.01274621,0.0020059368,-0.01945943,0.03262737,-0.08138942,0.010469878,0.012748092,-0.034172937,-0.020162992,0.08503995,-0.019865109,0.06701614,0.0026422415,-0.008467455,-0.020221567,-0.10596235,0.05457768,-5.6138095e-08,0.03577506,-0.011571527,-0.09259077,-0.06113999,0.035828054,0.05923606,-0.018122166,0.019581148,-0.02985147,0.06918002,0.09757407,0.00019363973,0.01979566,0.0077152303,-0.011882109,-0.0033036638,-0.0011989154,0.06143273,-0.026232064,-0.041455716,0.10366998,0.045914996,-0.023305513,-0.0044197147,-0.03662877,0.018313237,-0.072509594,-0.06250377,-0.023496034,-0.07061314,0.016931102,-0.01410678,-0.035271868,-0.15507644,-0.015509259,-0.028308425,-0.0382043,-0.05224353,0.032700323,-0.08244355,0.09727165,0.0031305482,-0.123690434,0.023700537,-0.049141306,-0.041948438,-0.008625319,0.024820572,-0.011481773,0.033828467,-0.05436601,0.016145714,0.005684152,-0.0022638687,0.0182422,-0.0069536464,0.0402061,0.012888858,-0.035473578,-0.05542553,0.104830325,0.03817411,-0.00319321,-0.11341835} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:40.341992+00 2026-01-30 02:01:10.609336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1799 google ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB 1 t 1802 Go Karts Mar Menor unknown Ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. No puede salir un niño de 13 años con tíos de 40 que no hacen nada más que comérselo en la pista. Además creo que fueran 10 min en vez de 8 tampoco estaría mal!! La organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utilizan. El circuito es bueno con su curvas cerraditas y un par de rectas buenas. ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. no puede salir un niño de 13 años con tíos de 40 que no hacen nada más que comérselo en la pista. además creo que fueran 10 min en vez de 8 tampoco estaría mal!! la organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utilizan. el circuito es bueno con su curvas cerraditas y un par de rectas buenas. 4 2023-01-31 01:52:39.833374+00 es v5.1 O4.04 {A3.02} V- I2 CR-N {} {"E4.03": "La organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utiliz", "O2.03": "El circuito es bueno con su curvas cerraditas y un par de rectas buenas.", "O3.02": "Además creo que fueran 10 min en vez de 8 tampoco estaría mal!!", "O4.04": "Ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. No puede"} {0.054779615,0.099195085,0.013973614,-0.068310946,-0.03512121,0.022307495,0.045411114,0.074895546,-0.03963548,0.009369542,0.11620715,-0.0333945,-0.043191884,0.046069447,0.040173292,0.0060533807,-0.002539811,-0.0063281325,0.026198264,-0.022398416,0.070478246,-0.019078359,-0.043183215,0.06556692,-0.11651538,0.06015122,-0.026080297,-0.033790406,-0.08318828,-0.054680817,0.035262946,0.07553866,0.08148105,-0.046799995,-0.025727715,-0.034443986,0.001835138,-0.06807903,-0.027606102,0.09456248,-0.06675375,-0.03088002,-0.054240096,-0.07734488,0.008591302,-0.056219816,0.07073378,-0.021451486,0.097339004,-0.04805594,0.014073578,-0.015939424,0.045993254,0.03917119,0.014650652,-0.0783999,-0.088034354,-0.07115102,0.08028431,0.039696213,-0.11446314,0.08708313,-0.060269788,0.033889454,-0.021194406,-0.05419453,0.0237593,-0.017396074,0.047275636,0.07288097,0.07924193,-0.022429693,-0.049309436,0.049363196,0.0064760502,0.029356143,0.008613346,-0.048655566,-0.00021739982,-0.09291151,-0.018297464,-0.046134472,-0.033731468,0.0296652,0.0020767294,0.0045908773,0.0033705404,0.081602626,-0.04075122,-0.0143206455,-0.0003616288,0.12736942,-0.06589503,0.0019384329,-0.0021505284,-0.032346033,0.020316122,-0.05336369,-0.08015872,0.01782508,0.01001336,0.019569773,-0.016977612,0.06196727,-0.05412073,0.025235586,0.04365846,-0.027279537,-0.036008064,0.022815116,-0.043756377,-0.006427123,-0.03337302,-0.01904611,-0.031875443,-0.024332542,-0.05429317,-0.0370962,0.01886152,-0.04098048,0.01772923,-0.012218636,-0.048683748,-0.037198316,0.010423942,-0.03717293,0.07067754,1.2665439e-32,0.0030487748,0.0034017994,-0.014383204,0.06442604,0.024143448,0.055770863,0.060707115,-0.035956033,-0.026636485,0.0018122566,-0.070218086,-0.042835195,-0.07057594,-0.00093308516,0.06875752,0.0061087157,0.018480668,-0.012735565,-0.003127633,0.017325092,-0.06785737,-0.109472014,-0.07589862,0.04420586,-0.0153589435,0.017816272,-0.046028964,0.06862108,-0.00042178362,0.036316983,0.014788028,0.05354821,-0.0033202867,-0.016800258,-0.07200346,-0.07435009,0.13435726,0.04838842,-0.028340736,-0.076696075,-0.015456226,0.012284537,-0.008145454,0.068688646,0.042039227,0.044448067,-0.014887817,-0.07343714,0.042494796,0.025927393,-0.06288658,0.046466757,-0.0025332747,-0.01206981,-0.026255738,0.06504718,-0.060086805,-0.042129822,-0.090533115,0.03387567,0.0723352,0.04073774,-0.040992063,-0.06336239,-0.002555098,0.01968899,0.08433161,0.045064673,0.15739258,0.010541355,-0.052802015,0.019110613,-0.033694487,-0.02013441,0.03186527,-0.029753124,0.042970266,0.023855751,-0.012128894,0.027159866,0.031282667,-0.09196413,-0.010334891,0.03352754,0.09014373,0.031134872,0.028373368,0.015964555,-0.05089687,0.11557248,-0.018184962,-0.029495291,0.082757846,0.006229957,0.034892343,-1.4947056e-32,-0.026258126,0.015356054,0.023883225,0.010142116,0.023587225,-0.015798705,0.031757433,0.085532546,-0.0021654677,-0.051151514,-0.06684704,-0.058454122,0.08116855,-0.07471472,-0.025723122,0.07142375,-0.008244039,-0.037226237,-0.022228915,-0.04753958,-0.022237053,0.06280282,0.020240791,0.014304204,0.004134367,-0.081449956,-0.031327467,-0.033992957,-0.07516384,0.032790925,0.047202922,0.0056235567,0.05087566,0.14289156,-0.06915894,-0.07087927,0.0052056946,0.029500343,0.032797616,0.014921413,0.0006605507,-0.013080156,0.0069632926,-0.0511949,-0.068004094,0.054383475,0.031630524,-0.088576995,-0.056620665,0.02533922,0.047352117,-0.04777181,-0.030857744,-0.05447352,0.04776655,-0.08632978,0.023150152,-0.09371025,-0.036298685,0.046155374,0.07602289,-0.017438816,-0.074844606,-0.04916474,0.03494388,0.007377091,-0.048338175,0.00039466258,0.04088432,0.033984207,0.078170784,0.0112816775,-0.078061946,-0.017261803,-0.07424083,-0.16693406,-0.09917466,-0.0037572316,-0.06520432,-0.03443042,0.003133781,0.01545213,-0.042517923,-0.086367756,-0.002753666,-0.052812528,0.015665885,0.000103653736,-0.012610514,0.09776545,0.013669139,0.058686115,-0.03298551,-0.025509916,-0.044181604,-5.5337086e-08,0.013166341,0.011603615,0.0027902639,0.019632304,0.058563408,-0.027207067,-0.016786646,0.03842942,0.024754556,-0.010197931,0.029772658,0.008640644,0.054320298,0.015877318,0.015001349,-0.0133533245,0.121493034,0.026292251,-0.02251803,-0.079364255,0.084204406,-0.0013574252,-0.02341385,0.024391236,-0.056703936,0.006309712,0.04199221,0.038532835,-0.037930153,-0.028454218,0.009450024,-0.05229152,-0.042563517,-0.036724944,-0.055151653,-0.059994437,-0.022393214,-0.011791053,-0.053553812,-0.022632696,0.010949776,-0.12680303,-0.11015798,0.003447996,-0.07303384,-0.094417356,-0.011027796,-0.014901514,-0.0037802611,0.07965918,-0.0007796166,-0.036149457,0.08446985,-0.043038554,0.116978794,-0.02178385,0.0216105,0.0072018923,0.035818838,0.0056197606,0.048382327,0.07765905,-0.0023165455,-0.035981026} 0.975 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:41.737082+00 2026-01-30 02:01:10.750261+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1771 google ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE 1 t 1774 Go Karts Mar Menor unknown Dit is een fantastische race track! Niet alleen het circuit is cool, het is er (zelfs in het weekend) betrekkelijk rustig, de service is snel, goed en vriendelijk en de drankjes ( inclusief sterke drank) zijn er spotgoedkoop.\nEr zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving en voor volwassen van 200 tot 400cc ... ook eigen motors zijn welkom! dit is een fantastische race track! niet alleen het circuit is cool, het is er (zelfs in het weekend) betrekkelijk rustig, de service is snel, goed en vriendelijk en de drankjes ( inclusief sterke drank) zijn er spotgoedkoop. er zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving en voor volwassen van 200 tot 400cc ... ook eigen motors zijn welkom! 5 2020-02-01 01:52:39.833374+00 nl v5.1 O1.02 {E1.04} V+ I3 CR-N {} {"O1.02": "Dit is een fantastische race track! Niet alleen het circuit is cool, het is er (zelfs in het weekend", "O2.01": "Er zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving", "P1.01": "de service is snel, goed en vriendelijk", "V1.01": "de drankjes ( inclusief sterke drank) zijn er spotgoedkoop"} {-0.08030592,0.11017377,0.04287032,-0.061887063,-0.04424592,-0.029379873,0.032323938,0.07289786,0.00043105468,-0.026105816,-0.027017023,-0.017660761,-0.032052908,-0.058269154,-0.020827824,-0.0746089,0.016885377,0.058080785,-0.042181063,-0.01745391,-0.04792007,-0.058076,0.043057714,0.00865742,-0.037713606,0.041526426,0.023699792,0.08314665,-0.004066503,-0.05878264,-0.009707811,0.039902776,-0.03485629,0.01801698,-0.01516727,-0.011667105,0.02328182,-0.07758558,-0.004864409,0.06031663,-0.026566032,-0.037577514,-0.10350422,-0.032381598,0.08561506,0.10268921,-0.02439872,0.0047601913,-0.045326713,-0.06500216,0.010814415,-0.026164072,0.1457204,-0.03588185,0.0023576193,-0.015486046,-0.021780858,0.058049697,0.040178414,-0.03259029,0.0656769,-0.021151973,-0.08059239,-0.0014905285,-0.053004343,-0.084075354,-0.046502843,0.0776073,-0.052981175,-0.0006514265,0.045974925,-0.00063205865,-0.038302507,-0.03187216,-0.03786494,0.0592908,-0.064369544,-0.067257226,-0.016998477,-0.016842881,0.08414911,-0.08345642,0.054925755,-0.046085056,0.042307932,-0.000821176,0.03265712,0.023914594,-0.0023187774,-0.056251135,-0.06305864,0.025880551,-0.03594478,-0.027280891,-0.035836287,0.036673713,0.012798651,0.058120128,0.023237722,0.05962958,0.08676803,0.0243185,0.018145539,0.03199833,-0.078062765,0.03609532,0.06267399,-9.122379e-05,0.09273835,-0.05426217,-0.046336565,-0.049611945,0.026242435,-0.09862898,-0.045648105,-0.018087516,-0.11273755,0.014235045,0.04863117,0.04184543,-0.016308794,0.0032677571,-0.049333733,0.097979814,0.059308685,0.026704956,0.06870722,1.6356747e-32,-0.077975824,-0.035575937,-0.024934933,-0.013312587,0.043309692,0.037929986,-0.101897575,-0.033932883,-0.050148617,-0.058984477,0.032057375,-0.0056822225,-0.041323207,-0.02776963,0.009054991,-0.066917405,-0.023922132,-0.028730683,-0.032934487,-0.021221122,0.059437435,-0.0010296161,-0.031135619,0.056378383,0.017761735,-0.027462952,-0.004446769,-0.10748817,-0.0068013556,0.038535535,-0.001099923,-0.06221409,-0.031492773,0.043569908,-0.109949045,0.020423137,-0.009992507,-0.038672127,-0.004818706,-0.11929264,0.019554,-0.09285388,-0.046045046,-0.0064277584,-0.09347908,0.12687248,0.05571662,0.009736111,0.06926801,-0.0048018224,-0.09870906,-0.023782117,-0.075522766,-0.012750508,0.02010255,0.023704275,0.03807632,0.018318715,0.05070973,-0.022046138,-0.034588948,0.11146489,-0.03623004,-0.07866604,0.01396699,0.021997385,-0.012342526,-0.037984997,0.028613878,0.0315673,-0.03139402,-0.006420519,0.01059807,-0.016267344,0.046367336,0.056727365,-0.007459717,0.00036042408,-0.026342124,0.02560818,-0.0953402,-0.0778906,-0.064493425,-0.08345262,0.072687685,-0.02113997,-0.005628327,-0.07786413,0.042868856,0.08846222,-0.012285024,-0.0269647,-0.023812275,0.03023961,-0.0020572331,-1.5386043e-32,0.0072728866,0.09544244,0.0049124677,0.10067862,0.030628128,0.052672278,-0.012626317,0.01505912,0.046878632,0.0034206423,-0.0014636338,-0.0498389,0.04998303,0.0075313286,-0.045627043,-0.03597689,0.024605436,0.01993744,0.032767694,0.0038435322,-0.011030902,0.016694285,-0.010020875,0.06549645,-0.04484424,0.018661566,0.04125873,-0.035683673,-0.020236462,-0.027678289,-0.026224837,-0.014453377,0.007060225,0.03237559,0.008333383,0.038024493,0.08046556,0.050849125,-0.08006231,-0.047214337,-0.011627675,-0.02431541,-0.0007576537,0.055862978,-0.008980439,-0.008139451,-0.06075636,0.009294464,0.03561929,-0.02138468,0.0514783,0.071287364,-0.022645062,0.021179754,0.050321814,0.011697425,0.062308807,-0.05550541,-0.105789006,-0.019550415,0.0471753,0.036768723,0.015746336,0.052079942,0.053978663,-0.10768758,-0.11313244,0.050706655,0.07618773,-0.04005973,0.037285548,0.0198731,-0.035968408,-0.008412663,-0.06986365,-0.028744861,0.020319361,0.02560659,0.06035352,0.014664251,-0.051347475,0.03578851,0.0043626265,0.0069380444,0.018600935,0.013626079,0.0059673106,0.0005213511,-0.018343884,0.008564528,0.09797251,0.06610042,0.015121891,0.11545438,-0.059801824,-5.3582372e-08,0.013495559,-0.03586701,0.021684388,0.018441709,0.05826084,-0.1703159,0.084999256,0.00892776,-0.12089902,0.0765216,0.09548683,0.011366696,-0.05466896,0.03940199,0.0788139,0.043447476,-0.019936427,0.06731121,0.0061022714,0.04046078,0.038875654,-0.028900746,-0.017339356,0.042344905,-0.001531781,0.026858848,0.04240999,-0.027999448,0.13552137,-0.111437105,-0.03528277,0.03646071,-0.011310495,0.0104223,0.0048104627,-0.006062906,-0.13998535,0.09366413,-0.040070113,-0.00939618,-0.004247961,-0.04690847,0.035882056,-0.015094377,-0.0384254,-0.0057103476,0.0011353344,-0.048917588,0.045383696,-0.03506097,-0.115938075,-0.0022784495,0.054179333,0.10971027,0.02967836,0.0443513,-0.06192964,0.0006746217,-0.06187375,-0.0076696286,0.03691332,0.009346255,-0.011452677,0.023667196} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:05.69255+00 2026-01-30 02:01:10.648713+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1564 google ChZDSUhNMG9nS0VJQ0FnSURCOXQtVUZnEAE 1 t 1567 Go Karts Mar Menor unknown Great stuff, great circuit great stuff, great circuit 5 2023-01-31 01:52:39.833374+00 ro v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Great stuff, great circuit"} {-0.08130083,0.07346816,0.015008373,-0.019133905,-0.04247602,0.0033806688,0.07060905,0.03669647,-0.018053984,0.024169935,0.092165485,0.07483756,0.024297262,-0.02281401,-0.07222323,0.06570322,-0.03182249,-0.001211557,-0.0019247606,-0.07292151,-0.04025115,-0.06365589,0.06498287,-0.035204384,-0.10285947,0.09140637,0.003553586,0.004881723,0.0011683159,-0.11215328,-0.084324,0.02492679,0.019902403,-0.05658188,-0.044470184,0.053584103,0.02147177,-0.015311862,0.017270254,-0.0031062926,-0.023600876,-0.04429045,0.064973824,0.01968208,-0.016788613,0.09611558,0.03063418,-0.031888112,0.1109109,-0.01662085,0.038825963,-0.015895043,0.006413684,0.027064241,-0.016744707,0.057230007,-0.034256186,-0.010139127,-0.011586217,-0.113444515,0.08125357,0.022830578,-0.063033104,0.030734792,0.007867475,-0.031837802,-0.01751294,0.044637326,-0.041219786,0.07393808,-0.02281654,0.03893144,0.006975974,-0.04216804,0.058845233,0.06339401,-0.00078898034,-0.007817234,-0.005889342,-0.02164878,-0.019809213,-0.054400083,-0.074594155,0.00030728368,0.030882232,-0.0557076,0.03858714,-0.038659893,-0.014356232,-0.031018004,0.05521331,0.055548783,0.037469346,-0.0040686023,-0.04008657,-0.020700576,-0.023203025,-0.06429733,-0.029198779,0.046459295,0.026588434,-0.02384241,-0.003315989,-0.028073737,-0.04249975,0.0028164147,-0.005423519,0.06581386,0.019463912,-0.05379337,0.045754407,0.07348487,-0.05158025,0.073012955,0.054211736,0.017228229,-0.025580976,0.039957423,-0.06388395,-0.064603314,0.015488353,0.05883569,-0.047452565,0.02666626,-0.016159363,-0.0054184734,0.04947822,-2.4204154e-33,-0.012856179,0.078633346,-0.032790236,0.07366189,0.039165813,0.057349946,-0.027854307,0.022519073,-0.050685097,0.017460248,-0.01814071,0.11902077,-0.009729058,0.072469786,-0.07423628,-0.16147935,-0.031813275,-0.03770209,0.11456654,-0.014089585,-0.0007292818,-0.025578406,0.0050107595,0.06536909,0.0833774,0.002485864,-0.0064383443,-0.013168442,0.0365205,0.023722503,-0.033394136,0.004904432,-0.004283716,0.014544976,-0.039973874,0.05207807,-0.095782444,-0.016277092,0.02984412,0.017920373,0.044828944,0.014619281,-0.0671721,-0.021716341,-0.0647304,-0.03191755,-0.047928885,0.11534451,0.12914564,0.055094846,-0.09625769,-0.07143556,-0.08696849,0.083805226,-0.026887396,-0.0062337997,-0.014472621,0.080328315,0.04412633,0.052460324,0.023328437,0.11588073,-0.06116472,-0.08036209,-0.09027777,0.09223021,0.018737806,-0.10483514,-0.029755201,-0.026003042,-0.07153313,0.0021449775,0.105375476,-0.030293407,-0.0069029527,0.0034244482,-0.038830135,-0.05186623,-0.045982867,-0.035309218,-0.012982641,-0.05484692,0.012057354,-0.03275508,-0.025620908,0.02934064,-0.013115986,-0.048648313,0.052971814,0.03112804,-0.016486876,-0.011613461,0.089727975,-0.0036415325,0.0070719277,1.2340311e-33,0.020669123,0.05664302,0.042943936,0.060445175,0.021937959,0.0020656995,-0.04493337,-0.014649373,-0.036889035,0.058720615,0.091036566,0.034913007,-0.01860366,-0.018593311,-0.012357305,-0.0021995262,0.056039434,0.016839365,0.014615863,-0.09883472,0.008984013,0.04134305,-0.048862718,-0.06543806,-0.030025166,-0.013294394,-0.038798045,0.028201867,0.09971296,0.0066231033,0.050881855,0.03764719,-0.04832945,-0.033747576,-0.04935861,0.0007826087,0.05591156,-0.0073781926,-0.00103357,-0.08683629,0.04516808,0.0673795,-0.010551744,0.089115806,-0.028980875,-0.005735124,0.03802234,0.031740993,-0.05225363,0.05021002,-0.039003972,-0.10009028,-0.0023431715,-0.057610072,-0.04371783,-0.05439656,0.03703085,0.031557016,0.039352715,-0.010376673,-0.037758976,0.015737263,0.0018848062,-0.022546604,0.08127862,-0.062777355,0.025509343,0.058351018,0.047690473,-0.0065834573,0.012206883,0.071285136,-0.012429212,-0.009345535,0.0011316321,-0.11714848,0.063000135,0.021325726,0.04045883,0.028012654,0.07817406,-0.046585586,-0.027589004,-0.09092852,0.041186493,0.025103927,-0.01470518,0.0014345922,-0.015186941,0.047505356,-0.13515235,0.12849535,-0.03488984,-0.013635723,-0.01577351,-1.5386176e-08,0.035278138,0.03665235,-0.08023299,-0.003890246,0.08828526,-0.04793575,0.07956306,-0.007541909,-0.07318422,-0.020405628,0.10570196,0.022893248,-0.044623245,0.059554975,0.10629184,-0.063813575,-0.018301554,0.07542705,-0.007298797,0.0045275684,-0.07883714,-0.031275697,0.0952769,0.037605405,0.025817003,-0.015168518,0.05735867,0.052716818,-0.016881954,-0.024355775,0.010874437,0.09587021,-0.029553007,-0.067536674,0.03654341,0.09368502,-0.06459093,-0.033799853,0.07379886,-0.09053867,-0.018577533,-0.09364496,-0.047499582,-0.008142186,-0.048904493,-0.06186834,0.0233809,-0.04241035,-0.021815795,0.039452765,0.022644047,-0.03563999,-0.016282015,0.01736587,0.043888282,0.036006026,0.022502255,0.0033997206,-0.033240046,0.06332614,-0.02884884,0.02526117,-0.010791034,0.038080156} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.647078+00 2026-01-30 02:01:09.81413+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1877 google ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE 1 t 1880 Go Karts Mar Menor unknown Somos de Galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de acudir por lo menos unas 3-4 veces al Go Karts Mar Menor, personal de 10, circuito de 10 y Karts de 10, muy recomendable la experiencia con el F400! Tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vuelta rápida, una pasada! somos de galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de acudir por lo menos unas 3-4 veces al go karts mar menor, personal de 10, circuito de 10 y karts de 10, muy recomendable la experiencia con el f400! tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vuelta rápida, una pasada! 5 2022-01-31 01:52:39.833374+00 es v5.1 R4.03 {} V+ I3 CR-N {} {"O1.02": "personal de 10, circuito de 10 y Karts de 10", "O1.05": "muy recomendable la experiencia con el F400!", "O2.04": "Tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vue", "R4.03": "Somos de Galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de ac"} {0.0057644127,0.047534462,-0.08008432,-0.08473471,-0.079256766,0.034392085,0.011045497,0.1405673,-0.04489368,0.011733764,0.06879812,0.020690463,-0.0163855,0.021638159,0.03036095,-0.050451625,-0.008360128,-0.019969398,-0.026946303,0.003549538,0.023704497,-0.09983167,-0.042628918,0.05625476,-0.06074333,-0.07947218,0.034721736,0.011327889,-0.0548999,-0.08735655,-0.024533479,0.081187956,0.06248542,0.01796224,-0.018912762,-0.049059805,0.011133387,-0.05993652,-0.03416996,-0.008740705,-0.0929046,-0.06523178,-0.0104790805,-0.070205145,0.029865896,-0.0029165468,-0.0003134566,0.054417286,0.053031765,-0.025800673,0.0009170967,-0.014950398,0.046077956,-0.021670742,-0.017910847,-0.0652603,-0.028119039,0.022914823,0.06436735,0.046053708,0.013948604,-0.0048028836,-0.07892715,0.07012203,-0.10457147,0.0074307304,0.012436256,-0.053676523,-0.040809598,0.055191547,0.09897316,-0.09638542,0.0042438908,-0.015582299,0.052351184,0.029431883,0.009612349,-0.006367132,-0.06977954,-0.0440737,0.05025411,-0.03072325,-0.03182328,-0.06120869,-0.006819839,-0.050277904,-0.035758056,0.046204492,-0.010477579,-0.021897452,-0.02511236,0.014650403,-0.065903924,-0.04093815,-0.047047712,0.03757698,0.041631468,-0.0351619,-0.03202731,0.0035934914,0.0764079,0.014536258,0.06715127,0.023747714,-0.05443208,0.09923538,0.08457381,0.035958767,-0.037473235,-0.050654296,-0.05348104,0.047687925,-0.06543211,-0.09385509,-0.025386615,0.01049294,-0.067579515,0.033188626,0.06427713,0.0056724558,-0.035395253,-0.08711993,-0.014609055,0.020862764,0.04421548,-0.05554786,0.0028572544,1.0305996e-32,-0.09478868,0.050362185,-0.078663446,0.05548837,0.04775033,-0.06527059,0.009536527,-0.03886647,-0.024555296,-0.027657326,-0.048688907,0.01618437,-0.038280603,-0.0333465,0.10012878,-0.022897778,-0.027974986,-0.05154451,0.011272203,-0.032479104,0.061819643,-0.07908806,0.07683869,0.019413982,0.06903136,0.13454749,0.042633638,0.024819361,-0.054625306,0.06614974,-0.04462294,0.036424764,-0.038561,-0.069838345,-0.009242964,0.02457167,0.04756284,2.8352301e-06,-0.038736988,-0.03418897,-0.029163158,0.0043598474,-0.071537144,-0.030185021,-0.024504751,-0.0067314985,0.04363291,0.08709587,0.092399724,0.08292903,-0.10814919,-0.007111193,-0.06482573,0.0016594916,0.041547667,-0.01428271,-0.00037083766,0.0257807,-0.018816555,0.007892449,0.02903436,0.0062646084,-0.033454742,0.030926548,-0.07112776,0.07705513,0.07000051,-0.031706907,0.10910866,0.013350909,-0.086447716,-0.0047156173,0.015839286,-0.033068914,0.08885033,0.08168221,0.019657414,-0.0017917444,0.025586985,0.045809295,-0.07030296,0.0039400803,-0.03818556,0.08206948,0.079844385,0.033064235,0.038900383,0.04681076,-0.025010366,0.08974293,0.028820677,0.046098635,0.07232285,0.031165965,0.055920884,-1.1671318e-32,-6.1442704e-05,0.04658312,0.08852232,0.0205205,-0.025212089,0.005289577,0.056883108,0.0014610302,0.0030255697,0.043637786,-0.09435899,-0.06640392,0.03335129,-0.060518064,-0.046407282,0.0072938716,-0.0066991406,-0.09419006,0.03638238,-0.045161743,0.051477876,0.10742989,0.018837253,-0.06871892,-0.043509632,-0.014980966,-0.06745867,0.03678188,-0.09335688,-0.0144288605,-0.0036828637,-0.05826226,0.014710385,0.029844025,-0.05210161,-0.032587305,0.105826385,0.115359195,-0.035239715,0.02378517,0.03463094,0.08793866,-0.0075298576,-0.06175416,-0.025667354,-0.009171562,0.029548788,-0.09789711,0.019514866,-0.07656337,0.10484194,-0.01861437,-0.034217387,-0.02832023,-0.018233864,-0.04954706,0.03933416,-0.040946774,-0.11996131,0.004350654,0.009386461,-0.017829843,-3.8883692e-05,0.014350382,0.093923435,-0.016440012,-0.035395253,0.0136672305,0.01083536,0.06793681,0.0070433593,-0.0482354,-0.01326998,0.07133874,-0.04194398,-0.015545261,-0.08138272,-0.026161788,0.045790922,0.004770276,0.0022298752,-0.0763159,-0.06621661,0.007151173,-0.029886438,-0.0055397833,0.0047432985,-0.0053522787,0.061844263,-0.025211668,0.041852135,0.11862682,0.04930649,-0.014038941,-0.015773105,-5.455978e-08,-0.004933537,0.081701145,-0.04321579,0.038848285,0.023014912,-0.13215655,-0.054703794,0.036487095,-0.03579728,0.0145239355,-0.023784034,-0.0020220357,-0.012097876,0.023878887,0.011734347,-0.018474026,0.06345367,0.09686988,-0.027239595,0.0029509075,0.057372462,-0.009330184,-0.031051956,-0.0047356286,0.0037560298,-0.00040299844,-0.026690437,0.031027857,0.025865564,-0.024151865,-0.090218134,0.0324712,-0.108572654,-0.023640312,-0.053793564,-0.03013023,-0.071073785,0.05006456,-0.009324355,0.020808123,0.06258558,-0.06835833,-0.11103477,0.028592214,-0.06642367,-0.022209235,-0.076812856,-0.09610439,-0.07400891,0.0063950475,-0.06242218,0.017801868,0.01561945,0.014716783,0.014170774,0.040276352,0.049152058,0.010637886,-0.06646472,-0.00058634765,-0.016160559,0.034850933,-0.030199056,-0.03651388} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:04.22383+00 2026-01-30 02:01:11.038282+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1839 google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE 1 t 1842 Go Karts Mar Menor unknown Bonjour étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en Europe je peux vous dire que celui-ci fait parti de mes préférés le matériel est en super état et le personnel est sympathique. Je recommande vivement. Idéal même pour les enfants en bas âges. Les parents qui veulent faire découvrir le karting à leurs enfants peuvent y aller sans soucis il dispose de karting by place. Visitez leur site vous y trouverez tout les renseignements. Bonne course. bonjour étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en europe je peux vous dire que celui-ci fait parti de mes préférés le matériel est en super état et le personnel est sympathique. je recommande vivement. idéal même pour les enfants en bas âges. les parents qui veulent faire découvrir le karting à leurs enfants peuvent y aller sans soucis il dispose de karting by place. visitez leur site vous y trouverez tout les renseignements. bonne course. 5 2026-01-30 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-B {} {"A3.01": "Idéal même pour les enfants en bas âges. Les parents qui veulent faire découvrir le karting à leurs ", "O1.03": "le matériel est en super état", "P1.01": "le personnel est sympathique", "V4.03": "étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en Europe je peux vou"} {0.002346747,0.0068624006,0.017140653,-0.023916677,-0.09823272,0.055192254,-0.03562096,0.101291195,-0.085137054,0.044319537,0.012396748,-0.022786697,0.00024891197,0.014943918,-0.043722592,-0.06185298,0.0037698261,0.009127808,0.028993888,-0.010486504,-0.023880497,-0.08454534,0.049971443,0.024391348,-0.041286368,0.03218907,-0.009047461,0.0012161578,0.026478712,-0.0027453394,-0.043331258,0.041175168,-0.08365032,-0.022699531,0.017337492,-0.005597484,-0.07752553,-0.04444578,-0.0251066,0.011302067,0.0013824095,-0.06534964,-0.05835,-0.06900571,0.047176912,0.06272346,-0.0001800306,-0.023752574,-0.080907375,0.0076940297,0.077252574,-0.06528977,0.10491071,-0.064489685,-0.00069680955,-0.057811588,-0.058960963,0.03598724,0.046176188,0.032782275,-0.0035556469,-0.022484453,0.015914662,-0.061204232,-0.13334312,-0.1046924,0.03881661,0.023186639,0.040903702,0.010160457,0.074224085,-0.015431908,-0.099528775,0.07359362,0.07987366,0.028788075,-0.048927493,0.01524562,-0.07529697,-0.09460285,0.036639266,-0.05594606,0.026923565,-0.048890032,0.034669973,-0.07068304,0.07590654,0.0209428,0.022036476,-0.0029424923,-0.019264352,0.050258107,-0.10008795,-0.04348993,0.0028883023,0.014272042,-0.047369633,0.01670543,-0.021765456,-0.04165073,0.027042957,-0.015663616,0.03523257,0.09732354,-0.13254759,0.036003932,-0.027235363,-0.045896098,-0.0048930463,0.0032102515,-0.02603416,-0.029951941,-0.026917467,-0.093094744,-0.03001844,0.001616916,0.0067731054,-0.043042853,0.039956827,-0.0052527837,-0.0030615667,-0.023315404,0.017960574,0.008617391,0.036897935,0.000792574,0.10512045,1.2562918e-32,-0.09589952,0.006846504,-0.0011411322,0.01243602,-0.014078265,-0.043422636,-0.040241655,-0.020404922,0.0031972837,-0.040823106,0.008545589,0.09390709,-0.0071430057,-0.03587048,0.09437409,0.012682418,-0.0034992143,-0.056630395,0.08083507,0.015108811,-0.006739822,-0.029544167,0.0026683148,0.11474909,0.063580364,-0.05495287,0.07991739,-0.03272664,-0.033650834,0.0048105237,0.013921082,-0.045396116,-0.071240306,-0.02071142,-0.04512291,0.041284807,0.039516527,0.0571878,-0.020001207,-0.011650969,0.0003040043,-0.05258018,0.015728656,-0.025786366,-0.055283345,0.028524706,0.0774875,-0.056689113,0.021721615,-0.012985618,-0.08800551,-0.022570375,0.0016400004,-0.0071756113,0.02815539,0.0951173,-0.025655009,-0.0008171844,-0.07892665,-0.09729579,0.030138856,-0.006361232,-0.017407877,0.008072828,-0.09899151,-0.061688475,0.03356553,0.019238478,0.04927544,-0.025260195,-0.11590923,0.033313822,0.022185262,-0.09410625,0.06362235,0.08256017,-0.07094979,0.0861602,-0.09125522,0.018598596,-0.09581442,-0.0011612901,-0.03634264,0.011107136,0.116469786,-0.054172516,0.032159008,0.011144953,0.07624321,0.026484724,-0.025733208,-0.050483987,0.025294555,0.10865188,0.059710205,-1.5672738e-32,0.038077768,0.0379799,0.09747301,0.08748251,0.05874766,0.038233303,0.017797671,-0.030668825,-0.030667994,-0.041011095,-0.06798002,-0.014884018,-0.0061260625,-0.04053345,-0.048801996,0.00768991,-0.089645855,0.056978848,-0.0029030829,-0.03471318,-0.009263477,0.03125446,0.048453934,-0.056400325,-0.012135326,-0.035921425,-0.0041530966,-0.012391279,-0.053588733,0.06442832,0.0237976,0.019039402,0.06403076,0.038635816,-0.023988996,0.0060826805,0.06174925,0.12547725,-0.07082187,0.051403336,-0.005940212,0.07752582,0.02611343,0.061976507,0.00429632,-0.045537222,0.015275387,-0.08412637,0.0052171727,0.0008787027,0.058984574,0.009478002,-0.0210386,-0.07493645,0.028457252,-0.02550257,0.03197047,-0.027257709,-0.08047944,0.02086536,0.034002434,0.025197865,-0.010916905,-0.01454907,-0.039227296,-0.060991224,-0.06229584,0.035670266,-0.044601385,-0.022493897,-0.032260828,0.012309477,-0.00944768,0.034441825,0.04649199,-0.04222561,0.05982225,0.11904151,0.042386886,0.03768269,-0.018569164,-0.018901192,-0.061180502,-0.0320065,0.026500158,-0.050038952,-0.021258619,-0.033234138,-0.0025056861,-0.07411908,0.037689414,0.020959511,0.011660032,-0.060406465,-0.03052926,-5.680133e-08,0.013873568,0.027460108,-0.09940074,0.030105399,0.019711634,-0.1324761,-0.06857415,0.07327996,-0.08006389,0.0442468,-0.03468189,-0.01029766,0.04255573,0.019493433,0.052235868,0.06951015,-0.007175904,0.13771024,-0.018539492,0.05526525,0.07704516,-0.048825357,-0.0376518,-0.0056669456,-0.08512153,-0.02146098,-0.014087608,-0.10032557,-0.06653286,-0.018442532,0.028043028,0.026464263,0.020483501,0.030958787,0.0034661929,-0.05730543,-0.046882045,0.08642602,-0.070526116,0.043423694,0.020717712,-0.090517804,-0.04831596,-0.03837772,0.015580076,0.0069401516,0.011881714,-0.024709875,0.026046267,0.14309464,-0.09136362,-0.04673347,0.03784432,-0.01677766,0.059517745,0.07458437,0.040313225,-0.02736041,-0.01542261,-0.047663875,-0.013458812,0.02284426,0.0287765,0.0037208835} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:45.370055+00 2026-01-30 02:01:10.906546+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1855 google ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE 1 t 1858 Go Karts Mar Menor unknown Estupendo mini karts, que parece un circuito de Fórmula Uno por la calidad de sus coches y de las instalaciones. No le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me tocó correr había demasiados coches...no recuerdo exactamente cuántos, peri sí mas de 12, y a veces estaba algo complicado, sobre todo cuando hay mucho Alonso y "Shumaker" !!!! estupendo mini karts, que parece un circuito de fórmula uno por la calidad de sus coches y de las instalaciones. no le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me tocó correr había demasiados coches...no recuerdo exactamente cuántos, peri sí mas de 12, y a veces estaba algo complicado, sobre todo cuando hay mucho alonso y "shumaker" !!!! 4 2022-01-31 01:52:39.833374+00 es v5.1 O2.01 {E1.03} V+ I3 CR-B {} {"J1.03": "No le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me to", "O2.01": "Estupendo mini karts, que parece un circuito de Fórmula Uno por la calidad de sus coches y de las in"} {0.013943952,0.05641777,0.006595937,-0.067805454,-0.14775628,0.043068852,-0.013917809,0.10520599,-0.008240534,0.027627867,0.05168213,-0.0012748229,-0.007930268,-0.014808406,-0.007530537,0.00942071,-0.023534171,0.059569474,-0.006423766,-0.07149618,0.03844518,-0.09430705,-0.087418385,0.08130673,-0.034095064,0.028178295,-0.0026331744,0.060628597,-0.01352231,-0.06686529,-0.07210735,0.041036878,0.058050137,-0.08110276,0.0027389769,-0.041103695,0.0009402153,-0.10966658,-0.046692472,0.057684045,-0.08223153,0.0026638305,-0.036379598,0.012343516,0.03698577,-0.042184684,-0.045245703,0.024092436,-0.0148996,-0.095269784,-0.04656918,0.002999318,-0.0048496565,-0.02167676,0.04955147,-0.017116351,-0.13871175,0.04186481,0.15314579,0.056355238,0.09747176,-0.004863166,0.028123265,0.038069747,-0.07038847,-0.0807503,0.017192218,-0.022117782,-0.07687129,0.10557948,0.11632095,-0.053463865,-0.021103155,0.0055642417,0.037359487,-0.0012389289,0.032231826,-0.07295685,-0.015451005,0.0037118385,-0.05849082,-0.0019982657,-0.05768108,-0.068368234,0.010477873,-0.089929216,0.039435253,0.014710519,0.0027576175,-0.05677739,-0.0002202263,0.04711454,-0.05927663,-0.052424118,-0.049442295,-0.006440911,0.0043763514,-0.018671617,-0.014609398,-0.018400753,0.10886873,0.02466209,0.056505814,-0.021835806,-0.047079373,0.09659333,0.021584122,-0.01649371,0.02717127,0.066588104,-0.07509214,0.01599026,-0.067147635,-0.03722592,-0.04505259,0.038290225,0.011975706,-0.0504165,0.042941187,0.031711243,-0.003779923,-0.03264129,-0.056439765,0.043024693,0.03848573,-0.04024172,0.033597536,1.0727037e-32,-0.080643155,-0.0031123126,0.0129355965,-0.00026703396,0.061960567,-0.06690244,0.01919464,-0.02114756,-0.07925112,0.028941976,-0.027467368,0.065289505,-0.04404367,-0.007496365,0.08657983,-0.025784686,0.0021247927,-0.076975465,0.0462469,-0.016607191,-0.024653139,-0.05957327,0.023595849,0.069105536,-0.023132905,0.072293855,0.094383806,0.02185651,-0.048031922,0.04448691,-0.019310184,-0.028821703,-0.045574963,0.008180725,-0.09944411,-0.021770837,0.0715033,0.020658003,0.004574945,-0.03307086,0.008060747,0.018237969,0.028235592,0.019603368,-0.06382025,0.018032448,0.091254905,0.017371582,0.11433961,0.008654979,-0.13479759,-0.07607647,0.0034075298,0.025731755,0.0052738385,0.095799945,-0.014224701,-0.027216012,-0.05540401,-0.01697062,0.007734243,0.00044174562,0.026103513,-0.00083758694,-0.012421253,0.039446708,0.05412396,-0.009749288,0.08787447,-0.014839955,-0.06953795,-0.0016128881,-0.064431995,-0.04412015,0.08762655,0.0050972914,0.0019451606,0.01089942,-0.005541571,0.012982356,-0.009150612,0.012678347,-0.00936468,0.020072902,0.07867341,0.012062881,-0.0070446082,0.05821196,0.005977292,0.12126185,-0.038157,0.04153357,0.08771926,0.010452348,0.0034519443,-1.3079245e-32,-0.010309373,0.028017221,0.12516886,5.7672427e-05,-0.017220916,0.047484774,0.033731725,-0.059810273,0.04352151,-0.0010341303,-0.022777565,-0.040099625,0.015773132,-0.095268846,-0.06548452,0.08648057,0.03381797,-0.04202131,0.030182187,-0.063334696,0.01994306,0.052176014,-0.054229796,-0.0333462,-0.05003071,-0.025854131,0.01398106,-0.038389154,-0.070926666,0.06528644,0.024587234,-0.09105794,-0.020033333,0.057868883,-0.07611193,-0.0451245,-0.0223727,0.053416036,-0.00060506014,0.10188742,0.017785927,0.04243367,0.039633166,0.018773412,-0.027720891,-0.021976449,0.065356955,-0.119368635,-0.010964855,-0.038921986,0.073948614,-0.0029085283,-0.09746545,0.007405561,-0.025608901,0.01873428,-0.008851698,0.0024204277,-0.016609017,0.0019831376,0.028656997,-0.05690939,-0.06684199,-0.0999942,0.026430737,0.017679559,-0.06647137,-0.02103511,0.04255648,-0.06289622,0.050366104,0.058339775,-0.006533367,0.0017865894,-0.100147545,-0.08794656,-0.13108787,0.037823576,0.0363074,0.0048194416,0.009993182,-0.046382464,0.016021261,-0.038035028,0.033824272,-0.076822065,0.0043578385,0.06313017,0.051000845,0.06792256,0.0059290295,0.0976531,0.050528318,-0.010404802,-0.060169578,-5.655916e-08,0.04140139,-0.057421457,-0.06483677,-0.0034084388,0.028790912,-0.026354598,-0.056977987,-0.032498274,-0.036404397,0.042490482,0.046333723,0.032922547,-0.015331375,0.060076047,-0.03712648,0.045020558,0.069992684,0.08133982,0.020462476,-0.0006651168,0.04139536,-0.004407951,-0.03613571,0.03037941,0.015648777,-0.026313985,-0.04129695,0.008675884,-0.012828635,-0.028963301,-0.0288233,0.014442727,-0.030031463,-0.008875745,-0.00012538882,0.009824712,0.0022219229,0.067509614,-0.02959387,-0.057745703,-0.009321296,-0.074665,-0.15228905,-0.011388445,-0.038063977,-0.0067529557,-0.077426754,-0.06804071,-0.030046059,0.074482135,-0.012415251,-0.029526325,-0.0019529718,0.020894991,0.055373345,-0.030525347,0.03021977,-0.031984217,-0.07526196,-0.031466555,0.018044265,0.08161446,0.053879816,-0.04770168} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:04.471876+00 2026-01-30 02:01:10.96422+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1319 google Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB 1 t 1322 Go Karts Mar Menor unknown Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto, muy juen trazado, escapatorias perfectas, la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era muy agradable el tacto, pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto, un saludo para todos. Gracias. un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto, muy juen trazado, escapatorias perfectas, la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era muy agradable el tacto, pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto, un saludo para todos. gracias. 5 2025-08-03 00:52:39.833374+00 es v5.1 E1.03 {O1.02} V+ I3 CR-N {} {"E1.03": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar a", "O1.03": "la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era m", "P1.01": "pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto"} {-0.021475451,0.05012533,0.027107585,-0.093504965,-0.1035138,-0.04806173,0.029019056,0.057841305,-0.090697445,0.025401233,0.034401596,0.011912718,0.01239457,-0.0013520723,-0.0029715225,-0.001983264,-0.00452429,0.04973138,-0.025335504,-0.014169711,0.10753763,-0.04094714,-0.06360467,0.06275287,-0.12929054,0.007948418,0.035188273,0.018613063,-0.086978346,-0.06864791,-0.078976415,0.06498468,0.0698651,-0.023425104,-0.006163363,0.005393536,-0.0024366195,-0.06897124,0.0004688798,-0.010763296,-0.037895203,-0.048465822,-0.01104243,0.0065641347,-0.031240093,-0.087002285,0.086121775,0.011869555,0.053861346,-0.11809064,-0.037716627,-0.003342017,0.0027346145,-0.023887249,-0.054207988,-0.037397526,-0.027636817,0.048846476,0.083941974,0.03489069,-0.004127965,0.041677255,-0.0138193155,0.06597213,0.058526687,-0.009729482,0.009216687,-0.013743924,-0.082069375,0.06362688,0.054101545,-0.061540566,0.039893832,0.058979426,-0.010471335,0.06150157,-0.0369396,0.022653755,-0.054345433,0.01162079,0.025463605,-0.06349458,-0.031927377,-0.06572683,-0.0036183323,0.048400052,0.01849523,0.02380601,0.033052165,-0.092001006,-0.00079051923,0.08433156,-0.11135035,-0.042697806,-0.0055365046,0.056726266,0.03946445,-0.11128458,0.009528393,0.006089859,0.108698346,0.005876561,0.039823074,0.024668412,0.03345381,0.01113587,0.0154958535,0.012587954,-0.041001685,0.0121131735,-0.06546638,-0.026295098,-0.019540042,-0.023110492,-0.03477724,-0.05236959,-0.05490323,-0.041703105,0.00533505,-0.03130983,0.05066586,-0.012070454,0.01619319,-0.028056938,0.03299921,-0.025526654,0.065748684,1.3635518e-32,-0.04789363,0.014719775,0.017825635,-0.0076781358,0.006471117,0.0042429282,-0.03979243,-6.778353e-05,-0.05930858,0.016761519,-0.08544509,0.011206029,-0.0028159458,0.07280944,0.089640394,-0.016956558,0.05957004,-0.07543829,0.07837079,-0.011096572,-0.031599987,-0.03726665,0.034179915,0.04776478,0.03859311,0.13238293,0.072615355,-0.057027657,-0.049024753,0.052636236,-0.024848955,0.04423593,0.011175655,-0.018489083,-0.10357141,-0.019142186,0.037258763,0.00579392,0.0117336735,-0.017839458,0.019995019,0.027091078,-0.031023834,0.06485694,0.017853985,-0.021354565,0.013654628,0.036352444,0.13496642,0.09370374,-0.1444001,-0.06638037,-0.028256787,-0.028664226,0.013063097,-0.0146552455,0.026451653,0.043720655,-0.032613322,-0.0042911908,0.0030334014,0.011191695,0.0145504875,-0.054356746,-0.044960864,0.0033576572,0.007421378,-0.004349734,0.061072253,0.012321373,-0.047032624,-0.08418128,-0.01760908,-0.042967435,0.051659536,0.0090576885,0.025125049,0.067355484,0.0025892302,0.045245826,-0.06562308,-0.010519038,-0.008102592,0.031289488,0.09149068,0.042087734,0.061040025,0.08721738,-0.0546313,0.10722973,0.07265413,0.087237366,0.0247408,-0.013269972,0.016834544,-1.3806734e-32,0.02293218,0.07420058,0.06266431,0.11020134,-0.03488633,-0.0451986,-0.07288242,-0.068971485,-0.022846928,0.053652443,-0.04067993,-0.08923262,0.12602738,-0.037000798,-0.07137416,0.065070696,-0.0053901635,-0.093896195,-0.041196834,-0.027868344,0.041003205,0.08564501,0.021116983,-0.066914566,0.0053892513,-0.11587167,-0.045884445,0.059450157,-0.13524279,-0.0055712173,0.05050648,-0.038538456,-0.030254116,0.09192369,-0.019263234,-0.03800941,0.12272576,0.07898801,-0.032751307,0.023172978,0.030709224,0.04813395,-0.04369432,-0.01735362,-0.025980845,-0.027276393,0.054621417,-0.10926258,-0.0028204592,-0.03705725,0.07681583,-0.056384232,0.007647405,-0.022204744,0.039398946,-0.023627559,-0.011651672,-0.04504211,-0.11680308,-0.03485583,0.039147254,-0.0021649995,-0.008538869,0.0050989245,0.058858715,0.016536368,0.0056074145,0.0020499236,-0.03456444,0.023649396,0.047125142,-0.02359657,-0.089327745,-0.0024896087,-0.007361346,0.03655844,-0.088807486,0.029690845,0.010959613,-0.04577054,-0.022401506,0.007459801,-0.0019911726,-0.050181057,0.009718159,-0.022489013,-0.05357392,0.04496772,0.029224783,0.019294985,0.015459468,0.036761794,-0.047545604,-0.037996165,-0.00050043873,-6.155774e-08,-0.025592923,-6.6593007e-06,-0.089859486,0.0051095,0.07020583,-0.07261918,0.03786337,-0.0007688773,0.036272068,2.2438076e-06,-0.039596327,-0.06320777,-0.018306235,0.053807657,0.042386647,0.028701546,0.0544992,0.10500908,-0.03322333,0.022892965,0.06724524,-0.0132017275,-0.031227805,0.026751323,0.050634023,0.05565023,-0.026009312,0.027084805,-0.034823213,0.018993014,-0.04724707,-0.044759426,-0.07829052,-0.07797865,-0.013377845,-0.017016817,-0.05886416,0.063613296,-0.032365467,-0.05330486,0.06696961,-0.10637484,-0.05458933,-0.017379986,-0.026903968,-0.030436628,-0.05561548,-0.05063591,0.040377703,-0.0014371153,-0.063255385,0.00443384,0.050882716,-0.019365042,0.009425282,-0.016024986,0.06958684,0.021301871,-0.014038106,-0.011391439,0.08786531,0.10340476,-0.035324264,-0.07286189} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:20.399109+00 2026-01-30 02:01:08.962202+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1659 google ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB 1 t 1662 Go Karts Mar Menor unknown Nunca doy un " top " pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones. Todo cuidado al detalle. ( Mejor reservar antes de ir por si acaso tiene sesión nocturna ) nunca doy un " top " pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones. todo cuidado al detalle. ( mejor reservar antes de ir por si acaso tiene sesión nocturna ) 5 2022-01-31 01:52:39.833374+00 es v5.1 O4.04 {V4.01} V+ I3 CR-B {} {"J2.01": "( Mejor reservar antes de ir por si acaso tiene sesión nocturna )", "O2.04": "Todo cuidado al detalle.", "O4.04": "Nunca doy un \\" top \\" pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones."} {0.001253281,-0.012858829,-0.0014081913,-0.10193948,-0.06590739,-0.059131198,0.036136404,0.13028961,-0.0043639005,0.05222203,0.0024219898,-0.004607814,0.02576968,-0.041756183,0.030643795,0.054969285,-0.026932849,0.003845836,0.037195753,-0.047402248,0.047261234,-0.043050688,-0.10715581,0.078791626,-0.08089775,0.006077408,-0.03392821,0.084866844,-0.09236482,-0.12606776,-0.05495046,0.05241039,0.14964354,-0.027490139,-0.049104955,-0.03236524,-0.025854718,-0.074752174,-0.0071670953,0.0075850417,-0.1019503,-0.02334785,-0.036042713,-0.014836416,0.011440206,-0.034284588,0.06666751,0.014973321,0.02205461,-0.097661376,0.013338471,-0.017127074,0.023234017,-0.0018930052,-0.020109233,0.050069828,0.03034358,-0.00045664792,0.082365535,0.0472994,-0.005885465,0.014600789,-0.005805772,0.056168865,0.032727305,-0.055291943,0.019549169,0.014642248,-0.07189488,-0.0052472604,0.10559586,-0.083101764,0.053048622,-0.04777919,0.0143819945,0.026638506,0.016752608,-0.00039516948,0.012238833,0.024362344,-0.008723852,-0.010275324,-0.031883243,-0.04529636,0.06923954,-0.025820458,0.000744715,-0.0040297853,-0.042918157,-0.037428856,-0.061461117,0.04683285,-0.05266196,-0.01729177,0.00033621988,0.023535227,-0.023711475,-0.090376005,-0.050939873,0.025730558,0.11242435,-0.050782003,0.031163413,0.018491188,-0.066948704,0.018128257,0.09074409,0.004356332,-0.015464126,-0.055587854,-0.057998832,-0.04505099,-0.04044335,-0.05340485,-0.076137155,0.019626472,0.044583417,0.0026004834,-0.0023779415,-0.12646206,-0.014731167,-0.047777012,-0.0037475196,-0.059741523,0.045486573,0.001965737,0.07583349,1.5064836e-32,-0.03754373,0.016463723,-0.08340469,-0.0010737437,0.007152136,0.032972865,-0.02624351,-0.0022912275,-0.034634706,0.03964187,-0.024151776,0.04633522,-0.02958814,0.023576492,0.12229758,-0.013461879,0.05161867,-0.016122341,-0.055076092,-0.06398188,-0.017978568,-0.008199835,0.010405602,0.01936699,0.020168789,0.042994514,0.02721681,-0.09627364,-0.11208199,0.023773275,-0.0029950489,0.0093723405,0.058587417,-0.0046140864,-0.035987273,-0.025010524,0.053584028,0.033172254,0.06749649,-0.03711767,0.013330663,0.10199963,0.012620167,0.02109999,-0.027111495,0.048289455,0.0008994689,0.014250572,0.12890805,0.032031458,-0.07468504,-0.078337096,0.057595387,-0.019398432,0.025807109,0.034972966,-0.04115456,0.04435492,0.11948758,0.00092062354,-0.03116063,-0.007997688,-0.061272588,-0.060928177,-0.048632335,0.03244276,0.049069226,0.0055541424,0.13084142,0.020019865,-0.0686507,0.00563077,-0.018127268,0.013200501,0.008471698,0.03828278,-0.061773162,-0.011854109,0.01694789,-0.03200493,0.024957797,-0.009031069,0.053549416,-0.032110013,0.13792646,0.08688056,0.014616141,0.026544036,-0.01879147,0.13744949,0.008199629,0.08641083,0.10924307,0.015615571,0.024577657,-1.4061813e-32,-0.016904652,0.014714613,0.075561784,-0.047355007,-0.016251877,0.0016934095,-0.06847335,-0.06511154,-0.044599243,-0.01705792,0.00225045,-0.07247213,0.06522647,-0.067463085,0.0011310378,-0.0043732016,0.021527259,-0.084017314,-0.048009533,-0.07374263,0.019321121,-0.0024800757,-0.037782133,-0.066680595,-0.06593605,-0.0881771,-0.096442945,0.09541194,0.014812285,-0.015404717,0.013304002,-0.03483378,0.013281754,0.09427524,-0.05733188,0.039776213,0.12458934,-0.02587497,0.029209958,0.030028252,-0.007093422,0.040427458,0.02457035,0.00571797,-0.033973467,-0.0186617,-0.056424182,-0.12884831,-0.061318845,-0.09925224,0.007414562,-0.1009664,-0.026250571,-0.04019111,0.0559794,-3.6413283e-05,0.023736306,-0.018794972,-0.053498745,-0.103234105,0.14886525,-0.021962296,0.043239627,-0.08216721,0.050993543,0.026094496,0.012172989,0.03810311,-0.026727857,0.024925442,0.011638675,-0.014489594,-0.047108892,-0.03671627,-0.04448015,-0.049228042,-0.0834152,0.084449366,0.030795397,-0.04703369,-0.022420239,-0.039223354,-0.033433467,-0.078084365,0.034445807,0.0080109965,0.034694403,-0.014392478,0.0075506633,-0.0057935077,-0.030193776,0.040526398,-0.028405987,0.028667286,-0.020248706,-5.4179115e-08,0.006867963,-0.113052905,-0.026118152,0.0050532687,0.033605263,-0.042017553,0.051586572,0.04624737,0.008452179,-0.008370126,0.017160693,-0.020545548,-0.02025804,0.03270043,0.021183105,0.07714164,0.06614094,0.10616438,0.003906714,-0.06259125,0.010061792,0.026795331,-0.0051335664,0.054068595,0.05574011,0.017960679,-0.0008389908,0.015919626,0.03274342,-0.023552207,-0.04291586,-0.03582854,0.0145489555,-0.068769366,0.01031814,0.02853175,-0.04837259,0.030222328,-0.006245917,-0.056827836,0.119787864,-0.015960274,-0.0270474,0.025814854,-0.010298307,-0.078281924,-0.044047747,0.01976466,0.020232113,0.007993803,-0.02817037,-0.013998934,0.0436616,0.017474502,0.010506872,-0.015446366,0.035575733,0.0053863265,-0.024974067,0.005046335,0.12024723,0.0025508667,0.014003602,-0.03803135} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:30.00249+00 2026-01-30 02:01:10.216482+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1638 google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB 1 t 1641 Go Karts Mar Menor unknown Una experiencia genial .\nUn circuito muy cuidado , karts muy bien puestos a punto y un personal tanto pista como recepcion de 10 .\nSiempre que voy a Los Alcazares es visita obligada .\nLos F400 una pasada .\nSi vais por alli no dudeis en acercaos alli para pasar un rato increible.\nTienen Bar , Wc y todo lo necesario ! una experiencia genial . un circuito muy cuidado , karts muy bien puestos a punto y un personal tanto pista como recepcion de 10 . siempre que voy a los alcazares es visita obligada . los f400 una pasada . si vais por alli no dudeis en acercaos alli para pasar un rato increible. tienen bar , wc y todo lo necesario ! 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"O1.02": "Los F400 una pasada .", "O2.02": "Un circuito muy cuidado , karts muy bien puestos a punto", "O3.02": "Tienen Bar , Wc y todo lo necesario !", "P1.01": "un personal tanto pista como recepcion de 10", "R4.03": "Siempre que voy a Los Alcazares es visita obligada .", "V4.03": "Una experiencia genial ."} {-0.009029351,0.062364105,-0.05537579,-0.1099287,-0.10587516,0.025158422,0.043576658,0.09610481,-0.03902761,0.02366202,0.06476754,0.04212229,-0.033406388,0.05765704,0.024464274,-0.020560207,-0.030215016,-0.02840952,-0.05237227,0.04052218,0.063102044,-0.10660103,-0.03910399,0.027036108,-0.0984077,-0.07755579,0.019856118,0.00961319,-0.068868734,-0.07405068,-0.019535214,0.07810049,0.041686647,-0.01751292,-0.03528935,-0.05187778,0.0024136505,-0.04334082,-0.010488987,0.03034202,-0.07804578,-0.059108336,-0.008171717,-0.072997026,0.02696969,-0.039829653,0.0024595691,0.025067797,0.08201035,-0.01671834,0.04864254,0.04356964,0.029237883,0.01975821,-0.008202387,-0.0903782,-0.016334612,-0.002319364,0.056455046,0.0709688,0.013343357,0.023051351,-0.0591924,0.0683287,-0.033766735,0.024588358,0.013820634,-0.071637474,-0.04202561,0.08240711,0.108700365,-0.11659814,0.0052112504,0.006739649,0.04223165,0.0016733957,-0.0072795623,0.019593017,-0.046096016,-0.021915326,-0.008452377,-0.026576044,-0.020799639,-0.07151541,-0.017316867,0.021377131,-0.030351521,0.07657294,-0.043761037,0.002599838,-0.056683626,0.0881111,-0.033416737,-0.051024914,-0.019732628,-0.011199583,0.02442476,-0.07228157,-0.06446126,0.031822577,0.09241252,0.045199767,0.07607788,0.047982566,-0.03816591,0.03133436,0.069071785,0.014595179,-0.03444075,-0.046409547,-0.040394153,0.015693374,-0.046082713,-0.013074959,-0.012788633,-0.035140302,-0.013152148,0.0034258426,0.043882437,-0.03206374,-0.008898363,-0.086239785,-0.02982226,0.0041656513,-0.025737882,-0.03279803,0.035802603,1.4288498e-32,-0.029977469,0.05351286,-0.04856969,0.018031554,0.029212419,-0.030395394,-0.017282886,-0.045056,-0.04709712,0.007523641,-0.05988765,0.040758282,-0.043010395,-0.0071392907,0.051981725,0.0062674484,0.02955061,-0.02204562,0.08384631,-0.04866502,0.05295031,-0.046425313,0.064023845,0.009270815,0.0420093,0.11653311,-0.011054429,0.018318688,-0.067410685,0.061318975,0.0053957067,0.0199356,-0.006594916,-0.0892929,-0.048066974,-0.016162058,0.07463491,0.007324639,-0.010035956,-0.06276752,0.007869129,-0.00979503,-0.055982072,0.03235917,0.006564033,-0.02672154,0.08056027,0.01905827,0.041947078,0.099188246,-0.13916624,0.0026726227,-0.044891167,-0.025827276,-0.0048850873,-0.027546287,-0.0030099282,0.023301823,-0.042742543,-0.009318427,0.07583607,0.016758386,-0.02741957,0.028034048,-0.048689984,0.03935063,0.090854585,0.0021584884,0.094721876,0.0367051,-0.06260579,-0.025706727,-0.036676195,-0.05899154,0.06573592,0.060660124,0.035099976,-0.009648668,-0.004966086,0.044136517,-0.030987978,-0.024867242,-0.043404955,0.09499538,0.10685561,0.06397508,0.05747658,0.0035178603,-0.04337368,0.101797305,0.040190637,0.05384521,0.08734553,-0.005549119,0.041517157,-1.4592078e-32,0.012253824,0.007429333,0.070968844,0.031166049,-0.056378916,-0.0051312614,0.008810572,-0.039514888,0.0036029958,0.051777557,-0.043835994,-0.0746735,0.076733164,-0.08139039,-0.038873903,0.055719096,-0.0019425749,-0.106532805,-0.026091387,-0.03632479,0.03600731,0.105023906,0.016085332,-0.03383803,-0.016525798,-0.018680243,-0.05901724,0.028802631,-0.087568216,-0.030757343,0.004699382,-0.038112767,0.0040346696,0.05428479,-0.04302513,-0.038868766,0.13841827,0.09451479,-0.060960546,0.032955136,0.03164812,0.15334222,-0.025610393,-0.034807794,-0.049366158,0.0088967,0.030534197,-0.10765745,-0.020536559,-0.041608613,0.079460636,-0.010183189,-0.03823054,-0.021184688,-0.039185505,-0.023886707,0.033084683,0.004959483,-0.13248527,-0.016969018,0.00047912504,-0.050606985,-0.012757419,0.008887006,0.06869796,0.0012752772,0.018221367,0.08189581,0.04445142,0.04210493,0.07713344,-0.025473269,0.005777654,0.012166411,-0.0609608,0.016157812,-0.04631657,-0.019601494,0.021130808,-0.007019691,0.019229705,-0.05320673,-0.06570744,-0.062050678,0.024062391,-0.060004298,0.012924845,0.023738721,0.034915023,-0.0068289265,0.04178929,0.09165474,-0.05668976,-0.044853617,-0.017128902,-5.700929e-08,0.0071054776,0.047967926,-0.048256043,0.0065399683,0.034695532,-0.122757055,-0.018142104,-0.011790286,-0.04140319,-0.0029139419,-0.011631607,-0.019410906,-0.01942376,0.047203846,0.008092988,0.012983809,0.0675282,0.09743795,-0.018000942,0.054866195,-0.013100817,-0.025280343,-0.022600649,0.036571596,0.017895842,-0.0031830503,-0.03462163,0.04342439,0.040899992,0.011563028,-0.07258359,-0.0013059652,-0.14442295,-0.056073565,-0.048414055,-0.012289664,-0.04415295,0.01174221,-0.034958083,-0.018176358,0.08297235,-0.10396307,-0.11742762,0.030654846,-0.08756242,-0.059695356,-0.034727342,-0.06067947,-0.05466377,0.011546065,-0.06836538,0.016653396,0.03937202,-0.02233827,-0.009260547,0.01608826,0.046904873,-0.0020096856,-0.041474808,0.0027929475,0.05861483,0.1319142,-0.021624537,-0.10675814} 0.9142857 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:32.70151+00 2026-01-30 02:01:10.13592+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1337 google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE 1 t 1340 Go Karts Mar Menor unknown Best pitch as of this week\nThey installed a new timing system this week. You enter your cred and picture is taken for the log. Once you start driving, the lap time comes up on the big screen. If you lead the race, your picture shows up as well. The kids Love it!!\n\nSeems to get the fastest times in the morning before the track is too warm. However, when windy, dust is making it a bit slippery. So that makes it the best time to drive in the evening\n\nPrices are ok. (cheaper in Norway funny enough :-)).\n\nFriendly staff!\nAC-conditioned room with a view over the track and race monitors.\n\nBring some water with you as you get very thirsty in 36 degrees!\n\nGood ice cream for sale.\n\n55 sec with the F-300 is the time to bit:-)\n\nF-200 good for kids\nF-400 is fun, but Very hard to drive fast! Exhausting.\nF-300 good fun\n\nWill be back! best pitch as of this week they installed a new timing system this week. you enter your cred and picture is taken for the log. once you start driving, the lap time comes up on the big screen. if you lead the race, your picture shows up as well. the kids love it!! seems to get the fastest times in the morning before the track is too warm. however, when windy, dust is making it a bit slippery. so that makes it the best time to drive in the evening prices are ok. (cheaper in norway funny enough :-)). friendly staff! ac-conditioned room with a view over the track and race monitors. bring some water with you as you get very thirsty in 36 degrees! good ice cream for sale. 55 sec with the f-300 is the time to bit:-) f-200 good for kids f-400 is fun, but very hard to drive fast! exhausting. f-300 good fun will be back! 5 2019-02-01 01:52:39.833374+00 en v5.1 O3.02 {E3.01} V+ I3 CR-N {} {"E1.04": "AC-conditioned room with a view over the track and race monitors", "E2.03": "Seems to get the fastest times in the morning before the track is too warm. However, when windy, dus", "O1.02": "55 sec with the F-300 is the time to bit:-) F-200 good for kids F-400 is fun, but Very hard to drive", "O3.02": "They installed a new timing system this week. You enter your cred and picture is taken for the log. ", "P1.01": "Friendly staff!", "V1.01": "Prices are ok. (cheaper in Norway funny enough :-))"} {0.0027367116,0.05138511,0.03601738,0.03389901,0.049949933,0.007113008,-0.10434665,0.046505038,-0.03500293,-0.010409584,-0.052949972,-0.025464626,-0.024612421,-0.02357086,0.0006330088,-0.064513296,0.12089175,-0.054544866,-0.00052561756,0.03982492,-0.026640048,-0.09195406,0.027180718,0.042051997,-0.005058657,0.09990713,-0.016706424,0.022125063,-0.06867564,-0.021482918,-0.07140988,-0.04068531,0.04902319,-0.014220667,-0.043886814,-0.01720578,0.08004196,-0.14445376,-0.05687294,0.07094533,-0.027104758,-0.053336695,-4.4333086e-05,-0.014549278,0.06100986,0.069068424,0.021631075,0.012310957,0.11093906,0.067573056,0.007328244,-0.04787769,0.05157782,-0.03287597,-0.0356898,0.08998587,-0.022359043,-0.04364683,0.032616228,0.0079833735,-0.021998132,-0.041601583,-0.08568053,0.029835688,-0.017988361,-0.10139168,-0.08331162,0.014553589,0.030052252,0.038872533,0.023787633,0.06508532,0.03471877,-0.000611814,0.021962905,0.04659131,0.022920283,-0.031624183,0.012173249,-0.038381264,0.037329108,-0.037101846,-0.010606672,-0.016531939,0.06366337,-0.057100646,0.08857186,0.06926186,0.043224048,-0.019338196,-0.0042586196,0.056092966,-0.059847783,-0.035752416,-0.02031402,0.07828755,0.026237877,0.034331642,-0.014664583,0.008092754,0.0038491695,0.04782197,0.03883156,0.0058812588,-0.022510517,-0.038838785,0.005322712,0.14033075,-0.007466006,-0.064961776,0.013314375,-0.015546015,0.032904316,-0.013964338,-0.023133539,0.029892396,-0.0882117,-0.014299964,0.060265597,0.047688108,-0.02912752,0.01619972,-0.0073832073,0.046795666,0.11254546,0.020549074,0.03459932,1.2405673e-33,-0.07681381,0.061726946,-0.04936693,-0.027487509,-0.021659775,-0.0012785532,-0.054304063,-0.06742824,0.028038446,0.059031215,-0.006144922,-0.057082195,-0.09922349,-0.032112222,0.043667525,-0.09025636,-0.01793253,-0.02948756,-0.10489911,0.04342999,0.04170616,-0.07615346,-0.014683821,-0.028291093,0.09545232,0.0509813,0.08606178,-0.032117315,0.07493791,0.039096616,-0.10305703,-0.03573493,-0.062091347,-0.04552015,0.01875977,0.0020618998,-0.04598358,-0.025764316,-0.019619882,0.072126254,-0.012096777,-0.030371124,-0.052747842,-0.036140062,-0.018269658,0.103991166,0.021384748,0.069991395,0.039909758,0.013122706,-0.07336003,0.00089981436,-0.010239906,-0.02922606,-0.050537266,-0.009154707,0.05881506,-0.0199125,-0.060052104,-0.0058184005,0.0053206873,-0.0018267771,0.028516322,-0.05192226,-0.09695981,-0.0023179275,0.021375913,-0.0043631205,0.0016651687,0.024544636,0.01605137,-0.050194766,0.06616485,-0.009452172,0.10472514,0.037080903,0.03441072,-0.003725116,-0.02584603,-0.005699442,-0.028778084,0.0122676175,-0.022434581,0.010276668,0.0544393,-0.011530842,-0.04552035,-0.020154772,0.024315173,-0.003399492,-0.021371348,-0.048362754,0.042730667,0.094356395,-0.065408066,-1.4400847e-33,0.10893852,-0.011504394,0.07082352,0.020663364,-0.013942283,0.04897712,0.06426913,-0.0027962765,0.025567057,0.018151749,-0.009896132,-0.021921469,0.021827087,-0.053423863,-0.038551543,-0.026841218,0.08637458,0.049125534,0.05352522,-0.06270216,0.054327384,-0.010585705,0.0072507164,0.009947701,0.031254083,0.009694553,0.02195604,0.012610043,-0.044317637,-0.066337645,-0.085101746,0.010738098,0.096748404,-0.019965053,-0.004354644,0.11161154,0.051339947,0.040056914,-0.102817,0.021579366,0.1048752,-0.0439167,0.045165382,0.040010072,-0.015052169,-0.0035104519,0.03529797,-0.005218425,-0.01867449,0.064271584,0.028633278,-0.10323341,-0.050105188,-0.025412915,0.0028944663,-0.05704324,0.040181085,-0.059245285,-0.03381087,0.012355806,-0.04461601,-0.01138193,-0.04654066,0.022532698,0.015400222,-0.0830475,-0.03978492,-0.038879998,0.053316854,0.088709444,-0.09412779,-0.021320758,-0.018483136,0.0021090198,-0.013012546,-0.03750429,0.045470454,0.018748706,0.024098221,0.021426937,-0.023333717,-0.013907745,0.010066387,0.04196448,-0.009348546,0.047229387,-0.039269306,-0.05956505,-0.0281319,0.032138776,0.035393268,0.10310162,-0.010509751,0.11780009,-0.074574895,-4.466929e-08,0.054198585,0.035402134,0.016151939,0.05747211,0.08823997,-0.13900374,-0.0034208032,-0.0018251839,-0.10463761,0.0062318915,0.030301228,0.039448123,0.02678405,-0.048830226,0.03786936,-0.045910567,0.04491323,0.12114706,-0.038402066,0.0039629564,0.013352074,0.02788598,-0.008666428,0.030891662,0.02995404,0.0013262104,0.05113147,0.110280916,0.09062654,-0.030915665,-0.045842372,0.031566724,-0.03254296,0.036245577,-0.03785737,-0.090453655,-0.11808033,0.10480422,-0.008792871,0.035557017,-0.08180246,-0.034940895,-0.10238044,-0.034961715,-0.061101545,-0.021372166,-0.10055509,-0.019524703,-0.0044403234,0.045837503,-0.044765662,-0.03919189,-0.03184009,0.07949825,0.03926438,0.043825522,0.0054945615,-0.04588019,-0.053570345,0.03341972,-0.021042222,-0.06783033,-0.089865655,0.06819655} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.257777+00 2026-01-30 02:01:09.01926+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1307 google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB 1 t 1310 Go Karts Mar Menor unknown Visited here in late July to race with my son. Had a great time and really enjoyed our race. Easy check in experience, reasonable cost and a good fun track with good karts. If you can, pick the F300 Karts because we went in F200 and got well beaten by the drivers in the faster Karts!\nNice roof terrace for spectators and a cafe/bar for food & drinks.\nHighly recommend it for a bit of fun. Karts for all ages although the kids race we watched was organised chaos albeit at low speeds! 🤣 visited here in late july to race with my son. had a great time and really enjoyed our race. easy check in experience, reasonable cost and a good fun track with good karts. if you can, pick the f300 karts because we went in f200 and got well beaten by the drivers in the faster karts! nice roof terrace for spectators and a cafe/bar for food & drinks. highly recommend it for a bit of fun. karts for all ages although the kids race we watched was organised chaos albeit at low speeds! 🤣 5 2025-09-02 00:52:39.833374+00 en v5.1 O1.05 {} V+ I3 CR-N {} {"E1.04": "Nice roof terrace for spectators and a cafe/bar for food & drinks.", "J2.01": "Easy check in experience", "O1.02": "a good fun track with good karts. If you can, pick the F300 Karts because we went in F200 and got we", "O1.05": "Had a great time and really enjoyed our race.", "V1.02": "reasonable cost", "V4.03": "Highly recommend it for a bit of fun. Karts for all ages although the kids race we watched was organ"} {0.022895426,0.016279042,0.031073548,0.04740302,-0.07097992,0.032131366,-0.052341808,-0.020100301,-0.053513262,0.06445591,-0.026714265,-0.061846804,-0.028100397,0.018171577,0.033868488,-0.06705538,0.13509437,-0.093427554,0.0396039,-0.0644033,-0.09026919,-0.087552465,0.0077194604,0.03869827,-0.044687502,0.09035158,-0.04019729,0.09313135,-0.017751388,-0.02558623,-0.0358975,0.018124344,0.0051143905,-0.013999454,-0.028246203,0.0005025568,-0.0026179522,-0.13946314,-0.047244675,0.042675413,-0.046416387,0.0006754642,-0.032144614,-0.0038362837,0.042182937,-0.0060810517,0.01218741,0.0042191963,0.06498044,0.12903851,0.060665667,-0.017767863,0.022190908,-0.08003337,-0.06437611,0.014521268,-0.08599257,-0.050209172,0.025062116,-0.028057355,0.021785274,-0.013453169,-0.070460714,0.02122802,-0.06261748,-0.085923836,-0.07161828,0.01956342,0.079311304,-0.04724962,0.055728678,0.033411287,0.06426401,-0.029067352,0.048561033,0.013705452,0.010656385,-0.020092063,-0.042091455,-0.0096696215,0.059104603,-0.025954261,0.0038513648,-0.067336515,0.0042527397,-0.085520476,0.009086977,0.05079754,0.019041505,0.02674999,0.04194297,0.115407415,-0.062111344,-0.045677118,0.019199325,0.031770337,0.030294197,0.037642326,0.023992712,-0.018556802,0.04695369,0.042410687,0.019209089,0.06760633,-0.023860265,-0.002692259,0.012036662,0.061325822,0.00867966,-0.0044646002,0.0030886764,0.004776778,0.012787628,-0.039543044,-0.04119722,0.013745616,-0.007982602,0.01836324,0.041843843,0.03158946,-0.025182018,-0.0077273687,0.008514872,0.02866489,0.008978727,-0.032469343,0.0010871636,1.5293862e-33,-0.04983481,0.046479616,-0.03223763,0.010452684,0.050951537,-0.023261348,0.047814418,-0.15096915,-0.12609234,-0.0006573085,0.005324622,0.04550803,0.028559174,-0.057214957,0.09025031,0.018097827,-0.058980223,-0.045711268,-0.12798353,-0.006269048,0.03909346,-0.014719161,0.044477936,0.0048330976,0.04626619,-0.03991666,0.038559306,0.029695773,0.023801075,0.017502394,-0.13012448,-0.039720733,-0.0788974,-0.029321803,-0.0017839834,0.005987751,-0.026172087,-0.068900794,-0.081644885,0.031026399,0.00819188,-0.0065608164,-0.04370814,-0.0026790863,0.004606409,0.03339123,0.0048974,0.0744778,0.023123609,-0.0123764975,-0.08653654,-0.048034668,-0.05233519,-0.008067124,-0.0145888245,0.07651254,0.05999646,0.019622417,-0.070843816,-0.01610831,0.056710493,-0.0015839781,-0.0011576324,-0.081040606,-0.090201385,-0.018812386,0.012453509,0.026178617,0.015828786,0.009869846,0.013024409,-0.023129266,0.04169314,-0.026673265,0.121151544,0.058952875,-0.041910995,-0.049048737,-0.04558688,0.04513069,0.003466038,0.065017514,-0.03393141,0.01574114,0.011102301,-0.052646432,-0.066143975,-0.035683803,-0.006920363,-0.03381503,0.0098037515,-0.041838076,0.08176783,0.08674812,0.0024559675,-3.2156794e-33,0.06624635,0.053910132,0.11747146,0.016390704,0.0005174251,-0.02474351,0.045881495,-0.055949833,0.068479404,0.03447428,-0.05522565,0.0541854,0.07080049,-0.014734499,-0.064978756,0.00014153591,0.056754597,0.02861161,0.014774461,-0.05810642,0.029404705,0.03669907,-0.045918036,-0.083964534,-0.03019398,-0.0017564681,-0.049945742,0.00095087814,-0.05252077,-0.054010116,-0.03934326,0.026309673,0.08543087,-0.042626012,0.046966013,0.08485208,0.12269108,-0.00848038,-0.037649564,0.03136382,0.08750239,0.031227963,0.04377562,0.07282976,0.027435677,0.023860702,-0.033269826,0.007988905,0.0064272718,-0.023098622,0.06015125,-0.027700271,-0.08382248,0.026952432,-0.014175042,-0.05614808,0.038862605,0.0058731353,-0.043849714,0.0048162746,-0.07722926,0.028213233,0.0055139977,0.076379254,0.00854877,-0.08102933,-0.020317867,-0.004922005,-0.031754464,0.036450263,-0.14338574,0.016585672,-0.1035021,0.030253269,0.010473828,-0.020795362,0.06507187,0.07898724,0.08925181,0.102482654,0.08365914,0.04912892,-0.027940685,0.037900373,0.02962805,0.05079542,-0.05721473,-0.083963364,0.021014793,0.01972749,0.12949729,0.023898948,0.00799602,0.022357032,-0.053100478,-3.424755e-08,0.078441404,0.08013496,-0.08232263,0.06993371,0.027758472,-0.08691246,-0.024748854,0.007434669,-0.039233483,0.055771023,-0.048619945,0.017423166,0.007199853,-0.027021537,0.019011248,-0.017401429,0.06601157,0.111730225,0.0071943523,0.03253874,0.052172735,0.062698215,-0.0036364475,0.08017318,-0.019195236,-0.07041334,-0.027393391,0.0011765029,0.003094369,-0.014655407,-0.051301837,0.04423999,-0.03113302,0.022900073,-0.026845122,-0.061380982,-0.048393052,0.073885225,-0.042380318,0.028918782,0.022486316,-0.07609728,-0.105511695,-0.057343777,-0.054235708,0.017677166,-0.08062055,-0.08187495,-0.042572755,0.00883562,-0.098199256,-0.04964017,-0.03433154,0.021037895,0.036959138,0.03792713,-0.025473965,-0.013256833,-0.01936011,0.009710183,0.036788557,-0.055493794,-0.06452606,0.027651398} 0.9166667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:20.142876+00 2026-01-30 02:01:08.9212+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1460 google ChdDSUhNMG9nS0VJQ0FnSUM3djh6YzRnRRAB 1 t 1463 Go Karts Mar Menor unknown Brilliant go-karting. Track and karts are top class. Very friendly staff. brilliant go-karting. track and karts are top class. very friendly staff. 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"P1.01": "Brilliant go-karting. Track and karts are top class. Very friendly staff."} {0.030824486,-0.010664556,0.02563374,0.037102155,-0.07481552,0.009113065,-0.006628236,-0.04302636,-0.056262836,0.012395625,0.0014393388,0.057519525,-0.045106687,0.07178769,-0.0071716784,-0.08029852,0.08616392,-0.0783297,0.037508074,-0.08406598,-0.05873121,-0.00720543,0.008214798,0.06120157,-0.09487605,0.018447997,0.009732971,0.042014252,-0.021854518,-0.035002004,-0.10754811,0.039799795,-0.027780814,0.010392777,-0.06394109,0.0679374,0.033003088,-0.034402188,-0.02691867,0.035246056,-0.061909944,-0.02452918,0.016149156,0.02559572,0.041426912,0.031051902,-0.005510874,-0.07139473,-0.029286608,0.02217763,0.06721462,-0.080936484,0.042151906,-0.064981304,-0.0041670115,-0.010667801,-0.043006685,0.013602082,0.025006149,-0.0105886385,-0.011966419,-0.017889524,-0.052762598,0.024644844,-0.07107755,-0.07785019,-0.096833065,0.12261717,0.014834201,0.015616985,0.01229252,-0.017276064,0.049080078,0.05421467,0.05361855,0.057409745,-0.06984069,0.03260317,-0.026254835,-0.015833396,0.03534045,-0.08356883,0.014464809,0.0021861743,-0.0029649928,-0.10607273,0.040255252,0.01031717,0.0027403107,-0.00025625248,0.02889734,0.121669516,-0.014300434,-0.04695024,-0.027872104,0.043701343,-0.035566136,0.030369386,-0.02346001,0.018383022,0.002053684,0.09700006,0.05047951,0.063578084,-0.0656584,0.018392397,-0.024620008,0.037729617,0.09005123,0.011850713,0.035832334,0.02889382,-0.07790115,-0.08401859,-0.034854844,0.011683501,0.016148428,0.06319142,-0.034088492,0.025866663,0.016927393,0.022320487,-0.03978479,0.018422998,0.012826403,-0.008896334,0.048154958,-9.930543e-34,-0.058291648,0.04024433,0.01456815,-0.01816217,0.04607166,-0.07520563,-0.066857554,-0.09373935,-0.068028666,0.039232325,0.028949978,0.03496494,0.006007847,-0.045288846,0.08412779,0.0026254032,-0.07456929,0.0076667657,-0.054987874,0.0064411266,0.010489042,0.0282457,0.015079432,0.014303626,0.08463867,0.0102355145,0.090622045,-0.082138866,0.12544154,0.015375447,-0.010260241,0.005453296,-0.039128758,-0.020802822,-0.039741013,0.033158306,-0.07859154,-0.06932864,0.02605159,-0.005080837,0.018557506,-0.06346058,0.03956896,0.0035452128,-0.05281661,0.08582667,0.06636839,0.063075066,0.0012557838,0.03320105,-0.13632429,-0.057977095,0.019917555,0.06721623,0.0021739958,-0.05252501,0.09522342,0.0822194,-0.0047780606,-0.05419564,0.058705863,0.11600333,-0.04159994,-0.050521076,-0.06859527,-0.07994184,-0.0062665693,-0.05887603,0.10618037,-0.017239533,-0.04016129,0.07885209,0.015828297,-0.003135729,0.02742355,0.032497454,-0.08092089,-0.0007303075,-0.036993694,0.021676192,-0.06752778,-0.0010221556,-0.014148373,0.0067510884,0.036436893,-0.011838935,-0.0142739145,-0.083915725,-0.024308722,0.07997447,-0.05599257,0.0021316023,0.03238301,0.14772701,-0.015278721,9.0154327e-35,0.09079699,0.04590086,0.06785465,0.09416517,0.055390038,0.056185767,0.017235756,-0.02371725,0.027125211,0.079453096,-0.06345689,0.019078065,-0.022031397,0.046574064,-0.023941956,-0.061619785,0.03745649,6.775763e-05,0.005231813,-0.10010968,0.026378667,0.07146022,-0.023487492,-0.04534734,0.021271195,0.092213646,-0.015314239,-0.018033814,-0.11475479,0.024517454,-0.059474546,-0.033491854,0.0014312409,-0.055041637,0.008142437,0.04023512,0.020539913,0.07729814,-0.06971957,0.06868228,0.041102257,-0.0187617,0.011213374,0.026655113,-0.009522222,-0.04692751,0.015705729,0.029749393,-0.05742339,-0.054520156,-0.010700696,0.033628646,-0.07343022,-0.06880373,0.030759806,-0.0046585486,0.08882472,-0.047691766,-0.08260389,-0.023129676,-0.027454153,0.03186406,-0.027586142,0.098764725,0.035573002,-0.04503063,-0.040762328,-0.0094965175,-0.08240065,-0.014795273,-0.13291095,0.044237357,-0.028913453,0.0038356343,-0.015760109,-0.03305834,0.0939141,-0.015108421,0.052365694,0.050941315,0.041884053,-0.020837633,0.025725469,0.041491274,0.059991404,0.09425526,-0.00861798,0.03024604,0.023903629,0.018056635,0.08005532,0.0553982,0.020145869,-0.0019074376,-0.03692517,-2.0227871e-08,-0.026603023,0.025502004,-0.02278386,-0.020117188,0.01634353,-0.09198053,-0.0031427434,0.064025566,-0.058970183,0.048320152,-0.032621246,-0.04502613,-0.012597105,0.026683306,0.08162682,0.033226367,-0.03471092,0.1761479,-0.07519298,-0.009320873,0.0084523,-0.027330063,-0.04583243,0.024520366,-0.052864216,-0.050723188,-0.005930245,-0.016427683,0.0525395,-0.0030727028,-0.019075723,0.034520555,-0.026676252,0.0225201,0.03643441,-0.047567442,-0.034867965,0.053206045,-0.0006412574,0.058365345,-0.11276933,-0.07884692,-0.06214372,0.0176902,-0.011982246,0.023622809,0.019467652,-0.0414803,-0.009293615,0.023358235,-0.06284823,-0.015541333,0.007276954,0.0032620041,0.029505195,0.036780883,-0.0028260606,-0.083474316,-0.056099296,0.038155593,-0.014170979,-0.07159183,-0.03431248,0.09402515} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.335656+00 2026-01-30 02:01:09.429326+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1825 google ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB 1 t 1828 Go Karts Mar Menor unknown Cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espera y luego tuvisteis a los crios esperando más de 2 horas. Además los biplazas los tenéis limitados para que gasten menos. Y presumis de 40 años de experiencia, y tanto... cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espera y luego tuvisteis a los crios esperando más de 2 horas. además los biplazas los tenéis limitados para que gasten menos. y presumis de 40 años de experiencia, y tanto... 1 2020-02-01 01:52:39.833374+00 es v5.1 R1.03 {J1.02} V- I3 CR-N {} {"R1.02": "Además los biplazas los tenéis limitados para que gasten menos.", "R1.03": "Cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espe"} {-0.015153173,0.053044662,-0.059537612,-0.07392304,-0.07685772,-0.019493543,0.06189568,0.116286,0.0017518334,0.0028601007,0.06069446,-0.020100836,-0.015612494,-0.006942262,0.030764325,0.04250177,-0.035315964,-0.02116476,0.013608809,-0.030076196,0.14981097,-0.015830074,-0.0713133,0.07260342,-0.05699759,0.032310512,-0.037834916,0.011352267,-0.0424716,-0.100443974,-0.013763583,-0.017426202,0.13664503,-0.028680349,-0.04342975,-0.049704373,0.0015593249,-0.017936535,-0.02241358,0.103909515,-0.060859267,-0.030532507,-0.048635174,-0.055277742,0.004439033,-0.04409238,-0.0014538225,0.004269499,0.034937523,-0.02719349,-0.007855337,0.031811763,-0.025443565,0.018604033,0.0040073,-0.0568603,-0.0675501,-0.013116277,0.10363367,0.061422918,-0.0077550127,0.072459534,-0.07427098,0.019716067,0.0021318337,-0.075802706,0.072998956,-0.0024178643,0.003804541,0.11038305,0.11210581,-0.07245996,-0.030935876,0.017590612,0.012303831,0.03465964,0.011874986,-0.04122646,-0.013243621,-0.10053412,-0.018847995,-0.05047948,-0.021173866,-0.093979985,-0.017167322,0.0055958237,-0.034198824,0.076766804,0.048188314,0.00276239,-0.040900573,0.038971536,-0.07775719,-0.017641954,0.036494423,-0.041524593,0.016300783,-0.014886221,-0.035629664,0.0051287347,0.082604915,0.044093616,0.034795217,0.02645992,-0.0349622,0.0062246583,0.120350376,0.024769645,-0.02106821,0.014640577,-0.021619651,0.0036695977,0.011618116,-0.11102202,-0.07291515,0.024344023,-0.040508255,-0.029488763,-0.03260411,-0.03306984,0.0011477176,-0.010146177,-0.025165183,-0.032321986,0.024230847,-0.010832129,0.06464545,1.3873079e-32,-0.05076781,-0.059373945,-0.050366804,0.041656315,0.055672023,0.032775022,-0.09595821,-0.0014525948,-0.010951696,0.04656551,-0.05021604,0.02037112,0.052678738,0.0036038654,0.07217319,-0.010588432,0.03243632,-0.029515287,0.045783874,-0.011921266,-0.08456596,-0.079875514,-0.023724759,0.1091985,-0.053520538,0.039293915,0.03344216,-0.03194502,-0.026024396,0.053096917,0.015042972,0.03616973,-0.010669683,-0.002642915,-0.024974743,0.022660207,0.08620796,0.05207376,0.015364736,-0.019714987,-0.03879715,0.023453768,-0.014385736,0.05259048,0.006484691,-0.05017835,0.01700673,0.03728312,0.016173633,0.06807073,-0.09769264,-0.017823284,-0.044421595,0.014585912,0.022032088,0.097743936,-0.080488175,0.07375389,0.02594005,0.040912017,0.030686285,0.13517454,0.017578248,0.008560821,-0.03679835,0.083372116,0.016276345,-0.07577759,0.11669243,0.0055901757,-0.09464781,-0.028239395,-0.03454501,0.020095337,0.030155824,-0.049245436,0.044409357,-0.009657,0.027922753,0.0042916164,-0.07027588,-0.11400962,0.076077215,0.036022592,0.06743057,0.02618367,0.021290366,0.014678862,-0.11100588,0.132681,-0.06800221,0.019198058,0.059235346,-0.027641231,0.12853155,-1.3754161e-32,-0.007812836,0.02313689,0.0042282394,0.011761333,0.019419111,0.024525475,-0.03470316,0.004173162,-0.095863245,-0.078462735,-0.010197507,-0.027218308,0.07442435,-0.044744786,-0.044949885,-0.0060553607,0.013468904,-0.08863688,-0.0446986,-0.023447992,-0.000331307,0.027939001,0.01943103,-0.03486706,-0.07705018,-0.014849793,-0.04855111,-0.002964126,-0.04839624,-0.0022062445,0.022851923,0.025406512,0.006053418,0.049655337,-0.087304704,-0.0027524862,0.1229249,0.10247266,0.02044471,0.027065452,0.012458343,0.03515796,0.05066743,-0.072510324,-0.040943466,0.05582903,0.067673005,-0.15991136,-0.08128289,-0.060709134,0.05658315,-0.047538668,-0.07698455,0.0007384979,0.06929483,-0.083608,-0.048741993,-0.05811215,-0.076126985,-0.036693532,0.0805091,0.039952118,0.025749722,-0.012299824,0.0827031,0.019182792,-0.035480246,0.051707562,0.045933556,0.008489183,0.06646441,0.016012503,-0.04426041,0.023608863,-0.079797596,-0.0462774,-0.11783242,0.0228367,-0.016380964,-0.05778589,-0.015686978,-0.0025659835,-0.022579042,-0.050317854,0.007978159,-0.045744985,-0.0075290543,0.058219615,0.013757152,0.054667607,-0.0024477795,0.0284196,-0.028409861,-0.038833167,-0.028785469,-5.8374265e-08,-0.021599827,-0.00983022,-0.042626288,0.011909805,0.025528632,0.037367083,-0.05090764,0.020643761,-0.0017156284,0.012923963,0.118044734,0.027531877,0.025561782,0.038186993,-0.012374075,-0.00975521,0.06280573,0.03025534,-0.021033324,-0.034140393,0.05323329,-0.025488932,-0.05040292,-0.0052893376,0.042252194,-0.013385501,0.02636771,0.02300284,0.01290661,-0.042264834,-0.024852984,0.0011362231,-0.056922775,-0.076172985,0.0542413,-0.035020962,-0.062199596,0.009322876,-0.015156746,-0.0040258286,0.006937366,-0.10201906,-0.0933737,0.030540261,-0.036409013,-0.07079751,-0.05209262,0.04490112,-0.054740854,-0.006432935,-0.011490849,0.011456481,0.09266278,-0.016498415,0.06808332,0.004441102,0.026465911,-0.014469915,-0.030144695,-0.0013926803,0.026234925,0.069810025,-0.07038831,-0.027032493} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:51.044782+00 2026-01-30 02:01:10.856076+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1776 google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB 1 t 1779 Go Karts Mar Menor unknown Très bon accueil rapport qualité prix👍🏼 Sécurité top et très beau circuit. Mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit. Excellente soirée. Les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min. très bon accueil rapport qualité prix👍🏼 sécurité top et très beau circuit. mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit. excellente soirée. les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min. 5 2021-01-31 01:52:39.833374+00 fr v5.1 R3.03 {P3.02} V+ I3 CR-N {} {"A3.01": "Les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min.", "E4.01": "Sécurité top et très beau circuit.", "R3.03": "Mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit.", "V4.01": "Très bon accueil rapport qualité prix👍🏼", "V4.03": "Excellente soirée."} {-0.04664378,0.012495481,0.031694256,-0.06993596,-0.06907995,0.040923588,0.05235871,0.145356,0.01528871,0.019599289,0.043001126,-0.07421394,0.025440797,-0.021239826,-0.042509835,-0.069074236,-0.035871927,0.040447984,0.0037938864,-0.0070304875,-0.03220645,-0.08503853,0.021877678,0.054381374,-0.06401137,-0.0093074,-0.0097084725,0.038744643,0.0041386075,-0.0913029,0.0064074905,0.034948077,-0.054861896,-0.00240172,-0.011907864,0.0075978558,-0.04217035,-0.06750001,0.0019916277,0.00540561,-0.033309046,-0.067663535,-0.051094268,-0.07305573,0.054534655,0.032481194,-0.0054782075,0.009700383,-0.0703505,-0.049602505,0.044737224,0.008878473,0.15675984,-0.056829575,0.0039830697,0.016336178,0.00408749,-0.02129779,0.063407525,0.039709818,0.058304448,0.010823886,-0.056242716,0.00641678,-0.07404161,-0.06315974,-0.014336738,-0.003104878,-0.016643196,0.048853878,0.06808131,-0.05746256,-0.06597964,-0.022265166,0.045060515,0.057225738,-0.056303926,-0.011093272,-0.026934236,-0.13027164,0.07578668,-0.053870905,0.019784201,-0.05411179,0.073406905,-0.09308238,0.11167962,0.029218256,0.009424192,-0.017062819,-0.037573505,0.07019227,-0.050387237,-0.035797052,-0.012502885,0.016317327,-0.03871766,0.012960862,-0.069783986,0.017578062,0.015500279,0.034163482,-0.039947618,0.10502873,-0.09124904,0.0132945115,0.04597949,0.021703724,0.0279578,-0.057753395,-0.00741866,-0.0118633155,-0.014766054,-0.036194775,0.039362185,0.060878485,0.03571733,-0.037140273,0.02203128,-0.040180113,0.05481597,-0.010045441,-0.042491555,-0.034941625,0.005434235,-0.035818934,0.17953202,1.07440235e-32,-0.100108124,0.021911504,-0.042467043,-0.07063067,0.0167284,-0.021007385,-0.08093844,-0.026150975,-0.012510375,0.0026467363,-0.051835414,0.05496063,-0.048631582,0.009212333,0.076707296,-0.041371256,0.04587643,-0.026912842,0.104268715,-0.07798478,-0.0014117984,-0.070976436,0.007001382,0.1058531,0.027623003,-0.05965131,0.01951096,-0.0398104,-0.052186593,0.0318484,-0.030887246,-0.0048344233,-0.0021954607,0.02791574,-0.023520166,0.013041193,0.06305997,0.06688381,0.09204184,0.0008757359,-0.0013883789,-0.022622766,0.020495234,-0.018918209,-0.06928689,0.058406346,0.018561793,-0.017236657,0.035967898,0.018018214,-0.09961083,-0.010981308,-0.0137962485,-0.005161458,0.033556297,0.0166568,-0.060583383,0.075213335,-0.036645886,-0.004878941,0.057754867,0.0020575502,-0.0686904,-0.035321947,-0.089735605,0.006851108,0.02542892,0.021093698,0.052745566,-0.022074532,-0.15096892,0.07512066,0.0190557,-0.04052335,0.093500525,0.040453028,-0.037146833,0.06022739,-0.04722926,0.01060007,-0.032255474,-0.07863855,-0.02752208,0.003124231,0.06073612,-0.01921776,0.030338595,0.034998015,0.008671752,0.09869112,-0.033538613,0.006216624,0.09029268,0.08892727,0.072883666,-1.1189247e-32,0.029760415,0.029816173,0.03231688,0.061084967,0.0181782,0.076521486,0.011752219,0.0061732735,-0.09799733,0.0057788687,-0.050075427,-0.014800633,0.04244183,-0.09463025,-0.04442157,-0.023763688,0.0064083277,-0.026897365,0.020446466,0.01785337,0.045747623,0.011180646,-0.023538115,-0.06578726,0.008192271,0.03487343,-0.0090010185,-0.009577547,-0.061364397,0.032078203,-0.008400771,0.034835387,0.040525064,0.0834127,-0.05472888,0.033578575,0.112286046,0.05356314,-0.05914998,0.113999166,-0.026319565,0.04721822,0.04942502,0.04401833,0.046706256,-0.026543103,-0.025134606,-0.10549379,-0.13112427,0.025177594,0.042903088,-0.024375103,0.010687623,-0.040800232,0.018612778,-0.03312853,0.043698624,-0.073010474,-0.104315326,-0.03514579,0.08175072,0.06676623,0.007964997,-0.05068783,0.08256746,-0.036934715,-0.09672877,0.07631242,-0.0024354486,-0.034915593,0.03711721,-0.034593135,0.027803663,-0.036779072,-0.047215275,-0.038421076,-0.00061672716,0.028757894,0.021813221,0.02238758,-0.10429474,0.023450112,-0.023672132,-0.050950177,-0.036191598,-0.017059436,0.030969556,0.015217575,0.029171167,-0.037841666,0.035546828,0.056680966,0.050813958,-0.04259448,0.03238319,-4.8063935e-08,0.04248688,-0.08156044,-0.078907296,0.022459103,0.06024715,-0.13694167,-0.06908762,0.027831377,-0.057150096,0.03591415,0.033282746,0.00010859589,0.004899339,0.033337332,-0.038500953,0.06286261,-0.015027968,0.11557846,-0.008049278,-0.0036677755,-0.0003552088,-0.019190699,-0.021498157,-0.0066785207,-0.03408725,0.001677621,-0.02654781,-0.07307936,-0.016999781,-0.105137125,-0.020357898,0.01384316,-0.0036701986,0.026536418,0.015196644,0.039919756,-0.06834781,0.050104506,-0.026732609,0.027190607,0.04392339,-0.033670507,-0.033734962,-0.0129869655,0.0055364664,-0.034898274,0.008702633,0.017453577,0.05050969,0.08375273,-0.111620605,-0.033251654,0.07926697,0.029336885,0.038062762,0.048962306,-0.008101089,-0.0031063494,-0.021044102,-0.030482654,-0.03015861,0.068207934,-0.02064618,-0.03672543} 0.94 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:53.275116+00 2026-01-30 02:01:10.665054+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1386 google ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB 1 t 1389 Go Karts Mar Menor unknown Grumpy man who looked like he hated everyone coming there… Also we paid for 8 minutes but only got to drive 6 minutes! Noticed it when we looked at the paper with the scores when we got home… There was not a single soul there other than me and my girlfriend, so that they cutted down our time with 2 minutes is NOT ok. It’s never ok, but especially when there are nobody else there. Rip off!\n\nAdded a picture to show that we didn’t get 8 minutes. I drove 6 rounds, one of them was 1 min 3 sec and the rest was under 1 min. grumpy man who looked like he hated everyone coming there… also we paid for 8 minutes but only got to drive 6 minutes! noticed it when we looked at the paper with the scores when we got home… there was not a single soul there other than me and my girlfriend, so that they cutted down our time with 2 minutes is not ok. it’s never ok, but especially when there are nobody else there. rip off! added a picture to show that we didn’t get 8 minutes. i drove 6 rounds, one of them was 1 min 3 sec and the rest was under 1 min. 2 2026-01-30 01:52:39.833374+00 en v5.1 R1.02 {V1.03,O3.03} V- I3 CR-N {} {"P1.01": "Grumpy man who looked like he hated everyone coming there…", "R1.02": "Also we paid for 8 minutes but only got to drive 6 minutes! Noticed it when we looked at the paper w"} {0.052573875,0.09086468,0.016599476,-0.044012126,0.04493751,-0.04847361,0.029044403,-0.03924792,0.028851017,-0.025016446,-0.054252572,0.011631261,0.007344206,0.0056653623,-0.046875253,-0.10648313,-0.008573669,-0.076336004,-0.040845618,0.040541604,-0.017807806,0.036613323,-0.056219246,0.04484679,0.047989093,-0.020124482,0.010920634,0.033569057,0.005250043,-0.08968123,-0.019465143,-0.031062331,0.068104,-0.012258603,0.019437976,-0.03137264,0.03705437,-0.00071612385,0.0009769143,-0.05762422,0.042650983,-0.016211744,0.04218396,0.033274468,-0.055969607,0.018274948,0.022269383,-0.026564244,0.059448034,-0.019985866,0.040339187,0.04465733,0.033642814,-0.022094632,0.023705566,-0.015120128,0.012845312,0.017199526,-0.043016974,-0.0058542546,-0.06700615,-0.014506671,-0.026065145,0.019285884,-0.0018164422,-0.003081242,-0.011635012,-0.05939896,0.027367452,0.085891746,0.031912025,0.040955745,0.016716236,-0.0132006295,0.015810031,0.015762199,-0.02481228,-0.040149365,0.034751866,0.0046395673,0.01023745,-0.06040257,0.031153027,0.041704535,-0.009349419,-0.11900595,0.045003507,0.10095887,0.05696355,-0.024227725,-0.004855308,0.06966993,0.04715288,-0.039868154,-0.037386388,0.042720336,-0.07012691,0.0066269096,-0.017038677,0.10361743,-0.0039758766,0.091406815,-0.011965231,-0.0129469745,0.078432,0.037697975,0.025283387,0.092000924,-0.075612746,-0.008933991,0.061136723,0.08604802,0.079775386,-0.004005694,0.017702637,0.060243905,-0.0124635035,0.03376392,-0.05382069,-0.013450128,0.015456296,0.078336224,-0.10045423,-0.0025623904,0.015578389,0.07658952,0.07592031,3.810413e-33,-0.00090995815,0.0126450565,-0.018359207,-0.008580368,0.09332146,0.0075535127,-0.07779884,0.034961086,-0.01918901,0.003792265,0.007077642,-0.008171014,0.012791564,-0.018756367,0.0004592874,0.06410125,-0.03656046,-0.009181285,0.0028711907,-0.028957315,-0.009387877,-0.12895289,-0.03887149,-0.00478971,-0.099521965,0.092375994,-0.0526129,-0.025573688,0.1011636,-0.029976936,-0.0669912,0.05488278,0.033094607,0.074473776,0.052002423,-0.06051905,0.02666231,0.03818045,-0.020292863,0.040586073,-0.07301436,0.02662259,-0.05302751,-0.043504175,-0.067776896,0.00084240496,-0.032237113,-0.040732324,-0.063404515,0.06913309,-0.011402802,0.031040305,0.055243805,0.062571436,-0.1029444,0.04229119,0.088542834,-0.04255562,-0.024517436,0.0009908536,0.04891808,0.070459835,0.07626059,-0.15005757,-0.033912167,-0.052721668,-0.09725451,0.006592818,0.02987806,0.007424944,0.0352737,0.039479278,-0.045225345,-0.009895843,0.014818659,-0.004747151,0.015813025,0.0047917077,0.03591888,-0.071915,0.05422166,-0.113449454,-0.030405309,-0.13745882,0.002000006,-0.020094194,0.000954249,-0.07068178,-0.078073084,0.00078493846,-0.06041601,0.023563446,0.014638854,-0.012236857,-0.05593818,-5.1557616e-33,0.013349163,-0.0008081064,0.022077652,-0.026344014,0.08815748,-0.030067742,0.0124982465,0.062814966,0.051197376,0.13811553,-0.025344923,-0.018597888,0.056286637,0.01675026,0.04625946,-0.117862865,0.1409881,-0.061543684,0.007985734,-0.039442554,0.05362531,0.02040423,-0.023103029,0.0035232292,-0.040441874,0.014229254,0.013995332,-0.06367304,-0.05425216,0.02479025,0.026097277,-0.048617292,-0.061874326,-0.026567524,0.032222614,0.052839465,-0.042745043,0.13906266,-0.06943906,-0.021258255,0.0074118734,-0.049520202,-0.046606682,0.05330923,0.041822903,0.01989141,0.07651173,-0.09721985,-0.099926375,0.08337304,-0.058911927,-0.03490394,-0.03473553,0.09749861,-0.055331904,-0.04044847,-0.023766141,-0.03924841,0.029326597,0.040570587,0.0036448073,0.022014458,-0.12509522,0.06433097,0.07414555,0.0017206998,-0.0064191273,-0.03149483,-0.007938577,0.008397379,-0.07158744,0.021507181,-0.021817883,0.02340253,0.08359671,0.097295284,-0.04793813,0.029969042,0.024640756,-0.0096095055,0.022139302,0.018760476,-0.057433493,0.05698025,-0.05651115,0.036150895,0.05593993,0.01801793,-0.025977308,0.014749124,0.06602462,0.10917863,0.013275939,0.051636346,0.013089228,-4.957581e-08,-0.044279188,-0.0023741557,-0.022874957,0.018054355,-0.0013700107,-0.09271648,0.05844447,-0.0070086583,-0.08175136,0.0479923,0.04323611,-0.030158056,0.008037286,-0.063905485,-0.020159561,-0.018300874,-0.061770413,-0.017401356,-0.082156464,-0.025815103,-0.040012173,0.032894276,-0.11304131,-0.030760145,0.0062997565,-0.043079484,0.016720414,0.039693322,-0.045184374,-0.028234744,-0.0050041084,0.09320537,-0.10054082,0.0042649843,0.023469243,-0.018730786,0.009790203,0.020656848,0.050799493,0.032590766,-0.14827704,-0.03860574,-0.06930796,-0.043884166,0.024090108,0.03186857,-0.04490003,0.07249286,-0.015766146,-0.05018552,0.051893212,-0.0651269,-0.020521998,0.04343163,0.058037058,-0.09171262,0.0047132717,-0.035809487,-0.009553823,0.00011105118,-0.016452212,-0.011363168,-0.08273648,0.013869952} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.616186+00 2026-01-30 02:01:09.191629+00 22c747a6-b913-4ae4-82bc-14b4195008b6 240 google review_66 1 t 243 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Rented a car from their office in Gran Canaria, and they ended up overcharging my security deposit. And their support is not doing anything so far, if they refund me what they unjustly charged, I will come here for an edit but in the first place, how could you trust such a company with your credit card authorization? Never again! rented a car from their office in gran canaria, and they ended up overcharging my security deposit. and their support is not doing anything so far, if they refund me what they unjustly charged, i will come here for an edit but in the first place, how could you trust such a company with your credit card authorization? never again! 1 2025-04-30 01:27:48.34056+00 en v5.1 P1.01 {A3.01} V+ I3 CR-N {} {"P1.01": "Great fun for the whole family. Lovely family that run it."} {-0.0009589947,0.083681196,0.011534196,-0.04463982,-0.09432618,0.035776958,-0.0184202,-0.03161643,-0.02808466,-0.0036417546,0.012644277,0.022028266,-0.0002050128,-0.012924718,-0.06150365,-0.00444269,0.031030342,-0.07870598,0.008230981,-0.008993188,-0.037539467,-0.0040692603,0.1349554,-0.003939887,-0.09660245,0.0808832,-0.058138948,-0.0013084677,-0.0041322783,-0.045664057,-0.030916756,0.016808793,0.06447735,0.04927027,-0.0070820707,0.04350568,0.05021505,-0.04952973,0.013555661,0.04419475,0.04436635,-0.009959279,0.079286344,-0.010909985,-0.063793555,0.08443235,-0.04924114,-0.05567391,0.08384694,0.07185005,0.08754385,-0.033582095,0.070218034,0.0004973332,0.039508346,0.06406298,-0.024889898,-0.08438209,-0.03806099,-0.017901132,0.002934794,0.08277085,-0.041442458,0.053786904,-0.051037155,-0.10087917,-0.017916225,-0.0266987,0.047157586,-0.08946175,-0.08759811,0.04404569,0.051833503,0.0055582277,-0.08606624,0.052194916,0.012582944,-0.05685078,-0.08870899,-0.01385186,0.020842034,-0.048818495,-0.05599941,0.004505419,0.020692931,-0.05350827,0.030134507,-0.011079817,0.04108091,-0.022396544,-0.072356276,0.016825583,0.035121676,-0.043798715,-0.042906534,0.014849664,0.03553081,-0.02638723,-0.119348034,0.017695919,-0.016905976,-0.0254972,0.07594405,0.030739948,-0.050161168,0.03960237,-0.052913237,0.054641016,-0.010056575,-0.11776807,0.0096878875,0.022939214,0.06057792,0.042967156,-0.0072587575,-0.024506582,-0.04243566,0.024825215,-0.031646598,0.014595352,0.08238018,0.02263447,-0.023816511,0.02623087,0.035114333,-0.04310757,0.07669612,-6.1081324e-33,-0.05019946,0.018858854,0.07766887,-0.018395146,0.039726667,0.023981884,-0.05750264,-0.023769682,-0.14102669,0.067983724,-0.004281256,0.003837684,-0.037807453,0.014867354,-0.019610418,-0.08282087,-0.09125998,-0.0093847895,0.0065032816,0.07564349,-0.008454023,0.0345471,-0.048635736,0.05163345,-0.038682647,0.007770716,0.091696836,-0.023477992,0.08908878,0.054905534,-0.024962822,-0.010358372,-0.0775678,-0.015526324,-0.042162023,-0.060579892,0.0059823426,-0.049202275,-0.016952492,0.115781054,0.0112297395,-0.046943683,0.0018061369,0.03454851,-0.08587035,-0.03388637,0.061206114,0.05198304,0.017135626,0.01802488,-0.048266653,-0.03633323,0.0159837,0.04964873,0.058029186,-0.019053437,0.0114500625,-0.027198926,0.0052958345,0.0324928,0.06806454,-0.004374182,-0.078722775,-0.0047406945,-0.033938907,0.010131091,0.084002286,0.023807457,0.03189482,0.012962194,0.030790718,-0.04049868,0.0049714833,-0.04951959,0.023775145,0.07413355,0.028147828,0.005847248,-0.025751097,-0.060019676,0.044859733,0.026667297,0.034370113,-0.049318783,0.059554577,-0.036388874,-0.041659437,-0.12008938,-0.1393376,0.040224053,0.009160678,-0.035165384,0.07241494,0.06804418,-0.018403519,4.176109e-33,0.03138371,0.05711921,-0.013151194,-0.020341199,0.04685059,-0.050940946,-0.0042651216,-0.039375987,0.042958662,0.08622763,-0.036202114,-0.0020875349,0.03126981,0.011035248,-0.042674996,-0.0500274,0.10528582,0.071689524,0.027750859,-0.07778988,-0.0098718945,0.069132,-0.078269914,-0.013679485,0.034893084,0.04328372,-0.053826533,0.05737443,-0.035924137,0.025086893,-0.03485373,-0.011384315,-0.017389173,-0.07440915,-0.0031071026,0.032979686,0.0040862467,0.018393748,-0.01768249,-0.08074371,0.018493192,0.0024697185,-0.053616427,0.08238041,-0.018942336,0.044973735,0.0045747994,-0.004463179,-0.108359836,0.04385719,0.0025808567,-0.015995678,0.0008264945,-0.043165408,0.006959146,-0.10955656,0.11303715,0.0017951028,-0.012272086,-0.019204628,-0.09747565,0.08522481,-0.049969997,0.06022987,0.039628934,-0.011039854,-0.09224309,-0.08298975,-0.03478332,0.069323085,-0.09673449,-0.02823655,-0.09447999,0.0020612536,-0.01842485,-0.021665026,0.008033099,-0.02588889,0.03493133,0.11471943,-0.022788066,-0.03543008,-0.0031229581,-0.05617973,-0.008388318,-0.0906092,0.013289428,0.03943555,-0.03647317,0.11665641,0.07844743,0.07373431,0.02126427,-0.004578916,0.0075517274,-2.1629546e-08,0.07428907,0.063593686,-0.015785297,-0.015624177,0.03456211,0.00698406,0.1270823,-0.006798665,-0.045927446,0.06299083,0.089928545,-0.012413721,0.08231296,0.056602836,0.07178994,0.009139633,0.06866874,0.09994232,-0.037310377,0.054988492,0.07687306,-0.0021918812,-0.0050355466,0.07493466,-0.06507293,-0.013823911,0.023078103,-0.07767318,-0.017308656,-0.023486063,-0.022954036,0.057365254,-0.051860526,0.0557141,-0.07944772,-0.00040517017,-0.0690741,0.029479217,0.03821155,0.025728848,-0.03638318,0.0028085303,-0.067931555,-0.03913299,-0.0336869,-0.006019672,-0.003843572,-0.021425633,-0.013590652,0.058471616,-0.028722374,-0.017901536,-0.07970632,0.047899373,0.08140389,0.0066143344,0.0117757935,0.021801453,-0.008797922,0.023053499,0.021142209,0.06289209,-0.0015168835,0.0600746} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.932613+00 2026-01-25 01:27:50.200921+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1354 google ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB 1 t 1357 Go Karts Mar Menor unknown This is the second time I have been here: once with a few friends and this second time with young family. It's been a great experience both times, good value and good service. It's a good track suitable for those new to go karting whilst being suitable for more experienced drivers due to the different power vehicles available. You can buy a drink and have a game of pool here too. this is the second time i have been here: once with a few friends and this second time with young family. it's been a great experience both times, good value and good service. it's a good track suitable for those new to go karting whilst being suitable for more experienced drivers due to the different power vehicles available. you can buy a drink and have a game of pool here too. 5 2025-01-30 01:52:39.833374+00 en v5.1 R3.01 {V4.01,P1.01} V+ I2 CR-N {} {"O3.02": "You can buy a drink and have a game of pool here too", "O4.04": "It's a good track suitable for those new to go karting whilst being suitable for more experienced dr", "R3.01": "This is the second time I have been here: once with a few friends and this second time with young fa"} {0.025246782,-0.009952571,0.018033076,0.0537514,-0.063846074,0.040128674,0.026559694,-0.056320738,-0.051019285,-0.06711867,-0.015235943,0.0093970755,0.004026882,0.024788098,0.014974116,-0.016087856,0.10939384,-0.14236078,0.008952485,-0.071026444,-0.07383986,-0.0625064,0.005989442,0.043851774,-0.03801694,0.052625883,-0.014744571,0.10289669,-0.007646992,-0.0489461,-0.034445528,0.08331441,-0.045064997,-0.020817928,-0.024627356,0.03298109,0.006767301,-0.053430952,-0.03731781,-0.011476542,0.024002757,-0.057245497,0.028010722,-0.01880551,0.033239268,0.058008038,-0.021649254,-0.04469393,0.103990376,0.0051832115,0.07977051,-0.057560727,0.12510404,-0.09136202,0.026419722,-0.0040245694,-0.06438532,0.009199448,0.03540916,-0.034343403,0.015600717,-0.01934756,0.008075478,0.032088432,-0.018083446,-0.13019744,-0.112766564,0.012657835,0.06447973,-0.046909373,-0.03172601,0.05587584,0.023829,-0.03175859,-0.030932039,-0.014704569,-0.002476144,0.00522876,-0.049054835,0.027134525,0.1187436,-0.021077268,-0.011824901,-0.041805074,-0.038298678,-0.09140787,0.07646974,-0.020544594,-0.0002747485,0.00036490906,0.033504374,0.13075094,-0.026793608,-0.047156926,-0.0023676914,0.025849203,-0.06466902,0.044623986,-0.027777635,0.035025902,0.06816447,0.09812234,0.05654759,0.006927714,-0.054767303,-0.020823574,-0.023327598,0.09881089,0.045540467,-0.029735625,0.03528645,-0.011515094,0.01319451,-0.020344397,-0.011549628,0.08717875,-0.0055785864,0.04930616,-0.0058610006,0.053684384,-0.035893135,0.01129964,-0.023661051,0.042070396,0.035556905,-0.02589949,0.0025194157,-1.3734963e-33,-0.054031506,0.0051430743,-0.0133733265,-0.00918907,0.036363855,-0.078201726,-0.07941613,-0.11403689,-0.098594874,-0.013027807,0.061309356,0.025560198,0.013544033,-0.054421287,0.07244562,-0.0047760922,-0.08686195,-0.0077306135,-0.07304139,0.030873057,0.030761655,-0.007088309,-0.026196826,0.03349016,0.013682997,0.032694038,0.06624821,-0.054022808,0.11243491,0.020189142,-0.1038712,0.0023485764,-0.09477526,-0.015233388,-0.065856375,0.039633263,0.013096862,-0.02973297,-0.02991424,0.0075416304,-0.020137934,-0.03141499,-0.044153545,0.0061298893,-0.028765565,-0.0052729584,0.06796384,0.01681526,-0.01829645,-0.0075755836,-0.11002419,-0.029445393,-0.013310562,0.04132823,-0.0007340072,0.061837148,0.030019075,-0.042247992,0.02343755,-0.018450418,0.076432966,0.010443529,-0.073936015,-0.0698584,-0.08390774,0.008883963,0.045701623,-0.015145461,0.06456324,0.0020503744,-0.015863357,0.019071156,-0.05762106,-0.057002977,0.13655409,-0.028996613,-0.051761582,-0.013463103,0.015606276,0.05021939,-0.029990012,0.020730099,-0.01079678,0.041756157,0.10795917,-0.029035423,-0.018139625,-0.11141035,-0.030102044,0.0097715575,-0.02720104,0.0008473188,0.060510788,0.051842462,0.050754454,-1.569912e-33,0.060652435,0.019977994,0.08638021,0.014351759,-0.0063426197,0.010966184,-0.006155236,0.0010221049,-0.003513089,0.062166866,-0.07263275,0.062112167,0.049962312,0.041936707,-0.00018496717,-0.046354275,0.08009571,0.046274405,0.04848782,-0.046184923,0.014616716,0.03539997,0.019744296,-0.030588925,-0.036847673,0.020878589,0.007078515,-0.07092324,-0.059979245,0.01814913,-0.015525883,0.010463989,0.025779104,-0.044434138,0.002589124,0.06485405,0.10115693,0.0005246625,-0.09643257,-0.002168846,0.011454446,-0.01392516,-0.040050875,-0.025461683,-0.022134092,-0.019150928,0.047184423,0.021637568,-0.02374607,0.017553817,-0.00886662,-0.020964656,-0.07832237,-0.02363162,-0.040092915,-0.021991616,0.038698785,-0.00020493226,-0.0996887,-0.018179836,-0.037251346,0.04738045,-0.055925377,0.024984559,0.04348017,-0.012853602,-0.023412175,-0.014062391,-0.057785597,0.003028175,-0.18919675,-0.01718683,-0.1361141,0.021139508,0.043920416,-0.04408057,0.0528284,0.011105398,-0.0067690643,0.060249522,0.008314671,0.022425005,0.019871712,-0.03147449,0.06402824,0.037210926,-0.027278062,-0.039973225,-0.004384355,0.011548241,0.07202231,0.059323035,-0.10610488,0.020379175,-0.078311786,-4.376823e-08,-0.052099727,0.09712564,-0.030274304,0.010780754,0.019129133,-0.03566143,0.033551004,0.042266373,-0.084106684,0.022548752,-0.045250528,-0.01609041,0.0034129114,-0.003084845,0.056323655,0.0590389,0.073002234,0.0942349,-0.018325837,0.048781063,0.02963838,0.018749172,0.011726737,0.05625956,-0.07279628,-0.0034493585,0.031607416,-0.006411651,0.029495057,-0.12366739,-0.037811562,0.047951203,-0.042240877,0.065696105,-0.008983981,-0.12193923,-0.03251923,0.040655833,0.01880206,0.0042976644,-0.0585907,-0.027441956,-0.028502896,-0.0035907624,-0.027419578,0.08501831,-0.0066409144,-0.052735493,-0.04725453,0.038111232,-0.111376,-0.017873265,-0.0016884605,0.089903384,0.13846654,0.07294986,-0.050174076,-0.02361841,-0.013370502,0.01752825,-0.0062715644,-0.003669308,-0.04467078,0.09277402} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.738366+00 2026-01-30 02:01:09.093668+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1475 google ChdDSUhNMG9nS0VJQ0FnSUN1eWJ2aGh3RRAB 1 t 1478 Go Karts Mar Menor unknown It's a great 8 mins spent\nWe really enjoyed it will come back soon it's a great 8 mins spent we really enjoyed it will come back soon 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "It's a great 8 mins spent We really enjoyed it will come back soon"} {-0.015000107,0.042935714,0.042952795,0.10522432,0.013901267,0.044064242,0.0051536835,-0.0031912695,0.038785156,-0.036130205,-0.05880471,0.08624245,-0.032739367,0.03409475,-0.06348209,-0.07208146,0.04013802,-0.09150279,-0.04469765,-0.07985602,0.006383923,-0.027340187,-0.024796575,0.023804558,0.0015265412,-0.0037288636,-0.0012140503,0.012539881,0.010457324,-0.06690001,-0.058137175,0.048437968,0.050073285,-0.0445202,0.004603666,0.09280539,0.035254184,-0.083542444,0.043071147,-0.03294703,-0.052985176,0.03304253,0.049565416,0.044498283,0.031983826,0.076575674,0.04390516,-0.10163503,0.12400464,0.029551292,0.07485651,-0.004746079,0.0014040014,-0.060699347,-0.025932597,0.0772996,0.023344794,-0.070241705,-0.044631813,-0.048163604,-0.05630475,0.014293944,0.0011639505,-0.003301779,0.025776708,-0.11300829,-0.025801558,-0.030088801,0.069912426,0.028613899,-0.05451127,0.038994253,-0.005798309,-0.02520547,-0.06628388,0.030331718,0.049376152,-0.0359373,-0.011656101,-0.010625398,0.05704019,-0.03839737,-0.023573346,0.033054326,-0.015727716,-0.04988624,0.024947442,0.069541164,-0.012058778,-0.06568509,0.06416269,0.09982622,-0.0077584246,-0.01772947,-0.002789647,0.032573853,-0.02123859,0.06312685,-0.040167388,0.080860496,-0.0033664412,0.07686205,0.02096862,-0.03173169,0.013829279,-0.02938156,0.08040677,0.090908416,0.012680535,0.023469364,0.01575999,0.0748726,0.025514944,0.06606653,0.040367026,0.065651275,0.0060329437,-0.021838259,0.021314053,0.008690963,0.04546561,0.06982515,0.03803148,-0.030594526,-0.07448692,0.0012171612,0.118815154,-2.4853134e-33,-0.11016993,0.019982152,-0.015632352,-0.032490373,0.0046900846,-0.020941066,0.052065298,-0.010026064,-0.14292674,-0.033905856,0.017811155,-0.0021143926,-0.057675216,0.009131269,-0.029864093,-0.060152177,-0.02234721,0.04262526,-0.022031626,0.0034915688,-0.04497897,-0.021761762,0.02708239,0.03186232,0.0040168,0.026546527,-0.01892237,-0.049663477,0.0043281447,0.0080067925,-0.037527557,0.06416275,-0.10302461,0.01698012,0.028978247,-0.0039564073,0.06329649,0.013300829,-0.019989615,0.067620955,0.014775662,0.051148538,-0.036594186,-0.009341088,-0.03144804,-0.084183075,0.0063522714,0.045323543,-0.009909779,-0.045003284,0.005754576,0.0052554663,0.020951457,0.023049066,-0.08564747,0.027573993,0.020779299,-0.054897193,-0.03598693,0.004630836,0.11908396,0.007960877,0.04146781,-0.11153776,-0.07945866,0.010967925,-0.027210884,0.05282147,-0.07315999,-0.032169625,-0.038672484,0.009723327,0.026422245,-0.05937928,0.02852276,0.025669256,-0.018061182,-0.042341694,0.030269418,0.04317701,0.032666244,-0.06791611,0.04967221,-0.05366118,0.012046525,-0.06393094,0.07745504,-0.14435934,-0.06566383,-0.053695895,-0.049879223,-0.062483102,0.049290076,-0.012363407,0.091435246,5.266532e-34,0.058315236,0.022349194,-0.01204344,0.005854558,0.015838506,-0.011308173,-0.059968144,0.2465847,-0.11145927,0.077016115,-0.07316207,-0.0122341635,0.07302507,0.004738893,-0.015927188,-0.015219236,0.088482186,-0.06636398,0.05168546,-0.07795949,0.043856382,0.08163444,-0.0097937025,-0.06466317,-0.095106766,0.00557516,-0.008721313,-0.00019805788,-0.020365953,-0.0708256,0.007844373,-0.061194737,-0.05588901,0.028822387,0.016508775,-0.003211562,0.055848993,-0.03242385,-0.0043048323,0.04985742,0.047029693,-0.02720347,-0.042145815,0.054549664,0.023497956,0.012533625,0.023554873,-0.0031870434,0.005075668,0.12108135,0.087131254,-0.054786947,-0.051929507,-0.09863652,0.019290362,-0.05997911,0.047694556,-0.06733261,0.014077772,-0.033652894,-0.052959606,0.016068162,-0.060147703,0.005680515,0.060361035,0.03054763,0.05719483,-0.059019834,-0.027116995,-0.056061544,-0.056825288,0.09400121,-0.08776786,0.03804125,0.09898944,0.03495276,0.0026928585,-0.03224937,0.042881947,0.031590346,0.007760467,0.022475956,0.009992427,-0.12919806,0.039828617,-0.046574917,0.049107246,0.0177494,-0.052778583,0.044185214,0.03543166,0.0019076903,-0.010608797,0.050987158,0.014650421,-2.4609836e-08,-0.019436913,0.109423414,-0.008265442,0.005855441,0.09986887,-0.09843804,0.093862966,0.0146665815,-0.008016292,0.023399405,-0.0058291433,-0.022205602,0.0018753859,0.030963104,-0.033409398,-0.057936747,0.08503759,-0.01613001,0.0033128683,-0.0801304,0.0024528021,0.012451841,-0.035792023,-0.051320247,0.0045171794,0.050189156,-0.0022712504,0.0040462175,0.012693841,-0.039330065,0.023900364,0.015986845,-0.055338185,0.0072384425,-0.08340226,-0.06847807,0.009287318,-0.04272315,0.017844956,-0.009734451,-0.023908235,0.00023168094,-0.05356405,0.027668832,0.020286912,-0.03399295,-0.06561166,0.0058312556,0.013196034,-0.03667611,0.0012910994,-0.06594187,0.012501418,0.07447983,0.055424936,-0.04255004,0.009899742,0.0013948932,0.0057446035,-0.040953856,0.0047049643,-0.03889263,-0.04601552,0.08599674} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.215754+00 2026-01-30 02:01:09.473471+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1477 google ChdDSUhNMG9nS0VJQ0FnSURRaDRlY21BRRAB 1 t 1480 Go Karts Mar Menor unknown Jus been to the Go Karts at Mar Menor..1st class professional and well marshalled circuit.....Great value for money ....and fast karts....loved it. jus been to the go karts at mar menor..1st class professional and well marshalled circuit.....great value for money ....and fast karts....loved it. 4 2019-02-01 01:52:39.833374+00 en v5.1 P1.01 {P2.01,O1.02} V+ I3 CR-N {} {"P1.01": "Jus been to the Go Karts at Mar Menor..1st class professional and well marshalled circuit.....Great"} {-0.05276774,0.117685676,-0.008472914,0.0431574,-0.10908123,0.013205482,0.033698548,0.016358,0.03716392,0.00788106,0.0070939832,0.07594289,0.03246127,0.00029797608,-0.008234795,-0.067493975,0.07388579,-0.046465795,0.037824407,-0.07753144,-0.102510095,-0.01757152,-0.04426975,0.03652886,-0.042891942,0.05264367,-0.015374193,0.07917437,-0.014873762,-0.09639971,-0.097026005,0.03170457,-0.03940715,0.03720175,-0.011585461,-0.0011842834,0.04887077,-0.029060228,-0.044633232,0.014791116,0.022322774,-0.051435165,0.027329704,0.021043368,0.024782646,-0.0029143167,0.069677524,-0.011879046,0.052639067,-0.01319518,0.064058155,-0.058373015,0.10776467,-0.086656496,0.04788254,0.052601226,-0.08404173,0.024775458,0.07213538,-0.029359989,0.031624705,0.01301877,0.0062466254,0.013661041,-0.059630577,-0.044638284,-0.031892832,0.0024356572,-0.0035749348,0.034213923,0.056607243,-0.022013413,-0.003421705,0.009702332,0.04044116,0.057055995,-0.015926689,-0.039152283,-0.06464203,0.017757222,0.04267356,-0.09233908,-0.04221071,-0.043879427,-0.059874237,-0.07047393,0.040315524,0.028533367,0.059979286,-0.07846055,0.06823385,-0.0027150004,-0.0942955,-0.05088909,0.010599395,-0.0112157455,-0.04191213,0.023340475,0.049872264,0.025396852,0.089697614,0.051016647,0.03246781,-0.007892294,-0.0018072872,0.029285096,-0.014861825,0.12330969,0.046466812,0.0066723865,-0.03968374,0.07742007,-0.06354178,-0.07493306,-0.023124507,0.0125409905,-0.035828304,0.08730217,0.053283986,0.029704211,0.04071522,-0.013477062,-0.012029999,0.080817565,0.0068222517,-0.101580665,0.014875786,-4.1290433e-33,-0.13070543,0.009399495,-0.023929637,0.00889479,-0.0025797724,-0.047303777,0.021660006,-0.09808322,-0.13706796,0.039043017,-0.0017514363,0.051792875,-0.02579137,-0.018731674,0.101014294,-0.04221567,-0.093110025,-0.042593576,-0.04820914,-0.030406091,-0.0019119844,-0.0009308752,0.020700563,0.07214064,0.0035400912,0.04954673,0.055151142,-0.031157007,0.03822567,4.3035565e-05,-0.018604869,-0.0055108867,-0.03617008,0.013300238,-0.057922162,0.042205647,-0.048996568,-0.03820837,-0.060301963,0.03251082,-0.007452152,-0.01161352,-0.023143886,0.0043718917,-0.059538078,0.05656286,-0.033724777,0.08959642,0.053280726,-0.039024584,-0.113337554,-0.02486719,-0.059293076,0.018902613,0.010760084,0.005427757,0.08352539,0.03462808,-0.06777025,0.006534274,-0.014352807,0.03152212,-0.02173416,-0.00756486,-0.1068919,0.06282963,0.007949383,-0.0427757,0.038222965,-0.02352158,-0.042323884,0.042772807,-0.027343482,-0.0744596,0.11580763,0.014990029,-0.048339672,0.0032603352,-0.024982754,0.05679023,0.010033205,0.0318857,-0.0346416,0.06811833,0.069601856,0.03421255,-0.05788703,-0.078454174,0.03657027,0.040679205,-0.011042928,0.013145875,0.014874158,0.045885246,0.068558276,2.1470054e-33,0.07572442,0.06440317,0.11443999,0.15529355,0.07388876,0.0071051484,-0.013815272,0.034609865,0.011130021,0.058041137,0.042493124,0.0370168,-0.050555404,0.04714031,0.0294336,-0.03184477,0.0714157,-0.008604948,0.071154706,-0.07299672,0.05014582,0.043988496,-0.014879873,-0.045937542,-0.03609271,0.029466866,-0.07834516,0.036560304,-0.098854445,0.020131292,0.0027340641,0.017378222,0.029218009,-0.003360978,-0.023130719,0.04321869,0.01661131,0.098507926,-0.0537735,-0.006790793,0.012354206,0.0029236812,-0.05629427,0.059183758,-0.0112301465,-0.05436721,0.07526907,0.002419352,0.10246814,0.0043563363,-0.0076376176,0.028122826,-0.051665653,-0.05634517,-0.020447422,-0.032229226,0.052883975,0.016700964,-0.065564156,-0.020882452,-0.07506193,0.013274324,-0.04825167,0.04204864,0.021742832,-0.0026934647,0.006174629,-0.05419478,-0.08041202,-0.045134187,-0.07470011,-0.010547791,-0.019834422,0.053652853,-0.009831127,-0.014082897,0.009414346,0.06784203,0.050158888,0.08781871,0.029298328,-0.009434485,-0.048031136,0.020579472,0.08004938,0.10585113,-0.0185769,-0.025799282,0.038786825,0.02667542,0.046441913,0.057017326,-0.0035249654,-0.03212168,-0.024087017,-2.8742965e-08,-0.04612541,0.12654051,-0.108269796,0.0005113563,0.03643447,-0.056588124,0.045061626,0.05707384,-0.06742794,0.07140133,-0.06920603,-0.0019317804,-0.007901737,-0.015585955,0.023896324,-0.034244027,0.0078116665,0.061852813,0.007822693,0.005884267,0.07472221,-0.016766593,-0.0048688143,-0.03147257,-0.049552396,-0.067143925,0.0055910666,-0.006426657,0.045085814,0.0017298693,-0.032020792,0.032245763,-0.040517937,-0.0034605474,0.029785784,-0.066305816,-0.04076062,0.07405206,0.022516955,0.026066823,-0.021486461,-0.05550502,-0.13610342,-0.017142806,-0.030156534,0.063857384,-0.035193577,-0.080729865,-0.057560675,-0.009919716,-0.07228863,0.010720896,-0.030244425,0.015888996,-0.019668568,0.017931774,-0.0021229645,-0.06945488,-0.07772064,-0.0361859,-0.06977093,-0.12695663,-0.07106117,0.020457158} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.255922+00 2026-01-30 02:01:09.478292+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1655 google Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB 1 t 1658 Go Karts Mar Menor unknown Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. Ahora tengo que decirle a mi peque que no lo celebraremos allí.\nMe parece una vergüenza. queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. ahora tengo que decirle a mi peque que no lo celebraremos allí. me parece una vergüenza. 1 2025-08-03 00:52:39.833374+00 es v5.1 A1.02 {} V- I2 CR-N {} {"A1.02": "Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo al", "P4.01": "Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco", "V4.03": "Ahora tengo que decirle a mi peque que no lo celebraremos allí. Me parece una vergüenza."} {0.022914482,0.102928534,0.020581942,-0.0787219,-0.066421404,-0.038457815,0.048632573,-0.017262375,-0.0037784863,-0.016385924,0.053815998,-0.06860875,-0.011083861,-0.083989136,0.0026604338,-0.011674189,0.02620314,0.01582123,0.03205018,-0.0072262697,0.034033466,-0.039260358,-0.060387757,0.111711174,-0.06105192,-0.008621717,-0.065168545,0.020197164,-0.057657644,-0.038925838,0.023587266,0.047858503,0.093839705,-0.054798298,0.017451514,-0.048355374,0.019405352,-0.08493429,-0.025966994,0.07256844,-0.049522568,-0.050173447,-0.029993748,0.03583285,0.013859327,-0.015077035,0.034520958,0.051592216,0.061849844,0.002525047,0.008605977,0.019689618,-0.01881413,-0.050453372,0.04536642,-0.019105088,-0.05379554,-0.048878618,0.02205458,-0.0005947167,-0.026040997,0.10848038,-0.047519643,0.07955127,0.0029597396,-0.019555878,0.0060505117,-0.0057336683,-0.023566416,0.12933907,0.079088435,-0.06925244,0.05367944,0.061864313,-0.10266574,0.0743519,0.02392749,-0.008983006,-0.04048011,-0.03893124,-0.049239047,-0.09340177,0.013360819,-0.11060093,-0.026331168,-0.046086032,-0.0010874575,0.0893838,0.0062579163,0.016097829,-0.0652202,0.07350899,-0.10712587,-0.007525518,0.031232437,0.059482668,-0.017823279,-0.023127835,0.06100339,0.017338848,0.053070214,0.061145667,0.06291397,-0.007422111,-0.04462722,0.07720589,0.013853186,-0.07998163,0.0020987038,0.0062086764,-0.08342952,-0.01017279,-0.019890476,0.013870896,-0.040082917,-0.04436774,-0.008391474,-0.039988823,-0.02130853,-0.034644518,-0.04019631,-0.020548549,0.0014107757,0.03276725,-0.020643074,-0.08424288,0.07481778,1.6594574e-32,0.005691057,-0.084585726,-0.046302717,0.045545403,-0.035931833,0.046511706,-0.003052622,-0.031257693,-0.059328694,0.060609225,0.028211685,0.0009985343,-0.034341086,0.010753562,0.016469542,0.0372165,0.010385563,-0.033649527,0.013596409,-0.01452071,-0.047648054,-0.017141601,-0.044084508,-0.003856657,-0.058097567,0.07831641,0.018260317,0.032150645,-0.03589484,0.040536538,-0.017836664,-0.024661051,0.05643044,-0.06352052,-0.01852553,-0.004682236,0.06223453,-0.015346365,-0.023806237,-0.0019201981,-0.05470412,-0.01636834,-0.044544984,0.032027654,-0.05950702,0.019544756,0.09618083,-0.0145164635,0.05441503,-0.032662295,-0.07765743,-0.07872606,0.00037521654,-0.07533436,-0.034366813,-0.033482682,-0.035050094,0.031306967,-0.08590064,-0.07977951,0.014721243,-0.01713318,-0.0006922472,-0.053258512,-0.030949974,0.017275658,0.04577636,0.01892238,0.085693344,-0.0024294115,-0.041217912,-0.018156713,-0.06483362,0.022495558,0.04946202,0.059289925,0.11578001,0.038769923,0.03899317,0.010058071,-0.014089157,0.011829875,0.033925917,0.008570811,0.15045291,0.11629601,0.05292908,0.03663839,0.027217057,0.079498515,0.024852436,0.064260624,0.10782491,-0.10213417,0.017530793,-1.6947691e-32,-0.02652916,0.05076564,-0.04174899,0.067336775,-0.002243803,-0.014207216,-0.054500684,0.039478596,0.0015554117,-0.101315126,-0.007888612,-0.094559364,0.119322896,-0.08283485,-0.053004693,0.043028593,0.07827808,-0.05488138,-0.052589953,-0.02424984,-0.033752985,0.10131257,0.02560619,-0.08683326,-0.03926573,-0.068772554,-0.011056872,0.0050011943,-0.03876025,-0.016457172,0.05748061,-0.042272735,0.006439065,0.079622746,0.05528918,0.043137237,0.0692079,0.04947756,0.010043526,0.022925433,-0.07928068,0.036262732,-0.085120566,-0.02679687,0.026119042,0.06359293,-0.07388736,-0.13955249,0.023743972,0.007635401,0.05122249,-0.015198706,-0.030890513,-0.04756832,0.07941611,0.0009862446,0.083784,-0.09231811,-0.081462465,-0.04401578,-0.014885881,-0.019006498,0.0075932094,-0.09846049,0.04484079,0.048447803,-0.07441506,0.054819714,-0.04860196,0.048583686,0.029964145,-0.020769823,-0.1769612,-0.0056995214,-0.054767426,-0.005375257,-0.04967108,0.02991308,0.03295947,-0.005668926,-0.01264504,0.013433967,-0.007567761,-0.064991824,0.0017010971,7.104511e-05,0.0041991677,0.05041257,-0.009249195,0.069825955,0.038386203,0.0420922,0.018603018,-0.06003891,-0.035129678,-5.5938635e-08,-0.0074907397,-0.04258179,-0.022533802,-0.06544341,0.049321357,0.00998091,0.023854231,0.007167071,0.05670324,-0.034503073,-0.0064515434,-0.04444664,-0.016243096,-0.010679252,-0.019553486,0.09727152,0.08376101,-0.04111659,-0.02829225,-0.041131113,0.07911633,0.00041417926,-0.07091632,-0.022720052,0.005928888,0.06063747,-0.010204266,-0.009969558,-0.009681667,-0.029324207,-0.012167538,-0.054320287,-0.050661832,-0.092369184,0.010406672,0.031910766,0.024773004,0.0033297618,0.055070512,-0.041098006,0.050228436,-0.05492182,-0.028442498,0.07350485,-0.055851817,-0.034509942,-0.020015,-0.018209647,-0.040622633,0.027432604,-0.070336446,0.006183645,-0.011435953,0.03979588,0.008360604,-0.02600784,0.033685945,0.08358134,0.059019066,-0.0035408933,0.103432946,0.047749054,-0.06097517,-0.06916028} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:44.292699+00 2026-01-30 02:01:10.19955+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1664 google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB 1 t 1667 Go Karts Mar Menor unknown Los mejores karts de toda Murcia! 🚀\n\nDesde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionantes carreras y cada vez es mejor que la anterior. La pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción y nos hace sentir la adrenalina al máximo.\n\nLo que realmente destaca es el trato del personal. Siempre son amables, atentos y están dispuestos a ayudarnos en todo momento. Nos hacen sentir como en casa, lo que hace que cada visita sea aún más especial. Además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de la velocidad.\n\nSi buscas una experiencia divertida y emocionante, no busques más. ¡Definitivamente volveremos el próximo año para seguir con nuestra tradición de carreras! 🏁 los mejores karts de toda murcia! 🚀 desde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionantes carreras y cada vez es mejor que la anterior. la pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción y nos hace sentir la adrenalina al máximo. lo que realmente destaca es el trato del personal. siempre son amables, atentos y están dispuestos a ayudarnos en todo momento. nos hacen sentir como en casa, lo que hace que cada visita sea aún más especial. además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de la velocidad. si buscas una experiencia divertida y emocionante, no busques más. ¡definitivamente volveremos el próximo año para seguir con nuestra tradición de carreras! 🏁 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"E4.01": "Además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de", "O1.02": "Los mejores karts de toda Murcia!", "O2.03": "La pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción ", "P1.01": "Lo que realmente destaca es el trato del personal. Siempre son amables, atentos y están dispuestos a", "R3.03": "Desde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionant", "V4.03": "Si buscas una experiencia divertida y emocionante, no busques más. ¡Definitivamente volveremos el pr"} {0.025994962,0.029282996,0.015566685,-0.012930278,-0.056996755,-0.036528207,0.10954683,0.02684214,0.04874343,0.052921377,0.09588361,-0.038280547,0.009917251,-0.00017133488,0.038690347,-0.0032735104,0.025728028,0.028239219,-0.014263919,0.11409899,0.09954184,-0.058233723,-0.1023971,0.085172966,-0.10589972,-0.0255651,0.02099192,0.005173939,-0.11760419,-0.07587732,-0.033132166,-0.011979824,0.108758636,0.0026514933,0.032325216,0.076941155,-0.019611752,-0.1007622,-0.076603204,0.03826885,-0.06753449,-0.0076096817,-0.011695653,-0.036132596,0.001021319,-0.0692772,0.08199213,0.012709194,0.02705398,-0.0027055969,-0.05817898,0.034734897,-0.06648438,-0.00503359,-0.025755445,-0.036997106,-0.073129416,-0.017354403,0.05566291,0.026687304,-0.057301994,0.041132722,0.02636815,0.0077489996,-0.021297868,-0.022456087,0.034935884,-0.0019606103,-0.011046117,0.0968648,0.050900538,-0.04569298,-0.03195231,-0.026479008,0.038313564,0.053855184,-0.031067831,0.006755105,-0.074062936,-0.08975642,0.019208798,0.009709548,-0.006623338,-0.030669922,-0.033349313,0.008243363,-0.03802645,0.00026894826,0.012818428,-0.005467763,-0.027884752,0.036489364,-0.08100364,-0.09084599,0.040752176,-0.022002693,-0.032561712,-0.06813452,0.06640776,-0.012702164,0.09295732,0.0984843,0.067670226,0.02024691,-0.024898227,0.023859572,-0.026875604,-0.0769808,0.04261848,0.073063634,-0.068051964,-0.037814856,-0.05625877,-0.018245514,-0.08206385,-0.014621411,-0.023369528,-0.04839846,0.058691196,-0.047762368,0.015137669,-0.041502696,0.04520298,-0.04741255,0.030334331,-0.05387952,0.060034305,1.4492831e-32,-0.052255116,-0.031247415,0.025450984,0.04970519,0.01535749,0.0038987824,-0.02224886,-0.050856207,-0.03889391,0.012146309,-0.07867669,0.097168155,0.005159816,0.04669177,0.04216731,0.008021122,0.04328546,-0.037056144,0.045217194,0.046229266,-0.013178589,0.032172415,0.002919782,0.0028023976,-0.0056940257,0.0117286965,0.0042694653,0.005019926,-0.09559261,0.042603116,-0.026323013,-0.013928496,0.049200073,0.0045792935,-0.03781185,-0.023718603,0.021459647,0.057021517,0.00014652076,-0.08506223,-0.070389494,0.0093686385,-0.007897521,0.047862247,-0.026269162,-0.004599635,0.09285446,-0.032915663,-0.008311021,0.04816792,-0.036588725,-0.07441287,0.06858014,-0.08256462,-0.026344484,-0.0042805807,-0.09023244,0.05981232,-0.057657007,0.006199756,0.05265975,-0.0036436273,0.0010756108,7.844111e-05,-0.0003853179,-0.03602342,-0.015803752,0.01402628,0.13705078,0.04005441,-0.0692432,0.037897933,-0.045460567,-0.008886299,0.036994938,0.0059571685,0.0036604593,0.008775936,-0.036533047,0.025172262,-0.04803579,-0.0030767145,0.032959383,0.06658687,0.08020401,0.07107379,0.05529767,0.04965272,-0.068013385,0.13908508,0.00073736743,0.07582919,0.049855396,-0.0126422625,0.04249847,-1.5301257e-32,0.023967266,0.04600758,0.018638052,-0.009529775,-0.045544807,0.0039253677,0.053031273,0.014752865,-0.055422653,-0.11768088,-0.10289476,-0.057653688,0.0439877,-0.04175104,-0.07414088,0.07150658,0.025835562,-0.05355569,-0.080030374,-0.046244394,-0.072596036,0.12027451,0.045122933,-0.037353527,-0.031390745,-0.06580662,-0.02580811,0.023550222,-0.05492534,-0.018804267,0.039055172,0.054138225,0.052326445,0.024845375,-0.025688902,0.026939536,0.007684523,0.021105008,-0.05095654,0.071478404,-0.0010932134,0.06057964,-0.0073465137,-0.05297775,0.004337138,0.08472365,0.023731712,-0.15194608,-0.03629965,-0.011776859,0.055228904,-0.054550868,-0.035268683,-0.04392755,0.06558898,-0.047171637,-0.0044400557,-0.06166572,-0.08520449,-0.01755809,0.06289896,-0.024820201,-0.066160835,-0.050484143,0.055422004,0.024691012,0.028643304,-0.015464703,-0.012690361,0.018583478,0.07737452,0.0022733128,-0.109742716,-0.040422566,0.051477935,-0.050126787,-0.055021603,0.02674511,-0.0033247648,0.002863111,-0.0033593713,-0.023919389,-0.04720078,-0.071189396,-0.023765208,-0.009873835,-0.05869194,0.06991239,-0.017291207,0.071261615,-0.008201908,0.0217413,-0.101955384,-0.02428067,-0.05587061,-6.039086e-08,0.017333683,-0.022062644,-0.010821117,-0.046820015,-0.00013827231,-0.04711911,0.027174555,0.098562814,-0.0065488685,0.0020395073,-0.015612841,-0.0037882123,-0.026876984,-0.004853927,-0.013815223,0.04974774,0.09634216,0.06970409,-0.02752163,-0.022708382,0.07070208,-0.019028883,-0.11746558,0.0428082,0.03972872,-0.0025113123,-0.04516589,-0.072992876,-0.016347727,0.036024813,0.023499222,-0.076669544,-0.049083035,-0.02207016,-0.065744705,-0.10039416,0.038696572,0.0053537115,0.009000697,-0.0021429006,0.085376054,-0.026601551,-0.045887068,0.025530618,-0.094912834,-0.017267907,0.03593663,0.048991133,-0.016167149,0.046624634,-0.051910844,-0.010002511,0.028240094,0.017756134,-0.019820243,-0.046184782,0.09693567,0.046917778,-0.011301161,-0.0062069036,0.115822844,0.13936065,-0.041293167,-0.05223484} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:16.507003+00 2026-01-30 02:01:10.234507+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1801 google ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE 1 t 1804 Go Karts Mar Menor unknown Atención al cliente muy deficiente. Nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble. Una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabajador que sea. No recomiendo atención al cliente muy deficiente. nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble. una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabajador que sea. no recomiendo 1 2023-01-31 01:52:39.833374+00 es v5.1 P3.01 {} V- I3 CR-N {} {"P3.01": "Atención al cliente muy deficiente.", "R1.01": "Nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble.", "R1.02": "Una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabaj", "V4.03": "No recomiendo"} {-0.027107837,0.09419713,-0.033138342,-0.04587886,-0.13928002,-0.008382333,0.07712706,0.069089964,0.021535078,-0.034427296,0.05524894,0.015368364,0.019269532,0.04643845,0.058528762,-0.021441836,-0.007078918,0.0077351574,-0.00855346,0.0037330787,-0.019395325,-0.04765011,-0.13971551,0.07262777,-0.078746885,-0.0942178,-0.0327927,-0.013931754,-0.05229921,-0.04124234,-0.01965346,0.06450067,0.043589182,-0.014262211,-0.006304018,0.014160975,0.025293108,-0.047685605,-0.019063232,0.07438459,-0.047376215,-0.019407421,-0.04424403,0.0131790275,-0.029524518,-0.108796634,0.03309201,0.050217465,-0.036935918,0.013400841,-0.07103107,-0.01879778,-0.0153436195,-0.025475362,-0.0017579591,-0.06303968,-0.051561374,0.042854782,-0.0019178557,0.031254675,0.0221353,0.034886036,-0.010073861,0.06443893,0.044787332,-0.001126009,-0.004705124,-0.02099557,-0.14388928,0.07476481,0.105649255,-0.12839863,-0.062155,0.039538767,-0.04392769,0.034634657,-0.01788957,0.02187064,0.05548107,-0.008020078,0.0013464361,0.014466735,-0.09167017,0.05261519,0.02681822,-0.0050022197,0.012009241,-0.055542003,0.031870745,0.029858781,0.0072882576,0.02085175,-0.031726327,-0.025105922,-0.035871148,-0.006992438,0.053194158,-0.005533114,-0.05011963,0.039926622,0.048741672,0.064205155,0.009742755,-0.011386649,-0.09453621,-0.010640158,0.05110655,-0.023884103,-0.0044338135,0.06258878,-0.14725304,-0.019328244,-0.066419974,-0.06572955,-0.0057521383,0.04038432,-0.05556565,0.0072834524,-0.07826785,-0.08145985,0.009117431,0.00744947,0.016997637,-0.005578607,-0.022003466,-0.07124312,0.08027927,1.2954252e-32,-0.05782512,-0.03246313,-0.047848403,0.053540308,0.036080014,0.03709377,-0.031900324,-0.032760166,-0.05334516,-0.06354305,-0.07793172,0.05825465,0.032037176,0.0018493723,0.037524674,0.022059448,0.049573574,0.013306722,0.077330396,-0.038862612,0.013432821,-0.04772585,0.005966751,-0.0032540045,0.011740765,-0.0057519106,-0.014888902,-0.007516633,-0.03742775,0.057197932,0.05152918,-0.0171467,0.01003369,-0.03344297,-0.038255874,-0.064282365,-0.010357342,-0.0070338408,-0.008651337,-0.05593377,-0.04158402,0.076591246,-0.013640203,0.019719984,0.052019205,0.030241001,0.079340205,-0.018631794,0.034159627,0.027034868,-0.06783182,-0.004418067,0.0017289696,0.019846175,0.013511685,0.030132137,-0.019404236,0.044840943,-0.04809396,-0.06568921,0.016089324,-0.010683261,-0.03206231,-0.062489945,0.026661677,0.023961427,0.017173978,-0.0448573,0.07770751,0.017781626,-0.04003559,0.024637984,0.0031548257,0.06723209,-0.043967307,-0.035240266,-0.012685363,-0.0060039232,0.008499856,-0.022527017,-0.08278433,0.0060925446,0.040462863,0.067056134,0.057106845,0.11145744,0.09450875,0.06142931,0.020044928,0.17665504,0.018656222,0.07308926,0.018608391,-0.038909387,0.07807987,-1.3386046e-32,-0.091970295,-0.043209627,-0.05067511,-0.00688663,-0.006891427,-0.04027254,0.044168625,-0.0008517773,0.015912287,-0.012694468,-0.058361556,-0.11146759,0.005606007,0.01965194,-0.065271676,0.0048097917,-0.027223853,-0.07481654,-0.031037332,-0.065036476,0.09503384,0.0399515,0.08248601,-0.0050020893,0.01482095,-0.036562596,-0.038725734,-0.010704396,-0.017768905,-0.056016967,0.055683497,0.035464108,-0.015272691,0.07937353,0.004959857,0.002218063,0.034908768,0.075826585,-0.025158083,0.018509224,0.017696455,0.03840351,-0.050537776,-0.017159026,0.016634835,0.050535206,0.025503276,-0.15514052,-0.009102244,-0.054813277,0.041005004,-0.029353112,-0.026904704,0.013966302,0.032034367,0.021246344,0.05569024,-0.10077989,-0.042321574,-0.010140342,0.08716179,0.0053525465,-0.018937152,-0.0058216495,0.094483934,0.020929692,0.0050373473,0.08243242,0.076793484,0.007524743,0.1218448,-0.09321861,-0.09973258,-0.024285631,0.030466693,-0.028872317,-0.16814823,0.02554891,-0.02113999,0.045962106,-0.029263547,0.027429292,0.004946639,-0.007834842,-0.019106062,-0.014957964,0.045494284,0.06420187,-0.023064004,0.0027973005,-0.039071318,-0.008535131,-0.080427386,-0.027640093,-0.01998845,-4.9565823e-08,-0.06264107,-0.08622821,0.07036473,0.045178328,0.030180695,-0.05731821,-0.04131678,0.03475575,0.028819798,0.06972181,-0.020321531,-0.09624802,-0.079362705,0.037330594,0.04505523,0.021956054,0.07061853,0.06671412,-0.06470538,-0.08658289,0.09592246,0.024996277,-0.09635866,-0.024435878,0.020390175,-0.0054035317,-0.05944381,0.08090634,-0.065425366,-0.029164555,-0.012681221,-0.041614335,0.05760084,-0.08980734,-0.038804304,0.030392174,0.003384038,0.00032329073,-0.0057264916,-0.010615714,0.025259692,0.04517717,0.026889121,0.06382023,0.021524815,-0.022712884,-0.037952784,0.026578631,-0.0131761115,-0.09146481,-0.020234887,-0.052504964,0.07031507,-0.017733984,-0.014419569,-0.055822592,0.011556999,0.0116027845,-0.071945146,0.007818922,0.08276364,0.09615278,0.052127626,-0.051880043} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:02.751364+00 2026-01-30 02:01:10.757789+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1826 google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB 1 t 1829 Go Karts Mar Menor unknown Trato fantástico, llame por teléfono y me atendieron al momento, aún apesar de que ese día llovió, solo la estancia fue agradable, tenían buena conservación en los vehículos, seguridad en la pista y un sistema de clasificación que incitaba a mejorar en carrera. trato fantástico, llame por teléfono y me atendieron al momento, aún apesar de que ese día llovió, solo la estancia fue agradable, tenían buena conservación en los vehículos, seguridad en la pista y un sistema de clasificación que incitaba a mejorar en carrera. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {J1.01,A3.03} V+ I3 CR-N {} {"E1.04": "aún apesar de que ese día llovió, solo la estancia fue agradable", "E4.01": "seguridad en la pista", "O1.03": "tenían buena conservación en los vehículos", "O2.04": "un sistema de clasificación que incitaba a mejorar en carrera", "P1.01": "Trato fantástico, llame por teléfono y me atendieron al momento"} {-0.014341861,0.013950565,-0.0369005,-0.11112166,-0.09102668,-0.046619892,0.05316963,0.13770904,0.0013224869,0.0049968725,0.044405714,0.055469368,-0.025762307,-0.012873123,-0.01833022,-0.018721655,0.06004908,-0.028184883,-0.020417716,0.033767123,0.11580411,-0.040548693,-0.041461654,0.06924365,-0.047824696,-0.03453519,-0.013678768,0.07234632,-0.046246707,-0.0637553,-0.05585064,0.14307132,0.08490364,0.033308744,-0.065734945,-0.01626085,0.050156586,-0.037753865,-0.046243433,0.02598214,-0.050000407,-0.04207891,-0.024512624,-0.03414127,0.009119034,-0.09336405,0.008793452,0.060205314,0.032496337,-0.045153745,-0.13674232,-0.011438743,-0.0017745291,0.0046773627,-0.08238429,0.054592617,0.017113447,0.04241076,0.057052266,0.048487414,0.026961584,0.00024754554,0.012896447,0.030395709,0.0655137,-0.004006625,-0.029035926,0.04647421,-0.071588,0.020928027,0.052292716,-0.048349973,0.0023491466,0.030293465,-0.057792887,0.06296231,0.0074897055,-0.023578772,-0.004111628,-0.023203528,0.01582468,-0.059799433,0.005256231,-0.062316187,0.005693614,0.032913364,0.006630032,0.0116355335,-0.022600712,-0.020345038,-0.054724228,0.0019756593,-0.06266714,-0.01565307,-0.096338145,-0.0028699674,-0.027424097,-0.08913618,0.016140902,0.035724804,0.067663506,0.014726251,0.032358773,0.03384987,-0.12189562,0.012159588,0.013964887,-0.047036573,0.065689705,0.013519198,-0.067446075,0.008648738,-0.054086618,-0.019876705,-0.021135224,0.02249142,-0.009524921,0.0029780546,0.07961361,-0.052544534,0.023092652,-0.04965566,0.009051973,0.018041395,0.026339428,-0.006873897,0.08583706,1.1116546e-32,-0.008269169,0.0017727485,-0.006279582,0.04935829,0.025106592,0.031984378,-0.04743502,0.016724626,-0.08422954,-0.002217895,-0.09049182,0.056680787,0.021526676,-0.021549484,0.08569174,0.021585956,-0.039689533,-0.052174203,0.06453336,-0.05593561,-0.03291275,-0.014820104,0.03868309,-0.010185706,0.03123543,0.037663594,0.009310154,-0.058968287,0.032399718,0.06504642,-0.023605166,0.032460004,-0.005500697,-0.011562255,8.74978e-05,-0.064088576,-0.08648444,0.02380342,-0.009617276,-0.007726357,0.0334534,-0.02297687,-0.113034315,-0.015746081,0.0016818072,0.03231204,0.086211346,0.05040286,0.07000728,0.034231473,-0.07558153,-0.06248699,-0.05016872,-0.07598926,-0.013541242,0.05150651,-0.059760176,0.01071844,-0.0033879539,-0.061050188,-0.00448888,0.016294852,0.030357225,0.013480195,0.008811829,-0.025492564,0.0353037,0.05760796,0.08958257,0.08003635,-0.027218014,-0.0472394,0.00020162428,0.027853748,0.015530759,0.03500093,-0.039189775,-0.0016852566,-0.043022662,0.037343692,0.014971748,0.04304021,0.047907937,0.0025407756,0.12902938,0.07338193,0.028419057,-0.028300103,0.008295292,0.13759305,-0.046082206,0.09504876,-0.004135648,0.043233,0.016531676,-1.2619866e-32,-0.03978981,-0.006720407,-0.014016744,0.039948277,-0.038495343,-0.06811395,-0.046326514,0.008269378,-0.04999624,-0.006319311,-0.05999346,-0.15867317,0.083571285,-0.05286854,-0.015820242,-0.0055725584,-0.02094952,-0.13506958,-0.09607029,-0.059843633,-0.0032419614,-0.026838517,0.04032091,0.0036945054,-0.058446564,-0.06354237,-0.022476736,0.025300324,-0.031201033,-0.0017733533,0.06389243,-0.0012893929,-0.060970787,0.05899578,-0.02848694,0.122117475,0.0397964,0.054043446,0.07414523,0.02828532,0.01899179,0.036578964,0.07818123,-0.07205671,-0.045187924,-0.019941222,-0.041619398,-0.113567,-0.057294887,-0.06200764,0.072840996,-0.017501883,-0.008789046,-0.043171562,0.004895037,0.026238905,0.031343717,-0.11233883,-0.0574849,0.007036685,0.06614599,-0.07314524,-0.05674441,-0.045706283,0.04359411,-0.014396392,-0.008486831,0.017945137,0.020909863,0.06836373,0.10741388,-0.023491569,-0.09625422,0.06179271,-0.04605104,-0.01637288,-0.08136725,0.035324357,-0.009164099,0.0037560896,0.042134468,0.035084892,-0.0031979869,-0.052936964,-0.028943002,0.0032265955,-0.0011563705,0.058143698,-0.01912451,-0.010471847,0.021115916,0.086974084,-0.089263745,-0.050539173,-0.039435446,-5.3100557e-08,0.01936842,-0.08393227,0.03378782,0.028521778,0.02474326,-0.09543328,0.022120824,0.044216525,0.00418369,0.044345338,-0.05680299,-0.053680267,-0.03406217,0.08932287,0.037685186,-0.0027678867,0.09698786,0.003430353,0.0037443275,-0.043079484,0.089520335,-0.05593307,-9.2549795e-05,-0.023145495,-0.013451916,0.004801281,-0.020586722,0.013122628,0.0042458135,0.0014470519,-0.05333952,-0.008092088,-0.006720596,-0.05613858,-0.088470995,-0.03540161,-0.037254978,-0.043875273,-0.0358445,-0.073113434,0.15999112,0.045350913,-0.029300166,0.044503998,0.0259702,-0.07759311,0.013825815,-0.03648537,-0.008670994,0.0062410766,-0.06952529,-0.03857703,0.07451489,0.034332484,0.06287818,-0.046550423,0.045465525,0.0033937308,-0.018557463,0.034248073,0.03308069,0.083449505,-0.03179126,-0.09145842} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:03.960723+00 2026-01-30 02:01:10.866019+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1777 google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB 1 t 1780 Go Karts Mar Menor unknown El sitio es muy bonito y al aire libre, si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan. Por este motivo no pude usar la pista, pero entre al lugar y la atención muy agradable, me explicaron todo. Seguro volveré. el sitio es muy bonito y al aire libre, si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan. por este motivo no pude usar la pista, pero entre al lugar y la atención muy agradable, me explicaron todo. seguro volveré. 4 2022-01-31 01:52:39.833374+00 es v5.1 O3.02 {} V- I2 CR-N {} {"A1.02": "si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan", "E1.04": "El sitio es muy bonito y al aire libre", "O3.02": "Por este motivo no pude usar la pista", "P1.01": "pero entre al lugar y la atención muy agradable, me explicaron todo", "R4.03": "Seguro volveré"} {-0.023350457,0.00777965,0.076776065,-0.036763534,-0.025207052,-0.03779465,0.07371303,0.0066479878,-0.018081892,0.007222073,0.07836775,0.0068236585,-0.019243956,-0.007555072,0.05202847,-0.003261259,-0.011770449,-0.011036984,-0.023947727,-0.008495025,0.09357042,-0.0333226,-0.11941947,0.13918138,-0.047784988,-0.03139216,0.06603449,-0.013318524,-0.050127964,-0.10168806,-0.016215982,0.063730925,0.101201184,-0.018740933,-0.029461287,-0.002954207,0.096815646,-0.0514284,-0.03936539,0.024044352,-0.045742024,-0.04198123,0.03797486,-0.0028627764,-0.020137247,-0.046814285,0.083753064,0.0325457,0.03631758,0.000806284,-0.052298386,0.08346984,-0.012746747,0.015330796,-0.038071472,-0.03019507,0.021108912,0.019941451,0.023330191,0.030203821,-0.04767031,0.03817431,-0.06101525,0.039671157,0.040793244,-0.077610776,0.008752102,-0.05615946,-0.069922976,0.095538154,0.03974111,-0.06257447,0.036710735,-0.05399929,-0.060765162,0.07732776,0.00069288013,-0.03630406,0.011827672,0.031659078,0.0058052754,-0.04919783,-0.01410781,-0.0073800283,-0.020003907,-0.013876445,-0.03577784,-0.025943728,0.033637542,-0.0071808337,0.00013439897,0.11327771,-0.055325784,-0.05276778,-0.048243552,0.04695538,-0.0084856935,-0.029363832,0.013223638,0.04722749,0.08141983,0.069945574,-0.0017377809,-0.011635198,-0.036143947,-0.012740308,0.042495348,-0.05718617,-0.023693794,0.062074345,-0.018220535,-0.008684448,-0.02666438,-0.011927499,-0.093949236,0.101988986,-0.060219243,-0.07945777,-0.09231217,-0.075948335,0.0031367557,0.026287338,-0.056498967,0.014671355,-0.023388367,-0.11924552,-0.025749542,1.426377e-32,-0.01690855,-0.057099834,0.0074287653,-0.02212514,0.01174648,-0.017942185,-0.017387606,-0.027517242,-0.058250472,0.0056917947,-0.037948586,0.065658115,0.047905557,-0.008522768,0.10267709,0.0011917448,-0.0053663948,-0.051689617,0.03945384,-0.030986924,-0.02010863,-0.095211275,-0.06260142,0.030543432,-0.010824727,0.05911299,0.013232512,-0.04893169,-0.080155194,0.06821658,0.009294366,0.0567516,0.02542451,-0.044395413,-0.044261917,-0.0735044,-0.014004953,0.051421367,-0.041133687,-0.046514444,-0.019864693,0.03650224,0.0109567195,0.07260937,-0.041886307,0.018845897,0.012022131,-0.030062487,0.057457805,0.00894703,-0.045531437,-0.058796473,0.0063836495,-0.038379684,0.016110301,-0.02365615,-0.09480727,0.018979281,-0.017768724,-0.034167226,0.011963882,0.031094966,0.019417126,-0.0114855245,-0.05370911,0.015939256,0.042082828,0.06193508,0.11181888,0.042918757,-0.016791778,0.020680232,-0.061045103,0.033516947,-0.0054798783,-0.02860355,0.08056507,-0.022966739,0.0056608357,0.002093276,0.036373064,-0.082552545,0.07666064,0.0011507593,0.05009431,0.043630328,0.07831081,0.09153033,-0.013670163,0.10351996,-0.023382755,0.06318324,0.070201695,-0.011012969,0.010501636,-1.4508064e-32,-0.007432968,0.02766459,-0.036866263,-6.7208835e-05,-0.0033543447,0.019162495,-0.004766515,-0.0050224285,0.012678606,-0.024810238,-0.14565122,-0.09671874,0.08429272,0.03831917,-0.021721937,0.06270012,-0.019258585,-0.12710905,-0.08268201,-0.011665368,0.0010721671,0.08025474,0.040810924,-0.01855324,-0.031753145,-0.07537485,-0.05998303,0.042476125,-0.094714016,0.09264344,0.007844551,0.040821172,-0.048659746,0.060210176,-0.054381594,0.03453562,0.051341478,0.026409645,-0.017413026,0.023262119,-0.020578396,0.023079744,0.010408523,-0.051761333,0.021567877,-0.014342929,0.02359022,-0.18408422,-0.110607,-0.098480254,0.022339677,-0.033885345,-0.03865857,0.060690124,0.051401448,0.023645598,0.0064328625,-0.082460254,-0.11343692,-0.049588066,0.033665627,-0.043523382,-0.027512785,-0.03413331,0.11289934,-0.0013611935,-0.013988807,-0.07593626,0.0625772,0.042545825,0.075904585,-0.04121157,-0.09022888,0.080026634,-0.038602106,0.05509091,-0.089977436,0.048639704,-0.082789265,0.048741113,0.0034738726,-0.011809211,0.004495072,-0.021543458,0.005088704,-0.034058113,-0.027579492,0.035113923,0.005054702,0.059739213,-0.01197672,-0.012921974,-0.04246491,-0.054809593,-0.027253244,-5.4306078e-08,-0.046069946,-0.038955584,0.02677668,0.09080416,0.011578764,0.008423732,-0.0005298387,0.02905929,0.02752648,0.04422997,0.016142918,-0.028717542,0.028819626,0.013783878,0.07225076,0.061493028,0.09265539,0.10757912,-0.05081457,-0.0010230785,0.031842377,0.015511271,-0.05167093,0.028220495,-0.009667595,0.06429972,0.0049241735,0.01405662,-0.0070244092,0.010115433,-0.05471886,-0.0145928385,0.005050886,-0.11968126,-0.05379216,-0.00073943567,0.02164623,-0.019928098,-0.029165173,0.036185708,0.029298622,0.050960813,-0.091347985,0.028716547,-0.008240747,-0.07539601,-0.037800714,0.0036285166,0.012423474,0.023734434,0.009145426,-0.029748715,0.07235613,0.007423584,0.086611,-0.039691173,0.021516714,0.01443392,-0.044425394,-0.011408717,0.059455507,0.14450403,0.016276777,-0.103896834} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:05.513829+00 2026-01-30 02:01:10.667844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1802 google ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB 1 t 1805 Go Karts Mar Menor unknown Su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor. Por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los clientes. Me reitero experiencia cliente 0 y de respeto ya ni hablamos. Gracias y que les deseo mucha suerte su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor. por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los clientes. me reitero experiencia cliente 0 y de respeto ya ni hablamos. gracias y que les deseo mucha suerte 1 2023-01-31 01:52:39.833374+00 es v5.1 P1.02 {R3.01} V- I3 CR-N {} {"P1.02": "Por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los cli", "P4.03": "Su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor.", "V4.03": "Me reitero experiencia cliente 0 y de respeto ya ni hablamos."} {-0.020056713,0.07724321,-0.07044209,-0.041570537,-0.01834178,0.011013412,0.06315385,0.05479681,-0.08988979,0.018457005,0.052290536,0.01767239,-0.044520654,-0.008667792,0.034618605,0.021190435,-0.022189073,0.0039033208,0.04808701,-0.026065515,-0.03354985,-0.06401731,-0.036228154,0.02529001,-0.08854923,-0.10722488,0.030412989,0.0020509546,-0.046959884,-0.019730154,0.010920768,0.0847513,0.041624263,-0.012262294,-0.05732731,0.061293166,-0.028629482,-0.030413214,-0.07722435,0.074092515,-0.0477886,-0.020847887,-0.07634031,0.011784289,0.05990389,-0.09684102,0.055595286,0.072059155,-0.009825989,0.0045000217,-0.08424391,-0.06654693,0.008758583,0.0076553887,-0.064276464,0.015885668,-0.0056197606,0.031096127,0.051326003,0.01388439,-0.020361172,0.05734135,-0.04939174,-0.007033011,0.028240176,-0.03613965,-0.044874467,-0.018861823,-0.059807047,0.036178265,0.13914232,-0.05417997,-0.053184766,0.009685586,-0.0072541623,0.02044138,-0.0077488953,0.06768554,0.0396267,-0.021925725,0.07451339,-0.032814305,-0.06434395,-0.006390969,-0.035036135,-0.036102798,-0.02596083,-0.009582779,0.032739338,0.027325567,0.017756091,0.14441551,-0.074660085,-0.07178783,-0.065195695,0.022045868,-0.011941214,-0.015710272,-0.030264273,0.046727024,0.039045252,-0.019621149,0.073199265,0.048635773,-0.07586129,0.03157987,-0.0036205617,-0.023390498,0.019140067,0.05283089,-0.062359083,-0.03924124,-0.035705067,0.019072488,-0.032632016,0.0021957841,-0.07618004,-0.0535663,-0.06474815,-0.058424603,0.0061327526,0.09239646,-0.012138659,-0.055072382,-0.011520667,-0.11197853,0.019961137,1.4235341e-32,-0.016187578,0.0016455372,-0.05695454,0.099580765,0.049711835,0.026254386,0.06728932,0.019999834,-0.09339483,-0.055228487,-0.010595542,0.10894738,0.062354557,-0.0029306056,0.009099309,0.018987838,-0.06303659,0.005958099,0.03251477,-0.025611764,-0.05056052,0.004066824,0.009190153,0.028026298,-0.024872288,-0.018410677,-0.024238499,-0.005001263,-0.00053091126,0.05019699,-0.0016792907,-0.021902768,0.012826525,-0.06447565,-0.026226996,0.044584066,0.023703316,0.0020258103,-0.050571527,-0.04468387,-0.084618896,0.090215035,0.026280068,0.059603058,-0.015627746,0.023599532,0.09777945,-0.06456707,-0.035637185,-0.0037727605,-0.06973778,-0.03291375,-0.033672497,-0.00084202294,-0.0011855952,0.02386907,-0.059483297,0.10752652,-0.051854335,-0.06724244,0.08554683,0.008587938,-0.006671012,-0.00016749378,-0.047096238,-0.059431404,0.013124649,0.014090683,0.16852042,-0.020354275,0.0052524447,-0.007467131,0.0005301096,-0.0209371,-0.010704145,0.0006591384,-0.029700018,0.02893195,0.013588971,-0.0021167793,0.006677472,-0.021460306,-0.025416138,0.021764606,0.08623111,0.050373603,0.053565077,0.0033596905,0.016531866,0.16833343,0.06840158,-0.0012876461,0.012208271,-0.029260898,0.12573679,-1.4690879e-32,-0.08782648,-0.025013095,-0.0027296415,0.004211368,-0.007338131,-0.04335714,-0.04729969,0.022144025,-0.044240233,-0.050185584,0.0023765436,-0.103250206,0.07303374,-0.024546204,-0.088611454,-0.012105568,-0.051512565,-0.028233109,-0.039383557,-0.053073842,0.0992825,0.023765458,0.07412651,0.03216625,-0.006129497,-0.092755966,-0.011955433,0.021003766,-0.07157064,-0.00839554,0.041538194,-0.005665883,-0.025427468,0.027208624,-0.008447889,0.014291494,0.0523091,0.061018325,0.019320332,0.064293645,0.04450579,0.0025812446,-0.094618574,-0.03983922,-0.0025463344,0.06646309,0.019179046,-0.14615701,0.019945722,-0.063531645,0.078017965,0.023123262,-0.034930468,-0.06144152,0.029116541,-0.063760646,0.0784013,-0.0673748,-0.0942183,0.013895371,0.07554932,0.0039771064,-0.0056371572,-0.0035149704,0.12490285,-0.016311219,-0.01758509,0.11470046,0.0036254837,0.028984636,0.11138593,0.0008892257,-0.046260275,-0.00809897,-0.014861594,0.021002663,-0.030760216,0.02124512,-0.009049498,0.01329307,-0.008404462,-0.04257238,0.05464937,-0.0064981855,0.022876676,-0.07089919,-0.010862824,0.0097609395,0.008289169,0.038473003,0.021560656,-0.035554677,-0.047053028,-0.0732722,0.041611034,-5.381248e-08,-0.031228557,-0.05002349,-0.0077499915,0.021099558,0.014172997,-0.0042042457,-0.10829205,0.05481031,0.025376987,0.117483504,-0.05896401,0.0053246543,-0.0026640212,-0.0032653518,0.060288608,0.03792235,0.15124385,0.026310803,-0.048366923,-0.048771877,0.06674306,0.040322483,-0.034371484,0.03040278,-0.04329542,-0.022502018,-0.028632142,-0.028765818,-0.04917333,-0.055691857,-0.106961966,-0.0069567375,-0.010075534,-0.071728274,0.022416968,-0.03184783,-0.019134454,0.011237175,-0.041175608,-0.008719425,0.015762713,0.0043862956,-0.044697434,0.0012384991,-0.05162943,-0.02168147,0.013938341,0.06509495,-0.011683821,-0.0055745873,-0.11214121,-0.071457066,0.047501747,-0.07099084,0.015150332,-0.045895923,-0.0077778227,0.0662012,-0.040447664,-0.003272508,0.09001887,0.12161255,0.0069557023,-0.041709457} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:11.838296+00 2026-01-30 02:01:10.761779+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2015 google ChZDSUhNMG9nS0VJQ0FnTURvbk1PQU1REAE 1 t 2018 Go Karts Mar Menor unknown Fin og stor bane med bra tidtaker system fin og stor bane med bra tidtaker system 5 2025-05-05 00:52:39.833374+00 no v5.1 O1.02 {E3.01} V+ I2 CR-N {} {"O1.02": "Fin og stor bane med bra tidtaker system"} {-0.00507572,0.069423735,-0.10587585,-0.12700601,-0.07343468,-0.0035637934,0.08331966,0.11684506,-0.0032893852,0.0076539163,0.03380579,-0.006411435,0.07192333,0.0057480205,-0.028251266,-0.13695021,-0.07741809,0.0048517715,0.071254395,-0.05597004,-0.009326377,-0.0074675553,-0.040597755,0.008577944,-0.06906699,-0.012839376,-0.015658665,-0.078351945,0.035770703,-0.08876886,-0.000367242,0.07500416,0.050894182,-0.06682253,-0.03675048,-0.014013216,-0.03213418,-0.06698931,-0.07786805,0.032937255,-0.059037283,-0.05504695,-0.051553603,-0.033360086,0.055307943,0.09950472,-0.019873692,0.060189363,-0.014753064,-0.03797472,-0.04111134,-0.055774175,0.055900782,0.059228513,0.070888974,-0.049652953,-0.029747766,0.08908046,-0.0076872753,-0.049020804,0.02037637,0.031151948,-0.073893465,-0.03233321,0.04608011,0.044802044,0.05220351,0.07935611,-0.03611625,-0.012291506,-0.008362475,-0.051991846,0.045444537,0.09871231,-0.009202915,-0.034161713,0.021569187,0.015034038,0.03635775,0.033997633,-0.040358417,0.01564625,-0.009344885,0.034363948,0.0050030784,0.08681291,-0.028582266,-0.030503692,0.08177233,-0.017252708,0.030108081,0.0186046,-0.077552505,-0.034677465,0.032938745,-0.01956412,0.043347936,-0.03583249,-0.00638308,0.10410842,0.0027246932,0.012973696,0.026092745,0.08950983,-0.00040181208,0.018721176,0.057307526,-0.0125119025,0.017375896,0.009674387,-0.039651666,-0.023736376,-0.021821447,-0.098567106,0.0021609345,-0.074368544,-0.0057606334,0.007172509,0.058027145,-0.05137062,0.007081903,0.00068902,-0.061684392,-0.0071378057,0.03896773,0.019881018,0.025764134,4.3255404e-33,-0.09858714,0.02412531,0.020714795,0.010721076,0.00540555,-0.006236808,-0.08106537,-0.022316668,0.08038213,-0.03286968,-0.07007784,-0.07078129,-0.083193414,0.027532453,0.07678726,-0.087684505,0.017736183,0.039071597,-0.04553576,-0.042800624,-0.0022505517,0.023110973,0.023920804,-0.0022611774,0.027850637,0.059013814,0.046223305,-0.07014403,0.02249283,0.033060696,0.030466352,-0.009204178,-0.008506405,-0.03948145,-0.039585657,-0.040312916,0.053830046,-0.010492332,0.010869132,-0.08445534,0.0906809,-0.01555758,0.044954035,0.024073746,-0.006727849,0.05503206,0.011034215,0.012148139,-0.003811557,-0.013781579,0.012671675,0.01966648,-0.14207137,-0.023705276,0.043491565,0.010470542,-0.0364143,-0.025097476,-0.00015015605,0.07299197,-0.03758299,-0.013786702,0.07937986,-0.018875651,0.028927026,-0.011063414,-0.08120384,-0.10674805,0.116615444,-0.05870944,-0.09971013,0.0017284437,0.019347541,0.06430116,-0.042639587,0.091198385,0.05285718,0.01458306,-0.070853144,-0.05535163,-0.1130145,-0.013947218,-0.031174077,-0.019284483,0.06360658,-0.011637528,-0.003168592,-0.14029385,-0.035068594,0.045992848,-0.038940005,-0.0132394405,0.048370115,-0.004275969,0.0015547012,-3.447212e-33,-0.014075125,0.04660481,-0.022167716,0.027821817,0.067024745,-0.02672706,-0.01195453,-0.00955302,0.034690123,0.024538666,0.009032776,-0.02244534,-0.00032103292,0.027464544,-0.004765432,0.060530957,0.10178453,-0.003854677,-0.046292346,0.038319793,-0.034047447,0.03729772,0.028832331,0.036567863,-0.04593244,0.07846513,0.007595905,0.063436046,-0.020529842,0.0022800728,0.030141776,-0.1374502,-0.007667284,0.09335575,-0.012131586,-0.020630663,0.079559304,0.02341078,-0.049085874,-0.038446598,0.058757722,-0.0150325475,-0.10430578,-0.012563285,0.018746564,-0.0015369024,0.0016844827,0.0135872895,0.011111722,-0.06317818,0.090957746,-0.009544987,0.024782207,-0.029269395,0.022575717,-0.097231984,0.06732405,-0.044060715,-0.059104368,-0.0017624261,0.113419384,0.03109935,-0.05616293,0.007864457,0.050126627,-0.06884575,0.05235619,-0.02355767,0.019073132,-0.025870757,0.107670575,0.048507433,0.049854238,0.010806811,-0.067281686,-0.020216508,0.011966893,0.016438082,-0.0006401642,-0.03994871,-0.09509106,0.0017108518,-0.018210394,0.02456907,-0.03935746,-0.016274739,0.08606393,-0.07666391,0.058371723,0.06363673,-0.043978512,0.09321191,0.029892014,0.088618435,0.09390015,-1.9276003e-08,0.025318518,0.030155824,-0.082874715,0.036447722,0.015425511,-0.06367467,-0.058210544,-0.049723748,-0.04749135,-0.0046763024,-0.02947637,0.011692497,0.03849115,-0.049787648,0.0965938,0.037935767,0.036393676,0.04522431,-0.06907171,-0.081106946,0.07406492,-0.017913543,-0.02553681,-0.022238191,-0.040474836,-0.027578894,-0.02949955,0.015887873,0.10238228,0.0606489,0.05997979,0.057249416,0.055598453,-0.0026640277,0.018759582,0.02388303,-0.012034524,0.05704592,0.022583518,0.11776691,-0.027815843,-0.009677589,0.032269523,0.00036056712,-0.08041488,-0.044148505,0.012917836,-0.04721677,0.015693428,0.018457446,0.046674367,0.08886163,0.037823267,0.058498446,0.05982533,-0.033609044,-0.0065362793,-0.029627174,-0.09196438,0.05766308,0.005156073,0.0060551083,0.02271309,0.00702564} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.834155+00 2026-01-30 02:01:11.666586+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2018 google ChdDSUhNMG9nS0VJQ0FnSUNCeTRxSXRBRRAB 1 t 2021 Go Karts Mar Menor unknown Experiencia emocionante garantizada. Gran trato del personal. Muy aconsejable experiencia emocionante garantizada. gran trato del personal. muy aconsejable 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {P1.01} V+ I3 CR-N {} {"O1.05": "Experiencia emocionante garantizada. Gran trato del personal. Muy aconsejable"} {-0.0019025647,0.05878085,-0.028609207,-0.0075261975,-0.064369366,-0.022583561,0.17542678,0.07235914,-0.06224688,0.011239736,0.14137986,-0.002034299,-0.002838771,-0.022293037,0.011945925,-0.043854687,0.048406202,0.07296894,-0.07622931,0.045862537,0.035131916,-0.085017934,0.007699422,0.024430592,-0.05208656,-0.036422342,-0.00910211,0.009253451,0.008297921,-0.028608719,0.0050275004,0.07172599,0.058708195,0.00085311837,0.06768719,-0.0025775617,-0.01622065,0.02170316,0.0046116477,0.051624667,-0.08640484,-0.0625391,-0.026770452,-0.051024623,-0.012155842,-0.07109052,0.035441436,0.027520338,-0.058421243,0.022573996,-0.07891812,-0.019581424,0.006069198,-0.04116384,0.0062420885,-0.002271309,-0.010279582,-0.015278701,-0.021554464,0.02725241,0.012825705,0.03146485,-0.07626885,0.030681444,0.025338016,0.015768096,0.014148106,-0.025613436,-0.0019212537,0.015254549,0.07642409,-0.10903278,-0.06762721,0.05905235,-0.044634864,0.015792234,-0.004794506,0.010547921,0.059389506,0.007083217,0.0146516245,5.194702e-05,-0.025405087,-0.005055389,-0.0061572716,-0.0376363,-0.019323872,-0.010512687,-0.056356125,0.023986138,-0.00046908148,0.016312184,-0.03752769,-0.050761886,-0.012313962,-0.022829143,-0.046512406,-0.07488821,-0.0057851607,0.06147023,0.030006092,0.04388297,0.07400341,0.15693434,-0.0657261,-0.008787811,0.035363644,-0.06562621,0.012699178,0.10457361,-0.065321386,-0.08859159,-0.11018193,-0.01994045,-0.0022926114,0.053185586,0.022705546,0.049966447,-0.017215414,0.0076151756,0.037644986,0.004743905,-0.02839283,-0.07127936,0.012329341,-0.060815506,0.07020843,5.550999e-33,-0.028283648,-0.06826922,-0.04785786,0.073209755,-0.03266457,0.06421926,-0.046065014,-0.007731169,-0.035055034,0.023533855,-0.0029831056,0.10323901,0.028945994,0.015185712,0.050180186,0.13086961,0.0027410989,0.04495912,0.04702747,0.07189908,0.02449175,-0.0050120936,-0.021956319,-0.025765117,-0.058787767,-0.025416818,-0.04922021,-0.057975877,-0.028487777,0.031686846,0.097413346,0.0702406,-0.0019312347,-0.02961261,-0.017593803,-0.04060534,0.011823071,-0.035983857,0.058497943,-0.080277,-0.035997167,0.0012495542,0.121359386,-0.0049741194,0.037151124,0.063361935,0.11619669,-0.021070762,0.04338311,0.05242385,0.0016368757,-0.057943396,-0.059829157,0.051870055,-0.019149212,0.01938026,-0.08072249,0.11992298,0.0064938753,-0.044068735,0.042882185,0.047582205,0.0068329433,-0.034918204,-0.0030310582,-0.06462445,-0.03956043,-0.029888395,0.058850747,0.037644077,-0.0414902,-0.05933876,-0.05866939,0.07567159,-0.05405023,-0.061919358,-0.02337823,-0.042571668,-0.025944242,-0.0067684166,-0.035386596,-0.018939847,0.015341047,-0.009044425,0.034510124,0.079280645,-0.022478616,0.0114894435,0.055585098,0.0997431,-0.009302935,0.057909,-0.025791083,0.069249645,-0.011735435,-5.791305e-33,0.06793781,-0.04850306,-0.02721564,0.029917983,0.04389404,-0.02797003,-0.05532324,-0.001916644,-0.0281017,-0.0074781296,-0.08411566,-0.08534017,0.11316961,0.017769223,-0.08119181,0.04301961,0.0008884025,-0.069636606,-0.051623728,-0.06569533,0.012521032,0.0077117006,0.00621505,-0.009940051,-0.012050298,-0.03315168,-0.009613204,-0.043999612,-0.0062432634,-0.042099454,-0.010120123,0.04939762,-0.08630865,0.012903943,0.017770171,-0.017262554,0.089259565,0.055155862,-0.017227342,0.01819632,-0.045598798,0.09217602,0.021903804,0.018938916,0.039037462,0.060013324,0.023927758,-0.14966403,-0.041980933,-0.050014917,0.054941826,-0.024680652,0.027824733,-0.017676836,0.017860819,-0.019356035,0.08355959,-0.08890352,-0.123808086,-0.0021094328,0.10466808,0.0005603761,-0.061406955,0.026056461,0.073648766,0.057860754,-0.038126882,0.07196444,-0.030916417,0.058422968,-0.015988776,-0.11657557,-0.051434807,-0.030983038,-0.026973862,-0.013706895,-0.022938948,-0.05862275,0.058124878,-0.035546277,0.017855233,-0.006692945,-0.00871652,-0.090840995,-0.02440996,-0.06416136,-0.07508387,0.014539976,0.015626885,0.0397973,-0.00032330074,0.025317466,-0.042325865,-0.07756806,-0.057915196,-2.7549918e-08,0.019332418,-0.029952861,0.0435136,0.024147063,0.01280542,-0.026532467,-0.034661707,0.050572194,0.038816758,0.0004829357,-0.08197144,-0.020349035,0.010048561,0.070164114,0.022282662,0.015809374,0.16472682,0.021561531,-0.019184392,-0.0016677198,0.02958642,-0.03473762,-0.10778326,0.0074816514,-0.060780413,0.061902344,-0.0016502627,0.027541908,-0.04145028,0.05261743,-0.044053297,0.04817161,0.08932395,-0.07261303,-0.081218615,0.018693,0.019569583,-0.05778998,-0.04762558,-0.07839933,0.05026936,0.027791223,0.049512584,0.008470669,0.036601126,-0.082880355,0.046773735,-0.006794454,0.0060736984,0.042685624,-0.0057690507,-0.04142793,0.042880237,0.07274012,-0.008073266,-0.055648822,0.042546757,0.049486645,0.0061839125,0.014839394,0.07122408,0.07617482,-0.021770144,-0.06151367} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.875754+00 2026-01-30 02:01:11.67461+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1704 google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE 1 t 1707 Go Karts Mar Menor unknown El lugar es espectacular, el circuito bellísimo, pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no existe la traccion, es como circular en cemento pulido, muchos parches baches hoyos y desniveles, las líneas de meta y pianos, deberían de ser anti deslizantes, porque resbala todo muchismo, me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para correr ni hacer tiempos, ni con un kart y con moto totalmente inviable, ojalá lo reasfalten y lo pinten como deberían y se convierta en uno de los mejores circuitos que tenemos, porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa en un circuito, La Pista el lugar es espectacular, el circuito bellísimo, pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no existe la traccion, es como circular en cemento pulido, muchos parches baches hoyos y desniveles, las líneas de meta y pianos, deberían de ser anti deslizantes, porque resbala todo muchismo, me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para correr ni hacer tiempos, ni con un kart y con moto totalmente inviable, ojalá lo reasfalten y lo pinten como deberían y se convierta en uno de los mejores circuitos que tenemos, porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa en un circuito, la pista 1 2025-04-05 00:52:39.833374+00 es v5.1 O1.02 {O2.01,O1.03} V- I3 CR-N {} {"E1.01": "porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa", "E1.04": "El lugar es espectacular, el circuito bellísimo", "O1.02": "pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no ex", "O1.05": "me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para c"} {-0.043701824,-0.025457092,-0.012557248,-0.108676255,-0.08130562,0.009921692,0.019715995,0.0655484,0.035573754,0.04769088,0.05870052,-0.045265853,0.04644717,-0.017388763,0.044459146,0.02127511,-0.04577205,-0.019951038,-0.033515,0.007774359,0.15291263,-0.076019295,-0.122335024,0.079182,-0.10713868,0.057879023,0.018393673,-0.025138723,-0.104098134,-0.12574448,-0.10636695,0.09909321,0.0944991,0.005105928,-0.021304118,0.05745038,0.051328428,-0.08497761,-0.03908299,0.047211446,-0.0896405,0.011712132,0.02026943,-0.042105757,0.018892176,-0.057237804,0.00048402575,-0.0037062021,0.00029065894,-0.04624255,-0.06382281,0.043971535,-0.0050532003,0.023906374,-0.039982703,-0.0064800126,0.0311677,0.071438275,0.07809281,0.037298825,-0.022239875,-0.018201893,0.049054705,0.026130108,0.004722524,-0.023072781,0.011604092,-0.07712442,-0.05675473,0.062303342,0.08950047,-0.047265425,-0.015776677,-0.05485883,0.0030510093,0.07576914,-0.021157887,0.034370054,-0.043196034,-0.051612698,0.017812477,-0.039687566,0.0028953273,-0.07991359,0.055006076,0.02782974,-0.060956877,0.0068065557,0.022861589,-0.047221545,-0.023114473,0.020885684,-0.08083637,0.009978996,-0.002490155,0.03932141,0.029373223,-0.07885249,0.016028468,0.031431355,0.11306299,0.024126125,0.03666721,-0.024237117,-0.027632315,0.032392055,0.075151265,-0.02921472,-0.009696515,0.0064556752,-0.037319187,-0.03597291,0.019223366,-0.021318255,-0.083936445,0.01567327,0.012865027,-0.020187417,0.02498404,-0.012438303,-0.01276871,-0.027860492,-0.047044512,-0.007042187,-0.02585856,-0.06060014,0.02915486,1.4192407e-32,-0.014945005,0.00010566573,0.0068306546,-0.0654888,0.00092516927,0.0127145,-0.014094443,0.010288479,-0.023525756,-0.035818342,-0.04532937,0.11771706,-0.017789707,0.016182594,0.10755793,-0.011606461,0.011422699,-0.07746049,0.03680772,-0.0030868559,-0.013821956,-0.06315247,0.0018706332,0.032682154,0.01364613,0.08861614,0.0078034587,-0.06616334,-0.102090605,0.043617897,0.01755388,0.019619258,0.05334296,-0.021217363,-0.03410516,-0.057687875,0.045878373,0.062126134,-0.01660433,-0.0407786,-0.045186162,0.011881578,-0.05860421,0.059893776,-0.030149724,-0.05580069,0.013314343,0.03845436,0.0990747,0.011046843,-0.10122969,-0.06713514,-0.003661837,-0.05327154,0.029439619,-0.013512027,-0.060062226,0.05637725,-0.013082418,0.004855382,0.029667443,0.037721787,0.038044572,-0.0070917094,-0.04975234,-0.031131428,-0.032993436,-0.02400095,0.11845964,0.016635608,-0.088580154,-0.040775467,-0.045431998,0.05835254,0.015134858,-0.05095178,0.028926058,0.0015388674,0.026166081,0.04840702,-0.012970053,-0.059651885,0.02447233,0.0043901466,0.04295939,0.066280715,0.05323166,-0.011353316,-0.05853245,0.121466905,-0.05196325,0.081873626,0.078067444,-0.0007268374,0.019517768,-1.5627871e-32,-0.0014573596,0.06918809,0.041943807,0.035096396,-0.022321701,0.05968986,-0.007814377,-0.047441244,0.015053579,-0.072354406,-0.037265617,-0.06797338,0.08431146,-0.037399627,-0.028838735,0.05014108,-0.039899908,-0.026961653,-0.06830658,0.000606478,-0.0073403,0.008653064,-0.022559373,-0.006577707,-0.041415595,-0.029427037,-0.07567155,0.042341653,-0.09884645,0.045200072,-0.0033748478,0.0254894,-0.016966753,0.08893294,-0.09586452,0.032887753,0.1156066,0.016571889,-0.023685466,0.028395662,0.026609153,0.064427994,0.026661946,-0.07544076,-0.070436485,0.049118847,0.05046286,-0.112290606,-0.05818525,-0.043888897,0.06743319,-0.05005363,-0.056908682,-0.027207265,0.031930372,0.017384656,-0.08037976,-0.03512405,-0.11868619,-0.03729794,0.030602084,-0.020275807,-0.01350412,-0.05226608,0.1028544,0.03760252,0.030526698,0.037803728,0.054844186,0.032496933,0.027587304,0.03883396,-0.071688734,0.018337028,-0.010376933,0.039179046,-0.105181046,-0.02288121,-0.04277982,-0.010728259,0.009577808,0.017615024,-0.024878664,-0.13537408,0.023001982,-0.027032228,-0.010712657,0.0394574,-0.010102768,0.07180942,-0.043257788,0.08484098,-0.075743355,-0.0466913,0.001338528,-6.294319e-08,0.022801986,-0.030706665,-0.042661916,-0.032693297,0.05815606,-0.068365015,0.07021412,-0.029168377,-0.010920866,-0.018876087,0.037496645,-0.012612212,-0.039259993,-0.006263189,0.013588302,0.08956747,0.044113968,0.07684628,-0.013235407,-0.0095149,0.10267594,-0.014328365,-0.03167045,0.004692193,0.034324754,0.013193472,-0.04584792,0.02137887,-0.068687804,0.0338,-0.044799753,-0.07211418,0.013745805,-0.11020078,-0.030632937,-0.06381962,0.030423597,-0.011274525,-0.050144985,0.006323376,0.07160306,0.041912388,-0.107802466,0.00827222,-0.003988602,-0.08069206,-0.0060301805,0.0025985057,0.0028194068,0.08216305,-0.070213675,-0.036663573,0.032848705,-0.010781078,0.022872042,0.006441299,0.054590333,0.018653613,-0.03270185,0.002959047,0.047379114,0.09285226,0.0629211,-0.09946363} 0.94 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:59.662064+00 2026-01-30 02:01:10.390074+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1800 google ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE 1 t 1803 Go Karts Mar Menor unknown Inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran imprudencia por parte de la empresa que solo se explica por el afán recaudatorio dada la cantidad de usuarios que se concentra un domingo por la tarde. Te encuentras constantemente con karts que te están adelantando con el riesgo de choque que ello conlleva. De hecho mi hija de 15 años tuvo un choque con un kart que se quedó cruzado en mitad de la pista y que no pudo sortear. Resultado tras visitar Urgencias: 3 días de reposo absoluto debido al fuerte traumatismo producido en los 2 tobillos. inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran imprudencia por parte de la empresa que solo se explica por el afán recaudatorio dada la cantidad de usuarios que se concentra un domingo por la tarde. te encuentras constantemente con karts que te están adelantando con el riesgo de choque que ello conlleva. de hecho mi hija de 15 años tuvo un choque con un kart que se quedó cruzado en mitad de la pista y que no pudo sortear. resultado tras visitar urgencias: 3 días de reposo absoluto debido al fuerte traumatismo producido en los 2 tobillos. 1 2024-01-31 01:52:39.833374+00 es v5.1 E4.01 {R1.02} V- I3 CR-N {} {"E4.01": "Inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran impruden"} {0.0011252386,-0.0013691243,0.02755611,0.016790746,-0.08210973,-0.0037675744,0.06130161,0.047392,0.04709351,0.023606293,0.13343516,-0.03959745,-0.0045693563,0.024704505,-0.018091531,-0.07240346,-0.012415382,0.006359512,0.013628832,0.053133518,0.03133381,0.008731213,-0.02840269,0.037496172,-0.09724618,0.033453338,-0.020614633,-0.019773668,0.006022419,-0.059792217,-0.039473493,0.017568981,0.066766284,-0.035416994,-0.042578254,0.03371438,-0.00010534317,-0.039383784,-0.085025646,0.071705945,-0.075034685,-0.023285246,-0.049940754,-0.04969577,-0.030119464,-0.068253145,-0.035083946,0.021844203,-0.0037310233,0.023755051,-0.015739273,-0.029499443,0.036768258,0.037447434,0.01829177,-0.0793284,-0.056186616,0.04814592,0.06967435,0.0040510255,-0.0013008871,0.07186646,-0.03324099,0.013092299,0.0038713247,-0.03600042,0.04031647,0.0034128278,0.022335527,0.085139625,0.12244602,-0.10660161,0.018723555,0.025457269,-0.00305837,0.06382443,-0.05032064,-0.02909505,-0.053939648,-0.03123511,0.007977743,-0.020569589,0.00067542074,-0.05736163,-0.00943509,-0.030444145,-0.020516945,0.04788042,-0.025290746,0.021749767,0.024086244,0.06115166,-0.045779437,-0.06728912,0.066713035,0.020839537,-0.060602006,-0.014964605,0.030875642,-0.0299004,0.096658304,0.06992822,0.008556261,0.053286254,-0.055046152,-0.054838564,-0.08252625,-0.13228604,-0.0068350667,0.09533804,-0.10066752,-0.023691932,-0.017461048,-0.08131563,-0.06739926,0.03633021,-0.05373146,-0.0370477,0.044850588,0.009610538,0.042953353,-0.025099337,-0.033007555,-0.03993543,0.01820805,-0.08412244,0.030010551,9.775394e-33,-0.0016285406,-0.034036983,-0.020344479,-0.0022613492,0.049073175,-0.057718374,-0.044700608,-0.12701432,0.007295996,-0.003850218,-0.015713885,0.06763416,0.057005912,-0.046110112,0.020580506,0.048930623,0.0077765104,-0.036327068,-0.0121586155,0.017624712,-0.04555187,0.0072910073,-0.0020125636,0.033358052,-0.0005651063,0.015808217,0.019932102,-0.007984358,-0.08120757,0.023175364,-0.026431933,-0.0044260374,-0.004254313,-0.06453329,-0.082181156,-0.005614997,0.0630232,0.036160376,-0.098313116,-0.054010108,-0.011804476,-0.029466694,-0.00033990273,0.0531235,0.019760836,-0.008510776,0.036555614,-0.07385538,-0.015691776,0.033259157,-0.034041077,-0.039251216,0.02006092,-0.048023943,-0.033092014,0.07573454,-0.031428855,-0.003157559,-0.046909716,-0.038653057,0.09844198,-0.0044000037,0.054800265,-0.0151823955,-0.03467309,-0.14235157,-0.03521261,0.008840111,0.096416764,0.06074935,-0.1218701,0.033399887,-0.034951042,-0.018769903,0.01581369,-0.004694235,0.018400794,0.03727524,-0.058633782,0.020811966,-0.061719876,-0.05839968,0.055090494,0.08096939,0.08289143,0.012418568,-0.0029823817,0.032543864,-0.034054443,0.11111259,-0.02577755,0.06461699,0.012205105,0.00292652,0.03742061,-1.3919759e-32,0.030373726,0.08783433,0.03942861,0.052337755,0.010727401,-0.013096696,0.0189661,0.08239127,0.047673907,-0.0699817,-0.0856242,-0.101606846,0.034538906,0.004562886,0.024405548,0.10395339,-0.038552873,-0.012235415,-0.08264887,-0.071112365,-0.032254063,0.07851435,0.057348978,0.026333425,-0.029919235,-0.045759853,0.0037963013,-0.073457494,-0.15028656,0.015684457,0.067808256,-0.025253877,0.011789604,0.053889286,-0.05877328,0.014109893,0.091628686,0.036379755,-0.07285992,0.0145307835,0.019572467,0.118260026,0.04753733,-0.040906888,-0.033203993,-0.0067669535,0.10868621,-0.12710361,-0.02015043,-0.055509165,0.10986051,0.0022077584,-0.033299103,0.01964589,0.111279905,-0.018216526,-0.03290712,-0.07429365,-0.14224818,0.013793295,0.023659958,-0.01408374,-0.040839404,-0.09240712,0.09485744,-0.012742844,-0.10455807,-0.010919599,0.015845012,0.045850486,0.019793121,-0.009495565,-0.036676478,0.041875057,-0.0020069438,-0.04333726,-0.07272175,0.0138685545,-0.005257048,-0.007145166,-0.013397318,-0.047755376,-0.04363246,0.0041378913,-0.055847142,-0.035065178,0.01198419,0.0386752,0.006849488,-0.01695668,-0.018823048,0.039506197,-0.04794309,-0.03146977,-0.041460294,-6.090588e-08,0.027379578,-0.0421324,-0.09329211,-0.038396165,0.03586586,-0.08353487,0.004322218,0.05353182,-0.028356101,0.0472935,-0.03301134,0.017013293,0.010819707,-0.004484631,0.0044296896,0.0110824285,0.08550818,0.08999646,-0.052275613,-0.053745404,0.05856858,-0.022660218,-0.05195958,0.034284506,-0.019876951,0.03136736,-0.023481615,0.035707597,-0.026158787,0.004004736,-0.024961224,-0.011699673,-0.06096558,-0.12552625,-0.07152233,-0.035967693,0.0561905,-0.00010248383,-0.007539612,0.04247714,0.04023963,-0.03820978,-0.020479564,0.034428764,-0.111100726,-0.057848733,-0.030819764,0.04234707,-0.018254953,-0.0070698285,-0.058367312,0.017611798,0.04340144,0.023488529,0.009318288,-0.013476518,0.0961112,0.05268826,-0.013626924,-0.061010662,0.08662084,0.05137144,0.036189362,-0.035018303} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:51.522597+00 2026-01-30 02:01:10.753831+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1828 google ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB 1 t 1831 Go Karts Mar Menor unknown Hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el gran circuito que tenéis.Excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin duda alguna y los más grandes también. Geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞O simplemente pasear 🏆🥇🥈🥉😘 hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el gran circuito que tenéis.excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin duda alguna y los más grandes también. geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞o simplemente pasear 🏆🥇🥈🥉😘 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.01 {O2.03} V+ I3 CR-N {} {"E1.04": "Geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞O simplemente pasear 🏆🥇🥈🥉😘", "O1.01": "Hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el g", "P1.01": "Excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin du"} {-0.04047211,0.0054928614,-0.021738146,-0.09873541,-0.06323013,-0.011739571,0.041188437,0.034863785,-0.08331982,-0.002838273,0.040399116,0.044919748,0.034805786,-0.014193063,-0.040798258,-0.030816868,-0.08698233,0.033193946,0.047536574,-0.010727385,0.111459315,-0.08102454,-0.011530099,0.05837701,-0.0422228,0.0028001184,-0.02020188,0.0031094411,-0.072694756,-0.13890462,-0.030307237,0.0660721,0.01713834,-0.040361747,0.0030456674,-0.035097297,-0.018055212,-0.03346306,-0.028125428,0.03940692,-0.071281865,-0.07665736,-0.016780611,-0.035402168,-0.012807074,-0.017208837,0.041191794,0.0134163685,0.03321334,0.00070292293,-0.042245373,0.005396482,0.0063315253,0.0632186,0.04602696,0.009001512,-0.047513243,-0.028757239,0.10452232,0.06713512,0.045823615,0.04565555,-0.09033822,0.03095044,0.07185035,-0.0015743098,-0.002472598,-0.025594346,-0.02575175,-0.021888947,0.10321643,-0.056871485,-0.027973372,0.009638098,-0.034445673,0.13355337,-0.0028932882,-0.013082762,-0.04336321,0.004547623,-0.041184008,-0.045536388,0.015306362,-0.05573397,0.015838077,-0.02627895,-0.0010274609,0.018740954,0.057112206,-0.057360854,-0.007750231,0.06767827,-0.053240687,0.008304495,-0.0031451422,-0.047417916,0.019220602,-0.0057584816,-0.07526847,-0.017101599,0.1380609,-0.011107055,0.088651165,-0.013293435,-0.07254171,-0.01603718,0.022502722,0.0015029631,0.009520485,0.04422935,-0.015273599,0.017282188,-0.09552906,-0.06682298,0.0017505734,-0.016156938,0.021341018,0.0008080063,-0.021406578,-0.031607587,0.015030269,-0.017550893,-0.075189225,-0.030378627,0.030089516,-0.02556888,0.05337912,1.7658282e-32,-0.0067336764,-0.005446853,-0.01786949,0.059265904,-0.016817797,0.04281408,-0.092596695,-0.031927906,-0.03304254,0.035916034,-0.029301481,0.11153687,-0.041057542,0.06602084,0.077873744,-0.02887935,0.010989454,-0.034049068,0.03612868,0.002625417,-0.012040752,-0.033164617,-0.023465564,0.091223784,0.04628495,0.08841585,-0.020750899,-0.023849543,-0.059610296,0.07068371,0.041505337,-0.0149767175,0.041538894,-0.034512732,-0.070388675,-0.0547446,0.042463936,0.035992015,0.010505796,-0.062974505,0.024750326,-0.029110702,0.024505952,0.018324802,-0.0041296515,0.028463949,0.0463053,0.017342705,0.09612147,0.029354211,-0.092399806,-0.09665217,-0.058214452,0.00088678626,0.1006506,0.023668591,-0.06768002,-0.022762077,0.01962909,-0.06773022,0.06751343,0.02765677,0.038101476,0.00975854,0.02797198,-0.055377375,0.06461816,0.03117386,0.10787084,0.06909316,-0.082681075,0.0029029327,-0.05116692,-0.007007766,0.0717604,-0.0011991394,-0.036501557,0.0070135887,-0.03307776,0.012782858,0.02347478,-0.045906387,0.0011288837,0.037393454,0.11186065,0.089423545,0.028433412,0.021249862,-0.014693839,0.11338313,0.024190867,0.14313087,0.036504976,0.009109526,-0.0069200373,-1.7323951e-32,0.044668812,-0.017100655,0.066622674,0.025704795,-0.049299352,0.04979402,0.021866914,-0.029685605,0.029973166,-0.019943422,-0.077402614,-0.092465274,0.04610454,-0.073314786,-0.057953835,0.0401257,-0.011037444,-0.05675237,-0.034390043,-0.006295116,0.007173987,0.026767725,-0.0165532,-0.045451745,-0.031437825,-0.0642194,-0.03977414,0.018474257,-0.06349918,0.023901632,-0.011681614,-0.008527631,-0.0041389083,0.088434726,-0.06138177,-0.02368072,0.09559764,0.07252971,0.036718905,0.024290403,-0.013340721,0.08199063,0.006375356,-0.072226316,-0.09835439,-0.08402049,0.06971784,-0.14941226,-0.021657523,-0.0330244,0.06802313,-0.048667192,-0.025738912,-0.023338718,-0.00022489442,-0.013893772,-0.010469987,-0.011982728,-0.07543013,-0.00047056298,0.048636716,-0.0006333109,0.004354742,-0.081911296,0.063289054,0.003944606,-0.03727053,0.06492057,0.007411393,0.026269112,0.12819207,-0.00093790976,0.014499215,-0.014023282,-0.019285306,-0.06284198,-0.073646516,0.056411583,-0.02067418,-0.042119894,0.055604246,0.02533507,-0.05429486,-0.09308622,0.0126816435,-0.046665985,0.062307082,0.06560856,-0.011655859,0.0022521012,-0.021739334,0.042787686,-0.0036514075,-0.02419227,-0.00059398887,-6.23919e-08,0.017797964,0.027787961,-0.09372445,-0.028209865,0.06818636,-0.05741134,-0.0046556513,0.054725125,0.0015082438,0.0066368068,0.07675152,0.0057793497,-0.037510782,0.10593415,0.07203981,0.026717087,0.034877196,0.07669263,-0.013135871,0.020254139,0.042849537,-0.007377174,-0.041662008,0.024805252,-0.026970217,0.078082286,-0.005573817,-0.019055292,0.018548764,0.034169987,0.0054761693,-0.031756993,-0.05689066,-0.14294098,-0.078061365,0.00028230567,-0.022540385,0.032801922,0.043264437,-0.03607554,0.032446045,-0.10562167,-0.05575949,-0.0014433427,-0.12398351,-0.12632811,-0.044985104,-0.019311206,-0.03920898,0.055074535,-0.05122865,-0.021823343,0.08577298,-0.07263781,0.030548815,-0.046541393,0.06853233,-0.023959605,-0.028995104,0.0265747,0.039713744,0.06014732,-0.025888424,-0.07692525} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:21.771117+00 2026-01-30 02:01:10.872528+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1381 google review_76 1 t 1384 Go Karts Mar Menor unknown Felt was really good value for money. €18 for 8 mins. Doesn't sound a lot, but it's plenty when your out there (around 8 laps of a 1km circuit). Massive outdoor screen display where you can see your lap times and also live video feed.\nNice cafe onsite and good views for those watching. No need to book as they continually race. felt was really good value for money. €18 for 8 mins. doesn't sound a lot, but it's plenty when your out there (around 8 laps of a 1km circuit). massive outdoor screen display where you can see your lap times and also live video feed. nice cafe onsite and good views for those watching. no need to book as they continually race. 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.01 {V1.01} V+ I2 CR-N {} {"E1.04": "Nice cafe onsite and good views for those watching. No need to book as they continually race.", "E3.01": "Massive outdoor screen display where you can see your lap times and also live video feed.", "V4.01": "Felt was really good value for money. €18 for 8 mins. Doesn't sound a lot, but it's plenty when your"} {-6.694859e-05,0.020397581,0.03564448,-0.0111809205,-0.04458833,0.027064787,0.018813876,0.058172338,-0.005766912,-0.03728503,-0.036110725,-0.048947703,-0.009567507,-0.008910442,-0.022281284,-0.06831954,0.20492794,-0.08630824,0.03607582,-0.031088695,-0.05658037,-0.040642537,-0.006971385,0.010786627,0.05197753,0.03933956,-0.027425531,-0.007728627,0.014438659,-0.035709612,-0.022360176,0.04690491,0.02945025,-0.04247188,-0.002236666,-0.025846247,0.05567681,-0.08782192,-0.12601843,-0.008583412,-0.07067903,-0.043176886,0.012513119,-0.0033380198,0.09178295,0.01504401,0.11474109,0.04846897,0.081125714,-0.005315652,0.027325962,-0.04960616,0.05792775,-0.10026283,-0.0543678,0.02438591,-0.04805265,-0.014651429,0.01663851,-0.02734359,0.07303008,-0.062021185,-0.025630206,0.006884187,-0.017689383,-0.07010851,-0.0581461,-0.054975618,0.07212844,-0.062155697,-0.05955006,0.016493145,0.023683298,-0.062856644,-0.026413858,0.02124565,0.044643354,-0.09940906,-0.031299762,-0.014732781,0.041784532,-0.036429808,-0.033644453,-0.0037077877,0.094850205,-0.09949202,0.1023943,-0.013664148,-0.008036434,0.00719749,0.028158134,0.08073663,-0.07378781,-0.043645814,-0.012774984,0.07528056,-0.052487705,0.068922974,0.0012293466,0.044169635,0.059650667,0.06423331,0.029325599,0.013585574,-0.08556396,-0.06803729,0.005333731,0.11762471,0.047991388,0.030481592,-0.04666263,0.032637533,-0.04666397,-0.022290315,-0.023418834,0.047278527,0.009191205,0.0298778,0.1015592,0.06462044,0.014518042,-0.014467121,-0.011802976,0.04185141,0.013535067,-0.0605189,0.08031196,2.0304593e-33,-0.057034146,0.061780408,-0.033741318,-0.084800094,0.04939441,0.020633802,-0.0336389,-0.013786454,-0.02978994,0.031250615,0.002179767,0.07677998,-0.015068273,0.032462213,0.04051796,-0.047506947,-0.048682272,-0.037555963,-0.049475383,-0.010102176,0.016615639,-0.044175915,5.1425966e-05,0.0121490145,0.006626322,0.04670223,0.0037209594,0.01982546,0.10731049,0.020681744,-0.10661796,-0.059873793,-0.063647196,-0.068751834,-0.027719086,0.023558052,-0.051029574,-0.06804215,0.045438938,0.03360488,-0.061921943,0.07262133,-0.047340583,-0.087428756,-0.058735527,0.0825255,0.047308434,0.04454663,-0.02839919,-0.012161989,-0.08960838,-0.047698822,-0.039430752,0.0202633,-0.03961417,0.02989239,0.056966145,0.023821367,-0.00077324506,0.010003265,-0.05253487,0.037831984,0.034718852,-0.08243156,-0.14045976,0.071338825,0.009266472,0.010436773,-0.05038565,-0.03186757,-0.060999013,0.024189817,0.101642,-0.07538267,0.008568794,0.008350865,-0.059666447,-0.0541078,-0.006175596,0.12428629,-0.014758978,0.04145182,0.04264028,0.043945137,0.09230579,0.0451349,-0.009318918,-0.099330805,-0.0622835,0.013072627,-0.04802322,-0.023152888,0.0018010078,0.0038613952,-0.024484286,-2.7793741e-33,0.014728051,0.019338207,0.088548325,0.048504077,0.03993941,-0.01008637,-0.009336441,0.03638137,-0.008819433,0.036881253,-0.07397678,-0.00031427003,-0.006376965,0.07685071,-0.055779297,-0.045824166,0.054002408,-0.05612195,0.041018378,-0.04024237,0.030036828,0.06403468,-0.0040351455,-0.0053229015,0.008748374,0.025776654,-0.03125337,-0.02429378,-0.05899158,-0.031990368,-0.024552459,0.027464231,0.04242167,-0.026753634,-0.010353091,0.11436935,0.07178813,0.038493197,-0.042699195,0.0720905,0.016372856,0.009138595,-0.00178737,0.03629986,0.03689255,0.019742215,-0.03653583,-0.002402114,-0.056650814,-0.01716926,0.09896102,0.01845106,-0.044176467,-0.0110267,-0.059457246,-0.051281895,-0.03238248,0.010237888,-0.009980125,-0.044996127,0.001571856,0.01839919,-0.10642884,0.064871825,0.030734532,-0.008546078,0.023650877,-0.011741561,-0.044038188,-0.027182046,-0.073164426,-0.0015600349,-0.020344494,0.03583784,-0.020879596,0.048632383,0.04802848,0.025590174,0.06157018,0.059162673,-0.0258652,-0.034672823,0.04377768,-0.049000416,0.06620645,-0.0011442853,-0.029128633,-0.00862789,-0.033085324,0.09367584,0.008124997,0.085561335,-0.040197786,0.04384729,0.0064796843,-3.7258992e-08,-0.000613664,0.030446807,0.020749955,0.02409379,-0.024375513,-0.08782412,0.05891503,0.001321674,-0.033477843,0.087885834,0.031095915,-0.087430395,-0.038028326,0.024008721,-0.011715241,0.007335969,0.03580471,0.0747148,-0.0270539,0.108482935,0.093856335,0.08639573,-0.042639587,-0.026630158,0.07328182,-0.044453427,0.023929497,0.02731015,0.00096288533,-0.07778733,-0.028987814,0.02071279,0.045806278,0.016633317,0.016880928,-0.07413165,-0.0670237,0.012566667,0.017721506,0.04679039,-0.040094227,-0.079238236,-0.046302624,-0.030656788,0.026377179,0.012061643,-0.09837019,-0.04505385,-0.053581525,0.015533014,0.012473334,0.022523478,-0.006656926,0.057827137,0.077248335,0.021864153,0.013911691,-0.0023483958,-0.03573368,0.038834304,-0.049734462,-0.09032969,-0.16865076,0.04796472} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.384486+00 2026-01-30 02:01:09.178369+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1383 google ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB 1 t 1386 Go Karts Mar Menor unknown Great day out for all. Thoroughly recommend a visit. great day out for all. thoroughly recommend a visit. 5 2018-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great day out for all. Thoroughly recommend a visit."} {0.06334905,0.049512003,0.103237234,0.0368831,-0.044202175,-0.03132776,-0.005875552,-0.04344115,-0.095633574,-0.05426154,-0.022610752,0.10006882,-0.015535985,0.015174275,0.06335982,0.020612624,-0.020773457,-0.08012355,0.030341387,-0.0018060786,-0.031002881,-0.026521565,-0.026288576,0.07996097,-0.10288772,0.05985395,-0.04262403,-0.022852592,0.0028596676,0.016252818,-0.08243476,0.08299221,-0.10109927,-0.116121784,0.09209415,0.062266037,0.04259918,-0.11439697,0.014437945,0.086048156,0.0056999694,0.06668725,0.12253619,-7.338016e-05,0.033731844,0.06388629,-0.024845023,-0.033579957,0.11761953,0.066652596,0.025135027,0.018534686,0.014043212,-0.026370024,-0.046279155,0.10462083,0.00017554397,-0.09720929,0.020853294,-0.060123626,0.00827958,0.013090619,-0.056105755,0.057940625,-0.015288055,-0.046825297,-0.037816983,-0.009391655,0.047747593,-0.04811942,-0.080031514,-0.024762988,0.08931291,0.03135824,0.0013194425,0.00273247,-0.028697463,-0.025781324,0.039416075,-0.024519851,0.07117625,0.04349246,0.036707643,0.0035902734,0.023570077,-0.05475854,0.033064432,0.0062588556,0.0056327656,0.01242368,-0.0006479102,0.039616942,-0.028537933,-0.016102236,-0.019496825,-0.06099056,-0.0060216216,0.04854777,-0.05162123,0.044153735,0.04770838,0.10835232,-0.010407885,-0.023488794,-0.03933474,-0.01647843,-0.0005698715,0.0035013212,-0.0016532732,-0.081102304,-0.013159025,0.09915463,0.08187785,-0.037997182,-0.0024497472,0.09454869,0.037213605,0.043136563,0.0120909335,0.024847262,-0.009328689,0.009379539,0.06370442,-0.0007472963,0.017654825,-0.04107793,0.062455352,-4.858096e-33,-0.03959007,0.067244574,0.043451432,0.0530424,0.043900233,-0.016758416,-0.09578411,-0.10823791,-0.06247074,-0.022546798,0.018988544,-0.04343528,0.005182463,-0.054450866,-0.06850838,0.019216396,0.0070365556,0.09480129,0.04557404,-0.01772084,0.028288232,-0.06484648,-0.039902873,0.058417637,0.0023589002,0.014236605,0.040175952,-0.025270497,0.022174818,0.026765833,0.024919935,-0.0085302,-0.048272144,-0.0047823107,0.03634553,-0.005038753,-0.08659433,-0.025295861,-0.016791323,-0.01643803,-0.04521705,0.007985366,0.007984798,0.024381153,-0.066998065,0.020193899,0.07602663,-0.008250994,0.113077916,-0.048492327,-0.11662745,0.0078779515,-0.035540346,0.008482911,-0.051884282,0.0056229713,-0.047453135,0.023274075,0.1003254,0.004433206,0.037784006,0.07474056,-0.06561382,-0.110684894,-0.027920365,-0.062449303,-0.04221852,-0.0013636696,-0.08053012,0.044025514,0.040875386,0.03241736,0.16944957,-0.037317216,-0.027242595,0.07394312,-0.019215448,-0.07115351,0.019608822,0.07573778,-0.022397831,0.019586314,0.059951156,-0.06487453,0.050715465,0.03308392,0.08586283,-0.093920924,-0.027913924,0.0074121077,-0.07091827,0.05327826,0.07360109,-0.04794853,-0.013579284,2.7445284e-33,0.1147138,-0.0035731748,0.025504662,0.022943055,-0.010181569,-0.010978862,-0.05870971,0.07675648,0.036192194,0.011288466,-0.010117994,0.09174307,0.02156625,-0.016087305,-0.08311546,-0.028895859,0.09508467,0.0071928166,-0.062347196,0.029132001,-0.06722734,0.07353467,-0.034332234,-0.028632702,0.017928327,0.056020703,0.009748965,0.051521804,-0.017653903,-0.0718361,-0.03156246,0.02589597,-0.073807836,0.04357491,-0.019084927,0.09147821,0.07936196,-0.08270066,-0.038200635,0.02925613,-0.053126436,0.022957848,0.0100385975,0.050113007,0.048451703,0.044536825,-0.025659261,0.038816128,-0.083759494,0.046014827,-0.020739848,-0.0017536513,-0.013794716,-0.05533168,-0.006381178,-0.015223052,-0.009100622,-0.05059715,-0.059312694,0.015881624,-0.1442025,-0.047983784,-0.017232131,0.02820083,0.052879706,0.008832538,-0.035075884,0.008974648,0.0010408564,-0.007994815,-0.11724768,-0.049488146,-0.03100481,-0.04233499,0.04350712,-0.0015062983,0.0662667,-0.06975282,-0.040163253,0.04944909,-0.018749243,0.047930818,0.0103507005,0.017614933,0.06855109,-0.024985185,-0.025969706,-0.054989494,-0.041438594,0.05994791,-0.002168381,0.021435883,-0.050688393,0.0048860386,0.01081607,-2.1612346e-08,0.006605742,0.031273294,-0.025682436,0.006437454,0.021633375,-0.11269383,0.010774011,0.02674787,-0.0030171832,0.12303939,0.017235471,-0.015316353,-0.031956274,0.055728734,0.018855527,-0.010143196,0.03617441,0.10540734,-0.05108466,-0.035168875,-0.022382991,-0.034816276,-0.014708852,0.07650785,0.046022456,0.05287995,-0.030657914,0.021056764,0.050654598,-0.0348726,-0.048781414,0.05264305,-0.053971294,-0.03525759,-0.015739262,-0.03542179,0.056861404,-0.037205294,0.054476105,-0.012371997,-0.054787494,-0.10052577,0.002495836,0.014274106,-0.059168633,-0.028158586,0.0426935,-0.0035177972,-0.057336442,-0.012284764,-0.014643042,-0.0017589484,0.047430452,0.064426206,0.029862586,0.028557261,-0.059465963,-0.04173099,-0.039123613,0.026207298,-0.011511971,-0.016880553,-0.07930348,0.0421273} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:47.981459+00 2026-01-30 02:01:09.183325+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1384 google Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB 1 t 1387 Go Karts Mar Menor unknown Very good. Well run and lots of fun. very good. well run and lots of fun. 5 2025-10-02 00:52:39.833374+00 en v5.1 V4.03 {J3.01} V+ I2 CR-N {} {"V4.03": "Very good. Well run and lots of fun."} {-0.033658978,0.008825696,0.005084393,-0.0067188973,-0.09374424,0.06018817,0.014614932,-0.029014546,-0.073942475,-0.044520628,-0.023388848,0.0374653,-0.02432424,-0.017612096,0.003735031,0.00946597,0.0794421,-0.11772273,-0.010610518,0.016840298,-0.06823275,-0.021807097,0.118947096,-0.021372579,-0.11303014,0.036326274,-0.050465044,-0.0018940663,-0.032383505,0.0058047734,-0.057181247,0.03035519,-0.0040523754,0.013827857,-0.033272818,0.026654733,0.08404895,-0.09511126,-9.789633e-05,0.020672359,0.023140125,-0.07944653,0.037800916,-0.020931078,-0.06363717,0.08721439,-0.028482802,-0.0025719109,0.04150416,0.0024440838,0.037465148,-0.00076447835,0.03414456,-0.030821934,-0.011438667,0.012551519,-0.051965345,-0.0142518,-0.021369139,-0.08956125,0.089562386,0.0028017487,-0.047728676,0.07361513,0.037684362,-0.07877059,-0.051349632,-0.098359264,0.05408927,-0.06699018,-0.012078009,0.05205888,-0.03713415,-0.034537744,-0.05943122,0.02111948,0.033324648,-0.038254235,-0.040177166,-0.012930186,0.046192195,-0.031688053,-0.032833952,-0.0047934745,0.017359633,-0.08895272,0.048178293,-0.025417238,-0.013049201,0.027295223,0.06933637,0.08967023,-0.021577572,-0.011323205,0.02531867,0.0816251,0.0026677155,-0.068021156,-0.062151197,0.05250146,0.039762426,0.061652828,0.054744683,-0.023689,-0.013806214,0.01243332,-0.023488313,0.09423582,-0.009385843,-0.05292203,0.09689486,-0.026473757,0.008969433,0.01816779,0.03940246,0.044993132,-0.022891432,0.02947751,-0.013867917,0.043186385,0.044274274,0.036891297,0.033649042,0.032851834,-0.03429993,-0.07628627,0.08657907,-4.8762195e-33,0.009102678,0.044028055,0.004015482,0.025991565,0.04348805,0.021319108,-0.0396908,-0.06814289,-0.10783969,0.06612175,-0.056188483,0.051754348,0.00620918,0.029574404,0.04786909,-0.040146507,-0.033338208,-0.03268174,0.011662549,0.119602226,0.046971973,0.021436954,-0.054538146,-0.0007500397,0.050033577,-0.023416203,0.012451241,-0.060225636,0.06340764,0.03294976,-0.070701815,-0.017736109,-0.12020298,0.0032249903,0.040890012,0.0084271785,-0.09019758,-0.03204434,-0.010834759,0.08001533,-0.01554173,-0.0002025355,0.00024384989,-0.03819729,-0.067484856,-0.043304674,-0.037674133,0.06107588,0.03468875,-0.044524997,-0.037360445,-0.029304419,-0.038101375,-0.014083875,-0.008717842,0.018292986,0.020821502,0.022642722,-0.015898915,0.004693439,0.1353388,0.08822897,-0.13112743,-0.02535256,-0.0980227,-0.0012615783,-0.03756098,-0.049255002,0.07221089,-0.024202513,0.018640775,-0.05260603,0.088485695,0.039647557,0.0153235225,0.050324522,-0.025658833,-0.042506263,-0.03680589,0.03052943,0.048113205,0.02893203,-0.013538398,-0.031581607,0.019162497,0.026382996,-0.018541256,-0.13165672,-0.021876518,0.044428516,0.0034840202,0.016245376,0.008114385,-0.0045643924,0.009272372,1.9540164e-33,0.04372292,0.1272136,0.038016994,0.09955402,-0.031051526,-0.0014714745,-0.015693892,0.09430982,0.015270576,0.0074537643,-0.02360294,0.026104001,-0.023129275,-0.00465804,0.01701533,-0.053221993,0.08863926,0.00032810055,-0.023220286,-0.07190329,0.008533644,0.08852258,-0.05553628,-0.02161654,-0.011020504,0.029704956,-0.0058530946,-0.022470636,-0.039252322,-0.044253998,0.038764425,-0.033145703,-0.016868249,0.006995688,-0.031231169,0.102140404,0.041351873,-0.048791368,-0.035833545,-0.03797759,-0.004924725,0.02340264,-0.03983939,0.042889275,0.0053427154,0.015755713,0.03206696,0.03089045,-0.068250224,0.017910138,0.055295426,-0.017483465,-0.085284576,-0.057351444,-0.018259872,-0.14085917,0.0042398972,-0.036425952,0.0056467247,-0.042057775,-0.07536954,0.08076648,-0.02723459,0.06271411,0.028338544,-0.068934634,-0.07876045,-0.08779541,-0.039949723,-0.020868665,-0.07853718,0.0026753186,-0.021591034,0.06227005,0.015225249,-0.089742914,0.0057383925,-0.056377742,0.03260365,0.051170427,-0.10680861,-0.05912305,0.020595409,-0.104591675,-0.03491227,0.02263242,0.017094942,0.02771849,-0.024331013,0.12617923,0.08700851,0.11141183,0.0016617872,-0.038337942,0.009043276,-2.017836e-08,0.04257272,0.09090887,-0.013826875,0.07389354,-0.032393053,0.023664268,0.02083974,-0.043680433,-0.018125659,0.009472561,0.1584259,0.0030945323,-0.030945031,0.06752372,-0.009788568,-0.051062856,0.057688963,0.14658964,-0.033146907,0.039314874,0.058855683,0.052689,-0.027577309,0.095352314,-0.032182783,0.004873504,0.032661248,-0.0030438255,-0.037587292,0.038282588,-0.0031798927,0.111184336,-0.02142272,0.047210716,-0.040108293,0.0259641,0.0037184062,-0.035743877,0.047255274,0.039100107,-0.041636463,-0.02909965,0.011411174,-0.0175193,-0.018190434,-0.10317402,-0.04847298,0.013446332,-0.033448372,-0.018143749,0.042535283,0.0036302903,-0.085095994,0.06774611,0.059403043,0.05175412,-0.028171215,0.020003304,-0.038523115,0.010831354,-0.03001011,-0.029677346,-0.08462415,0.0384566} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.320384+00 2026-01-30 02:01:09.186026+00 22c747a6-b913-4ae4-82bc-14b4195008b6 235 google review_61 1 t 238 ClickRent Gran Canaria | Alquiler de Coches y Furgonetas unknown Really good value - New Cars - Friendly genuine service. Booked and received a Fiat 500 with less than 1000km on the odo. Meeting place could be better advertised but once we figured that out, no problems getting the shuttle to the off site office- less than a 5 minute drive. really good value - new cars - friendly genuine service. booked and received a fiat 500 with less than 1000km on the odo. meeting place could be better advertised but once we figured that out, no problems getting the shuttle to the off site office- less than a 5 minute drive. 5 2025-01-25 01:27:48.340536+00 en v5.1 O1.02 {J2.01} V+ I3 CR-N {} {"E1.03": "Very well set up for a stag /hen visit as a nice bar area and pool / table football games as well as", "O1.02": "Had a great time at Go Karts Mar Menor, very professionally run and the karts (even the 200) we're n", "V4.03": "A definite recommendation from us,"} {0.011411091,0.03405954,0.027594754,0.07344802,-0.08362354,0.050714664,-0.03868408,-0.01162623,-0.032082535,-0.022665186,-0.016775081,0.04850122,-0.014824929,0.010978232,0.06537076,-0.10784724,0.06648633,-0.117217526,0.05332621,-0.098560885,-0.08758294,-0.08637108,-0.0037207117,0.005935651,-0.091129094,0.038992357,-0.030936245,0.061339058,-0.008934823,0.023908187,-0.058776777,0.007103679,0.021447308,0.017487833,-0.049304444,0.03600824,0.048184693,-0.10336255,-0.06654968,0.022352925,0.008183863,-0.011608534,0.03120818,0.024850536,0.01822208,0.0073954263,0.015861364,-0.020983307,0.02077377,0.10032509,0.091633886,-0.043251712,0.07957234,-0.06711335,0.036821067,0.09296561,-0.1569513,-0.029580664,0.04590046,-0.079118185,0.027161283,0.018526658,-0.032828186,-0.0050367713,-0.059980582,-0.04899105,-0.048390195,0.07054481,0.05046542,0.014501448,0.018074894,0.014019883,0.00093190314,0.041503884,0.012638695,0.058472514,-0.030395636,-0.029769385,-0.08199718,-0.009820989,0.05955817,-0.039619494,-0.012932175,-0.011029655,-0.07443974,-0.07836245,0.013930104,0.05115013,0.031789947,-0.008217811,0.03527246,0.034299202,-0.054199915,-0.052103087,0.053619593,0.0921659,-0.008746847,0.018270625,0.02998749,-0.003122111,0.089496605,0.07013589,0.05191579,0.015443313,-0.021265037,0.025958711,-0.029961085,0.0910216,0.028713603,0.017990656,-0.0037671276,0.0408402,-3.9177008e-05,-0.029337667,0.0067034187,-0.0024744503,-0.014694421,0.07759772,0.024091268,0.041614644,-0.0028575135,0.05262054,0.016497564,0.05067691,0.020874161,-0.006109344,0.026394928,1.1706784e-33,-0.08354352,0.016628176,-0.024660254,0.05182943,0.0102854865,-0.04945966,-0.021506898,-0.16033705,-0.06882986,0.019979285,0.035111453,0.034466684,-0.015176121,-0.011551395,0.09596288,0.01923095,-0.059059925,0.00229237,-0.07818479,0.00052446267,-0.0069482718,-0.014165233,-0.022232866,0.059140608,0.05500878,-0.00578344,0.06653281,-0.024145737,-0.00028541806,-0.020111794,-0.0444476,-0.021957025,-0.07176321,0.0077894004,0.012047085,0.009570982,-0.03947613,-0.034158874,-0.0013185045,0.051262423,0.012958506,-0.055447314,-1.3645609e-05,0.011878558,-0.018968077,0.0240102,0.03498455,0.061563328,0.0072331917,-0.013720446,-0.13418835,-0.050633486,-0.049112607,0.010393835,-0.06264053,0.020198844,0.08371753,0.0017910607,-0.06409393,-0.04192424,0.06557662,0.012207731,-0.019661501,-0.04886439,-0.073253006,-0.0129102785,0.02315857,-0.021278385,0.032608382,0.029625772,0.0056360806,0.06714385,0.015915325,-0.039523493,0.10964347,0.06782185,-0.03889468,0.006193513,-0.0588152,0.09015858,0.009135942,0.06946161,-0.09021491,0.05047948,0.044070352,0.026937626,-0.059250943,-0.061419874,-0.02896728,0.024204837,0.00783442,-0.0055065774,0.020155046,0.05052177,-0.020621777,-2.3888007e-33,0.05705541,0.060288273,0.15345538,0.072894886,0.05064792,-0.0153162675,-0.005742878,-0.0102459835,0.08819333,0.04115847,-0.04503568,0.07489995,0.04013969,-0.006072762,-0.04217144,0.00842302,0.09474605,0.040736903,0.06269932,-0.09504241,0.022999238,0.029628778,0.006424464,-0.08248979,-0.0064919796,0.03476407,-0.043649178,-0.01151682,-0.11676687,-0.007683838,0.0009958717,0.0025650647,0.06271166,-0.041484658,0.030431602,0.033062384,0.02541724,0.07946122,-0.05856742,0.027678313,0.079094015,0.02891687,-0.02007751,0.031991065,0.010674946,0.026135594,0.0037975977,-0.0061294357,0.038010877,-0.037391927,0.014942902,-0.0067129307,-0.06601777,-0.039277818,0.027978975,-0.048163246,0.05575114,-0.021960545,-0.08403569,0.0011633275,-0.13527934,0.040834844,-0.035064276,0.06890995,-0.0051598083,-0.04777641,-0.049407627,-0.06664458,-0.12618825,-0.014516104,-0.16232213,-0.014493484,-0.06904718,0.07653367,-0.068685725,-0.058518473,0.077361256,0.008227674,0.04737802,0.08141858,0.0028182182,-0.012519096,-0.023438321,-0.006225007,0.050414782,0.099902414,-0.089553684,-0.017601568,0.017420877,0.012878265,0.11294521,0.035673715,0.012464389,-0.050148122,-0.031752802,-3.6233153e-08,-0.008085351,0.13720892,-0.060984462,0.0012940129,0.027509026,-0.08727957,0.03875816,0.030660186,-0.02017125,0.014701522,-0.075123124,-0.034996524,-0.004609352,-0.02555456,0.045394983,-0.03308588,0.0036642752,0.07891667,-0.018451015,0.008477937,0.06141368,-0.029636297,-0.014370763,0.0598188,-0.07484801,-0.05616945,0.06882853,0.0067409994,0.029586026,0.0019862417,-0.033089142,0.04061361,-0.07432853,-0.00683937,0.016931474,-0.08219667,-0.042770565,0.036649894,0.031264376,0.04845533,-0.053267706,-0.052513193,-0.07937901,0.0039119446,-0.034451455,0.021766473,-0.028630897,-0.03302262,-0.08218187,0.00048720455,-0.04687003,-0.008550152,-0.03540633,0.0042109955,0.019404888,0.043357052,0.009392207,-0.036218457,0.012300116,0.006133938,-0.05009402,-0.06449294,-0.09039605,0.019924339} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.026669+00 2026-01-25 01:27:50.177357+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1358 google ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE 1 t 1361 Go Karts Mar Menor unknown I come here whenever I fly from England to visit family. I’ve traveled the south coast of the UK testing tracks out and coming over to Spain I’ve also tested a few tracks out. This track is by far my favourite. Staff are wonderful and happy to help. I asked if I could pay for 2 sessions and do 16 consecutive minutes instead of 2 sessions of 8 minutes and they had no issue in me doing so. I asked to use the same kart every time I go so I could compare lap times with my previous sessions and they had no issues accommodating that. Will definitely come again and recommend to people i come here whenever i fly from england to visit family. i’ve traveled the south coast of the uk testing tracks out and coming over to spain i’ve also tested a few tracks out. this track is by far my favourite. staff are wonderful and happy to help. i asked if i could pay for 2 sessions and do 16 consecutive minutes instead of 2 sessions of 8 minutes and they had no issue in me doing so. i asked to use the same kart every time i go so i could compare lap times with my previous sessions and they had no issues accommodating that. will definitely come again and recommend to people 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "I come here whenever I fly from England to visit family. I've traveled the south coast of the UK tes", "P3.02": "Staff are wonderful and happy to help. I asked if I could pay for 2 sessions and do 16 consecutive m", "V4.03": "Will definitely come again and recommend to people"} {0.036095843,-0.042335417,0.020272465,-0.010555461,-0.06256851,0.015938228,-0.03399938,-0.08823385,-0.063767225,-0.053047355,-0.012845406,0.028214203,-0.07399289,0.0306093,0.031383656,-0.041644976,0.0566179,-0.09760651,0.008401112,-0.050522566,-0.046907984,-0.030090371,-0.015922401,0.11310405,-0.0435729,-0.045610994,0.0042761867,0.034497943,0.00547547,-0.06794649,-0.05013943,0.04820653,-0.009558894,-0.012947538,-0.03512142,-0.05556158,0.02396735,-0.04759326,-0.059215654,-0.024478605,-0.03681994,-0.0862755,0.017489707,0.06399162,0.042187773,0.059921652,-0.037836965,0.0025152157,0.013346936,0.079734616,0.065745585,-0.09026718,0.1391851,-0.046346903,-0.065807685,-0.005650312,-0.012253159,0.074177615,0.04696603,0.03200412,-0.014035253,-0.025531402,-0.09910709,0.036231592,-0.023236763,-0.014526038,-0.069242716,0.033752162,0.029710004,0.0049438355,-0.06827171,-0.018904582,0.0492855,0.07140304,0.06967572,0.059964236,-0.047864974,-0.06572423,-0.029691331,-0.020757932,0.030147472,-0.03434711,-0.030290745,-0.01702668,0.06477837,-0.12841462,0.096881844,0.03002346,-0.0012198874,-0.05273903,0.07618665,0.110689156,0.0046070567,-0.027893044,0.014637025,0.043862764,0.017554672,0.030592121,-0.016451994,0.010108182,0.05642147,0.054588012,0.018828984,0.07016104,-0.07140692,-0.012465877,-0.028573615,0.030673742,0.09847575,-0.038645513,0.0091547845,0.06373908,-0.0017525266,-0.023963971,0.0014815729,0.016134212,-0.05939856,0.04532326,0.011776774,0.0706072,-0.01252078,0.020651253,-0.003378064,-0.025632417,0.014414602,0.01413187,0.061752167,3.6981115e-33,-0.077684976,-0.0050064633,-0.021399554,-0.03263596,0.05781841,-0.10855505,-0.09641645,-0.010084444,-0.031487487,0.024909751,0.015144987,0.044722795,0.01601328,-0.04007093,0.03251496,0.010159595,-0.026492205,0.016061202,-0.03658276,0.05205321,0.05613629,-0.13861378,0.024460489,0.0035754095,0.04903047,-0.012297735,0.071138576,0.0006740607,0.12962985,0.024764199,-0.03127999,-0.010534608,-0.09598653,-0.040339697,-0.04997336,0.0418528,0.024272805,-0.04175148,-0.017239904,-0.027123958,-0.058748066,-0.019182544,0.023643354,-0.0009427844,-0.05306438,-0.056519724,0.040030196,-0.06400786,-0.015875177,0.09762668,-0.1645763,-0.01692474,-0.05214125,-0.025861803,0.017301954,0.01208037,0.070261076,0.041582387,0.006440761,-0.031518508,0.06925855,-0.0033274407,-0.0076270113,-0.052768975,-0.05605619,-0.021238638,0.007754897,-0.089487664,0.0079593435,-0.0019746386,-0.05055589,0.066928215,0.058955614,-0.04433715,0.036650483,-0.0014861791,-0.046637576,0.097147904,-0.038196895,0.017437506,0.00045353035,0.02348933,-0.004670263,0.04690385,0.07492105,0.005749778,0.011232168,-0.07465637,-0.032159515,0.06432746,-0.05768619,0.051327117,0.02131638,0.06817086,0.03728137,-3.5044495e-33,0.026991917,0.06531899,0.13312417,0.077957034,0.024878507,0.024255516,0.042921428,0.017461736,0.046709664,0.03727211,-0.07125697,0.009668077,0.019546637,-0.030345136,-0.0070489333,-0.05388235,0.050878357,-0.01261551,0.071983114,-0.06567236,0.02411518,0.02595042,-0.029074349,-0.079742685,0.02857576,0.017296717,-0.031420905,-0.037433513,-0.058518287,-0.057361137,-0.013198931,0.02419824,-0.029353047,-0.063673,-0.01651071,0.03312054,0.093881376,0.12726721,-0.052417565,0.11237221,0.035521068,0.031296577,-0.016276216,-0.0767279,-0.0050332393,-0.0075621,0.020433964,0.024043843,-0.016488107,-0.0039862893,0.06615058,-0.00073977414,-0.037976753,-0.07034072,0.01856051,-0.0082816025,0.013512921,-0.09598213,-0.053023424,-0.034235045,-0.04668679,0.0038421692,-0.052722774,0.018528264,0.03583289,0.007794906,0.010313163,0.03572653,0.05465689,0.05368335,-0.16528301,-0.011680043,-0.019262709,-0.0013150565,0.018560316,-0.016230138,0.029994268,-0.06737248,-0.049692765,0.01654656,0.051388647,-0.05803282,0.0060261446,0.0044297306,0.039552547,0.053142343,-0.027398039,-0.004191797,-0.0064940494,-0.0037688306,0.0536628,0.08238906,-0.053459987,-0.020268148,0.018288959,-4.7191513e-08,0.00030026192,-0.009332194,0.014768461,0.054981068,0.015800525,-0.08365104,-0.01143195,0.065992884,-0.071981505,0.009589111,0.023131557,-0.035886105,0.0152377635,0.016997397,0.016412446,-0.018257294,-0.0024085005,0.09909566,-0.056370195,0.08257305,0.024641456,0.075860545,0.02199605,-0.016988812,-0.0475958,0.03136555,0.068036474,0.09228431,0.0139355995,-0.08044168,-0.013041962,0.07084377,-0.025643522,0.02899579,-0.04982569,-0.13649158,-0.080628924,0.07747749,0.008195258,0.04060781,-0.039965212,-0.03471082,-0.04983417,0.045231484,-0.026113734,-0.018141929,-0.09440694,0.03461329,-0.028425843,-0.022658274,-0.045831084,-0.03580367,0.052900422,0.073207386,0.12426798,0.050244767,0.064391844,-0.08765793,-0.030782452,0.050339695,-0.022892127,-0.052232094,-0.07168695,-0.0040723537} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:48.500824+00 2026-01-30 02:01:09.105366+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1389 google Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB 1 t 1392 Go Karts Mar Menor unknown Great value for money. Big track 👍 great value for money. big track 👍 4 2025-09-02 00:52:39.833374+00 en v5.1 V4.01 {O1.02} V+ I2 CR-N {} {"V4.01": "Great value for money. Big track 👍"} {0.0017780309,0.07100502,-0.0074105375,0.01118372,-0.048592318,0.05260612,0.06521906,0.06630176,-0.009914914,0.001600843,-0.046734214,0.030607648,0.0006698914,-0.03666512,-0.07510968,0.047966465,0.056429587,-0.008557447,-0.0136655215,-0.03674035,-0.12796232,-0.019591609,0.02948847,0.035767607,-0.072100855,0.09890151,-0.06637175,-0.0013975524,0.04900917,-0.021176009,-0.07442855,0.067333676,0.004692347,-0.006698135,0.071117796,-0.011169991,0.07859866,0.023382522,-0.009067442,-0.016111717,0.020883223,-0.06925071,0.028326418,-0.008769256,-0.028591791,-0.023462985,0.016318386,0.037269738,0.03578951,0.06587988,0.049520057,-0.06403337,0.054145403,-0.0128205065,-0.019546347,0.05971857,-0.004523566,-0.028820937,0.009506916,-0.008138069,-0.008916326,0.012876072,-0.016379,-0.028112136,0.01224247,-0.07986608,-0.052521586,0.013162379,-0.021590484,0.042191558,0.07943605,0.019902596,-0.0033000037,-0.05419028,0.031955197,0.08515261,-0.007635247,8.0074846e-05,0.0034062313,0.016537638,0.0569987,-0.088117905,0.015763586,-0.08009991,-0.014431126,-0.03315954,0.061597254,0.013124609,0.047690075,-0.0072302087,0.04948552,0.036310527,-0.03466924,-0.04573943,-0.020778725,0.045520063,-0.045406196,0.00062873354,-0.0020241733,0.038826067,0.080500185,0.044948384,0.038930245,0.01285109,-0.01012824,-0.053059738,0.017833399,0.1017589,0.03750057,-0.081808984,0.046795674,0.032663807,0.00074524584,0.06745404,0.002781103,0.00012799558,-0.07753029,0.06726363,0.040782742,-0.051680725,0.041196246,-0.0128435325,-0.038942356,0.021101078,-0.08177028,-0.12915617,0.028417423,-3.7050013e-33,-0.0927691,0.08766042,0.03379301,-0.11746168,0.012295753,0.026584378,-0.066655144,0.028808938,-0.089456245,0.058789276,-0.00953255,0.059844844,-0.03942776,0.019375661,-0.020322513,-0.07588751,-0.070449896,-0.03691009,-0.015409637,0.022073261,0.013950669,-0.015918208,-0.0014120651,0.021813286,0.057354294,0.050343957,0.038608123,-0.05844609,0.023784796,0.043088328,-0.09253909,-0.024958048,0.01970378,0.01577951,-0.060512345,-0.015723778,-0.077115744,-0.0728146,0.018244872,-0.014899047,0.022293959,0.02509124,-0.059470125,-0.028007694,-0.08717637,0.08598999,0.02396284,0.06549074,0.06913828,-0.045424495,-0.04802367,-0.020458281,-0.123051636,-0.047355197,0.017358797,-0.07993139,0.043628216,-0.012002429,-0.03232803,-0.040948216,0.020131273,0.0122352205,0.011703037,-0.026856462,-0.077165924,0.15051703,0.04870488,-0.041689575,0.008046183,0.024560876,-0.0554811,0.004736849,0.019474592,-0.043792807,0.061039627,-0.054521505,-0.013698234,-0.034849495,0.015483841,0.026592145,-0.05968924,-0.027444484,0.045722347,-0.013074304,0.108651645,0.019672567,-0.024586355,-0.070221424,-0.00018235353,0.006524679,-0.022503147,0.020546496,-0.04660987,0.0067690327,-0.040181767,1.9879837e-33,0.061393883,0.08848503,0.11290305,0.030841501,0.008935109,0.0076038605,-0.009581815,0.07008031,0.042433947,0.09052216,-0.01187396,0.030661117,-0.051696047,0.061285805,-0.010323207,-0.11874873,0.0947608,-0.03355475,0.044457354,-0.12456731,-0.017739594,-0.028244318,-0.02265985,0.08468988,-0.074675165,0.013468914,-0.04350946,-0.053573996,0.024961341,0.011724507,-0.04015905,0.020593094,-0.06405648,-0.034728132,-0.069893524,0.0075824047,0.0659094,-0.008421467,-0.04297976,0.02321707,0.0040478185,0.023604287,-0.022427108,0.058412496,-0.0372635,-0.03650052,0.06348813,0.12811886,0.023435729,0.011261892,0.03716381,-0.038003217,0.057449542,-0.027732534,-0.1033849,0.033353627,0.05380483,-0.020148847,-0.04643996,-0.03910189,-0.056570932,0.080352455,-0.03419783,0.10045316,0.007620078,-0.00064876344,-0.017801069,-0.069771565,-0.0937381,0.045587525,-0.06568298,0.0032826571,-0.009630516,0.07698349,-0.05963533,0.018951649,0.010064856,0.01068018,0.0876681,0.12900053,-0.029196052,0.026124677,0.023459626,-0.015427874,0.08312733,0.017748479,-0.033499144,0.03355036,-0.010080529,0.06732555,0.005977983,0.057983465,-0.0610034,0.002149233,-0.07090579,-1.7215635e-08,-0.04210095,0.0680226,-0.0049040853,0.008848676,0.0024989068,-0.010248806,0.015866645,0.028616395,-0.047515247,0.09584467,0.036139857,-0.04576815,-0.07250364,0.04700627,-0.059603482,-0.051893212,-0.039400417,0.081996456,-0.0041612787,0.05091195,0.024316393,-0.020213936,0.006101127,0.063886255,0.006376993,-0.043470833,0.007542625,0.1330975,0.008600396,-0.06200166,0.0409827,0.056948517,-0.009020668,0.043379176,0.08984618,-0.061616696,-0.03230955,0.08007558,0.06137784,-0.035795134,-0.0044921744,-0.07284152,-0.097658455,-0.02523468,-0.01327033,-0.04281745,-0.015457359,0.014228329,-0.043941703,-0.0154006025,-0.00822597,-0.037207622,0.0037537673,0.038748074,0.046934165,-0.008869108,-0.01827687,0.050051738,-0.07291955,-0.01551498,-0.0048623537,-0.17536727,-0.08715556,0.051115576} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.567572+00 2026-01-30 02:01:09.200798+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1339 google ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB 1 t 1342 Go Karts Mar Menor unknown Very nice track and quiet decent Karts, at the least the 300. Telemetry is very good! Fun is assured 😎👌 very nice track and quiet decent karts, at the least the 300. telemetry is very good! fun is assured 😎👌 5 2025-01-30 01:52:39.833374+00 en v5.1 O2.02 {O3.02} V+ I2 CR-N {} {"O2.02": "Very nice track and quiet decent Karts, at the least the 300. Telemetry is very good!"} {-0.053369217,-0.007134446,0.021204364,0.04208053,-0.093299285,-0.0113384,-0.009022531,-0.033028957,-0.045805365,0.007579365,-0.01509584,-0.009129873,-0.016020343,-0.033673406,-0.0118989665,-0.052384827,0.119408,-0.06959583,0.03314948,-0.04001746,-0.10497393,-0.00941211,0.05491249,0.078414895,-0.09752608,-0.006812419,-0.05993571,0.041728817,-0.004978541,-0.012462685,-0.09572084,0.069472626,0.00042681737,-0.039168335,-0.020668715,0.010984177,0.04227923,-0.0775837,-0.038464002,-0.024366373,0.00353948,0.01765147,0.03952459,0.045059107,-0.014267565,0.002197948,-0.030693011,-0.050558146,0.018349906,0.037546184,0.022169888,-0.091011085,0.082612574,-0.025770362,-0.053744752,0.0027365263,-0.073723,0.026557906,0.06026767,-0.03462542,0.07251535,0.020056522,-0.05971328,-0.0050685448,0.019326031,-0.08140945,-0.053766973,0.033291128,0.08397216,0.009663255,-0.016026538,0.059193026,0.009597335,0.030922301,-0.0015424241,0.04367449,-0.06886619,-0.067659944,-0.11192852,0.066222794,0.053918187,-0.051469646,-0.00013480171,-0.07335156,-0.028297573,-0.091519594,0.07287621,0.028607622,-0.041795228,-0.020387428,-0.012829899,0.056111015,-0.06933044,-0.074532636,-0.025415367,0.0743541,-0.048461925,-0.0015391492,0.033419203,-0.021147905,0.07921527,0.060920455,0.086656846,0.07905912,-0.06784981,0.037233733,-0.042133447,0.08497357,0.052853692,0.01664783,-0.008596158,-0.004885416,0.01714024,-0.036699735,-0.022085598,0.027897654,-0.05616455,0.09721669,0.07497782,0.04184905,0.03892589,-0.042297408,0.02390357,0.03121828,0.06319141,-0.0058961897,0.066222236,-1.0459979e-33,-0.014135233,0.05304027,-0.024756918,-0.048868567,0.018694038,-0.095229745,-0.062397487,-0.11037324,-0.13293637,0.09766451,-0.07122276,0.038280483,0.0023483597,0.032635562,0.0877305,-0.10441528,-0.043337807,-0.037498135,-0.09405018,0.037567038,-0.036626723,-0.038072355,0.005413988,0.050619837,0.12780656,0.025476811,0.060885925,-0.005325675,0.017996013,0.01953323,-0.06895329,-0.0041281483,-0.029794937,-0.03251533,-0.0076800208,0.023962623,-0.06559583,-0.05189708,-0.01711208,0.019742545,0.04888367,-0.020185202,-0.05714084,-0.036998797,-0.017237887,0.044650298,-0.0011938043,0.034038648,0.03771038,-0.021881208,-0.081143685,-0.012884891,-0.040352136,0.00486945,0.028638007,-0.028637864,0.09300092,-0.01936368,-0.056492355,-0.0078093125,0.057027828,-0.013296181,0.023974305,-0.081015475,-0.043153346,0.0145582585,-0.011541258,-0.022592649,0.037479177,0.035495333,-0.062199637,0.034865286,0.048598032,-0.04505559,0.10608311,0.054034717,-0.09268294,-0.010370999,-0.054249667,0.0578142,-0.05773793,0.0260338,-0.04637244,0.043805316,0.04305097,0.0049499306,-0.068983614,-0.044721812,-0.0104373535,0.024985308,-0.040630274,0.027141355,-0.034251854,0.08502292,-0.047152158,-1.1072965e-33,0.060505614,0.09297166,0.09789077,0.064167984,-0.028942857,0.01677722,0.02138404,0.07293336,0.033507425,0.08704549,-0.0008880068,0.025945429,-0.038604405,0.02416663,-0.022538103,-0.031495593,0.07054567,-0.010842203,0.027303841,-0.124115534,0.051353138,0.0029672892,-0.02098633,-0.07344542,-0.03149403,0.017653255,-0.07018419,-0.008106838,-0.014995771,-0.091649875,-0.058218215,-0.01008529,0.030773876,-0.017834673,-0.0030167578,0.044752844,0.09217506,0.073934115,-0.03435064,0.026088811,0.07074962,0.034594405,-0.013612295,-0.0066911373,-0.04597529,-0.024244973,0.0700161,0.044615645,-0.059539743,-0.07571627,0.08704045,0.0074578566,0.027171755,-0.011182942,0.016201321,-0.05455277,0.014269877,-0.035695486,-0.03204781,-0.031955674,-0.017487878,0.053362653,-0.046236746,0.09371699,0.016798567,-0.039602466,-0.00017379054,-0.052645832,-0.069281705,0.016441632,-0.10114746,0.03288907,-0.03823427,0.030674871,-0.0036662738,-0.021774529,0.006590219,-0.009912009,0.09595629,0.055003442,0.036906835,-0.0063104606,0.0056487955,0.012043229,0.058988202,0.11107702,-0.08854023,-0.015460704,0.007666845,0.046680108,0.10475458,0.1079117,-0.018078344,0.019820744,-0.034951206,-2.4955805e-08,0.0061490564,0.108772896,-0.05591888,0.020423073,0.03502157,-0.029706413,0.08188358,0.033899922,-0.074334875,0.017680617,-0.008605751,-0.042719346,-0.014662553,0.0627541,0.05781861,-0.01603104,-0.021271518,0.13164356,-0.02018684,0.0045445026,0.06033602,0.012119405,-0.01345387,0.046009615,-0.04345368,-0.054475863,0.05231974,0.03429031,0.051745437,-0.007471848,-0.01881608,0.017335668,-0.034132466,0.008127588,-0.025474591,-0.04839248,-0.054643996,0.04589028,-0.026399639,0.003598482,-0.029699638,-0.07294876,-0.09068744,0.016149169,-0.022911364,-0.0037390026,-0.049716357,-0.09897802,-0.07384717,-0.0202576,-0.066477425,-0.038125753,-0.01382043,0.0639246,0.05688671,0.028480846,0.029904146,-0.029881034,-0.030545218,0.016233211,-0.02388386,-0.06958651,-0.051476266,0.04799541} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:49.753287+00 2026-01-30 02:01:09.02532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1342 google ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB 1 t 1345 Go Karts Mar Menor unknown Very friendly welcoming staff who speak great English and were really happy for my husband to have a drive around despite none else being on track. very friendly welcoming staff who speak great english and were really happy for my husband to have a drive around despite none else being on track. 5 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {A2.02,A3.02} V+ I3 CR-N {} {"P1.01": "Very friendly welcoming staff who speak great English and were really happy for my husband to have a"} {0.019401317,-0.035801087,0.0835331,-0.0053788377,-0.06482632,0.003785275,0.022736954,-0.08880839,-0.050094422,-0.017272137,0.026202101,-0.009712091,0.0097761955,0.021695916,0.017339915,-0.026505617,0.035155162,-0.10503562,0.019729953,-0.08060803,-0.06928184,0.049584236,-0.0040363325,0.03797989,-0.05406949,-0.035550557,0.043545216,0.056608908,0.04321372,-0.0076765837,-0.056939628,-0.0002210926,0.037454985,0.02392837,-0.021754364,0.098947376,0.06179425,-0.022907253,0.0016528913,-0.035150193,-0.057157494,-0.050948963,0.08902523,0.0019518307,0.0027624397,-0.012976335,0.014082595,-0.018158318,0.04673589,-0.014760218,0.016317843,-0.049553342,0.086970195,-0.02717313,-0.02779,0.020566037,-0.0055650193,0.022625148,-0.05986367,-0.0143501,-0.036540013,-0.065252446,-0.035815783,0.010483949,-0.05634106,-0.02244199,-0.11498115,0.0061913906,0.058779802,-0.05680951,-0.038617548,0.012885879,0.12887159,0.06180667,-0.015628228,-0.03573672,-0.017724926,0.035075516,-0.0010064007,-0.09555118,-0.03620183,-0.038748704,-0.012942396,0.072991155,-0.026894948,-0.123326056,0.012718803,-0.030481791,-0.0026623684,0.06701121,0.029647296,0.07499934,-0.008888557,-0.05119223,-0.060067143,-0.008369582,-0.005626919,0.0904603,-0.075133495,0.085798495,-0.02118388,0.16244492,0.039941262,0.022101324,-0.11234255,0.0634933,-0.064234875,-0.00941877,-0.040280115,-0.06041975,0.024304938,-0.015870243,-0.05260653,-0.0020483953,0.035244677,-0.038546134,-0.02506619,-0.0067718155,-0.022501092,-0.028045781,0.011004706,0.08249047,-0.055293616,-0.03740353,-0.016573591,0.06630351,0.09738863,1.3188658e-33,0.037416257,0.113602504,-0.012684122,0.053100374,0.033409238,0.023698004,-0.08623885,0.03966782,-0.012233868,-0.04095032,0.10144081,0.063708074,0.016712476,-0.12757455,-0.084730014,0.0010261367,-0.09813876,0.024381144,-0.090334594,0.020624526,-0.01951828,0.046215516,0.0115624005,0.026694503,0.029806681,-0.04652663,0.052401427,-0.01758977,0.12330701,0.03366305,-0.013474164,0.020072559,-0.032171775,-0.037281144,0.009404826,0.016487919,-0.06316289,-0.122949794,0.008668027,-0.030026786,-0.027178148,-0.0073505836,0.07853844,0.049427897,-0.062028576,0.02190803,0.043911863,0.008638217,0.009744036,0.026833039,-0.041956063,-0.061016306,-0.055833988,0.089060344,-0.0066723437,-0.006507783,0.06933656,0.064794816,0.0075727217,-0.05591317,0.084064245,0.11377638,0.008881721,-0.033206686,0.025066836,-0.11636287,0.0004365673,-0.015052872,0.08513839,-0.062331323,0.0284055,0.015260481,-0.0073560067,0.017178979,-0.06483092,0.06151536,-0.043361843,-0.07945282,0.10389977,0.004397541,-0.05093716,-0.0004205484,-0.021251924,0.021292722,0.059189327,-0.00741643,0.027972486,-0.06826326,-0.035251655,0.06637753,0.013413077,0.056390066,0.07078979,-0.019346563,-0.015951013,-2.3992844e-33,0.041962538,0.021081718,0.024244552,-0.010548547,-0.022121625,0.011604259,0.0444396,0.054370116,0.054017637,0.062037367,-0.04716133,0.00069519563,0.08448602,0.04206988,-0.07356953,-0.084296174,0.11724821,0.00652144,0.054517638,-0.014055136,0.044595066,0.118657686,0.000635844,0.025024002,-0.005038773,0.022241449,-0.056511812,-0.0058512236,-0.14544888,-0.06515329,-0.0050831474,0.024090985,-0.052856594,-0.04286038,-0.025748955,0.052600898,-0.016774528,0.054815724,-0.05860623,0.07684383,-0.00309085,-0.0252255,-0.0012854023,-0.0068229646,0.024572449,-0.02186159,-0.03446262,-0.065341964,-0.12387654,-0.019451171,-0.043133855,-0.009470854,-0.037459183,-0.048096597,-0.014246093,0.008563845,0.01885731,-0.06971158,0.013396433,-0.03509646,-0.04541574,0.030465135,0.0147940805,0.050342504,-0.007242267,-0.06347588,-0.022465482,0.05927528,-0.005884369,-0.044187855,-0.011336474,-0.07630298,-0.0006561125,0.010117372,-0.009595,-0.031809174,0.05218871,-0.12504198,-0.009434866,0.024157083,-0.0057784263,0.030043745,-0.0075877775,-0.008534733,0.022699926,0.054618105,-0.015044321,-0.013217301,0.07445366,0.06742547,0.047324963,0.048284724,-0.046345446,-0.024269454,0.014491402,-2.6815949e-08,-0.024987355,0.00017198126,-0.008425108,0.008893599,0.021513706,-0.16519359,-0.011112726,0.022457514,-0.08050241,0.05027742,-0.028324861,0.024606653,-0.058275063,-0.013342335,0.0730985,0.030865608,0.068232596,0.09384231,-0.07590141,0.0047928104,0.052416757,0.05875168,-0.035251494,0.07399461,-0.03567811,0.008303642,-0.0019327179,-0.10503938,-0.007110866,-0.07344642,-0.033272542,0.080149464,-0.0063952967,-0.0022849073,0.020968495,0.039221894,-0.08838215,-0.0028728978,0.07031401,0.026122354,-0.018615915,0.031305395,-0.048403915,0.014237182,-0.008603074,0.013352922,-0.04925017,0.046464063,-0.043372337,-0.050373077,-0.0091795875,-0.01715055,0.009048822,0.07941666,0.0134723075,-0.002170962,-0.0060355477,-0.01919317,0.02183752,0.052451283,-0.028993648,0.08281231,-0.018808281,0.037035484} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.052738+00 2026-01-30 02:01:09.035809+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1399 google ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE 1 t 1402 Go Karts Mar Menor unknown Great outdoor track! F-300 carts were quick! (Quick enough anyway) big board outside to check your lap times, also a free printout from reception! Cheapest and BEST in the area! All staff very polite and helpful, we’ve been a few times this holiday, Don’t waste your time with other Karting tracks...just go here! You won’t be disappointed 👍👍 great outdoor track! f-300 carts were quick! (quick enough anyway) big board outside to check your lap times, also a free printout from reception! cheapest and best in the area! all staff very polite and helpful, we’ve been a few times this holiday, don’t waste your time with other karting tracks...just go here! you won’t be disappointed 👍👍 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.01 {O1.02,E3.01} V+ I3 CR-B {} {"P1.01": "All staff very polite and helpful, we've been a few times this holiday, Don't waste your time with o", "V4.01": "Great outdoor track! F-300 carts were quick! (Quick enough anyway) big board outside to check your l"} {0.03561308,-0.012108314,-0.03843314,0.03781023,0.0060325176,0.032046895,-0.06700449,0.007564507,-0.10545606,-0.0001049411,-0.014411508,0.031909812,-0.04791914,0.0036993998,0.02380561,-0.03973419,0.07496787,-0.037666343,-0.019387528,-0.04448986,-0.108858496,-0.041799888,0.020658193,0.04298279,-0.12161149,0.024522657,-0.052284762,0.05271473,-0.023933068,-0.04579599,-0.07622545,0.041465804,0.01939284,-0.022491347,0.025649957,-0.020438822,0.0155457575,-0.052010406,0.061068714,-0.06785088,-0.035628475,-0.010900223,0.038015477,0.040874276,0.044234686,0.034011006,-0.057328206,-0.016100788,0.06439186,0.059398666,0.11673334,-0.037024196,0.067134544,-0.019134045,-0.07925882,-0.023246413,-0.024492623,-0.016135579,0.048044574,0.006765003,0.05340885,-0.042484738,-0.043634646,0.011268112,-0.051535696,-0.05219876,-0.11282224,-0.011342619,0.04740709,-0.0034690367,0.013866986,0.07550052,0.0058552288,-0.054602634,0.030921564,0.031421855,-0.015315319,0.018375097,-0.06947071,0.022564912,0.018259687,-0.034551967,0.042470977,-0.040032946,-0.009184106,-0.06595235,0.028743831,0.054005515,0.0009400903,-0.0021970025,-0.041505173,0.068849966,-0.103597604,-0.035087824,-0.08694419,0.01862443,-0.023828864,0.054086722,0.007777268,0.018252112,0.08714232,0.08412131,0.041136008,0.016150046,-0.038825985,-0.028679404,-0.051845144,0.066500835,0.0010468101,-0.023932165,0.013270862,-0.05978329,0.06778987,-0.025139883,-0.06369309,-0.013504624,-0.045050647,0.07146365,0.05394601,0.027435046,0.010328877,0.007361426,0.024270806,0.04406096,0.024511954,0.027218519,0.08728891,4.6223184e-34,-0.027188916,0.045869898,-0.0035126754,-0.07454508,0.060018945,-0.035738945,-0.03863664,-0.11582414,-0.07341229,0.066677056,-0.00095643825,0.026452228,0.010081231,-0.027479844,0.0727895,-0.04569743,-0.03522178,-0.0411635,-0.078897186,0.030961968,0.022958772,-0.13589606,0.022837738,0.0010873901,0.09423431,0.04118806,0.037103187,0.039440032,0.04809837,0.023652745,-0.029458126,-0.052390944,-0.06705514,-0.009060803,0.020649407,-0.033956643,-0.0678917,-0.055126112,-0.013654116,-0.020492803,0.00753385,-0.062254068,-0.029825043,-0.053751193,-0.044133857,0.014252208,-0.0022713884,0.047636323,0.06879289,0.024441067,-0.082260616,-0.026644014,-0.047353994,0.02234691,0.04510166,-0.026985208,0.07195625,-0.0032009277,-0.026231073,-0.01414632,0.05869976,0.03514442,0.021526651,-0.08373523,-0.09829312,-0.03784836,0.011629479,0.035764605,-0.0016070137,0.041262597,0.019258142,0.043288052,0.07100198,-0.0720968,0.122554414,0.052236434,-0.048375476,-0.013922589,-0.01561508,0.026125534,-0.10363616,0.00378241,-0.04980766,0.025472198,0.036185253,-0.059930597,-0.08426361,-0.026513357,-0.014822493,-0.034263313,-0.033111095,0.04483482,-0.06735036,0.08049251,-0.004755647,-2.25137e-33,0.10720906,0.10663744,0.12107153,-0.0025435432,-0.033960365,0.030693904,0.016435398,0.004111518,0.05799196,0.06680895,-0.10132008,0.058832932,-0.0035654402,0.02740032,-0.010793684,-0.008230497,0.0801736,0.06243383,0.04748894,-0.11919681,0.010664822,0.015383764,-0.031852853,-0.00941602,-0.005299768,0.039041393,0.015600857,-0.062020313,-0.064135246,-0.018794522,-0.067717254,6.746226e-05,0.042901114,-0.020909538,-0.02710243,0.01557332,0.08261458,0.058690585,-0.04893681,-0.004605185,0.07879984,0.08547112,0.011768492,0.006985121,-0.044868622,-0.029499745,0.0069870166,0.09059912,0.0085366275,0.05963306,0.011118182,-0.01084798,-0.05926197,-0.016404018,-0.018414127,-2.3058268e-05,0.019440718,-0.011336266,-0.14406596,-0.045766626,-0.053603068,-0.010889148,0.0011074151,0.09254737,0.024777716,-0.041609775,0.037111856,-0.02308658,-0.009247478,0.058172368,-0.07112926,0.06881784,-0.086038455,0.08341005,0.0050714,0.009455598,0.09618777,0.039062493,0.06843273,0.08744532,0.007154187,-0.004064837,0.009837137,0.033570956,0.05298286,0.046167873,-0.1123236,-0.04091044,0.011723415,-0.030281108,0.087926045,0.13269658,-0.024652578,0.033259235,-0.091594785,-3.823331e-08,-0.001515164,0.10817789,-0.07524793,0.013841588,0.025262693,-0.06395146,0.07846487,0.025736393,-0.091342516,-0.019411685,-0.008880822,-0.009784004,-0.018675627,0.049896926,0.042580817,-0.0032114945,0.03983653,0.07279767,-0.029945383,0.026462678,-0.0115173515,-0.02504089,-0.013998033,0.054453105,-0.054944806,-0.045416996,0.013351516,0.05233672,0.088463075,-0.027295366,-0.006122359,0.04348963,-0.014818921,-0.0058119674,0.02072221,-0.061839983,-0.0592631,0.061574105,-0.040644325,0.060161967,-0.05271117,-0.071467966,-0.08334508,-0.051671058,-0.030046929,0.03907009,-0.039681107,-0.011752125,-0.06099021,0.0097867735,-0.097975835,-0.050856423,0.0062568076,0.06353269,0.04719157,0.06628126,-0.00018615747,-0.067536086,-0.019513251,0.016446877,-0.04218734,-0.073712625,-0.035104353,0.04227807} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.62727+00 2026-01-30 02:01:09.232619+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1351 google ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB 1 t 1354 Go Karts Mar Menor unknown Awesome fun, very friendly staff... and if you go on a Wednesday, you will get twice the time for the same price awesome fun, very friendly staff... and if you go on a wednesday, you will get twice the time for the same price 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.01} V+ I3 CR-N {} {"P1.01": "Awesome fun, very friendly staff... and if you go on a Wednesday, you will get twice the time for th"} {-0.026908997,-0.015516748,0.046347108,0.006580861,-0.09010115,-0.0008296605,0.025906319,-0.07726661,-0.02845584,-0.019297214,-0.014716082,-0.013524464,-0.020350447,0.073966175,0.009337674,-0.08866945,0.039047156,-0.08285079,0.04563717,0.011625455,-0.07845649,-0.04613495,0.0066660615,0.027562894,-0.04711271,0.0015600704,-0.015464297,0.011311199,0.0076926267,-0.080050915,-0.13445361,0.03643677,-0.040725917,-0.0066369437,0.018370729,0.063880764,0.08718835,-0.054854058,0.008883766,0.09001872,-0.023692904,-0.035889387,0.025822371,0.02446283,-0.058118884,0.019772569,0.057286587,-0.0014607145,0.061455928,0.07137418,0.10545893,-0.04385192,0.079121485,0.0065794196,0.018796746,0.1071354,-0.0016388263,-0.079087175,0.0052509983,0.04663098,-0.04618171,0.012922982,-0.028307501,0.079973735,-0.01375885,-0.091753624,-0.098427825,-0.00026926902,0.02718996,-0.11023239,-0.06892663,0.030382432,0.117845334,0.015778434,0.046501506,0.048137065,-0.0064526107,-0.07313116,0.0021310102,-0.0058885333,-0.04316758,-0.041744176,0.007988557,0.051575977,-0.009393582,-0.106577784,0.060671717,0.04478364,0.08765598,0.013488139,0.10208953,0.11814054,-0.0064193825,-0.037691426,-0.101314284,-0.010090945,-0.01484944,0.04861172,-0.05269113,0.043903258,0.008042189,0.116504975,0.009014742,0.02207745,0.016366232,-0.01211108,-0.08871352,0.0075497003,-0.0049361046,-0.0666026,-0.0052925437,0.042632908,-0.0016340846,-0.045607243,-0.03864811,0.058318134,0.0044124015,-0.0038947277,-0.06222092,-0.001086524,0.03592484,0.034184527,-0.0015830237,-0.036382344,-0.026849488,0.076006465,0.104676865,-6.716135e-33,0.0065961527,0.06518215,0.006231987,-0.017809818,0.0613938,-0.0073170653,-0.044107035,0.026967503,-0.06715028,0.0015274598,0.019743552,0.007085673,0.0062115667,0.0002739933,-0.039538465,-0.0563211,0.010230736,0.007187915,-0.022277473,0.00840685,-0.047573946,-0.03935004,-0.055863842,0.052533194,0.052715924,-0.006649717,0.024683328,-0.022553476,0.20185493,0.011985262,1.6620332e-05,-0.023727965,-0.039969336,0.016166324,0.018496698,0.00072545384,-0.00839207,-0.08167391,0.00024511022,0.01081724,-0.010139099,-0.03490804,0.056252595,-0.057523597,-0.03139933,0.027259558,0.03598829,0.003996352,0.030027626,-0.055576503,-0.02971622,0.025325617,0.030275997,0.1310408,-0.0006719674,-0.06184206,0.06204803,-0.03625959,0.010036534,0.015239605,0.106848165,0.08490191,0.009185643,-0.02425971,-0.08004447,-0.060163874,-0.007244782,-0.055749588,0.13526125,-0.042912785,0.051955115,0.046224616,0.07921022,-0.058678113,-0.011031818,0.060845688,-0.05397513,-0.026062794,0.09780042,0.045011327,0.045331985,-0.0023469427,0.037012678,-0.018184321,0.05918348,-0.032156155,0.025285406,-0.097727664,-0.042444702,0.013489406,-0.022074005,0.0211743,0.05206511,0.06481396,0.055560816,5.106433e-33,0.04075175,-0.008835363,-0.015854828,-0.016271502,0.019794438,-0.026692502,-0.05639384,0.03656392,-0.0024702246,0.057326097,-0.04026068,0.08804754,-0.048581433,-0.022592537,7.443898e-05,-0.07162146,0.023250189,-0.006311487,0.018588345,-0.03943235,0.006155308,0.070230894,-0.046579096,-0.02594993,0.020170437,0.05210846,0.01768643,0.001904236,-0.032313127,0.0043949,-0.035497822,-0.07733831,-0.016138598,-0.05032922,0.02984941,0.028908275,0.036404215,0.053220347,0.010977688,-0.00046828913,0.033863917,-0.036287636,0.015137061,-0.013307277,-0.044319566,0.055923715,-0.012956948,-0.02771059,-0.099572085,-0.009808909,-0.04312295,0.00018205668,-0.059671577,-0.06770888,-0.030268291,-0.06988288,-0.018559037,-0.048939027,-0.024288295,0.02336244,-0.035190485,0.020928586,-0.075157225,0.1557955,0.030370707,-0.09739878,-0.043466195,-0.014095459,-0.038918015,0.031751715,-0.101231426,0.026043355,0.012459336,0.0028133076,-0.029982692,-0.021300368,0.121535204,-0.07690734,0.03045972,0.072312534,-0.06642895,-0.013798511,0.035626758,-0.019196853,-0.027101895,-0.015068044,0.053077254,0.08139031,-0.0068020513,0.06897198,0.062971406,0.04318013,-0.009032943,0.03896198,0.029072637,-2.7764521e-08,0.06789887,0.0055725104,0.03762241,-0.0072769076,0.046752036,-0.17642839,0.036844924,-0.009692394,-0.003946032,0.018252,0.0716984,-0.062406562,0.010063571,0.00474243,0.0998197,0.012238403,0.06377836,0.05864577,-0.035902645,-0.027411036,0.01002501,0.046890054,-0.026896112,0.018263018,-0.027231771,0.07648612,-0.012456802,0.03775873,-0.0008912834,0.037045278,-0.05855445,0.021351745,-0.05206882,0.0069080293,-0.009304097,-0.051407874,-0.07581651,-0.09988556,0.0056775506,0.022299118,-0.048585463,-0.11121596,-0.054509964,-0.004411274,-0.013998136,0.068982996,-0.041520562,0.008270463,0.012579122,-0.01954587,-0.051784746,-0.008629746,0.024032341,-0.008598704,0.064952865,0.013056631,0.010162544,-0.035335504,0.032839093,0.05453023,-0.009648648,-0.020555746,-0.14090349,0.029781561} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.207798+00 2026-01-30 02:01:09.082454+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1398 google ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE 1 t 1401 Go Karts Mar Menor unknown Service is top! Price affordable, all good 👍 service is top! price affordable, all good 👍 5 2025-01-30 01:52:39.833374+00 en v5.1 V1.01 {V1.01} V+ I3 CR-N {} {"V1.01": "Service is top! Price affordable, all good 👍"} {-0.037375893,-0.052458785,0.011163769,-0.035012208,-0.029744826,0.02155139,0.005741382,0.04139108,0.040501155,0.06576636,-0.014726181,0.076055855,0.07862554,0.05891525,0.015201169,-0.07056809,0.080132656,-0.042740047,0.042134736,-0.072336905,-0.162887,0.019457627,-0.013047663,-0.0072071645,-0.0032333734,0.024304934,-0.057473093,0.00636007,-0.036369435,-0.022295719,-0.03777712,0.024247523,-0.024556916,0.038085382,0.0546147,-0.0035226124,0.028939893,-0.08182148,-0.051028777,-0.015880864,-0.014132097,0.013389975,-0.12811564,-0.021083735,-0.048753574,0.074211545,0.036516476,-0.010964373,0.056905054,0.06944966,-0.05746749,-0.04549005,0.046927053,0.012305717,-0.05854044,0.041422423,-0.041015968,-0.052769084,-0.010447703,-0.045029398,-0.009716715,0.043176446,-0.05565758,0.036119543,0.08761563,-0.010648575,0.006444593,0.03160634,-0.016959481,-0.041551437,-0.058157377,0.06782805,0.011506002,-0.006661219,0.016836619,0.06276269,0.08430444,-0.08204307,0.0054587815,0.032443676,0.019117996,-0.00012718125,0.0065785083,0.05366907,-0.015666762,-0.1105893,-0.020083051,-0.072701,-0.014875934,-0.054706108,0.025615187,0.044456825,-0.039631877,-0.04070331,-0.026678292,0.013079868,-0.035977643,-0.059224203,-0.09409313,-0.014516939,0.014109697,-0.007984794,0.04296424,-0.011782151,-0.069594026,-0.021436209,0.04488926,0.08934102,0.003668799,-0.024610933,-0.019973611,-0.0610999,-0.047015008,0.028586823,0.013763585,0.04954241,0.0058771474,-0.0013397172,0.076407306,0.00872234,0.028106552,0.029201888,0.027955828,-0.020222621,-0.04222186,-0.03715719,0.15315618,-2.0144048e-33,-0.031083088,0.1250882,-0.019578015,-0.08474962,-0.05475557,0.044453617,-0.012434615,0.018426538,-0.08938918,0.07950555,-0.08555434,0.08775471,-0.05567626,0.036698766,0.020192524,-0.028301936,-0.011584506,-0.0068301046,0.02173624,0.00422933,-0.09798654,-0.07808061,-0.035209533,0.046217218,0.019227862,-0.04410872,0.040791985,-0.01395297,0.10184386,0.014300356,-0.039742716,-0.051710308,0.010023048,0.012887294,-0.03749966,0.0033372978,-0.09816973,-0.07668705,-0.032704793,0.0023128877,-0.0035948816,0.06568112,-0.060290504,-0.018442336,-0.026572717,0.036790688,-0.0809003,-0.013712738,0.044043735,-0.017696092,-0.080913536,-0.0039020886,0.006802497,0.067781545,0.013516799,-0.0026001793,0.056414284,0.04007936,0.029876933,-0.005439029,0.01947485,-0.09025408,-0.027442465,-0.095186725,0.00934629,-0.049821425,0.0131070195,0.01097527,0.009289554,0.041993078,0.030378424,0.04371625,0.13876472,0.024396049,0.034519784,0.07308351,-0.021407768,-0.04357003,0.0048726364,0.056277018,0.03651766,0.06736459,0.034788143,0.046860505,0.055264976,-0.0054333666,-0.039190475,-0.044091698,-0.024800492,0.06424973,-0.04869654,0.057727985,0.043112013,0.066729434,0.0016259652,9.001926e-34,0.038522027,0.052703634,0.09097639,0.036334224,-0.001593091,0.014122242,-0.033439543,0.029618904,-0.02359381,0.09768783,-0.07643923,0.019596688,-0.053407274,0.023695393,-0.04635635,0.0118469335,-0.0070261387,-0.0469939,0.0065453644,-0.08919619,-0.06670605,0.11781552,-0.0019483735,-0.0017407795,-0.04981564,0.003044108,-0.076980785,0.14248902,0.04460154,-0.017981712,-0.09243559,-0.012612482,0.0065714414,-0.00800332,-0.015210028,0.04130556,0.064456396,0.029795462,-0.07428587,0.04208937,-0.061590478,-0.062978655,0.027472243,-0.031957243,-0.0010664428,-0.07633727,-0.054637812,-0.031668317,-0.04282778,0.015997378,-0.04305437,-0.043157578,0.0644413,-0.028889524,-0.013259509,-0.007771373,0.07699478,0.06331099,-0.09585354,-0.05141489,0.030900473,0.05599325,-0.045038063,0.09876345,0.118833005,-0.019834025,0.1233052,-0.057260327,-0.081294276,-0.018008607,-0.07743387,0.016095782,0.047415134,0.058703065,0.0013886419,-0.06631564,0.048427224,-0.029768296,0.09303647,-0.037455916,-0.03984621,0.0064308103,0.0007915127,0.006996654,0.008077888,-0.030537793,0.096001096,-0.053204108,-0.030481216,0.04877847,-0.07425519,0.042715486,-0.06672588,0.009402798,0.051495887,-2.1781696e-08,-0.00947348,-0.0058607208,0.03488744,0.049303807,-0.013036374,-0.09124249,0.04995888,0.0305007,0.04192604,0.030085849,0.005183667,-0.052242793,-0.06872235,0.034846596,-0.00084832887,-0.007494908,0.020602308,0.09965096,-0.008259706,-0.045683526,0.021699337,0.060669173,0.032451063,0.023026293,0.0058507845,-0.0062156073,-0.00022329626,0.07310782,0.06322579,-0.07776341,-0.028557882,-0.021821737,0.062081322,-0.054899294,-0.008490714,-0.048523802,-0.05692274,-0.01910848,0.013134577,-0.018610956,0.037102085,-0.072096795,-0.098376706,-0.0010400227,0.061966904,0.029128268,0.006117259,0.0074892133,0.022436375,0.035544228,-0.03026743,-0.023857838,0.054076564,-0.025499608,0.020635106,-0.030024871,0.06650152,-0.023194512,0.010808205,0.14760396,0.077046625,-0.06263817,-0.076051086,0.07073009} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.571745+00 2026-01-30 02:01:09.229813+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1347 google ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE 1 t 1350 Go Karts Mar Menor unknown Fantastic track and karts. Cant believe it wasn’t busier the day we went. Big outdoor track with decent options for karts depending on your level. Will definitely return again! fantastic track and karts. cant believe it wasn’t busier the day we went. big outdoor track with decent options for karts depending on your level. will definitely return again! 5 2020-02-01 01:52:39.833374+00 en v5.1 O2.02 {O3.02} V+ I3 CR-N {} {"O2.02": "Fantastic track and karts. Cant believe it wasn't busier the day we went. Big outdoor track with dec"} {0.00851863,0.014284109,0.09982288,0.11251514,-0.030935856,0.00036697977,-0.03086547,-0.020351507,-0.05968043,-0.028787654,-0.05493965,0.054376405,-0.0022177552,-0.0050838096,0.007111332,-0.012610354,0.046884842,-0.053227954,-0.03405291,-0.07265601,-0.12769783,-0.018106036,-0.03351432,0.058204394,-0.10122888,0.03741585,-0.05594096,0.04201384,-0.015946688,-0.059529845,-0.099822275,0.02251402,-0.02058343,-0.05631881,0.004068866,-0.0069195214,0.037557684,-0.1034136,-0.032389827,0.00360494,0.021637524,0.016416572,0.004100054,0.033582296,0.036299035,0.037298445,-0.0023134495,-0.065058984,0.043760486,0.04659133,0.09046726,-0.04947426,0.044829477,-0.04666361,-0.06718743,0.021892108,-0.05631139,0.018472549,0.06771804,-0.07555195,0.0452693,-0.025559053,-0.037759006,0.0059456145,-0.02420989,-0.079865694,-0.06968325,0.027644983,0.059261583,0.070986025,0.05401952,0.03955959,0.009013121,-0.010745944,0.02357812,0.056516398,-0.05395291,-0.055722386,-0.088739224,0.006149484,0.052995466,-0.04458909,-0.030434636,-0.05572801,-0.025648747,-0.07368512,0.05818332,0.033180803,0.040818594,-0.019659223,0.02852269,0.045472708,-0.05430907,0.006818459,0.015180994,0.0047624903,-0.031389248,-0.0070564686,0.038528252,0.02317308,0.0689109,0.08771465,0.028856954,0.019678118,-0.01849527,-0.017674606,-0.004315753,0.07179484,0.0695461,0.018859092,0.046663523,0.02391101,0.030762801,0.00915251,-0.0028792007,0.00042585115,-0.041527066,0.07945585,-0.011645033,0.031056361,-0.019784773,-0.0019616706,0.058421977,0.03263733,-0.009384207,0.012712505,0.08126819,-1.1513146e-33,-0.10001731,0.0036864707,0.0064214356,-0.02942629,0.067157924,-0.08157229,-0.027586497,-0.14159718,-0.13194855,0.04151756,-0.014587648,0.06751673,0.010961618,4.509971e-06,0.1151915,-0.059632566,-0.04243139,-0.016585534,-0.09213522,0.072519794,0.0036738093,0.016126795,0.016090095,0.0051845266,0.051419195,0.025447227,0.06594551,0.01133142,-0.017824557,-0.018752227,-0.047744896,0.0019725494,-0.0061938786,0.06929209,-0.051974185,-0.009897517,-0.033303574,-0.034676954,-0.020078976,-0.038291357,0.06764865,-0.007912095,0.0035899414,-0.005047088,-0.04305817,0.0061060605,0.020133521,0.07112873,0.0040829363,-0.06355038,-0.07955739,0.0007410009,-0.025554828,-0.022409119,0.0059468476,0.0033523005,0.05715095,0.013764272,-0.062076267,-0.028542446,0.11245531,0.005239035,0.025357312,-0.112111144,-0.032572184,-0.017477568,-0.023731694,-0.0073086824,-0.04107506,-0.007878496,-0.008326571,0.0072947396,0.03887003,-0.026615765,0.15303218,0.005354206,-0.08654934,-0.06332903,-0.05985116,0.011480585,-0.055490036,0.04141289,-0.04249202,0.005511401,0.0388025,0.02787662,-0.0696213,-0.0638571,-0.00945356,0.035408873,-0.031835727,0.034532167,-0.028709646,0.06728994,0.02669867,-1.771937e-33,0.07999675,0.14153877,0.06622061,0.029121993,0.011583432,0.03136161,-0.010621703,0.09370248,0.03168165,0.029643063,-0.0014303257,0.034087256,0.023032552,0.029470028,-0.07573219,-0.02225993,0.035067357,0.020099813,0.08786622,-0.112713076,0.009499688,0.028447364,-0.010178062,-0.05666923,-0.048608724,0.07705833,-0.011832513,0.03131832,-0.027576901,-0.0737238,-0.029473215,-0.0041824356,0.05975834,-0.006308374,0.030865805,0.052060544,0.055736896,0.0067154756,-0.098634556,0.033574853,-0.019244045,0.04776433,0.025274387,0.05082017,0.020807618,-0.015632216,0.0521292,0.064822964,-0.005090101,-0.038545217,0.025503956,0.009200818,-0.06114479,-0.03502802,-0.00761866,-0.036482625,0.05144834,-0.031266175,-0.032506064,-0.03047921,-0.10261139,-0.0064155147,-0.050409343,0.06023844,0.024981156,-0.0060027917,0.010251971,-0.09478884,-0.077931665,-0.017269678,-0.1599137,0.043510728,-0.05380577,0.033066623,0.03458213,-0.0026541268,-0.01759102,0.01677855,0.030137252,0.068032615,0.04203478,0.027473789,-0.034656685,-0.0127735995,0.11550601,0.080768496,-0.05998176,-0.032680478,0.005444969,0.06980631,0.11655501,0.021459354,-0.012594104,0.027766816,-0.06548308,-2.603798e-08,-0.046575874,0.15433373,-0.08475538,0.006290681,0.067579634,-0.053005923,0.045719817,0.03637562,-0.06980492,0.008803203,-0.06085511,0.013212403,-0.028210314,0.06429428,0.02121716,-0.04883302,0.031024383,0.11263567,-0.0004454306,-0.010152721,0.007875311,-0.002060078,-0.04214459,0.03800953,-0.0017608834,-0.08944523,0.03080049,0.04263812,0.03933881,-0.038410816,0.021520896,0.009611919,-0.0067110313,0.022896497,-0.026266992,-0.063083716,-0.04729225,0.07405196,0.021317158,0.0036254157,-0.046109416,-0.06423657,-0.07933781,-0.0138353165,-0.019936597,0.00416371,-0.037322793,-0.051305737,-0.048606023,-0.0373316,-0.07534815,-0.07906616,-0.051405914,0.08061934,0.071331196,0.038199212,-0.0453646,-0.02532475,-0.066003256,-0.002584666,-0.057742044,-0.1126878,-0.088734254,0.06326025} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:50.604446+00 2026-01-30 02:01:09.072364+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1402 google ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE 1 t 1405 Go Karts Mar Menor unknown Use it every year. The kids love it. Nice size track. Different engine sizes for all ages and experiences. 100, 200, 300 and so on. Amazing how many pay extra for 300 but get over taken by 200s :-) use it every year. the kids love it. nice size track. different engine sizes for all ages and experiences. 100, 200, 300 and so on. amazing how many pay extra for 300 but get over taken by 200s :-) 5 2020-02-01 01:52:39.833374+00 en v5.1 O4.03 {V4.03} V+ I2 CR-N {} {"O4.03": "Use it every year. The kids love it. Nice size track. Different engine sizes for all ages and experi"} {-0.07731909,0.04673246,0.035195112,0.0071742246,-0.060803402,0.053125337,-0.059807487,0.02333651,-0.076875955,-0.06472772,-0.043349158,0.03889747,-0.003826589,-0.013012532,-0.063692756,0.01006122,0.029495658,-0.037496924,0.039562676,-0.11548908,-0.011235299,-0.084492356,0.02676855,0.05912812,-0.0736255,0.049748067,-0.113416255,0.074936256,-0.024560716,0.00010995073,0.010057911,0.047960028,0.030827789,-0.010952208,-0.026677437,-0.036480043,-0.020406943,0.003225649,-0.07767903,0.029622605,-0.03751614,-0.06991253,-0.012665934,-0.030659234,0.026367199,0.0065653864,0.01848238,-0.03107089,0.10947707,0.06589122,0.06635228,-0.08034606,0.10588683,-0.05854429,-0.005750994,0.019024625,-0.06783345,-0.0026024515,-0.027884876,-0.054196626,-0.043030027,-0.027694901,-0.048900735,0.0014793868,0.00073922024,-0.06273194,-0.06425207,-0.01131814,0.076460026,0.022186749,0.025165457,0.019929899,0.038574535,0.01879368,-0.0063993563,0.050526515,0.002947477,0.0048395996,0.0062315185,-0.035522196,-0.028525682,-0.05932836,0.019779053,-0.070241675,0.059595965,-0.0064152423,0.037928686,0.009684252,0.01842167,0.051352724,0.032849733,0.05690077,0.06959527,-0.0019697393,-0.04679543,0.103329636,-0.06877488,0.006712257,0.03107238,-0.006921077,0.021442832,0.011745676,0.038158353,0.029864082,-0.097420536,0.010468026,0.0058188643,0.06689891,0.006845398,-0.06242969,0.044744205,-0.012113618,0.06383759,-0.025423285,-0.04541689,-0.013857206,-0.09182614,0.0036416745,0.06843754,0.050718375,0.014250502,0.04062746,0.04001014,0.050805893,-0.01929512,-0.044270504,0.064533584,-5.490925e-34,-0.052755732,0.031843953,-0.02130057,-0.018582098,-0.043210283,0.0026061914,-0.028272502,0.0009969334,-0.04028234,0.0056561264,0.04949047,-0.006064524,-0.0026178372,-0.00399325,0.091460034,-0.0021044419,-0.06429955,0.04212008,-0.03370721,0.020037355,-0.03197078,-0.046424568,0.03632704,0.040362805,0.103217736,0.048347246,0.08623925,0.005383174,0.010462742,0.035692915,0.05178586,0.007948684,-0.09290967,-0.03547886,-0.05238949,0.0017235611,0.047630634,0.00041226725,-0.056271806,0.052801155,0.031615824,-0.06620196,-0.020000158,0.016131233,-0.008528942,0.058959413,0.10889883,0.05318497,0.011527242,0.031621065,-0.013277666,-0.06182322,-0.07676557,-0.04373031,0.053128403,0.015902333,0.06867048,-0.036692843,0.018323872,-0.012510587,0.02208284,-0.053531006,-0.0012475293,0.02875932,-0.07594004,0.113635145,0.01790667,0.033704463,0.022437096,0.07094673,0.0153074125,-0.057656925,-0.043495532,-0.06622031,0.096783146,-0.00923616,0.041345578,0.020960629,0.0057993354,0.05173579,-0.06955008,0.061429325,-0.008914708,0.033429395,0.10589076,0.0005590707,-0.017859379,-0.015424817,0.0156447,0.015149394,0.070399776,-0.06785891,-0.02845208,0.09763892,-0.018153843,-1.2704174e-33,0.026480615,0.12607737,0.08240083,0.028092118,0.0037044464,-0.014372498,-0.052729532,0.025885308,0.08338495,0.08402412,-0.0323905,0.02280443,0.045561492,0.017183384,-0.061975647,-0.030419571,-0.025470795,-0.10723229,-0.03884899,-0.1221363,-0.005747994,-0.0005848283,-0.035596404,-0.030462196,-0.0147826215,-0.049002748,-0.1197213,-0.0044644764,0.018859839,0.009269867,-0.06770571,-0.048123445,0.01981406,-0.07208096,-0.018661678,0.0040966645,0.02880967,0.072396405,-0.046734318,0.068472534,0.03110123,-0.05741754,-0.033757232,0.03596707,-0.029631365,0.0061555174,0.025734631,0.009198575,0.033819843,0.037792277,0.00093452475,-0.0566147,0.008250963,-0.065485954,-0.032398894,0.034138177,0.03697133,0.021784887,-0.09946074,0.0057325396,0.00028597022,0.002919585,-0.0521383,0.07243349,-0.08290572,-0.087627314,-0.022387117,-0.09376635,-0.0794597,-0.0005762723,-0.06115453,-0.015726253,-0.06477768,0.025032992,-0.10616531,-0.026788097,0.08037843,0.011656454,0.07507493,0.08732239,-0.087515414,0.001408104,0.040941257,0.02129054,0.03820288,0.03497535,-0.031405266,-0.0451122,-0.0024814734,0.04199016,0.097787,0.02747872,-0.07378806,0.00096605625,-0.011997841,-3.2719644e-08,0.008984522,0.1536572,0.055239666,-0.008386922,0.076443024,-0.05055792,0.07835684,0.040670108,-0.042107344,0.02301839,0.09424652,0.005642617,0.016749952,0.039390225,-0.03200178,-0.009482397,0.035480563,0.05802322,-0.04230221,0.021147827,0.027030919,0.008456175,-0.010828731,0.025755674,-0.09537395,-0.13027345,0.057693504,0.102250844,-0.039906256,-0.09236437,-0.025276428,0.024342949,0.058362693,0.025196262,-0.039992522,-0.1049947,-0.09919771,0.075962946,0.017850455,-0.028132912,0.0075433,-0.021356875,0.006749947,-0.016204715,0.03575444,0.04836657,-0.08973032,-0.08288967,-0.024383878,0.02563962,-0.04141387,-0.04814433,-0.030979201,0.08885821,0.09205456,0.06277849,-0.020452846,-0.051960688,-0.0852506,-0.035778124,-0.009278784,-0.03733983,-0.05141865,0.020889485} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.229918+00 2026-01-30 02:01:09.241236+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1403 google ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB 1 t 1406 Go Karts Mar Menor unknown It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednesdays to each customer, but didn't allow a single parent a chance to make ONE lap with his 2nd child instead of all those extra 8 minutes!!?!! A single parent raced for about 6 minutes with one child and had more than 8 minutes left. He asked to give a 2nd child a chance to do just ONE lap (with same parent) and you refused. We had to pay for a new ticket worth 16 minutes to do ONE lap with 2nd child. Absurd! It's a great shame to your business and managers or owners of this venue. We will not return to your venue and will tell everyone we know the same if you do not put this right. I understand there are rules, but this situation was so absurd that there are no words for it...but shame on you. it is absolutely ridiculous that you brag about giving a gift of 8 extra minutes of racing on wednesdays to each customer, but didn't allow a single parent a chance to make one lap with his 2nd child instead of all those extra 8 minutes!!?!! a single parent raced for about 6 minutes with one child and had more than 8 minutes left. he asked to give a 2nd child a chance to do just one lap (with same parent) and you refused. we had to pay for a new ticket worth 16 minutes to do one lap with 2nd child. absurd! it's a great shame to your business and managers or owners of this venue. we will not return to your venue and will tell everyone we know the same if you do not put this right. i understand there are rules, but this situation was so absurd that there are no words for it...but shame on you. 1 2023-01-31 01:52:39.833374+00 en v5.1 R1.02 {O4.03,V1.02} V- I3 CR-N {} {"R1.02": "It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednes", "R4.04": "It's a great shame to your business and managers or owners of this venue. We will not return to your"} {0.012833142,0.08217984,0.06388927,-0.040673874,-0.0075177047,0.033913236,-0.023324078,-0.010532434,0.03792474,0.003096213,0.02379158,-0.011696354,-0.004206369,0.015716905,0.028918523,-0.005826157,0.047310535,-0.0636259,-0.0598927,0.023734627,0.03948554,-0.068126336,-0.006298865,0.07401576,-0.012367146,0.039216332,-0.053183477,0.04077431,-0.027206728,-0.056454647,0.046836134,0.02419528,0.016528212,-0.015374919,0.022729047,-0.071292914,-0.013539154,-0.05221618,-0.06982945,-0.021336053,0.056845814,-0.021350197,-0.040921703,0.019399667,0.060828593,0.010486629,0.05536027,0.006526426,0.09285341,-0.0452634,0.04878306,-0.039175972,0.048608735,-0.08745879,-0.019557863,0.04151226,0.005816769,0.027847257,-0.03556976,0.019660605,-0.005897335,-0.04049956,-0.031939898,0.017169585,-0.09449581,-0.057914633,-0.056518365,-0.032581393,-0.023335252,0.06798923,0.05503472,0.049769625,0.10653882,0.05481246,0.0729793,0.059125237,-0.027261488,0.026400475,0.046984334,-0.06225441,-0.053195965,-0.09873706,0.034641426,-0.03395993,0.028968142,-0.08127217,0.047830988,0.005414051,0.053019747,-0.016777601,-0.026232764,0.036061235,0.072359025,-0.047795698,-0.06672892,0.024401324,-0.07061957,0.024818819,-0.0076908343,-0.0013457965,-0.021916693,0.113715746,0.00398065,0.0777404,0.026739322,-0.021242192,-0.048842374,0.0404001,0.017142229,-0.034236062,0.031764403,0.07956163,0.09826516,0.018794745,-0.096854895,0.11526778,-0.018282853,0.07671343,0.038057603,-0.02254024,-0.08051126,0.028458355,0.005585476,-0.005662735,-0.021174422,-0.06994502,0.05441143,2.8222633e-33,-0.09932751,-0.032877844,-0.010334679,-0.06492571,0.079376206,-0.003907795,-0.020758495,-0.068773225,-0.031151377,-0.04130906,0.01693478,-0.045409087,0.12582348,-0.0632005,-0.019037893,0.05863318,-0.071520776,0.02837283,-0.016894706,-0.029591113,0.008420999,0.011898641,-0.019398155,0.0009670075,-0.004559982,0.029406976,0.02556585,-0.0074018016,0.14739427,-0.0067939344,-0.0741871,-0.0009022756,0.03777814,-0.014374088,0.011840674,0.009337495,0.075872846,-0.0031277034,0.025892662,-0.0028367806,-0.106200285,-0.054718286,-0.066153735,-0.048202515,-0.10433741,0.025520852,0.012919691,-0.037756726,-0.047910832,0.009750567,-0.05738355,0.03692166,0.060609,-0.008322543,-0.08892722,-0.020187598,0.054215923,0.00026575907,-0.000782408,-0.0524851,0.085870065,-0.044865236,0.003498246,-0.030292295,-0.114344336,-0.044450913,0.048378497,-0.0013747236,0.022511074,-0.057239067,0.047752425,0.043950554,-0.07748049,-0.0664223,0.03307556,-0.02373326,0.07492999,0.03443454,0.09411607,-0.074863076,-0.046315253,0.004276227,0.06391065,-0.031718425,0.051353868,-0.022733884,-0.022459561,0.04976119,-0.02047786,0.031313848,-0.08062107,-0.016870996,0.015617544,0.035007477,0.057290915,-4.2007756e-33,0.033983298,-0.0016139976,0.058785863,-0.013745302,0.06835295,-0.0220091,-0.035794877,-0.057367735,0.018077483,0.060462456,-0.046556875,0.03651677,0.041454367,-0.10777912,-0.040441692,-0.10755165,0.07762388,0.04029991,0.038197342,-0.003983281,0.04301277,0.059423033,0.014320135,-0.009501957,0.010650969,0.008148936,-0.025662558,-0.026569141,-0.07605572,-0.03180985,-0.012772704,-0.0683525,0.014259565,0.022043817,0.110182,-0.0042267386,-0.005437372,0.058534525,-0.027843693,0.06885044,0.035111547,-0.088107966,0.0038352115,0.049762957,0.058966722,0.011531954,0.03232157,-0.045134153,-0.009483018,0.06972714,-0.044654887,-0.015990011,-0.024461072,0.021124862,-0.020366216,0.010479722,0.05752955,-0.033218037,0.050177153,0.011304983,0.046107046,-0.039093122,-0.116231315,0.0075015845,0.028070997,0.005057781,-0.048783492,-0.005663496,0.006116024,-0.0056812516,-0.065678366,0.0726206,-0.02474017,0.031888954,-0.0144896405,0.061680336,0.0020536517,0.0542516,0.007857092,-0.014825264,0.008545771,-0.017832097,0.10196726,-0.06899679,0.009675597,-0.050147694,0.07927826,-0.055828445,-0.012595479,0.04058956,0.12427468,0.056314215,0.037749007,0.08451801,-0.0022659516,-4.4907694e-08,0.12913658,0.0033163803,-0.0013425306,0.01762601,0.059113104,-0.13566497,-0.052697014,-0.030481579,-0.094259754,0.05065082,0.029266614,0.016739234,0.017074635,-0.049042437,-0.043878455,-0.039809015,-0.011179251,-0.036125883,-0.039890006,0.06685127,0.0019578624,0.094421886,-0.033041783,0.0028619294,0.0039209053,-0.021009302,-0.009770493,0.039603088,-0.018676814,-0.1340941,-0.0077595,-0.018154122,-0.03527286,0.058942035,-0.03722912,-0.14163992,-0.074655384,0.08857773,0.02419936,0.023423208,-0.07065446,-0.080797456,-0.048015777,0.00061635487,0.02850832,0.06765034,-0.124274075,0.019691708,-0.032555766,0.030593693,-0.08965257,-0.1130388,0.0049100816,0.013122019,0.051916357,0.0057377615,-0.018341707,0.0036854956,0.0039679683,0.03948398,-0.024766436,-0.0014857735,-0.06487742,0.04135092} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.350186+00 2026-01-30 02:01:09.244947+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1565 google ChZDSUhNMG9nS0VJQ0FnSUNCaWNqZ0RREAE 1 t 1568 Go Karts Mar Menor unknown Very good cars and track!!!! very good cars and track!!!! 5 2023-01-31 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Very good cars and track!!!!"} {-0.046149768,0.004652357,0.019024922,0.020247811,-0.051588714,0.070187174,-0.0014539378,-0.0010775981,-0.0900742,-0.01572807,-0.00570367,0.0021174515,0.010587173,0.0053323363,-0.06877481,-0.00074271794,0.057858404,-0.04414132,-0.023283804,-0.0107586095,-0.10951075,-0.03557514,0.04252552,0.056484483,-0.11193435,0.049969736,-0.09031951,0.05394231,-0.012637095,-0.04269067,-0.04955021,0.08564299,0.0063517736,0.008460701,0.0073853033,-0.040281225,0.081084356,-0.0867966,-0.034648154,-0.033516917,-0.023831662,-0.043222588,0.03631324,0.027750935,0.022825265,0.01710948,0.032572493,-0.02462293,0.0964862,-0.035221316,0.04395639,0.013141544,0.05536013,-0.0865289,-0.10080813,0.055364307,-0.043174114,0.0044143,-0.032822274,-0.0780994,0.073415145,0.012734486,-0.070097625,-0.040192045,-0.010793111,-0.08860936,-0.07186303,0.02607121,0.016521659,0.032194253,0.069946274,0.043344066,0.015303863,-0.010200512,-0.026673118,0.04195206,0.013510019,-0.027007286,-0.024694571,-0.02936963,0.049110822,-0.11298178,0.00049260695,-0.0410007,0.01460556,-0.10313884,0.018068092,0.011223964,-0.022066385,0.021573447,0.022256797,0.06429333,-0.059490915,-0.04507926,-0.03030096,0.027874622,0.035308033,-0.008580355,-0.025347129,0.051242597,0.066331476,0.07694329,0.06563876,0.020499768,-0.066632956,0.043197542,-0.0006546895,0.1281445,0.01941018,-0.011370989,0.10123301,-0.025895204,-0.0198444,0.024135241,-0.017458938,0.054820795,-0.024228748,0.06920957,-0.026595425,-0.021732876,-0.036244422,-0.037629,0.0128637375,0.059988488,0.032824602,-0.06324774,0.04568484,-5.3295015e-33,-0.055294476,0.042973865,0.018871471,-0.019931216,-0.010213157,0.041130017,-0.07754092,-0.019646976,-0.110796064,0.027545052,-0.08165199,-0.0011611112,-0.03782882,-0.0028859898,0.05225914,-0.025621776,-0.11734226,-0.069037884,-0.089077406,0.067211084,-0.025245184,-0.0032960197,0.025323441,-0.023292985,0.059370596,0.034220025,0.008984659,-0.033589285,0.020479156,0.02550116,-0.05861025,0.052899938,-0.057679594,0.05456815,-0.031947993,0.017791666,-0.1381627,-0.07274588,0.023531025,0.022030143,0.11156491,-0.0092356065,-0.04678069,0.0024090072,-0.06442763,0.07062438,-0.008599015,0.05003305,0.099094294,-0.05040972,-0.034894843,-0.05432736,-0.09669759,-0.050017104,-0.00029710768,0.070623495,0.030355599,0.06573866,-0.045622956,-0.05257444,0.066960916,0.06609809,-0.04000718,-0.10198489,-0.06432517,0.016923781,-0.015296667,0.02709956,0.031237973,0.078659296,-0.03045692,-0.021988023,0.04568253,-0.019644028,0.08756742,0.03894523,-0.05235171,-0.020631783,-0.017464323,0.06505537,-0.025891095,0.06553121,-0.0045344,-0.061471634,0.10138488,0.031141326,-0.07691993,-0.061850984,0.025859185,0.02884021,-0.017273448,0.0070828362,0.01490545,0.019426761,-0.004467195,2.8597746e-33,0.08418529,0.062458478,0.059121218,0.022635339,-0.031165736,0.056388117,-0.038563333,0.029448725,0.08179772,0.10838993,-0.024635958,0.0450477,0.009997234,0.02799759,-0.014366732,-0.061286483,0.14543866,-0.022383895,-0.057077248,-0.11513172,-0.013756804,-0.0134780845,-0.025117284,-0.0027362064,-0.040541247,-0.005983578,-0.034287047,-0.022222634,-0.010918034,-0.010394432,-0.0009136188,-0.0134326145,0.01667128,-0.0323972,0.0069707744,0.01265267,0.04004701,0.007274847,-0.052009027,0.027340429,-0.004745743,0.020317215,0.013504527,0.065374695,-0.016970996,-0.027820481,0.0012410315,0.0834437,-0.05457783,0.033101812,0.065850034,-0.05813239,-0.0653692,-0.009481466,-0.0680379,-0.029361011,0.11173315,0.0025162548,0.0028672507,-0.004377145,-0.06814677,0.07293085,-0.07845441,0.0551093,0.055436697,-0.06827134,-0.046542965,-0.09552633,-0.04227124,0.010917998,-0.032013446,0.044120513,-0.062951244,0.06858427,-0.06448938,-0.029674558,0.031300124,0.005133878,0.07714159,-0.01698209,0.0044453465,-0.026367318,0.04932332,0.020627223,0.008425464,0.08316076,-0.03253625,-0.026222575,0.021083996,0.07440176,0.045889333,0.11125446,-0.054208625,0.023742314,-0.11341695,-1.582518e-08,0.050030757,0.07462453,-0.01802486,0.03331212,-0.032394305,-0.007878573,0.011315172,0.035792597,-0.070582695,0.03730065,0.05742701,-0.020008096,-0.071635015,0.069760025,0.0016786071,-0.04666609,0.037112042,0.11997458,-0.014552912,0.011421169,0.014921202,0.02885328,-0.02899775,0.09907854,0.022610057,-0.1015846,0.021063527,0.0031839635,0.068797044,0.0026681933,0.045510966,0.05118827,0.06757869,0.021718502,0.019820595,-0.05589295,-0.014074027,0.02727595,0.034871068,-0.07888599,0.05495434,-0.030581959,-0.07026269,-0.041284602,0.019768007,-0.05519425,-0.004753296,-0.059682835,-0.058998805,-0.011629719,-0.010094512,-0.020987969,-0.05060718,0.124205925,0.05139937,0.03869437,-0.0049057854,-0.077410005,-0.021248268,0.019119246,-0.0040838933,-0.008957858,0.0071852477,0.057479586} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.659125+00 2026-01-30 02:01:09.816515+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1353 google Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB 1 t 1356 Go Karts Mar Menor unknown Worth the money! worth the money! 5 2025-12-31 01:52:39.833374+00 en v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Worth the money!"} {-0.07321803,0.101871215,-0.014396936,-0.011653914,0.022800546,0.025341596,-0.010644473,-0.026434705,-0.035754643,0.012402859,-0.075704865,0.07872475,0.03775547,0.024413513,-0.024121255,0.0077560726,-0.019504765,0.03274672,0.049951356,-0.12727569,-0.06246626,-0.009799681,0.036067665,0.032256726,0.0010231031,0.04425073,-0.036425292,0.07002894,0.059610832,-0.026882883,-0.012207686,0.13928528,-0.051653046,-0.02651109,0.006238445,-0.044009957,0.12227329,-0.044640362,-0.0062560933,0.030732708,0.006527913,-0.023449495,0.06893856,0.030135797,-0.048755996,0.012540741,-0.000779281,0.014551583,0.07529736,0.05576613,0.057459265,-0.123510115,0.032080706,-2.69044e-05,-0.024579987,0.03258354,-0.00055306766,-0.08538436,0.0007241651,-0.039203607,-0.046158943,0.008602301,-0.08237807,0.07335856,0.003945121,0.014393486,-0.022088425,-0.056823295,-0.011470876,0.013107115,-0.07381324,0.050714392,0.015194884,-0.059767354,0.043821562,0.0591043,0.053483017,-0.096301906,0.032471664,0.057147406,0.0022745626,-0.037692532,0.029949032,-0.009928891,-0.06772868,-0.021423,0.09193873,-0.08131097,0.056390595,-0.02564793,0.03790165,0.0029122224,-0.024825087,0.011809285,-0.116672575,0.06630703,-0.07311209,0.027492218,-0.05070857,0.042449255,-0.014871168,0.0032306353,0.03675245,-0.015262184,0.013295466,-0.045439906,0.015777463,0.04554247,-0.014362374,-0.08959965,-0.033445783,-0.0135037955,-0.019823628,0.059860636,-0.0009534959,0.031154122,0.06174061,0.021620313,0.080495946,-0.045529883,0.07849896,-0.05100533,0.029122228,-0.015691318,-0.058148753,-0.17475727,0.0749819,-3.4676323e-33,-0.01582967,0.10751927,0.009963391,-0.10756426,0.02069077,0.015235143,0.025148569,0.022068841,0.005525723,0.029213844,-0.03134526,0.055410523,-0.06790318,0.034313314,-0.014554503,0.03854417,-0.06998801,-0.06312327,-0.004193021,0.00913707,-0.031431284,0.046673805,-0.025778122,0.058651593,-0.051412255,0.02667188,-0.038758386,-0.04060469,0.07369257,0.026464112,-0.07822154,0.02188486,-0.05040623,-0.04466897,-0.029694103,0.0051968438,-0.020167716,-0.096072055,-0.0016298646,0.011988868,-0.06810944,0.050160218,-0.013974241,-0.0041263946,-0.041865945,-0.017504308,-0.089470655,0.052304167,0.028689453,-0.053477522,-0.033684816,-0.0070754164,-0.07984119,-0.0046436014,0.0015768436,-0.027468596,0.05823015,-0.06443178,0.034031853,0.013765769,0.0045461836,-0.00959114,0.0024558508,0.009218049,-0.027485004,0.09052889,-0.040626947,0.024176912,0.01241458,0.024892539,0.0005919236,-0.0077295615,0.11369742,-0.10748343,0.024281977,0.0013808205,-0.064165235,-0.025708064,-0.06733698,0.032471664,0.038837764,-0.005883065,0.03364642,0.067082696,0.081476614,-0.015377649,-0.017612975,-0.10724272,0.013829149,0.027897587,0.041110188,0.0073038884,0.025408989,-0.010663258,-0.07471895,2.2276624e-33,0.03098803,-0.095482364,0.004804271,-0.0034453548,0.035690084,-0.0016623212,-0.0047118957,0.082944155,-0.024851417,0.029104633,-0.047029868,-0.0015161105,-0.020399412,0.022300513,0.088797085,-0.015261385,0.022558205,-0.07128381,-0.018046573,-0.08152101,-0.040758837,0.0025424184,0.010050442,-0.0040215068,-0.107179195,0.035273243,0.010503417,-0.086617075,-0.007891154,0.0058844793,0.022994224,-0.04026712,-0.07036899,-0.045196094,-0.008475224,0.06673519,0.03584879,0.0012583977,0.067032695,0.067746855,-0.008074013,-0.0078206565,0.074032724,0.012974136,0.01611776,0.035144486,0.054001473,-0.057759058,0.015563076,0.08953655,0.09218888,-0.021869259,0.11418829,-0.038257983,-0.045812704,-0.06951151,0.021599844,-0.016586525,0.043157104,-0.05416585,-0.03917642,0.11480342,-0.020904332,0.063561596,0.04661967,-0.0074286014,0.09349004,0.023668189,-0.04111563,-0.008013238,0.038284533,0.10593409,-0.03963205,-0.034939762,-0.020580353,-0.013212321,0.0631296,-0.0073768036,0.028811231,-0.008341702,-0.092246026,-0.07585238,0.019964023,-0.055067122,0.04444263,0.0961063,0.021609819,-0.013266497,-0.0081640305,0.04029558,0.0040608095,0.11021993,0.04920953,-0.010444239,0.028302282,-2.004466e-08,0.0018959543,0.033235203,0.006408034,0.032125853,-0.06349357,-0.069889404,-0.06657557,0.04500339,-0.06034412,0.07204548,0.07910439,-0.053264588,-0.029421298,0.09812577,-0.012339131,0.0541201,0.018919067,0.108462974,-0.042472918,0.08192069,-0.016266137,-0.009000762,-0.005381351,-0.0025724738,-0.013380116,-0.015850509,0.04181593,0.07333113,0.051105868,-0.009803976,-0.0076386887,0.068050824,0.07383145,0.07181447,-0.01753813,-0.09476395,0.011078118,0.051377594,0.03127695,0.04573844,-0.04453678,-0.094008714,-0.027506644,-0.0028113201,0.039104003,-0.018765792,-0.00039675462,0.025237596,-0.040367857,0.01529796,-0.031533167,-0.004335744,-0.007002019,0.0126764495,-0.0062024225,-0.057532214,0.07511589,0.021087458,0.075751625,0.019208523,0.01887326,-0.16105697,-0.09498734,0.07195124} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:56:51.717325+00 2026-01-30 02:01:09.090315+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1306 google ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB 1 t 1309 Go Karts Mar Menor unknown Fabulous. Friendly helpful service guiding autistic son to complete a first solo drive. They were patient and kind and he absolutely loved it. So much so we went back a week later. Timing was excellent as we had the course to ourselves, which helped! fabulous. friendly helpful service guiding autistic son to complete a first solo drive. they were patient and kind and he absolutely loved it. so much so we went back a week later. timing was excellent as we had the course to ourselves, which helped! 5 2025-05-05 00:52:39.833374+00 en v5.1 P1.03 {P1.01,A3.02} V+ I3 CR-N {} {"J1.02": "Timing was excellent as we had the course to ourselves, which helped!", "P1.03": "Friendly helpful service guiding autistic son to complete a first solo drive. They were patient and", "R4.03": "So much so we went back a week later.", "V4.03": "Fabulous."} {0.0055456893,-0.018082652,0.047012925,-0.00031423607,-0.10782101,0.012340688,0.040990867,-0.00307507,-0.10167891,-0.018473538,-0.006931793,0.0939482,0.023219004,0.09317702,-0.06986143,0.006422358,0.1038514,-0.10863255,0.035074886,-0.009320539,-0.036744755,0.03893277,-0.012060127,0.037896678,-0.037521124,0.031918064,-0.00014496513,-0.008154504,0.017155034,-0.055071615,-0.07314052,-0.026804429,0.04793951,0.0013004089,-0.028108772,0.051702682,0.10386811,-0.053723074,-0.008474094,0.0044145733,-0.015685776,-0.005644415,0.073086716,0.0022838886,-0.050391734,-0.03574379,0.0469833,-0.12390955,0.09413223,-0.02561658,-0.015724909,-0.08981085,0.058053523,-0.06819558,-0.066893965,0.057326004,-0.009598324,-0.0052949945,-0.06166271,-0.0163248,-0.048757363,-0.04124351,-0.04274947,0.021846734,0.093404785,-0.031457447,-0.07222485,-0.074047245,0.07426753,-0.030628832,-0.023747914,0.056140095,0.07982815,0.018790126,0.022034297,-0.032920383,0.019513233,-0.00733732,0.021794323,-0.07755842,-0.012450976,-0.032263238,-0.02814103,0.040911335,-0.009636374,-0.10417176,0.028630888,0.033502523,-0.035923053,-0.0012181149,0.07723492,0.03902936,-0.052034475,-0.051179882,-0.054877155,0.018859353,0.0031881013,-0.07411534,-0.010892226,0.06245923,-0.028524347,0.093135305,0.058392894,-0.03600127,-0.03655915,-0.016872948,0.007688265,0.010062087,-0.011318823,0.029293798,0.041102227,-0.03459824,-0.013752323,0.010236586,-0.003957879,0.02747222,-0.024519077,0.042455483,0.060207903,0.01863108,0.028923104,0.014471245,0.07318601,0.040645335,0.027105251,-0.018428672,0.033326644,1.4363782e-34,-0.008599281,0.007247257,0.023737175,0.049340904,0.09905871,-0.0032905627,-0.04636591,-0.0024764193,-0.05103147,0.031925023,0.057372883,0.027556263,0.061193697,-0.008410214,-0.054474466,-0.02683686,-0.10403497,0.0030543355,-0.035972424,0.039932225,0.016193103,0.097774304,-0.012890653,-0.0012776675,0.031127965,-0.060438428,0.024569722,0.03866887,0.16207778,0.023926111,-0.081806384,0.0323772,-0.14005822,-0.030636823,0.04653551,0.048463043,-0.06582982,-0.044022966,0.0240697,-0.0028241514,-0.0013117833,-0.036697134,-0.031272415,-0.008643943,-0.08526699,0.022021791,0.016014015,-0.003016141,0.05013711,-0.063891456,-0.08910925,-0.025452683,-0.041394416,-0.05907937,-0.029315073,0.0010655725,0.038428225,-0.014995859,-0.016147064,-0.040417466,0.17110081,0.017040959,0.013242579,-0.027493551,-0.02716047,-0.059359208,0.003174149,-0.0432967,0.12654364,-0.052624956,-0.035084557,-0.041511517,-0.0024955303,-0.076579675,-0.0033795233,-0.0060035526,-0.017325576,-0.08304371,-0.0073552704,-0.01051706,-0.023893721,0.05781692,-0.024991047,0.020083198,0.03953849,-0.0052299425,-0.060359046,-0.12126378,-0.043701675,-0.035636146,-0.014769412,-0.01781726,0.020413708,0.024931464,-0.035865147,-2.5019696e-33,0.07029033,0.004476343,0.038856346,0.01085078,0.021379568,-0.020121733,-0.029076947,0.1149524,0.05675845,0.12153855,-0.050014336,0.051058203,0.047236968,-0.05443699,-0.027533004,-0.047921874,0.041034847,0.058415186,0.050091818,-0.08441844,0.0398689,0.09592306,0.03192671,-0.037646227,-0.025926301,0.022969505,-0.035944402,0.053943448,-0.08056351,-0.043789156,0.033708364,0.019690188,0.033454467,-0.07837678,-0.060808334,0.09895253,-0.053541306,-0.004481562,-0.104598306,-0.0072563873,0.03990028,-0.051186588,0.038163718,0.030724663,0.08145526,-0.016077155,0.043701813,0.008965658,-0.081014834,0.02741986,-0.025806244,0.0029595771,-0.04179331,-0.08207088,0.009476172,-0.018447496,0.022626042,-0.06418166,-0.004626209,0.033063594,-0.038033664,0.013991012,-0.08122819,0.030120434,0.029332539,-0.055836692,-0.0110451635,-0.018964408,-0.06664917,0.04879389,-0.036242124,0.046216853,-0.046563547,0.0062140236,0.021841753,-0.011024354,0.084448665,-0.008580034,-0.026427006,0.04016006,-0.008270055,-0.01776565,-0.04800818,0.06358569,-0.0027966872,0.056624904,0.056156907,-0.012152681,-0.02472153,0.12071077,0.040414408,0.08776982,-0.017183179,-0.016514715,0.017027654,-3.4686288e-08,-0.018108444,0.11414151,-0.04264557,0.035767198,0.023665003,-0.0661885,-0.02153686,0.026099049,-0.13817653,0.06805232,-0.0051765908,0.0044149924,-0.025637245,0.051810563,0.022271946,0.004155039,0.08402358,0.14400867,-0.07645789,-0.02456029,0.06028655,0.027838938,0.019380081,0.042258542,-0.061222162,0.0038247725,0.0026300743,-0.0028263244,-0.06410538,-0.04018492,0.006847723,0.04530877,-0.010961515,0.010297127,-0.059940822,-0.062182736,-0.026713477,0.020422515,0.025848646,0.017104229,0.0092495,0.0252305,-0.015017831,0.0077074617,-0.009389095,0.029366948,-0.086672015,-0.043918103,-0.035161145,0.026438672,-0.045413602,-0.020999797,-0.07464462,0.044549312,0.06543475,0.04858892,-0.05149704,0.0059038866,-0.094097115,0.11577773,0.055243637,0.05951607,-0.08745846,0.0449914} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:04.745672+00 2026-01-30 02:01:08.917472+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1409 google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB 1 t 1412 Go Karts Mar Menor unknown Great Great Go-kart track, friendly helpful staff. Easy to find off motorway EP7, easy parking. Good shop and cafe on site. Good prices too: €12 for 8mins, very reasonable (especially compared to UK in £GBP). Great track, 10 varying turns, about 1.2km long. We used F200 karts (fast enough). F100 for smaller children, F300 and F400 for enthusiasts. Highly recommended. great great go-kart track, friendly helpful staff. easy to find off motorway ep7, easy parking. good shop and cafe on site. good prices too: €12 for 8mins, very reasonable (especially compared to uk in £gbp). great track, 10 varying turns, about 1.2km long. we used f200 karts (fast enough). f100 for smaller children, f300 and f400 for enthusiasts. highly recommended. 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {P1.01,P2.02} V+ I3 CR-N {} {"A1.04": "Easy to find off motorway EP7, easy parking.", "O1.02": "Good shop and cafe on site.", "P1.01": "Great Great Go-kart track, friendly helpful staff.", "V1.02": "Good prices too: €12 for 8mins, very reasonable (especially compared to UK in £GBP).", "V4.03": "Highly recommended."} {0.040766526,0.016191725,-0.008305916,0.04304535,-0.03137955,0.06632996,-0.049722586,0.04855844,-0.02959005,0.02632877,-0.013159253,-0.014777853,-0.05069598,0.042584617,0.018461134,-0.0796891,0.068623714,-0.09253206,0.026169699,-0.067327306,-0.049866647,-0.02241355,0.049717758,0.055795714,-0.06955049,0.010729455,0.008911337,0.051220402,-0.0016483713,-0.05891462,-0.09630461,0.040812455,-0.010795554,-0.020806862,-0.07600504,-0.07937816,0.035002463,-0.029563764,-0.027112424,0.025126833,-0.025516314,-0.029858164,-0.014753836,0.0033824453,0.06202193,0.062056057,0.0259076,-0.0137382625,0.056447588,0.03204965,0.051227693,-0.0032759362,0.006105008,-0.07440102,0.025201188,-0.043982368,-0.07056377,0.0035017794,0.06305671,-0.002370449,0.0285469,-0.08128736,-0.07679347,-0.018978951,-0.029902777,-0.06538913,-0.053466067,-0.0025157677,0.0153013365,0.0697733,-0.020621726,0.00736325,0.060218487,0.0012136196,0.010746326,0.023227718,0.010905812,-0.013974508,-0.14651766,0.013700566,0.03569314,-0.036706228,-0.0035333505,-0.049413666,0.039464183,-0.10995502,0.059573222,0.04134483,0.0060296673,-0.01035491,0.043998744,0.07977788,-0.011879285,-0.023120895,0.036318675,0.049245387,0.0007264718,-0.01237435,0.0053795325,0.013802515,0.02764489,0.06674535,0.06976648,0.057044845,-0.052041307,0.013882702,-0.035708245,0.119790524,0.0765543,-0.024788924,0.007895031,-0.0047416203,-0.0136052035,-0.06519782,-0.060003646,-0.03874795,-0.011198719,-0.027713753,0.024117569,0.08063996,0.024924856,-0.047633514,-0.0007669828,0.099955365,-0.039545402,-0.06554706,0.0061648763,2.2339693e-33,-0.10742846,0.0879107,-0.012312434,-0.08737824,0.0047326256,-0.05564175,-0.037510104,-0.10807814,-0.034599178,0.041351795,0.0008983164,0.042550765,-0.030661594,-0.0277409,0.07406028,-0.04949817,0.008016646,0.0052087917,-0.04125006,-0.017374815,0.030209,-0.062393486,0.064899676,-0.017258836,0.08952753,0.017447459,0.10441081,0.026692502,0.12407444,-0.0027072914,-0.08462402,-0.028038645,-0.03866575,0.0108148195,-0.06052471,-0.051996917,-0.08391745,-0.046500884,-0.037119485,0.018994622,0.04067105,-0.042513758,-0.04255206,0.027037933,-0.024701405,0.007492136,0.014889205,0.05511369,0.015619704,0.04658745,-0.072638825,-0.041168258,-0.12567,0.019741178,-0.06909101,0.036574252,0.060269434,0.03701211,-0.0060187182,-0.025470724,0.0687089,0.02574429,0.019348849,-0.074416175,-0.07171163,0.021264978,0.005876549,-0.009457798,-0.0641896,0.002747743,-0.025388548,0.013114557,0.122500956,-0.08194645,0.06919291,0.01893821,-0.08180073,-0.03433991,-0.038232513,0.082794055,-0.060384005,0.045602784,-0.034561448,0.024388947,0.088379115,-0.04170673,-0.058794957,-0.05122089,-0.019517478,-0.019431056,-0.031598978,0.008169798,-0.06449729,0.04187547,0.00906954,-3.563363e-33,0.085041285,0.03084138,0.14333978,0.117681056,0.028273836,0.0581082,0.03163569,0.010000447,0.026060043,0.109861866,-0.08887065,0.012469483,0.038809437,-0.00090776494,0.0011985821,-0.03420891,0.08715107,0.023469409,0.10319059,-0.104427494,0.003485692,-0.0070236195,0.00809817,-0.009781622,0.012191862,0.040969573,-0.002631093,-0.036500696,-0.07171946,-0.012444686,-0.090825245,-0.07446287,0.030439189,-0.05490215,-0.064492114,0.02232684,0.02882385,0.089370936,-0.033617016,0.07198473,0.020558564,0.03339449,0.026469393,-0.026909558,-0.01054626,-0.06665058,0.021113252,0.04445264,0.10332399,-0.012923868,0.110657535,0.08886247,-0.051352736,-0.037868492,-0.06340244,-0.009898275,0.0017065305,0.017065432,0.023244837,-0.023081372,0.005625664,-0.004250714,-0.06943374,0.063085355,0.044161852,-0.023401398,-0.017323168,-0.015721962,-0.024161171,0.0085604265,-0.10837177,0.00044011316,0.0054183872,0.0011613346,0.0005145054,0.012241971,0.05994078,0.012423532,0.0982768,0.05739585,0.1045832,-0.047777012,0.009208099,0.023290662,0.010052938,-0.037193265,-0.027228758,0.04671485,0.030275976,0.044691447,0.0911343,0.050417777,0.02870336,0.0067770868,-0.03534085,-3.8404213e-08,-0.0063210786,0.025353948,-0.023813037,0.04446528,0.03472424,-0.08697631,0.017068388,0.046264235,-0.057183713,0.009091673,-0.025970208,-0.041426387,-0.0020391974,0.03624289,-0.026146064,-0.01578776,-0.014106152,0.09772656,0.0012149186,0.057231054,0.02437435,-0.010537177,-0.01390986,0.009984461,-0.028455187,-0.05750231,0.008075108,0.0833143,0.010259875,-0.07395611,-0.039102353,0.016458096,0.007336497,0.024848042,-0.014434542,-0.08562595,-0.09338139,0.0991783,-0.026878897,0.016599348,-0.034628037,-0.08128042,-0.082360186,-0.03209147,-0.06289865,0.040906563,-0.13863598,-0.04561506,-0.069613285,-0.0005608402,-0.0010309482,-0.003427735,-0.00027061318,0.017510774,0.062127266,0.06175251,0.034746293,-0.058148526,-0.035840575,0.04453287,-0.028443767,-0.098383434,-0.05056138,0.036645107} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:29.516475+00 2026-01-30 02:01:09.263073+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1412 google ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB 1 t 1415 Go Karts Mar Menor unknown Great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just managed to drive her own kart (1 proud dad). Great fun and very reasonable prices too. Highly recommended great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just managed to drive her own kart (1 proud dad). great fun and very reasonable prices too. highly recommended 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.01 {A3.01} V+ I3 CR-N {} {"O1.01": "Great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just", "V1.01": "very reasonable prices too"} {0.08053776,0.049210113,0.021611122,0.090196356,-0.10011557,0.09188975,-0.042174175,0.036337577,-0.01913688,0.039097473,0.050079715,0.054842167,0.048702687,0.029486407,-0.0008515797,-0.00577256,0.12083317,-0.05771274,0.04531063,-0.13029428,-0.06471582,-0.0281156,0.06467629,0.015239189,-0.08095484,0.0030582638,-0.06268899,0.076750815,0.04274353,0.00390756,-0.02121448,0.02735912,0.0076320134,0.013352152,-0.034589417,0.033631697,0.035135124,-0.014903211,-0.036512636,0.021022435,0.03611721,-0.024234146,-0.058852743,-0.06573462,-0.031303436,0.030596195,-0.010907228,-0.06217087,0.09520472,0.0043021785,0.085623436,-0.06727169,0.0723577,-0.06526854,0.050588284,-0.04365445,-0.17210467,-0.06514868,0.09503223,-0.010293761,0.07364949,0.06464376,-0.05319092,-0.016149454,-0.08301794,-0.094391495,-0.010101799,0.04684699,-0.012814689,-0.008084058,0.05530868,-0.003129613,0.043571036,0.033895846,0.046951625,-0.025732633,0.054291412,-0.013234479,-0.03228911,-0.016593011,-0.014966338,-0.016185975,0.032817427,-0.047218535,-0.030828355,-0.06719916,0.0109737525,0.0035381147,0.0047228304,-0.015706424,-0.04520691,0.032607947,-0.002040354,-0.007926528,0.026457755,0.016893726,-0.028239613,-0.009331769,-0.012723123,-0.032234486,0.0005264322,0.063718036,0.09363062,0.074861705,-0.020243049,0.027851073,-0.021089163,0.04754469,0.0255896,-0.0020055748,-0.016425638,0.0025758639,0.006229542,0.03342308,-0.06506496,-0.048119888,-0.035588935,0.012622093,-0.048905283,-0.012347862,-0.004695324,0.008534999,0.06529425,0.05423013,0.06725032,-0.04834314,-0.016291868,2.6664653e-33,-0.07145828,0.05774749,-0.020298272,0.01917068,0.056137078,-0.09033207,-0.042216603,-0.13485098,-0.11478366,0.05962779,0.023938075,-0.030825065,-0.01452919,-0.0461541,0.07901216,0.047345057,-0.010071562,0.011364288,-0.083646536,-0.008588687,-0.0615323,0.024792727,-0.0012808688,0.03732087,0.033843663,0.00039864823,0.12840663,0.027224738,0.03802108,-0.0027851854,-0.060753986,-0.018380199,-0.07096604,0.01740974,0.00089559593,-0.021167662,0.0059501855,0.003388021,-0.11041679,0.06684982,-0.024442827,-0.09773175,0.0006046546,0.041740727,-0.058030028,-0.01926526,0.050696034,-0.030579701,0.03556542,0.04089838,-0.11371046,0.013068943,-0.03150698,0.022154685,-0.043086953,0.079506405,0.04245986,-0.008270818,-0.046124026,-0.05679844,0.044030398,-0.07082632,-0.016659295,-0.09029144,-0.057918835,-0.023553295,0.031817272,-0.0343196,0.05714872,0.038292397,0.027118254,0.017285816,0.036713105,-0.024230601,0.09754514,0.04136398,-0.029537614,0.01393093,-0.010753606,0.056443483,0.011170993,0.034372423,-0.012438052,0.049542338,0.059693653,-0.06736547,-0.057100553,-0.0943363,-0.03851824,0.022549298,-0.0682065,-0.0028626795,-0.01829401,0.038929906,-0.011921066,-4.313388e-33,0.05183362,0.06291148,0.09353939,0.05040073,0.04067773,-0.045346733,0.012003056,-0.040841244,0.021079086,0.026878905,-0.08687512,0.03413071,0.047652137,0.012990957,0.0135587985,0.026468562,0.07192022,0.047364935,0.025331877,-0.13593024,-0.033963963,0.04038621,-0.010364141,-0.008149814,0.019197924,0.0043759127,-0.11372072,-0.01585423,-0.095529795,0.04045898,-0.0060174153,-0.09062811,0.08624396,0.012373849,-0.016891768,-0.008539484,-0.077197984,0.04968153,-0.09281727,0.009114379,0.075270034,-0.031071818,-0.004424659,0.019897023,0.012113752,0.023792574,0.08832371,0.04066643,0.049703028,0.0043118587,0.05178714,0.07868086,-0.010186294,-0.023112847,-0.017815296,-0.016901536,0.06383437,0.030488713,0.008347904,-0.039709583,0.0037844328,-0.003999225,-0.049406543,0.041280508,0.0111388825,0.012824054,-0.06387516,-0.04645086,-0.09288835,-0.0013347488,-0.045395114,0.0063257366,-0.046628688,0.0019909476,0.00025733543,-0.013412134,0.06712621,0.045046564,0.05895718,0.070769966,0.05964994,-0.06361976,-0.003643966,0.024719635,-0.031277966,-0.0033614482,-0.011513761,0.0060499446,0.028305838,0.026353154,0.08315707,0.07773374,-0.06633528,-0.024357809,-0.03671065,-3.0597707e-08,0.02870304,0.07858361,-0.10890737,-0.001575857,-0.04121848,-0.086176254,0.04673812,-0.028556608,-0.074269176,0.0684334,-0.048563518,-0.010703339,0.03631969,-0.056857087,0.011767567,-0.013991039,-0.000255397,0.091643415,-0.0024564203,0.06751518,0.06529706,0.020736447,-0.042551093,0.08386783,-0.11940561,-0.09728282,0.03885204,0.03653702,-0.061171304,-0.058672026,0.011619291,0.06555841,-0.061224505,0.06362678,-0.013238075,-0.06053907,-0.06385483,0.08495342,-0.023047503,0.03563363,-0.07373202,-0.06703572,-0.05767956,0.018267846,-0.035025332,0.12132865,-0.025958233,-0.019098032,-0.03566261,0.044998527,-0.09355607,-0.025221806,-0.009375927,0.016488338,0.021405136,0.019759582,-0.016192175,-0.05414264,-0.022229396,0.024882492,-0.022468109,0.0045516742,0.001053365,0.015733605} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:57:59.241074+00 2026-01-30 02:01:09.272544+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1483 google ChdDSUhNMG9nS0VJQ0FnSURuLWFYV3lBRRAB 1 t 1486 Go Karts Mar Menor unknown Outstanding track and karts you'll have a blast outstanding track and karts you'll have a blast 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Outstanding track and karts you'll have a blast"} {-0.029666325,-0.027577417,0.039246332,0.038774062,-0.039079722,0.046777636,-0.0017948818,-0.03183106,-0.027886812,0.0020123476,-0.061276574,0.013543989,-0.020394187,-0.004191461,0.010169735,0.010937082,0.06915883,-0.0068465485,0.016156342,-0.06479332,-0.061069522,-0.029157177,-0.03753589,0.040617112,-0.1054895,0.030386139,-0.027903842,0.03714791,-0.012231355,-0.057575494,-0.075340636,-0.0061709736,0.023555445,-0.02471569,-0.011036569,-0.072469726,0.04476407,-0.0865517,0.0054326253,-0.03176939,0.004253674,-0.018974168,0.011513498,0.050368067,0.047643833,0.018250879,-0.012605115,-0.05903636,0.0105697615,0.06580312,0.060482338,-0.063525654,0.00599154,-0.0324949,-0.00931651,-0.018611576,-0.07617859,0.00037761623,0.060885895,-0.0450951,0.005463125,-0.0063871993,-0.020295441,-0.027069887,-0.024917582,-0.06917398,-0.022609238,0.16058059,0.0022363865,0.10811553,0.016466029,0.0043716715,0.059712417,0.036868047,0.037862282,0.07802967,-0.07604909,-0.05297403,-0.08457447,0.027494038,0.032658692,-0.01655058,0.0020112877,-0.16139776,-0.032876242,-0.08286368,0.077778935,-0.013078433,-0.01702343,0.016258575,-0.047432855,0.01615828,0.018134233,-0.046367146,0.036918327,0.022261327,-0.0065532336,-0.032423176,-0.00042529992,0.048289903,0.06541144,0.06897922,0.028700652,0.061016385,-0.010948281,0.0066302866,-0.045039162,0.03862486,0.07911457,-0.0067703044,0.042141557,0.03255525,0.009098587,0.01186811,-0.009798922,0.031838194,-0.044410303,0.1034049,0.020701138,-0.0009734566,-0.015566844,-0.035458244,0.0210641,0.029368196,-0.0038094872,-0.04020951,0.038419325,-4.1128567e-33,-0.115346335,0.016000042,-0.0016031254,0.020168638,0.0778485,-0.1362,-0.05804062,-0.14503439,-0.1161122,0.100534394,-0.053009674,0.06674128,-0.012795878,-0.00092546275,0.06386671,-0.012490254,-0.013364193,-0.010998132,-0.113690645,0.027131466,-0.036452983,-0.05707083,0.012074279,0.017621594,0.06517035,0.012885405,0.093828954,-0.051179107,-0.030289281,0.014995767,-0.042142004,-0.0148220295,-0.057334933,0.057972424,-0.0679688,0.022209294,-0.07804499,-0.061502848,0.017644392,0.011254327,0.06515725,-0.027071405,-0.06158079,-0.01583846,-0.0116813695,0.027333848,0.044133693,0.082583636,0.027177738,-0.01935003,-0.078045234,-0.04885552,-0.006531748,-0.010169454,0.02089243,-0.020115338,0.07879345,-0.01112145,-0.016356662,0.0023909714,0.05313437,-0.010029467,-0.048394244,-0.06274555,-0.04231291,0.036333255,0.02054763,-0.032987002,-0.01285653,0.04111974,-0.062607065,0.020964732,0.01983186,-0.071474046,0.12718603,0.022181904,-0.025785606,-0.002737755,-0.06648179,0.081469946,-0.05178451,0.0064954427,-0.044476327,0.018734982,0.056352686,0.043723613,-0.055503983,-0.07334801,0.008025506,-0.016088046,-0.0786365,0.008905092,-0.0315305,0.042923406,0.032571085,2.9036591e-33,0.13531117,0.09431308,0.10386268,0.09485688,0.0405926,0.035782933,0.027141314,0.04458472,0.039007146,0.07393715,0.022909295,0.027989449,-0.033414185,0.03900134,-0.0119536575,-0.05010088,0.056618772,0.03626454,0.02646077,-0.048854068,-0.03833606,0.021038564,0.00018005245,-0.059130564,-0.00072707253,0.04986929,-0.008778689,0.0068044066,-0.03179664,-0.017781505,-0.006926405,0.012618977,-0.044267848,-0.059759054,-0.00027767458,0.02728323,0.07917491,0.060039118,-0.07080772,0.012254469,0.014170408,0.07692969,0.018543536,0.0648275,-0.029496072,-0.0163027,0.0799648,0.10258302,0.032616317,-0.007934685,0.03493487,0.0511428,-0.034773603,-0.048921183,-0.0071201283,-0.040937766,0.052795775,-0.04088542,-0.0405226,0.013702639,-0.052378617,0.069713384,-0.030846456,0.030606333,0.04514244,-0.04853063,-0.048507627,-0.068221726,-0.07958061,0.018335437,-0.11827597,0.1006129,-0.054002833,0.010287385,-0.009721049,-0.042908136,0.025243597,0.06450947,0.08068069,0.023309957,0.037758928,0.033762783,0.0019680834,-0.015678583,0.09633386,0.097486354,-0.047572028,-0.004801167,0.054804314,-0.004979224,0.09944708,0.09886891,-0.011301959,0.040371075,-0.053803906,-1.7693896e-08,-0.022343006,0.1129754,-0.10454968,-0.020760046,0.010119013,0.020858873,-0.012042744,0.02338315,-0.04776326,0.02847814,0.0068799793,-0.043311615,0.023987856,0.02514277,0.021386467,0.0044311136,-0.04495745,0.12927732,-0.031351995,0.03323048,-0.006236236,0.011806582,0.0241199,0.046689104,-0.0536876,-0.08014226,0.013230102,0.038265157,0.09589964,-0.0059762164,0.025908172,0.035344996,-0.03491255,0.0013637219,-0.03316505,-0.06118374,-0.08804944,0.08482118,0.009149902,-0.003864416,-0.042089067,-0.047918044,-0.06984095,0.0075698355,-0.08337278,-0.05693089,-0.023715809,-0.032322656,-0.079450004,-0.030300565,-0.04025108,-0.06360623,-0.0049621197,0.087997764,0.08389372,0.06373555,0.015076686,-0.014870059,-0.013902796,0.0028437085,0.055228796,-0.12543054,0.042008992,-0.0126441615} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.776476+00 2026-01-30 02:01:09.502149+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1485 google ChZDSUhNMG9nS0VJQ0FnSUNudnFEOVpBEAE 1 t 1488 Go Karts Mar Menor unknown Excellent Go Kart track, friendly staff, excellent location. excellent go kart track, friendly staff, excellent location. 4 2025-01-30 01:52:39.833374+00 en v5.1 P1.01 {P1.01,A4.01} V+ I3 CR-N {} {"P1.01": "Excellent Go Kart track, friendly staff, excellent location."} {0.037406474,0.025111984,-0.00029329705,0.036235593,-0.06055937,0.057654887,-0.033065133,-0.0363186,-0.046754107,-0.029858716,0.026311595,0.06122192,-0.040938217,0.016049737,-0.035356157,-0.021678558,0.08688252,-0.063774064,0.069702975,-0.093866795,-0.050122112,-0.004142768,0.06619539,0.04471706,-0.14023365,0.008199959,-0.027739389,0.069635525,0.014952181,-0.009502991,-0.0971188,0.02256001,0.012591271,0.00601075,-0.06330794,0.021006694,0.015812205,-0.048643358,0.0133959735,0.026283026,-0.016618697,0.016373992,0.019859431,0.038852666,0.0040617124,0.048288986,-0.025559954,-0.055569585,0.030818824,0.024247121,0.07242758,-0.07174675,0.04539395,-0.07818389,0.013463785,0.015723862,-0.0719601,-0.004664607,0.068062864,-0.032137863,0.07532745,-0.021873089,-0.09315165,8.896753e-05,-0.012808081,-0.06658228,-0.10567504,0.07308886,0.0272919,-0.038599603,0.03497272,-0.012925692,0.05086795,-0.008045759,-0.003973049,0.05212752,-0.054231122,0.0036205417,-0.06770277,0.00076178944,0.061594043,-0.059653427,0.024795221,-0.003348521,-0.021402432,-0.09897452,0.048424628,-0.003489041,0.041371018,-0.037066285,0.060586285,0.094140105,-0.07885762,-0.03901828,0.05574325,0.019915566,-0.04018787,0.006277424,-0.011311348,0.026345069,0.051313035,0.05978676,0.05770155,0.059808988,-0.04721807,0.015770938,-0.08566624,0.07593111,0.058979325,-0.0016509196,0.04001232,0.028122723,-0.04725629,0.0040550637,-0.0067182737,0.01715856,-0.037084106,0.05797267,-0.055134207,0.0043264367,0.028964592,-0.022145562,-0.031044004,0.05809251,0.039173584,-0.050563797,0.0148586035,-2.2342812e-33,-0.040338702,0.061336715,0.014540614,-0.060437527,0.086957365,-0.09471423,-0.099392705,-0.10796847,-0.0811071,0.06341388,0.03587492,0.02335575,-0.004083444,-0.04760701,0.05796646,-0.04070252,-0.029791255,0.01192504,-0.073736906,0.029064769,0.001368767,-0.042591047,-0.0071206484,0.011387,0.09306272,0.014534282,0.079369076,-0.0046670707,0.07899919,0.0064056218,-0.03293039,-0.025859829,-0.014696982,0.017241146,-0.024811847,0.021216504,-0.09827209,-0.06468574,-0.014791769,0.0040840735,0.06859525,-0.024373867,0.0014870347,0.063355975,-0.017659489,0.046841398,0.03733084,0.026403598,0.07519906,0.049553305,-0.1048358,-0.016443612,-0.06732413,0.0474645,-0.009050382,-0.0004961199,0.04811745,0.05801425,0.025354784,-0.058676735,0.07628351,0.057803422,-0.0048659984,-0.072661735,0.002093864,-0.06775245,-0.014345583,-0.051124923,0.07561818,0.016242184,-0.017374791,0.011698043,0.085152715,-0.0050343685,-0.0181677,0.029724315,-0.11618929,0.04370203,-0.0017228402,0.042346664,-0.067761414,-0.007749813,-0.031642355,0.0146758715,0.07466782,-0.025705237,-0.033026695,-0.12877816,-0.044044986,0.011595434,-0.030892633,0.076788135,-0.033687945,0.08524685,-0.021307707,1.8511472e-33,0.0788685,0.03515156,0.13883819,0.091311716,0.009947151,0.06419384,6.501628e-05,-0.0003479876,0.06651034,0.11997599,-0.0897415,0.07901656,-9.948048e-06,0.04048559,-0.0011781212,-0.0036123146,0.09228328,0.047762208,0.0039319135,-0.12260747,0.0041134804,0.021455783,-0.038734764,-0.015080544,0.022836687,0.082791515,-0.011826502,-0.058019638,-0.10108956,-0.019160371,-0.084981345,-0.07767712,-0.011819041,-0.05113983,0.0049800845,0.072843075,0.038066566,0.06925921,-0.0535385,0.019858502,0.028319325,0.04883879,0.044788424,-0.0044970587,-0.02970675,-0.026799085,0.08322581,0.07614447,0.0056465426,-0.036404867,0.03953405,0.05380375,-0.02589046,-0.02058489,-0.018051792,0.031176738,0.052813753,-0.019274771,-0.018932495,-0.0661061,-0.04169878,0.040094182,-0.036105935,0.059695467,0.069703974,-0.022892708,-0.0015663046,-0.00017547456,-0.056965277,0.0075452602,-0.07757818,0.03990877,-0.02411581,0.005978837,-0.020489937,-0.022250418,0.114364214,-0.010724504,0.0028722521,0.05967774,0.06604756,-0.035051964,-0.015327329,0.009767485,0.08536789,0.052636135,-0.044485334,0.0056498605,0.023919966,0.031324163,0.050276935,0.07457498,-0.07421963,-0.01601693,-0.087665245,-1.7852514e-08,-0.024919244,0.053053405,-0.059671808,0.00877376,0.006588152,-0.077887535,0.05114123,0.037431158,-0.06163125,0.0026533895,-0.009459824,-0.056202646,-0.07174563,0.044232015,0.042099584,-0.019896522,-0.059487186,0.13199353,-0.065097414,0.0135463,-0.020209547,0.013014456,0.024678951,0.017196871,-0.07129306,-0.008399876,0.025913706,0.026610708,0.055853073,-0.038046505,-0.016068926,0.09533067,-0.010163901,0.012884813,0.018386692,-0.030570945,-0.092797354,0.06833103,0.046131313,-0.0055271676,-0.077245936,-0.035754573,-0.031915065,0.036477555,-0.055569287,0.008257152,0.020469312,-0.012441004,-0.06450444,-0.02453239,-0.061156165,-0.045585573,-0.031709455,0.038073555,0.062270094,0.050321467,0.027267763,-0.104441084,-0.03947401,0.073683016,-0.045828294,-0.06835452,-0.037865445,0.052559193} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:01.828038+00 2026-01-30 02:01:09.512549+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1491 google ChZDSUhNMG9nS0VJQ0FnSURVbHE2MlZREAE 1 t 1494 Go Karts Mar Menor unknown Great place. Staff are excellent. Fantastic track. great place. staff are excellent. fantastic track. 5 2020-02-01 01:52:39.833374+00 en v5.1 P1.01 {O1.02} V+ I3 CR-N {} {"P1.01": "Great place. Staff are excellent. Fantastic track."} {0.0047307247,-0.013398142,0.0016673284,0.0026089207,-0.06359202,0.06749345,-0.017664006,-0.05696406,-0.019873943,-0.035054713,-0.0033426255,0.05598056,-0.002997738,-0.022899952,-0.05441342,0.0005383791,0.071225464,-0.069971226,0.10748598,-0.04486612,-0.05471596,0.023724193,0.028864553,0.06525973,-0.11083541,0.04857729,-0.094636254,0.08987142,-0.009613022,-0.030824265,-0.040486254,0.024970293,-0.007626422,-0.030913118,-0.018708691,0.10840885,0.026939658,-0.06014334,0.029752487,0.03949085,-0.02870635,0.01956355,0.022349725,-0.031630132,-0.0036038219,0.053466063,0.008460433,-0.071438454,0.06002436,0.02782941,0.07418601,-0.061477043,0.06374695,-0.057665065,-0.08484169,0.044086296,0.015358779,-0.05713588,0.02548532,-0.06378502,0.07048814,-0.042789638,-0.08749824,-0.0029901601,0.0357181,-0.05835832,-0.09633333,0.08739,0.0421377,-0.09032035,0.05437423,-0.014814474,0.07653452,-0.0138667235,0.030136377,0.07285111,-0.037838876,-0.022951597,-0.009250842,-0.056490995,0.05753161,-0.08865092,0.055555776,-0.030950714,-0.021492233,-0.08860761,0.051524714,-0.011560272,-0.01054956,0.0075592534,0.053896252,0.13852236,-0.084691055,-0.028766582,-0.0030118264,0.023960173,-0.030800374,0.04717393,-0.0363793,0.0673605,0.029742274,0.09381683,0.03017912,0.0011453581,-0.06109779,-0.025975874,-0.03938099,0.091647856,-0.010809105,-0.07361263,0.073297225,0.032281943,-0.05721496,0.031824905,0.027768232,0.018447436,0.024863888,0.03804276,-0.054260872,-0.013851758,0.01869063,0.054761205,-0.02622204,0.019991523,-0.028650433,0.023415823,0.033525553,-5.5473228e-33,0.0016566536,0.046637293,0.050325416,-0.05044889,0.13418023,-0.022518441,-0.09806698,0.051409096,-0.0427163,0.041869495,0.032009844,-0.01773682,0.022080615,-0.087083824,-0.017409626,-0.081226066,0.00037512693,-0.03928497,-0.081919216,0.03730968,-0.06302903,0.02612857,-0.054233912,-0.02774312,0.05660751,-0.015243317,-0.011564932,0.003218093,0.082396194,0.028550334,-0.062295504,-0.0025214728,-0.00019987472,-0.0033249685,-0.011120877,0.025997521,-0.092674896,-0.047282185,0.012507035,-0.027816895,0.036739234,0.013231439,0.016380526,0.014919629,-0.047847055,0.07387068,0.028917782,0.037259597,0.13795333,0.027799193,-0.06557416,-0.05583762,-0.07339144,0.06561902,0.08645091,-0.030637091,0.027621679,0.065520525,0.062827,-0.05133639,0.10093928,0.12620534,-0.03914972,-0.03134063,0.01712728,-0.043987475,0.011529012,-0.06362237,0.13324083,-0.03216677,-0.059991483,-0.030086035,0.09881533,0.017938295,-0.0071269195,0.008163229,-0.10124756,0.002205386,0.002539761,0.016469406,-0.014145018,0.016287958,-0.016433284,0.031938445,0.07264719,-0.014385385,0.030247197,-0.106430456,-0.07341638,0.0138432635,-0.035272457,0.05595862,-0.00056020793,0.053226467,-0.061738133,3.4865633e-33,0.116987914,0.04653141,0.0692655,0.029732134,-0.011523223,0.08208919,-0.07491899,-0.0057435497,0.040031616,0.110951185,-0.08143828,0.048775807,-0.019842194,0.010079704,-0.09721219,-0.05875944,0.021419339,-0.020503087,-0.020904494,-0.123684056,-0.024479682,0.038802203,0.024367934,0.02920367,0.010846251,0.022584083,0.008648695,-0.016609237,-0.04233082,-0.036438905,-0.10120011,-0.020479778,-0.017967772,-0.040313832,0.027700493,0.06815445,-0.010569078,0.017457934,-0.04839057,0.01785614,-0.012258811,0.010393628,-0.017024808,0.035278473,-0.017756881,-0.017092464,0.02578328,0.084179424,-0.08658793,-0.016514158,-0.04089274,-0.018937798,-0.023383081,-0.07748572,-0.0040798835,0.004130514,0.04862889,-0.07503088,-0.008508929,-0.020213373,-0.07391761,0.06527819,-0.031083647,0.044713907,0.08024327,-0.018699272,-0.0026874326,-0.0057887025,-0.04353324,0.043488134,-0.0837655,0.011956203,0.02388514,0.019985456,-0.04758034,-0.024864104,0.08572466,-0.07449084,0.0006068921,0.06817321,0.019263111,0.0031792535,-0.027785914,0.008286667,0.057217628,0.07667428,0.0241178,0.00583347,-0.009307088,0.07389496,0.07539341,0.054362763,-0.038264062,-0.065719284,-0.0568409,-1.603009e-08,-0.015493813,0.09228201,0.026705885,-0.04976994,0.01242433,-0.07869903,0.09277255,0.013114127,-0.03644344,0.051804274,0.040370688,-0.04134075,-0.03302672,0.030516736,0.021447595,-0.0055983895,-0.00010789488,0.1116783,-0.09158334,-0.016572207,0.019619284,0.056743346,0.025860377,-0.039248567,0.0011905467,0.004077209,0.03642712,-0.0117777055,-0.03715739,-0.029146617,0.015001126,0.05729994,0.007373503,0.025812734,0.047956906,-0.02791901,-0.056275073,-0.005965525,0.004326536,-0.027015597,-0.0676284,-0.019329842,-0.007301094,0.012006652,0.015140233,0.0055464134,0.06861379,0.08342866,-0.053252388,-0.045805484,-0.10100646,-0.039099824,-0.04809695,0.031653557,-0.004093893,0.029001156,-0.027790818,-0.026275828,-0.068803236,0.054555044,-0.044024624,-0.0050244667,-0.02651174,0.0524711} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.271245+00 2026-01-30 02:01:09.53479+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1492 google ChZDSUhNMG9nS0VJQ0FnSUNJemRDMmZBEAE 1 t 1495 Go Karts Mar Menor unknown Great fun good track.well run nice little cafe bar great fun good track.well run nice little cafe bar 4 2019-02-01 01:52:39.833374+00 en v5.1 O1.02 {J2.01} V+ I2 CR-N {} {"O1.02": "Great fun good track.well run nice little cafe bar"} {-0.010752839,-0.0054868883,0.042776007,0.0024092877,-0.057062183,0.09619606,0.014395106,-0.03512339,-0.029889213,-0.055482242,-0.016468951,0.0036632465,-0.014916575,-0.08347386,-0.01605349,0.017011978,0.06313028,-0.037983768,0.0630887,0.020853678,-0.075116165,-0.023703774,0.0050727655,0.03172443,-0.16198038,0.11276267,-0.05195222,0.044506047,-0.00022877453,-0.00752349,-0.065158226,0.039588686,0.05155224,-0.01249911,-0.050657194,-0.06346477,0.1026683,-0.051176183,0.024811178,0.05480276,-0.021929735,0.00010924543,0.047626466,0.03088792,0.026531927,0.061951607,-0.035573546,-0.08425625,0.06370258,0.018269697,0.06491441,-0.014869223,0.014638042,-0.050108284,-0.029001653,0.042277243,-0.02260878,-0.026318027,0.083516784,-0.025041249,0.036313508,-0.044031203,-0.041118912,0.00078669394,0.054605775,-0.094136044,-0.07378029,0.073854074,0.06333634,-0.0006760445,0.01755701,0.04981179,0.0077429675,-0.031070216,-0.041521885,0.043170433,-0.05204589,0.016465968,-0.06741007,-0.033183485,0.008412973,-0.066003256,-0.030943764,-0.07191722,-0.018108869,-0.049249664,0.045404006,-0.05051598,0.008122642,-0.001722585,-0.007328485,0.08987426,-0.04090016,-0.029669363,0.023338739,-0.026145002,-0.037847348,0.012106212,-0.034038305,0.07404184,0.07697603,0.102612756,0.05501309,0.028317094,-0.015737042,-0.008059678,-0.032946873,0.12700526,0.067751534,-0.048070323,0.115548864,-0.0038620688,0.02108259,0.036250465,0.034965802,0.018702945,0.037184834,-0.009634344,-0.029383287,-0.01986577,-0.016633473,0.06216999,-0.03475295,0.03900332,-0.06635639,-0.03493257,0.0997909,-1.871243e-33,-0.017322537,0.003935953,0.008851717,-0.021117488,0.18378244,-0.0070818956,-0.104530565,-0.022747334,-0.089857586,0.06725888,-0.0004735756,-0.006177941,-0.04020408,-0.02176329,-0.004023335,-0.08777605,-0.05828724,-0.039352518,-0.007056283,0.02815667,-0.011843419,0.028925689,0.014178831,-0.019440822,0.08167312,0.016430898,0.03047317,-0.018769655,0.02272391,0.029985247,-0.036587562,-0.001301184,-0.016146928,0.035285495,-0.029166725,-0.07464586,-0.031282812,0.0016711281,-0.020914244,0.025834061,0.02269282,-0.025439726,-0.03894162,0.03778451,-0.08284015,0.028378304,0.029334074,0.100655995,0.051750567,-0.007632044,-0.0886418,-0.027104307,-0.056617264,0.02174074,0.043758888,-0.054061595,0.015104194,0.078190975,0.017545223,-0.05163494,0.10749151,0.115824156,-0.053977888,-0.056979287,-0.03091871,0.033392444,0.033752285,-0.011391976,0.08460389,-0.031429555,-0.00915373,-0.037442923,0.044765454,-0.030921977,0.09055907,0.02546452,-0.047999576,-0.037147637,-0.06025925,0.011787688,0.012346771,-0.029939499,0.006762546,-0.007942939,0.0007935343,0.021311441,0.07460158,-0.123717956,-0.07983983,-0.029495528,-0.08858852,0.056309048,-0.0049432334,0.06348997,0.0035139816,8.017266e-34,0.11751921,0.06228211,0.074952066,0.026083762,-0.03771573,0.027495816,-0.042260356,-0.02597648,-0.008458563,0.06877412,-0.039610617,-0.007541442,0.0082560675,0.032724258,-0.0538392,-0.009940248,0.08047237,0.034795456,-0.051423825,-0.06801018,-0.026422366,0.008231899,-0.06534743,0.032443937,-0.01379408,0.04104384,0.0218366,-0.00023801575,-0.0362526,-0.05622899,-0.09705041,0.011860458,0.0018277437,-0.109164275,-0.045375455,0.07795527,0.013738682,-0.039624054,-0.024321934,-0.030570602,-0.017526193,0.05245187,0.002716884,0.026471937,-0.0034428695,0.0056241495,0.02664067,0.08183679,-0.10166912,-0.0007550853,0.07530715,-0.05218588,-0.06895097,-0.036056116,-0.011557677,-0.05424443,0.08777181,-0.0045874445,-0.0735889,-0.045014415,-0.09264365,0.048309457,-0.03603745,0.026447022,0.10275603,-0.010373402,-0.021680312,-0.068090715,-0.037396666,0.01416915,-0.06596105,0.046357665,-0.04293726,0.014374092,-0.054213513,-0.029056748,0.06271106,-0.023773253,-0.008202381,0.071744114,0.005169651,-0.043778222,0.028386882,-0.019715535,0.021965975,0.00084102765,-0.0004654376,0.032021154,-0.019472783,0.1251052,0.09901421,0.09847451,-0.05239804,0.025961898,-0.058847122,-1.7626087e-08,-0.017597739,0.05131725,-0.05510665,0.017721655,0.040680017,-0.009851395,0.02592081,-0.06701066,-0.023385368,-0.020603929,0.06862956,-0.011370791,-0.07039898,0.14895546,-0.01782845,-0.043275595,0.01128393,0.10516402,-0.021921698,0.029060956,-0.009582196,0.021717973,0.03174892,0.040911872,0.0008470692,-0.07284119,0.031775925,0.04720288,0.04696445,-0.09165807,0.0148666715,0.084487766,-0.037566997,0.026640693,-0.0011375502,-0.002632865,-0.02738671,0.019895433,0.020211956,-0.008243325,-0.11640247,-0.061541896,-0.048087884,-0.030100524,-0.0676879,-0.043889616,-0.010736782,0.030124433,-0.06599578,0.02035766,-0.019064037,-0.037671242,0.015940147,0.03828323,0.1105885,0.0621088,-0.05264694,0.04467339,-0.017310414,0.02508154,-0.019791264,0.03359498,-0.05016859,-0.0102261305} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.282489+00 2026-01-30 02:01:09.538407+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1494 google ChdDSUhNMG9nS0VJQ0FnSURBcU9IUDN3RRAB 1 t 1497 Go Karts Mar Menor unknown Kids loved it. Fairly priced too. Great service kids loved it. fairly priced too. great service 4 2018-02-01 01:52:39.833374+00 en v5.1 V1.02 {P1.01} V+ I2 CR-N {} {"V1.02": "Kids loved it. Fairly priced too. Great service"} {-0.054697894,0.0803282,0.033319853,-0.016066654,-0.09274811,-0.00018498946,-0.0076251747,0.04405717,0.035106935,0.023947762,0.00900254,0.06725142,0.07879622,0.05370775,-0.012422692,-0.06185502,0.12151591,-0.11364662,0.040123206,-0.1497026,-0.09355427,0.01585973,0.060247682,0.034922585,8.774097e-05,0.07089032,-0.0297698,-0.0032633448,-0.061355975,-0.08296424,-0.013160875,0.051229935,-0.012927072,-0.014104966,-0.021432662,-2.910245e-05,0.11906227,-0.032005988,-0.07047241,0.061321326,-0.04258908,-0.011923041,-0.048292816,-0.041201398,-0.003566537,0.027795002,0.011563614,-0.043788653,0.10628726,0.06955799,0.021808246,-0.078488246,0.07243692,-0.06826433,-0.030402143,0.01641013,-0.047380224,-0.062930204,-0.0018410616,-0.01690953,-0.040636472,-0.018433321,-0.08138405,0.0009779397,0.02236241,-0.089870766,-0.05172094,-0.09077115,0.057879843,-0.09046089,-0.05163759,0.03398877,0.1340629,0.015178163,-0.03844707,0.056548193,0.057924528,-0.05673622,0.00059491285,-0.047544234,0.008947268,-0.05953735,-0.032572757,0.017160442,0.009926797,-0.07880661,0.06950056,-0.024205184,0.0049370746,-0.026816776,0.059452035,0.082564645,-0.02096522,-0.013230528,0.0028963357,-0.01250086,-0.039391305,-0.050939757,-0.06614302,0.011651067,0.0025350037,0.05992021,0.022119543,-0.027117854,-0.06847288,-0.068488844,0.0021930356,0.06033476,0.0022747081,-0.055886693,-0.04964414,-0.006279087,-0.020998081,0.011222682,-0.053934794,0.0019050344,0.06531862,-0.0663528,0.017927218,-0.0032393106,0.077322714,0.025296489,-0.0108643845,0.022644507,-0.10720052,-0.073058344,0.1008379,-3.3075267e-33,-0.1063003,0.05308656,0.01450677,-0.037803836,-0.012615703,0.02357885,0.043917567,0.021452231,-0.101164065,0.080748364,0.00055708986,0.022142885,-0.0075004464,0.0021380386,0.056678094,-0.049342703,-0.13092521,-0.02099841,0.0071182973,0.04817785,-0.12235933,0.050721165,0.008382925,0.02971182,0.042405833,0.031089297,-0.007660208,0.036422152,0.19457951,0.042083345,-0.011254873,-0.035300862,-0.038235907,-0.01654473,-0.016490988,0.035984926,-0.0062143644,-0.0849623,-0.048849687,0.04318231,0.01934743,-0.016026389,-0.067448996,0.053877655,0.0041074315,0.037927553,-0.016716711,0.045978,-0.002461394,0.025137201,-0.0066813543,0.027030727,-0.09822143,0.019252287,-0.0016408685,0.053518627,0.041839562,0.0685057,-0.0028680789,-0.010357621,0.04518996,-0.06269028,0.0025088945,-0.045105916,-0.028954946,0.048758306,0.06465669,0.045729484,0.0073724096,0.002440871,-0.010398206,0.011548306,0.0420906,-0.11504469,0.014745377,-0.010272246,-0.018448278,0.012121586,0.01570456,0.016459139,0.035401903,0.000948492,0.050674926,0.028090088,0.05250994,-0.04090236,-0.02798924,-0.09737669,-0.053774595,0.007613069,0.018021295,0.0075573106,0.028343877,0.07881839,0.045616087,2.3083948e-33,0.026554612,0.034536984,0.008798783,0.063153625,-0.01930385,-0.0128303915,-0.09415657,0.055608254,0.014970609,0.08031214,-0.07251771,0.0149571225,-0.0075500067,0.06791225,-0.037400503,0.014455211,0.023510218,0.011042483,0.059014533,-0.062386524,0.0066811596,0.10568683,-0.038082153,0.005076913,-0.0044576735,0.023935406,-0.09403543,0.026615417,0.019337477,0.04496115,0.011444764,-0.034860134,0.06246311,-0.019377135,-0.04737884,0.051356375,0.045011852,0.059940133,-0.0367456,-0.026131203,0.019718051,-0.053953823,-0.030852526,0.0009128636,-0.0027016315,-0.055478454,0.025060253,-0.017341167,-0.021315351,0.067837365,-0.040709663,0.015037552,-0.02541239,-0.073774695,-0.10020595,-0.030107828,0.06602262,0.0047651352,0.01706658,-4.6521905e-05,-0.023991952,0.0012644861,-0.078433536,0.028258434,0.06835466,-0.0038368062,0.07824721,-0.05333292,-0.07859106,0.01412706,-0.015465979,0.025968827,0.023772368,0.03878663,0.002441502,-0.035385698,0.035726424,0.04989096,0.01382753,0.09274079,0.053374127,-0.018988324,-0.008622419,-0.03445865,0.0125875715,-0.02898498,0.05418279,-0.06719007,-0.08829352,0.08878078,0.052156266,0.017132984,-0.007832974,-0.057739533,0.03860674,-1.8467508e-08,0.020137902,0.08284377,0.020760424,0.03232489,0.04612458,-0.04945698,0.081884585,0.09171401,0.0051974053,0.106808044,-0.04862687,-0.020833444,0.0074072895,0.032826565,0.03552414,0.00926503,0.10751582,0.045034498,-0.00040557294,0.029901441,0.054733634,0.054942194,0.056740984,-0.019079596,-0.052560285,0.020715471,-0.022288963,-0.022451276,0.0072437655,-0.045852657,-0.014869834,-0.031210799,0.026242988,0.021007579,-0.040796317,-0.05883196,-0.09546098,-0.01643898,0.00012737917,-0.013859914,0.026615893,0.021023031,-0.072881214,-0.06568264,0.098829255,0.07065002,-0.046132468,-0.033021692,0.021229269,0.11809989,-0.035841685,0.0026745128,-0.030646184,-0.038923457,0.06827728,-0.054954123,0.016426282,-0.04806555,-0.008024963,0.10979442,0.012139041,-0.0043405234,-0.061502207,0.08245} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.306553+00 2026-01-30 02:01:09.543388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1495 google Ci9DQUlRQUNvZENodHljRjlvT25Vd1VpMDNZVGxKUlMxclQyVldXVVExVkhaUVpsRRAB 1 t 1498 Go Karts Mar Menor unknown Fabulous experience fabulous experience 5 2025-11-01 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Fabulous experience"} {0.026862275,0.079382144,0.052804515,0.03792128,-0.03647493,-0.04541869,0.041547075,0.02861594,0.0065667806,-0.05889646,0.03985276,0.07660977,0.0878101,-0.011618509,-0.041543327,0.02737398,0.062138684,-0.012659976,-0.04450795,2.9774106e-05,0.03877793,-0.11166143,0.0052866926,-0.02423055,-0.047845915,0.06944968,0.018807244,0.0576418,0.066492304,-0.064553544,-0.026274456,0.062039364,-0.0066925324,0.0019585108,-0.0052040173,0.067256145,0.03837455,-0.035367843,0.043377493,-0.049899988,-0.0072721886,-0.054190572,0.0118823685,-0.051600482,0.032349475,0.00055477,0.08347292,-0.016704772,0.016777063,0.01608979,0.022064025,-0.039095566,-0.007761352,-0.025169898,-0.06408869,0.04990177,-0.05144859,-0.12380409,-0.056563593,-0.0011100047,0.008957761,0.09783813,-0.010907243,0.08711872,0.009106132,-0.035253916,-0.056741484,0.045599554,-0.009782844,0.0077522784,-0.09016156,0.02606757,-0.0329091,-0.020165794,0.032791287,0.04519609,-0.0021899878,-0.06298173,-0.029687783,0.005783293,0.028552879,-0.021030668,0.04486775,0.0031280152,-0.08469655,-0.0467711,0.03656813,-0.06808096,0.0045373975,0.03799859,-0.0011288596,-0.026220726,-0.07622556,-0.03487993,-0.016188433,-0.061899778,-0.03375558,-0.0521385,-0.053635556,0.17849804,-0.02258921,-0.002129162,-0.016878242,-0.014652017,-0.07011371,0.020560417,-0.038969867,0.051725097,-0.0051755775,0.0056448253,-0.017397795,-0.024202403,-0.039015733,0.015411155,-0.002514426,0.019438708,-0.041716978,-0.00017326862,0.050774537,-0.031209243,0.096723996,0.07470352,0.05963757,-0.02229817,0.0074960315,-0.043818656,0.09208232,-3.5124675e-33,0.06261903,-0.029824741,-0.013419493,0.0043423306,0.0755789,0.05855614,0.02593307,-0.020603212,-0.059394065,0.11313004,0.04870141,0.07749609,0.028368145,-0.08266147,0.013540359,-0.023466714,-0.069433704,0.01618019,0.011762975,-0.008568555,-0.015057763,0.061898794,0.039234918,0.08334845,-0.040142927,0.044910517,0.015145678,0.028289044,0.052072275,0.02249241,-0.062210523,0.027633533,-0.014633045,-0.058533266,0.00940491,0.06994858,0.020941263,-0.07706676,0.08098854,0.0387995,-0.014146845,-0.07606252,-0.053111736,-0.019230206,-0.05601379,0.09384239,0.020480648,0.05379534,-0.046271123,-0.015218465,-0.067197844,-0.011269534,-0.011693438,0.06439671,0.002125451,0.01784773,0.03083002,-0.06671763,0.0507451,0.0056579076,-0.00083358225,0.036168706,-0.041493833,-0.058963146,-0.013799384,-0.0407679,0.07645748,-0.027004238,-0.0187943,0.032207523,-0.062487524,0.011462931,0.093467474,-0.10972113,0.015967876,-0.06830437,-0.07066719,0.017328316,0.023624333,-0.025881652,0.010692468,0.0069246464,0.057272017,0.0232681,0.10357974,0.009738644,-0.019214582,-0.1029394,-0.01224631,-0.026992997,-0.0049257805,-0.05571278,0.09477477,-0.05035584,0.012611548,3.159532e-33,0.037808113,-0.022911508,0.019835675,0.08491971,0.09113897,-0.037876837,-0.07087721,0.04548114,-0.05668959,0.027713109,-0.051634137,0.04842415,0.11423857,0.009646049,-0.054689072,-0.008910426,0.042678066,0.05682347,0.008235484,0.020063803,0.034836356,0.001123277,0.034336146,-0.04314897,-0.06661732,0.03402822,0.010205232,-0.033608377,-0.049113404,-0.046949744,0.033053625,0.11139952,-0.039954394,-0.053837396,-0.009420417,0.11578079,0.03190067,0.10576601,-0.0312794,-0.059849642,0.055360354,-0.021935869,0.048315868,0.091224425,0.07628161,-0.002143335,-0.013940672,-0.08668017,0.044796027,-0.020662839,-0.13431321,0.038137227,-0.053624976,-0.0938515,-0.0097743515,-0.079186626,0.08119961,-0.06749794,0.024277177,-0.033381682,5.7136617e-06,0.001262857,-0.037305158,-0.0005741749,0.088599496,-0.012900312,-0.024057927,-0.03896975,-0.09869843,0.0691816,-0.10411621,-0.0013122464,-0.11934784,0.064602904,0.03687402,-0.016922653,-0.018001325,-0.039984606,-0.054880902,0.0915793,-0.031914208,0.0062756483,-0.011233798,0.060195267,0.0061698467,0.02124025,0.012528513,-8.764153e-05,-0.057127092,-0.012808903,-0.03330244,0.005266988,-0.08073967,-0.043517098,0.11600493,-1.3857079e-08,-0.089595534,0.01054386,-0.0002571439,-0.019974235,0.035803106,-0.059843637,0.03798272,-0.001418409,-0.060834765,-0.030000787,-0.071685664,-0.010631247,0.076071374,0.062999025,0.100148566,-0.00931828,0.03910391,0.102397285,-0.04960166,-0.002574705,-0.0064645642,0.049265824,0.06284265,-0.043711554,-0.051240355,0.057974502,-0.011847892,0.014231637,0.030148238,-0.051550854,-0.011864672,0.06979984,0.03656317,0.0104213385,-0.081590444,-0.003624557,0.023688218,0.009955994,0.00917497,-0.06416438,-0.034109205,-0.04177684,0.002954137,-0.043060333,-0.045698557,-0.0041317055,0.055038396,0.052500922,0.014968294,0.05003604,-0.048459083,0.021195361,0.00024180452,0.07492455,0.10111549,-0.007592359,-0.014835456,-0.02139745,-0.047854904,0.083290145,0.11687834,0.005250764,-0.046873827,-0.011951368} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.766173+00 2026-01-30 02:01:09.549729+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1497 google ChdDSUhNMG9nS0VJQ0FnSURidXJtcjlRRRAB 1 t 1500 Go Karts Mar Menor unknown Brilliant place, excellent for a family experience brilliant place, excellent for a family experience 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Brilliant place, excellent for a family experience"} {0.054020714,0.04314811,-0.021776415,0.0012436967,-0.07434371,0.006209827,0.012388931,-0.013575332,-0.0035100114,-0.051048957,0.055948693,0.018487988,0.04055948,0.0026574065,-0.03222489,-0.0139819365,0.09972217,-0.10390553,0.07288334,-0.09512778,0.007033071,0.01077328,0.12721676,-0.009024217,-0.046348445,0.066282295,-0.03702433,0.06819841,0.04137521,0.0057900236,0.041114047,0.0029267182,0.050990853,0.030423483,-0.0022141684,0.11059059,0.019809533,-0.05290939,0.04871924,0.015429051,0.004576164,0.031265955,0.047627676,-0.0772012,0.008189611,-0.0012066944,0.05125353,-0.03088912,0.11716492,-0.0061129034,0.060328897,-0.004529273,0.031272974,-0.061885633,-0.06323512,0.078347296,-0.089074306,-0.08802652,-0.04289169,-0.050100513,0.07891656,0.096766345,-0.06380212,0.043949373,0.01427239,-0.087104686,-0.058033966,0.046110537,0.040674355,-0.10272854,-0.04773114,0.0053308373,0.08444077,0.039977327,-0.032131236,-0.00814734,0.0018175929,-0.00850736,-0.037181262,0.013073833,0.016463175,-0.08483623,-0.0070458227,-0.012364198,-0.043363705,-0.06533576,0.039008345,-0.06356422,-0.010214821,0.0069901957,0.041780613,0.020392971,-0.038521737,-0.017998423,0.0006718567,0.01285285,-0.007127884,-0.0385216,-0.074227124,0.08392138,-0.010806771,0.061561197,-0.0057848454,0.012930016,-0.030733546,0.008403825,0.015398653,0.085267626,-0.021505,-0.010044022,-0.03575978,0.0041576866,0.02151031,0.036262687,-0.047641903,0.04149253,0.039277274,-0.005274819,0.011089172,-0.044143345,0.060205713,0.031754363,-0.0056319525,0.01860513,-0.01242281,-0.03786462,0.023662472,-4.0103944e-33,-0.019008236,0.08191355,0.048502382,0.008159429,0.0721721,0.037774976,-0.06540071,-0.014747978,-0.07902933,0.041075043,0.041266114,-0.03208706,0.013982256,-0.036711995,-0.0011176057,0.052836906,-0.0065526622,0.02398045,-0.05793506,0.041826185,-0.0990413,0.020941166,-0.0008961031,-0.012715952,-0.038947448,-0.039902054,0.035260916,0.054639246,0.07308291,0.030714277,-0.09429086,-0.0018209981,-0.059883118,-0.046062652,0.028899591,0.041836116,-0.00845451,-0.05874866,0.019460594,0.060621902,-0.027242584,-0.015763687,-0.009008424,0.09698551,0.020395523,0.09377535,0.035117194,-0.0019398584,0.07736487,0.043593638,-0.08371553,-0.088508874,-0.09851318,0.06011913,-0.011959274,0.05954538,0.00023809126,0.05719837,0.083856635,-0.0090733785,0.04976484,0.02422025,-0.066070415,-0.030443916,-0.019143295,-0.093120046,0.064508654,0.024103954,0.044704758,0.033303183,-0.015972784,0.019623827,0.08355732,-0.039152756,-0.0076131267,0.053302653,-0.100530684,0.06480198,-0.0052604238,0.04244172,0.060985196,0.07546893,0.012505118,0.04741148,0.08724278,-0.062083352,0.010647697,-0.100934945,-0.13052364,-0.016811287,-0.042809803,0.020752585,0.07035029,-0.0771829,-0.01690397,3.110237e-33,0.058259282,-0.057002775,0.03253622,0.058485426,-0.042440653,-0.03775191,-0.05574703,-0.013791176,-0.009389166,0.09293206,-0.073158145,0.030838165,0.11133508,0.005065807,-0.01901828,0.007963239,0.06311476,0.0075592548,-0.026295096,-0.041297242,0.0069799493,0.08046534,-0.0002372244,-0.0011433088,-0.018156968,0.016380936,-0.12673278,0.017682582,-0.11030643,-0.041541107,-0.08519302,0.0034688548,0.00011096754,0.05369177,0.032016203,0.08091134,0.003002116,-0.03784332,-0.05217399,0.043728612,0.07230499,-0.027654244,-0.06464331,0.071361,0.013483698,0.012149389,-0.024680443,0.008089405,0.046156034,0.0051498795,-0.030621415,0.049644466,-0.054487348,-0.021298172,0.008298622,-0.044547986,0.04719352,-0.02268722,0.008026076,-0.058719855,-0.0857981,0.07434461,-0.080326736,0.09998486,0.06262904,-0.021180969,-0.048105497,0.011522112,-0.035471793,0.04030863,-0.07753261,-0.049324796,-0.039574575,0.014801878,-0.022954466,0.019550346,0.12791523,-0.024378296,-0.007071723,0.07200719,-0.003358881,-0.024588471,-0.042122807,-0.049636655,0.03449094,-0.03886574,-0.017460288,-0.033862084,-0.011310387,0.029020112,0.0041075465,0.045231435,-0.06376631,-0.05436061,-0.00026570767,-1.6499904e-08,0.028013293,0.01822378,-0.036472797,-0.0010441896,-0.05977969,-0.12593774,0.08557438,0.023299687,-0.053386,0.038766213,-0.066535905,-0.028892705,-0.02597148,-0.0064613926,-0.00036963483,0.005210265,0.06452197,0.085017495,-0.048912458,0.023403807,0.07792045,0.08016232,0.0009066697,0.03897646,-0.07877943,0.0006826261,0.0514311,-0.018659543,-0.018458676,-0.07746211,0.011919876,0.069986925,-0.02572531,0.021370625,-0.024976345,-0.005503736,-0.04662811,-0.03120328,0.021069454,-0.06498502,-0.055172335,-0.080987975,-0.021870308,-0.049589023,-0.009543524,0.028215654,0.07866212,0.07598571,-0.034789983,0.024653664,-0.10615829,0.021449517,-0.059797768,-0.015628966,-0.008367934,-0.016579226,-0.015968991,-0.070976116,-0.06990306,0.12862857,0.07808258,0.063845545,-0.008054949,-0.0032322758} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.793254+00 2026-01-30 02:01:09.558712+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1500 google ChdDSUhNMG9nS0VJQ0FnSUNValptNmp3RRAB 1 t 1503 Go Karts Mar Menor unknown Great fun track and good for smaller kids with them having the dual karts. great fun track and good for smaller kids with them having the dual karts. 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.02 {A3.02} V+ I3 CR-N {} {"O1.02": "Great fun track and good for smaller kids with them having the dual karts."} {-0.051894628,0.027861495,0.043138545,0.05145426,-0.06317418,0.05886017,-0.005667222,0.004177788,0.011512181,-0.0013913895,-0.0005079742,0.06708271,-0.018972863,-0.010707595,-0.008248786,-0.018485554,0.073116206,0.016627694,0.03939528,-0.09802239,-0.066511825,-0.07417901,0.028244529,0.06512776,-0.11827286,0.051557753,-0.100213036,0.05214838,0.0021708158,-0.0272488,-0.056583073,0.03329113,0.004355259,-0.013226944,-0.076743335,-0.062614135,0.060883462,0.033604585,-0.053431865,-0.002997402,-0.012640266,-0.008879527,0.010273298,0.000748079,-0.025032833,0.03681721,-0.057877466,-0.07837362,0.033230424,0.062209945,0.124510415,-0.07726337,0.061400905,-0.022842702,0.02278585,0.011351131,-0.07765067,-0.022214362,0.07930264,-0.025615338,0.06548332,-0.0064891707,-0.080130406,0.001166661,-0.024547983,-0.1268522,-0.08245948,0.050989658,-0.008656721,0.013231579,0.035024155,0.0025441037,0.0459972,0.036767438,0.04108373,0.027910383,-0.06365058,0.006760269,-0.08766744,0.029293235,0.04939625,-0.022074454,0.004880091,-0.15830687,0.03213855,-0.0627675,0.05118544,-0.01841591,-0.001542867,-0.019614046,-0.030147545,0.06876031,0.015442622,-0.021747606,-6.400335e-05,-0.03133129,-0.026354965,0.048844375,0.016437935,0.017742384,0.095017806,0.053327125,0.1006954,0.057239093,0.01140669,-0.04983213,-0.018369453,0.030147154,0.10319967,-0.022800773,0.025966927,0.009156275,0.028359156,0.048637863,-0.045317814,-0.018193454,-0.0089396695,0.09688829,0.016976826,-0.0029549755,0.00072512636,-0.023009712,0.019104918,0.016223371,0.024223616,-0.064959764,-0.0011683328,-7.646818e-34,-0.07759459,0.030739032,0.01713263,-0.08543629,0.07879051,-0.094226204,-0.046742007,-0.14044146,-0.11767375,0.08475731,-0.050592486,0.016293827,-0.0057420623,0.013551193,0.09137568,-0.05035251,-0.12257372,-0.00439918,-0.059825025,0.061046008,-0.034196094,0.052999172,0.033016626,0.027706249,0.07425013,0.023697257,0.06319556,-0.03542118,0.030560793,0.020824641,-0.09614878,-0.014192682,-0.05914089,0.02605603,-0.04405352,0.00016591906,-0.039618287,-0.03485712,-0.032179005,0.0279645,0.057154354,-0.076941796,-0.0025831314,0.015858836,-0.060653605,0.05580205,0.025890661,0.064886026,0.032398153,-0.021681868,-0.0509842,-0.047631335,-0.09792185,-0.06518833,0.037723284,0.055582695,0.067482665,0.0028736608,-0.029856341,-0.020332145,0.04464632,-0.034612183,0.0028585747,-0.08327701,-0.08685207,0.048209343,0.046129737,-0.017544102,0.04774124,0.03935047,-0.03461088,-0.0013831753,0.033780064,-0.10852813,0.095398076,-0.008538795,-0.02295938,-0.034037672,-0.029473038,0.052111737,-0.058124404,-0.004004677,0.012734833,-0.009942917,0.012658263,-0.04827487,-0.06251553,-0.037632205,-0.013872819,-0.0022123922,-0.059325185,0.021295857,-0.043206695,0.08901335,-0.007540397,-7.76469e-34,0.03884864,0.091589995,0.06500071,0.058130167,0.014489402,0.048339278,0.014656172,0.009806371,0.059733856,0.09236288,0.014386651,0.031621438,-0.023794528,0.03409254,0.006712034,-0.038140126,0.084126815,0.04580236,0.073206455,-0.11995168,0.041069128,-0.0006415746,-0.053183265,-0.024483293,0.014169819,0.0024346288,-0.040074326,-0.022547334,-0.076806866,0.013724503,-0.019792212,-0.027265286,0.04002902,-0.04413053,-0.034219075,0.0015874077,-0.018315123,0.050240554,-0.08932459,-0.010376624,-0.003216114,0.028423315,-0.0028509307,0.031481296,-0.029096762,0.0326092,0.086303435,0.09989332,-0.024840616,-0.015503835,0.036457077,0.0058376,-0.04182638,-0.035595402,-0.069969855,-0.03330364,0.030414464,-0.0069601494,-0.027396983,-0.013930995,-0.035008483,0.020711284,-0.039751865,0.03143757,0.02401711,0.010990503,-0.052032404,-0.08511108,-0.094071776,0.03419849,-0.0685733,0.079031125,-0.044949234,-0.012274985,-0.040216457,-0.03282008,0.019568747,0.04606493,0.037411332,0.0917521,0.016309232,-0.060191512,-0.003264297,0.016731795,0.0035696249,0.060202446,-0.06440145,0.026153002,0.015912972,0.04488518,0.12731041,0.089519955,-0.016751928,0.041295573,-0.058641326,-2.0046716e-08,0.0037687456,0.08106762,-0.08780899,-0.027854372,-0.0020934127,-0.0126490565,0.009941728,0.0054925005,-0.050196104,0.07375185,-0.0034173506,0.009015021,0.0077200676,0.044789985,0.01660979,-0.007698421,0.017613208,0.10341542,-0.0024103904,0.06520178,0.013795949,0.03369828,0.020786561,0.059770748,-0.064405076,-0.06770395,0.052341226,0.07019603,0.055930965,-0.06488109,0.018289896,0.060745332,-0.023686416,0.049297363,-0.011113381,-0.055903435,-0.08103997,0.12682614,0.04398013,0.009566213,-0.045112345,-0.021356815,-0.058147836,-0.015282049,-0.057421383,0.01782343,-0.034607902,-0.06554986,-0.047226176,0.038639374,-0.07146173,-0.063937195,-0.05446502,0.06507283,0.08866656,0.05311358,-0.04492403,-0.022138558,-0.048532784,0.010903421,-0.017666223,-0.043338533,0.023264444,0.073142245} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.828764+00 2026-01-30 02:01:09.573117+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1502 google ChZDSUhNMG9nS0VJQ0FnSUNSaTY2Vk9REAE 1 t 1505 Go Karts Mar Menor unknown Great track great track 5 2026-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Great track"} {-0.086154394,0.03564722,-0.013139417,0.0310088,-0.01771157,0.08404761,0.016502814,-0.035279233,-0.014690911,-0.08942027,-0.022785272,0.02567334,-0.03531736,-0.06790451,-0.047250908,0.059749436,-0.016273031,-0.009926346,-0.005435899,-0.034452762,-0.06569952,0.014029728,0.02600597,0.06983629,-0.15891348,0.10199211,-0.02814328,0.0055475184,-0.019714173,-0.04969955,-0.06495183,0.018092318,0.038406715,0.005623474,-0.01562583,-0.014307602,-0.016272884,-0.004412401,0.027656151,0.02311256,-0.04391047,-0.030276917,0.035440404,0.008432558,0.007667486,0.08879797,-0.008584251,-0.07195004,0.056601364,0.06415458,0.013290672,-0.0058751134,0.015835414,-0.029854579,-0.035687424,0.0692744,0.037039265,-0.053386543,6.186938e-05,-0.11207009,0.02322647,-0.01795774,-0.060493313,-0.048151206,0.036660843,0.0046895053,-0.027864385,0.066741034,-0.030716369,0.049719762,0.039749723,0.052163027,0.016851323,-0.043716006,0.013670977,0.093247496,-0.0293801,0.040646784,-0.030692855,-0.028695818,0.051030234,-0.049344834,-0.009157227,-0.08941794,0.013909095,-0.059572283,0.06757315,0.0070237494,0.0026351183,-0.008677529,-0.0062682345,0.05482591,-0.051802345,-0.025037436,0.0067838896,0.0034030753,0.008435214,-0.0060662366,0.0016780093,0.12840554,0.08103513,0.023197295,-0.01846598,0.11108226,-0.014425394,-0.008048528,-0.0031844652,0.07360956,0.04784984,-0.051085804,0.12539409,-0.004258455,0.0018856708,0.10036138,0.047043584,0.052922525,0.004710345,0.04821808,-0.048909985,-0.032091685,-0.010612352,0.0048873387,-0.03262749,0.01424023,-0.014916554,-0.053050227,0.079098254,-4.435906e-33,-0.030243516,-0.013620995,0.029434329,-0.04497217,0.09123448,0.013464281,-0.080135666,-0.027630316,-0.07366615,0.07917617,-0.033619415,0.001764404,-0.013551745,-0.04680048,0.005679716,-0.0927725,-0.06218299,0.0040426156,-0.0026328887,0.08622212,-0.04312441,0.045119386,-0.016186357,-0.025221646,0.041366834,0.001300476,0.026474398,-0.037700944,0.038725223,0.028283836,-0.02716162,-0.025797548,-0.01217073,0.07897038,0.0032572316,-0.034883928,-0.07350306,0.0008180004,0.027409796,-0.00032616605,0.099228874,-0.0059853336,0.0036993425,-0.020128144,-0.04873173,0.066979684,0.00026528328,0.10348838,0.105063245,0.00924145,-0.040856823,-0.033992946,-0.11240042,-0.013648947,0.02816562,-0.032303978,0.043218117,0.04869049,-0.008637813,-0.00808488,0.07432587,0.06414772,-0.068824165,-0.07880087,-0.017940087,0.05740155,0.015696181,-0.013430613,0.021612823,0.039637115,-0.09642275,-0.06704838,0.07565525,-0.06715202,0.08495294,-0.032816567,-0.005937066,0.0032463768,-0.05163637,-0.02186081,-0.06584736,-0.029532382,0.017392198,-0.024378734,0.058237307,0.0013671436,-0.031050025,-0.058148794,-0.023932325,-0.03690894,-0.062171865,0.02801246,-0.004001325,0.030349584,-0.06488686,4.217017e-33,0.07769006,0.12229738,0.11567011,0.08499718,0.006177409,0.06093663,-0.029136702,0.043439995,0.029241815,0.071533285,-0.0024633955,-0.031368498,0.0132122915,0.04856406,-0.048941173,-0.04353725,0.088721514,0.024164338,0.026616395,-0.11753587,-0.043883074,-0.06182503,0.012097963,-0.029645344,-0.016931193,0.01123647,0.035608266,0.011245695,0.043473594,-0.036009796,-0.013442609,0.073160015,-0.07078186,-0.077099845,-0.045193423,0.10305737,-0.011000832,0.047109477,-0.05531553,-0.027370019,0.0028431593,0.09784691,0.014436522,0.07665433,-0.010379855,0.006020585,0.012231201,0.15513529,-0.07008096,0.039004903,-0.04059543,-0.04738439,-0.034767598,-0.04065776,-0.047116656,-0.017431406,0.02985176,-0.01749745,-0.03679599,-0.031056395,-0.077029236,0.10620432,-0.042703178,0.00097588997,0.07208095,-0.0074750404,-0.008932695,-0.06344486,-0.035247587,0.07338236,-0.13724081,0.042420227,-0.099776156,0.021620562,-0.028629694,-0.06603726,-0.020372376,0.024718009,0.018455315,0.03680716,-1.7345259e-05,-0.031467035,-0.019490723,0.014159577,0.045733344,0.067073636,-0.03330247,0.004520078,-0.012269056,0.0666478,0.023484353,0.075000696,-0.04857014,0.0013369994,-0.09156455,-1.2449253e-08,-0.013622267,0.116566926,-0.04927332,-0.07029193,0.07093429,0.019244423,0.05537585,-0.015713029,-0.042056073,0.012963975,0.049515396,-0.0037515257,-0.031049887,0.1159995,-0.023756184,-0.06771555,-0.079650775,0.10323848,-0.029668976,0.056243345,-0.010015994,-0.04144678,0.048643366,0.05808777,0.033791102,-0.027536042,-0.009717385,0.0819429,0.0085180495,-0.07501902,0.050803706,0.12033065,0.008206221,0.0009089226,0.02349811,0.010498814,-0.02031172,0.059077628,0.0858883,-0.09625217,-0.031770155,0.017063025,0.0006250803,-0.03846294,-0.041966815,-0.058527105,0.034871496,-0.0045616445,-0.037651617,-0.019341586,0.017118199,-0.070860006,0.0017895581,0.04771312,0.07779424,0.04789313,-0.013479369,-0.004895651,-0.042108633,0.01966478,0.027683055,-0.011733846,0.031179005,0.040435538} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.851045+00 2026-01-30 02:01:09.579229+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1503 google ChZDSUhNMG9nS0VJQ0FnSUN1bGZIYktREAE 1 t 1506 Go Karts Mar Menor unknown Good course and all the carts in good order. Friendly staff good course and all the carts in good order. friendly staff 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {O1.03,P1.01} V+ I2 CR-N {} {"P1.01": "Good course and all the carts in good order. Friendly staff"} {0.0016268601,0.010441097,0.0017205202,-0.017246453,-0.050628897,-0.020949582,-0.0487423,-0.045480426,-0.11323182,0.045538317,0.027384922,0.054943085,-0.04932637,0.020542009,-0.037614636,-0.042900685,0.04238299,-0.05388093,-0.0041445233,-0.020238072,-0.058438264,-0.020851724,0.01923849,0.009870767,-0.10590721,-0.0020594753,-0.0039858464,0.06812502,0.012097169,-0.09910368,-0.07258396,0.027411781,0.08139667,0.016126396,-0.015988907,0.053710554,0.09477475,-0.10927301,0.07513492,-0.017921768,-0.00042069703,-0.04901759,-0.05730645,0.07063712,-0.008022177,0.0255016,-0.017451528,-0.03863952,0.061884545,0.059608504,0.075185336,-0.042429004,0.023502748,-0.0041076425,-0.009459214,0.015438888,-0.010486243,-0.045278054,0.0059125787,-0.023555258,0.02873273,-0.033459775,-0.071250945,0.009293015,-0.010297423,-0.084622435,-0.09533636,0.02103368,-0.0006199174,-0.018166063,0.004155507,-0.028418388,0.0811634,-0.020629846,0.005384214,0.023691798,0.0030888792,-0.056131084,0.0024844848,-0.014006787,-0.07899411,-0.020679338,-0.0062168073,0.038854644,-0.0651382,-0.10236071,0.032325044,0.00077174325,-0.012840555,0.031626638,0.0034465448,0.032220405,0.0058992626,-0.011311999,-0.025455238,0.03548125,0.031464983,0.039354485,-0.032287464,0.0837203,0.01588321,0.119884335,0.032065734,-0.030549124,-0.12098764,0.03760726,-0.06271448,-0.019043623,0.013258455,-0.043720633,-0.026120132,0.040387154,-0.029519368,-0.0002875172,-0.069138624,0.057586372,-0.030271078,-0.03134316,-0.06020488,-0.01798344,0.037732203,0.03783823,0.01945468,0.0044382694,-0.043123398,-0.00016959658,0.06784147,-3.886103e-33,-0.010870749,0.07811052,0.011350549,0.01208454,0.07319859,0.054172322,-0.03070503,0.034600753,-0.059635006,0.026960393,0.0696532,0.043625515,0.017347472,-0.04358996,-0.06274891,-0.0479799,0.014486505,0.045064263,-0.038394798,-0.036060315,-0.07245754,-0.06848795,-0.03707051,0.0013008649,0.040444475,0.082295254,0.04917961,0.027165007,0.109688155,0.043946262,0.033125218,-0.019144636,-0.061939217,0.04874182,0.029802708,0.06417362,-0.07378059,-0.022261309,0.025429001,-0.066809215,-0.019406293,0.025821183,0.03185214,-0.019423813,-0.07401887,0.026951259,0.066993356,-0.013830653,0.02984809,0.047299564,-0.10698976,-0.020855648,0.0014192013,0.09297722,0.03135654,-0.09994882,0.05945179,0.03395325,-0.0687649,-0.055268537,0.087806,0.11636116,-0.017624184,0.015249026,0.021460433,-0.070432216,-0.049873494,-0.03962456,0.15644276,-0.07802425,-0.048332777,0.07538265,-0.016840491,0.018950185,-0.01434865,0.14507027,-0.0077475808,0.016914718,0.020874897,-0.014928833,-0.036505613,-0.0025411649,-0.018827707,0.02604202,0.007027656,-0.019946389,0.010646244,-0.05487297,0.019074133,0.06264639,-0.10965274,0.037863065,0.059589323,0.061757345,-0.006751092,2.1022398e-33,0.09270662,0.11660599,0.021964142,0.06574028,0.042124618,0.0023000077,-0.020137366,-0.026967505,0.034480996,0.07536055,-0.08643684,0.03586117,0.017848467,0.032197583,0.03710191,-0.018704396,0.07776254,-0.016731294,0.009663805,-0.09119743,-0.023513703,0.09766001,-0.051193856,0.04495437,0.019292975,0.07427145,-0.03386666,-0.022586288,-0.09764125,0.06461082,-0.004237956,-0.09983982,-0.008986065,0.056679454,-0.061741557,0.001125537,0.029536512,0.07685621,-0.00885013,0.07437475,0.04012729,-0.037766144,-0.04008566,0.024061209,-0.052834533,-0.107867055,0.058491763,-0.029191867,-0.01855212,0.025955308,-0.047436334,0.036923185,-0.0984797,-0.09502713,0.02843049,0.01857198,0.034978,-0.018499674,-0.012745619,-0.08210962,-0.04699737,0.084983036,0.0019334479,0.050000343,0.0078235,-0.09125277,-0.006286526,-0.00014044401,0.008095194,-0.041068625,-0.040028345,0.034564693,0.007589131,0.040315885,0.013228664,-0.027606962,0.10188513,-0.060349114,0.037511226,0.028233398,-0.046541035,-0.05620843,-0.003042916,0.10247284,0.040728606,-0.0005063773,0.054340817,-0.041876156,0.046612702,0.028559485,0.014694464,0.07823481,0.020343138,-0.049178757,0.0026232481,-1.8916218e-08,0.03308094,-0.027098991,0.016070146,0.05541465,-0.0023851518,-0.092349075,-0.023268562,0.09672554,-0.07903772,0.100021325,0.109475546,0.014879193,-0.0039609913,-0.026226763,0.05651801,0.023467887,0.013122567,0.033875883,-0.13516714,-0.02921772,-0.05447921,0.008259022,0.038341418,0.05594548,-0.051261906,-0.039225888,0.0529211,-0.027961206,-0.0280425,0.06484252,-0.012301452,0.077228345,-0.007839961,-0.02051104,0.054826304,-0.024019504,-0.11171486,0.00011517219,0.022862192,0.010292211,-0.072376624,-0.022388278,-0.07079629,0.022552183,0.014597436,-0.02019987,-0.07036255,0.011793686,-0.034359388,-0.075473376,-0.08425964,-0.009376139,0.05935876,0.04414265,0.042071745,0.04264374,-0.016194265,-0.038455658,0.013298378,0.02435246,-0.009644029,-0.03670704,0.0132010495,-0.042164207} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:02.864867+00 2026-01-30 02:01:09.582754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1504 google ChZDSUhNMG9nS0VJQ0FnSURwcl9fX0J3EAE 1 t 1507 Go Karts Mar Menor unknown Fun but very hard for us old people 😂 fun but very hard for us old people 😂 4 2024-01-31 01:52:39.833374+00 en v5.1 O4.04 {} V± I2 CR-N {} {"O4.04": "Fun but very hard for us old people 😂"} {0.009704154,0.046078768,0.0017978151,-0.009025662,-0.081093825,0.03156868,0.07773471,-0.060659863,-0.09714413,0.066111855,0.016389469,-0.014071041,0.028326986,0.054185975,-0.013801942,-0.06397971,-0.00020129247,-0.028896848,0.016730946,0.009809548,-0.057998344,0.0022387975,0.003959526,-0.011362564,-0.035199266,0.020433424,-0.1184171,-0.024589835,0.10377981,0.022937177,-0.006367193,0.05626454,0.014108643,0.0034221709,-0.06213751,0.0051729647,0.07709854,-0.0013943039,-0.056456357,0.058911145,0.0034736528,-0.05264551,0.030125262,-0.03372559,0.016416183,0.05727612,0.012996843,-0.029255165,0.07731526,0.049417183,0.04972646,-0.0013631908,0.00974129,0.012229686,-0.016073713,0.015053137,-0.028247675,-0.023559922,0.01320815,-0.03783743,-0.006866183,-0.03122498,0.04934528,0.034231804,0.054156236,-0.1629403,0.04604293,-0.044619095,0.041921984,-0.05819084,-0.10017452,0.0013062833,-0.06704925,0.025085779,0.032164905,-0.04842649,-0.014567016,-0.09976728,-0.060636725,-0.023859337,0.07847461,-0.0536936,0.016589403,0.053394254,-0.02990916,-0.050031733,-0.036118135,0.026494633,-0.008024376,-0.04821736,0.017687542,0.07373536,-0.008178706,0.062473733,0.04499631,-0.0339608,0.030313676,0.022949755,-0.080681786,0.06843084,-0.078815095,0.11352457,0.05515702,0.037308253,-0.057466004,0.04091317,-0.0013810416,0.045653373,-0.016640496,0.024712263,-0.038667224,-0.052849356,0.014168857,0.025627969,-0.03231696,-0.03306818,5.6233243e-05,-0.050905805,-0.08596366,0.004540117,0.04310428,0.07985691,0.005113408,0.065080255,0.0038811716,-0.009704358,0.09981129,-3.563497e-33,0.08006512,-0.010492322,-0.073863424,0.06713216,-0.037097674,0.01943486,-0.046595544,-0.015331873,-0.100719035,0.04573601,0.0721422,0.0069199316,-0.037046894,-0.033317316,0.09062824,0.002988647,-0.13051845,-0.050748114,-0.010508486,0.029851042,-0.04076204,0.0129329,0.010625692,0.025184544,-0.0026455908,0.03592297,0.031861845,-0.096745476,0.12514812,-0.02670674,-0.060094804,-0.042878423,-0.07012299,-0.0016453989,-0.0089825215,-0.016041996,0.031122342,-0.071223415,-0.06388042,0.059901357,-0.04718958,0.051715337,0.0048204446,-0.010991029,-0.002423285,0.040844824,0.044130426,-0.021118576,-0.041589085,-0.025596235,-0.08240773,-0.0027863604,-0.06637764,0.014060253,-0.0016810872,0.022674998,0.0041257855,-0.028864754,-0.038602147,-0.011819055,0.107491165,0.049290344,0.019743463,0.040439017,-0.04941046,-0.010318447,-0.014697403,-0.010052346,0.037145022,-0.024691613,0.007881415,-0.052765265,-0.0053779725,-0.114990115,0.07402298,0.053030774,0.09901805,-0.1166745,-0.0065965946,-0.08069768,0.100031376,-0.06796628,-0.0763563,0.016015725,0.076909885,-0.0104264775,-0.040968515,-0.1732947,-0.016317826,0.044328067,-0.07482506,-0.06424757,0.074987546,-0.000929593,0.058522284,7.748559e-34,-0.049638566,0.026087034,-0.053813,0.07409574,0.021470409,-0.063069545,-0.025611017,0.05505308,0.0961824,0.014646832,-0.026367852,-0.04206111,0.011630346,0.0777741,0.042359598,-0.06857427,0.05895643,0.10021679,-0.021006078,0.017536907,-0.02624683,0.09105242,-0.113558374,0.039099723,-0.045141913,0.021808006,0.0052579036,-0.05728356,-0.048854645,0.018276975,-0.051945865,0.0077284016,-0.060847107,-0.014701667,-0.072312005,0.0403471,0.003724757,0.0058018668,-0.044031337,-0.09629949,-0.0432528,-0.003350669,-0.0077799624,-0.008852172,-0.0040314216,0.04247924,-0.015370237,-0.0012867446,-0.106240176,0.009856592,0.02516179,-0.021221291,-0.002547816,-0.077083096,-0.013990789,-0.04283293,0.030447965,-0.0063095796,0.0074210027,-0.0075154365,-0.025573596,0.04083434,-0.05746581,0.08222692,-0.019826109,-0.029385516,-0.071998775,-0.027059631,-0.12881744,0.072657615,0.0069374773,0.06098162,-0.074420325,0.042261545,0.055110976,-0.04714931,0.040954586,0.03292082,0.046215072,-0.0015019081,0.0057605435,0.01655267,-0.018780394,-0.028343333,-0.06444823,0.018478038,0.0493443,0.06073808,-0.056849685,0.031816643,0.03935744,0.006606594,0.059806757,0.015745914,0.0027464845,-2.0125375e-08,0.047920216,0.03586224,-0.05037653,-0.04784936,-0.0019659386,0.0036072072,0.0022421512,0.023114432,0.04894693,-0.024937088,0.051621575,0.061238676,0.052432697,0.06884766,0.06204032,0.07608279,0.074930765,0.098424286,-0.036258772,0.017120555,0.035457585,0.03078789,-0.032093585,0.013581018,-0.12192181,-0.025161939,0.05850996,0.03515813,0.020327684,-0.02264997,0.0067191813,0.04514448,-0.058889605,0.091034986,-0.034372315,-0.045677762,0.015319126,-0.025322814,-0.080253765,-0.027426545,-0.038668513,-0.04814426,0.0140080955,0.00048779932,-0.054437395,0.03265165,-0.012711521,-0.058349714,-0.029257424,0.014200677,0.056235798,0.03158027,0.0018534936,0.06612008,0.083925866,0.081114896,0.01776898,0.033819314,-0.030830113,0.0043759993,0.10753744,0.044847324,-0.063540004,0.03738266} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:03.159451+00 2026-01-30 02:01:09.586449+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1456 google ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE 1 t 1459 Go Karts Mar Menor unknown Very enjoyable racing today. Great track and great facilities with very nice guys. Definitely recommend very enjoyable racing today. great track and great facilities with very nice guys. definitely recommend 5 2023-01-31 01:52:39.833374+00 en v5.1 O2.03 {E1.03,P1.01} V+ I3 CR-N {} {"O2.03": "Very enjoyable racing today. Great track and great facilities with very nice guys.", "V4.03": "Definitely recommend"} {-0.041914504,0.052752025,0.01983347,0.012685237,-0.10454424,0.06385488,-0.02373303,-0.04150299,-0.10343943,-0.04027566,-0.054891396,0.0045591025,-0.058357168,0.01975908,-0.045422737,0.023876142,0.08667201,-0.04188418,0.032690793,-0.030343026,-0.07084683,-0.039446495,-0.0003666515,0.07078181,-0.11148316,0.04781847,-0.08705724,0.09789124,-0.0053818785,-0.03002592,-0.04717844,0.043833975,0.02128011,-0.04428392,-0.0045689004,-0.0033311374,0.017219525,-0.10059295,-0.053501524,0.035655867,-0.016777325,-0.025232498,0.043332122,0.02592299,0.058395922,0.0637289,0.016036319,-0.06847275,0.06853765,0.012784,0.046759754,-0.034064088,0.086123854,-0.09100806,-0.07004241,0.056816675,-0.046847768,-0.05774857,-0.0067527387,-0.12794377,0.06009771,-0.016246917,-0.053073395,-0.0024796666,-0.03422505,-0.071122065,-0.084964454,0.022530157,0.07365754,-0.013277004,0.028444914,0.01724236,0.0467833,-0.034207236,-0.0113567505,0.048461877,-0.03708537,-0.035388622,-0.052169748,-0.06318798,0.06165532,-0.07494441,0.02048255,-0.05679294,0.009647005,-0.09925912,0.06541319,0.01177061,0.014335945,-0.009944274,0.023089109,0.1140876,-0.040512264,-0.03982681,0.028468588,0.06940557,-0.03903129,0.044361822,0.0110483775,0.034466863,0.08020429,0.09931193,-0.023967864,0.044983484,-0.059809178,0.044275027,-0.043937553,0.12114208,0.034726992,-0.044854213,0.08763384,0.020575412,0.007703272,-0.02438639,0.013246956,0.082318306,-0.038498554,0.05959504,0.007617401,0.061652627,-0.05260759,-0.0057607475,-0.021129144,0.024470925,0.01950588,-0.062497746,0.09051601,-1.1022125e-33,-0.025197353,-0.02413777,0.0001227415,-0.02348717,0.021357771,0.016593598,-0.04529445,-0.063712336,-0.15989262,-0.016981777,-0.04855194,0.042100824,-0.015471657,-0.059233323,0.02767842,-0.06528168,-0.06558658,-0.0076223165,-0.087710835,0.052815776,-0.005083123,0.0605445,-0.057227243,0.0063307523,0.025291037,0.0029250383,0.008036268,-0.058090772,0.07511674,0.04759211,-0.09116622,-0.01556588,-0.10139177,0.005232671,0.044300724,0.051544376,-0.08716228,-0.019356152,-0.011225412,0.03982091,0.080389164,-0.0065226653,-0.052379597,-0.028503468,-0.07583121,0.06383854,0.0140098585,0.101065375,0.06396806,-0.031426907,-0.10004061,-0.03683532,-0.028829822,-0.0071609113,0.0016751159,0.02935608,0.03134342,0.0542831,-0.033234965,-0.02150005,0.03742728,0.06319065,-0.06856462,-0.0971378,-0.10195354,-0.004204292,-0.005775348,-0.039364144,0.027670195,0.02538684,0.0104179615,0.00037667656,0.054080807,-0.0043175765,0.09795602,0.010133087,-0.05203334,-0.03538697,-0.010414998,0.04742003,-0.013095908,0.060088042,-0.044797912,-0.050089043,0.044422843,0.0043306313,-0.017824488,-0.063322745,-0.005365879,0.047599167,-0.04254633,0.0025439642,0.02246895,0.07246599,-0.0143942395,-1.3591001e-33,0.10910372,0.086295456,0.04744982,0.030878091,0.0064057605,0.06405487,-0.037829325,0.030597165,0.04273531,0.07638902,-0.0084385,0.037312265,0.039649513,0.02456997,-0.09095158,-0.073834665,0.03387822,-0.007844833,-0.035669703,-0.08841039,-0.010807413,0.034986623,-0.035719056,-0.070822544,-0.035167597,0.03979231,0.029085308,0.016854046,-0.029796222,-0.006174315,-0.061527092,0.046239693,-0.013444219,-0.037947364,-0.028126713,0.104918525,0.07173732,0.0010354375,-0.045490738,0.00640879,-0.020825248,0.016281385,-0.020160144,0.033570223,0.008332493,-0.013783222,0.040058196,0.05727675,-0.09977475,0.018989032,-0.002857945,0.012579262,-0.04434531,-0.036201313,0.004038775,-0.06869516,0.035632327,-0.01695874,-0.060204044,-0.005102396,-0.057804044,0.07528577,-0.06086935,0.0480608,0.05744522,-0.048676394,-0.028410716,-0.08572695,-0.06992285,-0.009903698,-0.123797596,0.027067047,-0.06015854,0.061932325,-0.005421433,-0.055924736,0.055870306,0.0034512074,0.063012205,0.056008633,0.019368835,0.021038454,0.04744219,-0.0019612452,0.032276794,0.08851035,-0.004879027,-0.014261283,-0.009151632,0.061145667,0.11196976,0.055164285,-0.022596838,-0.0031449317,-0.09039699,-2.1740135e-08,0.022416065,0.058263887,-0.04132555,0.020376196,0.028870292,-0.058520816,0.054886855,-0.011244662,-0.07809894,0.05292615,0.06437699,0.0054008053,-0.033889495,0.042842843,-0.00029225304,-0.03246274,0.06706522,0.104763195,-0.022726294,0.013340063,0.080492586,0.015087743,-0.03897279,0.07000715,0.013192351,-0.04823647,0.033783536,-0.009112826,0.01372643,-0.057393212,-0.006136609,0.062459737,0.04169413,0.032620694,0.0015741236,-0.039179698,0.003474326,0.031866703,0.04478,-0.056308504,-0.040357746,-0.034884714,-0.031106014,-0.0030856263,0.020883517,-0.01738961,0.037906494,-0.060523853,-0.06145072,-0.044595405,-0.03941981,-0.03817226,-0.019217435,0.110313244,0.04793961,0.06445378,-0.07371327,-0.018131245,-0.035352107,0.020059174,-0.013028305,-0.06461712,-0.020605097,0.068744294} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.286109+00 2026-01-30 02:01:09.417072+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1465 google ChZDSUhNMG9nS0VJQ0FnSURPMExiaVhnEAE 1 t 1468 Go Karts Mar Menor unknown Good fun Good time fantastic place good fun good time fantastic place 5 2026-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Good fun Good time fantastic place"} {0.0027666667,0.040819418,0.049493954,0.01771229,-0.07280547,0.02977088,0.06254862,-0.016598796,-0.023120929,-0.014886591,0.04930772,0.01645737,0.020082567,0.030277008,-0.01652808,-0.024629595,0.085305355,-0.06606634,0.07049596,-0.038467903,0.00037738832,-0.0134661505,0.07183556,0.023331089,-0.13688424,0.06342355,-0.015624603,0.037210386,0.048976444,0.02630805,-0.047488183,0.09126556,-0.065731734,0.03420116,-0.021494608,0.042891983,0.03338176,-0.09908423,0.06954767,-0.009351728,0.03432415,0.046297476,0.051636834,-0.00864585,-0.0045997957,0.04355368,0.06014132,-0.03238628,0.08755352,0.05860067,0.042269606,0.021047648,-0.008655227,-0.009069716,-0.007950957,0.076879434,-0.06479631,-0.112749234,-0.008943357,-0.07415706,0.052378446,0.07140461,-0.037577633,0.009906661,0.054321654,-0.050844584,-0.083413005,0.07286151,-0.03540959,-0.021501275,-0.07759395,0.015626293,0.025734076,-0.0027429163,-0.014131037,0.066622324,-0.07699913,-0.028188903,-0.043004524,0.034045577,0.075202614,-0.0041101417,0.032810334,0.015916463,-0.069015644,-0.038780335,0.057370517,-0.006446529,0.039991364,-0.052646346,0.026154028,0.025043396,-0.07566722,-0.011491202,-0.03646561,-0.07413545,-0.03867453,0.06719888,-0.04180442,0.12028652,-0.026274871,0.055344034,-0.010714464,0.075702876,0.006888095,0.041361474,-0.03322664,0.11271301,0.01687921,-0.038425256,0.022087399,0.046505377,0.0049887584,-0.00090371293,0.06513936,0.074391924,-0.0075594434,-0.025071401,-0.055764083,-0.07045245,0.032107547,0.06594291,0.023464747,0.0008831856,-0.041460942,0.017008731,0.058600552,-1.14698935e-33,0.06024994,0.016260546,0.015809378,-0.019891817,0.09712202,0.090444274,-0.066833906,-0.040434822,-0.034445915,-0.06001978,-0.039801344,-0.06512851,-0.031415865,-0.097455144,-0.040206622,-0.013182645,-0.00621013,-0.012977147,0.06164738,0.009084254,-0.06480465,-0.035622288,-0.016190765,0.01964304,-0.05947315,-0.021693258,-0.0046588522,0.009830203,0.062387638,0.019688006,-0.093306415,-0.018694429,-0.05923045,0.015581229,0.07863635,-0.012359688,-0.023660755,-0.039717633,0.013344485,0.051154118,0.071700424,-0.01966334,-0.055329878,0.016975213,0.078982115,-0.0031253786,-0.00894962,0.023757674,-0.00816271,0.011421191,-0.087402366,-0.034930214,-0.04383358,0.0066261534,-0.059201974,0.02327654,-0.020587193,0.011407142,0.05196299,0.01829234,0.07929872,0.021193415,-0.03047787,-0.111444175,-0.0593797,-0.059872378,0.0756299,0.053572506,0.042585794,0.045607556,0.024318373,0.03269922,0.07614013,-0.0007727882,0.040299222,0.04445645,-0.009794042,0.00898861,0.0021095618,0.057691842,0.062160216,-0.034864582,-0.000115796836,-0.052144803,0.059355937,-0.0527697,0.051144507,-0.14165664,-0.080479704,-0.023767702,-0.070770316,0.026575154,0.09426159,-0.04817226,-0.035354745,6.4723187e-34,0.13033593,-0.04118123,-0.048570264,0.09327376,-0.05126344,-0.050115194,-0.13129032,0.040227838,-0.0020279551,0.13240185,0.0020452105,0.015506171,0.13206433,-0.018582158,0.0044773356,-0.07120529,0.064303994,0.061505184,-0.0805297,0.057174306,-0.0011769765,0.037158642,-0.08179307,-0.021698918,-0.0021021953,0.058092725,-0.029865978,0.026644764,-0.08061947,0.020862311,-0.07130756,0.028661782,-0.030513814,0.025129473,0.019379575,0.10730547,-0.009059693,-0.055655785,-0.04650688,0.0019766463,0.029772915,0.02256536,-0.019340742,0.017151775,-0.014054473,0.10623865,-0.04655655,0.008051549,0.002525924,0.011823324,-0.008965562,-0.014415631,-0.05843056,-0.043879613,-0.015418072,-0.057282027,0.03761078,-0.02679827,-0.013009233,-0.016879909,-0.118103355,0.056889188,-0.007070939,0.03829732,0.09402708,-0.05444984,-0.014118974,-0.0140114995,-0.069908366,0.058533702,-0.077993706,0.034848403,-0.05130371,0.03720167,-0.015161918,0.023042312,0.08805365,0.009138186,0.021700203,0.017409032,0.009740036,0.047043465,-0.075216986,0.0075777886,-0.07018306,-0.022403155,0.02359148,-0.018962221,-0.055708453,0.028945161,0.024037391,0.08165592,-0.07328904,-0.04425327,0.009268214,-1.5481053e-08,0.042051706,0.039933234,-0.040544096,-0.049336717,-0.026208473,-0.15720291,0.05701168,-0.011518298,0.040107187,0.009457828,0.052937318,-0.036386333,-0.03097035,0.001666284,0.0119526,-0.047599606,0.03733477,0.0115407165,-0.062572315,-0.0072184927,0.018926356,0.012984374,0.04459506,0.050593227,-0.020842535,0.042075828,0.023311172,0.01244677,0.107672416,-0.0018654489,0.0082152,0.100530416,-0.08056062,0.005050084,-0.07263809,-0.05611202,-0.016635284,-0.034837823,0.010402733,-0.030570224,-0.047364924,-0.04254302,-0.06782163,-0.058927625,-0.014667876,-0.00809562,0.049193952,0.0063466793,-0.080959946,-0.020148976,-0.09994136,0.022146398,0.002236325,0.05300117,0.010605953,-0.007310829,-0.03298889,-0.04525218,-0.023573203,0.028534394,-0.0036230383,0.08666182,-0.06812065,0.00017341087} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:12.747264+00 2026-01-30 02:01:09.443892+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1466 google ChZDSUhNMG9nS0VJQ0FnSUN1eTlIb0pnEAE 1 t 1469 Go Karts Mar Menor unknown Super track. Very professional team. super track. very professional team. 5 2023-01-31 01:52:39.833374+00 en v5.1 P1.01 {P2.01} V+ I3 CR-N {} {"P1.01": "Super track. Very professional team."} {-0.049614616,-0.017464353,-0.05896752,0.021764329,-0.039430402,0.06399232,0.0076213945,0.033511255,0.014957971,-0.0042893975,-0.055012245,0.023127891,-0.017969618,0.028209843,-0.082352236,-0.03077469,0.060768366,-0.10574696,-0.0024451893,-0.049335305,0.0013948885,-0.0731654,-0.00013221354,0.10849448,-0.06927602,0.07084979,-0.09931203,0.040732145,-0.04659708,-0.035968084,-0.059100553,0.019471083,0.012232704,0.008794678,-0.023019854,0.027430072,0.008847528,0.04297642,0.007327376,-0.018280087,-0.010562456,-0.033627387,0.024304468,-0.023082187,0.009150567,0.05314903,-0.014334553,-0.03585502,-0.004194663,0.042795155,0.02506266,-0.09169801,0.06772148,-0.014894084,0.018622324,0.11072622,-0.004979151,-0.063072115,0.015581628,-0.03578164,0.0153801115,-0.042894438,-0.077804595,0.0020069242,0.03950502,-0.0048106015,-0.097356714,0.1186218,0.051606108,0.036143936,0.04515167,-0.0068650744,0.030518357,0.045166105,0.09598746,0.07317585,-0.009729952,-0.04382861,0.0093869595,0.029375974,0.084401056,-0.12903291,0.011969461,-0.06364595,0.010155527,-0.032894388,0.058781005,0.018057758,-0.008676595,0.0023837916,-0.018186066,0.063054144,-0.0002703619,-0.04894397,-0.018303847,0.060236376,0.0005884186,-0.009553134,0.012720693,0.049392264,0.07436602,0.029905647,0.024818942,-0.017086914,-0.0015151587,-0.015223077,0.0032847181,0.12674803,0.03173916,0.0012687267,0.066983104,-0.031117255,-0.10295618,0.040536847,-0.035748973,0.037059814,-0.10927685,0.13612418,-0.055242267,-0.08112189,0.015681567,0.08656475,0.012484991,0.03842313,0.026535185,0.035243127,0.026857885,-5.694067e-33,-0.007381119,0.02111757,0.027745092,-0.054710463,0.02151144,-0.01262184,-0.045146935,-0.0084703965,-0.06772904,0.034661878,0.01783661,0.0034240063,0.035615414,-0.09648655,0.03407656,-0.053376768,-0.13225183,-0.048098363,-0.0740636,0.028139211,-0.024782546,0.09176422,0.013996065,-0.018904747,-0.0030000207,-0.014112043,-0.02039409,-0.057110038,0.022192955,0.021119568,-0.045512933,-0.010312612,-0.017456362,0.060251616,-0.020049257,0.04458096,-0.03689893,-0.066526055,0.0153762465,0.015669191,0.045859683,-0.028760375,-0.038501017,-0.0016343506,-0.0355693,0.079421304,-0.0024835584,0.08043922,0.030863969,-0.026547968,-0.0137515245,-0.047273893,-0.09482087,-0.047775283,0.057768885,0.031591143,0.06371366,0.04030838,0.025191924,-0.00046710268,0.046185855,0.050601378,-0.05072045,0.020367997,-0.034109194,0.03290646,0.04549712,0.017343128,0.094822496,-0.0334059,-0.06903949,-0.026083007,0.066883564,-0.028058762,0.04953501,-0.0053830147,-0.032492388,0.028836152,-0.04260786,0.047000512,-0.12592706,0.016150879,-0.0060909395,-0.035249256,0.06821009,0.034557022,-0.087504685,-0.014429525,-0.03527854,-0.015614615,-0.03647272,0.025806285,-0.012164374,0.07454452,-0.047232732,4.0151467e-33,0.07924967,0.053513747,0.14839418,0.07813779,0.12035861,0.050351832,-0.040386643,0.00640159,0.058233,0.11495664,0.056853727,-0.022380516,-0.01908557,0.039472755,0.003660514,-0.07512046,0.05617944,-0.0002225279,0.022538532,-0.066809885,0.06244443,-0.023776589,0.020914163,0.052032452,-0.006780889,-0.0032967122,0.06375148,0.030258685,-0.007162775,0.017451452,0.023737326,0.032599602,-0.038473543,-0.0685362,-0.03471743,0.08569944,-0.063864544,0.07036957,-0.054434203,-0.018151714,-0.05778289,0.024964878,-0.011659537,0.060656928,0.020388363,-0.004373638,0.03881494,0.108148016,-0.059248544,0.0066851154,-0.046977155,-0.04579452,-0.04632917,-0.08323091,-0.05825639,0.035922617,-0.017010096,-0.06025124,-0.045678735,-0.06069041,0.0054429285,0.051465645,-0.049099583,0.064990416,0.039694678,0.0524561,-0.051051952,-0.025607163,-0.110083975,0.06205593,-0.035586435,0.03291892,-0.07899007,0.0007130356,-0.048860155,-0.02548644,-0.073257476,0.004193736,0.005299729,0.07175974,-0.042254467,0.012066536,0.041440714,0.044773895,0.04669921,0.12300158,-0.047998916,0.0048305984,0.02023188,0.064151496,0.0675266,0.034196105,-0.0021339075,-0.04232483,-0.05306911,-1.47719925e-08,-0.047912743,0.15116292,-0.011210782,-0.027058944,0.0068494924,-0.038516346,0.008319933,-0.047388133,0.03896086,0.027043454,0.008743071,-0.06776347,-0.018451761,-0.0011864296,0.011719759,-0.015774379,-0.07591207,0.18320699,-0.068251416,0.01400378,-0.018101633,-0.03871967,0.012301821,-0.019106176,0.010164682,-0.09546335,-0.0076334192,0.0430944,-0.0015466067,-0.015005438,0.008103491,0.054029472,-0.010088085,0.012017849,0.06699662,-0.08394774,0.009093015,0.027070863,0.013445241,0.014836961,-0.0017563151,0.022742802,-0.057523306,0.034931175,0.008462525,-0.0788523,0.05221804,-0.01619113,-0.057719663,-0.06860755,-0.03004583,-0.020679541,-0.046873216,0.05610846,0.04685143,0.09540006,-0.041052096,-0.03470931,-0.106907375,0.008066094,0.018949078,-0.025483876,0.019761588,0.048279863} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.036053+00 2026-01-30 02:01:09.447788+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1472 google Ci9DQUlRQUNvZENodHljRjlvT2t0UmIySnZlR05FUldrME9UTkdjM2xUTjAxU09WRRAB 1 t 1475 Go Karts Mar Menor unknown Kids love it there kids love it there 4 2025-09-02 00:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Kids love it there"} {0.05702817,0.105485246,0.0062415744,0.037691005,-0.047082365,-0.061068363,0.04603696,0.0013995519,0.04726036,0.051925227,0.008571522,0.015278917,0.028884482,0.034361575,-0.014239123,-0.035849474,0.10086934,-0.09573285,0.024757894,-0.15557587,0.010801341,0.029879985,0.071842656,0.009132591,-0.058273327,0.10221486,-0.00012532328,0.047078516,-0.09726293,-0.09608335,0.02714258,-0.010954264,0.017659163,0.0068738325,-0.033710457,0.047896557,0.072658926,-0.008184402,-0.010072621,0.04163941,-0.05616106,-0.0024000227,0.015747197,-0.04100492,-0.057987586,0.031726856,0.026031928,-0.085937545,0.1718111,0.015256925,0.1325714,-0.044645898,0.05612592,-0.030972153,-0.0076963054,0.043140396,-0.011753884,-0.05384762,0.036905658,-0.04366126,0.08039166,0.0694007,-0.09649483,-0.007217018,0.026688887,-0.11659429,-0.038983952,0.04044811,0.022869354,-0.10012556,0.03989216,-0.0028830685,0.060195003,0.014403418,-0.043951232,0.011447936,0.0047299354,-0.02306028,0.024083123,-0.014231709,0.017611774,-0.030678568,0.051689334,0.002278196,0.021305691,-0.026397025,0.028054582,-0.033733852,-0.024365328,-0.01509988,0.0007114607,0.016229464,-0.054155227,-0.012080004,-0.054537546,-0.035072427,-0.022537934,-0.028149975,-0.11892077,0.052447807,-0.026355289,0.0536064,0.021752778,0.021801881,-0.073878005,-0.053601325,0.029168734,0.05416574,0.013561529,-0.05045181,-0.02955672,0.02856119,0.045005977,0.07440005,-0.04539895,-0.017373258,0.12535252,-0.03748631,-0.03828944,-0.036133274,0.032150272,0.0323195,0.009671949,0.04233967,-0.026221337,-0.13918895,-0.1013753,-5.0743498e-33,-0.052395552,0.01194858,0.029569667,-0.03390442,0.049747057,0.0036141304,0.04204338,-0.01145318,-0.08339494,0.037103858,-0.01462156,-0.057672586,-0.050227124,-0.04372528,0.10756141,-0.022930196,-0.10178734,-0.058632057,-0.13318029,0.0091571715,-0.08320894,0.022672756,0.017147504,0.057583045,0.007819085,0.071812026,0.012449558,0.04249921,0.08171046,0.07106209,-0.002769802,-0.062124804,-0.06135933,0.0070977123,-0.005951424,-0.0031858264,0.044249713,-0.030763155,-0.004896664,0.052718464,0.034869064,-0.089240074,-0.08244349,0.17943703,0.024411032,0.10119854,0.043987192,0.025355194,0.07738841,0.0078805955,0.07058946,0.005348783,-0.10124691,-0.0075373063,0.056624204,0.066123985,0.027705947,0.066153854,0.03933124,-0.010633572,-5.85091e-05,-0.0200072,-0.009424661,-0.017702779,0.005342116,0.019257836,0.083645165,0.067377396,0.04644034,-0.004219398,-0.046873897,-0.0030161233,-0.03901357,-0.025987633,-0.04523229,-0.057018917,-0.010902117,0.049425934,0.076594174,0.013473143,0.026474299,-0.03688614,0.031601302,0.019793961,0.035518307,-0.0968041,-0.019768199,-0.11425714,-0.049701627,-0.052048657,-0.008521969,-0.102354825,0.07820378,0.00879745,-0.048056487,4.6371695e-33,0.07359938,-0.06981471,-0.030195214,0.019619325,-0.09174445,-0.023302322,-0.005966092,0.037112143,-0.030105134,0.11701505,-0.035753585,0.0045569777,0.03900938,0.043791845,0.056145057,0.025572147,0.085896365,0.07477992,-0.038519237,-0.01880472,0.0168734,-0.038776305,-0.037937026,0.038843896,-0.0325114,0.0010210738,-0.11139043,-0.10855704,-0.022084486,0.07753053,0.048683077,0.014015718,0.06500004,0.018009882,0.022842033,0.03001193,0.003800846,0.033551626,-0.060680054,0.008068603,0.086518504,-0.06481363,-0.031338472,0.08010504,0.029641395,0.023150042,0.030419389,0.017673183,-0.021328833,0.039041527,-0.062518425,-0.007450708,-0.02272751,-0.06373349,-0.017953511,0.008677698,0.03314451,0.051952478,-0.05129684,-0.03613173,-0.01468809,0.03490742,-0.032714117,0.051527157,0.04391576,0.010685628,-0.04324704,-0.028050555,-0.0128693255,0.02346926,-0.018627396,0.034630734,-0.039157834,-0.012156857,-0.016462335,0.0028250772,0.09024584,0.058316313,-0.034199692,0.08055072,0.01644292,0.007890774,-0.05599773,0.019472959,0.017705536,0.031267885,0.029953934,-0.012319746,-0.050254524,-0.007995161,0.024466556,0.06818176,-0.086564876,-0.06629891,0.02046294,-1.48985935e-08,0.009063116,0.041137267,0.024386603,0.002839979,0.026030993,0.007603651,0.060287584,0.013301663,0.018293206,0.09419907,-0.041686345,0.028241828,-0.01793521,0.028449224,0.056109577,0.029946174,0.07374907,0.0068793125,-0.0054953643,0.0076016267,-0.0315078,0.042295426,0.023883991,0.0065766815,-0.06073406,-0.0676949,-0.013881867,0.014325229,0.012438404,-0.057050973,0.055717543,-0.040081564,-0.010640627,0.030362831,-0.011609781,-0.023440463,-0.05626978,-0.007480215,0.013874731,-0.04190542,-0.01549376,-0.028736025,0.014126547,-0.059127394,-0.03084914,0.049421366,0.06664797,0.02355709,0.010994518,0.06585079,-0.08900253,-0.013943206,-0.041404605,0.026942357,0.06771267,-0.010580478,-0.021185359,-0.06774931,-0.014133932,0.051728647,0.015385606,0.047065616,0.04983923,0.08886454} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.182964+00 2026-01-30 02:01:09.465007+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1473 google ChdDSUhNMG9nS0VJQ0FnSURiNWVIeWdRRRAB 1 t 1476 Go Karts Mar Menor unknown My grandson really enjoyed it well worth a visit. my grandson really enjoyed it well worth a visit. 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {V4.01} V+ I3 CR-N {} {"V4.03": "My grandson really enjoyed it well worth a visit."} {0.03610317,0.052531265,0.038208935,-0.026874458,-0.09346397,0.017367736,-0.0012068314,0.0062684054,-0.11235556,-0.023452645,-0.04108352,0.0902487,-0.0060703475,0.04775934,0.028750839,-0.02382978,0.09569088,-0.0879834,0.076640144,-0.14947228,-0.05655035,0.0010187433,0.095498204,0.006747716,-0.0013556933,0.025852503,-0.059544228,0.037320938,0.06772748,0.005568286,-0.023248319,0.07191247,-0.048521213,-0.038485214,-0.010697747,0.07192266,0.09333853,-0.08631284,0.002870109,0.050960332,-0.02132788,0.06780134,0.09400704,-0.042680647,-0.01705486,-0.037334338,0.012044141,-0.093677126,0.13727088,0.042273294,0.077105224,-0.0007863131,0.08921291,-0.10600061,-0.008586027,0.047207616,-0.044757463,-0.06890881,-0.059617624,-0.0862159,-0.037752677,-0.022890933,-0.024580324,-0.011706857,-0.011494465,-0.118257895,-0.081633165,-0.033931438,0.0785702,-0.046436362,0.0015594629,0.02056632,0.07124759,0.004919563,-0.07739828,-0.025817424,0.0010156387,-0.053297225,-0.031003168,-0.03234106,0.025192179,-0.025549147,0.027845973,-0.025384896,-0.023975063,-0.06025351,0.07926056,-0.030561613,-0.039113797,0.04664051,0.095095985,0.040400654,-0.03452421,-0.0030246102,-0.01043812,-0.021705296,-0.017696112,0.031887114,-0.08082644,0.031831782,0.0008158292,0.08441691,0.046260796,-0.060511738,-0.051834088,-0.015659127,0.04269257,0.064698674,0.0023999906,-0.021698583,-0.012744397,0.04356881,0.050739147,0.024717344,-0.041976266,0.026892668,0.04849723,-0.006952975,-0.02437199,0.015978921,0.11470769,-0.0021010237,0.044949517,0.10079353,-0.056051295,-0.113733836,0.034219343,-6.0472403e-33,-0.022315381,0.026228465,-0.029166168,-0.0070881667,0.117319316,0.046948522,-0.004205183,-0.033295162,-0.1274824,0.008440544,0.016850082,0.03129977,0.0029432601,-0.00046503305,-0.054800093,0.024081673,-0.08546584,-0.019046294,-0.02603158,-0.05005231,-0.03838104,0.0010125069,0.022281837,0.068780035,0.05781633,0.057543766,0.012175298,0.029273976,0.046881013,0.0356482,-0.0711662,0.016784607,-0.14315507,-0.02343678,-0.018961035,0.007875667,-0.022035917,-0.01759337,0.008137419,0.047413923,-0.04198449,-0.0013652574,-0.0471626,0.06872443,-0.0149144605,0.020040248,0.06330228,0.034419198,0.025629604,-0.02990315,-0.07252283,-0.023703381,-0.04453256,-0.0167012,-0.07703973,0.049918856,0.034196828,0.00599918,0.01289802,-0.021454522,0.112424605,0.015969977,-0.024389599,-0.044438943,-0.06529024,0.03849821,0.024955321,0.018762445,0.005200656,-0.03660664,-0.034814116,-0.020952089,0.018133491,-0.16754062,0.045296416,0.018847985,-0.02891825,-0.028525792,0.039542038,0.008705163,0.028775554,-0.04163469,0.02141386,0.0279617,0.006353638,-0.023751544,0.0068585016,-0.10220571,-0.009706248,0.01961937,-0.023071071,-0.056658965,0.052711114,-0.0039985026,-0.006535121,3.7724766e-33,0.03298643,-0.065556325,-0.011988867,0.0068942183,-0.043273453,0.01680458,-0.096696414,0.0671119,-1.3789673e-05,0.007555917,-0.043466333,0.08523466,-0.0046834694,0.024310159,0.029097922,-0.0011874529,0.05671211,0.00576795,0.017767796,-0.04129199,0.03010379,0.09628248,-0.021653805,-0.041800603,-0.03411672,0.023022555,-0.052097354,-0.07223638,-0.033856027,0.016027596,0.044562485,-0.022751832,-0.018339012,-0.015176524,-0.016442921,0.08990729,0.105728336,-0.0459699,-0.056446355,0.059424207,0.059355877,-0.02748035,0.040262252,0.04373246,0.06611601,0.00994163,3.8192156e-05,0.059447553,-0.034251306,0.044650447,0.0025391246,0.028552404,-0.019241517,-0.10647499,-0.00981369,-0.03497221,-0.013755701,-0.059422538,0.0072210412,-0.0022856023,-0.09167936,0.033475984,-0.08289701,0.020243533,0.0034863937,-0.0034160994,-0.042803083,0.005910755,-0.04835881,0.010350531,-0.09122623,-0.0033436953,-0.047408666,-0.060415413,0.0654644,0.026123079,0.097260825,0.055784702,0.017109446,0.07114808,0.06047479,0.0036448843,-0.043656822,-0.026596688,0.088502064,-0.02069521,-0.027184196,-0.0728897,-0.052190267,0.087808125,0.045428332,0.033608496,-0.061909854,-0.05723092,0.04008288,-1.907622e-08,0.005271263,0.08742208,0.0052910917,-0.0058671474,0.014008475,-0.07880856,0.016862446,0.061351575,-0.08277166,0.13084157,0.022059307,-0.012685458,-0.035430294,0.0059150863,0.05608925,-0.00278784,0.107712545,0.048208766,-0.03137199,0.018510824,0.041952066,0.042458184,0.09637107,-0.0050887642,-0.058691412,0.024972677,0.019216482,-0.097237356,0.05312435,-0.04597008,-0.023722464,0.065010324,-0.027962208,0.00041276612,0.021960493,-0.08053363,-0.019398581,-0.024630476,0.041153822,-0.052628495,0.017842095,-0.022540916,-0.016955907,0.043425318,0.035855085,0.02400563,0.04474498,-0.058194283,-0.008858488,0.061518654,-0.052040897,0.0036225687,0.0051009674,0.05739804,0.04833981,-0.025303056,-0.015916426,-0.035377648,0.011974183,0.0727441,0.061870657,0.017377729,-0.057062436,0.0704865} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:58:13.193706+00 2026-01-30 02:01:09.467963+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1570 google ChdDSUhNMG9nS0VJQ0FnSUNLMElTay1BRRAB 1 t 1573 Go Karts Mar Menor unknown Good circuit ,well run good circuit ,well run 4 2022-01-31 01:52:39.833374+00 en v5.1 O1.02 {J3.01} V+ I2 CR-N {} {"O1.02": "Good circuit ,well run"} {-0.038619205,0.07755947,0.0532042,0.026449203,-0.056221265,-0.014351378,-0.010532137,0.0268525,-0.00011708037,0.02173501,0.024139706,0.014218347,-0.015009875,-0.02214197,-0.07492052,0.082371406,-0.0071633253,-0.007033423,-0.043726977,0.0047266087,-0.10978436,-0.0040143137,0.05446804,-0.015099044,-0.094544955,0.087535605,0.007093952,-0.059039943,-0.06350675,-0.04101774,-0.01661314,-0.036879696,0.0015406676,0.014854866,-0.029319666,0.036948364,-0.018956346,-0.020405335,0.03872602,-0.008492058,0.00809806,-0.10387544,0.06953083,0.019605502,-0.012916357,0.018419174,0.036995824,-0.018859774,0.0659992,-0.06980704,-0.014286397,-0.025297392,0.02872075,0.002578468,0.012787831,0.09224854,-0.09416277,-0.009342756,0.0053516603,-0.05493423,0.069395125,-0.0030181878,-0.016802125,0.046150297,0.04805639,-0.06389249,-0.0070411726,-0.011731437,-0.02067451,0.033776134,-0.0033453747,0.050400566,0.002668156,-0.043770634,-0.019391388,0.02240326,0.012141434,-0.035699718,0.00088057935,-0.06555161,0.047090296,-0.10371238,-0.07573565,-0.0245052,0.0498309,0.0007469364,0.04750932,-0.07391377,0.0074092466,-0.03415104,-0.017568344,0.060084574,0.059905376,-0.0038436549,0.037024993,-0.022680482,0.033354513,-0.07157922,-0.1000089,0.10957369,0.07372452,0.03080737,-0.009864435,-0.07697671,0.004748904,0.0056420034,0.011923847,0.06938086,-0.005601914,-0.07678464,0.07265243,0.045307916,-0.0034295705,0.10383589,0.064916775,-0.03880944,-0.07002343,0.020728866,-0.01760808,0.023540564,0.004826553,0.042549632,-0.020202914,0.07559455,-0.026967777,-0.071042344,0.059444528,-2.8612168e-33,0.03247313,0.038779393,0.024788965,0.04000197,0.042587478,0.07483256,-0.033590972,0.000721098,-0.08669947,-0.0061941156,0.0039780317,0.056727596,-0.039165735,0.08068535,0.066545665,-0.07366735,-0.00657275,-0.05297866,0.14514925,0.012626937,0.045108184,-0.05999058,-0.019820578,0.032219585,0.05725434,-0.0013458424,0.024943735,-0.014459302,0.0144057805,0.025428206,-0.011690641,-0.016882319,-0.049444348,0.030123789,-0.011949142,0.026433593,-0.07932516,0.045823626,0.049758796,-0.003363222,-0.022720968,0.036177687,0.010471175,-0.013991605,-0.045216046,0.023124138,-0.046935298,0.09642061,0.030246167,0.035275165,-0.06111982,-0.07538056,-0.040561475,0.078410335,-0.02493413,-0.008275457,0.0011288379,0.08184491,0.01612457,0.06642206,0.030855214,0.13741995,-0.15762515,-0.0037764967,-0.13727096,0.042359296,0.07216336,-0.12927124,-0.028170807,-0.0035793143,-0.04703556,-0.0762687,0.03451755,0.009819053,0.03898704,0.048041783,-0.07910309,0.020339709,-0.03352584,-0.015830586,0.014208253,-0.047640886,-0.009913406,-0.03637348,0.065211736,0.06576422,-0.025255494,-0.08098846,0.059483256,0.06573793,0.022012493,0.0094378255,0.10149732,-0.0083539,0.011031729,2.9849967e-33,0.028431246,0.034483846,0.03792767,0.0953577,-0.035045322,-0.023852052,-0.040100824,-0.022612324,-0.062332287,0.105564676,0.014121982,0.004990181,-0.008810771,-0.020858398,0.07900465,-0.06461188,0.108185254,0.0017215483,0.0039841635,-0.031261895,0.0060664155,0.068456985,-0.11447816,-0.011069045,-0.043696545,0.046095457,-0.08991651,0.018292753,-0.033805244,0.0062468573,-0.005395015,-0.03339376,-0.03358024,0.009271643,-0.017326396,0.0035299473,0.050028186,0.00020990777,-0.016186979,-0.014385993,0.052773625,0.043769073,-0.031359762,0.09685386,-0.071302384,-0.017842345,0.012473223,0.020275347,-0.034917418,0.06787487,-0.088146016,-0.07653074,0.0014461484,-0.007658691,-0.050032374,-0.1369396,-0.013194036,0.04456927,0.0020110554,-0.05291099,-0.015825758,0.009194293,0.008620497,0.026884554,0.04727362,-0.060257528,-0.039174505,0.057296783,0.1077862,0.02761953,0.007499648,0.032969113,-0.021645091,-0.004743321,-0.05259855,-0.013700864,-0.06936424,-0.04157699,-0.00060095947,0.065852895,-0.023313554,-0.04435538,-0.016140755,-0.10579271,0.02736462,-0.039623708,0.06385206,0.023379622,-0.0010234507,0.10060954,-0.02987548,0.08774911,-0.024399376,0.031941693,0.0001810836,-1.5791287e-08,0.008031297,0.0218643,-0.01627671,0.019060621,0.063791685,-0.058617096,0.09340876,-0.0055748797,-0.037141483,-0.02590977,0.12821107,-0.009708273,-0.05627989,0.047249056,0.073841475,-0.009286495,-0.03445562,0.09345236,-0.023583392,0.061116938,-0.07789971,0.037306286,0.016649483,0.10037383,0.038900524,-0.00081527524,0.04603527,0.0028659548,-0.034812022,-0.010938678,-0.020883935,0.09020029,-0.0493781,-0.049963363,-0.009444577,0.07844792,-0.07827052,-0.007298733,0.09710857,-0.050256267,-0.04594951,-0.03689605,-0.061357852,-0.0422759,-0.019627914,-0.08002606,0.00608019,-0.033237252,-0.015443866,0.003943549,0.0030751668,-0.041905973,-0.017312564,0.029334577,0.14042892,0.04415509,0.030301977,0.004575229,-0.086801514,0.04948508,-0.0075237374,-0.02970366,0.022938585,0.009316497} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.720283+00 2026-01-30 02:01:09.842817+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1571 google ChZDSUhNMG9nS0VJQ0FnSUNlLVllR01REAE 1 t 1574 Go Karts Mar Menor unknown Great day great day 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great day"} {-0.059886895,0.03340334,0.044560157,-0.053534012,-0.0054986416,-0.0127096735,0.11012531,0.047245383,-0.008658103,-0.031686522,0.06768265,0.13217527,0.0040725875,-0.0019450072,0.0055935923,0.01723287,-0.06880128,-0.052305896,-0.14636822,0.020479783,0.0021924195,-0.02737524,0.023577463,0.021361679,-0.11261541,0.038015045,0.03587923,-0.012309529,0.04116643,-0.021730997,-0.2072679,0.06565883,0.056312907,-0.030472692,0.055671472,-0.052469563,-0.027100142,-0.10232591,0.03446654,0.028126411,-0.027962467,-0.046467125,-0.009279026,0.07701088,0.058553066,0.029933183,-0.037002962,0.006916897,0.05688104,0.03845699,-0.009137746,-0.068108395,-0.044418667,-0.033356417,-0.021672506,0.09172073,0.077723496,-0.055272292,0.10491167,-0.056040026,0.04327377,0.03995326,0.013161778,0.019200437,0.02914984,-0.052835904,-0.015395914,0.011654503,-0.07690214,-0.008448406,-0.026074098,-0.041952215,0.077027656,-0.01465003,0.020347139,0.10234794,-0.019918758,0.056610994,0.05282744,-0.016847914,-0.014885659,-0.010410832,-0.050648134,0.02078304,-0.060210686,-0.016192304,-0.0029334505,0.00859496,0.03395845,-0.0005922774,-0.05971321,-0.0052187988,-0.050884888,0.013044125,-0.02496276,-0.05552313,-0.00092746346,0.03312495,-0.0785185,0.11973958,0.03633576,0.030391356,-0.025218837,0.029346494,0.033842042,-0.029098218,-0.066861786,0.00077738863,-0.10360814,-0.04875377,-0.02285765,0.04988379,0.074253134,0.09017606,0.010446985,0.066778116,-0.028071713,0.07513637,-0.021943035,0.003918367,0.025782852,-0.088078424,0.05644994,-0.007919291,0.053018205,-0.03981606,0.06345396,-1.5789613e-33,0.026509698,0.075037986,-0.010493154,0.055315547,0.06197466,0.057845004,-0.005162791,-0.030313307,-0.023775388,0.0030965586,0.039034966,0.024031188,-0.024228893,-0.008126239,-0.060294613,-0.00051732967,-0.04659325,0.15697859,0.06526267,-0.0037320112,-0.029803993,-0.013771308,-0.03688339,0.076004624,0.015833344,0.003180325,0.0120375855,-0.06523233,0.01879662,0.012117929,-0.031487577,-0.08926758,0.031907823,0.09587282,-0.021414408,-0.07853117,-0.039364487,-0.0707949,-0.10836326,0.007617326,0.029766392,-0.013850911,0.032723956,-0.007519916,-0.050559584,-0.02220872,0.057327677,0.085300736,-0.018805055,0.018582882,-0.050876893,-0.024121998,-0.05961858,0.018560613,-0.040166035,0.0021723066,-0.038097646,0.018253325,0.038880475,0.06341019,0.0034587833,0.06977374,-0.018443832,-0.05563795,-0.052146614,-0.00011990636,0.035663877,0.0012207157,-0.024931839,0.04104751,-0.008862672,-0.013488477,0.11663404,-0.051058393,-0.0009846167,0.003152185,0.06827229,-0.020164827,-0.02407185,-0.027189974,-0.020987403,-0.03751796,0.06471177,-0.08255019,0.037615646,0.06920126,0.062902294,-0.029577333,0.045546256,-0.058322735,-0.13990378,0.063660584,0.031375032,0.012165938,-0.05549957,2.3691835e-33,0.090736225,0.010959991,-0.09661479,0.12818445,-0.04403615,-0.03913554,-0.0128331,0.082400724,-0.051833384,0.053918995,0.03005329,0.06452938,-0.019136261,0.021077797,0.023895407,0.023872066,0.075591005,0.011020203,-0.08620574,0.002250297,-0.06927372,-0.022742089,0.031076057,0.04965356,0.025220316,0.05627511,0.0027424844,0.051489573,-0.014603959,-0.024818337,0.03254967,-0.0085733915,-0.14592588,0.008419621,0.018328907,0.03738807,0.04727342,0.0035193635,-0.011007069,0.009122613,0.016274756,0.02853801,-0.038590267,0.08630277,0.0019238803,-0.01904407,-0.01482035,-0.011158703,0.06462824,0.08532536,-0.067041524,-0.068289705,-0.0028895712,-0.006326591,-0.018929806,-0.018865572,0.004490272,0.025686938,-0.063108,0.012595292,-0.09851076,-0.056578312,-0.021988096,0.01851427,0.08795259,-0.005251947,-0.053499185,0.07624419,-0.037035238,0.04777899,-0.07356604,-6.815867e-05,-0.10868924,0.0046716183,-0.020814223,-0.041307554,-0.030687157,0.019578269,-0.00055726146,-8.2698374e-05,0.004221844,0.04529246,0.019870227,0.03654416,-0.05297079,-0.083260484,0.015544938,0.022267563,-0.017779853,-0.0027368343,-0.060906474,0.0236824,-0.014882602,0.030256856,-0.04192674,-1.5369665e-08,0.00047804863,0.05639444,-0.04107254,0.04541175,0.03922399,0.03738392,0.0036832946,-0.047812346,-0.0096472325,0.10975482,0.017263347,0.10126795,-0.020518018,0.05433472,0.086778454,-0.04875124,-0.069795184,-0.007905179,0.021648766,-0.008372616,0.031571668,-0.023118967,0.036623463,0.05382983,0.05451482,0.0150172375,-0.01540154,0.10150921,-0.027726462,-0.00285578,0.002493656,0.1351384,-0.08412266,-0.04215983,-0.0072463574,0.011324353,0.026124774,0.065729775,0.07465281,-0.04462313,-0.07031716,-0.023942905,0.032452654,-0.046431165,-0.019528462,-0.0014881382,0.0135312565,0.01736114,-0.075224206,-0.04696456,0.045693193,0.04688804,0.026659269,0.027929734,0.0013906477,0.054557618,-0.02748783,0.026074618,0.041850712,0.03413397,0.052136227,0.00019736293,-0.06040258,0.067138515} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.733027+00 2026-01-30 02:01:09.84705+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1572 google ChZDSUhNMG9nS0VJQ0FnSUNVME5tc1dBEAE 1 t 1575 Go Karts Mar Menor unknown Great for all ages great for all ages 5 2020-02-01 01:52:39.833374+00 en v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Great for all ages"} {0.026518831,0.07533977,-0.013675765,-0.053542726,-0.05816926,0.041368872,0.011541842,0.003537187,-0.05820185,0.026332472,0.03559752,0.10306982,-0.027699068,0.029667996,-0.02278657,0.01110964,0.05543796,0.0014614705,0.018352773,-0.16687329,-0.04850666,0.06626677,0.0690361,0.027902255,-0.040900677,0.05658633,-0.08032053,-0.036809497,0.01139492,-0.028816767,-0.016823184,0.024258649,0.099124074,-0.008375262,-0.05514907,0.048568957,0.06560191,0.0071161883,-0.064522006,0.05980955,-0.05495781,-0.08689928,-0.05607815,-0.078805506,0.014798308,-0.00708439,0.032891437,-0.063892506,0.09830586,0.009093861,0.056902785,-0.037289105,0.07027614,-0.028744658,0.04758803,0.043003354,-0.10839053,-0.034925725,0.054466512,-0.05560544,-0.00701965,0.016161129,-0.03153631,0.00127346,-0.020310797,-0.092077866,-0.03658838,0.05011849,0.011975579,0.03325478,-0.023320438,0.033881165,0.0637191,0.03038195,0.03849487,-0.03948567,0.01566176,-0.018639155,0.02449881,0.011414311,0.023797449,-0.10024336,-0.03208565,-0.037500132,0.06642693,-0.016962716,0.059864786,0.009348092,-0.10158471,-0.015164494,0.0016164131,0.108477294,-0.052211974,0.05545362,0.033529527,0.010475433,0.032630924,-0.117476724,-0.10548181,0.09101952,-0.009847311,0.004399348,0.030146563,-0.063746594,-0.006316266,-0.01681518,0.07770989,0.019815214,-0.02250515,-0.0025533107,-0.010807382,0.050648555,-0.050343886,0.053281616,-0.043680444,-0.031806882,-0.038568277,-0.017283116,-0.011777751,-0.015089971,0.018870465,0.09332334,-0.039320216,0.06746746,-0.009056738,-0.054954767,0.036831107,-2.502255e-33,-0.046815604,0.055167187,-0.032815024,0.028989581,0.0028018947,0.017290825,0.018649176,-0.033368737,-0.06060078,0.050589945,-0.0022278673,0.0186577,-0.05345464,0.060299754,0.072446115,0.02276431,0.0044466862,0.038254835,-0.009177422,-0.0041532004,-0.04230859,0.05219935,-0.02576099,0.034197763,0.0038970264,0.062660865,0.058702085,-0.022863818,0.10250307,0.051554076,-0.049490906,-0.07582216,-0.13920629,-0.018794587,-0.011589394,-0.01426641,-0.040896993,0.027589165,-0.00789862,0.063875705,-0.029400218,-0.00015507739,-0.036172953,-0.0007439249,-0.012050983,0.12040131,0.046227977,0.03479888,-0.059287205,0.026590386,-0.060423985,-0.03329995,-0.1164872,-0.009015379,-0.017950231,0.040073235,-0.030086534,0.0357523,-0.03904819,0.03972124,0.12241692,0.039047666,-0.037119843,-0.07050294,-0.082142204,0.09090587,0.07048856,0.003427009,-0.054572146,0.0474771,0.013504789,-0.025989192,0.06600709,-0.051822394,-0.0011158175,-0.018259702,0.0075808875,-0.029352697,-0.0033996804,0.0098130675,0.017090496,0.022684563,0.021540746,-0.02912368,0.06931815,-0.088975295,-0.05220432,-0.1260491,0.0016028726,0.013169679,-0.056267098,-0.053878278,0.12145973,-0.036105774,-0.067823,1.5158923e-33,0.015807506,-0.027791256,0.03058187,0.1088849,-0.026441973,0.0059067165,-0.06915493,0.025666976,0.037567463,0.04448205,0.018105974,0.02602325,0.01437546,0.05271059,0.05106041,0.0125970775,0.06580013,0.017052768,0.017821144,-0.065823674,0.061390154,0.077364616,-0.06482037,-0.025241863,-0.012381638,0.009280166,-0.103781186,-0.06514831,-0.03831712,0.08672211,0.029600527,-0.02115743,0.0037152157,0.077121064,-0.048191193,-0.0067435084,-0.030639326,0.01449213,-0.008053104,-0.014398972,0.057816215,-0.04001713,-0.012915367,0.034693267,-0.019192947,0.0152593935,-0.008764116,0.04447787,-0.01034711,0.07545264,-0.02375125,0.023993671,0.04321096,-0.0599444,-0.07532361,0.03352472,-0.022278303,-0.08676063,0.0087556355,-0.036691993,-0.066935025,-0.05031099,-0.07681993,0.029337896,-0.0029361213,-0.0001144738,-0.026975622,0.0028922944,-0.10299518,0.011471886,0.011345153,-0.049739562,-0.14253297,0.0002878183,-0.0050434726,0.0087893335,0.038863447,0.06730827,-0.0016441701,0.1056725,0.011837578,0.010280716,-0.06773783,-0.016245937,-0.021558201,-0.06031381,0.025330016,0.035154276,-0.06279251,0.11258117,0.020378398,-0.014945975,-0.011453542,0.022725616,0.023775496,-1.6513345e-08,0.007852051,0.05669185,-0.087626345,0.047932565,-0.10161122,0.040705387,0.041719873,0.02333607,0.042274684,0.07800865,0.047057346,-0.003957628,0.09326313,-0.019296825,0.045938075,-0.033794492,0.009574281,-0.016526818,-0.01634725,0.067352355,0.074742764,0.052297913,0.06477492,0.011859115,-0.07603821,-0.038062647,0.023960711,-0.0631191,-0.06566252,0.0067892945,0.02951568,0.10190165,-0.037858106,0.008371668,0.052513026,-0.038485114,-0.009134493,0.0025420594,0.009606972,-0.023188416,0.007733436,-0.01887468,-0.067488134,-0.034861133,-0.051362757,-0.011098413,0.05905076,-0.021496074,-0.042567745,0.11131218,-0.015801528,0.10485441,0.060135186,0.016617559,0.08873346,0.031005517,-0.036183022,-0.03172588,-0.023801813,-0.013607644,0.10397508,-0.08226274,-0.013942149,0.040488582} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.744582+00 2026-01-30 02:01:09.851934+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1573 google ChZDSUhNMG9nS0VJQ0FnSUR3dk9DN0dnEAE 1 t 1576 Go Karts Mar Menor unknown Very good karts good track very good karts good track 4 2026-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Very good karts good track"} {-0.09011067,-0.009086131,0.014588661,0.047927976,-0.07482608,0.08535391,-0.007920482,-0.068504766,0.017779116,0.008419937,-0.014408764,0.034769204,-0.034351386,-0.009556035,-0.0067029414,-0.009126637,0.062756956,-0.02445481,0.021485183,-0.098506756,-0.11016829,-0.05217618,0.024799922,0.043754496,-0.14058638,0.0022124832,-0.010123409,0.038619705,0.022446077,-0.00441115,-0.11436689,0.0576994,-0.021292388,-0.008189423,-0.04071194,-0.021112274,0.014756248,-0.049194742,-0.045310676,0.010544925,0.027600344,0.0017303526,0.022446461,0.005121232,-0.008663424,0.05844128,-0.05008488,-0.054589413,0.023123095,0.05951763,-0.014040927,-0.06235904,0.016324973,-0.04625212,-0.013293223,-0.027411478,-0.08033267,0.019999111,0.09318189,-0.0877325,0.099253364,-0.013699524,-0.09710092,-0.043636676,0.020420533,-0.047958784,-0.036666248,0.104741335,-0.009067257,0.06748055,0.037119266,0.013293828,-0.00308465,0.03506714,0.01722257,0.053968452,-0.058300957,-0.042218428,-0.095641,0.009877123,0.06233111,-0.029910216,-0.003057244,-0.10258105,-0.0066521135,-0.07869016,0.06885181,0.0016294484,-0.016678588,-0.0026458297,-0.0001164591,0.07429517,-0.020685064,-0.034377657,0.06206504,0.026177358,0.02244716,-0.0035264327,0.011661027,0.047804933,0.09991249,0.04137042,0.037098344,0.084842905,-0.018264294,0.010326041,-0.027037248,0.05850079,0.08654801,0.025092857,0.059963096,0.03495223,-0.032254096,-0.0053687966,0.033451155,0.042441837,-0.017631182,0.07406705,-0.032848883,-0.015187298,-0.009431,-0.011252062,0.009097495,0.016528662,0.0022299108,-0.07004941,0.04936028,-2.2221082e-33,-0.06861729,0.0015953665,0.00018870606,-0.073939756,0.091220066,-0.114650115,-0.039006278,-0.113289185,-0.11020553,0.07123318,-0.09261805,0.048079453,-0.015803427,0.008091199,0.0689901,-0.07040007,-0.044339743,-0.06305227,-0.025219237,0.09690053,-0.0034635824,-0.008435622,0.0035366865,-0.0016420425,0.058511198,-0.012445132,0.055875566,-0.016898576,0.008376248,0.02093215,-0.01701442,0.0038954406,-0.04310201,0.04039002,-0.04983238,0.036853433,-0.059507255,-0.01999044,0.006886243,0.0007117765,0.102046445,0.013934518,-0.009166786,0.012912493,-0.038491227,0.025418347,-0.021308688,0.07849854,0.059356265,-0.006340791,-0.047596376,-0.030827828,-0.08100578,-0.028568042,0.009359029,0.0110333795,0.08036765,0.06629114,-0.042509243,-0.03841003,0.07311815,-0.012159054,-0.026002785,-0.05544767,-0.09955244,-0.006886736,0.015166725,-0.034851886,0.020631714,-0.0018530405,-0.08810602,0.014722078,0.073246464,-0.058112256,0.089428686,0.0105633475,-0.08898017,0.007978118,-0.07507736,0.08209747,-0.0323921,0.008696144,-0.023519482,-0.0067440686,-0.000116466676,-0.00032361376,-0.07983426,-0.019379625,0.051809985,0.019094234,-0.07835144,0.021475054,0.014211441,0.0319643,-0.034264926,1.096854e-33,0.081528716,0.12835047,0.110165015,0.15298465,-0.0155260805,0.07064029,0.0030909057,0.07699623,0.063421816,0.057927765,0.030646402,0.03853916,0.0049535045,0.030874632,0.043585945,-0.021332761,0.083318576,0.060089532,0.024943037,-0.12879996,-0.049357064,-0.016011631,-0.013356337,-0.02817773,-0.010669435,0.012603543,-0.015095458,0.035857037,-0.06826304,-0.024371484,-0.02387101,-0.032859933,-0.02704249,-0.008113365,-0.038986392,0.05132756,0.024485124,0.039319295,-0.105118066,0.028247667,0.017270783,0.08135368,5.8941565e-05,0.004374595,-0.04232014,-0.0026106418,0.06303972,0.12413965,0.018173803,0.004512501,0.07697045,0.031196851,-0.027425034,-0.061651558,-0.031085497,-0.04279042,0.048379764,0.013494413,-0.009349269,-0.026055912,-0.08346037,0.06260887,-0.029995585,-0.0022446327,0.04656429,-0.0016021153,-0.053526655,-0.088749275,-0.052237354,-0.0038529923,-0.08929898,0.07072647,-0.051016062,0.024948668,0.0066693,-0.06934689,-0.019705543,0.023929752,0.011675433,0.014295173,0.05330743,-0.064492516,-0.06218314,0.020472424,0.053410005,0.10817001,-0.033921756,-0.010972688,0.0435298,0.049887903,0.09022333,0.06296234,-0.016861817,0.013153747,-0.06314475,-1.389829e-08,-0.007050872,0.09191569,-0.06626365,-0.0017505056,-0.025102312,-0.017308144,0.0143657625,-0.001893003,-0.057321463,0.026481736,0.051065866,0.018512886,-0.045363892,0.0719705,-0.014537546,-0.08973687,0.0031376244,0.15831405,-0.007992662,0.037331894,0.007154555,0.02286658,0.019294972,0.047791116,-0.017947853,-0.06618518,0.021204954,0.051104717,0.04678039,-0.009072786,0.047598235,0.10822003,-0.010445413,0.002533671,0.022522278,0.029652055,-0.03129415,0.05092857,0.04218189,-0.02992251,-0.03508566,-0.015702011,-0.058739386,-0.007278465,-0.09318069,-0.054222953,0.011304629,-0.026393529,-0.068749174,-0.00898094,-0.0043676025,-0.07815827,-0.059573874,0.06677665,0.04018022,0.0381148,0.025047068,-0.048069235,-0.008650576,-0.039474055,-0.043113638,-0.037368253,0.014292958,0.024621883} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.75663+00 2026-01-30 02:01:09.858385+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1574 google ChZDSUhNMG9nS0VJQ0FnSUNzOGF5cEZnEAE 1 t 1577 Go Karts Mar Menor unknown Great fun great place great fun great place 5 2021-01-31 01:52:39.833374+00 ro v5.1 V4.03 {E1.04} V+ I2 CR-N {} {"V4.03": "Great fun great place"} {0.051055282,0.029756699,0.05874918,0.005463427,-0.10010088,0.041251563,0.037769515,-0.019605163,0.0040978827,0.030921925,0.090563096,0.013731955,0.015930263,0.010575078,0.0029307976,-0.04337647,0.051439267,-0.05167837,0.05272329,-0.10267297,-0.029489322,0.011183375,0.050918538,-0.0037260691,-0.11407369,0.06042399,-0.046192657,0.03360798,0.080875605,0.03146031,-0.056887954,0.04274228,-0.0045484644,0.00956272,0.030777352,0.015796205,-0.013291615,-0.109135896,0.0638529,0.029836874,-0.035825383,0.032957505,0.033602905,0.0010576904,-0.016596617,0.122401334,0.025396543,-0.055912297,0.13064608,0.07913355,0.051841456,0.03985354,-0.02555825,-0.0073243757,-0.044014633,0.015819155,-0.06716277,-0.12485097,-0.017986843,-0.10382679,0.13845532,0.044658978,-0.048089806,0.03742733,-0.0125341015,-0.014847185,-0.0043759737,0.08379968,-0.011496117,-0.06573249,-0.041936953,0.04694153,0.0687722,0.0085071465,0.021167785,0.054474134,-0.036713578,0.04168045,-0.010394953,0.009499407,0.050505895,0.009005845,0.002099726,0.009239539,-0.0844657,-0.11324904,0.023323225,-0.00064685737,0.048052732,-0.037093535,0.042567894,0.03710806,-0.06685859,-0.004168548,-0.043690212,-0.040493354,-0.008476517,0.009240239,-0.0365714,0.05104883,-0.017344775,0.03457007,0.0006664216,0.068047985,-0.020303024,0.032833233,-0.03327772,0.07760541,0.024829997,-0.037885673,0.010210396,0.044700045,0.07112149,0.08885863,0.008118998,0.07958201,0.01586775,-0.0040147905,-0.07611881,-0.105746426,0.028413985,0.027194422,0.0024235987,0.035472065,0.014416877,-0.03727982,-0.0024645734,-1.7581595e-33,0.013915764,0.052230746,0.0093401475,0.0034649381,0.08398105,0.09107339,-0.02002619,-0.04841582,-0.100539,0.014494972,-0.016548393,-0.00077621924,-0.027645968,-0.0013601367,-0.036192372,-0.05748026,-0.03062562,0.024823502,-0.00034821514,-0.006382641,-0.07603747,-0.058059376,-0.030902017,0.05928125,-0.04287595,0.0027123012,0.004436293,-0.015225909,0.0553798,0.034280263,-0.1041568,-0.06851951,-0.019890707,0.02981296,0.037103835,-0.067022435,-0.047249317,-0.038535096,-0.008707902,0.058279093,0.051599752,-0.008380555,-0.08656504,0.03414222,0.043923844,0.023549337,0.0032408934,0.042829763,0.021494582,-0.026692655,-0.077168375,-0.061502174,-0.12031568,0.09597778,0.0007964555,0.017004915,-0.0303108,-0.0070406124,0.03447959,-0.03402982,0.04484286,0.074117735,-0.100791015,-0.081662245,-0.052269187,-0.022273302,0.08204414,0.013242035,0.03382043,0.04193503,0.019404735,0.0060035377,0.11795185,-0.027974285,0.020124726,0.057234086,-0.057240076,-0.0125770075,-0.006881325,0.033456333,0.04522787,-0.008049746,-0.013941788,0.0085872905,0.056923315,-0.040166754,0.029531103,-0.15856288,-0.052914884,-0.01636633,-0.08850153,0.009203746,0.041744407,-0.035911214,-0.04987045,1.29684495e-33,0.06519426,-0.016394712,-0.024144948,0.0976587,-0.060286388,-0.032343697,-0.07131523,-0.024841275,0.011415384,0.06386394,-0.016980339,0.028947767,0.055681635,0.080749355,0.005986759,-0.015617179,0.06101799,0.059113666,-0.09608992,-0.035805553,-0.05240483,0.06599644,-0.061479975,-0.013703958,-0.00944444,0.048783187,-0.061200418,-0.0047358572,-0.022683892,-0.014548209,-0.07091522,0.06101433,-0.029113388,-0.038821153,0.0674452,0.06896679,-0.005596347,-0.006598315,-0.07482378,-0.04293131,0.09639207,0.021448646,-0.06085108,0.056574967,0.022047002,0.025863359,-0.035528768,-0.03698941,0.03346371,0.017267497,-0.0652947,0.006041353,-0.066684335,-0.07765807,0.0043987823,-0.06646231,0.048976585,0.0040196516,-0.06736691,-0.04979934,-0.06569354,0.087394774,-0.018277211,0.07643586,0.1429234,-0.047143597,-0.009634918,-0.002186728,-0.0649568,0.04348169,-0.1204111,0.036365855,-0.051534943,0.03347351,-0.006792492,-0.036763664,0.07502947,0.030596793,0.059461262,0.045023054,0.03588,0.022745209,-0.07251079,0.014915492,-0.010610352,-0.016811863,-0.063588105,-0.02134546,-0.040243283,0.021420505,0.02002547,0.08125004,-0.087068826,-0.07454591,-0.07039944,-1.3734565e-08,-0.004080411,0.057357434,-0.017379876,-0.0011408938,0.020439632,-0.035986472,0.050653495,0.0119164605,0.0067589413,0.0027176114,0.029077344,-0.041083742,-0.019239133,0.07179907,0.03741488,-0.044077616,0.01693926,0.03852617,-0.021737084,0.018978486,0.020368,0.025017913,0.017281055,0.052921508,-0.08213798,0.036204126,0.019960534,0.02698881,0.03598351,-0.0683985,-0.005572204,0.12822802,-0.06512433,-0.018024502,0.0040511996,0.007248262,-0.0048828586,-0.053846594,0.099427074,-0.05923607,-0.07563275,-0.057698928,0.016020013,-0.028077714,-0.05019948,0.048289202,0.08101587,0.02879288,-0.018051956,0.0026054068,-0.041054517,0.016915252,0.015022599,0.044386502,0.00059587124,-0.0090171015,-0.017892372,0.006334972,0.030530522,0.09411473,0.010823852,0.073202595,-0.0779603,0.04281022} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.768577+00 2026-01-30 02:01:09.864928+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1576 google ChdDSUhNMG9nS0VJQ0FnSUQyMDczQnNnRRAB 1 t 1579 Go Karts Mar Menor unknown Excellent.\nVery enjoyable. excellent. very enjoyable. 5 2023-01-31 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Excellent.\\nVery enjoyable."} {-0.029936995,0.0120005775,-0.01677176,0.044286832,-0.09308798,0.06886322,0.040135004,-0.035151526,-0.01691238,-0.03185438,0.013690344,0.100320585,-0.0024107948,0.05690124,0.019229943,0.06110933,0.07081039,-0.12781687,0.1052324,0.01252422,-0.04320993,-0.03708593,0.08879669,-0.040793046,-0.0524496,-0.045507383,-0.04423448,0.057764288,0.03950893,-0.023282504,-0.062368684,0.055795003,0.003931348,-0.024898347,-0.044251185,0.02735265,0.002475925,-0.05136991,0.050487727,-0.020747483,0.02594634,-0.00069506123,0.07664906,-0.03391596,-0.015907094,0.06194468,-0.017039036,-0.0044987234,0.080021426,0.012976547,0.02688584,-0.024938276,-0.030053621,-0.0058013625,-0.03250713,-0.009723251,-0.037194412,-0.07834739,-0.02526691,-0.11070403,0.04444755,0.042592824,-0.057977203,0.10265877,-0.004794528,-0.042421177,-0.062226422,-0.05136683,-0.026550012,0.023984589,-0.050337285,0.014011186,-0.027686976,-0.0074586063,-0.012993554,-0.040767796,0.036159582,-0.036404748,-0.0020011903,-0.017697576,0.02290706,-0.0451267,0.024918174,-0.016414165,-0.046718277,-0.06509675,0.11016432,0.01106076,-0.01533623,0.025306668,0.028518742,0.067209564,-0.028264515,0.029435689,0.037467625,0.059162766,0.010579638,-0.07825913,-0.058725838,0.051558558,0.029516611,0.11607141,-0.00821621,-0.02754648,-0.065152645,0.0048661,-0.060119394,0.06475675,-0.053971093,-0.0648198,0.044286825,0.026588377,-0.038409956,0.028980138,0.012040468,0.12902032,0.0050686337,0.04972516,-0.017251356,0.043226868,0.06259934,0.042703345,0.014372126,-0.05193409,-0.030812718,-0.10775342,0.09407681,-8.3266745e-33,0.031939056,-0.010184977,0.039507788,0.0017967524,0.034450386,0.030473847,-0.068533175,-0.05430487,-0.06939278,-0.0016282756,-0.072753,0.058794037,0.007987918,-0.011020808,-0.013719153,-0.057040736,-0.013235808,0.10969632,0.03337779,0.05782581,-0.0056815986,0.07461502,-0.050087083,0.07460289,-0.013275343,-0.047137383,0.026172405,-0.07831869,0.10663674,0.030436767,-0.07241399,0.011299102,-0.04191985,-0.00054662564,0.071156755,0.07834222,-0.034541164,0.019505942,0.005795572,0.011894346,-0.012681189,-0.014549107,-0.054099496,-0.027752927,-0.071076386,-0.023881374,0.017469143,0.030218361,-0.0044143307,-0.007232613,-0.04111876,0.005293363,-0.02180755,0.037232015,-0.0075701186,0.05311863,-0.018335972,0.02476699,0.020090569,0.018450102,0.097253844,0.10820525,-0.036570154,-0.05047565,-0.10966628,0.012315441,0.0041811285,-0.040210187,0.07835818,-0.012519794,-0.02337214,-0.0050558425,0.14491682,-0.009893065,-0.0073889545,-0.009470493,-0.10730448,-0.023045644,0.027425172,0.020612115,0.02370279,-0.004073623,-0.011065657,-0.005968867,0.04651429,0.03054018,-0.00037340613,-0.12415,-0.042517923,0.03811648,-0.048783306,-0.0018512694,0.124211945,-0.028736347,-0.024889536,5.860527e-33,0.082574315,0.062473647,0.004500955,0.1211014,-0.07609929,-0.012887933,-0.069009654,0.08702243,-0.061233085,-0.011827206,-0.005215788,-0.012565446,-0.029590292,0.021728532,-0.06017508,-0.006100177,0.02084754,0.024747036,0.008141184,-0.036661524,-0.006186408,0.10598478,-0.024522407,-0.025601186,-0.022177573,0.03348334,0.035152294,0.058595207,-0.01690385,0.016549304,0.0032928512,-0.08182159,-0.022188447,0.0047020023,0.014207406,0.14898501,0.069631875,6.7817804e-05,-0.0726959,-0.070162304,-0.025854623,0.014001721,-0.056843396,0.04575277,0.010070333,0.027259132,0.08427176,0.005928321,-0.06274365,0.060767107,0.0356731,0.013309633,-0.07760803,-0.13385467,-0.042292472,-0.0189627,0.036619294,-0.018263428,0.0350804,-0.057778485,-0.05349992,0.06914996,-0.0792511,0.029235918,0.10946268,-0.00960714,-0.03851775,-0.036644027,-0.06995938,-0.048409384,-0.034707896,0.011709839,0.0037026042,-0.021695727,0.09972473,-0.071918435,0.028013784,-0.08430347,-0.016491808,-0.0385755,-0.04109218,-0.077331394,0.0278874,-0.089197196,0.014852197,-0.026214285,0.023186374,0.018451905,-0.024598068,0.10714448,0.0504897,0.022696067,-0.048597567,-0.066485256,0.03301199,-1.9929466e-08,0.0002783034,0.029271362,-9.7175856e-05,0.0025259387,0.0055919336,-0.035596456,0.055384085,-0.01812616,-0.040521815,-0.041438933,0.10087118,0.02064479,-0.0019872703,0.06287277,0.07364341,-0.022842176,0.086561605,0.10686518,-0.07210151,0.06677753,0.062349442,0.0608337,-0.0112473965,0.03855121,-0.04097923,0.08852169,-0.0609569,-0.03360326,0.0013931312,-0.010705878,0.031632066,0.13937461,-0.105596766,0.024432505,0.003312517,-0.04913925,-0.004787931,-0.033184312,0.051658757,-0.02934469,-0.026386408,-0.01106248,-0.004970477,-0.044591792,0.013632077,0.00012942716,0.017967455,0.02057262,-0.019004684,0.0148396995,0.044839427,0.01528014,-0.06567475,0.02637528,0.043290284,0.0036603503,-0.024780989,-0.05666591,-0.02292437,0.05514709,0.03413554,0.01544485,-0.04541781,0.064913504} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.793709+00 2026-01-30 02:01:09.87583+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1577 google ChdDSUhNMG9nS0VJQ0FnSURVbzV2NjRnRRAB 1 t 1580 Go Karts Mar Menor unknown Well run and good carts. well run and good carts. 5 2020-02-01 01:52:39.833374+00 en v5.1 J3.01 {O1.02} V+ I2 CR-N {} {"J3.01": "Well run and good carts."} {0.012566856,0.04575413,0.03255426,0.042997472,-0.06722259,-0.010559413,-0.08350685,0.0012312572,-0.09269307,-0.013218277,0.027028436,0.098615296,-0.033419106,-0.022524737,-0.0030855525,-0.022916567,0.11787241,-0.010265433,-0.02360657,-0.017923411,-0.0851966,-0.015107767,0.08352087,-0.015801495,-0.10860739,0.040191263,-0.057344835,-0.0070104385,0.014145875,-0.009073705,-0.034909945,0.00463593,-0.0012010987,0.009670883,-0.005576735,0.0064616944,0.11160988,-0.09799038,0.058356095,-0.046749853,0.057370093,-0.10523107,-0.019783974,0.08916015,-0.060626283,-0.00046401998,0.034225456,0.012663488,0.037303343,0.030771775,0.02236012,-0.029731534,0.053162113,-0.048819683,0.0050419383,0.04594052,-0.06486834,0.02738565,0.028684668,-0.050275072,0.06229489,0.009520464,-0.040298108,0.03926957,-0.0005879322,-0.035693597,-0.05396903,-0.025137924,-0.05978334,-0.0020886061,-0.028692033,0.032125283,-0.030765701,-0.018014837,-0.04495881,0.050492182,0.031067258,-0.109572455,-0.01998797,0.069170386,-0.053130496,-0.06595398,-0.040175393,-0.0120636495,-0.047535565,-0.060619477,0.037503876,-0.029121011,-0.032128137,-0.004359461,-0.031654168,0.02393613,-0.016268698,-0.013851573,0.02522284,-0.0073962985,0.04010518,-0.0020359799,-0.026094185,0.06782554,0.060566142,0.08894558,0.052660003,-0.001972633,-0.05234692,0.0036155153,-0.026303634,0.01598331,-0.01706399,-0.030867938,0.010219724,-0.025194181,0.06379761,0.034354255,-0.054360993,-0.008405689,-0.075262934,0.03348004,-0.043151196,0.053310256,0.048847247,-0.0015264677,0.067392364,0.025063498,-0.032587733,-0.07578401,0.097954676,-5.4607693e-33,-0.039474312,0.04739146,0.04396939,0.0145490905,0.053480014,0.07356923,-0.010315319,-0.024847722,-0.07850425,0.068127654,-0.00013055089,0.03380865,-0.023400981,0.039351523,0.03801721,-0.0073030316,-0.04586311,0.0075665745,0.0052139484,-0.013055778,-0.01391705,-0.048694808,0.004509775,0.014824296,0.09497237,0.0364855,0.058013868,-0.0155134,0.044365406,0.04651013,-0.017004084,-0.027682438,-0.05192089,0.06727215,-0.007067157,-0.030993745,-0.13773303,-0.0018880322,-0.027425367,0.03408862,-0.039391264,0.002956412,-0.014118199,-0.04032216,-0.039365042,0.015912902,0.026286155,0.023373738,-0.026770819,0.0076976214,-0.05777512,0.008184498,-0.04922974,0.06833491,-0.021441992,-0.08962272,0.07623751,0.06538526,-0.06272684,0.0010051216,0.04742253,0.07554011,-0.11936912,-0.032098923,-0.069876224,-0.014073974,0.031001236,-0.015255465,0.022095555,0.058625206,0.007236328,-0.024253925,0.017289033,0.025174273,0.0015252525,0.08357232,0.0003855201,0.023419293,-0.06995812,-0.03986984,-0.009409498,-0.010630358,-0.03725214,-0.0387737,0.052464172,0.010071862,-0.06428868,-0.09333003,0.018716143,0.00071616046,-0.016886478,0.011174106,-0.0067077745,-0.012988181,0.012269297,4.3769378e-33,0.08186453,0.08902801,0.05675864,0.14637665,-0.020722583,-0.0083950935,-0.027553823,-0.026200209,-0.0067834673,0.0411628,-0.0935173,0.0139774615,0.041938797,0.093723305,0.10604816,-0.011646754,0.12446409,0.010317614,0.009730032,-0.10507965,0.019531207,0.14905152,-0.08514071,0.039293434,-0.018036101,0.053970348,-0.13643757,-0.048818108,-0.12714133,0.034223262,-0.027096681,-0.050027702,-0.041439448,0.023085684,-0.08206402,-0.0023653728,0.007258865,0.034515426,-0.009958977,0.05050862,0.07239145,-0.022368163,-0.010123195,0.08454902,-0.056741778,-0.023667218,0.013304459,-0.02346329,0.022980457,0.05180977,-0.0025320004,-0.03614908,-0.08584746,-0.022366924,-0.029712256,-0.058796827,0.044195913,0.0020225244,-0.023250228,-0.063649036,-0.09266234,0.109574996,0.003025631,0.06945747,-0.0036610528,-0.08356073,-0.042633686,-0.06292552,0.015731633,-0.0043847733,-0.028052578,0.045687858,0.017424388,0.06733883,-0.0776956,0.0047474364,-0.0035531449,-0.039023064,0.035320625,0.0562515,-0.07675072,-0.06113555,0.024275836,0.016522584,0.030795164,0.028137561,-0.06724653,-0.059564255,0.0208838,0.068491034,0.048642125,0.10500064,-0.09226819,0.057899047,-0.010684732,-1.5566961e-08,0.01720619,0.017347328,0.016423564,0.08777134,0.019622596,-0.0075959642,0.059638683,0.12709013,-0.016253559,0.05542954,0.13979691,-0.014456275,-0.005818398,0.064176,0.09252504,-0.01569593,0.017140893,0.096651524,-0.06431632,0.061371267,-0.06593733,0.009051953,0.052067604,0.06587967,-0.059387114,-0.06254578,0.01652808,-0.03333058,-0.0016884514,0.10001949,0.0031151834,0.037926912,0.015293567,-0.037118204,0.045608,0.037165917,-0.07569083,0.027448498,0.023247179,0.0147809675,-0.023590146,0.054715607,-0.09836338,-0.033899866,-0.020434871,-0.077204585,-0.034796566,0.054000627,-0.03600712,0.010067329,0.0020653452,-0.030557876,0.03206347,0.044191238,0.079743765,0.035318628,0.010799783,-0.014979606,0.022997126,0.024946753,0.041527618,-0.05956146,0.032093376,-0.040989947} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.806363+00 2026-01-30 02:01:09.879903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1578 google ChZDSUhNMG9nS0VJQ0FnSUN1ZzZhVVdBEAE 1 t 1581 Go Karts Mar Menor unknown Another great experience another great experience 5 2026-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Another great experience"} {-0.010932593,0.014308052,0.033759765,0.018430408,-0.047448378,-0.034297492,0.01599955,-0.015015416,0.046156976,-0.06360796,0.09993261,0.053979393,0.038388375,0.024104593,-0.02065788,0.039227568,0.05629134,1.5655034e-05,-0.03080345,-0.04316538,-0.038186215,-0.06604314,0.047940943,0.01766657,-0.08842547,0.04204747,0.009371766,0.06963266,0.08015814,-0.026760133,-0.019607864,0.093372956,-0.05107443,-0.008312906,0.0326824,0.051261306,-0.024666158,0.015029954,-0.020943303,-0.07760843,0.0065760273,-0.027180221,0.014407167,-0.0516959,0.022938255,0.031738076,0.030499069,-0.031568304,0.043394756,0.037456743,0.032391418,-0.05231803,-0.0051867464,-0.036843684,-0.04230806,0.068109035,-0.035962563,-0.09283438,-0.019745527,-0.09712498,0.035573877,0.06240155,0.014854493,0.029990092,0.026145097,0.0098278355,-0.054812726,0.055837207,-0.058717296,0.020343464,-0.033579756,0.029943403,-0.024522893,-0.0370602,0.014939428,0.048355136,0.0141070485,-0.019615024,-0.03916396,0.02430586,0.052525762,0.026369603,-0.011263377,0.026152533,-0.09581639,-0.06970296,0.0037097763,-0.07532414,-0.01433044,0.0074762893,0.043771368,0.018773576,-0.05781064,0.025532668,0.0627728,-0.048363913,-0.020049606,0.011070589,-0.05171422,0.0886097,-0.030551296,-0.00991665,-0.057434782,-0.018286286,-0.0464098,0.02223725,0.0013635317,0.008773579,-0.019889811,-0.038381178,-0.0059356196,0.06797386,-0.03133556,0.07828756,-0.011895756,0.15144747,0.03285561,0.08659036,0.000997279,-0.003837396,0.052081395,0.028728059,0.042712416,-0.04176515,0.034206897,-0.093857184,0.09355232,-2.3592258e-33,0.010688364,0.008692399,0.014552242,-0.019283334,0.1203544,0.092334226,-0.016833542,-0.0028297706,-0.06815774,0.017494056,0.02360262,0.05714615,0.014143588,-0.0025744783,-0.04535604,-0.04533391,-0.10549428,0.08587066,0.01060654,0.010176731,-0.05995401,0.04389334,0.00677304,0.08549882,0.011861372,0.082409345,0.010465548,-0.026578227,0.0909706,0.010089635,-0.085603185,0.021922896,-0.0501923,-0.01766493,0.003824516,0.1053961,0.034916945,-0.06942399,-0.0036004568,0.038613085,-0.022981748,0.005515738,-0.078286104,-0.05581643,-0.0114998445,-0.007968829,-0.008420069,0.011632645,-0.039665114,-0.052763376,-0.0956142,-0.0022463377,-0.001009302,0.01211654,-0.031271517,0.0064499434,0.08469519,-0.018241528,0.058286496,-0.01811126,-0.0023775878,0.0535047,-0.09609746,0.009864705,-0.079891756,-0.005817564,0.07585181,-0.02135899,-0.026140226,0.032525286,-0.019684628,0.013508027,0.14993508,-0.04615195,0.006472659,-0.08673248,-0.04130301,0.029596796,0.037075665,-0.028065294,0.021544574,-0.029811349,0.010713956,0.014765033,0.123910815,0.060228497,0.0046551274,-0.10914124,-0.08179057,0.03635358,-0.06230073,-0.0046376013,0.026983367,-0.032663252,0.039663337,1.5679317e-33,-0.045730155,0.028251898,0.0050629433,0.09501252,0.058509044,-0.049193125,-0.038033035,0.05927423,-0.071897,0.0029765808,-0.013992185,0.052495558,0.09690476,0.055744857,-0.022217922,-0.025820872,0.081223965,0.11254962,-0.03562021,-0.01407564,0.054345056,0.09187735,0.013867641,-0.027626451,-0.040317565,0.017071677,-0.016113454,0.05434216,-0.096135974,-0.02905248,0.05088163,0.09194552,-0.036409475,-0.011758133,-0.031162983,0.04708024,0.09137561,0.04795041,-0.07503045,0.0012263614,0.06403275,0.008887136,-0.005905115,0.025593035,0.0011247939,0.012283579,-0.010097831,-0.054699805,0.005232822,0.041060794,-0.08271575,-0.010577775,-0.06275857,-0.047343113,-0.061144836,-0.097317375,0.058230117,-0.08203763,0.016368914,-0.08387298,-0.029787214,0.05539888,-0.078657866,0.03683192,0.10211369,-0.040346492,-0.010464301,0.03743273,-0.11038616,0.050544113,-0.15972796,0.010895935,-0.08981908,0.060878787,0.024531754,-0.054814637,0.030666178,-0.070045754,-0.029700043,0.022553103,-0.07397846,-0.081745,0.0056477734,0.06240616,0.087417044,0.002460395,-0.005280831,-0.04840478,-0.039211664,-0.026492048,-0.03620575,0.015404597,-0.10284517,0.019218216,0.04012398,-1.558487e-08,-0.07917703,0.01876761,-0.044623706,-0.019706553,0.07449148,-0.054802254,-0.03103199,-0.022549761,-0.023796638,-0.042194717,-0.0015602629,0.0098703755,0.051402044,0.06659797,0.078533664,-0.012503997,-0.032102756,0.07337227,-0.019561538,0.026934305,0.00901763,0.06181683,0.07085472,-0.042314447,-0.047103524,0.049228158,0.01612215,0.013113243,0.011277977,-0.09839039,-0.038652033,0.029544188,0.010695214,-0.024268623,-0.026585542,0.034120962,0.04880727,0.0234727,0.062982835,-0.03182192,-0.05207587,-0.10441534,0.001228511,0.014806076,-0.06582774,-0.029025039,0.016715927,-3.294877e-05,0.054502226,0.063695535,0.021091128,0.0188715,0.0366222,0.05810404,0.068312526,0.0009973942,0.03671309,0.044184532,-0.034578573,0.086023174,0.021122495,-0.094177134,-0.047822714,0.07691103} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.821268+00 2026-01-30 02:01:09.882703+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1579 google ChZDSUhNMG9nS0VJQ0FnSUNvNzhlUkt3EAE 1 t 1582 Go Karts Mar Menor unknown Very good track very good track 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Very good track"} {-0.11654393,-0.00068562635,-0.010492332,0.0009083631,-0.029749546,0.10102494,0.03521525,-0.049396195,-0.02610822,-0.08147042,-0.043965187,0.024223449,-0.045320485,-0.034372486,-0.04195609,0.06436686,-0.004386757,-0.06046083,-0.008719339,-0.026904004,-0.10520462,-0.012186967,0.05438587,0.05358434,-0.1486468,0.07664418,-0.008319649,0.014879616,-0.010232423,-0.028702065,-0.057065275,0.052200675,0.017044354,0.009526828,-0.033559725,0.011913624,0.0112609975,-0.032025542,0.011699022,0.024961587,-0.023539836,-0.0106494455,0.06810937,-0.03268225,-0.009710389,0.08288356,-0.023424102,-0.07757636,0.053234827,0.036666054,-0.025910968,-0.017250907,0.02938135,-0.046631142,-0.047231935,0.05018003,0.013819927,-0.018891426,0.02249673,-0.11216324,0.047411073,-0.021105777,-0.07806962,-0.05384173,0.08793164,-0.03172157,-0.04603386,0.04395411,-0.011811134,0.03500399,0.05468523,0.046828683,-0.0108757345,-0.042381104,-0.016541181,0.05126865,-0.022148466,0.023202047,-0.0092308335,-0.053023815,0.05019524,-0.06236948,-0.015683625,-0.0732273,0.033590127,-0.04527995,0.063598305,-0.010304102,-0.03833295,0.021795873,0.0069802594,0.095502086,-0.018935855,-0.038773645,0.030969072,0.0418508,0.038721632,-0.017632263,0.010697994,0.109113716,0.09571651,0.047631733,0.005081115,0.10714336,-0.014571513,-0.029867798,-0.0021253363,0.102964364,0.034507994,-0.044986125,0.13710514,-0.011435324,0.006080691,0.057858456,0.058340095,0.077918515,-0.018477775,0.033911075,-0.051370796,-0.027455246,-0.022108942,0.011154442,-0.008340912,0.011465191,-0.029869933,-0.051268864,0.065994576,-4.2712667e-33,0.0013130149,-0.0034999175,0.020875534,-0.06652486,0.10056423,0.006872555,-0.07635958,-0.02398595,-0.08957442,0.06610187,-0.06410775,0.00497782,-0.01816855,-0.037672345,0.01423637,-0.1029415,-0.05999697,-0.04266669,-0.010938403,0.12279297,-0.012174982,0.0723996,-0.007966893,-0.065955624,0.03499516,0.0019161582,-0.003673794,-0.044771776,0.04807949,0.03270002,-0.0229164,0.007320133,-0.03024636,0.030172108,0.007581786,6.547044e-05,-0.06287746,-0.0032921918,0.010785838,-0.032357264,0.075989954,0.012991706,-0.0105189895,-0.026349684,-0.04607126,0.042197257,-0.025891291,0.1098054,0.105669975,-0.0006323573,-0.00901719,-0.030212633,-0.13337532,-0.049493257,0.03813246,-0.016027981,0.05544086,0.064945295,0.01655977,-0.007952884,0.090188116,0.05368012,-0.068724796,-0.050505634,-0.076758996,0.06735467,-0.00461828,-0.021098925,0.046047315,0.017463941,-0.10501366,-0.062385477,0.09271583,-0.05224022,0.049690463,-0.00011423692,-0.054374754,-0.009663463,-0.03877061,0.00838393,-0.04631842,-0.01875202,0.024524914,-0.044709183,0.03453766,0.008480146,-0.032274105,-0.04433709,-0.01757677,-0.02390757,-0.0408262,0.0093435235,0.0032555733,0.0099562565,-0.039027385,3.2351206e-33,0.06247349,0.13495044,0.10526883,0.10310848,-0.02412539,0.07577567,-0.024600236,0.08395333,0.05868537,0.08125646,0.00858435,-0.020433923,0.023260428,0.03542379,-0.014265306,-0.04618254,0.09586386,0.009214645,0.032054912,-0.098925486,-0.054195285,-0.057508886,-0.0021616474,-0.007355831,-0.017396808,-0.0026640065,0.024279602,0.013091721,0.010241749,-0.051163465,-0.004826669,0.024091706,-0.046017956,-0.064019136,-0.041036773,0.08910441,-0.0016280308,0.024990052,-0.07106253,-0.0046627405,-0.006091313,0.07347361,-0.003377147,0.03215364,0.008173923,-0.0016901005,0.008266049,0.16828004,-0.057179186,0.05503122,0.018079638,-0.020549474,-0.060720026,-0.057108343,-0.043028925,-0.016241811,0.007043574,-0.041477367,-0.013652805,-0.049098644,-0.0876113,0.09829816,-0.0497833,-0.018364087,0.042449117,-0.00046773042,-0.042078797,-0.07422112,-0.039360322,0.047886968,-0.071644254,0.035659812,-0.056099914,0.042104457,-0.0145788845,-0.08057025,-0.029224636,0.00013213643,0.01564623,0.0007033741,-0.012472534,-0.08861174,-0.016030334,-0.002346524,0.025797656,0.0872814,-0.0017583849,-0.022411743,-0.0010295913,0.09332036,0.062158518,0.05755261,-0.017658621,-0.010441552,-0.062788874,-1.341577e-08,-0.013919657,0.08243047,0.00655728,-0.061328184,0.013623877,0.008554878,0.06962416,-0.03656471,-0.048522405,0.016759085,0.102887996,0.0017730806,-0.05521919,0.116872,-0.04366429,-0.078884035,-0.021078695,0.12469357,-0.03336811,0.0591148,0.008327909,-0.019119486,0.050098393,0.032840267,0.028574137,-0.029812405,-0.01586575,0.061435837,-0.024618201,-0.047362376,0.06301076,0.12300205,0.01274919,-0.0072325785,0.04313046,0.049162276,0.011731329,0.04174527,0.056813445,-0.08515159,-0.028215768,0.022835307,0.014305285,-0.016412199,-0.039297633,-0.07953408,0.017529488,-0.001145983,-0.032559954,-0.019198794,0.031112345,-0.07462245,-0.05656723,0.06561738,0.048554245,0.073124416,-0.0292451,-0.022455694,-0.046926588,-0.014605347,0.015513341,0.01722211,0.03284855,0.048959166} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:24.836469+00 2026-01-30 02:01:09.886491+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1321 google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB 1 t 1324 Go Karts Mar Menor unknown Hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable.\nLas medidas higiene son visibles en todo momento. Cuando la gente deja los cascos le aplican un spray para la desinfección. Las mesas de la terraza son limpiadas en el momento que se dejan libres.\nLa gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.\nEl circuito y los coches estupendos.\nSin duda volveremos a celebrar algún otro evento con ellos. hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable. las medidas higiene son visibles en todo momento. cuando la gente deja los cascos le aplican un spray para la desinfección. las mesas de la terraza son limpiadas en el momento que se dejan libres. la gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad. el circuito y los coches estupendos. sin duda volveremos a celebrar algún otro evento con ellos. 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"E4.03": "Las medidas higiene son visibles en todo momento. Cuando la gente deja los cascos le aplican un spra", "O1.02": "El circuito y los coches estupendos.", "O1.05": "Hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable.", "P1.01": "La gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un co", "R4.03": "Sin duda volveremos a celebrar algún otro evento con ellos."} {-0.019390175,0.07494093,0.04681973,-0.047715835,0.008324385,0.042423353,0.105678305,0.058361452,0.002251892,0.05577239,0.070893325,-0.013653174,-0.038708795,0.008510677,0.026032414,0.031620406,-0.066721156,0.022228053,0.0067501497,0.071324565,0.041771494,-0.040571973,-0.07024822,0.1329969,-0.12668484,0.06909108,-0.018152842,-0.0013371072,-0.030400839,-0.0759394,-0.007214361,0.04078613,0.052736603,-0.04637051,-0.0007665719,0.0034014839,0.02064982,-0.081752144,-0.060880482,0.08935935,-0.047324315,-0.040334344,-0.0327106,-0.047084175,0.0023079168,-0.07840184,0.0506321,0.04119654,0.03396625,-0.06164834,-0.04047232,-0.07556949,0.006636471,0.0015230272,-0.04972297,-0.059724573,-0.054289874,-0.04929462,0.05933949,0.03184057,-0.03191846,0.07654408,-0.06070187,0.05384979,0.0021411662,-0.042893343,0.03633612,-0.037202124,0.002403414,0.05874257,0.12633008,-0.021630945,0.040310577,-0.00108297,-0.017483182,0.10523557,0.018784665,0.0022689276,-0.0640596,-0.08068886,0.029274726,-0.06818131,0.029187018,-0.023335183,-0.022765761,0.018727854,-0.016950505,-0.008534635,0.031454813,-0.030477356,-0.03664548,0.03864318,-0.08398637,0.019992216,-0.020854576,0.019553537,0.02496847,-0.09004712,-0.002946946,0.008244506,0.040342167,0.0015549605,-0.005738406,0.03369684,-0.03230266,0.0018939032,-0.012837319,-0.09915493,0.025002936,0.050737455,-0.06920022,-0.08478605,-0.044233266,0.0044085165,-0.10008538,-0.03173689,-0.03629127,-0.07072449,0.009982769,-0.06691707,0.06348262,-0.053780653,-0.037156627,-0.0147375325,0.016872855,-0.07401815,-0.0011418733,1.0059153e-32,0.015637627,-0.040607143,-0.029698094,0.042984392,0.049505804,0.048870843,0.008673786,-0.08795491,-0.0050279894,-0.06361159,-0.123517096,0.05193452,-0.010116425,0.05370974,0.030996999,0.003957723,0.014558628,-0.052080967,0.022200605,0.09039142,-0.045561027,-0.0038985903,-0.08202117,0.051584408,-0.021676462,0.11134186,-0.04323861,0.01101881,-0.08717177,0.061790287,0.046952274,0.010349627,0.019140048,0.03463964,0.0037087835,0.0031387869,0.06777802,0.035085663,0.023032429,-0.041476127,-0.057251226,-0.0029247515,-0.013294202,0.03780841,0.040423907,-0.0017844832,-0.01859771,0.014105796,0.038489938,-0.03821784,-0.024083164,-0.011807715,-0.022597538,-0.02827928,0.04549876,0.11241845,-0.10933334,-0.0066001783,-0.051457003,-0.0012762634,0.04205316,0.04885742,0.024625985,-0.068095475,0.0010260415,-0.02912532,0.08082392,0.020625716,0.121896476,0.0091403555,-0.0986036,-0.0057605114,-0.021315673,0.007565157,-0.005783252,-0.013507534,0.08975234,0.03345034,0.020227557,0.06534789,-0.052093472,-0.092315696,0.04131899,0.021511259,0.043628592,0.008538836,0.043433327,0.091157556,-0.06936326,0.09943306,-0.0045261313,0.115853764,0.14033918,-0.08286364,-0.011683101,-1.357281e-32,-0.027335329,0.025742004,-0.008730966,0.02470674,-0.03924243,0.021057453,-0.04515966,-0.0652952,-0.025710039,-0.0125074,-0.0849154,-0.08007369,0.024473548,-0.10391353,-0.06775307,0.08684434,-0.032425158,-0.051636614,-0.08754289,-0.022310136,-0.027126027,0.108287826,0.019061778,-0.010420647,-0.014582135,-0.114035115,-0.016022487,-0.0030936832,-0.089352794,0.012229005,-0.0010525485,0.024356047,0.0048526763,0.008696245,-0.017573977,0.07491027,0.060538713,-0.034256354,0.005963256,-0.0072064693,0.027963944,0.03163807,0.033900045,-0.027402455,0.021825803,0.07332646,0.0026262098,-0.075085506,-0.04306433,-0.01280526,0.00903058,-0.055165675,-0.060623117,0.014181587,0.07365682,-0.06635993,-0.00061557355,-0.06802222,-0.112548515,0.04651683,0.08958765,-0.029981526,-0.103490695,-0.035109185,0.040514506,0.03336199,-0.04826259,0.012002918,0.070844315,0.06255913,0.06424393,0.0057247775,-0.08417003,-0.025332183,-0.05401543,-0.029199028,-0.09947363,-0.037384897,-0.06575115,-0.046846997,-0.022806892,0.036115192,-0.05622859,-0.089269765,0.04958905,-0.023381814,-0.05010542,0.04544554,-0.004722108,0.022764165,-0.004270177,0.029427433,-0.05706002,-0.064798206,-0.013760567,-5.8900003e-08,0.04104288,0.02304492,-0.032107808,-0.028974542,0.0026239892,-0.032042142,-0.023317559,0.02294076,0.037038993,0.017903006,-0.060539726,0.021428615,0.016997224,0.05726469,0.047575384,0.021087851,0.101984926,0.08819691,-0.04355697,-0.05216391,0.06975485,0.005856675,-0.038583104,0.016082145,-0.012830542,-0.019651506,-0.03825771,-0.040085245,-0.056420315,0.0030329488,-0.0252082,-0.030339938,-0.048468437,-0.092549704,0.036298223,-0.0126602575,0.011657862,0.00068009546,-0.024503026,-0.008539722,0.06915109,0.008331135,-0.038169447,0.02475564,-0.0598455,-0.10856471,0.053614974,-0.037136886,-0.01481987,0.076107755,-0.03796041,-0.02684031,0.04610996,-0.0045106173,0.04103827,-0.018986212,0.050790388,0.0021636556,0.010975083,-0.011282888,0.01955397,0.10178096,0.03898785,-0.05584819} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:37.907157+00 2026-01-30 02:01:08.970058+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1423 google ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB 1 t 1426 Go Karts Mar Menor unknown Excellent , staff friendly and courteous, great choice of karts for all ages. If your part of a group and you decide not to go on a kart there is a Nice seating area to get a Drink or just chill and watch. excellent , staff friendly and courteous, great choice of karts for all ages. if your part of a group and you decide not to go on a kart there is a nice seating area to get a drink or just chill and watch. 5 2022-01-31 01:52:39.833374+00 en v5.1 P1.01 {P1.02} V+ I3 CR-N {} {"E1.02": "If your part of a group and you decide not to go on a kart there is a Nice seating area to get a Dr", "O2.02": "great choice of karts for all ages", "P1.01": "Excellent , staff friendly and courteous"} {0.026391327,0.018990062,0.039951466,0.06143958,-0.09313533,0.044851307,0.006290887,-0.05451702,0.019353518,0.030342242,-0.011637681,0.031370297,-0.013056786,0.005754013,0.015289397,-0.11346006,0.1003763,-0.103054516,0.057543576,-0.10176413,-0.08064233,-0.052545562,0.007963821,0.016076773,-0.090195484,-0.047610637,0.011181627,0.06813201,0.05346372,0.014271502,-0.09047116,0.03710986,0.07681944,-0.02450963,-0.10760204,0.019232726,0.04194424,-0.026844844,-0.07989332,0.030548284,0.03282433,-0.02393189,-0.02315958,0.02987048,-0.009418951,0.010694989,-0.08042756,-0.053925272,0.018848838,0.05660457,0.07321479,-0.06415675,0.11216929,-0.046074495,0.046424348,-0.030213462,-0.13024533,-0.0328084,0.10006639,-0.0066149165,0.048553053,0.025076345,-0.04883495,0.03652177,-0.05880489,-0.07958322,-0.054099392,0.08864634,0.015927281,-0.051524322,0.022072313,-0.019102357,0.08300299,0.026459523,0.008181919,-0.026642023,-0.018011158,-0.06514404,-0.050493892,0.06725195,0.043824106,-0.011637798,0.012680146,-0.029989975,-0.058252838,-0.1113384,0.050317153,-0.02622826,-0.026877627,-0.0148871485,-0.00038176603,0.08887696,-0.03605398,-0.076728255,0.090820365,0.0830027,-0.016794639,0.00052879937,0.0102910595,-0.009027036,0.023640323,0.07487768,0.039799962,0.028770769,-0.03898947,-0.022881646,-0.100311644,0.033606123,0.05658596,-0.0017781989,-0.046813305,0.04962619,-0.024808813,-0.025283884,-0.019441087,0.011774492,-0.03753034,0.013684886,-0.025993703,0.039558265,0.07013259,0.043740403,-0.0033074396,0.05108419,0.05757815,-0.016458033,0.003252968,-2.56286e-33,-0.102796115,0.044981387,-0.051471043,0.025231158,0.072748706,-0.1442504,-0.030921267,-0.14284927,-0.0933589,0.051890586,0.022448972,0.056930795,0.01587167,-0.029119184,0.09539655,0.022678798,-0.048090123,0.0015630426,-0.07374275,-0.026714368,-0.028114991,-0.040432755,-0.03001695,0.10381577,0.015992852,0.014863719,0.10601473,0.011724506,0.047582876,-0.013946432,-0.054794513,-0.022737768,-0.08635327,0.0064423,-0.04294106,0.0034039507,-0.034246653,-0.023758342,-0.04290067,0.0006919317,4.5715908e-05,-0.048801757,0.010741826,0.049411234,-0.03688565,0.034550242,0.008417818,-0.040538855,-0.00038015915,0.029742211,-0.07217002,-0.0068379757,0.025318157,0.05425851,-0.030888023,0.014960763,0.096467756,0.03592536,-0.041676264,-0.10121492,0.026206495,-0.02731152,0.0044986415,-0.060760405,-0.07068717,-0.02217844,-0.02368042,-0.043990888,0.06780887,-0.033292092,-0.03950411,0.07846389,-0.0074148257,-0.023970585,0.019214682,0.05714582,-0.047068432,0.00725763,0.016523173,0.10198555,0.047951557,-0.0013410846,-0.007420924,0.048703756,0.06850416,-0.06733597,-0.06567391,-0.068382,0.011540962,0.023974294,-0.05007895,-0.007958814,0.04610917,0.10487581,0.013763683,-6.6462317e-34,0.08266927,0.040983297,0.071507074,0.07705797,0.015427343,-0.004025681,-0.00034964393,-0.02068763,0.060849078,0.044152807,-0.050847393,0.09421133,-0.014029478,0.02334756,0.028158499,-0.0042432505,0.06277752,0.04728981,0.008784037,-0.09632938,0.016654674,0.005845821,-0.023420332,-0.07127508,-0.007791019,0.068095565,-0.06042415,-0.057484563,-0.14823647,0.034863673,-0.004314502,-0.083818756,0.04315386,-0.0036754115,0.028900053,0.011704408,0.054778993,0.03981851,-0.11643976,0.05689457,0.08331777,0.026520992,-0.0016084678,0.003880939,0.01015138,0.009899543,0.085113004,-0.035331003,0.026162041,-0.08821576,0.041772578,0.07253266,-0.009503898,-0.02750503,-0.0205671,-0.02715439,0.02337978,0.027908256,-0.0066402885,-0.031317804,-0.01951042,-0.008173855,0.0037486616,0.04057675,0.013840449,-0.03801943,-0.04908994,-0.018061027,-0.06014189,-0.026002401,-0.08955477,-0.0005083176,-0.040943425,0.039116964,0.02322215,0.0009720961,0.07944914,0.008990673,-0.009687716,0.041259628,0.04489628,-0.041663937,-0.028333947,0.037513077,0.02308755,0.03006332,-0.0033070003,-0.004422948,0.004744568,0.0058979215,0.068414286,0.032367885,-0.023588695,-0.021240465,0.006210516,-3.2852164e-08,-0.006509624,0.038564403,-0.069287784,0.03859825,-0.032540623,-0.08279502,-0.031922124,-0.016549276,-0.042276558,0.05724205,-0.033792697,-0.006151677,0.018366128,-0.03577279,0.06672677,0.034674823,-0.049698018,0.08091573,-0.02465075,0.052150406,0.042647377,0.0153629845,-0.023890415,0.061138917,-0.08249269,-0.055334754,0.014694473,-0.014924725,0.008569351,-0.015462717,-0.041930128,0.092205696,-0.06840728,0.056094542,0.01670228,-0.03491563,-0.11118957,0.048441693,0.026416557,0.050790895,-0.08099307,-0.07682718,-0.1354738,0.009243815,-0.068446,0.07075323,-0.020771919,0.04219393,-0.083406925,0.027692473,-0.030896783,0.0009170336,0.0027962136,0.0054804184,0.019205034,0.0074374117,0.056250334,-0.045641385,0.028060354,-0.07435661,-0.020331325,-0.0011324577,-0.038527355,0.01998601} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 09:59:50.044594+00 2026-01-30 02:01:09.310001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1323 google ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE 1 t 1326 Go Karts Mar Menor unknown Ha sido mi primera experiencia en Karts, y desde luego repetiría y en el mismo sitio. Circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras. Nosotros cogimos los de 300 recomendados por la mujer que nos atendió. Me gustó que su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero, porque nosotros queríamos los de 400. Los karts funcionan bien y la pista también estába bien asfaltada. Recomendable. Yo disfruté muchísimo. Más de lo que esperaba. ha sido mi primera experiencia en karts, y desde luego repetiría y en el mismo sitio. circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras. nosotros cogimos los de 300 recomendados por la mujer que nos atendió. me gustó que su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero, porque nosotros queríamos los de 400. los karts funcionan bien y la pista también estába bien asfaltada. recomendable. yo disfruté muchísimo. más de lo que esperaba. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {O1.02,E1.03} V+ I3 CR-N {} {"O1.01": "Los karts funcionan bien y la pista también estába bien asfaltada.", "P1.01": "Circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas", "R1.02": "Nosotros cogimos los de 300 recomendados por la mujer que nos atendió. Me gustó que su preocupación ", "V4.03": "Yo disfruté muchísimo. Más de lo que esperaba."} {0.051159635,-0.01383881,0.0032096945,-0.033052303,-0.1188545,-0.013529919,0.041214928,0.09333159,-0.022698537,0.019562695,0.051111463,0.022911975,-0.009172817,-0.031373084,0.041203827,-0.01808371,0.07005212,-0.036395755,-0.046643227,0.0017140142,0.031770572,-0.10085212,-0.044350035,0.101690955,-0.06126338,-0.009955269,0.004916898,0.0029450748,-0.088315085,-0.066429056,-0.026322968,0.07243768,0.065017864,-0.05026988,-0.009901841,0.042016298,-0.0038354099,-0.10971398,-0.05431714,0.016931914,-0.046085622,0.006361392,-0.009115246,0.01335584,0.031925607,-0.044457156,-0.02558482,0.011269763,0.061592367,-0.014823322,0.012254249,-0.021353183,0.05474317,0.008962855,0.02592749,-0.06033571,-0.07222036,0.060803056,0.10075662,0.07380241,-0.037088275,0.0463507,-0.031943914,0.013610028,-0.0065067215,-0.027663354,0.043577444,-0.053391986,-0.060047466,0.10448567,0.06596998,-0.021776574,-0.021020096,0.026282934,0.0569282,0.05310643,-0.0168316,-0.056687687,-0.09175033,-0.021699237,0.06592715,0.024803527,0.0089991,-0.07918143,-0.04844711,-0.024608139,-0.042776637,0.0880676,0.023128204,-0.048988514,0.0021848103,0.08263702,-0.07320657,-0.051596154,-0.000994671,0.06507908,-0.053923618,-0.09238272,0.015403056,-0.0019812607,0.10318408,0.030480508,0.091613956,0.059176464,-0.07507591,-0.04291756,0.025068108,0.061518606,-0.04902794,0.05204907,-0.043869175,-0.013536567,0.002814137,-0.01863096,-0.068602525,-0.010717807,-0.006166868,-0.018585857,0.044987675,0.01931781,-0.020956462,0.029268973,0.03049579,-0.03164331,0.024236273,-0.015187199,0.0031866455,1.5539215e-32,-0.04481509,-0.0041295183,-0.038165443,0.05944312,0.011011102,-0.053114735,0.06403738,-0.018945118,-0.0700535,0.001302431,-0.032154664,0.05956163,-0.008956322,0.019752316,0.10376083,-0.062044907,0.0017325656,-0.01400507,-0.016149811,0.009169942,-0.04855039,-0.05240317,0.012560199,0.04085817,0.024431119,0.06780569,0.083165765,0.01616463,-0.07067324,0.042633288,-0.02130974,0.02092175,-0.005068017,-0.06852087,-0.06658151,0.007982832,0.034384087,0.029540144,-0.021899007,-0.060823243,-0.05543154,0.045464106,-0.032924555,0.07616155,-0.026245806,0.07007505,0.08873469,-0.0028009675,-0.009621695,0.03711467,-0.08934864,-0.026949748,0.005147254,0.027372066,-0.05712546,-0.0076523516,0.012004472,-0.02266813,-0.042047374,0.0004169973,0.014129931,0.011754757,0.015906183,-0.009162153,-0.06034895,-0.03253699,-0.00618727,0.02264873,0.09103167,0.08641797,-0.063751176,-0.050290156,0.012804907,-0.015218647,0.08068769,0.004098907,0.001775558,0.05763184,-0.053779576,-0.0068466137,-0.034606412,-0.039141476,-0.029021084,0.067455366,0.07117444,0.0741235,0.036774732,0.069129445,-0.011385854,0.13434748,-0.010700126,0.060131215,0.07139779,0.030023877,-0.016260508,-1.532704e-32,0.020645564,0.10839274,0.06863039,0.057775978,-0.023740573,-0.029641865,0.0078037013,-0.009401254,0.020630298,-0.036195602,-0.07902638,-0.07284203,0.08408316,-0.024766898,-0.0971345,0.02266589,0.015255132,-0.06010104,-0.004122754,-0.08436962,-0.027364565,0.08320536,0.00984144,-0.017628903,-0.011292725,-0.06705823,-0.08196587,0.0561309,-0.09881267,-0.047009654,-0.029373223,-0.049634397,0.02889509,0.068696864,-0.0631595,-0.04128248,0.016583228,0.10898036,-0.041730218,0.07944756,0.02767994,0.056485403,-0.12064521,-0.01528354,-0.0030048294,0.0026547867,0.09301879,-0.17997248,0.02731735,-0.05357178,0.050260264,-0.05678642,-0.03136955,0.015797742,0.030277917,-0.06388756,0.031706892,-0.0516541,-0.13712715,-0.04022038,0.012004324,0.035131276,0.019158034,0.02497159,0.08099683,-0.03633742,-0.0031858415,-0.038321458,0.046625145,0.003258662,-0.015473203,-0.043884475,-0.024535457,0.022929268,-0.024556696,-0.036391158,-0.07977119,-0.014872273,0.048976317,-0.010833043,-0.007865039,-0.0066320533,0.0036911597,-0.028622733,0.02053511,0.03334862,-0.034936883,0.029278304,0.0019939735,0.051105864,0.030852748,0.063706,-0.006003825,-0.004180493,0.016930059,-5.7524908e-08,0.045641832,0.03161995,-0.077097416,0.02542532,0.05306549,-0.09197828,0.0039326395,0.09246609,0.006900767,0.0009646522,-0.0040513426,-0.014555018,0.010525424,0.009593194,0.0022513913,0.010569123,0.062950976,0.107066594,-0.055088077,0.015487763,0.047295842,-0.05185516,-0.0053483876,0.031744014,-0.0056107263,0.015576902,-0.017241271,0.06629919,0.0027452882,0.014620352,-0.06472464,-0.044826135,-0.09710419,-0.08185967,-0.036862038,-0.0688416,-0.07599523,0.021258716,-0.017679298,0.025379214,0.033215128,-0.17001493,-0.09802293,0.03477201,-0.1040501,-0.03329041,-0.10098963,-0.013875921,0.021480523,0.038215358,-0.050956484,-0.00074734783,0.031665508,-0.011129254,0.012225453,-0.03489016,0.044712566,0.037190586,-0.044633586,-0.07023447,0.030775705,0.07644159,-0.016230084,-0.08522048} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:00.955269+00 2026-01-30 02:01:08.976397+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1324 google ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE 1 t 1327 Go Karts Mar Menor unknown Pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. He estado en otras pistas indoor y esta es la que más me ha gustado con diferencia.\nDisponen de un parking amplio y una terraza con sombra mientras se espera.\nRemarcar el personal amable. pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. he estado en otras pistas indoor y esta es la que más me ha gustado con diferencia. disponen de un parking amplio y una terraza con sombra mientras se espera. remarcar el personal amable. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {O1.01} V+ I3 CR-B {} {"A4.02": "Disponen de un parking amplio y una terraza con sombra mientras se espera.", "O1.02": "Pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. He estado en ot", "P1.01": "Remarcar el personal amable."} {0.037739757,0.076198176,-0.011820254,-0.10814105,-0.03684656,-0.019260343,0.12341571,-0.011234268,-0.043312714,0.014103589,0.0823262,-0.005607853,-0.0025519398,0.019699875,0.07257954,-0.02018876,0.016704267,-0.0059383498,0.04865895,0.0233753,0.027833872,-0.0031653966,-0.06243757,0.030123867,-0.116367266,0.013601285,0.047698416,-0.013243604,-0.010153999,-0.07980362,-0.021498574,0.0040478073,0.027768167,-0.0054237647,-0.026675155,-0.00738267,0.06751208,-0.058391638,-0.019786343,0.1361897,-0.06567455,-2.3906363e-05,0.047160547,-0.054031726,0.01709921,-0.062189564,0.028150618,-0.0351865,0.06831683,-0.076627605,-0.03843694,0.056818467,0.06631926,0.034584343,-0.04804634,-0.021670876,0.020391807,0.06284278,0.060014345,0.018565688,0.08571792,0.0117487665,-0.043204874,-0.020955255,0.03728536,-0.084168926,-0.0015938492,-0.0031344683,0.013254585,0.04474042,0.09353654,-0.016290544,-0.070543304,-0.065150075,-0.007211019,0.071692646,-0.04909387,-0.030947026,-0.045575015,-0.067559585,-0.0055435523,-0.032735355,-0.067860655,-0.037462655,0.013337593,0.028470594,-0.015979668,0.07251627,0.021880355,-0.0008543975,-0.04343073,0.087387785,-0.082216725,-0.017982956,-0.059270166,-0.0032935496,-0.011098599,-0.04032479,-0.028463092,0.027101979,0.1075421,0.043814357,-0.0068021878,-0.005498769,-0.030439967,0.013953502,0.040342454,0.039858095,-0.010864011,0.07849465,-0.029760934,-0.062264953,-0.062434755,0.0078118527,-0.09417195,0.08642709,-0.03553444,-0.039556548,-0.00095531123,-0.07597594,0.022994835,-0.0156063745,-0.0309918,0.025592793,-0.025381174,-0.047545508,0.009942694,1.1376994e-32,-0.016741065,0.010135013,-0.0068382425,-0.005778163,-0.0042364867,0.031239893,0.0028448687,-0.05435661,-0.053264156,-0.043344874,0.03194902,0.13097624,0.014289993,-0.021858564,0.0010318682,0.02385733,0.016608251,-0.014004514,-0.026738597,0.04184579,-0.022908332,-0.00062304013,-0.06416186,0.04533203,0.04123199,-0.003042933,0.027864194,-0.044461854,-0.061824586,0.046655376,-0.034632247,0.07464235,0.03183108,0.06052308,0.017628722,-0.09696495,-0.011277595,0.058923583,-0.06893739,-0.05728265,0.040173892,-0.07389153,-0.021570014,0.01679398,-0.04092263,0.040583692,0.052631456,0.0066277785,-0.0051927534,-0.013080067,-0.07003168,0.016031995,-0.11088826,0.029129406,-0.032553885,-0.0022781792,-0.07600927,-0.042985663,0.015983691,-0.008652078,0.03301361,0.15054287,0.055467658,-0.041878704,-0.09195366,-0.17952706,0.020773605,0.06731444,0.09205564,0.069849044,0.044226784,-0.042427137,-0.038030487,0.07317526,0.019803828,-0.035452534,-0.053901408,0.096827425,-0.08987939,0.06635754,-0.039985564,-0.037042905,0.044898797,0.034614228,-0.028349629,0.101036906,0.0895562,0.015105527,-0.09261848,0.1175597,-0.04314196,0.10493839,0.026709514,-0.05907725,-0.044438887,-1.303461e-32,0.004664258,-0.0066140494,0.018287053,-0.050535593,-0.060698092,0.009237599,0.0053944066,-0.05462342,-0.034702767,-0.032455124,-0.1157686,-0.013564703,0.09865189,0.011306417,0.018659132,0.047085017,0.010523852,-0.07912939,-0.056747936,0.03537259,0.0017209426,0.029581396,0.06421432,0.053707372,-0.08550363,-0.070250355,-0.005862249,0.046894718,-0.10318436,0.021694608,-0.011636531,-0.012496467,-0.014671366,0.051099103,-0.04111664,0.039840452,0.050397463,-0.027098974,-0.004517894,0.037832655,-0.05932171,0.025590224,0.010083824,-0.043791875,0.05652733,0.013786804,-0.00488812,-0.09407946,-0.13285562,-0.024690542,0.042047072,0.011112547,-0.04740993,0.005706431,0.038172532,0.0019696238,-0.031034717,-0.007189753,-0.09039679,0.017286649,0.069409244,-0.027388893,-0.06183057,-0.010479207,0.040159374,-0.051894177,-0.024867902,-0.09195876,0.07219429,0.042022627,0.03167053,0.004921031,-0.03315297,0.04162891,-0.04285624,0.051352322,-0.05074631,0.045125615,-0.004308058,-0.062082548,-0.022733562,-0.008684798,0.03163683,-0.043854307,0.013552303,-0.030290345,-0.04629992,0.009455004,-0.0018227812,0.05021388,0.008713074,0.0319419,-0.09786761,-0.041476317,-0.03593842,-5.006096e-08,-0.009315434,-0.0153486235,0.017176418,-0.0054039503,-0.037475616,-0.010193913,0.046499822,0.0040945974,0.008494165,0.06093234,0.0014783859,-0.12534037,0.03160366,0.05095215,-0.018493112,0.057605363,0.093103856,0.08318386,-0.010115775,0.005008131,-0.0018200198,-0.016567826,-0.037351478,0.0732497,-0.028655771,0.026448265,0.0035593126,-0.018072447,-0.010551506,-0.031126332,-0.030728089,-0.017582808,0.011248842,-0.08904499,0.038875964,-0.013533782,0.0330972,0.010521747,0.013954376,-0.0030930084,0.008162537,-0.008007997,-0.13043709,0.018065298,-0.020217955,-0.08789955,0.033411134,-0.06470631,-0.035320062,0.035909176,-0.02804726,-0.01648722,0.07281135,-0.0034706981,0.11630569,-0.012218967,-0.0256678,-0.020844016,-0.022343926,0.02011321,0.0027023463,0.15600175,-0.08210983,-0.032894608} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:09.581065+00 2026-01-30 02:01:08.980037+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1580 google ChZDSUhNMG9nS0VJQ0FnSURia3FmLWJnEAE 1 t 1583 Go Karts Mar Menor unknown Good track good track 5 2025-01-30 01:52:39.833374+00 en v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Good track"} {-0.11971457,0.03846767,-0.0006585581,0.047769215,-0.0049372287,0.049710352,0.05604467,-0.059686825,-0.019061431,-0.067367174,-0.021590924,-0.027268687,-0.041101355,-0.03921489,-0.06417019,0.021074798,-0.011326497,-0.016455004,-0.031186815,-0.018524906,-0.090017825,0.020824924,0.07104268,0.031783953,-0.12769067,0.09312916,0.0030812854,-0.035768773,-0.035832755,-0.0045332215,-0.07432009,0.03142894,0.052898787,0.021024482,-0.016205836,-0.0021558872,-0.020429343,-0.014751864,0.049504105,0.031921644,-0.020613808,-0.03349697,0.03603819,-0.017640708,0.0072004246,0.062570095,-0.002265175,-0.04378006,0.0635785,0.061076574,-0.019616945,0.017897557,0.0029372026,-0.04898072,-0.032855403,0.07096242,0.01700906,-0.011170764,0.014167733,-0.101777315,0.06322358,-0.04788918,-0.04078947,-0.06425416,0.061722785,-0.0057160384,-0.011084456,0.07128074,-0.064664,0.04984546,0.060580604,0.047268018,-0.03791318,-0.032810852,0.005655958,0.08745287,-0.024783961,0.036456656,0.002181783,-0.05413284,0.045703534,-0.0022835003,-0.05586189,-0.047157384,-0.013335368,-0.044493604,0.043710034,-0.025768459,0.010022566,0.017699765,-0.018913604,0.058321197,-0.0012865638,-0.0040256246,0.028556421,-0.037818477,0.015305872,0.013531593,-0.009547863,0.16746472,0.0822281,0.020458084,-0.0222619,0.1518847,-0.016158378,-0.019868305,0.0036400475,0.060798176,0.03315094,-0.048290446,0.09810477,1.6625901e-05,0.010174316,0.08712189,0.06501456,0.060566396,0.0063586156,0.00961909,-0.036950737,-0.028544845,-0.030260244,0.0154953245,-0.05057399,0.01229811,-0.030796677,-0.059088305,0.04116863,-3.5203885e-33,-0.0043016477,-0.0380956,0.031170638,-0.033426788,0.09356977,0.035680234,-0.07636366,-0.024790999,-0.06552494,0.072098605,-0.024488345,-0.011044319,-0.07940815,-0.029436452,0.052929047,-0.08315068,-0.04961896,0.019146215,0.012564993,0.11165112,-0.023393158,0.028238503,-0.020710597,-0.026658002,0.035092633,0.0068640932,0.014550418,-0.033545148,0.03349818,0.019974612,-0.011357412,0.0034908087,-0.018398026,0.083998896,-0.00019111755,-0.04603672,-0.04493641,-0.0041517173,0.015892657,-0.025548216,0.089959525,0.03878035,0.016295305,-0.05030043,-0.008614855,0.071333274,-0.031480458,0.061347988,0.08860078,0.008141567,0.0032225042,-0.02974115,-0.1003312,-0.03865781,0.009246822,-0.023384672,0.030216556,0.03172933,-0.012282438,-0.016905768,0.087899886,0.043582823,-0.065043785,-0.08870343,-0.05114233,0.048571236,0.008051173,-0.008275261,0.01998765,0.018936029,-0.10645148,-0.04778447,0.043065134,-0.048501786,0.07170717,-0.009821707,-0.04333211,0.006934831,-0.06557868,-0.014128664,-0.036013674,-0.045981847,0.0150198275,-0.0271796,0.02426039,-0.034862112,-0.014162964,-0.09269252,-0.021635367,-0.052208826,-0.025393933,0.012593526,0.039278403,0.03977582,-0.036805335,3.6459618e-33,0.047528744,0.12723696,0.100706555,0.10822065,0.011163913,0.045170523,0.025415901,0.044419527,0.03800243,0.06930327,-0.032502584,-0.0238197,0.016433815,0.039961766,0.008165152,-0.053686775,0.100355424,-0.012248002,0.015289069,-0.0810877,-0.052449137,-0.047107328,-0.028152613,0.027221493,-0.016084379,0.00705106,0.012578318,0.020199144,0.042654384,-0.043610975,0.0047711288,0.034059577,-0.08165928,-0.0668005,-0.020522142,0.0997237,-0.013550976,0.035161044,-0.0471627,-0.013733231,0.038161863,0.06150826,-0.030645568,0.06923789,-0.0015343673,-0.019477686,-0.009880097,0.15110789,-0.047228556,0.052268784,0.00036097728,-0.016595174,-0.04956811,-0.037942145,-0.098592974,-0.033771064,-0.027206533,-0.037733953,0.0036661155,-0.0375482,-0.091401376,0.13757156,-0.04576593,0.024098504,0.026427472,-0.0034245688,-0.04745117,-0.03679416,-0.016771546,0.033898287,-0.06697744,0.069026954,-0.10823133,0.026522065,-0.032431338,-0.056918364,-0.07072604,0.024192244,0.013028134,-0.0072274352,-0.004555962,-0.0891724,-0.066200495,0.016062822,0.03405967,0.041406382,0.015662756,0.00857324,-0.024873795,0.10031106,0.011034409,0.05015716,-0.03480734,-0.008189949,-0.07441503,-1.3644064e-08,-0.013977927,0.071891926,-0.0044089593,-0.06424235,0.059547536,0.025665844,0.024503615,-0.03077084,-0.020121804,0.02110603,0.10749068,0.023054749,-0.0468119,0.114282556,-0.006876875,-0.08329709,-0.06290556,0.093543425,-0.031110888,0.03669306,-0.030918667,-0.04115697,0.043819785,0.05630668,0.03022697,0.0019970834,-0.010485989,0.13274704,0.014574434,-0.072602786,0.0815459,0.13140537,0.016919691,-0.018601479,0.019904256,0.051696133,-0.005356948,0.018234102,0.09728522,-0.103250876,-0.04373052,0.016978879,0.039124187,-0.06573006,-0.07120808,-0.06426189,0.008490897,-0.019930143,-0.029118983,-0.02313596,0.059726335,-0.08287593,-0.008404996,0.01846261,0.108697556,0.05858987,-0.027552517,-0.015134797,-0.024268685,0.0076576932,0.07706228,0.028647393,0.058211453,0.087577246} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.015237+00 2026-01-30 02:01:09.889884+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1581 google ChdDSUhNMG9nS0VJQ0FnSUNRdy1ucWlnRRAB 1 t 1584 Go Karts Mar Menor unknown Good. Would go back. good. would go back. 4 2018-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Good. Would go back."} {-0.06758187,-0.00084149174,-0.025849685,0.031309035,-0.0500775,0.0107700415,0.01220936,-0.091832094,-0.052319646,-0.014361147,0.08233631,0.03667954,-0.010862497,0.08955731,0.062115844,-0.013484817,0.04248926,0.034251813,-0.0059686117,0.03950687,-0.104323655,0.08248477,0.048144802,0.011576614,-0.017447721,0.012723467,0.019292312,0.06685832,-0.08703121,0.03339172,-0.038428057,0.026589723,-0.095287554,-0.005621471,-0.011636793,0.05412563,0.06709474,-0.00923044,0.018040238,-0.009343547,0.03391429,0.002063935,-0.032878082,0.013193597,0.0025726375,0.016881993,-0.0115943225,-0.005647103,0.046049513,0.028202424,0.09142967,-0.047972545,-0.10438303,-0.019370561,0.07573422,-0.014185864,0.006685956,0.009539625,0.015337794,0.033360973,0.058250245,-0.0068739867,-0.06063141,0.10588565,0.042438675,0.018352231,-0.04718115,-0.03707562,0.01134091,-0.014051942,0.066794164,0.029174779,-0.020235779,-0.08431708,-0.0013622693,-0.025241455,0.015780937,-0.08482572,-0.0088585885,0.022636412,0.039081667,-0.075248115,-0.033996593,0.064810984,-0.049984235,-0.094432175,0.01617601,-0.043032423,-0.028780088,-0.018817395,0.068731315,0.010353967,0.14783657,0.03973821,-0.014990365,0.020813664,-0.011694636,-0.026130103,-0.03601787,0.083795756,-0.01002575,0.0749878,0.048776746,0.012801433,-0.004414248,0.05076269,0.05950989,0.06136848,-0.04731254,-0.027392661,-0.016568681,0.046494223,-0.043394748,0.057044365,0.043664254,0.026972227,0.0013003496,0.025787588,-0.019713646,-0.069449514,0.0075841234,0.081580006,0.0574057,0.05544862,-0.07493191,-0.06861413,0.02445611,-6.5795644e-33,-0.07349348,0.038429663,0.04396163,-0.09372713,0.044885308,0.057472937,-0.016770363,-0.042249728,0.034286447,-0.07733356,0.046857484,-0.044431448,-0.0331716,-0.0050623,0.03487364,0.09112443,-0.0055959187,0.044333275,-0.011588983,0.0032834825,0.02468143,0.059907615,-0.016768344,0.079089954,0.004203058,0.035675466,0.019868743,-0.0821865,0.043935705,-0.0092581315,-0.03356143,0.023835093,0.02734512,0.039616603,0.035525687,0.081969395,0.05991215,0.045782495,-0.06494906,0.019455558,-0.030795837,0.0060226936,-0.067966536,-0.0055975886,-0.0026104106,-0.07055842,0.066831775,0.01747535,-0.027668225,-0.052965764,0.0046592737,0.028943013,0.029296344,-0.007911357,-0.038617495,0.0039009198,-0.029088985,0.07409666,-0.014279691,0.08431247,0.093545824,0.023892187,0.018846244,-0.004027528,-0.06341471,0.0020067703,-0.0065652584,0.033247456,-0.035240814,-0.0052380417,-0.006106087,-0.09776388,-0.054612584,0.03273436,-0.014620267,0.034016617,-0.07804198,-0.06616842,0.038273305,-0.06614942,-0.028851455,-0.005735744,-0.08725265,0.0006651335,0.14568454,0.06353189,0.04177555,-0.100752205,-0.08007637,0.03214348,-0.009211499,0.0098555945,0.06926772,0.039805494,0.009674895,3.8537826e-33,-0.028287018,0.112042345,0.049418245,0.08773379,-0.037043046,-0.04526516,0.032658912,0.14093277,-0.032123815,0.050258562,0.057020277,-0.0618262,0.059121296,0.04851242,-0.0392572,0.050881647,0.054972034,-0.087273315,0.015063867,0.060611393,-0.0042599146,0.01868136,-0.05326704,0.09652406,-0.04320675,0.050432306,0.024017798,0.043826196,-0.021487689,-0.037175555,0.09316154,-0.11021911,-0.037584893,0.09492807,0.050062507,0.03439136,-0.021974407,-0.09716649,-0.020712795,0.00505409,-0.022978857,-0.018940294,0.03666838,0.101957485,-0.006474777,0.049169786,-0.02380622,0.008905144,0.07487445,0.018383466,-0.016872894,-0.080791265,-0.025755037,-0.02714793,-0.0956396,-0.0072221938,0.07034006,-0.027007246,-0.011217531,-0.09681826,-0.08967981,-0.05528367,-0.0037033022,-0.049854994,0.06568354,-0.023729134,-0.07075302,-0.00638835,-0.06014576,-0.031093594,0.12162627,-0.07470257,0.041345783,0.015333173,0.020013783,-0.005641397,-0.016088717,-0.05119052,-0.023344586,0.065890074,-0.1284171,-0.043675542,-0.015255706,-0.09119663,0.035113793,-0.08076623,0.033037074,0.011860315,0.058303405,0.009477926,0.003576704,-0.035799067,0.045541625,-0.041090455,0.062346585,-2.0922082e-08,-0.02251638,0.031254817,0.067376904,0.05643349,0.008196386,0.00914004,-0.038572554,-0.013169115,0.012140608,-0.032158956,-0.0035923028,0.017478773,-0.021704124,0.02224792,-0.003208071,0.043615766,-0.004463424,-0.054671522,-0.01895154,0.09429339,-0.07738549,0.08130999,-0.01456474,0.03161628,-0.029269077,0.032943588,-0.051254973,0.03580577,0.018495465,0.01350452,0.0124146715,0.04396179,-0.071672276,0.06125418,-0.049449537,-0.07386158,-0.026174914,-0.044751607,-0.042847253,0.03114263,-0.0023828007,0.076551475,-0.002111832,0.00027400063,-0.02046585,-0.085569255,0.010341988,-0.0402172,-0.0033113407,-0.06250367,-0.032139968,-0.0042165774,-0.016337357,0.008543198,0.08266213,0.0007156881,-0.07430345,-0.014634941,-0.1712785,-0.0037140944,-0.026908552,-0.0862618,-0.06463107,-0.0055764257} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.035385+00 2026-01-30 02:01:09.894511+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1583 google ChZDSUhNMG9nS0VJQ0FnSURVbmF5Q2J3EAE 1 t 1586 Go Karts Mar Menor unknown Great fun great fun 5 2020-02-01 01:52:39.833374+00 ro v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great fun"} {-0.0046399035,-0.0063638557,0.04452689,-0.0071988506,-0.10344822,0.009994344,0.082210384,-0.017577708,0.019728402,0.022305489,0.05250747,0.016771419,-0.037712473,0.051690906,0.00028459227,-0.0019451237,0.0241532,0.020289656,-0.015034657,-0.015241317,-0.06701158,-0.0434163,0.06515372,-0.035423435,-0.028459046,-0.029042816,0.024403041,0.02288687,0.07401549,-0.051339205,-0.15865014,0.060725823,0.019452723,-0.035505533,0.020083118,-0.01422774,-0.00516563,-0.042939648,0.031979345,0.037953958,0.019836886,-0.063483104,0.0035960092,0.027616024,-0.037990168,0.17331548,-0.003077652,-0.023951469,0.0670233,0.07383942,0.044454727,-0.0036214013,0.00967218,0.018731369,-0.009525619,0.05734027,-0.03379744,-0.08161065,-0.013703155,-0.07282204,0.06245202,0.026871515,-0.014400746,0.021110455,-0.051652715,-0.0053395783,0.042269357,0.008740773,-0.036590673,-0.007624542,-0.055266086,0.011798974,0.03599032,-0.03770055,0.051859453,0.07846548,-0.0038061359,-0.010360891,0.008644332,0.025329692,-0.00021453729,0.06609263,-0.02081854,0.043781362,-0.09367369,-0.1011994,0.03712721,0.020930856,0.014143713,-0.018728422,0.009489215,-0.0048352615,0.025394619,0.018442137,-0.10394128,-0.018056965,-0.0036074086,0.004046108,-0.029859401,0.07352212,-0.0021963862,-0.028727936,0.023644648,0.006397821,-0.02654614,0.046120465,-0.086252525,-0.0014305819,-0.030202344,-0.05868632,-0.02206342,0.044312436,0.079665884,0.056149404,0.0132539235,0.071583726,-0.00024986666,0.064552665,-0.077344775,-0.06112628,0.0784806,0.013964817,0.06221686,0.0010663072,0.045639925,-0.08597136,0.053928398,-1.3508032e-33,0.043310873,0.003626722,0.00045686073,0.059032403,0.033077493,0.07142548,0.018328084,-0.03956968,-0.041003976,0.036815945,-0.008333959,0.06177297,-0.027488962,-0.014725739,-0.02352783,-0.063318126,-0.0461459,0.107500754,0.066318266,-0.013344511,0.011476077,-0.019109322,-0.017716276,0.08755812,-0.0052189063,0.040037576,-0.017355135,-0.13998854,0.121592306,-0.0018334977,-0.043486476,-0.025027616,-0.062471706,0.05665128,0.00966037,-0.08571654,-0.043458726,-0.041718043,-0.048794128,0.069485,0.0805874,0.0029056438,-0.02698991,0.00895789,-0.04131385,-0.00436124,0.008978021,0.029647864,-0.039969515,-0.02922065,-0.04272762,0.0058897794,-0.06788287,0.028563181,-0.00885769,-0.024912657,0.002167913,-0.05522007,0.006280371,-0.022470362,0.061122913,0.09445911,-0.0962341,-0.034141786,-0.041300535,0.051479246,0.009496116,-0.035679452,0.028694723,-0.049661037,0.005123437,0.0061052693,0.12445594,0.0030251388,-0.009654892,0.01160247,0.043835178,-0.017620236,-0.010810341,-0.061487462,0.035875697,-0.043956134,-0.009770857,-0.031431682,-0.03838693,-0.03131723,0.0759118,-0.23627967,-0.014471493,0.01542525,-0.02599773,-0.009343178,0.10287556,0.016651789,-0.03363467,1.9863594e-33,0.032340087,0.00021429567,-0.04328906,0.058406826,-0.0328254,-0.027316429,0.028680714,0.008774039,0.06472017,0.0067952103,0.03607238,0.02515853,-0.01566746,0.03025976,0.0019954746,-0.01687599,0.04190165,0.012292446,-0.089976445,-0.019271117,0.020241601,0.049083926,-0.067099325,0.008499487,-0.050571136,0.026824221,-0.0039983685,-0.008263429,0.048800997,0.03395989,0.018484492,-0.0004938361,-0.0054202117,-0.09202466,-0.01840861,0.10479723,0.05856524,0.031479154,-0.03606206,-0.074136816,0.042534877,-0.004831241,-0.049461927,0.026164634,0.022744931,0.016440269,0.014035032,0.010810835,-0.015866818,0.06553198,0.004706297,-0.05708013,-0.017571513,-0.12314765,-0.048176978,-0.12542701,0.007823435,-0.013912886,0.025306452,-0.012496233,-0.03237632,0.10075452,0.023603959,0.07919164,0.050467096,-0.049062964,-0.05558768,0.015180665,-0.049392767,0.017023914,-0.10303084,0.080136515,-0.12523425,-0.00504769,0.009875912,-0.07619642,-0.022959698,-0.0060601584,0.068621054,0.04426739,-0.0025511088,-0.021680208,-0.026189137,0.023851983,-0.058790304,-0.020719618,-0.07744319,0.029253926,-0.059964135,0.03647116,0.033940144,0.06944812,-0.009987932,-0.0478352,-0.016525494,-1.4393825e-08,0.015375711,0.041584607,-0.010348702,0.017382063,0.06411071,0.10624141,-0.03332532,-0.02347015,0.0374453,0.015542899,0.10176601,-0.021084215,0.08803259,0.078199916,0.06650485,-0.041489948,-0.044287995,0.09696677,-0.017302701,0.049915623,-0.0007384728,-0.0026806982,0.053535312,0.083376594,-0.048202716,0.036565214,0.013968238,0.09929855,0.07847394,0.007605261,0.017864272,0.10949927,-0.060022365,0.017758308,-0.02845364,0.006352228,0.008437993,0.0007732542,0.09498766,-0.024781648,-0.07598289,-0.04591438,0.10506006,-0.0634477,-0.116612874,-0.013719904,-0.013756189,-0.01192629,-0.016491197,0.0005080573,0.05438112,-0.029082162,0.0034050767,0.06980351,0.07547138,-0.012664452,0.003363888,0.05239463,0.034033302,0.10013175,0.03156071,0.044434104,-0.0764964,0.083146535} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.065724+00 2026-01-30 02:01:09.903532+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1584 google ChdDSUhNMG9nS0VJQ0FnSUNBNzQ2bjJBRRAB 1 t 1587 Go Karts Mar Menor unknown brilliant and not expensive brilliant and not expensive 5 2019-02-01 01:52:39.833374+00 en v5.1 V1.01 {V4.03} V+ I3 CR-N {} {"V1.01": "brilliant and not expensive"} {-0.052312676,0.052217223,-0.02959117,-0.037453514,0.005286407,-0.04526784,0.04372131,0.07595345,-0.013348701,0.040132202,-0.025613148,0.049678378,-0.023372818,0.0063759256,-0.0704282,-0.022384899,0.092175834,-0.09900168,0.028794993,-0.07759396,-0.05649724,0.00019059103,0.047066525,0.016013872,-0.028956775,0.022575745,0.01944836,0.034358185,-0.03803869,0.021571826,-0.003136404,0.03072061,-0.019658403,-0.0030806423,-0.10977406,0.01794665,0.03737853,0.06670344,-0.02577541,-0.0006612672,-0.008864923,-0.07333018,-0.008042766,0.016143177,0.0010052737,-0.036885217,-0.0076830564,0.018855004,0.0031883207,-0.004254766,-0.077525586,-0.08991326,-0.0464252,-0.059947006,-0.037510876,0.004088809,-0.056476057,-0.04012797,0.018511312,0.0073849177,0.021369586,0.027811443,-0.029882811,-0.025459258,0.04781884,-0.079073355,-0.036271006,0.0014394246,-0.021358753,0.048604913,-0.0818046,0.029398523,0.008404384,0.02060001,0.02117711,-0.04209496,0.053965777,-0.03513788,-0.038250573,0.06709879,-0.059926797,-0.11794549,-0.0131812645,-0.034528546,0.07326443,-0.0370081,0.051508937,-0.0588882,-0.042092998,-0.019899221,0.06980941,0.006470024,-0.03613975,-0.0024939592,0.0026311902,0.06430882,0.0419954,-0.08201924,-0.040190984,0.17711745,-0.0021447681,0.05138762,0.025681822,-0.08937178,-0.015150503,-0.055854674,0.088425495,0.054115295,0.05162315,-0.035861336,-0.020742623,-0.00043063774,-0.040772885,-0.030140268,0.016331337,0.034613818,-0.010289037,0.0029930135,0.046326976,0.052918095,0.057669453,-0.020933501,-0.0071635577,0.01934342,-0.05784507,-0.080640666,0.040097512,-5.091774e-33,0.0014382278,0.07797362,-0.043661084,0.0051718303,-0.06262779,-0.020447703,-0.018236363,-0.020190986,-0.05449763,0.027586322,-0.00092932204,0.042806655,0.011910864,0.093579,0.09975989,-0.021703074,-0.008575925,-0.00054874824,0.073877245,0.009569399,-0.07682597,0.10094179,0.050931077,-0.041758165,-0.013827508,-0.007802271,0.023104358,-0.03337683,0.1615106,0.048571076,-0.08199085,0.047716063,0.024506485,-0.0066629224,0.005067087,0.0010622011,-0.115504615,-0.15972918,0.04292511,0.058497973,-0.012519864,0.0105047105,-0.021577531,-0.01840099,0.030755466,0.05354239,0.0010651108,0.08583837,0.023544144,-0.009362207,-0.024447514,-0.008587637,-0.07476668,0.037086282,-0.024364725,0.027379008,0.039031323,0.04133052,0.10783116,0.004886481,0.02225439,0.046790965,-0.071516976,0.012882446,-0.09166678,0.048576847,0.012032628,0.009816657,-0.027270883,0.009300227,-0.02547267,0.020060983,0.12991211,-0.08013169,-0.021161664,-0.0024435911,0.010460149,0.011947571,-0.018996691,0.052722987,0.0002528247,0.045310125,-0.024696747,0.06931073,0.0957649,-0.033950616,-0.022294916,-0.024646446,-0.056553904,0.009778947,-0.012974045,-0.0048753945,0.023871873,-0.090777904,0.015105452,4.5184412e-33,0.0010563199,0.008198742,0.057258118,0.15292491,0.037723895,0.0149524575,-0.07362396,0.03104035,-0.018657338,0.08697798,-0.042400006,-0.0104676625,0.06975012,0.05343937,0.074880816,-0.039104603,0.052017182,-0.019577654,-0.022209981,-0.044690195,0.025946971,0.10217089,0.042907286,-0.050182864,-0.13335441,0.021490911,-0.12118391,0.025941808,-0.089671314,-0.009959194,-0.05648138,-0.042064965,-0.08212844,-0.010928717,-0.10076453,0.15556009,0.029519498,0.023137942,-0.095798746,0.019377626,-0.0075343284,0.011061388,0.039252393,-0.012164164,0.01703817,-0.021341499,-0.017582687,0.023952914,0.0335128,0.071169086,-0.004859207,0.038909692,-0.05929825,-0.07197032,-0.04695946,-0.07226368,0.035154603,0.040302802,0.03733131,-0.018506223,-0.044211257,0.047806837,-0.030438883,0.02704238,-0.0050664395,0.035849746,0.05395386,0.017392276,-0.046034265,0.012498206,-0.028421722,0.056048494,-0.013851128,-0.001925967,0.0095992135,0.034294777,0.026733754,0.079780735,0.026526622,0.001943453,0.0412443,-0.056100722,0.022327939,-0.05133201,0.017852072,-0.046650637,-0.019526485,-0.011603478,-0.08170532,0.070639625,0.006104906,0.06916331,0.07079366,0.015550844,0.10431446,-1.7587473e-08,0.0077756783,0.009183985,-0.0007592226,-0.011877704,-0.09247915,-0.11223676,0.0836344,-0.048882727,-0.0002996987,-0.00058780605,0.010504875,-0.041555278,0.01879376,0.102972925,-0.02442952,-0.00024358222,-0.003386275,0.10874359,-0.074705385,0.014301533,-0.0086237835,0.084944345,0.056111123,0.027458195,-0.022946535,0.027123164,0.01358794,0.014785744,-0.048151597,0.014675891,-0.04441609,0.041056845,0.04410806,-0.003631539,0.039300576,-0.0070405044,-0.026964936,0.03319124,-0.03147305,-0.044640403,-0.008720683,-0.044090938,-0.082623154,-0.00040085445,0.07155106,-0.025733454,-0.06552181,0.011328873,-0.066391475,0.113505185,0.04957733,0.021879151,0.0084335655,-0.026601974,0.025664957,-0.015353634,-0.012262975,-0.05920109,-0.049266025,0.10367081,0.09329838,-0.065079086,-0.00745708,0.018605962} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.08363+00 2026-01-30 02:01:09.909169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1585 google ChZDSUhNMG9nS0VJQ0FnSUNndTVIdUdBEAE 1 t 1588 Go Karts Mar Menor unknown Goo fun goo fun 4 2019-02-01 01:52:39.833374+00 so v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Goo fun"} {-0.11660158,-0.052150123,0.041943934,-0.074185476,-0.09927146,-0.037443552,0.17472191,-0.045001835,-0.008763678,0.009877027,0.05658077,-0.056177173,-0.02710515,0.03466209,-0.0070741144,-0.027931111,0.06981644,-0.005713954,-0.001337992,-0.01218645,-0.03779543,-0.003588491,-0.0067182207,-0.01981339,-0.100295104,0.039678823,0.009129355,-0.020732598,0.0036778422,-0.049325906,-0.009518693,0.06574919,-0.06963902,-0.028433459,0.048534818,-0.018479023,0.013951023,-0.011789077,0.020078825,0.071223594,-0.027354876,-0.07474456,-0.035784137,-0.038742606,0.04482928,0.1268671,-0.009963958,-0.05583353,0.067041814,0.035624992,0.025031554,-0.00079259067,-0.03424578,0.0072428896,0.02267989,0.05190848,-0.016108977,-0.045894805,-0.048421714,-0.012572502,-0.020301387,0.06145369,-0.041490857,0.02744705,0.020232957,0.022661945,0.03775564,-0.064824075,-0.054721344,-0.011291297,0.007615633,0.012071167,0.016763339,0.026188318,0.021016983,0.051230647,-0.059898525,-0.018677779,0.013437093,0.027729852,0.025956754,0.0019063067,0.017997205,0.039760835,-0.06978554,-0.082482345,-0.027120238,-0.0020111944,0.014942033,0.02489914,0.005303209,0.025570003,0.045376696,0.020405423,-0.038607232,-0.03182062,-0.025869055,-0.0031088386,-0.017605742,0.16831473,-0.016563928,0.058932163,0.066380806,-0.10499733,-0.0590513,0.050979827,-0.08155987,-0.0009404729,0.12180285,0.008055773,-0.045984607,0.045791768,0.002717563,0.035778377,-0.003301532,0.033007685,-0.030319868,-0.020735133,-0.07162813,-0.056271516,0.074052595,0.017370138,0.060497705,0.05276279,-0.08346288,-0.013875327,-0.026863346,-5.2203146e-33,0.06908541,-0.022805054,0.025602622,0.01945057,0.01603476,0.040320046,-0.004090292,-0.043822564,-0.10091632,-0.0023447648,-0.07210721,0.012649306,-0.07734755,-0.079638414,0.102247916,0.004755158,-0.08307077,0.079218104,0.026914226,-0.022233568,-0.013935317,0.021913523,0.011398855,-0.022819487,0.0045383684,0.07767509,-0.054659702,-0.14929046,0.0848687,0.0278365,-0.018117791,0.0112921875,0.013551316,0.023298772,0.00681433,-0.046729755,-0.051579434,-0.07736437,-0.06291127,0.011558328,0.06341365,-0.020518487,0.008620163,0.06773557,-0.0091824215,0.035025187,-0.0063941013,-0.030469926,0.0029853068,0.013246675,-0.041782547,-0.02671366,-0.082826436,0.02002843,-0.04772374,0.013490222,-0.0066222935,-0.009136575,-0.037515197,-0.010373668,0.03925029,0.07912122,-0.055172946,-0.06663075,-0.052878696,-0.01732998,-0.027344057,0.054716587,0.00389073,-0.013301214,0.029697541,-0.035322588,0.14752461,-0.0058399457,-0.012885713,0.026962345,0.054363303,-0.012839057,-0.07157542,-0.0041746795,0.045627348,-0.06191434,0.0033941143,-0.03918658,0.011057232,-0.027148383,0.035151236,-0.15123633,-0.022545239,-0.017390551,-0.08601759,-0.045299795,0.049186613,0.09504738,-0.102043174,3.175271e-33,-0.019662593,-0.046202622,-0.08663696,0.08868413,0.006250255,-0.012123176,0.024590528,0.0067764884,0.04840724,0.05142961,-0.0065859067,0.035872385,0.04101883,0.029766545,-0.016108934,0.015581446,0.0029254798,-0.0038668595,-0.017052354,0.051733565,-0.01955333,0.03023757,-4.9975297e-05,0.07524342,-0.063206114,0.026445942,0.08272112,-0.01871563,-0.016810173,0.080690615,0.012423301,-0.026109347,-0.0454402,-0.041629065,0.058348164,0.025948007,0.06152926,0.023897978,0.028442468,-0.09859141,-0.076532975,-0.01223831,0.013994658,-0.031500585,0.039242078,0.098558776,0.05302378,-0.004503395,-0.055879917,0.10109009,-0.0051331394,0.027129918,0.005970292,-0.06817859,-0.04976699,-0.062214516,-0.05320207,0.07356994,-0.03756271,0.023030313,-0.034097422,0.022054968,-0.02635128,0.036861047,-0.017598893,-0.010323327,-0.05313066,-0.017536893,0.005498355,-0.01882474,-0.044383988,0.055135775,-0.019076215,-0.0034829157,-0.025033507,-0.020400016,0.0009518082,-0.032859527,0.050860096,0.022552148,-0.021110443,0.051318664,-0.0688602,0.0067073028,-0.059768345,-0.014776098,0.0009882614,0.11126277,-0.012055255,-0.030718222,0.02065306,0.082535364,0.033713743,0.04059414,-0.06171439,-1.5145554e-08,0.041157432,0.10476301,0.091011405,0.03655341,0.09143966,-0.01216633,-0.052498467,-0.02542356,-0.00092638284,-0.0062025716,0.086529106,-0.05043782,0.06681538,0.09653814,0.05750082,-0.011165982,-0.045002654,0.025328118,-0.06262272,-0.018790944,-0.071951486,0.05595367,0.0033370815,0.05489747,-0.06601698,0.0330653,0.04471713,0.06174669,0.052682392,0.025284454,-0.05156695,0.09454332,-0.0950624,0.026371235,-0.049585864,-0.062401082,0.04997745,-0.029828968,0.038611807,0.09202504,-0.045416053,-0.044321302,0.06586337,-0.06903248,-0.024253668,0.0885854,0.015340543,-0.027389405,-0.013556231,0.051515304,0.012073424,0.017847275,-0.032124687,0.042556297,0.16315003,-0.076439634,-0.005169953,0.06525086,-0.027840935,0.0543169,0.10178611,0.032005638,0.0347639,0.035129465} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.095389+00 2026-01-30 02:01:09.916803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1586 google ChdDSUhNMG9nS0VJQ0FnTURJbGFidmlRRRAB 1 t 1589 Go Karts Mar Menor unknown 👌👍👍 👌👍👍 5 2025-05-05 00:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "👌👍👍"} {-0.041596394,-0.024681844,0.07789304,-0.0061495365,0.017001478,0.0012620193,0.12373964,-0.001971503,0.058980986,-0.0421656,0.059197303,-0.0712989,0.12670378,0.025150288,-0.013801361,-0.064012,-0.021355316,-0.023678778,-0.04567587,0.0074907322,-0.08093098,0.016425347,0.04020195,0.03407271,-0.09147525,0.041332703,-0.0028536534,-0.0051855645,0.062337525,-0.039861433,0.016891906,0.019184606,0.005939307,-0.089736894,0.018257719,0.0043330803,0.01757199,-0.06444106,-0.06925514,0.042006906,-0.060051497,-0.037533123,0.056897033,-0.06448102,0.05673788,0.01103925,-0.0732904,-0.020127792,0.027193855,-0.011539169,0.0023958536,0.012943207,-0.028637584,0.019964965,0.03923182,-0.0068727415,-0.045336552,-0.04935061,-0.0054213437,-0.06290549,-0.022794519,0.010759219,-0.02364014,0.034320734,0.0048893783,0.046750337,-0.0039593223,-0.02056269,0.03360632,0.019879788,0.031905137,-0.03548578,0.016404713,-0.07183542,0.0040331804,0.017643657,0.106105834,0.057150852,0.022820584,0.07726645,0.001922186,0.0010010531,-0.03953868,0.09437668,-0.07560359,-0.022979593,-0.051639073,0.04907463,0.0015072185,0.06700934,-0.021575922,-0.008754785,0.037345346,-0.004958437,-0.14376105,0.008767826,0.029117236,-0.068486474,-0.069657415,0.20160688,0.0697378,0.013741256,0.046000674,0.02860643,-0.06500324,-0.03180275,-0.0055633704,-0.026715573,0.056904756,0.00533102,-0.03943,-0.09037775,-0.056024954,-0.04272285,0.09392709,0.039891608,-0.010925412,0.013202153,-0.05678605,0.013316628,0.054072864,0.022605835,-0.03293751,-0.028672073,-0.06065947,-0.052034337,-0.01100964,-3.7321747e-33,-0.053454284,0.019247416,-0.011910474,-0.051424425,-0.056919377,0.09403986,-0.020746687,0.009040244,-0.082583055,0.025001397,-0.02177444,0.032146215,-0.030521614,-0.06434673,0.01396796,0.0021831857,-0.014381647,-0.00954915,0.033302475,0.004304434,0.013000499,-0.09498022,0.0019289269,0.052739892,-0.018741416,-0.032593016,0.02049271,-0.05210953,-0.07249738,0.0066485563,0.040096823,0.0119001735,-0.024748558,0.059731647,-0.07558265,-0.061745815,0.106104605,0.030054644,-0.036454424,0.09228545,0.054600015,-0.073595315,-0.101647906,-0.06725758,0.03295858,0.07058118,-0.008592322,-0.08061246,0.018724991,0.016663969,-0.027808044,0.05521822,-0.11782161,0.049694687,0.068743914,-0.029318217,0.044047307,-0.0015660145,-0.043061607,-0.014342432,0.027792694,-0.021841025,-0.012736704,-0.0048947223,-0.07752446,-0.03581861,0.035266448,-0.016274994,0.035997137,-0.07699825,-0.03646348,0.019315157,0.14490333,0.04341328,-0.050685264,-0.0570323,-0.014059035,0.03626347,0.09071669,0.01871389,0.03701218,-0.059723634,0.039852984,-0.106286116,0.055444583,0.0081621185,0.006541697,-0.13666245,0.0134026995,-0.036087587,-0.10515207,-0.04107495,0.10685235,0.04151984,-0.028887216,1.720882e-33,0.026480842,0.04881581,0.0054900143,-0.0013915796,-0.05297073,-0.021458426,0.024485843,0.0747257,-0.0144588435,0.015904875,0.08277174,-0.00976503,-0.032709762,0.045813948,0.0066597234,0.058391146,0.09902663,0.05495619,-0.021843288,-0.010202828,0.0044496064,-0.06067701,-0.05128252,0.03624223,-0.026190871,0.084909014,0.048903015,0.031969666,0.012468507,0.044048678,0.0038533343,0.0066296416,-0.029003223,-0.031762604,-0.036200754,-0.016958082,-0.047465254,0.028213179,-0.052127946,0.04404003,0.023716452,-0.030861868,0.06039237,0.14124906,0.019009793,0.04032248,-0.05329114,0.008047939,0.044587832,0.01569799,-0.00058738125,-0.079825975,0.019716192,-0.023610225,-0.0004720056,0.033659417,0.009357355,0.030934863,-0.009225644,-0.007098067,-0.09390085,-0.006197998,-0.027863936,0.07021579,-0.021261284,-0.034492508,-0.024521166,-0.061587654,-0.00015690802,-0.08331833,0.13455574,0.0048049246,-0.117199495,0.010331203,-0.07008257,0.046855737,-0.015254079,0.056446522,0.03543141,0.02782451,-0.031410135,0.043146618,0.013090109,-0.088823736,-0.024595566,-0.085989736,0.026616096,0.0058398647,-0.03586889,-0.009770098,0.032193877,0.11353255,0.035904802,-0.1013064,-0.008436778,-1.3915481e-08,-0.016802976,-0.035337105,0.03905317,-0.026382416,0.04228327,0.029138945,-0.12076374,0.028423207,0.0912986,0.012096078,0.10415981,0.06550139,-0.03514948,0.053158484,0.00045366352,-0.04098057,0.010962206,0.095049106,0.018136358,-0.07438471,0.07732589,-0.016657697,-0.022133784,0.0072446307,-0.037849072,0.052546438,-0.060295273,0.037682816,-0.017852526,-0.04420242,0.007468401,-0.052735157,0.011150472,0.037262537,-0.015744034,-0.06701547,-0.014720631,0.06336044,-0.0010368763,0.039268088,-0.04532153,-0.0024891251,0.06805382,-0.0077991276,-0.010861225,-0.056091804,0.03729169,0.057777546,-0.042702544,-0.01469381,-0.0022482548,0.059300974,0.028002447,0.052715756,0.04725116,0.033071574,0.03134426,0.04891974,0.01095614,0.042034816,0.11250049,0.04773162,-0.00858099,0.0063751754} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.604667+00 2026-01-30 02:01:09.925237+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1587 google ChdDSUhNMG9nS0VJQ0FnSURodkxtUHdRRRAB 1 t 1590 Go Karts Mar Menor unknown Top notch setup top notch setup 5 2024-01-31 01:52:39.833374+00 en v5.1 E1.03 {} V+ I3 CR-N {} {"E1.03": "Top notch setup"} {-0.0061672875,0.032365702,0.017301196,-0.070335224,-0.097502895,0.01978828,0.030663414,0.10290516,-0.12600465,0.024592482,-0.039389778,-0.031726863,0.033443004,-0.040990617,-0.044823453,0.07260003,0.082700014,-0.048645493,0.03331252,-0.06686498,-0.12163167,-0.0747061,0.04910756,-0.08126706,0.028074136,0.038319256,0.008666607,0.081347264,-0.027205195,-0.11569211,0.039088212,-0.01784585,0.035455097,-0.001516555,-0.06859604,0.014978278,0.08979577,-0.09590949,-0.04866695,-0.04443828,-0.04402969,-0.0061083282,0.015657922,-0.009694413,-0.0222456,0.008482812,0.032694254,0.037099436,0.067848705,-0.046158895,-0.0348292,-0.08683555,0.012841133,-0.03321345,-0.044252165,0.09792702,0.019559126,-0.057477754,-0.036563512,-0.07164186,0.029639814,0.031527705,-0.043150187,0.020770065,0.04584268,-0.025713453,-0.017877951,0.040353604,-0.0019188913,0.04164666,-0.024430865,-0.027108537,0.026147636,-0.014205711,0.0059616766,0.023600776,0.0720542,-0.026439367,0.08064472,0.013759821,0.0027052108,0.034481104,-0.058044262,0.050770342,-0.003953893,-0.10171764,-0.008270073,0.021447746,-0.01712427,-0.023515444,0.042214617,-0.015094215,-0.0010241901,0.021453176,0.036037724,0.05189016,-0.016357804,-0.07294753,-0.04834364,0.12161602,0.0010615685,-0.04609236,0.05146617,-0.053486858,-0.014033819,-0.014220258,0.019987954,0.04192527,-0.0110644875,-0.094185814,-0.042381044,-0.044816677,-0.008429993,-0.0043865824,0.019634467,0.024521716,-0.010171862,0.02184921,0.039451033,-0.06230179,0.0054100156,-0.0030664753,0.0048462553,0.0023654043,0.019988064,0.039654378,0.05252707,3.3846275e-34,0.027014382,0.08696564,-0.056411967,0.10666035,0.07605963,0.03150418,0.01695869,-0.020947311,-0.05831002,0.077440515,0.0016375823,0.008530159,-0.058596317,0.056304157,0.115537815,-0.12480029,0.016359989,-0.022776315,-0.018476691,-0.0019520392,-0.07610291,-0.09570195,-0.029173443,0.0012009881,0.080948345,0.03917674,0.08141763,-0.0046493323,-0.06654865,0.0012623592,-0.03594086,-0.0408307,-0.04609427,0.010494136,0.023802582,0.0030094471,-0.062101655,-0.049655385,-0.0072507197,0.030817552,-0.021554453,0.08734855,-0.03196252,-0.0297269,-0.05566786,0.09640068,0.011475297,0.06274737,-0.06849417,0.07383217,-0.058110904,0.018451063,0.043216616,0.08633379,-0.011250046,0.008886255,0.02811115,-0.04000653,0.08192333,0.06835456,0.014585102,-0.01030656,-0.054748572,0.046585325,-0.017281273,-0.012117875,0.041970145,-0.028647656,0.08047523,0.055718906,-0.027289847,-0.065294474,0.09480734,-0.0041478192,-0.0067038448,0.09481234,-0.10247302,0.030280145,-0.026383089,-0.0018534584,0.027838467,0.108573526,0.032340296,0.013995197,0.092467956,-0.008371733,-0.03405091,-0.04353128,-0.060635142,0.103501335,-0.081745796,0.017011233,0.1065938,0.031430583,-0.0286728,1.0874516e-33,-0.012083314,0.035336994,0.0662293,-0.018020751,0.09729175,0.022296855,0.021670023,-0.06182384,-0.007891986,0.07946445,0.01501656,0.013700855,0.06108986,-0.034248248,-0.031749453,-0.033254247,0.022122154,-0.0823659,0.05592825,-0.034929782,0.07798592,-0.0068698544,-0.10500272,-0.036000535,-0.0042628027,0.026976451,-0.097662374,0.0589073,-0.044465844,0.061684854,-0.0096803745,-0.037896313,0.072897084,0.0051605734,-0.005565608,0.061341297,0.06951398,0.08591369,-0.037879266,-0.03700149,0.09039118,-0.018575812,-0.10349622,0.0064955414,0.017820265,-0.036807757,-0.067139976,0.013049154,-0.082053185,0.0116262715,-0.16510749,0.0074815997,-0.0052258116,-0.025598276,0.015466718,-0.081374064,-0.0020012513,0.024026895,-0.0039514485,0.016905282,0.006840372,-0.005315997,-0.0037742683,0.02870009,0.057060704,-0.047350638,0.053785767,-0.000366779,-0.08143859,-0.015546035,-0.12285074,-0.009068325,0.12145982,-0.03468732,0.0041743834,-0.017166037,0.003965085,-0.0016129283,0.10640923,0.0047261333,-0.0062352745,-0.03636497,-0.01992304,0.049991764,0.045830775,0.03749265,-0.038809817,-0.03146331,0.03160735,-0.05375799,0.033005595,0.0105006825,-0.054585047,0.029022474,-0.005747949,-1.5005575e-08,-0.0018738887,-0.025203854,-0.080850996,0.022524627,-0.07432601,-0.037780963,0.03740431,0.007355768,0.04191503,-0.036679283,0.045702636,-0.03714132,-0.014055186,0.07162359,-0.040260457,0.009690918,-0.041771594,0.08678311,-0.08127362,0.006993989,0.0042532003,0.050186317,0.092597455,0.027337106,-0.0019415419,-0.054164387,0.02079629,0.015762683,0.051425185,0.054808132,-0.0153970895,0.028103676,0.00069652975,-0.0016613204,0.06636174,-0.013637754,-0.06224573,0.08698856,0.038862918,0.0077196844,0.033018783,-0.026289614,-0.010151964,-0.016103853,-0.016759722,0.0013107191,-0.06520322,-0.0015359971,-0.041034587,0.02755188,-0.013330362,0.07091066,0.059852105,0.021208642,0.07205773,0.050830115,0.05789229,0.028964452,0.00059040537,0.07588857,0.021987902,-0.08379304,-0.080715366,0.025935274} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.61633+00 2026-01-30 02:01:09.930997+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1588 google ChdDSUhNMG9nS0VJQ0FnSUQyMU1uZXJBRRAB 1 t 1591 Go Karts Mar Menor unknown Absolutely 💯 fun absolutely 💯 fun 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Absolutely 💯 fun"} {-0.08630994,-0.039575797,0.032848697,-0.011699858,-0.12107792,-0.011352542,0.07004907,-0.0396193,0.012279095,0.040131304,0.04127242,0.024216251,0.020350127,0.08651076,0.019182809,0.04523682,0.066913724,0.047547705,-0.0016910151,0.07220805,-0.11000559,-0.036236167,0.012156038,-0.045184013,-0.08399228,0.01903778,-0.017322917,0.013992705,0.01303723,-0.049012303,-0.09392183,0.076187305,-0.043609917,-0.024496155,0.038160726,0.002033135,0.052019104,-0.012494096,0.032330703,0.080102175,-0.017506571,-0.0008018242,0.007713508,0.0027205516,-0.029641159,0.119689085,-0.002995145,-0.015330124,0.020166738,0.07678161,0.06998938,0.07096716,0.022979842,0.06440035,0.028560441,0.09137417,-0.032748006,-0.13393949,-0.04794408,-0.0581352,0.009895585,0.081517905,0.060050268,0.035109967,0.0582718,-0.02799413,0.0048652915,-0.03833247,0.018367412,0.012853707,-0.019374812,0.047802854,0.026795575,-0.034251984,0.022095535,0.055819537,-0.046895284,-0.06750237,-0.03586256,0.02186836,0.03839121,0.050367184,0.032797303,-0.0067308196,-0.12173145,-0.12508678,0.002126456,-0.055271894,0.02381364,-0.014654338,0.040359616,0.05896916,0.038006924,-0.009141148,-0.08662775,-0.044041827,0.022418644,-0.04383656,-0.08273169,0.030739574,0.009750749,0.029264854,0.035527784,0.01900217,-0.07430028,0.06006714,-0.09137136,0.028000088,0.044243533,-0.0894726,-0.007929461,0.052157488,-0.003565858,0.025465135,0.066222996,0.06285087,-0.04309661,0.005464011,-0.04723717,-0.060839612,0.068698265,0.01552392,0.045258492,0.0133012,0.062039554,-0.122159176,0.057661187,-4.2062116e-33,0.010172089,-0.010694972,-0.03345627,0.029286707,0.025990758,0.03455428,0.027423296,-0.04175733,-0.1125283,-0.012820017,-0.027017105,0.065854885,-0.015473777,0.026903654,-0.03511154,0.01528297,-0.033614207,-0.007685263,0.032040022,0.012274659,-0.0006325191,-0.12334723,-0.017690273,0.0707386,-0.056646835,0.046887215,0.002682664,-0.07951585,0.123548165,0.036800113,0.0053471597,-0.021102307,-0.08943297,0.029976498,-0.0070925076,-0.07643889,0.028242595,0.0073456643,-0.047831923,0.035417967,0.091844656,0.00984867,0.0005430437,-0.015566774,-0.0014027457,-0.010440542,-0.01283915,-0.0018176448,0.0060780495,-0.06844584,-0.08920428,-0.0018153226,-0.03242961,0.02030105,0.062475875,-0.026179682,-0.039486565,-0.042046268,0.0072961175,-0.024365596,0.023242103,0.03761176,-0.05958742,-0.040686306,-0.086580224,0.036145333,0.018375898,-0.010987492,0.04184438,-0.06299323,0.010592679,0.012964649,0.07175937,-0.009255813,0.09871483,0.009874882,0.047697473,-0.036862947,0.016717562,-0.010726347,0.07048652,-0.034752347,-0.030247653,-0.023339475,0.056446273,-0.03754416,0.06646979,-0.20684187,-0.05074247,0.03988848,-0.05443709,-0.025697911,0.07875377,-0.00093830674,-0.098308966,3.7111297e-33,0.031332836,0.024494821,-0.071542874,0.015724039,0.008845188,-0.019448316,-0.047789175,0.0054222173,0.011532302,0.053478498,-0.014141165,0.011326168,-0.08497962,-0.010285212,-0.02623577,-0.045807786,0.05894737,0.009547484,-0.029185502,0.015105199,-0.0036868071,-0.02114104,-0.1007662,-0.02414163,-0.05938985,0.083278276,0.081772916,0.04619799,0.016297996,0.056705408,-0.017352236,0.008934588,-0.02417906,-0.052631527,0.008697576,0.029027125,0.08337082,0.014133458,-0.03530676,-0.057116132,-0.046986885,-0.028052941,-0.05797922,0.06534904,0.032343972,0.047114525,0.028065797,-0.004204026,-0.034229726,0.018167645,3.654409e-05,-0.0082659405,-0.006364501,-0.10215181,0.015596748,-0.05966033,0.035347313,0.014664522,0.0012699018,-0.017207969,-0.09763958,0.10069721,0.0077502294,0.024602195,0.056056425,-0.08299529,-0.051287547,-0.041286636,-0.02877639,-0.01966239,-0.06804115,0.054096673,-0.071434245,0.0391641,0.051732894,-0.09113685,0.03502473,-0.005215244,0.10597627,0.044538405,-0.081165284,0.026051397,0.030766496,-0.0049398406,0.0442551,-0.032952633,0.0031080877,0.0702574,-0.0037470085,-0.030487305,0.046401728,0.087352,0.026621923,-0.058638778,0.019635445,-1.6285657e-08,0.031012677,0.05213141,0.026760513,-0.035213105,-0.04893982,0.027853735,-0.030622102,-0.076871,0.006514354,0.030866573,0.08208937,-0.0071289223,0.033844896,0.1131512,0.0034194924,0.012490921,0.04599349,0.08344068,0.000581033,0.013982518,0.053708438,0.085534595,-0.049137495,0.048151676,-0.044900704,0.011212293,0.030540235,0.069756046,0.04287036,-0.05440206,0.0319507,0.009450582,-0.07385415,0.08103534,-0.038243648,-0.13411386,-0.018894453,-0.043931797,-0.0033062436,0.01627735,-0.02591689,-0.04651726,0.030682806,-0.010511116,-0.08072011,-0.0123766055,0.07022071,-0.060945846,-0.015289503,0.0028215256,-0.01809715,-0.027673272,-0.01390673,0.06554812,0.12677942,0.016548518,0.022995343,0.048435677,-0.020418454,0.061330155,0.055274244,0.051495656,-0.029009214,-0.022887785} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.625974+00 2026-01-30 02:01:09.93923+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1589 google ChZDSUhNMG9nS0VJQ0FnSURnXzVIclJBEAE 1 t 1592 Go Karts Mar Menor unknown Excellent afternoon out excellent afternoon out 5 2018-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Excellent afternoon out"} {-0.060563397,0.05561127,0.042007137,-0.010235959,0.010888928,-0.0676533,0.032024354,0.0028358086,-0.0034336932,0.021247182,-0.030925285,0.08898132,0.026167171,-0.0036395187,0.05304959,0.1213355,0.04256501,-0.05648701,-0.048507344,0.014229037,-0.09737506,-0.02906246,-0.019643372,0.0042634676,-0.051731706,0.032189313,0.056221303,0.030544901,0.006235558,-0.03538141,-0.09981532,0.05024052,0.021454815,-0.04421806,0.07316621,0.0070372606,0.049410954,-0.09905495,0.076418094,0.028621517,0.0358392,-0.047828514,0.00024254582,0.009698734,0.01598854,0.11321614,-0.029996801,-0.02062905,0.074007906,0.04508366,-0.013392897,0.023091871,-0.042875994,-0.008967555,-0.030778887,0.08163144,-0.0024376488,-0.060425926,0.06317035,-0.059302293,-0.011209606,0.038813002,-0.06891008,0.038392223,0.073664635,-0.07189076,0.024669435,0.06041731,-0.08739718,-0.026891168,-0.026265929,0.04135002,0.042459074,-0.051155467,0.0119937565,0.009324718,-0.014173936,-0.06393513,0.077747434,-0.006405306,0.043326546,-0.015952786,-0.056937907,0.009814336,-0.056839276,-0.031090204,0.038290758,0.036293373,0.015883233,-0.023404678,-0.07413172,0.025752397,-0.090693735,-0.009791555,0.057782233,-0.04022604,0.02675159,-0.0066894386,-0.054327812,0.12440163,0.067189366,0.059101414,-0.027898846,-0.014678627,-0.034552507,-0.092592716,-0.030788377,0.0063947393,0.021219995,-0.06427238,0.047764383,0.05599302,0.06949595,0.0109181935,0.09122284,0.0991449,0.024178699,0.100184985,-0.021404063,-0.0024653778,-0.03158351,-0.020088658,0.0061553023,-0.008254923,-0.01686821,-0.06350184,0.031926773,-2.6949944e-33,0.010111817,0.023016153,-0.028888058,0.07689971,0.021920072,-0.015520735,0.024625003,-0.108220324,0.014633792,-0.033422515,-0.016714416,0.0011945571,0.006701744,-0.07162093,0.012383561,0.049618486,0.045270793,0.11886335,0.036865283,0.03678639,-0.007290961,-0.022294968,-0.01105729,0.031831887,-0.017109564,0.03763731,-0.0066088303,-0.042804204,0.035918295,0.04508221,0.10028199,0.0144006135,-0.038194526,0.051898863,0.04765079,-0.07012727,-0.037190206,-0.022283988,-0.007576212,-0.015885089,0.013816536,0.0061682733,-0.017859964,0.016529974,-0.056445315,0.02054534,0.019603318,0.00203247,0.060484666,-0.06327502,-0.10457243,0.022822998,-0.016265605,-0.032214917,-0.086610526,0.018983832,-0.039737996,-0.017657043,0.043490414,0.05718287,0.020440739,0.15805985,-0.080523655,-0.09879221,-0.057241153,-0.027216963,0.015874468,-0.03981145,0.007970541,0.015329576,-0.038145464,-0.020259017,0.13374428,0.041919634,0.020137105,-0.004828263,-0.006124302,-0.047063444,0.044619333,0.041497782,0.015660949,0.029688675,0.026842516,-0.08678685,0.04718853,0.06248277,0.055734362,-0.085319884,0.016508782,0.024624892,-0.09462046,0.04260701,0.03204658,-0.046587262,-0.063310765,2.853183e-33,0.12958325,-0.019409936,-0.06644355,-0.015567229,-0.013730102,0.019224228,-0.022305328,0.060833044,-0.03646338,0.084927954,-0.07268566,0.024563286,0.05541184,-0.027531317,-0.01318844,-0.028545426,0.055402517,0.06756486,-0.027157353,0.009998087,-0.03428853,-0.0069975047,0.07790247,0.015755799,0.008887096,0.044261485,0.018244307,0.054600842,-0.07905918,-0.022617878,0.01715532,0.037253853,-0.00793529,0.015071397,-0.0099278055,0.0312634,0.041967824,-0.041854475,-0.075882874,0.011462821,-0.06641339,0.09373477,-0.04152035,0.058705278,0.035767004,-0.043038785,0.028891249,0.004291206,-0.0555782,0.086464316,0.006362532,-0.0569237,0.006786606,0.017581569,-0.017216215,-0.08881361,0.068860665,0.015939714,0.0010442858,0.04814758,-0.1486803,0.020120122,0.01468619,0.025093915,0.10810787,0.0171314,-0.07747526,-0.0036206946,-0.0023558547,0.020118983,-0.047660604,-0.08776075,-0.061689887,0.0067401547,0.06919083,0.0448727,0.051174793,-0.08560739,-0.04834206,-0.047931075,-0.094061926,0.009031839,0.048989303,0.030584183,-0.019784475,-0.13588586,0.042729445,0.016832484,0.0043646353,-0.04342215,0.048807103,0.03636385,0.00030536947,0.03882653,-0.011640573,-1.5729842e-08,0.03354673,0.036658444,-0.01791044,0.044912767,-0.015431285,0.00029076866,-0.0038658788,-0.010299886,0.04948766,-0.0057081487,0.06420024,0.05104396,-0.03192737,0.06446501,0.067152835,-0.051354047,-0.033728205,0.051170904,-0.05047687,-0.0749664,-0.023189517,0.022612449,0.022859357,0.005260164,0.06609457,0.017907213,-0.103603065,0.038125344,-0.023331905,0.060176097,-0.0144848125,0.20998555,-0.13513447,-0.023074685,-0.038535777,-0.0026057472,0.0155145405,0.050369013,0.030609215,-0.025866343,-0.045599163,-0.10710142,-0.034535445,-0.043506,0.002088778,-0.011226693,0.012683341,0.001783748,-0.06745401,-0.031657726,-0.0058562127,-0.059351142,0.008974489,-0.008501953,0.07918483,-0.02415003,0.026910702,-0.07174417,-0.054407176,0.028862823,0.00013393821,0.037489977,-0.017121354,0.03275874} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.636902+00 2026-01-30 02:01:09.947167+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1590 google ChdDSUhNMG9nS0VJQ0FnSURyMEtQajVnRRAB 1 t 1593 Go Karts Mar Menor unknown Great great 5 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great"} {-0.06252305,-0.05636617,-0.07009899,-0.008410973,0.040871553,-0.02597851,0.051079627,0.02402485,-0.0817728,-0.03129075,0.019466778,0.12486697,-0.0036587417,0.049827684,0.044160273,0.01773102,0.014455449,-0.09991646,-0.06910024,0.029683815,-0.06145425,0.039003193,0.06943358,-0.020515256,-0.00566488,-0.012609738,0.046708938,0.04587993,0.062038567,-0.006579513,-0.14108175,0.013439009,-0.017693214,-0.007028385,-0.027104802,-0.00034603057,-0.054389026,-0.0149041135,0.0776303,0.05586388,0.020783411,-0.06358208,0.02845229,0.06220861,0.03883874,0.04160464,0.0067167357,0.004002099,0.031027041,-0.0009074339,0.01136396,-0.06958205,-0.041496616,0.002996854,0.04280656,-0.040141217,0.013812889,0.009389834,-0.0016696507,-0.07097194,0.041371025,0.015358115,-0.11297421,0.027388152,-0.023150858,0.0085645355,-0.0007307283,-0.046208832,-0.121115,0.036903694,0.027779052,-0.001112794,0.012830036,-0.11112213,0.04411728,0.0047564004,0.045531057,0.05723064,0.0041081184,0.030038305,-0.015580546,-0.02275692,-0.09359624,0.002207575,-0.051150635,-0.069126956,0.13533352,0.039272666,-0.03925567,-0.006614534,0.06428106,-0.044050556,0.0014832758,0.05094515,-0.043041073,-0.011197085,0.07861924,-0.07231014,-0.086580746,0.19181678,0.028536694,0.05844871,0.060075015,-0.031953137,0.0006961247,-0.028040458,-0.02286693,0.03374297,-0.04164626,-0.062161148,0.020814301,-0.013833253,0.034107737,0.09895995,-0.0049556373,0.100342534,0.017137744,0.054171838,0.0074402317,0.010866069,0.044041112,0.015083669,0.006471909,-0.03781594,-0.050001793,-0.061013483,0.058432586,-1.9736183e-33,-0.002728356,0.039594445,-0.009071826,0.013096769,0.09071388,0.012168599,-0.009821433,-0.007933892,0.019799817,0.08097498,0.008239429,-4.9210234e-05,-0.0031266124,0.037167285,0.043355227,0.04631636,-0.0028335487,0.045761105,0.025670527,0.06569774,0.00056017726,0.06599459,-0.02563085,0.060825344,0.0136709185,0.04287756,0.021863366,-0.040925886,0.059763193,0.037409108,-0.02584316,-0.0047976347,-0.05679985,0.042488586,0.019283062,-0.032619733,-0.06559009,-0.046491496,-0.020886103,0.05426761,0.01650018,-0.020203903,-0.07602019,-0.0643556,-0.028350616,0.018962508,0.025500856,0.05529884,-0.025161128,0.012512708,-0.06336967,0.0031259158,-0.16717291,0.011742315,-0.060878657,0.020987283,-0.012982877,-0.02955611,-0.030963043,0.051249325,0.11697837,0.09355674,-0.008507854,-0.066835284,-0.04745325,-0.020362489,-0.012352035,-0.047270887,0.025614021,0.015494986,-0.05766622,-0.010312873,0.06424796,0.01341535,-0.026737237,0.010935751,-0.02797319,0.015061834,-0.03915243,-0.03559587,0.01785201,-0.04903332,0.0029048992,0.047177743,0.028803835,0.016811334,0.042331632,-0.06858516,0.036312845,-0.0030066858,-0.09563486,0.06255671,0.06762358,0.02930708,-0.021587998,2.2183586e-33,0.0064548305,0.05228186,-0.010095271,0.119766824,-0.06692495,-0.02834695,0.02486303,0.03702401,-0.04537387,0.00484808,0.0064472603,-0.03678557,0.020688113,0.010906148,-0.039607093,0.037818775,0.09698506,0.012797709,-0.013769351,-0.042049468,-0.026644744,-0.008501605,-0.016292004,-0.024324771,-0.03871695,0.04338037,-0.046069883,0.014029532,-0.00614449,-0.0052561406,0.05320108,-0.10118386,-0.16173655,-0.00065654906,0.07180752,0.082095265,0.0069251475,0.014683871,-0.025481353,-0.050839435,-0.0037903117,-0.010484087,-0.061727356,0.13489214,-0.0047375876,-0.034230087,0.036946762,-0.03942368,-0.032968655,0.0814818,-0.07490964,-0.07951835,-0.05625868,-0.03401376,-0.060708832,-0.048125576,0.118964106,0.08555637,-0.002112152,-0.0051779263,-0.051344164,0.005784828,-0.027135164,0.055646963,0.030411156,0.016490825,0.009074587,-0.0017406316,-0.034193244,0.031100938,0.005494118,-0.04292024,-0.18930064,-0.0035930302,0.05795397,-0.099160224,0.06397413,0.008724462,-0.030612445,0.027363705,-0.03279139,-0.024558876,-0.018427258,-0.047317915,-0.007910879,-0.046309277,-0.015860377,0.07240441,-0.01733199,0.016560435,-0.06080613,0.053879924,0.02170767,-0.048600234,0.045434434,-1.5095365e-08,-0.00095004844,0.070523135,0.0003524276,0.024740005,0.0237573,0.10088162,-0.025497114,0.016904848,0.0021781093,0.053229727,0.07458593,0.05912174,-0.009219484,0.009846813,0.046278708,-0.039135482,-0.017344618,0.028363578,-0.003060524,0.0041400907,-0.0766142,0.063703395,0.096945636,-0.0054150415,-0.0073551396,0.037227146,0.020282285,0.062314674,0.016067462,-0.022285642,0.020735461,0.1736548,-0.0426622,-0.05953259,0.04856056,-0.056453053,-0.08440525,-0.026216125,0.03461852,-0.04854371,-0.03000028,-0.029165614,-0.01932364,0.00053834426,-0.06838829,0.02114444,0.028742895,-0.0061083483,-0.04899558,-0.014018083,0.044903774,-0.023736507,-0.01603182,0.04668984,0.061784636,0.009560505,0.029117059,-0.01931615,0.02604219,0.082601026,0.15557113,-0.0077269888,-0.012471119,0.04390921} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.645818+00 2026-01-30 02:01:09.951174+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1592 google ChZDSUhNMG9nS0VJQ0FnSUMwN05hNE9REAE 1 t 1595 Go Karts Mar Menor unknown Great day out great day out 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great day out"} {0.0069231507,0.09068496,0.044304,0.01591621,0.021444393,-0.029716665,0.062262334,0.02920493,-0.035235908,-0.01569327,0.014379702,0.13018122,0.008249261,-0.01160096,0.051294886,0.04189489,-0.049338445,-0.038462125,-0.15584536,0.026333464,-0.03768889,-0.0046073706,-0.02877131,0.049384486,-0.12080943,0.06866654,0.025871426,-0.038890406,0.024306823,0.035633653,-0.14253375,0.06262975,-0.02624773,-0.08438507,0.07605129,-0.05642001,0.019113611,-0.09659977,0.006846473,0.04111278,0.00969974,-0.023949178,0.038204726,0.017434562,0.034294758,0.06355182,-0.018135622,-0.024646925,0.02407582,0.05813677,0.021362228,0.007616196,-0.015037386,0.007365741,-0.024081387,0.1312218,0.05825761,-0.056292973,0.0651919,-0.03682773,0.029609252,0.032703005,-0.011612226,0.012569698,0.021273633,-0.061186895,0.020326843,0.052146383,-0.08315858,-0.019610967,-0.03781,0.007490508,0.061682962,-0.028446572,0.026032189,0.111814156,1.2962295e-06,-0.0032700323,0.07215545,-0.0048310612,0.04888931,0.003984665,-0.048265025,0.0020884515,-0.067699656,-0.034192517,0.03570935,0.03145254,0.038780272,-0.011662702,-0.08723862,0.008717391,-0.045788527,0.017730825,-0.022693986,-0.10746829,0.0090048835,0.04620435,-0.056505583,0.11184054,0.058790207,0.09353001,-0.001779293,0.008512734,0.025395032,-0.04723002,-0.05197474,-0.022625534,-0.03290336,-0.07151394,0.047650732,0.08973344,0.09250248,0.04213951,0.031860076,0.09077996,0.018723262,0.11028001,-0.00030673246,-0.03060417,-0.010984397,-0.049039338,0.07003929,-0.008462641,0.07141457,-0.04616861,0.084484,-1.0094381e-33,-0.00853291,0.059408214,0.02575462,0.057726376,0.06908775,0.0071654227,-0.015897347,-0.061306898,-0.027240874,-0.029617863,0.0022190413,-0.054211743,-0.027379043,0.005564118,0.0046097143,-0.0004261473,-0.05035508,0.11628442,0.11245716,0.046095856,0.012410388,-0.04251944,-0.059099987,0.06881939,-0.00628497,0.09322536,0.015686745,-0.07695927,-0.05320748,0.01537946,0.060534444,-0.027677093,0.00848068,0.0645507,0.016335368,-0.12950137,-0.05198605,-0.05910782,-0.03912865,-0.022018755,-0.034166154,0.0026718671,0.006699178,-0.018330747,-0.041571368,0.018875178,0.05796934,-0.0070858337,0.037615687,-0.03571393,-0.078488596,-0.0017957436,-0.04728386,-0.016337449,-0.08363948,-0.018196952,-0.014508622,-0.014620696,0.07336919,0.050347816,-0.008934103,0.086743616,-0.06907419,-0.0748819,-0.04381286,0.012074678,0.010559457,-0.024553955,-0.07682403,0.0726231,-0.028271766,-0.015587893,0.085425705,-0.037943512,-0.015284981,0.01798925,0.046678968,-0.08287783,0.0023666539,-0.00014844557,0.006539172,0.008988768,0.06540931,-0.14598389,0.059745632,0.060413137,0.038889576,-0.072129026,0.007357575,-0.040100276,-0.16916971,0.08948455,-0.0059474497,-0.055443417,-0.0055163424,1.411614e-33,0.048126172,0.034565862,-0.06928304,0.014112195,-0.0023700828,-0.01540003,-0.0055487864,0.11030438,-0.027563319,0.05926203,-0.01392063,0.045057185,0.027232513,-0.020732304,-0.011524805,-0.051485594,0.066504836,0.021662185,-0.071794316,0.009953522,-0.026265904,-0.07201023,0.006200775,0.05000298,0.029315757,0.039070092,0.019886231,0.12891132,-0.04268079,-0.061495762,0.00208641,0.018716104,-0.06995378,-0.025591237,0.003956939,0.039718933,-0.012052234,-0.0052450616,-0.05162173,0.043109287,0.0018690653,0.07006615,-0.026061675,0.101355664,0.011366602,0.017895801,-0.019273765,-0.017255427,0.0073332014,0.098142974,-0.062380377,-0.02326718,-0.010660976,0.01992706,-0.014122871,-0.055882353,0.02252731,0.034074865,-0.08224662,0.06948591,-0.116839945,-0.026223933,-0.0012883613,0.01814065,0.080285475,0.0021165677,-0.07104103,0.041362368,-0.01254894,0.053452555,-0.04799685,-0.05271987,-0.08533115,-0.014189205,-0.020239333,-0.00070270326,-0.051269878,-0.036505222,-0.039601114,0.013255395,-0.08975421,0.038675338,0.046730567,0.055099443,0.007452698,-0.07576658,-0.02734096,0.04382906,0.011046433,-0.010873087,0.012382837,0.020042086,-0.018577546,0.0910578,-0.008004862,-1.5650716e-08,0.011705772,0.056416757,-0.050828006,0.012214657,0.012263877,0.006383606,-0.0034213273,-0.019339968,0.002434573,0.07255564,0.04521549,0.014829255,-0.023785545,0.06428028,0.041846436,-0.03126835,-0.063380025,0.03953356,0.0009836698,-0.012382197,-0.0031803297,-0.049028344,-0.03550111,0.075256914,0.058961034,0.029972747,-0.031542685,0.107870884,-0.06443578,0.043773375,-0.014698425,0.10757332,-0.07977703,-0.017040074,-0.0070958147,0.0039845114,0.04373727,0.029254908,0.06757373,-0.047712013,-0.068134174,-0.06456961,-0.008957395,-0.031684928,-0.050730657,0.006072437,0.014443075,0.020929622,-0.07174642,-0.06505116,-0.0032006693,-0.004684111,0.020980231,0.0088933,0.054971136,0.005204935,-0.019823615,0.009535276,-0.018175133,0.042644016,-0.012799332,-0.025722777,-0.052212026,0.05311647} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.665787+00 2026-01-30 02:01:09.961166+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1593 google ChdDSUhNMG9nS0VJQ0FnSUN4djlHcWxRRRAB 1 t 1596 Go Karts Mar Menor unknown "Don't crash" "don't crash" 5 2024-01-31 01:52:39.833374+00 en v5.1 E4.01 {} V0 I1 CR-N {} {"E4.01": "\\"Don't crash\\""} {0.06807887,0.032526746,0.074743055,-0.003252405,0.06397646,0.054190937,0.13367157,0.04488555,-0.0086001605,-0.037579123,0.02622771,0.01445561,-0.033457782,-0.052722655,-0.07112844,0.033750508,0.055148154,0.09056361,-0.050525196,0.05725949,-0.0158818,0.06335697,0.05039454,0.06212156,-0.09505081,0.013982024,0.0015031504,0.035358164,-0.05278659,0.0056681056,-0.01613785,0.007900438,-0.009712881,0.02026304,0.03564181,-0.015007518,0.0028421257,0.005183013,0.064334005,-0.039840855,-0.10139309,-0.04938724,-0.032487504,-0.014953643,-0.011945139,-0.0091619985,0.0074646934,-0.0013469502,0.096830346,0.016585572,-0.086822025,0.014173328,-0.016078025,-0.1174219,0.13827291,0.030749034,0.038391434,0.030825943,0.03287089,0.06878574,0.0342202,-0.02521964,0.0012122728,0.049669094,0.10657401,0.08395518,0.008074401,-0.00052787224,-0.11415961,0.112714276,-0.0460396,-0.0524774,-0.0955194,-0.031226356,-0.096400425,0.031492803,0.0081212,-0.08625658,-0.010514804,0.019398645,-0.05821462,-0.10532696,-0.06847827,-0.04886518,0.07127407,0.07046521,0.014441588,0.03556353,0.034440268,-0.028447965,-0.1105744,0.02307957,0.040779516,0.015144713,-0.0355945,0.032984268,-0.030048842,-0.07007279,-0.05707437,0.08128626,0.07208537,0.08144504,0.022839613,0.03610098,-0.023404801,-0.09916606,0.087450765,-0.008284102,0.018363928,-0.03430666,0.044522095,0.03071113,0.042286336,0.0004232034,-0.04535114,-0.025359627,-0.11355946,-0.007795862,0.007852385,0.07311813,-0.0030826705,-0.019697826,-0.039389364,0.01691249,-0.01391952,-0.08339998,0.022207139,-4.8297496e-33,0.05422521,-0.009265702,0.043153726,0.060398564,0.07248544,-0.068698265,-0.0483431,-0.0066411383,-0.039129514,0.08833242,0.010624382,-0.14247857,0.016460793,-0.058852147,0.08680738,0.019639077,-0.023021266,-0.0790329,-0.032831315,0.0019424914,0.031032769,-0.0068385666,-0.015257909,0.025343396,0.03316656,0.03665254,0.008366985,-0.009736621,0.08432084,0.059608366,-0.1777048,0.027415494,-0.021224985,0.0200075,0.006104029,0.035385616,-0.16097824,0.056282457,-0.080912225,-0.018808017,-0.03880173,0.017049933,-0.099461675,0.017183978,0.009405274,-0.06857974,0.042510886,0.03166263,-0.040766526,0.029190527,-0.011121759,0.0020363817,0.028292082,0.006882314,-0.03060306,-0.03034399,0.06312259,-0.0273369,-0.014870854,0.047965202,-0.04297067,-0.09112865,-0.029340794,-0.07248964,-0.06658069,0.01074162,0.022049896,-0.019432934,0.0035859132,-0.022267867,-0.015095753,-0.03451806,-0.017131297,0.0072975745,-0.05519357,-0.031583868,-0.0489529,0.010218605,-0.049309704,-0.048502743,0.0732017,-0.042962357,-0.022401428,-0.045278434,0.036909778,0.02091377,0.0051715486,0.020524904,-0.09715187,-0.027185317,-0.096852705,-0.020365773,0.04584803,0.00061266334,-0.0029859603,3.1766967e-33,-0.03698732,-0.027984431,0.008143772,-0.010572994,-0.02139768,-0.027301807,0.008361676,0.03883413,-0.03132524,-0.067097716,-0.018794121,-0.041179236,0.02401314,0.02846159,0.08719313,-0.079195194,0.06298434,-0.027548607,-0.031298622,0.049950283,-0.028052215,-0.0958543,-0.024521936,0.0017007496,-0.004357624,0.021336474,-0.03501742,0.039978318,-0.0003713711,-0.031562757,0.0050442987,-0.020887423,-0.011653824,0.06085396,0.03504566,0.09098951,-0.022066548,-0.052798077,-0.091323555,-0.009666728,0.079350464,0.039590456,-0.042350892,0.055262465,0.038507976,-0.017613469,-0.014595946,-0.0007451892,0.029512703,0.054072507,-0.0019961635,-0.04245954,-0.0314322,0.01391433,0.017701503,-0.0015296409,0.14493589,0.009676292,-0.080444075,-0.048199467,-0.032587,0.018146863,0.029920308,0.053488277,-0.026090745,-0.07676731,-0.040804416,0.033978246,0.041398212,0.04581295,-0.032825243,0.06194496,-0.026162058,-0.081087306,-0.076800466,-0.0031850764,-0.06767967,0.0032836387,-0.022161312,-0.040072396,0.08973762,-0.004690428,-0.009738258,0.10187633,-0.031994056,0.042122535,-0.096303366,0.013702426,-0.048413366,0.02294976,-0.02479039,0.07574195,0.07193551,0.06878501,-0.09408088,-1.5935628e-08,-0.023391936,0.035590213,-0.01569173,-0.023910291,0.045149684,-0.059223995,-0.005158933,-0.008682578,0.010624597,0.023324136,0.09597108,-0.052569814,-0.046085965,0.059584852,-0.061608918,0.012935347,-0.0055696145,0.047536336,-0.0039295647,0.021983376,0.048952825,0.0028908192,0.056756195,-0.0043840343,0.05727178,-0.012503612,0.064203456,0.00087339274,0.025596425,-0.04673888,-0.023198165,0.034129944,-0.030919518,-0.036343955,-0.05181472,0.057870977,0.100489184,0.047210272,0.05263228,-0.019935472,-0.0006293236,0.05721458,0.06346513,0.026879344,-0.032831926,0.019288404,0.0028393753,0.009693836,0.043834895,0.041929808,-0.05082542,0.007516393,-0.0056136707,0.12810032,0.038407132,0.032811772,-0.012437119,0.023243433,0.010435241,-0.037519112,-0.0067197857,0.078136355,0.020166,-0.042110715} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.676052+00 2026-01-30 02:01:09.963587+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1594 google ChdDSUhNMG9nS0VJQ0FnSUNhNktyMzlRRRAB 1 t 1597 Go Karts Mar Menor unknown Great! great! 5 2022-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great!"} {-0.021892138,-0.071170464,-0.08756677,-0.027894737,0.033787847,0.031070974,-0.0073119826,-0.054747384,-0.16851285,-0.013884279,0.012296614,0.11725409,0.03747164,0.018264001,0.04975308,0.02398643,-0.042324428,-0.04400994,-0.020433499,0.012375013,-0.02840598,-0.04690144,0.044987794,0.012717758,0.038280815,0.01776037,-0.019046858,0.06277806,0.056072846,-0.06339851,-0.14410512,0.062247775,0.0025609701,0.029510548,-0.010954789,-0.022759393,-0.018964387,-0.02675172,0.071467236,0.048033036,0.04631513,-0.0072924085,0.018518955,0.063449584,0.019858375,0.067544304,-0.010801989,0.005044797,-0.0082887085,0.06091099,0.04332966,-0.060974184,0.012403836,0.033651646,-0.018840093,-0.025998153,-0.00738967,-0.047957536,-0.022062704,-0.09075545,0.025456596,0.041831907,-0.13566418,0.02655667,0.005993849,0.025007334,-0.015589852,-0.044730484,-0.07515596,0.01279982,0.06025623,-0.030092804,0.00882496,-0.082516655,0.07354234,0.020074656,0.060289845,0.008214016,0.046272386,0.0633641,-0.0049962886,-0.0335543,-0.08982493,-0.010342888,-0.044621576,-0.047174603,0.05459955,0.091286264,0.026101971,-0.019611321,0.04126024,-0.040729694,-0.07417376,0.05636423,-0.07807653,0.029013637,0.045881085,-0.035650287,-0.100732476,0.11302216,0.05925207,-0.007178125,0.027282428,-0.035396513,0.010707271,0.0048676804,0.005538203,0.039381877,-0.03475642,-0.09516311,0.021776678,-0.06076828,0.024090996,0.08774211,-0.0014194506,0.107246034,0.03495934,0.040042143,0.014461663,0.05191674,0.022252759,0.005400043,0.012096015,-0.0808247,-0.05120298,-0.010169379,0.07162585,-2.1671398e-34,0.012942328,0.03440792,0.026289536,0.040129736,0.054277346,0.027360925,-0.040415086,-0.025570923,-0.016143847,0.047395907,0.020169493,-0.07114918,-0.0138976155,0.04636985,-0.010888096,0.044222776,-0.056080703,0.044330467,0.016363908,0.05725452,-0.014114351,0.0911058,-0.02304244,0.036590774,0.014741335,0.024648473,0.015498541,-0.074829474,0.07887768,0.04856,-0.05018764,-0.017470093,-0.066863716,0.041664395,-0.0077209827,-0.0074345223,-0.07311953,-0.037076008,0.0030548994,0.07639793,0.05000962,-0.02210728,-0.09188654,-0.035730906,-0.06405046,-0.00955308,0.021629313,0.027539521,0.01657368,0.016969126,-0.11914616,0.03713856,-0.08257688,-0.0092248805,-0.06283536,0.030561676,-0.055229172,-0.06380852,-0.026535245,0.015709309,0.111659236,0.09290655,0.004570148,-0.13807213,-0.027256925,0.01528019,-0.04964994,-0.017698606,0.03409133,-0.0059153633,-0.042058036,0.037639398,0.03131518,0.02370361,0.0020690898,0.042867705,-0.03676673,0.0006625393,-0.055201173,-0.024793236,0.0066483147,-0.008109169,-0.017713934,0.036392972,0.02469089,0.007631885,0.048682842,-0.035438072,0.016972193,0.022812802,-0.094285324,0.058557417,0.06817752,0.044368397,-0.031445693,-1.2455806e-34,0.028200889,0.052734118,0.009353372,0.06731436,-0.04297671,-0.021965453,0.047829892,0.07283075,-0.059314758,-0.005370993,-0.019837392,-0.054626144,0.0038850163,-0.013255379,-0.0654734,0.045694344,0.044184033,-0.02122557,0.029700093,-0.009677689,-0.04808472,0.007835721,-0.02766914,-0.039135356,-0.026884945,0.059608445,0.027762743,0.034986567,0.0022434685,-0.008120498,0.014880673,-0.071548074,-0.084053114,-0.0027562939,0.039044347,0.075808056,0.009631102,-0.029758267,-0.008352007,-0.020139812,-0.008666335,-0.012275199,-0.028631777,0.104751125,-0.013864508,-0.00095909287,0.037136655,-0.058237314,-0.05269544,0.05651628,-0.058576114,-0.08444866,0.016449364,-0.03573565,-0.013174801,-0.01773757,0.11014735,0.026502188,-0.012156081,-0.019554287,-0.079721004,0.019465573,-0.0135653475,0.089195184,0.076148994,-0.021971198,0.03447983,0.030443221,0.004316056,0.06161804,0.03642387,-0.036183853,-0.124753535,-0.05056083,-0.017618952,-0.06661389,0.106066376,-0.064902395,-0.001270691,0.06957094,-0.030787637,0.021067869,0.016136248,-0.118713036,0.0061354446,-0.05081856,0.002680258,0.031656593,-0.03481047,0.06697465,-0.040388454,0.07545992,0.041661814,-0.020193536,0.0781228,-1.6912887e-08,0.011674466,0.09828613,-0.00083823164,0.02097283,0.0003971092,0.06104275,-0.10442948,0.012589398,-0.0443241,-0.027263911,0.07969666,0.070547156,-0.04414182,0.016419323,0.026599364,0.010805778,0.048888877,0.06337139,-0.013560412,-0.030330747,-0.04368353,0.052941598,0.08845384,0.01636287,0.027659478,0.016545473,0.054505154,0.0113557065,0.008169395,-0.0398353,0.065692976,0.14318267,-0.06353653,-0.033717245,-0.0011247189,-0.12704907,-0.10311596,0.02064225,0.031289153,-0.04968311,-0.035980813,-0.06317884,-0.023381202,0.013377451,-0.071823604,0.05999811,0.018165706,-0.043461546,-0.05432337,-0.0018157685,-0.00064238854,-0.024717545,0.011001767,0.012947642,0.0136317015,0.0028861996,0.06685526,-0.0030411517,0.0660484,0.11552272,0.14194167,-0.046598613,-0.065086484,0.08427286} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.687357+00 2026-01-30 02:01:09.968761+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1595 google ChdDSUhNMG9nS0VJQ0FnSUNPbXRXUzF3RRAB 1 t 1598 Go Karts Mar Menor unknown Dpm dpm 5 2023-01-31 01:52:39.833374+00 af v5.1 V4.03 {} V0 I1 CR-N {} {"V4.03": "Dpm"} {-0.076165125,-0.06534257,-0.021870539,-0.020037832,0.00048938795,-0.043204784,0.114062056,0.056872413,-0.026499733,0.0007049263,-0.013054637,-0.047007013,-0.09714717,0.029009804,-0.0052992734,0.071237944,0.040846977,-0.01499365,-0.0058756876,-0.04354135,-0.039843805,0.06094295,-0.037613586,-0.04530253,-0.009033827,0.06172368,0.045404438,0.10437238,0.042451635,-0.07797708,0.055256266,0.046402898,0.023178615,-0.040933806,0.0049883756,0.031807452,-0.03382638,-0.0074310075,-0.012460918,-0.055726472,0.08048813,0.06785068,-0.04852189,0.013116427,0.06509285,0.010201817,-0.029403072,0.10038206,-0.040517922,0.0017577593,0.058240533,-0.020406004,-0.017996976,0.009279479,-0.002904243,-0.020088635,0.026793716,0.05591447,0.0045269947,-0.056178197,-0.05936891,0.045873366,-0.012868746,-0.004963302,0.1181757,0.0046590855,0.024756178,0.03737264,0.08084094,0.0362292,-0.13308616,0.0036015934,-0.10879859,-0.028543944,-0.07126308,-0.026892366,0.034177143,-0.089714654,0.10799712,0.014021706,0.028126055,0.032789834,0.034175448,-0.03497389,0.02841828,-0.03877861,-0.01472958,0.0007669821,-0.03259277,-0.07307337,-0.031248888,-0.022044232,-0.04050339,0.08465578,-0.029002506,-0.024832202,-0.0042499555,-0.029152654,-0.03300349,0.17210144,0.04120759,0.057120744,-0.13489933,0.024593739,-0.031435966,-0.020795872,0.022857362,0.027075535,-0.023252387,0.04248834,0.048452735,0.032702085,0.04742208,0.036842104,0.0019538573,-0.02778978,-0.064462766,-0.022415197,0.0982096,-0.007956855,-0.046082385,-0.046265244,0.024156973,0.01344173,-0.04560554,-0.02014082,-0.018040258,-1.4771371e-33,0.020346241,-0.005916513,0.0028793295,-0.018816736,0.04380759,0.005390746,0.01658753,0.028249476,-0.034304872,0.061722558,-0.09531764,0.004331439,-0.03706091,0.007186265,-0.021850562,-0.027937993,0.060354065,0.046293218,0.060163498,0.049081393,0.017032161,0.081138186,0.0008266627,0.0041351723,0.02462085,0.054450963,0.023357444,0.070138685,0.11071277,0.035974465,-0.07677113,-0.082678795,-0.037955105,0.06315226,-0.044719364,-0.0552159,-0.057211053,-0.08329168,-0.024167016,-0.05958761,-0.0056599136,-0.022864362,-0.030168787,-0.01605072,-0.09360959,0.04893804,0.030718502,-0.035737265,-0.00046665478,-0.011692,-0.055191934,-0.0018466243,-0.021222074,-0.08111032,-0.03700929,-0.011711746,-0.02898049,-0.038834266,0.07841232,0.040640358,-0.05622821,0.009900061,-0.038539376,0.028765365,0.025999116,-0.024065027,0.067529574,-0.02900869,0.044857867,-0.055361487,-0.042574875,0.023685234,0.1276596,0.023307947,-0.058375888,-0.040197175,0.091868915,0.08183246,-0.03135801,-0.0027673887,-0.012981386,0.03440044,-0.06568351,-0.02259511,0.07952006,0.014487485,-0.025588311,-0.07129632,-0.057839595,-0.0542982,-0.14234559,-0.028235616,0.046330422,0.08542759,-0.010298424,1.2405092e-33,-0.09858731,0.024874011,-0.06171319,0.09002065,0.053237684,0.009356538,0.009621068,0.037310176,0.102572896,0.10908919,0.055408284,-0.034381844,-0.018803602,0.026120331,-0.0007370344,0.044948794,0.017239254,-0.013272031,-0.045412242,-0.058829594,-0.008437107,0.012892558,-0.022901477,0.017436543,-0.051137708,0.07108223,0.015653897,0.0068725822,-0.09710642,0.033522688,0.10217233,0.02772523,-0.019299256,0.056757364,-0.043361705,0.04925507,0.02082337,0.0023383142,-0.0839552,0.034569588,0.07277112,0.03621694,0.028067252,0.0833511,-0.055810653,0.017648026,-0.007103508,-0.04931919,0.10241506,0.034193967,-0.09448467,-0.039514143,0.036009323,0.043910563,-0.004522668,0.020441137,0.09340755,0.04504538,-0.006385729,0.082550794,0.08372354,-0.031282283,-0.018474158,0.00019782974,-0.023160638,-0.010951488,-0.04083291,-0.016537568,-0.018579874,0.05379028,0.073260546,0.05926506,-0.03849871,0.044735175,-0.06648209,-0.03991375,-0.070965275,-0.035545155,0.025703274,-0.004170896,-0.03967591,-0.051541273,-0.020602332,0.13522132,-0.05703511,-0.060401063,0.04326965,0.086173624,-0.02571804,-0.00091179734,0.017418915,-0.037234545,-0.0066533126,0.008831371,-0.0572285,-1.3608711e-08,-0.0009948406,0.009163101,-0.01726196,-0.012741281,-0.033942096,-0.072243124,0.015576542,0.029556464,0.037849754,0.071284264,0.096414834,-0.029889857,-0.04732569,-0.047645293,0.04106254,0.015419803,-0.06331789,0.049747482,-0.02129647,-0.060555685,0.09120395,0.03762349,0.03255042,-0.04250542,-0.0123193115,-0.00023766432,0.036445167,0.09032908,0.08049048,0.042294595,-0.058795076,0.042148873,-0.0410411,-0.0062001045,-0.07217626,-0.013533522,0.052855153,-0.022129871,-0.043603946,0.06195943,-0.01746584,-0.12240702,0.01666669,-0.004736195,-0.037264965,0.05194667,-0.013244862,-0.016391443,-0.020283794,-0.04939973,-0.006768348,0.027263667,0.012422968,0.031702563,0.019980283,0.06791545,-0.089542136,0.025526632,-0.06239634,0.010122502,0.06556902,-0.0047542932,-0.09369503,-0.034884214} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.699222+00 2026-01-30 02:01:09.984312+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1596 google ChZDSUhNMG9nS0VJQ0FnSUNaenViY0F3EAE 1 t 1599 Go Karts Mar Menor unknown Excellent excellent 5 2024-01-31 01:52:39.833374+00 ca v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Excellent"} {-0.11052087,0.031271715,-0.047422715,0.041147098,0.03720165,-0.013687045,0.02872148,0.0034980816,-0.05259038,-0.00848522,0.005406421,0.08868968,0.0034365344,0.0577456,0.02365518,0.03056116,0.026521638,-0.07119107,-0.019110765,-0.0071159634,-0.09461204,0.03704011,0.10101583,-0.055335276,-0.017586399,-0.06961787,0.049561862,0.064808376,0.06621199,-0.009561232,-0.07728851,0.00031314258,0.06048768,0.014058834,0.009537452,0.015874151,-0.03323208,-0.014049863,0.092095494,0.047625523,0.008771892,-0.061410505,0.022439683,0.042774692,0.018661752,0.04714059,-0.006123386,0.019786423,0.022963556,-0.038812816,0.0061811414,-0.065215275,-0.06053506,-0.024140675,-0.015904581,-0.054514807,-0.013207661,-0.014845181,0.0502061,-0.09469545,0.022218667,0.026039256,-0.11020211,0.04486164,-0.05609784,0.010561158,0.027330158,-0.022414384,-0.113169044,0.05366711,0.003630331,0.018046247,-0.040358197,-0.10494234,0.031940006,-0.005207253,0.01342761,0.00500903,0.05146094,0.04062337,0.019066447,-0.027094238,-0.06872545,-0.052239276,-0.04452169,-0.01487728,0.11188543,0.01455951,-0.024288023,0.0065537714,0.029006237,-0.00021912387,-0.017862996,0.04662394,0.04396698,0.010542897,0.070849,-0.06891253,-0.10073208,0.22154874,0.06159301,0.038940683,0.0064236852,-0.0071501005,-0.01857868,-0.08195407,0.0035410433,0.028843032,-0.013114718,-0.03640344,0.026087403,-0.021400668,0.038737535,0.1093001,-0.01898923,0.07730164,-0.046921846,0.07524417,-0.009581984,0.022387326,0.042735733,0.036293797,-0.0015548193,-0.058881696,-0.04413581,-0.076365046,0.03826522,-2.9864907e-33,0.02889714,-0.006690138,1.5541917e-05,-0.029943582,0.04596186,-0.011354731,-0.01250344,-0.04953347,0.009710801,0.06493688,0.013464213,0.052650385,-0.031393833,0.029660847,0.06011371,0.10195807,0.040547684,0.04994708,0.03245274,0.07317252,0.0035352602,0.075979926,0.016137205,0.08149689,-0.041824564,0.004307895,0.021733958,-0.04939866,0.06941682,0.049898885,-0.0375513,0.039917152,-0.044737093,0.02416992,0.016357044,0.037191976,-0.028705169,-0.047411166,0.0051435633,0.042137206,0.03639334,-0.011079189,-0.04541828,-0.038578317,-0.041384097,0.02039513,0.01232198,0.0071923886,-0.020880692,0.06382138,-0.027092215,-0.02509245,-0.13904634,0.0066957283,-0.024746649,0.03265985,-0.030545373,-0.030306337,-0.009660421,0.055324186,0.03860403,0.106850855,-0.003413754,-0.06506954,-0.08930219,-0.024952698,0.008114873,-0.07143201,0.017036362,-0.04332111,-0.062073886,-0.012995228,0.11635811,0.023865318,-0.024239043,-0.02287439,-0.092309535,0.025992937,-0.016710805,0.025798328,0.039219778,-0.040841494,0.022348741,0.05179704,0.045733947,0.0075244717,0.02892984,-0.086710185,0.046742026,0.006595836,-0.022481013,0.053224634,0.06418367,0.036951378,-0.0077792834,3.0940855e-33,0.042678405,0.025777707,-0.062382277,0.087743215,-0.02574998,0.016592521,0.040969644,0.052085582,-0.06475476,0.05645528,-0.03448544,-0.026878951,-0.011618138,0.041050628,-0.04530917,0.055943783,0.041191924,-0.016965661,-0.0024549146,-0.021976233,-0.06485994,0.0031417897,0.023146154,0.031145506,-0.062744394,0.014649296,-0.04105699,0.054062847,-0.014777537,0.0010638977,0.04733049,-0.1268951,-0.07398178,0.0051864972,0.02635508,0.13776669,0.03581629,-0.020579925,-0.055746634,-0.027643036,0.025785059,0.0037041442,-0.048317116,0.102094576,0.025259187,-0.07319211,0.04421259,-0.022176087,-0.0780003,0.12378814,-0.04244705,-0.029436834,-0.083786145,-0.033100177,-0.076043755,-0.040741183,0.06431357,0.019405223,0.05780029,0.0019960518,-0.050715763,0.046499792,-0.04876677,0.06468201,0.065548226,0.011696242,-0.0127310045,0.02343487,-0.045066733,-0.00014364741,0.0140994135,0.00533583,-0.10957711,0.014173912,0.08128916,-0.096337095,0.057552308,-0.008823913,-0.04738053,-0.01674281,-0.04908251,-0.055992696,-0.03345149,-0.04812475,-0.013766199,-0.08834949,0.015498454,0.01770024,-0.023406835,0.058244217,-0.0035164237,-0.003123481,0.03095401,-0.07285781,0.01561842,-1.4905963e-08,-0.0022285408,0.00785785,0.04318672,0.026492478,0.048280258,0.063160226,-0.022576217,-0.029854067,-0.036215216,-0.0017340903,0.10813887,0.059792224,-0.0028984875,0.028789476,0.07734779,-0.0056566726,-0.014274093,0.088936426,-0.069784164,0.05226873,-0.060925737,0.07759933,0.08871267,-0.02607185,0.00047971625,0.034600437,-0.04442011,0.022935715,0.00970628,-0.018029958,0.030915372,0.16223681,-0.09376584,-0.06816395,-0.0074166073,-0.021495648,-0.09571181,-0.007709838,0.046289425,-0.019865602,-0.0324235,-0.07252718,-0.040637217,-0.029572016,-0.03242543,0.010282401,-0.0034812295,0.012644785,-0.046720844,-0.023968393,0.055696536,-0.046804827,-0.055126235,0.025622807,0.04204981,-0.018192708,0.031363837,-0.05813563,0.005175842,0.057611734,0.17399552,0.02337061,0.019897915,0.04914031} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.708346+00 2026-01-30 02:01:09.988084+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1597 google ChZDSUhNMG9nS0VJQ0FnSUNVZzl5YURBEAE 1 t 1600 Go Karts Mar Menor unknown Loved it! loved it! 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Loved it!"} {-0.058202744,0.0510881,-0.038300224,0.0075261164,-0.01939525,-0.06645674,0.033838723,0.013863695,-0.06550754,-0.04414739,-0.039754856,0.12692562,0.010417685,0.022347556,-0.07629,-0.0013706288,-0.10694291,-0.012703049,0.01896787,-0.04063097,-0.043973304,-0.026105715,0.010908425,0.03639944,0.017461034,0.014416162,0.017053543,0.034396432,-0.056693118,-0.080746755,-0.014880757,0.074504636,0.016143326,0.00799328,-0.0513641,0.021498708,0.050558083,-0.019241588,-0.010544722,0.039822504,-0.030644182,-0.057643335,0.03391398,-0.011689328,0.04623141,0.10506273,-0.07460026,-0.027861167,0.073811255,0.03142713,-0.07617248,-0.036333106,0.0069625326,-0.051939093,-0.09882674,-0.016762437,-0.05118471,-0.013461822,0.019607352,-0.11839392,0.05504334,0.01431312,0.052043803,0.0049010883,0.07079475,-0.08931388,-0.033616967,-0.044927932,-0.03794586,0.023593351,0.044098288,-0.0077902074,0.06408778,-0.0798431,0.012872174,0.021124098,0.036927518,-0.037381645,0.0012955267,-0.034769546,-0.011503735,-0.02769756,-0.06502363,0.11829523,-0.086811036,-0.09170919,0.030739523,-0.0043608123,0.056142196,0.0060877837,0.11240089,0.07104237,-0.014835276,0.041761287,-0.073613234,-0.022261046,-0.013847671,-0.08040169,-0.07803477,0.079903595,0.0015876794,-0.014568128,-0.07565914,-0.010679458,-0.08261994,0.003566284,-0.0028983124,0.043322474,-0.048741087,-0.05012991,0.019668024,0.015730202,-0.023967927,0.042825837,0.078831814,0.03976071,0.061530884,0.04593919,-0.018978778,0.07599138,0.10066051,0.037194747,-0.012135489,-0.034376565,0.0019286828,-0.10822232,0.13027687,-1.0327102e-33,-0.013958862,0.0016324099,0.002678403,0.029580068,0.12788238,0.023833375,0.0066032326,0.0035753385,-0.10312396,0.0326419,0.014491746,-0.017493801,-0.029523013,0.0070053022,-0.044121362,-0.02390092,-0.12745969,-0.0045253313,0.118205555,-0.0032217973,0.0147832325,0.09393131,-0.06347545,-0.03728512,-0.010632258,0.038927633,0.028951125,-0.0136700235,0.13061367,0.0018913012,-0.03381373,0.037983593,-0.02901293,-0.008537382,-0.0051295958,-0.023811895,-0.08057859,-0.02111124,0.018972041,0.016139027,0.0019500161,0.002531498,-0.013359898,-0.059181765,-0.06013856,-0.026265038,-0.0027832713,0.032238822,0.11991598,-0.0035394244,0.028852852,0.08143771,-0.037884463,-0.0053800032,-0.04508227,0.018808022,0.044930626,0.021928277,0.004133702,-0.09834146,0.017581323,0.07299704,0.02157676,-0.042917926,-0.013888354,-3.1024327e-05,-0.018543161,0.01337311,0.0025513407,0.016396007,-0.07129814,0.013273633,0.089362234,-0.06573997,0.026880166,-0.016998189,-0.043881524,0.025750114,0.010945502,-0.050537273,0.052885275,-0.053936746,-0.016278168,-0.015640346,-0.06982744,-0.026124291,0.09104357,-0.10675591,-0.006907052,0.0033904992,-0.017635196,-0.02007574,0.07157312,0.009770421,-0.046111166,-7.2053846e-34,0.08483658,0.03531653,-0.0047715586,-0.011503774,0.018466035,-0.0068467204,-0.070123285,0.094275855,0.12924728,0.056547392,-0.03297536,-0.074727364,0.01096397,-0.03669454,0.009397792,0.028851267,0.07597449,0.009630364,0.035764854,0.0028168042,-0.0075709177,-0.05343253,-0.0034855115,-0.017813122,-0.018129893,0.05941774,0.10500052,0.039746698,0.001157705,-0.045923058,-0.01543505,0.0578067,-0.015665002,0.003949979,-0.024536034,0.14739883,0.081972346,-0.026877148,-0.079866245,0.06121728,-0.037008222,-0.013668169,-0.02136489,0.04720785,-0.012712314,-0.02846926,0.021290788,0.0057952013,-0.016699808,0.024792414,-0.04845689,-0.057265658,0.026154809,-0.08209162,0.010316765,-0.09738985,0.07279223,-0.005593429,0.059285533,0.023884598,-0.03413968,0.0052575786,0.00022518376,-0.031478796,0.020852,0.034901783,0.024025181,-0.0076119183,-0.008599284,0.02444009,-0.059823457,0.037601024,-0.039537113,-0.012308853,0.07346934,-0.020611852,0.04094335,-0.033268116,0.011669788,0.05272214,0.06699956,0.07044599,-0.037541013,-0.015995853,0.03844966,0.0952068,0.018648947,-0.0049119554,-0.0488465,0.07166873,-0.04699095,0.050828017,-0.039448883,-0.07332739,0.042331662,-1.8210246e-08,-0.0046611605,0.08188533,-0.034674816,-0.041378308,0.07801151,0.07403313,0.042714603,0.015024458,-0.004345148,0.10605535,0.00040891345,0.08013851,-0.014003261,0.14272024,-0.039428722,-0.023197563,0.11172994,0.081010155,0.0039674863,-0.070167236,0.03589574,-0.024049323,0.0067564477,-0.020186426,0.0045401496,0.032522988,-0.01633944,-0.02409053,-0.02886963,-0.020972352,0.047093727,0.021362668,-0.027178207,-0.044613715,-0.082672626,-0.039950676,-0.033283975,0.082689665,-0.012417485,-0.037117377,-0.011793576,0.016917963,0.017812634,-0.117900655,0.060417395,-0.009058772,0.03635305,-0.022360817,0.006227751,-0.049463417,0.021729592,-0.0871414,-0.041818526,0.0151947765,0.02730051,0.0717511,0.02641317,0.055850342,-0.029028784,0.06303696,0.01241439,-0.00024101383,-0.032907106,0.10702357} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.718744+00 2026-01-30 02:01:09.990476+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1598 google ChdDSUhNMG9nS0VJQ0FnSUNBMmRfTWhBRRAB 1 t 1601 Go Karts Mar Menor unknown Great place :) great place :) 5 2019-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great place :)"} {0.0054156175,0.004757643,0.009152984,-0.02310945,-0.051385745,0.0002729128,-0.022404954,-0.04308736,-0.032231554,-0.008333019,0.07528501,0.03001101,0.007412604,0.0020736554,0.035647683,0.012359506,-0.009556813,-0.10043625,0.0504325,-0.10664056,-0.02168537,-0.004653673,0.07222007,-0.009923401,-0.053890985,0.064873934,-0.02729418,0.059126817,0.08376281,-0.007009911,-0.056922093,0.03825278,-0.0023750805,-0.0070614433,6.089327e-05,0.051302027,0.019998662,-0.102096505,0.03590543,0.013622692,0.0031275956,0.0405798,0.061883204,0.009594716,-0.019657072,0.059727915,0.02238261,-0.038362965,0.08386933,0.041961994,-0.0013122825,0.008652242,-0.021697951,-0.016384259,-0.07319452,0.022446496,-0.019362213,-0.055002443,0.020553187,-0.09186759,0.08401017,0.03525204,-0.100747705,0.10647798,0.05122918,-0.022674298,0.012844315,0.14248346,-0.02340256,-0.079275995,-0.010361522,0.03705296,0.018968647,0.0047399583,-0.013882899,0.024172775,-0.016340377,0.029822707,0.0017800912,-0.0007134464,0.041639086,0.049039416,0.02408187,0.023242164,-0.10608753,-0.0987979,0.029749624,0.028441055,0.04270493,-0.0033715258,0.041347623,0.029871572,-0.065820836,0.020437768,-0.025999656,-0.027849741,-0.0041342787,0.05677655,-0.02162501,0.03143912,-0.0028976712,0.039145064,-0.010924467,0.05398725,-0.023934936,0.004458792,0.02055807,0.106717736,-0.0521525,-0.04320881,-0.03844408,0.046637908,0.03462701,0.10539242,-0.016214566,0.069301166,0.07639475,0.04883645,-0.00010975561,-0.024594728,0.018945722,-0.0148187755,-0.0035228468,0.01653431,0.0024435595,-0.0004729316,-0.012607154,-3.7392512e-33,-0.011356121,0.10452225,-0.009702885,0.004303839,0.08553258,0.057679147,-0.016602805,-0.0033314908,-0.029065866,0.054319542,0.03734015,-0.017337117,-0.034868624,0.043421783,-0.027559413,-0.022823643,-0.015251004,-0.052168764,-0.021544153,0.021425886,-0.086041816,-0.043125562,-0.0715366,0.0029523906,-0.039820757,0.065246105,-0.010897583,-0.01645495,0.03326276,0.003872356,-0.105413035,-0.003833587,-0.021031594,0.03805652,0.008921496,-0.036378503,-0.11074334,-0.057043303,0.003477815,0.043287445,0.030567512,0.0048606438,-0.03358819,0.051159084,-0.005122814,0.036786634,0.00913689,0.050728776,0.09252142,-0.029465625,-0.105059,-0.05521442,-0.13717383,0.08894497,-0.034647472,0.016499108,-0.08264175,0.022904478,-0.016990304,-0.02295279,0.027279109,0.10650423,-0.06970546,-0.0905852,-0.018697564,-0.028885683,0.014499354,0.0810972,0.04146009,-0.018578066,-0.02142403,0.013754753,0.120360896,-0.022190267,0.016789604,0.010468394,-0.11448191,0.02002865,-0.030147977,-0.025984103,0.085207164,0.015751708,-0.08107789,0.04494521,0.072751194,-0.031898756,0.04277344,-0.11117076,-0.04354231,-0.015750032,-0.07256446,0.013199421,0.06350011,-0.062191263,-0.057491176,1.5155673e-33,0.097555876,-0.055552658,-0.0076710735,0.10708677,-0.059158053,0.05051948,-0.040798847,0.006970625,-0.05052969,0.11843212,-0.08678717,0.005423813,0.07460933,0.035787188,-0.043125473,0.01456658,0.060237493,-0.003921295,-0.028844034,-0.04234001,-0.06696579,0.083635606,-0.015740072,-0.03026811,-0.0134697165,0.039572738,-0.066250734,-0.0056065656,-0.019665135,-0.08247432,-0.10134504,0.060701106,-0.09745445,0.060846433,0.040136993,0.06760826,-0.030388243,0.03645307,-0.049023952,0.034393113,0.043194324,-0.022309758,-0.0064169597,0.10736289,-0.00088818686,-0.046685517,-0.0017118384,-0.012557074,0.022157108,-0.00015639084,-0.038799606,-0.042239465,0.021015797,-0.015746849,0.015445291,-0.013141612,0.058616087,0.0049382867,0.0064834473,-0.039165363,-0.07535381,0.013299604,-0.03847189,0.030287128,0.100908525,0.006651962,0.007382824,0.001352076,-0.08529833,0.021264978,-0.036446955,0.021484343,0.0034807855,0.026878288,0.010957516,-0.077833295,0.11505287,-0.01472016,0.025946442,0.033662524,0.05014182,0.032706942,-0.058168415,-0.017387424,-0.0087324735,-0.00324146,0.00063167425,-0.04793447,0.0047941194,-0.041867603,-0.08767761,0.12765473,-0.07256845,-0.04515434,-0.019553088,-1.7598182e-08,-0.01949406,0.07506224,0.009138249,0.038297895,-0.0068913917,-0.07446849,0.09274651,0.011114727,-0.00451856,0.05966274,-0.03259994,0.02533619,-0.07108026,-0.005452372,-0.019508066,-0.0013916448,0.030156922,0.06894022,-0.0055920673,-0.03058984,-0.0065849377,0.047972046,0.00015430729,0.051284797,0.00047111817,-0.029212253,0.06548939,-0.0054190066,-0.028131925,-0.06341497,0.061009794,0.11247223,-0.05550797,-0.04272772,0.026287675,-0.022081492,-0.06532474,-0.0075457753,0.048129395,-0.021368574,-0.08262681,-0.13945474,0.029377222,-0.0102297645,0.0067577683,0.043708093,0.09840311,0.03890059,-0.042762868,-0.048079465,-0.09532604,0.011185688,0.0027625724,0.00196786,-0.04693624,0.03352354,-0.002274543,-0.048144713,0.02454561,0.124085434,0.054066468,0.066951826,-0.12124501,0.034890916} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.733768+00 2026-01-30 02:01:09.994754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1600 google ChZDSUhNMG9nS0VJQ0FnSURVNEozeEdBEAE 1 t 1603 Go Karts Mar Menor unknown Great place. great place. 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Great place."} {-0.040896136,0.049989585,-0.025990378,-0.012506178,-0.046850365,0.026820667,0.02814772,-0.03177269,-0.03881169,-0.031716846,0.072934344,0.078857616,0.008974501,-0.012652917,0.053570893,0.0296053,0.02932266,-0.14084922,0.09502076,-0.1055115,0.002558965,0.025299717,0.13246962,0.0041077877,-0.03726406,0.037443712,-0.047822554,0.0450842,0.05327303,-0.008372244,-0.05269336,0.01852993,-0.017321488,0.0012382944,-0.02003177,0.09616925,0.007856753,-0.09611737,0.07368281,0.01797637,0.008917531,-0.0020261803,0.0059602447,0.038967956,-0.016614724,0.029025797,0.017270219,-0.033713896,0.1789873,0.0011535772,0.013570466,-0.014777153,-0.041947983,-0.011369255,-0.017960094,-0.010141179,0.01067504,-0.08051138,0.009225854,-0.08685804,0.07043602,0.045095105,-0.08246442,0.120574504,-0.0033499037,-0.019122047,0.04455425,0.12739512,0.011428575,-0.057000883,-4.729371e-05,-0.0022041372,0.040696625,-0.029809317,0.019642735,0.035489347,0.024612244,0.04501883,0.033444855,0.008187878,0.0140656205,0.0079848785,-0.010347216,0.019737544,-0.046974234,-0.11182492,0.078925,-0.0067850156,-0.020316487,0.010428196,0.014161292,0.021381078,-0.07611298,0.019742163,-0.044458207,-0.04072183,0.0025641976,0.052857887,-0.015995348,0.050981585,0.0046295216,0.06507878,0.01983242,0.05553652,-0.0045069614,-0.0152696455,-0.025612472,0.08177359,-0.04849978,-0.03511459,-0.03615094,0.07310319,-0.0006526868,0.13132162,-0.0024864243,0.080875695,0.057529215,0.021936215,-0.037446957,-0.023961423,0.013743626,0.005841286,-0.04201566,0.039989736,0.034636,-0.055736892,-0.03788382,-5.6555278e-33,0.019527785,0.07926662,0.021230811,0.010636862,0.099033386,0.058580935,-0.041817922,0.0019331578,0.004208868,0.060780305,0.06463883,0.0007263035,-0.022353187,-0.026775926,-0.0032466745,0.030976066,0.003992226,-0.0014113544,-0.031591747,0.020164343,-0.08867686,-0.011679047,-0.048493117,0.025736552,-0.013581447,0.017081942,0.039440725,0.005520853,0.056865904,-0.010369656,-0.1322376,0.015019505,0.03731585,0.041285522,0.023792256,-0.034638364,-0.072627805,0.029861944,-0.00046303537,0.033430688,-0.03320483,0.031055344,-0.05747487,0.028086884,-0.0033176476,0.04117137,0.029169088,0.029538503,0.059095293,-0.02421291,-0.038483106,-0.045276895,-0.14309777,0.063478254,-0.040143736,0.004309213,-0.092286274,0.005146364,0.0432633,-0.0045829634,0.0100437235,0.092153214,-0.07281509,-0.06679469,-0.07521668,-0.023422489,-0.012368827,0.038473133,0.06926959,0.04786351,-0.036510028,0.0035126356,0.107370675,-0.026733924,-0.013567242,0.0072689685,-0.103745654,-0.00958664,-0.0041509783,-0.007137016,0.08493107,-0.010684217,0.0018010718,0.003431966,0.14057966,-0.016226113,0.02414099,-0.1151504,-0.05266088,-0.052235257,-0.09047314,0.0044507207,0.047720656,-0.041266326,-0.09715277,4.854112e-33,0.09872183,-0.05206589,0.051652484,0.1502349,-0.054544672,-0.006617234,-0.012266755,0.0067427782,-0.048291013,0.05586666,-0.048205335,-0.02479899,0.09374889,0.04944032,-0.0118481275,0.03106442,0.114485614,0.027884927,-0.036926743,-0.08448194,-0.01555551,0.07562064,-0.010183218,-0.012070156,-0.0006283868,0.04424703,-0.10524255,-0.012475275,-0.043098953,-0.05506217,-0.03850641,0.019523472,-0.08103808,0.03858947,0.056318715,0.07092912,-0.03844437,0.01741704,-0.035206016,-0.041502003,0.08486059,-0.017435316,-0.08776756,0.15572338,0.03092489,-0.01890383,0.02869617,-0.033036206,0.047772963,0.021486947,-0.078409106,-0.030464638,0.00033505834,-0.018052856,-0.0100357,-0.020861268,0.0046845847,0.034399398,-0.039437275,-0.05116195,-0.09754605,0.05071393,-0.01730077,0.05559448,0.12083262,0.009676514,-0.04902275,-0.011390808,-0.05548662,-0.015254319,-0.04991136,-0.018964788,-0.021937205,0.010327215,-0.010706225,-0.041662335,0.06468297,-0.00079385395,0.0060627386,-0.0039728303,0.024601765,0.027686112,-0.056477685,0.011147673,0.020190487,-0.012445949,-0.031739853,-0.05671772,-0.011840372,-0.018246714,-0.029088572,0.05967068,-0.089112625,-0.07431549,-0.040699206,-1.514078e-08,-0.041799396,0.073947035,-0.008593852,0.025432423,-0.03498537,0.010691027,0.012971722,0.055551473,0.022516996,0.036175877,0.011036835,0.042011075,-0.05042332,0.03135263,-0.02024854,0.024206366,-0.0030947092,0.029736532,-0.0588479,0.033404756,0.015577206,0.047619145,0.06163733,-0.00022599263,0.010582015,0.021698833,0.0042572157,0.049820594,0.0153538035,-0.044794206,0.048112303,0.09688678,-0.08745088,-0.020709863,0.013938582,0.00066360534,-0.05436367,-0.025964744,0.06200349,-0.07088784,-0.11075894,-0.0037922792,0.009875416,-0.062115565,0.01092979,0.017863777,0.109432556,0.025277313,-0.058685683,-0.04996499,-0.065798685,0.036812507,0.005179155,0.040157516,-0.020468691,-0.0019265396,0.008365488,-0.044238698,-0.022417122,0.10274221,0.03174577,0.07020719,-0.04929036,0.029057931} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.754353+00 2026-01-30 02:01:10.000754+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1601 google ChdDSUhNMG9nS0VJQ0FnSUNRd29IY2l3RRAB 1 t 1604 Go Karts Mar Menor unknown A lot of fun. a lot of fun. 4 2019-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "A lot of fun."} {-0.06521567,0.02015031,0.021487657,-0.030749466,-0.1520527,0.041395217,0.046837904,-0.07671296,0.030637657,0.050988834,0.03976227,-0.053134277,-0.03526431,0.012219031,0.036180135,-0.0075181816,0.06163501,-0.0151355695,-0.022431307,-0.0030985011,-0.055860993,0.0059507247,0.095132135,-0.043938674,-0.038883235,0.041460924,-0.028913785,0.009207526,-0.022288587,-0.030607762,-0.08865948,0.09868829,-0.0010106736,8.683927e-05,-0.013159753,-0.036821157,0.12744257,-0.029219493,0.0145322755,-0.008760005,0.05682846,-0.04960022,0.045910947,0.0009005088,-0.059280783,0.10420322,0.0048709367,-0.066966355,0.12780786,0.07501739,0.116309494,0.005805921,0.0071135387,0.0618538,0.047024097,-0.00030957098,0.016715785,-0.10330572,0.019898793,-0.0066180695,0.028978877,-0.010768226,-0.013945001,0.11663851,-0.02258704,-0.07594548,0.0027218447,-0.00463815,0.0023090364,-0.03718301,-0.06783813,-0.012504369,0.019366486,-0.011141816,0.03976495,0.03689597,-0.006498164,-0.041431535,-0.04971663,0.014876423,0.09188711,0.017836045,-0.0006902543,0.023158513,-0.008858013,-0.09007513,0.047356803,-0.073450565,-0.0014784408,0.030007124,0.010858456,-0.05229728,0.0426941,0.0010950211,-0.06753657,0.004594121,-0.0070885946,0.00021823945,0.0037305427,0.03651976,-0.018549284,-0.0031906706,0.007970302,-0.04663167,-0.057321,0.0260896,-0.076923154,0.04593424,-0.030946812,-0.038707856,-0.01210356,0.06966241,0.03771717,0.012731793,-0.02616232,0.068390675,0.006403673,0.015670523,-0.057209756,0.0016842538,0.12747045,0.039610684,0.07670649,-0.019865148,0.013548437,-0.023248164,0.002742622,-5.4664403e-33,0.07682188,0.06840692,-0.0036218027,0.103652805,0.024914676,0.08748777,-0.016580781,-0.038054764,-0.054529853,0.05518653,-0.01544012,0.07157302,-0.039876487,-0.060234223,0.041524753,-0.04400721,-0.07548398,0.05522051,-0.018934153,2.9702476e-06,0.008795305,-0.01578241,0.0076329,0.109885395,0.0016346396,-0.022080531,-0.0052330475,-0.11850276,0.11044001,0.013286704,-0.10169736,0.051746715,-0.09584489,0.04386006,0.0076652505,-0.08749104,-0.02172422,-0.118403375,-0.060282275,0.08399888,0.02583245,0.0052223005,-0.005976311,0.05748313,-0.04039627,0.0078005004,0.0036126748,-0.009178046,-0.045318637,-0.06218009,-0.04798387,-0.032170426,0.016061377,0.032820933,-0.005543034,0.048078828,0.024358295,-0.14798921,0.04189338,-0.025566923,0.07699139,0.048577074,-0.09583124,0.0053385096,-0.066622004,0.07282139,-0.025154734,0.030248659,0.043739323,-0.028007802,-0.03337694,-0.009313522,0.03709845,-0.030282764,-0.019924317,0.025101844,0.06301709,-0.09389842,-0.03948765,0.0105162505,0.04336124,-0.025533848,-0.025720108,-0.03574712,0.03591549,-0.06542011,0.02699357,-0.16395298,-0.06629186,-0.024733348,-0.06895903,-0.0054526124,0.044614952,-0.084283344,0.030276671,3.3564702e-33,-0.06706825,-0.01209514,-0.01511263,0.0031862275,-0.009005552,-0.03655133,-0.05673444,0.041745055,0.01209743,0.013131162,0.0073957243,0.03523199,-0.024712464,-0.013102213,0.0026433,-0.051226746,0.0631447,0.009773602,-0.055221986,-0.004757518,0.012853589,0.04837956,0.017576108,-0.019846475,-0.055961207,0.04292901,-0.058628883,-0.0884944,-0.06278021,0.002417198,0.006746599,0.01306469,-0.010563851,-0.060106605,-0.035833746,0.13875349,0.0795165,0.078681625,-0.00097577367,-0.049361736,-0.017912043,-0.019059144,-0.009886751,0.058730226,0.04353295,0.07672084,0.056098625,-0.023018986,0.007429527,0.051238786,-0.008684233,-0.04173272,-0.05028097,-0.09722768,-0.04198642,-0.08976716,-0.06270319,-0.00046726497,0.001818236,-0.05826379,-0.061396737,0.0766555,0.024204228,0.020996958,0.0683823,-0.030162187,-0.06991815,-0.04761246,-0.01197387,0.0080811605,0.029282954,0.047144055,-0.017003428,0.071284875,-0.041352462,-0.055877417,-0.013864163,-0.06692811,0.05918616,-0.012550698,-0.036429286,-0.11001081,0.011054346,-0.029395463,-0.025110405,0.017629761,-0.072188355,0.019496784,0.018793257,0.033958472,0.10266279,0.035336316,-0.0123522505,-0.017423641,-0.038695026,-1.7537273e-08,0.017883455,0.01333993,-0.0071229027,-0.080796555,-0.02134198,0.06161975,0.0060695745,0.028328773,0.011603954,0.025398968,0.07192454,0.03956873,0.042171825,0.052932806,0.06969532,0.017207924,0.059295345,0.05640322,-0.055439327,0.09226618,-0.0033527813,-0.013572876,0.036477666,0.015517592,-0.07388562,-0.0016821988,0.034259018,0.097947955,0.06198124,0.043931745,-0.022879155,0.03347291,-0.04191429,0.09543179,-0.027560253,0.016180096,0.002141267,-0.06062793,0.095667005,-0.04011426,-0.035911232,0.016358731,0.08443933,0.012191144,-0.03788207,-0.01688996,-0.028654192,0.03444654,-0.0071657705,0.024358366,0.083689004,0.046675608,-0.02336568,0.051550668,0.10031924,-0.034372512,0.028301038,0.0036701423,0.024966925,0.022462666,0.054055814,0.042478595,-0.09463214,0.055344276} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.765287+00 2026-01-30 02:01:10.003278+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1602 google ChdDSUhNMG9nS0VJQ0FnSURPNjlUZjNnRRAB 1 t 1605 Go Karts Mar Menor unknown Top top 5 2023-01-31 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Top"} {-0.05949346,-0.005053727,-0.06918111,-0.054079458,0.026654249,-0.02257252,0.07649515,0.13081567,-0.013940425,-0.010290285,-0.06102107,-0.075489745,0.011543488,-0.030770507,-0.03772274,-0.0033566514,-0.0053645335,0.017723031,-0.0060038436,-0.08845138,-0.04274931,0.054616332,0.009291711,-0.008715018,-0.05481944,0.018447801,-0.07031218,0.075913385,-0.035871208,-0.117171824,0.006463275,-0.02269933,0.04053861,0.009906764,-0.022735696,-0.0021087804,-0.029690946,-0.04173646,0.04167122,-0.035345115,0.010444251,-0.049264405,-0.05035842,0.026084483,0.017049696,0.050883688,0.032084066,0.0013908292,-0.031231133,0.014323672,-0.030111792,-0.01493607,-0.0040945183,0.0014355485,0.06633068,0.069493346,0.012347445,-0.06528997,0.023848342,-0.010838406,0.03772412,0.026035607,-0.050521336,0.030136343,0.10019039,-0.048746526,0.045186337,0.071721755,-0.061604664,-0.021741413,0.056936182,0.03140127,0.018790536,-0.06291293,0.04250528,-0.030113202,0.03183947,-0.0060191746,0.07903946,0.02437807,0.0143506965,0.028569382,-0.05285505,0.012598088,-0.03240773,-0.017413978,0.0071132337,0.013191725,-0.09726942,0.033139706,-0.058305454,0.031719096,0.038688682,-0.023635492,-0.07836975,0.037823696,0.020119017,-0.06479229,-0.104016,0.22143443,0.0020954735,-0.024451379,0.028890224,-0.026183322,-0.033097126,-0.02031889,0.055872,0.08505245,-0.0009669232,-0.034029808,-0.03214598,-0.04136387,0.039023094,0.042266108,-0.023722047,0.0062943446,0.04993154,0.011970951,0.07236488,-0.0948797,0.048274092,-0.03036441,0.021320049,-0.09177724,-0.055968374,-0.003823894,0.04715777,-3.122562e-33,0.07062207,-0.027675342,0.017804256,0.0021233198,0.011280227,0.010162504,0.03844531,-0.05031099,-0.06427009,0.10351408,-0.069180705,0.015223531,-0.05833079,-0.0034095237,0.100624435,-0.0021712596,0.014402346,0.0038225357,-0.15404929,-0.022768203,-0.034229286,0.06821214,-0.019579671,0.049836267,-0.072167195,-0.02649406,-0.012400485,-0.124840245,-0.052442383,0.013405324,0.008666943,0.037318096,0.018917643,0.044180494,-0.005045144,-0.008289092,0.05287294,-0.056553453,0.020114977,-0.06756617,0.033869117,0.06119177,0.044601962,0.050453752,-0.09359689,0.06544915,0.022689221,0.018375978,0.0040369015,0.03227664,-0.047185645,-0.085663125,0.0031460607,-0.02738859,-0.01533916,0.022777535,0.014992575,0.036522754,0.025492854,-0.024108546,0.049675263,-0.013572504,-0.062353075,0.031020645,0.013554729,-0.058273472,0.053744078,0.0034860023,0.08943139,-0.015831066,-0.0908698,0.026448522,0.10261802,0.049637806,0.020191912,0.031224389,0.009944898,-0.01783286,-0.022751136,-0.0127529735,0.022273922,0.015861515,0.014865328,-0.023050163,0.022910252,0.015819358,-0.015846556,-0.011510837,0.009855836,0.06033765,-0.04428155,-0.019841846,0.16297299,0.0018124477,-0.11698561,4.2380796e-33,-0.03368393,0.03802671,0.040017128,0.0392837,0.0037437668,0.0043088617,0.07463469,-0.018258283,-0.058800347,0.07309229,0.033691257,-0.01924192,0.07088738,0.022830576,0.105666414,0.040320847,0.010172016,-0.07258917,-0.096979946,-0.055829287,-0.042660847,-0.0813199,-0.04491951,-0.021899793,-0.003328004,0.0619209,0.041536897,0.08360434,0.030623825,-0.029845655,0.040386446,-0.029071344,-0.022654751,0.049268313,-0.04814714,0.15414259,0.049156316,-0.063358925,0.023275547,0.062689334,0.061744206,-0.037592284,-0.009696806,0.16094945,-0.03721214,0.010365482,-0.112796806,0.022123873,-0.009565932,-0.028246913,-0.08233474,0.010824013,-0.04062307,-0.019336808,0.04382654,0.041714586,-0.036413316,0.053202663,0.017663911,-0.03193909,0.04550451,0.04824391,-0.011463052,0.06197578,-0.02278719,0.050260495,-0.02295487,-0.040458933,-0.10960411,-0.03485416,-0.022516543,-0.035630405,-0.012039855,-0.0014099792,-0.014805114,-0.04256428,0.005956549,0.04748174,0.009728184,-0.092293255,-0.039397683,-0.013477622,-0.059926707,0.03825181,0.018195035,-0.016208863,0.09015328,0.01871884,-0.014085522,-0.049586184,-0.041859742,0.05023797,0.004637177,-0.0011952317,-0.038202517,-1.2876562e-08,0.017805453,-0.06819919,0.023340639,-0.019058293,0.014237237,0.10148861,0.0506205,-0.02631614,0.0892553,0.0218413,-0.017431157,-0.0062092654,0.028496835,-0.060945988,0.015578423,0.022990722,-0.07647043,0.11218492,-0.008751229,-0.024444789,-0.073843725,-0.0010456567,0.04306513,-0.02862249,-0.011991584,-0.028733682,0.0072008385,0.13637422,0.06330647,0.03632442,-0.02452563,0.05872948,0.0006578102,-0.06384823,0.010612251,0.033399545,-0.07234982,0.05452818,-0.0017257469,-0.012394213,0.034679446,-0.03919574,0.04213084,-0.004723435,-0.015136106,-0.0013452679,-0.04137509,0.011244538,0.010963528,-0.008127824,-0.06249061,0.0001878659,0.067140296,0.06994469,0.0014957198,-0.00023588611,0.01731456,0.023099434,-0.059831265,0.054302376,0.1770885,0.009392277,-0.011869223,0.079564214} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.775643+00 2026-01-30 02:01:10.005942+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1603 google ChZDSUhNMG9nS0VJQ0FnSUQ0Z1BteU93EAE 1 t 1606 Go Karts Mar Menor unknown Fabulous morning fabulous morning 5 2020-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Fabulous morning"} {-0.016433263,0.10396583,0.044587806,0.056634996,0.020206362,-0.013848228,0.05964333,0.01175877,0.043166295,-0.07320991,-0.113680854,0.069636755,0.0011541503,0.023806969,-0.04310462,0.08637981,0.07362956,-0.09338036,-0.016438358,0.08069883,-0.011184397,-0.0062624686,0.03785047,0.028836973,-0.024571417,0.046285037,0.11842435,0.034750655,0.013431311,-0.10903898,-0.004002017,0.07291616,0.005525874,-0.049497988,-0.034391716,0.0074038627,0.12186276,-0.0683789,0.029356776,-0.023259833,-0.0057476535,-0.041894447,-0.020043861,0.004844075,0.022831652,0.012788083,0.084015325,0.0030957994,0.08861528,0.07460183,-0.05342291,-0.034746137,-0.037151862,-0.0236391,0.023321692,0.10246845,-0.026724417,-0.11921857,0.071736455,0.10408145,-0.049865805,0.07825527,0.0023827772,0.049130496,0.121601336,-0.04090926,-0.041821133,0.031207655,-0.047195576,0.02591363,-0.08740109,0.040015463,0.04966702,-0.01110584,0.0177929,0.034276884,-0.0020276837,-0.010994986,0.08675076,-0.050131656,-0.02160746,-0.06680779,0.023941271,-0.013593071,-0.028365137,0.02032182,-0.019851271,0.020431366,0.0107386075,-0.0019255367,-0.05440136,-0.0037185545,-0.0110018,-0.02407542,-0.030533426,-0.018555436,-0.025049012,-0.11329317,-0.080019325,0.22289129,0.046106584,0.015442339,-0.011024269,0.0372378,-0.024101887,-0.052008625,-0.059124116,0.06693431,-0.020248385,-0.04014567,0.030629532,-0.028112074,-0.007819617,-0.089026615,0.064786375,-0.0071923784,-0.027596261,0.039829884,0.039997756,0.043241974,0.038764395,-0.02546527,0.03608521,-0.04905542,-0.04424383,0.042427167,0.07081788,-3.5201358e-33,0.10710861,0.023845164,0.0008569249,0.03694609,0.046064015,-0.028439444,0.053572327,-0.009774327,-0.026076077,-0.0024661617,-0.010236151,0.043194007,-0.036021154,-0.09501667,-0.05890333,-0.029923595,0.022186944,0.02273317,0.018964585,0.010640925,-0.0061897654,0.09403039,0.079651274,0.026710458,0.0017916802,-0.04849463,-0.0020092665,-0.010632943,0.017956205,0.0407729,0.047004227,-0.004714569,0.032269094,0.040755168,0.029170483,-0.076879844,-0.018492471,-0.07638701,0.012744679,-0.012227625,0.04092737,-0.051392205,0.056155127,-0.040203635,-0.07693058,0.028508807,0.005091653,0.09819844,0.06918491,-0.04540308,-0.017901795,0.01583808,-0.07443683,0.026609698,-0.076389775,-0.02255779,-0.055659797,0.0017129128,0.053244084,0.009064552,-0.017590988,0.057853952,-0.027207192,-0.094767444,0.012499924,-0.06728886,0.004671821,-0.011374007,0.0006913294,-0.0071318992,0.042175137,-0.06616268,0.10585473,-0.00056047615,0.025188647,-0.026042098,0.019420272,-0.018969027,-0.011247778,-0.0037206411,0.06832603,0.056203313,0.03321198,-0.03366677,0.018496264,-0.014998608,-0.019406488,0.022566848,0.04261602,-0.021486977,-0.07374778,-0.030404514,0.061394125,0.021943072,-0.036678385,3.44216e-33,0.12062931,-0.009305145,-0.09304214,0.08580198,0.012995095,-0.027792593,-0.005225985,0.01598798,-0.07633202,0.047331635,0.0029141617,-0.020856243,0.13648362,-0.040425166,0.026592812,-0.05219341,0.06620653,0.040129837,-0.0050785416,0.014049166,-0.06924568,-0.043478232,-0.014783159,-0.044813085,-0.028527971,0.053958427,0.03786141,0.05273588,-0.025699517,-0.0864888,0.02295171,0.059280094,-0.045109525,0.01994833,-0.009262034,0.087330334,-0.032540433,0.030590214,-0.064103365,-0.03543904,0.0141212065,0.044279445,0.022526572,0.14406897,0.04142991,-0.011830617,-0.06349673,0.015350635,0.01718567,0.007700865,-0.08031547,0.016156178,-0.014340421,-0.03548022,-0.005634682,-0.08194391,0.030045709,-0.058638602,0.034562893,0.03969415,-0.09628707,-0.009872558,0.014939693,-0.022745598,0.06836976,0.008602883,-0.048588656,-0.032082006,-0.016381543,0.006312072,-0.030669069,-0.03034106,-0.04184401,0.018509222,0.005803722,0.051129673,0.012333412,-0.061588,-0.033221163,0.06045994,-0.016295912,0.035892118,-0.017234284,0.035559524,-0.09313823,-0.05783715,0.08554266,0.040165044,0.030525884,-0.0148783475,0.022860302,0.039415944,-0.109411456,-0.06321272,0.06292747,-1.3118432e-08,-0.01864893,-0.03232079,0.013497104,0.0012048846,0.01378541,-0.07125941,0.036270216,0.013910677,-0.050552905,-0.02067146,-0.0021073294,0.05613451,0.0073460713,0.01788526,0.0049456656,-0.049924433,0.06350308,0.066967346,-0.05482416,-0.0590026,-0.019804018,0.0019634876,0.06419419,-0.066751584,0.047027986,-0.0014630331,-0.084827766,0.016710514,0.045056865,0.059618205,0.0089744665,0.06606252,-0.047965936,-0.00014504636,-0.117636755,-0.056771837,0.02113158,0.025975615,-0.044420745,-0.052596826,0.0031495302,-0.04950476,0.035898205,-0.06936065,-0.051071953,-0.024587788,0.070175886,-0.032655366,-0.05162784,-0.0108496025,-0.08448017,-0.07353717,0.03480821,0.027815303,0.05595263,-0.011884116,-0.023925843,-0.043200217,-0.09914991,0.039973583,0.104451284,0.06613424,-0.0063036433,-0.061900705} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.793079+00 2026-01-30 02:01:10.009576+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1604 google ChZDSUhNMG9nS0VJQ0FnSURROFlHcFZnEAE 1 t 1607 Go Karts Mar Menor unknown Awesome Place awesome place 5 2018-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Awesome Place"} {-0.023948269,-0.006026506,-0.020292724,-0.0027616979,-0.05009732,-0.049671113,0.038259316,0.015956895,0.0048664897,-0.020268243,0.05799418,0.010149336,0.021722598,0.024706122,-0.003440541,0.003703592,0.064081416,-0.11332482,0.04102879,-0.09054603,-0.03932402,-0.033928014,0.07066414,-0.009346012,-0.030442467,0.08136147,-0.04486718,0.06854765,0.060350597,-0.031001223,0.004507918,0.04579906,0.026714046,0.0011941898,0.026263753,0.06571308,0.0413505,-0.065752335,0.08332034,0.020114336,-0.0327877,0.009764702,-0.010297614,-0.019173197,-0.039924342,0.047435217,-0.0040166853,-0.084859766,0.09847293,0.03454802,0.068551086,-0.01988927,-0.026298929,-0.06699212,-0.07654876,0.025716351,-0.013663133,-0.06354319,-0.011013732,-0.07249608,0.10391942,0.039095346,-0.05294855,0.07968259,0.021016028,0.0015482764,0.001627303,0.1206655,0.0214438,-0.12374481,0.007826066,0.070067525,0.041208107,-0.01455847,0.07472466,0.038422063,0.0020571286,0.008351798,0.03500202,0.011080942,0.0031765122,0.017401105,-0.025511561,-0.0015832708,-0.10732993,-0.12470465,0.031238714,0.026191046,-0.0018686617,0.005928897,0.021838184,0.014862726,-0.08079559,0.011100273,-0.051626667,-0.017491408,-0.0021393625,0.039369818,-0.054804258,0.10431965,-0.017675787,0.06283502,0.027027568,0.017951548,0.0021302016,-0.045588125,0.005562138,0.08172601,-0.03250256,-0.005779482,-0.024311863,0.052120008,0.0109604215,0.07767943,-0.02856073,0.0674189,0.034843497,0.022496598,-0.02475544,-0.07730046,0.0084236255,0.018027246,0.008437895,0.07745927,0.055406462,-0.006284128,-0.016512122,-2.6199222e-33,0.031943478,0.018075496,0.01788482,-0.01837563,0.12305382,0.015720703,0.018504916,-0.00835593,-0.03224295,0.0951201,0.013182444,0.029218886,0.01940271,-0.020945089,0.029014725,-0.009586537,0.035553694,-0.038731907,-0.05811482,0.0077382424,-0.073905185,-0.0122010615,-0.008494409,0.05450591,-0.04154463,0.025139559,0.013921022,0.039886635,0.03331835,0.01098084,-0.0760146,-0.011566445,-0.038003292,0.057952713,-0.009538449,-0.042872608,-0.042095408,-0.04673102,0.0006163174,0.04199494,-0.010707113,0.024841769,-0.06517504,0.024307841,0.022005672,0.11657227,0.04640612,0.030123629,0.14759256,0.0070609087,-0.08514772,-0.05843854,-0.14631203,0.089272976,-0.0073388843,-0.03788486,-0.091254726,-0.007051108,0.034439974,-0.01880403,0.04324293,0.08217896,-0.065700375,-0.08202218,-0.0028932237,-0.030818028,0.019255381,0.013667607,0.051072977,0.055265307,-0.019562267,-0.016060939,0.11244624,-0.026368309,0.023633916,0.02777884,-0.11549565,0.038528387,-0.07104575,0.03298488,0.079853274,-0.016433602,-0.015091811,0.035765897,0.114227526,-0.034243554,0.037867434,-0.12478666,-0.090282954,-0.040112115,-0.09588932,-0.031619802,0.017626582,-0.0065034344,-0.037653297,3.013571e-33,0.11542277,-0.06600867,0.0068319943,0.09177937,-0.0021948945,0.03442074,-0.016525308,0.039975516,-0.01774622,0.06584069,-0.07950072,0.02329543,0.09923627,0.023666399,-0.030245114,-0.008182047,0.031337734,0.042006515,-0.045713834,0.003434671,-0.030977951,0.016666379,-0.011171145,-0.03583988,-0.030262152,0.06622793,-0.045085642,-0.028580207,-0.0060949954,-0.06754847,-0.059708323,0.0249805,-0.01794279,0.030427793,0.039580658,0.06887329,-0.005840889,0.025662445,-0.041949615,-0.011388543,0.07439181,-0.009521862,-0.101427086,0.12233165,0.0348556,-0.023000456,-0.0066877464,-0.03592861,0.017100511,-0.008650541,-0.100202024,-0.0129074585,-0.022312125,-0.025949823,0.040143356,-0.04947379,0.035802025,-0.012508352,-0.034273036,-0.026042188,-0.07407439,0.042160597,-0.030871153,0.045816887,0.12331835,0.0034559073,0.013150499,-0.022135455,-0.08180822,0.010700078,-0.08070584,-0.043248944,-0.065437645,0.03130501,0.014405089,-0.04560281,0.106071144,0.00729683,0.0084367385,0.045577504,0.01384424,0.028324079,-0.05743614,0.04328723,0.015896427,0.0097448435,-0.032144118,-0.052339524,-0.0014592262,-0.056627665,-0.08734195,0.116096795,-0.11746972,-0.03324711,-0.03612963,-1.3670544e-08,-0.019332105,0.091539256,-0.002223003,0.017244576,-0.022908563,-0.001993593,0.062397283,0.01597326,-0.025900638,0.010022183,0.000599652,0.03099186,0.041069802,0.039811328,-0.011807989,-0.013159854,0.025080334,0.09015353,-0.034420937,-0.0060219574,0.0054171463,0.062137537,0.0350925,0.030995134,-0.008793442,-0.03803268,0.017821517,0.037043985,0.020666616,-0.07858611,-0.00036801814,0.043693148,-0.028534753,-0.024213394,-0.028335204,-0.0019900315,-0.097632125,-0.047892112,0.014573582,-0.034526106,-0.06601414,-0.12755089,0.020142287,-0.029382722,-0.008941274,0.032144617,0.11440375,0.03765793,-0.009124347,-0.042059157,-0.07507395,0.010066372,-0.019361198,0.012197924,0.03668718,-0.018620871,0.019250715,-0.074844494,-0.01964442,0.13276738,0.0924479,0.07312711,-0.03689494,0.005860785} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:14.805843+00 2026-01-30 02:01:10.01465+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1426 google ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE 1 t 1429 Go Karts Mar Menor unknown Honestly one of the best places I have been karting. Grippy track, fantastic mixed layout, well maintained carts and most importantly, LOVELY staff - truly a great place to go for a fun bit of karting - check it out if you're nearby! honestly one of the best places i have been karting. grippy track, fantastic mixed layout, well maintained carts and most importantly, lovely staff - truly a great place to go for a fun bit of karting - check it out if you're nearby! 5 2022-01-31 01:52:39.833374+00 en v5.1 V4.01 {} V+ I3 CR-B {} {"O1.02": "Grippy track, fantastic mixed layout, well maintained carts", "P1.01": "most importantly, LOVELY staff", "V4.01": "Honestly one of the best places I have been karting.", "V4.03": "truly a great place to go for a fun bit of karting"} {0.06954107,-0.04815457,0.028575798,0.08450968,-0.06883459,0.013202115,-0.025499998,-0.030083522,-0.025061732,0.047566634,0.0040198932,0.037608836,0.0067240577,0.06250881,0.029981855,-0.079988286,0.11384513,-0.05600996,0.08944203,-0.06660412,-0.088674955,-0.01662303,0.050565626,0.03255354,-0.040984936,0.051245846,-0.029745067,0.10581078,0.017429885,-0.06231755,-0.09775461,0.07096295,-0.050469507,-0.022517066,-0.006442483,0.06430391,-0.0127771655,-0.07386006,0.028286075,-0.03344567,-0.0114463875,0.04550729,0.05641834,-0.00083152927,0.02101996,0.065888815,0.0010496163,-0.04624997,0.008991498,0.028363764,0.11301496,-0.031260855,0.08688972,-0.037322618,-0.03342221,-0.043058094,-0.081022784,-0.005340017,0.032701228,-0.056028053,0.0785087,-0.0012064629,0.00050173403,0.009979279,-0.067300454,-0.044438284,-0.08148762,0.07716925,0.034204643,-0.038390722,-0.011816904,0.020772487,0.017477687,0.020769613,0.022876441,-0.0130181415,-0.017420178,-0.024884002,-0.08258438,0.008462337,0.037868388,-0.010698192,0.06936075,-0.020307561,-0.063520014,-0.111764945,0.057218865,0.011765427,0.028344268,-0.023967054,0.004875723,0.11339672,-0.07814176,-0.06829088,-0.033956833,0.030293033,-0.013420161,0.050645728,-0.0006014398,0.0012246376,0.054321274,0.07709096,0.03181565,0.0031658218,-0.05411669,-0.017882375,-0.07592852,-0.013765753,0.008561705,-0.0023704756,-0.003179603,-0.02424644,-0.031605735,-0.069192216,-0.021902436,-0.027444938,0.02199996,0.08721613,-0.0030910948,0.03664319,-0.03983632,-0.0002476749,0.012397978,0.007195273,0.019103143,0.0386005,0.043022584,-6.6180107e-34,-0.05226533,-0.021326108,-0.020769686,-0.018895267,0.071455784,-0.04810812,-0.031297598,-0.10273873,-0.09189233,0.05799061,0.08055949,0.059439793,0.02060457,0.028517554,0.09007716,0.01661555,-0.020652046,-0.0007358853,-0.091901205,-0.020808645,-0.052974746,0.00640614,-0.0072673433,0.055507522,0.01663506,0.019766176,0.055516187,-0.012354667,0.021732066,-0.006746271,-0.06375376,0.002386881,-0.036352016,-0.014816168,-0.031316735,-0.0030467918,-0.08030073,-0.06117961,-0.004041317,0.021719655,0.026508821,-0.025202708,-0.006668563,0.018794747,-0.018034782,0.014224296,0.024218196,0.021091778,0.022094218,-0.044439033,-0.12146513,-0.039280172,0.038142815,0.06859992,0.008939606,-0.0052954587,0.030810243,0.006537249,0.013739925,-0.040768016,0.048744243,0.054053925,-0.0426829,-0.10926853,-0.043115497,-0.050686456,0.029807756,-0.03234721,0.059249777,0.025100773,-0.06372934,0.057905383,0.036216684,-0.009013704,0.07955565,0.022027291,-0.103980616,0.034407794,-0.071914785,0.063739955,-0.06720879,0.029333867,-0.0945782,0.05741455,0.03553345,-0.0489623,-0.031011906,-0.11413307,-0.04477064,-0.025003763,-0.064797804,-0.0345116,0.015215827,0.064584695,0.019895969,-1.2042191e-33,0.06675967,0.017920254,0.09293389,0.05704786,0.024650576,0.025509171,-0.02120813,-0.07961327,0.0037118352,0.0035118596,-0.105277605,0.05298228,0.0008866944,0.050013214,-0.03133547,0.0098316055,0.021445217,0.038761646,0.016445316,-0.107406154,0.016629092,0.026165005,-0.027135458,-0.012570175,-0.016913444,0.048117317,-0.061635476,-0.06600825,-0.059409834,0.056473747,-0.0608226,-0.0072455425,0.07855282,-0.024115529,-0.015980419,0.05100349,0.07701858,0.029337995,-0.053201947,0.023522494,0.07380455,0.026620632,0.02980836,0.042102687,0.0039080186,-0.045662574,-0.03519945,0.047934916,0.020920228,-0.04462351,0.0056764097,0.041387107,-0.06570812,-0.05969086,0.04482238,-0.022934875,0.012017404,0.008181658,-0.05594554,-0.056706168,-0.09967911,0.053513404,-0.00051731936,0.10580949,0.008631898,0.0025025236,-0.0043530436,-0.020403704,-0.07950397,-0.03242347,-0.13749743,0.044578996,-0.013109439,0.06100655,0.07633369,0.0061273817,0.13769549,-0.019489849,0.05528032,0.063299425,0.050176885,-0.02220966,-0.028075432,0.03053775,0.06648986,0.10194452,-0.084462784,-0.040449437,0.027632015,-0.011121703,0.07832558,0.111089915,-0.10363321,-0.012969995,-0.04758563,-2.8601043e-08,-0.0025162254,0.088583894,-0.026163232,0.0054301587,-0.025684638,-0.061200358,0.098501794,0.08027968,-0.07267507,0.012007494,-0.017031597,-0.016738258,0.0059689535,-0.020316444,0.06635074,0.039579187,0.048040602,0.113169126,-0.044572707,0.018617876,0.016353494,-0.02032287,0.016081417,-0.027690753,-0.0815096,-0.05623762,0.030222956,-0.037374455,-0.0041347616,-0.05345941,0.031285223,0.01055467,0.013692815,0.047471877,0.012448592,-0.04431964,-0.05832299,0.012459673,-0.029043263,0.030964611,-0.090885915,-0.09476136,-0.043053214,-0.010586993,-0.07152676,0.04471284,0.020290537,0.016355624,-0.03170491,0.054041125,-0.14476658,-0.0108091375,0.003685694,0.038562123,0.059197858,0.033042967,0.007135598,-0.07213659,0.00886406,0.07170402,-0.015913978,-0.039623898,-0.03315859,0.08580827} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:20.360579+00 2026-01-30 02:01:09.319591+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1328 google ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB 1 t 1331 Go Karts Mar Menor unknown Great place to have a laugh and battle your friends on the track. Very good staff and facilities great place to have a laugh and battle your friends on the track. very good staff and facilities 5 2025-06-04 00:52:39.833374+00 en v5.1 O1.05 {E1.04} V+ I2 CR-N {} {"O1.05": "Great place to have a laugh and battle your friends on the track.", "P1.01": "Very good staff and facilities"} {0.03641448,-0.017854692,-0.0033111284,0.009262997,-0.04296048,0.034282476,0.06084585,-0.030547187,-0.0393333,-0.054536108,0.0010471874,0.0064456603,-0.008141772,-0.005633611,-0.044587776,-0.017709356,0.11148356,-0.09284116,0.057399612,-0.061946645,-0.051538285,0.013439432,0.06712139,0.077734835,-0.13216917,0.007998153,-0.10453845,0.07100022,-0.0063868677,-0.026369382,-0.040652215,-0.002133037,0.037556875,0.0022842204,-0.004607753,0.08374277,0.07163108,-0.027459165,0.022963103,0.03862133,-0.04770821,-0.0207262,0.041148257,0.0058895736,0.053486723,0.011163935,-0.028378686,-0.053207655,0.0627117,0.013766187,0.09937627,-0.046675745,0.083979994,-0.03780576,-0.052681834,0.05811308,-0.005659543,-0.040718023,0.023718717,-0.022770979,0.045298282,-0.027149228,-0.053001795,0.0034507848,-0.004748385,-0.10580603,-0.09047015,0.1259135,0.061895687,-0.06813109,0.027383432,-0.02362194,0.07595045,0.04150615,0.00034130857,0.08777277,-0.04264961,-0.006973617,-0.02482986,0.023043567,0.046506096,-0.08032972,0.059607886,-0.031337418,0.0011786172,-0.08372299,0.03508689,-0.028734842,-0.010882459,0.00069980434,0.0069455006,0.12594205,-0.05236571,-0.04824383,0.03601098,0.012460346,-0.0045970157,0.02845676,-0.03590472,0.064963914,0.06858971,0.054849394,0.046354245,-0.004084731,-0.0264854,-0.005794265,-0.08757772,0.042189177,0.022472333,-0.05970491,0.051484298,0.023035029,0.00075744896,-0.016991144,0.01097688,0.046868756,-0.03113423,0.022595746,-0.024573699,-0.046611108,0.047301304,0.045286447,-0.012925426,0.033520736,0.030319588,0.007893062,-0.010615777,-5.017088e-33,-0.02915769,0.022307117,0.008436446,-0.064441405,0.11725394,-0.011582588,-0.123647094,-0.015141037,-0.06768353,0.00054284104,0.013904189,-0.000887964,0.008875115,-0.09894598,0.020061307,-0.042932924,-0.052700277,-0.00033535523,-0.07127463,-0.020569958,-0.055467747,-0.0075587444,-0.063779265,0.00268448,0.048332885,0.051881265,0.02994553,-0.033104755,0.104394495,0.041211706,-0.087292865,-0.011988025,-0.05208822,-0.03626862,0.02669486,0.0156216975,-0.09008172,-0.06298215,-0.03739626,-0.014271336,0.014758721,-0.0037485969,-0.01669821,0.054663725,-0.053982884,0.07361057,0.010700042,0.01351006,0.12391699,-0.012283467,-0.06725431,-0.06778456,-0.062793076,0.011369478,0.082146324,0.0011876202,0.059620384,0.020527788,0.08116617,-0.04822103,0.07402061,0.08865722,-0.030890834,-0.037227426,-0.017288048,-0.041723028,-0.035017774,-0.077919245,0.13821985,-0.030176377,-0.018730987,0.0028212387,0.08341873,-0.001412829,-0.032436345,0.057696387,-0.09441045,0.024937803,-0.011871864,0.036856953,0.02381445,-0.04389516,-0.093510695,0.03691681,0.08350464,-0.06453294,0.040647876,-0.15126067,-0.10414685,-0.0034492381,-0.058368664,0.03852986,0.038822435,0.025243847,-0.033491906,3.6293715e-33,0.10084343,0.04057549,0.0306106,0.03779279,-0.027114674,0.03858845,-0.020617047,-0.0007007617,0.03672599,0.10972583,-0.08009879,0.033119492,-0.0088953255,0.014583025,0.012223377,-0.0541117,0.080987334,0.024354227,-0.05305503,-0.06428295,-0.0077005816,0.015437166,0.0034101207,1.2673598e-05,-0.03356954,0.045927517,0.01983413,-0.085743286,-0.06282141,-0.036545586,-0.095393606,-0.0055224122,-0.025905702,-0.04468148,0.0047846045,0.054484475,0.024889272,-0.016558133,-0.07023948,-0.04143071,0.04005872,0.003860521,-0.019194242,0.054208353,-0.016564004,0.036933165,-0.019905046,0.05755393,-0.06319276,-0.026385754,-0.028353928,-0.034987114,-0.039359067,-0.0621694,-0.009600314,-0.0069093807,0.010377458,-0.021706427,-0.049207788,-0.047363326,-0.06612333,0.052787334,-0.03443204,0.09138663,0.04811207,-0.044863746,-0.056843407,0.0140449535,-0.09260466,0.07186478,-0.08722959,0.029250845,0.04658119,0.05747545,-0.032203365,0.009802206,0.09220823,-0.038996886,-0.0053809932,0.07265995,0.021281525,0.010889097,-0.023308234,0.0037989945,0.0135747,0.053917635,0.024049519,0.0968939,0.0077769454,0.101002105,0.10894247,0.08041321,-0.08795678,-0.033258483,-0.049507644,-2.1456051e-08,-0.02596073,0.05215302,-0.0069341264,-0.0028746666,-0.00010345641,-0.07899679,0.07684409,0.04722756,-0.025261974,0.06725104,0.032158244,-0.012796229,-0.05221498,0.0283027,0.012134147,0.02038678,-0.024523519,0.05201749,-0.051543206,0.0038787858,0.009706524,0.102129236,0.011549737,0.05650622,-0.027727202,0.018151606,0.043123316,0.0049492368,0.0036219838,-0.030961065,0.041473784,0.0652409,-0.01701224,0.029910905,0.0029094806,-0.024478562,-0.07681465,0.0062875454,0.033701412,-0.0091381,-0.12257195,-0.055791374,-0.001959439,0.029053625,-0.0023808023,0.0446101,0.030207464,0.029136537,-0.046179466,-0.04880163,-0.12507714,-0.05500439,-0.038093362,0.052105147,0.03338622,0.023882542,-0.041489,-0.034075774,-0.04147038,0.04922705,-0.015757551,0.015601961,-0.014530444,0.066268474} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:00:48.732583+00 2026-01-30 02:01:08.991516+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1605 google ChZDSUhNMG9nS0VJQ0FnSUMwMktMd1N3EAE 1 t 1608 Go Karts Mar Menor unknown great course great course 5 2020-02-01 01:52:39.833374+00 en v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "great course"} {-0.0059304093,0.018895494,-0.047155496,-0.002437932,0.021983849,0.0019155763,-0.005810642,-0.016037231,-0.07168292,-0.02261076,0.009542322,0.08204781,0.020173144,0.019299615,0.013094517,0.036134467,-0.063606516,-0.042155933,-0.01817256,0.03262727,-0.03188215,0.010078718,0.06226506,-0.011050319,-0.013163414,-0.012511012,0.0437262,0.08991505,0.020932952,-0.054484107,-0.11322349,0.07438914,0.055277664,0.017723503,-0.0317076,0.029198723,-0.037093937,-0.044961404,0.056044642,0.019078081,-0.029947547,-0.039880663,-0.05670675,0.023668239,0.00068658317,0.08531051,-0.007879491,-0.049334478,0.06962155,0.06883269,0.018894903,-0.049822237,-0.11099196,-0.011772477,-0.0073999865,0.04507367,0.044732127,-0.040263772,-0.050136343,-0.08431317,0.055242192,-0.054777633,-0.1274416,6.524037e-05,-0.019597407,-0.0335233,-0.0036330072,0.08651703,-0.009854896,0.010425097,-0.06330282,0.057137806,0.040965345,-0.024510533,0.05977841,0.009697429,0.0016641096,0.067614384,0.048663884,-0.004323029,-0.0565487,0.0994404,-0.03769926,0.046213463,-0.029193804,-0.09623034,0.044124607,-0.0013513311,-0.006763695,0.021956848,0.072804846,-0.033890873,-0.015562199,0.012369839,-0.008486683,-0.041863393,0.014480442,-0.029039012,-0.040697604,0.11768056,-0.028693454,-0.029125787,-0.057176415,0.07772861,-0.047854964,-0.034737997,-0.056115475,0.03584287,-0.006688515,-0.074483596,-0.0018093515,0.025393741,0.03340555,0.059650518,-0.0004633061,0.16519031,-0.018709728,0.04608093,0.010464595,-0.03747405,-0.019769061,0.036506627,0.0012376149,-0.0011389249,0.029388662,-0.11966977,-0.004557134,-3.85729e-33,-0.00769045,0.04422396,0.0065259538,0.018549984,0.041816145,0.054192573,-0.016816724,0.037660483,-0.039752845,0.049533855,0.047272623,0.031426538,-0.026074668,0.048113488,-0.036030304,0.008674547,-0.0024320185,0.056788232,0.03204807,-0.008783311,-0.036374368,-0.010623584,-0.023894286,-0.05120795,-0.0052203853,-0.014363576,0.016965896,-0.0025948053,0.12958412,0.047561277,0.006395652,-0.029689942,-0.13526651,0.042755507,0.032334056,0.056365475,-0.0070705493,-0.026719648,-0.0023841744,-0.011662522,-0.0068379133,0.047066867,-0.08240186,-0.061417155,-0.09187595,0.014678115,0.085593194,0.07993538,0.019726932,-0.005924632,-0.06203783,-0.07943156,-0.061955966,-0.049839336,0.0025633648,0.00069428375,-0.010046306,-0.040001288,-0.0589508,-0.0027196158,0.0202157,0.10169192,-0.026130939,0.028870476,-0.018060943,0.015556379,0.0011542622,-0.06236595,0.082884446,-0.03877125,-0.13129255,0.016162695,0.034469437,-0.02880902,0.02978542,0.004643618,0.0093432525,0.010323422,-0.0045900396,-0.043508373,0.033242125,0.011145168,-0.03605585,0.0551217,0.036906645,0.039167836,0.06487333,-0.12247952,0.04993461,-0.000717152,-0.16664428,-0.033588924,0.09121086,0.037970502,-0.021824671,3.2337236e-33,0.04621705,0.020830719,-0.019857628,0.16297147,0.0077431034,0.013395175,0.036052477,0.04609464,-0.06725151,0.06783774,-0.031716887,-0.0530475,-0.0051804557,0.0458013,0.012932861,0.022113653,0.019971956,0.039668895,-0.08867634,-0.051286213,-0.079292305,0.048096407,-0.048210386,-0.0151153235,-0.040675018,0.061706956,0.033188086,0.061378665,0.035674933,0.005886177,0.032042615,-0.058704343,-0.118870795,-0.020272953,-0.04865574,0.09882479,0.014423717,0.035277896,-0.04621026,-0.011522056,0.05297285,-0.022794122,-0.0708397,0.11095371,0.03594684,-0.033265457,0.12021986,-0.033767164,0.028393017,0.0341711,-0.058214195,-0.014598729,-0.04483724,-0.012135125,-0.026020657,-0.056220006,0.030030113,-0.002826926,-0.011992389,-0.048136793,-0.041637473,0.01741034,-0.017512588,0.0497984,0.026831293,-0.05955641,-0.025731524,0.027286964,0.02202827,0.02495694,-0.04869543,0.011101463,-0.062325083,-0.020890228,0.010569509,-0.080449395,0.053736664,0.015623571,0.0062287482,0.043178655,0.06269604,-0.040292848,-0.05865911,0.10192782,0.081530906,-0.028595855,0.052484322,0.049140055,-0.01550051,-3.7340757e-05,-0.024890132,0.09371822,0.047977023,-0.11863494,-0.04576152,-1.468967e-08,-0.05170721,-0.010509486,0.053770814,0.0051258514,0.040458754,0.108144134,-0.029362818,-0.041352667,-0.027558228,0.056315433,0.082814224,-0.012281972,0.012837889,0.0077066217,-0.0019646655,0.0011579181,0.024936339,0.02710126,-0.05162552,0.04670824,0.014775425,0.047599796,0.108726665,0.06852058,-0.012926845,0.0011486722,0.13098489,0.105338104,-0.0058715874,0.02578652,-0.020954892,0.12195428,-0.067856595,0.0014387076,0.084299974,0.012878672,-0.029404381,-0.012162246,0.064291894,-0.01016153,-0.061697654,-0.1113696,0.035973612,0.0269976,-0.021389145,-0.052098934,-0.037652344,-0.055861138,0.0017829947,-0.041070826,-0.021555807,-0.018764013,0.047924776,0.085981146,0.047585253,2.5588453e-05,-0.009978164,-0.03915274,-0.0361001,0.08399443,0.014031417,-0.045183267,-0.02207663,-0.00822383} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:01:47.900763+00 2026-01-30 02:01:10.023033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1631 google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE 1 t 1634 Go Karts Mar Menor unknown Desde bien pequeño a mi hijo Iker le encantan los Karts. Yo creo que empezó con 5 años. De todos los sitios que hemos visitado para que sienta la velocidad, este es de los mejores.\nCoches en perfecto estado, y lo más importante una pista en condiciones, grande.\nY el trato es muy bueno.\nTodos los veranos venimos a 1000 Palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al menos.\nEn verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente.\nRecomendable 100% Desde luego nosotros volveremos. desde bien pequeño a mi hijo iker le encantan los karts. yo creo que empezó con 5 años. de todos los sitios que hemos visitado para que sienta la velocidad, este es de los mejores. coches en perfecto estado, y lo más importante una pista en condiciones, grande. y el trato es muy bueno. todos los veranos venimos a 1000 palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al menos. en verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente. recomendable 100% desde luego nosotros volveremos. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "Desde bien pequeño a mi hijo Iker le encantan los Karts. Yo creo que empezó con 5 años. De todos los", "O1.03": "Coches en perfecto estado, y lo más importante una pista en condiciones, grande.", "P1.01": "Y el trato es muy bueno.", "P2.04": "En verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente.", "R4.03": "Todos los veranos venimos a 1000 Palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al me", "V4.03": "Recomendable 100% Desde luego nosotros volveremos."} {0.0074918014,0.05314366,0.058778122,-0.02186377,0.022186425,-0.023556007,0.0373879,0.01181484,-0.006076351,0.028289812,0.031019486,-0.026481174,-0.076731056,-0.0086008385,0.04451704,0.022128789,0.019990578,0.07004848,0.01181313,0.030392533,0.047985483,-0.0752606,-0.0731379,0.08531318,-0.04518023,0.0057413103,-0.009959113,0.047381084,-0.06473303,-0.064039595,0.03618074,0.04688526,0.059404317,-0.0030036012,-0.005684184,0.026118258,0.0290779,-0.1477929,-0.087143786,0.06990579,-0.05576802,-0.0194243,0.002873633,-0.0041015525,0.012149104,-0.014426552,-0.040359963,0.013875858,0.05411702,0.0024477409,-0.019467676,-0.048249774,-0.0028514261,-0.046039008,-0.076008625,-0.004464872,-0.07319351,0.024120463,0.15810476,-0.00040829572,0.024903962,0.059119705,-0.05175287,0.05388832,-0.06829412,-0.047575958,0.0085808765,-0.004527074,-0.066880524,0.076073974,0.09056288,-0.06013574,0.033656195,-0.07465548,-0.055545896,0.063488804,-0.043085862,-0.06857402,-0.12563112,-0.10265885,0.055133194,-0.020144146,0.029875347,-0.07554892,-0.03673204,0.009531679,0.035161562,0.06350964,0.054797944,-0.0073277783,-0.020961348,0.053202398,-0.123756595,-0.016550248,0.029957445,0.056963835,0.02676123,-0.014297221,0.021873271,0.0115505345,0.08851697,0.061194647,0.049131688,0.06312433,-0.046261743,0.018327698,0.0057907,0.00069192017,-0.016792001,0.042823493,-0.047543366,0.014201538,-0.0035346106,-0.05555603,-0.048146203,-0.041441027,0.019382365,-0.018144084,0.010306738,-0.013253936,0.06561613,-0.011774863,0.006045507,-0.041605316,0.041277625,-0.037955433,0.09158239,1.1541759e-32,-0.029658772,-0.017932167,-0.028862916,0.028319864,0.044963412,-0.041704077,-0.010213977,-0.031347454,-0.12639748,0.014026306,-0.061747663,0.035893004,-0.0051870546,-0.008314551,0.06282558,0.034648784,0.08401715,-0.05259224,0.019685548,0.034366537,-0.06324584,-0.046546992,-0.011476243,0.011343375,-0.057684746,0.046609413,0.0421401,-0.025856284,-0.08176356,0.052177645,-0.050307453,0.022684846,0.050482232,0.030076236,-0.035151333,0.013817484,0.01567356,0.048484027,-0.037043996,-0.0671045,0.0069740494,0.014998217,-0.018252587,0.029633453,0.02706388,0.024352469,0.08023783,0.03997107,0.052297805,0.026169613,-0.09671403,-0.030361248,-0.065186605,-0.0074816905,0.040512584,0.02849222,-0.04360317,0.035286874,-0.074421644,-0.041409764,0.072234936,0.051915534,0.042687792,-0.05672235,0.0010355157,-0.055562865,0.038852107,0.022172201,0.101037756,0.06000901,-0.033203166,-0.06414253,0.008848008,0.012180603,0.053786293,0.018762482,0.06978993,0.0076543177,-0.024432331,0.09951621,-0.031251293,-0.019889051,0.023059502,-0.007814537,0.048213743,0.020499803,0.049267936,0.046098884,-0.051490933,0.10331284,-0.013291785,-0.024311757,0.08404935,-0.00929461,-0.06781194,-1.13578005e-32,0.06116178,0.08069959,0.02846375,0.06426502,-0.06656645,0.013665213,-0.034642015,0.023601994,0.012846874,-0.018310579,-0.056045085,-0.07913885,0.022846056,-0.10788671,-0.07136446,0.046267804,0.015997315,-0.057323787,-0.0981814,-0.022669679,-0.029040081,0.11545323,0.008775395,0.0026155014,0.005500095,-0.017148273,0.029066036,0.01035313,-0.13839734,-0.0281258,-0.030805608,-0.094775535,0.08119495,0.029688409,-0.015157882,0.03444332,0.07658702,0.013321089,-0.035519514,0.041642945,0.015729193,0.09826379,-0.034634106,-0.04613438,-0.044918004,0.0308452,-0.032124355,-0.08451063,-0.02985198,-0.09339634,0.0791927,-0.07323245,-0.0742829,0.011856025,0.09688496,-0.029334616,-0.031209817,-0.008813424,-0.10958607,-0.010266888,0.065083764,0.0063203764,-0.04400478,-0.007615921,0.09916671,0.010383083,-0.050246384,-0.007450859,-0.009902105,0.05538383,0.0044137873,0.012764522,-0.08971977,0.004919757,-0.012599102,-0.07963599,-0.024256226,0.035319626,0.02787759,0.011330884,0.023838025,-0.015738146,-0.055002205,-0.008152075,0.010639989,-0.010810768,-0.040876206,0.011316509,0.035473768,0.04166607,0.07665528,0.073165014,-0.02410282,0.007847416,0.012253024,-5.432407e-08,0.041675545,-0.040986456,-0.10530408,-0.03805009,-0.018383937,-0.09969231,0.037572198,0.033925686,-0.008411725,0.1157565,0.013529996,-0.037452813,-0.02194185,0.03685184,0.016983395,0.042506665,0.031794313,0.06625616,-0.036602665,-0.018485121,0.12770474,0.0044048536,-0.013534249,-0.0026951078,0.008590557,0.030756405,-0.020845875,0.02274596,0.017403204,0.03659014,-0.07436977,-0.07563596,-0.08037063,-0.017823746,-0.033843204,-0.025690086,-0.08809799,0.010169574,-0.036598284,-0.0043692654,0.06242329,-0.08254365,-0.08496968,0.016994946,-0.10867051,-0.04470495,-0.025075648,0.023392227,-0.04221181,0.03964805,-0.062119026,-0.04832049,0.04778623,0.020980988,0.019327495,-0.063897334,0.08802893,-0.0029645064,0.0055240346,-0.056694403,0.063496806,0.08679538,-0.08047802,-0.03893499} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:03.462449+00 2026-01-30 02:01:10.109169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1607 google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB 1 t 1610 Go Karts Mar Menor unknown Un karting para apto para tora la familia y todo tipo de pilotos.\nDisponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y exigentes.\nLa pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duración que van desde los 48 segundos hasta el minuto, dependiendo de la experiencia y el kart elegido para disfrutado. El trazado no es fácil, es técnico y necesita ser estudiado para mejorar los tiempos.\nEn cuanto a los kart pude probar los F-300 y los F-400. Los primeros destinados a un público más general cumplen su función con creces, te exigen un control minucioso del acelerador para sacarle todo el rendimiento en cada curva y evitar que el motor quede bajo de revoluciones.\nLos F-400, destinados a un público que busca el siguiente nivel, muy físicos en comparación los F-300, el tacto con el gas debe ser más suave, encontrar el balance perfecto entre gas, freno y volante para un trazado perfecto.\nSin duda una pista de referencia en el levante. un karting para apto para tora la familia y todo tipo de pilotos. disponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y exigentes. la pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duración que van desde los 48 segundos hasta el minuto, dependiendo de la experiencia y el kart elegido para disfrutado. el trazado no es fácil, es técnico y necesita ser estudiado para mejorar los tiempos. en cuanto a los kart pude probar los f-300 y los f-400. los primeros destinados a un público más general cumplen su función con creces, te exigen un control minucioso del acelerador para sacarle todo el rendimiento en cada curva y evitar que el motor quede bajo de revoluciones. los f-400, destinados a un público que busca el siguiente nivel, muy físicos en comparación los f-300, el tacto con el gas debe ser más suave, encontrar el balance perfecto entre gas, freno y volante para un trazado perfecto. sin duda una pista de referencia en el levante. 5 2025-10-02 00:52:39.833374+00 es v5.1 O2.04 {O1.02} V+ I3 CR-N {} {"A3.01": "Un karting para apto para tora la familia y todo tipo de pilotos.", "O1.02": "En cuanto a los kart pude probar los F-300 y los F-400. Los primeros destinados a un público más gen", "O1.03": "Disponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y e", "O2.04": "La pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duració", "V4.01": "Sin duda una pista de referencia en el levante."} {-0.022618601,0.00010279983,-0.100824125,-0.038260706,-0.0528575,0.048672292,-0.015154047,0.08506706,-0.02250108,0.047385916,0.10219551,0.02798973,-0.052372266,0.020291192,0.02313948,0.0075535406,-0.045641087,0.016805079,-0.04550345,0.020055896,0.08124509,-0.045540523,-0.022414766,0.04035613,-0.16972736,-0.020903679,-0.039907858,0.03720534,-0.05478118,-0.11797676,-0.035155345,0.04618727,-0.01526551,-0.009119726,-0.022060078,-0.01029514,-0.06870523,-0.033103082,-0.024996977,-0.0009373181,-0.06032437,-0.036049936,-0.0329733,-0.05265107,-0.0064464496,-0.04762709,-0.0039374484,0.0046724835,-0.020944396,0.002914333,-0.001657325,-0.037257817,0.026429594,0.00885221,0.0325054,-0.100275904,-0.0634769,0.044501595,0.07327174,0.032892246,-0.016834365,0.013027033,-0.039663225,0.021672197,-0.046959754,-0.069961004,0.054514855,-0.049215104,-0.005719657,0.08309293,0.08647154,-0.022566292,-0.013912875,0.006393222,0.041544694,0.068421155,0.0068847435,0.04387425,-0.09542427,-0.03217962,0.07886432,-0.033025555,-0.04138954,-0.09046408,0.037877295,0.004474813,-0.05928104,0.022605594,0.037967965,0.056143,0.016118454,0.11512874,-0.10819959,-0.068055764,0.01154843,0.031484473,0.047054566,-0.09445642,-0.0069745216,-0.020171791,0.055388752,-0.021836758,0.034758344,0.045037866,-0.011811533,0.0067358054,0.0074084736,-0.015570881,-0.04415718,0.015912356,-0.04499,-0.056853157,-0.003199238,-0.08865002,-0.1002595,-0.0627111,-0.077330865,-0.043558314,0.044225235,-0.008471527,0.004253977,-0.024630446,0.008044286,-0.016167,0.07259988,-0.029099554,0.00093543803,1.0114049e-32,-0.02588143,0.04992138,-0.05796419,-0.0012136993,0.019039083,-0.06962898,-0.012635492,-0.059430696,-0.031699825,0.0011651845,-0.050068304,0.04637441,-0.018543854,-0.0657943,0.114345506,-0.059797153,0.021594957,-0.06006941,0.01972348,-0.010740861,0.053846154,-0.0018400352,0.030844606,0.025339652,0.02294175,0.09918682,0.07223272,0.008090299,-0.10639746,0.07420786,-0.0020184352,0.019364996,-0.04207006,-0.033507425,-0.014349778,-0.019177146,0.009453267,-0.024151435,-0.08396234,0.02615252,-0.005265631,-0.029953068,-0.06720302,0.029273061,-0.016648442,-0.057629358,0.043910313,0.055415034,0.030498056,0.061358605,-0.08586042,-0.025858033,0.027202614,-0.03293359,0.04803912,0.05688596,-0.032056183,-0.011291157,-0.10767805,-0.019139037,0.0149551425,-0.0019406137,-0.00884039,-0.007079207,-0.07134424,-0.045446705,0.04610747,0.013220915,0.100111395,0.048859578,-0.057734568,-0.02530172,0.038799617,-0.06590265,0.10016704,0.041006323,0.028811961,0.038599104,-0.04158892,0.005752503,-0.07565772,-0.022304436,-0.027377011,0.08306851,0.07095756,-0.020246971,0.033669084,0.0965353,-0.004676473,0.052477926,-0.0038855295,0.025564965,0.040663764,0.047014114,0.051702194,-1.1827564e-32,-0.007429485,0.053839266,0.13682698,0.05002802,-0.009742426,0.044175055,0.041650265,-0.087220095,-0.016922465,-0.056787997,-0.06752816,-0.05590753,0.023002578,-0.06526687,-0.009546366,0.032619033,-0.06733517,-0.06582829,-0.00894011,-0.011500828,0.0037482232,0.083562955,0.00014095294,0.016947724,0.0005739512,-0.070647486,-0.033327058,0.025078155,-0.11062276,0.0117154345,0.0455046,4.3687567e-05,0.045741245,0.067275934,-0.10297725,-0.02605283,0.10434141,0.09057362,-0.016829131,0.070682816,0.057490367,0.11711916,0.027301038,-0.053401336,-0.034318123,0.024114806,0.07504002,-0.1241323,0.056136314,-0.0015107024,0.12601054,-0.004358266,-0.07876618,-0.011097226,0.05423274,-0.045358635,0.0063195596,-0.07764455,-0.13697647,0.033777654,0.04770517,-0.037325215,0.0022577874,0.005629127,0.05976208,-0.01927717,-0.010658381,0.043527607,0.027909933,0.04571896,0.013708877,0.03345088,-0.01614746,0.03751356,0.028494177,-0.03842756,-0.04219312,0.0011922398,0.017997954,0.021629782,-0.003741963,0.0057271137,-0.053677157,-0.016972642,-0.007913306,0.004452302,-0.08540561,0.03897279,0.05003986,-0.051005196,0.06801699,0.0690916,-0.001051581,-0.0033239846,-0.022106288,-5.6912604e-08,0.020642528,0.049724605,-0.07947776,-0.016827473,0.059444636,-0.03663357,-0.0005467695,-0.021250121,-0.03610223,-0.022040894,0.025813483,0.033800784,0.048099305,0.028238632,0.03014935,-0.039977167,0.0478826,0.11101843,-0.018060096,0.0035411674,0.045261066,-0.018411582,-0.066807516,0.021284003,0.0054867975,-0.04972779,-0.08588346,0.002813228,0.004483414,0.033067413,-0.07943994,-0.014922238,-0.060788892,-0.048938718,-0.0664129,-0.04181561,-0.031145526,0.056118235,-0.069370404,0.11608186,0.08242872,-0.0189887,-0.09346589,0.016656926,-0.10665391,-0.01410065,-0.015204793,-0.031812076,-0.056658503,0.053098053,-0.055283833,0.005918081,-0.0038614052,0.007830193,0.01638289,0.02833213,0.04881162,0.014124195,-0.07644414,-0.08322588,0.03620377,0.06458291,0.021989793,-0.04294705} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:07.330623+00 2026-01-30 02:01:10.032417+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1632 google ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB 1 t 1635 Go Karts Mar Menor unknown La verdad que tiene unas instalaciones geniales.\nCerca del Aeropuerto de San Javier y al lado de la discoteca Maná.\nTiene una terrrazs para poder tomar algo mientras esperas tú turno.\nLos precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar para pasar el rato con la familia o los amigos. la verdad que tiene unas instalaciones geniales. cerca del aeropuerto de san javier y al lado de la discoteca maná. tiene una terrrazs para poder tomar algo mientras esperas tú turno. los precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar para pasar el rato con la familia o los amigos. 5 2019-02-01 01:52:39.833374+00 es v5.1 E1.03 {} V+ I3 CR-N {} {"A4.01": "Cerca del Aeropuerto de San Javier y al lado de la discoteca Maná.", "E1.03": "La verdad que tiene unas instalaciones geniales.", "P1.01": "Los precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar par"} {0.02055842,0.04905789,-0.0051871478,-0.06961058,-0.0194184,-0.018005313,0.043793794,-0.0030596035,-0.040407307,0.01229594,0.1316117,-0.048027996,-0.032943588,-0.016824601,0.05581673,0.055961147,-0.09411912,-0.019183317,-0.007106875,0.011880787,0.026118316,-0.07134922,-0.120176606,0.084815055,-0.07569304,-0.005473551,0.039650597,0.04264436,-0.08983723,-0.031644844,0.021181032,0.056711327,0.09472993,-0.019077018,-0.0030174144,-0.040212985,0.057855934,-0.0006834063,-0.056444835,0.026842032,-0.13314773,-0.038099222,-0.025816493,0.014598775,-0.063972175,-0.07536868,0.008807668,0.048759107,0.05410074,0.01349077,-0.03891504,0.008591933,0.028183194,0.017712666,-0.010324265,-0.014660628,0.0020331428,-0.023307737,0.059754066,0.022673829,0.019092979,0.01977644,-0.054402895,0.006141311,0.022113213,-0.029192168,-0.0011029841,0.0069737216,0.009097476,-0.016145479,0.07565575,-0.10903708,0.038659252,0.06510742,-0.07573696,0.04537775,0.014437636,0.012502394,-0.008190177,-0.046239648,0.0081968075,-0.05323979,-0.03794096,-0.042449825,0.0003994523,0.05935726,-0.04915202,-0.03132531,-0.012378891,0.06252644,-0.056446865,0.08325582,-0.034271084,-0.07403544,0.0102208145,0.0053106286,-0.015768252,-0.102591775,-0.048565663,0.021928499,0.10275547,0.04114447,0.086397514,0.08487269,-0.060946308,-0.008328471,0.051237088,-0.06508072,-0.02206489,0.03041587,-0.06318783,-0.011067909,-0.067493245,-0.04927496,-0.11332344,0.0059116418,-0.0013393412,-0.024535986,-0.026270786,-0.11845909,0.032411728,0.006701879,-0.014316982,-0.032582454,-0.011250873,-0.12476734,-0.0110165905,1.3773329e-32,-0.02563204,0.0066140643,-0.04604255,0.08485279,0.0005962226,0.022681842,-0.011910254,-0.010641069,-0.026015764,-0.0046289247,-0.11155247,0.005993586,-0.012495223,0.027715221,0.15125436,-0.04203202,-0.008693163,-0.07741786,0.0012237752,0.0010544572,-0.045108862,0.002734424,-0.034912184,0.003267397,0.052145462,0.04431794,0.008960345,-0.061132696,-0.035712413,0.07940978,-0.023062678,0.05075828,0.022849556,-0.0322915,-0.03154828,-0.027653188,0.053017177,-0.0023630243,-0.030930279,-0.0005268888,0.02043998,-0.0005001523,-0.024748197,0.039980907,-0.026000556,-0.005044186,0.024381714,0.021317089,0.06282963,0.018212382,-0.03718381,-0.049333215,-0.090664476,-0.06875067,-0.0009504089,-0.043808497,-0.03521703,-0.017372169,-0.034141276,-0.07230532,0.014744788,0.020615358,-0.020853337,-0.0044495044,-0.03527918,-0.035801563,0.0603672,0.04463368,0.1106778,0.02788275,-0.10087209,-0.048507925,-0.04575316,-0.035916016,-0.017944967,0.013823028,-0.060626432,0.07602629,-0.034498673,0.06073245,-0.037579857,0.05387745,0.052083414,0.010462783,0.12870483,0.05655738,0.06484544,0.078930445,-0.026760172,0.09080935,0.022894736,0.12783122,0.062607095,0.035345156,0.020174505,-1.5998822e-32,-0.021048186,-0.010760017,0.048048463,-0.048485536,0.018947298,0.022845963,-0.0023968653,-0.03673134,-0.03082693,-0.070197545,-0.13723014,-0.052672964,0.09320851,-0.032780003,0.025160903,0.06370048,0.007250657,-0.07508052,-0.06620546,-0.021432228,0.04983155,-0.0020314478,0.07455038,-0.046437576,-0.022520803,-0.119861454,0.06445135,0.08166306,-0.071985416,-0.0040440457,0.02231253,-0.017413536,0.028762301,0.119276434,0.0014953329,0.063171014,0.048478287,0.06527063,-0.01673342,-0.008597618,-0.026130587,0.04047199,-0.05584003,0.022300085,-0.049764715,0.021204704,0.050507702,-0.13094172,-0.04870328,-0.06510926,0.058587182,-0.08011041,-0.06341335,0.0015327015,0.040934794,-0.012745448,0.032387894,-0.06434486,-0.03359697,-0.00057063485,0.052616224,0.0032811917,-0.01177913,-0.026773168,0.013478888,-0.0303125,-0.003460304,0.02709658,-0.019174239,0.039831292,0.06295438,-0.00039447157,-0.068683356,-0.005175687,-0.059220243,-0.035983454,-0.043406587,0.028748915,0.021537798,-0.0067328895,0.028170647,0.029047947,0.0116972,-0.0446701,0.037058584,-0.04969095,0.0037734339,0.03911115,-0.0093943365,0.030673012,0.041456435,0.038958613,-0.099768125,-0.09360748,-0.018543262,-5.8220547e-08,-0.02070765,-0.06853372,-0.029870775,0.029150268,0.064509325,0.013217663,-0.016858974,0.02974948,0.05504209,0.025779251,0.0048404834,-0.0056680874,-0.025062893,0.050440617,-0.0109961545,-0.030825656,0.024631998,0.1278097,-0.017349875,0.008978624,0.05117402,0.015726637,-0.024260366,0.023512391,0.02016397,0.02634346,-0.0984473,-0.048864678,0.013215478,0.03918436,-0.034531128,-0.021385597,-0.053861465,-0.08573982,-0.025589673,-0.012992839,-0.015609743,0.040977206,-0.025824543,-0.09996386,0.14618239,-0.009426612,-0.09052095,0.044170775,-0.018124986,-0.097362205,-0.058368016,-0.033856183,-0.057841696,0.040069163,-0.0064903786,-0.03486842,0.115178004,0.031051463,0.042599395,-0.070074834,-0.02541292,0.04693091,0.0045757336,0.023310663,0.068846874,0.09911553,0.0142278625,-0.015749594} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:14.847686+00 2026-01-30 02:01:10.113314+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1608 google Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB 1 t 1611 Go Karts Mar Menor unknown Me ha parecido una experiencia muy divertida. Es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el público podría mejorar porque no es que sean demasiado amables. También entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que hacía allí. me ha parecido una experiencia muy divertida. es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el público podría mejorar porque no es que sean demasiado amables. también entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que hacía allí. 5 2025-09-02 00:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"E2.03": "También entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que", "O1.05": "Me ha parecido una experiencia muy divertida.", "P1.01": "Es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el públ"} {0.06251983,0.02452035,0.0075874208,-0.08142466,-0.03757391,-0.043892436,0.12536258,0.003413055,-0.033222377,0.013179104,0.06907282,-0.011494499,-0.057952065,-0.037256572,0.076891035,-0.0059839026,-0.026265949,0.019390695,-0.0033638165,0.046183508,0.04417525,0.001988735,-0.099934906,0.07858779,-0.07882357,-0.0409505,0.0033755372,-0.070110954,-0.049812585,-0.09546931,0.0038690155,0.016767371,0.15813789,0.05666294,0.00018573832,0.05780097,0.038942493,-0.06842789,-0.04143217,0.041359637,-0.09448334,-0.046705656,-0.0017340768,-0.060816493,-0.0390581,-0.10718216,0.073236294,0.048320506,0.008214438,-0.024732884,-0.097747035,0.026694993,0.007546983,0.0412596,0.028166827,-0.029844014,-0.026347365,0.023193693,0.044334874,0.042893056,-0.030244682,0.02844532,-0.03631135,-0.008676998,0.069189094,-0.02183419,0.04380537,-0.024941651,-0.014876584,-0.015159223,0.075379096,-0.020178849,-0.002837149,-0.0012924109,0.002142537,0.01777319,-0.014471847,0.028573863,-0.011177664,0.026415488,0.0015753105,-0.044765607,0.021146037,-0.040351775,-0.009494093,0.0076022693,-0.07183863,0.00647612,0.026634768,0.0015883899,-0.048889656,0.07838012,-0.07509806,-0.062316813,-0.022424258,-0.024194231,-0.0065932856,-0.0737341,0.023046978,0.015415554,0.03284604,0.08392189,0.094060175,0.025609324,-0.0347359,0.051689334,0.019431388,-0.042529196,-0.02444671,0.08299957,-0.04612145,-0.06258765,-0.055699278,-0.058874678,-0.034455065,0.019270286,-0.0364315,-0.0022442448,-0.05708497,-0.060391326,0.003518393,0.077635825,-0.015847752,-0.027976824,0.014019797,-0.08769688,0.00016787766,1.7666862e-32,-0.024721863,-0.0008480719,8.763477e-05,0.08609167,-0.034154672,-0.0025570237,-0.032157194,-0.002842177,0.0032833996,-0.021451406,0.02813996,0.07317315,0.06676217,0.031157289,0.03436134,0.009380479,-0.009488288,0.040311873,0.05153103,0.060576122,0.009355426,-0.03325237,-0.043966386,0.04061768,-0.006920788,0.036538605,0.0472844,-0.026898261,0.024339428,0.060294714,0.018675013,0.0061656083,0.038574297,-0.03080341,0.02109205,-0.017674249,0.027807515,0.041655593,0.04486765,-0.078664415,-0.008866596,0.031679146,-0.042748876,-0.017074402,-0.03282641,0.04136888,0.099894695,-0.023670414,0.03261833,0.01583368,-0.029083535,-0.03322098,0.012064639,-0.02209717,0.003626939,0.0038008473,-0.030293709,0.03857084,-0.002727617,-0.076848544,-0.003555099,-0.00919246,-0.039884295,-0.010332257,-0.020429805,-0.052632175,0.015842125,0.037094086,0.1777838,0.07346919,-0.098509185,0.0058277138,-0.10077887,0.0052322075,-0.009182236,0.0011777562,-0.035640027,-0.01325468,0.06496293,0.03801963,-0.048539728,0.00037136496,0.043663416,-7.6311786e-05,0.121133596,0.12233482,0.05729799,0.034168236,-0.02314232,0.18109296,0.0018206219,0.05187054,0.020392431,0.0046827574,0.030056108,-1.8796005e-32,-0.03293078,-0.0042544426,-0.035128903,-0.0041774577,0.002627377,0.03427649,0.019661143,0.009881248,-0.038678657,-0.04933982,-0.044260804,-0.12636219,0.07208284,0.029964568,-0.05801715,0.03273225,0.016753817,-0.12766796,-0.06545082,-0.06338042,-0.058618885,0.010716994,0.087523974,-0.031603582,-0.04154377,-0.097853,-0.08145109,-0.04692189,-0.03939953,-0.044541042,0.023749206,-0.00093554787,-0.023520367,0.021900928,-0.045225278,0.03021068,-0.030961825,0.051038835,0.05318265,0.021450521,-0.04601161,0.023540856,-0.046316154,-0.048805203,-0.030821348,0.010214819,0.017039144,-0.1934867,-0.095782444,-0.063683204,0.03628511,-0.008880067,-0.028507842,-0.1168426,0.0109891845,-0.019415684,0.013150221,-0.10257219,-0.077410266,-0.0028448417,0.07645039,0.021217205,-0.034114283,-0.022276657,0.12754987,-0.057313073,-0.014805763,0.042816408,-0.04247383,0.015361041,0.076411925,-0.05890444,-0.052989338,0.045453437,-0.008164773,-0.04726085,-0.071910076,-0.012633258,0.030072141,-0.015710747,0.018901723,0.008226689,-0.0008485944,-0.082573555,0.028281054,-0.026769595,0.034554295,0.020928347,-0.054778803,0.06427573,-0.022326889,0.026710333,-0.06272162,-0.08731652,-0.026036099,-6.105107e-08,0.0029470145,-0.066175625,0.018942915,-0.027580092,0.027242946,-0.0018762182,-0.050945945,0.08236809,0.013323395,0.069819696,-0.00013284554,-0.04126918,-0.019079022,0.047468286,0.05444362,-0.034140717,0.11432979,-0.008883493,-0.05928625,-0.089225374,0.056620132,-0.051600404,-0.06542954,0.028878277,-0.00011406716,0.030846689,-0.021986825,-0.019960107,-0.08281708,0.031908248,-0.039286125,-0.020162541,-0.012218425,-0.07213098,-0.019867329,-0.016507864,0.0140303075,-0.009801383,-0.0036236693,0.017194858,0.072424114,0.009036141,-0.03820781,0.03826407,-0.08938884,-0.04113325,-0.016330877,0.028128231,-0.029709945,-0.038912978,-0.06419261,-0.054374415,0.070946425,0.014065085,0.038451534,-0.039207887,0.023333723,0.10709973,-0.00883033,-0.006133713,0.13487227,0.09886564,-0.0590129,-0.05302763} 0.76666665 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:16.470862+00 2026-01-30 02:01:10.035303+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1609 google Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB 1 t 1612 Go Karts Mar Menor unknown Una experiencia divertida y recomiendo en familia o con amigos! Pero con prudencia! Intentad poder participar sin los coches más rápidos el ambiente será más agradable! una experiencia divertida y recomiendo en familia o con amigos! pero con prudencia! intentad poder participar sin los coches más rápidos el ambiente será más agradable! 4 2025-09-02 00:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"E1.04": "Pero con prudencia! Intentad poder participar sin los coches más rápidos el ambiente será más agrada", "O1.05": "Una experiencia divertida y recomiendo en familia o con amigos!"} {0.0058370447,0.050084185,0.011308894,0.014395028,0.043082718,-0.027062543,0.08935065,0.025375055,-0.040404234,0.004349496,0.11574504,-0.11315223,-0.043252192,0.0124895,0.05774992,0.03637865,-0.02830372,0.007422704,-0.010186296,0.014329631,0.008993548,-0.010274826,0.014300405,0.03611063,-0.09132709,-0.02075262,0.003079058,0.0140335085,-0.010214699,-0.012134151,0.08314362,0.12573218,0.11072661,0.017220318,-0.050890904,0.073709436,0.052624445,-0.020977437,0.025927821,0.0060516526,-0.08993698,-0.004959382,0.016340574,-0.13034649,0.020027054,-0.07298,0.023328437,0.030273678,0.025386361,-0.048475336,-0.02355726,-0.048651624,0.0011891151,0.0299671,0.0040743058,0.009843097,0.0019403531,-0.044417974,0.04078382,0.018861402,-0.017601257,0.043379877,-0.091334924,-0.0005188675,-0.038755257,0.0012442131,0.056601226,-0.01418259,2.9356795e-06,-0.012401532,0.08274951,-0.0062421733,0.0721731,0.0059581,-0.022102525,0.071425654,-0.05034209,0.008075272,-0.037690386,-0.06932735,-0.016503675,-0.040448785,-0.032616183,-0.073933154,-0.0059713884,0.022561992,-0.035668757,-0.017551934,-0.015985351,0.025615167,-0.059200607,0.020924384,-0.050520904,-0.037269317,-0.03026277,-0.00955144,-0.0118222665,-0.09828125,-0.063661,0.029716955,0.01960826,0.12642944,-0.0063301367,0.06496287,-0.07409381,-0.043156225,-0.0043895924,-0.016878983,-0.0115519855,0.07247752,-0.06524025,-0.08325025,-0.019464571,-0.02976437,-0.10901521,-0.027395222,0.05118375,-0.07926945,0.026911328,-0.028815709,0.058958944,0.052188728,-0.034677997,0.0002580029,0.08707567,-0.13171086,0.008917977,1.2538363e-32,-0.0558889,-0.018965373,-0.005079909,0.073552564,0.02711168,0.04721904,-0.031542864,-0.031203372,0.055883348,-0.054828074,-0.016694447,0.093866214,0.053223662,0.04373084,0.03128389,-0.012704215,-0.05757773,0.03998911,0.014242292,0.10246953,-0.064486325,-0.065272585,-0.048643693,0.037686057,-0.009724276,-0.006891856,0.05229797,-0.005991884,0.02883482,0.051865824,0.0048473803,0.026097238,0.0077079297,-0.09377864,-0.01667064,-0.014157873,0.09505847,0.015492626,-0.00044276376,-0.012362003,-0.07470889,-0.004617501,0.013107195,-0.0054649315,-0.012056892,0.02355335,0.11321036,-0.023959417,0.070554584,0.045829542,-0.018495886,-0.11517037,-0.013704532,-0.015037628,-0.00838238,0.005972088,-0.027291138,0.034846384,-0.0029440885,-0.059914462,0.06995129,-0.019042496,-0.0008190726,-0.042839065,-0.018678926,-0.09278721,0.059831344,0.040420048,0.07519868,0.034316022,-0.047934193,0.013890082,-0.037605528,0.02688001,-0.0259802,0.05507879,-0.01305573,0.0063241487,0.0033465456,-0.0059830057,-0.023629803,0.04575104,0.053612318,0.009486371,0.04430694,0.05528595,0.012784359,0.075341545,-0.075055026,0.11078533,0.01740889,0.07874628,0.017213644,-0.038657762,0.02182363,-1.300673e-32,-0.003978541,-0.037436385,-0.05842845,-0.08286478,0.025915405,-0.056197494,-0.026930233,-0.023830589,0.046540223,-0.055420402,-0.1627582,-0.06955704,0.13588941,-0.056788404,-0.058144514,0.013503715,0.0045742383,-0.02700147,0.0033001353,0.020706914,-0.016272267,0.033647925,0.08268238,-0.03031454,0.019405743,-0.04263763,-0.014870718,0.042845905,-0.084950425,-0.0753553,-0.022792408,-0.030897016,0.022565696,0.017207423,0.02224194,0.06042304,-0.0020779592,0.032159615,-0.041583072,0.0006412758,0.04847867,0.085131966,-0.019204615,0.020484613,-0.053703696,0.083252296,0.0013257954,-0.12854251,-0.01610247,-0.035912678,0.060580403,-0.03695037,-0.012050964,-0.07162422,0.07223551,-0.028943535,0.029703198,-0.09501224,-0.07539356,0.012610847,0.07552196,0.007775097,-0.06876836,0.003677396,0.032341454,0.00458273,-0.057025865,-0.0071449787,0.0552537,0.09626004,0.08132385,-0.019830942,-0.09400069,-0.012639785,-0.048188195,-0.040338386,-0.064548835,-0.06542121,0.014953286,0.044139165,-0.033448227,-0.0038778826,0.0035620274,-0.10490951,-0.06662281,-0.082890876,-0.08536736,0.021487482,-0.032438654,0.016511846,-0.019104,-0.0076456526,0.012344466,-0.046889056,-0.049987134,-4.4583487e-08,0.057821847,-0.06552139,0.046319228,-0.0019226676,-0.00063838647,-0.049555,0.005017962,0.01770457,-0.012322334,0.013431293,-0.09542781,-0.04721017,0.037844863,0.10461237,0.05837461,-0.040120315,0.15132926,0.056428287,-0.07960994,-0.04972727,0.10562028,0.0043782177,-0.05237317,0.006924179,0.010796994,0.04465893,-0.010163497,-0.024137922,-0.036080316,-0.027256548,-0.05290739,-0.01491391,-0.03964065,-0.02514662,-0.03950788,-0.05965716,-0.042052954,0.03903979,0.00787178,-0.008039123,0.08903278,-0.016403427,-0.06919065,0.011221534,-0.012117464,-0.04989217,0.04923773,0.03378973,-0.0042598643,0.06036674,-0.009566288,-0.0698782,0.04459952,0.004323753,0.002543552,-0.049517877,0.035207327,0.054774713,0.04781848,0.04067065,0.04404473,0.14689255,-0.00065105705,0.003629892} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:02:22.86148+00 2026-01-30 02:01:10.038339+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1636 google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB 1 t 1639 Go Karts Mar Menor unknown Es entrar y ya sabes que vas a sentir pura adrenalina, cada Kart está pensando para que cualquier persona pueda sentir la velocidad, es pura emoción.\nLos precios también son emocionantes, es que con esa calidad precio que quieres que te diga.\nHa ido hasta Pedro Acosta (seguramente han ido más personas famosas).\nEl circuito, que es el más largo de la Región de Murcia, se hacen competiciones de todo tipo(las que se puedan hacer en ese circuito).\nSi quieres sentir adrenalina pura tienes que venir aquí. es entrar y ya sabes que vas a sentir pura adrenalina, cada kart está pensando para que cualquier persona pueda sentir la velocidad, es pura emoción. los precios también son emocionantes, es que con esa calidad precio que quieres que te diga. ha ido hasta pedro acosta (seguramente han ido más personas famosas). el circuito, que es el más largo de la región de murcia, se hacen competiciones de todo tipo(las que se puedan hacer en ese circuito). si quieres sentir adrenalina pura tienes que venir aquí. 5 2025-10-02 00:52:39.833374+00 es v5.1 O1.02 {O4.04} V+ I3 CR-N {} {"O1.02": "Es entrar y ya sabes que vas a sentir pura adrenalina, cada Kart está pensando para que cualquier pe", "O2.03": "El circuito, que es el más largo de la Región de Murcia, se hacen competiciones de todo tipo(las que", "R4.03": "Ha ido hasta Pedro Acosta (seguramente han ido más personas famosas).", "V2.04": "Los precios también son emocionantes, es que con esa calidad precio que quieres que te diga.", "V4.03": "Si quieres sentir adrenalina pura tienes que venir aquí."} {0.020004395,0.031574722,-0.019748889,-0.027668439,-0.10509573,-0.018050019,0.08653928,0.0051476764,0.041041873,0.022849215,0.11117612,-0.10802787,-0.029968752,-0.005278478,0.057439137,0.004373717,-0.029085906,-0.03864008,0.07461585,-0.013734663,0.056763906,-0.04883794,-0.10744991,0.09670172,-0.038695708,-0.0030231937,-0.019588603,0.007844423,-0.08809551,-0.058869347,-0.07978623,-0.003789753,0.10093037,-0.0068558003,-0.042984206,0.097537264,-0.03627254,-0.032091677,-0.08809821,0.04077022,-0.05275649,-0.048745472,-0.028111031,-0.0015792602,-0.0212244,-0.047220785,0.07575647,0.060128108,-0.011721327,-0.025201485,0.013812323,0.066710666,0.012657583,-0.045637555,-0.043141965,-0.02046791,-0.009129654,0.022117151,0.0776925,0.061927475,-0.0019896221,0.04527444,-0.06471173,0.0037054743,0.020406611,-0.058448017,0.03374378,0.027136615,-0.04855236,0.03823843,0.09892698,-0.08035627,-0.0020929896,-0.042591434,0.022857053,0.0783264,-0.02941883,-0.0047512855,-0.038874477,-0.019894782,0.069538996,-0.00073694077,-0.07763291,-0.010294486,0.0125791645,-0.006440212,0.015380807,-0.016214216,0.016065972,-0.050942767,-0.0032829302,0.103484556,-0.040447656,-0.04322376,-0.0071204524,0.028622778,0.011771984,-0.065059595,0.03493995,0.00873281,0.086238764,0.040833995,0.0056650247,0.020344194,-0.015464472,0.02272834,0.0029545252,-0.013629474,0.0525559,0.044767715,-0.06627034,0.009309573,-0.0023990925,0.007557127,-0.019951876,0.0049615377,-0.02413828,-0.029792879,0.040891893,-0.011323811,0.0032466839,-0.0116292415,-0.05463581,-0.019044267,0.07489931,-0.06693002,0.07117541,1.3705209e-32,0.02911059,-0.0015227615,0.051925834,0.04236319,-0.021366905,0.035077754,-0.033005174,-0.03006411,-0.029324783,0.016540172,-0.08362473,0.030523906,-0.018486982,0.12498182,0.07509964,-0.03041076,0.011673316,-0.072809316,0.09704139,0.050277155,-0.042527635,-0.043480467,-0.026387619,0.06700799,0.006298067,0.02253991,-0.0073090317,0.0011191886,-0.09423405,0.020202396,0.048993718,0.007475888,0.053334285,-0.028841037,-0.09863694,0.008722628,0.07574999,0.070141084,-0.006641888,-0.011184942,0.028492248,0.048386388,0.017961867,0.048455313,-0.0069281957,0.0073502264,0.02440315,-0.03723375,0.007855961,0.074817754,-0.07501618,-0.073413275,0.04714883,-0.061880715,0.032433633,0.05579997,-0.04779001,0.025630841,-0.06964454,-0.04667692,-0.0010369483,0.03040495,-0.0014940856,-0.06415699,-0.08034139,-0.012790095,0.02794237,-0.056586005,0.087989464,-0.010527992,-0.11050701,0.042311642,-0.04580199,0.01406255,0.015032998,0.026209053,-0.10716869,0.0073004784,-0.0064867497,-0.0051838383,-0.08534691,-0.0720511,0.0442811,0.05921642,0.14958747,0.039049227,0.03472989,-0.0049113017,-0.009299154,0.12564632,-0.015836181,0.10983489,0.07662584,0.033746496,0.0575403,-1.4503975e-32,0.007706068,0.021690413,0.03903934,0.022574522,-0.01217683,0.027261432,0.022940256,-0.008494424,-0.0043216804,-0.026733888,-0.034451086,-0.06828604,0.042207256,-0.02804337,-0.00029774595,0.092887506,0.00833785,-0.0064928876,-0.056585126,-0.04781314,-0.049765028,0.02901625,-0.020667432,-0.020352371,0.010745763,-0.083447136,-0.0032943704,-0.035587806,-0.08909675,-0.04717173,-0.00021028997,-0.012164275,0.042720955,0.10363961,-0.09650766,-0.008602099,0.05498819,-0.009305422,-0.062471446,0.0890827,0.009178592,0.052973565,0.0043503824,0.00054329674,-0.060962934,0.030830814,0.05704187,-0.15267816,-0.08062101,-0.025659,0.097703606,-0.0855759,-0.04598082,-0.02953604,0.058699563,-0.007857228,0.0065290327,-0.04216364,-0.102642685,-0.05677311,0.08385695,-0.059519816,-0.016103612,-0.069264874,0.073748484,-0.030410543,0.0322554,0.027379109,0.04917616,-0.0136743635,0.10725833,0.020061707,-0.12348045,-0.046159856,0.003957216,-0.05519079,-0.10918572,0.008605434,0.014219287,-0.033387035,-0.04779551,0.0012098193,-0.014495737,-0.0470797,0.023233403,0.040572684,0.04854676,0.02433488,-0.0120240925,0.0749714,-0.04499764,0.08193583,-0.045637347,-0.06485168,-0.006102781,-5.8879316e-08,0.020886738,-0.029781705,-0.09491379,-0.015635895,-0.007687562,-0.026881943,0.027708426,0.021122571,0.0053360215,-0.00530725,-0.0057587065,0.028573407,0.010483389,-0.03839869,0.053630494,0.01955119,0.07476169,0.06733775,-0.062068354,-0.04235285,0.051132236,0.037225913,-0.09486004,0.01329261,0.06044345,-0.036124364,-0.009066225,0.054375105,0.005923715,0.048501607,-0.03769461,-0.07307509,-0.044450484,-0.07201186,0.01293,-0.02870088,0.0511269,-0.03563986,0.038649876,-0.054280575,0.034690212,-0.06903125,-0.1311433,-0.0074701025,-0.054088175,-0.054428834,-0.009461178,0.041741274,-0.008743116,0.014432394,-0.066233814,0.0066030277,0.027898563,0.0043645655,0.025345886,-0.040242862,0.019255804,0.02006722,-0.023075167,-0.023187177,0.07661159,0.1037084,-0.040455647,-0.097040266} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:02.402766+00 2026-01-30 02:01:10.129323+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1680 google ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB 1 t 1683 Go Karts Mar Menor unknown Zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. Netjes geregeld alle materiaal ontsmet en wij waren met z'n 3en in de baan dus alle tujd en ruimte. Leuk parcourt met bochten en lekker in de buitenlucht. We gaan zeker nog eens. zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. netjes geregeld alle materiaal ontsmet en wij waren met z'n 3en in de baan dus alle tujd en ruimte. leuk parcourt met bochten en lekker in de buitenlucht. we gaan zeker nog eens. 5 2022-01-31 01:52:39.833374+00 nl v5.1 E4.03 {J2.01} V+ I2 CR-N {} {"E4.03": "Zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. Netjes geregeld alle materiaal ontsm", "O2.03": "Leuk parcourt met bochten en lekker in de buitenlucht.", "R4.03": "We gaan zeker nog eens."} {-0.06919933,0.10943631,0.044027306,-0.034545273,-0.07751091,-0.012994438,0.10487662,0.08820042,0.014342942,-0.067070305,-0.0042248983,0.018148756,-0.0014356953,-0.027433103,-0.001407084,-0.07430697,-0.036822077,0.08430288,-0.04584179,0.0004624081,-0.026619148,-0.0062611243,0.0936277,-0.00862633,0.057439096,0.042440377,0.11371954,-0.06554416,0.020521352,-0.0334007,0.08520386,-0.012835729,-0.059890393,0.005968689,0.000799164,-0.0011428599,-0.029710354,-0.0022267085,0.011447452,0.1033631,-0.061680343,-0.030133894,-0.10688327,-0.14548914,0.040564228,0.038137063,-0.044863127,-0.0490583,-0.051167786,-0.0019476183,-0.03718198,-0.036833268,0.031483,-0.024065696,0.05592007,-0.013385935,-0.019356582,-0.0068368725,-0.0036408075,-0.021175995,0.018915204,0.04347259,-0.028934589,-0.0058317776,-0.002169165,-0.0626872,-0.023779772,0.046794858,-0.124347426,0.03459744,0.06785318,-0.032937657,-0.105100036,0.0039710663,-0.057440504,-0.01278559,-0.006317936,-0.024688864,0.024563808,-0.09777548,0.052346524,-0.030810406,0.042303205,-0.009130653,-0.001722755,0.04462498,0.045682862,0.089493886,0.014559328,0.04939734,0.00019718832,-0.014510828,-0.1151336,0.024691582,-0.039498158,0.002577263,-0.0031910571,-0.00033879897,0.10100039,0.051593415,0.025983203,0.008762767,0.14179784,0.054465648,-0.09470495,0.043757778,0.044097625,-0.043298993,0.037680745,-0.05812509,-0.029757638,-0.09572427,0.04013621,-0.08868021,-0.052740086,-0.013700162,0.017062109,-0.07594273,-0.0055197845,-0.018418582,0.005771877,-0.0006003559,0.017485626,0.06252104,0.012956492,0.04273732,0.05652585,1.7659438e-32,-0.04478088,-0.115934886,-0.009781003,-0.018334858,-0.07802214,0.07993658,-0.07653731,-0.011234775,-0.00019790449,-0.057279196,-0.010757088,-0.054629046,-0.020113977,-0.048529916,0.013015467,0.019647794,0.036263213,-0.04257818,0.006919283,-0.02167716,0.011437943,-0.0526584,-0.048823,0.037779417,-0.019756222,-0.053800974,0.033995956,-0.06830519,-0.05196281,-0.008687852,0.12647453,-0.047774237,-0.002565745,0.012229818,-0.0387905,-0.005730877,-0.021312848,0.040775407,-0.059192453,-0.046677765,0.06319449,-0.06923639,-0.019585753,0.04714378,0.01888263,0.10180788,0.068166524,-0.03449105,0.05195298,-0.009435072,-0.021385102,0.05504915,-0.06306705,-0.02899271,0.01980864,0.1152334,-0.04301509,0.008808388,0.05059542,0.013448475,-0.0010710551,0.026502233,-0.029478107,-0.054140482,0.008081822,-0.058796037,0.038083375,-0.009746595,-0.009777507,-0.017632283,-0.038157564,-0.03730826,0.026210025,0.010248251,0.020712582,0.026862483,-0.0006470238,0.028666992,-0.008755197,0.00057352765,-0.12784071,-0.022472022,0.0031437469,-0.041418847,0.031836197,0.058435373,0.010435363,-0.11282123,0.019107461,0.1237345,0.03620959,0.041936975,-0.032273598,-0.03942855,-0.009851785,-1.7463993e-32,-0.0121680135,0.009707447,-0.073314674,0.08124425,-0.0073262486,0.007457532,-0.032823868,0.036264785,-0.030951332,0.01656714,0.0348303,-0.037340876,0.017634032,-0.03152571,-0.0065905727,0.021402393,0.003628134,0.03212333,-0.028260149,-0.0016130981,0.05424039,0.050947536,0.021285187,0.055985484,-0.044410247,0.04869675,0.07624875,-0.05328333,-0.06270885,0.033993635,-0.041861,-0.019287582,0.010182047,0.052126106,-0.029968984,0.02470664,0.1480614,0.010649303,-0.08760908,-0.02116182,-0.03657281,0.034032177,-0.06609806,0.086456716,0.06523363,0.015509652,-0.110136695,-0.0005718298,0.0042928355,0.0070560165,-0.031533334,0.0207983,0.046266295,-0.084049955,0.07658706,-0.057732206,0.031919643,-0.12905014,-0.03654589,-0.0087148035,0.035717644,0.01282455,0.08862613,0.026618443,0.044688087,-0.012811898,-0.05204071,0.023847088,0.081870586,-0.0861296,0.027107915,-0.062083546,-0.068504065,-0.0038075426,-0.03895087,0.022265783,0.027279437,0.014258084,-0.040341675,-0.0649133,-0.020063207,0.030549537,-0.06663527,-0.059160598,-0.07430845,-0.051409975,-0.004519875,-0.021328107,-0.01636164,-0.055128597,-0.0035932702,0.06088664,0.032619517,0.017155327,-0.0049726926,-6.009739e-08,-0.059476607,-0.0398908,-0.04261318,-0.011863464,0.07409896,-0.12923229,0.03430819,0.061553154,-0.040198013,0.09718815,-0.042148598,0.06707426,-0.044508595,0.035320427,0.11544494,0.04486278,0.028644808,-0.023774385,-0.055113904,-0.052339707,0.068207495,0.008405881,-0.0531755,0.021063406,-0.011053687,0.016947232,-0.018130401,0.031047544,0.05825404,-0.102551095,0.019951046,0.07395414,0.055258244,-0.0011400315,0.06619965,0.021772873,-0.04380106,0.026829371,-0.04275593,0.01390929,-0.020101422,-0.052295603,0.13963279,-0.04396972,-0.09242087,-0.028012428,0.024322659,-0.01391217,0.046914686,0.0197159,-0.0730121,-0.018738663,0.064032696,0.011250455,0.004137318,0.050301023,-0.0039095404,-0.043195345,0.0046031666,0.006274256,0.060922172,0.02027141,-0.058557235,0.013387775} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:12.357492+00 2026-01-30 02:01:10.3007+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1637 google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE 1 t 1640 Go Karts Mar Menor unknown Super geile Kart Bahn, Go-Cart. Sehr gutes Strecken Design. Mittwochs doppelte Fahrzeit. Hat Sehr viel Spaß gemacht. Preise für Getränke und Essen (Snacks) sind auch OK. Wir kommen gerne wieder. super geile kart bahn, go-cart. sehr gutes strecken design. mittwochs doppelte fahrzeit. hat sehr viel spaß gemacht. preise für getränke und essen (snacks) sind auch ok. wir kommen gerne wieder. 5 2021-01-31 01:52:39.833374+00 de v5.1 O2.03 {O1.02} V+ I3 CR-N {} {"O1.05": "Hat Sehr viel Spaß gemacht.", "O2.03": "Super geile Kart Bahn, Go-Cart. Sehr gutes Strecken Design.", "R4.03": "Wir kommen gerne wieder.", "V1.02": "Preise für Getränke und Essen (Snacks) sind auch OK.", "V2.05": "Mittwochs doppelte Fahrzeit."} {-0.07283064,0.072277986,0.021003013,-0.0017012104,-0.0867531,0.06267224,0.035161354,0.06998547,-0.083285205,-0.018318566,0.019243624,-0.0059324764,-0.025953136,-0.036496602,-0.023844156,-0.094295785,0.07179263,-0.0010382383,-0.0031565528,-0.09899881,-0.004568831,-0.06875733,0.01180527,0.03167209,-0.012699187,-0.038335167,-0.06820336,-0.03493934,0.05050926,-0.08236426,0.022681126,-0.0017325205,0.0234792,0.017201435,-0.026014915,0.034918003,0.04514537,-0.09551178,0.06771877,0.049741615,-0.05582714,-0.030359652,-0.07799067,-0.0011689104,0.0027452968,0.0940556,-0.040046982,-0.0054040328,-0.11607508,0.008905906,-0.08163517,-0.007182278,0.06712754,0.00598838,0.059394352,0.004778055,-0.038775127,-0.025928913,0.04968853,-0.0076852753,0.001239788,-0.045329988,-0.022647666,-0.0076074204,-0.08854939,-0.012424924,-0.04617308,0.03551127,-0.027674044,0.021946043,0.0755243,-0.12319437,0.06135155,0.012788963,0.0041323933,-0.015688105,-0.04890179,0.016467389,-0.017663434,-0.05406202,-0.083274595,-0.018565958,0.015067252,0.0042766095,-0.032853823,-0.051214576,-0.026763385,0.015566704,0.066759504,-0.04701467,-0.018418873,0.013706359,-0.10818833,0.04860219,-0.03532789,0.030293835,-0.052284177,-0.09758276,0.032724455,0.06137565,-0.0048745214,0.039884534,0.06510411,0.116436735,-0.026250454,-0.08415978,-0.04571385,0.054754395,0.08160866,0.009518237,-0.010025535,0.020032095,0.03055132,-0.065839216,-0.06867042,-0.029217217,0.018834895,-0.047586784,0.033917107,-0.02831166,0.10002988,0.041487776,0.03189208,0.008397809,-0.0066000316,0.009670741,0.042223804,1.1102746e-32,-0.059083525,-0.061522294,0.015085707,-0.032895822,0.031557962,-0.06774305,-0.05402873,-0.075155124,-0.010066042,0.029299159,0.045924917,-0.023354823,-0.03752231,0.023990868,0.02795966,-0.011588777,0.003202486,-0.028269038,0.050128963,-0.10791978,0.021592572,-0.041062362,0.07442133,0.017504293,0.07095483,-0.03961643,0.047543526,-0.09577371,-0.034351196,0.036270734,0.08916496,-0.07530057,-0.031437773,-0.0054826178,-0.113321245,-0.007024039,-0.04356969,0.06275999,0.010024838,-0.0817181,0.030586785,-0.056899022,0.016548445,-0.027007323,-0.029177397,0.04046326,0.0667493,0.07397406,0.06907206,0.043439247,-0.020773426,-0.043824103,0.0026047032,0.052341454,-0.016740257,-0.018689305,0.01695293,0.053917307,0.006610903,-0.040871345,0.006073601,-0.053689193,-0.027587311,-0.022564903,0.0305353,-0.04160148,-0.032435145,-0.059999313,0.029925168,0.042736176,-0.062274065,-0.027184885,0.049166713,0.009049491,0.021504622,0.054748457,-0.0067624664,0.08022394,-0.079797186,-0.0018525905,-0.027034758,-0.0031972397,0.04499003,-0.039498605,0.054165553,-0.012504972,-0.040904306,-0.06103277,0.09290378,0.09655314,-0.12507175,-0.03514556,0.041180708,0.09844592,-0.01403839,-1.0239367e-32,0.042031907,0.053953312,-0.020792026,0.07139707,0.03072618,0.057858083,-0.05446193,-0.03984179,-0.05917244,0.013408276,-0.028357476,0.04961468,0.05678045,0.039856724,-0.008174445,0.08267816,0.07707466,0.004100799,0.02481061,-0.040750083,0.014309355,0.02267079,-0.07576899,0.08026808,0.04281382,0.091444254,0.030183475,0.071639605,-0.09979408,0.009502492,0.026597075,-0.06533101,0.029789427,0.007344082,0.016445538,-0.009306886,-0.004407255,0.12265352,-0.04251467,0.078817315,0.02058192,0.015159037,0.040304743,0.013845663,0.0138004245,-0.03157712,-0.04442526,-0.05288364,-0.033022866,-0.030330531,0.0473479,0.04460145,0.017034447,-0.10783815,-0.01871367,0.059312794,-0.053204965,-0.02159491,-0.03320341,-0.09322684,0.10109032,0.03074741,0.05216346,-0.034125686,0.0672223,-0.118563384,-0.07187167,-0.06622925,0.00018544654,0.013678445,0.008710306,0.050482973,0.046698716,-0.00022251924,-0.028402958,0.007243266,0.036488276,0.094492115,-0.030475775,0.057301857,-0.022540117,0.06447782,0.064464316,0.047286488,-0.006288921,0.06367998,0.0143655045,0.0583876,0.07860737,-0.02210164,-0.026197884,0.046662327,0.044058807,0.015018582,0.09974075,-4.6563784e-08,0.03486246,-0.052187122,-0.07381463,0.10060975,-0.011500581,-0.09436895,-0.020735059,0.015965277,-0.09603271,-0.009778348,-0.03472687,0.020433262,-0.059516996,0.03851094,0.004113816,-0.045037184,-0.08735175,0.10377749,-0.030768858,-0.087307155,0.013602486,-0.038223196,0.070620336,-0.0009460906,-0.031579047,-0.030864585,0.0316476,-0.06689677,0.06849117,0.00219791,0.017486703,0.07898352,0.04817275,0.017143214,0.01236385,-0.0468351,-0.09343181,0.069842376,-0.033746716,0.07098871,-0.0051293005,0.013558849,0.025055325,-0.023614839,-0.09643952,0.02560023,-0.068202235,0.053452596,0.054341596,0.053433824,-0.048721496,-0.0042202314,-0.0018246801,0.03545123,0.02118798,0.051774114,-0.0208986,-0.05910681,-0.00888571,-0.032859016,0.00878122,-0.0124919405,-0.048527613,0.028742258} 0.82 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:14.996022+00 2026-01-30 02:01:10.131975+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1614 google Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB 1 t 1617 Go Karts Mar Menor unknown de todos los kartodromos que he ido, probablemente este sea el mejor. los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me parece que va super rapido y me encanta el layout de la pista. curvas perfectas y muy balanceado. eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en 2018, van mucho mas rapido y te adelantan facil. aun asi si sabes conducir rapido como yo pues no te pasan, solo en rectas. tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis que dar un aumento al chaval. de todos los kartodromos que he ido, probablemente este sea el mejor. los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me parece que va super rapido y me encanta el layout de la pista. curvas perfectas y muy balanceado. eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en 2018, van mucho mas rapido y te adelantan facil. aun asi si sabes conducir rapido como yo pues no te pasan, solo en rectas. tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis que dar un aumento al chaval. 5 2025-12-01 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"O1.02": "los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me", "O4.03": "eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en ", "P1.01": "tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis q", "V4.01": "de todos los kartodromos que he ido, probablemente este sea el mejor."} {-0.023594696,-0.008195468,-0.028329598,-0.0684992,-0.06907747,0.014200419,0.020029714,0.05709557,-0.035779066,0.010582974,0.046114463,-0.002893782,-0.040932566,-0.013590671,0.051758174,-0.03553768,-0.037801567,-0.015752176,0.0139589105,0.019556893,0.056187507,-0.04728076,-0.054552738,0.059896354,-0.11770665,-0.013513179,-0.008552706,0.069205694,-0.044135872,-0.1522692,-0.008315461,0.07407534,0.079368584,0.017523874,-0.017030401,-0.01086877,-0.04618885,-0.024730938,-0.045133166,0.02375362,-0.06394671,-0.070226595,-0.02480147,-0.033488207,0.035546836,-0.033269312,0.035034165,0.06479837,0.08476819,-0.02350952,-0.07611443,0.014815644,0.039303586,-0.027449926,-0.068432465,0.020904234,-0.04143677,0.00025769597,0.11552511,0.033818804,0.058730744,-0.0055705635,-0.025052547,0.017492048,0.0075758426,-0.013637228,0.01603216,-0.055038713,-0.039969973,0.09071236,0.13015094,-0.009913942,-0.033878963,-0.030433774,-0.027513519,0.06273041,0.009110495,-0.00045945848,-0.039051972,-0.056607943,0.0075147455,-0.060366865,0.0011481433,-0.08483269,-0.022745911,-0.010412622,-0.03554869,0.044367258,0.0043934193,0.017986065,-0.009309573,0.10903329,-0.057760652,-0.05231231,-0.022944268,0.065584354,0.04713563,-0.045458924,-0.024720669,0.023928918,0.090326786,0.0015155185,0.068319164,0.06536118,-0.050084453,0.03217142,0.05848123,0.034724224,-0.035252314,0.0099492585,-0.079873785,0.023981962,-0.084398575,-0.056531776,-0.13359377,0.0064551607,-0.056599572,-0.04476984,0.01543317,0.016531795,0.05108729,-0.019457754,-0.077161804,-0.005019905,0.05023023,-0.0365011,-0.0019812768,1.6559954e-32,-0.01032951,0.051472176,-0.024336006,-0.03244362,0.03532114,-0.04850862,-0.020966155,-0.0066649835,-0.08731599,-0.028677093,-0.034390833,0.04699533,0.016367894,-0.055849086,0.06251489,-0.016108787,0.04832324,-0.026375208,-0.010219883,-0.045688078,0.032802284,-0.06012928,0.07746384,-0.007255806,0.035626028,0.08390915,0.04373797,-0.026873033,-0.061403453,0.06313444,-0.065100044,-0.02401105,-0.0054990156,-0.011213289,-0.012308715,-0.02736674,0.00047803685,-0.017461041,-0.111318894,0.03766414,-0.001046896,-0.019819602,-0.041923318,0.023383671,-0.069753945,-0.0012696491,0.01357691,0.049847607,0.044411164,0.09729914,-0.010508222,-0.04638672,-0.06089922,0.0025856958,0.055451043,0.035839736,-0.01281633,0.05147544,-0.03619145,0.036352716,0.084278785,0.004525959,0.019948022,0.012253581,-0.04901054,-0.011393168,0.051864717,0.054290853,0.13979204,0.07582353,-0.045085564,-0.10517377,0.00053078175,0.06255719,0.09045563,0.04672823,-0.018024132,-0.027232712,-0.07098014,0.06657617,-0.06150265,0.029735437,-0.0042298785,0.034387168,0.07189323,0.009454592,0.07473653,0.078829415,0.006648385,0.05838308,-0.0037463803,-0.004071628,0.09563951,0.016436445,-0.019354539,-1.5596577e-32,0.02530359,-0.008099055,0.101124234,0.022472458,-0.027101487,0.015628632,0.051621664,0.019963339,2.9445835e-05,-0.020472411,-0.0685329,-0.03183624,0.0710409,-0.10047064,-0.04713122,0.062356874,0.03752837,-0.10796334,-0.038912784,-0.02051001,0.04649622,0.0925625,0.02410435,0.03383749,-0.09370842,-0.053921927,-0.035213925,0.025941113,-0.10474343,-0.0028408354,-0.031381533,-0.06034887,0.026615405,0.039030634,-0.037963096,-0.019406017,0.039482284,0.034276623,0.031455718,0.080072105,0.006828688,0.05772653,-0.032246854,-0.0013161758,-0.039716993,-0.008378513,0.049907465,-0.1452086,0.0110049,0.002210131,0.11036842,-0.02647382,-0.08020904,0.014415829,0.0074732197,-0.044686213,-0.0033128955,-0.07038841,-0.10141917,0.008054252,0.04595221,-0.024940362,0.013598091,-0.061560072,0.096539974,-0.045816284,0.0053027757,-0.017404635,0.049064893,0.0493533,0.01427433,-0.030783936,-0.08767319,0.06442895,-0.016354954,-0.02848189,-0.072720505,0.050838176,0.080224074,0.007096485,0.015002296,-0.014273227,-0.034249067,0.02642331,-0.0019550119,-0.02895708,0.016878659,0.0040306253,0.06988772,-0.022149188,0.050672892,0.050514318,-0.011700625,0.03203786,-0.04591286,-5.995878e-08,0.071243286,-0.031813666,-0.07935845,0.0157705,0.089710526,-0.086747356,-0.082115814,0.037483294,-0.012755641,0.014584471,0.054466978,-0.05814818,0.04477276,0.007828498,0.022751672,0.063581325,0.050096937,0.115868405,-0.055105586,-0.043095652,0.054448776,0.04644753,-0.038559046,0.0067447186,0.047554806,-0.012012695,-0.08061879,-0.039096553,-0.0058008796,0.004178026,-0.0824623,-0.028737746,-0.044832055,-0.04708932,0.024991987,-0.017988445,-0.02017368,0.029786408,-0.036581535,-0.0021194315,0.124194875,-0.022098763,-0.13104928,0.0066618877,-0.09215032,-0.038538825,-0.07036687,-0.05984391,-0.0484167,-0.045441877,-0.07758558,-0.011257046,0.0138121825,0.05018746,-0.013869905,0.012868877,0.013148151,-0.05957444,-0.049481507,-0.012043826,0.0584285,0.06705416,-0.0068593207,-0.0805312} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:15.513772+00 2026-01-30 02:01:10.055046+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1658 google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB 1 t 1661 Go Karts Mar Menor unknown Ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. De eerste keer twee heats in de F400 gereden, welke 110 km/u gaat! Erg gaaf! De tweede keer de rest van het gezin mee genomen. De kinderen reden in de F200 (60 km/u) en mijn vrouw en ik reden in de F300 (80 km/u). Beide keren waren een groots succes!\n\n- Het circuit is 1100 meter lang en de lay out is leuk om te rijden\n- Het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen, rubber, etc.)\n- Veiligheidsvoorzieningen zijn dik in orde.\n- De verschillende karts rijden allen prima!\n- Daarbij hebben de diverse karts ook nog verschillende chassis, zodat er altijd wel een goede match is met je been lengte.\n- Overige faciliteiten zijn ook zeker prima.\n- Mooi overzicht op de baan vanaf het terras op het dak van het clubhuis.\n\nVolgende vakantie in Spanje gaan we zeker weer! ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. de eerste keer twee heats in de f400 gereden, welke 110 km/u gaat! erg gaaf! de tweede keer de rest van het gezin mee genomen. de kinderen reden in de f200 (60 km/u) en mijn vrouw en ik reden in de f300 (80 km/u). beide keren waren een groots succes! - het circuit is 1100 meter lang en de lay out is leuk om te rijden - het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen, rubber, etc.) - veiligheidsvoorzieningen zijn dik in orde. - de verschillende karts rijden allen prima! - daarbij hebben de diverse karts ook nog verschillende chassis, zodat er altijd wel een goede match is met je been lengte. - overige faciliteiten zijn ook zeker prima. - mooi overzicht op de baan vanaf het terras op het dak van het clubhuis. volgende vakantie in spanje gaan we zeker weer! 5 2023-01-31 01:52:39.833374+00 nl v5.1 O1.02 {O4.03} V+ I3 CR-N {} {"E1.01": "Het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen,", "E1.03": "Het circuit is 1100 meter lang en de lay out is leuk om te rijden", "E4.01": "Veiligheidsvoorzieningen zijn dik in orde.", "O1.02": "Ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. De eerste keer twee heats in de F", "R4.03": "Volgende vakantie in Spanje gaan we zeker weer!"} {-0.07765224,0.12454136,-0.0068514976,-0.035838965,-0.060298447,-0.061154056,-0.010692363,0.074047215,-0.0077700024,-0.03444851,0.039573364,-0.059270058,0.015716268,-0.08627471,0.02318087,-0.03285753,-0.015421496,0.0580349,-0.06924693,-0.10015459,0.012079889,-0.031121891,0.017346993,-0.044605415,5.3932312e-05,0.053339526,0.051416602,0.07711299,-0.07264082,-0.046016358,0.02126483,0.04275504,-0.08416155,0.0019020435,0.024331983,0.07438663,-0.058244124,-0.025179438,-0.031627122,0.011860287,-0.024595762,-0.06833858,-0.035435073,-0.042720795,0.050258037,0.064092316,-0.047371104,-0.0069815167,-0.014829259,-0.10048201,0.021709682,0.028571967,0.104562946,0.017100893,-0.034470685,-0.04495486,-0.016266307,0.012695548,0.08239951,0.007846447,0.0452476,-0.0018434132,-0.09686988,0.019996904,-0.04734568,-0.08883895,0.0129103605,-0.035602637,-0.095873095,0.013212728,0.052133407,-0.009943877,-0.08495475,0.011561481,0.008796044,0.0076347734,0.005029685,0.03362086,0.012828826,-0.08536615,0.09443491,-0.014789534,0.08443147,-0.04768203,0.010182158,-0.014867434,0.06248276,0.01953735,-0.030257273,-0.015678925,0.0069239032,-0.0010648612,-0.05657733,0.0013457394,0.021634677,-0.021408755,-0.027625885,0.060193725,-0.0065647857,0.0009749487,0.0678804,-0.0473425,0.008767146,0.09937981,-0.087420255,0.062106665,0.054853354,0.0017554787,0.08797587,-0.030873919,-0.054491676,-0.03387116,0.012895114,-0.095763065,-0.024151705,-0.09633095,-0.06752912,0.011400925,0.058819924,0.05396943,-0.029741917,0.014052692,-0.01400591,0.07598367,0.064909674,0.02081618,0.06237043,1.9134355e-32,-0.07862747,-0.006061102,-0.02782242,-0.034284208,0.032891188,-0.0212117,-0.06488804,-0.009860619,-0.039681878,-0.01649315,-0.04591747,-0.0036480804,-0.07795439,-0.03255479,0.06499817,-0.019476304,-0.002756484,-0.07166978,-0.07019697,0.006104783,0.025917064,-0.07478044,0.07137913,0.07082922,0.0019672082,-0.00124279,0.03584311,-0.09713445,-0.060290948,0.033186544,-0.0058183153,-0.09460898,-0.032045998,-0.03515468,-0.12203027,0.022413976,0.03827452,-0.004656179,-0.05592645,-0.05444365,0.02052146,-0.037581883,-0.010502967,0.035008635,-0.0016418338,0.11418933,0.05675583,0.072937086,0.037662633,0.056829203,-0.086373456,-0.022129493,-0.07861659,-0.01506979,0.047034968,0.09761607,0.04495532,0.04013553,0.07020376,0.060718864,-0.064217255,0.083557986,-0.008575073,-0.013998981,0.023861948,-0.014444428,-0.0012793097,-0.03830023,0.020952111,-0.03526098,-0.03827542,-0.04031225,0.082889155,0.004442893,0.06580253,0.06911675,0.018812539,0.0042958083,-0.06914242,-0.001076214,-0.08918021,-0.05141613,-0.07640121,-0.07931191,0.04233306,-0.091116145,0.008466412,-0.086296424,-0.030940562,0.10138759,0.013072389,0.00224175,-0.04612312,0.0055525675,0.025834002,-1.7676463e-32,0.02687731,0.092734344,-0.009205262,0.08842581,0.016263183,0.0018009624,0.047324073,0.044453893,-0.019529456,-0.028264156,0.01771474,-0.055340845,0.033612795,-0.05386343,-0.033530183,-0.022553176,-0.034802265,0.02830726,0.03287352,0.056586683,0.0018248253,0.09898827,-0.022882914,0.027513992,-0.08183723,0.034788013,0.0029542653,0.032506,-0.055229146,-0.0374156,-0.031478927,0.0071544023,-0.015380171,0.08261167,-0.017505718,-0.004552635,0.1071914,0.050924513,-0.015068315,-0.022770844,0.0300031,0.04897939,-0.05165134,-0.0004973188,-0.04080176,-0.026838468,-0.019744413,-0.042809755,0.026052268,-0.057979565,0.08396954,0.05159754,-0.046349972,0.030367553,-0.0036184401,-0.05292497,0.067103915,-0.037092317,-0.08920684,-0.05384265,0.06350061,0.013813336,0.09112365,0.07096606,0.059998397,-0.060013913,-0.057122774,0.0563641,0.10808613,-0.028910367,-0.0515687,-0.059224457,0.0095242215,-0.0624185,0.013175624,-0.011289911,0.004070229,-0.021956464,0.048417915,-0.01552091,-0.109046526,0.029908948,-0.0656402,-0.020247946,0.045080222,-0.015934996,0.022232711,-0.027988132,0.02953516,-0.012304027,0.056432128,0.08741487,0.030217925,0.08668382,-0.033486977,-6.2572035e-08,0.0130735235,0.020057851,0.0046827253,0.047439296,0.10308761,-0.1398848,0.067483895,0.021142205,-0.08683498,0.019947542,0.018258994,0.07439643,-0.03786382,0.05962046,0.055053815,0.03249603,-0.045621037,0.02052624,0.0006411489,-0.005465127,0.021545481,0.025672132,-0.02367917,0.05485192,0.022207813,0.014709193,0.011632205,-0.018387811,0.14309286,-0.06538957,-0.06650593,0.015460656,-0.015078206,-0.03628483,0.05621073,-0.007878224,-0.10436806,0.10309905,0.010124235,0.017064713,-0.017321642,-0.060458936,0.045637853,-0.015173018,-0.06749208,-0.01589651,-0.051054623,-0.012975543,0.028249389,0.026084177,-0.081834644,-0.008142586,0.010339669,0.039675057,0.0073222546,0.015657496,-0.031679478,0.0019312528,-0.030593669,0.012555117,0.017565502,0.0005307872,-0.09813883,-0.008100609} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:21.294105+00 2026-01-30 02:01:10.211794+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1682 google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB 1 t 1685 Go Karts Mar Menor unknown Un circuito muy amplio y rápido, los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un F-200 que están muy bien.\n\nYa si quieres más velocidad tienes el de F-300 en donde ya es algo más técnico. Y si quieres sentir la sensación de conducir un kart de competición de 4t tienen el de 400cc que tira muy bien!\n\nAhora para este año han innovado organizando un campeonato para amantes del karting que está bastante bien de precio y muy bien organizado, en donde habrán distintas modalidades de correr el circuito muy interesantes.\n\nSin duda alguna es uno de los mejores de la Región de Murcia. un circuito muy amplio y rápido, los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un f-200 que están muy bien. ya si quieres más velocidad tienes el de f-300 en donde ya es algo más técnico. y si quieres sentir la sensación de conducir un kart de competición de 4t tienen el de 400cc que tira muy bien! ahora para este año han innovado organizando un campeonato para amantes del karting que está bastante bien de precio y muy bien organizado, en donde habrán distintas modalidades de correr el circuito muy interesantes. sin duda alguna es uno de los mejores de la región de murcia. 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {V4.01} V+ I3 CR-N {} {"O2.03": "Un circuito muy amplio y rápido", "O3.02": "Ya si quieres más velocidad tienes el de F-300 en donde ya es algo más técnico. Y si quieres sentir ", "V1.01": "los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un F-", "V4.01": "Sin duda alguna es uno de los mejores de la Región de Murcia."} {0.019966664,0.017589549,-0.0687314,-0.09261509,-0.096779875,0.045770306,-0.062085565,0.104032494,-0.035323918,0.013858573,0.024819853,-0.04230762,0.020749802,-0.004871093,0.036424138,0.013097441,-0.0071907025,-0.0225836,-0.008089599,-0.012927705,0.080527656,-0.06930412,-0.05876538,0.05246173,-0.04400825,-0.040722877,-0.004729087,0.0409575,-0.07464362,-0.054925445,-0.07989267,0.034588706,0.02714551,-0.0088929385,-0.0595145,0.00034426482,-0.00054827257,-0.060391977,0.020234877,0.022453843,-0.100658804,-0.012939836,-0.003359701,-0.05949457,0.009183453,-0.030805096,0.04396721,0.013420097,0.0062286817,-0.06662166,0.037048876,0.00706666,0.034766354,-0.009534667,0.010196301,-0.043242466,-0.035334256,0.09255839,0.072308905,0.118041016,-0.011359254,-0.04726816,0.001076976,0.026828354,-0.029676594,-0.06271234,0.00016523275,-0.050900716,-0.04255973,0.015016386,0.080155395,-0.041672505,-0.058405083,-0.051025737,0.04373288,0.09904087,0.02531157,0.058389723,-0.074627034,-0.03330182,0.056261316,-0.030771747,-0.046623938,-0.12759387,0.060304057,-0.02918838,-0.01481553,0.008099396,-0.011335912,-0.023714803,-0.003522956,0.08176484,-0.08264959,-0.013712029,-0.036697168,0.0774052,0.014462639,-0.061265167,0.042726457,0.012260755,0.057157192,0.0027019882,0.04408957,0.02062809,-0.016732583,0.020484384,0.060005467,0.062245235,-0.020616798,-0.0022365649,-0.022095572,-0.025221454,-0.033487666,-0.11740137,-0.048627485,0.00976365,-0.034401797,0.008238555,0.06259165,-0.01819969,-0.039661232,-0.061749455,-0.029927935,0.020147508,0.07021634,0.0022012002,0.018867662,1.2228658e-32,-0.015553854,0.017388577,-0.056016486,-0.0018282486,-0.050196063,0.00018973876,0.039284408,0.022986881,-0.052095126,-0.02525024,-0.027962195,0.06661508,-0.02339313,-0.0064727264,0.07431515,-0.10240393,0.04303743,-0.108750135,0.07560751,-0.029409098,0.022006523,-0.05372029,0.048159275,0.063481376,0.040768716,0.08276691,0.07050229,-0.030278062,-0.06571419,0.059206244,-0.023672896,0.012892425,-0.0016775453,-0.060300104,-0.10288295,0.00767603,0.042817146,0.0262662,-0.022282703,0.017785488,-0.024185963,0.008868365,-0.067165084,-0.020393526,0.008343196,0.0066424687,0.0057474854,0.059431158,0.05415396,0.094267406,-0.10838932,0.0028029021,-0.041786224,0.0103086345,0.03800001,0.0010540853,-0.021753129,-0.0028174368,-0.067572095,0.0454649,-0.04114427,0.028518526,-0.0118331425,-0.012259266,-0.09459515,0.005688905,0.039324272,-0.045023635,0.0751414,0.037558842,-0.07672371,-0.010459348,0.0048518456,-0.040824756,0.080330245,0.020575773,-0.010092185,0.014815072,0.0065425066,0.026908671,-0.11433753,-0.01334594,-0.005715082,0.040641136,0.05014017,0.050694767,0.0632936,0.10192691,0.0036776636,0.019888494,-0.020251255,0.06924072,0.056817114,0.046197616,0.059638117,-1.3175872e-32,0.049703546,0.053380273,0.10092833,0.043321785,-0.0003554603,0.020803811,0.053332087,-0.018473476,-0.07041875,-0.020959064,-0.03473049,-0.10585354,0.054968324,-0.053235445,-0.04594642,-0.014192681,-0.05464247,-0.046111844,0.018020045,-0.012824348,0.072760046,0.08274325,-0.0042793145,-0.015351443,-0.02348813,-0.08796924,-0.096688144,-0.010462021,-0.079025134,-0.0055188676,0.0010146416,0.0101417415,0.041585468,0.100985676,-0.08770371,-0.049363017,0.07980143,0.08819766,0.021904098,0.040364012,0.05219951,0.08912942,-0.015274797,0.006404753,-0.036942136,0.011669241,0.08142839,-0.09987203,0.051613495,0.006999692,0.05610871,-0.099048555,-0.04588923,-0.050274942,0.005674725,-0.05257704,-0.014741671,-0.0626044,-0.16992511,-0.014642301,0.03307268,-0.003739975,0.026745824,0.009508927,0.05233491,0.015650265,-0.020142425,0.021009296,0.085928075,0.012692855,0.001426615,-0.024424512,-0.038663127,0.021012867,0.00019866104,-0.021581994,-0.07391272,0.063475914,0.07257107,0.05154445,-0.03363088,0.101896495,-0.037420735,-0.059547264,0.0350807,0.021351622,-0.008574046,-0.010997098,0.06207289,-0.05428694,-0.017291935,0.13454516,0.030781405,-0.035911564,-0.007351109,-5.40526e-08,0.050681487,0.050462224,-0.106995665,0.063770995,0.055185772,-0.060544007,-0.012886357,0.020418834,-0.057758972,0.010740384,-0.0006834926,-0.04348602,-0.025614118,-0.008086893,-0.006464897,-0.011994868,0.061508145,0.080909714,-0.011691038,0.030950151,0.02925412,-0.009967438,-0.04845794,0.04374065,0.01834847,-0.02608295,-0.11082942,0.016038163,0.011716912,0.019184776,-0.089113705,-0.023935206,-0.086768016,-0.06929177,-0.022379681,-0.033032823,-0.0703297,0.021349965,-0.09151994,0.025153069,0.07400116,-0.120087564,-0.08652539,-0.034207482,-0.02255074,-0.07220624,-0.08506947,-0.039106067,0.02852032,0.0779302,-0.078248195,0.0075893095,-0.024840845,0.0006392766,0.018673219,0.011638484,0.02340306,-1.617563e-05,-0.063861534,-0.04665972,0.021064084,0.008471526,0.0013034291,-0.05478114} 0.94 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:38.310231+00 2026-01-30 02:01:10.308094+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1639 google Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB 1 t 1642 Go Karts Mar Menor unknown La pista y los coches muy bien..pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal alos niños sobre todo..porke seve k con los mayores no tiene huevos.y nole dicho nada feo pero ala proxima no creo k se escape k selo explique...... porke yo si tengo educación k el por lo demás bien..asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar cara al público. K se valla al campo a trabajar..por lo demás bien..todo.... la pista y los coches muy bien..pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal alos niños sobre todo..porke seve k con los mayores no tiene huevos.y nole dicho nada feo pero ala proxima no creo k se escape k selo explique...... porke yo si tengo educación k el por lo demás bien..asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar cara al público. k se valla al campo a trabajar..por lo demás bien..todo.... 3 2025-09-02 00:52:39.833374+00 es v5.1 P1.02 {P1.01} V- I3 CR-N {} {"O1.01": "La pista y los coches muy bien", "P1.02": "pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal al", "P3.05": "asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar car", "V4.03": "por lo demás bien..todo"} {-0.005268877,0.06535181,0.0306024,-0.06798785,-0.11029747,-0.0023407296,0.06524596,-0.031520966,0.051390104,0.03953499,0.15346837,-0.0059195054,-0.0130503625,-0.008531696,0.0495799,0.016321294,0.020439535,0.004429098,0.0032652784,-0.019355709,-0.035464108,-0.048566937,-0.104101375,0.0655699,-0.056046855,-0.00787501,0.059580445,-0.04997643,-0.052516483,-0.039502315,-0.036237326,0.06751309,0.027717333,0.007776929,0.011514196,0.06862577,0.05178449,-0.062593825,-0.06430084,0.116458975,-0.06566154,0.003183253,-0.017278299,-0.04852846,-0.00983489,-0.07127785,-0.0068094977,0.017109776,0.066613205,-0.077169865,-0.08843057,0.025999445,-0.03462089,-0.0065789786,-0.0640986,-0.020532096,-0.05259608,0.04048101,0.015301501,0.06398937,-0.037093133,0.034572892,-0.060474865,0.052328445,0.04223306,-0.024894878,0.016334722,0.018235058,-0.09253927,0.052754905,0.036887407,-0.03628036,-0.0022809794,-0.008637906,-0.031109769,0.07566504,-0.026900562,-0.002150423,0.0024152915,-0.08981416,0.011057043,-0.0029972324,-0.032455757,-0.0807871,-0.026654564,-0.0024641214,-0.024487125,0.017282195,0.04519744,-0.044916224,0.022182224,0.10676715,-0.073153004,-0.023845363,0.026124114,0.03452238,-0.038946547,-0.013631076,-0.022730865,0.018217215,0.07625131,0.07392049,0.062366534,-0.020003714,-0.07473448,0.061132517,0.02057808,-0.011335584,0.051225338,0.043827232,-0.057431243,-0.0052188314,-0.025811657,-0.0093511,-0.035083205,0.006902079,0.025546513,-0.03715111,-0.021955999,0.028521009,0.004129644,-0.030141015,-0.11456833,-0.013860322,-0.048542455,-0.08164857,0.024525052,1.0453645e-32,0.028146384,0.024420943,0.018279094,0.0024932998,0.015140569,0.023630677,-0.04152277,-0.047144834,-0.095320866,-0.017881043,-0.020316347,0.006552469,0.021156738,-0.004407403,0.07118883,0.025955945,0.039644614,-0.0071011325,0.04825204,0.050119683,-0.009719895,-0.033691097,-0.0037076932,-0.018646276,-0.010447687,0.018823812,0.024137393,-0.055088002,-0.051094428,0.03390515,0.011396025,-0.01296255,0.04137427,-0.033225078,-0.041901484,-0.050845046,0.0031668257,0.033366103,-0.042583425,-0.043455012,-0.037052106,0.022378936,0.016333913,0.114104554,-0.021619022,0.0654688,0.053745545,-0.019130912,0.0035921575,-0.011076039,-0.06264801,-0.06600689,-0.05778119,-0.012443237,0.011181651,0.029892989,-0.025001047,0.04548931,-0.027541315,-0.05227334,0.0636785,0.082076326,-0.014130218,0.004277363,-0.023947632,-0.056091342,-0.039045684,0.024094991,0.19474725,-0.007253035,-0.049394466,-0.027243426,-0.08319718,0.029475212,0.017580096,-0.0597605,0.0553344,-0.03076111,0.015609853,0.05797389,0.031164888,-0.04093969,0.019385986,0.00521435,0.054143626,0.07763134,0.08903587,-0.019004738,-0.042214885,0.10144336,0.018046768,0.09716308,0.043281205,-0.0482562,0.03309531,-1.00366735e-32,0.054557987,0.04968482,0.017032713,-0.0020227788,-0.027901722,0.041691538,0.050752673,0.003158775,0.01827854,-0.07187668,-0.08180603,-0.112560965,0.090233415,-0.001818431,-0.013632414,0.092018716,0.0076874564,-0.018213367,-0.0571058,-0.053459518,-0.07822651,0.062444467,0.04629608,0.10957831,-0.01670562,-0.08546816,-0.10008313,0.058689676,-0.11001926,0.045657136,0.07475154,-0.07586862,-0.0045551895,0.06868996,-0.02088927,0.040225834,0.047598276,0.00950232,-0.033038467,0.051212315,0.031572066,-0.006319425,-0.05038638,-0.08754461,-0.0574508,0.029499171,0.04038472,-0.09900562,-0.12476314,-0.051114526,0.07483655,-0.0094443215,-0.0394619,-0.016597891,0.07004674,0.02070143,-0.0020354178,-0.023778465,-0.08709544,-0.015734348,0.016564608,-0.038017444,-0.012692654,-0.023876635,0.09289534,-0.032591518,0.031042786,-0.0052773575,0.04979927,0.026776725,-0.0053483816,0.03237697,-0.14414169,-0.034396756,-0.055019878,0.016182445,-0.07500865,-0.01572989,-0.027300822,0.015209235,-0.030034414,-0.04092789,-0.022616684,-0.007511192,0.058158144,-0.024946718,0.023486508,0.07407095,0.035656255,0.06762852,0.026812121,0.029382642,-0.03726077,-0.048720554,0.015778966,-5.0400217e-08,0.012632254,-0.046007473,-0.0058265952,-0.0057090363,0.06348114,-0.019705227,0.054505218,0.0112003395,0.059483714,0.07983718,-0.059670366,-0.014131538,-0.028643036,0.0429278,-0.039473936,0.13413744,0.11096315,0.07933958,0.01534268,0.010250753,0.08917329,0.028534751,-0.035326622,0.044931106,-0.03839775,0.025332823,-0.030414844,0.008357112,-0.046812024,0.04673908,-0.06418691,-0.08678108,-0.020206297,-0.11866173,0.025758943,0.017504541,-0.011627595,-0.018624611,-0.007057055,0.030604525,0.09837136,0.04094403,-0.05368263,0.007779843,-0.05183769,-0.047121868,0.025609057,0.0130007025,-0.019985367,0.036239866,-0.048153922,-0.020616869,0.051570073,-0.048576847,0.029567583,-0.09162993,0.0024155125,0.0047139726,0.04999388,-0.017545776,0.034198165,0.14388824,-0.06942539,-0.074336156} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:44.115596+00 2026-01-30 02:01:10.138903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1709 google ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB 1 t 1712 Go Karts Mar Menor unknown Un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar, eso sí, la diversión no es barata... un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar, eso sí, la diversión no es barata... 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {A4.02} V+ I2 CR-N {} {"O1.05": "Un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar", "V1.01": "la diversión no es barata..."} {-0.016746549,0.019941663,0.051363386,-0.043524105,-0.028410977,-0.021044252,0.07592807,0.037332874,0.07920925,0.01789367,0.10369646,-0.015077612,-0.062183242,-0.013801141,0.025463821,0.022902835,-0.08829617,0.044759914,0.037075657,0.058472723,0.05327121,0.04606915,-0.10841465,0.13358317,-0.12515447,0.018718949,0.049604494,-0.00054044044,-0.055224877,-0.09359709,0.013591643,0.07899372,0.044117305,-0.022144865,-0.036483508,0.011841223,0.047095347,-0.04454724,0.012866907,0.025491863,-0.1058718,0.03513729,0.009084685,0.0001893515,0.062481478,-0.030579193,-0.018692432,0.016443666,0.04966377,-0.039303795,-0.04610357,0.009572527,-0.030974975,0.027019365,-0.031694386,-0.048520543,-0.02226401,-0.008351688,0.12221677,0.049885325,0.005621243,0.038205512,-0.020445356,0.043887008,-0.03654702,-0.025584474,0.034707963,-0.020561267,-0.07009349,0.10432263,0.0712798,-0.040053923,0.02009134,-0.08358696,-0.01076236,-0.012674486,0.010888914,0.027215155,-0.050885774,0.018365864,0.022416262,-0.036749355,-0.03277499,-0.09269018,0.015504918,-0.01515571,-0.07677733,0.040245697,0.049216505,-0.027553815,-0.048626956,0.002954884,-0.031148694,-0.020117851,0.002172721,-0.010019563,-0.0029825151,-0.0933253,0.0023212908,0.013241519,0.057796605,0.10081129,-0.012869562,-0.013209256,-0.022690536,0.051094435,0.06574286,-0.021476446,0.032039452,0.031342268,-0.047829486,0.01588463,0.004542899,-0.06591387,-0.17462566,0.03702178,-0.048434164,-0.10725127,-0.016006129,-0.014813034,0.009785594,0.05896101,-0.017811783,0.048723906,0.016886959,-0.08284841,0.042381346,4.226172e-33,-0.04931564,-0.04563577,-0.019778466,0.0034036036,0.043082174,-0.044947825,-0.03902222,-0.0855549,0.0072559714,-0.043353613,-0.059359007,-0.096689254,0.018402476,0.028649325,0.0035926295,-0.0014652326,0.05077711,0.010313135,0.06324334,0.044857718,-0.042797912,-0.030776996,-0.044179745,0.019005984,-0.041774318,0.085395254,-0.013873756,-0.09476799,-0.043970205,0.06757193,-0.044921465,0.020192137,-0.019554378,0.013631064,-0.00652705,-0.0254361,0.016449915,0.06619529,0.018194877,-0.017175294,0.04207026,0.057496108,-0.03879566,0.05550198,0.038815346,-0.080826536,0.031800475,-0.00026829008,0.02453212,0.033654578,-0.0611292,-0.055947825,-0.020451814,-0.068301305,-0.0268003,-0.046254188,-0.06440959,0.11667373,0.01222486,0.0008133777,0.04957426,0.055751584,-0.028850531,-0.024533356,-0.05649031,0.02712333,0.05231662,0.018761188,0.113675594,0.048468616,-0.087200284,-0.009296402,-0.06565911,0.06689833,-0.04940865,0.007338622,0.008085766,0.03638117,0.013279443,-0.0051223887,-0.044252884,-0.02267909,0.061774112,0.05154714,0.08373539,0.041933637,0.060083173,0.0684906,-0.07493338,0.06653759,-0.0035900543,0.10673214,0.01067582,-0.06848858,0.10786638,-5.8230085e-33,0.055673935,0.041577153,0.027272455,0.0024093988,-0.05300918,0.0073200287,-0.01986676,-0.012436872,-0.016313843,-0.053166144,-0.16016841,-0.035753157,0.12764817,-0.06112457,-0.061683897,0.0925588,0.038759403,-0.022909774,-0.1077262,0.007756095,-0.023232339,0.014205345,0.09448338,-0.056578953,-0.0115777515,-0.0055608856,0.04157485,0.02936013,-0.0524275,-0.012535208,0.024572432,-0.025126904,0.00991964,-0.0137002915,-0.017764632,0.038631096,-0.007667529,0.048137374,-0.054380946,0.08304841,-0.011535428,0.08121333,-0.036081232,-0.05156645,-0.054146793,0.053740505,0.018704941,-0.09023891,-0.077100486,-0.073382154,0.008237801,-0.011985189,0.01792967,-0.04899982,0.05624664,-0.07782372,-0.02776427,-0.053597774,-0.114417545,-0.023169804,0.06027763,0.02538991,-0.05371928,-0.09298742,0.115619965,0.004569616,-0.06512637,-0.06804765,0.0049543325,0.02347971,0.06321377,0.00031789666,-0.06219489,0.047052212,0.0034969086,0.02877452,-0.08899548,-0.00868705,0.0026206824,0.020189175,-0.025061253,-0.026949516,0.046756927,-0.0067515927,-0.004254955,-0.01483164,-0.08435984,0.0037917837,-0.025357421,-0.044156425,0.024976447,-0.010057099,0.0040219435,-0.010858158,-0.023383496,-3.2625806e-08,0.018583564,-0.060389407,-0.05313355,0.007240599,0.008315936,0.010721636,-0.048205983,0.028990952,0.0066513056,0.023228746,-0.026141338,-0.024859803,0.050678924,0.087317675,-0.04317679,0.00464116,0.13796738,0.08608584,-0.010960502,0.0058536236,0.08415528,-0.039843496,-0.0014819986,-0.015893051,0.03438938,0.013321364,0.0011471022,0.03401562,-0.013765351,-0.09325306,-0.011222722,-0.043777145,-0.0074008415,-0.0711784,0.023992246,0.060598038,0.024580302,0.030518377,0.0016737769,0.039402314,0.05070976,0.028008886,-0.042442255,-0.020710863,-0.03228946,-0.031756587,0.038197435,0.07236189,0.00030313357,-0.00738955,0.034663104,-0.029861657,0.07628926,0.031254083,0.05169034,0.0114757465,-0.003662732,-0.012007948,-0.013684658,-0.08334189,0.081041366,0.11248388,-0.081458054,-0.043868296} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:44.482999+00 2026-01-30 02:01:10.409074+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1661 google Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB 1 t 1664 Go Karts Mar Menor unknown Muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante y divertido, desde curvas a fondo, rectas largas y curvas cerradas, yo recomiendo ir de noche porque parece que estas en el gran prix de barehin, hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les vendría nada mal, y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando para arriba y ellos la colocaron y me quedo muy buen video, muchas gracias por hacerme disfrutar todos estos años muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante y divertido, desde curvas a fondo, rectas largas y curvas cerradas, yo recomiendo ir de noche porque parece que estas en el gran prix de barehin, hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les vendría nada mal, y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando para arriba y ellos la colocaron y me quedo muy buen video, muchas gracias por hacerme disfrutar todos estos años 5 2025-08-03 00:52:39.833374+00 es v5.1 O2.03 {R3.01} V+ I3 CR-N {} {"O1.02": "hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les ", "O2.03": "Muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante", "P3.02": "y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando "} {-0.029728683,-0.02057955,0.014410677,-0.106905,0.008479053,0.004310419,0.027740227,0.06875893,0.041235793,-0.013290159,0.03500559,-0.0067121675,-0.049017884,-0.027929317,-0.011733961,0.024337556,-0.019604985,-0.00022422588,-0.034573957,-0.010910127,0.1175994,-0.060253017,-0.06982898,0.101459295,-0.0668377,0.029289782,-0.015433483,0.008776006,-0.07921776,-0.12815507,-0.023882132,0.034544576,0.10220589,-0.0033617555,0.0074129403,-0.03610013,0.020849999,-0.0719183,-0.100222506,0.07403298,-0.036231592,-0.046345223,0.01912402,-0.036055084,-0.00385494,-0.07239706,0.08396738,-0.016326746,0.04476458,-0.07011129,-0.061054975,0.016803773,0.01299457,0.017748635,-0.056709886,0.004665813,-0.078916445,0.020181002,0.15126242,0.06439842,-0.008934931,-0.005877965,-0.031245494,0.0547531,0.049615856,-0.06669037,0.07125394,-0.011379876,-0.036664255,0.113088615,0.040825006,-0.0100788,-0.01984854,-0.01640525,-0.05231747,0.066774495,0.0015088887,-0.02918568,-0.011980904,-0.10384289,0.0723115,-0.03399257,0.038206648,-0.10170317,-0.022810312,-0.012870579,0.0074917027,0.02395711,-0.0010755511,-0.0724391,-0.040452205,0.07180214,-0.09109627,-0.014766028,-0.004294219,0.06368316,0.04090352,-0.14467369,0.0040494143,0.05686298,0.09557326,0.0032918232,0.0659148,0.04520545,-0.044230655,0.03489698,0.04471059,0.018633066,-0.0342895,-0.0063621197,-0.034056038,0.033277612,-0.023303883,-0.007910602,-0.058403347,-0.039764002,-0.073177226,-0.020965062,-0.051131107,-0.052751828,-0.0009799021,-0.04403437,-0.03809028,-0.008007355,0.022512242,-0.030003475,0.058474638,1.6486517e-32,0.0060552717,-0.02208979,-0.070358835,-0.014774034,0.032537077,0.005476452,-0.055427924,0.028786851,-0.037010122,0.03865422,-0.010797988,-0.010151237,-0.021665523,-0.031974413,0.13642168,-0.04034344,0.010485765,-0.032059234,0.018924689,-0.00038051044,-0.015153649,0.023435012,0.010884026,0.012658199,-0.011086212,0.10700441,0.032940753,-0.07014786,-0.048499838,0.0694798,-0.024747573,0.06720177,0.01989422,-0.017540231,-0.00015173637,-0.04377829,-0.018493278,0.02726318,-0.04346559,-0.027465496,-0.019585202,0.046874795,-0.11084578,-0.016923675,-0.018553197,-0.06808222,0.035229202,0.052515496,0.044418946,0.05888353,-0.0508674,-0.03838847,-0.03265372,-0.09095754,0.026874024,0.07866171,-0.007462648,0.0078103757,-0.0031712935,0.012018774,0.025775414,0.033872124,0.020972835,-0.05911744,-0.11427093,0.0056472346,0.039958626,0.027787486,0.09204524,0.033048984,-0.061506018,-0.030908728,-0.027141795,-0.04018563,0.08721872,0.023646053,-0.0058871466,0.045025025,-0.024658049,0.029735412,-0.06631042,-0.07494492,0.08633256,0.03428489,0.11463668,0.056981593,0.036242615,0.079369575,-0.009581842,0.10481688,-0.056921203,0.0743434,0.04981626,-0.067043014,0.029521387,-1.5656884e-32,0.028166931,0.07498247,0.0029210844,0.012502601,-0.03511305,-0.017031945,0.05370798,0.023756005,0.045085713,-0.06583908,-0.055566806,-0.073327236,-0.004171529,-0.07112155,-0.04186871,0.0012323922,0.0012663435,-0.09816629,-0.08649451,-0.052580487,0.0056322855,0.073470965,0.035819907,-0.025787143,-0.020584593,-0.08769391,-0.00015680977,0.083767846,-0.06710864,0.017169757,0.07897385,-0.04629506,-0.0041087195,0.09104719,-0.039780438,0.025805231,0.09376879,0.031217419,-0.015394637,0.002253411,0.025226228,0.103260204,-0.053136174,-0.0765792,0.0014762976,0.03203134,-0.0129359625,-0.05713903,-0.012956762,-0.06432921,0.071039066,-0.029326921,-0.04612017,-0.017256638,0.018708222,-0.06521746,-0.031638198,-0.061850697,-0.06812111,-0.017424822,0.069576845,-0.029481998,-0.039564155,-0.11164755,0.092261076,-0.02653926,-0.0495795,0.04592574,0.027156334,0.016194034,0.12258365,-0.009738145,-0.09393115,0.05144076,0.004951348,0.016231373,-0.079030916,-0.007846325,0.03619091,0.013024165,-0.06226165,-0.03147023,-0.027886124,-0.021130564,0.024788208,0.060218934,0.023879593,0.037369546,0.031285997,0.043161303,0.04769744,0.03279796,-0.03953007,0.014002931,0.0056379135,-6.084116e-08,-0.030593622,-0.017445095,-0.06891568,0.0073983073,0.056467094,-0.049553405,-0.0002022706,0.018643705,0.056395635,-0.069214284,0.09417178,-0.024895623,-0.015528008,0.028430425,-0.011854906,0.08869187,0.049917493,0.053074513,-0.019504715,0.0074563976,0.08707722,-0.024485994,-0.012252491,0.028278125,0.030836212,-0.010749838,-0.00976058,0.027059576,-0.03287665,-0.03790188,-0.015307506,-0.036962196,-0.0025066487,-0.1261359,0.052030887,-0.007708374,-0.024639169,0.03746457,0.022799177,0.008270808,0.0641418,-0.014285983,-0.027900875,0.020544738,-0.07858119,-0.043679424,-0.032068834,-0.034679044,-0.0028710514,-0.017243158,-0.06332606,-0.065180264,0.0034658257,0.024881292,0.07567643,-0.06789041,0.064815074,0.004989576,-0.05430325,-0.0051423204,0.098439984,0.08519991,-0.008896267,-0.06869516} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:46.750086+00 2026-01-30 02:01:10.22452+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1710 google ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB 1 t 1713 Go Karts Mar Menor unknown Excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros 4 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {E1.04} V+ I3 CR-N {} {"O1.05": "Excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo", "V1.02": "le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros"} {0.061674453,-0.0056873322,-0.049541388,-0.024178188,-0.08178086,0.052691933,0.027401738,-0.006702534,0.021988144,-0.02328126,0.05452043,-0.08171931,-0.052027177,-0.030319074,0.038980503,0.04762455,-0.009842342,0.091068536,0.014633079,0.003923222,0.083805844,-0.07788751,-0.101709306,0.07576519,-0.027918974,0.008294943,0.02174907,-0.05000591,-0.05797785,-0.063664906,-0.018601488,-0.040860325,0.11480292,-0.058019284,0.02544743,-0.100713916,0.05981948,-0.051390346,-0.052831825,0.07425015,-0.053263877,-0.039600167,-0.032710783,-0.085927084,-0.010738738,-0.027078789,0.014378999,0.094313845,0.06173962,-0.004091182,0.006484888,0.044786025,-0.034007173,-0.03430351,-0.015584732,-0.029214138,-0.024013871,-0.003290772,0.08384974,0.10025616,0.025665944,0.0850412,-0.09276127,0.014070221,0.019316044,-0.026888918,0.04370683,-0.050816994,-0.109942265,0.048444983,0.034505304,-0.03341353,0.025052434,-0.05753461,-0.0020070793,0.028173296,0.060224302,-0.07169041,0.03812213,-0.024484357,0.02476531,-0.0023550484,-0.05833616,-0.04988572,0.0183056,-0.03856076,0.0034633102,0.0037707633,0.028293863,-0.006336453,0.011863242,0.07754585,-0.034058437,0.026463518,-0.03288436,0.025302228,0.03681347,-0.023218099,0.049836263,0.015634144,0.058298025,0.04665688,0.002064278,-0.0030238375,-0.044689994,-0.0303185,0.045111652,-0.0004474437,0.031819645,0.08331243,-0.10251316,-0.029379016,-0.057588264,0.0065169805,-0.10232901,0.022132225,-0.057009757,-0.14097916,0.0074625514,-0.0722135,0.075240724,0.025312299,0.019807225,0.04449145,0.049218643,-0.04755805,0.047926765,7.235212e-33,-0.044018354,-0.030591154,0.07996858,0.0048732855,-0.03832984,0.050797712,-0.042417157,0.020550556,0.06346047,-0.02075982,-0.08093496,-0.050787408,-0.00045680584,0.038802534,0.03184643,-0.01187911,0.029243832,-0.02133699,0.08979113,0.087194845,-0.05173619,0.006330095,-0.0066798744,0.065956704,-0.0007015782,0.054047342,-0.024382655,-0.004503949,-0.05001589,0.07942776,-0.002712009,-0.02229082,-0.020804007,-0.037468273,-0.05831564,-0.011858608,0.055802036,0.055486,-0.022297325,-0.01251756,-0.042239085,0.023546578,-0.0011483186,0.049183097,0.037022986,-0.00540688,0.088962816,0.0029625485,0.0023767154,-0.0059845042,-0.071206816,-0.06409583,-0.092697985,-0.03309572,-0.016782047,-0.0012212412,-0.1332393,-0.025607694,-0.04110714,-0.07670669,0.0642479,0.023170507,0.014833312,0.0014198505,-0.033502337,0.057191122,0.09015922,-0.024885915,0.06059667,0.04847979,-0.06930205,-0.0796731,0.071912825,-0.018834686,-0.001160754,0.01391407,0.060596567,0.0007438044,0.07074838,-0.030702773,-0.0020432656,-0.02100501,0.10628294,-0.0073521095,0.06840949,0.039523914,-0.0058760718,0.03995348,0.026335038,0.08890378,0.0021403716,0.038581163,0.0021072445,-0.03020633,0.09138356,-9.722096e-33,0.040679544,0.06611346,0.017964488,-0.004972656,-0.055888556,-0.002746,0.035893764,0.041017428,0.0068217176,-0.013978962,-0.017536854,-0.13416855,0.06657999,-0.023351785,0.00945133,0.13152698,-0.018099517,-0.03550129,-0.052119244,-0.013382907,-0.056857254,0.011021265,0.021896496,-0.009775786,0.014512547,-0.09101848,0.0057066823,-0.028978998,-0.06547061,-0.022047848,0.03777569,-0.06664444,0.065873414,0.04034961,-0.07028731,0.018047197,-0.0014350255,-0.02729757,0.030886486,0.08105547,-0.027178362,0.015104935,0.026452793,0.00920667,0.022380974,-0.0037453817,0.014580671,-0.12922251,-0.018756049,-0.08547248,0.075152084,-0.042643443,-0.11353399,-0.02877229,0.0070438855,0.017044634,-0.047784857,-0.028133623,-0.04249686,-0.031559475,0.006901541,0.00041905808,-0.0053369366,-0.06032572,0.07359226,-0.06159994,-0.06413161,-0.010795226,0.026822872,0.029903471,0.061435364,-0.014900776,-0.0820049,0.041096814,-0.12571326,-0.021518033,-0.1481844,-0.03946182,0.02946633,0.05467175,-0.081628665,0.02793858,0.04699645,-0.04713873,-0.050548814,-0.04997716,0.01876576,0.09837988,-0.02123665,0.04859386,-0.0051127067,-0.007951852,0.008098051,-0.02673381,-0.013688769,-3.9913452e-08,0.041200638,-0.03882457,-0.022366824,0.030825289,-0.020139951,-0.042427916,-0.0155334985,0.02169774,0.0381886,0.06210325,0.015894884,0.030071368,-0.08471999,-0.033322364,-0.048537195,0.001532902,0.0790039,0.014350913,-0.0067791464,-0.03508055,0.08782927,0.049794827,-0.114035234,-0.051390294,0.0455517,-0.012379058,-0.0103525305,0.06728452,-0.004389955,-0.0071996273,0.017782424,-0.021517152,-0.029155767,-0.13901933,-0.028993623,0.020131761,-0.006844114,-0.0185696,-0.0054181037,-0.07065919,0.05383791,-0.043340743,-0.14528474,-0.008235656,0.01645556,0.0025698335,-0.07360947,-0.023247698,-0.057188652,0.06424668,-0.02433277,0.00014124232,0.059228458,0.029351763,0.10816993,-0.03888225,-0.03757583,0.017507609,-0.06058312,0.017711038,0.065680586,0.05434936,-0.0032265557,-0.03412835} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:51.98493+00 2026-01-30 02:01:10.413316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1684 google Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB 1 t 1687 Go Karts Mar Menor unknown Honnêtement je met 1 étoile 18 euros les 8 minutes . A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez honnêtement je met 1 étoile 18 euros les 8 minutes . a bruxelles c'est hyper moins chère et la belgique, c'est le pays de la taxe.... vous abusez 1 2025-08-03 00:52:39.833374+00 fr v5.1 V1.01 {V1.02} V- I3 CR-N {} {"V1.01": "Honnêtement je met 1 étoile 18 euros les 8 minutes", "V2.05": "A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez"} {0.014694275,0.057946656,0.06872669,-0.036323663,-0.042877197,0.05999622,0.047958143,0.09255533,0.06635468,-0.027645167,-0.07547843,-0.10554527,-0.02926075,-0.093015924,-0.059491843,-0.06395504,-0.04935235,0.0067472365,0.0009966749,0.05755801,0.043259956,-0.059665255,-0.011910218,0.06394237,0.03414911,-0.03677076,0.060109843,-0.012183952,-0.010106241,-0.03960967,0.084101915,0.033305023,-0.008598289,-0.04805238,0.04774065,-0.012663833,0.056583967,-0.12834498,0.00970444,0.009159043,-0.040603455,-0.026064228,-0.07202703,0.006497118,-0.03405438,0.02299606,0.057984352,0.10799306,-0.054367926,0.04525622,0.012420767,0.029087212,0.06539444,-0.08007131,0.007767718,0.043598026,0.008394991,0.0063679107,0.089426994,-0.005539084,-0.030423397,0.011132404,-0.0065515633,0.02750292,-0.06581749,-0.046100352,0.017040953,-0.06719741,-0.08063753,0.05132304,0.025421299,-0.067641094,-0.087618165,-0.026434781,0.03766032,-0.013183167,-0.030613562,-0.036256865,-0.009311888,-0.1259752,0.051085092,-0.016158257,0.06628692,-0.011719565,0.07437695,-0.12426922,0.12581997,0.13860756,0.07789707,-0.012046103,0.011033227,0.04068428,-0.071002975,-0.0049235877,-0.013696735,0.011558563,0.07657118,-0.008875356,0.07353985,0.041568838,0.022674182,-0.012908216,-0.0038788375,0.0825334,-0.039422672,-0.007596352,0.026916414,0.012796189,-0.021267714,-0.010437948,0.024659773,-0.065154515,-0.0017131168,-0.097421326,-0.004996756,0.12901923,0.039174646,-0.116292275,0.018498398,-0.056067485,0.06297977,-0.015221085,-0.0043492867,-0.0024151031,-0.027768543,0.039852526,0.024321193,1.2635626e-33,-0.109362535,0.0114411665,-0.0284139,-0.0746333,-0.05304028,-0.023929412,-0.044771086,0.053689234,0.0007111791,-0.02782697,-0.06505836,0.012530471,0.011553289,-0.03714172,0.0043119867,-0.016891439,0.10877209,0.013798879,0.07058033,-0.050490383,-0.08342484,-0.05200964,0.06833368,0.070521735,0.0027225502,-0.041529067,0.016204782,-0.035666477,0.03489854,0.015731527,0.021056846,-0.0036697017,0.02531158,0.036749087,0.011917972,0.046306383,0.07264044,0.09470288,-0.020134335,-0.0014789309,0.008739096,-0.005049034,-0.0022965514,-0.065462075,-0.033668395,0.047388177,-0.05545573,-0.07977084,0.04698322,-0.038685307,-0.0010587166,0.036615133,-0.04891626,-0.05811374,0.016723095,0.09090776,-0.08781143,0.019458568,-0.021998964,-0.03350107,0.0449062,0.043720696,0.023792936,-0.013365256,-0.03763507,0.014448712,0.065141566,0.04112051,0.08199675,-0.08426233,-0.121080875,0.01262209,0.13608962,-0.023205934,0.0102830995,0.078794785,0.0037389484,0.010243137,-0.042662445,0.061011586,-0.036880016,-0.07193025,0.033025686,-0.081943996,0.066861875,-0.013995522,-0.01160763,0.030390771,-0.042759288,-0.012691134,0.0061707874,-0.041084796,0.025565464,-0.031570066,-0.037341308,-4.0679385e-33,0.0034763205,0.038818397,-0.0129097365,0.026587896,0.010489219,0.07188874,-0.01593822,0.055012524,-0.053848922,0.05313551,-0.02438062,-0.08042729,-0.006872551,-0.0872952,0.00550307,0.0048508956,0.016829288,-0.024898285,-0.045965344,-0.021657752,-0.06268952,-0.04780213,0.011142833,0.050593734,-0.07236839,-0.006530841,0.05060389,-0.026414389,-0.0015962115,0.055415794,0.0123278685,0.044678543,0.03165618,0.028119711,0.041606855,0.062051233,0.06574236,0.06432151,-0.0082002375,0.048836146,-0.043238424,0.0014582293,0.009380109,-0.012572343,0.101576746,-0.03727739,-0.09093672,-0.115716785,-0.12988125,0.024988156,0.03902006,0.015154296,-0.03484069,-0.04527427,0.0011248497,-0.015620961,-0.015538639,-0.030674761,0.0025854616,0.0037941332,0.07749995,0.06693313,-0.007804702,0.048302207,0.07980109,-0.009400267,-0.17070891,-0.017476168,0.023724277,-0.00066114566,0.04369759,0.018817304,-0.06086453,0.0083153825,-0.031773597,0.040984645,0.026240706,0.02741092,0.017671714,0.03800416,-0.055557817,0.023111906,0.023438895,-0.02924187,-0.023083359,-0.059744902,0.0020718558,-0.004065035,0.0087260995,-0.07339204,0.026681302,-0.013473167,0.016680978,-0.010881092,0.04016798,-3.1827128e-08,0.062171765,-0.027090251,-0.068271026,0.02210778,0.055279776,-0.11252433,-0.099180624,0.013436436,-0.06696588,0.045698244,-0.017044896,-0.011756577,-0.027827034,0.015406569,-0.056115977,0.076673135,-0.0772944,-0.036151852,-0.015071542,-0.015613987,0.03432557,0.018383646,-0.0751438,-0.024811864,-0.0016126225,-0.02033888,-0.0041878293,0.027792567,-0.01780164,-0.11246248,0.018144151,0.084637485,-0.056539886,0.02701275,0.009118041,-0.0436121,-0.013908611,0.031047115,-0.037298676,0.14009179,0.027934799,-0.03805237,-0.044721182,-0.10306563,0.019155238,0.0027485997,-0.060196854,0.035365917,-0.007842202,0.04721027,-0.009464536,0.03270178,0.020158114,0.0018908562,0.056921985,0.032738958,-0.016988946,-0.011481874,-0.028176105,-0.043334268,0.01868884,0.048505183,0.04238195,-0.07278837} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:53.381381+00 2026-01-30 02:01:10.314716+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1711 google ChZDSUhNMG9nS0VJQ0FnSUN1bXNTdWN3EAE 1 t 1714 Go Karts Mar Menor unknown Muy simpático et muy adaptado para los peques! muy simpático et muy adaptado para los peques! 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {A3.02} V+ I2 CR-N {} {"P1.01": "Muy simpático et muy adaptado para los peques!"} {-0.0035068695,-0.021083737,0.005588701,-0.059180234,-0.0064685224,-0.009764418,0.07698399,0.018911958,0.02681156,0.0052524433,0.08036904,-0.017901199,0.0557174,0.015397588,-0.008383835,0.016540986,-0.11827636,0.06252199,0.034815323,0.04649607,0.1149661,-0.0078094173,-0.05999116,0.07422229,-0.12249685,-0.03548741,0.0028625883,0.019486263,-0.012161602,-0.039545275,0.022630578,0.07597072,-0.034993067,-0.047284655,-0.02172199,-0.06400086,0.0012214564,-0.10598481,0.009857843,-0.0065090465,-0.09782288,-0.0034699193,-0.037928954,-0.019605648,-0.08707113,-0.09143197,0.018461317,0.033624228,-0.051124886,-0.0020586213,-0.035232563,-0.026259221,-0.012897623,-0.05158673,-0.009672165,-0.0033437647,-0.087203145,-0.009738266,0.04605498,0.021858983,-0.036691375,0.06212991,-0.027558444,0.037601877,-0.060703732,-0.040226273,0.057128422,0.0011835652,-0.0713249,0.05595792,0.013352415,-0.039089177,0.010452914,-0.022391375,0.01048127,0.06862062,0.011468129,-0.009760754,-0.030322865,-0.029272309,-0.03238864,-0.01309073,-0.051510457,-0.034575183,0.043120727,-0.006734739,-0.03807771,0.04674593,-0.014657933,-0.05888569,0.04534216,0.0026443158,-0.036913306,0.020553404,0.023794264,0.060114503,-0.021681324,-0.10365393,-0.031999998,0.052540645,0.015246799,0.0900997,0.10563896,-0.010576781,-0.06536436,-0.02113133,0.011626844,-0.082888015,-0.016026312,-0.029129243,0.0017133318,0.00203339,0.02980047,0.017007682,-0.06586783,0.019597143,-0.016168987,-0.04188576,-0.020349832,-0.04919946,0.025401037,0.052986424,-0.11911216,-0.0001235307,0.050381057,-0.015642408,0.059815593,4.0773616e-33,-0.10275455,-0.031998888,0.029015083,0.08737332,-0.016419386,-0.020838376,0.006358888,-0.011706627,-0.0430992,-0.005608725,-0.056114558,0.07852367,0.03156673,0.11758865,0.009521833,0.032844078,-0.02657776,-0.025957536,0.089157395,0.060570337,-0.033166207,-0.020910863,-0.005106841,0.03269533,0.035354532,0.07412314,-0.043380138,0.009476384,-0.017396627,0.05012486,-0.036818054,0.03488452,0.00068554387,-0.015088899,-0.07752568,-0.045105964,0.023344804,0.022160346,-0.02523028,0.029726971,0.093678914,0.03761154,-0.059815492,0.002387918,0.010815816,0.0032790124,0.063895606,0.067649156,0.045957394,0.05180441,-0.06270451,-0.073121585,-0.07292152,-0.058458794,0.015364353,0.004503097,-0.056257922,0.019191567,-0.009040912,-0.05561583,0.05642194,-0.072293594,-0.016756995,-0.011829112,0.052246943,-0.0001796163,0.0022848207,-0.0008031801,0.055024948,0.08608385,-0.03836747,-0.014765921,-0.042822674,0.033823412,0.013831713,0.0027749683,-0.09892248,0.04110574,0.07206803,0.0062326402,-0.11038563,0.010785103,-0.009480837,0.003311448,0.071864724,0.012424027,0.05113772,0.077746555,-0.022663238,0.04335213,-0.028418465,0.040421262,0.033609178,-0.054119244,0.04083795,-5.9411777e-33,-0.027187802,-0.017517285,0.023442194,0.07923049,0.024443157,0.025125558,0.06331265,2.588791e-05,0.008184418,-0.06984052,-0.1246188,-0.10309006,0.0689253,-0.1105076,0.023327159,0.11256439,0.010372832,-0.021105636,-0.054121006,0.028100673,-0.031666633,-0.012429688,0.072851285,-0.030251687,0.022852557,-0.0059064673,0.0343093,-0.023524202,-0.03130445,-0.007499073,-0.066274576,-0.003031735,-0.00978981,0.08500617,-0.008877119,0.079081416,0.031745613,0.10760896,0.030573921,0.044371333,-0.07127805,0.080465704,-0.0092560295,0.07532909,-0.0061036414,-0.0063986606,-0.008131761,-0.17032902,-0.055124722,-0.06057272,-0.027073931,-0.030042624,-0.009312467,-0.078900464,0.04481976,0.02163934,0.012546301,-0.07979547,-0.04104627,-0.04392008,0.032404337,0.053680044,-0.049465675,-0.027404385,0.07507556,0.005643252,-0.019605402,-0.022371426,0.017488744,0.020825109,0.14338072,0.0005656875,-0.07716012,-0.026689563,-0.090588704,-0.0070032813,-0.06645383,0.07915803,-0.021310387,0.06730957,-0.0029609432,0.035704136,-0.0076915934,-0.012165813,-0.051469646,0.04219171,-0.037637446,-0.009025353,0.059073836,-0.008041335,0.018477311,0.04599949,-0.034820847,0.00021801422,0.06587195,-2.4999782e-08,-0.015727762,-0.059072345,-0.08975297,0.030647816,0.009282237,-0.0380586,-0.10859766,0.018022222,-0.05430343,0.0947064,0.063706584,-0.052219722,0.04115541,0.14735718,0.04243847,0.0728803,0.059692677,0.07587802,-0.041094627,-0.016066408,-0.01251281,0.017609395,-0.00065957947,0.009082837,-0.0002920019,-0.005344402,-0.092539646,-0.017193254,-0.0230937,-0.0013048884,0.00084240246,-0.024052309,-0.09970894,-0.066320956,-0.086318865,-0.023073088,0.025618784,0.021140696,0.015683854,0.008334122,0.0729895,-0.008801254,-0.03915851,-0.04573621,0.0742506,-0.100447975,-0.06231859,0.023506267,0.02691785,0.116208054,-0.010620185,0.028434854,0.008144795,0.012553297,0.024099795,-0.026671087,0.021073893,0.035091445,-0.042635195,-0.030856073,0.035079885,0.14659531,0.059617244,-0.07649974} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:03:56.553639+00 2026-01-30 02:01:10.417168+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1686 google ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB 1 t 1689 Go Karts Mar Menor unknown Una actividad divertida para niños y mayores. Para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto. una actividad divertida para niños y mayores. para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto. 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"A3.02": "Para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto.", "O1.05": "Una actividad divertida para niños y mayores."} {0.014926105,0.050941397,0.015314326,0.02328253,-0.053280454,0.038265508,-0.0040497417,-0.02049986,-0.06480046,0.05301269,0.072712384,-0.07184898,-0.09431491,0.024564685,0.046562724,-0.0005805916,-0.07672685,0.045322746,0.07330909,0.024444563,0.09615167,-0.011309772,-0.057544414,0.06600041,-0.10580551,-0.003406333,-0.014726636,0.011107746,-0.015600719,0.009061506,0.010660344,0.082373016,0.09027641,-0.02128169,-0.019164536,0.017717915,0.06297441,-0.019778665,-0.059154514,0.04422308,-0.056644555,-0.048575383,-0.06437065,-0.039148517,-0.017012041,-0.019721543,-0.041302025,0.040535375,0.010633423,-0.017775225,0.008559824,-0.05078509,-0.0357731,0.010829105,0.01800702,-0.06998521,-0.10887946,-0.022883592,0.15757212,0.05175966,-0.018908404,0.05020851,-0.06364609,0.0139669515,0.010205565,-0.033523194,0.023654914,0.0455011,-0.051410623,0.06617613,0.116854556,-0.054884236,0.027889831,0.01841214,-0.00063444325,0.0071637123,-0.031840734,-0.05049623,-0.059084766,-0.065046735,-0.066900715,0.002962495,-0.02105949,-0.056479637,-0.01997178,-0.00083649857,-0.02734067,0.014700805,0.004583571,0.03452381,-0.070932336,0.036975015,-0.02764377,-0.009660096,-0.008162025,0.023350641,-0.048770025,-0.12848689,0.04428063,-0.0065465826,0.07023356,0.0123187415,0.072588325,0.053988736,-0.02719087,0.016618371,-0.013125696,-0.08513685,-0.026405297,0.063896336,-0.075829044,-0.009538307,0.0050351867,0.00789144,-0.05156571,-0.07356914,-0.015169213,-0.045877382,-0.012906602,0.0058931145,0.021184565,0.054703526,-0.013111515,-0.0053486377,0.033711806,-0.058283262,0.059929162,6.743657e-33,-0.085687436,-0.040099274,0.00046554403,0.10962446,0.06832913,-0.038080353,0.0011861918,-0.12819311,-0.010601841,-0.006397929,-0.020415347,-0.0070803957,-0.03626443,-0.0005648978,0.13310488,0.084339455,0.030971263,-0.0040479517,0.049216304,0.09128865,-0.0477822,-0.012230795,0.014544433,0.00028454192,0.008266919,0.022683334,0.025557531,-0.03649367,-0.058283668,0.02541225,-0.0033208996,-0.011520274,-0.0075837183,-0.036584727,-0.04525996,0.0042191637,0.06215544,0.056101393,-0.06414259,0.014297545,-0.004394972,-0.061619557,-0.04097117,0.07797578,0.027139816,0.029568234,0.0804503,0.003061069,0.0055640712,0.06499669,-0.03364569,-0.058125008,-0.051475957,-0.12832093,-0.004768477,0.063464396,-0.037161797,0.05401457,-0.07296164,-0.062214695,0.08662023,-0.08775746,0.006476385,-0.057472236,-0.026908366,-0.07671882,0.08043968,0.056904905,0.10841745,-0.038037516,-0.09869192,-0.035347417,-0.04688782,-0.0104196,0.06686361,0.008917527,0.054087617,0.028391993,-0.011971515,0.020566527,-0.064917,0.007940343,-0.002946278,-0.024033962,0.095710315,0.006143022,-0.0016996465,0.041111276,-0.028215965,0.07119016,0.026335008,0.030108454,0.007026684,0.0016634249,0.08256633,-8.9981514e-33,0.0013451701,0.018023446,0.036538634,0.05434777,-0.001691691,0.0030610696,-0.03321726,-0.0014639924,-0.005482875,-0.10070208,-0.17199422,-0.10990725,0.11619566,-0.07678406,-0.011164035,0.08277468,0.046946403,0.017009828,-0.026232911,-0.057165045,-0.055485196,0.04731236,-0.036271434,-0.008982101,-0.023581112,-0.042020127,-0.046533354,0.012489391,-0.06892384,0.03273246,0.034847543,-0.09449901,0.013300471,0.043533117,0.0056359293,0.011740259,0.03437662,0.08308639,-0.0077613047,0.080633976,0.017092759,0.056972943,0.019366782,0.0026928165,-0.033472303,0.054090653,0.021701328,-0.082999066,-0.051971987,-0.038993075,0.1118291,0.0065130447,-0.10117081,-0.057872143,0.049307004,-0.051083025,0.03002504,-0.058529906,-0.04274525,0.037029516,0.04326891,-0.018337004,-0.10645556,-0.0023340897,-0.0349683,-0.027948437,-0.08016122,-0.06695376,-0.036227603,0.011886876,0.053321876,0.011980359,-0.06389219,-0.011472873,-0.07619773,-0.10222799,-0.027204622,0.02624284,0.02984627,-0.005223512,-0.03605415,-0.016602706,-0.02918857,-0.0077131693,-0.022298483,-0.042652946,0.0685938,0.029979741,-0.02264191,0.03530768,0.0633624,0.052853614,-0.05026109,-0.03393709,-0.030378276,-3.7193864e-08,0.08259981,-0.011509301,-0.0729376,0.012263006,0.018319929,-0.005803712,-0.015307113,0.047989957,0.06605855,0.071307324,-0.013415263,-0.008961231,0.08640195,0.05738747,0.021116927,-0.02444661,0.08416557,0.07036607,-0.040254682,0.0029926794,0.07805842,-0.009689341,-0.08357292,0.08146547,-0.023191586,-0.055497058,-0.048391685,0.022550084,-0.009814852,0.020162286,0.020365512,0.0082431175,-0.075158656,-0.056586172,0.009319267,0.008513044,-0.03085757,0.02748708,-0.00491644,-0.0037164597,0.0817022,-0.023119422,-0.040625956,-0.006294782,-0.076305315,-0.03285554,-0.03105411,0.026411463,-0.032702416,0.09003949,-0.018431365,-0.026813395,0.056058113,0.004140264,0.084778175,-0.020850742,0.04161341,0.012094269,-0.007011752,-0.0063149105,0.055851765,0.10932546,0.0025898677,-0.041216884} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:04.956043+00 2026-01-30 02:01:10.322798+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1687 google ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB 1 t 1690 Go Karts Mar Menor unknown Espectacular la atención al no ser de Murcia no sabíamos de que teníamos que reservar en este caso hicieron una excepción y no permitieron correr, así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien. espectacular la atención al no ser de murcia no sabíamos de que teníamos que reservar en este caso hicieron una excepción y no permitieron correr, así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien. 5 2025-01-30 01:52:39.833374+00 es v5.1 P3.02 {R3.05} V+ I3 CR-N {} {"E1.03": "así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien", "P3.02": "Espectacular la atención al no ser de Murcia no sabíamos de que teníamos que reservar en este caso h"} {0.03402685,-0.030378083,-0.023126034,-0.05177724,-0.07880433,-0.028131867,0.094357364,0.068870045,0.0061942036,-0.015739746,0.09105246,-0.02450251,-0.029365426,0.04506596,0.00011329962,-0.01536489,0.0042349133,0.045452658,-0.012626547,0.058193903,0.15883443,0.005369903,-0.019350946,0.08104663,-0.120418,-0.02588094,-0.015106236,-0.046141796,-0.017277211,-0.1354698,0.017154198,0.09738319,-0.020350052,-0.03621173,0.0026654536,-0.015353542,0.04065142,-0.06006941,-0.025666451,0.070554964,-0.07978097,-0.022110466,-0.100019395,-0.058639202,0.00025161164,-0.04274137,0.02557811,0.03613243,-0.0012076326,0.008440541,-0.05891097,-0.09142976,-0.060547203,-0.060308095,-0.021299997,-0.059796575,-0.06405878,-0.01708891,0.051938783,0.020302052,0.09189351,0.013970168,0.030317623,0.09457351,-0.060567882,-0.046748493,0.051719148,-0.07572238,0.00613805,0.022406174,0.008904069,-0.09775458,0.028408373,-0.007762651,0.0044355523,0.013580012,0.010595641,-0.03884106,-0.0024232136,0.014938781,0.018658996,0.039357763,-0.03848421,0.006236681,0.07316883,0.025292225,-0.0121235205,0.02202321,0.0026167843,0.0137248775,-0.0131017435,0.010339136,-0.12353818,-0.061662935,-0.0030944087,-0.048089758,-0.04607774,-0.06525825,0.033578873,0.01925251,0.006727343,-0.014590966,0.059092082,0.09826792,-0.09721114,-0.08093371,0.038837027,-0.06132954,-0.048892975,0.043610845,0.002441281,-0.019369205,-0.021224152,-0.0036648426,-0.01354377,0.057859752,0.021884076,-0.062934004,0.020843595,-0.0069752433,-0.005592583,-0.03541308,0.012041248,-0.052636623,-0.024657497,-0.022378463,0.07339117,1.207153e-32,-0.04042904,-0.046616152,-0.0068203723,-0.012856463,0.053697538,0.047413107,0.0056165177,0.008971581,-0.010568964,-0.035253204,-0.0366869,0.04686949,0.031139122,0.112774946,-0.032154314,0.0022352948,0.06594766,0.06407904,0.017312925,0.006004663,-0.0678163,0.008845729,-0.014423505,0.017745383,-0.078632146,0.013600408,-0.12196109,0.017736701,-0.004926377,0.028831385,0.026279848,-0.014888305,0.0048328787,0.011952334,-0.06523412,-0.011614448,0.03772939,0.03986281,0.046825122,-0.04978034,-0.021746159,0.04405787,-0.0033419363,0.026295839,-0.01941874,0.024137104,-0.017235288,0.005842264,0.036051113,0.031239768,-0.006754451,0.0030256677,-0.02001418,-0.05168259,0.02665019,0.025596326,-0.09446439,0.062131327,-0.061450437,-0.0775285,0.00018998142,0.06407438,-0.029244976,-0.01259904,0.030542716,-0.0482761,0.0043585515,0.0052107335,0.06584705,0.024568172,-0.104258135,0.030281551,-0.033978097,0.0671263,0.05515863,0.015575808,-0.051387917,0.03572491,-0.018302286,0.066186465,-0.034250103,0.057528056,0.030388156,-0.018843455,0.037351895,0.06769907,0.052902393,0.093759134,0.028805431,0.0850422,-0.01726386,0.08283554,-0.04148059,-0.03994875,0.07119021,-1.4222347e-32,-0.000596866,-0.037184365,0.047776062,0.03875899,-0.0421075,0.042350218,0.019359365,-0.0017454185,-0.025842566,-0.10616239,0.025338005,-0.06954843,0.045388546,-0.041412253,0.022697791,0.03868291,-0.063260205,-0.03487074,-0.07608194,-0.012656684,0.005442176,0.07802505,0.044776436,-0.08045288,-0.13174567,-0.017194757,-0.063241564,-0.042209778,-0.08465738,-0.00060193543,0.010572579,-0.05985146,-0.005122476,0.04406229,-0.09206177,0.017562533,0.0060485196,0.05706179,-0.07181069,-0.046378847,-0.012437541,0.071645714,0.08625947,-0.006369367,0.006481469,-0.030478062,0.03917223,-0.13326153,4.103048e-05,-0.033862866,0.016366951,-0.012012281,-0.03254026,-0.08290497,0.03822549,0.018589467,-0.052542765,-0.12427092,-0.07625702,0.043540005,0.068002015,-0.014552404,-0.06974548,-0.11484282,0.12064711,0.09050008,-0.03108249,0.007263235,0.12311421,0.009114957,0.12563463,0.04517442,-0.07243199,0.01845406,0.038740106,-0.06847504,-0.08671382,-0.035887174,-0.04340041,0.017701296,-0.0059437505,0.002453116,-0.02451007,-0.052486032,0.04372009,-0.01669874,-0.06278857,-0.062726595,0.027109955,0.013962918,-0.043024015,0.031917185,-0.080935575,-0.02075129,0.03032749,-5.2828746e-08,0.00491765,-0.0316346,0.039838605,-0.020720284,-0.008076559,-0.030878676,0.015909206,-0.0012047214,-0.035563707,0.006221306,-0.04285896,0.023365956,0.015405973,0.099455595,0.02845853,-0.001416585,0.1353125,0.060495418,-0.046438005,-0.10365454,0.034308646,-0.022379158,0.017728047,0.034491837,0.019379724,0.004216328,-0.0025049488,0.0075249295,-0.0033398268,-0.0043281806,0.012930081,-0.026553202,0.025927596,0.008479493,-0.08615225,-0.093765095,-0.07533712,0.05089636,-0.07268468,0.050256073,0.05019057,-0.019965775,0.032125436,0.03667347,-0.036497075,-0.0513003,0.042354755,-0.0061604176,-0.039551545,0.04360661,0.003733862,-0.0031260154,0.04557352,0.044961054,-0.1040653,-0.05386849,0.06566682,0.02623065,-0.029209096,0.005398697,0.00766695,0.092420846,0.066965304,-0.097016215} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:11.860521+00 2026-01-30 02:01:10.325767+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1714 google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE 1 t 1717 Go Karts Mar Menor unknown Los monitores muy simpáticos y agradables, los coches para todas las edades y condiciones, la pista e instalaciones muy bien, el precio muy asequible, para pasar un buen rato con los amigos y familiares. los monitores muy simpáticos y agradables, los coches para todas las edades y condiciones, la pista e instalaciones muy bien, el precio muy asequible, para pasar un buen rato con los amigos y familiares. 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E1.03": "la pista e instalaciones muy bien", "O4.03": "los coches para todas las edades y condiciones", "P1.01": "Los monitores muy simpáticos y agradables", "V1.01": "el precio muy asequible", "V4.03": "para pasar un buen rato con los amigos y familiares"} {0.022736592,-0.019628841,-0.06078893,-0.113736786,0.0271256,-0.0052988385,0.06869674,-0.006818846,0.007507825,0.020166406,0.07289407,0.002885489,-0.01841573,0.07042819,-0.00812267,-0.0030796013,0.023766952,-0.03593938,-0.012046643,0.008646344,0.088439085,-0.11085978,-0.073039986,0.07561299,-0.13556086,-0.042328607,0.011153706,-0.0035008097,-0.036474116,-0.053836666,-0.055958353,0.055369467,0.065203,0.011381799,-0.078537025,-0.04478286,0.113407545,-0.08103344,-0.083911516,-0.047260243,-0.123428,-0.012619408,0.025065614,-0.011286004,-0.050941844,-0.092153095,-0.004045918,-0.025571307,-0.03078389,-0.05934793,-0.062639624,-0.02455755,0.014816336,-0.02502583,-0.029644711,0.05178742,-0.050433118,0.004930649,0.043797333,0.08476227,-0.013459625,0.011337548,-0.046078663,0.040037494,0.0021403113,0.008931759,0.030204207,-0.04316041,-0.046395976,0.022495937,0.030945003,-0.07271525,-0.005936106,-0.07372082,-0.011487176,0.040234905,-0.022942532,-0.04532096,-0.02926395,-0.10602951,-0.016092006,-0.0036204343,-0.021308808,0.014363746,0.04109013,0.019728292,-0.049996275,0.050138295,0.020504242,-0.06284562,-0.0028640472,0.073236436,-0.04621286,0.006953719,-0.028964091,0.009903577,0.068454206,-0.075563475,-0.004501285,0.08306088,0.0845192,-0.0020158158,0.06610749,0.006364774,-0.0418206,-0.035569802,0.03227014,-0.044778932,-0.03850138,0.035899688,-0.040098462,-0.0064451257,-0.005192212,0.029959206,-0.04373513,0.023505848,-0.05590573,0.011432748,0.012165252,-0.100413606,0.038723942,-0.014196399,-0.05116479,-0.008601332,0.042172145,-0.017051235,0.02085972,9.3497836e-33,-0.01997799,0.0007165018,-0.044270523,0.05845932,-0.070844,0.106379025,-0.0030174816,0.004336179,0.011717059,-0.044288743,-0.016994702,0.11703348,-0.026042819,0.05265576,0.091317125,-0.030784685,0.006612336,0.021736765,0.041734017,0.019663285,-0.033173487,-0.059717458,-0.03185763,0.012164139,0.043380678,0.026200607,-0.027735464,-0.012817727,-0.04118093,0.050995976,0.0017481005,0.062754,0.04806126,0.02357164,-0.04407489,-0.071331926,-0.01305402,0.04142099,-0.004053319,0.00024234464,0.046124823,0.015655022,-0.06700142,-0.006226283,-0.027916238,0.023383997,0.03450525,0.017147072,0.058546614,0.051018212,-0.10121165,-0.06302548,-0.0613586,-0.05228339,-0.009402064,0.031403884,-0.011872058,-0.007491034,-0.044318978,-0.04913597,-0.0018904776,0.008139462,0.027049385,-0.0103627015,0.0058120578,-0.009531029,0.06768396,0.047229752,0.05329121,0.076196745,-0.11517286,-0.06193053,0.004189783,0.008219805,0.012494119,0.008250586,-0.024247095,0.13051519,-0.018559735,0.04922463,-0.046362415,-0.007148273,0.045991495,0.0066214707,0.0649901,0.06911717,0.049890865,0.015445861,-0.036153927,0.07606549,-0.021664875,0.11321759,0.057884432,-0.035190552,-0.02581789,-1.14534586e-32,-0.060637217,-0.013813515,-0.0114860395,0.011809389,-0.028359564,-0.0049885963,0.03762905,-0.10566817,0.02713992,-0.0342965,-0.094195075,-0.09670481,-0.0012266061,-0.033485502,0.0153952595,0.0891229,0.047531746,-0.09607786,-0.040362135,-0.017115438,-0.010790482,0.0054011308,0.014312919,-0.015804915,0.023542654,-0.06958263,0.00727668,-0.0074594533,-0.041157477,0.030118003,0.00625244,-0.04407335,0.022381587,0.14662929,-0.0231111,-0.004796704,0.09765749,0.072010174,-0.010003197,0.041923273,-0.01637089,0.10126177,-0.02304715,0.011035581,-0.031245148,0.016266188,0.013999267,-0.08970588,-0.10960749,-0.036789376,0.011591642,-0.04752207,-0.027143301,-0.09309657,-0.036497533,-0.017666955,-0.071524516,-0.0024194522,-0.02406063,0.0039756945,0.065448835,-0.051739603,-0.11628566,-0.038197782,0.031772025,0.03482937,0.034124922,-0.026670828,0.06335038,0.029696468,0.11749651,-0.020891923,-0.089434005,-0.05928909,-0.015011447,-0.0029669153,-0.08211664,-0.008355606,-0.04370591,-0.0078561725,0.005060925,-0.008012208,0.066176206,-0.06962923,-0.0030877283,-0.0055065104,-0.0627321,0.054090742,0.065976545,-0.019229215,-0.012955596,0.056932483,-0.06474937,-0.077615365,0.037964616,-4.5690495e-08,0.0064106,-0.09171684,-0.026843475,-0.010271612,-0.0269259,-0.050277866,-0.013630817,0.030003384,0.026525628,0.04099212,0.009878022,-0.10663815,-0.033004694,0.06260145,0.015525188,0.03785509,0.057460766,0.1316692,-0.015688019,0.08674859,0.07503709,0.003964305,0.010275344,0.043399934,-0.004155107,-0.022153111,-0.08479273,0.018745841,-0.01777477,0.06081853,-0.005127768,-0.005094178,0.041602146,-0.09589155,0.062266216,-0.0011636683,-0.039825477,-0.005443162,0.06414184,-0.008002363,0.053638242,0.01308207,-0.10510862,0.033367664,0.02742523,-0.114830896,-0.027549231,-0.041372333,0.008349671,0.019612156,0.016663661,0.022122474,0.035340343,0.026710402,0.030439321,-0.05299386,0.10075362,0.030837294,0.0052634557,0.050040957,0.05009659,0.16001017,0.08147533,-0.09896345} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:22.365879+00 2026-01-30 02:01:10.425964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1665 google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE 1 t 1668 Go Karts Mar Menor unknown Los Karts y el circuito están muy bien. Varias potencias y circuito divertido.\n\nLo que no me gustó fue la desorganización que tienen para atenderte. Hay una única persona tanto para atender el bar como para darte los tickets y la verdad que el proceso es bastante lento.\n\nSi quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo menos ya que una vez haces una ronda, no puedes hacer de seguida otra, tienes que bajarte y esperar una ronda más.\n\nAl final hicimos solo una tanda y estuvimos en el complejo una hora. Duro para los acompañantes y pesado para los conductores.\n\nPor lo demás genial. los karts y el circuito están muy bien. varias potencias y circuito divertido. lo que no me gustó fue la desorganización que tienen para atenderte. hay una única persona tanto para atender el bar como para darte los tickets y la verdad que el proceso es bastante lento. si quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo menos ya que una vez haces una ronda, no puedes hacer de seguida otra, tienes que bajarte y esperar una ronda más. al final hicimos solo una tanda y estuvimos en el complejo una hora. duro para los acompañantes y pesado para los conductores. por lo demás genial. 3 2022-01-31 01:52:39.833374+00 es v5.1 J1.01 {J2.02} V- I3 CR-N {} {"J1.01": "Si quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo ", "J2.02": "Lo que no me gustó fue la desorganización que tienen para atenderte. Hay una única persona tanto par", "O1.02": "Los Karts y el circuito están muy bien. Varias potencias y circuito divertido.", "V3.01": "Al final hicimos solo una tanda y estuvimos en el complejo una hora. Duro para los acompañantes y pe", "V4.03": "Por lo demás genial."} {0.030158825,0.023940615,-0.030138293,-0.09517638,-0.082925476,0.013219101,0.076079555,0.016452719,0.014669499,0.043505795,0.065315574,0.032614227,0.005534307,0.02746808,0.097740754,0.04593559,-0.03431725,-0.024303814,-0.032476433,0.015779842,0.0754085,-0.068647414,-0.094540045,0.038961098,-0.11929233,-0.024295785,0.02995344,-0.0103489645,-0.08432947,-0.13355716,-0.07150629,0.032452043,0.028156567,-0.028778018,-0.059018776,-0.019624265,0.019183615,-0.087566845,-0.057713363,0.067780204,-0.015410812,-0.035570033,-0.0119896205,-0.010509184,-0.016482597,-0.08053435,0.038259916,-0.020329485,0.064210095,-0.05660255,0.012307654,-0.010860861,-0.00036291883,-0.00076313,-0.013657115,-0.0050854133,-0.048212133,0.08542773,0.1373975,0.067938425,0.010933579,0.02423653,-0.044065937,0.032044154,0.002614036,-0.10073187,0.09379806,0.03152666,-0.040717278,0.07725697,0.10002639,-0.066793814,-0.026815597,-0.003523474,0.025506236,0.051388875,-0.013468972,-0.024393309,-0.070954464,-0.060433306,-0.0186423,-0.057512004,-0.05332064,-0.042849366,0.016387776,0.012492272,-0.04831693,0.051716536,0.02968905,-0.02905572,0.01930745,0.08419675,-0.0288297,-0.014560561,0.048972685,0.024405982,0.06965685,-0.08657687,0.015198014,0.04301536,0.14102349,0.08496537,0.07309872,0.044406984,-0.0138157755,0.028931553,0.021898372,0.0038209392,-0.022532184,0.0036821535,-0.023855938,0.015147681,-0.018747773,-0.02987079,-0.08437292,0.0008949646,-0.027099185,0.027006138,-0.023464013,-0.08513649,-0.013880646,-0.028873017,0.014856291,0.025793828,-0.009856303,-0.05813771,0.04178243,1.5628394e-32,-0.008311962,-0.0073102196,-0.025447875,-0.03233323,0.023924777,-0.019577237,-0.0239384,-0.011124352,-0.055123936,0.04128735,-0.08022103,0.014494008,0.009780767,0.009045404,0.109103665,-0.04499487,-0.0046578296,-0.071883716,0.021182146,0.060774103,-0.012623091,-0.026754284,0.0086570885,0.041473716,-0.010997445,0.059631847,0.058817785,-0.03209682,-0.112156525,0.044461627,-0.025880639,0.0144403195,0.054797336,0.05363265,-0.06301791,-0.004061422,0.062125932,0.0701428,-0.007815067,-0.061858166,-0.019696897,-0.013636929,-0.020622047,0.045779083,-0.042063132,-0.0020070306,0.0651833,0.011563425,-0.033538513,0.05271079,-0.110617824,-0.004748218,0.034718566,-0.027193718,0.006082018,0.0143194,-0.013826516,0.027800275,-0.0384296,-0.04126738,0.025806021,0.044054966,-0.014911769,-0.0014740886,-0.09189651,0.03034618,0.023640255,-0.053817913,0.14811414,-0.0381207,-0.087144904,0.025463598,-0.084025465,0.011368173,0.093723856,0.0026319956,-0.04926947,0.036277954,0.020373207,0.016539317,-0.05604053,-0.038520362,0.04111618,0.04942653,0.13308865,0.057968713,0.060716726,0.013873111,-0.08151734,0.122387275,-0.025095854,0.12268336,0.1051817,-0.004023835,0.08555459,-1.525e-32,-0.001665817,0.04602688,0.03892372,-0.028929844,0.026124867,0.007002685,-0.018317712,-0.047502685,-0.020192767,-0.070645116,-0.008509499,-0.06726412,0.009693499,-0.026455378,-0.053047933,-0.021219466,-0.028434081,-0.0629069,-0.03552044,-0.06461135,0.008211683,0.037111487,-0.0066900114,-0.02934684,-0.016913457,-0.07810631,-0.027969368,0.03259609,-0.089799844,0.031453446,0.086981714,-0.024513293,0.042126108,0.06608048,-0.04118529,0.03195547,0.07012496,0.071192525,-0.0139256,0.030225683,0.010810537,0.07634858,-0.015509886,-0.040792875,-0.02922682,0.03756999,0.03242296,-0.14220527,-0.065011814,-0.037688684,0.047906842,-0.03683397,-0.04228391,-0.059518192,0.045326956,-0.022740554,0.0013205879,-0.06757774,-0.07011177,-0.021217475,0.06704887,-0.025366616,0.0055519454,-0.03821685,0.07694325,0.004227096,0.006175165,0.034982804,-0.0011525258,0.022736296,0.07063465,0.05791227,-0.10363803,-0.004874282,0.017668884,-0.07350296,-0.10995675,0.04403673,0.029355494,-0.005192865,0.0343338,0.0024241938,-0.037685182,-0.08042065,0.005463912,0.039254945,0.04432762,0.08686948,-0.0043945373,0.02780196,0.053915754,0.036553677,-0.02979354,-6.266083e-05,-0.026402436,-5.596745e-08,0.0039408067,0.0038522372,-0.113204494,-0.022961745,-0.005980469,-0.031342942,-0.012440978,-0.02471846,0.0066331136,-0.010292802,0.07036534,-0.018724423,-0.020480875,0.01386001,0.009335676,0.048569832,0.028193606,0.104568966,-0.02598991,-0.02995708,0.123994045,-0.008383756,-0.055035677,0.036661785,0.070390664,-0.018490735,-0.019974707,0.035671305,0.04198317,-0.01374909,-0.07303826,-0.050307542,-0.061580956,-0.07765033,-0.017446084,-0.060655255,-0.026047427,-0.009665415,0.035951648,0.027310718,0.026961377,-0.10301353,-0.124568835,0.017730253,-0.052371256,-0.058158148,0.024009638,-0.01048723,-0.045707867,-0.01610899,-0.04622775,-0.02348891,0.058599878,-0.044295747,0.038088895,-0.016975937,0.03827901,0.06404817,-0.06015645,-0.03811093,0.003670908,0.059108175,-0.024533363,-0.05506295} 0.94 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:30.483306+00 2026-01-30 02:01:10.237783+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1645 google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE 1 t 1648 Go Karts Mar Menor unknown Genial! Lo hemos pasado muy bien. Los coches están en perfecto estado y nos han tratado muy bien. Un circuito en muy buen estado también y buen precio. genial! lo hemos pasado muy bien. los coches están en perfecto estado y nos han tratado muy bien. un circuito en muy buen estado también y buen precio. 5 2018-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E1.03": "Un circuito en muy buen estado también", "O1.03": "Los coches están en perfecto estado", "P1.02": "nos han tratado muy bien", "V1.01": "buen precio", "V4.03": "Genial! Lo hemos pasado muy bien."} {-0.006687213,0.03424239,0.0005340085,-0.11523582,-0.019513512,-0.004125712,0.02538269,0.033841368,-0.0600322,0.0058471607,0.09423793,-0.014686271,-0.04532531,-0.039555192,0.028405007,0.05081292,-0.017244305,-0.00718804,0.024847453,-0.065642044,0.059230473,-0.011211791,-0.086674325,0.09679234,-0.09920868,-0.033535384,0.051007617,0.019109568,-0.057984635,-0.055659104,-0.069124594,0.06242415,0.056945324,0.0183028,-0.051864028,-0.011578073,0.073416844,-0.106637456,-4.8299044e-05,0.032534685,-0.10133386,-0.046771236,0.00011876978,-0.03476649,-0.028830122,-0.092055626,0.04167982,0.017011974,0.023101604,-0.050889954,-4.079854e-06,0.033617914,0.028221115,0.022003407,-0.009546225,0.049668953,-0.050011557,0.012573928,0.061817814,0.04455338,-0.025370158,0.058257263,-0.019190082,0.012681379,0.024479276,-0.034989107,0.08668711,-0.016186109,-0.054572415,0.026774215,0.085677534,-0.089101024,-0.016116763,-0.039772198,-0.06591938,0.072832674,0.021836095,-0.0020729783,0.001156524,-0.057124212,-0.040803187,-0.07910745,0.007871472,-0.069739945,0.03878577,-0.005719029,-0.049468197,0.014232934,0.025866525,-0.057070356,-0.033408057,0.06284684,-0.0031086577,0.06415843,0.0019394588,0.014686695,0.06997346,-0.06560521,-0.017105175,0.051946107,0.04663832,0.06587435,0.045666628,0.021503545,-0.04628465,0.023619898,0.09630569,0.014054791,0.049954366,-0.0046639447,-0.013370458,0.021174641,-0.0048194015,0.033606935,0.015297341,-0.0388069,-0.055166177,-0.012591182,-0.008644683,-0.105724245,0.04645067,0.013216741,-0.07741033,0.018622521,-0.059726328,-0.027914906,0.09154545,1.0729634e-32,-0.029181166,0.014596729,0.0341432,0.025623463,-0.077508286,0.04395605,-0.047490023,0.010878451,-0.060982086,-0.024401268,-0.058814377,0.027652824,-0.019792505,0.028233407,0.042828076,-0.058293894,-0.031518586,-0.086137794,0.13911414,0.08092813,-0.038012505,-0.013721183,0.014637557,0.065186925,0.017934773,0.027921952,0.012736509,-0.0520831,-0.039709438,0.060973052,-0.08241072,0.005059718,0.065986186,-0.011761076,-0.11737072,-0.02675953,0.018449372,0.06284071,-0.0028351352,-0.0056171734,0.028307395,-0.009972304,-0.07712219,-0.019982584,0.006726229,-0.009871954,0.017760359,0.054182,0.023028761,0.0121845715,-0.15277635,-0.044556823,-0.07766984,-0.025131214,0.049473953,0.01338921,-0.0132707935,0.010501605,0.02589179,-0.040479943,0.050044637,0.08110161,0.0063368687,-0.062172662,-0.031493872,0.02305538,0.06197622,-0.011646436,0.08844248,0.008029134,-0.07143418,-0.04580597,-0.10070742,0.033341818,0.042229865,0.0010238487,0.020952016,0.029420683,0.045746103,0.035521735,-0.024070738,-0.0007179731,0.0385227,-0.02648419,0.07102446,0.12533604,0.0420922,0.00012714391,-0.021366555,0.12628722,-0.030198354,0.09732207,0.117867626,-0.012675253,0.039576184,-1.0870838e-32,0.023412673,0.0048899497,-0.017990153,0.054056432,-0.06228219,0.032367226,0.021949964,-0.07191537,-0.0451298,-0.03963868,-0.01560404,-0.11053848,0.031606764,-0.08405344,0.007181492,0.03863354,0.006494142,-0.056784194,-0.008322048,-0.028562963,0.08834236,0.01606088,0.017276853,-0.012330489,-0.027277919,-0.041023653,-0.10056973,0.052281924,-0.1065132,0.04918925,0.042830206,-0.015499508,0.03185932,0.06141526,0.0008523479,0.036382236,0.044637382,0.09874776,0.02066617,0.019087987,-0.04685645,0.061758,-0.01495706,0.062255282,-0.05023303,0.036619708,-0.028054824,-0.14712521,-0.06288946,-0.04066355,-0.0057438966,-0.04115605,-0.056786444,-0.116822295,-0.005067556,-0.011533643,-0.050328713,-0.035827707,-0.063513204,-0.060551573,0.016204113,0.005596795,-0.026380412,-0.06303854,0.09765044,-0.0046148836,0.019772427,0.012752683,0.1159455,0.017433072,0.063656606,0.03396578,-0.053288683,-0.0028571517,-0.026311321,-0.036532033,-0.12191135,0.010329051,-0.016955273,0.0115373125,0.014781927,0.06043311,0.01668842,-0.042621855,-0.017957548,-0.024026956,0.022600086,0.054922927,0.010737596,0.035526782,-0.004414465,0.03056026,-0.08656325,-0.093447894,0.0044676964,-4.168633e-08,0.01990803,-0.05417212,-0.032176916,-0.0064840005,0.04004863,-0.0433984,-0.023534646,-0.027540298,0.041774493,0.009967899,-0.04790034,-0.048897855,-0.03631392,0.059853878,-0.002691723,0.05676883,0.036747865,0.10140936,0.0097039575,-0.022449732,0.085377544,0.029320672,-0.01469837,0.06740476,0.04233261,0.01746086,-0.0572672,0.0006582308,-0.024855727,0.03495795,-0.023311246,-0.03733579,0.004426203,-0.029215392,0.043451983,-0.008106874,-0.0058398712,0.0008789814,-0.02655152,-0.11558465,0.04115369,-0.030706948,-0.09432602,-0.020971384,-0.011193068,-0.15206225,0.02459213,0.009559728,0.0040995725,0.07869825,-0.033456065,-0.014660329,0.05382789,0.04256097,0.060427595,-0.036706097,0.04746293,-0.031435326,-0.027748832,-0.02913577,0.05593529,0.09672608,0.027819632,-0.09466718} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:33.999944+00 2026-01-30 02:01:10.158742+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1690 google ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB 1 t 1693 Go Karts Mar Menor unknown No le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó un poco los tiempos, pero entiendo que la apuren, por lo demás estaba todo bien mantenido y pasamos buena tarde. no le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó un poco los tiempos, pero entiendo que la apuren, por lo demás estaba todo bien mantenido y pasamos buena tarde. 4 2024-01-31 01:52:39.833374+00 es v5.1 O1.03 {O1.02} V- I2 CR-N {} {"O1.03": "No le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó ", "R3.05": "pero entiendo que la apuren"} {-0.0131506175,0.017037945,-0.0002537747,-0.06784157,-0.06102187,-0.034379233,0.06934134,-0.010699389,0.0033121984,0.022451255,0.039515194,0.05318884,-0.08637415,0.03475735,0.007689096,0.045279384,-0.053913582,0.040671837,-0.005346139,-0.017257338,0.15066032,-0.0149720935,0.002461563,0.058978755,-0.10823054,-0.0190911,0.022893019,0.027565753,-0.045562483,-0.10084611,-0.046861466,0.049596447,0.023819739,-0.01351864,-0.025581341,0.015336931,0.05049195,-0.054530572,-0.048757803,0.1558004,-0.061269823,-0.01833694,-0.09119623,-0.012261552,-0.025983961,-0.058565192,-0.01774748,0.055881295,0.013172635,-0.01781952,-0.035713527,0.01890243,-0.057933826,-0.069669776,-0.03333601,-0.06939302,-0.06440934,0.048733443,0.05223118,-0.004436355,0.057012614,0.065048985,-0.0681779,0.027272988,-0.0038543704,-0.030911455,0.0212016,-0.008246231,-0.08994885,0.040924143,0.044996407,-0.090583466,0.055123415,0.019402739,-0.058357965,0.05921133,-0.015202686,-0.06738922,-0.057887815,-0.055490147,-0.012019123,-0.0101216305,-0.01504846,-0.07686709,-0.043111283,-0.04249699,-0.01760595,0.052655067,0.07593861,-0.06013233,0.049257673,0.07613084,-0.0684777,-0.011166647,0.06840425,0.0353623,0.021291431,-0.066410534,0.002036698,0.0041661644,0.1033624,-0.025353486,0.008304099,0.092535965,-0.025690611,0.035539262,0.047106434,-0.029995266,0.00436688,0.019277232,-0.05686347,-0.008295266,-0.020839864,-0.05278447,-0.059529703,-0.058060143,-0.041237693,-0.022419369,-0.017493062,-0.048005853,-0.03831502,0.009961165,-0.11901042,0.03174845,-0.027275622,-0.07181117,0.019980848,1.2122381e-32,-0.04941791,0.02628015,0.011255528,0.051877454,-0.051813435,-0.009548434,-0.060001615,-0.08238129,-0.03232356,0.033292733,-0.000673846,-0.061051767,-0.0004420303,-0.06962137,-0.0021524888,0.067132644,0.046441693,0.00986438,0.042411625,0.0720429,-0.025527744,0.051441558,-0.021685252,-0.059536904,-0.016116295,0.13513951,0.04930481,-0.09402512,-0.08918746,0.038522087,0.008647821,-0.0036554195,0.044294067,-0.02263595,-0.030151825,-0.02040633,0.085772954,0.12877582,-0.0862509,-0.03693808,0.029925898,-0.06093495,-0.04733572,0.09431032,0.029239355,-0.0061729113,0.03597687,0.062206406,0.020941693,-0.007928593,-0.045306757,-0.012960262,-0.090492375,-0.0049579367,-0.008738704,-0.0018717964,-0.047858793,0.022335522,-0.0047469754,-0.01610052,0.0799118,0.0041017877,-0.011846967,-0.09107419,-0.010293408,-0.04510631,0.0073968587,0.035710353,0.18214317,0.060631882,-0.06271463,-0.010541006,-0.02432378,0.1224062,0.059150316,0.056231536,0.0563453,0.046832655,-0.0093779,0.06135976,-0.0388939,-0.04045646,0.048882507,0.04402012,0.090875976,0.01693379,0.03449129,0.012359477,0.0017964485,0.116962746,-0.010586444,0.013701052,0.087954156,-0.039623193,0.016557999,-1.3029193e-32,-0.011005375,-0.017940758,0.025938092,0.0390021,-0.043523606,0.020308357,-0.0060033966,-0.016322067,-0.01635352,0.016985497,-0.06795428,-0.06846013,0.090892285,-0.02051288,0.019940881,0.13872065,0.025270088,-0.069244705,-0.043549854,-0.010639313,-0.07081898,0.008150576,0.047642294,0.04836627,-0.055521563,0.014128403,0.022167616,-0.05979197,-0.09045488,0.02545621,0.076795734,-0.12558319,0.00029383172,0.041663,-0.037872672,-0.019827558,0.0062144073,0.06562818,-0.043986805,0.06375965,-0.052243598,0.037688136,-0.012872291,-0.03791367,-0.07959058,0.0020119979,0.04955692,-0.10048909,-0.042500988,-0.05700746,0.11992172,0.012897483,-0.035540543,-0.011786008,0.088104144,0.031604238,0.008530127,-0.019647954,-0.063432686,0.05617368,0.02571737,0.040933356,-0.0027318655,-0.08117409,0.12398115,-0.006046455,-0.009318093,-0.039597258,-0.00919833,-0.0012053181,0.028691385,0.026339972,-0.067772135,0.024645569,0.0011998526,-0.002473431,-0.026229829,0.0439848,-0.016611015,0.039470017,-0.02487056,-0.03910617,-0.045588527,-0.058052544,-0.011300536,-0.020964125,0.040388405,0.04886598,0.065461785,0.0399672,0.056191627,0.07588719,-0.07297277,-0.047889307,-0.015547088,-4.537704e-08,0.034769043,-0.047893886,-0.01663313,-0.007875433,0.018377198,-0.014740146,-0.034321837,0.06327538,0.066364184,0.058660507,0.03616365,-0.050990213,-0.00092595076,0.018595396,-0.0150996,0.025420122,0.07858302,0.024689246,-0.0108315805,-0.07070528,0.012332345,-0.0074995337,-0.046350922,-0.0247135,0.01518824,-0.04295639,-0.012344668,0.0048717074,0.01612084,0.011407752,0.031986654,0.0047797463,-0.0844183,-0.09327298,-0.020819051,-0.02695551,0.050224524,0.03399768,-0.03456804,0.007896457,0.0379776,-0.03574404,-0.019840641,0.031261653,-0.046638794,-0.08161002,-0.10051315,-0.039986487,0.014598013,0.00806255,-0.067941405,-0.010186064,0.0077876225,0.010954866,0.05479458,-0.09673335,0.049471963,-0.013954397,-0.015851079,-0.0025268525,0.009035868,0.05448243,0.01683647,-0.085620776} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:35.385705+00 2026-01-30 02:01:10.334844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1716 google Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB 1 t 1719 Go Karts Mar Menor unknown Buen sitio para karting, es un poco caro buen sitio para karting, es un poco caro 4 2025-10-02 00:52:39.833374+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Buen sitio para karting", "V1.01": "es un poco caro"} {-0.060412932,0.023028132,-0.04616799,-0.018524999,-0.096579745,0.03472528,0.032995705,0.041391116,0.027951457,0.017316043,0.05339236,-0.0075786044,-0.05872791,0.038910914,0.00042251952,-0.04342613,-0.024302667,0.06914874,0.040967297,0.052234393,0.050768696,-0.030236065,-0.05456745,0.07562665,-0.082121015,-0.01743577,0.07086742,0.031118978,-0.023030786,-0.08776175,-0.048936978,0.050183017,0.039236944,-0.044725776,0.07597205,-0.04614526,0.027154896,-0.11686052,0.015392535,-0.058941767,-0.068846315,-0.050727826,-0.041731134,-0.084055245,0.082808554,-0.012167389,0.035270464,0.0661674,0.02428878,-0.052996457,-0.007778764,-0.04629987,0.026100919,-0.04559744,-0.056901075,-0.035505325,-0.05976446,0.046012517,0.08060706,0.004202373,0.03606248,-0.025792241,-0.03455264,0.069502644,-0.098885015,-0.052587688,0.007743227,-0.03698452,-0.06468179,0.11580225,0.06859262,-0.05139735,0.020763876,-0.039149456,0.020174129,0.04983993,-0.00052739435,0.015276248,-0.013252435,-0.082757555,0.069772445,-0.008290494,-0.046813153,-0.016083963,-0.006127386,-0.026196748,0.033764295,0.0018839532,-0.0049077165,-0.0008803134,-0.04364295,0.052572925,-0.099605575,-0.05020272,-0.01845395,0.042519197,-0.023250861,0.019806864,0.06778186,-0.0018623101,0.038612768,0.067966975,0.074720666,0.02800847,-0.039005402,0.021020267,0.010397218,-0.057703696,0.07512115,0.031742692,-0.058216713,0.0064641633,-0.050894625,-0.06635279,-0.12476808,0.007383194,-0.005893557,-0.09922288,-0.031035172,-0.03532658,0.0002535851,-0.04214238,-0.053873867,0.0128729595,0.057747003,-0.10942039,0.11730061,7.4829165e-34,-0.08687652,-0.07878215,0.06714169,-0.027759789,0.060587995,0.00014128104,-0.052167606,-0.09310649,-0.005797559,-0.0014679828,-0.07420232,0.022046331,0.0034728777,-0.02709957,0.11986296,0.07634964,-0.0149213495,-0.010571645,0.0768893,0.014905145,-0.035230294,-0.005016146,-0.05183982,0.024802655,0.0075630867,0.08952096,0.016380241,-0.10263851,-0.08023497,0.062912464,0.06420355,0.034855373,-0.014960554,0.031249074,-0.032817524,-0.03423786,-0.016142983,0.060702864,0.011599566,0.012146408,0.017731376,0.0029094876,-0.0633615,0.036296036,-0.08504318,-0.07119892,0.06292551,0.048838545,-0.025844205,0.04261188,-0.13232565,-0.066333525,-0.012511105,-0.028230265,0.031630427,-0.04133992,-0.07541167,0.04893067,-0.038660754,-0.005948838,0.089048825,0.06903642,0.0032861785,0.014670761,-0.08303782,-0.043849308,0.008901865,0.022274645,0.09690433,0.03588605,-0.017616501,0.0153246755,-0.019374523,-0.06187797,0.0027616883,0.02355792,-0.024531044,0.025690578,-0.016264101,-0.0014827774,-0.07935498,-0.054308325,0.060486853,0.07591802,0.04970273,0.051101487,-0.026943788,0.085658886,-0.0025073844,0.059364714,-0.044705637,0.024507772,0.019354448,-0.0009177127,0.07909924,-2.1477898e-33,0.09937905,-0.018604523,0.053685714,0.070064284,-0.034329824,0.054032512,-0.036503255,-0.056483045,-0.03284089,0.0059709544,-0.11369377,-0.049453143,0.11891151,-0.049806487,-0.024969755,0.10569525,-0.017121982,-0.015952602,-0.0920167,0.011668113,-0.043212067,-0.022725796,0.026280325,-0.018203363,-0.021625597,-0.005869508,0.07086343,0.023089454,-0.078751,0.07261182,0.031738855,-0.046748158,-0.03662859,0.058908887,-0.030539481,0.030139022,0.050661843,0.09829132,0.02883426,0.03853277,0.013040755,0.020311361,-0.029582806,-0.008539686,-0.0011649135,-0.045177575,0.032395534,-0.069372684,-0.013119755,-0.022969605,0.06020048,0.034307208,0.032683745,-0.028136378,0.019788044,-0.044261035,-0.017449614,-0.043954153,-0.16135502,-0.002968385,0.037139557,0.064781986,-0.0394426,0.011529399,0.032635752,-0.022851013,-0.09071323,0.014969391,-0.020381734,-0.005351567,-0.030303903,0.028581856,-0.046806626,0.07757726,-0.08050477,0.0019017673,-0.016966483,0.030504284,0.088412754,0.07354627,-0.06849031,-0.03855433,-0.015739895,0.0067648543,-0.0022803464,0.015015287,-0.089946136,0.009183352,0.041133165,0.012858643,0.074579746,0.05823075,0.023898378,0.0074339123,-0.07891519,-1.9362549e-08,0.011354567,-0.086769074,-0.046061125,0.048027787,0.056592498,-0.008295622,-0.03676935,0.006540696,-0.016369041,0.03201893,0.032507364,-0.04284373,0.05504154,0.048848264,-0.01801149,0.09591921,0.09274708,0.09146817,0.00887478,0.012873672,0.025605714,-0.04602167,-0.06393322,0.008295334,0.03867002,-0.006944277,0.007196609,0.00919364,0.028175835,-0.09515232,0.010632462,0.022575589,-0.07107137,-0.030748075,-0.007534015,0.022447484,0.0041100723,0.07077931,-0.0827822,0.034375265,0.013141061,0.073652185,-0.020066222,-0.039304443,0.021167798,0.031211086,-0.015702493,0.005465463,-0.020779494,0.05180094,-0.040174972,-0.005850004,0.03636624,0.052663084,0.057436753,0.055975728,0.07811691,-0.05209844,-0.02000928,0.00775239,-0.013881058,0.07491219,0.01384541,0.032136574} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:36.8679+00 2026-01-30 02:01:10.435459+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1624 google Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB 1 t 1627 Go Karts Mar Menor unknown Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. No es nada serio, y menos cuando reservé con dias de antelación. No se lo toman muy en serio, independientemente de la temporada que sea. una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. poca seriedad. no es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. no es nada serio, y menos cuando reservé con dias de antelación. no se lo toman muy en serio, independientemente de la temporada que sea. 1 2026-01-30 01:52:39.833374+00 es v5.1 J1.02 {} V- I3 CR-N {} {"J1.02": "Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de ", "R1.03": "Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan"} {0.053338308,0.08435092,0.0071785753,-0.11762676,-0.037525162,0.005759538,0.02802257,-0.014190104,0.01344668,0.0066504255,0.08081598,0.036173098,-0.029851904,0.008111288,0.047063146,-0.057696145,-0.053919207,0.055742636,0.010792786,0.04855178,0.098478876,-0.043893296,-0.0992515,0.027212635,-0.046696227,-0.014542723,-0.014158008,0.015231528,-0.073441915,-0.0835935,0.0055222525,-0.012624341,0.005330396,-0.027894508,-0.03705618,0.01493302,-0.005898826,-0.067984365,-0.08516064,0.054824106,-0.059209406,-0.02038618,-0.055360746,0.018302167,-0.017322684,-0.08739349,0.028097276,-0.008340883,0.028670203,-0.03653338,-0.017422935,0.018671917,-0.09780979,0.071022406,0.004781556,-0.010479515,0.016475651,0.023179024,0.10495789,0.003309034,-0.015618545,0.061128527,-0.053227317,0.0048714555,0.062400065,-0.080406874,0.0006743241,-0.026138226,-0.07543042,0.08595647,0.14226355,-0.013973813,0.03389349,0.014303782,-0.05796468,-0.023592515,0.04086766,-0.011523529,-0.033722684,0.04455195,0.033826098,-0.03557475,-0.033981718,-0.014448214,-0.007945667,-0.11694753,-0.051455867,0.032067757,0.009207582,-0.04842443,-0.08705962,0.10327077,-0.03363,-0.005571313,0.03506639,0.023578137,-0.020100152,0.018465357,0.031331062,-0.004369587,0.083638355,0.04747785,0.017460445,0.0029775607,-0.066466555,-0.028495757,0.030879414,0.073152706,-0.05319123,0.03832806,-0.10177262,-0.008477151,0.00024703165,-0.021641865,-0.031367037,0.050380196,-0.061761428,-0.030366221,-0.04935602,-0.0941615,0.04206726,0.016905317,-0.032533593,-0.085628346,0.10427062,-0.021002036,0.047034036,1.3861031e-32,-0.0042777816,-0.07719739,-0.040037017,0.026482437,0.031385418,0.03079874,-0.007709857,-0.008725008,-0.028239582,-0.018252455,-0.041460503,0.0059854835,-0.047589894,-0.023061758,-0.015408804,-0.034498096,0.048585143,0.042874992,0.024911517,0.015429329,-0.060860857,-0.027965933,-0.010421634,-0.018195938,-0.048833728,-0.00091103505,-0.01492907,-0.08099298,-0.061766244,0.0457832,-0.048913684,0.024290292,0.047358397,-0.02794945,-0.006379584,-0.02193245,0.08690746,0.04710134,-0.05636766,-0.033450685,0.052459665,0.0681451,-0.03146917,0.029169805,0.06826713,0.009554415,0.10867802,0.04390825,-0.036974747,-0.005579903,-0.015691714,0.0010613446,-0.029583078,-0.033561632,-0.024280764,0.04013913,-0.051874276,0.0058705136,-0.05763906,-0.044801116,0.08517154,0.0845989,0.026094684,-0.0011495921,0.02210204,0.011213892,0.080044806,0.032589685,0.12309267,0.06388521,-0.03704882,-0.016853092,-0.03889973,-0.019992108,0.056126382,0.0059880344,0.10387399,-0.006299466,0.017694123,-0.015775476,-0.013624596,-0.06438044,-0.019687548,0.02965112,0.08982328,0.09330279,0.030835366,0.0045210584,-0.039183974,0.09078067,-0.015818363,0.075255185,0.05374339,-0.053169798,0.044936005,-1.3094932e-32,-0.058965724,0.0033311145,-0.008931147,-0.00059132144,-0.00518362,0.015617428,-0.024187388,0.07307655,-0.026920728,-0.061071154,-0.075903505,-0.19378813,0.059619293,-0.04529533,-0.09544271,0.031961385,0.019915095,-0.1342787,-0.066089354,0.0004928502,0.0008339217,0.062011596,0.0684559,-0.033138756,0.010654953,-0.06347193,0.019002086,0.047112964,-0.08172228,-0.03303736,0.044740595,-0.11128499,0.056695748,0.049178217,-0.02567472,0.042217035,0.018882835,0.013751648,0.0062336265,0.06999654,0.0010112762,0.067200065,5.8330963e-05,-0.043258995,-0.037014443,0.059571385,0.02337573,-0.10470205,-0.01849179,-0.039856713,0.05777209,-0.10332916,-0.04669663,-0.062582135,0.08041627,-0.005769767,-0.03323645,-0.056631073,-0.0830858,0.022233004,0.08275259,0.02997507,-0.052025415,-0.0170534,0.09338078,0.09019456,0.007830231,0.027323326,-0.070417695,0.022543887,0.055394027,0.011866563,-0.07080282,0.008844274,-0.006552346,-0.05145781,-0.1421621,0.066897824,0.018515412,0.039423984,-0.031072827,0.006753862,-0.06268372,-0.085513875,0.024718672,-0.0013161292,-0.05355797,0.06328752,0.0030657444,0.034486957,0.072970614,0.049389873,0.028837027,-0.0020165998,0.0053965966,-5.0822848e-08,0.0010483207,-0.0387479,0.019749083,0.010073582,0.021335216,0.04036213,0.0215612,-0.012215085,0.062288687,0.077519365,0.069585286,-0.02971408,0.029837385,0.0058041513,-0.050569903,-0.0058640693,0.11740261,-0.021669742,-0.029453723,-0.07279898,0.0649691,-0.015409535,0.019256266,0.040782925,0.0041228533,0.0014859642,0.023955647,0.0019245793,0.033362318,-0.01845874,-0.061772116,-0.01921689,-0.07351326,-0.025319675,0.0034481343,-0.042354282,0.010620585,0.035454817,-0.0040657823,-0.040780254,0.030545214,-0.05591405,-0.063922405,0.020328935,-0.027065003,-0.08876895,-0.022258123,0.0446178,-0.030469358,-0.04753162,-0.0066883336,-0.03815156,0.06685208,-0.01795207,0.08732641,-0.017690318,0.029139295,0.04946243,-0.10988348,0.023533542,0.039260257,0.11422209,-0.024796894,-0.04360047} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:41.421517+00 2026-01-30 02:01:10.087369+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1719 google ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB 1 t 1722 Go Karts Mar Menor unknown Super bien! Si te gusta la velocidad, este es tu lugar. He probado otras pistas, pero ésta está bien y también el precio. El único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad. Pero guay la verdad!! super bien! si te gusta la velocidad, este es tu lugar. he probado otras pistas, pero ésta está bien y también el precio. el único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad. pero guay la verdad!! 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Super bien! Si te gusta la velocidad, este es tu lugar.", "O3.02": "El único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad.", "V1.01": "He probado otras pistas, pero ésta está bien y también el precio.", "V4.03": "Pero guay la verdad!!"} {0.033232573,-0.00074503187,0.007075621,-0.10088317,-0.058601476,0.011168655,0.047956847,0.03211136,-0.07856376,0.034292657,0.06295494,-0.029987302,0.0073213237,-0.009520196,0.034436107,0.045679733,0.014949937,-0.022830816,-0.016605569,0.021536885,0.044787247,-0.02280045,-0.07770645,0.0798261,-0.08845099,-0.040444795,0.016408365,0.005057764,-0.01571378,-0.042054616,0.013471049,0.034766212,0.061285123,-0.0025293604,-0.02335765,-0.012662997,0.03675917,-0.07111782,-0.067097634,0.0829661,-0.06986365,0.0036428953,-0.047098793,-0.01852259,0.014378956,-0.010633576,0.08245711,0.04423545,0.06534171,-0.0334116,-0.05435971,0.0080144005,0.005227433,-0.05416988,-0.056581344,0.07058065,0.0059258332,-0.05426526,0.014187997,0.056577582,-0.002104374,0.040357925,-0.034516208,0.0005563811,0.05946453,-0.06508647,0.047524896,0.022275,-0.071948536,0.090302,0.1010521,-0.010708372,0.03733911,0.020883719,-0.055406664,0.013559659,0.009607315,-0.021197114,-0.00527888,-0.032375578,0.013676012,-0.04530259,-0.013406648,-0.043605622,0.0023185278,-0.03720678,-0.011514832,-0.0047625564,0.058712907,-0.01444057,-0.016913727,0.10135603,-0.10127465,-0.026803557,-0.06369647,0.030594302,-0.0066524846,-0.079868555,-0.06877106,0.011895717,0.107967,0.05364321,0.058035925,0.0146986395,0.018061835,0.08282252,0.039405227,0.07347641,0.017099023,0.040859252,0.009972576,-0.021359485,-0.0026385318,0.006383773,-0.07353047,-0.0039904634,-0.02897885,-0.028558968,-0.042489775,-0.08095451,0.03431583,0.033156097,-0.078179404,0.054946445,-0.030830264,-0.083069704,0.038623612,1.5098374e-32,0.04845618,0.011511067,0.01626232,0.06513681,-0.018386144,0.04424328,-0.04136428,-0.03997441,-0.08362371,-0.05781702,0.0059190644,0.025344804,-0.03905305,0.052674934,-0.029276608,0.04856628,0.024947325,-0.0822843,0.057677787,0.05046495,-0.037208993,-0.03858826,-0.01214783,-0.04106206,0.029961873,0.06261191,0.051338978,-0.063645504,-0.084350206,0.048718695,-0.098780744,0.059031,0.039148234,-0.05286467,-0.023293018,-0.044616632,-0.03826733,0.027174342,-0.025333198,0.028629567,0.030855123,0.036562208,-0.001930143,0.005246646,-0.06706479,-0.050508346,0.030017044,0.101112865,0.054749094,-0.05411939,-0.039066587,-0.106634505,-0.07297781,-0.040587414,-0.021370951,-0.026079748,-0.068399444,0.047276404,0.045799427,-0.037406992,0.064849645,0.06414412,0.03281559,-0.01816283,-0.017718794,-0.06415171,-0.009534242,0.07194335,0.109124005,-0.007232801,0.018132081,-0.020932497,-0.03392699,-0.06746707,0.055362422,-0.05415982,0.0130177755,0.034041815,0.032172795,0.036599983,0.023077186,0.0038723184,0.10325227,0.00048681945,0.049096856,0.11193589,0.046598796,-0.035032626,-0.055186562,0.13561578,0.01486557,0.061542932,0.07298536,0.023435144,1.0312499e-05,-1.390524e-32,0.018202104,0.04510693,0.030239781,0.021114381,-0.0046361145,-0.0037458588,-0.009912647,-0.015007734,0.011889803,-0.086262204,-0.0887489,-0.07278168,0.1139369,-0.08364381,-0.014235144,0.059637148,0.0023791676,-0.029658854,-0.04938718,-0.047753215,-0.057638094,-0.0009319968,0.029287267,0.057260558,-0.046087723,-0.09732774,0.007306887,0.07147885,-0.13777712,-0.053442992,0.07331548,-0.070698306,0.045181103,0.024513356,-0.028850289,0.023183018,-0.025580373,0.0361953,0.047835957,0.05894737,-0.017535575,0.07366489,-0.006119746,-0.07423599,-0.055409916,0.04553258,0.066720985,-0.15886344,-0.038749445,-0.06627748,0.037646312,-0.08666184,-0.06564343,0.0023394476,0.036673598,-0.002608981,-0.010333822,-0.029356198,-0.04656737,-0.047137026,-0.028938822,-0.008348492,-0.0044025723,-0.03777406,0.08846243,-0.011036132,-0.0053368113,-0.05885353,0.04681079,-0.004592501,0.09266225,0.020970043,-0.16224587,5.933377e-05,-0.040974937,0.020751528,-0.06263984,-0.008864362,-0.006208422,0.05377789,0.0072998763,-0.015944222,-0.010348348,-0.04111688,-0.023595462,-0.023184173,0.0033058925,0.04746642,0.006602869,0.08734011,0.01934204,0.026058108,-0.054962333,-0.09493638,0.077953696,-5.2841507e-08,0.03030622,-0.03413486,-0.05086593,0.026105668,0.027208092,-0.0023975642,-0.0043695495,-0.0029033723,0.02075725,0.04398055,-0.018204534,-0.012208928,-0.045430955,-0.058057405,-0.017574972,0.06739545,0.14109671,0.10102049,-0.017602693,0.00944339,0.03582874,0.053782307,0.006686734,0.028799918,-0.038086016,0.024717327,0.00025112962,-0.008629771,0.006327653,0.0026455694,-0.014231996,-0.043815207,-0.07621381,-0.093703836,0.011776701,-0.035504453,0.020551033,0.006487156,0.024277251,-0.03624081,0.11243249,0.013371634,-0.108821794,-0.012877712,-0.07046659,-0.068804026,0.012143881,0.01739255,-0.03454852,0.062050063,-0.03535693,-0.0064028003,0.08843405,0.022337785,0.049021166,-0.060192574,0.0094887195,-0.0041161627,-0.023634909,0.023180109,0.1033714,0.103935,0.014441906,-0.081323266} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:04:57.244683+00 2026-01-30 02:01:10.458894+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1692 google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE 1 t 1695 Go Karts Mar Menor unknown Para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria. Hay que reconocer que el trazado y su estado está muy bien. Rápido, con pianos y escapatorias cuidadas y un mantenimiento habitual de pista considerable que hace disfrutar al rodar por él. Quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados. Le daría un 5 estrellas de no ser por la gerencia. Desde mi punto de vista demasiado obtusos y cuadriculados a la hora de hacer la reserva de carreras. No permiten reservas de menos de 10 personas ni permiten reservar los karts de 400cc para grupos... Ni en días de baja demanda te permiten organizar carreras para grupos de menos de 10 personas. En mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables que favorezcan las experiencias positivas y el agrado de los clientes. A eso le sumamos el mal estado de los karts... Con algunas unidades muy por debajo de las otras, neumáticos gastados y poca revisión de los vehículos... Lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un quiero y no puedo. Aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí. para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria. hay que reconocer que el trazado y su estado está muy bien. rápido, con pianos y escapatorias cuidadas y un mantenimiento habitual de pista considerable que hace disfrutar al rodar por él. quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados. le daría un 5 estrellas de no ser por la gerencia. desde mi punto de vista demasiado obtusos y cuadriculados a la hora de hacer la reserva de carreras. no permiten reservas de menos de 10 personas ni permiten reservar los karts de 400cc para grupos... ni en días de baja demanda te permiten organizar carreras para grupos de menos de 10 personas. en mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables que favorezcan las experiencias positivas y el agrado de los clientes. a eso le sumamos el mal estado de los karts... con algunas unidades muy por debajo de las otras, neumáticos gastados y poca revisión de los vehículos... lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un quiero y no puedo. aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí. 4 2025-01-30 01:52:39.833374+00 es v5.1 J2.02 {P1.02,J3.03} V- I3 CR-N {} {"J2.02": "Le daría un 5 estrellas de no ser por la gerencia. Desde mi punto de vista demasiado obtusos y cuadr", "O1.03": "A eso le sumamos el mal estado de los karts... Con algunas unidades muy por debajo de las otras, neu", "O2.02": "Hay que reconocer que el trazado y su estado está muy bien. Rápido, con pianos y escapatorias cuidad", "O3.02": "Quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados.", "O4.04": "Para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria.", "R1.02": "En mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables q", "R4.03": "Aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí.", "V4.01": "Lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un "} {0.017093765,0.021014048,-0.016363138,-0.060522318,-0.08616228,0.050792653,-0.00047656999,0.02045063,-0.032591198,0.06356489,0.11628563,-0.006786339,0.027005486,0.034861483,0.03540349,-0.03752912,-0.017603125,-0.021898126,-0.024480375,0.057578888,0.12743331,-0.08559966,-0.09020362,0.0054257023,-0.07534136,0.008589576,-0.0060689305,-0.02205833,-0.07923603,-0.078129545,-0.047744244,0.06218916,0.0929247,0.006355214,-0.0010868593,0.0005947347,0.026759148,-0.084276885,-0.11003638,0.0541333,-0.075558305,-0.033828527,-0.031157725,-0.026982512,-0.00055816467,-0.09218871,-0.016222844,-0.005259993,-0.01416271,-0.054630216,0.017734803,0.022566948,0.06792989,0.017363686,-0.045403574,-0.06293035,-0.006369864,0.043009993,0.113606736,0.016483346,0.0042027687,0.047618017,0.01061248,-0.01067555,-0.033163622,0.017270755,0.0035676132,-0.088617146,-0.07706192,0.08912311,0.079349555,-0.048099972,-0.033990707,-0.0095085185,0.058058176,0.005832625,-0.0350395,-0.009402002,-0.008613941,-0.10711015,-0.0024164484,-0.014963542,-0.026069079,-0.037791133,-0.023377039,-0.015654022,-0.059544157,0.038486812,0.0070886402,-0.015658546,0.053204995,0.057147868,-0.037370827,-0.0032397448,-0.028958865,0.00026728492,0.039694414,-0.060428105,0.014323983,-0.007983817,0.1098989,0.031723112,0.046489023,0.042923052,-0.042894445,0.043306004,0.050361626,-0.05192154,-0.04978313,0.050505336,-0.051612422,-0.004554664,-0.055532157,0.0044785812,-0.08642389,-0.0008551622,-0.09561638,-0.051070765,0.07961801,-0.00092176755,0.014459022,-0.020525174,0.0057034604,-0.032375224,0.020288136,-0.0017553588,0.0058622723,1.2754093e-32,-0.079244584,-0.009874261,-0.017151168,0.011768394,0.028556157,-0.0055589606,0.026012858,0.097610615,-0.041273814,-0.0020746887,-0.017523808,0.0614732,-0.008374332,-0.021966401,0.09453459,0.0056503504,0.008251896,-0.012742755,0.0052583828,0.041938625,-0.017668763,-0.00943514,0.051436618,0.027354566,-0.03981342,0.019316234,-0.0002505799,-0.020909887,-0.0017863592,0.050039783,0.008969687,0.0019954795,0.017680557,-0.08422663,-0.08239548,0.008401534,0.08018012,0.070643194,-0.11480556,-0.034577027,-0.051915534,-0.034074944,-0.017461488,0.050504945,0.022325912,-5.820689e-05,0.09512174,-0.0052254116,0.0015073381,0.05852638,-0.13970356,-0.002858291,-0.019589754,-0.028289871,0.042444915,0.030506078,-0.03729044,0.04128947,-0.055542685,-0.039220948,0.045350563,0.011633851,0.024773326,-0.017891457,-0.023096172,-0.03541978,0.048415136,0.02728189,0.13917246,0.05880012,-0.060789604,-0.050732452,0.009889305,0.044867124,0.0309365,0.0013981651,0.011539493,0.048526563,-0.016418306,-0.011857356,-0.013206737,0.007635687,-0.04484554,0.010871389,0.019656152,0.076622516,0.044712953,0.03783966,-0.05688627,0.14325969,0.033802956,0.07854833,0.015896775,-0.017829137,0.04008717,-1.4531826e-32,0.013166445,0.033803623,-0.009869467,-0.0076084933,0.0134141585,0.010876454,-0.0021981255,-0.0060568023,-0.008475984,-0.08340177,-0.08639099,-0.115442015,0.09015716,-0.02829414,-0.04414257,0.043442953,-0.09208064,-0.10379957,-0.01314362,0.009953154,-0.05769901,0.08579613,0.025480144,0.009361515,-0.011219226,-0.030556511,-0.13133562,0.053044055,-0.12653789,0.035685293,0.015754184,-0.011521174,-0.023558006,0.10908839,-0.069938086,-0.055808958,0.00930975,0.09239262,-0.034691345,0.113549046,0.0062764683,0.03596685,0.0069242613,-0.036065806,-0.013069243,0.029538848,0.07547916,-0.19613832,0.011011401,-0.010523697,0.097520016,-0.05823689,-0.07570677,-0.04524829,0.021682095,-0.04412262,-0.032317325,-0.073711485,-0.06301079,0.042235244,0.05263808,0.045854382,-0.0075478936,0.0056476407,0.049722802,-0.042824015,0.004111434,0.010553936,0.010708731,0.03051496,-0.014954592,-0.014334018,-0.009555438,0.002367857,-0.007969035,-0.020949056,-0.08089413,-0.02449863,0.0027063931,-0.07004255,-0.019782577,-0.0016672027,-0.03180245,-0.06365023,-0.038821224,-0.014175012,0.0034537485,0.038017415,0.0019607882,0.073697224,-0.0030092327,0.03678808,-0.07268435,-0.038874246,-0.02029569,-6.275914e-08,0.03405041,0.03650498,-0.07447155,0.0048757344,0.018634211,-0.10543249,0.008575888,0.026597142,0.00489157,0.025599686,0.03380619,-0.060864527,-0.0013093164,0.07820156,0.00044002905,0.029391993,0.091037326,0.06992676,-0.046948332,-0.009627318,0.101905465,-0.020859584,-0.05921673,0.01091137,0.025430718,-0.029805873,-0.07647177,-0.0017512507,-0.07331422,-0.011333583,-0.029298533,-0.033389952,-0.04905669,-0.08077588,0.05006718,-0.04413893,-0.05656823,-0.0033307096,-0.003960937,0.013014325,0.07049997,-0.047555447,-0.1405971,-0.0030253008,-0.043400746,-0.07463021,-0.054059833,-0.0094375545,-0.010398727,0.06211892,-0.06576743,-0.056273382,0.059703197,-0.002608534,0.039030958,-0.028529273,0.03340772,0.08087942,-0.059676174,0.0058527426,0.052560374,0.09280605,0.017942218,-0.049909666} 0.9375 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:08.675789+00 2026-01-30 02:01:10.342756+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1648 google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB 1 t 1651 Go Karts Mar Menor unknown Var en trivelig kveld. Det er andre ting å gjøre der om man ikke vil kjøre go cart. Diverse spill, airhockey, billjard og et lite lekeland for de aller minste.\n\nSelve bane anlegget byr på tre forskjellige baner. En for de aller minste, en junior bane og en bane for de eldre. På de to minste banene er go cartene tilpasset banen slik at det blir jevnere racing. Opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der. På den største banen kan man variere på selve go cartene, noe som gjør det litt utfordrende å kjøre. Banen i seg selv var også ganske gøy å kjøre. Absolutt verdt besøket og gøy for hele familien. var en trivelig kveld. det er andre ting å gjøre der om man ikke vil kjøre go cart. diverse spill, airhockey, billjard og et lite lekeland for de aller minste. selve bane anlegget byr på tre forskjellige baner. en for de aller minste, en junior bane og en bane for de eldre. på de to minste banene er go cartene tilpasset banen slik at det blir jevnere racing. opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der. på den største banen kan man variere på selve go cartene, noe som gjør det litt utfordrende å kjøre. banen i seg selv var også ganske gøy å kjøre. absolutt verdt besøket og gøy for hele familien. 4 2025-09-02 00:52:39.833374+00 no v5.1 V4.01 {A3.02} V+ I3 CR-N {} {"O1.04": "Opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der.", "O2.02": "Det er andre ting å gjøre der om man ikke vil kjøre go cart. Diverse spill, airhockey, billjard og e", "O4.03": "Selve bane anlegget byr på tre forskjellige baner. En for de aller minste, en junior bane og en bane", "V4.01": "Absolutt verdt besøket og gøy for hele familien.", "V4.03": "Var en trivelig kveld."} {-0.018739754,0.07297191,-0.0010523099,-0.07785724,0.03801132,0.00926939,0.038474977,0.08369923,0.0017930631,-0.0011812411,0.03655069,-0.022696579,-0.025651628,-0.04988672,-0.012062102,-0.04944978,-0.051183663,0.09303048,0.007451668,-0.023173496,-0.009388617,-0.011740666,-0.041008487,-0.05177875,-0.074939944,0.05080076,0.048725598,0.025936136,0.0033723202,-0.036611147,0.022555232,-0.032534778,-0.02261906,0.01840958,-0.018596552,0.08867027,-0.036123797,-0.013413168,0.00030981808,0.09598377,-0.02909435,-0.028282844,-0.099728316,-0.042853802,0.012712486,0.1183837,-0.013872844,-0.06110234,-0.04841508,-0.062746875,0.029233014,-0.02201744,0.04318783,-0.07324372,-0.0037376513,-0.07167009,-0.07189343,-0.010791386,0.10902365,-0.050424393,-0.0722304,-0.03686592,0.014680612,0.00073867966,-0.03401103,-0.041067503,0.013792166,-0.025949512,-0.07028031,0.057809427,0.040102504,-0.026671102,-0.06212377,-0.023032002,-0.069096774,0.078471676,-0.08124625,-0.0039307284,0.02939254,-0.03269769,0.021266412,0.008424302,0.006505146,0.011236149,-0.045835007,-0.0017988307,0.03397216,0.037685927,0.11022058,0.0083919335,0.023335578,0.041855704,-0.07804044,0.031296797,0.04678991,0.0048943968,0.042541787,-0.024477167,0.042935852,0.020575834,0.030665671,0.03812196,-0.0018518966,0.07687143,-0.030586774,-0.04393051,0.08522232,-0.044320144,0.065843366,0.032237466,-0.073454544,0.04179447,0.029303178,-0.16400298,-0.07003201,-0.012824463,-0.04598327,-0.02933253,0.019294892,0.07182319,0.011414199,0.049177002,-0.0076653217,0.10291714,0.03271148,0.012948314,0.04827133,1.6999194e-32,-0.07923236,0.023006257,0.053368013,-0.009965623,-0.02406188,0.006746623,-0.045847706,-0.056572977,0.0046041524,-0.041005913,-0.0040189708,-0.071540534,-0.09254762,-0.029744493,0.030683935,0.031275325,0.040897254,-0.099267155,-0.066774465,-0.0426516,0.043015555,-0.057131,0.041204847,0.06012435,-0.030887289,-0.037286263,0.04390282,-0.06887702,0.00682561,-0.009581948,0.017344456,-0.0858947,0.010762224,0.020797046,-0.0029897352,-0.017894575,-0.006841332,0.022291316,-0.040997837,-0.04207112,-0.04412667,-0.0980391,-0.009244316,-0.009329131,-0.034675762,0.036248956,0.020840038,-0.00996334,-0.035323516,-0.055614736,0.01826643,0.00862006,-0.08905817,0.01112171,-0.011114304,0.0024459744,-0.023989256,-0.010623403,-0.02992695,0.007867459,0.02516432,0.03336098,0.0703382,-0.017629756,0.00059528835,-0.041069034,-0.060284972,-0.005987764,0.041216865,-0.07587156,0.022670172,0.009415366,0.04715325,-0.007221286,0.009536653,0.09052329,0.0017291371,0.037111524,-0.033504438,-0.020022044,-0.1538255,0.0033650328,-0.032430787,-0.06289881,0.043035958,-0.11416508,0.004212473,-0.08691176,-0.019574707,0.07644753,0.019454638,-0.022904934,-0.01170383,-0.06940566,-0.05543965,-1.5760823e-32,-0.10413598,0.090193614,0.00579098,0.07584166,0.06113532,-0.007124445,0.044768706,-0.015783817,0.036909476,-0.0022586088,-0.12612663,0.003056838,0.03755832,0.028934795,-0.029790748,0.09315653,-0.014689972,0.102164604,0.012628983,-0.023567565,0.05642572,-0.025940726,0.031049883,0.084425636,0.017699702,0.09480797,0.062976174,0.036023628,-0.09033128,0.033421945,0.039552007,0.006897986,0.03156298,0.1373003,0.052041147,0.03918881,0.08702882,0.07190532,-0.023514882,0.029094316,0.018390283,-0.023003068,-0.050548542,-0.06286966,0.0004477707,-0.0039510275,0.06879694,0.0031274313,0.066251464,-0.12956823,0.02390158,0.1204517,-0.08085783,0.03318147,0.027576925,0.0013208945,0.029679282,-0.06153311,-0.030408248,-0.032658234,0.045821432,0.023265976,-0.02951749,0.0020941168,0.058474172,-0.06984833,-0.057402708,-0.075802624,0.039843783,-0.029746078,-0.04277917,0.017345453,-0.02640401,-0.056527007,0.00041057798,0.037859615,0.06739184,0.02977443,-0.027081963,-0.05755766,-0.094237074,-0.013125636,-0.0149138095,0.040297326,-0.0028075252,0.062086392,0.049865592,-0.041156586,-0.024818681,-0.013544576,0.020102132,0.10610854,0.037705157,0.093030974,-0.010910775,-5.201355e-08,0.010210233,-0.028606739,-0.05840509,0.043330733,0.110576734,-0.06344874,0.03720374,-0.0733882,-0.072628446,0.09261648,0.009503321,-0.01146831,0.0011754669,-0.018600347,0.050523147,0.036394246,-0.053897627,0.03670571,-0.03833029,-0.0021794678,0.027384453,0.019521706,-0.12207729,-0.017602287,-0.010083836,-0.05142775,0.020467034,0.008319635,0.07979852,-0.050801545,0.07773059,0.06306167,-0.02716417,-0.05272302,0.021045353,-0.020831868,-0.046099145,0.07684671,0.019706508,0.134755,-0.021273509,0.006394876,0.05847161,-0.019139532,-0.114676654,0.06804439,-0.037289854,-0.00019553267,0.012640468,0.045118682,-0.018055726,-0.004442346,0.042531937,0.085134655,0.03424291,-0.03522068,-0.027819226,0.04105957,-0.04620924,-0.06855169,-0.036245387,-0.011793348,-0.044299126,0.025801115} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:05:10.221851+00 2026-01-30 02:01:10.174489+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1728 google ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE 1 t 1731 Go Karts Mar Menor unknown El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los karts y reírse de los grupos de amigos (especialmente de las mujeres) que corren porque ellos se creen mucho mejores conductores y un supuesto jefe de la pista que da vergüenza que trabaje de cara al publico con la poca consideración y educación que tiene (por no recalcar sus deplorables actitudes machistas). Muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad y delimitarme esta misma, un paseo en una barca del retiro seguro que hubiese sido muchísimo mas emocionante. Ya se a que sitio no volver y no recomendar jamas! el personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los karts y reírse de los grupos de amigos (especialmente de las mujeres) que corren porque ellos se creen mucho mejores conductores y un supuesto jefe de la pista que da vergüenza que trabaje de cara al publico con la poca consideración y educación que tiene (por no recalcar sus deplorables actitudes machistas). muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad y delimitarme esta misma, un paseo en una barca del retiro seguro que hubiese sido muchísimo mas emocionante. ya se a que sitio no volver y no recomendar jamas! 1 2025-01-30 01:52:39.833374+00 es v5.1 P1.02 {P2.02,R1.02} V- I3 CR-N {} {"P1.02": "El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio", "V1.02": "Muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad ", "V4.03": "Ya se a que sitio no volver y no recomendar jamas!"} {0.025176145,0.00781502,-0.022195112,-0.041368514,-0.11176736,-0.014287683,0.08773545,0.046037268,0.033205673,0.050216723,0.10652943,-0.026659464,0.00020985727,0.0042668837,0.047069296,-0.05904163,0.043714587,0.004019999,-0.023198863,0.062174324,0.008055692,-0.099274665,-0.095700845,0.0975921,-0.045420855,0.0053219562,0.032407735,-0.05371804,-0.085957505,-0.09031014,-0.06423627,0.040228065,0.090506576,0.00053013215,-0.013778913,0.02530032,0.07336934,-0.046595674,-0.061411437,0.07866056,-0.023164665,-0.015083038,-0.018180862,-0.028583407,0.023039475,-0.08355566,0.035148624,0.0063536502,0.008044628,0.03767848,-0.03327847,-0.0076814396,-0.021676153,0.01094415,0.012276795,-0.06869498,-0.033464007,0.09818187,0.06681435,0.06028821,-0.047100414,0.016040314,-0.035144683,0.009157569,0.03133976,-0.057373576,0.00083971827,-0.012452326,-0.07091974,0.12944223,0.072852865,-0.06818381,-0.06729443,0.012804317,0.00861837,0.038483504,0.0020728663,-0.020726046,-0.040466927,-0.03650985,0.008013198,0.004701508,-0.07093027,-0.057242967,0.016949017,-0.061191276,-0.012738168,0.061280277,0.043737464,-0.05685137,0.04187961,0.10827436,-0.04041631,-0.039849102,0.060318377,0.034363758,-0.049713586,-0.00129693,0.039236892,-0.020151556,0.122185044,0.094660744,0.046308327,0.003110773,-0.112708606,0.033113778,0.0160301,-0.008517756,-0.032359954,0.121576846,-0.081766345,-0.0051294267,-0.090333246,-0.021095071,-0.054821927,0.079166144,-0.02243303,-0.039587792,0.016536023,0.021901933,-0.012765352,-0.024396088,-0.03756667,-0.029889794,-0.031606667,-0.06840323,0.004613319,1.1921206e-32,-0.08931033,0.003686222,0.007251404,0.007008022,-0.037657782,0.024449432,0.02229484,-0.0070925937,-0.06251045,0.020768771,-0.027315488,0.095616855,0.038943056,0.040348563,0.11586139,0.0038884217,-0.010877743,-0.030671848,0.0026989272,0.010084752,-0.036198672,-0.017186992,-0.022946183,-0.024621816,-0.022867093,-0.008735626,0.040737458,-0.00829029,-0.035429165,0.013030128,-0.0039190818,0.028550053,0.04316553,-0.026530595,-0.067657806,-0.037279904,0.020333597,0.026891839,-0.0667993,-0.076249145,-0.08413192,-0.02023046,-0.019373693,0.06084319,0.008197115,0.016699268,0.050852634,-0.07645234,-0.054928333,0.011685417,-0.08805751,-0.042639293,0.002353912,0.023509124,-0.032815024,-0.0033378366,-0.042228587,0.0117099555,-0.08401555,-0.059806075,-0.00035142407,0.027608128,0.05030547,6.6280685e-05,-0.023634203,-0.01307053,-0.013417506,0.048922926,0.08392285,0.07644598,-0.022198072,-0.004707879,-0.060739737,0.012854887,0.03912195,-0.011433378,0.022390693,0.04182856,-0.005235377,0.02471664,-0.014810689,-0.071834356,0.020790635,0.013214245,0.040010244,0.041884545,0.05810468,0.059849758,-0.0033837664,0.15990773,-0.0006188832,0.06851388,0.035709728,0.0015665537,0.029481234,-1.4218683e-32,0.008903557,0.10688138,0.024291357,0.054769658,-0.013117628,-0.020404525,0.034156315,-0.028523881,0.024938375,-0.0877816,-0.12258831,-0.11292718,0.09743544,0.019682378,-0.05721032,0.016334424,-0.0427063,-0.041104566,-0.022425508,-0.062109035,-0.031476725,0.047132332,0.0391141,0.050732628,-0.025086872,-0.08396834,-0.061767228,-0.00799252,-0.12618253,-0.021902349,0.029985478,-0.035300672,0.009635724,0.06045773,-0.05170197,0.023070766,0.04148012,0.03943848,-0.03113449,0.02948566,-0.035597477,0.03586029,-0.055564437,-0.016556174,-0.02278155,-0.033487,0.0667161,-0.18878984,-0.025917705,-0.06865409,0.069396354,-0.003081783,-0.026012946,0.014918893,0.052472282,-0.008406212,-0.036676902,-0.0349868,-0.11758688,-0.017472353,0.02572007,0.016590338,-0.058540452,-0.011548192,0.12840688,-0.07360709,0.0016434791,-0.017732853,0.045784704,0.057316627,0.024637057,-0.026581012,-0.05141713,0.0363923,-0.019438814,0.009344288,-0.054810077,0.014647055,0.02232588,0.03763836,0.028128304,0.0015209356,0.008790268,-0.058163214,-0.00014837737,0.0025732664,0.0029580833,0.084141254,0.015981372,0.045041583,-0.0118572125,0.005147477,-0.03527292,-0.017108893,-0.06481435,-6.1128134e-08,0.035474688,-0.017360825,-0.0012011604,0.029413605,0.017146144,-0.08941294,-0.002365004,0.03762894,-0.01206621,0.09145661,0.00073763664,-0.0713158,-0.021386763,-0.0018397454,0.043546233,0.05021947,0.09269266,0.07906367,-0.028595166,0.0011840072,0.09245214,0.009983084,-0.0848534,0.0753253,-0.01317991,0.036766846,0.009425116,0.06721076,-0.038857494,0.02365543,-0.05325819,-0.09382608,-0.029398706,-0.10409804,-0.064687066,-0.06846709,-0.008824582,0.006805588,-0.0017641454,0.0060458453,0.038566113,-0.048784822,-0.09135792,0.019161617,-0.07869936,-0.052397363,-0.1093743,-0.009634391,-0.041621648,0.038471907,-0.050790697,-0.009379177,0.071325034,-0.066795126,0.018601777,-0.029487543,0.044639073,0.07842127,-0.024540462,-0.028415065,0.056534395,0.061449684,-0.029567925,-0.043176863} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:11.891354+00 2026-01-30 02:01:10.492525+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1729 google ChZDSUhNMG9nS0VJQ0FnSUNWMS1pdE13EAE 1 t 1732 Go Karts Mar Menor unknown Buen circuito para pasar un buen rato buen circuito para pasar un buen rato 4 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Buen circuito para pasar un buen rato"} {-0.069702715,0.04928033,-0.06250995,-0.080150925,-0.069207855,0.029575564,0.05644473,0.025689468,0.0033893713,0.034249753,0.05818326,-0.018688243,-0.0022614049,0.004731959,-0.015035751,0.024255592,-0.08621799,0.065698974,0.003474302,-0.01890422,0.052168366,-0.024320778,-0.020732202,0.10505029,-0.08623934,0.017301725,0.07025894,-0.031486433,-0.023878295,-0.0775322,-0.040661685,0.029398099,-0.020656256,-0.07047196,-0.03173968,-0.02012918,-0.032366853,-0.026240434,0.0101529965,0.018759813,-0.032568585,-0.106180996,-0.02240862,-0.03319962,0.018546693,-0.046940263,0.06301615,0.0042174566,0.06944915,-0.08526367,0.0476811,0.041852746,0.0014187939,0.023619069,-0.048359126,0.0051671714,-0.0056974045,0.0044984133,0.0551015,-0.02823923,0.029613066,0.023298027,-0.013866482,0.02421154,0.020986961,-0.017755957,-0.04064523,0.022553898,-0.07187312,0.026621386,0.12316718,-0.10712641,-0.00012041456,-0.008346531,0.033281118,-0.037278317,-0.07747214,0.055899195,-0.01685591,-0.1061181,0.058542997,-0.08577117,-0.100593455,0.0031974257,0.023555974,0.0379594,0.022314182,0.019171985,-0.022726294,-0.04169699,-0.010647668,0.030546263,-0.07607887,-0.040824037,0.029005814,-0.05771839,0.054493863,-0.012214934,0.023645991,0.09023565,0.01266176,0.045488898,0.010697861,0.010118676,-0.038418375,-0.013931123,0.048304092,0.028842922,0.10910446,-0.05211791,-0.051818468,0.02207699,-0.053526513,-0.020493565,0.06314097,-0.058346897,0.041936286,-0.039071858,-0.008278841,-0.026028357,0.04194833,0.00020558528,-0.088393174,0.037258424,0.00719125,-0.050416496,0.09166005,4.0161988e-33,-0.007618628,-0.0651343,0.0074933404,-0.0075816815,-0.006167941,0.10019811,-0.05998607,-0.03971062,0.021669654,0.017944911,-0.068856105,0.068445735,-0.02891724,0.017200127,0.1243321,-0.029807288,-0.014186481,-0.015777381,0.15255357,-0.07879646,-0.04878431,-0.019019779,-0.042116348,0.10898066,0.038341876,0.0010746203,-0.027875245,-0.038252346,-0.070348434,0.03661517,0.09357269,0.06564518,0.0029148057,-0.06895947,-0.0994645,-0.08327197,0.015716748,0.028351458,0.026490545,-0.04542611,0.06644279,-0.048997097,-0.028918581,0.0922604,0.04427328,-0.1212815,-0.022422908,0.040303536,0.06621494,0.07192621,-0.08426322,-0.045623533,-0.009320778,-0.04890174,0.025931427,-0.03613847,-0.034934565,0.09161335,-0.013675542,0.022690954,0.02885555,0.10211344,-0.06922874,-0.02317308,-0.07605086,0.024095789,0.018364936,-0.023458187,0.03403329,-0.08472446,-0.08367353,0.008759275,-0.06195915,-0.050632603,-0.006014212,0.03464452,-0.058758996,0.047956333,-0.0320134,-0.012306444,-0.116298765,-0.02803341,0.04852187,0.08535701,0.08405817,0.09203421,0.017317588,-0.04390241,-0.0060026823,0.08421246,0.03383554,0.06803807,0.058880858,-0.0066032833,0.07052532,-4.7930095e-33,-0.0058452124,0.009851907,0.025577756,0.058180973,0.0077238674,-0.015247826,-0.09783305,-0.039269954,-0.023305563,0.015864378,0.01060427,-0.083732136,0.08892607,-0.015668735,0.028745038,0.033905327,0.014702312,-0.020292453,-0.07554005,-0.012935752,-0.016874222,-0.005145716,-0.0075644925,-0.059475094,-0.0075461795,-0.012015866,-0.0076910714,0.051457338,-0.029090945,0.0026738516,0.04776486,-0.0025907285,-0.038246676,0.15569855,-0.0021014663,0.012244215,0.08031145,0.04978529,-0.05357368,-0.029649192,-0.019830149,0.047845177,-0.03152147,-0.014586986,-0.051040407,-0.024564948,0.06726157,-0.07128301,-0.0495385,-0.030151892,0.056581065,-0.029137902,0.024679694,-0.0947846,0.00034639298,-0.066084966,-0.060195014,-0.020372234,-0.051308393,-0.08313437,0.08234901,-0.0028699995,0.01005386,0.015911743,0.021135593,-0.029526582,-0.024301615,0.11564947,0.07693809,0.021588417,0.08286799,0.006396324,0.025653047,0.04344995,-0.07601697,0.01898487,-0.025929086,-0.03656354,-0.02173238,-0.031182101,-0.057546202,-0.0021779493,-0.045307305,-0.08853113,-0.07354451,-0.010725286,0.013434543,0.014226543,0.025836077,0.009365365,0.025355725,0.05456101,-0.018226523,-0.026456943,-0.003449232,-2.2391657e-08,-0.020207398,-0.01580271,-0.053861033,0.04175785,0.1023293,-0.078045055,0.04608015,-0.07018236,-0.056771755,-0.025853682,0.008364018,-0.028620701,0.04403323,0.038820054,0.03903294,0.10228792,0.046883278,0.053595502,0.047511563,0.0308706,0.03419127,-0.03326572,-0.015925894,0.056739107,0.07087006,-0.044522703,0.009220914,0.07057273,0.060516268,-0.042891704,0.046656583,-0.004607183,-0.03005624,0.01988181,0.096527904,0.01778045,-0.035961594,0.051067952,-0.01530022,-0.016511835,0.018289069,-0.05852692,0.018720696,-0.007168017,0.03633622,-0.06305069,0.012505815,0.024142977,-0.02355465,-0.032301582,-0.058404528,-0.0072600204,0.0595972,0.015349604,0.054026883,0.028420616,0.01864647,-0.010295978,0.005000964,-0.008033448,-0.020281823,0.16957925,-0.019542413,-0.023445288} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:15.890884+00 2026-01-30 02:01:10.496238+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1654 google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB 1 t 1657 Go Karts Mar Menor unknown De los mejores sitios de karts que he visitado, gente muy amable, buenas medidas de seguridad frente al covid y los coches son una pasada, gran variedad y además él precio es más que correcto.\nLos F200 son los que utilizamos.\nRecomendación, si se va por la noche llevar prendas largas, por los mosquitos. de los mejores sitios de karts que he visitado, gente muy amable, buenas medidas de seguridad frente al covid y los coches son una pasada, gran variedad y además él precio es más que correcto. los f200 son los que utilizamos. recomendación, si se va por la noche llevar prendas largas, por los mosquitos. 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"E1.04": "Recomendación, si se va por la noche llevar prendas largas, por los mosquitos.", "E3.04": "buenas medidas de seguridad frente al covid", "O1.02": "De los mejores sitios de karts que he visitado", "O4.01": "Los F200 son los que utilizamos.", "P1.01": "gente muy amable", "V1.02": "él precio es más que correcto"} {0.017993197,0.047507055,0.04408122,-0.029816281,-0.032680266,0.057818,0.06740337,0.023807425,-0.036333542,0.053444207,0.06131594,0.014226655,-0.08487463,0.021853512,0.055559687,-0.028681627,-0.040498894,-0.060192272,0.015208548,-0.01777207,0.049040806,0.019487238,-0.023982422,0.044421278,-0.15596385,-0.07131396,-0.022181027,0.053131472,-0.00061288197,-0.043368593,0.0022123433,0.085367374,0.0056326403,0.010689607,-0.047806162,-0.018156024,-0.020644793,-0.06116485,-0.036133222,0.10531914,-0.050801672,-0.051665746,-0.02179996,-0.040065862,-0.015890306,-0.0391149,-0.03370583,0.0848684,0.05657879,0.03448247,-0.018991835,-0.06371506,-0.009362442,-0.029711334,-0.0011802701,-0.03157379,-0.082170494,-0.020048428,0.08473147,0.068671495,0.010922587,0.04493383,-0.079660535,0.022838823,-0.03354988,-0.014619913,0.003152363,-0.053354565,0.020171633,0.12365856,0.08036555,-0.055442136,0.028430048,0.026020171,-0.028591935,-0.012547836,-0.029920353,-0.032606885,-0.02376732,-0.110790394,0.026156237,0.0018571453,0.03921222,-0.11413095,0.0028752396,0.0009139664,-0.04616891,0.0053839446,0.013228471,0.07176503,0.03088651,0.03962296,-0.04371761,0.014325196,-0.10338367,0.06747985,0.069246426,-0.062345754,0.010870048,0.042955488,0.0524022,-0.027852902,0.06901946,0.090928815,-0.06910797,-0.0073009664,0.0085937185,-0.005159356,0.00031526882,0.02452265,-0.078459404,0.045585863,-0.04900188,-0.0036033087,-0.17938735,-0.0596181,-0.058851615,-0.102019675,0.00043472226,-0.07402875,0.06447636,-0.026607689,0.014239526,-0.04250401,0.054056667,-0.0800156,-0.023712926,8.985763e-33,-0.04904209,0.009056247,0.020544259,0.014374025,0.04049741,-0.069439486,-0.015888672,-0.022455815,-0.040443096,-0.012204286,-0.07550854,0.053302612,0.0025724187,-0.011741373,0.060175076,0.018138751,0.01159741,-0.045885317,0.046480604,0.021663444,-0.0048765875,-0.022609478,0.09480294,0.01074207,0.053027365,0.094486624,0.00994205,-0.026407514,-0.07863055,0.056737676,-0.008070907,0.0109263705,0.019369204,-0.04124639,-0.03702619,0.026995262,-0.00040355427,0.0010678244,-0.10118546,0.007323754,0.05673956,0.027068641,-0.029987296,0.031963106,-0.015576384,-0.027441258,-0.0022193524,0.033066083,0.015551194,0.06452752,-0.036954075,-0.016446348,-0.0349747,-0.041652992,0.03948111,0.06681158,-0.008459361,0.00039460458,-0.058303125,-0.025677051,0.09189967,-0.052569278,0.012113378,-0.03866117,-0.017579462,-0.077388905,0.06608017,0.015248952,0.118345864,-0.017129403,-0.019097889,-0.04422093,0.035872452,0.01691525,0.03659183,0.038483165,-0.027713148,0.037922695,-0.044007633,0.056022055,-0.0595143,-0.0073763905,0.07261534,0.06816559,0.044277947,0.0066785407,-0.00068500574,0.060745247,0.03503379,0.117781326,-0.003392665,0.03967246,0.09997796,-0.022861104,0.008558442,-1.12210714e-32,-0.007884889,0.061755344,0.035075292,0.03673744,0.0007710664,0.031060979,0.010072312,-0.045832176,0.0074009015,0.016389998,-0.08527092,0.023354275,0.032644138,-0.10903225,-0.004297349,0.06180553,0.047926467,-0.065259896,-0.021413226,-0.029160384,0.0051228637,0.085623436,0.066358544,-0.0206083,-0.038740557,-0.03794055,0.016241832,0.044012506,-0.12544373,-0.010540376,0.034246627,-0.08077974,0.06511372,0.051764455,-0.030243538,-0.032528456,0.03757845,0.02714309,-0.026478557,0.09513827,0.115024544,0.08243159,-0.02767627,-0.04334269,-0.0058164936,0.032128774,-0.0045297476,-0.09864768,-0.0079439,-0.0452775,0.07724896,-0.029744133,-0.14014347,-0.067135945,-0.016582081,-0.021438936,-0.012638305,-0.06729075,-0.039421923,-0.012209238,0.045543365,-0.032472964,-0.029195013,-0.04357382,0.03693819,-0.012932834,-0.04619258,0.06407071,0.10100323,0.0065990724,0.032215044,-0.04414548,-0.09153152,-0.022073971,-0.05152834,-0.026691297,-0.019766757,0.033665925,0.054675676,0.012731432,0.017612267,-0.050799914,-0.034365628,0.023612149,0.0005685732,-0.029964464,-0.023584984,-0.025523307,0.027762085,0.04502504,0.011543423,0.033511978,-0.008120983,-0.057946026,0.0038740078,-5.3313908e-08,0.03941204,-0.019463291,-0.08494341,-0.011219534,-0.008786957,-0.065233864,-0.07749147,0.012749986,0.016353399,0.13036886,0.005100887,-0.017468354,0.041899804,0.021422334,-0.009802614,-0.01631996,0.013273563,0.12831953,-0.12438571,-0.027056629,-0.025625516,0.07898056,-0.043890145,0.027357813,0.030483542,-0.061363824,-0.049545914,0.011757006,0.046495777,0.03460117,-0.098553315,0.07583645,-0.06563299,-0.061736915,0.003223119,-0.06741155,-0.02736887,0.027757121,0.02789544,-0.006049102,0.04635278,-0.075252354,-0.11968014,0.031130234,-0.090790406,-0.0742421,-0.02355427,0.00068595883,-0.07757025,-0.024314651,-0.02704932,0.02086467,0.0016975432,0.005688854,0.006889346,-0.053749938,0.01013265,-0.043384533,-0.05625256,-0.08548245,0.03318696,0.04799907,0.07426579,-0.04231119} 0.9142857 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:26.874603+00 2026-01-30 02:01:10.195962+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1701 google ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB 1 t 1704 Go Karts Mar Menor unknown El trato de las trabajadoras hacia los clientes ha sido nefasto, guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas maneras que solo podemos echar una ronda porque cierran pronto y tienen más gente, cuando ya teníamos reserva para tres rondas, que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje. Mala organización y mal trato el trato de las trabajadoras hacia los clientes ha sido nefasto, guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas maneras que solo podemos echar una ronda porque cierran pronto y tienen más gente, cuando ya teníamos reserva para tres rondas, que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje. mala organización y mal trato 1 2025-03-06 01:52:39.833374+00 es v5.1 P1.02 {} V- I3 CR-N {} {"J2.02": "guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas", "P1.02": "El trato de las trabajadoras hacia los clientes ha sido nefasto", "P3.05": "que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje"} {-0.03622304,0.014860557,-0.04590644,-0.08628647,-0.14084397,-0.04696676,0.08391052,0.086872175,0.044268932,-0.047892284,0.044938054,0.0967102,-0.028627368,-0.029228434,0.06553975,-0.019066578,-0.025480602,-0.023390152,0.00040292495,0.009302582,-0.0053092013,-0.049719006,-0.10288967,0.052101444,-0.035068966,-0.059776608,0.00845718,0.0033502853,-0.028039463,-0.012689953,-0.019439824,0.06141856,0.029686168,0.03581755,-0.09746179,0.02946613,-0.015192341,-0.048412666,-0.056567583,0.07511827,-0.03572047,-0.0068646055,-0.07781167,-0.027981712,-0.033074595,-0.10942841,-0.018586008,0.08538428,0.004290236,-0.027774878,-0.11165263,0.011450637,0.018090712,0.05166629,-0.065030314,-0.0056407424,-0.010315999,0.031212866,0.022997623,0.056743976,-0.0048792097,0.037135534,-0.03922791,0.018357197,0.005532403,0.022416772,-8.9862806e-05,0.006263376,-0.047128987,0.030673875,0.0053235088,-0.06745533,-0.07135968,0.015953843,-0.06531003,0.011360392,0.0025899333,-0.03985071,0.019405616,-0.018075049,0.031673685,-0.009766684,0.0009681368,-0.016396845,-0.00037984268,0.026048707,-0.00028215043,0.06489714,0.020317273,-0.0045296033,0.015019237,0.10573351,-0.007585114,-0.028265588,-0.09325097,0.027552381,0.048368137,-0.06203306,-0.018666757,0.029321225,0.05921844,0.017064909,0.076427184,-0.0016317369,-0.13416564,0.0546899,0.032888312,-0.039879702,0.02883245,0.089888565,-0.09232472,-0.041616343,-0.068389796,-0.045246687,-0.0433173,0.062340077,-0.028785013,0.024125945,0.04657149,-0.07843842,-0.042455602,-0.0060328622,-0.0125756925,-0.056979258,0.034818333,0.0023379195,0.047997996,1.4163508e-32,-0.029917272,0.026645409,0.007008506,0.054655638,0.004902638,0.069924206,0.012158028,-0.0023153685,-0.038379453,-0.0031781362,-0.08229631,0.01886731,0.0370017,-0.022994831,0.04004999,-0.029733919,0.008566859,-0.0053393296,0.057662506,0.019245334,-0.012833822,-0.016266106,0.021346617,0.06390243,0.063013464,-0.02417921,-0.05480464,0.007977009,-0.015665507,0.036296725,0.0061789737,-0.034939244,-0.018780509,-0.0042174184,-0.03828489,0.006181928,-0.008153889,0.026973115,-0.033052027,-0.051668566,-0.028815875,-0.0065593105,-0.018059827,0.026003696,-0.04766866,0.056164343,0.0013195348,-0.059760854,-0.028962791,0.028157463,-0.11600233,0.011568177,-0.018329399,0.0056717433,0.034906067,0.033534236,-0.054803394,-0.019348968,0.0041937507,-0.09095692,0.10417193,-0.007725074,-0.008741363,0.01258734,-0.001449902,-0.07832592,0.004923601,0.008222654,0.091743745,0.0440435,-0.07294429,0.064506635,0.012203915,0.0136338305,0.027594702,0.0056807986,-0.11209693,-0.018171288,0.023636112,0.052847188,-0.0017742085,-0.022747781,0.049240876,0.0403195,0.13242434,0.08641481,0.046927314,0.021655565,-0.05128667,0.16999932,0.029466854,0.130948,-0.000484841,0.018130234,0.072441414,-1.6769234e-32,-0.047622547,-0.010359629,0.004435352,-0.03232966,-0.002925458,0.0006482403,-0.0056912336,0.0056124944,-0.030500492,-0.039125167,-0.027436228,-0.11198731,0.018170584,-0.030494925,-0.04410392,-0.009716963,-0.02376179,-0.09492963,-0.07676014,-0.10088707,0.008340718,-0.015179922,0.019470628,0.019066993,-0.0058422186,-0.13110755,-0.014023275,0.010612514,-0.037854645,0.016679674,0.08089002,0.053771865,0.022966474,0.08081222,-0.018342713,0.02931625,0.004033941,0.06218159,0.079393774,0.024808913,0.07091745,0.0014370527,-0.020234434,-0.015877036,-0.05744318,-0.020862237,0.029140282,-0.14579071,-0.09752721,-0.047583804,0.12443044,0.017052673,-0.024686936,-0.018899191,0.013972994,0.0629231,-0.04026855,-0.10784398,-0.048472483,0.002793327,0.052723695,-0.07925832,-0.061898332,-0.017898418,0.10303627,-0.047025025,0.009415871,0.06102123,0.071007565,0.021486716,0.051133625,-0.03226878,-0.1081415,0.04461957,0.05992069,-0.04091443,-0.11318455,-0.028358746,-0.05241909,-0.030859128,0.04063176,-0.025348917,-0.008950776,-0.045231417,0.008684882,-0.046387665,0.014803262,0.045658723,-0.030566264,-0.02052348,0.033169657,0.0329238,-0.08266103,-0.0183142,-0.0251121,-5.8040982e-08,-0.042959265,-0.08595209,0.00095828,-0.013471163,0.026247323,-0.012272198,0.028150104,0.041458525,0.013194835,0.09423933,-0.045124028,-0.01739577,-0.05358249,0.08509272,0.08137301,0.03896167,0.073719665,0.023155095,-0.005871522,-0.026118329,0.067044385,-0.018387305,-0.075622745,-0.026468564,0.034274068,-0.023347726,-0.0412955,0.07506979,-0.023065813,-0.038388655,-0.04248468,-0.002635034,-0.047742788,-0.07074714,-0.08956595,-0.01914085,0.013957342,-0.045464437,-0.020893978,-0.06504959,0.07588414,-0.0021553796,-0.06850508,0.028172217,-0.021438984,-0.08225149,-0.0075137294,0.009761086,-0.0031229053,-0.05914471,-0.06813555,-0.010406662,0.16075343,-0.04845041,0.027152102,-0.0868134,0.028812934,0.062207714,-0.044692874,0.021960186,0.024751581,0.0695026,0.012130984,-0.08351999} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:06:33.532397+00 2026-01-30 02:01:10.373294+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1730 google ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE 1 t 1733 Go Karts Mar Menor unknown Circuito muy chulo. Los karts funcionan genial y el personal está muy atento para que todo vaya sobre ruedas.\nFue una tarde muy divertida. Repetiré seguro. circuito muy chulo. los karts funcionan genial y el personal está muy atento para que todo vaya sobre ruedas. fue una tarde muy divertida. repetiré seguro. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"E1.03": "Circuito muy chulo.", "O1.02": "Los karts funcionan genial", "P3.01": "el personal está muy atento para que todo vaya sobre ruedas.", "V4.03": "Fue una tarde muy divertida. Repetiré seguro."} {-0.04084212,-0.0050610183,0.019822534,-0.039815765,-0.07280615,-0.020186625,0.06016972,0.039356314,-0.023147667,-0.004444191,0.09476688,0.022341212,-0.05933269,-0.020237371,0.06536975,0.021899303,-0.05178786,0.027396198,0.028619576,-0.04588692,0.060467366,-0.035293482,-0.06244075,0.08669643,-0.14370584,-0.061703384,0.030246327,0.061619118,-0.04363879,-0.114885665,-0.03208315,0.11963319,0.048940312,-0.053176694,-0.037505705,-0.026588341,0.0046263034,-0.051722042,-0.018894251,0.042152986,-0.054813538,-0.04224852,-0.034074347,-0.047306594,0.04442958,-0.056556385,0.018504309,0.024883425,0.056717996,-0.0025010896,-0.010270019,-0.027621765,0.029546198,-0.026375081,0.017825328,-0.04783035,-0.0837838,0.07322357,0.14714023,0.018982714,0.04325352,0.04748617,-0.037296183,0.033543833,-0.026486972,-0.06393674,0.058455396,0.010357202,-0.027156806,0.016312245,0.06853849,-0.09953889,-0.006902377,0.006603814,0.0060662497,0.02127675,0.01336004,-0.0060490957,-0.063386135,0.0004953885,-0.036014553,-0.01133093,0.0011082204,-0.0668813,-0.019763453,-0.009283491,-0.011482601,0.028790956,0.033098154,-0.04541938,-0.015944492,0.0223448,0.027101258,-0.03775776,-0.007953039,0.011301929,-0.00442561,-0.10962637,0.027247623,0.052153178,0.08911742,0.044811063,0.07681159,0.01669487,-0.04785219,0.05382414,0.002650939,0.012258597,0.0016811249,0.010635748,-0.038628843,0.058107223,-0.033084307,-0.03820759,-0.055172026,-0.015671242,-0.059828054,-0.0021123579,-0.017731998,-0.005438639,0.000353767,0.027302457,-0.05527932,-0.0130661875,0.019004276,-0.051473904,0.1088266,1.0363189e-32,-0.099169314,0.0004242496,-0.047678992,0.024093237,0.056067977,-0.04789084,-0.016760277,-0.08441307,-0.07536637,0.0044349665,-0.004882361,0.022212971,-0.04023069,0.03634681,0.060982868,-0.009210225,-0.025916107,-0.08256878,0.060687393,0.012325893,-0.017352026,-0.08411723,0.008260528,0.0037034377,-0.0011928348,0.09110866,0.07827598,0.0020501507,-0.058477387,0.026338184,-0.041589826,0.05274512,0.02503551,-0.012173529,-0.083174326,-0.009547911,0.03952646,0.024984665,-0.059627216,-0.039628886,0.026486397,0.016752213,-0.07851895,0.023293061,-0.016698563,0.009276014,0.07462405,0.027482564,0.094446264,0.06579168,-0.11678468,-0.06734801,-0.048651658,0.0066035213,-0.012904078,0.006437606,0.0116095925,-0.008851567,0.013141333,-0.057902593,0.04442989,0.0042128065,-0.010934083,-0.05847705,-0.09486723,-0.002285841,0.015433177,-0.032513514,0.10572459,-0.006796669,-0.09952111,-0.013935512,-0.0827172,0.03218804,0.024505014,0.01691104,-0.057923198,0.056974187,-0.009376296,0.037054937,-0.037579615,-0.0069748214,0.028660703,0.038373373,0.1210561,0.057786636,0.05191861,0.058320746,0.014811663,0.12644243,-0.09128699,0.102720305,0.06622634,0.04310379,0.07760161,-1.1114086e-32,-0.028285462,0.010945315,0.0526215,0.118934624,-0.0019905136,-0.002644781,0.029978959,-0.035234544,-0.025230095,-0.018678356,-0.0967423,-0.046420418,0.027474446,-0.034113683,0.024786858,0.062757336,0.03876528,-0.06596183,-0.057488378,-0.046376564,-0.031421755,0.08306592,0.004404459,-0.048913196,-0.05823057,-0.017135978,-0.045585223,0.018848492,-0.07519464,0.040213402,0.009014739,-0.057804238,-0.028792195,0.02983862,-0.030565642,-0.027413746,0.07672158,0.11487421,-0.03309367,0.054705556,-0.020149032,0.08854598,-0.017098233,0.0046610944,-0.05824138,0.004454572,0.072136514,-0.17673564,-0.02545839,-0.05912328,0.045784943,0.0141720055,0.028627278,-0.03359897,0.014317406,-0.017436113,0.017087871,-0.020104235,-0.082291596,-0.039975032,0.058728214,-0.0013873534,-0.009228401,-0.09305626,0.13443637,0.012508857,-0.032970935,-0.023566052,0.04823852,0.011815031,0.022282362,0.03138279,-0.008237826,-0.020170977,-0.0012910198,-0.07333613,-0.129142,0.042533383,0.027726552,0.01251221,0.069288686,-0.046599258,-0.032000847,-0.028402895,-0.0020021973,-0.01990336,-0.02398853,0.047952984,0.060208023,-0.0042043882,0.02686436,0.031119604,-0.05212614,0.014884861,-0.016123699,-4.452445e-08,-0.010025689,0.0049550585,-0.076555625,0.023902947,0.025073534,-0.06730635,-0.060606785,0.058277305,-0.013723266,0.02636461,-0.026841361,-0.012037975,0.013483135,0.115936056,0.0152362045,0.03471643,0.06772596,0.1665578,-0.013455696,0.007305301,0.07235973,-0.014179179,-0.027731234,0.08959678,0.034003105,-0.0059182043,0.014293278,0.069779456,0.02673845,-0.019914225,-0.042951845,-0.009277918,-0.043185152,-0.041675888,-0.018037431,-0.026748396,-0.03829855,0.05182543,0.02073895,0.019665299,0.042621173,-0.06500549,-0.067650236,0.0008026679,-0.09171205,-0.03808554,-0.06192491,-0.06049876,-0.034273885,0.042961583,-0.037149895,-0.05065709,0.040511016,0.04849246,0.05626436,-0.05031434,0.048105158,-0.019492608,-0.04705694,-0.063147545,0.0017736079,0.061767243,-0.017551798,-0.08833784} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:01.827013+00 2026-01-30 02:01:10.4994+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1731 google Ci9DQUlRQUNvZENodHljRjlvT2tGa09XMTNOM2gzTjFwa1NqbG9VR3RMY1ZBd1VHYxAB 1 t 1734 Go Karts Mar Menor unknown Estupendo sitio para disfrutar estupendo sitio para disfrutar 5 2025-10-02 00:52:39.833374+00 pt v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Estupendo sitio para disfrutar"} {-0.05565503,0.0528499,-0.014710026,0.00059951923,-0.059795696,-0.032155376,0.031168116,0.06229824,-0.009920195,0.019508269,0.037903022,-0.0019343495,-4.280778e-05,-0.040139444,0.0052241464,-0.020419141,-0.0032997765,0.09481753,0.02173219,0.06320008,0.05146957,-0.034324206,-0.10692986,0.12695652,-0.059591785,-0.0018925766,0.022521386,0.018539047,-0.02455335,-0.06697426,-0.016154092,0.0015503443,0.027013728,-0.046717178,0.0369329,0.01840246,0.069331735,-0.1351396,0.026499733,-0.02708573,-0.117037795,-0.06628543,-0.025049178,-0.10118774,0.024365488,-0.00042701687,-0.010137824,0.10482705,0.057028763,-0.05977363,-0.06925252,-0.02610981,-0.005550919,0.06923004,-0.05009162,-0.0050959834,0.020853722,0.028980486,0.025930595,-0.013547018,-0.015164378,0.054717433,-0.002504609,0.03546442,0.016322568,0.023375101,0.043790046,-0.06580281,-0.06307591,0.13181451,0.016877986,-0.041133277,0.063694894,-0.029525138,-0.011007035,-0.02262297,0.001616785,0.0055224067,0.045624163,-0.08302531,0.077256344,0.023856426,-0.046490867,-0.043685373,-0.027917048,-0.0071743582,-0.07310145,-0.011890811,0.005916819,-0.015527005,-0.022833832,0.065126486,-0.09511229,-0.004438112,-0.018949253,0.020351756,-0.034838323,0.006185764,-0.0017053026,0.057020735,0.06963416,0.040542427,-0.032839842,0.002219693,-0.076041006,-0.012718367,0.034329798,-0.09199648,-0.03250742,0.047525533,-0.10370977,-0.01765545,-0.05699655,-0.03197907,-0.1259055,0.01674835,0.04318988,-0.10072107,-0.032570872,-0.10351419,0.06750614,-0.058636557,0.01734101,0.015787195,0.038908515,-0.08683212,0.04308866,2.0870566e-33,0.009359926,-0.07794913,0.025956063,0.013596224,0.01655445,0.05901413,-0.07605432,-0.043938674,-0.029262222,-0.013509067,-0.06722957,-0.0034857374,0.0023668704,0.0018440619,0.14418736,-0.015818862,0.02196765,0.062984556,0.026821498,0.02114191,-0.00454208,-0.0044966456,-0.033304933,0.0028599468,0.019405983,0.101338975,-0.037283786,-0.05009913,-0.15263218,0.06055076,0.03604898,-0.015485767,-0.021601733,0.021292,0.009314522,-0.089569055,0.020064566,0.016549464,0.0010641211,-0.040302053,0.029597703,0.058730192,-0.017840732,0.01664251,0.01062274,0.018506868,0.06458966,-0.015865471,0.08045375,-0.002534384,-0.060210086,-0.06778939,0.03570993,-0.10963478,0.06735873,-0.042549647,-0.081369236,0.06998565,0.008590782,-0.030416545,0.05762079,-0.041055623,0.009608842,-0.011738488,-0.05279522,-0.035025083,0.016338965,0.033042766,0.10474623,0.041397728,-0.102242105,-0.02654552,-0.015827553,0.09765507,-0.054098733,0.016634839,0.002928675,0.0005482289,0.0032099155,0.010157158,-0.032432232,-0.011645381,0.03620399,0.014879227,0.106839284,0.08146899,-0.014629891,0.07101939,0.0061713075,0.06643977,-0.0174478,0.031852875,0.015030946,-0.081272446,0.08364761,-4.647099e-33,0.00165065,0.030468663,-0.04515246,0.019192785,-0.06312117,-0.011473247,-0.056101944,0.027879164,0.04034751,-0.016301272,-0.07882847,-0.08184518,0.1090016,-0.045852818,-0.052777648,0.16898853,-0.011299314,-0.053478193,-0.093548775,0.00767528,-0.02858337,0.0066919653,0.0431138,-0.062096167,-0.016716475,-0.06315757,0.01653947,0.06014673,-0.03560169,0.000152399,6.247296e-05,-0.0064552873,-0.06988005,0.07106988,-0.009873344,0.02314506,-0.0058800755,0.012850062,0.008288521,0.032666553,0.012460194,0.0219415,0.0123127755,-0.03229432,-0.0043909093,0.0060567004,-0.059552528,-0.066751875,-0.02410646,-0.032886468,0.0036368112,0.0038503539,0.031125017,0.009497163,0.06400592,-0.077575974,-0.043588515,-0.0024067305,-0.09656676,0.0397575,0.08494919,0.05337676,-0.093948394,-0.026526527,0.06435132,-0.007269587,-0.0698219,-0.022591826,-0.010255691,0.13160656,0.06131477,-0.07967885,-0.0576971,0.03863754,-0.056720547,0.04231633,-0.035712514,0.061553087,0.023229968,0.062492102,-0.03211995,-0.044767138,0.022643203,-0.050231718,-0.04904234,0.002912857,-0.063834116,0.0520129,-0.017150458,0.0051012924,0.045109343,-0.045630876,-0.0041204514,-0.01695756,-0.029688738,-2.0859508e-08,0.004078144,-0.11066238,-0.00841178,-0.012828255,0.012547443,0.019742534,0.015031882,-0.016057504,0.008398434,-0.0069348346,0.01791453,-0.06063533,0.0801215,-0.021238938,0.008531745,0.04951414,0.05275428,0.10855357,-0.022536349,0.05651419,0.097969875,-0.071815,-0.037689548,0.0009041458,0.050314493,0.01213456,0.022462737,-0.018490722,-0.00657126,-0.01202413,0.0075700344,0.031822897,-0.026116583,-0.10357894,-0.035603497,0.067579344,-0.0637203,0.045491133,-0.027033381,0.03305006,0.05811693,0.08007025,-0.0040620156,0.007700908,0.022889666,0.012471865,-0.027449733,0.028022459,-0.05440795,0.0018132397,-0.013745064,-0.026768269,0.10447952,0.011283367,0.039461736,0.03551763,0.099152565,0.05859686,-0.0022877133,0.02052817,0.08185142,0.07478285,-0.0042403797,0.0136432415} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:05.937065+00 2026-01-30 02:01:10.508881+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1733 google ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE 1 t 1736 Go Karts Mar Menor unknown Pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando habíamos reservado días de antelación, pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando les estábamos hablando bien, ningún respeto por los clientes. pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando habíamos reservado días de antelación, pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando les estábamos hablando bien, ningún respeto por los clientes. 1 2025-03-06 01:52:39.833374+00 es v5.1 J2.01 {R1.01} V- I3 CR-N {} {"J2.01": "Pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando había", "P1.02": "pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando le"} {0.014325937,0.09566453,-0.036789723,-0.088719666,-0.065284975,0.009604888,0.057520747,0.103519455,0.00017352725,0.028393224,0.071300134,0.068961084,0.026469972,-0.013118606,0.081157945,-0.008019061,-0.0030199802,0.013429084,0.011931521,0.0681663,0.002457445,-0.0333327,-0.10274537,0.036000844,-0.08307143,-0.057459224,0.019432824,-0.032459106,-0.0373164,0.0049085966,-0.053510558,0.035926405,0.012658516,0.017052641,-0.09745473,0.061844017,0.016888801,-0.040556148,-0.057188276,0.077230215,-0.094567105,0.0024852436,-0.08093964,0.033708945,0.037723064,-0.08928811,-0.007379647,0.103143916,0.03035727,0.0034459142,-0.1039038,-0.012710977,-0.0063110054,0.04326246,-0.020678865,-0.035954617,-0.028756034,0.047014143,0.036207646,0.06379045,0.0019157474,0.047013298,-0.04225734,0.010023641,0.023816487,0.00037697327,0.00558403,-0.053116396,-0.07469565,0.08385456,0.064614676,-0.095912434,-0.06413915,0.0042422097,-0.08835248,0.03716159,-0.020367904,0.008396235,0.00559307,-0.04262367,0.0430622,-0.022133578,-0.03934435,-0.011149465,-0.034740347,0.012703514,0.00396531,0.012739657,0.0641774,0.0041114376,0.01619644,0.10757378,-0.035606075,-0.04572122,-0.07914371,0.04771463,0.04162889,-0.019410305,0.0019378343,0.027245432,0.056903318,-0.009943897,0.038335897,-0.034329623,-0.04125509,0.021684332,-0.036500525,-0.022144316,-0.046842065,0.09321784,-0.09209814,-0.01122775,-0.03190471,-0.015211864,-0.021363314,0.04904547,-0.09847652,-0.016561992,-0.06330031,-0.0556231,0.032846633,0.021668341,0.005292596,-0.0692411,0.0470394,-0.042392027,0.11734347,1.3970746e-32,-0.051703542,-0.053279072,-0.042033445,0.061727695,0.035511363,0.013102453,0.027543394,-0.004501709,-0.040093664,-0.03866803,0.02365388,-0.0053177006,0.017909689,0.00045517244,-0.008548697,0.009810411,0.013571702,0.018271476,0.041304503,-0.060208812,-0.041960172,-0.04110168,0.034742627,0.018603457,-0.016867474,0.038553942,-0.0007927176,0.042672936,-0.025163556,0.019577207,0.037023474,-0.0028973198,0.003268091,-0.021891069,-0.06036613,0.02677343,-0.03978853,-0.02467559,-0.037248574,-0.02241211,-0.07414271,0.10285423,-0.021296717,0.024688767,0.0025907415,0.027297176,0.03658735,-0.018021725,-0.044362485,-0.0069371853,-0.08204986,-0.02868262,-0.03430119,0.045147788,-0.030461598,0.09639423,-0.0116097955,0.013219828,-0.059533983,-0.075597994,0.041025955,-0.016822115,-0.004710056,-0.047304675,-0.0069803926,-0.062138505,0.012041507,-0.024194272,0.12526925,0.0008557815,-0.0021251724,0.031244129,0.011229015,-0.0092122955,-0.06303568,-0.023417566,-0.028103428,0.030006245,-0.012309757,0.0137505075,-0.0005502314,0.016715983,0.0058167437,0.08097705,0.085859485,0.11105421,0.042131066,0.01691013,-0.08926152,0.123569116,0.01768189,0.04576096,-0.023095535,-0.050988715,0.12502351,-1.504279e-32,-0.048049964,-0.046346,-0.010238918,0.05381325,0.0023623693,-0.06383397,-0.051780153,0.0076825623,-0.066278085,-0.07509328,-0.05859845,-0.11791877,0.045127064,0.04618644,-0.053696107,0.0011798097,-0.018133365,-0.06673045,-0.032480285,-0.074285366,0.022926647,0.012420057,0.06670868,-0.003476343,0.048471563,-0.121168815,-0.038508616,-0.0012678406,-0.0789796,-0.078923866,0.1353002,0.0013439801,0.007309584,0.044620633,-0.043952603,0.012596369,0.08029682,0.032940675,0.005271539,0.007856129,0.059238523,0.022575188,-0.054535255,-0.017627377,-0.016131938,-0.022959229,0.037345752,-0.13363399,0.003410972,-0.057250787,0.051644936,-0.05805909,-0.021727413,-0.03587184,0.05126174,-0.028481737,0.037160944,-0.11305334,-0.008528993,-0.05461167,0.09652906,-0.009306568,-0.022765597,0.020697013,0.09986516,-0.033413753,-0.055224035,0.0408759,0.049462587,0.05264471,0.09303874,0.014815708,-0.14961886,0.047260344,-0.00065676315,-0.023655597,-0.09428034,0.011781474,-0.046460655,0.0190071,-0.040426526,-0.009450975,-0.032162186,0.050851878,-0.016175395,-0.05400296,0.035656318,0.041813053,-0.004030776,0.0416652,-0.061536476,0.011996715,-0.04360421,-0.03996926,-0.056167323,-5.564068e-08,-0.058349784,-0.021650445,-0.013700062,-0.02657337,0.0089206975,-0.016393326,-0.00046280367,0.067429185,0.010090235,0.10319401,0.015398427,-0.045161966,-0.018543312,0.04003252,0.0186272,0.0068799,0.13163927,0.032160882,-0.057861127,-0.040041894,0.05345183,0.012472525,-0.031869635,-0.007202084,0.07650284,-0.040250283,-0.014999704,0.035483863,-0.10977278,-0.033961006,-0.13304459,-0.0413796,0.04372269,-0.08263038,-0.010315361,-0.0011795235,0.009026543,0.021424767,-0.0046776566,-0.025911428,0.03863161,0.029812701,-0.005051337,0.04384326,0.0071515203,-0.060708255,0.015345947,0.030348154,0.017018247,-0.014232211,-0.0774883,-0.06906833,0.08989065,-0.074662544,0.0059509794,-0.02408271,0.015417755,0.10585554,-0.011716826,0.023908371,0.069271445,0.13857158,0.015086944,-0.0414514} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:23.711511+00 2026-01-30 02:01:10.51521+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1780 google ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE 1 t 1783 Go Karts Mar Menor unknown La primera vez y no la última. Ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de personas que estan allí que en todo momento te hacen sentir como en casa. Para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy estables y que se lo van a pasar muy bien. Un 10!!!! la primera vez y no la última. ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de personas que estan allí que en todo momento te hacen sentir como en casa. para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy estables y que se lo van a pasar muy bien. un 10!!!! 5 2024-01-31 01:52:39.833374+00 es v5.1 P1.01 {O4.03} V+ I3 CR-N {} {"E4.01": "Para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy e", "P1.01": "Ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de perso", "R4.03": "La primera vez y no la última.", "V4.03": "Un 10!!!!"} {0.007666315,-0.005451267,0.010537458,-0.07841844,-0.04781766,0.027833816,0.02799648,0.034460697,-0.015138857,0.021484336,0.077303186,-0.005522981,-0.007882277,0.033532355,0.07344074,0.009478169,-0.02526253,0.010808206,0.030315472,-0.017930908,0.09522512,-0.024769658,-0.0455137,0.037159685,-0.03890625,-0.005910515,0.011395014,0.01829439,-0.07070386,-0.113035664,-0.022889642,0.041953612,0.044501845,0.009144018,-0.03399658,-0.043057196,-0.00024206802,-0.02635494,-0.08507527,0.034397405,-0.025204474,-0.05874565,-0.0077264193,-0.043412432,-0.01397501,-0.06185275,-0.0017041304,0.01637833,0.014903471,-0.03805887,-0.007325399,-0.03672021,0.061080292,0.050813038,-0.007887586,-0.032968435,-0.07568725,0.03292624,0.16949804,0.075799584,0.027238447,0.094908,-0.029302938,0.014732379,0.011946677,-0.07151827,0.052726407,-0.0017474298,-0.06468219,0.08174755,0.12048138,-0.06290938,0.0026689295,-0.022822548,-0.010668508,0.019723732,0.004495502,-0.03541157,-0.041823458,-0.007993335,-0.018104076,-0.030409269,-0.016638042,-0.092293285,-0.05715893,-0.03997091,-0.029758964,0.06747849,-0.04690752,-0.029469898,-0.022129161,0.05040029,-0.018629227,-0.01315861,0.016543772,-0.006133824,-0.019778594,-0.08071421,-0.019518206,-0.0044922293,0.086941816,0.054328423,0.08044724,0.055263773,-0.03960959,0.06382104,0.04391136,-0.023272038,-0.010946935,-0.020536413,-0.05252285,0.016131401,-0.027678194,0.01866908,-0.024132201,-0.08481522,0.02772609,0.007917995,0.0051496597,-0.025741326,-0.016714375,-0.04818129,-0.021456776,0.023622625,0.047213882,-0.030571356,0.048296586,1.4145817e-32,-0.045686495,0.010595653,-0.022259062,0.032490928,0.022826497,-0.03499697,-0.056066014,-0.0009149565,-0.10232934,-0.0059820055,-0.030983074,0.005986315,0.010415949,0.0076608798,0.11486254,-0.008822054,-0.006486253,-0.09524816,0.06346312,0.021934632,-0.010557555,-0.056053318,0.008415616,0.07183873,-0.007706485,0.07889187,0.052202486,0.024445668,-0.07744736,0.029691726,-0.023195907,0.0033683567,-0.010674515,0.03054281,-0.06184443,-0.023583837,0.114869595,0.07212432,-0.051950872,-0.067173064,-0.016167812,-0.058897328,-0.038329992,0.01468275,-0.005255819,0.0018856374,0.04561739,0.027486604,0.018562244,0.028037718,-0.14573845,-0.027243508,-0.046859324,-0.04251367,0.03793115,0.0645668,-0.01183644,0.00017197015,-0.033434995,-0.051827874,0.06673786,-0.03384733,-0.02388351,-0.049646266,-0.045414343,-0.007921611,0.07570312,0.0015115518,0.1260191,-0.0075880704,-0.07555877,-0.0006280668,-0.045082457,-0.05276656,0.10336122,0.015233136,-0.008549456,0.06096542,0.022214457,0.026611758,-0.07082124,-0.012304556,0.012323648,0.10310113,0.12541804,0.022924468,-0.037629668,0.041126084,-0.036180403,0.15150933,-0.009251715,0.04689471,0.07820706,-0.015675606,0.042761028,-1.4587973e-32,-0.022369826,0.045074124,0.014893315,0.06093149,-0.0041470146,0.0020738041,0.06468036,0.009970349,-0.010871992,-0.020089097,-0.062345695,-0.06439846,0.03809328,-0.07565607,0.0047310055,0.045904286,0.018446539,-0.043731626,0.0024228352,-0.03834531,-0.002610399,0.082732275,0.025003187,-0.043422777,-0.012594731,-0.029173588,-0.032997888,0.0633202,-0.16254558,0.020384435,0.02291777,-0.07021606,0.031059116,0.078833714,-0.05668937,-0.03861254,0.031684145,0.06708334,-0.062342122,0.03957452,0.019821385,0.078377195,-0.07954977,-0.008460243,-0.032137524,0.050003774,0.075550355,-0.11821413,-0.041645177,-0.0070715235,0.08962047,-0.019964667,-0.07486034,-0.06559843,-0.0011572347,-0.032802667,0.033830885,0.018821342,-0.035801746,-0.0051305573,0.05303662,-0.0060554147,-0.010783936,-0.0606927,0.073535845,-0.031790745,-0.056472745,0.057582784,0.06005493,-0.016738059,0.0582255,0.030969625,-0.089692235,0.0075951526,-0.039759118,-0.080389425,-0.07998695,0.007559576,0.0039237947,-0.07230134,0.049273197,-0.014659922,-0.06382651,-0.08888572,0.063626796,-0.04922429,0.040554307,0.06468146,0.023818936,0.051205397,0.027619109,0.097055696,-0.06977001,-0.04886178,-0.032473702,-5.5980685e-08,0.01725691,0.042077124,-0.0862152,-0.041855108,0.058873683,-0.072020814,0.014847011,0.021328053,0.010463068,0.026634684,0.008851423,-0.011096367,0.014088667,0.04713228,0.02874012,0.05565118,0.07488179,0.060533874,-0.023450144,0.014978002,0.050160192,0.030206574,-0.062998004,0.067442864,0.019452367,0.00086174085,-0.04842328,0.010970182,0.019264523,-0.016598886,-0.0063304626,-0.01152525,-0.06869923,-0.023605956,-0.039412376,-0.062349264,-0.043092787,0.028573835,0.028494267,-0.040187098,-0.0065729725,-0.07842397,-0.13880162,0.022907631,-0.13612597,-0.057564918,-0.054680467,-0.048062168,-0.037067764,0.041870516,-0.09320892,-0.048487116,0.0070062727,-0.03656321,0.09177136,-0.062929116,0.06460421,-0.045788873,-0.0239149,0.02306324,0.047134716,0.09880908,-0.028603617,-0.088938154} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:36.337796+00 2026-01-30 02:01:10.67973+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1755 google ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE 1 t 1758 Go Karts Mar Menor unknown Reservamos para un cumpleaños, y nos pusieron todas las facilidades. Son muy majos , sin duda volveremos a ir . Si le hablas por Instagram te responden enseguida, muy atentos. reservamos para un cumpleaños, y nos pusieron todas las facilidades. son muy majos , sin duda volveremos a ir . si le hablas por instagram te responden enseguida, muy atentos. 5 2025-01-30 01:52:39.833374+00 es v5.1 P1.01 {R4.03} V+ I3 CR-N {} {"A3.03": "Si le hablas por Instagram te responden enseguida, muy atentos.", "P1.01": "Son muy majos , sin duda volveremos a ir .", "P3.02": "Reservamos para un cumpleaños, y nos pusieron todas las facilidades."} {-0.1057003,0.024750412,-0.02773291,-0.03890946,-0.023068322,-0.0067341323,0.037103057,-0.008843485,-0.018406434,0.026108628,0.07717446,-0.013441338,-0.018555274,0.010379558,0.013292423,0.026188485,-0.009112332,0.04314452,-0.06950432,0.00047005177,0.056538284,0.0039705164,-0.08386064,0.12589344,-0.053762235,-0.09648053,-0.0115311295,0.020823255,-0.0043682926,-0.029062828,-0.004218644,0.04466262,0.05544381,0.015677253,-0.009682954,0.0029295443,0.034949612,-0.09627984,-0.04518744,0.025112515,-0.09099069,-0.018797925,-0.048674013,-0.032200716,-0.032787077,-0.03827558,0.07000237,0.09558088,0.04734061,-0.055425953,-0.06001451,-0.01718124,0.025252026,0.0008171709,-0.051000487,-0.03836727,-0.0893526,-0.04614516,0.070527196,0.022243371,0.005929241,0.03602752,-0.03480463,0.08242081,0.007516794,-0.022908907,0.011752573,0.05408344,-0.07300081,0.094347894,0.11912879,-0.057350107,-0.06223326,0.07687072,-0.050233994,0.023101607,0.029414382,-0.02854272,-0.057911642,-0.01680175,0.017999161,-0.055543184,0.0656617,-0.013617442,0.03068208,-0.06000926,-0.03897596,-0.017615372,-0.04018783,0.022025757,-0.05200437,0.080673434,-0.031949703,-0.01794943,-0.06588257,0.060540684,-0.002512252,-0.12846148,0.0005812082,0.042730596,0.062432025,0.047490034,0.052846704,0.058954984,-0.032558214,0.03256154,-0.023357173,-0.011963763,0.007026097,0.09048168,0.01232882,-0.03534484,-0.0694355,-0.025189454,-0.009803044,-0.082474895,-0.043667387,-0.007016607,-0.008661155,-0.13659948,0.03414864,0.051439717,-0.042972464,-0.028681533,0.026576377,-0.10020858,-0.00013830238,1.0725092e-32,0.0014005341,-0.025410395,0.027796391,0.010487014,0.009416388,0.03287571,-0.012882408,-0.014556718,-0.07010971,-0.017426055,-0.0337134,0.01699386,-0.0021892008,0.061317857,-0.014917603,0.009979419,0.07464294,-0.032357484,0.035621844,0.04837766,-0.040162593,-0.026041152,-0.0067756837,0.00093131093,-0.022078026,-0.0002674188,0.010527889,-0.015994042,-0.04362572,0.053741924,0.002624583,0.03368425,0.034435328,-0.07595664,0.0026844628,-0.10433934,0.06671006,-0.0102548245,-0.024720367,-0.011271176,0.037735306,0.05866875,-0.061202187,-0.008701108,-0.04310093,0.038207218,0.06910263,0.06959307,0.07755809,0.030891994,-0.019369867,-0.04878569,-0.037264824,-0.10644195,0.0049085794,-0.00043406014,-0.08789941,0.051511418,0.04288201,-0.07468028,0.018274857,-0.06986368,0.0001837056,-0.0391927,0.01988664,-0.02223895,0.029206548,0.077210926,0.09864005,0.090057194,-0.05489902,-0.0389598,-0.032266367,-0.057682756,0.04651602,-0.01866285,-0.025927283,0.017525658,0.029445175,0.059692062,-0.03456249,0.00068623,0.055489067,-0.03370089,0.08227312,0.057838928,0.031455997,0.031670004,0.008166553,0.09718885,-0.03434564,0.09602355,0.09918097,-0.0006669337,-0.022226663,-1.0972901e-32,0.029557494,0.02048657,-0.002138522,0.041479107,-0.04043903,0.04389718,-0.063642554,0.051843647,-0.018067062,0.015622273,-0.08260867,-0.09855855,0.041087445,-0.08392812,-0.039864067,0.09751952,0.06882492,-0.08083283,-0.12331151,-0.041052476,-0.0568077,-0.03640669,0.030832188,-0.028229225,-0.044878952,-0.089098044,0.050462928,0.03576019,-0.024596,-0.011027622,0.056293283,-0.064903855,-0.049431786,0.0072886217,-0.03604371,0.06411934,0.04959992,0.026662285,0.023331383,0.025964003,0.058989596,0.035071228,-0.0002474587,0.02297861,-0.027836557,0.04404354,-0.062478613,-0.04722456,-0.08512539,-0.0826181,0.023201378,-0.0066387914,0.038180683,0.06924418,0.064882435,-0.07812357,-0.03707022,-0.031047788,0.0037615849,-0.027100218,0.028433807,-0.054852076,-0.09999572,-0.051602624,0.101807415,0.03442505,-0.05042814,0.029035544,-0.007056497,0.056116413,0.10743636,-0.016693644,-0.031970263,-0.09601218,-0.03203248,-0.04413613,-0.058750015,-0.043956846,-0.03940218,0.066906065,0.047494844,-0.034685783,-0.07515576,-0.070995614,0.017160518,-0.02507141,0.024239337,0.07564898,0.023349259,0.06205442,0.040338174,0.0653528,0.010587776,-0.053133227,0.021034827,-4.6216122e-08,0.00629517,-0.03428454,-0.016661046,0.0077766743,0.020015871,0.020489851,-0.027525743,0.043462567,0.03886196,0.04939133,-0.024438241,-0.050359108,0.03574931,0.07428753,0.028381191,0.019106194,0.11550684,0.03345766,0.012120804,-0.015754735,0.06072881,-0.011703613,-0.02332172,0.023545496,-0.008149429,0.061510805,-0.043017507,-0.059818078,-0.04055475,-0.0081207035,-0.048565064,-0.019109474,-0.027214438,-0.023403542,-0.0031918313,-0.007667327,0.016472932,-0.052675433,-0.017260727,-0.12057249,0.08985905,0.06917047,0.04074201,0.0044496176,-0.02460651,-0.048501987,0.07874977,0.039562996,-0.03296205,0.029189298,-0.08868456,-0.10389795,0.032309458,0.061316323,0.020921888,-0.09522478,0.03576889,0.019436477,0.0187154,0.040075403,0.15649888,0.09410669,-0.032124043,-0.038734853} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:42.886841+00 2026-01-30 02:01:10.590442+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1806 google ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB 1 t 1809 Go Karts Mar Menor unknown Fuimos a celebrar un éxito de nuestra empresa y la verdad que fue el mejor sitio donde pudimos ir. El trato del personal inmejorable, las instalaciones súper limpias y cómodas con todas las atenciones, y los vehículos a tope de gama. La verdad que repetiremos la experiencia. Todos mis compañeros y yo sólo tenemos palabras de agradecimiento hacia estos profesionales del Karting. fuimos a celebrar un éxito de nuestra empresa y la verdad que fue el mejor sitio donde pudimos ir. el trato del personal inmejorable, las instalaciones súper limpias y cómodas con todas las atenciones, y los vehículos a tope de gama. la verdad que repetiremos la experiencia. todos mis compañeros y yo sólo tenemos palabras de agradecimiento hacia estos profesionales del karting. 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"E1.01": "las instalaciones súper limpias y cómodas con todas las atenciones", "O2.01": "los vehículos a tope de gama", "P1.01": "El trato del personal inmejorable", "R4.03": "La verdad que repetiremos la experiencia."} {0.025388068,0.065045625,0.014945439,-0.039402194,-0.05490539,-0.02609314,0.11162277,0.070746705,-0.01585173,0.040077113,0.090784505,-0.038159948,-0.042682935,-0.055976354,0.002596681,0.007027313,-0.033560567,0.041489895,-0.017420571,0.09644709,-0.0048359055,-0.039744984,-0.06723488,0.051505692,-0.08269022,0.009773741,-0.02730642,-0.013480297,-0.05351266,-0.12279614,-0.002709018,0.03325088,0.08988592,0.0073178876,0.027195891,0.037372082,-0.028152686,0.006365304,-0.018383404,0.0020670486,-0.11212845,-0.07479706,-0.033823773,-0.06566413,0.01962315,-0.02578384,0.05119367,0.02036953,-0.0029577818,0.0024772396,-0.086261906,-0.019109482,0.053124286,0.020426083,0.037714913,-0.012752164,0.028790828,-0.0010743953,-0.0013763445,0.10832134,0.03938417,0.045479357,-0.022966191,0.011965966,0.051982045,-0.010407203,-0.0016244965,0.0031347773,-0.06050597,0.06637456,0.11811529,-0.117692985,-0.015911875,9.229746e-05,-0.014042908,0.060838643,0.010750368,0.025471102,0.009402737,0.007836057,0.044818245,-0.0071034525,0.012685786,-0.059428014,-0.012095292,-0.012474412,-0.011934275,-0.02646796,0.020537188,0.0636661,-0.034131553,0.08029981,-0.07413824,-0.059875008,-0.021019269,-0.027429735,-0.018841296,0.0012561692,0.036298793,0.003500494,0.06275221,0.05031144,0.050726205,0.03966718,-0.097006194,-0.034171984,0.0007957037,-0.057797275,-0.0034021325,0.09203954,-0.11948277,-0.079125315,-0.061812412,-0.024488503,-0.049299676,0.04646839,-0.07874779,0.035640333,0.00023747377,-0.03526144,0.04217386,0.03717793,-0.010857905,-0.0083612595,-0.036630563,-0.077077694,-0.018743983,1.1050317e-32,-0.00918828,-0.022319788,-0.07358691,0.07659122,-0.013961293,-0.008226841,-0.03918915,-0.04909135,-0.06578994,-0.0032136657,-0.059297916,0.06458398,0.038381696,0.010643978,0.08218684,0.042658508,-0.016365768,0.0035348688,0.0028967485,-0.0068063373,0.011895677,0.023476468,-0.009627717,-0.0061038136,-0.004919369,0.046663173,0.036045082,0.0038674963,-0.12073771,0.03790834,-0.03533748,0.013085697,0.039778437,-0.056562908,0.02128835,-0.025767257,0.032793395,0.015181129,-0.02959687,-0.07448385,-0.029000694,0.039131705,0.015271527,0.025438504,0.007733626,0.07382839,0.107296765,-0.02055672,0.059440967,0.0072934087,-0.04732747,-0.031057775,-0.0032522317,0.0040990547,0.033309855,-0.0022215678,-0.09058206,-0.014387481,-0.046476513,-0.06832147,-0.016148021,0.049710732,-0.016215695,-0.049721688,-0.07148602,-0.049896855,0.005505049,0.0040315953,0.124937005,0.05075598,-0.0752077,0.013349284,0.013501712,-0.0121727,-0.03542659,0.01581735,-0.0353307,-0.020790331,-0.047367558,0.06811315,0.046779856,-0.019644998,0.012904091,-0.029463805,0.12039379,0.03633546,0.006619255,-0.004025935,0.015183113,0.1357463,-0.03390974,0.0037555902,-0.00938354,0.04807133,3.8773516e-05,-1.4241014e-32,-0.06765441,0.035866,0.014238018,0.013454604,-0.017826026,0.018167611,-0.0145551935,0.016420005,-0.037775673,0.0017783779,-0.10286816,-0.124442056,0.10635872,0.041842617,-0.07464825,0.03856629,-0.011440105,-0.12305262,-0.08849074,-0.055729084,0.048711233,0.07185194,0.054230787,0.016874263,0.004217117,-0.02440612,-0.01875065,-0.05585635,-0.07709526,-0.02205183,0.05972816,0.042576462,-0.05520666,0.0110823205,0.013186895,-0.0335398,-0.013082824,0.03673889,0.03136851,0.019244533,0.0074155624,0.08425797,0.04444962,-0.028098654,0.009793071,-0.023813894,-0.009218825,-0.17580782,-0.014512222,-0.073473826,0.02516745,-0.052484684,-0.038915377,-0.034956057,0.049069937,-0.09060177,0.024410944,-0.07070657,-0.13495596,0.0038296655,0.08284042,-0.02416442,0.00727032,-0.06494265,0.0598935,-0.0039458475,-0.029897487,0.007683442,-0.050618377,0.06632144,0.041779812,-0.05190272,-0.09994874,0.04034179,-0.034614056,0.006650872,-0.11422492,-0.020012047,0.0133808,0.021668715,0.009634611,-0.028768735,0.05443946,-0.04397717,-0.009630795,-0.018366424,-0.038627338,0.06777381,0.016911931,-0.028119389,0.013906942,0.019497035,-0.055368584,-0.049497277,-0.090434305,-6.0686865e-08,0.01509172,-0.1073777,0.010362362,0.009245593,0.048126534,-0.089354895,-0.0227653,0.060960345,0.05707366,0.09367327,-0.09990438,-0.0028813654,-0.031014739,0.047226135,0.05957629,0.00023941984,0.14546873,0.05733838,-0.017551467,-0.08601194,0.06815039,-0.04109353,-0.06675526,0.006640013,-0.05724738,0.0066148425,-0.033272568,-0.0079753995,-0.081498496,0.03432362,-0.035303343,0.022176754,0.032218553,-0.085225955,-0.07057897,-0.014099057,0.021918474,0.016597,-0.055535715,0.007559582,0.08528572,0.047735825,0.010821948,0.069943435,-0.091622196,-0.08476953,0.0055048014,0.036279306,-0.02257256,-0.042835966,0.014725268,-0.041494112,0.023059666,0.03367112,0.0025635504,-0.030433588,0.028382787,0.11951448,-0.031228727,-0.021308834,0.05954415,0.013285684,-0.008319509,-0.033790413} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:08:59.50068+00 2026-01-30 02:01:10.777671+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1778 google ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE 1 t 1781 Go Karts Mar Menor unknown Los horarios son orientativos.\n\nEs la opción que tienes porque lógicamente no hay un circuito en cada esquina.\n\nCerciórate muy bien que está abierto para no darte el paseo.\n\nBusca teléfono y llama con anterioridad por que al menos fuera de temporada los horarios no son como marcan. los horarios son orientativos. es la opción que tienes porque lógicamente no hay un circuito en cada esquina. cerciórate muy bien que está abierto para no darte el paseo. busca teléfono y llama con anterioridad por que al menos fuera de temporada los horarios no son como marcan. 3 2025-01-30 01:52:39.833374+00 es v5.1 A1.01 {R1.03} V- I3 CR-N {} {"A1.01": "Cerciórate muy bien que está abierto para no darte el paseo. Busca teléfono y llama con anterioridad", "A4.01": "Es la opción que tienes porque lógicamente no hay un circuito en cada esquina.", "R1.03": "Los horarios son orientativos."} {0.026947195,0.08863153,-0.017751291,-0.14202404,-0.05681331,-0.07583178,0.014134649,-0.0073618656,0.041258313,0.052594002,0.13491043,0.07852158,0.0008203218,-0.004456865,0.0928936,-0.0071046413,-0.055076394,0.0017879925,0.0014098329,0.06638922,0.07661668,0.002022548,-0.080725275,0.07260673,-0.1129729,0.017743023,0.0062850006,0.0054108803,-0.06073648,-0.075107045,-0.06904216,0.09749648,0.040090293,-0.010342013,-0.13471262,-0.053378124,0.037345797,-0.057173688,-0.027149223,0.035037514,-0.076071225,0.0014536737,-0.044603966,-0.0040002526,-0.009988647,-0.07629762,-0.043053076,-0.026227444,0.016217902,-0.03528978,-0.08855699,-0.015433142,0.05713932,0.044020474,-0.03881775,0.037001546,-0.014213486,0.04097202,0.08356966,0.0726468,0.02662484,0.021462578,-0.04643919,0.005103134,0.010840729,-0.009727301,0.014209402,0.008630037,-0.021154149,0.07648124,0.10252437,-0.06590458,-0.021142889,-0.003492569,-0.0036480154,0.0019217281,-0.016955946,-0.012091608,0.0061328476,-0.052370578,-0.031842552,-0.030877192,-0.09635706,0.010829306,0.034446314,0.04054465,-0.0594559,-0.016985843,0.0059029474,0.012720284,-0.055355687,0.038901445,-0.017858611,-0.07768309,-0.004777875,-0.033645947,0.05540223,-0.055192646,-0.028807169,0.031010881,0.1160874,0.02725392,-0.0024492152,0.08714854,-0.038594473,0.008916023,0.043188438,-0.041217037,0.0022328733,-0.0025752173,-0.02656743,-0.025969272,-0.0019632475,-0.049897667,-0.1229492,-0.052983366,0.0047763037,0.0014722226,-0.004407585,-0.0764102,0.03278929,-0.043166883,-0.011072396,-0.008875605,0.054808132,-0.10222261,0.023676777,9.928324e-33,0.014391861,-0.017614814,0.017858993,0.04582577,0.01227806,0.021809235,-0.04922875,0.011010313,0.0020376581,0.007911968,-0.08825241,0.08148819,0.0022926533,0.03673163,0.07844015,-0.011649218,-0.024097899,-0.050397355,0.05194645,0.02737427,0.0027022958,0.06560697,-0.0060198186,0.008844841,-0.0042500813,0.014442154,0.013646636,-0.06037661,-0.10869233,0.06726506,-0.043761443,-0.02163873,0.060849458,0.02724063,-0.015497424,0.04948255,0.014067846,0.006421808,-0.013436665,-0.023405034,0.04615267,-0.027743993,-0.07258793,0.034217544,-0.004195136,0.0510151,0.07492096,0.018253287,-0.009271525,0.05193554,-0.043348268,-0.00895879,-0.038152162,-0.062331248,0.013022517,0.044527724,-0.042712804,0.07500791,-0.019933155,-0.0423047,0.01910037,0.03826092,-0.027693218,6.6604254e-05,-0.008526809,-0.020286815,0.008747533,-0.03336556,0.09481985,0.020443182,-0.048415937,-0.018180912,-0.096153356,0.10510972,0.009417569,0.07565047,-0.094256625,0.044600565,0.02638663,0.006037064,-0.010096443,-0.053216327,0.013129756,0.02507111,0.13571046,0.052424505,0.03606192,-0.03844533,-0.050103713,0.13406903,-0.050209682,0.0929427,0.04865564,0.0010410714,0.08222624,-1.1843391e-32,-0.0625584,-0.02992486,0.04289156,-0.024330633,-0.068030715,-0.0099564465,-0.025826318,-0.007792607,-0.08093434,-0.058774833,0.0011126213,-0.07277482,0.06148028,-0.007747073,0.042335726,0.016169917,-0.0032613995,-0.08700657,-0.07529442,0.024126645,0.060011912,0.0207362,-0.03796998,-0.053417616,-0.009540889,-0.05654589,0.010899888,0.053114526,-0.04133504,-0.013896884,0.013401981,-0.03646108,0.056502007,0.10513382,-0.033712022,0.09985226,0.024605045,0.06115798,0.03021071,-0.0072673615,-0.067990266,0.05386745,0.076740146,-0.031683117,-0.035422117,0.005278881,-0.026877148,-0.09299046,-0.10019228,0.001148604,0.058330897,0.00039372884,-0.0059413044,-0.1050134,0.046133734,-0.04440695,0.0012197302,-0.071914926,-0.0237669,-0.009451163,0.14962581,-0.014966418,-0.03676267,-0.032073855,0.015356,0.05387328,-0.00984855,0.03534154,0.01402182,-0.0077108797,0.112541124,0.043905567,-0.07811822,-0.06706444,-0.016410585,0.059232697,-0.08912594,-0.009708728,-0.02334311,-0.045733687,0.012786267,-0.0081244875,-0.010503268,-0.076071955,-0.027910832,0.07285603,-0.017561607,0.038786024,-0.025475321,0.032195296,-0.0066355187,0.026307004,-0.07625706,-0.021899562,-0.01113427,-4.7107562e-08,-0.050450806,-0.05530165,-0.010936441,-0.025280409,-0.0071307104,-0.010788176,0.008704749,-0.032014016,0.025676131,0.029942164,0.0068449345,-0.025091074,-0.059936475,0.042864967,0.08943338,0.018958064,0.06534563,-0.026554262,-0.048199095,0.0019186705,0.08485813,-0.014155475,-0.021031741,0.07396734,0.020296449,-0.038458873,-0.021061705,-0.0065137413,0.011863745,-0.04483677,-0.030165128,-0.02215161,-0.06603545,-0.062373232,-0.019548986,-0.031091465,-0.058788825,-0.027683897,0.047472794,-0.0780102,0.0617307,-0.049439967,-0.10885484,0.06146225,-0.0060486626,-0.06965311,0.08373782,0.0068368716,-0.09844325,-0.033946864,-0.03872046,0.002642981,0.040129732,-0.0301406,-0.010366038,-0.019516299,0.07426713,0.052647352,-0.105481826,0.011383012,0.06463765,0.11673111,0.06269666,-0.05354578} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:14.444188+00 2026-01-30 02:01:10.672907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1783 google Ci9DQUlRQUNvZENodHljRjlvT21obmVFd3hkV1k0VFU5bVEwTm5SMGhETUVaWVRuYxAB 1 t 1786 Go Karts Mar Menor unknown Buena experiencia para montar en karts. buena experiencia para montar en karts. 5 2025-07-04 00:52:39.833374+00 ca v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Buena experiencia para montar en karts."} {-0.050779592,0.028010512,0.037551694,-0.009776692,-0.11105222,0.00866804,0.009658741,0.052240103,0.048534002,0.017860604,0.053794302,-0.03751498,-0.04759322,-0.018925201,0.04906693,-0.050933752,-0.010939942,0.046027116,0.0562769,-0.043007348,0.057431273,-0.04733151,-0.025038563,0.06137036,-0.06274464,0.0038885833,-0.003756233,0.0033428376,0.03540247,-0.051127307,-0.0028169807,0.016795266,0.054080766,-0.031429935,-0.0068576243,0.01705503,0.021007534,-0.064313844,-0.02961484,0.014956239,-0.07176092,-0.035992485,-0.06837293,-0.03139743,0.018938579,-0.048202477,-0.007358656,0.038035687,0.013545133,0.0029785456,-0.018220922,-0.039007157,-0.0075399517,-0.034787223,0.060663905,-0.030529248,-0.036951695,-0.018257236,0.12921399,0.026486758,0.035796214,0.030192394,-0.10406309,0.024811236,-0.0021000672,-0.035495713,0.028421756,0.09991042,-0.08915204,0.08081184,0.13738419,-0.10112246,-0.0444283,0.062191162,0.028378764,0.014522764,-0.044725258,-0.02879897,-0.10056783,-0.041115567,0.019532872,-0.0005505971,-0.031171627,-0.06712674,-0.008021958,-0.0535664,0.020266177,0.0071573695,0.08200457,0.008460887,-0.07544089,0.03706149,-0.101267084,-0.007923643,0.020884974,-0.014129398,-0.038920686,-0.07144664,0.043797117,0.074359216,0.08907289,0.031452525,0.09531254,0.06599581,-0.083303005,0.0068291887,0.027078206,0.03388817,0.07086029,0.034274407,-0.08458875,-0.04002465,-0.0096360855,-0.029933468,-0.04836643,0.024880992,0.016528618,-0.0058543696,0.005899404,-0.037154686,0.016919227,0.029526962,0.013683267,0.000633527,0.07067713,-0.06734094,0.029962631,-6.55045e-34,-0.08807123,-0.030370323,0.04905403,0.12527834,0.053573545,-0.05034844,-0.036481813,-0.08466518,-0.039284818,-0.004258834,0.0063218675,0.09175865,-0.021916328,0.029018646,0.12992962,0.0810061,-0.033710115,0.021263989,0.018797608,-0.024723765,-0.040029358,-0.070881985,0.0059246942,0.08111417,-0.030183056,-0.00727618,0.045172203,-0.03866438,-0.053677015,0.045340568,0.013849174,0.021370428,-0.014810465,-0.04786635,-0.02027073,0.013150312,0.030562669,0.033034068,-0.02143324,0.017180461,0.057915997,-0.030642282,-0.020173997,-0.027893351,-0.056264266,0.046639528,0.101513706,-0.009022414,1.7512897e-05,0.012676882,-0.027600044,-0.059157643,-0.052905887,-0.003292656,0.006997517,0.060629208,-0.05931765,0.041256815,-0.050343122,-0.098438255,0.0901028,-0.021537712,0.036156844,-0.06392354,-0.070932165,-0.051418442,0.034936417,0.002713375,0.11426364,0.016925968,-0.088665254,0.03523833,0.011477448,-0.023243273,0.06953113,0.030410687,-0.09657606,0.052112333,-0.033079024,0.046546873,-0.1363639,-0.048240732,-0.028488088,0.09772447,0.09279242,0.03596653,0.032247864,0.011169949,-0.01342504,0.14143747,-0.0886346,0.053428676,-0.002561,0.024785753,0.026293479,-1.4245823e-33,0.06690558,0.033284254,0.061289992,0.07677377,0.037771717,0.023920044,0.001687793,0.046218134,-0.016768914,-0.060229357,-0.07875312,-0.09580546,0.099968955,-0.028409522,-0.011442899,0.07781693,0.06057571,-0.006109474,-0.04888352,-0.06349431,-0.0009879221,-0.0035549656,0.041455396,-0.005538878,0.006744344,-0.023006946,-0.022401037,0.07097626,-0.06993766,-0.04966779,0.008430732,-0.087787405,0.0018403103,0.044944018,-0.049756072,0.12406688,0.11602732,0.08009102,-0.036677577,0.046235252,0.032507256,0.07844166,-0.022294562,0.00209199,0.011644222,-0.028219262,0.06026756,-0.1287695,0.0013883966,-0.085775465,0.10574755,0.046538312,-0.0511073,-0.029010968,0.0014628601,-0.06232393,-0.022273662,0.0017386938,-0.0798045,0.004223788,0.041688316,0.027261458,-0.02305369,-0.03696348,0.054108363,-0.05682174,-0.03945834,-0.008629946,-0.02023787,0.009749144,0.058686633,-0.023280429,0.011950158,0.033397406,-0.053170368,-0.072706625,0.001119756,0.0272459,0.024453474,-0.042177998,-0.04489792,-0.043239295,-0.022587098,0.012856389,-0.0644529,0.08587642,-0.013749073,-0.030242648,0.06339512,0.014624074,0.026779301,0.073046096,0.020156343,0.01720091,-0.029676294,-1.9175937e-08,0.004956845,0.010393627,-0.0842374,0.024897987,-0.014990183,-0.05062471,-0.072563864,0.032267474,-0.038402453,0.024968414,-0.038858294,0.02384533,0.030142657,0.056749493,-0.022443885,0.017183363,0.04240646,0.13569368,-0.028108517,-0.06607355,0.020168882,0.0019189498,-0.05172649,0.021756569,-0.065280885,-0.05999955,-0.034415532,-0.03385869,0.081790805,-0.037116624,-0.03670987,0.07823697,-0.04205307,-0.029302558,-0.030359423,-0.06614292,-0.09086403,0.027417054,-0.014046749,0.07266775,0.049796272,0.0032495856,-0.026934173,-0.041321885,-0.00884938,0.022553984,-0.0035095473,0.006685299,-0.060633313,0.015034323,-0.05222026,0.0076002236,0.03079143,0.074104525,0.0086766565,-0.0011607456,0.03474412,-0.0051353374,0.027842691,-0.058202665,0.026680818,0.02759713,-0.023341134,-0.049185716} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:00.132244+00 2026-01-30 02:01:10.694112+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1757 google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB 1 t 1760 Go Karts Mar Menor unknown Lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica, nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección, los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento, siempre puedes topar con alguna persona q se piensa q está en la F1 y no se da cuenta q hay más gente pero vamos, como en cualquier lado. Tanto los señoritas de la cafetería y atención general como los chicos de los karts fueron e hicieron la estancia súper agradable. Repetiremos seguro . lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica, nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección, los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento, siempre puedes topar con alguna persona q se piensa q está en la f1 y no se da cuenta q hay más gente pero vamos, como en cualquier lado. tanto los señoritas de la cafetería y atención general como los chicos de los karts fueron e hicieron la estancia súper agradable. repetiremos seguro . 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E3.01": "siempre puedes topar con alguna persona q se piensa q está en la F1 y no se da cuenta q hay más gent", "O1.04": "los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento", "P1.01": "nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección", "R4.03": "Repetiremos seguro", "V4.03": "Lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica"} {0.020017132,0.027608808,0.060972217,-0.04083987,-0.030573877,0.07666558,0.086606175,0.053037383,-0.025298428,-0.014156657,0.08866602,-0.06548289,-0.02129236,-0.020529622,0.021083236,-0.061276685,0.018687177,-0.011027154,0.014106595,-0.031213693,0.008265285,-0.075541526,-0.029331576,0.14284524,-0.056461625,-0.021848617,-0.019675644,-0.0023238505,-0.07248037,-0.039057538,0.0035385357,0.06173736,0.107712984,-0.0354976,-0.010772342,0.056131504,0.07723487,-0.04224635,-0.024556942,0.036190767,-0.1087401,-0.062036134,-0.03907235,-0.048921745,-0.05225641,-0.05085553,-0.010605304,0.007434196,0.037954215,0.010749111,-0.041672766,0.03157316,0.02362138,-0.0034459936,0.033396665,-0.0060554007,-0.014432892,-0.060260322,0.040886994,0.08474148,-0.073516816,0.013154191,-0.022867182,0.022313291,0.054885037,-0.0044924463,0.021129448,-0.054646913,-0.04980777,0.06091849,0.08526997,-0.032690596,0.0689892,-0.014535549,-0.046207864,0.08895437,0.00425253,-0.023231566,-0.03300381,-0.04565833,-0.034465414,0.018252848,0.048294783,-0.08967268,-0.05254526,-0.011523899,-0.04192698,0.000116928626,-0.0010538124,0.01975637,-0.060815074,0.05175371,0.017325426,0.0178906,0.045866694,0.022711717,-0.025179202,-0.05943329,0.019347085,0.018091977,0.057291225,0.08708243,0.084711604,0.047012523,-0.04334979,-0.0055616903,0.0051077213,-0.09336298,-0.044547964,-0.040112734,-0.03271081,0.010573889,0.020332564,-0.0030580664,-0.06938186,-0.0446224,0.05497248,-0.03153925,-0.037647348,-0.018546907,0.04604585,0.01088781,-0.06272385,0.0053860475,0.0010585483,0.017923169,0.051762965,1.743183e-32,-0.050369367,-0.021047464,0.03233157,0.0695148,0.07997854,-0.035340987,-0.022186719,-0.015741797,0.0062762885,-0.026515907,-0.0035611757,-0.008913463,-0.009960219,-0.009191929,0.022314657,0.017105263,-0.03038349,-0.0070666624,0.030279296,0.037738487,-0.021508638,-0.033148106,0.031522177,0.016084783,-0.014327902,0.0712004,-0.017951233,0.015967658,-0.05070518,0.035606895,-0.0030893947,0.012614357,0.010392818,-0.0020567442,-0.07912173,-0.07732245,0.070614025,0.051827088,-0.038680162,-0.015615762,-0.060140282,0.024746383,0.023751546,0.046751514,0.0017350385,0.03582165,0.06827253,0.031721395,0.015469128,0.042124555,-0.05763395,-0.06279599,-0.05623989,-0.048814617,0.013170337,0.041351747,-0.0075753722,-0.004006379,-0.05655309,-0.0617619,0.09617686,0.03573171,0.03554622,-0.013358349,0.03175327,-0.035365894,0.042777818,-0.008321901,0.1845718,0.0034310804,0.007884883,-0.009091538,-0.06730746,0.043072376,0.06273218,0.00039044977,0.043573886,-0.027354814,0.02041634,0.0089542065,0.02739221,-0.011147263,-0.0020324802,-0.007598651,0.052867245,0.02694754,0.038281344,0.030116314,0.01095171,0.13736294,-0.05223326,0.05830544,0.07024347,-0.009526479,-0.028510496,-1.6803884e-32,-0.009890414,0.057773463,-0.046719577,0.02877744,-0.04893127,-0.009155921,0.013139338,-0.026785366,0.024438899,-0.0022072345,-0.1164696,-0.08046221,0.06395576,-0.083259165,-0.058940273,0.111886635,0.049355596,-0.04737442,-0.103439406,-0.099258184,0.02429389,0.07750388,-0.0131422095,0.037686605,0.008691703,-0.03938944,-0.006674851,0.011510154,-0.11379617,0.0031088241,0.0073561403,-0.07112387,0.056336474,0.0034470768,0.049541004,-0.043715432,0.01925597,0.017199704,-0.06016389,0.04028191,0.010287541,0.07165159,-0.0013194502,-0.042568155,-0.035885703,0.043938313,0.0065159644,-0.22035718,-0.044452623,-0.017640842,0.015384418,-0.0797956,-0.075489044,-0.017312054,-0.015032237,-0.016786082,0.029646859,-0.016795672,-0.07857649,-0.016395632,0.022608045,-0.04441977,-0.03923426,-0.034883823,0.08803315,-0.08678954,-0.040818382,-0.05006557,0.068172455,0.0024962102,0.08022623,-0.059502494,-0.02667526,-0.015769858,-0.06036354,-0.025156274,-0.07980547,0.01986508,-0.026615733,-0.018881284,0.0010079826,-0.02673231,-0.0063319537,-0.026434682,-0.031366754,-0.0056436397,0.035921495,0.07472239,-0.006859132,0.068083756,0.05032766,0.0408117,-0.0052493354,-0.06678671,0.012564756,-5.8635955e-08,0.0731407,-0.06564369,-0.06812914,0.055666886,0.03651736,-0.09623968,-0.05841409,0.00496132,0.034146797,0.095957704,-0.08770001,0.06065733,0.01650416,0.048035614,-0.0039692246,0.024911854,0.085324325,0.054865763,-0.044299483,-0.012790645,0.057344828,0.02909621,-0.058696523,0.011430475,-0.0013464073,0.021958549,-0.06232593,-0.009056877,-0.0063525545,0.053516276,-0.0042789187,-0.024931783,-0.100010835,-0.12596236,-0.038368877,-0.029975837,-0.016665895,-0.007149863,0.017133845,-0.023574919,0.049867187,-0.06813056,-0.08657549,0.02109764,-0.091980614,-0.039393216,-0.0791351,0.057700403,-0.047489014,0.056512948,-0.0266088,-0.036491483,0.07797669,0.008674447,0.033292517,-0.07138672,0.076430365,0.034194686,0.053181425,-0.031665836,0.06352593,0.18712427,-0.010109586,-0.1172284} 0.78333336 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:04.16712+00 2026-01-30 02:01:10.598025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1784 google ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB 1 t 1787 Go Karts Mar Menor unknown Encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindaron. El trato con los organizadores fue buenísimo y los karts estaban en muy buen estado. El mejor circuito de karting de la zona del mar menor sin duda. Fuimos un grupo de 10 personas y repetiría mañana mismo. Muy recomendable. encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindaron. el trato con los organizadores fue buenísimo y los karts estaban en muy buen estado. el mejor circuito de karting de la zona del mar menor sin duda. fuimos un grupo de 10 personas y repetiría mañana mismo. muy recomendable. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {V1.01,P1.01} V+ I3 CR-N {} {"O1.02": "El mejor circuito de karting de la zona del mar menor sin duda.", "P1.01": "Encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindar", "R4.03": "Fuimos un grupo de 10 personas y repetiría mañana mismo. Muy recomendable."} {-0.03157633,0.012123091,-0.044196967,-0.04497357,-0.110478744,0.05229544,0.0062029515,0.031881034,-0.034186628,-0.010865915,0.07291551,0.034703,-0.00036257406,0.03106739,0.05966389,-0.03627886,-0.01960519,0.023466567,-0.0010456973,-0.006461272,0.012228338,-0.08307637,-0.077330254,0.07764893,-0.11965004,0.005100923,0.011103324,0.017471258,-0.057041027,-0.12504727,-0.0771595,0.077822216,0.040011764,0.008342152,-0.05132224,-0.008227728,-0.023037648,-0.022956634,-0.044571437,0.035295762,-0.0010559971,-0.05460627,-0.013784948,-0.08473379,0.043061584,-0.066513576,-0.05456759,-0.036854018,-0.041711472,-0.02014503,-0.022158401,-0.06496988,0.057750486,0.05508083,0.0065321582,-0.06980743,-0.13514446,0.05029963,0.08636421,0.006413765,0.03739949,0.041174855,-0.031104337,-0.0026897606,-0.03551751,-0.099027745,-0.026721982,0.020637814,-0.05921382,-0.005465626,0.10675113,-0.07758367,-0.06039471,0.004791234,0.03517308,0.03321901,-0.0008594333,-0.014244658,-0.08411329,-0.014454867,0.033239294,-0.03692685,-0.01790006,-0.014191247,-0.020723391,0.026191179,-0.02961674,0.045577765,-0.004795157,-0.002228213,-0.018183822,0.12793823,-0.031170538,-0.05734442,-0.03401294,0.03593375,-0.010849032,-0.066667646,0.021617962,0.0051899212,0.1086079,0.019839156,0.04571249,-0.027369674,-0.086000584,0.017107002,0.043302003,-0.021192709,0.02146382,0.015521589,-0.05210989,-0.031291272,-0.06141308,-0.0744506,-0.10332656,0.044660546,-0.0657506,0.017271312,0.03250774,-0.039729897,-0.0070998417,-0.023326539,0.008699195,-0.0020463897,0.030256178,-0.031745467,0.047406245,9.389749e-33,-0.116536185,-0.007077657,-0.025223656,0.043049417,0.03238634,-0.034210846,-0.011877676,-0.09147355,-0.09898151,-0.07689562,-0.036670737,0.18589874,-0.034191336,-0.046654087,0.12886064,-0.042013705,-0.06046161,-0.03645438,0.026051428,-0.0055976766,0.0072322735,-0.023601156,0.00443641,0.06277962,0.02823151,0.06656194,0.060372207,-0.005866808,-0.051896676,0.030156977,0.013601108,0.03810502,0.0027409669,0.013906512,-0.07320007,0.04527246,-0.04173009,0.0083548445,-0.07386008,-0.016980555,-0.0428149,-0.08813411,-0.053092677,0.06848654,-0.105229005,0.050024897,0.046694785,-0.026697332,0.049390644,0.055352487,-0.1171137,0.005955342,-0.04130041,-0.01604663,0.021513432,0.04828293,-0.015622603,-0.01788446,-0.0386164,-0.046328932,0.03437969,0.007567649,0.011566385,-0.028791467,-0.049816962,-0.035975274,0.020228032,-0.028060446,0.1297611,0.03948796,-0.073434286,-0.02489355,0.03826696,0.004874777,0.0957907,0.007674324,-0.06087631,0.059590798,-0.053961303,0.07195896,-0.06932181,-0.049706906,0.015055423,0.08980203,0.09940714,0.018003475,0.043780454,0.02329417,-0.021370158,0.106176265,-0.067580216,0.05219073,0.08051568,0.05528253,0.068470165,-1.1456512e-32,0.01563401,0.025308305,0.081796736,0.075374864,0.055772666,0.0031677098,0.028590167,-0.10353216,0.013460389,0.038206942,-0.08685882,-0.04752239,0.06454096,-0.013731587,0.008584736,0.0412924,-0.0030472414,-0.06520345,-0.0028617966,-0.040862367,-0.07491147,0.061236724,-0.004155423,0.013183359,-0.05884715,-0.0053450014,-0.021838386,-0.029903354,-0.07467493,0.020048091,-0.0065991487,-0.062771924,3.939444e-05,0.026013821,-0.083477005,0.013590309,0.09739424,0.086982444,0.00015327039,-0.00807385,0.022823356,0.02004916,-0.035681017,-0.015085155,-0.022603886,-0.019910974,0.06792201,-0.104547545,-0.015103107,0.016947035,0.10236654,0.019977408,-0.04652264,-0.030628823,0.042548303,0.0065211984,-0.008984286,0.018994572,-0.066596754,-0.008877996,0.00453629,-0.04175041,-0.02520176,0.019867698,0.04986465,-0.0020305675,-0.0046990095,-0.023896927,-0.023360634,0.018479047,-0.010235749,0.027635684,-0.0037557753,0.067664154,-0.012397543,-0.035238545,-0.056357667,-0.00281642,0.009970957,-0.030255254,0.051417716,-0.04932559,-0.0151977,-0.0027697706,0.03692063,-0.028195618,-0.0056375675,0.03042244,0.030534163,0.023150751,0.013380912,0.085197724,-0.015006519,-0.011462007,-0.071962595,-5.2631286e-08,-0.0068250066,0.0027021288,-0.11510917,0.016811986,0.0016317117,-0.099062905,0.005945456,0.07432773,-0.014116357,0.0705707,-0.018687509,-0.020711116,0.047412723,0.045455776,0.049218345,0.065104336,0.061564077,0.14687291,0.01673559,0.0066556325,0.057670187,-0.024185779,-0.04058407,0.030464869,-0.03322904,0.004796427,-0.016456245,0.042538393,-0.01724975,-0.010148474,-0.0043376624,-0.0025920519,0.023697741,-0.02075981,-0.017621446,-0.015529337,-0.043247122,0.02639261,-2.9389876e-06,0.012466759,0.027689936,-0.028495269,-0.12044171,0.014668187,-0.0752651,-0.047271583,-0.07070751,-0.05112102,0.00033381124,0.04563261,-0.07998663,-0.030766465,0.07185573,-0.013488565,0.09906288,0.014547758,0.104412444,-0.012722699,-0.005531741,0.010284953,-0.04000067,0.08005024,0.089714415,-0.038998045} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:10.695347+00 2026-01-30 02:01:10.697299+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1758 google ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB 1 t 1761 Go Karts Mar Menor unknown Bien. Pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho menos tiempo. Nos sacaron d la pista a los 11 minutos. Pero para pasar un buen rato está bien. El cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el coche de mi hermano y después viendo q no podían arrancarlo le dieran otro coche, todo eso mientras esperábamos en la línea de salida sin movernos.\nPor todo lo demás bien. La pista está en buenas condiciones y se agradece. bien. pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho menos tiempo. nos sacaron d la pista a los 11 minutos. pero para pasar un buen rato está bien. el cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el coche de mi hermano y después viendo q no podían arrancarlo le dieran otro coche, todo eso mientras esperábamos en la línea de salida sin movernos. por todo lo demás bien. la pista está en buenas condiciones y se agradece. 2 2019-02-01 01:52:39.833374+00 es v5.1 V1.02 {O3.03} V- I2 CR-N {} {"E1.03": "Por todo lo demás bien. La pista está en buenas condiciones y se agradece.", "J2.02": "El cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el co", "V1.02": "Bien. Pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho me", "V4.01": "Pero para pasar un buen rato está bien."} {-0.019942753,0.08987712,-0.00021367609,-0.13477845,-0.07906266,0.03214908,0.06285852,0.08035655,0.023155702,0.022239726,0.047878157,0.0142828245,-0.033428617,0.032584723,0.0009977319,0.025083326,-0.026970917,0.023593614,-0.051573697,0.050457828,0.088648915,-0.06067494,-0.1066271,0.10093413,-0.041664846,-0.008560699,0.017913647,0.0014752215,-0.07829129,-0.07591285,-0.0056908494,0.028567594,0.11051061,-0.037859064,0.008946152,0.07942798,0.042859223,-0.066330045,-0.028856397,0.06552927,-0.05491312,-0.017058626,-0.051305,-0.019302094,-0.0076793586,-0.041919544,0.068230696,0.017925888,0.09089028,-0.06608135,-0.08146717,0.061922163,-0.035069767,0.027692994,-0.048272427,-0.01053069,-0.009799137,-0.0042627817,0.048417557,-0.0037309248,-0.03747833,-0.0012331054,-0.010102283,0.024016567,-0.024815533,-0.048966534,0.021180429,-0.046036832,-0.0835889,0.08134551,0.099485874,-0.03594581,-0.008434916,-0.0011388075,-0.0062394296,0.02767539,-0.019810947,0.006171057,-0.045945212,-0.10364717,0.018387351,-0.059623394,-0.05335555,-0.0264807,0.04268278,0.034941968,-0.018563941,0.098118685,0.06578635,0.010727621,0.0005104002,0.14555556,-0.039690156,-0.03140797,0.04114461,0.013494016,0.0145072825,-0.072570935,-0.02445787,0.04756777,0.13929377,0.034335263,-0.042396773,0.061693422,0.004882373,0.063912384,0.06564776,0.027593503,-0.01986395,0.04104119,-0.012875171,-0.018367248,-0.033484098,-0.044848785,-0.04081251,0.018313114,-0.02821694,0.0040984857,-0.0022158287,-0.0035799863,0.0030680075,-0.0021949972,-0.06600534,0.0023379943,-0.033576652,-0.062314335,0.011514067,1.4702903e-32,0.024042359,0.0072679413,0.009798357,-0.022637522,-0.060014952,0.019286077,-0.053093977,-0.048550647,-0.03289984,-0.040815473,-0.04664932,-0.029764518,-0.014530451,-0.027794199,0.030282287,-0.024235945,0.05755802,-0.010185866,0.062472966,-0.025809823,-0.034417823,-0.052557,-0.026602222,-0.03447814,0.026244089,0.054613467,-0.010212421,-0.026597982,-0.075436324,0.032217406,-0.06957022,0.044252913,0.0002284833,-0.021276688,-0.05767091,-0.04638173,0.040281992,0.0054416573,-0.03743753,-0.04830374,-0.02406004,-0.01048182,-0.02365503,0.036495656,0.06787295,-0.03908057,0.009005942,0.021960799,0.024001086,0.012287631,-0.048586134,-0.021001948,0.019581148,-0.05943202,-0.008218894,-0.0051521617,-0.035868734,0.02843617,-0.08109387,0.014469809,0.07705343,0.089842655,0.0197876,-0.06064974,-0.017728815,-0.0077386186,0.008341935,0.05041912,0.16759637,0.02925493,-0.016845629,-0.052085575,-0.033182584,0.050315943,0.0742881,-0.03524549,0.023542995,0.023506394,-0.0067762854,0.03817251,0.048434135,-0.021422675,-0.0070922305,0.019325357,0.07724589,0.07477541,0.10973956,-0.019479332,-0.08038449,0.119025536,0.03239205,0.06501868,0.06940807,0.013857829,-0.01352291,-1.4447848e-32,-0.0075417645,0.07348549,0.05774353,0.027528645,-0.050528508,-0.017767532,-0.0027342471,0.017568681,0.0025790434,-0.018317817,-0.12513675,-0.15209578,0.07999194,-0.027551971,-0.037308544,0.06412186,-0.00278358,-0.09337438,-0.02614316,-0.06888881,-0.014544284,0.062270842,0.01659227,0.05274933,0.008433728,-0.11778307,-0.013522251,0.0027686132,-0.08971154,-0.014051889,0.07706148,-0.07458896,-0.017128937,0.07007175,-0.036343638,-0.016165368,-0.04218172,-0.004724456,0.022160212,0.045103863,-0.036445934,0.020800961,0.042027663,-0.07574797,-0.072504655,0.0052332226,0.07556134,-0.0892987,-0.106923774,-0.039344445,0.032172043,-0.030817859,-0.049312353,-0.01108845,0.08283837,-0.024405958,-0.046528645,-0.031806853,-0.038057007,-0.05608182,0.036289055,-0.030113194,-0.050811928,-0.012175508,0.10832749,0.013254047,-0.013917929,-0.06017776,0.016534777,0.032708157,0.09097213,-0.0070259837,-0.123599224,0.042445973,-0.022571065,0.013257185,-0.07011306,0.023102568,-0.006414466,0.020842388,-0.010085688,0.0016133738,-0.041838676,-0.035233315,-0.07413507,-0.028266795,0.056071322,0.034334503,0.04481574,0.07383904,0.06781943,0.075773984,0.0329857,-0.06476649,-0.021488683,-5.0281542e-08,0.020236285,-0.027791772,-0.019849489,-0.008155522,0.050503,-0.018063191,0.010688533,-0.023179863,0.026820505,0.030090358,0.04183862,-0.046574112,0.010999059,-0.029871054,-0.021984467,0.040067386,0.15905723,0.049567696,0.019070521,-0.029713191,0.0945846,0.01433138,-0.034201223,-0.016846955,-0.01760919,0.010586417,-0.0149348555,0.019150896,-0.05625122,0.040473327,0.01095379,-0.048803397,-0.009249542,-0.08977612,-0.042052772,-0.02473,-0.00769957,0.018503126,0.0027237337,-0.0017299408,0.06405491,0.0072485614,-0.11122827,0.010177567,-0.06722528,-0.0674578,-0.07332339,-0.01617178,-0.05447866,-0.024651282,0.019689787,-0.01112296,0.106628835,-0.015266357,0.07930088,-0.04766322,0.03776875,0.014905279,0.0013385894,0.011952365,0.040019423,0.16805553,-0.043430574,-0.06849911} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:15.783628+00 2026-01-30 02:01:10.60127+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1851 google ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE 1 t 1854 Go Karts Mar Menor unknown Le circuit donne vraiment envie mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréable 😡 je conseille plutôt d'aller à Go-Karts Orihuela Costa qui eux sont beaucoup plus courtois le circuit donne vraiment envie mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréable 😡 je conseille plutôt d'aller à go-karts orihuela costa qui eux sont beaucoup plus courtois 1 2026-01-30 01:52:39.833374+00 fr v5.1 P1.01 {J1.01} V- I3 CR-N {} {"O2.03": "Le circuit donne vraiment envie", "P1.01": "mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréab"} {-0.01664764,0.064427,-0.03050418,-0.08110699,-0.08548899,0.037618097,-0.0033184602,0.12524794,0.051007036,0.097030446,0.03648276,-0.070825025,0.017727138,-0.02890102,-0.024408337,-0.00085502205,-0.03158123,0.029402079,0.055770814,0.019026851,-0.034939796,-0.019508844,0.009164402,0.04618675,-0.07007464,0.0401999,0.036074154,-0.032424502,-0.01715539,-0.0565902,0.0020573807,0.038657118,-0.043081585,-0.02425369,0.008058171,-0.033608343,-0.010164135,-0.09239088,-0.03157563,0.06610479,-0.054038446,-9.358655e-05,-0.087895855,-0.0047584833,0.014309053,-0.060185723,0.008798954,0.0048182616,-0.064205706,-0.023771316,0.07122016,0.016032038,0.11054048,-0.015622535,0.02380047,0.03209241,0.0017158734,0.036399536,0.06942452,0.093697615,0.03911708,-0.013462256,-0.05096876,-0.028076798,-0.05781275,-0.0100632785,0.05544583,-0.07450384,0.023397623,0.05531186,0.06694501,-0.049664743,0.01267159,-0.029746547,0.058130447,0.036075152,-0.09986837,-0.0056923097,-0.019910607,-0.043399133,0.004405314,-0.08929524,-0.0040863035,-0.048853405,0.025835188,-0.0731953,0.0033918172,0.059650805,0.0812318,0.006189856,-0.07953676,0.040268444,-0.107138135,-0.03280187,-0.0089986315,-0.024362745,0.0098432405,-0.018056259,0.002196165,0.03999783,0.014663094,-0.00045254538,-0.04109986,0.10545272,-0.052805014,0.036107495,0.023459619,-0.0042339107,-0.0024596087,0.009508749,-0.024709072,0.0016517479,-0.008086627,-0.019948093,-0.032183416,0.07502157,0.043079376,-0.039167844,-0.017397117,-0.031544782,0.05936365,-0.08386928,-0.03160877,0.034271955,0.050534397,-0.07948872,0.15046789,1.0533418e-32,-0.09138815,0.06716911,-0.012410456,-0.007919854,0.08145702,0.0040717856,-0.10025486,0.02360586,0.010076224,-1.2427471e-05,-0.084348895,0.02793927,-0.026409324,0.007649227,0.007057318,0.031937398,0.042338956,-0.07280585,0.05505723,-0.067269206,0.023493985,-0.12159934,0.023067662,0.12144046,0.04924508,-0.0004219124,0.016873768,-0.040381905,-0.076266445,-0.011209271,-0.009380893,-0.020391162,0.04312342,0.0164793,-0.023076799,0.007372544,0.060274106,0.0858585,0.012284476,0.038250096,-0.02054604,-0.045510087,-0.06463654,-0.05704373,-0.03172681,-0.015996974,0.012577796,0.017272014,0.058768313,0.06898298,-0.08272261,-0.027479164,-0.12600791,0.061256386,0.017508399,0.0145660965,-0.08189315,0.027412223,-0.05744162,0.013926938,0.09091175,-0.025335308,-0.03597959,-0.012889743,0.004559022,0.060124274,-0.021628447,-0.08351542,0.062881626,-0.08894228,-0.08608064,0.023384828,0.040212367,0.00092837925,0.025043473,0.034740195,-0.11756106,0.04910367,0.0019668443,0.023462342,-0.013962518,-0.041658573,-0.017679205,-0.034706444,0.09547688,0.05161732,0.020203495,-0.023785379,-0.026376506,0.05596791,-0.04179987,0.014097087,0.06368171,0.0412311,0.10412004,-1.1319331e-32,-0.022665974,0.044264413,-0.016433703,0.10162003,-0.033507653,0.026847653,0.034252528,0.030306378,0.012861655,0.063326105,-0.024912769,-0.014856252,0.0637813,-0.06112737,-0.031075135,0.011549207,0.036346663,-0.032824434,0.012368199,0.024844255,0.044483308,-0.04368767,-0.059848666,-0.1408337,-0.010382487,-0.011333665,0.0233794,0.026705261,-0.07499571,0.01669201,0.010033082,0.058241744,0.028374955,0.005139681,0.058609024,0.101853,0.11215281,0.16111228,-0.0067259744,0.07553385,-0.040540904,0.06571078,0.008212424,-0.009562669,0.021992914,-0.00081349805,-0.048087325,-0.1113047,-0.05815897,-0.07746655,0.03579804,0.01730173,0.006508323,0.007604683,-0.022224415,0.032430824,-0.018851327,-0.044628806,-0.031487882,-0.06331478,0.09427891,0.036380496,-0.011754298,-0.0021807677,0.08203844,-0.0040968563,-0.077472694,0.053200476,0.016321449,0.043495312,-0.0038447622,-0.03480934,-0.0014035044,0.056180034,-0.014474453,-0.018026179,-0.038704492,0.049193423,0.017593967,0.031373847,-0.07202115,0.010140041,-0.06122364,-0.102778256,0.019596519,0.028019322,0.022443384,-0.023395406,0.010253911,-0.027003014,0.023456493,0.032804802,-0.00042016755,-0.038966462,-0.018133014,-4.938078e-08,0.030294575,-0.06501494,-0.1534451,-5.7304056e-05,0.06551236,-0.1439608,0.024706854,-0.018874668,-0.068142794,0.00018547483,-0.011704982,2.251027e-05,-0.07104617,0.061490476,-0.017021086,0.10404806,-0.02848247,0.008541944,-0.0113828285,-0.0010920698,0.002334659,-0.050386153,-0.04703445,-0.045702413,0.01943905,0.017104253,0.01087381,-0.019824678,0.013523871,-0.077073306,-0.020037485,0.031796645,-0.03570658,-0.015466943,-0.033872902,0.047781117,0.007494938,0.08639649,0.00018474401,0.049767513,0.008106877,-0.04136738,-0.08260393,-0.01913758,0.07538312,-0.030068712,-0.022647785,0.005922363,-0.001769948,0.07784016,-0.070430025,1.613201e-05,-0.0023254494,-0.028554397,-0.0027325836,0.006201955,0.048892967,-0.03484791,-0.07696608,-0.0072944444,-0.097479746,0.039198086,-0.021644898,-0.11055524} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:17.663628+00 2026-01-30 02:01:10.94974+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1809 google ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE 1 t 1812 Go Karts Mar Menor unknown Una gran pista y buen precio una gran pista y buen precio 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Una gran pista", "V1.01": "buen precio"} {-0.01896443,0.037076503,-0.024186939,-0.04229021,-0.060630504,0.014425477,0.07852339,-0.007835067,0.007084124,0.008413748,0.060781244,-0.037017845,-0.018872272,0.014154317,-0.019128315,0.006654788,-0.011760443,0.018155418,0.012388085,0.017272757,0.016605495,-0.058386184,-0.055498485,0.15267292,-0.049114823,-0.053515077,0.0073304875,-0.007931583,-0.005013328,-0.046602517,-0.015594299,0.047228973,0.08176714,0.035174377,0.018726647,-0.023855908,0.08246157,-0.01377081,-0.014261243,0.06544813,-0.039979737,-0.061498147,-0.010335193,0.012643142,0.07030433,-0.003556026,0.042787284,0.01208034,0.0039021105,-0.018626176,-0.01905189,0.0004567908,0.014179724,0.029561207,0.0050173667,0.033082712,0.013145906,-0.054534066,0.028025147,0.058207307,-0.08704533,0.0019390808,-0.061046816,-0.03073769,0.058229394,-0.0037335462,-0.007629122,-0.046785433,-0.074427605,0.026635436,0.14430484,-0.07892096,-0.029878585,0.055968665,-0.04083353,0.048695818,-0.0022319378,0.015982714,-0.039970815,-0.039940286,0.03082106,-0.021863807,-0.07709667,0.04001196,0.015715642,0.04506617,-0.02859846,0.017843084,0.037042506,-0.04856844,-0.03155255,0.09290441,-0.0275637,0.042107966,0.005808798,0.014087904,-0.0069052815,-0.08664589,0.009777901,0.09842881,0.092034824,0.027247919,0.03467882,0.0066584786,-0.070784986,-0.03568349,0.09978325,0.04515159,0.024177015,0.046293393,-0.0006649189,-0.034111,-0.02782806,0.0065283426,-0.10496054,-0.023323156,0.047532108,-0.035283204,-0.040630754,-0.14248425,0.043489944,0.06753428,-0.07233978,0.03973005,-0.075876676,-0.055957235,-0.015329636,2.4105499e-33,0.0043684198,-0.033499062,-0.023528362,0.040220417,-0.06725025,0.09735626,-0.0049024187,-0.10893383,-0.024714125,0.011881705,-0.042689327,0.10654601,-0.07442535,-0.000949121,-0.015905365,0.04077487,0.027430702,-0.021315172,0.07111235,-0.019296752,-0.095023766,0.07086554,-0.03847554,0.04722232,0.004543044,0.017582608,-0.09761137,-0.1502205,-0.0657935,0.03963347,-0.0039417027,0.06675148,0.040309995,-0.026912853,-0.02851882,-0.12176806,0.0066727246,0.0015311135,-0.02342502,-0.003238405,-0.041030712,0.0040467214,0.043022353,0.003198626,-0.0042329645,-0.058072604,0.04342865,0.075739965,-0.005650357,0.015906386,-0.018737098,-0.07286388,-0.05756604,-0.0011048766,-0.001579271,-0.010953331,-0.05399688,0.035152774,0.0067943605,-0.0042700493,0.09997416,0.077302895,0.022121815,0.035386056,-0.05366213,-0.038439404,0.020807838,0.05171986,0.1265847,0.056255348,-0.04010175,-0.01981817,-0.0015205361,0.027722187,-0.011174247,-0.042879835,0.0020808158,0.0470218,-0.058060456,0.010146436,-0.030112155,-0.0014761303,0.076809675,0.05792194,0.035652943,0.16296406,0.10802731,0.017800294,-0.053030524,0.04867313,-0.038179625,0.05645517,0.07838008,-0.019876605,-0.041822266,-1.8717027e-33,0.02539392,-0.07871156,0.014477598,0.013111833,-0.0085652815,-0.022335416,-0.027570536,-0.10733472,-0.027121468,0.017173994,-0.014856534,-0.12818538,0.16170573,-0.020818403,0.023368478,0.079062276,0.025120478,-0.045975126,-0.06316193,-0.014940988,-0.06785755,0.0021030367,-0.009694215,0.08086942,-0.017861206,-0.05882631,0.07565372,0.051028628,-0.0434356,-0.027296009,-0.052194107,-0.04811715,-0.027943626,-0.0063079223,0.018495956,0.07708074,0.05526919,0.048597258,0.016632413,-0.040786546,-0.085893266,-0.013639363,-0.02330542,-0.020888347,-0.020744182,0.04919092,0.028479904,-0.06596586,-0.03325535,-0.006330853,0.030231552,-0.04978717,0.02749576,0.00028070566,0.021827541,-0.07932937,-0.060372967,-0.03271432,-0.07979206,-0.027697232,0.08625333,-0.04023889,-0.104379386,0.038241155,0.03359066,0.010393716,-0.042932473,0.008910998,0.0040447707,0.05780105,0.065022364,-0.011284966,-0.018988326,0.0010827179,-0.085513696,0.0013249296,-0.032825187,0.03316069,0.065614514,0.035746504,-0.06237689,0.034338962,-0.02803539,0.031059219,-0.010469887,-0.013016267,-0.01505548,0.014576613,0.034041137,0.048787415,0.00526816,0.0445635,-0.010524802,-0.1093806,-0.012008484,-1.7856342e-08,0.0049713305,-0.009176467,0.0012223711,0.015438407,0.046880435,-0.011591771,-0.027712505,-0.010449319,0.04349634,0.03681825,-0.021181008,-0.033885732,0.061450988,-0.051468257,-0.041201957,0.07295908,0.053779576,0.118649036,0.03376715,-0.047777425,0.044307146,0.030542525,-0.008342725,-0.07470964,-0.047033515,-0.001422129,-0.05264902,0.024691353,-0.04031897,0.010079774,0.0032126731,-0.035487223,-0.016982349,-0.12643254,0.024312178,0.048071876,0.005891126,-0.006663684,0.024982128,-0.0990555,0.027281353,0.057836317,-0.028148685,-0.008967513,-0.013787179,-0.10133883,-0.024502333,-0.010410792,0.019228432,0.04921122,0.021104435,0.024740648,0.11511726,0.058040395,0.09001748,-0.015006954,0.092553005,-0.005951876,-0.004257574,0.05853796,0.009812878,0.12497649,0.048021752,-0.073697105} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:16.475486+00 2026-01-30 02:01:10.785021+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1830 google ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB 1 t 1833 Go Karts Mar Menor unknown Buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cilindrada. Tiene una gran pantalla donde aparecen los tiempos y los dorsales. Desde el mirador también se puede seguir con las carreras. Hay un bar y servicios públicos. También hay zona de sombra y un gran parking gratuito. Es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos. buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cilindrada. tiene una gran pantalla donde aparecen los tiempos y los dorsales. desde el mirador también se puede seguir con las carreras. hay un bar y servicios públicos. también hay zona de sombra y un gran parking gratuito. es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos. 5 2020-02-01 01:52:39.833374+00 es v5.1 O3.02 {O2.01} V+ I2 CR-N {} {"A1.03": "Hay un bar y servicios públicos. También hay zona de sombra y un gran parking gratuito.", "E3.01": "Tiene una gran pantalla donde aparecen los tiempos y los dorsales. Desde el mirador también se puede", "O3.02": "Buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cil", "V4.01": "Es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos."} {0.0211897,0.026706671,-0.0041907504,-0.09606603,-0.103586756,-0.060278434,0.023233717,0.058105532,-0.00046457315,0.032938894,0.102835245,0.029643022,0.03658455,0.06944302,0.045204107,-0.039880484,-0.005107479,0.011644369,-0.007142962,0.07654102,0.10796612,-0.05497759,-0.032544874,0.007423954,-0.15041202,-0.023227733,0.015807994,0.021605033,-0.054686114,-0.09516823,-0.09705953,0.06436938,0.045721583,-0.05504801,-0.05099986,-0.096279144,-0.0011086897,-0.023833236,0.0010289453,0.08426997,-0.05129769,-0.07783382,-0.0130514465,-0.05195149,0.011624003,-0.042827103,0.009212085,0.0021884455,-0.033379436,-0.09073431,-0.010738107,-0.013639092,0.056848235,0.0137312645,-0.038439173,-0.041554566,-0.09648173,0.04068353,0.072046116,0.024353731,0.118221804,0.044075355,-0.07557322,0.030758107,0.06905131,-0.063669756,0.0066229124,0.027237937,-0.026265576,0.0072866664,0.101726465,-0.11008225,0.03584078,-0.05180313,0.024429861,0.011088116,-0.0077242944,0.026394011,-0.03766214,-0.093958944,-0.017663362,-0.014145499,-0.039297625,-0.006855505,0.039241627,0.056836173,-0.036800016,0.07692755,-0.024862904,-0.0016030588,-0.034408815,0.07609303,-0.12443559,-0.052578006,-0.030280832,-0.011608834,0.016521627,-0.096394874,0.002787837,0.03721441,0.122450896,0.023393685,0.118109845,0.039281208,-0.03175317,0.055588696,0.047934983,-0.016848898,-0.007927526,0.06815082,-0.046128653,-0.055109143,-0.055250105,-0.05332164,-0.13609634,-0.009869631,-0.031153506,0.007225877,-0.00507988,-0.052047495,0.021487035,-0.052189916,-0.034103423,-0.0299704,0.0052018943,-0.011534058,0.017175205,1.1845593e-32,-0.10504058,0.0015710442,-0.061409738,-0.007459032,0.038523257,0.01938794,-0.032496806,-0.07632156,-0.0013268659,0.044828583,-0.04536712,0.06721336,-0.033217236,-0.0073230783,0.08968291,-0.016058328,-0.004060797,-0.07236524,0.018474584,0.0027765948,0.008819295,0.026562305,-0.014515617,0.03271858,0.062822744,0.079849735,0.017110465,-0.065032266,-0.0924477,0.07053604,0.06837323,0.022791637,0.03762609,0.011570372,-0.059444975,-0.053166058,0.0022850686,-0.014200281,-0.034208983,-0.11021181,-0.0073935506,-0.094586335,-0.01677245,0.087816276,-0.06391016,0.055821884,0.044186745,-0.031378064,-0.017198192,0.07132873,-0.06492524,-0.02231114,-0.10741119,-0.001525439,-0.03597458,0.052917577,-0.03388016,-0.011493144,-0.04685644,-0.018766249,-0.0167941,0.059993535,-0.006928095,-0.07184775,0.00063267397,-0.022681993,0.012265797,-0.028577048,0.11591566,0.05589025,-0.057237633,-0.015046403,-0.046565272,0.07401808,0.026773097,-0.0038015225,-0.030648945,0.048565205,-0.012099131,0.023675334,-0.06240051,-0.00037638887,0.0111832665,0.03683537,0.0791154,0.021050949,0.050650436,0.058404204,-0.052840605,0.08502615,-3.362896e-05,0.0748738,0.025113542,-0.016280035,0.035240848,-1.3903032e-32,-0.016734168,0.05689689,0.032369368,-0.015273166,-0.026809027,0.0029461433,-0.008530576,-0.112799734,-0.06835693,-0.011350428,-0.10937948,0.008288398,0.069233276,0.025989758,0.044307515,0.069932565,0.018879842,-0.09198621,-0.077367924,-0.03096717,0.023389317,0.008146133,0.009274067,-0.011419274,-0.05024831,-0.05925337,-0.04632922,0.017117038,-0.1053799,0.01675962,-0.0136749195,-0.047590867,0.028666994,0.01972969,-0.05458502,-0.01286906,0.10293239,0.013191625,-0.050672267,-0.07522509,0.017405419,0.010192437,0.067197,-0.03915811,-0.0022470083,0.020551413,0.015817603,-0.09176604,-0.06824616,-0.05453771,0.0953396,0.016114712,-0.002499452,-0.059540518,0.06975531,0.013888485,0.024112135,-0.086678654,-0.073758416,-0.023784108,0.064385474,-0.04108396,-0.084689595,0.011609479,0.07022038,-0.05771405,0.027474344,0.006386172,-0.024446888,0.025542831,0.050145768,0.045341134,0.023034975,-0.010625534,-0.054590117,-5.9004e-05,-0.056548096,0.019794691,0.051733952,-0.051608056,0.0028716123,-0.03460955,0.032675482,-0.009303836,-0.019674888,-0.021014247,0.018366551,0.05703174,0.0047098384,0.01423888,-0.00677661,0.08886981,-0.028954385,-0.0077464273,-0.029405203,-5.6913265e-08,0.015800511,-0.03357855,-0.05771956,-0.020645333,-0.011664123,-0.021708708,-0.021416718,0.05168581,-0.009531765,-0.0122590205,0.003464764,0.008396621,-0.009909279,0.13938126,-0.00042282246,0.047791,0.05338074,0.09913023,-0.02588591,-0.037893582,0.04466557,-0.025466219,-0.03724453,0.09230243,0.032757297,-0.022886865,-0.08341912,0.029054219,0.0024917342,-0.015595609,-0.0011422669,-0.022619348,0.0017617365,-0.04114022,-0.018083857,-0.0015420439,-0.08891358,0.01364282,0.036153838,0.021438291,0.09530721,-0.08660241,-0.0639571,0.022777062,0.006282716,-0.028683526,-0.01571497,-0.05312098,-0.031699687,-0.008221247,-0.0589469,-0.0026041958,0.05673561,0.010520891,0.051313825,-0.033527184,0.057493076,0.027197573,-0.005278479,0.0050434466,-0.018544953,0.13332064,-0.0023815362,-0.014200846} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:18.259087+00 2026-01-30 02:01:10.879748+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1785 google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE 1 t 1788 Go Karts Mar Menor unknown Wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis. Omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zaten, opteerden we voor de F200 karts. Eenmaal vertrokken zagen we dat er ook ook zwaardere karts in onze sessie zaten welke niet enkel sneller maar ook zeer agressief reden. We werden meerdere keren van de baan gereden en ook verbaal uitgescholden. Door de organisatie werd hier niets op gezegd. Gevolg was enkele blauwe plekken, gekneusde ribben en tieners.die over stuur waren. Toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze ons niet verstonden. Ons zien ze hier nooit meer terug . wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis. omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zaten, opteerden we voor de f200 karts. eenmaal vertrokken zagen we dat er ook ook zwaardere karts in onze sessie zaten welke niet enkel sneller maar ook zeer agressief reden. we werden meerdere keren van de baan gereden en ook verbaal uitgescholden. door de organisatie werd hier niets op gezegd. gevolg was enkele blauwe plekken, gekneusde ribben en tieners.die over stuur waren. toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze ons niet verstonden. ons zien ze hier nooit meer terug . 1 2023-01-31 01:52:39.833374+00 nl v5.1 O1.05 {} V- I3 CR-N {} {"E4.01": "Omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zat", "O1.05": "Wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis.", "P1.02": "Toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze on", "P3.01": "Door de organisatie werd hier niets op gezegd.", "R4.03": "Ons zien ze hier nooit meer terug ."} {-0.084296316,0.08513848,0.027354658,-0.04486759,-0.0813672,0.0016659289,0.10155878,0.047662653,0.050291162,-0.0011967092,0.036111873,0.005622035,0.02140401,-0.021127094,-0.007420811,-0.030482583,-0.061304007,0.057711765,-0.09189391,-0.00080530887,0.01916596,-0.027359072,0.035071645,-0.060038555,-0.048662204,0.018406773,0.02761084,0.028878625,0.07005155,-0.020457668,0.033307895,-0.028565755,-0.061220895,0.012457742,0.00995651,0.07366625,0.01706384,0.009929472,-0.024666175,0.011822858,-0.011399083,-0.020637233,-0.14724243,-0.08341731,0.01172907,0.06498336,-0.04573069,-0.04599996,-0.06632609,-0.04031511,-0.008268664,0.027078124,0.04134083,-0.056648575,-0.017232405,-0.056812022,-0.04949476,0.036220063,0.043714013,-0.009864977,-0.004764049,-0.048245106,-0.010131241,0.016228981,-0.08669755,-0.016474707,-0.00012557318,0.024005339,-0.13044405,0.025436552,0.031242652,-0.060023043,-0.052556075,0.01794267,-0.044989347,0.05466824,-0.002851662,0.016590694,-0.0045924312,-0.13018431,0.07458828,-0.049199913,0.017360888,-0.017208967,0.03429218,-0.04158827,-0.012828732,0.07177306,0.026692979,0.026850592,0.015917486,-0.011282541,-0.073396824,-0.043047763,0.11494476,0.01938745,-0.092348225,0.02396169,-0.011857856,0.0403085,0.054935813,0.01742691,0.02972344,0.0358485,-0.09884637,0.016827632,0.035591736,-0.0512318,0.12206752,-0.004409181,-0.055012234,-0.033735737,0.0111610005,-0.06648003,-0.04284992,-0.03377502,-0.06254357,-0.030663004,0.09739644,0.01774256,0.027800025,-0.030081695,-0.013818176,0.06665326,-0.010176494,0.001155321,0.07622954,2.2684633e-32,-0.04825749,-0.00094124925,-0.029296815,-0.11495023,0.03430154,-0.0011215698,-0.036905307,-0.003539417,-0.040256295,-0.06793429,-0.008668457,-0.09272729,-0.024373561,-0.056889426,0.0122924,0.025154373,-0.03210012,-0.025956335,-0.076319054,-0.0022873112,0.06350441,-0.0022980303,0.04975356,0.020153262,-0.023659434,-0.066209726,-0.019721238,-0.10921215,-0.00044341022,-0.00057822664,0.06723302,-0.092291646,-0.012642732,0.02775545,-0.15302324,0.017152164,0.036462817,-0.02751465,-0.03128825,-0.089494936,-0.06524101,-0.018200548,0.03582679,0.07863107,-0.035583347,0.07489307,-0.0009533296,0.026161669,-0.0077105337,0.012535858,-0.02914199,-0.017349234,-0.066894025,0.01431306,-0.02789194,0.08887769,-0.02513696,0.041503023,0.029217774,-0.056392387,0.016940504,0.07631772,0.05886667,-0.022229644,0.032077387,-0.05653277,-0.07465724,-0.042961992,0.04587967,-0.045652084,-0.08190375,0.002362629,0.046753347,-0.027208665,0.032047726,0.055189922,0.035563346,0.031499226,-0.0125338845,0.032610305,-0.063313544,-0.07797461,-0.04497584,-0.023697058,0.030604916,-0.07351263,0.0017061112,-0.11189916,0.0033188744,0.103825286,0.041320316,0.017950855,-0.028229762,0.006422447,-0.04485082,-1.9770469e-32,0.013798943,0.11444888,0.0036266304,0.06363433,0.0133189345,0.037012525,-0.008944428,-0.05980267,-0.018685257,-0.08380782,0.024800787,-0.007819888,0.08406738,0.034766663,-0.07168553,-0.024210172,0.018495006,0.11194842,0.0870188,-0.0098876655,-0.003748234,0.049770262,-0.0351865,0.105741076,0.003098845,0.07601213,0.06917237,-0.0043631527,-0.04589126,-0.0083583705,-0.0077757733,0.0015762079,0.01328685,0.05802385,0.016911888,0.040167198,0.10292871,-0.008572517,-0.08589886,-0.032790367,0.012542917,0.041280095,-0.057909373,-0.0027268422,-0.0036989246,0.019988703,-0.022023328,0.010675936,-0.044376474,-0.033831842,0.08402158,0.15027265,-0.09275136,-0.010162472,0.031051358,0.0007701501,0.064986035,-0.104388945,-0.064114295,-0.014296473,-0.004090517,0.06490113,0.077349484,-0.012735944,0.105360664,-0.035060238,-0.019209288,0.080432065,0.027755665,-0.044903282,-0.054218292,-0.016792176,-0.020681016,-0.040860422,0.04338661,0.027833845,0.055234518,-0.051356748,0.008943968,-0.088839315,-0.08636475,-0.01122752,-0.06222019,0.0020089624,-0.013679578,0.03730812,0.028136374,0.04459124,0.05772753,0.010755898,0.031131683,0.08609056,0.055025037,0.067565896,-0.026356585,-6.302177e-08,-0.02516198,0.003968971,-0.02590599,0.01387255,0.10477537,-0.14145932,0.1022143,0.016953938,-0.11296703,0.00857107,-0.0151079,0.032157194,-0.02798971,-0.031186258,0.01966155,0.03527635,-0.01728651,0.006596559,-0.020013425,-0.022460878,0.093630336,-0.010833157,-0.05418566,0.039176587,-0.023792865,-0.0387036,-0.03878275,0.0009858654,0.1040694,-0.024164598,-0.009962575,0.053239394,0.011644856,0.012411098,0.009878304,-0.0072446223,-0.081944846,0.062145174,-0.019019213,0.02044446,-0.030449301,-0.015577548,0.11491843,-0.050344937,-0.06672526,0.031685285,-0.004488879,0.024799986,0.04792556,-0.000964553,-0.06358033,0.0127794,0.034762915,0.055209324,-0.0022766043,-0.002105238,-0.032973766,-0.0191597,0.017921891,-0.016442562,0.0013593971,0.07159594,-0.045156427,0.012662546} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:26.550276+00 2026-01-30 02:01:10.701877+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1759 google ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE 1 t 1762 Go Karts Mar Menor unknown Super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec . 8 min to troszkę mało za tę cenę , ale tor i same gokarty super . Zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja .😎 super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec . 8 min to troszkę mało za tę cenę , ale tor i same gokarty super . zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja .😎 4 2024-01-31 01:52:39.833374+00 pl v5.1 O1.05 {} V+ I3 CR-N {} {"O1.02": "ale tor i same gokarty super", "O1.05": "Super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec", "V1.02": "8 min to troszkę mało za tę cenę", "V4.03": "Zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja"} {-0.07024666,0.08589572,-0.05615255,0.010700944,-0.1230551,0.0018035946,0.08233207,0.057732698,-0.04063535,0.0024500254,0.011773127,0.049734585,0.034246314,0.050628413,-0.019070024,-0.03604387,0.0015013693,-0.0049890517,-0.084129885,0.02444831,0.08354919,-0.047150247,0.06547579,0.012996003,-0.029699365,-0.031418517,-0.016055113,0.100924395,0.060397122,-0.039923735,-0.04281686,0.056589045,-0.028083986,-0.0352932,0.022392932,-0.011599509,0.046055615,-0.082014315,0.025749482,0.020187495,-0.020527609,-0.000815778,-0.10802709,-0.041807026,-0.032554246,0.03430917,-0.014003475,0.01927514,-0.10746447,0.035490736,-0.101254754,-0.040556516,-0.023276318,0.029992037,0.044516273,0.056288887,-0.09026022,0.03836838,0.0066294177,-0.028921193,0.025375795,-0.02427482,-0.0881249,-0.008051712,0.045707837,-0.04530479,-0.017769435,0.04244566,-0.039038558,0.039168615,0.015518509,-0.04692423,0.014298193,0.013099136,-0.09233819,-0.020698255,0.0313127,-0.11720623,-0.0065591084,-0.012538085,0.035567127,-0.09048728,0.028236937,-0.048813198,0.010864744,-0.03121473,0.0036176338,0.100366876,-0.0036912623,-0.00065695524,0.06647516,0.050148338,-0.01505445,-0.0041690427,-0.0959031,0.008632877,0.0123806745,-0.02000548,0.023211911,0.027554959,0.071615726,-0.07310508,0.1025598,-0.022719216,0.038538057,0.022946827,0.0372077,0.01017032,0.0055544833,0.04155653,-0.053533513,-0.046878174,-0.06087482,-0.10679419,-0.03468387,0.018835064,-0.028798606,0.033353824,-0.025250547,-0.032187678,-0.020556124,0.04497824,-0.026935684,0.026218556,0.014525948,0.046300948,0.025315147,1.6989003e-32,0.010939473,-0.007512112,-0.022561587,0.0073715895,0.03563684,0.034147862,-0.030402504,0.017624097,-0.02356305,-0.00019439175,0.0066516967,-0.011317099,0.047186647,-0.058565903,-0.076907255,0.00074971747,0.040018678,-0.0923982,-0.01419118,0.071907856,0.04739871,-0.00930759,0.0060933125,-0.045758322,-0.019118289,-0.00091811415,-0.056852635,-0.033722363,-0.055559255,0.041233953,0.08383907,-0.071849585,-0.116925865,0.026805893,-0.01794554,-0.083777994,0.020915974,-0.00039031272,0.013780839,-0.12284078,0.044675916,-0.12447148,-0.041998714,0.06363517,0.01382314,0.02195004,-0.01507418,0.030340388,0.07732808,-0.03336073,0.005157592,-0.01854424,-0.15219316,0.026139842,-0.014154654,0.05169851,0.013844729,0.056025717,0.08144622,0.03557089,0.041622747,-0.022008538,0.012842409,0.013268535,0.039716277,-0.08053769,-0.018291947,0.025875269,0.027207095,-0.021015875,0.0108201625,-0.082691126,0.091875255,0.0597367,0.03242286,-0.028683538,0.09812864,-0.03374967,0.010073336,0.043403614,-0.050377976,0.002042776,0.031369813,-0.053560987,0.020393712,0.00020661273,-0.026347145,-0.0501278,0.022023201,0.065522544,-0.040876903,0.010851558,0.07968382,-0.06463208,-0.026974134,-1.7140766e-32,0.068358056,0.06720587,-0.010921739,0.021590123,0.052642066,0.002864823,-0.0009315877,-0.061486926,0.00052575674,0.014036329,0.070373885,-0.042748094,0.11439531,0.033150755,0.009983466,0.0069544935,0.06349805,0.035595346,0.057998806,-0.07392251,-0.060228672,-0.053379867,-0.07828321,0.109170526,-0.0735207,-0.0214388,0.070949815,-0.04249428,-0.030226732,0.14555107,-0.014803369,-0.12651516,-0.043651387,0.09466157,-0.016180873,0.0065931627,0.0095655555,0.009010533,-0.044714928,0.06335966,-0.06390733,-0.031016547,-0.06015216,0.012230646,-0.002243367,-0.0118970135,0.014224035,-0.062125318,-0.09020878,-0.046699442,0.12645182,0.06711912,-0.06918816,-0.032189213,0.0045154383,0.06601609,-0.028237328,-0.12820567,0.013678778,0.017394697,0.06927132,-0.037544444,-0.0038458458,0.037060473,0.065763496,0.017341599,-0.022296757,0.03509647,-0.004232443,0.014063772,-0.018954813,0.066681,-0.11054013,-0.0062894626,-0.08693543,0.033245046,-0.015780214,0.08132349,-0.05231165,-0.07151729,0.048365645,-0.023449484,-0.038931996,-0.008921886,-0.0057519046,-0.0216085,0.045944028,0.06704673,0.056610454,-0.035625413,0.00033999325,0.10597697,-0.00032698442,0.043558702,0.08289696,-5.078137e-08,-0.015709575,-0.0013953941,-0.0011621037,0.05165788,0.09045663,-0.029343214,-0.05399195,-0.076402396,0.027035855,0.04793289,0.016089762,-0.0068034027,0.0019324847,0.0331396,-0.028684039,0.03840627,-0.051017903,0.013062324,0.02279971,-0.025456684,0.0013427114,-0.012454524,-0.034412105,-0.010103032,-0.025805071,0.049927466,0.017506449,0.044582445,0.01755663,-0.07339288,-0.012447632,0.03219204,-0.08867898,-0.03151875,-0.041119963,0.029658666,0.016770482,0.011002411,-0.083348244,0.06633965,0.0069273417,-0.008167272,0.022246946,0.044390857,-0.06743232,-0.031663317,-0.024173612,-0.08617721,0.04286113,0.0006878294,-0.03409099,0.054760538,0.04155521,0.014925663,0.06611303,0.064711936,-0.06550784,0.013121295,-0.057610773,0.04893597,0.04720594,0.08757367,-0.054823276,-0.12856895} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:26.676961+00 2026-01-30 02:01:10.603564+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1760 google Ci9DQUlRQUNvZENodHljRjlvT2xaSFJqbHpZM28zTVcxSlFYWnlhMll6Y25sUFFVRRAB 1 t 1763 Go Karts Mar Menor unknown Sehr gut für Kinder bis 14 Jahren sehr gut für kinder bis 14 jahren 5 2025-11-01 01:52:39.833374+00 de v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Sehr gut für Kinder bis 14 Jahren"} {-0.059353035,0.1153764,0.05217073,0.04763462,-0.09891409,0.056068406,0.05431393,0.0869782,0.0024889808,-0.06725701,0.040187486,-0.101522096,-0.017055245,0.0020981168,0.0049469485,-0.044384032,-0.044345766,0.031026354,-0.02124035,0.0019239866,-0.07053853,-0.021250444,-0.01863501,0.062176995,0.011064719,-0.063767806,0.01161189,-0.062140293,0.03316768,-0.019238373,0.098808385,-0.043206863,0.10716023,-0.025358018,0.10948386,-0.06673997,0.052815676,-0.06103338,-0.021979392,0.027642624,-0.08722247,-0.025853585,-0.04214921,-0.081079334,0.044282477,0.024604585,0.090649284,-0.012827656,-0.031671304,0.08451937,-0.07968567,0.010338183,0.041478243,0.029869279,0.084125325,-0.011987311,-0.021155018,-0.01723825,-0.020215396,-0.020547459,-0.014401836,-0.0028125849,-0.09183409,-0.04590919,-0.027537651,-0.046996783,0.023488333,-0.02030825,-0.037201706,-0.039972924,0.017448463,-0.08290613,-0.01869985,0.012006062,-0.06571836,-0.06560788,0.0039406247,0.0145767685,0.033676438,-0.047051832,-0.048026018,-0.044202976,-0.037370402,0.037781354,-0.038238667,0.0056043267,0.020487985,0.06582591,0.04040422,0.030575842,0.06446809,-0.017182685,-0.025544815,0.033762965,-0.058725644,-0.01100298,-0.008216986,-0.036109645,0.035097107,0.118434936,-0.019855369,0.03882183,0.032882947,0.01027203,-0.09106976,-0.03209986,-0.022456067,0.017397892,0.0012247716,-0.05739892,0.031371348,-0.026019175,0.034131903,-0.04553662,0.11141615,0.040358823,0.02228507,-0.12157403,0.040040195,-0.013341908,-0.0062498776,-0.04664308,0.041020878,0.043176904,0.021072358,-0.027567646,0.0674666,1.4919685e-33,0.006794918,-0.010660838,0.00042072963,0.014072578,-0.065676786,-0.066117145,-0.051022597,-0.011117858,-0.052105464,0.00853174,0.04918826,-0.12570894,-0.019147443,-0.05111636,-0.017709121,-0.036334444,0.045585826,-0.06584214,-0.008784314,0.0018369517,-0.04821957,-0.054467592,0.07591037,0.0030996674,0.086033456,-0.03640045,0.0012935321,0.044149127,-0.0507702,0.019982785,0.14636217,0.0018414104,-0.035902474,0.056853246,-0.029698545,-0.07530638,0.05606714,0.030374695,0.059833992,-0.026907464,0.09802704,-0.022710925,0.04834799,0.014845371,0.2010679,0.082422175,-0.0014523402,0.0042049857,0.036933243,0.038502112,0.025082259,0.069592685,-0.017508725,-0.0023714106,0.02447558,0.055414554,0.0027792165,0.0786968,-0.023917072,0.020926876,0.032020725,0.0010291673,-0.019523349,-0.13125177,-0.0047529973,0.00093862007,0.028583478,-0.029462645,-0.004883978,0.04416106,-0.09396825,0.083546355,0.009375089,0.013316948,0.005682832,-0.017489674,-0.09614457,0.059700765,-0.0059616216,0.05009378,-0.024248127,0.05980079,-0.0041407244,0.010842063,-0.024103645,-0.045403656,0.015536902,-0.01141621,0.027968535,0.0099128,-0.0036383548,-0.0566559,0.048678372,0.002756474,-0.017360648,-2.7707469e-33,-0.013341699,-0.02556466,-0.122278266,0.06449657,-0.051737975,-0.012479811,-0.054793976,0.098160855,0.0019198002,0.07703577,0.04375106,0.0043671425,0.1486192,-0.05490651,0.06328335,0.09366516,0.016001884,-0.0012633171,-0.005801452,-0.032547753,-0.009719649,0.037425578,-0.014500498,0.047606707,-0.008597475,0.026260074,0.020680247,0.055968888,0.024589794,0.004103249,0.048840884,-0.081116274,0.03996092,0.0025792567,0.00462632,-0.04532769,0.045422275,0.025214715,-0.017926296,0.015725203,0.010068611,-0.008181825,-0.012826797,-0.0013465972,0.0012553586,-0.032358225,-0.06715561,0.001286714,-0.020502526,-0.026931139,0.0656544,0.0052600405,0.045155216,-0.029313082,-0.040670305,0.013536511,-0.042569026,-0.047183968,-0.037405558,0.028049907,0.067949295,-0.006807071,0.014533476,0.023544282,0.011612817,-0.11688812,-0.12675391,-0.11146618,0.009867936,-0.004929566,0.056058213,-0.03777324,-0.002439061,-0.007983864,0.0008727378,-0.08639469,0.04002213,0.031538554,-0.023034481,0.05822776,-0.10459909,0.0031572562,0.03546922,-0.013476534,-0.025248822,-0.042928915,0.024999803,-0.08770926,0.038062524,-0.046359424,-0.028735768,-0.021943565,0.008683965,-0.011853182,-0.040530898,-1.9253342e-08,0.045157924,-0.15346752,-0.060260348,0.052009217,0.01877298,-0.06900705,-0.050834857,-0.062711015,-0.04460478,0.046597686,0.028940778,0.09625366,-0.09077572,0.03726035,-0.023443932,-0.030554648,0.017973648,0.004174235,-0.018608503,-0.06002811,0.13530345,-0.050976373,0.031103147,0.002157111,0.031242881,0.034531478,-0.046076957,-0.0031208668,-0.020970488,-0.029206695,0.07541513,0.022862367,0.06709171,0.022468945,-0.04645949,0.033428162,-0.0633669,0.05698382,-0.01858664,0.09845084,0.033316344,-0.03852874,0.043777492,-0.01206449,0.00057150976,-0.0500183,0.0417652,-0.0917104,0.035342533,0.023561433,-0.043241628,-0.021499658,0.09039857,-0.018968789,0.0040686955,0.05034614,-0.011268204,-0.035662208,0.04929337,0.042153157,0.08689228,-0.03317398,-0.06897666,-0.025013195} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:09:30.905373+00 2026-01-30 02:01:10.6055+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1744 google Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB 1 t 1747 Go Karts Mar Menor unknown Divertido. Y no es caro. Buen trato divertido. y no es caro. buen trato 4 2025-10-02 00:52:39.833374+00 es v5.1 P1.02 {} V+ I2 CR-N {} {"O1.05": "Divertido.", "P1.02": "Buen trato", "V1.01": "Y no es caro."} {0.016739529,0.049362306,0.042160463,-0.009340142,-0.024521098,-0.017627018,0.14259425,0.036438465,0.02988375,-0.02396496,0.08192793,-0.011727156,-0.12643538,-0.011610944,0.0074139615,-0.011369882,-0.0026798174,0.04256919,0.029360753,0.0705404,0.06355041,0.05344272,-0.06461577,0.12418285,-0.06655228,0.0070209526,0.037795395,0.0157726,-0.02047083,-0.09544753,0.014009942,0.13428923,0.0018171853,0.019218145,-0.0020428868,-0.04619735,0.0030200644,0.0063707074,0.0056501096,0.054946303,-0.0919385,-0.03260466,0.010608003,-0.031450067,0.038585246,-0.040760174,-0.022583492,0.09546852,0.051757555,-0.043374132,-0.070993274,-0.06479574,-0.001723346,0.02390375,-0.042863436,0.03165423,-0.018676491,-0.041120935,0.07117395,0.060863737,-0.022894049,-0.002880396,-0.04923915,0.0399785,0.026749806,-0.03688097,0.013943037,0.04647734,-0.05639006,0.087202705,0.12287396,-0.027648112,-0.0052222465,-0.06600476,-0.017786259,0.033652615,0.014169029,0.037576154,-0.050360624,-0.0092130015,0.031873796,-0.0153645845,-0.012224653,-0.07564776,0.018188195,0.018303445,-0.07005522,0.062583774,-0.044615738,0.006765842,-0.023600416,-0.020317864,-0.0062622624,-0.016183704,0.0101711275,0.04606006,-0.014126604,-0.14877596,0.011831197,0.029218132,0.011723555,0.04742691,0.041926984,-0.006433907,0.012854427,0.042165425,0.055467777,-0.002986642,0.048998635,-0.012649003,-0.028428633,0.009297024,-0.01033815,-0.057591163,-0.08519082,-0.027743816,0.037387382,-0.050280087,0.02660432,-0.012728225,0.021247176,0.10241422,-0.09931241,0.024326608,0.0018871138,-0.032435097,0.057297148,-8.626178e-35,-0.034025144,-0.036028534,-0.0014676068,0.045698617,0.018974315,-0.013986001,-0.025762282,-0.06530123,-0.033007022,0.0034068995,-0.06258712,-0.028285801,-0.008871832,-0.0016248244,0.018927163,0.01417331,0.042586725,0.054088186,0.07356903,0.031257972,-0.046096407,0.009386627,-0.08758772,0.054742634,-0.049256552,0.06430003,-0.054504137,-0.07361691,-0.024044367,0.06121105,4.380174e-05,0.06725983,-0.004600032,0.053352147,-0.0032977993,-0.074771464,-0.023840332,0.022324694,-0.016276797,-0.007394252,0.06895142,0.04461883,-0.111291155,0.030944893,0.02300569,-0.10028874,0.084686354,0.039054316,0.08321086,0.0532542,-0.005480675,-0.057897355,-0.032750696,-0.04758405,0.03534516,0.02944461,-0.013584704,0.13816887,0.030940132,-0.017949594,-0.004119235,0.06952777,-0.03930212,-0.017147876,-0.099782765,0.0306747,0.044070847,0.03143339,0.095292576,0.025265569,-0.13954864,-0.030338332,-0.015394853,0.034756854,0.0011404719,-0.018250901,-0.04585499,-0.019483985,0.011662738,-0.0405997,-0.052860003,0.010155264,0.0535686,0.05927706,0.12232354,0.13392422,0.031475753,0.039087303,-0.026186543,0.07517087,-0.056282323,0.04081594,0.0060553006,-0.06808792,0.05465319,-7.758135e-34,0.016918719,-0.013591191,-0.0050240727,0.03268245,-0.03007956,-0.00018667022,-0.06704455,-0.050723314,-0.01369612,-0.07027799,-0.07269392,-0.05239608,0.096771434,-0.041954197,-0.06392214,0.022753412,0.043313015,-0.054648012,-0.12019246,-0.044102058,-0.05795734,-0.013170573,0.07422737,0.035507318,-0.03246856,-0.016428778,0.05418208,0.08167541,0.02122516,0.0050246534,0.034330998,-0.031565346,-0.026721748,0.03267731,0.020214548,0.04890277,-0.08051748,0.050882943,-0.002996677,0.06734595,-0.10480181,0.016488958,-0.043591626,0.0019673554,-0.059244264,0.039494183,0.02307698,-0.091044664,-0.050612964,-0.016626269,0.026399145,3.513025e-05,0.019202136,-0.013039397,0.018666975,-0.08364716,0.014763808,-0.09683009,-0.10421795,-0.0071291625,0.08774311,0.008294973,-0.044047583,-0.0835918,0.09276345,-0.0018350474,-0.10798151,0.029142354,0.028500058,0.01594306,0.10657229,-0.017454179,-0.018061848,0.022110814,-0.038362864,-0.0043448927,-0.09375903,-0.02853359,0.011183515,0.005007259,-0.081077024,0.021911953,0.0092683025,0.006496034,0.016769424,-0.027200518,-0.0997818,-0.028550092,-0.02383895,0.03259155,0.046818208,0.0061191944,0.003577098,0.007625069,-0.016423337,-1.8966265e-08,0.052932978,-0.04433768,0.00759323,-0.022004215,0.067242846,-0.011949839,-0.09060632,0.015397794,0.018446518,0.04221679,0.00571489,0.0067724,0.05260916,0.080716416,-0.04703181,0.03758345,0.09261943,0.009860275,-0.006823606,-0.03464784,0.06476151,-0.024846213,-0.023702173,-0.02958357,0.045271553,0.032378916,-0.018870836,0.08619562,-0.020512193,-0.095818736,0.022449763,-0.0454521,-0.0005181708,0.0019469665,0.004528388,0.0417717,0.019975709,-0.0025283713,-0.034440093,-0.014022232,0.07719607,0.027655387,-0.019978546,-0.036518708,-0.10376516,-0.06025884,0.064637624,0.082131445,-0.038571984,-0.006653982,-0.07007688,-0.022050904,0.005949427,0.08369744,0.06307648,0.0015976687,0.026720416,0.0072534303,-0.049026653,-0.024555143,0.010199484,0.14819352,-0.021817898,-0.059671372} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:14.766175+00 2026-01-30 02:01:10.551805+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1765 google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE 1 t 1768 Go Karts Mar Menor unknown Super endroit propre et bien animé en fin de journee\nPiste professionnelle\nSuper accueil\nEn fonction de l heure ou vous allez il peut y avoir 1h d attente\nA refaire super endroit propre et bien animé en fin de journee piste professionnelle super accueil en fonction de l heure ou vous allez il peut y avoir 1h d attente a refaire 5 2025-01-30 01:52:39.833374+00 fr v5.1 E1.01 {E1.04} V+ I3 CR-N {} {"E1.01": "Super endroit propre et bien animé en fin de journee", "J1.01": "En fonction de l heure ou vous allez il peut y avoir 1h d attente", "O1.02": "Piste professionnelle", "P1.01": "Super accueil", "V4.03": "A refaire"} {-0.061258603,0.008011138,0.017895829,-0.087108314,-0.0028250418,0.069262125,0.038006954,0.13268043,-0.0011594599,0.021360412,0.014368439,0.008345144,-0.025949908,-0.032710627,-0.075371794,-0.09098066,0.0010630765,0.016770575,-0.016345618,0.0058541517,0.15224928,-0.062063992,-0.016534306,-0.010583148,-0.039531652,-0.022562373,-0.10048873,-0.0386234,0.020502938,-0.04731851,0.030049628,0.08686014,-0.0039420305,-0.0314133,0.0065294267,0.038145747,0.01357466,-0.029552871,-0.06894984,0.017080173,-0.07644057,0.05577053,-0.076375864,-0.076555274,0.085228674,0.009831032,0.024290467,0.006273408,-0.01984818,0.008680363,-0.078660056,-0.053817615,0.10353889,0.043158278,0.03402693,-0.016437603,0.013575739,-0.09080572,0.06671862,-0.04061442,0.0027540298,-0.020232573,-0.05697483,-0.017169299,0.009717022,-0.044542782,-0.027147533,-0.0027961219,-0.04615998,0.028688205,0.035472423,-0.09984103,0.0071222656,0.022617817,0.026973285,0.056115996,-0.08575201,-0.091218814,0.0023933193,-0.090623505,0.057932105,-0.12874547,0.07612507,-0.01269655,0.036384407,0.0037190376,0.02659292,-0.005099038,0.09040471,0.07365738,0.0016486171,0.015245507,-0.061580796,-0.014680707,0.01330242,-0.00086224946,-0.02256291,-0.061656874,0.018903777,0.03480849,0.017613439,-0.07606519,0.032658376,0.00688419,0.0030777291,-0.029126901,0.04767766,0.0032255969,-0.0022136245,0.03298631,-0.03734211,-0.092178024,-0.0005299924,-0.1016051,0.072745435,0.075992815,-0.015935129,-0.020548195,-0.07831475,-0.09726054,0.08811844,0.06954618,0.012123467,0.021045074,0.085269585,-0.004820074,0.021580067,5.8859963e-33,-0.017448766,0.017500598,-0.043361768,-0.002894091,0.0011638462,-0.051704574,-0.046628386,0.041789416,0.03468492,-0.010748861,-0.026082264,0.044761855,-0.070247784,-0.049853634,0.015931182,-0.027166834,0.035735954,-0.014152395,0.05068684,-0.056739707,-0.013788378,-0.0055950996,0.06590771,0.006089327,0.018528236,-0.060920063,0.01796712,-0.025859514,-0.044961527,0.050926324,0.023187958,-0.048921138,0.032700453,0.0064262673,-0.029520147,-0.07737298,-0.02939051,0.0065047103,0.004851241,0.038401462,0.04407642,-0.02095592,-0.048045635,-0.022129457,0.020490134,0.009826376,0.085133635,0.0725786,0.0730631,-0.026689932,-0.007985593,-0.029450588,-0.10035123,-0.070552334,-0.00015183144,0.07893851,-0.04547668,0.013841879,-0.05182155,-0.003138457,0.014809428,-0.030755794,-0.032375816,0.00824421,-0.033822842,-0.018422173,0.09488968,0.03709602,0.067831606,0.031039732,-0.15264574,-0.016603675,0.106594875,0.032969408,0.015290683,0.019980768,-0.08651254,0.027446544,-0.024708271,0.051330097,-0.10106777,0.022177147,-0.010719821,0.014748452,0.074202366,0.00039507478,0.026287246,-0.0004136458,-0.0049021323,0.02247489,-0.03359747,-0.007891322,0.031107789,0.040463332,0.03893993,-8.789831e-33,-0.044596996,-0.034531042,-0.028069079,0.04508374,0.0048558894,0.051275782,-0.07808427,0.038094595,-0.01876145,-0.0024378046,0.012805273,-0.080012895,0.09862507,-0.03730393,-0.02570968,-0.034970373,0.00707063,-0.038529422,-0.020871714,-0.011205345,0.034411214,-0.046034224,0.0976226,-0.02115273,0.014335559,0.023562027,0.014379594,0.089703426,-0.012097951,0.07687455,0.044968903,-0.022519406,0.026826462,0.019743452,-0.014444653,0.119346924,0.011816501,0.04490536,0.014161143,0.038008265,-0.003138489,-0.02298728,0.011364127,0.019173916,0.05827019,-0.07188466,-0.06871779,-0.00852827,-0.015521125,-0.15570748,0.036294963,-0.015476311,-0.019443786,-0.05246303,0.014326774,-0.027774278,-0.0016231205,-0.05780357,-0.07345385,-0.012178,0.11332273,-0.016036324,0.042907503,-0.03396238,0.04733674,-0.028274868,0.017686175,-0.0554732,-0.028645933,-0.0018179484,0.11952871,-0.025445385,-0.074646614,0.059547912,-0.073080786,0.018299455,-0.013947757,0.043505844,0.011483508,0.039978005,-0.16625722,0.04967412,-0.037415043,0.018119177,0.022110626,-0.05854946,-0.055980064,0.022423714,0.05130366,-0.025293889,-0.0061731003,0.07387467,0.033413973,-0.057832636,-0.039969664,-3.8337163e-08,0.0066339322,-0.020583063,0.017328046,0.014318905,0.038604893,-0.106940776,-0.08477122,-0.08376195,-0.006371885,0.037084993,-0.0010342147,0.0012830333,0.0014818218,0.019295199,0.0072619193,-0.0059374897,0.045036227,0.06636282,-0.013491582,-0.09775568,0.014344118,-0.087245695,-0.040873338,-0.16876845,-0.086703226,0.016487071,-0.05823414,-0.09143793,-0.062191762,-0.010186214,0.026525041,0.014887124,0.0005821997,-0.081428595,0.0016526616,0.052386664,0.027162647,-0.0037696646,-0.026055126,0.07964095,0.12311334,0.041624416,0.016898299,0.010930322,0.042769384,-0.043436777,0.087353565,-0.008456663,0.012597583,0.086937785,0.026798481,-0.11119327,0.04428179,-0.046161316,0.029959762,0.013847601,0.013490796,-0.008822202,-0.017040716,0.046762455,0.036284626,0.04085571,-0.026083374,0.016289502} 0.82 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:20.638003+00 2026-01-30 02:01:10.625616+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1816 google ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE 1 t 1819 Go Karts Mar Menor unknown Doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem. Dzieciaki bawiły się bardzo dobrze. Trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt sezonu (sierpień). Polecam. doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem. dzieciaki bawiły się bardzo dobrze. trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt sezonu (sierpień). polecam. 5 2022-01-31 01:52:39.833374+00 pl v5.1 O4.04 {} V+ I3 CR-N {} {"J1.01": "Trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt", "O1.05": "Dzieciaki bawiły się bardzo dobrze.", "O4.04": "Doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem.", "V4.03": "Polecam."} {-0.051302917,0.07432414,-0.038242638,0.007888472,-0.08050422,-0.008917861,0.13863236,0.14960271,-0.08147837,0.054089192,0.045207363,0.07752724,-0.0023630501,0.07040158,-0.022047048,0.040729802,-0.0045912056,0.08506679,-0.054756444,0.028817603,0.0024312064,-0.061982784,0.09407721,0.031437907,-0.0018347213,-0.01439237,-0.0022220563,0.114138015,0.032268107,-0.042282496,-0.054416854,0.041448575,0.03367232,-0.018430553,0.0657456,-0.043050673,-0.022977214,-0.102261245,-0.060745753,0.06965039,0.0010549277,0.015269824,-0.1111646,-0.023357395,-0.034490053,0.02516299,0.03840739,0.04670256,-0.08557967,0.030938162,-0.110244356,-0.0690849,-0.0041117887,-0.01981739,-0.07868264,-0.041308228,0.006342106,0.082377344,0.0029647844,0.00069117016,0.0060053305,-0.01439326,-0.071813986,0.009233793,-0.0029884477,-0.049022395,-0.037576005,0.048292436,0.0062600765,0.062341217,0.08246464,-0.08508962,-0.11295335,0.032265667,-0.1392622,-0.043743968,0.027901785,-0.034586515,-0.013399748,-0.04322442,0.010638862,-0.0676701,-0.041448567,-0.09688114,0.03835328,0.0265776,-0.02219846,0.057984725,0.03306262,0.007322947,-0.048847057,0.07917209,-0.071477495,-0.07259165,-0.0940675,0.016534124,0.025176695,-0.050207723,0.011995719,0.016273886,0.11007805,-0.025260992,0.11422882,0.045932774,-0.0101390295,0.028121779,-0.003084913,-0.04505499,-0.039894044,-0.0074666,-0.039279066,-0.069431186,0.034796044,-0.03587544,-0.0066124434,-0.014497753,0.006251445,0.020762252,0.019122215,0.009284172,0.0031333081,-0.030685648,0.030459082,0.023095358,0.025710437,0.006109542,0.08123053,2.0814045e-32,-0.06352625,0.006366715,-0.0435262,0.0076286327,0.036104735,0.008729421,0.0075137895,0.03077374,-0.07917531,0.0388583,-0.0682192,0.012850057,0.061871372,-0.02922546,-0.028346099,0.031056719,0.065747835,-0.05549112,-0.009933961,0.07221148,0.07288852,0.02697045,0.03171448,0.0027824896,-0.013361739,0.0007487941,0.019853076,-0.025957601,-0.023960976,0.018837256,0.10971319,-0.04794693,-0.057241913,-0.076400876,0.008658028,-0.013049556,-0.03785149,-0.04907669,-0.046691768,-0.08371916,-0.025606936,-0.115727596,-0.04322282,0.10029196,-0.036244664,0.031970423,-0.0086867735,0.003302703,0.056013193,-0.05615261,0.015522268,-0.045270354,-0.051091854,0.036533363,-0.040984783,0.079006046,0.008488496,0.024967441,0.0753556,-0.06490809,0.05097144,0.012582281,0.010231365,-0.034094367,0.04639328,-0.13523452,-0.010783441,0.0025164592,0.0039571887,-0.018792517,-0.041232646,-0.076564856,0.035645448,-0.0029295187,0.062190864,0.0048855366,-0.02248501,-0.0149969645,-0.037286628,0.029194033,-0.07122595,-0.045130074,-0.018126922,-0.058260195,0.046956178,-0.040980168,0.04325417,-0.020104242,4.4701992e-05,0.09241567,-0.029547095,0.02391761,0.027376482,0.002581301,0.014390711,-1.9273571e-32,-0.007886878,0.08649163,-0.01769975,0.020089123,-3.2786404e-05,-0.02248137,-0.02866763,-0.03164893,-0.017404137,-0.007537007,0.0038750835,-0.14911692,0.0046816175,0.022009883,0.006334031,0.01861661,-0.02847262,0.039393734,-0.016881464,-0.044156797,-0.105708405,0.010507256,0.004633894,0.13392416,-0.065020815,-0.02450713,0.102193184,-0.086861104,-0.07624626,0.080538966,-0.011367452,-0.058260284,-0.0056201224,0.0058998186,-0.023570098,0.05946257,0.09545132,8.044704e-05,-0.02511059,0.03890827,0.0031888927,0.038401194,0.0048264666,-0.0035591696,-0.005956119,-0.010715979,-0.06339368,0.0012838229,-0.06360246,-0.01721504,0.111404434,0.04117112,-0.005089631,-0.049776994,0.09957294,0.062370613,-0.021886352,-0.058808424,-0.02234191,0.023320584,0.055435862,-0.048094302,-0.0003732516,-0.034921158,0.078716084,0.013648154,-0.050249457,0.06922466,0.028294006,-0.010157836,0.018929916,0.062034573,-0.03286722,0.042581998,-0.018346846,0.029360428,-0.06081268,0.053390194,-0.00846504,-0.063726775,0.042817935,-0.07588815,-0.050442442,0.07659164,-0.024711331,-0.06295667,-0.048478946,0.018721385,0.03781978,-0.07679415,0.049999777,0.05281398,0.004894985,0.055963825,0.038345613,-6.1662554e-08,-0.014945441,-0.037407186,-0.0006624205,0.0045401915,0.07751205,-0.051570382,-0.0154343825,-0.015690202,0.0069264895,0.062053327,0.029515356,0.0074376967,-0.0018695127,0.013173716,0.028607082,0.10487812,0.041150298,0.089288734,0.012470098,0.078310005,0.08773637,-0.009350167,-0.093580455,0.035356868,-0.014994094,-0.0016363534,-0.020908074,0.035455965,0.026138617,-0.07975667,0.019980187,-0.012245593,0.013229401,0.039179455,0.029747225,0.043901727,-0.022487648,-0.007442809,-0.039332923,-0.0016497021,-0.04262424,-0.005161545,0.070989095,-0.0055231126,-0.13639805,0.007822234,0.028780088,-0.067379475,0.0063513913,0.0014616648,-0.09312669,0.030348638,0.012569204,0.053664714,-0.010470162,-0.0021557002,0.032768767,-0.024367426,-0.09075352,-0.021146335,0.032074966,0.0884938,0.027464878,-0.08121225} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:25.981246+00 2026-01-30 02:01:10.819415+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1791 google ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB 1 t 1794 Go Karts Mar Menor unknown Un día estupendo en familia, muy buena atención por parte del personal y muy amables, una terraza con vistas a toda la pista excelente!\nRepetiremos sin duda!! un día estupendo en familia, muy buena atención por parte del personal y muy amables, una terraza con vistas a toda la pista excelente! repetiremos sin duda!! 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E1.04": "una terraza con vistas a toda la pista excelente", "P1.01": "muy buena atención por parte del personal y muy amables", "R4.03": "Repetiremos sin duda", "V4.03": "Un día estupendo en familia"} {-0.024403708,0.025471658,-0.025473867,-0.05306934,-0.037706517,0.014043146,0.08384158,-0.022895057,-0.059377514,0.028796006,0.06617094,-0.055743378,-0.0070014778,-0.0013783209,0.0036278274,0.012451803,-0.063905485,0.015000368,-0.00864923,0.023114165,0.017897932,-0.058294747,-0.03834387,0.1316966,-0.079840854,-0.013086372,-0.019418057,0.041393813,-0.05539363,-0.01569467,0.014026945,0.08559725,0.06273321,-0.012864983,0.008355657,-0.01834944,0.050390746,-0.069778405,-0.041113466,0.026808089,-0.09256053,0.028056195,0.009609412,-0.041658346,-0.020008026,-0.060020603,0.068785325,0.02800861,0.047287364,-0.052858084,-0.024091506,-0.04238028,-0.053865544,0.028101018,-0.018777326,0.03645475,0.004288894,-0.031450566,0.045345113,0.030687934,0.009361855,0.076541856,-0.0739101,0.024335567,0.04587588,-0.018947072,0.0277934,-0.0010225074,-0.060393866,-0.020136077,0.06497498,-0.004559334,0.03287307,0.052090436,-0.008756251,0.067990325,-0.032633208,0.024103282,-0.047266338,-0.025445614,-0.024214705,0.03473636,-0.027410675,-0.027722774,-0.0041305334,0.0090556955,-0.058613837,0.021373032,0.045100186,-0.034737684,-0.011106981,0.07208766,0.03262171,-0.010100632,-0.06481157,-0.00060247234,0.030219026,-0.11113539,-0.018328397,-0.0032398885,0.08755272,0.02028773,0.079534344,0.024047198,-0.042831432,0.042122725,0.046561737,-0.038483538,-0.044416487,0.09004874,-0.053993616,-0.05974695,-0.054451544,0.023503162,-0.09272833,-0.016307555,0.065612555,-0.059792276,-0.041892577,-0.072791494,0.014826602,-0.005482241,-0.03884056,-0.04269681,0.02020179,-0.08587535,0.015916841,8.655567e-33,-0.03508025,0.018846236,-0.019088112,0.104301415,0.007338454,0.08640909,-0.049758468,-0.02222084,-0.046863593,-0.041702528,-0.07527343,0.064723365,-0.013939604,0.064670235,0.04838585,0.10120242,-0.040527243,0.01451523,0.0064669386,0.08621356,-0.06356444,-0.002524301,0.0027607155,0.006022009,-0.013133848,0.026963502,0.0031487162,-0.049861185,-0.08425108,0.03190828,-0.015998444,0.07268608,0.02084232,-0.07739625,0.005290708,-0.07187989,0.054835666,0.053868942,0.009228243,0.029851886,0.056839254,0.026045777,0.0033879455,-0.0166394,0.02184832,-0.016025811,0.13444088,0.02458381,0.111423165,-0.0043546935,-0.07245039,-0.100984134,-0.10296477,-0.04570676,-0.03968761,0.047118127,-0.044157214,0.015245067,-0.0019941158,-0.052848544,0.062389437,-0.049497437,0.07794196,-0.06136235,-0.07099329,-0.037447862,0.03911414,0.12447866,0.09917024,0.06530562,-0.0379592,-0.06544084,-0.057682447,0.05002062,0.019486181,0.011986174,0.015246561,0.02433683,-0.021680571,0.053814244,-0.012721857,0.027533626,0.01219051,0.026651261,0.03868738,0.084255755,0.060426883,0.082164064,-0.036216285,0.052695442,0.02474443,0.049221385,0.047007456,-0.07541785,0.03252634,-9.943684e-33,-0.01580889,-0.06889957,0.012511206,-0.04792162,-0.005741166,-0.08569241,-0.027759349,0.020474534,-0.0013720116,-0.053067785,-0.15398581,-0.11546464,0.12786116,-0.041769233,-0.057300247,0.07080711,0.028841896,-0.08822679,-0.019841027,-0.032325286,-0.03725382,-0.003406604,-0.0077450033,-0.016776983,-0.015114271,-0.08730221,-0.05728998,0.018325485,0.0114683835,0.006939453,-0.0077147936,-0.01709054,-0.024784043,-0.0159251,0.0020017985,0.049067337,0.06935179,-0.011345088,-0.013800766,0.052340508,0.030216355,0.03280975,-0.028284166,0.03573908,0.0026833136,0.08058601,0.0017365303,-0.124962,-0.062065315,-0.029400323,0.048920672,-0.07458349,0.0211656,0.023143342,0.08746317,-0.07675123,0.011101975,-0.0048987404,-0.061106462,-0.012777704,0.020850187,0.0066231037,-0.0768314,-0.021437256,0.050701585,0.0013430088,-0.045746524,-0.025552418,0.011998996,0.08963066,0.09063857,-0.026332097,-0.11617106,-0.04410511,-0.061906807,-0.030260168,-0.011089281,-0.0031306886,0.019403053,0.0456556,-0.03262111,0.010678203,0.033283725,-0.07468062,0.015266677,-0.04092265,-0.06098477,0.043448847,-0.029757531,0.051036697,0.018742913,0.01481211,-0.08803675,-0.043900106,-0.030739754,-4.1131276e-08,0.07437802,0.03605501,-0.007778482,0.05290446,-0.03314968,-0.036297157,0.006879075,0.061256107,0.05243614,0.061262026,-0.07298014,-0.075838685,-0.0008397939,0.061869152,-0.023830358,0.076601766,0.09489489,0.093577094,0.00049108773,-0.022762239,0.06446116,0.0128522115,-0.043236725,-0.00054896675,-0.05779338,0.02995978,-0.0044509238,0.02797303,-0.08534787,-0.05207143,-0.015587772,-0.0412002,-0.051695947,-0.110827975,-0.016163941,-0.056170743,0.01663762,0.046606857,0.0010998519,-0.107604295,0.12898509,0.025730753,-0.07878298,-0.00611188,0.012982611,-0.04561687,-0.020890806,-0.011824725,-0.021542313,0.07679384,-0.011854872,-0.046471488,0.058660235,0.0041994345,0.0627718,-0.032650538,0.07149798,0.03535225,0.044271745,0.041607242,0.06305108,0.09003778,-0.012432546,-0.056581985} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:26.125662+00 2026-01-30 02:01:10.722609+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1838 google ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB 1 t 1841 Go Karts Mar Menor unknown Diese Go Kartbahn ist lang, bietet viele Möglichkeiten zum von unterschiedlichen Kategorienen an. Zum zuschauen sind einige aussichtsreiche Standpunkte angeboten, oben auf der Terasse oder bei schlechtem Wetter im Gebäude. Man kann beim Gruppenrennen Namen zuordnen und auf der Taffel werden die Zeiten angezeigt. Nach dem Rennen kann ein Ausdruck mit Rennzeiten kostenlos mitgenommen werden. diese go kartbahn ist lang, bietet viele möglichkeiten zum von unterschiedlichen kategorienen an. zum zuschauen sind einige aussichtsreiche standpunkte angeboten, oben auf der terasse oder bei schlechtem wetter im gebäude. man kann beim gruppenrennen namen zuordnen und auf der taffel werden die zeiten angezeigt. nach dem rennen kann ein ausdruck mit rennzeiten kostenlos mitgenommen werden. 5 2024-01-31 01:52:39.833374+00 de v5.1 O3.02 {O2.03} V+ I2 CR-N {} {"E1.03": "Zum zuschauen sind einige aussichtsreiche Standpunkte angeboten, oben auf der Terasse oder bei schle", "O3.02": "Diese Go Kartbahn ist lang, bietet viele Möglichkeiten zum von unterschiedlichen Kategorienen an.", "O3.04": "Nach dem Rennen kann ein Ausdruck mit Rennzeiten kostenlos mitgenommen werden."} {-0.05087177,0.032099374,-0.00066242705,-0.008500049,-0.07523331,0.048917055,0.037549816,0.018382886,-0.014437563,-0.024917658,0.030738689,-0.050917473,-0.10773086,0.019623864,-0.024467409,-0.0789699,-0.07752607,0.075994484,-0.04577503,-0.01022194,0.007055589,0.0012990612,-0.0045688627,0.048277747,0.006452433,0.057761125,0.04143844,0.022777602,0.057314146,-0.05306637,-0.027718337,-0.012745421,-0.03218314,-0.008432952,-1.538249e-05,-0.024880217,-0.03142165,-0.08556858,3.6003566e-05,-0.015666204,-0.01121884,0.053544026,-0.1052457,-0.02434499,-0.019463528,0.022472303,0.06845978,0.01265641,-0.105208434,0.028299991,-0.05189858,-0.152018,0.034537643,-0.033968873,-0.0022186066,-0.048740186,-0.06876882,0.04877797,0.039790384,0.058500282,0.008095324,-0.032660168,-0.031499997,-0.014144966,-0.09150369,-0.003301974,-0.0013307162,0.039118204,0.016560592,0.011123965,0.09655376,-0.06218128,0.11669373,-0.0047085155,-0.06721928,-0.095625274,-0.06989119,0.07820725,-0.06771861,-0.011844435,0.0007432141,-0.051158804,-0.033618003,0.023330776,0.026507683,0.035944488,-0.051969647,-0.024430033,-0.02352022,-0.006608462,-0.028298803,0.034253344,0.07948244,-0.049728896,0.018947067,0.017689852,0.0034009204,0.024423428,0.014433003,0.0012061151,0.026505223,0.08913056,0.017556295,0.050013572,0.052846294,0.021127515,0.010898434,-0.041243948,0.046566233,0.0053741257,0.010693253,-0.0050448403,-0.010833342,-0.0819438,-0.062211856,-0.11137651,-0.04122668,-0.08602924,0.04411865,-0.03285661,-0.04292205,-0.035535477,0.021482721,0.0155684315,0.06796945,0.10772042,0.010512186,1.8902353e-32,-0.020008884,-0.064318076,-0.025284644,0.05287993,0.010416023,-0.08288337,-0.07011843,-0.005196234,-0.018214222,-0.09308216,0.0065256017,-0.011790798,-0.034623064,-0.017409468,0.0817421,-0.029767647,-0.028878117,-0.040988073,-0.008533869,0.037140198,0.0016051194,0.013482845,0.004516228,0.070619985,-0.017929142,0.026707832,0.0050684703,-0.0016488169,-0.057831235,0.033980034,0.008394282,-0.007828323,-0.0258263,0.0017381673,-0.03297329,0.002384258,0.0129327765,0.080161065,-0.011914754,-0.010397662,-0.005209519,-0.06906252,-0.06818316,0.01839217,0.026440602,-0.011738536,0.07003567,-0.007971998,0.08511845,-0.04545599,-0.03605795,0.015011365,-0.0079087205,0.06712165,-0.028198186,0.07730107,-0.047153227,0.11259376,-0.12793861,-0.08964387,-0.04471462,0.07049989,0.04748035,0.11868302,0.033738904,0.026083436,0.0020740388,-0.049217843,0.009769015,-0.019804109,-0.079800256,-0.05441681,0.06625883,0.095508516,0.09433202,0.03734756,-0.070797235,0.056883484,-0.09120389,0.025538001,-0.06896396,0.012315207,0.042234935,-0.029590907,0.04989398,-0.01962882,0.045856476,-0.09690114,0.04962872,0.049214616,-0.010254848,0.076129645,0.034760565,0.012545926,0.035803806,-2.040718e-32,0.045639675,0.049498286,0.046212684,0.036627043,-0.08481306,0.041534886,-0.080016345,-0.038012885,-0.10122417,0.024324259,-0.05809541,0.032043852,-0.021944912,0.0028322544,0.060246468,0.018001592,0.052945428,-0.02833531,-0.006323672,-0.13401768,0.064980716,-0.028746178,-0.066755585,-0.069917165,-0.041549195,0.0012475247,-0.0021721509,-0.02951702,-0.02598657,-0.045514848,0.017140634,0.01089469,0.026394857,-0.07622861,-0.018432444,0.0006418182,-0.015631847,0.053889804,-0.062957205,0.06959701,-0.034868985,0.030030252,0.012301526,-0.023528501,0.034950607,-0.062212862,0.008652386,-0.105491325,-0.034374926,-0.11265902,0.09716117,0.08885281,-0.02398237,-0.097241856,0.1017937,0.02908819,0.025314152,-0.013884666,-0.044800423,0.030758757,0.09956152,-0.03897134,0.005134476,0.04582077,0.05202328,-0.0014863855,-0.04577735,0.044478964,0.012949722,-0.0005056601,0.05655896,-0.0052312715,0.04541041,0.044856302,-0.03059044,-0.0051447833,0.07038275,0.112611465,-0.06128218,0.019920235,0.045904636,0.030573726,-0.044350218,0.0026532114,-0.033006165,-0.010995695,0.05702319,-0.03441088,-0.0352462,0.0048601367,0.015189235,-0.006298631,-0.0286694,-0.03956413,-0.042823467,-6.903562e-08,0.005334253,-0.06669813,-0.088582925,0.01949549,-0.04259331,-0.09160409,-0.0831484,0.07720929,-0.09665566,0.08185457,-0.047510955,0.025761839,-0.061419617,0.15826216,-0.031442493,-0.026893051,-0.0068514585,0.017994039,-0.062962666,0.06743244,0.027165601,-0.055084724,-0.08159271,-0.0006961117,-0.023042513,-0.03865187,0.02377916,0.06476764,-0.0012560309,0.022313744,-0.013530787,0.07499983,0.046777617,0.06905105,-0.022734802,-0.09934698,-0.007943415,0.042246137,-0.0005871179,0.050589047,-0.03473336,-0.06546149,0.039694984,0.029785838,-0.020111404,-0.03527404,-0.02703608,0.041858725,0.028947705,0.05786656,-0.090877905,0.06363847,0.022219308,0.013534089,-0.015132123,-0.013552327,0.020653429,0.0073983413,-0.06292235,-0.0804506,0.02265499,-0.004008018,-0.051817987,-0.023429157} 0.975 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:32.098528+00 2026-01-30 02:01:10.903641+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1823 google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE 1 t 1826 Go Karts Mar Menor unknown Karting moderno y bonito, te sientes un piloto.\nLlevado por una familia que te asesora y ayuda en tus dudas.\nInstalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por meta.\nTambién tienen cámaras que van en tu casco para grabar la carrera.\nDesde la cafetería y la terraza que encima hay ves perfectamente el circuito.\nSi tienes suerte ves los aviones de la Base aérea de San Javier ya que la pista del aeropuerto está a 300 m.\nBonita jornada. karting moderno y bonito, te sientes un piloto. llevado por una familia que te asesora y ayuda en tus dudas. instalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por meta. también tienen cámaras que van en tu casco para grabar la carrera. desde la cafetería y la terraza que encima hay ves perfectamente el circuito. si tienes suerte ves los aviones de la base aérea de san javier ya que la pista del aeropuerto está a 300 m. bonita jornada. 5 2023-01-31 01:52:39.833374+00 es v5.1 O2.03 {E1.04} V+ I2 CR-N {} {"A4.01": "Si tienes suerte ves los aviones de la Base aérea de San Javier ya que la pista del aeropuerto está ", "E1.03": "Desde la cafetería y la terraza que encima hay ves perfectamente el circuito.", "O1.02": "Instalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por", "O2.03": "Karting moderno y bonito, te sientes un piloto.", "P2.04": "Llevado por una familia que te asesora y ayuda en tus dudas.", "V4.03": "Bonita jornada."} {0.046508837,0.04742931,-0.067733884,-0.03742953,-0.05546573,0.018780006,-0.024222067,0.06979358,-0.027602151,0.0702789,0.07495664,0.0009855395,-0.018094195,-0.027381238,-0.0065281373,-0.0047603645,-0.010065595,-0.030269893,0.004757071,0.016473934,0.003570899,-0.093142234,-0.029077863,0.052956585,-0.093669854,0.028091842,0.022896407,0.052439578,-0.053537544,-0.08505108,-0.090025656,0.045509093,0.01501377,-0.014235277,-0.01104721,-0.029848497,0.012540569,-0.048988134,-0.060822334,-0.029674478,-0.081692286,-0.03148918,0.004322495,0.0072242287,-0.006388098,0.007503471,-0.0060418644,0.00063463475,0.030530905,-0.06204808,-0.03091997,-0.04680291,0.09994978,-0.033806324,-0.022607366,-0.03203413,-0.08719235,0.049862433,0.13134708,0.060392346,0.070181064,0.03282553,-0.045672853,0.012010619,-0.034950368,-0.11551292,-0.029793961,0.014471761,0.02316793,0.004441577,0.04708823,-0.054201804,-0.071957916,-0.013632605,0.0017674403,0.05810499,-0.019124549,-0.009327297,-0.048943162,-0.051344704,0.060069364,-0.07678652,-0.026527027,-0.051395793,0.0143489465,-0.005018845,0.007435762,0.04719872,0.006772891,-0.011189664,-0.06569113,0.085361056,-0.11377021,-0.059766676,0.021023791,0.0007094067,0.003371174,-0.07661066,0.04399382,0.007952509,0.11312092,0.054949734,0.07330323,0.10664223,-0.055445336,0.05387393,0.021964168,-0.007814089,0.010008673,0.00790009,-0.036556862,-0.018472651,-0.059222817,-0.09952514,-0.026283652,0.020441517,-0.04909461,-0.038539726,-0.04622768,-0.03705738,0.001251399,-0.0655703,-0.034034736,-0.016899098,0.047664285,-0.030413687,0.11028342,1.1518868e-32,-0.07785718,0.027163697,-0.040169477,0.029732034,0.054089695,-0.0023451345,-0.00033578527,-0.007591322,-0.012085396,0.017151704,-0.058393795,0.030626673,-0.041444883,-0.041174766,0.15857077,-0.04389749,-0.0082296925,-0.08584784,-0.03632461,0.011440066,0.0029164727,-0.11469985,-0.027814817,0.05974024,0.026127685,0.028417954,0.04345593,-0.012698228,-0.09562331,0.04899222,0.018043377,0.03227291,-0.03288272,-0.0035225789,-0.08497532,-0.028584808,0.040546812,0.0420576,-0.0577189,0.0053167264,0.011932502,-0.02238917,-0.0218022,-0.0059158225,-0.099378146,0.023251021,0.016143268,0.02579778,0.06962204,0.05167766,-0.116113424,-0.011715609,-0.061382513,-0.013943413,0.014933534,0.054521225,0.016119141,-0.0045831706,-0.05758878,-0.019772682,-0.01528138,0.029178191,-0.011716262,0.014960583,-0.09062379,-0.010903147,0.024820268,0.014351072,0.050199606,0.082157224,-0.071643405,-0.006503957,-0.0073610474,-0.03326542,0.087398164,0.017511772,-0.07290654,0.0777964,-0.102911085,0.060220953,-0.041375726,-0.0070086764,0.042622887,0.00908605,0.058832053,-0.021806572,0.043438043,0.040599808,-0.016286299,0.07229028,-0.03703349,0.06536818,0.055145696,0.043668546,0.01432965,-1.3916128e-32,0.027927767,0.062358987,0.045368306,0.008950947,-0.014122673,0.020916304,0.059899244,0.0068100346,-0.04301613,-0.051538315,-0.0920195,-0.07043274,0.036769986,0.01941653,0.029510122,0.029206118,0.02323672,-0.08320713,-0.05480622,-0.036903,0.059333093,0.029397132,-0.00821953,-0.034208693,0.014697364,-0.051161215,0.011042097,0.033161845,-0.114265665,0.030193252,-0.026992088,-0.02316388,0.059599973,0.15477385,-0.05732565,-0.004539903,0.13084023,0.0803268,-0.04915662,0.027180234,0.06948865,0.10030743,-0.040273562,-0.0013880187,0.002989215,-0.015731204,0.061660267,-0.07761162,-0.041970428,-0.09663853,0.09686838,-0.060228255,-0.046617173,0.008884062,0.11019788,-0.012297221,0.025907448,-0.0110193305,-0.149146,-0.015978498,0.069319606,-0.032722134,-0.055255774,-0.018975789,0.038694248,-0.04514031,-0.02798245,0.028161839,0.019685732,-0.021428283,0.010357695,0.005992728,-0.0087858075,0.08571541,0.0027361596,-0.03284923,0.011123347,0.081703134,0.04289191,-0.006545363,-0.0037947434,-0.026515456,-0.013991919,-0.054896757,0.041311413,0.054118004,-0.048880182,-0.033889394,0.036010664,-0.050229967,0.04893148,0.09288243,-0.053145908,-0.043111198,-0.035888445,-6.170754e-08,-0.010381058,0.035661224,-0.0789984,0.0440093,0.010205172,-0.03883983,0.05054227,0.008847377,-0.03652112,-0.039556816,0.006613069,-0.046512976,0.05633387,0.06442768,0.019557113,0.023671987,-0.015851675,0.12698641,-0.022062864,0.07629974,0.022660011,-0.030061737,-0.04319344,0.03069097,-0.013485311,-0.004495264,-0.07312837,-0.03736874,0.035217587,-0.011233236,-0.09483535,0.0116401,-0.05412988,-0.07437828,-0.025099548,-0.017962063,-0.04722086,0.056501437,-0.045766857,0.016569354,0.024091566,-0.07388207,-0.1218843,-0.017452616,-0.021928491,0.0001694114,-0.07166995,-0.05861998,-0.020868108,0.050246887,-0.07136461,0.01163575,0.07296529,0.01886819,0.034993444,-0.011421347,0.032479875,-0.009331973,-0.08160417,-0.08012728,-0.010644337,0.070519716,-0.031095168,0.013026374} 0.9166667 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:35.668734+00 2026-01-30 02:01:10.847812+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1769 google Ci9DQUlRQUNvZENodHljRjlvT2pGdlozUm9ialEzUkZVNVpYVTRMUzFOZEY4M1VVRRAB 1 t 1772 Go Karts Mar Menor unknown Toda una experiencia cada verano toda una experiencia cada verano 4 2025-09-02 00:52:39.833374+00 es v5.1 R4.03 {} V+ I2 CR-N {} {"R4.03": "Toda una experiencia cada verano"} {0.016727405,0.08067432,-0.04566814,0.024621138,-0.03617974,-0.06186337,0.10677024,0.01289413,-0.027725918,0.03937579,0.0673863,-0.067380756,-0.06797485,0.040324163,0.018582245,-0.0043955506,-0.0010412977,0.056360107,-0.013685501,0.06306137,-0.028957572,-0.087635994,-0.068665445,0.07192514,-0.022917036,-0.011368711,0.019829344,-0.030708872,-0.025532698,-0.06317386,0.0069476585,0.10110016,0.016832262,-0.033764955,0.0670562,0.04323867,0.036397543,-0.007715026,0.0040261615,0.008984889,-0.09859973,-0.04486785,-0.036669925,-0.044416044,0.0513645,-0.06769909,0.010287504,0.072497964,0.03233628,-0.032842364,-0.03409425,-0.003606584,-0.05505888,-0.000375723,0.0022135745,0.016149223,0.05978877,0.025047792,0.005626542,0.024839776,0.019433726,0.016785024,-0.06126055,0.011905506,0.026072018,-0.032008227,-0.0071991193,-0.015665216,-0.07746867,0.013022778,0.109465994,-0.067434855,0.023822192,0.03362857,0.0111330375,0.009011089,0.012680204,0.071970664,0.017185377,-0.032089762,0.0010053088,0.054240447,-0.09516833,0.0034062604,0.0030802083,0.07908028,-0.063633025,-0.016112719,0.005813887,0.057534195,-0.007022854,0.07037298,-0.12867539,-0.03774867,-0.033637796,-0.0033539613,-0.0032132564,-0.03191302,-0.012722148,0.10805331,0.02562355,0.039908208,-0.0010825355,0.098408796,-0.091001056,0.005675349,0.008367866,-0.07402753,0.03042283,0.01576031,-0.008557052,-0.099650234,-0.07492633,-0.09104006,-0.09334385,-0.027304716,0.002566447,-0.048306216,-0.035750516,-0.044858713,0.013774173,0.054544754,-0.029111505,-0.014214036,0.041653637,-0.11386914,0.07844034,2.9444464e-33,-0.0071253274,-0.017230432,0.015339938,0.069395564,0.078485005,0.052602824,-0.026513124,-0.08603646,-0.050284866,-0.017933456,-0.028549334,0.040273517,0.048247032,-0.040168967,0.032253526,0.10402628,-0.06957221,-0.024547419,-0.044316098,0.051115483,-0.0034423633,-0.019269427,-0.024338523,0.04847601,-0.04731056,0.046595562,-0.0002825951,-0.045966223,0.028057624,0.045603696,-0.0106433425,0.05409633,0.0010421884,-0.03849828,0.01748732,-0.032668415,0.03374258,0.005267725,0.045478854,-0.046388824,-0.0022615062,0.07274755,0.065274484,-0.009154876,-0.003184717,-0.012454163,0.104494005,0.013175022,0.072521105,-0.015450556,-0.012857784,-0.04614983,0.03706819,0.005223756,-0.016010998,-0.00092068285,-0.058199365,0.06601834,-0.0054602833,-0.03334213,0.1026383,0.0040810145,0.0034446856,-0.05864239,-0.06428637,0.009122965,-0.021036737,0.015021175,0.20918189,-0.057424065,-0.10043146,0.02360028,-0.03135252,0.05845218,-0.05419423,-0.01298975,0.004648423,-0.0017403802,-0.04902235,0.017126981,-0.12013507,0.006579895,0.07353517,0.04536006,0.07564272,0.143667,0.007234439,-0.022382922,-0.011273906,0.11084724,-0.02748925,0.049190976,0.026776714,-0.008499652,0.08164969,-4.0167498e-33,0.03340578,-0.015497254,0.011945519,-0.024247495,0.031386882,-0.058972668,-0.13820077,-0.008337542,0.00023767579,0.0020735168,-0.034024056,-0.06866815,0.090942964,0.03622598,-0.021099059,0.060950536,0.052545868,-0.061100636,-0.019727478,-0.03080272,-0.027138235,0.0073702205,-0.0478537,-0.016098749,-0.01746495,-0.060833182,0.0020046271,-0.0056693717,0.0077401157,-0.094903864,0.03839001,-0.049327165,-0.063253894,0.072355054,-0.01436114,0.05531224,0.04784296,0.041275382,-0.029346714,0.061157696,0.03104514,0.04918343,-0.04742991,0.02666178,-0.012299392,0.00205613,-0.042882647,-0.032407362,-0.09987227,-0.0047603073,0.11314524,-0.02182592,-0.04241586,-0.032615963,0.016608775,-0.075646654,0.019826924,-0.013611971,-0.027745713,0.043508332,0.15446231,0.0068541104,-0.083816156,0.07602504,0.05222106,-0.0010200825,-0.047133256,0.038207933,-0.048150014,0.07815605,0.09903874,-0.013543351,-0.13295352,-0.015779769,-0.01146712,-0.016978895,-0.053212367,-0.056870498,0.022521859,-0.036049034,-0.040305685,-0.06893943,0.0265453,-0.009650729,0.0008589741,0.025251057,-0.035154704,-0.045710668,-0.02995419,0.075189576,0.0091095595,-0.0067069465,0.018042486,-0.08032098,-0.07295536,-2.1704826e-08,-0.005936594,-0.04994613,-0.10413707,-0.042085268,-0.022947637,-0.025970215,0.022322938,0.058445286,-0.008730101,0.03145749,0.0265844,-0.040842358,0.023094963,0.03366949,0.031061862,0.055075116,0.14172433,0.087291144,-0.059697084,-0.038293872,0.059427425,-0.009053474,-0.08634132,-0.05285551,-0.051394608,-0.017860372,-0.04540774,0.017172165,0.008152238,-0.045606885,-0.041326225,0.0072799423,0.06267302,-0.07223132,-0.00011894431,0.049076892,-0.08006554,0.0122421915,0.00032799403,-0.05517014,0.042374928,0.04233785,0.048957303,-0.009212589,-0.022956561,-0.06887229,0.05712868,-0.03797044,0.029845402,0.007375205,0.030667115,0.01303497,0.053903677,0.0055236677,0.014498323,-0.001427079,0.059410993,0.068158336,-0.00925484,0.019947553,0.043763224,0.045595016,-0.013882521,-0.005070795} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:46.048255+00 2026-01-30 02:01:10.642425+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1818 google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB 1 t 1821 Go Karts Mar Menor unknown Buen trato, circuito adecuado y largo. Los coches tienen buen mantenimiento. Diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera invertida. Recomendado.\nEl mejor de la zona con diferencia. buen trato, circuito adecuado y largo. los coches tienen buen mantenimiento. diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera invertida. recomendado. el mejor de la zona con diferencia. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.05 {O3.02} V+ I3 CR-N {} {"O1.03": "Los coches tienen buen mantenimiento.", "O1.05": "Diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera inver", "O2.03": "circuito adecuado y largo", "P1.01": "Buen trato", "V4.01": "El mejor de la zona con diferencia."} {-0.009703982,0.03153901,-0.03472118,-0.04472616,-0.063504584,0.02721255,0.06198316,0.07415432,-0.043782517,-0.04542808,0.089851096,-0.03951631,-0.04624826,0.0034437568,0.021493558,-0.049858864,-0.046468068,0.040409677,0.015462725,-0.058135163,0.10970148,-0.017695758,-0.07073253,0.074911654,-0.12715514,-0.043360032,0.009681994,0.049530122,-0.0922176,-0.13057904,-0.037758283,0.13221699,0.05888935,0.008960259,-0.0025222043,0.017461136,-0.026678419,-0.02791013,0.030118925,0.080816075,-0.07562029,-0.083191775,0.021121075,-0.092123635,0.0445571,-0.08446945,0.041840535,0.03561826,0.032363176,-0.0023098874,-0.024952006,0.019396037,-0.043481752,0.0069756303,-0.05291364,0.07601855,-0.023833606,0.03178472,0.06977946,0.023731245,0.08633365,-0.011054711,-0.055566847,0.07178547,-0.0067775585,-0.01380862,-0.014676506,0.050719697,-0.034553345,-0.00023124102,0.12183991,-0.092275925,0.0022509745,-0.041725397,-0.0060621956,0.05632544,-0.00079297693,0.008174619,-0.006526297,-0.08745981,0.035379693,-0.06696002,-0.026271498,-0.04369739,0.0468162,0.014839274,-0.032479685,-0.0063109,-0.00809918,0.009191602,-0.04605728,0.09981032,-0.042340413,0.0061133006,-0.10460535,0.00056287483,0.021824319,-0.02921613,0.073305346,0.0533628,0.036408894,0.040396396,0.050173115,-0.0074184844,-0.063475475,0.01813256,0.118773594,0.063131146,0.06372435,-0.016682785,-0.08803559,0.06412229,-0.051190857,-0.10332944,-0.006444421,-0.02195981,-0.057312347,-0.040096775,0.03423148,-0.041647833,-0.018605337,0.010057759,-0.030636324,-0.009622623,-0.0024515605,-0.0023522761,0.05191178,1.2618822e-32,-0.089628495,0.0493697,0.0055010947,0.024161713,0.014341551,0.02984793,-0.04479889,0.0016240805,-0.025659109,-0.01419161,-0.03192612,0.0738467,-0.07110868,-0.03187777,0.15733685,-0.08152358,-0.058130987,0.05012264,0.04443396,-0.010155639,-0.049463823,0.009577034,0.012189158,0.03468594,-2.6630607e-05,0.033850364,0.00045370738,-0.05891978,0.0074350345,0.055536263,0.10536535,0.077830225,0.026707295,-0.07954541,-0.0822107,-0.02894898,-0.014563928,0.022530235,-0.015077104,0.021650655,-0.00067157473,-0.002380328,-0.034278795,0.057443622,0.015271241,-0.020680774,0.025309088,0.064701915,0.09443819,0.09995882,-0.08685854,-0.08587901,-0.07714277,-0.015741304,0.0326783,0.029204093,-0.05045224,0.04565169,0.0032480357,0.034961622,0.019493192,0.10548213,-0.06504509,-0.026482856,-0.08288883,0.044844825,0.07777808,-0.014366879,0.08527761,-0.043537293,-0.10505665,-0.0851094,0.01678889,0.05860152,0.03768164,0.016924614,-0.041897736,-0.020639548,-0.01726371,0.014287873,-0.08072449,-0.04984554,0.039352577,-0.004943951,0.08978932,0.09787599,0.03709096,-0.024899011,0.039398286,0.09894729,-0.014436923,0.053747322,0.01851022,0.0074858917,0.064184286,-1.22365994e-32,0.041704096,0.014120545,0.015121346,0.022403043,0.03639214,-0.0055233804,-0.04949819,-0.087224536,-0.017113972,-0.0405428,-0.034039102,-0.048304748,0.06834547,-0.095588416,-0.106850915,0.000878599,0.01233923,-0.08273535,-0.035088554,-0.023865452,0.023542957,0.027297836,0.022612974,-0.026374932,-0.08112546,0.012975431,-0.027284931,0.039765455,-0.005369478,0.051795878,0.019737732,-0.0103575615,0.018591076,0.0747799,-0.043931402,0.02702415,0.06816441,0.04713002,-0.013584451,0.051835686,-0.047731087,0.0055323625,-0.027415494,-0.0085548805,-0.042386614,-0.0042519155,-0.0011133262,-0.1017987,-0.00045405884,0.016072592,0.07747448,-0.021789245,-0.07592288,-0.12547109,-0.039996058,0.03683874,-0.014840611,-0.067852385,-0.09767935,-0.03985685,0.08023016,0.042923532,0.00047585965,-0.047680248,0.08296451,-0.02192428,-0.01023903,0.06955131,0.024258142,0.04381235,0.05042328,-0.0061035682,-0.016416794,0.021887258,-0.07361964,-0.034307647,-0.11931991,-0.0072549204,-0.010840831,0.026314087,-0.03979038,0.010366155,0.0031706183,0.0034378993,-0.021499293,-0.033154685,-0.032255124,-0.048522864,0.027269868,0.027969282,-0.03733937,0.026588501,0.007934848,-0.033745248,-0.036626354,-5.48043e-08,0.031999934,0.007786853,-0.0068724765,0.016560385,0.07441293,-0.06923037,-0.061482348,-0.0046185227,0.049333327,-0.007114409,-0.03678855,-0.017227056,-0.0022437426,0.12318538,-0.03492135,-0.0051912023,0.04309065,0.08712268,-0.023731085,-0.05514961,0.027156072,-0.012374848,-0.009554026,0.052923158,0.026765592,-0.037068523,-0.020624088,0.07616059,0.01875399,-0.0013645015,-0.036289293,0.00061334507,0.015406386,-0.03407449,0.07540792,0.041723065,-0.06121048,-0.012861941,-0.08502535,0.007002664,0.050155018,-0.07852461,-0.03920064,0.03769218,0.0030342317,-0.11253179,0.010049159,0.014840181,-0.010323461,-0.004618402,-0.06115367,-0.032865126,-0.027209861,-0.011720966,-0.0016577623,0.017622033,0.0037774085,0.016623046,-0.06737623,0.012126885,-0.016932292,0.06742832,0.019958869,-0.081776485} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:49.102012+00 2026-01-30 02:01:10.826719+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1748 google ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB 1 t 1751 Go Karts Mar Menor unknown Muy bueno el servicio, los karts en muy buen estado muy bueno el servicio, los karts en muy buen estado 5 2025-01-30 01:52:39.833374+00 es v5.1 P3.01 {} V+ I2 CR-N {} {"O1.03": "los karts en muy buen estado", "P3.01": "Muy bueno el servicio"} {0.022961594,0.00865123,0.029287372,-0.018628318,-0.04172695,0.0010038626,0.05881331,-0.052200668,0.037973415,-0.006952456,0.035493057,0.038221568,-0.0507479,-0.01881346,0.08204384,0.031660825,-0.012837379,0.02143534,-0.017523227,-0.05000971,0.1117338,-0.0033168402,-0.08331272,0.123873614,-0.10567294,-0.03137814,-0.008551994,0.010209931,-0.033194494,-0.05254229,-0.028495718,0.053092178,0.035922397,0.031302016,0.008516474,-0.027893733,0.016478062,-0.0816747,-0.037262276,0.044545494,-0.062897146,-0.09175128,-0.054711405,-0.015862772,-0.023957757,-0.107578926,-0.012152475,0.014295131,0.037142564,-0.0272848,-0.061581466,-0.05816602,-0.016201217,-0.008829203,0.02646184,-0.024595503,-0.1400725,0.02158658,0.1300436,0.0355419,-0.0042542717,0.03519092,-0.024708755,0.028391674,-0.00043947404,-0.057025794,-0.011703572,0.02088876,-0.09575714,0.053454697,0.097197644,-0.06782257,-0.00065030606,0.038920727,-0.010214068,0.0394671,0.026410619,-0.010901358,-0.0583672,-0.060320374,-0.011703823,-0.016913338,0.0030553457,-0.022133987,-0.05730155,-0.049091097,-0.013507644,0.045194868,0.060930725,-0.035163365,0.017111897,0.0065611918,-0.033284143,-0.0024346132,0.07887217,0.038957264,0.03989949,-0.09340348,0.012387765,0.06848264,0.093479216,0.019327343,0.14984314,-0.0012130679,-0.0030340427,-0.006153389,-0.01522815,-0.023866896,0.008097495,0.018331358,-0.025904795,0.0015351938,-0.07223514,0.031809162,-0.060195465,-0.06358631,-0.01786001,-0.02655814,-0.02904954,-0.008805195,0.052769072,0.043052174,-0.06559757,-0.0036511463,-0.0026946152,-0.020452624,0.043496728,4.46851e-33,-0.056948464,-0.047696326,0.04006462,0.0665166,0.025505185,-0.065699525,-0.07287527,-0.023295294,-0.05723269,-0.008301942,-0.036152948,0.08919979,0.019954117,-0.0021343816,0.1001798,0.005638414,-0.047933765,-0.01534212,0.06604491,0.047311276,-0.057994943,-0.0074891346,0.0025983562,0.0441128,-0.0413555,0.030178234,-0.0041776854,-0.0823624,-0.05229742,0.070369415,0.013692782,0.024207227,0.009982722,-0.001064224,-0.1136749,-0.033348653,0.004300052,0.009776257,-0.05668322,-0.031126978,0.01782921,0.018645035,-0.06475743,0.082528375,-0.047397412,-0.01694936,0.060121283,0.05037194,0.077053405,0.0419473,-0.07030229,-0.075101055,-0.07076874,-0.06118005,0.025420345,0.034816045,0.006618792,0.059401397,-0.041038897,-0.10066712,0.10105666,-0.047786366,0.087219685,-0.044626366,0.0004512446,-0.027179165,0.014752199,0.044223707,0.098408766,0.0155112175,-0.061812323,-0.039089438,0.014242154,0.026873343,0.055687808,0.02094622,-0.0115916515,0.04152072,0.013811156,0.07789525,-0.057073068,0.012689004,0.009943938,0.05407236,0.091148786,0.074474916,-0.011615987,0.014371443,-0.026160872,0.107610315,-0.12022941,0.0699872,0.029466592,-0.029786678,0.010335921,-5.7648124e-33,0.0031737206,0.0154742785,0.08043218,0.10288238,0.0073586316,0.021527296,-0.014663332,0.01378589,-0.021008989,0.075365305,-0.06733674,-0.114313655,0.07876479,-0.07320266,-0.027606849,0.09312477,0.03888697,-0.007944587,-0.08900372,-0.03492291,-0.057499982,0.052316263,0.078673676,0.007492581,-0.035001397,0.0024619147,-0.04627305,0.0102849845,-0.12022032,-0.04354227,0.027017485,-0.09079737,-0.034543797,0.035239395,-0.06599603,0.038549334,0.07594078,0.07981082,0.033282775,0.054872237,0.01734714,0.045469217,-0.034931377,0.014115705,-0.04557764,-0.023947235,0.03603456,-0.1352609,0.044580705,-0.091145895,0.053968467,0.012762655,-0.052037984,-0.035766415,-0.025488174,0.0041717766,-0.03965247,-0.021484608,-0.10180703,-0.007478764,0.02814202,0.0027636627,-0.056148104,-0.01441932,0.07049909,-0.007475207,-0.06776677,-0.021511892,-0.019328212,-0.0014141649,0.044679735,-0.024734182,-0.093266755,0.058629606,-0.06386613,0.0041329064,-0.060207404,-0.02305463,-0.022993749,-0.014657861,0.03547715,-0.07060172,-0.045336578,0.0092502525,-0.033790182,-0.013779383,-0.010579201,0.028310327,0.04431683,0.04289083,0.044122167,0.048351444,-0.027660534,-0.0028085131,-0.03543094,-2.6727154e-08,0.037183095,0.0020636145,-0.09042207,0.045425124,-0.006741243,-0.009569663,-0.04513905,0.04091136,0.033813126,0.09195774,-0.06606492,-0.020164225,-0.0043417225,0.0762329,-9.386798e-05,0.060394894,0.04482258,0.0796007,0.034737617,-0.03240034,0.079312935,-0.021048706,0.005729864,0.068040065,0.0038221444,0.0067419657,-0.07634607,0.06902017,0.04824789,0.022104746,-0.04252708,0.00057000737,-0.07027563,-0.05320105,-0.028538104,-0.038886003,-0.054797873,-0.018529994,-0.0067984844,0.03523208,0.0812193,-0.008002004,-0.07802272,-0.0032418561,-0.022199946,-0.006968464,-0.053907886,0.06689649,-0.045823544,0.004631085,-0.059149027,-0.060433004,0.053361032,0.06866012,0.05878343,-0.037011772,0.07994601,-0.0053835018,0.04458459,0.010986338,-0.003041156,0.08165954,0.03551768,-0.106434554} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:10:50.32306+00 2026-01-30 02:01:10.566711+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1749 google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB 1 t 1752 Go Karts Mar Menor unknown Excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande y la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!! La dueña es encantadora y se preocupó de que no faltara detalle. Me sorprendió el precio de todo ya que pensaba que sería bastante más caro. Lo recomiendo sin duda excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande y la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!! la dueña es encantadora y se preocupó de que no faltara detalle. me sorprendió el precio de todo ya que pensaba que sería bastante más caro. lo recomiendo sin duda 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande", "O2.01": "la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!!", "P1.01": "La dueña es encantadora y se preocupó de que no faltara detalle.", "R4.03": "Lo recomiendo sin duda", "V1.02": "Me sorprendió el precio de todo ya que pensaba que sería bastante más caro."} {0.00656173,0.046163656,0.04296301,-0.06923714,-0.057455875,0.04805848,0.052453667,0.060453326,-0.035041727,0.059103984,0.05325011,0.0014524756,-0.028452797,-0.035001855,0.034117263,-0.020037184,-0.0281514,-0.010701126,-0.02458886,0.0213889,0.073373646,-0.059476253,-0.07253347,0.15736218,-0.03621853,-0.08751725,-0.0039018365,-0.030772373,-0.03267928,-0.014658116,-0.024222476,0.037811734,0.10451318,-0.0022013253,-0.018101292,-0.047878403,0.07360668,-0.072559215,-0.079658575,0.06462812,-0.06045162,-0.07116148,-0.036880713,-0.07602707,-0.032060966,-0.07135275,0.07582024,0.095313534,0.048888322,-0.048651937,-0.012664108,-0.011339802,-0.009586984,0.0042673564,-0.009722319,-0.011802772,-0.016720472,-0.08177398,0.05131732,0.044884343,-0.092729285,0.059107486,-0.08370517,0.045349266,0.03905488,-0.029428983,0.016526928,-0.053823054,-0.09825027,0.13563135,0.14098963,-0.027391113,0.073521264,0.023559488,-0.02619306,0.04882182,0.010940794,-0.021736259,-0.03587662,-0.05295035,0.034982324,-0.0051317667,0.02380656,-0.03191531,-0.06584127,-0.053626787,-0.02490472,0.055663012,0.030974036,-0.040660042,0.0042221113,0.10109193,-0.031158973,0.002881305,-0.08058577,0.033847723,0.06034878,-0.050186325,-0.013751329,0.0026335577,0.09383465,0.03341978,0.04131124,-0.0063373996,0.012337714,0.06663229,0.028816449,-0.0078124553,-0.0311461,0.020122273,0.020713672,-0.021557283,-0.036037553,0.018709008,-0.12197892,-0.05715355,0.006499725,-0.051625345,-0.03286503,-0.079583265,0.01136308,0.02944848,-0.016817417,-0.03884682,-0.060517173,-0.101232,0.004460702,1.4186007e-32,-0.018910265,-0.048195146,0.023020571,0.023278316,-0.027952043,-0.01687277,-0.015362176,0.021526292,-0.0348283,0.00060982205,-0.035374966,-0.018864525,-0.03091336,8.198268e-05,-0.02903693,-0.021802515,-0.009160894,-0.036543142,0.050903577,0.0371273,-0.03327993,-0.08423699,0.02776377,0.017816465,-0.04127097,0.09131374,-0.044844843,-0.022395495,-0.04686963,0.054052573,0.04295312,0.04866044,0.033129465,-0.034977656,-0.023668434,-0.012033247,0.11434192,0.02549748,-0.020462556,-0.009416543,-0.0067720967,-0.006511988,0.00037619032,-0.010317491,-0.0339239,-0.032931004,0.1035483,-0.0036468885,0.054684397,0.02279012,-0.041734,-0.0469448,-0.043338686,-0.030785013,-0.023045028,0.030013444,-0.029086694,-0.030087804,-0.031887643,-0.030849393,0.042431034,-0.029338688,-0.018064244,-0.020234998,-0.04498045,0.024469659,0.10985867,0.054085493,0.12670107,0.02422616,-0.07581216,-0.065766625,-0.058440305,0.017367436,0.09768326,0.060490754,0.048899017,0.0059310906,0.05405664,-0.0016246403,-0.024021499,-0.031590167,0.01183795,0.02813498,0.13830167,0.11039617,0.030669663,0.052950792,-0.04133102,0.06908601,0.03245191,0.06316878,0.12311176,-0.068141766,0.0016999344,-1.4845406e-32,-0.0043507246,0.03093192,-0.015156389,-0.020130448,-0.022382667,0.012439929,0.0072877,-0.034024928,-0.03513202,-0.040505562,-0.04728922,-0.09559724,0.097616136,-0.0752728,-0.064793974,0.082707204,0.019236147,-0.089380845,-0.04051892,-0.08701891,-0.04576246,0.028786296,0.004775185,-0.017336795,-0.014379437,-0.09815731,-0.038135793,0.03998686,-0.02381847,-0.0035334027,0.017787095,-0.06900718,0.014586133,0.02847602,-0.0027022557,0.015636403,0.026630996,0.016024543,-0.016779166,0.061005127,-0.0056698113,0.010151079,-0.027849274,-0.022417255,-0.050360955,0.041358,-0.02271077,-0.12357848,-0.009750881,0.0066853566,0.06215459,-0.057187006,-0.05135522,0.024884086,0.035524625,0.02089055,0.044267904,-0.03694876,-0.027935077,-0.05897603,-0.018004974,0.028872654,0.009095821,-0.06830465,0.109933846,-0.031494264,-0.053075437,0.009575056,0.033000868,0.021712838,0.055968158,0.000356428,-0.08384528,-0.0341876,-0.099472284,-0.013361263,-0.045239717,-0.014227743,0.043662693,0.040835757,0.04173128,0.003606545,-0.016357413,-0.03633345,-0.010802318,-0.0019175139,0.012314188,0.041485433,-0.0025993143,0.11285957,0.016529256,0.079287365,-0.004952278,-0.049709238,0.039859783,-5.327989e-08,0.028873576,-0.05764041,-0.04089838,-0.0013789296,0.07575571,-0.041899115,-0.037417177,0.043979596,0.020343289,0.03809132,0.0066132997,-0.008763532,-0.032753788,0.007880906,-0.04389981,0.009238706,0.093292944,0.048660133,-0.05236864,-0.045502294,0.041853756,0.04549507,-0.045422513,-0.034844805,0.055754077,-0.03230093,-0.047546256,0.01721293,-0.07889598,0.0046395347,-3.0151103e-05,-0.011153097,-0.10194489,-0.14341706,0.013288199,0.020095317,0.014377758,0.013045971,0.022759182,-0.056910194,0.06252618,-0.02974575,-0.118036225,0.0245315,-0.058110572,-0.07457517,-0.06225497,0.054827068,-0.06734061,0.021542428,-0.06766954,0.01624558,0.058679443,0.024515921,0.054746646,-0.05051394,0.036957853,0.028425895,-0.039115593,0.05780677,0.076784745,0.10173348,0.065616116,-0.103291474} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:02.841223+00 2026-01-30 02:01:10.570709+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1841 google ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE 1 t 1844 Go Karts Mar Menor unknown Solo puedo decir cosas buenas de este karting.\nPista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran fin de semana allí, son una gente fantástica y agradable. Mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla.\nLas instalaciones super limpias. solo puedo decir cosas buenas de este karting. pista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran fin de semana allí, son una gente fantástica y agradable. mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla. las instalaciones super limpias. 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"E1.01": "Las instalaciones super limpias.", "J3.01": "Mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla.", "P1.01": "Pista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran", "V4.03": "Solo puedo decir cosas buenas de este karting."} {0.00785138,0.0013717574,-0.026087487,-0.017817367,-0.076632135,0.036505368,-0.015136947,0.08540257,-0.085002,0.024437547,0.08691272,0.037500665,-0.023544343,-0.0048480094,-0.015625572,-0.026419085,-0.012339569,0.048828986,0.015610898,0.013221628,0.009356891,-0.06823848,-0.06129415,0.05590272,-0.12547618,0.053901486,-0.023110576,0.05051302,0.016713213,-0.11721162,-0.102364376,0.07673917,0.009439786,-0.02399682,-0.018201921,-0.00057125866,-0.05871933,-0.024225118,-0.030875983,-0.012830148,-0.0036735213,-0.066953,-0.014270309,-0.05006893,0.045191884,-0.0055535785,-0.058247004,-0.0058486657,0.02260397,-0.060879715,-0.009072638,-0.054063324,0.063699886,-0.0139215635,-0.010767451,-0.08478942,-0.080699936,0.049539153,0.1239219,0.04896316,0.10485654,0.045125507,0.013448225,-0.006860316,-0.011690342,-0.10485699,-0.019266663,0.010995804,-0.02992407,0.034346044,0.12166139,-0.07449434,-0.055376176,0.0072252494,-0.010748169,0.039904367,-0.014578445,0.039060816,-0.092177786,0.02819716,-0.012636561,-0.029725878,0.026537947,-0.044605535,0.05110427,0.015113121,0.03082525,0.027647924,0.02280067,0.0430058,-0.017222328,0.15738933,-0.09383683,-0.033269715,-0.042712867,0.050773665,-0.0111882975,-0.058387674,0.012625466,-0.038539395,0.068240985,0.01636044,0.0871103,0.026550353,-0.07383363,-0.023953326,-0.019694006,-0.100257024,0.064896755,0.047624953,-0.052380748,-0.04146976,-0.06244211,-0.038577948,-0.11309026,-0.003498091,-0.070456564,-0.04256577,-0.03132801,-0.009581559,0.0076650167,-0.031260863,0.004388749,0.014731186,0.041582905,-0.026315471,0.0472968,1.0986275e-32,-0.05995679,0.0025350382,-0.06725431,-0.010946702,-0.0069741453,-0.086888134,-0.00050899974,-0.11237127,-0.10402053,-0.004749513,-0.03959516,0.10881761,-0.03229775,-0.020009214,0.09338994,-0.037525702,0.0043309187,-0.061362505,0.08430932,-0.0070874714,0.019199897,0.03511952,-0.015255508,0.02273805,0.032327592,0.021163573,0.111871615,-0.033401202,-0.07378533,0.032233678,-0.009068134,-0.03674745,-0.023634972,0.04082798,-0.028335838,-0.07023933,-0.00503542,0.017132599,-0.10988806,0.033127367,0.008988154,-0.035297904,0.005541562,0.06202243,-0.08829348,0.031997155,0.060546245,0.03821911,0.04709275,-0.020346839,-0.11660007,0.00011163206,0.008679509,0.036800038,0.015353618,0.037210364,-0.044640224,-0.061247874,-0.08231986,-0.058666892,0.02028155,0.015822558,0.008899377,-0.04904346,-0.055365328,-0.031277176,-0.01647385,0.018346418,0.13588448,0.0024675278,-0.030616472,-0.042347,0.04462274,-0.0006168894,0.12142969,0.026842376,0.047479507,0.0982454,-0.09745391,0.04245025,-0.05086973,0.028377445,0.012583059,0.07087196,0.0637046,0.016013725,0.028597916,0.05015507,-0.033971693,0.02029909,-0.047674563,0.0075264866,-0.0138825225,0.038602937,0.049064495,-1.20007416e-32,0.04535211,-0.0043670405,0.13222441,0.048246104,0.0118525755,0.06520576,0.010270919,-0.06388363,-0.0002507682,0.013421535,-0.09627621,-0.01940205,0.05724661,-0.008040851,-0.011309751,0.084321395,-0.0060030413,-0.0433338,0.0040530637,-0.008590653,-0.04110364,0.088904545,0.004357162,-0.0067604017,0.0025881846,-0.024473948,0.039331783,-0.024303177,-0.12666123,0.05559502,0.073042154,-0.044118047,-0.046253223,0.043157984,-0.11095084,0.009987984,0.011984788,0.07672767,-0.012783468,0.04770094,0.039870918,0.049303427,0.032748193,-0.00092172093,0.0024595251,-0.05934136,0.046495687,-0.05402012,-0.03513285,0.024406597,0.09367103,0.053888876,-0.028598731,-0.007355508,0.07427923,-0.07430416,0.042129386,0.0021005531,-0.108718835,-0.02120277,0.055711884,-0.05789934,-0.04428798,-0.03856459,0.03018692,0.030335339,-0.021515198,-0.04870129,-0.037518986,-0.008124405,-0.024576753,0.05205864,0.042335,0.07829767,0.03202728,0.0015004461,-0.031567343,0.034026287,0.055371404,-0.029168116,0.018372573,-0.03831446,-0.002207545,-0.042169683,0.031529397,-0.044862512,-0.08765359,0.048832636,0.046941616,0.011181658,0.040397566,0.060432535,0.052103158,-0.03179325,-0.036889393,-5.116633e-08,0.029447693,-0.01137478,-0.06367313,-0.017704595,0.02687729,-0.050911963,-0.011068817,0.035270095,-0.018597001,-0.007948415,-0.02897113,-0.037435606,0.06345672,0.068210885,0.01654685,0.045441993,0.06050481,0.16573605,-0.0015946848,-0.041426152,0.008001819,-0.05757595,-0.04295486,0.024433581,-0.049008504,-0.044379253,-0.016041005,-0.078775704,-0.019458259,-0.03944905,-0.0070032743,0.025686683,-0.00434117,0.006206838,-0.022919994,-0.007900714,-0.021944284,0.08764006,-0.047726117,0.0038964967,-0.00878661,-0.0525398,-0.08501827,-0.014816796,-0.06638319,-0.011635994,-0.04443624,-0.06436939,0.037522666,0.042288773,-0.03568156,9.426847e-06,0.05819097,0.036819365,0.05456042,0.03161491,0.047229864,-0.013943126,-0.04242143,-0.04371297,-0.07129516,0.056682844,0.067160465,0.0018989135} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:04.789912+00 2026-01-30 02:01:10.913925+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1797 google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB 1 t 1800 Go Karts Mar Menor unknown Anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañero y a mi hoy un poco antes de lo que yo habia calculado. El chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta. Me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la ultima vuelta por unos segundos. Estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido. Para mi la atencion y valoracion al cliente es lo mas importante. anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañero y a mi hoy un poco antes de lo que yo habia calculado. el chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta. me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la ultima vuelta por unos segundos. estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido. para mi la atencion y valoracion al cliente es lo mas importante. 1 2021-01-31 01:52:39.833374+00 es v5.1 V4.01 {R1.02} V- I3 CR-N {} {"J1.02": "Anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañe", "P4.01": "El chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta.", "R3.04": "Para mi la atencion y valoracion al cliente es lo mas importante.", "R4.03": "Estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido.", "V4.01": "Me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la "} {0.011717107,0.089326166,-0.048531983,-0.11250007,-0.047042537,0.015979454,0.139411,0.10426716,-0.025901834,-0.022346294,0.006183741,-0.03657813,-0.014232298,-0.022510048,0.06278765,-0.025418611,-0.013578587,0.0056299367,-0.01756994,0.0066655856,0.028795514,-0.06301444,-0.07229585,0.06883897,-0.030683849,0.016962826,0.048600424,-0.06123816,-0.05975263,-0.029637776,-0.0002393691,0.016459933,0.058976516,0.002825732,-0.04513123,-0.055755384,0.07820825,-0.07184316,-0.07407203,0.09465942,-0.034461543,-0.051835287,-0.065617464,-0.0077600614,0.028012848,-0.064688645,0.027971098,0.1025275,0.040591877,0.019912092,-0.059048716,0.041851748,-0.0456168,-0.015160661,-0.03180141,-0.033091646,0.025551345,0.052230597,0.05200515,0.028145261,-0.03095052,0.07958276,-0.013482903,-0.002063623,0.006860277,-0.05078088,0.011156924,-0.044850104,-0.082880735,0.10035118,0.08884243,-0.03966538,-0.068450764,0.04051321,-0.074217714,0.02110982,0.0274049,0.025064971,-0.024308208,-0.048098627,0.022850057,-0.028546954,-0.056979258,-0.05014125,-0.016589493,-0.0073641734,-0.03947561,0.076158434,0.017370487,-0.02456097,-0.014862606,0.13895115,-0.014270853,0.009202965,-0.010383531,0.027624168,0.0231305,0.012508847,0.009910408,0.01717654,0.0805668,0.026495773,0.05298735,-0.0035261626,-0.04749227,0.07636085,0.03853975,-0.0390574,0.0033900617,0.027583886,-0.06731429,-0.026814079,-0.035816,-0.04284035,-0.06295635,0.0070400974,-0.02915172,-0.020748956,-0.027439347,-0.029979387,-0.019100452,0.01564951,0.0013097909,0.02122443,-0.014007143,-0.06650378,0.0415671,1.20291584e-32,-0.07537704,-0.028578905,-0.008500482,0.0560274,-0.10709172,0.07084729,-0.025369627,-0.04519953,-0.0940772,0.00624517,-0.013785983,0.06426828,0.04877113,0.05826227,0.01695545,0.020844959,0.08239963,-0.008068892,0.046586964,-0.04538519,-0.040514823,-0.026138727,0.019943954,0.0034675905,-0.0159895,0.11666488,0.023388071,-0.040815316,-0.03033331,0.039866637,-0.013401526,0.00509356,0.07948677,-0.022010243,-0.07616516,0.0041234335,0.018996188,0.014634416,-0.08600109,-0.018834427,-0.066696666,0.019595323,-0.022539498,0.08795825,-0.06308948,0.072136946,0.08025993,0.037149563,0.026081435,-0.049466,-0.1306517,-0.05263161,-0.06347211,-0.0046216003,-0.015023713,-0.031583518,-0.09923474,0.005856266,-0.060128924,-0.082318254,0.01441055,0.03484369,0.0034977584,0.024552317,-0.049587887,-0.045261502,-0.021130402,-0.0025981322,0.1657541,0.047768407,-0.0196924,-0.032471452,-0.00886413,0.02764534,0.051222816,-0.0054078773,0.07734593,0.04343974,-0.02833871,0.09122167,-0.050644156,-0.059473697,0.053955622,0.061252322,0.06631471,0.090948224,0.08757244,0.029728409,-0.11370694,0.13127382,0.024465831,0.041311856,0.07503571,-0.047356453,0.06973596,-1.3287887e-32,-0.027082326,0.056417536,0.0075869407,0.002313956,0.03863391,-0.011939898,0.046875264,-0.021854514,-0.00774098,-0.05623134,-0.07709247,-0.09523795,0.08749766,-0.0029531228,0.002301509,0.05086875,-0.041598037,-0.09329607,0.0006941529,-0.039138466,-0.03361574,0.06559136,-0.015708609,0.069078945,-0.024835097,-0.08061984,-0.0019974704,-0.036453106,-0.1047154,-0.031975895,0.04761043,-0.012761432,0.0045037903,0.020865805,-0.03284636,0.015613643,0.024463246,0.009216245,-0.02859544,0.06250701,-0.083269306,0.05120837,-0.031557746,-0.07019804,-0.012607588,0.022319008,0.076813884,-0.15863216,-0.062037818,-0.0057725655,0.060249366,-0.033304952,-0.04735636,-0.008566482,0.06939872,-0.021018269,-0.016309371,-0.03196437,-0.069056615,-0.029042797,0.069115974,-0.0009703445,0.051879358,0.06866919,0.03264601,-0.07179283,-0.0014102666,-0.016639872,0.0003118675,0.019844225,0.06755946,0.016039113,-0.07076411,0.014625156,-0.039378796,-0.026582105,-0.06793229,0.05279198,0.020130672,-0.021120345,-0.032558877,0.008165195,-0.02175291,-0.034175534,0.0019434062,-0.05373399,0.015860308,0.06010273,0.003916951,0.067404374,-0.03591269,0.048804842,-0.08473085,-0.063507326,-0.02312726,-5.4053945e-08,-0.01603958,-0.005678078,-0.064280614,0.035753615,0.019214662,0.009803446,-0.08934353,0.053367153,0.008694858,0.054855507,0.04636609,-0.03327436,0.012645838,-0.05130666,-0.0030957523,0.026890378,0.08749372,0.027540745,-0.019948976,-0.0037125298,0.075282045,0.0640944,-0.095021375,-0.038410705,0.014211566,-0.009824595,0.014002748,0.031601023,-0.029159255,0.004363281,-0.047081966,-0.047938716,-0.051895026,-0.082038246,0.035266623,-0.035890125,0.0032166683,0.055335812,0.0023092579,0.027310437,0.058661822,0.021503398,-0.09527411,0.036189992,-0.06375712,-0.08276295,-0.05278474,-0.041319516,-0.02114807,-0.027276406,-0.041848995,-0.030333648,0.06356808,-0.019369205,0.09260139,-0.039117362,-0.003434899,0.08801859,-0.025412824,0.010896214,0.03090838,0.054206673,-0.056303687,-0.0674067} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:18.463953+00 2026-01-30 02:01:10.742538+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1822 google ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB 1 t 1825 Go Karts Mar Menor unknown Una pista genial. Muy cuidado todo, un trato espectacular, y los trabajadores super cercanos.\nUn gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de ti. Además de las vistas al mar menor. una pista genial. muy cuidado todo, un trato espectacular, y los trabajadores super cercanos. un gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de ti. además de las vistas al mar menor. 5 2024-01-31 01:52:39.833374+00 es v5.1 O2.02 {O2.04} V+ I3 CR-N {} {"E1.04": "Un gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de", "O2.02": "Una pista genial. Muy cuidado todo", "P1.01": "un trato espectacular, y los trabajadores super cercanos"} {-0.033579458,0.017624611,-0.054021247,-0.02194782,-0.10890175,0.0024738037,0.08808944,0.031786803,0.003510605,-0.013467844,0.083264984,-0.016087629,-0.061858445,-0.022897087,0.04390259,-0.0076324567,-0.032792374,0.0114166895,0.068381816,0.08921795,0.10104178,-0.05573035,-0.072750226,0.080551066,-0.13847604,0.033915814,0.015422309,-0.015066504,-0.061377138,-0.029819086,-0.0018275757,0.07100837,0.095417544,-0.066560484,-0.0023180784,-0.0073033934,-0.02570594,-0.017458586,-0.032622937,0.058884535,-0.031269364,-0.031449527,-0.009272922,-0.04142076,-0.0109684765,-0.049327303,-0.013312974,0.06760531,0.0130472975,-0.0059473133,-0.06488221,-0.0058279335,-0.0009143074,0.056164663,-0.04566394,-0.03830962,-0.03305824,-0.095688954,0.008506028,0.027612476,-0.032380022,0.11019529,-0.054795757,0.011859712,0.057804756,-0.013350546,-1.7424105e-05,-0.0535705,-0.016584039,0.043753017,0.07043087,-0.09712136,0.013345915,0.007896836,-0.060324296,0.032952942,-0.050231118,-0.05685442,-0.03561013,-0.0586687,0.023467327,-0.029931057,-0.050454013,-0.011908426,0.037306644,0.038738903,0.037540432,0.027216822,0.004375688,0.049761012,-0.05696315,0.0845401,-0.07656937,-0.02322186,-0.03955982,0.0109972,-0.009057476,-0.046847004,0.009750084,-0.00014411064,0.10419416,0.03442941,0.014759071,0.04870962,-0.051044695,-0.035992965,0.018230313,-0.06974414,0.003920982,0.069346525,-0.0954445,-0.057375394,-0.012002579,-0.022221435,-0.022132285,0.006414257,-0.050713643,-0.069189504,0.0043089436,-0.057665017,0.040366642,-0.013255848,-0.06067605,0.007051567,0.01720561,-0.04142287,0.022371255,9.9980614e-33,0.0024758072,-0.047422174,0.027368765,0.055101015,0.002171971,0.11048532,-0.047130927,-0.11904763,0.021019861,-0.0059714196,-0.09045853,0.104685344,-0.013910808,0.1076972,-0.0008906908,-0.04866288,-0.03921206,0.004953811,0.11560231,-0.0013092358,-0.102745675,0.076500304,-0.06722303,0.042418193,-0.025316363,0.09017778,-0.07060578,-0.031972755,-0.055444576,0.063858055,0.0037608533,-0.004420792,0.004560096,-0.04704352,-0.040336587,-0.0571268,0.004768823,0.0010878333,-0.0062799896,0.004113957,0.037696566,-0.03233212,0.032894496,0.10162967,0.015694575,0.05498406,0.009168506,-0.012572834,0.018726518,0.0034872284,-0.028086713,-0.061919443,-0.04257218,-0.09102933,-0.027593138,-0.00065596885,-0.08388511,0.0010094744,-0.09269759,0.0010293324,0.015277971,0.049486768,0.03801522,-0.054974094,-0.054281086,-0.06993225,0.0013889206,-0.0055183745,0.07659311,0.06823052,-0.05703245,-0.03205962,0.03796556,0.025148306,0.0383524,0.011773703,0.07117744,0.03488599,-0.0967667,0.036295686,-0.0692706,-0.009019192,0.07320288,0.03964104,0.0982891,0.06654973,0.042137768,0.06799032,-0.048991792,0.09446811,-0.025045758,0.07695463,0.06943939,0.018372873,0.027851315,-1.199664e-32,0.0045574796,-0.015289226,0.024459094,0.038882002,-0.033008423,0.017188411,-0.036939196,-0.055040658,0.00072590227,0.0024572706,-0.06407256,-0.10716028,0.10447099,-0.031394694,0.020623397,0.07654847,0.017615028,-0.07508522,-0.08996135,-0.032045905,-0.076600425,0.048730083,0.004179408,0.010657029,0.018977553,-0.067070074,0.030697135,0.009072603,-0.03455727,-0.0068160915,0.010149214,0.035761256,0.012855711,0.06162982,-0.0070279567,0.075663544,0.09499491,-0.009338765,-0.033965953,0.040306244,-0.0491311,0.048200015,0.046608735,-0.0035023855,0.047307197,0.011050679,0.039736476,-0.12704787,-0.10412673,-0.011421085,0.057180256,-0.049801745,-0.035277214,-0.035353865,0.07010372,-0.0702075,-0.07610556,-0.08647876,-0.06838904,-0.03280178,0.07089607,-0.014925566,-0.081229866,-0.054424882,0.024771228,0.02556983,-0.0105464775,-0.020723836,-0.015507099,0.08688895,0.12277956,-0.011136876,-0.032653403,0.054181207,-0.004585728,-0.00034836878,-0.07562466,-0.02290754,-0.011261843,-0.024954163,-0.039254982,-0.027713642,0.008956113,-0.04414783,-0.03625753,-0.019517668,-0.024307994,0.042773426,-0.036360256,0.040658884,-0.008909142,-0.009586584,-0.107492365,-0.089747354,-0.0015038565,-5.065307e-08,0.0015777659,-0.0072280862,0.006210867,-0.03273702,0.05108916,-0.041212153,0.05055424,-0.009782444,0.053576652,0.063024305,-0.06114541,-0.006883254,0.0647813,0.062090304,0.043124378,0.060172003,0.08332576,0.060036957,-0.022423025,-0.062695734,0.02969128,0.00016251743,-0.07744452,-0.034877233,-0.033964895,0.016658414,0.0058077266,-0.009356845,-0.031659737,0.030724654,0.018171847,-0.026090613,-0.06038509,-0.08198226,0.044303034,0.001587518,0.043892935,-0.0011777807,0.002517293,-0.0011773948,0.07869333,0.034404505,-0.05349263,0.011439447,-0.03292098,-0.10914599,0.005688846,-0.011348031,-0.013302472,0.046918087,-0.009573374,0.044815514,0.10945136,-0.0026369845,0.013481968,-0.053110447,0.03308593,0.017472465,-0.036316514,0.02431844,0.048584394,0.15184385,0.016621662,-0.039780468} 0.925 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:21.232735+00 2026-01-30 02:01:10.842138+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1752 google ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE 1 t 1755 Go Karts Mar Menor unknown Un circuito lleno de adrenalina siempre super limpio y listo para las carreras para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para llevar el karts así limite al resumir un super circuito y de gente especializada Enel karting un circuito lleno de adrenalina siempre super limpio y listo para las carreras para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para llevar el karts así limite al resumir un super circuito y de gente especializada enel karting 5 2025-03-06 01:52:39.833374+00 es v5.1 O2.03 {O1.02} V+ I3 CR-B {} {"E1.01": "Un circuito lleno de adrenalina siempre super limpio y listo para las carreras", "O2.03": "para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para ", "P2.01": "al resumir un super circuito y de gente especializada Enel karting"} {-0.07802824,-0.035079416,-0.0043900064,-0.02111935,-0.12275857,0.075007044,-0.008645474,0.0875661,-0.022227949,0.011981217,0.08737149,-0.028913967,0.0070850533,-0.028291712,-0.03618529,0.029797567,0.00011022016,0.030887421,-0.019453038,-0.019942023,0.09900394,-0.102351055,-0.08801891,-0.0029143437,-0.10938907,0.11554169,-0.012586079,-0.03323197,0.0027977512,-0.06776767,-0.063112654,0.022490263,0.020985482,-0.028680665,-0.014621101,0.02258513,-0.04292083,-0.046984818,-0.0639346,-0.01660649,-0.0675543,-0.07332917,-0.05614291,-0.0689554,0.06358204,-0.06471703,-0.0745613,-0.053469736,-0.035602406,-0.04824541,-0.048063345,-0.026282419,0.15925013,-0.00010988236,-0.013856351,0.016916927,-0.028504485,0.07356109,0.06741931,0.037553124,0.014802597,-0.018204933,0.016424458,-0.03750381,0.0048381095,-0.004877551,-0.03958917,0.004921231,-0.043992355,0.056623805,0.10474439,-0.08101729,0.02561355,-0.058527883,0.072766036,-0.027150951,-0.122522555,-0.0654941,-0.020233866,0.01325418,0.020420182,-0.030836532,-0.03633743,-0.10980184,0.022650283,-0.0045490535,0.032907713,-0.07391947,-0.037139814,0.016423013,-0.00598049,-0.033232667,-0.0692338,-0.05424788,-0.034954242,-0.0074197613,0.036139805,-0.03940694,0.08327978,-0.012910103,0.098539636,0.06977229,0.06949509,0.05806324,-0.022755338,-0.040744413,-0.01220998,0.0034574738,0.028387059,-0.015963811,-0.034289833,-0.036352016,-0.031990074,-0.053792067,-0.044771597,-0.025152557,-0.093097344,-0.0010595606,0.049382195,0.002157256,0.03967131,-0.0075559546,-0.047008205,0.07529578,0.025360057,0.011758646,0.039021544,1.0439459e-32,-0.02279279,-0.035420895,0.008021468,-0.037026208,0.06873641,-0.06016397,0.03565109,0.050079044,0.034806382,0.0010238708,-0.008196292,0.07714985,-0.05412178,0.056133106,0.05989765,-0.0047898954,-0.024591511,-0.09795672,0.12531543,-0.014701386,0.012102236,-0.037127376,0.02162251,0.06488068,-0.041558884,0.019208789,0.011447588,-0.0010723597,-0.119463444,0.033779062,0.004797544,0.04410948,-0.041585706,-0.07912545,-0.104498915,0.038581364,0.011398808,0.038888015,0.03134641,0.01573495,-0.002018525,-0.017349362,0.005185508,0.042141896,-0.004636687,0.005689938,0.047909874,0.04335441,0.08321687,0.026172748,-0.11346425,-0.03613301,-0.041495327,0.035526,0.06688228,0.0015329021,-0.034569092,0.029247742,-0.029475357,0.037638478,0.04473628,0.01539111,-0.046662714,-0.0009190184,-0.1042768,-0.0068581146,0.019001968,-0.025600165,0.015662381,-0.016009556,-0.09141972,-0.0007234512,0.05071577,-0.022201972,0.016112814,-0.025646951,-0.035369888,-0.018440807,-0.010460615,-0.08202024,-0.053217165,0.047420397,0.011930013,0.042795643,0.003939549,0.05379553,-0.039414298,0.020415626,-0.011338596,0.053962182,-0.10455433,0.014745349,0.005496645,0.010737141,0.04553096,-1.3708642e-32,0.03466278,0.031133052,0.04566988,0.09444216,0.03289329,0.08455943,-0.027985893,-0.016044289,0.022391455,0.014331482,-0.0023432465,0.0014327759,0.059541997,-0.05429919,0.024097236,0.05503318,-0.07538716,0.019788476,0.0033985714,-0.012984852,-0.011432417,0.070365936,0.02574197,0.0038870682,-0.015190928,-0.062060848,-0.042823784,-0.018360693,-0.07807542,0.06259064,0.03168245,0.00043560468,-0.007600518,0.09815331,-0.09343603,-0.013944223,0.054455567,0.03288538,-0.053632993,0.05593145,0.020322742,0.029609786,0.073236756,0.07086287,-0.019266145,-0.0035856585,0.009990024,-0.098873146,0.02150417,-0.010820972,0.07056102,-0.08774768,-0.07078535,-0.087843396,-0.026207892,-0.032662414,-0.060522612,-0.063158534,-0.103144,-0.0350223,0.077286094,0.044885036,-0.009130589,-0.036054723,0.054251436,-0.0018103058,-0.010629509,0.0883885,0.029027125,0.021001574,0.001256673,0.0543672,0.026284166,0.027835583,-0.03018216,-0.05933472,-0.11525781,0.034832463,0.04414709,-0.052247778,0.0009634818,-0.04031909,0.014400451,-0.10723473,0.002191004,0.06546871,-0.009437821,0.04571243,0.018260324,0.018863428,-0.028041529,0.052141782,-0.06717591,-0.046542373,-0.004949783,-5.353582e-08,0.0339374,0.019756112,-0.08614609,0.015747022,0.016541999,-0.12785596,0.03887694,0.0021376598,-0.0421923,-0.015968826,-0.019367734,-0.009342201,0.011649529,0.052013613,0.0123664895,0.048060123,0.050852317,0.1738837,-0.013602394,0.00948762,0.008723829,-0.023517666,0.0030992413,-0.038117494,0.020489372,-0.06690533,-0.013212725,0.022496449,-0.007338847,0.0029485335,-0.059024286,-0.04367402,-0.027847398,-0.014014848,0.11060122,-0.025351299,-0.07000993,-0.017962795,-0.064104654,-0.0027162342,-0.020208517,-0.031829964,-0.09878751,0.007903733,-0.0030930946,-0.06296751,-0.05555801,-0.028090222,0.028129738,0.13365103,-0.12250308,-0.03447278,0.03570308,0.047367506,0.030943414,0.021290865,-0.035245206,0.07912956,-0.06548002,-0.04903134,0.0311727,0.05939762,0.005039505,-0.047212694} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:11:25.290679+00 2026-01-30 02:01:10.581504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1956 google ChZDSUhNMG9nS0VJQ0FnSUNMcHJQMFZBEAE 1 t 1959 Go Karts Mar Menor unknown Grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidado. grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidado. 5 2025-01-30 01:52:39.833374+00 es v5.1 P1.01 {O1.03} V+ I3 CR-N {} {"P1.01": "Grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidad"} {-0.049624242,0.02301816,0.009001912,-0.030098783,0.008915174,-0.009063751,0.11710334,0.052491393,-0.05098962,0.032293275,0.04311114,0.060663585,-0.03863383,-0.0145585155,0.020145353,-0.036477625,0.051551607,0.024230402,-0.039080743,-0.0070326,0.096973576,-0.045390677,0.022437934,0.056964442,-0.08999466,-0.005026413,-0.08441415,-0.050394796,0.00550022,-0.05650454,-0.013279315,0.13501203,0.077595755,-0.024792502,-0.0006852007,0.054004777,0.009487643,-0.03765616,-0.015166805,0.06938739,-0.15877832,-0.038568128,0.0059445854,-0.091531105,0.00082673377,-0.11712147,0.08222579,0.02348876,0.0392333,0.013575311,-0.0017746041,-0.00074080937,0.008714662,0.025386725,0.046281967,0.025712008,-0.06182939,-0.08147667,0.045806658,0.014250384,0.0042847157,-0.012413834,-0.036734838,0.02931751,0.03297436,0.020557713,0.045084793,0.0576869,-0.0850789,0.019800624,0.17427276,-0.043729316,0.015670994,0.057418235,0.06601622,0.0644885,-0.004021499,-0.07267562,-0.10938747,-0.00496119,-0.026320817,0.056792162,0.020604854,-0.011422802,-0.0008988023,-0.03696578,-0.008878372,7.882839e-06,-0.027053593,0.023762623,-0.07586139,0.1697526,-0.07130527,-0.036874294,-0.018178398,0.0015220965,0.053602107,-0.061971303,0.0016179056,0.059456147,0.09044588,0.06883313,0.07652559,0.049407378,-0.08969258,-0.023443762,0.024887035,0.00013853305,-0.0046677175,0.03632035,-0.09087401,-0.07227455,-0.08758814,-0.059820972,-0.05231689,-0.06352505,-0.0057088826,0.019261405,-0.013101811,-0.06329802,0.034005053,0.038279176,0.023888672,0.0018517616,-0.05362265,-0.030890279,0.016914954,3.3481558e-33,-0.00088888407,-0.009139952,-0.019036295,0.122762956,-0.035443753,0.026715614,-0.06970555,0.021667827,-0.07560179,-0.036965825,0.024455585,0.09849202,0.031493034,0.05348678,0.09614353,0.05169702,-0.068962015,-0.037093572,0.06441357,-0.053511348,-0.050806433,-0.025722725,-0.055676125,0.053544685,-0.06431225,0.022248877,-0.0022780108,-0.016430615,0.0081157675,0.056991972,0.0056338166,0.014466412,0.008758678,-0.043550357,-0.044733338,0.029198442,0.089647345,0.03730372,0.059454087,-0.06747283,0.026759712,0.032780953,0.053905606,-0.006975871,-0.00046523503,0.10383442,0.11507677,0.026695412,-0.0010628349,-0.028637592,-0.033593826,-0.039011408,-0.06100626,-0.03540153,-0.047618825,0.02215981,-0.014213934,0.020875275,-0.0023574138,-0.029485893,0.09231304,0.0337156,0.02610657,-0.029570583,-0.06227917,-0.025435604,0.063867435,0.020289876,0.09785563,0.028216219,-0.08649169,0.000598175,0.01741673,0.05691271,0.05488046,0.04017649,0.011254389,-0.020915635,0.033956766,0.05802922,-0.078750804,0.017410597,0.0075001847,0.010575385,0.005342248,0.07109892,0.0026281474,-0.06292163,-0.0278885,0.097927414,-0.011677592,0.024736442,0.10636734,-0.0039831772,-0.02349591,-6.090471e-33,0.0019957845,0.0058111385,0.011255369,0.03341207,0.07482356,0.015424995,-0.02458557,0.01894592,-0.026784997,-0.0143212015,-0.046684746,-0.04267797,0.086784564,-0.012800479,-0.058311705,0.038596507,-0.007830957,-0.03648693,-0.06832186,-0.075007014,0.03064876,0.06284393,0.09470915,-0.004226124,-0.034676082,-0.03588725,-0.08002311,-0.017310541,-0.037680905,0.018650956,0.045393698,-0.0279472,-0.09842759,0.045986723,-0.027620021,0.039881997,-0.035405237,0.004542602,-0.048534967,0.06548807,-0.008116273,0.03685319,-0.040228304,-0.0363035,0.0048606256,-0.012800852,0.01786576,-0.1453408,-0.022575488,0.020765524,-0.008904162,-0.021909077,0.014991334,-0.023954535,0.049547903,-0.03409305,0.03353056,-0.07973001,-0.022860164,0.035725188,0.055735372,0.07686656,-0.09024313,0.028467778,0.010782012,-0.0013091274,-0.031344432,-0.022265803,-0.09878578,0.041729994,0.080142036,-0.043999802,-0.085005656,0.014496113,-0.07426833,-0.07642943,-0.007772414,0.022032116,0.011394216,-0.02184468,0.018873254,-0.021694176,-0.032777783,-0.03389631,0.030091504,-0.01703097,-0.044282634,0.06892211,0.023242394,0.048172712,-0.0007550779,-0.0020749534,-0.0704707,-0.061197232,-0.05877766,-2.8942905e-08,-0.008395016,-0.035295263,0.012591529,-0.012285877,-0.0015608089,-0.045841873,-0.08229282,0.04152783,0.05309361,0.044159293,-0.003473682,-0.037109923,-0.052152645,0.06901559,-0.0272873,0.018076565,0.08078961,0.047207963,-0.047626562,-0.102272995,0.06520671,-0.04756439,-0.01101734,-0.028875966,-0.08572735,-0.0038261453,-0.045844372,-0.06239528,-0.06890326,-0.00493642,-0.050736785,0.027686961,-0.071771026,-0.06555094,-0.035306636,0.0073910337,0.016049717,-0.006887979,-0.018850442,0.033032138,0.081045665,-0.06583236,-0.08531529,0.032569945,0.015604552,-0.082562275,-0.009901977,0.017592857,-0.018808125,0.08439177,0.00660611,-0.017749878,0.040459074,0.028581932,-0.020752301,-0.056537054,0.014676504,0.075908765,-0.023267949,0.00061560055,0.07155292,0.037992872,-0.025434496,-0.07337651} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:46.312645+00 2026-01-30 02:01:11.359001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1860 google ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE 1 t 1863 Go Karts Mar Menor unknown Siempre un diez, un trato perfecto para ir con niños o para ir a competir. La opción de ir con un grupo grande y hacer una carrera completa es la mejor. El circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curvas, aquí hay pianos y césped, que si apuras y te sales es completamente seguro. Tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada. siempre un diez, un trato perfecto para ir con niños o para ir a competir. la opción de ir con un grupo grande y hacer una carrera completa es la mejor. el circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curvas, aquí hay pianos y césped, que si apuras y te sales es completamente seguro. tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada. 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {A3.01} V+ I3 CR-N {} {"E4.01": "El circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curva", "O2.02": "La opción de ir con un grupo grande y hacer una carrera completa es la mejor.", "O3.02": "Tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada.", "P1.01": "Siempre un diez, un trato perfecto para ir con niños o para ir a competir."} {-0.022273606,0.03290843,-0.058676194,-0.06147066,-0.12907733,0.03644208,0.019737571,0.058516685,0.020892696,0.050474454,0.11201878,0.029482098,-0.01307251,0.0002106264,0.007218113,0.023535514,-0.017378327,0.05927719,0.034274746,-0.0149238,0.009452197,-0.06670399,-0.090337634,0.008639973,-0.08196807,0.059070215,0.0065326677,0.029416414,-0.052521206,-0.12318594,-0.07721973,0.049970757,0.046650622,0.016057843,-0.02771157,0.012790712,-0.022520889,-0.04417044,-0.06280859,0.048529074,-0.07283395,-0.047529027,-0.01411478,-0.045121998,-0.036660176,-0.07466262,-0.044429697,0.037602797,-0.028093683,-0.04582823,-0.047848076,0.017528318,0.03205099,0.04600726,-0.09512388,-0.00026188142,-0.03300191,0.04192792,0.070519574,0.026931103,-0.029778183,-0.018367337,-0.006107798,-0.029215852,-0.01572131,-0.022073273,-0.0016121306,0.0058242613,-0.04582222,0.035693716,0.061071027,-0.022609167,-0.0031046595,-0.036541987,0.02776008,-0.029312043,0.031143932,-0.0049847765,-0.06279936,-0.006971156,0.03035684,-0.017480705,0.00012268756,-0.11384279,0.10846763,0.0119909085,-0.015095521,-0.0355995,0.008137451,0.032458767,-0.07703723,0.023529425,-0.028372344,-0.031022878,-0.07390215,0.0463317,0.034161,-0.121748425,0.07271906,0.010460192,0.11875497,0.024575204,0.050704997,0.032835107,-0.09987185,0.034799807,0.0071717305,-0.024435263,0.0046473327,-0.054352734,-0.026894102,-0.026852302,-0.009668397,-0.062879205,-0.0784837,-0.03268439,-0.084935285,0.010214813,0.048561573,-0.08542641,0.022785265,0.020854935,-0.027680553,-0.002653743,0.020148586,-0.055172894,0.0016232699,1.2952762e-32,-0.058877602,0.030785082,-0.029003227,-0.06192076,0.051194727,0.01427252,-0.05105941,0.068852715,-0.052126046,0.02663351,-0.026391774,0.060576994,0.02612247,-0.06691556,0.1010456,0.040148586,-0.012162116,0.0118449,0.05560709,0.029240783,0.00084365025,-0.0051573594,0.082438506,0.03327761,-0.0067291283,0.08460741,0.022219671,0.0010166173,-0.08289502,0.032037757,0.056494217,0.009562073,-0.021042736,-0.0137194805,-0.047506154,0.009383973,0.029216576,0.064217605,0.016094347,0.06388028,-0.06912487,-0.0005858598,-0.060488477,-0.002282051,0.01287419,-0.047577195,0.07070206,0.07096489,0.05599593,0.0895869,-0.117042825,-0.07685282,-0.043057032,-0.013779208,0.04868267,0.0109090395,-0.08470095,0.05515852,0.015463086,-0.03927679,0.06026044,-0.0125157945,-0.044118926,-0.07027222,-0.11874763,-0.01670693,0.058457565,-0.011493273,0.17406034,0.019332087,-0.060891975,-0.0038152554,0.006889344,-0.05175117,0.07607094,-0.028260104,-0.03565119,0.01822777,0.056410037,-0.020574808,-0.08752898,-0.009406379,-0.026283866,0.03361783,0.051159203,0.059490774,-0.0018172788,-0.01843361,-0.034969933,0.10350453,-0.03592661,0.06270557,0.018885376,-0.012181166,0.085950434,-1.3686538e-32,0.07794616,0.08224663,-0.0063335747,0.023298487,0.021073034,0.006321102,0.009064939,-0.030489817,-0.019820267,0.0056255357,-0.019812588,-0.07267176,0.011023713,-0.03172168,-0.025588665,-0.007953714,-0.03351093,-0.051736213,-0.028705249,-0.06925037,-0.07215979,0.015630007,0.044108313,-0.017468892,-0.05711726,-0.061497282,-0.07380268,-0.053344514,-0.1220265,0.060761888,0.035987772,-0.03926169,-0.019407498,0.07489958,-0.033278547,0.018021718,0.033665996,0.06654112,-0.02459809,0.03517345,0.05794098,0.028368719,-0.006278128,0.031603802,-0.05176039,0.029180344,0.03522806,-0.052401107,0.01791567,-0.00052948564,0.061127182,-0.036521234,-0.07565342,-0.11078385,-0.040175684,-0.017415393,-0.014614948,-0.06882395,-0.02734789,0.025828896,0.033263676,-0.019454049,0.027482856,0.046606515,0.08416119,0.007069453,0.005768286,0.10171926,0.053280015,0.09457559,0.06661667,0.06833812,-0.046895918,-0.040472064,-0.047478374,-0.029408341,-0.08129187,-0.0018446236,0.004949011,-0.004362797,0.022022672,-0.039370302,-0.026016722,-0.07290446,-0.029696742,0.039462883,0.0031126884,0.033893436,0.01992498,0.05214906,0.037009444,0.10065048,-0.03329337,-0.043842886,0.012696304,-5.6320083e-08,-0.00032591002,-0.0048676785,-0.12271991,0.027997432,0.037101325,-0.09000073,0.039449926,0.023711037,-0.054850727,0.08578848,-0.0053524706,-0.014570678,0.0038048064,0.08133554,0.06851754,0.07381875,0.11033077,0.08281856,-0.029481094,-0.022167003,0.07404646,-0.009875362,-0.06163239,0.02034508,0.016754653,-0.021848107,-0.058703598,-0.049232747,-0.03205406,-0.035269093,0.006705679,-0.021583602,0.01905689,-0.03755536,0.017716095,-0.07154201,-0.04165349,-0.01040286,-0.045142606,-0.098272145,0.029124755,0.053272348,-0.07095461,0.0011096294,-0.08103363,-0.03937658,0.050331425,-0.040946312,-0.02173376,0.108450845,-0.098782845,-0.07562624,0.030952564,0.0012695886,0.06611491,0.0059825806,0.034400947,-0.001079516,-0.020520285,-0.006548298,0.08420635,0.07056505,0.029995207,-0.076443724} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:50.007843+00 2026-01-30 02:01:10.984121+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1881 google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB 1 t 1884 Go Karts Mar Menor unknown El personal es muy cercano, su flota de Karts están en muy buen estado, la pista es fantástica y la tienen supercuidada, organizan eventos increíbles... Lo recomiendo sin duda, un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos. el personal es muy cercano, su flota de karts están en muy buen estado, la pista es fantástica y la tienen supercuidada, organizan eventos increíbles... lo recomiendo sin duda, un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos. 5 2026-01-30 01:52:39.833374+00 es v5.1 O2.03 {E1.01} V+ I3 CR-N {} {"A3.01": "un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos", "O1.03": "su flota de Karts están en muy buen estado", "O2.03": "la pista es fantástica y la tienen supercuidada", "P1.01": "El personal es muy cercano"} {-0.032872524,0.004342873,0.0048062,0.0055125686,-0.025311714,-0.00463978,0.08215634,0.0030383596,0.014301197,-0.021738688,0.062341027,-0.0059570693,-0.055878397,-0.0069073276,0.014270766,-0.04539705,-0.031433266,0.028289896,-0.062451314,0.009095324,0.09140409,-0.10151773,-0.042352874,0.101426534,-0.14050435,-0.01898795,0.030781396,-0.00026302756,-0.06316502,-0.09265857,0.0042662225,0.06585413,0.0154353725,-0.04335359,-0.034168705,-0.007357869,-0.046971653,-0.04970455,-0.01785456,0.025174482,-0.07481945,-0.043138765,0.030408988,-0.041048795,0.027952872,-0.06274918,-0.04399216,0.018814327,-0.057278138,0.018169025,-0.06156596,-0.030525042,-0.033845913,-0.015984023,0.06987659,-0.042273805,-0.11390054,-0.040005025,0.09408752,0.008859485,0.04594038,0.09958163,0.0022414504,0.030115163,0.0027112605,-0.055114396,-0.01789149,0.078256495,-0.041432045,0.08852154,0.13034207,-0.045705512,-9.61463e-05,0.030861929,0.04133867,0.029047307,-0.07929287,0.0068381345,-0.11669882,0.05864141,0.0076975916,-0.030295383,0.045994908,-0.10141532,-0.011894152,-0.054986514,-0.0122020785,0.02697655,0.005486962,-0.0022347646,-0.021527126,0.056220043,-0.018763078,-0.0052998653,0.0014494322,0.06318977,-0.015198765,-0.061127838,0.0025520625,0.027481206,0.051682323,0.0131617375,0.047433626,0.08381987,-0.035235014,-0.06622684,-0.0056870435,-0.06501948,0.002440885,0.0018500646,-0.041934103,-0.050249923,-0.03862407,-0.05465794,-0.049993232,0.02060297,-0.06158548,-0.0030456379,-0.030147465,-0.0497041,0.051889192,0.0542331,-0.0009518814,0.04656738,0.0069015417,-0.06896224,0.008923239,1.3507078e-32,-0.028529638,-0.055125594,-0.030325744,0.05079566,0.0009606603,-0.075545326,-0.03189465,-0.13650605,-0.053804703,-0.004306969,-0.021702837,0.15485501,-0.033879276,-0.016902959,0.09397571,0.02871678,-0.034713287,-0.056024786,0.03226129,0.029700562,-0.0017074189,0.01642489,-0.0026572475,-0.00021180816,-3.3862205e-05,0.045181718,0.03128978,-0.008569406,-0.069983825,0.06612957,-0.0075309277,-0.051789194,0.034279145,-0.026506098,-0.044985864,-0.04955036,-0.04522147,-0.01869885,-0.067817666,0.015594119,-0.029695706,-0.06887799,-0.039237797,0.07033413,-0.045295812,0.05751875,0.064949796,0.021415804,0.021087382,0.018312981,-0.0637414,-0.05883112,-0.011079287,-0.0027568159,0.0040681274,0.04720452,-0.03892202,-0.028541414,-0.061343934,-0.060833108,0.05367545,-0.008208484,0.026463337,-0.058251195,-0.07016918,-0.035244927,0.057604954,0.0597456,0.12904687,0.039019782,-0.06711305,0.002804226,-0.02950392,0.014973422,0.08119405,0.005469628,0.05507341,0.017959082,-0.058205318,0.11036364,-0.043066274,-0.003052441,0.08650867,0.036103383,0.049596857,0.028478958,0.016741728,0.019196864,0.02489777,0.13091241,-0.037123792,0.06441899,0.07784048,-0.021106305,0.016164154,-1.4126689e-32,-0.011513877,-0.0007806659,0.048582174,0.09377628,0.015633604,0.018337796,-0.042067517,-0.046717342,0.042408235,0.0044794274,-0.17639002,-0.08987151,0.08108675,-0.035121832,0.004829076,0.08887127,-0.011851887,-0.045355543,-0.058000796,-0.042590905,-0.041838266,0.054653924,0.04705982,-0.04300363,-0.0890989,-0.00705605,-0.04213181,-0.011160207,-0.07960444,-0.000903522,-0.00076810794,-0.056453142,-0.021284526,-0.0027410798,-0.06952461,0.020491011,0.09861051,0.060328864,-0.052991923,0.028315224,0.018223438,0.08445758,-0.021940375,-0.00811515,-0.03712881,0.01126705,0.060953062,-0.13947175,0.039922692,-0.078695476,-0.0041288254,-0.0092860935,-0.028878909,-0.015081723,0.057446558,-0.033873025,0.029166073,-0.011580241,-0.09714322,0.042043462,0.056844536,-0.07781407,-0.026064262,-0.0065244017,0.120627925,0.037704192,-0.04240671,-0.023936853,-0.040648285,0.039758287,0.034872036,-0.050264627,-0.11518265,0.03705781,0.0025962046,0.010463908,-0.10099026,0.053594273,0.00047696772,0.026049748,0.076183215,-0.027431354,-0.03144575,-0.057055593,0.036432303,-0.019690072,-0.028525876,0.04673588,0.018040093,0.017654384,0.037740428,0.060596466,-0.040866908,-0.050702095,-0.010936045,-5.661906e-08,0.0024655848,0.00035782042,-0.084489524,0.040788524,0.002433641,-0.06508223,0.01132442,0.015103794,-0.023674011,0.04837508,-0.10094257,-0.020204308,0.031921282,0.0533734,0.02895885,0.023952885,0.051801354,0.10755995,0.0016561043,-0.022846771,0.09391087,0.011217328,-0.012472512,0.0022964324,-0.0831771,0.05843086,-0.0017066455,0.024407227,0.054737866,0.025729591,-0.026073549,-0.015224865,-0.018698592,-0.032382887,-0.06516746,-0.058845583,-0.014500154,0.039750267,-0.026167363,0.044307277,0.05342017,0.017998412,-0.0635161,0.05904779,-0.024963854,-0.022881465,-0.022567784,-0.0054527116,-0.034367684,0.04273844,-0.059679974,-0.038790535,0.039047603,0.029696986,0.07604668,-0.0005953558,0.076607965,0.07821857,0.006601273,-0.047579516,0.034781937,0.08480896,0.008993051,-0.032603923} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:54.214365+00 2026-01-30 02:01:11.051709+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1854 google ChZDSUhNMG9nS0VJQ0FnSUQ1aXZuVGRREAE 1 t 1857 Go Karts Mar Menor unknown Prueba tus habilidades de conducir y diviértete prueba tus habilidades de conducir y diviértete 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Prueba tus habilidades de conducir y diviértete"} {-0.010250181,0.0062136874,-0.06645481,0.058413036,-0.03963247,0.0053614243,0.054020956,0.048071884,-0.015736151,-0.0069667795,0.09257389,-0.010781484,0.0010090299,0.010136868,0.006767303,-0.061977524,-0.006565416,0.0077896845,-0.021407027,0.064137496,0.05632529,-0.0010796749,-0.121218115,0.04423019,-0.031739507,0.010344092,-0.0066046976,-0.010040765,-0.024375567,-0.06382545,-0.000720394,0.0067352788,0.07490492,-0.021212092,0.020144815,0.052145876,-0.017889258,-0.09477203,-0.03907632,0.056897543,-0.03647538,-0.06277673,-0.059372496,0.004272888,-0.023989376,-0.008936622,0.063637674,0.066065826,-0.016758353,-0.006312259,-0.08536317,0.004684632,-0.06251999,-0.02964493,0.021507645,-0.002228976,-0.009427939,-0.043133393,-0.009996785,-0.013316409,-0.004974455,0.12080781,-0.052274846,0.0039710044,0.0492797,-0.05511991,-0.035373352,0.092975676,-0.040561765,0.031993307,0.044248894,-0.033424634,-0.0067913625,0.0021612914,0.009858298,-0.024556799,0.018168628,0.03220439,-0.016321465,-0.052036274,0.017471952,-0.063316986,-0.063154615,0.0025670407,0.005716076,-0.020716773,0.010011135,-0.03214501,-0.029749056,-0.03595412,-0.005663208,0.0740032,-0.09015601,-0.036609944,-0.040100552,0.04508975,-0.07570565,0.053914778,0.06381739,0.004383715,0.03842017,0.034618624,0.08698152,0.018239329,-0.092057995,-0.047630597,0.020578507,-0.07439492,0.031961784,0.07936669,-0.08015122,0.00025131795,0.009267192,-0.033812072,-0.0108906515,-0.023384048,-0.037550896,-0.04266158,-0.0067642913,-0.11428006,0.04107545,-0.016504262,0.07167199,-0.07180304,-0.013705554,-0.059453525,0.11840423,2.8827537e-33,-0.08383785,-0.13202454,-0.0027360523,0.09796742,0.01523569,0.030835373,-0.05740081,0.01975724,0.108008385,-0.01084639,-0.011794194,0.047375474,-0.06657045,0.051213127,0.014792035,-0.014967693,-0.024959575,0.0094770305,0.030162442,0.07734747,-0.08423275,-0.06286814,0.0034998842,0.02735046,0.0032985888,-0.0046137795,-0.0019848282,0.0042465664,-0.09521469,0.03133694,0.10654218,0.03137064,-0.05138224,-0.06979426,-0.09121191,-0.05171389,0.004720938,0.051922087,-0.027928395,-0.014888047,-0.028274104,-0.023667969,0.015802704,0.060127396,0.045491397,0.07294979,0.119346574,-0.014765717,-0.042178888,0.005973125,-0.07307968,-0.08517234,0.0037978739,-0.09940623,0.009121424,0.043331522,0.020724699,0.013157015,-0.0378218,-0.017586367,-0.05184486,0.105426915,-0.02904256,-0.052123766,-0.031542405,0.023855055,0.016324513,-6.7993983e-06,0.070118554,0.057143893,-0.07700278,-0.0074555287,-0.037658133,-0.046263568,0.012824934,-0.00084940623,-0.061247643,0.019450858,0.023872083,-0.06273257,-0.06280655,-0.03333676,0.031598423,0.04932758,0.034593873,0.05400552,0.024611909,0.038434777,0.019942664,0.07882948,0.011465923,0.061636593,0.03643863,-0.02178335,0.114644326,-5.444128e-33,-0.041865185,-0.0021368589,-0.001889861,0.080631465,0.009018697,0.011774879,0.0045374082,0.0037475226,0.0016438902,-0.026606528,-0.06028234,-0.119609565,0.05246449,0.02255163,-0.024167493,0.073908925,-0.039704666,-0.05707022,-0.09195912,-0.06977714,-0.052723408,0.022728276,0.04505887,-0.027880458,-0.04730439,-0.052334312,-0.104519755,-0.016272204,-0.027715113,-0.009077132,0.015818473,0.032403246,-0.020080203,0.079655655,-0.11738477,0.0138190035,0.05246259,0.060415342,0.009966357,-0.009710176,0.05355005,0.029016614,0.008115942,-0.037990063,-0.017375331,0.017095018,0.044764742,-0.19014339,0.032546047,0.024442596,0.15124829,0.050151102,-0.047493603,-0.06737742,0.022924338,0.037579026,-0.008715832,-0.117702365,-0.04635634,-0.008132435,0.010374656,-0.040682044,0.03121185,-0.012840082,0.035494585,-0.0124139525,-0.008665567,0.10345855,0.09881148,0.0613754,0.06414207,-0.0006679107,-0.043038003,-0.027949866,-0.0038112157,0.0023506698,-0.07710172,0.040861588,-0.02021668,0.09736145,-0.06261678,0.009986155,-0.047051664,-0.10221882,-0.054239426,-0.05996094,0.03555809,-0.025179522,0.052369863,0.041967463,-0.04414996,0.03772453,-0.0580664,0.013461442,-0.05486783,-2.8177741e-08,-0.024545427,-0.06714692,0.0075445487,-0.006977979,0.047490083,-0.039588932,-0.0049748733,0.040283028,0.01801705,0.1148219,0.01885058,0.019021058,-0.008979292,0.050595365,0.05343657,0.017160643,0.05012698,0.063140005,-0.02255308,-0.08653626,0.14275604,0.045689918,-0.08940943,0.08499423,0.05770786,-0.074549705,0.0029533778,-0.0075387214,-0.029175254,0.0026932408,-0.0065598194,0.039251935,-0.0055020293,-0.06169851,-0.009523448,-0.01627129,0.034064192,0.039642137,-0.02877897,0.019417832,0.0061008846,-0.0032646253,-0.054828938,0.008662067,0.013992045,-0.0349297,-0.01633297,0.017446427,-0.0033732215,0.010479364,-0.050525393,-0.01352574,0.101457775,0.025503092,0.021230614,0.0007565217,-0.05154864,0.03290742,-0.07372441,-0.04739638,0.045190647,0.086146675,0.07499793,-0.0027292774} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:12:32.739797+00 2026-01-30 02:01:10.960176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1907 google Ci9DQUlRQUNvZENodHljRjlvT21KclZuVmFXRzFuVW1obWFXczNObGhaTW5SRFpYYxAB 1 t 1910 Go Karts Mar Menor unknown 12 euro les 8 minutes moteur ados . 12 euro les 8 minutes moteur ados . 5 2025-08-03 00:52:39.833374+00 fr v5.1 V1.01 {} V0 I1 CR-N {} {"V1.01": "12 euro les 8 minutes moteur ados ."} {-0.027596835,0.0617246,0.019705055,-0.044757817,-0.042114377,-0.0022665523,0.07108339,0.1055863,0.111820094,-0.046625797,-0.020136047,0.0005728251,-0.07392876,-0.0122823715,-0.03566763,-0.108959645,-0.012760749,0.03878156,0.007789252,0.036407128,0.10387173,-0.050532266,-0.03200704,0.014470661,-0.012915648,-0.03901213,0.030072559,-0.0018072808,-0.025403991,-0.026029997,0.08530665,0.033065893,0.073136166,-0.07359862,0.035902042,0.022260902,0.053838145,-0.13735369,-0.016209194,0.0088362815,-0.07312491,0.0011049225,-0.059318498,-0.051563922,-0.014732674,0.03509957,0.023185905,0.062352963,-0.014673609,0.026332824,0.010494423,0.055431716,-0.0024812268,-0.06543011,-0.0070975386,0.031012919,-0.029065115,0.035103817,0.031835314,0.036279876,-0.041387673,0.008634005,-0.098453,0.06282334,-0.075014226,-0.035659365,0.030709626,-0.053113695,-0.09541775,0.118451156,0.041444674,-0.032490686,-0.05728315,-0.018129237,0.029238481,0.056536503,-0.015656713,-0.018098209,0.016196363,-0.13475068,0.072554596,-0.07730906,-0.04545005,-0.012062297,0.083945215,-0.08187055,0.08525127,0.07870995,0.07214598,-0.04660204,-0.020914404,0.00087543356,-0.06676403,0.009766576,-0.009337666,-0.01716154,0.064315796,0.03146248,-0.0037370548,0.09323578,-0.028254958,0.044339452,0.00421006,0.07606818,-0.026524272,0.025442386,0.04127125,0.040984716,0.018415598,0.044739265,-0.049326785,-0.033579145,0.05308565,-0.092335165,0.05238671,0.022728465,-0.03317366,-0.11643,0.037624266,-0.009312991,0.05501837,0.020727832,-0.054790948,0.0008513356,0.010293509,0.051946767,0.079307,-1.4736118e-34,-0.026313858,0.019979091,0.011079288,-0.04274199,-0.019615324,0.019731037,-0.078754984,-0.003037944,0.033578094,0.04034028,-0.045391876,-0.024068037,-0.02160695,0.020052716,0.001312164,-0.010526694,0.1328602,0.013217157,0.08956479,-0.03973214,-0.0588814,-0.046397373,0.030985834,0.09561197,0.051332925,0.0027652811,-0.053660043,-0.036923926,-0.012231645,0.040384125,-0.023670569,0.007850729,-0.05665848,0.06347225,-0.017032247,-0.0305891,0.034022577,0.0041988017,0.051750384,0.0034596862,0.057410773,-0.027117783,0.02459243,-0.0036864025,0.015240745,0.06845656,-0.006853345,-0.024119,0.079211906,0.010026295,0.0011490817,-0.0064934483,-0.047441185,-0.088136315,-0.020152861,0.0584601,-0.07082564,-0.017650075,-0.019830596,0.009428922,0.03240812,0.04934434,0.03920999,-0.034641113,-0.05420349,0.03975233,0.03473295,-0.0370471,0.06619245,-0.06523704,-0.078413986,0.06525354,0.11258124,0.013837084,-0.011225879,0.048888613,0.07794298,-0.0028629943,0.00035453407,0.057939738,-0.030201344,-0.08971035,-0.0026132758,0.0011577738,0.082251355,-0.010603326,0.03071704,0.039192323,-0.01738855,0.027258437,-0.07708709,-0.043800596,-0.04911972,-0.03948491,-0.010257782,-2.0519448e-33,-0.015565616,0.015573528,-0.0049968087,0.07456262,-0.028985813,0.05527533,-0.020724958,0.17838658,0.0035349133,-0.022730801,-0.0795834,-0.11276429,0.12458606,-0.08165781,-0.031030927,0.022233143,0.088271774,-0.0032672193,0.029296745,-0.008579012,0.026845163,0.0076415874,0.013070036,0.04390453,-0.02049968,-0.044421315,0.009626866,-0.021920564,-0.08788953,0.04298162,0.050834686,-0.02777775,0.01925199,0.019202992,-0.015174986,0.07324743,0.03952174,0.0689377,-0.031692892,0.05413972,-0.03972307,-0.062314533,-0.009667555,-0.008976459,0.08928942,-0.013722389,-0.02049987,-0.11497628,-0.059278388,0.045408085,0.051469088,0.0045142616,-0.06777959,-0.03935869,0.03443864,-0.05303451,-0.02321234,-0.09979881,-0.051567942,-0.0009303059,0.11203517,0.10926765,-0.04214175,0.027475638,0.05847754,0.042185605,-0.092687085,0.027314333,0.018681174,-0.017525436,0.041330818,-0.025083018,-0.09389518,0.032985494,-0.068191685,-0.028101556,-0.07577216,0.048411112,0.061363015,0.031531088,-0.097976156,-0.026546773,-0.031327337,-0.012412473,-0.06289897,0.03810721,0.011638947,-0.035014622,0.068910465,-0.05302162,0.025141373,0.038829677,0.013325006,0.01822066,0.025404181,-1.6384542e-08,0.0540482,0.012794025,0.009060131,-0.023414968,0.0783261,-0.111055866,-0.045257933,-0.03913317,-0.04540039,0.05729862,0.050485823,0.05644765,-0.018392062,0.00038754145,-0.08807502,0.06635862,0.008623662,-0.005038832,-0.027672766,0.002194212,0.07328027,0.03437179,-0.030486604,-0.07254089,0.006475942,-0.04424586,0.00624898,-0.0018312231,-0.021111831,-0.08081536,-0.002016168,0.058331877,-0.09406931,-0.079193935,-0.035157256,-0.014741961,-0.039056137,-0.005836861,-0.0078112273,0.08504337,0.0013399898,-0.07789158,-0.028043963,-0.049192406,0.033165935,0.007160112,-0.08476896,-0.026890228,0.00926338,-0.014888708,-0.0032322311,0.066798374,0.008378925,0.0015840833,0.05786127,-0.028469672,-0.010418405,-0.007119387,-0.016187541,-0.008517788,-0.022646893,0.06479218,-0.03576736,-0.055931885} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.755241+00 2026-01-30 02:01:11.169059+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1910 google ChZDSUhNMG9nS0VJQ0FnSURRMGN5MWVnEAE 1 t 1913 Go Karts Mar Menor unknown Un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los mejores karts que he probado, tienen un buen mantenimiento, le doy la enhorabuena a los mecánicos y al personal de pista, lo pasé genial, volveremos pronto un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los mejores karts que he probado, tienen un buen mantenimiento, le doy la enhorabuena a los mecánicos y al personal de pista, lo pasé genial, volveremos pronto 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.03 {P2.02,R3.05} V+ I3 CR-B {} {"O1.03": "Un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los "} {-0.039311793,0.07579612,-0.05325646,-0.13664767,-0.13008611,-0.013267683,0.07333165,0.11900045,-0.058708757,0.055640027,0.0319598,-0.035970602,0.02159914,0.050567638,-0.015698124,0.02774137,-0.043990325,0.036275096,0.008439557,-0.019361826,0.053193003,-0.0884247,-0.062306292,0.052176997,-0.10032975,-0.025635373,0.01047621,0.0050441376,-0.036790658,-0.07891638,-0.07525581,0.06181793,0.07058084,0.0033100941,-0.046676777,-0.036576886,0.020392245,-0.0070904084,-0.03791404,0.08808846,-0.042713642,-0.053780515,0.021074146,-0.046522632,0.059705544,-0.0947552,-0.013749732,0.0107857715,0.0168571,-0.05166187,-0.060829937,0.017027022,0.03748493,-0.009369105,-0.04702273,-0.065637365,2.7978502e-05,0.0305346,0.044970572,0.08217918,-0.017541127,0.01939001,-0.039980944,0.040332235,0.02061561,-0.017126454,-0.005417244,-0.02451866,-0.07533948,0.044360463,0.12318748,-0.12497323,-0.053070765,0.043792017,0.07070005,0.03293374,-0.028852616,0.019007243,-0.07651871,-0.05242236,-0.010512833,-0.036101602,-0.015018315,-0.045316402,-0.021182433,1.2205474e-05,0.012118829,0.010549629,0.004528576,-0.028756542,-0.029418306,0.04906361,-0.06802767,-0.018846644,-0.025364159,0.05265328,-9.064882e-05,-0.0697148,-0.011133343,0.012947163,0.09252985,-0.011806712,0.025681084,-0.016352788,-0.060288932,0.012663482,0.062992476,0.035791572,-0.03684703,0.0388811,-0.037335984,0.007768354,-0.091879494,0.0033501359,-0.019479405,-0.050633688,-0.018096708,0.02761737,0.006316036,-0.08265602,0.0105587095,-0.035422854,-0.06603019,-0.001143668,-0.013637054,-0.035216086,0.011389309,1.3602828e-32,-0.031246662,-0.009353821,-0.04169871,0.045206737,-0.00457206,0.015599995,-0.037174903,0.0037047686,-0.036829498,-0.019629823,-0.027052987,0.13696074,-0.04988792,0.05448392,0.037971556,0.02445342,0.015246018,-0.05273875,0.05046042,-0.004370646,-0.0189663,0.05122655,0.030991036,0.070123754,0.01951347,0.14125074,0.02689832,-0.07674246,-0.090056896,0.038637243,-0.026380958,0.043510303,0.042155985,-0.03978512,-0.04841875,0.008329917,0.031375762,-0.0039843,0.0070929634,0.010305673,-0.024151515,-0.0053859362,0.0016785578,0.017616067,-0.017162193,0.024600856,0.07447715,0.06300113,0.046943124,0.043709133,-0.12913127,-0.009738431,-0.08377392,-0.028728843,0.012359156,-0.014940596,-0.08159949,0.031835057,0.028918551,-0.004837754,0.037012078,0.053847022,-0.044649452,0.044968903,-0.06702785,-0.02516038,0.024181673,0.00072963664,0.12999421,0.08059679,-0.07371292,-0.04638248,-0.013003468,-0.0028738556,0.043108795,0.01032742,0.01324508,0.052184343,-0.045271937,0.068606116,-0.009649973,-0.019056499,-0.024863387,0.02258924,0.07932561,0.102068655,0.06436253,0.019299295,-0.039072346,0.13121644,0.02337966,0.06320245,0.092963934,0.03864861,0.008789191,-1.5783755e-32,-0.02584873,-0.01350233,0.057650458,0.0703283,0.030307982,-0.03351787,0.025503043,-0.011368376,0.010561189,0.01651221,-0.0011685231,-0.09690859,0.076603815,-0.058993787,-0.06857722,0.034001883,-0.0172158,-0.06611419,-0.055427294,-0.023633033,-0.012640384,0.14653955,-0.018408496,-0.035684478,-0.024602441,-0.067314364,-0.075915694,0.0039916886,-0.09248559,-0.0063465266,-0.020059522,-0.0074858554,-0.024563344,0.028044553,-0.083974764,-0.0068909195,0.052686617,0.07314142,0.031504415,0.058949493,-0.004063199,0.057572424,-0.0065348367,-0.03234751,-0.010064403,0.008576124,-0.0068876287,-0.1730361,-0.027877837,-0.06880392,0.045844518,0.005696632,0.0142750945,-0.048342362,0.03427196,-0.034092747,-0.014490238,-0.046603046,-0.07993858,-0.014379279,0.027345197,-0.014746927,-0.006233862,0.01875144,0.040739704,0.06486001,-0.0056974688,-0.03260596,0.0083865635,0.011792469,0.109394744,-0.002203487,-0.015051852,-0.046020057,-0.09292418,-0.032521274,-0.15326716,-0.0014562657,0.014017771,-0.028437069,-0.008206363,-0.021964777,-0.06976914,-0.07303859,0.010710934,-0.04136229,0.010669606,0.059324205,0.025194384,0.0131832985,0.028539268,0.039960757,-0.08788148,-0.049648594,-0.011193508,-6.25292e-08,0.014099305,0.022705609,-0.044845577,-0.0033965798,0.036855746,-0.051572643,-0.011458677,0.0248771,-0.010393324,0.08671517,0.040845282,-0.047308773,-0.039709922,0.053119376,0.07284742,0.012101929,0.06828997,0.100536175,0.0023424292,0.007321411,0.05991373,-0.010670746,-0.06510891,0.025026795,-0.048618864,0.036030754,0.0017325305,-0.01633485,-0.044956457,-0.039673064,-0.0593367,-0.0116806915,-0.079773255,-0.07773679,-0.019156849,0.02338604,-0.0019210529,0.021443514,0.023679478,-0.079834916,0.06585387,-0.05598501,-0.084726036,0.060445752,-0.029992346,-0.07603482,-0.035269324,-0.018097637,-0.01652894,0.05423958,-0.03426642,0.0061415294,0.045010254,-0.05713102,0.041824806,-0.008017725,0.083276525,0.0007174372,-0.10696286,0.0045656944,0.055237073,0.06365573,0.05709874,-0.11197026} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.817202+00 2026-01-30 02:01:11.186692+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1911 google ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB 1 t 1914 Go Karts Mar Menor unknown He estado allí varias veces y siempre nos han atendido super bien. Los precios son muy asequibles. Lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor. he estado allí varias veces y siempre nos han atendido super bien. los precios son muy asequibles. lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor. 5 2021-01-31 01:52:39.833374+00 es v5.1 P1.01 {R2.01} V+ I3 CR-N {} {"O2.03": "Lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor.", "P1.01": "He estado allí varias veces y siempre nos han atendido super bien.", "V1.01": "Los precios son muy asequibles."} {0.031191021,0.012178679,0.014445719,-0.06393469,-0.08103926,0.0026895509,0.026161216,0.057524163,-0.0450001,0.036857612,0.017146373,0.0038975102,-0.04132169,0.016159482,0.03466029,0.04022144,0.0012522275,-0.020840907,0.012215318,-0.07348363,0.024659885,-0.046706524,-0.09153575,0.039961983,-0.0051569566,-0.07616248,0.034159698,0.015523568,0.016000815,-0.052110903,-0.052282598,0.028332189,0.06884285,0.010604932,-0.015772963,-0.017070571,0.015400241,-0.0104739955,-0.027006585,0.0010832095,-0.05601932,-0.059081066,-0.04759063,0.0051904684,-0.022229176,-0.072580665,0.023377014,0.012536749,0.024418896,0.0075331144,-0.08146015,-0.01922151,0.044370793,-0.06033684,0.004317503,0.041997313,-0.047801957,0.035149,0.07840509,0.06354732,0.014237564,0.05267223,-0.06764585,-0.03552461,-0.031059664,-0.061022762,0.01732194,0.02130245,-0.08763662,0.10853082,0.17833671,-0.07164544,-0.0020713261,0.08440029,0.012044074,0.04490837,0.0034716423,-0.0037809534,-0.036015313,-0.020103859,0.023805665,0.024502,-0.017372366,-0.08635083,-0.012418286,0.0064813695,-0.009742964,-0.014361808,0.07766008,0.025730403,0.022086915,0.07921787,-0.11357992,-0.026883334,-0.002871812,0.037711468,0.05085513,-0.058667712,0.0171247,0.029442519,0.115233265,0.007873985,0.07867005,0.014198087,-0.05073106,0.024161685,0.042536013,-0.01104549,0.010008242,0.050160464,0.0045110513,-0.0012443173,-0.066776834,0.027349314,-0.11448156,-0.026269963,-0.02923161,0.018546067,-0.07896021,-0.10298291,0.051877003,0.04392736,-0.026610682,0.068289,-0.033140983,-0.09799976,-0.009830289,1.14194045e-32,-0.038505856,-0.011601334,-0.02097254,0.076742016,-0.056992073,-0.06532555,0.003209042,-0.038863566,-0.10446153,-0.054851845,-0.014109725,0.049325906,-0.016928904,0.042213492,0.022840276,0.073201954,-0.0052688248,-0.10049172,0.110027604,0.018236522,-0.019564362,-0.06278882,0.015745794,0.020532187,0.044354703,0.029652636,0.04123633,-0.06700689,-0.08394327,0.04270691,-0.069699794,0.06748273,0.013280208,0.0014816618,-0.0816807,-0.015217584,-0.021702807,0.0050023803,-0.045716647,-0.008872429,0.016753519,0.041209754,-0.023721464,-0.012129807,-0.07560941,-0.011318802,0.021927258,0.08490292,0.0483445,-0.028061232,-0.03166859,-0.059471965,-0.10365755,-0.06195805,0.012091718,0.020987818,0.0033304354,0.0432214,-0.00551622,-0.01718377,0.044832375,-0.023051647,0.025484243,0.05124217,-0.07788524,-0.05174299,0.03666427,0.0022943884,0.10999453,0.0020360968,-0.058120813,-0.08737196,-0.034138028,-0.06336346,0.021272909,-0.023421891,-0.045836274,0.1029243,-0.0015544544,0.06054896,-0.07556666,0.061473705,0.04033154,-0.0029112627,0.053050265,0.08993187,0.050335154,0.0052519883,0.016933728,0.14138792,0.020826777,0.026093507,0.04897633,-0.01566923,-0.018141543,-1.2113768e-32,-0.0073564514,0.0432987,0.10946344,0.07532346,-0.022923237,-0.015740778,-0.010097631,-0.0042658634,0.0022534323,-0.041287746,-0.01838969,-0.020916102,0.060529895,-0.036866646,-0.00881354,0.06964114,0.038612165,-0.039720066,-0.046294283,-0.04735555,0.05362147,0.012612238,0.058235288,-0.028372321,-0.045515176,-0.11820986,-0.039590936,0.064830035,-0.13637017,-0.005646907,0.076586895,-0.060154308,-0.003379085,0.030916639,-0.009080534,0.030513512,0.025966862,0.05116041,0.043110512,0.0779553,0.03743361,0.07498913,-0.041100886,0.0063066715,-0.07026464,0.0077456846,0.010303871,-0.13247828,0.0076589836,-0.087090895,0.07505343,0.029688444,-0.040798143,-0.05946991,0.02368695,0.021611037,0.025578668,-0.028585345,-0.06331299,-0.026959842,0.05218812,-0.009828215,0.002706377,-0.05793613,0.0378505,0.026656214,-0.016266927,-0.02378603,0.015374431,-0.043614574,0.06488008,-0.010658443,-0.09066085,0.008521483,-0.05794775,-0.036476478,-0.07833959,0.065633126,0.043315914,0.024854891,0.004276361,-0.03443059,-0.022383528,0.0022190618,0.007514465,0.0025110298,-0.020617567,0.039761115,0.08118903,0.053640164,0.042716265,0.044134825,-0.027937585,-0.08599754,0.017523643,-4.528371e-08,0.011002839,-0.08872164,-0.09862005,0.022605158,-0.020952057,-0.015089778,-0.049558964,0.068614595,0.04387641,0.09228588,-0.030285172,-0.008870189,-0.042320922,-0.024145123,-0.0070975204,0.019332502,0.038420916,0.090028465,-0.024648394,-0.0041631507,0.05053744,0.056711197,-0.030150669,0.033407323,0.0015312101,-0.026064064,-0.10229636,-0.009348638,0.0340802,0.061146047,-0.016427305,0.016788531,-0.026586678,-0.08565524,0.026569089,-0.022925738,0.009016535,-8.1395156e-05,0.04088502,-0.04846711,0.12140057,-0.011726407,-0.12594438,0.018084936,-0.070597135,-0.043178692,-0.060850188,0.052643895,-0.012528146,0.054928552,-0.10142685,0.0051847356,0.06814951,0.02063598,0.07357015,-0.06271579,0.0010418118,-0.008077143,-0.02091944,-0.07517658,0.061274514,0.07403754,0.039052382,-0.09541513} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.851173+00 2026-01-30 02:01:11.191338+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1913 google ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE 1 t 1916 Go Karts Mar Menor unknown Lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento.\nLas instalaciones están en buenas condiciones\nEsperamos volver! lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento. las instalaciones están en buenas condiciones esperamos volver! 5 2023-01-31 01:52:39.833374+00 es v5.1 P3.01 {P1.01,J2.01} V+ I3 CR-N {} {"E1.01": "Las instalaciones están en buenas condiciones", "P3.01": "Lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento"} {0.033405934,0.006870975,-0.0027961289,-0.060586937,-0.0400446,-0.047619965,0.09662495,0.04883376,-0.00393627,0.0009498365,0.07633054,-0.0013722964,-0.02028664,-0.026896272,0.07856477,0.04409157,-0.021162309,0.004908556,-0.030027604,0.02470833,0.03353635,-0.083460204,-0.11393624,0.048964992,-0.05983786,-0.04573406,0.010423898,0.012896631,-0.034490533,-0.070634514,0.06018707,0.040106338,0.18294582,0.0026845213,-0.0432047,-0.01864259,0.03163258,-0.08588705,-0.053891744,-0.007286461,-0.097184755,-0.045080237,-0.016564967,-0.05457574,0.016740955,-0.10765536,0.017793573,0.033252604,0.02239283,-0.020311052,-0.068800315,0.002754279,-0.00427317,0.058090236,0.008927553,0.034430288,-0.0232936,-0.011471676,0.033097755,0.03567043,0.023904955,0.051196832,-0.022693226,0.03543257,-0.018077416,0.013310368,0.07094917,0.013492139,-0.019379867,-0.018402452,0.027048187,-0.0766079,-0.07196033,0.040401753,-0.010241926,0.018693238,0.004790839,-0.028657272,-0.019941822,0.03728867,-0.064298846,0.017318526,-0.026586112,-0.044057105,-0.020592757,-0.019521423,-0.046308003,0.050979655,0.014841712,0.022707723,-0.01992185,0.044491407,-0.057368133,-0.026319832,-0.030803572,-0.019574763,0.027773332,-0.097561285,-0.023398148,0.016078675,0.057064917,0.0232954,0.0270106,0.0038889525,-0.06314466,0.01995018,-0.024726206,-0.01738617,0.0055149626,0.07812242,-0.08405488,-0.10722064,-0.045564674,-0.035350457,-0.060220234,0.021273239,-0.060402405,0.01814863,0.051996548,-0.056601338,0.01572324,0.03791073,-0.019665215,-0.05342386,0.0329173,-0.043082092,0.05743928,8.8398255e-33,-0.08430834,0.0030797364,-0.04293004,0.16264977,-0.08109024,-0.0022638044,0.003891273,0.017830634,-0.07079801,-0.04431993,-0.02991978,0.07778454,-0.016869422,0.09123018,0.13496256,0.016739728,-0.041250993,-6.7367706e-05,0.040860217,0.060789097,-0.028019108,-0.062493972,-0.03495185,0.017006047,0.054465726,0.015062132,0.082870215,0.011491483,0.008742668,0.027153924,-0.016271753,-0.003185768,0.052252844,-0.023771128,-0.024063794,0.0046749236,0.005844821,0.032721963,0.02438122,-0.03318295,0.043820575,0.017285777,-0.0054990994,0.0032870288,-0.01036724,0.09063711,0.072217904,-0.0011274299,0.12694068,-0.015334634,-0.10368597,-0.0366741,0.008097079,0.010000148,-0.03693007,0.024650415,-0.072533585,-0.012311431,0.009967535,-0.10368227,-0.04426407,-0.02386569,0.039173327,-0.02304872,-0.022599226,-0.08169731,0.028906174,0.009531805,0.106671035,0.07093053,-0.08647641,-0.052027427,-0.029767824,-0.004209175,-0.002943549,0.032984506,-0.034093425,0.037654974,-0.030848945,0.054262403,-0.034047905,0.024147289,0.025725707,0.040364437,0.122155614,0.09210715,0.0075764516,0.037264258,-0.019489259,0.14928776,0.015981644,0.111964,-0.018196123,0.0423237,0.032120764,-1.218429e-32,-0.011047058,-0.057044562,-0.006505376,0.025968416,0.042402226,0.06939206,-0.003926982,0.009984895,-0.020160984,-0.055823628,-0.12968272,-0.06064411,0.11278764,-0.0064785723,-0.07745145,0.070475176,-0.010797054,-0.09520615,-0.029109577,-0.024371613,-0.029607372,0.028165225,0.065920234,-0.061898712,-0.008789934,-0.11068811,-0.050698362,0.03389551,-0.053000316,-0.0557721,0.025866743,-0.017780669,-0.05031601,-0.009320951,-0.023670642,0.01786573,0.05142563,0.05302186,0.02759922,0.04790562,-0.004697236,0.055551536,-0.05827966,-0.045976117,-0.020277632,0.00767262,0.03262462,-0.18531552,-0.055761937,-0.056786276,0.00997181,-0.009347795,-0.024249384,-0.057876974,0.025566276,-0.04477081,0.021497432,-0.07380149,-0.026114933,0.007911874,0.0041365344,0.03663034,0.053823363,-0.062077902,0.038386,-0.012978176,0.026129818,-0.021688068,-0.0837766,0.017941419,0.0903929,-0.018788246,-0.041927006,0.006068727,-0.022555986,-0.044534974,-0.0804621,-0.05782063,-0.014558262,-0.0893984,0.05591986,-0.009751902,0.0829606,-0.12093098,-0.041209802,-0.044500858,-0.0010648757,0.056192074,-0.056708552,0.037274785,-0.019945197,0.047334198,-0.08576608,-0.055664603,-0.03454322,-4.86717e-08,0.0021914656,-0.0540528,0.008502856,-0.0071724574,-0.011824687,-0.061263762,0.002371581,0.09382222,0.04014633,0.013554613,-0.035262052,-0.075525045,-0.044280253,0.10299849,0.034029655,0.033676706,0.0802763,0.089944266,-0.03219216,-0.05144487,0.09312669,-0.018797928,-0.0036220106,0.020318232,0.044244524,0.011807654,-0.061114173,0.005290752,-0.021205485,0.02965674,-0.022113692,0.012758649,0.036834717,-0.030706123,-0.013719796,-0.06733871,-0.01536369,-0.0049352758,0.031600952,-0.10638695,0.07387694,-0.034000047,-0.06770162,-0.012680562,-0.028115066,-0.061695475,-0.0005795796,-0.0034473,-0.014896442,0.038191594,0.010792088,-0.06739341,0.055372175,-0.004601224,0.04164086,-0.036859486,0.039347753,0.039072864,0.04629535,-0.018165838,0.05469292,0.05557176,0.0044429223,-0.07279262} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.888635+00 2026-01-30 02:01:11.200139+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1914 google ChZDSUhNMG9nS0VJQ0FnSUM2cU92dFZ3EAE 1 t 1917 Go Karts Mar Menor unknown Excelente infraestructura y lugar idóneo. Hacia tiempo que no acudía y ya seas ajeno o aficionado pasarás un buen rato y sentirás la competencia de una buena carrera de karts. Para ir en grupo o simplemente tomarte algo y disfrutar de la carrera. excelente infraestructura y lugar idóneo. hacia tiempo que no acudía y ya seas ajeno o aficionado pasarás un buen rato y sentirás la competencia de una buena carrera de karts. para ir en grupo o simplemente tomarte algo y disfrutar de la carrera. 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.03 {O4.04} V+ I3 CR-N {} {"E1.03": "Excelente infraestructura y lugar idóneo. Hacia tiempo que no acudía y ya seas ajeno o aficionado pa"} {0.04121733,0.019964518,-0.04411567,-0.019621382,-0.096802704,-0.036056083,0.037432842,0.024828034,-0.011678113,0.006792891,0.09881893,0.027639532,-0.022535376,0.009429011,-0.0033908556,-0.08646276,-0.045424893,0.033862874,-0.014805596,-0.037373103,0.047026694,-0.044954486,-0.113349676,0.072000116,-0.12782218,-0.027330609,0.027122675,-0.02192345,-0.05988823,-0.06813934,-0.1043162,0.059225146,0.12336188,0.03409237,-0.037236705,-0.005196456,0.006122905,-0.032166168,-0.023711065,0.029679717,-0.07509442,-0.04269366,-0.026588337,0.0044016168,0.0112368865,-0.11432712,-0.0051086666,0.04916735,-0.0052403025,-0.007915242,-0.072298735,0.011367736,-0.04385939,-0.0034294692,-0.0660431,-0.038989805,-0.078747004,-0.006608307,0.060056485,0.034077685,0.035768095,0.08234864,0.023033014,0.04367961,-0.038342033,-0.021479523,0.023954289,0.10195763,-0.11711232,0.040788244,0.119855896,-0.10012422,0.011589257,0.08058292,0.029792478,0.0040328586,-0.03366589,-0.02996846,-0.053674694,-0.026521198,-0.01619465,-0.025349217,-0.027337955,-0.06704392,0.037703235,-0.0137556335,-0.028530283,0.015986333,0.01787038,0.05868204,0.0031366425,0.073161095,-0.10149625,-0.05484044,0.027943667,0.00826276,-0.0009623836,-0.015657036,0.06080351,0.014170665,0.0842261,0.0580364,0.037616666,0.00025680877,-0.084424905,0.018969113,0.04102398,-0.081263945,0.04742774,0.023486933,-0.10512669,0.023983916,-0.071934976,-0.06319063,-0.052318294,0.066886425,-0.027070202,0.0017831344,-0.05808264,-0.044504914,0.025899325,-0.02236288,0.021805441,0.000118192926,0.0049406732,-0.10470808,0.03407365,9.4761875e-33,-0.10180287,-0.044816233,-0.06774154,0.052184362,0.017285377,-0.060955334,-0.041276485,-0.058475353,-0.09744526,0.03260237,-0.050033003,0.087314524,-0.019114994,-0.0419029,0.15256095,0.07805166,-0.069140054,-0.011141506,0.021348467,-0.006868907,-0.061653614,0.013173166,0.019673817,0.013170746,-0.040939987,0.061488394,0.010336071,-0.07430631,-0.016057692,0.06942751,0.03320081,-0.0141124595,-0.014926434,-0.03040472,-0.08770613,-0.03323949,0.008331814,0.03522661,0.0022372697,-0.00848064,0.0069327075,-0.022280265,-0.022613335,0.023107162,-3.978168e-05,0.040926326,0.07114514,-0.003865125,0.058308676,0.078478694,-0.032412823,-0.07761445,-0.0026837678,-0.07429461,0.026748708,0.016561061,-0.043495834,0.050211534,-0.06524654,-0.04938837,0.028611362,0.01730245,-0.030035157,-0.03134852,-0.11478644,0.016340526,-0.012082796,0.006865877,0.13230906,-0.010468803,-0.0806421,-0.055284284,-0.058388524,0.045391563,0.053319428,0.0018721992,0.024684098,0.06116844,0.014480707,0.012620512,-0.034194127,0.043313637,-0.0025087262,0.042990997,0.059930403,0.14777927,0.03964367,0.04252297,0.020512713,0.13769682,-0.002647921,0.099346854,-0.012091172,-0.019525921,0.09251388,-1.1655214e-32,0.05300305,0.030380348,0.041293867,0.01988425,0.0017152049,-0.0009103242,0.024282722,-0.0014342492,0.03989325,-0.03314223,-0.046351865,-0.09606093,0.050204016,-0.011932916,0.030690616,-0.014642826,0.02405908,-0.018586814,-0.07515948,-0.033388563,-0.029962905,0.010421951,0.09678923,-0.05702544,-0.08104155,-0.03800788,-0.048919164,0.034981098,-0.09104496,-0.023150524,0.11423679,-0.014846271,-0.023622848,0.019954331,-0.080492035,0.035027083,0.035874598,0.031154785,-0.11914122,0.03924125,0.03367455,0.031211242,-0.02098521,0.009402668,-0.04715819,0.020436684,0.08656923,-0.12902693,0.023515744,-0.0695295,0.08822459,0.019733468,0.01535858,-0.094020925,0.07599004,0.017123986,-0.0081416825,-0.051453784,-0.09968233,0.011068549,0.07650541,0.037957177,-0.037754398,-0.018252175,0.080739886,0.014396948,-0.02708596,0.06395127,-0.049005263,0.051972874,0.081384845,-0.0079643205,-0.08015337,0.025458552,-0.04215446,0.002739743,-0.11535695,-0.013161752,-0.019420823,0.0076399986,0.013779208,-0.020993985,-0.039487593,0.0054692677,-0.06161265,0.031474795,0.0096979495,0.07882093,0.036733374,0.020927595,0.047667935,0.020572137,-0.026787883,-0.06724436,-0.071930006,-4.8449984e-08,-0.04636469,-0.02648911,-0.0026297783,0.026957532,-0.010857285,-0.020467293,-0.007570774,0.049690556,0.02624257,0.05791883,-0.044666495,-0.049046077,0.00996994,0.051266827,-0.017089231,0.01944196,0.045349754,0.074258104,-0.0007650829,-0.04770128,0.10552288,-0.019449357,-0.045098852,0.03984126,-0.05854511,-0.04167814,-0.03537347,-0.013596342,-0.01448996,0.0034883984,-0.010614891,-0.0304629,0.011378251,-0.021123257,-0.03391994,-0.07042297,-0.02894162,0.01806468,-0.034549136,-0.025658082,0.036849935,-0.023552284,-0.03253937,0.023692716,-0.057763867,0.010916496,-0.016705437,0.0032545633,-0.022843795,0.022237223,-0.0342551,-0.028974283,0.03438486,-0.01537498,0.017250417,-0.038030207,0.02392106,0.023453394,-0.03402652,-0.03543541,0.031071384,0.06526806,0.03814431,-0.02248353} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.902928+00 2026-01-30 02:01:11.203514+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1915 google Ci9DQUlRQUNvZENodHljRjlvT25GR00wNHRVbTV4WjA5bE5GTkRkSEZyTW1FNWRGRRAB 1 t 1918 Go Karts Mar Menor unknown Circuito de 50seg en buenas condiciones circuito de 50seg en buenas condiciones 5 2026-01-23 01:52:39.833374+00 es v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Circuito de 50seg en buenas condiciones"} {-0.05215334,0.13194317,-0.018203478,-0.025440415,-0.096442066,0.030891195,0.026426613,0.11170641,-0.036698513,0.057242654,0.03909698,-0.043927867,0.0799846,0.015170427,0.0131741455,0.065076575,-0.06868141,0.027287036,-0.044030163,-0.010021073,0.07647214,-0.096383795,-0.09306396,0.05684546,-0.07257242,0.040586364,0.007159962,0.011958064,-0.055298556,-0.064985596,-0.08522335,0.00413556,0.05598764,-0.008566442,-0.09068859,0.007902776,-0.000667253,-0.07380042,0.053402875,0.024217177,-0.050764214,-0.026451046,-0.004431095,0.037355658,0.005381019,-0.053059284,0.0067067435,0.00040366134,-0.022957753,-0.11088378,0.020206604,0.067436874,0.011734891,0.027102256,-0.022945262,0.007865748,0.03126536,0.00075526955,0.040430594,-0.0017467518,-0.0048328387,-0.03810006,-0.054219145,0.008832309,0.009010398,-0.07480418,0.05701336,-0.035007916,-0.06159607,0.008086294,0.01915702,-0.15359287,0.017176237,-0.019774185,0.056096286,-0.00923094,-0.01879094,0.03930116,-0.040184114,-0.14323124,0.063398756,-0.08342839,-0.029190194,-0.04186919,-0.01552014,0.0049072634,0.03431165,0.013136456,0.040377196,-0.12919159,-0.058695886,0.03356627,-0.074167125,-0.041598402,0.03377432,0.01843286,-0.046096478,0.006339519,-0.025472645,0.06672292,0.08880344,0.018155325,0.004789192,-0.021636717,-0.029604562,0.050831325,0.028001875,0.0905804,-0.0070707393,-0.017604722,-0.018756818,0.038716335,-0.036561593,0.0039062854,0.091999315,-0.044888534,0.0024531214,0.05375348,0.091080606,-0.067140594,0.04242781,-0.04898234,-0.054844625,-0.008703635,-0.008665303,0.035953145,0.08120013,-9.966141e-34,-0.08619718,-0.01150674,-0.0069346284,0.011010524,-0.016475957,0.055393085,-0.066325,0.070720546,-0.009845945,0.02207003,-0.00895217,0.055605173,0.007963519,0.012960085,0.07025854,-0.09370995,-0.027976194,-0.021445068,0.11511521,-0.032634027,-0.014973932,-0.060688246,0.029599905,0.08993001,0.10349881,-0.073975,0.0013327451,-0.013756178,-0.052874636,-0.013654495,0.027107991,0.03077096,0.024666848,-0.021562733,-0.06488031,-0.0011218293,0.09668689,0.016426824,0.034472957,-0.021258177,-0.056105092,0.01050778,-0.01303697,0.038916297,-0.0062532565,0.034339692,0.06859356,0.036732763,0.027712097,0.07415262,-0.076791994,-0.022148637,-0.09608517,0.019882454,0.03821176,0.06421453,-0.020277651,0.014236394,0.056261253,0.10636965,-0.02507421,0.044648096,-0.05577204,-0.0028220362,-0.036912993,0.08998534,-0.027753897,-0.06382642,0.010346476,0.01952326,-0.083104044,-0.060326573,-0.010058359,-0.05401063,0.019567959,-0.061211072,-0.037957758,0.003257866,-0.016107922,0.040862557,-0.09707861,-0.11181501,0.020548716,0.0051622423,0.07681634,0.016250068,-0.0034161145,-0.025640346,-0.04310523,0.017708523,-0.044556476,0.0047033927,0.1106751,0.023486843,0.08670994,-1.6803723e-33,-0.051129982,-0.031560466,0.017110387,0.15549493,0.038574923,0.008495767,0.0030642154,0.0467088,-0.05409631,-0.025339989,-0.001864656,-0.02370736,0.06741163,-0.020592583,-0.04720645,0.0063055335,0.013951927,-0.050512765,0.0003481957,0.060692646,0.06474528,0.09515359,0.0012724657,-0.011122366,0.026731582,0.028247276,-0.0992357,0.008784988,-0.039583534,0.015654061,-0.033796422,0.0074481973,0.055242497,0.06962952,-0.08159285,-0.056788996,0.10745883,0.051318053,0.004214901,0.030772764,-0.028284734,0.057238057,0.017349474,0.007656679,-0.055943575,0.027485283,0.0028659415,-0.051437262,-0.0143483225,-0.045671474,0.0068278885,-0.054154046,0.021108158,-0.032369837,-0.018600201,-0.060317975,-0.06239608,0.039482076,-0.0025770913,-0.057488028,0.06487768,0.0044362852,0.035433635,0.06108482,0.06290263,0.013268413,0.0012061292,0.05874267,0.058421016,0.011195644,0.042011604,-0.04088279,-0.05764243,-0.024716463,-0.117199525,-0.027766282,-0.022823967,-0.031181078,-0.0154283345,-0.013333346,-0.06456553,0.06703906,-0.07390128,-0.110876985,-0.06902035,-0.060229365,0.034161102,-0.03640168,0.015757969,-0.029579416,-0.011754408,0.061247315,-0.024358304,-2.8168335e-05,0.016992334,-2.2301341e-08,0.016966041,0.048651688,-0.033683065,-0.02153851,0.11618153,-0.076870814,0.02594989,-0.038510866,-0.014132122,0.037234355,0.07899563,-0.00086664024,-0.052034464,0.08260658,0.030036941,-0.031039372,-0.00467197,0.06548635,-0.020468265,0.0886636,0.051991764,-0.014685931,-0.011646213,0.0017802828,0.08456183,-0.02697227,0.07184962,0.008640578,0.005706848,-0.011836423,-0.08698526,0.013774218,-0.04786389,-0.019684838,0.08270531,0.021280017,-0.090362385,-0.0002977642,-0.016395457,-0.033359744,0.0033779794,-0.12978607,-0.023604902,-0.0077530397,0.006524327,-0.08073513,-0.04124895,0.008371847,-0.0059984904,0.021231746,-0.03415737,0.062281482,-0.026121749,-0.008295815,0.04934976,0.06898349,0.049082704,-0.0055754776,-0.0755336,-0.006696264,-0.0039723804,0.056552477,0.027570307,-0.064349174} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.917227+00 2026-01-30 02:01:11.209346+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1920 google ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB 1 t 1923 Go Karts Mar Menor unknown Una experciencia única!!! Lo recomiendo 100%. Buen personal, buen trato, buenos karts y buena pista. Lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos. Enhorabuena por vuestro negocio y volveremos!! una experciencia única!!! lo recomiendo 100%. buen personal, buen trato, buenos karts y buena pista. lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos. enhorabuena por vuestro negocio y volveremos!! 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.01 {O2.03} V+ I3 CR-N {} {"O3.02": "Lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos.", "P1.01": "Una experciencia única!!! Lo recomiendo 100%. Buen personal, buen trato, buenos karts y buena pista."} {0.06849873,-0.0075327903,-0.00061633607,-0.038184796,-0.08176758,-0.050735053,0.09286053,0.004794341,-0.04330101,0.039911922,0.12021883,-0.04992998,-0.059689388,-0.01910171,0.051002227,0.02145372,-0.005416584,0.016773034,0.0033792614,0.017544076,-0.008844688,-0.051443037,-0.049488585,0.10842986,-0.031705447,-0.031183334,0.024807908,-0.0066649304,-0.054903034,-0.08907657,-0.03324624,0.06490618,0.0730114,-0.0038430796,-0.033205833,-0.035877466,0.035623167,-0.09306976,-0.037295077,0.0757887,-0.08637275,-0.017919047,0.004253718,0.006469925,0.046047535,-0.025834462,-0.005195289,0.09360044,0.056967195,0.020112757,-0.03427115,-0.013071243,0.020433826,0.060119756,-0.027787352,0.019125927,-0.008354942,-0.013453435,0.06914691,0.029366586,0.0061892853,0.06818933,-0.054806605,0.03419211,0.017270045,0.011198942,0.031101711,0.050987236,-0.09148115,0.109389104,0.13361225,-0.013309082,0.028610576,0.085768536,-0.03484707,0.05379375,-0.021650165,-0.037546337,-0.05156024,0.056108017,0.01799448,-0.030034529,-0.045404967,-0.06217969,0.02881781,-0.022117985,-0.05301371,0.0045061545,-0.0040583783,-0.008807999,-0.031748608,0.07479287,-0.0376083,-0.037883304,-0.02626951,0.04262812,-0.029613126,-0.06323614,-0.02858695,0.0032399176,0.07374125,0.054446984,0.058464736,0.018899674,-0.03358427,0.044806074,0.013865858,-0.009686863,0.0538453,0.044636987,-0.021521691,-0.06580872,-0.04163182,0.007813033,-0.08581397,-0.06406724,0.059507538,0.0031854317,-0.019055,-0.035419747,0.004873048,0.04959903,-0.058424484,-0.05422204,0.0008972004,-0.094237916,0.009179706,1.3241042e-32,-0.067080654,-0.008035805,-0.016915474,0.07671313,-0.03283811,0.007285762,-0.041190036,-0.038936727,-0.108843744,-0.003713055,-0.05218013,0.04592738,-0.036333874,0.062050875,0.08004271,0.0995539,-0.011737486,-0.0030107368,0.024360497,0.053160258,-0.0535756,0.034956917,-0.024323305,0.005225619,-0.05745598,0.014171319,-0.0034693195,-0.09714737,-0.03816327,0.020671261,-0.019215574,0.08659909,0.0487064,-0.07691386,-0.050864927,-0.11440405,0.06280366,0.018607909,-0.015968472,0.045501597,0.023771694,-0.0031934415,-0.0367068,0.025745984,-0.043906916,0.0046729385,0.094505705,0.0086513,0.06792573,0.0039980407,-0.09104318,-0.08417011,-0.036691908,-0.019279188,0.019447455,-0.028764395,-0.053253617,0.046884347,-0.020583712,-0.09938465,0.03603471,0.041364335,0.045112662,-0.09877712,-0.061847683,-0.05419415,0.064247586,0.038309794,0.1080207,0.047661565,-0.060248174,-0.04680687,-0.08022116,0.0024931382,0.06570432,0.00437916,0.027692521,0.0033511373,0.023326,0.0051976508,-0.028515995,0.008815053,0.010797672,0.027702495,0.12576534,0.11171947,0.069398575,0.007514823,-0.03886293,0.096054584,0.05014078,0.05158792,0.04975513,-0.007463803,0.018833704,-1.242233e-32,-0.0028672605,0.019079806,0.038938757,0.03770912,-0.038348645,0.007508809,-0.029991204,-0.004150394,0.018707542,-0.034463737,-0.09510695,-0.09613393,0.12214229,-0.052115608,-0.054090597,0.030252071,0.0062460066,-0.04541065,-0.047682807,-0.060931135,0.0053476044,0.026067257,0.056474134,0.015170606,-0.04727582,-0.07934879,-0.0424554,0.022932779,-0.04020246,-0.06903312,0.014651146,-0.046403628,0.012931999,-0.02700842,-0.010647967,0.04422559,-0.008151179,0.036912285,0.04491104,0.09216003,0.0030829187,0.08806766,-0.09122971,-0.050218694,-0.042431723,-0.013270137,0.04354356,-0.14113256,-0.011395667,-0.105338424,0.06895821,-0.016609501,-0.0467965,0.024233522,0.043530714,-0.015849423,0.0012552785,-0.052897315,-0.09077171,-0.002447328,0.011681081,-0.007954348,-0.00733255,-0.01712742,0.09039924,0.0024361645,0.0031194973,0.035779964,-0.031261403,0.020735066,0.04894514,0.039378166,-0.071264915,0.027031194,-0.046091456,-0.05813185,-0.035069358,-0.06424967,0.070574895,0.051813293,-0.028777523,-0.0109597305,0.0018464942,-0.070207246,0.0062127723,-0.014178925,-0.040315114,-0.009059897,0.021119593,0.06788741,0.04945748,0.019806612,-0.047644436,-0.04293884,-0.03689938,-4.9032526e-08,0.020070445,-0.035542723,0.025018305,0.024080414,0.04305206,0.008759858,-0.05783404,-0.0028748494,0.021135287,0.025148008,-0.028732387,-0.04972506,-0.038894888,0.04758582,-0.0060064658,0.056129593,0.09360876,0.15172105,-0.00085659896,-0.025593638,0.07223093,0.02429572,-0.03278897,0.020817393,-0.052870948,0.017750964,-0.003383407,0.01291091,-0.0010924846,-0.0023634315,-0.057948537,-0.07029536,-0.04970946,-0.0818816,-0.02751276,-0.047092646,-0.051588275,-0.016646028,0.0152900955,-0.039433673,0.10402468,-0.056070615,-0.10907597,0.03399283,-0.10014682,-0.112343095,0.03405328,-0.0072538718,-0.0475139,0.05720497,-0.020571375,-0.06890052,0.053531576,0.016128836,0.032939408,-0.017102417,0.07660337,0.01551356,-0.0066816974,0.04775488,0.08379339,0.10211411,-0.015441104,-0.036348484} 0.95 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:24.973169+00 2026-01-30 02:01:11.236284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1924 google ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE 1 t 1927 Go Karts Mar Menor unknown Bajo mi punto de vista esta muy bien. Pero el servicio en el circuito no es honesto, deberían ser más amables y creo que en la carrera los del F200 no deberían estar con los F400 bajo mi punto de vista esta muy bien. pero el servicio en el circuito no es honesto, deberían ser más amables y creo que en la carrera los del f200 no deberían estar con los f400 3 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"J2.01": "y creo que en la carrera los del F200 no deberían estar con los F400", "R1.01": "Pero el servicio en el circuito no es honesto, deberían ser más amables", "V4.03": "Bajo mi punto de vista esta muy bien."} {0.0067359894,0.03890843,-0.009107598,-0.07149011,-0.05255858,0.009219471,-0.002309149,0.08463287,-0.027650092,0.0030161447,0.022973394,0.043842148,-0.004290409,-0.022258094,0.071268395,0.005110742,0.0022070878,-0.04449886,-0.026639884,0.02874501,0.08360393,-0.06755237,-0.10111048,0.035213493,-0.08890964,-0.025166394,0.015580718,0.07037513,-0.1497384,-0.102084965,-0.012272258,0.08828034,0.06603255,0.036646266,-0.008663809,0.011236598,0.03893417,-0.04789715,0.015105521,0.006971973,-0.13826205,-0.07399784,0.010370747,-0.06983459,0.049357373,-0.05629674,0.07366712,0.027111728,0.07717423,-0.039955184,-0.017221948,0.057767466,0.022762446,0.002511068,-0.033283014,0.005355059,0.0151839815,0.024681335,0.01189629,0.051814254,0.029855283,-0.030283097,-0.05758585,0.062613554,0.0025422955,-0.030413602,0.023060841,-0.081329785,-0.027356055,-0.021151382,0.039850865,-0.05595366,0.024820304,-0.037938494,-0.013159942,0.04446596,0.026628297,0.021304023,0.025484245,-0.060154155,0.037663583,-0.05906318,-0.022344962,-0.043310054,-0.025128746,0.02204199,-0.059683986,-0.005958611,-0.012700885,-0.014646416,-0.042159006,0.032291938,-0.022670135,-0.007451785,-0.017555056,-0.019175021,0.06285883,-0.045051917,-0.04177626,0.06146638,0.055919535,0.0044988305,0.05729636,-0.0048667355,-0.009721112,0.051186673,0.07133717,0.03069091,-0.049368247,-0.08893994,-0.05026468,0.036462847,-0.06459934,-0.0046863873,-0.020651348,-0.032793704,-0.05198389,-0.013657267,0.023205008,-0.04275103,-0.00048691305,-0.04773176,-0.04554378,0.045124017,-0.0077905823,0.0009231955,0.025883961,1.0513164e-32,-0.015191046,0.046554536,0.026866363,0.031394716,-0.014541796,-0.013350029,0.01978448,0.05048936,-0.03191711,0.012141784,-0.057979666,0.07460455,0.007760756,-0.06711849,0.09486658,-0.06027139,-0.053694423,-0.044801302,0.044720195,-0.02534766,0.07166047,-0.060513753,0.09577784,-0.03761383,0.060632404,0.114281625,0.029437039,-0.02116259,-0.08866119,0.088894814,-0.027556162,0.013914902,0.024558896,-0.0485394,0.008372659,0.009147036,0.02700035,0.01930072,-0.038858242,-0.0462735,-0.026938453,0.04660292,-0.09065675,-0.0052720997,-0.010932695,0.011093831,0.051336795,0.025811726,0.09743453,0.0761697,-0.065347426,-0.030850543,-0.04712857,-0.04271512,0.03965198,0.0042992537,0.01040502,0.025367372,-0.011994416,0.033970997,0.024266647,-0.019271594,-0.04155577,-0.065041356,-0.04591128,0.10645768,0.0981302,0.034134857,0.079555266,0.0244274,-0.046934243,-0.058445,0.044477638,0.0018888195,0.08845046,0.07904227,-0.010537232,-0.010854603,0.009896153,0.009034693,-0.016169028,-0.06815131,-0.04526459,0.05751628,0.1079426,0.09955889,0.060534537,0.05359984,-0.0037377765,0.1046485,0.0037541531,0.07291822,0.08349704,-0.0088347895,0.055814307,-1.1042776e-32,-0.049099885,0.0033899765,0.004746617,0.022288002,-0.0507568,-0.0111561455,-0.031053048,-0.006810221,-0.044224378,0.07009459,-0.017132733,-0.07667076,0.09261916,-0.08604245,-0.10512475,-0.0011662088,-0.033248607,-0.17359093,-0.01836929,0.003774135,0.06805827,0.1036468,0.024039874,-0.031933967,-0.06742382,-0.031177925,-0.0788107,0.09255486,-0.07970701,-0.062505685,0.04445037,-0.030034024,0.07743001,0.02654915,-0.03119258,-0.044536337,0.067261025,0.05577726,0.0019034398,0.031916205,-0.018588709,0.05731415,-0.027607203,-0.011005404,-0.035361376,-0.010964157,-0.017668886,-0.1437095,0.06453156,0.013177308,0.03461077,-0.064249866,-0.11677505,0.00450431,-0.042524837,-0.019272588,-0.01932663,-0.014148184,-0.14114664,0.008706473,0.041525338,-0.023442471,0.009944199,-0.011017804,0.12941274,-0.021156732,-0.011699227,0.082545705,0.045180947,0.07204418,0.06322613,-0.090667956,-0.053804826,0.022274699,-0.038781863,0.030574143,-0.0863067,-0.03640898,-0.029268602,0.0001942582,0.020466443,-0.057416186,-0.037767097,0.0027385976,0.016159115,-0.0224036,0.021868551,-0.04716081,0.00086757593,-0.014236979,0.004962399,0.06006523,-0.029197928,-0.037083484,-0.030560084,-4.153995e-08,0.008735546,0.09431837,-0.016095512,0.04925243,0.008246752,-0.09434662,-0.03252542,-0.0026233064,-0.015538224,-0.008223231,0.013901412,0.010367653,-0.0066473396,-0.02227088,0.025134888,0.017423458,0.04952875,0.093908325,-0.017806537,-0.010575817,0.030794272,-0.02723828,0.004001443,0.010113943,0.06002239,-0.008952679,-0.054194454,-0.005298335,0.09629792,0.01322365,-0.100600444,-0.007798381,-0.038093198,-0.056090984,-0.0458709,-0.0043043084,-0.080606855,-0.023815969,-0.06293492,-0.018559327,0.1231471,-0.060910545,-0.123858854,0.030606247,-0.04490407,-0.012181118,-0.03197834,-0.081578866,-0.04586484,-0.013355415,-0.050399777,0.005602672,0.005829755,0.035542376,0.0046208757,0.038535103,0.00233958,0.040271483,-0.01727796,0.0133466255,0.019615987,0.072329566,-0.00616478,-0.077777535} 0.8333333 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.0187+00 2026-01-30 02:01:11.251277+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1926 google ChdDSUhNMG9nS0VJQ0FnSUQ4ODRxNnBRRRAB 1 t 1929 Go Karts Mar Menor unknown La mejor pista de la zona sin duda ! El circuito es una pasada, los precios son bastante más bajos que en otros circuitos y el trato es excelente! Recomendable 100% la mejor pista de la zona sin duda ! el circuito es una pasada, los precios son bastante más bajos que en otros circuitos y el trato es excelente! recomendable 100% 5 2021-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.01,P1.01} V+ I3 CR-B {} {"V1.01": "La mejor pista de la zona sin duda ! El circuito es una pasada, los precios son bastante más bajos q"} {-0.11844962,0.06928639,-0.051979758,-0.07204666,-0.08851364,0.0006740703,-0.02073416,0.0497759,-0.069427565,0.013066217,0.06290438,-0.038147178,0.055698864,0.047391847,0.030922849,0.063368045,0.0014507638,0.03381796,0.034311824,-0.0037163983,0.06684869,-0.029765958,-0.04574541,0.0442993,-0.048229214,0.01909453,0.043081928,0.025023315,-0.09104476,-0.10873939,-0.10811955,0.056440026,0.09508233,-0.045235895,-0.068234496,-0.04415908,0.013978404,-0.046006963,-0.018237688,0.068899855,-0.06632233,0.0053778235,0.03037692,-0.06971587,0.036872968,-0.037452847,0.03355012,0.0021095406,-0.00868447,-0.07967383,-0.050273363,-0.024164796,0.07228402,0.04571738,-0.045413613,0.015548469,-0.054623805,0.014465264,0.02500257,0.01827614,0.0069878986,0.03230187,-0.079211585,0.03940682,0.021371476,-0.07569947,0.010248359,-0.026385989,-0.08401946,-0.027242724,0.03831265,-0.062419973,0.057303477,-0.04611329,0.009768539,0.10207076,0.039199878,-0.05352674,-0.047188766,-0.037954926,0.031201778,-0.0735393,-0.035894305,0.0024129946,0.09007611,0.039098073,-0.042971868,0.01601449,0.018112287,-0.057153482,0.026573787,0.10170256,-0.034232162,-0.017068585,-0.06305659,0.019611537,0.012982994,-0.06653316,-0.016571242,0.030389808,0.099103294,-0.014870051,0.042533454,-0.0750084,-0.04630789,0.04087284,0.12736972,0.051953424,-0.008336184,0.036531884,-0.006061428,-0.03651901,-0.060364746,-0.049117163,-0.040016823,0.030734386,-0.006841621,0.020310193,-0.021708904,-0.07300758,-0.015549467,-0.036258772,-0.06681866,0.02272259,0.023545425,-0.023117837,0.0005804898,6.547024e-33,-0.06813463,0.050173502,-0.082609095,-0.009348534,-0.04092195,0.080779776,-0.02585655,-0.0007485322,-0.043068014,-0.06368455,-0.059703596,0.115687445,-0.027871862,-0.011818443,0.00034991928,-0.06357248,-0.024428383,-0.063142434,0.06734471,0.044510532,0.049531356,-0.044339795,0.022724014,0.04647406,0.06018105,0.09725876,0.04346438,-0.08164149,-0.089200884,0.018820485,0.020731388,0.039785556,0.007428355,-0.039251387,-0.019724661,0.022363385,-0.026798634,0.008749882,0.022739409,-0.05411114,-0.037738115,0.015491701,-0.049769126,0.038119685,-0.058187127,0.01905068,-0.037348326,0.05766291,0.14114371,0.03936127,-0.09640821,-0.07171248,-0.10618441,0.043424927,0.01293912,0.029455429,-0.05479746,0.02421825,0.051432036,-0.0017857944,-0.046860278,0.040724237,-0.05027076,-0.059873976,-0.084767714,0.034213968,0.030246578,-0.05998293,0.086542055,0.014255776,-0.049050312,-0.05932122,0.03805345,0.037869897,0.023510369,-0.0028619673,-0.0098443,0.0022008547,0.03580692,-0.009620291,-0.048967887,-0.06700439,0.022797503,0.045085263,0.07548508,0.07229239,0.058262214,0.023573447,-0.05109602,0.089082465,0.024745809,0.034165405,0.15052113,-0.00078229373,0.05039898,-8.0236364e-33,-0.004150871,0.017435577,0.04916229,-0.010171287,0.03143818,-0.028800694,-0.022969242,-0.0987171,-0.00583131,-0.027915003,-0.028910404,-0.060150336,0.069948375,-0.04367848,-0.055688422,0.018242849,0.007828504,-0.080720626,0.016618874,-0.03683861,-0.030268684,0.0579064,-0.03777548,-0.0026689256,-0.07381156,-0.048989654,0.010493809,0.020022916,0.01715397,0.016942445,-0.053853475,0.018222334,0.03178196,-0.0043660067,-0.041322216,0.058875527,0.10368932,0.046291184,0.0031072479,-0.0049778763,0.0017364183,-0.008137146,-0.050057914,-0.006597398,-0.033801246,0.061636027,0.055405386,-0.07499015,-0.06157058,-0.0062179193,0.06852152,-0.054511692,-0.011191352,-0.047030795,0.051410023,-0.007914414,0.005275387,-0.02850543,-0.047488876,-0.052141033,0.035225496,-0.05169447,0.008308432,-0.03765253,0.05192302,-0.0048958147,0.07751222,0.039732017,0.053615563,0.05096357,0.054639746,0.03287308,-0.024900218,-0.019173535,-0.08085171,-0.030897811,-0.12408203,-0.032456063,-0.016544415,-0.02399863,0.061211616,-0.018228032,0.015444983,-0.03802388,0.046325497,-0.07688046,0.04079296,0.021313295,-0.0029154257,0.037179578,-0.06510349,0.09226487,-0.00048026184,-0.020850115,-0.0247998,-3.485673e-08,0.04600858,-0.03208958,-0.050162528,0.0030522402,0.032120302,-0.11360818,-0.00083999167,-0.023611847,-0.017400442,0.010658135,0.046826467,-0.007707797,-0.011052993,-0.0056695696,0.049901325,0.08622559,0.075488895,0.12674232,0.0047073313,0.045953475,0.048962314,0.0291175,-0.06670774,-0.01720247,0.018028898,0.014092802,0.011175612,0.04652387,-0.00871629,-0.082242586,-0.022157297,-0.013192628,0.07494656,-0.086540565,0.020917073,0.014445488,0.012951805,-0.050997473,0.018015774,-0.05171598,0.025863431,-0.05293988,-0.062483143,0.038667463,-0.01897948,-0.13854483,-0.015679576,-0.0604178,0.04442509,0.06679346,-0.049852546,-0.0024683771,0.012686588,-0.013628887,0.13562246,0.045102652,0.046688177,0.02727823,-0.042969875,0.09129668,0.026784234,0.08507661,0.05730105,-0.06713318} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.062111+00 2026-01-30 02:01:11.257642+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1927 google ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE 1 t 1930 Go Karts Mar Menor unknown El mejor karting de la zona del mar menor. La pista está en muy buenas condiciones y los karts muy bien cuidados. Lo tienen todo muy bien organizado y siempre están pendientes de la seguridad. Puedes ir con tu kart o moto. el mejor karting de la zona del mar menor. la pista está en muy buenas condiciones y los karts muy bien cuidados. lo tienen todo muy bien organizado y siempre están pendientes de la seguridad. puedes ir con tu kart o moto. 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.03 {E1.01} V+ I3 CR-B {} {"J2.01": "Lo tienen todo muy bien organizado y siempre están pendientes de la seguridad.", "O1.03": "El mejor karting de la zona del mar menor. La pista está en muy buenas condiciones y los karts muy b", "O4.03": "Puedes ir con tu kart o moto."} {-0.028063381,0.05975622,-0.039964467,-0.01363897,-0.09312675,-0.003878044,0.023358522,-0.0053818347,-0.0010251586,0.00714896,0.069228835,0.040273454,0.007530448,0.013059764,0.040603805,-0.020573342,-0.05834444,-0.005933086,-0.014615538,0.08208755,0.011551311,-0.04773713,-0.0756959,0.04100587,-0.13845146,-0.016701465,0.0605257,0.006105039,-0.03489183,-0.073619306,-0.031173477,0.09200907,0.053781252,0.028346222,-0.02177363,-0.054789618,-0.029416028,-0.022733817,-0.029305708,0.0073797894,0.035365682,-0.054562993,0.013130035,-0.06670932,0.011965743,0.015055794,-0.024849286,-0.003593546,-0.044425685,-0.028973877,-0.074205086,-0.042394206,0.004056527,0.031986333,0.005193507,-0.047079884,-0.12312481,0.017699229,0.058790244,0.013898631,0.03287993,0.052596048,-0.00035673552,0.0322391,-0.020671155,-0.14473589,-0.0074327677,0.020543853,-0.08046633,0.025769392,0.11907856,-0.047306623,-0.03578854,-0.0051031006,-0.03712702,0.049855776,-0.0021304684,-0.018955544,-0.08251806,-0.010630294,-0.00028005175,-0.04612871,0.00486336,-0.009973194,0.056789987,0.019890701,-0.00816989,0.018748112,0.010844244,0.016569912,-0.05673043,0.08079269,-0.06979414,-0.051927865,-0.020392345,0.044869356,0.0221132,-0.057091482,-0.016886255,0.0069434256,0.10924626,0.04516991,0.0427856,-0.022407569,-0.0896857,0.06896275,0.053908814,-0.03669143,-0.016690642,0.064376675,-0.03932135,-0.049683675,-0.05480605,-0.07046134,-0.080613166,-0.004443791,-0.032730013,0.017409334,0.024803385,-0.07687549,-0.047956042,-0.039576475,-0.054994002,-0.051974826,0.027546268,-0.036185846,0.054305095,1.1949092e-32,-0.117323264,-0.015913213,-0.020524967,-0.004315406,-0.0072199404,-0.005236013,-0.015104357,-0.11211265,-0.0856104,-0.09461741,0.02464169,0.11828681,-0.03843051,-0.05347231,0.06702996,0.007897774,-0.02849869,-0.05516161,0.02643341,0.046634223,-0.00040566342,0.012262248,-0.055827715,0.027051464,-0.00867585,0.07428445,0.050578706,-0.05729989,-0.11122039,0.030422391,0.008719146,0.010541282,0.009888978,0.009566052,-0.008742297,-0.010142443,-0.028796814,0.01833905,-0.10058787,0.013404539,-0.039555967,-0.101973325,-0.035957072,0.067325905,-0.11684384,0.07269886,0.055805508,0.0026361474,0.064039424,-0.008086705,-0.078420594,-0.031337462,-0.05885125,-0.00751716,0.00012208383,0.034306675,-0.061905302,-0.01898906,-0.033949576,-0.059067104,0.010916148,-0.018801682,0.025732411,-0.004646414,-0.039355822,-0.06483216,-0.019168908,-0.018650088,0.12994719,0.10018132,-0.04759227,0.023745816,-0.00088460516,-0.004994963,0.1064877,0.016057543,0.003281902,0.07678935,-0.005436081,0.071804106,-0.037784703,-0.04482126,0.053648822,0.07457426,0.06551129,0.022676678,0.04968115,0.024325443,-0.018663438,0.117416084,-0.030927917,0.02325066,0.077803746,0.044307865,0.053908035,-1.2782424e-32,0.015458314,0.025988301,0.13241318,0.093046516,0.035245545,0.0095764045,0.026294664,-0.107663505,-0.023299053,-0.04594834,-0.10777048,-0.099923834,0.11568512,0.019386737,0.0030554072,0.06390264,0.020160286,-0.07714093,-0.008727949,-0.033758853,-0.06499198,0.04535826,0.04246997,0.0051118657,-0.04221599,-0.020490976,0.0125000095,-0.0050917286,-0.09808448,0.040805217,0.030966595,-0.07492596,-0.017261375,-0.006677745,-0.057619773,0.015481672,0.042789888,0.078757666,0.012368456,0.049610443,0.0021489651,0.04504844,-0.04279699,0.020166209,-0.0020459215,0.008096488,0.12048408,-0.081366956,-0.00835782,-0.020686798,0.12478929,0.0370486,-0.07950609,-0.052299984,0.09913493,0.003670589,0.027673082,-0.018850394,-0.09583835,0.009945905,-0.010334115,-0.021237217,-0.041602682,0.011796797,0.018840851,0.023410818,-0.0014656194,-0.04417112,-0.038172472,0.042758387,-0.010930495,-0.0066455426,0.0011267439,0.07205465,0.034102585,-0.01461143,-0.030782415,0.011039667,0.03750468,0.015315446,0.039158665,-0.056484055,-0.044027567,-0.0030378178,0.01557546,-0.019163387,-0.04879964,0.01409809,0.03645059,0.0066078007,0.0071101543,0.08971986,-0.048867427,-0.037723698,-0.06931773,-4.807865e-08,-0.0030246496,-0.04280727,-0.08351212,-0.019572593,0.035152216,-0.041530516,0.03723419,0.011574953,0.013169046,0.09113228,-0.031063838,-0.021686573,0.05860261,0.002259915,0.03237879,0.08223342,0.11398494,0.084797285,0.013770874,-0.02662339,0.068120375,-0.06397529,-0.067091085,0.02003669,-0.089441426,0.057556517,0.0066677197,-0.008313185,-0.008193468,0.0029146217,0.004028955,0.01058896,0.0023164002,-0.008113679,-0.050241742,-0.05009858,-0.011945672,0.016365845,0.03425993,0.05211049,0.05228013,0.04178906,-0.051644824,0.013310284,-0.11405541,-0.028874313,-0.009756821,-0.03048675,-0.02798127,0.06633637,-0.069214575,-0.0008142465,0.0688703,0.0039651706,0.07783426,-0.0051998086,0.09262625,0.012818891,-0.031859968,-0.01555811,-0.039911665,0.083865985,0.05069202,-0.023565723} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.074539+00 2026-01-30 02:01:11.26055+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1929 google ChZDSUhNMG9nS0VJQ0FnSUN3N2RlZFRnEAE 1 t 1932 Go Karts Mar Menor unknown Vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque parezca poco, luego una vez estás en ello te parece justo vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque parezca poco, luego una vez estás en ello te parece justo 4 2019-02-01 01:52:39.833374+00 es v5.1 V1.01 {V1.01,V3.01} V+ I3 CR-N {} {"V1.01": "Vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque "} {0.025022525,0.027821748,-0.027322682,-0.08146564,-0.10449684,-0.018862529,0.05173923,-0.0047743614,-0.01935655,0.011141038,0.055151705,-0.017468683,-0.06269585,0.0022350128,0.0026094986,0.036466654,0.029521272,0.022431672,0.01736273,0.0005218147,0.010443038,-0.13454637,-0.08713123,0.09436856,-0.036742758,-0.06927516,0.013996217,0.05315483,-0.03136024,-0.04666246,-0.010948768,-0.035409477,0.15004472,0.005593592,0.009938584,-0.051750816,0.0777895,-0.042013664,-0.04947732,0.040763937,-0.06057699,-0.023322117,-0.035159644,-0.030677075,-0.014758619,-0.002017883,0.10415624,0.07514265,0.016345458,-0.03987623,0.011969454,0.035447605,-0.06539666,-0.040463354,-0.10063308,0.044833183,-0.0542022,0.02178721,0.0067687156,0.05565577,0.03035666,0.023310225,-0.07338522,0.022569047,0.01403342,-0.0072630504,0.036908366,-0.017116185,-0.06565846,0.103972286,0.110751905,-0.07073274,0.05658453,0.0034121738,-0.072226755,0.08185804,0.07646047,0.022541331,-0.020359538,-0.03798533,0.022620946,0.0012629034,-0.019153876,-0.0426188,-0.012854007,-0.013436164,-0.039729178,-0.044396292,0.039824024,0.0033086017,0.042249832,0.06826182,-0.060344208,0.0047184695,-0.001157486,0.09520206,0.0052000643,-0.073360965,0.028245702,-0.0024240697,0.09490321,0.020753806,0.06631179,-0.0039050733,0.04133976,0.055365257,0.033250734,-0.017297365,0.013951167,0.05224246,-0.023329945,-0.009098267,-0.021913733,0.04306791,-0.111298025,-0.067489065,0.000498384,-0.044261944,-0.047363136,-0.04377243,-0.040196896,0.044664733,0.013259407,-0.016476728,0.04688408,-0.10511966,0.0028968218,1.3362948e-32,-0.0155509515,-0.04258388,0.04171954,0.01794983,-0.07542858,0.061921496,-0.010393638,-0.002578466,-0.06137378,0.042650443,-0.039636884,-0.04609873,0.0137939425,-0.030998364,0.021618137,0.05352079,0.04110574,-0.00056175934,0.10717283,0.04914501,-0.10945185,-0.031675346,-0.033256028,-0.01572188,0.025669565,0.12629735,-0.08012051,-0.057871316,-0.019309646,0.055163007,-0.008803858,0.07996808,0.021583213,-0.04124381,-0.056803074,-0.03279747,0.034558337,0.042758536,-0.027664281,-0.051508203,-0.018937565,0.030786557,-0.033708125,0.015367252,-0.0013259841,-0.070435874,-0.0011679308,0.05037751,0.030761022,0.034857262,-0.054910567,-0.11022497,-0.09476148,-0.057606876,0.033196557,-0.02970213,-0.08817189,0.06594135,0.04452441,-0.059283443,0.022829233,0.07684529,-0.04445136,-0.0063646305,0.004676766,-0.044534322,0.048823815,0.03409733,0.0897159,0.030739471,-0.024052775,-0.07814813,-0.045175727,-0.040499687,0.013556062,-0.029983751,0.004007635,-0.0075768717,0.03605484,0.030523516,-0.054733787,-0.007439599,0.1190712,-0.019321933,0.09516784,0.09396295,0.070051596,-0.012876619,0.0239883,0.093389496,0.025869032,0.05663806,-0.03545882,-0.0255854,0.052188892,-1.2653553e-32,-0.0035768051,0.020479567,-0.03875882,0.023815261,0.010658941,0.023329815,-0.054616503,-0.04571514,-0.008294485,-0.02896233,0.02427664,-0.13766052,0.077301666,-0.026426036,-0.0002960983,0.095468774,0.0030507138,-0.1359423,-0.07052917,-0.042086318,-0.031282593,-0.008614751,0.052096147,0.05383036,-0.013977003,-0.13836502,0.00014355771,0.031661496,-0.071600415,0.0034723093,0.026320107,-0.016293256,0.032596316,0.076157585,-0.036307,-0.0069144773,0.006684649,0.0779405,0.06483783,0.014626494,-0.011483712,0.031505704,-0.016883945,-0.014947279,-0.065843225,0.0063947686,0.021490218,-0.106583595,-0.012256091,-0.022389391,0.07613858,-0.04019318,-0.034272853,-0.012564107,0.052776843,0.00444053,-0.065047316,-0.06765467,-0.10470099,0.0098682325,0.056348875,-0.013764313,-0.004456985,-0.02065077,0.1020959,0.017488183,-0.042429764,0.06250605,0.0043777726,0.0014661859,0.08508565,-0.031191297,-0.14617816,0.0011831758,-0.07156396,-0.013430363,-0.08869628,0.01594825,0.024841476,0.012844399,-0.032058783,0.03425173,0.011186048,-0.026702506,0.004106659,-0.037168227,-0.0046978835,0.08705388,0.019266088,0.12170037,0.063031554,0.048888903,-0.011888618,-0.067092545,-0.022616524,-4.4080938e-08,0.013759796,-0.05551528,-0.018391972,0.035802938,0.038727634,0.038830966,0.0039020875,0.024384426,0.036383342,0.06808751,0.006584402,-0.02154899,-0.06286824,0.0008714256,0.015735034,0.032686412,0.06764451,-0.04031975,-0.029206304,-0.033587538,0.051085323,0.011396197,-0.08146751,-0.0070525645,0.08146255,0.019461008,-0.0755592,-0.042119443,0.0070094434,0.05294874,0.015266872,-0.034466766,-0.0059284545,-0.104717664,0.018098703,0.011388919,0.04832022,-0.018092157,-0.019811226,-0.037784517,0.05990311,0.014800973,-0.045439657,-0.016409868,-0.072727196,-0.032399654,-0.05325464,0.0036342957,-0.00426905,0.031859916,-0.083986074,-0.014318337,0.031699102,0.051774252,0.05990436,-0.065235324,0.02967566,0.050008945,-0.013202615,0.0021740468,0.06896092,0.113580205,0.023410296,-0.0072726705} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:25.101841+00 2026-01-30 02:01:11.266758+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1932 google ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB 1 t 1935 Go Karts Mar Menor unknown La pista muy buena pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber pagado 30 pavos por 10 minutos me he tirado toda la sesion esquivando karts NUNCA MAS VOY A PASAR POR ALLI!!!!!!!! la pista muy buena pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber pagado 30 pavos por 10 minutos me he tirado toda la sesion esquivando karts nunca mas voy a pasar por alli!!!!!!!! 1 2020-02-01 01:52:39.833374+00 es v5.1 R1.02 {J3.01,E4.01} V- I3 CR-N {} {"O1.02": "La pista muy buena", "R1.02": "pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber p", "V4.03": "NUNCA MAS VOY A PASAR POR ALLI!!!!!!!!"} {-0.021154298,0.03350818,-0.008492811,-0.083457135,-0.101222984,0.050169256,0.009124249,0.01262554,0.0060228854,0.0386797,0.013957353,-0.0025222187,-0.024958638,-0.0142278485,-0.0151929315,-0.024913711,-0.065788575,0.03601025,-0.0194391,0.006449254,0.0658152,-0.03427172,-0.069277056,0.054543518,-0.0790131,-0.00037422223,0.03611955,-0.017424757,-0.03523595,-0.075931445,-0.019320078,0.032301903,0.01605498,-0.022427585,-0.030759372,0.025807979,-0.035789296,-0.08070725,-0.02790132,0.008329154,-0.015861776,-0.031752832,-0.04970215,0.0021704559,0.02359504,-0.04183009,-0.035567638,0.038837053,0.051726226,-0.052622695,-0.048215244,0.0025759651,-0.013814507,-0.044969723,-0.036499795,-0.063656844,-0.03692901,0.07427843,0.11412528,0.07928539,0.002830462,0.079249345,-0.0760271,0.029363113,-0.04474924,-0.054733016,0.0128133595,-0.017495548,-0.09772939,0.14208318,0.084623724,-0.030820154,-0.014886277,0.06141246,-0.0006403737,-0.009336912,-0.06034456,-0.0815164,-0.08735532,0.004734138,0.029291939,-0.050463133,-0.008861796,-0.05768182,-0.026251812,-0.030098619,-0.020471856,0.09123434,0.075401716,-0.051252954,0.023962174,0.083194174,-0.08051592,-0.066293634,-0.013620139,0.054532282,-0.02719631,-0.021352623,-0.027388552,-0.007417383,0.13222696,0.0038892927,0.062150463,-0.0007289122,-0.024715625,0.027218312,0.08900228,0.044964347,-0.001123478,0.040762916,-0.024053302,-0.0014150089,-0.051695585,-0.06676427,-0.019460712,0.010287773,-0.007300935,-0.009915246,0.013224456,-0.018526474,0.035762433,-0.0026288186,-0.016165571,-0.005300361,0.04017279,-0.11220478,-0.01497171,1.0622848e-32,-0.057616092,0.013000769,-0.01806787,0.059326984,-0.012413526,-0.08149491,0.01761855,-0.09385737,-0.1055953,0.020300386,-0.021817021,0.013380995,-0.029758997,0.047386497,0.054707244,0.08350414,0.045255896,-0.010155269,-0.02385905,-0.016458075,-0.01961462,-0.06518867,0.027995275,0.052612692,-0.006386633,0.095487416,0.047666635,-0.07681141,-0.043376304,0.030885017,-0.038881905,0.07915176,0.0067408816,-0.022489151,-0.031724624,-0.020326681,0.042531967,-0.0006764786,-0.05681479,0.020847661,0.034643378,-0.02294052,-0.06786843,0.043166477,-0.06888443,0.028900627,0.018606886,0.028436407,0.058824547,0.017908802,-0.07869305,-0.04875189,-0.04348278,0.024967782,0.02497816,-0.01039498,-0.005242059,0.018600633,-0.02933916,0.020275531,0.08306291,-0.023869582,0.041859556,-0.04541719,-0.07492964,-0.07095017,-0.0075372225,0.032158747,0.10282454,0.07260172,-0.026912719,-0.04043354,-0.0132013,-0.030963844,0.11941763,-0.008091819,0.0073400834,0.11070513,-0.076986656,0.07297927,-0.014545398,-0.052413657,-0.015882436,0.01792832,0.048998054,0.09470039,0.09101123,0.022318317,-0.050631803,0.09197242,-0.017694043,0.018279418,0.06864705,-0.028795682,0.005712476,-1.1842566e-32,0.03520058,0.057666782,0.06517196,0.05554945,0.00505178,-0.016548626,0.027855271,0.05611676,-0.0069805514,-0.029750424,-0.045726176,-0.09122294,0.09321988,-0.05091261,-0.024386201,0.07121848,0.09402425,-0.044469666,-0.0161616,-0.0013309271,0.0005633592,0.07166277,0.043051314,0.016489781,-0.025440978,-0.05810308,-0.004812029,-0.022253802,-0.08448834,-0.0342366,0.0064546443,-0.10359321,0.013621778,0.060466122,-0.08627893,0.010886795,0.100006804,0.09514272,-0.029606307,0.07508843,0.021659728,0.074586734,-0.05076169,-0.01870701,-0.03966703,-0.058057692,0.1052235,-0.13526031,-0.055749983,-0.06457867,0.09991521,-0.035802066,-0.025664676,0.008876673,0.0285554,-0.052372508,-0.007759313,-0.038617626,-0.10860539,-0.045404963,0.009663165,0.018559512,-0.008310909,0.018197885,0.12665656,0.030945685,-0.0123142535,-0.061196204,-0.008130192,-0.002461173,-0.047342338,-0.013467632,-0.05618891,0.08448159,-0.022188047,-0.031124527,-0.06739787,0.023757195,0.043486223,0.019075658,-0.033479102,-0.024065338,-0.03618793,-0.046462182,0.012972382,-0.0122633325,-0.013442358,0.021637896,0.08019257,0.064205326,0.040364522,0.0948914,0.014125902,-0.008018315,-0.004998476,-4.6242945e-08,0.032609344,0.0315992,-0.11248012,0.0010499973,0.022376973,-0.006396216,-0.016511323,-0.018539988,-0.024683744,0.06033355,0.027111495,-0.05198937,0.059903823,0.0061950414,-0.0054622525,0.013717076,0.047871236,0.081542216,0.00081860303,-0.029202217,0.069857456,0.037854947,-0.024667324,0.0026719556,-0.024478888,0.04793303,-0.024909662,0.017418401,0.0024796715,-0.009591413,-0.04383865,0.013592611,-0.119644165,-0.09914507,-0.009984472,-0.028188951,-0.014751258,0.05169042,-0.019833766,0.04984348,0.034256358,-0.07282511,-0.12802851,0.02709877,-0.051365115,-0.008667537,-0.12037093,-0.083628,0.009332339,0.024943724,-0.07454634,0.050682243,0.02640572,-0.01901727,0.04915396,-0.04399905,0.07696751,-0.001511143,-0.08220993,-0.024954282,0.020765385,0.063448474,-0.008119913,-0.079920605} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.070241+00 2026-01-30 02:01:11.277726+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1934 google ChdDSUhNMG9nS0VJQ0FnSURwck0yQzlnRRAB 1 t 1937 Go Karts Mar Menor unknown Buen circuito y buena organización. buen circuito y buena organización. 4 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {J2.01} V+ I2 CR-N {} {"O1.02": "Buen circuito y buena organización."} {-0.0054686656,0.022257276,-0.02920848,-0.060056165,-0.06653264,0.012068196,0.019990325,0.055298056,0.009002802,0.019169938,0.038253363,0.011323967,0.018319756,-0.0129400855,0.025375554,0.040143143,-0.04961004,0.034297995,0.0093471715,-0.036150645,0.093120515,-0.025053507,-0.04359697,0.0967884,-0.06308498,0.0072904103,0.022584524,-0.005804634,-0.031547293,-0.13737635,-0.048317794,0.05875661,0.10374927,-0.016326632,-0.07452461,-0.030272339,0.05643812,-0.02214349,0.004044962,0.011938538,-0.0963743,-0.07972076,0.007319367,-0.077051535,0.038302775,-0.07599026,0.032632157,-0.009315496,0.07009435,-0.0959971,0.037835773,-0.04845736,0.02219496,0.09090032,-0.024258466,0.07322255,-0.033210523,0.0069620567,0.047353897,0.039494004,0.030504592,0.020969803,-0.046231635,0.012926289,0.0031053028,-0.022280864,0.0030371519,0.05412592,-0.06564836,-0.06310525,0.123901375,-0.11956273,0.03671146,0.0126617355,0.011049873,0.023723772,-0.045279387,0.039433222,0.036316786,-0.034437265,0.07525881,-0.024662625,-0.06388289,0.02473313,0.004371429,0.026320511,-0.017629715,-0.0058846488,-0.0057431273,-0.03127488,-0.042744923,0.04345909,-0.01861349,-0.023861976,-0.046722304,-0.03153291,0.03358336,-0.08252174,0.07486284,0.08159665,0.06521574,0.025207067,0.07209342,-0.01777884,-0.04561789,0.02205241,0.030617911,0.083394036,0.10103008,-0.044568405,-0.07381888,0.008531943,-0.0734881,-0.008307034,-0.0011921995,-0.0045505567,0.0066591343,0.032298177,0.010970337,-0.09874935,0.013762923,0.023839071,-0.0629828,-0.02069365,0.01660238,-0.02554967,0.02841813,5.1430233e-34,-0.05351127,0.026818678,-0.031000268,0.055750262,0.015157325,0.059826795,-0.037123688,0.058323435,-0.0031228007,-0.0012027292,-0.07540435,0.09268946,-0.005266751,0.023910495,0.16009226,-0.06717805,-0.07234575,-0.00094669394,0.112679884,-0.008528973,-0.05987253,-0.035727374,-0.018341873,0.11987326,0.06541593,0.021560429,-4.7096946e-05,-0.036406264,0.0075227465,0.026078165,0.053311612,0.07474444,0.041962963,-0.036632434,-0.045417752,0.0071738316,0.047585282,0.019649519,0.03707066,-0.0102763,0.006038175,-0.0067835213,-0.053551007,0.020186214,0.012658794,0.0011208836,0.033248942,0.061753906,0.12084114,0.06360292,-0.102475025,-0.038753767,-0.004839979,0.007243876,0.043543287,0.046572257,-0.049575478,0.067440435,0.016767075,0.00059724634,-0.0067261104,0.101501554,-0.046566006,-0.026634095,-0.07461225,0.05282195,0.053200994,-0.05652491,0.10624675,-0.051931188,-0.09747597,-0.016917821,-0.04854715,0.0025151223,-0.008830167,0.015907438,-0.096622266,0.023460003,0.01633354,0.0263413,-0.1339448,-0.029789641,0.010489703,0.07649842,0.11516477,0.09097146,0.060498215,0.014137876,-0.041823246,0.09824282,-0.023099719,0.078845695,0.07733433,0.06158937,0.07093244,-1.8255978e-33,-0.0030830337,-0.06304898,0.024209434,0.041474096,0.043108515,0.01875941,-0.049634013,-0.06422474,-0.072047256,-0.044751525,-0.0061476277,-0.08719176,0.10059729,0.008625504,-0.019040985,-0.019978452,-0.026862934,-0.073448,-0.10390987,0.0054752715,-0.02807405,0.055038605,0.0008481,-0.005910425,-0.04236083,-0.013107331,-0.064274795,0.005047865,0.017882789,0.013731567,0.021153567,-0.03798931,-0.059600227,0.092566006,-0.06023355,0.033573013,0.04114388,0.034377705,0.008419981,-0.019452738,0.0010892141,0.041938905,-0.054555096,-0.028758952,-0.07171736,0.0134078795,0.0146831,-0.11031213,0.0033552004,-0.05138924,0.044487312,-0.03804464,-0.017685521,-0.07447579,-0.0060563255,-0.053302333,-0.008273335,-0.014454706,-0.03250852,-0.02600565,0.059616253,-0.0057075475,-0.0067402152,0.012571659,0.053820822,0.021822808,0.038857106,0.086608425,0.035913777,-0.0051388503,0.10782569,-0.007138121,0.025566148,0.025651881,-0.09313744,-0.058516234,-0.098947555,-0.05661765,-0.031078218,-0.056000687,0.017868487,-0.005800109,-0.009033959,-0.10234884,-0.0433044,-0.0154733285,0.05467527,-0.029259672,-0.00022275651,0.02169262,-0.07576001,0.06143487,-0.0920522,-0.020812536,-0.0361395,-2.0966876e-08,0.014719696,0.0003604594,-0.018859247,-0.020047959,0.045723654,-0.0910645,0.0074484376,0.025927896,-0.01765646,0.021806832,0.016466847,-0.008537804,-0.034025114,0.08720025,0.03066995,0.026634706,0.01905368,0.11683681,0.0022693072,-0.044947475,0.047288224,-5.0012826e-05,-0.054477036,0.03564311,0.08444888,-0.047528014,-0.010803507,0.060072143,0.01087552,-0.017637908,0.006713912,0.04491253,-0.023747148,-0.03269752,0.07434919,0.019256074,-0.035673466,-0.028171195,0.009363739,-0.0757245,0.0023433405,-0.068714686,-0.067657895,-0.020695403,0.037120335,-0.106373675,0.035134163,0.048656743,0.011940316,0.01259485,-0.044496562,-0.032048896,0.01903102,0.02040101,0.032914147,-0.009579796,0.05093707,-0.017905423,-0.02137843,0.0029802094,-0.005259934,0.036627796,0.06812384,-0.11835107} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.100374+00 2026-01-30 02:01:11.28356+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1939 google Ci9DQUlRQUNvZENodHljRjlvT2xCNGRXUXllSGxLT1hWeVFsRk1Tams1UkUxeGRHYxAB 1 t 1942 Go Karts Mar Menor unknown Muy buena experiencia muy buena experiencia 5 2025-11-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy buena experiencia"} {-0.0014759873,0.0042654453,0.055260915,-0.013161095,-0.049639277,-0.018502163,0.1372539,-0.009635456,0.0070378394,-0.0173675,0.121229,-0.026894215,-0.01947336,-0.004900977,0.02386933,0.043059185,0.014203311,-0.013831777,-0.0063001,-0.033648327,0.05012121,-0.027416842,-0.070646375,0.047008187,-0.056590594,-0.03570156,-0.014421809,0.012415985,0.010927587,-0.05028333,0.014509654,0.07931411,0.11116285,-1.2712608e-05,-0.022687955,0.033284064,0.051798634,-0.02891766,0.0150137525,0.047867626,-0.12210725,-0.03890004,0.0035611284,-0.060208797,0.001552929,-0.11997107,0.07275804,0.043456588,0.05456872,-0.039324287,-0.04479432,0.038235895,-0.029583838,0.012180954,0.06648356,0.042852733,-0.02172623,-0.02594945,-0.004804726,0.0060430076,-0.027642725,0.062438697,-0.021907786,-0.00865409,0.04736992,-0.041867048,0.017928861,0.057604138,-0.057492793,-0.046807986,0.041473195,-0.09558458,-0.0023559849,0.04607579,-0.05933412,-0.0062655504,-0.0026782614,0.015283484,0.024579553,0.0002712735,-0.008935237,-0.02357506,-0.046942085,-0.011488985,0.010713548,0.0035552448,-0.013671616,-0.035999782,0.024089834,0.026499221,-0.055572703,0.011621718,-0.098557465,0.019517228,0.008272268,-0.004697515,-0.003662377,-0.095754795,-0.07100175,0.17088112,0.026777739,0.08526297,0.11048625,0.018239938,-0.026580805,0.038728446,0.04196575,-0.008956899,0.028319959,0.017818183,-0.034413937,-0.062979266,-0.07283548,-0.014862369,0.0012174768,0.021674128,-0.015738793,0.037253156,-0.025109675,-0.110056974,0.029895747,0.07163461,-0.069469936,-0.0016665107,-0.025047367,-0.04666856,0.04714056,2.1795744e-33,-0.0055549913,-0.04097709,0.059354503,0.10795128,0.019997284,0.054898426,0.005976847,0.030663684,-0.042731438,-0.055786725,0.028809287,0.050772943,0.022302544,-0.0027022278,0.07124672,0.082156375,-0.05259243,0.0033814327,-0.020806072,0.010553117,-0.032920573,-0.042520933,-0.049943138,0.0020047077,-0.03334392,-0.007867106,-0.0027789366,-0.035925653,0.067368895,0.051035415,0.015365046,0.084110335,0.0038013463,-0.0880639,0.00037567396,0.0016337306,0.021487385,0.0039900783,0.024196714,-0.022977067,-0.01980537,0.023333129,0.0007595769,-0.015187338,-0.0065409136,0.052372653,0.09700422,0.011868518,0.018962733,0.034584973,-0.031632274,-0.09931505,-0.07353087,0.052096263,-0.014982734,0.0143559305,-0.03470722,0.09028742,-0.002860183,-0.09987067,0.07704976,-0.0283479,0.024835287,-0.111854285,-0.086453,-0.03174104,0.020949498,0.044751972,0.1322822,0.036424518,-0.10927389,0.032925233,-0.05703327,-0.0030167303,-0.0050566234,-0.010561175,-0.030136447,-0.033064175,0.1023458,0.055643488,-0.07115853,0.024445973,0.034420017,0.083203666,0.06591159,0.09172072,0.04009134,0.035786584,-0.03707395,0.13024212,-0.09710277,0.06694374,0.06883474,0.0055541685,0.0040775468,-3.1613763e-33,0.028461771,-0.042199165,0.018578624,0.041118514,0.04661067,-0.02677574,-0.00034663206,0.03237929,-0.071406804,-0.054160476,-0.047644712,-0.11793435,0.14362615,0.034808632,0.02403371,0.08046994,0.055179868,-0.022550689,-0.07883311,-0.016151182,0.035356633,0.0515792,0.09251175,-0.005912595,-0.03421081,-0.025468294,-0.039912276,-0.013641447,-0.08661875,-0.0514111,0.018752933,-0.027725292,-0.09687175,0.048287995,-0.07348217,0.05329018,0.0507217,0.008461548,-0.05731569,0.053308897,0.038349897,0.044109557,-0.029245222,0.056553993,-0.02415332,0.048388597,-0.0012609193,-0.1270677,0.009926147,-0.021808103,0.020678667,-0.011887961,-0.079598814,-0.005906791,-0.043696847,-0.060048487,-0.011736629,-0.0154341515,-0.12320877,-0.00914961,0.020564755,0.014321896,-0.08386262,0.029767416,0.04529116,-0.040701285,0.00631839,0.08934661,-0.045565903,-0.004027298,0.049860887,-0.022601401,-0.054171067,-0.00044633166,-0.02394956,-0.025922958,-0.05373086,-0.107301705,-0.014994129,-0.01019848,-0.01568913,-0.021558385,-0.0321229,-0.05244236,-0.08624258,0.026347945,-0.015255043,-0.007378825,0.04604365,0.055214852,-0.032845344,0.035979003,-0.079617456,-0.09635863,-0.008900809,-1.9285958e-08,-0.01706792,-0.027694691,0.043893106,-0.023982938,-0.01017563,-0.030557176,-0.061170526,0.11658504,0.020433173,0.02113633,-0.039446052,0.021542303,-0.03047058,0.056140896,-0.005789023,0.01391695,0.13271345,0.083245434,-0.017734993,-0.07126543,0.032599054,0.007812581,-0.060306188,0.07562183,-0.012125633,-0.02032749,-0.066956885,0.010071076,-0.044164114,0.016859856,-0.016544096,0.057882886,0.003806522,-0.10360789,-0.04437822,-0.049710054,-0.03224509,-0.08417688,-0.0009977424,-0.016017515,0.06576471,-0.007209896,-0.0030722097,-0.015432289,0.016463788,-0.033553988,0.05634595,-0.016028807,0.0014841935,0.015888548,0.026789391,-0.01584416,0.047864947,0.08001886,0.0015783604,-0.068133704,0.012597222,0.054838616,0.04543278,-0.042298045,0.038802363,0.054843612,0.020718794,-0.06609873} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.165856+00 2026-01-30 02:01:11.299269+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1941 google ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB 1 t 1944 Go Karts Mar Menor unknown Muy divertido. Amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). Hierba. Bien organizados. Hay Karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años para que te dejen subir. Hablan idiomas.\nHay ranking de vuelta rápida automático por el número del kart en una pantalla para cada carrera. También lo pueden imprimir. Procuran no mezclar tipos de karts. No atascan la pista con demasiados coches a la vez. muy divertido. amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). hierba. bien organizados. hay karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años para que te dejen subir. hablan idiomas. hay ranking de vuelta rápida automático por el número del kart en una pantalla para cada carrera. también lo pueden imprimir. procuran no mezclar tipos de karts. no atascan la pista con demasiados coches a la vez. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.02 {J2.01} V+ I2 CR-N {} {"O1.02": "Muy divertido. Amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). Hierba. Bien organ", "O3.02": "Hay Karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años"} {-0.04529998,0.055055935,-0.011532288,-0.04143436,-0.1379301,-0.008466776,0.006640923,0.14432561,0.0026413135,0.013214357,0.07580248,-0.044013225,-0.025295194,-0.012642867,-0.041143727,-0.054360524,0.003213266,0.015042271,-0.007107602,0.007966111,0.02441489,-0.025246795,-0.05170129,0.108969994,-0.09007401,-0.023330206,-0.01954332,0.026596835,-0.037805628,-0.11773528,-0.049389392,0.060767774,-0.010200074,-0.046538223,0.03810674,-0.023075314,-0.08636522,-0.013778379,0.0030493718,0.07308458,0.0456572,-0.020084899,-0.05645563,0.018204808,-0.0009299677,-0.0068607694,-0.0739868,0.040413033,0.030307999,0.02153404,-0.10390415,-0.025769541,-0.02025931,-0.035299372,-0.040416647,-0.09514834,-0.13204548,0.001572432,0.11685464,0.03968882,0.021867946,0.041220397,-0.020907342,-0.011017477,-0.031679753,-0.08226009,0.032691676,0.012544963,-0.06199015,0.124838606,0.11803535,-0.032729376,-0.0831987,0.0027578827,0.026297113,-0.007723945,-0.0053448793,-0.01063443,-0.13544516,-0.053297047,-0.012493825,-0.0054420093,-0.017614437,-0.098069325,-0.03623852,-0.0010594578,-0.031245677,0.056675296,-0.0004004542,-0.047484465,-0.0074459277,0.06371112,-0.100406505,-0.057467755,0.021655211,0.047897894,-0.034627493,-0.12642701,0.05984381,-0.031716492,0.11971695,-0.01746923,0.031362925,-0.003088583,-0.095750384,0.013842031,0.044892993,-0.03743527,-0.004333902,0.032004055,-0.035022274,0.005196288,-0.019389503,-0.08362737,-0.12358449,0.01303534,-0.027301388,-0.07562955,0.0077667115,-0.009243596,-0.02066135,-0.03236957,0.00072942965,0.02199005,0.035076674,-0.010101644,0.0136885485,1.378363e-32,-0.09454939,-0.017091382,-0.036080092,0.030760575,-0.043268457,-0.07850385,-0.04013592,-0.12146555,-0.08441692,-0.04204856,-0.063478515,0.039604,-0.022277841,0.0016698531,0.042774916,-0.02668945,0.07261481,-0.011957489,-0.05728315,-0.0050176196,-0.004869666,-0.0025637685,-0.011025095,0.05868586,0.01101672,0.046209153,0.011571364,-0.05046348,-0.09337911,0.029193215,-0.013635882,-0.0029449712,-0.020673307,0.010616281,-0.058629856,-0.024153741,-0.04906729,0.00041631618,-0.041809004,0.020205671,0.014996003,-0.030171296,-0.005566122,0.12019345,0.00265107,0.03657691,0.019818222,0.022320459,0.04405756,0.028393196,-0.025406739,-0.019884389,0.006248737,-0.0077290917,0.009762464,0.043420527,-0.040939298,0.022797754,-0.04683413,0.002602933,0.023165574,0.02591083,-0.03416468,-0.026889572,-0.053829506,-0.05371552,0.0033583043,0.07965067,0.15992077,0.03826875,-0.11948142,-0.02907853,-0.0409989,0.07822602,0.05570097,0.044977095,0.0131831225,0.076817036,0.009243589,0.03738251,-0.035416033,0.032517944,0.012379806,-0.011470996,0.10886329,0.02332315,0.047299776,0.043005418,-0.015626077,0.10623673,0.012401484,0.07322978,-0.00097306864,-0.029025914,0.021273829,-1.4289486e-32,0.07991802,0.057123546,0.066108644,0.11585782,-0.011615477,-0.002103003,0.042249966,-0.022768194,-0.023694167,-0.08910352,-0.064078994,-0.011672226,0.10162164,-0.061679177,0.025785996,0.06702858,0.018906638,-0.009157158,-0.048790168,-0.07423232,-0.08539272,0.03574207,0.0339261,-0.03838441,-0.059289698,-0.024573103,-0.047845334,-0.023610864,-0.113641284,0.06248241,0.00940226,-0.040671017,-0.019246873,0.033583693,-0.06683532,0.01748845,0.049034055,0.029664593,-0.034286026,0.06516354,-0.013301562,0.020657783,0.029899506,-0.013656017,-0.025215648,-0.008300167,0.07585494,-0.09117532,-0.0286217,-0.0058144177,0.088129334,0.020322176,0.05797688,0.00036217037,0.09536853,-0.05389616,0.024260303,-0.038548004,-0.08943154,0.022623833,0.08080883,-0.033525806,-0.0060148314,-0.049108274,0.082056865,-0.006507276,-0.008779083,-0.057687063,-0.013279972,0.03913549,0.035077438,0.046141513,-0.035574432,-0.016763981,-0.0068907514,0.025367972,-0.057997704,0.07068611,0.010772115,0.008133875,-0.06883048,-0.026824486,-0.02365712,0.009847593,-0.0059020645,0.011531975,-0.039727837,-0.030923309,0.05036309,0.012242563,0.047309328,0.0037214265,0.051225126,0.006987583,0.012888026,-5.8320445e-08,0.05340922,0.04146286,-0.058970425,0.027615512,0.041185733,-0.009911417,-0.047176383,0.038240075,-0.03057025,0.068036936,-0.03705974,-0.02747613,0.059689928,0.054500632,0.02913545,0.036774755,0.09197135,0.16437301,-0.010448154,-0.018975852,0.038356915,0.025549712,-0.026341913,0.018639755,-0.044524346,0.005428669,0.030419992,0.013227511,0.0052837674,-0.06293161,0.03934663,-0.04713911,-0.020708064,-0.029183678,0.008859618,0.008930099,-0.027624898,0.10228783,0.023951668,0.044972245,0.028073248,-0.014000973,-0.101469964,0.008907262,-0.082579754,0.004377791,-0.029729504,0.0081531415,-0.038050335,0.0016153082,-0.05458895,0.03616024,0.054385364,0.03456894,0.027544307,0.028648017,0.070833124,0.020938562,-0.052320477,-0.04412321,0.023732817,0.08863209,-0.0025606349,-0.036115993} 1 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.19672+00 2026-01-30 02:01:11.30627+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1944 google Ci9DQUlRQUNvZENodHljRjlvT205WWVVdzFYM0J3YkcxSFNHNWpOMmszY21wSlZHYxAB 1 t 1947 Go Karts Mar Menor unknown Lastig om een heat te boeken in het weekend lastig om een heat te boeken in het weekend 3 2025-07-04 00:52:39.833374+00 nl v5.1 A1.02 {} V- I2 CR-N {} {"A1.02": "Lastig om een heat te boeken in het weekend"} {-0.11345329,0.087757975,0.024137415,-0.009157518,-0.026794937,0.020651989,0.078168415,0.04547464,0.022869019,-0.014304778,-0.067727,-0.07510301,-0.06272718,-0.02252281,0.02390789,-0.08387145,-0.046181995,0.008582492,0.008789475,-0.061383866,0.002669551,0.011239412,0.0211662,-0.0039489367,-0.026606359,-0.019983428,0.047579736,0.052999713,0.049296696,-0.026524391,0.061599094,0.016307002,-0.09508089,0.032810044,-0.027966736,-0.01447361,-0.036219638,-0.10762546,-0.0053947037,0.08584775,-3.2772852e-05,-0.03853999,-0.113787934,-0.0798569,0.07979182,0.017853769,-0.010312531,-0.035997014,-0.044984054,-0.014029449,0.021871693,-0.05994655,0.037227042,0.04544639,0.062509894,0.054817688,-0.0036519864,0.04025718,0.03790151,-0.008628509,0.07431113,0.017228058,-0.088190496,-0.04957528,-0.008433928,-0.05158788,0.02543533,0.043589205,-0.05623989,0.055755757,0.032937195,-0.06873723,-0.050487883,-0.016679512,-0.012979873,0.099843524,-0.05558717,-0.01591794,0.020572782,-0.055993237,0.082434155,-0.07626467,0.028294738,-0.0008183689,-0.04130954,-0.0009512327,0.02803146,-0.006732734,0.032544103,-0.027217196,0.017922351,0.019111367,-0.09567184,-0.0052159713,0.035780266,-0.011619052,0.027518203,0.04550813,0.050527997,0.090478525,-0.0029959313,0.010686518,0.044373564,0.059242167,-0.051586173,-0.0049425033,0.072854474,-0.044753376,0.077216685,-0.026467275,-0.08235493,-0.04599524,0.029768625,-0.12338769,0.00018882043,0.013467448,-0.01673816,0.002114369,0.015652962,0.006716619,-0.0016719735,0.044165473,-0.024741929,0.10341441,0.045858126,0.0302105,0.067048155,1.6398503e-33,0.01729185,-0.02434044,-0.05008772,0.0018985826,0.02941536,0.07293429,-0.10422726,-0.029326933,-0.039402265,-0.068974204,-0.008908632,-0.04064887,-0.060542364,-0.06408148,0.027862351,0.014341919,-0.022397049,0.072885916,-0.055548333,-0.0019557166,-0.013057929,-0.05932315,-0.0033326284,0.03258685,-0.030866724,0.026373502,-0.01965407,-0.1144933,-0.042578146,0.016976953,0.042651173,-0.052142594,-0.024354436,-0.016698515,-0.09079028,-0.014805392,-0.028470097,-0.0027700635,-0.012585917,-0.0643074,0.14471613,-0.058916807,0.0037153314,0.0031398141,0.04001314,0.070498444,0.012660354,0.004573167,0.036672994,-0.035805147,-0.055569284,-0.09213855,-0.08190004,-0.015167875,0.025396548,0.07949927,0.017225599,0.0042214375,0.099602394,-0.030463027,0.05846231,0.04866619,-0.008130626,-0.061441142,-0.024123944,-0.077750966,0.0033830532,0.05765237,0.006988552,-0.06704008,0.027809452,-0.019843182,0.03263752,-0.050684538,0.036286917,0.03451376,0.03878639,-0.0066898447,0.021128569,0.06683684,-0.05016659,-0.06673491,0.030985268,-0.070389256,0.061203606,0.020080337,0.013241068,-0.061368495,0.02699396,0.111903034,-0.054360017,-0.07366287,0.0131136505,-0.051021483,0.025421917,-1.2753392e-33,0.034468874,0.03733081,-0.037142854,0.052953452,0.02717665,0.00037248,-0.03050289,0.005280539,0.028820286,-0.011104207,0.10294392,-0.120923534,0.12139486,-0.023193158,0.01777842,-0.008007835,0.033249017,-0.009676678,0.042867307,0.079891674,-0.020825267,-0.069891624,-0.02498477,0.12528218,-0.022295693,0.020784032,0.089972764,0.025261499,-0.06750673,-0.0052011255,-0.005785508,-0.0926681,-0.029064719,0.07754371,0.029167794,0.041819483,0.12534998,0.062260848,-0.02897309,-0.010735951,-0.010379097,-0.005796645,-0.065405965,0.044117864,0.017614862,-0.006103176,-0.07393589,-0.03174327,0.007820739,0.016128514,0.053777404,0.07823144,-0.10654453,-0.024081713,0.009285657,-0.05446795,0.011684839,-0.06680992,-0.08422986,0.0056896377,0.041529562,0.048085358,0.02560107,0.08979495,0.012933721,0.023045437,-0.076294,0.0235476,0.056862794,-0.055543464,-0.014550274,-0.019157073,-0.069072396,0.01096122,-0.03936234,0.01710314,0.020188358,0.059742622,0.06903812,-0.033011153,-0.122641034,0.029920798,-0.0767488,-0.014948459,-0.014803575,-0.02466092,0.017276859,0.0023028422,0.027257442,-0.0137506835,0.021908963,0.033891167,0.040997535,0.051796764,-0.02367676,-1.615004e-08,0.05859277,-0.024181096,0.057086505,0.07292181,0.09622358,-0.17390959,0.041257735,-0.09664752,-0.037345655,0.08375026,0.06247244,0.05260843,0.027376821,0.0041786674,0.04620223,0.05074062,-0.011123966,-0.037289742,0.042965204,-0.035966482,0.03851925,-0.035264753,-0.0017017885,0.023105215,0.08913474,0.080603436,-0.014094341,0.039370682,0.109986156,-0.057869572,0.047754724,0.030549174,-0.0037627257,-0.003998305,-0.020578636,-0.039743137,0.006730311,0.046667993,-0.06656659,0.0055226088,-0.008455078,-0.047923535,0.055217013,-0.07928039,-0.033969924,0.024493102,0.0074562444,-0.034510564,0.03697554,-0.0033518323,-0.08344458,-0.064020485,0.06629028,0.08462127,0.06467068,-0.015741652,0.0157563,0.0034236016,-0.015951373,0.010688184,0.033357263,0.03247706,-0.026815685,-0.0011876574} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:14:31.22904+00 2026-01-30 02:01:11.316411+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1862 google ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE 1 t 1865 Go Karts Mar Menor unknown Estupenda la experiencia. Los F 300 van muy bien. estupenda la experiencia. los f 300 van muy bien. 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"O1.02": "Los F 300 van muy bien.", "V4.03": "Estupenda la experiencia."} {0.0068565197,-0.0130921295,-0.049297296,-0.07860436,0.007123642,0.06285513,0.008288211,0.06970032,-0.03158237,0.04783572,0.025441376,0.0046193507,0.014657362,-0.043698855,0.017227756,-0.021509342,-0.048793193,-0.032452848,-0.008954794,0.035381597,0.044456854,-0.013801988,0.025564184,0.073167056,-0.07768352,-0.041230112,-0.045273304,0.019999303,-0.060068183,-0.03638484,0.0018690247,0.0802636,-0.0016232923,-0.030928554,0.01649246,0.021086603,0.01713181,-0.03886793,0.01886808,0.06110667,-0.1820807,-0.026893921,-0.03260343,-0.0779263,-0.010969629,-0.08771582,0.045947034,0.01916428,0.06311549,-0.021247283,0.045601748,0.029803777,0.06450602,-0.0019856475,0.0021272777,-0.010086987,-0.046383,0.009241849,0.044072762,0.061555263,-0.0034710735,0.07101315,-0.07184161,0.031538937,0.009887769,-0.04515658,0.05197344,-0.057719804,-0.06645835,0.050973225,0.11661765,-0.0340594,-0.05090094,-0.0013479323,0.06429958,0.039599877,0.029870834,-0.009827868,-0.04593553,-0.03813794,0.008804853,-0.011475445,-0.066520624,-0.021932395,0.004439844,-0.008325086,-0.042177804,0.05402668,0.019308627,0.0058367657,-0.07113441,0.043114483,-0.11733856,-0.02594522,0.004741476,0.08339356,-0.014311151,-0.07558563,-0.014914644,0.08732151,0.04961268,0.03820279,0.092510715,0.047894757,-0.043324232,-0.04074692,0.04771266,-0.0045160474,-0.06163658,-0.0137305,-0.022115938,-0.05220741,-0.011304756,-0.031894244,-0.07568596,-0.031255554,-0.014241574,-0.06639437,0.055942368,-0.09576933,0.07195331,0.012724717,-0.073238105,-0.00301989,0.061137676,-0.040456153,0.019452652,1.151007e-33,-0.011013043,0.017830392,0.018116513,0.08013324,-0.027994622,0.015658755,-0.006206785,0.002310926,-0.034238175,-0.036227457,-0.03663152,0.07606686,0.04982525,-0.032276858,-0.00036952394,0.020719226,-0.0011409324,0.015322738,0.03429337,0.013699545,-0.021470444,-0.046947043,0.061809342,0.062798776,0.046651773,0.036578786,0.013418377,-0.026640138,-0.080364555,0.054475468,-0.017758168,0.040278394,-0.020269172,-0.048536047,-0.009133117,-0.0061833095,0.08477803,0.005437279,-0.0016380978,0.0035500915,0.058077723,0.061704475,-0.0813663,-0.028644377,-0.010827631,0.11502809,0.051304214,0.047253042,0.046291534,0.026461324,0.019750189,-0.059720665,-0.10264873,-0.0476699,-0.0069608977,0.03735228,-0.086726494,0.04627231,-0.015605342,-0.019401819,0.036491424,0.0031434882,0.036095064,-0.011989604,-0.01920042,-0.01846273,0.056443054,0.053840563,0.11690392,0.072067134,-0.089751214,-0.046981435,0.031805422,-0.031061225,0.073423795,0.050925385,-0.06690771,-0.0014537905,0.075169414,-0.026768435,-0.11660939,-0.03798145,-0.005910174,0.020374417,0.059224434,0.063586414,0.012863391,0.01924064,-0.0056999805,0.047449503,-0.017345794,0.008145609,0.07510363,-0.01088476,-0.015854122,-2.5879744e-33,0.0055714897,0.030390546,0.03691247,0.030315675,-0.0036715802,0.02511435,-0.025164686,0.03417241,-0.057136472,-0.025393719,-0.04351429,-0.13727938,0.09944674,-0.052422944,-0.045723792,0.039088648,0.04517799,-0.07056488,-0.032659262,0.024035348,0.021948582,0.011081567,0.038682267,0.03573611,-0.07649085,-0.033150956,-0.108330995,0.023781361,-0.084821016,-0.08752358,0.00057151983,-0.036864255,-0.004817196,0.06501376,-0.047921814,0.055007882,0.08050773,0.06476011,0.04437242,0.0639275,0.0063866843,0.0894108,-0.06450229,0.024640415,0.021165995,-0.011196634,0.019528488,-0.15898064,0.004930237,-0.0454576,0.057629842,-0.04521723,-0.06021442,-0.012517139,0.004333287,-0.050281685,0.007550702,-0.116890326,-0.09741077,0.009973225,0.004398306,0.0807645,-0.056539543,0.06306867,0.046575557,-0.020303989,-0.03387348,-0.00022004837,0.060749315,0.048143428,0.1049421,-0.05933419,-0.036890488,0.05551814,-0.061525214,-0.035880025,-0.017168486,-0.037113506,0.062322706,0.07023103,-0.025499472,0.027491227,-0.029442199,0.026569845,-0.0018255928,0.057390068,-0.05635894,-0.03679251,0.06499697,-0.040737092,0.04451739,0.05086413,-0.05460506,-0.015989255,0.045326743,-2.2670653e-08,0.06641353,0.04949092,-0.09567563,0.039528057,0.037233002,-0.05191695,-0.03739664,0.048987422,-0.043741178,0.05197861,-0.014095237,-0.03550267,0.03187269,0.006849026,-0.00096747634,0.031632237,0.09846233,0.124902986,-0.05328324,-0.0036281273,0.027805082,0.005353141,-0.025665618,-0.022130938,0.0016678992,-0.01303506,-0.10510358,-0.033844616,0.014515274,0.014679556,-0.11535186,0.027522234,-0.057114683,-0.11552953,0.010112524,-0.03586971,-0.009778911,-0.009899887,-0.06450452,0.017576002,0.122763276,0.0055177393,-0.08214782,-0.045853227,-0.021653844,-0.076728806,-0.072391815,-0.011928282,-0.03983214,0.021116769,-0.027587656,0.013909803,0.05490604,0.09364615,4.5231198e-05,-0.023681575,-0.054666717,0.049818505,-0.0851721,-0.0421961,0.036167208,0.09584602,0.03097989,0.0030677074} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:06.189081+00 2026-01-30 02:01:10.989502+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1959 google Ci9DQUlRQUNvZENodHljRjlvT21Wa1ZsRTVPSE5MYzNKaWRXZ3llRFZHZEdoYU4wRRAB 1 t 1962 Go Karts Mar Menor unknown Cudne miejsce dla całej rodziny cudne miejsce dla całej rodziny 5 2025-09-02 00:52:39.833374+00 pl v5.1 E1.04 {} V+ I3 CR-N {} {"E1.04": "Cudne miejsce dla całej rodziny"} {-0.1243907,0.11171063,0.011834925,-0.0074585085,-0.12935616,0.075444944,0.06196376,0.1245438,0.00026931797,0.05944853,-0.022857066,0.013669875,0.02561256,0.055762563,-0.040242627,-0.02884651,-0.07321414,0.1424787,-0.044122364,0.029144052,0.054384552,-0.011992698,-0.009114882,0.00084256445,-0.020666772,-0.0028240827,0.004786241,0.041777153,0.043711662,-0.021286802,0.014614662,0.053012036,0.03687353,-0.041662347,0.020149874,-0.020645855,0.053666975,-0.07823955,-0.044984054,0.09318005,-0.009400907,0.042442437,-0.12623204,-0.00257449,0.02148255,-0.04902169,-0.031859085,0.021390665,-0.049808975,-0.031417534,-0.07411213,-0.06307703,0.034080464,-0.06986061,0.021873666,-0.020612247,0.017083518,0.052780643,0.035702113,-0.045992553,0.07871338,-0.054750264,-0.09108163,-0.016022842,0.047803212,-0.075067475,-0.03703532,0.053298127,-0.03058206,0.008402191,0.05276583,-0.01143738,-0.09324862,0.032028794,-0.10194735,0.0039445,0.0035949866,-0.0679622,-0.017146971,-0.061000485,0.04893,-0.03181544,-0.0763654,-0.04348775,0.06541627,0.013827633,0.0023754835,0.07219752,0.028514383,0.054953784,0.021636195,0.05649122,-0.08512025,-0.046202492,-0.08506396,-0.001185098,0.047970653,-0.042156156,-0.011881349,0.0804647,0.07278977,0.03840538,0.101827286,0.04417366,-0.025165098,0.009968986,0.067041814,-0.031869587,-0.022879755,-0.051622536,-0.024436152,-0.076359086,-0.08240115,-0.043510962,-0.023702038,0.0312974,0.05388788,-0.01681041,0.026489161,-0.04225215,-0.021421518,0.00018791467,-0.04022087,0.0046776896,0.047107734,0.028916214,0.06107324,4.9225644e-33,-0.08105081,-0.087381,-0.057687145,0.061139364,0.0043614786,0.037312128,-0.037674826,0.00040821065,-0.049628723,-0.00797641,0.023435794,0.033979453,0.019125143,-0.0072290828,-0.003297371,0.036039688,0.043291245,-0.059220985,-0.0137556065,0.03737151,0.034496877,-0.011945857,0.044167247,0.017565003,-0.0073435795,-0.041035607,0.023981882,-0.024500493,-0.05161189,-0.0007393336,0.04401443,-0.016431404,-0.027243808,-0.07095565,-0.0051364717,-0.01305366,-0.025962915,-0.024981543,0.007825494,-0.09620449,0.03708204,-0.108157806,-0.050140277,0.08677244,-0.033322077,0.04575085,-0.05719876,-0.0412915,0.07614437,-0.07055798,0.06944107,0.00032505888,-0.13471921,-0.019532582,-0.056950632,0.055452574,-0.003168014,0.06099932,0.050960056,-0.060742337,0.06475632,-0.019758038,0.011879648,0.00030760927,0.062038496,-0.07248241,-0.01973539,0.048366223,0.07225684,-0.04067844,-0.047871042,-0.08326608,0.032798804,0.041998,0.02037503,-0.0018602121,-0.055087056,0.006968202,0.011128933,0.0029721896,-0.05959292,0.0077480758,0.021650843,-0.03215127,0.07825433,0.030961309,0.044841282,-0.031233177,0.022571998,0.086141944,0.018219927,0.019057794,0.046666086,-0.02292472,0.047096718,-6.55035e-33,-0.00032829886,0.04402591,0.0010319978,-0.017652186,0.0067509376,-0.019362219,-0.07095153,-0.017562933,0.02679552,-0.00048171505,0.020757703,-0.19784479,0.073765896,0.05401607,-0.007250729,0.049902756,0.037780885,-0.023361314,-0.05716673,-0.049910344,-0.074508645,-0.014283744,0.048325457,0.1446132,-0.042862494,-0.031617843,0.002504672,-0.06202101,-0.046433393,0.04908519,0.017006658,-0.005589172,-0.034371827,0.05648879,-0.036035735,0.01556561,0.11303583,-0.024485428,0.02751273,0.077643275,0.022654938,0.016213274,-0.029823814,0.055278927,0.00649185,-0.016587777,0.014513415,-0.032898102,-0.09156703,-0.03663551,0.05862968,0.09362638,-0.05699145,-0.012671757,0.09005089,0.033065032,-9.052236e-06,-0.14065474,0.056071013,0.018712806,0.06539129,-0.02691879,-0.060869228,-0.028466305,0.06193153,0.03646044,-0.021577064,0.07769227,0.05327442,-0.0043603024,0.045715775,0.014812818,-0.06816433,0.020151544,-0.07321984,-0.010103326,-0.051032808,0.037724655,-0.025461223,-0.09275302,-0.025408292,-0.033102535,-0.06644478,0.026484782,0.009517329,-0.09407491,0.008595561,-0.004045832,-0.016343568,-0.010711104,0.019099198,0.061893,-0.004949339,0.039547108,0.06109994,-2.446927e-08,-0.01773283,0.004475503,-0.063778065,0.021228982,0.057077102,-0.13104956,-0.06463906,-0.0028859405,0.008747647,0.047478817,0.023753146,-0.008449906,0.007829586,0.05353638,-0.013850091,0.13399272,0.0034322115,-0.006426287,0.03070385,0.03625645,0.06453851,-0.0042549134,-0.068224356,0.0035541381,-0.065368645,0.032239266,-0.03770248,0.06540481,0.051383134,-0.047072794,0.06294831,0.030970879,-0.014460269,-0.035258725,0.027154349,0.060671724,0.051636692,-0.03706977,-0.026094805,-0.030555295,-0.019217398,0.011143274,0.063708484,0.038721133,-0.0645693,-0.031011395,0.0050520706,-0.0061232513,-0.004740477,-0.0058302744,-0.06972672,-0.04446923,0.060274094,0.012845916,0.0021879058,0.009662607,-0.021010267,0.057473414,-0.087849334,0.0013609172,0.03711068,0.040220313,0.037159733,-0.08450168} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:15:06.968098+00 2026-01-30 02:01:11.36701+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2019 google ChdDSUhNMG9nS0VJQ0FnSUNId1A3SGxRRRAB 1 t 2022 Go Karts Mar Menor unknown Adrenalina maxima! adrenalina maxima! 5 2025-01-30 01:52:39.833374+00 so v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Adrenalina maxima!"} {0.0033619152,0.0315797,-0.034728445,0.031525448,-0.09504234,-0.0023681272,0.05596476,0.03827949,-0.03418044,-0.019797875,0.06445763,-0.06510868,-0.03662714,0.009482493,-0.0394491,0.02547308,0.034172434,0.048135664,-0.012432552,0.030434925,-0.009051068,-0.007979279,-0.031167122,0.08369861,-0.045552503,0.10745438,-0.06015401,0.013116577,0.015225412,-0.056290127,-0.0034081251,-0.03205985,0.0995596,-0.02306029,0.028402904,0.032400317,-0.058562048,-0.092610516,-0.00758681,0.053652152,-0.04220158,-0.046443075,-0.11214285,-0.05687963,0.008895538,-0.070966505,-0.034260266,0.05839991,0.07077594,0.054354,-0.056833997,-0.025448924,-0.037119646,0.026427884,-0.035145693,0.016087018,-0.009717752,-0.0649263,0.010731954,0.013863869,-0.03719017,0.092010155,-0.047522742,0.023252238,0.08741311,-0.077299364,-0.019635571,0.029533245,0.016130721,0.07479748,0.079951584,-0.030668817,0.010217275,0.00967764,-0.023218801,0.007563333,-0.053409778,-0.09068113,0.018220646,-0.004484552,0.07333753,-0.084369175,-0.060707018,-0.0034991617,0.02499393,-0.01180336,-0.051611356,-0.010599806,0.06210856,-0.005331822,-0.07072587,0.054213114,-0.10165981,0.036387596,-0.026606124,0.008651615,-0.041640967,-0.037865594,-0.09663464,0.07816326,-0.011602809,0.016596707,-0.037380002,0.020796126,-0.015168416,-0.10486721,0.023640446,-0.04826933,0.038178753,0.024018714,-0.042222064,-0.05945679,0.044923835,-0.057557445,-0.017944066,0.05588819,-0.03935344,-0.034687873,-0.037356276,-0.05023794,0.04653053,-0.032953687,-0.048507005,0.034221206,0.09247931,0.020960085,0.03051481,-6.908074e-35,0.025955468,-0.03787695,0.07923733,0.0466581,0.069225915,0.06624221,-0.024253245,-0.07049931,0.029351488,-0.003963543,-0.12078741,0.028622182,-0.056961365,0.12875473,-0.041751992,0.030252554,-0.011765537,-0.054724246,0.06365586,0.051702634,0.0019362717,0.0682335,-0.0033072717,0.028899152,-0.06760874,-0.003202773,0.015749892,0.014294267,-0.041859712,0.046793263,-0.034436636,-0.053571455,-0.032831617,0.012670667,-0.0249954,0.047866534,-0.068442084,-0.039139543,-0.0075827874,0.093243554,-0.00075933844,-0.009331811,0.07551121,0.0145970285,0.018431567,0.08849026,0.017144006,0.030632032,0.019621111,-0.01633151,-0.056128345,0.0071259663,-0.024387296,0.00089122687,-0.05086074,0.07416092,-0.04298321,-0.011678547,-0.022896921,0.013485521,-0.007462498,0.017575845,-0.0039548418,-0.019095158,-0.042611968,-0.02497482,-0.041112084,-0.052501004,-0.012515115,0.025485314,-0.03271331,0.027617546,0.07175605,0.017052412,0.0071569737,0.01844341,0.0055088056,0.055266075,-0.050578866,-0.083720684,-0.068583705,-0.008790423,0.107154906,0.08139422,0.018052757,0.053595312,-0.012147108,-0.013090555,0.0031685126,0.05642469,-0.025136124,0.006253104,0.068720676,-0.007931653,-0.0063989745,-1.1387322e-33,0.06713624,-0.089163035,0.032633506,-0.060419712,0.032309826,0.034448143,-0.07613518,0.09917382,-0.041477416,0.003497376,0.059236906,-0.012107416,0.000997559,-0.049968746,-0.035377033,0.0661984,0.09268584,0.056309033,0.01467967,-0.03547708,-0.059110943,0.073203176,-0.06554002,0.06002504,0.03403818,-0.08019836,0.1158135,-0.037124835,-0.0283346,-0.0089848405,-0.027130088,-0.0069505954,-0.0493922,0.03863661,-0.042320218,0.056633845,0.013678578,-0.13131598,-0.0470896,0.08360389,-0.059702218,0.0032072894,0.034183893,0.09356843,0.09981672,-0.022825317,-0.06448572,-0.08467854,-0.079814725,0.002002537,0.003972226,-0.08366986,0.04326906,0.0040443316,0.088998444,-0.017112048,-0.0078131575,-0.050970953,0.041175693,0.0029785528,0.09483999,0.023420356,-0.070047736,-0.0019353345,0.024965478,-0.02133106,0.018512784,-0.043246128,0.034900203,0.07790998,0.108989425,0.020303171,-0.12679526,0.03998724,-0.08539352,-0.019632062,-0.013509497,0.04915158,0.03523968,-0.039537605,-0.034947854,-0.024964826,0.05355443,0.027324779,0.0018400415,0.06769827,0.064977355,0.04251751,-0.051893353,0.053580422,-0.02696941,-0.011896804,-0.011146495,-0.011736661,0.0255855,-1.7443183e-08,-0.03366341,0.00898794,-0.06186534,-0.04458373,0.04677494,-0.022904273,0.029547168,-0.00051162904,-0.007490169,-0.01819917,0.033329874,0.06731054,0.018250242,0.065736935,-0.043666333,0.027028708,0.0923311,0.11064602,-0.043509275,-0.059101168,-0.0232363,0.057740394,-0.053596593,-0.101975456,0.017962756,-0.04075823,0.020210745,0.07896555,0.072310194,0.016681047,-0.033440776,-0.028290812,-0.059488043,-0.050579794,-0.026667597,0.03588089,0.029011955,0.014343056,-0.02581315,-0.06237092,-0.07947002,-0.029639987,0.05478246,-0.03458591,0.037394453,-0.08432316,0.032612845,0.0145463785,0.067713365,0.018571919,0.01813833,0.04125894,0.1082006,0.02022271,0.022725426,-0.0073126964,-0.026986929,0.04012097,-0.13295749,0.041643314,0.15055673,0.050482627,-0.022553366,0.052101564} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.889316+00 2026-01-30 02:01:11.680155+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2023 google ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE 1 t 2026 Go Karts Mar Menor unknown El señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones. El resto todo bien el señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones. el resto todo bien 3 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {P1.02} V- I3 CR-N {} {"P1.01": "El señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones.", "V4.03": "El resto todo bien"} {0.06627961,0.042782374,0.039111566,-0.051469386,-0.03755364,0.007172273,0.07819848,0.026080966,-0.055357024,0.0689778,0.052913837,-0.057456672,0.01372987,-0.01320604,0.02549081,0.056132857,-0.03484043,0.058778264,0.028816173,0.004253931,0.045142774,-0.019211857,-0.05412601,0.12618116,-0.1094673,-0.067003526,0.0016978027,0.0072227884,-0.027788695,-0.011606088,-0.0479187,0.022614928,0.061822936,-0.023812192,0.00038978577,-0.0097766705,0.05543406,-0.042326413,0.0062460043,-0.0040131086,-0.06659788,-0.027426075,-0.06008234,-0.07017486,-0.020422574,-0.072765954,0.03991257,0.05874601,0.04431918,-0.09558027,-0.025528383,-0.014848401,-0.04859861,-0.017294789,0.06938979,0.02888574,-0.02730443,-0.024969302,0.073669806,-0.0010831996,0.0024445232,0.06559553,-0.040993758,0.03208242,0.041483406,-0.031448416,0.04811687,-0.017561935,-0.056941587,0.021030845,0.1525257,-0.046513546,0.08633778,0.011909815,0.016932344,0.05299481,-0.10296594,0.01580796,-8.8374894e-05,0.014071335,-0.0023616438,-0.0294668,-0.050358653,-0.0171397,0.023213211,-0.009935845,-0.04422439,0.023553872,0.029093964,0.004384322,0.0011256055,0.09894394,-0.041848484,0.013018033,-0.065891154,-0.017269416,0.052658845,0.03672814,0.03842996,0.049227,0.059951585,0.049496945,0.032712556,0.019332482,0.048133455,0.027932476,0.027196253,-0.13135995,-0.012941974,-0.034423053,-0.04484888,-0.08467515,-0.008760946,0.014657046,-0.063291565,-0.003805901,-0.036409598,-0.01770089,-0.10338732,-0.044288818,0.04664148,0.027790997,-0.091117546,-0.01997095,0.064827055,-0.03227801,0.034817718,5.385715e-33,-0.021240463,-0.047129624,-0.008197639,0.094144545,0.013307409,-0.0032311426,-0.015531136,-0.010192065,-0.013877344,-0.04236008,-0.003043395,-0.01588436,0.03180798,0.065473884,0.067270905,0.030448534,-0.019694315,-0.10009783,-0.025999766,0.027836962,-0.050648943,-0.03732987,-0.037420355,0.012119462,0.00303597,0.07740583,0.037896294,-0.058139905,-0.012920738,0.07316632,-0.032718632,0.023422856,0.017814899,0.028817156,0.027268566,0.004081991,0.06538677,0.0072700367,-0.06258896,-0.043782454,0.009547617,0.057090756,-0.04984889,0.023467224,-0.023037462,0.00018276276,0.020460872,-0.011534159,0.09055135,0.046384152,-0.008357388,-0.05103133,-0.03616395,-0.030246193,0.05601505,-0.012912189,-0.09260591,0.026830442,-0.029837076,0.0046757907,0.03231091,-0.0025532849,-0.0354,-9.2457776e-05,-0.012242517,-0.0070418227,-0.021997038,0.005253296,0.13659005,-0.020763662,0.016325595,0.02164239,-0.051144358,0.052820403,-0.004603813,0.001359871,0.006540507,0.016846985,-0.054502502,-0.02270911,-0.019172298,-0.031448904,0.041297317,0.0023086236,0.07808055,0.012115647,0.028286852,0.019125564,-0.04950188,0.08047619,0.0076230033,0.0716317,0.06145644,0.019850422,-0.034056477,-6.94133e-33,-0.022997791,0.0282281,0.019474179,-0.01715032,-0.06456739,0.008250631,-0.05836561,-0.042075768,-0.009477643,-0.13793992,-0.11317934,-0.09235925,0.1604212,-0.014763679,-0.028367398,0.051954057,0.020172201,-0.06410097,-0.109125294,-0.013731542,-0.03808778,0.08671773,-0.0019062486,-0.04978225,-0.048503224,-0.078476034,-0.014429773,0.024347818,-0.038472775,0.013709809,0.060949516,-0.025645552,-0.02019427,0.005760459,0.012808087,0.09402639,0.080279954,-0.002161655,0.022575904,0.08861993,-0.064352356,0.049110014,0.033706877,-0.085891224,-0.007142914,0.09721989,0.024369126,-0.18925148,-0.06527504,-0.06215619,0.08233104,-0.009733712,-0.042255946,-0.00954837,0.09716667,-0.015147136,-0.018712532,-0.07379881,-0.060260314,-0.04825819,0.054093637,0.04025095,-0.008017697,-0.03274119,0.0546653,-0.011275784,-0.054683503,-0.0027058637,0.06309238,0.036427602,0.102033824,0.0017053579,-0.1320783,-0.0029701607,-0.05447168,-0.017550401,-0.1323981,0.11253103,0.004695203,0.05012467,0.017918106,-0.014209369,0.00865649,-0.039059673,-0.0017408726,-0.012353199,-0.0020496582,0.017083496,-0.027547028,0.027190637,0.043655273,-0.0008717176,-0.040490914,-0.07038837,-0.02436003,-3.1514737e-08,0.011708106,-0.048635382,-0.11531606,-0.015544733,0.01907459,0.01730159,-0.024960652,0.010090617,0.02585468,0.10915698,0.064965084,-0.028435161,-0.06673585,0.018632246,-0.030186802,-0.0018392382,0.0834925,0.067327335,-0.040275216,-0.06129582,-0.011974537,0.012408922,-0.08525443,-0.029763697,-0.009476555,0.010450354,-0.05511985,0.012510066,-0.043386143,0.0022909348,-0.004178469,0.040300824,-0.10080884,-0.10709086,-0.021934202,-0.021420872,-0.007335986,0.008730132,0.04691982,0.04215846,0.106239304,0.025625778,-0.03904588,0.017913628,0.034045126,-0.061516505,0.043753397,0.0036398885,-0.016163362,0.0013441285,0.0067620394,-0.07877738,0.056498513,-0.005185798,0.049853913,-0.08882604,0.043360688,0.0538412,-0.061163373,-0.04534057,0.06778114,0.114185125,0.031356923,-0.03630827} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.942449+00 2026-01-30 02:01:11.696664+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2024 google ChZDSUhNMG9nS0VJQ0FnSURVdXFfUVB3EAE 1 t 2027 Go Karts Mar Menor unknown Divertido. Los coches de 300 van bastante bien divertido. los coches de 300 van bastante bien 4 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {O1.05} V+ I2 CR-N {} {"O1.02": "Divertido. Los coches de 300 van bastante bien"} {0.031454545,0.080925584,-0.014857528,-0.12947604,-0.015900137,0.038934175,0.06045209,0.08411975,0.012582905,0.010411264,0.047603495,-0.0970976,-0.021457655,-0.060743086,0.008250329,-0.056277752,-0.018395118,-0.0076487595,0.030231075,-0.00087131356,0.02061909,0.05689574,-0.039421637,0.082771674,-0.07117533,0.007958995,0.001760405,-0.032138817,-0.041340493,-0.026859175,0.008403047,0.05736203,-0.06043156,0.00972136,-0.014381972,-0.014381982,-0.017171804,-0.059219986,0.0588281,0.08759568,-0.1287812,-0.021698993,-0.021939939,-0.027710833,0.049180605,-0.018678652,-0.05109028,0.02622842,0.038668513,-0.032290414,-0.005682566,0.049651828,0.024964543,0.012348265,-0.023685262,-0.060964584,-0.047397044,0.026438393,0.089894004,0.054973703,0.017077735,0.055860918,-0.04406927,0.004835058,-0.007308966,-0.09526695,0.062382538,-0.040964503,-0.051495805,0.08212283,0.09241685,-0.0143340295,-0.0792902,-0.070121035,0.026510157,0.020630559,-0.006697471,-0.007930377,-0.082381174,-0.0793013,0.01073176,-0.0042810733,-0.01783461,-0.066759154,0.01550738,0.0037823212,-0.040674675,0.10390869,0.034648187,-0.030179609,-0.08526283,-0.026974931,-0.0604408,0.023595877,-0.010479731,0.07711238,0.019926174,-0.096678294,-0.010832673,0.07213433,0.040062662,0.094856106,0.030739686,-0.00062213675,-0.026144173,-0.029667016,0.09588811,0.08356671,-0.016226158,-0.037737176,-0.03587892,-0.020652313,0.02605498,-0.09788999,-0.079103574,0.030912314,0.006729865,-0.12045621,0.06354748,-0.06366277,0.085679896,0.04402048,-0.083275616,0.000874048,0.020147748,-0.0046326583,0.09422806,2.5274175e-34,-0.01961669,0.0534106,0.047876615,0.08054932,-0.057481907,-0.022278493,-0.03849302,0.0069448827,-0.017072009,-0.035538223,-0.0055671735,-0.027679771,0.040368084,0.031830676,-0.0597613,0.00022445548,0.053457085,-0.030705595,0.07273125,0.042032033,-0.09808354,0.0068039703,0.0072538727,0.08724858,0.017308727,0.025564846,0.0044526346,-0.025447508,-0.07934853,0.06617252,-0.023219688,0.047995064,-0.0155452425,0.007628544,-0.028377436,0.012719853,0.006335687,0.011448675,-0.0014581543,0.023969822,0.0878867,0.012675841,-0.091065586,0.021952204,0.029849578,0.057653327,0.014981008,0.037448227,0.035736203,0.016479552,-0.015420387,0.0038927938,-0.106332496,-0.0039863875,-0.012820553,0.00084183546,-0.066655226,0.020128524,-0.05348437,0.031861205,0.07504353,0.048385616,-0.0032564583,0.051710077,-0.037528746,-0.0024276096,0.012833621,0.049767468,0.07979314,0.0070036403,-0.15944979,-0.07798546,0.032961376,0.024672378,0.022563279,0.024820743,0.0038747971,0.09760526,0.010733298,-0.02559514,-0.06813615,-0.04666576,0.04936493,-0.0033303793,0.042665713,0.06404543,0.010625074,0.020908305,-0.026877072,0.041538402,-0.052365497,0.026901294,0.073971406,-0.04566114,-0.004879443,-2.0612813e-33,0.0046345545,0.051486347,-0.03515412,0.0032953366,-0.059778705,0.027313367,0.029674118,-0.015534381,-0.11551277,-0.042696323,-0.052837294,-0.09234676,0.13524401,-0.070662774,-0.07535308,0.029522702,0.078045025,-0.059811898,-0.051242717,0.044480197,-0.027122796,0.0101459995,0.057233915,0.03532703,-0.038073625,0.024536435,-0.037256356,0.007947059,-0.053646848,-0.016129725,0.034158234,-0.04222936,0.025315195,0.062500276,-0.02148504,0.028125878,0.017570268,0.0788386,-0.002472501,0.089463696,-0.04266745,-0.01402482,-0.084888116,0.03910537,0.033878386,0.021057038,0.00980742,-0.13465728,-0.03952769,-0.021861808,0.047007244,-0.038214408,-0.004721308,-0.028767921,0.03500899,-0.03309609,-0.008602278,-0.11298508,-0.03171741,-0.051989872,0.041393302,0.15341239,-0.05959976,-0.012619611,0.071642056,-0.07917223,-0.09695313,-0.029915426,0.082624204,-0.008567676,0.08897684,-0.009283794,-0.008864538,0.007588318,-0.053843968,2.8890163e-05,-0.03272786,0.004516197,0.020501655,0.030376643,-0.10175861,0.02755218,0.043483514,0.039083652,-0.010908257,0.048450533,-0.08795945,-0.02628115,0.009844101,-0.043023277,0.0034068013,0.010288066,-0.016266176,0.019340944,0.059819937,-1.8977381e-08,0.07685866,0.01841552,-0.08954656,0.02633516,-0.011478799,-0.04212688,-0.042060286,0.03665207,-0.035620548,0.0829507,-0.03115564,-0.02356032,0.07243052,0.06289202,-0.02754233,0.013065058,0.04941038,0.07786346,-0.04259255,0.003507327,0.047003455,-0.050526578,0.012729055,-0.02412708,0.019098308,0.00558998,-0.039154913,0.032771166,-0.023614548,-0.041470602,-0.05145006,-0.022523755,-0.056646112,-0.08374784,0.06555178,-0.0039046283,-0.00031833266,0.03230445,0.0027117336,0.013014079,0.052322693,-0.025343232,-0.05196267,-0.011251669,0.0024971094,-0.08339279,-0.020251134,0.028728815,0.016841447,0.026467862,-0.056356944,0.040966686,0.048477538,0.0926735,0.05915694,-0.02056963,-0.055246104,0.022816665,-0.09537065,-0.0630936,0.048654687,0.11600905,-0.04668234,-0.03539882} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.955971+00 2026-01-30 02:01:11.700169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2026 google ChdDSUhNMG9nS0VJQ0FnSUQ4aTZfWHpBRRAB 1 t 2029 Go Karts Mar Menor unknown A mis hijos les encanta!! Vamos cada semana. La gente es atenta y amable. a mis hijos les encanta!! vamos cada semana. la gente es atenta y amable. 5 2021-01-31 01:52:39.833374+00 es v5.1 P1.01 {P1.01,P3.01} V+ I3 CR-N {} {"P1.01": "A mis hijos les encanta!! Vamos cada semana. La gente es atenta y amable."} {-0.012591787,0.057738315,0.060739256,-0.036127638,-0.04314537,-0.020498922,0.07027993,0.049102727,-0.033488445,0.028580436,0.01098964,0.0061053876,0.028953997,-0.032552283,0.0045051663,0.030353686,-0.030551339,0.04155904,0.038275942,0.04520385,0.0748774,-0.027187118,-0.06728508,0.10522458,-0.0843869,-0.05649238,-0.017689725,0.06997857,-0.086958125,-0.048530165,0.026983611,0.06903844,0.004856322,-0.002560288,0.021610351,-0.008748522,0.060887665,-0.08229488,-0.011623332,-0.012217628,-0.1260223,0.04108474,-0.044675726,0.0076024905,0.0014449793,-0.062497564,-0.01779115,0.03220616,0.025545757,-0.016026814,-0.08154635,0.019885158,0.022555888,-0.04086004,-0.061177913,-0.029363668,0.010061849,-0.054018617,0.07989906,0.030918023,-0.0058671073,0.03653437,-0.07443901,-0.02262345,-0.023569655,-0.07952653,0.09890483,-0.0005481854,-0.12792473,0.10578899,0.1230147,-0.026831102,0.002739186,0.06467866,-0.013053543,0.055930514,0.012725065,0.006078591,-0.043008227,-0.063003056,-0.007371032,0.08460574,-0.0042706938,-0.025862567,-0.0053619742,-0.0036648237,-0.0005023276,0.06409283,0.062078055,0.02625298,-0.07407668,0.013664877,0.0004124594,0.020140983,-0.07109062,0.00015709731,0.06487921,-0.054028854,0.03199008,0.03506549,0.042231183,0.101621434,0.089289926,0.07622988,-0.06513038,0.045570627,0.023181476,-0.019074751,0.015985206,-0.018722197,0.03221492,-0.04336907,0.005430962,0.009208663,-0.056852,0.019419536,0.06067222,-0.048102576,0.014867284,-0.04508912,0.05581816,0.047405314,-0.028109185,-0.038273536,-0.001749577,-0.014689054,0.060026687,3.491603e-33,-0.02981051,0.0035781446,0.00015692569,0.11499379,-0.04849497,0.007360964,-0.025354674,-0.0008672852,-0.10089158,0.014433458,-0.15682931,-0.027390687,0.015963998,0.09117902,0.036094353,0.11357589,-0.02600313,-0.04910364,0.01542901,0.066253185,-0.079257235,-0.0066562593,-0.0097229,0.038588185,-0.012958663,0.032623306,-0.0102528725,-0.09622584,0.018388402,0.04796397,0.010690465,0.010056021,0.06731397,-0.00816609,-0.0072216312,-0.025515648,0.10337479,0.10092273,0.008107842,-0.015438116,0.059448015,0.053959124,0.01978251,-0.0402099,-0.06654863,0.0031367682,0.06618135,-0.005230836,0.06715885,0.012846651,-0.041810494,-0.027789041,-0.013300611,-0.037049513,0.0043650414,0.007868045,-0.03061621,0.042370047,-0.02309229,-0.04695938,0.058558837,0.017100925,0.035110496,0.0014098039,-0.02904502,-0.029849324,0.053316604,0.02865233,0.13659336,-0.008469804,-0.06990058,-0.018192833,-0.03183225,-0.0003854595,0.0044288,0.015047906,-0.0036885317,-0.0039750854,0.0022559147,-0.016999599,-0.059820607,0.0047418685,-0.02780007,-0.023809776,0.08285345,0.039682955,0.078163,0.050520565,-0.039333425,0.098887175,0.009068025,0.030702112,0.10292189,-0.060494572,0.0023235972,-5.0739406e-33,0.011877189,0.012474358,0.024452224,0.04604199,-0.0571897,0.015652599,-0.044403926,0.06983273,-0.081327334,-0.04899201,-0.07318172,-0.11571982,0.12543789,-0.062713295,-0.037061315,0.031716283,-0.010031697,-0.06967929,-0.10036265,-0.02791873,-0.05757941,0.043891683,0.0025387313,-1.4301162e-05,-0.011849499,0.015282698,0.038489196,0.039609388,-0.06484964,-0.00012792212,0.013338968,0.01017221,0.055316374,0.047070615,0.021923397,0.06035863,0.039535653,-0.012501351,-0.03343802,0.0011469476,-0.08079429,0.15214536,-0.039996725,0.06175884,-0.03192487,0.06462986,-0.054614816,-0.061800364,-0.064335756,-0.0368951,0.016317688,-0.04963184,-0.016318858,-0.019398428,-0.000355065,-0.07022949,0.040129855,-0.060830895,-0.10404027,0.02267934,0.075962685,0.0005023473,-0.04583492,-0.030180536,0.09427914,0.006020491,-0.01905624,-0.006510795,0.004119735,-0.002150431,0.12271311,-0.0031514748,-0.0598869,-0.012931049,-0.022903107,-0.048087277,-0.07264674,-0.026216043,-0.046280727,0.014233782,0.0069212727,-0.0058538774,0.022145838,-0.0070733386,-0.0053437306,0.02015491,-0.055915553,0.02049684,-0.06089237,0.048388354,0.021717431,-0.02013777,-0.061995227,-0.015828485,0.018854003,-3.1013922e-08,0.035304777,0.025625879,-0.06660273,-0.025025006,-0.045968436,-0.088089384,-0.060808826,0.026102966,0.06059343,0.02717817,-0.026494246,-0.008624643,-0.045894243,0.07962151,0.0073274267,0.027165512,0.0695881,0.117339484,-0.06777725,-0.022953449,0.0007051537,-0.008691078,-0.042304263,-0.038149454,-0.0036342547,-0.031626128,-0.05610726,-0.044785876,0.046727553,-0.1057375,-0.055618647,0.014165711,-0.06131549,-0.0073566237,-0.07524756,-0.034105483,-0.042094868,-0.009425432,0.034178115,-0.061631504,0.11946173,-0.045538846,-0.08935483,-0.06345074,-0.046545412,-0.0958202,0.025380772,-0.012364521,-0.03322434,0.03766736,-0.100482225,-0.011169155,0.07093335,0.011587054,0.028258817,0.0005250155,0.028368216,0.029631784,0.0070844535,-0.02319016,0.04167233,0.13032492,0.007707624,-0.04233305} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:02.977045+00 2026-01-30 02:01:11.707119+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2029 google ChdDSUhNMG9nS0VJQ0FnSUNxb3ZUYXpRRRAB 1 t 2032 Go Karts Mar Menor unknown Magnifique\nLe personnel et sympa\nPas prise de tête\nPlusieurs kart dispo surtout les 400cc woah le feu\nMerci à vous magnifique le personnel et sympa pas prise de tête plusieurs kart dispo surtout les 400cc woah le feu merci à vous 5 2022-01-31 01:52:39.833374+00 fr v5.1 O1.02 {P1.01,J2.01,O3.02} V+ I3 CR-N {} {"O1.02": "Magnifique\\nLe personnel et sympa\\nPas prise de tête\\nPlusieurs kart dispo surtout les 400cc woah le fe"} {0.016909752,0.074792676,-0.055010807,-0.036935933,-0.0036511447,0.030465852,0.027867347,0.09165155,-0.030968688,-0.008269303,-0.03100487,-0.01178553,0.03614161,-0.020245276,-0.11334082,-0.1010331,-0.06917342,0.016278958,-0.023186632,0.05821109,0.007971827,-0.081826985,0.061153874,0.040616933,-0.08396227,-0.009996136,-0.049724463,0.02471537,-0.0077106,-0.048055425,0.020858275,0.035935868,0.007290579,-0.04515387,-0.014439139,0.058355168,-0.006263591,-0.068275474,0.061101,-0.026960682,-0.04433664,-0.010620437,-0.12134852,-0.023047432,-0.008597325,0.060729187,0.094730705,0.015370002,-0.022066781,0.020017171,-0.030036714,0.049630426,0.028115558,-0.022075513,-0.029518126,-0.07965749,0.032404833,-0.055750564,0.085843705,-0.008802819,-0.05093337,0.05679073,-0.064353146,0.0770132,-0.008412892,-0.03891004,0.022793144,-0.095279075,-0.015005504,0.0016396944,0.08446292,-0.050030794,-0.032181915,0.07898769,0.0599543,0.10897368,-0.03266749,-0.036155414,-0.053921066,-0.09244754,0.080699965,-0.061199047,0.0008660625,-0.05842407,0.028861212,-0.027229885,0.024932489,0.04860887,0.063398,-0.0635144,-0.0049496735,0.031839218,-0.08549679,-0.010967894,0.02991219,0.019512003,0.027646903,-0.02058783,-0.020575723,-0.0009174915,-0.0056888256,-0.015724314,0.0052524754,0.042785518,-0.070882775,-0.066541724,0.014749369,0.015968485,-0.07272689,0.018332584,0.01230807,-0.023099525,-0.07216229,-0.08271959,0.046727825,-0.0045528584,0.01575329,-0.046779487,-0.044369638,-0.017842224,0.08180725,-0.0011749599,-0.0004917461,-0.07251381,0.08022396,0.0135025075,0.015719214,6.65062e-33,0.023032635,0.009741745,-0.025512429,-0.024505174,0.0032872288,-0.010051408,-0.045193296,0.01092789,0.078493044,0.092804536,-0.039683435,0.028778333,0.034541823,-0.011098428,-0.029827416,-0.06420856,0.11197821,-0.016596952,0.013136829,-0.0010143535,-0.08527971,0.006262136,0.08442347,0.12019685,0.12300456,0.10521292,0.039229006,-0.0013686577,-0.029917417,0.07138343,0.07879081,0.004400747,-0.07301352,-0.05066455,-0.015914118,-0.033500627,-0.025778692,0.019144833,0.06766937,0.0075682392,0.053850703,-0.0048355134,0.05389243,-0.045371145,-0.023492623,0.044171218,0.015761802,0.0018626122,0.048443627,0.018442076,-0.03511825,-0.052151665,-0.04430335,0.009144378,0.06374145,-0.02359199,-0.054001767,-0.048199266,-0.0626991,0.00040153167,0.051863473,0.047314905,-0.0104653705,0.06517699,0.024596997,-0.10408949,0.019624384,0.0521701,0.09626563,0.04301465,-0.095034875,0.026878733,0.07415805,-0.052627776,0.028684579,0.07377142,0.006215099,0.030552994,-0.013082752,0.0006884126,-0.08574506,-0.040143117,0.0007283712,-0.03848268,0.06681653,0.034491252,0.031082122,0.061304178,-0.036935788,0.011605561,0.013931286,0.016295532,-0.014544779,-0.032081716,-0.048471317,-8.992118e-33,0.0013317909,0.057920497,0.04533862,0.08325599,-0.03553998,0.025761005,-0.0010929194,-0.052830752,-0.076052904,-0.0045852778,-0.051424637,-0.119433515,0.09065442,-0.02770448,-0.06283437,0.07883656,0.0007763371,-0.0664429,-0.020235742,0.007067144,-0.02546954,1.9716772e-05,0.06604191,-0.0012625061,0.017239312,-0.060941778,-0.026875975,-0.013842338,-0.038895153,-0.02313785,-0.0030608352,0.01939858,0.038539868,0.059990518,-0.029632024,-0.041142095,0.11483943,0.097114585,0.054829493,0.06818897,-0.0059831515,0.07802768,0.022498338,-0.043014985,-0.012253142,-0.07624002,0.029471375,-0.08579963,0.000621587,0.0049312836,0.063331395,-0.03889105,-0.01972256,-0.037537284,-0.0040350007,-0.0021753286,-0.020781463,-0.08507236,-0.17040424,0.021101505,0.0885683,0.058320638,0.06340787,-0.0017759751,0.033695385,0.02949403,-0.07803152,-0.011326566,0.005726191,0.01987558,0.09435433,-0.1136344,0.029149916,0.03574989,-0.027037034,0.008437692,-0.05696014,0.022464752,0.013198603,0.05363856,-0.06961197,0.01993826,-0.061473545,0.026422562,-0.024131581,-0.01803629,-0.028401744,-0.0668642,0.018352741,-0.10121648,0.017388158,0.026595172,0.0656783,-0.012650792,0.059759244,-3.3724465e-08,0.010692747,0.05203063,-0.080014326,0.07937132,0.07391618,-0.08956402,-0.04984253,-0.06798934,-0.05631638,0.028460365,-0.0046446617,-0.009666396,-0.030598879,-0.0073014083,0.0572429,-0.018630166,-0.0054324986,0.01459446,-0.039011534,-0.049066722,0.049514256,-0.0659021,-0.032351818,-0.02353614,-0.04197474,0.02223393,-0.113993496,-0.1048721,-0.004306994,-0.017248228,0.014727792,0.021634497,-0.08430316,-0.12964953,-0.030501826,-0.04084865,-0.015076095,0.0438628,-0.021805335,0.078232355,0.09374085,-0.06677652,0.0054775206,0.010435637,-0.0562996,-0.0017147136,-0.069858976,0.01709551,0.003541937,0.030191429,-0.0051045464,0.049549628,0.062888354,0.059862465,-0.000155123,0.039837733,0.024388527,-0.0086999675,-0.032991998,-0.040697005,-0.0029290216,0.0472383,-0.023561902,-0.05860094} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:03.009537+00 2026-01-30 02:01:11.71753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1968 google ChZDSUhNMG9nS0VJQ0FnSURkdU9mZFh3EAE 1 t 1971 Go Karts Mar Menor unknown Son muy amables son muy amables 5 2025-01-30 01:52:39.833374+00 tl v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Son muy amables"} {-0.056020904,0.025511801,0.03954916,-0.06120859,0.011398075,-0.053819172,0.13699234,-0.0019857157,-0.012313223,-0.000765431,0.03944327,-0.040657558,0.06344972,0.013347163,-0.07897108,0.092174165,-0.0077411,0.045516383,-0.026349459,0.013009931,0.03091781,0.073495,0.020029703,0.0012386149,-0.026481034,0.049610868,0.040995147,0.011150874,0.0028275915,-0.036998846,0.018972354,0.040162932,0.06888179,-0.06385638,0.00524337,0.0011711803,0.08428761,-0.07071007,0.040919274,0.014572424,-0.024761029,0.0071447412,-0.056646004,-0.04805955,-0.049735006,-0.045279097,0.0401377,-0.03265338,0.08466523,0.022811584,-0.110713586,-0.01735287,-0.014689378,-0.021743959,0.11101993,-0.0071947025,-0.09248658,-0.06455427,0.018224875,-0.035136577,-0.06440786,0.036183927,0.022155108,-0.010551083,0.035126224,-0.058656577,0.03195359,0.010268883,-0.07662397,0.02765326,0.06440357,-0.0091648735,-0.045342013,-0.009407742,-0.044833973,0.07860062,0.064825796,-0.071568415,-0.017162897,0.07002539,-0.12725504,-0.02801058,0.041298598,-0.06793286,0.007744118,-0.077603005,0.03176649,-0.034510754,-0.04400593,0.03208155,-0.021212928,-0.0674519,-0.021743385,0.0039575626,0.06620901,0.0113726575,0.032093007,-0.03501384,-0.10357179,0.11491012,-0.0037637306,0.03604527,0.10559242,0.030817052,-0.014865173,-0.079082936,0.030115528,-0.061483357,-0.014760704,0.044044558,-0.04070922,-0.076138236,-0.042284273,-0.0013950794,0.063439384,-0.0051209605,0.05666195,0.07490719,-0.06662508,-0.07438856,0.06926541,0.06914412,-0.030133035,0.039268993,-0.009022159,-0.08701015,0.008915305,-2.0777655e-34,0.024401186,-0.045440223,-0.036286544,0.07621091,0.0029824097,0.04387561,-0.0012977206,0.028830608,-0.014616266,-0.10954683,-0.045888714,-0.0028961543,0.06389458,0.019722171,0.009556083,-0.05298137,-0.007910007,-0.08758432,0.040046655,-0.007834674,-0.060942844,0.020835508,0.025258997,0.019764533,0.029835766,-0.06127898,0.017440308,-0.033418912,0.058228586,0.038409453,0.014691219,0.041316926,-0.01813265,-0.04066724,-0.13468367,0.04528242,-0.027378384,0.036671434,0.029336479,0.0032562825,-0.06295683,-0.03552022,-0.0068592345,-0.022247232,-0.022378065,0.10067878,0.04491616,0.054206256,0.011213565,4.6595746e-06,-0.025965441,-0.022882802,-0.086361945,-0.024257945,0.028211037,0.02014098,0.014250442,0.03669523,-0.08278751,-0.028852573,0.07193258,-0.066508435,0.06442135,0.033681028,-0.07180061,-0.0072559756,-0.051335566,0.047843713,0.047065385,0.053230926,-0.017920054,-0.0856865,-0.05885961,-0.024901181,0.0024311622,-0.059899963,0.027013946,0.005629875,0.025584785,-0.022362698,-0.030121973,0.08902986,0.06151699,-0.024688637,0.002116949,-0.0391065,-0.017277548,0.052987643,0.005222384,0.042688683,-0.07263782,0.018951394,0.038526025,-0.08684501,-0.049931843,-3.4108346e-34,0.05913322,0.014233463,0.039005674,0.12722038,-0.030127378,0.011884069,0.054923657,0.11562001,-0.029639915,-0.028581303,-0.10294099,-0.061615117,0.008004308,-0.05436486,0.03580641,0.1040194,0.05575591,0.048781194,-0.016263613,-0.01882204,0.00074821094,-0.02109226,0.0022368685,-0.11889708,-0.07461065,-0.0028782997,-0.0019389113,-0.04073318,0.0045676786,0.016428187,-0.05300601,-0.021392839,-0.08244055,0.033467382,-0.055004593,0.08471811,0.03312538,0.05904578,-0.065888666,0.013905078,0.02435285,0.042659532,0.017099496,0.16393973,0.00081080117,-0.013561974,-0.003989395,-0.004582674,-0.017965717,-0.046691287,-0.088082835,-0.0026317926,0.08222009,0.004804015,-0.014949939,0.0007630181,-0.009136031,-0.038761027,-0.073719405,0.012932335,0.05290875,0.042495366,-0.03980649,-0.035247795,0.0333728,0.00081114983,-0.039766647,-0.03389741,-0.0799756,-0.009967617,0.08994529,-0.05620818,-0.021490596,-0.11339839,0.041131113,0.07536374,-0.14938122,0.025974719,-0.06284335,-0.02495485,0.08352658,0.0077520655,-0.055895712,0.010519672,-0.041853085,0.028387576,0.097693756,-0.014451405,0.026712006,0.004273736,0.046361893,0.06965434,0.020015892,0.0069219414,0.060484935,-1.5898957e-08,-0.0022401696,-0.059453037,-0.061268482,0.001536264,-0.008696791,0.0588504,-0.025087634,0.018866124,0.011608541,0.050650932,-0.028413488,-0.027456159,-0.040803075,0.0914456,0.088307075,0.0011555575,0.016700022,-0.03886053,0.008960246,0.0224874,0.025179932,0.018119806,0.04564174,0.05583497,-0.041810695,0.02178485,-0.03979524,0.021039076,-0.042951204,0.09506191,0.0020003873,0.119140506,-0.0116930995,-0.04420799,-0.06033524,-0.083500996,0.023640532,0.014085334,0.018993894,-0.026168229,0.055068307,-0.02370021,0.053230543,-0.043581665,0.040000636,-0.022263767,-0.07986349,0.022894755,0.056174807,0.034191012,-0.019824332,0.045683797,0.019749276,0.07229512,0.097879186,-0.045299474,-0.029369371,0.02820512,-0.025767343,0.013433731,0.06512832,0.059161823,0.016492425,-0.0539044} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:07.023642+00 2026-01-30 02:01:11.428623+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1890 google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE 1 t 1893 Go Karts Mar Menor unknown Soy cliente habitual y ayer estuve de nuevo como cada mes, siempre recibo un trato excelente, los kart van de maravilla el circuito esta cuidado y el personal tiene un trato excelente para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio soy cliente habitual y ayer estuve de nuevo como cada mes, siempre recibo un trato excelente, los kart van de maravilla el circuito esta cuidado y el personal tiene un trato excelente para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.02 {} V+ I3 CR-N {} {"O1.02": "los kart van de maravilla el circuito esta cuidado", "P1.02": "siempre recibo un trato excelente", "R4.03": "Soy cliente habitual y ayer estuve de nuevo como cada mes", "V4.03": "para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio"} {0.009105692,-0.033446763,-0.025430925,-0.108193144,-0.077113025,0.015279109,0.060788237,0.06595775,0.020655114,-0.000580956,0.051090114,0.08089703,-0.026586095,0.006697371,0.09840104,-0.022640247,-0.022439014,0.035304293,0.07749978,0.02134857,-0.009307437,-0.05422798,-0.08291937,0.01674622,-0.09588111,-0.0015701043,0.0816511,0.014157262,-0.048321024,-0.09736338,-0.053428914,0.13324307,0.06859575,-0.029431162,-0.116553016,-0.036341608,-0.045326546,-0.013936553,-0.061403576,0.0284722,-0.051330168,-0.09171832,-0.015392472,-0.04706066,-0.012836692,-0.06976595,-0.057598192,0.015633183,0.032114517,-0.026324257,-0.045580268,-0.012899317,0.019495206,0.0072677317,-0.00170391,-0.03339595,-0.011285347,0.11570425,0.10130439,0.09207456,0.050460715,0.03234452,-0.010092496,0.06306832,0.021559915,-0.023684863,-0.026233898,0.030305192,-0.055213217,0.05036511,0.0691278,-0.109686546,0.0021484212,-0.0184232,0.027917862,0.0043338137,-0.033418484,0.005404127,0.008250994,-0.023978129,0.01062538,0.04738645,-0.05327641,-0.03916345,-0.0074620238,-0.0048939767,-0.029561255,0.020738637,-0.008972748,-0.021934332,0.0002817862,0.091653,-0.05235264,-0.06918752,-0.056571294,0.016573187,0.051161237,-0.04657094,0.005040479,0.02168077,0.10908654,0.07044588,0.007930049,0.00911358,-0.085367985,0.016019087,0.0068799504,-0.031956736,0.03183471,0.03409153,-0.09347561,-0.0026086408,-0.09511514,-0.06259914,0.01610673,-0.021241963,-0.025476947,0.019844186,0.016943436,-0.0011257227,-0.039696705,-0.012852516,-0.016005438,-0.030115215,0.014758946,-0.060171917,0.10243293,9.707926e-33,-0.08715259,0.01035486,-0.05024756,0.024776934,0.020580664,-0.0037559224,-0.034229454,-0.023843706,-0.025179757,-0.009545201,-0.00357237,0.075739115,-0.02145904,0.05422792,0.089912154,0.029165395,-0.02063234,-0.033288036,0.12203404,-0.028630927,-0.0041621104,-0.07341614,0.047900382,0.07612235,0.015145201,0.046918906,0.023043545,-0.0020508186,-0.07277506,0.036565833,0.056636453,0.042897742,-0.014781515,-0.056534886,-0.0962147,-0.040949773,0.013342158,0.0081286505,-0.063790575,-0.01298007,-0.008969736,0.014761486,0.002289006,0.030574923,-0.06030905,0.0008936649,0.0069947043,0.0021479258,0.07052896,0.076082416,-0.13933693,-0.03747715,-0.04436523,0.0033715602,-0.02643072,0.046599243,-0.029715374,0.04492142,-0.019841183,-0.07909421,0.03201852,-0.003180283,-0.015332086,-0.048430536,-0.063584365,0.027218796,0.029282061,-0.034201544,0.10878742,-0.025190486,-0.06893906,-0.0079872515,-0.027218085,-0.043369506,0.03051755,0.013083224,-0.09653505,0.021684367,0.03887862,-0.006681821,-0.07000129,0.008130583,0.0072383154,0.084854506,0.10329956,0.09418614,0.0554331,0.006641469,-0.016495716,0.174682,0.024052335,0.06820677,-0.003983482,-0.0008459689,0.09177969,-1.16047455e-32,-0.059895888,0.03439937,0.06751354,0.04255427,0.014404532,-0.023939367,-0.04403268,-0.0046532345,-0.011005708,0.027270012,0.009200052,-0.10435771,0.023298018,0.0011705369,-0.015190598,0.05119798,-0.028864851,-0.06336232,-0.05552544,-0.08982225,0.04293713,0.00924886,0.020092618,-0.019113628,-0.036568567,-0.05323763,-0.07428681,0.04206228,-0.052229375,-0.028046815,0.08336947,-0.00987877,-0.03127422,0.09277962,0.009389062,-0.019661859,0.07594315,0.053875547,-0.0535633,0.028575279,0.049453598,0.058626,-0.059608363,-0.011562287,-0.030142765,-0.053971313,0.056148447,-0.12510073,0.0075523863,-0.05705305,0.07388615,-0.0024046197,-0.033149727,-0.10546656,-0.029153975,0.01314386,0.041216016,-0.03227357,-0.070861205,-0.022147868,0.07278339,-0.029880947,-0.023842417,-0.031188956,0.09310195,-0.0010383836,0.020059755,0.058439538,0.06423028,0.021460388,0.04762429,-0.014257696,-0.060603548,0.021859791,0.0010616014,-0.10782211,-0.069600485,-0.027306681,-0.011902077,-0.054884546,-0.026303258,-0.035707865,-0.0031919735,-0.048980765,0.022126487,-0.021914687,0.0061492766,0.023537518,0.015140541,0.005271215,0.016278032,0.08533242,-0.12588727,-0.039091676,-0.029663576,-4.7812353e-08,-0.030749217,-0.06623846,-0.048831467,0.060863,0.043565743,-0.06121838,-0.021831887,-0.010359734,-0.038971484,0.04343133,-0.017111875,-0.01932634,-0.012018497,0.07625656,0.049548984,0.084730566,0.12123152,0.030317772,-0.02223422,0.015842121,0.038241677,0.011758243,-0.03902998,0.009035289,0.018965898,-5.6315774e-05,-0.045136373,0.08925812,0.018220445,-0.024548013,-0.049772065,0.043011665,-0.01678883,-0.0818142,-0.016993653,-0.037362266,-0.0086988425,-0.029337287,-0.012683507,-0.014450253,0.04035586,-0.027618002,-0.10567209,0.040582202,-0.07265929,-0.052967925,-0.019472776,-0.043300174,-0.009908523,-0.017053183,-0.0928252,-0.06283366,0.057064876,-0.016990546,0.049483158,-0.03673033,0.0072804936,0.032208815,0.0072883405,-0.076425776,0.0052629802,0.08430332,0.00060302025,-0.09916148} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:14.516636+00 2026-01-30 02:01:11.079773+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1895 google ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE 1 t 1898 Go Karts Mar Menor unknown Los coches están bien, la atención muy buena. Pasamos un rato estupendo soltando adrenalina, para repetir por supuesto los coches están bien, la atención muy buena. pasamos un rato estupendo soltando adrenalina, para repetir por supuesto 4 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.01": "Los coches están bien", "O1.05": "Pasamos un rato estupendo soltando adrenalina, para repetir por supuesto", "P1.01": "la atención muy buena"} {-0.021128079,-0.012231135,-0.05039549,-0.022421965,-0.025947664,0.028941173,0.08675418,-0.01869222,-0.005132277,-0.021953093,0.066858806,-0.0049516275,-0.08683068,-0.03145432,0.037918657,-0.0027504794,0.008645916,0.03896024,0.038335294,0.016274357,0.0077070566,-0.06410003,-0.07868954,0.11015898,-0.086914755,-0.038462177,-0.0008540267,-0.0284116,-0.02639431,0.024266796,0.018151721,-0.024911499,0.04097398,-0.08574702,-0.018468216,0.006287301,0.0034707082,-0.11436804,-0.02435953,0.09862275,-0.10254629,-0.0052881488,-0.039588694,-0.043306887,-0.06680646,-0.06780449,-0.031223163,0.030931469,0.028220683,-0.0661093,-0.03840806,0.031252783,-0.05087684,0.0028336996,-0.030282866,0.03930941,-0.05256396,-0.069197685,0.0034447445,0.02432427,0.0049537243,0.1052868,-0.010122162,0.012976276,0.061959095,0.023755964,0.041064225,0.005922462,0.003449399,0.0452687,0.082879715,-0.07546917,0.04581514,-0.044514254,-0.014725749,0.014866815,-0.08977002,-0.04876984,-0.0018893082,-0.07862647,0.018064655,0.019347534,-0.029741539,-0.017458694,-0.0026993658,-0.012679999,-0.022231888,0.05462102,0.016205007,0.044715405,-0.022569545,0.05918441,-0.070012584,0.0039685634,-0.018548189,-0.0059751417,0.073393226,0.021456826,-0.04628146,0.023776753,0.03100074,0.12547976,0.017390907,0.0044542924,-0.026016193,0.012034842,0.024371786,-0.018600773,0.042226132,0.036310975,-0.08284995,-0.0066107283,-0.048033595,-0.0050893766,-0.039431527,0.05697745,-0.010914817,-0.09513024,-0.026957335,-0.04725681,0.11483879,-0.022002736,-0.02994871,-0.024579978,0.002814087,-0.017082559,0.083105825,8.7113594e-33,0.09234239,-0.025476838,0.040270563,0.047660936,-0.037404288,0.057835598,-0.03234167,-0.032934383,0.03383086,-0.026627606,-0.042024925,0.016507447,-0.0076665096,0.06982816,-0.060870983,-0.044557523,-0.006630899,-0.010260317,0.13582516,0.05228652,-0.06538807,0.009977617,-0.031389914,0.071015455,-0.02153137,0.006873285,-0.050663125,0.035370927,-0.0840019,0.064636566,-0.003391023,0.025786696,-0.028407792,-0.039486203,-0.079235874,-0.052976586,0.022255933,0.0035879652,0.083210655,-0.042848535,0.12026206,0.0043243854,0.0012678114,0.021285068,0.031040087,0.014815401,-0.015365492,-0.030707017,0.006719507,0.017610107,-0.07073593,-0.028009713,-0.041915104,-0.043391187,-0.072421774,-0.0002625921,-0.068557635,-0.04044411,-0.10952344,-0.027822534,0.055085927,0.0509262,0.03871896,-0.05099818,-0.057140414,0.0037914726,-0.005784084,-0.021779632,0.014238248,0.036517832,-0.09253245,-0.021388376,0.0077026933,0.042528678,0.053045344,0.011592624,0.027719704,0.031440835,-0.07346644,-0.02198797,-0.0049135354,-0.044768173,0.033666395,0.0548526,0.09761683,0.09783208,0.02202999,0.031948972,0.027384238,0.11582916,-0.011682704,0.11217303,0.08319918,-0.038136873,0.019426953,-1.01885936e-32,0.035486404,-0.012717984,-0.04074719,-0.0018348976,-0.075062245,0.05563095,-0.03113583,-0.02152511,-0.022904366,-0.035890784,-0.057218608,-0.09962113,0.016546832,-0.07645821,-0.003565436,0.112233214,0.037351623,-0.023165135,-0.04876621,-0.045994915,0.0004943265,0.012439915,0.035358,-0.030472582,0.07716803,-0.062922575,0.029653085,-0.013997214,-0.014823674,0.026067631,0.104462504,-0.009272536,0.031023633,0.039234105,-0.008959698,0.04487805,-0.006307885,-0.04899405,-0.051752366,0.04226829,-0.06671336,0.013366819,0.016389597,0.016410692,0.053474855,0.009859007,-0.04218215,-0.16216123,-0.10143456,0.008243607,0.03669074,-0.11648532,-0.08593876,-0.052634433,0.0493317,0.0019078198,-0.038027104,-0.08133751,-0.03699539,-0.07666918,0.038231973,0.10252267,-0.08946413,-0.061763804,0.10113279,-0.052099477,-0.0028481223,-0.023610197,0.10307497,0.06229515,0.1313281,0.014240131,-0.008616693,0.030451605,-0.027564945,-0.0012578845,-0.09868623,0.027087014,-0.011197197,-0.026179023,-0.061018575,0.005162196,0.075192064,-0.019966478,-0.096971266,0.06765338,-0.03150254,0.09783654,-0.03540842,0.041673973,-0.02582773,-0.026563685,-0.07509124,-0.05915156,0.015080262,-3.9745828e-08,0.015269489,-0.04409394,-0.046224274,0.004466208,-0.022780292,-0.012275836,0.055564474,0.011993042,0.025961686,0.04696013,-0.01624292,-0.015153558,0.056096047,0.057172704,-0.048976935,-0.013728619,0.102325566,0.09508613,-0.03820271,-0.048928797,0.012836031,-0.0371599,-0.009967326,-0.0060251197,0.022093898,0.007370701,-0.013628026,0.09670031,-0.053992305,0.032837164,0.014499888,-0.033291847,-0.02312918,-0.04078829,0.10133685,-0.003943082,0.03293936,0.008532625,0.0011862312,-0.02928039,-0.016533481,0.014876894,-0.0422814,0.016586242,0.008748223,-0.12172321,0.003023835,0.036621515,0.013903459,0.03932318,-0.0032482417,0.01605665,0.058638666,0.048030827,0.03305184,-0.04895484,-0.025790527,0.04117211,-0.02278128,-0.057955105,0.06441347,0.15775594,-0.00670208,-0.042015575} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:52.99412+00 2026-01-30 02:01:11.100837+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1872 google Ci9DQUlRQUNvZENodHljRjlvT2xCalNUbDNSWEYyU2kxblptbFhRVlF3WjJWdFFuYxAB 1 t 1875 Go Karts Mar Menor unknown Bra gokarter og gøy bane bra gokarter og gøy bane 5 2025-12-01 01:52:39.833374+00 no v5.1 O1.02 {E1.04} V+ I2 CR-N {} {"O1.02": "Bra gokarter og gøy bane"} {0.008470681,0.12758712,-0.031538837,-0.051340554,0.04758632,-0.040598173,0.047097467,0.09317965,-0.00072863523,-0.034385853,0.045581456,-0.075358965,-0.049868576,-0.0403028,-0.0015172248,-0.045663707,-0.03945229,0.029251376,0.083618194,0.021245051,-0.05685062,0.06007776,0.032812458,-0.0073765446,-0.0015896222,-0.011382273,0.0776823,-0.03976956,0.014501169,-0.046670053,0.03989918,0.019402768,-0.019357668,0.022910107,-0.025840294,0.08505105,-0.044664,-0.09046031,-0.0032184098,0.046179004,-0.070815474,-0.0538105,-0.026447242,-0.07058201,0.0288083,0.18420076,-0.0030707403,0.016117355,-0.07984115,-0.0804594,0.0055484246,-0.11843934,-0.008121374,-0.02813428,0.062705904,-0.038171165,-0.013957348,0.033456855,0.026549885,-0.019215614,0.029688591,-0.038977865,-0.044925686,-0.033683687,-0.029924205,-0.010604796,0.036134083,0.019002607,-0.09066612,0.053964086,0.061692104,-0.048131123,0.012399876,-0.0233465,-0.097179405,-0.007867049,-0.07175433,0.013272838,0.015580027,0.023715338,0.00020746709,0.038771555,0.016923139,0.002492086,-0.018949276,0.02049633,0.010832273,0.00708343,0.03395779,-0.003140479,0.10495002,0.027211785,-0.08028095,0.010257143,-0.092542335,-0.055055488,0.10738651,-0.022846088,0.0618635,0.08401894,-0.027361266,0.025968377,0.0490559,0.05270241,-0.023025114,-0.0035293226,0.065412186,-0.0015784858,0.050367136,0.08419695,-0.063552454,0.00040841693,-0.037051268,-0.16833341,-0.04966881,-0.0614291,0.021540673,-0.032632336,-0.032871053,-0.03000117,0.02727863,-0.0067763105,0.011222518,0.053907774,0.043991975,0.06696317,-0.009151198,3.1949558e-33,-0.013035279,-0.009308779,-0.025160985,0.026978513,-0.046111032,0.025951453,-0.1155211,-0.085416816,0.03666856,-0.018216599,-0.009208803,-0.10576749,-0.09496926,-0.0030099095,0.021159366,0.042128503,0.015779769,-0.0065595964,-0.052070767,-0.003954915,0.04090681,-0.03385435,-0.013195046,0.023043921,-0.0026294885,-0.0045123072,0.095102735,-0.10115663,-0.047017466,0.010070844,0.0635076,-0.10346023,-0.008881804,0.014148534,-0.036232498,-0.042208012,0.0073879375,-0.01973426,-0.04320074,-0.06987326,0.0016648809,-0.10810903,0.019651363,0.025288695,0.044611577,0.061052926,0.05830409,-0.029987423,-0.0018230757,-0.049095556,0.004569476,-0.034219217,-0.1053087,0.058377862,-0.01667127,0.0071515134,-0.031593785,-0.023150407,0.0068537854,0.03997152,0.04123805,0.008117952,0.02785222,-0.057792164,0.0388635,-0.017255187,-0.014381897,-0.020601032,0.044084284,-0.04852105,0.052623186,-0.054782774,0.140911,-0.015094786,-0.08988407,0.053214848,0.010133645,0.025854569,-0.06446387,0.035366543,-0.08758183,-0.027876958,-0.029894993,-0.050605398,0.06911997,-0.0015509146,0.027977578,-0.14957471,0.03423316,0.038067568,-0.013315127,-0.007966848,0.054781385,-0.055440545,-0.039884783,-2.5958405e-33,-0.0050889743,0.009342638,-0.013434774,0.040641014,0.07362983,0.029158449,-0.051242072,-0.0015006049,-0.06374475,-0.007614771,-0.1022831,-0.011965078,0.05919201,0.010046199,0.036783736,0.03774283,0.07984837,0.039179303,-0.048262473,0.0008023362,-0.0015364471,-0.08259418,0.03274412,0.025140898,0.0070803207,0.08934045,0.039980028,0.05193291,-0.026513353,0.008186546,-0.015262583,-0.033820845,0.016533319,0.10458372,0.06660355,-0.028774401,0.029351825,0.10960476,-0.03350473,-0.015494755,-0.0039718486,-0.019912792,-0.06518256,0.03833432,-0.020965846,-0.027974391,0.034126915,0.072138354,0.05833172,-0.11236772,0.034846783,0.07200335,-0.031418722,-0.014519417,0.040232986,0.0042539407,0.0062358193,-0.04723058,-0.0021574448,0.014161957,0.10398523,0.018524254,-0.042552996,0.087126166,0.046366755,-0.027125534,-0.03314236,-0.010852926,0.007706044,0.05318637,0.00991795,0.018562194,-0.0055087428,-0.006773953,-0.0029719688,0.020243898,0.057818305,0.015496802,-0.0017663066,-0.0007889924,-0.023434335,-0.005565633,-0.0228253,0.07896879,0.030826673,-0.064298324,0.04234009,-0.05030934,-0.011052389,-0.03194161,-0.057764854,0.0945082,-0.0033408245,0.1164896,0.0385378,-1.738725e-08,0.0295019,-0.00057782524,-0.046278257,-0.0013639482,0.14109266,-0.08834443,-0.010440367,-0.025033593,-0.096179314,0.0557232,-0.06473692,0.038079415,-0.045757398,-0.0017838136,0.08826265,-0.0015530355,-0.013827163,0.033503287,-0.031218363,-0.011213643,0.055224773,-0.0132179875,-0.053016156,-0.053429265,-0.07411528,0.023363607,0.06033493,0.06569531,0.10370813,-0.010508493,0.038721826,0.1118955,-0.035631295,0.030938873,0.023841124,0.020026326,-0.073337376,0.089753635,-0.053611528,0.054875724,-0.04941217,-0.008338465,0.10571404,0.02044018,-0.09883509,-0.0017805838,0.031374484,-0.042289563,0.040375076,0.046845406,0.0019180472,0.012736522,-0.008286837,0.084396854,0.009985884,0.021737961,0.0011929908,0.0019417981,-0.037674677,0.021612693,-0.0037869709,-0.035946086,-0.0043446217,0.009178765} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:18.534148+00 2026-01-30 02:01:11.022336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1873 google ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB 1 t 1876 Go Karts Mar Menor unknown Tras probar varios circuitos de Karts de la Región de Murcia, este es sin duda el mejor por el que he circulado. Sin embargo los Karts no han sido los mejores (aunque no por ello malos). Los que tienen un volante de asas (no sé cómo llamarlo) en vez de uno redondo son bastante incómodos. Por lo demás una experiencia increíble para ir con un grupo de amigos. tras probar varios circuitos de karts de la región de murcia, este es sin duda el mejor por el que he circulado. sin embargo los karts no han sido los mejores (aunque no por ello malos). los que tienen un volante de asas (no sé cómo llamarlo) en vez de uno redondo son bastante incómodos. por lo demás una experiencia increíble para ir con un grupo de amigos. 4 2017-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "Tras probar varios circuitos de Karts de la Región de Murcia, este es sin duda el mejor por el que h", "V4.03": "Por lo demás una experiencia increíble para ir con un grupo de amigos."} {0.025551455,0.05981647,0.032437287,-0.06474459,-0.06716254,-0.014353006,0.008648988,0.011432353,0.031077897,0.037363727,0.12702346,-0.024866957,0.010183733,-0.0017247943,0.06583843,0.049999624,-0.01776535,0.018067652,0.0044949926,-0.029185941,0.094079435,-0.032936934,-0.08654174,0.042229433,-0.102261014,-0.024918178,0.058149185,0.032691654,-0.03014605,-0.13293284,-0.094846524,-0.0065739295,0.055136263,-0.0019955414,-0.07394198,-0.013586839,0.0056533697,-0.027105583,-0.04966873,0.05144787,-0.02127211,-0.021542912,-0.021489497,-0.05835365,-0.023540527,-0.0832925,-0.043448646,-0.006476911,0.0007934136,-0.048528686,-0.010661399,-0.0440768,-0.01782943,0.02615531,-0.0012184249,-0.07514498,-0.09420337,0.053496007,0.15248457,0.06795417,0.06122351,0.025045775,-0.010469177,0.028427849,-0.0091869505,-0.04633713,0.04779825,0.058169648,-0.09720364,0.052654184,0.08216922,-0.07974884,-0.0069620716,-0.0135433115,0.065900095,0.01842435,-0.018985935,-0.03575614,-0.05122403,-0.025127493,-0.016866168,0.020314738,-0.06390175,-0.078505866,0.03287513,-0.006675534,0.0021075162,-0.031718887,0.021586025,0.023300195,-0.053381898,0.010918574,-0.04511547,-0.040284336,0.047582686,-0.012971157,0.02421166,-0.06479548,0.0030490926,0.018687982,0.10376925,0.04076285,0.01529148,0.016127642,-0.051594745,0.05420044,0.009383249,-0.03471397,0.056399688,0.025285583,-0.054913178,0.019691275,-0.07615911,-0.0548014,-0.086241916,-0.02979921,0.0009516432,0.0426247,-0.02816267,0.025160693,-0.01213494,-0.028088432,-0.049416613,0.042672902,0.045946267,-0.053971063,0.032467842,1.3303575e-32,-0.04022504,-0.03695931,-0.017814705,0.035527073,0.011432389,-0.038736828,-0.054247383,-0.039863408,-0.074132875,-0.046880975,-0.04933602,0.08104398,0.007361651,0.04374569,0.1265315,-0.0517419,-0.0007923319,-0.11116907,0.050536536,0.010574667,-0.022244938,-0.014503517,-0.0044220993,0.03498427,-0.06036406,0.07702508,0.081550576,-0.008466709,-0.12052352,0.06504129,-0.017239831,0.0005475559,0.03445195,0.09214865,-0.105831645,0.062112976,0.011038264,0.0483675,-0.02203506,-0.018796213,-0.014176849,-0.030111527,-0.062094927,0.008582862,-0.015218011,-0.047375705,0.08080135,0.016057765,0.02764865,0.08826337,-0.08898071,0.014141028,-0.0047019967,-0.07117002,0.08492173,0.024356522,-0.05322284,0.045324363,-0.034113415,-0.036388,0.0306447,0.01757315,0.014566574,-0.024572328,-0.055021882,0.0022444585,-0.012606694,-0.028995754,0.08259157,-0.0010949469,-0.06650131,0.05456721,-0.034305084,0.014623931,0.007049543,0.009998116,-0.09335662,0.072550155,0.025207115,0.034071945,-0.070388675,-0.0398871,-0.024375083,0.042436443,0.083725415,0.04374633,0.0324709,0.0218252,-0.022706388,0.143771,-0.022913573,0.056932252,0.050990846,0.038750943,0.047778387,-1.4004954e-32,0.008638621,0.05672437,0.105350524,0.01990675,-0.0065952977,0.01260149,0.03288299,-0.012936103,-0.097461514,-0.014550729,-0.081654735,-0.043404296,0.0090163965,-0.041569788,0.036611363,0.042236377,0.01942544,-0.007192606,-0.031861275,-0.05238137,-0.0054110168,0.027259126,0.046943665,-0.0017186571,-0.05267861,-0.013118621,-0.028874055,-0.013652359,-0.11710179,-0.003107134,0.044136845,-0.03794639,0.010375413,0.038400814,-0.08535095,0.02879608,0.02364043,0.08929062,-0.057851493,-0.01792441,0.020754322,0.09151648,-0.016344462,-0.017316332,-0.07384662,0.051331494,0.10764257,-0.1286928,-0.013560966,-0.06649593,0.08648855,-0.011737355,-0.026127033,-0.086930685,-0.0031073107,0.003915956,-0.04559599,-0.0016398628,-0.049683213,-0.035366762,0.04429746,-0.03802467,0.022966413,-0.047034048,0.07068848,0.024126215,0.01759104,0.028778002,0.024866171,0.04653299,0.09895608,0.038557734,-0.08517796,-0.10660829,0.015884358,-0.021353066,-0.08594377,-0.0007804222,-0.06256317,-0.032348238,0.040835295,-0.063270815,-0.04704002,-0.027037818,-0.023958659,0.018853055,-0.017408075,0.06636178,0.049678273,0.071656264,-0.0008391578,0.12588303,-0.07095185,-0.02672916,0.0070255473,-5.4876427e-08,0.044852618,-0.03133391,-0.10320638,0.027708672,-0.024202103,-0.011606464,0.0043684132,0.008208517,-0.014001115,0.122207694,0.0064044427,0.004503475,-0.010182167,0.04739373,0.043238718,0.024703361,0.0473092,0.107327506,0.0027395901,-0.017098544,0.021955833,-0.020992836,-0.019349445,0.07018484,0.023403177,-0.043502893,-0.035623416,0.009082195,0.053642355,0.025732717,-0.033445187,-0.01276079,-0.08259359,-0.030685555,-0.038265374,-0.09042846,-0.06712368,0.038535077,0.003074965,0.025444927,0.07724914,-0.06799002,-0.035535444,0.04372147,-0.10120161,-0.025429415,-0.008199577,0.024956878,-0.042937532,0.052941423,-0.07262322,-0.05358074,-0.009119737,0.010019069,0.020718258,-0.03417797,0.08974432,-0.011422634,0.002892351,-0.04580131,0.027402556,0.059096295,0.007914178,-0.08118438} 0.93333334 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:27.366286+00 2026-01-30 02:01:11.025907+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1972 google ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB 1 t 1975 Go Karts Mar Menor unknown Menudo circuito!!!!!. Amplio divertido. Creo que no hay ninguno de estas características en los alrededores!!!. El personal es excelente. El problema es que después de probar este los demás saben a poco. menudo circuito!!!!!. amplio divertido. creo que no hay ninguno de estas características en los alrededores!!!. el personal es excelente. el problema es que después de probar este los demás saben a poco. 5 2018-02-01 01:52:39.833374+00 es v5.1 O2.03 {O1.02} V+ I3 CR-B {} {"O1.02": "El problema es que después de probar este los demás saben a poco.", "O2.03": "Menudo circuito!!!!!. Amplio divertido. Creo que no hay ninguno de estas características en los alre", "P1.01": "El personal es excelente."} {-0.0247396,0.043154035,0.038030755,-0.120571874,-0.08907246,-0.040571164,0.07841511,0.059117634,-0.0035167048,0.0020859996,0.102231815,-0.0694737,-0.02255252,-0.0057044066,0.028797112,0.034243528,-0.0034559704,0.050020773,0.03901334,0.03465401,0.08561195,-0.0013088343,-0.033479158,0.07246692,-0.10462631,0.039903995,0.038733944,0.03072349,-0.07635273,-0.16608925,0.012370686,0.044969205,0.018708192,-0.068555675,-0.012230978,0.009394057,-0.0529835,0.010583044,-0.025224568,0.09251849,-0.07071252,-0.057158172,0.040347297,-0.10661485,0.034984224,-0.05335488,0.009743843,0.0044319844,0.0704826,-0.053661138,-0.05561643,-0.05863498,0.076616034,0.016813157,-0.02319175,-0.029973514,-0.040614087,0.026265427,0.061105255,0.097473174,-0.015879955,-0.0011421026,-0.053870227,0.016764993,0.0071541527,-0.010769549,0.018426232,0.038614742,-0.03913716,0.074770555,0.07784388,-0.04912389,-0.0043512587,-0.057968795,0.032054793,0.038521126,0.008018499,-0.04315364,-0.015710233,0.015592538,-0.004480606,-0.0146534555,-0.09349831,-0.08008162,0.07567099,0.023998743,-0.019161958,-0.00018669307,-0.011116019,-0.039686188,-0.034726586,-0.0046769124,-0.02071154,-0.06312035,-0.026889088,-0.029563757,-0.036639668,-0.13478824,-0.02083169,0.045008592,0.0344774,0.059989188,0.0076211225,-0.04302772,-0.03428751,0.009762249,0.050564013,0.08600132,-0.0076062977,-0.015086797,-0.0006773539,0.0039596595,-0.039287448,-0.06687483,-0.025946045,0.015780564,0.0064625656,-0.038222156,-0.01314527,-0.037468687,-0.036896728,-0.03596825,-0.11242329,0.026899332,0.007908615,0.009152136,0.076405846,7.5545246e-33,-0.047885016,-0.012413567,-0.025045121,0.0025547298,0.008921208,0.0057940534,-0.07819337,0.008415738,0.007312842,-0.058010895,-0.013142344,0.023516143,-0.0002920618,0.053253658,0.04551895,-0.04270244,0.021586144,-0.0064765126,0.07146576,0.011214275,0.007619468,-0.07968321,-0.03821454,0.051059034,-0.01047483,0.07678242,0.023408284,-0.028337147,-0.0668844,0.044728015,-0.037852213,0.030433007,0.012099934,0.03381754,-0.027166324,0.036713433,0.007821861,0.027611079,0.04382693,0.0065512485,-0.01688384,0.03741387,-0.042152345,0.05514183,0.02712668,-0.04821941,0.069734536,0.04424272,0.13689023,0.06420363,-0.03869201,-0.042488698,-0.0013160919,-0.02354947,-0.022040794,0.04331661,-0.051426794,0.062262755,0.0392757,-0.007356839,-0.0046264236,0.0678858,-0.016692704,-0.05154164,-0.06349345,0.056303512,0.023789871,-0.047859434,0.116475,-0.024221368,-0.13227622,-0.019893378,-0.0027406733,0.05223581,-0.023772597,0.02531751,-0.07066084,-0.0041909833,0.017675154,-0.02154312,-0.00718478,-0.039748576,0.030832475,-0.0056557455,0.092416234,0.097830124,0.070994966,0.056240033,-0.041808944,0.08943359,-0.05077229,0.09044215,0.033175424,-0.0073796785,0.11133783,-8.859951e-33,0.0334963,-0.006924795,0.00991844,-0.008067745,0.018943302,0.013081782,0.021981604,-0.04619347,-0.09251625,-0.026033858,-0.08338788,-0.02218622,0.06716027,-0.08206951,-0.048904594,0.023407115,-0.033521008,-0.051245227,-0.06383049,0.04422524,-0.03268218,0.11305034,0.06319899,-0.026731608,-0.07478607,-0.016824147,-0.037421826,0.015923984,0.014098928,0.025633039,-0.044598963,0.040056087,-0.023950102,-0.010469622,-0.0048182053,0.03463119,-0.009676366,0.062814,0.010285419,0.065498486,-0.046205606,0.047201067,0.030715255,0.022928625,-0.06679945,0.010361328,0.035481602,-0.104696065,-0.112663426,-0.022855667,-0.05613088,-0.03154187,-0.012685597,-0.07312883,0.041075762,-0.066195175,0.041772902,-0.10342702,-0.095741875,-0.0032672877,0.05278587,0.0070439302,0.026945876,-0.107491314,0.1097037,-0.0072899433,-0.042893205,0.00090018276,0.07243232,0.030663058,0.13475546,0.055672213,0.008640226,-0.018945765,-0.06106408,-0.04018691,-0.11115962,0.018699896,0.0014348518,-0.026013035,0.00027954747,-0.0054988465,0.040871013,-0.07994614,-0.01418371,-0.05709694,-0.008529022,-0.005437229,-0.03869357,0.032964535,-0.032827433,0.037640084,-0.02346881,0.01632185,0.016601289,-4.299117e-08,0.022824887,-0.024044149,0.0291443,0.043394387,0.027785167,-0.102631934,-0.07302859,-0.005717811,-0.010901796,0.005898135,0.0011816703,-0.011718981,0.043247603,0.08406407,0.005511762,0.022895034,0.11838419,0.14199913,-0.06278137,-0.0014112043,0.030760951,-0.03245,-0.0059735253,-0.004162458,0.076452285,0.046642013,0.012332072,0.035266764,-0.010995118,-0.057193957,-0.027474016,-0.07567595,-0.016977603,-0.056819454,0.019497925,0.07446934,-0.01678789,0.033436425,-0.0320334,-0.023868643,0.022887714,-0.078236006,-0.05404859,0.024317674,-0.07846216,-0.055056687,0.031857044,-0.024104027,-0.009512008,0.11854571,-0.026494443,-0.04905661,0.030559847,0.0029072675,0.048611112,0.03295015,0.013107649,-0.010574749,-0.07540949,0.0015318186,0.031209713,0.12502238,-0.055429198,-0.06444637} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:38.595552+00 2026-01-30 02:01:11.48186+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1973 google ChdDSUhNMG9nS0VJQ0FnTURvcVBETHFBRRAB 1 t 1976 Go Karts Mar Menor unknown Bra anläggning för både vuxna, tonåringar och barn! bra anläggning för både vuxna, tonåringar och barn! 5 2025-05-05 00:52:39.833374+00 sv v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Bra anläggning för både vuxna, tonåringar och barn!"} {-0.017925229,0.04938042,-0.00025643696,-0.055046532,-0.09648177,0.0072203577,-0.03243672,0.08636176,-0.0032606157,0.00799456,0.018026663,-0.07715327,-0.030656185,0.020121148,-0.018037885,-0.07402946,-0.103162624,0.08698547,0.048067447,0.06972513,-0.0045309537,0.0066367914,-0.029328143,-0.030852307,0.038455248,0.00437654,0.013706747,-0.045759693,-0.015628869,-0.09320788,0.052923318,0.0660158,0.0029275191,-0.017726298,0.024246253,0.019512646,-0.0027270613,-0.04526861,0.017867146,0.024239052,-0.11000622,-0.073130876,-0.080928214,-0.03828679,0.024407433,0.0142923,0.02096095,0.0030440295,-0.023538556,0.024443556,-0.020479767,-0.030225154,0.050839856,0.036628988,0.014653397,0.03959032,0.06300493,0.062075745,-0.028122367,0.016939227,0.005083714,0.031993285,-0.07868311,-0.005931308,-0.026016084,-0.022415161,-0.021457758,0.02709055,-0.06382054,0.023063606,0.068364196,-0.119578786,-0.013044134,0.008464893,-0.045588717,0.023639744,-0.02418994,-0.06669798,0.11893779,-0.053803254,0.04675165,-0.016386079,-0.08970476,-0.035766482,0.010026762,0.026823334,0.028525861,-0.04333311,0.067212604,0.0069864923,0.012530915,0.06428868,-0.084909946,-0.023022534,0.06997315,-0.0073112417,-0.040581066,0.035260882,0.022104973,0.033305056,0.03325928,0.03644645,-0.0549372,-0.020597223,-0.04136859,-0.044484604,-0.0036663553,-0.075368896,0.0174243,0.036223833,-0.02631883,-0.043546047,-0.0009846946,-0.05473675,0.014040169,0.07043569,0.016871465,-0.03639483,-0.069099024,-0.12663177,0.014422193,0.0689341,-0.008137336,0.018542495,0.07104264,-0.046333723,0.04692141,8.369284e-34,-0.04478717,-0.045393568,-0.09260096,0.059412174,0.08363738,0.044432536,-0.0848402,-0.061190195,-0.0011000326,0.059171513,-0.01875386,-0.051327378,-0.075116955,-0.0043065944,0.06671043,0.03979655,0.02180731,-0.06421909,-0.064179674,-0.0013704539,-0.04461159,0.030848688,0.030859772,0.0030900938,0.012076513,-0.04617829,0.036646202,-0.06829823,-0.0686151,0.015992926,0.022123698,-0.043114204,-0.03399433,-0.07869774,0.017844578,-0.097804435,0.0069403765,-0.0018442051,-0.07467329,0.00802392,0.047693036,-0.0077331457,0.022891164,-0.0032750377,0.024845872,0.055032875,0.06313755,0.040520757,0.025829548,-0.03523512,0.008883318,-0.039134398,-0.11243968,0.061532304,0.022061974,0.11510646,-0.021989448,0.04819979,0.055843886,-0.018765224,5.826688e-05,-0.0005640123,0.06847899,-0.07626665,0.051189505,-0.06873589,0.051236033,0.0064549167,0.049183663,-0.028211385,0.040108047,-0.069130756,-0.0032570271,-0.054712735,-0.017886184,0.019086612,-0.032082044,0.038746476,-0.016744038,-0.04503663,-0.015509868,0.056646895,0.021662533,0.004444862,0.031761315,-0.014351241,0.044114165,-0.07390128,-0.02235821,0.038088143,0.012273595,0.04734629,-0.0016357851,-0.08807804,0.038660895,-1.7800158e-33,0.057957582,-0.0086864475,-0.08049799,0.055331796,0.0072110067,0.005554617,-0.007040205,-0.030014182,-0.034007393,0.010407393,-0.05515877,-0.020388039,0.0065529062,0.022880731,0.011470861,0.030951472,0.09274717,0.028679429,0.01146254,-0.05169386,0.027188435,0.0127656,-0.028783545,0.110996336,0.046846356,-0.025090577,0.049229328,0.00031686292,-0.074195825,-0.076097675,-0.0018346859,-0.03886727,0.054921404,0.003752041,0.027511073,0.04167718,0.18925124,0.036570758,-0.114160724,0.022246355,-0.03018632,0.016500471,-0.07237034,-0.049518205,-0.05806988,-0.08115171,-0.052418664,-0.02188508,-0.022581344,-0.01255199,0.106026396,-0.03522186,0.02688111,-0.032245398,0.05225224,-0.003413059,0.007316245,-0.11898268,0.06912603,0.06986045,0.07299681,0.04147456,0.010222696,0.048424687,0.09111166,-0.06831073,-0.095303036,-0.08399833,0.061266344,-0.06278436,0.06322526,0.013557279,-0.024284331,0.10015214,-0.030191557,-0.03760899,0.04626616,0.017899,0.09118793,-0.009855058,-0.11712646,-0.048336003,0.070147745,0.061411448,-0.0025083602,-0.040235672,0.040298484,0.002693038,0.012116328,0.01769634,0.014453616,0.05082338,-0.0054144203,0.048074134,0.023424665,-1.9470555e-08,-0.013785429,-0.026383393,0.0038388767,0.029268363,0.13107437,-0.12962295,-0.019674461,0.023086604,-0.029559536,-0.013817649,-0.08317788,-0.012902065,-0.042047977,0.076939754,0.038163282,0.09036948,0.016803078,0.06459437,-0.06939808,-0.042691913,0.08795096,0.04659663,-0.10687981,-0.02868164,-0.021791147,0.027310153,-0.019996457,0.064216405,0.08720289,-0.029948052,0.020213677,0.04919065,0.04028218,-0.11057458,-0.044806555,0.08271125,0.026588835,0.023591593,0.012525239,0.057635173,-0.027560886,-0.023129212,0.14727804,-0.04582467,-0.045014963,-0.013410141,-0.019104468,0.00900036,0.039757885,-0.0065012616,-0.006232744,0.054054145,0.09064241,0.05080823,-0.0011686649,-0.006628709,0.022434033,-0.013876034,0.010454412,0.012380751,0.055698648,0.013953265,-0.013033742,-0.024112295} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:42.85386+00 2026-01-30 02:01:11.491089+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1875 google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE 1 t 1878 Go Karts Mar Menor unknown Me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras, lástima que me pilla muy lejos de casa y no tengo ninguno más cerca pero éste en cuestión me gusta bastante y es de los mejores que hay, aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también. Muy recomendado para pasar un gran rato entre amigos!! me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras, lástima que me pilla muy lejos de casa y no tengo ninguno más cerca pero éste en cuestión me gusta bastante y es de los mejores que hay, aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también. muy recomendado para pasar un gran rato entre amigos!! 5 2020-02-01 01:52:39.833374+00 es v5.1 R3.04 {O1.01} V+ I3 CR-N {} {"A4.01": "lástima que me pilla muy lejos de casa y no tengo ninguno más cerca", "O1.02": "aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también", "R3.04": "Me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras", "V4.01": "pero éste en cuestión me gusta bastante y es de los mejores que hay", "V4.03": "Muy recomendado para pasar un gran rato entre amigos!!"} {0.059997957,-0.009216085,0.015521662,-0.09236128,-0.051242232,-0.036757387,0.10383185,-0.009656844,0.015047269,0.049599882,0.034253623,0.0069494513,-0.041642327,0.039220415,0.053640585,0.0133881485,-0.014386749,0.036561396,0.017346974,0.033118434,0.03915313,-0.030107819,-0.037255086,0.057312503,-0.12084221,-0.028091457,0.015749358,-0.024057569,-0.06482908,-0.10410587,0.022482928,0.09380076,0.07386297,-0.04533551,0.013299961,-0.033413704,-0.02623793,-0.08026516,-0.024188811,0.039789528,-0.02883981,-0.008355859,0.031280287,0.011906123,-0.017690605,-0.05239919,0.026542705,0.0019325507,0.07866521,-0.019552076,-0.053160626,0.0019969859,-0.02731763,0.016114341,-0.036923982,-0.02613628,-0.0367069,-0.026677988,0.111194715,0.050104547,0.024438117,0.1011952,-0.02251906,0.019560395,0.011469075,-0.05245847,0.06118212,0.021444108,-0.06746597,0.066635355,0.10031752,-0.109152265,-0.017636431,0.03988319,-0.017949162,0.012582557,-0.014467478,-0.00072037545,-0.046560925,-0.07454566,-0.045717318,0.0060487003,-0.0136119975,-0.0758166,-0.05970135,0.0075483536,-0.048563745,0.06978392,0.019303858,-0.04072874,0.047311597,0.048998684,-0.10260211,-0.03895997,-2.6227703e-05,-0.01920213,-0.0030809669,-0.02939673,-0.0039666705,0.029802952,0.086776555,0.10417006,0.0661936,0.016341444,0.0020805213,0.058896866,0.031206546,-0.021837834,0.030864723,0.027440915,-0.10147535,-0.02723292,-0.0417553,0.026376411,-0.026933346,-0.049542762,0.089520715,-0.00319956,0.020756343,-0.021902272,0.002767848,-0.024207445,-0.015244201,-0.023632249,0.009561075,-0.03267562,0.070007004,1.6604535e-32,-0.020978335,-0.050736003,-0.0043782946,0.045288432,-0.0077065765,-0.014156258,-0.026208883,-0.046452425,-0.082315944,0.064797364,-0.040469907,-0.010456593,-0.048374876,0.036303915,0.020757422,0.05560923,-0.014363237,-0.0804993,0.047383446,0.04227466,-0.0609947,-0.030502228,-0.0003499326,0.03448822,-0.033692542,0.06419847,0.034847982,-0.008071643,-0.025200928,0.03095449,-0.030910183,0.030382294,-0.009677364,-0.041250277,-0.09941343,-0.0631471,0.034143075,0.0079313535,-0.020452973,-0.04500962,0.07365848,-0.024837498,0.039272584,0.0483179,-0.04209204,0.020296406,0.037442066,0.017305532,0.044651538,0.03718008,-0.075552195,-0.086202756,-0.018023571,-0.03122985,-0.032442585,-0.009054524,-0.067311265,-0.027867993,-0.031686954,-0.084127545,0.084265806,-0.068624325,-0.011709754,-0.05532507,-0.038666107,-0.09028714,0.03368918,0.04720849,0.12803471,0.031140689,-0.0067865374,-0.054763492,-0.054743573,-0.039745625,0.077244475,0.0021474024,0.014106644,0.062010784,0.00048010502,0.038180217,0.03812812,0.061272237,-0.044515964,0.07642194,0.1094809,0.11740596,0.08728177,0.025606984,-0.052896015,0.13468501,-0.029173061,0.077252544,0.06061163,-0.0446491,0.0043811295,-1.5857044e-32,0.00021397056,0.030728169,0.029919958,0.039891876,-0.032394964,-0.026237104,0.026953917,0.028396446,0.014893236,-0.07425213,-0.06628868,-0.10420542,0.08393275,-0.054650143,0.004661675,0.087799944,0.06220502,-0.11649021,-0.022275146,-0.058879405,-0.04873246,0.05129824,0.012804629,-0.019252919,0.0056508523,-0.06271868,-0.0038695938,0.09980833,-0.06719234,-0.053250734,0.082151376,-0.0742836,0.012514812,0.08321611,-0.024579756,0.00857484,0.02602522,0.0028441506,-0.08418068,0.023960982,0.0039514056,0.092508204,-0.07976368,-0.019735547,-0.010370328,0.036258288,0.06447442,-0.078653745,-0.01750288,-0.038851283,0.0627246,-0.045916066,-0.075310595,-0.07051843,0.042819552,-0.010945335,0.04476014,-0.047625665,-0.045638263,-0.048725586,0.0237988,0.034807567,-0.013620559,-0.05654407,0.05047224,-0.0035239048,-0.034947716,-0.003587469,-0.008321471,0.06777624,0.06982352,0.04395617,-0.08268936,0.036385853,0.015847502,-0.05224434,-0.031239646,-0.050893024,0.025246255,-0.10242815,0.011723884,-0.026716376,-0.031818457,-0.027039392,-0.025431741,-0.0027399815,-0.037693787,0.05390441,0.03139104,0.0516845,0.013319614,0.02728766,-0.071551844,-0.032786965,-0.04899231,-5.615068e-08,0.00874953,-0.036472514,-0.04632705,-0.028056432,0.025120152,-0.05331784,0.026984554,0.038348604,0.046317402,0.035747133,0.017928787,-0.023005974,0.014804182,0.051144563,-0.03050832,0.11089482,0.120235175,0.04291808,-0.00681125,-0.012384338,0.038486645,-0.0006328943,-0.050471306,0.019623328,-0.027655164,0.051473968,-0.023320707,0.03588003,0.021382341,-0.00055297604,0.0019337005,-0.014216083,-0.028362585,-0.03011635,-0.030734554,-0.10410817,-0.023111071,0.016241184,0.0041319076,-0.025741242,0.06460423,-0.12134102,-0.11065125,0.008816573,-0.16391484,-0.0758076,0.0047309324,-0.013220782,-0.03791425,0.036067978,-0.02121785,-0.040018745,0.064100645,0.0056176917,0.010062073,-0.09867484,0.060292333,0.028812947,0.07183753,0.007828945,0.028144911,0.097515464,-0.05733224,-0.08537923} 0.92 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:16:44.727473+00 2026-01-30 02:01:11.031727+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1976 google ChdDSUhNMG9nS0VJQ0FnSURQaUlQT3NRRRAB 1 t 1979 Go Karts Mar Menor unknown Toll Strecke, super Anlage. Sehr Empfehlenswert. toll strecke, super anlage. sehr empfehlenswert. 5 2025-01-30 01:52:39.833374+00 de v5.1 O2.03 {} V+ I3 CR-N {} {"O2.03": "Toll Strecke, super Anlage. Sehr Empfehlenswert."} {-0.046070173,0.05432459,-0.005795408,0.0044725947,-0.11922783,0.03496746,0.06169548,0.10376161,-0.01565134,-0.041191857,0.013436242,-0.043192346,-0.008985173,-0.056595385,-0.06946703,-0.074967965,-0.014627664,0.03557817,0.03759658,0.0057943957,-0.01710223,-0.01199447,-0.007103141,-0.05935251,0.0201211,0.0021366093,-0.047848117,-0.04267256,0.045385685,-0.083466314,0.036676604,-0.06291886,-0.04878725,-0.0010598032,0.086771876,0.02993819,-0.03132565,-0.041531857,-0.0107682245,0.047492955,-0.030737199,-0.009545358,-0.08593762,-0.08620636,0.02764667,0.01889628,0.025800342,0.044396926,-0.091853,0.02777073,-0.0920937,-0.07606755,0.06449327,0.021008858,-0.011182464,-0.07109211,0.05151027,-0.024842916,-0.04829374,-0.05976491,-0.05670569,-0.024942907,-0.051656496,0.0060242154,-0.06668774,0.023001218,0.030942896,-0.015338922,-0.048327766,0.060212437,-0.0013046339,-0.02681552,0.061211437,0.016134514,0.031825677,-0.04902173,-0.05066449,-0.0010823689,0.036046345,0.020152288,0.063233025,-0.02747422,-0.071316555,0.061160754,0.033971842,0.019398902,0.0077624014,-0.094235614,0.0658011,0.010860534,0.012987551,-0.053984832,-0.09531587,0.025718158,-0.033686582,0.011515584,-0.03456548,0.06168891,-0.040666267,0.06911199,-0.03928041,-0.0060174735,0.04713905,0.04714324,-0.05451316,-0.023025142,-0.08385491,-0.022743503,0.03209952,-0.007925819,-0.030770449,-0.027977617,0.014185441,-0.056041226,0.086482234,0.026805546,0.045625143,-0.081952095,-0.0070994813,-0.038225494,0.047169626,0.01695287,-0.021460265,0.026026297,0.01892554,0.01372909,-0.016443945,-1.0926913e-33,0.0059310496,0.028180035,0.041606825,0.047950685,-0.036899853,-0.0046224324,-0.13132156,0.03356835,0.0070862942,-0.04820694,0.006640624,-0.05101689,0.016358942,-0.02925763,0.016832052,0.027526034,-0.02570708,0.009818705,0.075960375,-0.037808605,0.057813585,-0.043552708,0.07186106,0.020483945,-0.03564197,-0.091744706,0.07834151,-0.035936177,0.02190358,0.06496882,0.08353834,-0.016734146,-0.031370416,-0.019311082,-0.015708318,-0.07834328,-0.035603672,-0.0002665338,-0.0015025251,-0.04611551,0.0072129667,-0.006050024,-0.0012371741,-0.030783033,0.084840365,-0.030573793,0.054652143,0.0145361805,0.119786225,-0.0053431364,-0.015996758,0.009935119,-0.03349401,0.0012959501,-0.051589716,0.049023155,-0.04061109,0.027726883,-0.02075095,0.021089626,0.029869609,-0.0061833295,0.0070125316,-0.01130624,0.042190984,-0.013588435,-0.0074059237,0.066254646,-0.0006829705,-0.02555398,-0.08405271,-0.06875994,-0.006323703,0.042934295,-0.094081774,0.064246245,-0.013338813,0.060296454,0.042436473,0.007828323,-0.1055088,0.01987299,-0.04173458,-0.058233302,0.07812059,-0.056067336,0.038002677,-0.121134035,0.06833487,0.069696456,0.023370987,-0.014249419,0.00072921114,-0.0055453046,-0.013155047,-1.7765727e-33,-0.015723633,-0.018437255,-0.09133608,0.10720847,0.08073204,0.016299149,-0.037473246,0.107057534,-0.012387292,0.11671608,0.012460138,0.013034017,0.03573852,-0.038381908,0.07435812,0.021409307,0.09097671,-0.03650857,-0.045937516,-0.021047251,0.025608279,-0.013491667,0.047583114,0.09040517,-0.009218597,0.062411696,0.031242518,-0.02519603,-0.03785211,0.036315702,-0.014990385,-0.0070262514,0.021754295,0.09308716,-0.032611333,0.045073442,0.09071974,0.053202283,-0.007366587,0.034945156,0.021770654,0.013479488,-0.009453966,0.0736615,0.09888544,-0.05422013,-0.20338638,0.032201815,-0.049904868,-0.06743368,0.017749256,0.055408698,0.034551002,-0.0984985,0.024079323,0.0032566295,-0.016515309,-0.076207176,-0.06475648,0.044007678,0.093945935,0.09354302,-0.0021943285,0.0011253358,0.09794081,-0.151267,-0.030489733,-0.0993118,-0.024009293,-0.014067648,0.037771437,0.03462649,0.0059995498,-0.06660025,-0.002856476,-0.07780097,0.02172618,0.06439262,-0.020648548,-0.018250806,-0.07030996,-0.0040149977,0.06260955,0.015794381,-0.016537992,-0.009474025,-0.008969406,0.002885262,0.094381735,0.0017183318,-0.027956862,0.022261625,-0.045604054,0.018318912,0.012665956,-2.2424526e-08,0.0214359,-0.062725745,-0.009739929,0.0044190367,-0.004793123,-0.14161877,-0.031178692,0.010130092,-0.095244475,0.024396101,0.03546497,0.044019815,-0.024536062,0.0320635,0.037584577,-0.022193385,-0.030165404,-0.0025656552,-0.057795126,-0.07207968,0.050709594,-0.06032128,-0.007081282,0.06985961,-0.023366164,0.011819182,-0.019238876,-0.08433768,-0.005287893,-0.06010815,0.006552609,0.039439578,0.04127488,-0.009815176,-0.07038669,0.06814053,0.070058525,-0.00096882216,-0.04124779,0.12669142,0.04361195,0.03225277,0.107449375,0.010171731,0.03929964,0.0018989528,-0.039999213,0.033228286,0.04896085,0.05374022,-0.0863949,-0.007252242,0.0036276965,0.05477161,-0.047056504,-0.0064012283,-0.008751248,-0.04299518,-0.061911948,0.017038712,0.1315142,-0.0063728835,0.0029920242,0.061990872} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:03.589912+00 2026-01-30 02:01:11.517826+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1878 google ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB 1 t 1881 Go Karts Mar Menor unknown Accueil sympathique. Explication facile via whatsapp pour se renseigner. Réponse rapide. Nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands. Un moment sympathique à partager entre amis ou en famille. accueil sympathique. explication facile via whatsapp pour se renseigner. réponse rapide. nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands. un moment sympathique à partager entre amis ou en famille. 5 2022-01-31 01:52:39.833374+00 fr v5.1 O2.02 {A3.02} V+ I3 CR-N {} {"O2.02": "Nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands.", "P1.01": "Accueil sympathique.", "P4.01": "Explication facile via whatsapp pour se renseigner. Réponse rapide.", "V4.03": "Un moment sympathique à partager entre amis ou en famille."} {-0.03063508,0.056065343,0.038690582,-0.00450167,-0.04677605,0.019363543,0.045938313,0.1167861,-0.03778293,0.027734414,0.105924636,-0.08268123,-0.0011823376,-0.03743819,-0.03992417,-0.05809732,-0.03869864,0.03664794,0.03952644,-0.0028367653,-0.060691655,-0.069065645,-0.007085178,0.051535096,-0.059472263,-0.01899546,-0.094639614,0.090856954,0.02809054,-0.058695637,-0.046927687,0.02442177,0.018692961,-0.015423647,-0.037041064,0.06720768,-0.009919687,-0.02011307,-0.051192638,-0.027535507,-0.035871726,-0.10134669,-0.0871809,-0.048933927,0.042366292,0.04899077,0.014129623,0.09524822,-0.017951006,-0.02959192,-0.045445222,-0.028156973,0.065172926,-0.044210255,0.0050880644,-0.05544148,-0.016611706,0.013109224,-0.009072189,-0.00033178116,0.037133846,0.024274776,-0.037619952,-0.0120322285,-0.039346334,-0.046437312,0.02425473,0.0066350335,0.014210656,0.09257662,0.08484415,-0.05798349,-0.061131574,0.08130213,-0.01745505,0.038110808,0.017723594,-0.025789035,-0.01579396,-0.09574454,-0.033272754,-0.036482073,0.024663176,-0.04202628,-0.0119942045,-0.07960333,-0.00018333565,0.03606171,0.038481276,-0.03147957,-0.03010671,-0.015394792,-0.031588398,-0.018976497,0.060465295,0.033403415,-0.07381072,0.027217204,0.01752737,-0.006116164,0.016494012,0.05732905,0.02088383,0.042051256,-0.05663602,0.03025285,-0.07064161,-0.031579643,-0.0186571,-0.024311401,-0.07012415,0.021556934,-0.05710945,-0.0074053197,-0.009771923,-0.0030281674,-0.026000848,-0.12108699,-0.027561752,0.020166153,0.10002177,0.010664792,-0.041016895,0.053507604,0.063424535,-0.045629498,0.074718006,1.3027351e-32,-0.06719619,0.009157761,0.05398468,-0.027014403,-0.006368377,-0.065006934,-0.082115985,-0.036716446,-0.005660767,0.0429136,0.009562418,0.05663277,0.0030029411,-0.025114203,0.058164928,-0.069562115,-0.044930425,-0.010814153,0.082405716,-0.07948255,-0.07524208,0.012596577,-0.007989219,0.10709073,0.043663334,0.0334206,0.041911483,0.022111923,-0.014665451,0.036331363,0.070215344,0.013184212,-0.13144638,-0.01566329,-0.08466066,-0.04980942,-0.006517891,-0.022195347,-0.052380387,-0.007264303,0.027068706,-0.030730627,-0.030951684,-0.03173626,-0.046310283,0.01836238,0.04374725,0.016905254,0.044250432,0.033136327,-0.041639384,-0.012116048,0.012331667,-0.028894661,-0.017281571,0.017229585,0.024364335,-0.036940586,-0.11566553,-0.052042242,-0.0022310892,-0.044621993,0.0042861593,-0.037761655,-0.04479537,-0.03846342,0.082439214,0.025776885,-0.015053018,0.043962725,-0.07711203,-0.017034149,-0.0124788,0.0061304453,0.030132497,0.03677653,-0.028561952,0.026317384,-0.11574746,-0.041163307,-0.102284156,0.019885115,-0.04017286,-0.0237064,0.08719311,0.021604227,0.01591923,0.01680461,0.013584106,0.025843015,-0.02083862,0.05134776,-0.06812531,0.079960756,-0.036198523,-1.4979917e-32,-0.013763325,-0.013483995,0.0069716773,0.09933965,-0.016301315,0.012234288,0.051923446,0.011627337,-0.015496073,0.026767017,-0.1209857,-0.08889615,0.010905608,-0.064716965,-0.030582184,0.13288422,-0.03790114,-0.013230295,0.0006630726,0.018793467,0.0067218062,0.08378,0.18406045,-0.061117895,0.0005526169,-0.0113121895,-0.001249067,-0.026714385,-0.072941765,-0.021407913,0.026483666,-0.067630135,0.023314469,-0.0009028531,-0.038312633,-0.045291077,0.05325866,0.06632965,-0.012933174,0.03393265,0.017439447,0.0740699,0.05123956,0.04678918,0.04773495,-0.065041095,-0.019917076,-0.097664975,-0.039211303,-0.029917309,0.09983397,0.01441404,0.08978819,0.023416515,0.049889397,0.034287,0.039085392,-0.07400351,-0.090407036,-0.025913399,0.11171614,-0.039928745,-0.06604608,-0.06743694,0.07014343,-0.054599,-0.054991934,-0.002756049,0.0062551186,0.04640967,0.06269856,-0.020399246,-0.0049709575,0.0154099325,-0.0018917177,0.003395131,-0.023731368,0.06298955,0.008268067,0.043858796,-0.073921815,-0.004254003,0.059281923,0.032077573,-0.13327679,-0.033196528,-0.041482784,0.0824826,0.047342163,-0.023540838,-0.005725414,0.074102126,0.09398822,0.021115975,-0.035548903,-5.8754818e-08,0.023567429,-0.03795714,-0.056873426,0.019952243,0.06512861,-0.0659265,-0.1445598,0.029845623,-0.056552954,0.12197813,-0.022189118,-0.023550462,0.04670189,0.09278078,-0.0036575054,-0.050898056,0.04083717,0.077231355,-0.07709531,-0.04728092,0.045676086,0.012087396,-0.05856773,0.021187978,0.022440502,-0.047033794,-0.10011474,-0.09073633,-0.08890952,-0.029833682,-0.056835398,0.057424773,0.01985167,-0.042003214,0.030344166,0.036304083,-0.01369714,0.029570535,-0.0048044873,0.036185272,0.038960457,0.023176348,0.034914386,0.024567666,0.029236035,-0.029817944,-0.049968824,-0.06224023,-0.002988546,0.012878536,-0.0054786135,-0.022885583,0.08017731,0.067779124,-0.024168883,0.014782064,-0.028529927,-0.02613562,0.057287615,0.0004278024,0.04620888,0.094874546,-0.02533577,-0.011277086} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:14.726695+00 2026-01-30 02:01:11.041375+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1898 google ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE 1 t 1901 Go Karts Mar Menor unknown A mi hijo le encanta ir. Esta vez ha tenido salida desde la parrilla!!! Las vistas desde la terraza del "pitlane" son fantásticas a mi hijo le encanta ir. esta vez ha tenido salida desde la parrilla!!! las vistas desde la terraza del "pitlane" son fantásticas 5 2022-01-31 01:52:39.833374+00 es v5.1 R4.03 {} V+ I3 CR-N {} {"E1.04": "Las vistas desde la terraza del \\"pitlane\\" son fantásticas", "O1.05": "Esta vez ha tenido salida desde la parrilla!!!", "R4.03": "A mi hijo le encanta ir."} {0.02019494,0.064992584,-0.026926367,-0.045672715,-0.03338818,-0.0023976462,0.05199917,0.04636774,-0.018041765,0.042967934,-0.060724787,-0.06594189,-0.013604186,-0.03145918,0.01954719,0.0022547487,0.008749723,0.0072221677,0.04743443,0.035502642,0.07051498,-0.024834326,-0.07483624,0.10096465,-0.08867624,0.013092964,-0.041726664,0.08582868,-0.075390205,-0.076047264,0.013790764,0.101075724,0.060313437,0.030339723,0.037468288,-0.0064695617,0.026590675,-0.05622249,-0.043512255,0.061914198,-0.10226994,0.008411319,-0.008661619,-0.060774866,0.0094791185,-0.06484021,-0.009467476,0.028816229,0.0053263945,-0.05115174,-0.036068402,0.0069649345,0.03210369,-0.020039827,-0.043155313,0.012252021,0.02406828,-0.09076876,0.07705093,0.0013294205,0.027191348,0.04808992,-0.09532149,0.010117534,-0.0022328452,-0.1228755,-0.042986203,-0.015650092,-0.10749721,0.100363314,0.11597479,-0.05512507,0.037664518,-0.018037314,0.0026431624,0.070440955,-0.012551059,-0.033538833,-0.06728013,-0.061328642,0.099239886,0.0013808041,0.019824762,-0.028859321,-0.005566457,0.013514331,0.016219163,0.04844507,0.030920058,-0.075068966,0.017064603,0.043833278,-0.06999078,0.04239833,-0.023600921,0.033644702,0.004565953,-0.14719415,0.014280093,0.019180126,0.072263815,-0.053059835,-0.036624625,0.015263285,-0.049728274,0.044052906,0.07121397,0.034711268,0.06135888,-0.027864879,-0.032465655,-0.06584555,-0.03504089,0.028671572,-0.07707115,-0.014293618,0.0208105,-0.033505112,-0.012564837,-0.068029456,0.060979128,0.0726307,0.0051744394,-0.006165727,0.06982068,-0.015966149,-0.022486277,7.082141e-33,0.023238989,0.03178397,0.016493998,-0.0144296875,0.03290493,-0.016467616,-0.050798614,-0.0620923,-0.032953214,-0.0022340908,-0.120387845,-0.01527013,-0.0370983,-0.007373107,-0.017575655,0.11812361,0.031950764,-0.043130584,0.008474151,-0.019464249,-0.11224833,0.022311892,0.029031416,0.033795133,-0.00306274,0.051113,0.038991354,-0.13229924,-0.0020448454,0.06186312,-0.017629193,-0.0040220306,0.042377077,-0.009485208,0.078439154,-0.010797067,-0.005286135,0.07753786,-2.937282e-05,0.041532036,0.03338284,-0.019096497,-0.028271496,-0.028023902,-0.03956687,-0.039036214,0.024487173,0.06528272,0.07354297,0.0015523423,-0.029499983,-0.03731112,-0.06429101,-0.0592801,0.017465977,0.04033044,-0.028698219,0.02754467,0.015961394,-0.0108083915,0.06451407,-0.034149766,0.015935319,-0.059893534,0.029162258,0.0018573403,0.0034433026,0.11328904,0.07242836,0.019554418,-0.087208286,-0.04369033,0.06555332,0.027003111,0.0800891,-0.032777835,-0.016963128,0.046269093,-0.05989618,0.045328412,-0.118445046,-0.005889395,-0.04826047,0.001033136,0.016410401,0.03161477,0.04063924,0.03355613,0.014125647,0.040972054,0.021947736,0.0052045803,0.0880025,-0.08570428,-0.0008139729,-7.251594e-33,-0.017663883,0.009767492,-0.036184486,0.01183535,0.028838122,-0.017785525,-0.07498925,0.036267597,-0.06146052,-0.011332545,-0.095861875,-0.015188694,0.07184284,-0.12600788,-0.09877156,0.055153728,0.061689254,-0.07915342,-0.08235319,-0.021050977,-0.03738881,-0.074352436,0.0420482,-0.0020889211,-0.04716318,-0.038297564,0.07573213,0.058201533,-0.042206567,0.022169529,0.0004907108,-0.0020336364,-0.045501336,0.02849954,0.01547433,0.054776408,0.058943845,-0.052614275,-0.030520318,0.06355101,-0.09887507,0.026590422,0.0035585943,0.009262765,0.03937855,0.054223306,0.019620962,-0.05859442,-0.09690651,-0.081634626,0.061881576,-0.069713235,0.0059861713,-0.018630782,0.04919887,-0.08230118,0.015948353,-0.018435817,-0.0160858,0.003677888,0.061325293,0.048495833,-0.019755809,0.019411197,0.04171639,-0.013823046,-0.053322483,0.022770524,-0.01737283,0.066148475,0.026444757,-0.01989301,-0.13236265,0.077534825,-0.061339427,-0.009379479,0.007776126,0.023379952,0.037206165,0.020959495,-0.050678488,-0.018009007,-0.034874182,0.0036666798,0.12794164,0.020167114,-0.048903327,0.069587775,0.0037245615,0.08112263,0.040544227,0.09051918,-0.013327869,-0.024287991,0.045295317,-3.5930803e-08,0.053533085,-0.011402628,-0.10645376,0.03336319,-0.020774093,-0.027834347,0.009748875,0.02157908,0.0029413274,-0.0129015865,-0.025119128,-0.01611103,-0.007371547,0.035849743,-0.04931749,0.06520854,0.124679804,0.044752378,0.008341843,-0.03503441,0.021679109,0.0068958746,-0.042090956,-0.050373185,-0.06948263,0.005843769,-0.003029094,-0.071113296,0.001964846,-0.0408722,0.019152362,0.042755272,-0.045147795,-0.011277776,0.0056487294,0.0012943421,-0.009388621,0.07206336,0.020434054,-0.017664561,0.14448997,0.121696256,-0.095990084,-0.050358176,-0.05295813,-0.07683934,-0.014055358,-0.0049620527,-0.013264131,0.02976697,-0.041847624,-0.04626248,0.04494933,0.047773797,0.10909759,0.014466535,0.018987106,-0.04468148,-0.022465533,0.058385987,0.06666286,0.05421093,-0.0218184,-0.005001624} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:14.847571+00 2026-01-30 02:01:11.1181+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2033 google ChdDSUhNMG9nS0VJQ0FnSURDc192NHdRRRAB 1 t 2036 Go Karts Mar Menor unknown Esta muy bien, además ahora tienen mucho cuidado con el tema COVID, cuando usas un coche desinfectan tanto el coche como el casco. esta muy bien, además ahora tienen mucho cuidado con el tema covid, cuando usas un coche desinfectan tanto el coche como el casco. 5 2021-01-31 01:52:39.833374+00 es v5.1 E3.04 {E1.01} V+ I2 CR-N {} {"E3.04": "Esta muy bien, además ahora tienen mucho cuidado con el tema COVID, cuando usas un coche desinfectan"} {-0.024742104,0.036433157,-0.057069864,-0.051458128,-0.021139082,-0.010809551,0.035905927,0.036951467,-0.019117745,0.056790795,0.06438266,-0.021109978,-0.04528454,-0.006553858,0.009375687,-0.024614967,0.0045573623,-0.031815834,0.032565266,0.046649065,0.052092474,0.0078112315,-0.030497586,0.072450794,-0.15216976,-0.0316813,0.018083083,0.016936192,-0.03728363,-0.003590317,-0.04609184,-0.010900831,0.05485001,-0.047254648,-0.056754153,-0.020137843,0.07735747,-0.07291077,-0.047224347,0.04760932,-0.07686169,0.003330512,-0.008133419,0.019112406,0.026799178,-0.028157024,-0.023343392,0.095879085,0.046595834,-0.012859235,-0.044146672,0.060654383,-0.030817915,0.045543402,-0.007369181,0.011968002,-0.022217512,-0.06779371,0.022631617,0.048549835,-0.002786516,0.0251238,-0.0053262627,0.06568761,0.008652381,-0.07086358,0.06671684,0.017707441,0.008755239,0.06848791,0.06387034,-0.0129410615,-0.005916762,0.04441296,-0.07771149,0.09469189,0.038713094,-0.059212774,0.0139735155,0.008864759,0.047998775,0.019633282,0.07400645,-0.03151025,0.034176536,-0.022573892,-0.021518135,0.018855512,0.06103658,0.006235346,-0.00980427,0.068435,0.023079334,0.037022937,-0.056283057,-0.009148138,0.12329679,-0.011879739,-0.0060137045,0.017573882,-0.019838063,-0.0032323566,0.016513102,0.0333486,0.013195273,0.026624806,0.003236132,-0.0034758188,0.05387512,0.026743865,-0.022598252,-0.042908266,-0.034446,-0.041631907,-0.027309444,-0.035470627,-0.0036119816,-0.107296035,-0.0036673136,-0.0646011,0.023176117,-0.050890345,-0.08893558,-0.059001964,0.10059526,-0.08037018,0.12810999,7.93168e-33,0.064706475,-0.036395982,0.07894961,0.060202695,0.0015443013,0.06970638,-0.019121446,0.0030648317,-0.043642893,-0.033955477,-0.027639896,0.016556164,-0.003530083,0.09691072,-0.05050878,0.04916781,0.0047360035,-0.048927266,0.013824077,0.10908191,-0.023527298,-0.042038348,-0.02005763,0.046514265,0.002477591,0.07056039,-0.055471133,-0.0050330777,-0.036161967,0.04978956,-0.045378096,0.014548281,-0.0010813971,0.002403209,0.019485578,0.010994603,0.037056472,0.04202094,0.002996167,-0.0136846965,0.0737318,0.03189164,0.0027599768,0.00035674867,0.044037893,0.012357588,-0.022830537,0.012533251,-0.024727616,-0.01594656,-0.04701271,-0.0012598456,-0.096348494,-0.047017142,-0.04939751,0.017326277,-0.08847427,0.05080623,0.023119258,-0.037678692,-0.019417359,0.0028262138,-0.016479563,-0.00634955,-0.08815022,-0.105485566,0.05834308,-0.053739905,0.06718278,0.020897524,-0.051112246,0.0071602403,-0.088012025,0.063756935,0.004248818,0.023666922,0.03115681,-0.00964702,0.0018763392,-0.011699312,-0.08948241,-0.08779002,0.10657571,0.042263277,0.03470095,0.09294113,-0.02419555,0.069234096,-0.06172014,0.034170993,-0.023339223,0.12254024,0.121641286,0.013340297,0.025170451,-9.8008994e-33,-0.006103686,-0.029794395,-0.018666435,-0.006579734,-0.048250664,0.1101665,-0.016862636,0.005003339,-0.022871086,-0.10682559,0.025204316,-0.08118308,0.075173564,0.026594078,-0.012788957,0.09235254,0.0077899876,-0.02790316,-0.107596256,-0.039066415,-0.0137381675,0.024871605,0.033621024,-0.01257359,0.018935643,-0.073838465,-0.017238602,-0.025490524,-0.035320304,-0.013192836,0.0507652,-0.0074998606,0.023122882,0.10105272,-0.055050254,0.04308626,0.026053144,-0.012697601,0.04709846,0.046684086,0.025376102,0.049862776,-0.04801286,-0.04818551,-0.011764648,0.08897114,-0.02209256,-0.117753044,-0.040630635,0.01564861,-0.01823611,-0.050283484,-0.12375299,-0.025749011,0.003528778,-0.06997796,-0.015508621,-0.14890364,-0.08885194,0.010307692,0.041214164,0.010005092,-0.10645502,-0.053446602,0.08719039,0.0049604517,0.0022855739,-0.009446304,0.09944905,-0.026295783,0.07215252,-0.0073009804,-0.120401084,-0.034420166,-0.046588466,-0.08122356,-0.08053753,-0.022156343,0.024641035,0.011152951,0.01470741,-0.06991952,0.04724413,-0.02977091,-0.030277286,0.011349602,0.0026898098,-0.034831394,-0.0006425441,0.10408893,-0.12445145,0.0036948072,-0.07965956,-0.11738319,-0.063534476,-3.7506208e-08,0.06729329,-0.022443034,0.021898706,0.0070311404,-0.0011092729,0.06953649,-0.0598157,0.06636422,0.07589653,0.09069251,-0.029177092,0.02583969,-0.01920525,0.036533836,-0.017566776,0.048558835,0.04650393,0.064634375,-0.033063576,-0.0742939,-0.013427697,-0.017316565,-0.02116606,0.016708165,-0.008937094,0.0632072,0.0067573106,-0.0006905311,0.019665558,-0.072505355,-0.092111684,-0.031614535,-0.06360754,-0.0006307826,-0.039488077,-0.0506962,0.0559371,-0.046699602,-0.004370243,-0.030822495,0.13375166,0.03086987,-0.03284724,-0.03656305,-0.039428465,-0.12417403,0.021663066,0.023538178,-0.011503811,0.07084282,0.0020416244,-0.018864471,0.02133933,0.03278294,0.0070348983,-0.060587022,0.035968136,-0.033028174,-0.0056749224,-0.035636704,0.061941244,0.05282136,0.054342777,-0.043500982} 0.9 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.13602+00 2026-01-30 02:01:11.729915+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2036 google ChZDSUhNMG9nS0VJQ0FnSUQtNDRYNUJREAE 1 t 2039 Go Karts Mar Menor unknown Todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin 5 2023-01-31 01:52:39.833374+00 es v5.1 O3.02 {E1.03} V+ I2 CR-N {} {"O3.02": "Todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin"} {-0.023373982,0.07997355,0.003750702,-0.10089941,-0.004824876,-0.010208574,0.0044885846,0.075326584,-0.04861748,0.0074032703,0.0353375,-0.03984011,-0.056324307,0.008805645,0.051829305,0.05049618,-0.01479769,0.0331431,-0.020321772,0.08114299,0.10552902,0.031667855,-0.054789722,0.12319895,-0.057530515,-0.0061962404,0.05007145,0.025489789,-0.053207137,-0.067524664,-0.033046555,0.05005184,0.07262827,0.014251331,-0.054701176,-0.044501126,0.06535344,-0.08199275,0.036806766,0.01399568,-0.1329595,-0.05683899,-0.04652662,2.4811447e-05,-0.024353528,-0.00097402686,0.05104367,0.071496874,0.06615466,0.05247802,-0.04661136,0.015872512,0.0068593854,-0.026958209,0.0859118,0.018933335,-0.007778873,0.023159813,-0.017170208,0.013912312,0.045481827,0.056837592,-0.024960486,0.028418431,-0.024258086,-0.06234831,0.050683297,0.023334254,-0.08274038,0.04438108,0.08329938,-0.06664432,0.013420757,-0.050217714,-0.08471268,0.0902946,0.025635898,0.012047767,-0.046271294,-0.027155684,-0.07648492,-0.06515008,-0.028465815,-0.04381616,0.06933991,-0.013972843,-0.06146278,0.04172127,0.06782987,0.044748835,0.012765311,0.12284949,0.010731618,-0.02457601,0.049357347,0.06159349,0.0020840052,-0.047193713,-0.013050367,0.09817363,0.058465216,0.04505886,0.08438258,0.03479204,0.025413686,0.070149064,0.04929199,-0.032432284,0.0034766407,-0.03937249,0.02101544,-0.0033218244,0.049371198,-0.0013743289,-0.04581705,-0.024502043,-0.019247795,-0.01201288,-0.02597106,-0.028943382,0.027457463,0.02769813,-0.07458932,-0.006649941,-0.028104112,-0.04715268,0.061619684,5.499785e-33,-0.03281214,-0.051415153,-0.023141082,0.05932573,-0.064793415,0.029053094,-0.053924818,-0.025933174,-0.1024909,-0.060152274,-0.0331211,0.03397298,0.026802212,0.052028913,0.033668872,-0.016087983,0.013384248,-0.049793057,0.035676256,0.06346828,-0.03252359,-0.04504359,0.024928743,-0.03620395,-0.010838696,0.07345957,0.042337775,-0.04671006,-0.13520472,0.029114105,-0.063890584,-0.019952357,-0.0017315196,-0.03054134,-0.060298912,-0.10258987,-0.013539382,0.0035300008,-0.03459776,-0.017951794,0.042717624,-0.0043583517,-0.04506446,0.030371163,0.013471747,0.10596119,0.038655978,0.00861975,0.033813722,-0.043173917,-0.017389024,-0.07196821,-0.09082533,-0.07511718,0.016439635,-0.048352204,-0.045158204,0.056672633,-0.11403202,-0.011256622,0.027322194,0.028594794,0.019695185,-0.0073884847,-0.068526745,0.0027431508,0.030664138,0.020074902,0.12711695,-0.036301848,-0.023720315,-0.019753162,-0.08059387,0.045118265,0.0004125499,0.014538981,0.034514908,-0.02901906,0.031800244,0.025178598,-0.03279894,-0.041953802,0.04563313,-0.0068324595,0.07687324,0.09168328,0.01676814,-0.057423957,-0.022650952,0.114409894,-0.06937014,0.018884256,0.06976107,-0.029410385,0.027608003,-6.9955976e-33,0.009845005,0.022662478,0.067863755,0.03411641,-0.03896014,0.10305614,-0.042172503,0.02508024,-0.050919108,-0.024225796,-0.050040297,-0.13123125,0.020997427,-0.035116263,-0.013333533,0.06383365,-0.0069805933,-0.0546434,-0.118374206,-0.023442363,0.045866184,0.027571714,0.034184605,0.01102052,-0.06586538,-0.04539556,-0.12059041,-0.0095963,-0.0070422566,0.032260597,0.026072918,-0.010242832,-0.02018127,0.005059861,-0.004473636,0.044104073,0.07229955,0.03900375,0.05113813,0.04967109,0.014633725,0.09545753,0.0027060197,0.02544346,-0.0549637,-0.006063731,-0.05759189,-0.1614778,-0.10849122,-0.045359097,0.017001972,0.0069246585,-0.03437403,-0.030605307,-0.008441849,-0.0040975134,-0.053333808,-0.10967191,-0.06228174,0.0012919744,-0.009910851,-0.05795621,-0.039884955,-0.062321696,0.08559899,0.043182477,-0.04953428,0.004410092,-0.011947481,0.07044202,0.053475205,-0.008593177,-0.06421624,0.054979444,-0.048766036,0.0134698935,-0.07581607,-0.021107933,-0.016487176,0.06749346,0.011346165,-0.0323473,-0.027710782,-0.029167907,0.006498314,-0.06114861,0.034134034,-0.019797735,0.001716542,0.02563375,0.05041891,0.05291651,-0.017885758,-0.019732038,-0.02797056,-3.0416338e-08,-0.000549365,-0.09565754,-0.082621545,-0.037907913,-0.008725132,0.014772913,-0.049053412,0.012524122,0.023919482,0.04548354,-0.022064408,-0.032419067,-0.007375571,0.061626814,-0.029729437,0.089492284,0.0097281905,0.059686985,0.01559855,0.0045254733,0.07670121,0.0034012946,-0.034158453,0.079062104,-0.015832094,-0.005762854,-0.06402905,0.046326984,0.018952552,0.042787798,-0.004438074,0.03526571,0.013183176,-0.08086985,-0.019279642,-0.013313006,0.037666038,-0.07448256,-0.01308474,0.013321916,0.08704812,0.05848157,-0.09183323,0.010762301,0.08126706,-0.14657071,-0.007867896,0.06430787,-0.03798884,-0.0077552954,0.028928732,0.045919746,0.029752161,0.016303591,-0.02844841,0.00808331,0.013342642,0.011738543,-0.0061836587,-0.018089877,0.08899212,0.0518642,0.07540943,-0.114730716} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.171647+00 2026-01-30 02:01:11.739001+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2037 google ChZDSUhNMG9nS0VJQ0FnTURndklhUURnEAE 1 t 2040 Go Karts Mar Menor unknown Un buen sitio para pasar un buen rato un buen sitio para pasar un buen rato 5 2025-03-06 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Un buen sitio para pasar un buen rato"} {-0.046509847,0.004929338,-0.0511239,-0.05280217,-0.052009024,0.039877463,0.06959733,-0.036568616,0.0014240849,0.024736345,0.008281445,-0.0022662894,-0.052529857,0.006782425,0.00025335947,-0.008748201,-0.07250054,0.09217723,-0.016567972,0.031714916,0.031523198,-0.015962811,-0.040856544,0.123843364,-0.07912977,-0.027488112,0.06231415,-0.010933599,-0.004979819,-0.041107383,-0.006779618,0.007733826,0.0064477134,-0.09620437,0.030945126,-0.05693776,-0.009076604,-0.054807898,0.03157657,-0.015893247,0.005285187,-0.077176735,-0.038922723,-0.01432929,0.014950316,-0.06309818,0.054286126,0.034581184,0.09752016,-0.03794785,-0.0063923574,0.026803035,-0.051600035,0.026333695,-0.06643833,-0.001895875,-0.024620473,-0.011459035,0.054579917,-0.036667112,0.022062441,0.017698988,-0.014136754,0.028926393,0.018164355,0.019256378,-0.060870625,-0.018876502,-0.081776686,0.09559029,0.09337449,-0.05407774,0.017363844,0.022782521,0.01078229,-0.05232739,-0.045418553,0.018596902,-0.012892751,-0.121965505,0.049284372,-0.02888271,-0.06794591,0.016212465,-0.00022754322,-0.015005421,0.03282866,0.08199442,-0.02440242,-0.016006136,0.015054603,0.070862636,-0.094538085,-0.015478286,0.013279805,-0.001583132,0.049697407,0.012692133,0.026965082,0.058342963,0.0026488837,0.056253634,0.027565647,0.017940948,-0.03557446,-0.038788546,0.030262504,-0.056870334,0.10079717,0.004000597,-0.07635712,-0.0028826206,-0.06286994,-0.0022845957,-0.052487936,0.008818496,0.022727953,-0.13847947,-0.041583102,-0.023092369,0.05134199,-0.004553402,-0.047445767,0.039293,0.02039496,-0.08176351,0.028912658,3.563178e-33,-0.0106743565,-0.061595533,0.035973575,-0.02439329,-0.0020612238,0.09182697,-0.06195943,-0.06434581,-0.022740554,0.028699834,-0.09097738,0.01597937,-0.0025265987,0.025725527,0.10984908,0.020050114,0.017720902,0.041720945,0.12731731,-0.0648998,-0.110996075,0.043492485,-0.07632766,0.053264167,0.017174648,0.036753155,-0.04078063,-0.03717996,-0.070169784,0.070503406,0.08780686,0.030951178,-0.045889515,-0.043196764,-0.06313564,-0.13136858,-0.03686876,0.042549912,0.0017453614,-0.020045372,0.08809035,-0.01321156,-0.0437477,0.08315925,0.02596025,-0.12741727,-0.044048186,-0.00869193,0.024469953,0.041428074,-0.06343083,-0.013923562,-0.0047857394,-0.06047018,0.018947989,-0.1150109,-0.03134073,0.10452751,-0.06613617,-0.011843485,0.101748705,0.030142784,-0.0139255375,-0.019104375,-0.0658472,-0.0020623712,0.013983856,0.05711858,0.07260364,-0.056045838,-0.053012114,-0.0059107714,-0.060178585,-0.03687832,-0.037439115,0.03514182,0.00014351224,0.0598428,-0.022325477,-0.015522559,-0.08481288,0.0006585615,0.058395427,0.07153812,0.03536202,0.06332158,-0.0194191,0.0024729162,-0.019676097,0.06294154,0.037927937,0.027872724,0.035734665,-0.030585965,0.02503355,-4.7310228e-33,-0.005537525,0.024893459,-0.0036209715,0.05375322,-0.06451906,-0.022838073,-0.108646095,-0.023138298,0.0012080453,0.035038024,-0.0021230234,-0.11195535,0.12037771,-0.016024489,0.033169594,0.11114647,0.023842018,-0.017774804,-0.06821683,-0.05561889,0.0067099417,-0.05618679,0.038092457,-0.037429605,0.006872592,-0.032433912,0.05532362,0.050601706,-0.021285038,0.030563198,0.045750782,-0.00673743,-0.07693342,0.116066284,0.024169795,0.007179746,0.060210504,0.026474312,-0.010554201,-0.012370361,-0.0062631425,0.017005952,-0.034318812,-0.02058323,-0.003970838,-0.073874556,0.038615957,-0.07014572,-0.053497706,-0.0542772,0.057330802,-0.03028925,0.041931953,-0.067546844,-0.0027768316,-0.055457335,-0.08826816,-0.02759989,-0.06856758,-0.06864512,0.06746953,0.051125295,-0.035949674,0.004264567,0.012161304,-0.023627501,-0.07806902,0.06314886,-0.00467316,0.06664236,0.059650335,-0.027877819,-0.050309487,0.14309825,-0.0768894,0.08940108,0.0244889,-0.032376613,-0.016831275,-0.002491611,-0.08866989,-0.02002314,0.0022027194,-0.03478322,-0.035404574,0.0128178,-0.028207203,0.019714661,0.00093486934,-0.0023474467,0.06487835,0.013261183,0.0025599129,-0.035376295,-0.04715778,-2.1823455e-08,-0.034539033,-0.071292765,-0.0454485,0.08710572,0.036734916,-0.026535606,0.011512118,-0.06830077,0.0028764613,0.012032123,-0.031250987,-0.061890043,0.0881718,0.014304313,-0.008296256,0.114377156,0.043273658,0.018203463,0.043316554,0.0045041004,0.035330232,-0.041842144,0.009479253,0.025405629,0.012821085,-0.051357903,0.010640067,0.08150544,0.065066166,-0.042901415,0.08925025,0.010284762,-0.039614156,-0.011530362,0.062564306,0.033557985,-0.02434821,0.050672922,-0.048391327,0.010404183,0.063866615,0.002536152,0.015641654,-0.016939651,0.070259795,-0.059613425,0.006697234,0.057412647,-0.019122096,-0.06038195,0.020859778,-0.0014244923,0.092257716,0.0005437992,0.05397046,0.034772284,0.030711949,0.025520243,0.07670608,0.029941091,0.008621747,0.1761641,-0.038433544,0.019614756} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.184014+00 2026-01-30 02:01:11.74379+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2081 google ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE 1 t 2084 Go Karts Mar Menor unknown Super karting......on s'y amuse bien...Seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣 super karting......on s'y amuse bien...seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣 4 2022-01-31 01:52:39.833374+00 fr v5.1 V4.03 {O1.01} V+ I3 CR-N {} {"E1.04": "Seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣", "V4.03": "Super karting......on s'y amuse bien"} {0.018502515,-0.047776625,0.02453143,-0.0019896184,-0.06283467,0.0730014,0.046316795,0.02855166,0.061115567,0.0065446463,-0.002479453,0.033111554,0.036040746,-0.020421617,-0.039078787,-0.080499224,0.07850481,-0.011567706,0.040594008,0.076803885,0.052139204,-0.025234044,-0.02136104,0.026442993,-0.094171844,-0.018085836,-0.0026725782,0.015853511,0.025098404,-0.05692452,0.0152903525,0.083687685,-0.027344244,-0.020214276,0.0023876708,-0.044282164,0.0054581175,-0.02876896,-0.0026587604,0.023005774,-0.11461285,0.013372459,-0.022313012,-0.06615664,0.050921712,0.015089818,-0.016849734,0.014848693,-0.08819658,-0.012600867,0.028467197,-0.05068865,0.08892073,-0.006724979,0.04835612,-0.0151317855,-0.06995729,-0.03603807,0.09247544,-0.022918988,0.020751819,0.038605314,-0.021220177,0.040842313,-0.10185564,-0.064736836,0.042342544,0.019338775,0.021183006,0.103797525,0.05268229,-0.02908184,-0.016352892,0.004614512,0.016709477,0.03866882,-0.055916745,-0.008055532,-0.103272945,-0.075082004,0.04901597,-0.052825615,0.06123897,-0.055376653,0.059191335,-0.07709071,0.027528644,0.01721262,0.06258075,-0.054485526,-0.03863703,0.030381642,-0.08547067,-0.012010959,-0.04078568,0.0037118196,-0.032548618,-0.0026314424,0.02485537,-0.013535924,0.0017504825,0.012052039,0.047795087,0.07017835,-0.055125277,0.017562417,0.013690175,0.014694002,0.03778803,0.00043015325,0.017856797,-0.036716435,0.003833253,-0.10940118,-0.037039824,0.0066026696,-0.0054010428,0.0045936354,-0.049788684,-0.07701925,0.0405405,0.037907716,0.0023954108,-0.041232787,0.039219238,-0.010366098,0.067941606,-1.41299775e-33,-0.0814397,0.013290877,-0.017522696,0.022198342,0.0074864905,-0.07765389,-0.041060977,-0.040119994,-0.057868138,0.011609799,0.0030943647,0.025287021,-0.035708915,0.0036951224,0.11753303,0.0041228086,0.03405463,-0.089886986,0.09185579,-0.017561657,-0.014837355,-0.05088479,0.058932807,0.119085506,0.026391199,-0.008428003,0.121022366,-0.10891866,-0.08874961,0.032648485,0.017802512,-0.0008433141,-0.023815265,0.07030878,-0.0509866,0.0033033267,-0.0010551568,0.05565545,-0.0042811623,0.060110867,0.015315619,-0.026847735,-0.021662032,-0.070435405,-0.076828994,0.061937567,0.011135427,0.04846597,0.012163072,-0.06194068,-0.038386438,0.0017475005,-0.050643988,0.016728077,-0.028199315,0.03171412,-0.026342703,-0.020748612,-0.025085337,-0.012511951,0.02045745,-0.032358315,-0.027285872,-0.019343657,-0.07563059,-0.043582592,0.054192327,0.008753968,0.04116853,0.021474542,-0.071841106,0.095110565,0.052204378,-0.06311547,0.1036277,0.051251266,-0.055080116,0.05067741,0.008278359,0.066193916,-0.08039756,-0.0129508395,-0.025841631,-0.028973738,0.070687145,-0.021155506,0.00057885994,-0.042376228,-0.02848515,0.024017923,-0.118164554,-0.04593769,0.09639515,0.05471847,0.043360546,-1.5230162e-33,0.06907697,0.018747326,0.03714745,0.13653919,0.013677004,0.08909114,0.039026707,-0.058147658,-0.07180313,-0.059188325,-0.09959448,-0.064157166,0.0647032,-0.00043387385,0.005249915,0.01994827,-0.01997096,-0.050784197,-0.034290392,-0.012152116,0.031407025,-0.004869238,0.030224018,-0.011539149,-0.027501604,0.019445919,-0.005043333,0.055970512,-0.076367125,0.15200295,0.0059131715,-0.039320424,0.05303143,-0.021014078,-0.02554868,0.107993335,0.032897454,0.09314044,-0.08819982,0.030001119,-0.03999564,0.07818049,-0.04608027,0.048057627,0.0745285,-0.07785795,-0.022343127,-0.049266595,-0.027157467,-0.07178082,0.08589622,0.01123537,-0.094235234,-0.024781905,-0.0054498366,-0.027333582,-0.023573918,-0.04563702,-0.1304003,-0.051703274,0.034461252,0.070820756,-0.009960067,-0.008643372,0.06085462,0.010284155,-0.11487973,-0.020687113,-0.00012045538,-0.029308949,-0.010841776,-0.048793916,-0.01324964,0.0633648,-0.0072424114,-0.021114515,0.019443223,0.0654196,0.030569896,0.1288372,-0.07091238,0.049637448,-0.010844106,0.05688789,0.04825524,0.008510914,-0.018106027,-0.0011230805,0.06746193,-0.03370457,0.0063762637,0.079349376,-0.0002657589,-0.002438496,0.027696164,-3.2053773e-08,0.040450927,-0.00065454707,-0.046406623,0.0057061194,0.06820613,-0.13500233,-0.028274566,0.027850084,-0.035876133,0.004866277,-0.048204564,-0.0085637355,0.01834554,0.057625614,-0.007609275,0.04456341,-0.039803065,0.11438594,-0.025327764,-0.05407472,0.003969938,-0.035605628,-0.04153757,-0.048800003,-0.07322507,-0.06366419,-0.04578927,-0.12702984,-0.02819402,-0.014087727,-0.012322493,0.0054640495,-0.055357456,0.0036455663,0.020610588,-0.0161561,-0.02525142,0.0716662,0.02211068,0.09110082,0.04983394,-0.027282866,-0.019958504,-0.035520904,-0.061946936,-0.04026416,-0.025648348,0.017960839,0.0058013983,0.13143268,-0.0734917,0.008055442,0.03708039,0.05777815,0.059959296,0.044825695,0.0072407294,-0.03364329,-0.027361259,-0.083611764,0.009677847,0.02947978,-0.0048908605,-0.0290064} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.588701+00 2026-01-30 02:01:11.892034+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2041 google Ci9DQUlRQUNvZENodHljRjlvT2tobWF6WnVSbFJzYjJsWk1tRTROM0JEWDJWTGVrRRAB 1 t 2044 Go Karts Mar Menor unknown Todo fenomenal todo fenomenal 5 2025-09-02 00:52:39.833374+00 pt v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Todo fenomenal"} {0.014195127,0.07567482,-0.081671596,0.012540423,0.018186448,-0.0032690107,0.061308187,0.016473679,-0.07821601,-0.01658242,-0.047920946,-0.04190906,-0.035708126,0.0418932,-0.009234681,-0.010696102,0.023638014,0.075607605,0.025031576,0.009477711,0.012875387,-0.019513814,-0.030703448,0.038228877,-0.07009798,0.030343853,0.026500775,-0.004120279,-0.100425825,-0.08250651,0.032161303,0.08895131,0.036378372,-0.027947603,-0.039976638,-0.0053292583,-0.015660718,-0.0465941,0.06940898,0.072172955,-0.07833424,-0.031372238,-0.12516485,-0.045408603,0.044278227,-0.021006508,-0.057166666,0.08556268,0.024113808,-0.0065758512,0.0011018617,-0.03424061,-0.059244107,0.024044381,-0.002760264,-0.011281979,0.017557362,0.07475687,0.048643645,-0.022843454,0.06775252,-0.011810447,-0.055985365,0.026599921,0.049222525,-0.018150311,0.056276385,-0.011659758,-0.15801051,0.10873932,0.079814,-0.059223868,0.0581245,-0.058813516,-0.0024431876,-0.0024396207,-0.040605657,-0.0080623375,-0.034214154,-0.023905981,-0.01463466,-0.020613791,-0.023794279,-0.010468609,0.022984056,0.0359988,1.0662944e-05,0.0068847053,0.031096807,-0.0025017979,0.0040270626,0.055693626,-0.10178602,0.046149578,0.03362422,0.009944282,0.07637141,-0.0052681565,-0.0106085995,0.1403471,0.08068125,-0.00096347905,0.017377488,0.06984873,0.05191283,-0.0010637016,-0.015766632,-0.035935115,0.0055953814,0.037404053,-0.0423258,-0.053821556,-0.005072005,-0.017097065,-0.035073344,-0.039958213,-0.022493528,-0.046379264,-0.03347094,-0.0086618755,0.13602935,0.04643911,-0.073536724,0.038220678,0.015861517,-0.0056645614,0.019111034,-3.7272318e-34,-0.0026524633,0.009063763,0.025406009,-0.015677448,0.027758915,-0.022841467,-0.105202496,0.026551183,-0.02823083,0.0077718413,-0.07399912,0.013574486,-0.04496409,-0.027709732,0.05739029,0.034479953,-0.027543213,0.03614041,0.01155517,0.027782943,-0.05488023,0.014890143,-0.011438971,0.050458964,-0.03831989,0.10344133,-0.047417223,-0.11160855,-0.081530176,0.041924957,0.0075007128,-0.016110456,-0.0076169563,0.038493704,-0.030046104,-0.08601319,-0.008911989,-0.056883313,-0.075186804,-0.05717079,0.044842612,0.0023226426,0.011348363,0.01481894,0.012011896,-0.025754826,0.05287583,0.039860412,0.11198943,0.00787187,-0.022036806,-0.044497464,-0.013945234,-0.047880847,-0.009640702,-0.033100244,-0.06894844,0.053234793,0.06758976,-0.0026992303,0.07884622,-0.010324177,0.032053456,-0.043797825,-0.036134254,-0.0073795835,-0.012579742,0.06091771,0.09982827,-0.024990734,-0.08424741,0.04170628,0.058138855,0.1323418,0.04390391,0.04406837,0.10199946,-0.0012629438,-0.01739241,-0.0515719,-0.034978647,-0.06994236,0.02623858,-0.00041108843,0.081157036,0.06520496,-0.00784702,-0.052741133,-0.030569943,0.118733816,-0.10784126,0.01627567,-0.05176866,-0.067449756,0.043558802,-6.5200305e-34,0.0445325,-0.023372166,-0.035367656,0.02203475,3.413761e-05,0.02019974,-0.15703864,-0.031762894,0.0061845523,0.031465024,-0.05774959,-0.065888956,0.12032343,-0.03477767,-0.04961556,0.044836994,0.0966614,-0.019758208,-0.09339228,-0.038480084,-0.0936742,-0.004908946,-0.037309974,-0.0713348,-0.03805506,0.014388625,0.027695008,-0.053942516,-0.0685566,0.005848999,0.03516675,-0.05187233,-0.009666002,-0.012816328,0.0152119305,0.16470757,0.067930385,0.08464783,-0.05139223,0.044000976,-0.032158423,0.0117681045,0.01869718,0.008086003,0.033478234,-0.0048679346,-0.016895952,-0.030126028,0.02507329,0.039250933,0.11754739,0.056541912,-0.034178775,-0.062534995,0.033978544,-0.012128976,-0.027288536,-0.101574674,-0.058010712,0.0033881452,0.057227116,0.09287697,-0.05751923,0.038923893,0.079424895,0.029315732,-0.14359482,0.049611248,0.020029299,0.11650711,0.09220685,-0.048121028,-0.06803058,0.016033506,-0.03852346,-0.052164692,-0.0034054322,0.008663966,-0.027037777,0.022459945,0.046256956,-0.043785673,-0.013296629,0.009275591,-0.039611693,-0.05368426,-0.00238805,-0.012722039,-0.011253248,0.0020882285,0.08087947,0.04285523,0.026701361,-0.052753303,0.0029305448,-1.5900916e-08,0.045353137,-0.0200329,-0.076937236,-0.018977102,0.034045506,-0.08029751,0.02576374,-0.04663861,-0.02914476,0.0495337,-0.00021837467,-0.023997383,0.03547788,0.014443066,0.011964346,0.025243534,-0.007956309,0.04253163,-0.04318541,-0.0046024392,-0.008658138,-0.0183607,-0.06537245,-0.12752268,0.016735006,-0.02532708,0.020653758,0.028123304,0.048087623,-0.007327117,0.04044164,0.04756249,-0.01194802,-0.07316524,-0.043269336,0.0012951475,0.015186111,0.027030425,0.018131936,-0.024663936,0.013136143,-0.03401266,0.04326908,0.0045516756,-0.03277023,-0.04748035,-0.014801909,0.012541401,0.035454065,-0.058451764,-0.060145732,0.0537696,0.06917196,0.029457293,0.053695485,0.026301265,0.09511861,0.017613677,0.035900265,-0.018581573,0.04712994,0.04217807,0.10786704,0.0011709637} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.228005+00 2026-01-30 02:01:11.756316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2048 google ChZDSUhNMG9nS0VJQ0FnSUNRNjRLc0l3EAE 1 t 2051 Go Karts Mar Menor unknown Circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agradable. Plan perfecto para un día de diversión. circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agradable. plan perfecto para un día de diversión. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.02 {O1.03,P1.01,V4.03} V+ I3 CR-N {} {"O1.02": "Circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agrada"} {-0.031687967,0.03237642,0.054973487,-0.026763054,-0.077957176,0.01596087,0.05967643,0.10595722,-0.021707065,-0.0068958714,0.063330956,0.025500856,-0.057895787,0.006938153,-0.006836727,-0.028720979,-0.0031634662,0.06426578,0.039962552,-0.017420148,0.061534747,-0.005317272,-0.044459984,0.07584897,-0.13008276,0.07761903,0.03940521,0.017461326,-0.038228728,-0.118009456,-0.025702074,0.12788107,-0.014256509,-0.07107186,-0.0656796,-0.007971279,-0.1256136,0.050918274,0.0071193953,-0.006490816,-0.042621057,-0.05915872,0.012802152,-0.023336908,0.027834393,-0.007863786,-0.045612283,0.009916062,0.06467502,-0.04403479,-0.039036244,-0.04347278,0.04811496,0.046380438,0.014714554,-0.02845069,-0.09135407,0.04871219,0.12505832,0.073542185,-0.01654163,0.043591052,-0.0059938366,-0.007875328,-0.010266569,-0.044300515,0.030222459,0.075339034,0.023090212,0.04543407,0.07867273,-0.06722899,0.0033298705,-0.08635025,0.021628954,0.012880445,-0.0030591625,0.01697522,-0.09920229,0.034579862,0.033913728,-0.0072992705,-0.035105873,-0.072724625,0.037113063,0.041791473,-0.065597996,0.007445022,0.048015427,-0.052945394,-0.008922165,0.039283976,-0.03632848,-0.06464069,0.0077580563,-0.023687232,-0.023296777,-0.11668714,0.003545479,0.053848825,0.05860421,0.052879192,0.0061732233,-0.049745962,0.00045381373,-0.0029832826,0.044346258,0.00011470521,0.012567178,0.014843889,-0.022309775,0.019896254,-0.016815953,-0.043387845,-0.021183096,0.027806405,-0.057260357,-0.03873314,-0.005123768,-0.018719956,-0.03589285,0.052687082,-0.017342748,0.012030619,-0.044219296,-0.025512207,0.13683236,6.8980646e-33,-0.099107705,-0.02106075,-0.048232492,0.043772712,0.03970607,-0.08566926,-0.037377223,-0.066885956,0.027111415,-0.031101875,-0.046555717,-0.0045074658,-0.035885245,0.08476666,0.015187118,-0.087992266,0.040152438,0.026019745,0.086918995,-0.0032130738,0.022628045,-0.07210208,-0.05465909,0.034794174,-0.0030043344,0.0914182,0.0073163044,0.0019078763,-0.018648505,0.037501488,-0.04439941,0.0873951,-0.010776196,-0.010469665,-0.10051305,0.026826423,-0.029712824,0.023694014,0.004584637,0.013536823,-0.00221103,0.06674761,-0.035064813,0.05919939,0.047702666,-0.04552979,0.011373827,0.057058338,0.1027678,0.079587944,-0.06126087,-0.06696735,-0.027599422,-0.054741826,-0.031226933,0.03897747,0.0043067,0.03139508,0.07041848,0.020391768,0.008491165,0.037215438,-0.11768893,-0.059767056,-0.059198394,0.023847139,0.018404976,-0.0546911,0.06432417,-0.017178396,-0.16437511,-0.024750702,-0.020561744,0.031200742,0.013460727,-0.013928283,-0.016276855,0.035511885,-0.019353567,0.0032664775,-0.03955638,-0.021270754,0.02202765,0.062319,0.12093962,0.04709673,0.043214485,0.050267093,-0.030718943,0.06879868,-0.008624297,0.08944808,-0.007988814,-0.006334715,0.12156531,-7.651809e-33,0.07973419,0.029730361,0.03880248,0.10815144,0.03405178,0.01817937,0.015307067,-0.055094153,-0.0037966336,-0.04956581,-0.099531546,-0.029189112,0.088778354,-0.040905155,-0.03392771,0.013744344,0.012387234,-0.015223251,-0.07997563,0.02244978,-0.02028033,0.03561902,0.044886265,-0.080858156,-0.0352763,-0.0070174737,-0.017974127,0.024499703,-0.08164355,0.07635382,0.010946427,-0.07197516,-0.08743709,0.03006648,-0.022326654,0.026859043,-0.014251974,0.05018358,-0.068667434,0.070256926,-0.0054350863,0.03942862,-7.474013e-05,0.060574,-0.10609125,0.017980902,0.044992708,-0.088615574,0.016573219,-0.010999503,0.032610398,0.021942263,-0.022084387,-0.053005192,0.05778909,-0.052052658,0.015972538,-0.08231125,-0.08750718,-0.026480803,0.04973971,0.040226333,-0.038976654,-0.13026337,0.09120531,-0.014896883,-0.042401396,0.014856915,0.04800482,-0.0018533989,0.06446975,0.034893148,0.048952848,-0.023953928,0.016880326,-0.06413404,-0.08949673,0.026173275,0.007718481,0.0060631777,0.031602994,-0.0113908155,-0.032205,-0.03619834,-0.009168179,-0.02806173,-0.041171867,0.027806468,0.017288323,-0.011732235,0.0016462427,0.009109925,-0.0061371475,0.030795548,0.013457798,-3.7310375e-08,-0.019032246,0.007450821,-0.069738105,0.032068446,0.050639533,-0.073523775,-0.060442843,0.03806929,-0.049573444,0.008083623,0.0119848,0.044928726,0.022072492,0.0985723,-0.01925732,-0.020851862,0.08698421,0.14791946,-0.030531429,0.0029231939,0.032976225,-0.036920294,-0.008335749,-0.020565083,0.068292044,0.029643299,0.034617953,0.049249284,-0.011365128,-0.026660345,0.0022918193,-0.05575384,0.00016824821,-0.0012550075,-0.016406076,0.04438068,-0.04044969,0.045788422,-0.018744012,-0.012182443,0.016798822,-0.052875713,-0.0758987,0.013890615,-0.09277833,-0.03059674,0.015010488,0.02486908,-0.03252086,0.03883927,-0.074885845,-0.0009647465,0.045101788,0.049649373,0.068550915,-0.0033350158,-0.0132234525,-0.022588782,-0.11398499,-0.10964863,-0.0012653017,0.1036445,-0.029553983,-0.06993237} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.30263+00 2026-01-30 02:01:11.779493+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2049 google Ci9DQUlRQUNvZENodHljRjlvT25CclQwNVlUMkZYYkZGVlZrbGFNVkZvU1ZBelJuYxAB 1 t 2052 Go Karts Mar Menor unknown Superleuk superleuk 5 2026-01-23 01:52:39.833374+00 id v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Superleuk"} {-0.09599021,0.03862644,-0.04474446,0.027083712,-0.018637376,0.04288988,0.059213623,0.098103635,-0.03348342,0.007532394,-0.026089171,-0.056057848,-0.024905074,0.019468734,-0.07321808,-0.041987017,0.012658528,-0.030099196,-0.072547674,-0.05267223,0.05911196,-0.04879885,0.039250493,-0.037543844,0.05405421,0.029593127,-0.019741252,0.043840103,0.031546053,0.0045575504,0.03753629,0.03755442,-0.040523008,0.005026841,-0.014284549,0.085913666,-0.04948365,0.04670891,0.044619463,-0.04587429,-0.041043725,-0.06647797,-0.08554647,-0.073299624,0.030030334,0.070436716,-0.06391243,0.011583873,-0.06472277,0.049942587,-0.089433484,-0.08939982,0.053917397,0.021395613,0.11875301,0.024787404,-0.09633032,-0.06160581,0.055273928,-0.017342484,-0.0002204236,-0.06891227,-0.04095412,0.010652149,0.07702064,-0.042439286,-0.08671524,0.019084914,0.0024263856,0.043780606,0.044930898,0.000269665,0.0030287008,0.020209847,0.045222722,-0.014485391,-0.019263504,-0.06723171,0.025930509,-0.021182299,0.11370492,-0.052203063,-0.0073689194,0.049201667,-0.0037988503,-0.03121321,0.13732798,0.018215148,-0.03315155,-0.0017395542,0.055651702,-0.048874926,-0.016101453,-0.0043428955,-0.045937087,0.011392753,0.013012278,-0.011120036,-0.055106223,0.13087752,-0.034582928,-0.08999722,0.02846817,-0.0042620734,-0.007799546,-0.049087677,0.007863041,0.0059803785,0.041023545,0.0056658345,-0.06569966,-0.09469031,-0.121095054,0.017316421,-0.0015488819,0.011634101,-0.018125853,-0.01650986,-0.07423303,-0.043069843,0.011216711,0.07698969,-0.017464753,0.096939795,0.034636486,0.066861555,-0.030289626,-1.6253384e-33,-0.0037830134,-0.0061785216,0.01174924,-0.02481311,-0.03386588,-0.0534569,0.020389292,0.0293875,-0.007892651,0.054704722,0.009328407,0.0055444897,-0.0025951606,-0.032281514,0.0017798825,0.07316043,-0.08025062,-0.013519696,0.008644723,-0.021317683,0.012731144,0.051239498,0.036453113,0.032786835,-0.056850318,-0.110989034,0.048567127,-0.081649266,0.09935967,0.04772503,0.09167992,-0.06883567,-0.03967817,0.060051013,-0.06536346,0.0009417279,-0.049895983,-0.06432275,-0.07168441,-0.005809456,0.019561315,-0.007019438,-0.0280806,-0.0034192218,-0.011379544,0.02215203,0.06885051,0.032471336,0.018856542,-0.0006059594,0.007977503,0.010691941,-0.07287935,0.0034712963,-0.036320094,0.056284405,0.06070186,0.04349756,0.033083763,-0.0113316355,0.010334846,-0.025246566,-0.033028614,0.02396164,0.045261804,-0.07455018,0.005280225,-0.0031906618,-0.012550706,-0.079684794,-0.054474022,0.012542161,0.15695432,0.00978873,-0.003408779,0.070215024,-0.016461918,0.025002252,-0.051128693,0.018092217,-0.082749136,0.082579814,-0.0031998835,0.014677947,0.02361576,-0.024828833,-0.067486435,-0.10050443,0.037564173,-0.019421669,0.006307146,-0.07219644,0.018130187,-0.03706984,-0.08192347,6.9937997e-34,-0.038347557,-0.0006533009,-0.02482263,0.12221944,0.07769041,0.102101706,-0.019025873,0.044875674,-0.033410054,0.027695054,0.1303565,-0.015566686,0.10889839,0.033768903,0.06464628,-0.03823831,0.05222652,-0.002530607,0.043870337,-0.013542791,0.048450284,0.008080245,0.0054013673,0.027804576,-0.011123902,0.045828097,0.07871856,0.04325655,-0.048350506,0.083262384,0.0151821915,0.006505557,-0.06441958,0.052222483,0.027761359,0.060499936,-0.012518811,0.057294834,-0.08023156,0.030330954,-0.037365105,-0.028664665,-0.028957516,0.11782388,0.0508329,-0.040605363,-0.034479007,0.09359762,0.08966246,-0.023451352,-0.054777436,0.036102626,-0.06510454,-0.026509618,0.038135603,0.08062215,-0.04770579,-0.027416103,0.018021096,-0.06452645,0.044201203,-0.05398142,0.025476385,0.0016866609,0.005662749,0.038365167,-0.025513459,-0.042196527,-0.009950869,-0.053631738,0.07829942,-0.03350629,-0.07599829,-0.030717755,-0.028471915,0.002467119,0.0037031975,0.012147288,-0.023157706,-0.05039915,-0.045992807,0.035725135,-0.043273054,0.0735472,0.07653877,0.024052972,0.02548602,0.0106347725,0.018829033,-0.10678801,-0.020212155,0.07150287,0.037673153,-0.02442706,-0.008798998,-1.3822502e-08,-0.015116527,0.055527948,-0.019926263,0.031988293,0.08897683,-0.05755303,-0.076806776,-0.047190312,-0.03441822,0.05093078,-0.009594519,0.030635461,0.006404412,-0.04162228,0.07035992,-0.037163302,-0.0651613,0.0011881152,-0.008281718,-0.042088762,-0.07147364,-0.051119857,0.039281156,-0.06448799,-0.04028874,0.006600525,0.045935556,-0.077198386,0.064852856,-0.08649128,-0.0015541712,0.13603567,-0.02461674,0.010282154,0.012839796,0.025774552,-0.030620432,0.077070326,0.028396042,0.069742054,0.029538069,0.03615552,0.031581983,0.044248242,-0.024216563,0.030388687,0.06904581,-0.05221555,0.013164303,-0.038560595,-0.08322481,-0.0073989592,0.03296682,0.028196305,0.094559014,0.07486368,-0.083125025,-0.0053361645,-0.059467778,0.054035403,0.026056368,0.008081207,-0.07300446,0.056502577} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.315116+00 2026-01-30 02:01:11.782746+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2054 google ChdDSUhNMG9nS0VJQ0FnSUNheThDUTlRRRAB 1 t 2057 Go Karts Mar Menor unknown buen trazado de circuito y oersonal amable, buen trato con el cliente. Excelente servicio buen trazado de circuito y oersonal amable, buen trato con el cliente. excelente servicio 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {P1.01,P1.02} V+ I3 CR-N {} {"P1.01": "buen trazado de circuito y oersonal amable, buen trato con el cliente. Excelente servicio"} {-0.058605734,0.09194918,-0.038377907,-0.09556042,-0.09551138,-0.023823736,0.10669332,0.09070891,0.0010732296,-0.04102351,0.05541302,0.036685657,0.0475664,0.009724428,0.06270925,0.04019996,0.026520714,0.036478996,0.04803412,-0.005756775,0.055948343,-0.039782736,-0.07766887,0.07574461,-0.051220268,-0.016379405,0.027148422,0.013433585,-0.07130024,-0.124315366,-0.062913574,0.034140244,0.058753144,-0.015399514,-0.032913346,-0.0022316847,0.039640784,-0.020051723,-0.0079790065,0.06513996,-0.055626735,-0.05783216,-0.026368536,-0.04479688,0.01554738,-0.09285849,0.024085965,0.06492836,-0.003859754,-0.0172673,-0.084083214,-0.027178302,0.05067257,0.030596515,-0.024059435,0.011910598,0.012541912,0.050792042,0.050403133,0.06265702,-0.00033523198,0.018779725,-0.037998866,0.09429281,0.0053980965,0.011205559,-0.03407551,-0.039909534,-0.10083243,-0.0052789706,0.080003954,-0.12091565,0.0064266445,-0.011090553,-0.007926697,0.05810885,-0.047852293,0.01901094,0.02167655,-0.07355226,0.026823755,-0.038818486,-0.06704648,0.012626591,-0.009889138,-0.010671168,0.034120735,-0.013202732,0.008555734,0.020738613,-0.010001236,0.011995486,-0.06399551,-0.09336389,0.0043410044,-0.02717532,0.06724137,-0.058077667,-0.0019183062,0.070286326,0.047919728,0.015690014,0.055390414,0.029017378,-0.048377253,0.037187558,0.028778968,-0.013643254,0.043304607,-0.028282287,-0.08223792,-0.00979026,-0.059821896,-0.048907403,0.033586305,0.02434675,-0.011904452,0.052751604,-0.0060594776,-0.08011175,0.043898914,0.0025532492,-0.024602832,0.014171234,0.024489528,0.0022028799,0.1429906,6.6727194e-33,-0.068139404,0.029351393,-0.03392062,0.040179912,0.074124664,0.042054392,-0.009841521,0.025866184,-0.044688977,0.020616798,-0.027254935,0.14015923,0.054484528,0.013305135,0.07616957,-0.025850575,-0.044133145,-0.0067189243,0.11557894,-0.03129868,-0.004030887,-0.073393464,0.02071794,0.14369251,-0.01559393,0.029905498,-0.016181713,-0.02086682,-0.004149317,0.048988868,0.11014444,0.034959957,-0.0022765393,-0.014284154,-0.091198266,0.011561957,-0.026746985,-0.042974662,0.061650712,-0.04780549,-0.057795215,-0.017148634,-0.044991992,0.040159255,-0.06901273,-0.037573736,0.029955303,0.047553558,0.117049724,0.057925746,-0.111697175,-0.06467185,-0.03596556,0.022981271,0.027200615,0.037776485,-0.043048427,0.09609047,0.04001742,-0.023093214,0.02216055,0.07413886,-0.042294234,-0.00074242626,-0.07937058,-0.0025588865,0.03841589,-0.06128511,0.113637686,-0.07779068,-0.03601133,0.018857885,-0.013986289,-0.015604555,-0.042139787,-0.020507658,-0.08146341,-0.017424777,0.05983187,-0.01550915,-0.12480664,-0.038404416,0.030802896,0.03256797,0.0781313,0.10214862,0.01226192,0.044400364,-0.07997613,0.13710831,0.008150891,0.089201674,0.035075154,0.035936214,0.082807094,-7.25114e-33,-0.039108943,-0.035143014,0.04575995,0.036826003,0.016355753,-0.020687949,-0.071762785,-0.007280482,-0.027888319,0.011518391,-0.043657195,-0.06406143,0.05378856,-0.0501157,-0.05079322,-0.019531941,-0.086860165,-0.07115346,-0.033318173,-0.040061675,0.00530441,0.05584221,0.03909899,-0.039941378,-0.039684046,-0.0025665725,-0.050353806,0.04392682,0.0058707916,-0.026178937,0.017316112,0.050251793,-0.04277883,0.05289912,-0.0013294048,0.07658048,0.05675522,0.093055725,0.0059980736,-0.013323273,0.0034089908,0.00023329537,-0.042705275,-0.055827472,0.0033747794,-0.010351809,-0.009088013,-0.10927823,-0.017480446,-0.03414084,0.009375215,0.004795891,0.019742616,-0.056350946,-0.07170944,0.04832738,-0.0042672167,-0.0675717,-0.04118836,-0.052927084,0.1044798,-0.019095905,0.025882764,0.042068757,0.070059635,-0.018358137,0.014847511,0.08738043,0.06713614,0.030034473,0.032697253,-0.046273503,-0.028687702,0.007997214,0.0027786149,-0.027076771,-0.127341,-0.0074571925,-0.039649293,-0.04794134,-0.027402712,0.0051061083,-0.018951952,-0.056328513,-0.04538619,-0.07431478,0.053106215,0.0039665923,0.009774023,0.05437703,-0.06348222,0.06883838,-0.06713971,-0.011376202,-0.011680923,-3.4625494e-08,-0.0046719597,-0.03300461,0.008736145,0.026308024,0.061969176,-0.06813999,-0.036380485,-0.02648939,-0.009119765,0.019710667,0.015401881,-0.03993601,-0.026967647,0.04613603,0.017578335,0.06647125,0.061180964,0.048241615,-0.011109698,0.0003513098,0.05592148,-0.037926123,-0.0034392849,0.02662981,0.05377085,-0.012147689,-0.043757174,0.057077426,-0.049599145,-0.036214426,-0.05959298,0.03336897,0.027449578,-0.060037285,-0.003713458,0.05511372,-0.054126024,-0.05983595,-0.015827602,-0.015418951,-0.007893475,-0.044294838,-0.049527984,0.0063568964,0.04482378,-0.07715322,-0.04278941,-0.006508837,0.017829528,0.03025119,-0.11628481,-0.08479221,0.021988515,0.02092519,0.023024905,-0.014143926,0.057716817,-0.0023473077,-0.001857575,0.02956921,-0.027185112,0.10993343,0.04541718,-0.12786023} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:20.373616+00 2026-01-30 02:01:11.800746+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1979 google ChdDSUhNMG9nS0VJQ0FnSUNxMk9IUmhnRRAB 1 t 1982 Go Karts Mar Menor unknown Me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vuelva repito seguro lo recomiendo al 100 x 100 me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vuelva repito seguro lo recomiendo al 100 x 100 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {P1.01,E1.04} V+ I3 CR-N {} {"P1.01": "Me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vu"} {-0.02515051,0.05005316,0.0018657092,-0.028132293,-0.03567412,-0.026250042,0.051275536,0.08529052,-0.07613225,0.04770519,0.01724833,-0.06432505,0.0077734757,0.043076333,-0.033637118,0.020878922,0.0015645516,0.009250199,-0.04030501,0.028199628,0.06553703,-0.047732368,-0.06449312,0.07297897,-0.037578132,-0.043389652,-0.05792622,0.031367093,-0.0006623451,0.009597913,0.04438052,0.10489912,0.097858176,0.0017148706,-0.07300981,-0.026533425,0.052294668,-0.052703515,-0.03599287,0.054998074,-0.06992864,-0.03570139,-0.009393671,-0.012517718,0.077638395,-0.05523383,0.025147798,0.06323378,0.07101371,-0.04467243,-0.03041039,0.05313808,0.000771748,0.007466677,-0.047697213,0.021850185,0.048614364,-0.029948242,0.053980492,-0.0043379795,-0.041933488,0.009887042,-0.097463205,-0.00476169,0.039455004,0.023599524,-0.03832025,-0.004806221,-0.06987287,0.030958714,0.10897765,-0.05338947,0.029670792,0.06205153,0.023133894,0.09116224,0.0014487974,0.016434353,-0.049886346,-0.03171571,0.07855076,-0.050890088,-0.01886898,-0.06224726,-0.005473313,-0.043771893,0.008440261,0.024926797,0.022890953,-0.011675179,-0.02231985,0.041968245,-0.08372529,0.020673377,0.015998608,0.07475764,-0.025570154,-0.05417374,-0.01541308,-0.0072135516,0.08595249,0.030688412,0.043867256,0.06022544,-0.048103582,-0.044481244,0.073500626,0.027078208,-0.029395683,0.025393438,-0.015141928,-0.07361505,-0.013469822,-0.018918969,-0.05387438,-0.06974649,0.046599876,0.01811223,0.0010717527,-0.155885,0.052551698,0.039696336,-0.011313983,0.03265572,0.040260956,-0.05415776,0.033600297,1.3525811e-32,-0.07704094,-0.039680917,-0.026049957,0.05383327,-0.002265074,-0.02128344,-0.046926413,0.030171629,0.030340284,-0.050447095,-0.019082068,0.08448296,-0.016606173,0.077051595,0.032749873,-0.0018518993,0.06746778,0.0069505773,0.006837355,0.0011887,-0.115980335,-0.04222098,0.034690756,0.025819492,0.033925377,0.093172476,-0.0013439952,-0.03694752,-0.08704073,0.04013029,-0.0023517183,0.03470854,0.017060198,-0.055486903,-0.09254524,0.009912202,0.03746714,0.045592885,-0.003484114,-0.029850427,-0.036667887,0.039398637,0.011993781,-0.009478507,0.035072915,0.046602674,0.11181651,0.101194374,0.031314768,-0.023562834,-0.06215078,-0.03802486,-0.16050063,-0.0078516705,0.0047138175,0.013809692,-0.026536558,0.03843593,0.021530125,-0.024007143,0.019526342,0.03104482,-0.014286657,0.064468,-0.08104827,-0.0076052924,0.074661024,0.018334636,0.072950274,0.12633301,-0.030209197,-0.07232117,0.063928835,0.008805441,0.01668002,0.019499449,0.074409604,0.015410724,-0.026898261,0.032071304,-0.12583089,0.048596643,0.08577324,0.017590703,0.11145558,0.008055956,0.042019576,0.020453673,-0.04407215,0.019121228,-0.00029163982,0.023928825,0.07185559,-0.046666957,-0.0430384,-1.2990119e-32,-0.008712149,-0.016049271,-0.023395492,0.043699607,-0.05397642,0.016800642,-0.053597953,0.037884425,0.034257967,-0.052371297,-0.06182283,-0.0628329,0.104125895,-0.07862726,-0.049588855,0.020886736,0.033867087,-0.0718537,-0.05017878,-0.032285225,-0.014543256,0.09605657,0.06060486,0.0021289154,-0.0230637,-0.10799019,-0.0067358282,0.09208555,-0.036014117,-0.01409713,-0.08591219,-0.05405876,-0.0016101036,0.051884886,-0.041422833,0.044463795,0.058428187,0.043890685,0.012932327,0.07046889,-0.0172729,0.062288452,-0.07799946,-0.041792177,-0.009842226,0.0041217543,-0.031102361,-0.14236152,0.0010517838,-0.10082604,0.11795522,-0.028745845,-0.013057553,-0.0077662533,-0.004148513,0.011036611,-0.0039437604,-0.03254864,-0.07260234,-0.048321802,0.090354025,-0.017589806,0.0020839162,-0.0006264235,0.021182047,0.026814634,-0.052478634,-0.01997787,-0.042597625,0.017907606,0.05234446,-0.01549198,-0.08873342,-0.0007127862,-0.10098851,-0.017267523,-0.061642405,0.035377447,0.07504267,0.015056753,-0.047584016,0.081036046,-0.012055615,-0.036058895,-0.003689036,-0.007101363,-0.040526085,0.07446668,-0.015642723,0.05822732,-0.010253557,0.013753029,-0.054286182,-0.03917291,0.027783336,-4.3759936e-08,-0.012769399,0.02021081,0.053171434,0.06132424,-0.010861769,-0.029891694,-0.032714054,0.029987423,-0.0040451167,0.022949958,-0.0038935395,-0.094609395,-0.050187815,0.072846055,0.0039818874,-0.043898843,-0.007590881,0.038686484,-0.081547536,-0.030388528,0.07322045,0.05853806,-0.024169706,-0.02765895,0.010616189,-0.016439825,-0.02178012,-0.03841303,-0.02179726,-0.047567945,-0.071908526,-0.078225866,-0.093210116,-0.040611297,-0.025636917,-0.033131234,-0.06676561,0.013153366,0.004800035,-0.047963694,0.0642349,-0.10845897,-0.08025745,0.023613704,-0.021943746,-0.109554105,-0.059219874,-0.012943504,-0.0268095,0.049583793,0.06247004,0.04347533,0.051493287,-0.00240884,0.058171153,0.0063985307,-0.0051720105,0.014732553,-0.04849461,0.104892425,0.053356986,0.10054018,-0.03844832,-0.082553364} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:25.081635+00 2026-01-30 02:01:11.543504+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1879 google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE 1 t 1882 Go Karts Mar Menor unknown Es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico, he pilotado los karts de la categoría F-400 y son impresionantes la potencia que tienen, también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla, nuestros hijos también montaron en los karts y se lo pasaron en grande. Saludos desde Albacete a Manolo, Andrei y Roberta por tratarnos tan bien, lo recomiendo a todo el que quiera pasarlo en grande. es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico, he pilotado los karts de la categoría f-400 y son impresionantes la potencia que tienen, también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla, nuestros hijos también montaron en los karts y se lo pasaron en grande. saludos desde albacete a manolo, andrei y roberta por tratarnos tan bien, lo recomiendo a todo el que quiera pasarlo en grande. 5 2026-01-30 01:52:39.833374+00 es v5.1 O2.03 {P1.01} V+ I3 CR-B {"Manolo, Andrei y Roberta"} {"O1.02": "he pilotado los karts de la categoría F-400 y son impresionantes la potencia que tienen", "O1.05": "nuestros hijos también montaron en los karts y se lo pasaron en grande", "O2.02": "también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla", "O2.03": "Es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico", "P1.01": "Saludos desde Albacete a Manolo, Andrei y Roberta por tratarnos tan bien"} {0.015506021,0.038918607,-0.048022866,-0.07693023,-0.094854355,0.055974618,0.047478374,0.081432424,-0.055413708,0.021537378,0.016279317,0.004366112,-0.079102635,0.022207404,-0.02021348,-0.008290419,-0.06062802,0.033710938,-0.002031616,0.043822095,0.06343663,-0.07829701,-0.039276596,0.06234476,-0.07750615,0.032684375,-0.028504508,0.0361306,-0.08152686,-0.09529175,-0.007841468,0.09029353,0.07958295,-0.019137736,-0.0713087,-0.01641748,-0.0101845935,-0.067399,-0.022777421,0.037257962,-0.06282014,-0.024646012,-0.04771051,-0.009998085,-0.009654279,-0.08747566,0.011664129,-0.0035484978,0.031924073,-0.023683704,-0.057984572,-0.022949973,-0.028006151,-0.0033487526,0.011054309,-0.019432155,0.0033547631,0.036273595,0.08729105,0.049919803,0.056225773,0.017766701,-0.08008055,0.093955226,0.02891375,-0.007942934,-0.016643293,-0.0139902085,-0.02459989,0.03115295,0.13509132,-0.06593026,-0.040857837,0.01909991,0.032392472,0.07941364,0.009804497,0.044348545,-0.022222111,-0.06888899,0.015461301,-0.0670812,-0.062832385,-0.063290834,0.011170002,0.021127794,-0.009650401,-0.0051937164,-0.0074603027,-0.028412292,-0.020217402,0.051949326,-0.08521674,-0.063463636,-0.03235741,0.013325642,0.044023994,-0.06337442,-0.029283665,0.0051610153,0.12385741,-0.04144612,0.024734788,0.009855489,-0.058864903,0.032889828,0.042761296,0.0014348289,-0.03873263,-0.009543868,-0.06334785,-0.011400015,-0.06549778,-0.043675948,-0.008739491,-0.023291437,-0.030501707,0.021188632,0.023623485,-0.039356206,0.0029485426,-0.07020184,-0.0023195331,0.0014751919,-0.003242876,-0.06463377,0.014543689,1.2454211e-32,0.014133079,-0.0034924934,-0.021267146,0.04472261,0.052459013,-0.04791529,-0.038212985,-0.023505567,-0.07022145,0.017942196,-0.13551272,0.0714628,-0.046231084,0.009657255,0.11397127,-0.00016342298,0.0002738308,-0.060985144,0.056676693,0.0006546714,0.0011960502,0.044003587,0.046748415,0.025760049,0.063557796,0.14760488,0.05421382,-0.093379915,-0.091983065,0.05871944,-0.03902411,0.092041664,0.00024070084,-0.017811289,-0.10435659,0.0019618482,-0.02368492,-0.016181676,-0.025637558,0.04638099,0.09113015,-0.0013387856,-0.014857377,0.04689796,-0.005840539,0.006098937,0.01836058,0.10596694,0.117109954,0.09517801,-0.049243342,-0.06271777,-0.056081325,0.0013773629,0.04522445,0.06142917,-0.053497322,0.027627274,-0.0010122345,0.018283091,0.071657434,0.013822165,0.048053175,0.036341224,0.0041718073,-0.039785434,0.062414832,-0.020180244,0.07238365,0.04992807,-0.13274321,-0.05306323,0.006476536,-0.0016293845,0.07987598,0.011898615,-0.04758115,0.032356225,-0.027073124,0.051780116,-0.10105188,-0.016666854,0.02369161,0.032941002,0.0021585932,0.07574045,0.059146054,0.039202176,0.0017048529,0.17466915,-0.0116410935,0.075527474,0.025959123,-0.03586533,0.030894158,-1.476595e-32,-0.015921095,-0.02044274,0.05773175,-0.0005691661,-0.05588421,0.0086787725,-0.0433429,-0.02430792,-0.0026853252,-0.005903748,-0.0060929786,-0.06289929,0.07589099,-0.09645213,-0.087063126,-0.038085744,-0.0499588,-0.061303034,-0.05054272,-0.03529652,0.04096003,0.06859687,0.024238192,-0.028001519,-0.05137408,-0.07711124,-0.0059036687,0.06831136,-0.09128087,-0.03035088,0.07075808,-0.002976628,0.0021506776,0.059459776,-0.07163255,0.036808163,0.08419614,0.069450155,0.012460146,0.07100013,-0.00021399862,0.11734112,-0.019564398,-0.046720393,-0.014519327,-0.0035038746,0.012453548,-0.07160943,-0.022490982,-0.06950726,0.09327324,-0.052794363,-0.121703215,-0.0011508431,-0.014168875,-0.0018170547,0.0021909648,-0.107090734,-0.092723064,0.022272253,0.03562457,-0.030379778,0.047488302,-0.08211974,0.04005046,0.004579795,-0.048714258,0.0035177874,0.03242601,0.04260552,0.07026531,-0.081288025,-0.020307112,0.053541824,-0.01940166,0.012344526,-0.12526527,0.034421504,0.034656372,-0.05000036,-0.00089211354,-0.03667635,-0.037446488,0.025015205,0.02400936,-0.03532097,-0.012526308,0.008179724,0.07367986,0.00015827481,0.04503955,0.072640575,-0.024224915,-0.012538717,0.00018655801,-6.553586e-08,0.020570453,0.04331039,-0.13902195,0.016362643,0.0071140993,-0.031730767,-0.05703925,-0.031769563,0.011317051,0.0064421208,-0.0062150764,0.00557349,-0.0462319,0.025842879,0.015381445,0.0032805633,0.05495405,0.05265757,-0.021933211,0.0015887787,0.040221814,-0.03311698,-0.025736513,-0.014812446,0.029549759,-0.012579009,-0.057338864,0.03369817,0.03046804,0.055670697,-0.042008683,0.023422606,-0.051288564,-0.06568035,0.0051184567,0.016580045,-0.03463648,0.014545519,-0.0023659372,-0.046196423,0.067754686,-0.10923039,-0.08095886,0.009494639,-0.07443314,-0.1023594,-0.005341718,-0.018142339,-0.022401424,0.026180035,-0.039826166,0.028240843,-0.0031278904,-0.05549058,-0.0062734797,-0.015112242,0.022540923,0.016416132,-0.048547804,-0.065339714,0.0085933115,-0.0026871944,0.022420378,-0.079165466} 0.96 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:27.486368+00 2026-01-30 02:01:11.044757+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1901 google ChdDSUhNMG9nS0VJQ0FnSURwcDZPMDNBRRAB 1 t 1904 Go Karts Mar Menor unknown Buen circuito, buen plan para despejarse 🏎️ buen circuito, buen plan para despejarse 🏎️ 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.01 {V4.01} V+ I2 CR-N {} {"O1.01": "Buen circuito, buen plan para despejarse 🏎️"} {-0.08204656,0.100161135,0.008779593,-0.060614437,-0.04427788,0.010265167,0.02484871,0.07081435,-0.018682007,0.0009404681,0.031452615,-0.0406866,0.024626998,-0.08284123,0.027629275,0.025600938,-0.08163893,0.04180835,-0.046974596,-0.016434649,0.08471048,-0.002711281,-0.018571677,0.09160018,-0.014533773,0.03712887,0.14940563,0.019616978,0.01861398,-0.11468903,0.013503131,0.04014667,-0.033245675,-0.027217887,-0.00819308,0.032058407,0.00036666114,-0.09577635,0.020371562,0.003327029,-0.049819835,-0.0709677,-0.02393789,-0.09625612,0.04549293,-0.04927797,-0.0036372119,0.026368536,0.035999034,-0.10117332,0.031219259,0.004770735,0.032479405,-0.02163482,-0.014752381,-0.023910867,-0.0055979383,-0.0018798839,0.08563855,-0.021166215,0.048906703,-0.046493243,-0.015506031,0.007835615,-0.04307988,-0.019664139,0.0011605889,0.039066043,-0.038685888,0.016236499,0.074577,-0.10780303,-0.013330478,-0.049876772,0.0007285091,0.028176356,0.012695516,0.04274522,-0.007785647,-0.111293085,0.05502071,-0.011626177,-0.03601877,0.012419599,-0.05822572,-0.0053860317,-0.0014808627,-0.027489962,0.032588787,-0.08795939,-0.0037584158,0.003923177,-0.06926251,0.014503456,-0.06213655,-0.04857686,-0.018195054,-0.08016073,-0.0016041588,0.09314751,0.033985745,0.06469684,0.08625082,0.034250654,-0.08231798,-0.019420722,0.04000258,0.08117,0.09237074,-0.07406989,-0.024006031,-0.035149533,-0.019053863,0.001079376,0.083589636,-0.05142666,0.009343558,-0.015888663,-0.0015164836,-0.06292069,0.06935554,0.0034195615,-0.089889385,-0.004180609,-0.029106198,-0.020391112,0.094460905,2.7396486e-33,-0.018946102,-0.028559458,0.014392528,0.014104145,0.008191302,0.048018366,-0.08397305,0.04118406,0.010536205,0.00051279954,-0.04563016,0.041302446,-0.076423645,0.065549135,0.122683495,-0.08812905,0.009108165,0.012979538,0.08351899,-0.016900271,-0.0008885449,-0.046344507,-0.02090428,0.04432758,0.060669206,0.015283129,0.061107747,-0.048922963,-0.061571836,0.033650476,0.06868413,0.019064534,-0.02244083,-0.025323296,-0.11312526,-0.009690401,0.010145195,0.02578358,0.017874138,-0.088823885,0.038215596,-0.020567741,-0.016984513,0.033085473,0.05741852,-0.020686103,0.041220687,0.012320979,0.095544316,0.05143753,-0.109526314,-0.021422591,-0.03668691,0.009725915,0.07621193,-0.0031445648,-0.03873695,0.049406394,0.044466108,0.053462632,0.028172122,0.053635776,-0.043446913,0.0018324758,-0.037180264,0.013144048,0.018185193,-0.03756673,0.04791951,-0.10720404,-0.088625126,0.024442963,0.026253646,2.7073931e-05,-0.048405547,0.010189795,-0.058724787,0.04732518,-0.03137058,0.039829362,-0.09737095,-0.04013846,0.01776208,-0.0155836195,0.11336461,0.09575272,0.08133943,-0.0351232,-0.017379772,0.09003015,-0.05118847,0.06454293,0.05081222,0.014736963,0.080099955,-3.5126842e-33,0.026203664,0.008660765,0.015014707,0.0573437,0.03412413,-0.022799829,-0.038391214,-0.006271558,-0.074595444,0.0035715727,-0.014396599,-0.07646424,0.09870574,-0.022922786,-0.015771376,0.047979143,0.031132245,-0.056041066,-0.096343756,-0.008172121,-0.040926192,0.06607817,-0.06653246,-0.025562547,-0.035860192,0.01007517,-0.0090646725,0.03709843,-0.030680675,0.021491565,-0.018309519,-0.03285763,-0.08611234,0.14567818,-0.0603821,-0.030785171,0.08490157,0.07296834,-0.015799407,-0.0070083933,0.00264214,0.009716487,-0.046173908,-0.02981238,-0.08889445,0.0040245014,0.05449159,-0.091395386,-0.01658967,-0.07346091,0.06824823,0.042282574,0.033209994,-0.06307522,0.018052485,-0.06851494,0.007363163,-0.020893658,-0.080546774,-0.020642512,0.076407105,0.03142962,0.05395963,0.029433303,0.049476575,-0.033584643,-0.028608384,0.06267754,0.11208754,-0.043027855,0.028610284,-0.03480166,0.035076123,0.007997774,-0.05397874,-0.032136798,-0.072635934,-0.031983677,-0.016642554,-0.0065188208,-0.018422944,-0.010329674,-0.055612884,-0.02169426,-0.045250054,-0.06936723,0.03013439,-0.013547542,0.01353849,0.029604876,-0.06258677,0.053872664,0.0051803,0.036579642,0.001145479,-2.3911767e-08,0.009557891,0.0043168515,-0.015964985,-0.00016958866,0.06548551,-0.11527705,-0.031211194,-0.056063157,-0.045413386,-0.014714304,-0.023499675,-0.015460414,-0.07202768,0.11148975,-0.024898611,0.056032933,0.04883272,0.08238602,0.030951593,-0.045456544,0.051015135,-0.024900552,-0.04105342,0.06278738,0.090580985,0.058365554,0.05017055,0.08540841,0.12319775,-0.041956943,-0.005607154,0.007970083,-0.045498777,0.022852842,0.07157324,0.017671267,-0.08000749,0.06716816,-0.0010240161,0.009325957,0.005202307,-0.056280002,0.012027157,0.016361801,-0.0037481764,-0.028119786,0.034547057,0.022327665,-0.025940202,-0.021043606,-0.09879995,-0.04495737,0.06525957,0.06045006,0.01649461,0.058474995,0.022426026,-0.0176932,-0.032452352,0.01318206,0.02396938,0.099454954,-0.053890243,-0.039356027} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:34.507332+00 2026-01-30 02:01:11.13776+00 22c747a6-b913-4ae4-82bc-14b4195008b6 1902 google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE 1 t 1905 Go Karts Mar Menor unknown Gente grosera y maleducada,coches muy sucios y llenos de aceite sin mantenimiento ,el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bien y olían a quemado y no te salgas de la pista o des un golpe a otro coche porque al salir te hablan mal y delante de la gente(gritan me vas a hundir el negocio,aquí no vuelves a entrar y eso solo se lo dice a los niños porque no se atreve con los adultos,un hombre de ojos azules y vestido muy sucios y olor sobaco,nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches gente grosera y maleducada,coches muy sucios y llenos de aceite sin mantenimiento ,el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bien y olían a quemado y no te salgas de la pista o des un golpe a otro coche porque al salir te hablan mal y delante de la gente(gritan me vas a hundir el negocio,aquí no vuelves a entrar y eso solo se lo dice a los niños porque no se atreve con los adultos,un hombre de ojos azules y vestido muy sucios y olor sobaco,nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches 1 2022-01-31 01:52:39.833374+00 es v5.1 P1.02 {} V- I3 CR-N {} {"E1.01": "coches muy sucios y llenos de aceite sin mantenimiento", "O1.01": "el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bi", "P1.02": "Gente grosera y maleducada", "R4.03": "nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches"} {-0.0060791676,0.036124222,0.0041650767,-0.054862894,-0.028105307,-0.030623743,0.09893237,-0.022522954,0.00795308,-0.01720456,0.11142104,-0.081726536,-0.02734683,-0.019896658,0.010611414,0.010642908,-0.01933824,0.014385804,0.04220892,0.019759635,0.100316405,-0.016042609,-0.08815604,0.041066606,-0.10317473,0.045915283,-0.03439571,-0.015436005,-0.062091675,-0.059961077,-0.00797868,0.039245535,0.12712385,-0.02498589,-0.045225687,0.0018959031,0.050652817,-0.060968578,-0.015783245,0.10924505,-0.082385525,0.051104248,-0.012648202,0.0007176638,0.010770909,-0.051410265,-0.028557582,-0.026207663,0.03580209,-0.07310016,-0.077887066,-0.013674078,0.007582633,0.030368352,-0.047004253,0.027034426,-0.006119849,-0.040366706,0.10354093,0.0811652,-0.026391422,0.01513904,-0.0029992007,-0.014578979,0.080787994,-0.04160648,0.038671907,-0.015601219,-0.08515803,0.08848618,0.0719625,-0.03946534,-0.027639475,0.04593472,-0.04569092,0.085683025,-0.017270297,-0.023879547,0.011243396,-0.07028328,-0.037995465,-0.022499584,0.01775363,-0.09465246,0.018376691,-0.034127526,0.0009033373,-0.013376773,0.025457107,-0.00019610726,-0.053502787,0.02764309,-0.077947795,0.00999268,0.01151413,0.01320602,0.030990541,-0.02942556,-0.063311145,0.011172087,0.12930854,0.026619706,0.06357493,0.032825522,-0.011746358,0.09409164,0.03844049,-0.015373595,0.0062872516,0.081592634,-0.10509791,0.00022847456,-0.0196413,-0.020254552,-0.026051061,-0.03433885,-0.0026966364,0.0008775655,-0.023402361,-0.020252328,0.046659194,-0.017677682,-0.0405921,0.02294428,0.0035816585,0.008142229,0.032656673,1.775807e-32,0.014517586,0.014293061,-0.019561207,0.03502658,0.06436321,0.020973757,-0.041171253,-0.017362127,-0.018098244,-0.037494928,-0.048455298,-0.017032955,-0.03811837,0.0435492,0.048034407,0.0099173095,0.0025863114,-0.118497536,0.051542655,0.067064926,-0.060952853,0.012547502,0.015701594,0.013797511,-0.025617227,0.007827525,-0.016650477,-0.0972387,-0.061608754,0.03478033,0.0154406745,0.04343776,0.05100287,-0.021097576,-0.08295217,-0.0026240598,0.05717445,0.023989977,-0.06674489,0.00148814,-0.028072292,0.027612338,0.0046759206,0.07467454,-0.00861987,-0.043079253,0.030343823,0.06453056,0.01780686,0.022439228,-0.100808114,-0.048550162,-0.03439088,-0.05260118,0.017826049,0.102054454,-0.095620975,0.04778071,-0.0370066,-0.095496595,0.08750977,0.022218922,0.079396054,-0.008834717,-0.04677212,-0.005080749,0.039368086,0.026061479,0.17323248,-0.017006746,-0.065292165,-0.06673634,-0.04332946,0.017299348,0.01820627,-0.0013679328,0.06456964,-0.021827592,0.03348162,-0.031872187,0.0058866213,0.009637264,0.020921163,-0.015611116,0.05639444,0.00523289,0.03701165,-0.009362268,-0.03293273,0.1176222,-0.03579832,0.081133254,0.09482959,-0.0862711,0.009684988,-1.7073072e-32,-0.003289345,0.03310623,0.023845788,-0.008750406,-0.033564787,-0.020470794,-0.021733245,-0.012688205,0.0035551663,-0.08473011,-0.097232714,-0.13956149,0.08347867,-0.08687606,-0.012347806,0.01805185,-0.03709501,0.014662785,-0.040943857,-0.045883983,-0.0056073405,0.08250569,-0.019644398,0.026490655,-0.021950291,-0.0065588374,-0.030091006,0.011336962,-0.045542296,-0.008676919,0.08057908,-0.0044646757,0.039509453,0.016839044,0.015086339,0.06858973,0.01393766,0.03611235,-0.014816654,0.04570515,-0.038850725,0.08478468,0.00073621236,-0.035613272,-0.024070486,0.09392469,0.044091396,-0.093641944,-0.038611174,-0.025248647,0.04203984,-0.04991067,-0.16974106,-0.03740215,0.005548646,-0.029867906,0.0030059288,-0.09252339,-0.110801466,-0.021915939,0.0050821723,0.008214285,-0.1029202,-0.017032484,0.0824189,-0.01093495,-0.005150981,0.025998648,0.05185003,0.0328269,0.030252948,-0.027119486,-0.06745349,-0.038357183,0.021120155,-0.029047621,-0.14854692,-0.021865357,-0.05938265,-0.06819473,-0.026010474,-0.020490492,0.004417149,-0.023376875,-0.044045717,-0.054280367,-0.017123833,0.06643383,-0.024764834,0.087553605,0.029094879,-0.022923272,-0.06603316,-0.08912685,0.015779248,-6.053966e-08,0.10088654,0.056116182,-0.024437584,-0.013538829,0.028566472,-0.031690396,0.007480423,-0.06623663,0.07938047,0.029063966,-0.03665513,0.031882565,0.0056140833,-0.016403103,0.01749695,0.06069499,0.087535396,0.06755924,-0.013130579,-0.06935083,0.07782204,0.03771301,-0.01761528,0.053418722,-0.029805806,-0.0050145476,-0.045908704,0.018654738,-0.014348927,0.030331358,-0.01358863,-0.010666407,0.026493274,-0.115150504,0.012660121,-0.03749114,-0.008938249,-0.021709537,0.033117,-0.048678987,0.06541144,-0.03348055,-0.076226965,0.027754704,-0.04199341,-0.07090235,0.03204623,0.029393977,-0.017010456,0.058770463,-0.069882564,-0.027899157,0.045696482,0.016144693,0.044965796,-0.02152213,0.024916872,0.043180328,0.03448447,-0.035695784,0.08032239,0.09707332,-0.018166838,-0.12906216} 0.96666664 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:49.87131+00 2026-01-30 02:01:11.142326+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2057 google ChZDSUhNMG9nS0VJQ0FnSUN3NHA2S0NnEAE 1 t 2060 Go Karts Mar Menor unknown Una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. Sin duda repetiremos!!! una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. sin duda repetiremos!!! 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.03 {R4.03} V+ I3 CR-N {} {"V4.03": "Una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. Sin "} {0.004771023,0.01574215,-0.061500434,-0.06362045,-0.013750625,0.03471262,0.048296954,-0.056029126,0.006410281,0.013763379,0.06625136,-0.024738606,-0.041076157,-0.03338775,-0.0105322,-0.0141138295,-0.062754214,0.024104094,0.026600752,0.0030355514,0.056927852,-0.07728267,-0.06779234,0.103275366,-0.069447994,-0.017186323,-0.02348165,-0.042546984,-0.06864204,-0.04372431,0.051196273,0.068839975,0.0402652,-0.017454747,-0.00079425913,-0.0031350756,0.050215807,-0.08057685,0.029880067,0.047812313,-0.12344059,0.03174952,0.0055249333,-0.03732408,-0.0033568454,-0.1269908,0.042580232,0.05080979,0.023281835,-0.014796788,-0.027153872,-0.015662648,0.006124345,-0.014515234,-0.031858385,0.039644405,-0.01091439,-0.043258484,0.06823226,0.001859563,-0.0022832013,0.08848061,-0.06429679,-0.004027989,-0.06145414,-0.05078693,0.06337983,-0.011805032,-0.043592535,0.030490464,0.083333306,-0.020324277,0.024461867,0.035350345,-0.010287991,0.06009936,-0.07966872,-0.0016657625,-0.01651721,-0.020887572,-0.028130818,-0.014602254,-0.014707214,-0.010232892,0.015144817,0.02890727,-0.044305053,0.032985084,0.06231152,-0.06342304,0.004483219,0.0643265,0.015661169,0.009288919,-0.061270934,-0.0039373147,0.044426046,-0.04287386,-0.033330243,0.050617322,0.10054176,0.065404624,0.05609187,0.020751275,-0.039211147,0.0795186,0.021530198,-0.013634629,0.026150431,0.03193454,-0.035009094,-0.020671315,-0.04523813,-0.014503328,-0.09052319,0.05827183,0.014363227,-0.0380701,-0.04619723,-0.062497657,0.06252243,0.021675874,-0.0035220322,-0.06760442,0.029333899,-0.03350164,0.068011776,7.6411945e-33,-0.06258771,0.011614914,0.0042630485,0.036961563,0.06624238,0.011314284,0.013131665,0.0040915767,-0.06570966,0.0126472805,-0.063472785,-0.006368,-0.052250378,0.029360788,-0.01891694,0.0535498,-0.058201727,-0.048367206,0.014682583,0.03567065,-0.06806047,0.0061353873,0.02946986,0.04887491,-0.043490462,0.0114653325,0.019938258,-0.042220045,-0.00020139573,0.063580856,0.0015806768,0.06549846,0.054734875,-0.05309377,0.0027782351,-0.04694316,0.047026057,0.043283924,-0.005595965,0.052916154,0.04919559,0.012915309,0.014252673,-0.04814512,0.023567585,-0.04688185,0.09877536,0.04807994,0.105220325,0.032011025,-0.025943702,-0.10020915,-0.04370334,-0.054128364,-0.025642723,0.0017634776,-0.085848436,-0.010942976,-0.024141336,-0.10015246,0.08947645,-0.03803261,0.023767818,-0.046193335,-0.11897282,0.03073389,0.025861893,0.02734952,0.14560933,0.07153869,-0.022619478,-0.030345328,-0.070837826,-0.023873447,0.033393305,0.049988557,-0.0049584643,0.09117013,-0.023296816,0.054705918,-0.027257655,0.029608095,0.011102214,0.055551376,0.064125314,0.1087724,0.03690986,0.025545988,0.0022010847,0.089331195,0.019313315,0.053483658,0.03267095,-0.0631015,0.0818969,-8.412601e-33,-0.0026444928,-0.05056517,-0.0127476975,-0.01471485,-0.028915392,-0.05454182,0.0047566886,0.017261762,0.03709771,-0.0997248,-0.1337688,-0.11003564,0.088683605,-0.09272683,-0.06001457,0.03860937,-0.00010440738,-0.04477081,-0.044642594,0.0291657,-0.0059606563,-0.018435737,0.032283004,0.026615718,0.052090403,-0.08876517,0.029844105,0.025214404,-0.03499918,-0.07540519,0.014135341,-0.03578329,0.008788518,-0.018379806,-0.008380048,0.07512877,0.046849772,0.072168775,-0.026184006,0.03724508,-0.01756722,0.041820426,-0.031639244,0.017899724,-0.015580345,0.053130597,-0.016207157,-0.105866544,-0.043578595,-0.031568278,0.009479492,-0.08107055,-0.019729357,-0.0013224869,0.111871056,-0.0013237151,-0.013021954,-0.002328307,-0.026767166,-0.007526346,0.016559597,0.057567194,-0.065311655,0.03885744,0.14551432,-0.0312806,-0.099981904,0.013969195,0.026913127,0.11827418,0.11774981,0.016331395,-0.09953004,-0.009529428,-0.10217257,-0.052487947,-0.07419482,-0.027997242,0.011693615,0.053825382,-0.009023436,0.013369851,0.01543636,-0.0974911,-0.008900579,-0.030990977,0.006901646,0.03313418,-0.024652803,0.07062085,0.022809716,-0.00019478523,-0.04082772,-0.08805297,0.0059081214,-3.4015876e-08,0.062343556,0.038079925,-0.06707221,0.04289334,0.011815479,-0.066290066,0.0019588852,0.028206985,0.03341409,0.041470796,-0.037139032,-0.016091146,-0.0073237754,0.02713382,-0.06578288,0.02072302,0.06062277,0.10945137,-0.012888133,-0.0679591,0.087924756,-0.0014116708,-0.0057833027,-0.008077323,-0.02019147,-0.027991297,-0.0009725892,0.03888078,-0.035888568,-0.024635132,-0.057914373,-0.05423616,-0.06057167,-0.12891622,0.011428119,-0.022939086,-0.06803465,0.010930516,0.0055856416,-0.12701431,0.10138162,0.014084045,-0.07061851,-0.04998052,0.0039865053,-0.06809796,-0.03118842,0.010143561,0.00899334,0.07690913,-0.019673508,-0.03914639,0.07306736,-0.026604826,0.025095034,-0.047112633,0.07105717,0.054764956,0.004533872,-0.0044367653,0.1119654,0.06178725,0.030692182,-0.061227} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.938601+00 2026-01-30 02:01:11.809592+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2058 google ChZDSUhNMG9nS0VJQ0FnSUM5bE9UeGFnEAE 1 t 2061 Go Karts Mar Menor unknown Первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось. первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось. 5 2025-01-30 01:52:39.833374+00 ru v5.1 V4.03 {O1.02} V+ I3 CR-N {} {"V4.03": "Первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось."} {-0.02759755,0.037856467,0.023462543,0.0025909413,-0.09007655,0.046348207,0.07098643,-0.004049341,-0.07331118,-0.043918196,-0.008960092,0.045909382,-0.051582985,0.039471067,0.034311645,-0.009012446,-0.03491575,0.09983916,0.012797553,-0.032369364,-0.019777449,-0.039779995,0.06648853,0.041518457,-0.033387918,0.03186268,-0.019720048,-0.007740131,0.04084739,0.0451215,0.010859727,-0.026769351,0.019309394,0.015615416,0.00796667,-0.010268143,-0.054446835,-0.047731265,0.0535922,0.07547341,-0.026528785,-0.03634172,-0.1188766,-0.045813814,0.01176476,0.00013671049,-0.06862775,0.08522468,0.056944348,-0.1000716,-0.102716036,-0.042208698,-0.054109473,-0.015995905,0.03499837,-0.103050016,0.015244571,-0.070248805,-0.033368964,-0.02109335,-0.0076352777,-0.0013508915,0.0020362989,-0.03350798,-0.021781683,-0.0006001821,0.01873187,0.07266234,0.0034728395,0.11302279,-0.055062484,-0.022927301,-0.055111986,-0.039372887,-0.106504984,-0.08266931,-0.014067374,-0.045240704,-0.038574807,0.02252499,0.009677809,0.029194737,-0.10851304,-0.048799805,0.019797271,-0.052554633,0.0022754425,0.010337113,0.011489866,0.054794263,-0.04026233,0.0557257,0.047026597,0.00022733473,0.01357029,-0.0134237725,-0.009359402,-0.045545477,0.08463569,-0.05212929,-0.01313715,0.0043252613,0.09133508,-0.014681672,-0.07784247,0.009310072,-0.07688159,0.00067616795,0.026954513,0.00020593435,-0.084746405,-0.102577716,-0.0050995816,-0.044561286,0.00011646918,0.10641733,-0.050806392,-0.06036662,0.033276506,-0.011206403,0.097419575,-0.0016629922,0.029088812,-0.004212935,-0.018124478,-0.03772861,0.055631977,1.06111184e-32,0.022866081,0.023387428,0.065157376,0.028275095,-0.08844482,0.010518979,-0.06776392,0.0020837453,0.011616355,0.058343727,0.020698281,0.050981056,0.03329442,-0.035428565,0.015571735,0.00788924,0.08044268,0.025855618,0.038510025,0.07945714,0.020814832,0.0807408,-0.06535214,0.0066165715,0.050979216,-0.006867648,-0.037501868,-0.04457241,-0.00082683086,-0.024698017,0.09198525,-0.018315027,-0.03812671,-0.033378273,-0.014583278,-0.10957506,-0.017276684,0.06877306,0.024155613,0.07703661,0.050384764,-0.10038491,0.017908199,-0.0055893613,0.14287992,0.026005136,0.039194614,0.035411306,0.03178586,-0.018595409,0.0009641273,0.0051464345,-0.1176657,0.010356989,0.08275743,0.06778076,0.03190801,0.048651636,-0.053812355,-0.024661995,-0.0120944,-0.12665099,-0.0013794078,-0.062295098,-0.023028558,-0.06527344,-0.010384999,0.016121441,-0.011741825,0.04141606,-0.077191345,0.028595656,-0.060572818,0.07734119,-0.008091515,0.0018618709,-0.054971363,0.052809928,-0.079304315,0.031862855,-0.12636225,0.021553457,-0.02847476,0.01831902,0.027568866,0.06838416,0.034917638,-0.037524026,0.02128722,0.0042175925,-0.164246,-0.0792886,0.016731648,0.004443966,0.023715599,-1.2879091e-32,0.052662484,-0.02606914,-0.08907226,0.073972635,0.015469038,0.07276284,0.012755011,0.008444686,-0.025561213,0.13221778,-0.05722275,-0.08396316,0.03256582,-0.008811885,-0.0024766284,0.035859574,0.054511316,0.06018863,-0.15308563,0.006761988,-0.02283734,-0.027142521,0.06891742,0.0048552733,0.033321712,-0.03596276,0.114646174,-0.040475283,-0.0256913,0.067345284,-0.011945229,-0.02778108,-0.023233868,0.052684184,0.04592819,0.03766531,0.051917464,-0.04821242,-0.10186632,0.085722715,0.020313857,0.05009834,0.089694574,0.04684949,0.0053590676,-0.060244862,-0.11503813,-0.0043642665,-0.03083741,0.013612338,0.06088354,0.030986425,-0.0070774625,-0.10448154,0.048533816,-0.018180026,-0.00870054,-0.005897877,0.053053785,-0.012126597,0.015665226,-0.029084511,0.070510864,-0.013473276,-0.053585317,-0.07729903,-0.046909355,0.089218,0.011482902,-0.052305464,0.049064886,-0.08876829,-0.023245092,0.05002654,-0.030733213,0.036348008,-0.07558411,0.0803607,0.031284362,0.039121922,0.059917543,-0.031719673,-0.05288295,-0.004674447,-0.087449074,0.013309018,-0.0057971873,-0.0007313388,0.076960735,-0.043700065,-0.042521156,0.026016854,0.05248733,0.016314251,-0.004345372,-4.8004505e-08,0.03004596,-0.062322646,0.08134648,0.048135538,-0.0029701893,-0.031174414,-0.018726047,-0.043227423,-0.07979998,0.05492105,0.019136384,0.006797022,-0.013855364,-0.0069547463,-0.07952232,0.024052855,-0.030541325,-0.04368839,0.056722548,-0.0249747,0.044979762,-0.023517277,-0.06849314,-0.011302799,-0.006656248,0.033797204,0.04209395,-0.041517593,0.02381058,-0.018609812,0.024172459,-0.016190348,0.0042682476,-0.012639447,-0.014456803,-0.030429233,0.025766773,0.036834076,-0.030505765,-0.028241398,0.080888204,-0.071730435,0.06450949,-0.02072014,-0.08210605,0.06042314,0.009601217,-0.042671207,0.04015769,0.016778097,-0.035866782,0.009593719,0.020622501,0.00064386305,-0.022834102,0.09911311,0.04047153,0.012104059,-0.015370626,-0.021896819,-0.014162243,0.09919271,-0.0018833694,0.01548505} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:51.95237+00 2026-01-30 02:01:11.811803+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2064 google ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB 1 t 2067 Go Karts Mar Menor unknown un circuito de lugo super bonito y cuidado buen anbiente y los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos un circuito de lugo super bonito y cuidado buen anbiente y los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos 5 2019-02-01 01:52:39.833374+00 es v5.1 P1.01 {V4.03} V+ I3 CR-N {} {"E1.04": "un circuito de lugo super bonito y cuidado buen anbiente", "P1.01": "los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos"} {0.0013323516,0.02062487,0.0010052266,-0.006076371,-0.05448163,-0.012478262,0.055941258,0.11103797,-0.003334874,0.041969914,0.11496947,-0.044652246,-0.07441277,-0.0189949,-0.025381159,0.004532078,0.033386942,0.022395927,-0.08274303,0.0028730552,0.066898406,-0.052027065,0.016358832,0.08251836,-0.12877709,0.031932563,-0.003793052,-0.02800025,-0.04328887,-0.024275167,-0.017062208,0.07899894,0.11513449,-0.03698515,-0.12880607,-0.0023420232,0.0001994657,-0.0015443588,-0.006061585,-0.024549503,-0.061181016,-0.043545768,0.023166787,-0.069797605,0.020423165,-0.09475829,-0.040862165,0.010299199,0.0019056647,-0.022717468,0.0005387376,-0.0957651,0.04701593,0.13807401,0.012196129,-0.015116643,-0.03843162,0.0003482341,0.01782112,0.026454696,-0.11938286,0.08043858,-0.066097304,-0.0069363383,0.020487862,-0.039227933,0.06166843,-0.051640853,-0.041260812,0.051463332,0.100673616,-0.037420206,0.047303077,0.040296517,0.02517113,0.09220132,-0.0038885307,0.0076368037,-0.018129118,-0.0049566953,0.024427496,0.012652063,0.017077452,-0.01243667,0.04176986,0.013338107,-0.038501035,-0.015732901,-0.09612459,-0.03246977,-0.024288319,0.023142418,-0.0214582,-0.051569607,-0.0375363,0.017480332,0.047137372,-0.08072556,-0.0044870432,-0.007860623,0.041344073,0.034693252,0.07333222,0.04206899,-0.01009858,0.018552333,0.009130446,-0.03504727,0.007357937,-0.017971221,-0.053549767,-0.05693773,0.019726729,0.02396718,-0.053471044,-0.05437919,0.0213323,-0.05048937,-0.0039244527,-0.03236232,-0.029447785,-0.002023755,-0.034104984,-0.044405464,0.027449798,-0.09313107,0.013975922,7.683285e-33,0.016430777,-0.046809692,-0.01985159,0.090558946,0.023671353,0.066024035,-0.027913589,-0.006318255,0.008629801,-0.011376992,-0.036042057,0.025415868,0.03379609,-0.0391323,0.026688121,0.0029133107,-0.053785257,-0.07275469,0.053078454,0.10624506,-0.021884272,-0.07416583,-0.01591411,-0.010892346,-0.01318961,0.063739106,0.015777389,-0.01772518,-0.073505,0.062289555,-0.051371865,0.052380014,0.05911647,-0.040343698,-0.13229086,0.005193023,0.110125504,-0.00074585894,-0.024167588,0.009102451,-0.056220908,-0.015079286,-0.021151546,0.03861651,0.018206311,-0.012340657,0.06954093,-0.11422265,0.041387305,0.097289026,-0.07318346,-0.085541174,-0.02210388,-0.05633622,-0.0044131265,0.06633697,-0.05807896,-0.0026161976,0.040430576,0.02310695,0.111234926,0.020396575,-0.043674447,0.0052284016,-0.039252385,-0.053099673,0.04945286,-0.02747399,0.0382551,0.009402636,-0.056984786,-0.06572781,-0.03139733,-0.025476323,-0.03573019,0.046662472,0.010762418,0.016275855,0.01635006,-0.016629249,0.017938728,-0.02614841,0.031560324,0.04624096,0.07115167,0.0922564,-0.027642991,0.069420524,-0.092278525,-0.0044001383,-0.013745821,0.039670207,0.07771385,-0.07081141,0.06542622,-9.2975645e-33,-0.015797336,0.0155831985,-0.0069164694,0.01929175,0.03740986,-0.050050266,-0.0007829742,-0.06694941,0.023389725,0.006417745,-0.001106221,-0.1223222,0.04958294,-0.03261215,0.005078165,0.03622867,-0.0003007184,-0.066966355,-0.02876294,-0.011161836,-0.02684685,0.029936174,0.006769934,-0.021039765,0.0024828238,-0.053474687,-0.058144387,0.036573116,-0.08386983,-0.01695227,-0.030204743,0.0033433307,0.030840479,0.00853476,-0.00813562,-0.012618893,-0.0032602423,0.09364057,-0.03908404,-0.039836373,0.053531706,0.029284073,0.020809475,0.033580672,-0.00052167726,0.058243673,-0.0045068953,-0.113549314,0.049966004,0.017016849,0.053823885,-0.06350129,-0.043125212,0.062076427,0.032838326,-0.08022371,-0.0068049068,-0.06429817,-0.12847945,-0.007054318,0.03132182,0.016836721,-0.08073084,-0.019359907,0.07498277,0.07261628,-0.082228005,0.020867147,0.10321577,0.071776025,0.041688938,-0.03254265,0.0044431393,-0.01797729,-0.03330032,-0.04394596,-0.14523673,-0.02756834,0.0027841635,0.031043533,0.032852132,-0.04509683,0.011710355,-0.08274856,-0.04792361,-0.14324692,-0.056437142,0.082601026,-0.052843925,0.008555302,-0.04426947,0.028341975,-0.078520976,-0.076122515,-0.042382218,-4.09435e-08,0.009204306,-0.034447547,-0.035463575,-0.007923184,0.08800727,-0.0379533,0.047991086,0.033354916,-0.003428459,0.0888297,-0.10029403,0.05406439,0.034663342,0.030517453,0.04716239,0.030374212,0.1017531,0.09968448,0.01172687,-0.000988754,0.09870132,-0.039085742,0.0036614279,0.03804207,0.010694467,0.0094311675,-0.026030554,-0.015172387,-0.052307695,-0.061768323,0.04462787,-0.008661474,-0.000409101,-0.031165836,0.01744566,-0.038983177,-0.0042295475,0.035695635,-0.0110807745,-0.016294874,0.04926876,-0.011819637,-0.055593163,0.01635819,0.012278286,-0.10125956,0.029722137,0.049153555,-0.016638132,0.009727313,-0.038548023,-0.035806287,0.02421507,-0.017857313,0.03238183,-0.043629415,0.11089704,0.04341161,-0.027892988,-0.0154130105,0.121825024,0.097604856,0.08105648,-0.06332588} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.032111+00 2026-01-30 02:01:11.834255+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2068 google ChdDSUhNMG9nS0VJQ0FnSURDbXBtVzB3RRAB 1 t 2071 Go Karts Mar Menor unknown El mejor kart de la región. Coches en buen estado. Pista en muy buen estado. Buena organización. Buen trazado. el mejor kart de la región. coches en buen estado. pista en muy buen estado. buena organización. buen trazado. 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {O2.05,J3.01} V+ I3 CR-B {} {"O1.02": "El mejor kart de la región. Coches en buen estado. Pista en muy buen estado. Buena organización. Bue"} {0.07016294,0.03126717,-0.028112832,-0.071861565,-0.035137545,0.012151157,-0.033876356,-0.024410084,0.007225596,-0.0045217117,0.039746307,-0.036922894,-0.06619058,-0.02219652,0.008374862,-0.057583995,-0.024250781,-0.044228777,0.032767072,-0.09157508,0.0728807,0.013516309,-0.040563583,0.056131773,-0.055328693,-0.071505256,0.08335868,-0.035241224,0.0007508058,-0.07074606,-0.041485373,0.0505184,0.02537243,0.034031514,-0.003261234,0.00062174164,0.028414592,-0.061016582,-0.03509096,0.080009446,-0.021427069,-0.010289597,0.0050234236,-0.050557006,0.01253612,-0.07637621,-0.01620217,0.03234243,0.0055304472,-0.031713642,-0.03441001,0.015767995,-0.039466772,0.041987643,0.005279226,-0.009199135,-0.0644446,0.03566236,0.048370425,0.08701167,0.04344477,0.04340361,-0.031406533,0.016607666,-0.0091161765,-0.025688754,-0.019264242,0.03930774,-0.07947158,-0.057596885,0.10016085,-0.09755429,-0.095065504,-0.017980225,-0.008948512,0.03381044,-0.037600737,-0.017193733,-0.023949716,-0.033859365,0.008479114,0.0048683593,-0.025491435,-0.070651904,-0.016733574,-0.028815625,0.008872828,0.0438959,0.03841428,-0.023567839,0.036516607,0.100922324,-0.0046407515,0.04471915,0.012540963,-0.004095087,0.06408039,-0.042309213,0.08439563,0.009349558,0.041693404,-0.018789068,0.05592465,-0.015278103,-0.11410014,-0.037960313,0.03322991,-0.0037493787,0.09005341,0.031462453,-0.06425774,0.014348074,-0.059964553,-0.05123778,-0.03467741,0.004886867,0.0058625527,-0.05914271,0.010694768,-0.055905186,0.025127761,-0.006817833,-0.07566823,0.029328894,0.028078742,-0.041832425,0.011443974,5.542456e-33,-0.020807346,-0.05935639,0.020188594,0.032722834,-0.10180766,-0.0042895703,-0.033325143,-0.094044015,-0.09049046,-0.060090616,0.0075011114,0.15905164,-0.022278836,-0.0070841806,0.12954606,0.000114590126,-0.011863832,0.044607654,0.06734027,0.08130007,-0.08766126,0.03617773,-0.052221905,0.10971225,0.03303604,0.038019363,0.011709588,-0.07073147,-0.0141749885,0.0471564,0.04004896,0.0054532257,-0.016292298,-0.0009733893,-0.07991442,-0.04463565,-0.0071627186,0.05444144,-0.034868907,0.0065885643,0.03026775,-0.025372645,-0.02090754,0.018803272,0.025652083,-0.02249,0.043768443,0.03669209,0.052366164,0.007611994,-0.09121448,0.004337997,-0.0027926445,-0.0013670166,0.06339715,0.059871446,-0.073759004,-0.0032879957,0.009249101,-0.014881247,0.060696963,0.058237575,0.051362235,-0.026374515,-0.00059564237,-0.12762588,0.0027196007,0.041242946,0.10557526,0.040157974,-0.039057933,-0.04282993,0.023676846,0.10678838,0.01801247,0.017930835,-0.011450488,0.11533493,-0.064188465,0.07741564,-0.05156651,-0.059257075,-0.030461103,-0.021597112,0.056176174,0.1275965,0.02775956,-0.0053627873,-0.0009939969,0.082142994,-0.103645205,0.09952486,0.032206386,0.044464417,0.011780093,-6.934008e-33,0.060699753,-0.042193525,0.029125681,0.059352763,-0.039514624,0.04017955,0.04615016,-0.012509944,-0.046397578,-0.042977557,-0.024212673,-0.101641335,0.09420092,-0.018461151,-0.020668479,0.064678974,0.014420449,-0.034429505,-0.057071984,-0.014505946,-0.088799484,-0.010310855,0.037120044,0.06857411,-0.03829174,-0.017294165,-0.07684479,-0.029346727,-0.1154529,-0.00797099,0.04334695,-0.047944143,-0.040404804,0.1013618,-0.1346932,0.011320064,0.090676345,0.020434894,0.05288882,0.0344206,-0.0031655077,0.026826618,-0.014182241,-0.052691568,-0.039084326,-0.02291709,0.09728857,-0.07549296,-0.034385014,-0.12144452,0.11719059,0.032820206,-0.0045776577,-0.09778125,0.03309975,0.030470837,-0.037732832,0.000492634,-0.048633482,0.008728546,0.04550527,-0.0019266005,0.0024051543,-0.049149115,0.03684432,0.008200603,0.002832438,0.0056760213,0.032801207,0.03287673,0.05623257,-0.00011484275,0.0037648056,0.06139704,-0.035073914,0.05363112,-0.083038,0.026022954,-0.050830163,-0.03247358,-0.025480825,-0.036771245,0.0041617085,-0.022673389,-0.008506518,-0.014123626,-0.039676547,-0.057326827,0.052360248,-0.005672017,-0.09174656,0.07140811,-0.08302001,-0.048366766,8.913476e-05,-3.5988922e-08,0.05946799,-0.04637323,-0.07403445,0.012024523,-0.020993454,0.0031410086,-0.008478817,0.03713897,0.006312921,0.08870149,-0.04839314,-0.101027936,-0.0059310654,0.020886904,-0.0019445545,0.05621531,0.035543095,0.12508515,0.047071114,-0.07398206,0.049206186,0.015104468,-0.018352449,-0.0059781247,-0.04573888,0.011482621,-0.02110204,0.090341434,-0.029419862,0.013356493,-0.022608113,-5.3899344e-05,-0.010285737,-0.042131137,0.090966366,-0.0075353556,0.010354196,0.034287874,-0.03220196,-0.02575642,0.052039277,0.031017892,-0.090030774,-0.02972288,-0.05717755,-0.12701245,0.017992217,0.034892496,0.06529245,0.036693726,-0.030611135,0.009617505,0.03647571,0.046125967,0.076068275,-0.005089291,0.060459044,-0.096650556,0.0021390074,0.023289287,0.014090257,0.055088516,-0.023071725,-0.02769138} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.081392+00 2026-01-30 02:01:11.847704+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2082 google ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB 1 t 2085 Go Karts Mar Menor unknown Trabajadores muy agradables, buen circuito muy divertido el trazado, los kart en buenas condiciones trabajadores muy agradables, buen circuito muy divertido el trazado, los kart en buenas condiciones 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.05 {} V+ I2 CR-N {} {"O1.02": "buen circuito muy divertido el trazado", "O2.05": "los kart en buenas condiciones", "P1.01": "Trabajadores muy agradables"} {-0.052570585,0.038006574,-0.0074743275,-0.0594067,-0.075265385,0.025550434,0.051316652,0.047333308,0.012189412,-0.0036605548,0.047008477,0.041247386,0.0331292,-0.01397925,0.023407541,0.033104178,-0.027475335,0.012549656,0.034797806,-0.06955186,0.07900315,-0.03361337,-0.09089617,0.058170106,-0.05880978,0.008209438,0.029191893,0.008317402,-0.016590785,-0.092851676,-0.064337544,0.08048075,0.05514697,-0.035312284,-0.06432115,0.0036420983,-0.043678615,0.0131473765,0.013013583,0.030301413,-0.041267175,-0.083535865,-0.020184191,-0.06367347,-0.0061901114,-0.099398054,0.0038043796,-0.026466366,-0.039975986,-0.04973919,-0.0083094165,-0.006515936,0.06768321,0.024244202,0.001246963,-0.030570231,-0.050283764,0.052391708,0.077315554,0.07014792,0.0493129,0.0017250555,-0.05811297,0.046046663,0.023144638,-0.04632966,-0.012528025,0.053772576,-0.032218214,-0.03574374,0.053765837,-0.14846933,0.0042853574,-0.06019353,0.042557586,0.020278605,-0.003157971,0.0051194206,-0.04263467,-0.07182203,0.049564607,-0.044482276,-0.02721335,-0.06486097,0.010890201,-0.017933777,-0.01494034,-0.03123809,0.021008968,-0.05069307,0.020905415,0.020473775,-0.00028539152,-0.058344115,0.029268537,-0.009374042,0.021057282,-0.06376621,0.031118901,0.063152194,0.072888985,0.02537487,0.03955807,-0.0140158525,-0.051145997,0.013155087,0.013658584,0.012394246,0.017407307,-0.045149505,-0.03601424,0.05055127,-0.040846076,-0.0288604,0.0237278,-0.005989093,-0.006877913,0.038174033,0.007029992,-0.01416785,0.0069029927,0.021250334,-0.07739488,-0.017213756,0.020263657,-0.036416665,0.09253695,4.088787e-33,-0.10680007,0.010337834,-0.030776372,-0.011365288,0.04323461,-0.03502488,-0.0722342,-0.0034607472,0.021029897,0.013323576,0.029429069,0.12805192,0.019513706,0.042070642,0.10026069,-0.068324976,-0.04770789,-0.021477824,0.13301814,0.022673715,0.0030998639,-0.07599589,-0.020717174,0.12787014,0.038468406,0.011267493,0.036898434,-0.0052346634,-0.033578813,0.037802473,0.05438716,0.07015975,0.018320115,-0.010801817,-0.1351991,0.038298056,-0.001959962,0.016320225,0.004486047,-0.04675798,-0.0318198,-0.0038959745,-0.031619743,0.052235536,-0.01392603,-0.0011996177,0.024448706,0.0014445899,0.100162156,0.10189471,-0.1077477,-0.055306476,-0.023745801,-0.0012499139,0.05026498,0.075982414,-0.014089698,0.024609411,0.049229216,-0.016854115,-0.05964334,0.024073716,-0.05392224,-0.05110078,-0.06821755,0.00679436,0.033778947,-0.05253218,0.08255014,-0.039137695,-0.1335912,0.02844662,-0.036313176,-0.0024048667,0.0049638823,0.01815654,-0.0810454,0.028598234,-0.019027775,0.06257996,-0.09810843,-0.03845492,0.02910791,0.015850056,0.12738235,0.068633854,0.015201384,0.027022135,0.0014223818,0.11069829,-0.058022805,0.11308918,0.03943295,0.086398914,0.08324201,-5.9593894e-33,-0.01329607,0.018276969,0.042252384,0.11505223,0.03739543,0.052575354,0.011051824,-0.047639623,-0.056451477,0.023353675,-0.05951085,-0.060246658,-0.001708997,-0.00549832,-0.032745708,-0.029162874,0.01671507,-0.043391164,-0.07323755,-0.013236284,0.023822157,0.11605014,-0.0132069485,-0.061606612,-0.041814193,0.006400831,-0.10868174,-0.028850911,-0.06720142,0.029211137,-0.012703665,-0.012115827,-0.034293856,0.104817756,-0.06786952,-0.020082362,0.09938537,0.10286178,-0.03362918,0.032406125,0.032928113,0.034126002,-0.012588822,-0.0077123055,-0.087525174,-0.035960753,0.060362298,-0.13686135,-0.017858231,-0.067391396,0.07082522,0.02034267,-0.0033360417,-0.035069827,0.0018886903,-9.1985494e-05,0.015593509,-0.031213183,-0.064773135,-0.02790523,0.07809807,-0.05893345,0.015735878,-0.03278402,0.0763021,-0.022307338,0.052630007,0.06538031,0.06945141,-0.025012877,0.059325654,0.028770141,0.028157067,0.016725643,0.0022574808,-0.034259308,-0.07671785,-0.037118956,-0.054368228,-0.06470082,-0.02783376,-0.01385401,-0.020519214,-0.04412021,-0.04220771,-0.0734772,0.030132055,-0.0306154,0.06993033,-0.0171228,-0.09997389,0.047812495,-0.01886563,-0.028405882,0.023490379,-3.5950666e-08,-0.004700765,-0.025432564,-0.06848112,-0.0016492853,0.025853327,-0.0983544,-0.043926213,0.03135753,-0.07714337,0.006846144,0.0045159725,-0.0037811617,-0.03252411,0.10504629,0.05589319,0.022204794,0.058716334,0.08857612,-0.011505365,-0.0014688632,0.082724236,0.0031875214,-0.041298933,0.06943372,0.06363835,0.025407592,-0.006942888,0.06315159,-0.0057628015,0.0006948237,-0.05154675,0.03008389,-0.03554671,-0.04189559,-0.009371852,0.006999297,-0.030667532,-0.041364577,-0.0077689993,-0.004123193,-0.00031929527,-0.0691924,-0.08650751,0.019922689,-0.03189688,-0.075675555,-0.07941432,0.038887437,0.0022326303,0.018714337,-0.06577864,-0.05091611,0.04918073,0.057334896,0.07386417,-0.045092303,0.07111218,-0.027669698,-0.055278353,-0.035705436,-0.0019559592,0.0703165,0.042767305,-0.11414806} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.605015+00 2026-01-30 02:01:11.895557+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2085 google ChZDSUhNMG9nS0VJQ0FnSUQ2bllQTkRBEAE 1 t 2088 Go Karts Mar Menor unknown Con la Manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y cascos. con la manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y cascos. 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.04 {V4.03} V+ I2 CR-N {} {"E1.04": "Con la Manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y casco"} {-0.04763331,0.003733753,0.0040927343,-0.027177515,-0.03677857,0.024125788,-0.027776575,0.053158827,0.02884931,0.016771015,0.043671552,-0.0155997,-0.057105135,-0.055079486,0.058306374,0.025173217,-0.051615346,0.0004601588,-0.00720238,0.0193347,0.08891815,-0.034837,-0.06192567,0.07275212,-0.08742426,-0.017660666,0.042893972,-0.021375103,-0.07888812,-0.11574386,-0.07325573,0.0767201,0.011566168,0.020870978,-0.007487116,0.0002650958,0.056399293,-0.054029837,-0.060999513,0.009872397,-0.08827499,-0.037042513,-0.050399553,-0.036047544,0.09015358,-0.040022764,-0.042074658,0.03223362,0.0033802711,0.0038815716,-0.06918768,-0.024715105,-0.03647897,0.0015454384,0.03566357,0.03257069,-0.03531763,-0.016001055,0.16697441,-0.018532805,0.038279243,0.04484582,-0.09446028,0.0073340093,-0.027012598,-0.12376807,0.021318046,0.059108116,-0.029096043,0.06987544,0.057919107,-0.041135646,-0.0021729372,0.0098368125,-0.010877442,0.054138348,-0.037685446,-0.08080837,-0.09523225,-0.057486273,0.01785821,-0.008475222,0.020650312,-0.038612586,0.016537404,0.04425431,0.015394035,0.020957395,0.07107127,0.0042922464,-0.03789627,0.0061374833,-0.061734736,0.0293791,-0.0306235,0.03669821,0.09646983,-0.06349577,0.043201134,0.018613039,0.14464904,-0.026632557,0.043354962,0.04956868,-0.08399261,0.03201227,0.09126496,-0.027045598,-0.030669445,-0.006670577,-0.016922323,-0.018658226,-0.053323243,-0.07368278,-0.10026631,0.038811006,0.02710136,-0.04797726,-0.024783485,-0.03933153,0.03995724,0.003480301,0.0005674519,0.030605134,0.052242555,-0.08392446,0.07266752,3.2825074e-33,-0.021660035,-0.01505941,-0.004777172,0.038686145,0.035748973,-0.038880248,-0.04634907,-0.06537949,-0.045731742,0.04317395,-0.024005286,0.02940403,-0.066256545,-0.05301916,0.068155214,0.010879716,0.0073328526,-0.099972956,-0.013491435,0.018461583,-0.06839472,-0.014421713,-0.037125595,-0.0026866056,-0.02449664,0.017224051,0.048256177,-0.059843827,-0.09131827,0.103290126,-0.009910012,0.028127626,0.014019456,0.031665497,-0.045826968,0.026662972,-0.0043962756,0.006346069,-0.029903548,0.011693372,0.027942488,-0.027222795,-0.084916964,-0.0065251044,-0.07019665,0.035216257,0.05913537,0.0033336987,0.007779684,0.007720595,-0.09696596,-0.030195067,-0.022417372,-0.07613698,0.080577664,0.0052869446,-0.04587599,-0.03283104,-0.05405423,0.01784527,0.07360602,-0.022155823,0.009039558,0.034945607,-0.03548135,-0.028676199,0.09120743,0.013558808,0.05602246,0.040844884,-0.08071901,-0.0531555,0.06849559,0.031872798,0.042350985,-0.035721257,-0.033663325,0.076982245,-0.09755919,0.06507125,-0.039334975,0.00070417556,-0.0031404514,0.020998212,0.08476779,0.07045174,0.08025706,0.02698695,-0.044658035,0.064879596,-0.03655033,0.0813683,0.033303447,-0.03302494,0.050950833,-5.578564e-33,0.022296494,0.024385663,0.03813374,0.06935171,-0.019619264,0.033231057,0.012956488,0.023618288,-0.031915355,-0.0070188865,-0.14277852,-0.05780803,0.021576997,-0.047796633,0.066736594,0.051011458,0.011925434,-0.11339898,-0.081376545,-0.0035672714,-0.0022821606,-0.03153735,0.055416632,-0.021022385,0.018744327,-0.059178326,0.009605636,0.10168366,-0.13144346,0.029521719,0.0012075425,-0.019362826,0.023206487,0.04747593,-0.12500286,0.057918563,0.08563521,0.081122994,0.0063718245,0.017487524,-0.036984466,0.055773392,0.020210648,-0.052933685,-0.017842043,0.05148819,0.10449593,-0.05577131,-0.02504588,-0.054866053,0.0962224,0.0018336079,-0.05217807,0.019409548,0.07527861,-0.042220585,-0.05043405,-0.0585082,-0.07975519,-0.016379835,0.054525938,-0.036514487,-0.060625102,-0.04302969,0.089936584,-0.006554956,-0.011686737,-0.080925055,0.042496596,0.053949773,0.040756825,-0.009829446,-0.025961494,0.11245507,-0.02306899,-0.03035478,-0.05721559,0.06578855,-0.014997229,0.060754344,0.017363958,-0.035535242,0.0022492844,-0.0016886158,-0.005603143,0.01891082,-0.07003018,0.048266158,0.0034647195,0.014867722,0.061598867,0.09197893,-0.026802747,0.01403788,-0.040916134,-2.8308358e-08,-0.017136484,-0.062084664,-0.040446155,-0.009959954,0.0035809362,0.015700575,0.024383584,0.018614415,0.029493187,0.06311653,-0.010371481,0.04864279,0.026679523,0.09473925,-0.016497029,0.010664344,0.034510106,0.091551274,-0.0013089831,-0.007676069,0.077943005,0.023362083,-0.0052001723,-0.009530163,-0.040135793,0.054949097,-0.080255784,-0.037203584,0.006811266,-0.0644032,-0.0040026535,0.01300068,-0.027330969,-0.07966535,-0.07360943,-0.029340623,-0.032284133,0.08531946,-0.017124897,0.050635554,0.13227114,0.07505522,-0.055746112,0.024080323,0.002153416,-0.044241574,-0.012241516,-0.05498027,-0.05589264,-0.0036663567,-0.020252634,-0.03342475,0.095598206,-0.021469004,-0.003326205,-0.016416684,0.06368912,0.0108810505,-0.09060564,-0.013247744,0.028832125,0.017421741,-0.03165766,-0.041871175} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.649112+00 2026-01-30 02:01:11.904468+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2071 google ChdDSUhNMG9nS0VJQ0FnSUM5OC1pY3JRRRAB 1 t 2074 Go Karts Mar Menor unknown Muy buena gente y muy bien organizados. muy buena gente y muy bien organizados. 5 2025-01-30 01:52:39.833374+00 es v5.1 P1.01 {J3.01} V+ I2 CR-N {} {"P1.01": "Muy buena gente y muy bien organizados."} {0.030832946,0.0024472894,0.028369993,-0.02020624,-0.029804748,-0.0111768665,0.080928884,-0.0034327765,-0.0204749,-0.016276622,0.035028536,0.0048939576,0.0025733516,-0.054890662,0.012050867,0.056827914,-0.014995849,0.03308669,-0.008282952,0.007339081,0.05277509,-0.02575455,-0.052415513,0.08122441,-0.06801686,-0.044153392,-0.011492565,-0.004745988,0.0015700887,-0.059929386,0.0009921852,0.09009891,0.10763195,0.042107724,0.022642095,0.0036989485,0.13147403,-0.017359985,0.006041858,0.020425236,-0.08221997,-0.002058688,-0.0386454,-0.008695767,0.008828908,-0.07828257,-0.0026076627,-0.008343204,0.048931815,-0.060462896,-0.055530787,-0.03448469,-0.00024871508,0.06544361,0.008054063,0.073468536,-0.032610223,-0.05681294,0.016090864,0.014169296,-0.013431424,0.038929928,-0.032144193,-0.06727066,0.031212538,-0.012262746,0.07838448,0.04147297,-0.1107525,-0.049754005,0.10215733,-0.060838513,0.0054405257,0.04190072,-0.08464932,0.047583897,-0.044853922,0.015870595,-0.019057289,-0.038983237,-0.01453685,-0.00077429455,-0.021447392,-0.013255286,-0.0025711295,0.04104043,-0.062293895,0.0324746,0.025219548,0.0377509,-0.07381099,0.049220208,0.031323824,0.03776625,-0.011604237,0.042559095,0.020112617,-0.11908884,0.020182502,0.038716946,0.059705142,0.05581521,0.13677035,0.019134153,-0.016239336,0.02969649,0.022224419,0.023271864,0.06569728,0.0049118632,-0.05246517,-0.006979632,-0.017610468,0.07484971,-0.05507097,0.044338297,-0.008557606,0.006978527,-0.024547063,-0.15728004,0.044074275,0.037578028,-0.06867191,-0.05154535,-0.015019303,-0.0010461097,-0.017497389,1.1509405e-33,-0.038125884,-0.007849828,-0.0045907055,0.10452844,-0.04118438,0.013920283,0.008506496,0.031987283,-0.097120136,-0.026020166,-0.08912687,-0.016067628,0.017667223,0.05367184,0.067127705,-7.5400225e-05,-0.055331055,-0.007588336,0.07221302,0.018805593,-0.10015006,0.0072753,-0.018544886,0.052088406,0.054893736,-0.0018686369,-0.015155244,-0.0868662,0.031766813,0.054084014,-0.024171336,0.047842108,0.0049963905,-0.021294273,-0.0121672675,-0.010620359,0.05218687,0.06887113,-0.011512177,0.029732909,0.0471984,0.017305363,-0.017175926,-0.0024627794,0.027583953,0.0766085,0.049510926,0.041965466,0.050715543,0.03514087,-0.06377522,-0.0052571823,-0.09056554,-0.020467818,0.03696407,0.009002748,-0.065089144,0.06944073,-0.06801842,-0.09395663,0.050645906,0.001273129,0.028218681,-0.02050237,-0.05709988,-0.00015717458,-0.012640027,0.06584299,0.124306485,0.059036378,-0.064500175,-0.09163009,-0.042691946,0.012737023,0.004022219,0.019119166,0.00016895353,0.0045185834,0.03477621,0.040742714,-0.031066516,0.04050276,-0.030498728,0.039782453,0.08874694,0.052809346,0.0768791,0.027162496,-0.05332407,0.08365791,-0.054659408,0.028468138,0.070736654,0.0047331993,-0.06522553,-1.7679051e-33,0.034596067,-0.073052816,-0.001287593,0.0806344,-0.020507278,-0.017180823,0.0020989615,0.004664494,-0.08758934,-0.11770748,-0.038987637,-0.1212158,0.11911165,-0.043043807,-0.010374182,0.013747767,-0.011878175,-0.034289952,-0.0712596,0.014563655,-0.018019143,0.020025134,0.06306688,0.031163918,-0.041588422,-0.0054597096,-0.09019436,0.004379906,-0.0056149964,0.00903284,0.041303616,0.004019232,-0.059428655,0.013538087,-0.014374506,0.069346465,0.025835272,-0.00019113379,0.04778818,-0.0013689183,-0.028727781,0.09301251,-0.09217023,0.057220068,-0.0063929735,0.06397942,-0.03484195,-0.13536772,0.016229248,-0.02777571,0.037140243,-0.0135216415,-0.035573244,-0.0377139,-0.007664448,-0.04856066,0.016444094,-0.018895943,-0.0776953,-0.02314264,0.0039893156,0.04122705,-0.06253732,0.018066019,0.047433622,0.0024844266,0.020030102,0.077533804,-0.006655255,0.036714904,0.12762953,-0.0010555836,-0.050429597,0.01949767,-0.064278476,-0.041443318,-0.08510951,-0.031350683,0.0048109987,0.007696797,0.02708091,0.04251657,-0.0071362583,-0.061430212,-0.056974094,-0.013103365,0.025661703,0.036316793,-0.01106786,0.037300956,0.025179485,-0.04493291,-0.079303645,-0.057533108,0.009585357,-1.9786595e-08,0.026020007,-0.014070724,-0.032843616,-0.009431358,-0.008361383,-0.10481045,-0.09308953,0.14140347,0.061559413,0.08607869,-0.05682561,-0.011131152,-0.049652617,0.10532355,0.0011092373,0.0155828055,-0.012577284,0.09578562,-0.021853866,-0.08196884,0.05703233,0.033279832,-0.044561252,0.030695489,0.0027751117,-0.017394714,-0.05488041,-0.07855843,-0.0267989,0.038948342,0.008648876,0.029451286,-0.06986489,-0.05896939,0.000720437,-0.019456878,-0.03130035,-0.07101066,0.036845896,-0.06654507,0.08528673,-0.012444241,-0.09782124,-0.04933614,0.048983086,-0.12024389,0.0598416,0.04770185,-0.0031198037,0.02974282,0.015343196,-0.009651841,0.06191456,0.009258899,0.007414356,-0.045118965,0.06037781,-0.0035214517,0.020012628,-0.033998102,0.0358262,0.08633797,0.0979359,-0.14169502} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.116208+00 2026-01-30 02:01:11.856486+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2074 google ChZDSUhNMG9nS0VJQ0FnSURSNmVUSUp3EAE 1 t 2077 Go Karts Mar Menor unknown Fantastische kartbaan.\nFijn rijdende karts in verschillende klasse. Komen zeker terug. Fam Visser fantastische kartbaan. fijn rijdende karts in verschillende klasse. komen zeker terug. fam visser 5 2024-01-31 01:52:39.833374+00 nl v5.1 O1.02 {R4.03} V+ I3 CR-N {} {"O1.02": "Fantastische kartbaan. Fijn rijdende karts in verschillende klasse. Komen zeker terug. Fam Visser"} {-0.052648537,0.07660462,-0.005943282,-0.03006848,-0.05796467,0.015804617,0.016481757,0.06090097,0.043228243,0.018010579,-0.026476119,-0.039293967,-0.020983897,-0.08843559,-0.017188052,-0.07568935,-0.043165542,0.11084051,-0.029150447,-0.021499204,-0.00957242,-0.08373776,0.024512773,0.004126429,0.017204901,0.020062184,0.049913976,0.07434762,0.031785965,-0.006001411,0.009316079,0.04464407,-0.047608517,0.041137945,-0.0151898,0.017714282,-0.08637891,-0.014186314,0.046923596,0.06974996,-0.034731198,-0.04242393,-0.05668805,-0.07090176,0.059555363,0.03938384,-0.06736379,0.05218846,-0.037322123,-0.005394591,-0.04911711,-0.095144175,0.01347731,-0.03085785,0.040527776,-0.081207596,-0.08122598,0.0030014964,0.045460958,0.025367733,0.12429205,0.006293011,-0.097632915,0.023190787,-0.09543023,-0.04632076,-0.056183558,0.05851969,-0.004329614,0.036559183,0.11793542,-0.05986387,-0.04899022,0.029103246,-0.051296175,-0.04178117,-0.023856636,-0.024087993,-0.0060159555,-0.091045514,0.053519405,-0.052386694,0.051833797,-0.01513487,-0.04022366,-0.056018427,0.044222426,0.025247715,-0.014174027,-0.0035441513,0.04403119,0.026745781,-0.050262816,-0.056561008,-0.020910185,-0.007243707,-0.04301138,0.035636585,0.028618107,0.021586685,0.006049926,-0.006751434,0.0683705,0.052786704,-0.06470309,0.006447653,0.019075055,-0.035552867,0.04049087,0.01975748,-0.0855278,-0.029556481,-0.04201399,-0.06294038,-0.020323938,-0.03734126,-0.034301206,-0.045992415,0.037566725,0.09106483,0.028054794,0.015288724,-0.009865048,0.04588702,0.096638836,-0.0375595,0.06604454,7.670446e-33,-0.118872076,-0.06939702,-0.014200088,0.018607168,-0.0027116986,-0.11826928,-0.03434833,-0.08569661,-0.02147547,-0.027895356,0.006931066,0.04446007,-0.030198334,-0.0020832692,0.087451406,0.009715489,0.012830005,-0.09012543,0.012702962,-0.03396491,0.013074356,-0.04753062,0.029893637,0.042736243,-0.050861027,-0.0150653245,0.043390203,-0.05083109,-0.011851874,0.048365176,0.07380235,-0.031403344,-0.014509426,-0.012913673,-0.08437564,-0.0043417714,-0.024968727,0.0054288185,-0.037892763,-0.05675296,-0.031395357,-0.033790044,-0.016946444,0.035095714,-0.02927404,0.09253868,0.021882432,0.034696013,0.054360233,-0.017919047,-0.040792778,-0.019945756,-0.02456531,0.039158635,-0.0110536115,0.06650434,0.023313578,-0.011845498,-0.05505999,-0.071330056,-0.047048077,0.044798963,0.057007186,-0.012873212,0.038605843,-0.043887317,-0.011733644,-0.05107878,0.009101628,0.026152374,-0.032344233,0.019322805,-0.01734863,-0.01977676,0.030433472,0.061659064,-0.052547794,0.019365044,-0.13762362,0.009022339,-0.10538131,-0.03948183,-0.031821582,-0.02090329,0.09068421,-0.023205144,0.012643814,-0.05960919,0.107463956,0.10118358,0.0009933817,0.0013112251,-0.007986135,0.040489003,0.015541309,-7.388011e-33,0.025625255,0.046963517,0.0023744376,0.14661711,0.027228586,0.005695174,-0.07361602,0.04701481,0.026372094,-0.00057054864,0.027684927,-0.054533187,-0.032424506,-0.0056808703,-0.08734248,-0.016433235,0.04134626,0.06402567,-0.059814516,-0.07604014,-0.00393988,0.017031016,0.031060785,0.022891968,-0.037801888,0.010890354,0.020488387,-7.230239e-05,-0.112201616,0.011118184,0.08168809,-0.071213834,0.04505538,0.020802928,0.003098373,0.005075113,0.17106125,0.06662848,-0.031031411,0.026856555,0.050814126,0.076632485,-0.027729377,0.010122929,-0.016825877,-0.07722612,0.015589962,-0.055789188,0.027334949,-0.16518784,0.09684539,0.061012484,0.04684173,-0.04364282,0.05786074,0.089795925,-0.00049312843,-0.040724296,-0.028839117,0.023508733,0.055394758,-0.024762956,0.04616488,0.0043985844,0.074519396,-0.013167294,-0.07186583,0.045385186,0.074874975,-0.0038624625,0.011899925,-0.048179545,-0.048460834,0.061478052,-0.015555727,-0.010484339,0.034598924,0.073585,0.0364361,0.018006122,-0.0032549503,-0.044184983,-0.08153285,0.055661596,0.040191207,-0.08015663,0.039674852,-0.011685479,0.06476383,-0.043148674,0.06406169,0.07423637,0.06250107,0.027753055,-0.043546405,-3.0868733e-08,0.007680797,-0.07077885,-0.10628641,0.081424884,0.06653476,-0.035990678,-0.058184106,-0.051783983,-0.07290363,0.06799378,0.012679293,0.07292718,-0.064766206,0.05586732,0.06239414,-0.004415508,0.0043363655,0.062047005,0.011372332,-0.030547692,0.0976602,0.0067587607,-0.055668183,0.010605993,0.0056119724,0.03268704,0.00092346675,-0.02307643,0.056314673,0.04101555,0.021820076,0.098366946,0.0018702273,0.028111577,0.037873704,0.07104307,-0.06299386,0.07486057,-0.048387796,0.020992842,0.00024966575,-0.0064492202,0.032664966,-0.021686388,-0.044325788,-0.014011684,0.050407693,-0.027189625,0.019158896,-0.044088148,-0.08311737,0.010454145,0.045422103,0.078944996,-0.03979501,-0.0019198591,-0.018183699,-0.014288594,-0.11396302,-0.058373947,0.049174193,0.018387504,-0.034805715,0.04873712} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.147576+00 2026-01-30 02:01:11.865352+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2076 google ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB 1 t 2079 Go Karts Mar Menor unknown Cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsables deberían hacer algo y no lo hicieron por lo demás todo genial cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsables deberían hacer algo y no lo hicieron por lo demás todo genial 3 2019-02-01 01:52:39.833374+00 es v5.1 J4.01 {E4.01} V- I3 CR-N {} {"J4.01": "Cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsable", "V4.03": "por lo demás todo genial"} {0.014732694,0.075187914,-0.024164477,-0.038111344,-0.039833102,0.020613845,0.104359955,-0.0073060435,-0.012256548,0.047882702,0.08723476,0.026343057,-0.030162992,-0.010021047,0.046544757,-0.0012659958,-0.004512306,-0.009746417,-0.020376394,0.0446146,0.08347671,-0.059126116,-0.04007932,0.11124843,-0.116441,-0.08407798,0.00027453806,-0.0024500734,-0.0141107775,-0.021496475,-0.0036409853,0.029728979,0.08068676,0.04657123,-0.028519735,0.010834687,0.07326832,-0.09099918,-0.07293059,0.049695794,-0.08015505,-0.04237229,-0.044464115,-0.037686314,0.033057626,-0.07168518,0.05402244,0.102561705,-0.0062693544,0.023427151,0.012650783,0.04720553,0.030014094,0.011936518,-0.0049928664,0.027170017,-0.031529237,-0.06606445,0.025393996,0.018748574,-0.02138734,0.030370189,-0.088841364,0.022782488,-0.06406465,-0.050030913,0.01413851,-0.02371828,-0.0407609,0.056427628,0.06527625,-0.06884054,0.03677781,0.0013855932,0.004190192,0.018480014,0.023186559,-0.020118032,-0.02324491,-0.03766229,0.0321193,-0.050456937,0.016947832,-0.010028768,-0.017980296,-0.034293383,-0.054154985,0.060122408,0.018716404,0.039139975,-0.028239863,0.06871396,-0.046456233,-0.036337107,-0.08401891,-0.004627298,0.06065046,0.0074254484,0.047301583,0.05020819,0.084719315,0.09416686,0.033138372,0.019639075,-0.05303631,0.04563331,-0.009598109,-0.07853529,-0.03641662,0.07722803,-0.108065955,0.019371655,-0.025299734,0.0004286585,-0.042988773,0.06755617,-0.080375195,-0.047817882,-0.0786335,-0.13273476,0.04983662,0.02849422,0.028937526,-0.064068325,0.031088848,-0.07355198,0.013310054,7.0578804e-33,-0.051348638,-0.111554824,-0.027892496,0.026905067,-0.005827504,0.034639955,-0.06546756,-0.03156026,0.012754928,-0.005287862,-0.009368928,0.013917666,0.026708169,0.001444235,0.0772354,0.03365192,-0.039591644,0.043716498,0.044851605,0.059890628,-0.03024099,-0.056325197,-0.018951116,0.059395637,-0.054475404,0.09355137,0.014127571,-0.056559302,0.008753004,0.07077111,0.05361019,-0.019415528,0.017280214,-0.038982164,-0.03597005,-0.06371434,-0.002290782,-0.0010239681,0.000374723,-0.06669981,-0.06035474,0.05392633,0.0074839224,0.012443052,-0.03768708,0.03139254,0.08874852,-0.044955462,0.04688478,0.060250413,-0.034423303,-0.02937071,-0.012222834,-0.15650696,-0.0033529021,-0.03440179,-0.020938938,-0.0033822663,-0.06319572,-0.0833184,-0.0038541171,-0.024487171,-0.0005042061,-0.024324544,-0.04016724,-0.0048140464,0.056668546,-0.025241844,0.10833768,-0.013575986,-0.03168792,0.016053729,-0.031421214,0.034554515,-0.034424655,0.062414095,0.049552895,0.04617801,0.095755324,0.015267213,-0.027230028,-0.032159466,0.045083877,-0.016396781,0.06438319,0.07130062,0.01621752,-0.0025075292,-0.022019774,0.093814716,-0.03132285,0.10442252,0.01191664,-0.0149663715,0.058844276,-1.0366087e-32,-0.015669933,-0.019532444,-0.057150014,-0.026060028,0.01750992,0.036348272,-0.013950377,-0.068756975,0.02832139,-0.041309614,-0.110422984,-0.12656702,0.08435638,0.011502298,-0.011229837,0.002287543,0.058561996,-0.081603274,-0.06970203,-0.024693586,-0.00468296,0.07264766,0.08861879,-0.040927537,-0.05999507,-0.094217815,-0.042016596,0.03786732,-0.036453325,-0.051413096,0.05800339,-0.03804074,0.010687213,0.035382986,-0.021413438,0.034066167,0.051828276,0.048222736,-0.06130175,0.010716769,0.086833484,0.06747869,-0.04908658,-0.00040025727,-0.040581465,0.05169309,-0.03406215,-0.19395112,0.0045195017,-0.08958747,-0.0058437674,-0.049635157,-0.004229597,-0.049884435,0.05143626,0.034714412,-0.019999763,-0.13246706,-0.04112446,-0.008901469,0.078560546,0.045308404,-0.0656455,-0.0006253727,0.07196166,0.020522255,-0.049567048,0.023541115,0.016460143,0.0335371,0.08842007,-0.024256779,-0.087341785,0.010234568,-0.0419711,-0.024834277,-0.097109646,-0.007817363,0.006449389,-0.010789298,-0.04927307,0.009520961,-0.0512366,-0.031983078,-0.028581847,-0.048583925,0.06011065,0.05356889,-0.02684841,0.049975697,0.028688217,0.06867322,-0.08598983,-0.038020294,-0.06878142,-3.9981927e-08,0.0022980294,-0.017303748,0.0484601,0.007892493,-0.005392963,-0.056481324,0.01897424,-0.00040568976,0.011487773,0.07420037,0.03339034,-0.052497145,0.015486812,0.0044260784,0.023591215,0.0005076581,0.060066666,0.044560578,-0.07412741,-0.0399321,0.0928713,-0.0054378607,-0.06569173,0.015306515,0.010443078,0.03832808,-0.05760825,0.004467218,-0.0037891364,-0.02848848,-0.05048599,-0.006668468,-0.04596239,-0.10108277,0.059466805,-0.032839913,-0.026194656,-0.030966908,0.027200608,-0.0520178,0.042551976,0.049258996,-0.04903038,0.08202292,0.023447705,-0.042630337,-0.079184614,0.019320043,-0.03969009,0.033674754,-0.051273525,-0.0980617,0.07638219,-0.040756483,0.03354257,0.01925341,0.062374216,0.024337387,0.02131841,-0.03621011,0.10061079,0.045444608,-0.04339189,-0.012256047} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:17:52.165937+00 2026-01-30 02:01:11.873717+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2130 google ChZDSUhNMG9nS0VJQ0FnSUNmczV6V1J3EAE 1 t 2133 Go Karts Mar Menor unknown Muy bien muy bien 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy bien"} {-0.06571998,0.016725862,0.0710801,-0.05049007,0.049030785,-0.0063824216,0.09266538,0.046285257,0.035827443,-0.03335177,0.07251103,-0.04365701,0.06165313,-0.03475478,0.011035443,0.008806816,0.03720491,0.03813029,-0.08885324,0.011353099,-0.021539511,0.02888333,-0.026909953,0.08069428,-0.08186932,-0.033066973,-0.0057931473,0.048102964,0.03051002,-0.06410007,0.016047047,0.0675088,0.03493604,-0.02615137,-0.00076181703,-0.044561513,0.032461464,-0.105842456,0.027926642,0.03236312,-0.07687399,0.0027241497,-0.080857694,-0.027358519,0.018982502,-0.020951174,0.027810663,0.014490196,0.021947686,-0.020048529,-0.042301048,0.022670124,0.021895168,0.005255053,0.036074683,0.06840588,-0.050907794,-0.019532848,0.019585438,0.03298407,-0.004462742,0.04965784,-0.018838918,-0.025832437,0.02183718,-0.035949152,0.066612914,0.0035437704,-0.030158104,-0.01566539,0.052250884,-0.056805015,-0.0012478988,-0.04834808,0.0015344154,-0.0128049385,0.04107136,-0.00042448603,-0.0057002306,-0.043711934,-0.05166616,-0.051117297,-0.05707182,-0.03056983,0.04625984,-0.003166195,-0.043745082,0.02390943,0.0532674,-0.020859083,-0.069297686,0.02945356,-0.00026581858,0.029550375,0.02697786,0.04516318,0.02762883,-0.060641266,-0.06799552,0.18719548,0.024627484,0.07323237,0.1049663,0.004857098,0.02113567,0.018596848,0.042068526,0.023271346,-0.015388548,-0.019332426,0.009971566,-0.018583464,0.015604314,0.029981595,0.030775825,-0.0056772497,-0.013769001,0.008730989,-0.028223801,-0.086630985,0.06927218,0.03330282,-0.10911801,-0.029560044,-0.07030723,-0.038337562,0.043667525,-2.368163e-33,0.0042667547,0.021841738,0.029924456,0.05065982,-0.019809112,0.0128943045,-0.042061064,0.05352875,-0.1456999,-0.039352953,-0.014317281,-0.034726307,0.012989843,0.03295194,-0.0014486543,0.016123008,0.07145565,-0.081450544,0.10172718,-0.0015645397,-0.051040877,-0.09575119,-0.0015574009,0.03245314,0.041552782,-0.012335549,0.018887183,-0.040837534,-0.08694253,0.031798083,-0.0569224,0.020214833,0.027943768,-0.041899752,-0.04399655,-0.049419094,-0.012218269,0.0663911,0.0010717253,0.029510858,0.016776754,0.009686611,-0.039176304,-0.037648216,0.017158631,0.10644059,0.020777537,0.028278228,0.045088787,-0.0556372,-0.017927455,-0.039529875,-0.16451192,0.029066704,-0.0016560219,-0.03448992,-0.014519591,0.0061479183,-0.07018073,-0.044597514,0.11963913,-0.021243257,-0.021775797,0.0092553375,-0.08298394,-0.03231372,-0.02684516,0.08744364,0.07679247,0.01995372,-0.07559841,-0.021473292,0.022146836,-0.029742135,-0.0032936793,-0.023178026,-0.024382737,0.012222903,0.10567299,0.039178565,0.019652275,-0.013575598,0.04255774,0.04405926,0.021112127,0.054409172,0.049817063,0.010126455,-0.030035833,0.043324746,-0.08664556,0.02393348,0.11714377,-0.04094463,-0.088140465,2.2024545e-33,0.055658467,0.025816493,-0.0062732333,0.12072776,-0.0108135035,0.0011378084,0.071129866,0.037874497,-0.08175018,-0.012150937,0.018041093,-0.13275741,0.092209086,-0.02726428,0.0648259,0.12809442,0.0108994795,-0.016426427,-0.06949726,0.0031341556,0.044564918,-0.010956844,0.041124642,-0.04646697,-0.06045502,-0.0020930225,-0.04325793,0.02082905,-0.08185022,0.038155675,-0.025791524,-0.04639588,-0.03215073,-0.012083327,0.02252925,0.046065558,0.027685668,0.0651705,0.0063116164,0.025993358,-0.049200285,0.083019875,-0.022813061,0.113174096,0.010614828,0.054571357,-0.013614709,-0.13280234,-0.041472778,0.026111962,0.046730768,-0.0051161274,-0.038235046,0.020948298,-0.026017284,-0.016486334,-0.062454775,-0.048395343,-0.109532684,-0.073369734,-0.048440885,0.041052,-0.11910806,-0.023170386,0.08144594,-0.012780772,-0.043982882,-0.005649982,0.038949486,-0.04856224,0.08519633,-0.012442676,-0.038517226,-0.038740803,-0.063019216,-0.03795363,-0.08988483,0.009199842,0.009207945,0.11193515,-0.013641106,-0.04477171,-0.069938295,0.028011976,-0.0378661,-0.007966674,-0.009564963,-0.014072314,0.07438817,0.024573926,0.018842828,0.0114093525,-0.019083142,-0.061258312,0.07211258,-1.4006128e-08,-0.0045308983,-0.06913845,-0.06023512,0.0092974035,0.017899012,-0.041373506,-0.07303744,0.07054916,0.059217937,0.07494232,-0.061696306,0.00010938093,-0.031669516,0.056844026,-0.015547351,0.09094735,0.0016469427,0.069694966,0.030940613,-0.0420575,0.049989466,0.012260574,0.019678403,0.047954388,-0.0014237964,-0.001011814,-0.101397045,-0.020203909,-0.048696015,0.0329728,0.0055891545,0.03507266,-0.026074199,-0.07563307,0.002840105,-0.02375618,-0.02909727,-0.036988966,0.005197453,0.045855712,0.07062993,0.009415102,-0.018361066,-0.023152774,0.06880953,-0.09989691,0.02626831,0.030612966,0.036087085,-0.017344503,0.041733872,0.016739812,0.07253752,0.094760254,-0.001446214,0.016544381,0.03502245,-0.0048696897,0.009718789,-0.02793037,0.093725115,0.110034466,0.055073082,-0.14513981} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.716034+00 2026-01-30 02:01:12.061915+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2133 google ChdDSUhNMG9nS0VJQ0FnSUQ2cVpEeHV3RRAB 1 t 2136 Go Karts Mar Menor unknown Muy buen trato y los Karts van muy bien muy buen trato y los karts van muy bien 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {O1.02} V+ I2 CR-N {} {"P1.01": "Muy buen trato y los Karts van muy bien"} {0.009917813,-0.01854381,0.03988836,-0.05226879,-0.02249575,0.01664464,0.084130466,0.022008637,0.0020001882,0.003012771,0.048399117,0.050041325,-0.08002205,-0.036981683,0.017654117,0.05262187,-0.033990357,0.04886403,-0.027959501,-0.015122085,0.07778089,-0.03952684,-0.043656066,0.07673337,-0.046205893,-0.05477485,0.004267708,0.038026143,0.044025555,-0.057176415,-0.03843775,0.07679433,-0.012820908,0.03168454,-0.007835607,-0.06525843,-0.011383707,-0.03615595,0.011349877,0.026008159,-0.049966637,-0.047183584,-0.04299496,0.007914226,-0.017415732,-0.09948878,-0.021981645,0.03281878,-0.029363338,0.012960793,-0.0138565255,-0.017157566,0.037350602,0.006475308,-0.022597166,0.026264023,-0.09272573,0.0492815,0.093835525,0.022859372,0.009004102,0.06878534,-0.05837361,-0.029501643,-0.026377589,-0.094855435,0.025944527,0.047214344,-0.06884241,0.09555687,0.08284575,-0.092161134,-0.042412072,0.0401296,-0.028580517,0.034747943,0.022278475,-0.030890325,-0.08898536,-0.025987409,0.012789839,-0.013293452,0.011451769,-0.070409186,-0.020513121,-0.014005171,-0.016413612,0.07513025,0.0027959424,-0.0038614743,-0.003958548,0.03357046,-0.019615209,-0.032559965,0.052360777,0.08252443,0.0317069,-0.06953623,0.029651238,0.10806466,0.08669741,0.057861324,0.14922155,0.013508439,-0.01610726,-0.0055486388,0.08001599,-0.062236045,0.028447984,-0.038588576,0.03379748,0.014563091,-0.014293141,0.026096448,0.010386779,-0.05744482,0.0051610204,0.0059529087,0.004041257,-0.081296325,0.035571124,0.041920714,-0.09621883,0.018206414,-0.021478524,-0.018718148,0.046363812,5.672545e-33,-0.038665723,-0.007706418,-0.009013327,0.034828894,0.0014111169,-0.039352626,-0.060327806,-0.022265831,-0.13165636,0.04730331,-0.044152897,0.014662973,0.0015745305,-0.04887622,0.025211653,0.03894059,-3.3664237e-05,-0.053405523,0.09755904,0.025670137,-0.08268497,-0.06620705,-0.015428659,0.05087905,-0.01684062,-0.013708809,-0.02253368,-0.06761777,-0.06721978,0.05198392,-0.0069903648,0.08631128,-0.00980421,0.025804836,-0.13884751,-0.094176084,-0.05559273,0.008429452,-0.035738062,0.00849635,0.05533826,-0.005142532,-0.032859605,0.039094485,-0.027251579,0.039964896,0.042689167,0.04102569,0.010281196,0.017775312,-0.060840443,-0.05307884,-0.13187073,-0.045629248,0.0048095663,0.026769174,0.0034500973,0.04921681,-0.016977614,-0.018382754,0.06647973,0.0129003525,0.029134706,-0.062459774,-0.016838538,-0.007887396,0.028252825,0.008427131,0.068528846,0.027094712,-0.070141226,-0.06401566,0.015740989,-0.076414905,0.09301923,0.008571662,-0.037266865,0.00953942,0.035487734,0.016770964,-0.07663283,-0.0022386205,0.01411099,0.045721684,0.06698109,0.045964926,-0.0036148839,-0.038231384,-0.023129638,0.08576484,-0.12433767,0.03336714,0.013729916,-0.016098067,-0.006060984,-5.074941e-33,0.040029634,0.015967408,0.044827282,0.12875755,-0.015300402,0.022622671,-0.011162592,-0.009256681,-0.020267967,0.01917568,-0.020541653,-0.17190754,0.017488109,-0.0072310744,0.063836396,0.050606526,0.06563619,-0.030072723,-0.09531452,-0.067399114,0.024156582,0.01174581,0.02861078,0.058873963,-0.032135464,-0.04266776,-0.016307145,0.04103265,-0.058199245,0.01407454,0.019882854,-0.059203062,-0.005467222,0.02556187,-0.008378503,0.008792857,0.053249624,0.070475206,0.031196322,0.014732714,-0.015250805,0.060222838,-0.06345539,0.045697913,-0.0022356864,-0.003011758,0.013031123,-0.098868534,0.0068584164,-0.060217045,0.10938782,0.0009853953,-0.03104382,-0.0063912715,-0.03291195,0.06589777,-0.04807832,-0.06988319,-0.081619084,-0.05116986,-0.024702348,-0.019047081,-0.06065229,-0.04195884,0.074365884,0.0006162164,-0.034905437,0.030241648,0.04129526,-0.0038922874,0.047038693,-0.013516568,-0.043822266,0.03894355,-0.043553386,-0.08565654,-0.07545168,-0.044610023,0.009338537,0.04240495,-0.019623708,0.01609378,-0.045560546,0.023898276,0.013243028,-0.006204451,-0.049936228,0.0131929815,0.05863808,0.057104837,0.13991909,0.05335089,-0.040759888,-0.04634791,-0.040974647,-2.4037469e-08,0.033358317,-0.048907865,-0.110072,0.010495771,0.07340923,-0.019795392,-0.075540476,0.07327305,0.025436955,0.11104365,-0.060927376,-0.0073724273,0.0052349726,0.10820457,0.0011311301,0.10163976,0.024385694,0.05139705,0.038804147,-0.057837132,0.06759649,-0.004533368,0.013759,0.11888557,-0.021615975,0.019025257,-0.08067612,0.034023196,0.058656704,0.021176146,-0.00843559,0.062405586,-0.02350543,-0.027667666,0.014209931,-0.0139758345,-0.032945264,-0.06733871,-0.017569037,0.03040436,0.052037336,-0.0045210877,-0.03179818,-0.007853773,-0.025426187,-0.09150097,0.0056270133,0.05214938,-0.0134365605,-0.020740492,-0.049284346,-0.043109987,0.03235946,0.09306118,0.05505067,-0.03934777,0.035509564,-0.018080711,0.00812155,-0.025098057,0.04209317,0.15493712,0.05816579,-0.15076344} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.776759+00 2026-01-30 02:01:12.075321+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2103 google ChZDSUhNMG9nS0VJQ0FnSURNczZEclJREAE 1 t 2106 Go Karts Mar Menor unknown Me encantó la pista, los Karts y la gente que me atendió es un sitio genial un 10 para ellos!!!! me encantó la pista, los karts y la gente que me atendió es un sitio genial un 10 para ellos!!!! 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {O2.05,P1.01} V+ I3 CR-N {} {"O1.02": "Me encantó la pista, los Karts y la gente que me atendió es un sitio genial un 10 para ellos!!!!"} {-0.030341294,-0.0011455257,0.010788857,-0.055727687,-0.03198066,0.081439674,0.0681646,0.0452897,-0.0034657025,0.036470793,0.03187416,-0.007257989,-0.009269462,-0.0070496793,0.027013998,-0.015842348,-0.061771706,0.028896622,0.0022231499,-0.010090397,0.07543333,-0.03254958,-0.042265505,0.09555866,-0.0667459,-0.04563742,0.020844141,-0.016033316,-0.033531703,-0.06037517,-0.01711754,0.0810142,0.031542923,0.021027878,-0.007043201,-0.07344846,0.0559569,-0.07060173,-0.037720397,0.027116148,-0.059632264,-0.04727382,-0.0038167755,-0.039340235,0.050484728,-0.038842063,-0.05639584,0.053095356,0.009127377,0.005774321,-0.026628375,-0.046471596,0.025308918,0.0120693045,-0.017470824,-0.061102204,-0.022435516,-0.015347888,0.12009703,0.05366103,-0.011904228,0.09179173,-0.09117205,0.015997086,-0.048450377,-0.032722812,0.044371296,-0.04846893,-0.12460958,0.14001478,0.11134893,-0.033706564,0.03001774,0.04120667,-0.010695574,0.07394071,-0.034193635,-0.060698453,-0.105325766,-0.024282064,0.023175087,0.00027311407,-0.0035099515,-0.08275974,-0.049080815,-0.041792825,0.021624057,0.07662525,0.018453993,-0.0051723085,-0.052371766,0.100007355,-0.02494515,0.01647182,-0.016586754,0.040106814,0.002973569,-0.033702575,-0.0409782,-0.029430361,0.13131815,0.08318882,0.07445029,0.03860286,-0.07031948,0.022483498,0.047961988,-0.01790164,-0.010785691,-0.026275655,-0.034736216,-0.0030777392,-0.07874686,0.00899496,-0.14121939,-0.011996182,0.03688535,-0.074843876,-0.03683338,-0.06580069,0.029787522,-0.0037191976,-0.0404792,0.027081247,-0.024881862,-0.078519315,0.029270805,2.8851401e-33,-0.08176759,-0.02800826,-0.0029406943,0.04300649,-0.0014028302,-0.019818034,-0.042677626,-0.053290818,-0.12528647,-0.0450144,-0.091580264,0.0102282185,-0.0040016123,0.03321259,0.08799968,0.08464126,-0.025405854,-0.015700221,0.037352223,0.030527834,-0.08052283,0.010175432,0.010660405,0.036379855,-0.022750583,0.10480981,-0.020148322,-0.072104886,-0.09225381,0.044279814,-0.020917714,0.05214785,0.006630861,0.024272334,-0.023940627,-0.05992159,0.10607822,0.032918856,0.011815202,-0.008227236,0.06708799,-0.04705776,-0.008941149,0.051988974,-0.022494793,0.011972461,0.038641237,0.012335266,-0.0036158015,-0.025301015,-0.083751686,0.0049892343,-0.03134039,-0.05983165,0.05851666,-0.021680387,-0.035548046,0.047869183,-0.07978527,-0.026965443,0.13222349,0.0075575975,0.06947721,-0.017101334,-0.054384757,-0.02862908,0.0420726,0.046288308,0.13067016,0.05426673,-0.005216911,-0.05873312,-0.018500634,0.006759214,0.0694326,0.015885629,0.05661257,0.058090843,-0.030442126,0.057762202,-0.0044042864,0.04137114,-0.0014032354,0.022151954,0.09714334,0.0133392755,0.021215089,0.05069066,-0.0726837,0.071664006,-0.0029441398,0.018994998,0.06052027,-0.036429614,-0.006365142,-4.8537844e-33,-0.019747946,0.030275062,0.015564235,0.045485556,-0.089866556,-0.018627293,0.050858915,-0.023938458,0.026622096,-0.0098713655,-0.064858355,-0.077514805,0.12907544,-0.08070042,-0.013905591,0.06332752,-0.011284061,-0.024356185,-0.052161902,-0.0054466967,-0.029325977,0.060230643,0.01678473,0.03206326,-0.010207034,-0.015917985,0.03323663,0.026216883,-0.073949054,0.026131188,0.017824618,-0.08483965,-0.018210998,0.037238166,-0.043548606,0.028887076,0.053554762,0.0476518,-0.007079282,0.023310123,-0.040125832,0.07589832,-0.073922664,-0.0618118,-0.047260404,0.019285807,0.047522403,-0.07300812,-0.09566578,-0.04371436,0.06406248,0.028794505,-0.008649749,-0.0026006824,0.0064078495,-0.035780456,-0.0019744155,0.0002783875,-0.052570827,-0.010433434,0.02474752,0.03809948,-0.04359815,-0.013396997,0.058018222,-0.002354546,-0.019680332,-0.010479665,-0.014079916,0.039133854,0.044978045,0.05585355,-0.09665479,0.053912126,-0.0756319,-0.025980847,-0.052231148,0.063367404,0.026013646,0.0223222,0.007199033,-0.0043837233,-0.014748346,-0.041142758,0.027645877,-0.04078512,-0.012490658,0.074729875,0.04879609,0.015237977,0.07228501,0.01373658,-0.07803341,-0.054569818,-0.029042827,-2.7053513e-08,0.044797245,-0.017366972,-0.035250615,0.0014652541,0.038387556,-0.07253448,-0.05644001,0.008899241,0.043409716,0.06980967,-0.024880245,-0.04977548,0.024139859,0.053995147,-0.012361658,0.04572486,0.06531579,0.09746805,0.0019452847,0.0038985335,0.019578014,0.03750722,-0.02481237,-0.041037604,-0.021513699,0.024192076,0.008075948,-0.01373854,-0.0036827568,-0.029270064,-0.012889403,-0.021608492,-0.14910752,-0.10133818,-0.053416047,0.0055590374,-0.027202904,0.053227827,0.027171107,-0.010731891,0.060097083,-0.0016655388,-0.12632394,0.033516835,-0.08412063,-0.046872213,-0.072307244,-0.02634601,-0.039512865,0.042816162,-0.07811987,-0.008614107,0.087064005,-0.020137012,0.07937661,-0.044693798,0.076097555,-0.025085667,-0.024801338,0.06723102,0.032629114,0.1355723,0.0031120344,-0.077723734} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.874807+00 2026-01-30 02:01:11.976181+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2134 google ChZDSUhNMG9nS0VJQ0FnSURycDR6ZGFREAE 1 t 2137 Go Karts Mar Menor unknown Super goede cartbaan. Alles netjes super goede cartbaan. alles netjes 4 2025-01-30 01:52:39.833374+00 nl v5.1 E1.01 {O1.02} V+ I3 CR-N {} {"E1.01": "Super goede cartbaan. Alles netjes"} {-0.016253823,0.032013718,-0.014304327,-0.022862474,-0.09137836,0.050254084,0.060126826,0.1686929,-0.02478566,0.05139769,0.050259273,0.018503401,-0.09905456,0.009215487,-0.069815375,-0.08477557,-0.05864392,0.037978534,-0.025803287,-0.013000742,0.024066556,-0.0679107,0.023550147,-0.036213383,-0.027372468,0.093511865,0.03190209,-0.019804092,-0.0044161356,-0.05752838,0.032607388,0.03906217,0.00013477298,-0.0057952525,-0.052152473,-0.041457634,0.050067425,-0.04698256,0.086912,0.007486521,-0.073076144,0.0016195042,-0.08060478,-0.038644277,0.014555792,0.05237805,-0.013525278,0.027583703,-0.048941154,0.012037307,-0.0474187,-0.02538023,0.10480679,0.009573,0.017331287,0.011773216,0.020711772,-0.029619087,0.03834761,-0.0017891886,0.010686586,-0.030387618,-0.021748628,0.018618304,0.011095718,0.04906377,-0.056904253,0.02456192,-0.11934498,0.11816035,0.040824845,-0.07255535,-0.031911083,-0.014225319,-0.015537451,0.06105776,-0.026684199,-0.06051626,0.05908001,-0.034645416,0.025615955,-0.058837913,-0.027899312,0.017181529,-0.02477758,-0.017525544,0.03463462,0.0007090236,0.056789733,-0.012234259,-0.02356046,0.011699712,-0.09542213,0.01217949,-0.060176026,0.0026046173,-0.0017699873,-0.014767473,0.01959947,0.02770932,0.050772704,-0.06019753,0.09901253,-0.03859885,-0.09845171,-0.0002659288,0.080920696,-0.048026655,0.11480584,0.009882868,-0.10727951,-0.08949519,-0.0012786407,-0.08123874,-0.045000855,-0.041746087,0.014425808,-0.042594727,-0.052344393,0.022339636,0.04054034,-0.011394242,0.013634612,0.056758337,0.04890601,0.02361658,0.032264996,3.9584515e-34,-0.029467076,-0.045925938,-0.027220326,-0.010940465,0.04063882,0.028589414,-0.024296667,-0.032017864,-0.09287553,0.05122892,-0.054808363,0.028702231,-0.024638526,0.01215257,-0.013290817,0.11424711,-0.004917866,-0.031052701,0.09201508,-0.028224828,0.0030877874,-0.031775776,0.04200532,0.052224863,0.029231288,-0.05170332,0.08483871,0.019397426,-0.06679016,0.010277545,0.07358355,-0.037778318,-0.023045344,0.020130092,-0.0035076875,-0.0425709,-0.027181001,0.018523255,-0.03097139,-0.037429485,-0.0115365805,-0.08909893,-0.028518394,0.013423937,-0.0142382495,-0.0031730875,-0.005610761,-0.005820784,0.039281126,-0.008043513,-0.09065881,-0.0009773346,-0.06391055,0.048232663,0.0145136155,0.02980511,-0.100164436,0.11163511,0.021133112,-0.06186371,0.0541474,-0.005085119,-0.043644693,-0.0082855085,0.03247917,0.0051733637,0.04540512,0.024591267,0.032971997,-0.039118323,-0.034618665,0.0027236368,0.05717014,0.035637476,-0.058958746,0.083195135,-0.013188789,0.0892784,-0.024550559,0.034335155,-0.15154424,0.044701234,-0.02962418,-0.020490767,0.11028223,-0.018678091,-0.08826498,-0.055053424,-0.025282675,0.050552193,0.03239644,0.025248116,-0.033379667,-0.044479392,-0.025498431,-1.34762355e-33,-0.05439017,0.050749995,-0.08781827,0.07948894,0.025830215,0.011287999,-0.05646722,0.0019026808,-0.021224815,-0.033840645,0.024690626,-0.06827437,0.10682652,-0.047073897,0.0022498542,0.034265365,0.06666779,-0.007595162,-0.022777814,-0.12569489,0.033921357,0.012621208,-0.027391309,0.06018968,0.06214294,0.007819682,0.032281157,0.08415332,-0.100645736,0.06196875,0.084968716,0.0397047,0.003325058,0.023699325,0.004561648,-0.001222561,0.059097625,0.06543807,0.0065654013,0.013265484,-0.034474917,-0.05472507,-0.05000968,0.027043136,0.03513196,-0.08809807,-0.083531946,-0.06788377,0.003160006,-0.050814584,0.009876287,0.0630319,-0.04107974,-0.058797564,0.12295726,0.0708396,-0.0054456075,-0.08106106,-0.044117883,-0.044499207,0.11161913,-0.037366826,0.06854402,0.05426927,0.078939214,-0.030678494,-0.019129498,-0.03515679,0.067934036,0.0021402473,0.08425391,-0.00040335272,-0.08764302,0.07606495,-0.0737203,0.050658565,0.027394861,0.09688312,-0.0024616104,-0.040881302,-0.07433519,-0.032934528,0.015321628,0.039059035,0.09592942,-0.02759315,-0.02024275,-0.052877754,0.011342123,-0.012745406,-0.019143436,0.03539136,-0.074019775,0.026697334,0.0069327555,-1.6670345e-08,0.017829085,-0.025314556,-0.06285255,0.04694163,0.09876739,-0.057456885,-0.07472596,0.004085261,-0.063151374,0.013190945,0.037207894,0.027051374,-0.02156187,0.05550433,0.09611438,0.027149614,0.003297977,0.031196792,-0.0155228935,-0.00020809319,0.0412158,-0.055372138,-0.029129865,-0.010359414,0.014152757,-0.0020066884,0.016847238,-0.018905513,0.042885292,-0.052763145,-0.008587247,0.060161542,0.023526303,-0.008388808,-0.0009652896,0.050382134,-0.06880718,0.0318683,-0.062000852,0.07255569,0.02580615,0.04612541,0.052443277,0.010341148,0.013017962,-0.016007807,-0.010124945,0.037519585,0.04499305,-0.010146821,-0.13359688,0.050411396,0.0029905667,0.100386485,0.04671834,0.06301131,0.046120618,0.03971484,-0.041938126,0.05846933,0.016586443,0.031082992,-0.096652836,-0.012061892} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.78792+00 2026-01-30 02:01:12.083835+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2137 google ChdDSUhNMG9nS0VJQ0FnSUNoOFltN21BRRAB 1 t 2140 Go Karts Mar Menor unknown Estuve con mis hijos. Todo muy divertido. estuve con mis hijos. todo muy divertido. 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Estuve con mis hijos. Todo muy divertido."} {0.012235384,0.07696845,0.11032936,-0.036216337,-0.025166051,-0.012114436,0.097485326,0.038661785,0.008460862,-0.035718925,0.05585989,-0.011484475,-0.020774782,-0.039375063,0.006605335,0.03741823,0.034406222,0.091777794,0.015359366,0.078421354,0.059331127,-0.01335923,-0.07210741,0.074706316,-0.062281862,-0.014383907,0.07060211,0.023849033,-0.08010632,-0.017697133,0.06108655,0.062049516,0.048547484,-0.014063501,-0.01246699,-0.0048115063,0.045695845,-0.023596441,0.028126232,0.0705194,-0.08013614,0.018370477,0.027753668,0.0014949137,-0.0027611642,-0.011229092,-0.008963595,0.020455474,0.05817183,-0.037551682,-0.081171714,-0.013915793,-0.0035493039,-0.008878698,0.026723707,-0.0016259227,-0.072347246,-0.019126495,0.09865498,-0.006764284,-0.03392702,-0.026371315,0.019346932,-0.00730679,0.015890261,-0.055566043,0.051033128,0.056578588,-0.03403689,0.04482649,0.11174356,0.025693247,-0.018351348,-0.0280642,-0.026537871,-0.020827819,0.0011996536,0.04705112,-0.04068826,-0.019121524,-0.036011152,-0.012419674,-0.011142198,-0.10269667,0.06829664,-0.05005309,-0.031321462,0.0374828,0.013622989,-0.04920425,-0.08569905,-0.014129709,-0.027908662,0.011223293,-0.054408465,-0.02278476,0.014924549,-0.063245334,-0.031105561,0.049941115,0.03226871,0.081223726,0.061527077,-0.014745942,-0.011703062,0.031409774,0.0055980254,-0.0010408208,0.03004124,0.033966165,0.015884098,-0.0238147,-0.033578876,-0.035990063,-0.06447256,-0.019768508,0.052419648,-0.08900857,-0.07728536,-0.018953865,0.028608363,0.024151687,-0.046262573,-0.036486536,0.02019173,-0.067133546,0.057200696,5.563347e-34,-0.008366164,-0.060672507,-0.049425766,0.087333634,-0.073058516,-0.031472646,-0.00812708,-0.023932172,-0.031277273,-0.02245906,-0.01575372,-0.012746301,-0.0045393766,0.067601286,-0.05431023,-0.0018396041,0.08132099,0.06313002,0.068440445,0.069794044,-0.052742295,-0.02662824,-0.014481652,0.08948426,-0.017330876,0.039924502,-0.04010487,-0.072252505,-0.017382046,0.060858175,-0.03624125,-0.040317047,0.018320663,0.05091145,-0.035554606,-0.03155875,0.007118196,0.05102187,0.00094460335,-0.04562667,0.05439582,0.03189394,-0.048157874,-0.027595755,0.019836467,-0.0061736475,0.069212876,0.027450018,0.10068043,0.013416216,-0.010575758,-0.075674936,-0.04494121,0.0048892177,-0.0033858486,-0.029556038,-0.018550564,0.08185953,0.039368495,-0.036365584,-0.009547351,-0.016256835,-0.09925503,0.009544225,-0.04803685,-0.022555592,0.046940397,0.0369888,0.13324234,0.052525308,-0.14817318,-0.01327574,-0.07826544,0.11465647,-0.058876958,0.026978115,0.0039568106,-0.029892841,0.09899361,-0.0012296442,-0.015699703,0.023411052,0.02669261,0.017628,0.08244731,0.09870878,0.047486387,0.04457705,-0.10164084,0.09011123,-0.023934968,0.06484611,0.045684256,-0.053716935,0.05502242,-1.2271346e-33,0.032551464,-0.020074867,-0.015277825,0.0058441954,-0.018213786,0.053330854,-0.046039708,0.039005477,-0.08257875,-0.10087132,-0.037026353,-0.14411119,0.08049299,-0.009044847,-0.07776301,0.033434857,0.08008823,-0.023481939,-0.11579435,-0.04036889,-0.049111538,0.025474805,0.08052311,-0.056276426,-0.06014711,0.02000593,0.005354042,0.021234632,-0.051173735,0.050706398,-0.04536485,0.04563617,-0.0027123273,0.040093593,0.025434505,0.09980196,-0.0906981,-0.026487486,-0.0056893597,0.05091916,-0.06123574,0.043866627,-0.021994717,0.007929087,-0.05886765,0.062177025,0.031897888,-0.10594575,-0.05643053,-0.019040417,-0.0035627242,-0.056181684,0.022476241,-0.048655853,0.0011748747,-0.13478242,-0.028991604,-0.099400334,-0.10476064,-0.02435418,0.042482622,-0.020080723,-0.030148534,-0.03245369,0.07782374,0.094638385,-0.08985346,0.016589485,0.031929333,0.02292175,0.11082709,-0.023748456,0.04201727,0.019191593,0.020656994,-0.022371877,-0.10095687,0.060835015,0.0064418158,0.045267016,-0.0801294,0.0035175388,-0.035206325,-0.007820969,5.1563624e-05,-0.03194556,-0.08696489,-0.04632804,-0.015944269,-0.008123897,-0.014677187,0.036628928,0.005001679,0.019644475,0.00759153,-2.1643478e-08,0.009782262,-0.07128313,0.025217332,-0.01948373,0.053773787,0.023155803,-0.084706075,0.04144965,-0.03177984,0.118680075,0.0006596472,0.019369375,-0.015460299,0.022827478,0.0022918042,-0.01740526,0.100309685,0.09693588,-0.026346913,-0.029264031,0.085736685,-0.028547697,0.009033469,0.008234697,0.036127046,0.020833824,-0.022220582,0.022889089,-0.021927532,-0.08668192,0.045823094,0.0034511706,-0.0069596744,0.017284755,-0.06645913,0.007189073,0.039619602,0.059267394,-0.005581074,0.023751317,0.0469092,0.024601609,-0.11420766,-0.044465024,-0.027332243,-0.039895248,0.03597221,0.060804114,-0.010268857,0.0110461395,-0.060302477,0.020810643,0.04009343,0.042667557,-0.040734313,0.019895244,0.013271431,0.0049612606,0.01023738,-0.10819656,0.059286345,0.14308706,-0.032436196,-0.014040953} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.836204+00 2026-01-30 02:01:12.096064+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2138 google ChdDSUhNMG9nS0VJQ0FnSURLak0yUXh3RRAB 1 t 2141 Go Karts Mar Menor unknown Un muy buen lugar para pasar el día en moto un muy buen lugar para pasar el día en moto 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Un muy buen lugar para pasar el día en moto"} {-0.06474559,0.04870756,0.01387011,-0.037567124,-0.028617995,-0.04146868,0.111318186,-0.030087093,0.05463497,0.0046994877,0.03865366,-0.05871465,0.007748427,-0.0119400155,0.040422045,0.071227565,-0.04528329,0.07205531,-0.06868589,0.012236939,0.11641011,0.0311454,-0.050278213,0.094976306,-0.11989503,0.0034993389,0.037597913,-0.02320194,-0.040737055,-0.03711799,0.06328896,0.06050282,0.061485086,-0.010039575,0.008827027,-0.061361194,0.026621908,-0.078134015,0.0017738595,0.03811584,-0.07176586,-0.048625547,-0.018105667,-0.0551495,0.016009808,-0.08086536,0.059083037,0.04420838,-0.004714545,-0.036142476,0.023181802,-0.00724091,-0.059413664,0.009728739,-0.032234546,0.0001435152,-0.098264225,-0.018594848,0.0916233,0.00933811,-0.04717747,0.09743627,-0.01050228,0.026208745,-0.02491603,-0.07680815,0.034063496,-0.034266125,-0.09589132,0.024692314,0.008098783,-0.07408206,0.012606077,0.011011231,-0.052934572,0.012393219,0.07524019,0.029284015,-0.03383339,-0.039972477,-0.020751657,-0.015740296,-0.041084606,-0.035738636,0.04211365,-0.021407124,-0.015856478,0.06329527,-0.0065959473,-0.061521254,0.035324328,-0.024001174,-0.08409894,0.102878734,0.005186563,0.009034041,0.060627755,-0.10278564,-0.035518635,0.0998558,0.02355735,0.02535611,0.096768156,0.025133884,-0.020085236,-0.05496427,0.07336725,-0.0235087,-0.021817213,0.05080568,-0.01834065,0.005514554,-0.0012767487,0.0034817134,-0.0070128646,-0.078294836,-0.042583674,-0.036556356,-0.0062501524,-0.01824621,-0.00739677,0.033908393,-0.082187794,0.00061177684,-0.010867878,-0.045156535,0.07527804,5.7733277e-33,-0.017190801,-0.081207424,0.046883088,0.027001958,-0.054512665,0.08117601,-0.020033613,-0.02528508,-0.020727407,-0.06987097,-0.035922136,-0.01596574,-0.0005097079,-0.013174377,0.055385243,0.060530227,-0.0076671587,-0.07134332,0.08596153,0.005745342,-0.13314791,-0.0061678668,-0.02764985,0.010225811,0.03475302,0.010138592,-0.026230423,-0.09603986,-0.037043512,0.103086405,0.0062310267,0.005662385,0.01364276,-0.021312082,-0.05746548,-0.028328605,-0.022977026,0.04377312,-0.058013696,-0.046537828,-0.02143069,0.008361563,-0.046523515,0.041661713,0.014813113,0.040237043,0.07717683,0.05129626,0.033181768,0.009231053,-0.044163827,-0.05316151,-0.10621835,-0.0616495,0.0040140674,-0.04183603,-0.08799799,0.023964299,-0.017449252,-0.044906937,0.08101754,0.04926826,0.017227989,0.02423015,-0.07510817,-0.057041153,-0.0007975228,0.033301238,0.06296559,0.07428646,-0.051627025,-0.05524414,0.021603683,0.008392444,-0.012434724,0.026856698,0.10891232,0.006856803,-0.0015626043,0.05696346,-0.007493932,-0.007049273,0.11653594,0.008790691,0.08936068,0.05684922,-0.05881181,-0.022472756,-0.029962512,0.0628876,-0.017792093,0.07870394,-0.020094486,-0.053746607,0.054651935,-5.918718e-33,0.08170524,-0.004037134,0.04445778,0.11976556,-0.013257249,-0.008025973,-0.015370364,-0.0005585134,-0.01589382,-0.009094703,-0.09197071,-0.14783336,0.13592114,-0.06448749,0.07568897,0.11729301,-0.002063315,-0.032647662,-0.04196778,0.01879156,0.015985282,-0.0061519626,-0.012344972,-0.089708894,-0.012270964,-0.058223814,-0.083778046,0.068248376,-0.05883309,-0.05770646,-0.0056058504,-0.06210612,-0.040158365,0.021221012,-0.062403798,0.012125271,0.020048846,0.060928877,0.037341632,-0.0051441714,-0.061902273,0.038618762,-0.018605739,0.005060845,0.0060009863,0.013588247,0.05025484,-0.11076722,0.06692959,-0.07761048,0.03503293,-0.03357326,0.011712443,-0.049593814,0.050059386,-0.03696163,-0.059840325,-0.031573053,-0.0700653,-0.023450697,0.0580994,0.019722953,-0.032694623,-0.036877893,0.03864427,0.028628353,0.0043281238,0.019613737,0.00016280096,0.0044603115,0.102948934,-0.03383377,-0.07051487,0.02383638,-0.06835154,-0.020280067,-0.099932484,-0.018708011,-0.06814035,0.047879275,-0.016449956,0.034353286,-0.011930338,0.005172657,-0.06872278,-0.0053085135,-0.011179911,0.020014586,-0.014421489,0.0033335278,0.043967087,0.038949862,-0.008823731,-0.040451486,0.0048866794,-2.5449252e-08,-0.017613461,-0.09683568,-0.061332017,-0.005261938,0.01938337,0.04516748,-0.0046097683,-0.005894382,0.036129463,0.048109926,-0.012118852,0.018667195,-0.0012149414,0.08408177,-0.012639913,0.10538414,0.070157334,-0.018899795,0.045756254,-0.0032514036,0.122350454,-0.020613385,0.033790097,0.074741535,0.006776437,0.030178523,-0.071891315,0.05467379,0.038071062,-0.045043465,0.048671525,-0.018859802,-0.006049626,-0.059475258,-0.07381982,-0.037004314,-0.02546658,-0.04244177,-0.038168885,0.03859552,0.11977628,0.071919255,0.047208916,-0.0003453532,0.043975074,-0.056798223,-0.0046125925,0.04821567,-0.03312263,0.047194056,0.0017452795,-0.0018866872,0.054368168,0.093414955,0.063333325,-0.030507334,0.02850311,-0.028792273,-0.010664172,0.0013943221,0.073154144,0.11141727,-0.037879992,-0.021533588} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.850753+00 2026-01-30 02:01:12.098692+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2141 google ChdDSUhNMG9nS0VJQ0FnSUN1clB6SzRnRRAB 1 t 2144 Go Karts Mar Menor unknown Atención estupenda y Karts en muy buen estado. atención estupenda y karts en muy buen estado. 5 2026-01-30 01:52:39.833374+00 es v5.1 P3.01 {O1.03} V+ I3 CR-N {} {"P3.01": "Atención estupenda y Karts en muy buen estado."} {-0.003973214,-0.022959564,-0.016976722,0.0049550696,-0.062097248,0.020075684,0.028921977,-0.029371731,0.024231523,0.021124026,0.024552077,0.047334142,-0.05683036,-0.039806895,0.05066629,0.027215607,-0.017576959,0.06726556,0.028046584,-0.059463978,0.064987935,-0.035755955,-0.0041045737,0.09497702,-0.067080684,-0.08692259,0.010988925,-0.017114423,-0.009275539,-0.04431318,-0.03414854,0.028517991,0.010103301,-0.016518913,0.015616292,-0.031139629,0.06836067,-0.06685864,-0.05067129,0.019315796,-0.091335714,-0.07723024,-0.08281883,-0.03626051,0.004212796,-0.08870948,-0.023901077,0.06432565,0.020310147,-0.03641184,0.028066304,-0.0775377,-0.05658962,-0.03908306,0.04710934,-0.0025066754,-0.09979283,-0.001968701,0.17206827,0.069579944,0.026133183,0.08800731,-0.05383671,0.025618594,0.024844607,-0.08369128,0.05766092,0.07287925,-0.092302,0.06175708,0.13925661,-0.06444504,-0.032069124,0.060897246,0.017634822,0.013064739,0.0027082383,-0.019486634,-0.049751643,-0.018034326,-0.054662425,0.0075918604,-0.033718057,-0.047951438,-0.00030096207,-0.07962191,-0.049650576,0.057893176,0.029605715,0.0030752723,-0.0041541876,0.02709049,-0.06127905,-0.0031188088,0.09051033,0.032050885,0.00026479774,-0.04199422,0.05450358,0.02563688,0.05510289,0.0042174044,0.08088464,0.050298464,-0.043056086,-0.007889523,0.01708624,-0.07142549,0.06445386,0.03279453,-0.05862989,0.014656576,-0.05673297,0.008464527,-0.06309503,-0.024721377,-0.020701386,-0.032240678,-0.024633758,-0.06932711,0.05095867,0.057078283,-0.032266863,0.035627246,0.014754129,-0.06498225,0.10310335,3.4664245e-33,-0.062019568,-0.110185705,-0.040132668,0.06355451,-0.0022974021,-0.04819456,-0.037561126,-0.074953586,-0.05654178,-0.011326439,-0.045532256,0.07956362,-0.021741115,0.042871043,0.09298348,-0.009656166,0.0014129732,0.061959233,0.10573627,0.06491244,-0.04628216,-0.06356653,0.0033827957,0.08559596,-0.02184511,0.022972275,-0.0073252274,-0.020520655,-0.09048511,0.061985236,0.042922575,-0.013577059,-0.03825823,-0.02725076,-0.10915321,-0.08981887,0.053005774,0.028571635,-0.050517898,-0.04397085,0.061620627,0.010061607,-0.035898436,-0.0106857475,-0.010150353,0.01713273,0.060567506,0.031964824,0.08935747,0.053529058,-0.07860352,-0.08795107,-0.03798686,-0.07567997,-0.0013348033,0.041094244,-0.0034260405,0.047848634,-0.0001314335,-0.04667,0.004508458,0.014638401,0.07720775,-0.0699599,-0.04841779,-0.027986404,0.042207632,0.0027529334,0.061499234,0.029786801,-0.09158301,-0.0013211011,-0.022576483,0.08828496,0.061843112,-0.015565386,-0.04266931,0.055600923,-0.009622629,0.05484046,-0.06553835,0.014931033,-0.0035574455,0.056912307,0.106078014,0.083019994,-0.0046279044,0.0054531996,0.0146296425,0.1265549,-0.049376395,0.08181281,-0.008733654,-0.002445328,0.05978849,-5.1691236e-33,0.03928207,-0.00097894,0.020931283,0.07384379,-0.013034962,0.0528709,-0.007854503,0.039238565,0.004934505,-0.072594225,-0.081934206,-0.103783935,0.080145046,-0.07045045,-0.020949949,0.06002791,0.03326321,-0.009272468,-0.089219496,-0.04264968,-0.05338525,-0.021942135,0.08310334,-0.03309368,-0.0016640578,-0.015991133,-0.06156121,0.057250824,-0.095319785,-0.012895847,0.037222773,-0.076881625,-0.0619059,0.085942924,-0.061577242,0.068838224,0.12174433,0.06989921,-0.02126984,0.051769488,0.07559629,0.11654386,-0.07409973,0.037313156,-0.027042734,0.03737502,0.005626418,-0.08942061,-0.0025490765,-0.08826829,0.05875274,0.030399181,0.0054775537,-0.046836004,0.062339846,-0.02258708,-0.02271321,-0.01827401,-0.057487644,-0.025344422,0.036893938,0.026239108,-0.011940255,-0.05984329,0.07548997,0.044828445,-0.05409181,-0.019089172,0.0055613075,0.05074393,0.10214349,-0.06495934,-0.0806703,0.009593096,-0.046843246,-0.042376213,-0.05074853,-0.005651811,0.010636401,0.0057766247,-0.03604465,-0.0002609906,-0.031592224,0.021861069,-0.034584653,0.017223962,-0.026686506,0.03712746,0.033439957,0.03863189,0.039936416,0.032023072,-0.034240585,-0.010170891,-0.016129985,-2.64925e-08,0.027499674,-0.027979199,-0.08353717,0.01588436,0.020779314,-0.03225988,-0.037045583,0.012859689,0.018728,0.029922301,-0.034290224,-0.0026898957,0.026664147,0.04974582,-0.034251634,0.035846654,0.05595868,0.10716523,-0.0035306017,-0.04580705,0.058409587,0.018903298,-0.0358087,0.024578786,-0.02163998,-0.0013718555,-0.058848426,0.07189976,0.053211313,0.018220186,-0.010270847,0.0113175865,-0.054940928,-0.036284626,-0.008404632,-0.033808094,-0.031780258,0.025964156,-0.04025746,3.8054084e-05,0.058394436,-0.014859052,-0.04137423,-0.032591738,-0.01649859,-0.024904408,-0.06779174,0.051990483,-0.060560003,0.026408728,-0.052823633,-0.07129436,0.063988216,0.042753376,-0.00554409,-0.0068926853,0.025060523,-0.044423584,-0.0078008072,-0.042741194,-0.0043108896,0.0509758,0.044545703,-0.06810844} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.882129+00 2026-01-30 02:01:12.113704+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2145 google ChZDSUhNMG9nS0VJQ0FnSUNhaXNldmRREAE 1 t 2148 Go Karts Mar Menor unknown Un sitio para pasar un muy buen rato divirtiendo te un sitio para pasar un muy buen rato divirtiendo te 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Un sitio para pasar un muy buen rato divirtiendo te"} {-0.043484535,0.01343113,-0.012556408,-0.040715937,-0.030513458,-0.0039085196,0.043368228,0.004235833,0.0112315845,0.03806966,0.012852854,-0.04894089,-0.022224696,0.04938293,-0.0038108157,-0.02819477,-0.09746029,0.10822401,-0.018162457,0.07079298,0.04935387,0.008546871,-0.0603992,0.101939134,-0.11491984,-0.031148268,0.04378668,0.033139892,-0.0009267656,-0.009180783,0.012919367,0.064452834,0.03201604,-0.06493747,0.030765709,-0.054143865,0.0020670441,-0.08977262,0.042648878,0.0010571766,-0.043177012,-0.031334292,-0.06133033,-0.013767953,-0.027974306,-0.045941286,0.08683397,0.018950066,0.04647031,-0.05839022,-0.04048169,0.056205604,-0.06507667,0.002323119,-0.10589401,-0.014713121,-0.016390577,-0.016237056,0.035768215,-0.048041277,0.052423254,0.055767566,0.011518417,0.039068658,0.03521632,0.033335842,-0.057811346,0.008111595,-0.06985983,0.050422482,0.04733168,-0.066494726,0.040514648,-0.03658878,-0.020764751,-0.02698284,-0.041478384,0.02172191,-0.0051386026,-0.09566709,0.066806674,-0.013946259,-0.04492624,0.0064488607,0.00847968,-0.0051012337,-0.0015319339,0.0323435,-0.018600438,-0.016663766,-0.020507708,0.06643291,-0.08889121,-0.046486095,0.029016592,0.048054382,0.01614615,-0.0058947643,0.042992312,0.05051369,0.037122414,0.048153456,0.0005376258,0.024255574,-0.030575033,-0.053323545,0.04426168,-0.12071498,0.02027812,0.0418186,-0.078515075,0.0011236736,-0.064720176,0.011647716,-0.054545768,0.003233915,0.045912176,-0.12105706,-0.029837858,-0.038341843,0.040439937,-0.029250698,-0.020634893,-0.019764317,0.04433767,-0.08850512,0.07485607,5.5178252e-33,-0.0125322975,-0.09644926,0.0012461375,-0.027859554,0.035074033,0.1047956,-0.06767061,-0.060825303,-0.015369351,-0.0010583041,-0.06889707,-0.0032234518,0.033994086,0.022058314,0.08261436,0.032275777,-0.00012801611,-0.004441571,0.089774355,-0.042556267,-0.12857959,0.01827478,-0.042354725,0.03208705,0.038150776,0.029853027,-0.0731173,-0.04071527,-0.08432028,0.063125946,0.035194278,-0.0063938145,-0.06404595,-0.03430079,-0.048696395,-0.12303014,-0.023957128,0.06712147,0.04787617,-0.060144637,0.06905049,0.010603488,-0.022565767,0.06968785,0.03937939,-0.045049697,-0.010850227,0.020076904,0.010967844,0.02257116,-0.09341288,-0.06269237,-0.009636695,-0.10669418,0.021600183,-0.10204308,-0.024074536,0.08511593,-0.076307386,-0.0074843518,0.09365154,0.031138014,-0.027447043,-0.083292104,-0.019394433,-0.025122937,-0.019697255,0.07085337,0.08852125,0.021438569,-0.057155956,-0.034806374,-0.07515273,-0.0057717836,-0.03302179,0.010403473,-0.007271633,0.04055836,-0.009569023,-0.0063024163,-0.07429152,0.021427643,0.035480533,0.036607537,0.029696025,0.013003221,-0.030920193,0.057399146,-0.009399926,0.034919716,0.04675686,0.02070842,0.028266937,-0.052941654,0.054480325,-7.017378e-33,-0.018053805,0.04040247,0.0072871307,0.085092686,-0.055254936,-0.026206292,-0.11457448,-0.0204129,0.026511902,0.030910943,-0.06884636,-0.067067795,0.12304331,-0.043713003,0.02513786,0.16796319,0.019545313,-0.041709714,-0.05347626,-0.054404877,0.028834157,-0.037947625,0.036050957,-0.056815203,-0.02386381,-0.03758576,0.019292437,0.04645789,0.01048993,0.037354197,0.007441332,0.03537922,-0.048293773,0.09010077,0.006997206,0.008131391,0.08436176,0.0043549105,-0.020332184,-0.014248167,0.016700942,0.04166238,0.0033673355,-0.010109396,0.013462717,-0.020343326,0.01537073,-0.107227124,-0.04533413,-0.064766586,0.060618795,-0.013340015,0.047022887,-0.037839897,0.02992525,-0.033164773,-0.053186804,-0.022640528,-0.11153314,-0.041263867,0.10295939,0.07879914,-0.07819735,-0.0040923054,0.014522529,-0.00033819908,-0.073009916,0.057572477,-0.009233782,0.07634231,0.076080985,-0.008825736,-0.062389083,0.046277605,-0.066857524,0.05140513,-0.016010674,0.041322343,-0.0049600843,0.049619824,-0.09291296,-0.010915523,-0.009662115,-0.050292443,-0.028997973,0.005125344,-0.03888656,0.017179675,0.016333614,0.004935052,0.07617138,-0.005376456,-0.06346829,-0.041121308,-0.046803348,-2.7108268e-08,-0.017472548,-0.112002105,-0.012075218,0.07452105,0.011947359,-0.015299781,0.06297112,-0.041559815,0.03307637,0.098959394,-0.038916655,-0.06666824,0.085673176,0.06086968,0.002525397,0.10620966,0.053935666,0.023992509,0.015773518,0.036513925,0.098005176,-0.07292192,-0.02556494,0.043630924,0.033393346,-0.042126715,-0.032173,0.0071642837,0.008332644,-0.032128695,0.059454385,0.00015295268,-0.050893188,-0.028616164,-0.017866854,-0.01657315,0.007206881,0.019668458,-0.0640671,0.0061356225,0.047297623,0.030176952,0.0033276323,-0.009010778,0.09290605,-0.047398522,-0.00985562,0.06701093,0.010645467,-0.032929122,0.008444366,-1.7732393e-05,0.08431529,0.019974211,0.00725807,0.0040683313,0.060479663,0.03014581,0.056131553,-0.0011209497,0.021830365,0.19096032,-0.039817613,-0.0091812825} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.924482+00 2026-01-30 02:01:12.131176+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2146 google ChdDSUhNMG9nS0VJQ0FnSUNEMy1qRjlRRRAB 1 t 2149 Go Karts Mar Menor unknown Heel leuk en echt goed georganiseerd heel leuk en echt goed georganiseerd 5 2025-01-30 01:52:39.833374+00 nl v5.1 J2.01 {V4.03} V+ I3 CR-N {} {"J2.01": "Heel leuk en echt goed georganiseerd"} {-0.10042207,0.046505682,0.070121504,-0.038102627,-0.090491645,0.024455007,0.045784526,0.046546463,-0.008060338,-0.011432437,0.03305312,-0.032363888,0.003028939,-0.04913939,-0.09927659,-0.08765924,-0.074881874,0.117242455,-0.067265965,-0.0451563,-0.029732024,-0.0010247321,0.049076904,0.0025954947,-0.034188725,-0.0069968705,0.03340292,-0.007299133,0.045050286,0.014925949,0.113726646,-0.11387283,0.013005132,0.047293413,-0.046953805,0.0123557495,0.025789188,-0.06683491,0.01650532,0.09624742,-0.068870105,-0.09071564,-0.05863625,-0.085937954,0.0141688455,0.038022168,-0.018772542,0.0028961715,-0.1371207,0.06396752,-0.039816253,-0.07762965,0.03354809,-0.028157884,-0.00063534034,-0.037014734,-0.014581766,-0.004162551,0.045822814,-0.037379757,0.063582115,-0.01059701,-0.043094393,0.0076846355,-0.093848765,-0.06617031,0.0058023464,-0.047629114,-0.018247215,0.089711204,0.04579921,-0.108651996,-0.008602884,-0.029178374,-0.04505817,0.009917236,-0.09183898,-0.07865525,0.0035703597,-0.06837412,0.08192231,0.02632332,-0.025947062,0.07163567,-0.043608326,-0.05800518,0.020524787,0.065218255,0.02561483,0.008543526,0.024556259,-0.08007454,-0.06611658,-0.007951567,0.033302326,0.0005199715,-0.02013814,0.008394768,-0.01233694,0.05408575,-0.051953588,-0.01909652,0.02750068,0.059505183,-0.057412017,-0.04486147,0.001040258,0.020155448,0.040291663,-0.022144537,0.016511125,-0.034785066,-0.0038138682,-0.024652468,0.032719117,-0.040886275,0.0017124048,-0.05869715,-0.017054375,0.05342383,0.005446726,0.009076239,0.032732815,0.036424026,-0.053314622,0.017376553,0.0065053506,1.2550072e-33,-0.021846853,-0.060902692,-0.059646267,-0.045889877,-0.10054128,0.04501098,-0.07938038,0.010832841,0.003140853,-0.014133178,1.3324821e-05,0.019197864,-0.029014926,-0.039880715,-0.06529161,0.07704254,0.05719142,0.07690699,-0.009380794,-0.08490292,0.028117824,0.016846107,0.08460571,-0.038032614,0.07101896,-0.07989671,0.027230378,-0.11110793,-0.014127047,-0.0019909185,0.08970991,-0.061413784,-0.0028289596,0.019661525,0.02695218,-0.03608586,0.044574957,-0.016503852,-0.023079457,-0.059257213,0.034076188,-0.0291052,0.057769563,-0.030114451,0.04980412,0.17154048,0.010918328,0.011487963,-0.0064303256,-0.00474859,0.06259695,0.022524467,0.013370924,-0.02615694,0.0050443546,0.03977444,-0.01987791,0.10198854,0.0023967181,0.01614839,-0.061361283,0.056284163,0.052763812,-0.090541855,0.009495343,-0.0662616,-0.038934194,-0.0033202772,-0.08955857,0.026531322,-0.041799817,-0.07193007,0.07860789,0.07100419,-0.06733989,0.043283947,-0.038193822,0.02805379,-0.09126215,-0.0063643265,-0.20451795,-0.06542724,-0.033466827,0.014792216,0.077894755,0.014593204,-0.030533766,-0.06310136,0.058005452,0.10147512,-0.059599333,-0.018666431,-0.020619959,-0.0009286365,0.029562978,-3.1181376e-33,-0.01960665,0.0524287,-0.091375135,0.0759498,0.010695307,0.05216777,-0.021807533,0.04503044,0.0141052455,-0.0019456056,0.05690477,-0.03669173,0.0919091,0.025741903,0.023735654,-0.016906552,0.1059981,0.021690425,0.05928358,0.022526585,-0.019999398,-0.044416424,-0.06407881,0.0826605,0.010691049,0.054722283,0.1367569,0.05633546,-0.11112165,0.026684102,0.09616667,-0.0027848876,-0.044980202,0.020556968,-0.012588094,0.057092384,0.0219949,0.0329468,-0.03559454,0.017523875,-0.0017677661,-0.023957917,0.029950503,0.0830706,0.038777266,-0.03278997,-0.07987478,0.008869964,0.018765595,-0.0038802596,0.029879365,0.045359116,0.0018746172,0.02397931,0.0123545155,0.023696873,-0.06790883,-0.059562296,-0.109102,-0.016236085,0.041037515,0.016092535,0.046495125,-0.007030442,0.052630413,-0.0017746774,-0.08651767,-0.046483513,0.0061514378,0.020498568,0.041714862,-0.014157918,0.01396012,-0.005141263,-0.013988818,0.009506742,0.03829697,-0.042014234,-0.025212789,-0.027420873,-0.040529504,-0.020210175,0.010596022,0.0137398485,0.034076143,0.00025915695,0.014698147,0.043443777,0.009793904,-0.04974075,0.0139861535,0.063652374,0.01110518,0.015263297,-0.008074296,-1.823733e-08,-0.0006849371,-0.010984566,0.03125957,0.039963532,-0.0127931405,-0.08217093,0.014592503,-0.032168645,-0.06713878,0.025292667,-0.06603212,0.055454236,-0.026201451,0.08062211,0.028597074,0.03949384,-0.057011135,0.035689518,-0.0005564599,-0.028946755,-0.014643768,-0.09101744,-0.0020254664,0.01458867,-0.059880566,-0.040921,0.116574466,-0.038354572,0.041308936,0.005993094,0.11073513,0.08653593,0.030921232,0.038639896,0.001618897,0.05951509,-0.011039039,0.043788876,-0.036199026,0.023224186,0.019106604,0.07259182,0.080693126,-0.03887423,-0.031155154,-0.020480432,6.967038e-05,0.070539184,0.04344164,0.043340433,-0.025805153,0.0038403822,0.0302596,0.07856687,0.101377375,0.0059707337,0.037428293,-0.03321404,-0.039371956,0.032771267,0.00521407,-0.032195237,0.03425741,-0.014342279} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.93748+00 2026-01-30 02:01:12.135368+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2147 google ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB 1 t 2150 Go Karts Mar Menor unknown Buen trazado pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables buen trazado pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables 4 2018-02-01 01:52:39.833374+00 es v5.1 O3.02 {O1.03} V- I2 CR-N {} {"E1.03": "Buen trazado", "O3.02": "pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables"} {-0.07189877,0.011028222,-0.061954908,-0.124704525,-0.06317424,-0.042387657,-0.039217368,0.08074629,-0.05281257,0.035235018,0.035280466,0.023374507,0.0018730896,0.0015460985,-0.00630969,-0.00056699367,-0.056082822,-0.01630118,0.0008076349,-0.03498808,0.004339925,-0.14851204,-0.08376213,0.0407574,-0.0038372322,0.0025981048,0.0034000783,-0.01895428,-0.049816463,-0.088273466,-0.088750035,0.06876573,0.052575298,0.017725004,0.008839593,0.02407442,0.021718262,-0.034795914,-0.06518344,0.031224126,-0.02271976,-0.044969626,0.019228596,-0.048348684,0.09124151,0.01792528,0.02408709,-0.0191734,-0.08544436,-0.052137204,-0.07363287,0.003754981,-0.046928715,0.0028790187,-0.047251552,0.042039376,0.022873107,-0.0020358602,0.0046222573,-0.00056793564,0.0810082,0.028836839,-0.12121726,0.02739067,0.07677163,-0.04495229,0.057063814,0.012774801,0.03437363,0.044160437,0.02897741,-0.048046406,-0.028159095,-0.03293971,0.032354854,0.056840215,-0.054942016,0.02711799,-0.003778249,-0.12297766,0.017361028,-0.011721267,-0.0520745,-0.0006366665,-0.042707086,0.049603052,-0.0039028868,0.015567565,0.09777052,-0.02147642,0.039032996,0.075894594,-0.041771494,-0.030444287,-0.011306588,0.03720415,0.046402197,-0.010138519,0.10984929,0.009977585,0.110001475,-0.026919525,0.04387901,-0.04100177,-0.09183642,0.031011427,0.01611228,0.017396582,0.0027430956,0.009083235,-0.07273988,-0.04109899,0.027575484,-0.078682356,-0.06543408,0.106266014,-0.006598789,-0.014599829,0.0009707268,-0.059265718,0.023888722,-0.024870751,0.002406925,-0.013150374,-0.048445754,-0.009351863,-0.006125106,6.253344e-33,-0.057153493,-0.0038198677,-0.063120075,0.024061887,-0.055763986,-0.0011319267,-0.04001378,-0.08835265,-0.05512646,0.0075299796,0.019075843,0.15433629,-0.037139766,0.009718862,0.09140323,-0.053901747,0.021185683,0.023060372,0.0314839,0.020260641,-0.018510161,0.03508562,-0.038139366,0.04012019,0.08651252,0.072158776,0.067178205,-0.006017694,-0.07833231,0.04541381,0.07793415,0.08071515,0.026777761,0.03537284,-0.0571337,-0.015708812,-0.029841227,-0.033413604,-0.028563948,-0.0045837206,0.05737011,-0.031707723,-0.059021056,0.029368525,-0.0004889679,-0.03491685,0.05908354,0.06747442,0.026618475,0.0014100381,-0.05839122,0.002994523,-0.06676871,-0.03714267,0.04076726,0.04216055,-0.06044082,-0.012719277,0.00019546729,0.0225597,-0.03930485,0.07012818,0.013149869,0.0030931786,-0.012031978,0.008736816,0.074564524,0.040281665,0.13551784,0.066808954,-0.072997525,-0.035600867,-0.06696006,0.075819075,0.039012883,-0.06360179,0.0069063567,0.063339174,-0.07403805,0.044297546,-0.12842365,0.018086797,0.0063327234,0.03316993,0.06601251,0.03775472,0.09797957,0.08162591,-0.07468494,0.035087872,0.010072268,0.064487234,0.028334795,0.09817288,0.038765907,-7.176717e-33,-0.029097771,-0.06454107,-0.027235853,0.09707951,0.017356487,-0.007919485,-0.06588159,-0.123684675,0.03566253,-0.0605803,-0.02762825,-0.052425705,0.08719155,0.022322489,-0.037333556,-0.051182553,-0.005057645,-0.08220709,-0.05013771,0.03771815,-0.00876685,0.02198527,-0.020823587,-0.0020523386,-0.029323306,-0.03671446,-0.09863007,-0.041110065,-0.048692286,0.04280394,0.021049652,0.018077789,-0.095401175,0.067379676,-0.07794226,0.00024012533,0.09038396,0.084284805,0.020082926,0.026213322,0.003906399,-0.0010061173,-0.012001296,-0.07335777,-0.056477424,0.02526843,0.01307315,-0.069698624,-0.08326801,-0.072662815,0.089859255,0.013962194,0.045763552,-0.083849646,0.039262015,0.0746266,-0.010087411,-0.008054407,-0.115998395,0.052724574,0.077265665,-0.03975948,0.035549663,-0.0144036235,0.016083995,0.013734817,0.024890587,-0.016332496,-0.015104113,0.015981575,0.07283863,0.03955205,-0.037600186,0.088001,0.020007102,-0.05252017,-0.06622545,0.0143945115,0.027601613,-0.029174406,-0.086548254,0.023059137,0.07381273,0.00814866,-0.06294712,-0.010815913,-0.06495389,0.003611409,0.061640818,0.0030346592,-0.003063395,0.012429732,-0.048584428,0.030249989,-0.06435877,-3.3978818e-08,-0.0058232984,0.019165542,-0.012890685,0.05647937,1.0008654e-06,0.0070395693,0.003521678,0.06886158,-0.014089291,0.046669107,-0.0074437554,-0.054482937,0.0042171017,0.059507538,-0.06351289,-0.011774585,0.06824735,0.113549486,-0.03260116,-0.038864095,0.056776278,0.012639767,0.009527654,-0.0011068056,-0.011899375,-0.008091398,-0.015175693,0.045697913,-0.057963368,0.04999747,-0.0012364005,-0.028846903,0.021757858,-0.04965796,0.046922337,0.028140547,0.021244,-0.008330571,-0.0140991695,-0.061916355,0.06411396,0.028491713,-0.06177563,0.02953467,0.005353198,-0.1153856,-0.06393121,-0.07748504,0.012759351,0.00401144,0.03605991,0.027190542,0.03267036,0.03041959,0.1155769,0.01536967,0.09786204,-0.026070181,-0.0049152025,0.025998274,-0.04196139,0.013193938,0.021513542,-0.0709845} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.947321+00 2026-01-30 02:01:12.138682+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2150 google ChZDSUhNMG9nS0VJQ0FnSUNsZ0w3U0RREAE 1 t 2153 Go Karts Mar Menor unknown Muí guai para echar un rato bueno a los car muí guai para echar un rato bueno a los car 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muí guai para echar un rato bueno a los car"} {-0.027529113,0.028095912,-0.0035022171,-0.075364955,-0.016922984,0.012958397,0.09308732,-0.013399023,0.017841203,-0.010091168,0.0932326,-0.02797233,-0.025951711,0.019190537,0.031299256,-0.004516869,-0.049272243,0.07017893,-0.037658896,0.04741102,0.07582492,-0.011675422,-0.07991984,0.10171255,-0.08103784,-0.042035062,0.0080416845,0.02607189,-0.014366949,-0.034062847,-0.02547181,0.11416316,0.0058287,-0.033017248,0.01203861,-0.06649014,-0.013565655,-0.084873684,0.027514193,0.009761803,-0.058545157,-0.037017517,-0.03551797,-0.043866746,-0.003922536,-0.08212578,0.05053168,0.08312798,0.055793807,-0.11030156,-0.030109236,0.027687024,-0.011230039,-0.052122526,-0.07482557,-0.010046922,-0.036650393,-0.02566057,0.06457382,0.037144054,-0.022995813,0.023813637,0.011835724,0.022146659,-0.016541276,-0.002861153,-0.0069116917,-0.057565123,-0.085995845,0.09167574,0.11110026,-0.09201331,0.030020785,0.014541568,-0.024962926,0.0015978034,-0.00056245516,0.033175256,-0.011226836,-0.04806691,0.00040509953,-0.008893787,-0.044746667,-0.03858298,0.03387001,0.014104425,0.0139976265,0.013079517,-0.029907098,0.02972834,-0.027822925,0.03143123,-0.073076546,-0.033847135,0.022925328,0.030909043,0.05897116,-0.09057372,-0.013749712,0.07837079,0.015155104,0.08231605,0.064734034,-0.016213669,-0.043609526,0.0007412668,0.055071995,-0.03943655,-0.016275547,-0.026026886,-0.023864986,-0.0061451034,-0.052704245,-0.025812626,-0.051855158,0.020105945,0.00757909,-0.0077591124,-0.06153805,-0.01525324,0.005467088,-0.05365954,-0.07073015,-0.0038427205,0.0085198255,-0.062753715,0.04821788,3.102307e-33,-0.012268629,-0.023778176,-0.036121316,0.04615452,0.0115092145,0.08895077,-0.06780264,0.03916137,0.018019129,0.030982949,-0.033568416,-0.0009923443,-0.04128291,0.01961483,0.07820462,0.07839044,-0.040628623,-0.045806903,0.13254802,-0.09083134,-0.058878865,-0.047377013,-0.022459457,-0.0029701183,-0.006064581,0.061329093,-0.025256908,-0.10360471,-0.014275056,0.07968876,0.031672414,0.06810403,-0.023011046,-0.016633125,-0.07210529,-0.08370449,-0.03748891,0.03766387,-0.0085403565,-0.024651818,0.07219097,0.044902604,-0.07537615,0.010970304,-0.009319881,-0.049183045,0.0399844,-0.00012020746,0.030986074,0.035706393,-0.08089865,-0.05229047,-5.516083e-05,-0.0644369,-0.035353515,-0.044006042,-0.0052313646,0.059820697,-0.07180099,-0.055135306,0.017375782,0.057939738,-0.01741385,-0.050211392,-0.05061084,0.041289754,-0.0073369583,0.026216991,0.11577011,0.0006788791,-0.0043814178,-0.06907236,0.01606641,-0.037181728,-0.018953979,0.02850452,-0.033255193,0.025675261,-0.022879472,0.008431047,-0.12805462,0.09461365,0.068553574,0.09695913,0.10212488,0.12287147,0.036675725,0.019035986,0.026024919,0.044098526,0.00018717998,0.0818916,0.042934354,-0.08726332,0.093842015,-2.9371058e-33,0.043085683,-0.025941854,0.047503114,0.045354463,0.009146408,-0.0484338,-0.10146265,-0.006365496,0.022593617,0.017690536,-0.10538476,-0.093689606,0.103922024,-0.034150176,0.104106456,0.076203085,0.08556925,-0.06123113,-0.0815215,-0.021928992,-0.032915864,-0.062631354,0.075096905,-0.013374375,0.01090272,-0.023047684,0.0465391,0.022152362,0.005702805,-0.039827205,0.03178752,-0.062786624,-0.052612074,0.0919379,-0.015997097,-0.020779034,0.048486322,0.040280312,-0.035298567,-0.009573067,-0.062678725,0.0070855785,0.028193207,0.04875531,0.0058628786,-0.031143237,0.041195206,-0.062246405,-0.030570848,-0.0059348247,0.06617991,-0.016949402,-0.0323877,-0.04738456,-0.0065806806,-0.065087855,0.038247596,-0.08656073,-0.08912098,-0.036916092,0.071508385,0.04798563,-0.08908018,0.0056849923,-0.007394308,-0.017540626,0.0010298734,0.0075354693,0.05517337,-0.009555068,0.11546442,-0.0012252197,-0.0807928,0.0724769,-0.1091084,-0.01765289,0.00022049891,0.028393729,0.0789511,-0.018699907,-0.026834572,-0.040923122,-0.04224066,-0.0053504203,0.027615879,0.0016589956,-0.08088415,0.007954117,0.06509366,0.0359136,0.07607239,0.07551755,-0.035932247,-0.012686282,-0.065918,-2.1031234e-08,-0.023614516,-0.055110678,-0.036790855,0.032835454,0.050173927,-0.017797051,-0.011616073,-0.011636588,-0.009066164,0.018741986,0.06296511,-0.05056521,0.043497536,0.07643853,-0.067858614,0.0799804,0.07141952,0.07681945,0.014656634,0.020582872,0.049024194,-0.012395105,-0.029384602,0.058023416,0.024173858,-0.050164986,-0.07329096,0.022445286,0.011846129,-0.037789322,0.022117564,-0.016273681,0.015586717,-0.03077986,0.0015367642,-0.0071130833,0.019107575,0.03103526,-0.043609753,-0.04466734,0.12752968,0.038342968,-0.0030895306,-0.016062956,0.059039555,-0.07356528,-0.002005497,-0.02421297,0.0034539204,0.055783074,-0.0140935695,-0.07108875,0.072103515,0.09923567,0.033445064,-0.031333167,0.019707711,-0.012275651,0.037592705,-0.0010550809,0.03473653,0.16755357,-0.026801838,0.01096954} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:41.97816+00 2026-01-30 02:01:12.153748+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2181 google ChZDSUhNMG9nS0VJQ0FnSURhNzVxTEZnEAE 1 t 2184 Go Karts Mar Menor unknown Volvimos después de 8 años y como sube la adrenalina. Nos encantó. volvimos después de 8 años y como sube la adrenalina. nos encantó. 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.05 {R4.03} V+ I3 CR-N {} {"O1.05": "Volvimos después de 8 años y como sube la adrenalina. Nos encantó."} {-0.029061597,0.0351294,0.040542614,0.057564463,-0.034881443,0.022155374,0.0033491945,0.08051172,0.0031365904,-0.036373626,0.04582753,-0.028780028,-0.053624604,-0.021662673,0.016952122,-0.009730455,-0.022275023,0.052840725,0.021707417,0.016707474,0.15016678,-0.00920647,-0.07698845,0.11032618,-0.03443108,0.01711968,-0.02256651,-0.002917354,-0.072290935,-0.031141018,-0.018466415,-0.031600364,0.10990383,-0.028795874,-0.0068911463,0.049728304,0.06119376,-0.05467983,-0.06277451,0.07055757,-0.10226394,-0.029065574,-0.052211035,-0.06669417,0.004005276,-0.0506378,-0.01090623,0.040252816,0.05305346,-0.020046707,-0.028171936,-0.02433031,-0.020962477,0.027687997,-0.034723718,-0.01106328,-0.04443733,-0.09673303,0.048340365,0.027422648,-0.050721515,0.10315485,-0.088088304,0.057254817,0.035104744,-0.050241906,0.045345865,-0.014903579,-0.060535293,0.106481515,0.11735838,-0.048821382,0.031032847,0.0037714213,-0.014086707,0.05446864,-0.096912086,-0.07518092,-0.011431242,-0.07014658,0.12505092,0.045624685,-0.0026965837,0.015700916,0.018057361,-0.057207774,-0.004802102,0.016194494,0.01784911,0.010063138,-0.044971984,0.028435282,-0.107909694,0.0010050433,-0.011706587,-0.003579949,0.0015224281,-0.009445086,0.024339871,0.008153047,0.05872676,0.025364263,-0.035961065,0.14754812,-0.0032485751,0.012216454,0.032574147,-0.042894844,0.025005836,0.030319948,-0.073581286,-0.016478993,-0.03493359,-0.064311765,-0.050897952,0.0036730755,-0.045737583,-0.023948502,-0.01980801,-0.042219426,0.0421404,0.028455248,0.016905595,-0.04728379,0.031414736,0.01426143,0.038801305,1.0134729e-33,0.04107064,-0.09586175,0.046952482,0.05116827,0.031499002,0.031035941,-0.030713892,-0.03590498,0.050470665,0.019777976,-0.10126192,0.021701533,-0.015275441,0.0687301,0.0130771035,-0.010988387,0.052853405,-0.0012045483,0.08810428,-0.01868125,-0.08326951,-0.018853799,-0.044933956,0.05117985,-0.07671091,0.03943285,-0.0219781,0.0095286,-0.0918794,0.04068944,-0.0039793234,0.032935865,-0.02212959,-0.022921743,0.025566867,-0.05085525,0.113616824,0.05603131,0.06794324,-0.020014167,0.070949614,0.012127017,0.038052555,-0.005657878,0.04314293,0.034607314,-0.007642338,-0.011877411,0.062507346,0.061614875,-0.007767824,-0.024952363,-0.018693233,-0.10287104,-0.03658551,0.07372492,-0.036300916,0.012179791,-0.033069663,-0.00032769432,-0.008635947,0.077077135,0.027828129,-0.11416608,-0.06001604,0.04052486,0.0058884644,-0.06261365,0.010371139,0.032599192,-0.102660164,0.0026946708,-0.005230485,0.036911767,0.012102448,0.014017122,-0.010349396,0.013264459,-0.049889404,-0.008481955,-0.071507394,-0.06780267,0.05429703,0.08079446,0.12003442,0.055244304,0.025238574,0.021557143,0.008559697,0.069520004,-0.0008842234,0.015940143,0.040613927,-0.018568113,0.037213866,-4.200609e-33,-0.00046057007,0.02046671,-0.0033528903,-2.8216264e-05,-0.026985234,0.011356711,-0.03986614,0.0434661,-0.0723378,-0.017872507,-0.08605211,-0.020463081,0.054933783,-0.06303276,-0.020600716,0.10354242,-0.047797002,-0.0044126175,-0.05234444,-0.04536157,-0.054294154,0.07541531,0.038061246,0.025627041,0.058208544,-0.11292928,0.029452344,0.021225017,-0.0030921903,-0.0040646493,0.04360498,-0.020949898,0.006188977,0.038914632,-0.03787876,0.030648427,0.035582684,-0.10721932,-0.024414623,0.030071924,-0.03808427,0.020204533,0.074555546,-0.02404253,0.02505434,0.05662024,0.015930275,-0.113410056,-0.1215591,0.028976785,0.076733254,-0.072129525,-0.05817616,0.0055510853,0.06322955,-0.0395772,-0.07420382,-0.06454146,-0.018607354,-0.022610834,0.08529669,0.022949638,-0.05073728,-0.0817012,0.053725936,0.04921104,-0.05613619,0.018714944,0.010530297,0.018695617,0.12751591,-0.041951578,-0.05274982,-0.014404183,-0.04232123,-0.10310358,-0.110733025,0.040436503,0.02069272,0.019907594,-0.07137307,0.012570275,0.012623705,-0.06842305,-0.09662126,-0.00016593162,0.039192136,0.052985076,-0.03747855,0.06744339,0.009052469,-0.0027092372,-0.059015024,0.008312919,0.0066856174,-2.4699329e-08,0.02536204,-0.05042102,0.0016948475,-0.023227373,0.03560988,-0.06934449,0.03569248,0.034035616,0.06217368,0.057384145,0.062277906,0.03112055,0.008517727,0.04416094,-0.07017094,-0.02664624,0.13154,0.098640166,-0.041975923,-0.06242173,0.07302407,0.017329993,-0.05516141,-0.048449773,0.07089818,-0.008632799,-0.02402716,0.021962548,-0.018584544,-0.0010989999,0.008228966,0.023743596,-0.08149025,-0.078689225,-0.009121725,-0.021617481,0.010373131,0.0098298825,-0.028786657,-0.023855012,0.0030493005,-0.05682427,-0.029887745,0.012153319,-0.011750701,-0.07155245,-0.0016894739,0.044585507,0.029782524,0.028660284,-0.025655646,0.017000688,0.06627339,0.006056581,0.012748726,-0.09139494,-0.0011216598,0.012430627,-0.099925905,-0.04431758,0.104310565,0.09074594,0.0035868404,-0.045001734} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.664958+00 2026-01-30 02:01:12.266228+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2153 google ChZDSUhNMG9nS0VJQ0FnTURvb2FyQ2JnEAE 1 t 2156 Go Karts Mar Menor unknown Sehr gepflegte Anlage sehr gepflegte anlage 5 2025-05-05 00:52:39.833374+00 de v5.1 E1.01 {} V+ I2 CR-N {} {"E1.01": "Sehr gepflegte Anlage"} {-0.00663886,0.080990665,0.0171397,-0.05946005,-0.03634449,0.05485789,0.093355395,0.04692994,-0.0077466117,0.0052855313,0.050798904,-0.035878878,0.007705508,0.0152963,-0.020688822,-0.087773725,0.03246157,0.005884947,0.02133234,0.021486647,-0.022393703,0.010597153,-0.05297928,-0.057773508,0.018091077,-0.046946883,-0.064849526,-0.113836795,0.07458393,-0.016287474,0.06134548,-0.042335786,0.0012505774,0.052704513,0.066411555,0.0011698921,0.030491658,-0.036221173,0.005020499,0.15028052,-0.060564645,-0.024755558,-0.089051574,-0.07096985,0.064168915,-0.04785216,0.026089452,-0.047393445,-0.072348274,0.045267202,-0.15734611,-0.041724388,0.008731033,-0.05540155,-0.033274278,-0.030789584,0.039559666,-0.0107232025,-0.062916845,-0.022507787,-0.014071741,-0.03000083,-0.07376351,0.029811723,0.03908713,-0.016973788,0.012485159,0.014944592,-0.07327602,0.042588644,0.02425836,-0.047437247,0.09454956,0.027531078,0.029468741,-0.062928595,-0.06219145,0.003004731,0.042663567,-0.06984459,0.06417047,0.026994541,-0.0460916,0.034697816,0.010166949,0.024770305,0.020414818,-0.0101624755,0.0074353977,-0.019336438,-0.035758145,-0.076620474,-0.10790943,0.029351583,-0.035331294,0.03322625,-0.059244957,-0.03255524,0.03205921,0.102683306,-0.044463344,0.029405067,0.055210803,0.022886913,-0.10657185,-0.024857162,-0.11342692,0.06871293,0.046139438,0.022087332,-0.040405005,-0.045500226,-0.003348116,0.0062744836,0.07766115,0.035676274,0.035969485,-0.06806856,-0.028815422,-0.03778778,0.03884031,-0.06077896,0.050004147,-0.0035082127,-0.0355352,-0.057521597,0.018419288,1.0663042e-33,0.03825041,-0.0018649907,0.018922387,0.041828863,-0.04123924,0.034996726,-0.090828285,0.0038547285,-0.036643576,0.008481678,0.05728488,0.0035033189,-0.022481102,0.04275421,-0.012277023,0.027845016,-0.086702235,0.016076282,0.053965658,-0.020521088,0.02988656,0.0060067275,0.054760523,-0.025322465,0.008271036,-0.07444805,0.035159048,-0.08695356,-0.04000067,0.07758349,0.112665854,-0.023632023,-0.0093029,-0.04965444,0.046458542,-0.05302939,-0.0019595681,0.022306986,0.0447334,-0.08375533,-0.004732639,0.003903948,0.06623784,-0.034119785,0.08430931,0.04486999,0.08089848,-0.024837099,0.049187396,-0.022030355,0.04448794,0.007347215,-0.030400155,-0.03237067,-0.0008552122,0.005418808,-0.08800843,0.05780996,0.011605597,-0.038232192,0.07460702,-0.0029470955,-0.0872863,-0.039600328,0.009967806,-0.017108392,-0.05913239,-0.04999963,0.039717417,-0.0039304947,-0.09702785,-0.050158486,0.052552287,0.011556551,-0.075884335,0.04124913,-0.012862898,0.020108989,-0.06542246,0.0030101805,-0.08855677,0.040981162,-0.013414959,-0.031424757,0.06764007,-0.03968172,0.0056902855,-0.041477975,0.07274566,0.021415742,0.048359226,-0.0049873954,0.0326997,0.0031704104,-0.022838064,-1.8867397e-33,-0.0073818387,-0.045300927,-0.12981455,0.056850325,0.05046695,-0.025285613,0.037534963,0.13030641,-0.064386904,0.09919053,0.0501668,-0.005445836,0.06952318,0.03481763,-0.006055712,-0.005299238,0.13973157,-0.026785316,-0.0291127,0.011831588,0.04421896,0.04214774,0.036883067,0.040541623,-0.0023976227,0.092056856,-0.029955367,-0.037189655,-0.07187581,0.032077804,-0.010340781,-0.0010950146,-0.02132777,-0.025205346,-0.026314883,-0.019316796,0.028235758,0.061065543,-0.05062344,0.005846992,-0.024706312,0.011622656,0.022991037,0.020068133,0.0895458,-0.0031497565,-0.11491475,0.0038150004,-0.003992869,-0.0051812846,-0.03438057,0.040445592,0.08080882,-0.14823705,0.03909486,-0.0075507183,-0.025117664,-0.0663898,-0.062460996,0.05720009,0.06811671,0.15152575,0.006134978,0.022445265,0.11404614,-0.041045234,-0.0660286,0.016276533,0.0065720985,0.033821806,0.02074199,0.06277507,0.0024783737,-0.022547022,-0.024648493,-0.067940734,0.011318277,0.0586021,3.2651114e-05,0.006463159,-0.07058125,-0.009308746,-0.028485863,-0.031294752,-0.0136013925,0.033917576,-0.0056423596,0.010818592,0.09304486,-0.038385123,0.0045841085,0.0023981612,-0.01334405,-0.006664676,0.041662455,-1.88155e-08,-0.047919884,-0.07332226,0.012432024,-0.048325658,-0.03929777,-0.109975025,0.05647542,-0.009160176,-0.030726664,-0.029321875,0.013283478,0.023104,-0.035337385,0.045722842,0.005688833,-0.00039450146,0.03368183,0.024974529,-0.019493233,-0.0853662,0.0954934,-0.07971267,0.000395487,0.09472465,-0.029788963,-0.004431905,-0.060087617,-0.10927361,-0.0062312507,0.0035630758,-0.0260683,0.05107234,0.03730496,0.010647629,-0.030603671,-0.008470114,-0.00275086,0.011560714,-0.056016114,0.01249886,0.06601937,0.022385865,0.20156354,0.008767046,0.045580056,-0.0073469025,0.026656972,-0.0038428155,0.06550848,0.041027177,-0.06709315,-0.0421507,0.014740481,0.026774783,-0.024122123,-0.050308548,0.03430821,-0.029296005,-0.046983004,-0.02165745,0.0850585,0.025816087,0.017552972,0.05370157} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:42.006402+00 2026-01-30 02:01:12.162772+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2154 google ChZDSUhNMG9nS0VJQ0FnSUNEdXVXdk5BEAE 1 t 2157 Go Karts Mar Menor unknown Ge ido varias veces y me lo paso pipa ge ido varias veces y me lo paso pipa 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {R4.03} V+ I3 CR-N {} {"V4.03": "Ge ido varias veces y me lo paso pipa"} {0.013217285,0.016259547,0.017469743,0.01673388,-0.0077310163,0.012566524,0.11601758,0.059318338,0.01935512,0.034482226,0.016458293,0.03582316,-0.04818576,-0.008523778,0.0042313756,0.015621997,-0.029608326,0.00678916,-0.025422204,-0.05026642,0.069722205,6.451844e-06,-0.093693845,0.069461174,-0.052774053,-0.00551064,0.07469561,0.02175924,-0.03748113,-0.05255969,-0.037250407,0.08625941,0.036689706,-0.037052188,0.019065063,-0.036900144,0.11316464,-0.07488475,0.011320017,0.011110096,-0.026649853,-0.046258576,-0.014323961,-0.04762588,0.030810622,-0.071889214,0.03920148,0.025377404,0.043283604,0.008552394,-0.047287624,-0.027275415,0.0002272264,-0.03087334,-0.055151068,0.012435771,0.0045898287,-0.015475052,0.046859093,0.036654554,-0.044439845,0.031374846,-0.015684562,0.020099532,-0.04830297,-0.012496656,0.013374739,0.021219123,-0.10359644,-0.0072176694,0.11946945,-0.03686161,-0.046695728,0.05971455,-0.004454636,0.048261598,0.043512702,-0.00038120858,-0.00026670835,-0.030648427,-0.018897964,0.014979095,0.006289042,-0.007510897,-0.06041646,0.007003671,-0.019045359,0.018081892,0.029018374,-0.029271062,0.036420565,0.00057383475,-0.07210359,0.030311586,0.09521304,0.009695765,0.09705588,-0.087325685,0.03415952,0.08335354,0.06741144,0.04982029,0.061095253,0.031246884,-0.028965352,0.080085315,0.036170073,-0.046821762,-0.008613854,-0.0039246003,-0.035170097,-0.026001867,-0.03388078,-0.0057288124,-0.067240514,-0.042089142,0.04911666,0.043667994,-0.04794705,-0.0789298,0.042466555,-0.012515402,-0.085240096,0.0073884316,0.00039675098,-0.07079139,0.023454515,2.6929466e-33,-0.07110507,-0.0692041,-0.0056719054,0.016619073,0.045368258,0.022181794,0.016085804,-0.06606853,-0.08217709,0.033380874,-0.048071325,0.034192204,-0.01815409,-0.013381543,-0.01510798,0.11306832,0.012579953,0.023800833,0.03154091,0.0060815495,-0.0548573,-0.037569545,0.022595014,-0.038555197,-0.024127241,0.07324608,0.016996862,-0.15560603,-0.07948133,0.060685016,0.018243661,0.05017579,0.040188923,-0.0046852366,-0.0760386,-0.066639155,-0.0037005313,0.0121296365,-0.031002797,-0.032296237,0.021378385,0.06788705,0.023566592,0.04012588,-0.030010452,-0.04945387,0.052881543,0.010112479,-0.011402514,0.010025709,-0.023165194,-0.03468954,-0.060109846,-0.04429294,0.06888288,-0.06025429,-0.07573709,0.08352123,0.038387846,-0.026255446,0.05892515,0.08427725,-0.035953484,-0.011769458,0.040252473,-0.073763534,-0.002791724,0.047460664,0.099885784,0.07692749,-0.04925297,0.0204662,-0.06567079,0.012027248,-0.028735643,-0.047676597,0.030161325,0.018841542,0.009833713,0.01693033,-0.09312013,0.0689027,0.044370197,0.027746972,0.1217985,0.12616137,0.01813156,0.0071702744,-0.11660858,0.06270647,0.028376166,0.11400728,0.009781896,-0.021605685,0.0035762647,-3.491003e-33,-0.055826716,-0.016426604,-0.0541347,0.05595602,-0.018291289,-0.067557946,-0.012796996,-0.041723333,0.05490865,-0.06598065,-0.078425474,-0.06928849,0.11787446,0.005423872,0.038943764,0.013485704,0.018139038,-0.04715986,-0.07717645,-0.028776653,-0.06744245,0.0339329,0.04221404,-0.027754838,-0.018600129,-0.10390721,0.013123588,0.025717173,-0.11618198,-0.0038663896,0.07349297,-0.04462369,-0.056419086,0.03800357,0.0030926992,-0.03419707,-0.023241999,0.026698025,0.09294909,0.015942937,-0.020466616,0.082929395,-0.011428502,-0.019612953,-0.030562736,0.059155628,0.03346692,-0.028886206,0.022661231,-0.037331585,0.038368657,-0.049237855,-0.07386574,0.0040528337,0.09117602,-0.059749424,-0.012597814,-0.05981641,-0.14797927,-0.0076928507,0.077218965,0.05743214,-0.0532108,0.0054229624,0.045053713,0.054534093,-0.035660535,0.017653367,-0.020790972,0.014240592,0.15666018,0.024226429,-0.08976268,0.020943291,-0.01862242,-0.043559812,-0.06114481,0.07159997,0.0331572,0.050564624,0.017780943,-0.0024977524,-0.05844589,-0.0275291,0.02190002,0.018598491,-0.019239685,0.08325416,0.066884145,0.031286344,0.05612938,0.03423336,-0.069872126,-0.020567328,0.0030063528,-2.1462805e-08,-0.020522146,-0.013710338,-0.07096668,0.05386329,-0.005721512,-0.011177463,-0.039336506,0.026554488,0.009132961,0.010223184,0.05336579,-0.004797459,0.0053406977,-0.019923234,-0.0064344252,0.10075019,0.03040218,0.10543119,0.012601523,-0.042767856,0.06937302,-0.052844662,-0.03733628,-0.019014351,-0.01775122,-0.041199323,-0.00046245975,-0.047450304,0.030862393,-0.12520057,-0.04224551,-0.019711858,-0.063659355,-0.07321621,0.017675195,-0.037449554,-0.04988647,0.021624923,0.017440328,-0.042972375,0.09090877,-0.007693071,0.0017566367,-0.04337164,-0.060116228,-0.007138183,-0.00015259227,-0.027208975,-0.008809555,0.009490261,-0.06402117,-0.058009226,0.14573476,0.06691221,0.07329832,0.018989062,0.08585934,0.000372283,-0.07119682,0.002695823,0.056743808,0.10414493,0.0022391432,-0.08141433} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:42.015791+00 2026-01-30 02:01:12.166541+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2107 google ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE 1 t 2110 Go Karts Mar Menor unknown Los karts van todos muy igualados y el trato fue muy bueno por parte del personal. Un 10. los karts van todos muy igualados y el trato fue muy bueno por parte del personal. un 10. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.04 {} V+ I2 CR-N {} {"O1.04": "Los karts van todos muy igualados", "P1.02": "el trato fue muy bueno por parte del personal. Un 10."} {-0.025922146,0.015016758,0.047763914,-0.037435625,-0.0016733033,0.0267532,0.10027433,0.045341194,-0.013388758,0.021468936,0.062612675,0.00839542,-0.0841039,0.0057440205,0.0671785,0.00982349,-0.055892125,0.036281887,-0.02643066,-0.012349657,0.074529804,-0.019452648,-0.0105523085,0.09447348,-0.07618845,-0.09796147,0.013494093,0.017206939,-0.04455596,-0.007625686,-0.016697133,0.08579943,0.028663637,0.049459167,0.010316484,-0.09595469,0.0019589306,-0.03721613,-0.03589919,0.08560768,-0.08888018,-0.054386422,-0.021292571,-0.044884477,-0.005387146,-0.08552914,-0.010173297,0.05577622,-0.0056508193,0.019924957,-0.015121409,-0.024338856,0.0022561923,-0.00082377956,0.004092695,-0.0038738572,-0.07456853,-0.015306066,0.10596788,0.030633891,0.03516496,0.06422665,-0.09588874,0.043492828,-0.040174525,-0.023742521,0.03568192,-0.016676089,-0.09158449,0.08676603,0.16010867,-0.078922756,-0.02194717,0.046945695,-0.022001812,0.01829054,0.010922754,-0.053272225,-0.10687189,-0.003987403,-0.026655974,0.0073266434,0.0397802,-0.12820406,-0.070182435,-0.050511084,-0.0052671246,0.069631524,-0.05730132,0.011574103,-0.035105303,0.06142122,0.01285824,-0.015574219,0.02094468,0.049324624,0.05209091,-0.01092342,0.0019017329,0.031362854,0.10690642,0.04276909,0.111702226,0.10153907,-0.005660533,0.028828615,0.057902534,-0.042196132,-0.026382927,-0.04023506,0.0029498723,-0.0056651575,-0.066553645,-0.019770768,-0.019866752,-0.09243572,0.018981399,0.017836604,0.03139443,0.012953918,0.0037424602,0.007967679,-0.054159336,0.0029718846,-0.056116242,-0.0005492563,0.043086056,4.849727e-33,-0.047201026,-0.02518153,-0.030641118,0.032172024,0.020001877,-0.03198343,-0.08666104,0.012644321,-0.10660846,-0.012860798,-0.039871577,0.034526993,-0.030079424,0.009474968,0.06616623,0.09691618,-0.052313957,0.007914597,0.062025473,0.022711132,-0.07037787,-0.02488926,-0.017291345,0.026739987,-0.04777555,0.038177993,-0.06675895,-0.046691857,-0.06305721,0.026885267,-0.030724097,0.09233057,0.0075087254,-0.010654397,-0.066029266,-0.068915896,0.08279537,0.020796232,-0.018215656,-0.031161658,0.04537954,-0.04011317,-0.020915497,0.03848843,0.003576705,0.0065003787,0.049811,0.04311769,0.036404606,-0.0011899048,-0.075215004,-0.0167542,-0.10575862,-0.046295553,0.011874852,-0.0044878735,0.006246254,0.0698013,-0.023426306,-0.036018554,0.12970911,-0.0090239,0.012132218,-0.04006404,-0.043827888,0.003395721,0.08695955,0.036715243,0.13391012,0.00883422,-0.062715165,-0.06081386,0.01174758,-0.0065786676,0.11921425,0.037666816,0.028173309,-0.022198306,-0.02588522,0.032682814,-0.04251948,0.033972193,-0.0060559856,0.06740736,0.059677865,0.05939702,-0.01363149,-0.02942341,-0.014159453,0.088604644,-0.076065324,0.015356903,0.058660924,-0.022914972,0.0033559636,-6.232137e-33,-0.030742912,-0.0044878903,0.026028194,0.050847054,-0.038718306,0.013736995,0.025640992,-0.013895814,0.015220938,-0.017107088,-0.047283698,-0.13367817,0.089376934,-0.072937705,0.0044275154,0.090134874,0.025995748,-0.034006305,-0.07876456,-0.04291752,0.012511421,0.06102872,0.0057503683,0.004653954,-0.010956427,-0.05188778,0.020122834,-0.0065876967,-0.012993935,0.010540797,0.012402364,-0.05552139,0.008582099,0.040838614,-0.01633427,-0.0027849136,0.003998342,0.027708655,-0.0016408846,0.042756006,-0.0047996645,0.050776467,-0.07157741,-0.010918645,-0.019662552,0.047572263,-0.01750572,-0.126285,-0.0526112,-0.054409593,0.09569877,0.0001750887,-0.024732595,-0.0066458904,-0.008845371,-0.011469546,0.030499298,-0.04385214,-0.04809365,-0.0061013703,-0.03496467,0.021010663,-0.02670965,-0.06664866,0.051324755,0.00998645,-0.037293904,0.036813356,-0.012678953,-0.017036585,0.056651272,-0.036555286,-0.054865036,0.008116419,-0.10526102,-0.10638528,-0.04667847,-0.012092372,0.043886226,0.03419194,0.026726054,-0.028654775,-0.035934296,-0.046682853,0.05685102,-0.044392582,-0.028274568,0.042073995,0.052322008,0.054134097,0.13338749,0.064629085,-0.062544525,-0.060864236,-0.08737967,-2.7871884e-08,0.06339401,-0.055076644,-0.05584256,-0.003029013,0.072833665,-0.03689005,-0.030250696,0.040102076,0.053838618,0.09658876,-0.033594184,-0.03756718,-0.016224317,0.11499278,-0.027755737,0.045307696,0.082318224,0.0628619,0.035834335,-0.023783833,0.004305662,0.025143875,-0.03697111,0.007855547,-0.041318286,0.04656674,-0.038864277,0.031713605,0.038693618,-0.009037815,-0.020434428,0.023370314,-0.12395762,-0.028286679,-0.017622508,0.0039936714,-0.0074120285,-0.012245092,-0.02758224,-0.0075723003,0.07209791,0.00041470045,-0.052822564,0.016465712,-0.038832657,-0.09769052,-0.06400612,0.024612367,-0.032041352,0.07867917,-0.0635827,-0.024225937,0.028174294,0.03960104,0.052173495,-0.0638481,0.066727474,-0.02764298,-0.013778935,0.022683464,0.073721685,0.1510401,-0.004150874,-0.11576592} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.287579+00 2026-01-30 02:01:11.987875+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2111 google ChdDSUhNMG9nS0VJQ0FnSUQ0aVBPSnFRRRAB 1 t 2114 Go Karts Mar Menor unknown Me encanto el circuito, es muy rápido y divertido. Quiero volver me encanto el circuito, es muy rápido y divertido. quiero volver 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {E1.04} V+ I3 CR-N {} {"O1.02": "Me encanto el circuito, es muy rápido y divertido. Quiero volver"} {-0.013385411,0.029548177,0.03824245,-0.06938036,-0.032342196,-0.04973822,0.041796334,0.061596427,0.020211952,0.004436318,0.0888291,-0.05711898,-0.066107996,0.018793253,-0.002968098,0.00018449739,-0.007102892,0.031636488,0.016089283,0.015307805,0.106334195,0.020638317,-0.09466533,0.08369691,-0.080498755,-0.004677145,0.018779792,0.06709465,-0.046207756,-0.12118914,-0.062134877,0.085845605,0.009947319,0.018690884,-0.08987355,0.008345876,-0.0011497809,-0.012115074,0.02892641,0.06346176,-0.103129335,-0.042570118,0.03540642,-0.027593795,0.04397314,-0.0024802187,0.013488783,0.031435497,0.058263846,-0.08730799,-0.044744838,-0.035679106,0.034330823,0.04959859,-0.02942517,0.015709955,0.0007575864,0.025752068,0.09991158,0.032758966,-0.034651738,0.018108698,-0.0029109216,0.029457612,-0.0311405,-0.042497054,0.059527267,0.03144739,-0.04700281,0.019967688,0.11160366,-0.014358533,0.02487146,-0.063547894,0.0036525258,0.01838624,0.008292681,0.040142715,-0.022432934,-0.017933222,0.02565264,-0.046608903,-0.08708233,-0.033339944,0.026484102,0.0021023413,-0.03088466,0.021709744,0.005702092,-0.07722375,0.0048057497,0.001411866,-0.0054286546,-0.028999161,0.0284882,0.03722976,0.009997598,-0.13113697,-0.029132951,0.05782914,0.07729396,0.0148224775,0.027230848,0.014967789,-0.010240603,0.037063003,0.06932618,0.045509987,-0.007145292,-0.014045396,-0.0356574,0.03427301,-0.028884698,-0.0050284434,-0.05806274,0.0023430167,-0.0123547055,-0.032401264,0.019472271,-0.05706129,0.025527107,0.037865713,-0.1202205,-0.011476688,0.008902352,-0.034780674,0.10412702,3.5038757e-33,-0.034875322,-0.033377536,-0.062174343,0.039238375,0.0024044786,0.0057048416,-0.040936295,0.005773445,-0.05075393,-0.0546607,-0.03779545,0.0005298828,-0.00028848773,0.09960261,-0.033825193,-0.054066494,0.04229345,-0.03128476,0.021709545,0.020922855,0.008039252,-0.09167876,-0.036938686,0.051638946,-0.017882086,0.06287956,-0.010985865,-0.07686392,-0.048619688,0.042202324,-0.06099901,0.05597417,0.02540388,0.0003291936,-0.021701226,0.017161617,0.06667143,0.03134314,0.029385466,-0.010395007,0.016774604,0.06970788,-0.08912175,0.043135207,0.0138709,-0.024421422,0.0070667705,0.08125871,0.11667461,0.055782303,-0.06229457,-0.0857553,-0.05689848,-0.06697871,0.016573422,0.045587026,-0.026080547,0.09576748,0.051712144,-0.007138651,-0.017177802,0.09699968,-0.023134924,-0.011247194,-0.01480745,0.028172396,0.010338953,-0.04009005,0.12199044,0.022215998,-0.14064758,-0.04560967,-0.01949982,-0.028972812,-0.012087535,-0.0030471268,-0.03255379,0.011098977,0.031306617,-0.02475816,-0.027819363,-0.03189929,0.042415194,0.034741387,0.1229675,0.08401691,0.060853567,0.08352081,-0.0043521817,0.07669482,2.7070839e-05,0.09425318,0.044428844,-0.07186748,0.043579552,-3.2908288e-33,0.012139466,-0.03497661,0.04916605,0.06970305,0.02657214,0.03992835,-0.056931086,-0.03460844,-0.07927233,-0.07544326,-0.07233055,-0.045572553,0.04173723,-0.059679862,-0.013736078,0.02707838,0.016551979,-0.055922247,-0.036612682,0.027750745,-0.031212624,0.07159702,0.02644131,-0.045688797,-0.068597674,-0.008290443,-0.0209443,0.06360317,-0.054161713,0.0318073,-0.033336,-0.0040701116,-0.039730776,0.04419954,-0.0036007382,0.06798577,-0.0049945405,0.06015567,0.002164153,0.00015477848,-0.062090106,0.040465772,0.0046828133,0.0013265634,-0.090333715,0.078050755,0.028159441,-0.08156164,-0.04291329,0.024786586,0.003572201,-0.04666868,-0.0018091237,-0.012540406,0.03845643,-0.07340677,-0.036033243,-0.12199419,-0.08769106,-0.01752174,0.052880473,-0.022697385,-0.04132017,-0.09639825,0.11115696,0.023099381,-0.051561285,0.02636445,0.09803984,0.015855575,0.14211707,0.05204449,0.024589732,-0.09401834,-0.014312568,-0.054611083,-0.14060576,0.023546908,-0.020829484,0.010019141,0.02805287,0.029732991,-0.019621992,-0.05475491,-0.081790894,-0.037506603,-0.06770802,0.06406135,0.03561315,-0.0365866,0.003000599,0.014098455,-0.0549247,0.006906713,0.048667785,-2.4594893e-08,0.010547825,-0.012425451,-0.014516755,0.0070855715,0.09160335,-0.03685131,-0.019496894,0.042852364,-0.025037933,0.028311837,0.04780781,-0.020179762,0.06990468,0.03538121,0.042327896,0.03254055,0.07243229,0.12409645,-0.030830085,0.03621618,0.099782154,-0.010978457,0.0014682604,-0.017766587,0.067129396,0.0434451,0.0052320794,0.03619517,-0.062123995,-0.07004612,-0.0459561,-0.027216645,-0.053960368,-0.04507179,0.00092271145,0.064653315,-0.016247738,0.042879242,0.026006572,-0.069741674,0.030432446,-0.03183602,-0.08811315,0.011747058,-0.08738512,-0.0706375,0.021932352,0.022704048,-0.0019630336,0.020281909,-0.055384863,-0.02199578,0.060733277,0.06803876,0.03574057,-0.000137754,0.010197331,-0.03205581,-0.10972705,-0.020166118,0.064536124,0.10740286,0.0076808617,-0.07987997} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.35552+00 2026-01-30 02:01:11.999187+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2112 google ChdDSUhNMG9nS0VJQ0FnSUNYbDdEUmpRRRAB 1 t 2115 Go Karts Mar Menor unknown Buen sitio para ir con niños buen sitio para ir con niños 5 2025-01-30 01:52:39.833374+00 es v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Buen sitio para ir con niños"} {-0.04711611,0.06249404,0.012277374,0.03953026,-0.008300079,0.058095228,0.024523906,0.028221471,0.007377808,0.022427794,0.025729997,-0.075123996,-0.07001677,-0.012537022,0.0012210271,-0.012712824,-0.08530747,0.10991363,0.0578556,-0.0023862135,-0.020173568,0.041041166,-0.0684778,0.06357557,-0.006327642,0.0368685,0.0829666,0.038276277,0.005980556,-0.015612584,-0.03827785,0.068128824,0.06507834,-0.035393562,-0.002570992,0.03008614,0.05146648,-0.09128286,0.025605423,-0.005740445,-0.05840386,-0.035766426,0.0035804298,-0.07584756,0.013949697,-0.038466867,0.002926373,0.088747606,0.05099711,0.026837349,-0.061164357,-0.05947139,-0.031279355,0.039151803,-0.0576289,0.03930905,-0.02010879,-0.017882794,0.039891686,0.009385276,-0.013209101,0.011293828,-0.063998185,-0.01874804,0.044346422,0.058865868,-0.027790004,-0.009365264,-0.036287613,0.041997574,0.05639689,0.0001821935,0.0020144943,0.00027420963,-0.032685027,-0.03374198,-0.0022961465,-0.031687655,-0.01925886,-0.09372551,0.03950935,-0.00834667,-0.0064653493,-0.059305277,-0.0057626334,0.036458287,0.018162847,-0.0023906145,0.021805175,-0.004758752,-0.017339844,-0.033806067,-0.027401388,0.021896103,-0.035185575,0.039060988,-0.03241321,-0.052862618,0.07693122,0.0007537881,0.04338963,0.02973864,0.055627584,0.04400609,-0.107200675,-0.0050810934,0.019777218,-0.10365892,0.020814845,0.018082054,-0.08261122,-0.03372888,0.006079356,-0.02274161,-0.06657983,-0.0108780535,-0.00015912294,-0.106093265,-0.033012632,-0.08709964,0.04156828,0.01840886,-0.05891996,-0.017475056,0.024951382,-0.062786326,0.04606108,1.4655705e-33,0.016450051,-0.037873916,0.0123289935,0.050113816,-0.01269032,0.10195174,-0.026280772,-0.044952054,-0.03564121,-0.07116891,-0.096514784,-0.04000482,0.026013674,-0.08619871,0.09743699,0.048527014,0.03678348,0.014026654,0.048054904,0.07651323,-0.05694928,0.0007563672,-0.009543161,0.010269886,0.014089483,0.011007933,0.01950993,-0.050192833,-0.06694911,0.053352274,0.116832145,-0.026822181,-0.04606493,0.012312923,-0.023428123,-0.0516199,-0.017388612,0.05443496,0.011449658,0.057120416,-0.012111472,0.035865117,5.0256065e-05,0.06616059,0.06071165,-0.04595539,0.08212437,0.011546986,0.024316575,0.019877886,-0.08245709,-0.038093597,-0.06581685,-0.11211189,0.072979905,0.011808742,-0.039022792,0.09300664,-0.06874573,-0.02557933,0.15479986,-0.063278936,0.03588619,-0.061206933,-0.0065871794,-0.027526118,0.0747757,0.041253828,0.13736276,-0.07066884,-0.045261428,-0.025791794,-0.018955946,-0.04626215,-0.055569164,0.009913773,0.07243126,-0.002055632,0.023621261,0.017117947,-0.11951197,-0.015662031,0.03350704,0.103941016,0.032969728,-0.030048044,-0.0461192,0.07018822,-0.014875719,0.0066498704,0.011433449,0.022934355,0.03801861,-0.07009015,0.054979634,-9.9741265e-34,0.044054702,0.02027011,-0.046079125,0.08501437,-0.07842228,-0.05436818,-0.036229055,0.0661789,-0.02141081,-0.030468516,-0.02678101,-0.14128809,0.11094935,-0.06150513,-0.053568896,0.11350473,0.029508358,0.020865954,-0.058425084,-0.04295544,0.020058677,0.031595033,0.03288969,-0.030335153,-0.0077369288,-0.02660763,0.046152763,0.008417293,-0.12640141,0.061122824,0.052786503,-0.05522131,-0.08979876,0.095247164,0.016844332,0.049157105,0.07762948,0.015275128,-0.013874,0.005003049,0.008927646,0.022462573,0.012368935,-0.03219602,-0.03922424,-0.016364714,0.03716919,-0.029250547,0.013150677,-0.051114332,0.053549208,-0.027660944,-0.039848365,-0.04038583,-0.005104684,-0.06675123,-0.020981131,-0.016993651,-0.073341966,-0.024692263,0.06855031,0.0065349485,-0.00494978,0.030318322,0.0006826155,-0.0260323,-0.07766287,0.039424233,0.10188401,0.0841206,0.027569951,-0.068561114,0.0008398473,0.095328026,-0.09557864,0.027878145,-0.02895867,0.012432468,0.014574164,0.02448797,-0.09197205,-0.04936012,-0.047122393,-0.015901295,-0.0424012,0.012022163,-0.031298473,-0.02143595,0.033552825,0.040941738,0.010614579,0.06639914,-0.0011181714,-0.024502816,-0.041329104,-1.6225535e-08,0.06480182,-0.07855974,-0.046037756,0.06762192,0.014631257,-0.02721587,-0.0202179,-0.055759527,0.030051926,0.087489575,-0.08786335,0.0075123976,0.05454095,0.009751986,0.04012987,0.054207474,0.09382626,0.040132683,-0.02906159,-0.05586807,0.107158035,-0.019544318,-0.041952565,0.034177918,0.022292491,-0.015283445,0.0059778914,0.053348444,0.07169152,-0.025828384,0.032687653,0.028629819,-0.028347692,-0.09575022,-0.017950797,0.03115361,-0.028362159,0.036797326,-0.06207829,0.03187598,0.110622734,0.07788954,0.0006665576,0.021242032,0.009905766,-0.05806514,0.056335643,0.022753706,-0.0067098867,-0.0009499208,-0.0479898,-0.054361887,0.08043462,0.066036314,0.046441052,0.06133356,0.06315894,-0.018268935,0.08043498,0.03448548,-0.005181695,0.11341431,-0.08961878,-0.032812286} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.372856+00 2026-01-30 02:01:12.001819+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2113 google ChZDSUhNMG9nS0VJQ0FnSUNxM0x2S1pnEAE 1 t 2116 Go Karts Mar Menor unknown Muy divertido y buena atención, un sitio de diez muy divertido y buena atención, un sitio de diez 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.04 {P3.01} V+ I3 CR-N {} {"E1.04": "Muy divertido y buena atención, un sitio de diez"} {-0.0032018286,0.016929053,0.04934909,-0.051054202,-0.02061353,-0.018821487,0.09286871,0.028621646,0.035688117,0.009756424,0.061970644,-0.013676474,-0.032496,-0.03292508,0.020762186,-0.014048803,-0.054006692,0.07039222,0.0030269618,0.09143389,0.08538205,0.050118305,-0.082632974,0.11750137,-0.09412462,-0.017945366,0.008462911,0.028867532,0.0025224749,-0.077225536,0.029638203,0.10042203,0.046359573,-0.031691518,0.0038711887,-0.034761827,0.054453515,-0.040914528,0.010419512,0.016115991,-0.09078195,0.013349548,0.0026282098,0.0044358294,0.015758432,-0.033084817,-0.023622444,0.031090785,0.07046704,-0.00999445,-0.07968431,-0.04094603,-0.019664733,0.04686419,-0.0014129941,-0.012984832,-0.036415014,-0.01846708,0.05601149,0.01775557,-0.056161847,0.019193547,-0.0033849704,0.023119109,0.032876715,-0.036558118,0.033494137,-0.00084339426,-0.05796561,0.05530444,0.04915283,-0.06623015,0.022917984,-0.050586354,-0.07703288,-0.01569554,0.006244645,-0.03875224,-0.09292858,0.00086259126,0.018374085,0.025594298,-0.01801913,-0.057844274,0.03892849,-0.02196235,-0.1093938,0.03543232,0.027639361,-0.025391717,-0.031077877,-0.0043248264,-0.09475118,0.0012560601,0.022067675,0.06882813,0.024985682,-0.12790245,0.012504451,0.05655694,0.055377834,0.028429942,0.049744513,-0.013931207,0.008116761,0.017275443,0.019808432,-0.038526565,-0.041916605,0.008650282,-0.052966904,-0.011456264,-0.048361924,-0.0087432,-0.13185363,0.03268146,-0.014891362,-0.09591107,-0.04744067,-0.09509785,0.02198141,0.08625425,-0.038603194,-0.024884101,0.0058829095,-0.031510025,0.09913764,8.8148935e-34,-0.029624844,-0.099603206,-0.045281395,0.06095597,0.011990205,-0.031557884,0.013670766,0.003858057,-0.009340523,0.010512608,-0.05073373,-0.06325819,0.056490667,0.03643373,-0.040604103,-0.033451445,0.01977323,-0.0028183062,0.05986131,0.02612928,-0.05175483,0.01719218,-0.059814256,0.023519391,-0.038362868,0.07945663,-0.08468059,-0.03782826,-0.051035624,0.0820455,-0.07672674,0.029481182,-0.020519894,-0.013165802,0.0019039175,-0.043847773,-0.044744167,0.083936825,0.04223059,-0.034769844,0.06495943,0.03625701,-0.09774078,0.017308166,0.026265481,0.011413849,0.041354347,0.045661855,0.10711112,0.01591558,-0.0041226707,-0.12433501,-0.06650211,-0.029446505,-0.005020375,0.0067805387,-0.031632613,0.089302845,-0.034077745,0.012085918,0.02195752,0.023905875,-0.025584038,-0.059238765,-0.06548547,0.023889491,-0.0108963335,0.015498389,0.10711399,0.047461998,-0.15026587,-0.034027167,-0.06731303,0.042979527,-0.008612324,-0.0014693892,0.007732508,0.04267977,0.06157153,0.013075391,0.013484091,0.010424893,0.025219787,0.05238568,0.047209445,0.06837436,0.016440844,0.10735945,-0.074579485,0.071029894,-0.031181728,0.0557986,0.093076296,-0.079341374,0.06168655,-4.2548605e-33,-0.039174914,0.009310244,-0.021086914,0.048894484,-0.024989024,-0.012861321,-0.030284194,-0.0062736226,-0.04025529,-0.053249277,-0.07761164,-0.065595865,0.12061631,-0.0027450242,-0.051074207,0.08271686,0.03705953,-0.017073762,-0.09242961,-0.0014947985,-0.022925748,0.04261109,0.07698018,-0.0753739,-0.028907482,0.020170288,0.0073552565,0.029240182,-0.01197906,0.06474525,-0.0064767227,0.004153065,-0.03534832,0.036157798,0.0052331234,0.046561863,-0.021053698,0.010006064,-0.06599161,0.04036024,-0.022671394,0.03260712,0.0063317087,0.044293728,-0.0023692215,0.03493917,-0.053013615,-0.07002025,-0.081350766,-0.017750321,-0.053925887,-0.0132570425,0.019670414,0.0063034724,0.01378462,-0.087078564,-0.028707758,-0.10028091,-0.08369899,-0.015726201,0.08192308,0.025786817,-0.09090899,-0.06194803,0.10693029,-0.028853469,-0.0896266,-0.028979562,0.024529668,0.07972083,0.14364049,0.033899162,-0.095655374,0.0060276287,-0.033119693,0.060603596,-0.07833718,0.028577326,-0.02978783,0.051369276,-0.072804876,0.030658297,0.03571052,-0.021841027,-0.06477861,-0.019587856,-0.09158711,-0.022930954,-0.02652808,-0.018297149,-0.03672559,-0.0043034996,-0.05655265,-0.012577948,-0.022112036,-2.4178378e-08,0.00075917115,-0.07662317,-0.0138307065,-0.008205296,-0.01378524,-0.027683644,-0.06739284,0.061486937,0.06536633,0.10260996,0.013633968,0.039420493,0.07421175,0.032051805,-0.07900769,0.0068322076,0.06652984,0.053890422,-0.02760732,-0.027636422,0.10785886,-0.081081785,0.029532345,-0.036098234,0.060910415,0.01556876,0.0048710443,0.076270185,-0.04858447,-0.07580552,0.025447011,-0.04153339,-0.014862306,-0.047930583,-0.015232244,0.033884283,0.040036257,-0.010585957,-0.0037649472,-0.011105429,0.04180823,-0.0037694706,-0.057211418,-0.010966221,0.012183626,-0.051063772,0.060258124,0.083540544,0.027284242,0.022617081,-0.0024900958,0.002953607,0.04799021,0.074845955,0.056166787,-0.00096478395,0.0042207376,0.0341795,-0.015921276,-0.029931415,0.048085723,0.14990762,-0.0040564258,-0.05242717} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.388059+00 2026-01-30 02:01:12.003981+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2120 google ChdDSUhNMG9nS0VJQ0FnSURrMy1ENnFRRRAB 1 t 2123 Go Karts Mar Menor unknown La atención muy buena y una pista fantástica. Nos lo pasamos de cine la atención muy buena y una pista fantástica. nos lo pasamos de cine 5 2020-02-01 01:52:39.833374+00 es v5.1 P3.01 {O1.02} V+ I3 CR-N {} {"P3.01": "La atención muy buena y una pista fantástica. Nos lo pasamos de cine"} {-0.030453324,-0.0012744308,-0.034832694,-0.030785633,-0.11453805,0.026786296,0.010588753,0.03084011,0.013458354,0.03499401,0.009776393,0.0072689108,0.019107439,-0.041741263,-0.048791513,-0.03143567,-0.0073804636,-0.00940147,0.054701902,0.025145307,0.09594606,-0.07819443,-0.09040054,0.09473095,-0.10091137,0.007036447,0.0104385745,-0.0075710546,-0.045474306,-0.06909855,-0.03649675,0.08537955,0.038989797,0.01770617,-0.026766762,-0.015429564,0.060115997,-0.04992759,-0.013946794,0.035863098,-0.07326517,0.050822675,0.022015715,-0.014714927,0.02896734,-0.087634355,-0.01779658,0.02601472,0.0017515657,-0.041645356,-0.069492266,-0.008399381,0.0025878912,0.027331451,-0.026073648,0.003937794,-0.002521109,-0.10088669,0.027279949,0.035828028,0.0054740594,0.05647521,-0.015442591,0.028709957,0.03851313,-0.038872834,-0.02361677,0.0007332322,-0.094371825,0.014543207,0.08357218,-0.045389663,0.013549732,0.036323845,0.026178787,0.07795087,-0.048174106,-0.053347252,-0.09479042,-0.018578673,0.03268967,-0.017884731,-0.006188236,-0.018659186,0.03134239,0.036959752,-0.0014328123,-0.0078237085,0.022183342,-0.020775395,-0.032039836,0.06621322,-0.075582445,0.026870027,-0.0115193445,0.0006254703,-0.026000844,-0.075765915,-0.005518232,0.0828904,0.108969465,0.0743498,0.01305086,-0.033277683,-0.06049373,-0.0015288326,0.08296934,-0.028928017,0.023949675,0.021535194,0.016585406,-0.028021824,-0.027584031,-0.025066368,-0.06315301,0.06512181,0.006178278,-0.060993195,0.011889612,-0.10870264,0.080710694,0.058812726,-0.035906706,0.025896646,-0.040564183,-0.029087659,0.019440943,4.174859e-33,-0.019616786,-0.032901704,0.024613483,0.047026116,-0.034999616,0.035724495,0.008195949,-0.123118095,-0.064396776,-0.0425307,-0.048767913,0.108389564,-0.0004161505,-0.0029046342,0.0048068124,0.04917124,0.021859538,-0.057165205,0.07463594,-0.014189847,-0.06520497,0.032775015,-0.006760234,0.030938188,0.008403616,0.046664372,-0.0077151614,-0.052082717,-0.06604056,0.05201232,-0.075894415,0.05973501,0.026916645,0.002267356,0.05685372,-0.10717279,-0.00013066361,0.042862747,0.086646475,0.043165546,0.05494923,-0.009263933,-0.060097974,0.01750972,-0.018914908,0.04440938,0.037106622,0.07935637,0.04400685,0.003534128,-0.043078844,-0.06356524,-0.035862423,0.005394728,-0.05027474,-0.031616464,-0.069640815,-0.004626526,0.0090314755,-0.05914856,0.08376616,0.045468096,0.004109255,-0.025290653,-0.051809695,-0.016618036,-0.0018441301,0.11644312,0.10472952,0.07454158,-0.06952803,-0.03334703,0.01713347,0.012102241,0.055033457,-0.05596649,-0.001414458,0.047421083,-0.07337935,0.055056017,-0.026297987,0.017319199,0.06510245,0.031265806,0.017143425,0.046018597,0.08372453,0.0664956,-0.05576465,0.031371344,0.014227081,0.08521969,0.121385954,-0.017214684,0.024031147,-5.2497276e-33,-0.0065656356,-0.05005964,0.027951237,0.044215046,0.0085470015,-0.05518183,-0.09586735,-0.0648588,-0.03274291,-0.012374596,-0.028844517,-0.11491718,0.11062995,-0.049547274,-0.0004874354,0.038811628,0.03304829,-0.061690114,-0.06631371,-0.0076533654,-0.056296714,-0.0026998632,0.006738579,0.0011820456,-0.06099852,-0.0059108287,0.019823808,0.013584649,-0.033701234,-0.014294593,0.034766853,-0.008475254,-0.04047692,0.01748263,-0.07123268,0.096762896,0.03773616,-0.017402127,0.02013014,0.0129108755,-0.061208777,0.021179521,0.019778365,-0.023792446,0.018413506,0.06366488,-0.001158534,-0.14114957,-0.12880957,-0.05725483,0.040029377,-0.018613769,-0.01120477,0.015704876,0.026531823,-0.008888234,-0.0426712,-0.049847685,-0.015863439,0.009369209,0.06467106,-0.03314475,-0.12440297,0.015829073,0.05297778,-0.003574619,-0.0019208376,0.019361243,0.0048337113,0.094604015,0.05688907,0.03167161,-0.07000431,0.009827535,-0.0682028,0.006126075,-0.08655391,0.03074728,0.017927447,0.049549755,-0.015629437,-0.019851603,-0.0062340745,-0.025672931,0.033667434,-0.01033989,-0.021516576,0.025110956,-0.034115214,0.058108024,0.021885129,0.010100329,-0.032482088,-0.11347812,0.03367807,-2.6773106e-08,0.0054455367,-0.026044006,-0.05261796,0.008519776,-1.5687121e-05,-0.08433058,-0.006024117,0.044189658,0.020649487,0.059374187,-0.031302836,-0.057239678,0.055078827,0.0054020956,-0.015191634,0.05229287,0.12333812,0.11637944,0.026291553,-0.044414964,0.02256855,-0.010290948,-0.02022032,-0.10397229,-0.087205544,0.058557943,0.00076332106,-0.019391429,-0.07992321,-0.0110684605,-0.019346856,-0.040740956,-0.006933871,-0.12172729,-0.033012554,0.019776773,0.0053686453,-0.057769306,0.047784567,-0.09053389,0.12733118,0.10804656,-0.07125017,0.007193159,0.0026170781,-0.10013931,0.042512696,-0.010639445,0.026327465,0.08283381,-0.023526989,0.011902286,0.086498715,0.045961693,0.12029925,-0.051274493,0.05346356,0.022850245,-0.04622423,0.036061678,0.058055423,0.10109493,0.023456814,-0.028857196} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.486816+00 2026-01-30 02:01:12.025685+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2125 google ChZDSUhNMG9nS0VJQ0FnSUMwel9IUk1REAE 1 t 2128 Go Karts Mar Menor unknown Käykää ajamassa. käykää ajamassa. 5 2020-02-01 01:52:39.833374+00 fi v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Käykää ajamassa."} {-0.034901686,0.06594408,-0.10912448,0.056709103,-0.10999827,-0.011643245,0.094874434,-0.024285095,0.05843538,-0.015699934,0.065678924,-0.050271895,-0.0052233213,-0.028084321,-0.002064449,-0.008763607,0.038696676,0.08842949,-0.112947635,-0.032584965,-0.052807268,-0.058706366,-0.0009733709,0.031251375,-0.021726249,0.06815753,-0.015894007,0.006539059,-0.011691638,-0.06629049,-0.050710794,-0.02166695,-0.042852737,0.03733366,-0.03819381,0.027632985,-0.067523815,0.047398552,0.080108486,0.046951305,-0.039178155,-0.05151586,-0.02372834,-0.03927899,0.015342359,-0.12302166,-0.03443142,-0.034405638,0.035713054,0.05345411,-0.08485481,-0.036391474,-0.0876811,-0.011427656,0.07225554,-0.12473989,-0.025483284,0.041644156,0.008069359,0.04666501,0.077110894,0.020299267,-0.020581169,0.0564092,-0.035865955,-0.10110753,-0.06636932,-0.044345763,-0.030110892,0.0090635335,-0.02223074,0.00781663,0.0077576926,0.07340338,-0.033691224,-0.0052250633,0.09334528,0.036630806,0.036027532,0.048726723,0.08805041,-0.03789815,-0.05510522,-0.0048230393,-0.0054538553,0.00037622836,0.023646979,-0.005661367,0.043227814,0.033033513,-0.0062034405,0.049606923,-0.025512302,-0.06641566,-0.017671272,-0.019824602,-0.05444704,-0.04923326,-0.073052935,0.11217689,-0.02732399,0.01957844,0.032775447,0.05252367,-0.06509426,-0.0015697709,-0.05955066,-0.07510097,-0.0021487859,-0.010955973,-0.027764618,-0.078374125,-0.033328038,-0.018727036,-0.0064006215,0.06893076,-0.026483506,-0.03281763,0.041625794,-0.060219754,0.008034287,-0.044701256,0.038275287,-0.008051463,0.05300796,-0.016560888,-0.022182662,-5.997361e-34,0.036913026,-0.06629203,0.0916157,0.0051888763,0.062871516,-0.087709144,0.0069109015,-0.031696938,-0.061244022,0.043933447,0.014758041,0.030998632,-0.061476544,-0.07257872,0.08199797,0.15695846,0.00073674624,-0.030613016,-0.11298237,0.03408386,0.016997624,0.023397487,0.052260976,0.030099018,-0.009144926,-0.039271086,0.08938758,-0.05491754,-0.021724973,0.06464541,0.022695478,0.01647807,-0.059009194,0.012734511,0.0011423046,-0.038056996,0.022458732,-0.05672199,-0.00088837586,-0.016733678,-0.017597197,0.014677262,0.08527437,0.05059846,-0.062316496,-0.018097905,0.04049161,0.050872132,0.055128217,0.046354532,-0.05799616,-0.018708726,0.013737916,0.03236113,-0.023865791,0.06319525,-0.020744972,0.013546253,0.023188258,0.046717096,-0.10630761,-0.061889134,-0.030150816,-0.0348921,-0.011597265,-0.039854143,-0.014240753,-0.024754938,0.05250041,-0.07591996,0.016535949,0.011122563,0.00074703473,0.052457325,-0.05370001,0.019967966,0.06657541,0.0031789863,0.0019516455,0.015628884,-0.031070642,0.096926615,0.0942992,-0.007605564,-0.0013850881,0.033732165,-0.032769036,-0.044550575,0.011427989,0.044565238,-0.066231474,0.14559665,0.0499465,-0.06387251,0.020697374,-6.840023e-34,0.082868874,-0.015080993,-0.027259137,0.02408822,0.070599414,-0.053444475,-0.014044431,0.0685566,0.022327904,0.042563975,0.060087733,-0.10458144,0.08868481,0.056130376,0.019250667,-0.03770241,0.08793179,0.008187313,-0.026102731,-0.022294091,-0.029480217,0.08293085,-0.021135129,0.014568905,0.031112252,-0.11281623,0.059451256,0.052539233,-0.13411145,-0.030047914,0.012112881,-0.029563997,-0.019792305,0.014190594,-0.056219272,0.01602842,0.019567614,0.007511637,-0.0063773417,0.09884727,0.06691945,0.0012649528,-0.035128094,0.07541122,0.028811967,-0.056777,-0.045422725,0.0989243,0.020576082,-0.09133055,0.010982468,-0.06266394,-0.03626331,0.040289234,0.096919715,0.10370297,0.052105248,0.0119058695,0.042019602,0.030740859,0.079879895,-0.008373042,0.037286703,-0.04070493,0.026441228,0.039018154,0.0060328096,-0.027454987,-0.03648625,0.014814342,0.03221082,-0.042142157,-0.10559469,0.047822654,-0.0030586354,-0.037140716,-0.14453454,0.03825055,0.040837597,-0.03203093,-0.023290928,0.0069884025,-0.03512669,-0.0702973,0.094884835,0.076613896,0.021449158,0.001296266,-0.0391643,-0.029029205,-0.00051326095,-0.003511309,-0.0074819867,0.005884877,-0.052324876,-1.772472e-08,-0.006062728,0.011180972,-0.07058267,-0.0238451,0.008502571,0.045491673,0.0011568933,-0.007378582,0.024573218,-0.031090638,0.024426889,0.063766494,0.042671353,0.078066394,-0.017329995,0.018012738,0.082108125,0.09974504,-0.010530081,-0.0009064565,0.069296576,-0.02258389,0.017741604,-0.066302404,-0.0021358144,0.013672957,0.008620793,0.07553649,-0.00016166708,-0.008993642,-0.06409777,0.06439961,0.01799599,-0.11012737,-0.05582427,0.04186454,-0.03457408,0.0008962258,-0.017964419,0.0054578246,-0.026205927,0.030787572,0.062941164,-0.023791067,-0.01942187,-0.01758506,0.08044906,-0.024650875,-0.030808307,-0.1131141,-0.058748037,-0.018517679,0.029635139,0.05134334,0.09110135,0.023394285,0.021596884,-0.008664692,-0.03911629,0.03003201,0.07532707,-0.031451385,-0.020036958,-0.044181854} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.543687+00 2026-01-30 02:01:12.042527+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2127 google ChdDSUhNMG9nS0VJQ0FnSURBZzRfNmdRRRAB 1 t 2130 Go Karts Mar Menor unknown Muy divertido, estupendo para pasar un buen rato en familia. muy divertido, estupendo para pasar un buen rato en familia. 5 2018-02-01 01:52:39.833374+00 es v5.1 E1.04 {A3.01} V+ I3 CR-N {} {"E1.04": "Muy divertido, estupendo para pasar un buen rato en familia."} {-0.007498586,0.023131736,-0.020387555,-0.06620997,-0.039547727,0.0003072398,0.066451035,0.017559206,-0.0026130225,0.0016716635,0.054292828,-0.042035494,-0.097914144,0.017717788,-0.0105213085,-0.01143741,-0.06311526,0.07192984,0.00526464,0.031077698,0.057913356,-0.011114411,-0.007384319,0.061158102,-0.10646989,-0.007029455,0.019711222,-0.054144394,-0.012999002,0.008706249,0.051173992,0.08547567,0.004437175,-0.062615104,-0.030103775,-0.03712628,-0.052729238,0.044941667,0.058278877,0.078011736,-0.052208968,-0.032934774,-0.03919887,-0.0830721,-0.020070337,-0.032247424,0.054013602,0.03681819,0.07132978,-0.032635354,-0.03742189,0.0017571318,-0.03936753,0.014117873,-0.011397717,-0.021947596,-0.06455263,-0.07486202,0.06829433,0.0044755405,-0.05223474,0.044239663,-0.04304413,0.015916942,0.01865754,0.00031747436,0.023189455,0.033465803,-0.040618036,0.029585922,0.11240549,-0.045309335,-0.0040499414,-0.019549323,-0.0005987025,-0.025454083,-0.021589018,0.07923806,-0.064547054,-0.04484496,-0.011199732,0.01068966,-0.05784829,-0.049597003,0.04622413,0.014511185,-0.040466294,0.09308139,-0.028243186,-0.032443803,-0.045783073,0.01778314,-0.029084036,-0.023570921,0.062731795,0.016505485,0.025807867,-0.12997952,-0.031450603,0.02261331,-0.025154132,0.04791463,0.06700233,0.036410708,-0.02956053,-0.034150477,0.02506924,-0.015180125,0.03738822,0.002452072,-0.06841665,-0.016339062,-0.02599445,-0.01626604,-0.07148211,-0.0170699,0.0649652,-0.110763445,0.004111893,-0.0033194246,0.0327544,0.062547974,-0.040811058,0.031447418,0.044334885,-0.07363642,0.05071737,2.8886299e-33,-0.03387296,-0.08276944,-0.036926664,0.05310868,-0.006149731,0.056100033,-0.008667447,-0.07356681,0.03863412,-0.060949616,-0.054438494,-0.025952961,-0.012082538,0.061792843,-0.04234195,-0.0038555018,0.03334927,0.06829358,0.12279759,0.04470855,-0.04080102,-0.0049876296,-0.046028335,0.06077425,0.008873787,0.039776653,-0.05473802,-0.01156113,-0.031596884,0.07315118,0.012810565,-0.005570387,-0.039974127,-0.09203349,-0.06624959,-0.06438549,0.027201036,0.015149552,0.038001426,-0.0020495064,0.06945282,-0.0129533,-0.051685788,0.046437707,0.055770736,-0.088393815,0.01261214,-0.016858222,0.083917536,0.062176205,-0.01265742,-0.0709471,-0.03685363,-0.05247829,-0.0397353,-0.06167406,0.002924962,0.07600944,-0.06457357,0.0030783666,0.04780696,-0.019014046,-0.05320209,-0.04818618,-0.063321374,-0.018787362,0.017544134,0.08505024,0.074723355,0.00434719,-0.12783323,-0.042007662,-0.072238475,0.0074846083,-0.020138044,0.019766795,-0.008048736,0.051797483,0.012132121,0.0073246667,-0.011782991,0.097192355,0.06943995,0.03973896,0.09180611,0.09907199,0.014743393,0.095266394,-0.03583897,0.048176236,0.04382645,0.06485598,0.03832499,-0.052052148,0.08367181,-4.6452172e-33,-0.0030174335,0.027376069,0.003260049,0.027665485,-0.03089897,-0.008160739,-0.048553,0.0145953465,0.0030544396,-0.060844574,-0.10762583,-0.08751138,0.1225585,-0.07950802,-0.02986343,0.09200744,0.027432108,0.0070767775,-0.046799425,-0.059696734,-0.06068023,-0.030850034,0.08858887,-0.06772346,0.020240823,-0.035501312,-0.012778335,0.034564544,-0.027084207,-0.0030223618,0.0115068145,0.001398359,-0.02209773,0.06710081,0.061766107,0.023103032,-0.025076311,0.06223419,-0.060564283,0.020785257,0.002506746,0.0422146,-0.0040260563,0.05563151,-0.022433074,0.0455589,0.05216434,-0.08630854,-0.02466453,-0.011826007,0.008444138,-0.032709092,0.04843134,-0.061445363,0.062091112,-0.10967316,0.0023821888,-0.06903824,-0.08924674,-0.03733498,0.06390832,0.023128454,-0.08066644,-0.020946113,0.039056916,-0.015902767,-0.11741574,-0.0032367927,0.010852671,0.10742895,0.16504537,-0.0063504227,-0.03161096,0.024884813,-0.021412134,0.04607376,-0.033728436,0.015588185,0.018643377,0.041698877,-0.100096785,0.034612987,-0.030502344,-0.05182936,-0.09123251,-0.09893405,-0.047119115,0.010855118,-0.0351946,-0.03726987,0.025938548,-0.025449982,-0.02463127,-0.0568775,0.027150158,-2.3973218e-08,0.022514122,-0.06927115,-0.065972924,0.03359662,0.04828901,-0.029364582,-0.012941599,0.015187192,-0.009734528,0.032451864,-0.045514483,-0.017548162,0.091303274,0.064411975,-0.011355088,0.037249498,0.12876368,0.07990839,0.030713638,0.018517602,0.07247077,-0.04378603,0.016967585,0.03699058,-0.0027855493,-0.006996045,-0.019053614,0.07761026,-0.061755687,-0.054086715,0.077211425,-0.068506606,-0.012834802,0.019165708,-0.017281719,-0.027009685,0.009087922,0.08365004,-0.037345182,0.022890871,0.11453964,0.009986413,0.008215758,-0.03748185,0.0034439778,-0.038445808,0.025075413,0.086866364,-0.015304188,-0.018878818,-0.025560148,0.012484923,0.04826288,0.012889299,-0.009652453,-0.008758401,-0.014434379,0.002275993,0.037423998,-0.042311028,0.032985684,0.20157698,6.7217734e-05,0.006915358} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.566085+00 2026-01-30 02:01:12.048025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2129 google ChZDSUhNMG9nS0VJQ0FnSURLOGVQY2FREAE 1 t 2132 Go Karts Mar Menor unknown Muy buen sitio para pasar el día muy buen sitio para pasar el día 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Muy buen sitio para pasar el día"} {-0.043575715,0.047358003,-0.004898211,-0.05718072,-0.059281435,-0.005546819,0.080783136,-0.042321328,0.045035113,0.017533662,0.028065339,-0.040850602,0.008872576,-0.035588954,0.06919698,0.048673715,-0.06994743,0.12002366,-0.041957535,-0.00047356245,0.0687131,0.03283392,-0.11392464,0.11164142,-0.048897076,0.0326743,0.0785161,-0.015964484,-0.03385865,-0.059649132,0.021112341,0.010438962,0.065496296,-0.037800655,0.024468936,-0.07034323,0.046258,-0.110723935,0.006910833,-0.0029227776,-0.057843216,-0.067844056,-0.015061059,-0.045018505,-0.010049314,-0.0645356,0.063251264,0.03488678,0.09304623,-0.02122269,-0.020410143,0.020726427,-0.013573254,0.02430672,-0.070115685,-0.004602198,-0.048149697,0.0324434,0.0724824,0.016703455,-0.004160006,0.0062675425,-0.021525634,0.013864242,-0.012767597,-0.036865003,-0.009940536,-0.05568558,-0.08400414,0.055217255,-0.02911954,-0.022402413,-0.009557163,-0.022335626,-0.029392354,-0.04140754,0.056212876,-0.035751976,-0.009211473,-0.043729242,0.004736259,-0.004221442,-0.049237054,-0.013252182,-0.004944933,-0.00698425,-0.012677148,0.08678052,-0.0203937,-0.057469536,0.016782321,0.019451015,-0.07978751,0.052033704,0.0071185003,0.05691798,0.0036670489,-0.06933676,0.012148486,0.06585257,0.03565555,0.07235797,0.048418123,0.011887077,-0.055193316,-0.011080196,0.033368442,-0.036891364,0.009153822,0.052253604,-0.026821144,-0.026908405,-0.028436251,0.03758196,-0.065737635,-0.019768784,-0.03789084,-0.11393075,-0.020947287,-0.04984268,0.02237447,0.0059332703,-0.028694522,0.023693604,0.023851214,-0.050178435,0.07158919,3.7619893e-33,-0.03616263,-0.054910198,0.04130736,0.0011155378,-0.029663594,0.052767385,-0.022155304,0.015823264,-0.04141963,-0.056692082,-0.063727796,-0.06229351,0.06389046,-0.011670809,0.07185844,0.0642692,-0.007891738,-0.029718935,0.06427512,0.026023328,-0.087539546,-0.013084595,-0.046220195,0.03848476,0.023856841,0.022741603,-0.038879108,-0.058229823,-0.075296566,0.0860241,0.047080234,-0.01865437,-0.012948043,0.0066744476,-0.058247473,-0.06416742,-0.024832081,0.07554857,-0.046973333,-0.027768198,-0.013588593,0.050331675,-0.026985208,0.07452636,-0.02966632,8.7822285e-05,0.080550276,0.033475004,-0.007098857,0.01711971,-0.06538628,-0.03906199,-0.06825334,-0.06421221,0.05064897,-0.09699146,-0.08598275,0.08077294,-0.03838244,-0.04622594,0.1394267,0.018461531,0.055299904,0.010057407,-0.051824406,-0.018483788,0.043388776,0.059620257,0.111586474,0.048986033,-0.049896203,-0.03408169,-0.042056814,-0.041742124,-0.025916332,0.03723493,0.043535776,0.021352736,0.05121855,0.046307847,-0.038837668,-0.039948266,0.0905628,0.053513557,0.030804295,0.00829489,-0.052986763,0.042491935,-0.0465989,0.019475466,-0.01883786,0.06570687,0.022052027,-0.03620576,0.037096046,-3.7500566e-33,0.07425357,0.02133222,-0.0026351498,0.10981128,-0.041369293,-0.03146659,-0.02635244,0.024555212,0.0041579804,0.0015767161,-0.050162792,-0.1675401,0.11075021,-0.031369813,0.034874137,0.15759964,-0.0065830043,0.0044774245,-0.08847868,0.003086938,0.00339471,0.015383568,-0.00049856264,-0.0757199,-0.0027795068,-0.06325865,-0.023469236,0.019161003,-0.07035124,0.016455187,-0.0050333613,-0.05829436,-0.077422805,0.07906516,-0.061662406,0.026098622,0.044210114,0.030437905,0.048633337,-0.016987702,-0.009661669,0.04981132,-0.013059017,0.01812079,-0.030596366,-0.013918797,0.035305433,-0.07256973,0.0004288831,-0.09172167,-0.028430436,-0.050020877,0.029410493,-0.03226168,0.017365389,0.0004760095,-0.051462844,0.0023302385,-0.11670559,0.0064768493,0.026798185,0.009835288,-0.04606833,-0.016343608,0.03728634,0.006547851,-0.057178684,0.009282847,0.008455803,0.096787915,0.09859334,-0.041208714,-0.10941294,0.07596037,-0.11508563,0.044240676,-0.03738063,-0.010395118,-0.04903763,0.052952398,-0.008748505,-0.041595668,-0.017042857,-0.022141166,-0.023630528,0.046404183,-0.041277196,0.02560715,-0.025206748,0.020843936,0.031232156,0.017737333,-0.032846224,-0.025358217,-0.055340484,-2.1373793e-08,-0.0023960494,-0.09510358,-0.0506773,0.018538982,0.014287208,0.061772592,-0.0013032819,0.005567569,0.008260782,0.054837763,-0.005701312,-0.051622953,0.033951107,0.0456591,-0.007854789,0.088252135,0.093957305,0.04821793,0.02329744,0.009699842,0.110846266,-0.05283059,0.026556995,0.05376296,0.037594058,-0.0018746214,-0.011602239,0.08055204,0.10140888,-0.055401556,-0.0025830907,0.02314774,-0.014813081,-0.08129281,-0.03730988,0.0063311756,-0.0020509965,-0.029014224,-0.061713353,0.031064007,0.07707301,0.05739222,-0.020181436,-0.03242827,0.10976062,-0.009598799,0.035994213,-0.0024084353,-0.0415892,-0.0073688026,0.027771784,-0.02697276,0.0975897,0.09096341,0.07488021,0.043391924,0.019298922,-0.01172049,0.062091954,0.030595424,0.07446031,0.17053528,-0.03643455,-0.08554739} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:44.589238+00 2026-01-30 02:01:12.05495+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2080 google ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE 1 t 2083 Go Karts Mar Menor unknown Muy buen trato\nInstalaciones perfectas\nMuy muy buena experiencia muy buen trato instalaciones perfectas muy muy buena experiencia 5 2024-01-31 01:52:39.833374+00 es v5.1 E1.03 {} V+ I3 CR-N {} {"E1.03": "Instalaciones perfectas", "P1.01": "Muy buen trato", "V4.03": "Muy muy buena experiencia"} {0.032770332,0.0055563706,0.056094147,-0.003010826,-0.104043394,-0.049179055,0.07728258,0.05284125,-0.0634649,0.022765143,0.10343646,0.023274422,-0.02044002,0.00429542,0.03210633,0.025435898,0.038005635,0.056452263,-0.044222,-0.09093052,0.034785602,-0.07826358,-0.02219021,0.02961057,-0.08607073,-0.040743824,-0.038293473,0.052117355,0.05585604,-0.032440536,-0.001531921,0.09724454,0.12202178,-0.018600864,0.03488183,-0.040980633,0.040249888,-0.026434278,0.010694707,0.008730355,-0.040611427,-0.06468057,-0.05761402,-0.051244527,-0.031958222,-0.14393452,0.056807473,0.048077382,0.0060065617,-0.04081195,-0.08345261,0.007940589,-0.011059461,0.0034163357,-0.0033742625,0.076081924,-0.029843751,0.017719852,0.0131998835,0.011188806,0.016165407,0.07499628,-0.05999659,0.007900758,0.049624633,0.043240253,-0.023537908,0.019616812,0.040248733,-0.0032717106,0.048655972,-0.1319201,-0.06828175,0.076549225,-0.053077474,0.023357464,0.053159792,0.045815036,-0.039165515,0.010785713,-0.052482143,-0.04903469,-0.023733145,-0.034913205,0.02597099,-0.021000851,-0.016291764,-0.029304722,0.008390458,0.006360483,0.02719322,0.029347653,-0.1106982,-0.011218344,0.040925883,0.037144147,-0.0047430587,-0.094060324,-0.020099474,0.06038463,0.03769818,-0.016613597,0.12321383,0.046523273,-0.07594613,-0.006670437,0.016466191,-0.06218031,0.011415622,0.08741082,-0.050222784,-0.12175341,-0.0077239852,-0.0024897878,-0.008354628,0.0082676755,-0.047762074,0.03022655,0.062000256,-0.05300579,0.050563175,0.10896727,0.034872774,-0.07034931,-0.00630503,-0.04968958,0.039961386,8.1610664e-33,-0.055725034,0.0006649148,-0.0038238973,0.11611144,-0.0075287656,0.040361084,-0.029785246,0.013706662,-0.009585788,0.036438968,-0.035839397,0.014006645,-0.03292468,0.030737348,0.101583265,0.044654418,-0.005899451,0.049773928,-0.0024076418,0.050179522,-0.09180358,-0.03882886,0.005540056,0.0031436884,0.0345599,0.037824098,0.06434608,-0.0004007824,0.035983898,0.037660778,0.015571806,0.044467233,0.024445947,-0.056917913,-0.08937275,-0.009388036,-0.024969986,0.0034437634,0.0376593,0.02133109,-0.00093309866,0.019561006,0.05944729,0.030274967,0.06482102,0.06739345,0.03472406,0.019060822,0.110180974,0.046882488,-0.0786428,-0.071658,-0.035869826,0.02323967,-0.046467777,0.021420637,-0.009499701,0.036372416,0.043058272,-0.059246864,0.00036182808,0.007610308,-0.020742023,-0.052833542,-0.034542464,-0.07003579,0.011764632,0.025864378,0.0896228,-0.0036256409,-0.13929218,-0.06754511,-0.022601344,-0.03438995,0.018631363,-0.052484598,-0.048287112,0.006825891,0.02856566,0.05098705,-0.04978457,-0.009345234,0.024733445,-0.016803352,0.071299255,0.06455237,-0.039892063,0.05492392,0.024522075,0.050242003,0.0016152365,0.06740425,-0.0023834317,0.052423786,0.049956247,-8.639217e-33,0.018581958,-0.033700477,0.01292185,0.09357281,0.04139024,0.00568156,-0.09689288,-0.055724032,0.041759405,-0.03820275,-0.017179947,-0.10996223,0.10710919,0.025593944,-0.0629998,0.040230777,0.015831618,-0.0538259,-0.034763873,-0.001768592,0.063092954,0.015308401,0.03353377,-0.017166067,-0.03739808,-0.06361994,-0.04421433,0.011885312,-0.04662878,0.037557486,0.04079235,0.006308249,-0.15413806,0.08746677,-0.033227403,-0.04256795,0.05236301,0.079185024,0.016392918,0.010884333,0.011536231,-0.0093824975,-0.03908749,0.02832599,-0.026916754,-0.014882198,0.067317925,-0.12051009,-0.019493343,-0.046362307,0.041587602,0.00077972544,-0.049825143,-0.009062182,-0.035648875,-0.020372076,0.028364632,-0.07283124,-0.09030119,0.009877272,0.019439518,0.050857496,0.033572618,-0.07743815,0.0047829025,0.016873185,0.01839365,0.056867763,-0.057133023,0.029609907,0.013796576,-0.02945304,-0.047402773,-0.015044927,-0.017461287,0.019391047,-0.06875687,-0.05765057,-0.021238206,-0.05706947,-0.033584513,-0.08529597,0.006991265,-0.010433483,-0.04933945,-0.081055984,-0.059947737,-0.0504373,-0.008692551,0.07007962,-0.0019547732,0.08665267,-0.0074700946,-0.029484797,-0.031657692,-3.2070613e-08,0.0024952842,-0.07881732,-0.035224363,-0.028989453,0.060261272,-0.09924245,-0.09267743,0.10420666,-0.00051350804,-0.010064466,-0.09313069,-0.022045314,-0.052732065,0.09132127,-0.009850871,0.024391595,0.12152574,0.10775488,-0.03349055,-0.106417306,0.07302322,-0.005224627,-0.007229768,0.062192835,-0.020445013,0.038428545,-0.024266927,0.02119214,-0.063128434,0.07379431,0.034416206,8.456704e-05,0.07979795,-0.05317239,-0.0034087475,0.009546731,-0.009860654,-0.028729538,-0.024359588,-0.098691985,0.029084602,-0.021299144,0.03260732,-0.035936374,0.0066396943,-0.08264418,-0.062051196,0.027550146,0.0035104514,-0.0018475368,0.0028574471,-0.018386532,0.00030980748,0.05936558,0.026754713,-0.024252957,0.058350418,0.018513454,0.052534554,0.006956272,0.046785183,0.068259455,0.063237645,-0.0870456} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.570216+00 2026-01-30 02:01:11.888426+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2088 google ChZDSUhNMG9nS0VJQ0FnSUNLam9YVUd3EAE 1 t 2091 Go Karts Mar Menor unknown Excelente excelente 5 2022-01-31 01:52:39.833374+00 ro v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Excelente"} {-0.03939003,0.049307015,-0.008328858,-0.033143777,-0.0915916,0.055562705,-0.0015982827,0.055945925,0.027139585,0.050070256,0.117530845,-0.04526813,-0.023133028,0.0013078714,-0.0094459,0.00663581,0.00095208175,0.0148711065,-0.09312045,0.042868454,0.04222405,-0.03618125,-0.068130486,0.04534572,0.021899043,0.053004835,0.01709879,-0.0037093703,0.032115325,-0.10766018,-0.03956861,0.043962665,0.092365004,-0.02641139,-0.05635981,-0.08232126,0.052859608,-0.076042295,0.045169,0.05149961,-0.09492448,-0.038445413,0.013000345,-0.044116046,-0.0056651197,-0.065278605,0.029507559,0.08047201,0.029025562,0.030004565,-0.065761425,-0.020211745,-0.010303442,0.030021017,0.043238208,0.006746832,0.0070172413,0.013556691,0.03499298,0.023929382,0.0035128172,-0.0028001408,-0.074236825,0.06754812,-0.021187259,0.0025683758,-0.044992402,0.011589803,-0.17271435,0.10059208,0.0446609,-0.030554269,0.021030925,0.020299057,0.033840142,0.057006296,-0.011662918,-0.037243534,0.022420846,-0.00777803,0.0104388045,-0.019304095,-0.039477352,0.009777639,-0.0015321159,0.050530355,0.048423655,0.04183147,0.06780951,0.009178412,-0.05633716,0.09043944,-0.034167506,-0.010076946,-0.10098303,0.017155308,0.020907387,0.005099884,0.021236071,0.15791294,0.125804,0.028405743,0.08285912,-0.0106324125,-0.07174246,0.02097765,0.030528767,-0.024378175,0.039900366,0.011930376,-0.026145969,-0.062190898,-0.0587358,-0.022342961,-0.0770588,0.0040314617,0.0069489144,-0.07722928,-0.024751794,-0.0970858,0.03992478,0.016880611,-0.050518207,-0.0055737062,0.066659,-0.09709969,0.015767436,-3.2026513e-33,-0.041891858,-0.062848985,-0.01620844,0.0449655,0.022784503,0.02981735,-0.07895204,-0.020474326,-0.08866026,0.037846696,-0.07398671,0.12709044,-0.008568162,0.028653909,0.10072995,0.058243092,0.02968781,-0.009483751,0.016057953,0.007616134,-0.0028675606,-0.06806704,0.015204936,0.06007762,-0.028172415,0.057278544,0.035142593,-0.0479575,-0.054232243,0.027719893,0.0019488579,0.0052235923,-0.016148033,-0.02120335,0.026354183,0.026750635,0.05862253,0.019689314,0.015548714,0.023227783,0.008280803,-0.0016240233,-0.03455976,0.01432909,0.053883374,0.009854661,0.06437917,0.039783143,0.116278775,0.0028826878,-0.031681444,-0.048339106,0.028865887,-0.041394763,-0.011836862,0.056648802,-0.11827812,0.15049532,-0.015584531,-0.05724969,0.02817351,0.0020729897,0.00057834754,0.06921371,-0.105953425,0.036928773,0.010505606,0.034048572,0.12995785,-0.0009687558,-0.052161664,-0.07102431,0.08445118,0.04316417,0.0107399495,-0.016262595,0.012409075,-0.009799589,0.0071891323,-0.065769136,-0.05376879,-0.050785176,0.006223287,0.007892733,0.030114038,0.09303344,0.02240167,0.019596806,-0.051635705,0.0720376,-0.028068375,0.02608348,-0.0064744083,-0.04183317,0.011599103,1.23585185e-33,0.008696436,-0.03227891,-0.0100154765,0.029281054,0.013652192,-0.0033944275,-0.017178582,0.036264513,-0.045969777,-0.048055217,0.007812314,-0.07986809,0.09314532,-0.0122959195,-0.0023553718,0.109282725,0.018933862,-0.08607306,-0.14795755,-0.081619434,-0.08726598,-0.007862136,0.04030455,-0.005218131,-0.011254203,0.0076771495,0.030001657,0.0048346343,-0.069500804,-0.053866267,0.017459955,-0.010519719,-0.029073056,-0.0046721175,-0.026908752,0.13708532,0.100346595,0.008645826,0.0060848063,0.05257272,-0.021247406,0.025889896,-0.032162156,0.060770806,0.025293814,0.040623676,-0.005907324,-0.116766445,-0.04847897,-0.0034599558,-0.02967403,0.041287705,-0.025699465,-0.055100195,0.041750826,-0.03088896,-0.043595456,-0.05149459,-0.0969103,0.012562803,-0.021045929,0.03585732,-0.022729144,-0.008293122,0.07784347,-0.019720845,-0.06199081,-0.034456387,-0.02688891,0.09622321,0.11230258,-0.007471132,-0.09173486,0.016924545,-0.072795704,0.0035245598,-0.11492433,0.016017385,-0.020433703,0.039801225,0.010532352,-0.09517434,0.024159713,0.007246163,-0.037496865,-0.041089024,-0.0012262431,-0.023823079,-0.02803497,0.084998235,-0.017181536,0.044667423,-0.06329987,-0.043809183,-0.0057865167,-1.3162825e-08,0.015366292,0.004511808,0.02900131,0.009408152,0.020607358,-0.046762176,-0.03581164,0.0082782535,0.089007854,0.07357188,-0.009396016,-0.063063115,0.0019292423,0.06057108,-0.01158296,0.0755581,0.06324817,0.016010102,-0.03014449,-0.012010109,0.024767654,0.018616306,-0.04229777,-0.062236276,0.0076208403,-0.024108037,-0.08428822,0.032488264,-0.013304526,-0.03723939,-0.058671862,0.066258416,0.024888137,-0.15410112,-0.056968354,0.0007374908,0.030778088,0.028653434,0.037152268,0.01564467,0.044466805,-0.03647642,-0.022103937,-0.033927828,0.027548637,-0.035387628,0.020413142,0.011839637,0.019195812,-0.012698181,-0.05406035,0.02763116,0.008434042,0.0315764,0.040640797,-0.0024102533,0.025701804,0.06931265,-0.022121942,0.014337164,0.053239193,0.066549614,0.0124572655,-0.097797714} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.686193+00 2026-01-30 02:01:11.920113+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2091 google ChZDSUhNMG9nS0VJQ0FnSURBMklXUFVREAE 1 t 2094 Go Karts Mar Menor unknown Un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos de la zona. un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos de la zona. 5 2018-02-01 01:52:39.833374+00 es v5.1 A3.01 {O1.02} V+ I3 CR-B {} {"A3.01": "Un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos"} {-0.06871753,0.008956056,-0.02524087,-0.013194441,-0.07676266,0.012391949,-0.014725127,0.08253373,-0.053776592,-0.0068310113,0.115560785,-0.024507845,-0.003332613,0.019767303,0.04079845,0.03085793,-0.0065405164,0.018201198,-0.0024754931,-0.00047538808,0.08482903,-0.031213421,-0.014404217,0.03583463,-0.11690765,0.034700297,0.034875285,0.018484311,-0.010388554,-0.033048246,-0.06288611,0.07385975,0.043861724,-0.00059727137,-0.08718735,-0.031168913,-0.033553626,-0.022925956,0.002269394,-0.010227844,-0.065401755,-0.023717249,0.0019599975,-0.101688445,0.026825642,-0.009517942,0.010334474,0.023498487,-0.018616123,-0.06704487,-0.026851568,-0.09847092,0.043480124,0.060891252,0.0255847,-0.017633008,-0.09815488,0.033574652,0.09105443,0.067152925,-0.0143094845,0.049663566,-0.049710624,0.01536664,-0.04822095,-0.111076355,0.010551766,-0.0074034394,-0.020184863,0.055174317,0.05937016,-0.06759579,0.029184218,0.018246192,-0.0013375152,0.06414063,0.012275412,-0.0012682552,-0.08144158,0.011173186,0.013643387,-0.09081023,0.007452753,-0.0728009,0.09464228,0.035486076,0.011238992,0.0013228363,-0.0035872986,0.0039619626,-0.08070169,0.09702425,-0.117132366,-0.04382147,-0.068036,0.03331351,0.042917423,-0.08686272,-0.00763909,0.034612097,0.08757409,0.019275332,0.06692957,0.026029598,-0.10633728,0.041220825,0.080050424,-0.020409023,-0.040115826,0.051736426,-0.008094893,-0.06613454,-0.025595477,-0.041231096,-0.123129226,-0.031344447,5.1717903e-05,0.02792086,-0.03354894,-0.03872942,-0.025124494,-0.010865135,0.0042024083,-0.014021045,0.027373094,-0.07061434,0.07504332,4.135321e-33,-0.10690635,-0.0028534043,-0.05591667,0.05252098,0.018499056,0.045690272,-0.022098277,0.0030499634,-0.018213406,-0.051241882,-0.047934365,0.0598987,-0.024284586,-0.053137474,0.040112443,0.006525043,-0.026535021,-0.10413531,0.06833068,0.05179147,0.06769951,-0.06691653,0.015019321,0.042022448,-0.01174666,0.053632002,0.09426732,-0.045270905,-0.08480133,0.042639565,-0.042885695,0.0014467706,-0.00057028106,-0.046519827,-0.043667577,0.06490957,0.0756332,0.010225807,-0.0341297,-0.01166002,-0.06873547,-0.042077497,-0.044508614,0.021120943,-0.05349064,0.05563323,0.059946958,-0.009490532,0.074191496,0.027787851,-0.1176323,-0.08447725,-0.035844717,-0.028090661,-0.030313002,0.038778543,-0.03735138,0.020209271,0.0091087045,-0.01893658,0.047849998,0.0016147617,-0.046790145,-0.02192957,-0.11618586,-0.034837607,0.042953398,-0.054788806,0.1076126,-0.0059309555,-0.03105174,-0.03841192,0.050002553,-0.02757964,0.026724739,0.011311626,-0.002183557,0.03238836,0.0032315017,-0.0039885254,-0.07692451,-0.018210437,0.040855214,0.070527,0.09527417,0.021515757,-9.488652e-06,0.04638084,-0.03806208,0.059112027,0.005421325,0.021382628,0.07429988,-0.010486366,0.080016956,-6.0004413e-33,0.010248217,0.03851018,0.085266255,0.08000319,0.061097283,0.009149305,0.013157186,-0.097667396,-0.007391783,-0.031226764,-0.06397632,-0.09887902,0.053947404,-0.030137297,0.0038521925,0.03145844,-0.031827886,-0.04427708,0.008812682,0.0004921415,-0.028378062,0.05371194,0.023469262,-0.022481546,-0.019935573,-0.03554604,0.027656741,0.049894024,-0.124622226,0.051400386,0.027772635,-0.048783094,0.021677965,-0.035172142,-0.051229503,0.026251463,0.04094331,0.10880536,-0.040515468,-0.002190974,0.058823407,0.025368951,-0.040984925,0.060678486,-0.02943141,0.04091446,0.041306335,-0.08383524,-0.000587151,-0.008232113,0.15128298,-0.010963762,-0.063365415,-0.06017399,0.079721674,-0.0036643008,0.03190593,-0.07274441,-0.087001935,-0.0026586766,0.01514232,-0.034072243,-0.033297025,-0.020676339,0.027252471,0.04371784,-0.0033489678,0.044384386,0.038051262,0.075383864,0.013536396,0.06368473,-0.031742755,0.029445175,-0.03817899,-0.010795724,-0.08179929,-0.017663958,0.03396915,0.013913633,0.03464409,-0.05184222,-0.0017982431,-0.010461882,0.011170687,-0.10945801,-0.02875404,0.049612567,0.01126372,-0.009809366,0.027241334,0.09611712,-0.024735149,-0.04228014,-0.041327473,-3.388684e-08,-0.018183306,-0.038955837,-0.09825999,-0.017362235,0.07868364,-0.06069807,0.025840348,-0.012749028,-0.004951366,0.025363453,-0.03984964,0.019635057,0.038770597,0.051818132,0.023959916,0.057450227,0.100960426,0.15224655,-0.01782508,0.047543745,0.073322505,-0.0033646224,-0.06531742,0.003786601,0.014197379,0.011851086,-0.015884237,0.028365027,-0.017800767,-0.12181079,-0.020493746,-0.011958186,0.0024550192,-0.008502994,-0.09726437,-0.029372437,-0.028060703,0.035752658,-0.059037596,-0.010438827,0.07481672,-0.010355403,-0.01765077,-0.0011461797,-0.058291964,-0.04854672,0.0047972677,-0.012117421,0.03636135,0.11757394,-0.0881549,-0.027350452,0.018392833,0.0045903292,0.07020884,-0.043800168,0.014310283,0.0077888966,-0.054607905,0.0024341964,0.031507675,0.09409249,0.085448,-0.034330674} 0.7 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.724331+00 2026-01-30 02:01:11.930229+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2092 google Ci9DQUlRQUNvZENodHljRjlvT2xvM2NEZEJiRjlsYTBNemMyZ3lSVTVvU2swNU4xRRAB 1 t 2095 Go Karts Mar Menor unknown Leuke plaats leuke plaats 5 2025-10-02 00:52:39.833374+00 nl v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Leuke plaats"} {-0.11046248,0.095349036,0.006574228,-0.0942624,-0.05325053,0.030059349,0.09576105,0.11658986,0.015642844,-0.02881617,0.07252798,-0.082944795,0.034986135,-0.04286972,-0.012221331,0.0076034106,0.082802445,0.0334787,-0.097578816,0.00253814,6.885106e-05,-0.005596691,0.041686125,-0.008850428,0.011935024,0.030957857,0.0909387,0.01015812,0.008887974,-0.04424351,0.05012821,-0.039483897,-0.07239801,0.0038591342,-0.009527066,0.0009922633,-0.013007361,0.05432055,-0.027641334,0.076681145,-0.017328784,-0.031214874,-0.005634395,-0.09842785,0.008022456,-0.0334812,-0.08803898,-0.08384256,-0.020641318,0.035413235,0.0017956004,-0.040828273,-0.0019716653,0.03829949,0.09012177,-0.03600553,0.011178533,0.005313085,-0.01874046,-0.012792408,-0.06252564,0.035265326,-0.0341964,0.0048939846,-0.008271033,-0.014604944,-0.010088773,0.021780303,-0.08437723,0.07044917,-0.035471294,-0.032339085,0.0053632255,-0.035780583,-0.025649063,-0.079437435,0.01716634,-0.050646335,0.011497783,-0.0011643457,-0.0047237454,-0.03738584,-0.0025775318,0.057712883,-0.03030642,0.03850257,0.056274008,-0.014558925,0.067007,-0.0061551603,0.024145985,-0.0412717,-0.03402752,0.046750564,-0.073429964,0.048438597,-0.041751914,0.005877095,-0.084728636,0.091387525,0.0076242955,0.039795198,0.070581704,-0.04531482,-0.09868285,0.0136108445,0.07691381,0.03597236,-0.014977527,-0.04405427,-0.046098005,-0.072453946,-0.011259721,-0.01516091,0.020219795,-0.053789187,0.012862411,-1.8810359e-05,-0.013489866,-0.11369055,0.021162283,0.026595535,0.06233598,0.050573904,0.045351285,-0.010661479,-0.043794457,-6.209706e-34,0.06437761,-0.09676363,-0.021963144,0.02296281,-0.106525294,0.03502464,-0.031313356,0.033719447,-0.10848355,-0.01248549,-0.02177745,-0.076352865,-0.12875597,-0.049280744,-0.012234014,0.054455686,0.0018806647,0.033066377,-0.05366923,-0.009456063,0.07409688,0.00048934104,0.026935225,-0.06267414,0.021056356,0.007630171,0.08125702,0.013680897,0.020424688,0.044782784,0.0589906,0.023690786,-0.021745803,0.0035226701,0.0019818414,0.039147332,-0.051920917,-0.0029913653,-0.015690818,-0.005494764,0.09097954,-0.051615637,-0.06541445,-0.015035274,0.08662029,0.06689172,0.032130297,0.023083279,0.044620767,-0.0048920945,-0.050171886,0.016010325,-0.027130045,0.10458518,-0.03357971,0.034763835,-0.019334693,-0.031213282,0.01919448,0.003610139,-0.014326027,0.028214216,-0.03140053,0.0014416262,0.013040623,-0.06833861,-0.023079658,0.040020786,-0.023993487,-0.040365055,0.051242247,-0.092589416,0.095244355,0.011514315,0.052112818,-0.08995756,-0.03471265,0.07315421,-0.07910395,0.098750606,0.024059864,-0.022766545,-0.0052455813,-0.05052381,0.057789203,-0.043166377,0.007267605,-0.11749085,-0.0014181088,-0.014680792,0.0018608334,-0.048539236,0.035216447,-0.08511542,0.010953691,-4.7586583e-34,-0.0029434995,0.0046170866,0.07007522,0.07630194,0.11512802,-0.09269495,0.023474576,0.115652904,-0.02423437,0.011035499,-0.045441084,-0.029800033,-0.007852872,-0.051392056,0.088863075,0.025568519,0.10482309,0.004508191,0.041150462,0.0061879093,0.027849376,-0.0333454,-0.038951647,0.044821754,0.07077885,0.041879345,0.084019154,0.07962391,-0.028578274,0.0065304316,-0.0725417,0.06239844,-0.044960435,0.03754182,-0.06016917,-0.02409792,-0.0033104436,0.07387651,-0.05084398,-0.035209,0.0059994264,-0.054944858,-0.061546694,0.117923155,0.07076884,-0.016456572,-0.073136315,0.08270224,0.09420131,-0.039058596,-0.03691814,0.0050062146,0.036814284,-0.03317303,0.0983696,-0.0046287673,-0.035944313,-0.0036070577,-0.0042973063,-0.043178014,0.03133187,-0.009875722,0.00653835,0.072626084,-0.003509328,0.011849627,0.050645493,-0.09482998,0.03741321,-0.030386966,0.015467919,-0.048263907,-0.079104565,-0.050781205,-0.016706277,0.01336241,-0.10247934,0.04096405,-0.022653207,-0.03534524,-0.061854217,-0.094552234,0.009760885,-0.018449508,0.03580619,-0.022651002,0.041101348,-0.032579906,-0.046555642,-0.04786275,-0.02422253,0.061008867,0.092094444,0.088570744,-0.020651944,-1.6715248e-08,0.0078087198,-0.045513872,-0.02796768,-0.008065089,-0.012611501,-0.030790474,-0.04789702,-0.01690361,0.0030198267,0.11550101,-0.015876638,0.11009122,0.009737584,0.09097027,0.10321204,0.0072873137,0.060396656,-0.047948163,0.0025181235,-0.025053784,-0.0077745216,-0.056800805,0.05230385,0.002978559,-0.052108325,0.058946412,-0.038206175,0.066048,0.043841597,0.0024909063,0.017859071,0.02794884,0.008092659,-0.030552233,0.043642476,0.029450312,0.01058521,-0.018566687,2.0995869e-05,-0.070796415,0.013272081,0.0051159747,0.13629654,0.015202974,-0.050358534,-0.033709057,0.09754563,-0.018612705,0.0074455547,-0.10161314,-0.054141246,-0.051295012,0.007965443,-0.043489087,0.09941099,0.05335128,0.035528816,-0.013958516,0.0075757233,0.051622692,0.057510767,-0.014449311,-0.014901135,0.019822119} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.73704+00 2026-01-30 02:01:11.933718+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2096 google ChdDSUhNMG9nS0VJQ0FnSURhNUttdnFnRRAB 1 t 2099 Go Karts Mar Menor unknown Bien moins cher que celui de Torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏 bien moins cher que celui de torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏 5 2022-01-31 01:52:39.833374+00 fr v5.1 V1.01 {E1.04,P1.01} V+ I2 CR-B {} {"V1.01": "Bien moins cher que celui de Torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏"} {-0.073218256,0.045738034,0.033250295,-0.06861893,0.017929422,0.07351035,0.057689637,0.085532494,-0.002145319,0.019771265,0.018724987,-0.048762105,0.025504895,-0.019862648,-0.0059234365,-0.030290395,-0.01666862,0.051642057,0.025223056,0.031846296,-0.011537041,-0.07537413,-0.004315641,0.076102145,-0.014114259,0.026033334,-0.03872589,0.016662642,0.054661628,-0.021658957,0.026377497,0.0740729,-0.017401341,-0.042191323,-0.03656575,-0.032823693,-0.0031309566,-0.098430134,-0.021048175,0.016102178,0.030240955,-0.015327237,-0.06990331,0.041361876,0.0030807804,-0.080992065,0.024058575,0.059163086,0.013263579,-0.00034232365,0.002533443,0.059163876,0.08776159,0.025072124,0.061369922,-0.027572896,0.060965143,-0.029870871,0.03596741,0.006311306,0.053991597,0.078110784,-0.009302747,-0.08684498,-0.015919533,-0.040553052,0.08060452,0.05432372,0.039874543,0.05921067,0.044946957,-0.045909345,0.048097726,0.039907865,-0.03311063,0.019551279,0.017039387,-0.037117567,-0.105103314,-0.022284018,-0.11908804,-0.038777813,0.003300979,-0.033611137,-0.067211844,-0.06903185,-0.008891722,0.037133984,0.09396225,0.017919341,-0.007441674,0.11034223,-0.068074785,-0.016605264,0.052597005,0.01504894,-0.005915977,-0.07796473,-0.06117058,0.033362035,0.052053902,0.08984701,0.0041243765,0.022575853,-0.018745214,0.002210145,0.0001056289,-0.019127429,-0.018971516,-0.011310995,-0.0109879505,-0.079461336,-0.01912467,-0.02558171,-0.053025402,0.060579713,-0.08890182,-0.044313088,-0.044214178,-0.056342848,0.097149916,0.01691355,-0.09654888,0.029624885,0.047030352,-0.0641298,0.051366158,3.711349e-33,0.00018575475,0.041511465,0.015311345,0.08743621,-0.0770931,0.07083997,-0.04439302,0.08283019,-0.04194035,0.0066577764,-0.079703465,-0.024201592,-0.039738618,0.027571907,-0.0792994,0.003961762,-0.06293955,-0.062034078,0.06995796,0.010808432,-0.024103334,-0.03183918,-0.04906714,0.020391779,-0.010800731,0.0055251983,-0.005061963,-0.024774821,-0.008157366,0.05767731,0.047150202,-0.02993109,-0.031844452,-0.037868105,0.020985968,-0.064218916,-0.04470114,0.044959176,0.022857059,0.013521403,0.094725765,0.03384073,0.01152999,-0.06814449,-0.018676944,0.010216518,0.00032985225,-0.10162125,0.052434564,-0.06131999,0.010523396,-0.06237239,-0.10993088,0.022566395,-0.017818801,-0.0046417136,-0.14033277,-0.03242508,-0.05150981,-0.07365139,0.071433544,-0.053679675,-0.0084053045,-0.055335794,0.047424708,0.007962159,0.06547239,0.038606357,0.0875916,-0.042243134,-0.15139242,-0.02258458,0.051622856,-0.022199469,0.03941107,0.049220707,-0.038305465,0.049682908,0.05282992,-0.007964844,-0.06329975,-0.04424216,0.024795247,-0.0048306687,0.04175161,0.10298694,-0.013162011,-0.010364565,-0.019958429,0.06960116,0.009742336,0.013352855,0.08514015,-0.051187314,0.011329692,-7.134443e-33,0.025729127,0.019324943,0.023956256,-0.004441964,-0.015916057,-0.011454548,0.005893605,0.044158142,-0.06675099,0.07134646,0.01799533,-0.15424705,-0.0010164907,0.007924848,-0.057126943,0.11141734,-0.007820689,0.026555795,-0.027854506,0.009380354,-0.07205412,-0.039787397,0.034375716,-0.03866463,0.029315969,-0.061591502,-0.013426763,-0.01414693,0.011201771,-0.005359747,0.075879164,-0.0057334392,-0.05345959,0.020804984,0.025010336,0.037839014,0.020961834,0.016428545,-0.00172241,0.017617142,-0.052729223,0.028419612,0.0048831073,-0.024614228,0.022236666,0.024867823,-0.025338687,-0.102466576,-0.09519702,-0.0076627266,0.060177155,0.011504105,0.0023160472,-0.027125949,0.08528165,-0.0052161235,-0.038675934,-0.0387771,-0.047050867,0.00020911876,0.0102322735,0.035795044,-0.022590628,-0.07851567,0.05314022,-0.010781389,-0.06293544,0.0295826,0.0764765,0.011058159,0.11188992,-0.048186768,-0.020146713,-0.01504068,-0.08251912,-0.011585391,-0.019685538,-0.0051226085,-0.0055191615,0.016289528,-0.101206034,-0.0065119425,-0.03058781,0.0053106784,-0.027953444,-0.018072575,0.05072794,0.048819035,0.039327864,-0.052796915,-0.07820947,0.003443827,0.032094546,-0.10526074,0.051581174,-2.8720377e-08,-0.019718923,-0.03360973,-0.1150836,-0.01850864,0.06209419,-0.043402363,-0.13766384,0.09665896,0.0056925532,0.08734763,0.02751143,-0.06071548,-0.07806155,-0.008955127,-0.010050207,0.035895616,0.0009248632,0.08313145,0.024191832,-0.052755784,0.080231786,-0.044927407,-0.011194306,-0.03753227,-0.02664229,0.018321846,0.014474452,-0.083754,-0.049506392,-0.042463288,0.04629045,0.024599774,-0.0733149,-0.043562226,-0.019628314,0.048362702,0.030674003,-0.0034542358,0.050574455,0.02124996,0.12436749,0.037375078,-0.071530305,0.0056235385,0.11019598,-0.052753035,0.13945474,0.052924205,-0.043923907,0.0010287872,-0.019093087,0.024156665,0.039683696,0.0072761024,0.01589947,-0.005532348,-0.05335239,-0.014364962,0.0301319,-0.003802267,0.109194405,0.06708965,-0.025248434,-0.099942096} 0.85 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.784857+00 2026-01-30 02:01:11.947559+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2099 google ChdDSUhNMG9nS0VJQ0FnSURlbklYVXl3RRAB 1 t 2102 Go Karts Mar Menor unknown Trato familiar, instalaciones impresionantes,una auténtica gozada!! Totalmente recomendado. trato familiar, instalaciones impresionantes,una auténtica gozada!! totalmente recomendado. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {E1.03,V4.03} V+ I3 CR-N {} {"P1.01": "Trato familiar, instalaciones impresionantes,una auténtica gozada!! Totalmente recomendado."} {0.051719252,-0.0013563833,-0.07706355,-0.022311203,-0.10577204,0.0044857976,0.053985335,0.06212852,-0.115395896,-0.0018989339,0.097450495,0.02295507,-0.10747337,0.07166768,0.009984332,-0.024521554,0.023633648,0.032996193,0.011943863,-0.03034935,0.017948804,-0.06820194,0.030242408,0.10166836,-0.100888506,0.011399351,-0.04601409,0.056511696,0.04164917,-0.07927109,-0.00306256,0.10908887,0.046707314,-0.054612506,0.011511609,-0.018165328,0.016486578,-0.022233322,-0.055091735,0.032867413,-0.049859583,0.014152597,-0.025910152,-0.02885865,0.025817072,-0.050063897,-0.0016627165,0.051463157,0.010961222,-0.023085585,-0.05419471,-0.016573895,0.0031065156,0.031319898,-0.062935375,0.04217167,0.02092991,0.015940063,0.008977273,-0.0011793976,0.043727454,0.02101302,-0.10605239,0.03333454,-0.06263531,0.031205516,-0.036724392,-0.054023225,0.038155586,0.039916936,0.07738731,-0.08142262,0.036189463,0.018726775,-0.066135004,0.037652012,0.0143974405,0.025450896,-0.0706376,-0.011153464,0.00092085457,0.03124213,-0.02420954,-0.011899521,0.063282885,-0.010216745,-0.035484884,0.037722725,-0.014010222,-0.017721483,0.048464995,0.07143764,-0.03647536,-0.0505357,0.023043403,0.033537515,0.016145224,-0.048283637,-0.018315172,0.014487229,0.030118307,-0.05643565,0.0953269,0.013820595,-0.08589726,0.0105983075,-0.046230815,-0.08101582,0.08398302,0.0430739,-0.11088619,-0.07711661,-0.040099587,-0.03230824,-0.08682189,0.023349637,0.014380759,-0.056376617,-0.007294153,-0.0072704414,0.07107566,-0.020209914,0.016148318,-0.02658021,0.11831747,-0.08780587,0.0048910445,3.7522276e-33,-0.014954174,0.05633897,-0.046521764,0.10106486,0.016236812,0.04755889,-0.042179585,-0.056773763,-0.0847231,0.04107082,-0.10609069,0.100469835,-0.045417257,0.029542863,0.032920066,0.076933496,-0.019870093,0.06677884,0.047808744,-0.029963937,-0.04646587,0.047784686,0.00827046,-0.0028257547,0.029660638,0.026410675,0.014332441,-0.05037962,0.02192305,0.024785837,0.014470312,0.025649354,-0.04544604,0.0022289632,-0.07760355,-0.009728024,-0.06853905,-0.025325196,0.044029664,0.005969283,0.052942008,0.027318642,0.010877868,0.046668436,0.06666014,-0.015760485,0.08327825,0.013814646,0.1068752,0.034728527,-0.085820004,-0.103177905,-0.04710284,0.062201872,-0.06870266,0.04093985,-0.07954877,0.08816732,0.06662877,-0.025954025,0.039593123,0.006072494,-0.020033028,0.008344213,0.03165122,-0.046631966,0.039349508,0.046344362,0.07288764,-0.003647972,-0.070828736,-0.12614971,0.06005077,0.006800664,-0.046070233,-0.006468711,-0.010854589,-0.030086245,-0.013305959,0.048007276,-0.05096547,-0.0006586666,-0.0030871793,-0.019154249,0.03367349,0.09526373,0.014614319,0.01736847,-0.047577597,0.07581781,0.03966564,0.07328006,0.0022096478,0.020710958,0.054318495,-5.0701606e-33,0.038442284,-0.09976057,-0.028986366,0.018093366,0.045224786,-0.015284373,-0.14720963,-0.01626612,0.00888561,-0.048448138,-0.06419323,-0.097245775,0.04294438,-0.07707075,-0.10455857,0.07360032,0.009588188,-0.015483512,0.04039007,-0.040523734,-0.031440906,0.005754501,-0.031864427,-0.051993903,-0.01981561,-0.025643272,0.0564589,-0.023515107,-0.03498136,0.03790567,-0.060377426,0.0052166404,-0.0629211,0.012964053,0.0070307916,0.052359942,0.088472106,0.08433618,0.018643511,0.053121343,-0.0022745698,0.061443448,-0.030428719,-0.035849947,0.009446575,-0.022284914,-0.08770828,-0.05217776,-0.054644346,-0.02322346,0.087735005,-0.034047145,-0.014398315,-0.049214702,-0.0018557671,-0.002258089,0.038528252,-0.084480084,-0.063140735,0.015099788,0.074179605,0.022969082,-0.034978352,-0.058358632,0.021116361,-0.013047677,-0.026231151,0.057005826,-0.028818322,0.094786406,0.03275289,-0.03419827,-0.058874793,0.00985897,-0.05388694,-0.019925395,-0.06553815,-0.018149136,0.041396737,0.0068787923,0.025611835,-0.013204419,0.053148016,0.017210409,0.029397802,-0.017271966,-0.033670124,-0.016904889,0.0031764389,0.08338642,0.038195543,0.048095025,0.006864555,0.020968987,-0.028706439,-3.006563e-08,0.04635149,-0.0785564,-0.04122111,-0.026635826,0.055040028,-0.098730855,-0.084994845,0.07208739,-0.03449396,-0.0063651623,-0.024300322,-0.10508194,-0.05927723,0.12714535,-0.0057795774,0.065400496,0.059226915,0.12504843,-0.049530443,-0.03398895,0.05993325,-0.046201993,-0.013660408,-0.00385593,-0.0028451951,0.010785434,-0.010234121,0.012626115,-0.017178914,-0.008681809,-0.072616704,0.03057052,0.060365323,-0.04707048,0.0369945,0.057465304,0.031151976,-0.049180247,-0.042618632,-0.105961636,0.062470425,-0.018512873,0.015842197,-0.03792909,0.03242698,-0.1317222,0.0037707184,-0.022155866,0.019532917,0.015050883,0.01862801,0.041201666,0.012132294,0.05782184,0.0825597,-0.009936665,0.06703548,0.014272609,0.029860822,0.06906292,-0.007168967,0.035319306,0.061665963,0.00948916} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.82236+00 2026-01-30 02:01:11.962719+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2100 google Ci9DQUlRQUNvZENodHljRjlvT25VeVdEUmpPRE5JVkRkVk1HOW9SM3BSUXpsblVtYxAB 1 t 2103 Go Karts Mar Menor unknown Me encanta. me encanta. 5 2025-09-02 00:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Me encanta."} {-0.010324262,0.016080882,-0.032048877,-0.008614374,-0.04847101,-0.08874804,0.13808073,0.02120731,-0.027406842,0.044352338,-0.0034262063,-0.069246665,0.036229264,-0.014515545,-0.0047066202,0.010165187,0.0061048376,0.009661667,0.013137625,0.020358356,0.001269502,0.04969642,-0.03850424,0.075704426,-0.043239713,0.034590133,0.0046621184,0.04153335,-0.036187593,-0.08623934,-0.047544144,-0.003408613,0.008169644,0.0077970824,-0.04202325,0.009975625,-0.016075304,-0.03920394,0.012053467,0.04334088,-0.0954978,0.021231737,-0.041308496,0.060785934,0.023404375,-0.10025921,-0.03505276,0.003450627,0.027905423,0.0033058217,-0.013219563,-0.0131363645,-0.045778982,0.039287332,0.081327535,-0.04412095,0.0022591231,0.025460556,0.047784854,0.02121779,0.095193215,-0.023281205,-0.102594495,0.062559046,0.004721287,-0.026964488,-0.0009180531,0.007482593,-0.106446415,0.06393374,0.11717621,-0.0507009,-0.08134454,0.11357951,-0.009196321,-0.0062502353,0.03941544,0.012425752,-0.03411468,0.03712418,0.03472214,-0.029788323,-0.05869343,0.00048264756,0.06067836,0.0009479316,0.049541675,0.03540587,0.03443682,0.03615012,-0.045306,0.04222734,-0.059278704,0.008045079,-0.052350484,0.00461638,-0.024355454,0.014036166,0.02343542,0.08969711,0.0763512,0.008118931,0.026343279,0.016783679,-0.05825813,0.04703262,0.028005613,-0.025179017,0.044820152,0.041949622,-0.07736037,-0.09872108,-0.062291183,0.046700485,-0.03408618,0.14778222,0.047274455,-0.02302263,0.081478655,-0.058642972,0.0052842437,0.045401573,-0.03651486,0.021122608,-0.012002377,-0.07481167,-0.027535122,-4.494156e-33,-0.07629401,-0.09409475,0.044333152,0.048898783,0.046644483,0.03496968,-0.008983533,-0.012290705,-0.10173603,-0.09210795,-0.08112334,0.08622979,-0.055071376,0.04096155,0.026894443,0.11287074,0.025619455,0.023291651,-0.056563396,0.009932161,-0.083863825,0.022575434,0.007677878,0.0047025396,-0.07628506,-0.026822565,-0.018066496,-0.05947866,0.021693816,0.0130414255,0.051004134,0.032644693,0.0043705776,0.000584805,0.040326584,-0.07551028,0.12726425,0.040702708,-0.005978726,-0.03687098,0.03240551,0.06332713,0.032676034,-0.020296484,0.020534657,0.01867634,0.08803894,0.08806394,-0.023449538,-0.028153634,0.038126655,-0.001061465,-0.04719239,-0.03930115,0.01183933,0.06644615,0.014547975,-0.004067562,0.03763375,0.011482972,0.0020580108,-0.020179287,0.050019525,-0.044004034,-0.06559024,-0.06684431,-0.03056549,0.094898425,0.078810096,0.002487331,-0.07726393,-0.03738031,0.011703577,0.040897887,-0.024914404,0.020780522,-0.06471809,0.04932279,-0.093034856,-0.0025851037,0.0009492027,-0.02069781,0.032546856,0.031646524,0.123794675,0.08795854,0.029748727,-0.05017521,-0.006962549,0.12432714,-0.03007482,0.07851232,0.02926763,-0.081715055,-0.0401124,3.4876704e-33,0.021108061,-0.005044502,-0.0062758964,0.06522246,-0.026128573,0.008133342,-0.023602454,0.028210452,0.0183396,0.004766745,0.069349505,-0.08312877,0.15639928,-0.0014177335,0.046265107,0.038327403,0.008706185,-0.017821534,-0.07039533,-0.13618937,-0.066954024,0.046582654,0.0017956496,0.013151431,-0.019798001,0.0012926734,0.08355158,0.012178494,-0.051836483,0.015748136,0.0003275275,-0.097480655,-0.060753793,0.03779525,-0.035406683,0.11201468,0.06940389,-0.08792175,0.022681672,0.0046210545,-0.043665484,0.06279131,-0.015667744,0.06931555,-0.004358396,0.0005467885,0.025086902,0.008023264,-0.10872865,0.03086121,0.059274185,-0.03488292,0.00904411,-0.01798262,0.083297744,-0.044622652,0.0010162499,-0.020781057,-0.051876467,0.023429949,0.029108988,0.08840783,-0.07780177,-0.087359644,0.050813235,-0.0038722546,-0.11699456,0.041848227,-0.011204339,0.0018889948,0.06013849,-0.09819607,-0.117614254,-0.02741311,-0.03086702,-0.02135334,-0.05255765,-0.009643613,-0.010320687,-0.061516453,-0.023669787,0.013942828,0.0248319,0.012976501,0.012271373,-0.03118291,-0.024965812,0.045337852,-0.006470256,0.03319414,-0.008057035,0.050453793,-0.0085710855,0.061762724,0.0006106977,-1.5728467e-08,-0.0064078835,-0.012404371,-0.04852957,0.010057858,-0.011220478,-0.045189857,-0.024876859,0.040884368,0.0030035584,0.018913392,0.03744475,-0.011180375,0.054285727,0.036139634,0.02290322,0.052315474,0.103426,0.027192261,-0.04375488,-0.02778417,-0.019025724,-0.008981533,-0.075190164,0.0028450189,-0.042602457,0.025390584,-0.03455264,0.08816293,0.049625892,0.021281695,-0.06766295,-0.011213587,-0.02052162,-0.048155844,-0.0012837581,-0.0011371654,-0.10314621,0.0018089123,0.020030959,0.007992715,0.08694636,0.08931127,-0.0066333283,-0.03576165,-0.077909485,-0.001621415,0.01975042,0.0058359,-0.02579844,-0.042300012,-0.074925005,0.028261922,0.12053611,0.049754348,0.069261335,0.022456473,0.02211141,0.026650118,0.008309525,-0.007617727,0.06039619,0.08538641,0.009663609,-0.079231516} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:18:46.834636+00 2026-01-30 02:01:11.966033+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2155 google ChdDSUhNMG9nS0VJQ0FnSUNNdnB1TnBRRRAB 1 t 2158 Go Karts Mar Menor unknown Muy buen ambiente para disfrutar el dia con amigos. muy buen ambiente para disfrutar el dia con amigos. 5 2020-02-01 01:52:39.833374+00 es v5.1 E1.04 {} V+ I2 CR-N {} {"E1.04": "Muy buen ambiente para disfrutar el dia con amigos."} {-0.03397233,0.06066983,0.048684083,0.013149619,0.009896591,-0.070433095,0.10255972,-0.016219825,0.036825206,0.037340727,0.07655447,-0.049437787,0.0050414973,-0.025036631,0.07175087,0.0039278264,-0.06947224,0.07777207,-0.030532973,0.066792056,0.08205955,0.040599033,-0.0690564,0.10950721,-0.12412662,-0.0053811856,0.04840741,0.025911558,0.019140901,-0.080216184,0.07611959,0.061077468,0.04346844,0.006588683,0.015008407,0.017507736,0.0926566,-0.07302775,-0.044468727,0.02008836,-0.10058866,-0.021456663,-0.027916007,-0.12829256,-8.930421e-05,-0.043976042,0.019509306,0.01664273,0.07279059,-0.073034,-0.0028719045,0.0192626,0.0062749474,0.016334722,-0.002493639,0.008746317,-0.029763537,-0.042959448,0.0997255,-0.022642402,-0.017803116,0.038918708,-0.07239093,0.046379387,0.02005975,0.004404455,0.030608708,0.019233242,-0.08280762,-0.002786094,0.016945004,-0.10627704,0.014600621,-0.0064544627,0.004232492,0.016408853,-0.027222285,-0.033740737,-0.030088067,-0.067749284,0.02259063,0.0147478655,-0.041542448,-0.061620396,0.019847892,-1.2610099e-05,0.009202109,0.009047791,0.008710201,0.0003346441,0.0007443348,-0.017081397,-0.0593262,0.049076058,0.015781567,-0.007941798,0.0067659463,-0.027655696,0.022216124,0.07311986,0.044386223,0.08499438,-0.019003106,0.064821295,-0.04678115,-0.062391233,0.026118238,-0.01640528,0.021136122,0.039553467,-0.03777442,-0.07014381,-0.0061035254,-0.051259693,-0.008368877,-0.08195562,0.027014416,-0.016066816,0.06823353,-0.07994604,0.053600598,-0.0083380705,-0.030864641,0.011863676,0.053169712,-0.039421815,0.0108640855,3.4630967e-33,-0.0086503215,-0.08176747,-0.026768906,0.041112203,-0.008431519,0.06520104,-0.0941246,-0.0020484217,0.057510607,-0.015482271,-0.043717694,0.05601512,-0.017450193,0.027496846,0.091014184,0.030586205,-0.02242783,-0.013383841,0.013264388,0.03721989,-0.096257046,-0.033616003,-0.032486804,0.060989644,0.00027022854,-0.016420538,-0.03306486,-0.044484995,-0.07185311,0.07198146,0.03566643,-0.014721444,0.0023452027,0.0049873404,-0.02920322,-0.06829245,0.047739424,0.08810498,-0.027369881,-0.069487736,-0.03450767,0.039634768,0.018293595,-0.0061337254,0.034547225,0.0575621,0.11886318,0.03340185,0.033662386,0.029247854,-0.05257234,-0.05079526,-0.016738074,-0.09360169,0.042791825,-0.016163947,-0.076191716,0.013141249,0.049621575,-0.03490666,0.05351742,0.057166044,0.03018291,-0.05256761,0.0038859535,-0.06679095,0.02519693,0.025425239,0.046318468,0.048759438,-0.04932814,0.012035732,0.016830476,0.0406804,-0.03935196,-0.0036615008,0.01378592,0.020015478,-0.018503584,0.035927445,-0.055429768,0.01596704,0.06592407,0.04403337,0.06490309,0.06361654,0.014625014,0.07469995,0.006240102,0.06369052,-0.06767873,0.040414497,0.03425666,-0.07482065,0.0034880436,-3.162301e-33,0.035150588,-0.016820658,-0.06760659,0.07698074,-0.02115398,-0.015171924,-0.028150221,0.06822016,-0.0023401333,-0.064259365,-0.078448005,-0.08790122,0.1083504,-0.05821836,0.016624521,0.11262148,0.011677418,-0.0395709,-0.08748984,0.038035486,-0.041495174,0.03933579,0.006630265,-0.013510798,0.011053548,-0.046775937,-0.019550161,0.047871403,-0.055483844,-0.045634676,-0.05522688,0.00627658,-0.024959894,0.06802162,-0.09250844,0.010570351,0.0083013885,-0.0007547285,-0.015940476,-0.017619452,-0.0018793229,0.09578266,-0.018716354,0.0046908357,-0.03303348,0.09212822,-0.019976914,-0.13537112,0.01176206,-0.063747145,0.039130494,-0.026732208,0.012914581,-0.046509225,0.044445373,-0.08359476,0.00025913247,-0.029495105,-0.11123666,0.013187684,0.12286674,-0.021146495,-0.03977305,-0.05505947,0.049539827,0.039655,-0.07342677,0.025263822,0.012633212,0.06325035,0.10547611,-0.091010354,-0.030297413,-0.04582787,-0.046371527,-0.017373595,-0.061642237,-0.030680247,-0.016361713,0.07251681,-0.0046290783,-0.052712064,-0.059096273,-0.05039107,-0.07640523,0.03307795,-0.0871563,0.004330237,-0.024367701,0.07112206,0.008492511,-0.012392424,0.0048099197,0.038695034,-0.040002476,-2.3062537e-08,0.010049558,-0.102510884,0.038625833,-0.014668226,-0.027925624,-0.010417183,0.058471184,0.0028174566,-0.014974954,0.04712805,-0.014682687,-0.046512224,0.007020469,0.11370664,0.03950405,0.10141737,0.04777998,0.06039253,-0.03742994,-0.05471296,0.08788134,-0.04242496,-0.03133836,0.07303076,0.060602296,0.017161883,-0.025550019,-0.036208335,0.05616602,-0.03238354,-0.056447405,-0.0064708875,-0.04214501,-0.04421974,-0.091526896,-0.022127185,-0.07201215,-0.0022439258,-0.03566177,0.08025511,0.087097645,0.035743807,-0.04238063,-0.019707385,0.036319476,-0.07535306,0.06561095,0.04168677,-0.043639757,0.048825204,0.02602488,-0.05225674,0.0933244,0.100816354,0.02955266,-0.06721414,0.03231557,0.031640824,0.044964224,0.021109117,0.07592562,0.14376307,-0.040026724,-0.033464003} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.756064+00 2026-01-30 02:01:12.171195+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2159 google ChZDSUhNMG9nS0VJQ0FnSURid2Z5UmVnEAE 1 t 2162 Go Karts Mar Menor unknown Genial, unkompliziert! Tolle Strecke genial, unkompliziert! tolle strecke 5 2025-01-30 01:52:39.833374+00 de v5.1 O1.02 {J2.01} V+ I3 CR-N {} {"O1.02": "Genial, unkompliziert! Tolle Strecke"} {-0.060229264,0.07577777,-0.070753284,0.018434191,-0.10901045,0.049605254,0.057912264,0.1195955,-0.013775907,-0.03534277,-0.01927621,-0.04563411,-0.043265928,-0.083229996,-0.08614755,-0.08160356,-0.084956296,0.075734384,0.034428105,-0.0018746674,-0.0111876,-0.03657979,0.028705463,-0.038042296,0.026892416,0.038405154,0.0012438793,0.041451357,0.07367794,-0.08181094,0.047996413,0.005693748,-0.023999818,-0.05960818,0.066126876,0.034384586,-0.045397222,-0.07267699,0.013965029,0.0368225,-0.016807783,-0.038581718,-0.16413876,0.012687276,0.045807388,0.03219542,-0.06657942,0.1028944,-0.07102433,-0.046375506,-0.0451338,-0.04057098,0.029534085,0.026186174,0.00028107254,-0.078064755,0.082843415,-0.016814142,0.009209926,-0.10594793,-0.025612295,0.003993451,-0.039290145,-0.004279453,-0.10057946,0.031320307,0.037201237,-0.014500221,-0.01443899,0.041007526,0.026965016,-0.0054503055,-0.014477232,0.018647324,-0.04421802,0.042610724,-0.028685328,0.024037769,-0.041240692,-0.007835511,0.057593487,-0.023764389,-0.046195958,0.008945815,0.034515623,-0.03185861,0.0062600314,-0.046500035,0.13142069,0.056563333,-0.040861767,0.016373351,-0.030026555,0.009124313,-0.039551716,-0.027836189,-0.022784622,0.014249275,-0.07001535,0.039711297,-0.01221985,0.031449683,0.09190721,0.11026568,0.007452507,0.037022498,-0.025901714,-0.07861201,0.023879075,0.005720684,-0.07419967,-0.058575336,-0.006555974,0.014902552,0.055294015,-0.02023376,0.032471318,-0.03211911,0.024265539,-0.004092364,0.07108444,-0.0405042,-0.10382194,0.035761453,0.0296304,0.03349559,0.04983063,9.557595e-34,-0.091109835,0.013634206,0.03674959,0.031125061,0.0003273708,-0.0065543707,-0.14117278,-0.019363025,0.013460157,-0.0080456035,-0.05442915,-0.011087631,-0.03395798,0.04519323,0.048607334,-0.021589207,0.008666279,0.023287507,0.09280226,0.0011743257,-0.025892453,0.028964734,0.04936481,0.004260776,-0.014289802,0.009261597,0.059658334,-0.05278603,-0.026915561,0.038834725,0.03174821,-0.074997455,-0.03726276,0.018424379,-0.066699184,-0.035087295,-0.020549037,-0.04899573,-0.02093952,0.023172064,0.01976832,-0.040668175,0.0128661785,0.0043214345,0.02613808,-0.036008086,0.06741914,0.0016806596,0.03227499,-0.033166926,-0.06284438,0.012151119,-0.063341126,0.027436767,0.0042141518,0.028796319,0.014602496,0.053717386,-0.034086224,-0.089897424,0.025247518,0.029703658,0.07037946,-0.06437499,0.08761413,-0.04325709,-0.008015156,0.08079124,0.0044576502,-0.030549418,-0.024333159,-0.04137398,-0.031524613,0.019550292,-0.08473243,0.060600117,0.03248215,0.0626443,0.086692445,-0.042221434,-0.042429116,0.066693395,-0.04867995,-0.11598292,0.112037785,-0.026129795,0.016109662,-0.042785622,0.0062920484,0.081227764,0.025144383,0.0023723398,-0.020460729,0.015466417,-0.03251723,-3.2674416e-33,-0.051817458,-0.031570535,0.00010955604,0.06400424,0.02563615,0.024632756,-0.10913657,0.060588684,-0.02587496,0.04460946,-0.04527357,-0.072005175,0.05493312,-0.03497071,0.034133356,0.034234174,0.07232908,0.033219643,-0.03887496,-0.040949397,-0.0012409114,-0.019248137,-0.024774197,0.06602222,-0.064065054,0.022487937,0.03718516,-0.042585403,-0.096642084,0.024161493,0.0064369254,-0.016873313,0.060275435,0.035493795,0.038476452,0.07904651,0.14639476,0.08782615,0.015995344,0.030706914,-0.009636603,0.07082474,0.01011827,0.05913979,0.032635286,0.012268056,-0.11890791,0.0322882,-0.047762696,-0.012302087,0.009672075,0.13642864,-0.03360923,-0.022876237,-0.02933809,0.032109708,0.031412102,-0.07925294,-0.035685647,0.044278987,0.11264311,0.012980966,-0.011987079,0.013255044,0.1043809,-0.11639134,-0.0410381,-0.013843946,0.049178757,0.0039625056,0.009198518,-0.020881407,-0.08151442,-0.02207097,-0.026945107,-0.001877339,-0.02154975,0.037543748,0.03459142,-0.06590379,-0.06702999,-0.006642032,0.0072957017,-0.016202036,-0.07166411,-0.104112975,0.06709225,0.0026582647,0.040476754,-0.016822634,0.08604412,0.020986136,-0.05972342,0.019592999,0.020454634,-2.0695913e-08,0.08910837,-0.000578357,-0.01774841,0.043216467,0.091501676,-0.14852765,-0.13006392,-0.06565437,-0.06831616,0.03778054,0.0033312116,-0.01795878,-0.044851393,0.058070544,0.07895604,0.03492756,-0.03898237,0.028856115,-0.052507702,-0.02857221,0.07493674,-0.019899063,-0.055746887,-0.042938836,0.027765974,-0.04022029,-0.008475598,-0.009619636,0.022162657,-0.058629666,0.033563066,0.08495266,-0.055567384,-0.0013627784,-0.030076057,0.03768294,0.029584296,0.002883099,0.012528244,0.04960052,0.030802218,0.034395922,0.06516747,0.0061449613,-0.06699874,0.026055971,0.01021548,0.026910089,-0.047887538,0.029063862,-0.08554456,-0.013109256,0.038829256,-0.000100620826,-0.010707128,0.04562564,0.036230814,0.025919136,-0.07768137,0.03585859,0.018516831,0.022658983,0.023710685,0.007968102} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.823989+00 2026-01-30 02:01:12.186656+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2160 google ChdDSUhNMG9nS0VJQ0FnSURPN1p5SjJBRRAB 1 t 2163 Go Karts Mar Menor unknown Buen trato. Muy simpáticos. buen trato. muy simpáticos. 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Buen trato. Muy simpáticos."} {-0.009483178,-0.008031837,-0.03700003,-0.023013324,-0.11936484,-0.0006069609,0.12592249,0.046962235,-0.009123792,-0.030155411,0.103863895,-0.025771404,-0.03724459,-0.07010237,-0.05097192,-0.002929955,0.005259421,0.109746836,-0.027892707,0.026764026,0.046078786,-0.018767247,0.031907238,0.08731387,-0.06690016,-0.05028172,0.039830733,0.0054437853,0.0031591747,-0.036747333,0.026072782,0.06850939,0.015950544,-0.06689792,0.017016469,-0.08379655,0.0074842144,-0.054319285,0.07279823,0.041079987,-0.06923137,-0.043814413,-0.04319715,-0.013138952,0.007501592,-0.099810235,0.01959972,0.09334858,0.0052954634,0.025234153,-0.08270099,-0.054368045,-0.0028875608,0.015567785,0.014806407,0.0055763046,-0.029452613,-0.016985234,0.019935783,-0.034556907,-0.015606837,0.04131478,-0.021991165,0.03403822,-0.018091384,-0.033500023,-0.037269097,0.025558168,-0.018298822,0.05068592,0.08440271,-0.11270188,-0.019966142,0.04394184,-0.07929018,0.058822352,-0.007597402,0.0077780974,-0.027576255,-0.033717815,0.021776455,-0.041900273,0.016056513,0.0068565994,0.029869562,0.0007050974,-0.028938387,0.057426024,-0.03603325,-0.015245382,0.05184275,0.02250214,-0.002803402,-0.008924563,-0.035048403,0.035127297,-0.00048202765,-0.029130647,0.03206748,0.045651812,0.0030089247,0.0071617654,0.13329299,0.05394549,-0.08762455,0.017345473,0.06578578,-0.07329449,0.06845215,-0.036040552,-0.05069473,-0.06898572,-0.025209334,-0.032660175,0.03977835,0.005369879,0.02953665,-0.0029043457,0.011905268,0.002356283,-0.0072771814,0.09408779,-0.06727312,-0.022599926,0.0928123,-0.01704151,0.07859159,-9.830028e-35,-0.014201144,-0.07419563,0.011135136,0.04199067,-0.0026676606,0.04159436,-0.06950109,-0.034766287,-0.07401548,0.04052866,-0.09167433,-0.0003583386,-0.032752488,0.011583914,0.030325139,-0.014684842,0.00079386344,0.0036395672,0.10179786,-0.029085435,-0.069077946,0.0068574063,-0.0578459,0.036789656,-0.02889885,0.0065210485,-0.04927107,-0.03290053,-0.05309552,0.055315632,0.10421742,0.042822834,-0.007010985,-0.009263516,-0.13606067,-0.058655735,-0.05383141,0.044554476,-0.070404895,0.032617893,0.03262373,-0.005829142,-0.020648334,0.024161154,0.0063717715,-0.030850189,0.039067436,0.0041419407,0.09411667,0.04752955,-0.01252651,-0.041217744,-0.031938914,0.0013996358,0.017404148,0.056693736,0.0053776093,0.079508215,0.016764322,0.017072666,0.06867114,0.030372508,-0.017846895,-0.019805929,-0.057786673,-0.021978436,-0.034483276,0.003626902,0.03998461,0.03381745,-0.054470632,-0.05672967,0.012621403,0.016566135,0.008907513,-0.011206417,-0.050683513,-0.040985685,-0.030546233,-0.041407738,-0.089322045,-0.06762887,0.031206507,0.043663893,0.046549566,0.08439289,-0.038328823,-0.012954657,0.012889417,0.047401994,-0.05387279,0.0034735634,-0.018683232,0.003514938,0.0049837125,-1.4875476e-34,0.0034208256,0.01668185,-0.01432023,0.115555294,-0.02416166,0.032125,-0.072052635,-0.001901898,-0.043899752,-0.035065044,0.010090098,-0.13715234,0.017796239,-0.043761432,0.009543628,0.12021788,0.076820455,-0.015301436,-0.08661776,-0.1002879,-0.06335953,-0.028954877,0.0010126411,0.038554206,-0.007184236,-0.0016654077,0.08393297,-0.017060213,0.01598728,0.055891033,0.0030923032,0.008519476,-0.024811149,0.061218493,0.049247574,0.054976545,0.0587507,0.07855919,0.019939102,-0.0007200368,-0.088335805,0.022974303,-0.025214259,0.061783295,0.031243302,0.027214961,0.0023057838,-0.11973173,-0.03273892,-0.053880397,0.05698071,0.029528676,0.06333544,-0.03402137,0.06081828,0.020559877,-0.081407666,-0.10961386,-0.0834049,-0.055113073,0.03316646,0.02185198,-0.019554697,-0.033526875,0.11431825,0.00072402024,-0.13515873,0.044381537,0.037790414,-0.0026145396,0.0671706,-0.10861438,-0.021806968,0.048595436,-0.09367466,-0.020884087,-0.016266255,-0.046483118,0.008928025,0.031050622,-0.04068215,-0.020313203,0.0010770902,-0.010776919,-0.033497494,-0.030826282,-0.057985395,-0.08376877,0.034431897,0.087827414,0.020093936,0.06876353,0.009033201,-0.014553953,-0.0018021241,-1.835184e-08,0.048723772,-0.08845146,-0.042450912,0.054374713,0.08553491,0.0030814414,-0.10347966,0.038377553,-0.012340939,0.10220196,-0.072444506,-0.00346416,-0.031686395,0.13926831,0.025961684,0.1254224,0.073247835,-0.028764004,0.027373035,-0.051311582,-0.0065823714,-0.005487974,-0.009450705,0.0076406347,-0.0340751,0.042466942,-0.009330588,0.06775247,0.07560124,0.032842983,0.021797778,0.047258746,-0.02646166,0.003943246,-0.005353326,0.019551797,-0.04962208,-0.008481455,-0.05358016,0.04225418,0.063882954,0.0012542449,0.081513345,-0.054596897,0.059961557,-0.10129674,0.018864036,0.095004804,0.030764176,0.0021764392,-0.06276012,-0.014686406,0.0066669513,0.07211165,0.026949769,0.020429306,0.079353616,0.012421196,0.0038977468,-0.012699057,0.026392195,0.12738195,0.041401073,-0.06424077} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.837782+00 2026-01-30 02:01:12.191853+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2161 google ChdDSUhNMG9nS0VJQ0FnSURwMC1MY2hnRRAB 1 t 2164 Go Karts Mar Menor unknown Un buen sitio para pasar un ratito divertido un buen sitio para pasar un ratito divertido 4 2024-01-31 01:52:39.833374+00 it v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Un buen sitio para pasar un ratito divertido"} {-0.023160782,0.024258172,-0.0024928646,-0.041762102,-0.07503201,0.05182181,0.08028076,0.012486289,0.04011762,0.023912098,0.05787098,-0.043988883,-0.07642366,-0.0026014359,-0.023160866,-0.07667345,-0.05235041,0.06395623,0.01844874,0.062854476,0.027401606,0.017776731,-0.047640324,0.096073896,-0.08998359,0.025048478,0.04534062,-0.058485303,-0.029299615,-0.072208785,0.03228748,0.054989357,0.004969487,-0.08609072,0.015377046,-0.05011365,-0.062429857,0.010468336,0.06029545,0.021350428,-0.047226734,-0.07361359,-0.013699689,-0.024548229,0.027959434,-0.027265284,0.03513193,0.025525318,0.08113692,-0.009329081,-0.045869865,0.033397466,-0.0024455816,0.060094155,-0.05583124,-0.04106031,-0.027994107,-0.022050459,0.05456657,0.0148557415,0.009605101,0.0018825738,-0.042224124,-0.00033546478,0.011140443,-0.025177643,-0.0231633,-0.023422841,-0.046095252,0.048753172,0.108995356,-0.026672851,-0.015215065,-0.07911447,0.003626429,-0.053253505,-0.008282708,0.062022753,-0.05657586,-0.04784341,0.06780257,-0.032386295,-0.053518135,-0.022037605,0.018955193,0.009573385,-0.0535713,0.08859927,-0.006887866,-0.04916085,-0.010955687,-0.0010088296,-0.075770274,-0.027292674,0.047045335,0.009768905,-0.003227264,-0.08381395,0.0057360996,0.06022577,-0.0067412364,0.0511635,-0.015175646,-0.0063262745,-0.0139797665,-0.011654713,0.029308548,0.0008982789,0.04070167,-0.0006461399,-0.052496832,0.011420733,-0.04465701,-0.0462896,-0.07506309,0.014579121,0.051789597,-0.16476685,0.012556367,-0.020291692,0.032675218,0.0427869,-0.038492482,0.02683327,0.0063230256,-0.06509379,0.06485017,2.3970001e-33,0.00015349162,-0.10220623,-0.005456536,0.008626239,-0.005346009,0.023719737,-0.039771903,-0.089743316,0.020201232,-0.027522633,-0.06625261,-0.029873488,0.00325687,0.048922487,0.006321795,0.0033743016,0.042175665,0.034853287,0.120834425,-0.04719219,-0.065838784,0.027733536,-0.07840133,0.08344247,0.019491408,0.07431654,-0.08236286,-0.03688683,-0.07433576,0.083571374,0.028545097,0.022435417,-0.068868145,0.0033997782,-0.026294684,-0.058012605,-0.056017157,0.046994746,0.063901246,-0.0050489544,0.06689711,-0.007755207,-0.06705377,0.054250456,0.06710295,-0.11220088,-0.022589928,0.011938854,0.08631744,0.06325583,-0.008835674,-0.034187075,-0.016471175,-0.043493893,0.014519245,-0.060881514,-0.031805526,0.13948984,-0.083632804,0.05459199,0.07343778,0.036035277,-0.07579363,-0.032652635,-0.057699583,0.01836008,0.03341303,0.03736895,0.066366605,-0.031210514,-0.1684856,-0.044220086,-0.03582772,0.016148767,-0.032250077,0.001743855,-0.033168126,0.087180726,-0.010763043,0.0019894913,-0.026712859,0.018309996,0.07184921,0.07524498,0.04650793,0.07680153,-0.013278574,0.060038645,-0.02240962,0.027750308,0.037085325,0.044618588,0.013979555,-0.035176925,0.07478504,-4.8860973e-33,-0.018125487,0.023826184,-0.023460627,0.05991864,-0.06488513,-0.026033254,-0.06342791,0.003838944,-0.040676583,-0.0072572576,-0.05537474,-0.039760694,0.11086099,-0.035468612,-0.05725998,0.09567956,0.048191026,-0.026283728,-0.075696155,-0.028453868,-0.045197204,-0.02482316,0.09498223,-0.07546884,-0.028316325,-0.011343253,0.07639237,0.04436667,-0.0022663993,0.028778384,0.012704258,0.01109304,-0.04979701,0.0705928,0.036574088,0.014879068,-0.038145892,0.02652401,-0.032599572,0.07401936,-0.05540736,0.0065745953,0.006591241,-0.00030487933,-0.0025012242,-0.027463216,0.03515921,-0.054635018,-0.068748295,-0.053597078,-0.0054754615,-0.011592862,0.07191092,-0.038987026,0.0007234411,-0.08856361,-0.025869295,-0.06702978,-0.07392221,-0.03586439,0.1111429,0.06128007,-0.04577394,-0.06322586,0.07220665,-0.031341437,-0.12574503,-0.03793822,-0.02678606,0.085897505,0.10717347,-0.024734842,0.011657548,0.076385304,-0.04656052,0.102877535,-8.8888555e-05,0.011371066,-0.010820114,0.007175705,-0.11670495,0.016112791,0.010301738,-0.026272442,-0.023550034,-0.0025552616,-0.0714833,-0.04229167,-0.040672768,-0.030448895,0.031234048,-0.015376912,0.0054571666,0.0036849058,0.005918327,-2.1354163e-08,0.00016392591,-0.058925837,-0.08124377,0.042604357,0.012361618,0.011965759,-0.039152525,-0.018968297,-0.0018943021,0.04833425,-0.034490976,-0.005966767,0.11952279,0.03658735,-0.025786372,0.05656764,0.10462467,0.05006,0.011280725,0.011372415,0.09662155,-0.08863286,0.034252148,-0.033691593,0.029873699,-0.0034835592,0.005469597,0.06742295,0.0021688857,-0.09477898,0.07083574,-0.03864319,0.0053830566,-0.016215498,0.0040848637,0.056635465,0.02980942,0.04519343,-0.039929423,0.023587098,0.05081219,0.0035825153,-0.0029141498,-0.026249485,0.013846311,-0.032929324,0.0274675,0.08794194,-0.021443922,-0.012925593,-0.039237123,0.025841085,0.050637536,0.030995639,0.020853234,0.048411857,-0.0074950806,0.011145614,0.040425465,-0.022613741,-0.0004941524,0.18516368,-0.095967725,0.012705712} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.851558+00 2026-01-30 02:01:12.19927+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2163 google ChdDSUhNMG9nS0VJQ0FnSURwODRpcDNRRRAB 1 t 2166 Go Karts Mar Menor unknown Muy bien, mi hijo y sobrinos disfrutaron muy bien, mi hijo y sobrinos disfrutaron 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Muy bien, mi hijo y sobrinos disfrutaron"} {-0.07042953,0.021532226,0.059045345,0.06654838,-0.024470849,-0.04053922,0.08709995,0.061716564,-0.0018550114,-0.040927887,0.059318263,0.039374623,-0.046281867,-0.03771228,0.00014433087,0.05073488,0.00014157586,0.073954426,-0.08105951,0.084687054,0.056019474,-0.02791393,-0.041331727,0.14304093,-0.06607713,-0.038666837,0.00861573,0.057186272,0.036550976,-0.07747065,0.012301256,0.016992036,0.08817979,-0.01581556,0.03667613,0.035536736,0.09103234,-0.13611542,0.015205762,0.047194235,-0.094208196,0.009855213,-0.023939768,0.039947737,0.04327864,-0.054537132,-0.022257086,0.075265646,0.026713278,-0.015944952,-0.100157276,-0.02921218,0.04060133,0.05259772,0.017137136,0.02282747,0.0015955212,-0.018503822,0.059761897,0.006510498,0.0022095346,0.024851613,-0.04167275,-0.02469327,0.027411392,-0.0034091175,0.032407492,0.004014996,-0.015175169,0.053184237,0.11092912,-0.05315975,-0.016464995,0.028170817,-0.062295754,-0.00640755,0.01886275,0.005400442,0.012785328,-0.060491085,0.079845384,-0.03312517,0.032749776,-0.02365935,0.053262282,0.010017917,-0.1086367,0.023353335,-0.0019211065,-0.049747318,-0.074485905,0.024601413,-0.06709081,-0.0013406086,0.0076788208,-0.01279918,0.04182805,-0.028322412,-0.022853624,0.123606056,0.07208831,0.008984387,0.07063137,0.09703368,-0.0316944,0.041226637,0.044328842,-0.0031106651,-0.021829776,-0.02581836,-0.04006296,-0.029813705,-0.040425323,0.017886639,-0.0365786,-0.08257751,0.028483389,0.03941598,-0.06796193,-0.074511185,0.059639905,0.011231374,-0.04881828,-0.05591644,-0.06933591,-0.026691133,0.003977988,3.430292e-33,0.05957446,-0.04608654,-0.04647384,0.08284912,-0.06821238,-0.01543827,-0.040928744,-0.038576003,-0.027304132,-0.017599765,-0.03788888,-0.025244102,-0.031215064,-0.024049805,-0.005147542,-0.06335162,0.083183885,-0.028508667,0.08208923,0.059122384,-0.05236512,-0.032703295,-0.04985283,-0.008882463,-0.007970288,0.02616512,-0.04346518,-0.07816306,-0.097416826,0.076653294,0.01964495,0.014254327,0.00071411673,-0.0075537213,-0.048094768,-0.08687358,0.032053806,0.0009780568,0.018687615,-0.08484533,-0.0017237675,0.039523873,-0.04349866,-0.015557527,0.064996935,0.07878256,0.05285357,-0.002129652,0.07310415,-0.019345338,-0.0775614,-0.011333171,-0.05937502,-0.07276834,0.04156457,0.021985233,-0.015443055,0.024561953,-0.0011208463,-0.010945311,0.004637272,0.039963763,0.0056083766,-0.05033597,-0.036192037,-0.036806904,0.014741898,0.056446515,0.06486197,0.104246445,-0.09439198,-0.042604536,-0.0201198,0.03454656,-0.003053668,0.012207875,0.065968424,0.022706589,0.012315154,0.011897641,0.0029400564,-0.021572184,0.05658259,0.026125882,0.08241819,0.11977218,0.05307985,-0.03990958,-0.018120673,0.09818482,-0.06294251,0.043160405,0.06877336,-0.06987963,-0.03852336,-3.0212732e-33,-0.015337484,0.03821516,-0.03517658,0.018224837,-0.12358187,0.04779565,-0.07449331,0.053762216,-0.037907746,-0.00023695746,-0.0026768178,-0.13027507,0.03756724,-0.073062465,-0.002876662,0.07817515,0.019038297,-0.07261757,-0.07985182,-0.0014262063,-0.019129593,0.074610844,0.00703473,-0.008540304,-0.01803568,-0.032847267,-0.0014116808,0.047848754,-0.0049960837,0.022022447,-0.026213674,-0.055022664,-0.019487679,-0.020423928,0.019642271,-0.0011021821,-0.04794164,0.000889678,-0.02283723,-0.038620487,-0.027506497,0.06394524,-0.01128507,0.015157201,-0.024732675,0.06496488,-0.03507972,-0.11632114,-0.047769073,-0.00880877,0.018755496,-0.022907538,-0.017482266,0.05641856,0.0056907907,-0.1044002,-0.041233245,-0.06577482,-0.07112938,0.006363574,-0.006523782,-0.0103719225,-0.07556314,0.008242444,0.12024065,0.018202594,-0.05476878,0.0480977,0.12511167,0.015765224,0.089223005,-0.04173431,0.009031364,0.051651828,-0.038488496,0.0037724671,-0.07954798,-0.033553705,0.021198958,0.061043262,-0.014786055,0.019335303,-0.013269244,-0.02197196,-0.011887077,-0.06166929,-0.023934547,0.08193331,0.072383374,0.05149469,0.052413635,0.02513896,-0.014473629,-0.067245185,-0.0026599832,-2.2166606e-08,0.013311104,-0.07108358,-0.0052303574,-0.006852073,-0.0018297945,-0.037635848,-0.07965182,0.06519744,-0.010810988,0.10475212,-0.022008104,0.036803305,-0.03141776,-0.038232237,-0.039517764,0.049204465,0.07410394,0.098853625,0.01751638,-0.035711445,0.10825088,0.006415985,0.0758911,0.07516058,-0.005690292,0.004601211,-0.034907304,-0.056897175,-0.017338386,-4.0424442e-05,0.015094971,0.023702975,-0.05169817,-0.05178721,-0.070676185,0.019222574,-0.060671367,-0.034117218,-0.015399079,-0.015013697,0.03580103,0.025452072,-0.01796664,0.03909174,-0.016914885,-0.0879859,0.03837908,0.043820594,0.048085876,0.0123153785,-0.037468832,-0.041967448,0.06987511,0.045627423,-0.040136866,0.027072772,0.09433438,0.050234266,-0.06200368,-0.022972409,0.10245117,0.086991936,0.056162745,-0.12025696} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.87824+00 2026-01-30 02:01:12.206859+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2164 google ChZDSUhNMG9nS0VJQ0FnSUNVOE83SWJnEAE 1 t 2167 Go Karts Mar Menor unknown Super pas trop chère et mon fils a adoré super pas trop chère et mon fils a adoré 5 2020-02-01 01:52:39.833374+00 fr v5.1 V1.01 {O1.05} V+ I3 CR-N {} {"V1.01": "Super pas trop chère et mon fils a adoré"} {-0.06403957,-0.0038176212,0.050109025,0.016478539,-0.007333688,0.042561363,0.13697617,0.12356202,0.06825635,0.040338594,0.023397813,-0.005659255,-0.007075509,-0.06518593,-0.069905534,-0.07004445,-0.04395697,0.033063915,0.004641733,-0.036474805,0.043989282,-0.07564756,-0.033241425,0.07070445,-0.071477756,-0.050818946,-0.0009375564,0.0058533587,-0.028217718,-0.032476056,0.0080703795,0.039937638,0.018546415,-0.0420335,0.028400935,0.024932746,0.020615729,-0.13291226,0.06770207,0.0072798342,-0.049221925,-0.07997174,-0.04608272,-0.049352493,-0.036900684,0.019460086,-0.011562925,0.08502478,-0.03138861,0.005621046,-0.007207515,-0.0077977735,0.07699465,-0.04647797,-0.014555581,0.09800687,0.034189288,-0.011951969,0.04575902,-0.007897337,-0.0072730673,-0.040358275,-0.032125946,-0.016242294,-0.05598564,0.022028223,-0.061773967,-0.050565675,-0.0037898577,0.12458629,0.015090534,-0.06020555,-0.032972667,0.054766033,0.062460165,0.009874984,-0.072101735,-0.10063924,-0.07648826,-0.050531417,0.02584898,-0.032367233,0.010249302,-0.07656237,0.050420176,-0.034424584,0.06078771,-0.0020597915,0.0168084,0.0030811625,-0.02735942,-0.033636678,-0.09183358,0.0054149753,-0.018912178,0.046546336,-0.02170163,-0.089519165,-0.01528925,0.023479117,-0.005535431,-0.023970705,0.0035251877,0.08163864,-0.06579179,-0.052294858,-0.020107625,-0.049173504,0.016000044,-0.016796375,-0.003134595,-0.0633966,-0.0035966663,-0.08236281,-0.020735368,0.058202084,-0.043795954,-0.10285813,-0.009245751,-0.120454,0.03267911,0.067482725,-0.009606783,0.03212742,0.044486992,-0.035316307,-0.026310952,8.624921e-34,-0.06537802,0.08858814,0.020797491,-0.031893406,-0.02233513,-0.043978106,-0.044607755,-0.033380132,-0.0020295575,0.049432877,-0.02382069,0.019797876,-0.010502667,-0.06437637,0.047785483,0.021584261,0.055510353,0.067559786,0.073200606,-0.035336576,-0.035844956,0.043286048,0.054249972,0.019790111,0.08100942,-0.034922704,-0.02045087,-0.0013747851,0.013525109,0.0517697,0.067763485,-0.013315269,0.059795454,0.012200902,0.02948746,-0.096325226,-0.024980985,0.068977274,0.034516484,0.058997534,0.09587997,0.009842061,0.06680245,-0.05071858,-0.053039175,0.11174299,0.0611569,-0.0015957901,0.02194749,0.0046595754,0.058242097,-0.02090422,-0.12351005,0.07788524,0.05268949,-0.0065561677,-0.09078576,-0.007560577,-0.023107274,-0.02046142,0.12327119,-0.049637906,0.0020115257,-0.040255982,-0.032958068,0.031047411,0.06411832,0.031400483,0.030394634,0.025390977,-0.10305918,0.07548443,0.081893824,-0.03470687,0.025107944,0.0928853,-0.041735034,0.038666375,-0.03251528,0.042528737,-0.13483657,-0.054528877,0.019706305,0.0038562138,0.010779051,0.017222008,-0.017800061,-0.031739134,0.012701356,-0.0178984,-0.029788177,-0.019221203,0.0405332,-0.015258094,-0.08921089,-2.9103392e-33,0.0445757,-0.013939573,0.033627827,0.03170498,-0.054360088,0.02917664,-0.086264774,-0.04203747,0.005695962,-0.004727083,0.004785635,-0.00031564833,0.045931872,-0.062296778,-0.020547152,0.034204137,0.008365439,-0.023612421,-0.037064422,-0.038718432,-0.04836252,-0.06874033,0.052864693,0.0074554016,-0.009118542,-0.018801594,0.052128576,0.0033221547,0.03844205,0.018441627,0.06921855,0.028418912,0.028471565,0.068802595,0.053696644,0.047483467,0.037366793,0.088794164,-0.00022439181,0.038864717,-0.055491112,0.028103905,0.029195383,-0.015716048,0.062155873,-0.05429845,-0.036369596,-0.015352486,-0.04218589,0.013425762,0.037059885,0.020600015,-0.0015574789,-0.050338186,-0.020568699,0.044685435,-0.0025567114,-0.016167795,-0.08667612,-0.05545441,0.08394609,-0.007847516,-0.0039369953,0.0128087,0.07533829,-0.0036761467,-0.14223821,0.004769402,-0.035677664,0.015498937,0.08508044,-0.016639646,-0.08333963,0.055972863,-0.06986582,-0.025036769,0.016535517,0.0149543,0.015340357,0.046009988,-0.17557055,0.03922884,-0.056035835,-0.005449676,-0.030114148,0.036082588,-0.06375233,-0.032400332,0.08356872,-0.044540998,-0.028888535,0.030691314,0.08396953,-0.04929018,-0.011065049,-1.931811e-08,-0.039534062,-0.012053923,-0.07089387,0.064895965,0.105275534,-0.06175668,-0.041914627,-0.027269369,-0.02963524,0.07761462,-0.12398192,0.062127728,-0.033000153,0.024014762,0.0113846855,-0.006257776,-0.044621594,0.027087018,0.044217758,-0.09531853,-0.010336617,-0.018005993,-0.059246078,-0.10608209,-0.027887579,-0.04551409,0.056831803,-0.03644846,0.016960632,-0.015984787,0.035270512,0.04168695,-0.024293408,-0.032794017,0.033083454,0.002022239,-0.06911496,0.04194739,-0.0539785,0.096174344,0.08334664,0.060621813,0.07071787,-0.017592965,-0.030333947,-0.033562735,0.07187204,-0.0046943165,0.08966106,0.08321846,-0.03945062,0.023799196,-0.0032687136,0.065912224,0.023229953,0.027509898,-0.007791102,0.003677967,-0.014690859,0.0050896592,0.036879838,0.061977647,0.03616687,0.023565548} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.890855+00 2026-01-30 02:01:12.210663+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2166 google ChZDSUhNMG9nS0VJQ0FnSURCZ0lxVU13EAE 1 t 2169 Go Karts Mar Menor unknown Buen lugar para pasar un buen día con amigos o familia buen lugar para pasar un buen día con amigos o familia 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Buen lugar para pasar un buen día con amigos o familia"} {-0.04733179,0.05882555,-0.0408563,-0.038405277,-0.02700444,0.025405684,0.030573517,0.00028504163,0.0363093,0.017246064,0.07521574,-0.07528023,-0.052005704,-0.050152637,0.0030290675,0.06562703,-0.095474474,0.03336025,-0.09333124,-0.018054716,0.042070616,-0.048962723,-0.035401613,0.102946095,-0.09670473,0.04057081,0.050098702,-0.0052166507,0.004109456,0.013011091,0.07458799,0.011566434,0.08064717,-0.0004338912,-0.025169972,-0.015590107,0.07794474,-0.05601888,0.03125462,0.046226226,-0.059794705,-0.023713175,-0.016733075,-0.085022956,0.09963303,-0.053892355,0.030238759,0.059966948,0.010970787,-0.0023154092,0.029424563,-0.008365389,-0.03479942,0.01949054,0.029914286,0.042504333,-0.041486785,-0.07778487,0.065219976,-0.0059813135,0.0005026803,0.043168634,-0.060050145,-0.031405717,-0.07720704,-0.014153431,0.01546306,-0.0331469,-0.05407604,0.05934266,0.018264152,-0.03738945,-0.03590194,0.08419189,-0.0052393507,0.0041383915,-0.024301436,0.0059759384,-0.06712406,-0.050611347,-0.00018762985,-0.041967135,-0.05828107,-0.096523866,0.01810836,-0.008236836,0.040265374,-0.022931755,-0.012908604,0.011932008,-0.0019099419,-0.018938413,-0.031645134,0.03874098,-0.012250811,-0.018534102,0.037069224,-0.07806617,-0.0074707246,0.035283916,0.0067495927,0.06792664,0.09779176,0.03318602,-0.07528993,-0.039185617,0.041740347,0.02020611,0.026635662,0.051681153,-0.051757038,-0.07952802,-0.04813781,-0.003741208,-0.06444307,-0.0562088,0.00035959078,-0.11071233,-0.008360421,-0.0041775615,0.0033452704,0.02950904,-0.06568473,0.045017067,0.049017746,-0.100647196,-0.006068626,8.269677e-33,-0.018967856,-0.037006002,-0.013531118,0.056506496,-0.06745551,0.10145158,-0.03324139,0.003634716,0.011032586,-0.06353397,-0.046365302,0.026892178,-0.034991886,-0.011359258,0.045316044,0.061000306,-0.03524549,-0.026918141,0.053924013,0.06233485,-0.06322943,0.026118478,-0.04082191,0.0035863705,0.002900039,-0.039196093,-0.012943361,-0.050872102,-0.006151388,0.07686539,0.0564408,-0.028079554,0.027148087,-0.10395767,-0.079353064,-0.039051708,0.051332567,0.04721988,-0.048535515,0.008837348,0.0020683284,-0.002666848,0.023712283,0.04263339,0.03309548,-0.0081529915,0.117971785,-0.023340663,0.045935363,0.025901536,-0.05636762,-0.069616735,-0.07859811,-0.022064479,0.035309125,-0.084306695,-0.09109903,0.07026315,0.0059768273,-0.03596439,0.1348657,-0.011566097,0.00091249595,0.016881406,-0.057001274,-0.05954263,0.08110544,0.085339546,0.07440771,0.04217083,-0.010786597,-0.022595163,-0.039762713,-0.007057223,-0.043338515,0.06983078,0.030444054,0.018910788,-0.043563604,0.013114287,-0.036235917,0.0153297195,0.074725844,0.0678635,0.03635279,0.06172559,-0.027359065,0.021874538,-0.026158776,0.019538695,0.025454914,0.045153864,0.034085378,-0.05837658,0.044628,-7.987239e-33,0.061132353,-0.047260642,-0.039481945,0.05356579,0.0010043483,-0.019364575,0.0059024976,-0.014214329,0.022245083,-0.03838074,-0.0654893,-0.17021902,0.16664663,-0.043342087,0.003873572,0.053361487,-0.002187222,-0.02211436,0.004483943,0.010857173,-0.02281416,-0.0155608235,0.042420555,-0.027264534,0.053961813,-0.031724576,-0.0339297,0.006528939,-0.0884503,-0.07301937,0.024160558,-0.061375666,0.018123934,0.060507677,-0.05264776,0.017640235,0.036283173,0.056277145,-0.027073449,-0.04949445,0.057167966,0.037270453,-0.07219229,-0.01816736,-0.05511348,0.061789226,0.06431588,-0.10336991,0.059604593,-0.04409135,0.04226222,-0.016329499,0.028266732,-0.045929525,0.06423281,-0.07213827,-0.00707208,-0.021934181,-0.06394721,-0.008957434,0.03359652,-0.02614066,-0.071740925,-0.005877757,0.024297519,0.0007508965,-0.052058604,0.059037883,0.037082598,0.080851436,0.07423427,-0.092293054,-0.05918101,0.043592744,-0.08379477,0.009055261,-0.07573963,-0.03205054,-0.014019948,0.0786725,-0.035471566,-0.055378634,-0.008116526,-0.01780275,-0.09337039,-0.07840954,-0.033718012,0.026103836,-0.031986926,0.017952718,0.01384995,0.004712094,0.07552649,-0.06600434,-0.04677982,-2.9585056e-08,0.064212255,-0.054652512,-0.015503443,0.016118292,-0.00883794,-0.0047050067,0.030345272,-0.03261973,-0.054214362,0.069958515,-0.10632042,-0.016742287,0.011389347,0.066803865,0.016031245,0.041927647,0.07609597,0.017476102,0.067974664,-0.059205454,0.067461565,-0.012978947,-0.028095266,0.046824463,-0.017800672,0.03914069,0.016058369,0.04127029,0.052709352,-0.072212614,0.026688287,-0.04171872,-0.023342287,0.014604936,-0.032939877,-0.045828197,-0.073371135,0.040257633,-0.05038979,0.016360257,0.1634617,0.055931758,-0.015713552,-0.036774866,0.0791731,-0.0060154577,0.09458666,0.07338203,-0.010885484,0.031256706,0.016676279,-0.026070554,0.06408138,0.037998304,-0.006283327,-0.04218411,0.016233094,0.011649321,0.08517866,-0.015728675,0.09744901,0.15511075,0.007876231,-0.01872865} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.914994+00 2026-01-30 02:01:12.215813+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2170 google ChdDSUhNMG9nS0VJQ0FnSURlaWF6azRnRRAB 1 t 2173 Go Karts Mar Menor unknown Buen trato y perfecto para pasar un buen rato buen trato y perfecto para pasar un buen rato 5 2023-01-31 01:52:39.833374+00 es v5.1 P1.01 {O1.05} V+ I2 CR-N {} {"P1.01": "Buen trato y perfecto para pasar un buen rato"} {0.0072220596,-0.008546053,-0.012963492,-0.034051243,-0.05077618,0.0059373965,0.08867833,-0.021045927,-0.047392175,0.024549259,0.03871668,0.052739754,-0.10673813,0.001630939,0.006508282,0.011864856,-0.039877832,0.089974664,-0.02945676,-0.0068769855,0.060593087,-0.065147616,-0.023626689,0.08299906,-0.114869386,-0.063418835,0.030982858,0.00070219056,-0.0006701613,-0.03710992,-0.050935946,0.045652606,0.006502998,-0.032372855,0.006009585,-0.055033047,-0.022148183,-0.013486045,0.006488901,0.006073693,-0.014033095,-0.069357626,-0.014800416,0.019263538,-0.040708452,-0.08122065,0.07065254,0.07502306,0.06568817,-0.061747264,-0.04153286,0.0077934694,-0.04298142,0.010092092,-0.07217967,0.07915702,-0.022696452,-0.04701865,0.035179783,-0.010323293,-0.025983509,0.058487933,-0.031866092,0.01839949,0.090639524,0.0023929789,-0.04854198,0.0512901,-0.07640424,0.10117619,0.11591984,-0.072488055,0.012998513,0.08393114,-0.023315117,-0.008492131,-0.07012015,0.025412122,-0.07604604,-0.017622048,0.037277125,-0.040822364,-0.04587351,0.0056588133,0.03630652,0.013458384,0.02591958,0.055185456,-0.006953526,0.004137736,0.0029395812,0.09474582,-0.092662424,-0.018425787,0.013853571,0.05478992,0.053958077,-0.019222984,0.016592469,0.053911787,0.016014572,0.044377398,0.07751476,0.014881057,0.024463335,0.006990706,0.067615114,-0.0102418205,0.08670353,-0.00079720526,-0.045852516,-0.026692813,-0.004863743,0.015915299,0.04363026,-0.04188988,0.004884751,-0.038506914,0.014434784,-0.040466364,0.06526273,0.06351138,0.0031134654,0.041980635,-0.02692272,-0.062079743,0.027407391,4.995446e-33,0.009931003,-0.023703292,-0.008926365,0.0086829495,-0.048828267,0.08288652,-0.050828524,-0.05577607,-0.024716686,0.076235116,-0.0806389,-0.024936864,-0.019233694,0.012610167,0.032926567,0.0014820087,0.051415764,0.055778816,0.12905997,-0.04857832,-0.09051633,-0.004619579,-0.057747003,0.020415246,-0.01828669,0.037254546,-0.052344088,-0.036035288,0.0072358632,0.055753563,0.06278206,0.09201611,-0.02189348,-0.032057006,-0.09147657,-0.15562284,-0.018104877,0.01061524,-0.0024683303,0.026436115,0.07802423,-0.026761595,-0.02200367,0.037449535,0.08123744,-0.09608313,-0.020552395,0.015702123,0.029812923,0.07768323,-0.07504274,-0.04973381,-0.037676446,-0.07935805,-0.016961737,-0.055437468,0.02421372,0.08439375,-0.0024342577,-0.019593935,0.02098004,0.035211943,-0.06485455,-0.0818728,-0.062554814,-0.029621067,0.06318598,-7.097401e-05,0.044086855,-0.044700205,-0.04874893,-0.055306185,-0.015311161,-0.059288684,0.037193812,-0.026426712,-0.011946384,0.029215533,-0.03826012,-0.03471982,-0.10614474,0.050229397,0.043175716,0.042235408,0.060334247,0.079467095,0.038135856,-0.02156111,-0.029744077,0.056255814,0.03560761,0.06482854,-0.016708428,-0.022890363,0.037316345,-4.5383556e-33,0.011002387,0.004078149,0.0018195328,0.09527809,-0.075956255,-0.034267385,-0.1307201,-0.046453808,0.035727024,0.014104951,0.025797764,-0.16872546,0.08792991,-0.0048467265,0.040040467,0.047766306,0.014823001,-0.057551887,-0.09949843,-0.08794885,0.016478904,-0.061199073,0.048735697,0.010981321,0.025635626,-0.05723223,0.05163805,0.06832751,-0.022620369,0.035651784,0.09243678,-0.032220945,-0.08339486,0.08973403,0.05544936,0.00015323819,0.009598608,0.04528008,-0.0009821397,-0.02727754,-0.026393924,-0.00749898,-0.06823765,-0.016317518,-0.01194274,-0.033508774,0.06986441,-0.052764352,-0.015623497,-0.032227505,0.09830147,-0.04634401,-0.007929928,-0.06826008,0.029578965,-0.019731853,-0.062444165,-0.08695134,-0.0460347,-0.08638927,0.032385472,0.04490357,-0.035492193,0.0024773856,0.025709804,0.004614554,-0.016058106,0.10419056,0.00901714,0.08834982,0.02901651,-0.00662544,-0.086151145,0.09771243,-0.038832225,0.02299844,-0.00078137324,-0.021222463,-0.0017030283,0.0051608738,-0.07425119,0.019982891,-0.017144168,-0.023893673,-0.017628442,-0.001618313,-0.054318953,0.044370487,0.010338019,0.067415416,0.08588928,0.018389422,-0.030931495,-0.051602997,-0.06039976,-2.1948171e-08,-0.022828823,-0.02602512,-0.0710264,0.06321613,0.12219019,-0.086903825,0.0042523555,-0.047817953,0.027045976,0.03795732,-0.04540176,-0.045721233,0.030443897,0.0662374,0.014154544,0.077260286,0.061830826,0.006501172,0.03593534,-0.042867035,0.05271439,-0.0035536396,-0.0015905728,-0.0033420522,-0.013432982,-0.015307862,-0.02368236,0.044981338,0.015264623,0.024945386,0.062959306,-0.017794978,-0.021571126,0.007298164,0.040001344,0.03886807,-0.02189305,-0.003647728,-0.07061361,-0.05507265,0.07418334,-0.015427467,0.056652825,-0.037088066,0.011083766,-0.09723785,0.02743945,0.060932737,-0.0067100045,-0.049113583,-0.039207283,-0.013113371,0.078307375,0.030709032,0.029068092,-0.0006636537,0.02372324,0.015892114,0.032373715,0.02285369,0.040012013,0.18389225,-0.03508113,-0.034418903} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.965416+00 2026-01-30 02:01:12.227235+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2171 google ChZDSUhNMG9nS0VJQ0FnSUR2aWFtaldREAE 1 t 2174 Go Karts Mar Menor unknown Oikein hyvä. Suosittelen kokeilemaan oikein hyvä. suosittelen kokeilemaan 4 2025-01-30 01:52:39.833374+00 fi v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Oikein hyvä. Suosittelen kokeilemaan"} {-0.029122878,0.17943129,-0.047416437,-0.008034209,-0.047156427,-0.028853085,0.09832562,0.0072854985,-0.050903644,-0.045617998,0.058471154,-0.0083407685,0.04049164,-0.00202487,-0.06387554,-0.0013059999,-0.05597336,0.07360694,-0.10295499,-0.025388584,0.0027327756,-0.033343308,0.020525781,-0.002648768,0.013072419,0.0366259,0.020572342,0.042492177,0.0022673507,0.020792745,-0.0020810245,0.0058665923,-0.0018162292,-0.032812405,0.0074872426,0.029656192,-0.06020858,-0.030544963,0.0326899,0.061111424,-0.052555047,-0.02505266,-0.089525394,-0.049032457,0.0010855398,-0.03727653,-0.04463335,-0.022378495,-0.020176915,-0.016850661,-0.104808405,-0.09006792,-0.017038478,0.01139075,0.04871474,-0.08276744,-0.06061355,0.09567985,-0.0125109665,-0.098054476,0.031352468,-0.009051002,-0.017651662,0.01309359,0.008158513,-0.053047802,-0.028091235,-0.0005254742,-0.078650616,0.04908958,0.11048557,-0.01726833,0.028422583,0.060111348,-0.03297803,-0.033866737,0.016293917,-0.013522438,0.03941503,-0.0012996142,0.06083959,-0.06457344,0.0037993132,0.022952368,-0.057178207,0.026826408,0.00608773,-0.0147705525,0.011504664,0.025253989,0.0003093328,-0.04497352,-0.018097116,-0.1105379,-0.01116429,0.0007492387,-0.041339066,0.015719438,0.0009103247,0.07738684,0.021926623,-0.0006806199,0.038412973,0.030327631,-0.03131527,0.02332119,0.046227913,-0.057604827,0.024384994,0.057913106,-0.022025578,-0.09848108,-0.010940386,-0.09427419,0.01094162,0.06806561,0.011049011,0.06751946,-0.06019416,-0.0057411273,0.035085883,0.017165923,0.04307876,0.020850303,0.043365315,0.040540125,0.040293813,5.746026e-33,0.02994901,-0.0752451,0.043500084,-0.042433612,-0.014476451,-0.08647502,-0.06327048,-0.009019098,-0.0264823,-0.06108305,-0.020265527,-0.03826796,-0.035398923,-0.07513714,0.043066297,-0.024632787,-0.04394792,-0.024135247,9.646551e-05,0.12564504,-0.02038209,-0.06535025,-0.00089385535,0.087165244,-0.06338388,-0.09914959,0.053773496,-0.031826176,-0.016121503,0.044920918,0.09663539,-0.013409925,-0.08716066,-0.0060701203,-0.115660585,-0.005430846,-0.034468457,-0.019173391,0.009159262,-0.08997653,-0.028094564,-0.021529518,0.041742295,0.01773808,0.06110901,0.06720317,0.033304095,0.0064556175,0.09242393,0.020751346,-0.10112474,-0.032398857,-0.008170763,0.014032952,0.019900527,0.016675849,0.03611784,0.056934573,0.046971124,-0.012298712,-0.023481056,0.008133765,-0.025126193,-0.04341032,-0.043389272,-0.0665819,-0.030383518,0.0105909,0.006521296,-0.10269434,0.0051754653,-0.042263072,-0.071524605,0.08628666,-0.03619967,0.05311748,0.037136603,-0.023185413,-0.009784329,-0.043927196,-0.056740087,-0.0503337,0.0041507846,0.0072590713,0.018923944,0.07652421,-0.012568202,-0.09925622,0.04873106,0.113901354,-0.03106532,-0.014244094,0.059912317,-0.053079247,-0.05207845,-5.0587833e-33,-0.0031507371,0.024194423,-0.030258654,0.044938356,0.045687556,0.08105604,-0.122528106,0.063351914,-0.06878222,-0.033877116,0.0012937217,-0.12231591,0.04843038,0.08151642,-0.04009428,0.05396077,0.07481942,0.014126966,0.013012784,-0.012002513,-0.034913346,-0.015756957,-0.023481155,0.05142251,0.007715898,0.036651712,0.091999196,0.038099576,-0.056180004,0.072414994,-0.020669507,-0.062305562,-0.06745986,0.063329384,-0.01801554,0.0008464472,0.11354402,-0.012733978,0.0008182583,0.0031018988,-0.044680808,-0.0054600853,-0.014256152,0.088402875,-0.026251856,0.050960045,-0.026487999,0.05644425,-0.024000866,-0.10554055,0.014286245,0.06198029,0.029016078,-0.07543661,0.020052385,0.03975838,0.014003279,-0.02701,0.016646937,0.008867206,0.08791151,0.005496826,-0.050129943,0.1166798,0.014615441,0.013107579,-0.008416527,0.014504806,0.025772607,-0.06808354,0.005537051,-0.13572936,0.03348282,0.021428665,-0.03663178,0.013004609,0.014192132,0.032123387,-0.013028805,-0.012314736,-0.02367327,-0.05887769,-0.052607175,0.0033713938,0.022386469,0.007044929,0.074126475,-0.011917777,-0.027627833,0.046409033,-0.03781686,0.18962315,-0.040727623,0.043439608,0.0056916084,-2.4936474e-08,0.057332348,-0.08843427,0.025204008,-0.016806945,0.07786178,-0.001050579,0.037904672,-0.016465126,-0.026481202,0.08082152,-0.044146594,0.06610889,0.028841276,0.04565593,-0.014458843,0.024694445,0.077844866,0.10547859,-0.023362366,-0.08493761,0.05986244,-0.035134632,-0.01566405,0.023336431,-0.03832159,0.06592275,-0.018915743,0.037018634,0.026919378,-0.08677234,-0.0030265236,0.10481888,0.035345204,-0.046686955,-0.021606825,0.06394943,-0.015822899,-0.0026071523,-0.023708932,-0.016655235,-0.018983312,0.049768444,0.07628098,-0.02079314,0.044122662,-0.042486828,0.09324583,0.055982273,0.028166883,-0.06904032,-0.10464513,-0.027071746,0.011980523,0.051040523,0.025141664,0.012979594,0.02375561,0.026293248,-0.03287169,0.04708519,0.08300167,0.09532918,0.013886437,-0.00061369746} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.976884+00 2026-01-30 02:01:12.230464+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2173 google ChZDSUhNMG9nS0VJQ0FnSURLcGVYRGNREAE 1 t 2176 Go Karts Mar Menor unknown Muy buen circuito y muy buena gente 😉 muy buen circuito y muy buena gente 😉 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {P1.01} V+ I2 CR-N {} {"O1.02": "Muy buen circuito y muy buena gente 😉"} {-0.07393553,0.029433547,0.066589735,-0.044530712,-0.049944665,-0.0031729795,0.09696248,0.052906044,-0.0025881517,0.0022673067,0.08231175,0.008514176,0.06681998,-0.028664332,0.0012710032,0.092872724,-0.07712612,0.03164173,0.026598632,-0.05494442,0.09784139,-0.005653269,-0.050232247,0.10966986,-0.041719947,0.0024025796,0.038360544,0.042865764,-0.012502733,-0.08590383,-0.051431123,0.11320608,0.050338764,-0.00392763,-0.059944194,-0.030290583,0.09823002,-0.034893237,0.021662898,0.037860364,-0.075648144,-0.06568118,0.03382643,-0.010469065,0.019485608,-0.06916438,0.04975262,-0.013733502,0.07400254,-0.077805825,0.011373181,-0.021991115,0.016062867,0.06172051,0.010982706,0.038118288,-0.005192267,0.013798196,0.06107506,0.010523274,0.006246809,0.036473267,-0.01817837,0.00932217,0.020142775,-0.048487034,0.03970491,0.033996645,-0.093596436,-0.03291599,0.07325157,-0.08051109,0.012769057,-0.014399846,-0.05754118,0.05785403,-0.0024492112,0.008192167,-0.029165147,-0.037279263,-0.0234591,-0.057240427,-0.0011562274,-0.02708474,0.0097451005,-0.00087010546,-0.02498764,0.0010556313,0.023516495,-0.05790709,-0.052285433,-0.0045318245,-0.005608242,0.039644964,-0.007662214,-0.015883561,-0.009137351,-0.08877242,-0.03627925,0.099405535,0.066724256,0.043170154,0.11415029,-0.0012283365,-0.041171145,0.04417177,0.038290627,0.042912915,0.048146114,-0.041040223,-0.020016486,0.019976996,-0.06614483,0.034067936,0.025715616,-0.020428786,-0.008630304,0.0714766,-0.049577158,-0.11310583,0.018280856,0.030996682,-0.10192211,0.006762238,-0.026436469,-0.014411214,0.061590943,5.952376e-33,-0.05969682,-0.009308143,-0.024084741,0.045605246,-0.0020251512,0.050436,-0.04582519,0.035320524,-0.04683101,0.008027331,-0.055177733,0.04668392,-0.0074063023,0.045882344,0.08390177,-0.048896864,-0.073095754,-0.08707077,0.09117161,-0.014860936,-0.054588582,-0.05432762,0.0011195301,0.08327875,0.0026118208,0.016925728,-0.0061794133,-0.07732103,-0.025819873,0.048286468,-0.006049826,0.038100876,0.034250405,-0.053429276,-0.09538975,-0.066811636,0.04426649,0.023012253,0.02095264,-0.031528175,0.0062067634,0.007841401,-0.05198192,0.010102029,0.019524496,0.020725766,0.055553563,0.06469816,0.05979013,0.08705565,-0.1417514,-0.08269826,-0.061283864,0.010820209,0.05642544,0.0043490054,-0.034052793,0.08684532,0.014668042,-0.037016492,0.04597485,0.09220368,0.02315194,-0.0743334,-0.089337096,0.061822895,0.02190133,-0.011096207,0.06883526,0.0021816397,-0.07020435,-0.012856046,-0.11344096,-0.00409791,0.03279459,-0.04692924,0.0018626165,0.0065574297,0.044954773,0.00065617583,-0.10001712,-0.013467813,-0.017947499,0.046083402,0.087653674,0.09329244,0.08098843,0.02934211,-0.036157865,0.09975803,-0.052002564,0.021372616,0.10955561,0.013034438,0.021284338,-5.640386e-33,-0.034860037,-0.021681225,0.038559217,0.06548635,0.009360941,-0.05272954,-0.009935637,-0.0033588128,-0.063887335,-0.04654612,-0.0325689,-0.10517912,0.05549515,-0.0031649913,0.0034139135,-0.0046520582,0.041591696,-0.027493725,-0.07387814,0.008519476,0.029568076,0.0592695,-0.012665885,-0.009072661,-0.0777803,0.021011535,-0.059260737,0.054402266,-0.02136433,0.028658396,-0.014503581,-0.005825035,-0.05026982,0.09386588,-0.05418311,0.021803433,0.08606965,0.061382875,-0.023708256,-0.03145597,-0.005962586,0.087551385,-0.052572604,0.056563906,-0.09150975,0.0771505,0.0008261253,-0.091154605,-0.015456292,-0.019882182,-0.010304856,-0.03966947,0.02358253,-0.07257371,-0.044758853,-0.06888642,-0.008932151,-0.0205421,-0.09512467,-0.024415746,0.05269753,-0.029732319,-0.015711289,0.0035611747,0.066695,0.024014248,0.02229111,0.09402099,0.07490663,0.022404557,0.079106405,0.02098055,-0.017577149,-0.033645984,-0.07368341,-0.047240205,-0.13155007,0.0017988896,-0.050597932,-0.028830597,0.043544915,0.02728848,-0.048781842,-0.072223544,-0.05581346,-0.039715156,0.05618208,0.027144866,0.013781872,0.017990414,-0.005030867,0.07592833,-0.09830684,-0.058815163,-0.007230223,-2.588984e-08,0.003083747,0.0067784316,0.036933534,-0.040493004,0.04925939,-0.08737945,-0.032291647,0.0067513413,0.0070356247,0.00977763,0.013200499,-0.0005241029,-0.044955555,0.1072385,0.021385383,0.055572923,-0.008963551,0.10632979,0.008902544,-0.044509448,0.07143313,-0.009824376,-0.0113488445,0.10918419,0.07372682,0.014854811,-0.028169913,0.04000696,0.0015310633,-0.016067516,0.01047008,0.006102714,-0.0736057,-0.042005405,0.013659074,-0.022271119,-0.047615748,-0.03355874,0.019873757,-0.060986407,0.019349402,-0.10387276,-0.030726116,0.008805878,0.023291165,-0.078453675,0.041693404,0.011340728,-0.010928721,0.026866024,-0.032318074,-0.048556704,0.046157967,0.037752226,0.018454686,-0.024510685,0.048031874,-0.0060219057,-0.009880969,-0.016860206,0.0074081845,0.10231292,0.036669657,-0.14117755} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:02.997248+00 2026-01-30 02:01:12.238073+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2176 google ChZDSUhNMG9nS0VJQ0FnTURBMGFYZUtBEAE 1 t 2179 Go Karts Mar Menor unknown Circuitazo y los karts muy igualados! circuitazo y los karts muy igualados! 5 2025-03-06 01:52:39.833374+00 es v5.1 O1.02 {J3.01} V+ I3 CR-N {} {"O1.02": "Circuitazo y los karts muy igualados!"} {-0.0598588,0.041405052,0.015363517,-0.0062294225,-0.06576176,-0.0065394593,0.058328234,0.056639947,0.025277477,0.07546631,0.035132248,0.0045517567,0.014125776,0.038009074,0.02166801,0.048196837,-0.082619525,0.0228877,0.041856688,-0.07276016,0.08082384,-0.026318215,-0.06628806,0.11992565,-0.09194164,-0.051706232,-0.0024161653,0.051916543,-0.011406791,-0.09996129,-0.10858443,0.0915019,0.04763264,0.0080479635,-0.0029941613,-0.04816931,0.055432823,-0.08720313,0.012295981,0.009835627,-0.11725149,-0.034929905,0.014810038,0.017967073,0.004472247,-0.06445903,-0.06464543,0.037274305,0.008701727,-0.01006449,0.009491068,-0.070988685,0.06552388,-0.025727876,0.011387713,-0.00945694,-0.080713466,0.031971294,0.10763898,0.08396922,0.054143243,0.06396866,-0.08368877,0.054858197,-0.10857753,-0.04859956,0.069652975,0.06873792,-0.098945096,0.09540412,0.12760437,-0.0719751,0.019198269,0.03041287,0.029762348,0.021282975,-0.0019885255,-0.057850473,-0.09109824,-0.014636817,0.0147640025,-0.0388767,-0.002662576,-0.089680806,0.025787504,-0.027614716,-0.051787067,0.03975273,0.018962938,-0.023803879,-0.06458639,0.0037231133,-0.04398265,-0.016220197,0.023671802,0.0021814858,0.07794414,-0.058256846,0.004068368,0.060098063,0.11643665,0.016478442,0.078718655,0.0061345105,-0.011908423,0.043236542,0.006179893,-0.0040763943,0.008511386,-0.006510688,-0.016554946,0.037915092,-0.06987662,0.025601579,-0.07154172,-0.030643983,0.02005677,0.07190338,-0.018468216,-0.044996347,-1.8715473e-05,0.027681852,-0.06766733,-0.0033653176,0.009640023,-0.00013485295,0.030758658,1.1739268e-33,-0.08845956,0.02501952,-0.077001944,0.03164351,0.029969262,-0.04867855,-0.030805077,-0.004617031,-0.08506764,0.040465683,-0.05384268,0.053824,-0.0064862138,0.01901263,0.097651,0.042362846,-0.07132216,-0.08771074,0.023792781,0.015729079,-0.041785643,-0.030918563,0.008169851,0.05486576,-0.05717949,0.060311865,0.0094364,-0.100618504,-0.10895472,0.051372796,-0.017948741,0.043904617,0.019563416,0.02276573,-0.08980068,-0.021128403,0.038478583,-0.027915936,0.0046800044,0.0039853435,0.06363436,-0.027786704,-0.08066546,0.019778296,-0.057528734,0.04429617,0.038463477,0.044650972,0.10079274,0.025465438,-0.094078355,-0.06686238,-0.06328718,-0.059535597,0.020155642,0.028267743,-0.0017910643,0.035880502,0.032782882,-0.040146507,0.01223719,-0.0074183675,-0.0041844836,-0.07547525,-0.016119994,-0.0164347,0.017621249,-0.028457373,0.04877831,-0.00637902,-0.054963734,-0.066778705,-0.013456671,-0.011130923,0.07579828,0.0033011192,-0.046472803,0.038188864,0.00034760294,0.061539624,-0.080393046,0.0011174636,-0.016635632,0.038262557,0.092483014,0.077910766,0.06048243,0.025299383,0.009944325,0.10972146,-0.09675906,0.027142935,0.094956234,-0.012605916,0.053290162,-2.8840728e-33,-0.0018561345,0.009922209,0.0707792,0.07330346,0.018471258,-0.02726182,0.007041452,-0.009024567,0.008209192,-0.037144106,-0.017836455,-0.04761997,0.017567266,-0.033709615,-0.015087653,0.04166281,0.07331294,-0.0072590555,-0.039605852,-9.280844e-05,-0.04814524,-0.008029322,-0.029958941,0.014465342,-0.046109922,0.0019031239,0.015611012,0.004686489,-0.045045752,0.046798643,-0.019100139,-0.07106848,-0.0016168323,0.030908715,-0.032199513,0.03795467,0.006835347,0.072319016,-0.05354278,0.03783666,0.007812142,0.08665691,-0.056049693,0.052292954,-0.035941932,0.0467573,0.00068555487,-0.087686494,-0.05148551,-0.045547318,0.051541656,-0.006673387,-0.029615575,-0.05323152,-0.009353884,-0.024793018,0.022529816,-0.050958004,-0.042688172,-0.009551047,0.027643519,0.005334253,-0.031904418,-0.026585916,0.08442845,0.021469051,0.024632676,-0.0136652505,0.073504314,0.008571149,0.087040186,0.046132512,-0.07264851,-0.033988267,-0.09303634,-0.054925874,-0.12618357,0.0013642905,0.010485506,-0.042488594,0.05074114,0.0008423928,-0.0035270147,-0.0053689093,0.025607025,0.009654714,-0.009670234,0.05250471,0.073396966,0.017304217,0.065598644,0.12549017,-0.056944598,-0.0055313287,-0.020154372,-2.0898705e-08,0.032755334,0.012448784,-0.067594044,0.009285303,0.030166725,-0.075013384,-0.042942792,0.014552265,0.024230454,0.05720599,-0.0072313594,-0.0033422748,0.0248915,0.083677806,-0.0062166513,0.07506539,0.0092192255,0.13247347,0.019659566,0.00023976767,0.010218741,-0.006108309,-0.024726894,0.007952155,0.0065186997,-0.0018836091,-0.035501033,0.009229504,0.08153135,-0.026777405,-0.058530737,0.011759371,-0.11674586,-0.00927587,-0.020944836,-0.03579117,-0.037131652,-0.024416052,0.028593443,-0.09621304,0.028857797,-0.048994422,-0.064435065,0.017937409,-0.038342662,-0.078516476,-0.023253394,0.01289473,-0.016788797,0.032760438,-0.07018018,-0.054133587,0.02690267,0.07865096,0.09183477,-0.010371873,0.09631033,-0.028607216,-0.053517647,-0.029394723,0.019107513,0.053136017,0.075193726,-0.13907462} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:03.028565+00 2026-01-30 02:01:12.250279+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2177 google ChZDSUhNMG9nS0VJQ0FnSUR0aXNhNFFnEAE 1 t 2180 Go Karts Mar Menor unknown Todo perfecto!!! Muchas gracias todo perfecto!!! muchas gracias 5 2025-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Todo perfecto!!! Muchas gracias"} {-0.012762092,0.07179062,0.033277676,-0.030402875,0.002198873,0.02330442,0.071363896,-0.03494701,-0.0559603,0.054520804,0.03527587,-0.057985418,-0.035552975,0.0051599476,0.023219964,-0.030163098,-0.06912057,0.030568143,-0.037236266,-0.031825155,0.053108517,-0.06036253,-0.03773886,0.09996783,-0.14437737,0.059704702,-0.0007796878,-0.029563306,-0.10605847,-0.0664919,-0.009597332,0.10524542,0.0952846,-0.03560296,0.0023809455,0.03440062,0.00024773108,-0.06310562,0.005724028,0.016707147,-0.101362534,0.04058733,0.029556107,0.010064877,0.019038377,-0.02597304,0.058152158,0.051872104,0.07360859,0.050583232,-0.018481156,-0.0076504173,-0.039007865,-0.0135261705,-0.03833967,0.04713821,-0.042145096,-0.058316324,0.042311165,0.008239412,0.057882287,0.04992325,-0.073094584,0.014325246,-0.03289196,-0.03814193,-0.03723579,-0.03271061,-0.083723456,0.057682194,0.03697462,0.03610152,0.048851646,0.08505309,0.021174096,0.005028249,-0.014477675,-0.03643151,-0.072583,0.041559435,-0.041380487,-0.05337716,-0.01877594,-0.04052291,0.029451821,0.023339212,-0.004860636,-0.0373537,0.02378406,-0.07557068,-0.02020885,0.06311409,-0.035270512,-0.017712759,-0.062363893,0.085455686,0.0049066017,-0.059842058,0.0002668821,0.028594982,0.08919837,-0.00961028,0.053227443,0.03787194,-0.024620432,0.066303745,0.008843872,0.06727411,0.028833954,0.017923668,-0.001066832,-0.004510325,0.027233297,0.023541296,-0.061666146,-0.030244937,0.07441934,-0.06698063,-0.0039585545,-0.003250739,0.028158613,0.03180409,0.005683469,-0.09609022,-0.048682477,-0.035194267,0.043817803,9.826775e-34,-0.035342418,0.037542388,0.044351444,0.042808082,-0.00063574704,0.009576918,-0.10007128,-0.048823353,-0.11206891,-0.028213317,-0.06351223,0.056357104,-0.034982335,0.05550298,-0.04247191,0.075692154,0.054343097,-0.062191576,0.057413694,0.067133196,-0.057709657,-0.08332157,-0.029538507,0.01621576,0.0118285045,0.04340464,0.043962903,-0.059976593,-0.0029940784,0.048143357,-0.037324652,0.021665717,0.049128056,-0.011003764,-0.061828695,0.0067053023,0.0055703516,-0.042854406,-0.004707534,-0.021234721,0.039649885,0.023740835,-0.014889406,-0.043746784,-0.08688066,-0.0069762096,0.03564049,0.058093958,0.15272705,0.012884256,-0.038694482,-0.082896754,-0.06371785,-0.03397612,-0.034726683,0.024330555,-0.024584921,0.045425568,0.030967878,-0.044497564,0.05052643,7.945536e-05,0.014951562,-0.10630679,-0.045153443,-0.08765305,0.00689657,0.07133206,0.08449994,0.018978821,-0.049671102,-0.0071444185,0.04436892,0.0045375344,0.02399995,0.012282263,0.026944285,0.010801851,0.06228856,0.09051816,0.010651862,0.006209801,0.017756125,-0.047726404,0.061496805,0.06593566,-0.012113545,-0.060454585,-0.10675712,0.11113975,0.05041918,0.118599795,0.039829288,-0.07197353,0.012151463,-3.4445037e-33,0.0908183,-0.010765943,-0.030062782,0.05059194,0.0054058335,-0.021328317,-0.09466199,-0.030755756,0.037432604,0.0055266367,-0.06428037,-0.09993451,0.057311185,-0.052807253,-0.08360775,0.030903786,0.10489136,0.009594726,-0.0990407,0.04921328,-0.02897608,0.0429355,0.058869068,-0.064040504,-0.049397826,-0.0889147,0.030076297,0.10090969,-0.06007371,-0.04176187,-0.045723755,-0.11220721,-0.1030894,-0.06091756,-0.012987621,0.0069067692,0.023373278,0.0157095,-0.013685533,0.037471857,-0.009167262,0.011024892,0.026655218,0.047807958,0.004220094,0.0051015248,0.0085212765,-0.08369295,-0.07783957,-0.021067394,0.06073718,-0.059344683,-0.02835104,0.032490816,0.08974008,-0.039599273,0.03669219,-0.059138343,-0.0029177736,0.0012863819,0.0040203813,0.03828065,-0.052437764,0.0061107413,0.101039164,0.0072559966,-0.025565576,-0.0017967898,-0.056419197,0.080454625,0.043559328,0.01808833,-0.06698794,0.093340315,-0.032170158,-0.015951423,-0.005036583,-0.003124791,0.044406004,0.0122458665,-0.0445565,0.026337218,-0.036572345,-0.011886883,0.06708372,-0.04899302,-0.034069207,0.016484663,-0.019444974,0.09115909,-0.012636645,0.12776452,-0.0040106233,-0.05041317,0.009725757,-2.2427553e-08,0.014351077,-0.043368146,-0.09022997,-0.021621013,0.02476524,-0.03718692,-0.041340914,-0.061703518,0.0329997,0.016985102,0.044839237,-0.038663648,-0.038495723,0.07673887,-0.014338898,0.068502665,0.052838057,0.128013,-0.0057579335,-0.011558107,0.050001193,0.014266122,-0.09888391,0.0110003445,7.008539e-05,0.025327563,0.0074915434,0.029366042,-0.048543263,-0.055725344,-0.04017763,-0.07275308,-0.066986024,-0.080898575,0.02135942,-0.01194067,0.023088397,0.010658115,-0.024018386,-0.010082707,0.05058158,-0.037094288,-0.00829378,-0.016915377,-0.0068946285,-0.029360991,0.0276315,0.018126918,-0.0036033618,0.031395473,-0.013462462,-0.01958488,0.1403042,0.0124087045,-0.030703327,0.013138795,0.070323616,0.022533718,0.042601023,0.03138022,0.10068754,0.083012424,-0.06644414,0.017597387} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:03.037988+00 2026-01-30 02:01:12.254159+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2183 google ChZDSUhNMG9nS0VJQ0FnSUNWcHJpcFBREAE 1 t 2186 Go Karts Mar Menor unknown Todo de 10, lo recomiendo sin ninguna duda. todo de 10, lo recomiendo sin ninguna duda. 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Todo de 10, lo recomiendo sin ninguna duda."} {-0.06965558,0.05732404,-0.020460477,-0.013616037,-0.020277305,0.06763527,0.08857943,0.018372811,-0.042922255,-0.0058278698,0.086069256,-0.047694042,-0.07758951,0.018066421,0.006784213,-0.008442932,-0.01793815,0.12956014,-0.0284455,-0.004603927,0.05835467,-0.0098696165,-0.071654536,0.040109996,-0.03687249,-0.03437027,0.006402568,-0.019218147,-0.074098796,-0.057905205,0.039441694,0.07384727,0.030416405,-0.025509585,0.0002877903,-0.07802788,0.008613126,-0.054154463,-0.055509925,0.08179324,-0.06637067,-0.01221712,-0.023461675,-0.099745855,0.05198644,-0.08126572,-0.031240055,0.1094159,0.033718944,-0.032330297,0.032813076,-0.036401197,-0.073238045,-0.007626524,0.06570942,-0.007182451,0.022463795,-0.03359131,0.042299204,0.00260958,0.03415496,0.07878234,-0.0735379,0.06557164,-0.027876073,-0.017774146,0.05561428,-0.058645252,-0.18363321,0.03561972,0.16357335,-0.06409156,0.066459775,-0.021591216,-0.05752776,0.013144973,-0.015784161,-0.019770138,-0.10975737,-0.0012669661,-0.040284313,0.042140376,0.048817795,-0.07300642,-0.011230211,-0.0073617315,0.021768548,0.02932572,-0.003359157,-0.03633848,-0.02946184,0.08413519,-0.08045094,0.02411217,-0.022940237,0.061321076,-0.07409994,0.029382747,-0.06514393,0.011106854,0.081384934,0.077881776,0.043153014,0.041893546,-0.016417773,0.052082665,0.08364615,-0.018333588,0.0055949115,0.010436991,-0.005376373,-0.0064480663,-0.044551495,-0.0029145298,-0.012169081,-0.0659341,0.001465894,-0.045972895,-0.063164495,-0.015506589,0.04658883,-0.06005991,0.019444581,-0.028804306,-0.029867193,-0.005196397,0.06966482,1.645225e-33,-0.011823168,-0.05866968,-0.0144662075,0.006620018,0.074916564,-0.027954182,-0.06781,0.0059690555,-0.045210943,-0.010328615,-0.060328323,0.035335608,-0.049139954,0.006847486,-0.021795629,0.037678123,0.010315201,0.056420363,0.066426724,0.0042538675,-0.047716565,0.05038423,-0.0077401698,0.025934305,0.006829778,0.08899965,-0.054647565,-0.025175273,-0.023065196,0.019658552,0.022523262,0.049793746,-0.005033977,0.00087831833,0.039507397,-0.05785336,0.112139545,0.0638369,-0.00890074,-0.018050747,0.05309113,-0.06946831,-0.013629458,0.012672433,0.059278302,-0.035507876,0.098844245,0.029168367,0.06672177,-0.011882979,-0.06764878,0.027408147,-0.05149947,0.018505178,-0.0042448137,-0.048361823,-0.0033508295,0.063283406,0.011406444,-0.00042858507,0.034914095,-0.055813834,-0.012589558,-0.021018542,-0.034421764,-0.0039625973,0.056213148,0.019020144,0.1448518,-0.01256883,-0.071407795,-0.027316745,-0.029863723,-0.016485814,0.06185343,-0.045164645,0.07803373,-0.02207078,-0.003493138,-0.0014113882,0.0056050518,0.021881888,0.040594377,0.033567835,0.08830352,0.0798434,0.012942207,0.0062957457,-0.040704533,0.026835546,0.033157688,0.08231179,0.08608677,-0.11548661,0.07879296,-1.8543163e-33,-0.011322817,-0.032208297,-0.05010937,0.022980029,-0.039907183,0.02501202,-0.048805296,0.007553998,-0.01150224,-0.054836705,-0.090660356,-0.089205556,0.09825372,-0.07121229,-0.0573199,0.05959748,0.012299713,-0.0031160922,-0.110930495,-0.07271111,0.006085055,0.07354388,0.05737069,-0.053057518,0.017544849,0.006450242,0.046557896,-0.0167343,0.03540012,-0.028760519,-0.031060457,-0.03743859,-0.016236387,0.046990093,0.015946465,0.03524087,0.08768928,2.675564e-05,-0.038829718,0.05954433,-0.026395258,0.028479408,-0.023882603,-0.010988953,-0.017300898,0.025858657,-0.07646615,-0.028498925,-0.06817895,-0.015291987,0.119138606,-0.062270097,-0.024233837,0.019675525,0.011227539,-0.03874966,0.028639762,0.0081026675,-0.039431643,0.013291663,-0.016071329,0.044318397,-0.0023437068,-0.010366414,0.039960824,0.05454685,0.0030740085,0.11250832,-0.018127698,0.058272865,0.0055035898,-0.022492768,-0.059081133,-0.025563704,-0.12940265,-0.10545351,-0.0162541,0.024824917,0.056233205,0.046865687,-0.018198648,-0.08262092,-0.0485536,-0.029901307,0.031175917,-0.07317097,0.011504067,-0.046072856,0.01626639,0.017457886,0.07150845,0.021960378,0.014059028,0.005228627,-0.030953009,-2.0375902e-08,0.0007932308,-0.07235283,-0.081699654,0.0075616115,0.10499212,-0.06973749,0.014498685,0.006467135,0.03340531,0.08975053,0.09193153,-0.019612484,-0.037886344,0.09004617,0.0035409671,0.0022209745,0.07428286,0.016017841,0.041957524,-0.018428873,0.03353373,0.020400116,-0.042326454,-0.054140236,-0.0404169,-0.0041078436,-0.025990961,0.013769981,-0.0010942463,-0.046017483,-0.014729741,0.002636826,-0.0885252,-0.058156393,-0.0032885473,0.062072918,0.005480558,0.013536663,0.01856264,-0.013963127,0.039135996,0.08275372,0.03487385,-0.002804081,-0.02570617,-0.1289625,-0.030440174,0.038178008,0.026527317,0.028901013,-0.052970473,0.042328265,0.03892473,-0.044521652,0.0009778005,0.0036568118,0.09260075,-0.028511245,-0.05015014,0.12807558,0.078978926,0.0911972,0.016953213,-0.05065237} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.698794+00 2026-01-30 02:01:12.273657+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2185 google ChZDSUhNMG9nS0VJQ0FnSUNzMGIzblR3EAE 1 t 2188 Go Karts Mar Menor unknown Muy buen sitio para pasar una tarde de domingo muy buen sitio para pasar una tarde de domingo 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Muy buen sitio para pasar una tarde de domingo"} {-0.10297889,0.051525716,0.0028809884,-0.010225176,0.022425063,0.033783115,0.02308342,0.0028163013,0.026629014,-0.027994383,-0.017462336,-0.052574992,-0.035280842,-0.04446032,0.03322335,0.007427046,-0.10292812,0.112664476,0.049635846,0.0008700247,0.043020207,-0.012290857,-0.118049875,0.10081296,-0.05920446,0.021946022,0.016398523,-0.01317607,-0.016375203,-0.031352174,-0.006627047,0.048302874,-0.0024717206,-0.019015614,0.033811383,-0.033291295,0.08980465,-0.10495797,0.03772995,0.028890077,-0.0655173,-0.050436933,0.020921703,-0.0024027962,-0.022595022,-0.058521356,0.0545448,0.07982206,0.040989123,0.04639548,-0.017579772,0.009174145,-0.024174653,0.028878484,-0.0411443,0.03606229,-0.03556763,0.02559204,0.05612298,-0.029679753,-0.038028516,0.033498086,-0.045972668,0.026765183,-0.007841946,-0.020015556,-0.02749545,-0.031982254,-0.04027611,0.05609672,-0.010287722,-0.043235965,0.04007615,-0.06088008,-0.019320756,-0.008993708,-0.0022250053,0.013151237,-0.057415087,-0.07781212,-0.004361408,0.006182514,0.003700387,-0.037821386,-0.049107585,-0.010232684,0.001665761,0.107964374,0.054131422,-0.04808413,0.01723071,0.06749282,-0.103130944,0.010125039,-0.007053001,0.089795195,0.014773304,-0.009541945,0.0010362973,0.06789338,0.06513886,0.08722347,0.014630281,0.038885202,-0.013460164,0.00074558536,-0.002579899,-0.07873811,-0.016101893,-0.0018020154,-0.056787327,0.0028924393,-0.029182509,-0.015890174,-0.034004997,0.016202169,-0.023935113,-0.08890518,-0.045039043,-0.04293203,0.07249519,0.026327185,0.04043866,0.0010367666,0.032307625,-0.052230332,0.15418501,3.251641e-33,-0.005996281,-0.036706,0.044504937,6.526797e-05,0.030383278,0.06321189,-0.00058915507,0.038794328,-0.03174839,0.05511899,-0.06304479,-0.093455404,0.019751962,-0.032286562,0.04020691,0.036481842,0.06402799,-0.030487996,0.07756903,-0.051542114,-0.09104227,-0.0381239,0.006300808,0.003892071,-0.0371312,0.02124904,-0.03456928,-0.031822186,-0.06874761,0.057682633,0.043234296,0.015361783,-0.021754397,0.014601301,-0.008800757,-0.016180798,-0.035968814,0.09321115,0.032304958,0.033262696,0.039075136,0.032188565,0.032602813,-0.011378684,0.025074964,-0.03622855,0.07145113,0.0058772303,-0.006598277,0.026860425,-0.05674555,-0.053519275,-0.038702723,-0.047661558,0.038100664,-0.062285423,-0.049656868,0.055907253,-0.08128845,-0.035735834,0.13491023,-0.014439672,0.04411255,-0.03283824,-0.05945361,-0.012692155,-0.0038082155,-0.0036419334,0.10824434,0.037161723,-0.02318171,-0.06450608,-0.027932376,-0.04271131,0.011869242,0.02362705,0.037600286,0.026564483,0.05706161,-0.004643884,-0.08233374,-0.015326354,0.08817021,0.047658958,0.029868497,0.01453912,-0.03982661,0.111119024,-0.024676735,0.019214917,-0.01610167,0.004885035,-0.017267372,-0.096340865,0.08173929,-3.7073365e-33,0.06558748,0.007888755,-0.033215802,0.041316677,-0.07009307,-0.007201126,-0.04443781,0.05292259,-0.0018433467,-0.0124571975,-0.058813304,-0.122364454,0.08126664,-0.0204739,0.017241849,0.1820006,0.002250554,-0.02307205,-0.05225614,0.015739683,-0.013865424,0.0039215083,-0.016175808,-0.014694501,-0.0069045965,-0.062366854,0.056138754,0.043256767,-0.052063525,0.0052565713,0.005359364,-0.06537222,-0.061115563,0.044551447,0.0016466372,0.11305003,0.10518738,0.08017683,0.025101367,0.0407538,-0.05305924,0.056818303,-0.026105858,-0.032584026,0.0300546,0.015254282,-0.062033657,-0.079423755,-0.0398229,-0.00012023599,-0.025606822,-0.09925878,0.006641258,-0.029794255,0.008340197,-0.0024822147,-0.10751076,0.016457409,-0.12976792,-0.030798778,0.08283046,0.049151573,-0.092175536,-0.029723326,0.05704732,-0.04053257,-0.117811434,-0.008259541,0.0077972426,0.112720974,0.07379313,-0.04381571,-0.119873956,0.07079673,-0.09808864,0.012203583,0.023328181,0.010256565,-0.013518306,-0.008389996,-0.06552378,-0.025007393,-0.049927976,-0.013881636,-0.054518364,0.017084027,0.046558645,0.016736617,0.011453581,-0.017242007,0.05236168,0.031147612,-0.059802625,-0.04160186,0.011425384,-2.151302e-08,0.0034730153,-0.08328058,-0.086839,0.03817396,-0.015066612,0.02910895,-0.005179823,-0.03328307,0.03949214,0.057507064,-0.038056225,-0.02096826,0.08815499,0.01884578,-0.051602356,0.089691296,0.009558127,0.020151516,-0.01091093,-0.03311977,0.11021579,-0.03633887,-0.009837734,-0.0066361334,0.08208168,-0.03194009,0.0060064383,0.06588975,0.027430015,0.007012569,0.019192182,0.019520737,-0.0075278673,-0.12654068,0.021168007,0.04328223,-0.02058703,0.00082070165,-0.024089096,-0.0069401683,0.06736178,0.07733628,-0.095223345,-0.056357924,0.048979506,-0.07818611,-0.008462124,-0.0014896903,-0.020651028,-0.01365723,-0.00770174,-0.008041582,0.10713129,0.034810692,0.061582938,0.011266664,0.03820716,0.012186202,0.072687,-0.0022309385,0.06482489,0.101294,-0.015797265,-0.10567964} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.725269+00 2026-01-30 02:01:12.279861+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2187 google ChdDSUhNMG9nS0VJQ0FnSURCeU9UOG9RRRAB 1 t 2190 Go Karts Mar Menor unknown Erg leuk Ongedwongen sfeer en redelijke prijzen. erg leuk ongedwongen sfeer en redelijke prijzen. 5 2023-01-31 01:52:39.833374+00 nl v5.1 E1.04 {V1.01} V+ I2 CR-N {} {"E1.04": "Erg leuk Ongedwongen sfeer en redelijke prijzen."} {-0.075616546,0.113739945,0.05247735,-0.007650652,-0.06353105,0.029388096,0.05676239,0.16069677,0.018672513,-0.04950249,-0.015661618,0.032541215,-0.070147455,-0.067072384,0.042966697,-0.039444752,-0.07985364,0.10911041,-0.06668874,-0.07255589,-0.0108722765,-0.077465355,0.023242356,-0.055160042,-0.0029288412,0.0147983115,0.11432552,0.0018369138,0.07570255,-0.010759294,0.07032688,-0.06451516,-0.008555179,0.038615003,-0.02235751,0.0669865,-0.057020515,-0.02450984,-0.020635098,0.032754216,-0.04025307,-0.011759258,-0.09294879,-0.10513112,0.007978385,0.0051342314,-0.0735583,0.007974348,-0.10862054,-0.01804037,-0.010753061,-0.036003847,0.025624009,0.0060369694,-0.02003103,-0.07664303,-0.016693553,0.0020147192,-0.028567387,-0.08028473,-0.0171691,-0.035771985,-0.10997592,-0.018924778,-0.06656264,-0.034696843,0.060717132,0.019602906,-0.026104296,0.024796745,0.05702898,-0.06643966,-0.025418235,0.037258063,-0.07643484,-0.06564528,0.009601016,-0.004532557,-0.010977719,-0.08339987,0.12695526,0.027317062,0.012318102,0.01819449,-0.02838535,-0.010398233,-0.010304216,0.020317368,0.009067327,-0.0007072466,0.024048906,-0.013431443,-0.06185779,-0.01026706,-0.04380339,-0.00895,-0.06471887,-0.0024664141,0.06879524,0.027805246,0.02261098,0.05202958,0.024748662,0.009731578,-0.047570873,-0.018155998,-0.017107228,-0.02324082,0.03616835,-0.035665054,-0.03221805,-0.07015157,0.022478988,-0.020781219,-0.0052765748,-0.021038283,-0.037412386,-0.05223589,0.021087578,-0.0073677604,0.044857938,-0.03913936,-0.004921492,0.014474985,0.015343291,-0.028480556,0.03445679,2.8335154e-33,-0.08177786,-0.1417231,-0.005229511,-0.03780847,-0.046556335,-0.00615297,-0.022656705,0.0006005651,-0.014713292,0.0006838024,-0.014885927,0.016110448,-0.03483343,-0.026613852,0.022271806,0.056650717,0.044054545,0.031639744,-0.038561754,0.033859696,0.03305371,-0.035155453,0.058751237,-0.008061215,0.0355095,-0.024667276,0.05915515,-0.035607953,-0.028673999,0.01180407,0.07669031,-0.030600023,-0.055565733,0.07569354,-0.07966302,-0.029800184,-0.013599114,0.015123116,0.0015226683,-0.06950755,0.032755096,0.0009921994,-0.024272863,0.008649709,0.08176656,0.0949789,-0.019839412,-0.065664366,0.049938932,0.029185724,-0.03833832,0.006428392,0.0009666456,0.020099983,-0.008241298,0.0039322106,0.010926959,0.05739096,0.02038921,0.0032280087,-0.0139280325,0.08633534,0.0013650703,-0.026106538,0.10068088,-0.051671457,-0.0044096196,0.025696278,-0.048849642,-0.027459694,-0.0058041494,0.030968025,0.061696246,0.012019883,-0.081013955,-0.0016963342,-0.054334603,0.010980205,-0.03061549,0.048455525,-0.11587055,-0.002412049,-0.089794576,-0.025387928,0.05840095,-0.014639528,-0.022997119,-0.041824464,0.04780723,0.09636283,0.02748233,0.0051103686,-0.054901846,0.022137173,-0.015922967,-4.536476e-33,-0.028900752,0.035152815,-0.100735255,0.08802713,0.055875923,0.05917871,-0.019575154,0.05900625,-0.10375233,0.046872523,0.0015248149,-0.03403545,0.089199714,0.09320997,-0.02318946,0.013876543,0.04740255,0.028620625,-0.035765745,0.014699514,-0.003262965,0.06710586,-0.017461546,0.17336674,0.012285954,0.020579847,0.09497851,0.02452251,-0.0845031,-0.016104031,0.016343448,0.041223913,0.010102738,0.04830763,-0.0011678814,-0.038305912,0.13523129,0.013965221,-0.049375053,-0.017699448,-0.024976226,0.05665566,-0.050604966,0.056294907,0.055199668,0.005769907,-0.06568169,-0.007498786,-0.0039247475,-0.110550895,0.01587222,0.065014474,0.050368298,-0.051265493,0.059231713,-0.021250939,-0.041853216,-0.07608974,0.0007897511,0.05377968,0.04306466,-0.051589187,0.03367417,0.040588114,0.019354116,-0.013450143,0.026375454,0.013508541,0.10017941,-0.0059312573,0.04636964,-0.040785052,0.002062597,-0.031715617,-0.046508186,-0.025394423,0.094936,0.0019760353,-0.022346966,-0.016152104,-0.010880347,-0.027951237,-0.009952215,0.049152814,-0.004706383,-0.06618213,-0.032224048,-0.02699498,-0.028818822,-0.04370248,0.007204064,0.08841396,-0.051618684,0.114518434,-0.015507118,-2.3833772e-08,0.027687225,-0.09064083,-0.00032772127,0.022093017,0.051926535,-0.13321654,-0.009433301,-0.057179157,-0.14718275,0.03810341,-0.029137617,0.06779487,-0.0407791,0.06859513,0.0485656,-0.019825993,0.02383342,0.08359007,-0.0011666595,-0.018420206,0.078505434,-0.045455046,-0.052571487,0.007516252,-0.0031142621,0.035369277,0.032752626,-0.047499955,0.12608734,-0.07044078,0.021659603,0.11474037,0.03615796,0.09389566,0.02103292,-0.008915374,0.027523391,0.080507934,-0.035845056,-0.0046321345,0.037672166,0.020418404,0.09882879,-0.0037288815,-0.042330697,0.023954278,0.016302666,-0.07099558,0.043906998,-0.056083553,-0.09514637,-0.03609636,0.012013974,0.038776338,-0.027345832,0.060088843,-0.058874957,0.012745119,-0.0474873,-0.020043945,0.039387982,0.05253055,-0.046335176,0.057619944} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.756722+00 2026-01-30 02:01:12.28793+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2189 google ChZDSUhNMG9nS0VJQ0FnSUNHdEs2VUdREAE 1 t 2192 Go Karts Mar Menor unknown Das Fahren mit Kindern ist gut das fahren mit kindern ist gut 4 2022-01-31 01:52:39.833374+00 de v5.1 O4.04 {A3.01} V+ I2 CR-N {} {"O4.04": "Das Fahren mit Kindern ist gut"} {-0.023131365,0.024882551,0.033826932,0.053969454,0.005862987,0.03629273,0.021190839,0.045714077,1.0772816e-05,-0.052916884,-0.009132189,-0.12091199,-0.06442136,-0.049506698,-0.09582929,-0.023362195,-0.0728666,0.04305816,0.04610832,0.046218786,-0.10581581,-0.030416379,0.07506429,0.061499193,-0.02065856,-0.06979947,-0.0049148104,-0.03047897,0.031418182,-0.028765297,0.05978856,-0.05892744,0.07205528,0.037901573,0.001604988,-0.032122016,0.067906156,0.020652708,-0.08461877,-0.06145595,-0.054435797,-0.015190329,0.0049022124,-0.008479131,0.05418551,0.008414863,0.05149841,0.03672382,-0.03652415,0.10136318,-0.04742802,-0.041136958,-0.017708201,0.017706575,0.078443564,0.02215476,0.001792232,-0.0326966,0.025213778,-0.015920363,0.0013425162,-0.06966701,-0.10920113,-0.082706876,0.06354867,0.049732137,-0.020473456,0.05003358,-0.008898226,0.02966034,0.058456346,-0.029688392,-0.041435,-0.035133943,-0.010727142,-0.004758926,-0.04346445,-0.062695,-0.053508088,-0.015771348,-0.035528157,0.0005939592,-0.028365556,0.03668293,-0.041658588,0.0102436505,0.07377253,0.013785171,0.012268208,0.04852643,0.022776706,-0.046278972,-0.0641776,0.022675117,-0.08289605,-0.03477842,-0.0056356206,-0.025996182,0.029729892,0.112464115,-0.00048419833,2.431016e-05,0.046229515,0.0411643,-0.0029213857,-0.043303553,-0.06832496,0.03339327,0.012371386,-0.016346952,0.022040147,-0.017480103,-0.06604518,-0.050460882,-0.029890886,-0.012587764,0.0376771,-0.15219419,-0.058895096,0.0017277026,-0.027049914,0.03568265,-0.004288919,0.03903407,0.056729466,-0.093505494,0.06639513,1.8079149e-33,-0.06266126,-0.036728453,-0.009304847,-0.027065767,-0.013120005,-0.038516596,-0.023567066,-0.071548045,0.010870573,0.027435973,0.016731597,-0.037649322,0.010274881,0.0081326915,-0.012338375,-0.067941315,0.03420385,-0.056671504,0.02478284,-0.0015585616,-0.06702863,0.0659592,0.04816891,-0.07063624,0.028360674,-0.13255508,0.054291446,0.0911513,-0.040669326,0.01750782,0.08381152,-0.04188102,0.03191418,-0.0052396986,-0.029815217,0.014403821,0.036836777,0.025025766,0.031232046,-0.024799325,0.13153146,-0.0054910486,0.024970248,0.032830723,0.11687458,0.031382818,-0.016905295,0.06103092,-0.025967874,0.030895188,0.05654839,-0.028733373,0.055054493,-0.01771222,0.014767139,0.060561858,-0.023283225,0.103641406,-0.01993863,-0.027052134,0.03738593,-0.068910845,-0.04456227,0.0041639875,-0.070043415,0.03687433,0.0010252167,-0.047669217,0.034649223,0.042217918,-0.12793207,0.02827517,-0.031155352,0.073778726,0.0029563508,0.017027495,-0.09800268,0.030841138,-0.0095674945,-0.021051679,-0.050523862,0.02807426,0.018352771,0.026195023,-0.037531104,0.024410497,-0.077316426,0.0068030595,0.05187998,0.10893375,0.018733228,-0.033221375,0.01568652,-0.0056439256,0.008611771,-2.944728e-33,-0.030590111,-0.059375413,-0.13246916,0.038126722,-0.0537029,0.035057344,-0.15163589,0.08464818,0.013786407,0.06702183,0.013175533,-0.0050986814,0.10916989,-0.039499015,0.068063684,0.035671588,0.05098864,0.0025867377,0.0075871754,0.0070756306,-0.09007189,-0.03189076,0.0037185645,-0.01430618,-0.07544617,0.051171772,0.0049650725,0.18667313,-0.00571794,-0.06993997,-0.020320117,-0.045874592,-0.016137728,0.03421098,0.03614965,-0.008834972,0.060710557,0.061513666,0.005427496,0.058477335,-0.046646144,0.081193246,-0.09311233,0.011086964,0.02640653,-0.008588222,-0.056335814,-0.0208987,-0.017809588,-0.049072947,0.04029726,0.03727136,0.074737,-0.0025447404,0.020552116,-0.015456113,0.0010331954,-0.05310296,0.02324602,0.0041383742,0.028791437,-0.06263788,0.0047691828,0.015928498,0.081288315,-0.079713434,-0.12451568,-0.073549435,-0.044152636,0.08202071,0.05344909,0.04192057,-0.022368144,-0.029847613,-0.026042141,0.02450809,0.04940418,0.07197024,-0.03324902,0.041522805,-0.022284139,-0.010178531,0.048595324,0.061271,0.018425202,-0.043144893,0.061182186,-0.020975709,-0.023778142,0.001826987,0.042076617,-0.023968868,-0.009738205,-0.04990313,-0.03256612,-2.0142538e-08,0.05829088,-0.08164182,-0.06310301,0.0709951,-0.0040003858,0.0049173315,-0.0095786275,-0.06090531,-0.100150354,0.05466318,-0.051122736,0.12291274,-0.050892938,0.03479976,-0.020054126,-0.057712484,-0.030009018,0.024119666,-0.044460986,0.00923358,0.04150735,-0.020224033,0.022105567,0.009545212,-0.012462439,0.07861515,0.08632349,-0.039455652,-0.0027309651,0.011436716,0.041965947,0.08237208,-0.004202017,0.03456684,-0.040961053,0.06786336,-0.011542424,0.02974441,-0.027823942,0.07658435,0.07984607,-0.02772498,0.04194427,-0.07465762,0.001997217,-0.11929817,0.031111073,0.035067413,0.06950442,0.078312464,-0.025978716,0.038017116,-0.008181152,-0.014070897,0.014382664,0.0014297797,-0.02434198,-0.0969662,-0.035110056,0.0350126,0.09106691,0.017767355,0.021672038,-0.019744221} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.778859+00 2026-01-30 02:01:12.29412+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2192 google ChdDSUhNMG9nS0VJQ0FnSURINUlDVXFRRRAB 1 t 2195 Go Karts Mar Menor unknown Preis Leistung stimmt perfekt preis leistung stimmt perfekt 5 2025-01-30 01:52:39.833374+00 de v5.1 V2.04 {} V+ I3 CR-N {} {"V2.04": "Preis Leistung stimmt perfekt"} {-0.020432014,0.11177562,-0.01816522,-0.017520191,-0.10250568,0.06860114,0.04676288,0.05504794,0.016104477,-0.0028811542,0.060703978,0.0032378274,-0.007725953,-0.025617113,-0.015768753,-0.02080676,-0.002537519,0.07932674,-0.019207204,-0.0063365162,0.045326635,0.006521391,-0.077583626,-0.007624785,0.0035915875,-0.03929414,0.025407325,-0.04884958,0.044348635,-0.039989877,0.006256275,0.029012956,0.058079723,-0.0077472324,-0.013217311,0.08003988,-0.026178539,-0.12490501,0.02987373,0.052859932,-0.166076,-0.06479302,-0.096623,-0.037232634,-0.027633429,0.017395126,0.04487604,-0.00050346897,-0.06489711,-0.025846789,-0.054226026,-0.01856907,-0.027732199,-0.036714464,0.09092385,-0.05050275,-0.014492891,0.02926249,-0.034728527,-0.06442148,0.028591987,-0.01199718,-0.017691238,0.0030153769,0.0651118,0.034667555,0.031593125,-0.0016955566,0.03539965,0.010324424,0.037695143,0.024513172,0.041972782,0.034409955,-0.054114483,-0.00068168243,-0.02192147,0.011608123,0.041422956,-0.0737699,0.018196627,0.043787096,-0.054370534,0.02465537,-0.012524132,0.04252001,-0.012195583,0.007249644,-0.018761596,0.00776517,0.008216594,0.00075413036,-0.15760674,0.009932841,-0.042086203,-0.03452665,-0.0719115,-0.0669275,0.07264669,0.05102359,0.09347525,0.05098394,0.017846761,0.04023681,-0.0026066233,-0.07148428,-0.019432126,-0.08773284,0.056707148,0.045353543,-0.0638494,-0.017981471,-0.07058118,-0.084461056,-0.04317855,0.01812514,0.02833118,-0.059164148,0.07645881,-0.090771966,0.048126735,-0.011346061,-0.016062949,-0.0033468038,0.01666259,-0.074715294,0.019659396,4.1723503e-33,-0.046031233,-0.11815171,0.01010538,0.009317866,-0.030453276,-0.036238167,-0.064675875,-0.08970733,0.015526662,-0.005396241,-0.012607357,-0.00021716178,-0.049144857,-0.013619873,-0.01772774,-0.029953077,0.006582448,-0.035883367,-0.04292901,0.015289071,-0.040347565,0.0039828094,-0.0050275903,-0.046905626,0.014864061,-0.008380664,0.04876302,-0.015722629,-0.0782507,0.04434355,0.04935642,-0.03673886,-0.022745455,-0.06507514,-0.05433144,-0.059056528,-0.023961617,0.013094966,0.049999066,-0.047581512,-0.006042064,-0.005026942,-0.044384297,0.0021338316,0.046090923,0.025918536,-0.019804524,0.086232744,0.028814444,0.020310692,-0.023217604,-0.03158907,-0.05492456,-0.013203032,0.024297226,0.043341413,-0.021148622,-0.0030240056,-0.033727985,0.061465748,-0.022845108,0.0026325423,0.01905471,0.040842332,0.041870546,-0.00031769462,-0.028653877,0.022715319,0.06291784,0.0069149435,-0.08809039,-0.063368894,-0.028183019,0.009840767,-0.07396111,0.04622067,0.034636214,0.09229597,-0.034032192,0.026090689,-0.05569548,-0.0073029925,0.037721887,-0.05520667,0.022938134,0.028555196,0.02605237,-0.086736925,0.06022388,0.08260027,0.017166609,0.0615443,0.0077791344,0.029762262,-0.01894631,-6.206227e-33,0.014754081,-0.03284698,-0.06662417,0.021768564,0.043637738,0.02229137,0.032152176,-0.028214788,-0.048937805,0.032863162,-0.08515745,-0.048358493,0.027936447,0.04086292,-0.06336926,0.113788694,0.06648881,0.025064068,-0.026578868,0.06390693,-0.06977399,0.09308984,-0.041914538,0.0694464,-0.055056788,-0.04620156,0.022912214,-0.0044726618,-0.15124954,-0.051644634,0.086234435,-0.09336959,-0.00482595,0.07888089,-0.073778905,-0.09877488,0.10315352,0.09278587,0.009324004,0.038687713,0.042393662,-0.005412767,-0.05334921,-0.07360314,-0.07192749,-0.05349141,-0.057883933,-0.060405415,-0.004625346,-0.024596425,0.020638691,0.040777624,0.07605695,-0.081727155,0.04034573,0.040443096,0.0010470169,-0.08696217,0.029548941,0.06076952,0.019809479,-0.057632163,0.1012048,-0.0010036387,0.10112161,-0.031532962,-0.030168608,-0.0015471698,0.096253075,-0.005218643,0.07893446,0.028260196,-0.06776656,0.005942367,-0.06535262,0.034268185,-0.084082566,-0.0074246945,-0.018518629,0.026940424,-0.03833831,-0.03263992,-0.007666473,0.04564847,-0.060005177,-0.034637373,0.12893601,-0.0749149,-0.033883877,-0.030258846,-0.033211708,0.12926756,-0.058814183,-0.005126057,0.036408707,-2.593358e-08,-0.06484761,-0.04980541,-0.033392593,0.06951746,0.029082045,-0.03837505,0.034718532,0.056812793,-0.09177242,0.040851496,-0.05262824,0.03580526,0.037773818,-0.0029640452,0.004157281,-0.06003135,0.07642958,0.031500354,-0.015274376,-0.007902885,0.06417672,0.045155905,-0.02552724,-0.06323971,0.021088876,0.0155874295,0.11956629,0.0803273,0.07978016,0.016602142,-0.05853382,0.04168318,-0.052584395,-0.051377825,-0.007147563,0.06252357,0.018711306,0.037184097,-0.029193446,0.03455708,0.013723826,0.014416923,0.099038646,0.055710394,-0.02802157,-0.029494071,0.0010188221,0.030306125,0.01125718,0.026521655,0.02861016,0.08223911,-0.017103527,0.09072507,0.051180083,0.07508162,-0.027748592,0.058122035,-0.07569923,0.03899202,0.031427987,0.0355958,0.08920607,-0.039500274} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.80984+00 2026-01-30 02:01:12.302273+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2195 google ChdDSUhNMG9nS0VJQ0FnTURBNFplVTVBRRAB 1 t 2198 Go Karts Mar Menor unknown Mala atención reservas fatal mala atención reservas fatal 1 2025-03-06 01:52:39.833374+00 es v5.1 P3.01 {J2.01} V- I3 CR-N {} {"P3.01": "Mala atención reservas fatal"} {0.056118034,0.026996914,0.024721583,0.0065777763,-0.040174317,0.051348172,0.044299476,0.12741862,0.04185342,0.10759821,0.024615888,-0.046513196,0.048801463,-0.02733598,-0.054971904,-0.026483856,-0.010697379,0.015226451,-0.06813395,-0.0011870735,-0.0077863354,0.07801508,0.031071002,-0.031719234,-0.04661973,-0.07167154,-0.06983759,-0.07404687,0.01261675,-0.075853884,-0.02584305,-0.04059441,-0.06271684,-0.033555347,-0.04569821,0.06537312,-0.00019801203,0.0004858873,-0.021631097,-0.009551199,-0.077497505,-0.03401666,-0.079266526,-0.046502836,0.019270886,-0.07639328,-0.07808463,0.08638085,0.1072607,-0.021696663,-0.08312396,-0.12781651,0.008316218,0.023234742,0.023488013,-0.05276031,0.007396723,-0.01560892,0.040801626,-0.020377062,0.0040625515,0.07557289,-0.019062428,-0.018487822,0.014275669,-0.04575523,0.0823138,-0.080845244,0.06066411,0.06251246,0.095145054,-0.07195104,-0.011193907,0.0038363207,-0.041399263,-0.0097115245,-0.011993599,-0.07562375,-0.040604528,0.03500742,-0.0037432841,-0.013075687,-0.0062816823,-0.0010916877,0.0657912,0.01595663,0.007923595,-0.004179621,0.06747525,0.018369317,-0.04476308,0.03274058,0.0042793667,0.027931774,-0.013786772,-0.020434774,0.013401495,-0.0059773717,-0.04423793,0.054380093,0.0042476393,-0.011300522,0.043735974,0.030612877,-0.045662373,-0.018389978,0.016969202,-0.067838304,-0.038042173,-0.07480008,-0.013437895,-0.05812891,0.061971642,-0.004713616,-0.0066179982,0.008375413,-0.05207057,-0.07645142,-0.038833678,-0.0067094807,0.0135528445,-0.014681065,-0.06748973,-0.07129573,0.0574521,-0.005126786,0.071729496,2.2806886e-33,-0.0015635948,-0.07817004,0.035720207,0.05277841,0.08243422,-0.02296867,-0.006384451,-0.026282968,0.01801976,-0.0742887,-0.0059126765,-0.117842294,-0.054459166,0.012020651,0.032283615,0.04432098,0.076856084,0.03965102,-0.0336049,-0.00022698852,-0.049569383,0.020945374,-0.02156034,-0.03828604,-0.0016838416,0.09952147,0.002987581,0.038052317,0.01309727,0.027273104,0.07311449,-0.020074144,0.014821454,0.049827855,-0.06253027,-0.01475494,-0.010924742,0.039425522,-0.06345249,0.031247247,0.03652657,0.041147158,0.022293428,0.024709642,0.033307742,-0.028408596,-0.039384264,0.030386643,0.032146156,0.025924543,0.05385303,-0.020454237,-0.00194662,0.023809116,-0.047412198,0.14727813,-0.02270214,-0.017807618,0.02641117,0.049231384,0.059752688,-0.011482376,0.017348371,-0.011468443,0.034862112,-0.14024661,0.022041067,-0.06607809,-0.019838229,-0.06446879,-0.04975506,0.03844871,0.012300908,0.055675548,-0.064392604,0.009288516,-0.014484029,-0.04935238,-0.13167606,0.027156182,0.017531896,0.02274344,0.03944164,0.033346705,0.012730666,0.035237364,0.037798334,-0.0074700722,-0.02561767,0.075028755,-0.023455288,0.027075073,-0.08015348,-0.046063885,0.016721345,-2.5956704e-33,0.023892144,-0.0447617,-0.019142473,0.07268942,0.0069366926,-0.011947312,-0.07281189,0.118915156,-0.023031658,-0.09321217,0.009326965,-0.029477661,0.09070041,0.045869607,0.025638342,0.06771655,0.045494307,0.015310139,-0.04997679,0.030086026,-0.07305993,0.051681057,-0.011999049,-0.030275075,-0.029290289,0.037904788,0.0031614313,0.020687139,-0.08223448,0.051005222,0.15380809,0.0025522655,-0.033019423,0.010722015,-0.030314077,0.060204785,0.08421714,-0.09712677,0.005592005,0.025800467,0.0801375,0.0112414025,0.040976286,0.012582698,0.05787787,-0.01839841,0.02062452,-0.03397999,0.039038803,-0.0837058,0.07690697,-0.033822592,0.058393218,0.059764113,0.13509674,-0.02173359,-0.006702311,-0.07349526,-0.012523915,-0.08757624,0.04641343,-0.00040829385,-0.037651196,0.0048320508,0.09736782,0.01875846,-0.040762916,0.009674903,-0.016060632,-0.021201262,0.052751493,0.011542555,-0.16964811,0.017129725,-0.020145096,0.014888305,-0.06962783,0.061960988,-0.015741719,0.028589275,0.0077745803,-0.043633305,-0.03838954,-0.032836743,-0.0030239054,-0.047987476,-0.00407732,-0.038901035,0.0167878,-0.043913648,-0.07480211,0.016633544,0.04109514,0.056651253,0.006333658,-1.6770302e-08,0.02432315,-0.030336525,-0.06614188,-0.04114417,-0.0127897505,-0.07731756,0.022441655,0.05117886,-0.043631937,0.14515546,-0.09281548,0.030330172,0.015533886,0.057215877,0.012704064,-0.05518226,0.06841406,0.11278698,-0.044468176,-0.07678265,-0.024403524,-0.018975018,0.07048134,-0.14083247,0.103357345,-0.0017410222,0.09195569,-0.0034507348,-0.062187977,-0.00063602254,-0.035408866,0.04068173,-0.028918307,-0.07667941,-0.017615756,0.0148584945,0.07877737,0.02862022,0.04073601,0.0011246515,0.08251718,0.0644514,0.024127232,-0.017843124,0.014692675,-0.0318426,0.041851215,-0.022124987,0.015641648,-0.052349508,-0.02972798,0.018844673,0.08753858,-0.007255543,-0.035871737,-0.05381398,0.014371409,0.08821451,-0.032401066,0.02289431,0.09222013,0.024240267,0.003712185,-0.014202959} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.839972+00 2026-01-30 02:01:12.313594+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2196 google ChdDSUhNMG9nS0VJQ0FnSUN2NUs3cmdBRRAB 1 t 2199 Go Karts Mar Menor unknown Para pasar un buen rato para pasar un buen rato 4 2025-01-30 01:52:39.833374+00 id v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Para pasar un buen rato"} {-0.05421718,0.022650324,-0.0666385,-0.07153356,-0.0400314,0.023248302,0.07153648,-0.032692473,0.018010832,0.03836994,0.01842737,0.008156459,-0.07812598,0.026355159,-0.019144977,-0.037073128,-0.07992293,0.06749026,-0.011190986,0.017330358,0.036483493,-0.011048338,-0.043664724,0.08817344,-0.101677634,-0.033519644,0.035779692,-0.038184237,0.005338179,-0.02279386,0.011196002,0.025505954,-0.052513093,-0.06741018,0.0154655045,-0.06320193,-0.029692391,-0.025579188,0.015225864,0.02323853,-0.016948543,-0.06050681,-0.06387501,-0.021232804,0.016468206,-0.054425437,0.06808926,0.04508574,0.065999985,-0.060509883,0.030730981,0.04032985,-0.06400552,0.01179133,-0.041397862,0.008829667,-0.024177853,-0.04613284,0.06201788,-0.04677321,0.0027058385,0.021825092,-0.041318215,0.017022384,0.021676429,-0.0106599275,-0.024764132,0.022326324,-0.077242695,0.090110675,0.10794059,-0.0882733,0.0028362337,0.05533165,0.03294339,-0.04705718,-0.04463672,0.048330694,-0.05595291,-0.11993927,0.0574282,-0.058314953,-0.08369403,0.03234931,0.03395934,0.017649975,0.030010458,0.07780158,0.0065455073,-0.0046278886,0.010833329,0.06451645,-0.10271624,-0.023173574,0.03499687,-0.003174838,0.06948275,-0.03253737,0.012239842,0.07941961,-0.0043555563,0.045507044,0.015997717,-0.0074519645,-0.006165809,-0.030807506,0.050012253,-0.011596825,0.118787475,0.037049342,-0.083416365,-0.015100916,-0.03689185,-0.021536153,-9.667081e-05,-0.022511981,0.024613736,-0.1050575,0.0139435325,-0.04694524,0.035189476,0.008486237,-0.07366957,0.049631648,0.010200081,-0.041304342,0.03522379,8.852484e-34,-0.005740957,-0.06184809,0.009602821,0.0013762721,-0.028327756,0.089524806,-0.035058815,-0.069077276,0.0049035097,0.034909695,-0.07690132,0.0088317385,-0.05248035,0.034255948,0.06816044,0.037692796,0.01451888,0.040243596,0.13061371,-0.06188783,-0.10657043,0.038764697,-0.062879175,0.08395205,0.034988012,0.008615399,-0.063593216,-0.040947806,-0.0576028,0.06502035,0.093615636,0.040168535,-0.026116244,-0.08499977,-0.041763593,-0.13275218,-0.012008397,0.041991167,-0.008034419,-0.01252569,0.11037437,-0.040861085,-0.027227331,0.054341707,0.040465854,-0.11839416,-0.02755286,0.00037733663,0.0067166933,0.032428104,-0.035534207,-0.010125029,-0.027332768,-0.062167726,0.00032964154,-0.09712872,-0.04291943,0.063415855,-0.035505556,-0.02689486,0.067602985,0.014281539,-0.061295193,-0.028929299,-0.04383133,-0.04210875,0.010155109,0.053183734,0.045347963,-0.039821297,-0.07191221,-0.008843759,-0.02816748,-0.059475586,-0.0063189026,0.04466457,-0.029885927,0.09901451,-0.037317082,-0.013313682,-0.10475102,0.025636606,0.06873812,0.09400968,0.0803597,0.08332833,0.028769223,-0.033074908,-0.0073242113,0.064545475,0.0361046,0.057093743,0.002026029,-0.04263073,0.028378347,-2.2069831e-33,0.019387444,0.009082144,0.0035766813,0.06288963,-0.020991094,0.019030236,-0.11108508,-0.003659505,0.004316639,-0.016992409,-0.0043212445,-0.11901025,0.12952967,-0.019459184,0.054572795,0.09302468,0.022236865,0.0048789377,-0.07374458,-0.07441326,-0.026584305,-0.061062492,0.061594132,-0.032982744,0.020464279,-0.054238122,0.0469444,0.050126806,-0.03466278,-0.01675515,0.061017785,-0.026592646,-0.02254371,0.12890306,0.011808524,0.04223159,0.04124956,0.048679378,-0.018264357,-0.008705819,-0.012134264,0.03366369,-0.057981018,-0.0051150382,-0.011507777,-0.040400453,0.05814753,-0.06703219,-0.031251416,-0.000759508,0.114318535,-0.02707037,0.029263157,-0.07586926,0.052309707,-0.06361397,-0.07476536,-0.032567263,-0.05382044,-0.03636005,0.07760395,0.082749546,-0.038890336,0.0075456426,0.039427985,-0.032335397,-0.046739046,0.08390981,0.009054946,0.061308235,0.13459198,0.0042045326,-0.036992814,0.089476176,-0.08229713,0.02609279,0.029809944,-0.018431667,-0.019178933,-0.0011226677,-0.093083166,0.007193117,-0.016827002,-0.020923588,-0.053791273,0.03307483,-0.011669273,0.028652925,0.016382696,-0.00019171729,0.06841228,0.020278882,-0.0026247324,-0.03208699,-0.011101882,-1.8049203e-08,-0.03646771,-0.03473601,-0.08871994,0.057224885,0.06562643,-0.041324213,0.033584833,-0.065679945,-0.02022855,0.007914259,0.013858695,-0.06990392,0.06827111,0.055885077,0.0023139887,0.10000485,0.019236773,0.059687205,0.040102966,-0.0076148827,0.02406357,-0.023464682,-0.009376188,-0.0057491655,-0.0010236497,-0.069199905,-0.024923233,0.070934415,0.05979481,-0.04650454,0.0661683,0.0029350477,-0.059552725,-0.0058364556,0.02898384,0.0048151785,-0.030512473,0.04011246,-0.027975157,0.0057569565,0.071668625,0.019906444,0.049600974,-0.032504726,0.033821426,-0.06570141,0.007349133,0.044325303,-0.03878285,-0.049570806,-0.001025598,0.029774018,0.101135075,-0.005317545,0.032655988,-0.0031543674,0.009154338,0.011479275,0.042352032,-0.0126373,0.032217067,0.15395436,-0.043371074,0.030021088} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.853037+00 2026-01-30 02:01:12.31693+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2197 google ChZDSUhNMG9nS0VJQ0FnSURLcGY3OFJBEAE 1 t 2200 Go Karts Mar Menor unknown Un circuito espectacular y muy buena atención lo recomiendo un circuito espectacular y muy buena atención lo recomiendo 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.03 {P3.01} V+ I3 CR-N {} {"E1.03": "Un circuito espectacular y muy buena atención lo recomiendo"} {-0.060408704,-0.044646963,-0.037438426,-0.042183924,-0.08651542,-0.0074787084,0.07954422,0.11771832,0.023662532,0.03557052,0.05283256,-0.01179618,-0.03210512,0.059251226,0.005125922,0.023987584,-0.049386483,0.03579452,0.039868947,0.00013942867,0.19077021,-0.059722845,-0.0040395684,0.05714037,-0.038316227,0.041130926,0.041771557,0.06312521,-0.04312789,-0.1752234,-0.032645952,0.096242495,0.023446053,-0.024202794,-0.0017713675,-0.0058737583,0.007952415,-0.10801529,-0.027892422,0.013661501,-0.100971945,0.01079619,0.042021997,-0.053529646,0.011115623,-0.069593586,0.0148320915,0.035656482,0.004664694,-0.079947,0.044241797,-0.058197394,-0.010921616,0.03135318,-0.014792021,0.035184667,-0.039284937,0.032131072,0.037108384,-0.015397815,0.06108724,0.03109561,0.008001566,0.0517362,-0.035048917,-0.038459416,0.09063454,-0.0649447,-0.0035259724,0.031672977,0.030998712,-0.039955243,0.11972131,-0.04231651,0.03997164,0.023604207,0.00054454507,0.040092777,0.034537863,0.03135292,0.042232685,-0.019825965,-0.030244203,-0.05320921,0.050423726,0.0061658234,-0.0517008,-0.03232744,-0.010056495,-0.051048663,-0.0419128,-0.026238477,-0.03375091,-0.038110472,-0.029948972,-0.052130792,0.020528812,-0.10308353,0.023732953,0.049181752,0.08423514,0.018614603,0.09715372,0.04161585,-0.042263456,0.036297172,0.06982728,-0.036692113,-0.04485756,-0.003238958,-0.0599079,-0.002411574,0.011736888,0.053015877,-0.010924591,-0.020456597,0.013711787,0.021977236,-0.008499065,-0.07810194,0.01710503,-0.04538499,-0.08766084,-0.023210566,-0.049921934,0.008762253,0.07521387,3.702673e-33,-0.01498162,0.01148996,-0.03615942,-0.037583485,0.03745818,0.044901483,-0.050228685,0.00054169976,-0.017760944,-0.004910493,-0.099168316,0.07200952,0.074722975,0.12198985,-0.0010813146,-0.06796069,-0.008115248,0.02597431,0.088032,-0.042380907,-0.05287666,0.026834015,0.011883605,0.08893496,-0.028050141,0.049747847,-0.054968983,-0.026546983,-0.028462501,0.027431635,0.03381032,0.083665885,-0.0093976725,0.0015226041,0.0004490479,-0.032826107,0.044161342,0.0012200751,0.1185267,-0.014101124,0.030107588,0.029683195,-0.08418853,-0.028121509,0.034948487,-0.078051314,-0.009708388,0.07269841,0.094512075,0.0074191396,-0.06866334,-0.10730401,-0.03244672,-0.07077936,0.057528418,0.041126642,-0.06536659,0.08023109,-0.0036325878,0.00073320896,-0.0076404936,0.09682574,0.014916335,-0.059223235,-0.064801626,0.0311098,0.018915262,-0.08115514,0.003372283,-0.023151446,-0.064675935,0.033447362,-0.029525137,0.00896473,0.06690373,-2.6038066e-05,-0.018480217,-0.030237578,0.022196388,0.028264107,-0.06721191,-0.05523081,-0.015231334,-0.00064611033,0.00896729,0.053530432,0.05834911,0.024310833,0.026631461,0.0872646,-0.019644894,0.005137449,0.04736027,-0.060043085,0.08782757,-5.6208316e-33,0.005435735,-0.030208865,0.056854654,-0.006250034,-0.015913658,-0.001245406,0.050335847,-0.050164618,0.0054495283,-0.07180046,0.041848466,-0.032284155,0.07688927,-0.03820013,0.018214773,0.018673021,-0.060065243,-0.068476975,-0.030104205,-0.008853738,0.01845405,0.05822629,0.00872469,-0.055481747,-0.031699307,0.02281646,-0.064814225,0.016331755,-0.026228871,0.030223928,-0.036463067,-0.038817,-0.021325901,0.040436205,-0.047085114,0.032985635,0.033620544,0.051379606,-0.0534039,-0.01770917,0.0043929727,0.1140983,0.06205976,-0.020418433,0.04403827,0.0027375277,0.0021240502,-0.040359765,-0.038383774,-0.033012167,-0.06584063,-0.011414347,-0.052595533,-0.05361734,-0.028533896,0.00013959149,-0.027755553,-0.057846893,-0.09682098,0.004717853,0.0020306034,-0.029569803,0.01074361,-0.056081045,0.116883695,0.039869767,0.0017341919,0.05968644,0.18588962,-0.03632259,0.10410607,0.0725408,0.0074578444,-0.038102806,0.020025851,-0.05839914,-0.15940022,-0.012854679,-0.01883555,-0.041078184,0.03557919,0.052447263,-0.007873853,-0.07494135,-0.00404664,-0.07196759,-0.0031056313,-0.011806462,0.057030592,-0.01311791,-0.0011968942,0.011184643,-0.07858266,0.050128415,0.11845049,-2.6363235e-08,0.049758293,0.01910238,0.03343886,-0.0537712,0.07496631,-0.061350334,0.042752236,-0.0133360475,-0.005094409,-0.057691347,-0.015826236,0.07698032,0.017977431,0.06407398,0.02581626,0.05604254,0.013242564,0.06793361,-0.016187474,-0.046526633,0.07091064,-0.04455508,-0.04557104,0.021184329,0.06276236,0.0054841526,-0.037155274,-0.024620125,-0.0761707,-0.04283454,-0.038188454,0.008630317,0.024809865,-0.0406863,0.009905424,-0.050349656,-0.04672498,0.0336349,-0.068121925,-0.042305853,0.011079218,-0.0017275608,-0.0521368,0.020910246,0.0033740043,-0.058892064,0.0072455057,0.03831549,-0.032956034,0.045935653,-0.08695433,-0.011724943,-0.034328785,-0.0120620765,-0.034177855,-0.049438056,-0.0057776156,-0.016241923,-0.046412945,-0.0063271807,0.0019307812,0.050616045,0.07078592,-0.14765322} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.864277+00 2026-01-30 02:01:12.31932+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2200 google ChdDSUhNMG9nS0VJQ0FnSUR1cC1iUjN3RRAB 1 t 2203 Go Karts Mar Menor unknown Muy buena opción para pasar un buen rato muy buena opción para pasar un buen rato 4 2023-01-31 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Muy buena opción para pasar un buen rato"} {-0.014295409,0.004048848,-0.022374813,-0.0768901,-0.07791311,-0.015730912,0.08363207,-0.042485815,0.012186121,0.021787876,0.049350787,0.0681311,-0.050520025,0.028919592,0.011479665,0.021605555,-0.047337484,0.053758644,-0.009256089,0.0043659913,0.08959602,-0.020203583,-0.06991522,0.10573463,-0.12314437,-0.05969887,0.015250398,-0.036049474,0.0038724167,-0.02608592,-0.006126197,0.049822837,0.06405664,-0.07414927,-0.039217677,-0.08235261,-0.0037851543,-0.012027316,-0.008198673,0.031732604,-0.04663701,-0.05293143,-0.038810663,-0.018576458,-0.036434107,-0.11295461,0.077437505,0.011325459,0.11586484,-0.072247565,0.023703836,0.019103084,-0.07094073,0.017364427,0.0019573043,0.014021237,-0.0753252,-0.036705934,0.06704689,-0.013735565,0.0086403135,0.07429628,-0.059570834,0.0083178235,0.066596195,-0.0014695141,-0.0061744316,0.07373806,-0.07876558,0.031270728,0.092393085,-0.10606603,0.03133665,0.03526655,-0.009324611,-0.018594984,-0.03715858,0.05331351,-0.07253863,-0.056463625,0.016624397,-0.012378885,-0.08021905,-0.02497129,0.038365196,0.029131157,0.0028871654,0.09443725,0.035463322,0.022782868,-0.017724909,0.11227717,-0.059375774,-0.036417507,-0.004287066,-0.00018217358,0.09265581,-0.063988574,-0.003408553,0.11057521,0.07956024,0.0687946,0.110521734,-0.027768992,-0.007829412,0.008863681,0.05165943,0.00019515431,0.11023902,0.010619831,-0.054147895,-0.00028080787,-0.05706947,-0.0154679855,-0.034960087,-0.012634595,0.032015484,-0.035553996,-0.017145451,-0.069684654,0.034345154,0.023672774,-0.04256473,-0.0022171682,0.037897076,-0.077419765,0.026120253,4.2096036e-33,-0.007835752,-0.058669467,-0.0070931115,0.05622915,-0.038857978,0.08274993,-0.0065399483,-0.061752487,-0.03357932,0.04006065,-0.05313109,0.028866706,-0.016328955,0.05913675,0.06787983,0.044437114,-0.008722122,0.024208196,0.10630632,-0.02503862,-0.07515798,-0.025986169,-0.08167602,0.08279831,0.03142561,0.04480022,-0.040624626,-0.06081879,-0.0097615365,0.07364154,0.045268953,0.086327374,-0.03382459,-0.062200375,-0.060535453,-0.094626725,0.041271847,0.004793537,0.0056082727,-0.041644316,0.107069306,-0.015838075,-0.035287414,0.052234214,0.039281346,-0.04399953,-0.004232118,0.007392411,0.043245625,0.04777228,-0.049414534,-0.0453003,-0.06065299,-0.033070654,-0.023852373,-0.049920037,-0.053926177,0.06794631,-0.024308333,-0.03649171,0.063708164,0.039695937,-0.05401414,-0.0882214,-0.09041901,-0.029646676,-0.019516425,0.059948526,0.10244631,-0.0027846592,-0.06521002,-0.043742355,-0.06999962,-0.042605363,0.030698208,0.03630043,-0.02344879,0.0651866,0.03112483,0.025399644,-0.05905468,0.030079149,0.029997112,0.07818458,0.08795378,0.09582861,0.04064628,0.025256447,-0.049668293,0.08687383,0.016254792,0.09119631,0.038504813,-0.00819475,0.058368087,-5.2014097e-33,-0.0013466022,0.007805786,0.04510017,0.045201544,-0.028413225,0.016379932,-0.07563644,0.010579069,-0.016619356,-0.076019086,-0.009215528,-0.1263287,0.10831982,0.019148925,0.041665096,0.086752005,0.030583669,-0.033514105,-0.112541415,-0.07023063,-0.03540325,-0.002068008,0.04569658,-0.014438577,0.0032880274,-0.054469515,-0.005484602,0.059088126,-0.037109666,-0.023809317,0.083062455,-0.0029363364,-0.061710432,0.09121087,-0.041170575,0.0443574,0.038205735,0.009221232,-0.019024739,-0.009788782,1.2143351e-05,0.059322823,-0.059934724,-0.020627014,-0.048630457,-0.007134957,0.059022542,-0.108800806,0.008083084,-0.016160622,0.08897839,-0.056147378,0.0047070705,-0.07604578,0.02417302,-0.086849235,-0.02546253,-0.061317604,-0.064413786,-0.054620486,0.049881425,0.05721816,-0.046954308,0.014822186,0.047120165,-0.024680963,-0.014837519,0.082509875,-0.030263092,0.047858633,0.115476355,0.012202244,-0.045095228,0.06824358,-0.02640566,0.030296221,-0.011416766,-0.027123189,-0.03639807,-0.008574688,-0.049713653,-0.0052645467,-0.01649772,-0.070067815,-0.08486714,0.0057607195,0.00039847335,0.04260153,0.006948203,0.031518545,0.015515272,0.043594602,-0.05583931,-0.087691486,-0.0012812355,-2.2704965e-08,-0.045737427,-0.039548125,-0.027088694,0.017460514,0.011179352,0.006862003,0.018055474,0.02686634,0.027633062,0.06144589,-0.0055568,-0.050722715,0.012789373,0.059411667,-0.015439485,0.06734301,0.061564334,0.04990374,0.011838723,-0.02783969,0.01430162,-0.02372935,0.011779884,0.05741264,0.0032535896,-0.07774281,-0.045536846,0.088530004,-0.010168438,-0.014126906,0.035216257,-0.00014100652,-0.049555194,-0.041176006,-0.002448905,-0.05878026,-0.006221563,-0.013034399,-0.019183656,-0.025115173,0.0703549,-0.038279667,-0.044069335,-0.035607923,0.010916271,-0.11230627,0.02327188,0.02506582,-0.030551253,-0.05664564,0.01626658,0.004930802,0.060400274,0.0038114362,0.01612346,-0.062172588,-0.01337014,0.026143976,0.03908552,-0.030149022,0.057105236,0.11450132,0.0029011029,-0.050974295} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.895568+00 2026-01-30 02:01:12.330574+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2202 google ChdDSUhNMG9nS0VJQ0FnSUM5cTV1ZnJnRRAB 1 t 2205 Go Karts Mar Menor unknown Leuk om te zien leuk om te zien 4 2025-01-30 01:52:39.833374+00 nl v5.1 O1.05 {} V+ I1 CR-N {} {"O1.05": "Leuk om te zien"} {-0.074519396,0.20477405,0.07463731,-0.017509649,-0.03330018,-0.04583006,0.028562581,0.07096015,0.033475053,0.0020285973,-0.02265508,-0.039273825,0.017261686,-0.0005903104,-0.03212165,-0.063237354,-0.04712728,0.03908935,-0.031243665,-0.010234807,0.014243261,-0.018977981,0.07099518,-0.038926747,0.028137537,-0.019747198,0.04148365,0.07177073,0.08155358,0.009151563,0.027041456,0.028265223,0.011065215,0.01630858,-0.066579394,-0.03604017,0.03934597,-0.039630122,-0.049006034,0.03036186,0.023509674,0.0035422721,-0.12225432,-0.084272824,0.048065457,0.053553145,-0.053220555,-0.021675792,-0.14263378,-0.023727067,-0.04122012,-0.0097674,0.012087857,0.048280485,0.039673902,0.013989567,-0.031250797,-0.042006727,0.036019735,-0.05013492,-0.052968286,-0.041477297,-0.035217967,-0.0071071354,0.044374727,-0.029088456,0.01110054,0.020918911,-0.12614654,0.039002497,-0.0025821654,-0.02868176,0.025678037,0.028017906,-0.017279696,0.03210571,0.004317946,-0.06995789,-0.0013170011,-0.051991757,0.09549167,-0.018148303,-0.02313862,0.04883063,-0.001377212,0.034521643,0.039589543,0.0037266293,0.027452575,-0.032620568,-0.056443203,0.050633308,-0.107641,-0.0014201297,0.0045801164,-0.018178878,0.0065368465,0.0024609256,-0.032324586,0.09837486,0.034806862,0.057292756,0.08578737,-0.0016815471,-0.06741362,0.013069669,0.08979589,-0.036416993,0.014780251,0.036270935,-0.031364333,-0.054991297,-0.086410224,-0.09948986,-0.07523187,-0.064506255,-0.061543785,-0.025981577,-0.046035163,-0.03787785,-0.028825095,-0.059140153,-0.08209152,0.03734746,-0.010662819,-0.0028739348,0.036080614,8.242151e-34,-0.04258929,-0.013438306,-0.06934487,-0.031605773,-0.020280879,0.026418667,-0.041341554,0.053752385,-0.07342943,-0.012184325,-0.04342596,-0.05203721,-0.04812838,-0.01240018,-0.028324263,0.0069316607,0.0679086,0.030064462,-0.009472973,-0.023792896,0.059825018,-0.026461428,0.007450044,-0.02674472,0.058126718,-0.054641973,-0.005182823,-0.08893513,-0.018549224,0.018235303,0.13102654,-0.053199,-0.030270042,-0.024012456,-0.009140408,-0.019526435,-0.04338946,-0.013141144,-0.025622142,-0.06036779,0.018508652,-0.04139068,0.00049032713,0.0132430205,-0.0034757613,0.11827171,0.04294805,-0.0725414,0.0092660915,-0.032675527,0.012511583,0.0031651263,-0.16234131,0.036922235,-0.02249697,-0.008132732,-0.013481387,-0.0077056387,0.061204225,-0.0007172339,0.05470573,-0.0008305773,-0.08902977,0.017153522,0.06879769,-0.048540436,-0.046478543,0.023840785,0.04872539,-0.024904318,-0.008713601,-0.044260997,0.053397708,0.031879988,-0.075105816,0.053609572,-0.022753246,-0.0036214632,0.0372863,0.0024937158,-0.078954026,-0.017539965,-0.010936908,0.00063730957,0.08173458,0.03634413,-0.021013927,-0.06348614,0.035475817,0.05739352,0.031912725,-0.069710426,0.08767911,-0.07847127,-0.056761738,-1.1066914e-33,-0.0044127624,0.025113031,-0.028076978,0.03469453,0.08657723,0.059155166,-0.030726748,0.007611316,0.02532356,0.035362575,0.08242014,-0.07017539,0.15646164,0.01255439,0.0454231,0.040876426,0.05859423,0.021755029,0.0981273,0.05622867,0.031811625,-0.05431138,0.014063586,0.08345963,-0.039213642,0.061311953,0.13276085,-0.008327798,-0.032217953,-0.01047123,-0.012535052,-0.040918365,-0.015290736,0.033468578,0.014759073,0.019407239,0.08118818,0.010441314,-0.06597686,-0.062064704,-0.05632534,0.019447207,-0.06278162,0.03421017,0.024644542,0.008876646,-0.029053366,0.052886017,0.0403,0.018185398,0.12040702,0.10462402,-0.028453859,-0.06387087,0.077832475,-0.026141435,-0.005434479,-0.05840961,-0.027599925,-0.06241632,0.037912082,0.010369628,-0.010810247,0.06299327,0.0016860752,0.046824116,0.037423957,0.051913705,0.01587947,-0.013074791,0.03352139,0.005075357,-0.086677045,-0.12331164,-0.09323491,0.04309703,0.0066294754,-0.009118207,0.009402446,0.017982174,-0.041010574,-0.050410643,-0.008841833,0.082483634,-0.04982859,-0.010550511,0.01575296,-0.018735694,0.014895505,-0.021324608,-0.011575168,0.05695921,0.01854307,0.021229886,-0.02692062,-1.6836681e-08,-0.017038587,-0.053870767,-0.039241847,0.04995241,0.0765059,-0.13942696,-0.030540973,-0.102544285,-0.060571045,0.058341768,0.012816815,0.09497677,-0.009875495,0.012185681,0.061902575,0.013966683,0.011064205,-4.0081635e-05,0.0411858,-0.008963384,-0.0075279246,0.013313534,0.0032338384,-0.022204462,0.030822093,-0.023719031,0.018329253,-0.011782737,0.095197216,-0.07442251,0.03642375,0.094633274,0.03778564,0.029664043,0.0016526664,-0.03848001,-0.016272645,0.00010329753,-0.032563187,-0.03605143,0.04320637,0.051905245,0.17131063,0.0013709484,-0.05422757,0.042237442,0.113703854,-0.030880837,0.015283241,-0.045240182,-0.06261862,-0.029677832,0.010296566,0.06993112,0.08368405,0.003279273,-0.03073485,-0.02566066,0.015182968,0.0075851977,0.035482284,0.06642257,0.0035997946,-0.014231222} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:21.916704+00 2026-01-30 02:01:12.336228+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2207 google ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE 1 t 2210 Go Karts Mar Menor unknown Estupenda atención, buen circuito. estupenda atención, buen circuito. 5 2025-01-30 01:52:39.833374+00 es v5.1 P3.01 {} V+ I3 CR-N {} {"O2.03": "buen circuito", "P3.01": "Estupenda atención"} {-0.06094419,0.060493175,-0.05601336,-0.04741304,-0.10340522,0.034167126,0.039713148,0.07802968,0.0013287037,0.036584515,0.06524351,-0.023216777,0.02191411,-0.043964967,-0.040867776,0.05058557,-0.049732767,0.054833293,0.041297555,0.011090781,0.061168276,-0.045833476,-0.00062665343,0.088771366,-0.02071452,0.008970678,0.0584261,0.008497351,-0.044151127,-0.087234944,-0.0349108,0.05624673,0.008715201,-0.06745454,0.020706618,-0.0054109218,0.046014357,-0.08809085,0.023834685,0.025568092,-0.09133897,-0.09215241,-0.03714972,-0.0972916,0.03583691,-0.040042117,0.008637806,0.04215997,0.030432455,-0.090275444,0.07774599,-0.03191324,0.017819704,0.020037469,-0.03827656,0.03142456,0.018562632,0.021177702,0.05399851,0.035957146,0.03367675,0.020941524,-0.006094014,0.07945078,0.018627878,-0.030321192,0.028008224,0.001645537,-0.054613106,-0.015351439,0.1211136,-0.07790233,0.022633465,0.023886312,0.030209227,0.029271808,-0.025113374,0.060657866,0.04268742,-0.11621152,0.017688837,-0.03896722,-0.0959141,-0.02756616,0.024053749,0.0128593715,-0.0011201503,-0.027022881,0.015266139,-0.011219917,-0.06864099,-0.0014083185,-0.023669936,-0.03272998,0.023246186,-0.03602334,0.004708874,-0.038426228,0.028315295,0.05193944,0.034594424,0.028091472,-0.020966217,0.025555672,-0.065370634,0.014128884,0.06406515,-0.015994363,0.04543408,-0.04382784,-0.053735185,-0.005285243,-0.04260626,-0.060724318,0.018628404,0.0033566628,0.017166138,-0.053497422,0.00043864638,-0.039938062,0.033759445,-0.037080877,-0.08595289,0.0008214777,0.047816705,-0.04305968,0.12269748,9.260193e-34,0.0059457486,-0.045118846,-0.023228064,0.011308826,0.04744983,0.097400315,-0.07590855,-0.013715042,0.013076476,-0.010034587,-0.102702215,0.08687451,-0.022277191,0.002972039,0.11392582,-0.060465273,-0.0010473045,0.0628676,0.12366254,0.004015245,0.0003269866,-0.08937216,0.02976565,0.111181535,0.036755607,0.023249289,-0.018552383,-0.030379511,-0.08953892,0.015296114,0.095913894,0.02411379,0.003537258,-0.021965224,-0.059855487,-0.060353268,0.05828167,0.037217528,0.02301914,-0.037262972,0.018343275,0.01042874,0.00012169433,0.050823353,0.048910517,-0.040145908,0.034033496,0.036590055,0.17162621,0.052706752,-0.10017445,-0.07258874,-0.011553893,-0.054441866,0.042247374,0.05379957,-0.078432724,0.083380945,0.048543617,-0.0017876056,-0.03919251,0.10837691,-0.02994281,-0.023209443,-0.07128286,0.03193809,0.025275232,-0.058114372,0.05691436,-0.07209148,-0.08025244,-0.0016666875,-0.012170211,0.08544167,-0.055952508,0.020409415,-0.08081701,-0.0065179053,-0.026963046,-0.008551021,-0.09376187,-0.04782683,0.032106787,0.06074418,0.1418027,0.13320145,0.02393655,-0.00796995,0.032195196,0.094904356,0.013123801,0.07931041,0.06312693,-0.005734892,0.09136245,-1.6403296e-33,0.008890721,-0.024409378,-0.024766484,0.004808154,0.038396243,-0.0007478588,-0.105085686,0.004529999,-0.052331213,-0.026696708,-0.00780182,-0.09486802,0.06286281,-0.062019866,-0.039643776,0.019706357,0.020652676,-0.041758068,-0.050507616,0.018519923,-0.056848317,-0.004974043,-0.0024988172,-0.03320618,-0.021115769,-0.0024223938,-0.040112704,0.0069706105,-0.017963402,0.015927542,0.013151001,-1.9921621e-05,-0.07109623,0.12164866,-0.013825437,0.057774074,0.12901548,0.036610622,-0.026877327,0.0076161763,-0.007952297,0.04105153,-0.0073432107,0.003958848,-0.06959715,0.03827345,-0.030519467,-0.062250733,-0.08018281,-0.0327065,-0.0019614808,-0.014707657,0.016372796,-0.04432296,0.027288651,-0.044568893,-0.017450556,-0.029382735,-0.044395607,-0.004232833,0.114145614,0.009064055,0.006779086,0.012254983,0.06256267,-0.00325978,-0.02129598,0.06965181,0.07841118,0.05290614,0.08552711,-0.10745297,-0.033302743,0.009060318,-0.044137653,-0.054641884,-0.08101513,-0.02462415,-0.01569403,-0.008864668,-0.06487072,-0.024174718,-0.05756205,-0.051523816,-0.04805091,-0.036268473,0.025463128,-0.026683206,-0.0029785978,0.020566959,-0.059623875,0.04268739,-0.0638224,-0.00784605,-0.009884784,-2.246271e-08,0.029635586,-0.018047389,-0.027457029,0.008793264,0.10546303,-0.120543234,-0.013669775,-0.049359884,-0.05256518,-0.06515642,-0.0014552819,0.0027634054,0.020076843,0.02342059,0.01216279,0.054554313,0.04557563,0.10050291,-0.009534543,0.0023482628,0.05015797,-0.025237828,-0.044713788,-0.020223975,0.06416749,0.02623617,0.017296126,0.051598202,0.016732147,-0.039272573,0.008016079,0.018653378,0.009777058,-0.05294175,0.06473557,0.086074404,-0.022996368,0.027596489,-0.04333593,-0.057635598,0.037904423,0.014909636,0.037367098,-0.0069033275,0.050662864,-0.04912334,-0.014743363,0.028977174,-0.00081811124,0.018779656,-0.100222446,-0.06681836,0.048769034,0.041742064,0.03601233,0.024825571,0.072283,0.0013392272,-0.037944186,0.028918557,-0.019212196,0.08995372,0.015287703,-0.04653555} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.163812+00 2026-01-30 02:01:12.45265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2208 google ChdDSUhNMG9nS0VJQ0FnSUNwMzgzeDFRRRAB 1 t 2211 Go Karts Mar Menor unknown Muy buena gente. Gracias muy buena gente. gracias 5 2024-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Muy buena gente. Gracias"} {-0.044853635,0.041469265,0.047256436,-0.016766682,-0.075378664,0.0033832726,0.13357762,-0.0066102524,0.018723635,-0.01613846,0.08196567,0.025415288,-0.008999971,-0.056112062,-0.0061177313,0.023334136,-0.03969753,-0.027520837,0.05781231,-0.014559282,0.099455975,0.019259164,-0.075446546,0.09952439,-0.07510334,0.0033227983,-0.011520711,0.03522065,-0.007091301,-0.030379124,-0.0034348897,0.10800244,0.084888734,-0.0017009801,-0.03185163,0.0017987689,0.03244627,-0.012314972,0.025624996,0.05232978,-0.105227694,0.013817707,0.011317077,-0.0071221353,0.04952328,-0.09025077,0.05679215,0.018873433,0.053082187,0.0054803053,-0.015551621,-0.02835505,-0.017321317,0.032691784,0.022801138,0.025222465,-0.005520693,-0.040073592,0.046891358,0.0070791617,-0.00594686,0.05390519,-0.079806626,-0.0062025986,0.00018494358,-0.028349463,0.08687916,-0.005179036,-0.11721215,-0.018214596,0.023092663,-0.043571077,0.027220419,0.09712348,-0.10858791,0.039068054,0.0058267256,0.017721413,-0.027951889,-0.005413714,-0.022443539,0.004319539,-0.029837163,-0.024356145,0.00035212925,0.018373787,0.025431784,0.030877007,0.045788836,-0.012876903,-0.07851093,-0.0056986096,0.016815506,0.07182545,-0.011541301,0.07683138,-0.025043445,-0.1317104,-0.024808047,0.0734601,0.09538057,0.05223414,0.10683353,0.008674326,-0.011318443,0.0742032,0.025463575,0.026473114,0.016964018,0.030802239,-0.04011466,0.009282618,-0.0049147117,0.017765565,-0.0569781,0.051903438,0.03467631,-0.012469576,0.0018571183,-0.09699436,0.05307485,0.04035681,-0.04556028,-0.043460622,-0.019969864,0.00966103,0.033859927,1.6121782e-33,-0.06492378,-0.031754944,0.03781685,0.09272257,0.0051973565,0.03137751,-0.028665608,-5.401676e-05,-0.067667365,-0.04266796,-0.066754475,0.009659028,-0.026497276,0.028483033,0.020077744,0.097871594,-0.042742297,-0.036409475,0.033320352,0.015079112,-0.09662239,-0.01867734,-0.01971966,-0.00899173,0.008044415,0.0071736444,-0.011202469,-0.082114436,0.032121524,0.041026067,-0.026033465,0.040424068,0.03364325,-0.007264511,-0.04622772,-0.047559302,0.08858356,0.030759104,-0.0015319402,0.011768911,0.023953019,0.074189484,-0.0053925076,0.0032008567,0.013787416,0.017178409,0.05176794,0.052542374,0.0082315,0.05789091,-0.037681706,-0.053592503,-0.12303092,0.01989343,0.013896481,0.060674753,-0.06734997,0.06744934,-0.026882617,-0.08261058,0.09167417,-0.00028022082,0.06501712,-0.060821082,-0.09927452,-0.040435106,-0.006513915,0.10268329,0.11047196,0.05111107,-0.03945307,-0.075841576,-0.05450179,-0.010957108,0.0044646347,-0.036216255,0.031238949,0.013781757,0.07173739,0.03133468,-0.04263998,0.05083492,0.012272081,0.020454675,0.06994774,0.070265934,0.044961046,0.04761606,-0.06944217,0.042547338,-0.033908445,0.048709773,0.089343846,-0.056399327,-0.045559496,-1.8907575e-33,0.02819468,-0.05037873,0.013090178,0.056330565,0.004328913,-0.064015724,-0.019879743,0.010507547,-0.116841815,-0.072479874,-0.046922162,-0.10334947,0.09318217,-0.029613893,-0.00085704157,0.03913423,0.06677671,-0.02427599,-0.110687256,-0.02532628,0.012050355,0.041134026,0.05619749,0.0118495,-0.020142987,-0.05706332,-0.00088777643,0.084085405,-0.07541642,-0.042800296,0.016024936,-0.035323825,-0.040671315,-0.0046356516,-0.016268529,0.028740102,0.10723726,0.04874386,-0.00858547,-0.015025607,0.0053806063,0.104805596,-0.025294052,0.09616234,-0.016012166,0.08424332,-0.0380021,-0.10176816,0.019068217,-0.01901314,0.007803063,-0.05083969,-0.03152331,-0.01078921,-0.01939022,-0.08125162,0.023577645,-0.037760675,-0.101121895,0.013122263,0.02013664,0.0037518623,-0.08525605,-0.029369688,0.08191171,-0.0008744798,-0.04578843,0.06678811,-0.027963694,0.06588031,0.09702267,-0.022154864,-0.061626405,-0.017178658,-0.05433181,-0.04087196,-0.091264084,-0.0019295041,0.0075991354,-0.020771816,0.05158989,0.007830317,-0.05993134,-0.024214203,-0.07106551,-0.047768492,-0.000113956216,0.051850505,0.01163006,0.0635146,-0.013253093,0.014450454,-0.099600725,-0.09448962,-0.010521283,-2.0060119e-08,-0.002082304,-0.025028495,0.001152777,-0.021356907,-0.01336713,0.008487039,-0.09479728,0.061978407,0.06799851,0.03798797,-0.033545148,0.018395042,-0.039615445,0.13245897,-0.017447617,0.050330453,0.053193077,0.10503191,-0.027327161,-0.074936785,0.03926697,0.03721666,-0.061223276,0.06760977,0.020037074,-0.0045201667,-0.03553382,-0.004182506,-0.026030272,-0.005107982,-0.060138904,0.022598214,-0.056005716,-0.07470041,-0.0036584905,-0.017255137,-0.040421925,-0.037244942,0.018627767,-0.032623775,0.115706846,-0.020285994,-0.045236863,-0.082674704,0.0030242074,-0.120293245,0.050405275,-0.006777097,-0.012962089,0.036337297,0.007233066,-0.02269625,0.061489344,0.05008801,0.012950238,-0.070695706,0.048177052,-0.0031641792,0.045684937,-0.016811496,0.050729066,0.086570024,0.0064778514,-0.0637477} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.183593+00 2026-01-30 02:01:12.45737+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2210 google ChdDSUhNMG9nS0VJQ0FnSURndDh2ZGpRRRAB 1 t 2213 Go Karts Mar Menor unknown Muy buen circuito y muy buena atención muy buen circuito y muy buena atención 5 2018-02-01 01:52:39.833374+00 es v5.1 O2.03 {P3.01} V+ I2 CR-N {} {"O2.03": "Muy buen circuito y muy buena atención"} {-0.044936396,0.022907488,0.03150904,-0.06422122,-0.068779916,-0.005793723,0.08472215,0.032636587,0.010166883,0.017844176,0.07712871,0.017578494,0.06323061,-0.0037040834,0.017616997,0.07669435,-0.04805741,0.03545402,-0.0036010228,-0.04354873,0.116755925,-0.019987851,-0.07823896,0.117979765,-0.054641843,-0.0071740276,0.034851074,0.039390706,-0.033985212,-0.11228905,-0.06277533,0.08397668,0.06617447,-0.022841344,-0.07357659,-0.042491324,0.08110131,-0.03140529,0.0067219445,0.036829773,-0.092477955,-0.08715194,0.018206043,-0.03179981,0.0023231364,-0.07047767,0.053439375,-5.235562e-05,0.079909585,-0.08222787,0.035089746,-0.022539586,-0.023422776,0.038184278,0.009527234,0.049092375,-0.030622065,0.039188292,0.06189931,0.024746962,-0.005791965,0.038404107,0.011441299,0.0477546,0.043515153,-0.043260567,0.01643052,0.04342719,-0.07807529,-0.038365338,0.09921321,-0.11934539,0.0225218,-0.015640855,-0.018626776,0.02343023,-0.007982727,0.02061448,0.00036302028,-0.044402085,-0.026966425,-0.064911895,-0.04720854,-0.027686708,0.03779143,-0.0022368988,-0.03630773,-0.03748911,0.008380164,-0.04945055,-0.027069706,-0.017330771,-0.016852092,0.0006434346,0.008072466,-0.017082697,0.009110433,-0.082429975,-0.010355323,0.12233578,0.06757033,0.032328952,0.097608306,-0.026555648,-0.006065377,0.041402753,0.062835656,0.0062278514,0.046761457,-0.04149326,-0.029333346,0.012720506,-0.04892669,0.022146733,0.040005766,-0.014804927,-0.020727394,0.07173145,-0.04806183,-0.10964359,0.013926936,0.034492776,-0.09342277,0.01646902,-0.03559528,-0.01848102,0.085839994,6.04809e-33,-0.0522974,-0.035707895,-0.028926762,0.046818785,0.013307946,0.044672407,-0.04065289,0.040024985,-0.031731244,0.013490951,-0.027148388,0.07328865,0.009997243,0.024417685,0.09988254,-0.053716835,-0.03709904,-0.060942683,0.09918832,-0.019700788,-0.030379334,-0.05604941,-0.0059691877,0.08146451,0.0067255045,0.0032838676,-0.019325618,-0.054332547,-0.025437348,0.041789062,0.01039193,0.058526196,0.03279749,-0.051100668,-0.07956727,-0.06626291,0.038550504,0.019001342,0.017794501,-0.045265596,-0.008530283,-0.010581411,-0.05761004,0.023537418,0.0297354,0.014273607,0.06749433,0.071080245,0.087092936,0.09371896,-0.115141645,-0.10186189,-0.04867484,0.0034539872,0.02378294,0.020090709,-0.022856953,0.08173217,0.024619214,-0.017504392,0.009819804,0.096679464,0.0031710963,-0.081255466,-0.09154997,0.07899993,0.011881793,-0.042956337,0.06465998,0.001523791,-0.10057452,-0.009250193,-0.11300316,0.010301265,0.027308514,-0.024438547,-0.025886117,0.008427123,0.040502194,0.0004527058,-0.09640894,-0.03207236,0.015148269,0.09972822,0.07443131,0.08996029,0.06809871,0.03102045,-0.019874252,0.1099948,-0.06179336,0.06399953,0.10074841,0.010282178,0.066000305,-5.834987e-33,-0.033746134,-0.03604438,0.03294836,0.07010088,0.0077852695,-0.027303606,-0.025058053,-0.030733641,-0.05045074,-0.042737402,-0.028982695,-0.110322244,0.06434462,-0.009412656,0.013319857,0.0066142054,0.029794265,-0.034608614,-0.08287591,0.024827722,0.026536778,0.06485198,-0.0016035186,-0.04447831,-0.052987877,0.020269852,-0.07680929,0.017057631,-0.024110734,0.040544912,-0.0051633934,-0.04341578,-0.06320189,0.10357178,-0.07893396,0.01197951,0.0977655,0.047693674,-0.041886944,-0.043248754,0.022903368,0.054247495,-0.031674948,0.03159213,-0.08421035,0.061271075,-0.0075244065,-0.079010114,-0.03718901,-0.01621019,-0.01752786,-0.03018324,0.0007493138,-0.042664792,-0.03362045,-0.05441651,-0.028332876,-0.013483227,-0.07486143,-0.036572758,0.062160313,-0.04765049,-0.029444225,-0.010311857,0.08943658,0.030276623,0.019818304,0.11372227,0.06704589,0.0069184927,0.089015074,-0.004791056,-0.014960897,-0.04057248,-0.053312924,-0.03733626,-0.123891614,-0.034386918,-0.06195664,-0.01367089,0.016275417,-0.00542884,-0.054488353,-0.079010315,-0.0680671,0.0029579902,0.054031007,-0.0012646508,0.03360344,0.030518437,-0.03151537,0.087519854,-0.07966935,-0.03918103,-0.0013900059,-2.5869294e-08,-0.009442206,-0.016264252,0.041998655,-0.026599474,0.05464211,-0.06948757,-0.0070290016,0.009393992,-0.024266241,0.011891587,0.02925881,0.004448752,-0.032668725,0.06747543,0.013066721,0.05829855,0.028609026,0.07820175,0.009817195,-0.03370546,0.053915538,-0.015380167,-0.017067993,0.09854235,0.071267635,0.0068993745,-0.010816664,0.07840624,-0.0061371103,0.00061334623,0.0045984173,-0.005102411,-0.031260055,-0.06301826,0.018652087,-0.010874868,-0.05428608,-0.042823095,0.0207546,-0.053684615,-0.010587601,-0.06362237,-0.030368118,0.010369123,0.05403167,-0.07041286,0.019551719,0.017118001,0.015349248,0.0038337223,-0.03584819,-0.043053046,0.023144744,0.064071625,0.0331521,-0.035874303,0.0504714,-0.009635083,-0.020636743,-0.008887296,0.008544602,0.10668645,0.043753754,-0.14880505} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.212678+00 2026-01-30 02:01:12.466576+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2213 google ChZDSUhNMG9nS0VJQ0FnSUR3bU8zZ0J3EAE 1 t 2216 Go Karts Mar Menor unknown Veldig tøff bane. Vi vil kjøre mer! veldig tøff bane. vi vil kjøre mer! 5 2019-02-01 01:52:39.833374+00 no v5.1 O2.03 {V4.03} V+ I3 CR-N {} {"O2.03": "Veldig tøff bane. Vi vil kjøre mer!"} {-0.0052045416,0.11743781,-0.0022522358,-0.08569481,0.08206679,0.04023839,0.0052532475,0.082227714,0.06626444,0.007350725,0.006050253,-0.048459817,0.026641155,-0.04597807,-0.034803353,-0.046466522,-0.06998353,0.061591797,0.06764773,0.010202535,-0.026332345,0.06643766,0.046694674,-0.080512196,-0.014887718,0.030045213,0.028292334,0.010666165,0.009668366,-0.016183805,0.030213231,0.017984048,-0.07746263,-0.019455431,-0.0333819,0.054366965,-0.114411585,-0.026412223,-0.009918368,0.04962116,-0.1111563,-0.027664484,-0.07073362,-0.09845664,0.008505942,0.13150163,-0.03240713,-0.009524778,-0.033236295,-0.0034255343,-0.03823229,-0.02102849,0.03210498,-0.057717077,-0.0021960952,-0.09180697,0.015757808,-0.008416551,0.022158483,-0.015221169,-0.010402229,-0.0054047727,0.008868909,-0.012807163,-0.043300465,-0.07515363,-0.008456901,0.06093572,-0.04535888,0.037869856,-0.02289113,-0.036379308,-0.008729232,0.022361696,-0.065373376,-0.005056193,-0.008687568,-0.05320872,0.043714724,-0.0039303517,0.007806092,-0.016606929,-0.10353057,0.01981159,-0.022199692,-0.046753325,0.03231712,-0.01923781,0.04767627,-0.029945163,0.055177905,0.0075798514,-0.05316107,0.0025117407,-0.020440409,-0.038329247,0.024835827,0.039352547,-0.003560445,0.035684835,-0.08063885,0.011943667,0.032073803,0.05344221,-0.049808953,-0.104637206,0.07058146,-4.942418e-05,0.06824466,-0.050762594,-0.02876189,-0.050490573,0.033570886,-0.084755145,0.08455393,-0.05444198,0.0009021133,-0.047180463,0.019243332,0.019492103,0.10574289,0.011102086,-0.005814364,0.027207686,0.07347746,0.020424651,0.07194434,2.983871e-33,-0.03895013,0.026586734,-0.016842747,0.08996986,0.007875072,-0.025438137,-0.104938515,-0.024071617,-0.007915601,0.041660283,-0.025962697,-0.077717416,-0.07740135,0.039007254,-0.07277231,0.03918895,0.031340387,-0.06634776,-0.046352323,0.045399528,0.05115901,-0.009227479,0.067944154,0.097416125,0.011828891,-0.08506519,0.110035,-0.003927886,0.060844753,0.009899834,0.057470076,-0.036543597,0.019619716,-0.07271601,0.006787089,0.03472602,-0.05286495,0.056710187,-0.0047360593,-0.028315814,0.065308146,-0.04827715,-0.054860454,-0.04012752,0.0076475535,0.07182092,0.0081478255,-0.00426942,-0.052611385,-0.09016568,0.0012349591,-0.04439449,-0.08034657,-0.019520232,0.009362883,-0.016552038,0.0063153873,0.0026742378,-0.011182745,0.0021222332,-0.006191465,-0.021657672,0.024973746,-0.04243873,0.06074296,-0.089043275,0.014937318,0.0027408528,-0.024010917,-0.039772466,0.030570814,0.1251612,0.08894105,-0.029764239,-0.034931745,0.049808264,-0.068059124,0.01757122,-0.008463051,-0.002708788,-0.14199579,0.029997202,0.0043481095,-0.042142507,0.12691686,-0.094235696,-0.0005965515,-0.07868326,0.02817353,0.0019178108,-0.0077264197,-0.053059883,0.0547417,-0.035064444,-0.04828759,-3.911513e-33,-0.04082251,0.023286661,-0.035166062,0.092052884,0.07459885,0.10115611,-0.0023328296,0.07021358,-0.061535697,-0.02981157,-0.015757704,-0.052780706,0.017165111,0.00041205357,-0.007992317,0.018244652,0.065236874,0.06838712,-0.045024194,-0.057889454,0.0025101209,-0.11811836,0.059603587,0.027049586,0.029819142,0.08825182,0.0434231,0.03421149,-0.15731595,0.005776634,0.018333264,-0.03306398,0.051681243,0.09921527,0.033135217,0.04262728,0.06669264,0.02257694,-0.010581803,0.029378884,0.022303702,-0.023163475,-0.028307656,-0.043359295,-0.07534224,-0.07660005,0.0084541775,-0.0013862532,0.054266863,-0.12170634,0.030022971,0.037037097,0.015474567,-0.07439317,0.013302152,0.05519762,0.04636986,-0.007466418,0.043531083,0.049658265,0.01429426,0.0273948,0.023577612,0.028922562,0.02072468,-0.054248694,-0.051900905,0.02599995,0.11700802,-0.048017286,0.06708211,0.016809236,0.009426054,-0.045604248,-0.012097173,-0.026293686,0.013655109,-0.0013259356,-0.03305072,-0.0054219095,-0.08635414,-0.04729979,-0.051016163,0.043407034,-0.02547035,0.013248163,0.015815478,-0.058480546,0.0011626197,-0.03913008,-0.047086485,0.04774044,-0.013392918,0.064843394,0.07476557,-2.1782752e-08,-0.009422629,-0.051801976,-0.05523898,-0.013744379,0.15535177,-0.0549816,-0.047689807,-0.0074248267,-0.062547766,0.07932673,-0.0021819605,0.042980768,-0.050701257,-0.012767309,0.06939859,0.029221874,-0.02723352,0.058506653,-0.016650863,-0.02819903,0.050570108,0.018296221,-0.05335736,-0.004693631,-0.04517058,0.0065046926,0.0004347506,-0.033395074,0.11021823,-0.053800482,0.043156847,0.09845591,-0.07143156,0.03256202,-0.076652505,-0.004468248,-0.08166859,0.05637766,-0.06631349,0.103212796,0.032139402,0.031093761,0.03749599,-0.014194859,-0.07431564,0.010641243,-0.02480971,0.05175744,0.019801302,-0.020293036,-0.04033259,0.04170133,0.011240223,0.09061892,-0.0075198263,0.04928644,0.020166285,0.04525743,-0.03499501,-0.02080709,0.025289692,-0.026228068,0.05425545,0.029934557} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.248967+00 2026-01-30 02:01:12.47971+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2214 google ChdDSUhNMG9nS0VJQ0FnSURtbTRqTS1RRRAB 1 t 2217 Go Karts Mar Menor unknown Buen circuito para hacer karts y muy entretenido buen circuito para hacer karts y muy entretenido 4 2023-01-31 01:52:39.833374+00 es v5.1 O2.03 {V4.03} V+ I2 CR-N {} {"O2.03": "Buen circuito para hacer karts y muy entretenido"} {-0.03898487,0.06365123,-0.038775302,-0.033388607,-0.059928373,0.0036762685,0.046525177,0.06487299,-0.007848541,0.007400064,0.044063527,-0.013008772,0.01018172,-0.02271016,0.029127307,0.038792815,-0.057067752,0.083359964,0.011564564,-0.0767757,0.09329739,-0.018441262,-0.04187137,0.08859928,-0.061416898,-0.0221213,0.05096098,0.0071295383,-0.021863023,-0.11195487,-0.078254096,0.02562628,0.030392496,-0.0035643613,-0.046371125,-0.002622128,0.012390088,-0.07478025,-0.017437205,0.011433338,-0.084601335,-0.08423531,-0.013048001,-0.024460854,0.020444883,-0.062304594,-0.0018206483,0.018758265,0.014887281,-0.061124623,-0.0061963447,-0.02780592,0.009847274,-0.0014448696,-0.010858525,-0.022642521,-0.06526208,0.0720346,0.12561034,0.026377875,0.03301273,0.026870567,-0.013386158,0.025672011,-0.015375223,-0.0695115,0.002979761,0.067755446,-0.080631815,0.061440825,0.13841553,-0.13495266,-0.012684121,-0.018701795,0.026989758,0.0026203257,-0.02352768,0.014759031,-0.05886961,-0.047707114,0.054269563,-0.046427235,-0.025810158,-0.033513296,-0.0056697153,-0.0064021214,-0.0071490607,-0.0026299565,-0.0035451837,-0.052741874,-0.001962722,0.006229598,-0.076196216,-0.022354737,0.0055391924,-0.03304579,-0.01961149,-0.062927276,0.041274615,0.06360358,0.07234956,0.043819807,0.11247285,0.00747009,-0.06450054,0.026651159,0.024501635,-0.005745706,0.071608536,-0.04048687,-0.05906934,0.03658939,-0.061016038,-0.014207453,0.04174838,-0.050237674,-0.0011295317,0.023358453,-0.041120406,-0.07935981,0.029939344,0.038336225,-0.07282527,0.0058537154,0.017302273,-0.021060783,0.121750966,5.7422087e-33,-0.087647006,-0.059333052,-0.027424827,0.030023038,-0.008782795,-0.016619928,-0.043893576,-0.009611197,-0.029872404,0.045763586,-0.029169478,0.078366175,-0.011926161,0.017284213,0.1280292,-0.053696517,-0.015666226,-0.044432413,0.10920533,0.0055633876,-0.022387795,-0.09198507,-0.025591776,0.100957766,-0.010454599,0.018332949,0.063581064,-0.058475114,-0.05504828,0.03348455,0.044462424,0.034947537,0.0066151936,-0.023345876,-0.116840795,-0.017835986,0.042342104,0.04095572,0.008739948,-0.076932795,0.017771924,-0.0028361715,-0.03372389,0.045574132,0.013233683,-0.02866835,0.04725929,0.046546567,0.08579343,0.06553004,-0.1358249,-0.084985316,0.017110337,-0.016370066,0.058965117,0.033256125,0.004437767,0.064539,0.013541463,-0.0024149932,0.011279235,0.034078747,-0.01483392,-0.03610735,-0.04377766,0.016146839,0.026261711,-0.08857594,0.062405143,-0.007123225,-0.106731124,0.012819511,-0.020246863,-0.033673305,0.013468089,0.008557944,-0.065852284,0.030919272,-0.02420744,0.026633956,-0.109430954,-0.038373824,0.02113185,0.06428763,0.11319645,0.05103235,0.039876983,-0.010638322,-0.021916242,0.1325706,-0.06404338,0.08604559,0.043731593,0.018168036,0.10325907,-6.0500005e-33,0.0064459727,0.0027456991,0.04230116,0.10403842,0.029391669,0.02203945,-0.014642717,-0.0043798,-0.042655874,0.0015419443,-0.017273119,-0.102883585,0.07044822,-0.01688129,-0.020182656,0.026616354,-0.012796093,-0.025469279,-0.0785977,-0.0068220696,-0.039240196,0.060411137,-0.01709989,-0.063942425,-0.03179225,0.02247237,-0.055356793,0.048348665,-0.08474597,0.02883087,0.007361652,-0.046058945,-0.03040661,0.09656616,-0.066964164,0.029599726,0.113342464,0.10752733,-0.038057715,-0.0021056111,-0.006353699,0.05995657,-0.04955246,-0.037493322,-0.062384285,0.027050415,0.068973064,-0.09235939,-0.03670547,-0.067391224,0.072274074,0.033962365,0.00389462,-0.085144356,0.0074158898,-0.031888347,-0.0666979,-0.030982284,-0.10754182,-0.041176103,0.07843049,-0.024466572,0.01061608,-0.012333576,0.064242005,0.008244628,-0.0032948242,0.07037722,0.06541878,0.006197938,0.059603143,0.03636806,0.06956511,0.015555158,-0.021083541,-0.07508035,-0.114971034,0.015176918,-0.015099708,-0.0015080281,0.0108551625,-0.006954083,-0.071692824,-0.060117457,-0.039485004,-0.038305294,-0.007172222,0.022149438,0.079041794,0.026523637,-0.0105936,0.09266182,-0.032940842,0.018899513,-0.014791365,-2.7096752e-08,0.015132148,-0.029422421,-0.06833725,-0.0140593955,0.028008694,-0.066278055,-0.0038506635,-0.020808952,-0.052072823,0.022803262,-0.027725436,-0.009022615,0.008836749,0.06913307,-0.005212342,0.031218486,0.065318644,0.08875927,0.029516757,-0.024300324,0.107518665,-0.01377129,-0.04854343,0.12182756,0.07174942,0.015882624,-0.012046674,0.0130562605,0.07177369,-0.047331024,0.012637896,0.01676612,-0.046759624,-0.020473251,0.016468035,0.019998739,-0.0688282,0.028667953,-0.013826477,0.04775224,-0.0047338186,-0.042146165,-0.06433335,0.0019365646,-0.021865968,-0.041772608,-0.0063556945,0.0207059,-0.0059099165,-0.008664948,-0.1038136,-0.053349394,0.0036262532,0.040472254,0.022588903,0.030279906,0.07871522,-0.012023206,-0.04253304,-0.0190708,-0.0038012804,0.10896669,0.0057284157,-0.07494867} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.2612+00 2026-01-30 02:01:12.482558+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2215 google ChdDSUhNMG9nS0VJQ0FnSUN4cXQtRHh3RRAB 1 t 2218 Go Karts Mar Menor unknown Experiencia increíble, muy segura y recomendable! experiencia increíble, muy segura y recomendable! 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {E4.01} V+ I3 CR-N {} {"V4.03": "Experiencia increíble, muy segura y recomendable!"} {-0.0505334,-0.028999828,0.04063807,0.0077031027,-0.059246562,-0.0029684592,0.13420759,0.008989394,-0.059914023,-0.032270484,0.0832059,-0.0113163,-0.021763382,0.006848004,-0.0026622363,-0.0054879193,-0.009149617,-0.0062772017,-0.0069133327,-0.006284913,0.05986739,-0.026758628,-0.017632384,0.019467365,-0.036530346,-0.02245987,-0.045339994,0.0034881695,-0.036871225,-0.0639746,0.06795845,0.09647284,-0.0050232164,-0.06265034,0.041258764,0.05481912,0.058509376,-0.050350923,0.00892387,0.027822223,-0.16112846,0.008993141,-0.04086573,-0.041871954,-0.038194634,-0.05216873,0.020343093,0.028058363,-0.0089485645,0.044971503,-0.049155917,0.0020537288,-0.0051268633,0.013036463,0.08647705,0.00051298656,-0.042153265,-0.036911804,0.007168913,-0.015272103,-0.06092421,0.06464817,-0.014943223,0.012746947,0.04333267,-0.019530948,0.06200844,-0.0035370553,-0.022908185,0.031258654,0.10055255,-0.06152878,-0.018412314,0.026467055,-0.030482184,0.0551987,0.0034551062,-0.01870854,0.00841486,0.012675508,-0.043003574,0.0554427,-0.016479611,0.020471828,-0.005192804,-0.057320062,-0.013804873,-0.091875084,0.0045077857,-0.008388095,-0.017589806,0.05664732,-0.09205439,-0.018142004,0.02531211,0.018431727,-0.07002047,-0.0839413,-0.08222718,0.09385286,-0.04394516,0.09173874,0.12321661,0.11995961,-0.084300704,0.017071987,0.06406229,-0.05757833,-0.00012791343,0.04573047,-0.033340737,-0.07315135,-0.055297136,0.0011833502,-0.0012488042,0.014897834,0.028999435,0.010326283,-0.006745116,-0.07824431,-0.015725257,0.086627886,-0.018901227,-0.01301556,-0.034325544,-0.07666219,0.07592932,3.564756e-33,-0.01779276,-0.02467873,0.0084470725,0.090440266,0.008158064,0.0509725,-0.0015600976,-0.010009072,-0.021270506,-0.07353343,-0.029098846,0.05329125,0.036387585,0.012269808,0.042565573,0.012447215,0.06382228,0.054415833,-0.046446495,0.040184,0.020056395,-0.045459017,-0.01095441,-0.03847331,-0.020463137,-0.07700563,0.036835272,0.03635726,0.012801299,0.029374745,0.036662634,0.07125216,-0.06315251,-0.10406046,-0.03275417,-0.060633652,-0.027747588,0.010151896,-0.0017700616,0.0116426535,0.035234302,0.051960725,0.01301471,-0.06319623,-0.008176726,0.07119722,0.1265805,0.0027621156,-0.025387522,-0.031506278,-0.039813522,-0.06401941,-0.05440143,-0.0011683308,-0.07518245,0.0061238823,0.017898258,0.020966938,0.030647371,-0.05352163,0.06628205,-0.019272858,0.0662159,-0.16882692,-0.02564422,-0.069530234,0.005188391,-0.02376588,0.03204891,0.05168492,-0.11241693,0.0676204,-0.027950304,0.05026426,0.0064762565,-0.021988746,-0.04606245,-0.06461295,0.05643464,0.04281928,-0.075618275,0.026837474,0.006029384,0.0049174195,0.069436684,0.022322884,0.048714217,0.027839635,-0.018365884,0.17201184,-0.027685724,0.03584652,0.045490697,-0.015020821,-0.010517421,-3.777727e-33,0.013183537,-0.02991245,-0.0012044926,0.03666227,0.02023427,-0.0015755338,-0.028012868,0.058156773,0.033533733,-0.04319904,-0.07996733,-0.103814,0.16191366,0.016687106,-0.06374395,0.07349792,0.01406115,-0.042306006,-0.03709917,-0.031617142,0.045775875,0.08400609,0.07614368,-0.05912634,-0.050746635,0.051560655,-0.008025123,-0.006213631,-0.05206059,-0.024544975,-0.032225456,0.00078029634,-0.11364416,-0.008083132,0.0010286159,0.06280153,0.005564235,-0.0010896834,-0.0550448,0.05683658,-0.016635893,0.12422207,-0.024054438,0.09416506,0.025828814,-0.0021505149,0.053984918,-0.08086433,-0.037144974,-0.018116703,0.010333476,0.0291996,-0.046520043,-0.021748465,0.017057825,-0.07437311,0.0074819853,-0.054236796,-0.13550492,-0.01719603,0.032718945,0.011542332,0.004979645,0.075868584,0.10457272,-0.031791296,0.041917805,0.025994817,0.07115605,0.005620458,0.028143832,-0.021853326,-0.041723646,-0.031391397,0.0054122754,-0.03626914,-0.045147352,-0.069324605,0.052422658,0.03956841,0.024647253,0.05606792,-0.00042491214,-0.061303854,-0.041493252,0.035535626,-0.028498191,-0.006160945,0.047241613,0.034799226,0.0014133283,0.02812952,-0.02782643,0.02774608,0.021008063,-2.2667857e-08,0.0017839194,-0.08132582,0.003056399,-0.0049912063,0.023579294,-0.14168139,-0.053461168,0.027471436,0.005832097,-0.0064421827,-0.021006186,-0.0067253006,-0.022872249,0.05191223,-0.016369384,0.020145644,0.15730488,0.13762903,-0.06890045,-0.01000163,0.06525192,-0.0108384965,-0.10179351,0.099640384,-0.028702922,0.045395363,0.033063665,-0.026289137,-0.03617559,0.0410194,-0.001106413,0.0041430653,0.062733926,-0.082577944,-0.09195314,-0.057194836,-0.021820167,0.013987068,-0.039476715,0.00988486,0.047185156,-0.01596069,0.006992274,0.040746916,-0.064930156,-0.048609227,0.042319074,0.010414225,-0.024848744,-0.021833468,0.011402305,-0.03543721,0.07200807,0.044607464,-0.020325085,-0.0006880669,-0.016109213,0.06978262,0.0042094584,0.008507354,0.041988276,0.028732115,-0.012971651,-0.054683927} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.272389+00 2026-01-30 02:01:12.485896+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2216 google ChZDSUhNMG9nS0VJQ0FnSURxaU0yaWF3EAE 1 t 2219 Go Karts Mar Menor unknown Genial pista. Muy bien para peques. genial pista. muy bien para peques. 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.03 {A3.01} V+ I3 CR-N {} {"O2.03": "Genial pista. Muy bien para peques."} {-0.08596204,0.048556596,0.015943116,-0.056172818,-0.07735781,0.05211085,0.050131176,0.09905303,0.037688516,0.03205988,0.012478252,-0.04822798,0.026430715,-0.05418811,-0.018142417,-0.009731384,-0.04555721,0.04334965,0.06791397,0.021612115,0.034574877,-0.04102007,-0.0043359934,0.006247225,-0.16012397,0.0512823,0.024757782,0.017938485,0.047032084,-0.023639472,0.0038616774,0.08804028,-0.0056578894,-0.013591506,0.01237566,-0.0046934057,0.03792887,-0.0848759,-0.0044586863,0.044233013,-0.024074197,0.03775252,-0.090942875,-0.022516806,0.060273122,-0.054580294,0.0023141508,0.050050747,-0.054418564,-0.019097207,-0.052308325,0.027807884,0.07311043,-0.010118271,0.016983423,-0.021507345,0.013019819,-0.047133464,0.011587238,0.0027930264,-0.028039709,0.041789547,-0.086026244,-0.045504533,-0.013106463,-0.0016238526,0.073276885,-0.08966341,-0.05951554,0.05697553,0.002024871,-0.035203345,-0.047288176,-0.007286596,-0.010465728,0.06709505,0.0297994,-0.0047869533,-0.09722602,-0.10580964,-0.023158533,-0.073379226,-0.06798604,-0.03918651,0.032745972,0.021695899,0.05647758,0.039646663,0.06066075,0.007795279,-0.06630591,0.05141945,-0.0024284178,0.061442215,0.017000575,0.03275872,-0.08945107,-0.096887305,-0.020074284,0.0045292773,0.046620864,0.060512383,0.062862076,0.002518597,-0.083443135,-0.016071843,0.06407266,-0.0011844509,-0.0052194935,0.026359295,-0.018243195,-0.032715283,-0.007710429,0.0069774683,-0.0504672,0.06363345,-0.028610835,-0.09088345,0.002118371,-0.097069316,0.031956356,-0.025798792,-0.10818373,0.015895234,-0.0035649529,-0.029877873,0.040332112,-2.0290862e-33,-0.055000536,0.019096738,0.0509604,0.018736372,-0.030098995,0.051435713,-0.03405474,-0.04808626,-0.07343151,-0.05065875,-0.044844743,0.09804808,-0.019883815,0.06915517,0.026777567,-0.012867228,0.032905363,0.018514004,0.09493054,-0.013453916,-0.0706413,-0.005122422,0.018216034,0.0069694826,0.09741832,0.048870143,0.0012007206,-0.07920993,-0.11538577,0.032535948,0.011546586,-0.035874527,0.0319982,0.01835647,-0.046691798,-0.04737596,0.024512537,0.062049616,0.014774915,0.08555467,0.04673615,-0.0029499952,0.04812085,0.029158726,-0.011019781,-0.009651255,0.02354261,-0.043938257,-0.014435962,-0.02970585,0.013329923,-0.034958303,-0.07430659,0.0008317359,-0.028719364,-0.041784834,-0.12168188,-0.0037932768,-0.08252907,-0.08622445,0.14611799,0.028193854,0.017553503,-0.015732445,-0.01161555,-0.07532378,-0.0025385774,0.13426466,0.09901884,0.040904507,-0.027055772,-0.03671441,0.005861236,-0.010094601,0.028516522,0.010947612,0.0019432651,0.06508885,-0.015500373,0.024061605,-0.040399812,0.010067451,0.007036507,-0.019473286,0.04561529,0.052736588,0.068454474,0.07645051,-0.06717113,0.017761279,0.018208753,0.0075721815,0.04603001,0.04079938,-0.063293785,-2.1557572e-34,-0.015577895,0.012987325,-0.0008069383,0.12776639,-0.0052728867,-0.026062652,0.016415685,-0.023700837,-0.051049568,-0.027376814,-0.05456307,-0.12587908,0.15445054,-0.067806214,-0.030092357,0.07644662,-0.0064268615,-0.039632823,-0.06931387,-0.0051893913,-0.080589674,-0.020114006,0.012529935,0.023782555,-0.023721257,0.006474198,0.01244852,-0.02200676,-0.055338673,-0.0037664196,-0.020617971,0.031855267,-0.003819328,0.05445496,0.051783975,0.107820496,0.105812326,0.0649681,0.048128497,0.007803972,-0.10407595,0.058900364,0.022664716,0.02494207,0.048009545,0.041228652,0.0380119,-0.087243274,-0.08339149,0.014561774,0.053142857,0.09144986,0.029241536,-0.011148716,0.023033915,-0.009172259,-0.06636786,-0.023217313,-0.095651865,-0.001846567,0.060117576,0.025043786,-0.062162034,0.004396062,0.07411942,0.019884376,-0.028186161,0.0045188176,0.015863566,-0.00015043803,0.084244944,0.0032350062,-0.027177168,0.014771606,-0.0591358,-0.006980578,-0.063963525,0.035968754,0.008623065,0.029183052,-0.03664544,-0.01265591,-0.095891535,-0.0046573197,-0.08607154,-0.06757412,0.014492255,-0.035906665,0.034654446,-0.029702712,0.011548816,-0.007523586,-0.042534962,-0.04253759,0.055265084,-1.8602195e-08,0.057471693,-0.03132853,-0.05729501,0.04970374,0.026726708,-0.08843398,-0.0952846,0.0037682857,0.026910333,0.04700448,-0.053949177,-0.044253718,0.016759684,0.07108515,0.019830076,0.092399195,0.00091939874,0.059578266,0.0024407965,-0.03635473,-0.024164453,0.025714032,-0.055397414,-0.010922983,-0.0071251155,-0.00039127254,-0.03548619,-0.113694854,-0.07164829,0.013635784,0.017527396,-0.01132167,-0.07023197,-0.07908766,0.0064952956,0.030646387,0.038020752,0.020789461,0.030250272,0.017271196,0.112717405,0.026939712,0.004700193,-0.036419045,0.030146353,-0.056162555,0.04360037,-0.045982677,0.02251975,0.06826574,-0.024709247,0.046847392,0.08803343,-0.012761695,0.014149775,0.036134087,0.019385489,-0.03804656,0.04265197,-0.02385405,0.027036266,0.15705429,0.053637743,-0.047867224} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.2829+00 2026-01-30 02:01:12.49083+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2220 google ChZDSUhNMG9nS0VJQ0FnSUNDNTdMYlZREAE 1 t 2223 Go Karts Mar Menor unknown Pasamos una buena tarde. El sitio está bien. pasamos una buena tarde. el sitio está bien. 4 2021-01-31 01:52:39.833374+00 es v5.1 V4.03 {E1.04} V+ I2 CR-N {} {"V4.03": "Pasamos una buena tarde. El sitio está bien."} {-0.054444253,0.016968386,0.045701914,-0.024981393,-0.03876349,0.013287544,0.05033501,0.028717604,-0.010283011,0.029257225,0.038002726,0.009554904,-0.035880342,-0.06689654,0.06365609,0.00882248,-0.004901004,0.054766122,0.04850869,0.0261625,0.05127614,-0.0046981163,-0.12119916,0.13410786,-0.06566472,0.012057941,0.019871507,0.011900634,0.010779393,-0.091640614,-0.069347896,0.031175934,0.074302725,-0.02526042,-0.014226126,-0.033258457,0.08062204,-0.09537685,0.01998713,0.035340197,-0.06597788,-0.021199923,0.027994279,-0.034902725,0.0077706045,-0.09936404,0.0008702359,0.036335748,0.09490204,-0.019166991,-0.04233606,-0.00026409043,-0.0023610478,0.08490151,-0.021750145,0.031152412,0.023470202,-0.029045917,0.040014837,0.04496345,0.01991823,0.03242467,-0.00692346,0.022202969,-0.010675479,0.025425911,0.020886308,-0.017989788,-0.038842257,0.06065139,0.012090092,-0.029053744,0.07802063,0.01624792,-0.018089963,0.0065670204,0.01598829,0.006697368,-0.04006787,-0.027645146,-0.03838121,-0.0060119536,-0.016837668,-0.027784064,-0.026207093,0.015388173,-0.029480616,0.0059750793,0.10861907,-0.009918813,-0.055093154,0.12475586,-0.09527386,-0.02324541,0.0060481126,0.003980099,0.04087593,-0.015734006,-0.030240947,0.050335743,0.13775946,0.12564997,0.04780575,0.026014376,0.009813583,0.047010694,0.04997856,-0.034667045,-0.0015313685,-0.007772501,-0.025640868,-0.013252184,-0.041123495,0.016260676,-0.11709736,0.028322628,-0.020870425,-0.11952521,-0.05179141,-0.038402468,0.08209614,0.0070388787,0.010763326,-0.010603569,0.052457444,-0.11087709,0.018094296,-7.517268e-34,-0.00306767,0.06319779,0.050953493,0.013549643,0.019036558,0.033870388,-0.030088238,0.022263577,-0.0715775,0.032408908,-0.08872945,-0.0095286565,0.023493305,-0.021373702,0.044031523,0.07862864,-0.0077419598,-0.004332306,0.047861844,-0.014476866,-0.06644608,-0.05144358,-0.006968054,-0.04090288,-0.042039737,0.06927743,0.043739766,-0.034442823,-0.06964067,0.06422954,-0.04851118,0.05957851,0.01009134,0.027626002,0.036256302,-0.020505106,0.02799983,0.056646127,0.041136544,0.04641843,0.06630633,0.09310269,0.0268186,-0.021788364,-0.007893088,-0.031034261,0.03521671,-0.0063949544,0.01693295,-0.028327966,-0.07513837,-0.07600449,-0.060984492,-0.033291806,0.018627468,-0.036545996,-0.078948006,0.08411649,-0.059943072,-0.024536356,0.1214246,0.01852606,0.034964684,-0.031554975,-0.10127047,0.056765568,-0.002912841,0.052960023,0.11221804,0.0106591415,-0.014143379,-0.05108253,-0.009824931,-0.0014727596,0.027593695,0.0077581923,-0.022557525,0.014491666,0.054669145,0.0077534057,-0.049286857,-0.030553278,0.032437984,0.054138232,0.029806681,0.013390051,0.0009413776,0.093715556,-0.10194292,0.05475969,0.024438594,0.05813152,0.08027918,-0.06967274,0.021680705,-9.042201e-34,0.040389724,0.029626539,-0.0071106134,0.005419494,-0.045367822,-0.015528241,-0.032507706,0.037193727,-0.05602958,-0.02784221,-0.023404736,-0.103478625,0.088524185,-0.042581476,-0.016977234,0.13023151,0.004177691,-0.08010417,-0.07191647,-0.037815735,-0.00052301184,0.003972649,0.021218147,0.062121153,0.011605735,-0.07632865,0.031539507,0.089966856,-0.07665292,-0.024909979,0.05535375,-0.03572849,-0.04985532,0.007570235,-0.02713576,0.089239724,0.015324801,-0.0150575265,0.06285672,0.009617744,-0.008523813,0.009745996,0.009201846,-0.05526438,-0.0028699397,-0.008104702,-0.056848552,-0.13617541,-0.06366448,-0.02029115,0.008853782,-0.093086496,-0.022972835,0.012559791,-0.011106879,-0.0021421243,-0.07094228,-0.00026154134,-0.09202484,-0.0023546503,0.04953816,0.04031471,-0.10449168,-0.027227882,0.052389514,-0.061879765,-0.0749121,-0.013405723,0.017720746,0.07692641,0.0962248,-0.002229503,-0.14195494,0.016817397,-0.069949076,0.012197192,-0.035959862,-0.016162543,0.037607305,-0.046074815,-0.031143771,-0.070037246,0.008367588,-0.030340305,0.0027379417,0.022317382,-0.020156382,0.040529393,-0.005832828,0.037758783,0.0124283545,-0.05343293,-0.08142548,-0.074559495,-0.031964693,-2.0134332e-08,-0.001589751,-0.04858493,-0.049015902,0.014825611,-0.02233581,0.037541155,-0.092174895,0.060311697,0.08541372,0.028730452,-0.031363353,-0.01398162,0.035355646,0.010721857,-0.008820367,0.07458176,0.057045158,0.10514355,-0.04202499,-0.022228353,0.07769727,-0.031687316,-0.022851486,-0.050540112,0.0225954,2.8180682e-05,0.0066961097,0.010444841,-0.011335957,-0.051776174,-0.039148714,0.045591943,-0.05338638,-0.117117085,0.041344203,0.03465298,-0.026153978,-0.02161311,0.009902898,-0.00029844858,0.06403908,0.077067964,-0.14250469,-0.06986323,0.021071058,-0.06829059,0.03885964,0.012320366,-0.04075753,-0.03110111,0.05368421,-0.041507304,0.09152119,0.035494108,0.071374334,-0.043159053,0.04676893,0.02063658,0.016498046,0.04716753,0.0811331,0.092944436,0.04130286,-0.06616244} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.327376+00 2026-01-30 02:01:12.501404+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2221 google ChdDSUhNMG9nS0VJQ0FnSURJNDhUUnFBRRAB 1 t 2224 Go Karts Mar Menor unknown Buen circuito y lugar donde pasar un día de motor. buen circuito y lugar donde pasar un día de motor. 5 2019-02-01 01:52:39.833374+00 es v5.1 O2.03 {V4.03} V+ I2 CR-N {} {"O2.03": "Buen circuito y lugar donde pasar un día de motor."} {-0.07923555,0.0555069,0.015091751,-0.07090237,-0.029087279,-0.0054351306,-0.00033062106,0.042408258,0.06361877,0.032246172,0.12036879,-0.00997947,-0.023961889,-0.08677549,0.015503861,0.039457984,-0.06716831,0.06399258,0.027805446,-0.022104159,0.12578982,0.019385135,0.010640689,0.10201599,-0.09472716,0.025998075,0.036935646,0.06268104,-0.07770411,-0.105431914,-0.026526716,0.020249031,-0.0048824176,0.005898591,-0.009399146,-0.03676823,0.058201693,-0.041898534,0.026949015,0.00048693494,-0.113535695,-0.040953442,0.015359542,-0.059647985,0.05673662,0.011141875,0.0055833114,0.05385911,0.050640665,-0.12849987,0.02752329,-0.025482008,0.0632334,-0.031223062,0.0043237004,0.024983987,0.010466273,0.022900842,0.07136856,0.03975656,0.018732138,0.040797222,-0.027512982,-0.00934609,-0.011767771,-0.08684734,0.03344352,-0.008747607,-0.054200385,0.013235577,0.08994882,-0.1133768,0.0007249792,-0.00018579423,-0.021984186,0.011009814,-0.068884835,0.017839756,-0.009444009,-0.06893449,-0.014751425,-0.042614195,-0.026963513,-0.0012205087,0.100620665,0.003995464,0.0035513423,-0.016917666,-0.03200082,0.017722808,-0.016990088,-0.062381823,-0.122257635,0.02773072,0.012974085,-0.043033328,0.036449436,-0.0029908433,0.026443342,0.02672699,0.025590355,0.011836759,0.03429456,0.04362295,-0.10171427,0.07702649,0.044188082,0.003056779,0.038919702,-0.029999984,-0.03180587,0.020003268,-0.06432988,-0.028854711,-0.039268527,-0.05939183,-0.01488123,-0.02406274,-0.058106523,-0.043728463,0.029846786,-0.019468028,-0.05570296,0.041121997,-0.02640335,-0.05273765,0.12598902,1.5576338e-33,-0.02142627,-0.0987204,-0.0037859366,0.01264682,0.009930558,0.051842477,-0.03538491,0.055471998,0.022995515,0.016742663,-0.01286538,0.018734131,-0.017890485,-0.06084441,0.058811158,-0.04787579,0.031803537,-0.10316471,0.09165254,-0.045806166,0.01834323,-0.0061910516,0.0031242385,0.0873239,0.05523998,-0.020215688,-0.027159013,-0.0767694,-0.057940632,0.081671245,0.030659132,0.02624134,6.288555e-05,0.041598573,-0.057559885,-0.042425305,0.0014002688,0.03736296,-0.019471003,-0.05310016,0.005827797,-0.03591996,-0.10163838,-0.0019664308,-0.05103073,-0.0020570632,0.08706074,0.045751754,0.059966598,0.052318912,-0.07372782,-0.061486486,-0.020045383,-0.052686978,0.045561705,-0.012631821,-0.0069444985,0.018228466,-0.046262767,0.01105095,-0.003935083,0.14568272,-0.004165842,-0.048153542,-0.070398465,0.018364212,0.09519246,-0.032317374,0.026403269,0.036553532,-0.067603946,-0.02608092,0.007197419,-0.010237113,0.0058156126,0.009504365,-0.017020721,0.02628545,-0.06643909,-0.03236364,-0.07378721,-0.036910538,0.0076887775,0.025745055,0.11325406,0.07038099,0.034003206,0.04928358,-0.017420927,0.06383453,0.0031983163,0.048710525,0.01564593,0.021829262,0.08274079,-3.179429e-33,0.009824137,-0.02938603,0.035821036,0.074141175,-0.02119245,0.021703605,-0.016570294,-0.034448285,-0.031162985,-0.038478218,-0.06426242,-0.110576816,0.028725054,-0.0038961293,0.075209945,0.05446602,-0.07090498,-0.026443476,-0.08831109,0.045656018,0.024799852,0.12213492,0.030597027,-0.0514813,-0.0439394,-0.05282214,-0.055673257,0.098833136,-0.060325522,-0.02450824,0.000470293,0.014492892,-0.00040226942,0.08588747,-0.12379929,0.03518202,0.05120215,0.08018335,-0.04243674,-0.0016504291,-0.056688603,0.035229262,-0.0059812334,0.013913281,-0.03592436,-0.017236678,0.015253079,-0.0931049,0.013492754,-0.00050343486,0.059021223,0.016753545,0.04576504,-0.055649027,0.071867116,-0.0679574,0.00043886146,-0.021823933,-0.1282552,-0.0066673746,0.075296804,0.009385538,-0.010643915,-0.0016763307,0.052609973,-0.02313998,-0.019453298,0.073224545,0.1408917,-0.028908832,0.107546024,0.0403932,0.018569823,-0.009832559,-0.09985353,-0.037136223,-0.09479653,-0.019035043,-0.013753252,0.050406806,0.00485556,-0.0040481985,-0.014402648,-0.036167376,-0.09464977,-0.03582002,-0.0407259,0.004933507,0.0043528033,0.020041486,0.054614827,0.042534143,0.023644311,0.02830729,-0.06659527,-2.0971788e-08,-0.0026115389,-0.03068657,0.048137587,-0.020661386,0.105347395,-0.09154825,0.04710476,0.028417995,-0.055796087,0.00996234,0.082208455,0.00337656,-0.005658966,0.07376774,0.014208798,0.023189336,0.033206724,0.0873697,0.031721465,-0.028707419,0.10834757,-0.048328597,-0.04631313,0.055182572,0.07502983,-0.051702734,-0.03889935,-0.041879404,0.005914636,-0.08785568,0.005185497,0.006865014,0.03446242,-0.0236271,-0.0076359524,0.0053956998,-0.061747346,0.031740613,-0.06311309,0.022816002,0.060931783,0.04455124,-0.018327318,0.019342598,0.058708094,-0.0030427657,-3.223386e-05,-0.031097833,-0.004186286,0.045841753,-0.024036791,-0.02706382,0.070547186,0.09252641,0.003287655,0.03860623,0.0014686704,-0.01855067,-0.06463073,-0.049414095,0.026303282,0.06213483,0.03320026,-0.07973913} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.33759+00 2026-01-30 02:01:12.503875+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2222 google ChdDSUhNMG9nS0VJQ0FnSUNhbzhfOWp3RRAB 1 t 2225 Go Karts Mar Menor unknown Todo perfecto y muy amables todo perfecto y muy amables 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {P1.01} V+ I3 CR-N {} {"V4.03": "Todo perfecto y muy amables"} {-0.034420792,0.029103298,0.0974879,-0.00028040903,0.024863262,-0.038280133,0.12897786,0.02016779,-0.08396496,0.041844115,0.032065492,0.009725793,0.0044418056,0.0126565,-0.034068387,0.086829305,-0.014236104,0.047141045,-0.013202822,-0.024790214,0.102085866,-0.007801839,-0.065867215,0.06466966,-0.094791576,0.005844245,-0.009160274,0.005778868,-0.031172931,-0.044077985,-0.0545172,0.07889678,0.12730451,0.0016461273,0.004165862,0.0064529306,0.09877541,-0.08499404,0.05154581,-0.019419752,-0.083300255,-0.03974188,-0.017370172,-0.0023648392,-0.028379295,-0.038817134,0.041208737,0.05149102,0.08270532,-0.04987486,-0.112426385,-0.041140407,-0.066242754,-0.022727454,0.05749058,0.027255109,-0.112432495,-0.049712837,0.039780002,0.01954421,-0.058608163,0.04728151,0.004239364,0.018141733,0.08291057,-0.0163073,0.041750632,0.036153845,-0.11271299,0.091745354,0.08221955,0.004640642,0.047828674,0.03997966,-0.03453299,0.048641525,0.004177688,-0.021207267,-0.08115243,0.05784144,-0.11916309,-0.11111436,0.03794161,-0.078764126,0.027560761,-0.014178983,-0.022086654,-0.0031249248,0.007391556,-0.012671961,-0.06754739,0.038775872,-0.10569669,-0.010747447,0.045979306,0.06419797,0.046035822,-0.04307179,-0.0016305996,0.09435347,0.08597835,0.05090284,0.10726404,0.0162798,0.053486623,0.021336447,0.038348123,-0.071202986,-0.009689603,0.057611924,-0.020160882,-0.040990207,0.0019924,0.041948117,-0.02159636,-0.07873486,-0.031685136,0.008902619,-0.062564716,-0.07509142,0.07068267,0.10606083,0.025292512,-0.013370198,-0.0769149,-0.036330927,0.04494643,9.600519e-34,-0.01747645,-0.008122595,-0.00475494,0.051611234,-0.00031456037,0.02113446,-0.05391001,-0.0071529965,-0.03485833,0.011681487,-0.036102593,-0.021077458,0.040644124,0.055553347,0.013252113,-0.012041598,0.036391053,-0.024395997,-0.013873431,0.045788452,-0.028514275,-0.048149806,0.009488041,0.011544163,-0.048301466,0.05486468,0.00076392805,-0.08381824,0.02532768,0.05998786,-0.04794899,0.05077022,0.027630407,0.019485604,-0.08865821,-0.07288081,-0.005217644,0.020201227,0.013810284,-0.013388155,0.024561757,0.023088826,-0.033249505,-0.031548433,-0.0027617698,0.040026803,0.06084422,0.061055243,0.08024766,0.051547844,-0.070299424,-0.110846534,-0.06711128,-0.05510592,0.049387734,-0.016028212,0.011874656,0.032670412,-0.017390652,-0.0328598,0.059607398,-0.038453113,-0.0047961907,-0.09657573,-0.07123685,0.0031526294,0.015307552,0.016691752,0.08043094,0.058250763,-0.07037432,-0.052819133,-0.063229114,0.035828814,0.030121481,-0.078796126,0.0683343,-0.0065799993,0.055752262,0.022292469,-0.04579769,0.07257052,0.057037506,-0.02996027,0.07373395,0.035050184,0.038444795,0.034498665,-0.07013115,0.07025849,-0.03814708,0.060356945,0.01945392,-0.09735504,0.000606708,-1.4211934e-33,0.028195914,-0.002315999,0.00024034393,0.14641988,-0.041104853,-0.014511895,-0.036034968,-0.016652834,0.05051309,-0.061784074,-0.08291912,-0.1371632,0.088847026,-0.008291139,-0.00844632,0.066637844,0.051533878,-0.035812765,-0.07996717,-0.007972531,-0.009307439,0.027124861,0.064333364,-0.059353758,-0.043478392,-0.026483074,-0.030397812,0.01312751,-0.004868351,0.03568251,0.018583203,-0.08995583,-0.08527221,-0.026854992,0.022975963,0.054115202,-0.012650608,0.03289415,-0.04748419,0.026280146,0.02342032,0.017248962,-0.05738043,0.06726841,-0.029276438,0.01916129,-0.006551093,-0.05217215,-0.049952883,-0.052697327,0.020644216,-0.046297655,-0.020125981,-0.02466992,0.029023545,-0.010286621,-0.051199917,-0.04479933,-0.0745973,-0.029140564,0.004121399,0.0023235863,-0.026764555,0.00011410666,0.059780754,0.029982746,0.03892374,0.0026826025,-0.07365542,0.054155033,0.06283587,0.002036228,-0.11022816,-0.040705588,0.029079782,-0.002615667,-0.11691982,-8.504215e-05,-0.051822465,-0.0053745895,0.029904999,0.023986777,-0.05436549,0.010111475,-0.026462823,-0.0286111,0.005587132,0.024886422,-0.007016267,0.048262496,0.077553056,0.099060476,-0.03989158,0.0004010003,-0.019786395,-1.8341485e-08,-0.009074238,-0.021637598,-0.09563821,-0.007535569,0.029953111,-0.05773063,-0.037440997,0.012795907,0.042945866,0.05528202,0.010506342,-0.044844378,-0.012663844,0.06345453,0.002431987,0.010242728,0.036075324,0.08307966,-0.0117917955,-0.030611973,0.07976055,0.028639173,-0.03448387,-0.009436236,0.007623613,0.059604824,-0.022178788,-0.03495056,-0.06253758,0.050678395,0.018542694,0.015393789,-0.016894631,-0.06972416,-0.06626005,-0.013709621,0.0076109148,-0.051061243,-0.024377251,-0.09591785,0.08556572,0.0021444426,0.022083368,-0.018237349,0.012259364,-0.022021322,-0.027570684,0.01633159,0.01785336,0.0021867144,-0.06234698,0.022725789,0.07000771,0.06623701,0.03959936,-0.014916292,0.101236984,0.025874158,0.03269129,0.0054914425,0.102717005,0.11916041,0.008125052,-0.06607619} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.350356+00 2026-01-30 02:01:12.506382+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2223 google ChZDSUhNMG9nS0VJQ0FnSUNDcFp2dVVBEAE 1 t 2226 Go Karts Mar Menor unknown Sitio muy divertido para pasar en familia sitio muy divertido para pasar en familia 4 2021-01-31 01:52:39.833374+00 es v5.1 V4.03 {A3.01} V+ I2 CR-N {} {"V4.03": "Sitio muy divertido para pasar en familia"} {-0.027938202,0.05519096,0.005335377,-0.017647492,-0.054323234,0.011815128,0.06139544,0.05743125,0.0035085024,-0.0012827483,0.08031948,-0.10043094,-0.05021728,-0.029377991,-0.009133021,-0.021870593,-0.06016749,0.074966855,-0.0074222605,0.02399456,0.031363845,0.035896506,-0.061229683,0.049074337,-0.08089492,0.0350373,0.029451491,-0.04688841,-0.03700216,-0.005276294,0.05112279,0.060407814,0.038211856,-0.008403358,-0.008383349,-0.02447066,-0.011605434,-0.0025796993,0.11119722,0.0056794817,-0.04412887,-0.048690714,0.00094391947,-0.07981773,0.010419031,0.0033835918,0.033007193,0.051791944,0.04895945,0.010211088,-0.09170768,-0.037653428,4.4026845e-05,0.047022663,-0.010755395,-0.07159319,-0.033858556,0.019353732,0.032109268,0.01752509,-0.038635876,0.016060717,-0.06469909,-0.0066760867,-0.0046134265,-0.0015325088,0.041262053,-0.067990296,-0.0005490904,0.054957893,0.021325795,0.0032084666,-0.042478,-0.08204716,-0.05960021,-0.02810144,0.024206314,0.039484188,-0.04210324,-0.03335569,0.017203463,-0.018589376,-0.019048192,-0.06095094,0.014179784,0.0036797721,-0.06641942,0.045851383,-0.023682855,-0.057007216,-0.023411317,-0.0054888353,-0.03967592,-0.025738,0.032758407,0.014396625,-0.016306434,-0.14718975,-0.031788174,0.024486976,-0.0033766676,0.049333908,0.053048518,0.057185788,-0.0703859,-0.012783138,0.026793838,-0.03967395,-0.044901937,0.014951231,-0.061684743,-0.01585958,-0.026980413,-0.005455442,-0.12782264,0.0009456693,0.03485717,-0.13309306,-0.014978613,-0.009042509,0.0032476888,0.070836894,-0.029920496,0.0065219738,0.04686258,-0.08595636,0.051520374,1.7562262e-33,-0.08132508,-0.05098666,0.002121328,0.04264548,0.0084504895,0.019903759,0.017062187,-0.038069878,0.0062534017,-0.075321,-0.0389659,-0.092096284,0.043647762,0.0006198485,-0.012738466,0.020879468,-0.006384625,0.014545505,0.033863086,0.09560899,-0.017384483,0.018117037,-0.019806642,0.024534345,-0.0035534808,0.052579314,-0.03150732,-0.015702581,-0.07189722,0.0639057,-0.015101881,-0.011871004,-0.019962013,-0.041394982,-0.045558598,-0.006938649,0.0008165691,0.020361215,0.04606229,0.02319272,-0.01777445,0.02631712,-0.02535376,0.034499627,0.013771116,-0.043947056,0.039026935,-0.02384966,0.054285195,0.0469468,-0.013104558,-0.081541575,-0.069819115,-0.021859309,0.046215355,-0.061438736,-0.020783592,0.11164959,-0.04270707,0.0027239423,0.14326896,-0.062023222,-0.03223192,-0.023424696,-0.054967385,-0.005896305,0.047671508,0.069281764,0.10048793,0.027798668,-0.13143961,-0.048541937,-0.09499972,0.03763435,-0.037673797,0.049860492,0.0016077815,0.023474062,0.024207382,0.039098613,0.002647247,0.028481357,0.08915447,0.03238996,0.032759722,0.019160943,-0.044539943,0.13249806,-0.05486152,0.014517322,0.014290685,0.017978923,0.028050553,-0.035910837,0.067160256,-4.575184e-33,-0.005509716,0.025989443,-0.010547167,0.04296734,-0.020295013,-0.062271867,0.010618975,0.0035365692,0.022169352,-0.006403455,-0.089034505,-0.05837716,0.14246885,-0.04996449,-0.05756321,0.12902272,0.024463695,0.019887764,-0.031379785,-0.016769646,-0.023996748,0.042555273,0.09017265,-0.07664797,-0.015897501,-0.034674864,-0.0057452885,0.009225376,-0.061276615,0.015325472,-0.020650554,-0.008307717,-0.037906878,0.023569457,0.027161123,0.007507711,-0.019404475,0.08534297,-0.022020722,0.0700663,0.0034410462,0.023513991,0.03855254,0.067226,-0.037148587,0.028593699,0.02510623,-0.07347666,-0.036692522,-0.040193174,-0.02493795,0.00028035103,0.08314533,-0.040526994,0.029631529,-0.046202667,0.016522154,-0.05982834,-0.11286693,0.0044481605,0.095582105,0.013982283,-0.11694631,-0.022910696,0.048639186,0.014205815,-0.1671389,-0.051579226,0.0045827846,0.12332646,0.09917479,-0.04430713,-0.043846633,0.034689095,-0.04817572,0.07244848,-0.059093747,0.04126806,0.01213714,0.07432575,-0.06613085,-0.019548163,0.009709008,-0.04643353,-0.0611126,-0.112645715,-0.06272115,-0.03882246,-0.026698824,-0.041219458,-0.01454327,-0.025371494,-0.009624553,-0.038687628,0.013702122,-1.9830425e-08,0.030538164,-0.106293835,-0.046158627,0.017166844,-0.026747104,0.016719177,-0.030817114,0.04838099,-0.0005647323,0.080644436,-0.09175695,0.0046532783,0.11322036,0.02100274,-0.010053395,0.010800071,0.13238005,0.0733729,0.010851118,0.02151805,0.17365097,-0.07830681,0.032497145,0.03053041,0.016562162,0.032505617,0.030494414,0.060872257,-0.04731884,-0.06752523,0.061235018,-0.03323693,0.001063211,-0.048501436,-0.06380377,0.033776633,0.027464828,0.059483502,-0.028179921,0.038184837,0.066315904,0.018853659,-0.01896009,-0.011967541,0.018883921,0.016626544,0.05120434,0.057143003,0.008775872,-0.022750264,-0.015102007,0.019456722,0.045985047,0.03420554,-0.00018991642,0.027868921,0.02601486,0.04451233,0.016053502,-0.03402338,0.05412793,0.18492375,-0.025991304,-0.030159684} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.360675+00 2026-01-30 02:01:12.509357+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2226 google ChZDSUhNMG9nS0VJQ0FnSUNhMF9POElREAE 1 t 2229 Go Karts Mar Menor unknown Buena diversión pero hay que coger los de 300 buena diversión pero hay que coger los de 300 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O4.04} V+ I2 CR-N {} {"V4.03": "Buena diversión pero hay que coger los de 300"} {-0.007881349,-0.035388414,-0.022682952,-0.08532844,0.01717982,0.05616227,0.05748265,0.06912725,-0.011987026,0.0305687,0.04990568,0.0005311087,-0.04282019,-0.032605704,0.012701479,0.0027134342,-0.061115216,0.006906696,0.051241096,-0.0077561466,0.01987713,0.013749532,-0.07571255,0.11687774,-0.077499054,-0.016129779,0.0050481167,0.03113482,-0.042668514,-0.056623492,-0.014071671,0.07926382,-0.024667036,-0.048735615,0.024415534,0.006897527,0.019392055,-0.086810224,0.033060774,0.035233717,-0.12218193,0.023595788,-0.024365705,-0.030374376,0.016392026,-0.08140487,-0.045858145,0.035229515,0.057140242,-0.029462464,0.032466125,-0.0026258545,0.012531711,0.030807044,-0.003075747,-0.026410386,-0.047495946,-0.022999553,0.09373275,0.104187764,-0.01875619,0.021802925,-0.03533184,0.021002593,-0.016035488,-0.086376995,0.08405863,-0.03740296,-0.018690763,0.059803415,0.064766005,-0.02656547,-0.011577472,0.0057598813,0.007879837,0.003287145,0.019637998,0.0018740961,-0.05909288,-0.015536095,0.013045261,0.016138623,-0.05278398,-0.0402503,0.0046734344,-0.02265064,-0.0789359,0.07496694,0.08646252,0.01854645,-0.07932099,0.015724616,-0.046008397,-0.000486374,-0.055900734,0.051618222,0.03037191,-0.09506049,0.022974808,0.061649296,0.09931207,0.08321246,0.06027679,-0.03289302,0.019260561,-0.021294806,0.083265856,0.07856584,-0.024681551,-0.027633753,-0.034710996,0.015032625,0.009629699,-0.052595567,-0.09899196,0.03194085,0.0010640925,-0.074526906,0.0057076467,-0.06638493,0.038918566,0.04094034,-0.059138104,-0.03209185,0.010051788,-0.0035482508,0.024936153,5.6264656e-34,-0.0009937863,0.0084907655,-0.038786866,0.08642709,-0.01172565,-0.0050252634,-0.014895969,0.02927281,0.0008518794,-0.020381318,-0.041183155,-0.043289248,9.442527e-05,0.001994019,-0.018730963,-0.017330451,0.02221947,0.011261612,0.042182054,-0.01434685,-0.057514608,-0.033038188,-0.022032795,0.014414184,0.0071238508,0.12739542,-0.002828816,-0.06983623,-0.013671377,0.07088301,-0.0017273554,0.10938177,-0.0031414633,-0.02170221,0.0054057855,-0.00778947,0.06820247,0.0024215125,-0.011613179,0.05628567,0.04322439,0.058334198,-0.05717835,-0.034530245,0.06324771,0.0125552565,0.05105839,0.033169314,0.008935368,0.044318054,-0.049595,-0.02300423,-0.08638201,-0.01580267,-0.05701936,-0.004373762,-0.06919607,0.035215,0.021049809,0.020677008,0.05342764,0.024650022,-0.020998644,0.040682852,0.0114766015,-0.036981635,0.03803418,0.042756725,0.09159124,0.08548096,-0.108406805,-0.067048185,0.011862053,0.014557014,0.0057590725,-0.005947082,-0.021497497,0.09144962,0.011440299,-0.029468814,-0.11571663,-0.034188107,0.046733726,0.06719317,0.09187363,0.06800752,0.060875136,0.04502659,-0.057909742,0.013743907,-0.015099044,0.08460846,0.047069684,-0.04379061,0.023158778,-2.663759e-33,-0.0019984995,0.026643187,0.0030976553,-0.03465418,-0.042428456,-0.0072168186,0.019287745,0.011399067,-0.07572197,-0.098833725,-0.13492668,-0.06560689,0.100921564,-0.047565654,-0.033498816,0.008255136,0.068711855,-0.06310047,-0.110274315,-0.0036811985,-0.019333897,0.01620522,0.062273495,0.010982687,-0.030250246,-0.0071058334,-0.010555364,0.0397656,-0.069404475,-0.023513477,0.041615464,-0.05169132,0.004741161,0.05308657,-0.042782612,-0.0062744664,-0.0011078602,0.08918089,-0.0023490388,0.08407858,0.01778316,0.027239347,-0.07378538,-0.014572354,-0.040406443,0.037342813,-0.004131609,-0.1678733,-0.018777156,0.00956056,0.022319749,-0.08518847,-0.0082838815,-0.015058275,0.039723907,-0.09520251,-0.014739045,-0.13616166,-0.103672296,-0.012193853,0.057098933,0.17450076,-0.07187436,0.010243275,0.0729302,-0.040526632,-0.053180974,-0.06534271,0.05349769,0.029194605,0.07001434,-0.009355061,-0.022405498,0.032202836,-0.044393945,-0.050699923,-0.07851585,0.05029077,0.08593607,0.045743335,-0.00015755794,-0.02580815,0.034725122,-0.004866224,-0.017619342,0.0041070166,-0.06827711,0.0051505775,0.02946829,-0.031655595,0.012079751,0.043515302,-0.013790001,0.015053038,-0.015355777,-2.0013687e-08,0.026248625,0.040870074,-0.071623735,0.06538678,0.064938575,-0.036535293,-0.06973339,0.07601554,-0.02693932,0.08964952,0.02917496,-0.03277883,0.01722973,0.08841436,-0.042961005,-0.018911226,0.07879229,0.06324988,-0.061928973,-0.014939835,-0.013231907,-0.024787102,0.005914259,-0.024366377,0.058969162,0.02541786,-0.054086767,0.083175555,0.033236768,-0.03832153,-0.069182254,-0.006950093,-0.09910429,-0.05403885,-0.01730614,0.019480685,0.031959243,-0.0019090091,0.004424449,-0.0041999826,0.09489532,-0.047452476,-0.07117251,-0.03110008,-0.0025713448,-0.087719224,-0.093147136,0.021311315,-0.0031307572,0.047033522,-0.024701083,-0.0013383676,0.03873081,0.07313673,0.07263075,-0.0644106,-0.018546354,-0.013130546,-0.1466685,-0.03847872,0.051932335,0.0575141,0.007985229,-0.040232383} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.392906+00 2026-01-30 02:01:12.519828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2228 google ChZDSUhNMG9nS0VJQ0FnTUNJb3J5MFB3EAE 1 t 2231 Go Karts Mar Menor unknown Una experiencia inolvidable una experiencia inolvidable 5 2025-05-05 00:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Una experiencia inolvidable"} {0.025447872,0.011164402,-0.04520093,0.036742106,0.008450781,-0.012963831,0.13046597,0.0043212757,-0.030230924,0.015482105,0.14016096,-0.038616825,-0.008620237,0.03571731,-0.00956609,0.0086705545,0.03409561,-0.028115802,-0.045239214,0.0153664,-0.02236897,-0.10102543,-0.042672537,0.036696766,-0.038878627,-0.0014315116,-0.03722211,-0.05990734,0.0113583645,-0.07989562,0.02316066,0.054419298,0.050321024,-0.060439482,0.04856803,0.09163763,0.037124988,0.015473385,0.012777969,-0.01458072,-0.11268054,-0.03514031,-0.0013970878,-0.029274125,-0.017910905,-0.101484254,-0.0005942707,0.070971444,-0.047370188,-0.024168907,-0.0369071,0.055927087,-0.009433273,0.01216337,0.038044736,0.037546884,-0.008283448,-0.010173125,-0.026703127,0.010877556,0.021650827,0.048817195,-0.055694353,0.023801783,-0.0070347227,0.029453525,0.018901875,-0.0025013327,-0.02482211,0.03807389,0.09790352,-0.03999923,-0.0020942842,0.0640192,0.03524752,0.025771137,0.006579,-0.008900888,0.028194616,0.0064766686,0.017189171,-0.036708694,-0.076478004,-0.023421181,0.018666497,-0.010135533,-0.018649071,-0.10410555,0.0055732653,0.0839143,-0.10244549,0.06595311,-0.070438944,-0.032869086,0.016742134,-0.03835749,-0.0027913437,-0.058953047,-0.08260804,0.15468507,0.0020432333,0.08400946,0.03039366,0.13247207,-0.04637654,-0.050399337,0.0061937138,-0.07163626,-0.010082961,0.05095921,-0.022439418,-0.16803505,-0.021398842,-0.061309006,-0.0133248735,-0.017888378,0.020100966,-0.060796414,-0.040838365,-0.053566247,0.02428577,0.05800827,-0.047207445,0.0043549775,0.0032476964,-0.09380847,0.09170631,2.3418707e-33,0.021719003,-0.033592366,0.035901166,0.05751275,0.030987399,0.087886445,-0.008008433,-0.023587862,-0.029903574,-0.06645401,0.045009896,0.1180306,0.03134982,-0.015158108,0.105799794,0.04419098,0.0002847931,0.031743746,-0.002029887,0.0057005915,-0.0034124923,-0.014595473,-0.0650201,0.021480938,-0.048881497,-0.02996475,-0.028501399,-0.02969256,0.024001356,0.047947668,0.042109814,0.08882713,-0.06624598,-0.024936015,-0.007743985,-0.019701676,0.009995036,-0.0040309504,0.071761005,-0.022957066,-0.018907137,0.022523485,0.032937746,-0.05552921,-0.01916112,0.077226944,0.17872617,-0.03623923,-0.05798598,-0.024260327,0.009872259,-0.027411163,-0.030946227,-0.031337444,-0.05552088,0.054733198,-0.010793255,0.14886612,0.003036376,-0.053885292,0.056600355,-0.007099173,0.021488208,-0.117703564,-0.045427408,-0.09381553,-0.0060999608,-0.02416938,0.0769733,-0.035764992,-0.12171078,0.051482365,-0.017250746,0.06772,-0.04273004,-0.00027083058,-0.014925032,-0.048241913,0.009914997,-0.0014971979,-0.10526278,-0.027703682,0.02706244,0.06988058,-0.0070856796,0.107986875,0.035766352,-0.01450973,0.02934314,0.15412754,-0.017985728,0.035595372,0.023178615,-0.025053969,0.05233029,-4.0328533e-33,-0.009495073,-0.058059897,-0.020413838,-0.011285494,0.057513524,0.029947812,-0.058101673,0.08458453,-0.0123271,-0.019201903,-0.022522913,-0.051960997,0.16004787,0.021637475,-0.05639006,0.04618597,0.044714276,-0.026980784,0.009580566,-0.0010170883,0.04105359,0.03728599,0.034190174,-0.023385977,-0.020925254,0.021106489,-0.00042884707,-0.04597409,-0.04964858,-0.047700156,0.025662301,0.02970966,-0.086097434,0.011918356,-0.02705599,0.07487905,-0.0008319302,-0.024102775,-0.07186937,0.04084905,-0.042846095,0.066734724,-0.04338635,0.024894636,0.0527407,0.0034801916,0.027708681,-0.13811697,-0.02945436,0.014572617,0.030428503,0.056388386,-0.03400884,0.016888892,-0.0016981695,-0.08824047,0.011270937,-0.010240114,-0.016135408,0.0170092,0.066419356,-0.0056401854,-0.09859429,0.057967033,0.06139092,-0.05470135,-0.04565178,0.09350864,-0.004021592,-0.002397328,0.023478199,-0.063295916,-0.1083505,-0.02523734,0.018625753,0.005232725,-0.015994057,-0.09130375,0.053496003,-0.05962392,-0.057225913,0.03248216,0.0028409935,-0.04263124,-0.02419722,-0.025544673,-0.016573133,-0.026834551,0.037349645,0.04116911,-0.0035959824,0.010493646,-0.04836148,-0.06740525,-0.04577978,-2.0783228e-08,0.026734347,-0.086126424,-0.002190649,-0.013668079,-0.0039885333,-0.039995678,-0.018077286,0.028752487,0.00031514475,0.016103186,-0.05112722,-0.02023229,0.004893565,0.024573598,0.041544717,0.028687462,0.114658445,0.07543389,-0.07295192,0.001104482,-0.0053750514,0.025393955,-0.116942436,-0.05189968,-0.056549687,-0.015311168,-0.030651662,-0.0774523,-0.033606518,0.07848596,-0.041059226,0.043261863,0.037491392,-0.07374593,0.01131423,0.015594291,-0.046049554,-0.010376604,-0.045268763,-0.07083755,0.06241799,0.04461683,-0.014262193,0.027216434,-0.05198272,-0.007914017,0.048336178,-0.026877958,-0.016269287,0.029581577,-0.006905657,0.029739218,0.046044607,-0.0063355765,0.012959607,-0.005774786,0.021652864,0.077121064,-0.0005858301,0.011101871,0.018453848,0.06210405,0.020692075,-0.016861811} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:19:56.416202+00 2026-01-30 02:01:12.528396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2255 google ChdDSUhNMG9nS0VJQ0FnSURwLVpuSTl3RRAB 1 t 2258 Go Karts Mar Menor unknown Karts muy potentes, pista grande y es muy divertido 😃 karts muy potentes, pista grande y es muy divertido 😃 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I3 CR-N {} {"O1.02": "Karts muy potentes, pista grande y es muy divertido 😃"} {-0.010300361,-0.030738061,0.08031279,0.017138317,-0.07937819,-0.0038820559,0.07888371,0.024219098,0.046214376,-0.02170777,0.07766712,-0.02224548,-0.029044619,-0.0027198063,0.0056359195,-0.032107912,-0.022835696,0.041027304,0.0062543917,0.02064518,0.0452326,-0.019692097,-0.029911343,0.11697657,-0.07718505,0.015459715,0.030075306,-0.025240464,0.007474086,-0.099960424,-0.01316009,0.1421614,0.012370645,0.015143842,-0.0033208458,-0.014492053,0.007797607,-0.016518699,0.0027884955,0.03614874,-0.050890088,-0.035027113,0.02904562,-0.024068562,0.010449624,-0.02203927,-0.045182038,-0.0023715063,0.016952358,-0.0023791979,-0.0920407,-0.061353065,-0.014129329,0.024940256,0.04585432,-0.09686953,-0.06552092,-0.0024784228,0.083249226,0.079737686,-0.040240817,0.05122304,-0.028429076,0.0069883834,-0.02953911,-0.06320903,-0.0020622616,0.045511268,-0.056955934,0.04646784,0.110307984,-0.0018544932,-0.040115763,-0.04340444,-0.030716002,0.034962997,0.0004929895,-0.021430794,-0.15319198,0.015974391,0.020446844,0.03184385,0.0020530494,-0.04948778,0.0063554747,0.016985029,-0.08224532,0.06137959,0.021450337,-0.078474075,0.017681263,0.024963994,-0.03492486,0.0087657785,0.056628346,0.012063695,0.0028386584,-0.14561923,-0.018282896,0.04466842,0.06775646,0.05851542,0.07593679,-0.05364913,-0.038460676,0.0034652785,0.025209041,-0.020593595,0.017440505,0.017877374,0.00034872798,-0.0066627683,-0.07288238,-0.036687702,-0.09696593,0.01882048,0.00801996,-0.0138375675,-0.017485116,-0.06603924,0.01624344,0.047076162,-0.07889649,-0.04026649,-0.047524568,-0.054787196,0.06650769,2.5311538e-33,-0.077637635,-0.06354658,-0.052919816,0.054583713,-0.006273422,-0.064846374,0.004121244,-0.12612306,-0.059233136,-0.018011816,-0.04448653,0.056149997,-0.03321856,0.08744605,0.0061692256,-0.028178621,0.016697766,-0.007340733,0.041827902,0.0383664,-0.007383204,-0.01421896,-0.057605427,0.05512751,-0.076557815,0.016030185,-0.022798514,-0.06450389,-0.10845573,0.048949588,-0.055959474,-0.0013279498,-0.00016068674,0.024064977,-0.08934079,-0.04124271,-0.03546579,0.010958642,0.016589513,0.01039894,0.025709543,0.015816683,-0.062386546,0.07312385,-0.013412693,0.038497828,0.0065905456,0.058701295,0.070533015,0.054081127,-0.06574252,-0.050027214,-0.032607295,0.0033567476,-0.003120648,0.010543262,-0.03722636,0.029211303,-0.027126696,-0.028479895,0.057472453,0.026220625,-0.024142098,-0.06242267,-0.04860129,-0.023152635,-0.041460864,0.0077738734,0.09670749,0.10825891,-0.13089038,0.0048664906,-0.004362007,0.039471712,0.058844894,-0.077819094,0.0101578,0.081355415,0.009834144,0.10726646,-0.03815481,0.010788637,-0.0021089118,0.1156524,0.033326928,0.07103284,0.08971786,0.08734231,-0.018660242,0.09300635,-0.11971558,0.045650516,0.053276684,-0.031576607,-0.0076178527,-3.583227e-33,0.033232074,0.01949867,0.03928132,0.11720685,-0.030517627,0.0039159097,0.007939188,-0.019041132,-0.015396737,-0.036959533,-0.098881096,-0.010704259,0.08932287,-0.04953533,-0.022392524,0.07512945,0.067134514,0.02391539,-0.07275137,0.00010867864,-0.09308508,0.044382643,0.041500416,-0.02891245,-0.04661451,0.009049007,0.022072608,-0.023388507,-0.0780925,0.07165115,-0.029722335,-0.04332664,-0.08076972,0.057494126,-0.038316377,0.028592799,0.017049296,0.043602698,-0.0671467,0.0930314,-0.042156246,0.037605498,0.002751338,0.06801745,-0.044011436,0.052310616,0.03313739,-0.05882329,-0.032427363,-0.039638232,0.02665586,0.020116054,0.025772857,-0.023095073,0.056518212,-0.062070914,0.010845397,-0.09669896,-0.104158066,-0.016113577,0.0303671,0.008561679,-0.03811264,-0.07428492,0.055283967,0.0027779096,-0.031783383,-0.08349514,0.045512296,0.02386177,0.09067716,0.03581369,0.014161609,-0.011224191,-0.0036421616,0.008862514,-0.11558643,0.031846095,-0.010076996,0.03708625,0.03315372,0.04187062,-0.017605502,-0.031370934,0.030402517,0.011956242,-0.060882483,0.019559009,0.04251267,0.003727884,0.046258662,0.042947937,-0.019292945,-0.007926569,0.05364183,-2.172293e-08,0.0113820275,-0.012290506,-0.07845385,0.012801999,-0.020241898,-0.063223034,-0.054323584,0.06639018,0.0012371012,0.08090296,0.016899653,0.01903489,0.06278059,0.066599995,-0.007824717,0.036060914,0.06468435,0.16772246,0.008707529,-0.009670085,0.08546512,-0.0077277566,0.017852727,-0.0059683495,-0.029905712,0.049078632,-0.030632243,0.032646976,-0.027284639,-0.02044421,0.048641942,-0.027761089,-0.08562987,-0.028715745,-0.03210183,-0.030177426,0.0005589499,0.022460306,-0.01136154,0.028550746,0.0017100463,-0.06837318,-0.05672701,0.00838536,-0.06915924,-0.043666285,-0.00809104,0.07284293,-0.0130414115,0.041957285,-0.011191247,0.0035448177,0.074275635,0.047593154,0.03376222,0.0074518234,0.039522123,0.0040631345,-0.039960604,-0.08992818,0.009099065,0.14777632,0.021408694,-0.09134616} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.597624+00 2026-01-30 02:01:12.635172+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2256 google ChZDSUhNMG9nS0VJQ0FnSURkNy1UcFNREAE 1 t 2259 Go Karts Mar Menor unknown GENIAL, ENDROIT BIEN TENU genial, endroit bien tenu 5 2025-01-30 01:52:39.833374+00 en v5.1 E1.01 {} V+ I3 CR-N {} {"E1.01": "GENIAL, ENDROIT BIEN TENU"} {-0.03424222,0.051780585,0.018694345,-0.075793356,-0.027891334,0.034820095,0.054815616,0.095234245,-0.016576177,0.05679675,0.068607025,-0.043301586,-0.02069182,-0.033941038,-0.017237922,-0.020230686,-0.030715913,0.025584416,0.015458696,0.0016184619,0.026150428,0.03694641,0.014376509,-0.021198966,-0.08563304,0.045368347,-0.043837897,0.018015634,0.034580365,-0.06375353,0.026127715,0.07098113,-0.020256504,0.0036300472,0.011913347,-0.056378048,0.03272574,-0.05313365,-0.014034532,0.0024157977,-0.022666326,-0.0075965016,-0.059437566,0.021424256,0.07465557,-0.028605372,-0.013290717,0.044806916,0.030067451,0.06921179,-0.022941435,0.006778915,0.046951458,0.013521194,0.018486943,-0.032464497,0.07105934,-0.06741532,-0.0063086413,0.0122587625,0.03961459,0.018546738,-0.1550108,-0.020415999,0.03775133,-0.033358023,0.059073735,-0.060860164,-0.09595521,0.012817561,0.082802415,-0.10132783,-0.05354032,0.027686322,-0.076476306,0.10728747,0.014018829,0.014848138,-0.05516619,-0.05392301,-0.008919666,-0.02376495,-0.01441335,-0.05860072,0.027956126,-0.019229583,0.055943634,0.027298113,0.10992426,0.037995037,-0.08714417,0.0014217851,-0.00079395977,-0.014543121,0.058832623,-0.00015559114,-0.033350628,-0.11177547,-0.07075638,0.035831902,0.016588304,0.033644967,0.041696448,0.052095264,-0.04572633,0.0037300736,0.023006916,0.048056092,0.039456874,-0.022227032,-0.03908185,-0.048299346,-0.030820794,-0.04580833,0.060848184,-0.010659211,0.0441212,-0.024789136,-0.030161796,-0.067047656,0.05775933,-0.044259503,-0.106947556,0.02240837,0.027488114,0.0058232746,0.0685312,-1.0231346e-33,-0.023614608,0.007162462,0.0020188212,0.039797783,0.0108490335,0.04128138,-0.10506926,0.08292405,-0.086434565,-0.046357527,-0.09067586,-0.0048730182,-0.01810137,0.04698916,0.02288397,-0.051840916,0.012690506,0.007678027,0.08995744,-0.02784794,-0.038140398,0.020710472,0.06957663,-0.020175826,0.056316674,0.023475006,-0.036174368,0.011473472,-0.061501104,0.020836478,0.06623649,-0.038631123,0.022501616,0.023567634,0.017791228,-2.8744178e-05,0.07344076,0.026662955,0.061124306,0.014554541,0.078003205,-0.01972373,-8.0021644e-05,0.03984725,0.04764527,-0.06053363,0.072332576,-0.004929784,-0.00027952372,-0.104223326,-0.05050324,0.0027960907,-0.12404147,-0.05098028,-0.024041222,0.031331416,-0.013893574,0.10234117,-0.08620427,-0.07666296,0.09398203,0.01573069,-0.007080751,-0.023159295,-0.03649359,-0.043931533,0.028047675,0.06869837,0.12746921,-0.016115846,-0.060256064,-0.027077155,0.053852625,0.04128705,-0.015501406,0.10054277,0.033742726,0.015016438,0.076038636,-0.012244124,-0.011726513,0.07210496,-0.02343176,0.0060707107,0.051329404,0.031247072,-0.01689136,-0.042991627,-0.021196622,0.051101446,-0.004203861,0.020351147,0.0497035,0.024068706,-0.07609028,-8.695107e-34,-0.06474416,-0.032048877,-0.08191909,0.05315596,-0.02108809,-0.004898731,-0.03626361,0.053445056,-0.081525065,-0.014922664,0.025047798,-0.110670246,0.13456199,-0.09516272,-0.039482743,0.06455222,0.08330576,0.0002998664,-0.03199046,-0.03933819,-0.026094573,-0.004152149,0.057048865,-0.05415763,-0.012068465,0.034163274,0.0060062055,-0.02106419,-0.06588285,0.017210733,0.056146346,-0.045977607,0.005762137,0.022411613,0.06877603,0.13859467,0.055014938,0.014462974,0.055758286,0.04850629,-0.0063857157,0.046664625,0.0051635187,0.05304624,0.038605817,-0.012955115,-0.07250752,-0.06043684,-0.085716516,-0.01039416,0.11151289,0.060515422,-0.016143478,-0.020039218,0.0018820575,-0.042251896,0.04934326,-0.010911938,-0.08132461,-0.030070437,0.0050330167,0.060982663,0.0070153256,-0.052291982,0.06489292,-0.040349025,-0.045386255,0.12405529,0.009431246,-0.018537384,0.0313893,-0.021226615,-0.03883343,0.021159263,-0.08278164,-0.029045401,-0.011621222,-0.04262356,0.06990999,-0.0073749507,-0.10348822,-0.02712409,-0.083940625,0.0120060565,-0.047309753,-0.06471945,0.008919814,0.0184739,0.07644048,0.03040051,0.018866079,-0.016250324,-0.040039442,-0.06958081,0.021175325,-1.700346e-08,0.05968513,-0.07325131,-0.008577271,0.031633504,0.013720101,-0.12051096,-0.06050273,-0.016147884,0.0733494,0.045601994,0.012358057,0.000752595,-0.0717445,0.063418515,0.0012371164,0.046859883,0.01600876,0.0025714452,0.020674467,-0.043118346,-0.0109795015,0.0016612643,-0.021527037,-0.115970105,-0.0052856337,-0.03320715,-0.085923865,-0.08468275,-0.051852506,-0.01174597,0.034868293,0.033993185,-0.13802002,-0.05679936,-0.029541655,0.054571416,0.05605778,-0.006540556,0.046846718,-0.006571012,0.10096346,0.021638203,-0.013532376,0.03518633,-0.029715268,-0.043866824,0.06971899,0.062498055,-0.027813125,0.03476383,-0.02022327,-0.0195933,0.04744136,-0.033336528,-0.015638435,-0.042847376,0.03000366,0.002791272,-0.005977016,0.06332779,0.010470406,0.12191589,0.028541634,-0.07057632} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.61453+00 2026-01-30 02:01:12.642771+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2257 google ChdDSUhNMG9nS0VJQ0FnSUQweTdDa3BBRRAB 1 t 2260 Go Karts Mar Menor unknown Circuito grande y bien preparado con muchos coches circuito grande y bien preparado con muchos coches 5 2020-02-01 01:52:39.833374+00 es v5.1 E1.03 {A1.03} V+ I2 CR-N {} {"E1.03": "Circuito grande y bien preparado con muchos coches"} {0.0072496864,0.06806601,-0.010765296,-0.085225284,-0.054100476,-0.0011195234,0.05909648,0.120534785,-0.019039027,0.06782336,0.04784519,-0.044671346,-0.010178077,-0.036715083,-0.014570165,0.033557978,0.03778997,-0.0029112042,-0.02303389,-0.055817094,0.019026231,-0.04067857,-0.103299156,0.121773675,-0.11082678,-0.019643089,0.0064613665,-0.010374877,-0.049817905,-0.06400141,-0.09946893,0.07054862,0.05944897,0.026918247,-0.02900947,0.069465056,0.108001284,-0.11324329,0.05249904,0.069083616,-0.10536258,0.0080655245,0.033036865,0.03044308,0.010530778,-0.04386356,0.0057841954,0.0051950454,0.044271156,-0.07620375,0.014944742,-0.01680762,0.009489011,-0.0055804877,-0.016704543,0.024833912,-0.002816317,0.0010958336,0.05015714,0.052313708,-0.013650049,-0.011403916,0.024541654,0.047101863,0.00914669,-0.037231937,0.033184733,-0.004237947,-0.043281004,0.047841646,0.08940351,-0.052627794,0.026260177,-0.04234954,0.01010436,0.017576613,-0.054212,0.03532639,-0.017146295,-0.12767424,-0.003237022,-0.007888339,-0.00036987502,-0.09658749,0.0759299,0.0054453956,-0.024484389,-0.044648137,0.02377315,-0.035854064,-0.037411872,-0.0021372102,-0.036228877,0.0211511,-0.05014374,-0.0035568778,0.05957861,-0.051847585,-0.033126924,0.097105145,0.061553363,0.074693166,0.083164066,0.021523649,-0.032365985,0.050244246,0.0475031,0.057854146,0.03514821,-0.02267799,-0.033046365,0.025307097,0.008520738,-0.029986244,0.029387645,-0.025365928,0.0063674347,-0.009719566,0.011051945,-0.08786604,0.05671952,-0.030336557,-0.10809753,0.005457634,-0.05338039,0.0006494513,0.10212209,3.755197e-33,0.025106905,0.04065997,0.02410025,0.052092608,-0.04635864,0.043561444,-0.0033532595,0.008144516,-0.05640582,0.03792926,-0.022361234,0.096826114,-0.015268063,0.0628191,0.05373467,-0.024737094,0.0011541657,-0.063565075,0.11279566,-0.015435106,-0.059053566,-0.067847595,-0.02484742,0.0868851,-0.0037380985,0.022440981,0.010356952,-0.083678894,-0.11613383,0.044994906,-0.031486064,0.09009268,0.0778276,0.01549341,-0.08428071,0.018439207,0.044368215,-0.01870219,0.07595875,-0.004747747,-0.013397615,-0.022290181,-0.054517232,-0.028731417,0.016849048,0.0062237447,-0.012598227,0.035075296,0.03698126,-0.0187453,-0.11729121,-0.07850464,-0.0825148,0.025779165,0.0077478173,0.030017888,-0.05268467,0.040571876,0.03426024,0.025417527,0.024045974,0.08088545,-0.02741803,0.045791518,-0.09505259,-0.009966246,0.03191458,-0.056863613,0.069952965,0.028272066,-0.14981088,0.0036861412,-0.07344469,0.012839597,-0.014527632,0.010416936,0.02367758,0.008626051,-0.004551628,0.026980398,-0.07112723,-0.052062765,0.046381652,0.042488962,0.054085303,0.07579994,0.06244405,0.018678935,-0.013484723,0.0881857,-0.0866367,0.06622531,0.1368867,-0.0677913,0.032018498,-4.8366997e-33,0.029590447,-0.033091877,-0.022908067,0.060145065,-0.022781553,0.026303008,-0.013169665,-0.10077626,-0.057057932,-0.08190267,0.012060559,-0.087760046,0.069163255,-0.11291076,-0.0007865853,0.023124523,0.0070780516,-0.04776003,-0.03499826,0.0066486173,0.063693546,0.014657288,-0.030171782,-0.013027405,-0.054149527,-0.044530913,-0.08233294,0.023911936,-0.06684871,0.05806707,0.0062393136,0.0002025108,0.01989332,0.08284369,-0.042183705,0.06825669,0.018638462,0.06284759,0.037742797,0.019637229,-0.043462615,0.007182328,-0.015795797,-0.014041134,-0.023618225,0.042826068,-0.08832892,-0.10328463,-0.025209948,0.001608258,-0.001861549,-0.034871224,-0.055631697,-0.059693195,-0.026030926,-0.053977493,-0.06593302,-0.08647257,-0.105874404,-0.06376167,0.043070555,0.029711716,-0.04958574,-0.016442714,0.07164915,-0.024286108,-0.03894392,0.03480847,0.14757851,0.046379045,0.03948385,0.025910724,0.00020164136,0.016012741,-0.06490906,-0.029556658,-0.09787435,0.0101200165,0.0039785774,0.059036978,-0.011968728,0.06362351,0.046853244,-0.040679164,-0.0144371595,0.041156918,-0.013819989,0.059940882,0.026859595,0.014644185,-0.030362235,0.055040415,-0.03165789,-0.1079787,0.011866292,-2.3397197e-08,0.03349264,-0.0064174817,0.0104859425,-0.01897513,0.03029135,-0.07713153,0.041552026,-0.006847235,-0.05151416,0.032228023,0.00054119865,-0.031629033,0.026682798,0.034952477,0.008498487,0.029379643,-0.025429644,0.07255861,-0.009210003,0.014261263,0.032026477,-0.023567282,-0.018440625,-0.008893538,0.054823805,0.0028435506,-0.013085484,0.034458917,-0.034599327,0.0014766352,0.0022773452,-0.044661816,-0.020971492,-0.019957691,0.07719211,0.023141604,-0.042810366,0.0173326,-0.02061454,-0.045873854,-0.020023737,-0.03386253,-0.03228481,-0.0027698658,0.013686009,-0.11740669,0.021422723,0.021029154,-0.0071819345,0.07415833,-0.05818495,0.013756905,0.0704395,0.04610439,0.036684662,0.011630683,0.03866479,0.018497515,-0.0628496,-0.039333783,0.035446096,0.1098089,0.044950943,-0.114845075} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.633157+00 2026-01-30 02:01:12.646116+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2258 google ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB 1 t 2261 Go Karts Mar Menor unknown Buen trato y karts muy cuidados buen trato y karts muy cuidados 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.02 {} V+ I2 CR-N {} {"O2.02": "karts muy cuidados", "P1.02": "Buen trato"} {0.04046863,0.023579732,-0.01744547,0.0032747744,-0.074685045,-0.015226325,0.08353167,0.0069846297,-0.0026226377,0.017315162,0.0941311,0.012520476,-0.09458655,-0.014575651,0.031418778,0.038053714,-0.017337514,0.09235539,-0.017100167,-0.03065415,0.061019927,-0.060264148,-0.03273674,0.12930246,-0.086836,-0.042376675,0.044562668,0.037925866,0.009378034,-0.05287613,-0.045173004,0.075374536,0.07483924,0.035805773,-0.029300181,0.008538675,0.03590663,-0.03681995,-0.011214661,0.028106146,-0.042063132,-0.0678402,-0.02443488,0.011978414,0.009791056,-0.09226144,-0.018008802,0.08346824,0.013026812,-0.0006420487,-0.043348204,-0.04803464,-0.016246824,-0.0009373898,0.00082077517,-0.018343939,-0.04514638,0.025080312,0.0987219,0.005112665,0.010961815,0.030248359,-0.05765043,0.050432567,0.03327013,-0.05519555,-0.047896937,0.076701,-0.07845748,0.08004941,0.120523475,-0.10142469,-0.0087629,0.06283758,-0.05219631,0.04074216,-0.025514377,-0.016801387,-0.087084815,-0.02603634,0.038169365,0.004027019,0.0149499085,-0.05704708,-0.0044922926,-0.02423049,-0.005908237,0.022134913,-0.021964995,-0.00022758808,0.025282098,0.03831667,-0.0029838546,-0.038874358,0.024645772,0.045358438,0.018216139,-0.074679375,0.067790896,0.058472447,0.060068343,0.06048988,0.13945258,0.06349492,-0.020675983,0.008350008,0.03531977,-0.060706683,0.046312414,0.008567511,-0.060322654,-0.017981151,-0.07187111,0.0008722975,0.0114414245,-0.049781654,0.011042422,0.04583997,0.005516453,-0.06216102,0.01801287,0.04217786,-0.045017738,-0.03670706,0.013490189,-0.016066434,0.07072552,5.9331667e-33,-0.05639966,-0.073126495,-0.051464375,0.046509463,0.023405885,-0.039784808,-0.061881717,-0.05593627,-0.09438604,0.07889159,-0.035309087,0.057085596,-0.01475935,-0.005391438,0.1338226,0.016870996,-0.006009088,0.0075693512,0.08376391,0.02578518,-0.06210661,-0.019971475,-0.044253204,0.028761981,-0.06501736,0.046016257,-0.022224925,-0.069335945,-0.0490199,0.04235225,0.06293391,0.09456275,-0.005088181,-0.046686623,-0.134602,-0.076010674,-0.025360595,0.005158135,-0.015170241,-0.014231655,0.0073265103,-0.041791372,0.0049836915,0.05569027,0.0013600037,-0.012660138,0.05462739,0.010247815,0.058366396,0.0568425,-0.06695535,-0.07519593,-0.06613829,-0.0070657763,0.059512824,0.030013956,0.019049877,0.05423017,0.00012015473,-0.073016346,0.06413481,0.029935243,0.027038977,-0.08094934,-0.028534252,-0.039058466,0.048875526,0.02459585,0.090782605,0.02165487,-0.089372426,-0.030998502,-0.05059609,-0.018845981,0.039193124,-0.018142931,-0.020877218,-0.023681857,-0.020645952,0.026087552,-0.080861755,0.0069164713,0.025189446,0.052647687,0.10578214,0.05047191,0.0033005832,-0.023557542,0.007541809,0.09081579,-0.09966305,0.07982843,-0.02767768,-0.011604093,0.006250335,-5.4633807e-33,0.01934476,-0.0012194318,0.03378883,0.11253614,-0.026559332,-0.028364534,-0.080036044,-0.011893807,0.006532944,-0.013417454,-0.04437074,-0.18347637,0.040078886,-0.016057884,0.011200724,0.04002697,0.05996189,-0.032018553,-0.144882,-0.08663918,-0.029901858,0.028642211,0.007230127,0.024268525,-0.0506448,-0.028485771,0.010583736,0.011137471,-0.051155735,0.014764624,0.057370543,-0.04164608,-0.049111683,0.10334242,-0.012911513,0.0013534782,0.04763812,0.07332131,0.0020855174,0.027377743,0.04222013,0.06462319,-0.0677443,-0.005609231,-0.043126993,0.03144129,0.039814282,-0.09073057,-0.0002488992,-0.07375364,0.109406106,0.016817573,-0.01221637,-0.02320666,0.021057181,0.011030405,-0.0009151899,-0.08070966,-0.088138364,-0.0340244,0.055287153,-0.006730811,-0.056880675,-0.03872932,0.057074185,0.014231488,-0.053404946,0.06965741,-0.03263258,0.03300956,0.018527362,-0.04858742,-0.06922675,0.043403678,-0.064728044,-0.030862711,-0.09461398,-0.011581528,0.02532126,0.012469498,0.023328321,-0.020161295,-0.041861504,-0.030725189,0.020212391,0.014223066,-0.06598235,-0.0033684988,0.051622685,0.07001495,0.07554998,0.06414552,-0.043375883,-0.018596975,-0.072034255,-2.4397835e-08,0.013092738,-0.0490704,-0.012237578,0.019095633,0.05949901,0.008586283,-0.031799924,0.033127,0.015149533,0.09538622,-0.063490935,-0.012519028,-0.019953787,0.10840794,-0.0016946268,0.06238834,0.06462367,0.012950195,0.047456097,-0.08029509,0.059736993,-0.005925499,-0.028772507,0.057180878,-0.042641733,0.023277322,-0.05095108,0.06497022,0.030878996,0.030527873,0.030466452,0.022151591,-0.06189016,-0.010032557,0.012136503,0.0100868475,-0.044878222,-0.047839604,-0.028424975,0.0025247645,0.048247866,-0.040685568,-0.01633533,-0.018942077,-0.0516077,-0.055193387,-0.0015006693,0.08859894,-0.014318592,0.021773493,-0.08601706,-0.075268485,0.0296475,0.0662239,0.035934296,-0.04439863,0.085187815,0.006198833,-0.004330192,0.006512895,0.041598905,0.07579107,0.061272036,-0.112389326} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.647663+00 2026-01-30 02:01:12.648673+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2230 google ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE 1 t 2233 Go Karts Mar Menor unknown Muy buen trato, buena pista de karts muy buen trato, buena pista de karts 5 2022-01-31 01:52:39.833374+00 es v5.1 P1.01 {} V+ I2 CR-N {} {"O2.03": "buena pista de karts", "P1.01": "Muy buen trato"} {-0.0232251,-0.0052944734,0.00034392273,-0.0027516556,-0.11846391,0.013924354,0.04363557,0.04164753,0.029137379,-0.016483283,0.08326373,0.024209667,-0.10321658,-0.05210282,0.008554633,-0.011751989,0.006693897,0.06686811,0.03353898,-0.04709299,0.028632162,-0.08724512,-0.04026586,0.12048542,-0.075178936,-0.024525804,0.03765859,0.054429766,0.019379525,-0.07985108,-0.044006594,0.0589963,0.034473,0.0147517575,0.007908568,-0.03132187,-0.009168644,-0.06936371,0.0025765707,0.03421677,0.0072299032,-0.03067213,-0.035426125,-0.016887229,0.050360925,-0.08402764,-0.0444657,0.05780115,-0.0001640594,0.007506854,-0.06518913,-0.02633435,0.016122848,0.010121579,-0.0032808043,-0.0065482655,-0.062247146,0.050418723,0.098440506,0.023332255,0.030900873,0.031562738,-0.078311235,0.020401267,-0.019169237,-0.052237988,-0.04796404,0.055483248,-0.07194824,0.06280915,0.101549834,-0.096635565,-0.049599923,0.045479413,-0.028269894,0.029711481,-0.026399065,-0.011985261,-0.11390804,-0.010963009,0.023433922,-0.027668854,0.0015572113,-0.052845877,-0.0009150548,-0.02408539,0.033614274,0.055441406,0.039359227,0.005844352,-0.022782372,0.06076804,-0.03841095,0.0058625937,0.012372163,0.046407435,0.0016129636,-0.047998533,0.035800423,0.056163013,0.09519248,0.037428442,0.1274864,-0.015269143,-0.07816545,0.018453607,0.048599023,-0.02757777,0.05503164,0.0294264,-0.042346727,-0.007088886,-0.055315666,-0.029836792,-0.01835241,0.01629435,0.01912107,0.018471485,0.028701559,-0.043241058,-0.0020146873,0.02284359,-0.016708242,-0.0039775297,0.006306041,-0.039383136,0.01769775,3.180775e-33,-0.06624543,-0.046635598,-0.02855112,0.057060864,0.024906263,-0.040957477,-0.052324016,-0.10820426,-0.12558591,0.053581405,-0.047419246,0.07136428,-0.05603316,-0.019904802,0.11894783,0.025926596,0.00037219806,-0.016693445,0.06146987,-0.055244792,-0.09677941,-0.03269209,-0.04933558,0.060500227,-0.036130503,0.051272072,-0.008219046,-0.06364703,-0.03826651,0.047653276,0.051329713,0.08878895,-0.011954696,0.009832749,-0.12813108,-0.060859237,-0.07304446,0.021413004,-0.049870227,0.046349756,0.040264755,-0.039253753,0.013479784,0.04373409,-0.034216743,0.009239508,0.05221675,0.0071972953,0.07934864,0.025947936,-0.079502836,-0.056178562,-0.07975079,0.023556482,0.017910097,0.012264351,-0.045517236,0.048147615,-0.027800513,-0.044574972,0.072358415,0.042442817,0.03128696,-0.057371274,-0.06346844,-0.02923297,0.004800799,0.054556586,0.11092795,0.020444572,-0.06266243,-0.061622117,0.05920598,-0.020816002,0.091246165,-0.026731284,-0.06025697,0.045581035,-0.04574109,0.047759768,-0.0716302,-0.04720153,0.00872875,0.08863208,0.041801445,0.055657353,0.03624974,0.0058906544,-0.007891696,0.07358472,-0.10580188,0.07182418,0.002338716,0.029055422,0.01286104,-3.125775e-33,0.06255527,-0.0049627554,0.06396593,0.11374543,-0.04583135,-0.012496325,-0.0413688,-0.020908562,0.010997418,0.00973363,-0.035168394,-0.15631416,0.06286457,-0.035665665,0.006207158,0.09355501,0.06276691,-0.023099013,-0.08139605,-0.12367672,-0.06343641,-0.0049930373,0.019626066,0.05952469,-0.02442963,0.015190185,0.037907053,0.009227299,-0.061056647,0.0142861325,-0.015442594,-0.0502294,-0.029802212,0.09772404,-0.027767858,0.06338896,0.10058757,0.10000529,0.024494398,0.016515974,0.0034356222,0.028775051,-0.023678875,0.014272196,0.018943405,0.0023631973,0.050192364,-0.078721754,0.008293326,-0.06062028,0.12383424,0.034150638,0.002243859,-0.011881182,-0.010566391,0.020108383,-0.04446608,-0.02862658,-0.11205359,-0.028557558,0.049433805,-0.010879946,-0.028598249,-0.008493749,0.0593171,-0.0070056925,-0.0599643,0.006943363,-0.0026852281,0.010798797,-0.0011532028,-0.036244668,-0.0033331162,0.06708119,-0.055909805,-0.03486025,-0.05507464,0.051224038,-0.002984086,-0.004395062,-0.010984613,-0.04780794,-0.055604875,0.012189143,-0.007487116,0.0053847786,-0.06359831,-0.05420984,0.06303585,0.08282169,0.053096406,0.12342059,0.019156082,-0.020654468,-0.057767835,-2.1810544e-08,0.062911734,-0.021450162,-0.08798113,0.06466563,0.050523326,-0.006210273,-0.0648636,0.0433572,-0.014957545,0.11031653,-0.08197505,0.005856203,-0.016862253,0.11378514,-0.0010648989,0.07947673,0.007759191,0.06334065,0.04917713,-0.076194964,0.03277805,0.0032661597,0.019152585,0.029373815,-0.06016414,0.0014025434,-0.016707709,0.06579163,0.028426126,-0.0023032292,-0.0046291105,0.06285297,-0.04667876,-0.035773695,-0.004244813,0.0015674484,-0.045280974,-0.03708085,-0.044149105,0.036817677,0.02737412,-0.036575776,-0.031430803,-0.047528747,-0.0014311052,-0.07046482,-0.005544888,0.032740317,0.009279595,0.021151025,-0.06770542,-0.007877028,0.040739186,0.08274699,0.05672545,-0.010314892,0.098676346,-0.037838183,0.02036491,-0.020812726,-0.011819225,0.045595787,0.042305075,-0.072163306} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.661174+00 2026-01-30 02:01:12.537811+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2259 google ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB 1 t 2262 Go Karts Mar Menor unknown Leuke carting, wel best reserveren leuke carting, wel best reserveren 4 2022-01-31 01:52:39.833374+00 nl v5.1 O1.01 {} V+ I2 CR-N {} {"J2.01": "wel best reserveren", "O1.01": "Leuke carting"} {-0.07621909,0.10350552,-0.024744218,-0.058895387,-0.02852304,0.009971032,0.062503494,0.086327195,-0.07331554,-0.05354159,0.036448956,-0.040026348,-0.033863973,0.025493061,-0.0060503506,-0.043066703,0.08308957,0.046820726,-0.07028642,-0.04871859,-0.047555894,-0.02595353,0.051545713,-0.0010519545,-0.023795005,0.009312198,0.052568536,0.019845894,0.041882645,-0.0715827,0.026846964,-0.015608776,0.00709169,-0.0049903984,-0.015323004,0.055208195,0.008798826,0.00068663165,0.0009573135,0.05012848,-0.026241433,-0.05507037,-0.019533433,-0.0726945,0.022679912,-0.006671968,-0.05776478,-0.050795462,-0.055422097,0.08347501,0.05463507,0.014912359,0.033499587,-0.031275403,0.005359375,-0.009109942,-0.011658702,-0.042456347,0.044334564,-0.010987472,0.024541322,0.049740937,-0.026568545,0.006551009,-0.026588961,-0.108853206,-0.01827213,0.056923345,-0.06469804,0.05297124,0.053670526,-0.08049893,-0.027848525,-0.040306825,-0.015272434,-0.045838784,0.02514458,-0.079589106,0.029109498,-0.057099693,0.040862937,-0.055058427,-0.028481377,0.053163756,-0.04939745,-0.001759262,0.04792154,0.01682962,0.04377292,-0.0048966524,0.015450119,-0.0015070267,-0.07188004,0.051198702,-0.06487468,0.028052006,-0.00236082,0.05651007,-0.05949387,0.07342168,0.0906019,0.07010448,0.043440055,-0.053746626,-0.08853983,-0.043358315,0.11570916,-0.0034291942,0.013433181,-0.021512432,-0.05681378,-0.011493523,0.0008390158,-0.016163731,-0.05199853,-0.013027334,-0.06915641,-0.04651434,-0.030773921,-0.016529312,0.0050402293,0.035011902,0.09452323,0.005479637,0.071113445,-0.0031505218,0.021075547,-6.9777423e-34,0.0016529912,-0.091457404,-0.037815288,-0.008885071,-0.05313402,0.028866751,-0.05647225,-0.033508264,-0.13382478,0.0051306286,0.02501424,-0.06468678,-0.05253805,-0.03637667,-0.021110766,-0.020278934,0.007989418,0.033197455,-0.016295813,-0.04589508,0.060014542,0.024935015,0.029887982,-0.07977543,0.048893183,0.005726007,0.07476352,0.0015863173,-0.015852433,0.05700494,0.07339567,-0.008677538,0.0027128744,0.0012210319,0.01354583,0.0058794897,-0.07064196,-0.012750925,-0.031802993,-0.04102109,0.022456102,-0.0044225683,-0.028713131,0.019164316,0.024931045,0.0783565,0.05160104,-0.015908096,-0.043283697,-0.018015182,-0.08342618,0.03459059,-0.086201034,0.057089005,-0.02465842,-0.019041441,-0.020902356,0.03818995,-0.023194462,-0.05812755,-0.0069526643,0.117274314,-0.08526417,-0.016743988,0.022439392,-0.06367075,-0.017177124,0.0048137615,-0.07011715,-0.03462782,0.0012379938,-0.06856778,0.039169423,0.0550092,0.034107637,0.012022242,0.072016664,0.13315776,-0.10912712,-0.001967616,-0.113612585,-0.03179871,-0.03502765,0.07905952,0.015543982,-0.064675316,0.00015390699,-0.09268885,0.023445334,0.03623086,-0.06823198,-0.027282014,0.012483708,-0.04671765,0.041234367,-2.3850588e-34,-0.00015851263,0.03931697,0.023592236,0.104385264,0.09216887,-0.0708974,0.012353931,0.00656523,0.010615212,-0.004056903,-0.13151588,0.008760449,0.026447134,0.010329862,0.030438319,0.043325745,0.11530814,0.024976268,0.027509063,-0.046003852,0.06997801,0.04213365,-0.05438295,0.0778048,0.045051854,0.082946084,-0.010095163,0.030975597,-0.04471261,0.0033577315,-0.019114466,-0.029102625,0.0005301819,0.004914885,-0.092162445,-0.011549989,-0.039517593,0.05181189,-0.06662876,0.056166634,0.0124830725,-0.032503363,-0.0592536,0.06386114,0.05155302,-0.057550386,-0.025799928,0.001904175,0.08112353,-0.016885275,-0.01642309,0.027703164,-0.019123645,-0.060748637,0.13082357,0.03233937,0.0433245,-0.03645194,-0.01188416,-0.079432294,0.016654635,0.028361345,0.03847784,0.038396575,0.039388068,0.001565786,0.08126559,-0.077184916,0.0027304948,-0.018790552,0.023733336,-0.017867578,-0.008609923,0.06823707,-0.0060923505,0.052394304,-0.011129685,0.034196094,0.038578063,-0.04267229,-0.08980141,-0.099636644,-0.0016092787,0.0021998223,0.09754955,0.045390435,0.0034201185,-0.043279327,0.0061562266,-0.051176693,0.013751389,0.035739098,0.025009045,0.03732167,0.0058480417,-1.7168153e-08,0.0006050118,-0.0375245,-0.04632398,0.05391549,-0.00354407,-0.085443005,0.021839147,-0.017162697,-0.02422906,0.115661114,0.044373028,0.08656963,-0.021410933,0.017173305,0.07980751,-0.019502569,0.06591605,-0.016860766,-0.05623404,-0.066772856,-0.0088808695,-0.039087214,0.05174825,-0.042450067,-0.07188989,-0.0062859687,0.03456893,0.04038849,0.086133674,-0.027647065,0.042487882,0.053372618,0.0077520297,-0.032130264,0.11240845,0.096557215,-0.08562491,-0.016711082,-0.015856884,0.023295933,-0.018273193,0.026304271,0.1340003,0.008936553,-0.0019409203,0.018629763,0.033249196,-0.0008285941,0.0049010273,-0.13239662,-0.04987405,-0.10076565,0.05328299,0.08018483,0.17418246,0.081442066,0.013646344,-0.05105638,0.05373463,0.0025204325,0.01126293,-0.044903226,-0.06770376,0.023395954} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.673447+00 2026-01-30 02:01:12.658638+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2261 google ChdDSUhNMG9nS0VJQ0FnSUQtNjl5V3JnRRAB 1 t 2264 Go Karts Mar Menor unknown Uno de los mejores circuitos de karting de toda España uno de los mejores circuitos de karting de toda españa 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "Uno de los mejores circuitos de karting de toda España"} {-0.033771552,0.02404375,0.010744647,0.010047746,-0.07044269,0.036091883,-0.031305943,0.072213545,-0.016641619,-0.0007750081,0.05085283,0.001066509,0.019236902,0.058424193,-0.014520533,0.034890145,-0.029169502,-0.008374803,0.027588706,0.01732118,0.024622008,-0.050191443,-0.0641904,0.023912203,-0.08709535,-0.025072975,0.038879156,0.009678126,-0.044339184,-0.10908996,-0.098934546,0.005555293,-0.019517824,-0.025396923,-0.024036644,-0.048147354,-0.024681775,-0.05236663,-0.06676002,0.012802983,-0.08156185,-0.07342026,0.024755022,-0.0054721446,0.059377372,-0.012618774,-0.009005581,0.01687717,-0.006092756,-0.08790269,0.034801595,-0.05124715,0.068419024,-0.01781084,0.016522508,-0.040858373,-0.1171692,0.081238925,0.107046716,0.062481135,0.08433043,-0.0064193024,-0.013784358,0.031491116,-0.09065147,-0.08945047,0.0076955343,0.023811832,-0.044014715,0.015211588,0.041163906,-0.08491743,-0.020220218,-0.0842865,0.07955919,-0.022849157,-0.06333829,0.011012268,-0.08090441,-0.012328239,-0.010284797,-0.05570062,-0.03319412,-0.08564562,0.10870901,-0.024620794,0.06357592,0.0060957964,0.028761564,0.019522749,-0.053423047,0.044535518,-0.101184644,-0.021025559,-0.051280793,0.043158244,0.047683213,0.024700698,0.03003928,0.05524677,0.09429583,-0.004321834,0.054762132,0.026910229,-0.060649283,0.080605574,-0.030647784,0.0018654972,0.014644368,-0.037733663,0.0042302557,0.006506081,-0.058643322,-0.11046255,-0.07129785,-0.005083011,0.01809402,0.03654192,0.06616052,-0.039523434,-0.03825859,-0.0131794,-0.018929014,0.04193282,0.045982923,0.029637529,0.10331351,-9.322176e-34,-0.120737284,-0.028267946,-0.03504662,0.025024898,0.039556827,-0.053374697,-0.018104788,-0.0024014036,-0.029664809,-0.04952733,0.006185769,0.088042095,0.0147959255,-0.0452784,0.12534481,-0.054077905,-0.03507628,-0.10176302,0.07145578,-0.007210446,0.05397566,-0.05012597,0.034439296,0.079903424,0.0017730704,0.048836444,0.07953709,-0.028234012,-0.09599814,0.036736645,-0.011309395,0.02127415,-0.0009828513,-0.005038472,-0.037146177,0.06760428,0.018932996,-0.026942194,-0.0040586996,-0.006683331,-0.035130646,-0.04097324,-0.031579193,-0.02100134,-0.08600977,-0.01938416,0.03969276,0.05538276,0.059117306,0.040571403,-0.10343368,-0.034952324,0.027892342,-0.026099958,0.020945875,0.117713384,-0.04237959,0.04986036,0.0033648312,0.022116398,-0.026964875,0.054703716,-0.06338797,-0.027460162,-0.08730941,0.0034269805,0.016371721,-0.05441492,0.07718467,-0.026641002,-0.08795228,0.015863191,0.033264607,-0.033620466,0.10704754,-0.0032021797,-0.07426415,0.04792764,-0.032717872,0.04020324,-0.13547523,-0.017798584,-0.0022805615,0.008676607,0.1089745,0.02092957,0.07587164,0.03227909,0.033207756,0.05145689,-0.06081889,0.04240049,0.08390871,0.056372024,0.124561146,-1.8193657e-33,-0.0051417006,0.00030753273,0.124984056,0.064269036,0.03953662,0.06515155,0.05493412,-0.08021575,-0.05947713,-0.02865649,-0.054163106,-0.035818532,0.03923239,-0.011314312,-0.03103845,-0.016760813,-0.015739486,-0.04872654,-0.039529264,0.0028064754,-0.025219686,0.0388645,-0.049085926,-0.04427005,-0.057106793,-0.003363444,-0.008180412,-0.03206503,-0.073797144,0.0528339,-0.02473494,0.010285728,-0.0020483828,0.021219445,-0.116962604,0.025397092,0.001117645,0.09783573,-0.0076425043,0.046585422,0.05358029,0.02694988,0.015935577,0.06684708,-0.071262546,0.02202749,0.02212604,-0.00550307,0.011317609,-0.004079247,0.06639454,-0.024693891,-0.06114946,-0.028749628,0.03941111,-0.043145295,0.009816601,-0.038300473,-0.08376378,-0.013155675,0.036332726,0.0031445113,-0.015731424,0.019725958,0.058084913,0.0014535201,-0.082319,0.012464102,-0.0051266453,-0.02695429,-0.0018271544,0.061371874,0.01601739,-0.007039692,0.02655275,-0.06658635,-0.03265768,0.0760037,0.014607889,-0.022220101,0.019282749,-0.041358512,-0.017816266,-0.016301611,0.013417423,-0.050288603,-0.0044738017,-0.004015305,0.066920735,-0.02485372,0.046353344,0.14403223,-0.00615375,0.016651914,-0.014813815,-2.1453053e-08,-0.015459803,0.026758736,-0.118428275,-0.052432157,0.0016405765,-0.052135997,0.035129957,0.06601135,-0.087546825,0.034857567,0.040020816,0.01833704,0.025903637,0.013731899,0.009336434,0.05774375,0.014082309,0.16250338,-0.0029468588,0.07439392,0.015544733,0.00959853,-0.06721686,0.032640632,0.009896078,-0.035660777,0.015902033,0.0069526234,0.021854594,-0.05663038,-0.027550364,0.01580905,-0.034583196,0.0118068885,-0.005415424,6.319088e-05,-0.08413934,0.050478123,-0.005093276,0.014556656,0.026657648,-0.028673925,-0.09677451,-0.0072062043,-0.005293659,-0.019926848,-0.084884696,0.006930039,-0.033774517,0.106919706,-0.08747896,-0.045147143,0.030934975,0.046208933,0.10539745,0.023046544,0.03232866,-0.051538873,-0.06858816,-0.033291124,-0.03129776,0.012464028,0.072167106,-0.009327244} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.717044+00 2026-01-30 02:01:12.665387+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2263 google ChZDSUhNMG9nS0VJQ0FnSUR4aFBlVlZnEAE 1 t 2266 Go Karts Mar Menor unknown De 10 todo! de 10 todo! 5 2024-01-31 01:52:39.833374+00 pt v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "De 10 todo!"} {-0.08975097,0.046403512,0.01999941,-0.03479449,0.044369854,0.100285,0.0958762,0.07833317,-0.08176875,-0.022659404,0.032037083,-0.058961954,-0.040195424,0.0005602202,-0.060531072,-0.06634268,-0.012963774,0.09731142,-0.017796988,0.0052481964,0.035646316,-0.000266188,-0.034071457,0.06426145,-0.03828594,-0.026847988,-0.00015713187,0.0017164883,-0.06860119,-0.07356924,0.061871003,0.056591336,0.023467822,0.011389292,0.01908293,-0.07371596,0.043544423,-0.084953584,-6.318478e-05,0.04369815,-0.090148814,-0.025237268,-0.028130488,-0.09549151,0.04478252,-0.0031582327,-0.036359746,0.096443966,0.031797893,0.01170189,0.01991124,-0.014200626,-0.036833897,-0.023877596,0.031924043,0.022718806,0.029952152,-0.03770529,0.022322448,-0.048737388,-0.011075853,0.04409416,-0.059940405,0.05146735,-0.02890131,-0.0034184349,0.01793084,-0.063185975,-0.1367635,0.091065936,0.13581206,-0.058843598,0.051205155,-0.03679857,-0.03355828,-0.012262229,-0.040186442,-0.0330297,-0.07738687,-0.007656679,-0.0030880377,-0.04263905,0.009937,-0.052295584,-0.025973083,-0.026757054,0.048945658,0.04754607,-0.006659429,-0.02740655,-0.078837276,0.04286874,-0.086786725,0.0015661108,-0.04271833,0.019671546,-0.007566909,0.04098766,-0.06980463,0.07240294,0.05681314,0.09595857,0.039100412,0.057249308,0.036119472,0.026102383,0.036885172,0.00070003123,0.008107888,-0.023496471,0.021963812,-0.015299311,-0.0020151578,-0.024463128,0.021060718,-0.09530171,0.05761401,-0.07871395,-0.03760893,-0.031378977,0.06315145,-0.019467663,-0.0045944154,0.0017815806,-0.014188479,0.0009693237,0.043605298,-3.3333262e-33,-0.04495712,-0.03585297,0.004244658,0.04302913,0.030402211,-0.030463336,-0.100440554,0.029562794,-0.07755498,-0.04022859,-0.082656,-0.020430673,-0.021506803,0.044875324,0.04942096,0.04359068,0.019598009,0.009562482,0.07851853,-0.017638441,-0.039745703,0.0021112543,0.031584848,0.07560661,-0.014055947,0.061169498,-0.05321046,0.01714413,-0.036863793,0.024943704,0.009721501,0.017070616,0.04417468,0.024509056,0.04593666,-0.031141847,0.076094165,0.06713471,0.014115001,-0.028831305,0.080747254,-0.098396875,-0.022396054,-0.01877236,0.06079325,0.0006927353,0.10119355,0.0136999255,0.07932011,-0.07532903,-0.04275794,0.02046896,-0.06961199,0.017025255,0.0266075,-0.022295952,0.02062145,0.03263654,0.00055544754,0.018160798,0.056935806,-0.039168976,-0.070170745,-0.0113897165,-0.029759135,0.008961011,0.04744762,0.018326113,0.10637253,0.03132457,-0.10019606,0.015161142,0.017328836,0.0099446755,0.049392596,0.043249395,0.06337628,-0.0037550083,0.020346828,0.022191651,0.011496528,-0.0013733981,0.0002503215,0.027367642,0.12518324,0.08132347,-0.053286355,-0.030185107,-0.09367461,0.039734606,-0.012527458,0.001351577,0.067246355,-0.07074595,-0.0070552365,5.6910085e-34,-0.037771553,-0.0047597215,-0.06610946,0.012144495,-0.044734467,0.07562719,-0.032365616,0.008590143,0.030492267,-0.0355746,-0.07614917,-0.03368663,0.103545696,-0.095140204,-0.029131208,0.11236201,0.0070178825,-0.003281661,-0.06283221,-0.019274972,0.0023786777,0.09305951,0.030840313,-0.055367827,-0.041117538,0.04076103,0.0886825,0.00095258944,0.018667227,-0.0019194863,-0.042243525,-0.04864373,0.03244093,0.009937419,0.012349648,0.05525726,0.04547641,-0.0078003113,-0.08773285,0.07338186,-0.03792153,0.040355567,0.0037817606,-0.0022194062,-0.027982438,0.03469024,-0.06620229,-0.07371055,-0.15422492,0.039550073,0.09971759,-0.040114366,-0.021879429,-0.010171645,-0.03035857,-0.04358356,-0.010218908,-0.0022083,-0.03969836,0.0098892525,0.024562573,0.13509361,0.018404203,0.024868872,0.02245805,-0.0013078247,-0.01940825,0.08651188,-0.057465475,0.03610519,0.10084056,0.004724642,-0.0630506,0.012031935,-0.09956313,-0.10740127,-0.019406077,0.04859004,0.032624397,0.09766986,-0.056867335,-0.025420781,-0.030837554,-0.015221019,0.025964864,-0.033037435,-0.018579481,-0.012817903,0.06377426,0.054264594,0.039811123,0.065447904,0.04078543,-0.0027678255,0.016928833,-1.454992e-08,0.012796451,-0.043718584,-0.06609056,-0.017137911,0.11053942,-0.1134935,-0.0583538,-0.0132739395,-0.019335931,0.009672231,0.068050526,-0.013947523,-0.14483158,0.09365943,-0.0076128677,0.041680112,0.0027030958,0.017063927,0.014018437,-0.049044494,-0.04118023,0.022889948,-0.05728558,-0.08479503,0.0036806786,-0.020798044,-0.010693423,0.01048642,-0.008143651,-0.059023626,0.028561803,0.03621416,-0.12243339,-0.038355567,-0.01934455,0.012501963,-0.020537978,0.031006066,0.015483791,0.039798893,0.012747159,0.033960994,-0.0032109304,-0.021762485,-0.049870133,-0.052105825,-0.03387716,0.032332115,0.035328228,0.036828928,-0.037757516,0.07745906,0.029590243,0.0070512826,-0.00385058,0.024303053,0.1076947,-0.09212825,-0.02958558,0.09189345,0.0686526,0.09278533,0.002585563,-0.020121468} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.762736+00 2026-01-30 02:01:12.671211+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2265 google ChZDSUhNMG9nS0VJQ0FnSUM4eTV1QkhBEAE 1 t 2268 Go Karts Mar Menor unknown Sitio agradable con parking. Buenos karts sitio agradable con parking. buenos karts 5 2021-01-31 01:52:39.833374+00 en v5.1 E1.04 {A4.02,O1.02} V+ I2 CR-N {} {"E1.04": "Sitio agradable con parking. Buenos karts"} {-0.017745245,0.04269641,0.002160953,-0.020226032,-0.0019093542,0.032638554,0.07467044,0.072015695,0.026166476,0.04433055,0.06294741,0.008769864,-0.030952308,0.030803585,0.043534126,-0.008156044,0.029235821,0.06764991,0.025201079,-0.021349266,0.021920426,-0.028984796,-0.04970259,0.04808022,-0.105419345,0.037958127,0.024657287,0.022745037,0.030756334,-0.05443893,-0.062661536,0.084595315,0.0779042,-0.023885237,0.030207325,-0.06472235,0.064070776,-0.13288072,0.06481705,-0.06076015,-0.030307885,-0.043644987,0.039319955,-0.021479743,0.051115982,0.014768705,0.038898952,0.07169537,0.06762516,-0.010649263,0.04519369,-0.059117537,0.08114189,-0.0468574,-0.04821341,-0.043057516,-0.0148049,0.03737628,0.104416266,0.033561498,0.072903864,0.015832782,-0.10999304,0.027800718,-0.021542251,-0.05544567,-0.013066505,0.029289203,-0.003406973,0.096882015,0.083632804,-0.021223111,0.055465613,-0.028021485,-0.021276271,0.025030127,-0.029863795,0.012686587,-0.051844556,-0.11586385,0.021604175,0.010206117,0.014949235,-0.03637204,0.014753745,-0.019736098,-0.017984675,0.045392532,0.039950803,-0.014949668,-0.07237188,0.068153016,-0.103412785,-0.072942466,-0.0383821,-0.00017866936,-0.022701051,0.005988293,-0.032381855,0.074831985,0.080802806,0.12510267,0.041055243,0.05408698,-0.038556334,0.014774526,-0.044093784,-0.029750917,-0.034218255,0.088043705,-0.049660027,-0.027662741,0.0040566954,-0.026586393,-0.17224962,0.03267394,-0.024486566,-0.03013537,-0.014788373,-0.0053815655,0.032149285,0.041507646,-0.008230254,0.0042263763,0.0014009863,-0.13442986,0.027609045,-3.7574927e-34,-0.13714105,0.004444669,-0.012213066,0.0066861864,0.08234793,-0.049981706,-0.03967996,-0.07906992,-0.04866315,0.008343847,-0.016586965,-0.027570395,0.036877673,-0.07090339,0.13440399,0.049509004,0.022303386,-0.030304775,0.024831742,-0.012045542,-0.05605469,-0.024141831,-0.0061893594,0.017908493,0.024552952,0.05401677,0.06590522,-0.015007646,0.020780565,0.05566499,-0.00039997284,0.09944088,-0.001975334,0.04660338,-0.046791263,-0.032089528,-0.0073447833,-0.0072920974,-0.053942215,-0.03815142,0.020553673,-0.0048117484,-0.06612522,0.0016938839,0.015277581,0.04591544,0.078042656,-0.0046383273,0.009825407,0.0064580976,-0.06640657,0.011538031,-0.10547242,-0.011427544,-0.028749488,-0.02713576,-0.038982026,0.057405327,-0.060283415,0.008208703,0.03739917,0.091677785,0.0005955095,-0.04890099,-0.08207935,-0.03754393,0.0020566045,-0.028813697,0.08550043,0.055055,-0.0046398803,-0.012427284,-0.0063125794,0.039985538,-0.06947047,0.030024236,-0.031881403,0.07445683,-0.079040274,0.02515752,-0.09166001,-0.003783805,0.050208356,0.050877184,0.0017189494,-0.030580351,0.038124505,0.037335,-0.0621557,0.014788954,-0.04225411,0.048147388,-0.0043277536,-0.00029924937,-0.013366424,-1.0826042e-33,0.028532084,-0.016098153,0.025108203,0.070599,-0.12980695,0.049439967,-0.03307703,-0.044352774,-0.036594413,-0.023515372,-0.1096444,0.021399783,0.09165452,-0.0067587164,0.00013312552,0.06016479,0.04160301,-0.023068504,-0.10039614,-0.011213389,0.042849727,0.091317214,0.07336002,0.008816791,-0.09352796,-0.014257343,-0.00088048604,0.027341012,-0.10510439,0.029978016,0.006490398,-0.0982602,-0.07571996,-0.0023875283,-0.026441589,-0.01473562,0.07438376,0.04659747,-0.021063333,0.08034834,0.02106097,0.042749967,0.020701872,-0.04435419,-0.008388815,-0.07734258,-0.046185695,-0.06552626,-0.0004370392,-0.10204216,0.06423099,-0.024181668,-0.040015876,-0.016746527,0.024437772,-0.0013185962,0.0067644315,-0.02620679,-0.094859324,-0.017606886,0.068359055,0.047229942,-0.11055157,0.008907199,0.05961699,-0.061457682,-0.06873777,-0.024705293,0.026544679,0.0773558,0.0058936193,0.09102141,-0.023804242,0.101591274,-0.08684858,0.06359016,0.07592026,0.06629942,0.08767,-0.018570662,-0.035605527,-0.012292679,0.018564435,0.03115829,0.02538722,-0.022773638,-0.05518073,-0.020762434,0.07351579,-0.003641936,0.0030400245,0.047820758,0.00088771165,0.04252107,-0.09129741,-1.6439325e-08,-0.016893048,-0.036810998,-0.05594031,0.053374834,-0.028997278,-0.034033153,-0.0692004,0.045276232,0.022794195,0.066657536,-0.0655578,-0.05930004,-0.021789286,0.08762061,-0.046061017,0.07063728,0.021297568,0.04857502,-0.0396435,-0.036480732,0.045267887,0.021362001,-0.009461412,0.047685936,-0.007371512,-0.050939884,0.006443279,0.003463732,0.023788536,-0.011626302,-0.05066804,0.0057730163,0.020540135,-0.07986079,0.025731279,0.012889581,-0.03781933,0.027512915,-0.00057443435,0.061547704,0.014336921,-0.060514834,-0.09564537,-0.007548673,0.02740148,-0.0065151397,0.0007747772,0.029197002,-0.095179334,-0.011556432,-0.0456936,0.0052276514,0.068431914,0.0781254,0.07487725,-0.02089641,0.04033906,-0.02687028,0.017224371,0.01759374,0.018156692,0.022448923,-0.04828068,0.01895963} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.789941+00 2026-01-30 02:01:12.679189+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2232 google ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE 1 t 2235 Go Karts Mar Menor unknown A sacar alguna pega, la pista bacheada, pero genial a sacar alguna pega, la pista bacheada, pero genial 5 2023-01-31 01:52:39.833374+00 ca v5.1 O1.03 {} V- I1 CR-N {} {"O1.03": "A sacar alguna pega, la pista bacheada", "V4.03": "pero genial"} {-0.01915577,0.029998204,-0.06769162,-0.02306341,-0.1816533,0.047732774,-0.038367912,0.02925941,0.026192686,0.042077307,0.06357783,-0.05038196,-0.02278161,-0.08304074,-0.045022726,0.06589913,-0.056030143,-0.0017851179,0.059465606,0.037488904,-0.026126206,-0.060430508,-0.08509699,0.08518654,-0.08684822,0.05395741,0.020060778,0.016132463,-0.01518262,-0.02935251,0.016110368,0.07367311,0.0768134,-0.0040499605,6.5200344e-05,0.012511542,0.010412534,-0.05293036,0.02262721,0.06110049,0.043242168,-0.0055624726,-0.03420815,-0.041203637,0.062630676,-0.04310213,-0.044255406,0.0886954,0.0051526576,-0.0058046402,-0.08045637,-0.04425715,-0.01931198,0.042840034,-0.07203761,-0.07854169,0.0972869,-0.010361464,0.0465799,0.06530148,-0.0587708,0.045093942,-0.03722959,-0.02407121,0.029831348,-0.02823925,-0.036438778,-0.066358685,-0.11514714,0.089180745,0.021895593,-0.021632658,0.043064147,0.038564134,-0.04801199,-0.020567955,-0.015303674,-0.016005807,0.01289766,-0.056143276,-0.056734897,-0.03785877,-0.049640812,-0.054889638,-0.079552315,0.018999916,0.03848845,-0.0277656,0.003209349,-0.021715833,-0.02306762,0.04131117,-0.057243653,-0.031815317,0.022194747,0.05881628,-0.01403866,-0.0775682,0.03168887,0.0038389813,0.076036334,0.012548029,-0.0074305576,-0.04863304,-0.07475894,0.0014435482,-0.0021466708,-0.03857922,-0.022957016,0.0073802583,-0.041738242,-0.038276616,-0.0028339603,-0.010485001,-0.12620553,9.792488e-06,0.00084618555,-0.10119716,0.02031915,-0.048932403,0.0011853308,-0.04232687,0.0027476659,-0.006345983,0.00037196957,-0.08765513,-0.03959343,2.9034463e-33,-0.017416187,-0.11042997,0.012485053,-0.015045687,0.0650343,-0.0058775465,-0.048233103,-0.12660037,0.016487889,-0.042153433,0.017188465,0.004015772,-0.06683111,0.038194668,0.06642819,0.08998358,0.017555289,-0.01952963,0.026791321,-0.015692998,-0.06616295,0.03811947,0.016583255,-0.058808047,0.04382835,0.12830259,0.040388573,-0.12034284,-0.12961517,0.03112733,0.038552407,0.051479843,-0.006208176,-0.08725941,0.0037239664,-0.05658202,0.02730826,-0.005463472,-0.09509483,0.041798517,0.051965993,0.025375659,0.048456136,0.067390695,-0.010342947,0.04315421,0.03206183,0.0148327695,0.07998137,0.03240302,-0.014433727,-0.020585727,-0.06056982,-0.0816062,0.017940013,-0.009285824,-0.11271929,0.06879425,0.008409512,-0.04881841,0.08847702,0.032710638,0.034683455,-0.022701155,-0.009188307,-0.06342985,0.00037088635,0.06181624,0.12486183,-0.023117073,-0.037194397,-0.08766616,0.053231463,0.08015329,-0.089145444,0.0141863935,0.08479909,0.036424886,-0.0011465872,-0.023162713,-0.012586921,0.07486472,0.048726015,-0.05681882,0.013229151,0.07989951,0.030385371,-0.04154162,-0.0764318,0.044379737,-0.009185639,0.09451205,0.034439128,-0.015622105,0.0075284564,-5.5493538e-33,0.0043385467,-0.012771297,-0.02159136,0.0022152069,0.03579937,-0.08502122,-0.09687346,-0.051658913,0.05440666,0.042591758,-0.10354298,-0.07568689,0.14867221,-0.03717468,0.025229566,0.042421933,0.113152534,0.030049797,-0.0539715,-0.064636365,-0.012979097,0.07854589,0.05556239,0.036126498,-0.01018829,-0.0649009,-0.010033885,0.028336044,-0.074750885,-0.01970037,0.0527276,-0.019347165,0.0060890615,0.002074092,-0.061381347,-0.02048563,0.104015656,0.06545696,0.085169114,0.07400195,-0.0050127753,0.019029789,0.027710304,0.026055101,0.00715902,-0.005385194,0.006676434,0.0070527303,-0.048549693,-0.01832573,0.046906658,-0.033277307,0.03322311,-0.03586009,0.07840433,-0.01592655,-0.0075343116,-0.048113227,-0.022456134,0.010970995,0.04757068,0.017778222,-0.02797837,0.02626282,0.02353596,0.05716694,-0.016199155,-0.047975134,-0.028196946,0.039188046,0.05939745,-0.010928391,-0.109568074,0.07707449,-0.062430173,0.045761615,-0.077162035,0.007874677,-0.0145928105,-0.0062126806,-0.050181996,-0.004829826,-0.009574112,-0.03716907,-0.018191554,-0.004277952,-0.0018291428,-0.054696053,-0.013734643,0.051393505,0.008962461,-0.024641056,-0.072672375,-0.03701372,-0.018567795,-2.9296956e-08,0.025871191,-0.0384888,-0.06958189,0.005941054,0.054880206,-0.046094336,0.005161524,-0.022445422,-0.00086460036,0.013224672,-0.018125575,-0.0126571655,0.045237716,0.083283596,0.027984513,0.035156645,0.096522495,0.025533484,-0.040870752,0.021761246,0.054891925,0.020030998,-0.028908586,-0.054271765,-0.07400014,0.024360448,-0.018866392,0.006284875,-0.030939056,0.042042397,0.05110326,0.08139817,-0.010795214,-0.12179431,0.005148787,0.044203915,0.024722185,0.02570508,0.0063819787,-0.0011499774,0.10864842,0.034354396,0.0584309,-0.013854321,-0.017683325,-0.014749467,0.006106782,0.0007652779,0.017052455,0.037789922,-0.012918968,-0.02354191,0.07317321,0.020189093,0.06464424,-0.045694165,0.03756023,0.025675576,0.02571476,0.012704539,0.116812125,0.030709231,0.07381407,0.005885347} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.728487+00 2026-01-30 02:01:12.55539+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2262 google ChdDSUhNMG9nS0VJQ0FnSUNVcGFUMWhnRRAB 1 t 2265 Go Karts Mar Menor unknown Echt een aanrader lang parcour toffe karts echt een aanrader lang parcour toffe karts 5 2020-02-01 01:52:39.833374+00 nl v5.1 O1.02 {E1.03} V+ I3 CR-N {} {"O1.02": "Echt een aanrader lang parcour toffe karts"} {-0.089044265,0.0088518495,0.03649116,0.023457365,-0.09367302,0.047062315,0.03534587,0.011903461,0.050854802,-0.037687577,0.032683328,-0.029853426,-0.026874507,-0.036228657,-0.0259312,-0.11951113,-0.061812636,0.04534172,-0.0045013083,-0.11336276,-0.07854142,-0.043431465,0.059487384,0.064749174,-0.015355907,-0.035544205,0.050651565,-0.0026058198,0.07400205,-0.049058408,0.04484439,0.008304239,-0.047443375,0.01023365,-0.013506392,0.03261791,-0.033245906,-0.06252869,0.009373485,0.005765473,-0.06283759,-0.07528403,-0.052307084,-0.10073147,0.065321565,0.010058804,-0.10725707,0.021171294,-0.0793415,0.06258864,-0.050355043,-0.10502891,0.05388469,-0.09856607,0.03118174,-0.12965646,-0.054924116,0.06781559,-0.008767591,0.043110292,0.058503974,-0.031115036,-0.0724282,0.06410729,-0.07569554,-0.008564311,0.025251236,0.030204596,-0.08740209,0.08804171,0.0021783647,-0.08950924,0.0032002926,0.0577345,0.026042234,-0.03779935,-0.00033259566,0.019634027,-0.02487184,-0.052979022,0.12122988,-0.019863298,-0.051157054,0.04310011,-0.017798964,-0.041475378,0.021120284,0.03543179,0.031438373,-0.022818824,-0.017831234,-0.014992765,-0.040170975,0.008215477,-0.019454222,0.006447407,-0.03219912,0.06253554,-9.424145e-06,0.025089243,0.01960408,-0.015051645,0.033999324,0.043881938,-0.057761166,-0.027668485,0.007963632,-0.08157736,0.111874305,0.014994844,-0.0108406395,-0.026365899,-0.038405452,-0.06583331,-0.039369773,-0.03438793,-0.029184423,-0.052994136,0.036634453,-0.00084588723,-0.014584564,0.009684818,0.01764143,0.02594003,0.016336968,-0.08748977,0.090791814,3.2903464e-33,-0.053678043,-0.055673316,-0.019824076,0.020376505,0.014958531,-0.09719364,-0.014273924,-0.07205665,-0.05464378,-0.044181596,-0.0069113467,-0.020690573,-0.051778115,0.0068131573,0.07063772,0.022389963,-0.03337709,-0.012356075,-0.02055236,0.008083425,-0.00825839,-0.0420063,0.0009129299,0.07902855,-0.043083247,-0.048702776,0.04714518,-0.02030403,-0.06090228,0.039344728,0.048040595,-0.05120572,-0.041976802,0.022824932,-0.12665069,-0.03229997,0.06606538,0.043569677,0.016692821,-0.020184878,0.008522217,-0.00081246736,-0.01547493,0.02129233,-0.034122482,0.0839491,0.054069977,0.003023308,-0.003935991,0.076501235,-0.07536921,-0.041087914,0.019877266,0.018001528,0.056579746,0.09030138,-0.004510025,0.051881503,0.006424475,-0.034466527,0.0004429336,0.04307196,0.02599546,-0.09246706,0.017304843,-0.01606305,0.016398685,-0.06907683,0.017713934,-0.03219029,-0.027267603,-0.011010961,0.05125647,0.031329025,0.033193383,0.033479903,-0.04627664,0.08158439,-0.075086266,0.061240345,-0.07401332,-0.05703054,-0.0053622746,0.047250453,0.025558459,-0.0027890448,0.022024391,-0.055411883,0.09943788,0.077281125,-0.021489425,0.028201021,-0.011908492,0.021920774,0.054877546,-4.13592e-33,0.11354623,0.046778705,-0.022402408,0.123329856,-0.032935455,0.02278498,0.0062207524,0.04978173,0.05512864,0.012373614,0.031836387,0.010809443,0.08756269,-0.04331126,-0.0040041655,0.050106872,0.08877758,0.08822784,-0.0052793757,-0.0025236246,-0.06272018,0.029993705,-0.022693014,0.05858058,-0.075146824,0.061895758,0.07540061,0.0384993,-0.14500208,-0.013610264,0.044851683,-0.102202125,0.015555306,0.01267527,-0.014800478,-0.015925825,0.08783454,0.05250784,-0.09659576,0.033530846,0.045941748,0.03180822,-0.05365745,-0.011291008,0.03564273,-0.072339855,-0.06110881,-0.037654042,-0.028974023,-0.011457997,0.10736257,0.04575272,0.02896569,-0.02363126,0.020001132,0.0008126381,0.017981859,-0.06379509,-0.041504472,0.011199494,0.036791082,0.07200513,0.010805301,-0.0136064235,0.014194879,-0.049085688,-0.12764528,-0.02007411,0.041110393,-0.031285826,0.038052037,-0.020973166,0.03062832,0.053650677,-0.014959963,-0.028629096,0.031485856,0.04642141,-0.008290524,-0.05647561,-0.031339463,0.021982769,0.0057613384,0.015935583,0.0075735203,0.028963666,-0.02631204,-0.043060783,0.07126755,0.0004362927,0.05141235,0.09395768,0.01073246,0.09489612,0.011399642,-2.2718039e-08,0.00064768177,-0.0346087,-0.05132895,0.03178628,-0.00204647,-0.09258889,0.024423717,0.025605844,-0.064590715,0.066416524,-0.027167177,0.10798253,-0.016102452,0.11492916,0.014753161,0.02125705,0.022313362,0.12762982,-0.033177104,0.02254611,0.05800327,-0.049643554,0.021697743,0.009638642,0.011300058,0.011402214,0.0029970896,-0.03911687,0.09202074,-0.1221402,-0.04344352,0.06631275,-0.017536594,0.047459967,-0.051067818,0.031810377,-0.042911377,0.068225004,-0.050701022,0.11712142,-0.012668592,-0.07427933,0.02932228,-0.034833774,-0.05799065,-0.0037259888,-0.037475195,0.0005650726,0.025209699,0.0188807,-0.1107474,0.0029844039,0.011825749,0.04007353,0.027711777,-0.043490138,-0.020242233,0.0030356722,-0.030962592,-0.04564111,0.020293016,0.06610848,0.032696147,-0.067213535} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.743984+00 2026-01-30 02:01:12.668124+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2233 google ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB 1 t 2236 Go Karts Mar Menor unknown Buena pista. Y precios que no son caros buena pista. y precios que no son caros 5 2021-01-31 01:52:39.833374+00 es v5.1 V1.01 {} V+ I2 CR-N {} {"O2.03": "Buena pista.", "V1.01": "Y precios que no son caros"} {-0.026214572,0.03941354,-0.018073685,-0.065357886,-0.09046244,-0.001108085,0.04680596,0.026761789,0.008602278,0.033540986,0.080799565,-0.025553985,-0.045679886,0.00060133665,-0.007096105,-0.0046672197,0.02075647,-0.008697609,0.05631223,0.032064624,0.015032164,-0.046875313,-0.07884072,0.14500359,-0.071376495,-0.005111645,0.04226336,-0.010459651,-0.024409892,-0.040134184,-0.05084848,0.020383492,0.12444156,0.02577269,0.009158529,-0.061185244,0.1192262,-0.034866832,-0.030340422,0.052657362,-0.11627095,-0.009216948,-0.0289435,0.00647599,0.07773444,-0.033045307,0.03102272,0.043863893,0.06856886,-0.038103983,-0.06441507,-0.009106671,-0.022525381,0.003191257,-0.025605766,0.033680536,0.00038043826,-0.029100267,0.0052874195,0.05068479,-0.05784714,0.011090975,-0.073414594,0.00071543735,0.03820534,0.014021948,0.012656728,-0.012396063,-0.07796203,0.07688735,0.121649235,-0.070441514,-0.018720042,0.034363426,-0.05050706,0.07829381,-0.009738958,0.025403844,-0.055867694,-0.0453574,0.007970071,-0.0020246122,-0.07739109,0.013749304,0.0024438968,0.048825152,-0.007872389,-0.041321155,0.06429475,0.046329714,-0.06811222,0.051300008,-0.032365505,-0.0106765,-0.05252839,0.013010922,0.041990876,-0.07370137,-0.021930635,0.043114707,0.13079727,0.021885455,0.061663073,-0.020203516,-0.075556286,0.054174908,0.05212443,0.0071820756,0.035160664,0.055240322,-0.05197446,-0.03895186,-0.072657615,-0.03038298,-0.15644161,0.033391554,0.03652172,-0.033596367,-0.03659251,-0.08916857,0.042542536,0.04752338,-0.042353157,0.040749185,-0.055870216,-0.07775501,-0.0343699,3.3549935e-35,-0.04050907,-0.026817458,0.011289997,0.026928572,-0.042312823,0.057384163,0.007728664,-0.08161421,-0.030521179,-0.029658485,-0.05411126,0.026422348,-0.008094328,-0.03532985,0.026814487,0.074946724,-0.003600233,-0.02256639,0.07065211,0.024853446,-0.095975846,0.038144633,-0.03935502,0.0009818593,0.04165152,0.053342037,-0.08154391,-0.11433198,-0.06836737,0.046680424,-0.038287498,0.08947523,0.055332545,0.0045372467,-0.019494578,-0.038880207,0.05950419,-0.026891246,-0.044038393,0.018748645,-0.0042093415,0.0056596505,0.0062451074,-0.019912088,-0.022535637,-0.07326536,0.02526505,0.06148157,0.0023380038,0.016130848,-0.02337695,-0.07291095,-0.08498873,0.00047912027,0.013714685,0.013443251,-0.094403274,0.03526058,-0.05261608,-0.06069969,0.049637143,0.026339985,0.056917954,-0.0006667267,-0.11953909,-0.01994784,-0.0022565657,0.075337194,0.14968933,0.041336387,-0.0356777,-0.06433933,-0.02370827,-0.0087725455,0.043963786,-0.0077813827,0.0045064487,0.0643939,-0.023389066,0.055088338,-0.04029503,0.0110336505,0.061762735,0.04776657,0.08216647,0.113893926,0.10875507,0.04747228,-0.057330728,0.07917635,-0.03828526,0.07323926,0.07651214,-0.0024553915,0.019453533,-2.1424415e-33,0.015478818,-0.010957824,0.055197533,-0.0016402297,-0.046468474,-0.01394728,0.016034301,-0.07171778,-0.0027264773,-0.06380707,-0.0508916,-0.13175781,0.13957866,-0.01727905,0.007548082,0.068973556,0.0242115,-0.05056714,-0.09288403,-0.019241663,-0.042724494,0.040327244,0.024918392,0.09441831,0.005090166,-0.11528289,0.019434415,0.09464856,-0.051185142,-0.029434549,0.020378733,-0.03740216,-0.041446023,0.038489502,-0.011080624,0.091440536,0.010784184,0.09531091,0.035606608,0.03919462,-0.032381937,-0.010574702,-0.00085863087,-0.0039017105,-0.0501181,0.042731468,0.016599184,-0.0502579,-0.02345204,0.0012154465,0.036214247,-0.002437041,-0.018451106,0.058712296,0.054874912,-0.0425876,-0.0037558137,-0.0038771322,-0.08512415,0.013722529,0.09180617,-0.024726145,-0.08894509,-0.0051317257,0.03139252,-0.027208375,-0.045355372,0.0135252625,0.028679533,0.0030428956,0.09266054,-0.0010567941,-0.04049532,0.04003714,-0.080664545,-0.0009180875,-0.09724617,0.022809122,0.06425001,-0.023758888,-0.012076138,0.030528398,-0.021188661,-0.011205548,-0.009743733,-0.03825878,0.001336357,-0.017862795,0.037265427,0.05794768,0.025627717,0.039638367,-0.007722159,-0.08061369,-0.047917336,-1.873421e-08,0.05074091,-0.03351415,0.03811387,0.014120687,0.020184344,-0.03450932,-0.010395657,0.02610784,0.025104634,0.036521044,0.00020269341,-0.013805952,0.0054097474,-0.022212876,0.009675895,0.026443683,0.074589424,0.08043561,-0.030548623,-0.05616678,0.013562971,0.03792312,-0.063592575,-0.03754608,-0.020723363,-0.010881529,0.0053787054,0.0022142397,-0.057547566,0.0064560645,0.018027568,-0.022638015,-0.020005425,-0.13178895,-0.0022343257,-0.02120576,-0.0010931904,0.029291704,0.030521836,-0.09396336,0.050329108,0.03953068,-0.10060148,-0.03387124,-0.008544982,-0.058384873,-0.0068894834,-0.012116529,-0.011062986,0.081298485,-0.030385053,0.047779337,0.046337567,0.019389097,0.0978299,-0.043021113,0.04379268,0.04879372,-0.034810837,0.0060033114,0.049685534,0.10303943,0.07573154,-0.053271864} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.753148+00 2026-01-30 02:01:12.560288+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2234 google ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB 1 t 2237 Go Karts Mar Menor unknown Mejor circuito de la Costa. Rápidos y limpios mejor circuito de la costa. rápidos y limpios 5 2023-01-31 01:52:39.833374+00 es v5.1 O2.03 {} V+ I3 CR-B {} {"J1.01": "Rápidos y limpios", "O2.03": "Mejor circuito de la Costa."} {-0.033309113,0.0503039,0.0033002384,-0.022974247,-0.022065729,-0.0020686246,0.03287642,0.1271078,0.018732602,0.06354913,0.09897601,-0.08356042,0.026046876,0.011788508,0.0068409625,-0.010705772,-0.040845472,0.009656275,0.051297486,0.005975303,0.07841969,-0.05396208,-0.12762277,0.032073062,-0.108242616,0.0001925827,0.032393526,0.023698388,-0.037212417,-0.124461435,-0.08448804,0.06475651,0.08296239,-0.011701134,-0.036943097,0.05441062,0.042010542,-0.08644568,-0.008182293,0.08508863,-0.123224825,-0.07983531,0.0819849,-0.018975666,0.0065649804,-0.054168288,0.059852872,0.03891412,0.019155022,-0.07108299,-0.035981666,-0.02142211,0.049116623,0.013023329,-0.04287453,0.025549576,-0.017283065,0.049468275,0.08197208,0.023811636,0.09616296,-0.0087907445,0.02352327,0.033868026,-0.026723897,-0.03750911,0.025614478,0.0016712421,-0.03542386,0.021158524,0.08206384,-0.03561827,0.0024602285,-0.043534182,0.027993253,-0.015208527,-0.04673289,0.03825652,-0.01158476,-0.078428164,0.0043607024,-0.080626614,-0.08121981,-0.06357812,-0.009121634,0.044758987,0.033961087,-0.030562522,0.01349733,-0.024725126,-0.014885579,0.010836897,-0.04319546,-0.003032366,-0.035985768,-0.0077206334,0.04592398,-0.0114759365,0.011287962,0.04875043,0.08449317,0.015419097,0.030339755,0.012090779,-0.05553024,0.014794971,-0.015224983,0.03684568,0.040740844,0.010687906,-0.10252475,0.09298254,-0.09051087,0.025185078,-0.071011566,0.020576993,-0.011311021,-0.060684204,0.0022789766,-0.0315314,0.05163144,-0.024407133,-0.06195066,0.0077322107,-0.005378438,-0.014606379,0.06952699,1.326409e-33,-0.028697867,-0.01723065,-0.03836201,-0.010944094,-0.028588874,-0.010620428,-0.035138745,0.011694154,-0.06304776,0.015146052,-0.044894975,0.04129449,0.053250052,0.056081172,0.07149539,-0.034277216,-0.008333451,-0.0737925,0.06197282,-0.0051304535,-0.04937723,-0.012518615,0.029834347,-0.007677145,0.046759762,0.07622324,0.020987077,-0.09300365,-0.08555584,0.041784845,-0.01352348,0.03229083,-0.014772132,0.014324058,-0.011859883,-0.03915494,0.054708097,0.018964387,-0.0010679298,-0.03646121,-0.0008134141,-0.004916002,-0.044997036,-0.0022659663,0.048445944,-0.002087368,0.023340339,0.07021612,0.14031205,0.02560104,-0.043150313,0.0023081547,-0.04138552,-0.05696553,0.04934187,0.035453323,-0.08006978,0.06391843,-0.033846665,0.10624287,-0.007448523,0.067599475,-0.024274964,0.00028977782,-0.011880141,0.06492808,0.045853205,-0.063370354,0.12928326,-0.04875038,-0.08192091,-0.06457013,0.044807978,0.022270823,-0.056108024,0.016582739,-0.017089546,0.05731546,-0.020963969,0.011016885,-0.10535175,0.03773632,0.0068990085,0.021552091,0.051531687,0.14508358,0.05646099,0.008475061,-0.014142643,0.095126376,-0.084978,0.04803448,0.035757635,-0.019716812,0.019563418,-3.0066907e-33,0.025615701,-0.06203912,0.049631607,0.03782651,0.0055386005,0.026447687,-0.06109359,-0.011235713,-0.08608674,-0.031524826,-0.058513384,-0.067510836,0.031844452,-0.0322395,-0.0056916038,0.026338924,0.031072937,-0.09305975,-0.06952259,0.011158988,0.043777224,0.04194302,-0.0031439275,0.007994274,-0.11808881,0.0025625487,-0.02154899,0.04690816,-0.117282726,0.014513831,-0.0081156315,0.008182214,-0.042177495,0.069529295,-0.021555306,0.034633677,-0.05813884,0.07458685,0.017388541,0.024851292,0.0010133239,0.02646725,0.03028934,0.022076579,-0.059983626,0.043956768,-0.04549625,-0.074195966,-0.07315591,0.0024629782,0.044120237,-0.099177174,-0.058616146,-0.03970156,0.04675757,-0.018537007,-0.06668462,-0.07928196,-0.08918454,-0.032360587,0.06751283,-0.012171745,-0.05235848,-0.0015865316,0.108263105,0.029598473,-0.020417368,-0.048332736,0.08140993,0.06028906,0.12664205,0.024119148,-0.022155069,0.022631003,-0.032267537,-0.03643294,-0.15803352,-0.0011573778,-0.010509615,-0.013327443,-0.013434018,-0.002159972,-0.008789043,-0.021932743,-0.041705575,0.0111221215,0.00052288926,-0.011134819,0.09313466,-0.027603757,0.0029422443,0.098547325,-0.085349075,-0.03996098,0.019662935,-2.334543e-08,0.053993173,-0.01808814,-0.055459995,0.032330606,0.018847823,-0.061912645,0.018128235,-0.026632702,-0.05098432,0.08674755,0.0026780732,-0.05914594,0.062331136,0.027772991,0.003336406,0.00798078,0.071444556,0.14995995,-0.034881018,-0.021368975,0.030604318,0.029049067,0.00929017,-0.0243452,0.060460325,-0.034183715,0.021513693,0.018808963,-0.021468269,-0.01534064,-0.038416132,-0.011742115,-0.056981053,-0.062183846,0.038675178,0.037201926,-0.023463018,-0.011877458,0.037049778,-0.060143843,0.03870723,0.0387274,-0.058111258,0.036348592,0.039154347,-0.08348063,-0.037366822,-0.008385293,0.014732443,0.047614884,-0.08280946,-0.023589868,0.031551436,0.06738798,0.0471198,0.021907603,-0.020775542,0.0010361669,-0.085941635,0.059619907,0.013542919,0.03562188,0.02112251,-0.08938899} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.771084+00 2026-01-30 02:01:12.563269+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2266 google ChdDSUhNMG9nS0VJQ0FnSUN3Mk4tTWl3RRAB 1 t 2269 Go Karts Mar Menor unknown un circuito increible y sus servicios tambien un circuito increible y sus servicios tambien 5 2016-02-02 01:52:39.833374+00 es v5.1 O1.02 {V4.01} V+ I3 CR-N {} {"O1.02": "un circuito increible y sus servicios tambien"} {-0.09172586,0.038706016,-0.011359814,-0.038624726,-0.057694416,0.00966984,0.05130948,0.050757673,0.04273998,-0.0067500477,0.104983814,0.019498646,0.01642158,0.0376937,-0.04610499,-0.039522633,-0.025789281,0.012332427,0.016675733,0.022228198,0.13996579,-0.023730729,-0.07798427,0.066728085,-0.058202066,0.0601161,-0.018272998,0.057915386,-0.07481238,-0.09634675,-0.030822104,0.04494022,-0.037590325,-0.07688851,-0.015619966,0.0033098403,0.03081795,-0.059918474,0.038219906,-0.0006086504,-0.13066624,-0.07600764,-0.017778374,-0.06730108,0.06319879,-0.038331587,-0.005856374,0.0067401836,0.06503961,-0.0446593,-0.040976424,-0.054385655,0.10210077,0.030185621,-0.019309921,-0.016705977,-0.034888916,0.02949192,0.014629324,-0.067944326,0.014558997,0.07396227,0.022732517,0.026133684,0.057955183,0.007302172,0.023111364,-0.03208062,-0.0078884475,0.06995519,0.12011044,-0.097765826,0.074096404,0.03697799,0.02166677,0.03738946,-0.0030993733,0.038819656,0.024516404,-0.020960586,-0.0067728236,-0.054139838,-0.03177435,0.060815163,0.011084425,-0.003185654,-0.019902106,-0.030393919,0.016414044,-0.013688422,-0.050751638,-0.025042655,-0.011483936,-0.025154477,0.03108042,-0.09319179,-0.007673664,-0.01898563,-0.042354167,0.06774581,0.03862816,0.041363876,0.07193664,0.09416745,0.0071715117,0.042253856,0.016265366,-0.024638163,-0.0050045736,-0.011307153,-0.07417087,0.014287126,-0.08688435,0.019605046,0.006111968,-0.0069656805,0.008859531,-0.02785652,-0.02895757,-0.08334968,0.05947131,0.03206347,-0.06870842,0.018669996,-0.06249159,0.031340305,0.128484,1.808049e-33,-0.04388475,-0.05089528,0.058611546,0.0056703244,0.043195724,0.00038141175,-0.043942098,0.01885331,-0.018046578,0.009424207,-0.08391201,0.087173544,-0.0073038344,-0.018199183,0.085860975,-0.06979272,0.08956817,-0.082678035,0.06532551,-0.038874757,0.021446012,-0.015084907,0.019367361,0.018933192,-0.032409225,-0.014167024,-0.021650514,-0.03860137,-0.034808066,0.027204938,0.060204938,0.025558881,-0.00794811,-0.029967846,-0.04433116,-0.02768187,0.026835714,-0.0005326028,-0.029331869,-0.012297441,-0.012967433,-0.0063597015,0.014499133,0.027550241,0.045885067,-0.021536684,0.0064334525,0.043814152,0.09132313,0.052368373,-0.051288735,-0.070178546,-0.06883403,-0.074206464,0.01264623,0.041108824,0.0016148823,0.062149055,-0.02262629,-0.032502186,0.042427283,-0.0067444034,0.028702779,-0.01221987,-0.017942484,0.019786702,0.041899092,-0.024042979,0.037642032,-0.03222724,-0.1441928,0.0015636093,-0.009784377,0.054970555,-0.022027852,0.0121920705,-0.030873787,-0.04955784,-0.04450937,0.01689927,-0.062326815,-0.062962145,-0.0105559705,0.056790125,0.06636699,0.104189724,-0.006946143,0.039017826,-0.0072665117,0.116704315,-0.018426953,0.08213805,0.042535886,-0.007835429,0.039601546,-4.6798113e-33,-0.054663695,-0.036871932,0.047926765,0.024334133,-0.034165755,0.03214345,-0.046318777,0.016467048,-0.044678204,0.013618578,-0.043921337,-0.040472124,0.108856246,-0.04574549,-0.054922346,0.096243724,-0.09720134,-0.039010018,-0.0576216,0.041759335,-0.0033601252,0.17794122,0.06651873,-0.036075495,-0.050398763,0.023228385,-0.009995078,0.09124829,-0.06954586,0.0072489735,0.039657354,-0.011678477,-0.061853092,0.06769102,-0.023993492,0.043443248,0.0520534,-0.011028132,-0.001129506,0.009993775,-0.035196394,0.030701622,-0.013535977,0.052234884,-0.025203284,-0.0020805758,-0.03093579,-0.0654096,0.032061636,0.02431416,-0.010364024,-0.037750848,-0.030918248,0.028755823,0.02047696,-0.01612045,-0.052326772,-0.043841064,-0.07243769,-0.03461666,0.117508575,0.0359046,-0.07032383,0.01327057,0.111132726,-0.027247038,-0.015645998,0.09362141,0.13348241,-0.040147003,0.07819023,0.046202175,-0.034052063,-0.10159062,0.028054861,-0.033272978,-0.1917297,-0.024179794,-0.03695025,-0.08100134,0.017666971,-0.030959899,-0.046820123,-0.08089156,-0.038962252,-0.059687484,0.06378894,0.035211217,-0.0027462337,-0.012135514,-0.006315193,0.03264048,-0.09230133,0.030455353,-0.012478209,-2.2385384e-08,0.01581131,-0.007688503,0.00019227143,-0.0057335603,0.08905467,-0.10188016,-0.013056907,-0.056959532,0.0069020935,0.0384489,-0.045835577,-0.0009328005,-0.019779382,0.04292373,-0.017232157,0.00049167086,0.016587956,0.13426188,-0.018762553,-0.043380518,0.06598593,-0.065630175,-0.049178038,0.006559627,0.104320616,0.010693017,-0.018590044,0.012845335,-0.011716662,0.027788058,-0.03156733,-0.028968096,-0.02059384,-0.06386778,-0.04885721,0.02934336,-0.014346889,-0.017695688,-0.021453997,-0.09005425,0.0020734335,0.015337135,-0.037138797,0.05796581,-0.030224333,-0.025760045,0.006769078,0.051370334,-0.016976368,0.018109595,-0.058017306,-0.06183043,0.049721204,0.051226746,0.017001806,0.0065060845,0.053996067,0.031780817,-0.050788585,0.03748108,0.042726994,0.025482489,0.01564607,-0.13407055} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.806782+00 2026-01-30 02:01:12.682316+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2267 google ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE 1 t 2270 Go Karts Mar Menor unknown Buenos precios y buena atención. buenos precios y buena atención. 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {} V+ I2 CR-N {} {"P3.01": "buena atención", "V1.01": "Buenos precios"} {0.03584531,-0.0072865635,0.012452082,-0.0033231012,-0.05934532,0.012008576,0.04175392,0.012121647,0.013843163,0.034415342,0.06486088,-0.00893761,-0.0537194,0.0051740413,0.035492383,0.002591685,-0.012925126,-0.02364855,0.023106875,-0.009275777,0.07822245,-0.05451838,-0.09615041,0.14182422,0.008055674,-0.07059755,-0.020911627,-0.009363327,0.0024252762,-0.033283945,-0.02037368,0.009768139,0.16540559,0.052086435,-0.026267068,-0.008600088,0.12172375,-0.03323105,0.011060692,-0.00020657764,-0.097373635,-0.048405845,0.023382762,-0.0019317413,0.022731556,-0.03964616,0.052045595,0.07176253,0.057081353,0.007548379,0.015822312,-0.022204248,-0.033614,-0.011098317,-0.0025657085,0.099533424,0.02061897,-0.06418671,0.027991936,0.07172003,-0.06976874,0.0062806406,-0.07194001,0.01039406,0.04927892,0.024850613,0.0504153,0.035399202,-0.043787718,-0.005506764,0.12298801,-0.058272038,0.025368443,0.1314969,-0.067098714,0.040408555,-0.0011041644,0.019693911,-0.032866143,-0.044618048,0.039909776,0.013976839,-0.097276345,0.023533845,0.034360208,0.0165811,-0.07992926,-0.032854594,0.08892078,0.0028633287,-0.06429207,0.046242308,-0.041072506,0.01426843,-0.072845615,0.012587828,0.027703429,-0.07707505,-0.0120167695,0.084321715,0.08932398,0.035344448,0.052417886,0.04225177,-0.008501666,0.025927102,0.041654043,0.012156066,0.027125897,0.055782408,-0.041361686,-0.047712106,-0.036068536,0.018984212,-0.09575558,-0.0029109905,0.031704895,0.011722222,-0.01432141,-0.10626145,0.05263233,0.06515352,-0.024304986,-0.012900751,-0.059815,-0.057516936,-0.01504554,-4.5799147e-34,-0.049789347,-0.01569853,-0.0030548542,0.099895574,-0.06192442,0.03290807,0.014195265,0.0077859936,-0.029068617,0.0037324391,-0.03238696,-0.023450753,-0.008365531,0.0087261,0.064530686,0.02910945,0.012294111,-0.0071659368,0.057063058,0.021510042,-0.09137329,0.0018364851,-0.009133882,-0.006474994,0.0015498194,-0.004392589,-0.08705784,-0.08736665,-0.008137046,0.04809714,0.007863115,0.10360969,0.00902223,-0.04679973,0.012319076,-0.037619416,0.07899726,-0.005192827,-0.021493211,0.008771854,-0.014321029,0.0453962,-0.010235605,-0.018355055,0.029795805,-0.016326804,0.0039272103,0.08969474,0.08131991,0.009472007,-0.037179407,-0.06787835,-0.10306208,-0.007889135,0.024759047,0.04990517,-0.06913742,0.05606467,-0.00947817,-0.049219765,0.024869762,0.016429417,0.02289463,-0.034101848,-0.09724622,0.04427231,0.04912677,0.0039801328,0.1281202,0.027391452,-0.089876324,-0.04681996,-0.010711914,0.010475298,-0.037448045,0.030090118,-0.026962597,0.033763792,0.033383757,0.016774425,-0.104897104,0.05732402,0.03313931,0.092695855,0.09147927,0.08959331,0.086158805,0.04221906,-0.028365793,0.043042008,-0.03642115,0.052858748,0.042908523,-0.009029031,-0.018329134,-8.551646e-34,0.022509726,-0.055691864,-0.025796996,-0.032851636,-0.048517924,-0.0006962495,-0.047691435,0.0037432231,-0.051636398,-0.060687516,-0.050656963,-0.089964904,0.14234963,-0.03148223,0.010054231,0.04730361,0.060819723,-0.029972577,-0.072826944,-0.020670492,-0.00042891438,0.027632548,0.05289778,0.05030206,-0.017191775,-0.08514809,0.025547463,0.042394962,-0.075614825,-0.06329687,0.05383046,-0.065514386,-0.00060333946,0.028572682,-0.042763565,0.096009396,0.012728038,0.0164131,0.009206526,0.022052635,0.023246413,0.0073093795,-0.027490258,0.018319976,-0.060499344,0.035606023,-0.055652127,-0.06235556,0.0017946308,-0.011405516,0.05047211,-0.07239055,-0.09989412,0.0142841125,-0.022076877,-0.060549986,-0.045685023,-0.01868417,-0.05113132,-0.044754483,0.054641202,-0.0009863095,-0.08598442,0.003808004,0.024917185,-0.040662102,-0.031361584,0.08198158,0.041890603,0.042366993,0.10625217,0.023595555,-0.096564345,0.017410481,-0.05816734,-0.029166441,-0.044120744,-0.03743406,0.07052388,-0.021921974,-0.07424935,0.04951858,-0.0058162534,-0.0035535481,-0.0622127,0.013854776,0.015029863,0.014808117,0.026518276,0.0628091,-0.0067243935,0.011850971,-0.023742283,-0.12925433,-0.04246856,-1.897333e-08,0.0060962555,-0.016100494,0.025041778,0.057097662,-0.024435775,-0.0151802385,-0.06651789,0.055349827,0.07120219,0.04544276,-0.051626187,0.009152688,-0.0057551805,-0.04121505,-0.0865582,-0.0036423255,0.041482672,0.11340969,-0.04341906,-0.079895765,0.041375175,0.058014754,-0.040555127,-0.034835204,0.0039908094,-0.04782815,-0.0714221,0.019439515,-0.047264103,0.038295053,-0.01029786,-0.027506394,-0.024416408,-0.123790435,0.029271925,0.020266628,-0.01514702,-0.0776041,0.020473126,-0.11744215,0.051516905,-0.012393199,-0.051142447,-0.01994099,0.045809675,-0.09670022,0.012394818,0.022022992,-0.011421727,0.034318004,0.0031109813,0.024615768,0.06579228,0.047766514,0.040892053,-0.07802355,0.018856063,0.017496198,0.0031153383,0.05548305,0.0743976,0.072180584,0.0941438,-0.0935609} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.825336+00 2026-01-30 02:01:12.684305+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2238 google ChZDSUhNMG9nS0VJQ0FnSUNDc2JicFBBEAE 1 t 2241 Go Karts Mar Menor unknown Buen sitio para recrearse mayores y ninos. buen sitio para recrearse mayores y ninos. 4 2021-01-31 01:52:39.833374+00 es v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Buen sitio para recrearse mayores y ninos."} {-0.025545938,0.015533584,0.043437973,0.04959175,-0.031146472,0.03808539,0.011515454,-0.0013108379,-0.045101374,-0.0051123044,0.04467643,-0.0844369,-0.09757013,-0.006991307,0.015002443,0.029691678,-0.092234276,0.17169736,0.06908421,-0.009741823,0.019265004,0.0321427,-0.08230794,0.1099417,-0.020448169,0.024966273,0.05336366,0.028055737,-0.021632407,-0.013886525,-0.03163177,0.032387406,0.088020355,-0.03754909,0.021911878,0.053455096,0.087346576,-0.029498337,0.020209523,-0.009501152,-0.038981687,-0.021647269,-0.009983988,-0.060668614,0.0014278725,-0.07128731,-0.020649437,0.08401246,0.03865017,-0.040407203,0.0047879205,-0.0631726,-0.07104041,0.037589192,-0.02568566,0.020533081,-0.006236929,-0.016292382,0.058983024,0.0075846165,-0.011851176,0.03376991,-0.10661206,0.019367931,0.043228313,0.033036824,-0.021051992,-0.0029329136,-0.05036973,0.0049186354,0.09737948,-0.010732561,0.038482595,0.027850294,-0.04933139,-0.025920052,-0.06930821,-0.01201344,-0.03865973,-0.067086495,-0.011658073,0.0011392176,-0.011909605,-0.00037459933,0.010147458,0.025271714,-0.038634516,-0.022811936,0.016741302,0.018032255,0.007918669,0.0010504138,-0.03293007,0.037262756,-0.07042986,0.045682855,-0.013795106,-0.047255784,0.08623304,0.01154738,-0.0003599473,-0.009858576,0.07905007,0.0037659735,-0.08595641,0.012634026,0.020547798,-0.14458273,-0.015318263,0.014313275,-0.10834178,-0.067762084,-0.029171024,0.020273771,-0.031013912,-0.01197152,-0.016254917,-0.038573314,-0.06477006,-0.04447269,0.05306533,0.029628605,-0.08061751,-0.03502779,0.033220768,-0.024308631,0.04568935,8.425268e-34,-0.0040892614,-0.07228967,-0.005090736,0.09271947,0.02719627,0.030646373,0.0115506565,-0.059085496,-0.013719046,-0.07547939,-0.048727892,-0.024601316,0.019355055,-0.038634863,0.11284861,0.0011432748,0.027195286,0.023956018,0.026276125,0.06520929,-0.042095337,0.011232255,-0.0358396,0.004271731,-0.01351383,0.016736127,0.024908373,-0.0484282,-0.042549003,0.076162994,0.08161127,0.0011746726,-0.03776849,-0.004916144,0.018487982,-0.022176096,0.015351161,0.02406439,-0.021948434,0.024560114,-0.014582257,0.051182434,-0.016988842,0.05749213,0.03607446,-0.038951118,0.08257742,0.010640168,0.031042166,0.043259926,-0.022825725,-0.04966409,-0.08791178,-0.08934174,0.055554546,0.012383826,-0.03127514,0.10766292,-0.03785012,-0.02283983,0.12931429,0.015396512,0.05207224,-0.057410743,0.020540258,-0.007958423,0.08906537,0.05231352,0.117898874,-0.036781214,-0.055129725,0.0019137928,-0.027075307,-0.035646416,-0.06287904,0.00038808046,0.04213097,0.014822207,0.0026250435,-0.0086772675,-0.09826236,-0.014503323,-0.00043326427,0.082816094,0.097996615,-0.049397208,0.011712714,0.065790296,-0.04820269,0.025037313,0.02602848,0.038623706,0.0357608,-0.05862378,-0.012509039,-1.1050638e-33,-0.0015584915,-0.01351675,-0.02058796,0.055839673,-0.09825357,-0.041303813,-0.10462433,0.018795585,0.011108774,-0.0883708,-0.13985561,-0.12610911,0.15849474,-0.037236873,-0.060967024,0.10399311,0.021047791,0.0067640147,-0.13290119,-0.066115886,-0.00023113088,0.06682835,0.0130669195,-0.0048009,-0.037740353,-0.028764639,-0.03318826,0.039963912,-0.07137251,0.055794496,0.03550422,-0.10984431,-0.099328995,0.06637157,0.019484436,0.096789815,0.094888784,0.021430044,0.03286243,0.044023283,0.012448611,0.012694516,0.0329074,-0.0055282377,-0.035185225,0.04212796,0.0008727881,-0.031717543,-0.03986407,-0.06519134,0.035409585,-0.0018519949,-0.08294734,0.009985821,0.013376776,-0.04294797,-0.006488581,-0.024002897,-0.076139234,-0.030910239,0.033196025,-0.012140416,-0.007459845,0.047316376,0.0099566365,-0.028526643,-0.05048121,-0.019940048,0.10464369,0.05750296,0.05652868,-0.036106206,-0.051677007,0.059473537,-0.095259786,-0.025005996,-0.0598645,-0.0013956792,0.014575421,0.037259437,-0.048631907,0.00063005823,-0.01067599,-0.054926056,-0.010039998,-0.021488464,0.020054728,-0.018135376,0.00679503,0.057987086,0.06480467,0.04164441,-0.012673596,-0.004857575,-0.030359054,-1.8879549e-08,0.039364014,-0.056879215,-0.044623487,0.1025387,0.030573454,-0.056503903,-0.06623978,0.011232271,0.041934267,0.054921795,-0.006203065,0.012246227,0.05499372,0.03684,0.046451062,0.004216942,0.11790863,0.06568313,-0.037655413,-0.04436621,0.077458665,0.0067156055,-0.04925991,0.01885035,0.031942364,-0.016580816,-0.049397033,0.028069405,0.047154263,-0.019842124,0.04003111,0.0415522,-0.030388404,-0.091179386,0.006777688,0.043077108,-0.04561806,0.026177004,-0.027764145,0.011336104,0.113560416,0.07066185,0.007091545,0.047665108,0.025834588,-0.096782245,0.047749024,0.015675837,0.00644155,-0.03924335,-0.03374634,-0.06837472,0.09081316,0.040559676,0.03140934,0.020358145,0.034528665,0.011834651,0.04249582,0.004721807,-0.015934067,0.13428298,-0.028443292,-0.038368165} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.843063+00 2026-01-30 02:01:12.576401+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2239 google ChdDSUhNMG9nS0VJQ0FnSUNZc2Zqbmx3RRAB 1 t 2242 Go Karts Mar Menor unknown Buen sitio para dar gas buen asfalto buen sitio para dar gas buen asfalto 5 2020-02-01 01:52:39.833374+00 es v5.1 O2.01 {} V+ I2 CR-N {} {"O2.01": "Buen sitio para dar gas buen asfalto"} {-0.0740132,0.042925294,-0.06667785,0.03838163,-0.073759235,0.06848252,0.082422644,0.06224729,0.016400618,-0.05268363,0.00968732,-0.03210202,0.0013222385,-0.036877126,-0.014728639,-0.025078474,-0.025906194,0.0805016,-0.014532062,0.0437727,0.036298502,0.045622982,0.038772255,0.115911305,0.005818491,0.030867385,0.05057222,-0.0051153717,0.038219377,-0.046053264,0.024196561,0.010864361,0.019580873,-0.008566028,0.07074115,-0.05313468,0.048397224,-0.054250643,0.066649206,0.008881283,-0.032524034,-0.12014745,-0.044250656,-0.06531081,0.041699853,-0.052993666,0.005404703,0.077196956,0.07195176,0.02667992,-0.07021645,-0.0044573857,-0.06478389,0.011939464,-0.025754992,-0.030336656,-0.016468676,-0.00404479,-0.00042084188,-0.07184711,0.017738052,0.0022415768,-0.021156337,0.035861064,-0.056167744,0.030943986,-0.018751854,-0.028140763,-0.029769706,0.07592855,0.066765204,-0.09484418,-0.0019300563,0.011631028,-0.012505687,-0.058026962,0.0064548105,-0.04821528,0.009980724,-0.09053865,0.08604489,-0.006742954,-0.04808501,0.010250186,-0.08586702,-0.024514098,0.027636997,0.050543673,-0.0029833002,-0.045359913,-0.057712406,-0.0062526935,-0.08988407,-0.007868613,-0.0037699272,-0.008228738,-0.019871475,-0.0010857303,0.09344799,0.01143143,-0.033914372,0.02729443,-0.012802977,0.014894132,-0.059743714,-0.03503741,0.06149652,-0.033376623,0.06331,-0.027098551,-0.06845369,-0.058821358,-0.046552517,-0.057168346,-0.04837946,0.0077279136,-0.017200962,-0.15491846,-0.09814915,-0.021486577,0.0004637045,-0.0098287305,-0.077467196,0.046215553,0.035996147,-0.057021625,0.030476429,3.2078146e-33,-0.06726828,-0.058968592,0.06726911,0.021396888,-0.021437028,0.085688405,-0.08013113,-0.027902331,-0.012700536,0.041424394,-0.054878183,-0.033092026,-0.017102886,-0.020419182,0.04285646,-0.0030319572,-0.0013264773,0.012072327,0.029145522,-0.04217211,-0.060250327,0.047748312,-0.03815462,0.05652059,-0.010577605,0.017304497,-0.0009944581,-0.00017654896,-0.051924955,0.048651744,0.12341464,0.0054668463,-0.05310869,-0.0040814,-0.08630764,-0.09141073,-0.0780214,0.0398954,-0.02046139,0.021079151,-0.020186258,0.06419621,-0.038180646,0.022178195,-0.018842554,-0.043132827,0.02494749,-0.002712526,0.074268125,0.008222305,-0.04754312,0.025114195,0.01049637,0.053197026,0.06257325,0.011530999,-0.04044999,0.093240924,-0.02368012,-0.012256558,0.10454045,0.009170715,0.033405267,-0.035689507,0.022922862,-0.022383887,0.067382045,0.026398314,0.11384941,-0.02300217,-0.03286348,-0.028907627,-0.056393404,0.0053836224,-0.045280647,0.053721856,0.009418003,0.017647127,-0.03516087,-0.03708881,-0.102504715,-0.11235381,0.07162222,0.06323226,0.03335218,0.01697854,-0.03917387,0.006615166,-0.00956296,0.043868225,-0.033227134,-0.0076382766,0.044650808,-0.06211092,0.019295078,-3.4970806e-33,0.035542347,0.03188214,-0.053971976,0.09445392,-0.026976814,-0.022785684,-0.048224095,-0.04693892,-0.025117956,0.073292024,-0.002512242,-0.046291746,0.107654884,-0.012590996,-0.027898625,0.13184561,0.06307658,-0.03747237,-0.059423547,-0.03284729,-0.07580634,0.009223909,-0.013292267,-0.014513579,-0.07570208,0.045806494,0.059658855,-0.004108232,-0.061404914,0.055468954,0.048435934,0.010554179,-0.08741383,0.04039114,0.0014447462,-0.010483896,0.104283504,0.050351765,-0.019418394,-0.0451944,-0.04156914,0.01677322,0.022700703,-0.0150751965,-0.005993194,-0.061073184,0.03271211,-0.102581844,-0.015102142,-0.084358595,0.032362994,-0.0024844205,0.07379633,-0.029766036,-0.0096227005,-0.030933807,-0.024217553,-0.05798357,-0.06789748,-0.010324389,0.10862894,0.03636084,0.013771166,-0.020963237,-0.004117998,-0.026030917,-0.142392,-0.023472445,0.068749115,0.055701982,-0.0017853214,-0.088366345,0.0033788218,0.16483872,-0.11147661,0.044772714,0.025165252,-0.011658163,0.00020023834,0.016501706,-0.05315352,-0.10292562,-0.030789187,0.014433584,-0.06499268,-0.034358032,-0.054174412,-0.076710835,0.009529684,0.052404985,-0.017226921,0.026591226,0.034265134,0.0096622575,-0.047197364,-2.1065826e-08,-0.023766983,-0.07690816,0.037556127,0.07772142,0.051166132,-0.0161314,-0.08250921,-0.00839932,-0.010944928,0.015604337,-0.058127463,-0.05322081,0.09455401,0.009628178,0.010159611,0.07274117,0.0489577,-0.016618626,0.019018602,-0.050398007,0.05710746,-0.0153935775,-0.036707938,0.00830741,0.06978397,0.01735206,0.077115834,0.06455379,0.10346301,-0.035110366,0.041610952,0.052833933,0.0036186469,-0.04184251,-0.009059091,0.04591468,0.014986826,0.03730171,-0.06670275,0.046966042,0.06950006,0.07880984,0.06066507,-0.009621564,0.039974585,0.00815752,0.043599833,0.046775106,-0.025334561,-0.0061320984,0.002511704,-0.02766223,0.059780363,0.07362912,0.06644556,0.06756154,0.044802625,0.046418414,0.092511244,0.009215547,-0.010651396,0.11843175,-0.028740022,-0.034662418} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.866676+00 2026-01-30 02:01:12.5837+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2236 google ChZDSUhNMG9nS0VJQ0FnSUM0anFXNUxBEAE 1 t 2239 Go Karts Mar Menor unknown Muy amables y muy buen servicio. muy amables y muy buen servicio. 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.01 {} V+ I3 CR-N {} {"P1.01": "Muy amables y muy buen servicio."} {-0.043974265,0.011138872,0.050693087,-0.05971794,-0.032827873,-0.026523892,0.12863082,0.0026771934,-0.018917881,-0.024879213,0.040275466,0.06808606,0.030087255,0.0096577965,-0.037800603,0.05647586,-0.095704325,0.039426338,0.008332762,0.05266073,0.15047003,0.010947014,-0.059552748,0.06472374,-0.027761946,-0.008958423,0.012370066,-0.001697233,-0.024519453,-0.06895794,0.026341533,0.050438073,0.07688306,-0.028719816,0.002801807,-0.007971257,0.12822862,-0.08900747,0.026801003,0.04103217,-0.084199324,-0.03365994,-0.043522477,-0.051774364,-0.010210843,-0.08978705,0.041053444,-0.011259665,0.08187756,-0.061935265,-0.13177252,-0.05713557,-0.03812795,-0.009453028,0.076939024,-0.027568756,-0.10624129,-0.040030498,0.011603241,-0.023951756,-0.082777426,0.04103707,0.00852523,0.021593872,0.040757418,-0.052208997,-0.0020514638,0.02289952,-0.096734114,0.0084369425,0.10584144,-0.04364061,0.006761639,0.03690981,-0.07690556,0.08222786,0.010366705,-0.01987972,-0.020951197,0.0030230118,-0.061885815,-0.048131566,0.019506164,0.03431966,0.009642615,-0.079130426,-0.04215889,0.024433702,0.032085612,-0.0001719445,0.0007278313,-0.024582386,-0.09423996,0.013834632,0.05416184,0.015729612,-0.023938155,-0.043815255,-0.022511119,0.075145245,0.022475488,0.022778628,0.19696097,0.056646213,-0.021260282,0.001291796,0.06896549,-0.07501307,0.0066796932,0.01932499,-0.060160458,-0.059372526,-0.076419786,0.01965088,-0.030208763,0.012340129,-0.019433087,0.029791052,-0.09434079,-0.08605636,0.06191082,0.1176667,-0.042110194,0.022132417,-0.008255439,-0.011210998,0.049462516,2.220701e-33,-0.016532011,-0.07218502,-0.013944672,0.07097393,-0.031722963,-0.014597405,-0.04252548,0.00966554,-0.016690971,-0.010035464,-0.05763884,0.06268272,0.06062958,0.048184276,0.013604024,-0.022310628,0.025527805,-0.004139812,0.04733135,0.01254472,-0.02465283,0.00885452,-0.020387605,0.057553366,-0.023246307,-0.06653866,-0.007009848,-0.07519046,-0.0015186513,0.07554664,0.05563236,-0.019091994,-0.012479719,-0.021231284,-0.06445006,-0.051587105,-0.029029276,0.06004665,0.0033092469,-0.018465176,0.019535538,0.014229413,-0.009362785,0.031678516,-0.017609,0.030975122,0.094599016,0.047889125,0.05307219,0.014544571,-0.053035468,-0.054125976,-0.034284886,0.0038050471,0.021750344,0.02060953,0.02182594,0.0953272,-0.026990343,-0.058523204,0.059756607,-0.030063858,0.09964032,-0.044987753,0.0007079116,-0.006325858,0.009911033,0.06823462,0.057510193,0.09149498,-0.07150496,-0.04987421,-0.046380866,0.014849473,-0.004687932,-0.05010778,0.03535631,-0.029060602,0.03800218,-0.032257203,-0.08817979,0.028482744,0.0043664086,0.029766964,0.06908651,0.066940345,0.05240078,0.06620431,-0.07197626,0.07007382,-0.07653623,0.055531334,0.042186595,-0.06028196,-0.049285706,-1.7899085e-33,-0.010154588,-0.015963193,0.018439502,0.119399816,-0.05073779,0.036518883,0.014976436,0.040111095,-0.060012616,0.00091056526,-0.09317999,-0.13098155,0.105109796,-0.024655664,-0.0665766,0.08744361,-0.010482088,-0.011361241,-0.05789557,-0.066020176,-0.029683905,0.0694916,0.068477586,-0.05701702,-0.06352821,0.024781195,-0.00084787654,0.0154555235,-0.019023398,-0.0022071416,-0.0026580957,-0.051539343,-0.06256665,-0.013081648,-0.017724678,0.1124856,0.07191936,0.015834255,0.0019805848,-0.008819212,-0.0015959794,0.03860229,-0.036139198,0.052001715,-0.036323484,0.00040367994,-0.015417483,-0.09744172,0.01970153,-0.09099032,-0.049414895,0.019873662,0.04362381,-0.0069616465,-0.017310679,-0.056945376,-0.0943417,-0.03839493,-0.13783972,-0.0029403418,0.03979471,-0.0072528897,-0.04885751,0.010818901,0.102659605,0.005748141,-0.060136884,0.012796646,-0.006331389,0.018458651,0.09099026,-0.05048942,-0.027922124,0.03166247,0.011918521,0.0094028935,-0.092632025,-0.0615045,-0.055393104,-0.015170311,0.045469828,-0.01838648,-0.01822726,-0.026634917,-0.06748442,0.011179353,0.033873957,-0.0027753671,-0.011662097,0.04495202,0.03240281,0.05157596,-0.04207929,-4.963258e-05,-0.016829234,-2.189058e-08,-0.0028888327,-0.041485075,0.017793914,0.031265244,0.023628373,-0.031621918,-0.08533784,-0.005537978,0.02858603,0.044947155,-0.03405599,-0.05224743,-0.024179991,0.042031202,0.0023596329,0.034514174,0.050461303,0.042972293,0.026814917,-0.04276047,0.0714489,-0.01631185,-0.0050230646,0.054255903,0.015599623,0.055779345,-0.05563344,0.021268055,0.0026435687,0.008495262,0.0015002046,0.069795676,-0.007150663,-0.03444634,-0.05694093,-0.01984403,-0.072107844,-0.03164485,-0.01216428,0.019194812,0.09262125,0.016845955,0.04417876,-0.026673349,0.07314517,0.008370648,-0.025052655,0.07727127,0.046397865,0.0031493548,-0.03393839,-0.0030260447,0.08017427,0.09654865,0.026596585,0.020236084,0.05300026,0.037111823,0.04201047,0.034097444,0.025028069,0.10464846,0.016593963,-0.10945526} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.816735+00 2026-01-30 02:01:12.569862+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2268 google ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB 1 t 2271 Go Karts Mar Menor unknown Buena atención y buena pista pa motos buena atención y buena pista pa motos 5 2021-01-31 01:52:39.833374+00 es v5.1 P3.01 {} V+ I2 CR-N {} {"O1.02": "buena pista pa motos", "P3.01": "Buena atención"} {-0.030118033,-0.011957618,0.046879932,-0.05148352,-0.11513979,-0.014581793,0.11554243,-0.018751977,0.04830557,0.0005846959,0.09003278,0.063591324,0.0002846736,-0.035202403,0.014108931,0.010013791,0.010105898,-0.0107066855,0.078210376,0.0017555773,0.08448885,-0.0521477,-0.05681439,0.11556661,-0.052669756,0.04730279,0.026066227,-0.0026758888,0.023026649,-0.08951029,-0.06252134,0.06546043,0.11309204,0.038905896,0.0010201391,0.0077260877,0.057259552,-0.006926572,-0.040893883,0.04067601,-0.055910576,-0.031262107,0.05729012,-0.03361487,0.0125185335,-0.08387306,-0.03622826,-0.009390793,0.086482376,-0.040679526,-0.013481474,-0.03903274,-0.050828297,0.028761096,-0.015551957,0.027041122,-0.030436879,0.038739987,0.011558911,0.05203926,-0.0343093,0.0679964,-0.034841213,0.009264639,0.0690478,-0.01798851,0.018331436,0.01272495,-0.1409281,0.028688712,0.051611546,-0.038407516,-0.030330954,0.047705173,-0.08350004,0.018433178,-0.025147341,-0.03788068,-0.05746478,0.016773583,-0.0042549516,0.02088886,-0.115116745,-0.0122574065,-0.0341377,0.030953737,-0.03495549,0.041446086,0.11290968,-0.01256313,-0.07400847,0.026658786,-0.060593974,0.04735793,-0.061002977,-0.009246959,0.03773302,-0.062674366,-0.012799413,0.09329329,0.16034584,0.079652734,0.06674364,-0.10489819,-0.009156329,0.036119133,0.04452785,-0.014346352,0.07982782,0.0044532316,-0.056227922,-0.016497055,-0.015985487,-0.008376414,-0.06930289,0.024480673,-0.007049326,-0.012361413,0.019430403,-0.10488701,0.015885709,0.0027131175,-0.06024457,0.017795173,-0.06391269,-0.027792154,-0.012831346,5.0393186e-33,-0.014869348,-0.017741375,0.011631937,0.08242478,-0.0057637226,0.070762396,0.05947748,-0.11454555,-0.093324855,-0.0034871404,-0.025072847,0.028693197,-0.039229557,0.007570532,0.04244296,0.07356509,-0.02443624,0.020641815,0.00747072,0.013647763,-0.06962541,0.0039999536,-0.06808517,-0.0011439482,-0.049775537,-0.023914594,-0.07786851,-0.058156572,-0.011936678,0.05169922,0.051988624,0.1065731,0.05789424,0.00382974,-0.021778569,-0.063634165,0.021183563,-0.029033378,-0.019328682,-0.039118454,0.0046280613,0.005679584,-0.012137107,0.0149495145,-0.012708605,0.0042499895,0.035808466,0.041356415,0.056518383,0.039458804,-0.021429928,-0.08119604,-0.10530034,-0.00062121067,-0.029260479,0.0065077343,-0.07600575,0.049967002,-0.0010592242,0.0034055654,0.04633219,0.0043212776,0.048752915,-0.080767676,-0.06356279,-0.05382859,0.030905878,0.057941254,0.086196005,0.09011247,-0.025202185,-0.020570405,-0.062073816,0.019795945,0.057652038,-0.03480149,0.018505696,0.036807608,-0.0075676,0.05940615,0.02048885,-0.022440609,0.025643164,0.1235437,0.06383106,0.06559933,0.1164686,0.032911766,-0.06000115,0.122429825,-0.08033141,0.058088616,0.06075024,-0.032718465,-0.03260359,-4.9519125e-33,0.0046414197,-0.03290459,0.036612455,0.016426608,-0.059702303,-0.044901516,0.026569057,-0.0025948796,-0.021692438,-0.09095597,-0.067480445,-0.14714742,0.120475635,0.012447637,0.016360834,0.035935152,0.05790599,-0.021391137,-0.05776807,0.0017717667,-0.06816044,0.03375059,0.014690301,0.11288812,0.0014380015,-0.014926634,-0.016584788,0.032653153,-0.0940909,-0.03317599,0.00078165194,-0.06871199,-0.07956535,0.07652172,-0.06530011,0.05376551,0.12225226,0.014885468,0.014207259,-0.038212612,0.0009912429,-0.00086625176,-0.016700603,-0.016065512,-0.031414945,0.031045878,-0.028443448,-0.078938894,-0.031532817,0.019952826,0.02405167,-0.0069826166,-0.05093152,0.047919374,0.006179233,-0.05659628,-0.07464053,0.0047912123,-0.06392626,-0.050049197,-0.011924273,-0.019338125,-0.0991123,0.023242652,0.058829527,0.009489652,0.04058481,0.052155774,-0.0044927285,0.022228412,0.039041266,0.04757,-0.04779573,-0.0051160986,-0.014007191,-0.08351396,-0.06353836,-0.004290765,-0.042385623,-0.036054403,0.0021515784,0.009634992,-0.02346134,-0.05693201,-0.05131579,0.019421415,0.0074308235,0.056161694,0.0016003037,0.052050583,-0.01645648,0.07610522,-0.042300396,-0.08146515,-0.01916784,-2.1689836e-08,0.0068517677,0.023675524,-0.020632526,0.022348672,0.019915955,-0.028426807,0.020905223,0.05458635,0.022861298,0.05176995,0.016553657,0.03728149,0.018300474,0.011358575,-0.01993247,0.030781265,0.03972012,0.08454428,0.009171405,-0.05557804,0.010836735,0.021188868,-0.007786027,0.056509793,-0.018228548,0.04327948,0.018786319,0.047165923,0.004154597,-0.0036148247,-0.014174077,-0.010338879,-0.06689679,-0.11386158,-0.019760683,-0.021334209,-0.03517097,-0.076611005,0.043638147,-0.057223663,0.03757594,0.03165451,-0.020016676,-0.023836639,0.042450983,-0.064316936,0.015092479,-0.040812917,0.016705407,-0.019044673,-0.038964916,-0.013577722,0.066401765,0.018110244,0.062932126,-0.08661274,0.085115395,0.030953912,0.020989692,0.0013049056,0.0491428,0.12144843,0.06752503,-0.09859242} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.852729+00 2026-01-30 02:01:12.686674+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2269 google ChZDSUhNMG9nS0VJQ0FnSUNIbWVhMFh3EAE 1 t 2272 Go Karts Mar Menor unknown Fantastische kartbaan ik zeg doen fantastische kartbaan ik zeg doen 5 2025-01-30 01:52:39.833374+00 nl v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Fantastische kartbaan ik zeg doen"} {-0.09679903,0.09855167,-0.011164284,-0.0056954105,-0.048304778,0.015753016,0.05817654,0.07641009,0.07883319,0.042209882,0.02620386,-0.033414472,-0.05114387,-0.052613925,-0.0070634345,-0.081935205,-0.028353456,0.057719044,-0.041288108,-0.027538609,-0.02795061,-0.07334034,0.06362893,-0.047230996,0.07205366,0.007867499,0.048600376,0.059404723,0.10000043,0.03512612,0.071095526,0.057583958,-0.06971321,-0.016379653,0.023822905,0.05019284,-0.08568452,-0.017011182,0.007896531,0.033249483,0.026164414,0.042519186,-0.044725858,-0.06931704,0.0046178903,0.1271015,-0.06469019,0.010426573,-0.03330047,0.018883798,-0.0457022,-0.08765515,0.087737285,-0.02276851,0.010049718,-0.060877528,-0.03449575,0.078177385,-0.01100155,-0.007984373,0.10225945,-0.031807773,-0.09521849,-0.015561646,-0.038583595,-0.022007978,-0.09113187,0.028126156,-0.07387146,0.031169605,-0.0026233436,-0.024466125,-0.04672279,0.02558813,-0.07209879,-0.014278456,-0.05453183,-0.13203427,0.029190902,-0.083927885,0.07992168,-0.07151986,0.057876337,0.008913577,-0.031829644,-0.003291215,0.07526167,0.03632391,-0.011991051,-0.014911893,0.021734854,0.003974148,0.022183908,-0.05462223,-0.040097862,0.041972045,-0.04804136,0.025395995,-0.028957734,0.043821193,0.03933409,0.052104708,0.07734597,0.054687083,-0.045358498,0.031023663,0.028431363,-0.043927472,0.05273573,0.016645549,-0.10044391,-0.0015118837,-0.0074974517,-0.056181785,0.058351837,-0.015319649,-0.011320952,-0.03863899,-0.00797476,0.065484695,0.036304966,-0.044306234,0.0016020538,0.06586811,0.099068604,-0.031430185,0.048628855,5.0117944e-33,-0.060304757,0.005957515,-0.065019324,-0.01725146,-6.388047e-05,-0.058612622,-0.018074729,-0.11989221,-0.084681205,0.005721829,0.008459008,-0.028981987,-0.0064479876,0.020271836,0.04079261,0.049828067,-0.0046221237,-0.031826966,0.014868985,0.025208397,0.047980558,-0.017339462,0.024439849,0.05196286,-0.054275393,-0.041612007,0.041534934,-0.010037464,-0.060734067,0.0013536462,0.07859963,-0.014761902,-0.04227835,0.042671397,-0.11036004,-0.009907886,-0.007931173,-0.05007735,0.014164138,-0.07481091,0.04922803,-0.077877544,-0.020813394,0.05114535,0.0027020741,0.10062024,-0.040248755,-0.056410607,0.029380545,-0.012911403,-0.029516315,0.010175731,0.008080673,0.09375023,0.010515041,0.04496796,0.040646233,0.0052853446,0.0056315726,-0.075403124,0.0111976005,-0.018745013,0.016138574,0.009526858,0.022458639,-0.03190838,0.0014057672,-0.036612842,-0.043775562,-0.050320357,-0.011543516,-0.004454218,-0.009854619,-0.009756828,-0.0095310565,0.069795206,-0.011021887,-0.0017806152,-0.13174172,0.023924813,-0.10384468,-0.036272153,-0.082266964,-0.022145003,0.073595904,-0.096380174,-0.04266767,-0.0812355,0.061267924,0.012737219,0.020969795,-0.029534716,0.023339504,0.050674856,-0.03449356,-3.169937e-33,-0.016302165,0.07185791,-0.036869504,0.11000836,0.03824993,0.0041852714,-0.032970324,-0.00095842825,-0.032201834,-0.018381879,0.053728726,-0.07954654,-0.02658114,0.05703034,-0.038907167,0.019178212,0.12424239,0.03516937,0.0181781,-0.061996643,-0.020629192,0.0037843538,-0.052750785,0.08263943,0.010181189,0.03959843,0.08662996,-0.03935902,-0.06681076,-0.0767792,0.064365946,-0.020027503,0.0316628,0.015432369,0.037837677,0.002048761,0.13875002,-0.031442225,-0.06430316,-0.020578042,0.041176513,0.024836771,-0.047028333,0.01929933,-0.0015054223,-0.03712181,0.014346288,-0.037342418,0.029168466,-0.0670716,0.053493157,0.08379125,0.045542896,-0.019308483,0.059762772,0.040509712,0.008059555,-0.018162463,-0.060590234,0.03095553,0.08947397,-0.008761132,0.059572574,0.010736616,0.042157967,0.025730167,0.0036063204,0.04666106,0.0534203,0.008849198,0.040387068,0.031019738,-0.04773203,0.06538282,0.009452512,0.005197504,0.03934957,0.08354316,0.039220426,-0.056787394,-0.08866713,-0.029897051,-0.02299056,-0.014156608,0.05065408,-0.08339732,-0.034089882,-0.008191769,0.0681475,-0.078288294,0.056443673,0.01730898,0.0812062,0.022272954,-0.033661604,-1.9416113e-08,0.01255356,-0.0584139,-0.069210865,-0.003388592,0.052071404,-0.068287194,0.0026511573,-0.094030194,-0.1001388,0.06025958,-0.021818947,0.063639686,0.00025387955,0.057251602,0.084831595,0.028689228,-0.016540088,0.024966702,0.04193463,-0.07387089,0.10505926,-0.019808652,-0.03802708,-0.04211392,0.029425317,0.061982986,-0.0333056,-0.00080870144,0.070400074,0.00050161005,0.034858134,0.11291943,-0.0004147346,-0.014567801,0.0027972397,0.059026517,-0.04655727,0.057642724,-0.057513822,-0.03526435,0.018887406,0.028870912,0.09050635,-0.004964793,-0.040553574,0.020377137,0.09780618,-0.07632864,0.10423939,-0.03948874,-0.10645841,0.015848218,0.016064502,0.07490706,-0.03876799,0.012170725,-0.00077489344,0.02551102,-0.036262654,-0.010712905,0.043359052,0.048168328,-0.040565263,-0.014175439} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.876298+00 2026-01-30 02:01:12.689666+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2241 google ChdDSUhNMG9nS0VJQ0FnSUNwcHAtcWdBRRAB 1 t 2244 Go Karts Mar Menor unknown Los karts buena potencia y circuito bastante largo los karts buena potencia y circuito bastante largo 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.03} V+ I2 CR-N {} {"O1.02": "Los karts buena potencia y circuito bastante largo"} {-0.040783178,0.017228741,0.033872534,-0.030013403,-0.10514593,0.02404529,0.006699599,0.078412056,0.051170114,0.041547325,0.04133783,0.0040999525,-0.0061152605,-0.022885492,0.021875925,-0.013825775,-0.02968937,0.04109302,0.012664294,-0.07740469,0.07488246,-0.08455108,-0.046297166,0.069475986,-0.08640912,0.018668374,0.016987253,0.03088376,-0.026294842,-0.111854464,-0.14559087,0.059627276,0.032254294,-0.02674543,-0.09533415,-0.031757843,-0.011344205,-0.053484775,-0.009168091,-0.0047654477,-0.0528262,-0.07476337,0.0028196278,-0.022542566,0.043710668,-0.030560328,-0.007983248,-0.02428365,-0.026485855,-0.0570633,0.00039069267,-0.08679666,0.030853737,0.010031294,-0.013238301,-0.04677029,-0.079916984,0.11394709,0.14294669,0.04716208,0.08574436,0.028052768,-0.09433538,0.03564182,-0.039248485,-0.077289045,0.033708658,0.056165792,-0.060266715,0.05173486,0.10635477,-0.09675657,0.019398328,-0.037959244,0.0845202,0.016774487,-0.020846412,-0.015307489,-0.08351602,-0.035739575,0.059196103,-0.00926599,-0.056036804,-0.036468238,-0.01818256,-0.0048187957,0.015843095,0.019065745,0.039684586,-0.065042965,-0.018265283,0.032813948,-0.07269393,-0.03394369,0.015424926,-0.016995307,0.035832178,-0.034314547,0.049922,0.056770876,0.11603333,0.07393342,0.08485824,0.022540089,-0.055546977,0.046433214,-0.0059124655,0.038498387,0.03590779,-0.0054487167,-0.06389962,0.04802238,-0.085211635,-0.04214825,-0.051853713,-0.01613223,-0.017205626,-0.01075904,-0.01967658,-0.032100867,0.027353441,-0.031053059,-0.045053106,0.014194028,-0.027325796,-0.021077378,0.06533711,1.7572043e-33,-0.07955105,0.03248377,-0.00046109405,0.010576942,0.027072115,-0.098660685,-0.05316968,-0.06697483,-0.049943753,0.046536572,-0.006219136,0.086247414,-0.02397208,0.021493206,0.14206588,-0.03061151,-0.046036754,-0.10188885,0.051419403,-0.0022378066,-0.0458464,-0.067447394,-0.014687696,0.073219895,-0.001447779,0.07611944,0.084261656,0.0004066706,-0.13533641,0.037077732,0.02801568,0.077277154,0.0093042515,-0.015645908,-0.08164065,0.016839258,0.03090431,0.017649861,0.045692164,-0.030526286,0.011690589,-0.015541221,-0.05730094,0.06816651,-0.0033121684,-0.001439523,-0.011147206,0.015207537,0.102478445,0.07226445,-0.11510204,-0.051635932,-0.04122917,0.01894003,0.06393275,0.07385064,-0.019509088,0.009448162,-0.060066156,0.0065479213,0.06966941,0.03775434,-0.030766524,-0.02499032,-0.0646204,0.052855782,-0.012578488,-0.036647774,0.055217337,-0.08896843,-0.12473069,-0.00938718,0.02125624,-0.017703904,0.039479375,0.007969273,-0.032155525,0.06617335,-0.0459371,0.032603834,-0.09593449,-0.049617905,-0.011085248,0.044684753,0.024111057,0.041183855,0.018954195,0.043555498,0.0064851637,0.08620464,-0.06085083,0.029005334,0.042461436,0.041622344,0.018684035,-4.2748417e-33,0.006282371,0.015454368,0.08090784,0.08091706,0.006201826,-0.0010246624,0.008724039,-0.016986877,-0.023837239,0.01739297,-0.023594392,-0.012535424,0.050182793,-0.028877791,0.0022297576,0.031302914,0.044572968,-0.020428734,-0.04519571,-0.018013828,0.012964708,0.051715255,-0.02272627,-0.020924041,-0.06727724,0.011893496,-0.032402422,0.060873058,-0.099453,0.031576093,0.04970264,-0.034211528,0.023013227,0.079678275,-0.08378793,-0.0042577735,0.09177227,0.088336185,-0.063874885,0.009808343,0.015291526,0.06896644,-0.0005863686,-0.012335846,-0.026769675,0.015732786,0.072217844,-0.08351455,0.0055286386,-0.051991083,0.13897654,-0.019225795,-0.030911334,-0.051341157,0.013107086,0.008991532,-0.049866427,0.0044338545,-0.03864318,-0.03357176,0.07323732,0.009290345,-0.016633991,-0.07133721,0.052080598,-0.029748933,-0.034179498,0.05653205,0.08732866,0.007479468,0.038127653,0.05970972,-0.008453725,-0.03247256,-0.046432618,-0.0154788075,-0.106183976,0.021159017,-0.03989877,-0.051622313,0.049874432,-0.01383131,-0.04056115,-0.006506709,-0.0008580371,0.0092063965,-0.00287906,0.01120612,0.06741385,-0.012391629,0.0074729957,0.06383163,-0.022001129,0.015915679,-0.019347433,-2.401795e-08,0.059905417,0.05481698,-0.119332716,0.011570265,-0.059702363,-0.06132546,0.04864253,-0.020835947,-0.053293444,0.028693512,-0.06147209,0.037083328,0.05567853,0.039768193,0.016296335,0.025178645,0.022571236,0.15487748,-0.019492403,0.028601337,0.04528187,-0.00038739853,0.0040620854,0.012104474,0.01088077,-0.03252852,0.021325894,0.03580405,0.03813658,-0.014166743,-0.047669336,0.0478763,-0.035281826,-0.06755752,0.025505912,-0.016087595,-0.10320829,0.021347139,0.032900363,0.007766651,-0.0002862774,-0.09615556,-0.1052444,0.03524675,-0.04964699,-0.025249131,-0.03543401,0.0016312654,-0.017494587,0.04430967,-0.06766035,-0.006860242,-0.009152517,0.0009261296,0.03638929,0.011189687,0.038245037,0.04248267,-0.057005804,-0.074775115,-0.018089032,0.0033831445,0.024060966,-0.08677267} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.901295+00 2026-01-30 02:01:12.592254+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2270 google ChdDSUhNMG9nS0VJQ0FnSUNjcG9qSG13RRAB 1 t 2273 Go Karts Mar Menor unknown El mejor sitio para pasar un rato con los amigos el mejor sitio para pasar un rato con los amigos 5 2021-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "El mejor sitio para pasar un rato con los amigos"} {-0.04999944,0.034671776,0.01953464,-0.07139435,-0.030573236,-0.051693883,0.07757845,-0.012149395,0.04174944,0.08647831,0.033899993,-0.009437911,-0.03807413,-0.003416413,0.013107941,0.034024805,-0.081539445,0.028497372,-0.012641195,0.013684188,0.03596408,-0.044792883,-0.12045157,0.10884602,-0.09367084,-0.053204227,0.05265829,-9.190459e-05,-0.047504738,-0.041554075,-0.0027041114,-0.009006527,0.05797467,-0.037584197,0.0054799668,0.0035078246,0.060618322,-0.1235423,0.017192813,-0.024492495,-0.07550157,-0.047864504,0.046479512,-0.055583406,-0.016642276,-0.081705645,-0.009400652,0.019446814,0.05926758,-0.04936127,-0.07453476,0.0018652702,-0.013718709,0.021802315,-0.05367076,-0.023260165,-0.058816474,-0.0026880046,0.07670587,0.030404553,-0.0006374962,0.042448547,-0.0030673926,0.026885169,-0.053737674,0.0018503862,0.044288483,-0.008846633,-0.092171885,0.10855521,0.054793853,-0.07084527,0.02270639,-0.02416173,0.01964042,-0.039028227,-0.061249856,-0.01691341,-0.05110231,-0.046056494,-0.010415643,0.009688207,-0.043932255,-0.057793964,-0.0050064623,0.030376805,0.008997231,0.03776652,0.03083205,0.03866939,-0.022839515,0.047005143,-0.10126769,-0.029269485,-0.0016157456,0.011283434,0.08835697,0.024799565,-0.01320464,0.061953068,0.1075323,0.11866425,0.006496534,-0.051308528,-0.034629956,0.03098188,0.0041331416,-0.04810464,0.038521096,-0.0031847465,-0.08289077,0.0016467323,-0.07455271,0.035873726,-0.10039904,0.03359904,0.04213105,-0.070168376,-0.007197175,-0.020093406,0.058815476,-0.022460394,-0.01034592,-0.011523089,0.05491046,-0.09782944,0.0041328627,3.925104e-33,-0.03498997,-0.010893074,0.031022685,0.008538216,-0.02941221,0.058803268,-0.03177542,0.02016084,-0.060756613,-0.028422859,-0.05554609,-0.009561518,0.048758585,0.00031456604,0.05834376,0.0354246,-0.05160493,-0.03723178,0.0894529,0.005160165,-0.081274465,-0.047745984,-0.066143066,0.017116291,-0.0020967734,0.06710664,-0.014286893,-0.06153118,-0.07500464,0.084160134,0.0051451745,0.057301857,0.0017806969,0.041144334,-0.01561132,-0.0728141,0.077757366,0.032747086,0.0489104,-0.03682286,0.07134735,0.06493274,-0.023224553,0.027548542,0.024010355,-0.0028406382,0.027910197,-0.04314344,0.055439264,0.017537218,-0.079934776,-0.03321457,-0.014239466,-0.13263647,0.03661346,-0.09163702,-0.09145809,0.08241144,-0.040635817,-0.04930063,0.0865107,0.0014522285,-0.020327862,-0.028597668,-0.026563283,-0.029422108,0.020986205,0.0092110885,0.10373718,0.03478599,-0.0030507317,-0.04566182,-0.012299547,-0.024240827,-0.026057757,0.030729711,-0.05493585,0.061184064,0.0012752734,0.010411669,-0.029625673,0.026341675,0.004767086,0.065771416,0.06501944,0.024435163,0.049396437,0.07824717,-0.016956838,0.070227616,0.03353235,0.033213332,0.042026177,-0.070049934,0.00316306,-5.7075023e-33,-0.042408444,0.030362878,0.0037163196,0.08169866,-0.032156114,-0.0095485225,-0.013415144,-0.01341085,0.036377676,-0.04126587,-0.060302153,-0.114846095,0.11793961,-0.041048173,0.022334807,0.12598656,0.025206167,-0.08386091,-0.07711277,-0.009853771,0.02429432,-0.047020793,0.06215506,0.009130884,0.012479864,-0.0507169,0.030525692,0.030745273,-0.05253536,0.0016518108,0.05978881,-0.009990283,-0.025736809,0.05707489,-0.047660258,0.0137944445,0.012595729,0.03469339,-0.0042778496,-0.0057184515,0.0386511,0.060764834,-0.04282195,-0.008898971,-0.034987956,-0.010251249,0.0030614978,-0.079399765,-0.072167054,-0.0401115,-0.01761808,-0.06705407,-0.015027133,-0.09300263,0.025914231,-0.0077938745,-0.04194264,-0.075040646,-0.075938664,-0.006897937,0.050303333,0.07639813,-0.0721688,0.010579491,0.053208806,-0.013781886,-0.017415574,-0.003946567,-0.002876734,0.12641291,0.14029662,-0.02679488,-0.083739534,0.023314128,-0.021377092,0.02146161,-0.03926192,-0.0016619647,-0.004203611,-0.00567702,-0.030994825,-0.010166927,0.02316827,-0.045793056,-0.008410742,0.0078064995,-0.06369587,0.07268453,0.019462926,0.011483262,0.09187523,0.021884117,-0.029021775,-0.056156702,-0.049271937,-2.4121059e-08,0.021657065,-0.12231597,-0.061638977,0.0479668,0.0041190116,-0.0005012234,0.02105517,-0.029932516,0.023623092,0.16666369,0.009015758,-0.08058073,0.050015483,0.0372842,0.028584307,0.08639943,0.08265326,0.055920083,-0.012680253,0.024783375,0.021846611,-0.062620595,0.0023401917,-0.043965664,0.039300997,0.0025281792,-0.0266035,0.026080549,-0.0016818307,0.009307271,-0.063802674,0.0061633517,-0.07811616,-0.058236104,-0.025888138,-0.021526026,-0.04869149,0.022890398,0.005592687,-0.025956886,0.07460002,0.038894128,-0.05945896,-0.0041455845,0.05036804,-0.0681663,-0.005252129,0.0011737595,-0.003012566,-0.0069456776,0.010859766,-0.07061123,0.114289485,0.030988386,0.08424089,-0.02721484,0.043431945,0.050944295,0.059640724,-0.005855716,0.059808373,0.18268552,-0.030097384,-0.013508664} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.893707+00 2026-01-30 02:01:12.693426+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2242 google ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE 1 t 2245 Go Karts Mar Menor unknown C est un peu cher mais c'est cool !!! c est un peu cher mais c'est cool !!! 4 2018-02-01 01:52:39.833374+00 fr v5.1 V1.01 {} V- I1 CR-N {} {"V1.01": "C est un peu cher", "V4.03": "mais c'est cool !!!"} {-0.052436825,0.03628797,0.058333207,-0.014646507,-0.025863215,0.089945935,0.092319995,0.049358442,0.013090479,0.046783246,0.077812284,-0.1416702,-0.01121057,-0.06598453,-0.05701183,-0.048029043,-0.05300691,0.059705574,0.012521138,0.051770985,-0.055758994,-0.10861701,0.005820447,0.05276493,-0.0755914,-0.00030754882,0.036172986,0.012176801,-0.0058147367,-0.024967298,0.00020846457,0.07940497,0.0060465564,-0.056983836,0.043453917,-0.0400143,0.04352924,-0.14095819,0.02205501,0.06216206,-0.07011109,0.015560502,-0.01963652,0.013230858,0.06275936,0.060284268,0.022290073,0.07982274,-0.07690194,0.0014565499,0.04542426,0.063477114,0.023457868,0.009700494,-0.009769082,0.03788309,0.068815745,-0.04786322,0.06138924,0.042846605,-0.022027109,0.013957525,-0.023338001,-0.028797468,-0.031810135,-0.04770187,0.01556944,-0.047177184,-0.03981571,0.021951443,0.046302553,-0.035752993,0.026320497,0.020736214,0.032852836,0.021876337,-0.025991326,-0.07676381,-0.039585397,-0.014928165,0.019604815,-0.013496832,-0.017290652,-0.09166874,0.04410801,-0.07305045,0.023550857,-0.06726625,-0.0007548157,-0.039233245,-0.045740522,-0.0050908085,-0.07032736,0.0050698714,-0.0055942526,0.0068530706,-0.020170074,-0.036657088,0.0007521634,-0.021198325,-0.028121376,0.07143199,0.0042515015,0.047108624,-0.055614494,0.009926709,0.034319926,0.0031335463,0.025772389,0.053589318,0.0071850982,-0.052879814,-0.09491396,-0.097264506,-0.010007215,0.0076658563,0.030598624,-0.0783578,-0.020632265,-0.058294706,-0.0018802462,-0.042123098,-0.05058104,0.021466797,0.0153222205,-0.09548574,0.055567726,-1.282755e-33,-0.01533024,0.027171971,0.0074187974,-0.014083663,0.013438845,0.011407504,-0.04739335,0.002453082,-0.0389002,0.016795877,-0.0772293,-0.01452541,-0.0336865,0.090924196,0.0047183996,0.01231089,0.07478818,-0.050255056,0.11004819,-0.04829123,-0.011956815,0.059658356,0.051327147,-0.005684552,0.061201047,0.008327068,0.024755124,-0.019514715,-0.0049991235,0.008503354,0.044908136,-0.019527018,-0.021972353,-0.026238896,-0.008406387,-0.070021465,-0.013395254,0.078451715,0.0340688,0.05211574,0.12003113,-0.028178321,0.06911173,-0.08790861,-0.029603126,0.0692611,0.027894445,-0.053356484,0.09621404,-0.057587214,-0.021712953,-0.058677934,-0.10044822,0.05552513,0.06602741,-0.021589572,-0.083945855,-0.057007976,-0.06170109,-0.057632346,0.07194255,5.02502e-05,-0.014008584,-0.057132382,-0.030973384,0.022111133,0.02413291,0.09946703,0.06418382,-0.025728973,-0.089127146,0.016908702,0.054134257,-0.06554185,-0.016935132,0.09476809,-0.025135998,0.024593037,0.012775106,-0.031311676,-0.13209845,0.008273897,0.0402834,0.036203884,0.028716113,0.034827042,-0.06986431,0.006657452,0.022392787,0.026531072,0.013926846,0.008447218,0.057604086,0.034481663,-0.023504676,-2.0430437e-33,0.024325412,-0.006903726,-0.015941018,-0.020369487,0.001921233,0.019427821,-0.07543138,0.04248909,-0.031996757,-0.046248116,-0.06699676,-0.08672503,0.07689932,-0.08709595,-0.025010133,0.11448284,-0.010352009,0.06510971,-0.040085386,0.0841845,-0.07365905,-0.094882846,0.018148785,-0.03900692,-0.052753203,0.015097537,0.09712501,-0.009136837,0.0728623,0.0345568,-0.02125365,-0.009008653,-0.079909995,0.057508048,0.08066697,0.008559359,-0.02037545,0.0036426978,0.011662751,0.058398876,0.015952373,0.03989005,-0.0005587425,0.005736555,0.039658066,-0.025373867,-0.020238046,-0.0599353,-0.08636518,0.033519212,0.0526587,-0.06812266,-0.01711587,-0.032372247,-0.00391042,-0.06478362,0.030508222,-0.021731839,0.0053886203,-0.0186742,0.059386216,0.016359933,-0.012597781,-0.01105584,-0.005871509,0.010939463,-0.1020968,0.04684066,-0.009976867,0.008410482,0.10067981,0.023200912,-0.14708388,0.03377847,-0.13834141,0.00024166402,0.010952325,-0.0046252306,0.05904628,0.09957683,-0.14587331,-0.01565845,-0.05300906,0.0067143384,0.05063694,0.05341853,-0.034870077,-0.052190382,0.04727102,-0.03782193,-0.013829526,0.025205527,0.06645252,-0.006156885,0.00043085398,-2.0038378e-08,-0.016989449,-0.015594263,-0.01815265,0.06690307,0.08535015,-0.08631542,-0.08803471,-0.07663754,-0.045337617,-0.027210217,0.017189035,0.030931894,-0.05925034,0.0397894,0.030849881,0.064738594,-0.02330117,0.03266719,0.09081564,-0.0036359883,-0.03518186,-0.0046575363,-0.030208442,-0.10293961,-0.1088601,0.031434894,0.05368274,-0.0031137322,-0.01176107,-0.063776456,0.055637322,0.033949044,-0.042411268,-0.00993761,0.025720298,-0.07047909,0.01837253,-0.021240277,-0.041939978,0.021551665,0.122663155,0.09264823,-0.019934325,0.013668291,0.054488193,-0.04230585,0.048598267,0.044966724,0.022040335,0.11240489,-0.027121138,0.0026688376,-0.020943927,0.060604025,0.029672079,0.04193637,0.0059531713,-0.02108883,0.001310381,0.049918864,0.018165672,0.027347742,-0.003430953,-0.0046846094} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.918331+00 2026-01-30 02:01:12.594828+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2243 google ChZDSUhNMG9nS0VJQ0FnSUNHOHFiSVVBEAE 1 t 2246 Go Karts Mar Menor unknown Nos ha encantado la experiencia nos ha encantado la experiencia 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Nos ha encantado la experiencia"} {0.029941212,0.08349215,-0.031016707,0.014684238,-0.004459799,-0.03925351,0.09700407,-0.00480153,-0.0017867007,0.03843168,0.074599676,-0.023421615,-0.00939216,0.0034397359,-0.008756578,0.0058568018,-0.029821647,0.015208641,0.03936612,0.009984705,0.037564542,-0.081037454,-0.05958224,0.07245823,-0.045226835,-0.019744132,-0.02694171,-0.054442216,-0.046768777,-0.095654786,-0.019255469,0.025549388,0.044398144,-0.015549596,0.0020036383,0.08456565,0.018684736,-0.01039442,-0.05747051,0.033303604,-0.12530112,-0.018848743,-0.01664693,-0.063388385,0.009407424,-0.03968547,0.0018559168,0.064916074,-0.0073422045,-0.006614577,-0.027774902,0.02007771,-0.01742686,-0.006787173,0.049060468,0.021977816,-0.0031514447,-0.043568965,-0.020951707,0.0019460354,0.042855557,0.023719443,-0.09420031,0.0037192053,0.05396059,-0.053606745,0.033967394,-0.0063110716,-0.1250556,0.039718457,0.09984219,-0.059471708,-0.02068351,0.03987689,0.021196956,0.017771732,-0.01942903,0.008018062,-0.012021743,-0.009441237,0.08196549,-0.037909966,-0.043692857,0.008561332,-0.00012334994,0.02461165,-0.007851523,-0.037932172,0.0024524538,0.04234074,-0.039849814,0.012633204,-0.16557306,-0.0070372694,0.009386439,-0.0163196,-0.0240078,-0.018665561,-0.025666626,0.10360468,0.024753353,0.050205797,0.034438405,0.04120004,-0.042871185,-0.033094913,-0.0010546315,-0.041186914,0.034792084,0.022009186,-0.044556938,-0.1305959,-0.051805746,-0.04422762,-0.07466312,0.0025328635,0.0070687947,-0.06549467,-0.03958646,-0.09561582,0.03817915,0.06488628,0.008400512,-0.005638765,0.02256364,-0.072746344,0.029335603,1.2226492e-33,0.0030034855,-0.09160705,0.03989716,0.08620137,0.0049383678,0.099011146,-0.021105403,-0.040519383,-0.031543493,-0.075730994,0.0062730866,0.123494454,0.07836562,-0.04796075,0.059588786,0.10548999,-0.024061926,0.027396236,-0.01085428,0.017808788,-0.09592675,0.015700793,-0.018226767,0.087797955,-0.020517131,0.03629291,-0.018196432,-0.06736588,-0.029976431,0.045529265,0.055619016,0.05393763,-0.028714823,-0.050211772,0.036055893,0.020670269,0.07104503,0.018727139,0.09466923,-0.07264184,0.002865305,0.021993399,0.009837172,-0.017284825,-0.07722302,0.049282253,0.092389256,-0.003906607,0.015955895,-0.038078886,0.023741964,-0.03624794,-0.037211005,-0.01734221,0.016445866,0.06088371,-0.057809636,0.09814444,0.011803108,-0.07850354,0.056383725,-0.0020254855,0.03589183,-0.07882925,-0.0035033855,-0.08092841,0.014327104,0.017303593,0.13873112,-0.0074015367,-0.08503608,0.03832618,-0.010112809,0.047223233,-0.0050639748,-0.0010902572,-0.041744433,0.015327207,-0.0358263,0.035548627,-0.09206242,-0.040056087,0.03944505,0.036881093,0.07099731,0.106842175,0.03631659,-0.027090557,0.009917047,0.17018077,-0.047820654,0.03349576,0.041697703,0.005773023,0.06133041,-3.78499e-33,0.003088168,-0.04388369,0.005824116,0.013521812,0.02665847,0.018400261,-0.09169683,0.019786559,-0.0667802,-0.04465221,0.00031822475,-0.09724724,0.15081306,0.040164232,0.023924962,0.024438266,0.0042879074,-0.04357488,-0.031357378,-0.04210738,-0.004133023,-0.015222777,0.016310552,0.023626521,-0.01659387,-0.03131185,-0.023702689,-0.0039153784,-0.09903901,-0.06223008,0.009677633,-0.034790218,-0.053020254,0.08509848,-0.07165368,0.09434066,0.040422942,0.039567728,0.010392068,0.042749237,-0.05751137,0.07733924,-0.025229607,-0.026261639,-0.009432145,0.024410348,0.025129123,-0.08952428,-0.07271857,-0.039638814,0.12558189,0.037648883,-0.06841457,-0.06366861,0.03013609,-0.07031411,-0.07878754,-0.022221975,-0.07353644,0.048944097,0.08609076,0.040060125,-0.11711236,0.04027654,0.010850138,-0.034476314,-0.017914295,0.048983153,-0.013510858,0.061630003,0.05314789,-0.015066147,-0.09447954,0.010496516,-0.004857291,-0.009825344,-0.034820035,-0.036317956,-0.0064162877,-0.054837074,-0.06687965,-0.0073073125,0.02669995,-0.030094981,-0.007957957,0.023400757,0.008744504,-0.003021678,0.010420136,0.022534473,-0.026061784,0.038885828,-0.079566106,-0.0631367,-0.02541077,-2.1779982e-08,0.010403189,-0.032322682,-0.030540207,-0.0051096515,0.023365028,-0.028728995,0.006714418,0.052955348,-0.055601966,0.038176086,-0.026967859,0.0037240922,0.009771661,0.045532063,0.01991028,-0.050988853,0.17063367,0.1188528,-0.040098034,-0.02685539,0.030857908,-0.017458228,-0.12654153,-0.029852154,-0.040983066,-0.009027416,0.0041401424,-0.041316096,0.0028167304,-0.01742485,-0.02747341,0.035649654,-0.017607229,-0.04580274,-0.057327986,-0.04523814,-0.066954665,0.0016358576,0.01621353,-0.005713111,0.07319933,0.073958084,0.025267296,0.030628625,-0.11289094,-0.02055792,0.049458865,0.012766731,-0.014429903,0.019381639,-0.02000158,-0.017724564,0.07555085,0.039458007,0.05549509,-0.029856572,0.056694645,0.08383132,-0.0030671621,-0.0008134068,0.03744207,0.06699609,0.035551067,0.027491266} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.939052+00 2026-01-30 02:01:12.598321+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2246 google ChdDSUhNMG9nS0VJQ0FnSUNVanJpOS1nRRAB 1 t 2249 Go Karts Mar Menor unknown Excelente circuito muy moderno y detallado. excelente circuito muy moderno y detallado. 5 2020-02-01 01:52:39.833374+00 es v5.1 O2.03 {O2.04} V+ I3 CR-N {} {"O2.03": "Excelente circuito muy moderno y detallado."} {-0.0465812,0.04633283,-0.009941535,-0.037373643,-0.07919019,-0.018763317,-0.024314122,0.064484864,-0.0496277,0.060933623,0.10570418,0.0066498043,0.024811914,0.024824725,-0.0011208629,0.0743374,-0.08227816,0.012859689,0.052563865,0.017702138,0.06222055,-0.04846557,-0.080102794,0.069536656,-0.010833283,0.053759776,0.030658199,0.036405277,-0.051428065,-0.100468904,-0.11229145,0.11562393,0.08760222,-0.029690795,-0.06463687,-0.06940314,0.052888885,-0.023317425,0.060183648,0.059736997,-0.09548316,-0.036425196,0.056077205,-0.05483232,-0.003671564,-0.0631082,0.020939106,0.056299724,0.10358573,-0.054548312,-0.025532782,-0.057948846,0.004186456,0.024058668,-0.007224156,-0.057764784,0.01537989,0.04384285,0.021676809,0.023388619,-0.011154998,0.03222205,-0.013881274,0.072529405,0.0013141482,-0.015989473,0.012068735,0.01635649,-0.07825992,0.032548733,0.029621301,-0.076104276,0.024385523,-0.052500125,-0.0029302177,0.02278223,-0.018558541,0.01746095,-0.024987932,-0.0155826295,-0.0067187287,-0.058735024,-0.030530479,-0.041567087,0.03130946,0.034398496,-0.011253487,-0.053523604,0.017218499,-0.08181833,-0.03141335,0.008217142,-0.054794323,-0.03557709,0.0013616456,-0.022821423,0.01588466,0.0025650542,0.011641772,0.061221782,0.09327421,0.028888887,0.073383495,0.0069836816,-0.008405049,0.054042716,0.059362084,-0.011238024,0.019938098,-0.00051343796,-0.029334582,0.004775109,-0.13789618,-0.016714163,-0.014219877,-0.047113158,0.0044149393,0.034746274,-0.040746544,-0.07649975,0.057918306,0.01684156,-0.06712576,0.01492902,0.019503528,-0.030854236,0.10158097,1.7295744e-33,-0.06405256,-0.06371577,-0.05353745,0.07325156,-0.009251059,0.05381795,-0.03671054,0.03150538,-0.006555241,0.0034773129,-0.028909037,0.12789997,0.01591997,0.017520562,0.096095085,-0.011269,-0.012570065,-0.075767785,0.11901641,-0.0046298667,-0.014139932,-0.023388898,0.01663813,0.041179206,-0.029062152,0.08065378,0.045416027,-0.029232617,-0.085834384,0.023566352,0.0059392303,0.04643442,-0.009393211,-0.041120056,-0.047740288,-0.0005126285,0.063537724,0.009983834,0.08267496,-0.043994594,-0.035706546,0.026605805,-0.035051707,0.006822975,0.03130585,-0.0005572664,0.06332117,0.06713301,0.13355052,0.066533804,-0.1076608,-0.12092268,-0.033471886,-0.030351896,0.010155556,-0.00808988,-0.058137808,0.10874888,0.036548402,0.0069979625,-0.030285446,0.041503564,0.005003777,-0.028435873,-0.10235326,0.10363488,0.01772536,-0.054025654,0.09618176,0.03307323,-0.07745741,-0.031234635,-0.07304814,0.039062403,0.021028208,-0.033144545,0.032340385,-0.008354692,0.050345432,-0.029788367,-0.09835619,-0.022159118,-0.02391239,0.052865464,0.0858667,0.115878485,0.08913736,0.07439286,-0.0145013565,0.09188095,-0.033137683,0.050523058,0.035723098,0.023437748,0.09448073,-3.243408e-33,0.015601603,-0.021477487,-0.0095814895,0.07865295,0.012477429,-0.026738489,-0.041892156,-0.055696715,-0.03896994,-0.06590906,-0.037848644,-0.06490905,0.05973885,0.0048782597,0.004362201,0.018784354,-0.004707273,-0.071627855,-0.12418123,-0.032961924,0.011559017,0.081107296,-0.009151991,-0.04924748,-0.056911148,-0.034090623,-0.037507735,0.03375501,-0.03467911,-0.019270148,-0.03217064,-0.009521434,-0.025549026,0.07153185,-0.045964684,0.06684483,0.085302874,0.043337382,0.011345579,0.007563865,-0.029849242,0.07398727,-0.025442071,-0.0034666902,-0.027508346,0.06154691,-0.025142545,-0.09537633,-0.053963594,-0.036451984,0.019573942,-0.041433595,0.018807981,-0.086797915,0.00063558057,-0.030803805,-0.07342666,-0.06570377,-0.13210575,-0.005681756,0.023733651,-0.036444817,-0.025564918,-0.0547534,0.06772703,0.053605508,0.025316807,0.032102928,0.023759063,0.046115093,0.12061767,-0.0076739476,-0.042793054,-0.041980445,-0.018144455,-0.05465646,-0.15615092,0.043105092,-0.016538536,0.021631658,0.06591766,-0.01638339,-0.03722417,-0.07392244,-0.037925508,-0.014775465,0.039416328,-0.015665594,0.0069505395,0.0063548335,-0.006347121,0.044363927,-0.09387354,-0.048283003,-0.025672473,-2.2550148e-08,0.02156159,0.019808093,0.030118566,-0.0056958515,0.053123508,-0.036364578,0.00085054775,-0.020275448,-0.025194615,0.022754245,0.06717342,-0.036907133,0.041393485,0.07357003,0.023115663,0.08757136,0.045142844,0.066798665,-0.018967254,0.008214561,0.105372734,-0.03350741,-0.04912184,0.025465222,0.029508486,0.025958594,0.0020387492,0.012328218,-0.016888957,-0.03576297,-0.04212463,-0.007323332,0.0059925085,-0.04336745,-0.014283392,-0.008886556,0.0022387772,-0.0015230908,0.018939283,0.007110367,0.0013543584,-0.08886389,-0.07914139,-0.004140234,0.033914384,-0.048990157,-0.01529889,0.03006633,-0.03441158,0.034807388,-0.03162318,0.024462847,0.004661357,0.05821754,0.016993193,-0.015628627,0.069958575,0.0068744635,-0.06293329,0.00040947887,0.0427495,0.08480871,0.06499149,-0.0859125} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.000468+00 2026-01-30 02:01:12.606336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2271 google ChdDSUhNMG9nS0VJQ0FnSUMweV83LXRRRRAB 1 t 2274 Go Karts Mar Menor unknown nunca había estado en un karts. me ha encantado nunca había estado en un karts. me ha encantado 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "nunca había estado en un karts. me ha encantado"} {0.011265087,0.043712787,-0.047102097,-0.011065107,-0.06626293,0.029725673,0.05902225,0.011805708,0.027952744,0.06533367,0.0067534833,-0.0063807312,-0.070929796,-0.023523519,-0.026591381,-0.027565321,-0.01702926,0.051136494,0.052481554,-0.005144808,0.034804333,0.002901531,-0.08082262,0.07784426,-0.06839878,-3.4606954e-05,0.010564418,-0.009268202,-0.049745392,-0.09794175,-0.067000784,-0.025754232,0.07194268,-0.011799957,0.009692922,-0.026613327,-0.016320972,-0.076836236,-0.026336066,0.03690917,-0.043735515,-0.050991476,-0.02677362,0.007873964,0.045745663,-0.029830843,-0.0003741925,0.08751801,-0.0035162072,-0.0015620346,-0.019855313,-0.037452105,-0.05926052,0.0034446032,0.0071927994,-0.028209716,-0.050590932,0.061608016,0.13911757,0.042628128,0.07518845,0.07309568,-0.05415204,0.015240448,-0.033158336,-0.05138349,0.045046996,0.023595085,-0.11591019,0.10725363,0.13946751,-0.08818889,-0.033982903,0.04074731,0.05669201,0.00084414077,0.018795941,-0.017412476,-0.01872937,0.027520413,-0.011980402,-0.05039981,0.001372582,-0.090638906,0.029719034,-0.06878494,0.012357051,0.048512377,0.07093351,-0.0195186,-0.029776648,0.061273526,-0.06679809,-0.025810303,0.060540866,0.0038539069,0.0080235135,0.0066994135,0.07411529,0.009791276,0.10839638,0.0029015513,0.060257774,0.03654743,-0.03280928,0.06688712,-0.0010278967,-0.042534772,0.057844043,0.036103055,-0.08087027,0.0016542448,-0.09800146,-0.038089998,-0.086652085,0.007837895,0.067232154,-0.10331728,-0.026258854,-0.028835498,-0.0086007705,0.005449861,0.03941544,-0.00051380275,0.046637215,-0.07990158,0.0663763,1.0603549e-33,-0.13472384,-0.08089465,0.0038176787,0.00045711646,-0.015157211,-0.057135057,-0.048331477,-0.07417355,-0.118428394,0.027674546,-0.04042142,0.086745344,-0.05863842,0.034359034,0.11392362,0.07950022,0.058012526,-0.008777449,0.052329488,0.010243968,-0.1024773,-0.0042303763,0.03677604,0.056741934,0.011891255,0.030835953,0.047023606,-0.07812821,-0.068172045,0.029724034,0.023949554,0.043089617,-0.030923268,0.0032029578,-0.0675183,-0.024641337,0.03867305,0.06544889,-0.039217878,-0.0295736,0.033198707,0.028688902,-0.006660924,-0.028137637,-0.017790463,-0.012392441,0.074858725,-0.008105585,0.051017135,-0.01739758,-0.061035924,-0.031074712,-0.0022990806,-0.03565541,0.07695053,0.023891931,-0.035441056,0.049240462,-0.01622729,-0.054976527,0.058791764,-0.036047243,0.0215966,-0.027211139,-0.01902052,-0.07432124,0.011332949,0.029130667,0.114401296,0.009156324,-0.03915335,-0.045162287,0.035156637,0.005509887,-0.00945271,0.029937802,-0.0762066,0.069581404,-0.08554203,0.026626298,-0.054164764,-0.043658685,0.035714917,0.051414307,0.060939297,0.092054285,0.015770111,-0.03492653,-0.017576432,0.102310784,-0.011943606,0.07463049,0.021871598,-0.045704555,0.10064869,-3.284768e-33,0.02036324,0.026195021,0.03504404,0.076406665,-0.004481642,0.025488455,-0.028604787,0.049218822,-0.028553974,-0.039868977,0.0056832144,-0.10002231,0.034307707,-0.067148805,-0.028170887,0.020390986,-0.00095139846,-0.036500692,-0.059891663,-0.078366615,-0.03591303,-0.040926874,0.058131896,-0.04114628,-0.0027963573,-0.042646285,0.030619342,0.06874159,-0.102880605,3.0649026e-05,0.007917164,-0.055193234,-0.0007063611,0.021590631,-0.039827716,0.039862253,0.05824157,0.07235355,0.0032233694,0.03788006,0.031825285,0.108592995,-0.05432084,-0.0062648617,0.0009691385,0.030564709,0.049893126,-0.09564281,-0.018777292,-0.100689046,0.13788418,0.0197404,0.021064648,-0.051906668,0.057396397,-0.025147244,-0.06738109,0.013616579,-0.027665325,-0.029035553,0.052847095,0.040764082,-0.09772212,-0.08690956,0.075077906,-0.008925226,-0.10052636,0.013337332,-0.011691296,0.051146854,0.024458447,-0.018869083,-0.053661734,0.029479584,-0.03586078,-0.06128449,-0.058064837,0.07120348,0.06241364,0.00913066,-0.019123005,-0.04838602,-0.03144179,0.015115275,0.04112233,-0.027231667,-0.00778306,0.026147392,0.047957987,0.07097057,0.041285783,0.065432824,-0.009409623,0.0022223252,-0.065070905,-2.3446447e-08,0.061867464,-0.05441268,-0.12677428,-0.016748846,0.0043357904,0.013454878,-0.030431708,-0.009569676,-0.016380794,0.06383396,-0.024632582,-0.0039212625,0.052829906,0.043263137,0.008506773,0.03831602,0.005075644,0.083644405,0.020864436,-0.05646352,0.06170678,0.037472982,-0.07183827,-0.014677911,-0.068337455,0.018056521,0.009182815,0.0047476334,0.039755575,-0.026107782,-0.011873273,0.04938511,-0.004305765,-0.019506302,-0.0622014,-0.045040973,-0.05336971,0.04305427,-0.040510386,0.0034383743,0.050594606,0.033630755,-0.102512635,-0.040447384,-0.113438606,-0.011284475,0.013059929,0.029660983,-0.05431028,0.045003455,-0.103502065,-0.016732477,0.01987267,0.024881674,0.051209528,0.015222619,0.09006595,-0.055704974,-0.025211507,-0.037523165,0.05158061,0.0036249203,0.0051071187,-0.0070182392} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.91031+00 2026-01-30 02:01:12.69852+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2272 google ChdDSUhNMG9nS0VJQ0FnSUNzaGZPWHl3RRAB 1 t 2275 Go Karts Mar Menor unknown La pista es divertida y los karts están bien la pista es divertida y los karts están bien 4 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "La pista es divertida y los karts están bien"} {-0.017702306,0.004700794,0.00845846,-0.057753075,-0.023610618,0.03875036,0.061582584,0.0043492005,0.054077137,0.016651958,0.06327689,0.013672971,-0.051597226,-0.032231353,0.03167668,-0.041466583,-0.06137568,0.0064107412,0.026844865,-0.0064540915,0.015911637,-0.028649246,-0.06602517,0.096567266,-0.09952143,-0.0025511715,0.03185114,-0.0817887,-0.0036023974,-0.104465894,-0.020474048,0.05395979,-0.00834026,0.031667378,-0.021144604,-0.011702505,0.017299233,-0.01735318,-0.02301266,0.0105144195,-0.056108672,-0.031265985,0.0055893464,-0.01873981,0.03625819,-0.026910966,-0.082740925,0.016561544,-0.013883439,-0.012814446,-0.055010706,-0.034934893,0.024518054,-0.0063694636,0.019681873,-0.026733354,-0.08696564,-0.025832217,0.114924066,0.07759954,0.006307833,0.047513604,-0.07261177,-0.035973333,-0.027166387,-0.122579366,0.049080603,0.0037176434,-0.07237972,0.10120757,0.12352669,-0.017110672,-0.07459335,-0.024594285,0.032341845,0.03162804,-0.032060947,-0.013201394,-0.12912871,-0.00592725,0.01091649,-0.024070946,-0.02332415,-0.050901342,-0.0072093564,0.0071195513,-0.06930301,0.079005755,0.057632945,-0.01626841,-0.020939434,0.042392656,-0.017499609,0.0045152297,0.077800445,0.013876592,0.021346143,-0.13119146,0.020426594,0.06792107,0.10840631,0.052105825,0.011730592,-0.054199442,-0.041176956,-0.03790097,0.05792325,-0.014065804,0.01916014,-0.02092348,0.020221798,0.032222398,-0.05462366,-0.030521285,-0.13519311,0.016461244,0.014948903,-0.10154404,-0.010290887,-0.08547025,0.03135546,0.06481191,-0.085137874,0.055968996,-0.040573895,-0.08159143,0.006353514,9.25182e-34,-0.07675719,-0.002052787,-0.022243042,0.044065077,-0.018087544,-0.042112343,0.01047251,-0.10634508,-0.062440295,-0.07379173,-0.027873263,0.067714565,-0.013290065,0.007646033,0.010995061,0.020725142,0.009738585,-0.003725091,0.06357026,0.046395067,-0.034824505,-0.0076182373,-0.03592263,0.049739614,0.014096571,0.03893586,-0.03863942,-0.05875045,-0.13186039,0.07262014,-0.04810343,0.03991186,0.0073476126,0.07411712,-0.00022792447,-0.027464604,-0.0041357065,-0.0019462946,-0.0113516385,0.043578982,0.047788404,-0.006703232,-0.0768773,0.031429414,-0.022657774,0.023632381,0.04574705,0.023527684,0.041213397,0.0077233366,-0.04337149,-0.029730828,-0.046870373,-0.082844935,-0.020135181,0.017315965,-0.040084794,0.018634783,-0.053012244,-0.009192517,0.051568966,0.03794242,0.006471153,-0.034790143,-0.007384355,-0.0018780025,0.043332905,0.035919767,0.10841859,0.06818925,-0.11309783,-0.008708946,0.020086898,0.02362048,0.085084654,-0.008512504,-0.017743098,0.11198366,-0.024882173,0.045825567,-0.032041892,0.002948249,0.029021343,0.048833996,0.074960314,0.07731743,0.08115321,0.043433033,-0.06183397,0.101893276,-0.05239756,0.06571201,0.055469323,-0.024424795,0.034282953,-3.5655135e-33,0.004830298,0.011499031,0.033109475,0.057532784,-0.025069073,-0.0043886444,0.037314143,-0.044678852,-0.035996985,-0.021760823,-0.09204627,-0.06571351,0.10266871,-0.022144455,-0.021067234,0.050355036,0.070322976,-0.049562387,-0.07158605,-0.015719488,-0.09593809,0.016249496,0.06694027,0.041495193,-0.0116803665,-0.007291619,-0.0070686736,0.03382132,-0.09837481,-0.000696588,-0.014652658,-0.086422384,-0.014146343,0.011220271,-0.04393463,0.058139246,-0.0073106755,0.10085649,-0.010136236,0.08303572,-0.059114672,0.037421305,-0.05467946,-0.0037977225,-0.04293435,0.012806129,0.0848074,-0.09196355,-0.07927204,-0.03255218,0.070462465,0.03506979,0.0025620575,-7.5696335e-05,0.04505657,-0.040906794,-0.037891097,-0.02148034,-0.06120894,0.0021613974,0.02427281,-0.016163882,-0.06731158,-0.046076972,0.10590036,-0.025879402,-0.03902723,-0.082344465,0.06248541,0.011803373,0.076548144,0.035218254,-0.027030896,0.0052441675,-0.019867472,-0.007408332,-0.08409189,0.032430436,-0.007435641,0.039564982,-0.03516319,0.0005462528,-0.0226448,0.0022528847,0.03346791,-0.014915236,-0.057734348,0.022914119,-0.009913561,-0.025002742,0.033126056,0.023396537,-0.009758806,-0.022084512,-0.018376738,-2.041105e-08,0.033274665,0.01434423,-0.15027761,0.02770824,0.02774775,-0.034831878,-0.07863706,0.042305972,0.015266099,0.081993,-0.009518061,-0.00022910286,0.092066444,0.027461896,-0.013495381,0.034147095,0.036755078,0.1429373,0.028180253,0.007100079,0.05950983,-0.007237938,-0.0006714841,-0.03484133,-0.05901108,0.04191114,-0.032115944,0.020604298,0.012459501,-0.012076844,-0.010810647,-0.04322622,-0.0342161,-0.062216327,-0.00296237,-0.0027947277,0.01312064,0.020083992,0.069368795,0.016966308,0.060682885,0.055176485,-0.11836649,0.0503422,-0.09448969,-0.06232978,0.002956605,0.026720427,-0.024313575,0.022965144,-0.031636648,-0.009700931,0.090944245,0.047045045,0.0962842,-0.0134178735,0.047618747,-0.0028434056,-0.08224962,-0.020954335,-0.006854359,0.16780189,0.049751353,-0.0348909} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.928412+00 2026-01-30 02:01:12.702388+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2273 google ChdDSUhNMG9nS0VJQ0FnSURaMHB5QzBnRRAB 1 t 2276 Go Karts Mar Menor unknown El mejor Karting al que he ido, así de sencillo. el mejor karting al que he ido, así de sencillo. 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "El mejor Karting al que he ido, así de sencillo."} {-0.02346226,0.06468004,-0.03852328,0.05581323,-0.09901667,-0.020847054,0.09296461,0.053466856,-0.0009825347,0.0051944978,0.08478932,-0.009086937,-0.028374724,0.03852861,0.003401727,0.0070179356,-0.018026037,-0.008853525,-0.04692936,-0.007451151,0.08307408,0.011604325,-0.08505217,0.027124835,-0.08897681,-0.06296636,0.018480778,0.021764793,0.039730214,-0.087874815,0.038089585,0.06706569,0.00871252,-0.06110875,0.024472233,-0.055524815,0.013522171,-0.029118165,0.05439143,0.0066481754,-0.022677429,-0.048217718,-0.015409317,-0.024905903,0.015018279,-0.008553219,0.015716711,0.07745385,0.022229174,-0.018584715,-0.09167253,-0.023749823,0.030075751,-0.036855236,0.008669937,-0.039137576,-0.05191947,0.03388,0.106373504,0.029697616,0.046890248,-0.009547016,-0.01608705,0.08146357,-0.117596775,-0.058910266,-0.030886862,-0.08331699,-0.102546416,0.0469193,0.10593589,-0.06726571,0.031334937,0.024166724,0.032789625,0.036559273,-0.010727251,0.033008553,-0.04257758,-0.04143807,-0.013432956,-0.021321312,-0.0059043565,-0.07698302,0.066184975,-0.053603176,0.089951165,-0.010152932,0.021956492,0.054709826,-0.08694102,0.023023611,-0.17296448,-0.090630256,0.023943482,0.060610857,0.04320967,0.074129626,-0.0015894875,0.028313467,0.06904523,0.031827394,0.022610845,0.07712679,-0.08465882,0.08856129,0.014451291,-0.07276417,0.02067406,0.010984387,-0.053654462,-0.060635384,-0.05118228,-0.07525812,-0.0420944,0.027073817,0.01894445,0.020494195,-0.016237753,-0.054155327,0.0208143,-0.02199635,-0.035714064,0.028492268,0.04699143,-0.030517938,0.070346095,-2.8002406e-36,-0.11139625,-0.03518004,-0.06988488,-0.00560733,0.058885314,-0.056001794,-0.09400337,-0.042263,-0.036958855,-0.047144588,0.013121901,0.027709961,-0.024467124,0.0043165702,0.06791756,0.086142555,-0.008751276,-0.05287263,-0.014959303,-0.06372703,-0.0358368,-0.071713656,-0.0064538163,0.012780143,-0.016617939,0.07069765,0.08601322,-0.10037555,-0.0586858,0.038971845,-0.022560442,0.036315843,-0.034890022,0.0212507,-0.053437825,0.054460965,-0.014453125,0.013698277,-0.056897942,-0.0030492533,0.011834248,0.052848678,-0.017301425,0.020030245,-0.07766285,0.008355497,0.063707486,0.035184458,0.06175562,-0.034044594,-0.06958488,-0.037097428,0.025379289,-0.06826524,0.023027284,0.010806345,-0.08083616,0.04928733,0.01617494,0.008976822,0.023733173,0.014986916,-0.019983638,0.062240854,-0.09605399,-0.046826545,0.007234949,0.021612061,0.091210045,0.0059689563,-0.0607883,-0.006247867,0.040285844,-0.0385303,-0.018853942,0.023692861,-0.051315755,0.03996721,-0.05608566,-0.0044342,-0.10435223,0.015532007,0.05180213,0.034017257,0.072711766,0.039799143,0.032730404,0.05556969,0.015786529,0.06727458,-0.019687397,0.051652938,0.028153025,-0.00030646106,0.06657715,-2.3995351e-33,-0.0020302236,-0.008498487,0.09371697,0.07595107,-0.019726975,0.00015576332,6.708063e-05,-0.023007583,0.005508968,-0.1017596,-0.064016744,-0.0511643,0.09904474,-0.01244008,0.0061908546,0.05114236,0.0050317664,-0.014925763,-0.049386628,-0.0012264812,0.005882827,0.116442375,0.020460632,-0.028565032,-0.058571678,-0.028291661,0.04778759,0.018520553,-0.08288844,0.023196528,0.02055981,-0.030213997,0.0063544805,-0.017249847,-0.080087,0.099527866,0.007133983,0.04409657,1.8613388e-05,0.09216786,0.04776474,0.08868409,-0.010020004,0.045157276,0.029366143,-0.007441813,0.0030696644,-0.039064612,-0.03609228,-0.012824847,0.04078222,0.0043325135,-0.06069941,-0.08011433,0.06583422,0.000585626,0.020905282,-0.074053496,-0.19593364,-0.007213588,0.026740316,0.0980258,0.07948164,0.0060739703,-0.008268224,0.014977198,-0.08587154,-0.032069657,-0.039877683,0.05740646,0.082115404,-0.0018481764,-0.08963395,0.01756567,0.0013281086,-0.006123805,-0.07496155,0.098542474,0.01592341,0.03693319,-0.028299527,-0.052359916,-0.0009609399,0.012495084,0.0060161077,-0.023143908,-0.06559383,-0.030425085,0.04917597,-0.000985067,0.077388935,0.07333252,-0.035180848,-0.0054594595,-0.048027117,-2.2792229e-08,-0.03415687,-0.018099686,-0.04850205,-0.027219106,0.08934695,-0.0035816045,-0.060253754,-0.0016934146,-0.016931195,0.059541043,0.053716324,-0.058891594,-0.00830886,0.012757473,-0.00087489065,0.062001735,0.06949233,0.06988418,-0.002221801,-0.015339397,0.054051578,-0.023247475,-0.02607542,-0.037547503,-0.0015260653,-0.02153865,0.006812185,-0.008618465,-0.0022251166,-0.07328349,-0.044479493,0.07047758,-0.018699445,-0.06642842,0.0045947917,-0.009077879,-0.008551951,0.05749841,0.017661475,0.051274233,0.061703082,0.043692715,-0.001215272,-0.026815856,-0.0100398455,0.008922985,-0.053185545,0.00013221154,-0.018535139,0.07086173,-0.07491517,-0.05617051,0.100231744,0.051626638,0.114359416,-0.028092554,0.010655383,0.0026193657,-0.080663465,-0.010608256,0.05152385,0.07289122,0.053177685,-0.055631172} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.948649+00 2026-01-30 02:01:12.705476+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2275 google ChZDSUhNMG9nS0VJQ0FnSUNRbVlYLUF3EAE 1 t 2278 Go Karts Mar Menor unknown Los coches van muy rápido y funcionan bien los coches van muy rápido y funcionan bien 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {O1.04} V+ I2 CR-N {} {"O1.02": "Los coches van muy rápido y funcionan bien"} {0.0211411,-0.007827265,-0.0076985643,-0.09716665,-0.0024832487,0.019128865,0.06771784,0.005716084,-0.008792692,0.0035972956,0.0990481,0.0012903045,-0.077055566,-0.018797398,0.043332078,-0.0463755,0.0025763446,0.016075576,0.022825034,-0.013008827,0.06290984,-0.026455564,-0.05968828,0.07608369,-0.11611344,-0.08330276,0.009698606,0.043492533,0.02663918,-0.06611555,-0.028529556,0.07888022,-0.0027424747,0.024386335,-0.051271427,-0.03618878,0.08298628,-0.0687252,0.054875202,0.09638175,-0.119150676,-0.017814845,-0.042522036,-0.0066726035,-0.012060307,-0.06459017,0.0005432953,0.03482609,0.015279054,-0.028165344,-0.0022591888,0.027187597,-0.01662283,-0.004814497,-0.00034220278,0.053317305,-0.08933045,0.01738323,0.081177615,0.0033981758,-0.011180299,0.024067702,-0.0042475536,-0.012466745,-0.014665999,-0.04624815,0.085119836,0.0012929027,-0.03465571,0.07670852,0.100737005,-0.0585984,-0.0308022,-0.0029856123,-0.056936476,0.039482202,-0.0034775448,-0.022809347,-0.06459931,-0.10725815,0.0193472,-0.029588377,-0.0042822473,-0.05199385,-0.021132262,0.00028106148,-0.06819757,0.06903808,0.03297248,-0.036941584,0.0313678,0.011282219,-0.009260879,0.018577704,0.023302699,0.055751886,0.07223652,-0.08506742,-0.028679851,0.08186344,0.07277102,0.06719882,0.080616854,0.045766715,-0.025917426,0.0005656731,0.10447492,0.021236772,0.04366684,0.04162349,-0.031068588,0.030411847,0.022200447,0.0063847913,-0.071357265,-0.010818688,-0.046341423,-0.059589405,0.015753606,-0.11638363,0.100988954,0.048714463,-0.07903834,0.0028515465,-0.0032987145,0.010314624,0.061559863,3.209816e-33,-0.016432583,-0.0026493038,0.009308781,0.047366153,-0.0755883,-0.029796626,0.0055056023,-0.011037204,-0.09017995,-0.03331604,-0.049554255,0.017122498,0.04647527,0.013233411,-0.033268314,-0.011533579,-0.011845732,-0.052776583,0.0440121,0.08182066,-0.0648411,-0.023807527,0.03349351,0.077431545,0.02656667,0.027080318,-0.03718082,-0.10264825,-0.05876215,0.06556166,-0.09689698,0.03587524,-0.013572564,0.008864556,-0.055114754,-0.0419367,0.0010294223,-0.006200998,-0.0010516789,-0.021836953,0.059186373,-0.027842866,-0.10308306,0.02170755,-0.051477592,0.047209598,-0.03035666,0.07357192,-0.006268939,-0.017830499,-0.060197067,-0.00045432334,-0.15537666,-0.027709905,0.0041311053,0.022339169,-0.057055183,0.026825445,-0.014777441,0.02420235,0.05839131,0.057624925,0.025113108,0.045515724,0.011815898,-0.009061379,0.010002466,0.012312175,0.1291579,0.04608463,-0.07239771,-0.05798607,0.013789546,-0.020805482,0.05963795,0.054653697,0.039347775,0.0014510024,0.030679837,0.0043629804,-0.028087625,-0.029785378,-0.021729833,0.013497868,0.074506186,0.064885475,0.032984488,-0.012963235,-0.0049794307,0.066700414,-0.10034532,0.0880806,0.05790468,-0.063487776,-0.025817957,-4.030658e-33,0.029703284,-0.04773627,-0.013799405,0.075153224,0.004553037,0.066554226,-0.027066689,-0.0500664,-0.07030616,-0.05089363,-0.052098118,-0.122460134,-0.003746911,-0.03431933,0.05698043,0.037671965,0.075146385,-0.028512154,-0.01646326,0.016987529,0.06178696,0.020489415,-0.006549192,0.0383292,-0.04636253,-0.026013408,-0.043124456,0.013886061,-0.10056675,0.024071233,0.03993053,-0.022819683,0.0077365334,0.03597111,-0.021358749,0.061087973,-0.018211605,0.07984142,0.032962337,-0.0007602835,-0.027637884,0.040393442,-0.037329018,0.0038502251,0.00731078,0.057264175,-0.058499213,-0.14237274,-0.047715317,0.047762185,0.05039805,-0.021771684,-0.07156552,-0.036429554,0.002043535,-0.015646469,-0.060247544,-0.130386,-0.05679161,-0.010396662,-0.003559291,0.03955818,-0.08341262,-0.032589268,0.12619892,-0.032036338,-0.04053216,-0.059241764,0.119871765,-0.0020640246,0.092177756,0.030317506,-0.045404464,0.015640052,-0.07278462,-0.033157106,-0.100144304,-0.010354318,-0.013415319,0.014884237,-0.02132811,0.057183176,0.026140261,0.039854683,-0.103825055,0.07153173,-0.037005052,0.032869525,0.03468433,-0.019513827,0.091409504,0.025649564,-0.047299005,-0.018715497,-0.014707637,-2.1339018e-08,0.01180715,-0.044473328,-0.032940697,-0.0033495831,0.052033544,-0.008577928,-0.04363797,0.0400168,0.015230753,0.05694077,0.028131941,-0.05778481,0.0765156,0.07087468,-0.010884262,0.059553556,0.03450948,0.09221747,-0.020352544,-0.037512604,0.053892072,0.037506636,0.020623824,0.00032448157,-0.0328479,0.018498518,-0.051040508,0.007363712,0.013920233,-0.023959491,-0.03650939,0.015448538,0.01820796,-0.05192359,0.06537469,-0.038387824,0.0018525342,-0.010461256,0.03947984,-0.04467993,0.011098112,0.027713917,-0.047469273,-0.0003334506,-0.04076495,-0.15289229,-0.0068860585,0.0021151532,0.00031653538,0.0046083797,-0.045548737,-0.00083177007,0.03638229,0.09888995,0.07410888,-0.011285607,-0.036538865,-0.03892794,-0.05464162,-0.031080944,0.054095812,0.13710144,0.06399419,-0.09935943} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:00.98955+00 2026-01-30 02:01:12.711684+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2276 google ChdDSUhNMG9nS0VJQ0FnSUNxZ01iZnZRRRAB 1 t 2279 Go Karts Mar Menor unknown Muy buen trato muy buen trato 4 2022-01-31 01:52:39.833374+00 es v5.1 P1.02 {} V+ I2 CR-N {} {"P1.02": "Muy buen trato"} {-0.041195076,0.026932491,-0.006516419,0.008107742,-0.06654691,-0.009092667,0.16960482,-0.0012533222,-0.0021789912,-0.03474638,0.08942191,-0.01717876,-0.046806928,-0.042309463,-0.055631977,0.05457833,-0.023097485,0.11051519,-0.044276465,-0.02650091,0.0029041825,-0.01992297,0.004464513,0.07799167,-0.033912063,-0.050739978,0.036388114,0.06292506,-0.0073735467,-0.05850722,0.040972758,0.08268001,0.026163097,-0.03181693,0.0021599587,-0.039267242,-0.010188285,-0.052825525,0.042250656,0.04177846,-0.016721927,-0.076360464,-0.04286195,-0.035629347,0.018400773,-0.09802024,0.029376755,0.06477051,0.015684884,0.015392652,-0.0715849,-0.0032900483,0.012023802,0.03263059,-0.0069470783,0.04037829,0.004261024,0.015007836,0.016935244,-0.049631286,-0.021957515,0.014574658,-0.032383874,0.008471285,0.031413212,-0.02751516,-0.05852993,0.026775686,-0.030191103,0.028699059,0.0661167,-0.10459235,-0.06414537,0.030088674,-0.06903486,0.029535681,0.031533163,-0.01568549,-0.03397308,-0.012979586,0.010327228,-0.063269846,0.025632432,-0.003386022,0.019662803,0.002338342,-0.0014130231,0.03428804,-0.027968014,-0.01541557,0.028606245,0.014303489,0.0015338693,0.020822104,0.013573794,0.07160699,-0.016761215,-0.041211378,-0.00063145085,0.09691709,-0.0056818314,0.017167224,0.1396174,0.047987957,-0.045637626,-0.012822668,0.11278486,-0.061398182,0.04423408,-0.022525104,-0.028963441,-0.05694171,-0.019829726,0.004548562,0.103885524,-0.029292447,-0.011859469,0.024231022,-0.006495108,-0.034638412,0.002593256,0.08694479,-0.06833612,-0.0023947016,0.004575464,0.030147409,0.03771667,3.2852374e-33,0.0032401106,-0.09116284,-0.00977922,0.037334353,0.0059802663,0.027891254,-0.09223977,-0.015545947,-0.11524948,0.011525006,-0.080349095,0.009490037,-0.03731679,-0.038240135,0.07540489,-0.0034179103,0.017412528,0.012000142,0.11601073,-0.033846684,-0.07128531,0.014810736,-0.046306606,0.036696084,0.007452518,-0.034329865,0.00081380544,-0.05814685,-0.030415265,0.04381104,0.09931059,0.051719178,0.002666688,-0.046842374,-0.13178259,-0.12706122,-0.10919025,0.047178395,-0.05223418,0.016973143,0.009578314,-0.021905804,0.02465923,0.027289344,0.016356403,0.0062933485,0.06554548,-0.0005490137,0.052183505,0.04031398,-0.032198906,-0.024405876,-0.0815754,0.041382108,0.03790643,0.0008305073,0.032201022,0.07905311,0.05569913,-0.008576027,0.06629113,0.05517632,0.022561857,-0.03560262,-0.043899767,-0.03360152,0.0114792185,0.046806905,0.038983207,-0.01088136,-0.062219337,-0.034738746,0.017649049,-0.006435,0.021345768,-0.03587144,-0.0424997,-0.07980973,-0.0044444567,-0.021036685,-0.067318834,-0.046367653,0.051067572,0.050122023,0.058863264,0.059185166,-0.028510114,-0.050652556,-0.0077174143,0.045544613,-0.096520096,0.027835017,-0.01342372,-0.017559,-0.014565283,-1.2683664e-33,0.04385581,-0.030833531,0.0057854685,0.08374769,-0.020553952,-0.0072123795,-0.04625473,0.0025490352,-0.006278537,0.017162275,0.039577123,-0.1663051,0.025360126,0.0030867036,0.048299488,0.07157816,0.052642252,0.0049280827,-0.09518743,-0.11242484,-0.018740548,-0.043917414,0.014086645,0.022541802,-0.08007537,0.0201023,0.07198396,-0.008492375,-0.0112123,0.027236458,-0.015749993,-0.0053110183,-0.03904574,0.08402521,0.011722604,0.027590739,0.0781551,0.07671073,0.04004666,0.0030537334,-0.04386813,0.016165672,-0.041262683,0.055037,-0.005279501,0.015449964,-0.0014281283,-0.05762364,-0.039589148,-0.0658401,0.04927731,0.0011558299,0.04543892,-0.022490986,-0.0028461865,0.018704463,-0.054791033,-0.09878398,-0.101247184,-0.042586353,0.05414314,0.020146975,-0.030255327,-0.022832133,0.07699769,0.019859836,-0.0990648,0.056272525,0.00024989314,0.02929121,0.033791587,-0.09180446,-0.031569615,0.055752695,-0.07067542,-0.009601405,-0.041886937,-0.026684908,0.0114527615,0.005463101,-0.035647504,-0.043599818,-0.05838143,0.026006375,-0.024624016,-0.019234382,-0.044202875,-0.07131653,0.055345234,0.103654966,0.044092603,0.095304586,0.025734093,-0.03823099,-0.03701269,-1.7029752e-08,0.015272251,-0.07659252,-0.014100933,0.060413986,0.091192484,0.011568007,-0.054600768,0.011963362,0.018468525,0.0733782,-0.092357434,-0.030287147,-0.022174513,0.12755604,0.025315348,0.12592368,0.021389788,-0.060462873,0.072559424,-0.07828898,0.054977514,-0.008413587,-0.010656838,0.06854488,-0.014571484,0.041285455,-0.055169247,0.10528074,0.037784517,0.026577735,0.06927146,0.07135369,-0.019613478,0.0066901254,0.04082845,0.02149463,-0.03873267,-0.07155255,-0.08849738,0.051775523,0.035118084,-0.0027626653,0.113942854,-0.04793206,0.029739631,-0.08037473,0.014711087,0.064763725,0.039746467,-0.008559426,-0.0450701,-0.037007425,0.023468629,0.13751405,0.054447,0.030632934,0.09475525,-0.0067290673,0.03039209,0.040127713,0.027844833,0.07235807,0.0013726623,-0.080051474} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.010825+00 2026-01-30 02:01:12.717366+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2277 google ChZDSUhNMG9nS0VJQ0FnTURRaExTU2R3EAE 1 t 2280 Go Karts Mar Menor unknown Perfecto perfecto 5 2025-04-05 00:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Perfecto"} {-0.042084888,0.06732264,-0.01490414,0.054788187,-0.0117547065,-0.0010413437,0.084714696,0.08441637,-0.079243906,0.05076581,0.041867778,-0.06533481,-0.029756231,0.019502481,-0.014090586,0.03696218,-0.0014963198,0.06212007,-0.0966648,-0.027059091,-0.012114513,-0.042372894,-0.040006332,0.04230723,-0.072202004,0.009762529,0.010318403,0.0841943,-0.0855574,-0.0069682943,-0.076917484,0.07596115,0.117926784,0.020411218,-0.04704734,-0.04796844,-0.04058208,-0.018825714,0.01858753,-0.03214386,-0.060118306,-0.05958017,0.03527348,0.012046407,-0.03670467,0.04692355,0.031995665,0.089882195,0.058861706,-0.047124807,-0.103801206,-0.08475991,-0.07153574,0.07086291,0.010630944,0.08270142,-0.042807586,-0.042315457,0.028543139,-0.014189959,-0.036661554,0.035290916,-0.103003584,0.07532749,0.06987316,0.07662828,0.019492336,0.044008315,-0.020794816,0.06170444,0.04111901,0.03509856,0.031096878,0.011051836,0.028469255,0.020873759,-0.0052416897,0.026082285,0.032025345,-0.0043217046,-0.03876272,-0.05760074,0.01087168,-0.04161895,-0.009033918,0.10352307,0.05908283,-0.013966299,0.02553164,-0.019298311,-0.095275395,0.07848529,-0.02855441,-0.042858988,-0.04826044,0.034218244,0.038566515,-0.01754047,-0.054887027,0.13612176,0.070049964,0.0016961343,0.030487314,-0.035806194,0.07553018,0.030579584,0.068435214,-0.01594721,0.03080587,0.085353926,0.00075333216,-0.055053685,0.017971255,0.0684464,-0.015506947,-0.0044087097,-0.05917302,-0.09070264,-0.012465317,-0.042170692,0.01588465,0.022672374,0.047872383,-0.007690295,-0.05067505,-0.04650884,0.026076272,-2.602338e-33,-0.04635673,-0.0104493145,0.024797484,0.0012576592,0.042634327,0.04279422,-0.08769407,-0.026976323,-0.07822163,0.07956305,-0.061504588,-0.017369706,-0.054750957,0.06848006,0.07411287,0.029950786,0.11041047,0.07883425,0.0059389006,0.044116344,-0.05202336,0.034189027,-0.025430944,-0.005347085,-0.017948117,0.059895385,0.024833618,-0.031373903,0.010669967,0.014418525,-0.03609841,0.02205959,0.012955072,0.040825006,-0.065349534,-0.053422574,-0.01219505,-0.026065076,-0.004568195,0.0018193001,-0.008730011,0.038139008,-0.06263813,-0.022795929,0.028371729,0.008883615,0.07466632,0.012501803,0.07998605,0.011445445,-0.05381754,-0.10853903,-0.06211561,-0.05073074,-0.0058055413,0.0022527494,0.06310729,0.030033221,0.047696352,0.0122822225,0.046009526,0.06935123,-0.10416951,-0.0577391,-0.06980007,-0.0136864,0.01449642,-0.016263094,0.040718906,-0.031840526,-0.045609724,-0.036721066,0.040681385,-0.010749811,0.0078021884,-0.07585152,0.0077860714,0.040851012,-0.021805739,0.0276515,-0.006142467,0.008046585,0.010175267,0.019752603,0.024267951,0.06078725,0.03407092,-0.03426807,-0.015307054,0.051541645,-0.00015143915,0.0058816564,0.0026404592,-0.0016092146,-0.0037516484,2.990509e-33,0.031991612,0.012889329,0.0027572098,0.14761898,-0.006842986,0.014804524,-0.04401272,0.023618208,0.006196288,-0.014601285,0.053578954,-0.07908654,0.1321982,-0.01858869,-0.0055520246,0.10109629,0.06584313,-0.052543685,-0.04380423,0.012633974,0.030022627,-0.06011421,0.019151414,0.017251058,-0.007676453,-0.033592675,0.019755097,0.06919314,-0.11149304,0.03919112,0.09311311,-0.12562394,-0.099517964,-0.03950747,0.03919727,0.068174854,-0.060156487,0.07437531,0.040298432,0.013903057,0.050583456,-0.025749424,-0.01719456,0.10466618,-0.04224789,0.017201798,-0.03182502,-0.063380755,-0.008449619,0.01724503,0.011196886,-0.054485712,-0.0779567,-0.0136006875,0.05471189,0.043726232,0.024047222,-0.04736208,-0.05828604,-0.058519397,-0.04274084,-0.030697724,-0.061214976,-0.011493876,-0.010755491,0.060303558,-0.011349695,0.015226528,-0.0575427,0.0316039,0.041253265,0.031129662,-0.13402694,0.053271748,-0.029259102,-0.017624574,-0.050585363,0.058985606,-0.018048912,0.024532879,-0.053610235,-0.015445794,-0.035654183,0.10449364,0.01749263,-0.033204723,0.0667655,0.004641879,-0.027635176,-0.025682189,-0.007858624,0.084561124,-0.014482823,-0.07590811,-0.013548181,-1.4294954e-08,-0.026758704,0.011799694,-0.032190096,-0.012656006,0.08834359,-0.11021289,0.03116729,-0.069699414,-0.018440697,0.09193088,0.07243677,-0.027700271,-0.014141752,0.019477796,0.026970956,0.0012909261,-0.010897146,0.084154375,-0.03747968,0.019521188,0.024771802,0.04169522,0.0009058748,-0.057197943,0.033679076,0.02316103,0.0077062296,-0.074481376,-0.027510462,0.01397784,0.007076079,-0.003672964,-0.035416793,-0.071804084,-0.04660288,0.03350845,-0.06318346,0.00051755714,-0.01292813,-0.081067175,0.05340455,0.044173192,0.05268336,-0.029368412,-0.058425244,0.01212754,0.097168915,0.00765521,0.03344696,-0.09267423,-0.07083927,0.021142377,0.08706895,0.043922212,0.04723,-0.060951415,0.102055974,0.030227095,-0.027769078,0.059866853,0.14647667,0.077837,-0.0005004272,-0.0111316405} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.028412+00 2026-01-30 02:01:12.730807+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2279 google ChdDSUhNMG9nS0VJQ0FnSUNhOVBHU3p3RRAB 1 t 2282 Go Karts Mar Menor unknown Buen trato, buena pista y buenos karts buen trato, buena pista y buenos karts 4 2022-01-31 01:52:39.833374+00 es v5.1 P1.02 {O1.02} V+ I2 CR-N {} {"P1.02": "Buen trato, buena pista y buenos karts"} {0.008031597,-0.03614977,-0.0048657977,-0.0039859405,-0.08259327,0.018896535,0.037838668,0.042204175,0.004057799,0.012312676,0.08660173,0.051114842,-0.12314548,-0.035684373,0.05340732,-0.0039151483,-0.015219544,0.02080073,0.055632446,-0.06486137,0.05064861,-0.065131105,-0.04683421,0.13338293,-0.08144772,-0.029933196,0.034567796,0.031940147,0.012663226,-0.0726757,-0.074334174,0.053975042,0.059716877,0.04379898,-0.006227772,-0.04791059,0.03064555,-0.0695348,0.0007222145,0.0056023733,-0.013926947,-0.022747364,0.0049224137,-3.1370142e-05,0.05551936,-0.07867436,-0.047853056,0.059535827,0.0353948,0.029811008,-0.022709223,-0.056886222,0.016158821,0.024619628,-0.037407648,0.028281713,-0.05854452,0.029775541,0.119781755,0.0634651,0.015264911,0.04551727,-0.10137857,0.0013853746,-0.011607803,-0.058903597,-0.020753326,0.07249244,-0.058382325,0.06442132,0.13717964,-0.052195694,-0.022275053,0.09604731,-0.034121312,0.040727336,-0.024906918,-0.0033558132,-0.11814784,-0.0009882483,0.023683775,0.002716432,0.015634524,-0.025129689,-0.019783158,-0.011223613,-0.016898977,0.061241828,0.044410035,0.03282379,-0.032644603,0.08667304,-0.045700397,0.004227964,0.0005387869,0.018336823,0.01295305,-0.049744166,0.02498168,0.060019143,0.10017915,0.044011265,0.114637904,0.0060971244,-0.058699686,0.024782578,0.034190524,-0.006271781,0.068962194,0.014730104,-0.05857357,-0.00085960334,-0.043770045,-0.026809165,-0.07109213,-0.020264708,0.016874079,0.03002229,-0.006907216,-0.06530498,0.007070317,0.0614047,-0.023615114,-0.0028990153,-0.021802943,-0.0601633,0.009605256,2.9506243e-33,-0.07834098,-0.010547772,-0.035948586,0.07038773,0.01784917,-0.03627534,-0.0137730045,-0.101683915,-0.09240908,0.056181643,-0.07448327,0.03511859,-0.06391756,-0.04379389,0.14045104,0.028740315,0.015698323,-0.0035601996,0.050953973,-0.05247685,-0.092501186,-0.033475958,-0.035648018,0.025548935,-0.042983696,0.040656894,0.0050805146,-0.06976721,-0.027594239,0.057307128,0.037108414,0.12754959,0.0062568854,0.00038698313,-0.05479146,-0.08549478,-0.02360608,0.00040302507,-0.07973213,0.038140494,0.03318334,-0.0078323055,-0.029185105,0.062439688,-0.021285836,-0.027847568,0.036203854,0.039354667,0.08029869,0.014761803,-0.09167925,-0.035972256,-0.07492987,-0.008986876,0.01948486,0.028517023,-0.027840097,0.040301155,-0.03657108,-0.033615224,0.07911861,0.061198696,0.034536604,-0.05774109,-0.08630135,-0.0012513631,0.054679833,-0.0140947355,0.10313753,0.026365502,-0.0695825,-0.05515778,0.06453629,-0.0260793,0.073827446,-0.00023758537,-0.06769104,0.046897966,-0.051367126,0.021315495,-0.09479166,-0.008317424,0.00809421,0.113348454,0.05995391,0.050361462,0.054997083,0.0047778403,-0.02404537,0.06993198,-0.09215718,0.068010755,0.0030019656,0.00710718,-0.011825396,-3.0604602e-33,0.0333481,-0.033256814,0.05073277,0.06461983,-0.071972616,0.0043083266,-0.04898852,-0.022326626,0.005447421,-0.010941225,-0.042015724,-0.102073714,0.085842386,-0.03646917,0.009251557,0.082357876,0.04826245,-0.019595565,-0.105585314,-0.09984732,-0.03616222,-0.010597357,0.052040424,0.07034301,-0.031046677,-0.0030479517,0.050038848,0.061677888,-0.05910884,0.0038047782,0.038396157,-0.08892921,-0.019613605,0.061399855,-0.03787353,0.07549279,0.0822328,0.09575735,0.026266297,0.011069056,0.0049463967,0.020167926,-0.045988083,-0.03829874,-0.019147536,-0.021007206,0.0406837,-0.073908724,-0.00080674584,-0.054398026,0.13688512,0.011728349,-0.023185957,-0.0046685003,-0.012383985,-0.020133158,-0.075421415,-0.031380743,-0.10690638,-0.024761451,0.04418826,0.00079762266,-0.060135454,0.017402682,0.06628532,-0.026362026,-0.02633176,0.011427791,0.02848628,0.020171769,-0.0017665187,0.018704008,-0.003594072,0.08107944,-0.045263484,-0.047885694,-0.0475884,0.0012819673,0.008008105,-0.02168383,-0.020522904,-0.004202224,-0.02182058,0.017510755,-0.008119645,0.023914225,-0.055137847,0.0012116481,0.054438222,0.080352336,0.064137965,0.08563644,-0.006413332,-0.044602495,-0.08704144,-2.136097e-08,0.058449924,0.012262016,-0.07057538,0.06289514,0.027856559,-0.008952465,-0.0818053,0.037612677,0.014788109,0.08704942,-0.07014357,-0.00280465,0.013341704,0.080935,-0.045338046,0.036551353,0.005880778,0.098008886,0.039346837,-0.07704384,0.021405326,0.028577788,0.0007432789,0.035628174,-0.06028242,-0.03518126,-0.047381546,0.07347893,0.03312993,0.010834943,-0.017076785,0.04604114,-0.044980533,-0.06607851,0.02451851,-0.01025211,-0.05186663,-0.04211249,-0.049701575,0.0021653352,0.029120943,-0.053866208,-0.06680084,-0.027128411,-0.010726012,-0.08020058,0.006452454,0.03137226,-0.022259206,0.017268121,-0.061535347,-0.017921705,0.048451737,0.0554604,0.07114838,-0.033046674,0.07015762,-0.05674189,-0.003997371,0.0049344953,-0.013935847,0.02907343,0.038931444,-0.06863424} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.067864+00 2026-01-30 02:01:12.73964+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2330 google ChZDSUhNMG9nS0VJQ0FnSURrcDZ2VkRBEAE 1 t 2333 Go Karts Mar Menor unknown Zeer leuk zeer leuk 5 2020-02-01 01:52:39.833374+00 nl v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Zeer leuk"} {-0.13148229,0.13368039,0.004006945,-0.054789744,-0.016957516,-0.010987892,0.032432396,0.074183375,0.030158482,0.0022149421,0.006746605,-0.049976896,0.02916915,0.03228948,0.010744939,-0.023201672,-0.020705812,0.04863573,-0.09190358,-0.03365416,-0.04149569,-0.013598177,0.06268247,-0.06810825,0.05574676,0.02590076,0.044253286,0.041357946,0.10593903,-0.005191423,0.10352164,0.037716895,-0.036437538,-0.032426637,-0.044975325,-0.028531399,-0.034016915,0.039448168,0.01968429,0.004645811,0.008469529,-0.023531782,-0.07115817,-0.118561454,0.031279147,0.045400508,-0.058855467,-0.038958088,-0.071360275,0.01963161,-0.079856515,0.01652462,0.025376149,0.00066111825,0.057627752,-0.06284056,-0.03897872,-0.036891706,0.028385254,-0.028252171,-0.019200403,-0.030034775,-0.038629483,0.0063533373,0.015787996,-0.09879917,0.020944566,0.017434899,-0.035313837,0.04054933,-0.02373998,-0.06434268,-0.037678532,-0.0007252986,-0.041915335,-0.060488287,-0.021182936,-0.032390542,-0.024343483,-0.031214816,0.04233139,-0.036950946,0.023566086,0.07593976,-0.016391572,0.01576247,0.080000654,0.010732269,0.03050189,-0.008343948,0.012709862,-0.047372136,-0.06228427,-0.038506143,-0.016673693,0.004825858,-0.013873981,-0.009884349,0.023179326,0.119912244,-0.00039896037,-0.05587786,0.023541387,-0.026000544,-0.09664076,-0.03772671,0.06677171,-0.017103415,0.02390011,0.054346714,-0.024750406,-0.04328105,-0.067470945,-0.012514271,0.019258775,-0.0153138265,0.013462605,-0.034075983,0.01616304,-0.015813122,-0.0071203043,-0.027796796,-0.020431353,0.028966825,0.054707203,-0.018060453,-0.006657598,-1.0961725e-33,-0.064030826,-0.0031657566,-0.0018904033,-0.041803434,-0.035337258,-0.013228961,0.019300386,0.0906747,-0.049501337,0.026275454,0.00965827,-0.04777622,-0.029599812,-0.022971906,-0.025975773,0.013635599,-0.0075077196,-0.048266567,-0.05763464,-0.036861643,0.08182546,0.018215144,0.033209562,0.013346113,0.021443494,-0.047690712,0.09529422,-0.07051505,0.0024754794,0.015675277,0.16225749,-0.04604183,-0.02528759,-0.008383333,-0.008519129,0.01737825,-0.06675593,0.035772245,-0.033343337,-0.042074002,0.040678363,-0.06483228,-0.07580797,0.07286767,0.027365569,0.09659136,0.037117135,-0.049963374,-0.011158766,-0.03220228,-0.033250824,0.027088821,-0.17225558,-0.013051089,-0.017994532,0.005599848,0.0019391006,-0.023273578,-0.021613218,0.02947601,-0.009348426,-0.0022654224,-0.118158676,0.014964123,0.09187771,-0.10942572,0.025640199,-0.040569413,-0.040335517,-0.06651153,0.0062049893,-0.033632662,0.10207152,0.03871757,-0.023988584,0.04708334,-0.05106173,0.013356241,0.014303333,0.014436035,-0.044196725,0.048419848,-0.011534086,-0.011588282,0.042111434,-0.027764603,-0.07024229,-0.107315935,0.06494772,0.018922066,0.04325173,-0.056048606,0.03472944,-0.018874941,-0.09211688,-4.6989165e-34,-0.00032435043,0.021360485,0.0026982897,0.111382626,0.06860506,0.059533924,0.024359256,0.0814846,0.041258816,0.050593957,0.07778196,-0.029971084,0.08724465,0.08833794,0.035007015,0.02403583,0.063579634,0.0713018,0.008056618,0.08431329,0.03256679,0.04092897,0.030679999,0.024231073,-0.023968304,0.07392077,0.15214303,0.050339557,-0.06442368,0.06806644,-0.013361594,-0.03632102,-0.010270654,-0.038695373,0.0040933294,-0.018147057,0.03408191,0.028300107,-0.07094687,0.007971193,-0.032587875,0.00320517,-0.03154899,0.08102495,0.08031068,-0.08278809,-0.05501671,0.09683563,0.05225683,-0.051930178,-0.003758228,0.036819834,0.009866041,-0.025265431,0.04562142,0.028230524,-0.021006355,-0.056317296,0.017226009,-0.0073282947,0.03480704,0.015622485,0.031003324,0.03818895,-0.0074531897,0.012405463,0.058715206,-0.06783086,0.045141853,-0.058013245,0.041690547,-0.058127243,-0.019524716,-0.050056655,-0.038214333,0.011045627,-0.026108958,-0.04005527,-0.033595465,-0.05914087,-0.06305813,-0.016165856,-0.07627021,-0.0018010853,0.00654002,0.019048119,0.046908144,-0.05969247,0.023373779,-0.111437306,0.029967057,0.04631081,0.02908541,0.050013516,-0.026879396,-1.3269773e-08,-0.00939805,-0.071942545,-0.051039055,0.021962417,0.06336519,-0.08433197,-0.016123893,-0.08087,-0.06285476,0.11747922,0.063644744,0.07954669,-0.030650528,0.02885409,0.09857341,-0.014155882,0.01949415,0.016462358,0.021678055,-0.0452706,0.053649344,-0.022205388,0.08164237,-0.07166186,0.0026644957,0.020807602,-0.026824784,-0.022300024,0.06925504,-0.07580164,0.03341472,0.16463599,0.089623295,0.009882204,-0.019230096,-0.04621403,0.0213044,-0.00692776,0.039211676,0.008567932,0.037668645,0.045878954,0.10016171,-0.0011090026,-0.022422435,0.048455734,0.053552452,-0.07652452,0.008452336,-0.09456871,-0.063068844,-0.03920922,0.03322199,0.008679883,0.08506121,0.04258739,-0.08998169,-0.011705851,-0.027076537,0.018275412,0.09560271,0.014764176,-0.06913268,-0.019235505} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.021545+00 2026-01-30 02:01:13.013697+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2248 google ChdDSUhNMG9nS0VJQ0FnSUNVN3ByVGtBRRAB 1 t 2251 Go Karts Mar Menor unknown Buenísimo un trazado espectacular. Quedé primero buenísimo un trazado espectacular. quedé primero 5 2020-02-01 01:52:39.833374+00 es v5.1 O2.03 {O1.05} V+ I3 CR-N {} {"O2.03": "Buenísimo un trazado espectacular. Quedé primero"} {-0.016068965,-0.034477886,-0.055160817,-0.05268413,-0.06592588,0.008491129,0.11216882,0.15127993,0.0071642203,0.022495251,0.012575615,0.009871496,-0.07767844,0.019886771,-0.0073208776,-0.02670537,-0.06321192,0.017897274,0.034747858,0.05664711,0.1838778,0.017025545,-0.0072027515,0.09048483,-0.021504462,0.057328288,0.041668985,0.061271664,0.062993936,-0.12797514,-0.0017086405,0.062446184,0.041317057,-0.03330936,0.07878116,-0.030675406,-0.068574525,-0.09747276,-0.016462987,0.01841527,-0.019503638,-0.010935529,-0.08439574,-0.092061214,-0.024406256,-0.0945159,0.010854964,0.11526563,-0.0065553123,0.021096343,-0.06288346,-0.054762226,-0.015936853,0.025399167,-0.061189,-0.04760728,-0.013888475,-0.046296317,0.037818637,-0.046262532,0.052359313,0.043678325,-0.024769371,0.027246917,-0.017602783,-0.002669107,0.0659993,-0.09096247,0.059250675,0.06782214,0.014740823,-0.020116583,0.09841107,0.037883632,-0.0028095185,0.0008924676,0.0056102234,-0.027802635,-0.023410995,-0.03507609,0.098505534,-0.024168296,-0.021499941,-0.053849846,0.0374276,0.030551795,-0.028360557,0.03923024,-0.008549726,-0.007831631,0.012864275,0.020568082,-0.059179228,-0.023989316,-0.041325428,0.017066453,0.00039681944,-0.16049714,0.114147894,0.041441284,0.07596263,-0.018144721,0.09280059,0.08679587,-0.0691325,-0.016083771,0.06560896,-0.07521899,-0.006335073,0.046257585,-0.017071743,-0.07395415,0.039718524,0.004850102,-0.009444567,0.014586103,-0.022141771,-0.015437897,0.0070269364,-0.05884436,0.018196663,-0.030517694,-0.031821426,-0.04914174,0.028950578,0.033763736,-0.013975535,2.7373e-33,0.00809969,0.000565356,-0.005387556,-0.04448166,-0.01927113,0.016590992,-0.09129106,-0.034504857,-0.03299885,0.045174316,-0.12145177,0.054042134,0.030920818,0.12015591,-0.010551223,-0.02749879,0.04207352,0.07959058,0.064265676,-0.025548615,-0.08918853,0.07107914,0.0057641957,0.049866278,-0.012541154,0.09459716,-0.046751197,-0.0019676567,0.020413036,0.039998036,0.054891564,0.03251388,-0.047123805,0.014595649,0.041054074,-0.05878624,-0.026564099,0.01511115,0.033425674,0.011795995,0.043118175,0.008844956,-0.053027548,-0.026907673,0.033671692,-0.08009999,0.0023211744,0.07315458,0.018445658,-0.058238454,0.0013547302,-0.08451604,-0.021542069,-0.05609852,0.0489964,0.028754408,-0.09266976,0.047151804,0.03131587,0.006351778,0.049244877,0.031867433,-0.0052502193,0.025549121,-0.018278891,-0.031662367,-0.024172159,0.024783555,0.05679539,0.033240538,-0.09248403,0.0018123755,0.047448643,0.04624902,0.03844168,0.03372831,-0.06654039,0.009540314,-0.059381213,0.084536515,-0.10009426,-0.01107839,-0.0095170345,0.0069679394,-0.027110135,0.09296841,0.0139294695,0.01994528,0.03645563,0.07358118,-0.022940964,0.0020827022,-0.013484982,-0.04447059,0.03713309,-4.5254633e-33,0.05714848,-0.00540664,0.03350529,0.027981767,-0.024814337,0.007009648,-0.002861362,-0.0044181133,-0.037820052,-0.0769948,0.096149996,-0.05571855,0.08237274,-0.09920724,0.028332053,0.0419615,-0.049199264,-0.06844516,-0.04600032,-0.046885207,-0.041488856,-0.05101648,-0.008117291,-0.04274182,-0.047926024,-0.013808128,-0.0067234267,-0.022248924,-0.05550038,0.06722838,0.0031695378,-0.015381256,-0.04800969,-0.0018918514,-0.023184825,0.083073504,0.053099193,0.008231671,-0.04379253,-0.028970547,-0.013368903,0.10586952,0.108944304,-0.0658613,0.07610935,-0.016207239,0.028067648,-0.08953139,-0.062384803,-0.05190775,0.019560654,0.036814734,0.016318312,-0.10306416,0.037868664,0.0016070331,-0.040892337,-0.06348257,-0.05232744,0.01909056,0.024622554,0.012625623,-0.021230016,-0.05222377,0.09085908,0.019666798,-0.037339423,0.005209564,0.13290963,0.035758533,0.10214345,0.029427623,-0.04815418,0.07698084,-0.009446624,0.031289056,-0.08077371,-0.01938381,-0.029379481,-0.024466874,0.038044754,0.0073211635,-0.027384417,-0.03829187,-0.020456979,-0.028784292,-0.06638284,-0.050481774,0.01974585,0.065648176,0.0342184,-0.016869355,-0.030452704,0.025082285,0.08487076,-2.7076482e-08,0.010600157,-0.00022646433,-0.018551087,-0.052069467,0.042194873,-0.0066456823,-0.01939284,-0.043524124,0.0063493894,-0.044462472,-0.039009467,-0.006282798,0.021494834,0.09284947,0.0033998566,0.06275342,0.009689629,0.042845204,-0.038963884,-0.11369193,0.030111153,-0.029884784,-0.08840897,-0.012951201,0.011598343,-0.010144812,-0.022131441,-0.022265058,-0.03852711,-0.022230754,-0.016333403,0.033450384,-0.00045944293,-0.048289925,0.019815573,-0.028961524,-0.02847348,0.01482347,-0.09225402,0.004320931,0.1051628,0.056777082,-0.043338444,-0.04796736,-0.039220974,-0.0611603,0.041589268,0.08017286,-0.03959471,0.04002235,-0.074094385,0.012259342,-0.007156456,0.013980225,-0.017575247,-0.011327523,0.05887988,-0.046022188,-0.052696653,0.002214525,0.044809896,0.058329266,0.07063865,-0.090170756} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.036144+00 2026-01-30 02:01:12.611305+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2249 google ChdDSUhNMG9nS0VJQ0FnSUR1Xzh2SWhBRRAB 1 t 2252 Go Karts Mar Menor unknown MOLTO BELLO E DIVERTENTE, DA ANDARCI ANCORA molto bello e divertente, da andarci ancora 4 2023-01-31 01:52:39.833374+00 so v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "MOLTO BELLO E DIVERTENTE, DA ANDARCI ANCORA"} {-0.032056194,0.035444945,0.037846066,0.041166466,-0.15745777,0.0035633696,0.067253925,0.044770725,0.051977854,0.008584796,0.08404751,0.0017992681,-0.05319581,0.02273982,-0.07906418,0.00464815,-0.01242381,0.023103215,0.025001384,0.089382686,0.015947174,0.0076663536,0.008788408,0.06662038,-0.06993326,0.029711287,0.006741801,0.035611648,-0.044041697,-0.05790215,0.058130555,0.13631967,0.06492754,-0.035424635,0.007846878,-0.004880889,0.03129075,-0.0058710673,0.09567516,0.10461522,-0.058183845,-0.014001235,-0.04844855,-0.005924237,0.026115699,0.010631306,-0.017194167,0.08167298,0.028647678,-0.019463768,-0.0580659,-0.034731653,-0.034124926,-0.038961392,-0.06237617,0.0006961779,-0.010919845,0.029728973,0.023218531,0.06536931,-0.001215261,-0.0088480385,-0.0011186437,0.106400155,0.01807003,-0.029301919,0.0036706508,0.0053795106,-0.09185416,0.004204451,0.11947763,-0.05814066,-0.0045805816,-0.020515278,-0.009950931,0.013237342,0.035178624,-0.024381824,-0.025856307,-0.021653673,0.015382032,-0.01289421,-0.088046476,-0.06466177,0.02367046,0.024885807,-0.03632424,0.015520299,-0.00968038,0.00052534806,-0.0376464,-0.07149496,-0.084088266,-0.040038396,0.028355727,0.0001338604,-0.0048265737,-0.104842365,-0.012584992,0.016054181,0.012334141,-0.021848524,-0.02916014,0.0091581205,0.011137544,-0.018091712,0.024262777,-0.08734859,0.05702741,0.00917724,-0.03269015,-0.004952995,-0.011437059,-0.096096404,-0.06547276,-0.001390103,0.025091793,-0.06721171,0.003474675,-0.006669814,0.012010835,-0.05655728,-0.117185764,0.04221998,-0.018172547,-0.03267065,0.058493495,2.4230483e-33,0.0006168951,-0.07073468,-0.08286569,0.042419534,-0.011694626,0.05189234,-0.015719807,-0.092727534,-0.026179729,-0.055389095,-0.06902176,-0.033352926,0.013706624,0.039970197,-0.023729568,0.027423296,0.026393577,0.035900883,0.028018467,0.034564774,0.011943877,0.025972134,0.014195148,0.05982011,-0.0045688264,0.103210084,-0.08085636,-0.06083094,-0.059234325,0.03993766,0.015017697,0.0024472473,-0.031222198,-0.04270817,-0.028428702,-0.06794495,-0.06259561,-0.013453783,0.048455413,0.052892815,-0.0061770547,0.044207364,-0.059769314,0.02343746,0.062115278,-0.022154203,-0.008260621,-0.0076024067,0.14089161,-0.0041800197,0.009207778,-0.05524879,0.02491077,0.022057233,0.016762327,0.044307783,-0.057442114,0.112319805,0.06241282,-0.02218038,0.034110017,0.024583263,-0.023820851,-0.07533799,-0.0014664466,0.026971271,-0.05204617,0.012364768,0.11666889,0.0077634356,-0.08488189,-0.021464081,-0.039876733,0.076116435,-0.057726342,0.023342142,0.019261638,-0.030157657,0.016502028,0.0077619343,0.0057307174,0.05117129,0.042055305,0.03813218,0.09014485,0.11025081,0.044156957,0.015968516,-0.008920772,0.052515946,-0.032899383,0.0734371,0.005910203,-0.13247982,0.14899282,-3.755613e-33,0.034276802,0.024490895,0.0029974726,-0.03335377,-0.06201116,-0.040968854,-0.09813938,-0.019620549,-0.060624853,0.013408812,-0.08733454,-0.051664487,0.08842267,-0.0684647,-0.06924385,0.07986767,0.097300984,0.032557417,-0.0278137,-0.0102605345,-0.09352592,0.020174088,0.003107081,-0.068560824,-0.06134374,0.00055219006,-0.011814576,-0.027527455,0.006861551,-0.03288206,-0.011803721,0.020617247,-0.033598635,0.013542162,0.009456329,0.06733858,0.0021491619,0.026703784,-0.022410382,0.061042726,-0.0052002175,0.009618719,0.08964052,0.051212966,-0.020749016,0.05363971,-0.019941352,-0.0051210197,-0.10088083,0.0024841493,0.0095086945,-0.026856825,0.012265893,-0.052658148,0.05364181,-0.11298609,0.012249686,-0.11276441,-0.061256874,-0.010416174,0.11526479,0.012940645,-0.040916517,-0.058719683,0.041607086,0.08053897,-0.10470455,-0.014620807,0.0017494108,0.012317199,0.07419701,-0.018317405,-0.056176204,-0.03970252,0.02692303,0.05285561,-0.16988283,0.0037752155,-0.005550195,0.058062002,-0.13001621,0.0034601197,0.0062391944,0.024728285,0.015056205,-0.0038533623,-0.083742276,-0.09182025,-0.06322321,-0.036257256,-0.024294356,-0.0125190355,0.05229424,-0.018368348,0.041445013,-2.2268678e-08,0.0483003,-0.062326483,0.0041330857,-0.04094857,0.05987615,-0.043025464,0.0071606375,0.024627944,0.020243363,0.06633599,0.013137084,-0.0062865443,0.08296498,0.03589313,-0.011057709,0.033521425,0.07534331,0.0051397593,-0.010231175,-0.009936076,0.1714355,-0.012346312,-0.02669672,-0.013574848,-0.029543858,0.03323621,-0.015049187,0.022442268,-0.039637167,-0.07275502,0.057390966,-0.034583695,0.06423638,-0.057749707,-0.03443384,0.034068085,0.012990779,0.035377525,-0.032548066,-0.03439586,0.06898023,-0.024672847,0.043900758,0.048034884,-0.016808143,-0.007980832,0.06630018,0.01043632,0.012032467,0.03726034,-0.030732952,0.034379933,0.036333397,0.07640096,-0.045811474,-0.0071169417,0.025579292,0.021420913,-0.003793247,-0.06591265,-0.0149407815,0.079824194,-0.029154178,-0.05323782} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.054284+00 2026-01-30 02:01:12.618645+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2251 google ChdDSUhNMG9nS0VJQ0FnSURPNHNfR2dBRRAB 1 t 2254 Go Karts Mar Menor unknown Una gran experiencia con una muy buena atención una gran experiencia con una muy buena atención 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {P3.01} V+ I3 CR-N {} {"V4.03": "Una gran experiencia con una muy buena atención"} {0.02978396,0.02785162,-8.6922635e-05,-0.0067390567,-0.037412815,-0.035014804,0.15357108,0.009303328,0.018051788,0.007682564,0.10141718,-0.039745703,0.009967884,0.010905123,0.007102487,0.017272118,0.006055272,0.0029490758,-0.0064209145,0.014482985,0.0045663095,-0.07918094,-0.019374503,0.103146024,-0.05187995,-0.016314551,-0.061375976,0.016834754,-0.0041239983,-0.039456356,-0.009195896,0.0721766,0.085038856,-0.0027852342,0.0072452966,0.029809259,0.074878365,-0.004098375,-0.010338267,0.0481774,-0.09451963,-0.03911145,-0.0060070604,-0.0076472363,-0.03198696,-0.0814194,0.050712485,0.031167805,0.0033371756,-0.04761407,0.0230949,0.013375887,-0.035251644,0.009691782,0.035304103,0.09290002,0.01184162,-0.03290975,0.0015009904,0.03189344,-0.018370967,0.046611227,-0.015657593,0.00671702,0.07010371,0.011025628,0.04179347,0.023279557,-0.05441705,-0.06550006,0.065267,-0.08758098,0.0072520627,0.05477083,-0.04052572,0.007300806,0.0042831823,0.013726956,8.5765205e-05,0.011955043,-0.006026582,0.012131986,-0.08109773,-0.015176941,0.039556347,0.050542425,-0.034540083,-0.059452545,0.017753804,0.0135337375,-0.07267405,0.030958802,-0.04622687,0.009780411,0.025115218,0.008228666,-0.007475456,-0.103458256,-0.061541744,0.14137681,0.049264785,0.096369274,0.09748051,0.022018343,-0.0322908,0.025231281,0.03303903,-0.022973293,-0.0003990558,0.06577376,-0.016220637,-0.099965714,-0.014274253,-0.01930398,-0.07289347,-0.010359228,0.065876454,-0.026404537,-0.05980478,-0.101614095,0.025993327,0.013144354,-0.07203595,-0.025770333,0.0076391874,-0.045352362,0.05878062,5.5898206e-33,0.02372749,-0.008014586,0.013530349,0.104722075,0.0016635493,0.11387436,0.011864552,-0.049165946,-0.010785363,0.03453939,-0.008979306,0.08551239,0.014377031,-0.0038536086,0.03447951,0.09660812,-0.010116283,-0.021438427,0.02393482,-0.011084668,-0.07963087,0.04561077,-0.06046243,0.022700466,-0.011421917,-0.025051052,-0.07101604,-0.056169044,0.025026001,0.0247785,-0.014037443,0.10015842,0.017480038,-0.055742264,0.0045978515,-0.09139549,0.043502506,0.023216477,0.051172256,-0.059248786,-0.021144114,0.015610996,0.060300793,-0.053400826,0.015470625,0.012121063,0.10836484,0.036628697,0.034539305,0.03808905,0.0098981755,-0.07322317,-0.0677426,0.02139661,-0.02656158,0.020355945,-0.06652107,0.09496175,-0.0044958466,-0.035235777,0.10895205,-0.033844683,0.0035375622,-0.040086705,-0.070017405,-0.028340628,-0.02960584,0.012395744,0.16289158,0.053778924,-0.08207243,0.004277857,-0.078148305,0.052121,-0.030054033,-0.038179055,-0.013908915,-0.044337682,-0.0027453485,0.012117914,-0.029498432,-0.0024392891,0.07507046,0.11569492,0.030183781,0.14717653,0.019170852,0.04206671,-0.013225144,0.08804986,-0.07049151,0.054228988,0.06284989,-0.017697833,0.029500486,-5.5254435e-33,0.039777204,-0.072876856,-0.023990886,0.01799328,0.03472602,-0.025859708,-0.013196646,-0.019510783,-0.058963962,-0.034310687,-0.021784412,-0.11687498,0.076024175,-0.021762814,0.04063858,0.099582165,0.050431978,-0.060506344,-0.03563927,-0.004994525,0.03637848,-0.0023822426,0.038863823,0.007312829,0.010823185,-0.058706332,-0.020264788,0.013788651,-0.045977585,-0.042002525,-0.0072809113,-0.019981686,-0.0076998062,0.008449443,-0.03905313,0.031610534,0.0951968,-0.007878576,-0.043025393,-0.025709292,-0.031804726,0.02020898,-0.010646986,0.038365725,-0.0034942788,0.07818239,-0.019579772,-0.16859743,-0.039674833,-0.0055189724,0.027431713,-0.0780637,-0.03388085,-0.0028763844,-0.0139183095,-0.078324355,-0.017543502,-0.043343745,-0.07554394,-0.030427687,0.07961615,0.003503375,-0.12987979,0.042268716,0.07044282,-0.021415444,-0.028877473,0.09770853,-0.07270839,0.066674955,0.034788735,-0.04499641,-0.05811534,-0.05556825,-0.030525407,-0.030991355,-0.046391014,-0.057278365,0.041931715,0.0034116325,-0.0543547,0.015682071,-0.010753473,-0.048314694,-0.077114806,0.04272849,-0.045570996,0.01048063,0.023941195,0.07072283,-0.025117654,0.009386173,-0.017381012,-0.13578694,-0.020559603,-2.4358318e-08,0.009473599,-0.027299475,0.001921208,-0.04085832,-0.01714272,-0.0041304203,-0.02649722,0.10172708,0.027333481,0.0580882,-0.05569779,-0.015108192,-0.017596558,0.04015435,-0.0072739166,0.03352058,0.12315521,0.083174884,-0.05014685,-0.060994536,0.008753991,-0.0034026213,-0.071650095,0.010289745,-0.012558719,-0.019806199,-0.07242757,0.001924662,-0.021026403,0.012790769,-0.051712077,-0.0050074607,0.021873657,-0.11814343,-0.06899298,-0.014586255,-0.03216258,-0.052941263,-0.016194789,-0.06294212,0.09869154,0.0610213,0.003337485,-0.03196069,0.0126271155,-0.07175825,0.031445432,-0.025902754,0.023379859,0.027051335,0.06553754,0.0034983198,0.033887308,0.05112881,0.016584173,-0.098074704,0.041099545,0.055800937,0.05945406,-0.007911626,0.04753285,0.0740156,-0.013623325,-0.09812679} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.089114+00 2026-01-30 02:01:12.624336+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2253 google ChdDSUhNMG9nS0VJQ0FnSUQ2MXZUMDRRRRAB 1 t 2256 Go Karts Mar Menor unknown El circuito perfecto y ofertas muy prometedoras el circuito perfecto y ofertas muy prometedoras 5 2022-01-31 01:52:39.833374+00 es v5.1 O2.03 {V1.01} V+ I3 CR-N {} {"O2.03": "El circuito perfecto y ofertas muy prometedoras"} {-0.065933645,0.04150088,0.035642687,0.009316948,-0.046186443,-0.0349549,0.07821224,0.05946927,-0.03732788,0.065521404,0.084412776,0.013240354,0.049825005,-0.023363678,-0.0023313288,0.07233555,-0.06596004,0.029751088,-0.026075734,-0.032898944,0.10752829,-0.06624435,-0.06467056,0.11482166,-0.11049151,0.035633452,0.01929983,0.0056962054,-0.06257656,-0.0987183,-0.117208175,0.058895312,0.09787441,0.0179477,-0.045926612,-0.018760907,0.044356104,-0.051095977,0.016238328,0.018665768,-0.08974416,-0.042986583,0.037983783,-0.00929367,-0.029158562,-0.0650019,0.059766635,0.04502879,0.02098683,-0.092156425,-0.03361,-0.063344315,0.02455908,0.027815642,-0.032924887,0.031156547,-0.023258764,0.00979741,0.053285822,0.016831053,-0.0125132045,0.03968587,-0.03602906,0.053815916,0.052331187,-0.021973277,0.03736389,0.03437744,-0.08151574,0.05513509,0.078027144,-0.04878416,0.054302804,-0.015883036,0.007161133,0.061178863,-0.017862154,0.019175878,-0.047607426,-0.025514744,-0.023479434,-0.12734222,-0.019406632,-0.061993293,0.019241046,0.0061577284,-0.02239252,-0.06207279,0.012467894,-0.06154469,-0.024504973,0.020459358,-0.08484375,-0.030498888,0.028716605,0.04090522,0.042636376,-0.06887377,0.0048451973,0.0828138,0.100170046,0.0063497266,0.04612356,0.0018615898,-0.0057150186,0.06770155,0.054878257,-0.024413351,-0.0022545296,0.009317626,-0.023875523,-0.03384743,0.019905964,0.02115613,0.0053614993,-0.04063856,-0.042333867,0.017094398,-0.03668712,-0.098426916,0.031248275,0.034056023,-0.019630985,0.0045869616,-0.0525869,-0.01739487,0.07761054,3.5065147e-33,-0.051372293,-0.0012216156,-0.038071033,0.03957004,0.021434743,0.04928246,-0.055430904,0.021370817,-0.027529163,0.0029557354,-0.049872924,0.041163824,0.0295034,0.017684853,0.05920458,-0.03260126,0.044695918,-0.061175246,0.06730205,0.019593721,0.018077942,-0.056230143,0.018510003,0.0055559888,-0.01082393,0.06417096,0.016202632,-0.0543484,-0.052799005,0.03574955,-0.026572963,0.049820513,0.03206046,0.02352315,-0.07658691,0.0041357093,0.060318433,-0.008761849,0.025585562,-0.04865156,-0.02595424,0.020012833,-0.057275813,0.043696128,0.04007858,0.01912435,0.019735679,0.07290988,0.14659078,0.0929425,-0.1316457,-0.114181556,-0.07953189,-0.0971913,0.061668564,0.031237606,-0.044131987,0.06581174,0.09059238,0.0006475484,0.013456178,0.07554886,-0.06217833,-0.083893895,-0.08347236,0.09920953,0.0068179597,-0.073628396,0.064983055,-0.0062023713,-0.10977245,-0.05734848,-0.027618159,0.021159684,0.026378665,-0.045970015,-0.0011763581,-0.020501645,0.045870576,0.012707751,-0.113433875,0.0019372151,-0.0020537784,0.03942327,0.05204143,0.060777616,0.051638566,0.05128779,-0.0010201171,0.1010383,-0.0032306598,0.044478904,0.037177533,-0.012381086,0.06743281,-4.5401908e-33,0.001008128,-0.009660814,0.014203862,0.113083124,-0.001736194,-0.027645206,-0.08439388,-0.05249101,0.025749145,-0.050908446,0.00950661,-0.08649361,0.057085063,-0.039704826,0.022072934,0.00024168237,0.014267069,-0.04802858,-0.046866745,0.019540174,0.0437317,0.08301822,-0.019500548,-0.05599328,-0.023773577,-0.028803894,-0.07697538,0.07138524,-0.07922391,0.039642353,0.020125302,-0.047213428,-0.07021741,0.059156194,-0.0064865625,0.021599695,0.03694822,0.100628145,-0.0076358668,-0.00038909525,-0.014744865,0.012206096,-0.035967488,0.031872105,-0.06790569,0.023981893,-0.001516378,-0.054240033,-0.01935037,-0.04599193,0.012468221,-0.072306156,-0.030693533,-0.042736232,0.037436094,0.006711871,-0.024339389,-0.0059240134,-0.041965887,-0.041151863,0.043883003,-0.04006774,-0.016144203,0.004635924,0.084606335,0.040223632,0.007783813,0.05759083,0.055429608,0.034976043,0.07712665,-0.013888888,-0.10334726,-0.034685105,-0.028564066,-0.004399472,-0.14407729,0.017723612,-0.027968407,-0.0433237,0.030461239,0.023548141,-0.041122604,-0.06158704,-0.017014483,-0.04441459,0.027226347,0.035786964,-0.00043906065,0.014039646,0.017929077,0.028265487,-0.06881153,-0.028500043,0.028278364,-2.447198e-08,-0.04655806,0.0026480842,-0.034079354,-0.005592976,0.10767003,-0.09978735,0.04209136,-0.014209469,-0.01820555,0.0075036413,0.035970606,-0.015806401,-0.0049402993,0.05298819,0.044760928,0.034429107,0.036700696,0.14696161,-0.03069523,0.02065469,0.09377337,-0.010081955,-0.031051854,-0.040972505,0.058671717,0.034879167,0.015265756,-0.04854205,-0.049329497,0.042935822,-0.029197698,-0.045799058,0.0009689286,-0.08505596,-0.0040451684,0.044898596,-0.0419732,-0.014332546,-0.01569379,-0.08173379,0.004725321,-0.051887523,-0.016735861,-0.007212167,0.003498778,-0.042451866,-0.00927991,0.026430665,-0.008027186,0.031048205,-0.078609385,-0.034864087,0.038552232,0.046647906,0.034030378,-0.052063253,0.06677882,0.01713541,-0.090865865,0.004794387,0.075900786,0.12357197,0.04880346,-0.1062821} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.115086+00 2026-01-30 02:01:12.629882+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2254 google ChZDSUhNMG9nS0VJQ0FnSUNBa01hSFlREAE 1 t 2257 Go Karts Mar Menor unknown Una pasada y todo muy bien orfanizado una pasada y todo muy bien orfanizado 5 2018-02-01 01:52:39.833374+00 es v5.1 J2.01 {} V+ I3 CR-N {} {"J2.01": "Una pasada y todo muy bien orfanizado"} {0.01752765,0.020076174,-0.000343653,-0.039156176,0.003338827,-0.00014479019,0.029744325,0.0130707035,-0.058966484,0.04875835,0.095594816,-0.018838912,-0.037000168,0.004322214,0.059447527,0.02825499,0.007546292,0.059752643,-0.080996394,0.05171353,0.049979396,-0.030363128,-0.06898473,0.11757507,-0.07969781,0.026739268,0.025339987,0.02304613,-0.051667623,-0.04620607,-0.015197972,0.033267673,0.050266866,0.012534245,0.0064722113,-0.042534027,0.052247424,-0.057664465,-0.02544569,0.044596955,-0.1156366,-0.041684657,-0.08178987,-0.0004194045,0.0040256614,-0.1045951,0.0077723227,0.04392317,0.06177193,0.0055589965,-0.016305193,-0.015230005,0.0065260525,-0.038182065,-0.025939547,0.033361405,-0.038997315,-0.036175508,0.012434149,0.063109726,-0.013141004,0.011521036,0.0020858569,-0.027601333,-0.027249822,-0.048074644,0.011400043,-0.018771967,-0.08362991,0.00879821,0.07229404,-0.07549354,0.01810827,0.04439002,-0.03565051,-0.012516415,-0.005677359,0.001964571,0.0064487085,-0.03487702,-0.045952752,-0.08144821,-0.056099486,0.010752153,0.02601313,-0.0022862037,-0.004794265,0.023443704,0.07164729,0.0001199941,-0.03690359,0.11853254,-0.055526204,-0.019074824,0.045024075,0.038157027,0.048527088,-0.109752186,0.0030693302,0.08591237,0.091568165,0.08723056,0.079929344,0.068909556,0.0346425,0.05651144,0.057059985,-0.015344617,0.0065460624,-0.004538151,-0.017969074,-0.019822106,0.0053228294,0.01950796,-0.09841697,-0.034724366,0.002768957,-0.019172918,-0.043670993,-0.0953371,0.051166594,0.021718673,-0.090348214,0.05075679,-0.088139154,-0.08027272,0.047311436,3.0990296e-33,-0.023373937,0.015094244,-0.04942631,0.038209543,0.005191685,0.07418251,-0.008502803,0.018511672,-0.06478166,-0.04933293,-0.0133135,-0.012807169,-0.037628915,0.019849235,0.045354255,0.010990591,0.028913744,-0.023398057,0.0039756657,0.04350924,-0.0040943436,0.0056008096,-0.0055736355,0.0048537515,-0.015209802,0.04508943,0.021708481,-0.08743134,-0.07921585,0.036318194,0.0036093432,0.039978366,0.012009889,-0.090120114,0.011993385,-0.122559056,0.03194647,0.03957265,-0.041563928,0.05301423,0.05881078,0.047605727,-0.016431881,-0.029533904,0.024156185,0.04484321,0.09218989,0.10799051,0.04100279,-0.020575486,0.008451776,-0.050139718,-0.1143405,-0.05289752,-0.009932775,-0.031935457,-0.004656121,0.040501814,-0.052115,-0.09160244,0.085975505,0.037156608,0.024325356,-0.053778313,-0.06329318,0.0028515928,0.030205557,0.053894646,0.12123364,0.04502641,-0.08195811,-0.040221,-0.06728607,0.014869745,0.006769905,-0.024518294,0.016819162,0.019054672,0.008828332,0.026112674,-0.022089858,0.034247406,0.088030525,-0.0022855734,0.023677705,0.07399862,0.042184062,-0.0019671011,-0.086393856,0.044059552,0.06661318,0.102402754,0.06168286,-0.042784885,0.04727175,-4.42708e-33,0.019621067,-0.06421658,0.022947343,0.021629073,0.0054144696,-0.014503526,-0.07027514,0.010153648,-0.02428733,0.00057851465,-0.06730816,-0.109008126,0.057442553,-0.06024561,0.022393977,0.1056791,0.07917011,-0.05659881,-0.14380714,-0.027315052,-0.032512907,0.06768155,0.0508804,0.0003021041,-0.021028263,-0.06714794,0.012523645,0.055029605,-0.077567294,0.01612449,0.023008833,-0.032376923,-0.01109242,-0.0029616419,0.011033778,0.052564286,0.016457662,-0.014770417,0.003636733,0.081748515,-0.061504595,0.066713855,-0.015136613,0.015011886,-0.04598107,0.024137564,-0.033470165,-0.08748331,-0.06734818,-0.019167833,0.078792825,-0.07364339,-0.009918346,-0.013542838,0.091050014,-0.0058608023,-0.046500914,-0.09291712,-0.062378418,-0.01169816,0.04871371,-0.032008454,-0.08465527,0.008236249,0.015758352,0.056441594,-0.032159965,-0.011610428,0.009331917,0.022181695,0.05078507,0.0023681554,-0.0969573,-0.015718639,-0.052096155,-0.023729714,-0.08525438,-0.022568142,0.029304136,0.059358384,-0.08395357,0.00095894025,-0.061201297,-0.04312525,-0.01425582,-0.061838236,-0.030648721,0.06339834,-0.01639011,0.06816959,0.082679525,-0.028094938,-0.03628418,-0.070336334,0.019114256,-2.2251335e-08,0.006989746,-0.05488106,-0.06099338,-0.007879478,0.04491626,-0.016846143,-0.05812185,0.033238493,0.108518824,0.042929538,-0.0008986217,-0.021742553,-0.0015467631,0.050778806,0.0015999443,0.048989728,0.09072943,0.12749842,0.010705633,-0.013772964,0.09049355,-0.0071162037,-0.05135726,-0.017507771,-0.02272857,0.019594522,-0.05701126,0.022570375,-0.0316581,0.011534351,0.007822288,-0.03681965,-0.023050044,-0.12466782,0.021154756,0.018765684,0.027874378,-0.04807931,-0.006437335,-0.084940836,0.0993075,0.0029582973,-0.056265514,0.0048294296,0.050671905,-0.08724214,0.040724546,0.004951026,0.0056819706,0.023942126,-0.0046080574,-0.022722803,0.11394492,-0.0038246182,-0.024165893,-0.017191852,0.030716868,0.037699006,-0.08381408,0.014760712,0.116293125,0.103821956,0.08134288,-0.06807035} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:01.126461+00 2026-01-30 02:01:12.632233+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2281 google ChdDSUhNMG9nS0VJQ0FnSURPOEplVTlBRRAB 1 t 2284 Go Karts Mar Menor unknown Muy bien todo, lo pasamos genial. muy bien todo, lo pasamos genial. 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Muy bien todo, lo pasamos genial."} {-0.053639073,0.034753628,0.034277756,-0.0016771221,-0.03763841,0.0037695523,0.07625718,0.016318152,-0.03943185,0.031562172,0.07695205,-0.0629448,-0.0101716835,-0.09441078,0.015514622,0.016040772,0.008410685,0.09014115,-0.0010854406,0.013500988,0.047709916,-0.022814682,-0.057221588,0.072379746,-0.11209312,0.05853211,0.04041431,0.053928014,0.017704314,-0.015169783,-0.010199402,0.10989615,0.072189674,-0.04145643,0.008592351,-0.0095992265,0.021856217,-0.075397715,0.06245311,0.018256797,-0.07059855,-0.009682225,-0.031302687,-0.02955557,0.054643895,-0.074285805,-0.04866944,0.06902557,0.003410539,0.00068020314,-0.011694972,0.05955953,0.03788712,0.004384746,-0.029214004,0.015459364,0.008933451,-0.080465734,0.029279362,0.010912316,0.02696637,0.021687115,-0.036818653,-0.007320455,-0.025774263,0.027005043,0.11681701,-0.03461252,-0.05668169,0.024179135,0.015478132,0.0028779712,0.038297687,0.035297904,-0.06136407,0.009117904,0.060818877,-0.007625439,-0.10640043,-0.1004872,-0.09879197,-0.061753366,-0.0018043309,-0.04437022,0.03148879,0.03707705,-0.0059531997,0.04446642,0.04284844,-0.0060128244,-0.08683887,0.06269367,-0.011132904,0.05058505,0.041712325,0.05895247,0.0010707105,-0.092809886,-0.022801379,0.034528513,0.066522,0.09748044,0.08326467,0.06192089,-0.00796045,0.029206332,0.0072311247,0.0022902687,-0.011482379,-0.008499826,-0.007880676,-0.013959643,-0.0043621357,0.04805036,-0.040245604,-0.048453152,-0.00089759746,-0.05771195,-0.040942278,-0.025202034,0.08736653,-0.034802575,-0.080185585,-0.030603018,-0.0023685652,-0.0409439,0.025997877,-1.714534e-33,-0.059529282,0.016892072,0.026691347,0.01609647,-0.0151039595,0.023523597,-0.05076186,0.025639186,-0.10743225,-0.026986083,-0.067919865,-0.0007659027,0.0065175486,0.045223996,0.011225217,-0.014129803,0.0063861688,-0.025245413,0.11055811,0.009477615,-0.099782616,-0.005245149,0.024990296,-0.020612305,0.040082484,0.113596715,0.024350982,-0.056670487,-0.104374014,0.05978535,-0.02417975,-0.013107911,0.037818734,-0.0048599294,-0.028888946,-0.03604548,-0.0030950638,0.061959784,-0.007053671,0.04922013,0.0878293,0.035354584,-0.0024078884,0.0027488892,-0.009972742,-0.0127521185,0.044688832,-0.025302688,0.029233815,-0.0045423014,-0.01185993,-0.028399706,-0.13425899,-0.024920436,0.022408422,-0.061367683,-0.0859118,0.029357634,-0.096772365,-0.06869492,0.14882702,0.0009652447,0.041205402,-0.017299531,-0.06852511,-0.025096126,0.010848802,0.111935474,0.11494777,0.021868635,-0.034753773,-0.07969132,-0.03793262,0.06312177,0.030232852,0.03680574,0.083230965,0.03476476,0.037429154,0.050188847,-0.004215426,0.056710042,0.03545714,-0.033165757,0.074199826,0.049022645,0.014924283,0.010135424,-0.067890614,0.011373422,0.033049066,0.039414663,0.06365294,-0.019509649,-0.070514426,-1.3744897e-34,-0.021492539,0.03093367,-0.014391152,0.044012282,-0.025426198,-0.0427273,-0.04164511,-0.015315961,-0.06574642,-0.0143301,-0.0072488734,-0.10861273,0.06385421,-0.08536541,-0.0072101806,0.06350044,0.07908602,-0.02468044,-0.079456046,-0.01997326,0.013280597,0.0114747435,0.07046024,-0.031101506,-0.00021833066,-0.0147918295,-0.01550587,0.024280531,-0.031108059,0.030464761,0.042140502,0.0033547026,0.015544553,-0.011202261,0.08672026,0.0661068,0.009707495,0.0675633,0.04732651,0.008910474,-0.06272722,0.07396771,0.013435047,0.077713765,0.008773397,0.06115444,0.007296057,-0.1482064,-0.08515825,0.0026162774,0.056306962,0.003135682,-0.020115402,-0.043861788,0.031772953,-0.03831791,-0.016699947,-0.04234943,-0.13077149,-0.004228606,0.023014752,0.029657783,-0.060511243,0.021769147,0.0736895,0.0011745006,-0.027655754,0.037895985,0.018081024,0.0481796,0.09707965,-0.034528594,-0.09459445,-0.024895657,-0.07953507,-0.02194867,-0.114230655,-0.015124853,0.03257515,-0.007393156,-0.03438048,-0.04533342,-0.07522707,-0.019611027,-0.096404545,-0.123500586,-0.009950529,0.021061344,0.003865674,0.03142239,0.05857709,-0.07757516,-0.017561419,-0.069548115,0.02391674,-1.9126793e-08,0.0024692006,-0.068881534,-0.09740209,-0.01623992,0.029278703,-0.024728501,-0.12716992,0.019038223,0.07106649,0.038788065,-0.04950054,-0.00795939,-0.013958749,0.08271147,-0.0021156785,0.06505542,0.011332749,0.040108874,-0.0025498352,-0.054484945,0.07638268,0.0046494203,-0.03386659,-0.034109026,0.022110663,-0.002538445,-0.028471192,-0.06072453,-0.038644016,-0.004282249,0.008782626,-0.020370401,-0.1316346,-0.04635121,0.018698083,0.00023002157,-0.019672673,-0.014250286,0.016571023,-0.014073981,0.11088407,0.039640166,-0.02528979,-0.0010761587,0.031865355,-0.069735534,0.039778005,0.032957386,-0.013837477,0.020895682,-0.0029764702,-0.0140280295,0.07625126,-0.008192652,0.011212869,0.012588191,0.06471103,0.0069883354,0.043478005,-0.00033907205,0.03894715,0.13054986,0.06470649,-0.08763371} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.783601+00 2026-01-30 02:01:12.746052+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2282 google ChZDSUhNMG9nS0VJQ0FnSURVdnRmNU5nEAE 1 t 2285 Go Karts Mar Menor unknown Esta genial para hacer una carreterita esta genial para hacer una carreterita 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Esta genial para hacer una carreterita"} {0.04724735,0.035409734,-0.09123905,0.005251664,-0.050518755,0.033704378,0.06063676,0.0010951435,-0.003456494,-0.004465293,0.096438184,-0.08878982,-0.044063404,-0.0068647545,-0.022499375,-0.017185897,-0.025782684,0.06240483,0.06244595,0.035001814,0.06361909,0.01658159,-0.032848172,0.08036191,-0.13560548,0.004204119,-0.009908566,-0.0346956,-0.02661558,-0.08070097,0.024468796,0.0927222,0.043305043,-0.005963094,0.04428955,0.0034107307,0.06592025,-0.09462758,0.05956885,0.032495756,-0.09157896,-0.0932536,-0.030852355,0.008165103,0.057385262,-0.09234825,0.01639906,0.07776265,-0.01095254,0.018267311,-0.03381274,6.954878e-05,-0.018429814,-0.032350052,-0.030777717,0.031149436,0.042108066,-0.031018563,0.07054506,0.024268977,0.017334975,0.07853845,-0.027205873,-0.026017372,-0.013137491,0.009562486,0.103049755,-0.0498838,-0.0650108,0.059951678,0.06661562,-0.069969855,-0.016791862,0.092921495,-0.0035940504,0.011435936,0.0037722639,0.029374214,-0.03354373,-0.04902209,-0.014896659,0.010800486,-0.06031098,-0.001021016,0.020805756,0.09097788,-0.021346122,-0.0035267458,0.069445565,0.011157522,-0.030577498,0.021058928,-0.017979966,0.020661194,0.028129928,-0.012551547,-0.04836844,-0.13671213,-0.0005942918,0.022919126,0.07258995,0.052835662,0.016012073,0.06315687,-0.028060244,0.038564146,0.031391926,-0.05353093,0.022794314,0.04062052,-0.044937983,0.01045084,-0.032339793,-0.02416216,-0.024116077,0.049430087,-0.015310703,-0.07461828,0.0012631047,-0.1021857,0.038987856,-0.05642901,-0.008316321,-0.03146711,0.03314896,-0.09499747,0.03620219,1.9331124e-33,-0.052189138,0.013154599,0.019688511,0.030245751,0.023055604,0.018568113,-0.019210778,-0.053531613,-0.009114402,0.017300094,-0.08099365,0.01225849,-0.099706605,-0.000966527,0.061268132,0.010921961,-0.08005087,0.043592535,0.021692796,0.023106225,-0.09824685,0.014790949,0.021895558,0.017602647,0.044885486,0.021342827,0.01885962,-0.048710093,-0.013892391,0.047196463,0.046399996,0.013614193,0.023053633,-0.06479376,-0.025158143,-0.063417904,0.024958868,0.066436425,0.017327769,0.07041441,0.05469224,0.053993493,0.10147974,0.0059882067,0.03319523,-0.03537849,0.1023571,0.0688648,0.05192716,0.00881211,-0.03619402,-0.033883207,-0.027526958,-0.067002825,0.0027402828,-0.03773036,-0.103189036,0.09301525,-0.06753423,-0.11306703,0.0725046,-0.059278205,-0.0269816,0.010622208,-0.08213561,0.011068176,0.010643042,0.038202517,0.16014268,-0.011540762,0.0036940482,-0.09968633,-0.03418534,0.024549166,-0.056177303,0.03265608,0.021128308,0.061057407,-0.020709619,-0.017628936,-0.06689101,0.13478394,0.026063047,-0.015852459,0.08077352,0.13957036,0.07318366,0.0053223884,0.030477984,0.04599977,0.037974365,0.05844533,0.01625807,-0.031460665,0.032297872,-2.763284e-33,-0.05376175,-0.06973444,-0.004754025,0.08022461,-0.04099242,-0.06709151,0.0051018973,0.034814525,-0.022635007,-0.043510385,-0.052280128,-0.061597034,0.07447485,-0.071284294,0.015346131,0.036988832,0.041292712,-0.04689479,-0.05405887,0.036128636,-0.051197693,-0.048927847,0.036086906,-0.026894825,0.0087659955,-0.009484445,-0.010900104,0.05245107,-0.021243848,-0.08838739,0.08321927,-0.015498357,-0.026595188,0.06122762,0.003535992,0.0075034937,0.077717625,0.0937978,-0.026190247,0.014657797,-0.079421915,0.020139428,-0.009285674,0.0035520473,-0.018505856,0.059338506,0.062390834,-0.10459595,-0.021665117,0.030330393,0.07385738,-0.0044011497,-0.013945694,-0.05971884,0.005104313,-0.035347782,-0.04634822,-0.021800226,-0.0046325102,0.0526021,0.10541525,0.097023666,-0.066547245,-0.014025542,0.06606754,-0.026440408,-0.03824761,0.022297522,-0.046401102,0.09740723,0.095337376,-0.0076031145,-0.06616608,-0.0076120654,-0.05300909,-0.07527144,-0.051525846,-0.0075820177,0.040030107,-0.03290582,-0.06207745,-0.035308365,-0.047931965,-0.061920483,-0.087626636,-0.021545827,0.0008330746,0.0039530327,0.010478463,0.08536719,0.029303998,-0.06332648,-0.06629512,-0.083758816,-0.04074721,-1.9513426e-08,0.00874375,-0.019496256,-0.028856548,-0.014679605,-0.017037626,-0.0827255,-0.020118536,-0.019474873,0.0788228,-0.06411501,-0.08561297,-0.0037667414,0.0472196,0.04755305,0.004253964,0.016378634,0.041766427,0.078934774,-0.03326984,-0.044605285,0.11572687,-0.0038852645,-0.014457755,-0.044028264,-0.03099291,-0.020802347,-0.024163514,-0.016072057,0.007051723,-0.008357336,-0.010493006,-0.014026044,-0.054418728,-0.08924007,-0.024974586,-0.0030219029,-0.039970603,0.010639927,-0.020113183,-0.05248152,0.1267791,0.00795097,0.032623976,-0.019477839,-0.019517455,-0.072669975,-0.016336542,-0.013694344,0.0055266568,0.08589601,0.00039808374,-0.03154251,0.07059876,0.008581931,0.00066892215,-0.004603762,0.10120078,0.041162696,0.028228251,0.023562033,0.01784649,0.0010963506,0.023156544,-0.031254683} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.795628+00 2026-01-30 02:01:12.758208+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2283 google ChZDSUhNMG9nS0VJQ0FnSUNodHV1R05REAE 1 t 2286 Go Karts Mar Menor unknown Muy actualizado asequible y entretenido muy actualizado asequible y entretenido 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.01 {V1.01,O1.02} V+ I2 CR-N {} {"V4.01": "Muy actualizado asequible y entretenido"} {0.0059945607,0.029673742,-0.0021690386,0.0062626377,-0.004802594,-0.029878665,0.10939969,0.050622568,-0.019294562,0.02530656,0.07053305,0.010044073,-0.019112853,0.061137073,-0.014571358,-0.027902931,0.046846773,0.067704454,-0.08958111,0.05774307,0.11469271,-0.060752213,-0.057898145,0.08082166,-0.03899812,-0.011732218,-0.056665994,-0.040520746,-0.004975025,-0.10660873,0.0017686432,0.07596209,0.06230064,-0.008603734,0.02762343,-0.032134064,0.07305336,-0.045786142,0.024092138,0.0008686367,-0.13818823,-0.030445902,-0.044355594,-0.009927531,-0.046197146,-0.04181235,0.07750108,0.08695721,0.029056123,-0.025457617,-0.1133684,-0.022209039,-0.026631199,-0.022089606,-0.04382396,0.019731652,-0.042693377,-0.008109523,0.03976171,0.01332499,-0.006687919,0.045771457,-0.0020409592,0.061869584,0.028435297,-0.007418347,0.010564535,-0.021272842,-0.04791548,0.0595143,0.17238002,-0.048718967,-0.008395344,0.023040447,0.001163908,0.0566666,-0.009698397,0.0363428,-0.014611003,0.017518718,-0.025812516,-0.052152824,0.0030542964,-0.03762498,0.03268934,-0.044245202,-0.018594507,-0.01564353,0.014014787,0.0023373251,-0.016426006,-0.0028294798,-0.11267314,0.018465944,0.052205455,0.020387297,0.029417086,-0.10354502,0.032668125,0.054392718,0.035597995,0.06445362,0.10407816,0.00012509394,0.0104596615,-0.01607645,-0.001665782,-0.08540975,0.030418143,0.020300725,-0.055517133,-0.10143522,-0.01577093,0.032231335,0.030470714,0.030335702,0.03195234,0.03141589,-0.052443378,-0.1161787,0.08800658,0.08991291,-0.033492018,-0.009212598,0.008697487,-0.039616626,0.082559966,3.962911e-33,-0.051682025,-0.07137112,-0.036386635,0.09734599,-0.06135652,0.0120798135,-0.05152426,0.03919383,0.007698221,0.017027901,-0.02088192,0.068755575,0.03250281,0.06870285,0.09428033,0.04287368,-0.018268129,0.007209854,-0.0004767898,0.06496189,-0.028588742,-0.019877238,-0.02281026,0.010832598,-0.02913123,0.014747415,-0.006676455,-0.024125025,-0.030473711,0.02016878,-0.0069232737,-0.0026764742,-0.037617404,-0.011850038,-0.038037386,-0.042232346,0.06561889,0.02549605,0.029005587,-0.04589084,0.039089084,0.014437324,-0.0057338104,0.017287686,0.0372616,0.050932813,0.07940528,0.042906407,0.029743837,0.043169744,-0.033685625,-0.053089853,-0.018147586,-0.04710176,0.005513334,0.025094481,-0.022595108,0.09795191,-0.01381787,-0.05751773,0.047401924,-0.044633254,0.036081396,-0.04117928,0.014662027,-0.0027181648,-0.0030459294,0.015895857,0.068679385,0.059551436,-0.14727803,-0.08539184,-0.04231223,0.043975685,-0.032083485,-0.036730397,0.019818578,-0.011619982,0.035376355,0.05051565,-0.03547746,0.03449171,0.046756156,-0.0003346971,0.024486512,0.04657226,0.08522623,-0.0064782924,0.012168219,0.09321088,-0.09127627,0.048322205,-0.03587257,-0.062044527,0.022952424,-4.921257e-33,-0.058712553,-0.029605586,-0.010675189,0.112389326,-0.02809353,0.03376955,-0.0635746,0.045649603,-0.015666967,-0.085971296,-0.080659315,-0.14034013,0.10031768,0.006264808,-0.06032549,0.03497524,-0.019566132,-0.07092007,-0.10130653,0.026009724,0.016318908,0.03431255,-0.008794494,-0.05571176,-0.027497392,-0.012495452,-0.061317284,-0.023629855,-0.046686687,-0.016362775,0.015911503,0.014671264,-0.07930292,0.008694808,-0.0440653,0.05305991,0.047916446,0.039634805,0.013156702,0.022814978,-0.014467152,0.056701954,-0.08834406,0.010950067,-0.0022062329,0.0052103056,0.011468958,-0.15208434,-0.0077857487,-0.03503222,0.024526246,0.021434287,-0.020672396,-0.036706448,0.038819563,-0.030480916,-0.054187708,-0.08801614,-0.10981704,0.011846284,0.0627482,0.010966759,-0.08424045,-0.049751546,0.08506666,0.04724087,-0.08060375,0.035717636,-0.015967779,0.029537188,0.06367894,-0.089772955,-0.06282588,0.021687366,-0.013810679,-0.059037954,-0.083491735,0.028336002,0.010396529,0.04021909,0.020373765,0.01227532,-0.012982153,-0.08019534,-0.019306766,-0.03823719,-0.030533379,0.030246548,0.011380255,0.055384755,0.01500868,-0.0034838622,-0.10498634,-0.009845299,-0.011058984,-2.5041796e-08,0.04090207,-0.016509982,0.019769246,-0.014338636,0.019782005,0.0012550816,-0.001857128,0.0019149565,-0.04588476,0.046455123,0.008055104,-0.106121704,-0.029750226,0.057565894,0.001479661,0.024090532,0.06794497,0.062964275,-0.02810135,-0.0031402684,0.12599003,0.014871093,-0.115630455,0.02158848,-0.0015699159,0.05738941,-0.072140194,-0.02139077,-0.07074056,0.07227375,0.017171139,0.017099697,0.040043376,-0.10626394,-0.058470327,0.00072843645,-0.006016577,-0.014528963,-0.029607793,-0.06880967,0.056299184,0.025821272,-0.030604258,0.03963292,0.03668076,-0.06253445,0.003995779,0.02573263,-0.011063243,0.036332827,-0.06259249,0.00057085254,0.022001145,0.030902874,-0.019547505,-0.00029567227,0.026717087,0.04674323,-0.105491035,0.01015512,0.09255047,0.13696623,0.068336196,-0.0847515} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.805903+00 2026-01-30 02:01:12.761483+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2285 google ChdDSUhNMG9nS0VJQ0FnSURROXNPSTJnRRAB 1 t 2288 Go Karts Mar Menor unknown Atención buena ideal para hacer prácticas . atención buena ideal para hacer prácticas . 4 2019-02-01 01:52:39.833374+00 es v5.1 P3.01 {V4.01} V+ I2 CR-N {} {"P3.01": "Atención buena ideal para hacer prácticas ."} {0.006005767,0.042606242,-0.05870085,-0.004525608,-0.14680415,0.0065461337,0.050609846,0.06064117,0.05187845,0.045704413,0.034369312,0.0051252344,-0.026266975,-0.048475876,0.03192734,-0.028855758,-0.04056408,0.01773823,0.077274926,0.0014084033,0.036158305,0.0028925876,-0.06797551,0.032893877,-0.1201014,0.01452454,0.029037768,-0.04244671,0.028793711,-0.036082916,-0.008245819,-0.008014573,0.041462436,-0.0036672603,0.010351811,0.045489464,-0.027212674,-0.056726016,0.017988086,0.07583568,-0.110814005,-0.037562456,-0.0038113345,-0.082946256,0.0440335,-0.10031319,0.0037115037,0.034551,0.02886794,-0.041980606,-0.11797895,-0.01964553,-0.049152065,-0.019537732,0.0022620878,0.039583266,0.0022488707,-0.0052484856,0.005645843,0.01987676,-0.029870294,0.05931037,-0.019959927,-0.016636789,-0.022907387,-0.031149635,0.03957606,0.08504348,0.027617786,0.07715209,0.04267507,-0.043696612,-0.0050242767,0.103704415,0.030956829,-0.022803701,-0.0063824635,0.008505504,-0.0544795,-0.0379796,0.06659042,-0.022097662,-0.050571162,-0.023742748,0.015751166,0.029072886,-0.008523821,-0.0070384494,0.051888864,0.010906581,-0.026788346,0.003237358,-0.15693833,0.011882317,0.00018166316,0.006961498,-0.065354556,-0.094436444,0.058170665,0.024862602,0.019969564,0.034070764,0.08869844,-0.0034683289,-0.05581704,0.062326834,0.010171355,-0.043130755,0.06561344,0.046436228,-0.06505387,0.023040164,-0.03884345,-0.09006766,-0.04432418,0.0842952,0.040263098,-0.0008532396,0.018108562,-0.12740263,-0.0016954171,0.027503742,-0.011669564,-0.11079789,0.017010918,-0.13126893,0.011900916,-2.4698557e-34,-0.073219515,-0.04098199,0.015994903,0.059366673,-0.013446803,-0.05358646,0.002158061,0.0016850239,0.09238587,-0.040837303,0.024344869,0.006380004,-0.039320547,0.019003404,0.024416767,0.062592074,-0.026784768,0.104543835,0.00663644,0.029763788,-0.07858693,-0.056966577,-0.012681293,0.009904768,-0.0002052524,0.05430534,0.08829982,-0.036395486,0.009193522,0.027667858,0.09286535,0.04258473,-0.043038543,-0.046368867,0.029895574,0.0059421724,0.03945466,0.058831368,0.053282656,0.01830594,0.059207056,0.014158204,0.10695661,-0.0018254882,0.042868555,0.029898996,0.04855287,0.0035831798,0.0061488748,0.03965418,-0.03247855,-0.11370224,0.025676895,0.00742944,0.039381493,-0.013803441,-0.035066858,0.10090547,-0.033333514,-0.011605981,0.014611105,-0.018349232,-0.072071746,0.016884366,-0.07606776,-0.016516855,-0.048715185,-0.02048866,0.11592882,-0.005802871,-0.09604337,-0.006657844,-0.022897843,-0.01412093,-0.029109495,-0.009662628,-0.06614414,-0.001467976,-0.0032212501,0.04118317,-0.08641923,0.020375127,0.015936753,0.027910562,0.10522404,-0.0006792141,0.059096213,0.049554896,0.01766364,0.06056784,0.004419159,0.06580777,0.023363626,0.03995129,0.042990442,-1.5238586e-33,0.05429998,-0.01745652,-0.05571662,0.13860312,0.053509597,0.028750109,0.013626049,0.051805373,-0.07858335,-0.10788201,-0.031932235,-0.096903324,0.0048636105,-0.013387409,-0.02715039,0.04713899,-0.0067309253,-0.058840256,-0.13535205,0.00957564,-0.024422612,0.027034644,0.05624137,-0.013016789,0.016127963,-0.058221318,-1.6467604e-05,0.040450413,-0.045325924,0.003934703,0.0832354,-0.0635081,-0.06855762,0.044029348,-0.054705385,0.014338864,0.12204856,0.018758284,-0.005207906,0.04417579,0.041162454,-0.03772345,-0.027330533,-0.0448665,-0.033545878,0.02936633,0.04282719,-0.08345174,0.019975629,-0.0434728,0.053586878,-0.016318772,-0.011775982,-0.064525455,0.05179734,-0.06836056,-0.015524674,-0.11449848,-0.034900416,0.0032854695,0.10969643,0.01526786,-0.03098562,0.01583162,0.043568376,0.013009481,0.012356628,0.074915305,-0.06701007,0.08422231,0.06795577,0.02979128,-0.008803134,0.008722083,-0.051037885,-0.03479345,-0.013930315,-0.007833401,0.040894262,0.04714863,0.0041279546,-0.111935996,-0.07760137,-0.025669975,-0.07409196,0.038170855,0.027719256,-0.09707099,-0.0077377334,0.036700137,-0.04887765,0.049082644,-0.033842746,-0.042120736,-0.052505016,-2.0607665e-08,-0.0062943203,-0.05220232,-0.008547542,0.0016442756,-0.010935859,-0.062753305,-0.08909438,0.030304467,-0.021621699,0.039302323,-0.09648846,-0.022973286,0.06339333,0.049556985,0.0124129,-0.045171957,0.13699284,0.113705605,-0.042780112,-0.097836114,0.05704392,-0.00024765564,-0.07625207,0.003253866,0.019300636,0.01729064,0.08014089,-0.010236968,0.011635195,0.00022710528,-0.035778675,0.0060769957,-0.0026417174,-0.09256049,-0.033525255,-0.016511383,0.010374651,-0.006719209,0.0023916517,0.032338236,0.09304433,-0.0031779602,0.035225984,-0.024059655,0.06241697,-0.02702007,0.05328515,0.02646924,0.035064626,0.05748717,-0.029052278,0.024330728,-0.020937836,-0.028866662,-0.03952515,0.068747364,0.04173793,0.009587767,-0.06709016,0.006968909,0.080398396,0.020125484,-0.008334008,-0.021103583} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.825973+00 2026-01-30 02:01:12.773456+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2286 google ChdDSUhNMG9nS0VJQ0FnSURfb2F1Qm5BRRAB 1 t 2289 Go Karts Mar Menor unknown Un buen circuito y buenos Kart. un buen circuito y buenos kart. 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Un buen circuito y buenos Kart."} {-0.044794172,0.026669085,-0.05153185,-0.03273796,-0.04013324,0.035077907,-0.0028501563,0.037166964,-0.008179206,0.03935784,0.096934035,0.014958044,-0.034787808,0.008162228,-0.0120779835,0.020544479,-0.093263954,0.018860903,0.042391162,-0.057868812,0.12520856,0.0030431678,-0.008654574,0.12503241,-0.052253265,-0.021787401,0.04831667,0.031335156,0.0027741452,-0.10807061,-0.09271787,0.062588744,0.05484666,-0.015065223,-0.04380078,-0.04068449,0.06590501,-0.05412567,0.022074351,-0.021304421,-0.06333948,-0.06930109,0.018626476,-0.0018558088,0.08215765,-0.05063668,-0.008904652,0.040163253,0.046846148,-0.05449698,0.06550969,-0.045198876,0.046510022,0.045534078,0.018769845,0.018370844,-0.055329945,0.03258225,0.12539679,0.075293735,-0.0010448756,0.040954787,-0.0723327,0.040967416,-0.03406326,-0.05976679,0.008593956,0.02991687,-0.060139082,0.045118544,0.18239434,-0.088966206,0.06066207,0.048414264,0.012852345,0.031485673,-0.024389282,0.042894006,-0.06561056,-0.039229386,0.053004593,-0.032860458,-0.041598715,-0.035418414,0.005588116,-0.022331277,-0.02948089,-0.014721339,-0.011869134,-0.051154602,-0.042829648,0.037483077,-0.054551613,-0.03133266,0.028190574,-0.060990907,0.009429754,-0.07189608,0.004196031,0.068414435,0.03861932,0.048621986,0.06126311,0.050294414,-0.03791498,0.022224128,0.0105651,0.009237293,0.036830083,-0.0331263,-0.061493948,0.031632636,-0.054699406,-0.034170877,-0.02356021,-0.067012034,0.0134857,-0.0039138515,-0.074052796,-0.051826496,0.04020593,0.036889892,-0.11868294,0.019702155,-0.018451352,-0.057360318,0.097554885,-3.279684e-34,-0.064670645,-0.0057762978,-0.045424625,0.015994979,0.024612935,0.020406881,-0.06302864,-0.009260016,-0.011629998,0.030638678,-0.056944113,0.09149789,-0.026570747,-0.014836301,0.14854354,-0.009141207,0.013044207,-0.04079527,0.16165236,-0.022557624,-0.037691325,-0.03446806,-0.007832818,0.063819066,0.027490694,0.022788247,0.03650943,-0.097219594,-0.05393995,0.04423815,0.026491167,0.093415,0.0028649196,-0.017443301,-0.041103613,-0.07606209,0.03975227,0.04931351,-0.016244484,-0.03906546,0.005336127,-0.0074558677,-0.06058306,0.03572646,0.036818843,-0.08062681,0.032108396,0.07396183,0.12520127,0.04269767,-0.07767623,-0.047579568,-0.044529375,-0.026591491,0.05110773,0.038941085,-0.018030273,0.084687285,-0.0005475661,0.011474899,0.01476818,0.06966887,-0.010319297,-0.024712756,-0.0807826,0.057537172,0.023749148,-0.08820437,0.049599096,-0.020115592,-0.106219284,0.008120882,-0.01562061,-0.025271803,-0.036136787,0.02251727,-0.04382912,0.034712374,-0.02620623,-0.008038975,-0.14796038,0.005543112,0.04414836,0.064287536,0.102567114,0.110460006,0.0018785141,0.009057301,-0.01533983,0.077851325,-0.029711826,0.0533042,0.077648275,0.006465531,0.057878703,-3.451407e-34,-0.016560266,-0.046603233,0.04362213,0.061471622,-0.03656872,0.01606009,-0.06881062,-0.01580943,-0.0755346,-0.00758753,-0.023701709,-0.060376387,0.09660019,-0.0322679,0.026926806,0.05319326,0.020756604,-0.0022108376,-0.09080238,-0.021662382,0.021493826,0.06476371,0.01673264,-0.03452359,-0.04934407,0.0017333648,0.009350747,0.085313976,-0.058822025,-0.000798084,0.031931147,-0.06707426,-0.031662393,0.054609627,-0.03688608,0.06127304,0.07902748,0.07423894,-0.03040819,0.04562342,-0.01311286,0.09322588,-0.0731783,-0.039989,-0.07992061,-0.0043592043,0.031231439,-0.09302015,-0.0043339687,-0.054234482,0.075201124,-0.01728942,0.011208956,-0.034003038,-0.009755873,-0.06763395,-0.06401896,0.004858408,-0.06356921,-0.04069665,0.08073739,-0.018182835,-0.009654246,0.013254726,0.06946625,-0.020894343,0.0014985362,0.08900803,0.0938331,0.003579985,0.07563369,0.033112917,0.0015049998,0.033581503,-0.07195881,-0.022397837,-0.06871644,-0.042433266,-0.004905364,0.012413146,-0.039466023,0.027874792,-0.04555063,-0.0072545577,-0.014725759,-0.05463227,0.034525644,0.004529881,0.057837777,0.003272159,0.021111896,0.045277674,-0.038880847,-0.028350595,-0.015111959,-1.7836003e-08,0.007303153,-0.021718476,-0.06530643,0.027271906,0.09781868,-0.085401304,-0.056425743,-0.042944297,-0.018437026,-0.023561422,-0.0038399673,-0.011473735,-0.004489545,0.048420127,-0.023189824,0.0520875,0.035584416,0.121788435,0.04645562,0.0008771924,0.07629319,0.014709543,-0.043853566,0.014352506,0.014537178,-0.038912043,-0.03006467,0.04521877,0.009769147,-0.029576104,-0.02927081,0.010310177,-0.04591265,-0.044434883,0.05067594,0.034218375,-0.041139696,0.012881815,-0.0243361,-0.044986516,0.036734823,-0.031249689,-0.0868053,0.010937827,-0.010979567,-0.07395375,-0.0082351845,0.056260437,-1.879552e-05,0.061377533,-0.043994144,-0.020215755,0.057273325,0.022416165,0.06156845,-0.019078506,0.06566461,-0.055218853,-0.057908744,0.01451401,-0.020088857,0.05090046,0.002974007,-0.049620517} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.836187+00 2026-01-30 02:01:12.780596+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2288 google ChdDSUhNMG9nS0VJQ0FnSUR4d3BDY3FRRRAB 1 t 2291 Go Karts Mar Menor unknown Das lohnt sich für das Geld immer wieder das lohnt sich für das geld immer wieder 5 2024-01-31 01:52:39.833374+00 de v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Das lohnt sich für das Geld immer wieder"} {-0.0847403,0.047793783,0.05303007,0.014529488,0.03919737,0.002662877,0.12370239,0.04777513,0.058294594,-0.0030161364,0.041355044,-0.02322495,-0.00068502536,0.06348055,-0.021586163,-0.024609573,0.00040823678,0.033753254,-0.057163607,-0.009212507,-0.09161286,0.06363026,-0.016971331,0.06549551,-0.006914454,-0.07175571,0.045762807,-0.067624204,0.032842856,0.020894399,0.086582035,-0.043623585,0.0054706046,-0.033369645,0.018332737,-0.063270964,0.025048502,-0.024497395,0.00148956,0.023864772,-0.061578803,-0.008506088,-0.044039678,-0.052321624,0.018980056,0.0420556,0.014595026,0.051624503,-0.07459987,0.06728617,-0.05991137,-0.04418758,0.0024785968,-0.029155133,-0.024549294,-0.08354985,-0.022310128,0.010601308,-0.033948924,0.051663958,0.026142811,-0.020413708,0.032306034,0.05528561,-0.04654092,-0.1021407,0.028377602,0.0160466,-0.082434684,-0.029342895,0.06040193,-0.08299756,0.018110136,0.005043054,0.051054113,-0.09702725,0.020555357,0.031348195,0.061744876,-0.068780534,-0.023255821,-0.02602012,0.039640643,0.016203163,0.013313348,0.008493001,0.023355259,0.06618964,-0.024678923,0.026555851,-0.031570602,-0.07156709,-0.09615981,0.053430356,-0.072502956,-0.09248693,0.058521442,0.02837453,-0.029933093,0.070415005,-0.08040269,-0.035648454,0.082566194,-0.06690972,-0.04718313,-0.04870839,-0.046555277,0.014304352,0.03980672,-0.0038411669,0.06052452,-0.026112974,-0.044991747,0.037743956,0.12072752,-0.010381589,0.075022854,-0.037614558,-0.020575788,-0.074224,0.014172416,-0.06747409,0.045297448,0.032842934,-0.081338815,-0.008118886,0.064781085,4.9703178e-33,0.0142151965,-0.057025842,-0.09707073,-0.015503613,-0.06360799,-0.018888507,-0.047062557,0.00068131124,-0.04810573,0.03105558,0.023583248,-0.05564385,-0.0025380715,0.000747092,0.07343063,-0.024070375,-0.031109102,0.025267627,0.044531297,-0.015335559,0.011624773,-0.005742657,-0.027762976,0.038985882,0.05472425,0.014399644,0.011444363,-0.07715757,0.014933195,0.023634776,0.082646295,-0.08517178,0.0015470278,-0.03223718,-0.05885982,0.046414964,-0.026898745,0.018281583,0.04106502,-0.13095075,0.05090983,-0.01506249,0.032625504,-0.06947154,0.036983136,0.11314507,-0.013495052,-0.00011208398,-0.06815152,0.018382927,-0.028680256,0.04671586,0.010857792,0.077217884,0.0098777125,0.046515483,-0.030276345,-0.027978154,-0.026480604,-0.034062173,-0.06526362,-0.013873099,-0.052526496,-0.02881785,-0.018841116,-0.101393804,0.038377814,0.024938876,-0.04552635,0.05143504,-0.10135221,-0.006015551,-0.017983885,-0.05790401,-0.034861285,-0.07965408,-0.0014274074,0.047097985,-0.12031571,-0.016650043,-0.08310951,0.09234697,-0.02433399,-0.060912173,0.039602328,0.05159307,0.073529944,-0.054710835,-0.0050534327,0.083896846,0.036677096,0.010979359,0.0063247983,0.03826166,-0.01854844,-6.0843158e-33,0.04824945,-0.08615865,-0.023290854,0.04872553,-0.043086953,-0.010217363,-0.042431913,0.08461329,-0.034525406,-0.13874482,0.0268684,-0.0042021447,-0.016666982,0.09143611,-0.0015809964,0.003510378,0.076849915,-0.021933768,0.059159417,-0.06723078,-0.00026753166,-0.06027626,-0.006806821,0.00056507153,-0.06868989,0.040856518,0.0028763146,0.066299744,0.016124278,0.047249645,-0.017738197,0.013209301,-0.0051540053,-0.011509883,-0.036884964,0.026537836,0.046379127,0.039700344,-0.06930814,0.06063767,0.011716767,0.037440464,-0.13100122,0.07653638,0.0027764633,-0.0048057255,-0.03462972,-0.030012764,-0.078423195,0.041243546,0.08628335,-0.01599567,0.07655991,-0.06454464,-0.014624885,-0.03456431,-0.009014831,-0.04756637,-0.100876324,-0.018419635,0.035260666,0.016657243,0.021420196,0.027419388,-0.039845917,-0.054425932,-0.07182726,-0.020511143,0.10652956,-0.033318948,0.06494389,0.053383436,0.028610328,0.052832317,0.11374927,-0.09803442,0.0287641,0.08123405,-0.05351275,-0.003071802,-0.036006704,0.03597773,0.04927117,0.019620292,0.02323141,-0.010386729,0.04288116,0.026229287,0.0251382,-0.03256002,-0.008662439,0.11417523,0.08366701,0.017979681,0.011495184,-2.7018862e-08,-0.060048733,-0.03912404,-0.031509425,-0.012837248,-0.00700879,-0.041670147,0.023088342,-0.01604599,-0.12687619,0.08593313,0.005145275,0.097917825,-0.08640075,0.08001908,0.0105473865,0.06936747,-0.08351126,-0.04104767,0.0010968483,-0.0790113,0.07833947,-0.05007255,-0.012840032,0.037735704,-0.013373955,0.08162635,-0.039637916,-0.0961563,-0.017138012,-0.0068655517,0.025531732,0.13045232,-0.015008513,0.00864216,0.0417834,0.012611609,-0.0549905,0.05095911,-0.032394513,0.056567214,0.0008384822,0.07063065,0.0066485074,-0.02435322,0.00721093,-0.06793312,0.041569296,0.0046900744,0.0029796087,0.011299976,-0.05135693,-0.029415105,0.027136358,0.027507586,-0.06469214,0.024485158,-0.015157372,-0.0049270117,-0.028199617,-0.026562938,0.06108685,0.057381514,0.035817757,-0.014678241} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.860157+00 2026-01-30 02:01:12.787544+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2290 google ChdDSUhNMG9nS0VJR25pOTNSMHFiS3RBRRAB 1 t 2293 Go Karts Mar Menor unknown Un circuito increíble un circuito increíble 5 2025-07-04 00:52:39.833374+00 it v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Un circuito increíble"} {-0.08875831,0.031819116,0.013813584,0.031699214,-0.002872547,0.01194787,0.008430188,0.036434136,0.021313291,0.008682563,0.08357692,-0.08065158,-0.0020887926,0.013676096,-0.09698814,-0.017990196,-0.045969944,-0.0074159387,-0.001016833,0.029024256,0.043746617,0.037531596,-0.10368458,0.08538091,0.0115496935,0.046912115,-0.015323175,0.026195535,-0.075388715,-0.071738526,-0.048591636,0.020613281,-0.048899006,-0.085804194,0.027500695,0.035889156,-0.029113958,-0.01566661,0.03582693,-0.025049768,-0.08706037,-0.005185083,-0.017279483,-0.04643322,0.115813605,0.0106091825,-0.01583915,0.017649174,0.029805483,-0.055357076,0.01916049,0.013963086,0.1008241,0.040667642,0.0111834435,0.0052070147,-0.0029226001,0.061892327,0.02120412,-0.044006947,0.041977216,0.018838743,0.050321884,0.0050257696,0.00039021525,0.053524494,0.047427252,-0.05017492,0.02655807,0.0406673,0.101973146,-0.06525131,0.045433402,-0.02069184,0.07960911,0.03636533,-0.00947809,0.048328515,0.02212944,0.031010108,-0.0066043567,-0.105771676,-0.043207202,-0.0036334246,-0.003918318,0.021254595,-0.020138206,-0.044957023,-0.00071124564,-0.05546366,-0.11773329,0.018289216,0.011588483,-0.012485778,0.02421236,-0.10607805,0.045943588,-0.032761794,-0.04660804,0.10076443,0.036372583,0.061084196,-0.012066472,0.014988077,-0.045034476,0.018897574,-0.017799906,-0.040524058,0.008659797,-0.061283536,-0.035806414,0.031955723,-0.028425388,0.025129307,0.09412717,-0.06938548,-0.017580891,-0.0069096875,-0.024463661,0.0034978176,-0.02055761,-0.018127207,-0.056926742,0.009850658,-0.10304491,-0.032243732,0.1629036,2.5816494e-34,-0.006135315,-0.02531067,0.021281375,0.0029421926,0.092273474,0.057520732,-0.04707525,0.0003532367,-0.036909778,-0.033698168,-0.02254831,0.10551225,-0.043782286,-0.0029207256,0.06634474,-0.033955164,0.09278142,-0.046521224,0.044715356,-0.0831095,0.060884364,0.04499332,-0.0053552575,-0.006234155,0.030889262,0.027780382,0.0050992435,-0.02478564,-0.017111681,-0.009532693,0.081268966,0.053797077,-0.0005844687,-0.01648171,-0.022453837,0.005088624,0.0026813152,0.042454947,0.037734553,0.030344455,-0.0047124885,-0.015726404,0.0054833926,-0.014130086,0.1012491,-0.06346332,0.030402085,0.030013863,0.05043007,0.03176039,-0.03171437,-0.012663367,-0.07043881,-0.06253129,-0.0365941,-0.002856854,-0.013588082,0.063586466,0.04709174,0.011875465,0.0300717,0.1094414,-0.029704688,0.021052187,-0.097002186,0.0029211307,-0.03982058,-0.066541135,-0.003721074,-0.05423534,-0.06376726,-0.0027057242,-0.03144201,0.025971955,-0.029050326,-0.012273812,-0.08116586,-0.11726687,-0.017807135,0.051425193,-0.034523234,-0.06785952,0.01610459,0.045454238,0.03400417,0.05381115,-0.051378015,0.048087616,0.012430986,0.07854063,0.0021744492,0.05913355,0.03491356,-0.01388589,0.09888222,-1.775299e-33,0.0015346995,-0.043561365,0.07097232,-0.017460883,0.0054731844,0.028371997,-0.07738064,0.025811125,0.019563846,-0.021198137,-0.015871279,-0.012019864,0.05716186,-0.048818436,0.0042458004,0.04256167,-0.086052686,0.0030861537,-0.013508542,0.08396156,0.09464584,0.034002624,0.019623326,-0.06589069,-0.06413542,0.057682905,-0.0148258405,0.05730042,0.013167869,0.027115487,0.07943339,0.007950178,-0.038140222,0.06818142,0.010901642,0.013546184,0.018892061,0.00947777,-0.027552623,-0.011487545,0.004975283,0.081547424,-0.012437585,0.041555397,-0.04445034,0.010773817,0.010856104,-0.03230046,0.05206315,0.026392294,-0.0693793,-0.072211005,-0.0046895505,0.011712238,-0.003224892,0.00351155,0.02823619,0.038760766,-0.016168224,-0.083326355,0.056310613,0.015522043,-0.03273822,0.061849892,0.089337625,-0.007616147,0.01599809,0.09023226,0.13518777,-0.042066127,0.016297704,0.080882326,-0.036168877,-0.15290552,0.021660803,0.018593788,-0.19159466,0.07684849,-0.0049741995,-0.07376291,0.04470987,-0.036212776,-0.077776626,-0.08242825,0.011071577,-0.06274027,0.064004816,-0.024704548,0.015478263,-0.06457665,-0.021135673,0.049336117,-0.053472538,0.017935622,-0.006238091,-1.6487938e-08,0.056940593,-0.043772038,-0.0015944062,-0.0001975765,0.1338789,-0.18348803,0.021963064,-0.053001143,-0.054807883,0.0050754175,0.0141206775,-0.02473335,-0.04949927,0.02164988,-0.0044089057,-0.00096928485,-0.048461393,0.10346822,0.027240451,0.059899144,0.0036091136,-0.03880673,-0.051253315,-0.024469944,0.07762983,-0.012941187,0.06109499,0.009604278,-0.044976022,0.027726382,-0.039673593,-0.017152917,-0.025258237,-0.039360706,0.012845282,0.014462389,0.023976509,0.051802583,-0.080280565,-0.14357544,-0.026466288,0.07418405,-0.014708368,0.024146946,0.002169028,-0.11543244,-0.012304683,0.005642584,-0.0039502783,0.0042213826,-0.09181079,0.014467718,-0.01910773,0.0011689361,-0.008428964,0.031987827,-0.0125254085,0.032682553,-0.08403937,0.05697964,0.033213176,-0.009907008,-0.03136644,-0.09637445} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.887396+00 2026-01-30 02:01:12.796997+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2291 google ChdDSUhNMG9nS0VJQ0FnSUQ3aWJfYXhRRRAB 1 t 2294 Go Karts Mar Menor unknown Buen sitio buen sitio 4 2025-01-30 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Buen sitio"} {-0.058144275,0.035346445,-0.024610525,-0.006521028,-0.041883834,0.06358716,0.09223945,0.017249797,0.0002827089,-0.027387971,0.01270146,-0.08202912,-0.011595411,-0.058579978,-0.025009705,0.011099755,-0.056782734,0.1265871,-0.0069337827,-0.00057943177,-0.014150389,0.020109484,-0.015132093,0.10941614,0.025544316,-0.024088932,0.1124057,0.026293263,-0.035430115,-0.09167997,0.0064971093,-0.008356788,0.074090034,-0.06988202,0.002000093,-0.026846502,0.025726339,-0.09395484,0.020544913,-0.028984716,-0.04853079,-0.09594059,-0.035665136,-0.0300141,0.062379096,-0.066295445,0.029418448,0.027790237,0.08646046,-0.019923653,-0.066089466,-0.027158368,0.009290241,0.049736172,0.0011492536,0.013496576,0.013479255,0.05277789,0.05250732,-0.00026232915,0.029293574,-0.047291655,-0.06362201,0.024724826,-0.02291827,0.034994427,-0.06194266,-0.03247674,-0.076593235,0.04873434,0.08073248,-0.03730963,-0.023364102,-0.05707541,-0.0058351685,-0.00423571,-0.03076073,-0.030846572,0.013210578,-0.090530045,0.06122443,-0.035179496,-0.041125346,0.018036233,-0.041875638,0.0051391074,0.016860904,0.036380004,-0.015043694,-0.056396563,-0.020420471,0.039734975,-0.07061432,-0.018529773,-0.019181753,0.0048394557,0.004016631,0.04230562,0.03128854,0.08297929,-0.0017108055,0.04077409,0.07109619,0.01938991,-0.07558416,-0.006005164,0.08310898,-0.01900949,0.033650205,-0.02701119,-0.08266925,-0.018576035,-0.05290222,0.045343753,-0.037827786,0.028048785,-0.010723075,-0.13503014,-0.104052216,-0.040601265,0.03394716,0.039779898,-0.043235034,0.019546034,0.0109475115,-0.049187377,0.009485595,2.3796496e-34,0.028330833,-0.037018977,0.05601961,-0.0058171498,0.00058715476,0.04939471,-0.06438678,-0.011539723,-0.07931425,-0.033959292,-0.10963511,-0.015591299,0.029211912,-0.028939046,0.1200186,0.017719071,-0.018556418,0.054307703,0.08604104,-0.015260291,-0.031565852,0.051751733,-0.068710245,0.054837678,-0.0062653897,0.019167872,0.07388861,-0.042355936,-0.05586061,0.043994393,0.07634704,0.011499466,-0.019836813,-0.012806711,-0.04205128,-0.08105315,-0.07538088,0.055711538,-0.030379731,-0.01669043,0.033243135,0.03685729,-0.038076904,0.061574843,-0.041054178,-0.07129808,0.06758193,0.021010645,0.082510985,-0.0047521573,-0.060295634,0.0015606864,-0.019233996,0.021760387,0.057206128,-0.041971974,0.010289394,0.08493117,-0.046356462,0.030838398,0.13663661,0.056344084,0.059311915,0.01600256,-0.07529155,0.010534098,0.03389993,0.06615369,0.06793575,-0.05261878,-0.04290419,-0.012061692,0.013979992,-0.040105205,-0.031044716,0.011886854,-0.013467764,0.01027157,-0.015149946,-0.017101265,-0.08334835,-0.06886876,0.048716832,0.067603774,0.010497717,0.053552885,-0.061625216,0.03233434,-0.04940931,0.07584761,-0.008147226,-0.029571587,0.029162334,-0.046922896,-0.049747,-7.7375096e-35,-0.020791303,0.02172528,0.03734452,0.073458314,-0.020460997,-0.01659327,-0.05266503,0.046668254,-0.0375839,-0.011690762,0.054479543,-0.09356822,0.11818192,-0.015160675,-0.031964127,0.13661215,0.016990373,-0.003785047,-0.12849702,-0.02739494,0.023458948,0.007960534,0.027972361,-0.036926705,-0.02984706,0.047574423,0.06745841,0.043688327,-0.08431179,0.10629846,0.02903331,-0.022809772,-0.09825057,0.047059942,0.04184,0.07327753,0.061269157,0.0693789,0.021351345,0.039823435,-0.0066150595,-0.002295774,-0.044764556,0.0037851867,0.034484804,-0.051948838,-0.04004131,-0.00717474,-0.054027967,-0.08704687,-0.04253615,0.019374412,0.028016668,-0.025136355,-0.019368228,-0.0335307,-0.07623731,-0.040012497,-0.08540029,-0.022582054,0.04317789,0.039277222,-0.02211848,0.031729627,0.03210982,-0.030447038,-0.12232776,-0.016408434,0.026361788,0.026231902,0.0016596644,-0.087489985,-0.0312448,0.1694938,-0.13101129,0.08280516,-0.019625554,-0.00931222,0.0068817874,0.023614377,-0.05142201,-0.05854772,-0.020142332,0.023597829,0.008528553,0.040769454,-0.023142572,-0.09072377,0.020128828,-0.0011603376,-0.01716623,0.048023872,0.0076538096,-0.03398893,-0.06509457,-1.3541263e-08,0.024125323,-0.10109279,-0.014954677,0.06863227,0.022460382,-0.0058116177,-0.076662876,-0.044469513,0.017385496,0.033576593,-0.05611296,-0.028424831,0.050432123,-0.014753264,0.01064512,0.06479311,0.04567079,0.008094044,0.01713923,0.009469247,0.013612254,-0.036264013,0.012966964,0.005080304,0.05807715,0.011794884,-0.0037171044,0.094053894,0.0780444,-0.02402143,0.08429563,0.083886266,-0.029956894,-0.023132168,0.08701845,0.07588088,-0.053317767,0.048737876,-0.063173376,0.055441152,0.0030628422,0.029819,0.013663791,-0.013500381,0.039268453,-0.022579243,0.05349762,0.048245408,0.025204312,-0.062099632,-0.037413474,-0.03506559,0.07966711,0.06905573,0.07836686,0.09514268,0.057477597,0.034992423,0.06568868,0.044072073,-0.0009745426,0.06718631,-0.017667266,-0.0075485227} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.900285+00 2026-01-30 02:01:12.803392+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2294 google ChZDSUhNMG9nS0VJQ0FnSUNzczkzaUNREAE 1 t 2297 Go Karts Mar Menor unknown Genial para pasar un buen rato genial para pasar un buen rato 4 2026-01-30 01:52:39.833374+00 id v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Genial para pasar un buen rato"} {-0.061295375,0.048145857,-0.062268082,-0.053143762,-0.06913793,0.05072523,0.05874032,-0.012779018,0.0058469,0.029698312,0.01755435,-0.017068217,-0.08616387,-0.0039551556,-0.0073860637,-0.02945185,-0.092662305,0.06910331,0.017688746,0.01381038,0.05483241,-0.014821948,-0.012894258,0.048551545,-0.11050249,0.0028456778,0.022237476,-0.0037369553,0.05409905,-0.023729496,0.018548213,0.07061339,-0.021590233,-0.086307965,0.03272494,-0.04813591,-0.020290768,-0.0254993,0.040855013,0.028786292,-0.007503405,-0.0616864,-0.091170736,-0.005323153,0.012513153,-0.053774748,0.051810954,0.06949313,0.050166782,-0.029466696,0.014474425,0.03396839,-0.026872298,0.0015717363,-0.05347196,-0.015414064,0.006936476,-0.08609424,0.064508565,-0.043316606,-0.010833162,0.034157723,-0.054344967,-0.013092093,0.037999608,0.012142885,0.007386526,-0.03308477,-0.07559225,0.05193364,0.082103394,-0.09575266,0.00062399864,0.077197544,-0.012979112,-0.00038607328,-0.038525302,0.04721118,-0.048109587,-0.11811075,0.042828083,-0.025493266,-0.070351765,0.016918989,0.027624,0.022057317,0.06198184,0.057939004,0.005550476,0.015793797,-0.023944654,0.030533034,-0.04839688,-0.018846568,0.061140016,0.008322509,0.04195888,-0.072462246,0.023745073,0.04345672,-0.004972757,0.0496443,0.032142863,0.031811226,-0.040199537,-0.032471158,0.018392181,-0.011924528,0.099458106,0.03354718,-0.10141772,-0.030365417,-0.019574882,-0.003003962,-0.0058866544,-0.026030974,0.03959889,-0.0960376,0.013412247,-0.046359986,0.0665684,-0.05804367,-0.061866708,0.049647935,0.015243762,-0.038463876,0.053275544,1.698465e-33,-0.012253822,-0.06354155,-0.004058049,0.0027072073,-0.024478152,0.0927202,-0.055215478,-0.0741941,0.0065993783,0.029845139,-0.10869102,0.028604666,-0.035372533,0.0558253,0.049167346,-0.003141696,0.006040022,0.04666984,0.12034901,-0.049941782,-0.11665406,0.05481544,-0.020533452,0.04559999,0.06358151,0.04337863,-0.061558507,-0.053384524,-0.05619606,0.05972823,0.11575191,0.0022041672,-0.027938878,-0.07414343,-0.08619754,-0.11050291,-0.007076516,0.018461233,0.00063462096,0.023527442,0.10574218,-0.042151734,0.0050052763,0.078972735,0.04290779,-0.11057975,-0.0038742449,-0.015329267,-0.021820974,0.0214423,-0.053754687,0.012616026,-0.041725386,-0.08625648,0.0062834,-0.08946424,-0.049180824,0.06296496,-0.09389853,-0.0480719,0.07369355,0.01952379,-0.031425484,-0.026449235,-0.018360866,-0.055331208,0.011289389,0.0566675,0.071840405,-0.029956076,-0.038513765,-0.022943111,-0.03897114,-0.051069915,-0.033962935,0.04516466,0.03262241,0.105781555,-0.0328429,-0.026432618,-0.10254787,0.10300762,0.033483353,0.03559898,0.10277512,0.0544482,0.028135682,0.018524682,-0.0045924583,0.025435993,0.0692764,0.0548254,-0.012727055,-0.021340217,0.0071898173,-3.0246337e-33,-0.02681869,0.0020623195,-0.020843938,0.058893986,-0.05025483,-0.014721283,-0.12225293,0.012658861,-0.030679079,-0.0074161063,-0.0148356445,-0.07058035,0.12353232,-0.0362591,0.047127653,0.045443524,0.037643544,-0.0046079434,-0.08270842,-0.07304874,-0.021123378,-0.022558067,0.04767685,-0.04821011,0.023196112,-0.03267487,0.034506567,0.04152242,-0.028016668,-0.01477598,0.08078607,0.015170964,-0.0017358246,0.13117594,0.07969046,0.033111107,0.09452428,0.063737124,-0.027249174,-0.019052079,-0.024260256,0.06818328,-0.033881996,-0.0048723933,0.0001515416,-0.028452575,0.057876393,-0.06161777,-0.027080467,0.012867411,0.08416805,0.011255751,0.033332486,-0.11512921,0.03323723,-0.070442006,-0.040999603,-0.028442105,-0.06395063,-0.0101021,0.096858405,0.09236297,-0.020289758,0.015217617,0.02979753,-0.035621293,-0.039565008,0.08761801,0.014373721,0.067459,0.1084743,0.003134125,-0.029189717,0.06901451,-0.05031153,0.031982183,0.011292962,0.00086838444,0.0031751874,-0.028613562,-0.104613155,0.01314351,-0.05279856,-0.044815015,-0.09512509,-0.011772714,0.016769871,0.036448285,0.020073008,-0.009617963,0.07481862,-0.033562183,-0.05903756,-0.025933858,0.0030732788,-1.9083714e-08,0.0011737795,-0.024846762,-0.036809295,0.06470689,0.07523252,-0.06596759,-0.02196665,-0.092789695,0.010988045,0.0040164376,-0.016563552,-0.036815345,0.05684995,0.07406777,0.004224182,0.081307225,0.0056610247,0.03090398,0.012924132,-0.014479893,0.038724706,-0.008184752,-0.027365841,-0.014784067,0.012556339,-0.09629415,-0.024751578,0.023014313,0.020502787,-0.024553532,0.063270114,-0.003634042,-0.08605442,0.020907696,0.026589677,-0.014216441,0.0029798022,0.06612893,-0.030038543,-0.022863094,0.102853,-0.030098656,0.06331659,-0.033950977,-0.003044304,-0.050472643,-0.0054560243,0.031937256,-0.038847953,-0.043835152,-0.031219898,0.008147666,0.105984874,-0.01707524,0.02233326,-0.010072628,0.014373721,0.004400384,0.06797674,0.0028904295,0.0063483887,0.15717758,-0.02639196,0.013803055} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.93704+00 2026-01-30 02:01:12.816451+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2295 google ChdDSUhNMG9nS0VJQ0FnSUN4NXJud3J3RRAB 1 t 2298 Go Karts Mar Menor unknown De mis favoritos, muy bueno de mis favoritos, muy bueno 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-B {} {"V4.03": "De mis favoritos, muy bueno"} {-0.04157909,0.01986746,0.026262145,-0.05450599,-0.061779782,0.06351922,0.15833926,0.03298233,-0.008682703,0.025334653,0.07872858,-0.056167986,-0.004407252,-0.016937608,-0.007341865,0.07356307,0.027389603,0.05013863,-0.008197306,0.06745223,-0.013730712,-0.0119816065,-0.0383068,0.14352147,-0.08691184,0.016070459,0.08019794,0.076649934,-0.020617157,-0.05997952,-0.01357095,0.049723156,0.017792396,-0.022379547,-0.010318396,-0.048449844,0.045675103,-0.07850006,0.02025718,0.024835411,-0.08764147,0.007146152,-0.008490594,0.022883538,0.010860004,-0.09772618,0.019977689,0.06886005,0.0869845,-0.060925312,0.017155413,-0.0011969205,0.015676934,0.009288715,0.0326878,0.052210476,-0.01905597,0.045014933,0.0469969,-0.015892701,-0.010538742,-0.02885126,-0.0023412223,0.006407705,-0.019242784,-0.07580244,0.006523019,0.014343924,-0.1372388,0.080808714,0.11382019,-0.052490696,0.023155328,-0.0018171757,-0.038970597,0.041338667,0.029835232,0.03280527,-0.02806281,-0.09530007,-0.0052891443,-0.041271456,-0.057295773,-0.025547588,0.059640996,-0.026185045,-0.011073518,-0.018993985,0.06842108,-0.045319896,-0.025247157,-0.01444744,0.00312842,-0.022834685,0.014180431,0.06427425,0.017970584,-0.041638453,-0.0066279457,0.11676486,0.089976825,0.045176636,0.048190594,0.074627206,0.030586602,0.017639099,0.0024113616,-0.017458567,0.04086089,0.01502259,-0.029663332,-0.054259542,0.0053803935,0.011035962,-0.008684342,-0.046560243,0.06200398,-0.056149855,-0.023291096,-0.046939973,0.03766682,0.006922324,-0.05949243,-0.007365216,-0.041590493,-0.058442958,0.014889068,-8.5182456e-35,-0.01671688,-0.099463716,-0.00887105,0.06443912,0.0068493835,0.046164606,-0.08016209,0.03141276,-0.104432,-0.059711374,-0.072938055,0.091021374,0.010776208,0.006297828,0.08905101,0.017167136,-0.015633825,-0.007434463,0.0902899,-0.0601062,-0.06332008,-0.0032120787,-0.044707812,0.05187961,-0.05001938,0.01478742,-0.029908217,-0.109504975,-0.057590704,0.04598158,0.025978355,0.02286525,0.006093154,-0.026074568,-0.05130694,-0.024213789,-0.013599483,0.058452465,-0.017502282,-0.041205205,0.019111075,0.0016372467,-0.07066299,0.02508981,0.07513989,9.988247e-05,0.10280159,0.032988627,0.03819272,0.03542243,-0.04893524,-0.075836316,-0.042312462,0.05370888,-0.019136952,0.021617144,-0.033699315,0.06806581,0.03367182,-0.063485965,0.056876533,0.062498413,0.020941027,-0.074478455,-0.07851175,-0.02440447,0.020088414,0.031390373,0.04230588,0.033064544,-0.080630384,-0.020057788,-0.066288635,-0.030949663,-0.048943184,0.0003412731,0.03734309,0.031573564,0.07703752,-3.942424e-06,-0.03369905,-0.06923833,0.084616125,0.035676472,-0.0029060938,0.10164955,0.019890526,-0.011269896,0.0003272124,0.06538783,-0.08299207,0.035697024,0.037291482,-0.05017792,-0.035304487,-1.6097742e-34,-0.06573441,-0.007720245,0.01076273,0.08576702,-0.015443847,-0.041697394,-0.065477714,-0.018232469,0.0020255537,0.010250763,-0.06574365,-0.14573833,0.090813965,-0.07086397,-0.009448874,0.06346099,-0.008919605,-0.029929362,-0.11637904,-0.060977932,0.005320573,0.077585354,0.0665663,0.011961935,-0.08395783,0.015955666,0.059160624,-0.04469981,-0.034297638,-0.017801898,0.02933173,0.02137558,-0.07443407,0.021859916,0.03298501,0.04183954,-0.0070330384,0.09992011,-0.014775058,0.04247898,-0.09832846,0.09190865,-0.030597819,0.012996273,-0.030821448,0.05577741,-0.039786775,-0.085334286,-0.003619307,-0.07586855,-0.0065067853,-0.004658064,-0.0056092367,0.037044033,-0.04711926,-0.0754146,0.0013132358,-0.0718684,-0.09202649,0.04571773,0.039110668,0.015992552,-0.064991005,-0.028988015,0.060746815,0.025719572,-0.10912388,0.043770764,0.028377965,0.007034208,0.055593044,-0.08439094,-0.07350706,0.048397217,-0.054469444,0.003990885,-0.09702976,0.020781562,0.046810776,0.071440056,0.03208083,-0.02347797,-0.015275836,0.013533318,-0.059645463,-0.029923422,-0.029820418,-0.05104386,0.013154082,0.0049024518,0.02567171,0.020464562,0.037850775,-0.020678813,0.041024454,-1.8147489e-08,-0.023630857,-0.05537362,-0.03426175,0.054253936,0.0046819407,-0.08979902,-0.10105997,0.036602728,0.042285014,0.06850892,-0.020520907,-0.044261493,-0.030905265,0.0842645,0.046786442,0.11238503,0.092462376,-0.02177183,0.005362168,-0.02355415,0.06064869,0.0020658546,0.0448522,-0.049415685,0.0078906,0.02808442,-0.068781234,0.030078568,0.029576192,-0.037948333,-0.0041747196,0.031803418,-0.024690805,-0.03579212,-0.009192454,-0.011167984,-0.015498467,-0.027789848,-0.05800612,0.041742824,0.07035676,-0.022546068,0.011018424,-0.048714038,0.033288777,-0.033540968,0.064816825,0.06849028,0.0050935945,0.005685878,-0.02687419,-0.014115895,0.0431127,0.09842525,0.0056534293,-0.045860395,0.015671311,-0.011813977,0.0163019,0.009678393,0.052523185,0.15340221,0.047260933,-0.021787388} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.948534+00 2026-01-30 02:01:12.820898+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2296 google ChdDSUhNMG9nS0VJQ0FnSURicXVyb3B3RRAB 1 t 2299 Go Karts Mar Menor unknown War cool war cool 4 2025-01-30 01:52:39.833374+00 en v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "War cool"} {-0.052528642,0.008734568,-0.0074087125,-0.034062095,-0.034332242,-0.028154382,0.14367373,-0.047835946,-0.0025332188,-0.0031767963,0.039851762,0.011821983,0.035305504,0.00253118,-0.07743261,0.040197056,0.028588347,-0.027962536,-0.10842367,0.021539042,-0.070428394,0.06761603,0.05916205,0.035323583,-0.009850041,0.09986027,0.0031186228,0.06399493,-0.056832045,0.033829488,-0.023725439,0.10286329,-0.09277268,-0.022827234,0.02695059,-0.010570114,0.044158295,0.058314834,-0.0029650906,0.02030183,-0.07362829,-0.06966692,0.018877907,-0.008658574,0.019636825,0.037682988,-0.03688452,-0.079699546,0.05995953,0.055729855,0.038413547,-0.023954691,-0.016241193,0.0234431,0.012492092,-0.025876807,0.0086467,-0.024827342,0.031776696,-0.011154858,-0.0039248946,-0.014609875,-0.056809045,0.013895059,0.00034104186,-0.018293448,0.033337932,0.052949414,-0.115571715,-0.085477,0.055597138,0.07589782,0.04744868,-0.020611787,-0.029464219,0.04329092,-0.008304225,0.015964622,0.11693881,-0.062160123,0.052065175,0.03200513,-0.046000287,-0.008552845,-0.00787591,-0.08412394,0.001094838,-0.008872711,0.01489313,0.0663451,-0.09536341,0.043667797,0.115279816,0.07595069,-0.066644035,0.03763787,0.049800932,0.014856504,-0.13091701,0.12999843,0.023370923,-0.054480568,-0.051003207,0.023648113,0.040204443,0.0066274507,-0.024405168,0.015611789,-0.04696881,-0.035625685,-0.058639385,0.024076069,-0.04333377,-0.011071013,0.012879431,0.09036484,-0.019174252,-0.00025407656,0.013083712,-0.029810851,0.045590024,0.004520104,-0.044628095,0.07643192,-0.026078587,-0.07712504,-0.020122055,-2.6722487e-33,0.060175925,-0.06904936,-0.0049620834,0.0934843,0.06609906,0.011284716,0.03189287,-0.005670054,-0.04479262,0.09302523,0.006294824,0.05225647,-0.0050329887,0.0657335,0.074508116,0.01625371,-0.062885866,0.057209782,-0.017319065,0.045610104,-0.064596936,0.033160847,0.010263843,0.022319514,0.017641986,0.038956802,-0.012233199,-0.08670138,0.08337989,0.07005051,-0.027096353,-0.017768158,0.008096976,-0.056575276,-0.003575802,-0.06538315,-0.040616374,0.0038560505,-0.07059582,0.053055953,0.06999703,0.055482265,-0.06856699,-0.012803848,0.10274905,0.014354588,0.04724411,0.010495276,-0.025087528,0.010453868,-0.03373915,-0.07257061,-0.13811144,-0.00078664545,-0.02019933,-0.0033221839,0.023677127,0.08387734,-0.06886465,-0.06436961,-0.034960758,0.008295737,-0.0069116363,-0.05888962,-0.02341849,0.025911693,-0.038058292,0.04069023,-0.026144763,0.002641254,-0.057038367,-0.015281298,0.09500806,-0.06380619,0.022496566,-0.0060224803,0.11199278,0.021539079,-0.092489794,-0.045840204,-0.04535628,-0.010820433,0.0703884,-0.025282698,0.037921198,-0.079515524,-0.014899607,-0.10514909,0.04874092,-0.07057591,-0.13292319,-0.055577096,0.016756427,0.0389794,-0.09726514,2.9860929e-33,-0.020596158,-0.004514938,-0.008370243,0.035512604,-0.019448003,-0.00075879047,0.01792062,0.10119611,-0.042325255,0.045838654,0.0091843465,0.04353033,0.017086143,0.011856935,0.065418825,-0.012411083,0.1393267,-0.020871576,0.07482192,-0.012235723,0.014846502,-0.037276115,-0.053063538,-0.0522642,-0.004805027,-0.029234618,-0.035265893,-0.032175705,0.057751913,0.021139408,0.089259565,-0.0053346697,-0.04261636,-0.07448162,0.048093174,0.055604104,0.062219594,-0.057911314,0.06675764,0.00046245533,-0.04648241,-0.058398858,-0.047903366,0.1255189,-0.08255704,-0.0073141106,-0.004276827,0.024867645,-0.010623858,-0.015363995,-0.0052565234,-0.02286864,0.010056216,-0.06393176,-0.045634378,-0.03079401,-0.02525173,0.070241846,-0.075266995,0.030481357,-0.006606896,-0.030031698,0.009158879,-0.003752799,-0.040331002,0.02860177,-0.014360734,-0.045077723,-0.026574882,-0.016682621,6.237265e-06,0.03802788,-0.16190936,0.048267573,0.014491462,-0.09485013,0.024643643,0.026731456,-0.036298823,0.027141433,-0.091310464,0.05629973,-0.03332145,0.034043998,0.020355245,0.045810852,0.03990746,0.1323826,-0.0152160665,-0.0071479385,-0.009128208,-0.023959469,0.03451506,0.00052315416,-0.026951475,-1.4737824e-08,-0.04905214,0.050643332,0.0768234,0.043524034,-0.07465381,0.013185529,-0.049912006,-0.0408186,0.022313077,0.09320798,0.03196939,0.03692491,-0.0042065256,0.10435832,-0.048042998,0.025777899,-0.054139446,-0.02514229,-0.041743234,0.032234084,-0.058280148,-0.010828621,0.048228852,0.040313177,-0.015083972,0.0547868,-0.013905467,0.03176644,0.0747534,0.0169792,0.019333918,0.01891359,-0.009511462,0.011270893,-0.020749079,-0.03559335,-0.016134027,-0.027222648,-0.00051919924,-0.062101454,-0.028105017,0.06444358,0.057916433,-0.0010775658,0.017463401,-0.0060922364,0.047621068,-0.033455174,-0.07222646,-0.057974126,0.040971305,0.077266954,0.00964191,0.047224715,0.035158314,0.04123535,0.05738308,0.048966832,0.03302704,0.062371872,0.08399575,0.015457457,-0.0476874,0.053392526} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.961232+00 2026-01-30 02:01:12.82695+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2297 google ChdDSUhNMG9nS0VJQ0FnSUNlMDZpbmtRRRAB 1 t 2300 Go Karts Mar Menor unknown Uno de los mejores circuitos que he probado uno de los mejores circuitos que he probado 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-B {} {"O1.02": "Uno de los mejores circuitos que he probado"} {-0.04516673,0.105530635,-0.047112234,-0.068378545,-0.05107127,0.021904806,0.09517062,0.11826693,0.01876943,0.053244695,0.030806936,-0.030734554,0.01779436,0.015890751,-0.00054785423,0.045515556,-0.02550534,0.03228783,0.016762476,-0.056483112,0.07012724,-0.045310516,-0.060837474,0.02378471,-0.09097844,-0.015930973,0.041511606,-0.0032227437,-0.007271347,-0.14667428,-0.009450858,-0.028080182,0.043656766,-0.024979254,-0.027814738,0.010749957,0.040520363,-0.0476486,-0.043517765,0.060049,-0.08845769,-0.04451101,0.006012997,-0.033223845,-0.0038321305,-0.065040186,0.03778683,0.028063942,-0.010895699,-0.078273974,-0.03171474,-0.027466523,0.047019422,0.048650842,0.011590362,0.009442404,-0.02741755,0.04883168,0.05934386,0.04385195,0.019323058,0.016918864,-0.03870898,0.047614772,-0.015658049,-0.038844,0.0065410943,-0.015434205,-0.053809363,0.08011915,0.09555046,-0.11680035,0.0024536208,-0.042088307,0.045653693,-0.022212299,-0.04116324,-0.006874489,-0.0005461618,-0.06477547,0.0093894,-0.04044512,-0.08348155,-0.07593202,0.043604773,0.035333764,-0.004350391,-0.02800632,0.023618834,0.0011345294,-0.028058285,-0.050543614,-0.10177027,-0.038440198,-0.03860244,-0.010281358,0.07342879,-0.02373429,0.02570241,0.07892617,0.12238959,0.02397118,0.026982477,-0.004574029,-0.09383313,0.09675192,0.014729838,0.041984312,0.006578917,-0.0026398504,-0.039648693,-0.017282827,-0.1203624,-0.040964976,0.0113065,-0.01893102,-0.018029118,0.027355108,-0.0423416,-0.0632354,0.015161721,-0.0152623085,-0.047552936,0.02049674,-0.019539235,0.011920802,0.043219637,-1.5689188e-34,0.019072713,-0.014476568,-0.03713594,0.0349103,0.008037178,0.056535542,-0.058247447,0.026161669,-0.0048748944,-0.014858185,-0.037495017,0.08401978,0.006621238,0.02308457,0.07023541,-0.01958639,-0.031085368,-0.08761873,0.08813517,-0.012356371,-0.0057487814,0.020162502,0.017102549,0.08985016,0.028631726,0.08184616,0.03352826,-0.048810385,-0.115049385,0.054228943,-0.0529287,0.104337946,-0.011962109,0.056893546,-0.04125697,0.027386645,0.024505684,0.0046249237,0.025575629,-0.033576265,0.0061708787,-0.0133523345,-0.053629603,-0.03152545,0.05107184,-0.04122124,0.03056348,0.071980976,0.13363646,0.006526611,-0.06279962,-0.027530404,0.009178657,-0.086808324,0.05158852,0.045927633,-0.071563736,0.097822815,0.08782484,0.056794774,-0.030201167,0.071354024,-0.047988713,0.03338032,-0.062250596,0.0129072415,0.027994284,-0.036549184,0.0699866,0.0004099047,-0.14136104,0.003654047,-0.008335316,-0.0019429019,-0.019453116,0.0016125016,-0.089384325,0.026077947,-0.05967567,0.03568515,-0.11382523,-0.02468929,0.014395483,0.009733921,0.037597034,0.07166596,0.041700225,0.014514536,-0.018519435,0.11513628,-0.03740313,0.062413752,0.093826324,0.009984866,0.06419727,-4.1905235e-33,-0.08892716,-0.02273394,0.032513335,0.051724117,0.021472558,0.024177412,-0.02620424,-0.022039915,-0.063286506,-0.060080018,-0.05331927,-0.055377666,0.040338777,-0.056405704,-0.03779399,-0.0023394322,-0.026772885,-0.07084765,-0.07433982,-0.006699832,0.05170567,0.10236624,0.022741659,-0.039791986,-0.07580519,-0.036423672,-0.053595804,0.014766954,-0.035803653,0.009501905,0.041469395,0.03631185,-0.005817742,0.074632764,-0.063025184,0.05917263,-0.023547066,0.078563206,0.0024142044,0.033838414,0.04067325,0.07047946,0.016946927,-0.011276082,-0.02344102,0.019296382,-0.059002824,-0.11433353,-0.04031663,-0.027158704,-0.023534158,-0.05014259,-0.05093083,-0.064557835,0.029376907,-0.0382139,-0.06461614,-0.057219457,-0.014621211,-0.013928602,0.069164366,-0.010220736,0.051976264,0.012339183,0.047974195,0.009393184,0.020383919,0.049499985,0.090258956,0.0433744,0.13214691,0.011570177,-0.02490269,-0.04414788,-0.038743753,-0.044905733,-0.14765888,0.035448775,-0.028888635,-0.021192953,-0.027417177,-0.040632892,0.005451492,-0.050992206,-0.025789568,-0.052778345,0.033240743,0.009009677,0.064456664,-0.0057241837,0.00019384598,0.10627995,-0.06822361,-0.0008457987,0.018272154,-2.3751822e-08,0.023595713,-0.039733328,-0.036967125,-0.020081917,0.07041434,-0.09646347,-0.034241654,-0.019049715,-0.038772017,0.1181117,0.05210889,-0.00026432626,0.0042212047,0.00777188,0.055978205,0.055603962,0.022101695,0.058753375,-0.020039167,0.0020523714,0.034116738,-0.017621662,-0.021653952,-0.02746981,0.046070278,-0.023527658,-0.027924433,0.009629892,-0.022139078,0.007683371,-0.045674026,0.042111926,-0.03507184,-0.101337165,0.021794204,0.024333408,-0.022005726,0.019342676,0.023507046,-0.054136112,0.059415113,-0.04140148,-0.014470629,0.038371004,-0.021559166,-0.062572315,-0.044208273,0.03813415,-0.05670896,0.08619995,-0.11557539,-0.008796486,-0.0059639453,-0.0037785545,0.064983144,0.0004765102,0.047012888,-0.031969775,-0.09021957,-0.06013761,0.07223651,0.045141518,0.06428606,-0.084768474} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.972244+00 2026-01-30 02:01:12.830954+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2298 google ChdDSUhNMG9nS0VJQ0FnSUNBM2RfSDh3RRAB 1 t 2301 Go Karts Mar Menor unknown Los F300 muy divertidos y rápidos. los f300 muy divertidos y rápidos. 5 2019-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Los F300 muy divertidos y rápidos."} {0.005193627,-0.016227609,-0.002139734,-0.016412135,0.017093202,-0.03052705,0.012488202,0.08425755,0.008756681,-0.03216412,0.10679707,0.009803227,-0.07350708,0.013760173,0.027019944,-0.057951823,-0.0019184428,-0.009248211,0.0148305055,0.030063774,0.039811,0.010778734,-0.028812045,0.08048792,-0.11343611,0.008799983,-0.019191144,0.043395378,-0.056488104,-0.09965444,0.020301845,0.11756314,0.037673637,-0.0042787823,-0.01069856,-0.0016934907,-0.0004934477,-0.032510024,0.042768594,0.048120406,-0.1571325,-0.08083354,0.027296258,-0.10795597,-0.010165113,0.0056127766,-0.010425777,0.05659565,0.11659543,0.020948745,-0.014169011,-0.031504236,0.00203625,0.023864882,0.0047215368,-0.021152848,-0.047351435,-0.018245202,0.05701469,0.098414995,-0.06218694,-0.00844825,-0.05049536,0.06584086,0.014460028,0.004926645,0.007055978,-0.03984901,-0.023762781,0.046861526,0.06704603,-0.008586099,-0.018832525,-0.072431244,0.009254097,-0.028280234,0.013671025,0.028506514,-0.0536919,0.0005507838,0.014439477,-0.029997967,-0.025964972,-0.037708975,0.049509894,0.019139787,-0.07566046,0.04854584,0.012910845,-0.022524256,-0.020011429,-0.008829477,-0.062474366,0.0063152905,0.0052123293,0.03013746,0.011587863,-0.13449967,-0.049779505,0.040453885,0.010026916,-0.01727517,0.089118235,0.06660075,-0.008029834,-0.009011029,0.05446768,0.027812602,-0.08462574,-0.03162201,-0.057021122,0.044001795,-0.036000613,-0.046725642,-0.114287466,-0.036521718,-0.0039148238,-0.07365638,0.044027943,-0.081695035,0.012222575,0.012672367,-0.0809664,-0.019489046,-0.007851274,-0.016145745,0.018207751,1.3464506e-33,-0.002412635,-0.01666613,-0.06462176,0.06708602,0.0013691065,-0.023097087,0.037008904,-0.050221503,0.039537307,-0.03216831,-0.03415475,-0.01288295,0.02162243,0.017330647,-0.019587435,-0.082911626,0.045814242,0.022128405,-0.014844068,0.038283706,0.045476787,-0.032169435,0.03777281,-0.0102274,0.0020586075,0.12983489,-0.0934436,-0.0065682186,-0.043702383,0.06451196,-0.084015295,0.01260589,-0.027270498,-0.089015424,0.031617302,0.012514648,0.030390317,-0.015074646,-0.040369175,0.030329248,0.020109037,0.065969355,-0.108959675,0.031567484,0.05409458,0.040667303,-0.023749013,0.1006028,0.0909169,0.104320034,-0.014573639,-0.02511346,-0.092826635,-0.06323753,-0.009621647,0.041553505,-0.007318403,0.047174543,-0.022270674,0.03695921,0.03389143,0.07085703,-0.008351521,-0.03415294,-0.007775189,0.038241476,0.03682024,0.0647715,0.08828009,0.09626613,-0.13030477,-0.093932584,0.04425229,0.06701429,0.06340824,0.008076427,-0.031411905,-0.0023967717,0.0013663925,-0.021842403,-0.018660594,0.0066927746,0.015962366,0.059636205,0.066240296,0.019219367,0.009642107,0.04935656,-0.024208687,0.007473742,-0.037344586,0.047095098,0.08564447,-0.0021453588,0.0037728306,-1.6190695e-33,0.013390914,-0.012183596,0.026309853,0.022288304,-0.035497606,0.014612053,0.035317075,0.0072404332,-0.013282065,-0.011535074,-0.09302073,-0.04721581,0.044237543,-0.10042679,-0.030721826,0.05654688,0.056850635,-0.016640149,-0.045035094,0.020719826,0.005772156,0.08344096,0.052080967,-0.039238777,-0.10151931,0.04127171,-0.020633746,0.04477222,-0.076672636,-0.02387558,-0.0478969,-0.017035557,-0.014358874,0.037753414,-0.025347326,0.024507586,-0.023762614,0.032458987,-0.005901487,-0.02687982,0.018167607,0.064357385,-0.009822305,0.07838004,-0.06760098,0.05273926,0.023367366,-0.102027684,-0.03789757,0.0067427754,0.0032636505,-0.045804888,-0.05830471,0.034867574,0.019290244,-0.117885634,0.01951701,-0.14217363,-0.08936052,0.0021514273,0.063397795,0.04221347,-0.055379286,-0.048367467,0.12847562,-0.039644618,-0.04050709,-0.06282949,0.11045916,0.11722186,0.12528299,-0.025343271,-0.032706514,-0.012391509,-0.023670776,0.006614415,-0.11407762,0.03068121,0.017532831,0.04320232,0.009841647,0.0062055313,-0.03133983,0.055693995,-0.009829624,-0.017437661,-0.03447693,-0.04572688,0.06518736,-0.025692733,0.027744412,0.022212015,-0.045445118,0.09924658,0.019075613,-1.8115307e-08,0.022807235,-0.01261254,-0.052836943,0.035984103,0.032824587,-0.07915991,-0.054259073,0.07498175,-0.025543094,0.028064981,0.016131101,0.050090197,0.100251004,0.018723855,0.0063002766,-0.0052429354,0.1124331,0.123533346,-0.0619575,-0.011138737,0.066774175,0.01702433,0.052334193,-0.038243964,0.039016165,0.021254001,-0.036799964,0.069634885,0.020518173,-0.02791016,-0.01748022,-0.020377012,-0.028293254,-0.050693054,0.0013257357,0.024099471,0.009220487,0.039522618,-0.04841402,-0.007085174,0.038993206,-0.03012336,-0.07498668,0.0033768166,-0.06303908,-0.039644204,-0.058011062,0.032621287,-0.045206666,0.035788335,-0.03920922,0.027314886,0.03518651,0.101779796,-0.008070645,-0.03452913,-0.031783737,-0.005471358,-0.07933023,-0.040683616,0.01789502,0.12456326,0.008787752,-0.046505243} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.984639+00 2026-01-30 02:01:12.833821+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2299 google ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE 1 t 2302 Go Karts Mar Menor unknown Circuito grande y bien cuidado, a mi parecer un poco caro circuito grande y bien cuidado, a mi parecer un poco caro 4 2017-02-01 01:52:39.833374+00 es v5.1 V1.01 {} V- I2 CR-N {} {"E1.01": "Circuito grande y bien cuidado", "V1.01": "a mi parecer un poco caro"} {-0.022982828,0.042180028,-0.016068632,-0.050341457,-0.10436659,-0.009067602,0.03834345,0.07615467,0.0062216343,0.03976157,0.07639102,-0.0044048964,-0.016324503,0.025050942,-0.005910628,0.0115730725,0.020695537,0.0316846,0.033248957,0.01659461,0.04739848,-0.04387256,-0.067101344,0.1127628,-0.117814876,0.030701218,0.0051348386,0.05040883,-0.06860192,-0.1111073,-0.0871959,0.07855373,0.14666264,-0.026769279,0.00031457146,0.00014205418,0.081893444,-0.061494432,0.02060326,0.0114304675,-0.10168442,-0.06423665,0.039281845,-0.02377686,0.032520123,-0.04893017,0.0655515,0.056343455,0.019922532,-0.10345566,0.0069895037,0.004767715,0.0024138426,0.008884839,-0.038688518,0.025246128,-0.018847499,0.027019659,0.054343335,0.06638932,0.0037949136,0.009916264,-0.03264953,0.04326747,0.004673913,-0.06009314,0.022973757,-0.01181491,-0.08310697,0.046289146,0.12786421,-0.08247899,0.06277367,-0.036974452,-0.0058365176,0.07200468,-0.034651544,0.015417592,-0.023873482,-0.059139937,0.014749005,0.013355795,-0.04833268,-0.045178622,0.027938226,-0.0137723535,-0.0059075137,-0.03846957,-0.0140404655,0.015529997,-0.036851592,0.05236875,-0.032624815,-0.04400882,0.0017218472,-0.0270461,0.057008408,-0.10608243,0.044722322,0.04060711,0.112182885,0.06490053,0.08290142,-0.00477254,0.015024382,0.06874565,0.019762734,0.031564865,0.055703167,-0.012098225,-0.04235145,0.05213158,-0.088662505,-0.04002909,-0.039072674,-0.035898108,0.017459584,0.0064884317,-0.013539306,-0.026372377,-0.0010415232,-0.06016188,-0.10432214,-0.01554129,0.0024499376,-0.030414741,0.10922932,2.5074279e-33,-0.05809111,-0.010689334,0.020342462,0.026552187,0.036689043,0.06958753,-0.04741405,-0.0060392944,-0.019547176,0.04311417,-0.050161593,0.043157585,-0.011203725,0.06387604,0.09938108,0.013541466,-0.050087202,-0.025785714,0.07751535,-0.029037835,-0.0090930965,-0.017564114,-0.023224652,0.030946078,0.010969648,0.09989607,-0.013429778,-0.10762845,-0.10118965,0.031534873,0.01805416,0.07069594,0.05104583,-0.0061365725,-0.02642259,-0.042819686,0.06399827,0.012521485,0.056027047,-0.016445098,0.017854007,-0.018336982,-0.044561885,0.032375738,0.0013693804,-0.01048092,0.039461717,0.056205183,0.07918461,0.020185351,-0.08117527,-0.11519146,-0.088120416,-0.040747523,0.028714575,0.040002383,-0.060813144,0.07821828,0.0041496907,-0.02392802,0.031349678,0.110934116,-0.05102008,-0.028756958,-0.05571104,0.018835003,0.015999448,-0.01731991,0.10648157,0.03580156,-0.08097119,0.0007770563,-0.024430057,-0.006652705,0.019337453,0.00283749,-0.02960563,-0.012111658,0.029471962,0.016810738,-0.075507134,-0.01891599,0.05292573,0.051789403,0.07620263,0.13648112,0.040903185,0.046699207,-0.017629828,0.116279684,-0.0058733984,0.0852215,0.069811486,-0.05922735,0.077254236,-4.1042782e-33,0.041945934,-0.03887527,0.028065637,0.012413133,0.011771253,-0.0159857,-0.116207995,-0.048850156,-0.07629031,-0.018578669,-0.047798447,-0.07837537,0.09052197,-0.06577723,-0.015994633,0.036667943,0.0017170398,-0.08638006,-0.12304474,0.023863241,-0.04324569,0.009212329,0.012718536,-0.016596701,-0.078730434,-0.055825025,-0.03711605,0.030260723,-0.014200126,0.062544554,0.021905513,-0.0019421179,-0.0010997398,0.060957305,-0.020201456,0.0005048672,0.01700902,0.018157437,-0.007097625,0.033140913,-0.051529005,0.044567104,-0.0015487408,0.015942711,-0.029509103,0.025640707,-0.020818925,-0.086418815,-0.04098628,0.022853866,0.034379836,-0.02870435,-0.063144386,-0.03244156,0.005910946,-0.056674894,0.012048311,-0.12336467,-0.09219813,-0.019585691,0.051439818,-0.024289519,-0.057529446,-0.010444502,0.04454176,-0.008292626,-0.002879554,0.046926197,0.073350996,0.015362402,0.09153124,0.041500505,-0.06575678,-0.028119942,-0.07510006,-0.050911985,-0.07889756,0.049693264,0.038399808,0.025286589,0.040670704,0.00048413518,0.0010835158,-0.07519283,-0.001520016,0.001304983,-0.032718997,0.06254977,0.026037201,0.056575608,0.033374734,0.06626799,-0.057131834,-0.08433239,-0.03483061,-2.5141278e-08,0.017695028,-0.02849862,-0.036576767,-0.016821142,0.023774318,-0.04760207,-0.00786653,-0.0013592837,-0.021327913,0.0122708045,0.07043638,-0.043731928,-0.002687791,0.046889305,0.0065824967,0.0269945,0.065605074,0.07893343,-0.002140584,0.0035104705,-0.007219993,-0.01287847,-0.051916074,-0.0026255308,0.045797907,-0.009396225,-0.034040812,-0.00786513,-0.02080139,-0.010034023,0.020069618,-0.005904503,-0.07185758,-0.054995675,0.03488029,0.015841046,-0.010582688,-0.0345282,-0.0070163,-0.12453638,0.07189044,-0.00839671,-0.09203127,-0.006480632,-0.003674844,-0.0797792,-0.019131843,-0.032738682,-0.011373924,0.100622855,-0.054414354,-0.03912114,0.026422573,0.037312135,0.061354805,0.01740264,0.06630554,-0.005185878,-0.09773719,0.011012802,0.01515215,0.11920725,0.02434472,-0.08937171} 0.65 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:11.995324+00 2026-01-30 02:01:12.836698+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2301 google ChZDSUhNMG9nS0VJQ0FnTURJeEtxZENnEAE 1 t 2304 Go Karts Mar Menor unknown Muy divertido muy divertido 5 2025-05-05 00:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy divertido"} {-0.007586513,0.02393176,0.05460566,-0.022734912,0.0069711967,-0.06113506,0.12340566,0.043165334,0.05359521,-0.057535708,0.09270222,-0.089219645,-0.028572315,0.014100645,-0.024620445,0.029205713,0.020214949,0.05522056,-0.006294763,0.0402311,0.03004903,0.089869335,-0.02900086,0.0736543,-0.057867106,0.050274752,0.028665334,-0.0124103855,0.0033676852,-0.06980945,0.07341332,0.14169766,0.02954107,0.008183068,-0.037149385,-0.028731246,-0.03877942,0.021120688,0.049594086,0.06860635,-0.06946619,-0.023999408,0.0132972365,-0.06430676,-0.010986598,0.015983203,0.027234966,0.02270353,0.07241845,-0.006380277,-0.10156734,-0.05097854,0.010183548,0.030121058,0.031587753,-0.02904008,-0.065714374,0.00084953743,0.04378101,0.03229886,-0.06731593,-0.016693855,-0.0023885125,0.010826432,0.010949848,-0.047573525,-0.010944002,0.04236298,-0.0356165,-0.013113238,0.07231387,-0.020909011,-0.033793017,-0.11647356,-0.028601376,0.0073981183,0.08927173,0.010862626,-0.06741005,0.030370705,-0.004867606,-0.034946613,-0.026101118,-0.091728725,0.050605867,0.040731706,-0.04507194,0.061558593,-0.036252704,-0.09154168,-0.01776498,-0.05228955,0.013670122,0.004898854,0.026262095,0.06601946,-0.024649018,-0.15428297,-0.07309945,0.13806075,-0.015640272,0.03659347,0.028443418,-0.051643737,-0.009677034,-0.03403645,0.07549832,-0.021675738,-0.021044575,-0.0018734226,0.0060357866,-0.024674965,-0.000721024,-0.006195228,-0.011048413,0.007556869,0.02905124,-0.025489924,-0.010743814,-0.020816464,0.025181198,0.07955628,-0.110148154,0.03605232,-0.037216794,-0.016936073,0.05639494,-5.0364134e-34,-0.0043551726,-0.08988918,-0.047783572,0.049158197,0.004445764,-0.012682446,-0.01800608,-0.04955231,-0.026085049,-0.07342389,-0.011649405,-0.05738277,-0.036938045,0.052808218,-0.058133207,-0.043877725,0.021470645,0.03163901,0.07436761,0.06178912,0.0077819168,0.058231816,-0.03855978,0.053634033,-0.036374364,0.06715197,-0.050108165,-0.07864876,-0.01099301,0.04715971,-0.06916328,0.0085441815,-0.03195762,-0.016419461,-0.07459403,-0.010269363,-0.081496075,0.02526605,0.02135937,-0.007375096,-0.031114224,0.024128925,-0.11287191,0.042908065,0.056927893,0.0058930777,0.043792557,0.06604159,0.093252175,0.043489464,-0.0018525578,-0.06473363,-0.037889794,-0.015646359,-0.019392645,-0.045298483,0.024972921,0.062432908,0.0019339267,-0.0040412424,0.009411252,0.00800854,-0.06826625,-0.040091854,-0.03592414,0.005531741,-0.060473066,0.02311207,0.08729995,0.03955779,-0.16215898,-0.053575415,-0.055532515,0.09523434,-0.03450012,-0.08060584,0.011174112,0.008208791,0.0672555,0.034216866,-0.005396892,0.056064166,0.057587657,0.06413809,0.041477412,0.09033979,0.006993426,0.06420045,-0.028381722,0.03920319,-0.11178723,0.04633799,0.053652443,-0.04801282,0.026395386,1.1527309e-34,0.008530041,-0.05757305,0.012008695,0.08143813,0.014297623,-0.005711946,0.012411796,0.071076274,-0.026813963,-0.032554325,-0.06349477,-0.042803332,0.08361225,-0.046285935,-0.0036314677,0.08523951,0.10723087,0.07280615,-0.065826625,-0.0078117005,-0.052312955,0.056727484,0.07828797,-0.074859686,-0.0720844,0.053910173,0.02959056,-0.044686906,-0.038904402,0.028286427,-0.056468964,-0.01495358,-0.06481785,0.009307431,-0.0041590356,0.04478496,-0.06338779,0.04952017,-0.062802635,0.058753043,-0.061815076,0.03219253,0.009942013,0.13957255,-0.027927324,0.053002924,-0.012961721,-0.028364262,-0.034511518,0.00066128,-0.0621931,-0.0017916434,0.049894534,-0.041596048,0.013082137,-0.09530706,-0.009488623,-0.07377396,-0.079945326,-0.015419945,0.043748666,0.027133899,-0.08964373,-0.08103144,0.087345146,0.025477719,-0.082841925,-0.047522724,-0.014571915,0.030767243,0.12924698,-0.014790048,-0.025425937,-0.016968554,0.013146791,0.063017085,-0.10264028,0.030807717,-0.0036431875,0.03916303,-0.068874806,0.007721364,-0.026936831,0.02243781,0.024066336,-0.0265448,-0.01337509,-0.07558113,0.02778778,-0.012285155,-0.015605774,0.027546475,-0.00385463,0.008063422,0.09054887,-1.3231566e-08,0.008017004,-0.094422385,-0.0225747,-0.006037324,0.009275247,-0.009663858,-0.05412777,0.048477344,0.006670929,0.06606552,0.0006208745,0.032469988,0.054367945,0.08273318,0.016855652,0.033068735,0.09410888,0.039991137,0.00992895,0.0061790817,0.085596174,-0.028136212,0.057723925,0.0035028765,0.005771242,0.027108366,-0.04850643,0.0687104,-0.041183837,-0.052588746,0.084191896,-0.042755302,0.02310743,-0.04035732,-0.04550965,0.040807176,0.038862642,-0.00952183,-0.01351263,-0.0031904061,0.01172102,-0.007990975,0.048736844,-0.016310155,-0.04957408,-0.029146912,0.049104393,0.046486173,0.012813299,-0.0022035637,-0.028293064,0.026287496,0.032052975,0.108801976,0.006517908,-0.022712564,0.010322561,-0.00044163835,-0.018071929,-0.07554262,0.04125229,0.1265409,-0.022512859,-0.043717206} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:12.017691+00 2026-01-30 02:01:12.841844+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2302 google ChdDSUhNMG9nS0VJQ0FnSURJeWVQWTRnRRAB 1 t 2305 Go Karts Mar Menor unknown Divertente e ad un prezzo onesto divertente e ad un prezzo onesto 5 2019-02-01 01:52:39.833374+00 it v5.1 V4.01 {V1.02} V+ I2 CR-N {} {"V4.01": "Divertente e ad un prezzo onesto"} {-0.021697674,0.09974425,0.07275701,0.0012563394,-0.07543043,-0.0061536403,0.07214827,0.053482983,0.02832749,0.039042223,0.095631056,-0.07724495,-0.07661593,-0.008214035,-0.01574016,-0.058540795,0.032079022,0.051743113,0.038477633,0.07565188,0.0014194398,0.015129687,-0.0649503,0.1281121,-0.03953891,0.020018037,-0.011111107,0.018392202,-0.023994183,-0.074801184,0.039274592,0.062756576,0.13010412,0.0066408515,0.013479115,0.014289642,0.047434147,-0.028080298,0.025980517,0.06671493,-0.028038044,-0.053959873,0.0011938168,-0.011972305,0.010637361,0.036981184,0.00334511,0.07458439,0.045446437,-0.06513713,-0.0085059125,-0.029625403,-0.00070349505,0.020974621,-0.008538162,0.02925541,0.006383255,0.026202176,0.009604992,0.008052898,-0.022048863,-0.06819542,-0.07250735,0.03291219,0.017529521,0.02581207,0.011592608,-0.06525435,-0.057364184,0.05170167,0.12384046,-0.03229208,0.00883294,-0.041517552,0.008574659,0.0597562,-0.004123962,0.045069344,0.023373421,-0.0513646,0.026387174,-0.02858082,-0.102288574,-0.089351,0.035709657,0.015438438,-0.026593396,0.00861174,0.06719337,-0.06739689,-0.028958822,-0.01721271,-0.07348246,-0.011324927,0.04874772,-0.024674205,-0.020015322,-0.08081113,-0.022933234,0.057032395,0.04189257,0.058468353,0.037600942,0.0052438495,0.006053607,-0.033952504,0.028076842,-0.026207475,0.009690382,0.05360353,-0.022847546,-0.06791957,-0.047462553,-0.061191075,-0.09051857,-0.036456842,0.04960977,-0.098041706,0.018029476,-0.03910454,-0.011567931,0.01357949,-0.049388107,0.03794043,0.017598841,-0.095399745,-0.007440619,-5.0408045e-34,0.0052217473,-0.062210504,-0.06193265,0.018122872,-0.064969644,0.056907617,-0.066802554,-0.08573227,0.006193435,-0.010403546,-0.032370776,0.013196315,-0.009316406,0.06714583,-0.051592387,0.030909969,0.031128556,0.028940136,0.07247913,-0.00543816,-0.09981795,0.062499028,-0.058501817,-0.009352599,-0.007877081,0.03564886,-0.11574608,-0.08379346,-0.07644837,0.060762797,-0.006316152,0.038072728,-0.07113101,0.001035208,-0.024080707,0.04062917,-0.026348775,0.042729862,0.041202717,-0.007998285,0.0067558875,0.029017398,0.007879403,-0.015110259,0.12859719,-0.064320326,0.01700279,0.043131664,0.087314144,-0.02393575,0.041630913,-0.08764869,-0.064662404,-0.041751646,0.0043870863,0.026513133,-0.017758766,0.15521532,0.015769048,-0.0038883172,-0.0060581886,0.10893982,-0.074799836,-0.041109756,-0.028577333,0.008328419,0.019275306,0.066721216,0.0940157,0.04029234,-0.09753249,-0.05339034,-0.04903445,0.10424657,-0.11583673,0.025486348,0.009717261,-0.0054936544,0.03016082,0.011886401,-0.001293468,-0.015127068,0.043570753,0.030538125,0.08363704,0.09516673,0.030281752,0.03980297,0.005470236,0.021189837,0.032124754,0.025869658,0.028337715,-0.064707905,0.072663516,-1.5356247e-33,-0.034461085,-0.005848699,-0.05331462,0.017938195,-0.056775,0.009914257,-0.044660058,-0.030525403,-0.05972455,-0.05605898,-0.08177861,-0.06533958,0.100757614,-0.07862323,-0.004543519,0.036588926,0.096047446,0.0017267643,-0.035099912,0.0018327994,-0.1005283,-0.03779354,0.04575264,-0.0013121669,-0.09212762,-0.024974877,0.021066308,0.008764688,-0.0415217,0.013587195,-0.061363507,-0.018005123,-0.04294982,0.018881416,0.047274232,0.010173401,-0.12775758,0.05150461,-0.008475227,0.03719776,-0.09578008,-0.026203634,0.0323697,0.017667271,-0.01567116,0.058553707,0.03760782,-0.03644343,-0.068103254,0.010314462,-0.036447346,-0.004669088,-0.003935036,-0.058852192,-0.007314371,-0.09060595,0.04471491,-0.06320905,-0.076315485,0.012793,0.11941926,0.042408008,-0.029566843,-0.04825429,0.032251004,-0.0027373817,-0.108046554,0.012036755,-0.022923673,0.051528797,0.09252954,0.010289595,-0.045091297,-0.08506885,-0.044535495,0.024053909,-0.08560795,0.11675881,0.024151037,0.043404356,-0.06192601,0.028768796,-0.026264694,0.066118255,0.031233614,-0.016292475,-0.0002430533,-0.052011482,0.0010400615,0.0034949027,-0.032992903,0.05349409,0.069535226,-0.031076193,0.019093204,-1.7046812e-08,0.023805952,-0.0039287996,0.06530252,0.05999823,0.04745972,-0.027271379,-0.09658868,-0.018191475,-0.021136535,0.049203657,-0.042798717,0.05811057,0.0332741,0.03797276,-0.0030958035,0.036216144,0.056670073,-0.0013697507,-0.026253274,0.0002243502,0.08746806,-0.058685586,0.03713358,-0.13622794,0.0274661,0.013210503,-0.0051997295,0.03572903,-0.030915687,-0.0402053,0.054419644,-0.051199947,-0.0272034,-0.02237601,0.015917363,0.031509694,0.030079097,0.040191717,-0.010362847,-0.0681441,0.0048129577,-0.040210888,0.030204581,0.001746962,-0.011227221,0.003608314,0.03202099,0.06715489,-0.0392241,0.065241665,-0.042520415,0.032620694,0.04398396,0.07613469,0.06956451,-0.023077374,0.07393294,0.003987818,-0.03190301,-0.022628449,-0.015653864,0.117608845,-0.0013292921,0.016264014} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:12.028102+00 2026-01-30 02:01:12.846487+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2303 google ChZDSUhNMG9nS0VJQ0FnSUM2Z1AtekVREAE 1 t 2306 Go Karts Mar Menor unknown Muh bien muh bien 5 2022-01-31 01:52:39.833374+00 de v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muh bien"} {-0.058151215,0.031703763,0.07042213,-0.07337598,0.064841114,0.0111529445,0.099423416,0.039896116,0.030586615,-0.009152629,0.07916458,-0.047620468,0.060716126,-0.055413403,0.02349065,-0.013532583,0.056877133,0.018623712,-0.07393996,0.011396577,-0.052547507,0.03570979,-0.025778558,0.069988325,-0.09946971,-0.015314468,-0.00613939,0.053441342,0.044957973,-0.05427484,0.014765756,0.059158698,0.04690534,0.012144991,-0.023861554,-0.04672184,0.02212368,-0.09739167,0.0014925955,0.03406566,-0.07385298,-0.011889834,-0.055445615,-0.050443668,0.049385484,-0.0012231853,-0.00028513896,0.016798912,0.01774373,-0.01830699,-0.033080593,0.03740729,0.021117885,-0.0049644136,0.048684005,0.075940646,-0.03386587,-0.021686774,0.01761049,0.054559365,0.006273434,0.051178887,-0.022124618,-0.04063496,0.034959786,-0.040812366,0.06535822,-0.006404348,-0.02619482,-0.0009218748,0.053000774,-0.04582443,0.010318489,-0.052757867,0.01714213,-0.0148585,0.031912383,0.005099817,-0.009598809,-0.047575932,-0.03927769,-0.061735157,-0.072102204,0.0039128684,0.018178683,0.015965804,-0.02545949,0.0034069435,0.042853046,-0.024664437,-0.072165996,0.016715536,0.00038888608,0.017043289,0.026934681,0.033281013,0.025173912,-0.04496178,-0.05515611,0.19289264,-0.0066780457,0.08879351,0.09880337,0.012824664,-0.013493747,0.017413966,0.0049795816,0.03952878,0.0023677903,-0.03214983,0.005207846,0.004803841,0.008665329,0.023045287,0.02529586,-0.01858626,0.0033613609,-0.0105170645,-0.012010189,-0.09514735,0.059095357,0.031796396,-0.09489756,2.126329e-05,-0.0809234,-0.04112332,0.0470072,-2.5439439e-33,0.0024376728,0.041778836,0.04262001,0.041582067,-0.01970974,0.0019149989,-0.053746626,0.040152624,-0.13743506,-0.058124226,-0.014705574,-0.047848325,-0.009677068,0.012878664,-0.005046398,0.013683412,0.07711088,-0.07322085,0.09417694,-0.018732613,-0.041965388,-0.12566103,0.0035639005,0.03280531,0.053080224,-0.008780317,0.031905495,-0.042824347,-0.07723579,0.02870763,-0.03987805,0.040885374,0.029987246,-0.020525536,-0.024147084,-0.034235265,-0.00032904066,0.05964233,-0.0028444105,0.025647495,0.026135866,0.00051925547,-0.020335868,-0.03760758,0.03198425,0.11159111,0.012279171,0.009683553,0.07247991,-0.060470153,-0.0021682126,-0.023740433,-0.15908886,0.027172076,0.010443962,-0.028423946,-0.029926239,-0.032895934,-0.061874572,-0.0128156785,0.116500914,-0.010299094,-0.04638195,0.045378894,-0.10068351,-0.037075948,-0.017697223,0.090581454,0.054369148,0.014127,-0.08884707,-0.03150898,0.048671756,-0.032003134,-0.015905429,-0.0053859116,-0.044254426,0.021834003,0.098155096,0.031775277,0.029192915,-0.026231924,0.047083136,0.048627123,0.043765325,0.03511217,0.054175604,-0.028813813,-0.02452617,0.028295116,-0.0956232,0.032687724,0.13110282,-0.050186753,-0.096417844,2.0551783e-33,0.04721026,0.021206036,-0.0358284,0.12571093,0.0003453004,0.02006533,0.0660656,0.0495908,-0.11000957,-0.027778702,0.034643743,-0.110355526,0.07943735,-0.014621863,0.07606639,0.08188107,0.016329508,-0.030804506,-0.09361196,0.008296654,0.035752855,-0.0124949515,0.037809547,-0.02697716,-0.04327482,-0.0062005804,-0.046589065,0.06859628,-0.08795466,0.051586237,-0.0052571273,-0.050680887,-0.027669862,-0.011913599,0.010705583,0.016555501,-0.0022861145,0.07280516,0.012000647,0.028031379,-0.077766776,0.07030775,-0.051950004,0.095463894,0.024340007,0.041860703,0.009552591,-0.14376356,-0.048967477,0.011908781,0.040168136,4.5515713e-05,-0.053163182,0.020819454,-0.033934146,-0.0067121587,-0.08233309,-0.05211817,-0.091941975,-0.09617689,-0.052199837,0.045194898,-0.11722188,-0.016254658,0.056124035,-0.0357436,-0.024691544,-0.024184158,0.05001499,-0.049371257,0.087972,0.010041023,-0.02704355,-0.023390535,-0.04766806,-0.07033872,-0.07231555,0.030661665,0.012191878,0.108849265,-0.0019472193,-0.037011318,-0.06795753,0.024767535,-0.013487518,-0.0035509125,-0.014223444,-0.027325034,0.07812102,0.03542682,0.011175447,0.0010811123,0.00039847303,-0.06468834,0.059965935,-1.5813205e-08,0.005203366,-0.06339415,-0.06056586,0.022615816,0.00053681637,-0.06791162,-0.05837531,0.04219287,0.038620505,0.067642584,-0.030448481,0.007896133,-0.041051462,0.03894649,-0.009236196,0.0773379,-0.0072205267,0.07727435,0.026863435,-0.031839564,0.054564916,0.026182007,-0.0165044,0.033816263,-0.011396974,-0.006110547,-0.09388645,-0.037993837,-0.03483123,0.0044052214,0.026314948,0.044108,-0.032862406,-0.04810604,0.028142381,-0.023535814,-0.038450208,-0.020025996,0.0106968535,0.041002493,0.06416923,0.022065394,-0.031043954,-0.012447099,0.058040835,-0.108692065,0.01967381,-0.014093408,0.03268091,-0.025352502,0.045833066,0.031589914,0.061052408,0.0976437,0.026107064,0.02982727,0.044375215,-0.018051203,-0.0027722605,-0.022624105,0.12851755,0.10110387,0.061233662,-0.12335367} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:12.03807+00 2026-01-30 02:01:12.851067+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2304 google ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB 1 t 2307 Go Karts Mar Menor unknown Muy buen ambiente, seriedad... muy buen ambiente, seriedad... 5 2026-01-30 01:52:39.833374+00 es v5.1 E1.04 {R1.02} V+ I2 CR-N {} {"E1.04": "Muy buen ambiente, seriedad..."} {-0.06042113,-0.0139748575,0.06375497,0.0025403562,-0.029508797,0.015759008,0.06972319,0.0028738696,0.027898293,-0.0074396417,0.017763626,-0.0882919,0.005498629,-0.037584133,0.003121504,-0.0032688403,-0.034121875,0.097513355,0.06789002,0.0722756,0.046091106,0.046042815,0.0389864,-0.004525527,-0.034337427,-0.00802579,0.02958366,0.04208602,0.053786907,-0.035684995,0.109830454,0.17435698,0.07406546,-0.023140159,0.03050555,-0.051335365,0.056970365,-0.05767382,-0.03744004,0.12954982,-0.049324535,-0.025541758,-0.07660416,-0.12266752,0.028938714,-0.10728097,0.043106914,-0.02216084,0.047688846,-0.03973397,-0.0016419952,-0.01014241,-0.024812829,0.006569376,0.026184998,-0.052736692,-0.009773946,-0.03333598,0.07038143,-0.07946169,0.028575996,0.016487552,-0.08551503,0.042994533,0.030182531,-0.013100166,-0.013227285,0.0823343,-0.013916765,-0.012893082,0.03984361,-0.11502175,0.0101018315,0.027562361,-0.07439913,0.037220474,-0.05033786,-0.0812757,-0.032002166,-0.09985414,-0.0116149355,-0.09418079,-0.0060042227,-0.03817278,0.05726886,-0.0138457585,0.046013396,0.008916865,0.009733706,-0.0059808646,-0.055855583,-0.0017997114,-0.09350366,0.03817692,0.044705957,0.00079169625,-0.0023251143,-0.01568075,0.06514865,0.050003354,0.004965228,0.044369597,0.0009269377,0.09239414,-0.06767631,-0.05842193,0.026900856,0.011600578,0.01472228,0.024610244,-0.0065084654,-0.07221273,-0.031477146,-0.05418587,0.04872026,-0.012244284,0.017267661,-0.02312782,0.010443793,-0.024621263,0.09341738,0.027358029,-0.029945878,0.0056558703,0.05379119,-0.03406216,0.10041932,-3.7746946e-33,-0.05797468,-0.09971794,-0.017213257,0.056580335,0.030248482,0.042131502,-0.11866535,0.023376085,0.0010575952,0.01157317,-0.041578043,0.13119861,-0.036399465,0.020470342,0.08968204,-0.050755274,0.07482926,0.005837251,0.08619182,-0.022995343,-0.117317565,-0.015334407,-0.006770887,0.047826618,-0.012248092,-0.031752378,0.05338044,-0.047407117,-0.039589975,0.042901523,0.074435815,-0.042994663,-0.014347974,-0.032913327,-0.06762324,-0.022653818,-0.027060464,0.06626285,0.01725656,-0.035112135,-0.05071069,0.01161999,-0.017080227,-0.0068731275,-0.01016095,0.08995607,0.08215235,0.012353004,0.07167819,0.023146708,-0.030290227,-0.054790962,-0.052351706,0.025598712,0.008028492,0.03259312,-0.030980326,0.037195034,0.037529517,-0.031628713,0.028290695,0.069795236,0.008992802,-0.039084595,0.0044169193,-0.03716103,0.003267352,0.06434741,0.016691724,0.007185905,-0.07720397,0.023401702,0.0030650643,0.04724622,0.00442571,0.00993635,0.025656648,0.014251755,-0.054472923,0.0020394514,-0.06964142,0.00074583024,0.049406957,0.022103934,0.020014552,0.081721015,0.008443937,0.06276416,-0.020073991,0.07462619,-0.03238169,-0.022960555,0.035428144,0.0122967055,-0.05310308,2.8210896e-33,0.052269235,-0.02709842,-0.066789314,0.019472823,0.0504594,0.019075902,-0.09642727,0.012829611,-0.047432106,0.020216698,-0.028170023,-0.07632132,0.106878534,-0.062077317,-0.0496341,0.04936473,0.052874222,-0.012594185,-0.083158836,-0.03047311,-0.04933871,0.00078943575,0.026805671,-0.051227108,-0.042551577,0.018177994,-0.0076969457,0.057377655,-0.08981625,0.03956235,0.0025155065,-0.0042552142,0.03263693,0.04006388,0.03418608,0.08665975,0.108055264,0.026652379,-0.043460827,0.020053584,-0.028509483,0.09388616,-0.0063258004,0.023167895,0.0019481137,0.050147608,-0.059174832,-0.0854833,-0.061859686,-0.058386747,0.100139774,0.01172352,0.007458468,-0.101725556,0.029259745,-0.008771011,-0.0050620683,-0.057102717,-0.13880648,-0.010355873,0.14407949,0.017149067,-0.007699139,-0.031196231,0.05844415,0.06978415,-0.10097867,0.0038407343,-0.010721923,-0.013375139,0.098063804,-0.060530506,-0.033451553,0.009863544,-0.086545214,-0.0028928907,-0.034216877,-0.008858296,-0.014332105,0.020668572,-0.07720833,-0.065628596,-0.050218236,0.019252574,-0.08835259,-0.0021152797,-0.0065355487,-0.042017974,-0.0037380166,0.074551046,0.022181379,0.02131303,-0.041144274,0.013262686,-0.0075782696,-1.8314873e-08,-0.009843357,-0.10177438,0.049474984,0.006161736,0.029530482,-0.08751897,-0.02295706,-0.04616897,0.0074621555,0.039192334,-0.041303087,-0.06554567,0.005508967,0.13878614,0.039128084,0.072038084,0.022112986,-0.015858382,-0.0687582,-0.093080625,0.070991024,0.017811175,-0.028259508,-0.04485795,0.0074616526,0.04653286,-0.028838607,-0.0014645429,0.028790103,-0.007996311,0.008340066,0.054776214,-0.034160357,0.03265538,-0.06328812,-0.04428934,-0.0191039,0.024068613,-0.06484543,0.048775263,0.03701294,-0.006053703,0.028592777,-0.029292045,0.07276109,-0.072504714,0.05036624,0.04576892,0.04101728,0.0050441516,0.00017239193,-0.029952774,0.055596173,0.10809035,0.007741693,-0.006025434,-0.044187374,0.01349283,0.0015838658,-0.0016387415,0.029432554,0.08766933,-0.0045359163,-0.012958422} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:12.048872+00 2026-01-30 02:01:12.856022+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2305 google ChdDSUhNMG9nS0VJQ0FnSUMtOWFUaGlBRRAB 1 t 2308 Go Karts Mar Menor unknown Trazado espectacular, buen grip. trazado espectacular, buen grip. 4 2023-01-31 01:52:39.833374+00 es v5.1 O1.02 {O2.02} V+ I3 CR-N {} {"O1.02": "Trazado espectacular, buen grip."} {-0.02808015,-0.002300114,-0.030400561,-0.04831626,-0.09398161,0.005089362,0.1417818,0.13832328,0.032258086,0.0027003954,0.0819092,-0.0031486885,-0.062603496,0.029148092,-0.0030859904,-0.0051976386,-0.0522839,-0.0015362793,0.09326567,0.036280103,0.12630557,0.0732467,0.02428043,0.07738151,-0.04381255,0.07753139,0.01648716,0.065668285,0.07874041,-0.12637904,-0.032396205,0.05654386,-0.04371114,-0.0529154,0.030549565,-0.030805813,-0.08010354,-0.10232598,-0.0044834623,0.045108862,-0.043757297,-0.018831367,0.018058846,-0.09058069,-0.0033339083,-0.009710735,0.012294494,0.12688518,0.045583095,0.046005096,-0.0022828907,-0.09396633,0.011665935,-0.016479285,-0.008140949,-0.030956727,-0.040615797,-0.021360936,0.02313738,-0.02089662,0.12715934,0.026196554,-0.100735664,0.060683154,-0.09039593,-0.024196705,0.03429505,-0.052476812,0.04444114,0.06826623,0.02109301,-0.08055892,-0.024064671,0.02061244,0.014478979,-0.029762974,0.01696451,0.005273354,-0.015797675,-0.042055957,0.013192284,-0.0041897525,0.035939015,-0.002395345,0.027207337,-0.0081873,0.03391928,0.011560926,0.013192943,0.023436109,0.02759084,0.048410986,-0.08590915,0.007089405,-0.073358,0.0033546868,-0.021264365,-0.02963507,0.014694806,0.03872632,0.033799946,-0.02768639,0.050366145,0.07292593,-0.089826636,-0.037254192,0.019237082,-0.09460261,-0.013609532,-0.006836259,-0.034631893,-0.026613042,-0.006494185,0.003049061,0.0027719906,-0.040984854,-0.034312002,0.020871902,0.02457745,-0.037132565,-0.025908362,-0.016754314,0.0007734507,-0.042064205,0.01210494,0.04431067,0.01453168,3.7565976e-34,0.038617212,-0.053966004,-0.03549259,-0.010647936,-0.026597593,-0.011167311,-0.04746954,-0.0042018415,-0.08384989,0.020106617,-0.045600727,0.0356302,0.010057269,0.11522355,0.053007234,-0.05276091,0.005616783,0.09779226,0.06864136,-0.018793758,-0.053734533,0.08545347,-0.028032834,0.080285594,0.0074393153,0.055820994,-0.028190322,0.010668049,0.03945003,0.03813596,0.09297854,0.04255154,-0.031953428,-0.05566745,-0.017113263,-0.0076236934,-0.014337335,-0.03896047,-0.025756396,-0.060897548,0.09331136,0.018314298,-0.045159224,-0.005043264,-0.027886346,-0.06539584,0.0041073626,0.10056697,0.014496207,-0.060320236,0.004102306,-0.033124566,0.044421226,0.0028128242,-0.018631585,0.045959078,-0.08372528,0.08359795,0.027606973,0.014881039,0.01780229,0.08478792,0.03674709,0.036758576,0.010457347,-0.055070557,0.025419548,0.004856143,0.017948044,-0.03837901,-0.05633537,-0.04013968,0.06712249,0.03441334,0.042945072,0.009402489,-0.019582443,-0.0023972061,-0.073875204,0.058222853,-0.094254434,-0.029864129,0.03293581,-0.026123106,-0.04643964,0.029761486,0.045871954,-0.036059763,0.072473206,0.09649134,-0.14104055,-0.028720347,-0.053563166,-0.0013285173,-0.0010790696,-6.7467085e-34,0.082232736,-0.025744721,0.04189683,0.08140644,0.014916004,0.0016044916,0.03325775,0.009969697,-0.053331025,-0.1159381,0.12265311,-0.052684765,0.006487892,-0.01531575,0.025506912,0.05365373,-0.029755669,-0.040798634,-0.08249905,-0.050404854,-0.005315932,-0.03780295,0.04709661,0.027077451,-0.062443856,0.017592737,0.022330254,-0.04978648,-0.1282497,0.07528485,0.0022990012,-0.06153313,-0.011417059,0.038392507,-0.09915209,0.056072652,0.04587318,-0.0050427136,0.015469634,-0.046064477,0.019544786,0.07828515,0.08119057,0.00874301,0.05608469,-0.03387047,0.021949496,-0.012767187,-0.05358228,-0.0023611442,0.010278572,0.044076327,0.036635693,-0.046815783,0.042940654,-0.03859413,-0.038216885,-0.16191682,-0.030407399,0.05765706,0.03471467,0.06759491,-0.03224644,-0.05516705,0.14338037,0.008231464,-0.054968204,-0.008979681,0.10195438,-0.053206336,0.069099896,0.040901873,0.036114875,0.05834532,0.0011240355,0.042736236,0.0018685351,-0.08785015,-0.049863275,-0.03993132,0.0036685895,-0.023448529,-0.01509555,0.029263137,-0.049830694,0.04794178,-0.055259228,-0.06603514,0.007984834,0.073638804,-0.019014668,0.027110534,-0.0024589547,0.045742877,0.04983639,-1.8858561e-08,0.051447272,0.01756214,0.06412451,-0.044652153,0.034474373,0.07081283,-0.018320035,-0.023073565,0.012867408,-0.06236977,-0.02934149,-0.032627087,-0.016216747,0.09604276,-0.022912512,0.045724053,-0.0065589687,0.06641343,-0.06205665,-0.12656838,0.032319956,-0.034483522,0.08616566,0.009938671,0.0031926013,-0.043910243,-0.048753206,0.01052112,0.017873723,-0.011781913,-0.0118909385,0.040812816,0.03366936,0.0038036346,0.06789258,-0.0016421725,-0.06600047,0.012255731,-0.081323564,0.07984557,0.031651992,-0.01688582,0.020391867,-0.032568745,-0.07246055,-0.044170517,-0.00041073776,0.08219448,-0.046860583,0.008435896,-0.049137697,0.0064027645,-0.009284843,0.0951451,-0.042651486,-0.010656768,0.016225765,-0.029959459,-0.006972265,0.007303576,-0.03322391,-0.036745828,0.010762347,0.0014839192} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.184265+00 2026-01-30 02:01:12.865265+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2307 google ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB 1 t 2310 Go Karts Mar Menor unknown Barato, divertido y en general una buena opción barato, divertido y en general una buena opción 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.01 {O1.01} V+ I2 CR-N {} {"V4.01": "Barato, divertido y en general una buena opción"} {0.05204462,0.05444593,0.02467462,-0.027283031,-0.107847296,0.001075788,0.09032095,0.059411455,0.00955034,-0.022771023,0.06512954,-0.0030626797,-0.08352506,-0.0055482285,0.056788675,0.023201663,0.046707075,0.04899015,0.033064697,0.047245447,0.034643967,-0.011252071,-0.0627014,0.105262324,-0.08711879,0.013708671,-0.002121492,0.042868324,-0.034587312,-0.10477086,0.0027508654,0.10855094,0.08734065,0.010957712,-0.048129063,-0.016623978,0.0358993,0.0043017725,0.019432869,0.08891728,-0.05044259,-0.012210114,-0.005738879,-0.019168094,0.06882565,-0.034884505,-0.055866804,0.06640166,0.07316991,-0.05702365,-0.06584732,-0.043159697,-0.0136214355,0.04801964,0.0067159226,-0.018302238,-0.0034573458,-0.031931635,0.104685746,0.081098266,-0.017537221,0.054104175,-0.06284676,0.046800077,0.08858413,-0.05447163,-0.012491732,0.07751847,-0.04512969,0.053778034,0.09182285,-0.085112154,-0.014947046,-0.087801024,-0.0678922,-0.015312949,0.026167344,0.05667967,-0.05910719,-0.04400503,0.026341317,-0.03358992,-0.04893557,-0.07049278,0.01941573,0.040302265,-0.068362854,0.041906968,0.054889817,0.03304121,-0.019368866,-0.0021635795,-0.017313985,-0.028989619,0.056670643,0.0037638526,0.02966706,-0.13820109,-0.0074691246,0.079350784,0.09945045,0.026940515,0.08060986,-0.06039074,-0.017946662,0.025470229,0.06513029,-0.0057249246,0.030527499,-0.030331343,-0.066504575,-0.048126124,-0.009789682,-0.07517607,-0.07995867,-0.018029587,0.045375366,-0.027895523,0.0036763852,-0.07241449,0.012843318,0.07499206,-0.05378394,0.0080194585,-0.0005481898,0.0044066394,0.029434094,-6.951558e-34,0.014740176,-0.054724637,-0.039113726,0.082786314,0.010105531,0.033704806,-0.046361465,-0.048398733,-0.030509636,0.00874881,-0.021994885,-0.042658832,-0.019568793,0.036136508,0.02600953,0.0190698,0.00708025,0.025872566,0.061093967,0.018324997,-0.033447843,0.010655964,-0.038221676,0.021205962,-0.029205935,0.0718948,-0.0441249,-0.12751278,-0.06935498,0.064676836,-0.018180456,0.10596531,-0.02023907,0.029140206,-0.031032523,0.008916838,-0.015248992,-0.008164957,0.016713712,0.00030128894,0.013501967,0.0063716583,-0.055631313,0.05203989,0.050137065,-0.05521231,0.04857105,0.027092116,0.08716982,0.034412608,-0.027417645,-0.058711275,-0.036184523,-0.02556081,-0.04108601,0.08107124,-0.06797426,0.123859145,0.032122176,-0.016416337,0.04520895,0.08225313,-0.030551814,-0.01921781,-0.032758966,0.039932642,0.042250108,0.0135863675,0.10542079,-0.028072797,-0.1193501,-0.056138523,-0.03893685,0.08360516,-0.012895097,-0.018503942,-0.05177108,-0.0038899234,0.035633076,-0.008650065,-0.07478,0.013257239,0.033905722,0.08091043,0.07224829,0.1363491,0.09152189,0.025439102,-0.029203154,0.06283706,-0.07979472,0.02584806,0.028077584,-0.047180176,0.124063976,-1.9155575e-33,0.022572488,-0.044241264,-0.03185312,-0.021057993,-0.02342964,-0.050162133,-0.10796245,-0.0362799,-0.039109834,-0.018375657,-0.06368042,-0.09216458,0.1067259,-0.054211408,-0.08747146,0.035315312,0.017773055,-0.030072197,-0.10330194,-0.04629728,-0.0392887,-0.02222069,0.050289027,0.029655924,-0.019867228,0.009445358,0.04404362,-0.01782539,0.020929264,-0.042176444,0.000342018,0.02653608,-0.03968591,-0.03307324,-0.012754675,0.07180196,-0.018806305,0.04066284,0.010797144,0.1184395,-0.052730586,0.04374772,-0.006068922,-0.015217312,-0.0012054291,0.068818524,0.0068115755,-0.08025836,-0.026429141,-0.026041528,0.033992104,-0.0060701123,-0.044426095,-0.0015715376,0.01163905,-0.06722756,-0.013440702,-0.07355782,-0.07577195,-0.042295735,0.06281409,0.026838217,-0.060709804,-0.048915416,0.075757675,0.017425701,-0.04591098,0.0086624725,0.023694191,-0.019890446,0.06776238,-0.0436467,-0.07581378,0.04794949,-0.027054856,0.01297197,-0.06343627,-0.018051693,-0.0057346583,-0.0058700433,-0.0025415348,-0.023501186,0.02960758,0.022549078,-0.023805754,-0.060594503,-0.044803914,-0.017114151,-0.049909934,0.019328646,-0.012886881,0.017837787,-0.033603273,-0.033503912,0.014772519,-2.0569857e-08,0.047748934,-0.018453795,-0.040771853,0.012547514,0.0011305262,-0.0454213,-0.112730816,0.022425868,0.044014696,0.06704012,-0.018037053,0.03811535,0.029163407,0.025990855,-0.03538581,0.040988013,0.093127,0.00738551,-0.020658663,-0.028488595,0.07064852,-0.026868688,0.028516114,-0.099789724,-0.018085115,-0.0125453435,-0.07310894,0.05678445,-0.007509464,-0.041414544,0.03124312,0.034350984,-0.003413494,-0.1163547,0.0023218296,0.052161857,0.0163291,-0.08242902,0.04169782,-0.07907338,0.039232112,-0.079852134,-0.030585036,-0.034592588,-0.05567597,-0.10133144,0.05568042,0.079217814,-0.019227091,-0.015252345,-0.03992213,0.014008848,0.06474654,0.05222553,0.087372616,0.028649313,0.009036963,0.007803649,-0.0014394445,-0.020083996,0.045247618,0.059417073,-0.02833326,-0.07015115} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.216094+00 2026-01-30 02:01:12.872204+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2309 google ChdDSUhNMG9nS0VJQ0FnSURRd2NuY3h3RRAB 1 t 2312 Go Karts Mar Menor unknown Muy divertido con niños muy divertido con niños 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.01 {A3.01} V+ I2 CR-N {} {"O1.01": "Muy divertido con niños"} {0.030308155,0.069588706,0.06870577,0.02022013,0.022625186,-0.0037507534,0.062132537,0.013559095,0.03885559,0.0074343868,0.07790126,-0.095325336,-0.08466916,0.009242842,-0.032068755,0.0041000103,-0.029429758,0.04489853,0.05885147,0.015597092,-0.023598837,0.07188797,-0.07406166,0.04063682,-0.07324142,0.056470886,0.0025173891,0.009652102,0.027239589,-0.017871669,0.0014373116,0.1602046,0.041227933,0.004549941,-0.051801827,0.011399971,0.002278526,0.014733755,0.035105687,0.08593233,-0.029902022,0.010372454,0.004301436,-0.07080864,-0.017187532,-0.007743698,-0.031633485,0.068738006,0.06294714,0.005188092,-0.098040275,-0.0837073,-4.1370087e-05,0.032428265,-0.0097871125,0.0064081317,-0.06511646,-0.053554796,0.057954963,0.035857808,-0.06736879,0.020099493,-0.035659354,-0.024222821,0.047279768,0.009875792,0.014757206,0.040785447,-0.008540678,-0.016157066,0.05761922,0.030381896,-0.001533317,-0.057214398,-0.05034863,0.0020196985,0.028307138,-0.009449183,-0.059783395,-0.016718388,-0.030677944,-0.010457172,-0.016684588,-0.13135636,0.039776694,0.038443312,-0.044720385,0.016906692,-0.0051936563,-0.054563064,-0.0069868006,-0.107135296,0.023659717,0.03194976,0.034655955,0.072424546,-0.021470355,-0.16077588,-0.01730856,0.043180596,0.008201284,0.009432198,0.04503473,-0.019763382,-0.05737885,-0.010750627,0.040262815,-0.09516834,-0.01687174,0.0057422346,-0.04335936,-0.008686162,0.048886046,-0.0071000215,-0.03126671,-0.043282136,0.015946228,-0.03278497,0.025873324,-0.029954378,0.031148536,0.065065764,-0.11035544,0.004848009,-0.030739067,-0.025762636,0.055825286,1.4449242e-34,0.0062309215,-0.07062107,-0.037788242,0.10315311,0.029646534,0.028373707,0.011389769,-0.07323787,-0.008017173,-0.1209864,-0.037931804,-0.061507776,-0.019058822,-0.0012749262,-0.05565944,-0.0050869132,0.05822106,-0.008198845,0.044621225,0.0850555,-0.012418152,0.030849626,-0.022285173,-0.00540986,-0.012516487,0.043856032,-0.065020725,-0.050677065,-0.047423813,0.049566124,-0.007868624,0.013032662,-0.056456618,0.010431731,-0.058344815,0.005738325,-0.009259714,0.01501915,0.001076593,0.032803547,-0.047436267,0.036745824,-0.058855776,0.087909885,0.08257449,-0.019605124,0.06320723,0.05504744,0.06242999,0.05671989,-0.0023461985,-0.058086947,-0.09382744,-0.10240765,0.011497462,0.039218314,-0.0029065274,0.066074274,-0.033174284,-0.020253917,0.058695566,-0.029780677,-0.05215034,-0.08087231,-0.007194967,-0.017031053,0.015585106,0.030725064,0.116468474,-0.021273559,-0.14503245,-0.04235459,-0.071676604,0.064101756,-0.04109173,-0.05633717,0.07471206,0.012431811,0.056332182,0.025543047,-0.03178064,0.068876415,0.05061899,0.08599477,0.024633259,0.009685948,0.01793276,0.11830605,-0.0064238696,0.039648194,-0.031536456,0.059108533,0.07099135,-0.060503606,0.08145467,-9.620213e-34,0.014804156,-0.03172895,-0.027890056,0.062456314,-0.04416116,-0.04937286,0.006848573,0.061631918,-0.045793846,-0.07571399,-0.078526326,-0.077560276,0.0992704,-0.086927295,-0.029923066,0.0776101,0.09381105,0.112971686,-0.030421132,-0.038922343,-0.010149659,0.06712668,0.064194456,-0.046104856,-0.051126577,0.003496395,0.005251128,-0.052564137,-0.11678202,0.024874318,-0.01359279,-0.009816678,-0.06071515,0.042325683,0.009875472,0.017257636,-0.054872908,0.020944536,-0.043722562,0.051804088,-0.03212187,0.03847906,0.036929987,0.06660912,-0.06151948,0.07712347,0.051893007,-0.033926018,0.004210275,0.028129265,0.008971125,-0.014517862,-0.025681363,-0.036097914,0.020138297,-0.10266731,0.013982417,-0.062477686,-0.05841458,-0.0113324635,0.071313925,-0.012511776,-0.07198181,-0.061566763,0.07612326,0.007676875,-0.08391177,-0.018256089,0.08310035,0.033763032,0.07177423,-0.004079237,-0.01170844,-0.023989255,-0.01448371,0.006763225,-0.11288368,0.035287652,-0.008098612,0.044900067,-0.11586075,0.023927845,-0.039836485,-0.024623152,-0.018890848,-0.040279884,-0.016671604,-0.052189857,0.0036928346,0.027751064,0.0036106359,0.03222897,-0.027064169,-0.005923674,0.07343277,-1.4495295e-08,0.05827734,-0.054581426,-0.049796354,0.012645783,-0.0074430453,-0.040500402,-0.073022895,0.034657065,0.020257449,0.09197516,-0.036290735,0.043148484,0.080754735,0.069862574,0.042172167,0.015328855,0.12132495,0.038733225,-0.027559884,-0.018896217,0.10621319,0.0047224276,0.01939853,0.027906235,0.015504817,-0.010936353,-0.034343183,0.06089322,-0.036547456,-0.0109875,0.06633553,-0.056261677,0.005621969,-0.0812735,-0.0263901,0.012372333,0.007625822,-0.002930654,0.010522196,-0.006905101,0.08841531,0.015510561,0.011647404,9.867708e-05,-0.0469755,-0.06495122,0.05292681,0.056492705,0.01227299,0.0054111523,-0.040533304,-0.020590186,0.06748112,0.1047714,0.028206343,-0.02825925,0.027901413,-0.013947365,0.021301538,-0.035659052,-0.018001564,0.134778,-0.054458417,-0.030914586} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.24064+00 2026-01-30 02:01:12.877344+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2310 google ChZDSUhNMG9nS0VJQ0FnSURXaU8tNVd3EAE 1 t 2313 Go Karts Mar Menor unknown Divertido para pasar un buen rato divertido para pasar un buen rato 5 2023-01-31 01:52:39.833374+00 es v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Divertido para pasar un buen rato"} {-0.009647454,0.041549686,-0.0068473346,-0.05817272,-0.02781014,0.019795893,0.094299965,-0.015218574,0.037436068,0.02848808,0.056240816,-0.012926007,-0.096262544,0.015768493,0.0064258743,-0.062620945,-0.057871927,0.066884816,0.010216808,0.039961994,0.039943933,0.02357855,-0.06717924,0.09947655,-0.100264505,0.0064295433,0.027021889,-0.05244805,0.00045670703,-0.047302067,0.05822489,0.08277041,-0.030985644,-0.057479344,-0.011559219,-0.040140353,-0.07269032,0.02460566,0.029737553,0.0467424,-0.025377963,-0.05302398,-0.03634786,-0.024639415,0.00092353567,-0.01880878,0.018798454,0.046773434,0.09842047,-0.03353397,-0.012869526,0.04167791,-0.044481006,0.020634722,-0.040297832,-0.011835244,-0.043387864,-0.042357575,0.0695539,-0.0020015386,-0.027647259,0.01089698,-0.030033102,0.0134665435,0.032753687,-0.017624209,-0.02922342,0.036076568,-0.07438231,0.05451126,0.1226035,-0.061269313,-0.015624215,-0.039973855,0.03166036,-0.047495708,-0.032120273,0.067340136,-0.06136049,-0.07918053,0.068900526,-0.03893329,-0.07248227,-0.03115695,0.040050503,0.025214775,-0.021378212,0.09728941,0.0035219842,-0.040720057,-0.0017455526,0.0046810084,-0.051112246,-0.014892982,0.056464117,-0.00781945,0.026967498,-0.107943505,-0.006150028,0.07200463,-0.02341755,0.066664316,-0.014149275,-0.04256055,-0.0049623493,-0.03777495,0.038415644,0.028544266,0.09341434,0.0052422252,-0.055418853,0.012510662,-0.013878025,-0.061739583,-0.022305757,-0.01918768,0.055265296,-0.12091495,0.036991443,-0.033806503,0.02341419,0.036246054,-0.07630715,0.05060148,0.0056109,-0.06326991,0.06428004,2.0824564e-33,-0.0017668366,-0.08160415,-0.03591099,0.037234917,-0.016341692,0.043456372,-0.021311672,-0.09050266,0.036122125,-0.0007886385,-0.055669982,-0.029405633,-0.04019197,0.07351319,-0.006117442,0.0007687191,0.052717485,0.062104024,0.12368171,-0.036427565,-0.06836743,0.03330725,-0.06780449,0.09329664,0.023845857,0.058278836,-0.09576808,-0.03483431,-0.02708814,0.06761987,0.07318483,0.0369891,-0.06739675,-0.048553012,-0.043267954,-0.08570247,-0.04325657,0.021710219,0.03856074,-0.006819428,0.09240438,-0.02406156,-0.06720341,0.07846533,0.06425711,-0.12824081,-0.009450799,0.009577162,0.0650723,0.051645424,-0.012546962,-0.014367242,-0.015775898,-0.070897885,-0.010170333,-0.08224372,-0.02442143,0.09832474,-0.045594417,0.012460374,0.039649285,0.032328594,-0.090125255,-0.03133168,-0.046948466,-0.014569334,0.014228113,0.037462987,0.05522094,-0.031453617,-0.16244808,-0.024120817,-0.044290543,-0.01520767,-0.029776245,0.012072857,-0.018987317,0.08196512,-0.0034993235,-0.012318077,-0.052831497,0.06299018,0.074140996,0.086381964,0.07344937,0.089275315,0.04524845,0.02059578,-0.012223113,0.04941423,0.022337018,0.053225804,0.014881596,-0.051867694,0.07719781,-3.473156e-33,0.0069368402,0.011648426,-0.010375664,0.025504248,-0.03755104,-0.00737278,-0.074471876,-0.00024718087,-0.026713131,-0.031860646,-0.06273243,-0.060363743,0.11764927,-0.03194484,-0.029975947,0.0762687,0.06770303,0.010766934,-0.07671029,-0.054563664,-0.07410123,-0.03045452,0.09273518,-0.06833081,0.0072884834,-0.02181188,0.059725277,0.037273854,-0.008063119,-0.010169942,0.036437396,-0.013680811,-0.03569141,0.11232971,0.04049607,0.024592662,-0.047432773,0.048696913,-0.05122269,0.04604911,-0.055271927,0.011946545,-0.042052254,-0.009601943,-0.03739182,-0.006422751,0.06497793,-0.075834244,-0.05184365,-8.9362184e-05,0.05572476,-0.01799757,0.053199146,-0.07427694,0.02771735,-0.10473385,-0.031677313,-0.056194734,-0.064600706,-0.043209463,0.09458248,0.071727015,-0.045166243,-0.05261739,0.043931503,-0.032389462,-0.09042412,0.018654067,0.0008111791,0.05018721,0.12821661,0.0096256845,-0.0025833999,0.05668693,-0.03115623,0.069827944,0.003520743,-0.003170513,-0.011569229,0.00075438264,-0.112533584,-0.0003064936,-0.007953949,-0.019937828,-0.054723926,0.010431945,-0.04696295,-0.023405455,-0.032544095,-0.0454915,0.039057434,-0.013486748,0.028451659,-0.007979822,0.013240675,-1.8890898e-08,-0.02078295,-0.04165819,-0.070165485,0.030043667,0.056872427,-0.016389234,-0.0135597065,-0.03521987,-0.016552784,0.023046378,0.004567158,-0.028774446,0.11011671,0.051837217,-0.0111817615,0.045669895,0.076814294,0.06333032,0.031392444,0.022993011,0.0702634,-0.056065504,0.0063600605,-0.027756963,0.037417743,-0.03665312,-0.015198503,0.08040623,-0.0055530043,-0.06907271,0.08325852,-0.054453198,-0.011834948,0.022069352,0.035409525,0.039798908,0.0069010523,0.05675405,-0.021720592,0.013354516,0.06395638,-4.12961e-05,0.022175115,-0.02059001,-0.019172233,-0.06551756,0.028727815,0.07144114,-0.03542017,-0.042196248,-0.022096857,0.030394243,0.07295399,0.026175132,0.029824872,-0.009102596,-0.01620173,0.004492268,0.011173922,-0.03256237,0.010608659,0.1818345,-0.08415689,0.01906162} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.252874+00 2026-01-30 02:01:12.884077+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2311 google ChdDSUhNMG9nS0VJQ0FnSUN1aDZiUm5RRRAB 1 t 2314 Go Karts Mar Menor unknown Nos gustó mucho nos gustó mucho 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Nos gustó mucho"} {0.030962048,0.043519,0.023009991,0.021992458,0.016831925,-0.034878943,0.06753636,0.04006058,0.00783897,0.024821652,0.04240524,-0.048653647,-0.0808649,-0.026358336,-0.005734868,-0.017521158,0.08839353,0.034185614,-0.07936886,-0.006814805,-0.034291815,-0.045699254,-0.091567405,0.12545398,-0.096337445,-0.03181773,0.011621951,0.045500472,-0.0013429184,-0.07013198,-0.04022079,0.1288688,0.057445664,-0.046181407,-0.031500034,0.010022047,0.077105194,-0.09049142,-0.019833907,0.042858638,-0.027022744,0.051246088,0.013957395,-0.00070493814,0.045201674,0.008479752,-0.006513264,0.028575068,0.08968811,0.032135803,-0.058013476,-0.06948879,-0.040349834,-0.01979281,0.0033297655,0.0533734,-0.0129706515,-0.012334788,0.026271794,0.013042393,-0.027011504,-0.062562615,-0.03440249,0.07123726,0.028332729,-0.07985284,0.0086515825,0.0052611944,-0.061722286,0.057977892,0.09963573,-0.008597949,0.098064974,0.06610366,0.004674893,0.025475545,0.0023383324,-0.0013120902,0.008559064,-0.048024368,-0.001033262,-0.044908967,0.0018324256,-0.05271546,-0.023307621,0.0134218,-0.0021907848,-0.024265198,0.0049875174,0.025314754,-0.058451284,-0.023534825,-0.040285677,-0.009908481,0.044670872,0.06764341,0.0638411,-0.04726047,-0.04818728,0.09246375,0.056793153,0.06985205,0.0747662,0.043157194,0.003946738,0.111557566,0.013212207,-0.058866747,0.060935963,0.018331973,-0.044874817,0.0062233144,0.038626283,-0.04590459,-0.06290161,-0.068159096,-0.006805684,-0.049610905,-0.07361771,0.012979979,0.019701136,-0.024876334,-0.102460474,0.013431856,-0.021886842,-0.03829086,0.05150342,-1.6090459e-33,0.01852502,0.0017128779,-0.023382448,0.007775205,0.053685673,0.0391238,0.035894513,-0.039823707,-0.10563664,-0.016847808,-0.03852409,0.037058286,-0.075927034,0.085762106,0.023497865,0.008299375,0.016738873,-0.03257626,0.081568904,-0.026138272,-0.11768609,-0.07239613,-0.055745114,0.024181506,-0.033147126,0.11110353,0.009814116,-0.114267275,-0.0987962,0.05109317,-0.028105224,0.116308615,0.019528044,-0.039914563,-0.010095789,-0.03517137,0.015005861,0.0016236178,0.03469336,-0.032270793,0.06441966,-0.0015120269,-0.10495767,-0.019317059,-0.05814324,-0.028048497,0.025415987,-0.021883626,0.033397384,-0.036204424,-0.010490522,-0.08481117,-0.060646936,0.033410423,-0.006519564,-0.020564307,-0.016205138,0.046560958,0.044238914,-0.018483795,-0.031827506,0.07924548,-0.0071930997,-0.006804087,-0.001278298,0.0096926605,-0.016267387,0.03098729,0.08269266,-0.019298745,-0.015758544,-0.009708694,-0.09232092,0.011956163,-0.102221414,-0.024844024,0.08474572,0.0024673718,0.09708614,-0.008849687,0.0053503294,0.06355296,0.086116314,0.02826883,0.110945195,0.116967924,0.028860537,-0.03588267,-0.033265293,0.12794949,-0.037520323,0.050005604,0.13628525,-0.0877936,-0.056725197,6.6204466e-34,-0.04143923,-0.035998493,-0.00019274565,0.045254514,-0.054108515,-0.02370919,-0.0977329,0.03030035,-0.00050896924,-0.08152765,0.017513273,-0.09764345,0.11981691,-0.010460572,0.047643874,0.047655605,0.06030241,0.044800755,-0.08192914,-0.029329494,0.0055308696,-0.059625395,-0.0069943955,0.04079917,-0.016959151,-0.02984128,0.031107893,0.028315883,-0.12591663,-0.010630508,0.031079343,-0.03780693,-0.042700086,0.030967679,0.070405796,0.045931127,0.017305424,0.08822155,0.034466423,0.058337037,-0.050116345,0.035055805,0.061075434,-0.042984042,0.008210499,0.021177588,-0.05404031,-0.10455234,-0.021639537,-0.0064431145,0.055108737,-0.021374702,-0.03528594,0.08785033,0.02321562,-0.012914461,-0.015347481,-0.054680694,-0.06950768,-0.026241254,-0.014031766,0.017437896,-0.12653054,-0.0061985333,0.06266853,0.060516875,-0.05121756,-0.01715973,0.025475126,0.035364155,0.029242102,-0.026309775,-0.018144362,0.008212837,-0.035205178,-0.028585367,-0.04205149,0.07693806,0.026237978,0.046692327,-0.014542539,0.032507837,-0.04477462,-0.00864853,0.064683445,0.016439237,-0.0064790915,-0.009661593,0.027750332,-0.008024812,0.041268058,0.034930028,-0.0047463416,-0.13532737,-0.018601267,-1.4540758e-08,0.022436323,-0.05423666,0.022356175,0.002930259,0.05338389,0.008605966,-0.03751544,-0.03229236,-0.034932934,0.06568801,0.089470975,0.015306174,0.023139622,0.041332696,0.008151974,0.027187018,0.021219246,0.026821163,0.015753478,0.004607321,0.03539254,0.008779275,-0.021791372,-0.019155966,0.048054203,0.014080811,0.0012589559,0.058584966,-0.011335433,-0.06702156,0.02724824,0.010861359,-0.09443459,-0.055958927,-0.016966822,-0.05235053,-0.0084082205,-0.0043738987,-0.042374358,-0.06641748,0.0053942674,0.03031387,0.048907228,0.0033878167,-0.091555536,-0.0549237,0.09110697,0.018535314,-0.043293644,0.019048609,-0.043101277,-0.026658578,0.08053797,0.057091847,0.008859041,-0.06490338,0.06594619,0.045443304,-0.04895312,-0.067058325,0.096588254,0.07450608,0.02174378,-0.018211985} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.266797+00 2026-01-30 02:01:12.894882+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2312 google ChZDSUhNMG9nS0VJQ0FnSUNpa0pPdUh3EAE 1 t 2315 Go Karts Mar Menor unknown Gran circuito, genial atención gran circuito, genial atención 5 2021-01-31 01:52:39.833374+00 es v5.1 O1.02 {P3.01} V+ I3 CR-N {} {"O1.02": "Gran circuito, genial atención"} {-0.10426034,0.081321284,0.009895841,-0.0142542925,-0.13155597,-0.015543475,0.10230764,0.12540247,-0.017989779,0.01455505,0.01737019,-0.088007815,0.048627336,-0.032584395,-0.05269783,0.027867459,-0.0042287116,0.08357239,0.008112777,-0.034980796,0.08930396,-0.043420304,-0.008842989,0.031340312,-0.06337598,0.046540022,-0.0073062256,0.045592368,0.035063334,-0.08149012,-0.09405436,0.13038698,0.06000258,-0.027126329,0.006971792,-0.0017168189,-0.007606606,-0.011132119,0.0044844346,0.009646896,-0.012077356,-0.04139236,0.021193724,-0.04185158,0.04888909,0.026899362,0.030464174,-0.011596366,-0.012426818,-0.053444013,0.0106696,-0.051041238,0.082422,0.03413954,-0.02676727,0.047936976,0.06408276,-0.029821962,0.016426478,0.033571403,-0.013558689,-0.0067814523,-0.0576527,0.0053870217,0.08786876,0.0032757695,0.09783243,-0.055805933,-0.0485413,-0.020953456,0.081077285,-0.07621543,0.033475824,0.00055430416,-0.045573514,0.08128961,0.017692916,0.02701031,0.026486104,-0.10403546,-0.0020260832,-0.023977952,-0.042799708,-0.054325182,-0.014006263,0.052066162,0.021696268,-0.042877775,0.011888682,-0.03855262,-0.07520912,-0.0011968063,0.003023156,0.011759753,0.0089090355,-0.008075623,0.01172346,-0.084271334,0.03152562,0.08540805,0.058586266,0.04077309,0.040747628,0.042271707,-0.04131095,0.022350771,0.00031735052,0.04154293,-0.011246119,0.04578871,-0.04153693,-0.0033735386,0.020730177,0.020540927,0.016837683,-0.04606984,0.051573005,0.017862381,-0.032881103,-0.048446566,0.054486178,-0.11018937,-0.13915588,0.015598418,0.013183233,-0.035138823,0.105389796,1.1311626e-33,-0.009126639,-0.021906098,-0.014964848,0.03435308,-0.0011259731,0.093480416,-0.03950554,-0.057885934,-0.018026698,0.039781243,-0.10265779,0.08753219,-0.030257698,0.06551359,0.04396559,-0.042995583,-0.022964433,-0.054447886,0.10123193,-0.04922447,-0.02587077,0.062083393,0.029970199,0.033359285,0.012112624,0.07800627,-0.04226526,-0.12034393,-0.099824145,0.017891083,0.08322881,-0.006419562,0.014305275,0.029611079,-0.054408252,-0.03695216,0.03777228,-0.014726618,0.037177585,-0.047660585,-0.07281673,0.004223278,0.014606907,0.057476025,0.046158206,-0.037237994,0.020383202,0.018787708,0.11936415,0.06510881,-0.050646137,-0.066376805,-0.083229065,-0.075453594,0.01596763,0.038927045,-0.090146855,0.06390584,0.040674705,0.0540048,0.03509917,0.08539992,-0.024567103,-0.019252263,-0.020253556,0.0057475995,-0.0431238,-0.050402634,0.06732625,-0.011134077,-0.038368367,-0.017217316,-0.049010698,0.09675905,-0.065713316,-0.016971767,0.0025608307,-0.026206119,-0.050842583,-0.018253,-0.037063234,-0.0066080303,-0.009087736,0.03520334,0.0542575,0.07885455,0.031801306,0.048750855,-0.020442717,0.03521855,-0.027576074,0.025648538,0.05962779,0.03156609,-0.006572498,-1.1953977e-33,-0.002646724,-0.055987168,-0.0074297055,0.0465084,0.008144942,-0.016088111,-0.08450053,-0.04564664,-0.09446154,0.027575124,0.028585944,0.0126133235,0.08090951,-0.068664156,-0.0037407698,-0.01691537,0.024045456,-0.040290955,-0.06076637,0.08030598,-0.0025919843,0.056652177,-0.09311947,-0.040086303,-0.025268354,-0.0032900828,-0.02699712,-0.002337499,-0.029190585,0.067545205,0.0052800667,0.03065192,-0.006919953,0.032743912,0.052993048,0.0026571832,0.16575077,0.04705641,-0.052659556,-0.06668867,-0.055549443,0.06279831,0.027724769,0.06768939,-0.01853317,0.073270805,-0.01406392,-0.033827987,-0.05532491,0.064427555,0.02824985,-0.017849445,0.02799991,-0.06434128,0.017220892,-0.013313646,0.025969882,-0.0762553,-0.100003995,-0.03468665,0.10008085,-0.014738892,-0.017701954,-0.018052848,0.06687926,0.0717697,-0.003913452,0.08886639,0.03912054,0.04510957,0.05852813,-0.012391027,0.009282317,-0.118438244,-0.04443626,-0.024443569,-0.077525,0.010997831,0.032780033,-0.044592127,0.0104108425,0.050766833,-0.046131957,-0.063125245,-0.06814357,-0.03948774,0.058477104,0.047697835,0.055853643,-0.019415101,-0.060918096,0.009154251,-0.035575796,-0.06278265,0.013468981,-2.0926942e-08,0.07416278,0.0014686362,-0.004901886,-0.03237095,0.08415832,-0.09206775,-0.027928216,-0.010337043,-0.026130972,0.03843791,0.03752286,0.061883036,-0.028558174,0.040054765,0.050343942,0.039587002,-0.011487992,0.07936376,-0.05873509,0.028236458,0.027482886,0.016369948,-0.032906067,-0.013689535,0.08201695,-0.025387641,-0.0040188553,-0.045485165,-0.013999425,0.00020595289,-0.0036556574,0.01753971,-0.030779745,-0.075609416,0.021010362,0.07634751,0.0064661535,0.003290634,0.009611004,-0.11669941,0.014899916,-0.0720917,0.08743089,0.004008251,-0.0030269395,-0.04424466,-0.0070728757,-0.0478809,0.0039484478,0.064662844,-0.11526033,-0.012873919,0.036155265,0.022074612,0.009160312,-0.052439626,0.04368082,-0.044226762,-0.012966056,0.02962981,0.005876301,0.05938014,0.04483474,-0.10855646} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.278615+00 2026-01-30 02:01:12.904556+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2313 google ChZDSUhNMG9nS0VJQ0FnSURndTZmOWVBEAE 1 t 2316 Go Karts Mar Menor unknown Muy bien y el trato fenomenal muy bien y el trato fenomenal 5 2018-02-01 01:52:39.833374+00 es v5.1 P1.01 {O1.01} V+ I3 CR-N {} {"P1.01": "Muy bien y el trato fenomenal"} {0.028304491,0.005056535,-0.020144464,-0.004684295,-0.022831207,-0.016808435,0.11725033,0.029224733,-0.040505677,-0.023127012,0.012450271,0.036194913,-0.051152557,0.0108975945,-0.0019815238,0.025493192,0.050835732,0.07517285,-0.019047026,0.03773312,0.052932464,-0.061881125,-0.03961319,0.09444334,-0.10346301,-0.06080535,-0.02182369,0.06573129,-0.04210634,-0.09746015,-0.019763194,0.07074528,0.01791149,0.004968339,-0.02012837,-0.066195905,-0.0041498933,-0.058483757,0.054565255,0.063033745,-0.051517673,-0.012451496,-0.06854864,0.0034090606,-0.010999424,-0.068957955,-0.023236645,0.09059889,-0.023383936,0.0018574562,-0.04468661,-0.018676817,0.02098084,0.06902101,-0.019273572,0.04758174,0.030111965,0.01976152,0.06728865,0.0018316911,-0.011708464,0.06783155,-0.022995522,-0.007752463,0.027298544,-0.07744869,0.07474318,-0.033169284,-0.082880445,0.10233658,0.07289184,-0.072961815,0.03199677,-0.037074134,-0.041323632,0.054493636,-0.0067629684,-0.013783783,-0.04805648,-0.010948793,0.030748995,-0.004795038,0.01829827,0.0059144646,0.056465756,0.015613079,-0.025739735,0.02059043,0.028977063,0.007698192,0.010654829,0.092880614,-0.047300164,0.041258298,0.021210022,0.08604768,0.07071638,-0.06311814,-0.034485452,0.090088725,0.06259069,0.0253681,0.13467415,0.06869789,0.014753778,0.028239453,0.07562164,-0.050600268,-0.028378926,-0.014739387,0.0009996883,-0.046128657,0.0034963964,0.01680646,0.013003426,-0.030653106,-0.022058593,0.0044735433,-0.015696617,-0.07685668,0.073083356,0.07726036,-0.07013529,-7.846183e-05,-0.015543952,0.011046768,0.008447603,2.564518e-33,0.018373854,0.01742564,-0.030447392,0.01572044,-0.02486486,0.0017527774,-0.082576655,0.050699566,-0.09315422,0.050489232,-0.086189896,0.012848349,-0.0022289476,-0.031859353,0.012694902,0.04191097,0.0027856105,-0.030187909,0.096637525,-0.0020419564,-0.09116209,-0.07086601,-0.025182912,0.015766548,0.008105216,0.04060942,-0.043603163,-0.08963441,-0.08983657,0.05999754,0.00019718893,0.08388722,0.009120362,0.017615905,-0.048926756,-0.1070574,-0.014735689,0.009834613,-0.03805351,0.04574825,0.03141594,0.007617046,0.029240666,-0.012599575,0.022785854,0.018811967,0.04920593,0.06253073,0.07764918,-0.029082624,-0.04435794,-0.07049267,-0.06838407,-0.02868306,0.014035145,-0.005494394,-0.057740845,0.052712824,0.020156031,-0.01176464,0.07609881,0.012966581,0.03619515,-0.029553313,-0.0681803,0.002876036,0.00037505387,0.04444496,0.090762,0.01896026,-0.08136065,-0.040007953,0.084591754,-0.0024920332,0.053885218,0.014898149,0.0045544086,-0.036308043,0.016227875,-0.017443597,-0.0424258,-0.066493146,0.029478133,0.022714218,0.043486133,0.03836234,0.015230737,-0.022990376,-0.01537291,0.08456634,-0.10666401,0.0016541401,-0.017947344,-0.04993018,0.01406627,-2.2236788e-33,0.035679433,-0.0024817204,-0.026053168,0.07626196,-0.063862704,-0.012818334,-0.06803474,-0.033660166,-0.009297194,0.027611908,-0.042210117,-0.14198841,0.09301093,-0.050500203,0.0473717,0.038432885,-0.017079912,-0.06772665,-0.09342912,-0.061079994,0.010809579,-0.059652563,-0.052316573,0.0062242146,-0.03536648,-0.031636745,0.01001228,0.003621399,-0.04138108,0.039617594,0.007802309,-0.034181196,0.00057431124,0.020421203,0.0043748277,0.07524856,0.011457987,0.07156656,0.03864875,-0.010583891,-0.081734255,0.047665797,0.0038669254,0.013810459,0.06313887,0.020123221,0.0031987343,-0.11597623,0.024394257,0.007205947,0.093654424,-0.013185412,-0.038274743,-0.036987796,-0.006391166,0.037939083,-0.061516836,-0.102187894,-0.07542191,-0.023194527,0.03691184,0.051615283,-0.0915054,0.00077830226,0.116421014,0.030420635,-0.10021383,0.06801942,0.06375059,0.069559276,0.06704935,-0.05845079,-0.092335775,0.023683365,-0.05814911,-0.038862463,-0.059535548,-0.034315027,0.020535897,0.10758479,0.041674536,0.015486606,-0.0046036127,-0.032425776,-0.02185445,-0.025275188,-0.05789985,0.051540297,0.027352607,0.051928807,0.1084843,0.014310185,-0.04350977,-0.13433705,-0.003688914,-1.9828859e-08,0.035079308,-0.020379817,-0.038319856,0.020238465,0.06763074,-0.046010748,-0.03397569,0.020281188,0.055787805,0.104449496,-0.055861413,-0.019519243,0.014456575,0.0676999,-0.0035931189,0.0765366,0.041488856,0.0026529257,-0.0027645906,-0.047854714,0.033071026,-0.0033550533,-0.0019164067,-0.05007551,-0.039099626,-0.008194485,-0.063701116,-0.015131383,-0.02213031,0.04249848,-0.0028695758,0.040153436,-0.0058606234,-0.088413954,-0.056931093,0.028336436,-0.026128031,-0.08252193,-0.02724443,-0.019168817,0.054114867,-0.033597425,0.0065228078,-0.03643005,0.020170202,-0.14496931,-0.0015642727,0.05535819,-0.001901511,0.017366542,-0.016102493,-0.039311994,0.0437365,0.076247625,0.081022754,-0.02565585,0.06286082,0.0013015217,0.007589333,0.0072791125,0.043618005,0.115612954,0.10380085,-0.1551393} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.290472+00 2026-01-30 02:01:12.908024+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2314 google ChZDSUhNMG9nS0VJQ0FnSUNRdWFpeUJnEAE 1 t 2317 Go Karts Mar Menor unknown Muy buenas. Las f200 muy buenas. las f200 4 2018-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Muy buenas. Las f200"} {-0.0035464815,-0.04601485,0.04957728,0.06544121,-0.057209212,0.051408175,0.01970303,0.018116223,0.018311208,0.027672585,0.03375703,0.029532071,-0.020643815,-0.00689583,0.02009889,-0.0036162313,-0.042069785,-0.05835868,0.05315784,0.031275645,0.10836722,0.023023805,-0.08115547,0.07991824,-0.12503265,-0.06772446,-0.017055335,0.08852968,-0.046415478,-0.07479825,0.057763457,0.13884345,0.045700382,0.06583527,-0.0012229555,-0.05856165,0.016262097,-0.058787156,0.010559832,0.05817545,-0.12083162,-0.060926225,0.021806933,-0.055636104,0.016251028,-0.082036674,0.060795363,0.061379384,0.10174534,0.023467017,-0.01512399,0.0054870252,-0.019413307,0.0076987823,0.021259477,0.06464922,0.028325241,-0.016906137,0.001685237,0.039165292,0.021818932,0.036827452,-0.12552513,0.06697041,-0.015443386,0.052683763,0.030908696,0.020452779,-0.067256555,-0.011028015,0.06580797,-0.07906687,-0.011587222,0.0071293474,-0.00067324884,-0.008934932,0.02410346,0.025989892,-0.012327415,-0.013531944,0.044791084,-0.0640645,-0.037691146,-0.03402092,-0.0059905946,-0.0056507573,-0.05731743,0.044904724,0.047415726,-0.01606112,-0.08739359,0.041973628,-0.08831214,0.010279565,-0.04641176,0.05596604,0.023807732,-0.056007206,-0.025857912,0.118405074,0.051473632,0.014104157,0.07621024,-0.015692,-0.004570828,0.052618943,0.07518007,0.025205603,-0.015277249,-0.040809292,-0.033667155,0.0071317814,-0.027015805,-0.01625466,-0.0531905,-0.005609731,0.021502404,0.0040293173,0.03898728,-0.09041697,0.017103793,0.034888603,-0.052188516,0.005881988,-0.0032360808,-0.023626182,-0.033723723,-7.75683e-34,-0.04739836,0.011479936,-0.0077674002,0.093661256,0.055199802,-0.0047407434,0.064664364,-0.021392537,-0.079986885,0.03279526,-0.00093744125,0.007354635,-0.04140148,-0.051787745,0.09584603,0.03821784,0.00019380494,-0.015043044,-0.031109981,-0.033129837,-0.022050872,-0.015012693,0.03805804,-0.040088516,-0.009355334,0.06402883,-0.02393309,-0.04056478,0.03436183,0.038687814,0.005628081,0.08839635,0.036417287,-0.08461826,0.050053667,-0.05848561,0.03308786,0.024216043,-0.055727355,1.2229543e-05,0.072470725,0.068441235,-0.04543108,0.022077236,0.018046608,0.01188862,-0.004333134,0.03493894,0.10067018,0.105265446,0.013739506,-0.080985144,-0.119124316,0.014994555,-0.016245652,0.014909725,-0.08732714,0.020172337,0.0025634954,-0.011625939,0.048450943,-0.053785462,-0.0432353,-0.09087144,-0.046426736,0.0039871815,0.055946458,0.11202128,0.1567539,0.062179074,-0.026808921,-0.06748292,0.023117432,0.021183291,0.056341153,-0.000442908,-0.026110722,-0.021241056,0.009971784,0.051560093,-0.042315062,0.024841322,0.021511137,0.113493554,0.06147097,-0.00086452503,0.019881574,0.032924816,-0.0058248225,0.034766283,-0.072468266,0.024907356,0.09162809,0.0003556329,0.012756254,-3.0561358e-34,0.020089138,-0.06625002,0.015229128,0.070442855,0.009255683,0.01562439,0.010559591,0.00941078,-0.020442808,0.014496615,-0.03680415,-0.0626492,0.10313417,-0.0821721,-0.025794964,0.053901643,0.0907147,-0.06051951,-0.078296654,-0.013188936,-0.004327237,0.04994669,0.06838719,0.040649947,-0.013861009,-0.014223782,-0.022080306,0.050366048,-0.05831229,-0.03241337,-0.019856084,-0.064311825,-0.011407576,0.041275606,-0.077694334,-0.023248246,0.092027225,0.06406246,-0.028311843,0.026213178,0.018685333,0.05621181,-0.06989626,0.059972815,0.0009481714,0.019925449,-0.060414955,-0.10973894,0.03524472,-0.020943606,0.020127224,-0.08580065,-0.12720738,-0.01715113,-0.03727205,-0.046829674,0.013860933,-0.051315926,-0.069983155,-0.011453398,0.02386724,0.065548666,-0.093290396,0.009307979,0.07947962,0.017316643,-0.011202936,0.048550885,0.021419886,0.034183495,0.059559368,-0.006730769,-0.09999005,-0.011312212,-0.07035194,-0.0074684247,-0.08392842,0.0054693567,0.0091248695,0.049838938,0.04547174,-0.06006269,-0.064879075,0.013629969,-0.0034001556,-0.008419644,0.042616684,-0.06065351,0.03575246,-0.0071768207,-0.0017634283,0.0550535,-0.059389573,-0.095211715,-0.020524967,-1.7412356e-08,-0.021309724,0.09761536,-0.06702555,-0.008273637,0.007168242,-0.058577623,-0.052062474,0.09002835,0.048179008,0.058538526,-0.011385263,0.0014696948,0.015146357,0.060293946,-0.029047472,0.032079507,0.06752493,0.09425197,-0.026955284,-0.041730065,0.0004292249,0.055095058,-0.03450906,0.02071458,-0.01928572,-0.055048514,-0.062175967,0.060019765,0.06635042,-0.004680358,-0.084823675,0.04583605,-0.08700235,-0.056142855,-0.037002943,-0.048018873,-0.020983038,-0.08567421,-0.052410573,-0.011868686,0.094862476,-0.00929882,-0.026167491,-0.06801876,0.035282888,-0.08426177,0.03887031,-0.047127873,-0.028667564,-0.034359664,-0.01849153,0.010557569,-0.032543633,0.07542303,-0.010707597,-0.060773917,0.039289914,-0.013011436,-0.029616432,-0.0044189533,0.060096465,0.045252178,0.04203449,-0.04301671} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.303903+00 2026-01-30 02:01:12.911962+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2316 google ChZDSUhNMG9nS0VJQ0FnSURzbUtxcUlREAE 1 t 2319 Go Karts Mar Menor unknown Muy bueno muy bueno 5 2021-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy bueno"} {-0.06376096,-0.0112567535,0.019215178,-0.033894207,-0.0024743925,0.008710372,0.12659766,-0.013863421,0.00854203,-0.036620207,0.03483134,-0.10601849,-0.032411087,0.0006619824,0.0085048545,0.12497412,-0.01542606,0.081670165,-0.047485724,-0.023312163,-0.0028273703,0.052842498,0.008012085,0.11162622,-0.012075939,0.027714934,0.074077405,0.07137407,-0.0077535817,-0.018633172,-5.69922e-05,0.07927559,0.04902943,0.0038934308,-0.022200322,-0.055163305,0.011038773,-0.11940265,-0.015719758,0.048154667,-0.0337173,-0.03797878,-0.06977786,0.0215396,-0.0084694065,-0.08139227,0.052474827,0.056449115,0.0789148,-0.062421255,-0.058235064,-0.014618411,-0.015566187,0.015009452,0.04378923,0.10334686,-0.027136305,0.00096061215,0.033892006,-0.0069505977,-0.04749208,-0.02281812,-0.0023369133,0.010518438,0.021406276,0.008988508,-0.044340115,0.047982197,-0.044600867,-0.012648772,0.07078693,-0.06554484,-0.043383345,-0.0028648267,-0.04300471,0.031198941,0.06777514,0.0007202273,0.01755652,-0.01884351,-0.00015487823,-0.04820159,-0.022725308,-0.022767378,0.012454102,-0.017485283,0.014791978,0.044016704,-0.042395726,-0.020212028,0.006909228,0.0011913041,0.02756736,0.024920566,-0.005261477,0.0601716,0.054106187,-0.06425366,-0.020154752,0.14593533,0.0054826853,0.015467559,0.113699354,-0.0032638782,0.0055971425,-0.017501244,0.06419949,0.007818974,0.015005702,-0.015987659,-0.009950124,-0.051186375,-0.044902287,0.04287613,0.05532378,0.0015040739,-0.024166718,0.049279597,-0.05288283,-0.061013006,0.01786225,0.022028152,-0.10562407,-0.013045584,-0.084133774,0.019764986,0.017935,1.5301002e-33,0.025217095,-0.060752317,0.020586548,0.04502524,0.009702876,0.07210826,-0.089360036,0.06944927,-0.08633927,-0.05797631,-0.05029627,0.03574281,-0.035383485,0.010106908,0.08339225,-0.028307833,-0.035183363,0.0067865374,0.08962843,0.025482047,-0.030736227,-0.0011539992,-0.0538376,0.026683357,-0.062469605,-0.016032243,0.026359543,-0.10852249,-0.023810867,0.053575713,0.014945085,0.0025524667,0.010840751,-0.06302685,-0.1706889,-0.15115394,-0.049676314,-0.03252619,-0.05193751,-0.040234055,-0.021129962,0.019211696,-0.058029294,0.050089885,0.010794782,-0.019889712,0.06930217,0.036625,0.05825387,0.07062003,-0.06840427,-0.043515928,-0.07642604,0.023026882,0.024635628,-0.027135367,0.0776776,0.04832652,-0.0071926177,-0.048659455,0.07034892,0.071843036,0.031824637,-0.055009373,-0.030673437,0.0071426877,-0.01541942,0.07636462,0.04506733,-0.025597828,-0.029278582,-0.011792556,-0.0405833,-0.018387433,-0.032730453,-0.048895076,0.036892667,-0.004150442,0.025532259,-0.011159312,-0.05311607,0.03744436,0.09822369,0.05136247,0.0076148477,0.09430429,0.0063050436,0.011113077,-0.0014471473,0.03157231,-0.09404709,-0.00041661525,0.092877306,-0.047147255,-0.039490595,8.322352e-34,0.029619845,-0.0680914,0.02590989,0.057738476,0.024494132,-0.055159163,-0.032417916,0.049551282,-0.019096034,0.021517247,-0.0048857024,-0.14076091,0.12928222,-0.05175693,0.08067209,0.11035683,0.06642104,0.035189826,-0.122945435,-0.040909797,-0.005332339,-0.0147667695,0.030657897,-0.015620659,-0.080638036,0.03370825,0.029783642,-0.043524638,-0.03304174,0.023336995,0.0066467053,-0.0019485506,-0.10709788,0.0837847,0.05621689,0.009728678,0.051327158,0.081116535,0.0062933746,0.0052029365,-0.026149267,0.068576075,-0.05812485,0.09139529,-0.02758946,0.054994144,-0.021941286,-0.04666672,0.004726666,-0.014298059,-0.04384768,0.035773214,-0.013912631,-0.014514581,-0.060363248,-0.044673033,-0.010026066,-0.097042195,-0.11608027,-0.02320017,0.00595684,0.009854924,-0.063332774,-0.0026065474,0.038161717,0.030537888,-0.09693321,0.05003351,-0.0366503,-0.066538736,0.0612467,-0.058909036,-0.072687164,0.072952166,-0.06986683,0.036419667,-0.058519095,-0.07879589,0.015041004,0.038773958,0.0094916485,-0.041510746,-0.07039904,0.06296526,-0.021676114,-0.016777946,-0.0046645575,-0.049335584,0.051099606,0.058341384,0.02645926,0.057058252,-0.020914204,0.011313368,0.04243452,-1.48473625e-08,-0.022636581,-0.044008095,0.045809675,0.034006838,0.023974543,-0.02532692,-0.0466344,0.028106246,0.05311851,0.036322936,-0.05846123,-0.071578994,0.003143026,0.11088206,0.02440012,0.101588346,0.027031185,-0.014390568,0.047775008,-0.009049448,0.019159524,-0.008563389,0.04530478,0.08030433,-0.0139501365,0.032641303,-0.08136412,0.10326026,0.039872505,0.029126411,0.03183166,0.029768227,-0.025399297,0.031221189,0.016671158,-0.0043743104,0.010647191,-0.012648513,-0.08242713,0.03822455,0.024106376,-0.075588495,0.072088055,-0.0012252284,0.03964696,-0.041105542,0.035189368,0.014630871,0.061384454,-0.03527685,-0.020705169,-0.03674486,0.048533123,0.10911234,0.008241075,0.027033795,0.031669687,0.010607317,0.036813438,0.022163413,0.02430055,0.07809196,0.03434953,-0.062498167} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.326833+00 2026-01-30 02:01:12.917693+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2317 google ChZDSUhNMG9nS0VJQ0FnSUNneHNxMEZ3EAE 1 t 2320 Go Karts Mar Menor unknown Perfecto para pasar un rato divertido. perfecto para pasar un rato divertido. 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.01 {} V+ I3 CR-N {} {"O1.01": "Perfecto para pasar un rato divertido."} {-0.015252858,0.0079429895,0.028811177,-0.011182993,-0.03878091,-0.019403525,0.04983663,0.07061061,0.027059365,0.062259313,0.06384688,-0.027570974,-0.085933104,0.0111125065,-0.026965553,-0.08880711,-0.054101963,0.056859005,0.02661791,0.02951343,0.044050895,0.0029849058,-0.06288571,0.06693579,-0.15530339,0.012391588,0.004538103,-0.030051729,-0.011208594,-0.020328062,-0.006783559,0.09060777,-0.007235999,-0.02823861,-0.0123105105,-0.036619473,-0.07085588,-0.011895212,0.06419471,0.022125943,-0.056495894,-0.059782624,-0.018731847,-0.028544586,-0.034267504,0.01956686,0.05157381,0.08707533,0.085081294,-0.04885318,-0.05891683,0.01666618,-0.021617394,0.015683021,-0.039926738,0.020255402,-0.065240055,-0.054469444,0.03609419,0.03510639,-0.048561014,0.04803851,-0.052428752,0.026115388,0.036095068,0.028505815,0.015506143,0.03039303,-0.028980386,0.086324185,0.0953864,-0.039177656,0.016465876,-0.018461201,0.011702733,-0.016914805,-0.0239195,0.07663308,-0.08061648,-0.003553937,0.04269699,-0.05488977,-0.057916775,-0.0631494,0.06093579,0.02664398,-0.00336132,0.05450544,0.018242223,-0.03947464,-0.05712956,0.026629306,-0.09800329,-0.021983348,0.032417383,0.021839486,0.020579522,-0.10894501,-0.03397745,0.042109583,0.00010060655,0.032314755,-0.020691715,-0.041480657,0.014584849,0.014896705,0.052552048,-0.01561689,0.039876048,0.055761106,-0.03705695,-0.016984046,-0.0017896807,-0.032203317,-0.05254374,0.030761076,0.0032097185,-0.14037435,0.0334138,-0.004677949,0.023462089,0.035268527,-0.022290034,0.018544244,0.0027721024,-0.073633075,0.06990533,-1.0380155e-33,-0.029083373,-0.028096259,-0.014686851,0.033569556,-0.023260398,0.045094624,-0.04568649,-0.07501802,0.027204894,0.013868469,-0.047834385,-0.054982916,-0.02201916,0.08963566,-0.07692515,0.02717914,0.09189203,0.05920469,0.10658264,0.009643773,-0.05111739,0.024246013,-0.0352686,0.0441621,0.02888579,0.09474288,-0.08233765,-0.023878813,-0.021591192,0.053706888,-0.025402527,0.012122128,-0.02780054,0.008819333,-0.026939278,-0.052881923,-0.021828113,0.029906478,0.04585018,0.027264088,0.086205006,0.03598258,-0.033331245,0.0024475728,0.07924468,-0.07393787,-0.025660768,0.020401794,0.082103506,0.052471835,-0.0029683595,-0.05678994,-0.022335306,-0.0827147,-0.016736718,-0.07065628,-0.014835557,0.07381842,-0.021525381,0.017851217,0.027701816,0.0047474448,-0.14809798,-0.058774248,-0.049301017,0.0062675164,0.00645769,0.01566017,0.06899806,-0.020395676,-0.15621188,-0.053725027,-0.032519475,0.0155012105,-0.017752625,-0.030914035,-0.010046837,0.08256412,-0.00065098447,0.011690895,-0.050493363,0.0685518,0.06833944,0.04940659,0.07054606,0.07722846,0.06279054,0.06625794,-0.04066978,0.02876466,0.05980096,0.06379733,-0.009886887,-0.028624207,0.1035304,-8.6711535e-34,0.031045577,-0.021719772,0.0015839456,0.11264098,-0.041647293,0.009810089,-0.08931286,-0.014342611,-0.0024241356,-0.07430968,-0.027011901,-0.06871602,0.12097051,-0.05776497,-0.014698249,0.08414103,0.04822128,-0.0075157033,-0.05332378,-0.009136095,-0.014425498,-0.042185612,0.0972376,-0.053674754,0.00974006,-0.04771892,0.05438955,0.039964374,-0.045026284,0.011236272,0.043461017,-0.01654194,-0.063974105,0.021967761,0.055724822,0.037904277,-0.07915157,0.046961732,-0.026172675,0.05397233,-0.026539423,-0.014806128,0.00027523134,0.030817514,-0.031630524,0.0013171934,0.041594785,-0.07495814,-0.054458,-0.01487928,0.049876582,-0.036701288,0.011184035,-0.05287055,0.06329683,-0.06000959,-0.010875287,-0.063521884,-0.07174743,-0.035706982,0.050480917,0.047336657,-0.07633711,-0.054710604,0.057595056,0.0012740778,-0.08757936,0.0049540377,-0.008822288,0.09867034,0.13934144,0.03797288,-0.07424693,0.016761605,-0.011511767,0.054364394,-0.019348951,0.052662928,0.005858762,0.042911686,-0.09167024,0.025078269,-0.016292784,0.007380839,-0.021566944,0.0040942854,-0.043636944,-0.048359796,-0.034531567,-0.017960604,0.02767746,-0.029226344,-0.012622339,-0.01057906,0.019097056,-1.7745915e-08,-0.03147368,-0.03472153,-0.10668364,0.025376458,0.050276462,-0.07832511,-0.0034806465,-0.04605304,-0.025999231,0.052233856,0.002050949,-0.03384993,0.06880437,0.03555614,0.018484833,0.037875433,0.078132495,0.1241674,-0.009151245,0.04146049,0.06264982,-0.033564623,0.005653255,-0.08753494,0.04351361,0.011032725,0.019929692,-0.019162558,-0.05524201,-0.068788044,0.07348744,-0.081928805,-0.022012819,-0.023701252,-0.04453272,0.052592408,0.007863082,0.038105726,-0.04018342,-0.061951723,0.08940878,0.060736068,0.037345164,-0.03868508,-0.009659105,-0.029237662,0.05165248,0.0685687,-0.0021879922,-0.03215117,-0.029496167,0.06520354,0.06361569,0.032425642,0.00106925,-0.004008192,0.019775363,0.01601814,-0.023229867,-0.047094088,0.07139008,0.18190826,-0.08715618,0.024287648} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.339345+00 2026-01-30 02:01:12.921863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2318 google ChZDSUhNMG9nS0VJQ0FnSUR4bWFhWlJREAE 1 t 2321 Go Karts Mar Menor unknown Fantásticos karts un momento muy divertido fantásticos karts un momento muy divertido 5 2024-01-31 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Fantásticos karts un momento muy divertido"} {0.008711853,0.048613533,0.036681585,0.02702409,-0.026577767,-0.007283384,0.041773617,0.09173785,0.044165876,0.013280495,0.0394407,-0.037916366,-0.066596694,0.016178215,-0.036824603,-0.0713402,0.018944945,0.05510184,0.0022159694,0.05349437,0.108305,-0.049957864,-0.05718059,0.09463804,-0.0790121,-0.008904506,0.008973407,0.029745273,0.0035226867,-0.06653635,0.007914735,0.14732932,0.0356759,-0.019650668,0.0028090645,0.004178909,-0.01678884,-0.05245827,0.03166059,0.01427553,-0.04923747,-0.023485238,-0.01658792,-0.055321272,0.07069729,0.018064963,-0.03391088,0.1008418,0.058346666,-0.012138565,-0.12082514,-0.089752674,-0.0058584297,0.006317185,0.014995562,-0.017727515,-0.06268835,-0.0634053,0.0693674,0.027627949,-0.013328658,-0.03384392,-0.035020795,0.06478353,0.019393506,0.0030429119,-0.018310335,0.05452764,-0.07306743,0.07691964,0.099999525,-0.05544493,0.01828267,-0.03477685,0.06675428,0.029236402,-0.018452877,0.011638903,-0.07732595,-0.041180402,0.08433547,-0.033346605,0.03659254,-0.12991637,-0.0341632,-0.009536892,0.020542663,0.016296668,-0.020968975,-0.059497137,-0.04960839,-0.10110041,-0.0633162,-0.00061039266,0.048948977,0.034980237,-0.053603068,-0.109004535,-0.0262597,0.06314087,0.031228852,0.011384207,0.036517497,-0.011723187,-0.014152703,0.01641169,0.0094451625,-0.050345797,0.056299884,0.039217044,-0.052123904,0.0028650437,-0.072927535,-0.071505114,-0.040479653,-0.038312998,-0.015496056,-0.0370517,-0.021970928,0.010528495,0.074642316,0.072284415,-0.0434073,0.015474329,0.019992702,0.008501721,0.1013136,2.427251e-33,-0.045003083,-0.07992022,-0.03600189,-0.0025288563,0.043669265,-0.09246241,-0.041234855,-0.13584095,-0.010824124,-0.016853288,-0.072399005,0.03303026,0.0015893544,0.025576629,0.0007109454,0.0033204788,0.059006058,-0.03738022,0.12035019,0.03235495,-0.010514091,0.033074897,0.017780516,0.004260321,-0.055617146,0.09873797,-0.019862933,-0.037162155,-0.054418474,0.04639663,-0.075771555,0.0070852344,-0.04918252,0.056743257,-0.056171615,-0.037327427,-0.08082336,0.005289184,0.051122703,-0.006851172,0.030638104,0.014775283,-0.1119698,0.018102277,0.01929259,-0.020494942,0.042873815,0.0960151,0.10969017,0.06877714,-0.024060698,-0.06763546,-0.03670148,-0.0042288164,-0.005140876,-0.012394982,-0.015425266,0.06615337,0.0003629469,-0.055646922,0.036988217,0.020794751,-0.030939974,-0.046144936,-0.039865073,0.015332603,-0.012275333,0.08442409,0.07048779,0.042349797,-0.13172558,-0.01461261,0.02148559,0.039967228,-0.008677573,-0.017865015,0.032471083,0.022087146,-0.032808594,0.062474117,-0.013604288,0.054485403,0.053424083,0.062223133,0.052421805,0.05960115,0.01703951,0.068171345,0.036206882,0.0816971,-0.067766465,0.033798926,0.062291045,-0.0055830274,0.030686267,-3.3916814e-33,0.056184176,-0.017753687,0.029929224,0.11772356,-0.0054624616,-0.0076397946,-0.08185738,0.0075315777,-0.029796265,-0.036124155,-0.068187006,-0.035605583,0.10135719,-0.106748074,-0.044973318,0.03392685,0.076374434,0.012651485,-0.059199497,-0.041826457,-0.0104638925,0.008936185,0.032118622,-0.07315692,-0.06998026,0.014267228,0.011228461,0.027026087,-0.085143775,0.029491203,0.023539808,-0.011933956,-0.08082447,-0.0015032613,0.027051786,0.054078862,-0.06511009,0.083807856,-0.045849293,0.095275424,-0.018050522,0.055568814,0.04347074,0.018978555,-0.014958284,0.06299251,0.01274861,-0.10078545,-0.002257971,-0.06298043,-0.00937167,0.028836234,-0.010501296,-0.050420053,-0.007293234,-0.04028885,0.0032432568,-0.0765159,-0.08514513,0.02491601,0.047566157,-0.004184222,-0.0681793,-0.08505687,0.08837124,0.0077612954,-0.09765161,-0.054392483,-0.025426872,0.085522294,0.086336866,-0.0076236776,-0.047182232,0.019472972,-0.0016737467,0.043782357,-0.10463767,0.082386516,-0.004258041,0.061689347,-0.010931637,0.024313966,-0.05666369,0.018189065,-0.0063361353,-0.011827402,-0.047960617,-0.037537005,0.0050269314,-0.032344494,0.07394928,0.03910476,0.04065657,-0.007957973,0.062454123,-1.8488205e-08,0.037709977,-0.0656675,-0.0415713,0.016032156,-0.00030066865,-0.08100595,-0.07325921,0.013592353,-0.027323961,0.06711355,-0.004564664,0.009279539,0.028455682,0.052166134,-0.025396349,0.00035077048,0.086729586,0.13148618,0.021314867,-0.016152645,0.06557604,-0.047281314,-0.014780498,-0.09287553,-0.02097646,0.027517019,0.037361465,-0.011031265,-0.037541922,-0.025051499,0.05993539,-0.013073843,-0.033733122,0.004272541,-0.070480384,-0.002095355,-0.030011034,0.06933461,-0.02119063,0.008446817,0.08397068,0.01574346,-0.011062292,-0.0019513445,-0.06973739,-0.027858786,0.037985936,0.067031,-0.00044435041,0.02247805,-0.05087657,0.0065802913,0.00623349,0.06125001,0.036717378,-0.005887867,0.041373607,-0.027005304,-0.03696529,-0.055932444,0.037335344,0.072876625,-0.057440788,-0.012572101} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.353432+00 2026-01-30 02:01:12.93239+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2319 google ChdDSUhNMG9nS0VJQ0FnSUR4ZzRxMTRRRRAB 1 t 2322 Go Karts Mar Menor unknown Me gusta mucho me gusta mucho 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Me gusta mucho"} {0.020180892,0.017501866,0.0045215297,0.0068027475,-0.013909563,-0.04334011,0.12370829,0.069140784,0.016332235,0.07132419,0.01793254,-0.10107542,-0.07776371,-0.024353066,0.037456166,0.015139259,0.102567844,0.015214013,-0.12208214,-0.003479482,-0.087774016,-0.015319502,-0.08260749,0.093657784,-0.12300573,-0.0041546705,0.021779248,0.038026985,0.0097556235,-0.07235066,-0.034336615,0.12281999,0.041605342,-0.02703471,-0.039737258,0.03767626,0.066466175,-0.09345109,-0.0057697226,0.053363957,-0.008004761,0.061891057,0.021538965,0.023382233,0.04748025,-0.03880656,0.0127823725,0.021656383,0.10103573,0.021315679,-0.05894086,-0.052346278,-0.050197955,-0.01651644,-0.0022303793,0.058158733,0.013023217,0.03487907,0.06740839,0.023408253,-0.023308147,-0.044505242,-0.028903468,0.06310515,0.02046993,-0.07386902,-0.025877204,-0.00020264872,-0.057214797,0.0028891987,0.09253368,-0.022460815,0.03741643,0.10544133,0.0076265386,-0.019090654,0.029031966,0.011086993,-0.0048294817,-0.020778911,0.008434726,-0.06731944,-0.008049416,-0.07342399,-0.0036246844,0.016277045,-0.018341871,-0.041642975,0.014118966,0.0018016954,-0.05436292,0.017961051,-0.024382893,-0.008594504,0.051947296,0.07373228,0.039875466,-0.062565416,-0.020624356,0.11394987,0.04966791,0.03792626,0.08565952,0.008705705,-0.043608844,0.12044985,-0.016903909,-0.030224122,0.060050994,0.036858324,-0.031168513,0.009481308,0.020163154,-0.03178163,-0.033685353,-0.024021782,0.024947288,-0.044238847,-0.0127806105,-0.0026279795,-0.034304164,-0.03556749,-0.08580564,0.030649591,0.009428007,-0.080212414,0.017429043,-1.4380576e-33,0.019850906,-0.012423643,-0.02992748,0.019928917,0.06414776,0.05687936,0.039200716,-0.046458185,-0.09208336,-0.050298363,-0.03735074,0.034607448,-0.12948823,0.09197472,0.038198322,0.019512415,0.033397578,-0.032913905,0.024794215,-0.023087496,-0.0940191,-0.093593195,6.991653e-05,0.016481265,-0.026308527,0.11060355,0.04181668,-0.1086629,-0.06748531,0.036844946,-0.009028366,0.10305864,0.016376564,-0.057889547,-0.017397657,-0.037041184,0.035732497,0.017760847,-0.0031625808,-0.03182657,0.047295645,-0.0049730553,-0.07856912,-0.019398453,0.0029025893,-0.033560548,0.0244232,-0.018667914,0.031852704,-0.04766207,0.0012823555,-0.08292093,-0.04894609,0.005345072,-0.01054998,-0.030074127,-0.037319265,0.029985493,0.085967876,0.0021963746,-0.02872725,0.08394647,-0.018382402,-0.003390682,-0.04944997,-0.02352294,-0.011206355,0.064138904,0.07359262,-0.008096723,0.000887677,-0.04594093,-0.080408245,-0.0064058965,-0.083422534,-0.050197933,0.095009185,0.01102556,0.063593924,0.0013640855,0.034291778,0.08244843,0.109395996,0.034558132,0.13085,0.08158023,0.016034275,-0.05672264,-0.05250844,0.11182404,-0.052969903,0.04713556,0.13147515,-0.09196238,-0.061955657,1.1942394e-33,-0.042679224,-0.04453671,-0.020058554,0.0478265,-0.037626594,-0.04437774,-0.080791295,0.03614981,0.0052924016,-0.043530513,0.025866868,-0.092038885,0.10916335,-0.01652614,0.051959418,0.02448158,0.08911339,0.0539833,-0.09223239,-0.033053752,-0.019587634,-0.06140693,0.021384872,0.023533262,0.0038666131,-0.06276171,0.032161523,0.0048541087,-0.09767266,0.007140798,0.05337575,-0.06415813,-0.08466239,0.031856857,0.037923303,0.010094392,-0.032866232,0.05913173,0.06258614,0.03898547,-0.06499901,0.027025811,0.018242292,-0.011932614,-0.0084943725,0.02145077,-0.010899023,-0.07587505,-0.013661415,0.0039682654,0.014563029,-0.042545307,-0.01239031,0.06788761,0.0063945726,-0.025301559,0.059545007,-0.07154776,-0.061010994,-0.028764274,-0.010459602,0.0010909208,-0.06957725,0.0035676148,0.081460126,0.0403143,-0.031022392,-0.026622854,-0.01705081,0.036013998,0.050837826,-0.03114245,-0.042010948,0.06287369,-0.03172379,-0.028671622,-0.050943244,0.086534746,0.049305443,0.039623424,-0.0031588443,0.029673494,-0.027792443,-0.009255575,0.06693321,-0.010990379,-0.023569468,0.0070635304,0.038191922,0.008817898,0.0684616,0.013964054,0.03689259,-0.122626215,0.014485331,-1.5035015e-08,0.0199399,-0.058353197,0.05311023,-0.01864659,0.04109231,0.031903625,-0.06005949,0.0046942057,-0.03192233,0.03171118,0.10755738,0.004594804,0.016805984,0.016343107,0.041006394,0.08898131,0.04535998,0.0006443549,0.002901038,0.005664046,0.05672103,-0.0060852263,-0.008827305,-0.008546429,0.02680311,0.006026683,-0.033796124,0.07614228,0.008338791,-0.0760991,-0.005476447,0.017212234,-0.064163275,-0.06721624,0.01862504,-0.023632182,-0.019721182,-0.01532678,-0.07923651,-0.012220427,0.038433865,0.040906478,0.07534786,0.0066584023,-0.06146348,-0.04366326,0.04304338,-0.008185177,-0.028375499,-0.0131689375,-0.022625757,-0.013230419,0.08244717,0.048873328,-0.011419026,-0.020148184,0.07065906,0.0216248,-0.035938643,-0.05036347,0.12601228,0.07294861,-0.021537872,-0.0650324} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.364737+00 2026-01-30 02:01:12.93949+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2320 google ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE 1 t 2323 Go Karts Mar Menor unknown Circuito estupendo y muy atentos circuito estupendo y muy atentos 5 2026-01-30 01:52:39.833374+00 es v5.1 O1.02 {P3.01} V+ I3 CR-N {} {"O1.02": "Circuito estupendo y muy atentos"} {-0.044896416,0.03217855,0.0036447071,-0.020170145,-0.034235515,-0.029270101,0.07167897,0.06180133,-0.02535447,0.024820587,0.062275138,-0.0016575826,0.00018588651,0.0034535485,0.0033952466,0.11474759,-0.00423942,0.055985063,0.03096786,-0.03533443,0.066593245,-0.07639004,-0.07271215,0.11126314,-0.07509432,-0.023320861,0.01114124,0.059827928,-0.0721899,-0.08747229,-0.10070631,0.062940225,0.07962243,-0.030055197,-0.03266562,0.0011676173,0.08819102,-0.061418425,-0.023495307,-0.00101472,-0.10390376,-0.07331122,0.023378173,-0.053760163,0.008475957,-0.057529174,0.016383413,0.02863022,0.05769007,-0.105554685,-0.006301448,-0.055093903,0.025499286,0.01136985,-0.053093217,0.02923401,-0.008076255,0.03325986,0.045024186,0.009139956,-0.012039085,0.028660975,0.017850349,0.07713996,0.049850952,-0.030737586,0.03710276,0.034360133,-0.06529573,0.018422363,0.07494305,-0.059723042,0.035437178,-0.017750748,-0.010696488,0.033349983,-0.006024212,0.021863457,0.022732431,-0.07665516,-0.027105335,-0.06377366,-0.056501336,-0.046978425,0.032418016,0.0262087,-0.04444214,-0.008513494,0.002357674,-0.014852144,-0.034738988,-0.01945394,-0.013360151,-0.00965736,0.028836055,-0.018009946,0.037097376,-0.05312943,0.0011832034,0.067193575,0.058623247,0.049967524,0.03361968,0.005550934,0.0002516639,0.028741857,0.015872005,-0.025338707,0.042581562,-0.018255906,-0.05132265,0.022499524,-0.06226736,-0.020504002,-0.013735591,-0.037001334,0.003145009,0.023918234,-0.028825002,-0.063050285,0.042773485,-0.0063703205,-0.08827113,0.0035140272,-0.0039287573,-0.01215953,0.11505426,3.7435267e-33,0.0021019005,-0.058390677,-0.023543935,0.0089701535,0.049897157,0.04207746,-0.038953733,0.0105325375,-0.052193746,-0.013211741,-0.07467704,0.07412981,0.017894564,0.040380824,0.14112659,-0.07915607,0.036524996,-0.017601816,0.110171296,0.014362662,-0.01783302,-0.12306535,-0.0029151812,0.06669689,0.00050792046,0.07806892,-0.038128924,-0.028978003,-0.07570369,0.033081852,0.046657186,0.040763818,-0.009823903,-0.002395262,-0.07686518,-0.03526164,0.066547014,0.0024198384,0.044309024,-0.0754248,0.012386243,0.014310163,-0.044530082,0.040232748,0.025622275,-0.010512418,0.0128955385,0.036829747,0.18050115,0.07614965,-0.12278671,-0.13004893,-0.0025899059,-0.04560905,0.048188884,0.017213255,-0.053424496,0.03813501,0.07191514,-0.024976207,-0.018626621,0.059949115,-0.02892897,-0.055344034,-0.0966353,0.068538524,0.044156525,-0.07437249,0.06911504,0.018642673,-0.1327397,0.004292449,-0.06708752,0.10939097,-0.034397647,-0.007777985,-0.0618772,-0.03020519,0.026870033,0.041471273,-0.040333178,-0.017160544,-1.4612881e-05,0.07046361,0.11853776,0.11549643,0.017443111,0.04973896,0.028588455,0.12564792,-0.026826592,0.066908,0.064886704,0.008113632,0.06925705,-4.8288654e-33,-0.018103732,-0.02216841,-0.0016918489,0.03442277,0.0053470186,-0.00041130307,-0.05687238,-0.038267594,0.015847359,-0.036880758,-0.07225663,-0.08362749,0.0867553,-0.053538896,-0.0054765195,0.029332211,-0.0267593,-0.041356526,-0.04807347,-0.0020785746,-0.008555377,0.050975926,0.022984926,-0.056150816,-0.05697997,-0.008015625,-0.12696195,-0.0033220118,-0.065076545,0.030777195,0.004510207,-0.0051371856,-0.06946675,0.12224759,-0.015801251,0.038744766,0.045906022,0.06526248,0.0055391905,0.02391194,0.028461386,0.057323713,-0.0074029197,0.032051824,-0.07059762,0.04517637,-0.03494927,-0.050022654,-0.056009125,-0.02667199,-0.044287346,-0.012113275,0.0033704555,-0.05120684,0.04546496,-0.036951482,-0.06552035,-0.018700294,-0.09404932,-0.032932132,0.07837978,-0.027708815,-0.038813733,0.0007691428,0.05329342,0.03854064,0.047903113,0.05064054,0.026926057,0.036932666,0.075142905,-0.022004778,-0.07169912,-0.063255966,-0.022082783,-0.07665058,-0.15525001,0.018612437,-0.0162052,-0.02202556,0.02757574,0.009976785,-0.020873066,-0.057731982,-0.06791711,-0.0432494,0.03528908,0.06356085,0.04292336,-0.0038259446,0.001161332,0.051051334,-0.08958873,-0.002720008,-0.016870353,-2.320575e-08,0.027705813,-0.015925156,0.019348139,-0.008400172,0.047309373,-0.081143886,0.03870283,0.032889377,0.0030609395,-0.00954326,0.037413973,-0.014076697,0.02579313,0.029676778,0.023357203,0.032887366,0.015034854,0.10949881,-0.011059656,0.023136912,0.08943815,0.003969639,-0.020099692,0.008226022,0.09953018,0.021458881,-0.009949603,0.010279525,-0.051527455,0.03246708,0.022320256,-0.02575207,-0.026684942,-0.04214063,0.035687704,-4.71324e-05,-0.03652291,-0.031958487,-0.023220452,-0.0906162,7.476933e-05,-0.06610334,-0.008754038,0.014287951,0.02905402,-0.020378362,-0.036642328,-0.0023373042,-0.029665448,0.010552958,-0.077079855,-0.06677885,0.041171495,0.064766645,0.030454742,-0.022455012,0.07114285,-0.0037043556,-0.029087273,0.003826359,-0.005252088,0.10188582,0.045458633,-0.08595408} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.377129+00 2026-01-30 02:01:12.943114+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2322 google ChZDSUhNMG9nS0VJQ0FnSUNXcU1iekNBEAE 1 t 2325 Go Karts Mar Menor unknown Rigtig god oplevelse for hele familien rigtig god oplevelse for hele familien 5 2023-01-31 01:52:39.833374+00 da v5.1 O1.01 {A3.01} V+ I2 CR-N {} {"O1.01": "Rigtig god oplevelse for hele familien"} {-0.069060765,0.104807585,-0.044307146,-0.030057726,-0.06386315,0.05338181,0.08503834,0.08122598,-0.008317205,-0.010134049,0.031970024,-0.035326794,0.027537307,-0.032053534,-0.04112437,-0.0730139,-0.14437637,0.05287466,-0.05156122,-0.05425737,-0.027144615,-0.0052596573,0.0025376417,-0.054683074,-0.06341869,-0.00089442235,-0.031213796,-0.024207346,0.030899426,-0.0058312686,0.095897034,0.029488316,0.026030004,-0.048922688,-0.04200572,0.10551883,0.076281376,-0.02189601,0.028377863,-0.0036096636,-0.013674792,-0.004566376,-0.10420682,-0.09767456,-0.011625829,0.011589406,-0.029016033,0.05521692,-0.021090483,-0.011262271,-0.06815727,-0.04496192,0.035549454,-0.07323328,0.026588248,0.014681591,-0.0078762425,-0.07797227,0.0299806,-0.06241007,-0.0191479,0.03373006,-0.08104106,-0.0034547301,0.024426922,-0.0117822485,0.04023815,-0.013294045,-0.06668486,0.01957154,0.08241008,-0.05546282,-0.019135766,0.05866041,-0.048456177,0.053017247,-0.09663775,-0.0077906796,0.043686204,-0.12388618,-0.00602188,-0.04430238,0.0014894449,0.04039248,-0.0076377694,-0.0033548144,0.0011008924,-0.064870134,0.013525184,0.041253,0.0057719946,-0.00069988845,-0.053165626,-0.038494576,0.029204698,0.010598022,-0.034901217,-0.036891304,-0.049247418,0.09691718,0.022295848,0.031228062,0.061454017,0.15811457,-0.015932728,-0.021849362,-0.05909823,0.0060444456,0.013158874,0.048104867,-0.025690917,-0.109422915,-0.049356643,-0.15555382,0.011134423,0.03113581,-0.0033659635,-0.05516212,-0.03666739,-0.055949997,-0.039224703,0.06671348,-0.0005967861,0.045057673,0.08036165,-0.12834026,-0.0066581783,3.477452e-33,-0.050585337,-0.035480335,0.053879086,0.002824699,0.014824775,0.023671031,-0.046454474,0.025451794,0.03458393,-0.096749954,-0.065056235,0.04811159,-0.035744846,-0.018698936,-0.005906815,-0.05956456,0.00035803887,-0.0352752,0.0150829395,0.009694759,0.026678918,-0.05537212,0.050374184,-4.0695966e-05,0.037524696,-0.056150373,0.03230362,-0.016903402,-0.03080405,0.052397434,0.05265126,-0.027373463,0.027567992,-0.064605206,-0.06559345,-0.022134878,-0.00067613035,-0.096805006,-0.02518452,-0.0017867704,0.04615316,-0.0067755925,0.08503479,0.02019698,-0.017805446,0.06557386,0.08065777,0.0045839697,-0.042999193,0.04703423,0.013619136,-0.0006860893,-0.035370775,-0.08975847,0.00374385,0.10159129,0.0023379102,0.050169352,0.066364855,-0.02039679,0.07389004,-0.057745535,0.035255633,0.045444325,0.00259093,-0.0416195,0.029342005,0.0037013327,0.025568338,0.049763177,-0.055369418,-0.029096643,-0.0037770325,0.083129875,-0.028595649,0.096653655,-0.037486617,0.023646522,-0.063284315,-0.013239036,-0.017952686,0.013954401,-0.020686857,0.017076688,0.085871875,-0.04014009,0.038440235,-0.06825758,-0.021703776,0.05247397,0.04352982,0.02682732,-0.0041771154,-0.117563814,0.0016074297,-4.8648506e-33,-0.006380469,-0.014864953,-0.1086549,0.051785607,-0.020389298,-0.040000737,-0.028133534,0.049404897,0.048585817,0.004579506,-0.035224084,-0.028247656,0.14048387,-0.0535938,-0.09574807,0.036380276,0.030522201,0.04031174,0.021865526,-0.024756454,-0.011221802,0.082062684,0.011884586,0.019542545,0.0134513555,-0.047547914,-0.073718645,0.034592934,-0.06986989,-0.019187799,0.06042519,-0.026876742,-0.02669014,-0.01666774,0.0010368292,0.027163876,0.08160676,0.08156151,0.038964577,0.0052686194,0.060023896,-0.014983196,-0.0048378524,0.0238396,-0.0035781993,0.031110471,-0.017774936,0.031062417,0.032900892,-0.036396567,-0.058405556,0.020880727,0.034399346,-0.030456496,0.09224221,-0.030540183,0.0597808,-0.08574724,-0.08888801,0.0148926955,0.12705012,0.0029718692,0.02990108,0.087972425,0.009823162,-0.016209472,-0.09454096,0.0017021522,0.031999897,0.12161081,-0.00054495776,-0.11080741,-0.0042328215,0.0356184,-0.033750128,0.09295381,0.024167733,0.05529806,0.028825734,-1.9288367e-05,-0.023614476,-0.07033507,-0.03235729,-0.017660175,-0.062456917,-0.12598528,0.071775965,0.049641844,0.057894345,0.008648898,-0.027162246,0.018858818,0.038966704,-0.036612384,0.0061420733,-2.3316364e-08,0.04549969,-0.01330141,0.07579295,0.045020264,0.088657,-0.026662312,-0.014551102,-0.0904865,-0.059276506,0.050795753,-0.04157678,0.01775889,-0.03815501,-0.0064881677,0.0044432473,0.024118515,0.030900888,0.018216379,-0.028229788,-0.034651153,0.018246438,0.04479452,0.026989872,-0.032546796,0.021241449,-0.013544524,-0.016455147,-0.058841392,-0.020559225,0.004564288,0.013588549,0.028510401,-0.06916417,-0.08131051,-0.011673179,0.066682205,-0.0803187,0.06063935,-0.0063537024,-0.016340898,0.09466537,0.08052153,0.050779562,-0.011420533,0.00051532127,0.05864819,0.011003832,0.08443942,0.0069474303,0.024217948,-0.11396174,0.0974321,0.042724617,-0.03203004,0.015457034,-0.023611905,-0.024574947,0.025406366,-0.03156806,-0.00061431655,0.031528737,0.06815342,0.06351152,-0.046162583} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.401011+00 2026-01-30 02:01:12.950521+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2323 google ChZDSUhNMG9nS0VJQ0FnSUNpaVpQN0VBEAE 1 t 2326 Go Karts Mar Menor unknown Muy bien. muy bien. 5 2021-01-31 01:52:39.833374+00 de v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy bien."} {-0.07754141,0.0118104275,0.06666013,-0.05667768,0.03929635,0.0139407255,0.07729096,0.03620175,0.014940472,-0.03163479,0.07691097,-0.016232818,0.052994117,-0.0386757,0.02420689,0.0011480465,0.02780233,0.024162123,-0.07134696,0.018774293,-0.006623857,0.03446153,-0.006210693,0.07925819,-0.08115447,-0.04647822,-0.018937279,0.039809026,0.011165392,-0.062594555,0.01530444,0.07046624,0.015413884,-0.033662286,-0.0049222675,-0.041728135,0.043062374,-0.11094542,0.036245514,0.04810535,-0.07996681,0.019108389,-0.08660239,-0.019175045,0.015609785,-0.019772278,0.04288463,0.026091674,0.018516378,-0.023485856,-0.03493748,0.02213243,0.009541653,0.01323989,0.053269617,0.049593672,-0.045896053,-0.030584602,0.015786499,0.024983197,-0.015823102,0.062010117,-0.051033184,0.025766727,-0.004672702,-0.03333353,0.060210306,-0.011186305,-0.02559559,-0.011679935,0.06929534,-0.06283929,0.003928282,-0.046027,0.0014377403,-0.022823965,0.04805682,0.0070566093,-0.013350967,-0.04538198,-0.050285775,-0.055571277,-0.049909003,-0.026145441,0.07236542,-0.0057066334,-0.029462649,0.03233412,0.045476593,-0.009899285,-0.09140755,0.01821991,0.0064138365,0.02690473,0.0100769475,0.033103608,0.025601616,-0.062153723,-0.05129677,0.1416613,0.02723628,0.06477452,0.11118841,0.024870953,0.0058435607,0.018883372,0.038772147,0.015792074,-0.019093823,-0.022753362,0.0043229307,-0.019904988,0.0042950297,0.019342922,0.021556158,0.021908473,-0.013846146,-0.0030860454,-0.027390413,-0.06734333,0.07238224,0.0357873,-0.09598414,-0.024254313,-0.05383705,-0.039407037,0.040050484,-4.78265e-33,-0.0057033673,0.034533538,0.034457833,0.048393007,-0.009335074,0.001297011,-0.04677431,0.05799802,-0.12985732,-0.034720205,-0.010233601,-0.026012551,0.008105912,0.014339958,-0.017198404,0.022814145,0.07275599,-0.06924092,0.11697259,-0.009297097,-0.050646942,-0.0921991,-0.0012762137,0.03571738,0.04740866,-0.025383739,0.02710573,-0.036282185,-0.09794093,0.030889167,-0.06448579,0.015049939,0.032831557,-0.026900543,-0.04138865,-0.039320458,-0.0039141476,0.08652877,0.0066932384,0.035266757,0.024530021,0.007884827,-0.038046688,-0.04279497,0.0153862955,0.09582089,0.02041269,0.0177052,0.026850404,-0.058910213,-0.004859228,-0.034498077,-0.13421318,0.036239684,0.0032188618,-0.015217852,-0.016927447,0.0048342724,-0.06294226,-0.04280507,0.10973422,-0.028766287,-0.014228942,0.020779101,-0.11119855,-0.020347666,-0.030682111,0.09257864,0.08889807,0.015377984,-0.076623105,-0.023633229,0.022015553,-0.027013214,-0.0071184146,-0.017982448,-0.02919158,0.012276844,0.11684508,0.034942348,0.02398733,-0.018572386,0.03676774,0.031205064,0.027198836,0.06689663,0.05665955,0.016959667,-0.052697226,0.040906765,-0.06815455,0.035572447,0.106500566,-0.031240012,-0.11082184,3.821562e-33,0.05437084,0.02567154,-0.008489736,0.121224575,-0.013643985,0.0024884422,0.04442609,0.047128484,-0.09942437,-0.02666892,0.024342325,-0.12703486,0.093056895,-0.025151318,0.045720134,0.12571132,-0.00607129,-0.021990322,-0.067064464,0.003787086,0.046199474,0.00669178,0.043244056,-0.036868483,-0.053120155,0.0033810711,-0.03229351,0.03490872,-0.08312593,0.031495906,-0.016752876,-0.061431736,-0.03915087,-0.02303983,0.025434278,0.058133435,0.031525146,0.05348426,0.009784427,0.01858753,-0.05655808,0.08248384,-0.030154878,0.1212815,0.023161694,0.060129546,-0.0049686064,-0.14527424,-0.048176486,0.011282703,0.043143984,-0.010721062,-0.030092569,0.014715302,-0.02386314,-0.01940768,-0.061346285,-0.04552058,-0.12188242,-0.08271838,-0.044075873,0.040977016,-0.104720585,-0.032746926,0.103282854,-0.016593926,-0.063997895,-0.005456751,0.03113123,-0.04769796,0.11132748,-0.023768306,-0.02961348,-0.036313295,-0.07103568,-0.03709879,-0.074775785,0.009971648,0.022191018,0.114359334,-0.013457923,-0.038602628,-0.05965838,0.015785923,-0.015400224,-0.0032322998,-0.0067591313,-0.030709438,0.0687186,0.028267032,0.018037863,0.0061474033,-0.016832218,-0.047426064,0.07732685,-1.4446111e-08,0.0012433459,-0.07902176,-0.0600267,0.01882375,0.015815008,-0.04406482,-0.087695844,0.07860977,0.060386423,0.078691155,-0.060428526,0.011342097,-0.04931832,0.050903156,-0.025450438,0.10174514,0.005193489,0.058481712,0.016890455,-0.053767037,0.05830777,0.016711203,0.012967226,0.024645826,-0.007852227,0.0053075817,-0.10041811,-0.023988584,-0.04737514,0.027807958,0.004973702,0.032903153,-0.028702123,-0.06251657,0.02717334,-0.010348221,-0.028679473,-0.04172415,0.0051032854,0.053676333,0.076768704,0.02363506,-0.021181839,-0.046630487,0.09022447,-0.11747115,0.017832154,0.025145892,0.042555075,-0.018005941,0.052591927,0.026470196,0.0662093,0.09664085,0.0029975248,0.026482506,0.024930345,-0.0006383324,0.008398016,-0.030542703,0.078041404,0.12192633,0.05189931,-0.13347642} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.415438+00 2026-01-30 02:01:12.956338+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2324 google ChdDSUhNMG9nS0VJQ0FnSURZazh5bmdnRRAB 1 t 2327 Go Karts Mar Menor unknown Algo caro. La verdad algo caro. la verdad 5 2020-02-01 01:52:39.833374+00 es v5.1 V1.01 {} V- I2 CR-N {} {"V1.01": "Algo caro. La verdad"} {-0.056836925,0.0626669,-0.008714048,-0.010869612,-0.06244307,-0.013278792,0.020960018,-0.0056737075,-0.010897582,0.028970484,0.071980454,-0.03504602,-0.059054956,0.020919196,-0.059331466,0.016971497,0.02173702,0.0481332,0.03735244,0.06113749,0.045125544,-0.02363133,-0.025643378,0.10155421,-0.03741742,-0.03635849,0.0035952653,0.048987005,-0.06691498,-0.039427824,-0.016786339,0.109505124,-0.0053106644,-0.047339953,0.019874657,-0.06276481,0.028286202,-0.022345664,-0.0681207,0.081955396,-0.07036928,-0.06493926,-0.013611744,3.544375e-05,0.055646755,-0.030453393,-0.009585751,0.11484545,0.05279967,-0.05062757,-0.027514456,-0.071570545,-0.10948714,0.035317127,-0.008015657,-0.008751187,0.014592577,0.05514321,0.028824996,0.041879717,0.054542374,0.004238757,-0.05307157,0.07519952,-0.02814901,-0.012679382,0.014188376,-0.0043551032,-0.14706798,0.120529644,0.11449536,-0.07469957,0.042023823,0.015942542,-0.00943796,0.038835794,0.023826338,-0.07159999,-0.005526555,-0.04785872,0.027043754,-0.04186413,-0.008162901,-0.016130947,-0.048709553,-0.01707135,-0.007955329,-0.02118611,-0.0412693,0.026580095,-0.032816257,0.01574706,-0.10980167,-0.05953595,-0.0126143545,0.016334051,0.040685825,-0.048100777,0.019570103,0.039346922,0.049375482,0.04848466,0.056782585,-0.024126008,-0.0050765807,0.09684851,0.027499797,-0.0027774575,0.017734708,-0.003614163,-0.05749984,0.020084172,-0.021995096,-0.05117913,-0.09077633,-0.007867564,-0.014475133,-0.11976731,-0.037754122,-0.050483074,0.008123563,-0.009407872,-0.036146667,0.03157849,0.04254279,-0.044900507,0.06983344,-7.742679e-34,-0.014840777,-0.11969681,-0.024015903,0.020938639,0.05731911,0.023060506,-0.073414035,-0.045110777,-0.09401862,0.0151411155,-0.04363587,-0.0052019665,-0.015897298,-0.011366691,0.070057295,0.114763655,-0.030618357,-0.04832426,0.012458372,0.021967417,-0.049324088,0.030628068,-0.042865276,0.023818722,-0.0075858575,0.07814608,-0.01340133,-0.09543833,-0.091516174,0.045344934,-0.013874259,0.089523174,-0.059937295,-0.0016128041,-0.05226687,-0.035464507,0.014393166,-0.040070638,0.019786572,-0.04485207,0.100478716,0.027108412,-0.022868171,-0.0012534215,-0.0069275824,0.020319773,0.040633585,0.053041313,0.07097537,0.04928078,0.012934424,-0.08314894,-0.0942285,-0.032139882,-0.008166668,0.04476469,-0.110847674,0.019277647,-0.0030330736,0.0065775556,0.019596955,0.0998816,0.038001005,0.012486665,-0.046500813,-0.049916424,0.016342571,0.036125463,0.08306574,-0.06599259,-0.016040359,-0.0333008,0.051986378,-0.010399563,-0.016759802,-0.03225615,0.049092367,0.04627548,-0.0066990014,0.02202945,-0.03505391,-0.003112256,0.07596709,0.03504775,0.10294991,0.17259791,-0.002873912,-0.029869914,-0.026966937,0.10733039,-0.06261052,0.040376928,0.038155086,-0.04748592,0.051071003,-1.599149e-33,0.017792638,-0.046218816,0.041905098,-0.0022516516,0.016732262,0.030798137,-0.07949972,-0.017152933,-0.003317739,-0.06353516,-0.0070327916,-0.09572107,0.11521217,-0.049755055,0.0034358704,0.013790911,-0.008109807,-0.080953926,-0.059257016,-0.03706375,-0.034756918,-0.019828372,0.034594726,0.11350338,0.024077205,-0.07334701,0.047186654,0.07766264,-0.073506065,0.0013575666,0.048324235,-0.054450445,-0.037861988,0.0511071,-0.00546383,0.07956261,0.00983758,0.06424547,0.0022746846,0.03140194,-0.047026396,0.020591775,-0.06491501,-0.017205877,-0.013641076,0.06613483,-0.054324392,-0.075177066,0.014701521,-0.06806208,0.09368141,-0.013158753,-0.014062332,-0.002110046,0.041637108,0.035639253,0.0016276283,-0.06330461,-0.033528954,0.08829538,0.0836801,0.039653677,-0.041938398,-0.059363518,0.0064775688,0.033583786,-0.043026254,0.0026011271,-0.011556521,0.02320743,0.16679442,0.034755018,-0.13863741,0.08542471,-0.09924421,-0.028927667,-0.023920981,0.042041924,-0.034627218,0.010034835,0.030031634,-0.0065611205,-0.00042138662,0.070008375,0.006722346,-0.008813637,-0.0005658162,0.030424424,-0.021005234,0.05419826,0.0006514515,0.056706056,-0.08686972,-0.019825783,0.003002964,-1.8244094e-08,0.028651386,-0.0015910569,0.02017007,-0.0388796,0.07464327,-0.02535439,-0.014734597,0.026877731,-0.030966232,0.004263481,0.07452435,0.025431514,0.026230102,0.083577104,-0.01450077,0.049129426,0.073160574,0.050024137,-0.012563025,0.034473423,0.043761972,-0.02090819,-0.07753087,-0.081976645,-0.036051955,0.0011803113,0.0039246553,0.017522642,0.019984558,-0.034969132,-0.01644507,0.013210347,-0.0224323,-0.07787384,0.029411193,0.010972173,-0.06576511,-0.02192556,-0.03366498,-0.077799104,0.055357147,0.038037412,0.06995922,-0.04051863,-0.041574232,-0.10866703,0.02784153,-0.028996054,0.020146064,0.02189919,-0.014851817,-0.021978153,0.013370238,0.04470214,0.08037509,-0.025706274,0.029628089,0.0022763107,-0.050500467,0.020159243,0.04252312,0.1006545,0.0021359911,0.012249991} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.427011+00 2026-01-30 02:01:12.962284+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2325 google ChdDSUhNMG9nS0VJQ0FnSUR1eE8ySzh3RRAB 1 t 2328 Go Karts Mar Menor unknown No se puede ser mejor👍💯\nEnhorabuena no se puede ser mejor👍💯 enhorabuena 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "No se puede ser mejor👍💯\\nEnhorabuena"} {0.048629202,0.029230906,0.010333081,-0.037926916,-0.07669811,0.004305282,0.10677079,-0.04792044,-0.016006405,-0.025672698,0.1057208,-0.07673419,0.008539557,-0.048206866,-0.04858718,-0.016918877,-0.030989641,0.05732505,0.0779199,0.076517105,0.06633555,-0.04928529,-0.13516057,0.08569733,-0.055567205,0.06080086,-0.023422455,-0.03675975,-0.029199796,-0.08309214,0.013015106,-0.07910114,0.028554216,0.029858168,0.024197951,-0.062272877,0.033718504,-0.009821849,-0.03155712,0.04848301,-0.094382964,-0.03573855,-0.07218338,-0.038543932,0.027233098,-0.0450391,0.022022486,-0.0031931961,-0.02300034,0.010196806,-0.05884516,-0.016562738,0.044335898,-0.0043072565,0.041946866,0.0058924463,0.005429053,-0.021208603,0.03455186,-0.01843451,0.0098604895,0.012493076,0.0072514913,-0.026275538,0.045491982,-0.039075382,0.07054604,-0.02253688,-0.11180057,0.058864117,0.013881637,0.01108264,0.007942308,-0.03631422,-0.06370025,0.06528955,-0.025123328,-0.035490837,0.0186014,0.045976553,-0.0726245,0.021186883,-0.06253792,0.053132296,0.009561358,-0.0237506,0.04575603,0.0123038115,0.016505409,0.028675148,-0.006971944,0.07304027,-0.07025925,0.044571936,-0.07893903,0.029285436,-0.03643924,-0.018972233,-0.050136946,0.032097716,0.014664915,0.08704541,-0.008190617,-0.007855594,-0.094734125,-0.0026100494,0.033272304,-0.031941798,0.091070965,-0.006520341,-0.1089327,-0.098527476,-0.05647815,-0.018151846,0.010193557,0.0057848278,0.015899131,-0.07650524,-0.0409318,-0.026511578,0.035608135,0.038008302,-0.061170075,0.0013502806,0.00092301576,-0.022828847,0.042746153,2.1161549e-33,-0.03773324,-0.02129005,0.04766236,-0.003339604,-0.01179711,0.009424778,-0.02658111,0.051486656,-0.020997766,-0.045881838,-0.047649622,-0.015633801,-0.049975436,-0.0149384765,0.028761625,0.06583921,0.008114354,-0.021452162,0.058098514,0.06222068,-0.031530906,0.00618599,-0.07318335,0.030408684,-0.058387667,-0.045245394,-0.0069926963,-0.033214025,-0.06513689,0.08146118,0.03705718,-0.008572703,0.046760716,0.0057794508,0.057238787,-0.1601926,0.07331628,0.08810781,-0.07400699,-0.027070781,0.016829966,0.03249974,0.0008815436,-0.033191916,0.060183886,-0.011392497,0.029546015,0.014639318,0.022436531,-0.029598754,-0.027438574,0.01895255,0.02869938,0.0138357,0.11378194,0.022613736,-0.079093136,0.09234914,0.046165902,-0.059135072,0.0755434,-0.043381903,0.012467553,-0.024878213,-0.012691778,0.005986174,0.04949786,0.06817496,0.09151297,-0.009429197,-0.093694456,0.051288906,-0.026903009,0.03470748,-0.042645432,-0.03807441,-0.09135742,0.010841535,0.015273685,0.027074907,-0.09197051,0.015597199,0.015128514,-0.014107433,0.1659249,0.06839702,0.018959463,0.038416054,0.0057897344,0.016384436,0.062317394,-0.0037073658,0.03367732,-0.11803883,0.0073632663,-2.7036965e-33,-0.0060490933,-0.03234448,-0.034071222,0.011646109,-0.022751685,0.07887644,-0.043587685,0.09739714,0.009199669,0.012371989,-0.009668699,-0.06697719,0.09195055,-0.0155076515,0.01987114,0.067599885,0.08966396,-0.0041745645,-0.084428184,-0.043494627,-0.014710782,0.0042817793,0.033059675,0.03498921,-0.025042228,-0.017386347,0.068773374,0.11703898,-0.079654664,-0.047691163,0.058125984,0.007110163,-0.03597144,0.07770649,-0.080206126,0.010626995,-0.00044665934,0.020644566,-0.026639523,0.037249498,-0.04772493,0.03926768,-0.012870899,0.026685089,-0.013062292,-0.010359243,-0.077529676,-0.053945813,0.06180529,-0.04042965,0.08455304,-0.025767332,0.026575787,-0.078044035,0.12709697,-0.064593494,-0.022563634,-0.010641441,-0.05045136,0.009402637,0.07912853,0.04783957,-0.063165694,0.04239612,0.040188726,0.008506108,-0.025742482,0.12197443,0.038601995,-0.012726971,0.063208625,-0.07317122,-0.092678465,0.052963033,-0.0602175,-0.0557227,-0.053041406,0.06153839,0.056670047,0.025776975,-0.08156678,-0.032799657,0.002260935,-0.057269134,0.037430957,-0.071150996,-0.035363454,-0.0073585995,-0.04188425,-0.0012637504,-0.024795894,0.0363454,0.012810235,-0.021183359,-0.04217089,-2.0879563e-08,0.08478466,-0.106953576,0.019958522,-0.044624556,-0.010798223,-0.08002969,-0.06847552,-0.021937346,0.019059302,-0.0136833945,0.14464672,-0.012112023,0.00784113,0.11574768,0.016260935,0.03793261,0.11067498,0.0028717613,-0.015278806,-0.10696955,-0.033745766,-0.01839421,-0.025361821,0.005522284,0.06694419,0.033810068,-0.019020053,-0.03300962,0.013894944,-0.034380168,-0.00012255258,0.010374587,-0.0053157397,0.00090406224,-0.1178117,0.0051326575,-0.06024173,0.01665586,-0.016100086,0.034019675,0.073419996,0.027338894,0.059812237,-0.046623725,0.011246493,0.03843112,0.024652356,0.04010292,-0.051328033,0.0022943062,-0.05179145,-0.017464831,0.06770473,0.037979472,-0.017543565,0.061145935,0.03483513,0.009696482,0.0288958,0.0077921543,0.0826979,0.036261138,0.02875908,0.013892934} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.437954+00 2026-01-30 02:01:12.979374+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2326 google ChdDSUhNMG9nS0VJQ0FnSUNXa3FEbXRRRRAB 1 t 2329 Go Karts Mar Menor unknown Buen sitio pata disfrutar de las karts buen sitio pata disfrutar de las karts 5 2023-01-31 01:52:39.833374+00 id v5.1 O1.01 {} V+ I2 CR-N {} {"O1.01": "Buen sitio pata disfrutar de las karts"} {-0.032511067,0.020743703,-0.019053036,0.016280098,-0.1081613,0.008057015,-0.009939028,0.010965876,0.06137722,0.015902985,0.04408006,0.009511452,-0.05331901,-0.0400014,0.017503893,-0.038885232,-0.07807656,0.05647087,0.0035741155,0.021628523,0.014452403,-0.046570446,-0.06741806,0.13930222,-0.044031657,-0.010674652,0.0469018,0.019385953,0.018428916,-0.061834138,-0.021181922,0.06433527,0.03673753,-0.013801311,0.039534345,-0.035965342,0.028222302,-0.09425726,0.038281832,-0.020412492,-0.051045485,-0.086305566,-0.046146147,-0.011530019,0.04652864,-0.030180214,-0.04179849,0.090460256,0.019318422,-0.007618996,-0.032463197,-0.06763301,0.023317004,0.002650421,-0.010543188,-0.07888452,0.005731139,0.06488725,0.10235249,0.06709815,0.07436384,0.026623527,-0.121110864,0.05996881,-0.04917301,0.013466836,-0.024453701,-0.036327213,-0.13321327,0.124998555,0.06414857,-0.06557564,0.028305449,0.047467716,0.039926205,-0.042334177,-0.02464205,-0.052569017,-0.03023601,-0.04380654,0.09578062,0.026256658,-0.0319828,-0.024970273,-0.0617492,-0.062123053,-0.023834154,0.0066218446,0.0111929765,-0.053929675,-0.08439087,0.044678655,-0.10037524,-0.049412627,0.018599264,0.024569603,0.0034716972,-0.011084465,0.06591622,0.038645737,0.07626198,0.05121459,-0.0015982885,0.039994013,-0.097286,0.001893807,-0.030435167,-0.054164093,-0.009162494,0.054885294,-0.06509229,0.0134304175,-0.06583372,-0.02858792,-0.12532721,-0.02038225,0.016005151,-0.077730685,-0.014199229,-0.0366789,0.036323138,0.0030068036,0.025508335,0.012514789,0.061761703,-0.09590144,0.053382855,3.39996e-33,-0.07767353,-0.054013964,-0.0314477,0.018426169,0.086150035,-0.073570296,-0.04145689,-0.12982295,-0.04278856,0.029446265,-0.015081414,0.012455001,0.01828776,-0.0651862,0.17628548,0.05107638,0.019861994,-0.026680341,0.03717138,-0.016777573,-0.047769964,0.053613015,0.0018227301,0.05802655,-0.019061916,0.04475002,0.026004655,-0.034263264,-0.1311103,0.034261823,0.061759137,0.015730107,-0.03702862,-0.022524754,-0.035126764,-0.07612476,-0.009286182,-0.003925361,-0.015812319,-0.040319353,0.031417847,0.006455906,0.023947397,0.027725799,-0.057235356,0.03347041,0.029820314,0.0067167925,0.059954785,0.019185873,-0.046776805,-0.011777385,-0.0465328,-0.040472496,0.013575062,0.005861232,-0.036802966,0.03987626,-0.027672991,-0.034185726,0.07524257,-0.018865088,0.047728937,-0.054414973,-0.024647517,-0.048820827,0.012471434,0.024656396,0.12122687,0.056016427,-0.08473174,-0.043766618,0.014326853,-0.041795075,0.0076499074,0.023250042,-0.012024468,0.0833484,-0.04334653,0.020083787,-0.077452466,-0.009559342,0.02249106,0.025410468,0.027956221,0.046477035,-0.0338007,0.04966152,0.024839453,0.07711563,-0.078378975,0.02226266,-0.0057255463,-0.027739914,0.07891968,-5.1982928e-33,0.031319506,0.024818774,0.051147804,0.089041196,-0.035594113,-0.020337513,-0.09159914,0.024549503,0.04427471,0.04886647,-0.04418115,-0.057020728,0.033266526,-0.04056962,-0.061542895,0.10080326,0.07507352,-0.018097129,-0.07579123,-0.051474553,-0.0288388,0.06604809,0.0077184634,-0.011184877,0.0024518128,-0.054126162,0.02280785,0.052284617,-0.0791002,-0.01553005,0.050474513,-0.10305876,-0.009181737,0.050335567,-0.03860633,0.00932486,0.060108535,0.07596286,-0.025074307,0.03831451,0.029477993,0.02531311,-0.05677813,-0.015005766,0.010968876,-0.06968098,-0.012347961,-0.070372485,0.013588057,-0.07590428,0.08690549,0.032389928,0.04056266,-0.014880732,0.021362964,-0.008409876,0.0060435883,-0.028499488,-0.077082634,-0.005455588,0.070809714,0.052592725,-0.024901288,-0.030188596,0.08287761,-0.009799488,-0.13770689,-0.015596588,0.05131034,0.066889115,-0.011068594,-0.026113743,-0.026460612,0.10339291,-0.09793144,0.010696368,-0.04369471,0.06083519,0.008905601,0.06203964,-0.028266944,-0.08486146,-0.010836658,0.04686865,0.020311704,0.027182851,-0.02357565,-0.0052385814,0.056903254,0.004766214,0.063411154,0.03356829,0.025924211,0.024029426,-0.059905913,-2.3519549e-08,0.010365819,-0.057186455,-0.11271621,0.06999966,0.024314264,-0.027758496,-0.02121069,-0.029559296,-0.050405063,0.060533352,-0.0744947,-0.03071829,0.026337326,0.055716176,-0.008933923,0.09168548,0.059683528,0.06757159,-0.0005031315,-0.013576037,0.10294972,-0.07998835,-0.0090135345,0.07126834,-0.03149266,-0.03107751,0.004811245,0.010400509,0.06564018,0.01086063,-0.012096199,0.06918515,-0.039977126,-0.02736546,0.0041527143,0.055477366,-0.071581855,0.039270498,-0.037128408,0.09685368,0.008940035,0.024876924,-0.044535194,0.009760422,-0.040255725,0.01946644,-0.024708984,0.040179573,-0.0137444,-0.011785279,-0.04924062,-0.0080191465,0.057997506,0.07790957,0.03406268,0.017850464,0.063161835,0.0026993116,-0.0025163582,-0.030471848,0.060541786,0.030836148,0.051143624,-0.020037001} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.449952+00 2026-01-30 02:01:12.988302+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2328 google ChdDSUhNMG9nS0VJQ0FnSURld1BHcGpnRRAB 1 t 2331 Go Karts Mar Menor unknown Exelente atención. Son los mejores!! exelente atención. son los mejores!! 5 2023-01-31 01:52:39.833374+00 es v5.1 P3.01 {} V+ I3 CR-B {} {"P3.01": "Exelente atención. Son los mejores!!"} {-0.022546623,0.03966186,0.019820284,-0.0509914,-0.014931844,0.0019835809,0.11370687,0.04297153,0.03698436,0.090919085,0.036003053,-0.03305928,-0.006250902,-0.0078078643,-0.04329111,0.010688276,-0.019778457,0.042462494,-0.007710204,0.050959993,0.059060495,-0.03761734,-0.05443124,0.060720455,-0.043793306,-0.046137065,-0.02009218,0.023662504,-0.0017800181,-0.10179209,-0.0098222755,0.026181467,0.034587957,-0.027343336,0.04108848,-0.0338701,0.061666083,-0.11167691,-0.025886746,0.018183349,-0.13745822,0.017272715,-0.043723002,-0.05254283,-0.0131546855,-0.077091716,-0.0067955507,0.02875188,0.01596779,0.036848847,0.0140415635,-0.018989308,0.016851045,-0.009128919,-0.006347118,0.0029962528,-0.002644977,-0.022156762,0.017001413,0.08446123,0.025590377,0.051056907,-0.060629584,0.008795022,-0.043428425,-0.040813535,0.053121578,-0.065191664,-0.08414128,0.06111044,0.118051976,-0.042793907,0.0022771193,0.022565072,-0.0009916504,0.07226064,-0.0019036591,-0.05300003,-0.047607895,-0.016595736,-0.012651082,-0.03663661,-0.057784036,-0.04455678,0.0302509,0.025160234,-0.017521864,-0.0023938413,0.09236789,0.052464403,-0.06218391,0.016078437,-0.11698647,-0.014319125,-0.012732504,-0.033932175,0.035463918,-0.009519198,-0.042857308,0.045598112,0.043767836,0.097687095,0.022754222,-0.026565537,-0.070060655,-0.01044639,0.017861638,-0.01975422,0.01288722,-0.023808606,-0.032328207,-0.08365136,-0.028028468,0.0046484545,-0.10621479,0.0461781,0.07857677,-0.051754113,-0.065904245,-0.060071092,0.08231167,0.038125157,-0.0695672,-0.008617514,0.061485052,-0.10990802,0.026328309,-1.2382019e-33,-0.024480537,0.006133305,-0.0038030588,0.08053105,-0.037776124,0.06561864,-0.025981972,0.01968833,-0.028057976,-0.016204907,-0.056709263,0.033743907,0.041911777,-0.009082865,0.024884332,0.07966804,-0.03833204,-0.07409521,0.07171187,0.019216739,-0.07810227,0.071442686,-0.019025272,0.011751723,-0.00048736675,0.021012435,-0.002152849,-0.0022094941,-0.081906855,0.037779365,-0.012916329,0.0706055,0.0058244667,0.069043435,0.043766852,-0.023699341,0.06366623,0.012215538,0.03953736,-0.04451317,0.064574115,0.059062563,-0.031739447,-0.04022401,0.0090031475,-0.025812259,0.05995695,0.043081548,0.13748807,-0.048789665,0.012015609,0.005010944,0.013332685,-0.08011439,0.017680353,0.08113708,-0.10762574,0.08079695,0.012674559,0.0054488243,0.01221318,0.01325725,0.06559275,0.051697664,-0.042037275,-0.053209264,0.026538868,0.022688674,0.10753882,0.048885163,-0.023365669,-0.10431878,0.07241447,-0.01055219,-0.026543397,0.029502312,-0.06835517,0.032338172,-0.021761553,-0.0117662465,-0.027860582,0.0024217067,0.01927066,-0.020524155,0.10803858,0.12630257,-0.0024675957,-0.013360172,0.012991194,0.14230172,0.010022662,-0.0013293448,0.035056304,-0.027161695,0.010817614,-1.45626145e-33,-0.01482091,0.017918138,-0.02559225,-0.016152501,0.01862327,0.016648587,-0.05275349,0.0029582074,-0.08516637,-0.06429823,-0.04282518,-0.09380824,0.024469947,-0.043753926,-0.073091336,0.0603336,0.054362826,-0.052513003,-0.05081695,0.0033560153,-0.043376826,-0.040365238,0.015393686,0.051390924,0.02645222,-0.04181379,0.02802118,0.009322578,-0.035596352,-0.027225027,0.011651912,-0.03583769,-0.0052456222,0.0060644783,-0.023056993,0.045183152,0.03457147,-0.007692612,0.058978602,0.0137298135,-0.052568205,0.03198235,0.026073787,0.019623576,-0.0325263,0.0070484364,-0.055440146,-0.14216772,-0.10687416,-0.01026197,-0.02977941,-0.05686164,-0.03099457,-0.09767065,0.059213612,-0.0015870135,0.02765907,-0.07710521,-0.063766494,0.04940896,0.10613583,0.07684163,-0.0035163106,0.027259223,0.083457395,0.027528817,0.037830375,0.03424758,0.041273624,0.09694305,0.124405086,-0.024495903,-0.10107917,0.036377773,-0.094959766,-0.0354342,-0.05567463,-0.019912736,0.029423067,0.014597728,-0.035946403,-0.039246783,0.012571887,0.022357032,-0.010025288,-0.029234938,-0.053320743,0.008753234,0.01955025,0.039324436,0.030217804,0.0326148,-0.03994788,-0.052494705,0.032516472,-2.1182244e-08,0.028184365,-0.051705822,-0.03998862,0.0052100015,0.026733877,-0.09629204,-0.084096305,0.0233362,-0.009554812,0.08280615,0.025018968,-0.039051775,-0.016805299,0.0031674164,-0.003982483,0.007470899,0.0825663,0.05111781,-0.043649185,-0.041290272,-0.03578336,0.01316433,-0.06067575,-0.08426717,0.011621703,0.01617451,-0.07054714,0.05584591,0.009469833,0.01573418,-0.0840754,-0.015836261,-0.05276759,-0.13159637,-0.04860632,-0.016282938,0.017044198,0.0016732371,0.0023161813,-0.05447093,0.14357579,0.10622411,0.013495743,0.0009105486,0.0031011538,-0.06612245,-0.054774575,0.040184803,-0.005913647,0.088825405,-0.043896645,0.0063595865,0.02001062,0.05008617,0.0714556,-0.03825538,0.0027638362,0.04066568,-0.051733654,0.007554544,0.057887964,0.13281216,0.034482256,-0.053649068} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.475301+00 2026-01-30 02:01:13.00433+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2329 google ChZDSUhNMG9nS0VJQ0FnSURSMW9fQUNnEAE 1 t 2332 Go Karts Mar Menor unknown Se puede mejorar se puede mejorar 3 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V- I1 CR-N {} {"V4.03": "Se puede mejorar"} {0.0018511562,0.071207374,-0.02373142,-0.040641915,-0.03802858,-0.049819548,0.10450631,0.05722381,0.010996679,0.046403296,0.04217454,-0.037542548,0.023345795,0.021954007,-0.049996294,-0.024549086,0.014699429,0.041777123,0.012158163,0.047241844,0.017850282,-0.015809665,-0.061550457,-0.025111455,0.006258805,0.065007545,-0.0055110385,-0.058708582,0.060010564,-0.11949002,0.020712586,-0.09820662,0.083528705,0.023719853,-0.027953403,0.022532124,0.0076682903,-0.06385785,-0.05556618,0.044477362,-0.11284671,0.023330867,-0.052529804,-0.03087462,-0.03627013,-0.024066035,-0.00016497627,0.04452949,-0.022936122,0.024121072,-0.0884319,0.014457273,0.03679046,-0.0039269784,-0.004382188,-0.05922843,-0.015246227,0.04499512,0.03917843,-0.015595119,0.013990477,-0.021958645,-0.008960051,-0.009789369,0.020765848,-0.052390695,0.037682265,0.048379347,-0.074627146,0.04779607,0.07392999,-0.023209129,-0.023682004,-0.015009979,-0.0019878882,0.03503586,-0.042395037,-0.051126726,0.0045936303,-0.02954879,-0.05587904,-0.04501608,-0.05737413,-0.042916115,0.017715838,0.03957724,0.05155974,-8.920381e-05,0.03278029,0.036588907,-0.051632557,0.063502185,-0.04214509,0.0032405253,-0.05346576,0.044003353,0.03950468,0.061043933,0.031866495,0.06337212,0.070182055,0.0735912,-0.014513503,-0.0045019104,-0.103234366,-0.05651711,0.007096439,-0.06669572,0.0839666,0.04032615,-0.07990356,-0.038197916,-0.053969096,0.00079220184,0.024670396,0.025597738,0.058913413,-0.046552468,0.010285891,-0.032239977,0.0052527324,0.026677422,-0.066477515,-0.034518853,0.005781873,-0.053962704,0.018990254,4.076199e-34,-0.06269665,-0.034750115,-0.037283503,0.037159164,-0.034719866,0.027507272,-0.07882901,0.0672485,-0.036872737,-0.058172066,-0.06863829,0.019329654,-0.04506652,0.0057759346,0.054912254,0.016908055,0.04701718,-0.0170197,0.08242744,-0.007847331,-0.010141524,0.027325468,-0.025965288,0.06531311,0.018125312,0.0015335496,0.049576633,-0.010938845,-0.05963144,0.052381784,0.028346708,0.0046296315,0.009373028,0.016392961,0.06621299,-0.0442375,0.020479672,0.06856309,-0.05867135,-0.010090831,0.032263692,0.010422863,-0.04863135,-0.012153629,0.09478468,0.021342037,0.108170025,0.032657996,0.09529332,-0.00831516,-0.010701353,0.04639779,0.075460374,-0.07681627,0.027486244,0.050739057,-0.10841478,0.062706724,0.066653445,-0.03645754,0.010005289,-0.00962419,0.01507576,0.04596933,0.04474423,-0.08779529,0.018409375,0.039545037,0.12860556,0.05130113,-0.06625417,-0.027861206,-0.031684183,0.047942013,-0.086051784,0.03238518,-0.06792525,0.007888401,-0.010223833,-0.031438563,-0.074469455,0.026643056,0.021575198,-0.04524994,0.13779348,0.034109946,0.038719635,-0.009766507,-0.020854948,0.035802018,0.08116122,0.00634982,0.0352278,-0.12061591,-0.001265371,-1.0839214e-33,-0.006563499,-0.06876855,-0.067158006,0.05360013,-0.0195206,0.077881426,-0.026137218,0.07494704,-0.08310923,-0.03297073,-0.009322164,-0.10732186,0.14218238,0.02340261,-0.026868615,0.10747196,0.076266065,-0.02957368,-0.08988848,-0.026271429,-0.062693544,-0.010050036,0.08269491,0.028393269,-0.069420174,0.0069805165,0.07255938,-0.04208913,-0.12049036,0.030677335,0.09191177,0.023172522,-0.05492974,0.029492268,-0.031788018,-0.013605521,-0.017362924,0.018124886,0.0074693607,0.01200498,-0.014722124,0.042680357,-0.024809105,-0.01585474,-0.008042173,-0.011021311,-0.044259094,-0.03970243,-0.028898967,-0.046533633,0.01835636,-0.011853485,0.03616185,-0.15097634,0.13059899,-0.08281112,-0.024960164,-0.04552944,-0.07684161,0.050326128,0.016217995,0.055104874,-0.011922793,0.035985313,0.056195,-0.0178963,0.0040557208,0.04257453,-0.011270379,0.051156577,0.10042506,-0.0842225,-0.03381538,0.008413475,-0.039407607,-0.051708408,-0.003818265,0.08202726,0.014555121,0.008765572,-0.033366516,-0.0076420386,-0.00052714,-0.014586601,0.0001783188,-0.06511118,-0.054809455,-0.045815513,0.0029952277,0.041751176,0.005509463,0.06037303,-0.03344069,-0.02683655,0.016958073,-1.7040465e-08,0.02807689,-0.10044005,0.0016772834,0.012011697,0.07686078,-0.022514706,-0.14084287,-0.049532358,-0.049871977,0.053088985,0.04319997,-0.09336837,-0.0132108135,0.05103692,0.04568972,0.053370755,0.07771511,-0.007858842,-0.01118047,-0.044344988,-0.060590953,0.018665817,0.02596231,-0.013717808,0.040974665,0.058275227,-0.014514239,-0.038940094,0.05608261,-0.0239513,-0.032316122,0.08958701,-0.0046527027,-0.11261214,-0.08830629,-0.0019735554,0.053934228,0.030941939,-0.022494795,0.06547043,0.117309906,0.0799397,0.052264836,-0.007835881,-0.0558182,0.016153106,-0.07230829,0.047823653,-0.022939311,0.019567927,-0.085265815,-0.025965013,0.024257597,0.056478854,0.015241817,-0.004952314,-0.00965967,-0.010074139,-0.05254598,-0.026194947,0.09948286,0.056655977,0.02150074,-0.02152262} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:25.487207+00 2026-01-30 02:01:13.008709+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2430 google ChdDSUhNMG9nS0VJQ0FnSURPXzdDNjBBRRAB 1 t 2433 Go Karts Mar Menor unknown Corto viaje corto viaje 3 2023-01-31 01:52:39.833374+00 es v5.1 J1.05 {} V- I1 CR-N {} {"J1.05": "Corto viaje"} {-0.00598842,0.12628488,-0.043934092,-0.01434894,-0.08124912,0.0074468153,0.0658891,0.08867533,-0.014768421,0.017721104,0.023287293,0.002604159,-0.08018523,-0.012348718,-0.004360639,-0.059725225,-0.0016216704,0.02055126,0.070500635,-0.0031996595,0.008574146,-0.046639856,-0.070874885,-0.0046378477,-0.047771167,0.0032768578,0.064256325,0.051847544,0.012198281,-0.099009335,0.008469559,0.060669877,-0.029261418,0.001998639,-0.11337767,0.01823543,0.036648154,-0.108745575,0.043867692,0.10664841,-0.103351794,0.030462516,-0.07512009,0.008284207,0.022244178,-0.029585639,-0.080457404,0.04853205,-0.05094558,-0.008377675,-0.10568691,-0.0133224,-0.010970129,0.009183765,-0.053797152,-0.036065936,0.01571994,0.030795522,0.017892534,-0.02138865,0.026390644,-0.08570957,-0.025263423,0.06857074,-0.03764534,-0.06918968,0.02859725,0.04112369,-0.09515137,0.09870649,0.08607591,-0.043025836,-0.023576746,-0.027910667,-0.045944974,0.054223146,-0.021786414,-0.021911634,-0.005003731,-0.09956332,0.104130454,0.06522507,-0.0040740725,-0.058812156,-0.014866048,-0.02563338,0.011199733,-0.0019704988,0.047671307,0.010015107,0.012527077,0.02603005,-0.087360896,0.028158208,0.020278985,-0.01900996,0.034589563,0.00067177287,-0.03937148,0.06086002,0.04641462,0.058861997,-0.010723623,0.04753308,-0.026922448,0.03871819,0.082331024,-0.041828826,0.14174512,0.054084815,-0.14264652,-0.05114593,-0.034556825,-0.089885235,-0.065988176,0.0063110627,0.06846068,-0.027434787,0.035784733,-0.02583268,0.08813532,-0.053397536,-0.070894234,-0.049020488,0.0017001317,-0.0039220727,0.042340554,-2.43478e-34,-0.0386602,-0.011923462,-0.032515313,0.07248097,-0.027173184,-0.017003385,-0.07142834,-0.038891107,-0.08721335,-0.032786485,-0.060974393,0.002635737,-0.045819268,0.024602849,0.0029111595,-0.0017849876,0.050744675,-0.0026090979,-0.012579478,0.01424845,0.020947011,-2.4316863e-05,0.017133148,0.058302168,0.071185365,0.06878559,0.03377695,-0.04775132,-0.100516714,0.0143817365,0.049102675,-0.00030390298,0.0033380662,0.035690255,-0.0042936006,0.011469421,-0.035834108,0.015766125,-0.03342265,-0.014449957,0.043376766,-0.09567291,-0.054463826,0.075181894,-0.018999841,-0.022885969,-0.013922043,-0.046744272,0.09026857,-0.03440956,-0.10701156,0.016041307,-0.09153141,-0.008579111,-0.0065497896,0.03584943,-0.0773419,0.045198184,0.06882469,-0.11223258,0.04580114,0.020159481,0.023346668,0.04946675,-0.011359855,-0.048749536,-0.030778494,0.013413241,0.094534114,0.020546107,-0.06317817,0.00954187,0.026397834,0.03228081,-0.042335138,0.064314105,-0.011409185,-0.02332847,0.01689888,0.018406864,-0.011753289,-0.0502632,0.041862372,0.0029093693,0.12532966,0.06175646,-0.030816726,0.034955002,-0.021371095,0.11061583,0.008588312,0.09123972,0.06584862,-0.10422562,0.03728209,-9.158627e-34,-0.044992194,-0.028364042,0.003946445,0.0020684523,0.018828357,0.055207442,-0.067079104,-0.0124172205,-0.018590918,0.01833179,0.01276847,-0.09055261,0.060199928,-0.04271197,0.0072844885,0.026610017,0.049592994,0.005255548,-0.07209675,-0.045709476,0.0060810265,-0.013170222,0.0018288195,-0.006660354,0.0045774113,0.051841702,0.049983244,-0.018549608,-0.13433614,0.049358554,0.033757437,-0.048317034,0.01939125,0.058126535,0.024417432,0.05745277,-0.004973366,0.091692895,-0.03687154,0.05546196,-0.009424219,-0.048690796,0.004935697,0.040693633,0.009499005,-0.029617304,-0.030436004,-0.05878135,0.00055252545,0.029222054,0.051400404,0.099905446,-0.093341574,-0.01869285,0.098213844,0.03193,-0.0856926,-0.07420376,-0.04613824,0.051441517,0.06847569,0.038655106,-0.022839684,-0.01996721,0.10361807,0.04824975,-0.033746917,0.0074632666,0.055475548,0.06401178,0.006022374,0.03358394,-0.08112053,0.010714224,-0.008798499,0.04460339,-0.06386913,0.090503946,-0.03912496,0.049552146,-0.054036353,-0.071491756,-0.018094635,0.0667636,0.03362313,-0.06053659,-0.035730243,-0.0772422,-0.03041514,-0.014237707,0.039087076,0.014408417,-0.02454776,-0.041423865,-0.004404159,-1.44289585e-08,0.035288673,-0.09364252,0.0013494896,-0.027183551,0.11437614,-0.015245128,-0.022979397,-0.09508416,-0.032745156,0.05533206,0.017398471,0.008149241,0.064939,0.051054973,0.034249913,-0.005124433,0.014008971,0.07030848,-0.011708413,0.014119132,0.022055043,-0.008702696,-0.031205934,-0.01726977,0.0271999,0.0488108,-0.047522277,0.060471244,0.029932275,-0.06558913,0.013376265,0.093064696,-0.048849393,-0.023525873,-0.030007584,0.035440333,0.089797474,0.019287761,-0.05753567,-0.021209002,0.05403131,0.03651707,0.050283264,0.033931933,-0.06401371,0.0063327267,0.035922226,0.018874869,-0.03814024,-0.009823477,-0.09943147,0.037048947,0.017822934,0.06871422,0.04522336,-0.002244712,0.043446578,0.04269712,-0.07433421,-0.030866897,-0.016880274,0.0021010768,0.06710642,-0.011091648} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:34.867595+00 2026-01-30 02:01:13.61643+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2431 google ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB 1 t 2434 Go Karts Mar Menor unknown Los mejores. los mejores. 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "Los mejores."} {0.0028973892,0.04418157,0.0876838,-0.009248951,-0.0121465605,-0.022894511,0.07620087,-0.012115743,0.057265032,0.047163643,0.025442496,-0.005908536,0.011531784,0.0145293195,-0.053896137,0.0010028419,0.020456878,-0.024928182,-0.004028121,0.009913139,0.065513425,-0.021187048,-0.09304294,0.053113595,-0.02364449,-0.04305386,-0.02763721,0.018366996,-0.006664461,-0.068298645,-0.03056172,0.009622594,0.021393964,0.031700004,0.03234873,-0.0077369716,0.07538842,-0.06781645,-0.033679236,0.076471664,-0.103093825,-0.017406793,0.049561597,-0.028704649,-0.023727894,-0.07569784,-0.008363796,-0.0018194295,0.020252,0.01920975,-0.0009292924,-0.007546656,-0.011514303,0.06003877,0.03694565,0.0075071896,-0.029740227,0.024930546,0.0559575,0.09134702,0.025527239,0.012970934,-0.072128534,0.055454347,-0.048354864,-0.018838847,-0.009938852,0.0341913,-0.08208892,0.02086148,0.06942264,-0.019985838,-0.0053380965,0.036626082,0.076734796,0.018778235,-0.009663843,-0.063670926,-0.017931018,-0.033372562,-0.05010644,-0.0652628,-0.047620688,-0.011382266,-0.0007572987,0.062287234,0.02904572,-0.00723746,0.07829046,0.0279781,-0.16055311,-0.02420868,-0.09658,-0.024940435,-0.06436789,-0.023143781,0.06167001,-0.002252147,0.012686467,0.089717105,0.06904448,0.06624358,0.03863494,-0.021240572,-0.052106414,0.03312083,-0.021866893,-0.017008867,0.03908827,-0.040853653,-0.021154301,0.018403579,-0.057034448,0.040190876,-0.07458728,0.010352735,0.064660534,-0.0034497941,0.010504804,-0.08584437,0.05939817,0.029662872,-0.043250747,-0.042513024,-0.006884205,-0.07826076,-0.051107354,-4.4182726e-33,0.009007301,0.04654314,0.044592798,0.06934779,-0.005327379,-0.017478876,-0.052725863,0.056520123,-0.05543642,-0.034517977,-0.020786537,0.07450262,-0.019028243,-0.0657442,0.067416064,0.07880553,-0.02838149,-0.02590907,0.0122512635,0.01782713,-0.05874982,0.107667916,-0.028517373,0.031638972,-0.026848465,0.005075017,0.024455315,-0.02756806,-0.06643375,0.04606846,-0.055155512,0.07653024,0.030607963,0.04896252,0.034657914,0.0015445062,0.06651564,0.014652895,0.030344741,-0.042608656,0.02598945,0.041052002,-0.079915,-0.041844655,0.022304062,0.030813066,0.07242677,-0.021086715,0.071623296,-0.00354123,0.017342795,0.038343232,-0.011864061,-0.08074429,0.020171896,0.039607402,-0.05587803,0.026412182,0.034484256,0.031511612,0.011964277,-0.0147862965,-0.023775736,0.046652485,-0.04111128,-0.065724485,0.04780117,0.039201926,0.15030521,0.07270637,-0.05478119,-0.05109369,0.08707022,0.016938007,-0.0016233958,-0.0031902667,-0.06091217,0.086748086,0.016753858,0.0027920317,0.014627073,0.008392473,-0.004489598,0.0069281203,0.13661407,0.07513327,0.040858734,-0.039046135,0.012615236,0.070946686,-0.1189334,-0.011621477,0.10619638,-0.033219546,-0.10756579,2.1898505e-33,-0.039902374,-0.041511245,-0.011683369,0.038649015,0.03017383,0.022875814,0.04344634,0.059393868,-0.061489034,-0.03489694,-0.026006997,-0.09274327,0.015194491,0.0065079173,-0.0036811577,0.04603915,0.075107835,-0.07309096,-0.089383274,-0.03457659,-0.044925455,0.010561905,0.05116711,0.08018886,-0.0062236586,0.014218646,0.013995033,-0.015711367,-0.094109066,-0.037897967,0.03996273,-0.029942406,-0.031678166,0.0041340278,-0.07383103,0.030739471,-0.06966442,0.005917713,0.037389647,0.0007990581,0.004089312,0.0045866403,-0.0314377,0.048800737,-0.039119847,0.0074888086,-0.06179618,-0.10067224,-0.07304466,0.012289469,-0.055131983,-0.055717673,-0.097202435,-0.09905347,-0.0014280702,-0.031909194,-0.01899806,-0.06682768,-0.004772676,0.022602495,-0.0067452653,0.07595475,-0.053091045,0.016210932,0.0245469,0.032003094,0.04933791,-0.012375342,0.0214305,0.060288344,0.13780521,-0.016075794,-0.049872715,-0.03327776,-0.051731564,-0.087406486,-0.14125207,-0.001206589,-0.02441278,0.004156323,-0.021868963,-0.06203466,0.010588656,0.046232797,0.034487545,0.0057389913,-0.02106748,0.057495695,0.040013462,0.02014393,0.0439379,0.06430681,-0.041800264,-0.05507683,-0.03503079,-1.5581943e-08,0.043968927,0.010489701,-0.051118575,0.025194082,-0.016873932,-0.051027197,-0.08279011,0.09721581,0.058028694,0.1644349,0.02450617,-0.054222245,-0.002294688,0.00509535,-0.009781194,0.052350678,0.049229175,0.027423987,-0.022007847,-0.04304735,-0.057267424,0.042254884,-0.027176755,-0.06735708,-0.00082054763,0.04546382,-0.07237202,0.0761607,0.009960563,0.03873003,-0.07555407,0.057398457,-0.07860437,-0.09717891,-0.028412813,-0.07613756,-0.022171455,-0.0034794346,0.025492024,-0.05321811,0.11454854,0.15278834,0.016863955,0.041413814,-0.03029317,-0.039844945,-0.014519419,0.03532992,-0.034577496,0.0009357684,-0.020824557,-0.021285294,0.020985255,0.10526446,0.06399264,-0.06655249,0.041984946,0.018385308,-0.02261894,-0.023627905,0.061871454,0.09746137,0.050711066,-0.029538192} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:34.882167+00 2026-01-30 02:01:13.620117+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2432 google ChdDSUhNMG9nS0VJQ0FnSUN3N2JQYjVRRRAB 1 t 2435 Go Karts Mar Menor unknown Bra go kart bra go kart 4 2019-02-01 01:52:39.833374+00 hr v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Bra go kart"} {0.026168406,0.029942364,-0.045243043,0.05773688,-0.05266217,0.021450453,0.07863255,-0.012611864,-0.008179479,0.013537026,-0.01165816,-0.03550609,-0.021206964,0.03480319,-0.014520638,-0.03270547,-0.023796791,-0.03483525,-0.03190783,-0.05601803,-0.02877743,0.010504782,0.0051054033,-0.018537657,-0.030336298,-0.00089719635,0.02621918,-0.025591101,0.04593797,-0.0476798,-0.05754836,0.04080891,0.011683619,0.027601408,-0.06708227,0.006034789,-0.022699868,-0.04120474,0.010554659,0.024515303,0.026257949,-0.0659871,-0.08821502,0.072428256,0.08456926,0.10575494,-0.042598017,0.022627348,0.008645905,0.043498725,-0.016098263,-0.074055515,0.032871995,-0.008990071,0.06550146,-0.009619311,-0.060197864,0.084112115,0.10701739,0.04506771,-0.0033979127,0.034399677,-0.026053526,0.036685675,-0.0574829,-0.015746133,0.011174564,0.13462433,-0.007576289,0.11030524,0.07217025,-0.021713832,0.033697113,0.021236412,0.025464451,0.00045159893,0.019538553,-0.06867619,-0.035765253,0.0895597,-0.05486859,0.031599034,-0.03026449,-0.067610554,-0.088970765,-0.02413899,-0.018876702,0.016287088,0.028255515,-0.05308311,0.051070485,-0.0066651446,-0.0061515924,-0.0056122984,0.020349357,-0.01731605,0.006071924,-0.03348937,0.013198466,0.07335666,0.0064383526,0.044634927,0.030179866,0.08111598,-0.0012655857,0.021296311,-0.008829866,0.02539361,0.08727472,0.031735122,-0.025426498,0.054900244,-0.03662598,-0.058654703,-0.00893991,-0.052142233,-0.011074568,0.01704853,-0.03110835,-0.080330126,-0.0035801919,-0.023448274,0.0017310177,0.041342594,-0.0041155796,-0.09170529,0.015484167,-7.473106e-34,-0.031337082,-0.018910373,-0.0054244148,0.020956779,0.0072033852,-0.09458532,-0.06470756,-0.12031073,-0.09010735,-0.0074068788,0.07399859,-0.04508493,-0.05395709,-0.05409163,0.115067534,0.053249694,0.0144247925,0.012073834,-0.0058156536,-0.02564042,0.006720306,-0.0123413885,0.0138385305,0.057878662,-0.008799288,0.011229918,0.15885285,-0.09520866,-0.043732222,-0.004938118,0.048485797,0.007572216,-0.03934205,0.045085683,-0.096822925,-0.068494275,-0.012225804,0.03504801,-0.06419838,-0.009859631,0.03390854,-0.023509912,0.033360984,0.012397329,-0.016599447,-0.021143066,0.09699511,-0.024317,0.013756755,0.0023488023,-0.014989208,-0.00951761,-0.031724535,0.03472786,0.0019548384,0.053124897,0.058938283,0.04826658,-0.013388645,-0.06231289,0.01859758,-0.103497446,0.05315596,-0.010310047,-0.039899793,-0.057400983,-0.08460686,-0.051122908,0.048965182,-0.014689602,-0.006655142,0.013796784,0.008717381,-0.08101221,0.028530858,0.06104588,-0.012668122,0.033269558,-0.05530931,-0.0032171984,-0.041947186,0.035560597,-0.025456753,0.0131866615,0.10555967,0.015066878,-0.026881479,-0.13668747,0.035224296,-0.0036480331,-0.08231821,0.06259926,0.035901934,0.0022146357,-0.0015385881,1.5019991e-33,0.09589706,0.031694382,0.08792472,0.14546564,0.03681053,-0.015601239,0.073828295,-0.026454188,0.026546314,0.03164359,0.027341371,-0.014949035,0.028967485,0.017553536,0.06760045,0.078902066,0.18524498,0.06561632,-0.033996515,0.0005242701,-0.07874028,-0.043080054,0.012299257,-0.083398715,-0.0005424169,0.08475745,0.053684387,4.1231266e-05,-0.08848291,-0.041074995,0.025098305,-0.06687152,-0.051731978,0.027194187,-0.0005663413,-0.024016099,0.05582784,0.10544795,-0.08591934,0.023859972,0.029163744,0.051182482,-0.070801556,-0.023742953,-0.045015592,-0.018550595,0.08461831,0.01448381,0.12406816,0.009552444,0.11700637,0.061171837,-0.018244602,0.041681394,0.012846244,-0.06435595,0.034904517,0.021497289,-0.05340672,-0.0289287,0.03393489,0.018066054,0.0078113396,-0.038735583,0.06921087,-0.013753932,-0.0047564674,-0.014222559,-0.041086424,-0.05169,-0.0013253638,0.05477193,0.0016271528,0.029890144,0.013702468,-0.051838428,0.036944635,0.0026916729,-0.009170813,0.025646927,-0.01903134,-0.029434685,-0.055962767,0.073481515,0.047565624,-0.008927303,0.016423278,-0.0007456624,0.052130427,-0.066910006,-0.075314604,0.05765676,0.059201885,0.010786829,0.026255265,-1.36260025e-08,-0.008216975,0.022795511,-0.10125582,0.0004661659,0.06239394,-0.077642865,-0.11094538,-0.053370517,-0.028265161,-0.045092463,-0.049605466,0.018540217,0.056686237,0.007752434,0.050017472,-0.01829966,-0.012082622,0.017215874,0.0045580966,-0.04872472,0.0016468356,-0.03445288,-0.032870118,0.035814736,-0.088506065,0.016266365,-0.005924423,0.08425383,0.10741588,0.023850242,0.012642291,0.06597561,-0.020235682,-0.005857573,-0.0021886374,-0.025834357,0.014959724,0.073437475,0.013733955,0.0961467,-0.07173922,-0.066959605,0.024993345,0.027139781,-0.19285205,0.0037885436,-0.0064455797,-0.019055264,-0.019431224,-0.026451433,-0.0105223,-0.03012343,-0.032104664,0.09200934,0.03747081,0.013572724,0.048947774,-0.089420274,-0.027731668,0.052854426,3.1821543e-05,-0.10632992,-0.014103613,-0.04327981} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:20:34.897751+00 2026-01-30 02:01:13.630656+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2380 google ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB 1 t 2383 Go Karts Mar Menor unknown Choix de kart et personnel sympa choix de kart et personnel sympa 4 2020-02-01 01:52:39.833374+00 fr v5.1 O3.02 {} V+ I1 CR-N {} {"O3.02": "Choix de kart", "P1.01": "personnel sympa"} {-0.04690748,0.054666426,-0.034530558,-0.090101816,-0.06919649,0.03898457,0.08874086,0.05228635,0.0056646564,0.0926296,0.014701059,-0.025853135,-0.03867498,-0.043647636,-0.045394357,-0.02251915,-0.048825193,0.024261849,0.06669115,-0.04222092,-0.036667548,-0.0770302,-0.011762518,-0.01620684,-0.0464922,0.013780415,0.023386495,0.003545971,0.026463721,-0.07345744,-0.01950898,0.024991883,0.041345388,-0.031432126,-0.0034867127,0.052388676,-0.0321483,-0.013502328,0.032035932,0.049399428,-0.048625633,-0.0642818,-0.12260762,-0.019976936,-0.015035846,-0.044591088,0.0045407983,0.04677118,-0.08492962,0.03998401,-0.037111122,-0.004264951,0.020213483,0.005996491,0.0023910787,-0.071462646,-0.02905347,0.020333724,0.016603684,0.01932647,-0.006554792,0.01111922,-0.069722936,-0.012919703,0.03350875,-0.087177165,-0.020282421,0.008411344,0.0060206493,0.09644149,0.08473319,-0.09498639,-0.095998615,0.06070225,0.04475445,0.002151211,-0.026419269,-0.0035751036,0.010324873,-0.1353773,0.09688852,0.017468685,-0.028552534,-0.051524974,0.0037753948,-0.072967626,0.0068112784,0.019806681,0.06706116,-0.04296386,0.063862234,0.03647412,-0.032247785,-0.04510977,0.11253337,0.016943984,0.00024110712,-0.019538771,0.019690719,0.07289343,0.036581233,0.06423393,-0.0013717565,0.036069665,-0.046381008,-0.044652354,-0.046782233,-0.066791095,-0.016678615,0.0042193662,-0.086995,0.02917047,-0.09234922,-0.025934726,-0.00050302455,0.010354237,-0.026143745,-0.02127678,-0.038635626,-0.020408709,0.03129172,-0.014093926,-0.0537271,0.019835781,0.097587176,0.0009324724,0.04995272,1.5510552e-33,-0.05670353,0.021479724,-0.031227736,-0.025471902,-0.011563684,-0.007019328,-0.057067458,-0.09116732,-0.010365414,0.038648006,-0.085657746,0.085074,0.006009548,-0.022011984,0.07184523,0.026871078,0.012839015,0.03126602,0.056933176,0.016169602,-0.033808365,-0.0031985908,-0.019555762,0.06370655,0.07766956,0.03691778,0.08268381,-0.015085157,-0.0318415,0.03230072,0.052851476,-0.017971719,-0.062318057,0.020984778,-0.08980411,-0.032412656,-0.06918779,0.012355355,0.010386985,-0.05417415,-0.0010498912,0.011126089,0.07319805,-0.000794177,-0.050456133,0.0037025334,0.050743956,-0.00870468,0.038819984,-0.030040734,-0.018174073,0.0031534384,0.013762853,0.045918047,0.03866977,0.0008457624,0.016647875,0.018170774,-0.06526933,-0.016613882,0.044863474,-0.051207624,-0.008577892,0.002422188,0.020717582,-0.05680913,-0.04779652,-0.027607433,0.12368855,-0.027037712,-0.10285982,0.0444674,0.033573218,-0.0068798084,-0.0678467,0.06273773,0.0071611498,0.084429935,-0.10901018,0.023780083,-0.08607407,0.02461658,0.028026514,-0.045522228,0.07230022,-0.03114641,-0.017769536,-0.027173862,-0.018809628,0.029550413,0.0059055453,0.036327228,-0.02213789,0.119771235,-0.053584628,-4.4410118e-33,-0.064504035,0.03768844,-0.0012308459,0.07161659,0.0052915295,0.04699472,0.03241444,-0.01878702,-0.033779092,0.017970337,-0.066332325,-0.09049612,0.0055083707,-0.0046257325,0.021610666,0.08084746,0.023187162,-0.039626393,-0.07552981,-0.020902434,0.008699772,0.10407941,0.052348763,0.02152929,0.011086467,-0.02038494,0.006989091,-0.00751108,-0.114317805,-0.009405909,0.04576797,-0.09235098,-0.03197359,0.051714286,0.02380939,-0.06860037,0.075329795,0.10021349,-0.05096815,0.20663492,0.053518545,0.09654028,0.0035020034,0.00024609567,0.022210533,-0.07000277,0.03493173,-0.070486605,-0.048343215,-0.092362806,0.07495977,0.020852303,-0.0038207492,-0.029073268,0.029159361,0.099997304,-0.037742812,-0.053351656,-0.02972874,0.031948928,0.10768341,-0.0037025658,0.006141644,0.009283649,-0.0032262201,-0.016085222,-0.047010817,0.042228594,-0.01758942,0.011783821,0.087641284,-0.012613831,-0.04762731,0.10309413,0.030185215,0.0040672054,-0.011866913,0.053339876,0.023744615,0.026589185,-0.11316716,-0.0041517387,-0.023690408,0.06993335,-0.028053712,0.016902832,0.053679835,-0.027030604,0.041526195,-0.06915073,0.046199817,-0.018925155,0.022407942,0.068751805,-0.022990683,-2.0247777e-08,0.0031459662,-0.09504391,-0.09498375,0.06435948,0.071782246,-0.11787596,-0.1144969,-0.028266614,-0.045714054,0.089516625,-0.045306526,0.00027395188,-0.059468996,0.023924133,0.058772977,0.07185428,-0.048582315,0.093400665,-0.06460067,-0.08720667,0.13180691,0.01193293,-0.07202968,-0.0019607705,-0.017325193,0.033354033,-0.07506418,-0.02994855,0.017206058,0.07890389,-0.00092068705,0.0826939,-0.015820703,-0.0389946,0.0083922045,-0.027483275,0.026607541,0.01118263,0.011396077,0.097039424,-0.0012674385,-0.018480657,-0.020732,0.006681475,0.0035252254,-0.0018582336,-0.023003295,0.00024574014,-0.01951221,0.001998298,-0.032455187,-0.004143741,0.04566855,0.043812703,0.05066604,-0.005202187,-0.01842253,-0.039939627,-0.047458347,-0.06317773,-0.021020774,0.0034323402,-0.012493986,0.010026319} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.825572+00 2026-01-30 02:01:13.273774+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2381 google ChdDSUhNMG9nS0VJQ0FnSUR5My1Pem53RRAB 1 t 2384 Go Karts Mar Menor unknown Sehr schön sehr schön 5 2022-01-31 01:52:39.833374+00 de v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Sehr schön"} {-0.041708708,0.11483412,-0.0050712177,0.02037898,0.0014838551,0.024773337,0.11967254,0.01619527,-0.0043682065,-0.024437314,0.082878575,-0.10212255,0.03257446,-0.058580752,0.021693183,-0.058533624,-0.03684556,0.03274514,-0.021732133,-0.042952333,-0.035184678,0.03690233,0.0022154476,0.045068778,0.03247013,-0.008084907,-0.041562386,-0.027682332,0.06445254,-0.025819113,-0.005967847,-0.0024471341,0.0005593691,-0.02139731,0.051180508,-0.023808356,0.018584874,0.0031564506,-0.010782342,0.033030234,-0.08767171,-0.022722902,-0.061713733,-0.13569142,-0.06485272,-0.04782171,0.011847997,0.011988305,-0.097244866,0.058991224,-0.05572266,-0.0141836535,0.022295665,0.0260676,0.024999237,-0.013884482,0.028579,-0.002893251,-0.028053656,-0.07248287,0.019212818,-0.018099967,-0.12123276,0.0056742774,0.043016903,-0.076094784,0.042410437,-0.03877528,-0.04573836,0.05534323,0.009181315,-0.08792768,0.0195506,0.0420059,-0.009707563,-0.09672178,-0.009343172,-0.054880727,0.010494408,0.027369473,-0.06188293,-0.045930818,-0.046874844,0.030155499,0.0052013313,0.0915789,-0.014262235,0.06237191,-0.01280028,-0.032117475,-0.016257076,-0.09028746,-0.05363923,0.014069423,-0.04536425,0.06356002,0.025893448,0.038430665,0.022613585,0.13458918,0.0019919123,0.03456459,0.0028174948,0.0077133463,-0.06568338,-0.024292268,-0.015531419,0.021160757,0.010089348,-0.004353175,0.022115638,-0.09001683,0.05366437,-0.006069226,0.069232255,0.053741287,-0.008119984,-0.036344144,0.030536646,0.018021615,0.06146849,0.042883083,-0.017937439,0.07080866,0.032845434,-0.007463276,0.04468178,-8.005451e-34,0.02117981,0.037316706,0.05748799,-0.014609252,-0.0065200874,0.026329879,-0.042089786,0.06529373,-0.12171007,-0.008244354,-0.05146555,-0.047292758,0.048506264,-0.06074068,0.009785592,0.029364409,-0.0255778,-0.013952917,0.09776507,-0.028504612,0.0076662805,-0.00947373,0.0447466,0.05743572,0.01578341,-0.1750515,0.0047120447,-0.026763486,0.012738387,0.068641014,0.12510741,0.03471841,0.0184991,-0.04474595,-0.012809424,-0.033668946,-0.050417803,0.05269119,0.018010933,0.0001868453,0.037762467,0.013210839,-0.014054098,-0.013570926,0.0033823745,0.03494685,0.06265185,-0.004272792,0.015100962,-6.5104075e-05,-0.02670053,0.009656582,0.01861445,0.04383079,-0.019980147,0.022952596,0.015461217,-0.0067760265,-0.009161104,0.061612412,0.033412263,-0.00010360978,-0.008656162,-0.04244815,0.05914384,-0.0763734,-0.0148042925,-0.028888673,-0.028415194,-0.056914862,-0.12768795,0.0274694,0.036105424,0.017590107,-0.020562751,0.0058917147,-0.047023352,0.08612021,0.003815909,0.06303261,-0.059431136,0.0015573521,-0.02223796,0.014048399,0.06383227,-0.06712285,-0.02312589,-0.059261236,0.029113607,0.008473247,0.017298648,-0.10674722,0.032748476,-0.0704675,-0.06978233,-3.1324893e-34,-0.038848784,-0.02432391,-0.078417934,0.056917645,0.020595172,0.008926661,0.019326556,0.04656682,-0.074199066,0.03878388,0.11991752,-0.021862576,0.12724793,0.043733127,0.058608044,0.08018206,0.057174698,-0.010093419,0.076288566,0.022821508,-0.024949579,0.011273878,-0.00613782,0.011444152,-0.032869115,0.042160187,0.024828454,0.002188551,-0.055298947,0.06187287,0.013197127,-0.039303392,-0.036152575,0.065261066,-0.01297832,0.02501111,0.0069546276,0.08538653,0.009546408,0.025235126,0.006061379,0.0670856,0.017035794,0.093688056,0.11809074,-0.04007963,-0.12897378,0.06827002,-0.101719804,-0.04916589,-0.013824865,-0.029827671,0.02158587,-0.1291185,0.058204807,0.026998227,-0.060237136,0.021042433,-0.09939389,0.008217613,0.0131941885,0.11050169,-0.054556813,0.03943781,0.019194635,-0.12126861,-0.084126145,-0.017038476,0.030244911,-0.06577805,0.020624785,-0.026290959,-0.023980225,-0.060232833,-0.09382582,-0.09651432,-0.048062522,0.07558392,-0.029757287,0.041664157,-0.050513893,0.010732898,0.008402158,0.012036337,-0.027159454,0.012483463,-0.02470966,0.0011983543,0.05529329,-0.038794663,-0.055856884,0.054782413,0.028307313,0.016151363,0.084579445,-1.5720886e-08,0.018381635,-0.13113624,-0.0033159764,0.032235865,0.037650958,-0.09672221,0.07172122,-0.056172427,-0.023841614,0.02645014,-0.00077864964,0.016288709,0.05985415,0.004054044,0.03869981,0.072810836,-0.028949028,0.01461288,0.015679732,-0.07008015,0.06231364,-0.06389123,0.013662879,0.057300195,0.0032411749,0.021308959,-0.040964406,-0.05787736,0.0382043,-0.074407645,0.029469162,0.013887417,0.03466531,0.013043433,-0.023484038,-0.102165796,-0.045502964,0.03491779,0.023257332,0.060262486,0.010250071,0.057905104,0.06607887,-0.00878523,0.06835253,-0.027457023,0.009455586,-0.017566035,0.04976454,-0.034147546,-0.0881248,-0.016296519,0.037153944,0.105877616,0.10993029,0.02915343,-0.044916686,-0.025043858,-0.036475938,0.038108315,0.06292758,0.088660836,-0.034562036,-0.039041173} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.842713+00 2026-01-30 02:01:13.275473+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2382 google ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE 1 t 2385 Go Karts Mar Menor unknown El mejor karting el mejor karting 5 2026-01-30 01:52:39.833374+00 no v5.1 V4.01 {} V+ I3 CR-B {} {"V4.01": "El mejor karting"} {-0.01109688,0.05423104,0.060546774,0.030947682,-0.04956231,0.008471443,0.059288926,0.03348052,0.04922759,0.04679639,0.06242858,-0.03863813,-0.007065166,0.026858617,-0.04898463,0.02073248,0.027286937,0.01731659,-0.042721443,-0.033613436,-0.011883071,-0.0138086,-0.085609525,-0.013655261,-0.07761884,-0.021716995,0.004443466,0.0071413876,0.05154526,-0.09509419,-0.018948676,0.012922479,-0.032171324,0.019835085,-0.045610927,0.0053623174,-0.058362674,-0.056650266,-0.012542132,0.032113828,0.008538602,-0.08308403,0.02713566,-0.094610944,0.05749267,0.011016335,-0.018438319,-0.0051429886,0.014700264,-0.0048304303,-0.022604104,-0.04606148,0.046049193,-0.0056148926,0.048914827,-0.08222859,-0.05966496,0.07373551,0.10715732,0.059808955,0.03262697,-0.02973825,0.024538167,0.037483864,-0.112035125,-0.1288136,-0.014974464,0.030085305,-0.07444045,0.0857752,0.07697063,0.013853444,-0.037173413,-0.003452348,0.042392477,-0.028400412,-0.016826821,0.0097452,-0.042913087,0.00632719,0.0041173864,-0.092246525,-0.020965593,-0.0663916,-0.015400869,0.009279797,0.086644046,-0.0118816765,0.057094764,0.012650839,-0.11677904,0.012111452,-0.14716662,-0.057329033,-0.056474138,0.037915267,0.008181151,0.039259747,-0.028639961,0.08255192,0.06595036,0.072793104,0.04725144,0.014297516,-0.08902952,0.03438646,-0.010490683,-0.0035387336,0.07007979,0.020283954,0.0061328835,-0.06135707,-0.012359004,-0.038654637,-0.02017308,0.0065004514,0.017518802,0.013054907,0.03889225,-0.023667622,0.025436139,-0.040047254,-0.01656864,-0.009660599,0.042729296,-0.052195825,0.09315962,-6.928825e-34,-0.110126615,-0.059341945,0.015437167,0.02963841,0.054432735,-0.07728761,-0.056520194,-0.022591198,-0.051722173,-0.08869569,0.06362698,0.07824822,-0.054541096,-0.052808568,0.12125551,0.0404683,-0.034514472,-0.10781925,0.027984958,-0.030166317,0.031066475,-0.049305897,-0.04430211,0.030767981,-0.05601097,0.0064894888,0.09407909,-0.119128115,-0.091162965,0.039945558,0.003924628,0.06055485,0.018469745,0.027350035,-0.010272532,0.02229202,0.0059514455,-0.0036277568,-0.034480203,-0.044092264,-0.04557213,-0.020167751,-0.04780712,-0.013364279,-0.0562273,0.032070946,0.093770504,0.042900156,-0.009021635,-0.016428502,-0.044292144,0.020822091,0.05862663,-0.047180783,0.009636047,0.041153073,-0.03825203,-0.00055764033,0.003371138,-0.0048212674,0.051023483,0.0141129065,-0.013291149,0.051810615,-0.08265389,-0.108682774,0.037190765,-0.0069487337,0.09357638,0.019720353,-0.04157974,0.04690423,0.07857697,-0.07646505,0.06599676,0.018853666,-0.06146335,0.0715465,-0.03618735,-0.013520439,-0.056398235,0.0030538673,0.008507486,0.026313912,0.09597513,0.008689655,0.010251435,-0.010426475,0.08313152,0.06613818,-0.094206706,-0.018467382,0.051255833,0.027543182,-0.00035002787,-6.762502e-34,0.019345084,-0.0076871943,0.08286607,0.11690036,0.057633396,0.05696584,0.079298414,0.011681089,-0.028558845,-0.055460736,-0.07782422,-0.044175956,0.072434746,-0.00064492156,0.047586396,0.060266532,0.022300731,0.015571563,-0.05091737,-0.0008191203,-0.035669044,0.029164825,0.011833362,0.028821692,-0.05724441,0.041107867,0.05870716,-0.014532759,-0.14735267,0.058921497,0.022903249,-0.056806024,0.023310304,-0.008539347,-0.11415681,0.023266591,0.007607988,0.06317969,-0.0058294307,0.026865559,0.073153846,0.06594373,-0.049096692,0.051742032,-0.023170596,-0.05198856,0.038284,-0.031487476,0.02324912,0.017593952,-0.0020090202,-0.015545225,-0.109423086,-0.06020854,0.03148508,0.006244396,0.025849383,-0.044386845,-0.12219881,0.03135755,-0.044854805,0.080664456,0.020520655,0.029928612,0.030437034,-0.0056061256,-0.025996944,-0.010737015,-0.039916117,0.008378076,0.043189015,0.033290762,-0.043951683,-0.0017145541,0.06593808,-0.0269574,-0.0053795623,0.022383507,-0.005091967,-0.00083989307,-0.051210556,-0.044693246,-0.021466251,0.029660495,0.025035357,-0.015041959,-0.055947553,0.006809578,0.06449877,-0.028072061,0.08593764,0.09133042,-0.02678401,-0.006020045,-0.04231499,-1.6579198e-08,-0.03354488,-0.01349534,-0.08039783,-0.013953338,0.080314964,-0.04264471,-0.006487661,0.041977294,-0.053985856,0.10511411,0.03988169,-0.031242767,0.017224133,0.0360072,0.028039828,0.060123287,0.070991054,0.14426416,-0.030995855,0.003304799,-0.015325805,-0.02658142,0.020535378,-0.06391762,-0.04057135,0.0029170702,-0.043431364,0.02950495,0.04410986,-0.041488014,-0.042819787,0.0856427,-0.060118865,-0.038911127,-0.06753838,-0.047593426,-0.009357817,0.05768378,-0.024900928,0.032743663,0.019594831,0.06293687,0.02202435,-0.0048054773,-0.06549271,0.051624976,-0.050147224,-0.04253147,-0.01760097,0.075033374,-0.06537104,-0.056231603,0.09314038,0.08503399,0.11562803,-0.008986004,0.008458423,-0.009244958,-0.04508714,-0.058762744,0.04640288,0.048046477,0.025255399,-0.01058778} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.856176+00 2026-01-30 02:01:13.285721+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2383 google ChZDSUhNMG9nS0VJQ0FnSURVamJiTVl3EAE 1 t 2386 Go Karts Mar Menor unknown Esperaculo, adrenalina e velocidade esperaculo, adrenalina e velocidade 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Esperaculo, adrenalina e velocidade"} {0.023786293,0.025961228,-0.050786555,0.031474978,-0.051716655,0.037653666,0.06299444,0.06339204,0.014459572,0.006287857,0.057410557,-0.10516804,-0.037257988,0.0028716698,0.0015103769,-0.059834544,0.009407311,0.078095384,0.04983403,0.046635058,0.075997,-0.004991215,-0.03264822,0.025176775,-0.012139709,0.054767683,-0.041247845,-0.0029567522,-0.067471504,-0.032782048,0.042100135,-0.04980092,0.085930414,-0.07685707,0.043699246,0.012969947,-0.047154363,-0.052724287,-0.05108219,0.077750795,-0.10192761,-0.050661057,-0.098575294,-0.08128775,-0.022532882,-0.064420685,0.010301069,0.09294741,0.027660126,0.018662708,0.011426239,-0.043724112,-0.027097415,-0.031323805,-0.03011479,-0.008231627,0.010708208,-0.0441198,0.0004133995,0.036753558,0.036304582,0.043660667,-0.040471222,0.009994739,0.036974534,-0.052050002,0.035919726,-0.037777573,-0.027075462,0.037139796,0.074918285,-0.07477456,0.018587213,0.06378897,-0.04916107,0.027789397,-0.10440653,-0.061057247,0.054665726,-0.02034204,0.10234999,-0.008850141,-0.12741007,-0.0060642697,0.048899293,-0.029747605,0.03631072,-0.0371929,0.023268467,0.044983666,0.00764247,-0.0011720427,-0.13122162,0.0015189018,0.032651342,-0.02275734,-0.034465764,-0.011279695,-0.01821286,-0.007011579,-0.021256886,0.041452236,0.028620895,0.07005304,-0.041249234,-0.059865315,0.020828294,-0.051978003,-0.008781239,0.006319413,-0.062418617,-0.088760406,-0.057772897,-0.0129700955,-0.031643998,0.04289141,-0.005424264,-0.098924845,-0.0028400002,-0.04159243,0.058756918,-0.04964149,0.036843333,-0.023191232,0.09484542,-0.035761908,0.085895315,2.570307e-33,0.044509247,-0.082169905,-0.012814252,0.0721945,0.10525259,0.123576365,-0.02571292,0.014134552,0.08324681,-0.07130155,-0.072426215,0.0032552427,0.033565562,0.12493973,-0.025366694,0.067168266,0.027032584,-0.05240308,0.10200936,-0.00878088,-0.02353576,0.086260945,-0.0006355264,0.06174841,-0.090182915,-0.0091451295,-0.11006511,0.004181833,0.01428537,0.03896916,0.06337222,-0.033125415,-0.020713575,-0.003104234,0.03625629,0.042027663,0.02104871,0.025844837,0.066160105,0.00043777903,0.0227646,0.022996949,0.085544646,0.026099576,0.019408455,0.008216056,-0.0037500875,-0.037992395,-0.017440809,0.06075292,0.046700437,-0.03713844,0.012743352,-0.062142327,-0.053387564,0.097083114,-0.11123614,0.0473095,-0.06121582,-0.0007066469,0.010438018,0.124955535,0.03829578,-0.05248795,0.003959108,0.0046331747,0.00522503,-0.10466426,0.03684816,-0.011244848,-0.05186086,-0.029940018,0.051063135,0.035638496,-0.0026532582,0.012385196,-0.040325604,0.005399249,-0.066145085,-0.084107235,-0.09410067,-0.03496252,0.06823636,0.10761002,0.08605337,0.08998257,-0.028501453,0.040868517,0.10509687,0.07939756,0.020596232,0.011742366,-0.0060345577,-0.032881003,0.04233009,-3.9539766e-33,0.07058962,-0.055311453,0.014174205,0.04182691,-0.030683808,0.051929068,-0.087287195,0.0066224476,-0.06541255,-0.026328277,0.036540512,-0.07915798,0.014649346,-0.027341485,-0.0012913016,0.066163324,-0.015472244,0.010760191,-0.055445567,-0.034686755,-0.035719965,0.015883198,0.07134187,0.0050040158,0.065429755,-0.08373812,0.030012501,-0.078160405,-0.04409296,-0.05502792,-0.016345616,-0.01851336,0.024825664,-0.010271547,-0.052593637,0.054982774,0.050397802,-0.068825476,-0.032054063,0.05455087,-0.03285516,0.035787098,0.02997579,-0.03257715,0.052808337,-0.020906683,-0.02625865,-0.089608416,-0.01701699,-0.006448727,0.077121936,-0.0663321,-0.06529509,-0.03329963,0.06245134,0.0010117498,0.0004289146,-0.06250641,-0.044988517,0.038656738,0.10900099,0.015595484,-0.059805915,-0.08718973,0.111078255,0.03010586,-0.057303533,0.052525874,0.056388613,0.04881882,0.102568954,-0.04912974,-0.051362034,0.020422993,-0.04404991,-0.071330704,-0.080647886,0.03643757,0.027562551,-0.017535543,-0.047788564,-0.051655665,0.0079272995,-0.03647634,-0.06371084,0.012709546,0.0017723606,0.034042653,-0.043691117,0.021326238,-0.026929783,-0.023936715,-0.015200645,0.016541503,0.0730736,-2.320545e-08,0.02088528,0.0064223297,-0.016572662,-0.024877232,0.081091985,-0.056259062,0.074297234,-0.007713122,0.013982587,0.0077999565,0.014646835,0.071429886,0.022974918,0.032137975,-0.03242937,0.020924905,0.086294465,0.04982064,-0.022556433,-0.030323246,0.021692697,0.0014978067,-0.09215728,-0.05244318,0.05378693,-0.0585999,0.027830455,0.036767934,0.02117193,-0.0066910707,-0.033490308,-0.020736052,-0.0008469979,-0.05230965,-0.033605494,-0.035726056,0.01875167,-0.038295783,-0.0323908,-0.018470662,0.010901837,-0.0007352883,0.020177616,-0.035419244,0.047362912,-0.039528377,-0.0025491896,0.072407044,-0.011117363,-0.008509679,-0.05250806,0.039746173,0.061107155,0.05120483,-0.014379109,-0.05987352,-0.033203896,0.009076513,-0.045725267,-0.0037281476,0.08427253,0.12843555,0.017713264,-0.017514884} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.870509+00 2026-01-30 02:01:13.296396+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2384 google ChdDSUhNMG9nS0VJQ0FnSUNCcTZLby1nRRAB 1 t 2387 Go Karts Mar Menor unknown Simplemente genial! simplemente genial! 5 2023-01-31 01:52:39.833374+00 nl v5.1 V4.01 {} V+ I3 CR-N {} {"V4.01": "Simplemente genial!"} {-0.01686143,0.08515511,0.0059949383,0.0092967395,-0.08649633,0.07286169,0.04331178,0.08858036,-0.045728493,0.044919897,0.038214777,-0.111383945,-0.0012513624,-0.07035003,-0.034341346,-0.0594635,-0.07925636,0.07322133,0.020495111,-0.0163625,0.0043029445,-0.0059097433,-0.029496348,-0.010483005,-0.072133794,0.11108521,-0.026413187,0.07434,0.113794535,-0.06357218,0.06869221,0.08820686,-0.0021296663,-0.017975692,0.013901096,-0.019860025,0.06648453,-0.10718143,0.031661876,0.014730332,-0.08038391,-0.023744322,-0.11316688,0.009812599,0.0045072623,-0.011058835,-0.039720017,0.11064035,0.028118448,-0.011932225,0.0075505306,-0.048881385,0.046527896,-0.04417182,0.0058470755,-0.0026729875,0.031204686,-0.07427587,-0.011901275,-0.017984184,-0.0014500532,-0.05384461,-0.061145324,0.013938489,-0.000306788,-0.004857685,0.047454163,-0.0780615,-0.08466048,-0.0044011665,0.032148626,-0.04811498,-0.023514807,0.1102225,-0.09449144,0.010840259,-0.019062787,0.042343017,-0.03923825,-0.030804612,-0.0483055,-0.067025006,-0.045865748,0.042203728,0.031907476,-0.03640449,0.061359487,0.018954799,0.09355892,0.0023872284,-0.1308969,-0.008232094,0.01178714,0.016362984,0.008157115,0.024886891,-0.017339155,-0.049651176,-0.1252672,0.018183848,0.00093762774,0.059918065,0.10737502,0.05279302,-0.068198234,0.00023385588,-0.027945228,-0.071262136,0.022726895,0.017975274,-0.046779644,-0.032749202,0.07396735,0.03603229,0.015338648,0.011422666,0.042890146,-0.10093499,0.02301223,0.013662201,0.04086071,-0.061873622,-0.04345166,0.050054584,0.07438311,0.011804566,0.05355926,-2.1810818e-33,-0.018944688,0.033642285,0.01907808,0.07731149,-0.0070657153,0.04910676,-0.08919933,-0.011359103,-0.03628133,-0.02750603,-0.043429203,0.01525103,0.0013986757,0.065501474,0.02967724,0.03323154,-0.013621516,0.03582489,0.050509147,-0.037959013,-0.09580321,0.08792508,0.09079736,0.017921085,0.040038224,0.017579297,0.0030062913,-0.09217485,-0.045510057,0.011677906,0.05359138,-0.07259682,0.0026516928,0.021408204,-0.04987979,-0.008700635,0.050702088,-0.0015589035,-0.011268483,0.03858797,0.036272645,0.0036349653,0.06679338,-0.07398508,0.02449177,0.04619206,0.057037678,-0.060698062,0.013260988,-0.014248109,-0.056189917,0.010733857,-0.0322286,-0.021712385,0.03544008,0.08554761,-0.07028393,0.08255362,-0.062975734,-0.039828744,-0.011713935,0.054443274,0.049076974,-0.011581022,0.0026765568,-0.04226646,-0.007501894,0.06512803,0.064242706,0.0783107,-0.022988189,-0.047987867,0.041027486,-0.010245046,-0.011628339,0.054574024,0.10710305,-0.03431388,-0.024957173,-0.06033171,-0.069342256,0.080271065,-0.021397164,-0.033853654,0.058241945,0.0075884108,0.014003719,0.044375516,-0.022958696,0.013058824,0.00757758,-0.026244938,-0.014545453,-0.013032191,-0.06922084,7.6476616e-34,-0.06482541,-0.05687995,-0.09056992,0.03835799,-0.010446093,-0.007336071,-0.076759376,0.055801343,-0.037709095,-0.0300547,-0.023142235,-0.0042830408,0.062234633,-0.05172656,-0.02327764,0.0512642,0.07171462,0.052918334,0.012877054,-0.018269697,0.0176721,-0.030629372,-0.026375428,-0.057511613,0.0064507937,0.03600373,-0.04255752,0.0028031769,-0.06688641,-0.025144316,0.07192569,0.031259414,0.023399632,-0.04689871,0.07295268,0.076584145,0.073444456,0.075721964,0.03667117,0.00309711,-0.09633077,0.0830746,-0.013887683,0.099252306,-0.010800838,0.01705812,-0.025853954,-0.13755332,-0.09594156,-0.0035530683,-0.043051433,0.0049103787,0.007755241,-0.047220383,0.008172088,-0.0075672814,0.06281289,-0.008510355,-0.05196798,0.074369304,0.06737134,0.05637004,-0.04566564,0.0048547788,0.03345436,-0.036521878,-0.07584228,0.03385131,0.008389752,0.07717017,0.092260234,0.009601165,-0.059892282,0.049868654,-0.016551195,-0.03290873,-0.018688338,-0.0058910656,-0.0015918765,-0.039409205,-0.033097316,-0.016703457,-0.06458125,-0.03946292,-0.061684713,-0.05879144,0.06814372,0.0054471204,0.011345162,0.0093001425,-0.016067104,-0.01203742,-0.033642743,-0.014146412,0.0014963964,-1.5086751e-08,0.030519221,-0.040427025,0.020809237,0.048950452,0.09742557,-0.08910445,-0.07170232,-0.06429747,-0.04728156,0.010336691,-0.04873517,-0.030983374,-0.042875156,0.14893268,0.04360709,0.13989003,-0.044748954,-0.019073745,-0.041047856,-0.0013755236,0.054932766,0.036034483,-0.05195345,-0.051065005,0.014030981,-0.042207073,0.032724533,-0.029263666,0.013051467,-0.014022452,0.019628186,0.050789867,-0.06670343,0.043044467,-0.075135574,0.019833958,-0.023453541,0.07819849,-0.0072137066,-0.06683051,0.08097801,0.011505564,0.090648845,-0.043320112,-0.042329703,0.020524897,0.03800412,-0.010169722,0.0030076574,-0.013756829,-0.055096667,-0.007705346,0.09421551,-0.02050521,0.008266632,0.01409902,0.06723655,0.016021775,0.018179804,0.06058023,0.012649474,0.097182006,0.048390623,-0.017373415} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.88185+00 2026-01-30 02:01:13.308927+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2386 google ChZDSUhNMG9nS0VJQ0FnSURtal9HcGFnEAE 1 t 2389 Go Karts Mar Menor unknown Una buena pista una buena pista 5 2023-01-31 01:52:39.833374+00 tl v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Una buena pista"} {-0.015596676,0.007151413,-0.018758712,-0.02401123,-0.1013502,0.024098646,0.061364792,0.012065153,0.04613453,0.04334704,0.10641468,-0.009906085,-0.024541752,-0.020395357,-0.0036208993,-0.0047113164,-0.02365022,-0.026668472,0.07129205,0.008197809,-0.015398892,-0.061384015,-0.0975015,0.09682051,-0.07317861,0.0318133,-0.0028491253,-0.022925155,-0.03001431,-0.099035,-0.025245655,0.04295715,0.08234907,0.024013752,-0.021322837,-0.0021459237,0.052342817,-0.04024632,-0.003755675,0.06342638,-0.058745407,-0.02993357,0.011331621,-0.025767563,0.06378529,-0.09211411,-0.019340074,0.046701748,0.045435313,-0.017238216,-0.03789835,0.019257516,-0.019132439,0.06795587,0.00021533051,0.017014727,0.011647933,-0.010672225,0.017339619,0.07624841,0.0032205714,0.060619533,-0.04211428,-0.0018920696,0.024622552,-0.017570231,0.015674112,-0.025558542,-0.07530568,-0.0054411925,0.056848418,-0.039133307,-0.014212401,0.03319319,-0.001843345,0.03118159,-0.03434574,0.027753785,-0.034924086,0.031075796,-0.0040753293,-0.0060782926,-0.1150739,0.015410368,-0.00036998835,0.07530387,-0.021855762,-0.018016214,0.09139646,0.0035990572,-0.0771614,0.09547003,-0.021441735,0.02042148,0.012839664,-0.013046902,-0.0058576507,-0.061815813,-0.047912598,0.115599506,0.14436245,0.061645277,0.0142744165,-0.06477114,-0.03553327,0.03462025,0.08575849,-0.006819772,0.035325002,0.015433122,-0.040454526,-0.055263825,-0.022360243,-0.02649379,-0.07728661,0.06809089,0.04278488,-0.0708843,-0.040441126,-0.08923631,0.02488236,-0.0058670687,-0.0737763,0.0024668474,-0.03558181,-0.06495658,-0.010864257,-1.4866844e-33,-0.005713473,0.020743974,0.038057555,0.01768569,0.01690587,0.07879298,0.023632439,-0.101325475,-0.058756653,-0.02803129,-0.036843155,0.06598434,-0.072420955,-0.0050583333,0.047910336,0.118618615,0.004155137,-0.006511935,0.027942535,-0.031911112,-0.061829887,0.028223505,-0.054195866,0.014409547,0.0063121933,0.0110562965,-0.05830851,-0.1008042,-0.016770793,0.041008923,-0.010511156,0.10883629,0.053052355,-0.0038198864,0.03889113,-0.11799357,0.039303765,0.023204427,0.0075193387,0.061642982,-0.0007312763,0.010267463,0.045480102,0.010163354,0.003942622,-0.001021554,0.051246703,0.03717423,0.060403228,0.012553622,-0.023871182,-0.058154605,-0.07616037,0.009277161,-0.0007915142,-0.013162314,-0.11026563,0.05815219,-0.027526215,-0.015218958,0.07966839,0.0027016923,-0.002505095,-0.008094915,-0.12771095,-0.044985466,-0.004481865,0.081994355,0.14887048,0.056168806,-0.029448425,-0.038925465,0.0019213601,0.038001128,0.0036786988,-0.040305886,-0.0027038828,0.04618404,-0.0258967,0.036654927,-0.041146263,0.024246572,0.059060827,0.12422131,0.038403224,0.11656299,0.093716785,0.054262016,-0.061528772,0.06092894,-0.029624296,0.10038934,0.10172933,-0.04763908,-0.005054127,6.225866e-36,0.019834835,-0.08205262,0.00011840814,0.009415101,-0.0050827996,-0.0246079,0.010663042,-0.0037484535,-0.005383828,-0.05659321,-0.02653544,-0.1297847,0.12041994,-0.01855477,0.030321997,0.10535087,0.037292592,-0.039818484,-0.057595413,-0.014478443,-0.095771946,-0.01680299,0.060692444,0.047767513,0.012147296,-0.026814032,0.047810055,0.022552708,-0.10212602,-0.06808194,-0.016017446,-0.035055026,-0.048668306,0.018281465,-0.043518484,0.08595338,0.08065985,0.015266787,0.013034141,0.030299649,-0.018728701,-0.04021048,0.0023899649,-0.004184105,-0.0003176078,0.03657615,-0.006826692,-0.0887277,-0.050120898,0.022461707,0.045928698,-0.043082155,-0.029918198,0.05214164,-0.0038479448,-0.05953434,-0.06338893,0.011907466,-0.04730108,0.0044332873,0.026079943,0.017914446,-0.14043674,0.010840358,0.038924567,-0.048333615,0.014633317,0.009505743,-0.018177921,0.02724672,0.088634096,0.017371286,-0.076442,0.00013023983,-0.057182327,-0.03955332,-0.06968251,0.0173496,0.0069413832,-0.003828459,-0.05562515,-0.02077791,-0.03156515,-0.014405639,-0.02844389,0.027928956,0.024105413,-0.029239988,-0.004409538,0.09110106,-0.013750164,0.035713013,-0.040898792,-0.09392982,-0.024791729,-1.3740455e-08,0.041792523,0.021119371,-0.039324194,-0.0014074974,0.00078354037,-0.014627988,-0.012208446,0.020177357,0.008722937,0.030245345,-0.011429794,-0.008685969,0.07187446,0.044519458,0.0043819905,0.0391358,0.058723804,0.14061172,0.0053515225,-0.042726148,-0.011433356,0.009766874,-0.02460551,-0.08024023,-0.05168245,0.019701676,-0.012965712,-0.010003388,-0.04297792,-0.021168832,-0.03524897,0.0071398504,-0.026627708,-0.15092562,-0.0333552,0.010678327,0.034593668,-0.07988525,0.014621456,-0.082527734,0.06567513,0.0965607,-0.032524746,-0.039169554,0.028961003,-0.104872726,0.07187214,-0.062107027,0.04372952,0.025316175,0.012009839,0.025254065,0.08181802,0.022945464,0.08678483,-0.07267632,0.080359735,0.012964568,0.018534675,0.033016134,0.029116396,0.058614183,0.036357973,-0.049485672} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.904897+00 2026-01-30 02:01:13.327432+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2387 google ChZDSUhNMG9nS0VJQ0FnSURrcV9mVVNnEAE 1 t 2390 Go Karts Mar Menor unknown Muy chulos y economicos muy chulos y economicos 5 2020-02-01 01:52:39.833374+00 es v5.1 V1.01 {V4.01} V+ I2 CR-N {} {"V1.01": "Muy chulos y economicos"} {-0.029275488,-0.017250469,-0.0123538645,-0.012997173,0.0008214022,-0.06002737,0.11739007,-0.014745408,0.002278417,-0.004873429,0.083937414,0.03992396,-0.014934186,-0.033893928,-0.011596441,0.029249867,-0.004117199,0.036274083,-0.0267563,-0.03477604,0.07612517,-0.06860063,-0.1245768,0.08921019,-0.02221789,-0.08812321,0.019152602,-0.031244116,-0.022404542,-0.064894654,-0.034007106,0.10389923,0.12008802,0.04246177,0.0484571,-0.00956866,0.12859404,-0.024060823,0.036920577,0.04436968,-0.059063606,-0.044571213,0.0012719618,-0.011948976,-0.013026397,-0.031006178,0.0606161,0.05018103,0.029233184,0.006267947,-0.05582265,0.0067673577,-0.00850491,0.014183293,0.045895174,0.009395616,-0.05475152,-0.020736415,0.0408398,-0.037933324,-0.050473005,0.002579424,-0.06854594,0.053928684,0.06669757,-0.065215684,0.044418335,0.023016427,-0.16141205,0.06757407,0.123738594,-0.106630474,-0.09839292,0.014445974,-0.058658306,-0.010650697,0.070287205,0.0011619914,-0.024674617,-0.02245288,0.0055067646,-0.03626668,-0.0312734,-0.04063862,-0.044909127,0.027317123,-0.073733896,-0.025136521,0.05059305,-0.05837973,0.008252696,-0.008836182,-0.03372527,-0.00045392438,-0.0056631532,0.043633662,0.030725773,-0.081045955,0.023619935,0.1133278,0.066191934,0.019300852,0.12458438,-0.014107021,-0.0059377495,-0.032415852,0.015375196,-0.025383199,0.009416117,0.060654573,-0.08815984,0.013206292,-0.020436235,0.008275143,-0.02071311,-0.05325231,0.020243421,0.00020578694,-0.08674074,-0.059284464,0.046473294,0.067869544,-0.059011634,-0.004667888,-0.06782651,-0.04671747,-0.015984714,7.8662135e-34,-0.08475032,-0.100854725,-0.068606645,-0.0056591937,-0.04457358,0.021396456,-0.029661193,-0.047332276,-0.058158774,0.044543926,-0.051319614,-0.0004989993,0.020371597,0.06339131,0.06867943,0.0025728112,0.0015920204,-0.033447456,0.09961709,0.023645405,-0.03485042,0.026924998,0.0023947968,0.031076716,-0.00058798696,0.014433595,-0.031199299,-0.07920114,0.01758267,0.06463879,0.017617328,0.1021043,0.03588619,-0.04422188,-0.11779572,-0.099643834,0.008535462,0.03765161,-0.010096684,0.009057986,-0.009880788,0.008594598,-0.05749705,0.023873707,0.041772082,0.020181293,0.0894695,0.04611488,0.08232209,0.04257327,-0.09850341,-0.07456774,-0.028453987,-0.06804077,0.014396801,-0.011830645,-0.058496587,-0.039907046,-0.0056494735,-0.06888339,-0.015064734,0.00016188654,0.019919723,-0.10069138,-0.04223789,0.036581416,-0.01849163,-0.00057938905,0.0831198,0.08051608,-0.0542102,0.028160991,-0.064963385,0.029317547,0.004288381,0.0015705716,0.05001527,0.017994968,0.026595999,0.022712734,-0.020453949,0.046631984,0.059150897,0.03648201,0.070191436,0.052513056,0.041205663,0.05942628,0.034467448,0.08565694,-0.14177033,0.038670715,0.00468368,-0.036036607,0.017941272,-1.6129487e-33,-0.028329294,-0.029326353,-0.014319603,0.06962438,-0.032885566,0.0023774472,0.008251603,-0.017231863,0.0065734154,-0.032708507,-0.11691454,-0.06817048,0.066646084,0.025520576,0.033330444,0.07033649,0.015980555,0.0010318323,-0.09100607,-0.029264456,-0.040220182,0.06221418,0.0450263,0.036325205,-0.06545806,-0.007916565,-0.09332124,0.028994322,-0.05534206,0.00012832673,-0.00022255036,-0.0693839,-0.054309446,0.06236677,-0.057440355,0.01446074,-0.028241565,0.05882369,-0.040838365,-0.00054940506,-0.009945315,0.05954007,-0.02153696,0.022688683,-0.0053677494,0.015192288,0.03000404,-0.0650317,0.00049320277,-0.08698519,0.06007946,0.029919019,0.0023201688,0.011168271,0.04533547,-0.020762363,-0.03383338,0.0065760547,-0.1275423,-0.007639643,0.02538229,0.021973098,-0.0932016,0.03410138,0.10276971,0.053521898,-0.017922735,-0.028652202,0.020568121,0.015811471,0.07528363,-0.014388655,-0.1106983,-0.036315292,-0.018545927,0.038651917,-0.12177991,0.03889625,0.035325933,0.07627343,-0.008501632,0.038017754,-0.018563772,-0.03510508,-0.02578396,-0.008645332,-0.04470378,0.021726308,0.055603523,-0.026038224,-0.0078071496,0.0050824,-0.01923059,-0.025967091,0.008704889,-1.719937e-08,0.017078646,-0.05686894,0.038108632,0.029400002,0.008676755,-0.032343898,0.005189455,0.038616404,0.07207426,0.100665845,-0.0023391144,0.01699155,0.010157672,0.0937705,-0.007815858,0.054194566,0.03377751,0.07026969,0.023654478,-0.0663835,0.14052676,0.045161247,-0.0171878,0.063625604,0.01343366,0.05586669,-0.02826228,0.02184198,-0.03823102,0.115545794,-0.023474533,0.00747721,-0.062358133,-0.08396331,0.007644925,-0.025749117,-0.041981723,0.011995393,0.039385945,-0.04150276,0.042382646,-0.03793475,-0.008035248,-0.017070396,0.03210114,-0.042759728,0.008733508,0.0016614153,0.04637858,-0.0018887358,-0.024689911,-0.0042377207,0.04535236,0.049642682,0.025113517,-0.099340655,0.06496016,-0.028607,-0.041607503,-0.027927704,0.023918929,0.044359714,0.04325444,-0.09334701} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.915959+00 2026-01-30 02:01:13.329624+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2388 google ChdDSUhNMG9nS0VJQ0FnSURTLXNqOHFRRRAB 1 t 2391 Go Karts Mar Menor unknown Genial !!! genial !!! 5 2021-01-31 01:52:39.833374+00 ca v5.1 V4.01 {} V+ I3 CR-N {} {"V4.01": "Genial !!!"} {-0.028723758,0.049386486,0.015241932,-0.021134976,-0.046242874,0.027361795,0.080768034,-0.023484457,-0.033231974,0.012568751,-0.012220158,-0.04853435,0.012015307,-0.049815252,0.0049472535,0.021044213,0.010479691,0.03520665,0.018132987,0.004533351,0.021877937,0.05437496,0.024692643,-0.02242491,-0.054885767,0.07069834,-0.026366778,0.1108253,0.05983114,-0.058852784,0.021660844,0.11453982,-0.047413863,0.027585076,0.004059021,-0.02413672,-0.02952127,-0.034890026,0.02104441,-0.0080490075,-0.011244401,-0.042631708,-0.077944994,0.011479143,0.041543294,-0.033846285,-0.095179915,0.036621172,0.056033872,0.053661674,-0.015974985,-0.013539874,0.08694957,-0.0022885783,0.00046254465,-0.04174795,0.052485213,-0.20834704,0.024279224,-0.010521858,-0.04790652,0.02675264,-0.092988744,-0.020375617,0.020323334,0.015091883,0.05276989,-0.06629398,-0.045722857,0.008005454,-0.006728411,0.0059637916,0.021322338,0.046812985,-0.124901086,0.116959535,0.080768615,-0.0467404,0.034696568,0.029960422,-0.036729075,-0.0530691,-0.03014028,-0.019738015,0.011065732,-0.032124233,0.07977083,-0.040028617,0.013219396,0.0070502996,-0.11125098,-0.030282326,0.06533362,0.059774514,-0.06386068,0.06547374,-0.013712879,-0.11218315,-0.08335569,0.04583175,-0.044673894,0.06595365,0.037114453,0.011169645,-0.034498647,0.054115813,0.012377649,0.06507989,-0.019424442,0.017372929,-0.051737748,-0.038540456,0.014821543,0.057337575,-0.0013325431,-0.031135708,0.01740449,0.03950056,-0.0036605592,-0.005562531,0.05792376,-0.05294778,-0.08458373,-0.00082101824,0.06472127,-0.027146084,0.037465535,-3.9690232e-33,-0.028074678,-0.0055327304,0.03561424,0.030694576,-0.0048016906,0.06519179,-0.08540062,0.0184656,-0.06614115,-0.04151232,-0.102944784,0.008971644,-0.056223545,0.06706729,0.0062225093,0.00047440993,-0.08373979,-0.0041126064,0.015509363,0.010108009,-0.027080733,0.08909499,0.07185319,-0.009183695,-0.040407322,0.07361568,0.055688914,-0.07360586,0.0011775091,0.034159873,0.0042053107,-0.06954515,0.012565935,0.023512056,-0.027274204,0.0008490723,-0.009209138,-0.046770316,-0.005198331,0.08684267,0.02347844,0.028059183,-0.0031236168,0.03152326,-0.054878723,0.023766952,0.059686992,-0.0069812243,0.0029156513,-0.040335003,-0.043292787,0.020894235,-0.09271303,-0.020430893,-0.010796937,0.020201672,0.013535406,0.0094501395,-0.036417313,-0.06141788,0.004315479,0.056146864,0.10649596,-0.063754514,-0.0030323649,-0.06215823,-0.027215969,0.034217443,0.0006267464,0.07628552,0.03411944,-0.01975184,0.022380222,0.030615339,-0.08656579,-0.015811143,0.07025875,0.0030892587,0.028883925,-0.046082247,-0.03685125,0.12647256,-0.0482309,-0.09652564,0.0722382,-0.022069095,-0.017711407,-0.011452703,0.036534242,-0.0720925,0.03752758,-0.02846194,0.03557914,-0.01839079,-0.123311974,4.7373644e-34,-0.033599373,-0.031347897,-0.0032305957,-0.004599869,0.014613698,-0.06344428,-0.047489945,0.036317952,-0.07800909,0.015157406,-0.04174563,0.05722342,0.0762127,-0.04868949,-0.014557836,0.010560929,0.106024645,0.026426557,-0.025131285,0.0036295524,-0.04040808,-0.007006959,-0.01774846,0.021122463,-0.065818995,0.062185492,0.042669524,-0.04056735,-0.10009444,0.027774544,0.058099516,0.073411345,-0.00180745,0.018224651,0.12789597,0.054912068,0.08199038,0.054338526,0.0063230675,-0.018294064,-0.038782462,0.11538365,0.008499677,0.08977563,-0.027079564,0.011184791,-0.020724362,0.015306293,-0.016856024,0.078056484,-0.083419874,0.07558011,0.0003894795,-0.08752339,-0.027828075,-0.0065977955,0.06275994,-0.04630762,-0.027824048,0.05843011,0.013123026,0.023367394,0.027390575,0.051796805,0.06954605,0.0069264825,0.020748539,0.06244127,-0.015835512,0.02897019,0.041415863,0.048631415,-0.09214595,-0.010663707,-0.011285151,0.047778785,-0.027770502,-0.031237701,0.010385143,-0.05389899,-0.08891913,-0.006669309,-0.055547375,-0.022815887,-0.055270687,0.009064022,0.0997736,0.048438907,-0.025537502,-0.018153818,0.032899864,-0.042147335,-0.07157225,0.007979213,0.032257102,-1.7810022e-08,0.03930115,0.076684386,0.0511719,0.023973193,0.044171996,-0.02101036,-0.16069546,-0.048179146,0.0383833,-0.010651149,-0.008891075,0.062840834,-0.04885797,0.09110099,0.044615917,0.07125198,-0.07286125,-0.030880075,-0.073055975,-0.020217065,-0.026202425,0.03238127,-0.05282902,-0.066357665,0.051709976,-0.06659258,-0.008080454,-0.025751669,0.003675244,0.049103152,0.014024843,0.013532607,-0.18637666,0.002976042,-0.014795195,-0.024631089,0.059180666,0.05549474,0.058682773,-0.08217244,0.021924539,-0.058233656,0.031056985,-0.03463153,-0.095951326,0.03883042,0.046985947,-0.016411128,-0.011326255,-0.04889041,-0.08329653,0.015459382,0.06903053,0.0022869909,0.06351237,-0.0034267323,0.007354224,-0.024036303,-0.026525278,0.03225998,0.027991597,-0.048556812,0.013747926,-0.007023687} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.928887+00 2026-01-30 02:01:13.337505+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2389 google ChdDSUhNMG9nS0VJQ0FnSUNJcE5fMTVRRRAB 1 t 2392 Go Karts Mar Menor unknown Que buenos ratos que buenos ratos 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Que buenos ratos"} {0.01217946,-0.0090576615,-0.024952322,-0.014702209,-0.007171128,-0.0026439026,0.09829613,-0.01452028,0.009784291,0.06505946,0.055417985,0.031150833,-0.089867294,0.07361853,0.014479608,-0.022101248,-0.025300927,0.023214035,0.045697443,-0.01119595,0.05577156,-0.0562096,-0.08970594,0.069209,-0.07650969,-0.032842632,0.012538353,-0.0029935846,-0.017510723,-0.04946527,-0.004126406,0.094324365,0.04218885,-0.04316334,0.027223065,-0.0361324,0.07388609,-0.031369083,0.024449194,-0.018777994,-0.050591547,-0.030704688,0.022646157,0.011505529,0.0010877638,-0.035952467,0.06456333,0.066943556,0.11394669,-0.055831462,-0.0014189064,-0.025644079,-0.07443838,0.030380297,-0.041601535,0.062123362,0.008846225,-0.09102637,0.02696184,0.051525313,-0.059937768,0.045989074,-0.09594725,0.054722644,0.06567049,0.02391761,0.053542096,0.023223655,-0.07000429,0.040448695,0.12996852,-0.032483242,0.08302606,0.07267028,-0.04557688,0.011966183,-0.035051703,0.036025744,-0.028990943,-0.03669145,0.01352135,-0.0041693286,-0.041619714,0.02155621,0.016875882,0.031393923,-0.06564328,0.0053342264,0.02512134,0.018678132,-0.039309047,0.035088126,-0.047130853,-0.022293488,-0.011545422,-0.01229875,0.08276373,-0.015550144,-0.048484728,0.10569547,0.08535427,0.06990233,0.024959413,0.0068239816,0.022372281,-0.016521292,0.029405603,-0.053357996,0.050309747,0.051208608,-0.09893714,-0.020287212,-0.038406663,-0.020665294,-0.03787623,-0.05896266,0.10415039,-0.030112216,-0.06484274,0.0054760873,0.04783959,0.03384884,-0.052876912,-0.039334722,-0.03456124,-0.058096185,-0.02149428,-2.1343152e-33,0.01183592,-0.046504453,-0.0115253,0.028898237,0.008875756,0.0645505,0.01614187,-0.03690022,-0.025487604,0.049415044,-0.10990281,-0.080098175,-0.024239732,-0.008282462,0.09250458,0.09326616,0.010494337,-0.033179276,0.098935515,-0.020563586,-0.09139954,0.02172083,-0.023130586,0.025371244,0.041359074,0.062218014,-0.057179667,-0.06975279,-0.046463024,0.06604772,0.032047242,0.10673862,-0.014262009,-0.02396324,-0.008209907,-0.10671198,0.052925583,-0.051379133,0.0152076585,0.0145742865,0.06793687,-0.025314651,-0.031192124,0.010946723,0.030960264,-0.022591157,-0.026399115,0.009122489,0.07254739,0.016130488,-0.05238202,-0.010315988,-0.0429008,-0.050628163,-0.004651611,-0.027277306,-0.047961745,0.041119557,-0.04519451,0.002747775,-0.0014457589,-0.002297362,-0.046197303,-0.042501323,-0.01983151,0.03911926,-0.017816601,-0.019216653,0.08893895,0.012595657,-0.08573173,-0.052581377,0.04387577,-0.038216934,-0.04696366,0.0003582586,-0.00341578,0.031098597,-0.012588136,-0.003979828,-0.079040185,0.08308826,0.024522197,0.09199263,0.10003835,0.10915143,0.080855995,0.014761356,-0.026618253,0.007145651,-0.03880981,0.03566235,0.03382987,-0.06621294,-0.037883498,5.906156e-34,-0.06520763,-0.050981563,-0.004099634,0.004360656,-0.079577826,-0.012529397,-0.08972117,0.04550417,0.018027117,-0.08243298,-0.097967476,-0.09108241,0.10328299,-0.051432863,0.047633875,0.08218079,0.033961453,-0.05024161,-0.075896405,-0.056409925,-0.02307504,0.019736515,0.07517623,0.0030977607,0.024947578,-0.09395489,0.05835644,0.05424483,-0.018230574,-0.027843118,0.09842132,-0.042592198,0.02771655,0.0809383,0.0008342072,0.09718007,0.014677951,0.012983341,-0.01919387,0.040827643,0.023062587,0.07087023,0.00025464172,0.005592623,-0.030955363,-0.0031025729,-0.019583499,-0.04794776,-0.04071762,-0.015279406,0.061451167,-0.10390787,-0.08213965,-0.017293042,0.046158973,-0.100487545,-0.07865306,-0.010309731,-0.045940787,-0.067518465,0.036816716,0.059626263,-0.12442206,0.0028635405,0.053805556,-0.014083932,-0.017670883,0.057557773,0.03942973,0.10739247,0.12446671,0.046530593,-0.07201867,0.065151215,-0.032981034,0.032035057,-0.0141217755,0.022399558,0.060922723,-0.020371724,-0.037956633,0.0352115,-0.023915328,-0.0050676945,0.010728189,0.015826188,-0.010414401,0.08001187,0.05431575,0.018193737,0.096365705,0.010791138,-0.07727016,-0.045865178,-0.0731614,-1.21708466e-08,-0.0154805,0.0008498631,-0.051378097,0.048393197,0.052443843,-0.009328404,0.061103344,-0.0014977579,0.050827984,0.06358446,0.03954794,-0.030727467,0.050709225,0.053757776,-0.03743743,0.057518087,-0.0020398844,0.11366122,-0.01064216,0.0022307087,-0.003534991,0.046470117,-0.017935079,-0.052762732,0.009825437,-0.058316506,-0.074194156,0.027709937,-0.039840765,0.030479817,-0.043168057,-0.03683451,-0.04093164,-0.07524296,-0.012725139,-0.039870303,-0.024302978,-0.008600553,0.0128181465,-0.07832604,0.06915912,-0.015666062,0.021496324,-0.017903112,-0.028891325,-0.11484048,0.022274012,0.020257054,-0.056096546,-0.019581854,-0.017439988,0.052305967,0.07849795,0.009622105,0.0053320173,-0.08839937,0.021402346,0.00019077661,0.004720622,0.034163993,0.06484836,0.08689264,0.0006729556,-0.014416227} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.940647+00 2026-01-30 02:01:13.343903+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2390 google ChdDSUhNMG9nS0VJQ0FnSUNNeVppcjRRRRAB 1 t 2393 Go Karts Mar Menor unknown Circuito Kars de 10 circuito kars de 10 5 2020-02-01 01:52:39.833374+00 it v5.1 E1.03 {} V+ I3 CR-N {} {"E1.03": "Circuito Kars de 10"} {-0.15648879,0.08294997,-0.026348822,-0.031813074,-0.04784506,0.039429024,0.047772523,0.11036202,0.01291372,0.03796402,0.1267632,-0.076288134,-0.020919444,0.033175897,-0.04587338,0.0055403756,-0.06364621,0.058296163,-0.0025614197,-0.059340816,0.012100125,-0.03387798,-0.06607839,0.08009809,-0.016036179,0.027872866,0.051006086,0.025112487,-0.028851368,-0.09460944,-0.032720745,0.029384866,0.0022995963,-0.020406317,-0.009701541,-0.022102166,-0.03220632,-0.034807153,0.00827232,0.0051778248,-0.034457523,-0.07862348,0.058484256,-0.09853364,0.03257569,-0.0058616595,-0.02070977,0.043561436,0.033135295,-0.07408456,0.03586108,-0.03338156,0.039394327,0.011074943,0.017098438,-0.035587292,-0.0002238528,0.08372847,0.061662443,-0.0015804209,0.03048339,-0.0013777096,-0.047328513,0.06842631,-0.058339942,-0.023743395,0.04127441,-0.00742848,-0.1122721,0.07203992,0.10013733,-0.10783216,0.021246536,-0.0833616,0.0022682338,0.016147586,-0.05992424,0.016252236,-0.030620584,-0.059532672,0.08606873,-0.07772795,-0.005889483,-0.09214848,-0.070034064,0.011605751,0.044209875,-0.05663751,-0.0079283295,-0.0381244,-0.050522957,0.0013456213,-0.030381309,-0.05962337,-0.0389439,-0.022145465,0.00011455125,0.0168713,-0.0073063276,0.081654064,0.101148315,0.059650745,0.0122960275,0.03233105,-0.04398771,0.052026413,0.031194046,-0.008048524,0.02797965,-0.014303359,-0.03291591,0.05559969,-0.07426353,-0.051204134,0.081287496,-0.07588285,0.04476393,-0.01164271,0.020171372,0.0026267935,0.043222938,-0.08350899,-0.04517788,0.015548861,0.013093695,-0.028390292,0.10777763,1.1164395e-33,-0.006179737,-0.027431604,-0.006808759,-0.026431229,0.07941779,-0.009280811,-0.070816725,0.01843268,-0.110339336,-0.029712394,-0.07179319,0.021608576,-0.011271764,-0.023582153,0.10784203,-0.009544064,-0.02360827,-0.048694503,0.092252254,-0.033852287,0.027682781,-0.06941453,0.012669904,0.11475925,0.008038642,0.07419456,-0.016174115,-0.031608503,-0.08101154,-0.015131103,0.046697546,0.055118587,-0.0015146363,0.013293111,-0.08158874,0.046745393,0.07354075,0.037434753,0.07241826,-0.08911035,0.03539115,-0.09041882,0.010206776,0.083221935,0.096838064,-0.026106013,0.038388718,0.03361222,0.11399605,0.03112141,-0.1028372,-0.04509452,-0.070317835,0.039991155,0.08019979,0.027240328,-0.02276477,0.07127181,0.015890013,0.040168058,0.077503845,0.032943297,-0.07357763,0.004134202,-0.071625024,0.030160185,0.03978698,-0.113007694,0.08939592,-0.032093104,-0.11851557,0.021737013,-0.0040470185,0.0024765676,0.018977875,0.0323515,0.0026016783,-0.017723646,-0.028468773,0.04976221,-0.058627985,-0.018815497,0.019586762,0.06395187,0.07574479,0.071328476,-0.015269441,0.0026944976,0.04198894,0.09273116,-0.010917214,-0.018346878,0.07943005,-0.00087089936,0.056557972,-1.7500266e-33,0.043420415,-0.01792978,0.03430831,0.05921816,-0.028448261,0.01137774,-0.016750082,-0.0076180315,0.03350078,-0.014364768,0.020562047,-0.011413314,0.06301203,-0.061098825,0.030866032,0.028998958,-0.020175142,0.0062166927,-0.033353705,0.004050939,0.03931293,0.1403496,-0.022331376,-0.045322176,-0.050623327,0.0042103194,0.026535261,0.028703028,-0.039973065,0.05366966,-0.0034093612,-0.043783475,0.0055052484,0.08016891,-0.054059736,-0.024582103,0.0827576,0.03258082,-0.058859494,0.030869849,-0.0031118556,0.08628894,-0.02710032,0.004528769,-0.053116705,-0.017435614,0.020392554,-0.034670107,-0.06766847,-0.024315877,0.050723385,-0.0434001,-0.024437683,-0.00087685784,-0.030043095,-0.012250444,-0.022520633,0.021202622,-0.07589969,-0.02553665,0.051544886,-0.018031612,0.04917577,-0.011863626,0.021284856,-0.013230075,0.017767638,0.10620223,0.06191481,-0.00340801,0.045059215,-0.011460119,0.0043076915,-0.0050604544,-0.015512092,-0.06162132,-0.082198426,0.120746315,0.027482955,0.0035813553,0.011563225,-0.028629724,-0.08353797,-0.06719371,0.028170075,-0.044043113,0.053069517,0.010401674,0.077680916,-0.03173537,-0.00080870383,0.07883849,0.038197204,-0.0076703653,-0.011701861,-1.625699e-08,0.04082675,-0.026737524,-0.08626084,-0.029015921,0.11148946,-0.085453615,0.047108363,-0.05004834,-0.08960545,0.017840602,0.05063428,0.006000179,-0.07118505,0.056130916,0.040765874,0.018479796,-0.016252294,0.07463377,0.015155613,0.01670662,0.031948194,0.010382618,-0.006432281,-0.04411891,0.044677414,0.06693502,0.00020905116,-0.0017639147,0.0069775027,-0.02553403,0.019501252,0.040197928,-0.083349414,-0.048023462,0.06939738,0.03150331,-0.030170757,0.01914498,0.01040847,-0.0027834924,-0.041492738,-0.061775837,-0.032113813,0.011471626,-0.0808933,-0.013855837,-0.013503164,-0.021897534,-0.0016266693,-0.002362283,-0.09745267,0.010613077,-0.02902517,0.025388174,-0.0027643996,-0.025659049,0.07605961,-0.042646304,-0.096027784,0.035789818,0.01897189,0.08406585,-0.04302973,-0.045086265} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.95136+00 2026-01-30 02:01:13.352792+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2391 google ChZDSUhNMG9nS0VJQ0FnSURVd1BfbUJREAE 1 t 2394 Go Karts Mar Menor unknown Los chicos de pista muy majos los chicos de pista muy majos 5 2020-02-01 01:52:39.833374+00 es v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Los chicos de pista muy majos"} {-0.020979188,0.007058493,0.010129693,-0.0022446758,-0.012842411,0.035473946,0.083291955,0.010259422,0.040236246,0.037343454,0.09253029,0.005532162,0.010452731,-0.022267923,-0.013448861,0.0045862063,-0.044890285,0.03819903,0.033974268,0.0019743922,0.007618782,-0.051585004,-0.09270395,0.12671004,-0.11610325,-0.017456621,0.018447895,-0.02404898,-0.0046807514,-0.049395937,0.02395168,0.07317603,0.09755455,-0.0024254138,0.03333636,-0.0133940345,0.06880606,-0.03213415,-0.014796222,0.04236254,-0.06661099,-0.014183737,0.013261113,-0.037156664,-0.029199867,-0.07231698,-0.020134132,0.038255,0.052180145,-0.036295,-0.04049835,0.0033282968,-0.045688998,0.025455147,-0.015889514,-0.014656994,-0.057404317,-0.025673976,0.031103067,0.045178764,-0.07279897,0.03202841,-0.037656095,0.0536897,-0.027878132,-0.04016503,0.0033007616,-0.032682657,-0.07651941,0.04237246,0.08977535,-0.030873638,-0.009373865,-0.0012961309,-0.021773288,0.031305097,0.00076682674,-0.027190428,-0.072818734,-0.05154821,-0.020370385,-0.045072414,0.001207693,-0.03904758,-0.036374956,0.02857027,-0.043258585,-0.0036007462,0.05676566,-0.03563472,-0.031653464,0.020454474,-0.031487938,0.035426643,-0.031626314,0.07897213,0.042064358,-0.07065737,0.031665668,0.075496,0.10848866,0.024864517,0.03594488,-0.050091304,-0.03325819,-0.0011672392,0.048661027,-0.06371143,-0.022785777,-0.04122237,0.0077204085,-0.03892133,-0.026554111,-0.0026625479,-0.03435582,-0.020797309,0.05533339,-0.04893326,-0.07614446,-0.051487576,0.020644747,0.036864504,-0.09171636,-0.019079188,-0.08059982,-0.009395552,0.008533217,1.7093157e-33,-0.026441852,-0.09403681,-0.006045704,0.027731726,0.0394698,0.018431865,0.03433299,-0.07314765,-0.072864905,-0.013927292,-0.0025970517,0.039615188,-0.05511341,-0.019847944,0.016179597,0.07878177,-0.0056287018,-0.039522648,0.0062810876,0.033795923,-0.051984094,0.036691796,-0.020522656,0.008831124,0.007823961,0.12960905,-0.03269516,-0.11802898,-0.057146337,0.05508096,-0.036753986,0.07389618,0.036907937,0.0435078,-0.01580487,-0.03655192,-0.009874802,-0.014993001,-0.010723328,0.028054168,0.029641913,0.009594588,-0.048632987,0.062453624,-0.04722583,0.038761683,0.052624576,0.019754801,0.04587687,0.040411055,-0.04242886,-0.067509495,-0.073570296,-0.035616837,0.01984707,0.00665732,-0.07846518,0.009020378,0.0040728464,-0.038033884,0.09098168,0.010524645,-0.003296247,-0.053045157,0.013088295,-0.08262874,0.005764098,0.03268656,0.12855886,0.06366931,-0.032399137,-0.03208623,-0.0020206783,0.03391198,0.05546542,-0.050733536,0.018554866,0.07830901,-0.027057009,0.0804438,-0.043147888,0.037409406,-0.005388827,0.1052976,0.07705456,0.066967666,0.072755754,0.036517084,-0.0889296,0.052226692,-0.1147572,0.05482252,0.12574984,-0.04772982,-0.05596234,-3.274799e-33,-0.03586403,-0.0077276207,0.027939824,0.05344996,-0.0038219315,-0.00820444,-0.016425883,-0.023534559,0.03387715,-0.021806952,-0.13309738,-0.13050403,0.10268269,-0.03752172,0.019788092,0.10090878,0.080220014,-0.012444606,-0.11658271,-0.0041446164,-0.076744415,0.043092027,-0.028038371,0.064273946,0.009473044,-0.033786558,0.028696897,-0.019578746,-0.11262468,0.018915754,-0.014800004,-0.04620174,-0.057313576,0.06438517,-0.04423745,0.046564396,0.009056503,0.08923657,0.006189874,0.033888076,-0.0293351,0.026134523,0.056977715,0.037180137,-0.033098333,0.053395867,-0.008738939,-0.08693006,-0.06597741,-0.0027490556,-0.034338936,-0.04265411,-0.07533846,0.06755192,0.053194195,-0.06319112,-0.051385812,0.0069487104,-0.101056606,-0.037027273,0.007874201,-0.023069406,-0.120818794,0.030279424,0.033478316,0.041631985,-0.0146368,-0.051409315,0.011730209,0.014860338,0.08378483,-0.0080471095,-0.08076887,-0.012976244,-0.09236847,0.01101609,-0.11553206,0.018917955,-0.0039157756,0.014863481,0.057339817,-0.028947052,-0.05684424,-0.025701102,0.03287298,0.012358524,-0.03583843,0.014718095,0.06278128,0.009888211,0.031797044,0.06404778,-0.023511114,-0.075738214,0.017482402,-1.9288485e-08,0.0060083983,-0.0059382115,-0.110843346,0.02689566,0.02032641,0.00073819194,-0.026928421,0.04695174,6.218569e-05,0.13551447,0.034782086,0.005026609,0.04227316,0.057439648,0.0155710755,0.08412913,0.07926378,0.08167685,0.025417164,-0.0020521125,0.00045432596,0.026666947,-0.0036719255,-0.016643738,-0.032408778,0.037705425,-0.034443766,-0.036957264,0.0022638182,0.018228292,0.013885148,0.029208248,-0.105375476,-0.09443715,0.03082485,-0.036391735,-0.037855946,-0.06050443,0.033795897,-0.019751005,0.084103934,0.08233115,-0.021551136,0.010277061,-0.023740057,-0.07392615,-0.003409402,-0.040925223,-0.0018985989,0.062939584,-0.005762489,0.0008803668,0.03305114,0.06773897,0.069299474,-0.050952684,0.0765125,0.008570741,-0.02187973,-0.0128749255,0.034008816,0.16480392,0.08083509,-0.06452342} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.963893+00 2026-01-30 02:01:13.35649+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2393 google ChdDSUhNMG9nS0VJQ0FnSUN3N3NDQzlRRRAB 1 t 2396 Go Karts Mar Menor unknown Schön war es wieder schön war es wieder 5 2018-02-01 01:52:39.833374+00 de v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Schön war es wieder"} {-0.03670363,0.063933365,0.005080572,0.00029811822,0.013791422,0.022661215,0.068197615,-0.025749242,0.0103085525,0.03714295,0.057226364,-0.03136062,-0.017111253,0.046700805,-0.019775739,-0.05866891,-0.15878938,-0.011471685,-0.027704827,-0.035832305,-0.015650468,0.040534794,-0.011277707,0.1186907,0.057784628,-0.011686177,-0.0066621574,0.009118714,-0.0118943155,0.011239065,0.01489795,-0.0046717646,-0.10857831,-5.518978e-05,-0.026615374,-0.03752366,0.013521124,-0.00035693042,-0.019647015,-0.042965207,-0.15608054,-0.05114831,-0.021952018,-0.045562107,-0.061861243,-0.0026421705,-0.029398816,0.051533356,-0.034573756,0.047746193,-0.01899421,-0.07593123,0.011843582,-0.032910097,0.022530312,-0.023685856,0.0073788897,-0.011663844,0.07635209,-0.016061928,-0.022726098,-0.027836388,-0.011374447,0.0049243816,-0.06250766,-0.07196211,0.10044256,0.04322671,-0.1387211,0.071886405,0.05016171,-0.05478765,0.024050117,-0.033461083,0.012541379,-0.03400875,-0.051413875,0.0014124349,0.01290946,0.0219461,-0.00071204716,-0.015649023,-0.096076235,0.04765661,0.0572567,-0.016167404,0.03384831,0.0016215121,0.08372101,0.057140294,-0.08592085,-0.051788244,-0.0044178497,0.021978201,-0.035855293,0.019265782,0.054979533,0.035175852,-0.029711902,0.10348988,0.023548575,-0.09374143,0.04581771,-0.029236913,-0.025872266,-0.0028433828,0.020314544,-0.03552838,-0.014962792,0.006295296,0.006008662,0.0005949963,0.028288098,-0.017191686,0.03775862,0.033527877,0.045440134,-0.051570956,0.050130166,0.030495115,0.08073179,-0.008496098,-0.061892644,-0.005048757,0.045459785,-0.058193166,0.034727044,1.307595e-33,0.020980464,-0.045555905,-0.017159201,0.068632364,0.051620092,0.012154305,0.02595061,0.061864574,-0.096508525,-0.08951103,-0.09721732,0.0075992285,0.018651713,0.011661929,0.09997525,0.033778302,-0.026851056,0.04326098,0.052861854,0.030804427,-0.03538719,-0.019809153,-0.04812847,0.069777526,-0.011479215,-0.084345415,-0.08130159,-0.096651904,-0.045874648,0.052745644,0.058331907,0.0108374385,0.056695905,-0.009226558,0.0026717675,-0.022361558,-0.0037353497,0.022297855,0.031660613,-0.0032866176,0.086656876,0.038404286,-0.023398267,0.021951174,0.044071265,-0.0077123535,0.023711575,0.023589026,-0.043785356,0.08776142,-0.02030165,-0.028299391,-0.03025332,0.013600386,0.076087914,0.11315524,-0.057446968,0.06645501,-0.011889299,-0.034650665,-0.0028790943,0.040364217,0.054700065,0.03744285,0.009656637,-0.0966848,0.033885222,-0.007965778,-0.0070034764,-0.059364285,-0.0762086,0.047641322,0.049020916,0.002017189,0.01922151,0.034432717,-0.015331521,0.05912964,-0.07196741,0.007077049,-0.07454943,0.0023677694,-0.017052567,0.0871237,0.027726386,0.009242213,0.019158492,-0.07109297,0.038738303,0.050542828,0.007794974,-0.056231443,0.0004853626,-0.13691731,-0.053989105,-1.8027425e-33,0.034639094,0.010143147,0.0530389,0.058419503,-0.05923074,0.015311221,-0.035232097,-0.004206718,-0.04030167,-0.06955483,0.051353984,-0.077099405,0.078883946,0.021050058,0.017024422,0.060069233,0.115841985,-0.005208426,0.06094053,-0.02455328,-0.020087564,-0.013783777,-0.03820606,-0.03099696,-0.029300692,-0.038454574,0.05217442,0.06269578,-0.06954928,0.05673938,0.031554967,-0.056615856,0.007185892,-0.018070225,-0.0044293287,0.023692245,0.033674758,0.04756858,0.05282319,0.029021624,0.029658843,0.05172757,-0.027189419,0.10429834,-0.046014857,-0.025260068,-0.036985114,-0.03893304,-0.0042141564,-0.055755157,0.049398605,-0.02815852,-0.0040155854,-0.094937295,0.054976135,-0.057439107,-0.028680254,-0.055795092,-0.176347,0.06454813,0.025222437,0.0391752,-0.058939617,0.060314376,0.03250906,-0.0539313,-0.12156141,0.033398345,0.049016744,-0.009820561,0.072795376,-0.032565888,-0.019498292,0.03940038,0.016104909,-0.084765136,-0.023924872,0.08567652,-0.053932354,0.063952975,-0.014848423,-0.010497193,0.020857606,-0.1111354,-0.00967324,0.012207461,-0.031238647,0.028479459,-0.0067866133,-0.05584254,0.022935594,-0.008173832,0.047771182,-0.0407269,0.05738602,-1.7988597e-08,-0.00010897594,-0.040081434,0.0012523975,0.015153152,-0.029103484,-0.03827118,0.08842549,-0.06882797,-0.0423587,0.1072685,0.012029842,-0.0126488395,-0.002929522,0.04281069,0.014113381,0.0973164,0.030198073,0.018147988,-0.04457028,-0.048190653,0.056006614,-0.084054396,-0.003759491,-0.064810105,0.03442312,0.07448501,0.0047420645,-0.016901651,0.05133396,-0.08048337,0.0024676865,0.062416214,-0.05104369,-0.027975997,-0.06418493,-0.049249846,-0.084707856,-0.01988063,0.009329795,0.030300718,0.0023693535,0.15917282,0.009967767,-0.035476286,0.055810772,0.0378262,-0.05695401,0.0034535425,-0.02152927,-0.09198668,-0.0024009896,0.047146194,0.06358924,0.114859805,0.065602176,0.03984418,0.07613351,0.06581621,-0.050596718,0.00869198,0.024925098,0.10337763,-0.0070983632,-0.02274317} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:02.987848+00 2026-01-30 02:01:13.364045+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2394 google ChdDSUhNMG9nS0VJQ0FnSUNVbGU3UndRRRAB 1 t 2397 Go Karts Mar Menor unknown Très bien, à faire très bien, à faire 4 2020-02-01 01:52:39.833374+00 fr v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Très bien, à faire"} {-0.03442111,0.010846979,0.057374567,-0.04369654,0.03738269,0.030824352,0.078971036,0.065085344,0.036666993,0.09418886,0.015710982,-0.05825225,-0.0076829423,-0.022597557,-0.0014211703,-0.029422887,-0.046218406,0.02761785,-0.089087754,0.031449363,-0.019328678,0.014817417,-0.052513752,0.08472671,-0.09973627,-0.059943512,0.0032464347,0.03799302,0.031897634,-0.07891865,0.011837626,0.0029664105,-0.03134669,-0.020122796,-0.029833347,-0.046344046,0.058196615,-0.15203647,0.006283314,0.010937129,-0.06712238,0.00075440225,-0.082550935,-0.030098109,0.018896602,0.022551471,0.01368174,0.057651985,0.0063509336,-0.036506902,0.039203085,-0.002317306,0.01384566,-0.00011368484,-0.022802135,0.09013626,0.03998502,-0.047657836,0.039551497,0.052491974,0.0108150905,0.023848936,-0.054742925,0.006345821,0.033546336,-0.07195344,0.040003616,0.044967014,-0.0574321,0.059289154,0.043456137,-0.06136168,0.040859666,0.060136735,0.047119845,-0.012681572,-0.060179915,0.005109372,-0.033470858,-0.07777264,-0.025582101,-0.061293233,-0.005346812,0.013414928,0.045176134,-0.036230188,-0.014216424,0.025723346,0.12030166,-0.019429052,-0.104460694,0.07122945,-0.064516716,0.048423495,0.012645407,0.0063053626,0.08036177,-0.015242901,-0.028146945,0.1183799,0.06343312,0.048888776,0.017012937,0.015020338,0.025052894,0.038323738,0.01614726,0.015304604,0.015435938,-0.061554056,0.019768288,-0.0077018114,0.056660287,-0.0079204,-0.050721776,0.003351157,0.0024779509,-0.06266023,-0.045848154,-0.10035417,0.044114616,0.025243765,-0.054783933,-0.012088845,-0.015925892,-0.04293562,0.07121633,-5.7800523e-33,0.040228985,0.09813048,0.021284869,0.03182254,0.041224334,0.013624673,-0.04385815,0.09699448,-0.0689199,0.025585039,0.012888338,-0.003386486,-0.026428271,0.00782261,-0.005388335,-0.004199013,0.031068508,-0.06794512,0.059518117,-0.029895326,-0.03609496,-0.09118265,0.016829146,0.034940157,0.009927853,-0.04882552,-0.011570789,-0.019616226,-0.013276023,0.015428952,-0.019773988,0.05916338,0.055495966,-0.037544083,-0.025423395,-0.05063522,-0.014280444,0.08599395,-0.010832847,0.067327805,0.080192156,-0.009171398,0.011149774,-0.06861183,-0.008104933,-0.0047457777,-0.003025008,0.0126801105,0.06600222,-0.053830363,0.013059518,-0.05675516,-0.10651054,-0.0164019,0.0054641273,0.046958745,-0.04730674,0.06451846,-0.038779132,0.00088908593,0.10298074,-0.010123028,-0.07584573,0.07310025,-0.109183334,-0.018638797,0.026397454,0.036192335,0.094819814,-0.0016477592,-0.037558883,-0.0061528846,0.055660225,-0.003982779,0.01773683,0.016751973,-0.01079786,0.093903616,0.020032678,0.009625551,-0.062066276,-0.009937596,-0.029844448,0.07964255,-0.021065282,0.030744277,0.03248569,-0.02618304,-0.0060394322,0.036040206,0.014003764,0.033549745,0.08478531,-0.11088733,-0.042316698,3.3985588e-33,0.0140000405,0.0740149,-0.040066965,0.07822269,0.037449237,-0.00942615,0.008579193,0.06454375,-0.06064923,-0.052465193,0.02050821,-0.11390001,0.102957346,-0.04902526,0.040732767,0.105783366,0.037087355,-0.055978317,-0.022440536,0.030247359,-0.0062116794,-0.060835097,0.034253344,-0.025986848,-0.0053644506,-0.041084744,-0.026828911,0.027751477,-0.063429415,0.0258906,0.008553429,-0.034425974,0.012910261,-0.03218311,-0.00019756725,0.013147879,0.02643451,0.019683504,0.006975268,0.12825495,-0.050186764,0.03393616,0.020575518,0.06963851,0.02778005,0.034094814,-0.06815651,-0.11823669,-0.038836055,0.00046872508,0.120743364,0.007204385,-0.07189667,0.025953205,0.012831646,-0.029297572,-0.037834845,-0.03466599,-0.07068542,-0.027064947,-0.035561036,0.041915167,-0.12909481,0.002151734,0.04244347,-0.057170194,-0.1413362,-0.009116178,0.09371019,0.0045337067,0.08236179,-0.028344253,-0.021739095,-0.021290502,-0.09140233,-0.071686774,-0.002510998,0.01137774,-0.009020822,0.10246509,-0.07723365,-0.034257002,-0.014994321,-0.02971884,-0.0258075,0.018443419,-0.0702843,-0.03548542,0.0063586873,0.024960043,-0.00689222,0.019774359,0.024335375,-0.045545872,0.016403744,-1.49962e-08,0.05564746,-0.054525103,-0.12241786,0.019867964,0.0028255847,-0.08181287,-0.052065603,-0.0013413486,0.00595713,0.053506408,-0.048366547,-0.0073635075,-0.03758193,0.030972138,-0.0043716035,0.053630028,0.011465043,0.096862294,-0.0092769805,0.006287833,-0.011589853,0.029238919,0.015789965,-0.064741686,-0.032993156,0.006974436,-0.06024967,-0.075020775,-0.020541599,-0.04246435,0.005530131,0.10037477,-0.04000843,-0.07747417,-0.014448799,0.014828019,-0.04831905,-0.01608231,0.016887393,0.011807237,0.11967852,0.11469405,-0.039556656,-0.0397085,0.109091274,-0.112755425,0.050856993,0.0764529,0.011079216,0.0024110184,-0.012410604,-0.047626644,0.06688799,0.024388276,0.04974752,0.021116335,0.0055099563,0.012619519,-0.05943895,-0.0055039045,0.061269082,0.10892716,0.08283557,-0.08484258} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.000743+00 2026-01-30 02:01:13.367075+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2395 google ChdDSUhNMG9nS0VJQ0FnSUNhemJYNHBRRRAB 1 t 2398 Go Karts Mar Menor unknown Los kars deberían de restaurarlos . los kars deberían de restaurarlos . 3 2022-01-31 01:52:39.833374+00 es v5.1 O1.03 {} V- I2 CR-N {} {"O1.03": "Los kars deberían de restaurarlos ."} {-0.00978272,0.026352165,0.03389899,-0.0040317746,-0.07779711,-0.008381787,0.009094177,-0.07242452,0.058824718,-0.004931789,0.08306195,-0.01813861,-0.01781293,-0.032683864,0.04234395,-0.018564247,-0.028060209,0.04717829,0.06002593,-0.01668211,0.051938783,0.03529933,-0.051632587,0.120643325,0.0052303397,-0.030187735,0.010625435,0.055862486,-0.021390995,-0.04479516,0.007921852,0.012164453,0.016689716,-0.01783764,0.024315407,0.0049816086,0.040502496,-0.09124749,0.019913761,0.058944415,-0.12844895,-0.04831993,-0.045405388,-0.012264963,-0.0132565005,-0.05427251,-0.059318192,0.053473387,0.013200905,0.043378353,0.08291348,-0.0038140574,0.007410145,-0.02946884,0.010526606,-0.02575602,-0.05857864,0.01535988,0.09905038,0.06552067,0.031737253,0.0057809013,-0.07433735,0.06397845,-0.09892358,-0.040818878,-0.005751359,0.010833662,-0.09499202,0.024016662,0.05433162,-0.064190246,0.02346648,0.0032874544,-0.021525364,-0.031922854,-0.048110474,-0.06059246,-0.07575756,-0.04544052,0.09206528,-0.030718103,-0.048021514,-0.023160182,-0.018142551,-0.004660375,-0.0046005063,-0.0024456365,0.027189367,-0.0077103507,-0.05877982,-0.0984319,-0.10475377,-0.040857524,0.036170755,-0.0010944994,0.02434967,0.003935601,0.08433553,0.025914295,0.0829451,-0.0006802746,0.05716801,0.009353776,-0.049583513,-0.026390485,-0.046200432,-0.021253522,-0.0034488868,-0.060601287,-0.0339517,0.031357832,-0.021283882,-0.0019120754,-0.026680347,0.009805573,0.011490247,-0.0666491,0.021689566,-0.085119754,0.07246966,0.0061032977,0.0018873764,-0.013904976,0.04096337,0.00070706225,0.026355324,-2.4155212e-35,-0.034828555,0.016820204,0.022489648,0.03792556,0.091316335,-0.053580176,-0.05002891,0.048522986,-0.06333129,-0.014104998,-0.04256686,0.0016666587,0.014492353,-0.0857845,0.09505405,0.08833518,-0.068859935,-0.032442838,-0.016985603,0.013431911,-0.0001471755,0.05407464,0.012606788,0.05989661,-0.03696154,-0.00095333863,0.017938422,-0.09818494,-0.11930672,0.032822974,0.0046735727,-0.009298571,0.032264575,0.010808232,0.06350217,-0.010834576,0.05401626,0.038218867,-0.023852613,-0.05837957,0.02131832,0.04834514,-0.08835016,0.059284676,0.01383698,0.03934911,0.065661564,0.013717427,0.035721917,0.030565528,-0.0153527325,-0.019364187,-0.09061545,-0.06651843,-0.003407217,0.075768925,-0.037074167,-0.0050617247,-0.018668404,-0.059130553,0.09982402,0.035232123,0.021469789,-0.09295331,0.050379135,-0.037032362,0.066571355,-0.0018990262,0.121348515,0.0012468547,-0.02586476,-0.04595028,0.063308954,0.016485715,0.056028422,0.054632448,-0.028298572,0.07911914,0.011518497,0.027478468,-0.03973277,0.039374255,-0.024674179,0.050267916,0.04725958,0.033726085,-0.024153238,-0.026045334,0.0076941987,0.076389015,-0.08733148,0.029059818,0.07297078,-0.096349075,-0.02768023,-1.9983277e-33,0.016774844,-0.02148968,0.028079854,0.08768715,-0.012337552,0.037894588,-0.06069043,0.0436783,-0.001338858,-0.026319973,-0.08157563,-0.055667512,0.10243265,-0.046737775,0.0023532524,0.122628786,0.08174912,0.021471562,-0.11913998,0.017507821,-0.022632614,0.05616616,0.022221668,-0.0007666119,-0.027246024,0.0042058793,0.057943083,0.03163246,-0.08971541,-0.05946885,0.023216622,-0.09809724,0.071733184,-0.0072014555,-0.085615255,0.057842858,0.0039540064,0.108758956,-0.035599757,0.043630857,0.0074997814,0.026267912,0.05000498,0.027692704,0.014771669,-0.049139783,-0.06382342,-0.09082361,-0.05006696,-0.035596438,0.08177443,-0.07510308,-0.117325194,-0.0139078535,0.011018166,-0.009177962,0.0113552855,-0.09426497,-0.053088784,0.03496053,0.036262494,0.010182285,-0.022783509,0.044125386,0.022620995,-0.014986716,-0.026447998,0.008341077,0.022737963,0.021075536,0.0984936,-0.067489326,-0.090667814,0.072406255,-0.05585336,-0.007999136,-0.12590858,-0.006399077,-0.0038436989,-0.0019772348,-0.08604832,-0.10947927,-0.010500109,0.001180241,0.014923815,-0.037078016,0.010557485,-0.03974828,0.04051844,-0.01818803,0.02423684,0.038439073,0.0052584023,-0.038752068,-0.022591352,-1.896216e-08,0.050056748,-0.033300266,-0.09831929,-0.0025775784,-0.01837994,-0.08344106,0.0666503,0.04349336,-0.007278384,0.06713521,0.044879094,0.0033829557,0.019043785,0.03873764,0.008307336,0.026001453,0.090573646,0.10626329,-0.036879808,-0.100631006,0.05391866,0.024915608,0.004949418,-0.029309865,-0.00042197443,0.022617545,-0.03036691,0.016778313,0.1382381,-0.04461791,-0.04411815,0.07586643,-0.101667024,-0.07087288,-0.035506632,-0.042331196,-0.10382052,-0.014264453,0.022141028,-0.015347785,0.020597657,0.045764122,-0.060416434,0.047810394,0.02676739,-0.023841927,0.040496938,-0.0021175686,-0.030597365,0.06478677,-0.0033952447,0.0013575567,0.07943157,0.055696536,0.04130033,0.0048013576,0.040101666,0.034495316,-0.021705782,-0.043898873,0.026227796,0.11302321,-0.0019309397,0.018990401} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.016984+00 2026-01-30 02:01:13.370178+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2396 google ChdDSUhNMG9nS0VJQ0FnSURKd2FDZXNRRRAB 1 t 2399 Go Karts Mar Menor unknown Toujours parfait. toujours parfait. 5 2024-01-31 01:52:39.833374+00 fr v5.1 J3.01 {} V+ I3 CR-N {} {"J3.01": "Toujours parfait."} {-0.015863145,-0.008111708,-0.03978279,0.0015913484,0.07014218,0.06772402,0.056687295,0.06735246,-0.010637483,-0.008204278,0.06481059,-0.050794717,-0.022459108,-0.008017607,-0.049268138,-0.029769009,-0.025663335,0.034607746,0.02992194,-0.03489231,-0.05297073,-0.058996636,-0.03358841,0.023998708,0.018311972,0.0040456075,-0.068223864,-0.054933537,-0.007335857,-0.028166423,0.00021593404,0.047711547,-0.008555035,-0.03477556,-0.013483989,0.06647638,0.030304668,-0.06073894,-0.016626628,-0.0085747065,-0.11450522,-0.025796255,-0.06501674,-0.10609932,0.058965843,0.03851719,-0.02900426,0.10717367,-0.054299004,-0.014722491,0.026144244,-0.0007242446,0.0076236273,-0.03722266,-0.031099968,-0.036041003,0.028574014,0.043825086,-0.025901927,-0.003234098,0.058309663,-0.07178573,-0.09875918,0.0083030695,-0.00876189,-0.074506745,0.020967562,-0.040672895,-0.09110689,0.12690823,0.088835225,-0.020270143,0.001204508,0.081585124,-0.009521752,0.01795729,-0.044775438,0.017478554,-0.03854714,-0.11509903,0.057606816,-0.0048324303,0.028513525,-0.005854582,0.0042736433,-0.020878121,0.007519747,0.001493916,0.0345089,0.01964505,-0.04830143,0.020900972,-0.041054122,0.05910583,-0.06856949,-0.006480449,-0.007963413,-0.056653067,-0.003978355,0.05801705,0.002037464,-0.044261824,-0.015606587,-0.023587286,-0.076940596,-0.002487364,0.001147038,-0.06436252,0.03927154,0.033957016,-0.013783451,-0.0022565238,0.040045217,-0.077266246,-0.010135774,0.0013007394,0.011932001,-0.074397385,0.0013031939,0.072248764,0.035879433,0.045930304,-0.017068258,0.059826218,0.0051293066,-0.05183894,0.05651306,-1.9620503e-33,0.05220153,-0.044822473,-0.0064418362,0.02886881,-0.0043810266,0.019394077,-0.04171731,0.022889027,-0.039485812,0.027861949,-0.016433662,-0.023285847,-0.037529353,-0.05922601,0.028461719,0.0114213815,0.028308649,0.06906358,0.060494125,-0.060021956,-0.06511294,0.023822812,-0.040414326,0.08330044,0.10958762,-0.007841695,0.033589963,-0.03893611,-0.01903047,0.058113366,0.029750515,-0.07406193,-0.011644804,-0.009988915,0.012432155,-0.04306454,0.0673134,0.057806075,-0.06585038,-0.029346136,0.062163483,-0.044204857,-0.066364914,-0.021816112,0.02088134,0.07186127,0.06734684,0.032869544,0.061725974,-0.04311759,-0.05197326,-0.03778479,-0.0034995235,-0.053779274,-0.0408152,0.058170825,-0.024993595,0.045184944,0.02871709,-0.016434118,0.016459249,-0.030695803,-0.053480428,0.006880849,-0.061366905,-0.045784365,0.05967948,-0.015668765,0.05709248,-0.037876442,-0.15547144,-0.04221321,0.037528343,0.06279949,-0.021728344,-0.0055782045,-0.012572099,0.06144762,0.011644909,-0.022539545,-0.10900121,0.002701441,-0.017810708,-0.022908902,0.05557684,0.100431286,0.018606054,-0.0736008,-0.011231256,0.049953133,0.04234259,0.0053274557,0.024333913,-0.065191165,0.016498169,-1.4134626e-34,-0.094455026,-0.035291743,-0.12932315,0.045452774,0.0416972,0.10492968,-0.12374988,0.10313746,-0.00085556356,-0.0155563895,0.006676721,-0.10563487,0.047307156,0.00111695,-0.05113465,0.12288138,0.10688026,-0.03420445,-0.07120453,-0.015684897,-0.07144403,-0.11019881,0.076441035,-0.015614027,-0.095046334,0.11863458,0.025453636,-0.022988794,-0.078768484,0.05672834,0.02792872,-0.06404089,-0.013591066,-0.004827579,0.026491014,0.02737454,-0.0393929,0.09849604,-0.049307115,0.049811523,-0.050537024,0.017861683,-0.013612585,0.054330662,0.0041636894,-0.044061527,-0.04223148,-0.07167507,-0.048782595,-0.07011489,0.071001165,0.007697539,0.009952879,-0.044278946,0.037189968,-0.053735983,0.004439392,-0.0358977,-0.08492231,0.05671289,0.017350128,0.033919685,-0.03846388,0.043624416,0.07942461,0.008258566,-0.07417962,0.01331064,0.05887119,0.011039021,0.06430529,-0.06134965,0.023783892,0.10387996,-0.08710527,-0.05452044,0.045915753,0.040635224,0.007842118,0.016624494,-0.05201836,0.013521591,-0.03024203,0.03767632,0.04392065,-0.093145266,0.0034495313,0.039940637,0.028498802,0.02758788,-0.0060720295,0.12928335,0.030169258,-0.014448137,0.03954163,-1.7600717e-08,0.01720087,-0.084219284,-0.05413836,0.03026475,0.04432463,-0.038655,-0.0033410185,0.00460314,-0.051227555,-0.0136817265,0.0043363883,0.019115863,-0.010851524,0.060025122,0.09540471,0.044209898,0.048821718,0.043878064,-0.026943699,0.034625147,0.011664304,0.015379762,-0.028753005,-0.15279391,0.007895572,0.060642906,-0.054763444,-0.05143193,0.04339761,-0.00066741946,0.06388417,0.06370762,-0.030725913,-0.012268064,-0.028990313,0.06345068,0.01793972,-0.0019022417,-0.040224098,0.023952954,0.09586538,0.07693975,0.042562388,-0.0055622696,0.0011299454,-0.043233145,0.04888714,0.05326935,0.054672226,-0.0001226975,-0.15319727,-0.008671042,-0.0023937111,0.053240214,0.030930903,-0.00479039,0.010265326,-0.0022183815,-0.040340338,-0.03699537,0.0411988,0.10191229,0.043314654,0.040190503} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.028482+00 2026-01-30 02:01:13.372402+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2397 google ChdDSUhNMG9nS0VJQ0FnSUQyOGZ6ZW93RRAB 1 t 2400 Go Karts Mar Menor unknown Hasta arriba de gente hasta arriba de gente 1 2023-01-31 01:52:39.833374+00 es v5.1 J1.03 {} V- I2 CR-N {} {"J1.03": "Hasta arriba de gente"} {-0.0744595,0.07544747,-0.06247673,0.050066218,-0.08855158,0.08656239,0.122706786,0.019599954,-0.014218043,0.026921758,0.032118198,-0.07375633,-0.025415372,-0.062939085,-0.05721878,0.03472304,-0.032932587,-0.0011018054,0.092318915,0.018018458,0.030496137,-0.017959675,-0.073384464,-0.019552605,-0.013660554,0.038776077,-0.00038645684,0.07619841,-0.05098738,-0.05434634,0.08566339,0.09095464,0.035762336,-0.020242581,-0.0019767822,0.008532337,-0.056053665,-0.012786997,0.08416739,-0.010624435,-0.016715407,-0.00044648,-0.040092796,0.028654704,0.05691854,-0.008758062,0.042302627,0.061297648,0.041479953,-0.03263625,-0.08445584,-0.060726132,0.0019046015,0.023916893,-0.029739588,-0.0064033642,0.060660597,-0.038846683,0.053745013,0.0039106505,0.068400115,-0.016075894,-0.10373303,-0.0383741,0.019969925,0.00073557685,0.05501566,-0.069159895,-0.116102286,0.02851025,0.05112567,0.03161097,-0.016707709,0.10370199,-0.09052984,0.0061699976,0.0087925615,-0.015317279,0.013965839,-0.06614568,0.0099132145,-0.013523042,-0.018205503,0.034532428,-0.01633975,0.008480167,0.045206517,0.012376913,0.009932806,-0.014392648,-0.024954801,0.04366446,-0.020628104,-0.0042567905,0.043275565,0.03238118,-0.06921377,-0.052909482,-0.045038506,0.012411114,0.0852903,0.0022052897,0.040279116,0.042068105,-0.07770765,0.017207121,0.08652336,-0.0790649,0.003653429,0.051541377,-0.083399765,-0.06908844,0.01585805,0.042885937,-0.09482542,0.0070858845,0.047473207,-0.12517253,-0.023903787,-0.08370988,-0.0075035086,-0.045702882,0.065573804,0.046773583,0.009491738,-0.015075607,-0.022345828,1.5361768e-33,-0.06634671,-0.07847792,-0.009641631,0.06783433,0.06893842,0.07896233,-0.032951463,-0.04911474,-0.055640697,-0.056469847,-0.13238764,-0.047791447,-0.0063062725,-0.019523446,-0.009406202,0.102785945,-0.008445603,0.00834254,0.012251616,0.03640598,-0.09073102,0.027351176,0.009992664,0.0148431705,0.024274724,0.027286097,0.022766897,-0.07388062,-0.038629103,0.04633599,0.06386255,-0.015802462,-0.0017306723,0.005298112,-0.06404727,-0.049129885,0.023001168,0.04276005,-0.006308115,0.022839056,0.01701603,0.04686638,0.05523768,-0.0014621319,0.019842835,0.022983149,0.04158507,0.042168386,-0.04048875,0.067193724,-0.0084844595,-0.057902098,-0.07200043,-0.07205484,-0.0038614287,0.037559263,-0.08499732,0.08889069,0.0010505492,-0.022601174,0.101146,0.009370321,0.009394485,-0.012579027,0.0014466249,-0.012685299,0.051810585,0.045390833,0.15169355,-0.020803131,-0.014116809,-0.10213443,-0.00980749,-0.042085204,-0.12566064,0.008464592,0.036347006,0.08701733,-0.007982384,-0.013284482,-0.040836595,-0.009411671,0.026984185,-0.020896453,0.10781365,0.050686214,0.023969946,-0.019548701,-0.017956436,0.040516313,0.052253593,-0.001991166,-0.0028627403,-0.07201397,0.05174973,-9.538719e-34,-0.029445222,-0.052840553,-0.08046065,0.08284805,-0.0013330341,-0.045773692,-0.015239689,0.03191441,-0.015055047,-0.05608317,0.05443805,-0.08807061,0.06918624,-0.034292582,0.03645659,0.015507027,0.04567859,0.0033901834,-0.04224145,-0.08880778,-0.07097749,0.038978208,0.05286658,-0.008908869,-0.021371566,-0.031116389,-0.024048643,0.0076647983,-0.07215017,-0.015104783,0.05305261,-0.0053036287,0.012103127,0.039518524,0.009019175,-0.00021690529,0.13531233,0.06549899,0.028413022,-0.00039508258,-0.045184795,0.058587164,-0.0051517743,0.026255049,-0.062089354,0.044965904,-0.023528922,-0.028381316,-0.005232428,-0.08734878,0.10581959,-0.062122837,0.023068355,-0.037095573,-0.0064586033,-0.034201402,0.045071047,-0.027328918,-0.088136986,0.04949927,0.08182358,0.016197763,0.005981452,-0.030054117,0.03244499,0.07245915,-0.061598368,0.06728643,-0.027108202,0.13257517,0.048425358,-0.092201136,-0.11767581,0.03342173,-0.071114905,0.029602198,-0.049111653,0.047863528,0.03797417,-0.020808386,-0.03635938,-0.034606222,-0.08466751,0.011811383,-0.028146653,-0.080282256,0.029500334,0.036285277,0.017599018,0.046133313,-0.0034157066,0.010401628,-0.06361726,-0.051796142,-0.005260301,-1.7641469e-08,0.034648962,-0.019622887,-0.0171292,0.02528516,0.065910496,-0.028215088,-0.011680214,-0.015533711,0.057420425,0.03288955,-0.0006059511,0.0061214822,0.016075993,0.122241765,0.03463166,0.016930262,0.04821593,0.023487983,-0.030430939,-0.033650108,0.061006073,0.02639715,-0.026156597,-0.049253944,0.029497983,-0.021173542,0.0006046038,-0.117765404,0.052453104,-0.034754124,-0.00010370571,0.046711467,-0.034622673,-0.069932334,-0.0018107035,0.038876653,-0.023689054,-0.01969314,0.042629637,-0.010648841,0.10243142,0.0478545,0.04600005,-0.025325438,-0.014832411,-0.035108,0.049268644,-0.012502149,-0.055533998,-0.0014441174,-0.08205794,0.009698087,0.085472286,-0.0059486055,0.0008784514,0.0075460053,0.012181631,0.044562727,0.067439444,0.05272913,0.10111289,0.12679799,-0.041264035,0.020071957} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.044133+00 2026-01-30 02:01:13.380837+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2398 google ChZDSUhNMG9nS0VJQ0FnSUMtd2R1LWZBEAE 1 t 2401 Go Karts Mar Menor unknown Buena buena 3 2023-01-31 01:52:39.833374+00 es v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Buena"} {-0.0232795,-0.0020469308,0.063942455,-0.035496294,-0.07069619,0.014814745,0.053044286,0.057380285,0.05353465,-0.005349296,0.082891725,0.007397986,-0.009408287,-0.039871328,0.036033705,-0.013272761,-0.01950137,-0.023428764,0.02938842,-0.01159247,0.019569723,0.0463516,-0.06299183,0.045322817,-0.0117353005,-0.0034766197,0.0008839277,0.039292537,0.026875773,-0.11853606,-0.034562793,0.04808377,0.106073305,0.0026071689,-0.09572874,-0.019231511,-0.0014518859,-0.05787865,-0.00078398566,0.01628892,-0.08090392,-0.012431119,-0.018007228,-0.044888772,0.047800492,-0.09252326,0.014654777,0.037558317,0.104239054,-0.018567378,-0.019820247,-0.0075399945,0.004048833,0.04659175,0.025998048,0.06760483,-0.001369438,-0.02463345,0.05119034,0.06925139,0.034256738,0.09167079,-0.013906827,0.0011269351,-0.016946321,-0.02469423,0.064679965,0.06912485,-0.044507153,-0.03627787,0.03343025,-0.050295733,0.03808996,0.049899433,-0.025783371,-0.0072887596,-0.053500023,-0.0012382551,0.02675345,-0.017491454,0.015629461,0.055403873,-0.07910237,-0.008755157,-0.01127399,0.01865516,0.01538667,-0.009720917,0.09305875,0.012330275,-0.07084232,0.014657029,-0.013804158,-0.002878633,-0.017814577,-0.060807936,0.047617074,-0.061771505,-0.034141295,0.23553762,0.08999221,0.07622523,0.10784758,-0.08144183,-0.000108920416,0.07384936,-0.010222413,0.0062684724,0.056297008,-0.02591557,-0.065118805,-0.0094871,-0.01036719,0.017179541,-0.0020220566,0.07311577,0.018200327,0.0109291775,-0.039724246,-0.078005835,0.03553746,-0.011275906,-0.061164364,0.002499596,-0.0087077245,-0.051423084,0.019563913,-5.5722554e-33,-0.0074077435,0.032084644,0.014966049,0.04182768,0.022481857,-0.00837277,0.0038113627,0.027581723,-0.087862395,0.010558091,-0.045215055,-0.013766897,-0.06822952,0.039243933,0.09575051,0.08121457,-0.016377944,-0.03278898,0.024019122,-0.047854535,-0.045935083,-0.037593935,-0.047926985,-0.0007037581,-0.040240273,-0.034368526,-0.0008185713,-0.043755334,0.053792726,0.029935393,0.008263264,0.09881678,0.03174977,-0.016459808,0.027351573,-0.047783423,0.020838203,0.0024808494,-0.030926239,0.058318585,0.016905084,0.051382292,-0.012413954,0.016525248,0.0077960333,-0.007937774,0.047109853,0.014620004,0.08784805,0.04146846,-0.048549544,-0.07019609,-0.10767286,0.029262025,0.001760054,0.026674062,-0.09750995,0.034467466,-0.031494163,-0.02781917,0.05603998,-0.034437846,-0.0034002822,-0.037047748,-0.12334912,0.0072651706,0.035458177,0.060495254,0.10664856,0.03453888,-0.062254198,-0.02201569,0.000103471226,-0.013864115,0.026559222,-0.026484527,-0.039512068,0.046608485,0.073798865,0.033797447,-0.08552261,0.032158576,0.0028271764,0.11823641,0.07620418,0.03009432,0.06438413,0.046478376,-0.07467835,0.07470912,-0.074341886,0.116470195,0.09290151,-0.012667315,-0.029019019,3.9978857e-33,0.013351572,-0.0036189284,-0.021424392,0.039586034,-0.013341436,0.011508404,0.04700815,0.07718215,-0.10060933,-0.11462138,-0.033455033,-0.06530186,0.09084415,-0.010056012,0.023945874,0.05911279,0.04672218,0.012337264,-0.10262468,-0.006302546,-0.02208763,-0.02423515,0.094093084,-0.0026470236,0.03196753,0.0035679117,0.0070329513,0.059010297,-0.117366225,-0.01216017,0.03614805,-0.07169203,-0.054978684,-0.00078610977,-0.036692988,0.03988716,0.0795088,0.027158618,-0.055553082,0.03194752,0.044865362,-0.0018098388,-0.03144206,0.044305515,-0.027944528,0.027953932,-0.053669553,-0.08088322,0.027135309,0.039839342,0.060008455,-0.03705534,-0.062085707,0.054213673,-0.0647616,-0.03415558,-0.00022395185,0.016093964,-0.09114398,0.013369122,-0.04695573,0.076262034,-0.034900047,-0.026750842,0.04060533,-0.0547664,0.039010104,0.070483476,-0.017532483,-0.04739468,0.076862775,0.0030943465,-0.029882884,0.013454443,-0.013573622,-0.110666774,-0.08971583,-0.05429118,-0.01683624,-0.019229846,-0.01485992,-0.009618762,-0.055403084,-0.025956087,-0.09239624,0.050519135,0.01568226,0.033435095,0.024747156,0.062408134,-0.027618192,0.037688665,-0.081210166,-0.07217558,0.016846789,-1.1489926e-08,0.01640495,0.036774345,-0.017188739,0.019377435,0.02338859,-0.039644826,-0.10403734,0.095797144,-0.014496735,0.04767933,-0.0035994851,0.04473799,-0.059609592,0.056139708,-0.0004946827,-0.03219545,0.004418989,0.083181955,-0.028834034,-0.12247953,-0.012161277,0.027736405,-0.03129212,0.0018869692,0.019358044,-0.04432919,-0.058302984,0.018818896,-0.015940892,-0.05981066,-0.011512928,0.101707205,-0.057130225,-0.08771554,-0.039809644,-0.021597052,-0.0009142181,-0.06771862,-0.0034642164,-0.050927613,0.07482609,-0.05128678,-0.0154578155,-0.083960496,0.07840645,-0.06113637,0.09606892,0.010222562,0.031416845,-0.013743603,0.010371324,-0.015592392,0.050074685,0.06435328,0.026555879,-0.08282653,0.029309094,-0.018497938,0.022363331,-0.020360084,0.092818126,-0.0059526437,0.055976257,-0.049325015} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.057228+00 2026-01-30 02:01:13.385592+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2399 google ChdDSUhNMG9nS0VJQ0FnSUQwcGJLRi1BRRAB 1 t 2402 Go Karts Mar Menor unknown Todo correcto,\nVolveré todo correcto, volveré 5 2020-02-01 01:52:39.833374+00 pt v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Todo correcto,\\nVolveré"} {0.030752057,0.123768374,0.025421677,-0.027166542,-0.11388721,0.022207683,0.104181714,0.0026742334,-0.026449153,-0.0023752993,0.07369153,-0.057070106,-0.05188026,0.0075073466,-0.06428155,-0.0568496,0.09494231,0.10494936,-0.04614496,0.018939769,0.019075638,0.006322075,-0.08024677,0.03069877,0.0022998797,-0.0044773505,0.015993409,0.03613362,-0.017707294,-0.124667116,0.031099625,0.008292442,-0.01417213,-0.015443332,-0.01427269,0.031658463,-0.026767699,-0.02343963,0.027662966,0.068379335,-0.045173418,-0.07845381,-0.038669813,-0.079143345,0.014094426,0.048509553,-0.02277088,0.03320038,0.06297753,0.006158652,-0.07448484,-0.04045169,-0.044367492,0.0036673618,-0.041223507,-0.014799792,0.022432644,-0.020368548,0.07326617,-0.05186276,0.072036386,0.059822574,-0.013368314,0.081574894,-0.06705254,-0.042072367,0.061348792,-0.033064038,-0.11880775,0.08654507,0.08366957,-0.008847188,0.06637348,-0.013372945,-0.03942466,0.032342955,0.005065029,0.006450401,0.0288954,-0.031558916,-0.00062161614,-0.045118924,-0.056561913,0.00044360766,0.03687968,-0.0026054652,0.009280409,-0.0784619,-0.0045861183,-0.083025545,-0.096203476,0.0698701,-0.0034606624,0.06833208,-0.044904858,0.056723557,-0.053358298,-0.014842434,0.011521885,0.06170753,0.018728599,0.054837257,0.0092289,0.09898271,0.0075533716,0.018810898,-0.031473745,-0.0065324833,0.056626614,0.0480108,-0.02919238,0.0022375956,-0.04765673,0.020717202,0.0020721424,-0.022591684,-0.0040211785,-2.555043e-05,-0.096655734,-0.02174734,0.12268074,0.00036743307,-0.03505911,-0.06348276,0.0015252614,-0.06025037,0.067016974,-1.8321822e-33,-0.0062966957,-0.069091514,0.092440225,0.051362827,0.021494502,-0.005699458,-0.11723005,-0.010579394,-0.08000601,-0.05726133,-0.07045176,-0.039964296,-0.085950084,0.05901403,0.021393942,0.051281996,0.09000445,-0.016001223,-0.0009769698,-0.036994413,0.006123296,-0.003406383,0.009792611,0.03479372,-0.02648693,0.044285476,0.09636201,-0.08958141,-0.034470942,0.05222824,-0.016302861,-0.020973466,0.032107424,0.017269883,0.043612137,-0.002927421,0.03990926,-0.016760284,-0.0013629325,-0.008581099,0.01846235,0.019545184,-0.01656759,-0.07726198,0.004272703,-0.02013754,0.09065282,0.022084624,0.14283241,0.081678316,-0.044541672,-0.09336613,-0.01610825,-0.008752345,0.069584504,-0.003915597,-0.07594715,0.12421072,0.039419673,-0.07522381,-0.040768705,0.03254374,-0.022779055,0.037582044,-0.02242907,-0.020078728,0.023095457,-0.0015366571,0.08144834,-0.025490552,-0.10115706,0.0059720767,-0.045434356,0.052136384,-0.012210259,-0.03933082,0.028076345,-0.021026202,0.053441267,0.024020048,-0.02628548,0.025093358,0.003228417,0.0007641658,0.089668676,0.0064140866,0.054487713,-0.005203772,-0.024047049,0.08213416,-0.020169893,0.026511978,0.0485012,-0.07001044,-0.046046864,1.0905117e-36,0.01530197,0.013521847,0.047203958,0.041222665,0.02950465,0.03974105,-0.108237624,0.055814326,-0.03447986,-0.015441822,-0.04076875,-0.055230647,0.02577931,-0.046974003,-0.042116668,0.054761507,0.071662456,-0.049580496,-0.06310857,-0.013985824,-0.11359273,-0.014397646,-0.044627916,-0.07315475,-0.008415342,-0.014753977,0.051800728,0.02479287,-0.0536895,-0.032435406,0.0025535435,0.006654454,-0.037823536,-0.025223304,0.0382468,0.09781655,0.012756683,-0.017034043,-0.0043407865,0.06848694,-0.05311143,-0.030164247,-0.0014343548,0.027767649,-0.0012910899,0.013995073,-0.037369248,-0.014637048,0.0342721,-0.017803023,0.10966674,-0.026423844,-0.005162322,0.028560419,0.057538126,-0.057827402,-0.008610999,-0.060967203,-0.061620988,-0.039395332,0.036305733,0.06808992,0.013019845,0.024601897,0.044697527,0.068992555,-0.09929299,0.08342484,0.0035623363,0.03271136,0.096741684,-0.004852277,-0.035920303,-0.12876119,-0.0062975814,-0.081827044,-0.11382671,0.09860401,0.0077557545,0.04531326,-0.0031437986,-0.023604302,-0.0617711,-0.032702107,-0.05859246,-0.067001015,-0.06855266,0.04144463,0.053536862,0.005219977,0.045969743,-2.2435144e-05,0.03114166,-0.048978228,0.020059677,-1.8469741e-08,0.061891243,0.045690164,-0.05529044,-0.030402297,0.003607206,-0.016540643,0.06453209,-0.016160212,-0.016314266,0.087188795,0.09661093,0.0022140525,0.013951125,0.005662002,0.061309315,0.029640257,0.02858174,0.051418908,-0.019234352,0.025415644,0.053520694,0.008251354,-0.028228212,-0.064819515,0.04231317,0.036185768,-0.00039458412,-0.037189346,-0.082332015,-0.03941462,0.051824298,0.04555527,-0.057593253,-0.063729875,-0.07748157,0.011492999,0.032781582,0.007573152,0.018644534,-0.0822399,0.05954099,0.0067060865,0.04520226,0.012055448,-0.05804307,0.0031983347,0.05129541,0.013293711,-0.060778633,-0.059145436,-0.08145005,-0.016044956,0.016641503,0.016845165,0.013475807,0.013116589,0.10124372,-0.022831485,-0.09427919,-0.064966224,0.094417274,0.0029612903,0.05380233,0.07078345} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.068758+00 2026-01-30 02:01:13.407563+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2401 google ChdDSUhNMG9nS0VJQ0FnSUMtNVplMnZ3RRAB 1 t 2404 Go Karts Mar Menor unknown Genial!! genial!! 5 2023-01-31 01:52:39.833374+00 ca v5.1 V4.01 {} V+ I3 CR-N {} {"V4.01": "Genial!!"} {-0.027863646,0.046046503,0.013935579,-0.01698209,-0.053369176,0.024394158,0.068262115,-0.032917026,-0.045532983,0.005296876,-0.004850344,-0.030323228,0.020418916,-0.038342938,-0.00076459296,0.021784557,0.004156337,0.056857478,0.010549899,0.003993592,0.030091314,0.06277675,0.022989346,-0.023153385,-0.05650792,0.070820004,-0.017372258,0.11089921,0.06059581,-0.05628514,0.030271046,0.124524586,-0.054904614,0.031211857,-0.00050063623,-0.016459784,-0.030202039,-0.04243827,0.026056109,-0.009576951,-0.012999535,-0.039050646,-0.07727903,0.013383635,0.042544723,-0.034725036,-0.08441441,0.030357927,0.06450963,0.06760148,-0.023611398,-0.012794699,0.08084768,0.006059789,-0.0075414716,-0.04156483,0.050253764,-0.21695146,0.013634583,-0.01009825,-0.054737933,0.042352702,-0.111915596,0.0014256355,0.021175627,0.00445795,0.05208968,-0.057950087,-0.049653243,0.012909097,0.0074314075,0.013770153,0.019058006,0.044507913,-0.12297205,0.109895565,0.07834807,-0.050985813,0.04630449,0.029825915,-0.024736974,-0.055511456,-0.029282589,-0.015178176,0.0033979581,-0.040386494,0.06883485,-0.043772437,0.01717255,0.0019013913,-0.11213726,-0.024533736,0.057491288,0.057467483,-0.059488606,0.058012806,-0.021190552,-0.10763184,-0.0835077,0.046511967,-0.04059249,0.07085113,0.046734005,0.007373441,-0.027974216,0.042312633,-0.005485535,0.05262983,-0.019241586,0.020023936,-0.04003435,-0.03722698,0.018664544,0.057725865,0.009289626,-0.028730601,0.009585729,0.038349025,0.00861474,0.0073326533,0.06522676,-0.04786775,-0.06851279,-0.0031901763,0.057467252,-0.032384574,0.043274444,-3.5732828e-33,-0.027457831,-3.543452e-05,0.0322,0.03854612,-0.0037848472,0.06312244,-0.08239012,0.021638758,-0.05608758,-0.036021493,-0.09907866,0.0110818595,-0.052022856,0.07494756,0.011955352,0.018106839,-0.092508525,-0.018589562,0.029296879,0.020385647,-0.032563183,0.08704661,0.07513518,-0.0018904186,-0.04683594,0.068450086,0.053088743,-0.07056178,0.017279182,0.030411813,-0.008947688,-0.067393765,0.011006046,0.026839701,-0.037178572,0.0008788865,-0.012629444,-0.042933546,-0.0016147674,0.081007235,0.023681069,0.03016688,-0.01196887,0.021343019,-0.05881734,0.012486519,0.064643376,-0.010121319,0.005606515,-0.045122977,-0.045587078,0.013260716,-0.09269429,-0.0067196996,-0.011724624,0.018189622,0.015244147,0.002594157,-0.03983226,-0.060393456,-0.001927495,0.056342404,0.10536683,-0.07840951,-0.0019282261,-0.06746271,-0.03235832,0.041641355,0.0055549,0.088640325,0.043943167,-0.018183662,0.039128292,0.02403184,-0.08917438,-0.012383786,0.057352237,0.0061976174,0.02649794,-0.046573568,-0.03559706,0.11647276,-0.05126596,-0.08353849,0.06797521,-0.0148968045,-0.016619086,-0.0077218534,0.028504463,-0.06389144,0.036225855,-0.026005581,0.01695682,-0.0017683354,-0.12216582,8.838365e-34,-0.02789408,-0.029665237,0.00048815014,-0.019498555,0.024331454,-0.060298752,-0.038994413,0.033618618,-0.08147789,0.008214607,-0.053141832,0.05153714,0.08435247,-0.051682997,-0.032541435,0.014875695,0.10123214,0.030908234,-0.01424772,0.0032183363,-0.04749853,-0.01521879,-0.014603967,0.004884607,-0.06691997,0.07238588,0.04798302,-0.038087875,-0.104815796,0.033121824,0.051470082,0.0749637,-0.004084143,0.015830493,0.12582876,0.056070454,0.080480896,0.048271913,-0.0034996385,-0.01690448,-0.035947677,0.11662078,0.02123388,0.10537291,-0.034130506,0.027974445,-0.020977603,0.005601077,-0.019392107,0.07529644,-0.09559656,0.057748497,0.017620003,-0.08393223,-0.026577076,0.0014936876,0.07959658,-0.045530617,-0.011826033,0.053170618,0.015715497,0.03389242,0.032389782,0.053559672,0.058077738,0.00025611868,0.031810664,0.056770712,-0.019360442,0.037099548,0.05475748,0.051432557,-0.081754014,-0.02189465,-0.028790854,0.04053514,-0.0178082,-0.042230844,0.011563579,-0.046082135,-0.08476726,0.011253984,-0.054324374,-0.014892384,-0.06717593,0.015318556,0.09702572,0.05151039,-0.029007917,-0.01652311,0.035471603,-0.045402236,-0.05545556,0.019525785,0.04043037,-1.5978603e-08,0.03781763,0.0732898,0.05551394,0.020743499,0.044922817,-0.02986493,-0.15663849,-0.039814863,0.032170326,-0.020216778,-0.018114416,0.07115996,-0.04266321,0.09974265,0.05084928,0.07596324,-0.06418279,-0.02014062,-0.07460255,-0.017537104,-0.03299308,0.037508465,-0.04624414,-0.06288754,0.042150922,-0.07067216,-0.0067891004,-0.01979034,0.0083476,0.03635216,0.020920686,0.017043864,-0.17802003,0.013539475,-0.022115614,-0.023855986,0.052151743,0.06307508,0.05197304,-0.06868903,0.0149874855,-0.06557617,0.029683866,-0.041502737,-0.092532426,0.04439512,0.047593024,-0.015959824,-0.009987251,-0.057117708,-0.06826712,0.018216854,0.064212784,-0.0021785572,0.06313485,0.004484381,0.028841231,-0.018303148,-0.036871098,0.042998806,0.05551501,-0.050995387,0.001769069,-0.0017873873} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.095806+00 2026-01-30 02:01:13.441283+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2402 google ChZDSUhNMG9nS0VJQ0FnSURRM2RTTGVREAE 1 t 2405 Go Karts Mar Menor unknown Buenísimo, buenísimo... buenísimo, buenísimo... 5 2019-02-01 01:52:39.833374+00 es v5.1 V4.01 {} V+ I3 CR-N {} {"V4.01": "Buenísimo, buenísimo..."} {0.04281685,0.07749711,-0.05641849,0.02785247,-0.09943512,-0.023805704,0.052851893,0.01135063,0.007165029,-0.098398544,0.061525017,-0.0798904,0.008942711,-0.0013696982,0.01802152,-0.040104922,-0.027783254,0.08630775,0.022698939,0.011737696,0.06919003,-0.0036769784,0.035713274,0.12837112,0.032986294,0.044443727,0.08064817,0.06530964,0.020688374,-0.034055796,-0.09343679,0.043652024,0.0175228,-0.039880108,0.009013062,0.028244818,-0.057441078,-0.03680112,0.044770397,-0.031398304,-0.0087993825,0.003024767,-0.037730057,-0.029301444,0.044798926,-0.115424916,-0.0010204985,0.037680607,0.030684594,0.040002253,-0.0031696297,-0.045354586,0.013066731,0.05562693,0.0056279204,-0.028639287,-0.041017957,-0.0079306,0.086132474,0.07022678,0.066804826,-0.0415439,-0.07787786,0.04837781,-0.035932757,0.017033666,-0.043748092,-0.012142115,-0.083369546,-0.02999656,0.0721192,-0.0072106705,0.023098128,0.07584034,-0.012325646,-0.019212412,-0.010884148,-0.026264867,-0.052894708,-0.07817367,0.11038536,-0.025935596,-0.025306044,0.0033486097,-0.04413663,0.056894105,0.0007783095,0.030112846,0.046506613,-0.050230436,0.027876219,0.09864694,-0.048941113,-0.021115279,-0.012459527,-0.02366612,-0.0008063127,-0.02608659,0.004442669,0.047876965,0.03833758,-0.015045321,0.031570144,0.020691928,-0.043801766,-0.014107199,0.036726464,-0.038171846,-0.0043536425,-0.016831622,-0.057951253,-0.061361823,0.012701215,0.010401255,-0.054077804,0.052441742,0.003760854,-0.001912459,-0.028083049,-0.0052225743,0.020901287,-0.02853082,-0.08525015,-0.05732989,0.054998327,-0.06638798,-0.016732143,-1.3717198e-33,-0.004533982,0.04144988,0.011384889,0.10158857,0.04049485,0.011687536,-0.070771605,-0.101313524,-0.098933965,-0.021832665,-0.03492369,0.012963359,-0.06892901,0.007426154,0.13343546,-0.0005218409,0.007839946,0.0581328,0.015690591,0.040919386,-0.0040585715,0.07425164,-0.04836576,0.002065316,-0.02895102,0.01217352,0.07838929,-0.025270566,0.0011971467,0.022681195,0.063858174,0.059358187,-0.022918006,-0.05154162,0.0064380323,-0.053931687,-0.04091506,-0.053241834,-0.010446054,-0.016608048,0.026296627,0.038442545,-0.11671953,0.08056044,0.03147484,-0.035186905,0.008568489,0.040434044,0.08610689,-0.027884481,-0.067102805,0.033277046,-0.08461261,-0.03434413,-0.025766931,0.014895053,0.012350667,0.037858997,0.047929574,0.046735372,0.08889495,0.017062336,0.016054094,0.0034462984,0.012909463,-0.0695113,-0.0077092783,0.08736926,0.08772105,-0.031923734,0.005697142,-0.055347938,-0.014387027,0.084155716,-0.053895447,0.030440025,-0.07423078,0.0674756,-0.061360303,-0.0138177,-0.05203709,0.03943598,0.07284656,0.06656774,0.06637611,0.10357692,0.0018966242,-0.07910768,-0.06797157,0.03962382,-0.04466352,0.008162133,0.08040088,-0.063017294,-0.056902792,9.500124e-34,0.07504709,-0.046473317,0.023578787,-0.016338151,-0.029634539,-0.04237666,-0.03916989,0.052152045,0.029899111,0.07061038,0.064204164,-0.05534057,0.10339064,-0.018777937,0.03621975,0.14028655,0.09813354,0.03449154,-0.07215423,-0.04962519,-0.09520295,-0.016582673,-0.030204419,0.034131967,-0.04482698,0.036332972,0.014225432,0.015961858,-0.10118466,0.03762408,-0.032746505,-0.15020655,-0.063674495,0.03294278,0.016490167,0.08361383,0.08288692,-0.014356914,0.013978816,0.005038245,-0.05080911,0.021287248,-0.0012018065,-0.012388811,0.009578992,-0.07989258,-0.032080587,-0.038595367,-0.072196156,-0.053150184,0.047044054,0.032600824,-0.0327194,-0.09398778,0.049138688,-0.09225905,-0.028464818,-0.016010348,-0.12545599,-0.031058937,0.039221656,0.037385304,-0.00025057074,0.061178435,0.0015959861,0.015366246,-0.045535214,-0.036568124,0.079871535,0.004985979,0.007911092,-0.054532155,-0.07947971,0.04004129,-0.11509166,0.13429505,-0.041215587,0.0038438952,0.023206076,-0.00399594,-0.013345445,-0.05008816,-0.053930312,0.072734386,-0.021364579,-0.019472184,0.0014426772,-0.023873612,0.02867243,0.053124215,0.03182163,0.031607404,0.05089442,-0.073562585,0.033318374,-1.907675e-08,-0.0016928341,-0.027082872,-0.08350759,0.014213904,0.043424085,-0.04340836,-0.08805874,-0.02823864,0.01219213,-0.0030511646,-0.027560381,-0.06712595,0.035838034,0.018928967,-0.03618644,0.046856135,0.06930742,0.05183656,-0.004426435,-0.037498266,-0.03826629,0.018208276,-0.014879209,-0.02031455,0.026354037,-0.012781064,0.0060924958,0.018992346,0.09197438,-0.0045198803,0.05374633,-0.02811817,-0.047782365,-0.085900955,0.03597333,0.057267193,-0.05157234,0.008657893,-0.027233409,-0.07834811,0.13010715,-0.022378396,0.04207616,0.018148903,-0.011821122,-0.042611152,0.024226125,0.017994437,0.005558166,-0.0883314,-0.057100363,0.011799973,0.051975694,-0.013395991,0.07199734,0.013247307,0.0050487835,0.06285248,0.0056976643,0.031191839,0.076947995,0.06709165,0.03459359,-0.009818655} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.107958+00 2026-01-30 02:01:13.446822+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2403 google ChdDSUhNMG9nS0VJQ0FnSUNZMl96am5nRRAB 1 t 2406 Go Karts Mar Menor unknown Pittig episch pittig episch 5 2020-02-01 01:52:39.833374+00 de v5.1 V4.01 {} V+ I3 CR-N {} {"V4.01": "Pittig episch"} {-0.044450462,0.095926724,0.025629997,-0.069262445,-0.063184306,0.059028424,0.10068842,0.08334449,-0.018345565,0.037275948,0.06391043,-0.08785395,-0.07621405,-0.025307925,-0.08076637,-0.058548655,-0.030878205,0.034541756,0.062608756,-0.019341342,0.0065101734,-0.026634045,0.04999497,-0.013196225,0.03789603,0.050513614,0.054335967,0.011879153,0.0681742,-0.05708138,0.06736896,-0.003892648,2.8654235e-06,-0.019209849,-0.019730292,-0.0015554304,0.06066856,-0.083777055,-0.0074919355,0.03926688,-0.11851234,-0.028989743,-0.087023586,-0.09196428,0.052409355,-0.0248671,0.016649285,0.058495685,-0.0018117239,-0.064115725,0.03949298,-0.0861582,0.048821665,0.023010073,0.043914184,0.0037606421,0.041745644,0.02196736,-0.07118905,-0.024833834,-0.035933018,-0.03890926,-0.10161511,0.023795249,0.021043124,0.004034842,0.006564968,0.02173887,-0.12808141,0.0664329,0.05918003,-0.051496934,-0.02490923,0.05867772,-0.04526308,-0.04648396,-0.027744187,0.0028909761,-0.029961577,-0.008836359,-0.00981412,-0.004132736,-0.07743901,0.021416828,0.031240009,0.037465382,0.02564818,-0.024109116,0.021437865,-0.050205998,0.025458086,-0.010489908,-0.05020176,0.080942184,0.03818453,0.034110986,0.04900239,-0.032906774,0.02293382,0.11734841,0.010825086,-0.0062970873,-0.016764827,0.0129416,-0.100444786,-0.016824573,0.014420632,0.002001773,0.04077196,-0.010801875,-0.11747399,-0.08481277,-0.0024302595,-0.0007522652,0.04666334,-0.044037793,-0.03504691,-0.09964211,0.06872487,-0.051082477,0.012695412,0.051888194,-0.07984228,0.1022627,0.015144028,-0.014369434,0.087578796,-1.36063315e-33,-0.00083605107,-0.011350245,-0.006354304,0.0105569195,0.021501401,0.1233418,-0.07949804,-0.050767448,-0.058895603,-0.027449463,-0.06797703,-0.005077496,-0.04522566,-0.026757818,0.0821418,0.04418523,-0.05807691,0.11779717,0.084958136,-0.03287612,-0.01245839,0.022288261,-0.03066641,0.06409536,-0.012252184,-0.050012816,0.032976307,-0.053787544,-0.040786542,0.022021422,0.05380287,0.02758791,0.005702903,-0.08237479,-0.09085843,-0.023269868,0.042589825,0.040784575,-0.028117727,-0.010039628,0.08181714,-0.03981165,-0.010883178,-0.011123038,0.09057088,-0.049186453,0.011125804,-0.022102108,0.055925407,-0.014586261,0.019168938,0.003336183,-0.016587483,0.026265178,-0.03651712,0.082356274,-0.020204823,0.0054611196,-0.014754101,-0.027704395,0.05360354,0.10010099,0.058626205,-0.07953819,0.00884588,-0.0013154822,0.015444478,0.018134043,-0.01610652,0.10949083,-0.14285828,-0.020804599,0.06425303,0.00550864,-0.005476406,-0.010830126,-0.038960323,0.06456016,-0.03258502,0.013463661,-0.10349272,0.0033967923,0.03243455,-0.022587111,0.07522448,0.016651923,-0.028586367,0.01853248,0.037188575,0.09982566,0.051427938,-0.06156304,-0.018516848,0.0042687557,-0.0413817,-3.5605547e-34,-0.019681497,-0.04800589,-0.035367087,0.055382613,0.025728706,0.05688741,-0.044449173,0.11292235,-0.047342837,-0.008201327,0.038180225,-0.075517796,0.09469394,-0.026986212,-0.034209114,0.02691811,0.053208616,0.03781699,-0.04766186,-0.06589332,-0.0073017627,-0.09503741,0.00748735,0.022777455,-0.04808096,0.02139421,0.073184095,0.037401006,-0.095212996,-0.06770089,0.057650167,-0.034468256,-0.076919235,0.0466436,-0.0054188175,0.07349926,0.019501356,0.0870325,-0.05306134,0.030838778,-0.047764223,-0.01565514,-0.074059606,0.043625906,0.057208832,-0.022193935,-0.033754755,-0.012581061,-0.05818974,-0.04419036,-0.0132890735,0.08823454,0.06659777,-0.073447905,0.053251132,-0.042782594,-0.07251391,-0.08147551,-0.0077822823,0.039149668,0.08218703,0.07183493,-0.029296834,0.10328347,0.03512523,-0.115348,-0.1342743,-0.028422343,0.106571555,0.04057904,0.10093162,-0.002112105,-0.026822044,0.025602352,-0.031664312,-0.020120416,-0.0143869305,0.020407224,-0.016792197,-0.005349719,-0.04555274,0.021616865,0.004902308,0.065341905,-0.056509532,-0.0004792421,-0.028840953,-0.025092049,0.031052819,0.0029610947,-0.00543343,0.06208322,-0.019031558,-0.05090738,0.013640197,-1.4911965e-08,0.024974858,-0.038673207,0.028940866,0.0051283203,0.008488976,-0.10233814,0.011836473,-0.039385345,-0.03165623,-0.031478472,-0.008393777,0.029018214,0.008983931,0.03470907,0.050001808,0.04555096,0.0357953,0.029224824,0.02178182,-0.01604033,0.015131052,-0.023620198,0.0061370246,-0.028471375,0.0037093551,0.05192325,0.02628026,0.0406277,0.02993765,0.019592606,-0.009793596,0.053868536,0.01452876,0.0180549,0.015595645,0.019060312,-0.06058158,0.058943756,-0.099024735,-0.04765241,0.02198912,-0.028019356,0.12101133,-0.032998387,0.023821125,-0.005369482,0.058534473,0.015714906,0.09774059,-0.06746096,-0.06516467,-0.00829814,0.017923428,0.01680992,-0.008950713,0.043235723,-0.0137661975,-0.03675839,-0.03977636,-0.03898914,0.06406857,-0.009523207,0.01926576,0.064497024} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.118553+00 2026-01-30 02:01:13.450783+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2404 google ChZDSUhNMG9nS0VJQ0FnSUQ2bHFXUkJREAE 1 t 2407 Go Karts Mar Menor unknown Fedt fedt 5 2022-01-31 01:52:39.833374+00 da v5.1 V4.01 {} V+ I2 CR-N {} {"V4.01": "Fedt"} {-0.029793812,-0.014369631,0.016678413,0.024820898,0.08890008,-0.019612137,0.045089673,0.14300278,0.011181841,-0.03949673,-0.052695222,-0.065726526,-0.054042716,-0.0106522925,0.016576355,-0.0881325,-0.014531615,-0.07085015,0.008636617,-0.05791653,-0.07825145,0.02906694,0.0356601,-0.03101467,0.020617824,-0.036750387,-0.053299256,-0.017981436,-0.098153844,-0.16071717,0.00025068872,0.004644375,-0.014292557,0.066712044,-0.06431745,0.028422797,0.0063334624,0.035916932,0.0142575,-0.046802655,0.041102864,-0.06639296,0.009725949,-0.02070466,0.06179573,-0.015066826,-0.016748546,0.0077950214,-0.021362843,0.07755989,-0.019968495,-0.026804019,-0.009284419,0.08479781,0.0923358,0.025491873,0.0820719,0.015831938,-0.032613814,-0.035104576,0.0076903095,-0.0102762645,-0.14119208,0.019658307,0.06119801,0.0054912283,0.015231924,0.017085133,0.059436057,-0.110839434,0.022428289,-0.011523232,-0.062025107,-0.012988202,0.043591835,0.04589989,0.0032814818,-0.0011780984,0.049140047,0.022183696,-0.018793276,0.088195115,0.005196388,-0.041431036,-0.04895633,-0.05951115,-0.044008903,0.056539483,-0.034468506,0.007451971,-0.014231062,0.050073244,0.006222268,0.07192728,-0.11277452,-0.022834875,-0.07473613,-0.0036432198,-0.10437355,0.18136087,0.038105287,0.06664421,-0.13156082,0.03133979,0.016731983,-0.02613344,-0.010185392,0.021455012,-0.011464616,-0.027633727,0.018759754,0.033395987,-0.005763193,-0.0061036847,-0.01910258,-0.016261693,-0.035041075,0.011439735,0.0756414,-0.027648777,0.022828985,0.016673487,-0.05871954,-0.063984044,0.023257414,-0.09558074,-0.0014343291,-2.1592355e-33,0.015803067,0.0024289167,0.029096035,-0.011476341,0.10123563,0.023620564,-0.022536889,0.016330108,-0.024489462,-0.0031738079,0.022601616,-0.029535636,-0.08176175,-0.0538308,-0.023992209,-0.08086643,-0.034279283,0.03155105,0.008665652,-0.03782221,-0.029729879,0.07286288,0.014346209,-0.013771579,0.05571786,-0.04712957,-0.011542809,0.041215844,0.056229837,0.0358862,-0.039977215,-0.012310837,0.042994894,0.036106445,-0.0042232205,-0.07983966,0.010309985,-0.08375962,-0.032275043,-0.022114068,0.029118914,0.010161042,0.05457534,0.034707524,-0.015346196,0.08725061,0.0034479024,0.0874762,0.09335497,0.04919081,-0.016440252,-0.013640855,0.009174352,-0.032855656,0.022630977,0.042032108,-0.014651846,-0.036583547,-0.0127355335,0.051483743,0.062495314,0.016341686,-0.011280673,0.032618254,-0.101111196,0.04828134,-0.02651838,0.0013236128,0.04763271,0.11003168,-0.02738293,0.0580659,0.06315358,0.071440704,0.08233188,-0.02925695,0.06564899,0.03754723,-0.044896156,-0.048378624,-0.05201291,-0.038182218,-0.019507999,0.079208314,0.07544844,-0.00530421,-0.030724257,0.033203997,0.06316034,-0.0014229215,-0.1019672,0.03605423,0.033658713,0.034349445,-0.047326308,2.5162672e-33,-0.09520682,0.033017036,-0.055658035,0.052762777,0.0010372979,-0.06675507,-0.020973999,0.06565891,0.094245985,0.1041483,0.042028137,-0.06197916,0.065902226,-0.034679484,-0.019963304,-0.0024782605,0.012140513,-0.08985949,-0.07148886,0.026402164,-0.009335943,-0.05734919,-0.08919958,0.045830604,0.021655161,0.037696455,-0.08699387,0.04850341,-0.09306171,-0.0067480705,0.055274718,-0.018975869,-0.035202663,0.027935686,-0.05819864,0.05162676,0.105130725,0.048494954,-0.028439274,0.06634432,0.041147016,-0.019322887,-0.022184208,0.079987384,-0.007915009,-0.062327135,-0.02841756,-0.018963328,0.061200563,0.07235238,-0.061817735,-0.042403847,0.06909434,-1.4391837e-05,-0.07103077,0.032537475,0.041529298,0.036981903,0.012128538,0.01588497,0.054905344,-0.031020828,0.014166791,0.023654351,0.035344146,-0.086990304,-0.042898487,0.0077771773,0.002836877,0.14976595,0.06063249,0.012281701,0.01586782,-0.021039857,-0.03956585,0.01675418,0.0019392564,0.019339722,-0.0409508,0.049947016,0.071518354,-0.034429703,-0.020195477,-0.0076491176,0.026959974,0.03332898,0.10634071,-0.029828932,-0.022946311,0.071904436,-0.033727635,0.024525693,0.08125715,0.006812729,-0.050456386,-1.3416644e-08,0.022816412,-0.0036924328,-0.16210108,0.030508306,-0.022984048,-0.051992286,0.016550107,-0.044580463,-0.056127466,0.028849687,-0.03408181,0.02898457,-0.035456844,-0.05375662,0.05901743,-0.035291124,-0.07862865,0.06808257,-0.0704972,0.022271909,-0.022777239,0.017555617,0.021553285,0.042957187,-0.016946774,0.017975831,0.017823199,0.066513434,0.07234407,0.058341518,-0.018968694,0.055456348,-0.037107475,-0.015640264,-0.02633892,0.05268429,-0.03677695,-0.014160186,0.03779547,0.09746766,-0.03670958,-0.039389182,-0.014439614,-0.0006295851,-0.025477048,-0.06716244,-0.09968939,0.055000607,0.020926367,-0.04182874,-0.0010173309,0.02200454,-0.019100033,0.0017121839,0.058975987,0.048726097,-0.012917173,0.05154769,-0.0500971,0.02070777,-0.004312324,-0.0067850864,0.115082145,0.012729565} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.131699+00 2026-01-30 02:01:13.454369+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2355 google ChdDSUhNMG9nS0VJQ0FnSURDZ3JIMWhRRRAB 1 t 2358 Go Karts Mar Menor unknown Super!!!! Sehr zu empfehlen super!!!! sehr zu empfehlen 5 2021-01-31 01:52:39.833374+00 de v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Super!!!! Sehr zu empfehlen"} {-0.057742987,0.07106688,-0.012534823,0.008539156,-0.02674546,0.11212606,0.011120089,0.07501068,-0.04326135,0.028098233,0.026336227,-0.041413594,0.015157003,0.0016351619,-0.04165414,-0.04078909,0.012381895,-0.03761124,-0.08797594,0.036084175,0.01858678,-0.117438324,-0.0075354343,0.019397037,0.043874267,0.0338162,-0.15037021,0.021437569,0.012673606,-0.07418384,0.009844231,0.037062217,-0.008711631,-0.01647231,0.039666712,-0.005909956,0.0632271,-0.019884337,-0.040369064,0.0037184074,-0.0712199,0.008853465,-0.058426242,-0.1227132,0.025891826,0.0407308,0.010429365,0.04582746,-0.06807046,0.0529495,-0.048392847,-0.05773931,0.078047216,-0.0075558564,0.021255288,0.0014580524,0.07343298,-0.049939785,-0.06255812,-0.027026366,-0.023249237,-0.067343354,-0.113781996,0.0109946085,-0.009184064,-0.019364247,-0.038910482,-0.09641951,-0.09338715,0.07343971,0.021711692,-0.05681196,0.08181121,0.039320547,0.034606636,0.031131078,-0.0455878,-0.121076375,0.03818498,-0.002356082,0.0502553,-0.06206298,-0.023430105,-0.037002698,0.023776555,0.011380906,0.028537842,-0.054250207,-0.018706575,-0.0154944025,-0.03826712,-0.0035540701,-0.09449837,0.037853997,-0.10197862,0.036055766,-0.03352501,-0.014312613,-0.05534354,0.05975359,0.0035982712,0.0039815456,0.05864161,-0.09446749,-0.038361948,-0.022151448,-0.03606397,0.061313916,0.03610244,0.008359873,0.0052956133,-0.06601479,0.004134737,-0.030476954,0.023964096,-0.023039948,0.016273333,-0.028544756,-0.06811237,-0.06917843,0.07026149,-0.057638485,0.0068155564,-0.017869683,0.06681676,0.013251332,0.040089507,-8.503768e-34,0.07124126,-0.016398741,0.01601931,0.0110127,0.058773655,0.043351255,-0.042177077,0.023598047,-0.024333974,0.016090717,-0.057281546,0.008797042,0.043094516,-0.008182907,-0.06068873,-0.0115839075,0.0060478044,-0.111215174,0.03238419,0.009867114,0.089200504,0.019536216,-0.014200534,0.020057442,-0.018521298,-0.083940834,0.06403133,-0.02800219,-0.03806356,0.06998748,0.017303174,-0.042912357,-0.06299951,-0.03178667,-0.079474896,-0.02618287,-0.031749446,0.0232962,0.04100282,-0.04930296,0.069510184,-0.051993202,-0.012177442,-0.04810628,-0.04646617,0.00566608,0.06913559,-0.003940771,0.14836323,-0.077053286,-0.019802555,-0.045536775,0.0024148363,0.040600337,0.039430104,0.08901076,-0.03632508,0.0692562,0.02301032,0.011565002,-0.006029958,-0.0021586663,0.0102226045,0.018558424,0.019333128,-0.05911085,0.013248721,0.021746019,0.0055609345,0.06594223,-0.022404885,-0.026562305,0.082324326,0.007283597,-0.02801133,-0.013220937,-0.05607783,0.06885939,0.0232339,0.026905084,-0.08991237,0.053736407,0.03482222,-0.0006493836,0.012894643,0.007826141,0.028604237,-0.04146123,0.012200799,0.0021975108,-0.022620128,-0.023907306,0.08100878,-0.041302416,-0.06292921,-2.8137806e-33,0.046769295,-0.0013517857,-0.053379286,0.034287304,0.056503862,0.069928735,-0.095716715,0.0010490236,-0.088211514,0.0031089177,0.06855413,0.045976296,0.15037642,-0.0035620425,-0.021837354,-0.018082326,0.09122836,-0.023910912,0.057829607,-0.05488284,-0.04419143,-0.07180241,-0.03767615,0.064189285,0.004029546,-0.011608852,0.09795356,-0.012298782,-0.01441243,0.07810302,-0.018735925,0.017389141,-0.022260612,0.07122556,-0.00036292055,0.04584382,-0.020164398,-0.008909118,-0.06069575,0.08836459,-0.08960082,0.032424375,-0.03393968,0.12464962,0.04296946,-0.0123343235,-0.08944605,-0.0025259247,-0.03577487,-0.04101751,0.0006377044,-0.00596225,0.021129215,-0.10486444,-0.026835537,0.033103984,-0.013059372,-0.06267197,0.01900774,0.022882571,0.069262154,0.061998732,-0.030286714,0.011006462,0.09480363,-0.023785325,-0.017879885,-0.073094375,0.01537436,-0.018750448,0.07628857,0.05114734,-0.0804352,0.08905647,-0.019218018,-0.04820655,0.07458531,0.16128337,-0.046538547,0.039154302,-0.040378246,0.020627344,-0.02125373,-0.003714662,-0.009879234,0.013090447,-0.017271291,0.006033416,-0.030533187,0.032047193,-0.10032466,0.09460959,-0.01964094,0.024138149,0.07786214,-2.180533e-08,0.03719433,-0.019318476,0.03089029,0.033868887,0.009917125,-0.08840418,-0.067185305,-0.09451213,-0.044625618,-0.041766208,0.025500212,0.0032197414,-0.0326026,0.10340829,-0.0102491975,-0.022350516,-0.015506363,0.058776088,-0.011507621,0.011149271,0.05578444,-0.032735795,-0.05066011,-0.0630164,0.0073301215,0.056353375,0.0028166124,-0.0780445,-0.041875254,-0.052150875,0.02032576,0.089613885,0.008507456,0.006869975,-0.041118994,-0.035607513,-0.013043011,0.042077754,-0.082285814,0.038985312,0.070957355,-0.035128932,0.04263747,-0.034324557,0.015302929,-0.072092056,-0.0014615093,0.018743694,0.05682347,0.06800473,-0.08187324,0.0050741825,0.011822804,0.043943636,0.07427991,0.043897305,-0.01064455,-0.0760126,0.001734856,0.11463685,0.06302699,0.05234524,-0.008506371,0.022699054} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.735076+00 2026-01-30 02:01:13.118629+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2356 google ChZDSUhNMG9nS0VJQ0FnSURjbS03WFlBEAE 1 t 2359 Go Karts Mar Menor unknown Dos palabras: im - presionante. dos palabras: im - presionante. 5 2021-01-31 01:52:39.833374+00 pt v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Dos palabras: im - presionante."} {0.0055661383,0.094032176,0.032318193,-0.06445081,-0.056139156,-0.013667163,0.12234301,0.06944337,0.027389083,0.07308323,0.10236974,-0.05260334,-0.0016505119,0.0011057561,-0.0054917084,-0.05689012,0.029495139,0.045074943,0.02884013,0.057589978,0.052051526,0.020673038,0.004503266,0.037123796,-0.013118594,-0.0173684,-0.033490837,-0.014896484,-0.0166079,-0.07450666,0.023031086,0.124825895,0.10906617,-0.048644748,-0.02807491,0.0201782,0.083417356,-0.018961014,0.04192578,0.010578606,-0.09750955,-0.027452681,-0.017590571,-0.011455821,0.015701033,-0.046079807,-0.04756755,0.09080174,-0.010358676,0.015831836,-0.05072632,0.0090812165,0.016857963,0.03532744,0.0377443,-0.047973186,0.018468194,0.06843451,0.037415825,-0.011931409,-0.03993513,0.04203183,-0.1053664,0.017258637,0.005179483,-0.0049617747,0.019154156,-0.027270114,-0.08673819,0.06866303,0.0941674,-0.049069114,0.009063464,0.038291883,-0.062180344,0.010469752,0.05587303,-0.038114414,-0.0073585846,-0.060228765,-0.024437241,0.024806036,-0.00920893,-0.077930436,0.003131374,0.017757116,-0.034740113,0.0010317293,0.06466639,-0.039665837,-0.012124557,-0.021169549,-0.07298659,0.0732891,-0.055250417,-0.019685365,-0.025744509,0.02475674,-0.0097344415,0.110155806,0.11345115,0.01190094,-0.051962227,0.05352435,-0.03934542,0.003623041,0.038352158,-0.083623886,0.017740304,0.030432658,-0.086849906,-0.071734905,0.010011755,0.013466529,0.0021515756,0.047447845,0.046726972,-0.0102851475,-0.009988648,-0.12232732,-0.011579798,-0.0017308347,-0.0052026864,0.011229877,0.0027290103,-0.030520657,0.03584262,-2.931843e-33,-0.025520716,-0.07196269,0.06142768,0.04937665,-0.037581086,-0.03891628,-0.08978276,-0.05017857,-0.102805264,0.030222654,-0.12257054,-0.015949866,-0.06430098,0.032713264,0.022009434,0.012745666,0.011835399,-0.017907755,0.08902501,-0.015100524,-0.034972917,-0.008766247,-0.04596656,0.033983454,0.05068623,0.10312255,0.082556695,-0.0516856,0.0028198166,0.070456,0.01055679,0.031383093,0.016747838,0.015887475,-0.045445643,-0.04855461,0.01990603,0.0406158,-0.060434345,-0.041118965,-0.0004628619,0.030765194,-0.012909901,-0.011080517,0.05036807,-0.050567206,0.02373965,0.004045695,0.026318483,0.025724499,-0.061940055,0.00044743915,-0.00552841,-0.008250235,-0.046054397,-0.011704452,-0.104044296,0.06388426,0.029687667,-0.00020161865,0.00619938,-0.049886297,-0.027161935,0.02633172,-0.03126375,-0.075443596,-0.020180348,0.0319337,0.10155315,0.050033946,-0.10535985,-0.05169761,-0.033007856,0.07133582,-0.021689393,0.07227956,0.004172929,0.013098134,-0.08768098,-0.0035649526,-0.07857502,0.045447446,-0.0364519,-0.0072178,0.15235272,0.0416762,0.01636593,-0.06753441,0.0017511467,0.050141215,0.022442792,0.062588476,-0.030497892,0.0014752973,-0.112040825,8.437264e-34,0.055209734,0.013740977,-0.026669586,0.02096424,-0.066900685,-0.0058726734,0.04967528,0.10739572,-0.06938574,-0.09865312,-0.10242332,-0.12110954,0.091445245,-0.0220487,-0.001486262,0.10676008,0.040329583,-0.062981464,-0.03205586,0.017467001,-0.09624834,-0.00782329,-0.032358397,-0.0056052958,-0.026736308,-0.038202457,0.033227246,0.04351775,-0.03500154,0.011354739,0.04640522,-0.011628649,-0.039045613,0.05596821,-0.0060735308,0.08763662,0.05815492,0.012764472,-0.023473278,0.066762954,-0.03238938,0.048107125,-0.08077002,-0.0070656836,0.0008846402,-0.005871892,-0.08097386,-0.03722624,-0.07940528,-0.03359172,-0.001110355,-0.006075226,0.099062905,-0.06655053,0.09354905,-0.09509945,-0.025793016,-0.015691273,-0.07169361,0.053139694,0.081896834,-0.0015199005,-0.040806487,-0.109568335,0.05253682,-0.011527285,-0.056092475,0.07579314,0.06652044,0.07892059,0.1321878,-0.0076120286,-0.11573308,0.04337463,-0.05068391,-0.05585814,-0.06952395,-0.018086921,0.006400419,0.09574428,-0.047624797,-0.031764228,0.005454297,-0.013527824,-0.0061223945,0.04608116,0.025743343,-0.010318709,0.0036474618,0.016585458,0.016625827,0.035297997,0.026275156,0.019320235,-0.0074403686,-1.9273633e-08,-0.009635946,-0.071266,0.0034822961,0.017071564,-0.0052382923,-0.0055054557,-0.069049045,-0.010260509,-0.023209317,-0.039265055,-0.029025521,0.008647888,0.0016367608,0.0063843243,-0.009086853,0.06759781,0.050407395,0.021593977,-0.031294264,-0.056874987,0.03178383,0.004953009,0.013536072,-0.06577061,-0.005519954,0.01874149,0.038854897,-0.004079782,-0.018327262,-7.131141e-05,-0.060769007,0.0367821,-0.00081287406,-0.11089002,0.015639232,0.05320307,-0.031653773,0.04601773,0.031305708,0.010642938,0.11117334,0.024933752,0.01252661,-0.014874279,0.05728783,-0.02508336,0.021317197,0.0005069071,-0.0009918388,-0.076223046,-0.025833763,0.043310583,0.05002258,0.06639267,0.060095996,0.019648977,-0.0020963987,0.031925216,-0.0020125045,0.019357037,0.10730671,0.049886536,0.0068911244,-0.091557525} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.750731+00 2026-01-30 02:01:13.130188+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2357 google ChZDSUhNMG9nS0VJQ0FnSUM2eDZMTUJREAE 1 t 2360 Go Karts Mar Menor unknown Karts muy divertidos y a un buen precio. karts muy divertidos y a un buen precio. 5 2022-01-31 01:52:39.833374+00 es v5.1 V1.01 {V1.01} V+ I2 CR-N {} {"V1.01": "Karts muy divertidos y a un buen precio."} {-0.0145769,0.0152819175,0.03706229,-0.01490539,-0.0840729,0.036709756,0.023536159,-0.0032807197,0.059184775,0.009945067,0.0859876,-0.04500605,-0.068978034,0.0022068396,0.0055005355,-0.04787423,-0.07397256,0.03122944,-0.005361973,0.032483753,0.040779844,0.017468771,-0.029583042,0.1471554,-0.032285083,-0.0521299,0.014141314,-0.007813746,0.037045684,-0.043412734,0.013974492,0.08786934,0.091681905,0.0070899585,0.0031337386,-0.020192344,0.02812136,-2.6816942e-05,0.03348543,0.061609235,-0.07867842,-0.048686266,-0.046760324,-0.0026537217,0.048624404,-0.0013748741,0.0016086443,0.060264427,-0.0014373093,-0.012648577,-0.044413913,-0.03582517,0.020787552,-0.00816331,0.062469397,-0.039076716,-0.057357997,-0.0032613943,0.12699683,0.018458214,-0.008020206,-0.020390378,-0.07232133,0.013923187,-0.041348327,-0.014943604,-0.03043334,0.058184665,-0.048460927,0.06609981,0.16842844,-0.08510883,-0.010517562,0.013081739,0.043652546,0.014658775,0.009676862,0.006662348,-0.103834376,-0.055742353,0.059997305,-0.011097925,-0.056174014,-0.07521206,0.06639095,-0.017860822,-0.045996536,0.019805038,0.0055134944,-0.079394,-0.03784015,-0.042673685,-0.028001476,-0.021083148,0.03352177,0.012303321,-0.034418907,-0.13026974,0.044106632,0.055796202,0.0300866,0.011234654,0.08977599,0.040718377,-0.04096057,0.00041391858,0.04422488,0.0025762436,0.035568997,0.05760417,-0.014194674,-0.009551771,-0.071246415,-0.026002785,-0.072015226,-0.015371439,-0.0031879651,-0.057476155,0.0032481772,-0.08486502,0.027105268,0.092295274,-0.045480747,0.020924544,-0.0070376275,-0.05497085,0.047390234,-4.968699e-34,-0.0646396,-0.10305669,-0.08948326,0.054414276,0.00056141644,-0.06902415,-0.07356284,-0.08545188,-8.208124e-05,-0.011846747,-0.019029252,0.052381378,-0.0124034155,0.056020334,-0.0080416985,-0.017325463,0.06479359,0.0147055285,0.11748358,0.072754316,-0.054109067,-0.00016470303,-0.021192977,0.078790136,-0.02267956,-0.0020605056,-0.06853758,-0.0845466,-0.052353717,0.05982278,-0.019352771,0.017640008,-0.040449377,-0.046633802,-0.12034118,0.003072175,-0.054810986,0.049534414,9.323867e-05,-0.03687173,0.0058357175,0.020807123,-0.074272946,0.009293489,0.03168005,-0.038256597,0.024242152,0.091010466,0.059074663,0.055455856,-0.018394765,-0.0731648,-0.053069342,0.00012712122,0.025124239,0.030965587,-0.006390649,0.07749344,-0.028574571,-0.0139936,0.030521242,0.05677363,-0.028479885,-0.038288288,-0.06858317,0.000934666,0.02750973,0.047650136,0.08802211,0.031716548,-0.17550153,-0.02422567,-0.026091786,0.0094247265,-0.0072389157,-0.012846121,-0.024883583,0.07163201,0.015160002,0.05725431,-0.08228082,0.035848767,0.054522764,0.072607696,0.061731238,0.07603583,0.039693464,0.028884862,0.00019842022,0.068696894,-0.051854543,0.06441739,0.049407274,-0.0052076173,0.042391587,-6.238209e-34,0.04952438,-0.0073278244,0.018239604,0.10065495,-0.03948851,0.017284833,-0.02909136,-0.0287003,-0.05997239,-0.062224116,-0.044253677,-0.072714224,0.10988587,-0.056412976,-0.01845035,0.059139222,0.11252001,0.025010439,-0.026519928,-0.046473697,-0.04013265,0.041723695,0.06338881,-0.033562984,-0.071116224,0.006036187,0.05712621,0.04374086,-0.06292243,0.0056547034,-0.015764305,-0.03636682,-0.07379466,0.013231312,0.013390824,0.05888814,-0.031225992,0.07713934,-0.059970163,0.055814795,-0.010176134,0.064808145,-0.07200177,0.044826068,-0.053479616,0.022824787,0.03681613,-0.058179736,-0.025664605,-0.06619856,0.031079205,0.04246974,0.03262954,-0.044624932,0.007597156,-0.0907081,-0.0069232793,-0.05234721,-0.0731371,-0.030752387,0.054324165,-0.0045806854,-0.023835856,-0.0707244,0.06168302,-0.038166083,-0.1468914,0.0024501395,0.024538603,0.0014871245,0.11304606,0.005809452,0.0064037414,0.028853478,-0.07092622,-0.0009138415,-0.07511101,-0.0005371759,0.03249402,0.05685224,-0.102381416,0.03389995,-0.014853468,0.06393671,-0.0060362434,0.01377142,-0.022683391,-0.056266375,0.04644123,0.023143305,0.019440612,0.02835515,0.05096087,0.0031098658,0.014968885,-1.9963108e-08,0.011048394,-0.066176355,-0.025050089,0.041560255,0.008831255,-0.050754983,-0.108745575,0.019901631,-0.0076932884,0.052249603,-0.04410173,0.040959917,0.024385678,0.026836427,-0.06260363,0.05965363,0.085773215,0.10251704,0.008780348,-0.027115934,0.077205315,-0.0009072051,-0.017238995,-0.0118651455,-0.021818232,-0.011744315,-0.045695174,0.031115785,-0.01499472,-0.04768359,0.06224574,-0.042990267,-0.01255546,-0.01461663,0.010786457,0.01437909,-0.016879963,0.031010617,-0.048214946,0.0064490554,0.01180732,-0.02548295,-0.043016765,-0.0065359995,-0.071327806,-0.045786157,-0.013274904,0.14197971,0.019213628,0.038997293,-0.037163183,-0.0012988949,0.062212907,0.10274754,0.04948216,0.010405806,0.032904685,-0.009740539,-0.0032945466,-0.037116267,0.0046822745,0.109395064,0.011870407,-0.059427217} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.763515+00 2026-01-30 02:01:13.133169+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2358 google ChdDSUhNMG9nS0VJQ0FnSUNwc04yS3B3RRAB 1 t 2361 Go Karts Mar Menor unknown Giornata molto divertente giornata molto divertente 4 2024-01-31 01:52:39.833374+00 it v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Giornata molto divertente"} {0.04031517,0.03887532,0.046190213,0.018823538,-0.109005645,-0.027516235,0.10843714,0.043698553,0.033665642,-0.03165553,0.072831735,-0.034366276,0.007884617,0.016108412,-0.048013497,-0.02481369,-0.0013627859,0.086045355,0.053138144,0.12514314,-0.028375478,0.0003518687,-0.028719326,0.067669965,0.00060670153,0.020753063,0.018258572,0.0012734691,-0.033120956,-0.04963323,0.042815022,0.09913052,0.024948392,0.013041323,-0.017885944,0.0321165,-0.016770415,-0.015642546,0.065504156,0.10284473,-0.08131922,-0.005911598,-0.015894128,-0.031853367,0.060687598,-0.010416411,-0.010893813,0.061964367,0.008187434,0.021644637,-0.1288331,-0.1476567,-0.072948456,0.035223313,0.038766142,-0.04163928,0.0010593454,-0.01085388,0.02651425,0.056502275,-0.0026165843,0.014521247,-0.042195674,0.010031009,0.034846835,-0.0147072235,0.010204578,0.036430873,-0.044648346,-0.0044019343,0.12862055,-0.062229067,-0.0038861155,-0.07853666,-0.060599048,-0.022196647,0.014574689,0.014526796,0.0092605855,-0.016334828,0.042468853,-0.0065780175,-0.0723626,-0.052309904,0.01322457,0.046032935,-0.012588769,0.06863914,0.021181328,-0.025557477,-0.036231626,-0.0023571977,-0.036016166,-0.006788818,0.022955336,-0.025153171,-0.03238345,-0.114227004,-0.026862347,0.04825969,0.04123975,0.025357412,0.015059768,-0.043731395,-0.04611851,-0.03299564,0.07776199,-0.04593638,-0.02015702,-0.008418721,-0.030281078,-0.0046104356,-0.062098056,-0.07727903,-0.10457258,0.048734795,0.043849353,-0.06888274,-0.03480473,0.008827298,-0.03096158,0.03208225,-0.07244117,-0.0054786257,-0.028028555,-0.019140474,0.051018003,1.2073793e-33,-0.0011756461,-0.053780515,-0.02553231,0.06946665,0.048551608,0.023388142,-0.03523753,-0.14974943,-0.048031237,-0.046083033,-0.023374792,-0.042456087,-0.04079601,0.041820783,0.0065487325,0.015636472,0.014168561,0.016860325,0.030996125,0.07227395,0.00093825185,0.021499222,-0.056518663,0.0188653,0.0070355907,0.08307459,-0.063956715,-0.020530706,-0.05372396,0.056292687,0.04542049,0.004676278,-0.04267317,0.01904354,-0.026761623,-0.049664266,-0.07212071,-0.054782346,-0.017133037,0.023698652,0.01807125,-0.0067559266,-0.015133607,0.057001427,0.047075048,-0.035276588,0.046563942,0.009277478,0.12761728,0.04967861,0.03273041,0.002618252,-0.061613683,0.027228612,-0.066458285,0.042707592,-0.04261041,0.09530612,0.042854425,-0.0036383984,0.022309627,0.011905263,0.0059176045,-0.06515937,0.046090946,0.015778521,-0.03748648,0.030542955,0.09191556,0.034686618,-0.07944171,-0.09125178,-0.05105085,0.09840129,-0.080171645,-0.016301721,0.023980558,-0.043636844,-0.004080437,-0.032920793,-0.061291385,0.021432541,0.06696502,0.0033564118,0.07091885,0.1437426,0.05273947,0.05565282,-0.025644623,0.085730605,0.0016330341,0.09235605,-0.030125402,-0.10569335,0.03959528,-1.9019065e-33,0.013964847,-0.08480786,0.0059708077,0.0036292733,-0.031608205,-0.08945063,-0.10078594,-0.050613232,-0.039618183,0.016174495,-0.0416539,-0.029433861,0.068019964,-0.028406875,-0.053790487,0.08199294,0.12874076,0.009020478,-0.029610181,-0.039085437,-0.05269614,0.04797397,0.018965855,-0.03763,-0.08489701,0.033721358,0.07967735,-0.05264671,0.02329714,-0.028540436,0.019079043,-0.028092168,-0.070462815,-0.002193399,0.04314387,0.039955806,0.009008815,0.017638559,0.0035186557,0.11191121,-0.06960172,-0.0028908215,0.03260654,0.06774054,-0.04136892,0.020154987,0.03812949,-0.010094515,-0.030839154,0.012960432,0.025526058,-0.033082563,0.078281425,-0.062652536,0.05598551,-0.104805,-0.0068330443,-0.085783735,0.0057532457,-0.031874374,0.11106058,0.026266787,-0.06677288,-0.08188714,0.045677345,0.025308995,-0.13257465,-0.061631255,-0.009464301,0.025061224,0.017058445,-0.00785803,-0.06952403,-0.0092652915,-0.02518874,0.051459316,-0.07486257,0.05093189,0.02073462,0.003163028,-0.015625603,-0.014487158,-0.015981257,0.016828258,0.0520372,-0.06801167,-0.110186316,-0.047747258,-0.0030073703,-0.031345304,-0.014168744,-0.014168851,0.018347334,-0.034420572,0.04947041,-1.6076893e-08,0.0076606674,-0.026677584,-0.054052114,-0.03729276,0.035722718,-0.034688585,-0.035398327,0.027836932,0.010222882,0.05395076,-0.016520716,0.05487826,0.07891086,0.040838826,-0.015345503,0.02524066,0.12061522,0.038479023,-0.024413532,0.0025175344,0.10597497,-0.020842846,-0.0076242457,-0.030976338,-0.018277792,0.058330778,0.022833586,0.0872769,-0.060754746,-0.046468318,0.08801802,-0.017825667,0.006768178,-0.08053731,-0.043981113,0.074690074,0.044356532,0.01670604,0.019061642,0.024724836,0.05580271,-0.04127694,0.06913238,0.036590267,-0.11513044,-0.030174818,0.06974135,0.04057475,0.008877188,0.04123101,-0.022350432,0.02517535,0.032881252,0.08144867,-0.004278286,0.0070913597,0.055251863,0.029286442,-0.013930476,-0.031597935,-0.020906523,0.08326244,-0.009403552,-0.05870366} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.778789+00 2026-01-30 02:01:13.135366+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2359 google ChdDSUhNMG9nS0VJQ0FnSUNZMDVEVi13RRAB 1 t 2362 Go Karts Mar Menor unknown Cojonudo, lo hemos pasado bomba!!! cojonudo, lo hemos pasado bomba!!! 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Cojonudo, lo hemos pasado bomba!!!"} {-0.014220415,0.096274786,-0.07770699,-0.03217896,-0.004870386,-0.019411841,0.093540676,0.029732937,0.0064405105,0.08701931,0.06500752,-0.007812136,-0.018639926,0.0033279364,-0.010980964,0.015870621,-0.033415247,0.02125607,-0.02181082,-0.034716528,0.050425485,0.03113202,-0.078051284,0.120683394,-0.10413032,0.030358734,0.09829328,0.0392776,-0.12057764,-0.056942992,0.013167207,0.057380036,0.008208043,-0.03624684,0.008737863,-0.002986116,0.012734215,-0.11864627,0.020673089,0.043252993,-0.114620045,-0.027578471,-0.073020115,-0.016579304,-0.02557796,-0.04699056,-0.0042400127,0.048206974,0.05893693,-0.049446195,0.057638425,0.053008135,-0.020252954,0.0034192526,0.012067087,-0.032267887,-0.013159441,0.0150906695,0.046728108,0.036233205,-0.0833555,0.057638384,-0.06011964,0.038237426,-0.002963788,-0.031049296,0.08472252,0.049659703,-0.1005274,0.070022896,0.118171014,-0.0062324037,0.047740348,-0.010582546,-0.038508486,0.031445216,0.013489091,-0.002148238,-0.024816401,-0.05096028,-0.010070072,-0.04684956,-0.016092714,-0.05748452,-0.013245936,0.005401009,-0.07260821,0.02683666,0.019765608,0.010915866,0.04301182,0.08243232,-0.06277994,-0.0006441958,-0.020033864,-0.004165349,0.07102833,-0.08845347,-0.007965016,0.007834335,0.031864762,0.028656345,0.0015178501,-0.03291114,-0.0017379955,0.009901072,0.03349992,0.012693143,0.091479145,0.03391108,-0.056992784,-0.032118388,0.0011469108,-0.046641402,-0.08929722,-0.013379091,-0.018705754,-0.048850764,-0.05574488,-0.06532512,0.081781924,-0.017236091,-0.05594526,-0.0188444,0.05880101,-0.05105769,0.012620179,-1.8527624e-33,-0.012503164,0.019987457,-8.847346e-05,0.07011635,-0.028470583,0.027699083,-0.06189114,-0.04486706,-0.09380672,0.03937189,-0.07506016,-0.02611124,-0.006526108,-0.006389024,0.013472646,0.07709442,0.008689864,-0.031214956,0.030350354,0.100495555,-0.096924655,0.0272705,0.002682176,-0.00223267,-0.018316582,0.14004555,0.014316774,-0.097060084,-0.0705656,0.06323397,-0.039907392,0.03372074,-0.009821848,-0.01771136,-0.037618127,-0.07504258,-0.06320516,-0.0001780074,-0.048564397,-0.060726315,0.048972994,0.018603604,-0.06622582,0.021550264,-0.04574435,-0.018622637,-0.008037889,-0.017050857,0.08022073,-0.02079841,-0.051217716,-0.03598271,-0.019550538,-0.022412555,0.07354735,-0.04536364,-0.075618066,-0.0039541074,0.10042516,-0.020851254,0.12764353,0.025252622,-0.02595904,-0.023594193,0.036906935,-0.08242651,-0.023681497,0.09365409,0.09103646,0.029002354,-0.007767805,-0.013435199,-0.028094217,0.05286533,-0.020671126,0.019362133,0.06409408,0.027861666,0.038470645,0.05532396,0.03420628,-0.03200994,0.08166407,-0.027620094,0.07002018,0.1340572,0.015553925,-0.004631259,-0.10748362,0.075839706,-0.019076385,0.0018514812,0.10418384,-0.107468076,0.05421942,-1.2370999e-33,0.04456601,0.010109546,-0.03671054,-0.048439376,0.03327539,0.030858682,-0.0481266,-0.018764025,-0.07368327,0.0029635641,0.025249515,-0.08966422,0.030591749,-0.058287453,-0.0044695195,0.073865555,0.023461608,-0.014558565,-0.03039177,-0.012902688,-0.02956783,-0.06539386,0.008908412,-0.0010942402,-0.03573741,-0.0980685,0.0029385993,0.029366417,-0.019433415,0.024582397,0.009526079,-0.009340051,-0.040751204,0.07367095,-0.015153354,0.03231011,0.019983238,0.07523565,0.070724696,0.051306274,-0.046112645,0.04994803,0.010455176,0.042028915,-0.07748647,0.038305625,-0.025334036,-0.071583495,-0.085515015,-0.07034865,0.041045226,0.04111175,-0.07051216,-0.029824387,0.092495784,-0.058887143,-0.034501106,-0.035315223,-0.049867474,-0.019029815,0.00050957646,0.059469555,-0.04056842,0.04714754,0.080234505,0.0309816,-0.063072555,0.025667554,0.03746018,0.07272134,0.07838627,0.017046472,-0.08972382,0.027516803,-0.088792056,-0.018674681,-0.078635074,0.05816509,-0.023682477,0.076391354,-0.011923899,-0.032575615,-0.015451592,0.0012065526,-0.014017542,-0.007903236,0.015485005,-0.049698506,-0.06080914,0.0029423584,-0.0021128852,0.022696363,-0.013586991,0.036220662,-0.003435184,-2.0405347e-08,-0.049918305,-0.033692956,-0.0400006,-0.022003336,0.060541812,0.046450876,-0.014242809,-0.007154752,-0.037208777,0.05195222,0.024313584,-0.06888929,0.021104993,0.073465385,-0.03160963,0.07844651,0.057617795,0.12330051,0.041369755,-0.029816572,0.036224324,-0.002138938,-0.09178817,-0.050176725,-0.01127326,0.020105407,-0.007428754,-0.027442662,0.041989837,-0.04840273,-0.027443552,-0.011116755,-0.072700776,-0.08561128,-0.028265717,-0.003585598,-0.03555032,-0.01613631,-0.021306453,-0.06386681,0.018352726,0.061212048,-0.042047657,-0.022581093,0.02631308,-0.06711364,0.053613216,0.03851833,-0.05961089,0.022535278,0.008185057,0.009234376,0.06854398,0.014384068,0.100260414,0.027925193,0.12690358,-0.0302418,-0.03753755,0.027906317,0.10718711,0.055720985,0.02718123,-0.011210086} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.790432+00 2026-01-30 02:01:13.14602+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2360 google ChZDSUhNMG9nS0VJQ0FnSUNDam9DQ0xnEAE 1 t 2363 Go Karts Mar Menor unknown Para pasar un rato divertido para pasar un rato divertido 4 2021-01-31 01:52:39.833374+00 it v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Para pasar un rato divertido"} {-0.022508927,0.030631272,-0.0045760586,-0.04298177,-0.039741226,-0.010894449,0.07378649,0.04336485,0.058937225,0.02759442,0.06450151,-0.039663732,-0.10387437,0.032638416,-0.035849817,-0.08204069,-0.04994792,0.04950448,0.03913074,0.047437746,0.03003382,0.018702753,-0.089002796,0.06636575,-0.12012979,0.02457521,0.009590766,-0.053819552,-0.022000834,-0.04844503,0.04519114,0.09578425,-0.029736247,-0.04632191,-0.0128735,-0.03029671,-0.08079972,0.014826296,0.06889285,0.053286012,-0.0569332,-0.048765104,-0.025415344,-0.043984875,0.009133281,0.028307298,0.014640608,0.05701637,0.071452536,-0.0311556,-0.040904783,0.035060763,-0.01847668,0.020015763,-0.0493828,-0.02623461,-0.044323944,-0.033979453,0.053481277,0.0020248604,-0.03340022,0.007380793,-0.03338571,0.017975673,0.026345503,-0.008904851,0.022338467,0.009228903,-0.052342065,0.052245617,0.07585861,-0.043047253,-0.010670845,-0.07124076,0.01143197,-0.033858,-0.013930473,0.08449893,-0.06743393,-0.04490621,0.068018585,-0.03674172,-0.07370011,-0.043477383,0.05429561,0.036396787,-0.035157684,0.08391606,0.026451357,-0.036920674,-0.010786364,0.005514555,-0.07448496,-0.018192707,0.04233407,0.014697459,0.019796317,-0.1338069,-0.026713556,0.07087819,-0.0069492557,0.05924686,-0.03219744,-0.037224248,0.01016758,-0.021616748,0.040188015,0.0014720691,0.040928435,0.04261541,-0.05907488,-0.0028777092,-0.020439329,-0.06760818,-0.051154345,0.0068135685,0.051576857,-0.12613931,0.044800643,-0.020737557,0.008570658,0.032102063,-0.06743863,0.03616071,-0.0017640112,-0.049204893,0.074678436,6.48695e-35,-0.008586655,-0.06891331,-0.017026296,0.024267793,-0.0067618582,0.034954447,-0.01931697,-0.089252666,0.029181907,-0.01728164,-0.048226744,-0.054023653,-0.03221077,0.06740192,-0.04362874,0.017393306,0.04799712,0.043416537,0.100882284,-0.013186021,-0.051793657,0.025050802,-0.057295177,0.07678237,0.035032786,0.08665372,-0.10624403,-0.050356686,-0.050667744,0.063860476,0.014443882,0.02898831,-0.050628908,-0.029294241,0.008024976,-0.048741005,-0.040739827,0.018595336,0.047946285,0.018725477,0.08771027,-0.0040705996,-0.04777907,0.040590253,0.06446889,-0.08998053,-0.010463299,0.015684072,0.08407282,0.031371336,5.6990702e-05,-0.03345945,-0.039046902,-0.08204731,-0.009341777,-0.07210068,-0.03281332,0.09067641,-0.039582845,0.011596857,0.038221795,0.017685786,-0.12454737,-0.04534516,-0.033011787,-0.0044202493,-0.0034732285,0.03223507,0.059846006,-0.0102836555,-0.18466789,-0.05260337,-0.023438295,0.034064963,-0.0254167,0.014876952,-0.031098442,0.086371765,-0.0074190935,0.003444619,-0.046449326,0.06731021,0.078678615,0.08225372,0.086874284,0.09111955,0.04209247,0.062347636,-0.012362244,0.02454817,0.019785978,0.0763818,-0.0050749574,-0.060716458,0.09627569,-2.5520754e-33,0.003993118,0.0012573351,-0.008892493,0.0452256,-0.040661145,-0.0008355371,-0.045346554,0.013266398,0.002042415,-0.045876905,-0.073637426,-0.04471628,0.12420352,-0.05856091,-0.028899064,0.08797902,0.065782905,0.019548142,-0.058855955,-0.03595481,-0.06570067,-0.023738392,0.10631438,-0.07840201,-0.019192828,-0.027070254,0.06429356,0.020771794,-0.030330935,-0.00869054,0.01484358,-0.0020797541,-0.014473557,0.0692538,0.0336592,0.04184287,-0.08388255,0.049124427,-0.043775626,0.07271563,-0.05173036,0.004900355,0.022079589,0.021676034,-0.02209877,0.0027694742,0.047363885,-0.050124656,-0.05647544,0.014423434,0.02956697,-0.0061601005,0.030376267,-0.052669525,0.05004378,-0.089470044,-0.027528929,-0.070314616,-0.0634804,-0.021278692,0.09791242,0.06973695,-0.07163817,-0.060826972,0.07398831,-0.01981134,-0.09320034,-0.0120231155,-0.017731879,0.08134912,0.17108038,0.027046375,-0.015859725,0.008294627,-0.030126616,0.055587236,-0.022980263,0.054061785,-0.0053270324,0.010693647,-0.10844801,0.03503865,-0.0108709065,-0.016544623,-0.032196596,0.00045688305,-0.05294332,-0.025972594,-0.0327504,-0.05226374,0.04094949,-0.026994048,0.0065256925,-0.0047349622,0.04645764,-1.697306e-08,-0.017150823,-0.034993805,-0.086729884,0.009459656,0.043509055,-0.00061986153,0.012307116,-0.02026408,-0.025418064,0.040192537,0.027160086,-0.014861382,0.11424308,0.063696906,0.0056000976,0.040324196,0.06642767,0.10020244,0.009166691,0.03545614,0.07917104,-0.070108764,0.0153013645,-0.0725653,0.033867314,-0.009200795,-0.0091658905,0.037382193,-0.051530696,-0.08687803,0.07398184,-0.06150485,-0.0050773285,-0.035241634,-0.028393995,0.046242386,0.017582215,0.036295917,-0.017185992,-0.016743058,0.055853523,0.029908117,0.024562778,-0.016702183,-0.016937058,-0.02567762,0.03187515,0.06703715,-0.027383113,-0.018017078,-0.028888159,0.049928114,0.06518448,0.024161147,0.0105339475,-0.011527242,-0.004001176,0.0046806126,-0.025749939,-0.060728908,0.037365753,0.16312012,-0.08091589,0.023937685} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.804024+00 2026-01-30 02:01:13.151955+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2362 google ChZDSUhNMG9nS0VJQ0FnSUMwMXY3dGRREAE 1 t 2365 Go Karts Mar Menor unknown Para pasar un rato divertido!!!! para pasar un rato divertido!!!! 5 2020-02-01 01:52:39.833374+00 it v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Para pasar un rato divertido!!!!"} {-0.028478827,0.031041097,0.0018027417,-0.04648074,-0.02835207,-0.0038167492,0.06674788,0.035472974,0.07506499,0.03574696,0.03842866,-0.049965885,-0.07984661,0.020254098,-0.052028313,-0.08890275,-0.08779626,0.039479613,0.048951726,0.07467382,0.038491167,0.0028075858,-0.087919265,0.08159043,-0.13390979,0.032815173,0.0047037965,-0.035617724,-0.024134403,-0.047202084,0.07194405,0.110170454,-0.053231705,-0.07716765,-0.0033114036,-0.043470874,-0.054196145,-0.013986761,0.055466916,0.058069408,-0.0573876,-0.028881503,-0.02709533,-0.053100698,0.027912144,0.025763776,0.005358518,0.058214985,0.07703671,-0.023125008,-0.02144202,0.042537823,0.0047502303,-0.009029646,-0.0467755,-0.034616634,-0.022017706,-0.05754599,0.041152056,0.0334104,-0.04015806,0.022237143,-0.039593745,0.024178563,-0.031594153,-0.008856517,0.022147717,0.0073440843,-0.042053644,0.0775191,0.09499166,-0.038648643,0.011824427,-0.03689929,0.019739442,-0.006369154,-0.017506381,0.051183622,-0.073010065,-0.02619871,0.07352882,-0.042952247,-0.082255855,-0.043446843,0.0807608,0.01666095,-0.03496045,0.05902874,0.02614622,-0.06088231,-0.014157958,-0.01136067,-0.06879071,0.003908057,0.011074311,-0.006013424,0.012556299,-0.12176666,-0.062455975,0.029620506,-0.030061588,0.04745894,-0.013763796,-0.06033155,-0.011026439,-0.005036522,0.057296097,0.031654224,0.055154473,0.025642594,-0.056242753,-0.009429719,-0.009857227,-0.06286443,-0.06355936,0.04499103,0.046217017,-0.12077643,0.024222847,-0.015020579,0.014023915,0.0059787747,-0.086495094,0.02358398,0.036138482,-0.07201062,0.06358932,-3.122738e-33,-0.0356422,-0.03977831,-0.01572641,0.042854268,-0.0029016677,0.031393677,-0.01824701,-0.08175593,0.0052724904,-0.0033402431,-0.048027698,-0.07236757,-0.02666625,0.08481741,-0.044784542,0.053433027,0.04317937,0.002624911,0.094288275,0.0067802565,-0.052638106,0.022047034,-0.041115783,0.08696123,0.0052910307,0.09540474,-0.080051996,-0.05114738,-0.051014397,0.060039036,0.0002677676,0.009733815,-0.048540324,-0.032503884,0.010467357,-0.05072623,-0.04184786,0.025940588,0.035603113,0.017990144,0.10489255,0.014372697,-0.06306061,0.008953099,0.023996782,-0.058346875,-0.0007261059,0.004315729,0.11402144,-0.004375547,-0.0183873,-0.025307048,-0.02420618,-0.041309044,0.020953413,-0.048803806,-0.02433253,0.08388455,-0.019954188,-0.015655171,0.03902308,0.00097240106,-0.101616256,-0.05325425,-0.027452864,-0.013626917,0.0063352096,0.053473763,0.06010298,0.008361044,-0.143278,-0.018717688,-0.038117815,0.035917133,-0.029243127,0.018587252,-0.025293628,0.09049493,0.01791069,0.001226736,-0.029693775,0.05429091,0.05736992,0.046582036,0.10515427,0.11047782,0.044761475,0.059313465,-0.0294888,0.0363083,0.004963099,0.059031323,0.049834978,-0.046697997,0.09388011,-6.322298e-34,0.021788236,-0.0173778,-0.021372756,0.032937016,-0.03347382,0.0041859476,-0.06628944,0.01415121,0.009911308,-0.055079516,-0.071610235,-0.042530254,0.11458563,-0.06768269,-0.06444842,0.07397917,0.07075258,0.02338557,-0.04653765,-0.017067043,-0.067345314,-0.053173218,0.099529415,-0.024786994,-0.04046121,-0.021405587,0.09793011,0.013546421,-0.02319824,-0.008354506,-0.018564513,0.017453155,-0.02133128,0.05328052,0.031504977,0.036384977,-0.06920917,0.032839842,-0.041633315,0.08910093,-0.045855615,0.05223518,0.014064892,0.014549921,-0.035976294,-0.011390205,0.03869098,-0.07657914,-0.09922564,0.010211158,0.03214959,-0.02614956,0.022773493,-0.044025984,0.043204594,-0.10519782,0.0004407639,-0.06783658,-0.048868567,-0.011944621,0.06901397,0.09073249,-0.058943313,-0.043036133,0.100177236,-0.01718895,-0.105367124,-0.004080933,0.012895022,0.09084395,0.17536992,0.051776256,-0.04927532,0.06436293,-0.05501085,0.047173828,-0.011166779,0.041411944,0.009875839,0.024733216,-0.12964937,0.01192479,-0.0056088087,-0.0013476808,-0.033548016,0.0267588,-0.03647557,-0.04250903,-0.029340597,-0.022888836,0.016559077,-0.017858641,-0.002231927,0.009495491,0.044816416,-1.739038e-08,-0.012194969,-0.022930536,-0.06364372,0.033381227,0.04927781,-0.050506067,-0.048622757,-0.03644253,-0.05139469,0.019848693,0.0063893017,-0.021445317,0.07105201,0.08190498,-0.01608133,0.06470833,0.05869938,0.11013903,0.0016047427,0.011317512,0.03906616,-0.0657339,-0.003597018,-0.091206305,0.037825093,-0.009639678,-0.016446464,0.023550922,-0.032341953,-0.112117484,0.0519955,-0.06504954,-0.030686771,-0.043634318,-0.056505255,0.03934615,0.015879868,0.047626514,-0.014667985,-0.034155853,0.051002458,0.02901559,0.02461722,-0.024822272,-0.009859156,-0.04567903,0.017698735,0.07172945,-0.008000253,0.0009878378,-0.029481873,0.047419276,0.07360487,0.025251536,0.042521376,0.021392165,0.019429026,-0.010702981,-0.025437606,-0.04460676,0.04190788,0.13406344,-0.08061239,0.02346199} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.828648+00 2026-01-30 02:01:13.170522+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2363 google ChZDSUhNMG9nS0VJQ0FnSUNLem9hcEdREAE 1 t 2366 Go Karts Mar Menor unknown Excelente experiencia excelente experiencia 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Excelente experiencia"} {0.0051977015,0.05454128,0.0026259765,-0.020432528,-0.067531765,0.03516035,0.09970583,0.043790504,-0.034410376,0.039508354,0.13037343,-0.060409818,-0.021576915,-0.006201651,-0.0048069833,0.0225405,0.053848382,0.012900233,-0.085678786,0.0024893119,0.009856015,-0.06646421,-0.024600003,0.008552544,-0.0038149904,0.022281379,0.013926557,-0.0066510267,0.03019868,-0.0780078,0.0017521909,0.021332068,0.088848725,-0.035292,-0.006142826,0.02857201,0.043566816,0.004183139,0.016633896,0.039966486,-0.097580954,-0.025892498,0.046044484,-0.05341184,-0.013177397,-0.09207331,0.058508758,0.07495873,0.011099315,0.011877439,-0.044872638,0.032237384,-0.024634277,0.004879387,0.08322471,0.041704085,0.010901549,-0.022285664,-0.01596237,0.013017579,0.0045484197,0.00521961,-0.06142472,0.020501455,0.046759434,-0.0039148126,-0.050147638,0.0064939545,-0.14346619,0.022334162,0.050146654,-0.05310071,0.0011190313,0.01749962,0.014653562,0.029347155,-0.0042552017,-0.059275802,-0.0049369214,-0.013512676,0.036490522,-0.04306847,-0.055009194,0.019494057,-0.01653291,0.006458276,0.052809615,-0.05406209,-0.009898933,0.048935294,-0.053433824,0.08837956,-0.1500549,-0.019790074,-0.06870559,-0.009064765,-0.041245367,-0.034808736,-0.027108215,0.1375763,0.043047063,0.0711394,0.079727024,0.054417424,-0.065544575,-0.036727544,0.022070905,-0.009791237,0.047218427,0.021322632,-0.033705696,-0.11613976,-0.10449138,-0.030241342,-0.04261657,-0.037191186,-0.025183987,-0.03180907,-0.022148004,-0.08768562,0.02416134,0.03740817,-0.009543811,0.009751015,0.043547068,-0.123470314,0.0597436,8.492924e-34,-0.021791302,-0.07677802,0.04426406,0.094039485,0.009291124,0.064934604,-0.022983955,-0.023219362,-0.028709605,-0.05769027,-0.012240628,0.17214769,0.07986346,-0.0069040367,0.09664373,0.098062344,-0.04084736,0.04212583,-0.037147332,0.034178454,0.0493397,-0.070167474,0.007282929,0.022336729,-0.033089165,-9.212867e-05,0.019027738,-0.016791463,-0.0044677956,0.039227962,0.021900078,0.050512776,-0.05503759,-0.07865576,0.039467644,0.07632793,0.004754074,-0.014036786,0.092720136,-0.039241817,-0.025459222,-0.006479995,0.0016341386,0.0071451804,0.00827605,0.046623178,0.12488971,-5.5187775e-05,0.026272556,-0.021911249,0.013185001,-0.069439374,0.05385197,0.012135475,-0.04680224,0.061265923,-0.09321495,0.14527158,0.002638964,-0.10435499,0.05590176,0.031190483,0.038148027,-0.069220975,-0.048770893,-0.009576395,0.027145531,-0.014688364,0.13438569,-0.009289655,-0.072386704,0.012421512,-0.013723354,0.0048209564,-0.0047216206,0.010445929,-0.025911115,-0.034228314,0.0693627,-0.029831694,-0.10504965,-0.05335265,-0.0028732666,0.0044823755,0.040106658,0.112478144,0.021023814,-0.0044577946,-0.004782259,0.15491633,-0.024450032,0.0031699853,-0.020499254,0.011968978,0.008794235,-2.1550152e-33,-0.0065036546,-0.006212202,0.015205324,0.026276834,0.07192461,-0.01184984,-0.07436788,0.020276064,-0.06854418,-0.0051006745,0.024463119,-0.07379524,0.1571704,0.051113803,-0.026712406,0.07251017,0.04462357,-0.056067158,-0.05164225,-0.06192474,0.0030418125,0.0442441,0.04191769,-0.020983452,-0.041089777,-0.0024961468,-0.041197415,-0.05887688,-0.07338503,-0.091124296,0.050729968,0.05028945,-0.07956558,0.050161205,-0.04040272,0.12570608,0.040774155,-0.041328117,-0.004763064,0.08875464,-0.021221984,0.071134254,-0.030054966,0.012978039,0.029257573,0.022298466,0.057394292,-0.13548987,-0.034633435,-0.020402947,0.026455011,0.0627342,-0.064048156,-0.038456477,-0.0036251529,-0.04417179,-0.01917748,-0.040314823,-0.088636786,0.025012637,0.030781422,0.0038348895,-0.06296276,0.05180625,0.05802863,-0.033291996,-0.007064991,0.03221638,-0.034340817,0.06560088,0.041066278,-0.003908325,-0.073393606,-0.0049726623,-0.031586505,0.024736414,-0.023644634,-0.08587961,-0.009751867,-0.02292676,-0.014000248,-0.05222367,0.0313902,-0.05845627,-0.060762994,-0.013556822,-0.030436058,-0.05262452,-0.012645959,0.043415755,-0.04678347,0.019290792,-0.06571758,-0.100359626,-0.04294889,-1.748527e-08,0.020569675,-0.0016326883,0.042727787,-0.009120608,-0.009539024,-0.03390942,-0.052226257,0.039975747,0.02520397,0.032159902,-0.01951063,-0.037102062,-0.006780056,0.022685228,0.030560786,0.032033954,0.13399094,0.03791467,-0.046421207,-0.0034952923,0.032883905,0.0022569983,-0.087355815,-0.031090656,-0.01646367,-0.02720709,-0.049915884,-0.028944569,-0.019365845,0.020247828,-0.019926712,0.058724884,0.047083475,-0.11697105,-0.009003701,-0.044697348,-0.02383917,0.0019721084,0.023768578,0.035356466,0.0406792,0.017520953,-0.0094084,0.035265476,-0.052483723,0.007334527,0.039407104,-0.018553238,-0.025551362,0.019603837,0.006657429,0.0020394444,0.03188978,0.01871495,0.0002921606,-0.011326089,0.008009058,0.08707431,0.0051369155,0.0036361988,-0.003833046,0.079884,-0.016168747,-0.059201095} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.840338+00 2026-01-30 02:01:13.176928+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2364 google ChdDSUhNMG9nS0VJQ0FnSUQwOWNmcXJnRRAB 1 t 2367 Go Karts Mar Menor unknown Muy divertido y completo muy divertido y completo 4 2020-02-01 01:52:39.833374+00 es v5.1 O1.05 {O3.02} V+ I2 CR-N {} {"O1.05": "Muy divertido y completo"} {0.042705644,0.013047524,0.040905926,-0.034965817,-0.0052783634,-0.04051629,0.1180998,0.035150334,0.012983095,-0.033100627,0.074764915,-0.017005032,-0.048614804,0.013618005,0.010863337,0.001687525,0.009708928,0.047855083,0.013045883,0.015933413,0.07386613,0.053683527,-0.04113087,0.11199125,-0.0751982,-5.2041774e-05,-0.006064022,-0.019085398,-0.01778081,-0.05997275,0.0038956236,0.113899365,0.04944435,0.02435517,-0.040133826,-0.03983946,0.0076740286,0.0006942242,0.031261012,0.03820832,-0.08038461,-0.0060984646,0.022879241,-0.06457964,-0.023581082,0.022172587,-0.0028604842,0.04186517,0.08492115,-0.030893303,-0.08146574,-0.07539404,-0.0029829994,0.03244879,0.017634707,0.00975999,-0.07494519,-0.010513678,0.038622886,0.045124676,-0.087697186,0.003695676,-0.037144158,0.016453471,0.05749895,-0.033774547,0.024035063,0.016059462,-0.07278948,0.06945145,0.110306464,-0.037671506,-0.026061825,-0.076407395,-0.030167622,0.045848824,0.03820895,0.021386404,-0.05272948,0.041993104,0.00509738,0.00060084433,-0.02793111,-0.036467917,0.026820252,0.015231532,-0.109497994,0.050448332,-0.028783064,-0.06377201,0.017547611,-0.07771562,-0.059793405,0.03315626,0.0071507944,0.06493822,0.007039383,-0.19945338,-0.02437747,0.068325765,0.00920598,0.02031858,0.10044472,-0.028056374,-0.014041159,0.0058827326,0.08128486,-0.03751923,-0.021194814,0.0041466444,-0.020913552,-0.02418711,-0.018014843,0.018199908,-0.10542034,-0.0043411767,0.015589016,-0.03038433,-0.011143566,-0.09194106,0.052292597,0.06778009,-0.07604644,0.012793994,-0.046754073,-0.054394428,0.07455591,1.3111667e-33,0.007454616,-0.07600453,-0.062033333,0.06345847,0.008602094,0.006852403,0.0034944122,-0.03076403,-0.030524781,-0.060362123,-0.037213095,-0.032193128,0.009825498,0.0833317,-0.10542809,-0.04329288,0.06125871,0.044957098,0.045317873,0.093802705,0.011946351,0.009213674,-0.046224788,0.047456138,-0.03659742,0.04845821,-0.09884197,-0.04336675,-0.014563391,0.06524861,-0.035382193,0.037863694,-0.057520024,-0.0068628746,-0.044438574,0.0067998124,-0.046739623,0.01691214,0.023562882,0.01518105,0.014659441,0.020871595,-0.08738267,0.03552885,0.025907312,0.012053898,0.046135936,0.061776217,0.06291097,0.07199938,0.00018451012,-0.07134077,-0.05030173,-0.03891487,-0.0033691043,0.0075261104,-0.0053940094,0.06391376,0.0064789937,0.016536579,-0.015775017,0.027139504,-0.043016747,-0.049771644,-0.027281815,0.049970973,-0.0068592117,0.008623462,0.09467483,0.04452211,-0.15866023,-0.048990242,-0.057501398,0.109185226,-0.008914732,-0.056820504,0.03037025,0.0022120494,0.049144097,0.0032330991,-0.05784753,0.008454051,0.036253326,0.052962888,0.10787905,0.109139845,0.022235626,0.049296126,-0.014805789,0.038711254,-0.064715795,0.051908616,0.052420616,-0.08303094,0.018431561,-1.946947e-33,-0.014087567,-0.0559201,-0.0013801218,0.071009725,-0.04387683,-0.041785702,-0.014821563,0.009159488,-0.053060137,-0.06915058,-0.08956899,-0.0589066,0.1054583,-0.034987256,-0.041838627,0.07830585,0.05169578,0.021839948,-0.06558523,-0.0044683293,-0.045331914,0.032656565,0.07635402,-0.08707799,-0.0710045,0.038857557,-0.013019419,-0.037554435,-0.0054485216,0.02360963,-0.040418502,-0.01872306,-0.110176355,-0.02212251,0.012455953,0.047963526,-0.107904635,0.0725369,-0.02438873,0.04011993,-0.031078666,0.033617515,0.0037939854,0.08132497,-0.021727065,0.049836233,-0.010491092,-0.039793532,0.020634491,0.03472914,-0.053781874,0.020720573,0.032542385,-0.013486414,0.032905962,-0.08848813,0.012812471,-0.0939959,-0.10037601,-0.008862557,0.028366407,0.022992456,-0.07156921,-0.06297976,0.13129194,0.026139725,-0.053105008,-0.003050327,0.048895087,0.06454196,0.114941835,0.005349459,-0.0017727542,-0.04109401,0.0015336052,0.02812861,-0.12550205,0.046633326,-0.017344236,0.099745505,-0.005385766,0.08151251,-0.0019747838,-0.03567337,0.0020499986,-0.021649491,-0.051035613,-0.0021781817,-0.0026962778,0.0015084636,0.001871621,0.021183744,-0.062900946,0.03642395,0.06145787,-1.6614472e-08,0.008316397,-0.05038085,-0.03154633,-0.023508567,0.03902012,-0.038521513,-0.069512695,0.047549974,0.021706648,0.026382346,-0.021684662,0.018522248,0.051042553,0.05318347,-0.014078312,0.040207826,0.07647022,0.05312324,-0.028126996,-0.025184127,0.09884939,-0.06143347,-0.001852522,0.028924309,0.037140276,0.03819208,-0.036092617,0.068085484,-0.05040444,-0.038083855,0.07258891,-0.042322654,0.022509761,-0.06457367,-0.0049755736,-0.008653566,0.031848993,-0.004505833,-0.0006720835,-0.046997726,0.0044664815,-0.039526224,0.039930124,0.013975259,-0.02315072,-0.04514613,0.038405467,0.07628495,0.0072819227,-0.0016968024,-0.058065914,0.015893564,0.0580348,0.106259815,-0.01508335,-0.02489762,0.0224762,0.013313605,-0.02967316,-0.059369083,-0.008470647,0.14731982,-0.008397047,-0.04253776} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.853661+00 2026-01-30 02:01:13.180194+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2365 google ChZDSUhNMG9nS0VJQ0FnSUR1c0xmNFJ3EAE 1 t 2368 Go Karts Mar Menor unknown Gross und schnelle Organisiert gross und schnelle organisiert 3 2023-01-31 01:52:39.833374+00 de v5.1 E1.03 {J1.01} V+ I2 CR-N {} {"E1.03": "Gross und schnelle Organisiert"} {0.029815603,5.19276e-07,0.0019027011,0.040524513,-0.0042679543,0.04936399,0.056297444,0.026675323,0.04401004,0.011800375,0.052958716,-0.11107185,-0.077456094,0.018554382,-0.05256209,-0.088245854,-0.02463111,0.051217247,-0.057411555,0.07795181,-0.002669742,0.053238552,0.04258506,0.0047309864,0.014102431,-0.04373924,-0.036610987,-0.06555901,0.022097412,-0.0768987,-0.0241657,0.037116967,0.03405249,-0.027427025,0.05062562,-0.0489248,0.010543945,-0.054425247,0.06544848,-0.043392263,-0.04210513,0.0021585433,-0.0571717,-0.029987175,-0.102142096,0.020248385,-0.04262717,0.058223084,-0.048365884,-0.008604631,-0.017018083,-0.11524641,-0.03925694,0.04541644,0.0049387515,0.031945806,-0.048028044,-0.05305491,-0.04777226,-0.026259342,-0.002451614,-0.058832638,-0.013846073,-0.09227747,0.03911854,-0.039351344,0.026734255,-0.05723886,-0.014089293,0.05055072,0.08679712,-0.04033682,0.0013175289,0.062450655,0.004588249,9.2656206e-05,-0.003044637,-0.06794481,0.038670458,-0.044300586,-0.010789208,0.026401658,0.009699709,0.026910454,0.040101398,0.05074468,-0.06282058,0.036180396,-0.07738942,0.011179815,0.01772634,-0.035228487,-0.09293348,-0.06386166,0.016188031,0.04295048,0.017677432,-0.012070799,0.058210645,0.015645647,-0.0051691695,0.0074479035,-0.0094160605,-0.042167787,0.003807965,-0.030420814,-2.8669949e-05,0.009277922,-0.020637317,-0.0031004825,0.008624741,-0.066569485,0.031649824,-0.05093006,-0.023888504,0.0024821614,0.09413717,-0.07577609,0.0106534185,-0.022125866,0.00523064,-0.014087781,-0.01742187,0.06631447,-0.014716568,-0.048468083,0.037247565,-1.6459344e-33,-0.018858774,-0.029996216,-0.03518277,0.08356131,-0.016699826,0.01038028,-0.011226014,0.011149384,0.01798683,-0.010205955,-0.09492272,-0.0014571623,-0.06061744,-0.045572624,0.0190091,-0.032368373,-0.011473189,-0.01100482,0.082901806,-0.027421247,-0.07764907,0.0506827,0.011651199,-0.014579814,0.08982611,-0.074178346,-0.09843122,-0.028067846,-0.00644197,0.009614229,0.09526059,-0.03221797,-0.044152733,0.0409173,-0.048506644,0.03019106,-0.093773425,0.04692445,-0.05601713,0.032014407,0.022349674,-0.0395381,0.00450464,-0.098541394,-0.008358846,0.0900841,-0.029151125,0.020636696,0.03601122,-0.03168896,0.057244375,0.04863589,0.031750653,0.013406406,-0.035548337,0.033492785,0.03287738,0.02490026,-0.04147801,0.049734466,0.023364639,0.11320391,-0.02829743,0.033240046,0.021803021,-0.025301034,-0.07223443,-0.015617601,-0.0055695768,-0.0328184,-0.086837806,0.023918673,0.08926853,-0.039204165,-0.02883273,0.06276124,0.019447435,-0.051650353,-0.039966136,0.0049742167,-0.0059541743,0.02238729,0.032971583,-0.023874005,-0.0040683914,-0.0130703105,0.00077636325,0.06182755,0.03757423,0.012954254,0.005602562,0.001214752,-0.0662203,-0.06904652,-0.04426062,-2.2244528e-33,-0.002263966,-0.033360727,-0.00882664,-0.015562971,-0.064207435,0.12735884,-0.095912784,0.019680489,-0.019479122,0.024762932,0.0669341,-0.024596035,0.09790829,-0.035013605,0.07271657,0.046942107,-0.038578287,-0.03985151,0.012589489,-0.04760491,-0.12781222,0.07419239,0.013575012,0.018272763,-0.030756176,0.008962389,0.03707293,0.06201117,-0.0068212887,-0.008381814,0.13372788,-0.045538824,-0.03287422,0.018979076,0.06002944,-0.06761609,0.073543474,0.036817342,0.039301917,-0.023921153,0.019511612,0.026315562,0.019556472,0.13164584,0.08248704,-0.07459485,-0.1148176,-0.07055483,-0.08664549,0.0055689467,0.01885166,-0.01103614,-0.022559684,-0.08274301,-0.012017972,0.053817894,0.035048332,-0.074861,0.08009234,-0.015995193,0.009181153,0.031983912,-0.05828225,0.06873672,0.030758016,-0.024989432,-0.08638765,-0.0009450399,0.028687695,0.059094027,0.048096355,0.040389594,-0.083526716,-0.007956293,-0.039652623,0.017095225,0.064700164,0.04073216,-0.0038817073,0.053266335,-0.031946603,-0.021765115,0.00661572,-0.018730845,0.06847797,-0.06815825,-0.025935031,0.053311285,-0.030330148,-0.010768233,-0.036836565,-0.049680766,-0.005220919,0.001013224,0.048219353,-1.8911479e-08,0.021453775,-0.02580265,-0.055425283,-0.01668691,0.017821644,-0.16261068,0.0025394165,0.03826557,0.036105663,0.103519335,-0.10682827,0.00090585335,-0.029875688,0.024934689,0.056978397,0.054995097,-0.09105669,0.023185015,-0.004807758,-0.060973413,0.034814484,-0.012805384,-0.06212835,-0.019954497,-0.00723185,-0.057848457,0.019084059,-0.0137037225,-0.0523145,-0.010786444,0.0717044,0.14327328,-0.004304427,0.07027042,-0.06077289,-0.028682912,0.095856026,-0.05639027,-0.06469223,0.120062076,0.084528424,-0.008706676,-0.03922191,-0.05536491,0.048594985,-0.07266855,0.09760868,0.06484133,0.089496985,0.07560324,-0.06251252,0.07752964,-0.022130977,0.08188538,0.007539993,0.007718119,0.034820538,0.028103864,-0.0016818147,0.020208519,0.0404771,0.10988139,0.1093087,-0.09651219} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.863765+00 2026-01-30 02:01:13.185497+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2366 google ChdDSUhNMG9nS0VJQ0FnSURLN0tQcnJRRRAB 1 t 2369 Go Karts Mar Menor unknown Muy agradable muy agradable 4 2022-01-31 01:52:39.833374+00 so v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy agradable"} {-0.07433503,-0.0059848074,0.04905246,-0.0370098,-0.028187608,-0.034491587,0.17144936,0.035922695,-0.008530243,0.019479675,0.025898857,-0.0068826927,0.06865139,0.057900243,-0.053563114,0.07532881,0.06073044,0.020243565,-0.057002734,0.012709922,0.04610385,0.05319934,-0.023213241,0.023396512,-0.035971615,0.040306874,-0.017639367,0.01873664,0.044537447,-0.003473437,-0.007347091,0.11650713,0.056997716,-0.047524113,-0.03239514,-0.007939441,-0.00403108,-0.045298167,0.05310617,-0.0019134646,0.00667778,-0.005450761,-0.0071534836,-0.06963035,-0.043310594,-0.045823388,0.10796114,-0.05933107,0.04219972,-0.009621143,-0.0014648892,-0.03413638,-0.022637527,-0.090527214,0.081889175,-0.033978514,-0.06773768,0.017009566,-0.010184321,-0.03251384,-0.028713746,0.013165953,-0.0060120015,0.013367207,0.02658503,-0.04564934,0.022949118,-0.015419921,-0.010805512,-0.003980204,0.08603585,-0.0421426,-0.010574563,-0.03131326,-0.056215845,0.01497377,0.12109905,-0.012907143,0.016655738,-0.026613057,-0.09941111,-0.016873935,0.029103367,-0.0070117423,0.02153732,-0.01925787,-0.004294791,-0.0074531105,-0.046004478,-0.035108067,0.00812245,0.043939043,-0.021494653,-0.009287515,-0.0064718802,-0.0030613902,0.0030485142,-0.020731619,-0.09479307,0.20059517,0.0065164124,0.09252919,0.033199903,0.008906478,-0.024965983,-0.04653434,-0.0035384328,-0.0865796,-0.0514334,0.021167446,-0.05280023,-0.02478913,0.016306905,0.024798278,0.0039998326,0.08319827,-0.038725328,0.057812344,-0.031231442,-0.077467695,0.035168663,0.042835534,-0.026181692,0.031016866,-0.06758716,-0.08017812,0.06764837,-9.194438e-34,-0.041698836,-0.039859276,-0.0027661084,0.0037693484,0.03543144,-0.049788367,-0.026113858,-0.048100032,-0.06599921,-0.10159922,0.03719,0.03109364,0.013544632,0.06642583,0.040403202,-0.008342562,0.02325418,-0.029922064,0.03842984,-0.018728143,-0.021906674,0.0120863225,-0.016632807,0.036188986,-0.064982876,-0.052905444,0.019188287,-0.046554152,0.040421467,0.07853363,0.010977643,0.0034042185,0.008204296,-0.07269187,-0.117043264,-0.076058045,-0.027794983,-0.016630625,0.0031133709,-0.022578778,0.030351335,0.016396904,-0.031445667,-0.0017215346,0.059889387,0.116122544,0.0811174,0.03634878,-0.00432792,0.06594712,-0.03083631,-0.034413204,-0.08355432,0.032165866,-0.041208945,-0.0028797886,0.02874243,0.01614483,0.0037374194,-0.010251731,0.030173752,0.021304412,0.0040739183,-0.08652568,-0.0022598135,-0.02029376,-0.049614504,0.03631479,0.036318604,0.032309566,-0.06910645,-0.02522231,-0.06019925,0.08649392,-0.04895024,-0.062106956,0.0627243,-0.010669723,0.079927035,0.0282537,-0.065215126,0.06321893,0.0057312506,-0.01640904,-0.0025155963,0.010666429,0.022620983,-0.061948054,0.023600277,0.04639465,-0.08000546,0.046274275,0.024391096,-0.028991302,-0.09630537,1.4646159e-33,-0.014583972,-0.024477664,-0.033320617,0.118996635,-0.03850553,-0.008391034,0.029825997,0.08245415,-0.015913732,0.01932007,-0.057875205,-0.025199717,0.074397705,-0.013340089,0.037741974,0.06329132,0.07526547,0.073903255,-0.07185882,-0.03666387,0.08897567,0.108577065,-0.007969897,-0.109837875,-0.07220425,0.038736627,-0.10248922,-0.059731863,-0.002364406,0.0072371056,-0.010314759,-0.013021707,-0.15622881,0.015687067,0.019300126,0.011075585,0.103580676,0.044041406,-0.06972232,0.028911717,-0.038757496,0.09926954,-0.006897285,0.13848373,0.048698135,0.014320667,-0.08058007,-0.032530576,0.08978719,-0.019400997,-0.042367164,0.03877753,0.059933215,-0.033935044,0.018663168,-0.07998043,0.04934593,-0.06833824,-0.038161367,-0.033457924,0.009941393,-0.01899997,-0.11181155,0.009128936,0.017802356,0.038444735,-0.035559356,-0.029576322,-0.03384927,-0.053196214,0.079255916,-0.0346119,-0.02759047,-0.08851327,0.0126562435,0.00714986,0.030748094,0.108384214,0.00938999,-0.012565618,0.05780516,-0.0031680844,-0.01758335,-0.008886596,0.026095377,-0.040012993,0.014811306,-0.013898005,0.070777394,-0.0026133037,-0.036818266,0.046048693,0.010410137,0.031511094,0.056698482,-1.4874891e-08,-0.02468823,-0.06888418,0.0013748602,0.022173308,-0.06332519,0.007227895,-0.112285264,0.038837958,-0.00037204227,0.019767022,0.012785519,-0.030590879,-0.09324933,0.120781645,-0.0075208517,0.10236048,-0.0005434734,-0.021769173,-0.027364772,-0.050609335,0.045411438,0.022163829,0.009261375,0.12294916,-0.05346414,0.031705864,-0.03912433,0.001378572,-0.06794817,0.061292738,0.010981422,0.080613926,0.00650229,-0.010745966,-0.0128418105,-0.0019685484,-0.011110629,0.013179577,-0.03454167,0.08225988,0.021190468,-0.07477447,0.041102413,0.0048574912,0.10541571,-0.06291517,0.0259156,-0.022243477,-0.02894718,-0.037926182,0.0367194,0.022967512,0.021978717,0.082330875,-0.004414801,-0.026365796,0.023698198,-0.0020789395,-0.016198883,0.0029508397,0.10716859,0.0670321,0.032288123,-0.062385544} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.873474+00 2026-01-30 02:01:13.189468+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2367 google ChZDSUhNMG9nS0VJQ0FnSURPN01HZ0x3EAE 1 t 2370 Go Karts Mar Menor unknown Buena pista buena pista 5 2023-01-31 01:52:39.833374+00 fi v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Buena pista"} {-0.03890221,0.011626979,0.007110706,-0.05017553,-0.10150701,0.01755973,0.05519266,0.027514137,0.040215082,0.0052540936,0.10485573,-0.011244309,-0.006653868,-0.024535498,-0.0013320247,-0.02013445,-0.033766016,-0.042577576,0.05886995,0.0042359657,-0.008636081,-0.037450705,-0.08916248,0.069731064,-0.044151247,0.039307337,0.03821646,-0.013299695,-0.027668007,-0.10137,-0.047668055,0.03596013,0.1004314,0.031004276,-0.056542307,0.0040026773,0.04024564,-0.037598155,-0.0237468,0.04409069,-0.06103714,-0.011473261,0.015141769,-0.04090443,0.07677617,-0.053451825,-0.016822636,0.018367324,0.067964606,-0.0068164035,-0.058085017,0.043473575,0.006489815,0.048686247,0.0040138373,-0.011770981,0.0070963525,-0.0020335221,-0.002997399,0.07088166,-0.0015666573,0.05139965,-0.057772614,-0.024540592,0.035793494,-0.042322636,-0.006521991,0.013656761,-0.07242298,-0.016782003,0.05876447,-0.027519122,-0.019064194,0.023177246,-0.01634528,0.034869105,-0.049625136,-0.012418238,-0.036677916,0.006796669,0.010019947,8.810967e-05,-0.11756386,0.014118076,-0.018228902,0.049215425,-0.004042949,-0.0013218427,0.10398303,0.013853968,-0.036287133,0.0801386,-0.036637325,0.023721652,-0.019967545,-0.010823204,0.0035941696,-0.06413112,-0.03892699,0.14193392,0.13101698,0.04437278,0.023842162,-0.11721353,-0.044644125,0.036446244,0.062482674,0.013632833,0.056521527,3.839931e-05,-0.05498518,-0.028798413,-0.039988644,-0.0036678726,-0.046296988,0.12572083,0.020232407,-0.024588913,-0.02909235,-0.09851352,0.010159335,0.015325974,-0.07677819,0.022307029,-0.04879365,-0.06812505,-0.03684503,-2.2394642e-33,-0.00968002,0.0052073076,0.02858303,0.027311904,-0.013647066,0.04831812,0.028245512,-0.1031284,-0.105763786,-0.05084515,-0.017314974,0.07052794,-0.06775229,0.0029032847,0.04168285,0.09004506,-0.01004739,0.0008519596,0.0195005,-0.038964286,-0.04831962,0.0062605785,-0.059055198,-0.0029617124,-0.021181863,0.018144384,-0.030842468,-0.07853469,-0.008227248,0.055710137,0.0067339907,0.081676155,0.06005842,0.01781308,0.043259226,-0.085516654,0.030779984,-0.00079953973,-0.04306205,0.06278886,-0.0054739877,-0.00091615616,-0.018401217,0.060731336,-0.008778625,-0.0017145012,0.029466894,0.01308643,0.04301408,0.016102213,-0.035194937,-0.07027806,-0.08393461,0.024523195,-0.008262086,-0.022808792,-0.121865295,0.016272169,-0.027336957,-0.022120262,0.07148455,0.02854568,0.006640516,-0.03346017,-0.11181673,-0.07659093,0.018007107,0.09923943,0.13776127,0.06357323,-0.0149313575,-0.032636736,0.023921508,0.03108802,0.03574069,-0.04717083,-0.015989814,0.08580474,-0.013191534,0.07962966,-0.05130054,0.0030271045,0.026627667,0.105231285,0.049943388,0.08410423,0.1254422,0.028297078,-0.092444666,0.06582963,-0.063169025,0.104608715,0.12189138,-0.010431341,-0.037339795,5.3957716e-34,0.01792244,-0.06036607,0.007453179,0.030116105,-0.014396489,-0.018123677,0.026356725,-0.009633777,-0.05239403,-0.06139621,-0.041223712,-0.11660051,0.1531319,0.007897882,0.030963652,0.09927572,0.03953726,0.010058258,-0.09742811,0.0036757942,-0.11517739,-0.01956518,0.054125812,0.0660608,0.021359785,-0.0019278437,0.014736568,0.01235737,-0.12976556,-0.025808938,-0.030006249,-0.03886067,-0.068271615,0.05627511,-0.04619451,0.084388204,0.094747886,0.037151303,0.0059760106,0.037892204,0.001661129,-0.032309733,-0.009350221,0.0048537236,-0.0008575921,0.025159743,0.009505589,-0.05030229,-0.04665184,0.02526102,0.05897758,0.0015210313,-0.037102114,0.06141235,0.0049366457,-0.026867762,-0.0687641,0.021878691,-0.12116986,0.0018584889,-0.014774219,-0.002091867,-0.10789577,0.005236764,0.058500092,-0.02623009,0.055510297,0.005819201,0.006529001,-0.0025962514,0.07626523,0.022916626,-0.02046553,0.024583232,-0.040402267,-0.048836302,-0.07248032,0.011972324,-0.022705702,-0.010311364,-0.023017082,-0.023131879,-0.033965234,-0.018674176,-0.045031834,0.019792432,0.02539998,-0.012451319,0.017376604,0.07626587,-0.03703329,0.064334735,-0.057625055,-0.07071405,-0.010816981,-1.3658314e-08,0.041158937,0.016983815,-0.03308052,0.025134986,0.0020131222,-0.024310559,-0.038219023,0.057468455,-0.025331244,0.06323757,-0.005974026,0.007338834,0.038180675,0.046566922,0.013357093,0.010945572,0.051021643,0.14228754,0.009075533,-0.05416091,-0.044080436,0.027976427,-0.029843876,-0.035973392,-0.06085508,0.03090434,-0.02422297,0.008213675,-0.020686453,-0.04546018,-0.0011074293,0.033476096,-0.0497096,-0.13174142,-0.026177509,-0.010743,0.013140954,-0.07084503,0.02547661,-0.040465664,0.06042006,0.03345954,-0.042927932,-0.03212766,0.040060855,-0.08221567,0.07978315,-0.0633855,0.025488524,0.0121916225,-0.011158007,0.0344628,0.09860026,0.03740816,0.08596551,-0.042866576,0.069128595,0.0017770684,0.0064635775,0.014122322,0.03801758,0.07912246,0.052610096,-0.033390112} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.885915+00 2026-01-30 02:01:13.198139+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2369 google ChdDSUhNMG9nS0VJQ0FnSUNLODVuSjl3RRAB 1 t 2372 Go Karts Mar Menor unknown Un rato divertido un rato divertido 2 2022-01-31 01:52:39.833374+00 it v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Un rato divertido"} {0.006949402,0.044251617,0.004435851,-0.029308682,-0.024362784,-0.009950336,0.09945555,0.014273128,0.026686551,0.013002494,0.058024433,-0.039088517,-0.10655436,0.04612784,-0.059045944,-0.074892975,0.011750153,0.050561056,0.037033975,0.046091832,0.015865136,0.005830609,-0.046665397,0.07584169,-0.1002813,0.00032921188,0.008494041,-0.013698963,-0.018401178,-0.061029267,0.03787301,0.14146444,0.019748263,-0.06638589,-0.017562158,-0.02901201,-0.061832353,0.027562572,0.038298905,0.051364686,-0.07181687,-0.04425033,-0.0087002255,-0.02888639,0.028759062,0.007103547,0.00917839,0.06471533,0.073885396,-0.03594753,-0.063266024,0.020756865,-0.014788656,0.059074342,-0.025173176,0.0014003555,-0.03251981,-0.044761546,0.05394286,0.019280916,-0.034259975,-0.014422566,-0.036940537,0.029361645,0.027763778,-0.0015864555,0.019475725,0.008610437,-0.061040774,0.047873966,0.13138705,-0.038519833,0.066813335,-0.06962102,0.0019343572,0.016506547,-0.032712016,0.071958244,-0.060032643,-0.027016522,0.058108307,-0.01484951,-0.06364317,-0.061571814,0.033143785,0.054147784,-0.020269485,0.049012247,-0.011552396,-0.03370081,-0.052270893,-0.005434629,-0.04076626,-0.034573004,0.019707065,-0.0065173875,0.021805419,-0.09168584,-0.0543689,0.10366188,0.0052091004,0.072757475,-0.025655651,-0.04625825,0.007475612,-0.021481728,0.0476614,-0.03343249,0.026318302,0.049058888,-0.06652935,-0.018141987,-0.022053909,-0.06161409,-0.03298388,-0.001355605,0.06814624,-0.120476,-0.011602721,0.043077562,0.03154116,0.02411532,-0.0748059,0.028297251,-0.0026760038,-0.043593038,0.050104935,-1.7219337e-33,0.004953698,-0.06437364,-0.026484404,0.01302202,0.03695537,0.031105917,-0.04541761,-0.10412571,0.011905737,-0.013667238,-0.05561263,-0.015003698,-0.03219156,0.08158817,-0.030684182,0.018285539,0.03256547,0.042898133,0.141551,-0.026148608,-0.045529187,0.06570781,-0.060550284,0.061376207,0.017510943,0.10926271,-0.092802495,-0.07294004,-0.033166625,0.06404397,-0.0033452571,0.043511648,-0.05079215,-0.019485995,-0.003609126,-0.046794232,-0.0576632,0.009961496,0.053266678,0.017602202,0.06101822,-0.0009015087,-0.08463788,0.015088539,0.072316654,-0.08917501,0.002887052,0.033354316,0.11303074,0.028637912,0.0020207826,-0.05478353,-0.028719014,-0.071219504,-0.021868752,-0.058410548,-0.0019669882,0.09186013,-0.024131604,0.016205417,0.013470306,0.040512845,-0.11452497,-0.023414057,-0.05370177,0.020076364,-0.027010364,0.029742964,0.049034193,-0.02362505,-0.17983991,-0.06127235,-0.008089276,0.05704921,-0.049046595,-0.020166881,-0.0044730282,0.0345875,0.0052020275,-0.0026391838,-0.026662478,0.07776036,0.06275427,0.0695332,0.07903172,0.13554898,0.018219344,0.06690629,-0.023466334,0.045355704,0.006583402,0.05679997,0.030909855,-0.0692142,0.06975839,-3.7578722e-34,-0.03509106,-0.016163127,-0.01070827,0.0152359195,-0.035816275,0.0070943744,-0.080217786,0.052875254,-0.009404413,-0.070756674,-0.05225685,-0.05605343,0.13699648,-0.03526874,-0.037243214,0.065005034,0.09635192,-0.0021333212,-0.035008814,-0.028527064,-0.0458454,-0.021995183,0.08384771,-0.053073775,-0.019809773,0.011135107,0.08741312,0.016486052,-0.026620476,-0.0023029821,0.025397819,0.014998409,-0.032566078,0.026934024,0.046713825,0.041897573,-0.09926623,0.022017874,-0.065831736,0.07071308,-0.045185313,0.007133817,0.02719043,0.04360802,-0.0241805,-0.011354622,-0.015184216,-0.040127788,-0.054003056,0.014751101,-0.0130636,-0.018751023,0.0076864418,-0.047995083,0.022149537,-0.10329289,-0.012935599,-0.055498634,-0.04470326,-0.011889186,0.08262325,0.075968064,-0.091102265,-0.03171149,0.08482506,-0.012308447,-0.09060862,0.0010282114,-0.01115353,0.07378184,0.15167923,0.014862315,-0.025789287,0.009926482,-0.029861482,0.060313478,-0.039017882,0.06669058,0.008550407,0.0034157056,-0.12058364,0.047080535,-0.03598977,0.026681397,0.0029091667,-0.009547305,-0.033574637,-0.045611847,-0.012528355,-0.03970785,0.059294403,-0.02207898,-0.020078808,-0.021431575,0.050970435,-1.3684221e-08,0.016534287,-0.05612905,-0.036637954,0.015556113,0.053543538,-0.017623402,0.0004330043,-0.028621038,-0.008305435,0.044232678,0.063586004,0.014412611,0.075093046,0.06707415,0.008177852,0.033865955,0.072119884,0.09021817,0.015688242,0.036521215,0.035888623,-0.043321263,0.021853022,-0.11001417,0.014650065,-0.0047853757,-0.011544943,0.022355225,-0.10690825,-0.080345795,0.062012054,-0.06529495,-0.01603654,-0.042945523,-0.01534695,0.06062715,0.005785474,0.019123413,-0.01962465,-0.064097725,0.06096619,0.040821936,0.026266789,-0.03302647,-0.051566146,-0.05109436,0.02391391,0.08055448,-0.010049167,0.00086589705,-0.050824974,0.047350753,0.052773613,0.0054001883,0.030642424,-0.025648583,0.026813315,0.01134579,-0.0284144,-0.04354115,0.021678677,0.13535301,-0.051659647,0.027981153} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.90685+00 2026-01-30 02:01:13.207174+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2370 google ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB 1 t 2373 Go Karts Mar Menor unknown Por el trato por el trato 5 2026-01-30 01:52:39.833374+00 es v5.1 P1.02 {} V+ I2 CR-N {} {"P1.02": "Por el trato"} {0.01220874,0.03404416,-0.040879957,0.021872139,-0.029621268,-0.019190462,0.13644348,-0.0015690174,-0.007530254,-0.008979988,0.108209856,-0.011348018,-0.08115402,-0.0012627376,0.029829368,0.00036402157,0.018369982,0.026453288,-0.0094473185,-0.03234914,0.07762802,-0.0359276,-0.08699447,0.098209426,-0.087818585,-0.02101104,-0.007052523,0.036327668,-0.022732954,-0.09708253,-0.06575277,0.0565857,0.025254533,0.0030958045,-0.00701829,-0.022907227,-0.027291447,-0.04161019,0.03610513,0.03696519,-0.07149166,-0.031906404,0.028390892,-0.026858453,-0.009704184,-0.07742479,7.71567e-05,0.086739995,-0.013417917,0.013847885,-0.026958575,-0.028883854,0.0040050405,0.04186673,-0.07221501,0.07633701,0.041312143,-0.0011636431,0.07785934,0.042409915,0.007788393,0.03608138,-0.04732056,0.03241935,0.07721626,-0.04543356,0.04684291,-0.0058376295,-0.04549452,0.08150668,0.08648171,0.00452781,0.03967107,0.051085837,0.015534909,0.058653947,0.0017455152,-0.023033358,-0.015248608,0.011341618,0.016647048,-0.0016423735,-0.011353181,0.0022491834,0.04245183,-0.0020501032,-0.0035657913,0.0119854845,-0.016759392,0.011316543,0.015877983,0.08836201,-0.030478694,0.017833292,-0.057646617,0.068343475,0.019517848,-0.044296164,-0.035004344,0.10924188,0.086496174,0.022481408,0.08251096,0.01653687,0.0492818,0.010982948,0.045207758,-0.032680567,0.009036504,0.008026675,-0.038051713,-0.04788039,0.0069416813,0.0103099495,-0.019607304,-0.03609682,0.02681299,-0.0017452536,0.01967174,0.026168555,0.054116648,0.019060263,-0.06666251,-0.031257506,0.005340861,-0.027205393,-0.012943516,-9.889365e-34,0.022909231,-0.00754994,-0.0046532806,0.025508493,0.012329058,0.021666262,-0.05241274,-0.010574741,-0.10664951,0.011326952,-0.0834782,0.0043271147,-0.054403037,-0.041883666,0.10798747,0.08334765,-0.038756244,0.01000288,0.05254927,0.0029578335,-0.085189246,-0.023333853,-0.042221364,0.01765626,-0.017971769,0.052825168,-0.069741085,-0.1136129,-0.07497151,0.06291093,-0.0005722361,0.14498043,0.04057475,0.028371533,-0.0031587887,-0.08790383,0.019085044,0.010288606,-0.046613846,0.006934084,0.017784217,0.029511413,-0.018029414,0.006670579,0.008744508,-0.02557604,0.049808323,0.029865108,0.06235975,0.00038311252,-0.044085756,-0.062449995,-0.08526857,-0.052350234,0.070803106,0.0059833517,-0.045558218,0.07592859,0.04698308,0.0043744002,0.05244415,0.042618778,0.011308194,0.054050468,-0.072419986,-0.0022462367,0.042097848,0.020114059,0.07726344,-0.008938321,-0.06820714,-0.040290937,0.09602356,0.019398231,-0.009680099,-0.0037343407,-0.049231183,-0.02284039,-0.031799924,-0.011651839,-0.061040226,-0.062248766,0.036998525,0.032091178,0.08712234,0.090806894,0.013478043,-0.0153802615,0.0035442861,0.0322801,-0.09539181,0.06396843,0.008922003,-0.11558162,0.013997962,5.5174445e-34,-0.021096312,-0.040748738,0.019499628,0.007896651,-0.048814606,-0.03393712,-0.05290961,-0.04201097,0.051683582,0.006634463,-0.022303838,-0.13625939,0.06459396,-0.04150591,0.06591003,0.06254622,0.0016804263,-0.0721476,-0.08964995,-0.050872874,-0.026762214,-0.063310444,-0.02434507,0.09453882,-0.019608062,-0.067131504,0.07130455,0.016260969,-0.017142992,-0.04217092,0.018018194,-0.009279484,0.040245116,0.08932038,-0.04317606,0.05405577,-0.040660843,0.07960899,0.092812285,0.058855362,-0.021616967,0.012771,-0.01008848,0.016496185,-0.019585006,0.009638215,0.011940875,-0.11443169,-0.05661524,-0.042707555,0.078173354,-0.04400328,-0.04519775,-0.021330863,0.0011299222,0.021306315,-0.054029547,-0.07401394,-0.09124566,-0.013652667,0.03259786,0.058340266,-0.09971762,-0.013813282,0.066368155,0.004908934,-0.07143769,0.067919455,-0.010681779,0.078862585,0.09311134,-0.019307584,-0.10787858,0.028022699,-0.052001487,-0.047867924,-0.09538528,0.04683999,0.016079815,0.00869924,-0.029252209,-0.0075242873,-0.01386168,-0.022739805,0.049007125,0.003408578,-0.09304869,0.03716252,0.017798558,0.10192534,0.05725314,0.023247464,-0.044764444,-0.11763881,-0.040759325,-1.4280892e-08,0.031289645,0.008822068,-0.039977852,0.027873818,0.094954304,0.051569145,0.010209835,0.01117086,0.062479004,0.10411962,-0.03760233,-0.015328419,0.012798927,0.0907811,-0.009677211,0.07021702,0.031619772,0.037911315,0.007517432,-0.04523049,0.021874582,0.0017276609,-0.021285,-0.057426207,-0.017632676,0.015039362,-0.06878256,0.041000545,-0.0038234121,-0.009410125,-0.051140793,0.016630184,-0.063966386,-0.09459067,0.018105809,0.0050990772,-0.02813042,-0.102829546,-0.04317336,-0.0107203,0.05393436,0.042770367,0.02059412,-0.08456072,-0.020889327,-0.07970596,-0.0083658965,0.05288408,-0.024388015,0.04176702,-0.05040382,-0.048453856,0.04160165,0.07253218,0.1301381,-0.04456688,0.08777123,-0.0110898195,-0.04050054,0.082789876,0.058911122,0.09823826,0.075285815,-0.07493371} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.919177+00 2026-01-30 02:01:13.213233+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2371 google ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB 1 t 2374 Go Karts Mar Menor unknown Super karting ,mais un peu chère super karting ,mais un peu chère 5 2022-01-31 01:52:39.833374+00 fr v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Super karting", "V1.01": "mais un peu chère"} {-0.0132758375,0.024752926,-0.003228958,0.02633295,-0.08396594,0.06625687,0.008649643,0.07878236,0.0028700132,0.036627162,0.089014515,-0.012330845,-0.05248462,-0.013682205,-0.014184464,-0.07447971,-0.017671183,0.010318502,0.011960383,-0.0015757916,0.042262834,-0.09276951,-0.009747226,0.053586513,-0.1367269,0.009092959,0.052033838,0.03736407,0.054624304,-0.07048154,0.0033876842,0.10197508,-0.04495129,-0.032989062,0.038735177,-0.02140524,-0.010103403,-0.11813547,0.0042347326,-0.028542774,-0.0007753825,-0.028452009,-0.039827585,-0.07692695,0.09493027,0.055709198,0.014614207,0.053693652,-0.01489746,-0.041057598,0.0077989246,-0.02585376,0.08064391,-0.009393164,0.010219456,-0.05394158,0.02289705,-0.00926319,0.08448276,-0.0072227903,0.0065851635,-0.026494812,-0.02048535,0.0060112076,-0.07057883,-0.045923173,-0.06653884,-0.021880105,-0.055134557,0.094830215,0.047757987,-0.07102119,-0.056493443,0.038720682,0.044668004,0.014524205,-0.03523083,-0.0024317484,-0.059563223,-0.011324913,0.020370968,-0.067443125,0.01955067,-0.14337629,0.08087491,-0.057379007,0.07646043,-0.04533136,0.0049632527,-0.04714359,-0.05603911,0.010361205,-0.122468896,-0.013301377,0.004249416,0.05004094,-0.09817935,-0.024058374,0.064394474,0.010860273,-0.003041085,0.023171034,0.013625771,0.02986162,-0.08615205,0.023598796,0.039812803,8.113954e-05,0.052619293,0.07569511,-0.012109327,-0.072276846,-0.04897218,-0.106757134,-0.07767546,0.014311513,0.005311112,-0.023386685,-0.04874152,-0.028151937,-0.007841314,-0.032335572,-0.0103140725,0.058091175,0.024662685,-0.01551695,0.11183699,-1.7904526e-34,-0.048149407,-0.054638367,-0.02195008,-0.0731311,0.03174483,-0.030696273,-0.058040485,-0.046015378,0.0055688648,0.0076937187,-0.03744687,0.06698866,-0.046122164,-0.032615673,0.06425995,-0.0059209527,0.0147322025,-0.051510688,0.10610704,-0.028627647,0.024622899,0.024263294,0.03157524,0.0073139947,0.044557832,0.056501627,0.0336166,-0.077303186,-0.017917227,0.01181583,0.044183284,-0.026001327,-0.06534858,-0.008183301,-0.055861995,-0.015750935,-0.04912123,0.06371142,-0.010120209,0.046886895,0.031969327,-0.044190273,0.034596518,-0.028791033,-0.08273771,0.061046727,0.08862061,0.024379114,0.038248,-0.030729456,-0.081494324,-0.008457775,-0.07051792,0.04665056,0.013138719,0.004178551,-0.009711778,-0.037036143,-0.025152378,-0.06480009,0.07591377,0.012694814,-0.030547388,-0.032054044,-0.106092565,-0.031826112,0.04490913,0.07053131,0.06274001,-0.031816345,-0.10402989,0.049886853,0.10437859,-0.07895747,0.06662319,0.035287116,-0.014518055,0.058754735,-0.04522268,0.032412793,-0.12726666,0.02245516,0.05374892,0.051872417,0.03305644,0.037223823,-0.05309062,0.011410656,0.044896334,-0.03715772,-0.060526207,0.0035218748,0.05528263,0.053662967,0.049776845,-1.6284177e-33,0.026352875,-0.016965395,0.06703823,0.06331673,0.06849984,0.05617248,-0.037389282,-0.017009957,-0.04976337,-0.046565898,-0.06640497,-0.04729517,0.10375443,-0.043837637,-0.0025688247,0.071410865,0.01733968,0.047864556,-0.0041093365,0.007184419,-0.024894197,0.02655967,0.03151797,-0.02144843,-0.03323955,0.0047394964,0.1324858,-0.00959387,-0.018108446,0.07701,0.0135561675,0.0040359916,-0.042011555,0.04829339,-0.03058437,0.0059207543,0.010638523,0.1037942,-0.065299176,0.049604803,0.03396011,0.05131113,-0.030644817,0.06980636,0.041963287,-0.045991175,0.020913988,-0.004441212,-0.0353799,0.040731214,0.07972224,0.036063,-0.06444158,-0.04457089,0.018443374,-0.048175946,-0.016375659,-0.027057426,-0.10787582,-0.029288005,0.07582004,0.014389173,0.0060669095,0.0074912524,-0.0309314,0.009695266,-0.115306415,0.03048062,-0.010857427,0.003658471,0.0011378902,0.02074919,-0.068154454,0.039772075,-0.035826877,0.042789128,0.019849785,0.057892896,0.079899095,0.08262991,-0.1065112,-0.014323527,-0.080968164,0.04971755,0.0416886,0.033899114,-0.07324751,-0.028667614,0.082426615,-0.06718298,0.025947342,0.04713367,0.077241376,0.025965506,-0.067899935,-1.7438309e-08,-0.008904606,-0.029689312,-0.061356112,0.063194804,0.059877276,-0.08756341,-0.027089102,-0.010112745,-0.072231784,0.0046085385,0.013371466,-0.027091784,-0.020663353,0.02908238,0.026920764,0.07158664,0.013221707,0.14839657,0.035639897,-0.03786151,0.018394351,-0.03231297,-0.03676496,-0.07458488,-0.07184709,-0.0123685775,0.014026923,-0.04525042,-0.015639717,-0.0937738,0.042749107,0.013934367,-0.056462057,0.006872261,0.025376493,-0.00505981,0.013020869,0.07258717,-0.043703128,0.05610804,0.03242497,0.017333886,0.0382228,0.00024811644,0.004628355,0.04942875,0.052249238,-0.010015401,0.047245935,0.107529804,-0.045865346,-0.0010534414,0.01242505,0.07590028,0.063458756,0.06145028,0.009549222,-0.060717262,-0.086283095,-0.0073625157,0.02766316,-0.026721662,0.0037376333,0.05729906} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.92918+00 2026-01-30 02:01:13.217281+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2372 google ChdDSUhNMG9nS0VJQ0FnSURSdjllenp3RRAB 1 t 2375 Go Karts Mar Menor unknown Mooie baan! mooie baan! 5 2024-01-31 01:52:39.833374+00 af v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Mooie baan!"} {-0.06131,0.06543865,-0.0069126417,-0.030865086,-0.08724205,-0.0860261,0.101261616,-0.044405498,0.032565687,-0.04021153,0.1011134,-0.056806706,0.052417275,0.026328798,-0.08740156,-0.030728284,-0.07903942,0.10033809,0.0068075107,0.014305637,0.021280847,-0.020720199,0.05930892,0.063800596,-0.015240847,0.018456005,0.054230273,0.06552696,-0.001293445,-0.019542033,0.07714614,0.14718385,-0.011542968,-0.042769145,-0.031421393,0.030016027,0.050964538,-0.016563509,0.02326963,0.074283965,-0.06947845,-0.0071662576,0.0057133697,-0.09259924,0.09130428,-0.009867426,0.0009455139,0.016114952,0.042468973,-0.038338277,-0.05616398,-0.008987801,-0.0025192099,-0.03037559,0.0130348,-0.07486102,0.03417525,0.0271198,0.0025527473,0.0053413543,-0.04671813,0.0713218,-0.030875178,0.09839666,-0.016967665,-0.080722824,-0.03895231,-0.013631824,-0.12521523,0.033194713,0.031499974,-0.03584841,0.08050745,-0.016308038,-0.092604816,0.07154601,0.026399694,-0.012558367,0.020707684,-0.009166197,0.026315255,-0.09436077,-0.010058564,0.01839734,-0.0030993195,-0.015398263,-0.030833388,0.0052686105,0.0360345,-0.034014642,-0.0580213,0.022230417,-0.065628745,0.0037750753,-0.03337631,-0.039203037,0.0033209529,-0.016348295,-0.12565595,0.10137888,0.007895552,0.009402801,0.04633077,0.04364932,-0.058477867,-0.034218613,0.083090566,-0.028721329,0.032613225,0.049757518,-0.0033961171,-0.004683522,0.0145803215,-0.017768294,0.07288026,0.022517303,-0.062030178,-0.037373826,-0.05076106,-0.0062309434,-0.037907194,-0.009541127,-0.06990874,-0.04099099,0.040418137,0.028193366,0.0981374,1.2466844e-33,0.017564526,-0.017358156,0.053973407,0.015241498,0.01624701,-0.028195951,-0.10378051,-0.08118085,-0.096320145,-0.0701961,-0.027572036,-0.014027362,-0.07282899,0.010961748,0.103650995,0.09880626,-0.038308088,-0.06887316,0.13149874,-0.0034528528,-0.07074256,0.031058215,-0.0010450839,0.03456097,0.003787979,-0.03028522,0.010485402,-0.07227305,-0.05480462,0.05080386,0.04791261,0.0061687077,-0.005155588,-0.029969152,-0.13102747,-0.04169142,-0.09751669,-0.037303157,-0.037694756,-0.044771265,-0.027458077,-0.048309527,0.010015193,-0.024299752,0.027768714,0.032476522,0.034760837,0.0144381095,0.07624941,0.033843953,-0.048482012,0.024685599,-0.064389445,0.03219416,-0.00016798277,0.00024432875,0.002352913,-0.011637686,0.012200427,-0.010708874,0.03370135,-0.017398493,0.009734663,-0.04257506,-0.055992138,-0.09037904,0.011369259,0.031174637,0.039031994,0.004544786,0.015240307,0.010988606,0.06546214,-0.015323667,-0.020838693,0.013430531,0.042875383,-0.06327458,0.017418807,-0.008061057,0.004361073,-0.022997135,0.050179627,-0.021491438,0.09052453,0.11869296,-0.047478467,-0.036544982,0.0035920448,0.04608653,-0.048812557,-0.050372392,-0.03475052,-0.040648755,-0.009980776,-2.9623909e-34,0.045174807,-0.0062181284,0.03990377,-0.05857813,-0.03483675,-0.051608805,-0.041862894,0.037218396,0.03259946,-0.04731078,-0.039180525,-0.13647535,0.13943535,0.008992965,-0.075572796,0.0800933,0.039836697,-0.0030608189,0.0405352,-0.024128139,0.03261991,-0.0060828235,0.0062676636,0.0074651446,-0.033512637,0.0314066,0.074984826,0.05509813,-0.047949918,-0.02230808,0.027943553,-0.06752098,-0.052310158,0.008760617,0.04267868,-9.42485e-05,0.10040567,0.037615474,-0.03351021,0.03431902,-0.09711532,0.05413652,0.006564912,0.047079384,-0.017065257,0.08533931,-0.031325083,0.0032618984,-0.0037605835,-0.055372052,-0.03267632,0.03688506,0.03769116,-0.032459386,0.058278687,0.022238288,-0.025157256,-0.0024489928,-0.06913345,-0.03856036,0.051809635,0.0535926,0.0031346895,0.030516064,0.056168623,0.010339042,-0.04812767,0.046022575,0.08840312,-0.018499719,0.06203816,-0.03697067,-0.10217919,0.045348097,-0.051280674,-0.005949252,-0.03401946,-0.0119946655,0.018834272,0.00024675642,-0.06399666,0.02970207,-0.057733234,0.059616182,0.027632851,0.07770753,0.01217497,-0.022600781,0.05607512,-0.022042384,0.028539296,0.095877685,0.027357679,-0.051506996,-0.021625312,-1.781697e-08,-0.007398839,-0.066815026,-0.016064024,-0.016352069,0.07220768,-0.022680193,-0.015077364,-0.0028851395,-0.03451271,-0.021683581,0.04082563,0.041111056,-0.00929808,0.05674649,0.02669454,0.13155541,0.038040616,-0.036897913,0.031370446,-0.12947221,0.0862041,-0.039744474,-0.003690556,0.054116987,-0.060507797,0.063038185,-0.04371182,0.02221104,0.034961853,-0.012647184,0.008286592,0.020541653,0.004016791,-0.0024797372,0.011019418,0.01993004,-0.08897183,0.060589585,-0.010711399,-0.02827929,-0.004292598,-0.021574693,0.17392625,-0.021526912,0.048110362,0.033574767,0.030802326,0.07697155,0.11246719,-0.019711956,-0.07998659,-0.02136187,0.048689503,0.07398218,0.07116881,-0.0015235504,0.059618503,-0.0071110255,0.0062908726,0.04380504,0.076359876,0.025242548,-0.03426594,-0.04067875} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.940303+00 2026-01-30 02:01:13.220007+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2373 google ChZDSUhNMG9nS0VJQ0FnSUR1dVlYMUtnEAE 1 t 2376 Go Karts Mar Menor unknown Circuito, instalaciones y profesionales de 10. circuito, instalaciones y profesionales de 10. 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {E1.03,P2.01} V+ I3 CR-N {} {"V4.03": "Circuito, instalaciones y profesionales de 10."} {-0.06367556,0.027241552,-0.019069405,-0.10780049,-0.018761069,0.018099481,0.02635651,0.14936073,-0.061862648,0.0025564746,0.069762394,0.020516006,-0.04740403,0.085912846,0.0026661942,0.0041401996,-0.06664214,0.043669842,-0.0015749414,-0.09434174,0.050654404,-0.029688565,-0.040368713,0.01773229,-0.031689223,-0.032297205,0.02896202,-0.006177056,-0.03980285,-0.082575694,-0.046666577,0.01038486,0.0921475,0.014365844,-0.0269488,-0.080029555,0.072796226,-0.018902484,-0.04190942,0.0047169398,-0.08590176,-0.07145903,0.022048883,-0.10472293,0.048526794,-0.048275985,0.028267974,0.0024397406,-0.015348807,-0.07036177,0.030313024,-0.026129184,0.03446506,0.02675117,0.009527945,-0.021019936,0.008600415,0.05687931,0.007700982,0.012364847,0.049612675,0.023234535,-0.094034076,0.07699592,-0.07871835,0.0017312156,0.012859363,-0.046227243,0.0042044716,0.0057076346,0.10055509,-0.17152205,0.007257978,-0.05826481,-0.016162809,0.020232242,0.0036033134,0.022900883,-0.034284785,-0.078277126,0.0118739605,-0.007822896,-0.010891637,-0.053036846,-0.013729351,-0.009535293,0.040397976,0.019736273,-0.045569118,-0.0445238,-0.01781392,0.027232151,-0.017190196,-0.020588867,-0.011792624,-0.014084914,0.026242204,-0.03865087,0.002983583,0.020522634,0.049383357,0.007992444,0.048179846,0.038567577,-0.071267486,0.0032654516,0.015842333,0.014364367,-0.008030543,-0.05545904,-0.07196794,0.012309297,-0.09119395,-0.05162212,0.016212165,-0.03902572,-0.04332303,0.0060367393,0.033573303,-0.023097878,0.0037386708,-0.039832503,0.008135201,-0.018083762,-0.026680188,0.03667617,0.044604328,-2.2976189e-33,-0.03341505,0.015940355,-0.101893924,0.058143515,0.04292234,0.032279085,-0.045714967,0.0849879,-0.015630346,-0.018143654,-0.046130292,0.08352843,-0.028731218,0.028312527,0.15001701,-0.04279284,-0.035356894,0.0392759,0.06635524,-0.03064606,-0.032161914,-0.007998796,0.032703973,0.1192985,0.06653487,0.054784056,-0.008730795,0.024652949,-0.040027525,0.020403598,0.034066305,0.035570294,0.026480215,0.0028789255,0.015459076,0.06096315,0.094835654,-0.02243769,0.12004525,-0.060110517,0.028624052,-0.034068525,0.011178245,0.01400158,0.090074,-0.028917514,0.013300567,0.05008478,0.15071943,0.0062447255,-0.114373215,-0.0005871326,0.017355694,0.022888102,0.036465168,-0.0068954155,-0.010617155,0.044451796,0.07348015,0.06706845,-0.009494007,0.073308125,-0.098082714,0.023842301,-0.043200362,0.0325058,0.087494045,-0.03720534,0.090652086,-0.04505216,-0.15998651,-0.034597263,-0.0097540775,-0.014327616,-0.01059856,0.036444787,-0.030111795,-0.038248964,-0.023071047,0.04809695,-0.07543742,0.010800463,-0.01743069,0.039633352,0.11130896,0.056465056,-0.02630146,0.025655922,0.013302054,0.055413272,0.018592866,0.035761815,0.043635093,0.06368387,0.038836468,-9.454134e-34,-0.07216326,-0.062423944,-0.021448396,0.030367868,-0.030082218,0.07383881,0.0034220908,-0.054265115,0.010150953,-0.03386688,-0.02637581,-0.019551972,0.072752245,-0.0658889,-0.04655295,0.018005615,-0.094769195,-0.0535071,-0.018081902,0.02382505,0.085195586,0.09393199,-0.039782744,-0.0615124,-0.029107032,-0.031454574,0.0016953483,0.001619039,-0.043306194,0.06293779,-0.0047861394,0.003155755,-0.06672241,0.11273484,-0.059264757,-0.04788943,0.12533481,0.04250048,-0.035821553,-0.0119324485,0.0023247264,0.04787132,0.008667005,-0.040195957,-0.025159875,0.003834952,-0.03221735,-0.08134343,-0.053825323,-0.018340493,0.0632568,-0.039963655,0.014420871,-0.019769171,-0.033424236,-0.06367276,-0.0147742145,0.05201446,-0.02510728,-0.018665643,0.053525046,0.011089892,0.084459715,-0.031133026,0.010634498,0.03157889,0.039905462,0.096218444,-0.01661635,-0.040601946,0.08158319,0.03004515,0.03680801,-0.056229785,-0.1003304,-0.05018582,-0.080889925,0.039358106,-0.013570443,-0.020828027,-0.01204506,-0.025937807,-0.013169573,-0.059963856,-0.017551767,-0.10249083,0.04671317,-0.028205866,0.06251051,-0.018925093,-0.0066851447,0.06932229,-0.008347709,0.0040532965,-0.011315038,-2.2343238e-08,0.010879241,-0.054603983,-0.015120346,-0.042286802,0.08573325,-0.088094935,0.021858042,0.061830565,-0.007685889,-0.005557683,0.09370786,-0.03974386,-0.07634377,0.060052674,0.034720805,-0.03164514,0.0028279268,0.115322486,-0.014720954,0.032565296,0.0038099044,0.014353504,0.023600698,0.018031873,0.056307524,-0.015826669,0.02220963,0.0011908823,-0.027022725,0.02766566,0.014559136,0.020956846,-0.061803095,-0.047042947,0.044608843,0.06352106,-0.050086588,0.021689039,0.025443925,-0.05790816,-0.031089306,-0.054030295,-0.04909812,0.03894229,0.0070243687,-0.09899969,-0.10944759,0.0022013732,-0.03037298,0.018213788,-0.040489513,0.059118178,-0.053275477,-0.01740524,-0.020411102,0.009369644,0.041087776,-0.057496574,-0.08921912,0.08456533,0.018284993,0.05819854,0.092974365,-0.08414728} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.95036+00 2026-01-30 02:01:13.222941+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2374 google ChdDSUhNMG9nS0VJQ0FnSUN3cjdUT3NBRRAB 1 t 2377 Go Karts Mar Menor unknown Buena manera de desestresarse buena manera de desestresarse 5 2018-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I2 CR-N {} {"O1.05": "Buena manera de desestresarse"} {0.020671448,0.04192205,-0.0010642783,-0.052513953,-0.061802134,0.00043400718,0.024640152,0.041897234,0.019463241,0.026324749,0.034768112,-0.045943845,-0.01918042,-0.061771385,0.02723563,0.0034312955,0.024782958,0.041125786,0.00020382305,-0.003216158,0.0774113,-0.006537123,-0.09812277,0.071711116,-0.06397018,-0.011852401,-0.024356026,0.014153512,-0.01863856,-0.10836881,0.08964133,-0.076624416,0.13598691,0.037311092,-0.025035128,-0.047737658,0.06595637,-0.05857395,0.017393908,0.06736742,-0.095723815,0.030631533,-0.10083734,-0.042591013,-0.021951836,-0.08920913,-0.051161613,0.08070061,0.0525647,-0.060627673,-0.009300772,-0.01998915,-0.02562981,0.0024411052,0.014879361,0.011701209,0.037433952,-0.04699699,0.06365068,0.001957769,0.08570685,0.03260019,-0.041497428,0.004347907,0.0074596033,-0.0700913,0.035087112,0.04813147,-0.037797507,0.029922714,0.0440519,-0.07644423,-0.00020457778,0.10848991,-0.05848342,0.008970332,-0.081945516,-0.017062496,-0.04295468,-0.05669436,-0.0070582004,-0.045560185,-0.043625455,-0.03660179,0.055164248,0.017177379,-0.015754042,-0.038933937,0.084454775,-0.011291288,-0.11457429,-0.024568683,-0.08268589,0.034737553,0.014963742,0.008564497,0.050101552,-0.04879294,0.01636878,0.095130324,0.04932977,0.015125577,0.045281384,-0.00076838565,-0.025692495,0.036950864,-0.02579805,-0.023880815,0.024094835,-0.0006920584,-0.087831594,-0.06336287,-0.011497601,0.04854684,-0.02956019,-0.015250098,0.07795979,-0.02589482,0.010274044,-0.09523122,0.06566947,0.01149441,-0.02778876,-0.048754763,0.033785645,-0.038205292,0.0021100356,-2.8586783e-34,-0.02603763,-0.018132055,0.005863552,-0.0055597853,0.022315167,-0.02029945,-0.027061338,0.02131733,0.027481973,0.038239174,-0.08498757,0.02972176,0.0025729546,0.0027138873,0.087727316,0.046338774,-0.0028155663,-0.013341824,0.0009902547,-0.02051991,-0.07402494,0.027975097,-0.033315465,0.005205067,-0.00080095505,0.004594841,-0.015382777,-0.050471283,0.039984677,0.055268157,0.0019950138,0.024067754,0.022351943,-0.0138945505,0.051447842,-0.020317748,0.05247185,0.037621066,-0.00575557,0.0038530696,0.061209712,-0.028492397,0.021848753,-0.022742929,0.04829626,0.046642937,0.014347975,0.014838391,0.049452372,0.049752604,-0.02195691,-0.06310255,-0.05254117,-0.030349163,-0.013852613,0.04135616,-0.08626288,0.00936448,-0.028795416,-0.047894247,0.033361636,-0.014381633,0.028278308,-0.09274841,-0.051928062,-0.083858095,0.065372795,0.03621491,0.10662351,0.06365971,-0.1374033,-0.004912948,0.021720793,0.006878888,0.020475369,0.016697174,-0.009128459,0.035135124,0.039681587,-0.020289129,-0.047700644,0.0345773,-0.0046049342,0.064052224,0.103032015,0.06793224,-0.016502291,-0.005625488,-0.02828149,0.09245758,-0.049352784,0.073739,0.012311352,-0.06045423,0.04142838,-3.017221e-33,-0.005723941,-0.010046748,0.0040049595,0.04996269,-0.005228553,0.036160365,-0.03703531,0.058384433,-0.09440198,-0.08022892,-0.0938758,-0.10905266,0.13239415,-0.031521533,0.006541261,0.050684556,0.053053256,-0.068150386,-0.09501801,-0.06363706,-0.013989639,0.051398907,0.042655513,-0.0698026,0.028156044,-0.106155775,0.03130843,0.02377475,-0.0644582,-0.045700967,0.07348643,-0.005073884,0.017955942,0.0028088917,-0.10416139,0.0573412,0.025542362,-0.011945737,0.012648214,0.012195674,0.014454458,0.03825386,0.0113261165,0.021159653,0.025313612,0.030665062,-0.00011375642,-0.103518076,-0.020505711,0.014375433,0.14878777,-0.0472398,-0.058343735,0.019767387,0.047000498,-0.046682272,-0.009773847,-0.073776394,-0.048262093,0.036046747,0.055033624,0.040621206,-0.071858734,0.02269138,0.027955286,-0.059814688,-0.108528085,0.092416674,-0.01765358,0.02999955,0.117811106,-0.080612555,-0.09167765,0.03534763,-0.09691398,-0.08428174,-0.114283055,0.016400654,0.014421278,0.076490685,-0.10792283,-0.016061615,0.024959791,-0.046069365,0.0075702877,-0.002569249,-0.046764504,-0.0042537353,0.0034993698,0.08184154,-0.02001372,-0.0060729575,0.023817185,-0.026613645,-0.05095487,-2.0988422e-08,0.029704012,0.008552691,-0.048847742,0.019161431,0.016038118,-0.020691054,-0.018405292,0.01342991,-0.011547067,0.074002095,-0.0093956115,0.011613563,-0.071611516,0.1193749,0.0039133555,0.031968433,0.09662004,0.055471335,-0.024692215,-0.056664553,0.053701196,0.019855354,-0.054436963,-0.035258405,0.019933583,-0.043097552,-0.030688941,-0.00983403,0.04214352,0.025953136,-0.039430194,0.10683447,-0.025958292,-0.103481,-0.016274394,-0.027305728,-0.05107156,-0.019789366,0.02160961,-0.022946185,0.10044164,0.051465094,-0.019340042,-0.019280897,0.046884585,-0.048304692,0.07764485,0.0020262327,-0.024120944,0.0007304309,-0.040963028,-0.031534296,0.06373475,0.0683956,0.008419031,-0.050589945,-0.016422583,-0.01673202,-0.027324287,0.010271164,0.11512058,0.07333958,0.087389536,0.0137577485} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.962645+00 2026-01-30 02:01:13.239715+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2375 google ChZDSUhNMG9nS0VJQ0FnSURSMGNtVkhnEAE 1 t 2378 Go Karts Mar Menor unknown El mejor circuito de la región el mejor circuito de la región 5 2024-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-B {} {"V4.03": "El mejor circuito de la región"} {-0.0126843825,0.11904656,0.04948869,-0.031816155,-0.03649964,-0.027078478,-0.0014199752,0.09672992,0.0006332695,0.038733847,0.051449362,-0.07471492,0.032326505,0.023608768,-0.014521812,-0.006005874,-0.018635206,-0.029344598,0.010319891,-0.057177823,0.10150922,0.0042330413,-0.06190677,0.010676648,-0.046372395,-0.0073375306,0.05603604,0.04689163,-0.003061091,-0.102447644,-0.053687632,0.029254148,-0.010132703,0.018245038,-0.021146169,0.035934296,0.0009511074,-0.05992792,0.018627958,0.054272335,-0.05555029,-0.050581377,0.054490127,-0.0538827,0.028216314,-0.025799863,0.04094537,0.018077288,-0.00020371594,-0.123390004,0.030975705,0.005508733,0.067927636,0.07752223,-0.026595067,0.0073696473,0.015971469,0.05452377,0.066767,0.06373192,0.057900846,-0.030299703,-0.0016596011,0.035443526,0.0032905599,-0.08543765,0.01503306,-0.006195458,-0.09359719,-0.004546405,0.06265749,-0.08637329,0.0039179367,-0.122881144,0.068822406,0.004532304,-0.038292564,0.014885631,0.025581941,-0.054728266,0.04399899,-0.06352085,-0.08413795,-0.054282535,0.009741333,0.023555696,0.03914951,-0.06918978,0.06793116,-0.021233017,-0.05202688,-0.021391056,-0.10602251,-0.0445492,-0.012880285,-0.08071171,0.07962017,-0.0037176493,0.034667682,0.08308403,0.082245976,-0.046067853,0.0075748637,-0.03373121,-0.06873726,0.067530856,0.016921159,0.026199315,0.021217562,-0.019058885,-0.019400408,0.019667082,-0.044214662,-0.048636686,0.029985042,-0.047202263,0.05251396,0.013169597,-0.011073277,-0.0277931,-0.014359538,-0.01931948,-0.10177874,-0.0006543053,0.04151765,-0.033129036,0.051853422,-3.0785603e-35,0.0072625354,-0.06351787,-0.0072939554,0.05071483,0.0002632841,0.050585642,-0.01594718,0.04006737,-0.041396614,-0.07241453,0.011082536,0.116850965,-0.013026792,-0.018125491,0.10967366,-0.04754331,-0.031977598,-0.06626053,0.055388276,-0.034569155,-0.005538118,-0.03234396,-0.027809216,0.079224914,0.029871548,0.03132192,0.017566502,-0.07711407,-0.14022812,0.046460673,-0.030678077,0.07906829,0.02206794,0.046546236,-0.0138864415,0.015139677,0.047068845,0.03434164,0.04491048,-0.058847148,-0.023872295,0.017668465,-0.016078452,-0.03668924,0.0696124,-0.0089464085,0.06220992,0.07461985,0.12064959,0.011612694,-0.06856881,-0.025365343,0.014646359,-0.12979478,0.08635183,0.07379164,-0.10482289,0.040618166,0.043894224,0.0670337,-0.019135272,0.07940694,-0.06188851,-0.0018105425,-0.040831167,-0.0018795168,0.02480497,-0.06959268,0.09649448,-0.015228781,-0.086281545,0.0038430265,0.063008755,0.046938773,-0.008908449,0.013399447,-0.070431344,0.10343026,-0.004378245,-0.055553872,-0.11150425,-0.063017905,-0.061270826,0.01971849,0.10873821,0.07114287,0.045125507,0.005482831,0.014363867,0.05522672,-0.06914884,-0.03305478,0.10304501,0.029166048,0.02955633,-2.8674335e-33,-0.007659967,-0.036193457,0.017114166,0.0065933648,-0.008436597,0.023264473,0.0623239,0.01435887,-0.07576289,-0.014591001,-0.04010201,-0.0009798233,0.057779286,-0.010264225,-0.012915919,0.023064818,-0.01186195,-0.06528383,-0.07034176,0.059706636,0.017298998,0.031541344,0.0007371126,0.02511719,-0.100605786,-0.022451276,-0.072805226,0.029627599,-0.062126867,0.0054058693,-0.031689912,-0.020714382,0.002550867,0.08166567,-0.119471386,-0.033796784,0.02245158,0.030634278,0.053122405,0.016060082,0.044023767,0.021211864,-0.01671038,0.029082814,-0.095186226,0.0066605737,0.008724426,-0.040426176,-0.08869585,-0.03153949,-0.021684036,-0.03458092,-0.051151954,-0.058218796,-0.018318938,0.009394877,-0.024085388,-0.06644751,-0.032267377,0.025469888,0.041347317,0.010952663,0.045404594,0.012646155,0.06216841,-0.008246444,0.014408265,0.049434483,0.09130274,0.019980047,0.12410115,0.00439557,-0.018183459,-0.07007263,-0.0030203897,-0.016099794,-0.09209353,-0.01510448,-0.03442875,-0.015430739,-0.042133264,-0.012146733,-0.039001986,-0.03128504,-1.4664437e-06,-0.0042763255,-0.000528654,-0.0033145475,0.054105934,-0.051509965,-0.037266947,0.12604725,-0.09191197,-0.056577053,0.029889435,-1.9249617e-08,0.06365667,-0.03744709,-0.03756536,-0.0011202226,0.051133085,-0.094348006,-0.012287106,0.020848002,-0.01400559,0.1467094,0.044081837,-0.023710618,-0.02046756,-0.0666517,0.015106599,0.05023053,0.046673276,0.11528729,-0.021076059,-0.018095976,0.0017637074,-0.021668507,0.030614806,-0.05056498,0.058832992,-0.003863952,-0.051080976,0.008172856,-0.05079847,0.0005041017,-0.0381968,0.04247203,-0.039335478,-0.02148067,0.025953325,-0.01900016,-0.0578845,0.011153529,-0.013997318,-0.057257574,0.04261634,-0.017046478,0.036986142,0.04193964,0.0034023304,-0.033252735,-0.019251885,0.039236166,0.03754533,0.079004355,-0.107401535,-0.026818745,-0.00782035,0.048852783,0.065996476,-0.0050827763,0.03148352,-0.025831917,-0.06885711,0.038369153,0.057978913,0.08042077,-0.0447773,-0.05981149} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.976449+00 2026-01-30 02:01:13.242562+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2376 google ChdDSUhNMG9nS0VJQ0FnSUNVX00yc2x3RRAB 1 t 2379 Go Karts Mar Menor unknown Muy divertida genial muy divertida genial 5 2020-02-01 01:52:39.833374+00 es v5.1 O1.05 {} V+ I3 CR-N {} {"O1.05": "Muy divertida genial"} {-0.042024244,0.07077368,0.028413288,-0.007899518,-0.044363208,-0.020950403,0.09728905,0.052214473,0.023720345,-0.048504587,0.0806633,-0.11183986,-0.03028228,-0.022146454,-0.025758622,0.046174303,0.0015248407,0.052648135,0.0059177293,-0.011050565,0.021514824,0.079030104,0.005383662,0.018741025,-0.09700573,0.0069089136,0.022504475,0.024992026,0.071725704,-0.044895135,0.086919546,0.14750148,-0.0140364,0.03442117,-0.014805152,-0.024355838,-0.016873049,0.017196938,0.09406457,0.042377137,0.006521551,-0.021844784,-0.02816783,-0.04981739,0.019413155,0.006888124,-0.0046183295,0.043222785,0.048218925,-0.00096601545,-0.102852866,-0.060218547,0.03515387,0.006021284,0.03821723,-0.046021193,-0.037406053,-0.057144757,0.047155213,-0.009734888,-0.034441546,-0.0015992342,-0.019702319,-0.036904115,0.00038880162,-0.051459067,0.05522527,-8.470704e-05,-0.01975856,-0.044706125,0.03918585,-0.024100244,-0.0559604,-0.032243934,-0.080996,0.014541964,0.07788022,0.02890838,-0.05345695,-0.015366241,-0.044802856,-0.0477022,-0.010646368,-0.06725736,0.03779216,0.021647966,-0.026131926,0.040488556,-0.020002117,-0.041409172,-0.026870959,-0.05719771,0.021509578,0.01655232,0.051987693,0.06795362,-0.03456561,-0.17316407,-0.086518265,0.09250143,-0.03411566,0.041346617,0.026280612,-0.01786969,-0.07089655,-0.037104573,0.057256244,-0.060616955,-0.034323614,-0.03364643,-0.023631075,-0.0062817475,-0.014112661,0.00042019034,-0.03004629,-0.0039010462,0.0023963344,-0.049300373,-0.0029549913,-0.04592981,0.018498838,0.040397413,-0.10042712,0.038000192,-0.032713488,0.0013015175,0.050165493,8.358121e-34,-0.063046806,-0.08682529,-0.035298504,0.07185547,0.023656085,0.015587546,-0.0062670177,-0.042663947,-0.03207634,-0.09753918,-0.07203431,-0.106171526,-0.023122702,0.03575185,-0.03859641,-0.045025047,0.009811551,0.023607796,0.027887253,0.06562557,0.004190364,0.07078443,0.013468143,-0.031742457,0.020981496,0.100519165,-0.03614288,-0.09559345,0.007490263,0.062226325,-0.006774338,-0.02559745,-0.058464836,-0.004136179,-0.094972536,0.010419948,-0.061133362,-0.04329276,0.015590617,0.02911484,-0.019436441,0.029553926,-0.044993546,0.049412284,0.026661016,0.011303591,0.062606215,0.022084776,0.06642764,0.02979009,0.014837533,-0.012355899,-0.08560668,-0.034947045,0.012224099,0.0018442908,0.011699921,0.08618897,0.0023793136,-0.0104643805,0.017358212,0.02688158,-0.06629815,-0.0244559,0.021705298,0.01565162,-0.08251331,0.0475671,0.07342522,0.024005312,-0.08678759,-0.07580002,-0.0899837,0.08425835,-0.071733475,-0.044649623,0.06876735,0.04284839,0.028555147,0.027261512,-0.013071812,0.14171205,0.049556565,-0.01584868,0.060115412,0.062644556,0.019248296,0.085775085,-0.013528691,0.047002606,-0.005613079,0.037666753,0.0477613,-0.038955625,-0.0070622833,-1.5599543e-33,-0.038996667,-0.029181,-0.003770424,0.06203405,0.00291303,-0.04579486,-0.007971494,0.06498876,-0.06688826,-0.03322239,-0.04198644,-0.00037250004,0.08674024,-0.052893467,0.008998258,0.07170994,0.11374703,0.078230225,-0.048580237,-0.046244413,-0.048242886,0.0954365,0.08785645,-0.071139835,-0.08796012,0.030673455,0.016255874,-0.053641878,-0.034918357,0.016027175,-0.03318892,0.010073913,-0.07388948,0.028303022,0.03846974,0.005710188,-0.011402063,0.061316036,-0.015631147,0.071128264,-0.07889583,0.07831747,-0.0011864483,0.17056668,-0.03261902,0.051443737,-0.022735303,-0.022696089,-0.028046403,-0.0029006037,-0.029475588,0.039472453,0.055726208,-0.08886427,0.020068739,-0.08547895,0.0422304,-0.06516033,-0.061942294,-0.0076692593,0.05324526,0.022916332,-0.049889166,-0.053095367,0.094529405,0.054493703,-0.0826571,-0.006163804,-0.030618075,-0.021754451,0.12216566,-0.008686104,-0.054799296,-0.064774625,0.0004814683,0.08449281,-0.10553266,0.053765148,0.030617341,0.040458247,-0.07412056,0.0063117263,-0.062386062,-0.024425013,-0.025547985,-0.083762735,0.0062132166,-0.052460562,0.03172545,-0.04424479,-0.0056131915,-0.028465737,-0.035181552,-0.0037886894,0.10433736,-1.4968128e-08,0.008704364,-0.07808283,-0.0064977873,-0.0029918854,0.006888682,-0.021414297,-0.12361602,0.038998336,0.031827748,0.04366441,-0.021245971,0.028594498,0.047556844,0.11350851,0.024446543,0.0023890764,0.050411478,0.028453235,-0.019650068,0.008952635,0.09755523,-0.006823309,0.02701706,0.013043443,0.0425291,0.0022966624,-0.015105206,0.008458894,-0.010743519,-0.017870279,0.08162204,-0.026258688,2.2363263e-05,-0.02466639,-0.032594178,0.048508864,0.04472959,0.031093342,0.011826037,0.009573737,0.070508406,-0.048347104,0.078557745,-0.008250625,-0.08417617,0.009738548,0.035093755,0.02689119,-0.017836595,-0.0138101475,-0.0354168,0.012726651,0.076467425,0.083211005,-0.022597965,-0.035777636,0.012226709,-0.024229385,0.005952672,-0.050405215,0.002657542,0.13768633,0.023280371,0.006412651} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.988191+00 2026-01-30 02:01:13.24684+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2377 google ChdDSUhNMG9nS0VJQ0FnSURBam92a3NnRRAB 1 t 2380 Go Karts Mar Menor unknown Un circuito muy largo y técnico un circuito muy largo y técnico 5 2019-02-01 01:52:39.833374+00 es v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Un circuito muy largo y técnico"} {-0.06981614,0.031660244,-0.016201628,-0.0278641,-0.065663934,-0.042040665,0.034933567,0.07427922,0.031444576,0.03063833,0.08881991,-0.06463005,0.017524341,0.036448378,-0.026051965,0.032637615,-0.055828985,0.022327984,0.051909935,-0.018269973,0.10619115,-0.019117838,-0.037778694,0.13454436,-0.0729924,-0.017924346,0.026903825,0.07073029,-0.080191076,-0.09186673,-0.088170744,0.1200205,0.012884239,-0.0053735557,-0.036014058,0.012968084,0.040500168,-0.08470911,0.031066176,0.036186412,-0.108832024,-0.061801597,0.031028166,0.029296666,-0.014106038,-0.035606075,0.04316404,0.04852165,-0.007483502,-0.045389894,-0.023596952,-0.045284584,-0.036941685,0.04073506,-0.062401727,0.03817757,0.0054824958,0.032800123,0.066531986,0.021869393,-0.0066991933,0.04941393,-0.009444808,0.056140386,-0.0020266238,-0.044601977,0.026066123,-0.014378944,-0.054871086,0.031418007,0.10485409,-0.07314714,0.08549383,-0.038011443,0.0022940764,0.047089916,-0.00055157073,0.0071772924,-0.008647449,-0.05757997,0.032905325,-0.07044896,-0.060235206,-0.047493957,0.023103517,0.021993162,-0.027338509,-0.02143783,0.049243204,-0.06468873,-0.013520786,0.0014782355,-0.024461923,-0.062886186,-0.006787214,-0.024263924,0.0423379,-0.048918612,0.012213435,0.08078774,0.066012114,0.01416151,0.07151941,0.051101338,-0.012940651,0.08379152,0.047843195,-0.04614764,0.017466342,-0.026411965,-0.08110972,0.032669228,-0.059315562,-0.027727759,-0.02051639,-0.013503817,-0.010623335,0.022694146,-0.033085417,-0.074774675,0.040723898,-0.030368336,-0.099370934,0.01064968,-0.049981494,0.00408126,0.102280505,3.395132e-33,-0.011012258,0.01752285,-0.031016225,0.029388731,0.008641963,0.08128755,-0.049947403,-0.005237753,-0.064380534,0.02846816,-0.03463967,0.06895191,0.020596247,0.027204074,0.08728453,-0.018783506,0.016617237,-0.104566894,0.06378883,0.0026014643,-0.03114899,-0.008510215,0.0071581434,0.020211088,0.00966271,0.04503854,-0.05890146,-0.056497406,-0.08189828,0.04729922,4.8993545e-05,0.06856606,0.019074604,-0.028581304,0.006314392,-0.02358587,0.02038054,0.042529218,0.08284194,-0.034408964,0.021080604,-0.0043940465,-0.059510604,0.0113509735,0.06318658,-0.020063462,0.037334252,0.07111833,0.11567628,0.02593552,-0.07157452,-0.10995505,-0.094544806,-0.07322404,0.043963015,-0.006468696,-0.046357315,0.056459516,-2.7964476e-05,0.008234335,0.025759095,0.047569558,0.025446855,-0.068184115,-0.027386233,0.037185658,0.009663346,-0.03313987,0.047987744,-0.0030721512,-0.105286464,-0.009657081,-0.039700408,0.020087447,-0.039126556,-0.017579826,0.056323297,-0.035845164,-0.00806864,-0.00033237264,-0.12117064,-0.027430722,0.044776663,0.03585815,0.06342377,0.08933519,0.030407555,0.07760354,-0.0043506594,0.07941888,-0.04290813,0.021841142,0.09989211,-0.044781838,0.035807576,-4.187572e-33,-0.006068871,-0.052296158,0.046204455,0.047672875,-0.04232969,-0.05254706,-0.050425768,-0.0008676919,-0.042480573,-0.0011798766,-0.027115252,-0.097111635,0.08035219,-0.098334216,0.0611266,0.074840344,0.051112868,-0.02492344,-0.048660245,0.018427318,0.060019482,0.03905981,-0.03620649,-0.03414022,-0.08289148,0.0048838346,-0.033358272,0.040924653,-0.049289886,0.032779712,-0.0503949,-0.015837226,-0.022986641,0.08542968,-0.045631297,0.06186505,0.044291724,0.045743667,-0.002346073,0.012978744,-0.018768964,0.09324584,-0.0037157699,0.040714625,-0.0368459,0.038506474,-0.013394898,-0.061668295,-0.0565712,-0.0044039213,0.028030403,-0.06741006,-0.015252256,-0.060927626,0.0102139935,-0.015105367,-0.08117622,-0.025581911,-0.053921495,-0.057999197,0.112086676,-0.016048381,-0.041225355,-0.03338493,0.087359756,0.01743964,-0.0017277983,0.099256635,0.091983326,0.023508728,0.10989016,0.05599948,-0.12075411,-0.085076265,-0.049917176,-0.037826125,-0.1569724,0.0036779726,-0.039942935,0.016839905,-0.006816271,0.055134263,-0.030697053,-0.040011413,-0.0129306,-0.00042783984,0.023033481,0.016090443,0.057665132,-0.047395345,0.044735774,0.0453103,-0.072007805,-0.020699374,0.054351326,-2.2609969e-08,0.041915897,0.0025792157,-0.021140408,-0.022214701,0.09146508,-0.071663424,0.028323691,-0.0510226,-0.0061910646,0.021866564,0.011224375,0.004896017,0.0629221,0.04383945,0.013624142,0.05038314,0.0047209817,0.12306856,0.0061807125,-0.0024376903,0.11034286,-0.005816117,-0.029336654,0.005482812,0.005611725,0.008744326,-0.010017393,0.021774244,-0.061467484,-0.03430861,-0.018585483,-0.076572105,-0.06587877,-0.090745896,0.029851489,-0.008446313,-0.044825245,-0.011807424,-0.0022165163,-0.06063115,0.03948198,0.02042153,-0.037024047,0.06227875,-0.00509924,-0.061100744,-0.0008535982,0.0026710955,0.018301975,0.10304665,-0.04820588,-0.0059759044,-0.00092595426,0.010299578,0.0043050307,-0.03300137,0.0446615,0.041093215,-0.08115373,-0.03661499,0.015953882,0.08236508,0.009117188,-0.12983884} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:03.998693+00 2026-01-30 02:01:13.24926+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2378 google ChdDSUhNMG9nS0VJQ0FnSUNnOFlYWWl3RRAB 1 t 2381 Go Karts Mar Menor unknown Muy bien ! muy bien ! 5 2019-02-01 01:52:39.833374+00 de v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Muy bien !"} {-0.06349292,0.007509536,0.057766575,-0.059835866,0.038469438,0.0093965195,0.058611058,0.029168533,-0.0016579669,-0.018222064,0.06600652,-0.015661195,0.08678225,-0.038419,-0.008810925,0.0034592624,-0.0005932067,0.04661606,-0.06896481,0.021594806,-0.016265038,0.024012927,-0.015216365,0.07827192,-0.0827096,-0.022441769,-0.016648391,0.037052546,0.015493838,-0.08430107,0.026664587,0.08263119,0.0039094733,0.002765461,-0.0012888951,-0.037075546,0.04160265,-0.12990291,0.031642523,0.050317332,-0.10230101,0.03144534,-0.08387347,-0.026355993,0.01025974,0.0021297836,0.03503402,0.012740163,0.032115575,0.010625846,-0.035722114,0.032984015,0.028294513,-0.0017152487,0.021209396,0.04512659,-0.03471608,-0.07168088,-0.0020517209,0.019324876,-0.025524389,0.07746453,-0.04955712,0.0013323079,0.00091488304,-0.04193273,0.04489124,0.0038112514,-0.044054683,-0.012463523,0.073114716,-0.0291136,0.010739841,-0.051595926,-0.006153667,-0.014153676,0.0369365,-0.026418785,-0.012699998,-0.014529481,-0.014774612,-0.06265478,-0.0489722,-0.016234115,0.05454437,-0.033205602,-0.059942786,0.024335444,0.057514746,-0.030256787,-0.076769926,0.029984541,-0.015319555,0.03708439,-0.0046721324,0.02625577,0.017650928,-0.053922232,-0.08408887,0.13621774,0.011968804,0.075909674,0.11920657,-0.0040421393,-0.0038725317,0.022946095,0.020317093,0.025949964,-0.009439322,-0.038070343,0.027584469,-0.027403235,0.018710814,0.03008579,0.041501857,0.013356681,-0.006172784,0.01296109,-0.02346481,-0.063465096,0.088793345,0.018149268,-0.09886773,-0.044966027,-0.047807895,-0.031449463,0.051938143,-3.066256e-33,-0.017968733,0.039219618,0.028542992,0.08054205,-0.032625243,0.0030458206,-0.057960667,0.04005547,-0.13854955,-0.039479632,-0.024501719,-0.027463622,0.0041552903,0.04993879,-0.029776003,0.056961477,0.051504735,-0.12378323,0.12750131,0.012783121,-0.04841819,-0.088276386,0.0038335067,0.038602505,0.017762419,-0.019833839,0.022804456,-0.039592724,-0.07156907,0.042087074,-0.05168272,0.0070001422,0.029257674,-0.031204646,-0.061090354,-0.050075687,-0.033991214,0.06657624,0.0055799917,0.04647688,0.03827568,0.0027956597,-0.029914975,-0.048793945,-0.014784487,0.09585826,0.006724883,0.031165255,0.06535204,-0.068770975,-0.04299665,-0.042278923,-0.13603297,0.0585198,0.028913897,-0.0182684,-0.0012318443,-0.018109372,-0.06899386,-0.052376024,0.10149899,-0.03219817,-0.0033958135,-0.036836118,-0.08179267,-0.03836194,-0.045863073,0.090722665,0.071174115,0.036858834,-0.05417454,-0.013255897,0.0355724,-0.044703715,0.003143105,-0.011681216,-0.0388006,0.011404128,0.116013005,0.027553407,0.04078023,-0.0083748,0.032716442,0.033844307,0.027446784,0.054152176,0.048887115,0.0016086891,-0.03387511,0.052324187,-0.0741532,0.018614396,0.11273277,-0.028674612,-0.09590555,2.3333273e-33,0.079504706,0.029965954,-0.004636192,0.078497134,0.0035286862,0.0077736103,0.05055844,0.044010304,-0.0891267,-0.0250651,0.005775428,-0.12683602,0.091730565,-0.030700581,0.022744076,0.13863586,0.010421809,-0.0024475888,-0.035743058,0.0013093019,0.02707148,-0.024809314,0.0216434,-0.050340846,-0.07115527,0.01912952,-0.010070395,0.027801998,-0.07638727,0.048228763,-0.050357573,-0.049039654,-0.03687258,-0.029313851,0.025307965,0.033929992,0.030475998,0.03537021,-0.010957275,0.034076698,-0.055709578,0.10023337,0.0076505207,0.11979646,-0.0025297876,0.058566082,-0.006776619,-0.13919324,-0.080409534,0.0020754419,0.023547092,-0.019268082,-0.01601763,0.0058380906,-0.022715518,-0.009287909,-0.012007186,-0.034266938,-0.0959761,-0.07036196,-0.050490472,0.06450777,-0.07599519,0.00195656,0.12023443,-0.037429,-0.016486418,-0.003522945,0.03921684,-0.024327032,0.09409198,0.0025480469,-0.042847093,-0.028380727,-0.065045066,-0.035640992,-0.046709705,-0.019174445,0.024049759,0.12915275,-0.030204374,0.000111602356,-0.043015994,0.0077872276,-0.022320708,0.028656535,-0.00504687,-0.021880373,0.06295664,0.035310842,0.005371707,0.02529448,-0.018989755,-0.037751015,0.096659005,-1.5295248e-08,0.004319502,-0.053617675,-0.03580194,0.012965102,0.022638172,-0.07068227,-0.1171639,0.0508037,0.026258497,0.053307634,-0.056424625,0.016411807,-0.062432423,0.07044089,-0.018768795,0.1214489,0.013633332,0.10255002,0.016273828,-0.061148394,0.051428497,0.019184733,-0.007332868,0.039621882,-0.009780544,-0.008225498,-0.07797073,-0.0267354,-0.037560377,-0.00040100442,0.015960021,0.04810511,-0.058108304,-0.04626445,0.00026960537,-0.029880088,-0.04352486,-0.016540026,0.0047752215,0.04449242,0.050521143,-0.031328052,-0.012900208,-0.034553908,0.075548366,-0.085631534,0.028258631,0.04503222,0.05010511,-0.025084568,0.038658805,0.021550074,0.088951826,0.09152066,0.010394602,0.033277806,0.06703066,-0.021588422,0.005803979,-0.006054359,0.096652456,0.099268794,0.03537104,-0.12726001} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.011409+00 2026-01-30 02:01:13.254384+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2379 google ChZDSUhNMG9nS0VJQ0FnSUQ4di1POUR3EAE 1 t 2382 Go Karts Mar Menor unknown Fantástica pista de Kart para disfrutar fantástica pista de kart para disfrutar 5 2021-01-31 01:52:39.833374+00 ca v5.1 E1.03 {O1.05} V+ I3 CR-N {} {"E1.03": "Fantástica pista de Kart para disfrutar"} {-0.050340574,0.061991666,-0.05029861,-0.009341469,-0.1189631,0.0018602018,-0.01758449,0.073692255,0.0035181139,0.04846579,0.048792064,-0.013925469,-0.025414802,-0.020616328,-0.064470954,-0.06731138,-0.03414845,0.009473849,0.007882943,0.019036973,0.07666104,-0.06353586,-0.07285004,0.05413469,-0.10497863,0.047653466,0.041489784,-0.0018384043,0.028403945,-0.09574689,-0.010327359,0.043500997,-0.015951931,0.026156247,-0.026172014,0.01061721,0.018843347,-0.038685765,0.019322703,-0.00029734167,-0.036728136,-0.00018828327,-0.056108866,-0.035206687,0.08172876,0.009117309,-0.06917712,0.056428935,0.010661081,-0.019713607,-0.09435387,-0.034557197,0.012444333,0.054342076,0.012586563,-0.074000046,-0.001007413,-0.008939243,0.04179913,0.043495122,-0.015559747,0.0581277,-0.060787078,0.018345285,0.06447914,-0.023396697,-0.043997593,-0.02542225,-0.11662773,0.09279475,0.051525332,-0.08990547,0.0057070875,0.013171392,0.048023444,-0.013344697,-0.047946315,-0.021263547,-0.060744476,-0.020197611,0.13111244,-0.02669203,-0.02226204,-0.04892202,-0.038346086,-0.028123176,0.01666998,-0.06289976,0.029491723,-0.054735433,0.022494499,0.030484404,-0.09816901,-0.017668046,-0.010331071,0.023872117,-0.064579025,-0.07820328,0.00904956,0.077103384,0.069605134,-0.0008073305,-0.039225407,0.017653987,-0.11288241,-0.04581591,0.03868752,-0.027031064,0.04301015,0.06709299,-0.04418905,-0.012632272,-0.05614056,-0.0767889,-0.047846735,-0.013993095,0.016131295,-0.04925755,0.026514241,-0.10221387,0.06317423,0.009907025,0.01920801,0.07101281,0.03213565,-0.023855288,0.023752572,2.7331024e-33,-0.02056908,-0.055245195,-0.021927353,0.018166365,-0.014376874,-0.05411237,-0.026511967,-0.160463,-0.027649784,0.0024429243,-0.013820086,0.08219186,-0.023824863,-0.04442355,0.09836232,0.057194754,0.03211864,-0.04468972,0.034830227,-0.018581137,0.0077176886,0.035707597,0.034470953,0.010218175,0.03671758,0.03159057,0.056170754,-0.039587118,-0.090352446,0.029064652,-0.0059113954,-0.020653196,-0.012803035,0.05596284,0.0033667907,-0.1065544,-0.02442233,-0.014592855,-0.0039207074,-0.0024068735,0.019099467,-0.05656688,0.012768864,0.0264664,-0.010527491,0.05837037,0.06959864,0.012857113,0.003817318,0.0046669194,-0.044797342,-0.034245666,0.018563103,-0.0055896444,-0.025108416,0.006106608,-0.069642834,-0.011269079,0.04022612,-0.03725397,0.025875537,-0.032015342,0.0058981245,-0.01767208,0.0022727042,-0.12480483,-0.005565138,0.076472335,0.09275818,0.07263722,-0.07340766,-0.040745478,0.025232121,0.010376085,0.005127049,-0.00023656899,0.021663802,0.10226953,-0.14388362,0.065626234,-0.046246495,0.010301305,0.06025698,0.016559413,0.08342147,0.046077695,0.035827294,0.028417304,0.018211033,0.024062917,-0.061219636,0.075050004,0.05519951,0.0030069267,0.07407387,-3.6533766e-33,0.0340756,-0.0019485984,0.04319008,0.13465105,0.0011824211,-0.025310483,-0.056883737,-0.005767051,0.009345524,0.039428335,-0.052693173,-0.052115154,0.11503455,-0.0548776,0.003864365,0.0984716,0.013050126,-0.004678431,-0.09601724,0.0013762636,-0.09012372,0.070520975,-0.04026095,-0.030828893,-0.02885712,-0.030845664,0.049735118,0.037969314,-0.07256375,-0.039896388,0.036701288,-0.043835003,-0.04965582,0.056027554,-0.08784898,0.04577409,0.040520474,0.036971685,-0.030235304,0.058477443,-0.025734056,0.08669153,0.04416366,-0.049652502,-0.014451743,0.011442099,0.05626977,-0.0848673,0.0067737056,-0.06971157,0.096394494,0.06375593,0.018253218,0.01676193,0.05111311,-0.020569632,0.0039470475,-0.017290091,-0.059286684,0.020013334,0.084118426,-0.039141897,-0.015928278,-0.04186446,0.07154755,-0.02739536,-0.008270416,-0.005305931,-0.0003683289,0.07639416,0.040596873,-0.013268211,0.009656774,0.07116677,-0.0013734328,0.019110972,-0.04006916,0.11847374,0.028439688,0.08571092,0.034922376,-0.04246793,-0.039446317,-0.0255989,0.008208838,-0.052115664,-0.030166168,0.007425353,0.017956585,0.011749335,0.039705448,0.020493886,0.050212607,-0.02256766,0.025376871,-2.0109294e-08,-0.0038144581,-0.06180453,-0.111618824,0.016835814,0.0025733174,-0.079373136,0.018405832,-0.0068803425,-0.06623401,0.0019196164,-0.03526416,-0.035726707,0.013447778,0.017237853,0.012406484,0.047573164,0.0452889,0.16609877,0.016502092,-0.017695148,0.07923338,-0.04079852,-0.026563663,-0.020255225,-0.0792841,0.054764584,0.054389887,-0.0669744,0.010663794,-0.0147547005,-0.02383347,0.045904793,-0.0011441031,-0.08430294,-0.08166306,0.025070282,-0.02000575,0.057291422,0.03177668,0.08717066,0.08900394,0.0878597,-0.04264123,0.028355107,-0.09896018,-0.029487414,-0.012265739,-0.0115555255,-0.015313826,0.036878414,-0.037525486,0.026098095,0.07546366,0.04811373,0.0630385,-0.016390098,0.07061911,-0.01485624,-0.076638766,-0.004747758,0.12678428,0.07359339,-0.022055836,0.009867288} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.032147+00 2026-01-30 02:01:13.269402+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2331 google ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE 1 t 2334 Go Karts Mar Menor unknown Muy atentos y buen precio muy atentos y buen precio 5 2022-01-31 01:52:39.833374+00 es v5.1 P3.01 {} V+ I2 CR-N {} {"P3.01": "Muy atentos", "V1.01": "buen precio"} {-0.002215874,0.031835582,0.049760073,-0.002494862,-0.041302,0.0012536778,0.08513065,-0.038403448,-0.013933492,-0.004026068,0.0704789,-0.050752196,-0.03491814,-0.0069385455,-0.0049206815,0.07860967,-0.0050442605,0.026599249,-0.03638223,0.03525261,0.02752788,-0.026448386,-0.108835615,0.1526054,-0.0047426387,-0.096919656,0.007860101,0.029323926,0.015912432,-0.024402741,0.009257188,0.016808039,0.16992381,0.028183084,-0.012497925,-0.023637038,0.100206316,-0.040743794,-0.020766605,0.038603984,-0.0554183,-0.06917539,-0.043824777,0.00655535,0.03293201,-0.018879255,0.0805779,0.048910987,0.05479357,-0.051649433,-0.06868529,0.0024296145,-0.020719167,-0.011654303,0.020759111,0.038997058,-0.018068044,-0.01833338,0.039544344,-0.04366311,-0.06420017,-0.039753728,-0.06869088,-0.0010617982,0.049188614,0.021191176,-0.017780248,0.024196854,-0.0463965,0.03971964,0.12703681,-0.06690201,-0.009634795,0.068072006,-0.0512669,0.045026615,0.047221903,0.0014293762,-0.03616922,-0.0632656,0.014980957,-0.046322864,-0.07382422,-0.021892989,0.041143183,0.016672326,-0.061127055,0.0119291665,0.016053887,-0.03677432,-0.008341334,0.014309161,-0.05266337,0.04084008,-0.028139561,0.03478921,-0.007943846,-0.07839246,0.023777312,0.12336334,0.053756632,0.05963824,0.081716515,0.042248055,-0.028553745,-0.009575221,0.05281736,0.01853966,0.010170269,0.052579246,0.017924007,-0.05186096,-0.04315995,0.034366906,-0.04646174,-0.02504943,-0.017953863,0.007774892,0.002467608,-0.14090206,0.04491092,0.1114386,-0.03788781,0.009187337,-0.05294084,-0.04892443,-0.0014320073,3.688767e-33,-0.0416365,-0.12989518,-0.030725736,0.021293106,-0.06614845,0.0069595035,-0.027288374,-0.0054496536,-0.02598176,-0.0039807344,-0.01855534,0.02121281,0.004205962,0.018333029,0.0094778305,-0.046944138,0.06673889,-0.03946478,0.11207641,0.035289507,-0.11911875,-0.028322777,-0.04125551,0.027179401,0.0058771544,0.004009508,-0.065617025,-0.09645675,-0.0093108285,0.07582565,0.03627662,0.037692335,-0.012118434,-0.062693,-0.114661396,-0.047522586,0.00318434,0.01295915,-0.02096825,-0.06263347,-0.016307857,0.049529176,-0.004693753,-0.00900869,0.0024593784,-0.051277254,0.02419138,0.08281942,0.05207896,0.038979873,-0.03102086,-0.10146529,-0.07663259,0.019154327,0.028094133,-0.002055651,0.003492236,0.05199105,0.012441097,-0.036507726,0.021642905,0.062014762,0.025283562,-0.007669823,-0.07173244,-0.0003551378,0.050598115,0.04219496,0.099440254,0.022847699,-0.091468334,-0.024722664,-0.05679129,0.013058821,-0.05090861,0.008135786,-0.005149321,0.034053333,0.03388971,0.053761512,-0.048502687,0.023823878,0.065346114,0.040947292,0.06132184,0.10966959,0.07635631,0.005258737,0.004754145,0.058076974,-0.01925616,0.029470073,0.04736276,-0.012390229,-0.02848926,-2.9043483e-33,0.037543125,-0.029313212,0.009260618,0.055703387,-0.050440606,-0.020928577,-0.04486476,-0.054052908,-0.028261434,-0.013234802,-0.0025366158,-0.15131526,0.15820949,-0.026779354,0.049451772,0.068401925,0.06728383,-0.03818497,-0.06470222,-0.06230405,-0.0068383943,0.03888126,0.0118785575,0.02865056,-0.04074064,-0.07597313,0.0030697738,0.033811186,-0.05988603,0.014987388,-0.024376666,-0.029365046,-0.044828314,0.057931837,0.004440976,0.050327957,0.00081829994,0.05535764,0.0521596,0.006796036,-0.003757468,0.06436276,-0.051781308,0.028353319,-0.085948385,0.045848314,-0.008992183,-0.041587356,0.015800554,-0.03628969,0.025813123,-0.009705954,-0.000492693,-0.053754445,0.008201526,-0.06171177,-0.033543315,-0.057308152,-0.11688629,-0.057933792,0.08621057,-0.06438812,-0.06363089,-0.017962608,0.03655928,0.016207265,-0.083045624,0.07288513,-0.012242922,-0.011498356,0.07216268,-0.057058554,-0.066498466,0.031303752,-0.10385949,-0.012695512,-0.061473858,0.025261858,0.06492375,0.06359063,-0.042982604,0.035733797,-0.0222298,0.033155277,-0.05986227,-0.0060979007,-0.021411672,0.010773643,0.04854705,0.068382226,0.010765847,0.0679785,0.0141773345,-0.08896733,-0.004011148,-2.1641982e-08,0.0004304207,-0.11006673,0.07987526,0.052727625,-0.00044053936,-0.04293641,-0.052035734,0.04350193,0.031030301,0.040611435,-0.046737432,-0.006124425,-0.020056704,-0.02721331,-0.07178692,0.04835207,0.07266254,0.030936137,-0.02028309,-0.075239755,0.09016585,0.028374402,-0.0065465863,-0.016940903,0.014281434,-0.010763406,-0.06513665,0.05082675,-0.037505202,0.044234753,0.051162887,-0.026886228,-0.031309757,-0.0627188,0.026749453,-0.0053215055,-0.011098255,-0.025976397,-0.022447476,-0.05612486,0.02080634,-0.051281996,-0.01961056,-0.014250901,0.018591521,-0.049303953,-0.0034126511,0.07489994,-0.0011170218,-0.012582266,-0.021054352,-0.0019050912,0.10370774,0.107280284,0.049834695,-0.013680345,0.046598062,0.044108402,0.014042815,0.045986045,0.061339084,0.15182701,0.08050572,-0.07804491} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.046788+00 2026-01-30 02:01:13.017305+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2332 google ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB 1 t 2335 Go Karts Mar Menor unknown Excelentes precios y atención excelentes precios y atención 5 2025-01-30 01:52:39.833374+00 es v5.1 V1.01 {} V+ I3 CR-N {} {"P3.01": "atención", "V1.01": "Excelentes precios"} {0.055414632,-0.028625263,0.0182607,0.0023235078,-0.0617602,0.021007864,0.05327591,0.022653941,0.03315729,0.036799688,0.098806515,-0.060998414,-0.022049313,-0.009846972,-0.021750387,0.031479876,-0.057087045,0.027244717,-0.02139671,0.0318791,-0.015039127,-0.08736161,-0.049723413,0.08809646,0.0062957,-0.055293642,0.027505495,-0.030187745,-0.023857629,-0.011018872,-0.008895273,-0.04205783,0.15701838,0.02481673,-0.02963426,-0.022039589,0.13121666,0.013326589,0.016148493,0.022359593,-0.10460804,-0.08070546,-0.028412294,0.030983856,0.026575154,-0.03118429,0.037177764,0.08059918,-0.026508505,0.032955114,-0.039047737,-0.02004526,0.00011854974,-0.02284503,0.06191454,0.01521934,-0.00084856997,-0.010084184,0.04572395,0.040481955,-0.034553338,-0.009330191,-0.07413376,-0.0049759424,0.018616792,0.021108257,0.02133367,0.013164846,-0.10019293,0.07085252,0.096805856,-0.072438054,-0.02881645,0.055338446,-0.023917628,0.053537566,-0.086904794,-0.011932168,-0.07408951,-0.06792384,0.02107144,-0.025725067,-0.111833066,0.02445535,0.04828531,0.03251065,-0.017120572,-0.055821452,0.029138833,-0.019265989,0.0060694646,0.043677006,-0.064301625,5.2860516e-05,-0.054960985,0.0110294735,0.03711004,-0.0065332074,0.020915765,0.07681109,0.09280097,0.006747347,0.049344234,0.113742374,-0.08998608,-0.019341754,0.014252311,-0.004694871,0.011354069,0.036083784,-0.042012863,-0.059479307,-0.09361947,0.016993642,-0.07935586,-0.06465775,-0.016761536,0.0049399016,0.0029084806,-0.11507257,0.038701955,0.092752576,-0.03693294,-0.010428679,-0.022757037,-0.077856526,0.022318834,1.0123406e-33,-0.07079729,-0.030395428,-0.031509385,0.083122626,-0.07535495,0.016664933,-0.04517377,-0.0022916563,-0.014318988,-0.016562557,-0.067082465,0.01688653,0.03144802,0.010562214,0.04643914,0.017925434,-0.0023186537,-0.0036000565,0.04691557,0.06511257,-0.048167717,0.03809906,0.03959439,0.026718915,0.025436165,-0.035542477,-0.097954795,-0.052324336,-0.05094583,0.055445295,0.059837427,0.034962583,-0.011437319,-0.043195516,-0.049957436,-0.0025963981,0.04828842,-0.06271635,-0.00033313953,-0.017509734,0.0070142928,0.0068159793,0.07680679,-0.019252243,-0.030116353,0.036113203,0.043359205,0.047166515,0.029686889,0.03446262,-0.019140882,-0.07994658,-0.021091735,-0.055057533,0.025359146,0.06358557,-0.08283162,0.08790004,-0.025745904,-0.02743958,0.033606816,0.08323113,0.05541015,0.010044394,-0.06886583,0.008457113,0.042432804,-0.0004048388,0.12004088,0.033464096,-0.07580733,-0.027041014,-0.0034705005,0.03438483,-0.0749299,0.061291028,-0.07246509,0.015741473,-0.0032555263,0.029374765,-0.100373425,0.040851478,0.057748776,0.0042495597,0.08998799,0.07481392,0.077877305,0.0044231866,-0.015266041,0.11152106,0.0010515449,0.036458656,0.008050471,-0.055034675,-0.0049023777,-2.2520492e-33,-0.00032736757,0.021706492,0.012816747,0.01917959,-0.05053832,0.003165892,-0.008363713,-0.028608976,-0.012320341,-0.04169793,-0.015050063,-0.1234508,0.13811837,-0.06594,-0.0041473885,0.019543128,0.086047955,-0.023465138,-0.06299843,-0.056442663,-0.029169785,0.0061858594,0.0118589755,-0.03404192,-0.066816494,-0.06798783,0.07510014,-0.012633198,-0.11218107,-0.044793025,0.019092415,-0.0046781,-0.035622068,-0.021537036,0.028098518,0.09083447,-0.03659134,0.04131482,0.029820083,0.014518827,-0.007356177,0.03850968,0.00017922322,0.03534103,-0.008857359,0.018442692,-0.022976624,-0.010441183,-0.020014446,-0.045883793,0.039476085,0.0463057,-0.078713745,-0.010865605,0.07538133,-0.015468376,-0.06605222,-0.04149539,-0.028280014,-0.04428842,0.054641817,-0.008385342,-0.015489793,0.017046072,0.06490172,0.005183499,-0.11094674,0.06680912,0.034390826,-0.0036428445,0.13828461,-0.06803268,-0.084560394,0.020387093,-0.124919645,-0.006108575,-0.066192046,0.03519267,0.06444835,0.05687269,-0.036762834,0.01709155,-0.0010271085,-0.00016272809,-0.06233011,-0.0020085876,0.027573496,-0.04365002,0.049424354,0.0105370665,-0.008919849,0.0015413573,0.023890447,-0.07045272,-0.004403821,-2.0888185e-08,-0.0011715986,-0.05367173,0.04995383,0.021584399,-0.019774769,-0.092638634,-0.011163925,0.0373549,0.049044985,0.105040975,-0.049512718,-0.004792779,0.017498,-0.0402979,-0.014055757,0.013186295,0.044587612,0.044423044,-0.05247891,-0.005485113,0.04255458,0.00403868,-0.029070845,-0.022597026,0.03857873,-0.040298797,-0.028721197,-0.063029654,-0.0063201357,0.057778437,0.010988915,-0.03687801,0.027340455,-0.15063715,0.018755723,0.057786148,-0.027936965,-0.017596165,0.058244225,-0.05706767,0.038770076,-0.05198569,-0.018589998,0.041767888,0.038091984,-0.07536212,-0.056322444,0.08431959,-0.025715007,0.020058515,-0.058592763,0.057601184,0.08706837,0.026356105,0.042482816,-0.067704216,0.02588886,0.06393609,-0.032656845,0.026714131,0.0363631,0.08867155,0.12568441,-0.12611869} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.05985+00 2026-01-30 02:01:13.020287+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2333 google ChdDSUhNMG9nS0VJQ0FnSUNhOTk2cnFRRRAB 1 t 2336 Go Karts Mar Menor unknown Buen circuito y adrenalina a tope!! buen circuito y adrenalina a tope!! 5 2022-01-31 01:52:39.833374+00 es v5.1 O1.02 {V4.03} V+ I3 CR-N {} {"O1.02": "Buen circuito y adrenalina a tope!!"} {-0.06111489,0.0072241975,-0.017234707,-0.032278035,-0.01270783,0.05821763,0.05793252,0.12905727,-0.005110246,0.02150373,0.0155601585,-0.05137611,0.022421647,-0.036052313,-0.014850408,0.028875403,-0.11576133,0.09204837,0.07138036,-0.00044217127,0.05971906,-0.032966565,-0.04684236,0.08939714,-0.06417702,0.023180608,-0.01960863,0.043067604,-0.062003773,-0.09409255,0.0109997485,0.048557334,0.0360539,-0.017259331,-0.007584512,0.023423731,0.026949992,-0.08419455,0.0080806995,0.013119045,-0.08826843,-0.025257396,-0.05358055,-0.08192952,0.056641553,-0.016370468,0.016961176,0.058698043,0.0009825827,-0.09121093,0.021410896,-0.06781068,0.054602426,-0.039734274,-0.011009949,0.07570874,0.052325625,-0.050849035,0.02869746,0.056538716,-0.052364152,0.038302068,-0.058150653,0.051972713,0.051844276,-0.07073025,-0.004173841,0.07848036,-0.091009185,0.05723991,0.16603841,-0.08899251,0.03741381,-0.04602382,-0.012296507,0.049872093,-0.10198886,-0.013230946,0.019430572,-0.05539658,0.07029935,-0.042182654,-0.022370633,-0.016647719,0.0425719,-0.035203688,0.009591247,-0.057447948,-0.033731863,-0.017433736,-0.045364104,0.005353237,-0.10846968,-0.004392902,-0.024738368,-0.03353626,-0.016376177,-0.01107013,-0.05299782,0.053745862,0.026804525,0.036629636,0.054417197,0.0073502474,-0.038598157,-0.0012312994,0.090499714,0.021916032,0.043765917,-0.020030184,-0.07061857,-0.03736444,-0.0095773805,-0.02764341,-0.00290081,0.008755313,0.009286443,-0.018691147,-0.04276998,-0.106758684,0.058617163,0.010157441,-0.065806754,-0.03615226,0.040342223,-0.01327377,0.08297623,6.8495073e-34,0.012159506,-0.032421198,-0.018656395,0.022487426,0.028727291,0.07179758,-0.06339216,-0.03949071,0.010708882,0.051409904,-0.11434299,0.03529392,-0.020824816,0.059599232,0.072888896,-0.020641161,-0.0030844284,-0.032889184,0.06242518,-0.043827392,-0.039004173,-0.014495158,-0.0013986505,0.1081228,-0.06788128,0.006563064,0.004323676,-0.0947696,-0.06894241,0.04205896,0.03701447,0.036891196,0.015861463,-0.011361848,-0.06932384,-0.043231826,0.039434817,0.026136784,0.04671896,-0.011742088,0.048050098,0.019178558,0.018739183,0.011098624,-0.0074837147,0.041626167,0.03798553,0.030087497,0.060615532,0.03984578,-0.11144796,-0.073717214,0.02532301,-0.049248777,0.016435789,0.07459521,-0.019416748,0.080602914,0.041645337,-0.009648667,0.014241868,0.07611244,-0.0118116615,-0.04174261,-0.0465996,0.080473304,0.059610605,-0.08524764,0.026071282,0.021179302,-0.077056706,0.030914444,0.02858284,0.018518152,-0.012850041,-0.002854287,-0.035427947,-0.033395093,-0.016054608,-0.07766204,-0.0893798,-0.051195193,0.025330333,0.049483698,0.14987387,0.09145204,0.03613354,0.019901903,-0.04056753,0.15904693,-0.025816783,0.021779936,0.09983209,-0.010293863,0.040830437,-8.95637e-34,0.021854606,-0.01741405,0.015452735,0.006760596,0.02031806,0.0057929745,-0.08617805,-0.024496766,-0.085668154,-0.021028623,-0.036661386,-0.059650797,0.050813053,-0.030649988,-0.051510807,0.030569203,0.016298475,-0.032104857,-0.06956176,-0.042266008,0.0062588705,0.044462476,-0.03807005,0.019677876,-0.044418197,-0.012858506,-0.00025103096,0.054818563,0.023282442,0.011963105,-0.013163022,0.01769159,-0.013878306,0.041820537,-0.035829067,0.084389664,0.086712554,-0.06587658,-0.062069096,0.070451684,-0.071166985,0.064162485,-0.0091627315,0.029698722,-0.007010164,0.017410172,-0.06971735,-0.09059782,-0.103911236,-0.050784994,-0.016642602,-0.03476749,-0.0051987898,-0.045136224,0.0020321372,-0.034589536,-0.0005881845,-0.09176241,-0.09453829,-0.053340696,0.10422335,0.003560367,0.016558858,-0.0022764674,0.10077007,0.006903173,-0.0066669206,0.06631721,0.08478767,0.028464338,0.08899912,-0.0028323322,-0.031089453,0.052367307,-0.09328601,-0.048093732,-0.08644898,0.019549476,0.035771914,0.0071846363,-0.072662935,0.028891116,-0.0011999946,-0.042337917,-0.008465579,0.0036184476,0.055874612,-0.004714483,0.0050175213,0.021177804,0.00016862532,0.04858904,-0.0429715,0.01248565,0.003676826,-2.0462391e-08,-0.00078731653,-0.06805459,0.044224437,0.029935602,0.100399435,-0.13452098,0.024161072,-0.026634231,-0.048850816,-0.032343343,0.025621861,0.016815217,-0.02219851,0.03807177,0.007504336,0.0763588,0.038782798,0.12478466,-0.020242095,-0.058933914,0.050755676,0.026903458,-0.060187224,-0.043200757,0.048903063,0.015660224,-0.013309425,0.03632367,0.03269854,-0.037293646,0.012322365,0.0018021944,-0.021953382,-0.033572253,0.03781732,0.068966076,-0.019011468,0.0311006,-0.010827982,-0.06952829,0.02225026,-0.021667926,0.02109887,0.011532171,0.03543717,-0.04087781,-0.027567865,0.087095,0.05637979,0.029378552,-0.08513239,-0.0051670065,0.10249736,0.037494473,0.041817166,0.021635968,0.04103277,0.012431765,-0.07893325,-0.0043127607,0.052834097,0.044134304,-0.014787211,-0.006357387} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.071583+00 2026-01-30 02:01:13.03084+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2335 google ChZDSUhNMG9nS0VJQ0FnSURvcU1mR1BnEAE 1 t 2338 Go Karts Mar Menor unknown Muy bien pero poco tiempo muy bien pero poco tiempo 4 2020-02-01 01:52:39.833374+00 es v5.1 V3.01 {V4.03} V± I2 CR-N {} {"V3.01": "Muy bien pero poco tiempo"} {-0.026174253,0.004555909,-0.032500647,-0.0543217,-0.050166357,-0.04736721,0.09804269,0.02431797,0.012311145,0.012529248,0.097779565,-0.004404764,-0.016933553,-0.009869195,-0.02877966,0.07099677,0.039988343,0.04395366,0.040270127,0.06643607,-0.008458823,-0.07525076,-0.07592413,0.054680124,-0.11061858,-0.0137379095,0.012827926,0.079095535,-0.019933153,-0.05428755,-0.068219565,0.009183833,0.10375941,-0.039264556,0.030864248,-0.03288693,0.083833724,-0.08638087,-0.01394503,0.048729457,-0.06012586,-0.0018953545,-0.061594542,-0.027385062,0.037172336,-0.015322706,0.03742197,0.06857403,0.013776122,-0.04117883,-0.012832744,0.024981337,-0.06063637,-0.03245681,-0.025872724,0.04790257,-0.066557005,-0.0048676743,-0.0203131,0.0093043195,0.016280526,0.014100819,-0.07514905,0.029650183,0.05391997,-0.061344795,0.106848195,0.036079064,-0.06876644,0.0251725,0.071492955,-0.06079441,0.078711286,-0.021217864,-0.020529076,0.088661164,0.021426383,-0.012215415,-0.024519037,-0.04488318,-0.03273908,-0.017752556,-0.067143306,-0.03284048,-0.0052701305,-0.00066361733,0.006293309,-0.011306652,0.012550483,0.011105256,-0.021414798,0.055883426,-0.09217792,0.008771659,0.06451532,0.072278865,0.024479901,-0.006170826,-0.042503253,0.04430937,0.060447466,0.050582074,0.096970566,-0.03504807,0.08090463,0.07511676,-0.0061289957,-0.005419983,0.0517645,0.015659228,-0.05331377,0.0004994083,-0.0017384064,-0.012940948,-0.028402561,-0.013237209,-0.013000944,-0.006663049,-0.011932402,-0.026108515,0.036943246,0.01116156,-0.12521823,-0.019837398,-0.039592702,-0.087107,0.05603181,2.0548448e-33,-0.010691987,-0.018034825,0.029229343,0.019816589,-0.009981001,0.07129272,-0.08414694,-0.04173508,-0.06489395,0.024695419,-0.041819107,-0.07328332,-0.022702275,0.055341475,0.0065245647,0.036833264,0.0634201,-0.010602588,0.070601314,0.044734225,-0.06274679,-0.03228259,-0.017669646,-0.048891015,0.025005264,0.12889658,-0.0077781975,-0.09834392,-0.10501067,0.04576254,0.03148789,0.05844316,0.038889714,-0.031794477,-0.057534076,-0.07074311,0.023364922,0.04626504,-0.03189835,0.043452624,0.04348333,-0.019139314,-0.06388751,0.020235857,0.018122636,-0.07602159,0.025911484,0.08523821,0.015052523,-0.005237517,-0.027981058,-0.08239568,-0.14763473,0.002599292,0.009765641,-0.06682813,-0.052427914,0.032449514,-0.006333593,-0.03214888,0.06827978,0.036057867,-0.023461923,-0.034023512,0.011183815,-0.049341705,-0.008168291,0.0644973,0.08373479,0.032123413,-0.06033134,-0.007505808,-0.104603566,-0.020823605,-0.041482177,-0.04488965,0.015412255,0.025002467,0.1334153,-0.02099231,0.018167334,0.0076575154,0.072294794,0.028396714,0.034065325,0.105633534,0.040410254,0.05823411,-0.07365146,0.075405434,0.012809768,0.051579133,0.072200656,-0.02652249,-0.0045977947,-2.7696708e-33,0.03145174,-0.05577543,-0.0041004554,0.040029332,0.02894167,0.023607695,-0.074540816,-0.029644392,-0.057221584,-0.03585899,-0.012854355,-0.13901363,0.11296532,-0.008449719,0.03328393,0.105984405,0.009281997,-0.0107208695,-0.107646145,0.0017205026,0.002902322,-0.03620772,0.06352678,0.029534996,-0.03665501,-0.058188044,0.012557423,-0.020784372,-0.08235574,0.07227315,0.011744218,-0.039179064,-0.018586947,0.030477213,0.011564945,0.05271648,0.0044292663,0.062246908,0.0495682,0.057129193,-0.013298477,0.057063635,-0.032552622,-0.014753632,-0.027342625,0.050021373,-0.06304964,-0.12808977,-0.061406568,0.018209046,0.056771886,-0.011981976,-0.016377851,-0.0214909,0.017692173,0.023055296,-0.11597547,-0.096045285,-0.11979251,-0.015944347,-0.04358969,-0.01660411,-0.09666387,0.00039460062,0.10621218,0.04057888,-0.023840498,-0.0074045644,-0.04936618,0.024945773,0.06273897,0.03336596,-0.1059608,-0.0053411955,-0.04864322,-0.036635127,-0.06425905,0.038512226,0.05247324,0.13052154,-0.07308776,-0.009111879,-0.024033325,-0.013645518,-0.054934967,-0.0010496017,-0.010064458,0.03303363,0.031288464,0.039382692,0.056825247,0.049693815,-0.04585174,-0.054182284,0.02718958,-1.8595333e-08,0.041867033,-0.08212259,-0.050332338,0.04121699,0.05247711,0.027523644,-0.04821537,0.0094018765,0.026310494,0.122364454,0.028145298,-0.008826023,-0.023477806,0.053067762,-0.04309048,0.05784755,0.062392388,0.024463864,0.025147045,-0.019936677,0.0052312347,0.023820205,0.011838407,0.0070892973,0.030614803,-0.022590365,-0.044757623,-0.0042352243,-0.020338256,0.06869556,0.039545663,-0.02218366,-0.07664868,-0.09702559,-0.046101283,0.02188277,0.027020447,-0.037307665,-0.037193485,0.023097232,0.10683022,0.011021677,0.0011362623,-0.027906997,0.064496204,-0.037428964,0.020717777,-0.0059718364,-0.0346775,0.027052464,-0.0051323893,0.0082063,0.060621757,0.0036431286,-0.0064657303,0.015727019,0.07357504,0.018477997,-0.017990371,0.021411872,-0.015392575,0.08716562,0.031747486,-0.08211758} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.09351+00 2026-01-30 02:01:13.038973+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2336 google ChdDSUhNMG9nS0VJQ0FnSUR2aXBLRzZnRRAB 1 t 2339 Go Karts Mar Menor unknown El circuito está chulisímo el circuito está chulisímo 5 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "El circuito está chulisímo"} {-0.052952193,0.013088118,-0.017229276,-0.050249927,-0.07344358,0.007048697,0.08440284,0.0650057,0.035580598,0.021757701,0.06691318,-0.038419105,0.021370606,-0.038018696,-0.030507585,0.06796614,-0.041476566,0.022790413,0.024497353,-0.028822977,0.073666975,-0.06771023,-0.107750334,0.1093711,-0.07064808,0.04206356,0.002550181,-0.00026854328,-0.07215604,-0.11580241,-0.08552751,0.0979706,0.091095425,-0.00076535455,-0.004693648,0.036053568,0.020693602,-0.0533637,0.07037055,0.06395126,-0.079891935,-0.043902986,0.043835152,-0.036477193,0.04140342,-0.04286933,0.013959455,0.03035924,-0.004308232,-0.027599372,0.0037339707,-0.010533959,0.058825996,0.048347574,-0.054455705,0.01023568,0.008776919,0.0179525,0.09043586,0.051986054,0.009988727,0.0011572432,-0.018207166,0.056584124,-0.025113981,-0.07117956,0.07433805,-0.036717433,-0.09348091,0.07790897,0.11988491,-0.05034607,0.02229719,-0.024141463,-0.00045198368,0.018206466,0.011163577,0.0038141657,-0.0006168496,-0.04491306,0.028170988,-0.0058990708,-0.022040086,-0.029325383,0.020123204,0.06110811,-0.0062676608,-0.033938803,-0.0009442679,-0.061212923,-0.06952951,0.041565776,-0.0020428377,-0.04049299,-0.019065514,0.009510406,0.03231531,-0.09148212,-0.02702233,0.11307851,0.11130326,0.060588684,-0.00070705434,-0.022366434,-0.022247579,0.015639184,0.020155257,-0.014586928,-0.006853872,0.011287576,-0.042332396,0.02949559,-0.035057608,-0.0047331955,0.016008457,6.380982e-05,0.038008634,-0.01761727,-0.05069906,0.003006327,0.01976332,-0.050190352,-0.082952514,-0.0015570312,-0.0005967845,-0.08663826,0.053264476,2.5271575e-33,-0.018259881,-0.034980923,0.0020348802,-0.008848784,0.05209723,0.048668116,-0.05926905,-0.008904339,-0.053761914,-0.0005295185,-0.06139246,0.044505328,-0.0197716,0.02019982,0.072499916,0.025301391,-0.0312879,-0.08615219,0.086990416,-0.061399456,0.0014739726,-0.08300313,0.027719643,0.084603906,0.030634774,0.038703535,0.033668015,-0.070535935,-0.06338383,0.029473847,-0.029120915,0.09136218,0.070273116,0.012589017,-0.03812995,-0.042646307,0.06930756,0.008206276,-0.014586227,0.04145507,-0.0066498592,0.031745493,-0.055787213,-0.0077249017,0.041839194,-0.028816923,0.014815073,0.06461884,0.14528647,0.026007706,-0.13200971,-0.09510119,0.028954543,-0.0466833,0.06217099,0.020396594,-0.11516502,0.060812388,0.04081537,-0.047788065,0.043744117,0.045724005,-0.019826118,-0.007854797,-0.10097246,0.04785434,0.0067506903,-0.046544943,0.12354452,-0.04428955,-0.0870917,-0.023566281,-0.05527039,0.050029945,-0.031318944,-0.027047273,-0.05418048,-0.016147107,0.009322202,0.049792312,-0.052443817,-0.020000378,0.08441369,0.037864923,0.10205268,0.08848051,0.03672326,0.062791474,-0.0329969,0.081528746,-0.032249663,0.058886345,0.0907929,-0.026188662,0.06940975,-2.604813e-33,-0.042758808,-0.060042042,0.022139031,0.0325217,-0.004828511,-0.00857396,-0.051686876,-0.0052752504,-0.03921089,-0.010966791,-0.036141768,-0.03196727,0.027936433,-0.058629487,0.032606117,0.045691364,0.0042388225,-0.055675462,-0.06729777,0.011811993,-0.023880608,0.0067743007,-0.024537712,-0.016252317,-0.044232953,-0.00067595957,-0.044704773,0.043999057,-0.036605354,0.008601064,-0.0032134869,0.00027941432,-0.03809337,0.06983168,-0.05606409,0.008097764,0.027529083,0.08129397,-0.022891916,0.041147206,-0.0451237,0.06598647,0.046212126,0.008964767,-0.030542865,0.019131541,0.040789362,-0.108343005,-0.05492202,-0.053299617,-0.027650233,-0.071434565,-0.021882467,-0.015440311,0.05054671,-0.05762709,-0.056505047,-0.021340637,-0.07832408,-0.024975857,0.079842664,-0.01151339,-0.09377695,-0.007932265,0.10455743,0.076953955,-0.020619944,0.07833312,0.02690396,0.09343624,0.05582698,-0.032987334,-0.08467634,-0.050329704,-0.021507943,-0.048401106,-0.16287072,0.05608225,0.030475894,0.00498636,0.0022911818,-0.01860563,-0.07807959,-0.03427299,0.009617437,0.006316702,-0.018283086,0.028255258,0.050439958,0.015062358,0.0029318654,0.027192594,-0.02329233,-0.082066916,0.016800053,-1.9171985e-08,0.04466605,-0.0094929915,-0.04814425,-0.010717814,0.09885249,-0.05529346,-0.00040864933,-0.035562597,0.0111918915,-0.012214952,-0.0027755867,0.000452223,0.05674152,0.04289001,0.059202973,0.056738384,0.058360673,0.13934442,0.019574888,0.054673642,0.09563533,-0.016049668,-0.009888939,0.0152914375,0.037497886,0.030910844,-0.03164799,-0.0016870607,-0.032236755,-0.011243909,-0.06903126,0.019280348,-0.025722757,-0.10231004,0.0041214637,0.047914885,-0.024472486,0.0016603083,0.0063713514,-0.082975075,0.0650063,-0.046039876,-0.018290216,-0.021044679,0.0031123315,-0.034160398,-0.0014712306,-0.022301007,0.005119251,0.043751806,-0.080410354,-0.04833025,0.07188573,0.06297902,0.059558503,-0.014618895,0.10104367,-0.039560776,-0.025579046,-0.0053744963,-0.012107264,0.06463431,0.0001913421,-0.08422191} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.105631+00 2026-01-30 02:01:13.042292+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2337 google ChZDSUhNMG9nS0VJQ0FnSUNicUxHa1hBEAE 1 t 2340 Go Karts Mar Menor unknown Petarda naprawdę warto petarda naprawdę warto 5 2025-01-30 01:52:39.833374+00 pl v5.1 V4.01 {} V+ I3 CR-N {} {"V4.01": "Petarda naprawdę warto"} {0.008908606,0.12835248,-0.07661221,0.0010656833,-0.13197313,0.027919328,0.07444426,-0.003911657,0.035679597,0.047247604,0.019868538,-0.046342295,-0.073215425,0.041914694,-0.03674777,-0.0045718513,-0.045810163,0.12857604,0.007525349,0.029025316,-0.048603695,-0.015227595,0.05477687,0.05180885,-0.11419577,0.030726984,-0.0017553604,-0.008525926,-0.08274409,-0.08262067,-0.025214406,0.11648498,-0.031483,-0.008148776,0.05310861,-0.022536086,0.026317643,-0.04503181,0.023322206,0.0390901,-0.0371827,-0.08227229,-0.06335705,-0.063748926,-0.07325829,-0.030329924,-0.04291638,0.06110936,0.10851946,-0.033383135,-0.049062815,-0.049355444,-0.09557631,-0.021755679,-0.014716584,-0.0750409,0.030535655,0.0040603746,0.027477575,0.016440116,0.010406225,0.024511108,0.015108361,0.02321208,0.02057045,-0.10016014,-0.031154448,0.02745594,-0.11711617,0.010149982,0.06129448,-0.096793175,0.018178707,-0.010194934,-0.07771731,0.04146576,-0.018011974,0.025173323,0.05716985,-0.11947993,0.021563426,-0.022446752,-0.032480776,0.056709908,0.0178789,0.0031539805,0.019470634,0.0007962133,0.09339698,0.006155441,0.00020204086,0.020372692,-0.03718575,0.030101048,0.013640152,-0.04797183,0.0376467,-0.05395554,-0.0566852,0.08110608,0.03846331,-0.022815775,0.04365912,0.011439623,-0.024761235,-0.07052547,-0.0041825613,-0.05398421,-0.008260945,0.012714012,-0.13179442,-0.0061445963,-0.06897721,-0.06366837,0.016260032,0.017962495,-0.012002614,-0.10489904,-0.062296294,-0.043792177,0.021604268,-0.060798384,-0.027163355,0.013248426,0.01893704,-0.076959796,-0.0036036607,2.1880878e-33,0.05613516,-0.049463406,-0.021768898,0.036433667,0.040503,0.010049384,-0.042006068,-0.045213606,-0.048209388,-0.0027980797,-0.10395046,-0.0021599338,-0.013208013,-0.020273201,0.057723377,0.0260297,-0.019312069,0.03826448,0.011864137,0.021268738,-0.021432275,0.067866005,0.03677851,-0.012998513,-0.0026212716,0.011801934,-0.007985311,-0.10768745,-0.052470762,0.049948733,0.06139219,-0.06501679,0.0150766475,0.010346309,-0.006068018,-0.04731144,-0.025287757,-0.09843223,-0.030830491,0.05643783,0.072208494,-0.017860344,0.05280023,0.042224422,-0.00086723035,0.015413478,0.03247306,0.049011197,0.06485626,0.07699007,0.030080175,0.0017289598,-0.059313297,-0.006366623,-0.094449505,0.034427233,0.00038844583,0.01791082,0.0031207923,-0.012918404,0.015304276,0.041664373,0.06077162,-0.108363375,0.03464367,-0.058829956,-0.08126715,0.057856288,0.041633118,0.0054675727,0.0052243364,-0.06142563,0.07473745,0.068727046,0.007833566,0.034657326,0.086848415,0.041311786,-0.07195734,-0.02341722,-0.03217375,0.06655417,0.0448661,0.018858545,0.013980049,0.0535932,0.036789063,-0.0009600369,-0.04205559,0.038471773,0.010590323,0.039552297,0.06528728,-0.1205995,0.044010542,-3.8399283e-33,-0.0061527174,-0.020973034,-0.016298708,-0.0034975805,0.017867167,-0.034007963,-0.13732699,0.052484054,-0.045076303,0.0065324176,-0.026226396,-0.066043176,0.105300695,0.0024466796,-0.031668045,0.0355693,0.09159961,-0.065612905,-0.0007921679,-0.0768518,-0.08587191,-0.009998548,-0.03665181,-0.026082627,-0.030996433,0.0035953466,0.015129387,-0.057567745,-0.041692678,-0.050913278,0.12506025,-0.03126623,-0.07423346,0.038034216,0.024085144,0.05063151,0.0645743,0.00071818556,0.0039990395,0.03303199,-0.012255303,-0.02094272,-0.033060577,0.03625345,-0.0045809993,-0.049258806,-0.032334007,0.011106942,0.01795235,0.03466028,0.05189634,-0.0035864431,0.022275023,-0.06971839,0.06390602,0.028571427,-0.03615869,-0.08504544,-0.08866806,0.06632093,0.09453833,0.04143212,-0.02066965,0.0458998,-0.032545682,-0.03821248,-0.105451666,-0.0546586,0.055161085,0.038365632,0.07544077,0.054391835,-0.119646244,0.058157507,-0.022616593,0.017157229,0.039918512,0.046225253,0.032219935,-0.01991702,-0.07499723,-0.039606392,-0.032630716,-0.04115705,0.0043913065,-0.016468571,0.025550881,0.021872068,-0.0025176243,-0.036465853,0.06192557,-0.02306557,0.02593542,0.0015665698,-0.030558117,-1.917961e-08,0.015885314,-0.028359108,-0.01662288,0.06519259,0.088026114,-0.03412186,-4.0518065e-05,-0.051238935,-0.00975727,0.042293347,0.05364649,0.012856023,-0.018424151,0.030936766,-0.0010776885,0.09845539,0.11688543,0.028797701,-0.017396823,0.011430559,0.04576484,-0.016542615,-0.04231543,-0.09431886,-0.012122197,0.016476134,0.020374509,-0.008462826,-0.011320583,0.014044002,0.040968582,0.07332015,-0.077193305,-0.12858671,0.054760464,0.035386696,0.010876104,-0.011383374,-0.025620086,-0.004021533,0.0633079,0.09813788,0.077586286,0.024267087,0.018505061,0.0058062943,-0.009925705,-0.03508817,-0.0027771913,-0.05544374,-0.045922108,0.118435115,0.07250302,0.0048454423,0.011464548,0.050079133,0.07117045,0.058627646,0.011440937,0.0324621,0.0016568465,0.0005052356,0.047219284,0.08066787} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.118449+00 2026-01-30 02:01:13.045692+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2338 google ChdDSUhNMG9nS0VJQ0FnSUNhak1EbnVBRRAB 1 t 2341 Go Karts Mar Menor unknown Diversión si te gusta la velocidad. diversión si te gusta la velocidad. 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {O1.02} V+ I2 CR-N {} {"V4.03": "Diversión si te gusta la velocidad."} {0.01394706,0.011961247,0.063223734,-0.019471556,-0.012874822,0.012225217,0.0766834,0.015147694,0.057769153,0.012157613,0.064888634,-0.06493835,-0.030588916,0.017749274,0.017856209,-0.05128474,-0.042597033,0.07639661,0.00016992417,0.056082003,0.050038088,0.01791584,-0.095510945,0.121391565,-0.0717417,0.00812602,-0.030597918,0.031970605,0.009534801,-0.09103183,0.052635428,0.14878953,0.008035325,-0.07672958,-0.032172095,-0.012569013,-0.0247218,-0.051896688,0.0020408775,0.048195075,-0.0846839,0.010168065,-0.038429637,-0.08959436,0.001391902,0.028953595,0.0025937657,0.038201466,0.050554622,0.052286673,-0.030820386,0.010084264,-0.05585365,0.023953117,-0.04506189,0.0010700775,0.043321144,-0.0047416296,0.09325228,0.08485875,0.02486657,-0.043148916,-0.075532585,0.016240826,0.0050615016,-0.05804478,-0.021939194,-0.0016091039,-0.01609412,0.052093655,0.07567389,-0.055799443,0.03031236,0.030224683,0.009468484,-0.0057818093,0.06046245,0.028603602,0.030273864,-0.039374184,0.06453832,-0.037025288,-0.047537472,-0.0026560484,0.0088014,0.003275275,-0.08392871,-0.0051644947,0.05909927,0.0013983883,-0.07076765,-0.0133833615,-0.034363907,-0.05313488,0.07161911,0.0007560512,-0.012885613,-0.11171626,0.05902654,0.058176033,0.064156756,0.07174328,0.008852948,0.048022207,0.016546713,0.014858799,0.07723484,-0.023325091,-0.0036917638,-0.02544636,-0.012829142,0.05866663,0.05203073,-0.04825491,-0.16068007,0.021143343,0.019103136,-0.06483038,-0.018100845,-0.057002723,-0.022647358,0.025480362,-0.06840126,-0.02590244,0.042846847,-0.087759994,0.02029712,-6.9584747e-34,-0.02280458,-0.027274301,-0.048363224,0.04090832,0.07306884,0.020452773,-0.012316848,-0.061748635,-0.03211803,-0.074473955,0.01084774,-0.050312787,-0.0145316105,0.050024875,0.021461166,-0.0075053833,0.039492253,0.006543587,0.04284749,0.0009142935,-0.040991325,-0.0697275,-0.03390402,-0.006452532,-0.021284912,0.041507676,-0.045694683,-0.022505175,-0.055429764,0.05140788,-0.022819381,0.10089975,-0.022947373,-0.08141058,0.032143846,-0.043217037,0.0147151975,0.057159137,0.06852883,-0.038477413,0.039866686,0.09623481,-0.04320065,0.011587128,-0.02603543,-0.028177641,0.03793703,0.023153668,0.053982735,-0.01736397,0.021355553,-0.07082864,-0.020948503,-0.06571965,-0.04030165,-0.014414351,-0.07348394,0.05469534,0.030712614,0.0061070905,0.030319653,0.08161316,-0.013966094,-0.003606697,0.047966763,-0.0613069,-0.012165287,0.066210754,0.09259534,-0.062004056,-0.0533292,-0.0016863485,-0.025027797,0.0061462694,-0.089417465,-0.025670413,0.014211683,0.0052307937,0.012420253,-0.014481761,-0.002897387,0.0023798326,0.117397115,0.030978885,0.10875952,0.04400136,0.050691888,-0.08159371,-0.040736467,0.06245039,-0.036419116,0.010556565,0.06956531,-0.0379536,0.045937795,-7.0273132e-34,0.036917847,0.031412236,0.0058815177,0.025114067,0.0059269713,0.0261131,-0.029649414,-0.032177668,-0.01494248,-0.058465555,-0.14247537,-0.03741235,0.098006696,-0.045546778,0.0011087199,0.03259014,0.06578114,-0.037513882,-0.072298735,0.010185319,-0.07778023,-0.037489966,0.02794382,0.00472545,-0.015282035,-0.031539276,0.047416706,0.04068176,-0.12121103,-0.067260325,0.03926579,-0.08496765,-0.022759557,0.0419416,0.012164833,0.03700715,0.024445496,0.029023381,0.0016256185,0.018782657,-0.026736075,0.028260836,0.054395337,-0.04335506,-0.038633253,0.045756992,0.040846575,-0.13426201,-0.03577941,-0.012943429,0.12085501,-0.049764995,-0.04896643,-0.0134317065,0.05817095,-0.040377118,0.035998248,-0.07829343,-0.11534578,-0.005716696,0.08023887,0.08015201,-0.12581559,-0.08319525,0.07274325,0.03093666,-0.08455606,-0.029348519,0.026509907,0.04117114,0.068122365,0.01612776,-0.042072427,-0.0202365,-0.036914047,-0.026605425,-0.05418046,0.08795278,0.015442511,0.06340536,0.00014178602,-0.032728247,0.002369772,-0.01984634,-0.0018547856,-0.0052120965,-0.06536606,-0.054367106,-0.013560385,0.013022008,-0.0029101549,-0.03564709,0.01569738,0.0024282297,0.057242848,-1.8409011e-08,0.029085511,-0.07017879,-0.09593071,0.048306793,0.043661036,-0.040500548,-0.06274095,0.018849649,-0.043557644,0.015308736,-0.019511985,-0.010845682,0.04898133,0.05748316,-0.016580937,0.008679207,0.11495253,0.06435295,-0.02809673,0.02984487,0.071032576,0.0051230113,-0.022406138,0.0030718897,0.026916783,-0.013489647,0.006731065,0.001161204,0.037745014,-0.06677633,-0.015349961,-0.042396825,-0.07540222,-0.06503298,-0.0055501587,-0.012927857,0.00023386444,0.01047642,0.043486208,0.010334888,0.15270647,0.086372115,-0.0022364561,0.03270466,-0.075461514,-0.055901077,-0.012571565,0.0637069,0.011226555,0.060475484,-0.014566167,0.006755157,0.08486225,0.10657535,0.047318593,-0.05291738,-0.017268531,-0.0051375404,-0.027818495,-0.018618235,0.10248364,0.124562316,-0.023322536,-0.05629372} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.131851+00 2026-01-30 02:01:13.048875+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2339 google ChdDSUhNMG9nS0VJQ0FnSURBa2V6dzFnRRAB 1 t 2342 Go Karts Mar Menor unknown Buen lugar para cumpleaños. buen lugar para cumpleaños. 3 2019-02-01 01:52:39.833374+00 es v5.1 O4.04 {} V+ I2 CR-N {} {"O4.04": "Buen lugar para cumpleaños."} {-0.11939721,0.021475734,-0.027939515,-0.030118892,-0.09134584,0.031600792,0.034356188,0.05619265,0.016320903,0.008880435,0.059281886,-0.07684509,-0.08342235,-0.05280051,-0.0087138405,0.024865143,-0.022980882,0.09604472,-0.040438205,0.00653574,0.05315467,0.021972155,-0.03737118,0.09664078,-0.0009253879,-0.014418081,0.015607461,-0.015766773,0.03885965,0.0018162264,0.038000043,-0.009011389,0.05188526,-0.006278843,0.015248709,-0.04134919,0.04498633,-0.1010236,0.023410749,0.061939552,-0.050668698,-0.029087923,-0.035411783,-0.103327416,0.052600358,-0.029094001,0.03252742,0.08516345,0.049922626,-0.06708497,0.021064233,-0.034484684,-0.025917053,0.07695245,0.008338893,-0.069951676,-0.10111625,-0.07805884,-0.0072713764,0.0075958134,-0.06545482,0.043593574,-0.07751557,0.0025491507,-0.026640076,-0.009856652,-0.021833124,0.05814481,-0.043781195,0.14201796,0.10656219,-0.08162216,-0.059359737,0.08379827,-0.0053045335,0.014231659,0.06793808,-0.04306253,-0.0638461,-0.12626982,0.020470645,-0.006419758,-0.0476033,-0.03299924,-0.028195722,-0.04202607,-0.0003016907,0.033063762,-0.011132733,-0.019765742,0.012999723,-0.0072886483,-0.09039009,0.031644896,-0.03675717,0.014424391,0.02495163,-0.05468315,0.0374158,0.03208771,-0.025809474,0.027648007,0.074326456,-0.028670682,-0.086718075,-0.03633916,0.037669074,0.026991127,0.05484373,-0.011106517,-0.01681219,-0.09467585,-0.01236903,-0.016599866,-0.013823232,-0.021764906,-0.059179302,-0.077408925,-0.036781967,-0.043165546,0.010125534,0.0198572,-0.077170886,0.01174597,0.0352603,-0.09668392,0.082645305,-3.105352e-34,0.06752087,-0.09607387,-0.014543239,0.10077934,-0.005237506,0.07671682,-0.040910188,-0.05327991,-0.04045884,-0.030190373,-0.075874776,0.008659958,-0.07804607,0.009481541,0.05490647,0.0052347262,0.04270733,-0.027356114,0.054667566,0.055282064,-0.037746258,-0.02645067,-0.05821836,0.018781487,-0.008525082,-0.013603505,0.0052242037,-0.029245788,-0.023381662,0.06495287,0.07579882,0.010187634,-0.018419323,-0.015507338,-0.039894097,0.03089552,-0.00623721,-0.016465364,-0.033205964,-0.022846451,0.013639637,0.004571136,-0.03848889,0.032096405,-0.01620083,0.029281065,0.059849773,-0.014127547,0.098427854,-0.012379622,-0.037154414,0.0010804941,0.009335379,0.00031403644,0.039850086,0.0057841726,-0.10018338,0.02354866,0.01618824,-0.01495423,0.011282001,-0.015562729,-0.0128550865,0.009256491,0.040125787,-0.025123827,0.03333375,0.085812576,0.08153436,-0.0028532117,-0.07612413,-0.07316727,0.03111669,-0.020350011,0.0013356637,0.008445675,0.020680655,0.03007557,-0.039373524,0.0061772102,-0.11861173,-0.08798539,0.0019303698,0.03634331,0.08791126,0.11778494,-0.0030085691,-0.014711333,0.06706367,0.01948991,-0.08275116,0.032870714,0.07210856,-0.042101994,-0.032585993,-1.4088364e-34,0.084504925,-0.045865443,-0.045395717,0.17502642,-0.02469302,0.051509965,-0.057592828,-0.00249603,-0.120551154,0.035806004,0.0049958983,-0.113892995,0.11386907,-0.053802796,-0.013649402,0.0899377,0.05243795,0.013056919,-0.052522533,-0.048348956,-0.05376136,0.00063891243,0.0037038093,-0.035256173,-0.00740486,-0.00728589,-0.033482715,0.011847905,-0.06791342,-0.009883351,0.025473077,-0.027692456,-0.05887574,0.06560469,-0.008931871,0.075422935,0.07750549,0.08884999,-0.009112047,0.01524658,0.005344565,0.018317651,-0.030922014,0.042312875,-0.005982721,0.01610247,-0.0073956186,-0.026580209,0.013710541,-0.08043638,0.056952965,0.041969053,0.036399044,0.005722462,0.08299126,-0.08574022,-0.029123973,-0.060045756,-0.032174766,-0.03467208,0.0028940837,-0.007401776,0.009671494,-0.042361375,0.08871097,-0.008009218,-0.055637795,0.011040085,0.06288676,-0.023094313,0.105120815,-0.114026636,0.085044794,0.018702717,-0.07841314,-0.0016973824,-0.029017277,-0.0740682,-0.017219909,0.020994933,0.022177147,-0.1008406,0.018552259,0.03817084,-0.06513584,0.0021885196,0.017856361,0.021838369,-0.027078142,0.057141434,-0.010017765,0.080028124,0.06493391,0.029871928,0.012423652,-1.9031496e-08,0.00014008599,-0.03960701,-0.037657242,0.049787056,0.025262322,-0.04310552,-0.06509153,0.061533313,-0.021316716,0.032599974,-0.06656331,-0.045021053,0.007063621,0.05856681,0.031283043,0.063344546,0.04825909,0.056397613,-0.015113674,-0.018431991,0.030004485,-0.00886007,-0.04162008,-0.009537402,-0.0026557804,0.077496536,-0.019620495,0.046049487,0.10119539,-0.021239074,0.056236632,0.053025108,0.036190324,0.014495696,0.028735582,0.0062185964,-0.052299727,0.064465225,-0.04745059,0.026934732,0.033256803,0.025175078,0.097399786,0.0037352953,0.02908106,-0.064754374,0.05918398,0.111777626,-0.06121474,0.010987297,-0.05987544,-0.023317616,0.090737134,0.09289221,0.0076854248,-0.026084984,0.041882705,0.009168307,0.01557124,0.0098889,0.033281427,0.09055599,-0.035425726,0.025327614} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.142979+00 2026-01-30 02:01:13.051305+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2340 google ChZDSUhNMG9nS0VJQ0FnSURndG9xaWNBEAE 1 t 2343 Go Karts Mar Menor unknown Circuito grande y cuidado con un paisaje bonito circuito grande y cuidado con un paisaje bonito 3 2018-02-01 01:52:39.833374+00 es v5.1 E1.03 {O1.02} V+ I2 CR-N {} {"E1.03": "Circuito grande y cuidado con un paisaje bonito"} {0.0040827314,0.09953108,-0.01011158,-0.073277585,-0.15110365,0.06189308,0.04580652,0.043769326,0.034792405,0.095814,0.0425544,0.0045374674,-0.0090874955,-0.031241212,0.0090334555,0.004669127,-0.018239085,0.051009327,-0.039036736,0.023864971,0.080413155,-0.06159721,-0.041683454,0.06593037,-0.07819508,0.1020423,0.03310661,0.0027001246,-0.06922592,-0.11325002,-0.07117477,0.07020884,0.06126702,-0.022768479,-0.0543504,0.033840828,0.042769015,-0.01972429,0.011074089,0.014909175,-0.054980285,-0.06338563,0.01432261,-0.030683165,0.018700616,-0.052110936,-0.011983661,0.025955152,-3.0233641e-05,-0.09025781,-0.028242439,-0.03507455,-0.009771093,0.053674355,-0.021819606,0.0026610591,0.018021327,0.039290648,0.024572054,0.0408902,-0.033045627,0.015179258,0.00013043886,0.023069873,0.07046778,-0.07607433,-0.020669686,0.018075442,-0.06886525,0.047484033,0.10674569,-0.06478508,0.03658953,-0.0565458,0.006338685,0.03245662,-0.0518465,0.01078695,-0.03017777,-0.03253986,0.048823345,-0.013596882,-0.07056375,-0.024705008,0.019251863,-0.037795667,-0.021742653,-0.036186606,0.027777562,-0.031807758,-0.05873564,0.05851126,-0.04222469,-0.027197743,-0.03239799,-0.021422073,0.030207003,-0.0809764,0.054484922,0.06551475,0.14011264,0.075774476,0.06196687,-0.040937025,-0.0125204325,0.038793556,0.06410589,-0.003790529,0.055376638,-0.0077374405,-0.08290815,0.02170587,-0.10798191,-0.05365964,-0.03317167,-0.017562602,0.04874581,-0.03150973,0.00252971,-0.10628567,-0.0064517246,-0.0902471,-0.0646935,0.012463247,-0.016733957,0.019114014,0.031046303,3.765866e-33,-0.058077574,-0.03836665,0.013761619,0.044741992,0.01898211,0.06841588,-0.008234351,-0.03583971,-0.054119807,0.037957508,-0.041266505,0.10603852,-0.019626645,0.03197147,0.14967847,0.031835783,-0.085682884,-0.042714108,0.075356826,-0.003777508,-0.00085598597,-0.00416178,-0.031745974,0.085468866,0.02211248,0.04392593,-0.017772876,-0.057228144,-0.14196761,0.015048638,0.039644234,0.11457904,0.021150826,-0.03387372,-0.03891343,0.012526894,0.05292451,0.03289798,0.0647653,-0.019023465,-0.013621798,-0.07487003,0.007189732,0.038520258,0.011045332,0.0056448374,0.0005732997,0.008731617,0.06955102,0.02568422,-0.07881963,-0.07985649,-0.030966992,-0.031635273,0.027537603,0.026356418,-0.035429098,0.07501929,0.025876878,-0.028087256,0.0240381,0.0403081,-0.055774253,-0.010057078,-0.05736448,0.006639223,0.06427574,0.008672166,0.08884401,0.0074286675,-0.10527996,-0.01488443,-0.042576414,0.0068018143,0.0069007627,-0.026699971,-0.047350325,0.019489842,0.018040193,0.07632131,-0.034425963,-0.04386755,0.0058353515,0.035217714,0.07084358,0.051905494,0.060561735,0.008721555,-0.031611316,0.08914677,-0.0042774784,0.104623415,0.10273231,-0.00018727776,0.049913492,-6.488842e-33,0.012897497,-0.015365366,0.02102635,0.049812485,0.057370976,-0.03477905,-0.077565975,-0.033404473,-0.09394293,-0.0354275,0.0031941093,-0.13250479,0.09015987,-0.02734512,-0.06591226,-0.0007828307,0.009003569,-0.08119533,-0.10082874,0.010122849,0.015863614,0.034937266,-0.033701148,-0.029660977,-0.06908697,-0.06680315,-0.035800412,0.058320917,-0.086388394,0.017686658,0.033862725,0.028272975,-0.019418199,0.077655755,-0.0615492,0.022470519,0.052524008,1.7430195e-06,0.002545094,0.020647243,0.0010605218,0.02904174,-0.0007256539,0.028868545,-0.021950034,0.017561706,0.010950149,-0.11655626,-0.082335666,-0.008505038,0.0675327,-0.004888211,-0.052589826,-0.0228756,0.045159683,-0.0033745875,-0.051190343,-0.085832864,-0.047741614,-0.0072032865,0.06877248,-0.024247084,-0.08469625,0.019827038,0.079335056,0.05126071,-0.012006532,0.061136864,0.07020372,0.06827492,-0.020417271,0.020924667,-0.023027956,-0.010217201,-0.054022286,-0.04074606,-0.12903696,0.023947615,0.0023344003,0.0068751397,0.014828529,-0.0064225555,-0.014856855,-0.11194139,0.0007217108,0.020610524,-0.011988964,0.015439938,-0.024571693,-0.003738844,-0.027177515,0.03466837,-0.11083239,-0.05641563,-0.030281946,-2.6247255e-08,0.0063617453,0.019517593,-0.028033102,-0.042702395,0.07802445,-0.07061838,0.014327448,-0.029458018,-0.03348399,0.074717455,0.022872247,-0.02653452,0.020750245,0.045130674,0.0531589,0.0012956273,0.05257693,0.09658852,0.0062910304,-0.020204764,0.043712433,0.0113411695,-0.027801536,0.010937238,0.055268943,0.020707859,-0.022651274,-0.016169477,-0.017593158,-0.018873582,-0.01979068,0.025976177,-0.06402264,-0.03648087,-0.010666285,0.0093872575,-0.008003533,-0.04886607,-0.011457349,-0.10913376,0.039014988,-0.026650129,-0.08708644,0.006777644,0.027925268,-0.05535509,0.04135935,0.025573486,-0.016538935,0.06363105,-0.07647926,0.01592425,0.04025213,-0.024258679,0.053371917,0.007815158,0.066822216,0.07054345,-0.094816804,-0.014351817,0.09117751,0.08279837,0.027120791,-0.08821662} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.154124+00 2026-01-30 02:01:13.054106+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2342 google ChdDSUhNMG9nS0VJQ0FnSURLaG9TTjB3RRAB 1 t 2345 Go Karts Mar Menor unknown El mejor calidad precio de toda Murcia el mejor calidad precio de toda murcia 5 2022-01-31 01:52:39.833374+00 es v5.1 V2.04 {} V+ I3 CR-B {} {"V2.04": "El mejor calidad precio de toda Murcia"} {0.06795879,0.094112106,0.030968888,-0.0051254546,-0.069490634,-0.03729696,0.03657374,0.029057818,0.048705604,0.036891434,0.05012716,-0.15840085,-0.016150704,0.011340551,-0.018536095,0.007040278,0.04010329,0.046520945,-0.028796965,0.007826315,0.0914884,0.0045342334,-0.053274035,0.08586137,-0.06707127,-0.0026182828,-0.01368291,-0.0244809,-0.08033999,-0.007110538,-0.036920194,0.021970898,0.18592611,0.052807957,-0.04309267,0.10857724,0.036380164,-0.031672906,0.025678128,0.038667325,-0.0962625,-0.08172072,0.035433684,-0.008615634,-0.0072692377,-0.0074833413,0.06598938,0.041489832,-0.00093257584,0.021725891,-0.08294674,0.090643816,-0.029630892,-0.05632939,0.023547309,-0.0039083045,-0.034695305,0.03104807,0.092214644,0.016052518,0.0027186365,-0.021699209,-8.0914644e-05,0.024709564,0.058851726,-0.049604952,-0.043289807,-0.009755663,-0.094001494,0.018419204,0.095446676,-0.04489883,0.024430275,-0.051907595,-0.00540095,-0.010242171,-0.011373635,0.06912138,-0.03247324,-0.027193444,-0.02563818,-0.018403545,-0.12322634,-0.014747377,0.05907218,0.061136033,0.03827647,0.0020028767,0.05932694,-0.03030276,0.019784575,0.034668606,-0.035980716,-0.034172103,-0.045246836,0.044590075,-0.041414633,-0.08867483,0.054295298,0.053404503,0.014058672,0.0010188355,0.026911797,0.032542888,-0.03361204,-0.02290213,0.026018988,0.02482109,-0.018284347,0.03935772,0.016017418,-0.027233345,-0.063309394,0.021038655,-0.04023319,-0.0041328263,0.012135834,-0.0014202321,0.056953713,-0.00305167,0.03167236,0.00028554793,-0.038180884,-0.068134986,-0.05658116,-0.08188549,0.047013577,3.4110047e-33,-0.09285882,-0.054077376,-0.006184058,0.06159036,-0.027368871,-0.020665083,-0.011766802,0.031815056,0.023648247,-0.03787075,0.081880875,0.08686274,-0.008849506,0.01507474,0.03293812,0.0074266572,-0.005443864,-0.06818256,0.031354602,0.038999278,-0.01561627,-0.009786671,0.044036392,-0.039166518,0.0170482,0.08258858,-0.035243355,-0.04823772,-0.08777047,0.02947171,0.038224243,0.033255644,0.03821553,-0.021201683,-0.060733423,0.006562376,-0.032367263,0.0250248,-0.03180417,-0.0022172995,-0.091009125,0.026412766,0.0421494,-0.016825687,-0.03461161,0.028607512,0.06767823,0.046818078,0.09826682,0.06899894,0.008656636,-0.05450276,-0.06204912,-0.07940141,0.019625949,0.002639953,-0.04820298,0.037164416,-0.05006797,-0.08846733,0.0074842535,0.014090861,0.0039736168,0.008260238,-0.050968304,-0.005826264,0.0049295765,0.032744505,0.13960613,-0.010059741,-0.079385914,-0.0025955269,-0.030531038,0.042388797,-0.047562405,0.045097943,-0.06007977,-0.03187484,0.023879306,0.05254221,-0.045681346,0.072538435,0.08295371,-0.054994207,0.15761064,0.09828635,0.011209429,0.020340478,0.014041865,0.057347875,-0.04938052,0.015082988,-0.014990731,-0.0007673803,0.019641502,-4.8371475e-33,-0.0014879354,-0.0054309517,0.091253765,0.06330669,-0.012480071,-0.000612739,-0.013224838,-0.09328959,-0.06147335,0.0033539024,-0.05899601,-0.10352454,0.049215864,-0.002197212,0.011615836,0.098720774,0.124537125,-0.05922352,-0.10071741,-0.058463223,-0.04643177,0.07201709,-0.0032737595,0.0069454233,-0.09210829,-0.08471916,0.011112314,-0.056755677,-0.04096069,-0.090225324,-0.038266916,-0.02806343,-0.042277206,0.048506342,-0.045056082,-0.022836795,-0.019553205,0.05687013,-0.0060915602,0.06375094,0.02264497,0.007689639,-0.003534953,0.057903145,-0.06296013,0.002381546,0.06999816,-0.03805863,0.004564169,0.00059052545,0.06704111,-0.06850067,-0.06136734,-0.10294605,0.04697127,0.043408364,0.01769418,-0.043395717,-0.009035884,-0.058836788,0.084134825,-0.027420342,-0.027484301,0.0024087837,0.052040767,0.07976761,-0.056456245,-0.031499553,-0.03685222,0.04615025,0.10240525,-0.073424436,-0.10026682,-0.06694099,-0.046464227,0.018935347,-0.04436599,0.013413374,0.04227251,0.060518757,-0.04768831,0.023061449,-0.032880228,-0.0474684,0.0063605057,-0.036397845,-0.04159583,-0.11131352,0.036410626,0.07210196,-0.05786769,0.0664986,-0.036700193,-0.08525897,-0.02324821,-2.4435012e-08,-0.0080870995,-0.0971095,-0.05784801,0.008352507,-0.01406783,0.00461898,-0.03297464,0.024045883,-0.016825866,0.09864978,-0.00944092,-0.0012229586,-0.012830148,0.016677804,-0.01899942,0.014079214,0.06701411,0.055521153,-0.03149045,-0.026579356,0.08449219,-0.0030971111,-0.0023974085,0.0054361015,-0.00997683,-0.061374065,-0.042162143,0.055750303,-0.05648462,0.014758287,0.025189828,-0.009747337,-0.011270373,-0.08425591,-0.006584506,-0.031276245,-0.02633279,0.02799578,0.017331332,0.020224543,0.06628541,0.035790786,0.008608041,0.051208843,0.033126187,-0.017211286,-0.115789846,0.04111852,0.0028980067,0.042633016,-0.015026559,-0.0026994897,0.039962605,0.044361148,0.014778211,-0.020458141,0.11946065,-0.010421907,-0.052787855,0.021923486,0.06785872,0.026780542,0.030341519,-0.101193} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.178186+00 2026-01-30 02:01:13.064787+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2343 google ChdDSUhNMG9nS0VJQ0FnSURxbE9mX3NBRRAB 1 t 2346 Go Karts Mar Menor unknown Buenas instalaciones con calidad precio. buenas instalaciones con calidad precio. 5 2022-01-31 01:52:39.833374+00 es v5.1 V2.04 {E1.03} V+ I2 CR-N {} {"V2.04": "Buenas instalaciones con calidad precio."} {0.0648486,0.03514381,-0.011939576,-0.04076096,-0.10437374,0.0020766328,0.019323962,0.040956262,0.008606961,0.038548794,0.07506622,-0.059672184,-0.057054546,0.021363955,0.011943715,-0.042767838,-0.0059841042,-0.0039787083,0.009661121,0.009074521,0.02414238,-0.0521267,-0.07545056,0.07808304,-0.014491743,-0.025639318,-0.014582336,0.015060973,-0.015364741,-0.016196461,-0.01613346,0.026561089,0.18614072,0.0127963,-0.047581278,0.041044943,0.0418334,-0.045423217,-0.026969172,-0.015466682,-0.07406333,-0.102227256,-0.018597726,0.021471713,0.0014836601,-0.052188154,0.057574596,0.054207884,0.020741966,-0.046081495,-0.044271547,0.069872364,0.02231809,0.0008427594,0.010886165,0.05031719,0.044612817,0.044614233,0.017109701,0.02605171,0.0246435,-0.01345133,-0.088887006,0.0010961726,0.04028198,0.032345608,-0.01590826,-0.0044550146,0.0054015964,0.0012983226,0.103543185,-0.107379705,0.020838667,0.05173732,0.0016809509,0.0033077586,0.008595972,0.0952969,0.05541881,-0.075786404,0.04654134,0.0092285955,-0.10976564,0.005360383,0.044899195,0.043462757,0.008631519,-0.00084283546,0.07033932,-0.024759402,0.0036407148,0.08993022,-0.044469167,-0.043000348,-0.07430138,-0.018127907,-0.0037481925,-0.1184596,0.026515529,0.03139737,0.056955025,-0.012655159,0.058477744,0.010565629,-0.045376584,-0.0143676335,-0.015490041,0.036244404,0.01880925,0.07098287,-0.015714398,-0.06080645,-0.021882532,0.0063479315,-0.07242987,0.057882037,-0.0039117765,-0.011799529,0.095861696,-0.057701923,0.01360404,0.013717565,-0.0024644497,-0.08548825,0.0070571327,-0.06901891,-0.020654354,4.232514e-34,-0.079785615,0.028109407,-0.030834664,0.095912084,-0.035029523,-0.0047970675,-0.01408992,0.0065731974,0.013188935,0.0026242172,-0.014186763,0.09501402,-0.0353993,0.027824443,0.1444525,0.038542435,0.0054123546,0.030025186,0.058393843,0.050994493,-0.022034893,-0.030648347,0.0009397556,-0.026226992,0.051606104,0.064141236,-0.011893718,0.018759996,-0.03526352,0.02800238,0.07101561,0.03659906,0.02965401,-0.03247018,-0.043037407,0.017668465,0.032494064,-0.0127749415,3.7771468e-05,0.03764798,-0.024991434,0.043028053,0.07570884,-0.016184065,0.020544386,0.018152012,0.034617428,0.061995994,0.13612595,0.029264146,-0.0535088,-0.07263677,-0.04763179,0.007204652,-0.008485511,0.03410611,-0.04631019,-0.0058956644,0.025295747,-0.08126719,-0.02647309,-0.011501113,0.0050380733,0.018551446,-0.0677982,-0.09253043,0.027055232,0.050745927,0.14076379,-0.011284986,-0.14010401,-0.065170534,0.01905669,-0.029189248,-0.093694635,0.045519933,-0.08519312,0.0051663076,0.0136382375,0.06786282,-0.051153235,0.028862692,0.04073419,-0.00071764854,0.14881088,0.12928274,0.0038774267,0.05842958,-0.01816481,0.027337478,-0.02329133,0.05180105,0.02422045,0.03742883,0.019273018,-2.7514848e-33,0.01746784,-0.03047013,0.047105514,0.031198032,0.01576245,0.04731697,-0.009566725,-0.086395435,-0.04585855,-0.06688989,-0.06408997,-0.09679352,0.101070695,-0.010145865,-0.027537927,0.112894386,0.02857712,-0.07059989,-0.05789612,-0.018344635,-0.0075512063,0.038891908,-0.0034594776,0.043751527,-0.039769854,-0.1489782,0.0301332,-0.0069142687,-0.035848755,-0.04207123,-0.009442059,0.019254098,-0.10005596,0.07737848,-0.03686441,-0.030335477,0.065216124,0.041393906,0.049064454,0.083021946,0.025399458,0.013999222,-0.04835999,0.03016382,-0.03050283,-0.016526444,0.048800543,-0.09500945,-0.020250883,-0.005355731,0.05971319,-0.07934896,-0.10797725,-0.043481216,-0.028023662,-0.014389168,0.050294094,-0.0025589962,-0.060160585,-0.021719681,0.06392385,-0.010800359,0.015656529,-0.04021374,0.01863474,0.011001044,-0.05581776,0.018787593,-0.010387867,-0.0035425099,0.06986542,-0.06652446,-0.025433347,-0.021336932,-0.08655295,0.015817,-0.049201984,-0.002616551,0.067234956,0.011875351,-0.061545573,-0.0039048563,0.021762302,-0.0231286,-0.03870989,-0.03457217,-0.023060331,-0.09917585,-0.00054418156,0.038372304,-0.1046741,0.069008745,-0.004260306,-0.057308197,-0.015290165,-2.3079263e-08,-0.012959345,-0.0770561,-0.033033654,0.040989537,0.019187793,-0.022215864,-0.079025246,0.08523746,0.010131266,0.007162929,-0.052500304,-0.0035534126,-0.06743812,0.053895883,-0.05570045,0.02020835,0.010667585,0.13389204,-0.07796258,-0.057468187,0.04430749,0.013742109,0.0059662983,0.0074839974,-0.012388983,-0.04257193,-0.074702874,0.03529548,-0.041537903,0.02878161,0.009451972,-0.0070526735,-0.0018224712,-0.052906148,0.058637284,0.040725745,-0.012710095,0.011460965,0.04544002,-0.076733634,0.04060153,-0.025051063,-0.052310716,-0.00014237546,0.043792155,-0.07927679,-0.09471809,0.02349434,0.010247043,0.04183347,0.041471984,0.032277398,-0.023425864,0.025529891,0.04021937,-0.020881837,0.04966136,0.008195323,-0.025291584,0.04933689,0.028808227,-0.00879135,0.101122245,-0.1255865} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.190124+00 2026-01-30 02:01:13.074234+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2344 google ChdDSUhNMG9nS0VJQ0FnSURBbnFmVnRnRRAB 1 t 2347 Go Karts Mar Menor unknown Tienen motos y karts. Lo recomiendo tienen motos y karts. lo recomiendo 4 2017-02-01 01:52:39.833374+00 es v5.1 O3.02 {V4.03} V+ I2 CR-N {} {"O3.02": "Tienen motos y karts. Lo recomiendo"} {-0.07607205,-0.0057729012,-0.011344122,-0.031017013,-0.071796,-0.04274461,0.09851911,0.0050827395,0.016091533,0.0151905,0.09115928,0.03478916,-0.08758769,0.0074587436,-0.0068141357,0.052675024,-0.03339478,0.07399027,0.015601264,0.0026099363,0.06381665,-0.07496225,-0.025749972,0.08670646,-0.03249655,-0.05712748,0.052542817,0.060900502,0.0028906178,-0.067142405,-0.06414998,0.09895705,0.024555547,0.015435951,0.008926219,-0.018594943,0.08056907,-0.076487325,-0.041059267,0.06608083,-0.08013459,-0.0019235663,-0.015246902,-0.053658683,0.08839444,-0.02716242,-0.076437086,0.055501323,-0.003206391,-0.029348832,-0.0018199519,-0.09672746,-0.017996082,0.008024906,0.027223455,0.0086454395,-0.035387695,0.057280757,0.05952418,0.041848157,0.046051335,0.039598465,-0.13240238,0.0677869,-0.04934116,-0.068433896,0.058754895,0.045156606,-0.14154287,0.121693306,0.14138697,-0.052649178,0.096567124,0.04939002,-0.041518938,0.046616096,0.012943758,-0.04417804,-0.08535057,0.0008375135,0.021737795,0.023208506,-0.018949894,-0.058977924,-0.0011070835,-0.0072866385,-0.044678975,0.04569222,0.0111808935,-0.008288547,-0.022378938,0.054804903,-0.0565241,-0.00269344,0.004081622,0.057485282,0.05450895,-0.029064124,0.0032692691,0.042280238,0.110534064,0.023767503,0.076983355,0.01728693,-0.017676862,0.07095222,0.008924102,-0.022111598,0.048335,0.030782165,-0.040427044,0.0056977607,-0.00023837795,0.004377682,-0.12194343,-0.061872866,-0.03389092,0.02904544,0.0030806458,-0.037089013,0.030066548,0.06671873,-0.06626485,-0.049061418,-0.006465411,-0.035872385,0.018145835,1.6112788e-33,-0.074603565,-0.0015127263,-0.022400917,0.04057628,0.06093502,-0.034785435,-0.06927583,-0.09514354,-0.10313328,-0.009557097,-0.08202591,0.0206779,-0.03715595,-0.051623072,0.08475064,0.045086898,0.019024648,0.008523399,0.046579976,0.050954532,-0.068754636,-0.026915062,0.0005848135,0.0063100704,-0.02186715,0.0033244074,0.032435525,-0.09294445,-0.067371674,0.046905555,0.028173102,0.06524552,0.036482867,-0.009318218,-0.0713426,-0.03511757,0.06643123,-0.019328715,-0.036946815,-0.021395285,0.031807147,-0.03775945,-0.10306785,0.034280937,-0.04389958,-0.024917116,0.06576094,0.04463549,0.07057612,0.037010543,-0.06284593,-0.07398546,-0.062226098,-0.037178297,0.023394607,0.0059056897,-0.046229366,0.017592449,-0.037398253,-0.02771749,0.008921085,0.002348886,0.038708918,-0.06278803,-0.061266236,-0.021855867,0.022779329,-0.014525161,0.039206736,0.033174057,-0.07290719,-0.032797012,-0.010535967,-0.01772462,0.076673985,-0.042479962,0.0025036247,0.05411334,0.005271324,0.025115052,-0.021626884,-0.023829957,0.027673619,0.061910227,0.09567838,0.075939745,0.022996087,0.006435918,0.021960793,0.120271675,-0.042570263,-0.017989967,0.017645853,-0.046477657,0.022221237,-9.525588e-34,0.037876867,0.0051410287,0.102219164,0.08123258,-0.016556019,-0.012384765,-0.04535947,-0.029118937,0.0074143647,-0.1096593,-0.050646782,-0.09420189,0.07981902,-0.0046314695,-0.036442056,0.034094244,0.01469294,-0.016224524,-0.08331126,-0.06663976,0.017725175,-0.021442043,0.05785227,0.033246066,0.009989473,-0.03326597,0.02613184,0.070462465,-0.047540303,-0.00031695195,0.045211297,-0.14304988,-0.02736165,0.012524537,0.028220924,0.07699047,0.06340776,0.107903175,-0.017621608,0.04982704,0.002005121,0.039588038,-0.08282904,0.016533028,-0.038028892,0.000368344,-0.052747104,-0.044019297,0.0128722545,-0.104901835,0.056355104,0.052949052,-0.043207426,-0.02893596,0.019463059,0.018582217,-0.039401,-0.03368931,-0.09740802,0.02192044,-0.0022197538,0.010507932,-0.051335275,0.013671625,0.1256307,0.03458956,-0.011125115,-0.014582019,0.03168081,0.018741572,0.028267233,0.03773027,-0.05412496,0.008959408,-0.05930592,-0.09744663,-0.0976761,0.024145685,0.061701022,0.060357466,-0.0030730073,-0.002657105,-0.0051651215,0.0612984,0.011376799,0.019464765,0.022932649,0.045583643,0.031560756,-0.004952637,0.11179743,0.08042348,-0.010406045,0.03593442,-0.018423013,-1.816231e-08,0.001954537,-0.024370236,-0.0920475,0.029404275,0.065409206,0.010647563,-0.00536834,0.024870515,0.025947005,0.082192905,0.010844097,0.053299416,0.021900566,0.08280315,-0.03176408,0.02627681,0.006773541,0.09260722,0.023571758,-0.007061089,0.081831634,0.005140037,-0.06377529,0.06362073,-0.012084414,-0.0123209255,-0.0312609,0.0645419,0.049273454,-0.0057849996,-0.057512447,-0.016573226,-0.05573029,-0.011355741,-0.045181293,-0.03426117,-0.06008884,0.03623997,-0.025390832,-0.021299494,0.08407067,0.0037824677,0.006515098,0.004772986,-0.07166455,-0.08014919,-0.0059588696,0.033572633,-0.013846502,0.011316148,-0.063894734,-0.037625585,0.05700338,0.019201914,0.035905078,-0.045724392,0.082426526,0.00633224,-0.06627488,0.006007913,-0.009113165,0.03164251,0.04695503,-0.055004653} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.203862+00 2026-01-30 02:01:13.077161+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2345 google ChdDSUhNMG9nS0VJQ0FnSUMwbDdtaC1nRRAB 1 t 2348 Go Karts Mar Menor unknown Muy bueno para correr con karts muy bueno para correr con karts 5 2020-02-01 01:52:39.833374+00 es v5.1 O4.04 {} V+ I2 CR-N {} {"O4.04": "Muy bueno para correr con karts"} {-0.0500999,-0.0121664675,-0.029199775,0.0070261746,-0.08001514,0.0038074653,0.02946121,0.033735313,0.027671779,-0.033084266,0.082644165,-0.062092543,-0.06509214,0.013251554,0.030437594,0.005888843,-0.038537424,0.072029166,-0.0031515246,-0.06828534,-0.004193776,-0.024736375,-0.043121595,0.08008846,-0.06116702,-0.0156139955,0.05237595,0.04345493,0.049296208,-0.026641415,-0.030611767,0.04766725,-0.04876804,0.028986104,-0.003690036,-0.058080748,0.02745013,-0.13877398,0.03854861,0.033511445,-0.038283158,-0.055789955,-0.086757466,-0.026749188,0.008579172,-0.013517627,-0.017644618,0.09529981,0.0072053303,-0.034717742,-0.028217314,-0.06724464,-0.029256493,-0.06404054,0.011989013,-0.0028075273,-0.088320754,0.063909255,0.12019074,0.009336575,0.009395778,0.021309754,-0.025591565,0.022745965,-0.040993467,-0.039923698,-0.016801767,0.07818418,-0.06436553,0.07652725,0.07822218,-0.12472649,-0.026142431,0.014485663,-0.021761207,-0.013902109,0.027815515,-0.017358556,-0.03175441,-0.05745637,0.04702046,0.004586463,-0.021735564,-0.06053092,0.0061583784,-0.047720335,0.048395526,0.02850476,0.038665123,-0.014557365,0.0023877532,-0.032184005,-0.054830316,-0.022504997,-0.012133177,0.040538024,0.027640557,-0.022187382,0.025410041,0.048157007,0.06327672,0.0033240707,0.11770378,0.013175448,-0.06247691,0.005373248,0.030572267,0.009183073,0.083832726,0.06664622,-0.061626375,0.013892908,-0.037901346,-0.04893776,-0.022448847,0.023144267,-0.009323549,0.021843847,0.014601564,-0.05082,0.034239706,-0.015890768,-0.060652476,-0.011345954,0.03165674,-0.031889345,0.08570909,3.6733493e-33,-0.08665499,-0.03714559,-0.016271511,0.055631917,-0.01011411,-0.016199743,-0.059841488,-0.022629708,-0.07956099,-0.012414373,-0.025885992,0.04549477,-0.039945193,0.01117041,0.11128914,0.0027265754,-0.004807679,-0.032155912,0.04671451,0.032608163,-0.028332401,-0.04192687,-0.011405536,0.040280014,-0.05881568,-0.018319843,-0.0021873652,-0.080374226,-0.06552013,0.04463324,0.042260535,0.014796828,-0.01143947,-0.0005799873,-0.18397349,-0.06381088,-0.044005424,-0.010186682,-0.0626551,-0.0459938,-0.006806255,-0.014800124,-0.0148679465,0.038808182,-0.012476355,0.005671832,0.07024326,0.011440937,0.015595949,0.057969335,-0.09249961,-0.051568482,-0.09020256,-0.007458483,0.05978649,0.011231912,0.009719474,0.039460853,-0.03896644,-0.07934767,0.08255278,-0.005537353,0.03458572,-0.06497853,0.01173665,-0.03320825,-0.016805189,-0.0054123686,0.079801075,0.004810302,-0.049064364,-0.01103953,-0.046314847,-0.0076918085,-0.0017718987,0.036573105,0.0134026045,0.06475473,-0.043823704,0.01955521,-0.10549251,-0.01792451,0.051663928,0.10667647,0.02870997,0.045045186,-0.004122165,0.019864036,0.058715533,0.04424799,-0.07819447,0.030289743,0.043319695,-0.018690962,0.028073525,-2.1532573e-33,0.05724616,0.015675453,0.05716175,0.16052338,-0.012784408,-0.019927844,0.009007051,-0.00091994874,0.04559075,0.008691034,-0.03911814,-0.099279694,0.09849724,-0.055470306,0.040106036,0.112022884,0.060211748,0.046195213,-0.07110182,-0.0709485,-0.02387218,0.027468143,0.03766976,-0.03745695,-0.07430011,0.01623047,0.0060160686,-0.06415377,-0.10653947,0.017149607,0.026419533,-0.076364174,-0.024936013,0.101566836,-0.004263924,-0.03230991,0.10147821,0.07666734,-0.028875727,0.011619026,0.027067734,0.07853176,-0.036823474,0.04257278,-0.025793368,-0.018632414,0.0733045,-0.106294,0.077740304,-0.055403467,0.069113664,0.06714114,-0.011382539,-0.07686345,-0.025921488,0.0036964566,0.009716547,-0.062274605,-0.07346124,-0.030247074,0.05700692,0.018697768,-0.036997717,-0.005266872,0.073860526,-0.0050176834,-0.10462557,0.047328774,0.027590912,-0.020042298,0.035806302,-0.042423755,0.012842337,0.060028702,-0.056418084,-0.05235618,-0.0033098492,0.040019248,0.04058649,0.056509245,-0.01986032,-0.062395327,-0.05439124,0.03139882,-0.036375206,0.04545361,-0.067188434,-0.01267946,0.114529185,0.036693633,0.038735695,0.10780549,0.07032047,0.06221198,-0.008410774,-1.8079037e-08,0.0084904805,-0.044514053,-0.07867133,0.056202605,0.010370614,-0.029693082,-0.022084128,-0.013562751,-0.030399207,0.13344224,-0.05986183,-0.02876311,-0.028786186,0.10518864,-0.0075283907,0.08725758,0.0056319227,0.07275951,0.017067298,-0.04216573,0.080504455,-0.010879978,0.0038851455,0.11465827,-0.01499311,-0.0144940475,-0.01439729,0.09026448,0.08272299,0.019128786,-0.013869042,0.027132327,-0.04346838,0.004697218,-0.061084703,-0.014543843,-0.029429829,0.070366584,-0.03876498,0.11434867,0.023959633,-0.019000217,0.0053457944,0.0029035383,0.035812907,0.024826584,0.005280112,-0.0029375267,0.005636712,0.011684146,-0.09629274,-0.024844704,0.0605896,0.08882313,-0.015981697,-0.011062961,0.03797712,-0.015745964,0.029722136,-0.06431351,0.0026879269,0.07349386,-0.005015977,-0.041183032} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.215962+00 2026-01-30 02:01:13.080143+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2346 google ChZDSUhNMG9nS0VJQ0FnSUNSOXV2R1VBEAE 1 t 2349 Go Karts Mar Menor unknown Excelente trato excelente trato 5 2024-01-31 01:52:39.833374+00 ro v5.1 P1.02 {} V+ I3 CR-N {} {"P1.02": "Excelente trato"} {-0.00880592,0.048948016,-0.03608474,-0.015772216,-0.1030496,0.025736263,0.07459132,0.07785678,-0.013930654,0.01756546,0.10806913,-0.018230803,-0.07571874,-0.026017752,-0.02856778,0.00947997,0.03420731,0.056773484,-0.062020667,0.015519136,0.026527142,-0.0666761,-0.06488014,0.06342227,0.0015342318,-0.0032454568,-0.01573609,0.048721865,0.020677535,-0.09265353,-0.08075612,0.052157585,0.075495295,-0.0073493393,-0.017688125,-0.06312722,-0.0031092544,-0.05262237,0.068173595,0.05445299,-0.03707275,-0.061323658,0.0006005435,-0.043272093,-0.013418063,-0.08336091,0.012663479,0.1393423,0.001873553,0.042423528,-0.08937711,0.0002286333,0.019138083,0.06028631,-0.028071456,0.036253713,0.031862963,0.017841687,0.033045758,0.0037302535,-0.024746887,0.026274888,-0.035013106,0.049173426,0.03859874,-0.00788212,-0.06497939,-0.011316973,-0.11036463,0.12048352,0.028907841,-0.04344861,0.0058978116,0.037625708,-0.02069794,0.07004376,-0.024687808,-0.03918084,-0.00908443,0.0018594048,0.037501704,-0.01710399,-0.006593868,0.009621669,0.038755476,0.03923977,0.0409419,0.03749118,0.011880842,0.02434913,0.014549714,0.10599191,0.005971708,-0.008255486,-0.120069325,0.07899401,0.016562043,-0.01728442,0.046419688,0.092870325,0.09042865,0.014665284,0.12429829,0.009584461,-0.059169266,0.012495206,0.057210155,-0.060439993,0.03464857,-0.005527362,-0.043848053,-0.081943944,-0.0525213,-0.035963986,-0.007373714,-0.005030952,0.012042256,-0.031299643,0.010612275,-0.055728164,0.019433,0.024170829,-0.04201502,-0.00784039,0.077909544,-0.038644005,0.023500351,-2.97346e-34,-0.041822243,-0.050451763,-0.012153736,0.03332388,0.009659524,0.025388222,-0.07072329,-0.025236338,-0.1049819,0.09316434,-0.08555823,0.0817384,-0.0148170125,-0.024291372,0.09934951,0.045015085,0.017906664,0.014762803,0.055306513,-0.023849921,-0.036585078,-0.0585436,0.00027509246,0.03259902,-0.01089835,0.06756725,-0.019474449,-0.04580216,-0.026243538,0.04299766,0.053007714,0.07608372,-0.022607422,-0.015378587,-0.01688341,-0.045319907,-0.024310317,0.030637953,-0.028070003,0.057447806,0.011593505,-0.011140775,0.021081615,0.009842774,0.039368797,-0.004785564,0.056260448,0.019415481,0.12276411,0.006868782,-0.034225237,-0.056170028,-0.0050153546,-0.030254338,0.01775309,0.03298111,-0.09146891,0.14677924,0.017831363,-0.02059236,0.03661656,0.013878748,-0.018556815,0.033824038,-0.119205736,0.010574029,0.018071635,0.006638578,0.11205312,-0.02616168,-0.051203378,-0.07845147,0.10599739,0.029297294,0.022702165,-0.01579123,-0.037786253,-0.071356356,-0.024835601,-0.073771425,-0.0630084,-0.078819074,0.021206576,-0.012031206,0.056034513,0.07650615,-0.0011668731,-0.014322337,-0.032921076,0.034889318,-0.060134504,0.03153195,-0.05586953,-0.0094125355,0.022319615,-9.58168e-34,0.019925868,-0.026675696,-0.005513269,0.010860549,-0.016871674,-0.01023527,-0.062074427,-0.025740124,-0.005525003,0.007129522,0.03273504,-0.13757494,0.02084863,-0.008316459,0.017511105,0.055370577,-0.0065076277,-0.07259717,-0.13386191,-0.12060364,-0.07151895,-0.06519353,0.019397734,0.031648003,-0.030311635,-0.009666434,0.07227432,-0.015753774,-0.012233015,-0.015841085,0.011532385,0.02436492,0.013672794,0.06335062,-0.0069699297,0.08249484,0.08755526,0.017445583,0.05409878,0.04112605,-0.021582559,-0.003503959,0.0039179926,0.022528136,0.029517123,0.029542824,0.00661782,-0.0967245,-0.045293823,-0.018289275,0.04511657,0.026267482,-0.008446599,-0.041511547,0.043151475,0.061395213,-0.058118675,-0.09885046,-0.124581985,-0.014991786,0.021153823,0.043678176,-0.031880453,-0.017277852,0.09605794,-0.004579277,-0.06606145,0.0018262696,-0.040046085,0.1086525,0.06266467,-0.044181883,-0.08987734,0.014205539,-0.06601228,-0.019980278,-0.076853625,0.0023683482,0.0060898606,0.018321611,-0.013512987,-0.07965235,0.011253367,-0.01786124,-0.022979619,-0.056775354,-0.046290725,-0.035091158,-0.027713299,0.14215599,0.04075168,0.05646955,-0.018062027,-0.060847957,-0.040677145,-1.5647222e-08,0.049313057,-0.008977647,0.007930435,0.016880978,0.06839252,-0.0050767018,-0.03796946,0.016884752,0.0713987,0.111190304,-0.04707834,-0.04498128,0.001416236,0.10698834,-0.0024658213,0.09366304,0.041059524,-0.05213632,-0.0011369893,-0.045324616,0.041832305,-0.003709726,-0.054216105,-0.05420025,-0.015483983,-0.009825999,-0.059547327,0.057847645,-0.010382918,0.017009199,-0.02978762,0.07700233,0.018658498,-0.1115785,-0.03270598,0.029165689,0.017751845,-0.05753446,-0.02837843,0.012007971,0.059721086,-0.020532891,-0.018983623,-0.06185391,0.034675293,-0.07830761,-0.016627196,0.023202188,0.0022997435,0.030543959,-0.05917725,-0.004070669,0.0075388947,0.061087742,0.079228595,-0.02239604,0.06738315,0.021474391,-0.016707597,0.034859322,0.06306931,0.06551602,0.036930867,-0.10834443} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.228051+00 2026-01-30 02:01:13.086846+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2347 google ChdDSUhNMG9nS0VJQ0FnSUNvc0lEaXVBRRAB 1 t 2350 Go Karts Mar Menor unknown Super chulo me encanta super chulo me encanta 5 2020-02-01 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Super chulo me encanta"} {-0.061980773,0.0026648943,-0.04401943,-0.013297648,-0.09656237,-0.06541873,0.15121834,0.056027923,-0.023799414,0.025350057,0.028894033,-0.03687088,0.008371321,-0.020244319,-0.054072887,0.037582804,0.09468123,0.006257482,-0.030505694,-0.042503152,0.07307525,-0.045022544,-0.06644994,0.11480399,-0.086609684,0.025621267,-0.035318606,0.01392674,-0.03803178,-0.067426264,-0.04819875,0.09723713,0.048477743,0.044219263,0.023513095,-0.0018519103,0.0029889096,-0.017508402,0.034363452,0.004343568,-0.056848355,-0.034426086,0.008205296,-0.012906273,0.0504544,-0.038500886,-0.06215893,0.030085396,-0.009993291,0.03782123,-0.07175224,-0.033964973,0.0069413185,0.06946158,0.052988846,0.030448485,-0.037076216,-0.023256494,0.06823463,0.020321574,0.030448347,-0.04083537,-0.063929476,-0.010336158,0.0107040135,-0.036174152,0.0076733786,-0.017372068,-0.1330484,0.15975162,0.09952428,-0.037940964,-0.068285644,0.08633756,-0.0011574504,0.023161983,-0.0020798394,-0.054028526,-0.0034447226,0.02601388,0.053612337,-0.019031366,0.017938675,-0.052461576,-0.01086564,0.007521679,0.03792638,0.011677481,0.0003016155,-0.017642634,-0.010953109,0.017682955,-0.06776661,-0.002415561,-0.08973784,0.02919192,-0.008121531,-0.018086018,0.020168288,0.082459226,0.08504829,-0.021684183,0.017837698,-0.082461335,0.009054179,0.017739778,0.044764888,0.0013491033,0.08299606,0.058756374,-0.04839527,-0.061420534,-0.03664502,0.012701385,-0.019603198,0.060901932,0.022494873,-0.013540732,-0.04222622,-0.058822013,-0.009119194,0.07076988,-0.04014531,0.04707937,-0.040714,-0.054224614,-0.02491192,9.8005455e-34,-0.025170818,-0.058475494,0.04586342,0.020590486,0.047454983,-8.07021e-05,-0.034867056,-0.043712176,-0.07457394,-0.025234248,-0.062111586,0.05206934,-0.02553019,0.042122353,-0.0023275367,0.07385191,-0.026617669,-0.08242211,0.020812409,-0.033535097,-0.04912829,-0.008948072,-0.003111784,0.012658312,-0.047629386,-0.024432903,-0.005321731,-0.058639444,0.01599375,0.05536312,0.005640139,0.012012246,0.041520182,0.023518682,-0.033887427,-0.1067299,0.06801516,0.021642018,-0.04006243,0.023719272,0.011718391,0.020641731,-0.014892916,-0.010193997,-0.005353399,0.010110544,0.0651273,0.10466664,0.021789383,-0.00545804,-0.034444265,-0.06185563,-0.05683371,0.008787837,0.03489628,0.082358845,0.0043302504,0.016530076,0.039944533,-0.026381696,0.041652158,-0.07092577,0.043269113,0.00642711,-0.052451752,-0.12846997,0.0029400138,0.07219602,0.07915669,0.019995298,-0.038709864,-0.018787824,0.025453662,-0.028852144,-0.026171116,-0.036122378,-0.0150395455,0.043083873,-0.07019612,0.07061994,0.022473576,0.002023717,0.113327734,0.029239247,0.06003802,0.082169436,-0.007911334,-0.023237979,0.008299715,0.07120662,-0.09670933,0.058535602,0.0874485,-0.124390274,0.0023564023,-7.321399e-34,0.042595938,-0.0036850376,-0.01589851,0.08612464,0.0018858259,0.014880566,-0.022236228,-0.046880167,0.01028283,-0.0519644,0.026795836,-0.008166296,0.14323428,-0.0014410126,0.11423438,0.043842487,0.025489647,0.0024888183,-0.042165432,-0.056922138,-0.07439599,-0.03846959,0.002771476,0.041038454,-0.047125883,-0.025035484,0.025419166,0.064341016,0.026799073,0.06777121,0.015659563,-0.051873643,-0.056055732,0.07043038,-0.06074602,-0.034303803,0.019129539,-0.017207813,-0.0009696943,0.005975959,-0.109358095,0.06675956,-0.025007019,0.08005352,0.024168568,-0.002466738,0.05269074,-3.8748833e-05,-0.049106777,-0.07923939,0.03000858,-0.045502815,-0.010184731,0.023507165,0.03225053,-0.040148642,-0.027259566,-0.06745595,-0.09621458,-0.025288003,0.04862089,0.025944939,-0.09938288,-0.059896618,0.051532313,0.03819184,-0.06827676,0.032389905,-0.09096378,0.06942123,0.046868786,-0.031528793,-0.14267182,-0.026062073,-0.014592121,-0.035477538,-0.063041985,0.06635617,0.0067778886,0.0011938227,-0.083869405,0.054845907,-0.035251297,0.046070214,0.018483665,0.0052803024,-0.06478101,0.06481642,0.06343503,-0.013912534,-0.020517757,0.047176227,0.006960393,0.00983491,-0.024202809,-1.7090834e-08,0.009931391,-0.017033242,-0.086614005,0.016764954,0.022728426,-0.03656555,-0.07244928,0.028742172,0.041877322,0.01664468,-0.0076899696,-0.04440069,0.06385755,0.07056015,0.0068083806,0.082170226,0.09025642,0.042905193,-0.009204304,-0.049663663,0.003099789,-0.01831404,-0.013017859,0.038151994,-0.06910699,0.05287899,0.004390399,0.025578123,0.072234295,-0.0057204547,-0.09500084,0.0142626325,-0.03446924,-0.051236093,0.008980698,0.008138514,-0.038729686,0.06043297,0.028705984,0.015821427,0.12250504,0.026373878,-0.012810461,-0.0073384764,-0.05415761,0.009775672,0.032844305,-0.048130695,0.009220807,-0.0007562052,-0.12403907,0.016072104,0.074910246,0.0873938,0.091596626,0.05242341,0.054825213,0.0018139158,0.0054936553,0.035300147,0.06119022,0.1124112,-0.08486765,-0.07433955} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.240858+00 2026-01-30 02:01:13.091052+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2350 google ChdDSUhNMG9nS0VJQ0FnSUNhMktENjR3RRAB 1 t 2353 Go Karts Mar Menor unknown Circuito grande, largo y amplio. circuito grande, largo y amplio. 5 2022-01-31 01:52:39.833374+00 es v5.1 E1.03 {} V+ I2 CR-N {} {"E1.03": "Circuito grande, largo y amplio."} {-0.013308491,0.043170627,0.013963809,0.01168435,-0.11379212,-0.043883115,0.02340734,0.088073626,0.010692154,0.0041712173,0.07871125,-0.04607455,-0.03569481,0.015523186,0.011357601,0.03716179,0.004212901,-0.006464195,0.039615314,-0.03331389,0.115802996,-0.0012169117,-0.04998972,0.12796657,-0.031255707,-0.005846253,-0.0051581026,0.08297902,-0.08081383,-0.112269975,-0.086293064,0.079916924,0.011897109,0.022623332,-0.023169326,0.032528505,0.034980386,-0.07675745,0.069415964,0.048420776,-0.0932143,-0.06228219,0.07659273,0.021010984,-0.016342605,-0.052764595,0.009928212,0.04309061,0.010345017,-0.07435851,0.009545708,-0.09381891,-0.04946319,0.05583903,-0.041929156,0.0100405365,0.012807155,0.01751701,0.08011661,0.08158347,-0.0068519055,0.03623744,-0.04463776,0.07356643,-0.026582189,-0.034415796,0.0064652725,-0.023399629,-0.07683203,0.036468852,0.09839915,-0.060118705,0.03856911,-0.053055163,0.019182501,0.020168139,-0.023362946,0.011378879,-0.045270022,-0.057724062,0.018148823,0.004203969,-0.032411695,-0.023336396,0.03206059,0.0059333635,0.0044796313,-0.011896965,0.0079619745,-0.07278308,-0.027101293,0.034042533,-0.09105721,-0.010017345,-0.034392044,-0.036687274,0.029334983,-0.063941956,0.022698168,0.071087,0.11230682,0.05876519,0.05719086,0.021219365,-0.003920384,0.057916958,0.015454573,0.06016837,0.003112259,-0.056205355,-0.07325029,0.030831799,-0.0662582,-0.026982818,-0.033476897,0.039137796,-0.042224005,0.029387273,-0.033713013,-0.06538908,0.0052955407,-0.06241761,-0.08087027,0.016681995,-0.07270086,0.04704365,0.02394613,-2.1630554e-34,0.020098174,0.033541996,-0.010284396,0.0064609796,0.0078116767,0.023268024,-0.062751725,-0.0044333492,-0.058891412,0.055269804,-0.05699234,0.062455148,0.009253148,0.013410811,0.10832432,-0.0024547193,-0.043246847,-0.01796085,-0.005902319,-0.0219428,-0.012579256,-0.012915386,-0.025545446,0.033788584,-0.052262645,0.04737455,-0.0023966082,-0.046531428,-0.08955888,0.050664674,0.038300406,0.02319266,0.03189703,0.028703874,-0.00031315413,-0.015561544,0.07364014,-0.0027064811,0.06490002,-0.011099833,0.021236291,0.031181406,-0.053824876,0.052021313,0.060168322,0.0026254903,0.025226466,0.049874157,0.15724717,0.045226473,-0.09563649,-0.081674725,-0.04487886,-0.02292255,0.043315794,0.08240644,-0.063175835,0.06536503,0.005527077,0.038300063,0.029301113,0.06597501,0.012187953,-0.038083233,-0.023190074,0.040784262,0.037734665,-0.062365077,0.02698512,-0.017926097,-0.060626347,-0.027118403,0.036000416,0.021591345,-0.01808669,-0.02039958,0.0134271765,0.024420567,-0.040345117,0.0389859,-0.14862496,-0.030181894,0.013271642,0.034357097,0.06864994,0.06140446,0.080666155,0.019612206,0.006062275,0.046744324,-0.10773109,0.04598348,0.07639639,-0.057799116,0.0059651122,2.391784e-34,0.05222818,-0.013666032,0.029710205,0.01764604,-0.013759361,-0.014984118,-0.06368318,-0.0024684905,-0.069349356,0.017577533,-0.054477092,-0.031767145,0.09594223,-0.112312265,0.045290727,0.026855208,0.021464968,-0.05061453,-0.07450127,0.040728275,0.0042745965,0.065034054,-0.025480159,0.015634442,-0.07304721,-0.01009982,-0.00050984777,0.02396636,-0.073545806,0.052738175,-0.03275324,-0.004083573,-0.034926597,0.054095235,-0.05634172,0.05896979,0.048426725,0.015001678,-0.012845036,0.008157756,-0.06906,0.085784644,0.06432088,0.046257403,0.007187042,0.030718988,-0.0200916,-0.0071941344,-0.067857005,0.011048876,0.024270548,-0.07255373,-0.06759017,-0.052206736,-0.016725017,-0.04753047,-0.05248758,-0.02825118,-0.104829066,-0.058511145,0.059922747,-0.0030275874,-0.030361183,-0.028418882,0.061435774,0.0026771585,-0.023106514,0.040180814,0.10696867,0.09651539,0.1293881,0.031068893,-0.105008274,-0.041861236,-0.092016324,0.014445596,-0.10447463,0.001360542,-0.020940024,0.0013152426,0.074140884,0.0637312,0.02990378,-0.05248014,-0.0018665389,-0.0009697605,-0.028910816,0.04851496,0.04214737,-0.0048234197,-0.0034064872,0.045668144,-0.10477936,-0.059855204,-0.0069965897,-1.7517642e-08,0.081405915,0.07911472,-0.046512358,0.027059436,0.039288245,-0.099329464,0.033213463,0.010915941,0.02331644,0.037921425,0.01541073,-0.024622958,0.051153395,0.024038667,-0.0034741717,-0.014453433,0.03269518,0.16919853,-0.036462795,0.014868369,0.04561283,0.017788222,0.01849099,-0.038209066,0.03612918,0.0022818493,0.021229653,0.029370585,-0.016468676,-0.04995529,-0.017919108,0.00972887,-0.06377289,-0.11313546,0.02109644,0.033097286,-0.091466635,0.0035104647,0.020031787,-0.058182202,0.031860474,-0.039262623,-0.008438916,0.02543495,0.0037392857,-0.049343973,0.05120028,-0.027802395,0.01394548,0.093244635,-0.06925738,-0.037576947,0.03796417,-0.012420762,0.009548129,0.028971978,0.031302683,0.049755033,-0.10490207,0.020663932,0.049444545,0.0667136,0.024459178,-0.10321938} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.28144+00 2026-01-30 02:01:13.101313+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2351 google ChZDSUhNMG9nS0VJQ0FnSUNEM3ZMeGFBEAE 1 t 2354 Go Karts Mar Menor unknown Buenas carreras, buenas instalaciones buenas carreras, buenas instalaciones 4 2025-01-30 01:52:39.833374+00 es v5.1 O1.02 {E1.03} V+ I2 CR-N {} {"O1.02": "Buenas carreras, buenas instalaciones"} {0.047173023,-0.01799884,0.022632452,-0.040428244,-0.09728319,0.018328432,0.07740247,0.017783886,0.0264689,0.026479155,0.059803907,0.020790458,-0.010950426,-0.018659867,0.008612244,-0.02989595,-0.00011858515,0.014090381,0.025499184,-0.018653313,0.020590242,-0.036963075,-0.103183284,0.071978115,-0.07628963,-0.034389768,-0.0036697227,-0.013708475,-0.0020194503,-0.07388557,0.02324675,0.046432637,0.13361104,0.013560361,-0.046260435,-0.030032398,0.07864445,-0.041657697,0.036239736,0.038025808,-0.07899694,-0.061281767,-0.0037092138,-0.0046121352,0.04153279,-0.15308835,0.026625581,0.03291129,0.052805986,-0.036503237,-0.041600943,0.018194785,-0.016801951,0.008927975,-0.0027402618,0.054394577,-0.022562593,-0.0024178892,0.03601719,0.0331605,0.031802624,0.054877758,-0.0032455965,0.015424582,-0.00826744,-0.007895982,-0.0026600002,0.057184927,-0.017435143,0.010921759,0.010034092,-0.09933894,-0.05404736,0.06939112,-0.018773478,-0.023025448,-0.019516537,0.049867004,-0.012975127,-0.10297154,-0.021545675,-0.02079073,-0.10394273,-0.007126419,-0.021176254,0.024806164,-0.019196346,-0.008602046,0.061503805,0.008711129,-0.005794208,-0.00048924604,-0.064079106,2.299624e-05,-0.04186631,-0.05542669,0.030028963,-0.093109235,0.022732077,0.06325772,0.08124897,0.0012097002,0.10554967,-0.01320617,-0.05989318,0.06469353,-0.016752085,-0.011891943,0.074172184,0.048304934,-0.0840905,-0.005087457,-0.052075896,-0.02096723,-0.030248614,0.063870974,-0.018577227,-0.01613644,0.046280883,-0.04393656,0.03979067,0.024156926,-0.0057406034,-0.05154813,-0.013013922,-0.03178972,0.028500052,-1.6057102e-33,-0.06592501,0.05189018,0.0026426138,0.13719867,0.029464504,-0.006315065,-0.0019739287,0.002842642,-0.06645536,0.032568462,-0.074963376,0.024672482,-0.081636354,0.04946096,0.1382873,0.088155635,-0.08050214,-0.0014731603,0.0032156068,-0.015391195,-0.09793579,0.010932436,-0.021467546,0.016042316,0.022617524,-0.0044833804,0.030939603,-0.0068463045,0.06626163,0.04116386,0.040249012,0.07245908,0.043545313,-0.031258997,-0.009244631,-0.009061366,0.039350126,-0.005935512,0.038074747,0.024777355,0.03010639,0.024268791,0.024037942,0.012380397,0.04183724,0.03823766,0.062307265,0.047639426,0.12188782,0.049183853,-0.044096623,-0.0857669,-0.035301566,0.013130444,-0.040509034,0.028898057,-0.11617693,0.008869073,-0.015708644,-0.07674414,0.041245416,-0.05985131,-0.002444048,-0.054207362,-0.09047546,-0.033039093,0.026947739,0.072285116,0.14890864,0.03321841,-0.124702625,-0.031271163,0.0078053423,-0.023366105,-0.013301155,0.046704844,-0.07926997,0.065512866,-0.0010034414,0.0911137,-0.062463682,0.029369924,-0.01254786,0.05399871,0.13818896,0.10632761,0.024932379,0.023710797,-0.0050338665,0.13008341,-0.034297176,0.13113381,0.004065849,-0.0039687073,0.02604406,-2.2638003e-33,-0.025731595,-0.06160677,0.008952159,0.034327175,0.006994178,0.029320104,-0.0144283455,0.0045113163,-0.053807277,-0.10884157,-0.051244363,-0.07056316,0.09986702,-0.0509381,-0.03868842,-0.00013575531,0.026829088,-0.013653958,-0.06786034,0.024453023,0.011373316,-0.010779499,0.04305739,-0.002178773,-0.010986432,-0.056086104,-0.036591846,0.04217147,-0.031859737,-0.018870134,0.059958223,0.031318665,-0.10990433,0.05512755,-0.10630963,0.013395513,0.008102177,0.044556335,-0.0239654,0.03783348,0.038733777,-0.012427961,-0.047480512,-0.0014106731,-0.035895467,-0.015141966,0.00035891496,-0.12421036,0.0055086794,-0.0094910525,0.09379151,-0.019149378,-0.06897491,0.0132942945,-0.0155153265,-0.005677584,0.015452473,-0.025007594,0.00063220866,0.023782609,0.012223878,0.08783304,0.0026567676,-0.086923555,0.04206905,-0.0439501,0.010959436,0.07785215,-0.046982564,-0.005448467,0.120931946,-0.017106086,-0.032859027,-0.025775917,-0.06898152,-0.010730288,-0.084226795,-0.072441064,-0.033933032,-0.08398805,-0.05089159,-0.045394965,0.02224362,-0.04051554,-0.09396255,-0.013989461,-0.016915893,-0.0225219,-0.0059815543,0.03248444,-0.041255727,0.044048853,-0.023360156,-0.06273515,-0.04834507,-2.0538078e-08,-0.041658096,-0.014168537,-0.040622737,0.027198669,-0.019827798,-0.029016005,-0.09619564,0.1444553,0.0073611913,-0.031432036,-0.03519159,-0.0078064483,-0.03197411,0.07074582,-0.029060625,0.0023825748,0.02652326,0.10897705,-0.01633702,-0.09083025,0.00909237,0.022428278,0.0064891702,0.04206664,-0.017713936,-0.024629066,-0.0061969953,0.038157348,0.003771496,-0.0029396103,-0.012358481,0.0120114535,-0.018749444,-0.059124876,0.03175784,-0.03312547,-0.047967862,-0.041496124,0.024893198,-0.13533829,0.06451346,-0.01817264,-0.025158536,-0.047596022,0.033963706,-0.07851057,-0.026217166,0.042074706,0.024506722,0.034137033,-0.006344612,-0.014840451,0.006900253,0.033755723,0.04770557,-0.07728776,0.048902474,0.0052142213,0.009243531,0.012268767,0.007042232,0.0026321274,0.11420214,-0.08465618} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.293217+00 2026-01-30 02:01:13.104105+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2353 google ChZDSUhNMG9nS0VJQ0FnSUNDZ3ZYTldREAE 1 t 2356 Go Karts Mar Menor unknown Líquido dé frenos en mal estado. líquido dé frenos en mal estado. 3 2021-01-31 01:52:39.833374+00 es v5.1 O1.04 {E4.01} V- I3 CR-N {} {"O1.04": "Líquido dé frenos en mal estado."} {0.007983769,0.009418311,-0.011640052,0.017153768,0.0359499,0.04099711,0.08328578,0.047576714,0.058430005,-0.036658637,0.017694902,-0.042631682,-0.07410211,-0.029185012,0.016985135,-0.06971749,-0.0050800117,0.04022556,0.019200861,-0.015661854,0.10248623,-0.06926136,-0.065657474,0.07396599,-0.08465321,0.056347933,0.048047647,0.035454836,-0.0004175175,-0.04249288,0.009414761,0.09275842,0.02359685,-0.022432122,-0.0033027148,0.028638475,0.10306036,-0.090932354,-0.04440029,0.0014995962,-0.09343529,-0.07212553,0.023788154,-0.005250375,0.0019387157,-0.05380133,0.04400734,0.11000657,0.0478865,-0.054715745,-0.06376117,-0.058713034,-0.08704833,0.06802711,-0.02107385,0.054661207,0.021374496,-0.08424414,0.033341862,0.08737793,-0.065877095,0.050967034,-0.042479794,0.07000135,0.006178477,-0.0029692184,-0.035411507,0.04760225,-0.08417552,0.06351478,0.101053245,-0.010746855,0.042505138,0.026912535,0.0106092,-0.012871832,-0.03740252,0.026665041,-0.030300532,0.010066927,0.008335468,-0.026750628,-0.010993463,-0.013754252,-0.010563131,-0.065494284,0.020173239,-0.053842634,0.06057,0.060897812,-0.026883252,0.05431632,-0.05937309,-0.006263708,0.035200223,0.06862916,0.057353348,-0.0799402,0.0637644,0.038640153,0.053821165,-0.027411042,0.06362729,0.034138076,4.9384853e-05,-0.03388893,0.0019613307,0.0072079673,0.028356168,0.008111234,-0.07476062,-0.064700186,-0.07255795,-0.038168106,-0.03265163,-0.043674134,-0.036757648,-0.1293503,-0.033568576,-0.022715468,0.04349676,0.0050194548,-0.05651021,0.019082299,0.012387163,0.029944515,0.056108564,-2.571902e-33,-0.0069123805,-0.10356905,-0.010329256,0.050140984,-0.025716871,0.09477361,-0.054066136,0.032126408,0.014040136,-0.007189438,-0.03671,0.047222383,-0.08693847,-5.4541026e-05,0.06420304,-0.013497687,0.0059395907,0.020650513,0.11090223,-0.018429233,-0.037723903,-0.008701924,-0.02546912,-0.037626844,-0.041964423,0.04317943,-0.070815876,-0.07689699,-0.022502782,0.055418834,-0.0031012308,0.053774618,-0.0067055803,-0.005341634,-0.044461504,-0.017210636,0.0134213725,-0.010349574,-0.015721533,-0.010667033,0.08440121,0.03225755,0.02399855,-0.017432397,0.021807654,0.03385499,0.011199466,-0.0048654564,0.08694323,-0.02546924,-0.020251429,-0.026573474,-0.06356316,0.030091897,-0.03625889,-0.009494325,-0.09507265,-0.00956739,-0.06901853,-0.08760907,0.0008173234,0.062289905,0.02913114,-0.0479196,-0.011624656,-0.0028162594,0.060763206,0.06061665,0.11936104,-0.012048872,-0.0995496,-0.0028115837,0.04858541,0.026865296,0.017054493,-0.013680701,0.041467603,-0.004356388,-0.0065426147,0.038070083,-0.053950325,-0.01726721,0.015661018,0.017348697,0.029029379,0.13090664,-0.025015557,0.072673075,0.035807185,0.02972977,-0.08697476,0.026004799,0.044398136,-0.05042778,0.039497342,-1.8211486e-33,-0.028012553,-0.075642645,0.001517798,0.058669128,0.07126234,0.0033776588,-0.060612895,0.04923163,0.010471182,-0.047716603,-0.06730819,-0.12938815,0.10664616,-0.10298107,-0.06470363,0.062483102,-0.053032592,-0.0222693,-0.0122573245,-0.019013084,-0.09664574,0.024918785,0.08471722,0.0642917,0.00097589893,-0.055407766,0.03821666,0.020458277,-0.06841816,0.03660462,0.0793355,-0.007286013,0.03721794,0.09279139,-0.03215823,0.045935668,0.045568343,-0.0137941,-0.02962296,0.08700141,0.057539184,0.064322606,0.012591057,-0.003576367,-0.013710685,0.08527934,-0.009333474,-0.15617965,0.028469145,-0.06554644,0.03863901,-0.03171089,-0.1459867,-0.03693227,0.030060783,-0.05259912,-0.046696663,-0.032862283,-0.096123524,0.009634275,0.0077985236,0.029827185,-0.07120333,-0.06743363,0.09459512,0.022152288,-0.062624194,0.04846277,0.0020283852,0.04472423,0.1434716,-0.10058325,-0.06087808,0.029353244,0.01094457,-0.028641682,-0.077741526,-0.008514906,-0.059813462,0.024225209,-0.00046065883,0.0018658428,-0.050592948,-0.0015054833,-0.014671333,-0.099363886,-0.010628554,-0.040771488,-0.01753208,0.06305868,0.03583751,-0.0072705536,-0.04801526,-0.03737786,-0.013019428,-1.8314163e-08,0.014232108,-0.052980784,-0.019441338,0.08572669,0.027555637,-0.002745246,-0.015015494,0.019895097,0.013043016,0.06650355,-0.05751177,-0.0108106835,-0.013482084,0.026851539,-0.0048365174,-0.0013110077,-0.027323786,0.049286127,-0.008480793,-0.036100682,0.040625177,0.006400982,-0.0280254,-0.07227295,-0.02070718,0.017664962,0.01629487,-0.039890315,0.0537337,0.009901395,-0.076624,0.034772456,-0.004121935,0.021378232,-0.03492823,0.0012153491,-0.02273213,-0.004705136,-0.06691418,-0.00024514672,0.06861649,0.011663097,-0.080135465,-0.055092204,0.045963988,-0.027567053,-0.02362218,0.048661903,0.0059095863,0.06734404,-0.013202836,0.030518357,0.055524718,0.106802754,0.05929052,-0.03971756,-0.03392852,0.0129557,-0.05748892,-0.04751966,0.043173324,0.06420821,0.09977215,-0.03412631} 0.8 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.320049+00 2026-01-30 02:01:13.113207+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2354 google ChZDSUhNMG9nS0VJQ0FnSUNsbUs2VU9BEAE 1 t 2357 Go Karts Mar Menor unknown Bastante completo y divertido bastante completo y divertido 5 2024-01-31 01:52:39.833374+00 es v5.1 O3.02 {V4.03} V+ I2 CR-N {} {"O3.02": "Bastante completo y divertido"} {0.052562844,0.015779685,0.048522055,-0.025422681,-0.034852713,0.014164031,0.1148203,0.0739314,-0.00095895067,-0.02083917,0.06918138,-0.040616382,-0.021868715,0.0104284175,0.00044704133,-0.030567195,0.012678481,0.06614091,0.028993446,0.0044401013,0.05172642,0.05307067,-0.067173265,0.09823141,-0.041075964,0.00013012407,-0.013633832,-0.070313126,-0.038418293,-0.020106599,-0.050652742,0.088768564,0.046894617,0.0002799014,-0.08313026,-0.021906707,-0.03842188,-0.005387335,0.03933295,0.05055753,-0.09301296,-0.020820359,0.0063119247,-0.076565415,0.059441812,0.04866298,-0.026155485,0.02758522,0.087349,-0.032966465,-0.08295782,-0.03181878,-0.007101243,0.05162871,0.004125183,-0.044165622,-0.034770105,0.005431648,0.07320334,0.049827814,-0.0502096,-0.008756947,-0.04898955,-0.028538195,0.10930589,-0.05221798,0.040228546,0.0057529593,-0.062834665,0.057107687,0.121683314,-0.010377032,-0.027885217,-0.055431407,-0.0057996362,0.028805535,-0.008290837,0.036594447,-0.08706682,-0.019412164,0.06174788,0.021483647,-0.032052103,-0.0032233708,-0.0011895293,0.031541243,-0.07067637,0.057342235,0.002420816,-0.0228896,0.0107710585,-0.048665065,-0.12582675,0.0025283745,-0.011633564,0.016269581,0.001382891,-0.14632551,0.0031887554,0.039122738,0.00637366,0.043849126,0.043507658,-0.03615562,-0.0198964,-0.010575,0.083482906,-0.017116254,-0.0038014296,0.023736909,-0.028921079,-0.043675892,-0.027045231,-0.025861332,-0.13651083,0.040313497,0.008868471,-0.09995852,-0.041331183,-0.06994203,0.06343093,0.08085611,-0.025473248,0.023314068,-0.053946577,-0.061633214,0.10355965,1.5512979e-33,-0.0013204995,-0.05094965,-0.01419843,0.072382994,-0.015127792,-0.01603583,-0.047466543,-0.042233553,0.024152713,-0.0882319,-0.046340384,-0.0150144445,0.009408685,0.08466495,-0.115491755,-0.045414202,0.07181004,0.025168965,0.061946716,0.07430086,-0.03333453,0.0093893055,-0.07479106,0.032615986,-0.046635397,0.008250267,-0.04416455,-0.02236921,-0.06266179,0.059625704,0.011165299,0.027585935,-0.0505052,-0.018494258,0.0134176165,-0.0005904884,-0.029798977,0.0026014938,0.021070551,0.0011524913,0.05133958,0.03277051,-0.049769703,0.05516055,0.05237102,-0.007437959,0.011857928,0.0536858,0.06311799,0.075059846,0.015326865,-0.028346177,-0.029961163,-0.043702587,-0.013764817,0.02412201,-0.033836283,0.027763534,-0.04071825,0.08209297,0.02409243,0.052748993,-0.06626284,-0.038728032,-0.041572362,0.038726367,-0.0600976,0.033307817,0.09105805,-0.07270662,-0.16152273,-0.036355954,0.019270856,0.15602167,-0.023656163,-0.02683342,0.049850192,0.055877753,-0.027161147,-0.03993267,-0.06285088,-0.011491689,0.046124574,0.043558072,0.044822548,0.104630105,0.020908462,0.01625355,-0.021769488,0.007230317,-0.06477957,0.048479386,-0.018738989,-0.041246355,0.032861304,-2.7362966e-33,0.00056482153,-0.066354305,-0.019541714,0.023371488,-0.05266548,-0.010527905,-0.00500218,-0.00459806,-0.07375719,-0.049286924,-0.069087975,-0.025910841,0.1594708,-0.066367686,-0.08049379,0.081240214,0.04106114,-0.011374346,-0.064459026,0.023367552,-0.07673549,0.03375639,0.08759699,-0.06971651,-0.048878588,0.07240664,-0.0017439919,0.011200097,-0.0045705736,0.039478816,0.02228965,-0.02925405,-0.08433846,-0.0048964396,0.029945452,0.059964415,-0.044579558,0.060877103,-0.06255228,0.06422977,-0.06564764,0.0036390575,-0.011054024,0.0063191354,0.025336223,0.06692042,0.043764707,-0.028751954,-0.007267316,0.024447404,0.018885652,0.02027026,0.043378208,-0.029666048,0.045470607,-0.080351464,-0.00061495847,-0.075771876,-0.05518985,-0.0101338485,0.0824247,0.06628787,-0.011924127,-0.088975824,0.10522092,-0.0027233893,-0.060295254,-0.003829789,0.06402778,0.02091817,0.10874152,0.01225154,0.01649676,-0.04530048,-0.027934529,0.053454194,-0.06810493,0.029041447,-0.065379694,0.06526595,-0.04022003,0.086770505,0.019901156,-0.011789982,-0.034861,0.00969282,-0.074179366,-0.0033315897,-0.046477556,-0.053221293,-0.056775626,0.00045429607,-0.045949962,0.028941624,0.07506124,-1.7540605e-08,0.021752696,-0.008725453,-0.04628296,0.007847989,-0.018522345,-0.06289136,-0.05173221,0.020242574,-0.009054302,-0.013999255,-0.07078789,0.02748282,0.056754004,0.029446188,-0.01585108,0.0026980813,0.115807384,0.07936247,-0.0485566,-0.006607221,0.071541265,-0.07873533,-0.013613016,-0.039819036,0.0105120335,0.003949392,0.001259452,0.0654371,-0.015435809,-0.07512814,0.089932956,-0.03549527,0.02383039,-0.09448281,0.016617727,0.008891556,0.014818794,0.0104337,0.017458495,0.005358496,0.028137669,-0.04547026,0.051033895,0.043253902,-0.0015925595,-0.029530346,0.06363425,0.08981053,0.024790742,-0.027484516,-0.048614442,0.034450274,0.054504257,0.07432229,0.0039749923,-0.00960798,0.02485122,0.021273904,-0.0020172289,-0.03651907,-0.027088903,0.12194236,-0.048017982,0.0028261614} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:04.332442+00 2026-01-30 02:01:13.116646+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2405 google ChdDSUhNMG9nS0VJQ0FnSURPOTdHUWl3RRAB 1 t 2408 Go Karts Mar Menor unknown Les enfants ont adorés les enfants ont adorés 5 2023-01-31 01:52:39.833374+00 fr v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Les enfants ont adorés"} {-0.056892894,-0.0021048894,0.011741489,-0.023830116,0.041102316,0.032782644,0.054521922,0.06167582,0.026220912,0.031290606,0.065206915,-0.06320468,-0.008622722,-0.062219538,-0.026927702,-0.035216007,-0.029479804,0.02918357,-0.02284012,-0.014156014,-0.101705454,-0.031436883,-0.037618425,0.07129484,-0.03261956,-0.025058648,-0.03385962,0.049235884,-0.1217657,0.018472051,0.028221415,-0.027687022,0.011009152,-0.026584543,-0.005389932,0.025540533,-0.036156517,-0.040975604,0.010864507,-0.0014471314,-0.052122533,-0.03979083,-0.10205618,-0.014027049,-0.03422053,-0.016274083,-0.028138103,-0.0060200514,-0.107537486,0.021030748,0.006555248,0.010739722,0.027016813,0.011414256,-0.010563797,0.019629806,-0.01937909,-0.05975139,0.048003618,-0.0043554837,0.056384426,-0.0132311145,-0.071377404,-0.01931864,-0.12070788,-0.06312192,0.05614846,0.02597898,-0.017235897,0.03958195,0.10077994,-0.0033304994,-0.08148805,0.05735832,-0.0008621209,0.06508045,-0.06198979,-0.07601065,0.003936188,-0.15021874,0.003948221,-0.14223096,-0.006922014,0.01460284,0.061851036,-0.055858992,0.07814254,-0.054768912,0.020183537,0.069901265,-0.05192876,0.007902683,-0.029625202,0.021117123,-0.0394111,-0.048633233,0.00025640486,-0.0041290605,-0.06756354,0.08878302,-0.08342653,0.050746307,0.05181428,0.14440988,-0.054947317,-0.05928441,0.0039284835,-0.026044566,0.036159188,-0.03893119,-0.06334448,-0.100186795,0.10363515,0.036799345,0.007041505,-0.049410105,0.08466023,-0.11329717,0.014888252,0.008728881,0.085958056,0.075623535,-0.021390636,0.0015632712,-0.036821913,-0.04131929,-0.02580763,1.2714641e-33,-0.025671491,-0.013096792,0.016395664,0.05815313,-0.0630941,0.07643417,-0.057870314,0.041475378,0.009803917,-0.039092947,-0.00066014973,0.019526912,-0.029417202,0.031701524,0.06386784,0.0033068804,0.035634678,0.0025457628,0.019326178,0.040517006,-0.08137317,0.0970358,-0.03931526,0.07150185,0.024466902,-0.066725105,0.014650589,-0.012924257,-0.089239575,0.040365104,0.09301526,-0.014187986,-0.003629034,-0.023606457,0.017558686,0.013276684,0.032360192,0.01604802,0.018144451,0.012858963,0.0041852375,-0.03658881,0.037448153,-0.054520946,-0.05559693,0.15085933,0.05922975,-0.020311104,0.048161943,0.01705983,0.08733729,0.0032484839,-0.06243136,-0.041020636,0.03089476,0.0635563,-0.047581427,0.052894395,-0.01752079,-0.07629054,0.09976205,-0.01807724,0.027745398,-0.04437664,-0.018385252,-0.06137714,0.10859006,-0.028101739,0.05127058,-0.014905844,-0.101371035,0.040329736,0.010822205,-0.06752586,-0.019850746,0.06429434,-0.038392365,0.057903104,-0.017721731,-0.0009969249,0.0055793687,-0.047664456,-0.022727432,-0.034502663,0.07259657,-0.08572852,-0.0010730987,0.047710914,0.007919373,0.059745073,-0.015756581,0.015238978,0.02253167,-0.002737417,0.0009624396,-3.835626e-33,-0.027663033,0.0016288476,-0.014558068,0.02676805,-0.052001122,0.12056549,-0.058183577,0.101101145,-0.051999312,-0.011865148,-0.048930474,-0.08246172,0.062297177,-0.10056092,-0.042930122,-0.030771311,0.04219927,-0.029778894,-0.07276163,-0.04139406,-0.008922633,-0.018003464,0.0438312,0.008800278,-0.01211181,0.057294272,0.016884323,0.080464765,-0.14033335,-0.007166165,0.030742336,-0.00032380485,0.05069181,0.052215964,0.014767953,0.07009835,0.10406339,0.06167343,-0.040569074,0.026643382,-0.07732379,0.010133353,0.02237441,0.072866604,0.034636185,-0.03487861,-2.6019225e-05,-0.04242514,-0.039836425,0.03524681,-0.010464801,-0.023039678,-0.018901296,-0.052473124,0.05554992,-0.05945669,0.042188913,-0.059511695,-0.05363566,0.04278248,0.09407912,0.06131428,-0.020101827,0.047796894,-0.060777064,-0.05115625,-0.05731819,0.02797343,-0.013616167,0.0074699284,0.041811988,-0.05741279,-0.008080578,-0.054864354,-0.08166427,-0.057026535,-0.03195093,-0.018968822,0.009690691,0.007765133,-0.15226074,-0.04589479,0.015955662,0.046784442,-0.019190723,-0.07258848,0.023534609,-0.027154066,0.007917848,-0.019740866,-0.014405854,-0.01702798,0.04896023,-0.053064313,0.036400568,-2.0489633e-08,0.060448583,-0.03145849,-0.03520738,0.045022327,0.053671774,-0.13594809,-0.0628581,0.04387249,-0.01948021,0.089471556,-0.063559465,0.07164955,0.0027601337,0.07659951,0.047550183,0.003815587,0.041645907,0.06171621,-0.008976692,0.026063453,0.016579902,0.01791525,-0.030609513,-0.037800875,0.0030961416,-0.024043933,-0.031187939,-0.105575055,0.0021854774,0.02946556,0.056295197,0.06060345,0.023719322,-0.050250888,0.017840464,-0.038552444,-0.014278276,0.011747683,-0.031377565,0.05173336,0.060061794,-0.06309761,0.03229216,0.001610639,0.030489296,0.006667342,0.0759573,0.03430655,-0.009072359,0.02482727,-0.03735387,0.027703125,0.023336433,0.02568165,-0.033027995,0.01804005,0.010104417,0.081239164,0.0060764956,0.014953932,-0.011934339,0.080662616,0.042853642,0.00058638246} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.780773+00 2026-01-30 02:01:13.459378+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2406 google ChZDSUhNMG9nS0VJQ0FnSURVN0tYOENnEAE 1 t 2409 Go Karts Mar Menor unknown Buen circuito buen circuito 4 2020-02-01 01:52:39.833374+00 es v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Buen circuito"} {-0.061292473,0.076930515,-0.042236388,-0.038978245,-0.04773784,0.034470975,0.060594607,0.046735592,-0.009074052,-0.012993152,0.067641474,-0.07386066,0.03122077,-0.04879062,-0.042948164,0.039184332,-0.047686838,0.062800094,0.0027741669,-0.030155726,0.05016903,0.011810035,-0.025023354,0.10381361,-0.028073186,0.039181203,0.08386198,0.03070757,-0.016600218,-0.12002633,-0.046061326,0.052605163,0.004749964,-0.041617338,-0.020682927,-0.0030955628,0.012520429,-0.04212165,0.017134272,-0.0017346271,-0.06337074,-0.09436551,-0.001180499,-0.07903686,0.08340337,-0.02370308,0.019178689,0.019128198,0.0742026,-0.09131292,0.045136686,-0.031684406,0.03290174,0.057742324,0.016471596,0.05096283,-0.027318623,0.032696653,0.072047725,-0.0031607,0.029574478,-0.025343023,-0.025198026,0.044208884,0.005086255,-0.024432346,-0.036350384,0.039031122,-0.06562022,-0.037668284,0.11838278,-0.085954,0.00089754,-0.011377055,0.03905184,0.027448496,-0.03437698,0.0321729,0.008233565,-0.10719086,0.05377647,-0.08827264,-0.064803235,0.0058464925,-0.016020644,0.053315252,0.033221196,-0.02663086,0.0045768353,-0.036958452,-0.02377652,0.00488841,-0.031918082,-0.043722004,-0.017970333,-0.04006005,0.016668132,-0.0056801345,0.04412547,0.1356743,0.0055920333,0.025514888,0.04340532,-0.004995252,-0.03981783,0.013198786,0.0846586,0.050706528,0.09169895,-0.07026947,-0.034765277,0.00022397786,-0.0364283,-0.024719857,0.09129894,-0.06382827,-0.0008509849,-0.030019222,-0.052078553,-0.009929773,0.054990426,0.028807033,-0.11568407,0.006538608,-0.010108014,-0.03431192,0.11207087,5.353596e-34,0.009487584,-0.033372357,-0.016122721,0.01763591,0.053740818,0.087783225,-0.06742989,0.022901291,-0.0245339,-0.011411603,-0.08678745,0.07245212,-0.06606836,-0.017905334,0.13980842,-0.075384416,-0.018068295,0.010771586,0.10095474,-0.031942766,-0.008265167,-0.021113703,-0.021006439,0.09042381,0.01867441,0.0022852453,0.02803231,-0.06925007,-0.026305124,0.015089014,0.09266323,0.04535494,0.020596573,-0.045682225,-0.08651225,-0.022999706,0.011557019,0.035995066,0.015294606,-0.055046823,-0.009265411,-0.021962643,-0.05395931,0.093724005,0.018689333,-0.07490818,0.052873608,0.04795703,0.15170348,0.05840409,-0.08304035,-0.04110986,-0.04120175,0.024024894,0.04143126,0.038727015,-0.008547813,0.08394167,0.034545302,0.030050447,0.031238673,0.142868,-0.048530087,-0.014474767,-0.08287095,0.03602318,0.007764707,-0.042953365,0.06125002,-0.09009396,-0.086223416,0.0044950373,-0.017447969,0.0033868998,-0.025570275,0.020018414,-0.06913843,-0.025037497,-0.021788599,-0.012986696,-0.102925576,-0.076874115,0.0401556,0.06239845,0.092318974,0.110321544,0.007905427,-0.047112215,-0.009514601,0.09838286,-0.022059537,0.03629588,0.08630059,-0.009530328,0.053810153,1.3318768e-34,0.01904726,-0.037661754,0.042030703,0.0604528,0.044711154,-0.009398537,-0.10128188,0.011689877,-0.08822327,-0.0023179431,0.040823184,-0.063433774,0.08672342,-0.011360108,-0.010481596,0.01813439,0.012432813,-0.014602141,-0.10074519,0.018638331,-0.035663202,0.056875087,-0.023281293,-0.047649294,-0.045924682,0.042991087,-0.012263139,0.031798437,-0.04897894,0.049228262,0.019925447,-0.021342147,-0.04994741,0.08819975,-0.03313672,0.04695949,0.0944863,0.057308517,-0.01817886,-0.022251371,-0.006861681,0.025168063,-0.079327695,-0.0065524797,-0.07226567,0.0119057475,0.01952325,-0.07704878,-0.020947836,-0.011940157,0.002242405,-0.011577619,0.0024595745,-0.048905946,-0.012540349,-0.064217426,-0.04226667,-0.030656165,-0.0777271,-0.036216084,0.05511251,-0.018820275,0.039924875,0.040918317,0.03868992,-0.020861419,-0.03701595,0.084148526,0.075495504,-0.025739176,0.04873411,-0.042260498,0.042567533,0.024731627,-0.09713417,-0.023987422,-0.05150151,-0.03244673,-0.01474959,-0.015817098,-0.032937154,-0.027474778,-0.061261714,-0.026404148,-0.03469932,-0.032980803,0.0637705,-0.029287905,0.011306014,0.028151141,-0.06234695,0.08573025,0.0005021183,-0.02707186,0.0053835018,-1.4297467e-08,0.022793727,-0.04281667,-0.007462472,0.021299042,0.12868853,-0.101929985,-0.025742836,-0.06329128,-0.069552384,-0.042954203,0.025625223,-0.012976143,-0.037359953,0.04452693,0.031108016,0.06258974,0.027337275,0.050512023,0.024721093,-0.007889635,0.02331073,-0.009115458,-0.011042153,0.043755807,0.07510371,-0.0022018345,0.012828203,0.06685069,0.059634063,-0.033891015,0.04530638,0.033649344,-0.0200625,-0.018095028,0.12418805,0.062916204,-0.07967437,0.06727256,-0.043703776,-0.013063573,-0.0028887703,-0.05104914,0.037463907,-0.0011311295,-0.015424236,-0.042233948,0.021760978,0.03540548,0.019411407,-0.0183171,-0.088969566,-0.057547454,0.036794536,0.054061346,0.039551504,0.03743725,0.05997678,-0.0009716937,-0.029305322,0.016792282,-0.03116877,0.09409422,-0.0028371764,-0.04606559} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.794512+00 2026-01-30 02:01:13.464025+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2408 google ChdDSUhNMG9nS0VJQ0FnSUNja2NPRXdBRRAB 1 t 2411 Go Karts Mar Menor unknown Perfeto perfeto 5 2021-01-31 01:52:39.833374+00 de v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Perfeto"} {-0.024285726,0.029974433,-0.06968858,-0.003224417,-0.026050456,-0.027176164,0.046515685,0.07247178,0.02220386,-0.008553613,-0.029249443,-0.09801907,-0.01310086,0.008743055,-0.08542923,0.081867345,0.05404068,0.04687844,0.058549277,-0.00031702055,-0.07894618,-0.009063449,-0.022677911,-0.0009810545,-0.050654896,0.062157154,-0.025932726,0.06689709,-0.04996323,-0.13898295,-0.030824859,0.015587869,0.049498063,-0.0014958883,-0.047622252,0.051444683,-0.037624005,-0.027396878,-0.07551876,-0.030964388,-0.03156606,-0.06865068,-0.060934637,0.022203196,7.566599e-05,-0.03045738,0.005004671,0.04445572,0.031342205,-0.07696849,-0.058447253,-0.11731634,-0.046491574,0.017741593,-0.0017565782,-0.005560517,-0.03054588,-0.033208936,-0.00712841,-0.013249639,0.026294088,-0.036353324,-0.058342412,0.017286591,0.052775048,-0.017309316,0.013474274,-0.029363414,-0.036569733,-0.042375185,0.058460012,0.014110527,0.0753959,-0.040102478,0.035917006,0.13188052,0.010267622,0.030942116,0.05860347,-0.08480447,-0.044859767,0.016987719,-0.029958468,0.0071931314,-0.010789915,0.014566786,0.042319387,-0.031492993,-0.06891576,0.04096436,-0.012869616,0.04409872,-0.058450926,-0.0017610354,-0.0990079,0.029171553,-0.022366334,-0.052890725,-0.033222478,0.11563344,0.0067386283,0.043277677,0.0070253247,0.030349616,0.008237607,-0.0141294915,0.008134204,-0.041521255,0.07160761,-0.019488622,-0.100289695,0.062805206,-0.06956956,-0.0037134131,-0.0142578315,0.008950738,0.034296956,0.043600205,0.11560462,0.01456968,-0.023663398,0.010172516,-0.107381694,-0.014767885,0.002107409,-0.044886936,-0.028104464,-1.3848893e-34,0.014670619,-0.015796777,0.080453865,-0.0045038783,0.03008677,0.035715755,-0.06633997,-0.050670747,0.021558633,-0.044113215,-0.06906997,-0.00036005978,-0.06367674,-0.008991787,0.041636962,-0.058404174,0.004934049,-0.0019552144,0.03312543,-0.016837036,0.044849385,0.06471842,-0.07416829,-0.03722518,-0.014603651,0.11555979,0.06558307,-0.042122386,-0.07990034,0.07399671,-0.016101724,0.06249302,0.013214526,-0.026091544,-0.0454421,-0.08311867,0.026366863,-0.06935506,-0.005555807,0.02499267,-0.07139903,-0.004982207,-0.043989312,0.006620822,0.004500698,-0.054552816,0.022115916,0.14689931,0.034791738,0.06568723,-0.047172498,-0.054515462,-0.0009708673,-0.033489887,-0.063359454,0.04069116,0.0029973572,0.02699247,0.07950605,0.015299052,0.09109488,0.11369701,0.012015534,0.0011383183,0.011157042,0.009774853,-0.03027797,0.018802548,0.054438516,-0.014332446,-0.046315614,0.027917843,0.06952254,0.00771581,-0.04205251,-0.024664447,0.012997017,0.056448296,0.04857423,-0.06520698,0.0014179964,-0.013199253,0.030408496,-0.014835312,0.0576169,0.114915535,0.0055634417,-0.03481509,-0.028128486,0.04992905,0.03553099,0.03678083,0.034269333,-0.023572007,-0.07577817,4.474825e-34,-0.027942078,-0.036374565,0.024677217,0.031379618,0.053502794,-0.0012759995,-0.043018952,0.05222406,-0.004872899,0.029945659,-0.06519606,-0.09476199,0.110105604,-0.09002647,-0.03668607,0.11354602,0.021043677,-0.025993587,-0.07186983,0.028394952,-0.12426464,0.01772522,-0.015603023,0.06084225,-0.02273769,-0.023202758,0.07718886,-0.016044809,-0.1302289,0.014017319,0.08581386,-0.030182911,-0.030433044,0.0016197825,0.0020644604,-0.03504803,-0.0030426846,0.09940424,0.09530616,0.022322813,0.046549346,-0.0058688107,-0.058044627,0.0767383,-0.016689664,0.00809567,-0.09403547,-0.017689738,0.08172855,0.013785958,-0.07007043,-0.01499423,0.050600186,-0.017039841,-0.03634258,-0.010688675,0.029413637,-0.04998927,0.0051133335,0.038775265,-0.039939318,-0.004892471,0.005932063,0.031445805,0.06509053,0.046308808,-0.031989165,0.03923174,-0.0039705806,0.03281282,0.07698043,-0.014051539,-0.07185262,-0.011191876,-0.06940505,0.07463098,-6.346636e-06,-0.007440032,0.0069907326,0.053806745,-0.009381312,-0.014979403,-0.060505126,-0.014654804,-0.050137483,-0.025111906,0.09356659,0.003952582,-0.0010826809,0.04652077,0.024865415,0.13870701,-0.0188494,-0.02598519,0.08662083,-1.3969539e-08,0.009496413,-0.053260237,-0.0015611842,0.14248541,0.07950498,-0.046067234,-0.03770777,-0.021870613,0.026602034,0.08183896,-0.019107709,0.030084888,0.021191694,0.014377325,-0.01315224,0.056494616,0.1298955,0.018964907,0.015769975,0.08546456,-0.11630555,-0.0010594391,0.06477947,-0.08289436,0.054596733,-0.05661572,0.047175597,0.005916524,0.04215054,-0.008131933,-0.027721146,0.020659523,-0.077588506,-0.071632564,-0.05721628,0.086999804,0.013226831,-0.0021764664,-0.030732641,-0.013065882,0.067016,0.020480953,0.1134934,-0.018118182,-0.08349605,-0.032347225,-0.063891605,-0.020517154,0.007825244,-0.0060026655,-0.012256764,-0.0071286657,0.030812692,0.048399482,0.056134876,0.096059754,0.004975032,0.03835547,0.0029821165,0.051578827,0.03094396,-0.020160768,0.070939034,0.009881914} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.825219+00 2026-01-30 02:01:13.472863+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2409 google ChdDSUhNMG9nS0VJQ0FnSUNxck9xUjRnRRAB 1 t 2412 Go Karts Mar Menor unknown De cine de cine 5 2022-01-31 01:52:39.833374+00 nl v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "De cine"} {-0.1047578,0.05272427,0.046717882,-0.017078198,-0.06845088,-0.007252544,0.04081986,0.068402246,0.05193373,0.005904568,0.023156108,-0.11253286,0.017879847,-0.043787383,-0.065123074,-0.0660875,-0.03236054,0.065569274,0.015068146,-0.01601706,-0.010453332,0.0112501485,-0.085472,0.015936123,-0.053640407,0.01743718,-0.0068730754,0.021628994,-0.0074218437,-0.054138258,0.052263908,0.043973234,-0.024702936,0.017653927,-0.03280273,-0.07259358,0.0037484763,-0.07029774,0.06339852,0.04778732,-0.058135238,0.016563157,-0.08604733,-0.016934963,0.014917577,-0.052240662,-0.043309275,0.07984521,-0.030336298,-0.027893882,-0.0065991404,0.008719342,0.03588823,0.062545255,0.063008346,-0.0077024805,-0.0011995605,-0.010574643,0.06552589,-0.01024002,0.06006144,-0.038809225,-0.042556312,0.013432615,-0.028391218,-0.016999166,0.0137742115,0.038838316,-0.054905683,0.016581021,0.03475368,-0.039698146,-0.019632466,0.008012401,0.08696265,0.04188728,-0.0639298,-0.025051294,-0.03875353,-0.05244651,0.047801115,0.029295601,-0.0067454125,-0.0243656,0.074198395,0.015116028,0.053800125,0.017512696,0.025661122,-0.026880106,-0.06257972,0.05253942,-0.111882746,-0.00033018226,-0.024972847,0.0066078166,-0.046125196,-0.027073493,-0.059523556,0.1313397,0.04501076,0.07442711,-0.005686626,0.0047219316,-0.06302632,-0.018632812,0.10050226,-0.030974269,0.013464035,0.0010095094,-0.054436006,-0.06936515,-0.057494156,-0.054478522,0.013321467,0.08112117,0.0025861112,-0.062256545,0.08139343,-0.09010021,0.0019783832,0.039768167,-0.10976495,0.014027597,-0.042376682,-0.021890108,0.02675966,-1.8763937e-33,-0.119027555,-0.02794164,0.048720416,0.089081764,0.034134954,-0.03156663,-0.07590601,0.02297137,-0.09040866,-0.06320872,-0.068638325,-0.032299,-0.029371686,0.018225249,0.055893753,0.04454976,0.05694371,-0.03585544,0.05277934,-0.062163617,0.022709772,0.016865805,0.015539173,0.07292817,0.048289154,-0.0032871491,0.017036816,-0.0036537237,-0.016481966,-0.008026992,-0.02427532,0.034326367,0.061629362,-0.021919832,0.050936945,0.020039573,-0.0018647466,0.07443708,0.01888968,0.09097718,0.038429875,-0.07141009,0.0017121487,-0.020408833,-0.016745837,0.064578585,0.025727255,-0.019134559,0.020100556,-0.09463034,0.01673229,0.025845086,-0.11324375,-0.01203041,-0.02921682,0.04125305,-0.014692612,-0.015414772,0.018785182,-0.065678366,0.050083157,-0.0092032375,-0.052475132,0.051609866,0.017952338,0.016725078,-0.0753701,0.06571953,0.096512206,0.0041250326,-0.13521016,0.00918347,0.067935556,-0.096047685,0.029128445,0.039932232,-0.06389674,0.025634905,-0.012283128,0.032467946,-0.069768116,-0.06209719,-0.025454847,0.01690453,0.093946,-0.002307884,-0.02622122,0.043748245,0.047425386,0.059365183,-0.018654482,-0.011763097,0.038972877,-0.040817037,-0.0050617997,1.3679856e-35,-0.03626408,-0.012748614,0.025941627,0.06153416,0.029945055,0.06941225,-0.043532237,-0.024919298,0.054330252,-0.02223134,1.5377327e-05,-0.11127063,0.09607615,0.003965668,0.0027209118,0.14110583,0.0007316864,-0.05567581,-0.014421803,0.02978187,-0.030422248,0.017340677,0.010029485,-0.014490301,-0.059904035,0.043332685,0.0703187,0.01979579,0.009020816,-0.038551375,0.0060539795,-0.07002789,0.041715737,0.058133535,-0.045572788,0.13633558,0.058465913,0.032356877,-0.000585211,0.03272822,-0.045128886,-0.017799642,-0.014869726,0.09177505,0.061681703,0.038912963,-0.038684696,-0.08812577,-0.095894255,0.055213895,0.08398553,0.08727453,-0.09226484,-0.022993699,-0.0039392556,-0.015823461,-0.047578067,-0.041086476,-0.014060208,-0.0043288292,0.04404626,0.060298003,-0.072908685,-0.0134982895,-0.0051076515,-0.0578485,-0.098399326,0.15238525,0.003785993,-0.017238786,0.08259213,-0.010692765,-0.09874194,-0.036319695,-0.10761912,-0.05059554,-0.038631234,0.064212225,-0.0034186349,0.060713027,-0.0972876,-0.09294723,-0.054730855,0.04077533,-0.0051067993,0.06431594,0.0020026362,-0.043754682,0.055781443,-0.0008999178,0.00058064534,0.0696875,-0.009711554,-0.029663293,-0.006494886,-1.3454396e-08,-0.0011376485,-0.036122732,-0.09444784,0.063186705,0.07885244,-0.124603875,-0.0024781134,0.006130949,-0.029636225,0.06147737,-0.015328236,-0.009402611,-0.0033924144,-0.0038171317,-0.025847971,0.06673827,-0.0021096321,0.0025823882,0.06340589,-0.0073207095,-0.00041197968,0.010938141,-0.02922093,-0.046665356,-0.030146755,-0.017404364,0.0026489543,0.011199544,-0.025556905,-0.033205498,-0.0032138187,0.051917944,-0.02635524,-0.08240362,0.0032207055,-0.022215262,0.0027614187,0.00460702,0.027156042,-0.047429528,0.07820985,0.09260646,0.024837993,-0.035170153,-0.027963428,0.0067589134,0.08729623,-0.018004412,0.0645121,0.014130739,-0.06269405,0.048973322,0.07526483,0.114314154,0.057497986,0.016578509,0.016204566,0.032283004,-0.053813837,-0.043691795,0.05503874,0.027273016,0.0458534,0.037628558} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.841436+00 2026-01-30 02:01:13.47558+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2410 google ChdDSUhNMG9nS0VJQ0FnSURDajhENjRnRRAB 1 t 2413 Go Karts Mar Menor unknown Me encanto me encanto 4 2021-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Me encanto"} {-0.011024144,0.054444514,-0.011655826,-0.0036359008,-0.03397512,-0.12573278,0.13236122,0.06156759,-0.0067550363,0.08942777,-0.03826644,-0.0697326,0.022279052,-0.010895615,-0.025921088,0.015022404,0.034816228,0.053103518,-0.012608602,0.014967068,-0.03152657,-0.005269629,-0.024336098,0.08793365,-0.05641532,0.024576468,0.001461522,0.032338113,-0.036984142,-0.112897165,-0.050633214,0.018297553,0.03159449,0.008122839,-0.033615448,-0.0057548652,-0.011317473,-0.047959536,-0.0033248016,-0.014296019,-0.08639776,-0.010881343,-0.01412345,0.036470946,0.026047364,-0.09547818,-0.059403997,0.043995433,0.020785008,-0.0131519,0.0074756416,-0.029256517,-0.033674523,0.07294687,0.019854644,0.03389993,-0.02254331,0.025235562,0.059126288,0.033199634,0.075655885,-0.012557639,-0.10024174,0.04175591,0.0046534333,-0.019440465,-0.017326623,0.010807987,-0.13706852,0.091284566,0.10090072,-0.07588104,-0.05387548,0.077570006,0.039362654,0.046313584,0.02361233,0.04588592,-0.030731644,-0.007571793,0.022108112,-0.010612514,-0.060521126,-0.013549294,0.039039448,0.013289093,0.06390589,0.010716674,0.028392795,0.04815182,-0.018256057,0.01318792,-0.0622771,0.005720699,-0.066005774,-0.017620675,0.03402904,0.05517652,0.016196908,0.097696945,0.07092895,-0.009240255,0.059906933,-0.003087646,-0.019843606,0.05023716,0.017344842,-0.01546708,0.07218533,0.03760864,-0.10610143,-0.09698202,-0.07370473,0.025234468,-0.04020117,0.08539135,0.071923345,-0.016247014,0.07150923,-0.040475294,-0.010370527,0.026924755,-0.042057008,-0.013133913,-0.011161893,-0.073756725,0.0025352736,-1.8176923e-33,-0.047353156,-0.11795774,0.04384948,0.046612523,-0.003316006,0.08079278,-0.022410013,-0.020407623,-0.117778435,-0.09494764,-0.13448039,0.05713544,-0.05039407,0.08025955,0.052500475,0.10189247,0.0339124,0.02512924,-0.06298463,-0.0049574175,-0.10995618,0.021797678,-0.021138044,0.0053768926,-0.10337641,0.040759847,-0.029344164,-0.10004011,0.016657755,0.03956835,0.03706652,0.06354081,-0.035750322,0.03198506,0.031733964,-0.034929387,0.136026,0.01614841,0.02267672,-0.028337788,0.03356738,0.02179217,0.025706058,-0.033280704,0.029586235,0.036890198,0.10694627,0.075282246,-0.005592225,-0.008628548,0.011072949,-0.013341017,-0.055503752,-0.026342314,0.0318429,0.056159154,0.014224571,0.040342644,0.047307875,-0.020978427,0.026284734,0.0482334,0.055069096,-0.039099306,-0.05171509,-0.06290855,-0.02010386,0.06263408,0.06561376,0.012053423,-0.065927126,-0.029946545,0.022373684,0.06268451,-0.032350887,0.035230223,-0.02247618,0.031855136,-0.09682894,0.041268498,0.01689955,-0.040662117,0.020653648,0.031163894,0.14539832,0.064210236,0.015980842,-0.04343715,-0.027336616,0.111039974,-0.058831513,0.04939528,0.011772168,-0.060271297,-0.04411081,6.488437e-34,0.0076253787,0.0073505775,0.011079644,0.05524837,-0.051160928,-0.029712569,-0.06557842,0.038806755,0.022807267,0.007072522,0.03533446,-0.11821766,0.13174976,0.019028286,0.023755481,0.032260954,-0.022757463,-0.042371105,-0.05895912,-0.09652876,-0.08743285,-0.014426229,-0.034050897,-0.041875787,-0.03581206,-0.0012736111,0.08042082,-0.007175773,-0.041837852,0.012177757,0.03590833,-0.03879867,-0.07219495,0.033976685,-0.026267068,0.10304234,0.022085268,-0.034785934,0.029302776,-0.005850574,-0.045325603,0.07108185,-0.016048437,0.047496453,0.023505576,-0.022258021,0.019461522,-0.015868606,-0.03851799,0.046465255,0.046716962,0.011482398,0.01206536,-0.009649808,0.036163725,-0.05552052,0.009932045,-0.0700282,-0.040332615,0.008822354,0.042993255,0.096950196,-0.076741755,-0.06335019,0.050385974,0.022842059,-0.07364714,0.05773201,-0.031031774,0.0062385886,0.04838151,-0.093191765,-0.09743083,-0.016261281,-0.03077478,-0.045343056,-0.055988565,0.017490352,-0.012097488,-0.042634126,-0.024880366,-0.0023047156,0.017563567,0.012548081,-0.036666956,-0.032115296,-0.01046026,0.0076137837,-0.026102623,0.028209908,-0.024018098,0.092906386,-0.0011881046,0.05640179,-0.0025394768,-1.45654475e-08,0.031253222,-0.014938733,-0.039752588,0.05004538,0.031443413,-0.037088733,-0.05714487,0.0028664167,-0.0044137663,0.023185788,0.00331636,-0.025075091,0.044309523,0.04487069,0.0394631,0.064495146,0.089607954,-0.019684084,-0.02118241,-0.004374048,0.008057956,-0.049769875,-0.04364311,-0.0078482665,-0.004594164,0.013050724,0.030974781,0.06995077,0.019809077,-0.01351626,-0.08062859,0.0268396,-0.021946523,-0.05039168,-0.014605903,0.0073332647,-0.14334014,-0.0071776547,-0.00017314537,0.012474184,0.081121586,0.067000076,0.026102789,-0.010388936,-0.100969225,-0.0035884376,0.018421508,-0.0009718045,-0.017678512,-0.034754895,-0.13691701,0.008902181,0.108409345,0.024202064,0.07606012,0.031295538,0.075976,0.029572211,0.014118073,0.008094909,0.032569796,0.061655384,0.009264313,-0.06486786} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.85745+00 2026-01-30 02:01:13.478352+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2411 google ChdDSUhNMG9nS0VJQ0FnSURncGJqVzRRRRAB 1 t 2414 Go Karts Mar Menor unknown Karts para disfrutar en familia karts para disfrutar en familia 4 2019-02-01 01:52:39.833374+00 ca v5.1 A3.01 {V4.03} V+ I2 CR-N {} {"A3.01": "Karts para disfrutar en familia"} {-0.054088596,0.05608506,-0.05032978,-0.017515253,-0.06973708,0.017485442,0.02755553,0.055698887,0.037175126,0.029422252,0.08404815,-0.062144108,-0.026455045,-0.009087539,-0.0028788242,-0.04645848,-0.060605094,0.022158211,-0.03670147,-0.031831592,0.03032231,-0.034315377,0.01768869,0.02489008,-0.089315206,0.0014243338,-0.0038359046,-0.024892498,0.044716384,0.0036566623,0.04876405,0.028853334,0.0076824673,0.011456413,-0.010714814,0.01059022,0.005283431,-0.013840035,0.03818196,0.0022692515,-0.064012095,-0.035741605,-0.0677403,-0.068288825,0.07003902,-0.010632765,-0.041629337,0.077969484,-0.03858292,0.011881341,-0.034482364,-0.08540096,0.026342712,0.030178336,0.07031055,-0.08813945,-0.038576018,0.013711525,0.100149915,0.0322647,0.005144418,0.05659007,-0.1234793,-0.008910827,-0.05075847,0.0017631016,0.03202547,-0.017040664,-0.032413114,0.11931639,0.053668354,-0.054682303,-0.010077819,0.078901306,0.020026337,-0.013125158,-0.07608698,0.033964064,-0.07017372,-0.06080725,0.075276665,-0.001625933,-0.037068415,-0.060321447,-0.030037975,-0.022590728,0.00032241116,-0.02853882,0.016012354,-0.020413414,-0.048825428,0.03936608,-0.0010183046,-0.04818322,-0.013365694,-0.052442413,0.00523308,-0.07403451,-0.009325857,0.042758413,0.05853609,0.022239491,0.06598963,0.12888297,-0.115699425,-0.043008648,0.009869393,-0.022269156,0.008294863,0.06142174,-0.10580928,-0.012999785,-0.036840823,-0.04103791,-0.06988407,-0.07596354,0.08017554,-0.072308704,0.045244664,-0.039322514,0.016222142,0.030412346,-0.023170825,0.008851368,0.07178767,-0.07316657,-0.009272437,1.4463017e-33,-0.103556536,-0.021580225,-0.014820858,0.09247088,0.01696317,-0.045795016,-0.045576315,-0.09078743,-0.018831471,-0.016442714,-0.015833763,0.043124884,-0.031770147,-0.02240057,0.117054015,0.062153175,-0.025477264,-0.018328236,0.011549397,0.07217309,0.008796007,0.021418508,0.0077888784,0.03502541,0.022239247,-0.03124085,0.050529145,-0.022808991,-0.074104324,0.034203883,0.035642687,-0.027287096,-0.0017297801,-0.081871,-0.07046911,-0.031291567,0.073716566,-0.017239714,-0.051035594,0.0017521204,-0.026994292,-0.04423926,0.02325204,-0.028269138,-0.0029372494,0.04772058,0.11485779,-0.04611562,0.0022768565,0.027522357,-0.013168134,-0.05709562,-0.02029529,-0.030291375,0.0053313677,0.021162583,-0.031326067,-0.002469536,0.0064833863,-0.061156064,0.114299014,-0.115745306,0.01435129,-0.022924663,-0.032299083,-0.10444475,0.040885422,0.025073256,0.09076842,0.052158035,-0.07827854,-0.029214226,0.0037756208,-0.022610547,0.003351077,0.102638625,-0.009431497,0.057904687,-0.07020748,0.033780944,-0.04065301,0.01275324,0.029340068,0.037592445,0.09503846,0.030773422,-0.025187701,0.042923644,0.0030857453,0.050600186,-0.031911172,0.011937041,0.0007108095,-0.020705188,0.056093533,-3.1104646e-33,0.03444055,0.022468245,0.03025874,0.08386763,0.0078013353,-0.0076668267,0.034922272,0.028675748,0.0924153,-0.010363733,-0.071558766,-0.096217364,0.107011795,-0.057684626,-0.028291427,0.08915913,0.04006724,0.014584174,-0.024114363,-0.025159787,-0.05997481,0.07084925,0.0023116048,-0.0031973608,0.018734425,-0.049425792,0.0025151325,0.07737564,-0.10787736,-0.06492944,-0.009978229,-0.10206626,0.035833526,0.017457468,-0.01920155,-0.0048640436,0.03608202,0.102349915,-0.054895096,0.020065235,0.044884738,0.0697727,-0.03483363,0.046415586,-0.020581763,0.00573607,0.050760377,-0.10475832,0.0852368,-0.050868254,0.10348376,0.067325674,0.028297622,-0.022746215,0.09203933,-0.05291577,0.03846629,-0.017875804,-0.074072115,0.03833941,0.06347357,0.014588642,-0.060047783,-0.015225441,0.040105876,-0.024079999,-0.10861851,0.025876364,0.037605606,0.07989187,0.052258708,-0.06397313,0.02785592,0.008613652,-0.032504242,-0.012818858,-0.06270679,0.0669113,0.06306343,0.08142767,-0.0108674355,-0.06031952,-0.049544726,-0.020872898,-0.06685061,-0.08168599,-0.020966025,0.011170855,0.052278806,-0.0009703136,0.038949482,0.012394341,0.06478126,-0.023826135,-0.004558704,-1.8573816e-08,0.056306753,-0.055075914,-0.09825336,0.007492058,-0.018099697,-0.016566737,0.0067608063,-0.0029813417,-0.062352054,0.054551434,-0.08868322,0.0217937,0.021138372,0.0395451,-0.0084600635,0.04938927,0.061973352,0.10164662,0.022091338,-0.0044500544,0.085807785,0.0023181809,-0.040654212,0.0661811,-0.04529901,-0.0030674206,0.012511781,-0.019791123,-1.714971e-05,-0.019339308,-0.022591772,0.03196103,-0.08163543,-0.04747931,-0.090012185,-0.03800366,-0.079623275,0.09764199,0.010580051,0.08064842,0.10355855,0.030074812,-0.022943785,-0.0131054465,-0.073301494,0.05347675,-0.011630428,0.04574715,-0.0566571,0.025169864,-0.051822443,-0.0017394371,0.009690559,0.018927764,-0.01463224,-0.041222733,0.054085393,0.029437562,-0.028238697,-0.04229786,0.101145625,0.084878825,0.06598811,-0.02201775} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.872393+00 2026-01-30 02:01:13.486434+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2412 google ChdDSUhNMG9nS0VJQ0FnSURXeXRxdnlBRRAB 1 t 2415 Go Karts Mar Menor unknown Bueno bueno 5 2023-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Bueno"} {-0.015295617,0.008618547,-0.04084676,-0.029485572,-0.006130053,0.025100863,0.08284502,0.012527833,-0.029457647,-0.061163776,0.009632053,-0.1087918,-0.09136841,-0.028174402,0.034513436,0.06524706,-0.0074290065,0.047442216,-0.02163965,-0.009342375,-0.031943925,0.039446652,0.030655406,0.12611479,0.019008683,0.0699409,0.09352495,0.06335444,0.029389635,-0.05227048,-0.056727268,0.021755766,0.039579447,0.0031014415,-0.018002313,-0.054273233,-0.016741274,-0.120221816,-0.030246425,0.035066772,-0.04017834,-0.0488821,-0.086303584,0.032880206,0.019013373,-0.07938643,0.03240687,0.09371626,0.08394621,-0.06267524,-0.016843831,-0.01711553,-0.0044630505,0.016523607,-0.0027157192,0.1414391,-0.0071695335,-0.019260263,0.06420772,0.032064654,0.012518925,-0.047374737,-0.025739696,0.02826853,0.0062972177,0.033613607,-0.055374146,0.028380562,-0.041985013,-0.023602312,0.08848203,-0.02089867,-0.014356276,-0.0039661443,0.0018832224,0.015478411,0.006917652,0.00074215955,0.04333784,-0.04936974,0.056443404,-0.022235345,-0.037794434,0.022445394,-0.0028302013,-0.024857169,0.06631134,0.049330972,-0.009710006,0.027915975,-0.009888692,0.032397997,0.04307066,-0.020006156,-0.083223134,0.025119843,0.08035408,-0.029662095,0.028380373,0.1606964,0.0039746272,0.01077484,0.07025412,-0.001379089,-0.0032499903,-0.0053888275,0.023892196,0.05750211,0.026119683,-0.016759463,-0.042232294,-0.04413828,-0.041092735,0.04255831,0.005992332,0.016678061,-0.00024941226,-0.0014331607,-0.023265336,-0.016590383,0.016727433,-0.012799851,-0.09248006,-0.024622178,-0.056365173,-0.008030781,-0.017310128,-9.828949e-34,0.06468344,0.0041217394,0.03042471,0.031026123,-0.014639569,0.09632498,-0.1027846,0.054221842,-0.07071,-0.037988212,-0.07108546,0.059786867,-0.054985847,-0.024172628,0.13753098,0.006877472,-0.059230305,0.09612762,0.0769038,-0.0008113385,-0.02874056,0.018580247,-0.076422475,0.026578637,-0.097686775,0.010188506,0.010439906,-0.10024647,-0.014453819,0.049410235,0.04297537,0.031565957,0.013419782,-0.028031673,-0.10363989,-0.12555191,-0.022890896,-0.06584936,-0.07957941,-0.04442208,-0.013716864,0.028090397,-0.0622307,0.087644115,0.01812971,-0.07922442,0.0843651,0.0088044405,0.07126058,0.034563717,-0.07478878,-0.024196792,-0.039080117,0.016583225,0.035465155,0.01067341,0.061956577,0.042529304,0.023429567,-0.0121174175,0.07041388,0.13537824,0.017164132,-0.028759167,-0.03415879,0.018400677,0.025411386,0.07921256,0.055868007,-0.07111013,-0.019039089,-0.013572086,0.054013018,-0.025908548,-0.020706378,-0.010745871,-0.01777103,0.012142068,-0.039749287,-0.043329686,-0.10749178,-0.030201724,0.080529384,0.06978107,0.04194073,0.10565741,-0.0040112664,-0.023744415,-0.019598188,0.03145974,-0.06332449,-0.01270387,0.075935416,-0.019639134,-0.045003217,2.0863015e-33,0.0071944674,-0.071753785,0.0050253826,0.031635713,0.0055691446,-0.053766932,-0.08360792,0.041017633,-0.045951463,0.040764883,0.018934015,-0.11334801,0.1482852,-0.0499696,0.02140893,0.08194109,0.066442214,-0.010812668,-0.13536996,-0.0327708,-0.05322719,-0.047159355,0.0022224018,0.0017206599,-0.056109827,0.061250214,0.043390986,-0.04483877,-0.04774535,0.018444795,0.06278102,-0.0059156152,-0.0909237,0.07284834,0.07347557,0.029304933,0.029990716,0.026888998,0.026471568,-0.01745827,-0.023512896,0.008666754,-0.042740382,0.035709467,-0.010404417,0.0041212654,-0.0068541374,-0.029727163,0.022581149,-0.009987333,-0.016941557,0.07375434,-0.04715351,-0.0037405924,-0.07749108,-0.047824655,0.0034972266,-0.09319855,-0.084753506,-0.012141301,0.01406017,0.025708351,-0.038197067,0.044468276,0.018464815,-0.010638739,-0.09625121,0.07874737,-0.020798335,-0.056567524,0.029211301,-0.06671868,-0.041388135,0.14131017,-0.083037145,0.034605622,0.00038447644,-0.100532435,0.0381987,-0.005241001,-0.040045775,-0.075344056,-0.047029823,0.056528617,-0.015425258,-0.025068399,-0.012829318,-0.050296664,0.00020746583,0.0669526,0.020657856,0.041172173,-0.017025832,0.008949844,0.011197362,-1.24924755e-08,0.021807194,0.004332334,0.04632584,0.039856825,0.06322139,-0.06711534,-0.070699595,0.0013384492,0.044459958,0.0050662067,-0.07830771,-0.07605917,0.030181568,0.055225227,0.023823429,0.05103501,0.0077402466,-0.0013248039,0.016601022,-0.027421664,-0.056936637,-0.019244203,0.033745155,-0.00524604,-0.005651307,-0.005156587,-0.033534218,0.10309862,0.10261572,-0.014990997,0.030125821,0.0467111,-0.032094628,0.06006357,0.07470144,0.029611073,-0.01180059,0.023119872,-0.09622694,0.01862136,0.026084201,-0.07600051,0.009866624,-0.0017791365,0.030997109,0.0039011447,0.042679235,0.041997734,0.05268096,-0.041389722,-0.047873966,-0.04654055,0.051333215,0.06533917,0.04604067,0.03298966,0.020030703,0.008038698,0.028493756,0.05366081,0.026014753,0.07498743,0.025470521,0.010462967} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.890385+00 2026-01-30 02:01:13.492298+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2413 google ChdDSUhNMG9nS0VJQ0FnSUNRMDh6THh3RRAB 1 t 2416 Go Karts Mar Menor unknown Por su trazado y atención por su trazado y atención 5 2017-02-01 01:52:39.833374+00 es v5.1 O1.02 {P3.01} V+ I2 CR-N {} {"O1.02": "Por su trazado y atención"} {0.00269806,0.008088193,-0.035842825,0.026877625,-0.015378889,-0.040557828,0.14917049,0.021331893,-0.018737389,0.017979186,0.08761434,0.050118007,-0.02781189,0.006561204,0.029160425,0.03451936,0.0010545799,0.015422738,0.012776503,-0.013713348,0.082341805,-0.039029527,-0.085448936,0.08894256,-0.06290436,-0.011747979,-0.03772488,0.011783991,0.00047624754,-0.06488575,-0.059470057,-0.009703052,0.0519546,-0.028953794,0.03703993,-0.026925799,0.05397755,-0.059407797,-0.0184212,-0.046749257,-0.11738099,-0.042317364,-0.0047791195,0.018777061,-0.022535441,-0.06858403,-0.001495887,0.11772415,-0.0054120114,-0.042175386,-0.023695124,-0.08668227,-0.033008255,0.009985087,-0.023470845,0.085508645,-0.027740724,-0.031643413,0.02614665,0.041225173,-0.0034076828,0.071245074,-0.102465935,-0.009115905,0.121687196,-0.015749777,0.050289378,0.0063402457,-0.034606274,0.12766165,0.10448594,-0.036540322,0.050634503,0.09092619,-0.015503613,0.03391101,0.0044384543,-0.06375403,-0.067951545,-0.005314211,0.01493254,-0.012524596,-0.00975563,-0.03730381,0.03467006,-0.015949145,-0.005971467,0.021659246,0.014900232,0.037759572,0.015266147,0.0628947,-0.09368658,0.011396877,-0.059326604,0.04165035,0.01801713,-0.0048756385,0.03851111,0.083596885,0.06977316,0.040574305,0.09765559,0.041038044,0.050088815,0.027858306,0.005751182,-0.03512807,-0.005613446,0.035441406,-0.05371492,-0.04111512,-0.007090403,0.037547868,-0.04774817,-0.022129023,-0.012809749,-0.0036109374,-0.035367053,-0.06861913,0.07114263,0.08205078,-0.042795382,0.015936313,-0.05382168,-0.038534302,0.010756361,2.1549906e-33,0.0072952863,-0.07590297,-0.025146319,0.04929643,-0.040367413,0.03415138,0.00058856764,-0.020982843,-0.038857657,0.08135609,-0.039879683,0.007717601,0.011924724,-0.0068540727,0.069126114,0.01032856,-0.037396137,0.033764448,0.07826804,0.05236913,-0.09572982,0.014295573,-0.04899089,0.017739957,-0.048669845,0.0061721643,-0.06936923,-0.033148106,-0.043437622,0.077555746,0.015745062,0.07809944,0.011110428,-0.028858233,0.00054438255,-0.14021163,0.04152326,8.8971385e-05,-0.03802719,-0.037559174,0.06326427,0.018453708,0.0030033402,-0.00977668,-0.009607009,0.013948196,0.051257513,0.08499698,0.07385591,0.018692179,-0.015111264,-0.08537286,-0.06619417,-0.059386387,0.030442605,0.031048845,-0.00388045,0.08526,0.024753338,-0.024490794,-0.016290328,0.0063012713,0.074974716,-0.03155755,-0.060446028,-0.05188442,0.023844171,-0.015513618,0.0467299,0.04247359,-0.10449137,-0.026287293,-0.04300337,0.05675912,0.006479964,-0.043289587,0.037593145,0.021808192,-0.038650826,0.009602857,-0.025368826,-0.006536827,0.0010085294,0.021787087,0.058920704,0.10968096,0.050417915,-0.00064014876,-0.06145954,0.10012085,-0.06746708,0.061110426,-0.0013071205,-0.05826332,0.032603286,-2.9950599e-33,-0.008138229,-0.056517735,0.003240223,0.01002348,-0.045951992,-0.018595198,-0.041232098,-0.035553575,-0.007848092,-0.08146166,-0.01116945,-0.12461366,0.08299297,0.012363926,0.024507819,-0.0019569916,0.02731947,-0.085354395,-0.10107776,0.0023985028,-0.03941972,0.037832808,0.019545594,0.041973975,-0.03892248,-0.07586018,0.08893515,0.06898972,-0.01679144,0.024721691,0.07050533,-0.013714377,-0.027271375,0.0732003,-0.06034169,0.05677619,0.010191202,0.022466222,0.02562842,0.008029675,0.0054969285,0.04956591,-0.037107874,0.030134348,-0.026756693,0.047042754,-0.013624087,-0.07348028,-0.066316605,-0.05247134,0.069690436,-0.048828438,-0.021928482,-0.022439187,0.05460027,-0.018072339,-0.06273671,-0.11020352,-0.04983248,-0.01913258,0.07437124,0.030063476,-0.107877895,-0.053209405,0.09885969,0.007542447,-0.018669222,0.03735882,0.022723632,0.092350625,0.08623586,-0.006509621,-0.11941876,0.027628316,-0.061950494,-0.029747728,-0.08098435,-0.0014868159,-0.0034910282,0.002969328,-0.04312482,0.02300449,0.0065143015,-0.010592779,-0.034810234,0.00431478,-0.048085924,0.093595594,0.002987603,0.12189398,0.021173434,0.03097058,-0.051595636,-0.09714632,-0.029635053,-2.0468548e-08,-0.009931936,0.01093987,0.02916691,0.01918748,0.048767462,0.038617797,0.031648487,-0.010925521,0.07301186,0.095754266,-0.025988603,-0.009003575,0.00021498078,0.06438903,-0.045658235,0.020144543,0.0197916,0.05205267,-0.049230482,-0.072259665,0.03063899,-0.0056368364,-0.0460422,-0.059282567,0.028969197,0.009026153,-0.04591221,0.06748365,-0.010125681,-0.006299175,-0.0055189217,-0.06250521,-0.02418775,-0.0767349,0.030837003,0.005130738,0.0022665078,-0.08988019,-0.029327633,-0.060831904,0.07497179,0.02736969,-0.0005337077,0.00093764206,-0.07549355,-0.092711866,-0.0061015403,0.058806017,-0.01640031,0.05669147,-0.034238208,-0.076353714,0.04100253,0.048754346,0.07807895,-0.039459158,0.052666325,0.030139398,-0.08529153,0.05413156,0.090399906,0.10082252,0.05080127,-0.118622646} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.905154+00 2026-01-30 02:01:13.494676+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2415 google ChZDSUhNMG9nS0VJQ0FnSUMxd192ZlN3EAE 1 t 2418 Go Karts Mar Menor unknown Leuk circuit leuk circuit 5 2024-01-31 01:52:39.833374+00 fr v5.1 O1.02 {} V+ I2 CR-N {} {"O1.02": "Leuk circuit"} {-0.10002705,0.11001704,0.027166283,-0.009907621,-0.040858254,-0.0050611263,-0.0024235973,0.09432765,-0.0050992765,0.009384736,0.011846363,-0.07246151,0.0071723624,-0.011246015,-0.067080654,0.039954826,-0.0052358303,0.050824113,-0.05800031,-0.044724707,0.07757802,-0.018968647,0.0028336544,0.0050955396,0.028697984,0.07605778,0.04414144,0.07151309,0.03844214,-0.056296073,-0.0057313074,-0.053021938,-0.032689694,-0.012182803,-0.09573226,0.01010148,-0.00083181506,0.046050828,0.033400398,0.030142413,0.006360226,-0.060855888,0.019837622,-0.076103345,0.037447788,0.028651258,-0.07529008,-0.05752613,-0.019790873,-0.08092478,0.051905725,0.0059832325,0.033731315,0.0559424,0.020228954,-0.03086548,-0.11295784,-0.014868849,0.059666827,-0.04478551,-0.010680453,-0.023541076,-0.013626014,0.0069522797,0.03002226,-0.080093935,-0.0016189486,-0.01867315,-0.021318644,0.0077110264,0.024910856,-0.050335474,0.0027963181,-0.09428744,0.107527405,-0.012800857,-0.04685416,-0.007777069,-0.009411758,-0.04074484,0.072707124,-0.02948935,-0.03363583,0.04620356,-0.034753606,0.009816701,0.033479847,-0.0029859084,-0.015435257,-0.09167365,0.0026282112,-0.04773584,-0.048705693,-0.05425534,-0.006415317,-0.03304863,-0.009607775,-0.021972362,0.014400305,0.145918,-0.025815222,-0.043250933,-0.025019988,-0.06037716,-0.07106896,0.049684048,0.04163737,0.080063246,-0.0056969463,-0.089606434,0.0048378548,-0.014751555,-0.104152225,0.044710774,0.04046058,-0.031788267,-0.01698762,0.03183676,-0.009148868,0.03229971,-0.014040265,-0.027078524,-0.08408787,0.0993814,-0.024418514,0.00013976386,0.042931613,-1.6279937e-33,0.00035476047,-0.04339543,-0.030478146,-0.091879696,-0.036627065,0.02086672,0.0046117124,0.09612674,-0.08984419,0.05470452,-0.0123743415,0.06937941,-0.022368863,-0.0196636,-0.020637246,-0.05077586,0.020291615,-0.051335957,0.033999797,-0.072449744,0.12028338,-0.04301176,0.042680945,0.022092186,0.04106808,-0.01122144,0.068038486,-0.06911914,0.0167177,0.01983762,0.040079854,0.041664798,0.002660518,0.014009729,-0.03238048,0.11188189,0.0025971213,0.025431013,0.026635835,-0.028789816,-0.02932533,-0.022929028,-0.05128672,0.013207837,0.026025712,0.033860903,0.026772056,0.0025622433,0.085280396,0.08926949,-0.013025544,-0.023662712,-0.09127197,-0.0067688883,0.03323047,5.4541702e-05,-0.004274572,0.05544134,0.0040494935,0.08642791,0.0053364695,0.049940065,-0.15739982,-0.037427098,0.0018166966,0.040845208,-0.04250187,-0.10028942,-0.025152609,-0.07383854,-0.05195103,-0.0065552075,0.035083428,-0.0044591487,0.022459978,0.0044861296,-0.07583914,0.026379557,0.022407245,0.0186748,-0.0689324,-0.04674981,-0.06458297,-0.019145273,0.067997575,-0.02240406,-0.04667704,-0.055172928,-0.03980353,-0.0148826325,0.033237062,-0.034328952,0.10939874,0.06759893,0.037284084,4.552497e-34,-0.024708845,0.0050570397,0.00552314,0.09804604,0.058639664,0.10625025,0.04135432,-0.0090312455,-0.03495283,0.1332101,0.114955775,0.02391661,0.015921384,0.045046538,0.039936285,-0.07589407,-0.014882332,0.009271447,0.03641611,0.091258645,0.042191595,0.0818749,-0.03236636,-0.031720147,-0.007489072,0.09879453,0.0659416,0.064696476,-0.00274313,0.06011595,-0.080178745,0.0059652575,-0.0096913325,0.031501126,-0.015312836,0.0053372136,0.03915968,0.04768362,-0.06416228,-0.04085686,-0.015965097,0.019055268,0.005839073,0.07169128,-0.00045335552,0.028745657,0.04407313,0.10349529,0.077559926,0.015190163,-0.065478146,-0.021440117,-0.013939164,0.01751097,0.02619752,0.054250963,-0.014922727,0.01679017,0.02025784,-0.08825845,-0.014222963,-0.10478992,0.057440337,-0.0054497025,0.017678244,0.030765204,0.020100983,-0.029962752,0.100357406,-0.024309834,0.044658314,0.019593542,0.07487233,-0.19081174,-0.07679327,-0.048223425,-0.05264053,-0.10978741,-0.028043991,-0.03477462,-0.00023069132,-0.02811038,-0.026319724,-0.0054103723,0.028438523,-0.014871092,0.0955801,0.023803102,-0.0057406137,-0.0219337,-0.04119669,0.12060767,0.009723117,0.0032144845,0.03296757,-1.2916863e-08,0.018128073,-0.0018712677,-0.055861153,0.028382171,0.09582322,-0.09621869,0.03730655,-0.06397772,-0.104762375,0.0486739,0.03342086,0.07588706,-0.005947094,-0.059119586,0.082303315,-0.002218957,0.016525475,0.007867601,0.018081779,0.036346346,-0.04262735,-0.07421185,0.042698584,0.022766264,0.001053476,-0.02106718,0.047732197,-0.021627584,0.051138338,-0.057494238,0.015173477,0.08295831,-0.005042261,0.04367676,0.025573416,-0.02521436,-0.07215929,0.05528346,0.0413771,-0.07849935,0.0019273978,-0.022484122,0.024831273,0.00025295027,-9.155496e-05,0.039355043,0.05743507,-0.06341987,-0.047567178,-0.033581864,-0.06658787,-0.042326916,-0.01457827,0.040024325,0.061058283,0.01274486,-0.027534924,-0.060023863,-0.035537437,0.044695817,-0.00672198,0.059921235,-0.019332884,-0.040906124} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.930891+00 2026-01-30 02:01:13.504234+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2416 google ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE 1 t 2419 Go Karts Mar Menor unknown Circuito impresionante circuito impresionante 5 2026-01-30 01:52:39.833374+00 it v5.1 O1.02 {} V+ I3 CR-N {} {"O1.02": "Circuito impresionante"} {-0.042120766,0.055838067,0.04722423,0.007080435,-0.05990926,-0.023905985,0.043306172,0.14181821,-0.06715504,0.034669973,0.05824593,-0.05051834,0.03308568,-0.007475059,-0.07978507,0.042524844,-0.016569942,0.011127022,0.023892041,0.00079729705,0.10530065,0.039596982,-0.10362834,0.049669284,-0.037351187,0.06334423,0.014814741,0.03548937,-0.011775331,-0.07408028,-0.108954586,0.050072107,0.00473537,-0.010297082,-0.006228255,0.03173084,-0.017602714,-0.035430398,0.030899731,-0.01861119,-0.07843356,0.027215458,0.0035204447,-0.009986281,0.097484924,-0.013952509,0.047427922,0.02089908,0.07614569,-0.0995467,-0.017256385,0.004975957,0.13909133,0.02502958,-0.0043116747,0.038317584,-0.028512342,0.041544944,0.013982947,0.02262656,0.0052605667,-0.00233258,0.025082208,0.016533809,0.026212877,0.019860296,0.055376276,-0.012444338,9.9166544e-05,0.034646794,0.060152154,-0.059664648,0.035466094,-0.02715468,0.068393864,0.02227945,-0.021808026,0.031868685,0.053035352,-0.016211675,0.0053868187,-0.11592368,-0.06603545,-0.04307424,0.00047198465,0.026895862,0.024160897,-0.09282267,-0.030540438,-0.050612725,-0.04387387,0.011377812,-0.09678795,-0.034453306,-0.04040902,-0.016982958,0.05358063,-0.050769195,-0.026795473,0.10751146,0.05719048,0.01743221,-0.002703977,0.0141173275,-0.06510852,-0.021942731,0.01720437,0.026650356,-0.0275411,-0.024175556,0.005045564,0.017953917,-0.034803156,0.038613915,0.099359415,-0.05301212,-0.0031419771,-0.03819278,0.042472646,-0.029999122,-0.0049619344,0.005160153,-0.06063188,-0.017499771,-0.035515416,-0.073949605,0.11512744,1.9394777e-33,-0.01673509,-0.00591098,-0.033310495,0.010402954,0.022666914,0.020086048,-0.033199128,0.025085319,-0.038005803,-0.03241781,-0.05125273,0.035314195,-0.03553058,-0.0175177,-0.020866562,-0.048888687,0.05934195,0.007870325,0.038115498,-0.021773739,0.06905207,-0.018945903,0.039575953,0.05005717,0.040383007,0.030474292,0.007373125,-0.008948817,-0.08811097,-0.017324936,0.06211171,0.06189135,0.045623604,-0.048514057,-0.065684944,0.022534741,0.042751554,0.022418087,0.023690758,0.0032185374,-0.0746014,0.043861534,0.0051679006,0.07207509,0.07757267,-0.091812015,0.045684367,0.0435945,0.13848954,0.09771464,-0.053618312,-0.049575,0.0005380342,-0.012309034,0.0007960042,0.08320148,0.010653638,0.017817687,0.043688595,0.006396566,-0.040331505,-0.0020542347,-0.08420291,-7.905859e-05,0.010728271,0.07188252,-0.07966575,-0.110281445,0.022840446,-0.027096536,-0.066908,-0.074436955,-0.0071732355,0.0045140735,-0.043441188,-0.011322665,-0.020918563,-0.056435447,-0.036597457,-0.010088123,-0.051923964,-0.061284997,0.054662563,0.014354249,0.06141653,0.05279075,0.02466941,-0.017571246,0.0103945695,0.041489296,-0.0011022687,0.052866664,-0.017446544,-0.024529116,0.10983861,-2.2186385e-33,0.03942641,-0.04510033,0.106266536,0.016808156,0.023339441,0.004264088,-0.094266266,0.025513591,-0.054969393,-0.0568312,0.007209922,0.00018291698,-0.0271982,-0.030107886,-0.06748865,0.028090004,-0.033067737,-0.070436336,0.026446115,0.11982371,0.06754812,0.054184195,-0.029410508,-0.07073151,-0.04271343,0.024923213,-0.0133776385,0.013110775,-0.028943818,-0.0006918326,0.04578026,-0.0067263083,-0.035749268,0.044648487,0.015993005,0.024465993,0.032972105,0.060791638,-0.0361292,0.021684963,0.02088235,0.07363513,-0.058696274,0.020706192,-0.08023334,-0.037358984,0.04623323,-0.077852495,0.0043692095,0.050831012,-0.0145201115,-0.07794195,-0.012442047,0.01362153,0.03575918,-0.018314695,-0.018292923,0.0154694915,-0.07521336,-0.056857165,0.056989376,-0.06697699,0.008256188,-0.024346715,0.063789435,0.025096465,0.024527604,0.11746364,0.12471116,0.0068980674,0.04285656,0.07478589,0.012217202,-0.09312381,0.036742564,0.0044291792,-0.1749328,-0.021542527,-0.011458909,-0.014314368,0.03299573,-0.008172355,-0.109668285,-0.06256571,-0.018892838,-0.009757702,0.05342283,0.04746347,0.009882872,0.010403827,-0.0601438,0.084439084,-0.024975322,-0.030309316,-0.05020331,-1.8793303e-08,0.0033664163,0.03483822,-0.054857466,-0.0013283223,0.12765957,-0.1263924,0.027417727,-0.09224372,-0.08031571,-0.017535837,-0.0021993488,-0.009869792,0.0055716154,-0.0027549919,0.056082323,0.0016237131,-0.030102784,0.10117217,-0.034927603,0.11593725,-0.014776826,-0.014137377,-0.029631514,0.009919524,0.13802691,-0.015442021,0.007678978,0.023961823,-0.070005834,0.055333253,-0.044841956,0.016664509,0.0071466393,-0.08609427,0.04718362,0.054480363,0.04100204,0.01412471,-0.047780346,-0.13176991,-0.025428694,0.016079456,0.04387101,0.043586023,0.01768259,-0.057661217,-0.021469882,0.004265606,0.055621915,-0.07483528,-0.0988338,0.014231691,-0.03502143,0.008715626,-0.019500908,-0.027017716,0.021503363,0.057735518,-0.063052915,0.01673722,0.031225761,0.0023196132,0.03147406,-0.09527346} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.9436+00 2026-01-30 02:01:13.508096+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2417 google ChZDSUhNMG9nS0VJQ0FnSURnZy1mbktBEAE 1 t 2420 Go Karts Mar Menor unknown Woow super woow super 5 2019-02-01 01:52:39.833374+00 en v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Woow super"} {-0.13648479,-0.020112492,0.011345461,0.005289252,-0.009183028,-0.01903457,0.08882965,-0.05653366,-0.053054333,-0.011380624,0.055561278,0.06464199,-0.0420853,0.02618629,-0.04334285,0.026885059,0.052645642,-0.031296477,-0.16030903,-0.040333167,0.114339694,-0.043194328,-0.023432523,-0.008551635,-0.017790522,0.032877646,-0.037867114,0.020355152,-0.0052892314,-0.012787094,-0.038553994,0.060631774,-0.032906238,0.01601267,-0.026159242,-0.064685546,-0.017203307,-0.027746998,0.022039352,0.018457728,-0.0053191893,-0.050115813,0.0031065706,0.010249793,0.023613494,0.056099784,-0.02714055,0.010637431,-0.030207511,0.050488614,-0.036100116,-0.064538695,0.023366893,0.062930144,0.0039843456,0.11288184,0.022643447,-0.06869281,-0.0025704226,-0.025850518,0.010830661,0.046199348,-0.056952752,0.018728474,0.020107698,0.0632479,-0.023538947,0.0018909578,-0.045169387,0.11049878,0.022446603,0.07193385,0.025734035,0.023648879,0.07357199,0.029050523,0.043653294,-0.040084504,0.083576374,0.02861665,0.039847963,-0.108626895,-0.020296836,0.0014507863,-0.039587047,-0.059044804,0.06361668,0.030166931,-0.062193234,-0.070231125,-0.027941259,-0.043876853,-0.05793214,0.004862533,-0.07071115,-1.7071128e-05,0.012553143,0.017234348,-0.011037547,0.11994436,0.022380631,-0.05101405,0.09352826,-0.10429008,0.07427198,0.025984844,-0.07847791,0.13955602,0.008495826,-0.020055212,0.011806192,0.00040652405,-0.0028754587,0.07126031,-0.013997839,-0.007357835,0.006030282,0.04552666,-0.0643469,-0.10593792,0.072321646,0.05268925,0.059754524,-0.03369727,-0.041693047,-0.052575666,0.044732507,1.2418426e-34,0.023502616,0.013932896,0.018607784,-0.006673682,0.0829472,0.011305571,0.04504511,0.0115467915,-0.02596528,0.029044617,0.025069598,0.019590829,-0.014731496,-0.005821179,0.031987946,-0.033844247,-0.078494035,0.010058722,0.010761024,0.059359707,-0.025426764,-0.008957095,-0.022847604,0.016548157,-0.07446945,0.005562886,0.023820987,-0.050516266,0.016320406,0.0755875,0.0025094394,-0.010424112,-0.037260443,0.007823861,-0.013860562,-0.0088582495,0.012334027,-0.07820812,-0.034194857,0.05715435,0.042781916,-0.028065024,-0.03648409,0.012595073,-0.03969753,0.074297376,0.054188456,0.08969745,0.07049596,-0.010823948,-0.03466563,-0.026349813,-0.0908907,0.09538601,-0.023013242,0.052487522,0.05194819,-0.014745252,-0.042912018,-0.004228974,0.0509967,-0.0223424,0.010166002,-0.030755665,-0.1003994,-0.06490647,-0.03412345,0.019204354,-0.038251005,-0.047757603,-0.05801826,-0.009743545,0.1455661,-0.07376182,0.012727771,0.036378685,-0.000992105,0.041257244,-0.0051400806,-0.013957024,-0.08205351,-0.022834267,0.056320727,0.028681457,0.03686893,-0.013740442,-0.016826482,-0.11312772,-5.1458377e-05,-0.04147284,-0.0655303,-0.0113186315,0.03102314,-0.014530842,-0.07252335,-1.3240014e-33,-0.0068012406,0.031329237,0.014643986,0.007205359,0.06995354,0.03151741,-0.004307252,0.037022788,-0.06272275,-0.009427885,0.04083202,0.08649377,0.07168427,-0.006628398,0.049556836,0.014641147,0.11091597,0.033791788,0.00030860817,-0.008904238,0.0005711099,0.028555859,0.05710728,-0.023645783,4.2269297e-05,-0.011781139,-0.021221979,0.11783854,-0.014951733,0.010783075,0.060712498,-0.0260697,-0.060841538,-0.051446307,0.05246463,0.030145742,-0.035711925,-0.01859182,0.016043555,-0.034532007,-0.048802566,-0.008260665,-0.100883186,0.08429349,0.06647874,-0.04102415,0.042612616,-0.06247443,-0.029595656,0.047165904,-0.06897061,-0.07002679,-0.020929273,-0.025180403,-0.066346385,0.032675974,0.047823377,-0.005288759,0.049048774,-0.025377547,0.03795362,-0.0088995835,-0.028772485,0.03936363,-0.022810843,-0.05688296,-0.031138182,-0.06736502,-0.05483337,-0.0076026716,-0.051750083,-0.017451216,-0.15224317,-0.02880483,-0.009531502,-0.11107522,0.048527643,0.05080519,0.02584459,0.06640916,-0.103988536,0.033151235,-0.071629606,-0.020144254,0.042656597,-0.0018653062,0.022380369,0.028566884,-0.028806726,-0.072487704,-0.045102924,0.106398076,0.021781638,-0.013187705,0.03801134,-1.8937945e-08,0.021769479,0.10270445,0.040829986,0.024197647,0.05135178,0.04852453,-0.07902427,-0.07439149,0.004384767,0.05817273,0.06462755,0.007413016,0.034030844,0.024240283,0.037419103,-0.108480826,-0.06137429,0.10853922,0.00069653906,-0.094452836,-0.01971931,0.03131443,-0.0027840715,0.03460262,-0.064145334,-0.012845648,0.032157533,-0.008086311,0.039183646,0.0016974652,-0.047575958,0.11848748,-0.05755293,-0.05136413,0.035756983,-0.049135316,-0.0420119,0.045259487,0.006169283,0.10444932,0.031447988,-0.05070644,-0.09325279,0.049558263,-0.031211285,0.0014356758,0.08361301,-0.042360224,-0.005863896,0.0028069941,0.010106725,-0.0042718574,0.0022450925,0.04712356,0.0932294,0.06947937,0.01799973,0.023652263,-0.023633085,0.056879308,0.12073323,0.027837204,-0.09136633,0.042176764} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.957357+00 2026-01-30 02:01:13.510753+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2418 google ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB 1 t 2421 Go Karts Mar Menor unknown Muy familiar muy familiar 4 2026-01-30 01:52:39.833374+00 sw v5.1 A3.01 {} V+ I2 CR-N {} {"A3.01": "Muy familiar"} {-0.07041972,-0.08520958,0.013442142,-0.0100535685,0.008556324,-0.03921495,0.14133032,-0.025550185,-0.018220924,-0.061005183,0.013025408,-0.054161116,-0.0039640525,0.007068543,-0.047187883,0.11473501,0.026324717,0.0123783415,-0.064681016,0.020138808,-0.00037326408,0.054190192,0.048708107,0.036694713,-0.040576804,-0.018200384,0.04434051,0.11539074,0.06295305,-0.01629841,0.058449686,0.11586133,0.015574308,0.0256998,-0.044235244,-0.006348248,-0.043489557,0.0035612849,0.016755152,-0.019574428,-0.003330158,0.042163685,-0.032116875,-0.02664217,-0.055781413,-0.007615475,0.029112699,-0.028776657,0.05297294,0.017731242,-0.03188437,-0.057846583,-0.051295977,-0.016475966,0.046950333,0.018706638,-0.09178503,0.014475117,0.015218485,-0.048112378,-0.04530519,-0.014171137,0.021393705,0.018541802,-0.0021818322,-0.008326697,-0.027851898,0.031341888,0.014397289,-0.104707554,0.014566596,0.011407638,-0.036675833,-0.08324918,-0.029357873,0.038387544,0.05997782,-0.036834657,-0.047772676,0.004903136,-0.05108254,0.067089975,-0.050011773,-0.0407698,0.069548376,-0.01597597,0.013820021,0.053062186,-0.07949978,-0.06291767,-2.0433201e-05,-0.036963597,0.052982453,-0.012080633,0.061525907,0.06879825,0.0131717,0.006383974,-0.107572466,0.19844681,-0.016536264,0.041927315,0.04830346,-0.0045873085,0.042172,-0.014675201,-0.012558421,-0.044485223,0.00018069625,0.02205195,-0.06238981,-0.012733326,-0.0733631,0.07558674,0.029283864,0.022153689,-0.021908164,0.035444308,-0.0073528807,0.010082934,0.006914639,0.05201647,-0.09354637,0.044283696,-0.076984614,-0.021340342,0.013042049,-1.1074578e-33,0.003952526,-0.07938094,0.025056858,0.06667804,0.01721491,0.04776607,-0.04077839,-0.00018812405,-0.108229645,-0.035374213,-0.0091667175,0.070576005,0.012333085,0.04359169,0.0023993293,-0.013566142,0.013551343,-0.024396332,0.06896911,0.027480405,-0.045356985,0.053769253,0.0046965405,-0.030700844,-0.055222172,-0.028001739,0.036290612,0.0067033162,0.05969321,0.036865935,-0.042518094,0.005313787,0.014201827,-0.03619315,-0.08777853,-0.058047175,-0.027137922,-0.01209293,0.013857953,-0.024227388,-0.0215129,0.030590588,-0.10402819,-0.0041851783,-0.03694835,0.033071853,0.07115891,-0.047582384,-0.001348005,0.060940195,-0.059950203,-0.089032345,-0.048224483,0.044835925,-0.007414803,-0.039561316,0.03488632,0.027162414,-0.023752693,-0.0038025395,0.043254554,-0.0029440124,0.018417463,0.019951876,0.017300693,-0.011964583,-0.055249795,0.029111573,0.038937494,0.018346151,-0.034559313,-0.033257253,-0.07171036,0.02006071,-0.031710308,-0.060499407,0.10112861,-0.009612599,0.0378093,-0.014932751,0.039984874,0.032400727,0.01866125,0.0135841165,-0.060084887,0.030055288,0.018459147,-0.0077291364,-0.03125827,0.05643206,-0.077976465,0.010402989,0.01053864,-0.026557919,-0.0847625,1.2179384e-33,0.01940329,-0.01348084,0.04770124,0.058323696,0.013483597,-0.027657785,0.0045979866,0.009075921,-0.07243958,0.01601711,-0.04022598,-0.13830177,0.03345418,-0.04259356,0.1319774,0.10552449,0.10122926,0.07603655,0.031230971,-0.018502854,0.028449265,-0.040689804,-0.0013767405,-0.06461074,-0.07175912,0.023804571,-0.01497727,-0.0006260181,-0.10141607,-0.027480869,-0.12158522,-0.01563434,-0.019108482,0.012222871,-0.0036673613,0.0054451404,0.115022436,0.07734984,-0.033757355,-0.06733785,0.022389533,0.07923411,-0.02540682,0.12655392,-0.03755515,-0.006360894,-0.050366994,0.02011073,0.057123,0.07858018,-0.04146236,-0.0128148515,0.03023489,-0.08481628,-0.037732452,0.000968048,0.009642913,-0.027390359,-0.09336871,-0.062155664,0.028483545,-0.038127933,-0.13276117,0.024856307,0.040274814,0.056036282,-0.060093127,-0.0061261584,-0.058602724,-0.04274471,0.0288381,-0.03090774,-0.11200817,-0.14784338,-0.033707168,-0.037699882,-0.07731496,0.0032102284,-0.04263827,0.030439112,-0.015851578,-0.005097198,-0.07637216,0.056433864,0.028148795,0.05102371,0.060459953,0.039712902,0.08571777,0.02862938,0.040964454,0.05666224,-0.028864274,-0.00646491,-0.004128188,-1.4819684e-08,-0.06711158,-0.018920133,0.050014485,-0.005327658,0.016357485,-0.016527116,-0.038501084,0.054120105,-0.030324232,0.05830058,0.059610866,0.051098194,0.0010477051,0.10391591,0.03187579,0.11032452,-0.0034744344,-0.017623058,0.0014110294,0.042793866,0.042872746,-0.0012735899,0.024732776,0.15892015,-0.04153128,-0.010486174,-0.026073711,0.106729805,0.0401326,0.07697102,-0.014617921,0.021329515,-0.019146012,-0.092852205,-0.0470756,-0.025609707,0.057904653,-0.038290337,-0.0454531,-0.0038359317,0.0058070533,-0.026922518,0.085170366,-0.0538005,0.0059203915,0.010987786,0.06560375,-0.0041404204,0.037737813,-0.020690499,0.025822459,0.07150849,0.024930302,0.1263597,0.06020717,-0.051721297,0.03518104,0.0019560014,0.011886968,-0.0065227244,0.08108962,0.029981457,0.065160684,-0.020519169} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.969865+00 2026-01-30 02:01:13.516567+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2419 google ChZDSUhNMG9nS0VJQ0FnSURVOVBQWUR3EAE 1 t 2422 Go Karts Mar Menor unknown Genial genial 5 2020-02-01 01:52:39.833374+00 ro v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Genial"} {-0.045568604,0.04729178,0.0024896811,-0.0068588885,-0.061426267,-0.0036095914,0.113984026,0.02397349,-0.027903913,0.0006237715,0.0059137284,-0.055445217,-0.021852117,-0.053070277,0.026598113,0.034865297,0.030410014,0.0023874044,-0.0015672154,-0.036702726,0.0043622986,0.071280405,0.03840588,-0.050754692,-0.062233895,0.04128222,-0.027824957,0.13264242,0.09771928,-0.045974806,0.0076715695,0.11762842,4.4937515e-06,0.009310673,-0.0003379452,0.0008948683,-0.025559664,-0.02406388,0.022868246,0.0052633225,0.017299423,-0.04954961,-0.06257225,-0.0101051945,0.03427081,-0.054067142,-0.066967025,0.04037897,0.04088933,0.07325226,-0.029059192,-0.047136463,0.07044835,0.01412785,0.015391192,-0.0050513875,0.05433609,-0.1445919,0.020457566,-0.025126731,-0.0026589527,-0.0015641853,-0.10233984,0.00026015582,0.020958245,0.006802424,0.053638663,-0.067211114,-0.022947626,-0.045395438,-0.017473726,-0.014962591,-0.012327811,0.05321345,-0.116768084,0.11276456,0.076235086,-0.0011574797,0.04970712,-0.012935083,-0.043678414,0.005552313,-0.023230268,-0.042111,-0.029510109,-0.012277251,0.10746893,-0.035599545,0.016619666,0.032310527,-0.09911002,-0.022371903,0.10679727,0.029484881,-0.01984637,0.0388811,-0.033495788,-0.13083062,-0.046775922,0.123905174,-0.024687698,0.072469585,0.009512729,0.07522169,-0.0344602,0.020238344,-0.014631475,0.028038654,-0.018491765,0.03452233,-0.06985582,-0.0031374898,0.0038838873,0.053510197,-0.014718228,-0.035946287,0.006004981,0.06298946,0.018097835,-0.011983062,0.05622429,-0.049607985,-0.06548859,0.015928652,0.01463809,-0.039124563,0.0362113,-3.486116e-33,-0.0037352946,-0.01832095,0.05574533,0.0060294424,0.038436837,0.050778057,-0.052039206,0.023545885,-0.028607305,-0.0015567498,-0.09788498,0.05351829,-0.04791054,0.057327017,0.041808646,-0.03557981,-0.03245286,0.047192633,0.05028591,0.023017246,-0.01609773,0.0889167,0.08279839,-0.0210979,-0.019544888,0.06891921,0.024412492,-0.08184489,0.004565732,0.029599495,0.008691102,-0.070660785,-0.0025866886,0.01692851,-0.028750712,-0.0035629093,0.042144246,-0.06081201,-0.0042438265,0.0707862,0.0011148906,0.0361625,0.005375721,0.0405278,-0.01798163,-0.015708096,0.078428976,-0.014151678,-0.025693713,-0.026718302,-0.010044884,0.0035315286,-0.11415855,-0.05676438,-0.026429415,-0.0056209653,-0.0008805929,0.040295225,-0.02022968,-0.06463898,0.020457298,0.07801092,0.070699245,-0.020934165,-0.000614838,-0.05455047,0.012004313,0.01726667,0.023023427,0.022374202,0.010385888,-0.02436049,0.05378741,0.058579497,-0.041094277,-0.018601855,0.081574656,0.0042580157,0.0074644447,-0.042389542,-0.05006828,0.124097764,-0.045359336,-0.06841148,0.033334445,-0.030069482,-0.0009784685,0.01418221,0.05360806,-0.07187787,0.029869648,-0.012874691,0.012966847,0.010314257,-0.11788917,2.3704652e-33,-0.07980348,-0.06537803,-0.01054966,0.05123943,0.019303067,-0.07250264,-0.024015717,0.077210955,-0.09448177,0.0043405644,-0.040868364,0.053275466,0.10176247,-0.04039868,0.010449078,-0.007928054,0.10552515,0.019293888,-0.049861506,-0.00025116996,0.004594292,0.012928662,-0.003423188,-0.026785461,-0.032319028,0.04990979,0.030573603,-0.04651263,-0.10007104,0.009838348,0.10208156,0.068715595,-0.0041489126,0.016105767,0.11954897,0.098523505,0.12438058,0.07329895,0.011545349,-0.034443393,-0.03434409,0.078408465,-0.034848265,0.12544176,0.01704258,0.029568996,-0.03630938,0.026857836,0.012530409,0.09634033,-0.07099996,0.0788427,-0.03535342,-0.09805798,-0.013245014,-0.03217948,0.047466002,-0.071837015,-0.028964764,0.0601366,0.056751516,0.021317612,9.514945e-05,0.019686077,-0.0031236606,0.02920994,0.007891827,0.04796675,-0.032943,0.0005247089,0.0413576,0.045675293,-0.075703576,-0.05271479,-0.0026307392,0.021050058,-0.07734603,-0.0016271448,0.019199217,-0.08769055,-0.06560166,-0.015837628,-0.078210615,0.009537276,-0.101368725,-0.045007594,0.09200759,0.074927814,-0.016529365,-0.04924463,0.047540724,-0.056168072,-0.07484595,-0.016989134,0.0069677,-1.3235369e-08,0.029872194,0.03559271,0.037157685,-0.011647799,0.040421523,0.019184185,-0.11206612,-0.039690807,0.089828655,0.017546825,-0.027745608,0.040251058,-0.024827195,0.064621665,0.05402082,0.028608099,-0.07991534,-0.040306263,-0.06692741,0.035711095,0.009350246,0.052784,-0.023990279,-0.052322946,0.038834333,-0.055773165,-0.021462286,-0.013651594,-0.03134934,0.013758649,0.019374384,0.042081524,-0.16407847,0.011685824,0.006612588,0.020629333,0.059057314,0.043899614,0.03355296,-0.058150493,0.045542438,-0.084365025,0.06459439,-0.02617376,-0.13211027,0.021962507,0.03405213,-0.04232087,-0.04838867,-0.04281163,-0.07278259,-0.011728425,0.045041,0.00064128207,0.028856777,-0.023036296,-0.032114904,0.0088371765,-0.0044094305,0.0257475,0.060617987,-0.03251486,0.039856303,-0.0064564967} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.982351+00 2026-01-30 02:01:13.53092+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2420 google ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB 1 t 2423 Go Karts Mar Menor unknown Los niños disfrutaron los niños disfrutaron 5 2026-01-30 01:52:39.833374+00 es v5.1 V4.03 {} V+ I2 CR-N {} {"V4.03": "Los niños disfrutaron"} {0.011783923,0.055510506,0.065414794,0.08252099,0.024523089,0.017873196,0.008959686,-0.037158933,0.032730054,0.01585577,0.056779813,-0.016445523,-0.04817693,0.021758793,-0.014071559,-0.048390612,-0.09733878,-0.013933325,0.040525388,0.0005645862,0.014789046,0.016114786,-0.12632646,0.08202716,-0.056956902,0.030355433,-0.014859303,0.030432772,0.03513425,0.012787045,-0.040740293,0.11435012,0.0024773083,0.0037329549,-0.02970156,0.027143266,0.03480409,-0.017898025,-0.03862631,0.10538193,-0.051716696,-0.006052337,0.02573358,-0.050615735,-0.023394963,-0.06694796,-0.09286097,0.063638665,0.03722685,0.03180072,-0.029486725,-0.07259597,-0.0063334163,0.056634955,-0.06618457,0.0110092,-0.020985527,-0.059784945,0.03494971,0.056552943,-0.005434751,0.079554975,-0.07634304,-0.0021536748,0.06591452,0.05279628,-0.002636399,-0.011080766,-0.009642035,0.032100882,0.037390772,0.034387834,0.042153317,0.0591827,-0.031836264,-0.023752049,-0.020492718,-0.04103383,-0.026587615,-0.05895163,0.030022651,-0.007900515,-0.00983889,-0.07719334,-0.01704536,0.054577485,-0.041690372,-0.0052110255,0.04021243,0.009105859,-0.022010736,-0.05662836,0.011850427,0.03303848,-0.028692912,0.033866625,0.02396729,-0.08659568,-0.006434412,0.06396858,0.052374713,-0.005308961,0.0050699688,0.015841031,-0.05801718,-0.0041075647,0.0013297178,-0.1082256,-0.06115901,-0.06437417,-0.06321041,0.016850134,0.055562947,-0.02231509,-0.07068206,-0.07614062,0.04873783,-0.017338404,0.011018042,-0.030514585,0.050827548,0.0022518123,-0.07427064,-0.0023101263,-0.0606432,-0.015556358,-0.0077654845,1.2886909e-33,0.065428436,-0.07531229,0.016428154,0.084602766,0.07490508,-0.0053182556,-0.0069017173,-0.048984792,0.014808323,-0.09240945,-0.018661048,-0.0126316445,-0.03820462,-0.079571776,0.05816435,0.031823985,0.010974712,-0.03763852,0.021074599,0.09043738,-0.0066017597,0.03115564,0.011910052,-0.03842802,-0.028234363,0.030670203,-0.050982356,-0.02400052,-0.08896455,0.05127893,0.03180141,0.008532406,-0.015866837,0.04650277,0.048670325,-0.039627858,0.055228226,-0.03057563,0.013083699,-0.0034027526,-0.031374104,0.01681377,-0.06426215,0.056096505,0.072773635,0.023246124,0.08471065,0.03097728,-0.004301648,0.025519634,-0.014753745,-0.007907183,-0.081102565,-0.19596793,0.0041166353,0.09986651,-0.011477089,0.009411508,-0.024636656,-0.047813382,0.06525703,-0.008839085,0.026413592,-0.08835139,0.019157546,-0.061983965,0.09246671,0.008834592,0.05755164,-0.04710837,-0.092106216,-0.058180206,0.03805862,0.030680683,0.0645693,-0.0152276475,0.07947083,0.03248191,0.05847091,0.011923341,-0.07610947,0.04061612,0.040221058,0.06766303,0.06394277,0.015619745,0.023281662,0.06036748,-0.003966921,0.046336334,-0.030881945,0.058987483,0.082378596,-0.092956975,0.049844094,-2.9057003e-33,-0.019605316,-0.03534439,-0.04072066,0.03300207,-0.051244896,-0.07671602,-0.05078358,0.103369795,0.010779706,-0.029911706,-0.03736738,-0.112191334,0.06056612,-0.0722003,-0.023251018,0.084855385,0.10672354,0.052645825,-0.07183708,-0.009754203,-0.03226008,0.07272876,-0.011920563,0.026681006,-0.006140263,-0.060180176,0.030615397,0.047720835,-0.14693801,-0.014336655,-0.0349771,-0.03394387,-0.016714307,0.018859211,-0.06715957,0.06383462,-0.024625156,-0.031209985,-0.045954738,0.011954463,-0.042184982,0.015641743,0.067898065,0.011243216,-0.04433091,0.029738033,-0.0055596484,-0.0130335875,0.060869884,0.05506626,0.04999957,-0.020138185,-0.12253699,0.05725978,0.060949173,-0.066522665,-0.012167853,-0.038567845,-0.06601646,0.018567482,0.038488146,-0.01981424,-0.0876055,-0.006378831,0.05964139,-0.02634999,-0.027116366,0.0168465,0.15016857,0.023938155,0.07444183,-0.02406843,-0.051500857,-0.030458499,-0.051932577,-0.03134422,-0.09402667,0.0038826654,-0.015728222,-0.018683665,-0.058462534,-0.018122777,-0.034526277,-0.011654137,-0.005517117,-0.011246728,0.0021434294,0.03567148,0.005218729,0.08189258,0.06592356,0.016199868,-0.0636558,-0.019019354,0.015113704,-1.781752e-08,0.09340291,0.0074770553,-0.070800535,-0.014477524,-0.01123701,-0.050559625,0.0038030283,0.04439169,0.028922344,0.059964105,0.0043252273,0.0459584,0.07093881,0.04700868,0.037120838,-0.005705009,0.104310885,0.102911524,-0.034705248,-0.008837105,0.03824505,0.0041501313,-0.012416408,0.002561779,0.046628278,-0.024660323,-0.046712175,0.023216983,0.014912185,0.03427501,-0.0038179394,-0.0012464919,-0.074404836,-0.14028664,-0.028987143,-0.0027439257,-0.06517049,-0.026471054,0.004274516,-0.08889124,0.11307958,0.105471134,-0.031085217,0.06255465,-0.084812276,-0.102409214,0.011660305,0.023272857,-0.0035638907,0.009060434,-0.0024196652,-0.057431865,0.064688526,0.08253261,0.066604584,-0.018679444,0.042441886,0.025547037,-0.037545104,-0.026263656,0.032459855,0.07665857,0.017277354,-0.037495114} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:10.993662+00 2026-01-30 02:01:13.535414+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2423 google ChdDSUhNMG9nS0VJQ0FnSURBLWZhbjBRRRAB 1 t 2426 Go Karts Mar Menor unknown Increíble! !!! increíble! !!! 4 2019-02-01 01:52:39.833374+00 ca v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Increíble! !!!"} {-0.07845493,-0.0059264223,0.011799586,0.012466421,0.035040863,-0.04304901,0.07392444,-0.032917913,0.028778493,0.0054228012,0.032238714,-0.020541199,0.08567208,0.027179629,-0.13063481,-0.04969937,-0.056296688,-0.009895322,-0.03009012,0.089310855,0.03722998,0.030778628,-0.06203782,0.07697691,0.05578671,0.041478958,-0.08796355,0.062043272,-0.03164289,-0.07951335,0.005307983,0.0051486804,-0.112822436,-0.07126785,0.038095295,-0.05826044,0.0005209983,0.005523002,0.08352395,-0.017030766,-0.053546023,-0.07459923,-0.06725096,-0.04052093,0.036214046,0.04208984,-0.05143027,-0.006968018,0.045578342,0.04113258,-0.056172904,0.019161545,0.05636458,-0.0031719517,0.02441124,-0.057319567,-0.037684944,0.0009789421,0.044025056,0.005117657,0.046235908,0.0427016,0.0097941095,0.04710419,0.018581303,0.07771691,0.07290141,-0.08194021,0.034259498,0.039620508,0.11870354,0.032352746,-0.036938712,0.056162357,-0.006059714,0.02669709,0.03414925,-0.034548733,0.037495732,0.13892762,-0.11075067,-0.09628067,-0.02359435,-0.0073713195,-0.02579386,-0.03907933,0.035847083,-0.050713297,-0.040804587,-0.01779989,-0.10138022,0.020977043,-0.006487059,0.044497706,-0.028849093,0.035307657,-0.0012084519,-0.038420543,-0.12453288,0.07165676,-0.041543562,0.10742452,-0.009533869,-0.013663458,-0.059141666,-0.025735455,-0.0020272546,0.03652212,0.021746079,-0.017165337,-0.04019327,-0.08355214,0.06977037,0.10860068,0.028038297,0.008928231,0.0071017276,0.014755994,0.050791927,-0.06266728,0.08956729,0.017213533,-0.05291974,0.011103691,-0.053540546,-0.0790223,0.0858721,-4.646923e-33,-0.027097883,0.012834545,0.051641587,0.086164914,0.02526087,-0.0105884345,-0.118797615,0.0040874537,-0.026379246,-0.0992034,-0.008774575,0.010611943,-0.064255446,0.015542029,-0.026825655,0.07413747,0.042192455,-0.02235639,-0.07024733,-0.029973656,0.019652937,0.058730967,-0.019683545,-0.03581983,-0.013726263,0.04943258,0.092354126,-0.007419529,0.03506313,0.012252011,0.020647937,0.0005048024,-0.0015037744,-0.005685446,-0.016384393,-0.017843375,-0.039775573,-0.012293001,0.015567795,0.03445205,-0.0032906611,-0.004345081,0.010127752,-0.09212347,0.0115558915,0.014901498,0.046477377,-0.007403287,-0.0073807556,0.014052984,-0.006615658,0.028141314,-0.11203181,-0.01049299,-0.071325846,-0.035875864,0.052175585,-0.030731421,0.021200672,0.06152317,0.035058517,0.040084023,0.057883,-0.025059449,-0.071056195,-0.06589815,-0.030608714,-0.008840574,-0.05233191,0.07561931,0.0023073659,-0.015032367,-0.029268393,0.027773105,-0.040248234,-0.061723553,-0.053135645,-0.07762783,-0.011455426,0.07681755,-0.009747234,0.030929139,0.04004878,-0.07499404,0.03195998,-0.029224997,-0.06393757,-0.05347311,0.015777495,0.04941017,0.011484577,0.0050678877,0.10960641,-0.04589951,-0.052297506,6.0657015e-34,-0.038244754,-0.038021177,0.014476104,-0.0023063072,-0.027299434,-0.0042217155,-0.011095619,0.077058434,0.068487085,-0.03275506,-0.054372296,-0.008383091,0.07261473,0.0101090055,0.01893028,0.014014894,0.031268932,0.03153117,-0.067329675,-0.02261889,0.0103080375,0.015591941,0.018989816,0.028787274,-0.06885923,0.10551664,0.033336494,0.0092913555,-0.00399786,0.042051136,0.044851236,-0.030905008,-0.09200088,-0.051226236,0.018312434,-0.008573177,0.014752403,0.006022199,-0.042664215,-0.017866103,0.05327531,0.10799237,-0.0048876395,0.10386341,-0.015443003,-0.03252351,0.021709178,0.03146355,0.088128224,0.0643226,-0.105942026,0.025400285,-0.0015798706,-0.022000879,-0.05362421,-0.0029297015,0.07178637,0.009577066,0.003910278,-0.058303613,-0.016302297,0.0925133,-0.018271405,0.059666123,0.068706274,-0.008794749,0.009718872,0.045830984,0.079802774,-0.002396724,0.05787348,0.051343527,-0.120355465,-0.09224194,0.05142999,0.05344573,-0.10122852,0.048468947,-0.011982535,-0.0063992334,-0.076070316,-0.006362624,-0.032238573,-0.048144184,-0.0029626957,-0.0026660182,0.042801637,-0.030772163,-0.012106596,-0.011564752,-0.034657635,0.003442806,-0.07521364,0.030956717,-0.00918261,-1.9764514e-08,0.024299635,0.08130155,-0.020461796,0.093606405,-0.0100977,-0.12498507,-0.034201432,-0.046494294,-0.033921637,0.01767822,0.033751447,-0.033707384,-0.0127469925,0.09304577,-0.04016433,0.020473933,-0.035446275,0.02889222,-0.027323667,0.0018514837,-0.05669345,-0.005804575,-0.034323923,-0.003637012,0.008924973,0.02267263,0.012179067,0.08011154,-0.007811142,0.09274837,-0.05021013,0.005004288,-0.03814848,-0.024267435,-0.072059326,-0.07289666,0.08152831,0.044813093,-0.028136903,-0.18447359,-0.0007105186,-0.004248167,0.001686619,0.003107552,0.042565074,-0.10585216,0.007946982,-0.019978343,-0.010579749,-0.052668475,-0.052890737,0.03285634,0.065138526,-0.002702524,0.08910257,0.0096508255,-0.013481198,0.02043383,-0.049932037,0.11233533,0.07730174,-0.06871309,0.026158322,-0.014477635} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.035461+00 2026-01-30 02:01:13.568313+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2424 google ChdDSUhNMG9nS0VJQ0FnSURLcGY3SzJBRRAB 1 t 2427 Go Karts Mar Menor unknown Grandes Profesionales grandes profesionales 5 2022-01-31 01:52:39.833374+00 en v5.1 P2.01 {} V+ I3 CR-N {} {"P2.01": "Grandes Profesionales"} {0.034547072,0.017493218,0.041153897,0.050398167,-0.05256352,0.03397119,0.1159153,0.05878508,-0.001991238,0.02932522,-0.035771217,-0.027480388,-0.050281286,-0.042139627,-0.058841765,-0.004295093,0.017099287,0.03816801,-0.008317683,-0.026313914,0.026917513,-0.01572882,0.013018485,0.0346236,-0.06748643,-0.03171094,-0.018838696,-0.03536986,-0.010783152,-0.039603673,-0.05242085,0.07810733,0.07454045,0.022336153,-0.021912966,0.046805974,0.06904701,0.06760135,0.060945414,0.015250168,-0.049369995,-0.033135705,0.025065118,-0.034862842,-0.031682625,-0.09107531,0.019707492,0.033079933,-0.04371227,0.015338421,-0.048085112,-0.07022488,-0.07156206,0.032872897,0.08913131,-0.031352207,0.021094497,-0.03978628,0.01305002,0.031315852,-0.02047011,0.020347148,-0.0059790844,-0.020765582,-0.02446418,-0.0349119,-0.04586145,0.06823096,-0.057184026,0.031407073,0.08328282,-0.056831248,-0.08149074,0.06390978,0.03081909,-0.021571472,-0.047495376,-0.012322433,-0.05960462,-0.03661202,0.00048400578,-0.04678422,-0.02494313,-0.063410655,0.035210628,-0.019299788,-0.008871826,-0.02303524,0.020468373,-0.052574437,-0.002266153,0.0048011206,-0.003566484,0.04114298,-0.00015847442,-0.018405255,0.023076149,-0.09346761,0.023827432,0.10315893,-0.0004117386,0.05022124,0.045925397,0.10189855,-0.06892307,-0.028885331,-0.01762281,0.046667732,0.028742185,0.034961797,0.009656318,0.020731237,-0.018885272,0.010026389,0.00997508,0.041813254,-0.018418923,0.014033592,0.09868767,-0.05512301,0.036087357,0.043573484,-0.049891647,-0.0382414,-0.0912963,0.018883348,0.010062115,-3.4113606e-33,-0.049668763,0.026182076,-0.02918306,0.11474797,-0.046502974,0.017189624,-0.052083805,-0.024366263,0.007859286,0.008983107,-0.0111442795,0.15609103,-0.039674655,0.031014027,0.060134392,0.05794956,-0.025954207,0.06617171,-0.009333644,0.006962405,0.013849506,0.09709525,0.03983556,-0.021357179,-0.04693515,-0.0011719199,0.025109394,-0.07709171,-0.019294469,0.03503351,0.0327493,-0.03412045,0.01207628,-0.0137380585,-0.0010560228,0.04304495,0.0087799,-0.08528362,0.06659118,0.037991878,0.040045533,-0.049815528,0.02396225,0.012320111,0.00091818825,0.13545056,0.06895436,0.011666667,0.07269167,0.016367583,-0.029756973,-0.02613791,-0.068607286,-0.011972158,0.04287657,0.020156369,-0.081136614,0.04710637,0.018042978,-0.034239985,0.040138897,0.022243433,-0.017369088,0.04014039,-0.016282275,-0.058711275,-0.032843303,0.057857644,0.058673818,0.061377324,-0.113229334,0.0024366723,0.13584256,-0.011863747,-0.037996747,0.03774437,-0.027384164,-0.018989367,-0.042492732,0.09214055,-0.031013656,0.05171786,0.0017261099,0.006229431,0.0649226,-0.023631886,-0.012296871,-0.017331691,0.05902866,0.054589927,-0.12904935,0.002103033,0.046446778,-0.028637463,-0.1018971,4.1445704e-34,-0.047868337,-0.04145188,0.025570078,0.050447635,0.05894195,0.03385223,-0.055635173,0.10334573,-0.10605363,-0.023113778,0.019937187,-0.09528123,0.03509739,-0.019621795,-0.003810644,-0.028696405,0.05792608,-0.06568324,-0.1392427,0.027454909,-0.018101702,-0.01969681,-0.04639503,-0.030762132,-0.0778191,0.0017726246,-0.041422267,-0.055871587,-0.14833099,0.052523237,0.03633039,0.04597532,-0.07657854,0.008197603,-0.0318408,0.035785593,0.011132555,-0.006951701,-0.047219332,0.07990672,-0.007924942,-0.0075551933,0.04775623,0.06850345,0.06755789,-0.04976261,-0.12464056,-0.061020922,0.058730245,-0.027372891,-0.041800562,0.009532405,-0.06508772,-0.082298145,0.012596739,-0.093890995,0.057265073,-0.0577941,-0.03995999,0.037574302,0.015250316,0.019686762,0.008596776,0.08527432,-0.01863524,-0.025912844,-0.059074372,-0.026587183,-0.07299803,0.041115407,0.12340857,0.0056620855,-0.099828444,-0.02957494,-0.11437602,0.04147257,0.027201785,-0.005999518,-0.01378549,-0.009402669,0.03025343,-0.009374427,-0.0005507993,-0.032732703,-0.025919704,0.017485699,-0.008904126,0.0405219,0.055603627,-0.069715425,0.03053358,-0.009006312,-0.016944913,-0.09113762,0.027941074,-1.6290551e-08,-0.0539302,0.025263125,-0.056097277,0.009346598,-0.09055672,-0.0794097,-0.067856915,0.03264568,0.015803773,0.03871805,0.0058112363,-0.037037008,-0.012193278,0.03449154,0.11598609,-0.067495234,0.03111036,0.052163586,-0.009273309,-0.03254209,0.020760538,0.020227425,0.0054784673,-0.085828945,-0.07204042,0.03229068,0.057282295,-0.04473173,-0.028258767,0.10517364,0.022654286,0.0988927,-0.048265193,-0.056635626,-0.0098837465,-0.036191463,0.016396372,-0.072739996,-0.018291278,0.0004937152,0.02075477,-0.013431144,0.039906234,-0.0068141264,0.019363672,-0.07159438,0.05572589,0.075710416,0.029618284,0.082792364,-0.0037665996,0.025384877,0.04870792,-0.05367829,0.06750053,-0.019017167,0.011008825,0.0066436646,-0.11664155,-0.035324387,0.10331579,-0.028272882,0.10016683,-0.03951046} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.05013+00 2026-01-30 02:01:13.576853+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2425 google ChdDSUhNMG9nS0VJQ0FnSUM2eTU3b3NBRRAB 1 t 2428 Go Karts Mar Menor unknown deaearque dejan deaearque dejan 3 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V0 I1 CR-N {} {"V4.03": "deaearque dejan"} {-0.04226009,0.050932385,-0.012698999,0.016108558,-0.06271229,-0.033234812,0.13839819,-0.003365293,0.026908673,-0.054272473,0.06275853,-0.0082857255,-0.020730352,-0.025024083,-0.023711428,-0.0056956043,0.03134608,0.0937604,-0.019306581,-0.030925235,-0.041686658,-0.053753696,-0.071749665,0.04440853,-0.018790668,-0.012642314,0.034844235,0.08954294,-0.0023429627,-0.07322209,0.025759479,0.027222123,0.0333398,-0.026659386,-0.01014856,-0.031745292,-0.028082725,-0.026699753,0.03394345,-0.00060514465,-0.0031820664,0.048703596,-0.059201833,-0.056214105,0.011009896,-0.07639336,-0.1500296,0.07214106,-0.014656665,-0.062012427,-0.030691434,0.010962265,0.039671574,0.017873753,-0.02279482,-0.041119743,0.05815895,0.025855832,0.0014508351,-0.014862796,0.038280293,0.009167875,-0.0762575,-0.0035092197,-0.031078404,-0.026351567,0.11179345,-0.032394756,-0.0035814377,0.08865247,0.051281877,-0.037735924,-0.015668947,-0.023487099,0.001558533,-0.014638352,-0.025577571,-0.0021378193,-0.035577197,-0.06992077,0.08612368,-0.049198177,0.006877023,-0.02723458,-0.059098795,-0.020021915,-0.028338388,-0.006845556,0.059906714,-0.04556967,-0.023609247,0.035366155,-0.07539935,0.019394005,-0.078500435,-0.029277239,0.06852949,0.055530217,-0.046717767,0.10323838,0.063654974,0.03992909,0.00055919954,0.0061271843,-0.019661086,-0.014657883,0.048006166,-0.023161102,0.0408265,-0.008653374,-0.0811296,-0.07518986,0.014241438,0.015359311,-0.025167366,0.076858915,0.10221057,0.005461155,-0.010099229,-0.05213244,0.07488536,0.039941225,-0.060422618,-0.038866334,-0.00064768415,0.016327072,-0.01423748,-6.0887393e-34,-0.062577784,-0.030671323,0.07728513,0.06690971,0.07560648,-0.02940626,-0.013041885,0.051383115,-0.055085715,-0.037150882,-0.0699106,0.05244679,-0.0015312254,-0.007921002,0.062144995,0.026155481,0.028546406,-0.03386675,0.05156848,0.013668592,0.060524907,0.05802453,-0.060319975,0.03917612,0.02664178,0.019808503,0.0011694753,-0.030903371,-0.035430506,0.0553039,-0.010333862,-0.05050528,-0.062329974,0.0019561052,0.023518123,-0.025703795,0.01676449,0.009661648,0.0139689455,-0.03597368,0.055706922,-0.010919888,-0.024526956,-0.037556037,-0.04796225,0.05721389,0.057024393,-0.00347286,0.011901192,-0.0026505534,0.031449623,-0.061992336,-0.0014489125,-0.046439573,-0.081229575,-0.008960713,-0.0046115345,0.062457535,0.086529456,-0.024403207,0.12050406,-0.051866468,-0.052575536,0.047783643,0.020899901,-0.10273915,0.023229515,0.05252895,0.026984371,-0.034157418,-0.113066904,0.0026352976,0.01595163,0.033684753,-0.036882546,-0.0075258357,-0.068753704,0.014479064,0.02496363,0.04019408,-0.062232673,-0.026230035,-0.033449445,-0.00019519379,0.075497106,0.07196489,-0.002484282,-0.0013367409,0.041215703,0.07923315,-0.091805585,0.103382014,0.046607852,-0.04027305,0.024968429,-1.1733158e-33,-0.024716958,0.0066258856,-0.024846777,0.022751922,0.04046889,0.001939391,0.003403883,0.102269754,0.062199134,-0.08501123,0.026782347,-0.106998086,0.14318568,-0.00627052,-0.010079724,0.1546685,0.01521805,-0.02986428,-0.13799316,-0.06543364,-0.07875647,0.043279193,-0.040048674,-0.041647684,-0.063670166,-0.003565278,0.04861569,-0.0014742682,-0.050705414,0.10843785,0.00074631476,-0.034883708,-0.00046969583,0.052687775,-0.06486076,0.0377335,0.0317193,0.018279947,-0.0035713708,0.05462089,-0.095915,0.04945069,0.012349496,0.15149899,0.04172679,0.027496904,-0.027752545,-0.06903957,-0.02615248,0.017102309,0.043623246,0.013691369,-0.08850724,0.049380276,-0.021392593,-0.036064785,0.038937468,-0.017154139,-0.06479315,0.054999214,0.024145456,0.074816816,-0.04163272,0.034611657,0.02330946,-9.24859e-05,-0.019108506,0.12717019,0.019987412,-0.09329122,0.07753802,-0.029403636,-0.14760941,0.027976021,-0.109508075,0.051416043,-0.05970223,0.10256532,-0.007644387,-0.0038669296,-0.019984765,-0.06864753,-0.070224226,0.039409515,-0.04532897,-0.071029305,-0.022630952,-0.0036025636,-0.030311441,-0.0017099755,0.05397183,-0.033173006,-0.002992402,0.035759803,0.008659864,-1.4577901e-08,-0.036667865,-0.04046318,-0.016217135,0.0040717092,0.01893284,-0.027883768,0.008717637,0.08118,0.0056016007,0.023217648,0.04267564,-0.021573568,-0.058035947,0.12815765,-0.016802266,0.037274804,0.047451288,0.07889233,-0.01778644,-0.055860892,0.006276394,-0.031423442,-0.036648467,-0.06739984,0.0048276177,0.014526404,-0.044519488,-0.06774462,0.024024619,-0.04734039,-0.004619404,0.09131617,-0.03884997,-0.041548714,-0.015537343,-0.00973574,-0.026341954,-0.01832776,-0.007909516,-0.0013519963,0.028230391,0.069732636,-0.07025294,-0.055670723,-0.028823683,-0.04981791,0.04670533,0.010780675,0.0050699487,0.011122692,-0.011485859,-0.025859075,0.07950459,0.028842883,0.058912948,0.0018243802,-0.021532305,0.050982878,-0.085585706,-0.014237048,0.11590184,0.07627975,0.06897359,-0.034899242} 0.5 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.065824+00 2026-01-30 02:01:13.584737+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2426 google ChdDSUhNMG9nS0VJQ0FnSUNheGVHR2lRRRAB 1 t 2429 Go Karts Mar Menor unknown Divertido!! divertido!! 5 2022-01-31 01:52:39.833374+00 pt v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Divertido!!"} {0.03565406,0.052130647,0.03888501,-0.0067551997,-0.004006736,-0.0111556435,0.0946754,0.0051828288,0.055603486,-0.03345321,0.03999291,-0.08319765,-0.03351923,0.004846572,-0.036157425,-0.058356654,-0.0029861657,0.07616928,0.017066134,0.06324656,0.01681889,0.06727264,-0.061924092,0.063809365,-0.03620649,0.11269177,0.014459697,-0.045976277,-0.015494641,-0.09765313,0.11168973,0.123142205,-0.044529166,0.011480661,-0.043201804,-0.0072648767,-0.04619634,0.025095219,0.020014707,0.0370405,-0.08435086,-0.042080887,0.0032563263,-0.04115296,0.03532146,0.039867867,-0.054566648,0.022451662,0.10435537,0.028490731,-0.057387177,-0.012057244,0.048793543,0.0280371,-0.0023536705,-0.00044929227,0.0052204663,-0.047630634,0.03160755,0.0645289,-0.07888456,0.013224412,-0.04532488,0.031239321,0.0034684704,-0.042047795,-0.018806992,0.06407277,-0.03201561,0.058685195,0.08752523,0.043799825,0.002461727,-0.07749832,-0.0044116704,0.0271096,0.04203876,-0.04457679,-0.037815463,0.04563187,0.040214423,-0.06628517,-0.05470119,-0.056556545,0.0506418,0.053864382,-0.06438605,0.03483494,-0.006155042,-0.075469546,-0.061885774,-0.048921388,-0.0023753818,0.043197952,-0.046640318,0.023449568,-0.027874777,-0.1367874,-0.1407141,0.096073255,-0.048814293,0.06458886,0.003543129,-0.121058725,-0.009515444,-0.010765932,0.039860606,0.060935944,0.01883779,-0.013131101,0.01309925,-0.038982302,0.016674824,-0.025980255,-0.029998176,0.024509871,0.049619168,-0.05503052,-0.01154776,0.03009841,0.03717337,0.06884256,-0.100260325,0.057711247,0.03426959,-0.06326332,0.03111907,-4.2867307e-33,-0.035322998,-0.0027604825,-0.012733759,0.08951558,-0.017992042,0.009076872,-0.019410286,-0.062266506,-0.023659533,-0.03704056,-0.019652367,-0.06274489,-0.08658402,0.07187952,-0.043270048,0.04328737,-0.020708302,0.000106261185,0.07257198,0.033563238,-0.012880042,0.06322034,-0.032680646,0.0861891,-0.04981991,0.07499672,-0.01823528,-0.056642875,0.0046946965,0.04590132,-0.065965794,-0.0062501794,-0.042400204,0.030956935,0.0036530402,0.020609096,-0.08622364,0.0013983245,-0.011233159,0.011725154,0.01347253,0.02204512,-0.13383493,0.020643737,0.01990017,-0.0663104,0.053279985,0.036247335,0.13047455,-0.014215174,-0.0038122549,-0.025615253,0.026103402,0.024661997,0.0119615365,0.011055961,0.048611805,0.057679076,0.014174307,0.004965359,-0.0046319277,0.024945453,-0.04789473,-0.043917265,-0.053489342,-0.003910658,-0.024243886,0.035472907,0.055959996,0.04703533,-0.13184749,-0.03207867,0.00061870564,0.058621027,-0.03705776,-0.051906493,-0.029013794,0.04097391,0.06032623,-0.013493592,0.0061990665,0.03899802,0.025240459,0.030850181,0.07815305,0.101982415,0.005154026,0.018550243,-0.02018241,0.040959988,-0.042695757,0.011733141,0.089475036,-0.03686368,0.0240801,2.4753933e-33,0.024790488,-0.052350853,-0.0043555875,-0.024510946,0.017310482,-0.014107421,-0.023886463,0.05823786,-0.036487047,-0.07082141,-0.071650356,-0.0050589084,0.088007085,-0.052976605,-0.10622457,0.045936245,0.119009584,0.05610615,-0.011960801,0.020591132,-0.11047308,-0.028455134,0.05169179,-0.0012777994,-0.071384475,0.056191817,0.09993733,-0.026844816,-0.06465745,0.023683673,-0.05277937,0.010428193,-0.034129858,0.0051825307,0.014919322,0.042340927,-0.12974226,-0.013280773,-0.059981044,0.10152956,-0.066580616,0.024898382,0.019337969,0.07583432,-0.06778417,0.034660704,0.007779286,-0.034116376,-0.055330805,0.011045947,-0.06292235,-0.019407088,0.01756072,-0.028272446,-0.007443642,-0.09053374,0.05418522,-0.060858153,-0.018996883,0.0018337875,0.0049961875,0.05584437,-0.02413241,-0.032568082,0.09663949,-0.034356143,-0.048982147,-0.039400697,0.0070815724,0.076559044,0.13027602,0.017567368,-0.048472904,0.035377998,-0.026397664,0.06681309,-0.051221855,0.007901599,0.016758889,0.009658548,-0.119118035,0.029124206,5.4387343e-05,0.026650742,0.048319522,0.015659766,-0.018464673,-0.050384946,-0.03890974,-0.016486743,-0.030100027,0.005458611,0.030041989,0.014487664,0.083127014,-1.3115738e-08,0.019381298,-0.01906684,0.010989326,0.0061737807,0.028164629,-0.06276769,-0.11874949,-0.014511925,-0.052411687,0.008996755,0.03230285,0.05144487,0.05265117,0.09419581,0.032045677,0.027293913,0.090274855,0.060034044,-0.03276723,0.013367498,-0.011582376,-0.032304604,0.013210501,-0.09063178,0.038262915,-0.010646534,-0.032693643,0.059241977,0.0023875278,-0.07156636,0.06387288,-0.06091982,-0.04541799,-0.018656315,-0.06659057,0.049999643,0.03125075,0.0524889,0.024041876,-0.052415717,-0.04397512,0.01283624,0.001758173,-0.03356338,-0.06993984,-0.031180695,0.05978871,0.08447119,0.0089567425,-0.018873451,-0.048301935,0.01747061,0.054128584,0.051859196,0.10258224,0.03779296,0.03729261,0.010974694,-0.072426096,0.0063038347,0.06865662,0.06552344,-0.054822974,0.0007100001} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.083825+00 2026-01-30 02:01:13.589729+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2427 google ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB 1 t 2430 Go Karts Mar Menor unknown Trato familiar trato familiar 5 2026-01-30 01:52:39.833374+00 it v5.1 P1.01 {} V+ I2 CR-N {} {"P1.01": "Trato familiar"} {-0.024609825,-0.025819771,-0.12173617,0.024285134,-0.08463366,-0.012974723,0.21205655,0.0042339056,-0.049805637,-0.060273215,0.08014582,-0.05474863,-0.14357358,-0.01339834,-0.060191926,0.024677627,0.069267094,-0.0004416451,-0.01174895,-0.032150663,-0.07879508,-0.011302561,0.054495003,0.0577123,-0.047226604,-0.008275474,0.044208843,0.09542103,0.056592036,-0.07402393,-0.0481604,0.096702754,0.006205397,0.015516514,-0.024749694,0.0465185,-0.10696326,0.02701312,0.03367462,-0.048197754,-0.003602785,-0.017539969,0.023759345,-0.02073045,-0.014066774,-0.04044102,-0.019467734,0.08741962,0.0021796091,0.0639254,-0.065346256,-0.026199946,0.027229147,0.05145566,-0.061444845,0.0780417,0.033346903,0.037464365,0.0020204512,-0.011767077,-0.00844861,-0.0004922603,-0.04345862,-0.0014027166,0.024557034,-0.019870903,-0.06247045,0.00755748,0.05684453,-0.005122142,0.024526339,0.049925327,-0.010499003,-0.026717708,-0.04537273,0.052282568,-0.010320478,-0.04249139,-0.06751306,0.021662472,0.03732389,0.06509401,-0.0042185853,-0.008897566,0.08140965,0.0080105355,0.006171252,0.041168973,-0.074188255,0.020768184,0.032992583,0.041018765,0.071109384,-0.04005658,-0.021493997,0.045464084,0.04645748,0.026792236,-0.059158333,0.12851042,-0.0059019276,0.014335169,0.04060882,0.03132711,0.018286483,-0.003046772,-0.012418416,-0.0723879,0.082650974,0.020493567,-0.1030824,-0.04607318,-0.06841016,0.028168457,0.030111808,-0.0005265052,0.007509495,-0.0025403777,0.03436994,0.04558138,0.0033675611,0.051416855,-0.059379824,0.012505585,0.04071048,-0.015210436,-0.0148243625,-1.1745919e-33,0.052776836,-0.0031416256,0.030201511,0.022214232,0.043871216,0.03382817,-0.10170946,-0.043792102,-0.15008123,0.043416098,-0.07084997,0.039445814,-0.065698504,-0.019458074,0.04694654,0.048142117,-0.045253046,0.04232538,0.08780145,-0.04522011,-0.041443788,0.08798913,-0.030076364,-0.020944998,-0.076416366,0.018941786,0.015678883,0.0022347795,0.031693712,0.05055269,0.044014916,0.096669726,0.0043692896,-0.0034957314,-0.027280023,-0.06316474,-0.068361275,-0.056736406,-0.059986167,0.044608578,0.019939959,0.0017183902,-0.009202359,0.009496032,-0.050942432,-0.051873885,0.10518611,-0.08496944,0.007891234,0.032596312,-0.04788238,-0.065047614,-0.045595955,0.0036551198,0.011051005,0.0024418207,0.021849949,0.0936618,0.08225354,0.029146831,0.05751146,0.049869344,-0.015744599,0.043562625,-0.029595507,-0.03926987,0.015847098,0.018565279,0.050887745,-0.06250564,-0.008900933,-0.07892621,0.056416612,0.009946621,0.02064895,-0.0072984514,0.028578011,-0.0798812,-0.058658045,-0.081916645,-0.027545573,-0.067453794,0.026312623,0.01071915,-0.014870933,0.027995227,0.0018062998,-0.06847995,-0.012931398,0.045385342,-0.054655083,0.032471355,-0.040943902,-0.020006282,-0.07280834,9.212511e-34,0.0009493319,-0.013296883,-0.005025462,0.0006938505,-0.04365154,-0.0376758,-0.086164445,-0.024571028,-0.02800283,0.011093298,0.06792526,-0.12134379,-0.008268897,-0.035868388,0.08867567,0.051082242,0.05355376,0.01916249,0.030862799,-0.07186813,-0.016056348,-0.13513225,-0.066033676,0.02012017,-0.054848067,0.005732699,0.08145507,-0.002408541,-0.06534926,0.0153319985,-0.054571938,0.017686589,0.022845974,0.07723749,-0.01576037,0.040535446,0.038529757,0.008332193,0.020154528,0.010261742,0.004159497,-0.013675042,-0.022537118,0.020858493,-0.012892296,-0.05313105,-0.014224036,0.030446216,0.001792444,0.023700759,0.07246402,0.03977399,-0.001680806,-0.046116695,0.012135495,0.05163459,-0.020656966,-0.082031414,-0.07629918,-0.036408775,0.052823532,-0.025027366,-0.0891515,0.0072032944,0.074732944,-0.0040039388,-0.07669398,0.074764706,-0.034290295,0.037060153,-0.0031936246,-0.038849924,-0.090035655,-0.06450514,-0.029232029,-0.042774327,-0.04100162,0.01849994,0.036211725,-0.023854697,-0.060123928,-0.031786382,-0.038266096,0.031611256,0.060423642,0.027105732,-0.030085685,0.040164087,0.048734024,0.1349976,0.056135062,0.05818737,0.024267329,-0.05174113,-0.07049559,-1.2822727e-08,0.0077307234,-0.027196059,0.0060517807,0.0007559605,0.070971556,-0.008312353,-0.05963779,0.020402128,-0.02786701,0.065796755,-0.026778094,0.038290482,0.019052686,0.10649773,0.03200855,0.11903963,-0.039822355,-0.04609167,0.0008697287,0.034536015,0.019454712,-0.006676406,0.004416398,0.019051883,-0.035333753,0.013862707,-0.029210912,0.07695908,0.03963139,0.07931011,-0.014958393,0.06642418,-0.021327285,-0.060711,0.03617205,0.061256092,0.027691543,-0.11728637,-0.08382421,-0.037173834,0.03337182,0.011172048,0.0112625295,-0.060069438,-0.0038398693,-0.005971788,0.063739054,0.01626571,0.0088373,0.018293932,-0.044447698,0.06186538,0.030771311,0.13685615,0.13425936,-0.01130614,0.06666208,-0.015661279,0.006256195,0.04262449,0.07133976,0.023744127,0.075489506,-0.008974884} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.096658+00 2026-01-30 02:01:13.593194+00 22c747a6-b913-4ae4-82bc-14b4195008b6 2428 google ChZDSUhNMG9nS0VJQ0FnSURhb3Z6WE1BEAE 1 t 2431 Go Karts Mar Menor unknown Fantástico fantástico 5 2022-01-31 01:52:39.833374+00 es v5.1 V4.03 {} V+ I3 CR-N {} {"V4.03": "Fantástico"} {-0.03036501,0.079131514,-0.063168794,0.029209403,-0.038536545,0.008717728,0.03869698,0.12014819,-0.11760177,-0.020569777,-0.02990684,-0.041328494,-0.023807224,0.066038884,-0.070033826,-0.04615531,0.052403074,-0.031097913,-0.056234177,-0.021193035,0.104216464,-0.003709153,-0.025269369,0.036130577,-0.06351413,0.009633086,0.039177895,0.109783456,-0.066319354,-0.025954932,-0.038489845,0.11400633,0.04259548,0.047478355,-0.05596315,0.0042603007,0.01896102,-0.029269466,0.05959432,-0.012822669,-0.040324047,-0.047094807,-0.019147636,-0.07058898,0.094841346,0.038214054,-0.031247716,0.08776879,0.08728019,-0.042510416,-0.10553724,-0.07951554,-0.054641195,0.07329554,0.026867012,0.03531724,0.031701285,-0.14095826,0.0015404796,-0.012889799,-0.045467697,-0.016214777,-0.042833567,0.09727061,0.10015085,0.028371764,-0.017447898,0.035812374,-0.103094324,0.06082239,0.017061576,-0.02692868,0.06199791,-0.029677594,0.050492216,0.034756877,-0.03010631,0.018628841,0.029505875,-0.05353875,0.051424883,-0.04906994,0.047662053,-0.01831307,-0.06906084,0.055093817,0.07772947,-0.03035119,0.00420554,-0.010200825,-0.0148349935,-0.04146125,-0.008076831,-0.0059775766,-0.067017525,-0.007876583,0.0117937,-0.08629289,-0.053073153,0.18718731,0.020508237,-0.03248281,0.038349755,-0.039597023,0.015741842,0.035345156,0.038062517,0.02071289,0.06365591,0.013516986,-0.052758772,0.010512365,-0.039879363,0.015470841,-0.02662116,-0.018255746,-0.007916794,-0.031328794,-0.07659006,-0.017575115,0.11901959,0.052051354,0.01755257,0.023193942,-0.004253656,0.027336765,0.031562705,-2.1364024e-33,0.038255163,-0.007772849,0.025754102,-0.044485144,0.035187036,-0.006687183,-0.05613273,-0.03423831,-0.032438997,0.03229079,-0.09785206,0.048395786,-0.028647766,0.00057550834,0.07281618,0.06499248,0.048779946,-0.015157597,0.061352264,-0.0057543744,-0.016850352,0.07431098,0.033657,-0.00437676,-0.04757606,0.09286957,-0.0033275434,-0.0027217993,0.031522498,0.031228496,-0.08462427,0.0044837845,-0.0074773487,0.088453315,0.037817806,-0.07171103,-0.04679847,-0.058014505,0.032523796,0.020588346,0.034698132,-0.030038988,-0.13159618,0.023606516,-3.862349e-05,-0.019260444,0.028860053,0.03255058,0.0018800842,0.054303195,-0.056791198,-0.07749879,-0.06294111,0.012310637,-0.08585184,-0.017315567,-0.0028677443,0.0033221333,0.06255409,-0.06521577,0.032519035,0.06599587,-0.048135586,-0.008126398,-0.04677193,-0.023285823,0.026346225,0.1041873,0.0012670758,0.04446325,-0.029919665,0.017628765,0.08873895,0.029921241,0.013839827,-0.045207918,0.029874457,0.025728578,-0.03204145,0.002397659,0.050134346,0.03858627,0.018150514,0.017780613,0.06459357,0.061910067,0.018920992,-0.002249079,0.0028554313,0.0033533226,-0.045726646,0.00041575768,0.13085906,-0.031252343,-0.012631306,1.9720464e-33,0.033567224,-0.038595434,0.07064215,0.08601376,0.052216794,-0.0070396652,-0.09493745,0.018063204,-0.058799285,0.008507103,-0.0055541326,-0.029837497,0.15960288,-0.060315147,-0.015874485,0.023293262,-0.006231208,-0.012346107,-0.048645847,-0.037407972,0.017550545,-0.062993914,-0.044133533,-0.035769757,-0.051394336,0.012690951,0.023147106,0.043185066,-0.110292256,0.047071334,0.0626692,-0.06301476,-0.112018704,-0.04203348,0.014409324,0.11562022,-0.066330165,0.07159061,-0.0014923271,0.053446643,0.0030610862,0.03347749,0.051811237,0.051473502,-0.017115733,0.0732172,-0.06748202,-0.06297183,0.01051253,-0.00821275,-0.040997535,0.04777022,-0.13468741,-0.0438551,-0.0129618365,0.044768605,0.021714127,-0.076448634,-0.06096511,-0.022569202,-0.017874101,-0.042987984,-0.058400027,0.0054650516,0.03612465,0.031671345,-0.006452887,-0.004297071,-0.013745361,0.09112193,0.048389196,-0.00629325,-0.059408102,0.050026447,-0.011359818,0.032403406,-0.084381014,0.05317898,-0.005436433,0.04017324,0.02832059,-3.18633e-05,-0.066110626,0.043530967,-0.0077594635,-0.061157905,0.08041444,0.031101031,-0.041056972,-0.033245277,0.03369986,0.046099387,0.04151579,-0.09189818,0.01285744,-1.3395642e-08,0.041341785,0.0026591022,0.033947032,-0.0152710555,0.030821074,-0.09393762,-0.003220211,0.0075113554,0.01239317,0.02604747,0.047976926,-0.0062973355,0.005237744,0.0074301073,0.0031969172,-0.031308565,0.008144779,0.09692469,-0.02394398,-0.032378763,-0.048953477,-0.008974668,-0.017333005,-0.058563188,0.043673225,-0.021156438,0.01523837,-0.032189187,-0.070041046,-0.027615476,0.008665524,0.07250641,-0.033624407,-0.019973043,-0.069488615,-0.01579227,-0.024754792,0.012170468,0.03974182,-0.058676563,0.10365211,0.050999623,-0.017505255,0.032342535,-0.011193705,-0.019793617,0.08597263,-0.024408119,-0.01728487,-0.051431876,-0.049636588,0.028742991,0.05446772,0.01527121,0.06264959,-0.03293841,0.05617541,-0.0045094723,-0.05411601,0.046854574,0.1295928,0.020833736,0.011916779,0.019994196} 0.6 claude-sonnet-4-5-20250929 {"overall": 0.8} 2026-01-30 10:21:11.109258+00 2026-01-30 02:01:13.599292+00 22c747a6-b913-4ae4-82bc-14b4195008b6 \. -- -- Data for Name: reviews_raw; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.reviews_raw (id, job_id, source, review_id, place_id, raw_payload, review_text, rating, review_time, reviewer_name, reviewer_id, review_version, pulled_at, created_at) FROM stdin; 1 aa83e5fb-0178-439c-bb6c-293156aa503a google test-review-6d41edc0 test-place-4169656e {"text": "The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back.", "time": 1768487400, "rating": 1, "author_id": "author-001", "review_id": "test-review-6d41edc0", "author_name": "John Doe", "relative_time": "1 week ago"} The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. 1 2026-01-15 14:30:00+00 John Doe author-001 1 2026-01-24 18:26:13.342637+00 2026-01-24 18:26:13.342637+00 2 aa83e5fb-0178-439c-bb6c-293156aa503a google test-review-f4960553 test-place-4169656e {"text": "Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it.", "time": 1768762800, "rating": 5, "author_id": "author-002", "review_id": "test-review-f4960553", "author_name": "Jane Smith", "relative_time": "4 days ago"} Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. 5 2026-01-18 19:00:00+00 Jane Smith author-002 1 2026-01-24 18:26:13.355849+00 2026-01-24 18:26:13.355849+00 3 aa83e5fb-0178-439c-bb6c-293156aa503a google test-review-baefaf46 test-place-4169656e {"text": "Average food, nothing special. The ambiance was nice though. Wait time was reasonable.", "time": 1768910400, "rating": 3, "author_id": "author-003", "review_id": "test-review-baefaf46", "author_name": "Bob Wilson", "relative_time": "2 days ago"} Average food, nothing special. The ambiance was nice though. Wait time was reasonable. 3 2026-01-20 12:00:00+00 Bob Wilson author-003 1 2026-01-24 18:26:13.358653+00 2026-01-24 18:26:13.358653+00 4 6d6566fd-7064-483f-b6a6-fccfe635c887 google test-review-0b5f8f89 test-place-a1d6f9fb {"text": "The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back.", "time": 1768487400, "rating": 1, "author_id": "author-001", "review_id": "test-review-0b5f8f89", "author_name": "John Doe", "review_time": "2026-01-15T14:30:00+00:00", "relative_time": "1 week ago"} The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. 1 2026-01-15 14:30:00+00 John Doe author-001 1 2026-01-24 18:26:56.820429+00 2026-01-24 18:26:56.820429+00 5 6d6566fd-7064-483f-b6a6-fccfe635c887 google test-review-22e6d3da test-place-a1d6f9fb {"text": "Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it.", "time": 1768762800, "rating": 5, "author_id": "author-002", "review_id": "test-review-22e6d3da", "author_name": "Jane Smith", "review_time": "2026-01-18T19:00:00+00:00", "relative_time": "4 days ago"} Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. 5 2026-01-18 19:00:00+00 Jane Smith author-002 1 2026-01-24 18:26:56.874592+00 2026-01-24 18:26:56.874592+00 6 6d6566fd-7064-483f-b6a6-fccfe635c887 google test-review-c74308b7 test-place-a1d6f9fb {"text": "Average food, nothing special. The ambiance was nice though. Wait time was reasonable.", "time": 1768910400, "rating": 3, "author_id": "author-003", "review_id": "test-review-c74308b7", "author_name": "Bob Wilson", "review_time": "2026-01-20T12:00:00+00:00", "relative_time": "2 days ago"} Average food, nothing special. The ambiance was nice though. Wait time was reasonable. 3 2026-01-20 12:00:00+00 Bob Wilson author-003 1 2026-01-24 18:26:56.886362+00 2026-01-24 18:26:56.886362+00 7 c2521536-3436-40d5-b3a4-c7283a4738c1 google test-review-6d959dcd test-place-56bf5298 {"text": "The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back.", "time": 1768487400, "rating": 1, "author_id": "author-001", "review_id": "test-review-6d959dcd", "author_name": "John Doe", "review_time": "2026-01-15T14:30:00+00:00", "relative_time": "1 week ago"} The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. 1 2026-01-15 14:30:00+00 John Doe author-001 1 2026-01-24 18:27:16.461754+00 2026-01-24 18:27:16.461754+00 8 c2521536-3436-40d5-b3a4-c7283a4738c1 google test-review-f193e227 test-place-56bf5298 {"text": "Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it.", "time": 1768762800, "rating": 5, "author_id": "author-002", "review_id": "test-review-f193e227", "author_name": "Jane Smith", "review_time": "2026-01-18T19:00:00+00:00", "relative_time": "4 days ago"} Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. 5 2026-01-18 19:00:00+00 Jane Smith author-002 1 2026-01-24 18:27:16.468137+00 2026-01-24 18:27:16.468137+00 9 c2521536-3436-40d5-b3a4-c7283a4738c1 google test-review-1287c8f3 test-place-56bf5298 {"text": "Average food, nothing special. The ambiance was nice though. Wait time was reasonable.", "time": 1768910400, "rating": 3, "author_id": "author-003", "review_id": "test-review-1287c8f3", "author_name": "Bob Wilson", "review_time": "2026-01-20T12:00:00+00:00", "relative_time": "2 days ago"} Average food, nothing special. The ambiance was nice though. Wait time was reasonable. 3 2026-01-20 12:00:00+00 Bob Wilson author-003 1 2026-01-24 18:27:16.468694+00 2026-01-24 18:27:16.468694+00 10 c58602e1-ef63-46fd-ace0-b45a9ebf441c google test-review-b063df39 test-place-d8c3476f {"text": "The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back.", "time": 1768487400, "rating": 1, "author_id": "author-001", "review_id": "test-review-b063df39", "author_name": "John Doe", "review_time": "2026-01-15T14:30:00+00:00", "relative_time": "1 week ago"} The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. 1 2026-01-15 14:30:00+00 John Doe author-001 1 2026-01-24 18:27:42.996841+00 2026-01-24 18:27:42.996841+00 11 c58602e1-ef63-46fd-ace0-b45a9ebf441c google test-review-adce42df test-place-d8c3476f {"text": "Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it.", "time": 1768762800, "rating": 5, "author_id": "author-002", "review_id": "test-review-adce42df", "author_name": "Jane Smith", "review_time": "2026-01-18T19:00:00+00:00", "relative_time": "4 days ago"} Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. 5 2026-01-18 19:00:00+00 Jane Smith author-002 1 2026-01-24 18:27:44.489655+00 2026-01-24 18:27:44.489655+00 12 c58602e1-ef63-46fd-ace0-b45a9ebf441c google test-review-23919f56 test-place-d8c3476f {"text": "Average food, nothing special. The ambiance was nice though. Wait time was reasonable.", "time": 1768910400, "rating": 3, "author_id": "author-003", "review_id": "test-review-23919f56", "author_name": "Bob Wilson", "review_time": "2026-01-20T12:00:00+00:00", "relative_time": "2 days ago"} Average food, nothing special. The ambiance was nice though. Wait time was reasonable. 3 2026-01-20 12:00:00+00 Bob Wilson author-003 1 2026-01-24 18:27:45.546849+00 2026-01-24 18:27:45.546849+00 13 20b92e5b-8b92-4b5f-bb13-89f1da683de6 google test-review-58dfba96 test-place-ca8fef85 {"text": "The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back.", "time": 1768487400, "rating": 1, "author_id": "author-001", "review_id": "test-review-58dfba96", "author_name": "John Doe", "review_time": "2026-01-15T14:30:00+00:00", "relative_time": "1 week ago"} The food was absolutely terrible! We waited 45 minutes for cold pasta. Mike the waiter was rude and dismissive. Never coming back. 1 2026-01-15 14:30:00+00 John Doe author-001 1 2026-01-24 18:27:58.689603+00 2026-01-24 18:27:58.689603+00 14 20b92e5b-8b92-4b5f-bb13-89f1da683de6 google test-review-face2761 test-place-ca8fef85 {"text": "Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it.", "time": 1768762800, "rating": 5, "author_id": "author-002", "review_id": "test-review-face2761", "author_name": "Jane Smith", "review_time": "2026-01-18T19:00:00+00:00", "relative_time": "4 days ago"} Great experience! The steak was cooked to perfection and Sarah provided excellent service. A bit pricey but worth it. 5 2026-01-18 19:00:00+00 Jane Smith author-002 1 2026-01-24 18:27:58.696996+00 2026-01-24 18:27:58.696996+00 15 20b92e5b-8b92-4b5f-bb13-89f1da683de6 google test-review-95de34a9 test-place-ca8fef85 {"text": "Average food, nothing special. The ambiance was nice though. Wait time was reasonable.", "time": 1768910400, "rating": 3, "author_id": "author-003", "review_id": "test-review-95de34a9", "author_name": "Bob Wilson", "review_time": "2026-01-20T12:00:00+00:00", "relative_time": "2 days ago"} Average food, nothing special. The ambiance was nice though. Wait time was reasonable. 3 2026-01-20 12:00:00+00 Bob Wilson author-003 1 2026-01-24 18:27:58.699245+00 2026-01-24 18:27:58.699245+00 131 \N google ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE unknown {"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"} I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again 5 2024-01-26 01:15:46.600123+00 Ian Hannon \N 1 2026-01-25 01:15:47.368681+00 2026-01-25 01:15:47.368681+00 132 \N google ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB unknown {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"} I will definitely be back again. Raul is amazing. 5 2024-01-26 01:15:46.600715+00 Paul Bechtold \N 1 2026-01-25 01:15:47.601225+00 2026-01-25 01:15:47.601225+00 133 \N google ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE unknown {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"} Good masters working there! David is simple a rockstar 🙌 5 2022-01-26 01:15:46.600736+00 Ievgen Chernenko \N 1 2026-01-25 01:15:47.650162+00 2026-01-25 01:15:47.650162+00 134 \N google ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE unknown {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"} Great service 5 2022-01-26 01:15:46.600744+00 Markus Kramer \N 1 2026-01-25 01:15:47.682622+00 2026-01-25 01:15:47.682622+00 135 \N google Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB unknown {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"} Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10 5 2025-10-27 01:15:46.60076+00 Alex Q. \N 1 2026-01-25 01:15:47.739469+00 2026-01-25 01:15:47.739469+00 136 \N google Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB unknown {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"} De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria. 1 2025-11-26 01:15:46.600769+00 Francisco javier Rodriguez limones \N 1 2026-01-25 01:15:47.762808+00 2026-01-25 01:15:47.762808+00 137 \N google Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB unknown {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"} La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal. 1 2026-01-25 01:15:46.600775+00 ECEM HOGAR \N 1 2026-01-25 01:15:47.769003+00 2026-01-25 01:15:47.769003+00 138 \N google ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE unknown {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"} Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder. 5 2025-03-31 01:15:46.600966+00 B F \N 1 2026-01-25 01:15:47.774203+00 2026-01-25 01:15:47.774203+00 139 \N google Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB unknown {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"} Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado 1 2025-08-28 01:15:46.600987+00 SoyWilliams \N 1 2026-01-25 01:15:47.828035+00 2026-01-25 01:15:47.828035+00 140 \N google ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB unknown {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"} Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado. 5 2025-06-29 01:15:46.600995+00 Quique Con Q \N 1 2026-01-25 01:15:47.889847+00 2026-01-25 01:15:47.889847+00 141 \N google ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB unknown {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"} Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!! 5 2020-01-27 01:15:46.601001+00 Ero Martinez Garcia \N 1 2026-01-25 01:15:47.909386+00 2026-01-25 01:15:47.909386+00 142 \N google ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB unknown {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"} El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael 5 2026-01-25 01:15:46.601007+00 David Rodríguez \N 1 2026-01-25 01:15:47.92963+00 2026-01-25 01:15:47.92963+00 143 \N google ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB unknown {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"} Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP 5 2023-01-26 01:15:46.601057+00 Salvador Bosch \N 1 2026-01-25 01:15:47.944359+00 2026-01-25 01:15:47.944359+00 144 \N google ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE unknown {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"} Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️ 5 2026-01-25 01:15:46.601069+00 Jose Gerardo \N 1 2026-01-25 01:15:47.953568+00 2026-01-25 01:15:47.953568+00 145 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB unknown {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"} El mejor servicio, el mejor trato y profesionalidad. 5 2025-11-26 01:15:46.601134+00 Patrick Scherschinski Luca de Tena \N 1 2026-01-25 01:15:47.961792+00 2026-01-25 01:15:47.961792+00 146 \N google ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE unknown {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"} Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, "preciso y bonito". Recordarles. ⭐️⭐️⭐️⭐️⭐️ 5 2023-01-26 01:15:46.60116+00 Eli Lopez \N 1 2026-01-25 01:15:47.97101+00 2026-01-25 01:15:47.97101+00 147 \N google ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE unknown {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"} La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado. 5 2023-01-26 01:15:46.601171+00 Adrián Rodríguez \N 1 2026-01-25 01:15:47.997187+00 2026-01-25 01:15:47.997187+00 148 \N google ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB unknown {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"} Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar 5 2020-01-27 01:15:46.601176+00 Nestor Lobato \N 1 2026-01-25 01:15:48.019845+00 2026-01-25 01:15:48.019845+00 149 \N google ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB unknown {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"} Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\nMuy buen trato, y muy profesionales.\nSi viviera aquí, sin duda ya tendría peluquería donde ir. 5 2023-01-26 01:15:46.601181+00 Daniel P. G. \N 1 2026-01-25 01:15:48.055306+00 2026-01-25 01:15:48.055306+00 150 \N google ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB unknown {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"} La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo! 5 2023-01-26 01:15:46.601186+00 Bohdan Savchenko \N 1 2026-01-25 01:15:48.06679+00 2026-01-25 01:15:48.06679+00 151 \N google ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE unknown {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"} Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda. 5 2018-01-27 01:15:46.601191+00 Daniel Medina Claesson \N 1 2026-01-25 01:15:48.082008+00 2026-01-25 01:15:48.082008+00 152 \N google ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB unknown {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"} Profesionales de trato muy amable y cercano.\nSin duda alguna la mejor barbería de la zona. 5 2026-01-25 01:15:46.601257+00 Daniel PM \N 1 2026-01-25 01:15:48.095816+00 2026-01-25 01:15:48.095816+00 153 \N google ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE unknown {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"} professionale! precisione! brava! molto consigliato!\n\nprofessional! accurate! well done! highly recommended!\n\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable! 5 2025-01-25 01:15:46.601391+00 Alessandro “L” Sandri \N 1 2026-01-25 01:15:48.106297+00 2026-01-25 01:15:48.106297+00 154 \N google ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB unknown {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"} Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\nSiempre Obran El Milagro.\nBuenas Tertulias De Lo Divino y De Lo Humano. 5 2026-01-25 01:15:46.601415+00 JOSE MANUEL MORENO CASTAÑO \N 1 2026-01-25 01:15:48.127958+00 2026-01-25 01:15:48.127958+00 155 \N google ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB unknown {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"} Increíble trato, excelente servicio y muy rapido 5 2025-04-30 01:15:46.601459+00 Jaime Jesús García Mendoza \N 1 2026-01-25 01:15:48.141996+00 2026-01-25 01:15:48.141996+00 156 \N google ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE unknown {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"} El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales. 5 2025-01-25 01:15:46.601467+00 Juan Mora \N 1 2026-01-25 01:15:48.162519+00 2026-01-25 01:15:48.162519+00 157 \N google ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE unknown {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"} Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\nRecomiendo👍 5 2024-01-26 01:15:46.601496+00 Dražen Zavoreo \N 1 2026-01-25 01:15:48.173964+00 2026-01-25 01:15:48.173964+00 158 \N google ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE unknown {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"} Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️ 5 2025-01-25 01:15:46.601503+00 Stian Øvstebø \N 1 2026-01-25 01:15:48.194065+00 2026-01-25 01:15:48.194065+00 159 \N google ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE unknown {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"} Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver, 4 2021-01-26 01:15:46.601509+00 Paco Hornero \N 1 2026-01-25 01:15:48.202769+00 2026-01-25 01:15:48.202769+00 160 \N google ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB unknown {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"} Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico. 5 2021-01-26 01:15:46.601515+00 Guillermo Cedrés \N 1 2026-01-25 01:15:48.219314+00 2026-01-25 01:15:48.219314+00 161 \N google ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB unknown {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"} Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta 5 2024-01-26 01:15:46.601524+00 Alejandro Tavio \N 1 2026-01-25 01:15:48.26759+00 2026-01-25 01:15:48.26759+00 162 \N google ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE unknown {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"} Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto 5 2023-01-26 01:15:46.601529+00 Eduardo Rodriguez \N 1 2026-01-25 01:15:48.280851+00 2026-01-25 01:15:48.280851+00 163 \N google ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB unknown {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"} Profesionales, rápidos. Buen precio! Recomendados. 5 2024-01-26 01:15:46.601543+00 Flavio \N 1 2026-01-25 01:15:48.29428+00 2026-01-25 01:15:48.29428+00 164 \N google ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB unknown {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"} Rafael. Muy buen barbero. Profesional y buen talante. 5 2021-01-26 01:15:46.601549+00 The Garden Lanzarote. Profesionales de jardinería. \N 1 2026-01-25 01:15:48.300894+00 2026-01-25 01:15:48.300894+00 165 \N google ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB unknown {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"} Excelente servicio y de un profesional al que le gusta su trabajo 5 2024-01-26 01:15:46.601556+00 Pepe \N 1 2026-01-25 01:15:48.316086+00 2026-01-25 01:15:48.316086+00 166 \N google ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE unknown {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"} Profesional por Excelencia !!!\ny ciertamente gran conversador ,recomendable !! 5 2023-01-26 01:15:46.601561+00 JOSÈ RODRIGUEZ \N 1 2026-01-25 01:15:48.330202+00 2026-01-25 01:15:48.330202+00 167 \N google ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB unknown {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"} Te hacen sentir muy cómodo y buenos profesionales 5 2026-01-25 01:15:46.601566+00 Ignacio Santana Rodríguez \N 1 2026-01-25 01:15:48.343635+00 2026-01-25 01:15:48.343635+00 168 \N google ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB unknown {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"} Muy amables, profesional, cliente para toda la vida. 5 2021-01-26 01:15:46.601629+00 Itaca \N 1 2026-01-25 01:15:48.352954+00 2026-01-25 01:15:48.352954+00 169 \N google ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB unknown {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"} Espectacular,,arte es lo que tiene 5 2024-01-26 01:15:46.601641+00 Cristobal Ceballos vega \N 1 2026-01-25 01:15:48.361343+00 2026-01-25 01:15:48.361343+00 170 \N google ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB unknown {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"} La mejor barbería de la zona de guanarteme 5 2023-01-26 01:15:46.601647+00 C Cdrs \N 1 2026-01-25 01:15:48.378973+00 2026-01-25 01:15:48.378973+00 171 \N google ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE unknown {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"} No te puedes morir sin ir antes 💈✨ 5 2021-01-26 01:15:46.601652+00 Camilo \N 1 2026-01-25 01:15:48.405031+00 2026-01-25 01:15:48.405031+00 172 \N google ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB unknown {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"} Peluqueros muy trabajadore 5 2020-01-27 01:15:46.601658+00 FernanGamer HDModzz \N 1 2026-01-25 01:15:48.411663+00 2026-01-25 01:15:48.411663+00 173 \N google ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE unknown {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"} Buen servicio 5 2023-01-26 01:15:46.601663+00 Noelia Lopez \N 1 2026-01-25 01:15:48.421846+00 2026-01-25 01:15:48.421846+00 174 \N google ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB unknown {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"} Buen trato 5 2022-01-26 01:15:46.601668+00 Jordi Antonell Bladé \N 1 2026-01-25 01:15:48.43523+00 2026-01-25 01:15:48.43523+00 175 \N google ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB unknown {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"} La mejor peluquería de la ciudad 👌🏽 5 2021-01-26 01:15:46.601673+00 Adrián Pérez Roger \N 1 2026-01-25 01:15:48.443025+00 2026-01-25 01:15:48.443025+00 176 \N google ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE unknown {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"} Malísimo 1 2024-01-26 01:15:46.601678+00 Iker Gomez \N 1 2026-01-25 01:15:48.454411+00 2026-01-25 01:15:48.454411+00 1183 \N google Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB unknown {"text": "Last Post (8/15 & 16/2025): Highly recommended to come visit and have fun with open-minded and positive attitude. I love this place. I came here twice in a row. Open dance floor and dance moves. Great vibe and great DJ. Friendly staff and the bar owner were incredible amazing person. Definitely, I will come visit again when I'm in the country. I already missed this place ☹️", "author": "Dalton James Cryztoff", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB", "timestamp": "4 months ago"} Last Post (8/15 & 16/2025): Highly recommended to come visit and have fun with open-minded and positive attitude. I love this place. I came here twice in a row. Open dance floor and dance moves. Great vibe and great DJ. Friendly staff and the bar owner were incredible amazing person. Definitely, I will come visit again when I'm in the country. I already missed this place ☹️ 5 2025-10-01 18:34:31.336452+00 Dalton James Cryztoff \N 1 2026-01-29 18:36:00.405848+00 2026-01-29 18:36:00.405848+00 1184 \N google Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB unknown {"text": "Nice pub with great music! I really enjoyed my time there.", "author": "Sevda K.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB", "timestamp": "a month ago"} Nice pub with great music! I really enjoyed my time there. 5 2025-12-30 18:34:31.336452+00 Sevda K. \N 1 2026-01-29 18:36:00.418791+00 2026-01-29 18:36:00.418791+00 178 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB unknown {"text": "The initial price looks to good to be true - no one can expect to get a car for that price. Understandable that they want to make some money - so the fine print is important. And somehow understandable.\\n\\nBUT: the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. But they do not care. AND THIS IS WHAT I CONSIDER AS CHEATING!!!", "author": "Karsten Knorr", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB", "timestamp": "a week ago"} The initial price looks to good to be true - no one can expect to get a car for that price. Understandable that they want to make some money - so the fine print is important. And somehow understandable.\n\nBUT: the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. But they do not care. AND THIS IS WHAT I CONSIDER AS CHEATING!!! 1 2026-01-18 01:27:48.34003+00 Karsten Knorr \N 1 2026-01-29 04:35:07.634643+00 2026-01-25 01:27:49.899914+00 66 \N google ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB unknown {"text": "Great coffee. Fresh baguettes with filling bursting out. Friendly attentive service. Lovely little garden, sheltered and a suntrap.", "author": "Jo Lo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB", "timestamp": "9 months ago"} Great coffee. Fresh baguettes with filling bursting out. Friendly attentive service. Lovely little garden, sheltered and a suntrap. 5 2025-04-29 23:35:50.73221+00 Jo Lo \N 1 2026-01-24 23:53:03.01238+00 2026-01-24 23:35:51.017597+00 67 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB unknown {"text": "Been twice and the coffee is excellent! The staff are very friendly and the GF options are fantastic. Recommend the home made GF almond cakes. Delicious.", "author": "becky fenton-ree", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB", "timestamp": "4 months ago"} Been twice and the coffee is excellent! The staff are very friendly and the GF options are fantastic. Recommend the home made GF almond cakes. Delicious. 5 2025-09-26 23:35:50.732215+00 becky fenton-ree \N 1 2026-01-24 23:53:03.01547+00 2026-01-24 23:35:51.022419+00 68 \N google ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE unknown {"text": "Such a lovely café with beautiful decor and fair prices. The igloo garden is a fantastic idea – warm and cozy even on a chilly day. The coffee was delicious, and the staff were extremely friendly and welcoming. Thank you, JW 😁\\nHighly recommended!", "author": "BetiK", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE", "timestamp": "8 months ago"} Such a lovely café with beautiful decor and fair prices. The igloo garden is a fantastic idea – warm and cozy even on a chilly day. The coffee was delicious, and the staff were extremely friendly and welcoming. Thank you, JW 😁\nHighly recommended! 5 2025-05-29 23:35:50.732218+00 BetiK \N 1 2026-01-24 23:53:03.017939+00 2026-01-24 23:35:51.028439+00 69 \N google ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE unknown {"text": "⭐ 5/5 ⭐\\n\\nAmazing place for a coffee and a sweet treat! Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte! 🥰\\n\\nA big plus is the Garden, a hidden gem where you can unwind in peace. If you haven’t been there yet, you’re missing out!", "author": "jakub Giemza", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE", "timestamp": "11 months ago"} ⭐ 5/5 ⭐\n\nAmazing place for a coffee and a sweet treat! Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte! 🥰\n\nA big plus is the Garden, a hidden gem where you can unwind in peace. If you haven’t been there yet, you’re missing out! 5 2025-02-28 23:35:50.732223+00 jakub Giemza \N 1 2026-01-24 23:53:03.020512+00 2026-01-24 23:35:51.031898+00 70 \N google Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB unknown {"text": "Shopped off here for a very late breakfast and was really good. Great food and coffee and quite cheap too. We got a tiramisu to takeaway which was equally good.", "author": "Ricki Dunning", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB", "timestamp": "6 months ago"} Shopped off here for a very late breakfast and was really good. Great food and coffee and quite cheap too. We got a tiramisu to takeaway which was equally good. 5 2025-07-28 23:35:50.732226+00 Ricki Dunning \N 1 2026-01-24 23:53:03.022702+00 2026-01-24 23:35:51.036317+00 71 \N google ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB unknown {"text": "Such a lovely new cafe on historic Red Lion St just opposite Centenary Methodist Church. The outside area, under cover, very peaceful and sunny - well, today at least. Great coffee. Best wishes FIKA.", "author": "Rev Dr Val Ogden", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB", "timestamp": "9 months ago"} Such a lovely new cafe on historic Red Lion St just opposite Centenary Methodist Church. The outside area, under cover, very peaceful and sunny - well, today at least. Great coffee. Best wishes FIKA. 5 2025-04-29 23:35:50.732229+00 Rev Dr Val Ogden \N 1 2026-01-24 23:53:03.025775+00 2026-01-24 23:35:51.040029+00 72 \N google Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB unknown {"text": "Nice coffee, very tasty cheesecake 😋, excellent service. I recommend this place 👌 ♥️", "author": "Tatjana Kirilova", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB", "timestamp": "4 months ago"} Nice coffee, very tasty cheesecake 😋, excellent service. I recommend this place 👌 ♥️ 5 2025-09-26 23:35:50.732232+00 Tatjana Kirilova \N 1 2026-01-24 23:53:03.032299+00 2026-01-24 23:35:51.042642+00 73 \N google ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE unknown {"text": "This is a cute cosy cafe away from the town noise. The coffee was very tasty and pancakes too. Great place to chill after shopping or with a book. Will definitely be back", "author": "Holly Wilson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE", "timestamp": "11 months ago"} This is a cute cosy cafe away from the town noise. The coffee was very tasty and pancakes too. Great place to chill after shopping or with a book. Will definitely be back 5 2025-02-28 23:35:50.732236+00 Holly Wilson \N 1 2026-01-24 23:53:03.034229+00 2026-01-24 23:35:51.044224+00 74 \N google ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE unknown {"text": "This local coffee shop offers a cozy, personalized experience around toen. Unlike chain cafes, it provides a more intimate atmosphere and attentive service, making it a refreshing alternative to larger coffee franchises.", "author": "kristaps piesis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE", "timestamp": "a year ago"} This local coffee shop offers a cozy, personalized experience around toen. Unlike chain cafes, it provides a more intimate atmosphere and attentive service, making it a refreshing alternative to larger coffee franchises. 5 2025-01-24 23:35:50.732238+00 kristaps piesis \N 1 2026-01-24 23:53:03.036396+00 2026-01-24 23:35:51.046689+00 75 \N google ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE unknown {"text": "I had a lovely experience today at Fika. The staff are wonderful very polite and friendly. Very warm and cosey. I would highly recommend trying the waffles their lovely and fresh.", "author": "Kenzie Nuttell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE", "timestamp": "a year ago"} I had a lovely experience today at Fika. The staff are wonderful very polite and friendly. Very warm and cosey. I would highly recommend trying the waffles their lovely and fresh. 5 2025-01-24 23:35:50.732241+00 Kenzie Nuttell \N 1 2026-01-24 23:53:03.038525+00 2026-01-24 23:35:51.048667+00 1489 \N google ChdDSUhNMG9nS0VJQ0FnSUNHanU3Tm1nRRAB unknown {"text": "Took family for a birthday treat and they all had a great time, reasonably priced,", "author": "nicola howard", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHanU3Tm1nRRAB", "timestamp": "4 years ago"} Took family for a birthday treat and they all had a great time, reasonably priced, 5 2022-01-31 01:52:39.833374+00 nicola howard \N 1 2026-01-30 09:54:07.128137+00 2026-01-30 02:01:09.514851+00 278 \N google ChZDSUhNMG9nS0VJQ0FnSUMzaVByQ2FBEAE unknown {"text": "Very bad", "author": "Mona Stoicescu", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzaVByQ2FBEAE", "timestamp": "a year ago"} Very bad 1 2025-01-25 01:27:48.34078+00 Mona Stoicescu \N 1 2026-01-29 04:35:07.931619+00 2026-01-25 01:27:50.776913+00 65 \N google ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE unknown {"text": "I lovely place to relax & enjoy a soft drink\\n& freshly prepared food to order. Worth the few minutes wait. Always a lovely greeting by lovely staff.\\nGames available to play, board, card & computer. Dogs welcome too.\\nAn amazing outside area.\\nDeserves every success.", "author": "Liz Scarbro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE", "timestamp": "10 months ago"} I lovely place to relax & enjoy a soft drink\n& freshly prepared food to order. Worth the few minutes wait. Always a lovely greeting by lovely staff.\nGames available to play, board, card & computer. Dogs welcome too.\nAn amazing outside area.\nDeserves every success. 5 2025-03-30 23:35:50.732046+00 Liz Scarbro \N 1 2026-01-24 23:53:02.988865+00 2026-01-24 23:35:51.007791+00 76 \N google ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE unknown {"text": "The atmosphere is very cosy and friendly even the staff they are so friendly and nice,the coffee and the food are greats i enjoyed and I will come again with my friends.Thank you Fika 😊", "author": "Sonia Maximilian", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE", "timestamp": "10 months ago"} The atmosphere is very cosy and friendly even the staff they are so friendly and nice,the coffee and the food are greats i enjoyed and I will come again with my friends.Thank you Fika 😊 5 2025-03-30 23:35:50.732244+00 Sonia Maximilian \N 1 2026-01-24 23:53:03.041395+00 2026-01-24 23:35:51.050997+00 77 \N google Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB unknown {"text": "Food wasn't as great as I hoped for. Service was great", "author": "Agnes Emsina", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB", "timestamp": "2 months ago"} Food wasn't as great as I hoped for. Service was great 4 2025-11-25 23:35:50.732246+00 Agnes Emsina \N 1 2026-01-24 23:53:03.04813+00 2026-01-24 23:35:51.05448+00 78 \N google ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB unknown {"text": "I have been twice since it opened and the staff are lovely and amazing with kids. More highchairs are definitely needed though.", "author": "Katie Hazelden", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB", "timestamp": "11 months ago"} I have been twice since it opened and the staff are lovely and amazing with kids. More highchairs are definitely needed though. 5 2025-02-28 23:35:50.732248+00 Katie Hazelden \N 1 2026-01-24 23:53:03.050762+00 2026-01-24 23:35:51.057994+00 79 \N google ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB unknown {"text": "Amazing place for activities after school or on weekends.", "author": "Adrian Mickevic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB", "timestamp": "11 months ago"} Amazing place for activities after school or on weekends. 5 2025-02-28 23:35:50.73225+00 Adrian Mickevic \N 1 2026-01-24 23:53:03.053702+00 2026-01-24 23:35:51.062709+00 80 \N google ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE unknown {"text": "Lovely café with a nice and cosy atmosphere, friendly staff and delicious sweet treats!", "author": "Irina Svinarova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE", "timestamp": "11 months ago"} Lovely café with a nice and cosy atmosphere, friendly staff and delicious sweet treats! 5 2025-02-28 23:35:50.732252+00 Irina Svinarova \N 1 2026-01-24 23:53:03.05627+00 2026-01-24 23:35:51.065237+00 81 \N google ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB unknown {"text": "Gaming cafe with a secret garden. Only criticism is they dont advertise these parts of it at all. Need to let people know!", "author": "Tommy Leigh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB", "timestamp": "10 months ago"} Gaming cafe with a secret garden. Only criticism is they dont advertise these parts of it at all. Need to let people know! 5 2025-03-30 23:35:50.732254+00 Tommy Leigh \N 1 2026-01-24 23:53:03.059243+00 2026-01-24 23:35:51.068027+00 82 \N google ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB unknown {"text": "I love their waffles 😍😍😍", "author": "Wiktor Komar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB", "timestamp": "10 months ago"} I love their waffles 😍😍😍 5 2025-03-30 23:35:50.732256+00 Wiktor Komar \N 1 2026-01-24 23:53:03.060955+00 2026-01-24 23:35:51.07071+00 83 \N google ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB unknown {"text": "My new favourite place in Boston", "author": "Gytis Zubrickas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB", "timestamp": "10 months ago"} My new favourite place in Boston 5 2025-03-30 23:35:50.732257+00 Gytis Zubrickas \N 1 2026-01-24 23:53:03.063901+00 2026-01-24 23:35:51.075634+00 84 \N google ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB unknown {"text": "Very good place I would recommend to anyone", "author": "Nikos radev", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB", "timestamp": "10 months ago"} Very good place I would recommend to anyone 5 2025-03-30 23:35:50.732259+00 Nikos radev \N 1 2026-01-24 23:53:03.066653+00 2026-01-24 23:35:51.079376+00 85 \N google Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB unknown {"text": "It is okay, the food and service is amazing the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm which sucks as we wanted to get coffee and some treats.", "author": "Silly fisheee", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB", "timestamp": "a week ago"} It is okay, the food and service is amazing the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm which sucks as we wanted to get coffee and some treats. 4 2026-01-17 23:35:50.732261+00 Silly fisheee \N 1 2026-01-24 23:53:03.068424+00 2026-01-24 23:35:51.08161+00 86 \N google ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE unknown {"text": "Очень приятное, чистое место. Рекомендую посетить", "author": "саида абдуллаева", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE", "timestamp": "7 months ago"} Очень приятное, чистое место. Рекомендую посетить 5 2025-06-28 23:35:50.732264+00 саида абдуллаева \N 1 2026-01-24 23:53:03.071492+00 2026-01-24 23:35:51.084935+00 1185 \N google ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB unknown {"text": "Decided last minute to come here with a friend on a Saturday night around 1:30 am. The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or super pop music. But, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and I were singing along. The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards.\\n\\n6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Drink prices are reasonable I guess, paid 10 euro for a Negroni and I was sleepy so I had a Black Russian and a White Russian, those were only 8 each.\\n\\nJust wish the crowd was larger! Especially for a Saturday night but the crowd had good energy, I’ve that they have events twice a month with a bigger crowd- I guess that’s when they open the other section with the stage.\\n\\nOverall, I had an okay time- friendly staff, good music and well prepared drinks.", "author": "Hak Bén", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB", "timestamp": "a year ago"} Decided last minute to come here with a friend on a Saturday night around 1:30 am. The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or super pop music. But, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and I were singing along. The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards.\n\n6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Drink prices are reasonable I guess, paid 10 euro for a Negroni and I was sleepy so I had a Black Russian and a White Russian, those were only 8 each.\n\nJust wish the crowd was larger! Especially for a Saturday night but the crowd had good energy, I’ve that they have events twice a month with a bigger crowd- I guess that’s when they open the other section with the stage.\n\nOverall, I had an okay time- friendly staff, good music and well prepared drinks. 4 2025-01-29 18:34:31.336452+00 Hak Bén \N 1 2026-01-29 18:36:00.422138+00 2026-01-29 18:36:00.422138+00 1186 \N google Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB unknown {"text": "Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for hours without there being a dull moment. The bartenders are fast and the service is good. Great atmosphere in the club. Would recommend it to anyone looking for a good night out in Vilnius.", "author": "Eirik Johansen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB", "timestamp": "7 months ago"} Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for hours without there being a dull moment. The bartenders are fast and the service is good. Great atmosphere in the club. Would recommend it to anyone looking for a good night out in Vilnius. 5 2025-07-03 18:34:31.336452+00 Eirik Johansen \N 1 2026-01-29 18:36:00.428953+00 2026-01-29 18:36:00.428953+00 1187 \N google Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB unknown {"text": "Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing. The staff and customers are friendly", "author": "Ugne Mosinaite", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB", "timestamp": "4 months ago"} Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing. The staff and customers are friendly 5 2025-10-01 18:34:31.336452+00 Ugne Mosinaite \N 1 2026-01-29 18:36:00.430843+00 2026-01-29 18:36:00.430843+00 180 \N google Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB unknown {"text": "Save your money and your holiday and book with someone else.\\n\\n1.\\tLeft at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got \\"line busy\\" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas\\n\\n2.\\tRefused to drop off at Maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up\\n\\n3.\\tOn arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. We didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders.\\n\\n4.\\tCar given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. To add insult to injury they decided to take £381.50 out of my account (I guess for good measure). Presumably this is how they make their money – it is nothing short of a scam.\\n\\n5.\\tWe detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. Predictably, we received no response from them.\\n\\nLesson learned – we’ll be booking with a reputable company next time.", "author": "Llŷr", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB", "timestamp": "a month ago"} Save your money and your holiday and book with someone else.\n\n1.\tLeft at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got "line busy" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas\n\n2.\tRefused to drop off at Maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up\n\n3.\tOn arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. We didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders.\n\n4.\tCar given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. To add insult to injury they decided to take £381.50 out of my account (I guess for good measure). Presumably this is how they make their money – it is nothing short of a scam.\n\n5.\tWe detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. Predictably, we received no response from them.\n\nLesson learned – we’ll be booking with a reputable company next time. 1 2025-12-26 01:27:48.340047+00 Llŷr \N 1 2026-01-29 04:35:07.648936+00 2026-01-25 01:27:49.910138+00 181 \N google Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB unknown {"text": "Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup service was arranged very well and they took good care of us.\\n\\nThey did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. In the end booking directly with them would have been cheaper. The car was great, brand new with only 8 km driven with it.\\n\\nOverall great company, we will book again directly with them.", "author": "Danny van der Ven", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB", "timestamp": "2 months ago"} Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup service was arranged very well and they took good care of us.\n\nThey did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. In the end booking directly with them would have been cheaper. The car was great, brand new with only 8 km driven with it.\n\nOverall great company, we will book again directly with them. 5 2025-11-26 01:27:48.340057+00 Danny van der Ven \N 1 2026-01-29 04:35:07.651526+00 2026-01-25 01:27:49.916175+00 182 \N google Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB unknown {"text": "Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend them! Some of the cheapest prices for rental cars I found on GC. Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times and return was also very unproblematic and quick.", "author": "Susanne Frühling", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB", "timestamp": "a week ago"} Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend them! Some of the cheapest prices for rental cars I found on GC. Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times and return was also very unproblematic and quick. 5 2026-01-18 01:27:48.340068+00 Susanne Frühling \N 1 2026-01-29 04:35:07.654465+00 2026-01-25 01:27:49.918643+00 273 \N google Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB unknown {"text": "🫡😉👍", "author": "Zoltán Kerékgyártó", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB", "timestamp": "7 months ago"} 🫡😉👍 5 2025-06-29 01:27:48.34074+00 Zoltán Kerékgyártó \N 1 2026-01-29 04:35:07.915067+00 2026-01-25 01:27:50.754801+00 1188 \N google Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB unknown {"text": "We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free.\\nI feel sorry for the administrators, it's quite strange approach.\\n\\nThank you for your response. I haven't visited you for more than 5 years, been couple of times in total.\\nThe system you have is stupid and discriminatory. I support clubs by buying drinks and coming back. No need for manipulative bullshit.\\n\\nIts a never seen system when a single person or a couple is less welcome than a group of 3.", "author": "Jonas Šimeliūnas", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB", "timestamp": "Edited 4 months ago"} We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free.\nI feel sorry for the administrators, it's quite strange approach.\n\nThank you for your response. I haven't visited you for more than 5 years, been couple of times in total.\nThe system you have is stupid and discriminatory. I support clubs by buying drinks and coming back. No need for manipulative bullshit.\n\nIts a never seen system when a single person or a couple is less welcome than a group of 3. 3 2026-01-29 18:34:31.336452+00 Jonas Šimeliūnas \N 1 2026-01-29 18:36:00.433537+00 2026-01-29 18:36:00.433537+00 1189 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB unknown {"text": "Yeah the other review was correct, every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathroom I’ve ever seen in a public place.", "author": "Ciarán Meers", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB", "timestamp": "4 months ago"} Yeah the other review was correct, every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathroom I’ve ever seen in a public place. 4 2025-10-01 18:34:31.336452+00 Ciarán Meers \N 1 2026-01-29 18:36:00.43598+00 2026-01-29 18:36:00.43598+00 1450 \N google ChdDSUhNMG9nS0VJQ0FnTUNvOVp1MTJnRRAB unknown {"text": "Great fun, well run and organised. Give it a go.", "author": "Chris B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvOVp1MTJnRRAB", "timestamp": "9 months ago"} Great fun, well run and organised. Give it a go. 5 2025-05-05 00:52:39.833374+00 Chris B \N 1 2026-01-30 09:54:07.024901+00 2026-01-30 02:01:09.391058+00 185 \N google Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB unknown {"text": "Everything was great!\\n\\nHad 200€ deposit taken upon delivery and unlocked upon return. The car was completely new - 1900km only! Everything worked perfectly and smoothly. Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :)\\nRecommend!", "author": "Gerda Grinkeviciute", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB", "timestamp": "3 weeks ago"} Everything was great!\n\nHad 200€ deposit taken upon delivery and unlocked upon return. The car was completely new - 1900km only! Everything worked perfectly and smoothly. Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :)\nRecommend! 5 2026-01-04 01:27:48.340094+00 Gerda Grinkeviciute \N 1 2026-01-29 04:35:07.66555+00 2026-01-25 01:27:49.931309+00 186 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB unknown {"text": "Much more to pay on arrival, only credit card accepted and not very helpful.\\n\\nPick up from airport was bad, vague instructions and phone was computer voice. Ended up walking 20min to the place which was all the way in the back of a parking lot further away.\\n\\nAbout the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance.\\n\\nWhen asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough.\\nAsked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.\\n\\nThe car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast.", "author": "Bart v Haren", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB", "timestamp": "3 months ago"} Much more to pay on arrival, only credit card accepted and not very helpful.\n\nPick up from airport was bad, vague instructions and phone was computer voice. Ended up walking 20min to the place which was all the way in the back of a parking lot further away.\n\nAbout the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance.\n\nWhen asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough.\nAsked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.\n\nThe car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast. 2 2025-10-27 01:27:48.340097+00 Bart v Haren \N 1 2026-01-29 04:35:07.669058+00 2026-01-25 01:27:49.935233+00 187 \N google Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB unknown {"text": "This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. In every other country you take the car full and return it full — simple.\\n\\nThey told me that if I returned the car with a full tank, I would be refunded the full amount except for the €35 fee, and if I returned it half-full, I would receive a partial refund depending on how much petrol remained when I returned the car. The staff member completed everything and told me I would receive the refund within a few days for the remaining half tank of fuel.\\n\\nIt has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. I’ve contacted them multiple times with no response. I ended up losing €67, and the car rental itself was €70 — so I basically paid double.\\n\\nBased on my experience, I would stay away from this company — they made my holiday stressful.", "author": "Leonard Mana", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB", "timestamp": "2 months ago"} This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. In every other country you take the car full and return it full — simple.\n\nThey told me that if I returned the car with a full tank, I would be refunded the full amount except for the €35 fee, and if I returned it half-full, I would receive a partial refund depending on how much petrol remained when I returned the car. The staff member completed everything and told me I would receive the refund within a few days for the remaining half tank of fuel.\n\nIt has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. I’ve contacted them multiple times with no response. I ended up losing €67, and the car rental itself was €70 — so I basically paid double.\n\nBased on my experience, I would stay away from this company — they made my holiday stressful. 1 2025-11-26 01:27:48.3401+00 Leonard Mana \N 1 2026-01-29 04:35:07.673819+00 2026-01-25 01:27:49.938705+00 188 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB unknown {"text": "A word of caution! I don't usually publish articles like this, but I'll make an exception this time. This topic concerns the car rental company @ClickRent, which operates in the Spanish market.\\nNEVER AGAIN @ClickRent https://clickrent.es/ I've rented cars from many rental companies, large and small, and I've never encountered such disrespectful customer service and a complete lack of professionalism. Our entire group was treated very unfairly/We were severely let down by the service, and our sightseeing plans were ruined.\\nDescription of the incident:\\nI booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explore the island of Gran Canaria. I did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. Everything seemed professional. On the day of our arrival at Las Palmas Airport (LPA - Gran Canaria), we all went to the meeting point in front of the airport terminal, and within a few minutes, a shuttle bus took us to the rental company's office. One of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was no car for us! I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her. The lady informed me that I would receive a refund on my card within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). I asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When I took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that I delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN @ClickRent, or specifically this office: \\"Practicante Casto Moros, 35219 Ojos de Garza, España\\" (I have no idea how this company operates, what its structures and offices are like, or how they work together – I'm just a customer and I'm not interested).\\nSo, I emailed someone who runs the @ClickRent booking system. I also received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! I asked for the matter to be escalated and contacted a manager – I received a reply that the matter had been escalated and someone would contact me. Today, two weeks have passed since this report, and absolutely NO ONE has contacted me! In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). We lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so NEVER AGAIN @ClickRent!", "author": "Damian Wieczorek", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB", "timestamp": "2 months ago"} A word of caution! I don't usually publish articles like this, but I'll make an exception this time. This topic concerns the car rental company @ClickRent, which operates in the Spanish market.\nNEVER AGAIN @ClickRent https://clickrent.es/ I've rented cars from many rental companies, large and small, and I've never encountered such disrespectful customer service and a complete lack of professionalism. Our entire group was treated very unfairly/We were severely let down by the service, and our sightseeing plans were ruined.\nDescription of the incident:\nI booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explore the island of Gran Canaria. I did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. Everything seemed professional. On the day of our arrival at Las Palmas Airport (LPA - Gran Canaria), we all went to the meeting point in front of the airport terminal, and within a few minutes, a shuttle bus took us to the rental company's office. One of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was no car for us! I was a bit shocked, but politely asked, "What next?"—expecting a response/help from her. The lady informed me that I would receive a refund on my card within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). I asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When I took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that I delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN @ClickRent, or specifically this office: "Practicante Casto Moros, 35219 Ojos de Garza, España" (I have no idea how this company operates, what its structures and offices are like, or how they work together – I'm just a customer and I'm not interested).\nSo, I emailed someone who runs the @ClickRent booking system. I also received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! I asked for the matter to be escalated and contacted a manager – I received a reply that the matter had been escalated and someone would contact me. Today, two weeks have passed since this report, and absolutely NO ONE has contacted me! In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). We lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so NEVER AGAIN @ClickRent! 1 2025-11-26 01:27:48.340117+00 Damian Wieczorek \N 1 2026-01-29 04:35:07.676738+00 2026-01-25 01:27:49.941717+00 190 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB unknown {"text": "Overall service experience was very good! One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. After we got to the shuttle, the service was excellent all the way, car was clean and nice for the group!", "author": "Tuomas Nirvi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB", "timestamp": "a month ago"} Overall service experience was very good! One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. After we got to the shuttle, the service was excellent all the way, car was clean and nice for the group! 5 2025-12-26 01:27:48.340133+00 Tuomas Nirvi \N 1 2026-01-29 04:35:07.683209+00 2026-01-25 01:27:49.950276+00 274 \N google Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB unknown {"text": "Too many hidden charges", "author": "La", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB", "timestamp": "4 days ago"} Too many hidden charges 1 2026-01-21 01:27:48.340743+00 La \N 1 2026-01-29 04:35:07.919937+00 2026-01-25 01:27:50.759923+00 1190 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB unknown {"text": "Was hard to see the performers and the drinks and tickets were expensive.\\nThe bathroom was also just wet like someone had just covered every surface in water? Seems strange, I've seen swimming pool bathrooms less wet.\\n\\nBut on the other hand the drinks were STRONG and what I could see of the performance was amazing. And the bathrooms were clean... Just wet\\n\\nThe staff was very nice and they were well equipped for anything. Changed my phone while watching the performance, had a good time.", "author": "fetlock flowers", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB", "timestamp": "7 months ago"} Was hard to see the performers and the drinks and tickets were expensive.\nThe bathroom was also just wet like someone had just covered every surface in water? Seems strange, I've seen swimming pool bathrooms less wet.\n\nBut on the other hand the drinks were STRONG and what I could see of the performance was amazing. And the bathrooms were clean... Just wet\n\nThe staff was very nice and they were well equipped for anything. Changed my phone while watching the performance, had a good time. 4 2025-07-03 18:34:31.336452+00 fetlock flowers \N 1 2026-01-29 18:36:00.438002+00 2026-01-29 18:36:00.438002+00 193 \N google ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE unknown {"text": "First time using this company. Really really happy with the service. Great prices and no hassle return of the car with full cover insurance which was not expensive at all. Will use this company again and highly recommend it to others. No hidden charges. We got an upgraded car for no additional cost which was brand new with 400km on it.", "author": "Elvinas Palcauskis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE", "timestamp": "a year ago"} First time using this company. Really really happy with the service. Great prices and no hassle return of the car with full cover insurance which was not expensive at all. Will use this company again and highly recommend it to others. No hidden charges. We got an upgraded car for no additional cost which was brand new with 400km on it. 5 2025-01-25 01:27:48.34014+00 Elvinas Palcauskis \N 1 2026-01-29 04:35:07.691207+00 2026-01-25 01:27:49.966524+00 194 \N google Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB unknown {"text": "We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank...It is not Clickrent who is cheating, it is the platform. Also the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name. But overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff!", "author": "wim en anneke", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB", "timestamp": "a month ago"} We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank...It is not Clickrent who is cheating, it is the platform. Also the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name. But overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff! 4 2025-12-26 01:27:48.340143+00 wim en anneke \N 1 2026-01-29 04:35:07.694616+00 2026-01-25 01:27:49.969999+00 195 \N google Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB unknown {"text": "We got a good deal from ClickRent for a car with full insurance during black Friday. Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\\nThe only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport.", "author": "Aya ElAttar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB", "timestamp": "a month ago"} We got a good deal from ClickRent for a car with full insurance during black Friday. Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\nThe only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport. 5 2025-12-26 01:27:48.340145+00 Aya ElAttar \N 1 2026-01-29 04:35:07.696841+00 2026-01-25 01:27:49.982061+00 196 \N google Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB unknown {"text": "The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup).\\n\\nWhen we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. So we didnt know how to ask for the shuttle to come to the airport to pick us up.\\n\\nEventually, we called booking.com, who could contact the shuttle via a direct number, and then we were pucked up within a few minutes.\\n\\nAfter that, everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great.", "author": "Martijn Wieringa", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB", "timestamp": "3 months ago"} The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup).\n\nWhen we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. So we didnt know how to ask for the shuttle to come to the airport to pick us up.\n\nEventually, we called booking.com, who could contact the shuttle via a direct number, and then we were pucked up within a few minutes.\n\nAfter that, everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great. 4 2025-10-27 01:27:48.340148+00 Martijn Wieringa \N 1 2026-01-29 04:35:07.699597+00 2026-01-25 01:27:49.986663+00 197 \N google Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB unknown {"text": "The car rent itself is ok\\n\\nBut the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. You need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. And the employees do not care\\n\\nThey were just overwhelmed with the number of customers coming!\\n\\nNever again with this provider", "author": "Gusnadi Wiyoga", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB", "timestamp": "3 weeks ago"} The car rent itself is ok\n\nBut the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. You need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. And the employees do not care\n\nThey were just overwhelmed with the number of customers coming!\n\nNever again with this provider 1 2026-01-04 01:27:48.34015+00 Gusnadi Wiyoga \N 1 2026-01-29 04:35:07.702808+00 2026-01-25 01:27:49.990484+00 198 \N google Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB unknown {"text": "Smooth rental when booking directly with full coverage. Return was extremely quick and the shuttle was ready to bring us to the airport. One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there.", "author": "Wierd", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB", "timestamp": "3 months ago"} Smooth rental when booking directly with full coverage. Return was extremely quick and the shuttle was ready to bring us to the airport. One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there. 4 2025-10-27 01:27:48.340153+00 Wierd \N 1 2026-01-29 04:35:07.708118+00 2026-01-25 01:27:49.999558+00 1191 \N google ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE unknown {"text": "This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks.\\n\\nTheir events are amazing and plentiful. 100% recommend to visit for a drag show or a live event.\\n\\nThe reason for two stars is the fact that the dance DJs they book are pretty poor.\\nThat fact ruins the atmosphere.\\n\\nLast time I danced to a good DJ set there was in 2015 😞", "author": "Aleksandr Panzin", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE", "timestamp": "a year ago"} This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks.\n\nTheir events are amazing and plentiful. 100% recommend to visit for a drag show or a live event.\n\nThe reason for two stars is the fact that the dance DJs they book are pretty poor.\nThat fact ruins the atmosphere.\n\nLast time I danced to a good DJ set there was in 2015 😞 2 2025-01-29 18:34:31.336452+00 Aleksandr Panzin \N 1 2026-01-29 18:36:00.440236+00 2026-01-29 18:36:00.440236+00 200 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB unknown {"text": "I do not recommend this company. They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. This is an unreasonable condition that other companies do not impose. Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience", "author": "Lucia Cojocaru", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB", "timestamp": "2 months ago"} I do not recommend this company. They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. This is an unreasonable condition that other companies do not impose. Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience 1 2025-11-26 01:27:48.340164+00 Lucia Cojocaru \N 1 2026-01-29 04:35:07.715162+00 2026-01-25 01:27:50.005316+00 201 \N google Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB unknown {"text": "I dont recommend. The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. Also the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "author": "Guilherme Cavalcante", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB", "timestamp": "3 weeks ago"} I dont recommend. The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. Also the shuttle takes ages, So prepare yourself to wait for long minutes at the airport. 1 2026-01-04 01:27:48.340172+00 Guilherme Cavalcante \N 1 2026-01-29 04:35:07.724073+00 2026-01-25 01:27:50.007411+00 202 \N google Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB unknown {"text": "Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. Book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. Not worth the cheaper rates. Never got our car and had to pay full price due to a flight delay they refused to accommodate.", "author": "Darren Hastings", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB", "timestamp": "3 months ago"} Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. Book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. Not worth the cheaper rates. Never got our car and had to pay full price due to a flight delay they refused to accommodate. 1 2025-10-27 01:27:48.340176+00 Darren Hastings \N 1 2026-01-29 04:35:07.726966+00 2026-01-25 01:27:50.009782+00 203 \N google ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE unknown {"text": "I rented a car in Gran Canaria from ClickRent. It was a couple of kilometers away from the airport. A taxi there cost 7 €. I took precise photos of every little scratch the car had prior to renting which were not on the report. Renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since I was telling about the scratches before leaving.\\n\\nI had a small worry about the return since price of the rent was quite cheap compared to other rental companies. Also terms on the agreement was bad for a person renting the car. I was quite anxious during the holiday about the rental even though I had full insurance from booking.com. If I would have had some problems, first I would have had to pay ClickRent and after that claim the money from booking.com.\\n\\nBefore returning the car I vacuumed it completely clean since I had heard stories about interior needing to be completely clean. The agreement also states that a car having sand could result in a cleaning fee. I also recorded every conversation with the staff.\\n\\nReturning the car was easier than I thought. They were not trying to find small scratches from the car. I also got the full deposit back in two days. I think it is better to be safe than sorry. If you rent from ClickRent you should read the agreement and take photos of every small scratches. I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. I gave only 3 stars because of the stress from the other reviews and terms in the agreement.", "author": "Onni Virtanen", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE", "timestamp": "10 months ago"} I rented a car in Gran Canaria from ClickRent. It was a couple of kilometers away from the airport. A taxi there cost 7 €. I took precise photos of every little scratch the car had prior to renting which were not on the report. Renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since I was telling about the scratches before leaving.\n\nI had a small worry about the return since price of the rent was quite cheap compared to other rental companies. Also terms on the agreement was bad for a person renting the car. I was quite anxious during the holiday about the rental even though I had full insurance from booking.com. If I would have had some problems, first I would have had to pay ClickRent and after that claim the money from booking.com.\n\nBefore returning the car I vacuumed it completely clean since I had heard stories about interior needing to be completely clean. The agreement also states that a car having sand could result in a cleaning fee. I also recorded every conversation with the staff.\n\nReturning the car was easier than I thought. They were not trying to find small scratches from the car. I also got the full deposit back in two days. I think it is better to be safe than sorry. If you rent from ClickRent you should read the agreement and take photos of every small scratches. I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. I gave only 3 stars because of the stress from the other reviews and terms in the agreement. 3 2025-03-31 01:27:48.340181+00 Onni Virtanen \N 1 2026-01-29 04:35:07.731022+00 2026-01-25 01:27:50.016693+00 204 \N google Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB unknown {"text": "This is absolutely the worse experience I've ever had, trying to rent a car.\\nThe booking was done online, confirmation received by email. With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we didn't want to buy additional services. Therefore they refused to handout the car, and we had to return to the airport empty-handed.\\nSimply the worse company ever.", "author": "David A. Brandt Klug", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB", "timestamp": "a month ago"} This is absolutely the worse experience I've ever had, trying to rent a car.\nThe booking was done online, confirmation received by email. With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we didn't want to buy additional services. Therefore they refused to handout the car, and we had to return to the airport empty-handed.\nSimply the worse company ever. 1 2025-12-26 01:27:48.340189+00 David A. Brandt Klug \N 1 2026-01-29 04:35:07.734234+00 2026-01-25 01:27:50.021835+00 220 \N google Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB unknown {"text": "Very unfriendly lady. Not returning here again. Totally not clear where the shuttle bus was leaving at the airport. She said it was not her problem. Dont so this to yourself. Not a nice way to start your holiday", "author": "Randy Beaumont", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB", "timestamp": "2 months ago"} Very unfriendly lady. Not returning here again. Totally not clear where the shuttle bus was leaving at the airport. She said it was not her problem. Dont so this to yourself. Not a nice way to start your holiday 1 2025-11-26 01:27:48.340463+00 Randy Beaumont \N 1 2026-01-29 04:35:07.785914+00 2026-01-25 01:27:50.07296+00 1352 \N google ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE unknown {"text": "Great place to come for ages 6+. Friendly staff, well looked after go karts and the track was really good. We will be back.", "author": "Rebecca Tarrant", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE", "timestamp": "a year ago"} Great place to come for ages 6+. Friendly staff, well looked after go karts and the track was really good. We will be back. 5 2025-01-30 01:52:39.833374+00 Rebecca Tarrant \N 1 2026-01-30 09:54:06.742522+00 2026-01-30 02:01:09.077064+00 1558 \N google ChZDSUhNMG9nS0VJQ0FnSUNnc3JhellnEAE unknown {"text": "Great track, well run!", "author": "Steve Jones", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnc3JhellnEAE", "timestamp": "7 years ago"} Great track, well run! 5 2019-02-01 01:52:39.833374+00 Steve Jones \N 1 2026-01-30 09:54:07.358839+00 2026-01-30 02:01:09.775288+00 206 \N google Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB unknown {"text": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.\\nGetting and returning car is a nightmare be prepated to miss your flight.\\nAfter I returned home, my credit card was charged additional 180 eur without any documentation. So if you want to avoid headache - stay away from it.", "author": "Oleksii Vyacheslavovich", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB", "timestamp": "Edited 3 weeks ago"} Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.\nGetting and returning car is a nightmare be prepated to miss your flight.\nAfter I returned home, my credit card was charged additional 180 eur without any documentation. So if you want to avoid headache - stay away from it. 1 2026-01-25 01:27:48.340202+00 Oleksii Vyacheslavovich \N 1 2026-01-29 04:35:07.741659+00 2026-01-25 01:27:50.032799+00 207 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB unknown {"text": "AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no car for us. No prior contact — all we were offered was a refund and “goodbye.” Our entire trip was thrown into chaos due to a complete lack of professionalism. Better save yourself the stress and choose another company! DO NOT RECOMMEND.", "author": "Adrianna Kluge", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB", "timestamp": "2 months ago"} AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no car for us. No prior contact — all we were offered was a refund and “goodbye.” Our entire trip was thrown into chaos due to a complete lack of professionalism. Better save yourself the stress and choose another company! DO NOT RECOMMEND. 1 2025-11-26 01:27:48.340406+00 Adrianna Kluge \N 1 2026-01-29 04:35:07.749376+00 2026-01-25 01:27:50.034972+00 208 \N google Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB unknown {"text": "Very difficoult to get to from the airport. When criticised their policies they refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "author": "Antti Lumus", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB", "timestamp": "2 weeks ago"} Very difficoult to get to from the airport. When criticised their policies they refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!! 1 2026-01-11 01:27:48.340414+00 Antti Lumus \N 1 2026-01-29 04:35:07.751682+00 2026-01-25 01:27:50.037322+00 209 \N google Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB unknown {"text": "Basically a total disaster; shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. All in all one of the worst car rental experiences ever.", "author": "Erik Schobesberger", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB", "timestamp": "3 weeks ago"} Basically a total disaster; shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. All in all one of the worst car rental experiences ever. 1 2026-01-04 01:27:48.340417+00 Erik Schobesberger \N 1 2026-01-29 04:35:07.754317+00 2026-01-25 01:27:50.039173+00 210 \N google Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB unknown {"text": "My experience was good. I was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. Would use their services again.", "author": "Chill The Pill", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB", "timestamp": "2 weeks ago"} My experience was good. I was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. Would use their services again. 5 2026-01-11 01:27:48.340421+00 Chill The Pill \N 1 2026-01-29 04:35:07.7568+00 2026-01-25 01:27:50.040882+00 211 \N google Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB unknown {"text": "Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the day before my booking started. They were very helpful and arranged that I could take the car 1 day earlier. ¡Muchas gracias!", "author": "Attila H", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB", "timestamp": "3 weeks ago"} Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the day before my booking started. They were very helpful and arranged that I could take the car 1 day earlier. ¡Muchas gracias! 5 2026-01-04 01:27:48.340426+00 Attila H \N 1 2026-01-29 04:35:07.759551+00 2026-01-25 01:27:50.042558+00 212 \N google Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB unknown {"text": "We arrived with a confirmed booking, only to be told there was no car available for us. The staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. This is utterly unacceptable. Avoid at all costs.", "author": "Honorata Wieczorek", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB", "timestamp": "2 months ago"} We arrived with a confirmed booking, only to be told there was no car available for us. The staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. This is utterly unacceptable. Avoid at all costs. 1 2025-11-26 01:27:48.340428+00 Honorata Wieczorek \N 1 2026-01-29 04:35:07.762222+00 2026-01-25 01:27:50.047865+00 1192 \N google ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE unknown {"text": "The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. She didn’t measure the proportion, and I had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. That was too much. And finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) I was literally shocked and about to throw up. That’s disgusting and unacceptable. No respect to clients. Avoid her, awful experience. Though place is rather cozy", "author": "Daria Zaikina", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE", "timestamp": "8 months ago"} The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. She didn’t measure the proportion, and I had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. That was too much. And finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) I was literally shocked and about to throw up. That’s disgusting and unacceptable. No respect to clients. Avoid her, awful experience. Though place is rather cozy 2 2025-06-03 18:34:31.336452+00 Daria Zaikina \N 1 2026-01-29 18:36:00.442422+00 2026-01-29 18:36:00.442422+00 1193 \N google Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB unknown {"text": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? I loved this place.", "author": "Batonas Tvirtas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB", "timestamp": "2 months ago"} The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? I loved this place. 5 2025-11-30 18:34:31.336452+00 Batonas Tvirtas \N 1 2026-01-29 18:36:00.444768+00 2026-01-29 18:36:00.444768+00 1194 \N google Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB unknown {"text": "They only have the phone scan option for the drink menu. I left immediately.", "author": "Antony Maiolla", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB", "timestamp": "a month ago"} They only have the phone scan option for the drink menu. I left immediately. 1 2025-12-30 18:34:31.336452+00 Antony Maiolla \N 1 2026-01-29 18:36:00.446489+00 2026-01-29 18:36:00.446489+00 1195 \N google Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB unknown {"text": "Nice place, great events!", "author": "Yana Kanapickiene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB", "timestamp": "3 months ago"} Nice place, great events! 5 2025-10-31 18:34:31.336452+00 Yana Kanapickiene \N 1 2026-01-29 18:36:00.450452+00 2026-01-29 18:36:00.450452+00 214 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB unknown {"text": "We had a very nice experience renting from ClickRent. So nice people, and we got all the information we needed. The car was just as expected, clean and everything was on top. Thank you so much!", "author": "Julianne Markussen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB", "timestamp": "3 weeks ago"} We had a very nice experience renting from ClickRent. So nice people, and we got all the information we needed. The car was just as expected, clean and everything was on top. Thank you so much! 5 2026-01-04 01:27:48.340434+00 Julianne Markussen \N 1 2026-01-29 04:35:07.767051+00 2026-01-25 01:27:50.054203+00 215 \N google Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB unknown {"text": "No hassle, no waiting, excellent staff especially Gabrielle. Highly recommended for your car hire. The car was awesome and brand new like 1000 clicks on the odo. Great family experience made our stay worthwhile in Gran Canaria", "author": "Iyad Zaaroura", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB", "timestamp": "5 months ago"} No hassle, no waiting, excellent staff especially Gabrielle. Highly recommended for your car hire. The car was awesome and brand new like 1000 clicks on the odo. Great family experience made our stay worthwhile in Gran Canaria 5 2025-08-28 01:27:48.340436+00 Iyad Zaaroura \N 1 2026-01-29 04:35:07.770065+00 2026-01-25 01:27:50.057206+00 216 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB unknown {"text": "Very good cars. Lots of Audi cars. Very good service and the person is polite. They will take you on a verry short shuttle from the airport to their office (takes almost 5 mins). You need to wait a maximum of 1 hour i think. We waited close to 30 mins. Their office is air-conditioned and very well kept. I would recommend you to take a car from here", "author": "Saeed Mekdachi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB", "timestamp": "5 months ago"} Very good cars. Lots of Audi cars. Very good service and the person is polite. They will take you on a verry short shuttle from the airport to their office (takes almost 5 mins). You need to wait a maximum of 1 hour i think. We waited close to 30 mins. Their office is air-conditioned and very well kept. I would recommend you to take a car from here 5 2025-08-28 01:27:48.340439+00 Saeed Mekdachi \N 1 2026-01-29 04:35:07.772494+00 2026-01-25 01:27:50.059767+00 217 \N google Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB unknown {"text": "I had a very good experience, they have a good fleet of cars, very close to the airport and their insurance is the ceapest compared to other car rentals. They also have enough staff in order not to waste time at pick-up and dropoff.", "author": "ovidiu morosan", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB", "timestamp": "5 months ago"} I had a very good experience, they have a good fleet of cars, very close to the airport and their insurance is the ceapest compared to other car rentals. They also have enough staff in order not to waste time at pick-up and dropoff. 5 2025-08-28 01:27:48.340443+00 ovidiu morosan \N 1 2026-01-29 04:35:07.775858+00 2026-01-25 01:27:50.064117+00 218 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB unknown {"text": "Worst car rental ever. Chaos, long queues, small shuttle.\\n\\nIf you have a flight to catch make sure you arrive much earlier to give back the car.\\n\\nPersonly, i am never renting from here again.", "author": "Kareem Jano", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB", "timestamp": "3 weeks ago"} Worst car rental ever. Chaos, long queues, small shuttle.\n\nIf you have a flight to catch make sure you arrive much earlier to give back the car.\n\nPersonly, i am never renting from here again. 1 2026-01-04 01:27:48.340455+00 Kareem Jano \N 1 2026-01-29 04:35:07.779099+00 2026-01-25 01:27:50.067385+00 275 \N google ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE unknown {"text": "Adrian S. Is such a nice Guy!🙏 Good work", "author": "Yung yury", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE", "timestamp": "a year ago"} Adrian S. Is such a nice Guy!🙏 Good work 5 2025-01-25 01:27:48.340751+00 Yung yury \N 1 2026-01-29 04:35:07.922841+00 2026-01-25 01:27:50.766037+00 1196 \N google ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB unknown {"text": "Greatest club in Litauen love it like it best place to go and have fun perfect DJ\\nSUPER FIVE STAR LIKE THE SOHO IN LONDON YEAAAAAH", "author": "AndrewG GE", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB", "timestamp": "2 years ago"} Greatest club in Litauen love it like it best place to go and have fun perfect DJ\nSUPER FIVE STAR LIKE THE SOHO IN LONDON YEAAAAAH 5 2024-01-30 18:34:31.336452+00 AndrewG GE \N 1 2026-01-29 18:36:00.453274+00 2026-01-29 18:36:00.453274+00 1197 \N google ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE unknown {"text": "Door charge plus coat check was 6 euros quite fair. Not packed but great vibes love it. Friendly bartenders and ticket person. Music was good it was quite a mix so depends on your preference. But generally quite good. Quite young crowd. Mixed good for an Eastern European country. Definitely visit if you’re a foreigner. Drinks are cheap!", "author": "Anthony Lava", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE", "timestamp": "2 years ago"} Door charge plus coat check was 6 euros quite fair. Not packed but great vibes love it. Friendly bartenders and ticket person. Music was good it was quite a mix so depends on your preference. But generally quite good. Quite young crowd. Mixed good for an Eastern European country. Definitely visit if you’re a foreigner. Drinks are cheap! 5 2024-01-30 18:34:31.336452+00 Anthony Lava \N 1 2026-01-29 18:36:00.456144+00 2026-01-29 18:36:00.456144+00 1198 \N google ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB unknown {"text": "If you want to see a different kind of entertainment night, you can choose this place. it has a small stage but we didn't like their music very much", "author": "Merve Esra", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB", "timestamp": "3 years ago"} If you want to see a different kind of entertainment night, you can choose this place. it has a small stage but we didn't like their music very much 4 2023-01-30 18:34:31.336452+00 Merve Esra \N 1 2026-01-29 18:36:00.458044+00 2026-01-29 18:36:00.458044+00 222 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB unknown {"text": "It's great for a budget rental. A little further from the airport than other companies but the service is excellent. Recommend it.", "author": "Joanna Lewandowska", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB", "timestamp": "2 months ago"} It's great for a budget rental. A little further from the airport than other companies but the service is excellent. Recommend it. 5 2025-11-26 01:27:48.340468+00 Joanna Lewandowska \N 1 2026-01-29 04:35:07.793142+00 2026-01-25 01:27:50.084243+00 223 \N google ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB unknown {"text": "Good service, perfect cars, low prices! Very recommendable!\\nRegarding, how to get to the office, just wait outside without checking owing the street in front of the airport building: a small shuttle bus runs every 15 min, however the office is very close and you can walk, if you don’t have any luggage.\\nWhile taking the car, take photos of the car before renting, as including under the bumper.", "author": "Kyrylo Shevchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB", "timestamp": "9 months ago"} Good service, perfect cars, low prices! Very recommendable!\nRegarding, how to get to the office, just wait outside without checking owing the street in front of the airport building: a small shuttle bus runs every 15 min, however the office is very close and you can walk, if you don’t have any luggage.\nWhile taking the car, take photos of the car before renting, as including under the bumper. 5 2025-04-30 01:27:48.34047+00 Kyrylo Shevchenko \N 1 2026-01-29 04:35:07.796153+00 2026-01-25 01:27:50.088627+00 224 \N google Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB unknown {"text": "Last two times was everything perfect and easy. This car rental service I can recommend.", "author": "Sandra Hofmann", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB", "timestamp": "a week ago"} Last two times was everything perfect and easy. This car rental service I can recommend. 5 2026-01-18 01:27:48.340472+00 Sandra Hofmann \N 1 2026-01-29 04:35:07.798088+00 2026-01-25 01:27:50.092594+00 225 \N google ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE unknown {"text": "I can only recommend this company in Gran Canaria!!! Absolutely fair and competitive prices, new cars, clear policy, no credit card needs! The staff was amazing! Super kind and super helpful! I have book the smallest car with full insurance, but my friend brought his bike and we realized we needed a bigger car as the cover of the bike was too big. They offered us straight away two other options when we have arrived and they have changed our car in no time….Thank you once again for your quick and efficient service and your kindness!🙏🏻", "author": "Viktoria Turcsik", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE", "timestamp": "a year ago"} I can only recommend this company in Gran Canaria!!! Absolutely fair and competitive prices, new cars, clear policy, no credit card needs! The staff was amazing! Super kind and super helpful! I have book the smallest car with full insurance, but my friend brought his bike and we realized we needed a bigger car as the cover of the bike was too big. They offered us straight away two other options when we have arrived and they have changed our car in no time….Thank you once again for your quick and efficient service and your kindness!🙏🏻 5 2025-01-25 01:27:48.340474+00 Viktoria Turcsik \N 1 2026-01-29 04:35:07.800601+00 2026-01-25 01:27:50.098026+00 226 \N google ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB unknown {"text": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up, despite my reservation being almost a month ago. Take a look at their TripAdvisor reviews for more accurate reviews then these good reviews.\\n\\nUpon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. Now flash to today, and they automatically took 60 euros out of my bank account. I also still have yet to receive my 200 euro deposit back. I tried to call to talk to them, and they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee (which they have taken out today, almost a month later). The more frustrating part, is that I asked them insistently to send me a copy of the contract, which they didn't send me - not in my junk mail, nowhere to be found. So now, almost 300 euros later, and the lady on the phone basically told me it's my fault.\\n\\nThis place sucks. Do not rent from this company, and also, take a look at their reviews in trip advisor - those are far more accurate.", "author": "baby", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB", "timestamp": "11 months ago"} This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up, despite my reservation being almost a month ago. Take a look at their TripAdvisor reviews for more accurate reviews then these good reviews.\n\nUpon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. Now flash to today, and they automatically took 60 euros out of my bank account. I also still have yet to receive my 200 euro deposit back. I tried to call to talk to them, and they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee (which they have taken out today, almost a month later). The more frustrating part, is that I asked them insistently to send me a copy of the contract, which they didn't send me - not in my junk mail, nowhere to be found. So now, almost 300 euros later, and the lady on the phone basically told me it's my fault.\n\nThis place sucks. Do not rent from this company, and also, take a look at their reviews in trip advisor - those are far more accurate. 1 2025-03-01 01:27:48.340479+00 baby \N 1 2026-01-29 04:35:07.803728+00 2026-01-25 01:27:50.10327+00 227 \N google Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB unknown {"text": "Impossible to find the meeting point. No one was there, no sign, customer service with automated voice message.. We had to walk 30 minutes on bad road with luggage to find the office. Don't rent anything from here.", "author": "Namık Akkılıç", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB", "timestamp": "a month ago"} Impossible to find the meeting point. No one was there, no sign, customer service with automated voice message.. We had to walk 30 minutes on bad road with luggage to find the office. Don't rent anything from here. 1 2025-12-26 01:27:48.340496+00 Namık Akkılıç \N 1 2026-01-29 04:35:07.806739+00 2026-01-25 01:27:50.107535+00 1199 \N google Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB unknown {"text": "I Was there on weekend ,nice mix of People, and really nice service, i forget my Phone at the veniu and they was really helpfull found it and giving it back", "author": "Jose", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB", "timestamp": "6 months ago"} I Was there on weekend ,nice mix of People, and really nice service, i forget my Phone at the veniu and they was really helpfull found it and giving it back 5 2025-08-02 18:34:31.336452+00 Jose \N 1 2026-01-29 18:36:00.45987+00 2026-01-29 18:36:00.45987+00 1200 \N google ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE unknown {"text": "Great queer club! Excellent drinks, cool staff and a good dance floor.", "author": "Nicolas Dula", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE", "timestamp": "a year ago"} Great queer club! Excellent drinks, cool staff and a good dance floor. 5 2025-01-29 18:34:31.336452+00 Nicolas Dula \N 1 2026-01-29 18:36:00.462691+00 2026-01-29 18:36:00.462691+00 1201 \N google ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB unknown {"text": "Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood.\\nI ended up losing my phone, but they contacted me the next day so I could come right over and get it back.\\nDefinitely a place I’ll visit again if I’m in Vilnius.", "author": "Dina Mihle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB", "timestamp": "4 years ago"} Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood.\nI ended up losing my phone, but they contacted me the next day so I could come right over and get it back.\nDefinitely a place I’ll visit again if I’m in Vilnius. 5 2022-01-30 18:34:31.336452+00 Dina Mihle \N 1 2026-01-29 18:36:00.464521+00 2026-01-29 18:36:00.464521+00 1314 \N google ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE unknown {"text": "Came here whilst on holiday in April and loved it. My boys had such a fab time and haven't stopped going on about it. My youngest had to go round on his own because he was the youngest in our group but he had extra laps and was so happy. Really easy to find, you can either pre book or pay when you arrive. Choosing from a variety of different go karts, drinks and snacks available not sure about any other food options. We will definitely be returning when we visit next.", "author": "Kelly Short", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE", "timestamp": "a year ago"} Came here whilst on holiday in April and loved it. My boys had such a fab time and haven't stopped going on about it. My youngest had to go round on his own because he was the youngest in our group but he had extra laps and was so happy. Really easy to find, you can either pre book or pay when you arrive. Choosing from a variety of different go karts, drinks and snacks available not sure about any other food options. We will definitely be returning when we visit next. 5 2025-01-30 01:52:39.833374+00 Kelly Short \N 1 2026-01-30 09:54:06.6287+00 2026-01-30 02:01:08.934261+00 245 \N google review_68 unknown {"text": "I had a smooth rent, great customer service, and very nice affordable cars", "author": "Youssef", "rating": 5, "source": "dom", "timestamp": "4 months ago"} I had a smooth rent, great customer service, and very nice affordable cars 5 2025-09-27 01:27:48.340569+00 Youssef \N 1 2026-01-30 09:54:06.813434+00 2026-01-25 01:27:50.209514+00 229 \N google ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE unknown {"text": "Everything was fine overall. They didn’t charge us any additional fees, and the car was new and comfortable. However, there are a few things they could improve:\\n\\n1. Clearer Instructions at the Airport: There should be clear signs indicating where to go upon landing. They mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. Providing a detailed map or directions in the confirmation email would solve this issue.\\n\\n2. Staffing at the Office: There was only one person working in the office. When a full shuttle bus arrived, the wait time became frustratingly long. Unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. This was a waste of time and could be easily avoided with better staffing.\\n\\nIn conclusion, while the car and lack of hidden fees were positive aspects, these operational inefficiencies need to be addressed for a smoother customer experience.", "author": "Katarzyna Krok-Jalocha", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE", "timestamp": "a year ago"} Everything was fine overall. They didn’t charge us any additional fees, and the car was new and comfortable. However, there are a few things they could improve:\n\n1. Clearer Instructions at the Airport: There should be clear signs indicating where to go upon landing. They mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. Providing a detailed map or directions in the confirmation email would solve this issue.\n\n2. Staffing at the Office: There was only one person working in the office. When a full shuttle bus arrived, the wait time became frustratingly long. Unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. This was a waste of time and could be easily avoided with better staffing.\n\nIn conclusion, while the car and lack of hidden fees were positive aspects, these operational inefficiencies need to be addressed for a smoother customer experience. 3 2025-01-25 01:27:48.340503+00 Katarzyna Krok-Jalocha \N 1 2026-01-29 04:35:07.814923+00 2026-01-25 01:27:50.120205+00 230 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB unknown {"text": "Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the car 😀", "author": "Zivilek Kaubriene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB", "timestamp": "a week ago"} Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the car 😀 5 2026-01-18 01:27:48.340509+00 Zivilek Kaubriene \N 1 2026-01-29 04:35:07.817416+00 2026-01-25 01:27:50.125732+00 232 \N google Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB unknown {"text": "The car and the service were great. The only thing is that the shattle from the airpors is not simple to get", "author": "Shai Goorevitch", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB", "timestamp": "a month ago"} The car and the service were great. The only thing is that the shattle from the airpors is not simple to get 4 2025-12-26 01:27:48.340522+00 Shai Goorevitch \N 1 2026-01-29 04:35:07.82169+00 2026-01-25 01:27:50.139237+00 233 \N google ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB unknown {"text": "Amazing service! I’ve rented a car for more than a week, it was easy, efficient and spotless.\\nI was mostly grateful for the service that Carmen provided me, she was kind, efficient and provided with all the information that I needed. She even gave me a list with recommendations of sightseeing by car.\\nTheir shuffle driver Nestor was also helpful with helping with my bags, and he always driving between the airport and the office, so it was fast to get to the airport.\\nI’ve made the booking through booking.com and payed for insurance, which was not necessary, since Clickrent has a better coverage of damages.", "author": "Zarima Utsijeva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB", "timestamp": "a year ago"} Amazing service! I’ve rented a car for more than a week, it was easy, efficient and spotless.\nI was mostly grateful for the service that Carmen provided me, she was kind, efficient and provided with all the information that I needed. She even gave me a list with recommendations of sightseeing by car.\nTheir shuffle driver Nestor was also helpful with helping with my bags, and he always driving between the airport and the office, so it was fast to get to the airport.\nI’ve made the booking through booking.com and payed for insurance, which was not necessary, since Clickrent has a better coverage of damages. 5 2025-01-25 01:27:48.340524+00 Zarima Utsijeva \N 1 2026-01-29 04:35:07.823603+00 2026-01-25 01:27:50.152294+00 1202 \N google ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE unknown {"text": "Yesterday we were looking to have some fun and decided to visit this club. At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. Excuse me, but since when there is some kind of limit of taking your belongings back!? We were also incredibly dissatisfied with the staff at the bar. We asked for a San Francisco cocktail and a bartender did not even know what that is and told us to look at the menu. We were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj was without experience and doesn’t understand the basics of Dj’ing (Synchronizing 2 songs at once, going from one song to the other so that there is no pause). It felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. Overall, the environment its self is pretty cozy and chill but the service is tragedy. People working there clearly hate the job and do not give a damn about customers.", "author": "Tomas", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE", "timestamp": "2 years ago"} Yesterday we were looking to have some fun and decided to visit this club. At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. Excuse me, but since when there is some kind of limit of taking your belongings back!? We were also incredibly dissatisfied with the staff at the bar. We asked for a San Francisco cocktail and a bartender did not even know what that is and told us to look at the menu. We were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj was without experience and doesn’t understand the basics of Dj’ing (Synchronizing 2 songs at once, going from one song to the other so that there is no pause). It felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. Overall, the environment its self is pretty cozy and chill but the service is tragedy. People working there clearly hate the job and do not give a damn about customers. 1 2024-01-30 18:34:31.336452+00 Tomas \N 1 2026-01-29 18:36:00.467116+00 2026-01-29 18:36:00.467116+00 1203 \N google ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE unknown {"text": "Greatest club in Lithuania,best place to go in the midnight.", "author": "Daniel Aston", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE", "timestamp": "a year ago"} Greatest club in Lithuania,best place to go in the midnight. 5 2025-01-29 18:34:31.336452+00 Daniel Aston \N 1 2026-01-29 18:36:00.469216+00 2026-01-29 18:36:00.469216+00 1308 \N google Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB unknown {"text": "I was there with my family on September 6. The kart track is in great condition. My son and nephew drove in the 40 km/h class and had a lot of fun. My daughter and I drove in the mixed class at 60 km/h and above. That was also a lot of fun and a great memory for everyone.", "author": "E K", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB", "timestamp": "3 months ago"} I was there with my family on September 6. The kart track is in great condition. My son and nephew drove in the 40 km/h class and had a lot of fun. My daughter and I drove in the mixed class at 60 km/h and above. That was also a lot of fun and a great memory for everyone. 5 2025-11-01 01:52:39.833374+00 E K \N 1 2026-01-30 09:54:06.593323+00 2026-01-30 02:01:08.904064+00 1354 \N google ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB unknown {"text": "Awesome fun, very friendly staff... and if you go on a Wednesday, you will get twice the time for the same price", "author": "Drew Wilson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB", "timestamp": "3 years ago"} Awesome fun, very friendly staff... and if you go on a Wednesday, you will get twice the time for the same price 5 2023-01-31 01:52:39.833374+00 Drew Wilson \N 1 2026-01-30 09:54:06.747334+00 2026-01-30 02:01:09.081863+00 1355 \N google ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE unknown {"text": "family friendly and lovely atmosphere. Helpful staff", "author": "Olusegun Ilesanmi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE", "timestamp": "2 years ago"} family friendly and lovely atmosphere. Helpful staff 5 2024-01-31 01:52:39.833374+00 Olusegun Ilesanmi \N 1 2026-01-30 09:54:06.751474+00 2026-01-30 02:01:09.084765+00 239 \N google review_62 unknown {"text": "NOT PROFESSIONALS/. SCAMMERS\\nWe landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van but nobody …", "author": "Odisseas Adrian", "rating": 1, "source": "dom", "timestamp": "11 months ago"} NOT PROFESSIONALS/. SCAMMERS\nWe landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van but nobody … 1 2025-03-01 01:27:48.34054+00 Odisseas Adrian \N 1 2026-01-30 09:54:06.794421+00 2026-01-25 01:27:50.182149+00 240 \N google review_63 unknown {"text": "Great price performance ratio, very friendly and service oriented team, even German speaking with Daniel.\\nWEITER SO 🌟👏 …", "author": "Vural Aybar", "rating": 5, "source": "dom", "timestamp": "a month ago"} Great price performance ratio, very friendly and service oriented team, even German speaking with Daniel.\nWEITER SO 🌟👏 … 5 2025-12-26 01:27:48.340551+00 Vural Aybar \N 1 2026-01-30 09:54:06.797777+00 2026-01-25 01:27:50.185476+00 241 \N google review_64 unknown {"text": "Honestly, astounded at how amazing the service from these guys has been - especially considering the amazing price! …", "author": "Owen Batchelor", "rating": 5, "source": "dom", "timestamp": "a year ago"} Honestly, astounded at how amazing the service from these guys has been - especially considering the amazing price! … 5 2025-01-25 01:27:48.340555+00 Owen Batchelor \N 1 2026-01-30 09:54:06.800596+00 2026-01-25 01:27:50.189224+00 242 \N google review_65 unknown {"text": "Great experience using ClickRent. Quick check in and check out and regular shuttles.", "author": "Rebecca Wilkinson", "rating": 5, "source": "dom", "timestamp": "2 weeks ago"} Great experience using ClickRent. Quick check in and check out and regular shuttles. 5 2026-01-11 01:27:48.340558+00 Rebecca Wilkinson \N 1 2026-01-30 09:54:06.803268+00 2026-01-25 01:27:50.193088+00 235 \N google ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB unknown {"text": "They have a shuttle bus between airport and their office, so very easy to get and return your car. Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. When I returned the car they just quickly check the car and told me everything is OK. I get back my deposit immediately.\\n\\nSuggest buy their full insurance.", "author": "K Hu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB", "timestamp": "a year ago"} They have a shuttle bus between airport and their office, so very easy to get and return your car. Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. When I returned the car they just quickly check the car and told me everything is OK. I get back my deposit immediately.\n\nSuggest buy their full insurance. 5 2025-01-25 01:27:48.340529+00 K Hu \N 1 2026-01-29 04:35:07.828434+00 2026-01-25 01:27:50.166098+00 1204 \N google ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB unknown {"text": "This was my first time at any drag show and it’s definitely not the last. I was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and I’ve never left a party more energized. I don’t think I’ve ever felt safer and happier at a club. I’m not religious but Drag at soho is my new church. Definitely go when you have time! (Plus the bartender‘s cute)", "author": "Alicia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB", "timestamp": "2 years ago"} This was my first time at any drag show and it’s definitely not the last. I was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and I’ve never left a party more energized. I don’t think I’ve ever felt safer and happier at a club. I’m not religious but Drag at soho is my new church. Definitely go when you have time! (Plus the bartender‘s cute) 5 2024-01-30 18:34:31.336452+00 Alicia \N 1 2026-01-29 18:36:00.470972+00 2026-01-29 18:36:00.470972+00 1205 \N google ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB unknown {"text": "Great place to relax- does not matter u are gay or straight. Strong coctails, great music, relaxing athmosphere.", "author": "Rokas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB", "timestamp": "7 months ago"} Great place to relax- does not matter u are gay or straight. Strong coctails, great music, relaxing athmosphere. 5 2025-07-03 18:34:31.336452+00 Rokas \N 1 2026-01-29 18:36:00.473161+00 2026-01-29 18:36:00.473161+00 249 \N google ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB unknown {"text": "I do not recommend at all. This company is a scam and will take your money. They claim fake damages and make you pay for them. I recommend renting from companies that are based at the airport (not this one)", "author": "Jorge Gomis", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB", "timestamp": "8 months ago"} I do not recommend at all. This company is a scam and will take your money. They claim fake damages and make you pay for them. I recommend renting from companies that are based at the airport (not this one) 1 2025-05-30 01:27:48.340618+00 Jorge Gomis \N 1 2026-01-29 04:35:07.859599+00 2026-01-25 01:27:50.23105+00 250 \N google ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB unknown {"text": "Excellent, friendly and beyond helpful service at both collection and drop off for car.\\nShuttle to and from airport takes away the stress of trying to figure out the complicated roads in the area. Very quick and easy.\\nWill defo recommend 👌", "author": "Tony Kelly", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB", "timestamp": "a year ago"} Excellent, friendly and beyond helpful service at both collection and drop off for car.\nShuttle to and from airport takes away the stress of trying to figure out the complicated roads in the area. Very quick and easy.\nWill defo recommend 👌 5 2025-01-25 01:27:48.34062+00 Tony Kelly \N 1 2026-01-29 04:35:07.861476+00 2026-01-25 01:27:50.234946+00 251 \N google ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB unknown {"text": "Employeey were nice. We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. They send back the deposit on that day. I really recomend it!", "author": "Dorina Németh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB", "timestamp": "a year ago"} Employeey were nice. We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. They send back the deposit on that day. I really recomend it! 5 2025-01-25 01:27:48.340622+00 Dorina Németh \N 1 2026-01-29 04:35:07.863638+00 2026-01-25 01:27:50.244331+00 252 \N google Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB unknown {"text": "Very friendly and helpfull staff. Quick and correct in service. Close to the airport so very well recomended.", "author": "K. B.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB", "timestamp": "6 months ago"} Very friendly and helpfull staff. Quick and correct in service. Close to the airport so very well recomended. 5 2025-07-29 01:27:48.340624+00 K. B. \N 1 2026-01-29 04:35:07.86714+00 2026-01-25 01:27:50.2582+00 253 \N google Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB unknown {"text": "Null !!\\nTerrible\\nHorrible\\nWaiting in the queue for 100 minutes is not the way to start your trip.\\nNo Bueno", "author": "Louise Anderson", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB", "timestamp": "a month ago"} Null !!\nTerrible\nHorrible\nWaiting in the queue for 100 minutes is not the way to start your trip.\nNo Bueno 1 2025-12-26 01:27:48.340626+00 Louise Anderson \N 1 2026-01-29 04:35:07.870405+00 2026-01-25 01:27:50.471589+00 254 \N google Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB unknown {"text": "The girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recommend. Not professional at all", "author": "Imane Tejari", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB", "timestamp": "6 months ago"} The girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recommend. Not professional at all 1 2025-07-29 01:27:48.340632+00 Imane Tejari \N 1 2026-01-29 04:35:07.873228+00 2026-01-25 01:27:50.614005+00 256 \N google Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB unknown {"text": "One of the best rental car experiences I've had. Great service", "author": "Ian Pasin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB", "timestamp": "6 months ago"} One of the best rental car experiences I've had. Great service 5 2025-07-29 01:27:48.340649+00 Ian Pasin \N 1 2026-01-29 04:35:07.878321+00 2026-01-25 01:27:50.652721+00 257 \N google ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE unknown {"text": "Car pick up was seamless and Carmen from the Gran Canaria branch who served us was wonderful. So friendly and made it all very easy. Car is excellent and brand new.", "author": "ian taylor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE", "timestamp": "a year ago"} Car pick up was seamless and Carmen from the Gran Canaria branch who served us was wonderful. So friendly and made it all very easy. Car is excellent and brand new. 5 2025-01-25 01:27:48.340658+00 ian taylor \N 1 2026-01-29 04:35:07.880554+00 2026-01-25 01:27:50.655636+00 258 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB unknown {"text": "Strongly suggest to choose this company . Very reliable and not trying to rip off .", "author": "kasia dabrowska", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB", "timestamp": "a month ago"} Strongly suggest to choose this company . Very reliable and not trying to rip off . 5 2025-12-26 01:27:48.340665+00 kasia dabrowska \N 1 2026-01-29 04:35:07.882474+00 2026-01-25 01:27:50.661319+00 276 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE unknown {"text": "Very good service from Carmen and Francisco.", "author": "Sam Shahoud", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE", "timestamp": "a year ago"} Very good service from Carmen and Francisco. 5 2025-01-25 01:27:48.340758+00 Sam Shahoud \N 1 2026-01-29 04:35:07.925298+00 2026-01-25 01:27:50.768981+00 260 \N google Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB unknown {"text": "Efficient service, good daily rate.\\nWould definitely use again and recommend", "author": "Tim West", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB", "timestamp": "4 months ago"} Efficient service, good daily rate.\nWould definitely use again and recommend 5 2025-09-27 01:27:48.340676+00 Tim West \N 1 2026-01-29 04:35:07.88843+00 2026-01-25 01:27:50.701926+00 261 \N google ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB unknown {"text": "Car rent with shuttle from airport, but very close, so it takes about 5min from airport there. Also the People there are nice and helpfull, speak good english, so no problem to find with them.\\nThanks Dany, Carlos and Antonio :-)", "author": "Pepa Želizko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB", "timestamp": "a year ago"} Car rent with shuttle from airport, but very close, so it takes about 5min from airport there. Also the People there are nice and helpfull, speak good english, so no problem to find with them.\nThanks Dany, Carlos and Antonio :-) 5 2025-01-25 01:27:48.340685+00 Pepa Želizko \N 1 2026-01-29 04:35:07.890466+00 2026-01-25 01:27:50.712436+00 262 \N google ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE unknown {"text": "We had to wait a while for the shuttle from the airport to the office however the overall experience was great. Carlos in the office was very friendly!", "author": "Arron Bhourlay", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE", "timestamp": "11 months ago"} We had to wait a while for the shuttle from the airport to the office however the overall experience was great. Carlos in the office was very friendly! 5 2025-03-01 01:27:48.340689+00 Arron Bhourlay \N 1 2026-01-29 04:35:07.892064+00 2026-01-25 01:27:50.720994+00 263 \N google ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB unknown {"text": "Excellent service , very quick and efficient bookings, thanks again to Carlos ,Antonio and their Colleagues no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)\\nAnd brand new vehicles 😁", "author": "Robert Turner", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB", "timestamp": "a year ago"} Excellent service , very quick and efficient bookings, thanks again to Carlos ,Antonio and their Colleagues no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)\nAnd brand new vehicles 😁 5 2025-01-25 01:27:48.340691+00 Robert Turner \N 1 2026-01-29 04:35:07.894681+00 2026-01-25 01:27:50.724609+00 264 \N google ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE unknown {"text": "Carlos in Gran Canaria was very helpful, didn't try hard sell on additional cover over what I had chosen, a very simple, easy car hire at a very good price for a very good car.", "author": "Colin Alden", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE", "timestamp": "a year ago"} Carlos in Gran Canaria was very helpful, didn't try hard sell on additional cover over what I had chosen, a very simple, easy car hire at a very good price for a very good car. 5 2025-01-25 01:27:48.340693+00 Colin Alden \N 1 2026-01-29 04:35:07.897123+00 2026-01-25 01:27:50.731388+00 265 \N google ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE unknown {"text": "Very professional, kind, effective and entertaining.\\nI strongly recommend this rental in Las Palmas\\nCarmen, Antonio (shuttle service) and Isaac have been dealing with me", "author": "Addetto Difesa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE", "timestamp": "a year ago"} Very professional, kind, effective and entertaining.\nI strongly recommend this rental in Las Palmas\nCarmen, Antonio (shuttle service) and Isaac have been dealing with me 5 2025-01-25 01:27:48.340695+00 Addetto Difesa \N 1 2026-01-29 04:35:07.898915+00 2026-01-25 01:27:50.734122+00 266 \N google ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE unknown {"text": "Everything went fast and without any problems. Really recommend that car rental company", "author": "Max", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE", "timestamp": "a year ago"} Everything went fast and without any problems. Really recommend that car rental company 5 2025-01-25 01:27:48.340699+00 Max \N 1 2026-01-29 04:35:07.900304+00 2026-01-25 01:27:50.735993+00 267 \N google ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB unknown {"text": "Everything went smoothly.\\nCar was in excellent shape and the shuttle bus is very convenient.", "author": "Smirres lordling", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB", "timestamp": "a year ago"} Everything went smoothly.\nCar was in excellent shape and the shuttle bus is very convenient. 5 2025-01-25 01:27:48.340702+00 Smirres lordling \N 1 2026-01-29 04:35:07.901943+00 2026-01-25 01:27:50.738244+00 268 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB unknown {"text": "The whole experience was painless from getting picked up by Antonio who was very nice to checking in with Carlos who was also very very good so very happy", "author": "Hugh Fraser", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB", "timestamp": "a year ago"} The whole experience was painless from getting picked up by Antonio who was very nice to checking in with Carlos who was also very very good so very happy 5 2025-01-25 01:27:48.34071+00 Hugh Fraser \N 1 2026-01-29 04:35:07.903484+00 2026-01-25 01:27:50.740797+00 269 \N google Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB unknown {"text": "With car was everything good.", "author": "Jarosław Dudek", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB", "timestamp": "a week ago"} With car was everything good. 5 2026-01-18 01:27:48.340718+00 Jarosław Dudek \N 1 2026-01-29 04:35:07.905368+00 2026-01-25 01:27:50.743227+00 270 \N google ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE unknown {"text": "Got a 5 mm scratch - 450 euros…. Never again!!", "author": "Alexander Gligorijevic", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE", "timestamp": "11 months ago"} Got a 5 mm scratch - 450 euros…. Never again!! 1 2025-03-01 01:27:48.340722+00 Alexander Gligorijevic \N 1 2026-01-29 04:35:07.909382+00 2026-01-25 01:27:50.748274+00 271 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB unknown {"text": "Fast & professional. Really recommend!", "author": "Alexander Hellberg", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB", "timestamp": "5 months ago"} Fast & professional. Really recommend! 5 2025-08-28 01:27:48.340727+00 Alexander Hellberg \N 1 2026-01-29 04:35:07.911665+00 2026-01-25 01:27:50.750749+00 272 \N google ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB unknown {"text": "Nice people, no hidden fees, easy process, good cars.", "author": "Sylvie Tubez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB", "timestamp": "10 months ago"} Nice people, no hidden fees, easy process, good cars. 5 2025-03-31 01:27:48.340735+00 Sylvie Tubez \N 1 2026-01-29 04:35:07.914189+00 2026-01-25 01:27:50.753761+00 1206 \N google ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE unknown {"text": "Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as I see most these reviewers are tourists. Guys, Lithuanians in general aren’t the most easy going people. So please don’t be offended if you can’t find people to talk to very easily. The club however definitely deserves a 4.5+ rating.\\n\\nIf you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. It won’t be super easy but you will get some great connections there for sure :)", "author": "Tigran Avagyan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE", "timestamp": "3 years ago"} Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as I see most these reviewers are tourists. Guys, Lithuanians in general aren’t the most easy going people. So please don’t be offended if you can’t find people to talk to very easily. The club however definitely deserves a 4.5+ rating.\n\nIf you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. It won’t be super easy but you will get some great connections there for sure :) 5 2023-01-30 18:34:31.336452+00 Tigran Avagyan \N 1 2026-01-29 18:36:00.475214+00 2026-01-29 18:36:00.475214+00 1207 \N google ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE unknown {"text": "I've been to many gay venues across Europe and around the world. Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfortunately this is not the case. It's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. The staff were mostly friendly which was the only positive. As me and my friend left we meet a young man who was dressed beautifully in a mini skirt and tank top, unfortunately he was refused entry. This is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. He was not drunk, he was not loud and he left rather embarrassed as result of his treatment. Honestly they could do better and so could you by, spending your money elsewhere.", "author": "Eamonn Maguire", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE", "timestamp": "3 years ago"} I've been to many gay venues across Europe and around the world. Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfortunately this is not the case. It's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. The staff were mostly friendly which was the only positive. As me and my friend left we meet a young man who was dressed beautifully in a mini skirt and tank top, unfortunately he was refused entry. This is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. He was not drunk, he was not loud and he left rather embarrassed as result of his treatment. Honestly they could do better and so could you by, spending your money elsewhere. 1 2023-01-30 18:34:31.336452+00 Eamonn Maguire \N 1 2026-01-29 18:36:00.477908+00 2026-01-29 18:36:00.477908+00 280 \N google Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB unknown {"text": "Nice experience with great people , very nice and new cars !!!", "author": "Cosmin Anghelache", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB", "timestamp": "4 days ago"} Nice experience with great people , very nice and new cars !!! 5 2026-01-21 01:27:48.340788+00 Cosmin Anghelache \N 1 2026-01-29 04:35:07.939007+00 2026-01-25 01:27:50.784019+00 282 \N google Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB unknown {"text": "Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. Al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo.\\nOltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta.\\nPoco precisi e errate informazioni.", "author": "piero", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB", "timestamp": "a month ago"} Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. Al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo.\nOltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta.\nPoco precisi e errate informazioni. 2 2025-12-26 01:27:48.340793+00 piero \N 1 2026-01-29 04:35:07.951436+00 2026-01-25 01:27:50.791479+00 284 \N google Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB unknown {"text": "Le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer la vidéo avant notre arrivée.\\nJ'ai du appelé le service qui parle anglais. ( moi qui parle pas un mot d'anglais c'était compliqué)\\nSuite a mon appel, ils ont envoyé la vidéo. ( avant sa aurait étais plus simple).\\nLe reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire les papiers été rapide.\\nLe retour du véhicule a été rapide aussi.\\nLe personnel super sympa.", "author": "Vanessa Ribeyre", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB", "timestamp": "4 months ago"} Le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer la vidéo avant notre arrivée.\nJ'ai du appelé le service qui parle anglais. ( moi qui parle pas un mot d'anglais c'était compliqué)\nSuite a mon appel, ils ont envoyé la vidéo. ( avant sa aurait étais plus simple).\nLe reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire les papiers été rapide.\nLe retour du véhicule a été rapide aussi.\nLe personnel super sympa. 5 2025-09-27 01:27:48.340799+00 Vanessa Ribeyre \N 1 2026-01-29 04:35:08.017022+00 2026-01-25 01:27:50.801019+00 301 \N google Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB unknown {"text": "Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. Dit informatiepunt was echter nergens te vinden. Meerdere mensen gaven aan dat we ter hoogte van de Spar moesten wachten en dat daar elke 10 minuten een busje zou komen. Na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien.\\n\\nWe hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. Na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto.\\n\\nEenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. Vervolgens kregen we te maken met onduidelijke en hoge kosten. We moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij ClickRent de schade zou dekken. Daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent.\\n\\nOok bij het terugbrengen van de auto verliep alles traag. Het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht.\\n\\nAl met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder op Gran Canaria.", "author": "Rick Westerink", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB", "timestamp": "3 weeks ago"} Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. Dit informatiepunt was echter nergens te vinden. Meerdere mensen gaven aan dat we ter hoogte van de Spar moesten wachten en dat daar elke 10 minuten een busje zou komen. Na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien.\n\nWe hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. Na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto.\n\nEenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. Vervolgens kregen we te maken met onduidelijke en hoge kosten. We moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij ClickRent de schade zou dekken. Daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent.\n\nOok bij het terugbrengen van de auto verliep alles traag. Het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht.\n\nAl met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder op Gran Canaria. 2 2026-01-04 01:27:48.34089+00 Rick Westerink \N 1 2026-01-29 04:35:08.129346+00 2026-01-25 01:27:50.867048+00 1208 \N google ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB unknown {"text": "I had the best night in my life\\nAmazing atmosphere\\nEveryone is Super friendly\\nCan’t wait to come again 💕", "author": "MOHAMMED MSAOURI", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB", "timestamp": "7 months ago"} I had the best night in my life\nAmazing atmosphere\nEveryone is Super friendly\nCan’t wait to come again 💕 5 2025-07-03 18:34:31.336452+00 MOHAMMED MSAOURI \N 1 2026-01-29 18:36:00.480048+00 2026-01-29 18:36:00.480048+00 1209 \N google ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB unknown {"text": "I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ Recomend to visit for everybody! 😎", "author": "Jelly Bear", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB", "timestamp": "a year ago"} I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ Recomend to visit for everybody! 😎 5 2025-01-29 18:34:31.336452+00 Jelly Bear \N 1 2026-01-29 18:36:00.481856+00 2026-01-29 18:36:00.481856+00 1210 \N google ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB unknown {"text": "I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances, I was seriously disappointed by the venue. The organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. I could only stand to watch one third of the show as I couldn’t squeeze through the crowd in the first segment so there wasn’t a single place I could stand where I would be able to see more than a quarter of the stage. Later, I managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. After I secured my spot, I was hopeful that I would finally enjoy the show but watching through the second segment of the show was torture, I had barely any space to stand, I still could only watch the performers from the waist up because I couldn’t see over the people in front of me (and I’m 5’5, average height) plus it was so hot I was feeling faint. After that, I left not watching the third and final part of the show. This is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. I would not recommend going for any event they organise.\\n\\nEDIT: In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I expected a designated seat. I expected to be able to watch the show fully, and that's the minimum requirement. In addition, it shouldn't matter what time I enter the event as a paying customer. The event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "author": "Heidi Kwang", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB", "timestamp": "Edited 3 years ago"} I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances, I was seriously disappointed by the venue. The organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. I could only stand to watch one third of the show as I couldn’t squeeze through the crowd in the first segment so there wasn’t a single place I could stand where I would be able to see more than a quarter of the stage. Later, I managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. After I secured my spot, I was hopeful that I would finally enjoy the show but watching through the second segment of the show was torture, I had barely any space to stand, I still could only watch the performers from the waist up because I couldn’t see over the people in front of me (and I’m 5’5, average height) plus it was so hot I was feeling faint. After that, I left not watching the third and final part of the show. This is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. I would not recommend going for any event they organise.\n\nEDIT: In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I expected a designated seat. I expected to be able to watch the show fully, and that's the minimum requirement. In addition, it shouldn't matter what time I enter the event as a paying customer. The event was obviously so over-booked that it was impossible to have a remotely decent view of the stage. 1 2026-01-29 18:34:31.336452+00 Heidi Kwang \N 1 2026-01-29 18:36:00.484279+00 2026-01-29 18:36:00.484279+00 1211 \N google ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB unknown {"text": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback.\\n\\nI gave it 5 stars for at least trying to be for the community and being the only one, still.", "author": "Ofir Sharon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB", "timestamp": "2 years ago"} It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback.\n\nI gave it 5 stars for at least trying to be for the community and being the only one, still. 5 2024-01-30 18:34:31.336452+00 Ofir Sharon \N 1 2026-01-29 18:36:00.486781+00 2026-01-29 18:36:00.486781+00 286 \N google Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB unknown {"text": "La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. De hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un Seat Ibiza, pero bueno. Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la simpatía de verdad. Miró el coche, y todo perfecto. Mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. Lo dicho, muy cercana. Gracias Mery. Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial, un Seat Ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. Perfecto todo.", "author": "Felipe Juan Padilla Pires", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB", "timestamp": "3 months ago"} La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. De hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un Seat Ibiza, pero bueno. Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la simpatía de verdad. Miró el coche, y todo perfecto. Mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. Lo dicho, muy cercana. Gracias Mery. Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial, un Seat Ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. Perfecto todo. 5 2025-10-27 01:27:48.340834+00 Felipe Juan Padilla Pires \N 1 2026-01-29 04:35:08.033981+00 2026-01-25 01:27:50.806997+00 288 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB unknown {"text": "Finger weg – seriös ist anders.\\n\\nBei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 500 € in Rechnung gestellt. Laut Vermieter handelt es sich um einen Kratzer im unteren Bereich der vorderen Stoßstange, praktisch im Unterboden unterhalb der Frontschürze. Wir haben das Fahrzeug bei Übernahme und Rückgabe umfassend fotografiert – lediglich den Unterboden nicht, da man sich dafür unter das Auto hätte legen müssen und der Boden auch noch nass war.\\n\\nWir haben diesen Schaden definitiv nicht verursacht. Zudem befindet er sich an einer Stelle, an der es nicht möglich ist, dass er durch Dritte entstanden sein könnte. Auffällig war außerdem, dass der Mitarbeiter bei der Fahrzeugrücknahme als Erstes gezielt den vorderen Schweller kontrolliert hat.\\n\\nEigenartig fanden wir im Nachhinein auch, dass wir bei der. Anmietung ein Fahrzeug-Upgrade erhalten haben, nachdem die (leider sehr unfreundliche) Mitarbeiterin am Schalter erfahren hatte, dass wir über CHECK24 eine deutsche Vollkaskoversicherung ohne Selbstbeteiligung abgeschlossen hatten. Im Nachhinein ergibt für uns einiges mehr Sinn – Schelm, wer Böses dabei denkt. Anscheinend ist dies eine Masche bei dieser Autovermietung, wie man den anderen Google Bewertungen entnehmen kann, die wir besser im Vorhinein gelesen hätten.\\n\\nDie einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughafen.\\n\\nWir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutzen und können nur dringend davon abraten.", "author": "Hannes Wolk", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB", "timestamp": "2 weeks ago"} Finger weg – seriös ist anders.\n\nBei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 500 € in Rechnung gestellt. Laut Vermieter handelt es sich um einen Kratzer im unteren Bereich der vorderen Stoßstange, praktisch im Unterboden unterhalb der Frontschürze. Wir haben das Fahrzeug bei Übernahme und Rückgabe umfassend fotografiert – lediglich den Unterboden nicht, da man sich dafür unter das Auto hätte legen müssen und der Boden auch noch nass war.\n\nWir haben diesen Schaden definitiv nicht verursacht. Zudem befindet er sich an einer Stelle, an der es nicht möglich ist, dass er durch Dritte entstanden sein könnte. Auffällig war außerdem, dass der Mitarbeiter bei der Fahrzeugrücknahme als Erstes gezielt den vorderen Schweller kontrolliert hat.\n\nEigenartig fanden wir im Nachhinein auch, dass wir bei der. Anmietung ein Fahrzeug-Upgrade erhalten haben, nachdem die (leider sehr unfreundliche) Mitarbeiterin am Schalter erfahren hatte, dass wir über CHECK24 eine deutsche Vollkaskoversicherung ohne Selbstbeteiligung abgeschlossen hatten. Im Nachhinein ergibt für uns einiges mehr Sinn – Schelm, wer Böses dabei denkt. Anscheinend ist dies eine Masche bei dieser Autovermietung, wie man den anderen Google Bewertungen entnehmen kann, die wir besser im Vorhinein gelesen hätten.\n\nDie einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughafen.\n\nWir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutzen und können nur dringend davon abraten. 1 2026-01-11 01:27:48.340843+00 Hannes Wolk \N 1 2026-01-29 04:35:08.048207+00 2026-01-25 01:27:50.817145+00 433 \N google Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB unknown {"text": "Me sorprendió tener que pagar 35 euros por algo así como \\"gastos de repostaje\\" que aparecía en la letra pequeña del contrato. Una sensación como de engaño encubierta", "author": "José Ramón López", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB", "timestamp": "2 weeks ago"} Me sorprendió tener que pagar 35 euros por algo así como "gastos de repostaje" que aparecía en la letra pequeña del contrato. Una sensación como de engaño encubierta 4 2026-01-11 01:27:48.341857+00 José Ramón López \N 1 2026-01-29 04:35:08.785647+00 2026-01-25 01:27:51.368542+00 1212 \N google ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB unknown {"text": "I was there in Friday night. Quite crowded, good music, nice guys. A little expensive the cocktails, but the entrance was very cheap.\\nAbsolutely a good place to have a gay night in Vilnius.", "author": "Quinto Fabio Massimo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB", "timestamp": "8 years ago"} I was there in Friday night. Quite crowded, good music, nice guys. A little expensive the cocktails, but the entrance was very cheap.\nAbsolutely a good place to have a gay night in Vilnius. 4 2018-01-31 18:34:31.336452+00 Quinto Fabio Massimo \N 1 2026-01-29 18:36:00.488513+00 2026-01-29 18:36:00.488513+00 1213 \N google ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB unknown {"text": "I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark! It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a good night dancing, drinking, and having fun.", "author": "Netia Ingram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB", "timestamp": "5 years ago"} I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark! It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a good night dancing, drinking, and having fun. 5 2021-01-30 18:34:31.336452+00 Netia Ingram \N 1 2026-01-29 18:36:00.490907+00 2026-01-29 18:36:00.490907+00 1214 \N google ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB unknown {"text": "I had fun. Bar service and coat service was good and the club was kept clean. The music was a good mix, but too loud for the small room. The club wasn’t very full, even after 1am.", "author": "Pune Thomas", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB", "timestamp": "Edited 3 years ago"} I had fun. Bar service and coat service was good and the club was kept clean. The music was a good mix, but too loud for the small room. The club wasn’t very full, even after 1am. 4 2026-01-29 18:34:31.336452+00 Pune Thomas \N 1 2026-01-29 18:36:00.493162+00 2026-01-29 18:36:00.493162+00 1215 \N google ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE unknown {"text": "The best club in Vilnius. Always good vibes. Very polite and professional staff. They make the best events!!!!this is the place you must visit if you are in Vilnius! :)", "author": "Karolis Ruzgas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE", "timestamp": "3 years ago"} The best club in Vilnius. Always good vibes. Very polite and professional staff. They make the best events!!!!this is the place you must visit if you are in Vilnius! :) 5 2023-01-30 18:34:31.336452+00 Karolis Ruzgas \N 1 2026-01-29 18:36:00.496772+00 2026-01-29 18:36:00.496772+00 1216 \N google ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB unknown {"text": "Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into the area/room where they could see the show (I'm not talking a bad view, I mean absolutely no possibility of seeing it at all). I paid for a ticket to see the event, not for a chance to see the event.\\n\\nIt would be better to charge a little more for tickets instead of selling too many.", "author": "Chlo", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB", "timestamp": "3 years ago"} Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into the area/room where they could see the show (I'm not talking a bad view, I mean absolutely no possibility of seeing it at all). I paid for a ticket to see the event, not for a chance to see the event.\n\nIt would be better to charge a little more for tickets instead of selling too many. 1 2023-01-30 18:34:31.336452+00 Chlo \N 1 2026-01-29 18:36:00.49927+00 2026-01-29 18:36:00.49927+00 1217 \N google ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB unknown {"text": "Great gay club in the city, lots of young people, music is also mostly really nice! Only one minus that bartenders could at least try to be friendly. For the rest, it's a cool party!", "author": "Yuri Zanozin", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB", "timestamp": "Edited 2 years ago"} Great gay club in the city, lots of young people, music is also mostly really nice! Only one minus that bartenders could at least try to be friendly. For the rest, it's a cool party! 4 2026-01-29 18:34:31.336452+00 Yuri Zanozin \N 1 2026-01-29 18:36:00.50179+00 2026-01-29 18:36:00.50179+00 291 \N google Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB unknown {"text": "Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert. Die Kaution war etwas hoch, aber ansonsten super. Das Auto war neu und in einem super Zustand. Würden wieder dort buchen.", "author": "HabdamalneFrage!?", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB", "timestamp": "a month ago"} Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert. Die Kaution war etwas hoch, aber ansonsten super. Das Auto war neu und in einem super Zustand. Würden wieder dort buchen. 5 2025-12-26 01:27:48.34085+00 HabdamalneFrage!? \N 1 2026-01-29 04:35:08.064817+00 2026-01-25 01:27:50.8271+00 293 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB unknown {"text": "El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. La entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. En general ha sido buena experiencia.", "author": "ALEJANDRO DDR", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB", "timestamp": "5 days ago"} El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. La entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. En general ha sido buena experiencia. 5 2026-01-20 01:27:48.340859+00 ALEJANDRO DDR \N 1 2026-01-29 04:35:08.073588+00 2026-01-25 01:27:50.834648+00 331 \N google Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB unknown {"text": "Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit. Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2. Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden.", "author": "Siffbude", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB", "timestamp": "a month ago"} Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit. Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2. Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden. 3 2025-12-26 01:27:48.341163+00 Siffbude \N 1 2026-01-29 04:35:08.256031+00 2026-01-25 01:27:50.9776+00 1218 \N google ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE unknown {"text": "Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks were strong… and I especially liked all the different area’s in the club. I went back the day after 🤗", "author": "Sander B", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE", "timestamp": "3 years ago"} Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks were strong… and I especially liked all the different area’s in the club. I went back the day after 🤗 5 2023-01-30 18:34:31.336452+00 Sander B \N 1 2026-01-29 18:36:00.504157+00 2026-01-29 18:36:00.504157+00 1219 \N google ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE unknown {"text": "Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old fashioned.", "author": "Ieva Bagdonaitė", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE", "timestamp": "3 years ago"} Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old fashioned. 1 2023-01-30 18:34:31.336452+00 Ieva Bagdonaitė \N 1 2026-01-29 18:36:00.506627+00 2026-01-29 18:36:00.506627+00 1220 \N google ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB unknown {"text": "The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere, staff is extremely friendly 😄", "author": "Benita Guzikaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB", "timestamp": "7 years ago"} The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere, staff is extremely friendly 😄 5 2019-01-31 18:34:31.336452+00 Benita Guzikaitė \N 1 2026-01-29 18:36:00.508861+00 2026-01-29 18:36:00.508861+00 1221 \N google ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB unknown {"text": "I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjoys.\\n\\nStraight nights suck but worth exploring in Vilnius.", "author": "Joseph Duggan Lyons", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB", "timestamp": "6 years ago"} I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjoys.\n\nStraight nights suck but worth exploring in Vilnius. 1 2020-01-31 18:34:31.336452+00 Joseph Duggan Lyons \N 1 2026-01-29 18:36:00.512598+00 2026-01-29 18:36:00.512598+00 296 \N google Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB unknown {"text": "Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. Dort mussten wir vielleicht 15 Minuten warten bis wir an die Reihe kamen und das auch nur weil der Herr vor uns keine Kreditkarte hatte und somit die Kaution nicht hinterlegen konnte.\\nAlso unbedingt eine echte Kreditkarte dabei haben und keine Debit Karte, die wird nicht akzeptiert. Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer Zeit den Schlüssel ausgehändigt hat. Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf Deutsch eingestellt.\\nWir waren eine Woche auf der ganzen Insel unterwegs und wir waren sehr zufrieden damit. Das zurückgeben ging bei der selben netten Mitarbeiterin sehr flott und ohne Beanstandungen. Die Kaution war einen Tag später auch schon wieder freigegeben. Alles in allem sehr zu empfehlen. Gebucht hatten wir über Check 24 und mussten vor Ort auch außer der Kaution nichts bezahlen.", "author": "Sebastian Ostermeyr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB", "timestamp": "2 weeks ago"} Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. Dort mussten wir vielleicht 15 Minuten warten bis wir an die Reihe kamen und das auch nur weil der Herr vor uns keine Kreditkarte hatte und somit die Kaution nicht hinterlegen konnte.\nAlso unbedingt eine echte Kreditkarte dabei haben und keine Debit Karte, die wird nicht akzeptiert. Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer Zeit den Schlüssel ausgehändigt hat. Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf Deutsch eingestellt.\nWir waren eine Woche auf der ganzen Insel unterwegs und wir waren sehr zufrieden damit. Das zurückgeben ging bei der selben netten Mitarbeiterin sehr flott und ohne Beanstandungen. Die Kaution war einen Tag später auch schon wieder freigegeben. Alles in allem sehr zu empfehlen. Gebucht hatten wir über Check 24 und mussten vor Ort auch außer der Kaution nichts bezahlen. 5 2026-01-11 01:27:48.340873+00 Sebastian Ostermeyr \N 1 2026-01-29 04:35:08.088173+00 2026-01-25 01:27:50.847274+00 297 \N google Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB unknown {"text": "Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. Bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. Goede medewerkers, vooral Antonio is heel vriendelijk.", "author": "Ferhat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB", "timestamp": "2 months ago"} Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. Bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. Goede medewerkers, vooral Antonio is heel vriendelijk. 5 2025-11-26 01:27:48.340876+00 Ferhat \N 1 2026-01-29 04:35:08.097279+00 2026-01-25 01:27:50.851008+00 299 \N google Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB unknown {"text": "Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterwegs. Am besten einfach bei Clickrent anrufen und nachfragen! Ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine Buchung dort bekannt ist ;) Denn der Weg zu Fuß vom Flughafen zieht sich. Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo angeblich über mietwagen-billiger.de alle Versicherungen ohne Selbstbeteiligung mit drin waren!), also super Preis-Leistungs-Verhältnis!\\n\\nGerne wieder 👍🏻", "author": "Nick Schäfer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB", "timestamp": "a month ago"} Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterwegs. Am besten einfach bei Clickrent anrufen und nachfragen! Ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine Buchung dort bekannt ist ;) Denn der Weg zu Fuß vom Flughafen zieht sich. Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo angeblich über mietwagen-billiger.de alle Versicherungen ohne Selbstbeteiligung mit drin waren!), also super Preis-Leistungs-Verhältnis!\n\nGerne wieder 👍🏻 5 2025-12-26 01:27:48.340886+00 Nick Schäfer \N 1 2026-01-29 04:35:08.110938+00 2026-01-25 01:27:50.855055+00 300 \N google Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB unknown {"text": "Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. Na een uur zoeken hadden we de super slecht vindbare plek gevonden. Helaas niemand aanwezig. Sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. Onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas.\\n\\nEenmaal aangekomen kwam het volgende ellende.\\nEr werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. Dan moest ik maar via de creditcard van me vrouw €200 borg betalen. Daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! Ja maar niet bij ons zei de man achter de balie. Ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine.\\n\\nMet het inleveren van de auto hebben wij expres van te voren de auto gereinigd en vol getankt om nog meer betalingen te moeten doen als we naar huis willen. Gelukkig maar dat dit goed ging.\\n\\nDaarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn.\\n\\nBij andere bedrijven was het altijd van te voren boeken verzekering betalen , auto staat klaar en de vakantie kan beginnen.", "author": "Stefan Delil", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB", "timestamp": "3 weeks ago"} Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. Na een uur zoeken hadden we de super slecht vindbare plek gevonden. Helaas niemand aanwezig. Sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. Onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas.\n\nEenmaal aangekomen kwam het volgende ellende.\nEr werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. Dan moest ik maar via de creditcard van me vrouw €200 borg betalen. Daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! Ja maar niet bij ons zei de man achter de balie. Ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine.\n\nMet het inleveren van de auto hebben wij expres van te voren de auto gereinigd en vol getankt om nog meer betalingen te moeten doen als we naar huis willen. Gelukkig maar dat dit goed ging.\n\nDaarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn.\n\nBij andere bedrijven was het altijd van te voren boeken verzekering betalen , auto staat klaar en de vakantie kan beginnen. 1 2026-01-04 01:27:48.340888+00 Stefan Delil \N 1 2026-01-29 04:35:08.124712+00 2026-01-25 01:27:50.859823+00 1222 \N google ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB unknown {"text": "Great club for gay and not so. Dramatica show blew... my mind.", "author": "Skirmantas Mikuckis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB", "timestamp": "3 years ago"} Great club for gay and not so. Dramatica show blew... my mind. 5 2023-01-30 18:34:31.336452+00 Skirmantas Mikuckis \N 1 2026-01-29 18:36:00.514862+00 2026-01-29 18:36:00.514862+00 1223 \N google review_40 unknown {"text": "I went a few times to that place. Really liked the atmosphere. Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and you guys just picked it up and saved my night so thanks a lot!", "author": "Julie", "rating": 5, "source": "dom", "timestamp": "6 years ago"} I went a few times to that place. Really liked the atmosphere. Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and you guys just picked it up and saved my night so thanks a lot! 5 2020-01-31 18:34:31.336452+00 Julie \N 1 2026-01-29 18:36:00.517369+00 2026-01-29 18:36:00.517369+00 1224 \N google review_41 unknown {"text": "The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. Huge recomendations!", "author": "Natalija Rankauske", "rating": 5, "source": "dom", "timestamp": "5 years ago"} The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. Huge recomendations! 5 2021-01-30 18:34:31.336452+00 Natalija Rankauske \N 1 2026-01-29 18:36:00.519585+00 2026-01-29 18:36:00.519585+00 1225 \N google review_42 unknown {"text": "i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night, please do better", "author": "Astrantius Mon", "rating": 2, "source": "dom", "timestamp": "2 years ago"} i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night, please do better 2 2024-01-30 18:34:31.336452+00 Astrantius Mon \N 1 2026-01-29 18:36:00.521827+00 2026-01-29 18:36:00.521827+00 1226 \N google review_43 unknown {"text": "Some very nice people. Several big rooms, and good prices on drinks. A seperate living room with fashion tv show on whole wall. Friendly and safe. Loved it.", "author": "hvaerdette", "rating": 5, "source": "dom", "timestamp": ""} Some very nice people. Several big rooms, and good prices on drinks. A seperate living room with fashion tv show on whole wall. Friendly and safe. Loved it. 5 2026-01-29 18:34:31.336452+00 hvaerdette \N 1 2026-01-29 18:36:00.524178+00 2026-01-29 18:36:00.524178+00 1227 \N google review_44 unknown {"text": "Response from the owner", "author": "Adomas Grigolis", "rating": 5, "source": "dom", "timestamp": "5 months ago"} Response from the owner 5 2025-09-01 18:34:31.336452+00 Adomas Grigolis \N 1 2026-01-29 18:36:00.525638+00 2026-01-29 18:36:00.525638+00 1228 \N google review_45 unknown {"text": "Simply love this place. The owner is such a nice person with such great ideas. Love the place as such, decoration, music, drinks, people, all perfect,", "author": "Roberto Faria", "rating": 5, "source": "dom", "timestamp": "9 years ago"} Simply love this place. The owner is such a nice person with such great ideas. Love the place as such, decoration, music, drinks, people, all perfect, 5 2017-01-31 18:34:31.336452+00 Roberto Faria \N 1 2026-01-29 18:36:00.527497+00 2026-01-29 18:36:00.527497+00 304 \N google Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB unknown {"text": "Esperienza pessima, non noleggiate l’auto in questo Rent:\\nPagato con Booking 30€ di noleggio per una Fiat 500 per 3 giorni + 50€ di assicurazione completa.\\nArrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). Abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza.\\nNel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. Arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo).\\nFortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!!", "author": "Guglielmo Cattaneo", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB", "timestamp": "3 months ago"} Esperienza pessima, non noleggiate l’auto in questo Rent:\nPagato con Booking 30€ di noleggio per una Fiat 500 per 3 giorni + 50€ di assicurazione completa.\nArrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). Abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza.\nNel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. Arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo).\nFortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!! 1 2025-10-27 01:27:48.340897+00 Guglielmo Cattaneo \N 1 2026-01-29 04:35:08.15296+00 2026-01-25 01:27:50.877577+00 306 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB unknown {"text": "Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich angekommen. Bei der Nachfrage, ob die Uhrzeit der Abholung angepasst werden kann, bekam ich nur eine patzige und freche Antwort dass es nicht möglich sei und man am Flughafen mal richtig nach dem Shuttle schauen sollte. Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert werden, während ich auf das Fahrzeug wartete, lästerte die Angestellte (geschätzt auf 60 Jahre kurze graue Haare) auf Spanisch mit Ihren Kolleginnen und Kollegen ab, während ich vor Ihr stand. Das freche Lächeln der Dame empfand ich als extrem provokant. Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte man mir einen Schaden am Fahrzeug. Wie gut, dass ich vorab ein Video vom Zustand des Fahrzeugs gemacht habe.\\nScheint wohl eine Masche zu sein.\\nClickRent nie wieder!", "author": "Dustin", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB", "timestamp": "4 weeks ago"} Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich angekommen. Bei der Nachfrage, ob die Uhrzeit der Abholung angepasst werden kann, bekam ich nur eine patzige und freche Antwort dass es nicht möglich sei und man am Flughafen mal richtig nach dem Shuttle schauen sollte. Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert werden, während ich auf das Fahrzeug wartete, lästerte die Angestellte (geschätzt auf 60 Jahre kurze graue Haare) auf Spanisch mit Ihren Kolleginnen und Kollegen ab, während ich vor Ihr stand. Das freche Lächeln der Dame empfand ich als extrem provokant. Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte man mir einen Schaden am Fahrzeug. Wie gut, dass ich vorab ein Video vom Zustand des Fahrzeugs gemacht habe.\nScheint wohl eine Masche zu sein.\nClickRent nie wieder! 1 2025-12-28 01:27:48.34105+00 Dustin \N 1 2026-01-29 04:35:08.164214+00 2026-01-25 01:27:50.886977+00 307 \N google Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB unknown {"text": "Passer par la plateforme DoYouSpain. Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. La plateforme vous en endors en disant qu'il fallait aller dans la politique de carburant. Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok", "author": "Hervé COESSIN de la FOSSE", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB", "timestamp": "a month ago"} Passer par la plateforme DoYouSpain. Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. La plateforme vous en endors en disant qu'il fallait aller dans la politique de carburant. Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok 3 2025-12-26 01:27:48.341067+00 Hervé COESSIN de la FOSSE \N 1 2026-01-29 04:35:08.168066+00 2026-01-25 01:27:50.889924+00 308 \N google ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB unknown {"text": "Wir haben uns im Vorfeld über sämtliche Autovermietungen informiert. Hatten dann bei Clickrent direkt gebucht - mit der ‚höheren‘ Preiskategorie.\\nBei Abholung wurde alles super einfach und schnell erklärt. KEINE Kaution (lediglich die übliche 200€ Pauschale für Sprit), keine extra Kosten, kein dummes gequatschte a la „wissen sie denn was es kostet wen bla bla bla“ , sondern einfach eine schnelle und einfache Übergabe.\\nZum Auto selbst kann ich nur sagen dass er sauber und vollgetankt war!\\nAlles in allem wie gehofft, damit der Urlaub nicht stressig anfängt/aufhört.\\nBei Abgabe kam der Kommentar „you book full coverage“ so dass lediglich nach der Sauberkeit im Innenraum geschaut wurde und ob wirklich vollgetankt war. Kein nerviges Kontrollieren, keine Fotos raussuchen, kein auf die Knie gehen um sich Schäden zeigen zu lassen (leider selbst so bei Goldcar erlebt).\\n2 Minuten später hatte ich bereits eine Benachrichtigung meiner Bank dass das Geld wieder freigegeben war!\\n\\nKann jedem nur empfehlen es genau so zu machen. Die Straßen und andere Verkehrsteilnehmer lassen es quasi gar nicht zu dass kein Schaden entsteht - für die Paar Euro mehr auf der Clickrent Seite gebucht entstehen dann auch im nachhinein keine ewigen Diskussionen mit einer Zusatzversicherung aus dem Internet.\\n\\nZum Abschluss haben wir uns entschieden zum Flughafen zu laufen, wobei mehrere Mitarbeiter fragten ob wir uns sicher sind und nicht doch geshuttelt werden wollen.\\nEin fehlendes Engagement der Mitarbeiter und auch fehlende Freundlichkeit der Mitarbeiter, kann zumindest ich nicht bestätigen!\\n\\nDas einzige was verbessert werden könnte ist die Beschreibung zum Shuttlepunkt und ggf. eine Telefonnummer bei der man direkt mitteilen kann dass man da ist (die Servicenummer ist Schwachsinn).\\n\\nWürde es unter den genannten Voraussetzungen sofort jedem empfehlen und würde so, auch selbst wieder buchen! :)", "author": "Peter Pan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB", "timestamp": "9 months ago"} Wir haben uns im Vorfeld über sämtliche Autovermietungen informiert. Hatten dann bei Clickrent direkt gebucht - mit der ‚höheren‘ Preiskategorie.\nBei Abholung wurde alles super einfach und schnell erklärt. KEINE Kaution (lediglich die übliche 200€ Pauschale für Sprit), keine extra Kosten, kein dummes gequatschte a la „wissen sie denn was es kostet wen bla bla bla“ , sondern einfach eine schnelle und einfache Übergabe.\nZum Auto selbst kann ich nur sagen dass er sauber und vollgetankt war!\nAlles in allem wie gehofft, damit der Urlaub nicht stressig anfängt/aufhört.\nBei Abgabe kam der Kommentar „you book full coverage“ so dass lediglich nach der Sauberkeit im Innenraum geschaut wurde und ob wirklich vollgetankt war. Kein nerviges Kontrollieren, keine Fotos raussuchen, kein auf die Knie gehen um sich Schäden zeigen zu lassen (leider selbst so bei Goldcar erlebt).\n2 Minuten später hatte ich bereits eine Benachrichtigung meiner Bank dass das Geld wieder freigegeben war!\n\nKann jedem nur empfehlen es genau so zu machen. Die Straßen und andere Verkehrsteilnehmer lassen es quasi gar nicht zu dass kein Schaden entsteht - für die Paar Euro mehr auf der Clickrent Seite gebucht entstehen dann auch im nachhinein keine ewigen Diskussionen mit einer Zusatzversicherung aus dem Internet.\n\nZum Abschluss haben wir uns entschieden zum Flughafen zu laufen, wobei mehrere Mitarbeiter fragten ob wir uns sicher sind und nicht doch geshuttelt werden wollen.\nEin fehlendes Engagement der Mitarbeiter und auch fehlende Freundlichkeit der Mitarbeiter, kann zumindest ich nicht bestätigen!\n\nDas einzige was verbessert werden könnte ist die Beschreibung zum Shuttlepunkt und ggf. eine Telefonnummer bei der man direkt mitteilen kann dass man da ist (die Servicenummer ist Schwachsinn).\n\nWürde es unter den genannten Voraussetzungen sofort jedem empfehlen und würde so, auch selbst wieder buchen! :) 5 2025-04-30 01:27:48.34107+00 Peter Pan \N 1 2026-01-29 04:35:08.173429+00 2026-01-25 01:27:50.893169+00 1229 \N google review_46 unknown {"text": "Very friendly staff, good drinks and the club was very clean. The Dramatica Show was amazing!", "author": "LéLé Cocoon", "rating": 5, "source": "dom", "timestamp": "3 years ago"} Very friendly staff, good drinks and the club was very clean. The Dramatica Show was amazing! 5 2023-01-30 18:34:31.336452+00 LéLé Cocoon \N 1 2026-01-29 18:36:00.528949+00 2026-01-29 18:36:00.528949+00 1230 \N google review_47 unknown {"text": "The worst long island on the Planet!\\n\\n....But the best reaction ever! After negative opinion kindly Bartender served us free better one long islands. Thanks guys!", "author": "Wojciech Maciej", "rating": 4, "source": "dom", "timestamp": "7 years ago"} The worst long island on the Planet!\n\n....But the best reaction ever! After negative opinion kindly Bartender served us free better one long islands. Thanks guys! 4 2019-01-31 18:34:31.336452+00 Wojciech Maciej \N 1 2026-01-29 18:36:00.530667+00 2026-01-29 18:36:00.530667+00 1231 \N google review_48 unknown {"text": "Amazing place, worth visiting! Cocktails are the best and atmosphere is great. I highly recommend visiting this place!", "author": "Gabriela Stankevic", "rating": 5, "source": "dom", "timestamp": "3 years ago"} Amazing place, worth visiting! Cocktails are the best and atmosphere is great. I highly recommend visiting this place! 5 2023-01-30 18:34:31.336452+00 Gabriela Stankevic \N 1 2026-01-29 18:36:00.532097+00 2026-01-29 18:36:00.532097+00 1232 \N google review_49 unknown {"text": "Nice club with great atmosphere but very slow bar service. I don’t know, perhaps in America it’s only fast, but still not familiar!", "author": "Daniel Clark", "rating": 3, "source": "dom", "timestamp": "3 years ago"} Nice club with great atmosphere but very slow bar service. I don’t know, perhaps in America it’s only fast, but still not familiar! 3 2023-01-30 18:34:31.336452+00 Daniel Clark \N 1 2026-01-29 18:36:00.534047+00 2026-01-29 18:36:00.534047+00 1233 \N google ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB unknown {"text": "Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country.", "author": "abc", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB", "timestamp": "3 years ago"} Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country. 1 2023-01-30 18:34:31.336452+00 abc \N 1 2026-01-29 18:36:00.536186+00 2026-01-29 18:36:00.536186+00 1234 \N google ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB unknown {"text": "Nice friendly club. People who working there very friendly and polite", "author": "Md Arman Hossain", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB", "timestamp": "a year ago"} Nice friendly club. People who working there very friendly and polite 5 2025-01-29 18:34:31.336452+00 Md Arman Hossain \N 1 2026-01-29 18:36:00.537918+00 2026-01-29 18:36:00.537918+00 311 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB unknown {"text": "Quiciera poner - una estrella no la merecen.\\nUna experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada de competitivos. No alquilar con esta empresa.\\nMi mala experiencia ocurrió en las palmas de grancanaria. Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. Al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. En total alquilar un coche por 1 dia\\n137€ que no devuelven mas.\\n\\nTotal alquiler coche 1 dia 421€.\\nes de muerte de susto la estafa de esta empresa.\\nMe han devuelto\\n285€\\nNo es justo que esto pase tanto dinero publicidad engañosa. Juzguen ustedes y no alquiler. Todos los que estábamos esperando a recibir las llaves del coches en ese momento estaban inconforme por tatas tasas que cobran.", "author": "juliana santamaria", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB", "timestamp": "2 weeks ago"} Quiciera poner - una estrella no la merecen.\nUna experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada de competitivos. No alquilar con esta empresa.\nMi mala experiencia ocurrió en las palmas de grancanaria. Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. Al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. En total alquilar un coche por 1 dia\n137€ que no devuelven mas.\n\nTotal alquiler coche 1 dia 421€.\nes de muerte de susto la estafa de esta empresa.\nMe han devuelto\n285€\nNo es justo que esto pase tanto dinero publicidad engañosa. Juzguen ustedes y no alquiler. Todos los que estábamos esperando a recibir las llaves del coches en ese momento estaban inconforme por tatas tasas que cobran. 1 2026-01-11 01:27:48.341077+00 juliana santamaria \N 1 2026-01-29 04:35:08.18717+00 2026-01-25 01:27:50.905951+00 312 \N google Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB unknown {"text": "Attention : arnaque assumée\\nIls ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. J’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. Leur réponse ? La partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». Évidemment faux : il s’agissait clairement d’une seule et même rayure.\\nMauvaise foi totale.\\nJ’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. Leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent.\\nPratique malheureusement courante chez certains loueurs low-cost. À éviter absolument.", "author": "Benjamin Barbaud", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB", "timestamp": "3 weeks ago"} Attention : arnaque assumée\nIls ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. J’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. Leur réponse ? La partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». Évidemment faux : il s’agissait clairement d’une seule et même rayure.\nMauvaise foi totale.\nJ’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. Leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent.\nPratique malheureusement courante chez certains loueurs low-cost. À éviter absolument. 1 2026-01-04 01:27:48.341085+00 Benjamin Barbaud \N 1 2026-01-29 04:35:08.191435+00 2026-01-25 01:27:50.909629+00 313 \N google Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB unknown {"text": "Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. La señorita nos atendio rapidamente y Byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. Muchisimas gracias !!", "author": "Mercedes Rein- Loring", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB", "timestamp": "a month ago"} Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. La señorita nos atendio rapidamente y Byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. Muchisimas gracias !! 5 2025-12-26 01:27:48.341092+00 Mercedes Rein- Loring \N 1 2026-01-29 04:35:08.194806+00 2026-01-25 01:27:50.916183+00 536 \N google Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB unknown {"text": "Personal atento y amable. Nos han dado un coche de gama superior.", "author": "Ana CG", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB", "timestamp": "5 months ago"} Personal atento y amable. Nos han dado un coche de gama superior. 5 2025-08-28 01:27:48.342453+00 Ana CG \N 1 2026-01-29 04:35:09.168837+00 2026-01-25 01:27:51.769104+00 1235 \N google ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE unknown {"text": "The space is great and the atmosphere is welcoming. We also got outstanding service from the bartender! :)", "author": "Sari S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE", "timestamp": "5 years ago"} The space is great and the atmosphere is welcoming. We also got outstanding service from the bartender! :) 5 2021-01-30 18:34:31.336452+00 Sari S \N 1 2026-01-29 18:36:00.539273+00 2026-01-29 18:36:00.539273+00 1236 \N google ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB unknown {"text": "Excellent service. Even saw management take care of customer concerns. As long as you dont mind LGBTQ this is a great place to spend a friday.", "author": "Mindaugas Vilkas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB", "timestamp": "6 years ago"} Excellent service. Even saw management take care of customer concerns. As long as you dont mind LGBTQ this is a great place to spend a friday. 5 2020-01-31 18:34:31.336452+00 Mindaugas Vilkas \N 1 2026-01-29 18:36:00.542017+00 2026-01-29 18:36:00.542017+00 1237 \N google ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE unknown {"text": "Excellent music and atmosphere", "author": "Rhoda V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE", "timestamp": "7 months ago"} Excellent music and atmosphere 5 2025-07-03 18:34:31.336452+00 Rhoda V \N 1 2026-01-29 18:36:00.544684+00 2026-01-29 18:36:00.544684+00 1238 \N google ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB unknown {"text": "Nice to come back home to vilnius, and to know you can relax. Loved loved loved. Xxccc", "author": "Rokas Hegarty", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB", "timestamp": "7 years ago"} Nice to come back home to vilnius, and to know you can relax. Loved loved loved. Xxccc 5 2019-01-31 18:34:31.336452+00 Rokas Hegarty \N 1 2026-01-29 18:36:00.547062+00 2026-01-29 18:36:00.547062+00 1239 \N google ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB unknown {"text": "Good place, perfect club LGBT.\\nBest place. Nice stuff", "author": "Karolina J", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB", "timestamp": "3 years ago"} Good place, perfect club LGBT.\nBest place. Nice stuff 5 2023-01-30 18:34:31.336452+00 Karolina J \N 1 2026-01-29 18:36:00.553429+00 2026-01-29 18:36:00.553429+00 1240 \N google ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE unknown {"text": "I want to come back! Great place.", "author": "Vika Rudziankova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE", "timestamp": "a year ago"} I want to come back! Great place. 5 2025-01-29 18:34:31.336452+00 Vika Rudziankova \N 1 2026-01-29 18:36:00.554995+00 2026-01-29 18:36:00.554995+00 315 \N google Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB unknown {"text": "Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione.\\nPer quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata.\\nNel complesso, comunque, lo consiglierei.", "author": "Dorotea Cinquino", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB", "timestamp": "3 weeks ago"} Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione.\nPer quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata.\nNel complesso, comunque, lo consiglierei. 5 2026-01-04 01:27:48.341106+00 Dorotea Cinquino \N 1 2026-01-29 04:35:08.200375+00 2026-01-25 01:27:50.921192+00 317 \N google Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB unknown {"text": "Super Erfahrung hier gemacht. Das einzig schlechte war die Abholung vom Flughafen, die hat sich verzögert, weil es unterwegs einen Autounfall gab und die Fahrerin im Stau stand. Aber wir haben über die Hotline jemanden erreicht ( bei der Bandansage die 0) und wurden dann darüber informiert.\\nIch hatte auch einen Super Wagen bekommen, gebucht war Seat Ibiza o.ä. und bekommen habe ich einen Audi A1 😁 ohne Extrakosten o.ä.\\nUnd der geblockte Kreditkartenbetrag wurde sofort wieder freigegeben nach Abgabe. Top Service, super nette Mitarbeiter.", "author": "René Mösezahl", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB", "timestamp": "4 months ago"} Super Erfahrung hier gemacht. Das einzig schlechte war die Abholung vom Flughafen, die hat sich verzögert, weil es unterwegs einen Autounfall gab und die Fahrerin im Stau stand. Aber wir haben über die Hotline jemanden erreicht ( bei der Bandansage die 0) und wurden dann darüber informiert.\nIch hatte auch einen Super Wagen bekommen, gebucht war Seat Ibiza o.ä. und bekommen habe ich einen Audi A1 😁 ohne Extrakosten o.ä.\nUnd der geblockte Kreditkartenbetrag wurde sofort wieder freigegeben nach Abgabe. Top Service, super nette Mitarbeiter. 5 2025-09-27 01:27:48.341111+00 René Mösezahl \N 1 2026-01-29 04:35:08.206653+00 2026-01-25 01:27:50.927538+00 319 \N google ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB unknown {"text": "Achtung. Nicht mieten. Abzocke bei Rückgabe! Haben gerade 230 Euro extra bezahlt. Die günstigen Preise werden durch kleinste Kratzer bei der Rückgabe finanziert, die man sich dann teuer bezahlen lässt. Sicher nicht durch uns verursacht. Wir haben sogar Fotos vom Auto gemacht vor der Abholung, aber die Kratzer die man dann gefunden hat (mit viel Abtasten auf den Knien) waren UNTER der Stoßstange. Da wird auch bei der Übergabe nicht gemeinsam geschaut. Es ist auf jeden Fall Masche. Die Bilder sprechen für sich.....", "author": "Florian R.", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB", "timestamp": "11 months ago"} Achtung. Nicht mieten. Abzocke bei Rückgabe! Haben gerade 230 Euro extra bezahlt. Die günstigen Preise werden durch kleinste Kratzer bei der Rückgabe finanziert, die man sich dann teuer bezahlen lässt. Sicher nicht durch uns verursacht. Wir haben sogar Fotos vom Auto gemacht vor der Abholung, aber die Kratzer die man dann gefunden hat (mit viel Abtasten auf den Knien) waren UNTER der Stoßstange. Da wird auch bei der Übergabe nicht gemeinsam geschaut. Es ist auf jeden Fall Masche. Die Bilder sprechen für sich..... 1 2025-03-01 01:27:48.341115+00 Florian R. \N 1 2026-01-29 04:35:08.213417+00 2026-01-25 01:27:50.935515+00 1241 \N google ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB unknown {"text": "Super service, kind bartender, loved it!", "author": "Govinda Valciukaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB", "timestamp": "a year ago"} Super service, kind bartender, loved it! 5 2025-01-29 18:34:31.336452+00 Govinda Valciukaite \N 1 2026-01-29 18:36:00.560463+00 2026-01-29 18:36:00.560463+00 1242 \N google ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB unknown {"text": "Love this place!! Worth visiting, best music!?", "author": "Gabriela Stankevic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB", "timestamp": "3 years ago"} Love this place!! Worth visiting, best music!? 5 2023-01-30 18:34:31.336452+00 Gabriela Stankevic \N 1 2026-01-29 18:36:00.562606+00 2026-01-29 18:36:00.562606+00 1243 \N google ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB unknown {"text": "Good music for dancing, wide choice of cocktails.", "author": "Do “D” K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB", "timestamp": "6 years ago"} Good music for dancing, wide choice of cocktails. 5 2020-01-31 18:34:31.336452+00 Do “D” K \N 1 2026-01-29 18:36:00.564316+00 2026-01-29 18:36:00.564316+00 1244 \N google ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB unknown {"text": "The club is owned by the guy with the style, who actually cares about the place :)", "author": "Sakurako Sakurako", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB", "timestamp": "Edited 8 years ago"} The club is owned by the guy with the style, who actually cares about the place :) 5 2026-01-29 18:34:31.336452+00 Sakurako Sakurako \N 1 2026-01-29 18:36:00.565631+00 2026-01-29 18:36:00.565631+00 1245 \N google ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB unknown {"text": "Quite a fun and safe club", "author": "Tomas F.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB", "timestamp": "10 months ago"} Quite a fun and safe club 5 2025-04-04 18:34:31.336452+00 Tomas F. \N 1 2026-01-29 18:36:00.569816+00 2026-01-29 18:36:00.569816+00 1246 \N google ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB unknown {"text": "Nice gay club. I rather pop music but its ok.", "author": "Victor G.Onrubia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB", "timestamp": "9 years ago"} Nice gay club. I rather pop music but its ok. 5 2017-01-31 18:34:31.336452+00 Victor G.Onrubia \N 1 2026-01-29 18:36:00.57159+00 2026-01-29 18:36:00.57159+00 1247 \N google ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE unknown {"text": "amazing service, nice club!!", "author": "Vakare Zuozaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE", "timestamp": "3 years ago"} amazing service, nice club!! 5 2023-01-30 18:34:31.336452+00 Vakare Zuozaite \N 1 2026-01-29 18:36:00.576544+00 2026-01-29 18:36:00.576544+00 1248 \N google ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE unknown {"text": "Good cocktails and good music", "author": "Sergei Zhenikhov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE", "timestamp": "2 years ago"} Good cocktails and good music 5 2024-01-30 18:34:31.336452+00 Sergei Zhenikhov \N 1 2026-01-29 18:36:00.579097+00 2026-01-29 18:36:00.579097+00 1249 \N google ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE unknown {"text": "Fantastic atmosphere. If gay or not.", "author": "Ulrich Beck", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE", "timestamp": "8 years ago"} Fantastic atmosphere. If gay or not. 5 2018-01-31 18:34:31.336452+00 Ulrich Beck \N 1 2026-01-29 18:36:00.581595+00 2026-01-29 18:36:00.581595+00 322 \N google Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB unknown {"text": "Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person gab es ebenfalls nicht. Es hat über 1 1/2 Stunden gedauert, bis jemand kam und das auch nur, weil ein anderer Kunde in der Vertragsabteilung in Madrid angerufen hat.\\nDanach war dann alles soweit in Ordnung.", "author": "Makwakkwak Mak", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB", "timestamp": "a month ago"} Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person gab es ebenfalls nicht. Es hat über 1 1/2 Stunden gedauert, bis jemand kam und das auch nur, weil ein anderer Kunde in der Vertragsabteilung in Madrid angerufen hat.\nDanach war dann alles soweit in Ordnung. 2 2025-12-26 01:27:48.341121+00 Makwakkwak Mak \N 1 2026-01-29 04:35:08.221856+00 2026-01-25 01:27:50.943095+00 323 \N google Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB unknown {"text": "Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , como el chico que recibió el vehículo, Dani , una atención excelente . Sin duda volveré a alquilar con esta compañía", "author": "Aaron", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB", "timestamp": "2 weeks ago"} Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , como el chico que recibió el vehículo, Dani , una atención excelente . Sin duda volveré a alquilar con esta compañía 5 2026-01-11 01:27:48.341123+00 Aaron \N 1 2026-01-29 04:35:08.224927+00 2026-01-25 01:27:50.948474+00 325 \N google Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB unknown {"text": "Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de Gran Canaria. En la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). Sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. Además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. Si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. Lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. Al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en Internet. Repito, ClickRent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. No reserves con ellos.", "author": "Alexandra R.R.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB", "timestamp": "a month ago"} Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de Gran Canaria. En la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). Sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. Además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. Si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. Lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. Al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en Internet. Repito, ClickRent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. No reserves con ellos. 1 2025-12-26 01:27:48.34114+00 Alexandra R.R. \N 1 2026-01-29 04:35:08.231819+00 2026-01-25 01:27:50.955234+00 1250 \N google ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB unknown {"text": "Fancy place with good music!", "author": "Celia Álvarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB", "timestamp": "5 years ago"} Fancy place with good music! 5 2021-01-30 18:34:31.336452+00 Celia Álvarez \N 1 2026-01-29 18:36:00.583331+00 2026-01-29 18:36:00.583331+00 1251 \N google ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE unknown {"text": "Nice :)", "author": "Audrius Basiulis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE", "timestamp": "5 years ago"} Nice :) 5 2021-01-30 18:34:31.336452+00 Audrius Basiulis \N 1 2026-01-29 18:36:00.586424+00 2026-01-29 18:36:00.586424+00 1252 \N google ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE unknown {"text": "Really good club!!!", "author": "Iratxe Azkarraga Alava", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE", "timestamp": "3 years ago"} Really good club!!! 5 2023-01-30 18:34:31.336452+00 Iratxe Azkarraga Alava \N 1 2026-01-29 18:36:00.589513+00 2026-01-29 18:36:00.589513+00 1253 \N google ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE unknown {"text": "Best baser", "author": "Koletta Jurskyte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE", "timestamp": "3 years ago"} Best baser 5 2023-01-30 18:34:31.336452+00 Koletta Jurskyte \N 1 2026-01-29 18:36:00.595989+00 2026-01-29 18:36:00.595989+00 1254 \N google ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE unknown {"text": "Very good 😻😻", "author": "Marianita Quintero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE", "timestamp": "3 years ago"} Very good 😻😻 5 2023-01-30 18:34:31.336452+00 Marianita Quintero \N 1 2026-01-29 18:36:00.598816+00 2026-01-29 18:36:00.598816+00 1255 \N google ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE unknown {"text": "Wow", "author": "UV Music", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE", "timestamp": "4 years ago"} Wow 5 2022-01-30 18:34:31.336452+00 UV Music \N 1 2026-01-29 18:36:00.60022+00 2026-01-29 18:36:00.60022+00 1256 \N google Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB unknown {"text": "Niekad nerašau, blogų atsiliepimų, tačiau ši kartą jau nebegaliu. Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas Bet - muzika. Aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? Visiškai nesvarbu koks DJ bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. Atrodo, jog be Lady gaga, Rihanna, Geltonos - nieko daugiau nėra. Tikriausiai galvojate kodėl rašau, \\"biedavojuosi\\"? Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€\\nTuomet visi pasiemam po kokteilį ~44€\\nBandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€\\nBet galiausiai vistiek lieka demotivuoti ir net suirze, nes tas pačias dainas per kelias valandas jau po kelis kartus girdejom ir jos tikra atgyvena. Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt", "author": "Helga", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB", "timestamp": "a month ago"} Niekad nerašau, blogų atsiliepimų, tačiau ši kartą jau nebegaliu. Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas Bet - muzika. Aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? Visiškai nesvarbu koks DJ bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. Atrodo, jog be Lady gaga, Rihanna, Geltonos - nieko daugiau nėra. Tikriausiai galvojate kodėl rašau, "biedavojuosi"? Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€\nTuomet visi pasiemam po kokteilį ~44€\nBandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€\nBet galiausiai vistiek lieka demotivuoti ir net suirze, nes tas pačias dainas per kelias valandas jau po kelis kartus girdejom ir jos tikra atgyvena. Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt 1 2025-12-30 18:34:31.336452+00 Helga \N 1 2026-01-29 18:36:00.603419+00 2026-01-29 18:36:00.603419+00 1257 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB unknown {"text": "Sou brasileira. Fui em uma sexta com mais dois amigos homens e gays, um brasileiro e um holandês. Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. Ele começou a dizer que não podíamos entrar. Nao falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\". Falava em Lituano algo mas não entendíamos e tentamos falar em inglês. Perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. Ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. Ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do Bolt. Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar.\\nBom, entramos mas foi bem estranho e não ficamos à vontade. Logos fomos embora e um pouco receosos em relação ao segurança.\\nSei que em situações assim fica questionável se realmente não estávamos fazendo algo \\"ruim\\" mas estávamos conversando em um volume baixo, em português, sobre como o uber foi atencioso.\\nPareceu algo extremamente pessoal. Sobre nossas roupas: calça, camisetas e casacos como todo o resto da balada.\\nAlém, a balada fede a suor.", "author": "Dani Viajante", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB", "timestamp": "3 months ago"} Sou brasileira. Fui em uma sexta com mais dois amigos homens e gays, um brasileiro e um holandês. Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. Ele começou a dizer que não podíamos entrar. Nao falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo "nao". Falava em Lituano algo mas não entendíamos e tentamos falar em inglês. Perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. Ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. Ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do Bolt. Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar.\nBom, entramos mas foi bem estranho e não ficamos à vontade. Logos fomos embora e um pouco receosos em relação ao segurança.\nSei que em situações assim fica questionável se realmente não estávamos fazendo algo "ruim" mas estávamos conversando em um volume baixo, em português, sobre como o uber foi atencioso.\nPareceu algo extremamente pessoal. Sobre nossas roupas: calça, camisetas e casacos como todo o resto da balada.\nAlém, a balada fede a suor. 1 2025-10-31 18:34:31.336452+00 Dani Viajante \N 1 2026-01-29 18:36:00.607264+00 2026-01-29 18:36:00.607264+00 1258 \N google Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB unknown {"text": "Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. Tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti.\\nVis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. Stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. Nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). Jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį.\\nŠviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.\\nFotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). Jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita.\\nSmulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.\\nTikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. Labai norisi tikėti, kad Vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi.", "author": "Tadas V", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB", "timestamp": "2 months ago"} Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. Tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti.\nVis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. Stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. Nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). Jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį.\nŠviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.\nFotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). Jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita.\nSmulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.\nTikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. Labai norisi tikėti, kad Vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi. 2 2025-11-30 18:34:31.336452+00 Tadas V \N 1 2026-01-29 18:36:00.611204+00 2026-01-29 18:36:00.611204+00 327 \N google Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB unknown {"text": "Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mitarbeiter bemerkt. Nach Abgleich mit den bekannten Schäden, die im Computer vermerkt sind, wurde mir der Schaden glücklicherweise nicht angelastet. Ich bin absolut zufrieden.\\nEinen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem Voucher bei der Adresse. Eine Bandansage über die angegebene Telefonnummer über den Abholpunkt am Flughafen, welche in einer fremden Sprache zu hören ist, ist bei Verkehrslärm am Flughafen schwierig zu verstehen. Ich habe lange gebraucht diesen Punkt zu finden.", "author": "Josef Spieler", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB", "timestamp": "3 months ago"} Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mitarbeiter bemerkt. Nach Abgleich mit den bekannten Schäden, die im Computer vermerkt sind, wurde mir der Schaden glücklicherweise nicht angelastet. Ich bin absolut zufrieden.\nEinen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem Voucher bei der Adresse. Eine Bandansage über die angegebene Telefonnummer über den Abholpunkt am Flughafen, welche in einer fremden Sprache zu hören ist, ist bei Verkehrslärm am Flughafen schwierig zu verstehen. Ich habe lange gebraucht diesen Punkt zu finden. 4 2025-10-27 01:27:48.341155+00 Josef Spieler \N 1 2026-01-29 04:35:08.23978+00 2026-01-25 01:27:50.965084+00 328 \N google ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB unknown {"text": "Hat alles gut geklappt. Haben den ShuttleBus nicht gefunden, hätten aber jederzeit anrufen können. Auch Zu fuß kann man den Standort relativ einfach erreichen. Auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt Zusatzleistungen zu buchen. Unterboden wurde kontrolliert, die Bordsteinkanten in GranCanaria sind sehr hoch, wenn man das beachtet und kein Schaden verursacht läuft alles schnell und reibungslos. Shuttle zum Flughafen mit Abgabe hat nicht mal 10 Minuten gedauert.", "author": "Niklas Florea", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB", "timestamp": "9 months ago"} Hat alles gut geklappt. Haben den ShuttleBus nicht gefunden, hätten aber jederzeit anrufen können. Auch Zu fuß kann man den Standort relativ einfach erreichen. Auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt Zusatzleistungen zu buchen. Unterboden wurde kontrolliert, die Bordsteinkanten in GranCanaria sind sehr hoch, wenn man das beachtet und kein Schaden verursacht läuft alles schnell und reibungslos. Shuttle zum Flughafen mit Abgabe hat nicht mal 10 Minuten gedauert. 5 2025-04-30 01:27:48.341157+00 Niklas Florea \N 1 2026-01-29 04:35:08.243976+00 2026-01-25 01:27:50.968065+00 329 \N google Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB unknown {"text": "El servicio fue lamentable!\\nPrimero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto.\\nAdemás de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos.\\nPor último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática.\\n\\nClaramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona.\\n\\nDefinitivamente NO recomiendo ClickRent. Terrible experiencia.", "author": "Paula Urrea", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB", "timestamp": "3 weeks ago"} El servicio fue lamentable!\nPrimero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto.\nAdemás de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos.\nPor último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática.\n\nClaramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona.\n\nDefinitivamente NO recomiendo ClickRent. Terrible experiencia. 1 2026-01-04 01:27:48.341159+00 Paula Urrea \N 1 2026-01-29 04:35:08.247629+00 2026-01-25 01:27:50.971153+00 668 \N google ChZDSUhNMG9nS0VJQ0FnSURIbG8ydGNnEAE unknown {"text": "Muy simpático y atento", "author": "antoni vidal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIbG8ydGNnEAE", "timestamp": "a year ago"} Muy simpático y atento 5 2025-01-25 01:27:48.343109+00 antoni vidal \N 1 2026-01-29 04:35:09.601968+00 2026-01-25 01:27:52.240777+00 1259 \N google Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB unknown {"text": "Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. Iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda.\\nSituacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė.\\nTikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų.", "author": "Edvinas D-as", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB", "timestamp": "4 weeks ago"} Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. Iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda.\nSituacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė.\nTikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų. 1 2026-01-01 18:34:31.336452+00 Edvinas D-as \N 1 2026-01-29 18:36:00.617354+00 2026-01-29 18:36:00.617354+00 1260 \N google Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB unknown {"text": "Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. Šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. Darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. Tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. Nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. Būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. Nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. Pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. Labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. Tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. Vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. Mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. Nuo kada kažkoks vyras sprendžia kas yra lesbietė, o kas ne? Liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų. O vakarėlio aprašyme parašyta, kad įėjimas nemokamas su dress kodu, nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti, kad pretenduoti į tą nemokamą įėjimą. Atrodo klubas įstrigęs 2000 metais tiek su savo pasenusiais ir neprašytais stereotipais, tiek su playlistu. Liūdna, kad vietoje, kurioje anksčiau galėdavome jaustis saugiai ir būti savimi, to patirti nebegalime.\\n\\nAtsakymas: deja mano atsiliepimas nėra tik interpretacija, jis yra paremtas faktais. Mūsų draugė, kuri nebuvo apsirengusi jokiu personažu buvo pasiruošusi susimokėti už įėjimą - į klubą pateko nemokamai. Ji tikrai nebuvo jokiame svečių sąraše. Mes buvome apsirengusios personažais nuo galvos iki kojų ir kiekvieną aprangos detalę iš anksto apgalvojome, pirkome naujus rūbus ir aksesuarus dėl kostiumų. Savo nuotraukų kelti į soho klubo atsiliepimus ir viešinti savo tapatybių nenorime, jūs tai turėtumėte suprasti labiau, nei bet kas kitas. Dėl diskriminuojančio ir mizogonistinio komentaro, kurio susilaukėme iš jūsų darbuotojo - taip ir neatsakėte. Toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas.", "author": "Cat Lover", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB", "timestamp": "2 months ago"} Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. Šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. Darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. Tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. Nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. Būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. Nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. Pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. Labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. Tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. Vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. Mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. Nuo kada kažkoks vyras sprendžia kas yra lesbietė, o kas ne? Liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų. O vakarėlio aprašyme parašyta, kad įėjimas nemokamas su dress kodu, nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti, kad pretenduoti į tą nemokamą įėjimą. Atrodo klubas įstrigęs 2000 metais tiek su savo pasenusiais ir neprašytais stereotipais, tiek su playlistu. Liūdna, kad vietoje, kurioje anksčiau galėdavome jaustis saugiai ir būti savimi, to patirti nebegalime.\n\nAtsakymas: deja mano atsiliepimas nėra tik interpretacija, jis yra paremtas faktais. Mūsų draugė, kuri nebuvo apsirengusi jokiu personažu buvo pasiruošusi susimokėti už įėjimą - į klubą pateko nemokamai. Ji tikrai nebuvo jokiame svečių sąraše. Mes buvome apsirengusios personažais nuo galvos iki kojų ir kiekvieną aprangos detalę iš anksto apgalvojome, pirkome naujus rūbus ir aksesuarus dėl kostiumų. Savo nuotraukų kelti į soho klubo atsiliepimus ir viešinti savo tapatybių nenorime, jūs tai turėtumėte suprasti labiau, nei bet kas kitas. Dėl diskriminuojančio ir mizogonistinio komentaro, kurio susilaukėme iš jūsų darbuotojo - taip ir neatsakėte. Toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas. 1 2025-11-30 18:34:31.336452+00 Cat Lover \N 1 2026-01-29 18:36:00.621636+00 2026-01-29 18:36:00.621636+00 1261 \N google Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB unknown {"text": "Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių\\"? :) Jums atrodo norėsis žmonėms kitą kart čia ateit po tokio malonaus elgesio?", "author": "R. Violetovienė", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB", "timestamp": "2 months ago"} Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių"? :) Jums atrodo norėsis žmonėms kitą kart čia ateit po tokio malonaus elgesio? 1 2025-11-30 18:34:31.336452+00 R. Violetovienė \N 1 2026-01-29 18:36:00.624986+00 2026-01-29 18:36:00.624986+00 1262 \N google ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB unknown {"text": "Samedi soir début novembre. Nous sommes arrivés à 23h30. Peu de monde (voir photo). Le public est varié. Quelques filles aussi.\\n\\nLe personnel est très accueillant et gentil.\\nIl y a une salle boîte de nuit pour danser.\\n\\nContents d y être allé pour supporter un établissement LGBT", "author": "Jc b23", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB", "timestamp": "a year ago"} Samedi soir début novembre. Nous sommes arrivés à 23h30. Peu de monde (voir photo). Le public est varié. Quelques filles aussi.\n\nLe personnel est très accueillant et gentil.\nIl y a une salle boîte de nuit pour danser.\n\nContents d y être allé pour supporter un établissement LGBT 3 2025-01-29 18:34:31.336452+00 Jc b23 \N 1 2026-01-29 18:36:00.62775+00 2026-01-29 18:36:00.62775+00 1263 \N google Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB unknown {"text": "Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro", "author": "Jelena Šulžickienė", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB", "timestamp": "4 months ago"} Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro 4 2025-10-01 18:34:31.336452+00 Jelena Šulžickienė \N 1 2026-01-29 18:36:00.630865+00 2026-01-29 18:36:00.630865+00 333 \N google Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB unknown {"text": "Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar.\\n\\nSe pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa.\\n\\nNo sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear.\\n\\nNo repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen.", "author": "Andrea González", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB", "timestamp": "2 months ago"} Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar.\n\nSe pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa.\n\nNo sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear.\n\nNo repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen. 1 2025-11-26 01:27:48.341167+00 Andrea González \N 1 2026-01-29 04:35:08.271647+00 2026-01-25 01:27:50.986499+00 335 \N google Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB unknown {"text": "He alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo decir que es la mejor en la que he contratado. El trato humano que tienen es de 10, siempre muy cercanos. Los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás habia cogido uno) me enseñaron amablemente a usarlo y así estar cómoda.\\nMe vine por el precio pero me quedo por el equipo que tienen.", "author": "María Teresa Guerra Guerra", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB", "timestamp": "3 months ago"} He alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo decir que es la mejor en la que he contratado. El trato humano que tienen es de 10, siempre muy cercanos. Los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás habia cogido uno) me enseñaron amablemente a usarlo y así estar cómoda.\nMe vine por el precio pero me quedo por el equipo que tienen. 5 2025-10-27 01:27:48.341175+00 María Teresa Guerra Guerra \N 1 2026-01-29 04:35:08.305279+00 2026-01-25 01:27:50.991053+00 336 \N google Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB unknown {"text": "Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort. Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur schwer nachvollziehbare Zahlungen leisten. Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum.", "author": "Fynn Hüttersen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB", "timestamp": "2 months ago"} Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort. Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur schwer nachvollziehbare Zahlungen leisten. Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum. 1 2025-11-26 01:27:48.341185+00 Fynn Hüttersen \N 1 2026-01-29 04:35:08.31471+00 2026-01-25 01:27:50.993567+00 1264 \N google Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB unknown {"text": "מועדון מאד יפה אבל דיי ריק בשישי בערב.מעורב עם נשים.\\nנאלצנו לחתוך מוקדם.אולי בפעם אחרת.", "author": "מעוז פטל", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB", "timestamp": "3 months ago"} מועדון מאד יפה אבל דיי ריק בשישי בערב.מעורב עם נשים.\nנאלצנו לחתוך מוקדם.אולי בפעם אחרת. 5 2025-10-31 18:34:31.336452+00 מעוז פטל \N 1 2026-01-29 18:36:00.634769+00 2026-01-29 18:36:00.634769+00 1265 \N google ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE unknown {"text": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi. Tūsas buvo super. Ačiū Artūrui 👌", "author": "archi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE", "timestamp": "Edited a year ago"} Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi. Tūsas buvo super. Ačiū Artūrui 👌 5 2026-01-29 18:34:31.336452+00 archi \N 1 2026-01-29 18:36:00.639126+00 2026-01-29 18:36:00.639126+00 1266 \N google Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB unknown {"text": "El mejor club gay en Vilnius .\\nLa noche de los Viernes me encanta.", "author": "John Alexander Serna Correa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB", "timestamp": "2 months ago"} El mejor club gay en Vilnius .\nLa noche de los Viernes me encanta. 5 2025-11-30 18:34:31.336452+00 John Alexander Serna Correa \N 1 2026-01-29 18:36:00.643143+00 2026-01-29 18:36:00.643143+00 1267 \N google ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB unknown {"text": "Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем. Вход 4€ вроде бы, сдерли 6. По окончании шоу музыка не музыка, места потанцевать нет", "author": "Serhii Diachuk", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB", "timestamp": "Edited 3 years ago"} Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем. Вход 4€ вроде бы, сдерли 6. По окончании шоу музыка не музыка, места потанцевать нет 1 2026-01-29 18:34:31.336452+00 Serhii Diachuk \N 1 2026-01-29 18:36:00.646116+00 2026-01-29 18:36:00.646116+00 1268 \N google ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB unknown {"text": "Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10!", "author": "Eivūnas _", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB", "timestamp": "2 years ago"} Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10! 5 2024-01-30 18:34:31.336452+00 Eivūnas _ \N 1 2026-01-29 18:36:00.648146+00 2026-01-29 18:36:00.648146+00 338 \N google Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB unknown {"text": "Gebucht über doyouspain mit einer vollen Versicherung. Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der Buchung der Versicherung, und diese auch noch alle Daten nach Aussage erhalten haben, einem nochmal eine Versicherung berechnen und dies dann anders verkaufen. Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären. Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen.", "author": "Rom An", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB", "timestamp": "2 months ago"} Gebucht über doyouspain mit einer vollen Versicherung. Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der Buchung der Versicherung, und diese auch noch alle Daten nach Aussage erhalten haben, einem nochmal eine Versicherung berechnen und dies dann anders verkaufen. Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären. Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen. 1 2025-11-26 01:27:48.341207+00 Rom An \N 1 2026-01-29 04:35:08.322523+00 2026-01-25 01:27:51.00106+00 340 \N google Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB unknown {"text": "Une honte entre le prix affiché sur le site internet et la finalité. Nous payons 195,29€ sur le site, une fois sur place on nous demande de payer en plus soit 1000€ de caution soit 393€ pour l’assurance.\\nNous avons voulu prendre la caution avec la carte de crédit de ma femme mais ils n’ont pas voulu car elle n’était pas à mon nom alors que ma femme était présente. Nous étions dans l’impossibilité de changer de loueur car nous étions au milieu de nulle part avec deux enfants en bas âge 2 et 5 ans. Nous avons donc pas eu le choix de payer les 393€ supplémentaires + 50€ supplémentaires car nous rendons le véhicules hors des horaires d’ouvertures. Donc au lieu de payer 195,29€ la location nous avons eu une facture total de 638,29€ !!!!! + une caution de 200€ pour l’essence !!!!! Je ne vous recommande en aucun cas ce lieu ! Un vrai coût qui n’était pas prévu dans notre budget vacances avec nos enfants ! Dégoûté !!!", "author": "Manu Nikolic", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB", "timestamp": "5 months ago"} Une honte entre le prix affiché sur le site internet et la finalité. Nous payons 195,29€ sur le site, une fois sur place on nous demande de payer en plus soit 1000€ de caution soit 393€ pour l’assurance.\nNous avons voulu prendre la caution avec la carte de crédit de ma femme mais ils n’ont pas voulu car elle n’était pas à mon nom alors que ma femme était présente. Nous étions dans l’impossibilité de changer de loueur car nous étions au milieu de nulle part avec deux enfants en bas âge 2 et 5 ans. Nous avons donc pas eu le choix de payer les 393€ supplémentaires + 50€ supplémentaires car nous rendons le véhicules hors des horaires d’ouvertures. Donc au lieu de payer 195,29€ la location nous avons eu une facture total de 638,29€ !!!!! + une caution de 200€ pour l’essence !!!!! Je ne vous recommande en aucun cas ce lieu ! Un vrai coût qui n’était pas prévu dans notre budget vacances avec nos enfants ! Dégoûté !!! 1 2025-08-28 01:27:48.341216+00 Manu Nikolic \N 1 2026-01-29 04:35:08.333134+00 2026-01-25 01:27:51.006406+00 341 \N google Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB unknown {"text": "Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto.", "author": "Eduardo Almeida", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB", "timestamp": "a week ago"} Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto. 1 2026-01-18 01:27:48.341218+00 Eduardo Almeida \N 1 2026-01-29 04:35:08.339073+00 2026-01-25 01:27:51.00935+00 343 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB unknown {"text": "Schwierig zu finden nach Ankunft am Flughafen.\\nBei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nicht gemacht habe und bei der Rückgabe zu Problemen geführt hat.\\nNicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden.", "author": "Ollipower 1963 w", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB", "timestamp": "2 months ago"} Schwierig zu finden nach Ankunft am Flughafen.\nBei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nicht gemacht habe und bei der Rückgabe zu Problemen geführt hat.\nNicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden. 1 2025-11-26 01:27:48.341222+00 Ollipower 1963 w \N 1 2026-01-29 04:35:08.349759+00 2026-01-25 01:27:51.016009+00 1269 \N google ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE unknown {"text": "Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai Soho🙂⭐", "author": "Neringa Janciunaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE", "timestamp": "Edited a year ago"} Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai Soho🙂⭐ 5 2026-01-29 18:34:31.336452+00 Neringa Janciunaite \N 1 2026-01-29 18:36:00.649906+00 2026-01-29 18:36:00.649906+00 1270 \N google ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB unknown {"text": "Neblogas klubas, muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo", "author": "Živilė Jasinevičiūtė", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB", "timestamp": "2 years ago"} Neblogas klubas, muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo 3 2024-01-30 18:34:31.336452+00 Živilė Jasinevičiūtė \N 1 2026-01-29 18:36:00.652664+00 2026-01-29 18:36:00.652664+00 345 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB unknown {"text": "Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van Clickrent. Kennelijk was Localrent slechts een tussenpersoon. Ik was daar behoorlijk kwaad om geworden. Clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. Hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. Uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden niet moeilijk om wat zand in het interieur.", "author": "Iliass Bololo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB", "timestamp": "3 months ago"} Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van Clickrent. Kennelijk was Localrent slechts een tussenpersoon. Ik was daar behoorlijk kwaad om geworden. Clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. Hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. Uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden niet moeilijk om wat zand in het interieur. 4 2025-10-27 01:27:48.341262+00 Iliass Bololo \N 1 2026-01-29 04:35:08.372837+00 2026-01-25 01:27:51.021933+00 346 \N google ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB unknown {"text": "Wir haben das Auto einen Tag vor der Einreise über Check24 gebucht. Die Vollkasko war bereits inbegriffen. Für 4 Tage kostete ein Mittelklassewagen ca. 100 €.\\n\\nEs war etwas schwierig, die Shuttlebus-Haltestelle zu finden. Man findet vielleicht die richtige Haltestelle, aber es ist kein Bus da. Dann ist man unsicher, ob es wirklich der richtige Treffpunkt ist. Man möchte schließlich nicht umsonst warten. Ein paar Fotos vom Treffpunkt und dem Bus selbst hinzuzufügen, wäre sehr hilfreich! Wir sind stattdessen zu Fuß zur Anmeldestelle gegangen (ca. 15-30 Minuten).\\n\\nDort wurden wir herzlich begrüßt. Es gab mehrere Anmeldeschalter, aber es war nicht viel los, sodass die Anmeldung maximal 10 Minuten gedauert hat und wir direkt losfahren konnten. Das Auto war fast neu, makellos und sehr gepflegt.\\n\\nZum Schluss verlief die Schlüsselübergabe unkompliziert, und innerhalb von 10 Minuten waren wir am Flughafen. Dieses Mal haben wir den Shuttlebus genommen.", "author": "Yuliya Kutynska", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB", "timestamp": "a year ago"} Wir haben das Auto einen Tag vor der Einreise über Check24 gebucht. Die Vollkasko war bereits inbegriffen. Für 4 Tage kostete ein Mittelklassewagen ca. 100 €.\n\nEs war etwas schwierig, die Shuttlebus-Haltestelle zu finden. Man findet vielleicht die richtige Haltestelle, aber es ist kein Bus da. Dann ist man unsicher, ob es wirklich der richtige Treffpunkt ist. Man möchte schließlich nicht umsonst warten. Ein paar Fotos vom Treffpunkt und dem Bus selbst hinzuzufügen, wäre sehr hilfreich! Wir sind stattdessen zu Fuß zur Anmeldestelle gegangen (ca. 15-30 Minuten).\n\nDort wurden wir herzlich begrüßt. Es gab mehrere Anmeldeschalter, aber es war nicht viel los, sodass die Anmeldung maximal 10 Minuten gedauert hat und wir direkt losfahren konnten. Das Auto war fast neu, makellos und sehr gepflegt.\n\nZum Schluss verlief die Schlüsselübergabe unkompliziert, und innerhalb von 10 Minuten waren wir am Flughafen. Dieses Mal haben wir den Shuttlebus genommen. 4 2025-01-25 01:27:48.341266+00 Yuliya Kutynska \N 1 2026-01-29 04:35:08.377543+00 2026-01-25 01:27:51.025503+00 347 \N google Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB unknown {"text": "Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet.", "author": "Niina Lumus", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB", "timestamp": "2 weeks ago"} Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet. 1 2026-01-11 01:27:48.341275+00 Niina Lumus \N 1 2026-01-29 04:35:08.381531+00 2026-01-25 01:27:51.027669+00 348 \N google Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB unknown {"text": "Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100%", "author": "Yudeisy Brito Paz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB", "timestamp": "a week ago"} Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100% 5 2026-01-18 01:27:48.341282+00 Yudeisy Brito Paz \N 1 2026-01-29 04:35:08.38474+00 2026-01-25 01:27:51.032231+00 349 \N google ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE unknown {"text": "Recomiendo al 100 X 100 esta empresa de alquiler de vehículos. Trato amable, cercano y muy profesional de todo el equipo humano. A destacar a Carlos y Fran. A mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final de nuestras vacaciones nos volvieron a llevar junto con nuestras maletas. Muy puntuales y eficaces y el coche que nos proporcionaron para el uso de nuestra estancia en la isla de Gran Canaria prácticamente nuevo. Volveremos a contar con vosotros en nuestro regreso a la isla. Muchas gracias de corazón.", "author": "Jorge García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE", "timestamp": "a year ago"} Recomiendo al 100 X 100 esta empresa de alquiler de vehículos. Trato amable, cercano y muy profesional de todo el equipo humano. A destacar a Carlos y Fran. A mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final de nuestras vacaciones nos volvieron a llevar junto con nuestras maletas. Muy puntuales y eficaces y el coche que nos proporcionaron para el uso de nuestra estancia en la isla de Gran Canaria prácticamente nuevo. Volveremos a contar con vosotros en nuestro regreso a la isla. Muchas gracias de corazón. 5 2025-01-25 01:27:48.341292+00 Jorge García \N 1 2026-01-29 04:35:08.388938+00 2026-01-25 01:27:51.035322+00 537 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB unknown {"text": "Aeroportdan 1 km aralıdır. Servis əladır", "author": "Mimiko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB", "timestamp": "4 weeks ago"} Aeroportdan 1 km aralıdır. Servis əladır 5 2025-12-28 01:27:48.342455+00 Mimiko \N 1 2026-01-29 04:35:09.170853+00 2026-01-25 01:27:51.771388+00 1271 \N google ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE unknown {"text": "Fui un sábado por la noche y la verdad es que estaba bastante vacío. El ambiente y la música regular.\\nLa estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "author": "Diego", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE", "timestamp": "a year ago"} Fui un sábado por la noche y la verdad es que estaba bastante vacío. El ambiente y la música regular.\nLa estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato. 3 2025-01-29 18:34:31.336452+00 Diego \N 1 2026-01-29 18:36:00.654671+00 2026-01-29 18:36:00.654671+00 1272 \N google Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB unknown {"text": "Гарне місце для тих хто хоче знайти себе!", "author": "Karina Petrova", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB", "timestamp": "4 months ago"} Гарне місце для тих хто хоче знайти себе! 4 2025-10-01 18:34:31.336452+00 Karina Petrova \N 1 2026-01-29 18:36:00.65673+00 2026-01-29 18:36:00.65673+00 1273 \N google ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE unknown {"text": "Praeitą šeštadienį apsilankiau jūsų klube, tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei, super, ačiū, iki kitų kartų!", "author": "Vadim Korsak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE", "timestamp": "2 years ago"} Praeitą šeštadienį apsilankiau jūsų klube, tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei, super, ačiū, iki kitų kartų! 5 2024-01-30 18:34:31.336452+00 Vadim Korsak \N 1 2026-01-29 18:36:00.658247+00 2026-01-29 18:36:00.658247+00 1274 \N google ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB unknown {"text": "Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų, apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. Tai jei norite blogios nuotaikos ir prarastų pinigų welcome to Soho.", "author": "Denys Poltoratskyy", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB", "timestamp": "3 years ago"} Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų, apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. Tai jei norite blogios nuotaikos ir prarastų pinigų welcome to Soho. 1 2023-01-30 18:34:31.336452+00 Denys Poltoratskyy \N 1 2026-01-29 18:36:00.660093+00 2026-01-29 18:36:00.660093+00 351 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB unknown {"text": "Estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do início ao fim. O dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro. O horário da abertura da loja foi pontual. Inspeção realizada e … boa viagem!", "author": "Mônica Areal", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB", "timestamp": "3 months ago"} Estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do início ao fim. O dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro. O horário da abertura da loja foi pontual. Inspeção realizada e … boa viagem! 5 2025-10-27 01:27:48.341303+00 Mônica Areal \N 1 2026-01-29 04:35:08.396633+00 2026-01-25 01:27:51.039753+00 353 \N google Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB unknown {"text": "Un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún no tengo el dinero de la fianza que te cobran sin avisar el día de la reserva.\\nEl vehículo no era el que reservé y no hay opción según ellos , o ese y otro modelo pagando la diferencia.\\nUna vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno a otro.\\nIncompetentes , mentirosos , ESTAFADORES y nada profesionales\\nNADA RECOMENDABLE", "author": "Jose Blesa Martínez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB", "timestamp": "5 months ago"} Un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún no tengo el dinero de la fianza que te cobran sin avisar el día de la reserva.\nEl vehículo no era el que reservé y no hay opción según ellos , o ese y otro modelo pagando la diferencia.\nUna vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno a otro.\nIncompetentes , mentirosos , ESTAFADORES y nada profesionales\nNADA RECOMENDABLE 1 2025-08-28 01:27:48.341307+00 Jose Blesa Martínez \N 1 2026-01-29 04:35:08.406156+00 2026-01-25 01:27:51.047865+00 354 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB unknown {"text": "Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches. El personal amable y profesional. El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche.", "author": "Miguel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB", "timestamp": "3 months ago"} Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches. El personal amable y profesional. El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche. 5 2025-10-27 01:27:48.341309+00 Miguel \N 1 2026-01-29 04:35:08.412479+00 2026-01-25 01:27:51.051075+00 355 \N google Ci9DQUlRQUNvZENodHljRjlvT21SQ1FrODNNVnAyUW13eFdtbHRWRk4wYTJkRlprRRAB unknown {"text": "Půjčení vozu na týden přes Booking vyjde cca na 1400,- Kč. Je u sebe potřeba mít fyzicky kreditní kartu, jinak vas donutí zaplatit ještě komplexní pojištění a půjčení vás tak vyjde na 4.500,-Kč! Nestačí mít kartu v mobilu.", "author": "Rosi", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21SQ1FrODNNVnAyUW13eFdtbHRWRk4wYTJkRlprRRAB", "timestamp": "6 months ago"} Půjčení vozu na týden přes Booking vyjde cca na 1400,- Kč. Je u sebe potřeba mít fyzicky kreditní kartu, jinak vas donutí zaplatit ještě komplexní pojištění a půjčení vás tak vyjde na 4.500,-Kč! Nestačí mít kartu v mobilu. 3 2025-07-29 01:27:48.341311+00 Rosi \N 1 2026-01-29 04:35:08.421893+00 2026-01-25 01:27:51.053102+00 356 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB unknown {"text": "Lange Wartezeiten, schlechter Service. Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser krank war mussten wir einen neuen Mietwagen für den doppelten Preis buchen.", "author": "Tom Hinten", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB", "timestamp": "2 months ago"} Lange Wartezeiten, schlechter Service. Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser krank war mussten wir einen neuen Mietwagen für den doppelten Preis buchen. 1 2025-11-26 01:27:48.341313+00 Tom Hinten \N 1 2026-01-29 04:35:08.429661+00 2026-01-25 01:27:51.054972+00 1275 \N google ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE unknown {"text": "Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR", "author": "Aurimas", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE", "timestamp": "9 months ago"} Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR 2 2025-05-04 18:34:31.336452+00 Aurimas \N 1 2026-01-29 18:36:00.66236+00 2026-01-29 18:36:00.66236+00 1276 \N google ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE unknown {"text": "Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. Apvemta salė, stiklai. Niekas nieko netvarko. Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "author": "Leo Leo", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE", "timestamp": "3 years ago"} Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. Apvemta salė, stiklai. Niekas nieko netvarko. Savininkas labai geros nuomonės apie save. Žiūri iš aukšto. 1 2023-01-30 18:34:31.336452+00 Leo Leo \N 1 2026-01-29 18:36:00.663984+00 2026-01-29 18:36:00.663984+00 358 \N google Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB unknown {"text": "Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! C’est scandaleux.\\nAutant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. Passez votre chemin il y a beaucoup mieux !", "author": "Mimi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB", "timestamp": "3 months ago"} Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! C’est scandaleux.\nAutant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. Passez votre chemin il y a beaucoup mieux ! 1 2025-10-27 01:27:48.341317+00 Mimi \N 1 2026-01-29 04:35:08.440496+00 2026-01-25 01:27:51.060785+00 359 \N google Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB unknown {"text": "Alles lief äußerst schnell und unkompliziert. Das Personal war sehr nett. Sowohl Abholung als auch Abgabe lief sehr routiniert, entspannt und reibungslos. Wir waren 30 Minuten zu spät zur Abgabe, war gar kein Problem. Jederzeit wieder und vielen Dank!!!", "author": "Anna Wellein", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB", "timestamp": "3 months ago"} Alles lief äußerst schnell und unkompliziert. Das Personal war sehr nett. Sowohl Abholung als auch Abgabe lief sehr routiniert, entspannt und reibungslos. Wir waren 30 Minuten zu spät zur Abgabe, war gar kein Problem. Jederzeit wieder und vielen Dank!!! 5 2025-10-27 01:27:48.341327+00 Anna Wellein \N 1 2026-01-29 04:35:08.444194+00 2026-01-25 01:27:51.068256+00 360 \N google Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB unknown {"text": "Não sei deixem enganar por estes burlões.!!!! Alem do staff ser todo arrogante, mal dispostos e estúpidos.\\nCobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira.\\nComo tinha seguro, não puderam cobrar extras de outra maneira.\\nUma VERGONHA.\\nNão devia ser permitido se aproveitarem desta maneira dos clientes.\\nSão absolutamente ridículos.!!!!", "author": "Nicole Vieira", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB", "timestamp": "5 months ago"} Não sei deixem enganar por estes burlões.!!!! Alem do staff ser todo arrogante, mal dispostos e estúpidos.\nCobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira.\nComo tinha seguro, não puderam cobrar extras de outra maneira.\nUma VERGONHA.\nNão devia ser permitido se aproveitarem desta maneira dos clientes.\nSão absolutamente ridículos.!!!! 1 2025-08-28 01:27:48.341335+00 Nicole Vieira \N 1 2026-01-29 04:35:08.450223+00 2026-01-25 01:27:51.07115+00 361 \N google ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB unknown {"text": "Fantástico!!\\n\\nTenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experiencia ha sido muy positiva. Tienes el Transfer gratis hasta la oficina, que son 5 minutos de trayecto, si llega. La atención de todo el personal es fantástica, tanto el chófer del Transfer como en la oficina (me atendió la chica canaria). el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que muchos otros sitios.\\n\\nLo recomiendo 100%", "author": "Jy R", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB", "timestamp": "11 months ago"} Fantástico!!\n\nTenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experiencia ha sido muy positiva. Tienes el Transfer gratis hasta la oficina, que son 5 minutos de trayecto, si llega. La atención de todo el personal es fantástica, tanto el chófer del Transfer como en la oficina (me atendió la chica canaria). el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que muchos otros sitios.\n\nLo recomiendo 100% 5 2025-03-01 01:27:48.341346+00 Jy R \N 1 2026-01-29 04:35:08.455308+00 2026-01-25 01:27:51.07514+00 362 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB unknown {"text": "Hold dere unna denne bedriften. Bilen var bra, men resten var dårlig. Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro. Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler enda 1 ukeetter hjemreise.", "author": "Kjetil Grytbakk", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB", "timestamp": "a month ago"} Hold dere unna denne bedriften. Bilen var bra, men resten var dårlig. Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro. Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler enda 1 ukeetter hjemreise. 1 2025-12-26 01:27:48.341355+00 Kjetil Grytbakk \N 1 2026-01-29 04:35:08.463977+00 2026-01-25 01:27:51.086297+00 369 \N google ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE unknown {"text": "Superfreundlich, schnell und unkompliziert. Das Büro in mehreren Sprachen flexibel. Carlos hat's prima gemacht, Kompliment!\\nDas Auto neu und in einem TOP-Zustand. Die Rückgabe lief superschnell und der Shuttle vom und zum Flughafen war schnell, der Fahrer ebenfalls superfreundlich.\\nAlles in allem mehrfach fünf Sterne!", "author": "Oliver Sust", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE", "timestamp": "Edited a year ago"} Superfreundlich, schnell und unkompliziert. Das Büro in mehreren Sprachen flexibel. Carlos hat's prima gemacht, Kompliment!\nDas Auto neu und in einem TOP-Zustand. Die Rückgabe lief superschnell und der Shuttle vom und zum Flughafen war schnell, der Fahrer ebenfalls superfreundlich.\nAlles in allem mehrfach fünf Sterne! 5 2026-01-25 01:27:48.341406+00 Oliver Sust \N 1 2026-01-29 04:35:08.495503+00 2026-01-25 01:27:51.126535+00 1277 \N google ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB unknown {"text": "Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :)", "author": "Ilija Edgar Muromec", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB", "timestamp": "a year ago"} Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :) 5 2025-01-29 18:34:31.336452+00 Ilija Edgar Muromec \N 1 2026-01-29 18:36:00.66546+00 2026-01-29 18:36:00.66546+00 1278 \N google ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE unknown {"text": "Месту срочно необходим ремонт. Грязно очень. Музыка и выпивка хороши. Контингент - весёлые и интересные, яркие люди.", "author": "Yuliya Betsiankova", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE", "timestamp": "2 years ago"} Месту срочно необходим ремонт. Грязно очень. Музыка и выпивка хороши. Контингент - весёлые и интересные, яркие люди. 2 2024-01-30 18:34:31.336452+00 Yuliya Betsiankova \N 1 2026-01-29 18:36:00.667107+00 2026-01-29 18:36:00.667107+00 1279 \N google ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB unknown {"text": "Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba.", "author": "dontlookatme", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB", "timestamp": "6 years ago"} Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba. 3 2020-01-31 18:34:31.336452+00 dontlookatme \N 1 2026-01-29 18:36:00.668875+00 2026-01-29 18:36:00.668875+00 1280 \N google ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE unknown {"text": "отличный клуб, всё было просто пркрасно", "author": "Лавка Лавка", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE", "timestamp": "9 months ago"} отличный клуб, всё было просто пркрасно 5 2025-05-04 18:34:31.336452+00 Лавка Лавка \N 1 2026-01-29 18:36:00.670252+00 2026-01-29 18:36:00.670252+00 1281 \N google ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB unknown {"text": "Gera muzika, draugiški žmonės. Man labai patiko!", "author": "Germina Ruginė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB", "timestamp": "a year ago"} Gera muzika, draugiški žmonės. Man labai patiko! 5 2025-01-29 18:34:31.336452+00 Germina Ruginė \N 1 2026-01-29 18:36:00.67191+00 2026-01-29 18:36:00.67191+00 365 \N google Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB unknown {"text": "Una experiencia desastrosa – jamás volveré\\n\\nReservé un coche y acudí puntualmente el día acordado para recogerlo.\\nEl vehículo no estaba disponible, no ofrecieron ninguna alternativa útil, y el personal se mostró completamente despreocupado y poco profesional.\\nSin disculpas, sin compensación y sin ninguna solución concreta. Nos dejaron literalmente tirados, con todos los planes arruinados y altos gastos extra.\\n\\nConclusión: Empresa poco fiable, nada profesional y sin atención al cliente. Si quiere evitarse problemas, costes adicionales y frustraciones, busque otro lugar para alquilar.", "author": "Alexandra", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB", "timestamp": "5 months ago"} Una experiencia desastrosa – jamás volveré\n\nReservé un coche y acudí puntualmente el día acordado para recogerlo.\nEl vehículo no estaba disponible, no ofrecieron ninguna alternativa útil, y el personal se mostró completamente despreocupado y poco profesional.\nSin disculpas, sin compensación y sin ninguna solución concreta. Nos dejaron literalmente tirados, con todos los planes arruinados y altos gastos extra.\n\nConclusión: Empresa poco fiable, nada profesional y sin atención al cliente. Si quiere evitarse problemas, costes adicionales y frustraciones, busque otro lugar para alquilar. 1 2025-08-28 01:27:48.341373+00 Alexandra \N 1 2026-01-29 04:35:08.479822+00 2026-01-25 01:27:51.104009+00 366 \N google Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB unknown {"text": "Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Валентине.", "author": "Oleksandr Velychko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB", "timestamp": "4 weeks ago"} Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Валентине. 5 2025-12-28 01:27:48.341377+00 Oleksandr Velychko \N 1 2026-01-29 04:35:08.482874+00 2026-01-25 01:27:51.106864+00 367 \N google Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB unknown {"text": "Experiencia muy negativa. Evitad esta empresa si podéis.\\n\\nAlquilamos un coche con mi familia y desde el primer momento fue una experiencia pésima:\\n\\nNos aseguraron un modelo de coche que luego “no tenían”. Aceptamos el cambio por no tener otra opción.\\n\\nEn recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su seguro “a todo riesgo”, que además exigía un depósito! . Nos advirtió que, si no lo hacíamos, tendríamos problemas al devolver el coche. Y así fue.\\n\\nA la entrega, una empleada se tiró directamente al suelo y señaló un roce no visible a simple vista, diciendo que lo habíamos hecho nosotros. No nos dieron parte de daños previos, ni fotos, ni comprobación alguna al inicio. Solo nos dijeron literalmente: \\"no es mi problema que no le hicierais fotos\\". Resultado: penalización de 380 € sin pruebas.\\n\\nCuando pedimos la hoja de reclamaciones, \\"no la encontraban\\". Solo tras insistir y amenazar con llamar a la policía, nos la entregaron, no sin antes levantar la voz y faltarnos al respeto.\\n\\nUna empresa que actúa así no merece confianza. Cobros injustificados, trato agresivo y prácticas de estafa. No la recomendaría bajo ningún concepto.", "author": "Aitana Villalba Plata", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB", "timestamp": "5 months ago"} Experiencia muy negativa. Evitad esta empresa si podéis.\n\nAlquilamos un coche con mi familia y desde el primer momento fue una experiencia pésima:\n\nNos aseguraron un modelo de coche que luego “no tenían”. Aceptamos el cambio por no tener otra opción.\n\nEn recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su seguro “a todo riesgo”, que además exigía un depósito! . Nos advirtió que, si no lo hacíamos, tendríamos problemas al devolver el coche. Y así fue.\n\nA la entrega, una empleada se tiró directamente al suelo y señaló un roce no visible a simple vista, diciendo que lo habíamos hecho nosotros. No nos dieron parte de daños previos, ni fotos, ni comprobación alguna al inicio. Solo nos dijeron literalmente: "no es mi problema que no le hicierais fotos". Resultado: penalización de 380 € sin pruebas.\n\nCuando pedimos la hoja de reclamaciones, "no la encontraban". Solo tras insistir y amenazar con llamar a la policía, nos la entregaron, no sin antes levantar la voz y faltarnos al respeto.\n\nUna empresa que actúa así no merece confianza. Cobros injustificados, trato agresivo y prácticas de estafa. No la recomendaría bajo ningún concepto. 1 2025-08-28 01:27:48.341386+00 Aitana Villalba Plata \N 1 2026-01-29 04:35:08.487314+00 2026-01-25 01:27:51.11447+00 368 \N google ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB unknown {"text": "Wir hatten über Booking eine Reservierung für einen Kleinwagen. Bekommen haben wir einen tollen Fiat 500. Am Anfang hatten wir ein Problem, da die Frau am Schalter sagte ich solle eine Jungfahrergebühr bezahlen obwohl diese laut Check24 bereits inbegriffen ist. Nun wird reklamiert. Auto war ansonsten top.", "author": "Hanna P.", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB", "timestamp": "11 months ago"} Wir hatten über Booking eine Reservierung für einen Kleinwagen. Bekommen haben wir einen tollen Fiat 500. Am Anfang hatten wir ein Problem, da die Frau am Schalter sagte ich solle eine Jungfahrergebühr bezahlen obwohl diese laut Check24 bereits inbegriffen ist. Nun wird reklamiert. Auto war ansonsten top. 3 2025-03-01 01:27:48.341396+00 Hanna P. \N 1 2026-01-29 04:35:08.491105+00 2026-01-25 01:27:51.119123+00 669 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3cU0zWGRREAE unknown {"text": "Muy buen servicio", "author": "pedro Nuñez gracia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cU0zWGRREAE", "timestamp": "a year ago"} Muy buen servicio 5 2025-01-25 01:27:48.343117+00 pedro Nuñez gracia \N 1 2026-01-29 04:35:09.605689+00 2026-01-25 01:27:52.243396+00 1282 \N google ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE unknown {"text": "жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую)", "author": "Larisa Belkina (belsbox)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE", "timestamp": "6 years ago"} жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую) 5 2020-01-31 18:34:31.336452+00 Larisa Belkina (belsbox) \N 1 2026-01-29 18:36:00.673881+00 2026-01-29 18:36:00.673881+00 1283 \N google ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE unknown {"text": "Очень классная клуб 💃", "author": "Doniyor Rahimov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE", "timestamp": "a year ago"} Очень классная клуб 💃 5 2025-01-29 18:34:31.336452+00 Doniyor Rahimov \N 1 2026-01-29 18:36:00.675266+00 2026-01-29 18:36:00.675266+00 1284 \N google ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE unknown {"text": "Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat.", "author": "Jarek Kotek", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE", "timestamp": "2 years ago"} Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat. 5 2024-01-30 18:34:31.336452+00 Jarek Kotek \N 1 2026-01-29 18:36:00.676676+00 2026-01-29 18:36:00.676676+00 1285 \N google Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB unknown {"text": "Pati geriausia Miglė", "author": "Mantas Kybartas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB", "timestamp": "Edited 4 weeks ago"} Pati geriausia Miglė 5 2026-01-29 18:34:31.336452+00 Mantas Kybartas \N 1 2026-01-29 18:36:00.678703+00 2026-01-29 18:36:00.678703+00 1286 \N google ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB unknown {"text": "visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻", "author": "Augustė D. K.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB", "timestamp": "2 years ago"} visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻 5 2024-01-30 18:34:31.336452+00 Augustė D. K. \N 1 2026-01-29 18:36:00.680496+00 2026-01-29 18:36:00.680496+00 1287 \N google ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE unknown {"text": "Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi!", "author": "Osvaldas Gavelis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE", "timestamp": "2 years ago"} Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi! 5 2024-01-30 18:34:31.336452+00 Osvaldas Gavelis \N 1 2026-01-29 18:36:00.682025+00 2026-01-29 18:36:00.682025+00 371 \N google Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB unknown {"text": "Nous avons payé 300 € pour 9 jours.\\nEt 60 € de carburant et 5 € de lavage.\\nC'est ce que nous avons payé.\\nQuand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 jours", "author": "francois francois", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB", "timestamp": "2 months ago"} Nous avons payé 300 € pour 9 jours.\nEt 60 € de carburant et 5 € de lavage.\nC'est ce que nous avons payé.\nQuand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 jours 1 2025-11-26 01:27:48.341508+00 francois francois \N 1 2026-01-29 04:35:08.501827+00 2026-01-25 01:27:51.13623+00 373 \N google Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB unknown {"text": "Questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione. Assolutamente senza complicazioni e senza problemi. Alla mia prossima visita a Gran Canaria, noleggerò di nuovo solo da clickrent. Un grande ringraziamento al personale molto cordiale.. grazie per tutto;)", "author": "Lars Häusermann", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB", "timestamp": "5 months ago"} Questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione. Assolutamente senza complicazioni e senza problemi. Alla mia prossima visita a Gran Canaria, noleggerò di nuovo solo da clickrent. Un grande ringraziamento al personale molto cordiale.. grazie per tutto;) 5 2025-08-28 01:27:48.341517+00 Lars Häusermann \N 1 2026-01-29 04:35:08.51216+00 2026-01-25 01:27:51.147915+00 374 \N google ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB unknown {"text": "Muy buena experiencia y servicio por parte de Juan Manuel y Néstor. Proceso rápido, sencillo y transparente. El coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito. Sin lugar a duda volveremos a repetir con ellos!", "author": "Sara Iglesias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB", "timestamp": "11 months ago"} Muy buena experiencia y servicio por parte de Juan Manuel y Néstor. Proceso rápido, sencillo y transparente. El coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito. Sin lugar a duda volveremos a repetir con ellos! 5 2025-03-01 01:27:48.341519+00 Sara Iglesias \N 1 2026-01-29 04:35:08.516709+00 2026-01-25 01:27:51.151425+00 375 \N google Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB unknown {"text": "Super Mietwagen Station zu sehr fairen Preisen. Die Station liegt außerhalb des Flughafens aber mit dem Shuttlebus kein Problem und nur wenige Minuten bis dort hin. Personal freundlich und alles digital. HINWEIS: der Shuttlebus holt einen auf der Abflugebene gegenüber Ausgang 2 ab NICHT gegenüber der unteren Ankunftsebene wo die ganzen Busse stehen!\\n\\nFazit: echte Empfehlung!", "author": "Chris Toph", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB", "timestamp": "4 months ago"} Super Mietwagen Station zu sehr fairen Preisen. Die Station liegt außerhalb des Flughafens aber mit dem Shuttlebus kein Problem und nur wenige Minuten bis dort hin. Personal freundlich und alles digital. HINWEIS: der Shuttlebus holt einen auf der Abflugebene gegenüber Ausgang 2 ab NICHT gegenüber der unteren Ankunftsebene wo die ganzen Busse stehen!\n\nFazit: echte Empfehlung! 5 2025-09-27 01:27:48.341521+00 Chris Toph \N 1 2026-01-29 04:35:08.522795+00 2026-01-25 01:27:51.154211+00 499 \N google ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB unknown {"text": "Hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive. Orario di apertura ore 8 ma se hai l'aereo presto aiuto!\\nAll'andata la navetta inesiste", "author": "Alessandra Z.", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB", "timestamp": "a year ago"} Hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive. Orario di apertura ore 8 ma se hai l'aereo presto aiuto!\nAll'andata la navetta inesiste 2 2025-01-25 01:27:48.342258+00 Alessandra Z. \N 1 2026-01-29 04:35:09.041139+00 2026-01-25 01:27:51.631563+00 1288 \N google ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB unknown {"text": "Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kolektyvas!!!", "author": "Dovydas Auškalnis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB", "timestamp": "6 years ago"} Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kolektyvas!!! 5 2020-01-31 18:34:31.336452+00 Dovydas Auškalnis \N 1 2026-01-29 18:36:00.683807+00 2026-01-29 18:36:00.683807+00 1289 \N google ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB unknown {"text": "Klubas fainas😊\\nBet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės", "author": "Emilija Zenovic", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB", "timestamp": "3 years ago"} Klubas fainas😊\nBet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės 3 2023-01-30 18:34:31.336452+00 Emilija Zenovic \N 1 2026-01-29 18:36:00.685269+00 2026-01-29 18:36:00.685269+00 377 \N google Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB unknown {"text": "Es gut alles gut funktioniert. Auch der transfer. Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map. Kaution wurde schnell zurück überwiesen.", "author": "Karin L.", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB", "timestamp": "a month ago"} Es gut alles gut funktioniert. Auch der transfer. Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map. Kaution wurde schnell zurück überwiesen. 4 2025-12-26 01:27:48.341525+00 Karin L. \N 1 2026-01-29 04:35:08.53383+00 2026-01-25 01:27:51.161767+00 378 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB unknown {"text": "Si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. Meten miedo para que contrates el seguro a todo riesgo.\\nPague un VW Tiguan y me dieron un Kia Stonic, decían que era la misma gama...\\nTienes que perder 30 minutos entre que te llevan al coche y lo recoges, cosa que no pasa con las otras compañías.\\nNo me dijeron a que hora tenia que devolver el coche. Según ellos, me retrasé 30 minutos y me han cobrado 40e de penalización.\\nEspero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas cosas.", "author": "Mario Fdez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB", "timestamp": "5 months ago"} Si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. Meten miedo para que contrates el seguro a todo riesgo.\nPague un VW Tiguan y me dieron un Kia Stonic, decían que era la misma gama...\nTienes que perder 30 minutos entre que te llevan al coche y lo recoges, cosa que no pasa con las otras compañías.\nNo me dijeron a que hora tenia que devolver el coche. Según ellos, me retrasé 30 minutos y me han cobrado 40e de penalización.\nEspero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas cosas. 1 2025-08-28 01:27:48.341527+00 Mario Fdez \N 1 2026-01-29 04:35:08.541319+00 2026-01-25 01:27:51.166662+00 379 \N google Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB unknown {"text": "Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. Nem fogom többet öket választani.", "author": "Dávid Kuhl", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB", "timestamp": "4 weeks ago"} Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. Nem fogom többet öket választani. 1 2025-12-28 01:27:48.34153+00 Dávid Kuhl \N 1 2026-01-29 04:35:08.545027+00 2026-01-25 01:27:51.168752+00 380 \N google ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE unknown {"text": "Super freundlich, Autos im tollen Zustand und unkomplizierter Ablauf. Ein Punkt Abzug, weil man sie leider am Flughafen gar nicht finden konnte und die Kommunikation nur mittels eines Einheimischen per Telefon geklappt hat. Dann wurden wir von dem Shuttle nach ungefähr 30 min erst iwo am Straßenrand eingesammelt. Man könnte einfach kleine Schilder aufhängen oder jemanden am Flughafen positionieren um dies zu erleichtern. Nach einer langen Anreise war das wirklich nicht toll. Ansonsten waren wir mit dem Service vor Ort und dem Auto zufrieden", "author": "Lara Töpel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE", "timestamp": "a year ago"} Super freundlich, Autos im tollen Zustand und unkomplizierter Ablauf. Ein Punkt Abzug, weil man sie leider am Flughafen gar nicht finden konnte und die Kommunikation nur mittels eines Einheimischen per Telefon geklappt hat. Dann wurden wir von dem Shuttle nach ungefähr 30 min erst iwo am Straßenrand eingesammelt. Man könnte einfach kleine Schilder aufhängen oder jemanden am Flughafen positionieren um dies zu erleichtern. Nach einer langen Anreise war das wirklich nicht toll. Ansonsten waren wir mit dem Service vor Ort und dem Auto zufrieden 4 2025-01-25 01:27:48.341532+00 Lara Töpel \N 1 2026-01-29 04:35:08.548446+00 2026-01-25 01:27:51.170722+00 381 \N google Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB unknown {"text": "Guter Service, die vor Ort abgeschlossene Versicherung für 189€ lohnt sich. Das Auto wird bei Abgabe nicht mal angeschaut. Abholung & Rückgabe schnell & easy. Vorher checken ob man eine Versicherung bspw über Check 24 o.ä. schon abgeschlossen hat, wobei man es im Schadensfall leichter hat, wenn man die Versicherung dort abschließt.", "author": "Mario Massa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB", "timestamp": "5 months ago"} Guter Service, die vor Ort abgeschlossene Versicherung für 189€ lohnt sich. Das Auto wird bei Abgabe nicht mal angeschaut. Abholung & Rückgabe schnell & easy. Vorher checken ob man eine Versicherung bspw über Check 24 o.ä. schon abgeschlossen hat, wobei man es im Schadensfall leichter hat, wenn man die Versicherung dort abschließt. 5 2025-08-28 01:27:48.341534+00 Mario Massa \N 1 2026-01-29 04:35:08.556277+00 2026-01-25 01:27:51.172714+00 556 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCelpsRjZNR1IzY21zMWJtOWlVbU5zY1dsMlpuYxAB unknown {"text": "Presentar una reclamación en las oficinas de protección al consumidor en España y en Bruselas. Esto funciona.", "author": "Damaso Garcia", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCelpsRjZNR1IzY21zMWJtOWlVbU5zY1dsMlpuYxAB", "timestamp": "4 months ago"} Presentar una reclamación en las oficinas de protección al consumidor en España y en Bruselas. Esto funciona. 1 2025-09-27 01:27:48.342528+00 Damaso Garcia \N 1 2026-01-29 04:35:09.223199+00 2026-01-25 01:27:51.836932+00 1290 \N google ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB unknown {"text": "Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt", "author": "Andrejus Tiskevicius", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB", "timestamp": "6 years ago"} Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt 5 2020-01-31 18:34:31.336452+00 Andrejus Tiskevicius \N 1 2026-01-29 18:36:00.688204+00 2026-01-29 18:36:00.688204+00 1291 \N google ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB unknown {"text": "Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!!", "author": "Joana Šliažaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB", "timestamp": "a year ago"} Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!! 5 2025-01-29 18:34:31.336452+00 Joana Šliažaitė \N 1 2026-01-29 18:36:00.689881+00 2026-01-29 18:36:00.689881+00 383 \N google ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE unknown {"text": "El coche sin ningún problema todo muy bien el señor trato de ayudarme tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido en la renta y seguro una señora se introdujo en la conversación diciendo que no que era imposible que la política de la compañía no permitía", "author": "Víctor Guzman", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE", "timestamp": "7 months ago"} El coche sin ningún problema todo muy bien el señor trato de ayudarme tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido en la renta y seguro una señora se introdujo en la conversación diciendo que no que era imposible que la política de la compañía no permitía 3 2025-06-29 01:27:48.341542+00 Víctor Guzman \N 1 2026-01-29 04:35:08.566781+00 2026-01-25 01:27:51.180708+00 384 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB unknown {"text": "Achtung! Habe 95 € umsonst bezahlt. Die Firma hat kein Büro am Flughafen. Man wird darauf hingewiesen, dass ein Shuttlebus am Parkplatz stehen soll – aber dort ist nichts zu finden. Telefonisch ist niemand erreichbar. Sehr unseriös, gehört dringend gemeldet!", "author": "Kreuzmann", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB", "timestamp": "4 months ago"} Achtung! Habe 95 € umsonst bezahlt. Die Firma hat kein Büro am Flughafen. Man wird darauf hingewiesen, dass ein Shuttlebus am Parkplatz stehen soll – aber dort ist nichts zu finden. Telefonisch ist niemand erreichbar. Sehr unseriös, gehört dringend gemeldet! 1 2025-09-27 01:27:48.341549+00 Kreuzmann \N 1 2026-01-29 04:35:08.570965+00 2026-01-25 01:27:51.18355+00 385 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB unknown {"text": "Nos dieron un Fiat 500 que estaba en perfectas condiciones. Lo cogimos a todo riesgo y no hemos tenido ningún problema con el vehículo. El personal fue muy amable con nosotros.", "author": "Aitana González", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB", "timestamp": "5 months ago"} Nos dieron un Fiat 500 que estaba en perfectas condiciones. Lo cogimos a todo riesgo y no hemos tenido ningún problema con el vehículo. El personal fue muy amable con nosotros. 5 2025-08-28 01:27:48.341556+00 Aitana González \N 1 2026-01-29 04:35:08.574564+00 2026-01-25 01:27:51.18574+00 386 \N google Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB unknown {"text": "War sehr gutes Erlebnis mit der Autovermietung. Als junger Fahrer mit weniger als 3 Jahre Führerschein wird nochmals eine Gebühr von 120€ erhoben oder man nimmt die volle Versicherung für 220€ wo alles inklusive ist. (Preis für 7 Tage Mietdauer)", "author": "Florian Hofbauer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB", "timestamp": "5 months ago"} War sehr gutes Erlebnis mit der Autovermietung. Als junger Fahrer mit weniger als 3 Jahre Führerschein wird nochmals eine Gebühr von 120€ erhoben oder man nimmt die volle Versicherung für 220€ wo alles inklusive ist. (Preis für 7 Tage Mietdauer) 5 2025-08-28 01:27:48.341563+00 Florian Hofbauer \N 1 2026-01-29 04:35:08.577015+00 2026-01-25 01:27:51.187946+00 387 \N google Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB unknown {"text": "Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!!\\nEs werden nur von einer Bank ausgegebene Kreditkarten akzeptiert (keine Debitkarte oder american express) ansonsten bekommt man kein Fahrzeug gemietet\\nWenn man dies beachtet ist alles sehr easy", "author": "Alexander John", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB", "timestamp": "a month ago"} Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!!\nEs werden nur von einer Bank ausgegebene Kreditkarten akzeptiert (keine Debitkarte oder american express) ansonsten bekommt man kein Fahrzeug gemietet\nWenn man dies beachtet ist alles sehr easy 5 2025-12-26 01:27:48.341569+00 Alexander John \N 1 2026-01-29 04:35:08.580506+00 2026-01-25 01:27:51.191791+00 388 \N google Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB unknown {"text": "Tutto molto bene. Unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di Gran Canaria. Dovreste sempre specificare di recarsi alla porta 2 delle “salidas “", "author": "Alessandro Rolla", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB", "timestamp": "5 months ago"} Tutto molto bene. Unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di Gran Canaria. Dovreste sempre specificare di recarsi alla porta 2 delle “salidas “ 4 2025-08-28 01:27:48.341579+00 Alessandro Rolla \N 1 2026-01-29 04:35:08.582593+00 2026-01-25 01:27:51.19634+00 389 \N google ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB unknown {"text": "Fatal experiencia. Por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hicieron un examen microscópico digno de investigación CSI de todo el coche hasta que encontraron dos pequeños daños, uno pude demostrar en el momento que no me correspondía por fotos que hice previamente. El otro en el momento no pude por las prisas por no perder mi vuelo; un punto en la luna por el que me cargaron 800€. Luego he contactado nuevamente mostrando evidencia de este daño en las fotos que hice al recoger el vehículo pero no responden.\\nSolo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tienen son falsas reviews positivas (es fácil hacerlo..pregunta a alguien que trabaje en Marketing). Viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. Si no añades el seguro opcional que ellos te venden te querrán hacer pagar por daños que no te corresponden.", "author": "Alejandro San Martín", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB", "timestamp": "Edited a year ago"} Fatal experiencia. Por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hicieron un examen microscópico digno de investigación CSI de todo el coche hasta que encontraron dos pequeños daños, uno pude demostrar en el momento que no me correspondía por fotos que hice previamente. El otro en el momento no pude por las prisas por no perder mi vuelo; un punto en la luna por el que me cargaron 800€. Luego he contactado nuevamente mostrando evidencia de este daño en las fotos que hice al recoger el vehículo pero no responden.\nSolo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tienen son falsas reviews positivas (es fácil hacerlo..pregunta a alguien que trabaje en Marketing). Viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. Si no añades el seguro opcional que ellos te venden te querrán hacer pagar por daños que no te corresponden. 1 2026-01-25 01:27:48.341586+00 Alejandro San Martín \N 1 2026-01-29 04:35:08.586751+00 2026-01-25 01:27:51.201875+00 611 \N google ChZDSUhNMG9nS0VJQ0FnSURIX3UyX2J3EAE unknown {"text": "Trato genial! Carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en la isla", "author": "Jose Agudo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIX3UyX2J3EAE", "timestamp": "a year ago"} Trato genial! Carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en la isla 5 2025-01-25 01:27:48.342824+00 Jose Agudo \N 1 2026-01-29 04:35:09.409515+00 2026-01-25 01:27:52.036952+00 1292 \N google Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB unknown {"text": "Poprawne.", "author": "Artur Michał", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB", "timestamp": "7 months ago"} Poprawne. 4 2025-07-03 18:34:31.336452+00 Artur Michał \N 1 2026-01-29 18:36:00.691058+00 2026-01-29 18:36:00.691058+00 1293 \N google ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE unknown {"text": "Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius.", "author": "Laurynas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE", "timestamp": "6 years ago"} Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius. 5 2020-01-31 18:34:31.336452+00 Laurynas \N 1 2026-01-29 18:36:00.693335+00 2026-01-29 18:36:00.693335+00 391 \N google ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE unknown {"text": "Hemos realizado una reservación a través del booking en Polonia, donde al llegar a Gran Canaria nos han dado otra información de costes , pero al conocer bastante bien el idioma en la oficina nos han ayudado muchisimo por lo que estamos muy agradecidos a Sñra Carmen, ojalá mas personas que le den su corazón al trabajo❤️👏🏼\\nMuy contentos con el coche, con la ruta que hemos conseguido hacer en una semana.\\nPozdrawiamy z Gołdapi 🫶🏼", "author": "Nikola Nikola", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE", "timestamp": "a year ago"} Hemos realizado una reservación a través del booking en Polonia, donde al llegar a Gran Canaria nos han dado otra información de costes , pero al conocer bastante bien el idioma en la oficina nos han ayudado muchisimo por lo que estamos muy agradecidos a Sñra Carmen, ojalá mas personas que le den su corazón al trabajo❤️👏🏼\nMuy contentos con el coche, con la ruta que hemos conseguido hacer en una semana.\nPozdrawiamy z Gołdapi 🫶🏼 5 2025-01-25 01:27:48.341635+00 Nikola Nikola \N 1 2026-01-29 04:35:08.594256+00 2026-01-25 01:27:51.215695+00 392 \N google Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB unknown {"text": "Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11.", "author": "maria Viñolas Salustiano", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB", "timestamp": "2 months ago"} Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11. 1 2025-11-26 01:27:48.341642+00 maria Viñolas Salustiano \N 1 2026-01-29 04:35:08.597152+00 2026-01-25 01:27:51.219713+00 393 \N google Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB unknown {"text": "Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwertiges Fahrzeug, sehr sauber, Prozesse sehr gut und bestens organisiert, gerne wieder ;-)", "author": "Kurt Bimsberger", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB", "timestamp": "2 months ago"} Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwertiges Fahrzeug, sehr sauber, Prozesse sehr gut und bestens organisiert, gerne wieder ;-) 5 2025-11-26 01:27:48.341651+00 Kurt Bimsberger \N 1 2026-01-29 04:35:08.599843+00 2026-01-25 01:27:51.221607+00 394 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB unknown {"text": "Somos clientes desde hace años, deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche.", "author": "Michel Berni", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB", "timestamp": "3 weeks ago"} Somos clientes desde hace años, deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche. 3 2026-01-04 01:27:48.341659+00 Michel Berni \N 1 2026-01-29 04:35:08.602417+00 2026-01-25 01:27:51.224855+00 395 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB unknown {"text": "Es nefasto el servicio de esta empresa. Me cargaron a mi tarjeta 50 € por una “gestión administrativa” de una supuesta multa que todavía no ha llegado a mi casa. Encima el coche que me dieron no le andaba el GPS ( osea un coche de gama media alta que no le ande el gps RARO). No se podía ver los avisos de radares , señales de tráfico ni nada\\n\\nY a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos no abren hasta las 8. Te dicen ellos mismos que lo dejes en tal parking claramente las tienen a todas pensada para robar dinero.\\n\\nCon total confianza te dicen“ no hace falta que le saques fotos, nosotros ya las tenemos” obvio le saqué igualmente!\\nPorque buscan cada punto débil del cliente para cobrar extras. No volvería a alquilar con ellos y no los recomiendo", "author": "Támara Yamila Torres", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB", "timestamp": "6 months ago"} Es nefasto el servicio de esta empresa. Me cargaron a mi tarjeta 50 € por una “gestión administrativa” de una supuesta multa que todavía no ha llegado a mi casa. Encima el coche que me dieron no le andaba el GPS ( osea un coche de gama media alta que no le ande el gps RARO). No se podía ver los avisos de radares , señales de tráfico ni nada\n\nY a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos no abren hasta las 8. Te dicen ellos mismos que lo dejes en tal parking claramente las tienen a todas pensada para robar dinero.\n\nCon total confianza te dicen“ no hace falta que le saques fotos, nosotros ya las tenemos” obvio le saqué igualmente!\nPorque buscan cada punto débil del cliente para cobrar extras. No volvería a alquilar con ellos y no los recomiendo 1 2025-07-29 01:27:48.341667+00 Támara Yamila Torres \N 1 2026-01-29 04:35:08.605568+00 2026-01-25 01:27:51.233055+00 396 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB unknown {"text": "Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleicht verbessert werden. Ansonsten perfekt!", "author": "Heike Franke", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB", "timestamp": "4 weeks ago"} Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleicht verbessert werden. Ansonsten perfekt! 5 2025-12-28 01:27:48.34167+00 Heike Franke \N 1 2026-01-29 04:35:08.607624+00 2026-01-25 01:27:51.237051+00 397 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB unknown {"text": "Impuestos inventados para sacarte el dinero.\\n96e más tuve que pagar por el combustible.. Era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito.\\n55e más por entregar el coche fuera de horario laboral.\\n\\nUn robo", "author": "Marcos Cabrera", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB", "timestamp": "3 weeks ago"} Impuestos inventados para sacarte el dinero.\n96e más tuve que pagar por el combustible.. Era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito.\n55e más por entregar el coche fuera de horario laboral.\n\nUn robo 1 2026-01-04 01:27:48.341672+00 Marcos Cabrera \N 1 2026-01-29 04:35:08.610115+00 2026-01-25 01:27:51.240249+00 612 \N google ChZDSUhNMG9nS0VJQ0FnSUM3X2NQY01BEAE unknown {"text": "Están empezando, coches super nuevos y más amables no pueden ser. Todo facilidades. Muy recomendable.", "author": "olga reb", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3X2NQY01BEAE", "timestamp": "a year ago"} Están empezando, coches super nuevos y más amables no pueden ser. Todo facilidades. Muy recomendable. 5 2025-01-25 01:27:48.34283+00 olga reb \N 1 2026-01-29 04:35:09.411785+00 2026-01-25 01:27:52.039466+00 1294 \N google ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB unknown {"text": "No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy bien!", "author": "Juan Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB", "timestamp": "6 years ago"} No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy bien! 5 2020-01-31 18:34:31.336452+00 Juan Lopez \N 1 2026-01-29 18:36:00.695298+00 2026-01-29 18:36:00.695298+00 1295 \N google ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE unknown {"text": "Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋", "author": "Agne Paliukaityte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE", "timestamp": "2 years ago"} Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋 5 2024-01-30 18:34:31.336452+00 Agne Paliukaityte \N 1 2026-01-29 18:36:00.699538+00 2026-01-29 18:36:00.699538+00 1296 \N google ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE unknown {"text": "Отличная музыка, много посетителей, небольшой минус за интерьер", "author": "Alex SkroBot", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE", "timestamp": "11 years ago"} Отличная музыка, много посетителей, небольшой минус за интерьер 4 2015-02-01 18:34:31.336452+00 Alex SkroBot \N 1 2026-01-29 18:36:00.701372+00 2026-01-29 18:36:00.701372+00 1297 \N google ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE unknown {"text": "Fainas klubas, draugiška atmosfera, rekomenduoju", "author": "Haroldas Daunora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE", "timestamp": "5 years ago"} Fainas klubas, draugiška atmosfera, rekomenduoju 5 2021-01-30 18:34:31.336452+00 Haroldas Daunora \N 1 2026-01-29 18:36:00.703457+00 2026-01-29 18:36:00.703457+00 1298 \N google ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB unknown {"text": "Muy bien. Felicidades", "author": "Ivan M. C. 2", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB", "timestamp": "11 months ago"} Muy bien. Felicidades 5 2025-03-05 18:34:31.336452+00 Ivan M. C. 2 \N 1 2026-01-29 18:36:00.704854+00 2026-01-29 18:36:00.704854+00 1299 \N google ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE unknown {"text": "geriausias klubas Vilniuje", "author": "Šarūnė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE", "timestamp": "a year ago"} geriausias klubas Vilniuje 5 2025-01-29 18:34:31.336452+00 Šarūnė \N 1 2026-01-29 18:36:00.705975+00 2026-01-29 18:36:00.705975+00 399 \N google Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB unknown {"text": "Hat alles super geklappt, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten wo genau sie einen abholen vom Flughafen.. aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :)", "author": "Miriam Lisa Füssl", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB", "timestamp": "4 months ago"} Hat alles super geklappt, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten wo genau sie einen abholen vom Flughafen.. aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :) 5 2025-09-27 01:27:48.341676+00 Miriam Lisa Füssl \N 1 2026-01-29 04:35:08.616618+00 2026-01-25 01:27:51.249728+00 401 \N google Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB unknown {"text": "CONDUCTAS MAFIOSAS\\nAlquile un coche con ellos atraves de Booking con el seguro extra que ofrece Booking (155€)\\nCuando fui a recogerlo era un coche muy inferior al que yo reserve, pero aparentemente estaba bien de carroceria, el chico que me atendio, me reprocho que contratase el seguro con Booking e intento venderme un seguro extra (200€+) recalcando que solo así estaríamos cubiertos completamente, no lo entendí y le dije que no;\\nEl viaje fue muy bien y por fortuna no tuvimos ningún incidente ni accidente con el vehículo.\\nA la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y me llama y me dice que tiene unos arañazos, le digo que yo no he podido ser y me dice que si tengo fotos. Le digo que no vi necesario tirarme al suelo para hacer fotos y me dice que ellos me enviaron al mail con los no daños del vehiculos (una ficha con dibujo de lapiz...).\\nMe ha retenido 380€ del deposito y las dos señoras que estaban nos trataron fatal,.\\nPor último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiendo que teníamos que coger un vuelo); En GC estas obligado a rellenar la H Reclamaciones in situ (lo confirme llamando a la Policía local) lo que es absurdo porque con los nervios y la presion del vuelo no te deja pensar con claridad, pero aún así lo hice, y tengo claro que no voy a para de poner reclamaciones en todo sitio donde proceda.\\n\\nEn general después de estar mas de 1 hora alli este es como parecen que operan:\\nA la gente la coaccionan para pagar un seguro abusivo que no existe\\nAl que no lo paga, le hacen pagar por los daños que los primeros que los primeros hicieron\\nNo alquiles coche con ellos SON MAFIAS", "author": "v p", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB", "timestamp": "5 months ago"} CONDUCTAS MAFIOSAS\nAlquile un coche con ellos atraves de Booking con el seguro extra que ofrece Booking (155€)\nCuando fui a recogerlo era un coche muy inferior al que yo reserve, pero aparentemente estaba bien de carroceria, el chico que me atendio, me reprocho que contratase el seguro con Booking e intento venderme un seguro extra (200€+) recalcando que solo así estaríamos cubiertos completamente, no lo entendí y le dije que no;\nEl viaje fue muy bien y por fortuna no tuvimos ningún incidente ni accidente con el vehículo.\nA la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y me llama y me dice que tiene unos arañazos, le digo que yo no he podido ser y me dice que si tengo fotos. Le digo que no vi necesario tirarme al suelo para hacer fotos y me dice que ellos me enviaron al mail con los no daños del vehiculos (una ficha con dibujo de lapiz...).\nMe ha retenido 380€ del deposito y las dos señoras que estaban nos trataron fatal,.\nPor último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiendo que teníamos que coger un vuelo); En GC estas obligado a rellenar la H Reclamaciones in situ (lo confirme llamando a la Policía local) lo que es absurdo porque con los nervios y la presion del vuelo no te deja pensar con claridad, pero aún así lo hice, y tengo claro que no voy a para de poner reclamaciones en todo sitio donde proceda.\n\nEn general después de estar mas de 1 hora alli este es como parecen que operan:\nA la gente la coaccionan para pagar un seguro abusivo que no existe\nAl que no lo paga, le hacen pagar por los daños que los primeros que los primeros hicieron\nNo alquiles coche con ellos SON MAFIAS 1 2025-08-28 01:27:48.34168+00 v p \N 1 2026-01-29 04:35:08.626003+00 2026-01-25 01:27:51.257014+00 403 \N google ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB unknown {"text": "Parfait à tous les niveaux !\\nLocation à moindre coût, voiture impeccable et accueil au top. Tout s’est fait rapidement, sans mauvaise surprise. Une agence fiable et sympa, je recommande les yeux fermés !\\n\\nATTENTION : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne passez pas à côté, comme nous...... :)", "author": "Vic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB", "timestamp": "8 months ago"} Parfait à tous les niveaux !\nLocation à moindre coût, voiture impeccable et accueil au top. Tout s’est fait rapidement, sans mauvaise surprise. Une agence fiable et sympa, je recommande les yeux fermés !\n\nATTENTION : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne passez pas à côté, comme nous...... :) 5 2025-05-30 01:27:48.341714+00 Vic \N 1 2026-01-29 04:35:08.631381+00 2026-01-25 01:27:51.26698+00 1300 \N google ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB unknown {"text": "Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜", "author": "Vytenis Jomantas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB", "timestamp": "3 years ago"} Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜 5 2023-01-30 18:34:31.336452+00 Vytenis Jomantas \N 1 2026-01-29 18:36:00.707811+00 2026-01-29 18:36:00.707811+00 1301 \N google ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE unknown {"text": "самий сільський клуб у світі", "author": "Shiny Box", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE", "timestamp": "3 years ago"} самий сільський клуб у світі 1 2023-01-30 18:34:31.336452+00 Shiny Box \N 1 2026-01-29 18:36:00.708816+00 2026-01-29 18:36:00.708816+00 1302 \N google ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB unknown {"text": "Viskas ok", "author": "gintautas Gailius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB", "timestamp": "8 years ago"} Viskas ok 4 2018-01-31 18:34:31.336452+00 gintautas Gailius \N 1 2026-01-29 18:36:00.710639+00 2026-01-29 18:36:00.710639+00 1303 \N google ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE unknown {"text": "Muy chulo", "author": "Francisco Javier Cano Las", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE", "timestamp": "7 years ago"} Muy chulo 5 2019-01-31 18:34:31.336452+00 Francisco Javier Cano Las \N 1 2026-01-29 18:36:00.712613+00 2026-01-29 18:36:00.712613+00 1304 \N google ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE unknown {"text": "Really good club, de locos", "author": "Francisco Elvira Iglesias", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE", "timestamp": "3 years ago"} Really good club, de locos 5 2023-01-30 18:34:31.336452+00 Francisco Elvira Iglesias \N 1 2026-01-29 18:36:00.716676+00 2026-01-29 18:36:00.716676+00 1305 \N google ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB unknown {"text": "Gera mokykla", "author": "Benas Rukas", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB", "timestamp": "a year ago"} Gera mokykla 3 2025-01-29 18:34:31.336452+00 Benas Rukas \N 1 2026-01-29 18:36:00.718865+00 2026-01-29 18:36:00.718865+00 1306 \N google ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE unknown {"text": "Супер", "author": "Махир Мухаммад", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE", "timestamp": "2 years ago"} Супер 5 2024-01-30 18:34:31.336452+00 Махир Мухаммад \N 1 2026-01-29 18:36:00.720764+00 2026-01-29 18:36:00.720764+00 1307 \N google ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE unknown {"text": "Nieko gero..", "author": "new chere", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE", "timestamp": "4 years ago"} Nieko gero.. 1 2022-01-30 18:34:31.336452+00 new chere \N 1 2026-01-29 18:36:00.724476+00 2026-01-29 18:36:00.724476+00 1322 \N google Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB unknown {"text": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto, muy juen trazado, escapatorias perfectas, la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era muy agradable el tacto, pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto, un saludo para todos. Gracias.", "author": "Jose Luis Alvarez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB", "timestamp": "6 months ago"} Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto, muy juen trazado, escapatorias perfectas, la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era muy agradable el tacto, pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto, un saludo para todos. Gracias. 5 2025-08-03 00:52:39.833374+00 Jose Luis Alvarez \N 1 2026-01-30 09:54:06.648979+00 2026-01-30 02:01:08.961027+00 406 \N google Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB unknown {"text": "El coche estaba impecable, el trato del personal excelente. Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos.", "author": "Raquel Saavedra Benitez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB", "timestamp": "2 months ago"} El coche estaba impecable, el trato del personal excelente. Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos. 5 2025-11-26 01:27:48.341727+00 Raquel Saavedra Benitez \N 1 2026-01-29 04:35:08.648893+00 2026-01-25 01:27:51.279809+00 407 \N google ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB unknown {"text": "Esperienza molto negativa! Per raggiungere la sede è necessario prendere una navetta che ti preleva all'aeroporto ma questo passaggio non è chiaro quando si fa la prenotazione.\\nNoi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data una Kia Picanto merdosa che non riusciva a salire le strade manca poco. Oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e avevo preso anche un biglietto del traghetto specificando il modello che avevo prenotato: altra inculata di 110 euro di assicurazione di traghetto quando avevo già la casco (non c'era scritto da nessuna parte durante la prenotazione).\\nVeramente scorretti e poco chiari", "author": "Madda Fogliata", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB", "timestamp": "10 months ago"} Esperienza molto negativa! Per raggiungere la sede è necessario prendere una navetta che ti preleva all'aeroporto ma questo passaggio non è chiaro quando si fa la prenotazione.\nNoi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data una Kia Picanto merdosa che non riusciva a salire le strade manca poco. Oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e avevo preso anche un biglietto del traghetto specificando il modello che avevo prenotato: altra inculata di 110 euro di assicurazione di traghetto quando avevo già la casco (non c'era scritto da nessuna parte durante la prenotazione).\nVeramente scorretti e poco chiari 1 2025-03-31 01:27:48.341734+00 Madda Fogliata \N 1 2026-01-29 04:35:08.661351+00 2026-01-25 01:27:51.283282+00 408 \N google Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB unknown {"text": "Das Personal war sehr freundlich, aber abgezockt wird man trotzdem.Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !!", "author": "Wolfgang Stange", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB", "timestamp": "2 months ago"} Das Personal war sehr freundlich, aber abgezockt wird man trotzdem.Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !! 1 2025-11-26 01:27:48.341742+00 Wolfgang Stange \N 1 2026-01-29 04:35:08.671437+00 2026-01-25 01:27:51.28518+00 409 \N google Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB unknown {"text": "Wartezeit bis zum Mietvorgang hat gedauert (20 min. ) Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung.\\nGerne wieder", "author": "Frank M", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB", "timestamp": "a month ago"} Wartezeit bis zum Mietvorgang hat gedauert (20 min. ) Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung.\nGerne wieder 5 2025-12-26 01:27:48.341751+00 Frank M \N 1 2026-01-29 04:35:08.676781+00 2026-01-25 01:27:51.287194+00 410 \N google ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB unknown {"text": "Utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. Felvettek minket a reptéren. A találkozási ponthoz fel kell menni a 2. emeletre (Departures). A 2. kijáraton kimenni. Átmenni a gyalogátkelőn, a parkolóba, ott jobbra fordulni. Kb. 25 méterre van egy kis épület, az mellett kell várni. (Érdemes telefonálni)\\nAz autó átvétele gyorsan ment. Átvétel után gondosan lefényképeztünk minden sérülést az autón! Ez a leadásnál jól jött! Mivel a lökhárító alján volt egy kisebb horzsolás, ami nem szerepelt az autó sérülései között, de fényképpel tudtuk bizonyítani hogy az már ott volt.\\nAz autó egy szinte új Fiat 500 cabrio volt. 9800 km volt benne. Hibátlanul működött végig.\\nA személyzet rendkívül kedves volt. Az autó kiváló. A depositunkat azonnal felodották.\\nCsak ajánlani tudjuk a céget!!", "author": "Noémi Szabó", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB", "timestamp": "11 months ago"} Utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. Felvettek minket a reptéren. A találkozási ponthoz fel kell menni a 2. emeletre (Departures). A 2. kijáraton kimenni. Átmenni a gyalogátkelőn, a parkolóba, ott jobbra fordulni. Kb. 25 méterre van egy kis épület, az mellett kell várni. (Érdemes telefonálni)\nAz autó átvétele gyorsan ment. Átvétel után gondosan lefényképeztünk minden sérülést az autón! Ez a leadásnál jól jött! Mivel a lökhárító alján volt egy kisebb horzsolás, ami nem szerepelt az autó sérülései között, de fényképpel tudtuk bizonyítani hogy az már ott volt.\nAz autó egy szinte új Fiat 500 cabrio volt. 9800 km volt benne. Hibátlanul működött végig.\nA személyzet rendkívül kedves volt. Az autó kiváló. A depositunkat azonnal felodották.\nCsak ajánlani tudjuk a céget!! 5 2025-03-01 01:27:48.341755+00 Noémi Szabó \N 1 2026-01-29 04:35:08.684603+00 2026-01-25 01:27:51.290341+00 613 \N google ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE unknown {"text": "Servicio de 10. Vehículo nuevo y precio súper competitivo. Personal muy amable y atento. Repetiremos.", "author": "Alicia Latorre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE", "timestamp": "a year ago"} Servicio de 10. Vehículo nuevo y precio súper competitivo. Personal muy amable y atento. Repetiremos. 5 2025-01-25 01:27:48.342839+00 Alicia Latorre \N 1 2026-01-29 04:35:09.415287+00 2026-01-25 01:27:52.042821+00 1309 \N google ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB unknown {"text": "Fabulous. Friendly helpful service guiding autistic son to complete a first solo drive. They were patient and kind and he absolutely loved it. So much so we went back a week later. Timing was excellent as we had the course to ourselves, which helped!", "author": "Jan Hodgson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB", "timestamp": "9 months ago"} Fabulous. Friendly helpful service guiding autistic son to complete a first solo drive. They were patient and kind and he absolutely loved it. So much so we went back a week later. Timing was excellent as we had the course to ourselves, which helped! 5 2025-05-05 00:52:39.833374+00 Jan Hodgson \N 1 2026-01-30 09:54:06.608459+00 2026-01-30 02:01:08.916155+00 1358 \N google ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE unknown {"text": "nice venue. good track. friendly people and they speak english really had agood day", "author": "sven van raemdonck", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE", "timestamp": "4 years ago"} nice venue. good track. friendly people and they speak english really had agood day 5 2022-01-31 01:52:39.833374+00 sven van raemdonck \N 1 2026-01-30 09:54:06.758923+00 2026-01-30 02:01:09.095578+00 412 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB unknown {"text": "El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa”", "author": "Jazmin Be", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB", "timestamp": "a month ago"} El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa” 3 2025-12-26 01:27:48.341759+00 Jazmin Be \N 1 2026-01-29 04:35:08.710508+00 2026-01-25 01:27:51.300692+00 413 \N google ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB unknown {"text": "Esperienza negativa!sconsigliato!siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e siccome gli uffici distano 2,5 km e sono in mezzo al nulla abbiamo dovuto trovare un taxi che ci portasse. Una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore. Morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. Inoltre maleducati e da quello che leggo neanche troppo onesti!da evitare!", "author": "Annabella Castelli", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB", "timestamp": "9 months ago"} Esperienza negativa!sconsigliato!siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e siccome gli uffici distano 2,5 km e sono in mezzo al nulla abbiamo dovuto trovare un taxi che ci portasse. Una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore. Morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. Inoltre maleducati e da quello che leggo neanche troppo onesti!da evitare! 1 2025-04-30 01:27:48.341761+00 Annabella Castelli \N 1 2026-01-29 04:35:08.714579+00 2026-01-25 01:27:51.303136+00 414 \N google Ci9DQUlRQUNvZENodHljRjlvT25oMk9VbzFlVXBsVG10MGNYVkJYek5vYkRrelEyYxAB unknown {"text": "El trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!! Gracias 😊", "author": "antonio jose rivero marquez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oMk9VbzFlVXBsVG10MGNYVkJYek5vYkRrelEyYxAB", "timestamp": "4 months ago"} El trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!! Gracias 😊 5 2025-09-27 01:27:48.341763+00 antonio jose rivero marquez \N 1 2026-01-29 04:35:08.718736+00 2026-01-25 01:27:51.305042+00 416 \N google Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB unknown {"text": "pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más, seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto", "author": "chiarita reyes", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB", "timestamp": "2 months ago"} pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más, seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto 1 2025-11-26 01:27:48.341767+00 chiarita reyes \N 1 2026-01-29 04:35:08.724655+00 2026-01-25 01:27:51.312648+00 425 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB unknown {"text": "De vergüenza. Teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y nos dijeron que teníamos que aparcar en otro sitio, nos cobraron 55€, cuando el precio normal según la encargada del parking era de 16€. No vuelvo a alquilar un coche aquí.", "author": "tomasadrian perez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB", "timestamp": "6 months ago"} De vergüenza. Teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y nos dijeron que teníamos que aparcar en otro sitio, nos cobraron 55€, cuando el precio normal según la encargada del parking era de 16€. No vuelvo a alquilar un coche aquí. 1 2025-07-29 01:27:48.341839+00 tomasadrian perez \N 1 2026-01-29 04:35:08.761604+00 2026-01-25 01:27:51.340562+00 1324 \N google ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB unknown {"text": "Hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable.\\nLas medidas higiene son visibles en todo momento. Cuando la gente deja los cascos le aplican un spray para la desinfección. Las mesas de la terraza son limpiadas en el momento que se dejan libres.\\nLa gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.\\nEl circuito y los coches estupendos.\\nSin duda volveremos a celebrar algún otro evento con ellos.", "author": "Juan Antonio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB", "timestamp": "4 years ago"} Hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable.\nLas medidas higiene son visibles en todo momento. Cuando la gente deja los cascos le aplican un spray para la desinfección. Las mesas de la terraza son limpiadas en el momento que se dejan libres.\nLa gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.\nEl circuito y los coches estupendos.\nSin duda volveremos a celebrar algún otro evento con ellos. 5 2022-01-31 01:52:39.833374+00 Juan Antonio \N 1 2026-01-30 09:54:06.655429+00 2026-01-30 02:01:08.96905+00 418 \N google ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE unknown {"text": "Absolut Finger weg. Ja, es ist super günstig, aber man hat nur Ärger. Kein Shuttle am Flughafen vorhanden, hatten uns nach 20 min schon ein Taxi organisiert. Die angegebene Telefonnummer ist nur ein Servicecenter landesweit und es gab nur automatische Ansagen!\\nBei der Rückgabe nur Ärger. Man wollte uns anhängen, dass unter der Stossstange Kratzer wären. Wir hatten Fotos gemacht und haben rumdiskutiert ohne Ende. Sehr unfreundliches Personal. Da hilft absolut kein günstiger Preis. Es gibt viele andere Anbieter in der Nähe", "author": "S. K.", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE", "timestamp": "8 months ago"} Absolut Finger weg. Ja, es ist super günstig, aber man hat nur Ärger. Kein Shuttle am Flughafen vorhanden, hatten uns nach 20 min schon ein Taxi organisiert. Die angegebene Telefonnummer ist nur ein Servicecenter landesweit und es gab nur automatische Ansagen!\nBei der Rückgabe nur Ärger. Man wollte uns anhängen, dass unter der Stossstange Kratzer wären. Wir hatten Fotos gemacht und haben rumdiskutiert ohne Ende. Sehr unfreundliches Personal. Da hilft absolut kein günstiger Preis. Es gibt viele andere Anbieter in der Nähe 1 2025-05-30 01:27:48.341792+00 S. K. \N 1 2026-01-29 04:35:08.730944+00 2026-01-25 01:27:51.319472+00 419 \N google Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB unknown {"text": "Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio.\\nNos atendió Hugo, muy profesional y servicial.", "author": "Javier Pereiro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB", "timestamp": "3 months ago"} Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio.\nNos atendió Hugo, muy profesional y servicial. 5 2025-10-27 01:27:48.341799+00 Javier Pereiro \N 1 2026-01-29 04:35:08.734085+00 2026-01-25 01:27:51.322618+00 420 \N google Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB unknown {"text": "Standort des Shuttlebus sehr schlecht gewählt..\\nDas versaut das ansonsten gute Ergebniss ,da können sich die Angestellten noch so bemühen..\\nWenn es mit dem Shuttle zur Station nicht klappt...", "author": "Robert Hartmannsberger", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB", "timestamp": "4 weeks ago"} Standort des Shuttlebus sehr schlecht gewählt..\nDas versaut das ansonsten gute Ergebniss ,da können sich die Angestellten noch so bemühen..\nWenn es mit dem Shuttle zur Station nicht klappt... 4 2025-12-28 01:27:48.341804+00 Robert Hartmannsberger \N 1 2026-01-29 04:35:08.737113+00 2026-01-25 01:27:51.325477+00 421 \N google Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB unknown {"text": "Super freundliches Personal, zuverlässig. Das Auto war sauber und gepflegt. Reservierung dort, gerne wieder 👍🏻", "author": "Birgit R", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB", "timestamp": "3 weeks ago"} Super freundliches Personal, zuverlässig. Das Auto war sauber und gepflegt. Reservierung dort, gerne wieder 👍🏻 5 2026-01-04 01:27:48.341807+00 Birgit R \N 1 2026-01-29 04:35:08.739742+00 2026-01-25 01:27:51.327834+00 422 \N google Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB unknown {"text": "Finger weg! Habe dieses Jahr mal Clickrent probiert. Transfer hat etwas gedauert, Auto OK, Abgabe nur unkompliziert, wenn man Vorort eine zweite Vollkasko direkt von Clickrent bucht. Wir buchen beim nächsten Mal wieder bei seriösen Autovermietern.", "author": "Marco Löhner", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB", "timestamp": "5 months ago"} Finger weg! Habe dieses Jahr mal Clickrent probiert. Transfer hat etwas gedauert, Auto OK, Abgabe nur unkompliziert, wenn man Vorort eine zweite Vollkasko direkt von Clickrent bucht. Wir buchen beim nächsten Mal wieder bei seriösen Autovermietern. 1 2025-08-28 01:27:48.341815+00 Marco Löhner \N 1 2026-01-29 04:35:08.742378+00 2026-01-25 01:27:51.33293+00 423 \N google Ci9DQUlRQUNvZENodHljRjlvT2tkblpUQnhla1pIZWxCR2JraE1WM2hLU0ZCV2JVRRAB unknown {"text": "Tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entrega del vehículo todo perfecto, sin duda lo mejor para alquilar un coche, muy profesionales en lo suyo y los empleados estás siempre de muy buen humor, eso es imprescindible en estas empresas.", "author": "AnGeLoUs P.g", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkblpUQnhla1pIZWxCR2JraE1WM2hLU0ZCV2JVRRAB", "timestamp": "4 months ago"} Tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entrega del vehículo todo perfecto, sin duda lo mejor para alquilar un coche, muy profesionales en lo suyo y los empleados estás siempre de muy buen humor, eso es imprescindible en estas empresas. 5 2025-09-27 01:27:48.341823+00 AnGeLoUs P.g \N 1 2026-01-29 04:35:08.745575+00 2026-01-25 01:27:51.335302+00 424 \N google Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB unknown {"text": "Mi experiencia ha sido perfecta con esta compañía. Hay un transporte que te recoge en el aeropuerto y te lleva hasta la oficina y viceversa. La atención fantástica, sin engaños ni palabrerios raros, gracias chicos !", "author": "Jose Alexander", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB", "timestamp": "5 months ago"} Mi experiencia ha sido perfecta con esta compañía. Hay un transporte que te recoge en el aeropuerto y te lleva hasta la oficina y viceversa. La atención fantástica, sin engaños ni palabrerios raros, gracias chicos ! 5 2025-08-28 01:27:48.341831+00 Jose Alexander \N 1 2026-01-29 04:35:08.752348+00 2026-01-25 01:27:51.337641+00 670 \N google ChdDSUhNMG9nS0VJQ0FnSURILTZHeGxnRRAB unknown {"text": "Alles perfekt!", "author": "Mark Schilhan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURILTZHeGxnRRAB", "timestamp": "a year ago"} Alles perfekt! 5 2025-01-25 01:27:48.343127+00 Mark Schilhan \N 1 2026-01-29 04:35:09.611093+00 2026-01-25 01:27:52.256524+00 1334 \N google ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE unknown {"text": "Great fun for all the family, carts to suit all ages and all are well maintained. 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights. Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package which includes practice time, real F1 grid start based on lap times longer race time, medals plus lots more.", "author": "Richard Warren", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE", "timestamp": "2 years ago"} Great fun for all the family, carts to suit all ages and all are well maintained. 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights. Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package which includes practice time, real F1 grid start based on lap times longer race time, medals plus lots more. 5 2024-01-31 01:52:39.833374+00 Richard Warren \N 1 2026-01-30 09:54:06.683981+00 2026-01-30 02:01:08.999156+00 427 \N google Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB unknown {"text": "Todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabajadores un encanto todos. El unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un 10", "author": "Jose Miguel vt", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB", "timestamp": "4 months ago"} Todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabajadores un encanto todos. El unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un 10 5 2025-09-27 01:27:48.341845+00 Jose Miguel vt \N 1 2026-01-29 04:35:08.768727+00 2026-01-25 01:27:51.350311+00 428 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB unknown {"text": "Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina.\\nLamentable.", "author": "Javier Mo Montero", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB", "timestamp": "a month ago"} Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina.\nLamentable. 1 2025-12-26 01:27:48.341847+00 Javier Mo Montero \N 1 2026-01-29 04:35:08.772108+00 2026-01-25 01:27:51.352775+00 429 \N google Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB unknown {"text": "La recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar al sitio, porque nadie nos avisó que había bus que nos recogía, al llegar, nos atendió una chica joven de pelo largo liso que no pudo ser más desagradable y maleducada, nos cobró obligatoriamente cosas que nos queríamos y el trato fue pésimo, la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo.", "author": "maria perez perez", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB", "timestamp": "4 months ago"} La recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar al sitio, porque nadie nos avisó que había bus que nos recogía, al llegar, nos atendió una chica joven de pelo largo liso que no pudo ser más desagradable y maleducada, nos cobró obligatoriamente cosas que nos queríamos y el trato fue pésimo, la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo. 2 2025-09-27 01:27:48.341849+00 maria perez perez \N 1 2026-01-29 04:35:08.775099+00 2026-01-25 01:27:51.355201+00 430 \N google Ci9DQUlRQUNvZENodHljRjlvT2prM01Yb3pTemxpYVV4YWNUQjNjVkZVTlhFMlgxRRAB unknown {"text": "Neodporúčam, som sklamaná. Pri požičaní auta sme si zaplatili základné poistenie. Bohužiaľ, pri parkovaní na parkovisku sa mi podarilo jemne oprieť auto o vyvýšený obrubník. Odrel sa lak sotva na 1cm. Z účtu mi strhli 480 eur!!! Faktúra bola za poškodenie podvozku, ktorý som naozaj nepoškodila a nemám to ako ani dokázať.\\nNeodporúčam!", "author": "Klaudia Sajdikova", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2prM01Yb3pTemxpYVV4YWNUQjNjVkZVTlhFMlgxRRAB", "timestamp": "5 months ago"} Neodporúčam, som sklamaná. Pri požičaní auta sme si zaplatili základné poistenie. Bohužiaľ, pri parkovaní na parkovisku sa mi podarilo jemne oprieť auto o vyvýšený obrubník. Odrel sa lak sotva na 1cm. Z účtu mi strhli 480 eur!!! Faktúra bola za poškodenie podvozku, ktorý som naozaj nepoškodila a nemám to ako ani dokázať.\nNeodporúčam! 1 2025-08-28 01:27:48.341851+00 Klaudia Sajdikova \N 1 2026-01-29 04:35:08.778111+00 2026-01-25 01:27:51.359031+00 431 \N google Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB unknown {"text": "Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv, bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft ... Ansonst: Top", "author": "Rol And", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB", "timestamp": "2 months ago"} Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv, bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft ... Ansonst: Top 5 2025-11-26 01:27:48.341853+00 Rol And \N 1 2026-01-29 04:35:08.779999+00 2026-01-25 01:27:51.361332+00 432 \N google ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE unknown {"text": "Das Auto war sauber und die Abholung und Abgabe hat einwandfrei funktioniert. ABER: ich hätte beinahe sehr viel Geld für einen Schaden zahlen müssen, der schon am Auto dran war bevor ich es abgeholt habe. Ich habe zum Glück vorm losfahren ein langes und detailliertes Video von der Außenseite des Autos gemacht, wo man die Delle drauf erkennt. Andererseits hätten sie mir die Delle in Rechnung gestellt, da keine Schäden auf dem Blatt vermerkt waren. Sie haben den Schaden auch nicht im Nachhinein vermerkt, sodass der nächste Mieter in dieselbe Falle getappt wäre", "author": "T R", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE", "timestamp": "a year ago"} Das Auto war sauber und die Abholung und Abgabe hat einwandfrei funktioniert. ABER: ich hätte beinahe sehr viel Geld für einen Schaden zahlen müssen, der schon am Auto dran war bevor ich es abgeholt habe. Ich habe zum Glück vorm losfahren ein langes und detailliertes Video von der Außenseite des Autos gemacht, wo man die Delle drauf erkennt. Andererseits hätten sie mir die Delle in Rechnung gestellt, da keine Schäden auf dem Blatt vermerkt waren. Sie haben den Schaden auch nicht im Nachhinein vermerkt, sodass der nächste Mieter in dieselbe Falle getappt wäre 2 2025-01-25 01:27:48.341855+00 T R \N 1 2026-01-29 04:35:08.782255+00 2026-01-25 01:27:51.366443+00 614 \N google ChZDSUhNMG9nS0VKUE41NHJwaXFfX0tnEAE unknown {"text": "Para repetir personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir", "author": "Miguel Angel de la Torre Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VKUE41NHJwaXFfX0tnEAE", "timestamp": "7 months ago"} Para repetir personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir 5 2025-06-29 01:27:48.342849+00 Miguel Angel de la Torre Gomez \N 1 2026-01-29 04:35:09.419785+00 2026-01-25 01:27:52.047521+00 1313 \N google Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB unknown {"text": "Went on the off chance we could rise. Managed to get on the go carts. Price was reasonable and good customer service", "author": "Debgc", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB", "timestamp": "5 months ago"} Went on the off chance we could rise. Managed to get on the go carts. Price was reasonable and good customer service 5 2025-09-02 00:52:39.833374+00 Debgc \N 1 2026-01-30 09:54:06.62614+00 2026-01-30 02:01:08.931411+00 1359 \N google ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB unknown {"text": "Brilliant. Really good track. Cheap prices. Definitely going again.\\n\\nPlenty of parking.", "author": "John Saunders", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB", "timestamp": "2 years ago"} Brilliant. Really good track. Cheap prices. Definitely going again.\n\nPlenty of parking. 5 2024-01-31 01:52:39.833374+00 John Saunders \N 1 2026-01-30 09:54:06.762058+00 2026-01-30 02:01:09.098345+00 1360 \N google ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE unknown {"text": "Really nice set up, great circuit, 1100m. Karts are good and well balanced. Friendly happy staff. Extra good value on Wednesdays", "author": "David Hopkins", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE", "timestamp": "3 years ago"} Really nice set up, great circuit, 1100m. Karts are good and well balanced. Friendly happy staff. Extra good value on Wednesdays 5 2023-01-31 01:52:39.833374+00 David Hopkins \N 1 2026-01-30 09:54:06.765245+00 2026-01-30 02:01:09.101307+00 435 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB unknown {"text": "My amable", "author": "Andrea Seipel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB", "timestamp": "a month ago"} My amable 5 2025-12-26 01:27:48.341905+00 Andrea Seipel \N 1 2026-01-29 04:35:08.793234+00 2026-01-25 01:27:51.375321+00 436 \N google Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB unknown {"text": "Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji. Zdecydowanie nie polecam.", "author": "SZNUTER", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB", "timestamp": "a month ago"} Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji. Zdecydowanie nie polecam. 1 2025-12-26 01:27:48.34191+00 SZNUTER \N 1 2026-01-29 04:35:08.795412+00 2026-01-25 01:27:51.377421+00 438 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB unknown {"text": "Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado \\"peritaje\\".\\nLa pieza entera cuesta 120 euros.\\nDe vergüenza.", "author": "Leire ballesta mendioroz", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB", "timestamp": "a month ago"} Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado "peritaje".\nLa pieza entera cuesta 120 euros.\nDe vergüenza. 1 2025-12-26 01:27:48.341915+00 Leire ballesta mendioroz \N 1 2026-01-29 04:35:08.801706+00 2026-01-25 01:27:51.385828+00 439 \N google ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB unknown {"text": "Auto gemietet für eine Woche, das Auto hatte bereits Vorschäden, von denen ich Fotos gemacht habe, das war bei der Rückgabe kein Thema. Mir wurde angeboten, eine Versicherung von ClickRent für das Auto abzuschließen, dies habe ich aber abgelehnt und die Kaution mit der Kreditkarte hinterlegt weil ich durch Aurumcars bereits eine Versicherung hatte. Die Kaution wurde mir bei der Abgabe des Fahrzeugs wieder freigegeben wurde. Die Abholung am Flughafen mit dem Shuttlebus war zunächst etwas kompliziert beschrieben durch den Vermittler Aurumcars, dafür kann ClickRent ja aber nichts, man muss im Flughafen auf dem 1. Stock bei dem Abflug 1 (fast am Ende des Flughafens) rausgehen Richtung Parkplatz (car park meeting point), dort hat der Shuttlebus auf der Fahrtspur gewartet, wie im Screenshot markiert. Rücktour zum Flughafen mit dem Shuttlebus war auch unproblematisch.", "author": "J. L.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB", "timestamp": "7 months ago"} Auto gemietet für eine Woche, das Auto hatte bereits Vorschäden, von denen ich Fotos gemacht habe, das war bei der Rückgabe kein Thema. Mir wurde angeboten, eine Versicherung von ClickRent für das Auto abzuschließen, dies habe ich aber abgelehnt und die Kaution mit der Kreditkarte hinterlegt weil ich durch Aurumcars bereits eine Versicherung hatte. Die Kaution wurde mir bei der Abgabe des Fahrzeugs wieder freigegeben wurde. Die Abholung am Flughafen mit dem Shuttlebus war zunächst etwas kompliziert beschrieben durch den Vermittler Aurumcars, dafür kann ClickRent ja aber nichts, man muss im Flughafen auf dem 1. Stock bei dem Abflug 1 (fast am Ende des Flughafens) rausgehen Richtung Parkplatz (car park meeting point), dort hat der Shuttlebus auf der Fahrtspur gewartet, wie im Screenshot markiert. Rücktour zum Flughafen mit dem Shuttlebus war auch unproblematisch. 5 2025-06-29 01:27:48.341917+00 J. L. \N 1 2026-01-29 04:35:08.804561+00 2026-01-25 01:27:51.38808+00 440 \N google Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB unknown {"text": "En vez de estrella mejor 1 pedrada me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto mañana denuncia en consumo jente desagradable y con amenazas", "author": "Kiko Gonzalez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB", "timestamp": "a month ago"} En vez de estrella mejor 1 pedrada me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto mañana denuncia en consumo jente desagradable y con amenazas 1 2025-12-26 01:27:48.341919+00 Kiko Gonzalez \N 1 2026-01-29 04:35:08.808638+00 2026-01-25 01:27:51.391412+00 441 \N google ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE unknown {"text": "Esperienza negativa.\\nPremetto che le indicazioni Google per raggiungerlo sono approssimative. Si trovano in mezzo al nulla. In più quando ti danno l'auto non ti mostrano i danni e con la scusa del paperless non ti danno neanche un contratto con dettagli auto. Poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. Sciocca io a non controllare ma chissà come mai hanno quasi tutte auto bianche... Preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilità a risolvere senza derubare e gentilezza da parte di altre compagnie.\\nSono proprio una trappola per turisti come da location e struttura prefabbricata in mezzo al nulla\\nDa evitare come la peste.", "author": "Jessica Laganà", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE", "timestamp": "a year ago"} Esperienza negativa.\nPremetto che le indicazioni Google per raggiungerlo sono approssimative. Si trovano in mezzo al nulla. In più quando ti danno l'auto non ti mostrano i danni e con la scusa del paperless non ti danno neanche un contratto con dettagli auto. Poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. Sciocca io a non controllare ma chissà come mai hanno quasi tutte auto bianche... Preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilità a risolvere senza derubare e gentilezza da parte di altre compagnie.\nSono proprio una trappola per turisti come da location e struttura prefabbricata in mezzo al nulla\nDa evitare come la peste. 1 2025-01-25 01:27:48.341941+00 Jessica Laganà \N 1 2026-01-29 04:35:08.811392+00 2026-01-25 01:27:51.39586+00 1315 \N google Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB unknown {"text": "Great circuit, not very crowded and has the best price around.", "author": "Elena Cabezas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB", "timestamp": "5 months ago"} Great circuit, not very crowded and has the best price around. 5 2025-09-02 00:52:39.833374+00 Elena Cabezas \N 1 2026-01-30 09:54:06.631258+00 2026-01-30 02:01:08.936898+00 1316 \N google Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB unknown {"text": "Very fun track where you can have some good races with your friends", "author": "Juan Acurero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB", "timestamp": "4 months ago"} Very fun track where you can have some good races with your friends 5 2025-10-02 00:52:39.833374+00 Juan Acurero \N 1 2026-01-30 09:54:06.633509+00 2026-01-30 02:01:08.93941+00 1452 \N google ChZDSUhNMG9nS0VJQ0FnSURrbi1TTkVREAE unknown {"text": "Absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car to get there", "author": "stgnats", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbi1TTkVREAE", "timestamp": "6 years ago"} Absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car to get there 5 2020-02-01 01:52:39.833374+00 stgnats \N 1 2026-01-30 09:54:07.030325+00 2026-01-30 02:01:09.397299+00 1983 \N google ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB unknown {"text": "Genial. Un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer carreras en grupo con los amigos. Buen precio y karts en buen estado.", "author": "Enrique Martínez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB", "timestamp": "9 years ago"} Genial. Un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer carreras en grupo con los amigos. Buen precio y karts en buen estado. 4 2017-02-01 01:52:39.833374+00 Enrique Martínez \N 1 2026-01-30 09:54:08.92692+00 2026-01-30 02:01:11.545403+00 444 \N google ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE unknown {"text": "Ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza interior y exterior... pero destacar del personal especialmente Carlos muy profesional atento, amable siempre aconsejando el vehículo a mis necesidades", "author": "Un arabe liberal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE", "timestamp": "a year ago"} Ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza interior y exterior... pero destacar del personal especialmente Carlos muy profesional atento, amable siempre aconsejando el vehículo a mis necesidades 5 2025-01-25 01:27:48.341961+00 Un arabe liberal \N 1 2026-01-29 04:35:08.821805+00 2026-01-25 01:27:51.404561+00 445 \N google ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB unknown {"text": "Wir haben bei Hertz gemietet, völlig unkompliziert, Tankuhr wird bei der Rückgabe kontrolliert. Vollkasko. Navi ist in mehrere Sprachen einstellbar, das Schwierigste ist, bei der Rückgabe, die Einfahrt zum Parkhaus zu finden, sie befindet sich links der Taxihaltestelle bevor man die Überdachung erreicht", "author": "Elisabeth Steinbauer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB", "timestamp": "7 months ago"} Wir haben bei Hertz gemietet, völlig unkompliziert, Tankuhr wird bei der Rückgabe kontrolliert. Vollkasko. Navi ist in mehrere Sprachen einstellbar, das Schwierigste ist, bei der Rückgabe, die Einfahrt zum Parkhaus zu finden, sie befindet sich links der Taxihaltestelle bevor man die Überdachung erreicht 5 2025-06-29 01:27:48.341968+00 Elisabeth Steinbauer \N 1 2026-01-29 04:35:08.825644+00 2026-01-25 01:27:51.40706+00 446 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB unknown {"text": "Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora.", "author": "Sergio Ruiz Galián", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB", "timestamp": "a month ago"} Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora. 1 2025-12-26 01:27:48.341972+00 Sergio Ruiz Galián \N 1 2026-01-29 04:35:08.829648+00 2026-01-25 01:27:51.410799+00 447 \N google ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE unknown {"text": "Sehr positive Erfahrung! Die Mitarbeiter waren alle sehr freundlich und hilfreich. Die Station ist außerhalb des Flughafens, es kann zwar zu Wartezeiten kommen aber dafür ist der Wagen günstiger und man ist gut aufgehoben.", "author": "Clara Färber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE", "timestamp": "9 months ago"} Sehr positive Erfahrung! Die Mitarbeiter waren alle sehr freundlich und hilfreich. Die Station ist außerhalb des Flughafens, es kann zwar zu Wartezeiten kommen aber dafür ist der Wagen günstiger und man ist gut aufgehoben. 5 2025-04-30 01:27:48.341974+00 Clara Färber \N 1 2026-01-29 04:35:08.831574+00 2026-01-25 01:27:51.41563+00 448 \N google ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE unknown {"text": "Descontento con el servicio. No lo recomiendo.\\nEstá fuera del Aeropuerto. ( Eso lo avisan en su publicidad, pero hay que tenerlo en cuenta)\\nLo peor y de ahí mi reseña. Me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( Más que el precio del alquiler del coche los 3 días que lo contraté).\\nPor el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleados.\\nDe ahí poner 2 estrellas en vez de 1.", "author": "Didac Mora", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE", "timestamp": "a year ago"} Descontento con el servicio. No lo recomiendo.\nEstá fuera del Aeropuerto. ( Eso lo avisan en su publicidad, pero hay que tenerlo en cuenta)\nLo peor y de ahí mi reseña. Me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( Más que el precio del alquiler del coche los 3 días que lo contraté).\nPor el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleados.\nDe ahí poner 2 estrellas en vez de 1. 2 2025-01-25 01:27:48.341976+00 Didac Mora \N 1 2026-01-29 04:35:08.836562+00 2026-01-25 01:27:51.417947+00 570 \N google ChdDSUhNMG9nS0VJQ0FnSUNId2NXWTd3RRAB unknown {"text": "Todo perfecto. Súper rápido y sin ningún problema tanto en la reserva como con el coche. Gracias Antonio por tu ayuda y gestión. Totalmente recomendado!!!", "author": "Zuleima Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNId2NXWTd3RRAB", "timestamp": "a year ago"} Todo perfecto. Súper rápido y sin ningún problema tanto en la reserva como con el coche. Gracias Antonio por tu ayuda y gestión. Totalmente recomendado!!! 5 2025-01-25 01:27:48.342593+00 Zuleima Suarez \N 1 2026-01-29 04:35:09.267686+00 2026-01-25 01:27:51.893292+00 1318 \N google ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB unknown {"text": "Been coming here once a year since about 2019 now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs that track each kart when races are going on. You definitely feel the speed jump on the F300s", "author": "Jack Burt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB", "timestamp": "a year ago"} Been coming here once a year since about 2019 now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs that track each kart when races are going on. You definitely feel the speed jump on the F300s 5 2025-01-30 01:52:39.833374+00 Jack Burt \N 1 2026-01-30 09:54:06.638093+00 2026-01-30 02:01:08.945702+00 1319 \N google ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB unknown {"text": "Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace and free entry you just pay to race", "author": "David “Chucklebrothers” Eardley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB", "timestamp": "5 years ago"} Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace and free entry you just pay to race 5 2021-01-31 01:52:39.833374+00 David “Chucklebrothers” Eardley \N 1 2026-01-30 09:54:06.64052+00 2026-01-30 02:01:08.949768+00 1320 \N google ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE unknown {"text": "A fun place for drivers and spectators alike. Has a viewing terrace and a bar for a coffee or beer.", "author": "Gary Cliffe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE", "timestamp": "11 months ago"} A fun place for drivers and spectators alike. Has a viewing terrace and a bar for a coffee or beer. 5 2025-03-06 01:52:39.833374+00 Gary Cliffe \N 1 2026-01-30 09:54:06.642783+00 2026-01-30 02:01:08.952656+00 1494 \N google ChZDSUhNMG9nS0VJQ0FnSURVbHE2MlZREAE unknown {"text": "Great place. Staff are excellent. Fantastic track.", "author": "Nigel Drummond", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbHE2MlZREAE", "timestamp": "6 years ago"} Great place. Staff are excellent. Fantastic track. 5 2020-02-01 01:52:39.833374+00 Nigel Drummond \N 1 2026-01-30 09:54:07.144336+00 2026-01-30 02:01:09.533896+00 1996 \N google ChZDSUhNMG9nS0VJQ0FnSURMN3A3MGNBEAE unknown {"text": "10/10 buenísima experiencia y me lo he pasado pipa", "author": "Enrique Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMN3A3MGNBEAE", "timestamp": "a year ago"} 10/10 buenísima experiencia y me lo he pasado pipa 5 2025-01-30 01:52:39.833374+00 Enrique Fernandez \N 1 2026-01-30 09:54:08.990191+00 2026-01-30 02:01:11.586324+00 452 \N google ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE unknown {"text": "Alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te lleva y te trae. Nosotros no lo vimos y fuimos andando y tuvimos que pagar un suplemento por dejar el coche antes de las 8.\\nEso si el coche estaba nuevo y fue un gusto conducirlo", "author": "Isabel Cenamor", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE", "timestamp": "7 months ago"} Alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te lleva y te trae. Nosotros no lo vimos y fuimos andando y tuvimos que pagar un suplemento por dejar el coche antes de las 8.\nEso si el coche estaba nuevo y fue un gusto conducirlo 3 2025-06-29 01:27:48.341984+00 Isabel Cenamor \N 1 2026-01-29 04:35:08.851385+00 2026-01-25 01:27:51.432019+00 453 \N google ChdDSUhNMG9nS0VJQ0FnSUMzMXZ2aXJ3RRAB unknown {"text": "La semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en los bajos del coche,que por supuesto yo no ocasione...No contestan reclamacion, me siento engañado y espero que no le suceda a otra persona.Reserva CR1681909GC.Fiat 500 Matricula: 0391 MSP.", "author": "Jose Manuel Taboada", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzMXZ2aXJ3RRAB", "timestamp": "a year ago"} La semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en los bajos del coche,que por supuesto yo no ocasione...No contestan reclamacion, me siento engañado y espero que no le suceda a otra persona.Reserva CR1681909GC.Fiat 500 Matricula: 0391 MSP. 1 2025-01-25 01:27:48.341986+00 Jose Manuel Taboada \N 1 2026-01-29 04:35:08.859307+00 2026-01-25 01:27:51.434579+00 454 \N google ChdDSUhNMG9nS0VJQ0FnTURJOUxxSHlnRRAB unknown {"text": "Tuve una experiencia excelente alquilando un coche con Click Rent en Gran Canaria. El proceso fue rápido y sencillo, y todo estuvo perfectamente organizado. Juan Manuel y Amelia fueron muy amables, profesionales y atentos durante todo el servicio. El coche estaba en perfectas condiciones, limpio y listo para disfrutar del viaje. Sin duda, recomendaría esta empresa a cualquiera que necesite alquilar un coche en la isla. ¡Repetiré sin duda en mi próxima visita!", "author": "Nathalie Paradis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUxxSHlnRRAB", "timestamp": "9 months ago"} Tuve una experiencia excelente alquilando un coche con Click Rent en Gran Canaria. El proceso fue rápido y sencillo, y todo estuvo perfectamente organizado. Juan Manuel y Amelia fueron muy amables, profesionales y atentos durante todo el servicio. El coche estaba en perfectas condiciones, limpio y listo para disfrutar del viaje. Sin duda, recomendaría esta empresa a cualquiera que necesite alquilar un coche en la isla. ¡Repetiré sin duda en mi próxima visita! 5 2025-04-30 01:27:48.341988+00 Nathalie Paradis \N 1 2026-01-29 04:35:08.862526+00 2026-01-25 01:27:51.437425+00 456 \N google Ci9DQUlRQUNvZENodHljRjlvT2xSVlkwSjVXbmgwUzJwNVFVTm9WM0V0YlZOUlNsRRAB unknown {"text": "Todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el coche en la oficina y a la hora de la entrega igual todo perfecto y sin problema sin duda repetiré con ellos.", "author": "Josue Heredia Heredia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSVlkwSjVXbmgwUzJwNVFVTm9WM0V0YlZOUlNsRRAB", "timestamp": "5 months ago"} Todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el coche en la oficina y a la hora de la entrega igual todo perfecto y sin problema sin duda repetiré con ellos. 5 2025-08-28 01:27:48.341992+00 Josue Heredia Heredia \N 1 2026-01-29 04:35:08.872264+00 2026-01-25 01:27:51.44344+00 487 \N google ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB unknown {"text": "Alles hat hervorragend geklappt. Der Treffpunkt des Shuttles ist zwar nicht ausgeschildert, aber leicht zu finden (2.OG Abflüge, Ausgang 1, 20 Meter nach rechts). Autos und Mitarbeiter sind top.", "author": "drew", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB", "timestamp": "11 months ago"} Alles hat hervorragend geklappt. Der Treffpunkt des Shuttles ist zwar nicht ausgeschildert, aber leicht zu finden (2.OG Abflüge, Ausgang 1, 20 Meter nach rechts). Autos und Mitarbeiter sind top. 5 2025-03-01 01:27:48.342182+00 drew \N 1 2026-01-29 04:35:09.004168+00 2026-01-25 01:27:51.555402+00 1311 \N google ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE unknown {"text": "‼️AMAZING‼️Amazing go karting, very professional and authentic. Well kept and unique track which is a pleasure to race on! And the karts are well maintained to the best standards. They have amazing staff there getting you on the track quickly and efficiently and helping with any problems on the track. Great facilities with food and drink available, a good main room with a view of the karts and an amazing roof terrace overlooking the complex! We have been going for years and has never failed to disappoint even in the hottest temperatures or heavy rain. The atmosphere is very welcoming and authentic giving a true racing experience. They have karts for all ages and abilities and are superbly priced. I would highly recommend a few races here no matter the time of day it is always one of the highlights of our trip! Thank you to all of the crew here who never fail to offer the best service and giving the best experience! All of the best and look forward to our visit next week!!", "author": "Thomas G", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE", "timestamp": "a year ago"} ‼️AMAZING‼️Amazing go karting, very professional and authentic. Well kept and unique track which is a pleasure to race on! And the karts are well maintained to the best standards. They have amazing staff there getting you on the track quickly and efficiently and helping with any problems on the track. Great facilities with food and drink available, a good main room with a view of the karts and an amazing roof terrace overlooking the complex! We have been going for years and has never failed to disappoint even in the hottest temperatures or heavy rain. The atmosphere is very welcoming and authentic giving a true racing experience. They have karts for all ages and abilities and are superbly priced. I would highly recommend a few races here no matter the time of day it is always one of the highlights of our trip! Thank you to all of the crew here who never fail to offer the best service and giving the best experience! All of the best and look forward to our visit next week!! 5 2025-01-30 01:52:39.833374+00 Thomas G \N 1 2026-01-30 09:54:06.620507+00 2026-01-30 02:01:08.924122+00 1323 \N google ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB unknown {"text": "Estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba para tener una perspectiva más amplia.", "author": "Aru", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB", "timestamp": "5 years ago"} Estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba para tener una perspectiva más amplia. 5 2021-01-31 01:52:39.833374+00 Aru \N 1 2026-01-30 09:54:06.652273+00 2026-01-30 02:01:08.966255+00 246 \N google review_69 unknown {"text": "Really nice and helpful people (and they speak good english), whole rental went really smoothly, car was clean and brand new. Compared to other experiences with car rental on this island, this company is a real treasure. Big recommend!!!", "author": "Małgorzata Mazur", "rating": 5, "source": "dom", "timestamp": "a year ago"} Really nice and helpful people (and they speak good english), whole rental went really smoothly, car was clean and brand new. Compared to other experiences with car rental on this island, this company is a real treasure. Big recommend!!! 5 2025-01-25 01:27:48.340608+00 Małgorzata Mazur \N 1 2026-01-30 09:54:06.819697+00 2026-01-25 01:27:50.220299+00 458 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB unknown {"text": "Très bon service ; l’agence est à 2 minutes en navette ! La prise en charge est rapide et efficace.\\n\\nLes explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans forcer à prendre l’assurance.\\n\\nLe véhicule était neuf. L’hôtesse nous a informé que l’agence avait une semaine à notre arrivée.\\n\\nLa franchise a été encaissée à la prise en charge du véhicule, mais bien restituée au retour !\\n\\nAucun problème sur cette location. Notons aussi que le personnel est très agréable, courtois et patient.\\n\\nMerci Carlos et Nestor pour vos prestations, parfaites .", "author": "Damien REVILLIER", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB", "timestamp": "a year ago"} Très bon service ; l’agence est à 2 minutes en navette ! La prise en charge est rapide et efficace.\n\nLes explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans forcer à prendre l’assurance.\n\nLe véhicule était neuf. L’hôtesse nous a informé que l’agence avait une semaine à notre arrivée.\n\nLa franchise a été encaissée à la prise en charge du véhicule, mais bien restituée au retour !\n\nAucun problème sur cette location. Notons aussi que le personnel est très agréable, courtois et patient.\n\nMerci Carlos et Nestor pour vos prestations, parfaites . 5 2025-01-25 01:27:48.342033+00 Damien REVILLIER \N 1 2026-01-29 04:35:08.882089+00 2026-01-25 01:27:51.451782+00 459 \N google ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE unknown {"text": "Acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coches, el trato de los empleados no puede ser mejor.\\n\\nMe atendieron Amelia y Kevin y la verdad que fueron súper simpáticos y cercanos conmigo. El nivel de inglés de Amelia es buenísimo para poder hablar con ella, además es muy amable y el trayecto al aeropuerto con Kevin fue genial, me sentí muy segura.\\n\\nSin duda lo recomiendo. ¡Muchas gracias!", "author": "Victoria Guedes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE", "timestamp": "9 months ago"} Acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coches, el trato de los empleados no puede ser mejor.\n\nMe atendieron Amelia y Kevin y la verdad que fueron súper simpáticos y cercanos conmigo. El nivel de inglés de Amelia es buenísimo para poder hablar con ella, además es muy amable y el trayecto al aeropuerto con Kevin fue genial, me sentí muy segura.\n\nSin duda lo recomiendo. ¡Muchas gracias! 5 2025-04-30 01:27:48.342041+00 Victoria Guedes \N 1 2026-01-29 04:35:08.885858+00 2026-01-25 01:27:51.453852+00 461 \N google ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB unknown {"text": "Tuvimos una experiencia muy favorable con ellos. Nos dieron el coche que alquilamos (Fiat 500), son flexibles con la entrega, no pusieron pegas a la entrega y la devolución de la fianza fue instantánea. Todo genial, repetiremos con ellos", "author": "Tati Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB", "timestamp": "9 months ago"} Tuvimos una experiencia muy favorable con ellos. Nos dieron el coche que alquilamos (Fiat 500), son flexibles con la entrega, no pusieron pegas a la entrega y la devolución de la fianza fue instantánea. Todo genial, repetiremos con ellos 5 2025-04-30 01:27:48.342053+00 Tati Fernández \N 1 2026-01-29 04:35:08.893269+00 2026-01-25 01:27:51.460079+00 488 \N google ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB unknown {"text": "Juanma is erg attent en aardig tegenover de klanten. De auto was in goede staat en de borg was onmiddellijk terug. Precies de ervaring die je wilt als je een auto huurt!", "author": "Masoud Taheri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB", "timestamp": "9 months ago"} Juanma is erg attent en aardig tegenover de klanten. De auto was in goede staat en de borg was onmiddellijk terug. Precies de ervaring die je wilt als je een auto huurt! 5 2025-04-30 01:27:48.342184+00 Masoud Taheri \N 1 2026-01-29 04:35:09.008036+00 2026-01-25 01:27:51.578218+00 1562 \N google ChdDSUhNMG9nS0VJQ0FnSURzNkxuUDdBRRAB unknown {"text": "Turned up, drove carts, good times", "author": "Shane Brown", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzNkxuUDdBRRAB", "timestamp": "5 years ago"} Turned up, drove carts, good times 5 2021-01-31 01:52:39.833374+00 Shane Brown \N 1 2026-01-30 09:54:07.369571+00 2026-01-30 02:01:09.787275+00 2027 \N google ChZDSUhNMG9nS0VJQ0FnSURVdXFfUVB3EAE unknown {"text": "Divertido. Los coches de 300 van bastante bien", "author": "Juan José Fernandez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdXFfUVB3EAE", "timestamp": "6 years ago"} Divertido. Los coches de 300 van bastante bien 4 2020-02-01 01:52:39.833374+00 Juan José Fernandez \N 1 2026-01-30 09:54:09.107485+00 2026-01-30 02:01:11.699458+00 463 \N google ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE unknown {"text": "55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No dan opción a dejarlo aparcado y las llaves en un buzón?\\nNo sólo con eso, nos han cobrado 50€ de la fianza por concepto de “Limpieza adicional” por un poco de barro que había en la alfombrilla del conductor ya que ha llovido 3 días en la isla y tuvimos que dejar el coche a las 6 de la mañana.\\nEn fin, todo eran pegas.\\nNo contrato nunca más con esta compañía.", "author": "Tony Pasta", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE", "timestamp": "11 months ago"} 55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No dan opción a dejarlo aparcado y las llaves en un buzón?\nNo sólo con eso, nos han cobrado 50€ de la fianza por concepto de “Limpieza adicional” por un poco de barro que había en la alfombrilla del conductor ya que ha llovido 3 días en la isla y tuvimos que dejar el coche a las 6 de la mañana.\nEn fin, todo eran pegas.\nNo contrato nunca más con esta compañía. 1 2025-03-01 01:27:48.342062+00 Tony Pasta \N 1 2026-01-29 04:35:08.9056+00 2026-01-25 01:27:51.467652+00 464 \N google ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB unknown {"text": "Wir sind pünktlich vom Flughafen abgeholt worden und haben eine nette Mitarbeiterin getroffen und einen neuen Fiat 500 bekommen.\\nDie Rückgabe hat auch super geklappt, aber die Kaution wurde uns von der Kreditkarte abgezogen und NICHT wieder zurückgebucht. Auf meine e-mail habe ich noch keine Antwort erhalten.", "author": "Steffen Meinecke", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB", "timestamp": "a year ago"} Wir sind pünktlich vom Flughafen abgeholt worden und haben eine nette Mitarbeiterin getroffen und einen neuen Fiat 500 bekommen.\nDie Rückgabe hat auch super geklappt, aber die Kaution wurde uns von der Kreditkarte abgezogen und NICHT wieder zurückgebucht. Auf meine e-mail habe ich noch keine Antwort erhalten. 2 2025-01-25 01:27:48.342064+00 Steffen Meinecke \N 1 2026-01-29 04:35:08.908847+00 2026-01-25 01:27:51.469424+00 465 \N google ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE unknown {"text": "ACHTUNG! Diesen Anbieter unbedingt meiden!!! Bei der Rückgabe wurde ein Abrieb und Farbrückstände am Handgriff der hinteren Türe moniert. Nur weil ich das Innere nicht gut kontrolliert habe, wurden mir Euro 360.- belastet. Zuerst wurde mir ein Betrag von Euro 600.- mitgeteilt, der dann gesenkt wurde.\\nFazit: NIE MEHR CLICKRENT!!!! Nie! Nie! Hände weg! Wer es trotzdem macht, ist selber schuld!", "author": "Christian Cotting", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE", "timestamp": "9 months ago"} ACHTUNG! Diesen Anbieter unbedingt meiden!!! Bei der Rückgabe wurde ein Abrieb und Farbrückstände am Handgriff der hinteren Türe moniert. Nur weil ich das Innere nicht gut kontrolliert habe, wurden mir Euro 360.- belastet. Zuerst wurde mir ein Betrag von Euro 600.- mitgeteilt, der dann gesenkt wurde.\nFazit: NIE MEHR CLICKRENT!!!! Nie! Nie! Hände weg! Wer es trotzdem macht, ist selber schuld! 1 2025-04-30 01:27:48.342066+00 Christian Cotting \N 1 2026-01-29 04:35:08.91227+00 2026-01-25 01:27:51.471444+00 466 \N google Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB unknown {"text": "Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores", "author": "Casa Doranda", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB", "timestamp": "3 months ago"} Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores 1 2025-10-27 01:27:48.342068+00 Casa Doranda \N 1 2026-01-29 04:35:08.917816+00 2026-01-25 01:27:51.475006+00 467 \N google Ci9DQUlRQUNvZENodHljRjlvT25kUmFGTmphamxZWXpBd2NGRndiMjlhWjFWdFltYxAB unknown {"text": "Tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen ,después de que el coche se averíe y sea imposible repostar te cobran un repostado de 103€", "author": "Pablo Rodríguez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kUmFGTmphamxZWXpBd2NGRndiMjlhWjFWdFltYxAB", "timestamp": "3 months ago"} Tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen ,después de que el coche se averíe y sea imposible repostar te cobran un repostado de 103€ 1 2025-10-27 01:27:48.34207+00 Pablo Rodríguez \N 1 2026-01-29 04:35:08.92162+00 2026-01-25 01:27:51.48025+00 468 \N google Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB unknown {"text": "Checkpoint schwer zu finden, Shuttle kam nach 20 Minuten nicht, sind gelaufen, Mitarbeiter dort brauchen 30 Minuten pro Buchung, keine Empfehlung", "author": "Kenny Miller", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB", "timestamp": "3 months ago"} Checkpoint schwer zu finden, Shuttle kam nach 20 Minuten nicht, sind gelaufen, Mitarbeiter dort brauchen 30 Minuten pro Buchung, keine Empfehlung 1 2025-10-27 01:27:48.342072+00 Kenny Miller \N 1 2026-01-29 04:35:08.924645+00 2026-01-25 01:27:51.483274+00 469 \N google ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB unknown {"text": "No os confiéis, HACED FOTO A TODO que las palabras luego no valen. Leeros bien el contrato, y mirad que entra en el seguro y que no. Contratamos un seguro al 100% pero luego no te cubre ni bajos, ni lunas etc. Además te entregan el coche roto para poder estafarte. No vuelvo a contratar.", "author": "Sol Alcaraz", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB", "timestamp": "11 months ago"} No os confiéis, HACED FOTO A TODO que las palabras luego no valen. Leeros bien el contrato, y mirad que entra en el seguro y que no. Contratamos un seguro al 100% pero luego no te cubre ni bajos, ni lunas etc. Además te entregan el coche roto para poder estafarte. No vuelvo a contratar. 1 2025-03-01 01:27:48.342074+00 Sol Alcaraz \N 1 2026-01-29 04:35:08.928167+00 2026-01-25 01:27:51.486072+00 630 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB unknown {"text": "Todo perfecto, coche nuevo\\nCarmen esta muy amable", "author": "Vilmos Hart", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB", "timestamp": "a year ago"} Todo perfecto, coche nuevo\nCarmen esta muy amable 5 2025-01-25 01:27:48.342969+00 Vilmos Hart \N 1 2026-01-29 04:35:09.465962+00 2026-01-25 01:27:52.103286+00 2031 \N google ChdDSUhNMG9nS0VJQ0FnSURPM3NfZjhnRRAB unknown {"text": "Gran sitio, para pasar una mañana y un gran día. Buenos precios y buen precio para comer.", "author": "ruben acosta", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPM3NfZjhnRRAB", "timestamp": "3 years ago"} Gran sitio, para pasar una mañana y un gran día. Buenos precios y buen precio para comer. 5 2023-01-31 01:52:39.833374+00 ruben acosta \N 1 2026-01-30 09:54:09.121136+00 2026-01-30 02:01:11.713951+00 2058 \N google ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB unknown {"text": "Un gran circuito muy divertido y con diferentes zonas,precios razonables,merece la pena", "author": "Adrian Romero", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB", "timestamp": "7 years ago"} Un gran circuito muy divertido y con diferentes zonas,precios razonables,merece la pena 4 2019-02-01 01:52:39.833374+00 Adrian Romero \N 1 2026-01-30 09:54:09.223743+00 2026-01-30 02:01:11.80315+00 471 \N google ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE unknown {"text": "Todo muy bien. La atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del minibus de cortesía como los recepcionistas a la entrega y recogida de llaves. Recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evitarás disgustos innecesarios.", "author": "David Karma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE", "timestamp": "a year ago"} Todo muy bien. La atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del minibus de cortesía como los recepcionistas a la entrega y recogida de llaves. Recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evitarás disgustos innecesarios. 5 2025-01-25 01:27:48.342078+00 David Karma \N 1 2026-01-29 04:35:08.933983+00 2026-01-25 01:27:51.491724+00 472 \N google Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB unknown {"text": "Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable", "author": "Alberto goñi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB", "timestamp": "a month ago"} Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable 5 2025-12-26 01:27:48.34208+00 Alberto goñi \N 1 2026-01-29 04:35:08.937725+00 2026-01-25 01:27:51.494441+00 473 \N google ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB unknown {"text": "Arrivée : Navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local.\\nRetour : impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti quand le vol est à 9h.\\nVoiture neuve et en bon état.", "author": "Aurélie MANZANARES", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB", "timestamp": "Edited 11 months ago"} Arrivée : Navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local.\nRetour : impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti quand le vol est à 9h.\nVoiture neuve et en bon état. 1 2026-01-25 01:27:48.342082+00 Aurélie MANZANARES \N 1 2026-01-29 04:35:08.942031+00 2026-01-25 01:27:51.499291+00 474 \N google ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB unknown {"text": "Escribo esta reseña para destacar la atención recibida por parte de Antonio. Nos fue a recoger en el minibus al aeropuerto para ir a coger el coche y desde el principio fue muy amable. Nos comentó sobre la Isla y también nos recomendó algunos lugares que a él le gustaban. Luego a la vuelta tuvimos la suerte de volver a encontrarlo y nos llevó de vuelta al aeropuerto. A mí hija se le olvidó el teléfono en el minibus. Pensábamos que ya lo habíamos perdido, pero 30 minutos después recibimos su llamada, diciéndonos que nos habíamos dejado el telefono en el minibus. Y Antonio fue tan buena persona que volvió al aeropuerto para entregárnoslo. Ojalá hubiera más personas así.\\n\\nRespecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. No tuvimos ningún problema ni en el check-in ni check-out. Hemos probado otras compañías de alquiler de coches,pero está ha sido la mejor así que volveremos sin duda a contratar con ellos.", "author": "Jaime", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB", "timestamp": "a year ago"} Escribo esta reseña para destacar la atención recibida por parte de Antonio. Nos fue a recoger en el minibus al aeropuerto para ir a coger el coche y desde el principio fue muy amable. Nos comentó sobre la Isla y también nos recomendó algunos lugares que a él le gustaban. Luego a la vuelta tuvimos la suerte de volver a encontrarlo y nos llevó de vuelta al aeropuerto. A mí hija se le olvidó el teléfono en el minibus. Pensábamos que ya lo habíamos perdido, pero 30 minutos después recibimos su llamada, diciéndonos que nos habíamos dejado el telefono en el minibus. Y Antonio fue tan buena persona que volvió al aeropuerto para entregárnoslo. Ojalá hubiera más personas así.\n\nRespecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. No tuvimos ningún problema ni en el check-in ni check-out. Hemos probado otras compañías de alquiler de coches,pero está ha sido la mejor así que volveremos sin duda a contratar con ellos. 5 2025-01-25 01:27:48.342116+00 Jaime \N 1 2026-01-29 04:35:08.948774+00 2026-01-25 01:27:51.502432+00 475 \N google ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE unknown {"text": "Je recommande!\\n\\nSuper expérience de location.\\n\\nNous avons été prit en charge par une navette à l’aéroport. La prise et la restitution du véhicule a été très rapide.\\nNous avons louer une fiat 500 toute neuve.\\nMerci à Nestor et Carlos très sympathique et serviable", "author": "Alan TVSHT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE", "timestamp": "a year ago"} Je recommande!\n\nSuper expérience de location.\n\nNous avons été prit en charge par une navette à l’aéroport. La prise et la restitution du véhicule a été très rapide.\nNous avons louer une fiat 500 toute neuve.\nMerci à Nestor et Carlos très sympathique et serviable 5 2025-01-25 01:27:48.342124+00 Alan TVSHT \N 1 2026-01-29 04:35:08.957241+00 2026-01-25 01:27:51.504275+00 476 \N google ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB unknown {"text": "Encantados con Antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia nosotros y hacia su trabajo.\\nTambién con Isaac que nos adesoró de todas las gestiones del coche de alquiler y su atención fue estupenda.\\nLa vuelta creemos que la hicimos con Carlos un chico muy cercano q tb era muy agradable y atento con las maletas e indicaciones para nuestro vuelo de vuelta.\\nEn general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era importante, era que no te cobran mucho depósito....Fueron 200€ y te dejan hacerlo con tarjeta de débito, hemos probado en otras compañías y te retienen muchísimo más y obligatoria la tarjeta de crédito, así q para nosotros fue una facilidad...Las furgonetas de traslado y coches de alquiler son nuevos.\\nMuchas gracias desde Cantabria a ese equipo de trabajo tan estupendo y que os siga llendo igual de bien.", "author": "Sandra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB", "timestamp": "a year ago"} Encantados con Antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia nosotros y hacia su trabajo.\nTambién con Isaac que nos adesoró de todas las gestiones del coche de alquiler y su atención fue estupenda.\nLa vuelta creemos que la hicimos con Carlos un chico muy cercano q tb era muy agradable y atento con las maletas e indicaciones para nuestro vuelo de vuelta.\nEn general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era importante, era que no te cobran mucho depósito....Fueron 200€ y te dejan hacerlo con tarjeta de débito, hemos probado en otras compañías y te retienen muchísimo más y obligatoria la tarjeta de crédito, así q para nosotros fue una facilidad...Las furgonetas de traslado y coches de alquiler son nuevos.\nMuchas gracias desde Cantabria a ese equipo de trabajo tan estupendo y que os siga llendo igual de bien. 5 2025-01-25 01:27:48.342128+00 Sandra \N 1 2026-01-29 04:35:08.9673+00 2026-01-25 01:27:51.507491+00 486 \N google ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE unknown {"text": "CUIDADO CON ESTA GENTE! Nos dan un coche que a los 10 minutos se avería (el cual estaba contratado con seguro a todo riesgo), no nos dan coche de sustitución y encima nos hacen un cargo de 1400€ por una avería mecánica que ni ha podido ser valorada porque seguíamos tirados en carretera esperando a que llegara la grúa ( la cual tardo 3 horas en llegar). Simplemente unos ESTAFADORES", "author": "Rafa Martinez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE", "timestamp": "11 months ago"} CUIDADO CON ESTA GENTE! Nos dan un coche que a los 10 minutos se avería (el cual estaba contratado con seguro a todo riesgo), no nos dan coche de sustitución y encima nos hacen un cargo de 1400€ por una avería mecánica que ni ha podido ser valorada porque seguíamos tirados en carretera esperando a que llegara la grúa ( la cual tardo 3 horas en llegar). Simplemente unos ESTAFADORES 1 2025-03-01 01:27:48.342178+00 Rafa Martinez \N 1 2026-01-29 04:35:09.00024+00 2026-01-25 01:27:51.550846+00 1389 \N google ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB unknown {"text": "Grumpy man who looked like he hated everyone coming there… Also we paid for 8 minutes but only got to drive 6 minutes! Noticed it when we looked at the paper with the scores when we got home… There was not a single soul there other than me and my girlfriend, so that they cutted down our time with 2 minutes is NOT ok. It’s never ok, but especially when there are nobody else there. Rip off!\\n\\nAdded a picture to show that we didn’t get 8 minutes. I drove 6 rounds, one of them was 1 min 3 sec and the rest was under 1 min.", "author": "Stein Ove Helset", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB", "timestamp": "Edited a year ago"} Grumpy man who looked like he hated everyone coming there… Also we paid for 8 minutes but only got to drive 6 minutes! Noticed it when we looked at the paper with the scores when we got home… There was not a single soul there other than me and my girlfriend, so that they cutted down our time with 2 minutes is NOT ok. It’s never ok, but especially when there are nobody else there. Rip off!\n\nAdded a picture to show that we didn’t get 8 minutes. I drove 6 rounds, one of them was 1 min 3 sec and the rest was under 1 min. 2 2026-01-30 01:52:39.833374+00 Stein Ove Helset \N 1 2026-01-30 09:54:06.855365+00 2026-01-30 02:01:09.190845+00 478 \N google Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB unknown {"text": "Nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur l'île\\nEt l'accueil très chaleureux", "author": "François Anselm", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB", "timestamp": "5 months ago"} Nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur l'île\nEt l'accueil très chaleureux 5 2025-08-28 01:27:48.342136+00 François Anselm \N 1 2026-01-29 04:35:08.97569+00 2026-01-25 01:27:51.517024+00 479 \N google ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE unknown {"text": "Lief im Grunde alles gut, nur anfangs war der Mitarbeiter recht unfreundlich, da er merhmals nachhakte, warum wir kein teureres Auto mieten wollen. Bei der Rückgabe lief alles reibungslos ab. Mit dem Auto gab es keine Probleme. Man muss aber aufpassen, ob beim Auto bereits Schäden sind.", "author": "Christoph Seidler", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE", "timestamp": "11 months ago"} Lief im Grunde alles gut, nur anfangs war der Mitarbeiter recht unfreundlich, da er merhmals nachhakte, warum wir kein teureres Auto mieten wollen. Bei der Rückgabe lief alles reibungslos ab. Mit dem Auto gab es keine Probleme. Man muss aber aufpassen, ob beim Auto bereits Schäden sind. 3 2025-03-01 01:27:48.342138+00 Christoph Seidler \N 1 2026-01-29 04:35:08.979315+00 2026-01-25 01:27:51.519171+00 480 \N google Ci9DQUlRQUNvZENodHljRjlvT2tKT2FIaExkaTFCZVZaRVkwMHhSMnhhWlVaUFduYxAB unknown {"text": "La peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen un precio en su pagina y luego pagar más de ultima hora en la oficina el que lea esto q ni se le ocurra hacer algo con esta empresa", "author": "gego16", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKT2FIaExkaTFCZVZaRVkwMHhSMnhhWlVaUFduYxAB", "timestamp": "4 months ago"} La peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen un precio en su pagina y luego pagar más de ultima hora en la oficina el que lea esto q ni se le ocurra hacer algo con esta empresa 1 2025-09-27 01:27:48.342142+00 gego16 \N 1 2026-01-29 04:35:08.982816+00 2026-01-25 01:27:51.522208+00 481 \N google ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB unknown {"text": "Muy contento con el servicio , el personal espectacular , muy simpático y amable ! El coche muy nuevo y en muy buenas condiciones\\nMuchas gracias", "author": "Aitor Aguirre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB", "timestamp": "11 months ago"} Muy contento con el servicio , el personal espectacular , muy simpático y amable ! El coche muy nuevo y en muy buenas condiciones\nMuchas gracias 5 2025-03-01 01:27:48.342144+00 Aitor Aguirre \N 1 2026-01-29 04:35:08.985231+00 2026-01-25 01:27:51.524572+00 482 \N google ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE unknown {"text": "Muy buena experiencia. Alquilamos un coche para conocer la islaa muy buen precio.\\nHubo un poco de confusión al principio para que nos recogiera el bus.\\nEl bus se toma en el punto de encuentro que hay si sales a la calle por la puerta 2 de Salidas.\\n\\nTanto Antonio como Dany que nos atendieron fueron muy amables.\\nEsperamos volver :)", "author": "Ainara MG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE", "timestamp": "a year ago"} Muy buena experiencia. Alquilamos un coche para conocer la islaa muy buen precio.\nHubo un poco de confusión al principio para que nos recogiera el bus.\nEl bus se toma en el punto de encuentro que hay si sales a la calle por la puerta 2 de Salidas.\n\nTanto Antonio como Dany que nos atendieron fueron muy amables.\nEsperamos volver :) 5 2025-01-25 01:27:48.342146+00 Ainara MG \N 1 2026-01-29 04:35:08.988039+00 2026-01-25 01:27:51.529981+00 483 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB unknown {"text": "Nos atendieron rápido y nos dieron todo tipo de facilidades. El coche muy nuevo y limpio. Sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos consejos para nuestra estancia.", "author": "ElíasMB", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB", "timestamp": "a year ago"} Nos atendieron rápido y nos dieron todo tipo de facilidades. El coche muy nuevo y limpio. Sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos consejos para nuestra estancia. 5 2025-01-25 01:27:48.342148+00 ElíasMB \N 1 2026-01-29 04:35:08.990162+00 2026-01-25 01:27:51.532847+00 485 \N google Ci9DQUlRQUNvZENodHljRjlvT2w4MVVuZzRlazlJVkVseWQzRTNZeTFUVlZSdmJVRRAB unknown {"text": "Un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabajadores y el precio delo más competitivo. No se puede pedir más", "author": "Antonio García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w4MVVuZzRlazlJVkVseWQzRTNZeTFUVlZSdmJVRRAB", "timestamp": "Edited 5 months ago"} Un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabajadores y el precio delo más competitivo. No se puede pedir más 5 2026-01-25 01:27:48.342152+00 Antonio García \N 1 2026-01-29 04:35:08.996969+00 2026-01-25 01:27:51.537598+00 1328 \N google ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB unknown {"text": "Fabulous track and an exciting way to pass time in the region. Well organised system, observing safety rules. You can even drive with your children. For €12 or less you get 10 circuits of excitement and are provided with a race helmet. Highly recommended.", "author": "Paul Miller", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB", "timestamp": "6 years ago"} Fabulous track and an exciting way to pass time in the region. Well organised system, observing safety rules. You can even drive with your children. For €12 or less you get 10 circuits of excitement and are provided with a race helmet. Highly recommended. 5 2020-02-01 01:52:39.833374+00 Paul Miller \N 1 2026-01-30 09:54:06.667547+00 2026-01-30 02:01:08.98205+00 1591 \N google ChdDSUhNMG9nS0VJQ0FnSUQyMU1uZXJBRRAB unknown {"text": "Absolutely 💯 fun", "author": "Melanie Lucas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMU1uZXJBRRAB", "timestamp": "3 years ago"} Absolutely 💯 fun 5 2023-01-31 01:52:39.833374+00 Melanie Lucas \N 1 2026-01-30 09:54:07.495169+00 2026-01-30 02:01:09.938031+00 490 \N google Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB unknown {"text": "Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto. 50 minutos esperando en el aeropuerto para ser recogidos.", "author": "Cristina del Carmen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB", "timestamp": "a month ago"} Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto. 50 minutos esperando en el aeropuerto para ser recogidos. 1 2025-12-26 01:27:48.342195+00 Cristina del Carmen \N 1 2026-01-29 04:35:09.017289+00 2026-01-25 01:27:51.594541+00 491 \N google ChdDSUhNMG9nS0VJQ0FnTUNnbWJhNzN3RRAB unknown {"text": "Todo súper bien, el coche iba perfecto y el personal muy amable. Kevin súper apañao y simpático, esperamos volver y que nos recoja.\\nSaludos desde Málaga😎\\nAhí tienes la reseña que no perdí la tarjetita", "author": "Paula Aragones", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnbWJhNzN3RRAB", "timestamp": "11 months ago"} Todo súper bien, el coche iba perfecto y el personal muy amable. Kevin súper apañao y simpático, esperamos volver y que nos recoja.\nSaludos desde Málaga😎\nAhí tienes la reseña que no perdí la tarjetita 5 2025-03-01 01:27:48.342204+00 Paula Aragones \N 1 2026-01-29 04:35:09.019559+00 2026-01-25 01:27:51.603467+00 492 \N google ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB unknown {"text": "Carmen y Néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un inicio de viaje buenísimo con su amabilidad y cercanía. La entrega del coche fue sencilla gracias a Antonio y a Dani. Un equipo encantador que te hace sentir muy bien ❤️ ojalá siga así!", "author": "Sara Velasco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB", "timestamp": "a year ago"} Carmen y Néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un inicio de viaje buenísimo con su amabilidad y cercanía. La entrega del coche fue sencilla gracias a Antonio y a Dani. Un equipo encantador que te hace sentir muy bien ❤️ ojalá siga así! 5 2025-01-25 01:27:48.342213+00 Sara Velasco \N 1 2026-01-29 04:35:09.022808+00 2026-01-25 01:27:51.606192+00 493 \N google ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB unknown {"text": "Todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. Tanto al recoger el coche (Dany/Fran) como al devolverlo (dos personas distintas), todo facilidades y amabilidad. No está en el aeropuerto, pero ofrecen bus en 5 minutos. Totalmente recomendable", "author": "ignacio moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB", "timestamp": "a year ago"} Todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. Tanto al recoger el coche (Dany/Fran) como al devolverlo (dos personas distintas), todo facilidades y amabilidad. No está en el aeropuerto, pero ofrecen bus en 5 minutos. Totalmente recomendable 5 2025-01-25 01:27:48.342222+00 ignacio moreno \N 1 2026-01-29 04:35:09.02615+00 2026-01-25 01:27:51.609598+00 494 \N google Ci9DQUlRQUNvZENodHljRjlvT25WSlJGRjZlbXMxUlcwME9VOXhVSFJFU0VkUU1IYxAB unknown {"text": "Coche nuevo, limpio y fragante. Ningún problema", "author": "edu marco", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WSlJGRjZlbXMxUlcwME9VOXhVSFJFU0VkUU1IYxAB", "timestamp": "3 months ago"} Coche nuevo, limpio y fragante. Ningún problema 5 2025-10-27 01:27:48.342229+00 edu marco \N 1 2026-01-29 04:35:09.029039+00 2026-01-25 01:27:51.616098+00 495 \N google Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB unknown {"text": "Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes, sin duda repetiremos, el coche impoluto y nuevo", "author": "Fanny Guamán Landívar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB", "timestamp": "a month ago"} Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes, sin duda repetiremos, el coche impoluto y nuevo 5 2025-12-26 01:27:48.342232+00 Fanny Guamán Landívar \N 1 2026-01-29 04:35:09.031254+00 2026-01-25 01:27:51.618227+00 497 \N google ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE unknown {"text": "Muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del aeropuerto a su oficina y las personas que te atienden en ella. Gracias Isaac y gracias Antonio , son muy amables 🙌🏼😊.\\nTambién te regresan al aeropuerto cuando entregas el coche .\\nBuen trato, buenos precios .", "author": "STEFFY G. R.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE", "timestamp": "a year ago"} Muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del aeropuerto a su oficina y las personas que te atienden en ella. Gracias Isaac y gracias Antonio , son muy amables 🙌🏼😊.\nTambién te regresan al aeropuerto cuando entregas el coche .\nBuen trato, buenos precios . 5 2025-01-25 01:27:48.342237+00 STEFFY G. R. \N 1 2026-01-29 04:35:09.036964+00 2026-01-25 01:27:51.623635+00 498 \N google ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE unknown {"text": "Ha sido un placer , coger el coche con ClickRent, servicio formidable te recogen en el aeropuerto y te vuelven a llevar. El personal es amable y encantador. Antonio, Carmen y Néstor fueron en magnífico con nosotros . Recomiendo alquilar con ellos", "author": "Miguel Villegas Gallardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE", "timestamp": "a year ago"} Ha sido un placer , coger el coche con ClickRent, servicio formidable te recogen en el aeropuerto y te vuelven a llevar. El personal es amable y encantador. Antonio, Carmen y Néstor fueron en magnífico con nosotros . Recomiendo alquilar con ellos 5 2025-01-25 01:27:48.34225+00 Miguel Villegas Gallardo \N 1 2026-01-29 04:35:09.039272+00 2026-01-25 01:27:51.626953+00 1379 \N google review_71 unknown {"text": "Track is good but €20 for 8 minutes is a lot and the track is small. Longer time would be better", "author": "Emma Lacy", "rating": 3, "source": "dom", "timestamp": "8 months ago"} Track is good but €20 for 8 minutes is a lot and the track is small. Longer time would be better 3 2025-06-04 00:52:39.833374+00 Emma Lacy \N 1 2026-01-30 09:54:06.827804+00 2026-01-30 02:01:09.157153+00 1390 \N google ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE unknown {"text": "If you're a karting lover don't come here, safety is just not there. You can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. Be aware that there are no marshalls with flags on the track. Maintenance of the karts is not great. They could do a lot better for such a nice track.", "author": "David Van", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE", "timestamp": "a year ago"} If you're a karting lover don't come here, safety is just not there. You can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. Be aware that there are no marshalls with flags on the track. Maintenance of the karts is not great. They could do a lot better for such a nice track. 1 2025-01-30 01:52:39.833374+00 David Van \N 1 2026-01-30 09:54:06.85826+00 2026-01-30 02:01:09.193714+00 501 \N google Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB unknown {"text": "Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática.", "author": "Pedroluis Santana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB", "timestamp": "a month ago"} Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática. 5 2025-12-26 01:27:48.342276+00 Pedroluis Santana \N 1 2026-01-29 04:35:09.046513+00 2026-01-25 01:27:51.636392+00 502 \N google ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE unknown {"text": "Todo muy bien muy agradecidos muy buena la empresa y el personal Dani, Fran y el otro chico que nos buscó en aeropuerto muy atentos y el coche una pasada totalmente nuevo lo estrenamos muchas gracias", "author": "alejandro serrano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE", "timestamp": "a year ago"} Todo muy bien muy agradecidos muy buena la empresa y el personal Dani, Fran y el otro chico que nos buscó en aeropuerto muy atentos y el coche una pasada totalmente nuevo lo estrenamos muchas gracias 5 2025-01-25 01:27:48.342284+00 alejandro serrano \N 1 2026-01-29 04:35:09.048405+00 2026-01-25 01:27:51.638907+00 503 \N google ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB unknown {"text": "Servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el que se apreciaba ligeramente ya que los daños que nos atribuyen no se ven a simple vista. Tocará reclamar, no lo recomiendo para nada.", "author": "Miguel", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB", "timestamp": "8 months ago"} Servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el que se apreciaba ligeramente ya que los daños que nos atribuyen no se ven a simple vista. Tocará reclamar, no lo recomiendo para nada. 1 2025-05-30 01:27:48.34229+00 Miguel \N 1 2026-01-29 04:35:09.051035+00 2026-01-25 01:27:51.642412+00 504 \N google ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB unknown {"text": "Alles gut, guter Anbieter, das einzige Problem, Shuttle zum Flughafen funktioniert gut, aber vom Flughafen zu der Firma mussten wir zu Fuß laufen, per Telefon kann man unmöglich jemanden erreichen um Shuttle zu bestellen, antwortet immer Computer, keine Chance..", "author": "Jonny Star", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB", "timestamp": "10 months ago"} Alles gut, guter Anbieter, das einzige Problem, Shuttle zum Flughafen funktioniert gut, aber vom Flughafen zu der Firma mussten wir zu Fuß laufen, per Telefon kann man unmöglich jemanden erreichen um Shuttle zu bestellen, antwortet immer Computer, keine Chance.. 5 2025-03-31 01:27:48.342292+00 Jonny Star \N 1 2026-01-29 04:35:09.053446+00 2026-01-25 01:27:51.647464+00 505 \N google ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB unknown {"text": "No recomiendo. Alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para reparar un raspón en la parte inferior del parachoques el cual ya estaba. Ponen los alquileres muy baratos pero luego te estafan.", "author": "Nacho", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB", "timestamp": "8 months ago"} No recomiendo. Alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para reparar un raspón en la parte inferior del parachoques el cual ya estaba. Ponen los alquileres muy baratos pero luego te estafan. 1 2025-05-30 01:27:48.342294+00 Nacho \N 1 2026-01-29 04:35:09.056228+00 2026-01-25 01:27:51.650768+00 507 \N google ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE unknown {"text": "Unser Flug hatte Verspätung deswegen konnten wir nicht zu der vereinbarten Uhrzeit da sein. Bei Ankunft haben wir jedoch uns Dumm gesucht wo der Shuttle Minibus sein konnte. Wir haben jeden gefragt. Keiner kennt diese Firma. Wir wurden von oben nach unten geschickt und wieder zurück. Keine Person kein Minibus war vor Ort. Keiner hat uns versucht zu erreichen. Keiner hatte eine Aufschrift mir unseren Namen. Eins müsst Ihr wissen. Diese Firma hat KEIN Büro oder Office am Flughafen wo ihr jemanden fragen könnt. Keine Aufschrift mit Click rent NICHTS. Anrufe werden nicht angenommen. Oder es wird gesagt sie arbeiten von 8-20 Uhr und es wird wieder aufgelegt. Nach einer Stunde nach dem wir den Gang am Flughafen zig mal abgelaufen haben und nebenbei telefoniert haben. Haben wir ein anderes Auto von Sixt gemietet.", "author": "Emel Isciler", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE", "timestamp": "a year ago"} Unser Flug hatte Verspätung deswegen konnten wir nicht zu der vereinbarten Uhrzeit da sein. Bei Ankunft haben wir jedoch uns Dumm gesucht wo der Shuttle Minibus sein konnte. Wir haben jeden gefragt. Keiner kennt diese Firma. Wir wurden von oben nach unten geschickt und wieder zurück. Keine Person kein Minibus war vor Ort. Keiner hat uns versucht zu erreichen. Keiner hatte eine Aufschrift mir unseren Namen. Eins müsst Ihr wissen. Diese Firma hat KEIN Büro oder Office am Flughafen wo ihr jemanden fragen könnt. Keine Aufschrift mit Click rent NICHTS. Anrufe werden nicht angenommen. Oder es wird gesagt sie arbeiten von 8-20 Uhr und es wird wieder aufgelegt. Nach einer Stunde nach dem wir den Gang am Flughafen zig mal abgelaufen haben und nebenbei telefoniert haben. Haben wir ein anderes Auto von Sixt gemietet. 1 2025-01-25 01:27:48.342298+00 Emel Isciler \N 1 2026-01-29 04:35:09.064095+00 2026-01-25 01:27:51.657231+00 1321 \N google ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE unknown {"text": "Es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos. Hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito. La atención por parte de Roberta y su hija es estupenda, te asesoran que motor de coche coger y son muy amables. En los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el atardecer, porque no hace tanto calor. Y está abierto hasta las once de la noche. Muy recomendado!!!", "author": "Marta Pascua", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE", "timestamp": "Edited 3 years ago"} Es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos. Hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito. La atención por parte de Roberta y su hija es estupenda, te asesoran que motor de coche coger y son muy amables. En los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el atardecer, porque no hace tanto calor. Y está abierto hasta las once de la noche. Muy recomendado!!! 5 2026-01-30 01:52:39.833374+00 Marta Pascua \N 1 2026-01-30 09:54:06.646077+00 2026-01-30 02:01:08.956334+00 1332 \N google ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE unknown {"text": "Brilliant fun this morning. Very friendly staff. Great karts and a fun track. Fair value too. We will be back again.", "author": "Michael Farrell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE", "timestamp": "a year ago"} Brilliant fun this morning. Very friendly staff. Great karts and a fun track. Fair value too. We will be back again. 5 2025-01-30 01:52:39.833374+00 Michael Farrell \N 1 2026-01-30 09:54:06.678777+00 2026-01-30 02:01:08.993681+00 1380 \N google review_72 unknown {"text": "Class experience, great staff, great track. Couldn’t ask for more.", "author": "Darcy Lawler", "rating": 5, "source": "dom", "timestamp": "3 years ago"} Class experience, great staff, great track. Couldn’t ask for more. 5 2023-01-31 01:52:39.833374+00 Darcy Lawler \N 1 2026-01-30 09:54:06.831662+00 2026-01-30 02:01:09.161159+00 510 \N google ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB unknown {"text": "Sehr zufrieden,\\nSchnell zuverlässig und freundlich. Habe das Auto für 5 Tage gemietet mit Vollkasko bei jeglichen Schäden. Die Kaution bei der Abgabe sofort erstattet bekommen. Nur zu empfehlen. Danke an Antonio und Carmen Isaac.", "author": "Firat Sahin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB", "timestamp": "a year ago"} Sehr zufrieden,\nSchnell zuverlässig und freundlich. Habe das Auto für 5 Tage gemietet mit Vollkasko bei jeglichen Schäden. Die Kaution bei der Abgabe sofort erstattet bekommen. Nur zu empfehlen. Danke an Antonio und Carmen Isaac. 5 2025-01-25 01:27:48.342326+00 Firat Sahin \N 1 2026-01-29 04:35:09.074701+00 2026-01-25 01:27:51.668662+00 511 \N google ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE unknown {"text": "Super obsługa. Auto zarezerwowane wcześniej przez internet. Żadnych problemów. Najtańszy depozyt. Mocno polecam. Bus jedzie z lotniska ale warto się przejść bo jest blisko.", "author": "Robert Grochowski", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE", "timestamp": "9 months ago"} Super obsługa. Auto zarezerwowane wcześniej przez internet. Żadnych problemów. Najtańszy depozyt. Mocno polecam. Bus jedzie z lotniska ale warto się przejść bo jest blisko. 5 2025-04-30 01:27:48.342335+00 Robert Grochowski \N 1 2026-01-29 04:35:09.078197+00 2026-01-25 01:27:51.672196+00 513 \N google ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE unknown {"text": "Empresa seria, coches de calidad y personal cualificado y serio.\\nIniciamos nuestras vacaciones alquilando en CLICKRENT, nos vinieron a buscar Antonio y Dani al aeropuerto, 2 chicos muy amables y profesionales, nos recomendaron de camino a CLICKRENT varios sitios donde comer, visitar, etc.. Al llegar a CLICKRENT nos atendieron Carmen y Nestor, muy bien también, nos explicaron toda clase de dudas etc... Sin duda volvería a alquilar con ellos.\\nCoches nuevos, en condiciones y limpios.\\nGracias por todo equipo.", "author": "Eloi G", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE", "timestamp": "a year ago"} Empresa seria, coches de calidad y personal cualificado y serio.\nIniciamos nuestras vacaciones alquilando en CLICKRENT, nos vinieron a buscar Antonio y Dani al aeropuerto, 2 chicos muy amables y profesionales, nos recomendaron de camino a CLICKRENT varios sitios donde comer, visitar, etc.. Al llegar a CLICKRENT nos atendieron Carmen y Nestor, muy bien también, nos explicaron toda clase de dudas etc... Sin duda volvería a alquilar con ellos.\nCoches nuevos, en condiciones y limpios.\nGracias por todo equipo. 5 2025-01-25 01:27:48.342344+00 Eloi G \N 1 2026-01-29 04:35:09.086862+00 2026-01-25 01:27:51.684337+00 514 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB unknown {"text": "Coche nuevo y en perfectas condiciones. Trato muy amable de personas que se esfuerzan para que el cliente quede satisfecho. Tuve un problema con el horario de cierre, pero no fueron ellos los culpables. Se debía a un error del portal donde reservé. Muy buen comportamiento con el cliente, especialmente Dani y Antonio.", "author": "J.M. Aviram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB", "timestamp": "a year ago"} Coche nuevo y en perfectas condiciones. Trato muy amable de personas que se esfuerzan para que el cliente quede satisfecho. Tuve un problema con el horario de cierre, pero no fueron ellos los culpables. Se debía a un error del portal donde reservé. Muy buen comportamiento con el cliente, especialmente Dani y Antonio. 5 2025-01-25 01:27:48.342348+00 J.M. Aviram \N 1 2026-01-29 04:35:09.089058+00 2026-01-25 01:27:51.686536+00 515 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE unknown {"text": "Experiencia inmejorable, el coche nuevecito y la atención fantástica. Antonio, Carmen, y el resto de gente que nos atendió fueron súper amables. Tenemos intención de volver a Gran Canaria y sin duda alquilaremos el coche con ellos otra vez.", "author": "Naïs Álvarez Cardoso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE", "timestamp": "a year ago"} Experiencia inmejorable, el coche nuevecito y la atención fantástica. Antonio, Carmen, y el resto de gente que nos atendió fueron súper amables. Tenemos intención de volver a Gran Canaria y sin duda alquilaremos el coche con ellos otra vez. 5 2025-01-25 01:27:48.34235+00 Naïs Álvarez Cardoso \N 1 2026-01-29 04:35:09.091399+00 2026-01-25 01:27:51.689319+00 1383 \N google review_75 unknown {"text": "Great set up, we did the Grand Prix. Really good, lap times, well organised, decent go karts", "author": "Dave Tomlinson", "rating": 5, "source": "dom", "timestamp": "7 months ago"} Great set up, we did the Grand Prix. Really good, lap times, well organised, decent go karts 5 2025-07-04 00:52:39.833374+00 Dave Tomlinson \N 1 2026-01-30 09:54:06.840077+00 2026-01-30 02:01:09.174657+00 517 \N google ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB unknown {"text": "Carmen nos atendió genial en la oficina. El chico que nos llevó del aeropuerto a la oficina y viceversa (Antonio) muy majo y atento\\nSon muy claros explicándote las cosas y eso se agradece\\nNos tocó un coche nuevo a estrenar\\nAconsejo rellenar el depósito en Canary Oil", "author": "Elena Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB", "timestamp": "a year ago"} Carmen nos atendió genial en la oficina. El chico que nos llevó del aeropuerto a la oficina y viceversa (Antonio) muy majo y atento\nSon muy claros explicándote las cosas y eso se agradece\nNos tocó un coche nuevo a estrenar\nAconsejo rellenar el depósito en Canary Oil 5 2025-01-25 01:27:48.342357+00 Elena Rodríguez \N 1 2026-01-29 04:35:09.097793+00 2026-01-25 01:27:51.699654+00 518 \N google ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE unknown {"text": "Voiture louée pour une semaine en février. Voiture de 6000km, aucun défaut, prise en charge relativement rapide, retour sans encombre et prix très raisonnable.\\n\\nOn conseille vivement", "author": "Victor Brondino", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE", "timestamp": "11 months ago"} Voiture louée pour une semaine en février. Voiture de 6000km, aucun défaut, prise en charge relativement rapide, retour sans encombre et prix très raisonnable.\n\nOn conseille vivement 5 2025-03-01 01:27:48.342364+00 Victor Brondino \N 1 2026-01-29 04:35:09.099749+00 2026-01-25 01:27:51.701658+00 519 \N google ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE unknown {"text": "Inmejorable servicio, coches a estrenar , ademas los chicos super majos otro punto importante muy bien de precio", "author": "Isabel Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE", "timestamp": "a year ago"} Inmejorable servicio, coches a estrenar , ademas los chicos super majos otro punto importante muy bien de precio 5 2025-01-25 01:27:48.342378+00 Isabel Ramos \N 1 2026-01-29 04:35:09.103481+00 2026-01-25 01:27:51.704968+00 520 \N google ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB unknown {"text": "Hallo zusammen , bitte diese Unternehmen nicht buchen wegen Schäden die nicht vorhanden waren und über die Vollkasko abgerechnet wurden!!!\\nSie müssen die Schäden akribisch dokumentieren Foto und Video dringend erforderlich und niemals mit Selbeteiligung buchen.", "author": "Andre Eckert", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB", "timestamp": "11 months ago"} Hallo zusammen , bitte diese Unternehmen nicht buchen wegen Schäden die nicht vorhanden waren und über die Vollkasko abgerechnet wurden!!!\nSie müssen die Schäden akribisch dokumentieren Foto und Video dringend erforderlich und niemals mit Selbeteiligung buchen. 1 2025-03-01 01:27:48.342387+00 Andre Eckert \N 1 2026-01-29 04:35:09.105873+00 2026-01-25 01:27:51.709992+00 521 \N google ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE unknown {"text": "Coche de gama muy inferior al contratado, sin previo aviso antes de contratar. Dificultad para obtener la información sobre punto de recogida. Exigencia de un seguro añadido para la cobertura de llantas y cristales.", "author": "Diego De Las Fuentes", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE", "timestamp": "11 months ago"} Coche de gama muy inferior al contratado, sin previo aviso antes de contratar. Dificultad para obtener la información sobre punto de recogida. Exigencia de un seguro añadido para la cobertura de llantas y cristales. 1 2025-03-01 01:27:48.342394+00 Diego De Las Fuentes \N 1 2026-01-29 04:35:09.108704+00 2026-01-25 01:27:51.715551+00 522 \N google ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE unknown {"text": "Tout c'est bien passé pour nous, merci à Dany et Antonio pour leur professionnalisme.\\npour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre ,juste la caution de 1000 euros.\\nVoiture à rendre avec le plein sans le nettoyage à faire .", "author": "Jeremy Marguerit", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE", "timestamp": "a year ago"} Tout c'est bien passé pour nous, merci à Dany et Antonio pour leur professionnalisme.\npour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre ,juste la caution de 1000 euros.\nVoiture à rendre avec le plein sans le nettoyage à faire . 5 2025-01-25 01:27:48.342397+00 Jeremy Marguerit \N 1 2026-01-29 04:35:09.110834+00 2026-01-25 01:27:51.718212+00 523 \N google ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB unknown {"text": "Un servicio más que excepcional; los chicos que me atendieron Carlos y Antonio fueron super amables y muy profesionales. La flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable. Muchas gracias por todo y repetiré sin duda", "author": "Francisco J. S. Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB", "timestamp": "a year ago"} Un servicio más que excepcional; los chicos que me atendieron Carlos y Antonio fueron super amables y muy profesionales. La flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable. Muchas gracias por todo y repetiré sin duda 5 2025-01-25 01:27:48.342399+00 Francisco J. S. Hernandez \N 1 2026-01-29 04:35:09.113132+00 2026-01-25 01:27:51.72059+00 524 \N google ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB unknown {"text": "Coche impecable y trato de 10. Carmen, Nestor y Antonio lo pusieron todo muy fácil. La información para llegar al microbus de cortesía es un poco confusa. Para el aeropuerto de Las Palmas hay que subir a la primera planta para llegar al punto de encuentro.", "author": "Miguel Rodríguez Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB", "timestamp": "a year ago"} Coche impecable y trato de 10. Carmen, Nestor y Antonio lo pusieron todo muy fácil. La información para llegar al microbus de cortesía es un poco confusa. Para el aeropuerto de Las Palmas hay que subir a la primera planta para llegar al punto de encuentro. 5 2025-01-25 01:27:48.342401+00 Miguel Rodríguez Romero \N 1 2026-01-29 04:35:09.115876+00 2026-01-25 01:27:51.723499+00 535 \N google ChdDSUhNMG9nS0VJQ0FnSUNIOVBEQjlBRRAB unknown {"text": "Reservamos dos coches con ClickRent para recorrer la isla, y fue la mejor decisión. Coches muy cuidados y un personal excelente, especialmente Néstor, Carlos y Fran que nos ganaron con su amabilidad. ¡Repetiremos seguro!", "author": "NEUS GARCÍA SABATER", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOVBEQjlBRRAB", "timestamp": "a year ago"} Reservamos dos coches con ClickRent para recorrer la isla, y fue la mejor decisión. Coches muy cuidados y un personal excelente, especialmente Néstor, Carlos y Fran que nos ganaron con su amabilidad. ¡Repetiremos seguro! 5 2025-01-25 01:27:48.342451+00 NEUS GARCÍA SABATER \N 1 2026-01-29 04:35:09.165271+00 2026-01-25 01:27:51.763553+00 526 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB unknown {"text": "Ze vragen 1200 euro voor een bluts die al aanwezig was. Opletten!", "author": "Wolf Hernalsteen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB", "timestamp": "3 months ago"} Ze vragen 1200 euro voor een bluts die al aanwezig was. Opletten! 1 2025-10-27 01:27:48.342405+00 Wolf Hernalsteen \N 1 2026-01-29 04:35:09.122312+00 2026-01-25 01:27:51.733387+00 527 \N google ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB unknown {"text": "Die Abholung war etwas schwierig, da wir den Treffpunkt am Flughafen erst später gefunden haben.\\nRückgabe ohne Probleme. Gutes Auto (VW Taigo).", "author": "M.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB", "timestamp": "a year ago"} Die Abholung war etwas schwierig, da wir den Treffpunkt am Flughafen erst später gefunden haben.\nRückgabe ohne Probleme. Gutes Auto (VW Taigo). 5 2025-01-25 01:27:48.342407+00 M. \N 1 2026-01-29 04:35:09.124825+00 2026-01-25 01:27:51.735252+00 528 \N google ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB unknown {"text": "Nuestra experiencia fue buena. Atienden rápido. Muy amables. Te recogen y te llevan al aeropuerto en un vehículo de la empresa.", "author": "Nuria Monio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB", "timestamp": "9 months ago"} Nuestra experiencia fue buena. Atienden rápido. Muy amables. Te recogen y te llevan al aeropuerto en un vehículo de la empresa. 5 2025-04-30 01:27:48.342409+00 Nuria Monio \N 1 2026-01-29 04:35:09.12769+00 2026-01-25 01:27:51.737081+00 529 \N google ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE unknown {"text": "Magnífico servicio. Antonio y Néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una amabilidad magnífica. E Isabel nos solucionó todo en la oficina en nada de tiempo. Si volvemos por ahí, sin duda repetiremos", "author": "Manuela Gonzalez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE", "timestamp": "a year ago"} Magnífico servicio. Antonio y Néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una amabilidad magnífica. E Isabel nos solucionó todo en la oficina en nada de tiempo. Si volvemos por ahí, sin duda repetiremos 5 2025-01-25 01:27:48.342411+00 Manuela Gonzalez Ortega \N 1 2026-01-29 04:35:09.13116+00 2026-01-25 01:27:51.739955+00 530 \N google ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB unknown {"text": "Trato inmejorable de Carlos, Antonio y Dany. Tres personas muy amables que se portaron conmigo en todo momento de 10. Cabe destacar que Dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas técnicos con el programa, hizo todo lo posible para que se llevara a cabo dicha ampliación, muy preocupado por dar un buen servicio.\\nSe nota que dan todo por su empresa y los clientes, a día de hoy esto se agradece.", "author": "Julio Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB", "timestamp": "a year ago"} Trato inmejorable de Carlos, Antonio y Dany. Tres personas muy amables que se portaron conmigo en todo momento de 10. Cabe destacar que Dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas técnicos con el programa, hizo todo lo posible para que se llevara a cabo dicha ampliación, muy preocupado por dar un buen servicio.\nSe nota que dan todo por su empresa y los clientes, a día de hoy esto se agradece. 5 2025-01-25 01:27:48.342416+00 Julio Gonzalez \N 1 2026-01-29 04:35:09.13461+00 2026-01-25 01:27:51.743031+00 531 \N google ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE unknown {"text": "El servicio genial! Somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un poco lio para buscar el punto de recogida, es salir por la segunda planta del aeropuerto puerta 2 y todo recto! NESTOR , FRAN Y DANY, gracias por el servicio! Y la mujer que nos atendió a la vuelta qu no recordamos su nombre. Hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. Si volvmos a Gran Canaria alquilamos aqui fijo.", "author": "eva gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE", "timestamp": "a year ago"} El servicio genial! Somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un poco lio para buscar el punto de recogida, es salir por la segunda planta del aeropuerto puerta 2 y todo recto! NESTOR , FRAN Y DANY, gracias por el servicio! Y la mujer que nos atendió a la vuelta qu no recordamos su nombre. Hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. Si volvmos a Gran Canaria alquilamos aqui fijo. 5 2025-01-25 01:27:48.342425+00 eva gonzalez \N 1 2026-01-29 04:35:09.140378+00 2026-01-25 01:27:51.750754+00 532 \N google ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB unknown {"text": "Experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte el dinero , por no decir el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran ) y mal , a una velocidad excesiva. No volvería a usar ni recomendaria a nadie .", "author": "Silvia Olivera", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB", "timestamp": "a year ago"} Experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte el dinero , por no decir el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran ) y mal , a una velocidad excesiva. No volvería a usar ni recomendaria a nadie . 1 2025-01-25 01:27:48.342434+00 Silvia Olivera \N 1 2026-01-29 04:35:09.145161+00 2026-01-25 01:27:51.753807+00 533 \N google Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB unknown {"text": "Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen.", "author": "Judith Class", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB", "timestamp": "a month ago"} Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen. 5 2025-12-26 01:27:48.342442+00 Judith Class \N 1 2026-01-29 04:35:09.147427+00 2026-01-25 01:27:51.75555+00 534 \N google Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB unknown {"text": "Annoncer sur Booking 43 €.pour 10 jours\\nPour payer finalement 283 €", "author": "Aurelie Ottolini", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB", "timestamp": "2 months ago"} Annoncer sur Booking 43 €.pour 10 jours\nPour payer finalement 283 € 1 2025-11-26 01:27:48.342449+00 Aurelie Ottolini \N 1 2026-01-29 04:35:09.156755+00 2026-01-25 01:27:51.758292+00 1453 \N google ChZDSUhNMG9nS0VJQ0FnSUNHbXBhQ2V3EAE unknown {"text": "Proper karting track and decent karts. Staff all quite friendly and I thought it was good value for money. Various levels of karts. The 2seater karts for kids were great fun too.", "author": "Eoin Tyrrell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHbXBhQ2V3EAE", "timestamp": "4 years ago"} Proper karting track and decent karts. Staff all quite friendly and I thought it was good value for money. Various levels of karts. The 2seater karts for kids were great fun too. 5 2022-01-31 01:52:39.833374+00 Eoin Tyrrell \N 1 2026-01-30 09:54:07.032974+00 2026-01-30 02:01:09.400567+00 539 \N google Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB unknown {"text": "Magnifico el precio, pero mejor aún el trato recibido por parte del personal. 100% recomendable", "author": "miguel paz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB", "timestamp": "5 months ago"} Magnifico el precio, pero mejor aún el trato recibido por parte del personal. 100% recomendable 5 2025-08-28 01:27:48.342461+00 miguel paz \N 1 2026-01-29 04:35:09.177551+00 2026-01-25 01:27:51.777975+00 540 \N google ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE unknown {"text": "Muy buen servicio de Carmen, muy amable y rapida, además nos han encantado las recomendaciones de Antonio sobre que ver en la isla.\\nPor otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. Excelente servicio.", "author": "ale piku", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE", "timestamp": "a year ago"} Muy buen servicio de Carmen, muy amable y rapida, además nos han encantado las recomendaciones de Antonio sobre que ver en la isla.\nPor otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. Excelente servicio. 5 2025-01-25 01:27:48.342463+00 ale piku \N 1 2026-01-29 04:35:09.180065+00 2026-01-25 01:27:51.783048+00 541 \N google ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE unknown {"text": "La comunicación y la acogida ha sido increíble! Nos vinieron a buscar al aeropuerto y también nos llevaron al finalizar las vacaciones. La atención ha sido excelente tanto por parte de Isa e Isaac, como por parte de Antonio y Néstor. Sin duda repetiremos!! Gracias por todo ☺️", "author": "carmen Buzón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE", "timestamp": "a year ago"} La comunicación y la acogida ha sido increíble! Nos vinieron a buscar al aeropuerto y también nos llevaron al finalizar las vacaciones. La atención ha sido excelente tanto por parte de Isa e Isaac, como por parte de Antonio y Néstor. Sin duda repetiremos!! Gracias por todo ☺️ 5 2025-01-25 01:27:48.342465+00 carmen Buzón \N 1 2026-01-29 04:35:09.182146+00 2026-01-25 01:27:51.785386+00 542 \N google ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE unknown {"text": "Gran servicio, gran atención, buenos precios. Desde luego que volveré a reservar con esta empresa cuando vuelva a Gran Canaria o me coincida en otro aeropuerto.\\n\\nMi experiencia con el staff de Gran Canaria es de 5 estrellas 🌟", "author": "Martín Alejandro Bobadilla Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE", "timestamp": "a year ago"} Gran servicio, gran atención, buenos precios. Desde luego que volveré a reservar con esta empresa cuando vuelva a Gran Canaria o me coincida en otro aeropuerto.\n\nMi experiencia con el staff de Gran Canaria es de 5 estrellas 🌟 5 2025-01-25 01:27:48.342467+00 Martín Alejandro Bobadilla Pérez \N 1 2026-01-29 04:35:09.18538+00 2026-01-25 01:27:51.788048+00 543 \N google ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE unknown {"text": "Muy mala experiencia, contraté un Peugeot 5008 o similar y me dieron un Citroën Berlingo, primero querían hacerme ver que era la misma categoría, después culparon a Booking, en ningún momento valoraron solucionar el problema incluso planteando yo la posibilidad de pagar un suplemento, muy mala atención, la chica que me atendió era bastante desagradable, una mala experiencia la verdad y pa colmo la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie.", "author": "Fran Moreno, Prozovet", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE", "timestamp": "9 months ago"} Muy mala experiencia, contraté un Peugeot 5008 o similar y me dieron un Citroën Berlingo, primero querían hacerme ver que era la misma categoría, después culparon a Booking, en ningún momento valoraron solucionar el problema incluso planteando yo la posibilidad de pagar un suplemento, muy mala atención, la chica que me atendió era bastante desagradable, una mala experiencia la verdad y pa colmo la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie. 1 2025-04-30 01:27:48.342469+00 Fran Moreno, Prozovet \N 1 2026-01-29 04:35:09.188541+00 2026-01-25 01:27:51.79483+00 544 \N google ChZDSUhNMG9nS0VJQ0FnSUNuMF9PZmVnEAE unknown {"text": "Destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el precio muy económico.\\nNos guardamos el contacto para volver a repetir.", "author": "Rosario Jimenez Ginzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuMF9PZmVnEAE", "timestamp": "a year ago"} Destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el precio muy económico.\nNos guardamos el contacto para volver a repetir. 5 2025-01-25 01:27:48.34248+00 Rosario Jimenez Ginzo \N 1 2026-01-29 04:35:09.190728+00 2026-01-25 01:27:51.800051+00 545 \N google ChdDSUhNMG9nS0VJQ0FnSURudnMyQ3lRRRAB unknown {"text": "Hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropuerto, nos dieron recomendaciones y tips para nuestras vacaciones. Sin duda un acierto!!", "author": "Marta Minguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURudnMyQ3lRRRAB", "timestamp": "a year ago"} Hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropuerto, nos dieron recomendaciones y tips para nuestras vacaciones. Sin duda un acierto!! 5 2025-01-25 01:27:48.34249+00 Marta Minguez \N 1 2026-01-29 04:35:09.19284+00 2026-01-25 01:27:51.802536+00 557 \N google ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE unknown {"text": "Excelente servicio. Las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy atentas. Los compañeros que atienden en la oficina, muy serviciales. Recomendable 100%.", "author": "Roberto Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE", "timestamp": "a year ago"} Excelente servicio. Las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy atentas. Los compañeros que atienden en la oficina, muy serviciales. Recomendable 100%. 5 2025-01-25 01:27:48.342537+00 Roberto Fernández \N 1 2026-01-29 04:35:09.226638+00 2026-01-25 01:27:51.839013+00 1400 \N google ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE unknown {"text": "Excellent outdoor track with a selection of karts for all ages and abilities. The pilot day deal 2x1 on Wednesday is great value. The staff are lovely and helpful. The step from F300 to F400 is significant.", "author": "Honest Jock", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE", "timestamp": "2 years ago"} Excellent outdoor track with a selection of karts for all ages and abilities. The pilot day deal 2x1 on Wednesday is great value. The staff are lovely and helpful. The step from F300 to F400 is significant. 5 2024-01-31 01:52:39.833374+00 Honest Jock \N 1 2026-01-30 09:54:06.888152+00 2026-01-30 02:01:09.224978+00 547 \N google ChZDSUhNMG9nS0VJQ0FnSURIdUl2M09REAE unknown {"text": "Todo perfecto!! Rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron hasta detalles de sitios y comidas que probar gracias a Dany, Antonio y Néstor todos super amables cuando volvamos a las islas repetiremos seguro con ellos.", "author": "german R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdUl2M09REAE", "timestamp": "a year ago"} Todo perfecto!! Rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron hasta detalles de sitios y comidas que probar gracias a Dany, Antonio y Néstor todos super amables cuando volvamos a las islas repetiremos seguro con ellos. 5 2025-01-25 01:27:48.342504+00 german R \N 1 2026-01-29 04:35:09.197663+00 2026-01-25 01:27:51.808159+00 548 \N google ChZDSUhNMG9nS0VJQ0FnTUNZb2ZxWlBREAE unknown {"text": "La experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hicimos, factura de 385€ según su valoración, triste que hayan negocios para robar al consumidor.", "author": "Alvaro Gr Gc", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZb2ZxWlBREAE", "timestamp": "8 months ago"} La experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hicimos, factura de 385€ según su valoración, triste que hayan negocios para robar al consumidor. 1 2025-05-30 01:27:48.342506+00 Alvaro Gr Gc \N 1 2026-01-29 04:35:09.199704+00 2026-01-25 01:27:51.814185+00 549 \N google ChdDSUhNMG9nS0VJQ0FnSURub2NhSC1nRRAB unknown {"text": "Muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en el aeropuerto pero por lo demás perfecto, 100% recomendable y volveré a alquilar vehiculos con ellos", "author": "Francisco Amable Rodriguez Gabriel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURub2NhSC1nRRAB", "timestamp": "a year ago"} Muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en el aeropuerto pero por lo demás perfecto, 100% recomendable y volveré a alquilar vehiculos con ellos 5 2025-01-25 01:27:48.342508+00 Francisco Amable Rodriguez Gabriel \N 1 2026-01-29 04:35:09.20168+00 2026-01-25 01:27:51.817081+00 550 \N google ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB unknown {"text": "Kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. Henkilökunta oli mukavia. Hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alettu perimään. Omasta mielestä voin suositella.", "author": "Nico Marila", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB", "timestamp": "9 months ago"} Kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. Henkilökunta oli mukavia. Hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alettu perimään. Omasta mielestä voin suositella. 5 2025-04-30 01:27:48.34251+00 Nico Marila \N 1 2026-01-29 04:35:09.203678+00 2026-01-25 01:27:51.819275+00 551 \N google ChdDSUhNMG9nS0VJQ0FnSURuN18yM2xRRRAB unknown {"text": "Antonio y Dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del coche, super atentos y muy amables. Muchas gracias y un abrazo grande.", "author": "Carlos Suarez Rozo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuN18yM2xRRRAB", "timestamp": "a year ago"} Antonio y Dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del coche, super atentos y muy amables. Muchas gracias y un abrazo grande. 5 2025-01-25 01:27:48.342512+00 Carlos Suarez Rozo \N 1 2026-01-29 04:35:09.206552+00 2026-01-25 01:27:51.822082+00 552 \N google ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE unknown {"text": "El servicio del alquiler del coche fue genial. Aparte el viaje de vuelta al aeropuerto con Kevin fue muy ameno,repitiria!", "author": "Arturo Olmedo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE", "timestamp": "11 months ago"} El servicio del alquiler del coche fue genial. Aparte el viaje de vuelta al aeropuerto con Kevin fue muy ameno,repitiria! 5 2025-03-01 01:27:48.342514+00 Arturo Olmedo \N 1 2026-01-29 04:35:09.210068+00 2026-01-25 01:27:51.826241+00 553 \N google ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB unknown {"text": "Me fue super bien , me Costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mismo vinieron a buscarme un equipo genial , Bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable.", "author": "Adelaida Ruiz jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB", "timestamp": "a year ago"} Me fue super bien , me Costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mismo vinieron a buscarme un equipo genial , Bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable. 5 2025-01-25 01:27:48.342516+00 Adelaida Ruiz jimenez \N 1 2026-01-29 04:35:09.212726+00 2026-01-25 01:27:51.830989+00 554 \N google Ci9DQUlRQUNvZENodHljRjlvT2xOWlQzVnBSamd0YWs0MVl5MXhRWGN4U21oYWFXYxAB unknown {"text": "Todos muy amables y el servicio y el coche muy bien", "author": "Lidia Silva", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOWlQzVnBSamd0YWs0MVl5MXhRWGN4U21oYWFXYxAB", "timestamp": "5 months ago"} Todos muy amables y el servicio y el coche muy bien 5 2025-08-28 01:27:48.342518+00 Lidia Silva \N 1 2026-01-29 04:35:09.215939+00 2026-01-25 01:27:51.833306+00 555 \N google ChdDSUhNMG9nS0VJQ0FnSUNIOUxDR3NnRRAB unknown {"text": "Tramitar la reserva con los chicos fue de maravilla!! Especialmente Carlos, Néstor y Fran nos hicieron las cosas muy fáciles, además de que no te piden muchos requisitos y es barato, con coches a estrenar para disfrutar de la isla en condiciones.", "author": "JM Wences", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOUxDR3NnRRAB", "timestamp": "a year ago"} Tramitar la reserva con los chicos fue de maravilla!! Especialmente Carlos, Néstor y Fran nos hicieron las cosas muy fáciles, además de que no te piden muchos requisitos y es barato, con coches a estrenar para disfrutar de la isla en condiciones. 5 2025-01-25 01:27:48.34252+00 JM Wences \N 1 2026-01-29 04:35:09.22004+00 2026-01-25 01:27:51.835453+00 559 \N google ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE unknown {"text": "Die Autovermietung ist fair und kann nur weiterempfohlen werden!\\nMitarbeiter Huan war super freundlich und hilfsbereit, danke dafür.\\nGerne wieder!", "author": "Mona Breitschwert", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE", "timestamp": "10 months ago"} Die Autovermietung ist fair und kann nur weiterempfohlen werden!\nMitarbeiter Huan war super freundlich und hilfsbereit, danke dafür.\nGerne wieder! 5 2025-03-31 01:27:48.342556+00 Mona Breitschwert \N 1 2026-01-29 04:35:09.23294+00 2026-01-25 01:27:51.844315+00 561 \N google ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB unknown {"text": "Encantado con el servicio que ofrecen y sobretodo con Dani que me entendió super bien. Volvería allí para alquilar otro coche por necesidad.", "author": "Isaí Alemán Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB", "timestamp": "a year ago"} Encantado con el servicio que ofrecen y sobretodo con Dani que me entendió super bien. Volvería allí para alquilar otro coche por necesidad. 5 2025-01-25 01:27:48.34257+00 Isaí Alemán Pérez \N 1 2026-01-29 04:35:09.239967+00 2026-01-25 01:27:51.851752+00 562 \N google ChZDSUhNMG9nS0VJQ0FnSURIeFBTYldnEAE unknown {"text": "Una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta compañía 100%", "author": "Beatriz Brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIeFBTYldnEAE", "timestamp": "a year ago"} Una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta compañía 100% 5 2025-01-25 01:27:48.342574+00 Beatriz Brito \N 1 2026-01-29 04:35:09.243769+00 2026-01-25 01:27:51.853785+00 563 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB unknown {"text": "Muy contento con el servicio recibido y el trato del personal. Lo recomiendo", "author": "Antonio Porras Ruiz (Antrax1978)", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB", "timestamp": "4 months ago"} Muy contento con el servicio recibido y el trato del personal. Lo recomiendo 5 2025-09-27 01:27:48.342576+00 Antonio Porras Ruiz (Antrax1978) \N 1 2026-01-29 04:35:09.246995+00 2026-01-25 01:27:51.856583+00 564 \N google ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE unknown {"text": "Excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo . Muy amables , buen trato. Gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪", "author": "Luis Miguel Garces Galindo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE", "timestamp": "a year ago"} Excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo . Muy amables , buen trato. Gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪 5 2025-01-25 01:27:48.342578+00 Luis Miguel Garces Galindo \N 1 2026-01-29 04:35:09.249715+00 2026-01-25 01:27:51.866163+00 565 \N google ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB unknown {"text": "Nos atendieron Carlos y Francisco. Fueron simpáticos y amables. Nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta. Muy recomendable.", "author": "Javier Gabrielloni", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB", "timestamp": "a year ago"} Nos atendieron Carlos y Francisco. Fueron simpáticos y amables. Nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta. Muy recomendable. 5 2025-01-25 01:27:48.34258+00 Javier Gabrielloni \N 1 2026-01-29 04:35:09.252365+00 2026-01-25 01:27:51.872107+00 566 \N google ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE unknown {"text": "Recomendable 100%. Fuimos atendidos por Carlos y fue muy amable con nosotros. Si volviéramos a la isla sin duda repetiríamos.", "author": "Sandra López Gómez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE", "timestamp": "a year ago"} Recomendable 100%. Fuimos atendidos por Carlos y fue muy amable con nosotros. Si volviéramos a la isla sin duda repetiríamos. 5 2025-01-25 01:27:48.342582+00 Sandra López Gómez \N 1 2026-01-29 04:35:09.25546+00 2026-01-25 01:27:51.882066+00 567 \N google Ci9DQUlRQUNvZENodHljRjlvT2taUGRHVnhXbXd4WTNsUlJ6STRjRzFZY1hkdWNrRRAB unknown {"text": "Super amable, profesional, sin problemas y buena gente! :)", "author": "Patrick Ittner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taUGRHVnhXbXd4WTNsUlJ6STRjRzFZY1hkdWNrRRAB", "timestamp": "4 months ago"} Super amable, profesional, sin problemas y buena gente! :) 5 2025-09-27 01:27:48.342583+00 Patrick Ittner \N 1 2026-01-29 04:35:09.25866+00 2026-01-25 01:27:51.885225+00 568 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5UVEycDBTUzFRV2sweWFrcHljbUpDVUVOcVdFRRAB unknown {"text": "Günstig und unkompliziert, nahe am Airport mit shuttle service", "author": "Andreas Rust", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5UVEycDBTUzFRV2sweWFrcHljbUpDVUVOcVdFRRAB", "timestamp": "5 months ago"} Günstig und unkompliziert, nahe am Airport mit shuttle service 5 2025-08-28 01:27:48.342585+00 Andreas Rust \N 1 2026-01-29 04:35:09.261999+00 2026-01-25 01:27:51.887829+00 569 \N google ChdDSUhNMG9nS0VJQ0FnSUNIdm9XNXF3RRAB unknown {"text": "Fuimos atendidos por Carlos y Antonio y la experiencia fue estupenda. Muy amables y en lo relativo al coche todo genial. Repetiré", "author": "Javier Ariza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIdm9XNXF3RRAB", "timestamp": "a year ago"} Fuimos atendidos por Carlos y Antonio y la experiencia fue estupenda. Muy amables y en lo relativo al coche todo genial. Repetiré 5 2025-01-25 01:27:48.342587+00 Javier Ariza \N 1 2026-01-29 04:35:09.265045+00 2026-01-25 01:27:51.890336+00 667 \N google ChdDSUhNMG9nS0VJQ0FnSUM3NXVHWW93RRAB unknown {"text": "Buena gente. Lo recomiendo", "author": "JRF", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3NXVHWW93RRAB", "timestamp": "a year ago"} Buena gente. Lo recomiendo 5 2025-01-25 01:27:48.343104+00 JRF \N 1 2026-01-29 04:35:09.599353+00 2026-01-25 01:27:52.238511+00 1401 \N google ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE unknown {"text": "Service is top! Price affordable, all good 👍", "author": "Lidia Reshnivetska", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE", "timestamp": "a year ago"} Service is top! Price affordable, all good 👍 5 2025-01-30 01:52:39.833374+00 Lidia Reshnivetska \N 1 2026-01-30 09:54:06.890569+00 2026-01-30 02:01:09.229018+00 572 \N google ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE unknown {"text": "Carlos és Fran mindenben a segitségünkre voltak. Nagyon kedves és segítőkész volt mindenki. A hab a tortán az volt amikor Carlos az anyanyelvünkön, magyarul szólt hozzánk. Ha bárki autót szeretne bérelni Gran Canarian jó szívvel ajánlom neki a srácokat! Kiváló ár/érték arány.", "author": "László Dávid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE", "timestamp": "a year ago"} Carlos és Fran mindenben a segitségünkre voltak. Nagyon kedves és segítőkész volt mindenki. A hab a tortán az volt amikor Carlos az anyanyelvünkön, magyarul szólt hozzánk. Ha bárki autót szeretne bérelni Gran Canarian jó szívvel ajánlom neki a srácokat! Kiváló ár/érték arány. 5 2025-01-25 01:27:48.342607+00 László Dávid \N 1 2026-01-29 04:35:09.272962+00 2026-01-25 01:27:51.901586+00 573 \N google Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB unknown {"text": "Buen trato del personal y buen precio de alquiler.", "author": "ismael iñigo costoso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB", "timestamp": "3 weeks ago"} Buen trato del personal y buen precio de alquiler. 5 2026-01-04 01:27:48.342614+00 ismael iñigo costoso \N 1 2026-01-29 04:35:09.274909+00 2026-01-25 01:27:51.903389+00 574 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB unknown {"text": "Lamentables. No se merecen ni que me canse escribiendo", "author": "Beñat De Carlos Iparragirre", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB", "timestamp": "a month ago"} Lamentables. No se merecen ni que me canse escribiendo 1 2025-12-26 01:27:48.342622+00 Beñat De Carlos Iparragirre \N 1 2026-01-29 04:35:09.278626+00 2026-01-25 01:27:51.906723+00 575 \N google Ci9DQUlRQUNvZENodHljRjlvT21WS1lXcDVielpDV2xWVFNubFJVRGhtWXpkMlgxRRAB unknown {"text": "Tienen pocos trabajadores y la fila rápida es mentira.", "author": "Javier Arcos", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WS1lXcDVielpDV2xWVFNubFJVRGhtWXpkMlgxRRAB", "timestamp": "4 months ago"} Tienen pocos trabajadores y la fila rápida es mentira. 3 2025-09-27 01:27:48.342625+00 Javier Arcos \N 1 2026-01-29 04:35:09.281009+00 2026-01-25 01:27:51.909602+00 576 \N google ChdDSUhNMG9nS0VJQ0FnTUN3d3I2cjR3RRAB unknown {"text": "Super location de voiture les personnes sont top !! Super gentil l'accueil est rapide et précis vraiment parfait merci 👍", "author": "Leane Aittahar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3d3I2cjR3RRAB", "timestamp": "10 months ago"} Super location de voiture les personnes sont top !! Super gentil l'accueil est rapide et précis vraiment parfait merci 👍 5 2025-03-31 01:27:48.342627+00 Leane Aittahar \N 1 2026-01-29 04:35:09.283728+00 2026-01-25 01:27:51.915984+00 577 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB unknown {"text": "Alquile una semana con ellos. El precio inmejorable y la atención mejor. Gracias Isa ( a mi llegada) , Carmen y Antonio al recoger el coche.", "author": "Esperanza Rodriguez Moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB", "timestamp": "a year ago"} Alquile una semana con ellos. El precio inmejorable y la atención mejor. Gracias Isa ( a mi llegada) , Carmen y Antonio al recoger el coche. 5 2025-01-25 01:27:48.342629+00 Esperanza Rodriguez Moreno \N 1 2026-01-29 04:35:09.287267+00 2026-01-25 01:27:51.919358+00 578 \N google ChZDSUhNMG9nS0VLRzdyN19VeG9xdkFnEAE unknown {"text": "Trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per contestare il danno e non rispondono più", "author": "Mattia", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VLRzdyN19VeG9xdkFnEAE", "timestamp": "8 months ago"} Trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per contestare il danno e non rispondono più 1 2025-05-30 01:27:48.342667+00 Mattia \N 1 2026-01-29 04:35:09.289588+00 2026-01-25 01:27:51.92217+00 579 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3NjhQSy1RRRAB unknown {"text": "Servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones de coche según nuestras necesidades a destacar el precio y la intención del personal so!re todo de Carmen.", "author": "Elisa Balderas Zúñiga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NjhQSy1RRRAB", "timestamp": "a year ago"} Servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones de coche según nuestras necesidades a destacar el precio y la intención del personal so!re todo de Carmen. 5 2025-01-25 01:27:48.342672+00 Elisa Balderas Zúñiga \N 1 2026-01-29 04:35:09.291794+00 2026-01-25 01:27:51.925559+00 580 \N google ChdDSUhNMG9nS0VJQ0FnTUNvMktEWTh3RRAB unknown {"text": "Buena experiencia y legales, no como la competencia Gold Car que me estafaron y por ende tuve que acudir a ClickRent.", "author": "Jose", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvMktEWTh3RRAB", "timestamp": "9 months ago"} Buena experiencia y legales, no como la competencia Gold Car que me estafaron y por ende tuve que acudir a ClickRent. 5 2025-04-30 01:27:48.342674+00 Jose \N 1 2026-01-29 04:35:09.293832+00 2026-01-25 01:27:51.929748+00 581 \N google ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE unknown {"text": "Excelente experiencia! Amabilidad en la atención al cliente y buena relación calidad- precio. Estrené coche! 100% recomendable.", "author": "Ana Covelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE", "timestamp": "a year ago"} Excelente experiencia! Amabilidad en la atención al cliente y buena relación calidad- precio. Estrené coche! 100% recomendable. 5 2025-01-25 01:27:48.342676+00 Ana Covelo \N 1 2026-01-29 04:35:09.296298+00 2026-01-25 01:27:51.933196+00 582 \N google Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB unknown {"text": "Cuidado con que te ofrezcan seguros que ya tienes contratados. Elige la retención de 1000€", "author": "J.V. H.C.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB", "timestamp": "5 months ago"} Cuidado con que te ofrezcan seguros que ya tienes contratados. Elige la retención de 1000€ 5 2025-08-28 01:27:48.342679+00 J.V. H.C. \N 1 2026-01-29 04:35:09.298299+00 2026-01-25 01:27:51.93492+00 583 \N google ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE unknown {"text": "Shuttlebus hat nicht geklappt, mussten mit Taxi hin fahren.\\nLange Wartezeit\\nAuto aber super", "author": "Patrick adober", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE", "timestamp": "10 months ago"} Shuttlebus hat nicht geklappt, mussten mit Taxi hin fahren.\nLange Wartezeit\nAuto aber super 2 2025-03-31 01:27:48.342689+00 Patrick adober \N 1 2026-01-29 04:35:09.302005+00 2026-01-25 01:27:51.937408+00 585 \N google Ci9DQUlRQUNvZENodHljRjlvT2s0MWRtMVBlSGRPT1VkWmFITXpWRWxNVVY5M1VGRRAB unknown {"text": "Nette Mitarbeiter, es hat alles reibungslos funktioniert.", "author": "Alisa Albrecht", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s0MWRtMVBlSGRPT1VkWmFITXpWRWxNVVY5M1VGRRAB", "timestamp": "4 months ago"} Nette Mitarbeiter, es hat alles reibungslos funktioniert. 5 2025-09-27 01:27:48.342697+00 Alisa Albrecht \N 1 2026-01-29 04:35:09.308002+00 2026-01-25 01:27:51.943954+00 586 \N google ChdDSUhNMG9nS0VJQ0FnSUNuMXJhOHJRRRAB unknown {"text": "Los empleados muy amables y cordiales, siempre dispuestos ayudar. La información que dan es muy acertada", "author": "Lelvia Rincón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuMXJhOHJRRRAB", "timestamp": "a year ago"} Los empleados muy amables y cordiales, siempre dispuestos ayudar. La información que dan es muy acertada 5 2025-01-25 01:27:48.342699+00 Lelvia Rincón \N 1 2026-01-29 04:35:09.310196+00 2026-01-25 01:27:51.94997+00 588 \N google ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE unknown {"text": "El trato al público ha sido maravilloso. En especial Sergio y Vanesa nos dieron recomendaciones de sitios chulísimos que no nos podíamos perder. Desde luego repetiremos, muchas gracias.", "author": "Anny Michelle Arias Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE", "timestamp": "a year ago"} El trato al público ha sido maravilloso. En especial Sergio y Vanesa nos dieron recomendaciones de sitios chulísimos que no nos podíamos perder. Desde luego repetiremos, muchas gracias. 5 2025-01-25 01:27:48.342703+00 Anny Michelle Arias Ruiz \N 1 2026-01-29 04:35:09.315205+00 2026-01-25 01:27:51.957422+00 589 \N google ChZDSUhNMG9nS0VJQ0FnSUNueXU3ak5REAE unknown {"text": "La experiencia con esta empresa ha sido genial, el trato con Carlos y Antonio fue magnífico, es un placer trabajar con profesionales como ellos, su amabilidad y dedicación con el cliente es de 10. Gracias", "author": "Alfredo Hinojosa Aragon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNueXU3ak5REAE", "timestamp": "a year ago"} La experiencia con esta empresa ha sido genial, el trato con Carlos y Antonio fue magnífico, es un placer trabajar con profesionales como ellos, su amabilidad y dedicación con el cliente es de 10. Gracias 5 2025-01-25 01:27:48.342705+00 Alfredo Hinojosa Aragon \N 1 2026-01-29 04:35:09.318716+00 2026-01-25 01:27:51.961056+00 590 \N google Ci9DQUlRQUNvZENodHljRjlvT2xrMVVsVXlNakUzYzNCR2NWUnJTM2N0UzNWV1pGRRAB unknown {"text": "Excelente trato por parte del equipo. Gracias", "author": "Michael Aguilar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xrMVVsVXlNakUzYzNCR2NWUnJTM2N0UzNWV1pGRRAB", "timestamp": "5 months ago"} Excelente trato por parte del equipo. Gracias 5 2025-08-28 01:27:48.342707+00 Michael Aguilar \N 1 2026-01-29 04:35:09.323094+00 2026-01-25 01:27:51.967969+00 591 \N google ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB unknown {"text": "Nos atendieron muy amablemente y con instrucciones claras. Económico pero el servicio muy bueno. Volvería a repetir, nos transmitió mucha confianza.", "author": "Belen Paez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB", "timestamp": "a year ago"} Nos atendieron muy amablemente y con instrucciones claras. Económico pero el servicio muy bueno. Volvería a repetir, nos transmitió mucha confianza. 5 2025-01-25 01:27:48.342713+00 Belen Paez \N 1 2026-01-29 04:35:09.326943+00 2026-01-25 01:27:51.970386+00 592 \N google ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE unknown {"text": "Carlos y Fran son eficientes, te ayudan en todo.\\nSon geniales.\\nLo unico a mejorar son las indicaciones para ir al punto de recogida.\\nGracies per tot....", "author": "Xavier ÁLVAREZ ROVIRA", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE", "timestamp": "a year ago"} Carlos y Fran son eficientes, te ayudan en todo.\nSon geniales.\nLo unico a mejorar son las indicaciones para ir al punto de recogida.\nGracies per tot.... 4 2025-01-25 01:27:48.342715+00 Xavier ÁLVAREZ ROVIRA \N 1 2026-01-29 04:35:09.330837+00 2026-01-25 01:27:51.973102+00 593 \N google ChdDSUhNMG9nS0VJQ0FnSUNuaHVyXzhRRRAB unknown {"text": "Muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, Antonio y Néstor y por las gestiones en la oficina.", "author": "Oscar Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaHVyXzhRRRAB", "timestamp": "a year ago"} Muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, Antonio y Néstor y por las gestiones en la oficina. 5 2025-01-25 01:27:48.342723+00 Oscar Fernández \N 1 2026-01-29 04:35:09.333118+00 2026-01-25 01:27:51.975763+00 594 \N google ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE unknown {"text": "Rapidez, eficacia, claridad y trato directo, sin marear la perdiz. Alquiler de un día para otro, del sábado para hoy domingo.\\nEncantada con el trato telefónico y en persona.\\nGracias Carlos y Antonio", "author": "MARÍA ROSARIO GARCÍA RUANO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE", "timestamp": "a year ago"} Rapidez, eficacia, claridad y trato directo, sin marear la perdiz. Alquiler de un día para otro, del sábado para hoy domingo.\nEncantada con el trato telefónico y en persona.\nGracias Carlos y Antonio 5 2025-01-25 01:27:48.342732+00 MARÍA ROSARIO GARCÍA RUANO \N 1 2026-01-29 04:35:09.336125+00 2026-01-25 01:27:51.980787+00 595 \N google ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB unknown {"text": "Está fuera del aeropuerto, horario muy corto y por dejar el coche entes de las 8:00 te clavan 50€, no vale la pena hay opciones mucho mejores y dentro del aeropuerto.", "author": "Suso Rodríguez Fernández", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB", "timestamp": "a year ago"} Está fuera del aeropuerto, horario muy corto y por dejar el coche entes de las 8:00 te clavan 50€, no vale la pena hay opciones mucho mejores y dentro del aeropuerto. 1 2025-01-25 01:27:48.342739+00 Suso Rodríguez Fernández \N 1 2026-01-29 04:35:09.341548+00 2026-01-25 01:27:51.98344+00 596 \N google ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE unknown {"text": "Muy buena relación calidad precio en sus autos. Mención especial a la atención y amabilidad de Carlos, Fran y Nestol.", "author": "jose-vidal sanchez-biezma gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE", "timestamp": "a year ago"} Muy buena relación calidad precio en sus autos. Mención especial a la atención y amabilidad de Carlos, Fran y Nestol. 5 2025-01-25 01:27:48.342746+00 jose-vidal sanchez-biezma gonzalez \N 1 2026-01-29 04:35:09.344317+00 2026-01-25 01:27:51.984965+00 598 \N google Ci9DQUlRQUNvZENodHljRjlvT21WMFR6a3hZMVZHV1hndFRGSXhaakJqV2pjNGRHYxAB unknown {"text": "Vynikajúce služby, ochotní personál doporučujem", "author": "Ing. Viera Kratochvílová", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WMFR6a3hZMVZHV1hndFRGSXhaakJqV2pjNGRHYxAB", "timestamp": "5 months ago"} Vynikajúce služby, ochotní personál doporučujem 5 2025-08-28 01:27:48.342768+00 Ing. Viera Kratochvílová \N 1 2026-01-29 04:35:09.355529+00 2026-01-25 01:27:51.992215+00 599 \N google ChdDSUhNMG9nS0VJQ0FnSUNubnRheTBBRRAB unknown {"text": "Super buen trato de parte de Carmen! Nos atendió muy amablemente, nos dio recomendaciones de la isla. Muchisimas graciss Carmen por tu carisma", "author": "Marynel Moreira", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNubnRheTBBRRAB", "timestamp": "a year ago"} Super buen trato de parte de Carmen! Nos atendió muy amablemente, nos dio recomendaciones de la isla. Muchisimas graciss Carmen por tu carisma 5 2025-01-25 01:27:48.342793+00 Marynel Moreira \N 1 2026-01-29 04:35:09.371246+00 2026-01-25 01:27:51.998959+00 600 \N google Ci9DQUlRQUNvZENodHljRjlvT21sTVdsWnNkMXBKU1ZoWFlYQnhWM1JzVldzMFdFRRAB unknown {"text": "Muy buen precio y muy buenos en gestión y todo.", "author": "Baldo Jimenez Fuentes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sTVdsWnNkMXBKU1ZoWFlYQnhWM1JzVldzMFdFRRAB", "timestamp": "3 months ago"} Muy buen precio y muy buenos en gestión y todo. 5 2025-10-27 01:27:48.342797+00 Baldo Jimenez Fuentes \N 1 2026-01-29 04:35:09.373715+00 2026-01-25 01:27:52.000633+00 601 \N google ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB unknown {"text": "Dani y Antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno. Todo fue genial y a unos precios insuperables!", "author": "Elena García Gómez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB", "timestamp": "a year ago"} Dani y Antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno. Todo fue genial y a unos precios insuperables! 5 2025-01-25 01:27:48.342799+00 Elena García Gómez \N 1 2026-01-29 04:35:09.37666+00 2026-01-25 01:27:52.00493+00 602 \N google Ci9DQUlRQUNvZENodHljRjlvT21OTU5EQjVWMGxJU0cxd1pqTmxObmd5T0hCRVZHYxAB unknown {"text": "Buenas experiencia buen trato y rápido", "author": "Sergio Martinez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OTU5EQjVWMGxJU0cxd1pqTmxObmd5T0hCRVZHYxAB", "timestamp": "5 months ago"} Buenas experiencia buen trato y rápido 4 2025-08-28 01:27:48.342801+00 Sergio Martinez \N 1 2026-01-29 04:35:09.379665+00 2026-01-25 01:27:52.008736+00 603 \N google ChdDSUhNMG9nS0VJQ0FnSUNuOWFpVjBBRRAB unknown {"text": "Carlos y Néstor muchas gracias por el trato recibido. Me solucionaron todo rapidísimo, si vuelvo a alquilar será con ustedes.", "author": "Adrián NL", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOWFpVjBBRRAB", "timestamp": "a year ago"} Carlos y Néstor muchas gracias por el trato recibido. Me solucionaron todo rapidísimo, si vuelvo a alquilar será con ustedes. 5 2025-01-25 01:27:48.342803+00 Adrián NL \N 1 2026-01-29 04:35:09.383647+00 2026-01-25 01:27:52.016131+00 604 \N google ChZDSUhNMG9nS0VJQ0FnTURncTZMdVdBEAE unknown {"text": "Un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado desde y hacia el aeropuerto igual.", "author": "Sergio Morales Marrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURncTZMdVdBEAE", "timestamp": "10 months ago"} Un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado desde y hacia el aeropuerto igual. 5 2025-03-31 01:27:48.342805+00 Sergio Morales Marrero \N 1 2026-01-29 04:35:09.387735+00 2026-01-25 01:27:52.018317+00 605 \N google ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB unknown {"text": "sehr schwer im Parkhaus zu finden, Fahrer von Shuttlebus sehr unfreundlich,auch der Mitarbeiter im Büro bei Fahrzeugrückgabe sehr unfreundlich.", "author": "Richard Rasshofer", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB", "timestamp": "10 months ago"} sehr schwer im Parkhaus zu finden, Fahrer von Shuttlebus sehr unfreundlich,auch der Mitarbeiter im Büro bei Fahrzeugrückgabe sehr unfreundlich. 3 2025-03-31 01:27:48.342807+00 Richard Rasshofer \N 1 2026-01-29 04:35:09.390498+00 2026-01-25 01:27:52.019636+00 606 \N google Ci9DQUlRQUNvZENodHljRjlvT2tkbU1tUnZZVk0zYlV4dFRHZDJkM05hUkdwU2JIYxAB unknown {"text": "Muy buena experiencia y muy recomendable.", "author": "Carmelo Gomez De Segura", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkbU1tUnZZVk0zYlV4dFRHZDJkM05hUkdwU2JIYxAB", "timestamp": "4 months ago"} Muy buena experiencia y muy recomendable. 5 2025-09-27 01:27:48.342809+00 Carmelo Gomez De Segura \N 1 2026-01-29 04:35:09.393538+00 2026-01-25 01:27:52.021344+00 607 \N google ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB unknown {"text": "Muy rápido y cómodo el alquiler. Al llegar nos atendió Carlos y nos llevó de vuelta Nestor. Los dos chicos de 10 :)", "author": "Jaime", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB", "timestamp": "a year ago"} Muy rápido y cómodo el alquiler. Al llegar nos atendió Carlos y nos llevó de vuelta Nestor. Los dos chicos de 10 :) 5 2025-01-25 01:27:48.342811+00 Jaime \N 1 2026-01-29 04:35:09.397662+00 2026-01-25 01:27:52.023761+00 608 \N google ChdDSUhNMG9nS0VJQ0FnSURuX3RiSjRBRRAB unknown {"text": "Totalmente recomendable, Dany y Antonio muy majos...trato muy agradable, además nos recomendaron sitios de la isla acertados para nuestros gustos.\\nSuerte chicos!!!", "author": "Azucena Hoyos Sordo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuX3RiSjRBRRAB", "timestamp": "a year ago"} Totalmente recomendable, Dany y Antonio muy majos...trato muy agradable, además nos recomendaron sitios de la isla acertados para nuestros gustos.\nSuerte chicos!!! 5 2025-01-25 01:27:48.342813+00 Azucena Hoyos Sordo \N 1 2026-01-29 04:35:09.400778+00 2026-01-25 01:27:52.026579+00 609 \N google ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB unknown {"text": "Una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendaciones súper recomendaciones para Isaac y antonio los mejores sin duda .", "author": "javier godoy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB", "timestamp": "a year ago"} Una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendaciones súper recomendaciones para Isaac y antonio los mejores sin duda . 5 2025-01-25 01:27:48.342815+00 javier godoy \N 1 2026-01-29 04:35:09.404334+00 2026-01-25 01:27:52.032176+00 610 \N google ChZDSUhNMG9nS0VJQ0FnSURINXZtbkJREAE unknown {"text": "Magnífico servicio... Buen estado de los coches... Antonio, Carmen y Nestor excelente personal!!!\\nGracias.", "author": "Raul Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURINXZtbkJREAE", "timestamp": "a year ago"} Magnífico servicio... Buen estado de los coches... Antonio, Carmen y Nestor excelente personal!!!\nGracias. 5 2025-01-25 01:27:48.342817+00 Raul Gomez \N 1 2026-01-29 04:35:09.406599+00 2026-01-25 01:27:52.034485+00 1387 \N google Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB unknown {"text": "Very good. Well run and lots of fun.", "author": "A French", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB", "timestamp": "4 months ago"} Very good. Well run and lots of fun. 5 2025-10-02 00:52:39.833374+00 A French \N 1 2026-01-30 09:54:06.849663+00 2026-01-30 02:01:09.185312+00 1388 \N google ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB unknown {"text": "Very drively and power place.\\nRegular competition on cart and motorbike.", "author": "Dima Shirokov", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB", "timestamp": "5 years ago"} Very drively and power place.\nRegular competition on cart and motorbike. 5 2021-01-31 01:52:39.833374+00 Dima Shirokov \N 1 2026-01-30 09:54:06.852614+00 2026-01-30 02:01:09.188096+00 616 \N google ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB unknown {"text": "einfache Abwicklung, keine versteckten Kosten, Adrian war super lieb und hat uns direkt am Terminal abgeholt", "author": "Lara Julier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB", "timestamp": "a year ago"} einfache Abwicklung, keine versteckten Kosten, Adrian war super lieb und hat uns direkt am Terminal abgeholt 5 2025-01-25 01:27:48.342865+00 Lara Julier \N 1 2026-01-29 04:35:09.427078+00 2026-01-25 01:27:52.051718+00 617 \N google ChdDSUhNMG9nS0VJQ0FnSUM3aWVXSTVnRRAB unknown {"text": "Servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el personal lo mejor de lo mejor Totalmente recomendable ☺️", "author": "Yaiza Cruz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3aWVXSTVnRRAB", "timestamp": "a year ago"} Servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el personal lo mejor de lo mejor Totalmente recomendable ☺️ 5 2025-01-25 01:27:48.342893+00 Yaiza Cruz \N 1 2026-01-29 04:35:09.429838+00 2026-01-25 01:27:52.053591+00 618 \N google ChZDSUhNMG9nS0VJQ0FnTUNvcGJqbklnEAE unknown {"text": "Esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno RUBATO 150 euro", "author": "ALESSANDRO CICUZZA", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvcGJqbklnEAE", "timestamp": "9 months ago"} Esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno RUBATO 150 euro 1 2025-04-30 01:27:48.342899+00 ALESSANDRO CICUZZA \N 1 2026-01-29 04:35:09.431745+00 2026-01-25 01:27:52.055817+00 619 \N google Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB unknown {"text": "Alles gut abgelaufen, danke!", "author": "I Rak", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB", "timestamp": "4 days ago"} Alles gut abgelaufen, danke! 5 2026-01-21 01:27:48.342901+00 I Rak \N 1 2026-01-29 04:35:09.435121+00 2026-01-25 01:27:52.05951+00 620 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB unknown {"text": "Alles top,\\nSuper Preis!", "author": "Henna Starla", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB", "timestamp": "a week ago"} Alles top,\nSuper Preis! 5 2026-01-18 01:27:48.342903+00 Henna Starla \N 1 2026-01-29 04:35:09.442788+00 2026-01-25 01:27:52.068762+00 622 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3aTVXR0lREAE unknown {"text": "Recién me atendió David Martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, sino como visitante). :-)", "author": "Andrés Forastero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3aTVXR0lREAE", "timestamp": "a year ago"} Recién me atendió David Martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, sino como visitante). :-) 5 2025-01-25 01:27:48.342907+00 Andrés Forastero \N 1 2026-01-29 04:35:09.448382+00 2026-01-25 01:27:52.075392+00 623 \N google ChZDSUhNMG9nS0VJQ0FnSUNILTltRUpBEAE unknown {"text": "Muchas gracias a Carmen y Carlos que me atendieron en la oficina y sobretodo a Antonio que desde el primer momento quiso ayudar en todo lo posible aconsejándome y recomendando cosas para hacer, un servicio de 10 gracias Antonio!", "author": "Giova Perdomo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNILTltRUpBEAE", "timestamp": "a year ago"} Muchas gracias a Carmen y Carlos que me atendieron en la oficina y sobretodo a Antonio que desde el primer momento quiso ayudar en todo lo posible aconsejándome y recomendando cosas para hacer, un servicio de 10 gracias Antonio! 5 2025-01-25 01:27:48.342911+00 Giova Perdomo \N 1 2026-01-29 04:35:09.450706+00 2026-01-25 01:27:52.082412+00 624 \N google Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB unknown {"text": "Buen servicio y personal amable", "author": "SIMONE MUSELLA", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB", "timestamp": "4 weeks ago"} Buen servicio y personal amable 5 2025-12-28 01:27:48.342918+00 SIMONE MUSELLA \N 1 2026-01-29 04:35:09.453367+00 2026-01-25 01:27:52.086075+00 625 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCMFpGUkhjbEpPZUhnelpuTnhSekJuTFdNemVuYxAB unknown {"text": "Personale gentilissimo, servizio impeccabile!", "author": "Karmen Rega", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCMFpGUkhjbEpPZUhnelpuTnhSekJuTFdNemVuYxAB", "timestamp": "5 months ago"} Personale gentilissimo, servizio impeccabile! 5 2025-08-28 01:27:48.342928+00 Karmen Rega \N 1 2026-01-29 04:35:09.455312+00 2026-01-25 01:27:52.089224+00 626 \N google ChdDSUhNMG9nS0VJQ0FnSUNuOVluRDBRRRAB unknown {"text": "Servicio excepcional y trato muy profesional y agradable del personal que me atendió. Muchísimas muchísimas gracias a Isaac, Carlos y Antonio.", "author": "Mar Cabrera García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOVluRDBRRRAB", "timestamp": "a year ago"} Servicio excepcional y trato muy profesional y agradable del personal que me atendió. Muchísimas muchísimas gracias a Isaac, Carlos y Antonio. 5 2025-01-25 01:27:48.342942+00 Mar Cabrera García \N 1 2026-01-29 04:35:09.457761+00 2026-01-25 01:27:52.0932+00 627 \N google Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB unknown {"text": "Super rápidos!!! Atententos y coches super nuevos!!", "author": "Paz Alvarez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB", "timestamp": "3 months ago"} Super rápidos!!! Atententos y coches super nuevos!! 5 2025-10-27 01:27:48.34295+00 Paz Alvarez \N 1 2026-01-29 04:35:09.460453+00 2026-01-25 01:27:52.098064+00 628 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4bFNpMWZjRGxaU3paRFoyNHdhRzQxV1dkSWJWRRAB unknown {"text": "Muy malo", "author": "Oddy Huang", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4bFNpMWZjRGxaU3paRFoyNHdhRzQxV1dkSWJWRRAB", "timestamp": "6 months ago"} Muy malo 1 2025-07-29 01:27:48.342957+00 Oddy Huang \N 1 2026-01-29 04:35:09.46257+00 2026-01-25 01:27:52.100038+00 629 \N google Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB unknown {"text": "Polecam. Wszystko sprawnie.", "author": "Michał Kryński", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB", "timestamp": "2 weeks ago"} Polecam. Wszystko sprawnie. 5 2026-01-11 01:27:48.342965+00 Michał Kryński \N 1 2026-01-29 04:35:09.464098+00 2026-01-25 01:27:52.101251+00 632 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxakxYZEpaWEkyUmt4TWNGVTJXaTFNT0RsdFVVRRAB unknown {"text": "Es war alles perfekt.", "author": "Viktor Reimer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxakxYZEpaWEkyUmt4TWNGVTJXaTFNT0RsdFVVRRAB", "timestamp": "4 months ago"} Es war alles perfekt. 5 2025-09-27 01:27:48.342973+00 Viktor Reimer \N 1 2026-01-29 04:35:09.471682+00 2026-01-25 01:27:52.113347+00 633 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3M0tPejZRRRAB unknown {"text": "Todo perfecto, trato de 10 y super fiable. Totalmente recomendable.", "author": "Hugo Conde Araujo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3M0tPejZRRRAB", "timestamp": "a year ago"} Todo perfecto, trato de 10 y super fiable. Totalmente recomendable. 5 2025-01-25 01:27:48.342975+00 Hugo Conde Araujo \N 1 2026-01-29 04:35:09.475424+00 2026-01-25 01:27:52.11929+00 634 \N google ChZDSUhNMG9nS0VJQ0FnSUNIcW96NlZnEAE unknown {"text": "Muy amables en el servicio y profesionalidad por parte de Fran y de Carlos que estuvieron atentos en todo momento.", "author": "Diego Oca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIcW96NlZnEAE", "timestamp": "a year ago"} Muy amables en el servicio y profesionalidad por parte de Fran y de Carlos que estuvieron atentos en todo momento. 5 2025-01-25 01:27:48.342977+00 Diego Oca \N 1 2026-01-29 04:35:09.477701+00 2026-01-25 01:27:52.121676+00 635 \N google ChZDSUhNMG9nS0VJQ0FnTUNJMXZ6aUZ3EAE unknown {"text": "Kevin estaba muy amigable y nos ayudaba mucho, gracias!", "author": "Christopher S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMXZ6aUZ3EAE", "timestamp": "9 months ago"} Kevin estaba muy amigable y nos ayudaba mucho, gracias! 5 2025-04-30 01:27:48.342979+00 Christopher S \N 1 2026-01-29 04:35:09.480216+00 2026-01-25 01:27:52.124355+00 636 \N google ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB unknown {"text": "Je recommande !\\nVoiture nickel / Personnel très serviable et très efficace", "author": "Gauthier Vancayzeele", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB", "timestamp": "a year ago"} Je recommande !\nVoiture nickel / Personnel très serviable et très efficace 5 2025-01-25 01:27:48.342988+00 Gauthier Vancayzeele \N 1 2026-01-29 04:35:09.483783+00 2026-01-25 01:27:52.131748+00 637 \N google ChZDSUhNMG9nS0VJQ0FnSUNIdVp1bFFREAE unknown {"text": "Me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias Nestor ,Dany ...", "author": "Juan Miguel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdVp1bFFREAE", "timestamp": "a year ago"} Me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias Nestor ,Dany ... 5 2025-01-25 01:27:48.342995+00 Juan Miguel \N 1 2026-01-29 04:35:09.487143+00 2026-01-25 01:27:52.145006+00 638 \N google Ci9DQUlRQUNvZENodHljRjlvT2pkdVRWTlhia0pJVUdoWVlUQXlkbTV1UkhoTWJtYxAB unknown {"text": "Todo Oks perfecto.", "author": "Federico Guinaldo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkdVRWTlhia0pJVUdoWVlUQXlkbTV1UkhoTWJtYxAB", "timestamp": "5 months ago"} Todo Oks perfecto. 5 2025-08-28 01:27:48.342999+00 Federico Guinaldo \N 1 2026-01-29 04:35:09.493666+00 2026-01-25 01:27:52.156003+00 639 \N google ChZDSUhNMG9nS0VJQ0FnSURIMlBMZ2NBEAE unknown {"text": "Sergio muy amable y nos acercó para no perder el avión súper bien", "author": "joswerk dj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIMlBMZ2NBEAE", "timestamp": "a year ago"} Sergio muy amable y nos acercó para no perder el avión súper bien 5 2025-01-25 01:27:48.343001+00 joswerk dj \N 1 2026-01-29 04:35:09.496388+00 2026-01-25 01:27:52.158715+00 640 \N google ChdDSUhNMG9nS0VJQ0FnSURINXBUOW13RRAB unknown {"text": "Todo perfecto y sencillo, muchas gracias Dani por el gran trato!", "author": "Antonio Barreiro Pazos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINXBUOW13RRAB", "timestamp": "a year ago"} Todo perfecto y sencillo, muchas gracias Dani por el gran trato! 5 2025-01-25 01:27:48.343003+00 Antonio Barreiro Pazos \N 1 2026-01-29 04:35:09.499003+00 2026-01-25 01:27:52.164526+00 641 \N google ChZDSUhNMG9nS0VJQ0FnSUNuek5EdExnEAE unknown {"text": "Muy buen servicio. Ysaac, nestor y carmen muy majos y atentos", "author": "Alejandro Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuek5EdExnEAE", "timestamp": "a year ago"} Muy buen servicio. Ysaac, nestor y carmen muy majos y atentos 5 2025-01-25 01:27:48.343013+00 Alejandro Ruiz \N 1 2026-01-29 04:35:09.501483+00 2026-01-25 01:27:52.16744+00 642 \N google ChdDSUhNMG9nS0VJQ0FnSUM3cGUyaWl3RRAB unknown {"text": "Carmen ha sido encantadora y todo muy claro explicado", "author": "Jorge Zapatero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3cGUyaWl3RRAB", "timestamp": "a year ago"} Carmen ha sido encantadora y todo muy claro explicado 5 2025-01-25 01:27:48.343021+00 Jorge Zapatero \N 1 2026-01-29 04:35:09.504003+00 2026-01-25 01:27:52.169622+00 643 \N google ChdDSUhNMG9nS0VJQ0FnSUM3ejVHeDhnRRAB unknown {"text": "Carmelo muy amable y simpático, todo perfecto.", "author": "kiko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3ejVHeDhnRRAB", "timestamp": "a year ago"} Carmelo muy amable y simpático, todo perfecto. 5 2025-01-25 01:27:48.343029+00 kiko \N 1 2026-01-29 04:35:09.506119+00 2026-01-25 01:27:52.17129+00 644 \N google ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB unknown {"text": "Agradecer a Daniel por su entrega, confianza y profesionalidad! Para repetir sin duda", "author": "Ivan Auvinen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB", "timestamp": "a year ago"} Agradecer a Daniel por su entrega, confianza y profesionalidad! Para repetir sin duda 5 2025-01-25 01:27:48.343035+00 Ivan Auvinen \N 1 2026-01-29 04:35:09.509975+00 2026-01-25 01:27:52.174558+00 645 \N google ChdDSUhNMG9nS0VJQ0FnSURIb2Z6ajRRRRAB unknown {"text": "Un maravilloso servicio por parte de Carmen y Néstor muchas gracias por la amabilidad y cortesía", "author": "Chaxiraxi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIb2Z6ajRRRRAB", "timestamp": "a year ago"} Un maravilloso servicio por parte de Carmen y Néstor muchas gracias por la amabilidad y cortesía 5 2025-01-25 01:27:48.343037+00 Chaxiraxi \N 1 2026-01-29 04:35:09.512882+00 2026-01-25 01:27:52.177314+00 646 \N google ChZDSUhNMG9nS0VJQ0FnSUM3ejlHdmJ3EAE unknown {"text": "Muchas gracias por la atención de Carmelo a por el vehículo Muy atento y amable", "author": "Jonas Lagos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3ejlHdmJ3EAE", "timestamp": "a year ago"} Muchas gracias por la atención de Carmelo a por el vehículo Muy atento y amable 5 2025-01-25 01:27:48.343039+00 Jonas Lagos \N 1 2026-01-29 04:35:09.514793+00 2026-01-25 01:27:52.180876+00 647 \N google ChdDSUhNMG9nS0VJQ0FnSUNuLXB1ZndBRRAB unknown {"text": "Buen trato muy profesionales en especias Carlos y Néstor", "author": "Ricardo Izquierdo lara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuLXB1ZndBRRAB", "timestamp": "a year ago"} Buen trato muy profesionales en especias Carlos y Néstor 5 2025-01-25 01:27:48.343041+00 Ricardo Izquierdo lara \N 1 2026-01-29 04:35:09.517298+00 2026-01-25 01:27:52.182996+00 649 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3aGJ2Rm93RRAB unknown {"text": "Dany y Antonio gente súper amable y simpatica", "author": "Victor Alcazar Dominguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3aGJ2Rm93RRAB", "timestamp": "a year ago"} Dany y Antonio gente súper amable y simpatica 5 2025-01-25 01:27:48.343045+00 Victor Alcazar Dominguez \N 1 2026-01-29 04:35:09.524787+00 2026-01-25 01:27:52.188362+00 650 \N google ChZDSUhNMG9nS0VJQ0FnSUNINkltMlpBEAE unknown {"text": "Atención personal de primera por parte de su personal, Carlos y Antonio. Muchas gracias por todo.", "author": "Luis Purrinos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNINkltMlpBEAE", "timestamp": "a year ago"} Atención personal de primera por parte de su personal, Carlos y Antonio. Muchas gracias por todo. 5 2025-01-25 01:27:48.343047+00 Luis Purrinos \N 1 2026-01-29 04:35:09.528433+00 2026-01-25 01:27:52.191184+00 651 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3cnNtRzhRRRAB unknown {"text": "Muy buen trato, y trabajadores muy amables", "author": "Pablo Campos escalera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnNtRzhRRRAB", "timestamp": "a year ago"} Muy buen trato, y trabajadores muy amables 5 2025-01-25 01:27:48.343048+00 Pablo Campos escalera \N 1 2026-01-29 04:35:09.531709+00 2026-01-25 01:27:52.193258+00 652 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3eU9TRjBRRRAB unknown {"text": "Muy buena experiemcia con ellos ,\\nSin sorpresas ,todo excelente", "author": "Daniel Frito", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3eU9TRjBRRRAB", "timestamp": "a year ago"} Muy buena experiemcia con ellos ,\nSin sorpresas ,todo excelente 5 2025-01-25 01:27:48.34305+00 Daniel Frito \N 1 2026-01-29 04:35:09.535683+00 2026-01-25 01:27:52.197235+00 653 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3aEpyMlNBEAE unknown {"text": "Carlos Y Dani son muy simpáticos! Muy muy recomendable", "author": "Alejandro Espi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3aEpyMlNBEAE", "timestamp": "a year ago"} Carlos Y Dani son muy simpáticos! Muy muy recomendable 5 2025-01-25 01:27:48.343052+00 Alejandro Espi \N 1 2026-01-29 04:35:09.538259+00 2026-01-25 01:27:52.199846+00 654 \N google ChdDSUhNMG9nS0VJQ0FnSUNuM3VUNnp3RRAB unknown {"text": "Muy bueno el servicio estoy encantada Dani y Néstor", "author": "Isabel SantaMaria Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuM3VUNnp3RRAB", "timestamp": "a year ago"} Muy bueno el servicio estoy encantada Dani y Néstor 5 2025-01-25 01:27:48.343054+00 Isabel SantaMaria Perez \N 1 2026-01-29 04:35:09.540566+00 2026-01-25 01:27:52.201428+00 655 \N google ChZDSUhNMG9nS0VPVHc0b2ItMEo3bERBEAE unknown {"text": "Buen servicio,mejor precio", "author": "Maite Morales", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VPVHc0b2ItMEo3bERBEAE", "timestamp": "8 months ago"} Buen servicio,mejor precio 5 2025-05-30 01:27:48.34306+00 Maite Morales \N 1 2026-01-29 04:35:09.543575+00 2026-01-25 01:27:52.203441+00 656 \N google ChdDSUhNMG9nS0VJQ0FnSURId2FqYV9nRRAB unknown {"text": "Buenos precios y Carmen y nestor excelente su atencion", "author": "Nohemy Nuñez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURId2FqYV9nRRAB", "timestamp": "a year ago"} Buenos precios y Carmen y nestor excelente su atencion 5 2025-01-25 01:27:48.343074+00 Nohemy Nuñez \N 1 2026-01-29 04:35:09.546841+00 2026-01-25 01:27:52.205364+00 657 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3cU8yNUJnEAE unknown {"text": "muy buen servicio y el coche genial", "author": "Gabriela Cervantes Alcoba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cU8yNUJnEAE", "timestamp": "a year ago"} muy buen servicio y el coche genial 5 2025-01-25 01:27:48.343083+00 Gabriela Cervantes Alcoba \N 1 2026-01-29 04:35:09.554482+00 2026-01-25 01:27:52.208121+00 658 \N google Ci9DQUlRQUNvZENodHljRjlvT20xdFZYVXhTRk54UzBKTk9UZDBOblp6UWsxVFoxRRAB unknown {"text": "excelente recomendada", "author": "Marcelo Cruz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xdFZYVXhTRk54UzBKTk9UZDBOblp6UWsxVFoxRRAB", "timestamp": "5 months ago"} excelente recomendada 5 2025-08-28 01:27:48.343086+00 Marcelo Cruz \N 1 2026-01-29 04:35:09.566144+00 2026-01-25 01:27:52.210698+00 659 \N google ChZDSUhNMG9nS0VJQ0FnSURIaU8tdlJ3EAE unknown {"text": "Tanto Carlos como Fran encantadores", "author": "Rodrigo Sancho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIaU8tdlJ3EAE", "timestamp": "a year ago"} Tanto Carlos como Fran encantadores 5 2025-01-25 01:27:48.343089+00 Rodrigo Sancho \N 1 2026-01-29 04:35:09.570507+00 2026-01-25 01:27:52.215604+00 660 \N google Ci9DQUlRQUNvZENodHljRjlvT2pNNFl6aFJlbmN3V1U5Tk1HVkdiVVpLTkc1VWFrRRAB unknown {"text": "todo perfecto", "author": "COVIRAN MALAGON", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pNNFl6aFJlbmN3V1U5Tk1HVkdiVVpLTkc1VWFrRRAB", "timestamp": "3 months ago"} todo perfecto 5 2025-10-27 01:27:48.343091+00 COVIRAN MALAGON \N 1 2026-01-29 04:35:09.573647+00 2026-01-25 01:27:52.218479+00 661 \N google ChZDSUhNMG9nS0VJQ0FnSUQza2R1LUlBEAE unknown {"text": "Depozyt większy niż w ofercie.", "author": "Henryk D", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQza2R1LUlBEAE", "timestamp": "a year ago"} Depozyt większy niż w ofercie. 4 2025-01-25 01:27:48.343092+00 Henryk D \N 1 2026-01-29 04:35:09.575694+00 2026-01-25 01:27:52.219625+00 662 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4dmJqbGljR0pXVEdsemNUWklRbWcyV1VaTFdHYxAB unknown {"text": "Excelente y rápido atención", "author": "Marcelo Agüero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4dmJqbGljR0pXVEdsemNUWklRbWcyV1VaTFdHYxAB", "timestamp": "7 months ago"} Excelente y rápido atención 5 2025-06-29 01:27:48.343094+00 Marcelo Agüero \N 1 2026-01-29 04:35:09.57788+00 2026-01-25 01:27:52.221157+00 663 \N google ChdDSUhNMG9nS0VJQ0FnSURYOHAtN3h3RRAB unknown {"text": "De 10, repetiré sin dudarlo!", "author": "Patricia Cuevas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYOHAtN3h3RRAB", "timestamp": "a year ago"} De 10, repetiré sin dudarlo! 5 2025-01-25 01:27:48.343096+00 Patricia Cuevas \N 1 2026-01-29 04:35:09.581781+00 2026-01-25 01:27:52.22526+00 664 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGMVMzUllUbXh3WXpaMVVXeHhTMmd3VFhnNFQxRRAB unknown {"text": "Publicidad engañosa", "author": "Thalia1999", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGMVMzUllUbXh3WXpaMVVXeHhTMmd3VFhnNFQxRRAB", "timestamp": "4 months ago"} Publicidad engañosa 1 2025-09-27 01:27:48.343098+00 Thalia1999 \N 1 2026-01-29 04:35:09.585215+00 2026-01-25 01:27:52.227034+00 665 \N google ChZDSUhNMG9nS0VJQ0FnTUNJNmJYc0hBEAE unknown {"text": "Goede service en aardig mensen", "author": "Douwe Jong De", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNmJYc0hBEAE", "timestamp": "9 months ago"} Goede service en aardig mensen 5 2025-04-30 01:27:48.3431+00 Douwe Jong De \N 1 2026-01-29 04:35:09.59224+00 2026-01-25 01:27:52.234106+00 666 \N google ChdDSUhNMG9nS0VJQ0FnSURIdkktRGlRRRAB unknown {"text": "Gran servicio de Nestor y Carmen", "author": "joan carrion", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIdkktRGlRRRAB", "timestamp": "a year ago"} Gran servicio de Nestor y Carmen 4 2025-01-25 01:27:48.343102+00 joan carrion \N 1 2026-01-29 04:35:09.596134+00 2026-01-25 01:27:52.236247+00 1397 \N google ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE unknown {"text": "-1 star: On our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), but we (400cc carts) only got the standard 10 min. This meant that we didn't get the two extra rounds, without the other carts, that we paid for.\\n\\n-2 stars: La jefa had absolutely no understanding for our reasoning and complaints. After shelling out 180€ in total for two rounds (2 rounds x 3 people x 400cc), we felt a little cheated. It would cost them so little, next to nothing, to give us a couple of extra rounds to set things right.\\n\\n+1 star: Because the 400cc carts are INSANE!\\n\\nWould easily have given 5 stars if the boss had been more forthcoming and set things straight. Being service minded is more important in order to earn money (in the future), than saving scraps in the moment. Will never spend money here again.\\n\\nSome good aspects:\\n- Most of the employees are helpful and service minded.\\n- The track is good.\\n- Times are shown on a big screen visible for the drivers.\\n\\nTips for improvement:\\n1) Always let the 400cc start first\\n2) Take the time on the two extra laps for 400cc. These two rounds are the most important to time since this is where one can excel.\\n3) Let the 400cc have two extra minutes (as it actually says) instead of two extra rounds.\\n4) Be more service minded.", "author": "Jo Nas", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE", "timestamp": "Edited 2 years ago"} -1 star: On our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), but we (400cc carts) only got the standard 10 min. This meant that we didn't get the two extra rounds, without the other carts, that we paid for.\n\n-2 stars: La jefa had absolutely no understanding for our reasoning and complaints. After shelling out 180€ in total for two rounds (2 rounds x 3 people x 400cc), we felt a little cheated. It would cost them so little, next to nothing, to give us a couple of extra rounds to set things right.\n\n+1 star: Because the 400cc carts are INSANE!\n\nWould easily have given 5 stars if the boss had been more forthcoming and set things straight. Being service minded is more important in order to earn money (in the future), than saving scraps in the moment. Will never spend money here again.\n\nSome good aspects:\n- Most of the employees are helpful and service minded.\n- The track is good.\n- Times are shown on a big screen visible for the drivers.\n\nTips for improvement:\n1) Always let the 400cc start first\n2) Take the time on the two extra laps for 400cc. These two rounds are the most important to time since this is where one can excel.\n3) Let the 400cc have two extra minutes (as it actually says) instead of two extra rounds.\n4) Be more service minded. 3 2026-01-30 01:52:39.833374+00 Jo Nas \N 1 2026-01-30 09:54:06.879263+00 2026-01-30 02:01:09.216348+00 450 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGdWJGWlZWMVo1U1RJeVZGaEpSV3N6VVVScU1rRRAB unknown {"text": "Siempre alquilamos el coche aquí cuando venimos a la isla. Además de que la relación calidad-precio es buena, el servicio de Kevin es espectacular y siempre te hace sentir súper bienvenida, es un gusto volver a contar con él cada vez que venimos!", "author": "Nora Fdez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGdWJGWlZWMVo1U1RJeVZGaEpSV3N6VVVScU1rRRAB", "timestamp": "7 months ago"} Siempre alquilamos el coche aquí cuando venimos a la isla. Además de que la relación calidad-precio es buena, el servicio de Kevin es espectacular y siempre te hace sentir súper bienvenida, es un gusto volver a contar con él cada vez que venimos! 5 2025-06-29 01:27:48.34198+00 Nora Fdez \N 1 2026-01-29 04:35:08.843763+00 2026-01-25 01:27:51.422675+00 673 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB unknown {"text": "è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... quindi grazie... consigliatissimi!!!", "author": "Claudia Di Benedetto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB", "timestamp": "4 days ago"} è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... quindi grazie... consigliatissimi!!! 5 2026-01-21 01:27:48.343156+00 Claudia Di Benedetto \N 1 2026-01-29 04:35:09.622482+00 2026-01-25 01:27:52.292927+00 674 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB unknown {"text": "Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war kein Missverständnis, sondern ein Paradebeispiel dafür, wie man Kunden vergrault.\\n\\nBei der Abholung wurden wegen absoluter Kleinigkeiten künstliche Probleme aufgebaut. Plötzlich gab es Diskussionen um den Führerschein, obwohl dieser gültig und völlig unauffällig war. Zusätzlich wollten wir einen Zusatzfahrer eintragen lassen – ein Vorgang, der bei seriösen Vermietern Standard ist.\\n\\nHier wurde daraus jedoch ein Geschäftsmodell gemacht. Für den Zusatzfahrer und angebliche „Probleme“ sollten auf einmal hunderte Euro zusätzlich gezahlt werden. Der ursprünglich gebuchte Preis war damit praktisch wertlos. Am Ende standen rund 300 €, wo andere Anbieter für exakt denselben Zeitraum ca. 60 € verlangen.\\n\\nWir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz. Keine Erklärung, keine Transparenz, kein Entgegenkommen – nur das starre Festhalten an einem völlig überzogenen Preis.\\n\\nDer Eindruck entsteht unweigerlich, dass hier bewusst Druck aufgebaut wird, um Kunden vor Ort zu überrumpeln und zu teuren Zusatzkosten zu zwingen. Wer nicht mitspielt, verliert Zeit, Nerven – oder geht, so wie wir.\\n\\nNach erheblichem Zeitverlust und einer maximal unangenehmen Abholung haben wir den Mietwagen konsequent abgelehnt. Und ganz ehrlich: Das war die einzig richtige Entscheidung.\\n\\nFazit: Dieses Verhalten hat nichts mit kundenorientiertem Service zu tun. Wer Transparenz, Fairness und einen respektvollen Umgang erwartet, sollte diesen Anbieter meiden. So gewinnt man keine Kunden – so verliert man sie.", "author": "Maximilian V", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB", "timestamp": "4 days ago"} Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war kein Missverständnis, sondern ein Paradebeispiel dafür, wie man Kunden vergrault.\n\nBei der Abholung wurden wegen absoluter Kleinigkeiten künstliche Probleme aufgebaut. Plötzlich gab es Diskussionen um den Führerschein, obwohl dieser gültig und völlig unauffällig war. Zusätzlich wollten wir einen Zusatzfahrer eintragen lassen – ein Vorgang, der bei seriösen Vermietern Standard ist.\n\nHier wurde daraus jedoch ein Geschäftsmodell gemacht. Für den Zusatzfahrer und angebliche „Probleme“ sollten auf einmal hunderte Euro zusätzlich gezahlt werden. Der ursprünglich gebuchte Preis war damit praktisch wertlos. Am Ende standen rund 300 €, wo andere Anbieter für exakt denselben Zeitraum ca. 60 € verlangen.\n\nWir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz. Keine Erklärung, keine Transparenz, kein Entgegenkommen – nur das starre Festhalten an einem völlig überzogenen Preis.\n\nDer Eindruck entsteht unweigerlich, dass hier bewusst Druck aufgebaut wird, um Kunden vor Ort zu überrumpeln und zu teuren Zusatzkosten zu zwingen. Wer nicht mitspielt, verliert Zeit, Nerven – oder geht, so wie wir.\n\nNach erheblichem Zeitverlust und einer maximal unangenehmen Abholung haben wir den Mietwagen konsequent abgelehnt. Und ganz ehrlich: Das war die einzig richtige Entscheidung.\n\nFazit: Dieses Verhalten hat nichts mit kundenorientiertem Service zu tun. Wer Transparenz, Fairness und einen respektvollen Umgang erwartet, sollte diesen Anbieter meiden. So gewinnt man keine Kunden – so verliert man sie. 1 2026-01-21 01:27:48.343159+00 Maximilian V \N 1 2026-01-29 04:35:09.626367+00 2026-01-25 01:27:52.298186+00 675 \N google Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB unknown {"text": "Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 100% in Ordnung. Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (nationaler Terminal). Kommt man im Terminal 1 (internationaler Terminal) an, muss man auch nach rechts, aber ganz zum Ende vom Terminal 1 gehen. (ca. 300 m) Ein Schild \\"Meetingpoint\\" haben wir trotzdem nicht gesehen.\\nDer Transfer zur Mietstation dauerte nur ca. 10 Minuten.\\nDie Fahrzeugführer und - Rückgabe ging auch sehr schnell. Sie dauerte nur ein paar Minuten, eben so lange wie man für den Papierkram braucht.", "author": "Olaf Kaiser", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB", "timestamp": "4 days ago"} Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 100% in Ordnung. Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (nationaler Terminal). Kommt man im Terminal 1 (internationaler Terminal) an, muss man auch nach rechts, aber ganz zum Ende vom Terminal 1 gehen. (ca. 300 m) Ein Schild "Meetingpoint" haben wir trotzdem nicht gesehen.\nDer Transfer zur Mietstation dauerte nur ca. 10 Minuten.\nDie Fahrzeugführer und - Rückgabe ging auch sehr schnell. Sie dauerte nur ein paar Minuten, eben so lange wie man für den Papierkram braucht. 5 2026-01-21 01:27:48.343161+00 Olaf Kaiser \N 1 2026-01-29 04:35:09.629741+00 2026-01-25 01:27:52.301256+00 676 \N google Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB unknown {"text": "Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!! Un coche muy nuevo!! 100% recomendable!!", "author": "Alejandro García Díaz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB", "timestamp": "5 days ago"} Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!! Un coche muy nuevo!! 100% recomendable!! 5 2026-01-20 01:27:48.343167+00 Alejandro García Díaz \N 1 2026-01-29 04:35:09.633128+00 2026-01-25 01:27:52.325937+00 1363 \N google Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB unknown {"text": "Nice experience ! Worth to go there again. Great assistance.", "author": "Peter Dingenen", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB", "timestamp": "3 months ago"} Nice experience ! Worth to go there again. Great assistance. 4 2025-11-01 01:52:39.833374+00 Peter Dingenen \N 1 2026-01-30 09:54:06.77385+00 2026-01-30 02:01:09.109654+00 1495 \N google ChZDSUhNMG9nS0VJQ0FnSUNJemRDMmZBEAE unknown {"text": "Great fun good track.well run nice little cafe bar", "author": "Keith Shrs", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJemRDMmZBEAE", "timestamp": "7 years ago"} Great fun good track.well run nice little cafe bar 4 2019-02-01 01:52:39.833374+00 Keith Shrs \N 1 2026-01-30 09:54:07.147232+00 2026-01-30 02:01:09.537565+00 177 \N google Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB unknown {"text": "I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan which greeted me with a smile. You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern Europe. Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. Also the shuttle to the rental is not that easy to find, even though the location on the website is indicated ( as one shuttle drives up and down) We decided to walk which takes around 15-20 minutes.\\n\\nThe car i was offered is a VW Taigo with apple carplay. Very comfortable ride.", "author": "adam sheikh", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB", "timestamp": "a month ago"} I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan which greeted me with a smile. You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern Europe. Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. Also the shuttle to the rental is not that easy to find, even though the location on the website is indicated ( as one shuttle drives up and down) We decided to walk which takes around 15-20 minutes.\n\nThe car i was offered is a VW Taigo with apple carplay. Very comfortable ride. 4 2025-12-26 01:27:48.339742+00 adam sheikh \N 1 2026-01-29 04:35:07.615704+00 2026-01-25 01:27:49.888261+00 179 \N google Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB unknown {"text": "Choose a different company!\\nWe get here by foot because didn't want to spend hours of waiting for a shuttle bus . Negative atmosphere in the office people are not happy with service. One lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. Took ages to get the car.\\nWas charged 35€ for their fuel policy as we booked not via their website\\nWas charged another 60€ for managing the damage. ( windscreen chip costs €1200)\\nCouldn't find any of this info in terms and conditions.\\nReceived damaged car.\\nWaited shuttle as the driver needed to check damage on the car. And he was waiting another employee(not sure why it takes 2 person) We asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him)", "author": "Arnold K", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB", "timestamp": "a week ago"} Choose a different company!\nWe get here by foot because didn't want to spend hours of waiting for a shuttle bus . Negative atmosphere in the office people are not happy with service. One lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. Took ages to get the car.\nWas charged 35€ for their fuel policy as we booked not via their website\nWas charged another 60€ for managing the damage. ( windscreen chip costs €1200)\nCouldn't find any of this info in terms and conditions.\nReceived damaged car.\nWaited shuttle as the driver needed to check damage on the car. And he was waiting another employee(not sure why it takes 2 person) We asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him) 1 2026-01-18 01:27:48.340043+00 Arnold K \N 1 2026-01-29 04:35:07.643892+00 2026-01-25 01:27:49.905825+00 183 \N google Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB unknown {"text": "Where should I start. There is one mini bus that will take you from and to the airport. If they knew what to expect from their booking times they should have more cars to pick up people. We waited 50min for one. As we arrived the queues weren't that bad but the time they took with one person took forever. As it was our turn, we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. We got a car and as we were driving down to Puerto rico the car electrics went down twice on the motorway. We recorded a video and safely got to the place but called them numerous times as wanted to swap the car. They do not provide replacement services so we had to guess....drive back!!!! Yes, we drove a faulty car back to be able to get a new one. They seemed to know nothing about it despite my 100calls about the issue. Anyway....avoid this place! Although they are very polite and helpful at the pick up point this isnt enough to recommend them.", "author": "Martyna Wilk-Nowicka", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB", "timestamp": "a month ago"} Where should I start. There is one mini bus that will take you from and to the airport. If they knew what to expect from their booking times they should have more cars to pick up people. We waited 50min for one. As we arrived the queues weren't that bad but the time they took with one person took forever. As it was our turn, we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. We got a car and as we were driving down to Puerto rico the car electrics went down twice on the motorway. We recorded a video and safely got to the place but called them numerous times as wanted to swap the car. They do not provide replacement services so we had to guess....drive back!!!! Yes, we drove a faulty car back to be able to get a new one. They seemed to know nothing about it despite my 100calls about the issue. Anyway....avoid this place! Although they are very polite and helpful at the pick up point this isnt enough to recommend them. 1 2025-12-26 01:27:48.340081+00 Martyna Wilk-Nowicka \N 1 2026-01-29 04:35:07.656927+00 2026-01-25 01:27:49.921234+00 678 \N google Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB unknown {"text": "Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafen. Immer wieder gerne.", "author": "Anna Sotke", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB", "timestamp": "a week ago"} Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafen. Immer wieder gerne. 5 2026-01-18 01:27:48.343184+00 Anna Sotke \N 1 2026-01-29 04:35:09.642754+00 2026-01-25 01:27:52.346445+00 679 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB unknown {"text": "Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan. Recomiendo no alquiler a través de Do You Spain pues las condiciones contractuales no están claras. Por lo demás personal amable y buen servicio", "author": "Fernando MIGUEL MONTES", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB", "timestamp": "a week ago"} Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan. Recomiendo no alquiler a través de Do You Spain pues las condiciones contractuales no están claras. Por lo demás personal amable y buen servicio 4 2026-01-18 01:27:48.343194+00 Fernando MIGUEL MONTES \N 1 2026-01-29 04:35:09.649451+00 2026-01-25 01:27:52.349845+00 184 \N google Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB unknown {"text": "I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs.\\n\\nThey used every trick in the book to squeeze more money out of me the second I landed. First, they charged me an extra fee for fuel just because I apparently \\"didn't tick a box\\" for full-to-full. It’s a total scam designed to catch people out.\\n\\nThen they arbitrarily rejected my valid payment methods for the deposit—refusing cards for no reason—just to force me into paying a ridiculous €200 for \\"insurance\\" and tax that I didn't need and didn't want (I have insurance already). It’s pure coercion.\\n\\nSo I ended up paying DOUBLE for this car!!\\n\\nTo make matters worse, the staff were incredibly aggressive. The woman behind the desk actually started shouting at me, insulting my intelligence by yelling \\"it's not my fault you can't read\\" when I questioned the charges. She even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there.\\n\\nCompletely unprofessional, predatory, and nasty. Save your money and your sanity—rent from literally anyone else in Gran Canaria.\\n\\nI have filed a formal complaint but they are just completely ignoring me. This is ilegal and i will be taking this further.\\n\\nOh and the shuttle bus is terrible so takes ages to pick up and drop off your car.", "author": "Robert Parrish", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB", "timestamp": "3 weeks ago"} I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs.\n\nThey used every trick in the book to squeeze more money out of me the second I landed. First, they charged me an extra fee for fuel just because I apparently "didn't tick a box" for full-to-full. It’s a total scam designed to catch people out.\n\nThen they arbitrarily rejected my valid payment methods for the deposit—refusing cards for no reason—just to force me into paying a ridiculous €200 for "insurance" and tax that I didn't need and didn't want (I have insurance already). It’s pure coercion.\n\nSo I ended up paying DOUBLE for this car!!\n\nTo make matters worse, the staff were incredibly aggressive. The woman behind the desk actually started shouting at me, insulting my intelligence by yelling "it's not my fault you can't read" when I questioned the charges. She even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there.\n\nCompletely unprofessional, predatory, and nasty. Save your money and your sanity—rent from literally anyone else in Gran Canaria.\n\nI have filed a formal complaint but they are just completely ignoring me. This is ilegal and i will be taking this further.\n\nOh and the shuttle bus is terrible so takes ages to pick up and drop off your car. 1 2026-01-04 01:27:48.340089+00 Robert Parrish \N 1 2026-01-29 04:35:07.661072+00 2026-01-25 01:27:49.925517+00 189 \N google Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB unknown {"text": "We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to Gran Canaria. They said they couldnt change the name of the driver, so we had to reserve a second car and the first one was paid but we didn’t get the car . But instead of making us a good offer for the second reservation with the new driver (because they knew we paid the first reservation for no car in exchange) they wanted 130€ for the second reservation.\\nSo we had to pay in the end 180€ for 3 days instead of 50€.\\nAlso a very slowly service, we had to wait in the queue for over 1,5 hours.", "author": "Raf iosi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB", "timestamp": "2 months ago"} We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to Gran Canaria. They said they couldnt change the name of the driver, so we had to reserve a second car and the first one was paid but we didn’t get the car . But instead of making us a good offer for the second reservation with the new driver (because they knew we paid the first reservation for no car in exchange) they wanted 130€ for the second reservation.\nSo we had to pay in the end 180€ for 3 days instead of 50€.\nAlso a very slowly service, we had to wait in the queue for over 1,5 hours. 1 2025-11-26 01:27:48.340126+00 Raf iosi \N 1 2026-01-29 04:35:07.680051+00 2026-01-25 01:27:49.947544+00 191 \N google Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB unknown {"text": "It was a bit stressful looking for the meeting point for the mini bus at the airport but after that everything was very good. Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately on returning the car. Pick up and return was simply and very quick. Great service", "author": "andy armitage", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB", "timestamp": "3 weeks ago"} It was a bit stressful looking for the meeting point for the mini bus at the airport but after that everything was very good. Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately on returning the car. Pick up and return was simply and very quick. Great service 5 2026-01-04 01:27:48.340135+00 andy armitage \N 1 2026-01-29 04:35:07.685434+00 2026-01-25 01:27:49.952486+00 192 \N google Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB unknown {"text": "We booked a car through their system 2 weeks before our departure. We paid full in advance, we did online check-in and we met at the meeting point at the airport. They took us to their rental office and one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was NO CAR for us! We were a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her. The lady informed us that we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN!!!", "author": "KayS", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB", "timestamp": "2 months ago"} We booked a car through their system 2 weeks before our departure. We paid full in advance, we did online check-in and we met at the meeting point at the airport. They took us to their rental office and one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was NO CAR for us! We were a bit shocked, but politely asked, "What next?"—expecting a response/help from her. The lady informed us that we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN!!! 1 2025-11-26 01:27:48.340137+00 KayS \N 1 2026-01-29 04:35:07.688707+00 2026-01-25 01:27:49.960587+00 199 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB unknown {"text": "Great customer experience, quick and easy rental process. They are not located at the airport, but there is a regular shuttle bus from and to the airport. The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. For a precise location, I recommend that you ask someone on arrival.", "author": "Dejan Bileski - BD Media Bonn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB", "timestamp": "3 weeks ago"} Great customer experience, quick and easy rental process. They are not located at the airport, but there is a regular shuttle bus from and to the airport. The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. For a precise location, I recommend that you ask someone on arrival. 5 2026-01-04 01:27:48.340159+00 Dejan Bileski - BD Media Bonn \N 1 2026-01-29 04:35:07.71137+00 2026-01-25 01:27:50.002376+00 231 \N google ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE unknown {"text": "we had a very nice experience with this company. got a great car (brand new Peugeot 2008 diesel , fully equipped, with 700km) with zero deductable, unlimited milege, full to full, 350Euros for 7 days. although their office is not inside the Las Palmas airport, the shuttle was comfortable and fast, it was easy to find their bus, their office is near and brand new, their staff was kind and professional. strongly reconmend the place!", "author": "Ildiko Toth", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE", "timestamp": "11 months ago"} we had a very nice experience with this company. got a great car (brand new Peugeot 2008 diesel , fully equipped, with 700km) with zero deductable, unlimited milege, full to full, 350Euros for 7 days. although their office is not inside the Las Palmas airport, the shuttle was comfortable and fast, it was easy to find their bus, their office is near and brand new, their staff was kind and professional. strongly reconmend the place! 5 2025-03-01 01:27:48.340519+00 Ildiko Toth \N 1 2026-01-29 04:35:07.820089+00 2026-01-25 01:27:50.133031+00 205 \N google Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB unknown {"text": "we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total)or else we were charged a 1200 euro deposit. We were going to chose the deposit but they complained that my card had problems which I was forced to pay the 150€. The car given does not match what we ordered. Terrible experience, don’t come.", "author": "jenny wei", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB", "timestamp": "2 months ago"} we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total)or else we were charged a 1200 euro deposit. We were going to chose the deposit but they complained that my card had problems which I was forced to pay the 150€. The car given does not match what we ordered. Terrible experience, don’t come. 1 2025-11-26 01:27:48.340194+00 jenny wei \N 1 2026-01-29 04:35:07.737307+00 2026-01-25 01:27:50.028615+00 213 \N google ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB unknown {"text": "First time customer and didn’t take any additional insurances because I had rental car insurance from my credit card company. Therefore they made 2000€ authorization on my credit card.\\n\\nStaff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insurances.\\n\\nCar was new, less than 5000km driven and was as promised.\\n\\nAfter rerurning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes.\\n\\nWould use their services again and would recommend.", "author": "Ville Lappalainen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB", "timestamp": "a year ago"} First time customer and didn’t take any additional insurances because I had rental car insurance from my credit card company. Therefore they made 2000€ authorization on my credit card.\n\nStaff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insurances.\n\nCar was new, less than 5000km driven and was as promised.\n\nAfter rerurning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes.\n\nWould use their services again and would recommend. 5 2025-01-25 01:27:48.340431+00 Ville Lappalainen \N 1 2026-01-29 04:35:07.764851+00 2026-01-25 01:27:50.051253+00 219 \N google ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE unknown {"text": "I don't usually write reviews but I feel obliged to for ClickRent as I hope it will help you out with deciding on choosing a car rental in Gran Canaria.\\nClickRent's office is about a 3 minute drive from the airport in a brand new check in centre which has many check-in desks and very helpful staff. The shuttle bus from the airport is super easy to find and Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!\\nCheck in was quick and easy and we were on the road in under 20 minutes. All their cars are brand new and ours had less than 12k miles on the clock.\\nReturning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning.\\nI can't recommend ClickRent enough!", "author": "Fred Toft", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE", "timestamp": "8 months ago"} I don't usually write reviews but I feel obliged to for ClickRent as I hope it will help you out with deciding on choosing a car rental in Gran Canaria.\nClickRent's office is about a 3 minute drive from the airport in a brand new check in centre which has many check-in desks and very helpful staff. The shuttle bus from the airport is super easy to find and Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!\nCheck in was quick and easy and we were on the road in under 20 minutes. All their cars are brand new and ours had less than 12k miles on the clock.\nReturning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning.\nI can't recommend ClickRent enough! 5 2025-05-30 01:27:48.340461+00 Fred Toft \N 1 2026-01-29 04:35:07.78225+00 2026-01-25 01:27:50.07044+00 221 \N google ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB unknown {"text": "Outstanding Service – Highly Recommended!\\n\\nI had an excellent experience with ClickRent and would highly recommend them to anyone in need of a reliable and reasonably priced rental car. The entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient. The vehicle itself was in great condition, almost brand new, clean, and well-maintained.\\n\\nWhat truly stood out was the exceptional customer service (especially from the picking up driver). The staff was extremely friendly, professional, and helpful, making the whole experience smooth and stress-free.\\n\\nOverall, fantastic service, great cars, and a team that genuinely cares about customer satisfaction. I will definitely be using ClickRent again in the future!", "author": "Marta G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB", "timestamp": "10 months ago"} Outstanding Service – Highly Recommended!\n\nI had an excellent experience with ClickRent and would highly recommend them to anyone in need of a reliable and reasonably priced rental car. The entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient. The vehicle itself was in great condition, almost brand new, clean, and well-maintained.\n\nWhat truly stood out was the exceptional customer service (especially from the picking up driver). The staff was extremely friendly, professional, and helpful, making the whole experience smooth and stress-free.\n\nOverall, fantastic service, great cars, and a team that genuinely cares about customer satisfaction. I will definitely be using ClickRent again in the future! 5 2025-03-31 01:27:48.340465+00 Marta G \N 1 2026-01-29 04:35:07.789243+00 2026-01-25 01:27:50.077364+00 228 \N google ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE unknown {"text": "I really enjoyed my first experience renting from Click Rent located in Gran Canary. Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward. They really goes up and beyond to make sure we’re satisfied.\\nThis auto rental provided the best service we have ever had when renting a car. We would definitely rent from them again. Very professional and excellent service.\\nI would recommend this place to rent from if you want to be in and out in a timely manner. Have a clean fresh stylish vehicle to sport with great pricing. Once again I had an excellent experience...", "author": "ionut lungu-ionita", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE", "timestamp": "a year ago"} I really enjoyed my first experience renting from Click Rent located in Gran Canary. Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward. They really goes up and beyond to make sure we’re satisfied.\nThis auto rental provided the best service we have ever had when renting a car. We would definitely rent from them again. Very professional and excellent service.\nI would recommend this place to rent from if you want to be in and out in a timely manner. Have a clean fresh stylish vehicle to sport with great pricing. Once again I had an excellent experience... 5 2025-01-25 01:27:48.340501+00 ionut lungu-ionita \N 1 2026-01-29 04:35:07.810314+00 2026-01-25 01:27:50.113839+00 234 \N google ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB unknown {"text": "Avoid at all cost. First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs and no one to pick you up. Had to call to ask for the shuttle. They then pointed out the smallest scratches so I understood this was a money making effort. Upon return they checked forensically for damage even under the car. But couldn’t find anything. At last they found something they liked, sand in the car. Surprising given the destination?! They wanted to charge 50 EUR for a deep clean! I refused but they were adamant. To prove my point I went and did a vacuum on my own, cost me 2 EUR. The person handling my return was also rude even to my family including kids!\\nDon’t use this company.", "author": "Djamshid Ghavami", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB", "timestamp": "a year ago"} Avoid at all cost. First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs and no one to pick you up. Had to call to ask for the shuttle. They then pointed out the smallest scratches so I understood this was a money making effort. Upon return they checked forensically for damage even under the car. But couldn’t find anything. At last they found something they liked, sand in the car. Surprising given the destination?! They wanted to charge 50 EUR for a deep clean! I refused but they were adamant. To prove my point I went and did a vacuum on my own, cost me 2 EUR. The person handling my return was also rude even to my family including kids!\nDon’t use this company. 1 2025-01-25 01:27:48.340526+00 Djamshid Ghavami \N 1 2026-01-29 04:35:07.82597+00 2026-01-25 01:27:50.158648+00 236 \N google ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE unknown {"text": "Excellent service. Large variety of brand-new cars, in good condition - even if you book last minute. The staff was very friendly, and both the pick-up and drop-off was smooth. Its further away from the terminal, so you have to ride their free shuttle to get to the airport, but neither the lenght of the ride or the waiting times for the shuttle were long. Would definetely rent again and recommend this place.", "author": "Bence Nemes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE", "timestamp": "a year ago"} Excellent service. Large variety of brand-new cars, in good condition - even if you book last minute. The staff was very friendly, and both the pick-up and drop-off was smooth. Its further away from the terminal, so you have to ride their free shuttle to get to the airport, but neither the lenght of the ride or the waiting times for the shuttle were long. Would definetely rent again and recommend this place. 5 2025-01-25 01:27:48.340531+00 Bence Nemes \N 1 2026-01-29 04:35:07.831064+00 2026-01-25 01:27:50.169056+00 247 \N google Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB unknown {"text": "It would be very important to better mark where the shuttle is. Like a sign maybe. but apart from that point everything was fine. Thank You", "author": "Bruhs (leon)", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB", "timestamp": "5 months ago"} It would be very important to better mark where the shuttle is. Like a sign maybe. but apart from that point everything was fine. Thank You 5 2025-08-28 01:27:48.340614+00 Bruhs (leon) \N 1 2026-01-29 04:35:07.85589+00 2026-01-25 01:27:50.223293+00 248 \N google ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE unknown {"text": "The station is about 5 minutes from the airport, the shuttle worked excellently. My car was like new, check-in and check-out were very well organized. I would book again.", "author": "Torben", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE", "timestamp": "a year ago"} The station is about 5 minutes from the airport, the shuttle worked excellently. My car was like new, check-in and check-out were very well organized. I would book again. 5 2025-01-25 01:27:48.340616+00 Torben \N 1 2026-01-29 04:35:07.857628+00 2026-01-25 01:27:50.225972+00 255 \N google ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB unknown {"text": "Excellent service!\\n\\nWhen we arrived we got a bit lost and couldn’t find “el punto de encuentro”. If that’s your case, go to the uppermost floor and exit on gate number 2. Right opposite to gate 2 there’s a parking. Cross the street and enter the parking. Look right and walk a bit until you see the Punto the encuentro. There you’ll find clickrent team and their shuttle.", "author": "Sergi Toda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB", "timestamp": "a year ago"} Excellent service!\n\nWhen we arrived we got a bit lost and couldn’t find “el punto de encuentro”. If that’s your case, go to the uppermost floor and exit on gate number 2. Right opposite to gate 2 there’s a parking. Cross the street and enter the parking. Look right and walk a bit until you see the Punto the encuentro. There you’ll find clickrent team and their shuttle. 5 2025-01-25 01:27:48.34064+00 Sergi Toda \N 1 2026-01-29 04:35:07.875807+00 2026-01-25 01:27:50.648889+00 259 \N google ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE unknown {"text": "Plane got delayed, they don’t care to manage shuttle bus for delayed flight’s\\nAlso did not get a refund or partly refund, cancels the calls several times, I do not recommend them, no interest in customers needs", "author": "Matthias Kullmann", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE", "timestamp": "10 months ago"} Plane got delayed, they don’t care to manage shuttle bus for delayed flight’s\nAlso did not get a refund or partly refund, cancels the calls several times, I do not recommend them, no interest in customers needs 1 2025-03-31 01:27:48.340671+00 Matthias Kullmann \N 1 2026-01-29 04:35:07.885322+00 2026-01-25 01:27:50.676621+00 277 \N google ChZDSUhNMG9nS0VJQ0FnSURmcnUzYlJnEAE unknown {"text": "Not easy to pick up the car", "author": "Lucia Illuminati", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmcnUzYlJnEAE", "timestamp": "a year ago"} Not easy to pick up the car 4 2025-01-25 01:27:48.340765+00 Lucia Illuminati \N 1 2026-01-29 04:35:07.926725+00 2026-01-25 01:27:50.7721+00 279 \N google Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB unknown {"text": "Quick service, friendly staff definitely I will use Click Rental in the future!", "author": "George-Adrian Dumitrascu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB", "timestamp": "a day ago"} Quick service, friendly staff definitely I will use Click Rental in the future! 5 2026-01-24 01:27:48.340786+00 George-Adrian Dumitrascu \N 1 2026-01-29 04:35:07.934182+00 2026-01-25 01:27:50.781562+00 314 \N google Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB unknown {"text": "Sehr unseriös!\\nBei der Auto Abholung musste ich ewig warten… vor Ort habe ich dann erfahren das die sich 1000€ vormerken/ abbuchen und ich die in einem Zeitraum von einem Monat zurück erwarten kann….\\n\\nDas Auto selbst eine Zumutung für die Landschaft….\\nWir sind damit quer durch die Insel gefahren also auch durch aus Berg hoch und runter was für die Inseln keine unübliche Strecke ist.\\nDafür war das Auto leider gar nicht geeignet.\\nBei 30-40 km/h eine schaltempfehlung vom 1. Gang gegeben.\\nÜber diese knapp 40 km/h kam man keines Wegs drüber…\\nZumindest passten gequetscht 4 Koffer in die Schrott Karre.\\nPEUGOT 208\\nOnline haben wir Seat Ibiza „oder ähnliches“ gemietet.\\nDas Auto hatte schon einige Schrammen und Farbe ist abgeblättert. Man hatte schon die Sorge das einem was angehangen wird.\\nDie Rückgabe ging jedoch zügig und das Geld kam glücklicherweise auch schnell zurück - am selben Tag noch.", "author": "Alina Jühlke", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB", "timestamp": "4 months ago"} Sehr unseriös!\nBei der Auto Abholung musste ich ewig warten… vor Ort habe ich dann erfahren das die sich 1000€ vormerken/ abbuchen und ich die in einem Zeitraum von einem Monat zurück erwarten kann….\n\nDas Auto selbst eine Zumutung für die Landschaft….\nWir sind damit quer durch die Insel gefahren also auch durch aus Berg hoch und runter was für die Inseln keine unübliche Strecke ist.\nDafür war das Auto leider gar nicht geeignet.\nBei 30-40 km/h eine schaltempfehlung vom 1. Gang gegeben.\nÜber diese knapp 40 km/h kam man keines Wegs drüber…\nZumindest passten gequetscht 4 Koffer in die Schrott Karre.\nPEUGOT 208\nOnline haben wir Seat Ibiza „oder ähnliches“ gemietet.\nDas Auto hatte schon einige Schrammen und Farbe ist abgeblättert. Man hatte schon die Sorge das einem was angehangen wird.\nDie Rückgabe ging jedoch zügig und das Geld kam glücklicherweise auch schnell zurück - am selben Tag noch. 1 2025-09-27 01:27:48.341101+00 Alina Jühlke \N 1 2026-01-29 04:35:08.197721+00 2026-01-25 01:27:50.919205+00 281 \N google Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB unknown {"text": "Wir haben für eine Woche ein Auto gemietet. Preislich top! Wir haben nur 160€ bezahlt.\\nDa wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt. Wir nahmen dann für 12 € ein Taxi.\\nIch nehme an, dass das Shuttle draußen vor Terminal 7 fährt, zumindest würden wir dort abgeladen (s. Fotos)\\n\\nBei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit der Dokumentation von vorhandenen Schäden, die man bei der Abholung bekommt, abzugleichen. Wir wurden nämlich auf einen schaden angesprochen, hatten aber dann alles gleich zur Hand und alles war gut!\\n\\nWir würden hier wieder mieten. :)", "author": "Nancy Müller", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB", "timestamp": "2 weeks ago"} Wir haben für eine Woche ein Auto gemietet. Preislich top! Wir haben nur 160€ bezahlt.\nDa wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt. Wir nahmen dann für 12 € ein Taxi.\nIch nehme an, dass das Shuttle draußen vor Terminal 7 fährt, zumindest würden wir dort abgeladen (s. Fotos)\n\nBei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit der Dokumentation von vorhandenen Schäden, die man bei der Abholung bekommt, abzugleichen. Wir wurden nämlich auf einen schaden angesprochen, hatten aber dann alles gleich zur Hand und alles war gut!\n\nWir würden hier wieder mieten. :) 5 2026-01-11 01:27:48.34079+00 Nancy Müller \N 1 2026-01-29 04:35:07.943794+00 2026-01-25 01:27:50.787523+00 283 \N google Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB unknown {"text": "Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min Fahrt zur Station, schnelle und sehr freundliche Bearbeitung und herausgabe der Schlüssel. Fahrzeug ( JEEP ) war sauber und stand schon direkt vor der Station. Tolles Fahrzeug, welches wir nach 14 Tagen wieder an der Station abgeben konnten. Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit erst mit 8:00 Uhr angegeben war. Freundliche und schnelle Kontrolle, sowie sofortige Freischaltung der 2000.€ Kaution, welches mit die Kreditkartenapp nach 2 min. schon bestätigt hatte. Wir ( 6 Fahrgäste ) wurden umgehend wieder mit dem Shuttlebus zum Airport LPA gebracht. Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen.", "author": "Salvatore Altieri", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB", "timestamp": "3 months ago"} Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min Fahrt zur Station, schnelle und sehr freundliche Bearbeitung und herausgabe der Schlüssel. Fahrzeug ( JEEP ) war sauber und stand schon direkt vor der Station. Tolles Fahrzeug, welches wir nach 14 Tagen wieder an der Station abgeben konnten. Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit erst mit 8:00 Uhr angegeben war. Freundliche und schnelle Kontrolle, sowie sofortige Freischaltung der 2000.€ Kaution, welches mit die Kreditkartenapp nach 2 min. schon bestätigt hatte. Wir ( 6 Fahrgäste ) wurden umgehend wieder mit dem Shuttlebus zum Airport LPA gebracht. Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen. 4 2025-10-27 01:27:48.340795+00 Salvatore Altieri \N 1 2026-01-29 04:35:08.004945+00 2026-01-25 01:27:50.797751+00 285 \N google Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB unknown {"text": "Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden.\\nDas Personal war äußerst freundlich und hilfsbereit, und die Abwicklung verlief dank des vorab möglichen Online Check unterwegs zur Filiale ins besonders zügig.\\nDas Fahrzeug war in einwandfreiem Zustand sogar ein besseres Modell als ursprünglich gebucht.\\nAuch das Preis-Leistungs-Verhältnis überzeugt auf ganzer Linie.\\nLediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert!", "author": "Alayn G.O", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB", "timestamp": "2 months ago"} Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden.\nDas Personal war äußerst freundlich und hilfsbereit, und die Abwicklung verlief dank des vorab möglichen Online Check unterwegs zur Filiale ins besonders zügig.\nDas Fahrzeug war in einwandfreiem Zustand sogar ein besseres Modell als ursprünglich gebucht.\nAuch das Preis-Leistungs-Verhältnis überzeugt auf ganzer Linie.\nLediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert! 5 2025-11-26 01:27:48.340828+00 Alayn G.O \N 1 2026-01-29 04:35:08.028515+00 2026-01-25 01:27:50.803453+00 287 \N google Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB unknown {"text": "Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. La navetta era già pronta per accompagnarci all'aeroporto. Arrivati in soli 5 minuti. Direi servizio eccellente. Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. Di questo daremo conferma ai lettori appena ci verrà restituita la caparra", "author": "Aleaquilani Aquilani", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB", "timestamp": "2 weeks ago"} Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. La navetta era già pronta per accompagnarci all'aeroporto. Arrivati in soli 5 minuti. Direi servizio eccellente. Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. Di questo daremo conferma ai lettori appena ci verrà restituita la caparra 5 2026-01-11 01:27:48.34084+00 Aleaquilani Aquilani \N 1 2026-01-29 04:35:08.041443+00 2026-01-25 01:27:50.810217+00 289 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB unknown {"text": "Nous avons loué une voiture chez Click & Print pour notre séjour à Gran Canaria.\\n\\nPoints positifs :\\nLa vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver.\\nLe véhicule était impeccable, récent et parfaitement conforme à la réservation.\\nL’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique.\\n\\nPoints à améliorer :\\nÀ notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. Un simple message indiquant un délai ou une présence visible éviterait cette situation.\\nL’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. Personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme.\\n\\n👉 En résumé : service sérieux, voiture nickel, mais expérience client perfectible sur l’accueil.\\nJe recommande malgré tout et referai appel à eux maintenant que je connais le fonctionnement.", "author": "Virginie SOULIER", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB", "timestamp": "a week ago"} Nous avons loué une voiture chez Click & Print pour notre séjour à Gran Canaria.\n\nPoints positifs :\nLa vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver.\nLe véhicule était impeccable, récent et parfaitement conforme à la réservation.\nL’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique.\n\nPoints à améliorer :\nÀ notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. Un simple message indiquant un délai ou une présence visible éviterait cette situation.\nL’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. Personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme.\n\n👉 En résumé : service sérieux, voiture nickel, mais expérience client perfectible sur l’accueil.\nJe recommande malgré tout et referai appel à eux maintenant que je connais le fonctionnement. 4 2026-01-18 01:27:48.340845+00 Virginie SOULIER \N 1 2026-01-29 04:35:08.052917+00 2026-01-25 01:27:50.820997+00 621 \N google ChdDSUhNMG9nS0VJQ0FnSURIeExUTjBRRRAB unknown {"text": "Me encanta este sitio lo recomiendo al 100% super económico, super buen trato, me encantó la experiencia y para repetir de verdad, fui atendido por carmen, Néstor y francisco y super guay el trato con ellos", "author": "Alexis Melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIeExUTjBRRRAB", "timestamp": "a year ago"} Me encanta este sitio lo recomiendo al 100% super económico, super buen trato, me encantó la experiencia y para repetir de verdad, fui atendido por carmen, Néstor y francisco y super guay el trato con ellos 5 2025-01-25 01:27:48.342905+00 Alexis Melian \N 1 2026-01-29 04:35:09.445699+00 2026-01-25 01:27:52.071652+00 290 \N google Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB unknown {"text": "Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada.\\nPrimero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. Muy bordes y te castigan por no coger su seguro. Muy mal.", "author": "Xavi Ordoñez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB", "timestamp": "3 months ago"} Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada.\nPrimero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. Muy bordes y te castigan por no coger su seguro. Muy mal. 1 2025-10-27 01:27:48.340848+00 Xavi Ordoñez \N 1 2026-01-29 04:35:08.060269+00 2026-01-25 01:27:50.824841+00 292 \N google Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB unknown {"text": "Im Urlaub angekommen , erstmal an die Arbeit machen die Autovermietung zu finden. Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder , Auskünfte über die Autovermietung clickrent am Flughafen, haben wir uns dazu entschieden uns selbst auf die Suche zu begeben. Damit angefangen haben wir uns erstmal am Flughafen durchgefragt und wurden in sämtliche Himmelsrichtungen geschickt um dort im Endeffekt keinen Shuttlebus aufzufinden. Aber mit der Zeit wurde unsere Herde der Suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 Rumirrende die auf der Suche nach Clickrent waren. Nach gerade mal anderthalb Stunden haben wir den Abholort vom Shuttle am Flughafen entdeckt. Wie schon geahnt ist dieser wirklich auf keinste Art und Weise ausgeschildert. Aber wir wollen uns ja nicht beschweren, wir sind nicht wirklich im Urlaub , wir sind durchweg Pfadfinder . Bei der Autovermietung angekommen mussten wir schockierend feststellen dass es auf Gran Canaria Schlangen gibt . In dieser reite sich unsere Herde weitere 30 Minuten ein um anschließend eine super günstige Kaution von 2000€ zu zahlen. Über das Auto ansich kann ich nichts negatives sagen . Die Rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine Schlange aufzufinden war . Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob man es rechtzeitig zum Flieger schafft , kann ich nur ans Herz legen , entscheidet euch für clickrent . Persönlich hatte ich noch nie so ein unbeschreibliches Erlebnis bei einer Autovermietung", "author": "Michael Schäfer", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB", "timestamp": "2 months ago"} Im Urlaub angekommen , erstmal an die Arbeit machen die Autovermietung zu finden. Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder , Auskünfte über die Autovermietung clickrent am Flughafen, haben wir uns dazu entschieden uns selbst auf die Suche zu begeben. Damit angefangen haben wir uns erstmal am Flughafen durchgefragt und wurden in sämtliche Himmelsrichtungen geschickt um dort im Endeffekt keinen Shuttlebus aufzufinden. Aber mit der Zeit wurde unsere Herde der Suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 Rumirrende die auf der Suche nach Clickrent waren. Nach gerade mal anderthalb Stunden haben wir den Abholort vom Shuttle am Flughafen entdeckt. Wie schon geahnt ist dieser wirklich auf keinste Art und Weise ausgeschildert. Aber wir wollen uns ja nicht beschweren, wir sind nicht wirklich im Urlaub , wir sind durchweg Pfadfinder . Bei der Autovermietung angekommen mussten wir schockierend feststellen dass es auf Gran Canaria Schlangen gibt . In dieser reite sich unsere Herde weitere 30 Minuten ein um anschließend eine super günstige Kaution von 2000€ zu zahlen. Über das Auto ansich kann ich nichts negatives sagen . Die Rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine Schlange aufzufinden war . Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob man es rechtzeitig zum Flieger schafft , kann ich nur ans Herz legen , entscheidet euch für clickrent . Persönlich hatte ich noch nie so ein unbeschreibliches Erlebnis bei einer Autovermietung 1 2025-11-26 01:27:48.340852+00 Michael Schäfer \N 1 2026-01-29 04:35:08.069867+00 2026-01-25 01:27:50.831604+00 294 \N google Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB unknown {"text": "Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. Al llegar finalmente a la oficina la información tampoco fue precisa. Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! Totalmente desproporcionado pero no quedaba otra. Al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. … Muy mala experiencia. Nada recomendable.", "author": "Borja Basozabal", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB", "timestamp": "2 weeks ago"} Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. Al llegar finalmente a la oficina la información tampoco fue precisa. Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! Totalmente desproporcionado pero no quedaba otra. Al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. … Muy mala experiencia. Nada recomendable. 1 2026-01-11 01:27:48.340864+00 Borja Basozabal \N 1 2026-01-29 04:35:08.07862+00 2026-01-25 01:27:50.83729+00 295 \N google Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB unknown {"text": "Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et auto saame kätte Clickrent-st. Seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui pole varem käinud cran canarial. Ehk siis peate minema teisele korrusele õue ja station 2 juurde.\\nAuto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav.", "author": "Meeli Tali-Aruväli", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB", "timestamp": "2 months ago"} Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et auto saame kätte Clickrent-st. Seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui pole varem käinud cran canarial. Ehk siis peate minema teisele korrusele õue ja station 2 juurde.\nAuto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav. 3 2025-11-26 01:27:48.340866+00 Meeli Tali-Aruväli \N 1 2026-01-29 04:35:08.083686+00 2026-01-25 01:27:50.840713+00 298 \N google Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB unknown {"text": "Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach, die Abholung (Transfer) hat super geklappt. Wichtig ist es, den Sammelpunkt auf dem Abflugdeck (Etage 1 Ausgang 1) aufzusuchen und ggf. einfach paar Minuten zu warten. Die Übergabe verlief schnell und das Fahrzeug war sehr sauber. Wir waren sehr zufrieden und kommen gern wieder.", "author": "Jay Jay", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB", "timestamp": "3 weeks ago"} Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach, die Abholung (Transfer) hat super geklappt. Wichtig ist es, den Sammelpunkt auf dem Abflugdeck (Etage 1 Ausgang 1) aufzusuchen und ggf. einfach paar Minuten zu warten. Die Übergabe verlief schnell und das Fahrzeug war sehr sauber. Wir waren sehr zufrieden und kommen gern wieder. 5 2026-01-04 01:27:48.340879+00 Jay Jay \N 1 2026-01-29 04:35:08.102892+00 2026-01-25 01:27:50.852953+00 302 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB unknown {"text": "Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. Así mismo se niega a devolverme el dinero ya que según ellos no son responsables. Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero.", "author": "Carlos Moreno", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB", "timestamp": "2 weeks ago"} Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. Así mismo se niega a devolverme el dinero ya que según ellos no son responsables. Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero. 1 2026-01-11 01:27:48.340893+00 Carlos Moreno \N 1 2026-01-29 04:35:08.139562+00 2026-01-25 01:27:50.871686+00 303 \N google Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB unknown {"text": "Appena tornato da Gran Canaria e prima volta con ClickRent.\\nLa mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. Unico inconveniente risolto da un buon servizio della navetta. Ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. Anche con questa formula ClickRent si è dimostrata la più vantaggiosa. Consigliatissima!!", "author": "Nino Amoruso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB", "timestamp": "4 weeks ago"} Appena tornato da Gran Canaria e prima volta con ClickRent.\nLa mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. Unico inconveniente risolto da un buon servizio della navetta. Ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. Anche con questa formula ClickRent si è dimostrata la più vantaggiosa. Consigliatissima!! 5 2025-12-28 01:27:48.340895+00 Nino Amoruso \N 1 2026-01-29 04:35:08.145578+00 2026-01-25 01:27:50.874279+00 305 \N google Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB unknown {"text": "Ich war schon ca. 50x Kunde bei Mietwagenanbietern, aber noch nie so enttäuscht wie hier.\\n\\nWarum? Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spanische KI-Hotline, keine Ausschilderung und eine nicht brauchbare Wegbeschreibung vorab. Da nur ein Shuttle zu dem Zeitpunkt fuhr und die Schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden.\\n\\nDa es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte Inspektion der Schäden am Auto und machten nur oberflächliche Fotos und Videos. Bei der Rückgabe wurde dann vorne unterhalb der Frontschürze(!) ein Mini-Kratzer festgestellt, welcher angeblich durch uns verursacht wurde. Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag wurden zudem noch weitere 60 € vom Konto ohne Angabe von Gründen abgebucht. Seit drei Wochen versuche ich clickrent zu erreichen, aber die E-Mails werden ignoriert. Werde die Sache jetzt meinem Anwalt übergeben, denn dieses Vorgehen scheint Masche zu sein...", "author": "Florian Reisig", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB", "timestamp": "a month ago"} Ich war schon ca. 50x Kunde bei Mietwagenanbietern, aber noch nie so enttäuscht wie hier.\n\nWarum? Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spanische KI-Hotline, keine Ausschilderung und eine nicht brauchbare Wegbeschreibung vorab. Da nur ein Shuttle zu dem Zeitpunkt fuhr und die Schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden.\n\nDa es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte Inspektion der Schäden am Auto und machten nur oberflächliche Fotos und Videos. Bei der Rückgabe wurde dann vorne unterhalb der Frontschürze(!) ein Mini-Kratzer festgestellt, welcher angeblich durch uns verursacht wurde. Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag wurden zudem noch weitere 60 € vom Konto ohne Angabe von Gründen abgebucht. Seit drei Wochen versuche ich clickrent zu erreichen, aber die E-Mails werden ignoriert. Werde die Sache jetzt meinem Anwalt übergeben, denn dieses Vorgehen scheint Masche zu sein... 1 2025-12-26 01:27:48.341027+00 Florian Reisig \N 1 2026-01-29 04:35:08.160806+00 2026-01-25 01:27:50.883379+00 309 \N google Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB unknown {"text": "Diese Autovermietung ist absolut nicht zu empfehlen.\\nErst mal muss man sich am Flughafen samt Gepäck und Kindern quälend lange durchfragen, wo der Standort eigentlich ist. Es gibt keinerlei Hinweisschilder. Kaum eine Person am Flughafen kennt die Firma. Es hat fast 30 Minuten gedauert, bis wir mit Hilfe anderer Personen erfahren haben, wo man per Shuttle abgeholt wird. Auch dort war kein Schild angebracht. Niemand kam. Wir mussten die Hotline von Click Rent anrufen und uns durch eine KI Ansage kämpfen die nur spanisch sprach. Weitere 20 Minuten später wurden wir dann endlich abgeholt.\\nVor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik... ohne Worte.\\nDas SCHLIMMSTE aber war, das uns\\n6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Reinigungskosten von der Kaution \\"gestohlen\\" wurden, WEIL etwas Sand auf den Sitzen und im Fußraum zurückgeblieben ist. UNFASSBAR!\\nWir haben schon dutzende Male Mietwagen um Urlaub gebucht,\\ndoch sowas ist uns bisher niemals untergekommen.\\nDas war definitiv das erste und auch das LETZTE MAL das wir hier Kunde waren!!!", "author": "DJ Dan", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB", "timestamp": "2 months ago"} Diese Autovermietung ist absolut nicht zu empfehlen.\nErst mal muss man sich am Flughafen samt Gepäck und Kindern quälend lange durchfragen, wo der Standort eigentlich ist. Es gibt keinerlei Hinweisschilder. Kaum eine Person am Flughafen kennt die Firma. Es hat fast 30 Minuten gedauert, bis wir mit Hilfe anderer Personen erfahren haben, wo man per Shuttle abgeholt wird. Auch dort war kein Schild angebracht. Niemand kam. Wir mussten die Hotline von Click Rent anrufen und uns durch eine KI Ansage kämpfen die nur spanisch sprach. Weitere 20 Minuten später wurden wir dann endlich abgeholt.\nVor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik... ohne Worte.\nDas SCHLIMMSTE aber war, das uns\n6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Reinigungskosten von der Kaution "gestohlen" wurden, WEIL etwas Sand auf den Sitzen und im Fußraum zurückgeblieben ist. UNFASSBAR!\nWir haben schon dutzende Male Mietwagen um Urlaub gebucht,\ndoch sowas ist uns bisher niemals untergekommen.\nDas war definitiv das erste und auch das LETZTE MAL das wir hier Kunde waren!!! 1 2025-11-26 01:27:48.341072+00 DJ Dan \N 1 2026-01-29 04:35:08.177297+00 2026-01-25 01:27:50.899156+00 310 \N google Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB unknown {"text": "A fuir !!! L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré.\\nIl ne veut rien savoir au guichet et nous dit de partir. Je lui demande le remboursement et il me répond de voir avec Do you spain .\\nNous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la preuve que mon permis est bien valide.\\nContacter Do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. Ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ...\\nNous n'allons pas en rester là .\\nA fuir Clickrent et Do you spain, des voleurs !", "author": "Manu gaigier", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB", "timestamp": "3 weeks ago"} A fuir !!! L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré.\nIl ne veut rien savoir au guichet et nous dit de partir. Je lui demande le remboursement et il me répond de voir avec Do you spain .\nNous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la preuve que mon permis est bien valide.\nContacter Do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. Ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ...\nNous n'allons pas en rester là .\nA fuir Clickrent et Do you spain, des voleurs ! 1 2026-01-04 01:27:48.341075+00 Manu gaigier \N 1 2026-01-29 04:35:08.181724+00 2026-01-25 01:27:50.902047+00 398 \N google Ci9DQUlRQUNvZENodHljRjlvT2taRmMwSnRVMXBXZW1wSVVERTFjbmMyYm1SbFVIYxAB unknown {"text": "Muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancelación gratuita” y no especifican q tienes 24h de antelación para cancelar . No reembolsan y tampoco t dan una alternativa para cambiar el coche por el mismo precio", "author": "Jose Chiappetta", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taRmMwSnRVMXBXZW1wSVVERTFjbmMyYm1SbFVIYxAB", "timestamp": "4 months ago"} Muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancelación gratuita” y no especifican q tienes 24h de antelación para cancelar . No reembolsan y tampoco t dan una alternativa para cambiar el coche por el mismo precio 1 2025-09-27 01:27:48.341674+00 Jose Chiappetta \N 1 2026-01-29 04:35:08.612774+00 2026-01-25 01:27:51.243628+00 316 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB unknown {"text": "Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Vermieter in Las Palmas sagte uns als er den Aufkleber von clickrent erblickte ungefragt, dass ClickRent ein sehr guter Vermieter und sehr zuverlässig sei. Das war für uns angenehm zu hören und sehr beruhigend. Man hat ja schließlich 1000€ Kaution hinterlegt. Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und zahlte nur 19 € für 2 Tage. Klasse Laden !", "author": "MrHajoge", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB", "timestamp": "3 months ago"} Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Vermieter in Las Palmas sagte uns als er den Aufkleber von clickrent erblickte ungefragt, dass ClickRent ein sehr guter Vermieter und sehr zuverlässig sei. Das war für uns angenehm zu hören und sehr beruhigend. Man hat ja schließlich 1000€ Kaution hinterlegt. Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und zahlte nur 19 € für 2 Tage. Klasse Laden ! 5 2025-10-27 01:27:48.341109+00 MrHajoge \N 1 2026-01-29 04:35:08.203072+00 2026-01-25 01:27:50.923883+00 318 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB unknown {"text": "Temps d'attente de 1h30 pour récupérer le véhicule\\nN'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. Des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible.", "author": "Guillaume Laboudigue", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB", "timestamp": "2 months ago"} Temps d'attente de 1h30 pour récupérer le véhicule\nN'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. Des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible. 1 2025-11-26 01:27:48.341113+00 Guillaume Laboudigue \N 1 2026-01-29 04:35:08.210588+00 2026-01-25 01:27:50.933272+00 320 \N google Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB unknown {"text": "Wir können uns nur Positiv über diesen Autovermieter äußern.\\nWenn man den Anweisungen folg um zu dem Treffpunkt zu kommen, kommt man auch tatsächlich an. Es war eine Promte und unkomplizierte Abwicklung beim abholen und zurückgeben des Fahrzeugs. Wir wurden darauf aufmerksam gemacht im vorfeld alle Schäden zu fotografieren und mit der Kamera einmal um das Fahrzeug zu laufen.\\nSehr nettes Personal und das Auto war auch sehr neuwertig. Können den Vermieter nur weiter empfehlen.", "author": "Patrizia Schulte", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB", "timestamp": "2 months ago"} Wir können uns nur Positiv über diesen Autovermieter äußern.\nWenn man den Anweisungen folg um zu dem Treffpunkt zu kommen, kommt man auch tatsächlich an. Es war eine Promte und unkomplizierte Abwicklung beim abholen und zurückgeben des Fahrzeugs. Wir wurden darauf aufmerksam gemacht im vorfeld alle Schäden zu fotografieren und mit der Kamera einmal um das Fahrzeug zu laufen.\nSehr nettes Personal und das Auto war auch sehr neuwertig. Können den Vermieter nur weiter empfehlen. 5 2025-11-26 01:27:48.341117+00 Patrizia Schulte \N 1 2026-01-29 04:35:08.215924+00 2026-01-25 01:27:50.937177+00 321 \N google Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB unknown {"text": "Auténtica estafa y cero profesionalidad.\\nHice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. Me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. Ni el 50%, ni el 10%, ni un céntimo.\\n\\nPrometen una cosa por teléfono y luego desaparecen.\\nNo respetan sus propias políticas.\\nNo dan soluciones.\\nNo muestran transparencia.\\nSimplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse.\\n\\nUna empresa así no merece la confianza de ningún cliente.\\nPésima gestión, trato nulo y una sensación clara de haber sido engañado.\\n\\nNo volveré jamás.\\nY ojalá esta reseña ayude a otros a evitar pasar por lo mismo.", "author": "Alexis González", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB", "timestamp": "2 months ago"} Auténtica estafa y cero profesionalidad.\nHice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. Me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. Ni el 50%, ni el 10%, ni un céntimo.\n\nPrometen una cosa por teléfono y luego desaparecen.\nNo respetan sus propias políticas.\nNo dan soluciones.\nNo muestran transparencia.\nSimplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse.\n\nUna empresa así no merece la confianza de ningún cliente.\nPésima gestión, trato nulo y una sensación clara de haber sido engañado.\n\nNo volveré jamás.\nY ojalá esta reseña ayude a otros a evitar pasar por lo mismo. 1 2025-11-26 01:27:48.341119+00 Alexis González \N 1 2026-01-29 04:35:08.21931+00 2026-01-25 01:27:50.940613+00 324 \N google Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB unknown {"text": "Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante, pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. disfruten de sus vacaciones y no sean tontos.. un saludo y felices vacaciones .", "author": "Roberto Pérez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB", "timestamp": "a month ago"} Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante, pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. disfruten de sus vacaciones y no sean tontos.. un saludo y felices vacaciones . 1 2025-12-26 01:27:48.341132+00 Roberto Pérez \N 1 2026-01-29 04:35:08.227818+00 2026-01-25 01:27:50.951409+00 326 \N google Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB unknown {"text": "De momento muy mal, iré actualizando.\\nPrimero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar.\\n40 minutos esperando en el aeropuerto a la van.\\nLlegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. Surrealista, veremos a ver cuándo me atiendan, de momento hay ya dos personas con distintas reservas que han salido cabreadisimas. Iré actualizando..", "author": "Belinda F.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB", "timestamp": "2 months ago"} De momento muy mal, iré actualizando.\nPrimero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar.\n40 minutos esperando en el aeropuerto a la van.\nLlegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. Surrealista, veremos a ver cuándo me atiendan, de momento hay ya dos personas con distintas reservas que han salido cabreadisimas. Iré actualizando.. 1 2025-11-26 01:27:48.34115+00 Belinda F. \N 1 2026-01-29 04:35:08.235481+00 2026-01-25 01:27:50.959633+00 330 \N google ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB unknown {"text": "Alles war perfekt! Das Einzige, was unklar war, war der Treffpunkt für den Transfer, deshalb sind wir schließlich mit dem Taxi gefahren. Trotzdem gebe ich fünf Sterne, da der Service ausgezeichnet war. Das Auto wurde sehr schnell übergeben, und auch die Rückgabe lief reibungslos. Das Auto wurde geprüft, und wir waren schon auf dem Weg mit dem Transfer zum Flughafen. Die Kaution wurde sofort auf die Karte zurückerstattet👍🏻\\n\\nLeute, die über Betrug schreiben: Macht immer zusätzliche Versicherungen auf externen Websites, und erstellt vollständige Video- und Fotoaufnahmen des Autos, bevor ihr die Mietstation verlasst. So werdet ihr keine Probleme haben😉", "author": "Jakob Gossen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB", "timestamp": "a year ago"} Alles war perfekt! Das Einzige, was unklar war, war der Treffpunkt für den Transfer, deshalb sind wir schließlich mit dem Taxi gefahren. Trotzdem gebe ich fünf Sterne, da der Service ausgezeichnet war. Das Auto wurde sehr schnell übergeben, und auch die Rückgabe lief reibungslos. Das Auto wurde geprüft, und wir waren schon auf dem Weg mit dem Transfer zum Flughafen. Die Kaution wurde sofort auf die Karte zurückerstattet👍🏻\n\nLeute, die über Betrug schreiben: Macht immer zusätzliche Versicherungen auf externen Websites, und erstellt vollständige Video- und Fotoaufnahmen des Autos, bevor ihr die Mietstation verlasst. So werdet ihr keine Probleme haben😉 5 2025-01-25 01:27:48.341161+00 Jakob Gossen \N 1 2026-01-29 04:35:08.251077+00 2026-01-25 01:27:50.975094+00 332 \N google Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB unknown {"text": "Ціна на авто яку запропонувала ця компанія була найкраща. По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не приймає картки American express. Поряд стояла ще одна пара сварилась на іспанській мові , вийшли не задоволені і не взяли машину. Потім прийшла наша черга. Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за \\"заправку\\" автомобіля 35€. В кінцевому випадку ми значно переплатили. Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням.", "author": "Сергей Круть", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB", "timestamp": "3 weeks ago"} Ціна на авто яку запропонувала ця компанія була найкраща. По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не приймає картки American express. Поряд стояла ще одна пара сварилась на іспанській мові , вийшли не задоволені і не взяли машину. Потім прийшла наша черга. Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за "заправку" автомобіля 35€. В кінцевому випадку ми значно переплатили. Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням. 1 2026-01-04 01:27:48.341165+00 Сергей Круть \N 1 2026-01-29 04:35:08.263567+00 2026-01-25 01:27:50.984009+00 334 \N google Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB unknown {"text": "Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholzeit da und sie haben uns die halbe Stunde warten lassen, weil wir kein Upgrade wollten. Dabei haben wir die ganze Zeit auf unser fertiges Auto geschaut (Vertrag und Kennzeichen lag bereits vor, da online eingecheckt). Hatte 2 kleine Kinder dabei.", "author": "Alexander Reimchen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB", "timestamp": "3 weeks ago"} Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholzeit da und sie haben uns die halbe Stunde warten lassen, weil wir kein Upgrade wollten. Dabei haben wir die ganze Zeit auf unser fertiges Auto geschaut (Vertrag und Kennzeichen lag bereits vor, da online eingecheckt). Hatte 2 kleine Kinder dabei. 1 2026-01-04 01:27:48.341169+00 Alexander Reimchen \N 1 2026-01-29 04:35:08.29769+00 2026-01-25 01:27:50.98825+00 415 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWTWJrUlNiRUpLV2kxVFYxcGtSVEZXUWtocmNtYxAB unknown {"text": "Abholung: Shuttle-bus nicht auffindbar oder nicht existent. Telefonisch nicht erreichbar, es geht nur ein Bot ans Telefon, über eine Tastenkombination kann Support angefragt werden, nach 10min in der Warteschlange haben wir niemanden erreicht.", "author": "Marius Saborosch", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWTWJrUlNiRUpLV2kxVFYxcGtSVEZXUWtocmNtYxAB", "timestamp": "5 months ago"} Abholung: Shuttle-bus nicht auffindbar oder nicht existent. Telefonisch nicht erreichbar, es geht nur ein Bot ans Telefon, über eine Tastenkombination kann Support angefragt werden, nach 10min in der Warteschlange haben wir niemanden erreicht. 1 2025-08-28 01:27:48.341765+00 Marius Saborosch \N 1 2026-01-29 04:35:08.721386+00 2026-01-25 01:27:51.307874+00 631 \N google ChdDSUhNMG9nS0VJQ0FnSUNINFlmSjJ3RRAB unknown {"text": "Un servicio excelente por parte de Antonio que nos guió y recomendó sobre que hacer y tambien a Carmen y Nestor", "author": "Néstor Acosta Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINFlmSjJ3RRAB", "timestamp": "a year ago"} Un servicio excelente por parte de Antonio que nos guió y recomendó sobre que hacer y tambien a Carmen y Nestor 5 2025-01-25 01:27:48.342971+00 Néstor Acosta Delgado \N 1 2026-01-29 04:35:09.467992+00 2026-01-25 01:27:52.105862+00 337 \N google Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB unknown {"text": "Entregamos el coche lavado con el depósito lleno, impecable. Antes de llevárnoslo hice un vídeo del estado del auto. Al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfecto en la chapa en el maletero . Le dije que teníamos fotos hechas cuando lo recogimos y que había ese y otros 2 pequeños arañazos ( pequeñísimos ). Pero estaban fotografiados. Al ver que teníamos fotos, la cosa cambió. Son unos jetas . Querían cobrar del seguro el rasguño. Desde luego no son de fiar. He alquilado otros vehículos en otras compañías y no he tenido estas murgas . No me ofrecieron ninguna confianza . Tanto es así que antes de que nos dijeran lo del rasguño ya me comenté a mí marido : estos no s van", "author": "julia carrera andres", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB", "timestamp": "3 months ago"} Entregamos el coche lavado con el depósito lleno, impecable. Antes de llevárnoslo hice un vídeo del estado del auto. Al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfecto en la chapa en el maletero . Le dije que teníamos fotos hechas cuando lo recogimos y que había ese y otros 2 pequeños arañazos ( pequeñísimos ). Pero estaban fotografiados. Al ver que teníamos fotos, la cosa cambió. Son unos jetas . Querían cobrar del seguro el rasguño. Desde luego no son de fiar. He alquilado otros vehículos en otras compañías y no he tenido estas murgas . No me ofrecieron ninguna confianza . Tanto es así que antes de que nos dijeran lo del rasguño ya me comenté a mí marido : estos no s van 1 2025-10-27 01:27:48.341195+00 julia carrera andres \N 1 2026-01-29 04:35:08.318707+00 2026-01-25 01:27:50.998609+00 339 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB unknown {"text": "Freundlicher Service. Die Mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich Angst gemacht. Der Shuttlebus am Flughafen ist nicht leicht aufzufinden, da leider keine Beschilderungen angebracht werden können. Man muss einfach geduldig an der beschriebenen Stelle warten. Es hat alles super geklappt und alle Mitarbeiter waren freundlich.\\nEin Stern Abzug allerdings, da es fast 5 Wochen gedauert hat, bis die Blockierung der Kaution auf der Kreditkarte aufgehoben wurde. Vor Ort wurde uns zugesagt, das diese direkt am gleichen Tag storniert wird, da alles mit dem Auto in Ordnung war. Hat uns persönlich zu lange gedauert.", "author": "A", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB", "timestamp": "4 months ago"} Freundlicher Service. Die Mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich Angst gemacht. Der Shuttlebus am Flughafen ist nicht leicht aufzufinden, da leider keine Beschilderungen angebracht werden können. Man muss einfach geduldig an der beschriebenen Stelle warten. Es hat alles super geklappt und alle Mitarbeiter waren freundlich.\nEin Stern Abzug allerdings, da es fast 5 Wochen gedauert hat, bis die Blockierung der Kaution auf der Kreditkarte aufgehoben wurde. Vor Ort wurde uns zugesagt, das diese direkt am gleichen Tag storniert wird, da alles mit dem Auto in Ordnung war. Hat uns persönlich zu lange gedauert. 4 2025-09-27 01:27:48.341214+00 A \N 1 2026-01-29 04:35:08.327584+00 2026-01-25 01:27:51.003269+00 342 \N google Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB unknown {"text": "Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. W punkcie trwała kłótnia z trzema niezależnymi rodzinami. Jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy.", "author": "Danuta Fi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB", "timestamp": "3 weeks ago"} Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. W punkcie trwała kłótnia z trzema niezależnymi rodzinami. Jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy. 1 2026-01-04 01:27:48.34122+00 Danuta Fi \N 1 2026-01-29 04:35:08.343315+00 2026-01-25 01:27:51.011392+00 344 \N google Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB unknown {"text": "No doy 0 estrellas porque no me deja.\\nExperiencia pésima:\\nAunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero.\\nHoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en Canarias).\\nSi vais a alquilar coches, no recomiendo nada esta empresa.", "author": "Alvaro Ubeda Sanchez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB", "timestamp": "3 months ago"} No doy 0 estrellas porque no me deja.\nExperiencia pésima:\nAunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero.\nHoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en Canarias).\nSi vais a alquilar coches, no recomiendo nada esta empresa. 1 2025-10-27 01:27:48.341256+00 Alvaro Ubeda Sanchez \N 1 2026-01-29 04:35:08.366018+00 2026-01-25 01:27:51.019072+00 449 \N google Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB unknown {"text": "Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. Con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total . Recomendables de 5 ***** .", "author": "Didac Poveda", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB", "timestamp": "3 months ago"} Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. Con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total . Recomendables de 5 ***** . 5 2025-10-27 01:27:48.341978+00 Didac Poveda \N 1 2026-01-29 04:35:08.839965+00 2026-01-25 01:27:51.420025+00 648 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3ZzhpUE9nEAE unknown {"text": "Buena experiencia. Extraordinario el trato de Carlos y Néstor.", "author": "Víctor Javier Barrera Castarnado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3ZzhpUE9nEAE", "timestamp": "a year ago"} Buena experiencia. Extraordinario el trato de Carlos y Néstor. 5 2025-01-25 01:27:48.343043+00 Víctor Javier Barrera Castarnado \N 1 2026-01-29 04:35:09.519884+00 2026-01-25 01:27:52.184757+00 350 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB unknown {"text": "GELDMACHE!\\nKreditkarte muss noch mindestens 6 Monate gültig sein, sonst wird sie nicht zur Hinterlegung der Kautionakzeptiert! Deshalb wurde ich genötigt, vor Ort eine Versicherung von zusätzlich 156€ zu zahlen, die ich dann problemlos mit der Kreditkarte zahlen konnte! Genauso wie die Tanksicherheit von 200€!\\nMan wird zum Standort geshuttelt und ist dann im Nirgendwo und hat keine Möglichkeit, sich anderweitig zu orientieren, da man dem Unternehmen dort quasi ausgeliefert ist und nicht mehr einfach dort weg kommt! Zudem haben die Fahrzeuge nicht ausreichend Power, um problemlos die Berge hochzukommen.\\nBitte macht nicht den selben Fehler, auf diese günstigen Abzocker reinzufallen. Ich hab Lehrgeld bezahlt.", "author": "Lisa Graf", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB", "timestamp": "4 months ago"} GELDMACHE!\nKreditkarte muss noch mindestens 6 Monate gültig sein, sonst wird sie nicht zur Hinterlegung der Kautionakzeptiert! Deshalb wurde ich genötigt, vor Ort eine Versicherung von zusätzlich 156€ zu zahlen, die ich dann problemlos mit der Kreditkarte zahlen konnte! Genauso wie die Tanksicherheit von 200€!\nMan wird zum Standort geshuttelt und ist dann im Nirgendwo und hat keine Möglichkeit, sich anderweitig zu orientieren, da man dem Unternehmen dort quasi ausgeliefert ist und nicht mehr einfach dort weg kommt! Zudem haben die Fahrzeuge nicht ausreichend Power, um problemlos die Berge hochzukommen.\nBitte macht nicht den selben Fehler, auf diese günstigen Abzocker reinzufallen. Ich hab Lehrgeld bezahlt. 1 2025-09-27 01:27:48.3413+00 Lisa Graf \N 1 2026-01-29 04:35:08.392916+00 2026-01-25 01:27:51.037549+00 352 \N google Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB unknown {"text": "Contratado el alquiler del vehículo y el seguro a través de Booking, me dicen que de ese seguro no se responsabilizan porque no es el que ellos trabajan, que en cualquier caso, primero les tendré que pagar a ellos y después reclamar a Booking.\\nAsí mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo).\\nNo obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado.", "author": "Pedro Cabrera", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB", "timestamp": "4 months ago"} Contratado el alquiler del vehículo y el seguro a través de Booking, me dicen que de ese seguro no se responsabilizan porque no es el que ellos trabajan, que en cualquier caso, primero les tendré que pagar a ellos y después reclamar a Booking.\nAsí mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo).\nNo obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado. 2 2025-09-27 01:27:48.341305+00 Pedro Cabrera \N 1 2026-01-29 04:35:08.402129+00 2026-01-25 01:27:51.043261+00 357 \N google Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB unknown {"text": "我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?这是我见过最差的的,以后不会再用。跟我们同去办理取车的还有三家跟我们情况一样,他们是老剧本,我们都是新入局的。最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。", "author": "lei zhang", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB", "timestamp": "2 months ago"} 我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?这是我见过最差的的,以后不会再用。跟我们同去办理取车的还有三家跟我们情况一样,他们是老剧本,我们都是新入局的。最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。 1 2025-11-26 01:27:48.341315+00 lei zhang \N 1 2026-01-29 04:35:08.434155+00 2026-01-25 01:27:51.057972+00 363 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB unknown {"text": "Experiencia muy negativa con esta empresa de alquiler de vehículos.\\nCuando llegamos, después de haber escogido el seguro a todo riesgo, se nos cobró una fianza de 200€ (en vez de bloquear el depósito se nos cobró con un datáfono). Al devolver el coche, sin ningún desperfecto, nos dicen que la fianza se nos devolverá en unos días, ya que ya se había “desbloqueado el depósito”.\\nTras 2 semanas sin rastro del dinero, decidimos escribir un correo al que nadie contesta. Llamamos por teléfono y conseguimos que 4 días después nos contestaran pidiendo el número de reserva, contestamos al momento y dejan de respondernos.\\nHace 2 días (una semana después de que nos contestaran al primer correo), volvemos a llamar y nos dicen que ya sale como proceso finalizado y que según ellos ya nos habían desbloqueado el depósito, MENTIRA, les decimos que es imposible ya que nos habían cobrado en la oficina con el datáfono (no hay ningún dinero bloqueado) y nos dicen que ya lo miraran y que en unos minutos nos llamarían.\\nNos contestan a la tarde al correo que habíamos enviado hace una semana, pidiendo el comprobante del cobro, se lo enviamos y seguimos sin saber nada. Espero que me devuelvan mi dinero lo antes posible. Sin embargo, no lo recomiendo para nada.", "author": "ERIC MOYA MASFERRER", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB", "timestamp": "5 months ago"} Experiencia muy negativa con esta empresa de alquiler de vehículos.\nCuando llegamos, después de haber escogido el seguro a todo riesgo, se nos cobró una fianza de 200€ (en vez de bloquear el depósito se nos cobró con un datáfono). Al devolver el coche, sin ningún desperfecto, nos dicen que la fianza se nos devolverá en unos días, ya que ya se había “desbloqueado el depósito”.\nTras 2 semanas sin rastro del dinero, decidimos escribir un correo al que nadie contesta. Llamamos por teléfono y conseguimos que 4 días después nos contestaran pidiendo el número de reserva, contestamos al momento y dejan de respondernos.\nHace 2 días (una semana después de que nos contestaran al primer correo), volvemos a llamar y nos dicen que ya sale como proceso finalizado y que según ellos ya nos habían desbloqueado el depósito, MENTIRA, les decimos que es imposible ya que nos habían cobrado en la oficina con el datáfono (no hay ningún dinero bloqueado) y nos dicen que ya lo miraran y que en unos minutos nos llamarían.\nNos contestan a la tarde al correo que habíamos enviado hace una semana, pidiendo el comprobante del cobro, se lo enviamos y seguimos sin saber nada. Espero que me devuelvan mi dinero lo antes posible. Sin embargo, no lo recomiendo para nada. 1 2025-08-28 01:27:48.341365+00 ERIC MOYA MASFERRER \N 1 2026-01-29 04:35:08.469132+00 2026-01-25 01:27:51.091306+00 364 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB unknown {"text": "Gente voy a ser breve!Soy de Gran Canaria y vivo en Tenerife!No se les ocurra alquilar en esta empresa!Son unos estafadores!Lean las reseñas de la oficina en Tenerife norte!Van a flipar!Alquile un Volkswagen y supuestamente me multaron!Me cobran de mi cuenta 50 euros por tramitación!Ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan!2000 euros de fianza por un Audi a1?Eran chicos asturianos!Estoy seguro que se inventarán algo para.msrgsrles el dinero!Hay reseñas que te ponen los pelos de punta!Llevan medio año y por la central presumen de que nomparan de crecer!Con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! Estafadores!", "author": "Alexis Vega Sosa", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB", "timestamp": "a month ago"} Gente voy a ser breve!Soy de Gran Canaria y vivo en Tenerife!No se les ocurra alquilar en esta empresa!Son unos estafadores!Lean las reseñas de la oficina en Tenerife norte!Van a flipar!Alquile un Volkswagen y supuestamente me multaron!Me cobran de mi cuenta 50 euros por tramitación!Ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan!2000 euros de fianza por un Audi a1?Eran chicos asturianos!Estoy seguro que se inventarán algo para.msrgsrles el dinero!Hay reseñas que te ponen los pelos de punta!Llevan medio año y por la central presumen de que nomparan de crecer!Con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! Estafadores! 1 2025-12-26 01:27:48.341371+00 Alexis Vega Sosa \N 1 2026-01-29 04:35:08.475433+00 2026-01-25 01:27:51.100205+00 671 \N google ChZDSUhNMG9nS0VJQ0FnSURYdFpETmNREAE unknown {"text": "Antonio es el mejor!!!", "author": "Fanny Del aguila", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYdFpETmNREAE", "timestamp": "a year ago"} Antonio es el mejor!!! 5 2025-01-25 01:27:48.343137+00 Fanny Del aguila \N 1 2026-01-29 04:35:09.614612+00 2026-01-25 01:27:52.28065+00 370 \N google Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB unknown {"text": "Muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repostar y entregar el coche. Te pasan a buscar desde el parking de Salidas del aeropuerto y te dejan en las salidas. Ha sido muy facil todo. Eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. En nuestro caso esa un seguro sobre la franquicia, por lo que hemos tenido que dejar el depósito igualmente con ellos y, en caso de daños, se los pagas a Click Rent y después reclamas al seguro de la agencia. Lo específico porque nunca me había pasado y al reservar con la agencia, no lo dejan muy claro la verdad.", "author": "Fabian Sanchis", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB", "timestamp": "5 months ago"} Muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repostar y entregar el coche. Te pasan a buscar desde el parking de Salidas del aeropuerto y te dejan en las salidas. Ha sido muy facil todo. Eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. En nuestro caso esa un seguro sobre la franquicia, por lo que hemos tenido que dejar el depósito igualmente con ellos y, en caso de daños, se los pagas a Click Rent y después reclamas al seguro de la agencia. Lo específico porque nunca me había pasado y al reservar con la agencia, no lo dejan muy claro la verdad. 5 2025-08-28 01:27:48.341489+00 Fabian Sanchis \N 1 2026-01-29 04:35:08.499297+00 2026-01-25 01:27:51.134221+00 372 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB unknown {"text": "Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig.\\nDa jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran\\nJeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. De stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass.\\nDette blir jeg da belastet med 420 euro for.\\nHadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig.\\n8070nhd - hvis du leier denne så har de i alle fall fått inn en straffeavgift på denne. Hvem vet om de før meg også har betalt.\\nTa bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen.", "author": "Einar Dahlen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB", "timestamp": "a month ago"} Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig.\nDa jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran\nJeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. De stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass.\nDette blir jeg da belastet med 420 euro for.\nHadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig.\n8070nhd - hvis du leier denne så har de i alle fall fått inn en straffeavgift på denne. Hvem vet om de før meg også har betalt.\nTa bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen. 1 2025-12-26 01:27:48.341515+00 Einar Dahlen \N 1 2026-01-29 04:35:08.507663+00 2026-01-25 01:27:51.142568+00 376 \N google Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB unknown {"text": "Un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4 llamé para cancelar y me dijeron que por qué no era antes de 24 horas no la devolvían …. Pedí que me cambiaran de coche por q el que reserve era demasiado grande y me dijeron que no!!!! De paso me quería cobrar un depósito de 2 mil euros en una tarjeta…: en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar nada dinero perdido sin poder utilizarlo ….: cuidado con este sitio", "author": "Maria Teresa Casanas Lopez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB", "timestamp": "4 months ago"} Un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4 llamé para cancelar y me dijeron que por qué no era antes de 24 horas no la devolvían …. Pedí que me cambiaran de coche por q el que reserve era demasiado grande y me dijeron que no!!!! De paso me quería cobrar un depósito de 2 mil euros en una tarjeta…: en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar nada dinero perdido sin poder utilizarlo ….: cuidado con este sitio 1 2025-09-27 01:27:48.341523+00 Maria Teresa Casanas Lopez \N 1 2026-01-29 04:35:08.530628+00 2026-01-25 01:27:51.158069+00 382 \N google ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE unknown {"text": "Agradezco el trato de esta empresa por su profesionalidad y su servicio . Alquile un coche pequeño que ha ido de maravilla, y la atención tanto de Carmen que nos gestionó la reserva , entrega y devolución Como dee los chicos encargados de llevarnos y traernos al aeropuerto fué fantastico.\\nLa empresa está situada a escasos 5 minutos del aeropuerto. Si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio.", "author": "simon llovet garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE", "timestamp": "a year ago"} Agradezco el trato de esta empresa por su profesionalidad y su servicio . Alquile un coche pequeño que ha ido de maravilla, y la atención tanto de Carmen que nos gestionó la reserva , entrega y devolución Como dee los chicos encargados de llevarnos y traernos al aeropuerto fué fantastico.\nLa empresa está situada a escasos 5 minutos del aeropuerto. Si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio. 5 2025-01-25 01:27:48.341536+00 simon llovet garcia \N 1 2026-01-29 04:35:08.562404+00 2026-01-25 01:27:51.175998+00 390 \N google ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE unknown {"text": "Hemos tenido buena experiencia con este rentacar. La última vez que vinimos a la isla alquilamos con Orlando, y nos quitaron la fianza por un arañazo que ya traia el coche. Clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. El transfer al aeropuerto no son ni 5 min, y nos informaron sobre los seguros adicionales pero no presionaron para coger algun seguro extra, por lo que todo bien. La proxima vez que vengalos alquilaremos tambien aqui. Gracias!", "author": "Cristina R N", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE", "timestamp": "a year ago"} Hemos tenido buena experiencia con este rentacar. La última vez que vinimos a la isla alquilamos con Orlando, y nos quitaron la fianza por un arañazo que ya traia el coche. Clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. El transfer al aeropuerto no son ni 5 min, y nos informaron sobre los seguros adicionales pero no presionaron para coger algun seguro extra, por lo que todo bien. La proxima vez que vengalos alquilaremos tambien aqui. Gracias! 5 2025-01-25 01:27:48.341625+00 Cristina R N \N 1 2026-01-29 04:35:08.591128+00 2026-01-25 01:27:51.206047+00 400 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB unknown {"text": "A fuir ! La politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la restitution de la voiture. Pour un bouclier légèrement abîmé sous caisse (leger frottement sur un bas côté de la route) ils m'ont réclamé 420€ sur mon dépôt de garantie. Le bouclier était déjà légèrement abîmé sur les 2 côtés. On suppose qu'ils ont demandé la même somme aux clients précédents sans pour autant changer le bouclier. Cela fait donc 1260€ gagnés sans rien faire.\\nCerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€. Allez expliquer cela à l'assurance ensuite pour vous faire rembourser.\\nConseil, fuyez donc ClickRent avant de vous faire plumer.", "author": "Gilbert GIOVAGNOLI", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB", "timestamp": "7 months ago"} A fuir ! La politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la restitution de la voiture. Pour un bouclier légèrement abîmé sous caisse (leger frottement sur un bas côté de la route) ils m'ont réclamé 420€ sur mon dépôt de garantie. Le bouclier était déjà légèrement abîmé sur les 2 côtés. On suppose qu'ils ont demandé la même somme aux clients précédents sans pour autant changer le bouclier. Cela fait donc 1260€ gagnés sans rien faire.\nCerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€. Allez expliquer cela à l'assurance ensuite pour vous faire rembourser.\nConseil, fuyez donc ClickRent avant de vous faire plumer. 1 2025-06-29 01:27:48.341678+00 Gilbert GIOVAGNOLI \N 1 2026-01-29 04:35:08.61981+00 2026-01-25 01:27:51.252904+00 402 \N google Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB unknown {"text": "Mi experiencia fue muy satisfactoria gracias a Valentina ya que nos explicó todo muy bien y nos ayudó y nos asesoró en todo momento para hacer la gestión de la mejor manera, muy contentos con el trato y con el coche que fue exactamente el.que elegí, escogí una sillita de bebe para mi hija y de la dieron limpia y en perfectas condiciones pero si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con Isofix ya que son mucho más seguras para los bebés pero solo es una crítica constructiva para mejorar! Gracias", "author": "david Hernandez Papis Martinez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB", "timestamp": "3 months ago"} Mi experiencia fue muy satisfactoria gracias a Valentina ya que nos explicó todo muy bien y nos ayudó y nos asesoró en todo momento para hacer la gestión de la mejor manera, muy contentos con el trato y con el coche que fue exactamente el.que elegí, escogí una sillita de bebe para mi hija y de la dieron limpia y en perfectas condiciones pero si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con Isofix ya que son mucho más seguras para los bebés pero solo es una crítica constructiva para mejorar! Gracias 5 2025-10-27 01:27:48.341708+00 david Hernandez Papis Martinez \N 1 2026-01-29 04:35:08.628751+00 2026-01-25 01:27:51.260926+00 404 \N google Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB unknown {"text": "Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe, largas esperas para recoger o devolver coche, etc etc", "author": "NAVARRO BATISTA: BERNARDO", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB", "timestamp": "2 months ago"} Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe, largas esperas para recoger o devolver coche, etc etc 1 2025-11-26 01:27:48.341716+00 NAVARRO BATISTA: BERNARDO \N 1 2026-01-29 04:35:08.63445+00 2026-01-25 01:27:51.270452+00 405 \N google Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB unknown {"text": "Buenas , explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos", "author": "rafael garces enamorado", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB", "timestamp": "2 months ago"} Buenas , explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos 1 2025-11-26 01:27:48.341718+00 rafael garces enamorado \N 1 2026-01-29 04:35:08.639088+00 2026-01-25 01:27:51.274233+00 411 \N google Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB unknown {"text": "Atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado del aeropuerto. El proceso de alquilar el coche fue súper sencillo y la chica que nos atendió fue un amor, contagiaba su alegría. Nos lo explicaron todo súper bien. Preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. A la hora de devolver el coche lo mismo súper rápido y sencillo, nos volvieron a acercar al aeropuerto. Ha sido buena experiencia , si vuelvo a canarias repetiré con ellos.", "author": "Laura Machado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB", "timestamp": "7 months ago"} Atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado del aeropuerto. El proceso de alquilar el coche fue súper sencillo y la chica que nos atendió fue un amor, contagiaba su alegría. Nos lo explicaron todo súper bien. Preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. A la hora de devolver el coche lo mismo súper rápido y sencillo, nos volvieron a acercar al aeropuerto. Ha sido buena experiencia , si vuelvo a canarias repetiré con ellos. 5 2025-06-29 01:27:48.341757+00 Laura Machado \N 1 2026-01-29 04:35:08.69732+00 2026-01-25 01:27:51.293841+00 417 \N google ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE unknown {"text": "Haben uns für ClickRent entschieden weil es mit Abstand das billigste war (Moderner VW polo 4 Tage ~85€ + junger Fahrer)\\nHaben bei der Übergabe sofort das ganze Auto abfotografiert und von allem Videos gemacht sollte uns schaden vorgeworfen werden für den wir nicht verantwortlich waren.\\nDazu musste man noch 1000€ Kaution hinterlegen weil wir nicht nochmal für ~80€ eine extra Versicherung abschließen wollten.\\nIn den 4 Tagen ist alles problemlos verlaufen, konnten die ganze Insel umfahren und Orte erreichen die man mit dem Bus nie gesehen hätte.\\nIch kann es nur empfehlen!\\nEinfach nur bei Übergabe Schäden abfotografieren damit man am ende nicht blöd dasteht.", "author": "E. W", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE", "timestamp": "9 months ago"} Haben uns für ClickRent entschieden weil es mit Abstand das billigste war (Moderner VW polo 4 Tage ~85€ + junger Fahrer)\nHaben bei der Übergabe sofort das ganze Auto abfotografiert und von allem Videos gemacht sollte uns schaden vorgeworfen werden für den wir nicht verantwortlich waren.\nDazu musste man noch 1000€ Kaution hinterlegen weil wir nicht nochmal für ~80€ eine extra Versicherung abschließen wollten.\nIn den 4 Tagen ist alles problemlos verlaufen, konnten die ganze Insel umfahren und Orte erreichen die man mit dem Bus nie gesehen hätte.\nIch kann es nur empfehlen!\nEinfach nur bei Übergabe Schäden abfotografieren damit man am ende nicht blöd dasteht. 5 2025-04-30 01:27:48.341783+00 E. W \N 1 2026-01-29 04:35:08.72735+00 2026-01-25 01:27:51.316972+00 426 \N google Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB unknown {"text": "Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!He leído otro testimonio y le ha pasado lo mismo!Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!Me encargaré que que ningún conocido alquile ahí ladrones de poca monta!", "author": "Alexis Vega", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB", "timestamp": "4 weeks ago"} Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!He leído otro testimonio y le ha pasado lo mismo!Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!Me encargaré que que ningún conocido alquile ahí ladrones de poca monta! 1 2025-12-28 01:27:48.341843+00 Alexis Vega \N 1 2026-01-29 04:35:08.765763+00 2026-01-25 01:27:51.345395+00 434 \N google Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB unknown {"text": "Nada recomendable, intentan engañarte de todas las formas posibles. Si no cedes a sus cobros extras te niegan la recogida del vehículo. Una experiencia muy desagradable. Al final alquilamos con otra compañía. NUNCA VOLVERÉ A ALQUILAR CON CLIKRENT.", "author": "IMAGI 10", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB", "timestamp": "4 months ago"} Nada recomendable, intentan engañarte de todas las formas posibles. Si no cedes a sus cobros extras te niegan la recogida del vehículo. Una experiencia muy desagradable. Al final alquilamos con otra compañía. NUNCA VOLVERÉ A ALQUILAR CON CLIKRENT. 1 2025-09-27 01:27:48.341859+00 IMAGI 10 \N 1 2026-01-29 04:35:08.788374+00 2026-01-25 01:27:51.370822+00 437 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB unknown {"text": "Izuzetno ljubazno osoblje, spremno da pomogne. Za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista. U ponudi smo dobili Peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji Citroën Berlingo, u koji smo mogli svi da se smestimo bez problema( 2 odraslih i 4 dece,od toga 2 odrasle dece), plus prtljag. Zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-Vegeta i San Jose besplatan u odredjenim ukicama. Sve preporuke! Hvala vam i do skorog vidjenja.🙂👋", "author": "Zorica Mijović", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB", "timestamp": "4 months ago"} Izuzetno ljubazno osoblje, spremno da pomogne. Za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista. U ponudi smo dobili Peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji Citroën Berlingo, u koji smo mogli svi da se smestimo bez problema( 2 odraslih i 4 dece,od toga 2 odrasle dece), plus prtljag. Zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-Vegeta i San Jose besplatan u odredjenim ukicama. Sve preporuke! Hvala vam i do skorog vidjenja.🙂👋 5 2025-09-27 01:27:48.341912+00 Zorica Mijović \N 1 2026-01-29 04:35:08.79915+00 2026-01-25 01:27:51.383136+00 442 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB unknown {"text": "Trato al cliente pésimo. Las dos mujeres q nos atendieron, desde el principio brillaron por sus malas formas y poca colaboración. Una joven y otra más mayor. No alquilaré más y no recomendaré a esta gente. Falta de educación.", "author": "Jose Manuel Cabrera Santana", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB", "timestamp": "4 months ago"} Trato al cliente pésimo. Las dos mujeres q nos atendieron, desde el principio brillaron por sus malas formas y poca colaboración. Una joven y otra más mayor. No alquilaré más y no recomendaré a esta gente. Falta de educación. 1 2025-09-27 01:27:48.341949+00 Jose Manuel Cabrera Santana \N 1 2026-01-29 04:35:08.815099+00 2026-01-25 01:27:51.399629+00 443 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB unknown {"text": "No pongo una estrella porque no puedo ,estafada del siglo ,te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso ,viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual ,veremos a ver cuando lo entreguemos ,no vuelvo!!!", "author": "Sandra Ballesteros", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB", "timestamp": "2 months ago"} No pongo una estrella porque no puedo ,estafada del siglo ,te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso ,viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual ,veremos a ver cuando lo entreguemos ,no vuelvo!!! 1 2025-11-26 01:27:48.341954+00 Sandra Ballesteros \N 1 2026-01-29 04:35:08.818579+00 2026-01-25 01:27:51.402218+00 451 \N google ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB unknown {"text": "Wir waren etwas skeptisch wegen der vielen Meinungen, dass sehr akribisch nach Macken und Dellen gesucht wird.\\nWir haben das Personal bei Abholung des Wagens auf die vielen schlechten Bewertungen angesprochen. Die Mitarbeiter vor Ort waren sehr offen transparent. Wir haben den Vertrag per Email geschickt bekommen und auf unsere Nachfrage hin auch die bereits dokumentierten Schäden an unserem Mietwagen.\\nAuf uns wirkten die Mitarbeiter vor Ort fair und transparent. Natürlich müssen sie einem wahrscheinlich deren Versicherung anbieten. Wir hatten unsere eigene. Ich würde immer empfehlen eine Versicherung für einen Mietwagen zu haben- egal über welchen Anbieter abgeschlossen.\\nBei der Rückgabe wurde eine 0 8 15 (normale) Rücknahme gemacht.\\nDas die Vermietung kein Büro im Flughafen hat, findet man sofort heraus wenn man sich damit beschäftigt. Der Transfer hat bei uns sehr gut funktioniert - der shuttle kam an den beschriebenen Ort zur vereinbarten Zeit.\\nWir sind daher sehr zufrieden mit ClickRent.", "author": "Jonas Medler", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB", "timestamp": "a year ago"} Wir waren etwas skeptisch wegen der vielen Meinungen, dass sehr akribisch nach Macken und Dellen gesucht wird.\nWir haben das Personal bei Abholung des Wagens auf die vielen schlechten Bewertungen angesprochen. Die Mitarbeiter vor Ort waren sehr offen transparent. Wir haben den Vertrag per Email geschickt bekommen und auf unsere Nachfrage hin auch die bereits dokumentierten Schäden an unserem Mietwagen.\nAuf uns wirkten die Mitarbeiter vor Ort fair und transparent. Natürlich müssen sie einem wahrscheinlich deren Versicherung anbieten. Wir hatten unsere eigene. Ich würde immer empfehlen eine Versicherung für einen Mietwagen zu haben- egal über welchen Anbieter abgeschlossen.\nBei der Rückgabe wurde eine 0 8 15 (normale) Rücknahme gemacht.\nDas die Vermietung kein Büro im Flughafen hat, findet man sofort heraus wenn man sich damit beschäftigt. Der Transfer hat bei uns sehr gut funktioniert - der shuttle kam an den beschriebenen Ort zur vereinbarten Zeit.\nWir sind daher sehr zufrieden mit ClickRent. 5 2025-01-25 01:27:48.341982+00 Jonas Medler \N 1 2026-01-29 04:35:08.847729+00 2026-01-25 01:27:51.426134+00 455 \N google ChZDSUhNMG9nS0VJQ0FnTUNZb2ViVGFnEAE unknown {"text": "MUCHO CUIDADO! Nos sentimos estafados! Al devolver un coche nos reclaman que hay un daño nuevo en los bajos delanteros del vehículo. El cual por supuesto no fue durante nuestro alquiler (es un desperfecto por rozadura que te darías cuenta al momento). No había ni rastro de arenilla o restos en el arañazo que según ellos había sido durante nuestro alquiler y además en el vídeo que hicimos al alquilarlo se ve algo de rugosidad en la zona pero dicen que no se ve claro. Resumen: UNOS ESTAFADORES!", "author": "Jaime Perez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZb2ViVGFnEAE", "timestamp": "8 months ago"} MUCHO CUIDADO! Nos sentimos estafados! Al devolver un coche nos reclaman que hay un daño nuevo en los bajos delanteros del vehículo. El cual por supuesto no fue durante nuestro alquiler (es un desperfecto por rozadura que te darías cuenta al momento). No había ni rastro de arenilla o restos en el arañazo que según ellos había sido durante nuestro alquiler y además en el vídeo que hicimos al alquilarlo se ve algo de rugosidad en la zona pero dicen que no se ve claro. Resumen: UNOS ESTAFADORES! 1 2025-05-30 01:27:48.34199+00 Jaime Perez \N 1 2026-01-29 04:35:08.867685+00 2026-01-25 01:27:51.440229+00 457 \N google ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB unknown {"text": "Servicio pésimo. Contratamos por Internet un coche con este establecimiento, y no especifican que están fuera del aeropuerto, pero eso no es todo. Al llegar y firmar la documentación, nos informan de que tenemos contratado el servicio con todo riesgo y que la fianza que se nos pide son 200 euros en concepto de combustible. Tras hablar con ellos para ampliar un día más el alquiler de coche nos indican que no es posible y que no disponen de coche. Tras hablar con el encargado, este nos indica que si tiene un coche en concreto para darnos y que es de “ una categoría superior “ al que nosotros teníamos contratado cambiándonos un Ford focus por un sangyong tivoli.\\nAquí es donde empiezan nuestros problemas, le indicamos antes de salir del establecimiento que el coche hace algo raro el motor al acelerar y que en la parte delantera tiene un golpe. Nos sale la persona que nos atendió y nos dice que el coche está totalmente revisado, y que el golpe saben que lo tienen, que podemos irnos tranquilamente ya que el seguro a todo riesgo nos cubre de cualquier incidente.\\nSalimos del establecimiento a la autovía y tras recorrer tan solo 30 km el vehículo nos deja tirados.\\nSin\\nni siquiera ver el coche el encargado de tienda nos dice que eso es por negligencia nuestra y que se desentienden de la cobertura. No nos dieron asistencia en carretera, tanto es así que cuando vino la grúa tuvimos que pagarnos un taxi de nuestro bolsillo, para volver al establecimiento. Al llegar allí no nos atienden , no nos dan hoja de reclamaciones, y tampoco coche de sustitución. Además de esto sin nuestra autorización y sin habernos informado en el momento de recoger el coche mientras esperamos a la grúa nos realizan un cargo de 1400 euros , en concepto de reparación , sin ni siquiera estar el coche en sus instalaciones ni ser visto por alguien cualificado como puede ser un mecánico o un perito. Tampoco nos atienden a esta reclamación , y tenemos que incluso llamar a la policía para que se personen y nos den una hoja para poder reclamar.\\nDesde luego nos han arruinado el viaje haciéndonos perder un día, y el trato de dejar durante horas a 4 personas tiradas en la autovía a su suerte, cuanto menos no es de ser empaticos, ni profesionales, y mucho menos personas.\\nEn resumen estafadores, malos profesionales y pésima empresa, no repetiría con ellos nunca.", "author": "Javier Rodriguez ferruz", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB", "timestamp": "11 months ago"} Servicio pésimo. Contratamos por Internet un coche con este establecimiento, y no especifican que están fuera del aeropuerto, pero eso no es todo. Al llegar y firmar la documentación, nos informan de que tenemos contratado el servicio con todo riesgo y que la fianza que se nos pide son 200 euros en concepto de combustible. Tras hablar con ellos para ampliar un día más el alquiler de coche nos indican que no es posible y que no disponen de coche. Tras hablar con el encargado, este nos indica que si tiene un coche en concreto para darnos y que es de “ una categoría superior “ al que nosotros teníamos contratado cambiándonos un Ford focus por un sangyong tivoli.\nAquí es donde empiezan nuestros problemas, le indicamos antes de salir del establecimiento que el coche hace algo raro el motor al acelerar y que en la parte delantera tiene un golpe. Nos sale la persona que nos atendió y nos dice que el coche está totalmente revisado, y que el golpe saben que lo tienen, que podemos irnos tranquilamente ya que el seguro a todo riesgo nos cubre de cualquier incidente.\nSalimos del establecimiento a la autovía y tras recorrer tan solo 30 km el vehículo nos deja tirados.\nSin\nni siquiera ver el coche el encargado de tienda nos dice que eso es por negligencia nuestra y que se desentienden de la cobertura. No nos dieron asistencia en carretera, tanto es así que cuando vino la grúa tuvimos que pagarnos un taxi de nuestro bolsillo, para volver al establecimiento. Al llegar allí no nos atienden , no nos dan hoja de reclamaciones, y tampoco coche de sustitución. Además de esto sin nuestra autorización y sin habernos informado en el momento de recoger el coche mientras esperamos a la grúa nos realizan un cargo de 1400 euros , en concepto de reparación , sin ni siquiera estar el coche en sus instalaciones ni ser visto por alguien cualificado como puede ser un mecánico o un perito. Tampoco nos atienden a esta reclamación , y tenemos que incluso llamar a la policía para que se personen y nos den una hoja para poder reclamar.\nDesde luego nos han arruinado el viaje haciéndonos perder un día, y el trato de dejar durante horas a 4 personas tiradas en la autovía a su suerte, cuanto menos no es de ser empaticos, ni profesionales, y mucho menos personas.\nEn resumen estafadores, malos profesionales y pésima empresa, no repetiría con ellos nunca. 1 2025-03-01 01:27:48.341993+00 Javier Rodriguez ferruz \N 1 2026-01-29 04:35:08.878367+00 2026-01-25 01:27:51.448924+00 460 \N google ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB unknown {"text": "ClickRent kann ich nicht empfehlen. Mussten für ein Mietauto eine sehr hohe Kaution bezahlen. Oder wir könnten uns nochmal versichern und weniger Kautiom bezahlen, obwohl wir uns schon über die Agentur über die wir gekauft hatten vollständig versichert waren. Also sie wollten uns praktisch doppelt versichern, damit wir nicht so eine hohe Kaution gezahlt hätten.\\nWollten vor Ort außerdem nur die Kreditkarte des Hauptfahrers dafür. Keine andere Kreditkarte einer anderen Person, keine EC Karte, kein Bargeld, kein Paypal oder Revolut war in Ordnung. Wir waren vor Ort und hatten dann keine Möglichkeit zu bezahlen obwohl wir genügend Möglichkeiten hatten zu bezahlen. Sie haben uns dann vor Ort gelassen ohne eine Möglichkeit irgendwie ein Mietauto zu bekommen und was wir schon bezahlt hatten über die Agemtur bekamen wir ebenfalls nicht zurück obwohl wir kein Mietauto bekommen haben.\\nNie wieder würde ich über diese Agentur oder mit ClickRent ein Mietauto kaufen!!", "author": "Jule Schneider", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB", "timestamp": "10 months ago"} ClickRent kann ich nicht empfehlen. Mussten für ein Mietauto eine sehr hohe Kaution bezahlen. Oder wir könnten uns nochmal versichern und weniger Kautiom bezahlen, obwohl wir uns schon über die Agentur über die wir gekauft hatten vollständig versichert waren. Also sie wollten uns praktisch doppelt versichern, damit wir nicht so eine hohe Kaution gezahlt hätten.\nWollten vor Ort außerdem nur die Kreditkarte des Hauptfahrers dafür. Keine andere Kreditkarte einer anderen Person, keine EC Karte, kein Bargeld, kein Paypal oder Revolut war in Ordnung. Wir waren vor Ort und hatten dann keine Möglichkeit zu bezahlen obwohl wir genügend Möglichkeiten hatten zu bezahlen. Sie haben uns dann vor Ort gelassen ohne eine Möglichkeit irgendwie ein Mietauto zu bekommen und was wir schon bezahlt hatten über die Agemtur bekamen wir ebenfalls nicht zurück obwohl wir kein Mietauto bekommen haben.\nNie wieder würde ich über diese Agentur oder mit ClickRent ein Mietauto kaufen!! 1 2025-03-31 01:27:48.342047+00 Jule Schneider \N 1 2026-01-29 04:35:08.889057+00 2026-01-25 01:27:51.456738+00 462 \N google ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB unknown {"text": "Nefasto servicio de atención al cliente en gran canaria. Contratamos todo riesgo y a los 32km se nos rompe el coche el cual no nos dan uno de sustitución, nos cobran la fianza de gasolina y además una cantidad desorbitada por una futura reparación sin saber que es.\\nA todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafiantes.\\n\\nLa peor experiencia que he tenido en un viaje de ocio.\\nPor supuesto no repetiría ni gratis", "author": "Carlos Fernandez gonzalez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB", "timestamp": "11 months ago"} Nefasto servicio de atención al cliente en gran canaria. Contratamos todo riesgo y a los 32km se nos rompe el coche el cual no nos dan uno de sustitución, nos cobran la fianza de gasolina y además una cantidad desorbitada por una futura reparación sin saber que es.\nA todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafiantes.\n\nLa peor experiencia que he tenido en un viaje de ocio.\nPor supuesto no repetiría ni gratis 1 2025-03-01 01:27:48.342059+00 Carlos Fernandez gonzalez \N 1 2026-01-29 04:35:08.900564+00 2026-01-25 01:27:51.465242+00 470 \N google ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE unknown {"text": "La experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de seguros que se ofrecen el página web no se corresponden con las ofrecidas en la oficina. Sin embargo, pudimos contratar la póliza completa allí sin problema. El vehículo estaba muy nuevo y en perfectas condiciones. El personal fue muy amable y puntual, tanto Carmen que nos atendió en mostrador como Nestor y Antonio que nos recogieron y nos llevaron al aeropuerto. Nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia.", "author": "Cristi Coca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE", "timestamp": "a year ago"} La experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de seguros que se ofrecen el página web no se corresponden con las ofrecidas en la oficina. Sin embargo, pudimos contratar la póliza completa allí sin problema. El vehículo estaba muy nuevo y en perfectas condiciones. El personal fue muy amable y puntual, tanto Carmen que nos atendió en mostrador como Nestor y Antonio que nos recogieron y nos llevaron al aeropuerto. Nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia. 5 2025-01-25 01:27:48.342075+00 Cristi Coca \N 1 2026-01-29 04:35:08.93108+00 2026-01-25 01:27:51.488743+00 477 \N google ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB unknown {"text": "Excelente experiencia. Hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin embargo la regogida fue a tiempo y el trayecto a las oficinas es realmente corto. Antonio, el encargado del traslado fue sumamente amable y nos dio hasta jna hoja de recomendaciones para visitar en Gran Canaria (hecha a mano por el!! Un puntazo!)\\nEn las oficinas, me atendio Carmen que en todo monento fue amable y clara con las condiciones del alquiler.\\nEl vehiculo estaba en perfecto estado (era una marca desconocida para mi), y facil de conducir.\\nA la vuelta, la devolucion fue rapida y sencilla y en cero coma, antonio te deja en el aeropuerto.\\nSin duda repetiria con esta compañia.\\n\\nLa unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de Booking para llegar al sitio de recogida, ya que no son claras. Deberia de empezar diciendo que hay que SUBIR a la planta de SALIDAS (no queda claro que hay que subir, ya que dice “ve a la salida” y se entiende que es a la salida del recinto. Sin embargo cuando llamas por telefono al numero de contacto que dais para la recogida, las instrucciones son mucho mas claras.", "author": "Juan Manuel Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB", "timestamp": "a year ago"} Excelente experiencia. Hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin embargo la regogida fue a tiempo y el trayecto a las oficinas es realmente corto. Antonio, el encargado del traslado fue sumamente amable y nos dio hasta jna hoja de recomendaciones para visitar en Gran Canaria (hecha a mano por el!! Un puntazo!)\nEn las oficinas, me atendio Carmen que en todo monento fue amable y clara con las condiciones del alquiler.\nEl vehiculo estaba en perfecto estado (era una marca desconocida para mi), y facil de conducir.\nA la vuelta, la devolucion fue rapida y sencilla y en cero coma, antonio te deja en el aeropuerto.\nSin duda repetiria con esta compañia.\n\nLa unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de Booking para llegar al sitio de recogida, ya que no son claras. Deberia de empezar diciendo que hay que SUBIR a la planta de SALIDAS (no queda claro que hay que subir, ya que dice “ve a la salida” y se entiende que es a la salida del recinto. Sin embargo cuando llamas por telefono al numero de contacto que dais para la recogida, las instrucciones son mucho mas claras. 5 2025-01-25 01:27:48.342132+00 Juan Manuel Diaz \N 1 2026-01-29 04:35:08.971868+00 2026-01-25 01:27:51.514469+00 484 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB unknown {"text": "L’agence de location vient d’ouvrir ! Les voitures sont neuves, le personnel est très professionnel et très sympathique ! Restitution de la voiture ce matin avec Carlos et navette aéroport avec Nestor ! Navette sans attente à l’aller comme au retour, le chauffeur nous a aidé à chargé ou déchargé nos valises ! Nous recommandons sans hésiter cette nouvelle agence de location !", "author": "H K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB", "timestamp": "a year ago"} L’agence de location vient d’ouvrir ! Les voitures sont neuves, le personnel est très professionnel et très sympathique ! Restitution de la voiture ce matin avec Carlos et navette aéroport avec Nestor ! Navette sans attente à l’aller comme au retour, le chauffeur nous a aidé à chargé ou déchargé nos valises ! Nous recommandons sans hésiter cette nouvelle agence de location ! 5 2025-01-25 01:27:48.34215+00 H K \N 1 2026-01-29 04:35:08.993124+00 2026-01-25 01:27:51.53493+00 489 \N google ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE unknown {"text": "Cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan...\\nLa oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora estipulada.\\nMis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agradables.", "author": "Lolina", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE", "timestamp": "a year ago"} Cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan...\nLa oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora estipulada.\nMis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agradables. 3 2025-01-25 01:27:48.34219+00 Lolina \N 1 2026-01-29 04:35:09.013919+00 2026-01-25 01:27:51.589411+00 496 \N google ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB unknown {"text": "Recomiendo al 100% esta empresa de alquiler de coches. Nos recogieron en el aeropuerto en seguida, no tienes que esperar prácticamente nada, ya que hacen viajes cada 15 min aprox. Destacar la atención inmejorable de Isaac y Antonio, ambos muy atentos y recomendándonos lugares para visitar y comer en la isla. Muy amables, agradables y profesionales. Recomendaremos está empresa sin duda.\\nGracias!!!", "author": "Cristina Gómez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB", "timestamp": "a year ago"} Recomiendo al 100% esta empresa de alquiler de coches. Nos recogieron en el aeropuerto en seguida, no tienes que esperar prácticamente nada, ya que hacen viajes cada 15 min aprox. Destacar la atención inmejorable de Isaac y Antonio, ambos muy atentos y recomendándonos lugares para visitar y comer en la isla. Muy amables, agradables y profesionales. Recomendaremos está empresa sin duda.\nGracias!!! 5 2025-01-25 01:27:48.342234+00 Cristina Gómez \N 1 2026-01-29 04:35:09.033891+00 2026-01-25 01:27:51.620383+00 500 \N google ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB unknown {"text": "Recomendable 100%. Agradecer a Carmen y Nestor lo amables que han sido. No conocíamos esta empresa de alquiler de vehículos y hemos quedado encantados con la profesionalidad y trato de ellos. Si volvemos, no dudaremos en volver a contratar con ClickRent. Muchísimas gracias por todo.", "author": "Virginia pedruelo garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB", "timestamp": "a year ago"} Recomendable 100%. Agradecer a Carmen y Nestor lo amables que han sido. No conocíamos esta empresa de alquiler de vehículos y hemos quedado encantados con la profesionalidad y trato de ellos. Si volvemos, no dudaremos en volver a contratar con ClickRent. Muchísimas gracias por todo. 5 2025-01-25 01:27:48.342269+00 Virginia pedruelo garcia \N 1 2026-01-29 04:35:09.043874+00 2026-01-25 01:27:51.634628+00 237 \N google review_60 unknown {"text": "Everything was very easy and fast, the staff is super, kind and nice! I highly recommend it!", "author": "Andreea Popa", "rating": 5, "source": "dom", "timestamp": "a week ago"} Everything was very easy and fast, the staff is super, kind and nice! I highly recommend it! 5 2026-01-18 01:27:48.340533+00 Andreea Popa \N 1 2026-01-30 09:54:06.788877+00 2026-01-25 01:27:50.172407+00 506 \N google ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB unknown {"text": "La atención de Carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarnos las opciones que teníamos y nos ha recomendado la mejor para nosotros) ha sido agradable, risueña y atenta.\\nAdemás, hemos ido andando y a medio camino Fran se ha parado con el mini bus (que ponen de cortesía desde el aeropuerto hasta el punto, pero con las prisas se nos había pasado) y nos ha llevado el tramo que faltaba.\\nPor otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho.\\nHemos quedado muy satisfechos, sin duda los elegiremos!!", "author": "Rebeca Gonzalez Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB", "timestamp": "a year ago"} La atención de Carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarnos las opciones que teníamos y nos ha recomendado la mejor para nosotros) ha sido agradable, risueña y atenta.\nAdemás, hemos ido andando y a medio camino Fran se ha parado con el mini bus (que ponen de cortesía desde el aeropuerto hasta el punto, pero con las prisas se nos había pasado) y nos ha llevado el tramo que faltaba.\nPor otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho.\nHemos quedado muy satisfechos, sin duda los elegiremos!! 5 2025-01-25 01:27:48.342296+00 Rebeca Gonzalez Romero \N 1 2026-01-29 04:35:09.060372+00 2026-01-25 01:27:51.654256+00 508 \N google Ci9DQUlRQUNvZENodHljRjlvT2psa01VRkJOVWsxWTNJeFNrRkljakZuWkRsNk4yYxAB unknown {"text": "La mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el personal, el traslado, y el precio, fantastico, repetiré", "author": "Toni Domene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psa01VRkJOVWsxWTNJeFNrRkljakZuWkRsNk4yYxAB", "timestamp": "5 months ago"} La mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el personal, el traslado, y el precio, fantastico, repetiré 5 2025-08-28 01:27:48.342304+00 Toni Domene \N 1 2026-01-29 04:35:09.06685+00 2026-01-25 01:27:51.660914+00 509 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB unknown {"text": "Nueva franquicia de ClickRent, Aunque está fuera del aeropuerto, merece la pena. Transfer gratuito a/desde el aeropuerto a la campa donde tienen los coches. Flota de coches nuevos, nosotros estrenamos un Fiat500 cabrio de hecho. Trato súper profesional y exquisito por parte de Carlos, Néstor y Antonio que nos atendieron siempre con una amabilidad extrema y una sonrisa. Sin duda repetiremos.\\nPor poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la campa para la devolución de los coches.", "author": "Jose Luis Damian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB", "timestamp": "a year ago"} Nueva franquicia de ClickRent, Aunque está fuera del aeropuerto, merece la pena. Transfer gratuito a/desde el aeropuerto a la campa donde tienen los coches. Flota de coches nuevos, nosotros estrenamos un Fiat500 cabrio de hecho. Trato súper profesional y exquisito por parte de Carlos, Néstor y Antonio que nos atendieron siempre con una amabilidad extrema y una sonrisa. Sin duda repetiremos.\nPor poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la campa para la devolución de los coches. 5 2025-01-25 01:27:48.342315+00 Jose Luis Damian \N 1 2026-01-29 04:35:09.070395+00 2026-01-25 01:27:51.666655+00 512 \N google ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE unknown {"text": "Bueno decirles q alquile un coche,con\\ndouyou spanish,con seguro contratado por douyou spanish y cuando llegó ya me dicen q si quiero seguro con ellos de 120eur,lo cual me sorprendió pues en la entrega el mismo chico q me ofrece el seguro fue directo a 2 sitios del coche q ni a simple vista se veían total q como tenía seguro de fianza se agarró de eso la culpa fue mía porq no saque fotos al coche porque el coche nuevo por tos lados pero en los bajos q ni hay se me pasaría por la cabeza sacar fotos pues mira para mi un atraco perfecto ya no alquilaremos más con esta gentuza pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el tanque lleno, al saber q tenía seguro franquicia se aprovecho pero perdió un cliente y varios q me aseguraré de q no les hagan mas reservas y si alquilan con ellos asegúrense bien sobre todo bajos sacarle videos,parecían majos pero mira el calma existe amigo q dios te de el doble de lo q me deceastmeun saludo", "author": "Monsito De La Luz Pulido", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE", "timestamp": "7 months ago"} Bueno decirles q alquile un coche,con\ndouyou spanish,con seguro contratado por douyou spanish y cuando llegó ya me dicen q si quiero seguro con ellos de 120eur,lo cual me sorprendió pues en la entrega el mismo chico q me ofrece el seguro fue directo a 2 sitios del coche q ni a simple vista se veían total q como tenía seguro de fianza se agarró de eso la culpa fue mía porq no saque fotos al coche porque el coche nuevo por tos lados pero en los bajos q ni hay se me pasaría por la cabeza sacar fotos pues mira para mi un atraco perfecto ya no alquilaremos más con esta gentuza pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el tanque lleno, al saber q tenía seguro franquicia se aprovecho pero perdió un cliente y varios q me aseguraré de q no les hagan mas reservas y si alquilan con ellos asegúrense bien sobre todo bajos sacarle videos,parecían majos pero mira el calma existe amigo q dios te de el doble de lo q me deceastmeun saludo 2 2025-06-29 01:27:48.342338+00 Monsito De La Luz Pulido \N 1 2026-01-29 04:35:09.083362+00 2026-01-25 01:27:51.678994+00 516 \N google ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB unknown {"text": "Výborná služba. Dobrá cena, dostali jsme za zaslání cévní Seat Ibiza ve výborné výbavě. Shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut. Je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení.\\nDíky za tuhle službu. 👌", "author": "Jan Šimon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB", "timestamp": "10 months ago"} Výborná služba. Dobrá cena, dostali jsme za zaslání cévní Seat Ibiza ve výborné výbavě. Shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut. Je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení.\nDíky za tuhle službu. 👌 5 2025-03-31 01:27:48.342351+00 Jan Šimon \N 1 2026-01-29 04:35:09.094481+00 2026-01-25 01:27:51.693323+00 525 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB unknown {"text": "La experiencia ha sido increíble, desde el trato de Isabel que fue la chica que nos atendió y nos comentó todo lo que teníamos que saber, hasta los chicos Carlos, Néstor y Antonio que nos recogieron y nos trajeron de vuelta al aeropuerto y nos comentaron cosas que podíamos hacer y sitios que visitar.\\nUna compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷\\n¡Gracias a todo el equipo!", "author": "Carmen Almagro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB", "timestamp": "a year ago"} La experiencia ha sido increíble, desde el trato de Isabel que fue la chica que nos atendió y nos comentó todo lo que teníamos que saber, hasta los chicos Carlos, Néstor y Antonio que nos recogieron y nos trajeron de vuelta al aeropuerto y nos comentaron cosas que podíamos hacer y sitios que visitar.\nUna compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷\n¡Gracias a todo el equipo! 5 2025-01-25 01:27:48.342403+00 Carmen Almagro \N 1 2026-01-29 04:35:09.119422+00 2026-01-25 01:27:51.727476+00 1515 \N google ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB unknown {"text": "Great track, not much time for your money", "author": "Jenny King", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB", "timestamp": "3 years ago"} Great track, not much time for your money 4 2023-01-31 01:52:39.833374+00 Jenny King \N 1 2026-01-30 09:54:07.219936+00 2026-01-30 02:01:09.618455+00 538 \N google ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE unknown {"text": "Bueno, super buen trato por parte del personal, como siempre calidad precio razonables, lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ de franquicia resumido, y cuando llegas a la oficina te dicen que tienes que dejar 200€ de franquicia eso lo veo mal, es como si digo te vendo una pulsera por 15€ y cuando llegas al establecimiento te la vendo en 30€ por eso le doy 3 estrellas, de resto todo fenomenal, coches espectaculares, personal espectacular, y precios espectaculares.", "author": "Feluco110 ESP", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE", "timestamp": "9 months ago"} Bueno, super buen trato por parte del personal, como siempre calidad precio razonables, lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ de franquicia resumido, y cuando llegas a la oficina te dicen que tienes que dejar 200€ de franquicia eso lo veo mal, es como si digo te vendo una pulsera por 15€ y cuando llegas al establecimiento te la vendo en 30€ por eso le doy 3 estrellas, de resto todo fenomenal, coches espectaculares, personal espectacular, y precios espectaculares. 3 2025-04-30 01:27:48.342457+00 Feluco110 ESP \N 1 2026-01-29 04:35:09.173745+00 2026-01-25 01:27:51.774181+00 546 \N google ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE unknown {"text": "\\"Unser Erlebnis bei ClickRent war absolut positiv! Wir wurden hervorragend informiert und das Team stand uns mit allen wichtigen Details zur Seite. Das gesamte Team war nicht nur freundlich, sondern auch äußerst vertrauenswürdig, sodass wir uns vom ersten Moment an wohlgefühlt haben. Die Preise sind sehr fair, und die Fahrzeuge waren in einem top Zustand. Besonders hervorzuheben ist der exzellente Abholservice – einfach perfekt! Wir können diesen Autoverleih ohne Einschränkung weiterempfehlen und würden jederzeit wieder hier buchen.\\"", "author": "Anna Teuber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE", "timestamp": "a year ago"} "Unser Erlebnis bei ClickRent war absolut positiv! Wir wurden hervorragend informiert und das Team stand uns mit allen wichtigen Details zur Seite. Das gesamte Team war nicht nur freundlich, sondern auch äußerst vertrauenswürdig, sodass wir uns vom ersten Moment an wohlgefühlt haben. Die Preise sind sehr fair, und die Fahrzeuge waren in einem top Zustand. Besonders hervorzuheben ist der exzellente Abholservice – einfach perfekt! Wir können diesen Autoverleih ohne Einschränkung weiterempfehlen und würden jederzeit wieder hier buchen." 5 2025-01-25 01:27:48.3425+00 Anna Teuber \N 1 2026-01-29 04:35:09.194859+00 2026-01-25 01:27:51.804662+00 558 \N google ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB unknown {"text": "Sorprendido con este nuevo Rentacar en Canarias, tanto Carlos como Fran han tenido una muy buena atención. Alquiler económico y el vehiculo en excelentes condiciones. Recomendable. Gracias y muchos éxitos!!!", "author": "Armand", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB", "timestamp": "a year ago"} Sorprendido con este nuevo Rentacar en Canarias, tanto Carlos como Fran han tenido una muy buena atención. Alquiler económico y el vehiculo en excelentes condiciones. Recomendable. Gracias y muchos éxitos!!! 5 2025-01-25 01:27:48.342546+00 Armand \N 1 2026-01-29 04:35:09.230236+00 2026-01-25 01:27:51.841916+00 560 \N google ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB unknown {"text": "He reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba Antonio esperándonos, nos ayudó con las maletas e incluso nos recomendó la mejor manera de aprovechar las vacaciones, luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra hija unos detalles, estamos muy agradecidos con los chicos y la empresa, muchas gracias!!", "author": "Nare Yanez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB", "timestamp": "a year ago"} He reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba Antonio esperándonos, nos ayudó con las maletas e incluso nos recomendó la mejor manera de aprovechar las vacaciones, luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra hija unos detalles, estamos muy agradecidos con los chicos y la empresa, muchas gracias!! 5 2025-01-25 01:27:48.342565+00 Nare Yanez \N 1 2026-01-29 04:35:09.236479+00 2026-01-25 01:27:51.849546+00 571 \N google ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB unknown {"text": "Muchas gracias a todo el equipo de Click en Ojos de Garza, Carmen, Antonio, Nestor y sus compañeras que nos han atendido perfectamente y con gran amabilidad. Repetiremos sin duda. Un saludo cordial", "author": "JOSE JULIO OLMO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB", "timestamp": "a year ago"} Muchas gracias a todo el equipo de Click en Ojos de Garza, Carmen, Antonio, Nestor y sus compañeras que nos han atendido perfectamente y con gran amabilidad. Repetiremos sin duda. Un saludo cordial 5 2025-01-25 01:27:48.342601+00 JOSE JULIO OLMO \N 1 2026-01-29 04:35:09.270978+00 2026-01-25 01:27:51.899526+00 584 \N google ChZDSUhNMG9nS0VJQ0FnSUNuck5mSWZBEAE unknown {"text": "Impecable servicio de alquiler de coches. Muy útil para recorrer la isla. Perfecta atención por parte de Carlos, Fran y Néstor. Repetiremos.", "author": "Alejandro J. G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuck5mSWZBEAE", "timestamp": "a year ago"} Impecable servicio de alquiler de coches. Muy útil para recorrer la isla. Perfecta atención por parte de Carlos, Fran y Néstor. Repetiremos. 5 2025-01-25 01:27:48.342695+00 Alejandro J. G. \N 1 2026-01-29 04:35:09.304818+00 2026-01-25 01:27:51.940186+00 587 \N google ChdDSUhNMG9nS0VJQ0FnSUNIMzVhY3FRRRAB unknown {"text": "Ha sido todo muy fácil y agradable, destacando Dany y Antonio en el transporte desde el aeropuerto y la atención en sus instalaciones. Muchas gracias.", "author": "gregorio ramirez gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMzVhY3FRRRAB", "timestamp": "a year ago"} Ha sido todo muy fácil y agradable, destacando Dany y Antonio en el transporte desde el aeropuerto y la atención en sus instalaciones. Muchas gracias. 5 2025-01-25 01:27:48.342701+00 gregorio ramirez gonzalez \N 1 2026-01-29 04:35:09.312067+00 2026-01-25 01:27:51.953387+00 597 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3d3BDNmpBRRAB unknown {"text": "Nos vinieron a buscar en un mini bus un chico llamado David Pérez muy majo que nos hizo el viaje muy ameno aconsejándonos lugares y actividades que realizar en Tenerife", "author": "Mireya San Segundo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3d3BDNmpBRRAB", "timestamp": "a year ago"} Nos vinieron a buscar en un mini bus un chico llamado David Pérez muy majo que nos hizo el viaje muy ameno aconsejándonos lugares y actividades que realizar en Tenerife 5 2025-01-25 01:27:48.342758+00 Mireya San Segundo \N 1 2026-01-29 04:35:09.346564+00 2026-01-25 01:27:51.987376+00 615 \N google ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE unknown {"text": "Carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car también muy amable y atento, repetiré seguro!", "author": "sergio Caceres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE", "timestamp": "a year ago"} Carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car también muy amable y atento, repetiré seguro! 5 2025-01-25 01:27:48.342857+00 sergio Caceres \N 1 2026-01-29 04:35:09.423628+00 2026-01-25 01:27:52.050011+00 672 \N google Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB unknown {"text": "Samochód wydano jako „bez uszkodzeń”\\nZdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. Po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu.Pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. Dołączam kilka zdjęć. Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. I teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;)\\nNa nasze szczęście zdjęcia robiły dwie osoby i mamy takie zdjęcie z datą i godziną. Tak, ku przestrodze. Jeszcze bezczelnie mówili nam że dali nam nowiutki idealny samochód.", "author": "Paweł Wache", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB", "timestamp": "3 days ago"} Samochód wydano jako „bez uszkodzeń”\nZdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. Po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu.Pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. Dołączam kilka zdjęć. Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. I teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;)\nNa nasze szczęście zdjęcia robiły dwie osoby i mamy takie zdjęcie z datą i godziną. Tak, ku przestrodze. Jeszcze bezczelnie mówili nam że dali nam nowiutki idealny samochód. 1 2026-01-22 01:27:48.343146+00 Paweł Wache \N 1 2026-01-29 04:35:09.619167+00 2026-01-25 01:27:52.288335+00 677 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB unknown {"text": "Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug!\\nEinzige Kritik:\\nKeine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis auf das obere Stockwerk (Abflughalle). Nach rechts gehen bis ca. Abflug Gate 2-5 wäre sehr hilfreich. Musste anrufen und dann bekam ich ein Youtube Video vom Standort zugeschickt. Fahrer war jeweils sehr freundlich und hilfsbereit.", "author": "Kurt Bahner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB", "timestamp": "6 days ago"} Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug!\nEinzige Kritik:\nKeine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis auf das obere Stockwerk (Abflughalle). Nach rechts gehen bis ca. Abflug Gate 2-5 wäre sehr hilfreich. Musste anrufen und dann bekam ich ein Youtube Video vom Standort zugeschickt. Fahrer war jeweils sehr freundlich und hilfsbereit. 5 2026-01-19 01:27:48.343174+00 Kurt Bahner \N 1 2026-01-29 04:35:09.637116+00 2026-01-25 01:27:52.337013+00 1342 \N google ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB unknown {"text": "Very nice track and quiet decent Karts, at the least the 300. Telemetry is very good! Fun is assured 😎👌", "author": "Andrea Torri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB", "timestamp": "a year ago"} Very nice track and quiet decent Karts, at the least the 300. Telemetry is very good! Fun is assured 😎👌 5 2025-01-30 01:52:39.833374+00 Andrea Torri \N 1 2026-01-30 09:54:06.710404+00 2026-01-30 02:01:09.024222+00 1343 \N google ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE unknown {"text": "A very good family run kart track. Extremely friendly..low prices ,choice of karts slow-fast and children's karts and doubles.\\nI have been here many times.", "author": "Nigel Cox", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE", "timestamp": "3 years ago"} A very good family run kart track. Extremely friendly..low prices ,choice of karts slow-fast and children's karts and doubles.\nI have been here many times. 5 2023-01-31 01:52:39.833374+00 Nigel Cox \N 1 2026-01-30 09:54:06.714736+00 2026-01-30 02:01:09.028047+00 1344 \N google ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE unknown {"text": "Great experience for children and adults. Friendly, helpful staff. Will definitely return", "author": "claire Gray", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE", "timestamp": "9 months ago"} Great experience for children and adults. Friendly, helpful staff. Will definitely return 5 2025-05-05 00:52:39.833374+00 claire Gray \N 1 2026-01-30 09:54:06.717947+00 2026-01-30 02:01:09.031579+00 1345 \N google ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB unknown {"text": "Very friendly welcoming staff who speak great English and were really happy for my husband to have a drive around despite none else being on track.", "author": "emma webborn", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB", "timestamp": "a year ago"} Very friendly welcoming staff who speak great English and were really happy for my husband to have a drive around despite none else being on track. 5 2025-01-30 01:52:39.833374+00 emma webborn \N 1 2026-01-30 09:54:06.720957+00 2026-01-30 02:01:09.035119+00 1346 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB unknown {"text": "Nice track, good safety in place and organisation. Kids enjoyed it a lot", "author": "Dave Lowe", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB", "timestamp": "2 months ago"} Nice track, good safety in place and organisation. Kids enjoyed it a lot 5 2025-12-01 01:52:39.833374+00 Dave Lowe \N 1 2026-01-30 09:54:06.726432+00 2026-01-30 02:01:09.043769+00 1423 \N google ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE unknown {"text": "Kids both loved it and already want to go back. 5 types of car. Slowest are F100 (6yrs+) and Tandem (for adults and kids 6 yrs+) which go around together. These were 8 euros for 8 minutes.\\nNext up are F200 (min age 12) 12 euros / 8 mins; and F300 (min age 16) 17 euros for 8 mins.\\nThen fastest for adults only are F400s, which are very fast.\\nDepending on numbers sold F300s normally race with F200s or F400s.\\nTrack is large 1100m with several corners. Fastest lap times are sub 1 minute for fastest cars.\\nThere is a very good electronic leaderboard and split timing measuring your fastest lap and gap to car in front.\\nOverall very good and will probably go back.", "author": "Gary Pattinson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE", "timestamp": "6 years ago"} Kids both loved it and already want to go back. 5 types of car. Slowest are F100 (6yrs+) and Tandem (for adults and kids 6 yrs+) which go around together. These were 8 euros for 8 minutes.\nNext up are F200 (min age 12) 12 euros / 8 mins; and F300 (min age 16) 17 euros for 8 mins.\nThen fastest for adults only are F400s, which are very fast.\nDepending on numbers sold F300s normally race with F200s or F400s.\nTrack is large 1100m with several corners. Fastest lap times are sub 1 minute for fastest cars.\nThere is a very good electronic leaderboard and split timing measuring your fastest lap and gap to car in front.\nOverall very good and will probably go back. 5 2020-02-01 01:52:39.833374+00 Gary Pattinson \N 1 2026-01-30 09:54:06.952161+00 2026-01-30 02:01:09.300616+00 1563 \N google ChZDSUhNMG9nS0VJQ0FnSURRd3NHek5nEAE unknown {"text": "Great morning & safe staff 👌", "author": "Martin Lakey", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRd3NHek5nEAE", "timestamp": "7 years ago"} Great morning & safe staff 👌 4 2019-02-01 01:52:39.833374+00 Martin Lakey \N 1 2026-01-30 09:54:07.374287+00 2026-01-30 02:01:09.791777+00 1326 \N google ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE unknown {"text": "Ha sido mi primera experiencia en Karts, y desde luego repetiría y en el mismo sitio. Circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras. Nosotros cogimos los de 300 recomendados por la mujer que nos atendió. Me gustó que su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero, porque nosotros queríamos los de 400. Los karts funcionan bien y la pista también estába bien asfaltada. Recomendable. Yo disfruté muchísimo. Más de lo que esperaba.", "author": "Mery Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE", "timestamp": "3 years ago"} Ha sido mi primera experiencia en Karts, y desde luego repetiría y en el mismo sitio. Circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras. Nosotros cogimos los de 300 recomendados por la mujer que nos atendió. Me gustó que su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero, porque nosotros queríamos los de 400. Los karts funcionan bien y la pista también estába bien asfaltada. Recomendable. Yo disfruté muchísimo. Más de lo que esperaba. 5 2023-01-31 01:52:39.833374+00 Mery Lopez \N 1 2026-01-30 09:54:06.6612+00 2026-01-30 02:01:08.97566+00 1353 \N google ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB unknown {"text": "Everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces", "author": "Michelle White", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB", "timestamp": "2 years ago"} Everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces 5 2024-01-31 01:52:39.833374+00 Michelle White \N 1 2026-01-30 09:54:06.744748+00 2026-01-30 02:01:09.079509+00 1391 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB unknown {"text": "Good afternoon. Friendly staff. Very reasonable prices for an adult/child kart.", "author": "carol allan", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB", "timestamp": "7 months ago"} Good afternoon. Friendly staff. Very reasonable prices for an adult/child kart. 5 2025-07-04 00:52:39.833374+00 carol allan \N 1 2026-01-30 09:54:06.861342+00 2026-01-30 02:01:09.196598+00 1392 \N google Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB unknown {"text": "Great value for money. Big track 👍", "author": "Victoria tanner", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB", "timestamp": "5 months ago"} Great value for money. Big track 👍 4 2025-09-02 00:52:39.833374+00 Victoria tanner \N 1 2026-01-30 09:54:06.865026+00 2026-01-30 02:01:09.20007+00 1393 \N google Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB unknown {"text": "Very good. Karts drive amazing and good a great range of selection to choose from", "author": "dave skilton", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB", "timestamp": "6 months ago"} Very good. Karts drive amazing and good a great range of selection to choose from 5 2025-08-03 00:52:39.833374+00 dave skilton \N 1 2026-01-30 09:54:06.867805+00 2026-01-30 02:01:09.202677+00 1394 \N google ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB unknown {"text": "Good karting circuit with a lot of choice. For adults and kids. Also nice investments done during the last years.", "author": "steven helsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB", "timestamp": "5 years ago"} Good karting circuit with a lot of choice. For adults and kids. Also nice investments done during the last years. 5 2021-01-31 01:52:39.833374+00 steven helsen \N 1 2026-01-30 09:54:06.870708+00 2026-01-30 02:01:09.205402+00 1395 \N google ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB unknown {"text": "Excellent place for Supermoto riding. Fresh facilities, very helpful and pleasant staff. Worth a visit!", "author": "Fredrik Blomström", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB", "timestamp": "5 years ago"} Excellent place for Supermoto riding. Fresh facilities, very helpful and pleasant staff. Worth a visit! 5 2021-01-31 01:52:39.833374+00 Fredrik Blomström \N 1 2026-01-30 09:54:06.873573+00 2026-01-30 02:01:09.209858+00 1396 \N google ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB unknown {"text": "Great place to visit and super cheap for a lap for the kids on 100cc = £10.\\n\\nYou can't go on with the younger kids if they want to go themselves.\\n\\nFun and great track!\\nFacilities are fab", "author": "Karl Young", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB", "timestamp": "2 years ago"} Great place to visit and super cheap for a lap for the kids on 100cc = £10.\n\nYou can't go on with the younger kids if they want to go themselves.\n\nFun and great track!\nFacilities are fab 5 2024-01-31 01:52:39.833374+00 Karl Young \N 1 2026-01-30 09:54:06.875845+00 2026-01-30 02:01:09.212682+00 1398 \N google ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB unknown {"text": "Great family fun", "author": "Ian Maynard", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB", "timestamp": "7 months ago"} Great family fun 5 2025-07-04 00:52:39.833374+00 Ian Maynard \N 1 2026-01-30 09:54:06.882634+00 2026-01-30 02:01:09.219589+00 1455 \N google ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE unknown {"text": "Fun.. but the steering wheel was so hard to move so it really hurt. Last 2 minutes was living hell for my under arms", "author": "Thor “Torre”", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE", "timestamp": "3 years ago"} Fun.. but the steering wheel was so hard to move so it really hurt. Last 2 minutes was living hell for my under arms 2 2023-01-31 01:52:39.833374+00 Thor “Torre” \N 1 2026-01-30 09:54:07.03751+00 2026-01-30 02:01:09.405529+00 1382 \N google review_74 unknown {"text": "Very well organised and very efficient at getting players on and off with little fuss.", "author": "Linda McGregor", "rating": 5, "source": "dom", "timestamp": "6 months ago"} Very well organised and very efficient at getting players on and off with little fuss. 5 2025-08-03 00:52:39.833374+00 Linda McGregor \N 1 2026-01-30 09:54:06.836855+00 2026-01-30 02:01:09.17098+00 1384 \N google review_76 unknown {"text": "Felt was really good value for money. €18 for 8 mins. Doesn't sound a lot, but it's plenty when your out there (around 8 laps of a 1km circuit). Massive outdoor screen display where you can see your lap times and also live video feed.\\nNice cafe onsite and good views for those watching. No need to book as they continually race.", "author": "Mark LoGalbo", "rating": 5, "source": "dom", "timestamp": "3 years ago"} Felt was really good value for money. €18 for 8 mins. Doesn't sound a lot, but it's plenty when your out there (around 8 laps of a 1km circuit). Massive outdoor screen display where you can see your lap times and also live video feed.\nNice cafe onsite and good views for those watching. No need to book as they continually race. 5 2023-01-31 01:52:39.833374+00 Mark LoGalbo \N 1 2026-01-30 09:54:06.842463+00 2026-01-30 02:01:09.177452+00 1404 \N google ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB unknown {"text": "A repeat visit here for us. We really like go-karting here. Good track layout, staff are friendly and helpful and it’s reasonably priced. A bit out the way so a car is needed. But for a good afternoon out racing it’s ideal.", "author": "Tony Garcia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB", "timestamp": "2 years ago"} A repeat visit here for us. We really like go-karting here. Good track layout, staff are friendly and helpful and it’s reasonably priced. A bit out the way so a car is needed. But for a good afternoon out racing it’s ideal. 4 2024-01-31 01:52:39.833374+00 Tony Garcia \N 1 2026-01-30 09:54:06.898162+00 2026-01-30 02:01:09.237311+00 1405 \N google ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE unknown {"text": "Use it every year. The kids love it. Nice size track. Different engine sizes for all ages and experiences. 100, 200, 300 and so on. Amazing how many pay extra for 300 but get over taken by 200s :-)", "author": "Silver Surfer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE", "timestamp": "6 years ago"} Use it every year. The kids love it. Nice size track. Different engine sizes for all ages and experiences. 100, 200, 300 and so on. Amazing how many pay extra for 300 but get over taken by 200s :-) 5 2020-02-01 01:52:39.833374+00 Silver Surfer \N 1 2026-01-30 09:54:06.900659+00 2026-01-30 02:01:09.240256+00 1407 \N google ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE unknown {"text": "A bit expensive, so it is a rare pleasure :D But the place and service are great! We celebrated a kid's birthday and the menu was very rich!!", "author": "Diana Baryseva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE", "timestamp": "2 years ago"} A bit expensive, so it is a rare pleasure :D But the place and service are great! We celebrated a kid's birthday and the menu was very rich!! 5 2024-01-31 01:52:39.833374+00 Diana Baryseva \N 1 2026-01-30 09:54:06.906143+00 2026-01-30 02:01:09.246995+00 1408 \N google ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE unknown {"text": "Spent a few hours here on Friday. The kids (age 12 & 14) had a fantastic time. The staff were really friendly and the prices are very reasonable. All in all a brilliant experience.", "author": "Christine Ashby", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE", "timestamp": "7 years ago"} Spent a few hours here on Friday. The kids (age 12 & 14) had a fantastic time. The staff were really friendly and the prices are very reasonable. All in all a brilliant experience. 5 2019-02-01 01:52:39.833374+00 Christine Ashby \N 1 2026-01-30 09:54:06.90869+00 2026-01-30 02:01:09.249884+00 1409 \N google ChdDSUhNMG9nS0VJQ0FnTUNRbWVPS3N3RRAB unknown {"text": "Really fun experience, only takes about 1/2 hour to do but definitely worth it.", "author": "Kaitlin Hunter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRbWVPS3N3RRAB", "timestamp": "10 months ago"} Really fun experience, only takes about 1/2 hour to do but definitely worth it. 5 2025-04-05 00:52:39.833374+00 Kaitlin Hunter \N 1 2026-01-30 09:54:06.91079+00 2026-01-30 02:01:09.252451+00 1410 \N google ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB unknown {"text": "One of the best tracks I've done in Spain, well-maintained karts and helpful, friendly staff. Prices are a bit higher than similar tracks around, but they are not that strict on actual run times, so it evens out.", "author": "Arne Willemyns", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB", "timestamp": "3 years ago"} One of the best tracks I've done in Spain, well-maintained karts and helpful, friendly staff. Prices are a bit higher than similar tracks around, but they are not that strict on actual run times, so it evens out. 5 2023-01-31 01:52:39.833374+00 Arne Willemyns \N 1 2026-01-30 09:54:06.913529+00 2026-01-30 02:01:09.25573+00 1411 \N google Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB unknown {"text": "Brilliant service and great fun. I recommend them.", "author": "Nigel Hudson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB", "timestamp": "7 months ago"} Brilliant service and great fun. I recommend them. 5 2025-07-04 00:52:39.833374+00 Nigel Hudson \N 1 2026-01-30 09:54:06.916341+00 2026-01-30 02:01:09.259086+00 1403 \N google ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB unknown {"text": "I have been here numerous times. Very easy to book through their WhatsApp. Staff are friendly and helpful. Had a brilliant time with my group of 12 people and will be returning very soon.", "author": "Samuel Lambert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB", "timestamp": "3 years ago"} I have been here numerous times. Very easy to book through their WhatsApp. Staff are friendly and helpful. Had a brilliant time with my group of 12 people and will be returning very soon. 5 2023-01-31 01:52:39.833374+00 Samuel Lambert \N 1 2026-01-30 09:54:06.895574+00 2026-01-30 02:01:09.23433+00 1414 \N google ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB unknown {"text": "Very well organised. Staff very helpful and friendly. Karts are good and grades to your ability and age. Will go again. The roof top seating over looking the track and digital score boatf", "author": "Shamus Carroll", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB", "timestamp": "3 years ago"} Very well organised. Staff very helpful and friendly. Karts are good and grades to your ability and age. Will go again. The roof top seating over looking the track and digital score boatf 5 2023-01-31 01:52:39.833374+00 Shamus Carroll \N 1 2026-01-30 09:54:06.924799+00 2026-01-30 02:01:09.269033+00 1415 \N google ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB unknown {"text": "Great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just managed to drive her own kart (1 proud dad). Great fun and very reasonable prices too. Highly recommended", "author": "Steve Davies", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB", "timestamp": "6 years ago"} Great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just managed to drive her own kart (1 proud dad). Great fun and very reasonable prices too. Highly recommended 5 2020-02-01 01:52:39.833374+00 Steve Davies \N 1 2026-01-30 09:54:06.932023+00 2026-01-30 02:01:09.271849+00 1416 \N google ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB unknown {"text": "Great place. Go karts to suite everyone from kids aged 6+ to adults. Kids are 8 euro for around 8-10 mins and on Wednesdays it's 2 for 1. They have a cafe which is reasonably priced. All in all a great day out. Will deff recimmend.👍", "author": "John Maxwell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB", "timestamp": "6 years ago"} Great place. Go karts to suite everyone from kids aged 6+ to adults. Kids are 8 euro for around 8-10 mins and on Wednesdays it's 2 for 1. They have a cafe which is reasonably priced. All in all a great day out. Will deff recimmend.👍 5 2020-02-01 01:52:39.833374+00 John Maxwell \N 1 2026-01-30 09:54:06.934763+00 2026-01-30 02:01:09.274342+00 1417 \N google ChdDSUhNMG9nS0VJQ0FnSUR1aDRhNXVBRRAB unknown {"text": "Great place to enjoy on holiday, not too expensive", "author": "Gill Brindley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1aDRhNXVBRRAB", "timestamp": "3 years ago"} Great place to enjoy on holiday, not too expensive 5 2023-01-31 01:52:39.833374+00 Gill Brindley \N 1 2026-01-30 09:54:06.937611+00 2026-01-30 02:01:09.277249+00 1418 \N google ChZDSUhNMG9nS0VJQ0FnSUR1dk9hMUl3EAE unknown {"text": "Absolutely brilliant!! Well organised, reasonably priced and the kids loved it as did the adults!! A fun activity to do whilst away on holiday xx", "author": "Amy", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dk9hMUl3EAE", "timestamp": "3 years ago"} Absolutely brilliant!! Well organised, reasonably priced and the kids loved it as did the adults!! A fun activity to do whilst away on holiday xx 5 2023-01-31 01:52:39.833374+00 Amy \N 1 2026-01-30 09:54:06.940086+00 2026-01-30 02:01:09.280468+00 1419 \N google ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE unknown {"text": "Lots of fun, great track. Following all hygiene rules. The karts are fast and some of the bends tricky. The staff were friendly, helpful and safety focused. Would take the family again.", "author": "S Constance", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE", "timestamp": "4 years ago"} Lots of fun, great track. Following all hygiene rules. The karts are fast and some of the bends tricky. The staff were friendly, helpful and safety focused. Would take the family again. 4 2022-01-31 01:52:39.833374+00 S Constance \N 1 2026-01-30 09:54:06.942422+00 2026-01-30 02:01:09.283363+00 1420 \N google ChdDSUhNMG9nS0VJQ0FnTURBMXBTZHhRRRAB unknown {"text": "We had a great meal here tonight. Lovely food and excellent service !!! Thank you !!!", "author": "Renata Kehoe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBMXBTZHhRRRAB", "timestamp": "11 months ago"} We had a great meal here tonight. Lovely food and excellent service !!! Thank you !!! 5 2025-03-06 01:52:39.833374+00 Renata Kehoe \N 1 2026-01-30 09:54:06.944603+00 2026-01-30 02:01:09.287054+00 1421 \N google ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB unknown {"text": "Nice place.. very friendly family run business. Good for children and adults. Not normally a long wait. Good prices", "author": "nigel cox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB", "timestamp": "2 years ago"} Nice place.. very friendly family run business. Good for children and adults. Not normally a long wait. Good prices 5 2024-01-31 01:52:39.833374+00 nigel cox \N 1 2026-01-30 09:54:06.94673+00 2026-01-30 02:01:09.290975+00 1555 \N google ChZDSUhNMG9nS0VJQ0FnSUNVMzZiNGNnEAE unknown {"text": "Very good enjoyed it alot", "author": "Cr0wm4n", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMzZiNGNnEAE", "timestamp": "6 years ago"} Very good enjoyed it alot 5 2020-02-01 01:52:39.833374+00 Cr0wm4n \N 1 2026-01-30 09:54:07.34946+00 2026-01-30 02:01:09.766034+00 1424 \N google ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB unknown {"text": "Great track with performing karts!\\nThe twin brothers are doing a great job to give you a real racing experience from beginner to advanced drivers.\\nAlso good covid rules and disinfecting of karts and helmets.", "author": "Steven Moulaert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB", "timestamp": "4 years ago"} Great track with performing karts!\nThe twin brothers are doing a great job to give you a real racing experience from beginner to advanced drivers.\nAlso good covid rules and disinfecting of karts and helmets. 5 2022-01-31 01:52:39.833374+00 Steven Moulaert \N 1 2026-01-30 09:54:06.954753+00 2026-01-30 02:01:09.303526+00 1425 \N google ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB unknown {"text": "Brilliant place. Lovely staff, very helpful and friendly. Very very reasonable rates. Will definitely go back with the grandchildren. Food good too.", "author": "Cathy Boshell", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB", "timestamp": "6 years ago"} Brilliant place. Lovely staff, very helpful and friendly. Very very reasonable rates. Will definitely go back with the grandchildren. Food good too. 4 2020-02-01 01:52:39.833374+00 Cathy Boshell \N 1 2026-01-30 09:54:06.957318+00 2026-01-30 02:01:09.306436+00 1426 \N google ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB unknown {"text": "Excellent , staff friendly and courteous, great choice of karts for all ages. If your part of a group and you decide not to go on a kart there is a Nice seating area to get a Drink or just chill and watch.", "author": "Vincent McColgan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB", "timestamp": "4 years ago"} Excellent , staff friendly and courteous, great choice of karts for all ages. If your part of a group and you decide not to go on a kart there is a Nice seating area to get a Drink or just chill and watch. 5 2022-01-31 01:52:39.833374+00 Vincent McColgan \N 1 2026-01-30 09:54:06.959498+00 2026-01-30 02:01:09.309306+00 1427 \N google ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB unknown {"text": "Group had a couple of races .Staff are really helpful .Everyone had a blast. Great value .Will definitely be back & would highly recommend. 100%", "author": "les fitzsimons", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB", "timestamp": "3 years ago"} Group had a couple of races .Staff are really helpful .Everyone had a blast. Great value .Will definitely be back & would highly recommend. 100% 5 2023-01-31 01:52:39.833374+00 les fitzsimons \N 1 2026-01-30 09:54:06.961925+00 2026-01-30 02:01:09.312048+00 1428 \N google ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE unknown {"text": "Really good experience , proper go karts super track friendly faces and great service at a great price , recommended", "author": "Drew Morrow", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE", "timestamp": "a year ago"} Really good experience , proper go karts super track friendly faces and great service at a great price , recommended 5 2025-01-30 01:52:39.833374+00 Drew Morrow \N 1 2026-01-30 09:54:06.964705+00 2026-01-30 02:01:09.315679+00 1429 \N google ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE unknown {"text": "Honestly one of the best places I have been karting. Grippy track, fantastic mixed layout, well maintained carts and most importantly, LOVELY staff - truly a great place to go for a fun bit of karting - check it out if you're nearby!", "author": "Dom Dwyer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE", "timestamp": "4 years ago"} Honestly one of the best places I have been karting. Grippy track, fantastic mixed layout, well maintained carts and most importantly, LOVELY staff - truly a great place to go for a fun bit of karting - check it out if you're nearby! 5 2022-01-31 01:52:39.833374+00 Dom Dwyer \N 1 2026-01-30 09:54:06.967065+00 2026-01-30 02:01:09.318846+00 1430 \N google ChdDSUhNMG9nS0VJQ0FnSURELXNPVG1nRRAB unknown {"text": "Very enjoyable experience here. Have been a few times now and the whole family loved it", "author": "Miriam Dore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURELXNPVG1nRRAB", "timestamp": "a year ago"} Very enjoyable experience here. Have been a few times now and the whole family loved it 5 2025-01-30 01:52:39.833374+00 Miriam Dore \N 1 2026-01-30 09:54:06.969087+00 2026-01-30 02:01:09.321069+00 1431 \N google ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE unknown {"text": "Love coming to this track,been coming for a couple of years,very nice track,very friendly staff and very reasonable price good fun here we go again for the 3rd time this week.", "author": "Steve Hall", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE", "timestamp": "3 years ago"} Love coming to this track,been coming for a couple of years,very nice track,very friendly staff and very reasonable price good fun here we go again for the 3rd time this week. 5 2023-01-31 01:52:39.833374+00 Steve Hall \N 1 2026-01-30 09:54:06.971353+00 2026-01-30 02:01:09.323559+00 1432 \N google ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE unknown {"text": "Very good fun. Good quality karts from 2 seaters upto very fast karts. Open 10.30am-10pm. good track has timing devices and lots of other GPS trackers for people viewing.", "author": "Matthew Cook", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE", "timestamp": "7 years ago"} Very good fun. Good quality karts from 2 seaters upto very fast karts. Open 10.30am-10pm. good track has timing devices and lots of other GPS trackers for people viewing. 5 2019-02-01 01:52:39.833374+00 Matthew Cook \N 1 2026-01-30 09:54:06.97388+00 2026-01-30 02:01:09.326329+00 1448 \N google ChZDSUhNMG9nS0VJQ0FnSUMwcU5lbmZREAE unknown {"text": "Cool place to race. I was surprised by variaty of cars available. I can't hardly imagine to ride their fastest model without some experience. Price was decent.", "author": "Bohumil Mara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwcU5lbmZREAE", "timestamp": "6 years ago"} Cool place to race. I was surprised by variaty of cars available. I can't hardly imagine to ride their fastest model without some experience. Price was decent. 5 2020-02-01 01:52:39.833374+00 Bohumil Mara \N 1 2026-01-30 09:54:07.020357+00 2026-01-30 02:01:09.385688+00 1434 \N google ChZDSUhNMG9nS0VJQ0FnSUNHdDQ3Q1ZBEAE unknown {"text": "Best lap in the area they say and best that I have seen myself. It's just great. All kinds of karts, 100, 300, 300, 400 cm2. This is the place to go to have super good karting experience", "author": "Юрий Сорокин", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHdDQ3Q1ZBEAE", "timestamp": "4 years ago"} Best lap in the area they say and best that I have seen myself. It's just great. All kinds of karts, 100, 300, 300, 400 cm2. This is the place to go to have super good karting experience 5 2022-01-31 01:52:39.833374+00 Юрий Сорокин \N 1 2026-01-30 09:54:06.981615+00 2026-01-30 02:01:09.333625+00 1435 \N google ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE unknown {"text": "Granddaughter is rating this , she is nine and says the go carts went fast , lots of laps and the chappie was nice who put her helmet on\\nNice place", "author": "vicki wardle", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE", "timestamp": "2 years ago"} Granddaughter is rating this , she is nine and says the go carts went fast , lots of laps and the chappie was nice who put her helmet on\nNice place 5 2024-01-31 01:52:39.833374+00 vicki wardle \N 1 2026-01-30 09:54:06.984575+00 2026-01-30 02:01:09.337032+00 1436 \N google ChdDSUhNMG9nS0VJQ0FnSURaMXBxZTVRRRAB unknown {"text": "Took my daughter for her first time karting here. We all had a great time. Would go again definitely. Muy Bien.", "author": "Dan Norton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaMXBxZTVRRRAB", "timestamp": "2 years ago"} Took my daughter for her first time karting here. We all had a great time. Would go again definitely. Muy Bien. 5 2024-01-31 01:52:39.833374+00 Dan Norton \N 1 2026-01-30 09:54:06.989128+00 2026-01-30 02:01:09.341047+00 1437 \N google Ci9DQUlRQUNvZENodHljRjlvT201UU1YcDVTVzFOTVRocFJrVnpWbkUyYTFoMU5XYxAB unknown {"text": "Good real race track. Proper kerbs on all corners.", "author": "Larry Dalton", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201UU1YcDVTVzFOTVRocFJrVnpWbkUyYTFoMU5XYxAB", "timestamp": "7 months ago"} Good real race track. Proper kerbs on all corners. 5 2025-07-04 00:52:39.833374+00 Larry Dalton \N 1 2026-01-30 09:54:06.991433+00 2026-01-30 02:01:09.345242+00 1438 \N google ChdDSUhNMG9nS0VJQ0FnSURHNDlXN2tBRRAB unknown {"text": "Take the kid a few times a months all the staff are first rate...have now joined a group to race at the track again well organised and friendly/helpful staff", "author": "thomas lazenby", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHNDlXN2tBRRAB", "timestamp": "Edited a year ago"} Take the kid a few times a months all the staff are first rate...have now joined a group to race at the track again well organised and friendly/helpful staff 5 2026-01-30 01:52:39.833374+00 thomas lazenby \N 1 2026-01-30 09:54:06.993651+00 2026-01-30 02:01:09.348292+00 1439 \N google ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE unknown {"text": "Incredible fun. For around €20 you can get in 8 long laps on an excellent track. 🤩", "author": "Cathy Diver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE", "timestamp": "Edited a year ago"} Incredible fun. For around €20 you can get in 8 long laps on an excellent track. 🤩 5 2026-01-30 01:52:39.833374+00 Cathy Diver \N 1 2026-01-30 09:54:06.997454+00 2026-01-30 02:01:09.353573+00 1440 \N google ChZDSUhNMG9nS0VJQ0FnSUNneUplNFp3EAE unknown {"text": "Great Team there, very friendly. good prices.first 3 Winners get a medal 💪✌️we had an team. event with our football club.", "author": "Lukas Wojciak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneUplNFp3EAE", "timestamp": "7 years ago"} Great Team there, very friendly. good prices.first 3 Winners get a medal 💪✌️we had an team. event with our football club. 5 2019-02-01 01:52:39.833374+00 Lukas Wojciak \N 1 2026-01-30 09:54:07.000295+00 2026-01-30 02:01:09.357145+00 1441 \N google ChdDSUhNMG9nS0VJQ0FnSUNRbHYtRzVBRRAB unknown {"text": "Took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. Great fun . Highly recommended.", "author": "Ian Crawford", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRbHYtRzVBRRAB", "timestamp": "7 years ago"} Took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. Great fun . Highly recommended. 5 2019-02-01 01:52:39.833374+00 Ian Crawford \N 1 2026-01-30 09:54:07.00278+00 2026-01-30 02:01:09.360734+00 1442 \N google ChdDSUhNMG9nS0VJQ0FnSUNZa1p2MmxnRRAB unknown {"text": "Great range of karts including 2 seaters for children up to 5 to go with a parent. Really friendly staff, all in all a fabulous way to spend a few hours.", "author": "David Swift", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZa1p2MmxnRRAB", "timestamp": "6 years ago"} Great range of karts including 2 seaters for children up to 5 to go with a parent. Really friendly staff, all in all a fabulous way to spend a few hours. 5 2020-02-01 01:52:39.833374+00 David Swift \N 1 2026-01-30 09:54:07.0049+00 2026-01-30 02:01:09.36592+00 1443 \N google ChdDSUhNMG9nS0VJQ0FnSUMwdl8zVHFBRRAB unknown {"text": "Fantastic place! A good range of karts and a nice long outdoor track with food and drink on site. Great fun for all the family.", "author": "vincent tonner", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwdl8zVHFBRRAB", "timestamp": "6 years ago"} Fantastic place! A good range of karts and a nice long outdoor track with food and drink on site. Great fun for all the family. 5 2020-02-01 01:52:39.833374+00 vincent tonner \N 1 2026-01-30 09:54:07.007241+00 2026-01-30 02:01:09.368811+00 1444 \N google ChdDSUhNMG9nS0VJQ0FnSUNwenZ2QWp3RRAB unknown {"text": "Great fun if your at a loose end. Cheap fun. Friendly staff. Definitely worth a go", "author": "Trefor Woodcock", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwenZ2QWp3RRAB", "timestamp": "2 years ago"} Great fun if your at a loose end. Cheap fun. Friendly staff. Definitely worth a go 5 2024-01-31 01:52:39.833374+00 Trefor Woodcock \N 1 2026-01-30 09:54:07.010288+00 2026-01-30 02:01:09.372221+00 1445 \N google ChZDSUhNMG9nS0VJQ0FnSUNwaHV5aVFBEAE unknown {"text": "Very nice place to enjoy a spare hour. For all ages. Good prices. Staff ok", "author": "Trefor Woodcock", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwaHV5aVFBEAE", "timestamp": "2 years ago"} Very nice place to enjoy a spare hour. For all ages. Good prices. Staff ok 4 2024-01-31 01:52:39.833374+00 Trefor Woodcock \N 1 2026-01-30 09:54:07.012757+00 2026-01-30 02:01:09.375276+00 1446 \N google Ci9DQUlRQUNvZENodHljRjlvT2poMFFXUjBRM04wYWtwRUxXTjRNVmR6TWtrd1QxRRAB unknown {"text": "Brilliant day for adults and kids.", "author": "Dawn Dixon", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poMFFXUjBRM04wYWtwRUxXTjRNVmR6TWtrd1QxRRAB", "timestamp": "5 months ago"} Brilliant day for adults and kids. 5 2025-09-02 00:52:39.833374+00 Dawn Dixon \N 1 2026-01-30 09:54:07.015798+00 2026-01-30 02:01:09.379251+00 1457 \N google ChZDSUhNMG9nS0VJQ0FnSURPOUlEVkxnEAE unknown {"text": "We had a nice time together with friends. Nice variety of karts for different skills. Not expensive, lot of fun.", "author": "David Cabanes", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPOUlEVkxnEAE", "timestamp": "3 years ago"} We had a nice time together with friends. Nice variety of karts for different skills. Not expensive, lot of fun. 4 2023-01-31 01:52:39.833374+00 David Cabanes \N 1 2026-01-30 09:54:07.042512+00 2026-01-30 02:01:09.411097+00 1458 \N google ChZDSUhNMG9nS0VJQ0FnTURvb0l5RUZBEAE unknown {"text": "Nice karting with the possibility that kids can race to on their own level", "author": "Hanne Diels", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvb0l5RUZBEAE", "timestamp": "9 months ago"} Nice karting with the possibility that kids can race to on their own level 5 2025-05-05 00:52:39.833374+00 Hanne Diels \N 1 2026-01-30 09:54:07.0446+00 2026-01-30 02:01:09.413565+00 1459 \N google ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE unknown {"text": "Very enjoyable racing today. Great track and great facilities with very nice guys. Definitely recommend", "author": "Paddy Bellew", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE", "timestamp": "3 years ago"} Very enjoyable racing today. Great track and great facilities with very nice guys. Definitely recommend 5 2023-01-31 01:52:39.833374+00 Paddy Bellew \N 1 2026-01-30 09:54:07.046829+00 2026-01-30 02:01:09.416438+00 1460 \N google ChdDSUhNMG9nS0VJQ0FnSURBN1lpel9BRRAB unknown {"text": "Great track.. really quiet this time of year. Went 3 times during holiday​ and each time it was just us on the track.", "author": "Karen Snowe McCaul", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBN1lpel9BRRAB", "timestamp": "8 years ago"} Great track.. really quiet this time of year. Went 3 times during holiday​ and each time it was just us on the track. 5 2018-02-01 01:52:39.833374+00 Karen Snowe McCaul \N 1 2026-01-30 09:54:07.048814+00 2026-01-30 02:01:09.418412+00 1461 \N google ChdDSUhNMG9nS0VJQ0FnSUMwcTZpWjV3RRAB unknown {"text": "Good fun for all abilities and all ages from 4 yrs up. We'll organised.", "author": "brian cox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwcTZpWjV3RRAB", "timestamp": "Edited 2 years ago"} Good fun for all abilities and all ages from 4 yrs up. We'll organised. 5 2026-01-30 01:52:39.833374+00 brian cox \N 1 2026-01-30 09:54:07.051248+00 2026-01-30 02:01:09.421184+00 1462 \N google ChdDSUhNMG9nS0VJQ0FnSUREMnZmNjVRRRAB unknown {"text": "The best place in the area for karting without a doubt, the staff are very friendly and professional. 10/10", "author": "Ollie Fox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREMnZmNjVRRRAB", "timestamp": "a year ago"} The best place in the area for karting without a doubt, the staff are very friendly and professional. 10/10 5 2025-01-30 01:52:39.833374+00 Ollie Fox \N 1 2026-01-30 09:54:07.053539+00 2026-01-30 02:01:09.423711+00 1463 \N google ChdDSUhNMG9nS0VJQ0FnSUM3djh6YzRnRRAB unknown {"text": "Brilliant go-karting. Track and karts are top class. Very friendly staff.", "author": "Paul Shanley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3djh6YzRnRRAB", "timestamp": "a year ago"} Brilliant go-karting. Track and karts are top class. Very friendly staff. 5 2025-01-30 01:52:39.833374+00 Paul Shanley \N 1 2026-01-30 09:54:07.055998+00 2026-01-30 02:01:09.427686+00 1464 \N google ChZDSUhNMG9nS0VJQ0FnSUQ5bXNhVEVBEAE unknown {"text": "Great track, carts and Staff. Overall recomended", "author": "Karol Gucwa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5bXNhVEVBEAE", "timestamp": "a year ago"} Great track, carts and Staff. Overall recomended 5 2025-01-30 01:52:39.833374+00 Karol Gucwa \N 1 2026-01-30 09:54:07.058665+00 2026-01-30 02:01:09.432014+00 1466 \N google ChZDSUhNMG9nS0VJQ0FnSUN3eWItcUhnEAE unknown {"text": "Very nice staff and a good track. Had a good time with the family, well worth a visit.", "author": "David Kettley", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3eWItcUhnEAE", "timestamp": "7 years ago"} Very nice staff and a good track. Had a good time with the family, well worth a visit. 4 2019-02-01 01:52:39.833374+00 David Kettley \N 1 2026-01-30 09:54:07.062965+00 2026-01-30 02:01:09.437104+00 1467 \N google ChdDSUhNMG9nS0VJQ0FnSURqX1lDbnRnRRAB unknown {"text": "Always good fun at go karts Mar Menor, well and truly beaten by my son this time 😁😁", "author": "Daniel Pease", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqX1lDbnRnRRAB", "timestamp": "a year ago"} Always good fun at go karts Mar Menor, well and truly beaten by my son this time 😁😁 5 2025-01-30 01:52:39.833374+00 Daniel Pease \N 1 2026-01-30 09:54:07.065611+00 2026-01-30 02:01:09.439966+00 1468 \N google ChZDSUhNMG9nS0VJQ0FnSURPMExiaVhnEAE unknown {"text": "Good fun Good time fantastic place", "author": "Meow Supanunt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMExiaVhnEAE", "timestamp": "Edited 2 years ago"} Good fun Good time fantastic place 5 2026-01-30 01:52:39.833374+00 Meow Supanunt \N 1 2026-01-30 09:54:07.068488+00 2026-01-30 02:01:09.443102+00 1469 \N google ChZDSUhNMG9nS0VJQ0FnSUN1eTlIb0pnEAE unknown {"text": "Super track. Very professional team.", "author": "Patrick Bigaj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1eTlIb0pnEAE", "timestamp": "3 years ago"} Super track. Very professional team. 5 2023-01-31 01:52:39.833374+00 Patrick Bigaj \N 1 2026-01-30 09:54:07.071053+00 2026-01-30 02:01:09.446542+00 1470 \N google ChZDSUhNMG9nS0VJQ0FnSUNXMzlpTUdnEAE unknown {"text": "My 2 grandchildren loved this place. Reasonable prices and a good track.", "author": "Monica Cunningham", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXMzlpTUdnEAE", "timestamp": "3 years ago"} My 2 grandchildren loved this place. Reasonable prices and a good track. 4 2023-01-31 01:52:39.833374+00 Monica Cunningham \N 1 2026-01-30 09:54:07.073288+00 2026-01-30 02:01:09.449991+00 1471 \N google ChdDSUhNMG9nS0VJQ0FnTUNnd192X3BRRRAB unknown {"text": "Great place especially when they have the deals on 👍", "author": "Debbie Law", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnd192X3BRRRAB", "timestamp": "11 months ago"} Great place especially when they have the deals on 👍 5 2025-03-06 01:52:39.833374+00 Debbie Law \N 1 2026-01-30 09:54:07.07534+00 2026-01-30 02:01:09.452047+00 1556 \N google ChdDSUhNMG9nS0VJQ0FnSUNlNzlYdm13RRAB unknown {"text": "Was there several times. Karts are fast.", "author": "obozhdi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlNzlYdm13RRAB", "timestamp": "3 years ago"} Was there several times. Karts are fast. 5 2023-01-31 01:52:39.833374+00 obozhdi \N 1 2026-01-30 09:54:07.353076+00 2026-01-30 02:01:09.768654+00 1473 \N google ChdDSUhNMG9nS0VJQ0FnSUR1elBxWnhRRRAB unknown {"text": "Good facility, helpful staff. Nice little cafe, good gokarts, and covered area to watch from.", "author": "Amy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1elBxWnhRRRAB", "timestamp": "3 years ago"} Good facility, helpful staff. Nice little cafe, good gokarts, and covered area to watch from. 5 2023-01-31 01:52:39.833374+00 Amy \N 1 2026-01-30 09:54:07.081791+00 2026-01-30 02:01:09.457965+00 1474 \N google ChZDSUhNMG9nS0VJQ0FnSUNRM2Z2amRnEAE unknown {"text": "Great track, fast carts. Trust me, 10 mins is plenty on these carts. You'll be wrecked", "author": "Chris McNamara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRM2Z2amRnEAE", "timestamp": "8 years ago"} Great track, fast carts. Trust me, 10 mins is plenty on these carts. You'll be wrecked 5 2018-02-01 01:52:39.833374+00 Chris McNamara \N 1 2026-01-30 09:54:07.083984+00 2026-01-30 02:01:09.461034+00 1475 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0UmIySnZlR05FUldrME9UTkdjM2xUTjAxU09WRRAB unknown {"text": "Kids love it there", "author": "Darren Soley", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0UmIySnZlR05FUldrME9UTkdjM2xUTjAxU09WRRAB", "timestamp": "5 months ago"} Kids love it there 4 2025-09-02 00:52:39.833374+00 Darren Soley \N 1 2026-01-30 09:54:07.086054+00 2026-01-30 02:01:09.463698+00 1476 \N google ChdDSUhNMG9nS0VJQ0FnSURiNWVIeWdRRRAB unknown {"text": "My grandson really enjoyed it well worth a visit.", "author": "Thomas Burke", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiNWVIeWdRRRAB", "timestamp": "a year ago"} My grandson really enjoyed it well worth a visit. 5 2025-01-30 01:52:39.833374+00 Thomas Burke \N 1 2026-01-30 09:54:07.088185+00 2026-01-30 02:01:09.467284+00 1478 \N google ChdDSUhNMG9nS0VJQ0FnSUN1eWJ2aGh3RRAB unknown {"text": "It's a great 8 mins spent\\nWe really enjoyed it will come back soon", "author": "khal ali", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1eWJ2aGh3RRAB", "timestamp": "3 years ago"} It's a great 8 mins spent\nWe really enjoyed it will come back soon 5 2023-01-31 01:52:39.833374+00 khal ali \N 1 2026-01-30 09:54:07.092955+00 2026-01-30 02:01:09.472511+00 1479 \N google ChZDSUhNMG9nS0VJQ0FnSUNwd0pidkVBEAE unknown {"text": "Always great to come back. Been waiting 4yrs..All fun for all the family.", "author": "Matteo Kcah", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwd0pidkVBEAE", "timestamp": "2 years ago"} Always great to come back. Been waiting 4yrs..All fun for all the family. 5 2024-01-31 01:52:39.833374+00 Matteo Kcah \N 1 2026-01-30 09:54:07.094863+00 2026-01-30 02:01:09.474829+00 1480 \N google ChdDSUhNMG9nS0VJQ0FnSURRaDRlY21BRRAB unknown {"text": "Jus been to the Go Karts at Mar Menor..1st class professional and well marshalled circuit.....Great value for money ....and fast karts....loved it.", "author": "karl kindred", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRaDRlY21BRRAB", "timestamp": "7 years ago"} Jus been to the Go Karts at Mar Menor..1st class professional and well marshalled circuit.....Great value for money ....and fast karts....loved it. 4 2019-02-01 01:52:39.833374+00 karl kindred \N 1 2026-01-30 09:54:07.09737+00 2026-01-30 02:01:09.477505+00 1481 \N google ChdDSUhNMG9nS0VJQ0FnSUM1b2U3RXpnRRAB unknown {"text": "We go everytime we'rein Spain, Go-Karts on a track exactly what you'd expect.", "author": "FFA Loughborough", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1b2U3RXpnRRAB", "timestamp": "2 years ago"} We go everytime we'rein Spain, Go-Karts on a track exactly what you'd expect. 5 2024-01-31 01:52:39.833374+00 FFA Loughborough \N 1 2026-01-30 09:54:07.099362+00 2026-01-30 02:01:09.479929+00 1482 \N google ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB unknown {"text": "Good location great track....thou no pre safety talks like uk...\\nJust get in kart and go", "author": "peter hill", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB", "timestamp": "6 years ago"} Good location great track....thou no pre safety talks like uk...\nJust get in kart and go 4 2020-02-01 01:52:39.833374+00 peter hill \N 1 2026-01-30 09:54:07.101856+00 2026-01-30 02:01:09.483089+00 1483 \N google ChZDSUhNMG9nS0VJQ0FnSURwNktTZkFnEAE unknown {"text": "Great time Great price for all the family highly recommend will go again", "author": "Andrew Mcclelland", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNktTZkFnEAE", "timestamp": "2 years ago"} Great time Great price for all the family highly recommend will go again 5 2024-01-31 01:52:39.833374+00 Andrew Mcclelland \N 1 2026-01-30 09:54:07.10557+00 2026-01-30 02:01:09.486489+00 1484 \N google ChZDSUhNMG9nS0VJQ0FnSUNWak8zaUVREAE unknown {"text": "Excellent circuit, staff very good, great fun and a must visit", "author": "Darren Waddup", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWak8zaUVREAE", "timestamp": "2 years ago"} Excellent circuit, staff very good, great fun and a must visit 5 2024-01-31 01:52:39.833374+00 Darren Waddup \N 1 2026-01-30 09:54:07.109207+00 2026-01-30 02:01:09.492565+00 1485 \N google ChZDSUhNMG9nS0VJQ0FnSURoaVo2d0t3EAE unknown {"text": "Really fun place did a few 180 tough, and really funny and good personel", "author": "Casper Davidsson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoaVo2d0t3EAE", "timestamp": "2 years ago"} Really fun place did a few 180 tough, and really funny and good personel 5 2024-01-31 01:52:39.833374+00 Casper Davidsson \N 1 2026-01-30 09:54:07.112412+00 2026-01-30 02:01:09.496182+00 1486 \N google ChdDSUhNMG9nS0VJQ0FnSURuLWFYV3lBRRAB unknown {"text": "Outstanding track and karts you'll have a blast", "author": "Steven Lewis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuLWFYV3lBRRAB", "timestamp": "a year ago"} Outstanding track and karts you'll have a blast 5 2025-01-30 01:52:39.833374+00 Steven Lewis \N 1 2026-01-30 09:54:07.11626+00 2026-01-30 02:01:09.501153+00 1487 \N google ChdDSUhNMG9nS0VJQ0FnSUNNaXJUSjhnRRAB unknown {"text": "Perfect time to go is on a Wednesday as it it 2x1 (you pay once and your time gets doubled).", "author": "Sebby Carey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNaXJUSjhnRRAB", "timestamp": "6 years ago"} Perfect time to go is on a Wednesday as it it 2x1 (you pay once and your time gets doubled). 5 2020-02-01 01:52:39.833374+00 Sebby Carey \N 1 2026-01-30 09:54:07.118804+00 2026-01-30 02:01:09.504755+00 1488 \N google ChZDSUhNMG9nS0VJQ0FnSUNudnFEOVpBEAE unknown {"text": "Excellent Go Kart track, friendly staff, excellent location.", "author": "Alan Gemmell", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudnFEOVpBEAE", "timestamp": "a year ago"} Excellent Go Kart track, friendly staff, excellent location. 4 2025-01-30 01:52:39.833374+00 Alan Gemmell \N 1 2026-01-30 09:54:07.124+00 2026-01-30 02:01:09.510888+00 1497 \N google ChdDSUhNMG9nS0VJQ0FnSURBcU9IUDN3RRAB unknown {"text": "Kids loved it. Fairly priced too. Great service", "author": "Carrie Hill", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBcU9IUDN3RRAB", "timestamp": "8 years ago"} Kids loved it. Fairly priced too. Great service 4 2018-02-01 01:52:39.833374+00 Carrie Hill \N 1 2026-01-30 09:54:07.152056+00 2026-01-30 02:01:09.542671+00 1498 \N google Ci9DQUlRQUNvZENodHljRjlvT25Vd1VpMDNZVGxKUlMxclQyVldXVVExVkhaUVpsRRAB unknown {"text": "Fabulous experience", "author": "Julia Griffin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Vd1VpMDNZVGxKUlMxclQyVldXVVExVkhaUVpsRRAB", "timestamp": "3 months ago"} Fabulous experience 5 2025-11-01 01:52:39.833374+00 Julia Griffin \N 1 2026-01-30 09:54:07.157622+00 2026-01-30 02:01:09.548069+00 1499 \N google ChdDSUhNMG9nS0VJQ0FnSURVdU9iUmtRRRAB unknown {"text": "so fun , enjoy it every time I go ! the new board is great :)", "author": "Anya Beetham", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdU9iUmtRRRAB", "timestamp": "6 years ago"} so fun , enjoy it every time I go ! the new board is great :) 5 2020-02-01 01:52:39.833374+00 Anya Beetham \N 1 2026-01-30 09:54:07.1625+00 2026-01-30 02:01:09.552769+00 1500 \N google ChdDSUhNMG9nS0VJQ0FnSURidXJtcjlRRRAB unknown {"text": "Brilliant place, excellent for a family experience", "author": "Patricia Sutton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURidXJtcjlRRRAB", "timestamp": "a year ago"} Brilliant place, excellent for a family experience 5 2025-01-30 01:52:39.833374+00 Patricia Sutton \N 1 2026-01-30 09:54:07.168576+00 2026-01-30 02:01:09.557873+00 1501 \N google ChZDSUhNMG9nS0VJQ0FnSURncHJyTEdnEAE unknown {"text": "Nice, well organized and good track and carts. Good prices also", "author": "Dave van Zundert", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncHJyTEdnEAE", "timestamp": "8 years ago"} Nice, well organized and good track and carts. Good prices also 5 2018-02-01 01:52:39.833374+00 Dave van Zundert \N 1 2026-01-30 09:54:07.171137+00 2026-01-30 02:01:09.562387+00 1502 \N google ChZDSUhNMG9nS0VJQ0FnSUNKb1kyaWRREAE unknown {"text": "Great place,, spotlessly clean and very friendly accommodating staff.", "author": "Lisa Mooney", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKb1kyaWRREAE", "timestamp": "2 years ago"} Great place,, spotlessly clean and very friendly accommodating staff. 5 2024-01-31 01:52:39.833374+00 Lisa Mooney \N 1 2026-01-30 09:54:07.173371+00 2026-01-30 02:01:09.568504+00 1503 \N google ChdDSUhNMG9nS0VJQ0FnSUNValptNmp3RRAB unknown {"text": "Great fun track and good for smaller kids with them having the dual karts.", "author": "John MacDonald", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNValptNmp3RRAB", "timestamp": "6 years ago"} Great fun track and good for smaller kids with them having the dual karts. 5 2020-02-01 01:52:39.833374+00 John MacDonald \N 1 2026-01-30 09:54:07.175541+00 2026-01-30 02:01:09.572034+00 1504 \N google ChdDSUhNMG9nS0VJQ0FnSURRLXZqUnhBRRAB unknown {"text": "Great track. Carts for all ages. Friendly staff.", "author": "David Small", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRLXZqUnhBRRAB", "timestamp": "8 years ago"} Great track. Carts for all ages. Friendly staff. 5 2018-02-01 01:52:39.833374+00 David Small \N 1 2026-01-30 09:54:07.178044+00 2026-01-30 02:01:09.575308+00 1505 \N google ChZDSUhNMG9nS0VJQ0FnSUNSaTY2Vk9REAE unknown {"text": "Great track", "author": "cb2011", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaTY2Vk9REAE", "timestamp": "Edited 2 years ago"} Great track 5 2026-01-30 01:52:39.833374+00 cb2011 \N 1 2026-01-30 09:54:07.182029+00 2026-01-30 02:01:09.577892+00 1506 \N google ChZDSUhNMG9nS0VJQ0FnSUN1bGZIYktREAE unknown {"text": "Good course and all the carts in good order. Friendly staff", "author": "Mark Sowerby", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bGZIYktREAE", "timestamp": "3 years ago"} Good course and all the carts in good order. Friendly staff 5 2023-01-31 01:52:39.833374+00 Mark Sowerby \N 1 2026-01-30 09:54:07.184247+00 2026-01-30 02:01:09.581589+00 1507 \N google ChZDSUhNMG9nS0VJQ0FnSURwcl9fX0J3EAE unknown {"text": "Fun but very hard for us old people 😂", "author": "Incognito", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcl9fX0J3EAE", "timestamp": "2 years ago"} Fun but very hard for us old people 😂 4 2024-01-31 01:52:39.833374+00 Incognito \N 1 2026-01-30 09:54:07.187519+00 2026-01-30 02:01:09.585624+00 1508 \N google ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE unknown {"text": "Great fun but expensive at 19 euros for 8 minutes.", "author": "R D", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE", "timestamp": "2 years ago"} Great fun but expensive at 19 euros for 8 minutes. 3 2024-01-31 01:52:39.833374+00 R D \N 1 2026-01-30 09:54:07.192697+00 2026-01-30 02:01:09.591242+00 1509 \N google ChdDSUhNMG9nS0VJQ0FnSURBaWJHUG53RRAB unknown {"text": "Great fun and friendly", "author": "Kelly Ayres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBaWJHUG53RRAB", "timestamp": "7 years ago"} Great fun and friendly 5 2019-02-01 01:52:39.833374+00 Kelly Ayres \N 1 2026-01-30 09:54:07.199824+00 2026-01-30 02:01:09.599327+00 1510 \N google ChdDSUhNMG9nS0VJQ0FnSURnc3NUVjZBRRAB unknown {"text": "Very good track. Lots of different levels of cars to choose from.", "author": "Hoover Damm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnc3NUVjZBRRAB", "timestamp": "8 years ago"} Very good track. Lots of different levels of cars to choose from. 5 2018-02-01 01:52:39.833374+00 Hoover Damm \N 1 2026-01-30 09:54:07.202236+00 2026-01-30 02:01:09.60373+00 1511 \N google ChZDSUhNMG9nS0VJQ0FnSURnaWFTcFhnEAE unknown {"text": "Great track and selection of karts. Good viewing areas and toilets", "author": "Matthew Rason", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnaWFTcFhnEAE", "timestamp": "8 years ago"} Great track and selection of karts. Good viewing areas and toilets 5 2018-02-01 01:52:39.833374+00 Matthew Rason \N 1 2026-01-30 09:54:07.204785+00 2026-01-30 02:01:09.606765+00 1512 \N google ChZDSUhNMG9nS0VJQ0FnSUNZc011d2RBEAE unknown {"text": "Friendly staff. Great track. Go there!", "author": "Jose Albalad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZc011d2RBEAE", "timestamp": "6 years ago"} Friendly staff. Great track. Go there! 5 2020-02-01 01:52:39.833374+00 Jose Albalad \N 1 2026-01-30 09:54:07.208713+00 2026-01-30 02:01:09.608833+00 1513 \N google ChdDSUhNMG9nS0VJQ0FnSURxNXNubWlRRRAB unknown {"text": "Friendly and service minded personal, spend a day here and never brake.", "author": "Fadi Mohsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxNXNubWlRRRAB", "timestamp": "4 years ago"} Friendly and service minded personal, spend a day here and never brake. 5 2022-01-31 01:52:39.833374+00 Fadi Mohsen \N 1 2026-01-30 09:54:07.21337+00 2026-01-30 02:01:09.612414+00 1514 \N google ChdDSUhNMG9nS0VJQ0FnSUNtb3JYLTZ3RRAB unknown {"text": "Great afternoon out, brilliant value and awesome track", "author": "Chris Clarkson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtb3JYLTZ3RRAB", "timestamp": "4 years ago"} Great afternoon out, brilliant value and awesome track 5 2022-01-31 01:52:39.833374+00 Chris Clarkson \N 1 2026-01-30 09:54:07.217613+00 2026-01-30 02:01:09.615932+00 1517 \N google ChdDSUhNMG9nS0VJQ0FnSUNVZzg3U19RRRAB unknown {"text": "Great track and several carts to choose from 100 to 400cc", "author": "Tony Lännbrink", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVZzg3U19RRRAB", "timestamp": "6 years ago"} Great track and several carts to choose from 100 to 400cc 4 2020-02-01 01:52:39.833374+00 Tony Lännbrink \N 1 2026-01-30 09:54:07.225138+00 2026-01-30 02:01:09.625575+00 1518 \N google ChdDSUhNMG9nS0VJQ0FnSUNBMy1UdW1nRRAB unknown {"text": "- fun for all the family and best prices in the area. Vroom Vroom", "author": "Steven Franchi (Big Boy)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMy1UdW1nRRAB", "timestamp": "9 years ago"} - fun for all the family and best prices in the area. Vroom Vroom 5 2017-02-01 01:52:39.833374+00 Steven Franchi (Big Boy) \N 1 2026-01-30 09:54:07.227346+00 2026-01-30 02:01:09.627848+00 1519 \N google ChdDSUhNMG9nS0VJQ0FnSUN4X19EbnpBRRAB unknown {"text": "Nice place to take children big and small xx", "author": "Christine Mcclafferty", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4X19EbnpBRRAB", "timestamp": "2 years ago"} Nice place to take children big and small xx 4 2024-01-31 01:52:39.833374+00 Christine Mcclafferty \N 1 2026-01-30 09:54:07.231285+00 2026-01-30 02:01:09.630787+00 1520 \N google ChZDSUhNMG9nS0VJQ0FnSUM3bktDRVV3EAE unknown {"text": "Very professional good and fast go karts", "author": "Sam Wheeler", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bktDRVV3EAE", "timestamp": "a year ago"} Very professional good and fast go karts 5 2025-01-30 01:52:39.833374+00 Sam Wheeler \N 1 2026-01-30 09:54:07.233864+00 2026-01-30 02:01:09.6334+00 1521 \N google ChdDSUhNMG9nS0VJQ0FnSURReW9LbXFBRRAB unknown {"text": "Who doesnt like a go kart? Top value and fun", "author": "ExzaktSounds (ExzaktSounds)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURReW9LbXFBRRAB", "timestamp": "Edited 9 months ago"} Who doesnt like a go kart? Top value and fun 5 2026-01-30 01:52:39.833374+00 ExzaktSounds (ExzaktSounds) \N 1 2026-01-30 09:54:07.238255+00 2026-01-30 02:01:09.638166+00 1522 \N google ChZDSUhNMG9nS0VJQ0FnSURNbU5PeGZnEAE unknown {"text": "Perfect for 'kids' of all ages. Friendly atmosphere.", "author": "Mary Quiroz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNbU5PeGZnEAE", "timestamp": "6 years ago"} Perfect for 'kids' of all ages. Friendly atmosphere. 5 2020-02-01 01:52:39.833374+00 Mary Quiroz \N 1 2026-01-30 09:54:07.24056+00 2026-01-30 02:01:09.641455+00 1523 \N google ChdDSUhNMG9nS0VJQ0FnSUN1bUoyMXpRRRAB unknown {"text": "Such a fun amazing experience for all the family xxx", "author": "Tasha Taylor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1bUoyMXpRRRAB", "timestamp": "3 years ago"} Such a fun amazing experience for all the family xxx 5 2023-01-31 01:52:39.833374+00 Tasha Taylor \N 1 2026-01-30 09:54:07.243106+00 2026-01-30 02:01:09.645018+00 1524 \N google ChZDSUhNMG9nS0VJQ0FnSUNVMHJ6cElBEAE unknown {"text": "Great place to take the kids but as good for adults", "author": "James Fraser", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMHJ6cElBEAE", "timestamp": "6 years ago"} Great place to take the kids but as good for adults 5 2020-02-01 01:52:39.833374+00 James Fraser \N 1 2026-01-30 09:54:07.246683+00 2026-01-30 02:01:09.647809+00 1525 \N google ChZDSUhNMG9nS0VJQ0FnSUNEdFlyVURnEAE unknown {"text": "Very good value and well organized.", "author": "William Whitelock", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdFlyVURnEAE", "timestamp": "a year ago"} Very good value and well organized. 5 2025-01-30 01:52:39.833374+00 William Whitelock \N 1 2026-01-30 09:54:07.249561+00 2026-01-30 02:01:09.650821+00 1526 \N google ChZDSUhNMG9nS0VJQ0FnSUNjc3ZhVEN3EAE unknown {"text": "Good fun, well organised. Worth a visit.", "author": "Emma Cowie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjc3ZhVEN3EAE", "timestamp": "5 years ago"} Good fun, well organised. Worth a visit. 5 2021-01-31 01:52:39.833374+00 Emma Cowie \N 1 2026-01-30 09:54:07.251942+00 2026-01-30 02:01:09.653494+00 1527 \N google ChZDSUhNMG9nS0VJQ0FnSUQwa3ZmY1NREAE unknown {"text": "Great day out, well organised and nice facilities.", "author": "Sean Kirk", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwa3ZmY1NREAE", "timestamp": "6 years ago"} Great day out, well organised and nice facilities. 5 2020-02-01 01:52:39.833374+00 Sean Kirk \N 1 2026-01-30 09:54:07.254318+00 2026-01-30 02:01:09.655923+00 1528 \N google ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE unknown {"text": "Ideal for kids starting out, you will need a car to get there though", "author": "Kenny Ranson (South Shields Mag)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE", "timestamp": "7 years ago"} Ideal for kids starting out, you will need a car to get there though 5 2019-02-01 01:52:39.833374+00 Kenny Ranson (South Shields Mag) \N 1 2026-01-30 09:54:07.256369+00 2026-01-30 02:01:09.658299+00 1529 \N google ChZDSUhNMG9nS0VJQ0FnSURVc2NDVkhREAE unknown {"text": "We loved it couldn't get Conor of the track", "author": "Colin Fitzpatrick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVc2NDVkhREAE", "timestamp": "6 years ago"} We loved it couldn't get Conor of the track 5 2020-02-01 01:52:39.833374+00 Colin Fitzpatrick \N 1 2026-01-30 09:54:07.258331+00 2026-01-30 02:01:09.660471+00 1530 \N google ChZDSUhNMG9nS0VJQ0FnSUNudWFtSEZBEAE unknown {"text": "Loads of fun at a reasonable price", "author": "Sam Downes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudWFtSEZBEAE", "timestamp": "a year ago"} Loads of fun at a reasonable price 5 2025-01-30 01:52:39.833374+00 Sam Downes \N 1 2026-01-30 09:54:07.260624+00 2026-01-30 02:01:09.663783+00 1531 \N google ChdDSUhNMG9nS0VJQ0FnSURnMEtfajR3RRAB unknown {"text": "This was on my husbands bucket list. He really enjoyed it", "author": "Susan Lamb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnMEtfajR3RRAB", "timestamp": "7 years ago"} This was on my husbands bucket list. He really enjoyed it 5 2019-02-01 01:52:39.833374+00 Susan Lamb \N 1 2026-01-30 09:54:07.2627+00 2026-01-30 02:01:09.667471+00 1532 \N google ChZDSUhNMG9nS0VJQ0FnSURNdDR6LUdnEAE unknown {"text": "Loved it great place fun for all the family", "author": "Christian Fleming", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNdDR6LUdnEAE", "timestamp": "6 years ago"} Loved it great place fun for all the family 5 2020-02-01 01:52:39.833374+00 Christian Fleming \N 1 2026-01-30 09:54:07.264857+00 2026-01-30 02:01:09.670787+00 1533 \N google ChdDSUhNMG9nS0VJQ0FnSUNRNzlhZnNBRRAB unknown {"text": "Fantastic place to take the big kids and even the small kids", "author": "Steven Hall", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNzlhZnNBRRAB", "timestamp": "7 years ago"} Fantastic place to take the big kids and even the small kids 5 2019-02-01 01:52:39.833374+00 Steven Hall \N 1 2026-01-30 09:54:07.268608+00 2026-01-30 02:01:09.674341+00 1534 \N google ChZDSUhNMG9nS0VJQ0FnSUN1b3ZhSFZnEAE unknown {"text": "Love this place visit every year we are over", "author": "Donna Marie O'Neill", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1b3ZhSFZnEAE", "timestamp": "3 years ago"} Love this place visit every year we are over 5 2023-01-31 01:52:39.833374+00 Donna Marie O'Neill \N 1 2026-01-30 09:54:07.270559+00 2026-01-30 02:01:09.676677+00 1536 \N google ChZDSUhNMG9nS0VJQ0FnSURONnQ3OUdnEAE unknown {"text": "Good karts and the track was big and amazing", "author": "Jonas Bleakley", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONnQ3OUdnEAE", "timestamp": "2 years ago"} Good karts and the track was big and amazing 5 2024-01-31 01:52:39.833374+00 Jonas Bleakley \N 1 2026-01-30 09:54:07.27475+00 2026-01-30 02:01:09.681712+00 1537 \N google ChZDSUhNMG9nS0VJQ0FnSURMeThibU9nEAE unknown {"text": "Good price, nice ride.", "author": "Kristo Ruuto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMeThibU9nEAE", "timestamp": "a year ago"} Good price, nice ride. 5 2025-01-30 01:52:39.833374+00 Kristo Ruuto \N 1 2026-01-30 09:54:07.279822+00 2026-01-30 02:01:09.686931+00 1538 \N google ChdDSUhNMG9nS0VJQ0FnSUNZdVpPbTFnRRAB unknown {"text": "Quite loved the experience the go parts were so fast!!!!", "author": "Emma Green", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZdVpPbTFnRRAB", "timestamp": "6 years ago"} Quite loved the experience the go parts were so fast!!!! 5 2020-02-01 01:52:39.833374+00 Emma Green \N 1 2026-01-30 09:54:07.282214+00 2026-01-30 02:01:09.689409+00 1539 \N google ChZDSUhNMG9nS0VJQ0FnSUNZNC1QeU1BEAE unknown {"text": "Nice service, nice track and nice staff. Will be back", "author": "Jan Ivan Engstrøm", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZNC1QeU1BEAE", "timestamp": "6 years ago"} Nice service, nice track and nice staff. Will be back 5 2020-02-01 01:52:39.833374+00 Jan Ivan Engstrøm \N 1 2026-01-30 09:54:07.284708+00 2026-01-30 02:01:09.692002+00 1540 \N google ChdDSUhNMG9nS0VJQ0FnSUNKNUtMZXdnRRAB unknown {"text": "Brilliant evenings fun . For all ages .", "author": "oisin smyth", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKNUtMZXdnRRAB", "timestamp": "2 years ago"} Brilliant evenings fun . For all ages . 5 2024-01-31 01:52:39.833374+00 oisin smyth \N 1 2026-01-30 09:54:07.292749+00 2026-01-30 02:01:09.699896+00 1541 \N google ChdDSUhNMG9nS0VJQ0FnSUM5LVBDTmp3RRAB unknown {"text": "Very good people and very good installations", "author": "Alejandro Baño marin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5LVBDTmp3RRAB", "timestamp": "a year ago"} Very good people and very good installations 5 2025-01-30 01:52:39.833374+00 Alejandro Baño marin \N 1 2026-01-30 09:54:07.294974+00 2026-01-30 02:01:09.704097+00 1542 \N google ChdDSUhNMG9nS0VJQ0FnSUNVOS1LZTBRRRAB unknown {"text": "Great place to go and best prices for the karts by far", "author": "Ritchie Antony John Antony", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVOS1LZTBRRRAB", "timestamp": "6 years ago"} Great place to go and best prices for the karts by far 4 2020-02-01 01:52:39.833374+00 Ritchie Antony John Antony \N 1 2026-01-30 09:54:07.296919+00 2026-01-30 02:01:09.706782+00 1543 \N google ChdDSUhNMG9nS0VJQ0FnSUNZM2FmSTVRRRAB unknown {"text": "Nice outside track. Choice of f300 and f400 karts.", "author": "Stefan Vandevorst", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZM2FmSTVRRRAB", "timestamp": "6 years ago"} Nice outside track. Choice of f300 and f400 karts. 4 2020-02-01 01:52:39.833374+00 Stefan Vandevorst \N 1 2026-01-30 09:54:07.299173+00 2026-01-30 02:01:09.709518+00 1544 \N google ChZDSUhNMG9nS0VJQ0FnSUR5bG9TNVRBEAE unknown {"text": "Great set up, very friendly and helpful.", "author": "Paul Hunter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5bG9TNVRBEAE", "timestamp": "4 years ago"} Great set up, very friendly and helpful. 5 2022-01-31 01:52:39.833374+00 Paul Hunter \N 1 2026-01-30 09:54:07.301864+00 2026-01-30 02:01:09.71269+00 1545 \N google ChZDSUhNMG9nS0VJQ0FnSURVcU42X0VBEAE unknown {"text": "good value for money. kids love it", "author": "Len Waite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcU42X0VBEAE", "timestamp": "6 years ago"} good value for money. kids love it 5 2020-02-01 01:52:39.833374+00 Len Waite \N 1 2026-01-30 09:54:07.305871+00 2026-01-30 02:01:09.718098+00 1546 \N google ChdDSUhNMG9nS0VJQ0FnSUQ2MjcyajdnRRAB unknown {"text": "Superb! Great fun and well organised", "author": "Kerry Pettitt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2MjcyajdnRRAB", "timestamp": "4 years ago"} Superb! Great fun and well organised 5 2022-01-31 01:52:39.833374+00 Kerry Pettitt \N 1 2026-01-30 09:54:07.310187+00 2026-01-30 02:01:09.723312+00 1547 \N google ChZDSUhNMG9nS0VJQ0FnSURndElHU0NREAE unknown {"text": "Fun little go kart track, great for all ages", "author": "Victoria Solarz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndElHU0NREAE", "timestamp": "8 years ago"} Fun little go kart track, great for all ages 5 2018-02-01 01:52:39.833374+00 Victoria Solarz \N 1 2026-01-30 09:54:07.319772+00 2026-01-30 02:01:09.733498+00 1548 \N google ChdDSUhNMG9nS0VJQ0FnSUMtOE5TYzRRRRAB unknown {"text": "Very clean and well organised.", "author": "Helen Thomas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtOE5TYzRRRRAB", "timestamp": "Edited 2 years ago"} Very clean and well organised. 5 2026-01-30 01:52:39.833374+00 Helen Thomas \N 1 2026-01-30 09:54:07.323326+00 2026-01-30 02:01:09.736985+00 1549 \N google ChdDSUhNMG9nS0VJQ0FnSUNBcE9pWGpBRRAB unknown {"text": "Fantastic morning all of us really enjoyed it.", "author": "HYWEL Roberts", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBcE9pWGpBRRAB", "timestamp": "8 years ago"} Fantastic morning all of us really enjoyed it. 5 2018-02-01 01:52:39.833374+00 HYWEL Roberts \N 1 2026-01-30 09:54:07.32641+00 2026-01-30 02:01:09.740009+00 1550 \N google ChZDSUhNMG9nS0VJQ0FnSURNMGRENkh3EAE unknown {"text": "The best go kart place close to Torrevieja.", "author": "Lowe Rönnlund", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNMGRENkh3EAE", "timestamp": "Edited 6 years ago"} The best go kart place close to Torrevieja. 5 2026-01-30 01:52:39.833374+00 Lowe Rönnlund \N 1 2026-01-30 09:54:07.32974+00 2026-01-30 02:01:09.744045+00 1551 \N google ChZDSUhNMG9nS0VJQ0FnSURzLVBpaFJ3EAE unknown {"text": "Reasonable prices, friendly staff.", "author": "XXX XXX", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzLVBpaFJ3EAE", "timestamp": "5 years ago"} Reasonable prices, friendly staff. 5 2021-01-31 01:52:39.833374+00 XXX XXX \N 1 2026-01-30 09:54:07.332611+00 2026-01-30 02:01:09.74772+00 1552 \N google ChZDSUhNMG9nS0VJQ0FnSURRNktIaEZ3EAE unknown {"text": "Great track with very helpful staff", "author": "Paddock Motors", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRNktIaEZ3EAE", "timestamp": "7 years ago"} Great track with very helpful staff 5 2019-02-01 01:52:39.833374+00 Paddock Motors \N 1 2026-01-30 09:54:07.336223+00 2026-01-30 02:01:09.75047+00 1553 \N google ChZDSUhNMG9nS0VJQ0FnSUQwcmJPZ1RREAE unknown {"text": "Very nice employees, nice race track!", "author": "Sjef", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwcmJPZ1RREAE", "timestamp": "6 years ago"} Very nice employees, nice race track! 5 2020-02-01 01:52:39.833374+00 Sjef \N 1 2026-01-30 09:54:07.340548+00 2026-01-30 02:01:09.755251+00 1554 \N google ChZDSUhNMG9nS0VJQ0FnSUNnck1MS0FnEAE unknown {"text": "Very good not busy got straight on", "author": "Spencer Brooks", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnck1MS0FnEAE", "timestamp": "8 years ago"} Very good not busy got straight on 4 2018-02-01 01:52:39.833374+00 Spencer Brooks \N 1 2026-01-30 09:54:07.345125+00 2026-01-30 02:01:09.7611+00 1566 \N google ChZDSUhNMG9nS0VJQ0FnSUNQMklIUUR3EAE unknown {"text": "Excellent track.", "author": "Jerry Ryan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQMklIUUR3EAE", "timestamp": "a year ago"} Excellent track. 5 2025-01-30 01:52:39.833374+00 Jerry Ryan \N 1 2026-01-30 09:54:07.385681+00 2026-01-30 02:01:09.806934+00 1568 \N google ChZDSUhNMG9nS0VJQ0FnSUNCaWNqZ0RREAE unknown {"text": "Very good cars and track!!!!", "author": "noikki 991", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCaWNqZ0RREAE", "timestamp": "3 years ago"} Very good cars and track!!!! 5 2023-01-31 01:52:39.833374+00 noikki 991 \N 1 2026-01-30 09:54:07.392322+00 2026-01-30 02:01:09.815756+00 1569 \N google ChZDSUhNMG9nS0VJQ0FnSUNVcnFla013EAE unknown {"text": "Relaxed atmosphere great fun", "author": "Shane Rowbottom", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVcnFla013EAE", "timestamp": "6 years ago"} Relaxed atmosphere great fun 5 2020-02-01 01:52:39.833374+00 Shane Rowbottom \N 1 2026-01-30 09:54:07.395031+00 2026-01-30 02:01:09.81909+00 1570 \N google ChZDSUhNMG9nS0VJQ0FnSURONklMN2F3EAE unknown {"text": "Just so good.", "author": "Robert McFagan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONklMN2F3EAE", "timestamp": "2 years ago"} Just so good. 5 2024-01-31 01:52:39.833374+00 Robert McFagan \N 1 2026-01-30 09:54:07.398914+00 2026-01-30 02:01:09.824434+00 1571 \N google ChZDSUhNMG9nS0VJQ0FnSUR6cXEtV1B3EAE unknown {"text": "Brilliant day racing", "author": "David Kane", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR6cXEtV1B3EAE", "timestamp": "a year ago"} Brilliant day racing 5 2025-01-30 01:52:39.833374+00 David Kane \N 1 2026-01-30 09:54:07.402873+00 2026-01-30 02:01:09.828662+00 1572 \N google ChZDSUhNMG9nS0VJQ0FnTUNZdFA3OUp3EAE unknown {"text": "Top!!!", "author": "Edyta Teeuwen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZdFA3OUp3EAE", "timestamp": "8 months ago"} Top!!! 5 2025-06-04 00:52:39.833374+00 Edyta Teeuwen \N 1 2026-01-30 09:54:07.410124+00 2026-01-30 02:01:09.837045+00 1573 \N google ChdDSUhNMG9nS0VJQ0FnSUNLMElTay1BRRAB unknown {"text": "Good circuit ,well run", "author": "Mark .MacRae", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElTay1BRRAB", "timestamp": "4 years ago"} Good circuit ,well run 4 2022-01-31 01:52:39.833374+00 Mark .MacRae \N 1 2026-01-30 09:54:07.414233+00 2026-01-30 02:01:09.841827+00 1574 \N google ChZDSUhNMG9nS0VJQ0FnSUNlLVllR01REAE unknown {"text": "Great day", "author": "V V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlLVllR01REAE", "timestamp": "3 years ago"} Great day 5 2023-01-31 01:52:39.833374+00 V V \N 1 2026-01-30 09:54:07.418636+00 2026-01-30 02:01:09.845801+00 1575 \N google ChZDSUhNMG9nS0VJQ0FnSUNVME5tc1dBEAE unknown {"text": "Great for all ages", "author": "Karola McCartan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVME5tc1dBEAE", "timestamp": "6 years ago"} Great for all ages 5 2020-02-01 01:52:39.833374+00 Karola McCartan \N 1 2026-01-30 09:54:07.421243+00 2026-01-30 02:01:09.85035+00 1576 \N google ChZDSUhNMG9nS0VJQ0FnSUR3dk9DN0dnEAE unknown {"text": "Very good karts good track", "author": "Colin Odoherty", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR3dk9DN0dnEAE", "timestamp": "Edited 6 years ago"} Very good karts good track 4 2026-01-30 01:52:39.833374+00 Colin Odoherty \N 1 2026-01-30 09:54:07.425745+00 2026-01-30 02:01:09.857407+00 1577 \N google ChZDSUhNMG9nS0VJQ0FnSUNzOGF5cEZnEAE unknown {"text": "Great fun great place", "author": "john gallop", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzOGF5cEZnEAE", "timestamp": "5 years ago"} Great fun great place 5 2021-01-31 01:52:39.833374+00 john gallop \N 1 2026-01-30 09:54:07.430481+00 2026-01-30 02:01:09.863063+00 1578 \N google ChZDSUhNMG9nS0VJQ0FnSURyblozTGF3EAE unknown {"text": "Best on the coast 😃", "author": "Daniel Bergenhus", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyblozTGF3EAE", "timestamp": "a year ago"} Best on the coast 😃 4 2025-01-30 01:52:39.833374+00 Daniel Bergenhus \N 1 2026-01-30 09:54:07.434272+00 2026-01-30 02:01:09.867268+00 1579 \N google ChdDSUhNMG9nS0VJQ0FnSUQyMDczQnNnRRAB unknown {"text": "Excellent.\\nVery enjoyable.", "author": "Colin Male", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMDczQnNnRRAB", "timestamp": "3 years ago"} Excellent.\nVery enjoyable. 5 2023-01-31 01:52:39.833374+00 Colin Male \N 1 2026-01-30 09:54:07.43964+00 2026-01-30 02:01:09.874211+00 1580 \N google ChdDSUhNMG9nS0VJQ0FnSURVbzV2NjRnRRAB unknown {"text": "Well run and good carts.", "author": "Peter Clark", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbzV2NjRnRRAB", "timestamp": "6 years ago"} Well run and good carts. 5 2020-02-01 01:52:39.833374+00 Peter Clark \N 1 2026-01-30 09:54:07.443336+00 2026-01-30 02:01:09.878854+00 1581 \N google ChZDSUhNMG9nS0VJQ0FnSUN1ZzZhVVdBEAE unknown {"text": "Another great experience", "author": "Phil Bevan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1ZzZhVVdBEAE", "timestamp": "Edited 3 years ago"} Another great experience 5 2026-01-30 01:52:39.833374+00 Phil Bevan \N 1 2026-01-30 09:54:07.447208+00 2026-01-30 02:01:09.881859+00 1582 \N google ChZDSUhNMG9nS0VJQ0FnSUNvNzhlUkt3EAE unknown {"text": "Very good track", "author": "Jose GR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvNzhlUkt3EAE", "timestamp": "6 years ago"} Very good track 5 2020-02-01 01:52:39.833374+00 Jose GR \N 1 2026-01-30 09:54:07.451573+00 2026-01-30 02:01:09.885658+00 1583 \N google ChZDSUhNMG9nS0VJQ0FnSURia3FmLWJnEAE unknown {"text": "Good track", "author": "Mikael Karlstein", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURia3FmLWJnEAE", "timestamp": "a year ago"} Good track 5 2025-01-30 01:52:39.833374+00 Mikael Karlstein \N 1 2026-01-30 09:54:07.455524+00 2026-01-30 02:01:09.888937+00 1584 \N google ChdDSUhNMG9nS0VJQ0FnSUNRdy1ucWlnRRAB unknown {"text": "Good. Would go back.", "author": "Kenneth Macindoe", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRdy1ucWlnRRAB", "timestamp": "8 years ago"} Good. Would go back. 4 2018-02-01 01:52:39.833374+00 Kenneth Macindoe \N 1 2026-01-30 09:54:07.45872+00 2026-01-30 02:01:09.893559+00 1585 \N google ChdDSUhNMG9nS0VJQ0FnSURnbHBtVDdBRRAB unknown {"text": "Great family fun.", "author": "David Schult", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnbHBtVDdBRRAB", "timestamp": "8 years ago"} Great family fun. 5 2018-02-01 01:52:39.833374+00 David Schult \N 1 2026-01-30 09:54:07.46118+00 2026-01-30 02:01:09.896756+00 1586 \N google ChZDSUhNMG9nS0VJQ0FnSURVbmF5Q2J3EAE unknown {"text": "Great fun", "author": "Kim Fishpool", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbmF5Q2J3EAE", "timestamp": "6 years ago"} Great fun 5 2020-02-01 01:52:39.833374+00 Kim Fishpool \N 1 2026-01-30 09:54:07.466495+00 2026-01-30 02:01:09.902431+00 1587 \N google ChdDSUhNMG9nS0VJQ0FnSUNBNzQ2bjJBRRAB unknown {"text": "brilliant and not expensive", "author": "Lynn Eardley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBNzQ2bjJBRRAB", "timestamp": "7 years ago"} brilliant and not expensive 5 2019-02-01 01:52:39.833374+00 Lynn Eardley \N 1 2026-01-30 09:54:07.472053+00 2026-01-30 02:01:09.908093+00 1593 \N google ChdDSUhNMG9nS0VJQ0FnSURyMEtQajVnRRAB unknown {"text": "Great", "author": "tony paxton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyMEtQajVnRRAB", "timestamp": "a year ago"} Great 5 2025-01-30 01:52:39.833374+00 tony paxton \N 1 2026-01-30 09:54:07.504678+00 2026-01-30 02:01:09.950133+00 1594 \N google ChZDSUhNMG9nS0VJQ0FnSURaaXVqYVNBEAE unknown {"text": "Good experience 👌", "author": "paulius patackas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaaXVqYVNBEAE", "timestamp": "2 years ago"} Good experience 👌 5 2024-01-31 01:52:39.833374+00 paulius patackas \N 1 2026-01-30 09:54:07.509706+00 2026-01-30 02:01:09.95581+00 1595 \N google ChZDSUhNMG9nS0VJQ0FnSUMwN05hNE9REAE unknown {"text": "Great day out", "author": "Chris Lewis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwN05hNE9REAE", "timestamp": "6 years ago"} Great day out 5 2020-02-01 01:52:39.833374+00 Chris Lewis \N 1 2026-01-30 09:54:07.511989+00 2026-01-30 02:01:09.960111+00 1596 \N google ChdDSUhNMG9nS0VJQ0FnSUN4djlHcWxRRRAB unknown {"text": "\\"Don't crash\\"", "author": "hib1000", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4djlHcWxRRRAB", "timestamp": "2 years ago"} "Don't crash" 5 2024-01-31 01:52:39.833374+00 hib1000 \N 1 2026-01-30 09:54:07.514112+00 2026-01-30 02:01:09.962693+00 1597 \N google ChdDSUhNMG9nS0VJQ0FnSUNhNktyMzlRRRAB unknown {"text": "Great!", "author": "Niklas Hamrin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNktyMzlRRRAB", "timestamp": "4 years ago"} Great! 5 2022-01-31 01:52:39.833374+00 Niklas Hamrin \N 1 2026-01-30 09:54:07.517008+00 2026-01-30 02:01:09.966077+00 1598 \N google ChdDSUhNMG9nS0VJQ0FnSUNPbXRXUzF3RRAB unknown {"text": "Dpm", "author": "Nuria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPbXRXUzF3RRAB", "timestamp": "3 years ago"} Dpm 5 2023-01-31 01:52:39.833374+00 Nuria \N 1 2026-01-30 09:54:07.529809+00 2026-01-30 02:01:09.982198+00 1599 \N google ChZDSUhNMG9nS0VJQ0FnSUNaenViY0F3EAE unknown {"text": "Excellent", "author": "Paul Thomas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaenViY0F3EAE", "timestamp": "2 years ago"} Excellent 5 2024-01-31 01:52:39.833374+00 Paul Thomas \N 1 2026-01-30 09:54:07.53293+00 2026-01-30 02:01:09.987061+00 1600 \N google ChZDSUhNMG9nS0VJQ0FnSUNVZzl5YURBEAE unknown {"text": "Loved it!", "author": "gill cross", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVZzl5YURBEAE", "timestamp": "6 years ago"} Loved it! 5 2020-02-01 01:52:39.833374+00 gill cross \N 1 2026-01-30 09:54:07.535235+00 2026-01-30 02:01:09.989884+00 1601 \N google ChdDSUhNMG9nS0VJQ0FnSUNBMmRfTWhBRRAB unknown {"text": "Great place :)", "author": "Cathie Williams", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMmRfTWhBRRAB", "timestamp": "7 years ago"} Great place :) 5 2019-02-01 01:52:39.833374+00 Cathie Williams \N 1 2026-01-30 09:54:07.538943+00 2026-01-30 02:01:09.993429+00 1602 \N google ChdDSUhNMG9nS0VJQ0FnSUR1d3ZYQXF3RRAB unknown {"text": "Lots of fun", "author": "joe burnam", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1d3ZYQXF3RRAB", "timestamp": "3 years ago"} Lots of fun 5 2023-01-31 01:52:39.833374+00 joe burnam \N 1 2026-01-30 09:54:07.542076+00 2026-01-30 02:01:09.996583+00 1603 \N google ChZDSUhNMG9nS0VJQ0FnSURVNEozeEdBEAE unknown {"text": "Great place.", "author": "James K.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVNEozeEdBEAE", "timestamp": "6 years ago"} Great place. 5 2020-02-01 01:52:39.833374+00 James K. \N 1 2026-01-30 09:54:07.545488+00 2026-01-30 02:01:10.000079+00 1604 \N google ChdDSUhNMG9nS0VJQ0FnSUNRd29IY2l3RRAB unknown {"text": "A lot of fun.", "author": "Lars Christian Oppegaard", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRd29IY2l3RRAB", "timestamp": "7 years ago"} A lot of fun. 4 2019-02-01 01:52:39.833374+00 Lars Christian Oppegaard \N 1 2026-01-30 09:54:07.547583+00 2026-01-30 02:01:10.002434+00 1605 \N google ChdDSUhNMG9nS0VJQ0FnSURPNjlUZjNnRRAB unknown {"text": "Top", "author": "Alex Soetekouw", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNjlUZjNnRRAB", "timestamp": "3 years ago"} Top 5 2023-01-31 01:52:39.833374+00 Alex Soetekouw \N 1 2026-01-30 09:54:07.549888+00 2026-01-30 02:01:10.005154+00 1606 \N google ChZDSUhNMG9nS0VJQ0FnSUQ0Z1BteU93EAE unknown {"text": "Fabulous morning", "author": "Sara Cross", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0Z1BteU93EAE", "timestamp": "6 years ago"} Fabulous morning 5 2020-02-01 01:52:39.833374+00 Sara Cross \N 1 2026-01-30 09:54:07.552679+00 2026-01-30 02:01:10.008574+00 1607 \N google ChZDSUhNMG9nS0VJQ0FnSURROFlHcFZnEAE unknown {"text": "Awesome Place", "author": "Steve Sumner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURROFlHcFZnEAE", "timestamp": "8 years ago"} Awesome Place 5 2018-02-01 01:52:39.833374+00 Steve Sumner \N 1 2026-01-30 09:54:07.557346+00 2026-01-30 02:01:10.013456+00 1608 \N google ChZDSUhNMG9nS0VJQ0FnSUMwMktMd1N3EAE unknown {"text": "great course", "author": "mark Dee", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMktMd1N3EAE", "timestamp": "6 years ago"} great course 5 2020-02-01 01:52:39.833374+00 mark Dee \N 1 2026-01-30 09:54:07.562756+00 2026-01-30 02:01:10.021282+00 1609 \N google ChZDSUhNMG9nS0VJQ0FnSURReHZUX0pBEAE unknown {"text": ":-D", "author": "Tomas Johansson", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURReHZUX0pBEAE", "timestamp": "10 years ago"} :-D 3 2016-02-02 01:52:39.833374+00 Tomas Johansson \N 1 2026-01-30 09:54:07.56643+00 2026-01-30 02:01:10.026939+00 1619 \N google Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB unknown {"text": "Побывали всей семьей! Классная атмосфера, невероятные эмоции, хотим приехать снова!", "author": "Ольга Авдей", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB", "timestamp": "6 months ago"} Побывали всей семьей! Классная атмосфера, невероятные эмоции, хотим приехать снова! 5 2025-08-03 00:52:39.833374+00 Ольга Авдей \N 1 2026-01-30 09:54:07.59897+00 2026-01-30 02:01:10.061332+00 1329 \N google Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB unknown {"text": "Been here 2 times now in the evening, always very busy so you have to wait around an hour before it's your turn if you don't book a timeslot, which is reasonable. The track is pretty good, lots of variety of turns and straights. But I absolutely dislike the karts comfort, I drive the F300 which is pretty quick but once you crash or take short turns and end your turn, I'm always hurt in my back or the insides of my knees (which is in between the fuel tank) because I have a fragile body and I always have a helmet that tilts up in my view so every bump I have to tilt it back down but that's something that the staff can't notice beforehand so I don't blame them. Next time I'll make a reservation and wear something less thin and a smaller helmet that still fits", "author": "Mattias Verlinden", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB", "timestamp": "5 months ago"} Been here 2 times now in the evening, always very busy so you have to wait around an hour before it's your turn if you don't book a timeslot, which is reasonable. The track is pretty good, lots of variety of turns and straights. But I absolutely dislike the karts comfort, I drive the F300 which is pretty quick but once you crash or take short turns and end your turn, I'm always hurt in my back or the insides of my knees (which is in between the fuel tank) because I have a fragile body and I always have a helmet that tilts up in my view so every bump I have to tilt it back down but that's something that the staff can't notice beforehand so I don't blame them. Next time I'll make a reservation and wear something less thin and a smaller helmet that still fits 3 2025-09-02 00:52:39.833374+00 Mattias Verlinden \N 1 2026-01-30 09:54:06.671373+00 2026-01-30 02:01:08.985528+00 1615 \N google Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB unknown {"text": "No le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y lo hemos pasado de lujo instalaciones completísimas el personal super amable y los chicos de pista igual me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en familia!!!!nos vemos pronto gracias por todo", "author": "José Manuel Pereira doblado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB", "timestamp": "3 months ago"} No le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y lo hemos pasado de lujo instalaciones completísimas el personal super amable y los chicos de pista igual me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en familia!!!!nos vemos pronto gracias por todo 5 2025-11-01 01:52:39.833374+00 José Manuel Pereira doblado \N 1 2026-01-30 09:54:07.58501+00 2026-01-30 02:01:10.04739+00 1616 \N google Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB unknown {"text": "Fue mi primera vez en esta pista de karts con una moto Supermoto. La pista está en buenas condiciones y el personal es amable y atento. Las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble.", "author": "Krzysztof Komornicki", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB", "timestamp": "a week ago"} Fue mi primera vez en esta pista de karts con una moto Supermoto. La pista está en buenas condiciones y el personal es amable y atento. Las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble. 5 2026-01-23 01:52:39.833374+00 Krzysztof Komornicki \N 1 2026-01-30 09:54:07.589778+00 2026-01-30 02:01:10.050753+00 1617 \N google Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB unknown {"text": "de todos los kartodromos que he ido, probablemente este sea el mejor. los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me parece que va super rapido y me encanta el layout de la pista. curvas perfectas y muy balanceado. eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en 2018, van mucho mas rapido y te adelantan facil. aun asi si sabes conducir rapido como yo pues no te pasan, solo en rectas. tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis que dar un aumento al chaval.", "author": "aaron hernandez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB", "timestamp": "2 months ago"} de todos los kartodromos que he ido, probablemente este sea el mejor. los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me parece que va super rapido y me encanta el layout de la pista. curvas perfectas y muy balanceado. eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en 2018, van mucho mas rapido y te adelantan facil. aun asi si sabes conducir rapido como yo pues no te pasan, solo en rectas. tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis que dar un aumento al chaval. 5 2025-12-01 01:52:39.833374+00 aaron hernandez \N 1 2026-01-30 09:54:07.593415+00 2026-01-30 02:01:10.053659+00 1618 \N google Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB unknown {"text": "Trato excelente. Circuito muy grande y divertido. Lo pasamos genial", "author": "Virginia Calderon", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB", "timestamp": "5 months ago"} Trato excelente. Circuito muy grande y divertido. Lo pasamos genial 5 2025-09-02 00:52:39.833374+00 Virginia Calderon \N 1 2026-01-30 09:54:07.596995+00 2026-01-30 02:01:10.058941+00 1639 \N google Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB unknown {"text": "Es entrar y ya sabes que vas a sentir pura adrenalina, cada Kart está pensando para que cualquier persona pueda sentir la velocidad, es pura emoción.\\nLos precios también son emocionantes, es que con esa calidad precio que quieres que te diga.\\nHa ido hasta Pedro Acosta (seguramente han ido más personas famosas).\\nEl circuito, que es el más largo de la Región de Murcia, se hacen competiciones de todo tipo(las que se puedan hacer en ese circuito).\\nSi quieres sentir adrenalina pura tienes que venir aquí.", "author": "Hugo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB", "timestamp": "4 months ago"} Es entrar y ya sabes que vas a sentir pura adrenalina, cada Kart está pensando para que cualquier persona pueda sentir la velocidad, es pura emoción.\nLos precios también son emocionantes, es que con esa calidad precio que quieres que te diga.\nHa ido hasta Pedro Acosta (seguramente han ido más personas famosas).\nEl circuito, que es el más largo de la Región de Murcia, se hacen competiciones de todo tipo(las que se puedan hacer en ese circuito).\nSi quieres sentir adrenalina pura tienes que venir aquí. 5 2025-10-02 00:52:39.833374+00 Hugo \N 1 2026-01-30 09:54:07.656277+00 2026-01-30 02:01:10.128172+00 1331 \N google ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB unknown {"text": "Great place to have a laugh and battle your friends on the track. Very good staff and facilities", "author": "Brian Cottrell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB", "timestamp": "8 months ago"} Great place to have a laugh and battle your friends on the track. Very good staff and facilities 5 2025-06-04 00:52:39.833374+00 Brian Cottrell \N 1 2026-01-30 09:54:06.676077+00 2026-01-30 02:01:08.990659+00 1337 \N google ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB unknown {"text": "Friendly folks. They only speak Spanish, but they’ll be happy to let you write down your list of drivers and cars on a piece of paper. In the off season, they can put together a race for the whole family in different car types, even tandem for the little ones. During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars.", "author": "Arthúr Ó", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB", "timestamp": "a year ago"} Friendly folks. They only speak Spanish, but they’ll be happy to let you write down your list of drivers and cars on a piece of paper. In the off season, they can put together a race for the whole family in different car types, even tandem for the little ones. During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars. 5 2025-01-30 01:52:39.833374+00 Arthúr Ó \N 1 2026-01-30 09:54:06.695498+00 2026-01-30 02:01:09.008694+00 1422 \N google ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB unknown {"text": "Great GoKart racing track next to Murcia airport, San Javier. Decent sized track, well laid out and a challenge for novices and experienced 'GoKarters'. They have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young child passenger) the races are segregated as much as possible so the younger, novice riders in 100cc karts and 2 person karts race together. I have tried 200 and 300cc karts and both are great fun. The race marshalls are very quick to deal with any spin offs or breakdowns. The track is about 1km long and a decent time for a 200/300cc kart is around 1 minute per lap so average 60km/hr. Very fast when you are only a few centimetres off the ground ! There is a cafe / bar which serves soft drinks, coffee, wine and beer along with snacks. The staff are friendly and they have a lovely old dog who plods around the bar area. Plenty of free parking next to the track. Enjoy !", "author": "Tomas Thumb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB", "timestamp": "8 years ago"} Great GoKart racing track next to Murcia airport, San Javier. Decent sized track, well laid out and a challenge for novices and experienced 'GoKarters'. They have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young child passenger) the races are segregated as much as possible so the younger, novice riders in 100cc karts and 2 person karts race together. I have tried 200 and 300cc karts and both are great fun. The race marshalls are very quick to deal with any spin offs or breakdowns. The track is about 1km long and a decent time for a 200/300cc kart is around 1 minute per lap so average 60km/hr. Very fast when you are only a few centimetres off the ground ! There is a cafe / bar which serves soft drinks, coffee, wine and beer along with snacks. The staff are friendly and they have a lovely old dog who plods around the bar area. Plenty of free parking next to the track. Enjoy ! 5 2018-02-01 01:52:39.833374+00 Tomas Thumb \N 1 2026-01-30 09:54:06.949543+00 2026-01-30 02:01:09.29586+00 1456 \N google ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE unknown {"text": "Great fun for the children and the adults enjoyed it too! Only criticism was that they don't give you long enough on the track!", "author": "Pauline Memoli", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE", "timestamp": "4 years ago"} Great fun for the children and the adults enjoyed it too! Only criticism was that they don't give you long enough on the track! 4 2022-01-31 01:52:39.833374+00 Pauline Memoli \N 1 2026-01-30 09:54:07.039545+00 2026-01-30 02:01:09.407694+00 1477 \N google ChZDSUhNMG9nS0VJQ0FnSURRaS1XM0FREAE unknown {"text": "Fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plenty of poke. I will be visiting again before I leave fingers crossed.", "author": "peng 917", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRaS1XM0FREAE", "timestamp": "8 years ago"} Fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plenty of poke. I will be visiting again before I leave fingers crossed. 5 2018-02-01 01:52:39.833374+00 peng 917 \N 1 2026-01-30 09:54:07.090487+00 2026-01-30 02:01:09.469823+00 1623 \N google ChdDSUhNMG9nS0VJQ0FnSUQ5czdMMjNBRRAB unknown {"text": "Instalaciones nuevas . Circuito grande con distinto tipo de categorías . Marcador electrónico . Tienes una pequeña cafetería para tomar bebidas q tienen pantallas de seguimiento y mirador hacia el circuito . Disponen de billar y futbolín exterior con mesas .", "author": "Verónica Lirón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5czdMMjNBRRAB", "timestamp": "a year ago"} Instalaciones nuevas . Circuito grande con distinto tipo de categorías . Marcador electrónico . Tienes una pequeña cafetería para tomar bebidas q tienen pantallas de seguimiento y mirador hacia el circuito . Disponen de billar y futbolín exterior con mesas . 5 2025-01-30 01:52:39.833374+00 Verónica Lirón \N 1 2026-01-30 09:54:07.610813+00 2026-01-30 02:01:10.073991+00 1624 \N google Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB unknown {"text": "Tres belle piste de 1100m. Karting tres performants et très bien entretenus. Une très belle ambiance avec des professionnels très compétents", "author": "guy 17", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB", "timestamp": "4 months ago"} Tres belle piste de 1100m. Karting tres performants et très bien entretenus. Une très belle ambiance avec des professionnels très compétents 5 2025-10-02 00:52:39.833374+00 guy 17 \N 1 2026-01-30 09:54:07.614454+00 2026-01-30 02:01:10.078272+00 1625 \N google ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB unknown {"text": "Hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos sin duda. Ahora mi hijo va aquí y le encanta. Es un sitio muy buena y la atención siempre es muy agradable! Nos encanta ir ahí y seguiremos durante muchos años mas 🤩", "author": "april cox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB", "timestamp": "a year ago"} Hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos sin duda. Ahora mi hijo va aquí y le encanta. Es un sitio muy buena y la atención siempre es muy agradable! Nos encanta ir ahí y seguiremos durante muchos años mas 🤩 5 2025-01-30 01:52:39.833374+00 april cox \N 1 2026-01-30 09:54:07.616766+00 2026-01-30 02:01:10.081364+00 1628 \N google Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB unknown {"text": "Richtig genial. Der beste Zeitvertreib in der Umgebung für einen guten Preis. Alles ist Save und ein Mitarbeiter spricht sogar deutsch. Wir fühlten uns gut informiert und sicher.", "author": "Peter Arandt", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB", "timestamp": "3 weeks ago"} Richtig genial. Der beste Zeitvertreib in der Umgebung für einen guten Preis. Alles ist Save und ein Mitarbeiter spricht sogar deutsch. Wir fühlten uns gut informiert und sicher. 5 2026-01-09 01:52:39.833374+00 Peter Arandt \N 1 2026-01-30 09:54:07.625941+00 2026-01-30 02:01:10.088993+00 1338 \N google Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB unknown {"text": "Only 8 minutes racing but track is very good. Very relaxed. Staff helpful. Great family fum.", "author": "Jamie Walker", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB", "timestamp": "4 months ago"} Only 8 minutes racing but track is very good. Very relaxed. Staff helpful. Great family fum. 5 2025-10-02 00:52:39.833374+00 Jamie Walker \N 1 2026-01-30 09:54:06.698883+00 2026-01-30 02:01:09.012229+00 1589 \N google ChdDSUhNMG9nS0VJQ0FnTURJbGFidmlRRRAB unknown {"text": "👌👍👍", "author": "David David", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJbGFidmlRRRAB", "timestamp": "9 months ago"} 👌👍👍 5 2025-05-05 00:52:39.833374+00 David David \N 1 2026-01-30 09:54:07.484924+00 2026-01-30 02:01:09.923351+00 1612 \N google Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB unknown {"text": "Una experiencia divertida y recomiendo en familia o con amigos! Pero con prudencia! Intentad poder participar sin los coches más rápidos el ambiente será más agradable!", "author": "Luis Bernabe", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB", "timestamp": "5 months ago"} Una experiencia divertida y recomiendo en familia o con amigos! Pero con prudencia! Intentad poder participar sin los coches más rápidos el ambiente será más agradable! 4 2025-09-02 00:52:39.833374+00 Luis Bernabe \N 1 2026-01-30 09:54:07.575395+00 2026-01-30 02:01:10.037479+00 1613 \N google Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB unknown {"text": "Si te gustan los karts, esta pista es obligatoria! La mejor pista de karts, servicio, atención, coches, todo!\\nTiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adultos. Varios tipos de coches. Pista muy divertida.\\nCada año repito, y ya son unos cuantos.\\nDiversión asegurada!", "author": "Juan Molina Soler", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB", "timestamp": "5 months ago"} Si te gustan los karts, esta pista es obligatoria! La mejor pista de karts, servicio, atención, coches, todo!\nTiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adultos. Varios tipos de coches. Pista muy divertida.\nCada año repito, y ya son unos cuantos.\nDiversión asegurada! 5 2025-09-02 00:52:39.833374+00 Juan Molina Soler \N 1 2026-01-30 09:54:07.578353+00 2026-01-30 02:01:10.040642+00 1621 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB unknown {"text": "superbe karting pas loin de la mer , super ambiance course adaptée au enfants ( 1 course sur 2 , enfants , adultes )", "author": "Colin Gohorry", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB", "timestamp": "6 months ago"} superbe karting pas loin de la mer , super ambiance course adaptée au enfants ( 1 course sur 2 , enfants , adultes ) 5 2025-08-03 00:52:39.833374+00 Colin Gohorry \N 1 2026-01-30 09:54:07.605704+00 2026-01-30 02:01:10.067454+00 1634 \N google ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE unknown {"text": "Desde bien pequeño a mi hijo Iker le encantan los Karts. Yo creo que empezó con 5 años. De todos los sitios que hemos visitado para que sienta la velocidad, este es de los mejores.\\nCoches en perfecto estado, y lo más importante una pista en condiciones, grande.\\nY el trato es muy bueno.\\nTodos los veranos venimos a 1000 Palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al menos.\\nEn verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente.\\nRecomendable 100% Desde luego nosotros volveremos.", "author": "Angela Vigil Toledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE", "timestamp": "3 years ago"} Desde bien pequeño a mi hijo Iker le encantan los Karts. Yo creo que empezó con 5 años. De todos los sitios que hemos visitado para que sienta la velocidad, este es de los mejores.\nCoches en perfecto estado, y lo más importante una pista en condiciones, grande.\nY el trato es muy bueno.\nTodos los veranos venimos a 1000 Palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al menos.\nEn verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente.\nRecomendable 100% Desde luego nosotros volveremos. 5 2023-01-31 01:52:39.833374+00 Angela Vigil Toledo \N 1 2026-01-30 09:54:07.641924+00 2026-01-30 02:01:10.108319+00 1636 \N google ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE unknown {"text": "Probamos ayer la primera vez y ha sido una muy buena experiencia,las instalaciones están impecables y el personal muy atento y amable en todo momento,los chicos de la pista un 10 también,repetiremos!! Gracias ☺️", "author": "Lucía Sánchez Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE", "timestamp": "a year ago"} Probamos ayer la primera vez y ha sido una muy buena experiencia,las instalaciones están impecables y el personal muy atento y amable en todo momento,los chicos de la pista un 10 también,repetiremos!! Gracias ☺️ 5 2025-01-30 01:52:39.833374+00 Lucía Sánchez Martínez \N 1 2026-01-30 09:54:07.648566+00 2026-01-30 02:01:10.115251+00 1677 \N google ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE unknown {"text": "Pasamos un día estupendo!! Buenas instalaciones y con un bar para tomar algo.\\nRecomendado,nos gustó.", "author": "Cartagenero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE", "timestamp": "3 years ago"} Pasamos un día estupendo!! Buenas instalaciones y con un bar para tomar algo.\nRecomendado,nos gustó. 5 2023-01-31 01:52:39.833374+00 Cartagenero \N 1 2026-01-30 09:54:07.795589+00 2026-01-30 02:01:10.279087+00 1622 \N google ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB unknown {"text": "Un sitio amplio, buena organización. Fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches y muy atentos. El cumpleaños tmb muy bien organizado. La pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos. Tiene terraza exterior y una en la planta de arriba donde se ve la pista entera con detalle. No sé qué más decir, que nos gustó y que volveremos.", "author": "Anna Parens García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB", "timestamp": "3 years ago"} Un sitio amplio, buena organización. Fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches y muy atentos. El cumpleaños tmb muy bien organizado. La pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos. Tiene terraza exterior y una en la planta de arriba donde se ve la pista entera con detalle. No sé qué más decir, que nos gustó y que volveremos. 5 2023-01-31 01:52:39.833374+00 Anna Parens García \N 1 2026-01-30 09:54:07.608236+00 2026-01-30 02:01:10.069796+00 1627 \N google Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB unknown {"text": "Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. No es nada serio, y menos cuando reservé con dias de antelación. No se lo toman muy en serio, independientemente de la temporada que sea.", "author": "Elena Santa", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB", "timestamp": "Edited 5 months ago"} Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. No es nada serio, y menos cuando reservé con dias de antelación. No se lo toman muy en serio, independientemente de la temporada que sea. 1 2026-01-30 01:52:39.833374+00 Elena Santa \N 1 2026-01-30 09:54:07.623853+00 2026-01-30 02:01:10.086603+00 1640 \N google ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE unknown {"text": "Super geile Kart Bahn, Go-Cart. Sehr gutes Strecken Design. Mittwochs doppelte Fahrzeit. Hat Sehr viel Spaß gemacht. Preise für Getränke und Essen (Snacks) sind auch OK. Wir kommen gerne wieder.", "author": "Marcus Neitsch", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE", "timestamp": "5 years ago"} Super geile Kart Bahn, Go-Cart. Sehr gutes Strecken Design. Mittwochs doppelte Fahrzeit. Hat Sehr viel Spaß gemacht. Preise für Getränke und Essen (Snacks) sind auch OK. Wir kommen gerne wieder. 5 2021-01-31 01:52:39.833374+00 Marcus Neitsch \N 1 2026-01-30 09:54:07.658541+00 2026-01-30 02:01:10.131176+00 1643 \N google Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB unknown {"text": "¡Buenísimas máquinas, la verdad! 👍😎 Pero el asfalto deja un poco que desear. 🤔 Se nota bastante deteriorado en algunos tramos. 🚧 Estaría genial que lo arreglaran pronto para disfrutarlo a tope. 💯 ¡A ver si se animan! 💪👏", "author": "Mat_teo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB", "timestamp": "7 months ago"} ¡Buenísimas máquinas, la verdad! 👍😎 Pero el asfalto deja un poco que desear. 🤔 Se nota bastante deteriorado en algunos tramos. 🚧 Estaría genial que lo arreglaran pronto para disfrutarlo a tope. 💯 ¡A ver si se animan! 💪👏 4 2025-07-04 00:52:39.833374+00 Mat_teo \N 1 2026-01-30 09:54:07.671066+00 2026-01-30 02:01:10.142229+00 1644 \N google Ci9DQUlRQUNvZENodHljRjlvT2poYWRtVTRkbnB1WHpCdFJGQk1Tak5SVDBKM1pIYxAB unknown {"text": "Karting génial adapté.\\nAutant pour les adultes , que les enfants.", "author": "Mélissa Estercq", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poYWRtVTRkbnB1WHpCdFJGQk1Tak5SVDBKM1pIYxAB", "timestamp": "5 months ago"} Karting génial adapté.\nAutant pour les adultes , que les enfants. 5 2025-09-02 00:52:39.833374+00 Mélissa Estercq \N 1 2026-01-30 09:54:07.674293+00 2026-01-30 02:01:10.146548+00 1664 \N google Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB unknown {"text": "Muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante y divertido, desde curvas a fondo, rectas largas y curvas cerradas, yo recomiendo ir de noche porque parece que estas en el gran prix de barehin, hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les vendría nada mal, y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando para arriba y ellos la colocaron y me quedo muy buen video, muchas gracias por hacerme disfrutar todos estos años", "author": "Rodrigo Morcuende Soto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB", "timestamp": "6 months ago"} Muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante y divertido, desde curvas a fondo, rectas largas y curvas cerradas, yo recomiendo ir de noche porque parece que estas en el gran prix de barehin, hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les vendría nada mal, y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando para arriba y ellos la colocaron y me quedo muy buen video, muchas gracias por hacerme disfrutar todos estos años 5 2025-08-03 00:52:39.833374+00 Rodrigo Morcuende Soto \N 1 2026-01-30 09:54:07.744307+00 2026-01-30 02:01:10.222511+00 1730 \N google ChdDSUhNMG9nS0VJQ0FnSUM1OFoyVzNRRRAB unknown {"text": "Perfecto para pasar la tarde con amigos! Y tomar luego un refrigerio", "author": "Sara Martinez Gandia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1OFoyVzNRRRAB", "timestamp": "2 years ago"} Perfecto para pasar la tarde con amigos! Y tomar luego un refrigerio 5 2024-01-31 01:52:39.833374+00 Sara Martinez Gandia \N 1 2026-01-30 09:54:07.976024+00 2026-01-30 02:01:10.488024+00 1631 \N google Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB unknown {"text": "El mejor karting el personal es majo, los karts van de lujo y no están capados sin duda un lugar para ir y repetir", "author": "alberto nieto duran", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB", "timestamp": "4 months ago"} El mejor karting el personal es majo, los karts van de lujo y no están capados sin duda un lugar para ir y repetir 5 2025-10-02 00:52:39.833374+00 alberto nieto duran \N 1 2026-01-30 09:54:07.634183+00 2026-01-30 02:01:10.097816+00 1633 \N google Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB unknown {"text": "Las instalaciones están estupendas. Fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un bar bastante grande y muy agradable. Me sorprendió muy favorablemente", "author": "Vanessa Justo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB", "timestamp": "4 months ago"} Las instalaciones están estupendas. Fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un bar bastante grande y muy agradable. Me sorprendió muy favorablemente 5 2025-10-02 00:52:39.833374+00 Vanessa Justo \N 1 2026-01-30 09:54:07.63903+00 2026-01-30 02:01:10.103444+00 1647 \N google Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB unknown {"text": "Muy agradable entretenido para niños y adultos.\\nEl personal muy familiar.\\nMuchas gracias 😊\\nVolveremos.", "author": "Denzel Andrés", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB", "timestamp": "2 months ago"} Muy agradable entretenido para niños y adultos.\nEl personal muy familiar.\nMuchas gracias 😊\nVolveremos. 5 2025-12-01 01:52:39.833374+00 Denzel Andrés \N 1 2026-01-30 09:54:07.683138+00 2026-01-30 02:01:10.154579+00 1648 \N google ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE unknown {"text": "Genial! Lo hemos pasado muy bien. Los coches están en perfecto estado y nos han tratado muy bien. Un circuito en muy buen estado también y buen precio.", "author": "Enrique Martinez Bel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE", "timestamp": "8 years ago"} Genial! Lo hemos pasado muy bien. Los coches están en perfecto estado y nos han tratado muy bien. Un circuito en muy buen estado también y buen precio. 5 2018-02-01 01:52:39.833374+00 Enrique Martinez Bel \N 1 2026-01-30 09:54:07.686825+00 2026-01-30 02:01:10.157964+00 1650 \N google ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE unknown {"text": "Karting sympa, personnel plutôt agréable. Le lieu est joli.\\nPetit bémol le prix est un peu cher le les 8 minutes de circuit et dommage que les biplaces ne puissent pas être avec les karts ''adultes''", "author": "Anaïs Teyssier", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE", "timestamp": "2 years ago"} Karting sympa, personnel plutôt agréable. Le lieu est joli.\nPetit bémol le prix est un peu cher le les 8 minutes de circuit et dommage que les biplaces ne puissent pas être avec les karts ''adultes'' 4 2024-01-31 01:52:39.833374+00 Anaïs Teyssier \N 1 2026-01-30 09:54:07.694941+00 2026-01-30 02:01:10.165578+00 1652 \N google Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB unknown {"text": "Espectacular circuito,y trato inmejorable por parte del personal,sobre todo de Roberto.\\nSin duda volveré a ir !!!", "author": "Francisco Javier Urraco Moreno", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB", "timestamp": "7 months ago"} Espectacular circuito,y trato inmejorable por parte del personal,sobre todo de Roberto.\nSin duda volveré a ir !!! 5 2025-07-04 00:52:39.833374+00 Francisco Javier Urraco Moreno \N 1 2026-01-30 09:54:07.70385+00 2026-01-30 02:01:10.177388+00 1667 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB unknown {"text": "Los mejores karts de toda Murcia! 🚀\\n\\nDesde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionantes carreras y cada vez es mejor que la anterior. La pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción y nos hace sentir la adrenalina al máximo.\\n\\nLo que realmente destaca es el trato del personal. Siempre son amables, atentos y están dispuestos a ayudarnos en todo momento. Nos hacen sentir como en casa, lo que hace que cada visita sea aún más especial. Además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de la velocidad.\\n\\nSi buscas una experiencia divertida y emocionante, no busques más. ¡Definitivamente volveremos el próximo año para seguir con nuestra tradición de carreras! 🏁", "author": "Carlota Elosegui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB", "timestamp": "a year ago"} Los mejores karts de toda Murcia! 🚀\n\nDesde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionantes carreras y cada vez es mejor que la anterior. La pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción y nos hace sentir la adrenalina al máximo.\n\nLo que realmente destaca es el trato del personal. Siempre son amables, atentos y están dispuestos a ayudarnos en todo momento. Nos hacen sentir como en casa, lo que hace que cada visita sea aún más especial. Además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de la velocidad.\n\nSi buscas una experiencia divertida y emocionante, no busques más. ¡Definitivamente volveremos el próximo año para seguir con nuestra tradición de carreras! 🏁 5 2025-01-30 01:52:39.833374+00 Carlota Elosegui \N 1 2026-01-30 09:54:07.754748+00 2026-01-30 02:01:10.233557+00 1675 \N google ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB unknown {"text": "Her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige. En liten bar med refrescos har de også :-) De minste (under 12, 100cc) kan ikke kjøre samtidig med voksne.", "author": "Andreas Hellesøy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB", "timestamp": "Edited a year ago"} Her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige. En liten bar med refrescos har de også :-) De minste (under 12, 100cc) kan ikke kjøre samtidig med voksne. 5 2026-01-30 01:52:39.833374+00 Andreas Hellesøy \N 1 2026-01-30 09:54:07.788851+00 2026-01-30 02:01:10.269627+00 1340 \N google ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE unknown {"text": "Best pitch as of this week\\nThey installed a new timing system this week. You enter your cred and picture is taken for the log. Once you start driving, the lap time comes up on the big screen. If you lead the race, your picture shows up as well. The kids Love it!!\\n\\nSeems to get the fastest times in the morning before the track is too warm. However, when windy, dust is making it a bit slippery. So that makes it the best time to drive in the evening\\n\\nPrices are ok. (cheaper in Norway funny enough :-)).\\n\\nFriendly staff!\\nAC-conditioned room with a view over the track and race monitors.\\n\\nBring some water with you as you get very thirsty in 36 degrees!\\n\\nGood ice cream for sale.\\n\\n55 sec with the F-300 is the time to bit:-)\\n\\nF-200 good for kids\\nF-400 is fun, but Very hard to drive fast! Exhausting.\\nF-300 good fun\\n\\nWill be back!", "author": "Sam Barman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE", "timestamp": "7 years ago"} Best pitch as of this week\nThey installed a new timing system this week. You enter your cred and picture is taken for the log. Once you start driving, the lap time comes up on the big screen. If you lead the race, your picture shows up as well. The kids Love it!!\n\nSeems to get the fastest times in the morning before the track is too warm. However, when windy, dust is making it a bit slippery. So that makes it the best time to drive in the evening\n\nPrices are ok. (cheaper in Norway funny enough :-)).\n\nFriendly staff!\nAC-conditioned room with a view over the track and race monitors.\n\nBring some water with you as you get very thirsty in 36 degrees!\n\nGood ice cream for sale.\n\n55 sec with the F-300 is the time to bit:-)\n\nF-200 good for kids\nF-400 is fun, but Very hard to drive fast! Exhausting.\nF-300 good fun\n\nWill be back! 5 2019-02-01 01:52:39.833374+00 Sam Barman \N 1 2026-01-30 09:54:06.705334+00 2026-01-30 02:01:09.018528+00 1641 \N google ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB unknown {"text": "Una experiencia genial .\\nUn circuito muy cuidado , karts muy bien puestos a punto y un personal tanto pista como recepcion de 10 .\\nSiempre que voy a Los Alcazares es visita obligada .\\nLos F400 una pasada .\\nSi vais por alli no dudeis en acercaos alli para pasar un rato increible.\\nTienen Bar , Wc y todo lo necesario !", "author": "Moi Manrique", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB", "timestamp": "Edited 3 years ago"} Una experiencia genial .\nUn circuito muy cuidado , karts muy bien puestos a punto y un personal tanto pista como recepcion de 10 .\nSiempre que voy a Los Alcazares es visita obligada .\nLos F400 una pasada .\nSi vais por alli no dudeis en acercaos alli para pasar un rato increible.\nTienen Bar , Wc y todo lo necesario ! 5 2026-01-30 01:52:39.833374+00 Moi Manrique \N 1 2026-01-30 09:54:07.662459+00 2026-01-30 02:01:10.135168+00 1646 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB unknown {"text": "Probablemente mi circuito favorito de Murcia. Es mucho más friendly y para todos los públicos que otros en los que he estado. También tiene muy bien organizada toda la zona fuera del circuito.", "author": "Jesús Olmos Soler", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB", "timestamp": "4 months ago"} Probablemente mi circuito favorito de Murcia. Es mucho más friendly y para todos los públicos que otros en los que he estado. También tiene muy bien organizada toda la zona fuera del circuito. 5 2025-10-02 00:52:39.833374+00 Jesús Olmos Soler \N 1 2026-01-30 09:54:07.679395+00 2026-01-30 02:01:10.151926+00 1657 \N google ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB unknown {"text": "De los mejores sitios de karts que he visitado, gente muy amable, buenas medidas de seguridad frente al covid y los coches son una pasada, gran variedad y además él precio es más que correcto.\\nLos F200 son los que utilizamos.\\nRecomendación, si se va por la noche llevar prendas largas, por los mosquitos.", "author": "Holtser", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB", "timestamp": "5 years ago"} De los mejores sitios de karts que he visitado, gente muy amable, buenas medidas de seguridad frente al covid y los coches son una pasada, gran variedad y además él precio es más que correcto.\nLos F200 son los que utilizamos.\nRecomendación, si se va por la noche llevar prendas largas, por los mosquitos. 5 2021-01-31 01:52:39.833374+00 Holtser \N 1 2026-01-30 09:54:07.718122+00 2026-01-30 02:01:10.195055+00 1678 \N google ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB unknown {"text": "Gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular, el circuito genial, las instalaciones de 10 y el personal súper atento. Recomendable 100%. Volveremos", "author": "Xavi Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB", "timestamp": "Edited 3 years ago"} Gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular, el circuito genial, las instalaciones de 10 y el personal súper atento. Recomendable 100%. Volveremos 5 2026-01-30 01:52:39.833374+00 Xavi Lopez \N 1 2026-01-30 09:54:07.79955+00 2026-01-30 02:01:10.283011+00 1695 \N google ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE unknown {"text": "Para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria. Hay que reconocer que el trazado y su estado está muy bien. Rápido, con pianos y escapatorias cuidadas y un mantenimiento habitual de pista considerable que hace disfrutar al rodar por él. Quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados. Le daría un 5 estrellas de no ser por la gerencia. Desde mi punto de vista demasiado obtusos y cuadriculados a la hora de hacer la reserva de carreras. No permiten reservas de menos de 10 personas ni permiten reservar los karts de 400cc para grupos... Ni en días de baja demanda te permiten organizar carreras para grupos de menos de 10 personas. En mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables que favorezcan las experiencias positivas y el agrado de los clientes. A eso le sumamos el mal estado de los karts... Con algunas unidades muy por debajo de las otras, neumáticos gastados y poca revisión de los vehículos... Lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un quiero y no puedo. Aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí.", "author": "Alberto Torrecillas (Al-T)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE", "timestamp": "a year ago"} Para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria. Hay que reconocer que el trazado y su estado está muy bien. Rápido, con pianos y escapatorias cuidadas y un mantenimiento habitual de pista considerable que hace disfrutar al rodar por él. Quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados. Le daría un 5 estrellas de no ser por la gerencia. Desde mi punto de vista demasiado obtusos y cuadriculados a la hora de hacer la reserva de carreras. No permiten reservas de menos de 10 personas ni permiten reservar los karts de 400cc para grupos... Ni en días de baja demanda te permiten organizar carreras para grupos de menos de 10 personas. En mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables que favorezcan las experiencias positivas y el agrado de los clientes. A eso le sumamos el mal estado de los karts... Con algunas unidades muy por debajo de las otras, neumáticos gastados y poca revisión de los vehículos... Lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un quiero y no puedo. Aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí. 4 2025-01-30 01:52:39.833374+00 Alberto Torrecillas (Al-T) \N 1 2026-01-30 09:54:07.859531+00 2026-01-30 02:01:10.341891+00 1341 \N google ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB unknown {"text": "A great place to spend time and have great fun. The track is long and full of turns. Fast go-karts, which further enhances the driving experience and puts a smile on your face 😁", "author": "Marcin Cichoń", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB", "timestamp": "Edited a year ago"} A great place to spend time and have great fun. The track is long and full of turns. Fast go-karts, which further enhances the driving experience and puts a smile on your face 😁 5 2026-01-30 01:52:39.833374+00 Marcin Cichoń \N 1 2026-01-30 09:54:06.707937+00 2026-01-30 02:01:09.021112+00 1357 \N google ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB unknown {"text": "This is the second time I have been here: once with a few friends and this second time with young family. It's been a great experience both times, good value and good service. It's a good track suitable for those new to go karting whilst being suitable for more experienced drivers due to the different power vehicles available. You can buy a drink and have a game of pool here too.", "author": "Michael Reid", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB", "timestamp": "a year ago"} This is the second time I have been here: once with a few friends and this second time with young family. It's been a great experience both times, good value and good service. It's a good track suitable for those new to go karting whilst being suitable for more experienced drivers due to the different power vehicles available. You can buy a drink and have a game of pool here too. 5 2025-01-30 01:52:39.833374+00 Michael Reid \N 1 2026-01-30 09:54:06.756193+00 2026-01-30 02:01:09.092421+00 1654 \N google ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE unknown {"text": "Super tolle Bahn und klasse Karts. Wir sind so begeistert. Mein Sohn hat heute seinen Geburtstag dort gefeiert und er war so glücklich hier. Super netter, freundlicher und hilfsbereiter Mitarbeiter. Wir hatten sehr viel Spaß. Vielen Dank", "author": "Fadil&Carina Kujaj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE", "timestamp": "4 years ago"} Super tolle Bahn und klasse Karts. Wir sind so begeistert. Mein Sohn hat heute seinen Geburtstag dort gefeiert und er war so glücklich hier. Super netter, freundlicher und hilfsbereiter Mitarbeiter. Wir hatten sehr viel Spaß. Vielen Dank 5 2022-01-31 01:52:39.833374+00 Fadil&Carina Kujaj \N 1 2026-01-30 09:54:07.708862+00 2026-01-30 02:01:10.183267+00 1660 \N google Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB unknown {"text": "Mucha gente, pistas llenas, reservar sirve de poco cuando están petados. Pero buen precio y los mejores de la zona y alrededores", "author": "Pedro Saura", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB", "timestamp": "4 months ago"} Mucha gente, pistas llenas, reservar sirve de poco cuando están petados. Pero buen precio y los mejores de la zona y alrededores 3 2025-10-02 00:52:39.833374+00 Pedro Saura \N 1 2026-01-30 09:54:07.727198+00 2026-01-30 02:01:10.205332+00 1661 \N google ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB unknown {"text": "Ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. De eerste keer twee heats in de F400 gereden, welke 110 km/u gaat! Erg gaaf! De tweede keer de rest van het gezin mee genomen. De kinderen reden in de F200 (60 km/u) en mijn vrouw en ik reden in de F300 (80 km/u). Beide keren waren een groots succes!\\n\\n- Het circuit is 1100 meter lang en de lay out is leuk om te rijden\\n- Het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen, rubber, etc.)\\n- Veiligheidsvoorzieningen zijn dik in orde.\\n- De verschillende karts rijden allen prima!\\n- Daarbij hebben de diverse karts ook nog verschillende chassis, zodat er altijd wel een goede match is met je been lengte.\\n- Overige faciliteiten zijn ook zeker prima.\\n- Mooi overzicht op de baan vanaf het terras op het dak van het clubhuis.\\n\\nVolgende vakantie in Spanje gaan we zeker weer!", "author": "Maarten van der Ploeg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB", "timestamp": "3 years ago"} Ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. De eerste keer twee heats in de F400 gereden, welke 110 km/u gaat! Erg gaaf! De tweede keer de rest van het gezin mee genomen. De kinderen reden in de F200 (60 km/u) en mijn vrouw en ik reden in de F300 (80 km/u). Beide keren waren een groots succes!\n\n- Het circuit is 1100 meter lang en de lay out is leuk om te rijden\n- Het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen, rubber, etc.)\n- Veiligheidsvoorzieningen zijn dik in orde.\n- De verschillende karts rijden allen prima!\n- Daarbij hebben de diverse karts ook nog verschillende chassis, zodat er altijd wel een goede match is met je been lengte.\n- Overige faciliteiten zijn ook zeker prima.\n- Mooi overzicht op de baan vanaf het terras op het dak van het clubhuis.\n\nVolgende vakantie in Spanje gaan we zeker weer! 5 2023-01-31 01:52:39.833374+00 Maarten van der Ploeg \N 1 2026-01-30 09:54:07.732982+00 2026-01-30 02:01:10.210269+00 1662 \N google ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB unknown {"text": "Nunca doy un \\" top \\" pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones. Todo cuidado al detalle. ( Mejor reservar antes de ir por si acaso tiene sesión nocturna )", "author": "asadoalhorno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB", "timestamp": "4 years ago"} Nunca doy un " top " pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones. Todo cuidado al detalle. ( Mejor reservar antes de ir por si acaso tiene sesión nocturna ) 5 2022-01-31 01:52:39.833374+00 asadoalhorno \N 1 2026-01-30 09:54:07.738739+00 2026-01-30 02:01:10.21562+00 1663 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB unknown {"text": "No he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están mal.. tienen crono para los corredores y una terraza elevada para los visitantes. Recomendable .", "author": "pelu comur", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB", "timestamp": "4 months ago"} No he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están mal.. tienen crono para los corredores y una terraza elevada para los visitantes. Recomendable . 4 2025-10-02 00:52:39.833374+00 pelu comur \N 1 2026-01-30 09:54:07.741526+00 2026-01-30 02:01:10.218624+00 1665 \N google ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE unknown {"text": "Circuito muy recomendable. Buena categoría F-400 con motores Subaru. :) Buen servicio, mejores mecánicos :)", "author": "GAM3R BAY", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE", "timestamp": "Edited 3 years ago"} Circuito muy recomendable. Buena categoría F-400 con motores Subaru. :) Buen servicio, mejores mecánicos :) 4 2026-01-30 01:52:39.833374+00 GAM3R BAY \N 1 2026-01-30 09:54:07.747406+00 2026-01-30 02:01:10.226963+00 1666 \N google Ci9DQUlRQUNvZENodHljRjlvT2xsa1ltNXNVVXhETm5FMlVVMXhObkYwUmtkU2RHYxAB unknown {"text": "Najlepszy GoKart na którym byliśmy, bardzo polecam, syn bardzo zadowolony.", "author": "Svitlana Ostroushchenko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsa1ltNXNVVXhETm5FMlVVMXhObkYwUmtkU2RHYxAB", "timestamp": "2 months ago"} Najlepszy GoKart na którym byliśmy, bardzo polecam, syn bardzo zadowolony. 5 2025-12-01 01:52:39.833374+00 Svitlana Ostroushchenko \N 1 2026-01-30 09:54:07.74994+00 2026-01-30 02:01:10.229899+00 1361 \N google ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE unknown {"text": "I come here whenever I fly from England to visit family. I’ve traveled the south coast of the UK testing tracks out and coming over to Spain I’ve also tested a few tracks out. This track is by far my favourite. Staff are wonderful and happy to help. I asked if I could pay for 2 sessions and do 16 consecutive minutes instead of 2 sessions of 8 minutes and they had no issue in me doing so. I asked to use the same kart every time I go so I could compare lap times with my previous sessions and they had no issues accommodating that. Will definitely come again and recommend to people", "author": "Kiran Merrick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE", "timestamp": "a year ago"} I come here whenever I fly from England to visit family. I’ve traveled the south coast of the UK testing tracks out and coming over to Spain I’ve also tested a few tracks out. This track is by far my favourite. Staff are wonderful and happy to help. I asked if I could pay for 2 sessions and do 16 consecutive minutes instead of 2 sessions of 8 minutes and they had no issue in me doing so. I asked to use the same kart every time I go so I could compare lap times with my previous sessions and they had no issues accommodating that. Will definitely come again and recommend to people 5 2025-01-30 01:52:39.833374+00 Kiran Merrick \N 1 2026-01-30 09:54:06.767968+00 2026-01-30 02:01:09.104037+00 1669 \N google ChdDSUhNMG9nS0VJQ0FnSUNtbjd1UXpnRRAB unknown {"text": "Mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc tot 400cc. vanaf 16 jaar.", "author": "Etienne Claessens", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtbjd1UXpnRRAB", "timestamp": "4 years ago"} Mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc tot 400cc. vanaf 16 jaar. 5 2022-01-31 01:52:39.833374+00 Etienne Claessens \N 1 2026-01-30 09:54:07.76195+00 2026-01-30 02:01:10.240282+00 1670 \N google Ci9DQUlRQUNvZENodHljRjlvT2xSNmRYbG9MWFZLVGw4ME9GSjFXRkl6UWpoSU4zYxAB unknown {"text": "Un buen sitio para llevar a los peques y hacer una actividad diferente.", "author": "Mariela Delgado", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSNmRYbG9MWFZLVGw4ME9GSjFXRkl6UWpoSU4zYxAB", "timestamp": "6 months ago"} Un buen sitio para llevar a los peques y hacer una actividad diferente. 4 2025-08-03 00:52:39.833374+00 Mariela Delgado \N 1 2026-01-30 09:54:07.764664+00 2026-01-30 02:01:10.243203+00 1671 \N google ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB unknown {"text": "Un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares, nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera , lo recomiendo, te lo pasas genial y acabas entre risas y encima puedes tomar algo en la cantina, los cars y el circuito están muy bien.", "author": "Abraham S.S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB", "timestamp": "a year ago"} Un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares, nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera , lo recomiendo, te lo pasas genial y acabas entre risas y encima puedes tomar algo en la cantina, los cars y el circuito están muy bien. 5 2025-01-30 01:52:39.833374+00 Abraham S.S. \N 1 2026-01-30 09:54:07.767018+00 2026-01-30 02:01:10.245855+00 1672 \N google ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE unknown {"text": "Proper circuit, alles prima verzorgd, de karts ook tip top in orde\\nKeuze uit :\\nKids-Kart / Duokart / 200cc / 300cc / 400cc\\nKinderen vanaf 12jaar kunnen in 200cc al karten 👌", "author": "Tim Pisane", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE", "timestamp": "a year ago"} Proper circuit, alles prima verzorgd, de karts ook tip top in orde\nKeuze uit :\nKids-Kart / Duokart / 200cc / 300cc / 400cc\nKinderen vanaf 12jaar kunnen in 200cc al karten 👌 4 2025-01-30 01:52:39.833374+00 Tim Pisane \N 1 2026-01-30 09:54:07.770947+00 2026-01-30 02:01:10.249855+00 1673 \N google ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB unknown {"text": "Los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos, que disponen de una carrera de clasificación y carrera después para ver el ganador. La atención al cliente es buena, el ambiente es agradable y cómodo.", "author": "Lucia Rodríguez Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB", "timestamp": "2 years ago"} Los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos, que disponen de una carrera de clasificación y carrera después para ver el ganador. La atención al cliente es buena, el ambiente es agradable y cómodo. 5 2024-01-31 01:52:39.833374+00 Lucia Rodríguez Martinez \N 1 2026-01-30 09:54:07.773489+00 2026-01-30 02:01:10.252648+00 1674 \N google ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE unknown {"text": "Espectacular!! Un gran circuito de Karts con cantidad y variedad de coches. Zona de cantina con aire acondicionado.", "author": "Jose Luis Lopez Baños", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE", "timestamp": "3 years ago"} Espectacular!! Un gran circuito de Karts con cantidad y variedad de coches. Zona de cantina con aire acondicionado. 5 2023-01-31 01:52:39.833374+00 Jose Luis Lopez Baños \N 1 2026-01-30 09:54:07.776431+00 2026-01-30 02:01:10.255961+00 1980 \N google ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE unknown {"text": "Super kartbaan vriendelijke mensen lekkere koffie", "author": "hanane massoudi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE", "timestamp": "7 years ago"} Super kartbaan vriendelijke mensen lekkere koffie 5 2019-02-01 01:52:39.833374+00 hanane massoudi \N 1 2026-01-30 09:54:08.906607+00 2026-01-30 02:01:11.524016+00 1381 \N google review_73 unknown {"text": "Brought my family here a couple of times at Christmas and it was so much fun! Great for all ages and especially those looking for adventure! The staff are friendly and the helmets and go karts cleaned after every use. Minimal waiting times …", "author": "Julie McAllister", "rating": 5, "source": "dom", "timestamp": "3 years ago"} Brought my family here a couple of times at Christmas and it was so much fun! Great for all ages and especially those looking for adventure! The staff are friendly and the helmets and go karts cleaned after every use. Minimal waiting times … 5 2023-01-31 01:52:39.833374+00 Julie McAllister \N 1 2026-01-30 09:54:06.834408+00 2026-01-30 02:01:09.167252+00 1680 \N google ChdDSUhNMG9nS0VJQ0FnTUNBdGZDRTVRRRAB unknown {"text": "Muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!!", "author": "Javier Aguilar Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBdGZDRTVRRRAB", "timestamp": "11 months ago"} Muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!! 5 2025-03-06 01:52:39.833374+00 Javier Aguilar Pérez \N 1 2026-01-30 09:54:07.807653+00 2026-01-30 02:01:10.289846+00 1682 \N google Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB unknown {"text": "Muy bonita pista de carreras, pero nada más. Los karts están en mal estado, y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático!", "author": "Henk Verfaillie", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB", "timestamp": "5 months ago"} Muy bonita pista de carreras, pero nada más. Los karts están en mal estado, y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático! 1 2025-09-02 00:52:39.833374+00 Henk Verfaillie \N 1 2026-01-30 09:54:07.812989+00 2026-01-30 02:01:10.295798+00 1683 \N google ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB unknown {"text": "Zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. Netjes geregeld alle materiaal ontsmet en wij waren met z'n 3en in de baan dus alle tujd en ruimte. Leuk parcourt met bochten en lekker in de buitenlucht. We gaan zeker nog eens.", "author": "Marianna Hop", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB", "timestamp": "4 years ago"} Zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. Netjes geregeld alle materiaal ontsmet en wij waren met z'n 3en in de baan dus alle tujd en ruimte. Leuk parcourt met bochten en lekker in de buitenlucht. We gaan zeker nog eens. 5 2022-01-31 01:52:39.833374+00 Marianna Hop \N 1 2026-01-30 09:54:07.816893+00 2026-01-30 02:01:10.299709+00 1686 \N google ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE unknown {"text": "Gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado. Personal muy amable y buenos precios en la cafetería.", "author": "Adrian Lucian Caleap", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE", "timestamp": "5 years ago"} Gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado. Personal muy amable y buenos precios en la cafetería. 5 2021-01-31 01:52:39.833374+00 Adrian Lucian Caleap \N 1 2026-01-30 09:54:07.828644+00 2026-01-30 02:01:10.310877+00 1687 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB unknown {"text": "Honnêtement je met 1 étoile 18 euros les 8 minutes . A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez", "author": "Fred Mayhem", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB", "timestamp": "6 months ago"} Honnêtement je met 1 étoile 18 euros les 8 minutes . A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez 1 2025-08-03 00:52:39.833374+00 Fred Mayhem \N 1 2026-01-30 09:54:07.831328+00 2026-01-30 02:01:10.313946+00 1688 \N google Ci9DQUlRQUNvZENodHljRjlvT2tKU2IyZ3RTR3d3WldwTGJXbDZWM1ZtVVhJNWJHYxAB unknown {"text": "10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc", "author": "Mr Galio", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKU2IyZ3RTR3d3WldwTGJXbDZWM1ZtVVhJNWJHYxAB", "timestamp": "5 months ago"} 10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc 5 2025-09-02 00:52:39.833374+00 Mr Galio \N 1 2026-01-30 09:54:07.835873+00 2026-01-30 02:01:10.318713+00 1731 \N google ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE unknown {"text": "El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los karts y reírse de los grupos de amigos (especialmente de las mujeres) que corren porque ellos se creen mucho mejores conductores y un supuesto jefe de la pista que da vergüenza que trabaje de cara al publico con la poca consideración y educación que tiene (por no recalcar sus deplorables actitudes machistas). Muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad y delimitarme esta misma, un paseo en una barca del retiro seguro que hubiese sido muchísimo mas emocionante. Ya se a que sitio no volver y no recomendar jamas!", "author": "Luisa Rodríguez Tomás", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE", "timestamp": "a year ago"} El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los karts y reírse de los grupos de amigos (especialmente de las mujeres) que corren porque ellos se creen mucho mejores conductores y un supuesto jefe de la pista que da vergüenza que trabaje de cara al publico con la poca consideración y educación que tiene (por no recalcar sus deplorables actitudes machistas). Muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad y delimitarme esta misma, un paseo en una barca del retiro seguro que hubiese sido muchísimo mas emocionante. Ya se a que sitio no volver y no recomendar jamas! 1 2025-01-30 01:52:39.833374+00 Luisa Rodríguez Tomás \N 1 2026-01-30 09:54:07.979983+00 2026-01-30 02:01:10.491676+00 1801 \N google ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB unknown {"text": "Es la tercera vez que voy. Pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera vuelta se rompió los frenos, si, del todo. Mala suerte? Quizás. les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera vez que he tenido problemas con ellos.", "author": "Luis Felipe Alburquerque Briganti", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB", "timestamp": "6 years ago"} Es la tercera vez que voy. Pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera vuelta se rompió los frenos, si, del todo. Mala suerte? Quizás. les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera vez que he tenido problemas con ellos. 3 2020-02-01 01:52:39.833374+00 Luis Felipe Alburquerque Briganti \N 1 2026-01-30 09:54:08.205377+00 2026-01-30 02:01:10.745723+00 1691 \N google Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB unknown {"text": "Personal encantador y muy amables. Instalaciones bien cuidadas. Circuito muy entretenido. Buen sitio para pasar un buen rato.", "author": "ICP", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB", "timestamp": "7 months ago"} Personal encantador y muy amables. Instalaciones bien cuidadas. Circuito muy entretenido. Buen sitio para pasar un buen rato. 5 2025-07-04 00:52:39.833374+00 ICP \N 1 2026-01-30 09:54:07.847355+00 2026-01-30 02:01:10.328018+00 1692 \N google Ci9DQUlRQUNvZENodHljRjlvT25FemVHNXBhbWxxYWw4NU5YaDVOVkUxVnkxa04zYxAB unknown {"text": "Fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los F200 y una gran experiencia, salió superfeliz", "author": "Javier Rivas Curto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FemVHNXBhbWxxYWw4NU5YaDVOVkUxVnkxa04zYxAB", "timestamp": "6 months ago"} Fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los F200 y una gran experiencia, salió superfeliz 5 2025-08-03 00:52:39.833374+00 Javier Rivas Curto \N 1 2026-01-30 09:54:07.849998+00 2026-01-30 02:01:10.331672+00 1693 \N google ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB unknown {"text": "No le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó un poco los tiempos, pero entiendo que la apuren, por lo demás estaba todo bien mantenido y pasamos buena tarde.", "author": "versys detailer", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB", "timestamp": "2 years ago"} No le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó un poco los tiempos, pero entiendo que la apuren, por lo demás estaba todo bien mantenido y pasamos buena tarde. 4 2024-01-31 01:52:39.833374+00 versys detailer \N 1 2026-01-30 09:54:07.852827+00 2026-01-30 02:01:10.334224+00 1694 \N google Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB unknown {"text": "Le pongo una estrella porque no se lo puede poner menos, los empleados le hablan mal a los corredores y encima te controlan el kart en pista como les dé la gana, si quieres pagar para que los empleados te griten y te controlen el kart como les dé la gana, este es tu sitio ideal.", "author": "Miguel Ruiz Viedma", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB", "timestamp": "6 months ago"} Le pongo una estrella porque no se lo puede poner menos, los empleados le hablan mal a los corredores y encima te controlan el kart en pista como les dé la gana, si quieres pagar para que los empleados te griten y te controlen el kart como les dé la gana, este es tu sitio ideal. 1 2025-08-03 00:52:39.833374+00 Miguel Ruiz Viedma \N 1 2026-01-30 09:54:07.856196+00 2026-01-30 02:01:10.337556+00 1696 \N google ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE unknown {"text": "Llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiempo que siempre hace en la zona, lo cuidado que está todo...\\n\\nSin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, restaurante, es un complejo muy completo tanto para si vas a rodar, como si vas a ver a los tuyos rodar!!\\n\\n¡Parada obligatoria sin duda!", "author": "Bernardo Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE", "timestamp": "11 months ago"} Llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiempo que siempre hace en la zona, lo cuidado que está todo...\n\nSin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, restaurante, es un complejo muy completo tanto para si vas a rodar, como si vas a ver a los tuyos rodar!!\n\n¡Parada obligatoria sin duda! 5 2025-03-06 01:52:39.833374+00 Bernardo Pérez \N 1 2026-01-30 09:54:07.862186+00 2026-01-30 02:01:10.345043+00 1697 \N google ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB unknown {"text": "Gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos.\\nTienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final te luce 🫶🏼", "author": "Seve Conesa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB", "timestamp": "3 years ago"} Gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos.\nTienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final te luce 🫶🏼 5 2023-01-31 01:52:39.833374+00 Seve Conesa \N 1 2026-01-30 09:54:07.865197+00 2026-01-30 02:01:10.348235+00 1751 \N google ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB unknown {"text": "Muy bueno el servicio, los karts en muy buen estado", "author": "Oswaldo rene Sierra martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB", "timestamp": "a year ago"} Muy bueno el servicio, los karts en muy buen estado 5 2025-01-30 01:52:39.833374+00 Oswaldo rene Sierra martinez \N 1 2026-01-30 09:54:08.04917+00 2026-01-30 02:01:10.565835+00 1803 \N google ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE unknown {"text": "Inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran imprudencia por parte de la empresa que solo se explica por el afán recaudatorio dada la cantidad de usuarios que se concentra un domingo por la tarde. Te encuentras constantemente con karts que te están adelantando con el riesgo de choque que ello conlleva. De hecho mi hija de 15 años tuvo un choque con un kart que se quedó cruzado en mitad de la pista y que no pudo sortear. Resultado tras visitar Urgencias: 3 días de reposo absoluto debido al fuerte traumatismo producido en los 2 tobillos.", "author": "Francisco Ginés González", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE", "timestamp": "2 years ago"} Inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran imprudencia por parte de la empresa que solo se explica por el afán recaudatorio dada la cantidad de usuarios que se concentra un domingo por la tarde. Te encuentras constantemente con karts que te están adelantando con el riesgo de choque que ello conlleva. De hecho mi hija de 15 años tuvo un choque con un kart que se quedó cruzado en mitad de la pista y que no pudo sortear. Resultado tras visitar Urgencias: 3 días de reposo absoluto debido al fuerte traumatismo producido en los 2 tobillos. 1 2024-01-31 01:52:39.833374+00 Francisco Ginés González \N 1 2026-01-30 09:54:08.211066+00 2026-01-30 02:01:10.753014+00 1406 \N google ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB unknown {"text": "It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednesdays to each customer, but didn't allow a single parent a chance to make ONE lap with his 2nd child instead of all those extra 8 minutes!!?!! A single parent raced for about 6 minutes with one child and had more than 8 minutes left. He asked to give a 2nd child a chance to do just ONE lap (with same parent) and you refused. We had to pay for a new ticket worth 16 minutes to do ONE lap with 2nd child. Absurd! It's a great shame to your business and managers or owners of this venue. We will not return to your venue and will tell everyone we know the same if you do not put this right. I understand there are rules, but this situation was so absurd that there are no words for it...but shame on you.", "author": "Iveta", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB", "timestamp": "3 years ago"} It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednesdays to each customer, but didn't allow a single parent a chance to make ONE lap with his 2nd child instead of all those extra 8 minutes!!?!! A single parent raced for about 6 minutes with one child and had more than 8 minutes left. He asked to give a 2nd child a chance to do just ONE lap (with same parent) and you refused. We had to pay for a new ticket worth 16 minutes to do ONE lap with 2nd child. Absurd! It's a great shame to your business and managers or owners of this venue. We will not return to your venue and will tell everyone we know the same if you do not put this right. I understand there are rules, but this situation was so absurd that there are no words for it...but shame on you. 1 2023-01-31 01:52:39.833374+00 Iveta \N 1 2026-01-30 09:54:06.903485+00 2026-01-30 02:01:09.243418+00 1413 \N google ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE unknown {"text": "Nice location, a variety of different effects in the motors. Maybe a longer straight to be able to fully use the effects of the faster cars. I think U will leave pleased- Enjoy!", "author": "Rikard Eklund", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE", "timestamp": "2 years ago"} Nice location, a variety of different effects in the motors. Maybe a longer straight to be able to fully use the effects of the faster cars. I think U will leave pleased- Enjoy! 4 2024-01-31 01:52:39.833374+00 Rikard Eklund \N 1 2026-01-30 09:54:06.92181+00 2026-01-30 02:01:09.265001+00 1700 \N google Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB unknown {"text": "Muy buen lugar para pasar un buen rato, precios razonables, el staff muy majo, te atienden y ayudan. Circuito en muy buenas condiciones y los karts también. Recomendable 100%.", "author": "Cristina Vázquez Borrajo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB", "timestamp": "7 months ago"} Muy buen lugar para pasar un buen rato, precios razonables, el staff muy majo, te atienden y ayudan. Circuito en muy buenas condiciones y los karts también. Recomendable 100%. 5 2025-07-04 00:52:39.833374+00 Cristina Vázquez Borrajo \N 1 2026-01-30 09:54:07.874503+00 2026-01-30 02:01:10.358168+00 1701 \N google ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE unknown {"text": "Como siempre muy recomendable, el circuito y no los kart en perfecto estado. Grandes profesionales", "author": "Diego Cruz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE", "timestamp": "4 years ago"} Como siempre muy recomendable, el circuito y no los kart en perfecto estado. Grandes profesionales 5 2022-01-31 01:52:39.833374+00 Diego Cruz \N 1 2026-01-30 09:54:07.87693+00 2026-01-30 02:01:10.360943+00 1702 \N google Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB unknown {"text": "Falta más explicación del manejo por parte de los instructores a los niños y más zonas sombreada en la terraza para el público.", "author": "Santi Jiménez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB", "timestamp": "4 months ago"} Falta más explicación del manejo por parte de los instructores a los niños y más zonas sombreada en la terraza para el público. 3 2025-10-02 00:52:39.833374+00 Santi Jiménez \N 1 2026-01-30 09:54:07.879276+00 2026-01-30 02:01:10.363828+00 1703 \N google ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE unknown {"text": "Divertidos\\nHay horas con muy poca gente donde te puedes divertir mucho\\nPrecios razonables\\nMucho aparcamiento", "author": "Joseu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE", "timestamp": "a year ago"} Divertidos\nHay horas con muy poca gente donde te puedes divertir mucho\nPrecios razonables\nMucho aparcamiento 5 2025-01-30 01:52:39.833374+00 Joseu \N 1 2026-01-30 09:54:07.882611+00 2026-01-30 02:01:10.368073+00 1705 \N google ChdDSUhNMG9nS0VJQ0FnSUREMzVpWHRBRRAB unknown {"text": "Supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er zijn duokarts.👌", "author": "Lucien de Winter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREMzVpWHRBRRAB", "timestamp": "a year ago"} Supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er zijn duokarts.👌 5 2025-01-30 01:52:39.833374+00 Lucien de Winter \N 1 2026-01-30 09:54:07.892174+00 2026-01-30 02:01:10.380093+00 1706 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE unknown {"text": "Circuito grande. Los niños lo pasaron muy bien. La única pega es que no pueden compartir circuito niños y adultos.", "author": "Mireia Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE", "timestamp": "a year ago"} Circuito grande. Los niños lo pasaron muy bien. La única pega es que no pueden compartir circuito niños y adultos. 5 2025-01-30 01:52:39.833374+00 Mireia Acosta \N 1 2026-01-30 09:54:07.896103+00 2026-01-30 02:01:10.384853+00 1610 \N google Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB unknown {"text": "Un karting para apto para tora la familia y todo tipo de pilotos.\\nDisponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y exigentes.\\nLa pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duración que van desde los 48 segundos hasta el minuto, dependiendo de la experiencia y el kart elegido para disfrutado. El trazado no es fácil, es técnico y necesita ser estudiado para mejorar los tiempos.\\nEn cuanto a los kart pude probar los F-300 y los F-400. Los primeros destinados a un público más general cumplen su función con creces, te exigen un control minucioso del acelerador para sacarle todo el rendimiento en cada curva y evitar que el motor quede bajo de revoluciones.\\nLos F-400, destinados a un público que busca el siguiente nivel, muy físicos en comparación los F-300, el tacto con el gas debe ser más suave, encontrar el balance perfecto entre gas, freno y volante para un trazado perfecto.\\nSin duda una pista de referencia en el levante.", "author": "Javier Coy", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB", "timestamp": "4 months ago"} Un karting para apto para tora la familia y todo tipo de pilotos.\nDisponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y exigentes.\nLa pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duración que van desde los 48 segundos hasta el minuto, dependiendo de la experiencia y el kart elegido para disfrutado. El trazado no es fácil, es técnico y necesita ser estudiado para mejorar los tiempos.\nEn cuanto a los kart pude probar los F-300 y los F-400. Los primeros destinados a un público más general cumplen su función con creces, te exigen un control minucioso del acelerador para sacarle todo el rendimiento en cada curva y evitar que el motor quede bajo de revoluciones.\nLos F-400, destinados a un público que busca el siguiente nivel, muy físicos en comparación los F-300, el tacto con el gas debe ser más suave, encontrar el balance perfecto entre gas, freno y volante para un trazado perfecto.\nSin duda una pista de referencia en el levante. 5 2025-10-02 00:52:39.833374+00 Javier Coy \N 1 2026-01-30 09:54:07.570046+00 2026-01-30 02:01:10.031538+00 1710 \N google ChdDSUhNMG9nS0VJQ0FnSURld3VhTTdBRRAB unknown {"text": "Todo el personal súper amable!!. Una experiencia genial 100% recomendada y repetiremos seguro!! Mil gracias!!", "author": "Tania Tamargo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURld3VhTTdBRRAB", "timestamp": "3 years ago"} Todo el personal súper amable!!. Una experiencia genial 100% recomendada y repetiremos seguro!! Mil gracias!! 5 2023-01-31 01:52:39.833374+00 Tania Tamargo \N 1 2026-01-30 09:54:07.911612+00 2026-01-30 02:01:10.399608+00 1711 \N google Ci9DQUlRQUNvZENodHljRjlvT2toVU5WbzBWRVJZTVd4R1ltUlBWVlpLZHpKd1VuYxAB unknown {"text": "O experienta unica! Vom mai veni de câte ori vom avea ocazia!", "author": "Carmen Munteanu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toVU5WbzBWRVJZTVd4R1ltUlBWVlpLZHpKd1VuYxAB", "timestamp": "3 months ago"} O experienta unica! Vom mai veni de câte ori vom avea ocazia! 5 2025-11-01 01:52:39.833374+00 Carmen Munteanu \N 1 2026-01-30 09:54:07.914894+00 2026-01-30 02:01:10.403672+00 1712 \N google ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB unknown {"text": "Un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar, eso sí, la diversión no es barata...", "author": "jose luis p.f", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB", "timestamp": "3 years ago"} Un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar, eso sí, la diversión no es barata... 5 2023-01-31 01:52:39.833374+00 jose luis p.f \N 1 2026-01-30 09:54:07.917784+00 2026-01-30 02:01:10.407987+00 1713 \N google ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB unknown {"text": "Excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros", "author": "jose castellanos", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB", "timestamp": "3 years ago"} Excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros 4 2023-01-31 01:52:39.833374+00 jose castellanos \N 1 2026-01-30 09:54:07.920566+00 2026-01-30 02:01:10.411993+00 1714 \N google ChZDSUhNMG9nS0VJQ0FnSUN1bXNTdWN3EAE unknown {"text": "Muy simpático et muy adaptado para los peques!", "author": "Mikael Degeer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bXNTdWN3EAE", "timestamp": "3 years ago"} Muy simpático et muy adaptado para los peques! 5 2023-01-31 01:52:39.833374+00 Mikael Degeer \N 1 2026-01-30 09:54:07.92381+00 2026-01-30 02:01:10.416091+00 1715 \N google ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB unknown {"text": "Para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato", "author": "Jose Maria Vv", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB", "timestamp": "2 years ago"} Para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato 5 2024-01-31 01:52:39.833374+00 Jose Maria Vv \N 1 2026-01-30 09:54:07.928051+00 2026-01-30 02:01:10.419615+00 1716 \N google Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB unknown {"text": "Un karting de 10, todo en muy buenas condiciones, los karts, el circuito... Y además con un buen precio.", "author": "Laura Murillo Santano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB", "timestamp": "5 months ago"} Un karting de 10, todo en muy buenas condiciones, los karts, el circuito... Y además con un buen precio. 5 2025-09-02 00:52:39.833374+00 Laura Murillo Santano \N 1 2026-01-30 09:54:07.932245+00 2026-01-30 02:01:10.422462+00 1718 \N google Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB unknown {"text": "Los karts y la pista es buena pero el personal es malísimo y grosero con los pilotos un sitio pésimo que no recomiendo para nada", "author": "MIGUEL RUIZ", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB", "timestamp": "6 months ago"} Los karts y la pista es buena pero el personal es malísimo y grosero con los pilotos un sitio pésimo que no recomiendo para nada 1 2025-08-03 00:52:39.833374+00 MIGUEL RUIZ \N 1 2026-01-30 09:54:07.938426+00 2026-01-30 02:01:10.42815+00 1719 \N google Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB unknown {"text": "Buen sitio para karting, es un poco caro", "author": "WEH", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB", "timestamp": "4 months ago"} Buen sitio para karting, es un poco caro 4 2025-10-02 00:52:39.833374+00 WEH \N 1 2026-01-30 09:54:07.942745+00 2026-01-30 02:01:10.434076+00 1817 \N google ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB unknown {"text": "Esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 y después 15 personas (8 ajenas). No volveré ni lo recomendaré\\n\\nEn respuesta: Se llamó 2semanas antes y no se reservaba..Esperamos 35 minutos de reloj y luego se fue sumando gente a la sesión sin previo aviso. En el marcador ni se veían los nombres de los 7. Reafirmo no volveré ni recomendaré , también se salió la rueda de un car y el circuito dejaba que desear.", "author": "Nayara", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB", "timestamp": "Edited 3 years ago"} Esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 y después 15 personas (8 ajenas). No volveré ni lo recomendaré\n\nEn respuesta: Se llamó 2semanas antes y no se reservaba..Esperamos 35 minutos de reloj y luego se fue sumando gente a la sesión sin previo aviso. En el marcador ni se veían los nombres de los 7. Reafirmo no volveré ni recomendaré , también se salió la rueda de un car y el circuito dejaba que desear. 1 2026-01-30 01:52:39.833374+00 Nayara \N 1 2026-01-30 09:54:08.251876+00 2026-01-30 02:01:10.807682+00 1630 \N google ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE unknown {"text": "Superleuk circuit👌👍\\nDe track is heel proper en goed onderhouden alsook een nette cafetaria.\\nPrijzen voor de drankjes zijn zeer correct.\\nAfhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc.\\nSuper Fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is.\\nOnze zoon vond het top!\\nTot nog eens 😉", "author": "Dries Kinet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE", "timestamp": "Edited 2 years ago"} Superleuk circuit👌👍\nDe track is heel proper en goed onderhouden alsook een nette cafetaria.\nPrijzen voor de drankjes zijn zeer correct.\nAfhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc.\nSuper Fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is.\nOnze zoon vond het top!\nTot nog eens 😉 5 2026-01-30 01:52:39.833374+00 Dries Kinet \N 1 2026-01-30 09:54:07.631407+00 2026-01-30 02:01:10.094793+00 1681 \N google Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB unknown {"text": "Beste GoKart -Bahn in der Region, liegt zwar etwas außerhalb von Torrevieja, ist aber sehr groß angelegt. Der Preis ist besser als bei den Konkurrenten in Torrevieja.", "author": "Sanny Busse", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB", "timestamp": "5 months ago"} Beste GoKart -Bahn in der Region, liegt zwar etwas außerhalb von Torrevieja, ist aber sehr groß angelegt. Der Preis ist besser als bei den Konkurrenten in Torrevieja. 5 2025-09-02 00:52:39.833374+00 Sanny Busse \N 1 2026-01-30 09:54:07.810397+00 2026-01-30 02:01:10.292851+00 1723 \N google Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB unknown {"text": "Muy buenas intenciones,,los kart van muy bien y el personal te atiende de 10", "author": "Daniel Lareo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB", "timestamp": "3 months ago"} Muy buenas intenciones,,los kart van muy bien y el personal te atiende de 10 5 2025-11-01 01:52:39.833374+00 Daniel Lareo \N 1 2026-01-30 09:54:07.955807+00 2026-01-30 02:01:10.462023+00 1724 \N google ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB unknown {"text": "Muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien y lo encontré seguro y muy profesional me gusto mucho.\\nMe mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia.", "author": "Fabricio Napolitano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB", "timestamp": "10 months ago"} Muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien y lo encontré seguro y muy profesional me gusto mucho.\nMe mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia. 5 2025-04-05 00:52:39.833374+00 Fabricio Napolitano \N 1 2026-01-30 09:54:07.958337+00 2026-01-30 02:01:10.465665+00 1726 \N google Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB unknown {"text": "Experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena.\\nDia perfecto para pasar un buen rato tanto en familia o grupo de amigos", "author": "Maren Oosterhof", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB", "timestamp": "7 months ago"} Experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena.\nDia perfecto para pasar un buen rato tanto en familia o grupo de amigos 5 2025-07-04 00:52:39.833374+00 Maren Oosterhof \N 1 2026-01-30 09:54:07.965545+00 2026-01-30 02:01:10.474438+00 1727 \N google ChdDSUhNMG9nS0VJQ0FnSUNIOUptUWdBRRAB unknown {"text": "Fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para participar, como para pasar un rato tomar unas cervezas, refrescos y picoteo, que es lo que tomemos allí mientras veíamos a las personas participar!", "author": "Jose M Aguilera Palomino", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOUptUWdBRRAB", "timestamp": "a year ago"} Fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para participar, como para pasar un rato tomar unas cervezas, refrescos y picoteo, que es lo que tomemos allí mientras veíamos a las personas participar! 5 2025-01-30 01:52:39.833374+00 Jose M Aguilera Palomino \N 1 2026-01-30 09:54:07.968438+00 2026-01-30 02:01:10.478159+00 1729 \N google Ci9DQUlRQUNvZENodHljRjlvT25GTGQyUjFWWHBSTVVWc1VEUnBjbUZuUkhwWlFXYxAB unknown {"text": "Hay circuitos mucho mejores y con mejor atención al cliente", "author": "Enrique B . G", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GTGQyUjFWWHBSTVVWc1VEUnBjbUZuUkhwWlFXYxAB", "timestamp": "5 months ago"} Hay circuitos mucho mejores y con mejor atención al cliente 1 2025-09-02 00:52:39.833374+00 Enrique B . G \N 1 2026-01-30 09:54:07.973321+00 2026-01-30 02:01:10.484938+00 1858 \N google ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE unknown {"text": "Estupendo mini karts, que parece un circuito de Fórmula Uno por la calidad de sus coches y de las instalaciones. No le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me tocó correr había demasiados coches...no recuerdo exactamente cuántos, peri sí mas de 12, y a veces estaba algo complicado, sobre todo cuando hay mucho Alonso y \\"Shumaker\\" !!!!", "author": "J. U.", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE", "timestamp": "4 years ago"} Estupendo mini karts, que parece un circuito de Fórmula Uno por la calidad de sus coches y de las instalaciones. No le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me tocó correr había demasiados coches...no recuerdo exactamente cuántos, peri sí mas de 12, y a veces estaba algo complicado, sobre todo cuando hay mucho Alonso y "Shumaker" !!!! 4 2022-01-31 01:52:39.833374+00 J. U. \N 1 2026-01-30 09:54:08.480675+00 2026-01-30 02:01:10.963237+00 1876 \N google ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB unknown {"text": "Tras probar varios circuitos de Karts de la Región de Murcia, este es sin duda el mejor por el que he circulado. Sin embargo los Karts no han sido los mejores (aunque no por ello malos). Los que tienen un volante de asas (no sé cómo llamarlo) en vez de uno redondo son bastante incómodos. Por lo demás una experiencia increíble para ir con un grupo de amigos.", "author": "José Javier", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB", "timestamp": "9 years ago"} Tras probar varios circuitos de Karts de la Región de Murcia, este es sin duda el mejor por el que he circulado. Sin embargo los Karts no han sido los mejores (aunque no por ello malos). Los que tienen un volante de asas (no sé cómo llamarlo) en vez de uno redondo son bastante incómodos. Por lo demás una experiencia increíble para ir con un grupo de amigos. 4 2017-02-01 01:52:39.833374+00 José Javier \N 1 2026-01-30 09:54:08.552929+00 2026-01-30 02:01:11.025061+00 1699 \N google ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB unknown {"text": "El personal del circuito es un encanto,los karts siempre a disposición del cliente y lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo.\\nA parte son tan simpáticos que te dejan la gran mayoría de veces unos minutillos más en la pista si no hay gente esperando para entrar.\\nMuy satisfecho,lo recomiendo", "author": "José antonio Mateo olmos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB", "timestamp": "8 months ago"} El personal del circuito es un encanto,los karts siempre a disposición del cliente y lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo.\nA parte son tan simpáticos que te dejan la gran mayoría de veces unos minutillos más en la pista si no hay gente esperando para entrar.\nMuy satisfecho,lo recomiendo 5 2025-06-04 00:52:39.833374+00 José antonio Mateo olmos \N 1 2026-01-30 09:54:07.872163+00 2026-01-30 02:01:10.355348+00 1732 \N google ChZDSUhNMG9nS0VJQ0FnSUNWMS1pdE13EAE unknown {"text": "Buen circuito para pasar un buen rato", "author": "Teo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWMS1pdE13EAE", "timestamp": "2 years ago"} Buen circuito para pasar un buen rato 4 2024-01-31 01:52:39.833374+00 Teo \N 1 2026-01-30 09:54:07.984275+00 2026-01-30 02:01:10.495301+00 1733 \N google ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE unknown {"text": "Circuito muy chulo. Los karts funcionan genial y el personal está muy atento para que todo vaya sobre ruedas.\\nFue una tarde muy divertida. Repetiré seguro.", "author": "Noel Boix", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE", "timestamp": "3 years ago"} Circuito muy chulo. Los karts funcionan genial y el personal está muy atento para que todo vaya sobre ruedas.\nFue una tarde muy divertida. Repetiré seguro. 5 2023-01-31 01:52:39.833374+00 Noel Boix \N 1 2026-01-30 09:54:07.987221+00 2026-01-30 02:01:10.498493+00 1734 \N google Ci9DQUlRQUNvZENodHljRjlvT2tGa09XMTNOM2gzTjFwa1NqbG9VR3RMY1ZBd1VHYxAB unknown {"text": "Estupendo sitio para disfrutar", "author": "Bombom Bombom", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGa09XMTNOM2gzTjFwa1NqbG9VR3RMY1ZBd1VHYxAB", "timestamp": "4 months ago"} Estupendo sitio para disfrutar 5 2025-10-02 00:52:39.833374+00 Bombom Bombom \N 1 2026-01-30 09:54:07.995705+00 2026-01-30 02:01:10.50781+00 1735 \N google Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB unknown {"text": "Atención fenomenal, vehículos en buen estado, circuito seguro, diversión asegurada.", "author": "Luis Miguel Hueva Espinilla", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB", "timestamp": "5 months ago"} Atención fenomenal, vehículos en buen estado, circuito seguro, diversión asegurada. 5 2025-09-02 00:52:39.833374+00 Luis Miguel Hueva Espinilla \N 1 2026-01-30 09:54:08.000151+00 2026-01-30 02:01:10.511038+00 1736 \N google ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE unknown {"text": "Pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando habíamos reservado días de antelación, pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando les estábamos hablando bien, ningún respeto por los clientes.", "author": "Celena N. Gutierrez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE", "timestamp": "11 months ago"} Pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando habíamos reservado días de antelación, pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando les estábamos hablando bien, ningún respeto por los clientes. 1 2025-03-06 01:52:39.833374+00 Celena N. Gutierrez \N 1 2026-01-30 09:54:08.002734+00 2026-01-30 02:01:10.514397+00 1738 \N google Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB unknown {"text": "Schöne weitläufige Kartstrecke mit sehr netten Personal. Gerne wieder.", "author": "Jandro Castillos", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB", "timestamp": "5 months ago"} Schöne weitläufige Kartstrecke mit sehr netten Personal. Gerne wieder. 5 2025-09-02 00:52:39.833374+00 Jandro Castillos \N 1 2026-01-30 09:54:08.007749+00 2026-01-30 02:01:10.520817+00 1739 \N google ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB unknown {"text": "Disfrutamos mucho. Nosngustabir pero los precios son demasiado caros para el tiempo de pista. Es minpercepción. Iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir cada semana", "author": "jose martinez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB", "timestamp": "Edited 5 months ago"} Disfrutamos mucho. Nosngustabir pero los precios son demasiado caros para el tiempo de pista. Es minpercepción. Iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir cada semana 3 2026-01-30 01:52:39.833374+00 jose martinez \N 1 2026-01-30 09:54:08.010186+00 2026-01-30 02:01:10.524101+00 1878 \N google ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE unknown {"text": "Me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras, lástima que me pilla muy lejos de casa y no tengo ninguno más cerca pero éste en cuestión me gusta bastante y es de los mejores que hay, aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también. Muy recomendado para pasar un gran rato entre amigos!!", "author": "Miguel Ángel Gómez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE", "timestamp": "6 years ago"} Me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras, lástima que me pilla muy lejos de casa y no tengo ninguno más cerca pero éste en cuestión me gusta bastante y es de los mejores que hay, aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también. Muy recomendado para pasar un gran rato entre amigos!! 5 2020-02-01 01:52:39.833374+00 Miguel Ángel Gómez \N 1 2026-01-30 09:54:08.558099+00 2026-01-30 02:01:11.031019+00 2352 \N google ChZDSUhNMG9nS0VJQ0FnSURRNTdXb0x3EAE unknown {"text": "Buen lugar para descargar adrenalina", "author": "DANIEL PONCE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRNTdXb0x3EAE", "timestamp": "8 years ago"} Buen lugar para descargar adrenalina 5 2018-02-01 01:52:39.833374+00 DANIEL PONCE \N 1 2026-01-30 09:54:10.210939+00 2026-01-30 02:01:13.09678+00 1704 \N google ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB unknown {"text": "El trato de las trabajadoras hacia los clientes ha sido nefasto, guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas maneras que solo podemos echar una ronda porque cierran pronto y tienen más gente, cuando ya teníamos reserva para tres rondas, que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje. Mala organización y mal trato", "author": "estela garcia", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB", "timestamp": "11 months ago"} El trato de las trabajadoras hacia los clientes ha sido nefasto, guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas maneras que solo podemos echar una ronda porque cierran pronto y tienen más gente, cuando ya teníamos reserva para tres rondas, que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje. Mala organización y mal trato 1 2025-03-06 01:52:39.833374+00 estela garcia \N 1 2026-01-30 09:54:07.88557+00 2026-01-30 02:01:10.372031+00 1709 \N google ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB unknown {"text": "Muy buena pista, ma de un kilómetro de recorrido y muy bien de precio", "author": "Ruben Colomer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB", "timestamp": "7 years ago"} Muy buena pista, ma de un kilómetro de recorrido y muy bien de precio 5 2019-02-01 01:52:39.833374+00 Ruben Colomer \N 1 2026-01-30 09:54:07.907266+00 2026-01-30 02:01:10.395369+00 1717 \N google ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE unknown {"text": "Los monitores muy simpáticos y agradables, los coches para todas las edades y condiciones, la pista e instalaciones muy bien, el precio muy asequible, para pasar un buen rato con los amigos y familiares.", "author": "Alfonso Moreno Alba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE", "timestamp": "6 years ago"} Los monitores muy simpáticos y agradables, los coches para todas las edades y condiciones, la pista e instalaciones muy bien, el precio muy asequible, para pasar un buen rato con los amigos y familiares. 5 2020-02-01 01:52:39.833374+00 Alfonso Moreno Alba \N 1 2026-01-30 09:54:07.935759+00 2026-01-30 02:01:10.425131+00 1744 \N google ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE unknown {"text": "Buen ambiente en el circuito ,karts divertidos de conducir ,equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente .", "author": "Roman Jesus Gonzalez Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE", "timestamp": "11 months ago"} Buen ambiente en el circuito ,karts divertidos de conducir ,equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente . 5 2025-03-06 01:52:39.833374+00 Roman Jesus Gonzalez Fernandez \N 1 2026-01-30 09:54:08.024989+00 2026-01-30 02:01:10.54061+00 1745 \N google ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE unknown {"text": "Experiencia 100% recomendable.\\nEl circuito está genial y el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles.\\nVolveremos!!", "author": "manuel campillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE", "timestamp": "a year ago"} Experiencia 100% recomendable.\nEl circuito está genial y el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles.\nVolveremos!! 5 2025-01-30 01:52:39.833374+00 manuel campillo \N 1 2026-01-30 09:54:08.02746+00 2026-01-30 02:01:10.543856+00 1746 \N google ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE unknown {"text": "Un circuito 10, rápido y muy técnico, los dueños son gente muy cercana y con precios asequibles.", "author": "Fran Avatel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE", "timestamp": "4 years ago"} Un circuito 10, rápido y muy técnico, los dueños son gente muy cercana y con precios asequibles. 5 2022-01-31 01:52:39.833374+00 Fran Avatel \N 1 2026-01-30 09:54:08.030897+00 2026-01-30 02:01:10.546542+00 1747 \N google Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB unknown {"text": "Divertido. Y no es caro. Buen trato", "author": "Domingo García", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB", "timestamp": "4 months ago"} Divertido. Y no es caro. Buen trato 4 2025-10-02 00:52:39.833374+00 Domingo García \N 1 2026-01-30 09:54:08.034898+00 2026-01-30 02:01:10.551026+00 1748 \N google ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB unknown {"text": "Me gustó la experiencia, tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 euros que fue la que elegimos, también dependía de la cilindrada. Incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte. Está bien para echar el rato. Las pistas están bien, los karts como es lógico con las ruedas desgastadas.", "author": "Javier Tinoco Olmos", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB", "timestamp": "a year ago"} Me gustó la experiencia, tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 euros que fue la que elegimos, también dependía de la cilindrada. Incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte. Está bien para echar el rato. Las pistas están bien, los karts como es lógico con las ruedas desgastadas. 4 2025-01-30 01:52:39.833374+00 Javier Tinoco Olmos \N 1 2026-01-30 09:54:08.037355+00 2026-01-30 02:01:10.553949+00 1749 \N google ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB unknown {"text": "Gente muy agradable. Día de equipo muy divertido con comida incluida. Un 10 para echar una jornada de entrenamiento. Recomendado!", "author": "JOSE ANTONIO HERNANDEZ GARCIA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB", "timestamp": "7 years ago"} Gente muy agradable. Día de equipo muy divertido con comida incluida. Un 10 para echar una jornada de entrenamiento. Recomendado! 5 2019-02-01 01:52:39.833374+00 JOSE ANTONIO HERNANDEZ GARCIA \N 1 2026-01-30 09:54:08.039779+00 2026-01-30 02:01:10.557156+00 1750 \N google ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE unknown {"text": "Excelente alternativa para un fin de semana divertido con los amigos. Buen trato del personal", "author": "Coco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE", "timestamp": "3 years ago"} Excelente alternativa para un fin de semana divertido con los amigos. Buen trato del personal 5 2023-01-31 01:52:39.833374+00 Coco \N 1 2026-01-30 09:54:08.045498+00 2026-01-30 02:01:10.562959+00 1632 \N google Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB unknown {"text": "De los mejores karting que he probado, los coches funcionan bien, el trazado es bueno y esta en buenas condiciones, los empleados son simpáticos y están siempre atentos. Pero hay un pequeño problema que es el PRECIO del karting, si solo vas a pasar un rato y no vas a compartir es algo caro y apenas te dan tiempo, aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas personas o no están experimentadas o no tienen ni cuidado ni respeto, por lo demás todo perfecto. Recomendable 👌", "author": "García", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB", "timestamp": "5 months ago"} De los mejores karting que he probado, los coches funcionan bien, el trazado es bueno y esta en buenas condiciones, los empleados son simpáticos y están siempre atentos. Pero hay un pequeño problema que es el PRECIO del karting, si solo vas a pasar un rato y no vas a compartir es algo caro y apenas te dan tiempo, aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas personas o no están experimentadas o no tienen ni cuidado ni respeto, por lo demás todo perfecto. Recomendable 👌 4 2025-09-02 00:52:39.833374+00 García \N 1 2026-01-30 09:54:07.63669+00 2026-01-30 02:01:10.100562+00 1638 \N google ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB unknown {"text": "tolle rennbahn mit schnellen karts für verschiedene leistungsklassen. kleines bistro mit essen und getränke. freundliches und kompetentes personal, gutes preis / leistungsverhältnis. geeignet mit gruppen um eigene renne durchzuführen", "author": "Christian Zuerrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB", "timestamp": "4 years ago"} tolle rennbahn mit schnellen karts für verschiedene leistungsklassen. kleines bistro mit essen und getränke. freundliches und kompetentes personal, gutes preis / leistungsverhältnis. geeignet mit gruppen um eigene renne durchzuführen 5 2022-01-31 01:52:39.833374+00 Christian Zuerrer \N 1 2026-01-30 09:54:07.653217+00 2026-01-30 02:01:10.122141+00 1753 \N google Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB unknown {"text": "Flott bane med godt opplegg. Ikkje så flinke i engelsk.", "author": "Dagrunn Øvregård", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB", "timestamp": "5 months ago"} Flott bane med godt opplegg. Ikkje så flinke i engelsk. 4 2025-09-02 00:52:39.833374+00 Dagrunn Øvregård \N 1 2026-01-30 09:54:08.054635+00 2026-01-30 02:01:10.57375+00 1754 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE unknown {"text": "Sitio para pasar un buen rato y divertirte compitiendo. Tienen vehículos para todas las edades y para personas minusválidas. Por poner un pero... la señora que te recibe y atiende es bastante seca.", "author": "Alicia Rodriguez Iglesias", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE", "timestamp": "a year ago"} Sitio para pasar un buen rato y divertirte compitiendo. Tienen vehículos para todas las edades y para personas minusválidas. Por poner un pero... la señora que te recibe y atiende es bastante seca. 5 2025-01-30 01:52:39.833374+00 Alicia Rodriguez Iglesias \N 1 2026-01-30 09:54:08.057296+00 2026-01-30 02:01:10.577062+00 1755 \N google ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE unknown {"text": "Un circuito lleno de adrenalina siempre super limpio y listo para las carreras para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para llevar el karts así limite al resumir un super circuito y de gente especializada Enel karting", "author": "Javier Fenoll Aledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE", "timestamp": "11 months ago"} Un circuito lleno de adrenalina siempre super limpio y listo para las carreras para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para llevar el karts así limite al resumir un super circuito y de gente especializada Enel karting 5 2025-03-06 01:52:39.833374+00 Javier Fenoll Aledo \N 1 2026-01-30 09:54:08.060775+00 2026-01-30 02:01:10.58079+00 1757 \N google Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB unknown {"text": "Eine sehr tolle kartbahn. Ich konnte hier sogar mit meinem 4 Jährigen Sohn zusammen fahren.", "author": "Henry Borau", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB", "timestamp": "7 months ago"} Eine sehr tolle kartbahn. Ich konnte hier sogar mit meinem 4 Jährigen Sohn zusammen fahren. 5 2025-07-04 00:52:39.833374+00 Henry Borau \N 1 2026-01-30 09:54:08.069112+00 2026-01-30 02:01:10.586345+00 1758 \N google ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE unknown {"text": "Reservamos para un cumpleaños, y nos pusieron todas las facilidades. Son muy majos , sin duda volveremos a ir . Si le hablas por Instagram te responden enseguida, muy atentos.", "author": "Ainhoa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE", "timestamp": "a year ago"} Reservamos para un cumpleaños, y nos pusieron todas las facilidades. Son muy majos , sin duda volveremos a ir . Si le hablas por Instagram te responden enseguida, muy atentos. 5 2025-01-30 01:52:39.833374+00 Ainhoa \N 1 2026-01-30 09:54:08.071854+00 2026-01-30 02:01:10.589647+00 1759 \N google ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB unknown {"text": "Magnifico circuito de karting outdoor con karts de calidad y a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan economico.", "author": "Javi Rios", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB", "timestamp": "6 years ago"} Magnifico circuito de karting outdoor con karts de calidad y a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan economico. 5 2020-02-01 01:52:39.833374+00 Javi Rios \N 1 2026-01-30 09:54:08.074806+00 2026-01-30 02:01:10.593476+00 1845 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0Mk4xQmFWWEZTTldrNVRrbDFlbmR0VldvNVltYxAB unknown {"text": "Fenomenal para una tarde en familia", "author": "Isabel Sánchez Ruiz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0Mk4xQmFWWEZTTldrNVRrbDFlbmR0VldvNVltYxAB", "timestamp": "4 months ago"} Fenomenal para una tarde en familia 5 2025-10-02 00:52:39.833374+00 Isabel Sánchez Ruiz \N 1 2026-01-30 09:54:08.333548+00 2026-01-30 02:01:10.916782+00 1642 \N google Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB unknown {"text": "La pista y los coches muy bien..pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal alos niños sobre todo..porke seve k con los mayores no tiene huevos.y nole dicho nada feo pero ala proxima no creo k se escape k selo explique...... porke yo si tengo educación k el por lo demás bien..asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar cara al público. K se valla al campo a trabajar..por lo demás bien..todo....", "author": "David Esteve", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB", "timestamp": "5 months ago"} La pista y los coches muy bien..pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal alos niños sobre todo..porke seve k con los mayores no tiene huevos.y nole dicho nada feo pero ala proxima no creo k se escape k selo explique...... porke yo si tengo educación k el por lo demás bien..asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar cara al público. K se valla al campo a trabajar..por lo demás bien..todo.... 3 2025-09-02 00:52:39.833374+00 David Esteve \N 1 2026-01-30 09:54:07.666534+00 2026-01-30 02:01:10.138175+00 1763 \N google Ci9DQUlRQUNvZENodHljRjlvT2xaSFJqbHpZM28zTVcxSlFYWnlhMll6Y25sUFFVRRAB unknown {"text": "Sehr gut für Kinder bis 14 Jahren", "author": "W. KREBIL", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaSFJqbHpZM28zTVcxSlFYWnlhMll6Y25sUFFVRRAB", "timestamp": "3 months ago"} Sehr gut für Kinder bis 14 Jahren 5 2025-11-01 01:52:39.833374+00 W. KREBIL \N 1 2026-01-30 09:54:08.085749+00 2026-01-30 02:01:10.604771+00 1766 \N google ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB unknown {"text": "Muy buen circuito para correr y echarse unas risas, muy recomendable.\\nY la cantina también muy bueno todo, sobretodo los granizados de limón.\\nAparte no es muy caro de precio.\\nMuchas gracias por el servicio 👌🏻👌🏻", "author": "Felipe Rives Grau", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB", "timestamp": "2 years ago"} Muy buen circuito para correr y echarse unas risas, muy recomendable.\nY la cantina también muy bueno todo, sobretodo los granizados de limón.\nAparte no es muy caro de precio.\nMuchas gracias por el servicio 👌🏻👌🏻 5 2024-01-31 01:52:39.833374+00 Felipe Rives Grau \N 1 2026-01-30 09:54:08.098289+00 2026-01-30 02:01:10.61663+00 1767 \N google ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE unknown {"text": "Wetter war top. Zufahrt und Beschreibung passt auch. Das Personal auch sehr nett, das Englisch könnte besser sein.", "author": "Alexander Waigandt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE", "timestamp": "9 months ago"} Wetter war top. Zufahrt und Beschreibung passt auch. Das Personal auch sehr nett, das Englisch könnte besser sein. 5 2025-05-05 00:52:39.833374+00 Alexander Waigandt \N 1 2026-01-30 09:54:08.100564+00 2026-01-30 02:01:10.620181+00 1768 \N google ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE unknown {"text": "Super endroit propre et bien animé en fin de journee\\nPiste professionnelle\\nSuper accueil\\nEn fonction de l heure ou vous allez il peut y avoir 1h d attente\\nA refaire", "author": "Do Naoual", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE", "timestamp": "a year ago"} Super endroit propre et bien animé en fin de journee\nPiste professionnelle\nSuper accueil\nEn fonction de l heure ou vous allez il peut y avoir 1h d attente\nA refaire 5 2025-01-30 01:52:39.833374+00 Do Naoual \N 1 2026-01-30 09:54:08.102891+00 2026-01-30 02:01:10.62473+00 1769 \N google ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE unknown {"text": "Fui el finde pasado con 7 amigos y nos trataron de lujo. Karts en perfecto estado y disfrute asegurado!", "author": "Alejandro Sanchez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE", "timestamp": "8 months ago"} Fui el finde pasado con 7 amigos y nos trataron de lujo. Karts en perfecto estado y disfrute asegurado! 5 2025-06-04 00:52:39.833374+00 Alejandro Sanchez Garcia \N 1 2026-01-30 09:54:08.105451+00 2026-01-30 02:01:10.628073+00 1770 \N google ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE unknown {"text": "Een super leuke namiddag gehad! Een lange baan met toffe bochten. Voor herhaling vatbaar!", "author": "Brenda De Bie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE", "timestamp": "4 years ago"} Een super leuke namiddag gehad! Een lange baan met toffe bochten. Voor herhaling vatbaar! 5 2022-01-31 01:52:39.833374+00 Brenda De Bie \N 1 2026-01-30 09:54:08.109022+00 2026-01-30 02:01:10.632627+00 1846 \N google ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE unknown {"text": "Muy corto el tiempo el sitio bien pero un poco caro", "author": "SILVIA GARCIA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE", "timestamp": "6 years ago"} Muy corto el tiempo el sitio bien pero un poco caro 5 2020-02-01 01:52:39.833374+00 SILVIA GARCIA \N 1 2026-01-30 09:54:08.344364+00 2026-01-30 02:01:10.920139+00 1905 \N google ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE unknown {"text": "Gente grosera y maleducada,coches muy sucios y llenos de aceite sin mantenimiento ,el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bien y olían a quemado y no te salgas de la pista o des un golpe a otro coche porque al salir te hablan mal y delante de la gente(gritan me vas a hundir el negocio,aquí no vuelves a entrar y eso solo se lo dice a los niños porque no se atreve con los adultos,un hombre de ojos azules y vestido muy sucios y olor sobaco,nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches", "author": "Fernando Cantero martinez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE", "timestamp": "4 years ago"} Gente grosera y maleducada,coches muy sucios y llenos de aceite sin mantenimiento ,el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bien y olían a quemado y no te salgas de la pista o des un golpe a otro coche porque al salir te hablan mal y delante de la gente(gritan me vas a hundir el negocio,aquí no vuelves a entrar y eso solo se lo dice a los niños porque no se atreve con los adultos,un hombre de ojos azules y vestido muy sucios y olor sobaco,nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches 1 2022-01-31 01:52:39.833374+00 Fernando Cantero martinez \N 1 2026-01-30 09:54:08.644068+00 2026-01-30 02:01:11.140968+00 2079 \N google ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB unknown {"text": "Cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsables deberían hacer algo y no lo hicieron por lo demás todo genial", "author": "The Noob PvP", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB", "timestamp": "7 years ago"} Cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsables deberían hacer algo y no lo hicieron por lo demás todo genial 3 2019-02-01 01:52:39.833374+00 The Noob PvP \N 1 2026-01-30 09:54:09.276422+00 2026-01-30 02:01:11.872626+00 1651 \N google Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB unknown {"text": "Var en trivelig kveld. Det er andre ting å gjøre der om man ikke vil kjøre go cart. Diverse spill, airhockey, billjard og et lite lekeland for de aller minste.\\n\\nSelve bane anlegget byr på tre forskjellige baner. En for de aller minste, en junior bane og en bane for de eldre. På de to minste banene er go cartene tilpasset banen slik at det blir jevnere racing. Opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der. På den største banen kan man variere på selve go cartene, noe som gjør det litt utfordrende å kjøre. Banen i seg selv var også ganske gøy å kjøre. Absolutt verdt besøket og gøy for hele familien.", "author": "Daniel “Seb” Seb", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB", "timestamp": "5 months ago"} Var en trivelig kveld. Det er andre ting å gjøre der om man ikke vil kjøre go cart. Diverse spill, airhockey, billjard og et lite lekeland for de aller minste.\n\nSelve bane anlegget byr på tre forskjellige baner. En for de aller minste, en junior bane og en bane for de eldre. På de to minste banene er go cartene tilpasset banen slik at det blir jevnere racing. Opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der. På den største banen kan man variere på selve go cartene, noe som gjør det litt utfordrende å kjøre. Banen i seg selv var også ganske gøy å kjøre. Absolutt verdt besøket og gøy for hele familien. 4 2025-09-02 00:52:39.833374+00 Daniel “Seb” Seb \N 1 2026-01-30 09:54:07.699173+00 2026-01-30 02:01:10.172707+00 1773 \N google ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB unknown {"text": "Esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchísimo.\\nLos chicos muy simpáticos.\\nY lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1.", "author": "Vanesa Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB", "timestamp": "Edited a year ago"} Esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchísimo.\nLos chicos muy simpáticos.\nY lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1. 5 2026-01-30 01:52:39.833374+00 Vanesa Fernández \N 1 2026-01-30 09:54:08.117631+00 2026-01-30 02:01:10.644615+00 1775 \N google ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE unknown {"text": "Allt fungerar som det skall och trevlig personal. Drivers day på onsdagar. Dubbel tid", "author": "Arne Cederblad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE", "timestamp": "a year ago"} Allt fungerar som det skall och trevlig personal. Drivers day på onsdagar. Dubbel tid 5 2025-01-30 01:52:39.833374+00 Arne Cederblad \N 1 2026-01-30 09:54:08.124146+00 2026-01-30 02:01:10.651447+00 1776 \N google ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE unknown {"text": "Un buen lugar para disfrutar con amigos.\\nLastima que muchas veces hay participantes de otras categorías superiores que no respetan a los F200 y van a fuego creando peligro y choques innecesarios.", "author": "Inigo Angel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE", "timestamp": "a year ago"} Un buen lugar para disfrutar con amigos.\nLastima que muchas veces hay participantes de otras categorías superiores que no respetan a los F200 y van a fuego creando peligro y choques innecesarios. 4 2025-01-30 01:52:39.833374+00 Inigo Angel \N 1 2026-01-30 09:54:08.126767+00 2026-01-30 02:01:10.654531+00 1777 \N google ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE unknown {"text": "Siempre ha sido un sitio familiar y muy bien atendido. Pero ña chica nueva deja mucho qie desear en el trato con el cliente. Le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello. Pero si ham de tomar nota.", "author": "Paco Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE", "timestamp": "Edited 3 years ago"} Siempre ha sido un sitio familiar y muy bien atendido. Pero ña chica nueva deja mucho qie desear en el trato con el cliente. Le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello. Pero si ham de tomar nota. 5 2026-01-30 01:52:39.833374+00 Paco Garcia \N 1 2026-01-30 09:54:08.129708+00 2026-01-30 02:01:10.658706+00 1779 \N google ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB unknown {"text": "Très bon accueil rapport qualité prix👍🏼 Sécurité top et très beau circuit. Mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit. Excellente soirée. Les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min.", "author": "Magalie Lietaert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB", "timestamp": "5 years ago"} Très bon accueil rapport qualité prix👍🏼 Sécurité top et très beau circuit. Mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit. Excellente soirée. Les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min. 5 2021-01-31 01:52:39.833374+00 Magalie Lietaert \N 1 2026-01-30 09:54:08.136145+00 2026-01-30 02:01:10.664346+00 1780 \N google ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB unknown {"text": "El sitio es muy bonito y al aire libre, si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan. Por este motivo no pude usar la pista, pero entre al lugar y la atención muy agradable, me explicaron todo. Seguro volveré.", "author": "KAROLYNA ANDREA", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB", "timestamp": "4 years ago"} El sitio es muy bonito y al aire libre, si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan. Por este motivo no pude usar la pista, pero entre al lugar y la atención muy agradable, me explicaron todo. Seguro volveré. 4 2022-01-31 01:52:39.833374+00 KAROLYNA ANDREA \N 1 2026-01-30 09:54:08.138941+00 2026-01-30 02:01:10.667172+00 1655 \N google Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB unknown {"text": "Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. Explicaciones las justas para alguien que no ha llevado nunca un kart y en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. También escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. Un saludo, circuito y maquinaria bien, personal penoso", "author": "Holly", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB", "timestamp": "6 months ago"} Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. Explicaciones las justas para alguien que no ha llevado nunca un kart y en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. También escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. Un saludo, circuito y maquinaria bien, personal penoso 1 2025-08-03 00:52:39.833374+00 Holly \N 1 2026-01-30 09:54:07.711964+00 2026-01-30 02:01:10.187555+00 1784 \N google ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB unknown {"text": "¡No había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante! El personal muy amable y cercano (también bastante tranquilizador). Un plan perfecto para ir con amigos. ¡Repetimos y lo recomendamos sin ninguna duda!", "author": "Laura Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB", "timestamp": "2 years ago"} ¡No había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante! El personal muy amable y cercano (también bastante tranquilizador). Un plan perfecto para ir con amigos. ¡Repetimos y lo recomendamos sin ninguna duda! 5 2024-01-31 01:52:39.833374+00 Laura Martínez \N 1 2026-01-30 09:54:08.152091+00 2026-01-30 02:01:10.682398+00 1785 \N google ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB unknown {"text": "Hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena. El personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la GoPro y el circuito y los karts estaban en buen estado. Esperamos volver y repetir pronto", "author": "Javier Porras Navarro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB", "timestamp": "4 years ago"} Hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena. El personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la GoPro y el circuito y los karts estaban en buen estado. Esperamos volver y repetir pronto 5 2022-01-31 01:52:39.833374+00 Javier Porras Navarro \N 1 2026-01-30 09:54:08.154273+00 2026-01-30 02:01:10.685187+00 1786 \N google Ci9DQUlRQUNvZENodHljRjlvT21obmVFd3hkV1k0VFU5bVEwTm5SMGhETUVaWVRuYxAB unknown {"text": "Buena experiencia para montar en karts.", "author": "Icechurry", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21obmVFd3hkV1k0VFU5bVEwTm5SMGhETUVaWVRuYxAB", "timestamp": "7 months ago"} Buena experiencia para montar en karts. 5 2025-07-04 00:52:39.833374+00 Icechurry \N 1 2026-01-30 09:54:08.160496+00 2026-01-30 02:01:10.692307+00 1859 \N google ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE unknown {"text": "Mi hijo disfruta enormemente. Magníficas instalaciones.", "author": "Julian Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE", "timestamp": "3 years ago"} Mi hijo disfruta enormemente. Magníficas instalaciones. 5 2023-01-31 01:52:39.833374+00 Julian Martín \N 1 2026-01-30 09:54:08.487449+00 2026-01-30 02:01:10.969019+00 2094 \N google ChZDSUhNMG9nS0VJQ0FnSURBMklXUFVREAE unknown {"text": "Un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos de la zona.", "author": "alex guillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBMklXUFVREAE", "timestamp": "8 years ago"} Un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos de la zona. 5 2018-02-01 01:52:39.833374+00 alex guillo \N 1 2026-01-30 09:54:09.317333+00 2026-01-30 02:01:11.929058+00 2097 \N google ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE unknown {"text": "Una pista realmente divertida. Puede que les falte un poco de asesoramiento para los conductores más novatos.", "author": "Jose C BRT", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE", "timestamp": "6 years ago"} Una pista realmente divertida. Puede que les falte un poco de asesoramiento para los conductores más novatos. 4 2020-02-01 01:52:39.833374+00 Jose C BRT \N 1 2026-01-30 09:54:09.325119+00 2026-01-30 02:01:11.939603+00 1743 \N google ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE unknown {"text": "Lo tiene todo. Buen diseño del trazado . Asfalto en muy buenas condiciones . Kars modernos .Trabajadores profesionales . Entras allí y te olvidas del mundo exterior . Los médicos de la seguridad social deberían recetar este circuito para combatir el estrés. 5 estrellas .", "author": "ALEX B . R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE", "timestamp": "a year ago"} Lo tiene todo. Buen diseño del trazado . Asfalto en muy buenas condiciones . Kars modernos .Trabajadores profesionales . Entras allí y te olvidas del mundo exterior . Los médicos de la seguridad social deberían recetar este circuito para combatir el estrés. 5 estrellas . 5 2025-01-30 01:52:39.833374+00 ALEX B . R \N 1 2026-01-30 09:54:08.022051+00 2026-01-30 02:01:10.536835+00 1791 \N google ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE unknown {"text": "Espectacular amigos, todo muy bien organizado y un personal muy simpático. Lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezados. Volveremos a encontrarnos amigos, muchas gracias.", "author": "José Antonio Martínez Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE", "timestamp": "3 years ago"} Espectacular amigos, todo muy bien organizado y un personal muy simpático. Lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezados. Volveremos a encontrarnos amigos, muchas gracias. 5 2023-01-31 01:52:39.833374+00 José Antonio Martínez Fernández \N 1 2026-01-30 09:54:08.177746+00 2026-01-30 02:01:10.712782+00 1792 \N google ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB unknown {"text": "Es un sitio genial , lo tienen todo super bien cuidado y el personal es de 10\\nRepetiremos", "author": "Miriam Gil Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB", "timestamp": "10 months ago"} Es un sitio genial , lo tienen todo super bien cuidado y el personal es de 10\nRepetiremos 5 2025-04-05 00:52:39.833374+00 Miriam Gil Lopez \N 1 2026-01-30 09:54:08.180001+00 2026-01-30 02:01:10.715519+00 1793 \N google ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE unknown {"text": "De los mejores recintos que he conocido. Las instalaciones y los Karts están muy bien, el servicio atento y los extras también. Y el precio es asequible. Hay vueltas específicas para niños y dúos con niños.", "author": "Jose Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE", "timestamp": "2 years ago"} De los mejores recintos que he conocido. Las instalaciones y los Karts están muy bien, el servicio atento y los extras también. Y el precio es asequible. Hay vueltas específicas para niños y dúos con niños. 5 2024-01-31 01:52:39.833374+00 Jose Sánchez \N 1 2026-01-30 09:54:08.182266+00 2026-01-30 02:01:10.717794+00 1794 \N google ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB unknown {"text": "Un día estupendo en familia, muy buena atención por parte del personal y muy amables, una terraza con vistas a toda la pista excelente!\\nRepetiremos sin duda!!", "author": "Maria Martinez Lucas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB", "timestamp": "a year ago"} Un día estupendo en familia, muy buena atención por parte del personal y muy amables, una terraza con vistas a toda la pista excelente!\nRepetiremos sin duda!! 5 2025-01-30 01:52:39.833374+00 Maria Martinez Lucas \N 1 2026-01-30 09:54:08.184658+00 2026-01-30 02:01:10.72086+00 1795 \N google ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB unknown {"text": "Es un buen lugar para pasar la tarde con los amigos. Esta bien localizado y tiene aparcamiento amplio para coches. Si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si lo desea.", "author": "Revo García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB", "timestamp": "6 years ago"} Es un buen lugar para pasar la tarde con los amigos. Esta bien localizado y tiene aparcamiento amplio para coches. Si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si lo desea. 4 2020-02-01 01:52:39.833374+00 Revo García \N 1 2026-01-30 09:54:08.187325+00 2026-01-30 02:01:10.725161+00 1796 \N google ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB unknown {"text": "El mejor karting de la región sin duda, los karts muy bien mantenidos y la pista igual además, es un circuito donde es difícil tener un accidente, es muy seguro.", "author": "Alejandro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB", "timestamp": "11 months ago"} El mejor karting de la región sin duda, los karts muy bien mantenidos y la pista igual además, es un circuito donde es difícil tener un accidente, es muy seguro. 5 2025-03-06 01:52:39.833374+00 Alejandro \N 1 2026-01-30 09:54:08.189618+00 2026-01-30 02:01:10.727874+00 1797 \N google ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE unknown {"text": "Disculpad la reseña sin comentario! He sido asiduo a este Karting desde sus inicios y ha evolucionado de una manera sobresaliente. Después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un biplaza. El trato genial! Siempre volveré.", "author": "Carlos Braojos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE", "timestamp": "Edited 2 years ago"} Disculpad la reseña sin comentario! He sido asiduo a este Karting desde sus inicios y ha evolucionado de una manera sobresaliente. Después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un biplaza. El trato genial! Siempre volveré. 5 2026-01-30 01:52:39.833374+00 Carlos Braojos \N 1 2026-01-30 09:54:08.192106+00 2026-01-30 02:01:10.731158+00 1798 \N google Ci9DQUlRQUNvZENodHljRjlvT2pneGRGSnpibk5xUXpSWFNGSk9lVEpDWkhneWMwRRAB unknown {"text": "Super circuit ! Trop bien pour les grands et les petits !!!", "author": "Christophe Ducros", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pneGRGSnpibk5xUXpSWFNGSk9lVEpDWkhneWMwRRAB", "timestamp": "6 months ago"} Super circuit ! Trop bien pour les grands et les petits !!! 5 2025-08-03 00:52:39.833374+00 Christophe Ducros \N 1 2026-01-30 09:54:08.195048+00 2026-01-30 02:01:10.734087+00 1799 \N google ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB unknown {"text": "La opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tus amigos, la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo. Siempre que vamos acabamos muy contentos.", "author": "Manuel Alcaraz Ros", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB", "timestamp": "7 years ago"} La opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tus amigos, la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo. Siempre que vamos acabamos muy contentos. 5 2019-02-01 01:52:39.833374+00 Manuel Alcaraz Ros \N 1 2026-01-30 09:54:08.19927+00 2026-01-30 02:01:10.737111+00 1656 \N google ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB unknown {"text": "Un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el F300 por 19e pero si tienes la posibilidad de coger el F400 sin duda vas a disfrutar.\\nSuelen hacer 1 tanda de adultos y una de niños y así sucesivamente.\\nSin duda uno de los mejores karting que he probado. En cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata, que no ha corrido nunca, que alguien le explique lo básico.", "author": "Angel Lillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB", "timestamp": "2 years ago"} Un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el F300 por 19e pero si tienes la posibilidad de coger el F400 sin duda vas a disfrutar.\nSuelen hacer 1 tanda de adultos y una de niños y así sucesivamente.\nSin duda uno de los mejores karting que he probado. En cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata, que no ha corrido nunca, que alguien le explique lo básico. 5 2024-01-31 01:52:39.833374+00 Angel Lillo \N 1 2026-01-30 09:54:07.715125+00 2026-01-30 02:01:10.192058+00 1756 \N google ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE unknown {"text": "Perfecto para pasar una tarde de ocio diferente. Tienen distintos paquetes dependiendo del tiempo que quieras estar. De precio muy bien. Estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver. El personal un 10. Muy amables y ayudando en todo momento. Cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al Mar Menor. Recomendable.", "author": "JOSE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE", "timestamp": "6 years ago"} Perfecto para pasar una tarde de ocio diferente. Tienen distintos paquetes dependiendo del tiempo que quieras estar. De precio muy bien. Estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver. El personal un 10. Muy amables y ayudando en todo momento. Cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al Mar Menor. Recomendable. 5 2020-02-01 01:52:39.833374+00 JOSE \N 1 2026-01-30 09:54:08.066598+00 2026-01-30 02:01:10.583823+00 1762 \N google ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE unknown {"text": "Super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec . 8 min to troszkę mało za tę cenę , ale tor i same gokarty super . Zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja .😎", "author": "Marcin Gorayski", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE", "timestamp": "2 years ago"} Super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec . 8 min to troszkę mało za tę cenę , ale tor i same gokarty super . Zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja .😎 4 2024-01-31 01:52:39.833374+00 Marcin Gorayski \N 1 2026-01-30 09:54:08.082523+00 2026-01-30 02:01:10.602873+00 1802 \N google ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB unknown {"text": "Ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. No puede salir un niño de 13 años con tíos de 40 que no hacen nada más que comérselo en la pista. Además creo que fueran 10 min en vez de 8 tampoco estaría mal!! La organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utilizan. El circuito es bueno con su curvas cerraditas y un par de rectas buenas.", "author": "LUIS", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB", "timestamp": "3 years ago"} Ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. No puede salir un niño de 13 años con tíos de 40 que no hacen nada más que comérselo en la pista. Además creo que fueran 10 min en vez de 8 tampoco estaría mal!! La organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utilizan. El circuito es bueno con su curvas cerraditas y un par de rectas buenas. 4 2023-01-31 01:52:39.833374+00 LUIS \N 1 2026-01-30 09:54:08.20829+00 2026-01-30 02:01:10.749399+00 1804 \N google ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE unknown {"text": "Atención al cliente muy deficiente. Nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble. Una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabajador que sea. No recomiendo", "author": "Jose Gómez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE", "timestamp": "3 years ago"} Atención al cliente muy deficiente. Nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble. Una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabajador que sea. No recomiendo 1 2023-01-31 01:52:39.833374+00 Jose Gómez \N 1 2026-01-30 09:54:08.214205+00 2026-01-30 02:01:10.756272+00 1866 \N google ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE unknown {"text": "Los Auxiliares de Pista son prepotentes y son conscientes de que los kars no frenan , se les comenta y dice : \\" ah ya, esque el latiguillo esta suelto\\" . Corriendo con el 2° Kart mas rápido del lugar.\\nEl deposito de gasolina esta entre las piernas al descubierto ,el asiento de plastico hace daño en la espalda.\\nNo hay protecciones en los laterales.\\nTodos los años vamos y siempre tienen algun fallo, pero este año se han lucido. RESPUESTA AL NEGOCIO:\\nVOSOTROS HABEIS BORRADO LA RESEÑA DE MI PAREJA, YO NO HE BORRADO NADA. OS DENUNCIARÉ 100%", "author": "Dimetu", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE", "timestamp": "Edited 3 years ago"} Los Auxiliares de Pista son prepotentes y son conscientes de que los kars no frenan , se les comenta y dice : " ah ya, esque el latiguillo esta suelto" . Corriendo con el 2° Kart mas rápido del lugar.\nEl deposito de gasolina esta entre las piernas al descubierto ,el asiento de plastico hace daño en la espalda.\nNo hay protecciones en los laterales.\nTodos los años vamos y siempre tienen algun fallo, pero este año se han lucido. RESPUESTA AL NEGOCIO:\nVOSOTROS HABEIS BORRADO LA RESEÑA DE MI PAREJA, YO NO HE BORRADO NADA. OS DENUNCIARÉ 100% 1 2026-01-30 01:52:39.833374+00 Dimetu \N 1 2026-01-30 09:54:08.52214+00 2026-01-30 02:01:10.99183+00 1810 \N google ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE unknown {"text": "Ha estado muy bien. Hemos ido a un cumpleaños y ha sido muy divertido. Las instalaciones están bastante bien y hemos pasado un rato muy agradable. Repetiremos.", "author": "Estherlaura Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE", "timestamp": "2 years ago"} Ha estado muy bien. Hemos ido a un cumpleaños y ha sido muy divertido. Las instalaciones están bastante bien y hemos pasado un rato muy agradable. Repetiremos. 4 2024-01-31 01:52:39.833374+00 Estherlaura Garcia \N 1 2026-01-30 09:54:08.232197+00 2026-01-30 02:01:10.779442+00 1811 \N google ChZDSUhNMG9nS0VJQ0FnSURTcGNqZll3EAE unknown {"text": "Schöne Strecke zum Pitbiken, teilweise etwas rutschig aber sonst sehr spaßig.", "author": "Jo Neu", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTcGNqZll3EAE", "timestamp": "5 years ago"} Schöne Strecke zum Pitbiken, teilweise etwas rutschig aber sonst sehr spaßig. 4 2021-01-31 01:52:39.833374+00 Jo Neu \N 1 2026-01-30 09:54:08.234365+00 2026-01-30 02:01:10.781965+00 1812 \N google ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE unknown {"text": "Una gran pista y buen precio", "author": "Carlos Perez Sierra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE", "timestamp": "5 years ago"} Una gran pista y buen precio 5 2021-01-31 01:52:39.833374+00 Carlos Perez Sierra \N 1 2026-01-30 09:54:08.236625+00 2026-01-30 02:01:10.784436+00 1813 \N google ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE unknown {"text": "Circuito espectacular con un fantástico trato. Ha sido mi primera experiencia y no dudaré en repetir. Además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempos en pista. ¡Volveré sin dudarlo!", "author": "Adrián García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE", "timestamp": "7 years ago"} Circuito espectacular con un fantástico trato. Ha sido mi primera experiencia y no dudaré en repetir. Además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempos en pista. ¡Volveré sin dudarlo! 5 2019-02-01 01:52:39.833374+00 Adrián García \N 1 2026-01-30 09:54:08.240724+00 2026-01-30 02:01:10.787448+00 1814 \N google ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE unknown {"text": "El personal es agradable y atento. Tienen una pista en condiciones de uso bastante aceptable.\\nLos Karts están en buen estado. Quizás debería mejorar su nivel de frenada. Pero es una buena actividad en la que divertirse en grupo.", "author": "andespand espandcad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE", "timestamp": "3 years ago"} El personal es agradable y atento. Tienen una pista en condiciones de uso bastante aceptable.\nLos Karts están en buen estado. Quizás debería mejorar su nivel de frenada. Pero es una buena actividad en la que divertirse en grupo. 5 2023-01-31 01:52:39.833374+00 andespand espandcad \N 1 2026-01-30 09:54:08.243356+00 2026-01-30 02:01:10.791014+00 1815 \N google ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB unknown {"text": "Heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe. Oude en slecht onderhouden karts. Onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn. Heel jammer.", "author": "Geoff Oosterbaan", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB", "timestamp": "2 years ago"} Heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe. Oude en slecht onderhouden karts. Onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn. Heel jammer. 1 2024-01-31 01:52:39.833374+00 Geoff Oosterbaan \N 1 2026-01-30 09:54:08.246301+00 2026-01-30 02:01:10.795588+00 1816 \N google ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB unknown {"text": "Muy buenas instalaciones y bien diseñadas las medidas de seguridad. El mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viejas. Por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de movilidad.", "author": "jose ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB", "timestamp": "4 years ago"} Muy buenas instalaciones y bien diseñadas las medidas de seguridad. El mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viejas. Por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de movilidad. 5 2022-01-31 01:52:39.833374+00 jose ruiz \N 1 2026-01-30 09:54:08.248994+00 2026-01-30 02:01:10.800421+00 1860 \N google ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE unknown {"text": "buena atención y mi hijo disfruto mucho de los Karts. bonita experiencia", "author": "Sand", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE", "timestamp": "9 months ago"} buena atención y mi hijo disfruto mucho de los Karts. bonita experiencia 5 2025-05-05 00:52:39.833374+00 Sand \N 1 2026-01-30 09:54:08.49566+00 2026-01-30 02:01:10.973181+00 1772 \N google Ci9DQUlRQUNvZENodHljRjlvT2pGdlozUm9ialEzUkZVNVpYVTRMUzFOZEY4M1VVRRAB unknown {"text": "Toda una experiencia cada verano", "author": "Belén Mondéjar", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGdlozUm9ialEzUkZVNVpYVTRMUzFOZEY4M1VVRRAB", "timestamp": "5 months ago"} Toda una experiencia cada verano 4 2025-09-02 00:52:39.833374+00 Belén Mondéjar \N 1 2026-01-30 09:54:08.114987+00 2026-01-30 02:01:10.641524+00 1818 \N google ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE unknown {"text": "Increíble. El trato amable de sus dueños Roberto y Diego es tan solo la bienvenida a una experiencia divertida, y que va a más con el paso de las vueltas a su circuito. Gracias por todo!", "author": "Jesus Miguel Lopez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE", "timestamp": "2 years ago"} Increíble. El trato amable de sus dueños Roberto y Diego es tan solo la bienvenida a una experiencia divertida, y que va a más con el paso de las vueltas a su circuito. Gracias por todo! 5 2024-01-31 01:52:39.833374+00 Jesus Miguel Lopez Garcia \N 1 2026-01-30 09:54:08.254552+00 2026-01-30 02:01:10.813983+00 1820 \N google ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB unknown {"text": "La pista mejor mantenida que he visto, curvas preciosas y kars mantenidos.\\nPara los cascos utilizan una máquina para limpiarlos. Tiene una pantalla grande y de buena calidad que te dice los tiempos.\\nVolvería a conducir", "author": "Dislol", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB", "timestamp": "4 years ago"} La pista mejor mantenida que he visto, curvas preciosas y kars mantenidos.\nPara los cascos utilizan una máquina para limpiarlos. Tiene una pantalla grande y de buena calidad que te dice los tiempos.\nVolvería a conducir 5 2022-01-31 01:52:39.833374+00 Dislol \N 1 2026-01-30 09:54:08.259362+00 2026-01-30 02:01:10.822037+00 1821 \N google ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB unknown {"text": "Buen trato, circuito adecuado y largo. Los coches tienen buen mantenimiento. Diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera invertida. Recomendado.\\nEl mejor de la zona con diferencia.", "author": "Juan M. Ros", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB", "timestamp": "8 years ago"} Buen trato, circuito adecuado y largo. Los coches tienen buen mantenimiento. Diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera invertida. Recomendado.\nEl mejor de la zona con diferencia. 5 2018-02-01 01:52:39.833374+00 Juan M. Ros \N 1 2026-01-30 09:54:08.262483+00 2026-01-30 02:01:10.825743+00 1822 \N google ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB unknown {"text": "Está bastante guay, tienes su entrada y los karts muy bien Y tienes cosa hay que pillarle truco", "author": "M G G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB", "timestamp": "8 months ago"} Está bastante guay, tienes su entrada y los karts muy bien Y tienes cosa hay que pillarle truco 5 2025-06-04 00:52:39.833374+00 M G G \N 1 2026-01-30 09:54:08.264801+00 2026-01-30 02:01:10.829168+00 1823 \N google ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE unknown {"text": "La verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida. Siempre hay mucha gente en verano. Recomiendo llamar y reservar.", "author": "Jorge MM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE", "timestamp": "2 years ago"} La verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida. Siempre hay mucha gente en verano. Recomiendo llamar y reservar. 5 2024-01-31 01:52:39.833374+00 Jorge MM \N 1 2026-01-30 09:54:08.267009+00 2026-01-30 02:01:10.832976+00 1824 \N google ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB unknown {"text": "Sitio muy agradable para pasar un buen rato entre amigos o en familia, personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática.", "author": "Lonaxon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB", "timestamp": "Edited a year ago"} Sitio muy agradable para pasar un buen rato entre amigos o en familia, personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática. 5 2026-01-30 01:52:39.833374+00 Lonaxon \N 1 2026-01-30 09:54:08.269562+00 2026-01-30 02:01:10.837345+00 1825 \N google ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB unknown {"text": "Una pista genial. Muy cuidado todo, un trato espectacular, y los trabajadores super cercanos.\\nUn gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de ti. Además de las vistas al mar menor.", "author": "Javier Fernández Villalón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB", "timestamp": "2 years ago"} Una pista genial. Muy cuidado todo, un trato espectacular, y los trabajadores super cercanos.\nUn gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de ti. Además de las vistas al mar menor. 5 2024-01-31 01:52:39.833374+00 Javier Fernández Villalón \N 1 2026-01-30 09:54:08.272347+00 2026-01-30 02:01:10.841235+00 1835 \N google ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB unknown {"text": "Volvería una y mil veces más, me encanta este karting, los karts son un tiro y la pista es perfecta, un kartodromo genial para echar un buen rato y hacer buenos tiempos :)", "author": "SamuMan Manrique Salamanca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB", "timestamp": "a year ago"} Volvería una y mil veces más, me encanta este karting, los karts son un tiro y la pista es perfecta, un kartodromo genial para echar un buen rato y hacer buenos tiempos :) 5 2025-01-30 01:52:39.833374+00 SamuMan Manrique Salamanca \N 1 2026-01-30 09:54:08.305426+00 2026-01-30 02:01:10.885122+00 1964 \N google ChdDSUhNMG9nS0VJQ0FnSUR0aXJuTXp3RRAB unknown {"text": "Para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tienen en su local", "author": "Humano", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0aXJuTXp3RRAB", "timestamp": "a year ago"} Para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tienen en su local 2 2025-01-30 01:52:39.833374+00 Humano \N 1 2026-01-30 09:54:08.855287+00 2026-01-30 02:01:11.375027+00 1778 \N google ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB unknown {"text": "Venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fondo. No necesitas más velocidad para pasarlo muy bien 15 minutos. Vueltas de 1 minuto sabiendo coger las curvas y con cuidado de no patinar, 👍😃😃😃👍 .\\nBuena atención y no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momento.", "author": "Jose Sanchez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB", "timestamp": "4 years ago"} Venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fondo. No necesitas más velocidad para pasarlo muy bien 15 minutos. Vueltas de 1 minuto sabiendo coger las curvas y con cuidado de no patinar, 👍😃😃😃👍 .\nBuena atención y no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momento. 4 2022-01-31 01:52:39.833374+00 Jose Sanchez \N 1 2026-01-30 09:54:08.133475+00 2026-01-30 02:01:10.661605+00 1782 \N google ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB unknown {"text": "Es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos. Se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart. Merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado.", "author": "JJ “MagicaFe” Contreras", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB", "timestamp": "2 years ago"} Es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos. Se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart. Merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado. 4 2024-01-31 01:52:39.833374+00 JJ “MagicaFe” Contreras \N 1 2026-01-30 09:54:08.146557+00 2026-01-30 02:01:10.675394+00 1830 \N google ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE unknown {"text": "Muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos. Quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido. Repetiremos muy recomendable", "author": "Sirakusa Von Z", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE", "timestamp": "2 years ago"} Muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos. Quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido. Repetiremos muy recomendable 5 2024-01-31 01:52:39.833374+00 Sirakusa Von Z \N 1 2026-01-30 09:54:08.289952+00 2026-01-30 02:01:10.868396+00 1831 \N google ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB unknown {"text": "Hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el gran circuito que tenéis.Excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin duda alguna y los más grandes también. Geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞O simplemente pasear 🏆🥇🥈🥉😘", "author": "Noelia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB", "timestamp": "Edited 6 years ago"} Hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el gran circuito que tenéis.Excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin duda alguna y los más grandes también. Geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞O simplemente pasear 🏆🥇🥈🥉😘 5 2026-01-30 01:52:39.833374+00 Noelia \N 1 2026-01-30 09:54:08.292686+00 2026-01-30 02:01:10.871576+00 1832 \N google ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB unknown {"text": "Estupendo circuito. Si te gusta el Karting es el lugar ideal para quemar adrenalina. Los coches están bastante a punto. Las sensaciones son muy buenas. He pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista.", "author": "Rodrigo Lizano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB", "timestamp": "4 years ago"} Estupendo circuito. Si te gusta el Karting es el lugar ideal para quemar adrenalina. Los coches están bastante a punto. Las sensaciones son muy buenas. He pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista. 5 2022-01-31 01:52:39.833374+00 Rodrigo Lizano \N 1 2026-01-30 09:54:08.295907+00 2026-01-30 02:01:10.875294+00 1833 \N google ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB unknown {"text": "Buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cilindrada. Tiene una gran pantalla donde aparecen los tiempos y los dorsales. Desde el mirador también se puede seguir con las carreras. Hay un bar y servicios públicos. También hay zona de sombra y un gran parking gratuito. Es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos.", "author": "Miguel Carlos Cuadrado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB", "timestamp": "6 years ago"} Buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cilindrada. Tiene una gran pantalla donde aparecen los tiempos y los dorsales. Desde el mirador también se puede seguir con las carreras. Hay un bar y servicios públicos. También hay zona de sombra y un gran parking gratuito. Es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos. 5 2020-02-01 01:52:39.833374+00 Miguel Carlos Cuadrado \N 1 2026-01-30 09:54:08.29871+00 2026-01-30 02:01:10.878776+00 1834 \N google ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE unknown {"text": "Uno de los mejores lugares para pasártelo genial con tus amigos y familia. Además los karts y la seguridad es máxima, la atención y simpatía de los trabajadores increíble y encima en su restaurante se come de lujo, k más se puede pedir.\\nRepetiremos seguro.", "author": "David Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE", "timestamp": "4 years ago"} Uno de los mejores lugares para pasártelo genial con tus amigos y familia. Además los karts y la seguridad es máxima, la atención y simpatía de los trabajadores increíble y encima en su restaurante se come de lujo, k más se puede pedir.\nRepetiremos seguro. 5 2022-01-31 01:52:39.833374+00 David Perez \N 1 2026-01-30 09:54:08.301678+00 2026-01-30 02:01:10.882062+00 1787 \N google ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB unknown {"text": "Encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindaron. El trato con los organizadores fue buenísimo y los karts estaban en muy buen estado. El mejor circuito de karting de la zona del mar menor sin duda. Fuimos un grupo de 10 personas y repetiría mañana mismo. Muy recomendable.", "author": "Álvaro García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB", "timestamp": "3 years ago"} Encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindaron. El trato con los organizadores fue buenísimo y los karts estaban en muy buen estado. El mejor circuito de karting de la zona del mar menor sin duda. Fuimos un grupo de 10 personas y repetiría mañana mismo. Muy recomendable. 5 2023-01-31 01:52:39.833374+00 Álvaro García \N 1 2026-01-30 09:54:08.163926+00 2026-01-30 02:01:10.696549+00 1790 \N google ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB unknown {"text": "Me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no sabemos cómo es el funcionamiento de las áreas de diversión\\nPero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepotencia\\nYo creo que la educación ante todo", "author": "JP KinG", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB", "timestamp": "a year ago"} Me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no sabemos cómo es el funcionamiento de las áreas de diversión\nPero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepotencia\nYo creo que la educación ante todo 2 2025-01-30 01:52:39.833374+00 JP KinG \N 1 2026-01-30 09:54:08.173123+00 2026-01-30 02:01:10.709308+00 1838 \N google ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE unknown {"text": "El lugar es increíble. Incluso siendo principiante, te lo pasas genial. El personal muy atento en todo momento. Ojalá podamos repetir pronto.\\nMuchas gracias! 😊", "author": "Alpana Zurdo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE", "timestamp": "Edited 3 years ago"} El lugar es increíble. Incluso siendo principiante, te lo pasas genial. El personal muy atento en todo momento. Ojalá podamos repetir pronto.\nMuchas gracias! 😊 5 2026-01-30 01:52:39.833374+00 Alpana Zurdo \N 1 2026-01-30 09:54:08.313749+00 2026-01-30 02:01:10.894605+00 1839 \N google ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB unknown {"text": "Heel vriendelijke mensen en heel proper zowel buiten als binnen. Ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke mensen", "author": "Ayrton Dupont", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB", "timestamp": "2 years ago"} Heel vriendelijke mensen en heel proper zowel buiten als binnen. Ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke mensen 5 2024-01-31 01:52:39.833374+00 Ayrton Dupont \N 1 2026-01-30 09:54:08.316428+00 2026-01-30 02:01:10.897511+00 1840 \N google ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE unknown {"text": "Circuito divertido, pantalla con resultados, buena relación calidad -precio. La 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la dirección de los coches estaba muy dura.", "author": "Fernando Sanchez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE", "timestamp": "3 years ago"} Circuito divertido, pantalla con resultados, buena relación calidad -precio. La 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la dirección de los coches estaba muy dura. 4 2023-01-31 01:52:39.833374+00 Fernando Sanchez \N 1 2026-01-30 09:54:08.319705+00 2026-01-30 02:01:10.900115+00 1841 \N google ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB unknown {"text": "Diese Go Kartbahn ist lang, bietet viele Möglichkeiten zum von unterschiedlichen Kategorienen an. Zum zuschauen sind einige aussichtsreiche Standpunkte angeboten, oben auf der Terasse oder bei schlechtem Wetter im Gebäude. Man kann beim Gruppenrennen Namen zuordnen und auf der Taffel werden die Zeiten angezeigt. Nach dem Rennen kann ein Ausdruck mit Rennzeiten kostenlos mitgenommen werden.", "author": "Harry Brestel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB", "timestamp": "2 years ago"} Diese Go Kartbahn ist lang, bietet viele Möglichkeiten zum von unterschiedlichen Kategorienen an. Zum zuschauen sind einige aussichtsreiche Standpunkte angeboten, oben auf der Terasse oder bei schlechtem Wetter im Gebäude. Man kann beim Gruppenrennen Namen zuordnen und auf der Taffel werden die Zeiten angezeigt. Nach dem Rennen kann ein Ausdruck mit Rennzeiten kostenlos mitgenommen werden. 5 2024-01-31 01:52:39.833374+00 Harry Brestel \N 1 2026-01-30 09:54:08.322346+00 2026-01-30 02:01:10.902705+00 1843 \N google ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE unknown {"text": "Hemos ido unas tres veces este mes y somos de Murcia centro, sin duda los mejores calidad precio. Me encanta el personal muy atentos y simpáticos. En cuanto a karst muy competitivos e igualados unos con otros", "author": "Manuel Guerrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE", "timestamp": "8 years ago"} Hemos ido unas tres veces este mes y somos de Murcia centro, sin duda los mejores calidad precio. Me encanta el personal muy atentos y simpáticos. En cuanto a karst muy competitivos e igualados unos con otros 5 2018-02-01 01:52:39.833374+00 Manuel Guerrero \N 1 2026-01-30 09:54:08.327263+00 2026-01-30 02:01:10.908724+00 1844 \N google ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE unknown {"text": "Solo puedo decir cosas buenas de este karting.\\nPista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran fin de semana allí, son una gente fantástica y agradable. Mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla.\\nLas instalaciones super limpias.", "author": "David Herreros Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE", "timestamp": "3 years ago"} Solo puedo decir cosas buenas de este karting.\nPista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran fin de semana allí, son una gente fantástica y agradable. Mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla.\nLas instalaciones super limpias. 5 2023-01-31 01:52:39.833374+00 David Herreros Lopez \N 1 2026-01-30 09:54:08.330368+00 2026-01-30 02:01:10.912654+00 1800 \N google ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB unknown {"text": "Anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañero y a mi hoy un poco antes de lo que yo habia calculado. El chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta. Me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la ultima vuelta por unos segundos. Estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido. Para mi la atencion y valoracion al cliente es lo mas importante.", "author": "Jose Vázquez Parente", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB", "timestamp": "5 years ago"} Anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañero y a mi hoy un poco antes de lo que yo habia calculado. El chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta. Me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la ultima vuelta por unos segundos. Estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido. Para mi la atencion y valoracion al cliente es lo mas importante. 1 2021-01-31 01:52:39.833374+00 Jose Vázquez Parente \N 1 2026-01-30 09:54:08.202215+00 2026-01-30 02:01:10.74115+00 1848 \N google ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE unknown {"text": "Coches rápidos, circuito duro y Expectacular, instalaciones muy adecuadas, parking propio, y personal agradable.\\n\\nMi experiencia y la de mi hijo ha sido muy muy buena. Y repetiremos seguro.", "author": "antonio rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE", "timestamp": "3 years ago"} Coches rápidos, circuito duro y Expectacular, instalaciones muy adecuadas, parking propio, y personal agradable.\n\nMi experiencia y la de mi hijo ha sido muy muy buena. Y repetiremos seguro. 5 2023-01-31 01:52:39.833374+00 antonio rodriguez \N 1 2026-01-30 09:54:08.372318+00 2026-01-30 02:01:10.927521+00 1849 \N google ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE unknown {"text": "Muy buenas instalaciones. Se hace bastante ameno esperar tu turno porque tienen una terraza a la sombra para esperar. Un poco más caro que otros Karts.", "author": "Claudia Bustamante Ros", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE", "timestamp": "2 years ago"} Muy buenas instalaciones. Se hace bastante ameno esperar tu turno porque tienen una terraza a la sombra para esperar. Un poco más caro que otros Karts. 4 2024-01-31 01:52:39.833374+00 Claudia Bustamante Ros \N 1 2026-01-30 09:54:08.380207+00 2026-01-30 02:01:10.931079+00 1850 \N google ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB unknown {"text": "Nos lo pasamos genial. El precio está muy bien y la atención de los trabajadores también. Volveremos, sin duda.", "author": "Scherezade Gosalvez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB", "timestamp": "a year ago"} Nos lo pasamos genial. El precio está muy bien y la atención de los trabajadores también. Volveremos, sin duda. 5 2025-01-30 01:52:39.833374+00 Scherezade Gosalvez \N 1 2026-01-30 09:54:08.387871+00 2026-01-30 02:01:10.934046+00 1851 \N google ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE unknown {"text": "Buena pista, merece la pena. Distintas opciones. La cafeteria muy agradable y buenos precios.", "author": "Felipe byLogic", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE", "timestamp": "a year ago"} Buena pista, merece la pena. Distintas opciones. La cafeteria muy agradable y buenos precios. 5 2025-01-30 01:52:39.833374+00 Felipe byLogic \N 1 2026-01-30 09:54:08.400563+00 2026-01-30 02:01:10.93808+00 1852 \N google ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE unknown {"text": "Los trabajadores son muy amables, hay un ambiente súper bueno, he ido 4 veces y en las 4 veces ha sido la experiencia de 10, el circuito muy guapo y los Karts también. Espectacular 👌", "author": "elcristian12xd", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE", "timestamp": "3 years ago"} Los trabajadores son muy amables, hay un ambiente súper bueno, he ido 4 veces y en las 4 veces ha sido la experiencia de 10, el circuito muy guapo y los Karts también. Espectacular 👌 5 2023-01-31 01:52:39.833374+00 elcristian12xd \N 1 2026-01-30 09:54:08.417216+00 2026-01-30 02:01:10.941656+00 1853 \N google ChdDSUhNMG9nS0VJQ0FnSURTMWY3TWxRRRAB unknown {"text": "Un sitio muy divertido y con grandes profesionales 💯✨", "author": "Alex Curious Life", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMWY3TWxRRRAB", "timestamp": "5 years ago"} Un sitio muy divertido y con grandes profesionales 💯✨ 5 2021-01-31 01:52:39.833374+00 Alex Curious Life \N 1 2026-01-30 09:54:08.42626+00 2026-01-30 02:01:10.944987+00 1855 \N google ChdDSUhNMG9nS0VJQ0FnSURwcnZ6TnFBRRAB unknown {"text": "Muy buen sitio para pasar en familia y divertirse un rato.\\nA los niños les encanta, pero los que disfrutamos somos los padres.", "author": "Angelillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcnZ6TnFBRRAB", "timestamp": "2 years ago"} Muy buen sitio para pasar en familia y divertirse un rato.\nA los niños les encanta, pero los que disfrutamos somos los padres. 5 2024-01-31 01:52:39.833374+00 Angelillo \N 1 2026-01-30 09:54:08.450581+00 2026-01-30 02:01:10.95217+00 1856 \N google ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE unknown {"text": "Schöne Bahn, gutes Personal, nur schade das im July und August Mittwochs die 1 für 2 Regelung nicht gilt. Da habe ich mich schon verarscht gefühlt...", "author": "Dirk Remmert", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE", "timestamp": "2 years ago"} Schöne Bahn, gutes Personal, nur schade das im July und August Mittwochs die 1 für 2 Regelung nicht gilt. Da habe ich mich schon verarscht gefühlt... 4 2024-01-31 01:52:39.833374+00 Dirk Remmert \N 1 2026-01-30 09:54:08.458415+00 2026-01-30 02:01:10.954839+00 1857 \N google ChZDSUhNMG9nS0VJQ0FnSUQ1aXZuVGRREAE unknown {"text": "Prueba tus habilidades de conducir y diviértete", "author": "Heliodoro Cuesta (Helio TVsetup)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1aXZuVGRREAE", "timestamp": "2 years ago"} Prueba tus habilidades de conducir y diviértete 5 2024-01-31 01:52:39.833374+00 Heliodoro Cuesta (Helio TVsetup) \N 1 2026-01-30 09:54:08.467773+00 2026-01-30 02:01:10.959353+00 1806 \N google ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE unknown {"text": "Primera vez que mi hija de siete años pilotaba un kart. Espectacular, ha salido eufórica de su carrera. Los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infantil, todos corren en la misma pista, mejor este método que la pista infantil ).\\nLo hemos pasado en grande. Volveremos seguro", "author": "Rafael Valencia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE", "timestamp": "5 years ago"} Primera vez que mi hija de siete años pilotaba un kart. Espectacular, ha salido eufórica de su carrera. Los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infantil, todos corren en la misma pista, mejor este método que la pista infantil ).\nLo hemos pasado en grande. Volveremos seguro 5 2021-01-31 01:52:39.833374+00 Rafael Valencia \N 1 2026-01-30 09:54:08.221578+00 2026-01-30 02:01:10.765346+00 1808 \N google ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB unknown {"text": "Top, on a passé un très bon moment, réceptionniste qui parle français, le prix est très abordable pour 4 personnes, les moniteur au top, le circuit aussi. Pour ceux qui passe leur vacances à côté franchement à faire", "author": "Ami Lari", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB", "timestamp": "3 years ago"} Top, on a passé un très bon moment, réceptionniste qui parle français, le prix est très abordable pour 4 personnes, les moniteur au top, le circuit aussi. Pour ceux qui passe leur vacances à côté franchement à faire 5 2023-01-31 01:52:39.833374+00 Ami Lari \N 1 2026-01-30 09:54:08.227201+00 2026-01-30 02:01:10.772851+00 1862 \N google ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE unknown {"text": "Los mejores karts a los que he ido\\nMuy bien de precio , cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas , te das 4 vueltas y se termina\\nLos karts bien mantenidos sin ningún problema, la pista igual y sus trabajadores muy agradables", "author": "Dani Triviño", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE", "timestamp": "2 years ago"} Los mejores karts a los que he ido\nMuy bien de precio , cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas , te das 4 vueltas y se termina\nLos karts bien mantenidos sin ningún problema, la pista igual y sus trabajadores muy agradables 5 2024-01-31 01:52:39.833374+00 Dani Triviño \N 1 2026-01-30 09:54:08.507905+00 2026-01-30 02:01:10.980317+00 1864 \N google ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE unknown {"text": "Sehr gute Bahn, gute Benziner.\\nFreundliche Mitarbeiter.\\nHelme wurden nach der Nutzung desinfiziert.\\nGutes Preis / Leistungsverhältnis.", "author": "Hubert Reith", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE", "timestamp": "2 years ago"} Sehr gute Bahn, gute Benziner.\nFreundliche Mitarbeiter.\nHelme wurden nach der Nutzung desinfiziert.\nGutes Preis / Leistungsverhältnis. 5 2024-01-31 01:52:39.833374+00 Hubert Reith \N 1 2026-01-30 09:54:08.516275+00 2026-01-30 02:01:10.985825+00 1865 \N google ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE unknown {"text": "Estupenda la experiencia. Los F 300 van muy bien.", "author": "Cesar Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE", "timestamp": "7 years ago"} Estupenda la experiencia. Los F 300 van muy bien. 5 2019-02-01 01:52:39.833374+00 Cesar Moreno \N 1 2026-01-30 09:54:08.519048+00 2026-01-30 02:01:10.988782+00 1867 \N google Ci9DQUlRQUNvZENodHljRjlvT21wVlZYTTBabXBhYzBkbmRTMTJSMXBZTldWcGJWRRAB unknown {"text": "Mukava rata ja hyvät autot.", "author": "Kim Koivuranta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wVlZYTTBabXBhYzBkbmRTMTJSMXBZTldWcGJWRRAB", "timestamp": "2 months ago"} Mukava rata ja hyvät autot. 5 2025-12-01 01:52:39.833374+00 Kim Koivuranta \N 1 2026-01-30 09:54:08.524596+00 2026-01-30 02:01:10.99447+00 1868 \N google ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE unknown {"text": "Superbe accueil une demoiselle parlait le français ! Un très beau circuit ! Qu'une hâte revenir vite pour battre mon record !", "author": "alex _tremiste_", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE", "timestamp": "2 years ago"} Superbe accueil une demoiselle parlait le français ! Un très beau circuit ! Qu'une hâte revenir vite pour battre mon record ! 5 2024-01-31 01:52:39.833374+00 alex _tremiste_ \N 1 2026-01-30 09:54:08.527071+00 2026-01-30 02:01:10.99749+00 1869 \N google ChZDSUhNMG9nS0VJQ0FnSUQ3bkxfMlp3EAE unknown {"text": "Pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre karting c'est vraiment trop dangereux 😰", "author": "Rémi Tessier", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3bkxfMlp3EAE", "timestamp": "a year ago"} Pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre karting c'est vraiment trop dangereux 😰 1 2025-01-30 01:52:39.833374+00 Rémi Tessier \N 1 2026-01-30 09:54:08.529317+00 2026-01-30 02:01:10.99988+00 1870 \N google ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB unknown {"text": "KARTING DE LUJO¡¡¡ perfecto para pasar un buen rato con los amigos,familia.\\nlos chicos encantadores y muy atentos¡¡¡¡ comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta genial.muy bien localizado..\\nMUY RECOMENDABLE¡¡¡¡¡", "author": "Jennifer Olmos Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB", "timestamp": "5 years ago"} KARTING DE LUJO¡¡¡ perfecto para pasar un buen rato con los amigos,familia.\nlos chicos encantadores y muy atentos¡¡¡¡ comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta genial.muy bien localizado..\nMUY RECOMENDABLE¡¡¡¡¡ 5 2021-01-31 01:52:39.833374+00 Jennifer Olmos Fernandez \N 1 2026-01-30 09:54:08.532065+00 2026-01-30 02:01:11.002775+00 1874 \N google ChdDSUhNMG9nS0VJQ0FnSUNhd09uTGpnRRAB unknown {"text": "Muy buenas instalaciones para pasar un buen rato de karts.", "author": "Maximo Iñiguez Sevilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhd09uTGpnRRAB", "timestamp": "4 years ago"} Muy buenas instalaciones para pasar un buen rato de karts. 5 2022-01-31 01:52:39.833374+00 Maximo Iñiguez Sevilla \N 1 2026-01-30 09:54:08.545434+00 2026-01-30 02:01:11.016696+00 1875 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCalNUbDNSWEYyU2kxblptbFhRVlF3WjJWdFFuYxAB unknown {"text": "Bra gokarter og gøy bane", "author": "Rune Heggland", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCalNUbDNSWEYyU2kxblptbFhRVlF3WjJWdFFuYxAB", "timestamp": "2 months ago"} Bra gokarter og gøy bane 5 2025-12-01 01:52:39.833374+00 Rune Heggland \N 1 2026-01-30 09:54:08.549702+00 2026-01-30 02:01:11.021244+00 1877 \N google ChdDSUhNMG9nS0VJQ0FnSURob0xHYXJBRRAB unknown {"text": "Un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encantados ellos y nosotros,lo recomiendo 100%", "author": "Manuel Ortiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURob0xHYXJBRRAB", "timestamp": "2 years ago"} Un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encantados ellos y nosotros,lo recomiendo 100% 5 2024-01-31 01:52:39.833374+00 Manuel Ortiz \N 1 2026-01-30 09:54:08.555307+00 2026-01-30 02:01:11.027922+00 1879 \N google ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE unknown {"text": "Trabajadores majísimos y genial para un día con amigos o familia. Siempre que vamos a karts elegimos este sitio.", "author": "Dominik Novotný", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE", "timestamp": "a year ago"} Trabajadores majísimos y genial para un día con amigos o familia. Siempre que vamos a karts elegimos este sitio. 5 2025-01-30 01:52:39.833374+00 Dominik Novotný \N 1 2026-01-30 09:54:08.561511+00 2026-01-30 02:01:11.033931+00 1880 \N google ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE unknown {"text": "Somos de Galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de acudir por lo menos unas 3-4 veces al Go Karts Mar Menor, personal de 10, circuito de 10 y Karts de 10, muy recomendable la experiencia con el F400! Tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vuelta rápida, una pasada!", "author": "Martín Gutiérrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE", "timestamp": "4 years ago"} Somos de Galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de acudir por lo menos unas 3-4 veces al Go Karts Mar Menor, personal de 10, circuito de 10 y Karts de 10, muy recomendable la experiencia con el F400! Tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vuelta rápida, una pasada! 5 2022-01-31 01:52:39.833374+00 Martín Gutiérrez \N 1 2026-01-30 09:54:08.564994+00 2026-01-30 02:01:11.037218+00 1881 \N google ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB unknown {"text": "Accueil sympathique. Explication facile via whatsapp pour se renseigner. Réponse rapide. Nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands. Un moment sympathique à partager entre amis ou en famille.", "author": "Eric Deliers", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB", "timestamp": "4 years ago"} Accueil sympathique. Explication facile via whatsapp pour se renseigner. Réponse rapide. Nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands. Un moment sympathique à partager entre amis ou en famille. 5 2022-01-31 01:52:39.833374+00 Eric Deliers \N 1 2026-01-30 09:54:08.568047+00 2026-01-30 02:01:11.040637+00 2421 \N google ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB unknown {"text": "Muy familiar", "author": "Piedad Quiñones", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB", "timestamp": "Edited 7 years ago"} Muy familiar 4 2026-01-30 01:52:39.833374+00 Piedad Quiñones \N 1 2026-01-30 09:54:10.638598+00 2026-01-30 02:01:13.514928+00 1819 \N google ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE unknown {"text": "Doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem. Dzieciaki bawiły się bardzo dobrze. Trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt sezonu (sierpień). Polecam.", "author": "Hubert Podgórski", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE", "timestamp": "4 years ago"} Doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem. Dzieciaki bawiły się bardzo dobrze. Trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt sezonu (sierpień). Polecam. 5 2022-01-31 01:52:39.833374+00 Hubert Podgórski \N 1 2026-01-30 09:54:08.256462+00 2026-01-30 02:01:10.818083+00 1884 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB unknown {"text": "El personal es muy cercano, su flota de Karts están en muy buen estado, la pista es fantástica y la tienen supercuidada, organizan eventos increíbles... Lo recomiendo sin duda, un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos.", "author": "Josema Pinar Laredo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB", "timestamp": "Edited 11 months ago"} El personal es muy cercano, su flota de Karts están en muy buen estado, la pista es fantástica y la tienen supercuidada, organizan eventos increíbles... Lo recomiendo sin duda, un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos. 5 2026-01-30 01:52:39.833374+00 Josema Pinar Laredo \N 1 2026-01-30 09:54:08.577939+00 2026-01-30 02:01:11.050984+00 1885 \N google ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB unknown {"text": "Muy contentos con ellos!\\nLas instalaciones impecables, los vehículos de maravilla y lo mejor el personal! Muy recomendables para cualquier público y situación, incluso eventos.", "author": "Manu Bermejo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB", "timestamp": "4 years ago"} Muy contentos con ellos!\nLas instalaciones impecables, los vehículos de maravilla y lo mejor el personal! Muy recomendables para cualquier público y situación, incluso eventos. 5 2022-01-31 01:52:39.833374+00 Manu Bermejo \N 1 2026-01-30 09:54:08.580609+00 2026-01-30 02:01:11.053554+00 1886 \N google ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE unknown {"text": "Es el mejor lugar de Karts de toda la peninsula Ibérica... nisiquiera la pista de Alonso de Asturias es tan completa y afable. Además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones, la atención profesional de los responsables y los clientes asiduos como “el Garre y su vaquilla corneadora” no os dejaran indiferentes. Recomiendo la actividad en el Mar Menor.", "author": "José Miguel Juan Vicente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE", "timestamp": "6 years ago"} Es el mejor lugar de Karts de toda la peninsula Ibérica... nisiquiera la pista de Alonso de Asturias es tan completa y afable. Además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones, la atención profesional de los responsables y los clientes asiduos como “el Garre y su vaquilla corneadora” no os dejaran indiferentes. Recomiendo la actividad en el Mar Menor. 5 2020-02-01 01:52:39.833374+00 José Miguel Juan Vicente \N 1 2026-01-30 09:54:08.583846+00 2026-01-30 02:01:11.057075+00 1887 \N google Ci9DQUlRQUNvZENodHljRjlvT2xOeWNqQnJSMU4yUmpWTk9EWmpia1J6WmpocU9YYxAB unknown {"text": "Kul bana och vettiga Cartar.", "author": "Thomas Gillisson", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOeWNqQnJSMU4yUmpWTk9EWmpia1J6WmpocU9YYxAB", "timestamp": "3 weeks ago"} Kul bana och vettiga Cartar. 4 2026-01-09 01:52:39.833374+00 Thomas Gillisson \N 1 2026-01-30 09:54:08.586254+00 2026-01-30 02:01:11.059534+00 1888 \N google ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE unknown {"text": "Circuito muy divertido técnico y muy bien cuidado . Trato muy muy agradable tanto de los dueños como del personal . Cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo . 100% recomendable", "author": "David fernandez. POLLI", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE", "timestamp": "Edited 7 years ago"} Circuito muy divertido técnico y muy bien cuidado . Trato muy muy agradable tanto de los dueños como del personal . Cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo . 100% recomendable 5 2026-01-30 01:52:39.833374+00 David fernandez. POLLI \N 1 2026-01-30 09:54:08.58878+00 2026-01-30 02:01:11.062263+00 1889 \N google ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB unknown {"text": "Posiblemente la mejor pista de Murcia. Si sois 10 o más se pueden hacer calentamientos, clasi y carreras. Pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora.", "author": "Emilio Gil López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB", "timestamp": "7 years ago"} Posiblemente la mejor pista de Murcia. Si sois 10 o más se pueden hacer calentamientos, clasi y carreras. Pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora. 5 2019-02-01 01:52:39.833374+00 Emilio Gil López \N 1 2026-01-30 09:54:08.591229+00 2026-01-30 02:01:11.065523+00 1890 \N google ChZDSUhNMG9nS0VJQ0FnSUNMaDk2bEtREAE unknown {"text": "Un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que hay.", "author": "Eduardo Francisco Garrido Zorrilla (El Edu)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMaDk2bEtREAE", "timestamp": "a year ago"} Un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que hay. 4 2025-01-30 01:52:39.833374+00 Eduardo Francisco Garrido Zorrilla (El Edu) \N 1 2026-01-30 09:54:08.593294+00 2026-01-30 02:01:11.067834+00 1902 \N google ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB unknown {"text": "No nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente con kar que corren mas y nos hagan sentirnos inseguros, y no son nada atentos ni simpaticos", "author": "Ade suarez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB", "timestamp": "a year ago"} No nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente con kar que corren mas y nos hagan sentirnos inseguros, y no son nada atentos ni simpaticos 1 2025-01-30 01:52:39.833374+00 Ade suarez \N 1 2026-01-30 09:54:08.633811+00 2026-01-30 02:01:11.12617+00 1892 \N google ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE unknown {"text": "Un sitio estupendo para disfrutar de un buen día de Karts. Además de la carrera puedes comer allí y saldrás más que satisfecho. Un 10 para la dirección del establecimiento que se nota que año tras año se van superando.", "author": "Asier Delicado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE", "timestamp": "8 years ago"} Un sitio estupendo para disfrutar de un buen día de Karts. Además de la carrera puedes comer allí y saldrás más que satisfecho. Un 10 para la dirección del establecimiento que se nota que año tras año se van superando. 5 2018-02-01 01:52:39.833374+00 Asier Delicado \N 1 2026-01-30 09:54:08.599055+00 2026-01-30 02:01:11.074382+00 1893 \N google ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE unknown {"text": "Soy cliente habitual y ayer estuve de nuevo como cada mes, siempre recibo un trato excelente, los kart van de maravilla el circuito esta cuidado y el personal tiene un trato excelente para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio", "author": "Gineso7", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE", "timestamp": "4 years ago"} Soy cliente habitual y ayer estuve de nuevo como cada mes, siempre recibo un trato excelente, los kart van de maravilla el circuito esta cuidado y el personal tiene un trato excelente para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio 5 2022-01-31 01:52:39.833374+00 Gineso7 \N 1 2026-01-30 09:54:08.603358+00 2026-01-30 02:01:11.078765+00 1894 \N google ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE unknown {"text": "Excelente circuito, muy grande por lo que la sensación de competencia es increíble. Una gran experiencia. Apto solamente para amantes del motor", "author": "Carlos García Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE", "timestamp": "4 years ago"} Excelente circuito, muy grande por lo que la sensación de competencia es increíble. Una gran experiencia. Apto solamente para amantes del motor 5 2022-01-31 01:52:39.833374+00 Carlos García Martínez \N 1 2026-01-30 09:54:08.606678+00 2026-01-30 02:01:11.082502+00 1895 \N google ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE unknown {"text": "La pera!!! Siempre hacemos una carrera familiar y se portan muy bien! Es verdad que había un kart que se estropeó pero el resto muy bien!", "author": "paloma neira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE", "timestamp": "a year ago"} La pera!!! Siempre hacemos una carrera familiar y se portan muy bien! Es verdad que había un kart que se estropeó pero el resto muy bien! 4 2025-01-30 01:52:39.833374+00 paloma neira \N 1 2026-01-30 09:54:08.608969+00 2026-01-30 02:01:11.085811+00 1896 \N google ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB unknown {"text": "Avions juste besoin de renseignements très bien accueil et cerise sur le gâteau une des employése parlait français\\nNous irons avec les enfants", "author": "leflao brigitte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB", "timestamp": "a year ago"} Avions juste besoin de renseignements très bien accueil et cerise sur le gâteau une des employése parlait français\nNous irons avec les enfants 5 2025-01-30 01:52:39.833374+00 leflao brigitte \N 1 2026-01-30 09:54:08.611265+00 2026-01-30 02:01:11.08959+00 1897 \N google ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE unknown {"text": "Los mejores Karts que he probado. Un circuito largo y divertido, unos Karts potentes pero cómodos y un trato absolutamente excepcional. Sin ninguna duda repetiré", "author": "Carlos Ferrús Ferri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE", "timestamp": "2 years ago"} Los mejores Karts que he probado. Un circuito largo y divertido, unos Karts potentes pero cómodos y un trato absolutamente excepcional. Sin ninguna duda repetiré 5 2024-01-31 01:52:39.833374+00 Carlos Ferrús Ferri \N 1 2026-01-30 09:54:08.614665+00 2026-01-30 02:01:11.095048+00 1898 \N google ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE unknown {"text": "Los coches están bien, la atención muy buena. Pasamos un rato estupendo soltando adrenalina, para repetir por supuesto", "author": "Alejandra.calle@gmail.com Markelasier2", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE", "timestamp": "2 years ago"} Los coches están bien, la atención muy buena. Pasamos un rato estupendo soltando adrenalina, para repetir por supuesto 4 2024-01-31 01:52:39.833374+00 Alejandra.calle@gmail.com Markelasier2 \N 1 2026-01-30 09:54:08.617019+00 2026-01-30 02:01:11.099426+00 1899 \N google ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE unknown {"text": "Es el mejor circuito de karting de la Región de Murcia y de levante no solo por los karts, higiene y circuito sino por el trato y servicio al cliente. Se crea afición sana y competitiva y eso es de agradecer!!", "author": "Adrián Valverde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE", "timestamp": "4 years ago"} Es el mejor circuito de karting de la Región de Murcia y de levante no solo por los karts, higiene y circuito sino por el trato y servicio al cliente. Se crea afición sana y competitiva y eso es de agradecer!! 5 2022-01-31 01:52:39.833374+00 Adrián Valverde \N 1 2026-01-30 09:54:08.619834+00 2026-01-30 02:01:11.103716+00 1900 \N google ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE unknown {"text": "Un gran lugar con gente muy agradable,a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la trataron muy bien.", "author": "Carlos Martin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE", "timestamp": "7 years ago"} Un gran lugar con gente muy agradable,a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la trataron muy bien. 5 2019-02-01 01:52:39.833374+00 Carlos Martin \N 1 2026-01-30 09:54:08.622924+00 2026-01-30 02:01:11.108908+00 1901 \N google ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE unknown {"text": "A mi hijo le encanta ir. Esta vez ha tenido salida desde la parrilla!!! Las vistas desde la terraza del \\"pitlane\\" son fantásticas", "author": "Isabel González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE", "timestamp": "4 years ago"} A mi hijo le encanta ir. Esta vez ha tenido salida desde la parrilla!!! Las vistas desde la terraza del "pitlane" son fantásticas 5 2022-01-31 01:52:39.833374+00 Isabel González \N 1 2026-01-30 09:54:08.627084+00 2026-01-30 02:01:11.116801+00 1937 \N google ChdDSUhNMG9nS0VJQ0FnSURwck0yQzlnRRAB unknown {"text": "Buen circuito y buena organización.", "author": "RICARDO SAGUAR PEINADO", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwck0yQzlnRRAB", "timestamp": "2 years ago"} Buen circuito y buena organización. 4 2024-01-31 01:52:39.833374+00 RICARDO SAGUAR PEINADO \N 1 2026-01-30 09:54:08.758225+00 2026-01-30 02:01:11.282754+00 1826 \N google ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE unknown {"text": "Karting moderno y bonito, te sientes un piloto.\\nLlevado por una familia que te asesora y ayuda en tus dudas.\\nInstalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por meta.\\nTambién tienen cámaras que van en tu casco para grabar la carrera.\\nDesde la cafetería y la terraza que encima hay ves perfectamente el circuito.\\nSi tienes suerte ves los aviones de la Base aérea de San Javier ya que la pista del aeropuerto está a 300 m.\\nBonita jornada.", "author": "Jorge Vazquez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE", "timestamp": "3 years ago"} Karting moderno y bonito, te sientes un piloto.\nLlevado por una familia que te asesora y ayuda en tus dudas.\nInstalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por meta.\nTambién tienen cámaras que van en tu casco para grabar la carrera.\nDesde la cafetería y la terraza que encima hay ves perfectamente el circuito.\nSi tienes suerte ves los aviones de la Base aérea de San Javier ya que la pista del aeropuerto está a 300 m.\nBonita jornada. 5 2023-01-31 01:52:39.833374+00 Jorge Vazquez \N 1 2026-01-30 09:54:08.275454+00 2026-01-30 02:01:10.846455+00 1827 \N google ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB unknown {"text": "Muy buen servicio y el niño encantado , ya quiere volver", "author": "Pedro Jose", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB", "timestamp": "4 years ago"} Muy buen servicio y el niño encantado , ya quiere volver 5 2022-01-31 01:52:39.833374+00 Pedro Jose \N 1 2026-01-30 09:54:08.277862+00 2026-01-30 02:01:10.850364+00 1829 \N google ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB unknown {"text": "Trato fantástico, llame por teléfono y me atendieron al momento, aún apesar de que ese día llovió, solo la estancia fue agradable, tenían buena conservación en los vehículos, seguridad en la pista y un sistema de clasificación que incitaba a mejorar en carrera.", "author": "Alfonso Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB", "timestamp": "3 years ago"} Trato fantástico, llame por teléfono y me atendieron al momento, aún apesar de que ese día llovió, solo la estancia fue agradable, tenían buena conservación en los vehículos, seguridad en la pista y un sistema de clasificación que incitaba a mejorar en carrera. 5 2023-01-31 01:52:39.833374+00 Alfonso Hernández \N 1 2026-01-30 09:54:08.285986+00 2026-01-30 02:01:10.864919+00 1907 \N google ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB unknown {"text": "Todo muy bien, a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos, en la 2 tanda.", "author": "Antonio Francisco Benitez Rubio", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB", "timestamp": "2 years ago"} Todo muy bien, a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos, en la 2 tanda. 4 2024-01-31 01:52:39.833374+00 Antonio Francisco Benitez Rubio \N 1 2026-01-30 09:54:08.64931+00 2026-01-30 02:01:11.149837+00 1908 \N google ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE unknown {"text": "Está genial!!!\\nCircuito guapo, con Cars de diferentes cilindradas, tanto para niños como adultos.\\nCafetería buena, y tasas las instalaciones muy cuidadas.", "author": "Diego Cuesta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE", "timestamp": "7 years ago"} Está genial!!!\nCircuito guapo, con Cars de diferentes cilindradas, tanto para niños como adultos.\nCafetería buena, y tasas las instalaciones muy cuidadas. 5 2019-02-01 01:52:39.833374+00 Diego Cuesta \N 1 2026-01-30 09:54:08.651799+00 2026-01-30 02:01:11.157899+00 1909 \N google ChdDSUhNMG9nS0VJQ0FnSURXdjl2VHVnRRAB unknown {"text": "La verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo recomiendo para cumpleaños como para pasar una tarde divertida buen sitio y trato espectacular", "author": "Natalia Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdjl2VHVnRRAB", "timestamp": "3 years ago"} La verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo recomiendo para cumpleaños como para pasar una tarde divertida buen sitio y trato espectacular 5 2023-01-31 01:52:39.833374+00 Natalia Martinez \N 1 2026-01-30 09:54:08.655232+00 2026-01-30 02:01:11.162908+00 1910 \N google Ci9DQUlRQUNvZENodHljRjlvT21KclZuVmFXRzFuVW1obWFXczNObGhaTW5SRFpYYxAB unknown {"text": "12 euro les 8 minutes moteur ados .", "author": "Fayrouz Grine", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KclZuVmFXRzFuVW1obWFXczNObGhaTW5SRFpYYxAB", "timestamp": "6 months ago"} 12 euro les 8 minutes moteur ados . 5 2025-08-03 00:52:39.833374+00 Fayrouz Grine \N 1 2026-01-30 09:54:08.659745+00 2026-01-30 02:01:11.167461+00 1911 \N google ChdDSUhNMG9nS0VJQ0FnSURRNWVMMHFBRRAB unknown {"text": "Lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc) maar er is ook keuze voor 400cc vanaf 18 jaar", "author": "Bernard Preneel", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRNWVMMHFBRRAB", "timestamp": "8 years ago"} Lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc) maar er is ook keuze voor 400cc vanaf 18 jaar 4 2018-02-01 01:52:39.833374+00 Bernard Preneel \N 1 2026-01-30 09:54:08.664607+00 2026-01-30 02:01:11.175099+00 1912 \N google ChdDSUhNMG9nS0VJQ0FnSUNYMy1XcnJRRRAB unknown {"text": "Circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi", "author": "Cristian Murcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYMy1XcnJRRRAB", "timestamp": "a year ago"} Circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi 5 2025-01-30 01:52:39.833374+00 Cristian Murcia \N 1 2026-01-30 09:54:08.66813+00 2026-01-30 02:01:11.179637+00 1938 \N google ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE unknown {"text": "Una experiencia inolvidable! Los encargados muy atentos y profesionales . El mejor karting de nuestra zona ! 100% recomendable! 💯", "author": "Kristina Luneva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE", "timestamp": "2 years ago"} Una experiencia inolvidable! Los encargados muy atentos y profesionales . El mejor karting de nuestra zona ! 100% recomendable! 💯 5 2024-01-31 01:52:39.833374+00 Kristina Luneva \N 1 2026-01-30 09:54:08.761074+00 2026-01-30 02:01:11.286153+00 1915 \N google ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE unknown {"text": "Uno de los mejores circuitos de la region de Murcia. Algunos karts estan algo descuidados. Buena organización. Fresca terraza para tomar algo mientras esperas y Bar. Buena actividad para cumpleaños o despedidas.", "author": "Oscar Pujante", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE", "timestamp": "8 years ago"} Uno de los mejores circuitos de la region de Murcia. Algunos karts estan algo descuidados. Buena organización. Fresca terraza para tomar algo mientras esperas y Bar. Buena actividad para cumpleaños o despedidas. 4 2018-02-01 01:52:39.833374+00 Oscar Pujante \N 1 2026-01-30 09:54:08.678867+00 2026-01-30 02:01:11.195364+00 1916 \N google ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE unknown {"text": "Lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento.\\nLas instalaciones están en buenas condiciones\\nEsperamos volver!", "author": "Edurne Pascua", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE", "timestamp": "3 years ago"} Lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento.\nLas instalaciones están en buenas condiciones\nEsperamos volver! 5 2023-01-31 01:52:39.833374+00 Edurne Pascua \N 1 2026-01-30 09:54:08.682465+00 2026-01-30 02:01:11.199018+00 1918 \N google Ci9DQUlRQUNvZENodHljRjlvT25GR00wNHRVbTV4WjA5bE5GTkRkSEZyTW1FNWRGRRAB unknown {"text": "Circuito de 50seg en buenas condiciones", "author": "Anfran89", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GR00wNHRVbTV4WjA5bE5GTkRkSEZyTW1FNWRGRRAB", "timestamp": "a week ago"} Circuito de 50seg en buenas condiciones 5 2026-01-23 01:52:39.833374+00 Anfran89 \N 1 2026-01-30 09:54:08.690029+00 2026-01-30 02:01:11.207557+00 1919 \N google ChZDSUhNMG9nS0VJQ0FnSUM3dHBlYlRnEAE unknown {"text": "Mon cœur balance entre le Go Karts Mar Menor et celui de Ciudad Quesada.\\nVraiment très bon moment sur place.", "author": "Romain Tenye", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3dHBlYlRnEAE", "timestamp": "a year ago"} Mon cœur balance entre le Go Karts Mar Menor et celui de Ciudad Quesada.\nVraiment très bon moment sur place. 5 2025-01-30 01:52:39.833374+00 Romain Tenye \N 1 2026-01-30 09:54:08.696233+00 2026-01-30 02:01:11.215389+00 1920 \N google ChZDSUhNMG9nS0VJQ0FnSUN4cXFQN0tBEAE unknown {"text": "Experiencia más que recomendable, y los dueños son encantadores.", "author": "Nacho Tomás", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cXFQN0tBEAE", "timestamp": "2 years ago"} Experiencia más que recomendable, y los dueños son encantadores. 5 2024-01-31 01:52:39.833374+00 Nacho Tomás \N 1 2026-01-30 09:54:08.698541+00 2026-01-30 02:01:11.218512+00 1921 \N google ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE unknown {"text": "Circuito bastante grande y a buen precio. Esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente.", "author": "Rodro Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE", "timestamp": "4 years ago"} Circuito bastante grande y a buen precio. Esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente. 5 2022-01-31 01:52:39.833374+00 Rodro Diaz \N 1 2026-01-30 09:54:08.701696+00 2026-01-30 02:01:11.224905+00 1922 \N google ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB unknown {"text": "Uno de los mejores circuitos de Karts de Murcia. Buenos coches y muchas curvas para pasar un buen rato. Además el precio es bastante asequible.", "author": "Enrique García Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB", "timestamp": "4 years ago"} Uno de los mejores circuitos de Karts de Murcia. Buenos coches y muchas curvas para pasar un buen rato. Además el precio es bastante asequible. 5 2022-01-31 01:52:39.833374+00 Enrique García Fernández \N 1 2026-01-30 09:54:08.705958+00 2026-01-30 02:01:11.229255+00 1923 \N google ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB unknown {"text": "Una experciencia única!!! Lo recomiendo 100%. Buen personal, buen trato, buenos karts y buena pista. Lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos. Enhorabuena por vuestro negocio y volveremos!!", "author": "Joaquin Ingles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB", "timestamp": "6 years ago"} Una experciencia única!!! Lo recomiendo 100%. Buen personal, buen trato, buenos karts y buena pista. Lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos. Enhorabuena por vuestro negocio y volveremos!! 5 2020-02-01 01:52:39.833374+00 Joaquin Ingles \N 1 2026-01-30 09:54:08.708938+00 2026-01-30 02:01:11.235159+00 1924 \N google ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB unknown {"text": "Buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles porque suele haber menos gente alli y las esperas son mas cortas. Los miercoles (no verano) también tienen una oferta de 2x1 en los karts", "author": "ManuFlosoYT", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB", "timestamp": "6 years ago"} Buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles porque suele haber menos gente alli y las esperas son mas cortas. Los miercoles (no verano) también tienen una oferta de 2x1 en los karts 5 2020-02-01 01:52:39.833374+00 ManuFlosoYT \N 1 2026-01-30 09:54:08.712074+00 2026-01-30 02:01:11.239409+00 1805 \N google ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB unknown {"text": "Su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor. Por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los clientes. Me reitero experiencia cliente 0 y de respeto ya ni hablamos. Gracias y que les deseo mucha suerte", "author": "Amf 82", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB", "timestamp": "3 years ago"} Su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor. Por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los clientes. Me reitero experiencia cliente 0 y de respeto ya ni hablamos. Gracias y que les deseo mucha suerte 1 2023-01-31 01:52:39.833374+00 Amf 82 \N 1 2026-01-30 09:54:08.21695+00 2026-01-30 02:01:10.76069+00 1837 \N google ChdDSUhNMG9nS0VJQ0FnSURybnJQbnR3RRAB unknown {"text": "Eine wirklich tolle Bahn. Tolle Auswahl an Fahrzeugklassen. Die Bahn ist eine tolle Herausforderung und macht somit besonders viel Spaß.", "author": "Dennis Fiedler", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURybnJQbnR3RRAB", "timestamp": "a year ago"} Eine wirklich tolle Bahn. Tolle Auswahl an Fahrzeugklassen. Die Bahn ist eine tolle Herausforderung und macht somit besonders viel Spaß. 5 2025-01-30 01:52:39.833374+00 Dennis Fiedler \N 1 2026-01-30 09:54:08.310594+00 2026-01-30 02:01:10.891058+00 1928 \N google ChdDSUhNMG9nS0VJQ0FnSURkXy15UHRnRRAB unknown {"text": "Muy divertido para ir con amigos\\nRecomiendo la modalidad de grande prix es la mejor relación calidad precio", "author": "J P", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkXy15UHRnRRAB", "timestamp": "a year ago"} Muy divertido para ir con amigos\nRecomiendo la modalidad de grande prix es la mejor relación calidad precio 5 2025-01-30 01:52:39.833374+00 J P \N 1 2026-01-30 09:54:08.72425+00 2026-01-30 02:01:11.253895+00 1929 \N google ChdDSUhNMG9nS0VJQ0FnSUQ4ODRxNnBRRRAB unknown {"text": "La mejor pista de la zona sin duda ! El circuito es una pasada, los precios son bastante más bajos que en otros circuitos y el trato es excelente! Recomendable 100%", "author": "A. M.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4ODRxNnBRRRAB", "timestamp": "5 years ago"} La mejor pista de la zona sin duda ! El circuito es una pasada, los precios son bastante más bajos que en otros circuitos y el trato es excelente! Recomendable 100% 5 2021-01-31 01:52:39.833374+00 A. M. \N 1 2026-01-30 09:54:08.727099+00 2026-01-30 02:01:11.256911+00 1931 \N google ChdDSUhNMG9nS0VJQ0FnSURXOU9ub2tnRRAB unknown {"text": "Personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones en muy buen estado. Volveré sin duda a disfrutar de la experiencia.", "author": "Victor Lanuza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOU9ub2tnRRAB", "timestamp": "3 years ago"} Personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones en muy buen estado. Volveré sin duda a disfrutar de la experiencia. 5 2023-01-31 01:52:39.833374+00 Victor Lanuza \N 1 2026-01-30 09:54:08.734536+00 2026-01-30 02:01:11.263346+00 1932 \N google ChZDSUhNMG9nS0VJQ0FnSUN3N2RlZFRnEAE unknown {"text": "Vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque parezca poco, luego una vez estás en ello te parece justo", "author": "Jose Manuel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3N2RlZFRnEAE", "timestamp": "7 years ago"} Vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque parezca poco, luego una vez estás en ello te parece justo 4 2019-02-01 01:52:39.833374+00 Jose Manuel \N 1 2026-01-30 09:54:08.737896+00 2026-01-30 02:01:11.266012+00 1933 \N google ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB unknown {"text": "Fantástico sitio para pasar la tarde con niños y/o amigos. Varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para que padres puedan montar con niños pequeños,y karts adaptados para personas con discapacidad.Muy recomendable", "author": "Victor Plaza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB", "timestamp": "5 years ago"} Fantástico sitio para pasar la tarde con niños y/o amigos. Varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para que padres puedan montar con niños pequeños,y karts adaptados para personas con discapacidad.Muy recomendable 5 2021-01-31 01:52:39.833374+00 Victor Plaza \N 1 2026-01-30 09:54:08.741675+00 2026-01-30 02:01:11.269023+00 1934 \N google ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB unknown {"text": "Roligt ställe för en fartfylld upplevelse. Ok priser!", "author": "Claes Fast", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB", "timestamp": "6 years ago"} Roligt ställe för en fartfylld upplevelse. Ok priser! 4 2020-02-01 01:52:39.833374+00 Claes Fast \N 1 2026-01-30 09:54:08.74583+00 2026-01-30 02:01:11.272117+00 1935 \N google ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB unknown {"text": "La pista muy buena pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber pagado 30 pavos por 10 minutos me he tirado toda la sesion esquivando karts NUNCA MAS VOY A PASAR POR ALLI!!!!!!!!", "author": "JOSE LUIS CARRASCO BARRAGAN", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB", "timestamp": "6 years ago"} La pista muy buena pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber pagado 30 pavos por 10 minutos me he tirado toda la sesion esquivando karts NUNCA MAS VOY A PASAR POR ALLI!!!!!!!! 1 2020-02-01 01:52:39.833374+00 JOSE LUIS CARRASCO BARRAGAN \N 1 2026-01-30 09:54:08.750658+00 2026-01-30 02:01:11.276838+00 1936 \N google ChZDSUhNMG9nS0VJQ0FnSUNRMXJXSVh3EAE unknown {"text": "Buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la velocidad, y si vas de acompañante dispone cafetería, bar donde tomarte algo mientras contemplas las carteras.", "author": "José Peñalver", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRMXJXSVh3EAE", "timestamp": "7 years ago"} Buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la velocidad, y si vas de acompañante dispone cafetería, bar donde tomarte algo mientras contemplas las carteras. 4 2019-02-01 01:52:39.833374+00 José Peñalver \N 1 2026-01-30 09:54:08.754427+00 2026-01-30 02:01:11.28031+00 1809 \N google ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB unknown {"text": "Fuimos a celebrar un éxito de nuestra empresa y la verdad que fue el mejor sitio donde pudimos ir. El trato del personal inmejorable, las instalaciones súper limpias y cómodas con todas las atenciones, y los vehículos a tope de gama. La verdad que repetiremos la experiencia. Todos mis compañeros y yo sólo tenemos palabras de agradecimiento hacia estos profesionales del Karting.", "author": "jaymon security", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB", "timestamp": "4 years ago"} Fuimos a celebrar un éxito de nuestra empresa y la verdad que fue el mejor sitio donde pudimos ir. El trato del personal inmejorable, las instalaciones súper limpias y cómodas con todas las atenciones, y los vehículos a tope de gama. La verdad que repetiremos la experiencia. Todos mis compañeros y yo sólo tenemos palabras de agradecimiento hacia estos profesionales del Karting. 5 2022-01-31 01:52:39.833374+00 jaymon security \N 1 2026-01-30 09:54:08.229893+00 2026-01-30 02:01:10.776878+00 1941 \N google ChdDSUhNMG9nS0VJQ0FnSUMzaE1PbjdBRRAB unknown {"text": "El mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instalaciones y los karts , de 10\\n100% recomendable", "author": "Pedro Muñoz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzaE1PbjdBRRAB", "timestamp": "Edited a year ago"} El mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instalaciones y los karts , de 10\n100% recomendable 5 2026-01-30 01:52:39.833374+00 Pedro Muñoz \N 1 2026-01-30 09:54:08.769758+00 2026-01-30 02:01:11.295704+00 1942 \N google Ci9DQUlRQUNvZENodHljRjlvT2xCNGRXUXllSGxLT1hWeVFsRk1Tams1UkUxeGRHYxAB unknown {"text": "Muy buena experiencia", "author": "Marien Martinez Garcia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCNGRXUXllSGxLT1hWeVFsRk1Tams1UkUxeGRHYxAB", "timestamp": "3 months ago"} Muy buena experiencia 5 2025-11-01 01:52:39.833374+00 Marien Martinez Garcia \N 1 2026-01-30 09:54:08.774053+00 2026-01-30 02:01:11.298499+00 1943 \N google ChdDSUhNMG9nS0VJQ0FnSUNDMzlXQjJnRRAB unknown {"text": "Bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo pero bonita experiencia 😘💙", "author": "Nobody", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMzlXQjJnRRAB", "timestamp": "5 years ago"} Bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo pero bonita experiencia 😘💙 5 2021-01-31 01:52:39.833374+00 Nobody \N 1 2026-01-30 09:54:08.777956+00 2026-01-30 02:01:11.301671+00 1945 \N google ChdDSUhNMG9nS0VJQ0FnSUQ2enVIT3ZnRRAB unknown {"text": "Buen karting. Muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos por el mismo precio. Al menos en septiembre q he estado yo....", "author": "Rodrigo de la iglesia diez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2enVIT3ZnRRAB", "timestamp": "4 years ago"} Buen karting. Muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos por el mismo precio. Al menos en septiembre q he estado yo.... 5 2022-01-31 01:52:39.833374+00 Rodrigo de la iglesia diez \N 1 2026-01-30 09:54:08.783902+00 2026-01-30 02:01:11.30867+00 1946 \N google ChZDSUhNMG9nS0VJQ0FnSUNhek03cUxnEAE unknown {"text": "Magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est super attentif toujours souriant merci à vous", "author": "Linda Bounaj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhek03cUxnEAE", "timestamp": "4 years ago"} Magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est super attentif toujours souriant merci à vous 5 2022-01-31 01:52:39.833374+00 Linda Bounaj \N 1 2026-01-30 09:54:08.786561+00 2026-01-30 02:01:11.311346+00 1947 \N google Ci9DQUlRQUNvZENodHljRjlvT205WWVVdzFYM0J3YkcxSFNHNWpOMmszY21wSlZHYxAB unknown {"text": "Lastig om een heat te boeken in het weekend", "author": "Allan van Weelie", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WWVVdzFYM0J3YkcxSFNHNWpOMmszY21wSlZHYxAB", "timestamp": "7 months ago"} Lastig om een heat te boeken in het weekend 3 2025-07-04 00:52:39.833374+00 Allan van Weelie \N 1 2026-01-30 09:54:08.79049+00 2026-01-30 02:01:11.315665+00 1948 \N google ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE unknown {"text": "Trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi primera visita. Volveré sin duda.", "author": "Alexis R.V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE", "timestamp": "7 years ago"} Trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi primera visita. Volveré sin duda. 5 2019-02-01 01:52:39.833374+00 Alexis R.V \N 1 2026-01-30 09:54:08.795109+00 2026-01-30 02:01:11.319164+00 1949 \N google ChdDSUhNMG9nS0VJQ0FnSUNtNWVuQ3Z3RRAB unknown {"text": "Un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron genial una buena experiencia y el precio económico", "author": "Jesus ignacio Egidos garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNWVuQ3Z3RRAB", "timestamp": "4 years ago"} Un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron genial una buena experiencia y el precio económico 5 2022-01-31 01:52:39.833374+00 Jesus ignacio Egidos garcia \N 1 2026-01-30 09:54:08.798216+00 2026-01-30 02:01:11.321797+00 1950 \N google ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB unknown {"text": "Gran circuito y karts muy divertidos. Trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. Espero q sigan así mucho tiempo porque se merecen lo mejor.", "author": "Elias Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB", "timestamp": "7 years ago"} Gran circuito y karts muy divertidos. Trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. Espero q sigan así mucho tiempo porque se merecen lo mejor. 5 2019-02-01 01:52:39.833374+00 Elias Rodriguez \N 1 2026-01-30 09:54:08.800594+00 2026-01-30 02:01:11.324451+00 2422 \N google ChZDSUhNMG9nS0VJQ0FnSURVOVBQWUR3EAE unknown {"text": "Genial", "author": "ʋɛʀօ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVOVBQWUR3EAE", "timestamp": "6 years ago"} Genial 5 2020-02-01 01:52:39.833374+00 ʋɛʀօ \N 1 2026-01-30 09:54:10.651489+00 2026-01-30 02:01:13.529026+00 1952 \N google ChZDSUhNMG9nS0VJQ0FnSUQ4LV9xYVR3EAE unknown {"text": "Un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el personal muy amable y cercano ademas de unas buenas medidas de seguridad.", "author": "Miriam", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4LV9xYVR3EAE", "timestamp": "5 years ago"} Un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el personal muy amable y cercano ademas de unas buenas medidas de seguridad. 5 2021-01-31 01:52:39.833374+00 Miriam \N 1 2026-01-30 09:54:08.808272+00 2026-01-30 02:01:11.332394+00 1953 \N google ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB unknown {"text": "El paseo en los Karts muy bien, lo disfrutamos. La atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuito, dejó bastante que desear.", "author": "M. Ángeles S. Olmos", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB", "timestamp": "2 years ago"} El paseo en los Karts muy bien, lo disfrutamos. La atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuito, dejó bastante que desear. 2 2024-01-31 01:52:39.833374+00 M. Ángeles S. Olmos \N 1 2026-01-30 09:54:08.811292+00 2026-01-30 02:01:11.335312+00 1954 \N google ChZDSUhNMG9nS0VJQ0FnSUNhaHVEbWJBEAE unknown {"text": "Mi hijo de 9 años se lo ha pasado genial. Buen precio y un trato bueno. Karts y pista en buenas condiciones.\\nRecomendable!!!!", "author": "Manuel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaHVEbWJBEAE", "timestamp": "4 years ago"} Mi hijo de 9 años se lo ha pasado genial. Buen precio y un trato bueno. Karts y pista en buenas condiciones.\nRecomendable!!!! 5 2022-01-31 01:52:39.833374+00 Manuel \N 1 2026-01-30 09:54:08.81409+00 2026-01-30 02:01:11.337787+00 1955 \N google ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE unknown {"text": "Experiencia formidable con mis hijos, sobre todo en la carrera infantil!!! Personal muy agradable!!! Repetiré sin duda", "author": "Pau Bustamante", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE", "timestamp": "3 years ago"} Experiencia formidable con mis hijos, sobre todo en la carrera infantil!!! Personal muy agradable!!! Repetiré sin duda 5 2023-01-31 01:52:39.833374+00 Pau Bustamante \N 1 2026-01-30 09:54:08.818407+00 2026-01-30 02:01:11.342321+00 1956 \N google ChZDSUhNMG9nS0VJQ0FnSUR1anVUWFhnEAE unknown {"text": "Genial. La mujer rubia súper encantadora. Los chicos de pista súper atentos a que todos estuviéramos agusto. Súper recomendable este sitio. Volveré seguro", "author": "J. GarMat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1anVUWFhnEAE", "timestamp": "3 years ago"} Genial. La mujer rubia súper encantadora. Los chicos de pista súper atentos a que todos estuviéramos agusto. Súper recomendable este sitio. Volveré seguro 5 2023-01-31 01:52:39.833374+00 J. GarMat \N 1 2026-01-30 09:54:08.822912+00 2026-01-30 02:01:11.347017+00 1957 \N google ChdDSUhNMG9nS0VJQ0FnSUNPa3I2MXN3RRAB unknown {"text": "No está ni tan bien, ni tan mal .. relativo calidad -precio .. Cars antiguos y la pista un poco pequeña !", "author": "Dobrin Dimitrov", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPa3I2MXN3RRAB", "timestamp": "3 years ago"} No está ni tan bien, ni tan mal .. relativo calidad -precio .. Cars antiguos y la pista un poco pequeña ! 3 2023-01-31 01:52:39.833374+00 Dobrin Dimitrov \N 1 2026-01-30 09:54:08.827176+00 2026-01-30 02:01:11.350815+00 1958 \N google ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB unknown {"text": "una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio, personal muy agradable y amable. Desde Galicia vine y me quedé con ganas de volver, repetiré 👋", "author": "gutierrez_ Racing_", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB", "timestamp": "4 years ago"} una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio, personal muy agradable y amable. Desde Galicia vine y me quedé con ganas de volver, repetiré 👋 5 2022-01-31 01:52:39.833374+00 gutierrez_ Racing_ \N 1 2026-01-30 09:54:08.832007+00 2026-01-30 02:01:11.354463+00 1959 \N google ChZDSUhNMG9nS0VJQ0FnSUNMcHJQMFZBEAE unknown {"text": "Grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidado.", "author": "Rodrigo Atienza Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMcHJQMFZBEAE", "timestamp": "a year ago"} Grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidado. 5 2025-01-30 01:52:39.833374+00 Rodrigo Atienza Pérez \N 1 2026-01-30 09:54:08.838217+00 2026-01-30 02:01:11.358161+00 1960 \N google ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE unknown {"text": "Magnifique piste pour passer un bon moment. Différentes catégories de kart, casques ionnisés, Charlotte et masque obligatoires. Une équipe au petit soin.", "author": "Cricri Divas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE", "timestamp": "4 years ago"} Magnifique piste pour passer un bon moment. Différentes catégories de kart, casques ionnisés, Charlotte et masque obligatoires. Une équipe au petit soin. 5 2022-01-31 01:52:39.833374+00 Cricri Divas \N 1 2026-01-30 09:54:08.843084+00 2026-01-30 02:01:11.360998+00 1961 \N google ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE unknown {"text": "Super buena atención, la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definitivamente repetiría", "author": "Aldimir", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE", "timestamp": "4 years ago"} Super buena atención, la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definitivamente repetiría 5 2022-01-31 01:52:39.833374+00 Aldimir \N 1 2026-01-30 09:54:08.847031+00 2026-01-30 02:01:11.364011+00 1962 \N google Ci9DQUlRQUNvZENodHljRjlvT21Wa1ZsRTVPSE5MYzNKaWRXZ3llRFZHZEdoYU4wRRAB unknown {"text": "Cudne miejsce dla całej rodziny", "author": "Jolanta Wojtaszek", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Wa1ZsRTVPSE5MYzNKaWRXZ3llRFZHZEdoYU4wRRAB", "timestamp": "5 months ago"} Cudne miejsce dla całej rodziny 5 2025-09-02 00:52:39.833374+00 Jolanta Wojtaszek \N 1 2026-01-30 09:54:08.849321+00 2026-01-30 02:01:11.36619+00 1963 \N google ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE unknown {"text": "Mes enfants ont adoré le karting Mar Menor, on a payé 10 euros pour 8min.", "author": "Hajar H", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE", "timestamp": "a year ago"} Mes enfants ont adoré le karting Mar Menor, on a payé 10 euros pour 8min. 4 2025-01-30 01:52:39.833374+00 Hajar H \N 1 2026-01-30 09:54:08.852679+00 2026-01-30 02:01:11.370309+00 1979 \N google ChdDSUhNMG9nS0VJQ0FnSURQaUlQT3NRRRAB unknown {"text": "Toll Strecke, super Anlage. Sehr Empfehlenswert.", "author": "Xoox Zick", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQaUlQT3NRRRAB", "timestamp": "a year ago"} Toll Strecke, super Anlage. Sehr Empfehlenswert. 5 2025-01-30 01:52:39.833374+00 Xoox Zick \N 1 2026-01-30 09:54:08.902113+00 2026-01-30 02:01:11.516338+00 1836 \N google ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB unknown {"text": "El mejor circuito de Karting en la zona sin ninguna duda. Desinfectan los karts y los cascos antes y después de cada uso. Perfecto para estar con amigos y familia en la terraza o en el porche. Desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas", "author": "Carlos Camacho", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB", "timestamp": "4 years ago"} El mejor circuito de Karting en la zona sin ninguna duda. Desinfectan los karts y los cascos antes y después de cada uso. Perfecto para estar con amigos y familia en la terraza o en el porche. Desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas 5 2022-01-31 01:52:39.833374+00 Carlos Camacho \N 1 2026-01-30 09:54:08.308369+00 2026-01-30 02:01:10.888549+00 1967 \N google ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB unknown {"text": "Fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌. Tiene cafetería con terraza fantástica", "author": "Francisco Perez ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB", "timestamp": "3 years ago"} Fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌. Tiene cafetería con terraza fantástica 5 2023-01-31 01:52:39.833374+00 Francisco Perez ruiz \N 1 2026-01-30 09:54:08.862255+00 2026-01-30 02:01:11.385348+00 1968 \N google ChdDSUhNMG9nS0VJQ0FnSURKMk9pcDVBRRAB unknown {"text": "Roligt, bra. Helt ok cartar.", "author": "Tommy Hansson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKMk9pcDVBRRAB", "timestamp": "2 years ago"} Roligt, bra. Helt ok cartar. 5 2024-01-31 01:52:39.833374+00 Tommy Hansson \N 1 2026-01-30 09:54:08.87105+00 2026-01-30 02:01:11.394685+00 1970 \N google ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB unknown {"text": "lo hemos pasado genial, grupo de 10, estupendo el personal, muy majos. carreras, organización, pista amplia, muchas gracias.", "author": "David", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB", "timestamp": "2 years ago"} lo hemos pasado genial, grupo de 10, estupendo el personal, muy majos. carreras, organización, pista amplia, muchas gracias. 5 2024-01-31 01:52:39.833374+00 David \N 1 2026-01-30 09:54:08.876393+00 2026-01-30 02:01:11.40159+00 1971 \N google ChZDSUhNMG9nS0VJQ0FnSURkdU9mZFh3EAE unknown {"text": "Son muy amables", "author": "Rafa Conde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkdU9mZFh3EAE", "timestamp": "a year ago"} Son muy amables 5 2025-01-30 01:52:39.833374+00 Rafa Conde \N 1 2026-01-30 09:54:08.880821+00 2026-01-30 02:01:11.420513+00 1972 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3b3FudHl3RRAB unknown {"text": "Una pista estupenda siempre que voy por esa zona término haciendo unas visitas", "author": "EL COCHE ESCUELA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3b3FudHl3RRAB", "timestamp": "a year ago"} Una pista estupenda siempre que voy por esa zona término haciendo unas visitas 5 2025-01-30 01:52:39.833374+00 EL COCHE ESCUELA \N 1 2026-01-30 09:54:08.883589+00 2026-01-30 02:01:11.440901+00 1973 \N google ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB unknown {"text": "Das Personal ist sehr freundlich, auch im Restaurant. Die Preise nicht billig, aber durchaus im Durchschnitt.....", "author": "Angelika Heinemann", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB", "timestamp": "a year ago"} Das Personal ist sehr freundlich, auch im Restaurant. Die Preise nicht billig, aber durchaus im Durchschnitt..... 5 2025-01-30 01:52:39.833374+00 Angelika Heinemann \N 1 2026-01-30 09:54:08.88588+00 2026-01-30 02:01:11.453993+00 1974 \N google ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB unknown {"text": "Para pasar un rato muy bueno y con un personal magnífico. Los coches están muy bien. Perfectamente organizado. Repetiré.", "author": "Carlos Carrasco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB", "timestamp": "6 years ago"} Para pasar un rato muy bueno y con un personal magnífico. Los coches están muy bien. Perfectamente organizado. Repetiré. 5 2020-02-01 01:52:39.833374+00 Carlos Carrasco \N 1 2026-01-30 09:54:08.888399+00 2026-01-30 02:01:11.468817+00 1975 \N google ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB unknown {"text": "Menudo circuito!!!!!. Amplio divertido. Creo que no hay ninguno de estas características en los alrededores!!!. El personal es excelente. El problema es que después de probar este los demás saben a poco.", "author": "Ramon Saura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB", "timestamp": "8 years ago"} Menudo circuito!!!!!. Amplio divertido. Creo que no hay ninguno de estas características en los alrededores!!!. El personal es excelente. El problema es que después de probar este los demás saben a poco. 5 2018-02-01 01:52:39.833374+00 Ramon Saura \N 1 2026-01-30 09:54:08.891915+00 2026-01-30 02:01:11.478679+00 1976 \N google ChdDSUhNMG9nS0VJQ0FnTURvcVBETHFBRRAB unknown {"text": "Bra anläggning för både vuxna, tonåringar och barn!", "author": "Kurt Gustafsson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvcVBETHFBRRAB", "timestamp": "9 months ago"} Bra anläggning för både vuxna, tonåringar och barn! 5 2025-05-05 00:52:39.833374+00 Kurt Gustafsson \N 1 2026-01-30 09:54:08.89405+00 2026-01-30 02:01:11.486882+00 1977 \N google ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB unknown {"text": "Gran lugar para pasar unos momentos de diversión y soltar adrenalina. Karts de todas las edades y tipos de conducción. Lo recomiendo 100 x 100", "author": "Antonio Corral", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB", "timestamp": "4 years ago"} Gran lugar para pasar unos momentos de diversión y soltar adrenalina. Karts de todas las edades y tipos de conducción. Lo recomiendo 100 x 100 5 2022-01-31 01:52:39.833374+00 Antonio Corral \N 1 2026-01-30 09:54:08.896623+00 2026-01-30 02:01:11.495472+00 1978 \N google ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE unknown {"text": "Son muy majos, siempre con una sonrisa en la boca y la pista es una pasada! Muy recomendable para ir tanto con amigos como con la familia.", "author": "Manuel Choco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE", "timestamp": "6 years ago"} Son muy majos, siempre con una sonrisa en la boca y la pista es una pasada! Muy recomendable para ir tanto con amigos como con la familia. 5 2020-02-01 01:52:39.833374+00 Manuel Choco \N 1 2026-01-30 09:54:08.899561+00 2026-01-30 02:01:11.506222+00 1872 \N google ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE unknown {"text": "Sitio enorme, con un servicio excepcional. Estaba todo muy limpio y desinfectado y además el tiempo de carrera comparado con el precio estaba estupendamente.\\nVolveremos.", "author": "Maria Alcantara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE", "timestamp": "3 years ago"} Sitio enorme, con un servicio excepcional. Estaba todo muy limpio y desinfectado y además el tiempo de carrera comparado con el precio estaba estupendamente.\nVolveremos. 5 2023-01-31 01:52:39.833374+00 Maria Alcantara \N 1 2026-01-30 09:54:08.538812+00 2026-01-30 02:01:11.008675+00 1984 \N google ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB unknown {"text": "Excelente atención. Muy buena pista . Buenos coches. Precios asequibles. Repetiremos!", "author": "Carlos Leiva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB", "timestamp": "3 years ago"} Excelente atención. Muy buena pista . Buenos coches. Precios asequibles. Repetiremos! 5 2023-01-31 01:52:39.833374+00 Carlos Leiva \N 1 2026-01-30 09:54:08.931603+00 2026-01-30 02:01:11.548987+00 1985 \N google ChdDSUhNMG9nS0VJQ0FnSURfanN2MGhnRRAB unknown {"text": "Muy agradable el personal y circuito muy intretenido.", "author": "Joaquin Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfanN2MGhnRRAB", "timestamp": "a year ago"} Muy agradable el personal y circuito muy intretenido. 5 2025-01-30 01:52:39.833374+00 Joaquin Martinez \N 1 2026-01-30 09:54:08.934884+00 2026-01-30 02:01:11.552272+00 1986 \N google ChdDSUhNMG9nS0VJQ0FnSUNDeWRiMzdBRRAB unknown {"text": "Trato perfecto, mis niños disfrutaron un monton", "author": "Pilar Sainz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDeWRiMzdBRRAB", "timestamp": "5 years ago"} Trato perfecto, mis niños disfrutaron un monton 4 2021-01-31 01:52:39.833374+00 Pilar Sainz \N 1 2026-01-30 09:54:08.940064+00 2026-01-30 02:01:11.556803+00 1987 \N google ChdDSUhNMG9nS0VJQ0FnSUNveF9DS3hRRRAB unknown {"text": "Maravillo Kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza y cuidado! por estar a la última en todo! y por pedazo de pantalla gigante!", "author": "Francesca Sarabia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNveF9DS3hRRRAB", "timestamp": "Edited 5 years ago"} Maravillo Kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza y cuidado! por estar a la última en todo! y por pedazo de pantalla gigante! 5 2026-01-30 01:52:39.833374+00 Francesca Sarabia \N 1 2026-01-30 09:54:08.942775+00 2026-01-30 02:01:11.560228+00 1988 \N google ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE unknown {"text": "Estupendo el trato, la pista está en perfectas condiciones con escapada de sobra. El kart de 400 funciona sobradamente para ir muy rápido.", "author": "Joaquin Poveda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE", "timestamp": "4 years ago"} Estupendo el trato, la pista está en perfectas condiciones con escapada de sobra. El kart de 400 funciona sobradamente para ir muy rápido. 5 2022-01-31 01:52:39.833374+00 Joaquin Poveda \N 1 2026-01-30 09:54:08.945751+00 2026-01-30 02:01:11.563589+00 1989 \N google ChdDSUhNMG9nS0VJQ0FnSUQ2dC1XZzJBRRAB unknown {"text": "Sehr gute Rennstrecke hat sehr viel Spaß gemacht. Sehr empfehlenswert. Jederzeit gerne wieder", "author": "sven jahnke", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2dC1XZzJBRRAB", "timestamp": "4 years ago"} Sehr gute Rennstrecke hat sehr viel Spaß gemacht. Sehr empfehlenswert. Jederzeit gerne wieder 5 2022-01-31 01:52:39.833374+00 sven jahnke \N 1 2026-01-30 09:54:08.947967+00 2026-01-30 02:01:11.56573+00 1990 \N google ChZDSUhNMG9nS0VJQ0FnSUNRNGZPbFN3EAE unknown {"text": "Es un circuito muy divertido. Su trazado es muy acertado para permitir adelantamientos en gran parte de la pista. Los F200 van muy bien.", "author": "Taser Face", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNGZPbFN3EAE", "timestamp": "9 years ago"} Es un circuito muy divertido. Su trazado es muy acertado para permitir adelantamientos en gran parte de la pista. Los F200 van muy bien. 5 2017-02-01 01:52:39.833374+00 Taser Face \N 1 2026-01-30 09:54:08.951281+00 2026-01-30 02:01:11.568455+00 1991 \N google ChdDSUhNMG9nS0VJQ0FnSURhNXNDNTNBRRAB unknown {"text": "Excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, respecto al circuito es bastante amplio con curvas rapidas y muy cuidado", "author": "Miguel Angel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhNXNDNTNBRRAB", "timestamp": "4 years ago"} Excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, respecto al circuito es bastante amplio con curvas rapidas y muy cuidado 5 2022-01-31 01:52:39.833374+00 Miguel Angel \N 1 2026-01-30 09:54:08.954214+00 2026-01-30 02:01:11.57115+00 1992 \N google ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB unknown {"text": "Por 50€ disfrutas mucho. Buen circuito y buena atención. Hasta te dan tu medalla :)", "author": "Jero García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB", "timestamp": "4 years ago"} Por 50€ disfrutas mucho. Buen circuito y buena atención. Hasta te dan tu medalla :) 5 2022-01-31 01:52:39.833374+00 Jero García \N 1 2026-01-30 09:54:08.957526+00 2026-01-30 02:01:11.575207+00 1993 \N google ChdDSUhNMG9nS0VJQ0FnSUN4bXVlQWtRRRAB unknown {"text": "Una pista muy divertida y unas instalaciones cuidadas al detalle. Todo es perfecto", "author": "Jose Chicoy Madrona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bXVlQWtRRRAB", "timestamp": "2 years ago"} Una pista muy divertida y unas instalaciones cuidadas al detalle. Todo es perfecto 5 2024-01-31 01:52:39.833374+00 Jose Chicoy Madrona \N 1 2026-01-30 09:54:08.977127+00 2026-01-30 02:01:11.578037+00 1994 \N google ChZDSUhNMG9nS0VJQ0FnSUNHOGNEdEJBEAE unknown {"text": "Nos lo hemos pasado como niños pequeños. El circuito esta de lujo y los trabajadores super simpáticos, repetiría sin duda!", "author": "Adri Pelayo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHOGNEdEJBEAE", "timestamp": "4 years ago"} Nos lo hemos pasado como niños pequeños. El circuito esta de lujo y los trabajadores super simpáticos, repetiría sin duda! 5 2022-01-31 01:52:39.833374+00 Adri Pelayo \N 1 2026-01-30 09:54:08.982886+00 2026-01-30 02:01:11.580503+00 2374 \N google ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB unknown {"text": "Super karting ,mais un peu chère", "author": "youssef has", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB", "timestamp": "4 years ago"} Super karting ,mais un peu chère 5 2022-01-31 01:52:39.833374+00 youssef has \N 1 2026-01-30 09:54:10.337307+00 2026-01-30 02:01:13.216477+00 1873 \N google ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE unknown {"text": "Los miércoles tienen una oferta genial para grupos grandes. Está genial de precio e instalaciones", "author": "AloMurSan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE", "timestamp": "a year ago"} Los miércoles tienen una oferta genial para grupos grandes. Está genial de precio e instalaciones 5 2025-01-30 01:52:39.833374+00 AloMurSan \N 1 2026-01-30 09:54:08.541568+00 2026-01-30 02:01:11.012092+00 1997 \N google ChZDSUhNMG9nS0VJQ0FnSURnZ2QzV0l3EAE unknown {"text": "EL MEJOR CIRCUITO DE ESPAÑA. IMPRESIONANTE LAS INSTALACIONES.\\nLA PANTALLA GIGANTE ES EL NO VA MÁS.\\nTODO EL MUNDO QUIERE REPETIR DESPUÉS DE PROBAR LOS KARTS.\\nCOMIDA ESPECIAL", "author": "Juan vicente Panadero Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnZ2QzV0l3EAE", "timestamp": "7 years ago"} EL MEJOR CIRCUITO DE ESPAÑA. IMPRESIONANTE LAS INSTALACIONES.\nLA PANTALLA GIGANTE ES EL NO VA MÁS.\nTODO EL MUNDO QUIERE REPETIR DESPUÉS DE PROBAR LOS KARTS.\nCOMIDA ESPECIAL 5 2019-02-01 01:52:39.833374+00 Juan vicente Panadero Pérez \N 1 2026-01-30 09:54:08.998691+00 2026-01-30 02:01:11.594924+00 1998 \N google ChZDSUhNMG9nS0VJQ0FnSUN1d2NMQWFREAE unknown {"text": "El personal muy amable y simpáticos. Lo hemos pasado muy bien sobretodo las niñas (13 años)", "author": "rosa maria MM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1d2NMQWFREAE", "timestamp": "3 years ago"} El personal muy amable y simpáticos. Lo hemos pasado muy bien sobretodo las niñas (13 años) 5 2023-01-31 01:52:39.833374+00 rosa maria MM \N 1 2026-01-30 09:54:09.001994+00 2026-01-30 02:01:11.597396+00 1999 \N google ChZDSUhNMG9nS0VJQ0FnSUM2cFpieUdBEAE unknown {"text": "Grandísima experiencia.\\nRepetiremos!!", "author": "Armando Miguel Valle Miranda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cFpieUdBEAE", "timestamp": "4 years ago"} Grandísima experiencia.\nRepetiremos!! 5 2022-01-31 01:52:39.833374+00 Armando Miguel Valle Miranda \N 1 2026-01-30 09:54:09.008737+00 2026-01-30 02:01:11.604504+00 2000 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdnJPVm9RRRAB unknown {"text": "Impresionante la pista, con todo detalle de gran calidad. Y repetir y repetir. Disfrutas muchísimo. Volveremos!!", "author": "César Pastor Oliver", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnJPVm9RRRAB", "timestamp": "6 years ago"} Impresionante la pista, con todo detalle de gran calidad. Y repetir y repetir. Disfrutas muchísimo. Volveremos!! 5 2020-02-01 01:52:39.833374+00 César Pastor Oliver \N 1 2026-01-30 09:54:09.013973+00 2026-01-30 02:01:11.608756+00 2001 \N google ChdDSUhNMG9nS0VJQ0FnTUNvdXBPMXZBRRAB unknown {"text": "Servicio muy bueno. Personal estupendo", "author": "Sergi Planas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvdXBPMXZBRRAB", "timestamp": "9 months ago"} Servicio muy bueno. Personal estupendo 5 2025-05-05 00:52:39.833374+00 Sergi Planas \N 1 2026-01-30 09:54:09.016755+00 2026-01-30 02:01:11.612219+00 2002 \N google ChdDSUhNMG9nS0VJQ0FnSURYMy15RTZBRRAB unknown {"text": "Tolle Kartbahn. Für Anfänger und Fortgeschrittene gut geeignet.", "author": "Martin Luithardt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYMy15RTZBRRAB", "timestamp": "a year ago"} Tolle Kartbahn. Für Anfänger und Fortgeschrittene gut geeignet. 5 2025-01-30 01:52:39.833374+00 Martin Luithardt \N 1 2026-01-30 09:54:09.018914+00 2026-01-30 02:01:11.614841+00 2003 \N google ChdDSUhNMG9nS0VJQ0FnSUNVd3JXVHpBRRAB unknown {"text": "Sehr lange Strecke (1,1km), top Preise und kinderfreundlich! Also schwer zu empfehlen! Besser als die Konkurrenz", "author": "Jona Pollkläsener", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVd3JXVHpBRRAB", "timestamp": "6 years ago"} Sehr lange Strecke (1,1km), top Preise und kinderfreundlich! Also schwer zu empfehlen! Besser als die Konkurrenz 5 2020-02-01 01:52:39.833374+00 Jona Pollkläsener \N 1 2026-01-30 09:54:09.020768+00 2026-01-30 02:01:11.617235+00 2004 \N google ChZDSUhNMG9nS0VJQ0FnSUNneHZ1VFRBEAE unknown {"text": "Circuito muy divertido en un lugar privilegiado junto al mar menor. Si quieres pasar un buen rato con tus amigos no dudes en pasarte por Go Karts.", "author": "Antonio Nicolás Carrasco (Nico)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneHZ1VFRBEAE", "timestamp": "7 years ago"} Circuito muy divertido en un lugar privilegiado junto al mar menor. Si quieres pasar un buen rato con tus amigos no dudes en pasarte por Go Karts. 5 2019-02-01 01:52:39.833374+00 Antonio Nicolás Carrasco (Nico) \N 1 2026-01-30 09:54:09.023466+00 2026-01-30 02:01:11.620931+00 2005 \N google ChdDSUhNMG9nS0VJQ0FnTURvM0tEOTJBRRAB unknown {"text": "Sehr schöner Platz. Gut zu erreichen", "author": "Mustafa Guendesli (Mustafa Gündesli)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvM0tEOTJBRRAB", "timestamp": "9 months ago"} Sehr schöner Platz. Gut zu erreichen 5 2025-05-05 00:52:39.833374+00 Mustafa Guendesli (Mustafa Gündesli) \N 1 2026-01-30 09:54:09.025115+00 2026-01-30 02:01:11.623252+00 2006 \N google ChdDSUhNMG9nS0VJQ0FnSURJM05YVjd3RRAB unknown {"text": "Circuito muy chulo, variedad de coches con distintas potencias para alquilar. Te puedes tomar algo mientras ves a la gente correr.", "author": "Iván de Diego", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJM05YVjd3RRAB", "timestamp": "7 years ago"} Circuito muy chulo, variedad de coches con distintas potencias para alquilar. Te puedes tomar algo mientras ves a la gente correr. 5 2019-02-01 01:52:39.833374+00 Iván de Diego \N 1 2026-01-30 09:54:09.028102+00 2026-01-30 02:01:11.626345+00 2007 \N google ChdDSUhNMG9nS0VJQ0FnSURSMzVUNHNBRRAB unknown {"text": "Bra bane, lett og tilpasse fra liten til stor. Området ser ryddig og fint ut.\\nKan anbefales👍", "author": "Ove Lilleengen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSMzVUNHNBRRAB", "timestamp": "2 years ago"} Bra bane, lett og tilpasse fra liten til stor. Området ser ryddig og fint ut.\nKan anbefales👍 5 2024-01-31 01:52:39.833374+00 Ove Lilleengen \N 1 2026-01-30 09:54:09.033813+00 2026-01-30 02:01:11.630415+00 2008 \N google ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB unknown {"text": "Buen circuito, con bastantes curvas. Genial para niños y mayores.", "author": "Juan Pablo Ibañez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB", "timestamp": "a year ago"} Buen circuito, con bastantes curvas. Genial para niños y mayores. 4 2025-01-30 01:52:39.833374+00 Juan Pablo Ibañez \N 1 2026-01-30 09:54:09.037697+00 2026-01-30 02:01:11.632938+00 2009 \N google ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB unknown {"text": "Presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mantenimiento, el personal de pista muy bien", "author": "Agustin Parra Navarro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB", "timestamp": "3 years ago"} Presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mantenimiento, el personal de pista muy bien 4 2023-01-31 01:52:39.833374+00 Agustin Parra Navarro \N 1 2026-01-30 09:54:09.041382+00 2026-01-30 02:01:11.635704+00 2011 \N google ChZDSUhNMG9nS0VJQ0FnSUNhd09TdFVREAE unknown {"text": "Me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato", "author": "Tina Mels", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhd09TdFVREAE", "timestamp": "4 years ago"} Me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato 5 2022-01-31 01:52:39.833374+00 Tina Mels \N 1 2026-01-30 09:54:09.047257+00 2026-01-30 02:01:11.641168+00 2012 \N google ChZDSUhNMG9nS0VJQ0FnSUM2OExlakxnEAE unknown {"text": "Una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales", "author": "SOLE DOMINGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2OExlakxnEAE", "timestamp": "4 years ago"} Una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales 5 2022-01-31 01:52:39.833374+00 SOLE DOMINGUEZ \N 1 2026-01-30 09:54:09.049988+00 2026-01-30 02:01:11.643499+00 2013 \N google ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB unknown {"text": "Muy buen sitio para si te interesa el tema. Buenos precios y un servicio amable y simpático.", "author": "no name", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB", "timestamp": "7 years ago"} Muy buen sitio para si te interesa el tema. Buenos precios y un servicio amable y simpático. 5 2019-02-01 01:52:39.833374+00 no name \N 1 2026-01-30 09:54:09.052289+00 2026-01-30 02:01:11.645989+00 2014 \N google ChZDSUhNMG9nS0VJQ0FnSUNnbk5ma093EAE unknown {"text": "Increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a cualquier persona. Todo muy bien. Gracias !", "author": "David Alejandro Fernandez Celi (xXSharkTeamXx)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnbk5ma093EAE", "timestamp": "7 years ago"} Increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a cualquier persona. Todo muy bien. Gracias ! 5 2019-02-01 01:52:39.833374+00 David Alejandro Fernandez Celi (xXSharkTeamXx) \N 1 2026-01-30 09:54:09.054404+00 2026-01-30 02:01:11.648278+00 2015 \N google ChdDSUhNMG9nS0VJQ0FnSURac2RURXF3RRAB unknown {"text": "Buen karting, coches potentes, circuito rapido e interesante, precios aceptables.", "author": "Ignacio Soler Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURac2RURXF3RRAB", "timestamp": "2 years ago"} Buen karting, coches potentes, circuito rapido e interesante, precios aceptables. 5 2024-01-31 01:52:39.833374+00 Ignacio Soler Garcia \N 1 2026-01-30 09:54:09.058295+00 2026-01-30 02:01:11.6513+00 2016 \N google ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB unknown {"text": "Bonne piste et sensation.\\nUn peu excessif pour le 400cc 30€ les 10min", "author": "Thomas Even", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB", "timestamp": "7 years ago"} Bonne piste et sensation.\nUn peu excessif pour le 400cc 30€ les 10min 4 2019-02-01 01:52:39.833374+00 Thomas Even \N 1 2026-01-30 09:54:09.062077+00 2026-01-30 02:01:11.653548+00 2017 \N google ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE unknown {"text": "Mal, realmente mal los karts le patinan las ruedas, falta de ralentí, te tratan mal me parece muy malo esto", "author": "Nacho", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE", "timestamp": "a year ago"} Mal, realmente mal los karts le patinan las ruedas, falta de ralentí, te tratan mal me parece muy malo esto 1 2025-01-30 01:52:39.833374+00 Nacho \N 1 2026-01-30 09:54:09.065997+00 2026-01-30 02:01:11.657838+00 2018 \N google ChZDSUhNMG9nS0VJQ0FnTURvbk1PQU1REAE unknown {"text": "Fin og stor bane med bra tidtaker system", "author": "Raymond Kristiansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvbk1PQU1REAE", "timestamp": "9 months ago"} Fin og stor bane med bra tidtaker system 5 2025-05-05 00:52:39.833374+00 Raymond Kristiansen \N 1 2026-01-30 09:54:09.073244+00 2026-01-30 02:01:11.665713+00 2019 \N google ChZDSUhNMG9nS0VJQ0FnSURnbzlqcVBREAE unknown {"text": "Muy buen sitio, lo pasamos genial. La pista bien, material muy bien, duchas, barra, el pack completo!", "author": "Yves Delvaulx", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnbzlqcVBREAE", "timestamp": "8 years ago"} Muy buen sitio, lo pasamos genial. La pista bien, material muy bien, duchas, barra, el pack completo! 5 2018-02-01 01:52:39.833374+00 Yves Delvaulx \N 1 2026-01-30 09:54:09.07655+00 2026-01-30 02:01:11.668478+00 2020 \N google ChdDSUhNMG9nS0VJQ0FnSURoby1IV3Z3RRAB unknown {"text": "Sehr nette Leute. Preis und Leistung stimmt absolut!! Sehr empfehlenswert! 👍👍👍", "author": "Andre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoby1IV3Z3RRAB", "timestamp": "Edited 2 years ago"} Sehr nette Leute. Preis und Leistung stimmt absolut!! Sehr empfehlenswert! 👍👍👍 5 2026-01-30 01:52:39.833374+00 Andre \N 1 2026-01-30 09:54:09.078549+00 2026-01-30 02:01:11.670677+00 2021 \N google ChdDSUhNMG9nS0VJQ0FnSUNCeTRxSXRBRRAB unknown {"text": "Experiencia emocionante garantizada. Gran trato del personal. Muy aconsejable", "author": "MIGUEL ANGEL MGLIMPIEZAS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCeTRxSXRBRRAB", "timestamp": "3 years ago"} Experiencia emocionante garantizada. Gran trato del personal. Muy aconsejable 5 2023-01-31 01:52:39.833374+00 MIGUEL ANGEL MGLIMPIEZAS \N 1 2026-01-30 09:54:09.081101+00 2026-01-30 02:01:11.673879+00 2022 \N google ChdDSUhNMG9nS0VJQ0FnSUNId1A3SGxRRRAB unknown {"text": "Adrenalina maxima!", "author": "Gava Paula Cristina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNId1A3SGxRRRAB", "timestamp": "a year ago"} Adrenalina maxima! 5 2025-01-30 01:52:39.833374+00 Gava Paula Cristina \N 1 2026-01-30 09:54:09.086017+00 2026-01-30 02:01:11.679363+00 2023 \N google ChZDSUhNMG9nS0VJQ0FnSUNyNkpqRlRREAE unknown {"text": "Increíble la experiencia, muy buen trato e instalaciones.", "author": "Marlon Ortiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyNkpqRlRREAE", "timestamp": "a year ago"} Increíble la experiencia, muy buen trato e instalaciones. 5 2025-01-30 01:52:39.833374+00 Marlon Ortiz \N 1 2026-01-30 09:54:09.090484+00 2026-01-30 02:01:11.682807+00 2024 \N google ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE unknown {"text": "Divertido. No parece peligroso. Relativamente caro. 12 euros por 8 minutos", "author": "Antonio Hernández López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE", "timestamp": "6 years ago"} Divertido. No parece peligroso. Relativamente caro. 12 euros por 8 minutos 4 2020-02-01 01:52:39.833374+00 Antonio Hernández López \N 1 2026-01-30 09:54:09.096122+00 2026-01-30 02:01:11.688852+00 2025 \N google ChZDSUhNMG9nS0VJQ0FnSURLcFoza1V3EAE unknown {"text": "Una circuito espectacular!! El mejor espacio para sentirte piloto!! Un personal a pie de pista excepcional!!!!", "author": "Alberto Fdez.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcFoza1V3EAE", "timestamp": "4 years ago"} Una circuito espectacular!! El mejor espacio para sentirte piloto!! Un personal a pie de pista excepcional!!!! 5 2022-01-31 01:52:39.833374+00 Alberto Fdez. \N 1 2026-01-30 09:54:09.100422+00 2026-01-30 02:01:11.693485+00 2029 \N google ChdDSUhNMG9nS0VJQ0FnSUQ4aTZfWHpBRRAB unknown {"text": "A mis hijos les encanta!! Vamos cada semana. La gente es atenta y amable.", "author": "Rocio PH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4aTZfWHpBRRAB", "timestamp": "5 years ago"} A mis hijos les encanta!! Vamos cada semana. La gente es atenta y amable. 5 2021-01-31 01:52:39.833374+00 Rocio PH \N 1 2026-01-30 09:54:09.113544+00 2026-01-30 02:01:11.706474+00 2030 \N google ChdDSUhNMG9nS0VJQ0FnSURnd0lIeHB3RRAB unknown {"text": "Una pista extraordinaria, circuito seguro y divertido.", "author": "San Adrian Valle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnd0lIeHB3RRAB", "timestamp": "Edited 9 months ago"} Una pista extraordinaria, circuito seguro y divertido. 5 2026-01-30 01:52:39.833374+00 San Adrian Valle \N 1 2026-01-30 09:54:09.119002+00 2026-01-30 02:01:11.711165+00 2032 \N google ChdDSUhNMG9nS0VJQ0FnSUNxb3ZUYXpRRRAB unknown {"text": "Magnifique\\nLe personnel et sympa\\nPas prise de tête\\nPlusieurs kart dispo surtout les 400cc woah le feu\\nMerci à vous", "author": "massi-nissa benzerrouk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxb3ZUYXpRRRAB", "timestamp": "4 years ago"} Magnifique\nLe personnel et sympa\nPas prise de tête\nPlusieurs kart dispo surtout les 400cc woah le feu\nMerci à vous 5 2022-01-31 01:52:39.833374+00 massi-nissa benzerrouk \N 1 2026-01-30 09:54:09.123485+00 2026-01-30 02:01:11.716653+00 2033 \N google ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE unknown {"text": "Circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divertido. Emplazamiento y clima idílico", "author": "Enrique Ruiz Gimeno", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE", "timestamp": "7 years ago"} Circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divertido. Emplazamiento y clima idílico 3 2019-02-01 01:52:39.833374+00 Enrique Ruiz Gimeno \N 1 2026-01-30 09:54:09.126779+00 2026-01-30 02:01:11.720408+00 2034 \N google ChdDSUhNMG9nS0VJQ0FnSURnNXB1OW1nRRAB unknown {"text": "Es un lugar genial para hacer unas carreras con los amigos y la familia. Tiene posibilidad de hacer reservas para celebrar eventos.", "author": "Antonio Vicente Sánchez Mercader", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnNXB1OW1nRRAB", "timestamp": "9 years ago"} Es un lugar genial para hacer unas carreras con los amigos y la familia. Tiene posibilidad de hacer reservas para celebrar eventos. 5 2017-02-01 01:52:39.833374+00 Antonio Vicente Sánchez Mercader \N 1 2026-01-30 09:54:09.130136+00 2026-01-30 02:01:11.723782+00 2035 \N google ChZDSUhNMG9nS0VJQ0FnSUNEMEpua05BEAE unknown {"text": "Un plaisir de faire du karting avec les enfants et le petit fils wyatt", "author": "pierre david", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEMEpua05BEAE", "timestamp": "Edited a year ago"} Un plaisir de faire du karting avec les enfants et le petit fils wyatt 5 2026-01-30 01:52:39.833374+00 pierre david \N 1 2026-01-30 09:54:09.13403+00 2026-01-30 02:01:11.726694+00 2036 \N google ChdDSUhNMG9nS0VJQ0FnSURDc192NHdRRRAB unknown {"text": "Esta muy bien, además ahora tienen mucho cuidado con el tema COVID, cuando usas un coche desinfectan tanto el coche como el casco.", "author": "Dolores García León", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDc192NHdRRRAB", "timestamp": "5 years ago"} Esta muy bien, además ahora tienen mucho cuidado con el tema COVID, cuando usas un coche desinfectan tanto el coche como el casco. 5 2021-01-31 01:52:39.833374+00 Dolores García León \N 1 2026-01-30 09:54:09.140825+00 2026-01-30 02:01:11.729211+00 2037 \N google ChdDSUhNMG9nS0VJQ0FnSURrcTUtZjZRRRAB unknown {"text": "Dia bueno de karts, perfecto para ir en familia y amigos. Genial atención y cumple totalmente con las expectativas. Un saludo.", "author": "Fernando Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcTUtZjZRRRAB", "timestamp": "6 years ago"} Dia bueno de karts, perfecto para ir en familia y amigos. Genial atención y cumple totalmente con las expectativas. Un saludo. 5 2020-02-01 01:52:39.833374+00 Fernando Martínez \N 1 2026-01-30 09:54:09.144457+00 2026-01-30 02:01:11.732492+00 2038 \N google ChZDSUhNMG9nS0VJQ0FnSUNNdm9QaGZBEAE unknown {"text": "Una pista perfecta para pasar muy buenos ratos.. Muy buena gente... Un 10", "author": "Celedonio Garro sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdm9QaGZBEAE", "timestamp": "6 years ago"} Una pista perfecta para pasar muy buenos ratos.. Muy buena gente... Un 10 5 2020-02-01 01:52:39.833374+00 Celedonio Garro sanchez \N 1 2026-01-30 09:54:09.148499+00 2026-01-30 02:01:11.735807+00 2039 \N google ChZDSUhNMG9nS0VJQ0FnSUQtNDRYNUJREAE unknown {"text": "Todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin", "author": "irenita lover", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNDRYNUJREAE", "timestamp": "3 years ago"} Todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin 5 2023-01-31 01:52:39.833374+00 irenita lover \N 1 2026-01-30 09:54:09.151438+00 2026-01-30 02:01:11.738242+00 2040 \N google ChZDSUhNMG9nS0VJQ0FnTURndklhUURnEAE unknown {"text": "Un buen sitio para pasar un buen rato", "author": "Bohor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURndklhUURnEAE", "timestamp": "11 months ago"} Un buen sitio para pasar un buen rato 5 2025-03-06 01:52:39.833374+00 Bohor \N 1 2026-01-30 09:54:09.15715+00 2026-01-30 02:01:11.743013+00 2176 \N google ChZDSUhNMG9nS0VJQ0FnSURLcGVYRGNREAE unknown {"text": "Muy buen circuito y muy buena gente 😉", "author": "Jose Martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGVYRGNREAE", "timestamp": "4 years ago"} Muy buen circuito y muy buena gente 😉 5 2022-01-31 01:52:39.833374+00 Jose Martinez \N 1 2026-01-30 09:54:09.555383+00 2026-01-30 02:01:12.237104+00 2042 \N google ChZDSUhNMG9nS0VJQ0FnSUM2NDZETkxREAE unknown {"text": "Genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones", "author": "ricardo gomez montero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NDZETkxREAE", "timestamp": "4 years ago"} Genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones 5 2022-01-31 01:52:39.833374+00 ricardo gomez montero \N 1 2026-01-30 09:54:09.163619+00 2026-01-30 02:01:11.748521+00 2043 \N google ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE unknown {"text": "Muy divertido el circuito, personal simpático y aunque los karts están muy usados mantienen la emoción", "author": "Joaquín Rodríguez Díaz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE", "timestamp": "Edited 4 years ago"} Muy divertido el circuito, personal simpático y aunque los karts están muy usados mantienen la emoción 4 2026-01-30 01:52:39.833374+00 Joaquín Rodríguez Díaz \N 1 2026-01-30 09:54:09.166906+00 2026-01-30 02:01:11.750743+00 2044 \N google Ci9DQUlRQUNvZENodHljRjlvT2tobWF6WnVSbFJzYjJsWk1tRTROM0JEWDJWTGVrRRAB unknown {"text": "Todo fenomenal", "author": "Roberto H M", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tobWF6WnVSbFJzYjJsWk1tRTROM0JEWDJWTGVrRRAB", "timestamp": "5 months ago"} Todo fenomenal 5 2025-09-02 00:52:39.833374+00 Roberto H M \N 1 2026-01-30 09:54:09.173668+00 2026-01-30 02:01:11.755431+00 2045 \N google ChZDSUhNMG9nS0VJQ0FnSUQtamZYTGF3EAE unknown {"text": "Muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancados.", "author": "Maria Angeles Martínez Castejón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtamZYTGF3EAE", "timestamp": "3 years ago"} Muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancados. 5 2023-01-31 01:52:39.833374+00 Maria Angeles Martínez Castejón \N 1 2026-01-30 09:54:09.180761+00 2026-01-30 02:01:11.75786+00 2046 \N google ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE unknown {"text": "Un trato muy amable y familiar. Los karts, las instalaciones y las vistas estupendas. Un 10!❤️", "author": "Bianca Miranda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE", "timestamp": "6 years ago"} Un trato muy amable y familiar. Los karts, las instalaciones y las vistas estupendas. Un 10!❤️ 5 2020-02-01 01:52:39.833374+00 Bianca Miranda \N 1 2026-01-30 09:54:09.185452+00 2026-01-30 02:01:11.760604+00 2047 \N google ChZDSUhNMG9nS0VJQ0FnSUM2cmJxS0dnEAE unknown {"text": "Mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. Y la merienda genial", "author": "Anahi Martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cmJxS0dnEAE", "timestamp": "4 years ago"} Mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. Y la merienda genial 5 2022-01-31 01:52:39.833374+00 Anahi Martinez \N 1 2026-01-30 09:54:09.189054+00 2026-01-30 02:01:11.764748+00 2048 \N google ChZDSUhNMG9nS0VJQ0FnSUNKekstU0hBEAE unknown {"text": "Buena experiencia! Cuidado con el cars si eres principiante 😅", "author": "silvia perez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKekstU0hBEAE", "timestamp": "2 years ago"} Buena experiencia! Cuidado con el cars si eres principiante 😅 4 2024-01-31 01:52:39.833374+00 silvia perez \N 1 2026-01-30 09:54:09.192966+00 2026-01-30 02:01:11.768561+00 2049 \N google ChdDSUhNMG9nS0VJQ0FnSURwOG9TRV93RRAB unknown {"text": "Très bonne expérience à passer en famille pour ceux qui aiment la course auto.", "author": "Ali Guerr", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwOG9TRV93RRAB", "timestamp": "2 years ago"} Très bonne expérience à passer en famille pour ceux qui aiment la course auto. 5 2024-01-31 01:52:39.833374+00 Ali Guerr \N 1 2026-01-30 09:54:09.195616+00 2026-01-30 02:01:11.770709+00 2050 \N google ChdDSUhNMG9nS0VJQ0FnSUNhcmJxZG13RRAB unknown {"text": "Buenas instalaciones y coches con el rendimiento y conducción que se espera.\\nMuy recomendable.", "author": "Pedro M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcmJxZG13RRAB", "timestamp": "4 years ago"} Buenas instalaciones y coches con el rendimiento y conducción que se espera.\nMuy recomendable. 5 2022-01-31 01:52:39.833374+00 Pedro M \N 1 2026-01-30 09:54:09.197855+00 2026-01-30 02:01:11.775554+00 2051 \N google ChZDSUhNMG9nS0VJQ0FnSUNRNjRLc0l3EAE unknown {"text": "Circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agradable. Plan perfecto para un día de diversión.", "author": "Oscar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNjRLc0l3EAE", "timestamp": "8 years ago"} Circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agradable. Plan perfecto para un día de diversión. 5 2018-02-01 01:52:39.833374+00 Oscar \N 1 2026-01-30 09:54:09.200657+00 2026-01-30 02:01:11.778265+00 2052 \N google Ci9DQUlRQUNvZENodHljRjlvT25CclQwNVlUMkZYYkZGVlZrbGFNVkZvU1ZBelJuYxAB unknown {"text": "Superleuk", "author": "Tjeerd Huiberts", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CclQwNVlUMkZYYkZGVlZrbGFNVkZvU1ZBelJuYxAB", "timestamp": "a week ago"} Superleuk 5 2026-01-23 01:52:39.833374+00 Tjeerd Huiberts \N 1 2026-01-30 09:54:09.20413+00 2026-01-30 02:01:11.781957+00 2053 \N google ChdDSUhNMG9nS0VJQ0FnSUNwZzV1aDRRRRAB unknown {"text": "Un buen sitio para montar en car, Una pista espectacular.", "author": "José Antonio Castellano Ordúñez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwZzV1aDRRRRAB", "timestamp": "2 years ago"} Un buen sitio para montar en car, Una pista espectacular. 4 2024-01-31 01:52:39.833374+00 José Antonio Castellano Ordúñez \N 1 2026-01-30 09:54:09.209101+00 2026-01-30 02:01:11.78655+00 2054 \N google ChdDSUhNMG9nS0VJQ0FnSURPNk1lZnpBRRAB unknown {"text": "Diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia.", "author": "Evaristo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNk1lZnpBRRAB", "timestamp": "3 years ago"} Diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia. 4 2023-01-31 01:52:39.833374+00 Evaristo \N 1 2026-01-30 09:54:09.211979+00 2026-01-30 02:01:11.789337+00 2055 \N google ChZDSUhNMG9nS0VJQ0FnSURRektYYWJnEAE unknown {"text": "Excelente lugar para pasar un dia con los karts y celebrar cumpleaños. Muy buena pista y raida", "author": "Gonzalo Aboal Sanjurjo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRektYYWJnEAE", "timestamp": "9 years ago"} Excelente lugar para pasar un dia con los karts y celebrar cumpleaños. Muy buena pista y raida 5 2017-02-01 01:52:39.833374+00 Gonzalo Aboal Sanjurjo \N 1 2026-01-30 09:54:09.215034+00 2026-01-30 02:01:11.792029+00 2056 \N google ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB unknown {"text": "Muy buenas instalaciones y personal muy amable, el mejor circuito de la región de Murcia", "author": "Jorge Mora Lorca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB", "timestamp": "3 years ago"} Muy buenas instalaciones y personal muy amable, el mejor circuito de la región de Murcia 5 2023-01-31 01:52:39.833374+00 Jorge Mora Lorca \N 1 2026-01-30 09:54:09.217882+00 2026-01-30 02:01:11.795047+00 2059 \N google ChdDSUhNMG9nS0VJQ0FnSUR1MmNYNS1BRRAB unknown {"text": "Muy buena experiencia para niños y adultos. Disfrutamos toda la familia", "author": "Maria Grueiro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1MmNYNS1BRRAB", "timestamp": "3 years ago"} Muy buena experiencia para niños y adultos. Disfrutamos toda la familia 4 2023-01-31 01:52:39.833374+00 Maria Grueiro \N 1 2026-01-30 09:54:09.226463+00 2026-01-30 02:01:11.806108+00 2060 \N google ChZDSUhNMG9nS0VJQ0FnSUN3NHA2S0NnEAE unknown {"text": "Una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. Sin duda repetiremos!!!", "author": "Pedro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3NHA2S0NnEAE", "timestamp": "7 years ago"} Una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. Sin duda repetiremos!!! 5 2019-02-01 01:52:39.833374+00 Pedro \N 1 2026-01-30 09:54:09.22943+00 2026-01-30 02:01:11.8089+00 2061 \N google ChZDSUhNMG9nS0VJQ0FnSUM5bE9UeGFnEAE unknown {"text": "Первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось.", "author": "Яна Брушневская", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5bE9UeGFnEAE", "timestamp": "a year ago"} Первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось. 5 2025-01-30 01:52:39.833374+00 Яна Брушневская \N 1 2026-01-30 09:54:09.231345+00 2026-01-30 02:01:11.811019+00 2062 \N google ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB unknown {"text": "Un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼 el mejor circuito y el mejor precio", "author": "Adri Alelú", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB", "timestamp": "Edited 5 years ago"} Un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼 el mejor circuito y el mejor precio 5 2026-01-30 01:52:39.833374+00 Adri Alelú \N 1 2026-01-30 09:54:09.233713+00 2026-01-30 02:01:11.814056+00 2063 \N google ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE unknown {"text": "Personal muy agradable y circuito guapísimo, para pasar un buen rato👍", "author": "Jesús Saura", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE", "timestamp": "6 years ago"} Personal muy agradable y circuito guapísimo, para pasar un buen rato👍 5 2020-02-01 01:52:39.833374+00 Jesús Saura \N 1 2026-01-30 09:54:09.236841+00 2026-01-30 02:01:11.819291+00 2064 \N google ChdDSUhNMG9nS0VJQ0FnSURwMG9XLW1nRRAB unknown {"text": "Con reserva tuvimos que esperar 2h y 15'. Me pregunto para qué sirve hacerla. Gracias.", "author": "Maria Salazar", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMG9XLW1nRRAB", "timestamp": "2 years ago"} Con reserva tuvimos que esperar 2h y 15'. Me pregunto para qué sirve hacerla. Gracias. 1 2024-01-31 01:52:39.833374+00 Maria Salazar \N 1 2026-01-30 09:54:09.240296+00 2026-01-30 02:01:11.82458+00 2066 \N google ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB unknown {"text": "Tres bien bonne experience avec un score final\\n12euro 8mn Je recommande", "author": "Lili T", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB", "timestamp": "5 years ago"} Tres bien bonne experience avec un score final\n12euro 8mn Je recommande 4 2021-01-31 01:52:39.833374+00 Lili T \N 1 2026-01-30 09:54:09.246023+00 2026-01-30 02:01:11.830786+00 2067 \N google ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB unknown {"text": "un circuito de lugo super bonito y cuidado buen anbiente y los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos", "author": "Eva Romo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB", "timestamp": "7 years ago"} un circuito de lugo super bonito y cuidado buen anbiente y los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos 5 2019-02-01 01:52:39.833374+00 Eva Romo \N 1 2026-01-30 09:54:09.248672+00 2026-01-30 02:01:11.833554+00 2068 \N google ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE unknown {"text": "Buenos profesionales, precios razonables y circuito rapido, divertido y seguro", "author": "Marcolo 22", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE", "timestamp": "Edited 2 years ago"} Buenos profesionales, precios razonables y circuito rapido, divertido y seguro 5 2026-01-30 01:52:39.833374+00 Marcolo 22 \N 1 2026-01-30 09:54:09.251023+00 2026-01-30 02:01:11.836301+00 2069 \N google ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE unknown {"text": "Los kar van mas fuerte que otros de otros sitios con mismo motos ambiente acojedor y cercano. Circuito muy largo al que volvere", "author": "Antonio Angel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE", "timestamp": "8 years ago"} Los kar van mas fuerte que otros de otros sitios con mismo motos ambiente acojedor y cercano. Circuito muy largo al que volvere 5 2018-02-01 01:52:39.833374+00 Antonio Angel \N 1 2026-01-30 09:54:09.253993+00 2026-01-30 02:01:11.83978+00 2070 \N google ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB unknown {"text": "Fantástico, la pista es enorme y el personal muy atento.", "author": "Eli Girona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB", "timestamp": "Edited a year ago"} Fantástico, la pista es enorme y el personal muy atento. 5 2026-01-30 01:52:39.833374+00 Eli Girona \N 1 2026-01-30 09:54:09.25641+00 2026-01-30 02:01:11.844007+00 2071 \N google ChdDSUhNMG9nS0VJQ0FnSURDbXBtVzB3RRAB unknown {"text": "El mejor kart de la región. Coches en buen estado. Pista en muy buen estado. Buena organización. Buen trazado.", "author": "Daniel Serrano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbXBtVzB3RRAB", "timestamp": "Edited 5 years ago"} El mejor kart de la región. Coches en buen estado. Pista en muy buen estado. Buena organización. Buen trazado. 5 2026-01-30 01:52:39.833374+00 Daniel Serrano \N 1 2026-01-30 09:54:09.258352+00 2026-01-30 02:01:11.846881+00 2074 \N google ChdDSUhNMG9nS0VJQ0FnSUM5OC1pY3JRRRAB unknown {"text": "Muy buena gente y muy bien organizados.", "author": "Miguel Costa Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5OC1pY3JRRRAB", "timestamp": "a year ago"} Muy buena gente y muy bien organizados. 5 2025-01-30 01:52:39.833374+00 Miguel Costa Sanchez \N 1 2026-01-30 09:54:09.265167+00 2026-01-30 02:01:11.855505+00 2075 \N google ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB unknown {"text": "Los Kars más pequeños corren bastante , bien cuidados ,bien de precio y gente muy agradable muy recomendable volveremos", "author": "Luis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB", "timestamp": "7 years ago"} Los Kars más pequeños corren bastante , bien cuidados ,bien de precio y gente muy agradable muy recomendable volveremos 5 2019-02-01 01:52:39.833374+00 Luis \N 1 2026-01-30 09:54:09.267211+00 2026-01-30 02:01:11.858228+00 2076 \N google ChRDSUhNMG9nS0VJQ0FnSUNRcTRNORAB unknown {"text": "Har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen.", "author": "Fredrik Wendt", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNRcTRNORAB", "timestamp": "7 years ago"} Har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen. 4 2019-02-01 01:52:39.833374+00 Fredrik Wendt \N 1 2026-01-30 09:54:09.269238+00 2026-01-30 02:01:11.860848+00 2077 \N google ChZDSUhNMG9nS0VJQ0FnSURSNmVUSUp3EAE unknown {"text": "Fantastische kartbaan.\\nFijn rijdende karts in verschillende klasse. Komen zeker terug. Fam Visser", "author": "Leonard Visser", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSNmVUSUp3EAE", "timestamp": "2 years ago"} Fantastische kartbaan.\nFijn rijdende karts in verschillende klasse. Komen zeker terug. Fam Visser 5 2024-01-31 01:52:39.833374+00 Leonard Visser \N 1 2026-01-30 09:54:09.27176+00 2026-01-30 02:01:11.864466+00 2078 \N google ChdDSUhNMG9nS0VJQ0FnSUR5a3YyOTJRRRAB unknown {"text": "Buen precio, buen circuito, buenos karts y muy buen trato. Completamente recomendable!", "author": "Saul Algaba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5a3YyOTJRRRAB", "timestamp": "4 years ago"} Buen precio, buen circuito, buenos karts y muy buen trato. Completamente recomendable! 5 2022-01-31 01:52:39.833374+00 Saul Algaba \N 1 2026-01-30 09:54:09.274195+00 2026-01-30 02:01:11.868121+00 2080 \N google ChZDSUhNMG9nS0VJQ0FnSUN3bF9MZUl3EAE unknown {"text": "Sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente", "author": "jorge fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3bF9MZUl3EAE", "timestamp": "7 years ago"} Sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente 5 2019-02-01 01:52:39.833374+00 jorge fernandez \N 1 2026-01-30 09:54:09.279142+00 2026-01-30 02:01:11.877343+00 2081 \N google ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE unknown {"text": "Me lo.pase como un enano... seguro que vuelvo. Solo un karting con un pequeño bar. Pero eso era lo que buscaba.", "author": "Antonio Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE", "timestamp": "6 years ago"} Me lo.pase como un enano... seguro que vuelvo. Solo un karting con un pequeño bar. Pero eso era lo que buscaba. 5 2020-02-01 01:52:39.833374+00 Antonio Rodriguez \N 1 2026-01-30 09:54:09.281766+00 2026-01-30 02:01:11.881099+00 2082 \N google ChdDSUhNMG9nS0VJQ0FnSUNDcU9YU3FnRRAB unknown {"text": "Buen sitio para pasar con familia, lo tienen todo muy bien organizado", "author": "Víctor B.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDcU9YU3FnRRAB", "timestamp": "5 years ago"} Buen sitio para pasar con familia, lo tienen todo muy bien organizado 5 2021-01-31 01:52:39.833374+00 Víctor B. \N 1 2026-01-30 09:54:09.283775+00 2026-01-30 02:01:11.884197+00 2083 \N google ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE unknown {"text": "Muy buen trato\\nInstalaciones perfectas\\nMuy muy buena experiencia", "author": "Anita Flow", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE", "timestamp": "2 years ago"} Muy buen trato\nInstalaciones perfectas\nMuy muy buena experiencia 5 2024-01-31 01:52:39.833374+00 Anita Flow \N 1 2026-01-30 09:54:09.286226+00 2026-01-30 02:01:11.887257+00 2084 \N google ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE unknown {"text": "Super karting......on s'y amuse bien...Seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣", "author": "carole battaglini", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE", "timestamp": "4 years ago"} Super karting......on s'y amuse bien...Seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣 4 2022-01-31 01:52:39.833374+00 carole battaglini \N 1 2026-01-30 09:54:09.288449+00 2026-01-30 02:01:11.890759+00 2085 \N google ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB unknown {"text": "Trabajadores muy agradables, buen circuito muy divertido el trazado, los kart en buenas condiciones", "author": "Christian Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB", "timestamp": "4 years ago"} Trabajadores muy agradables, buen circuito muy divertido el trazado, los kart en buenas condiciones 5 2022-01-31 01:52:39.833374+00 Christian Ruiz \N 1 2026-01-30 09:54:09.290696+00 2026-01-30 02:01:11.894691+00 2086 \N google ChdDSUhNMG9nS0VJQ0FnSUR5eGM2UnBRRRAB unknown {"text": "Lindo lugar para todas las edades.\\nDiversión y seguridad. Un lugar para seguir volviendo 👍", "author": "Flaka Garelli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5eGM2UnBRRRAB", "timestamp": "4 years ago"} Lindo lugar para todas las edades.\nDiversión y seguridad. Un lugar para seguir volviendo 👍 5 2022-01-31 01:52:39.833374+00 Flaka Garelli \N 1 2026-01-30 09:54:09.293228+00 2026-01-30 02:01:11.897724+00 2087 \N google ChdDSUhNMG9nS0VJQ0FnSUNRNVl2N2hRRRAB unknown {"text": "Es estupendo. La pista de karts es brutal, cuando conduces un kart te da un subidón.", "author": "Alejandro Willy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNVl2N2hRRRAB", "timestamp": "8 years ago"} Es estupendo. La pista de karts es brutal, cuando conduces un kart te da un subidón. 5 2018-02-01 01:52:39.833374+00 Alejandro Willy \N 1 2026-01-30 09:54:09.295809+00 2026-01-30 02:01:11.900846+00 2090 \N google ChZDSUhNMG9nS0VJQ0FnSURPMGRtelpBEAE unknown {"text": "Buenas instalaciones y mejor equipo! Sitio fantástico, enhorabuena", "author": "Emerito Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMGRtelpBEAE", "timestamp": "3 years ago"} Buenas instalaciones y mejor equipo! Sitio fantástico, enhorabuena 5 2023-01-31 01:52:39.833374+00 Emerito Alvarez \N 1 2026-01-30 09:54:09.303911+00 2026-01-30 02:01:11.911314+00 2091 \N google ChZDSUhNMG9nS0VJQ0FnSUNLam9YVUd3EAE unknown {"text": "Excelente", "author": "Jonatan Rodas lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLam9YVUd3EAE", "timestamp": "4 years ago"} Excelente 5 2022-01-31 01:52:39.833374+00 Jonatan Rodas lopez \N 1 2026-01-30 09:54:09.310175+00 2026-01-30 02:01:11.918743+00 2092 \N google ChdDSUhNMG9nS0VJQ0FnSUN1LTRYS3dnRRAB unknown {"text": "On a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe", "author": "Ami Lari", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1LTRYS3dnRRAB", "timestamp": "3 years ago"} On a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe 5 2023-01-31 01:52:39.833374+00 Ami Lari \N 1 2026-01-30 09:54:09.312219+00 2026-01-30 02:01:11.921704+00 2093 \N google ChdDSUhNMG9nS0VJQ0FnSUN3a2JpMHB3RRAB unknown {"text": "Excelente precio y trato. Merece la pena viajar mas por venir aquí.", "author": "Alejandro Trinidad García de las Bayonas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3a2JpMHB3RRAB", "timestamp": "7 years ago"} Excelente precio y trato. Merece la pena viajar mas por venir aquí. 5 2019-02-01 01:52:39.833374+00 Alejandro Trinidad García de las Bayonas \N 1 2026-01-30 09:54:09.314908+00 2026-01-30 02:01:11.925585+00 2095 \N google Ci9DQUlRQUNvZENodHljRjlvT2xvM2NEZEJiRjlsYTBNemMyZ3lSVTVvU2swNU4xRRAB unknown {"text": "Leuke plaats", "author": "sonia parijs", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xvM2NEZEJiRjlsYTBNemMyZ3lSVTVvU2swNU4xRRAB", "timestamp": "4 months ago"} Leuke plaats 5 2025-10-02 00:52:39.833374+00 sonia parijs \N 1 2026-01-30 09:54:09.319801+00 2026-01-30 02:01:11.932639+00 2096 \N google ChZDSUhNMG9nS0VJQ0FnSURHX2RMMVdBEAE unknown {"text": "Nos lo pasamos increíble, el precio es genial. Los coches van de lujo.", "author": "Omar Calzon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHX2RMMVdBEAE", "timestamp": "4 years ago"} Nos lo pasamos increíble, el precio es genial. Los coches van de lujo. 5 2022-01-31 01:52:39.833374+00 Omar Calzon \N 1 2026-01-30 09:54:09.3222+00 2026-01-30 02:01:11.935857+00 2098 \N google ChdDSUhNMG9nS0VJQ0FnSUNleklDZjF3RRAB unknown {"text": "Zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen.", "author": "emiel steenbeke", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNleklDZjF3RRAB", "timestamp": "3 years ago"} Zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen. 5 2023-01-31 01:52:39.833374+00 emiel steenbeke \N 1 2026-01-30 09:54:09.328604+00 2026-01-30 02:01:11.943995+00 2099 \N google ChdDSUhNMG9nS0VJQ0FnSURhNUttdnFnRRAB unknown {"text": "Bien moins cher que celui de Torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏", "author": "Marie Josephe Oliver", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhNUttdnFnRRAB", "timestamp": "4 years ago"} Bien moins cher que celui de Torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏 5 2022-01-31 01:52:39.833374+00 Marie Josephe Oliver \N 1 2026-01-30 09:54:09.330785+00 2026-01-30 02:01:11.946873+00 2100 \N google ChZDSUhNMG9nS0VJQ0FnSUQtMHZtd2FREAE unknown {"text": "Buen sitio par air buenos precios buena atencion volvere seguro", "author": "alex martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtMHZtd2FREAE", "timestamp": "3 years ago"} Buen sitio par air buenos precios buena atencion volvere seguro 5 2023-01-31 01:52:39.833374+00 alex martinez \N 1 2026-01-30 09:54:09.334281+00 2026-01-30 02:01:11.950833+00 2101 \N google ChdDSUhNMG9nS0VJQ0FnSURLcGY2eV93RRAB unknown {"text": "Un gran circuito ya sea para ir con vehículo privado o para alquilar un Kart con unos amigos", "author": "FJ Publicidad", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcGY2eV93RRAB", "timestamp": "4 years ago"} Un gran circuito ya sea para ir con vehículo privado o para alquilar un Kart con unos amigos 5 2022-01-31 01:52:39.833374+00 FJ Publicidad \N 1 2026-01-30 09:54:09.338211+00 2026-01-30 02:01:11.955211+00 2102 \N google ChdDSUhNMG9nS0VJQ0FnSURlbklYVXl3RRAB unknown {"text": "Trato familiar, instalaciones impresionantes,una auténtica gozada!! Totalmente recomendado.", "author": "Izarin humano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlbklYVXl3RRAB", "timestamp": "3 years ago"} Trato familiar, instalaciones impresionantes,una auténtica gozada!! Totalmente recomendado. 5 2023-01-31 01:52:39.833374+00 Izarin humano \N 1 2026-01-30 09:54:09.344617+00 2026-01-30 02:01:11.9616+00 2103 \N google Ci9DQUlRQUNvZENodHljRjlvT25VeVdEUmpPRE5JVkRkVk1HOW9SM3BSUXpsblVtYxAB unknown {"text": "Me encanta.", "author": "Pedro L. C.C", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VeVdEUmpPRE5JVkRkVk1HOW9SM3BSUXpsblVtYxAB", "timestamp": "5 months ago"} Me encanta. 5 2025-09-02 00:52:39.833374+00 Pedro L. C.C \N 1 2026-01-30 09:54:09.347777+00 2026-01-30 02:01:11.965027+00 2104 \N google ChdDSUhNMG9nS0VJQ0FnSURnZ3ZXUGtRRRAB unknown {"text": "Mejor circuito de toda la zona. Buenos karts y buenos precios. Recomiendo 100%", "author": "Kyle Ross", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnZ3ZXUGtRRRAB", "timestamp": "8 years ago"} Mejor circuito de toda la zona. Buenos karts y buenos precios. Recomiendo 100% 5 2018-02-01 01:52:39.833374+00 Kyle Ross \N 1 2026-01-30 09:54:09.350498+00 2026-01-30 02:01:11.968315+00 2106 \N google ChZDSUhNMG9nS0VJQ0FnSURNczZEclJREAE unknown {"text": "Me encantó la pista, los Karts y la gente que me atendió es un sitio genial un 10 para ellos!!!!", "author": "Jesus Marco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNczZEclJREAE", "timestamp": "6 years ago"} Me encantó la pista, los Karts y la gente que me atendió es un sitio genial un 10 para ellos!!!! 5 2020-02-01 01:52:39.833374+00 Jesus Marco \N 1 2026-01-30 09:54:09.356265+00 2026-01-30 02:01:11.97544+00 2107 \N google ChdDSUhNMG9nS0VJQ0FnSURTa3VHNmhnRRAB unknown {"text": "Gran circuito y en perfecto estado de mantenimiento. Muy amables.", "author": "Fer Lopez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTa3VHNmhnRRAB", "timestamp": "5 years ago"} Gran circuito y en perfecto estado de mantenimiento. Muy amables. 1 2021-01-31 01:52:39.833374+00 Fer Lopez \N 1 2026-01-30 09:54:09.358775+00 2026-01-30 02:01:11.978207+00 2108 \N google ChZDSUhNMG9nS0VJQ0FnSURiOE95cFBnEAE unknown {"text": "Хорошее место что-бы весело провести время", "author": "Vladyslav Siedik (Smeni_naski)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiOE95cFBnEAE", "timestamp": "a year ago"} Хорошее место что-бы весело провести время 5 2025-01-30 01:52:39.833374+00 Vladyslav Siedik (Smeni_naski) \N 1 2026-01-30 09:54:09.361183+00 2026-01-30 02:01:11.980916+00 2109 \N google ChdDSUhNMG9nS0VJQ0FnSURzaFBxZjJBRRAB unknown {"text": "Es un buen Karting para todos y si quieres echar unos piques con tus amigos Adelante!", "author": "César", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzaFBxZjJBRRAB", "timestamp": "5 years ago"} Es un buen Karting para todos y si quieres echar unos piques con tus amigos Adelante! 5 2021-01-31 01:52:39.833374+00 César \N 1 2026-01-30 09:54:09.364027+00 2026-01-30 02:01:11.983968+00 2110 \N google ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE unknown {"text": "Los karts van todos muy igualados y el trato fue muy bueno por parte del personal. Un 10.", "author": "Viktor R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE", "timestamp": "8 years ago"} Los karts van todos muy igualados y el trato fue muy bueno por parte del personal. Un 10. 5 2018-02-01 01:52:39.833374+00 Viktor R \N 1 2026-01-30 09:54:09.366435+00 2026-01-30 02:01:11.987106+00 2111 \N google ChZDSUhNMG9nS0VJQ0FnSUQwcU5QdUJ3EAE unknown {"text": "Sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato", "author": "Pedro Pardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwcU5QdUJ3EAE", "timestamp": "Edited 6 years ago"} Sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato 5 2026-01-30 01:52:39.833374+00 Pedro Pardo \N 1 2026-01-30 09:54:09.369031+00 2026-01-30 02:01:11.990095+00 2112 \N google ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB unknown {"text": "Los mejores kart de todo levante con diferencia!!! Muy recomendable y unos precios muy economicos!!! 5**", "author": "RUBEN BLASCO TORRES", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB", "timestamp": "7 years ago"} Los mejores kart de todo levante con diferencia!!! Muy recomendable y unos precios muy economicos!!! 5** 5 2019-02-01 01:52:39.833374+00 RUBEN BLASCO TORRES \N 1 2026-01-30 09:54:09.371423+00 2026-01-30 02:01:11.992785+00 2113 \N google ChZDSUhNMG9nS0VJQ0FnSUNDc01yRFJREAE unknown {"text": "Sans plus j I retourne demain on Vera bien il était tard il allait fermer", "author": "Gérard Otte", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDc01yRFJREAE", "timestamp": "5 years ago"} Sans plus j I retourne demain on Vera bien il était tard il allait fermer 3 2021-01-31 01:52:39.833374+00 Gérard Otte \N 1 2026-01-30 09:54:09.374006+00 2026-01-30 02:01:11.995908+00 2114 \N google ChdDSUhNMG9nS0VJQ0FnSUQ0aVBPSnFRRRAB unknown {"text": "Me encanto el circuito, es muy rápido y divertido. Quiero volver", "author": "M P C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ0aVBPSnFRRRAB", "timestamp": "Edited 6 years ago"} Me encanto el circuito, es muy rápido y divertido. Quiero volver 5 2026-01-30 01:52:39.833374+00 M P C \N 1 2026-01-30 09:54:09.376229+00 2026-01-30 02:01:11.998473+00 2115 \N google ChdDSUhNMG9nS0VJQ0FnSUNYbDdEUmpRRRAB unknown {"text": "Buen sitio para ir con niños", "author": "Pedro Albacete", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYbDdEUmpRRRAB", "timestamp": "a year ago"} Buen sitio para ir con niños 5 2025-01-30 01:52:39.833374+00 Pedro Albacete \N 1 2026-01-30 09:54:09.378621+00 2026-01-30 02:01:12.00121+00 2116 \N google ChZDSUhNMG9nS0VJQ0FnSUNxM0x2S1pnEAE unknown {"text": "Muy divertido y buena atención, un sitio de diez", "author": "Efren Aaron Marin Garijo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxM0x2S1pnEAE", "timestamp": "4 years ago"} Muy divertido y buena atención, un sitio de diez 5 2022-01-31 01:52:39.833374+00 Efren Aaron Marin Garijo \N 1 2026-01-30 09:54:09.38054+00 2026-01-30 02:01:12.003261+00 2117 \N google ChZDSUhNMG9nS0VJQ0FnSURzaXNiU1JREAE unknown {"text": "Genial,el personal muy amable y atentos con los niños lo recomiendo 100%", "author": "Kuki", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzaXNiU1JREAE", "timestamp": "5 years ago"} Genial,el personal muy amable y atentos con los niños lo recomiendo 100% 5 2021-01-31 01:52:39.833374+00 Kuki \N 1 2026-01-30 09:54:09.382508+00 2026-01-30 02:01:12.006037+00 2118 \N google ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB unknown {"text": "Buena experiencia, pero podrían acolchar los asientos para hacerlo más llevadero", "author": "Ruben López", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB", "timestamp": "5 years ago"} Buena experiencia, pero podrían acolchar los asientos para hacerlo más llevadero 4 2021-01-31 01:52:39.833374+00 Ruben López \N 1 2026-01-30 09:54:09.384923+00 2026-01-30 02:01:12.009019+00 2119 \N google ChZDSUhNMG9nS0VJQ0FnSUNnMnNyOURBEAE unknown {"text": "Pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok", "author": "Juan Carlos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnMnNyOURBEAE", "timestamp": "7 years ago"} Pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok 5 2019-02-01 01:52:39.833374+00 Juan Carlos \N 1 2026-01-30 09:54:09.387833+00 2026-01-30 02:01:12.012891+00 2120 \N google ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB unknown {"text": "Trato malo mal educados y groseros y el kart no frenaba y me han echao por salirme de la pista", "author": "Fernando Cantero martinez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB", "timestamp": "4 years ago"} Trato malo mal educados y groseros y el kart no frenaba y me han echao por salirme de la pista 1 2022-01-31 01:52:39.833374+00 Fernando Cantero martinez \N 1 2026-01-30 09:54:09.390212+00 2026-01-30 02:01:12.016112+00 2121 \N google ChdDSUhNMG9nS0VJQ0FnSUN1OGFQMzlnRRAB unknown {"text": "En general bien. Buen circuito y precios razonables.", "author": "Luis Ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1OGFQMzlnRRAB", "timestamp": "3 years ago"} En general bien. Buen circuito y precios razonables. 5 2023-01-31 01:52:39.833374+00 Luis Ramirez \N 1 2026-01-30 09:54:09.392288+00 2026-01-30 02:01:12.018623+00 2123 \N google ChdDSUhNMG9nS0VJQ0FnSURrMy1ENnFRRRAB unknown {"text": "La atención muy buena y una pista fantástica. Nos lo pasamos de cine", "author": "Humberto Castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrMy1ENnFRRRAB", "timestamp": "6 years ago"} La atención muy buena y una pista fantástica. Nos lo pasamos de cine 5 2020-02-01 01:52:39.833374+00 Humberto Castro \N 1 2026-01-30 09:54:09.396316+00 2026-01-30 02:01:12.024549+00 2124 \N google ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB unknown {"text": "El precio es algo excesivo pero el trato excepcional muy atentos", "author": "Rocio Sánchez Méndez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB", "timestamp": "3 years ago"} El precio es algo excesivo pero el trato excepcional muy atentos 5 2023-01-31 01:52:39.833374+00 Rocio Sánchez Méndez \N 1 2026-01-30 09:54:09.400602+00 2026-01-30 02:01:12.030009+00 2125 \N google ChdDSUhNMG9nS0VJQ0FnSURGamVtTzFBRRAB unknown {"text": "Hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa", "author": "Matti Huppunen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGamVtTzFBRRAB", "timestamp": "2 years ago"} Hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa 5 2024-01-31 01:52:39.833374+00 Matti Huppunen \N 1 2026-01-30 09:54:09.402505+00 2026-01-30 02:01:12.032534+00 2126 \N google ChdDSUhNMG9nS0VJQ0FnSUNtdlp2QWh3RRAB unknown {"text": "Buena gente y pista divertida. Almuerzos cumplidos a precios normales.", "author": "Quique SALVADOR RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdlp2QWh3RRAB", "timestamp": "4 years ago"} Buena gente y pista divertida. Almuerzos cumplidos a precios normales. 5 2022-01-31 01:52:39.833374+00 Quique SALVADOR RODRIGUEZ \N 1 2026-01-30 09:54:09.405328+00 2026-01-30 02:01:12.035657+00 2127 \N google ChdDSUhNMG9nS0VJQ0FnSURNeHUtQl93RRAB unknown {"text": "Superdivertido un buen sitio para pasar un rato agradable con amigos y familia", "author": "raider vfr", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNeHUtQl93RRAB", "timestamp": "6 years ago"} Superdivertido un buen sitio para pasar un rato agradable con amigos y familia 5 2020-02-01 01:52:39.833374+00 raider vfr \N 1 2026-01-30 09:54:09.407966+00 2026-01-30 02:01:12.038891+00 2128 \N google ChZDSUhNMG9nS0VJQ0FnSUMwel9IUk1REAE unknown {"text": "Käykää ajamassa.", "author": "Matti Puotila", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwel9IUk1REAE", "timestamp": "6 years ago"} Käykää ajamassa. 5 2020-02-01 01:52:39.833374+00 Matti Puotila \N 1 2026-01-30 09:54:09.409498+00 2026-01-30 02:01:12.041814+00 2129 \N google ChZDSUhNMG9nS0VJQ0FnSUREN01ER0tREAE unknown {"text": "Eine sehr schöne Anlage. Ein Besuch lohnt sich.", "author": "Diana P", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREN01ER0tREAE", "timestamp": "a year ago"} Eine sehr schöne Anlage. Ein Besuch lohnt sich. 4 2025-01-30 01:52:39.833374+00 Diana P \N 1 2026-01-30 09:54:09.41123+00 2026-01-30 02:01:12.04416+00 2130 \N google ChdDSUhNMG9nS0VJQ0FnSURBZzRfNmdRRRAB unknown {"text": "Muy divertido, estupendo para pasar un buen rato en familia.", "author": "Gorka ojembarrena saracho", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBZzRfNmdRRRAB", "timestamp": "8 years ago"} Muy divertido, estupendo para pasar un buen rato en familia. 5 2018-02-01 01:52:39.833374+00 Gorka ojembarrena saracho \N 1 2026-01-30 09:54:09.413502+00 2026-01-30 02:01:12.047265+00 2131 \N google ChZDSUhNMG9nS0VJQ0FnSURhNkliQ2ZBEAE unknown {"text": "Es un buen sitio, además tienen coches para niños.", "author": "Meme Man", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNkliQ2ZBEAE", "timestamp": "Edited 4 years ago"} Es un buen sitio, además tienen coches para niños. 5 2026-01-30 01:52:39.833374+00 Meme Man \N 1 2026-01-30 09:54:09.415471+00 2026-01-30 02:01:12.051072+00 2132 \N google ChZDSUhNMG9nS0VJQ0FnSURLOGVQY2FREAE unknown {"text": "Muy buen sitio para pasar el día", "author": "Perii Blessed", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLOGVQY2FREAE", "timestamp": "4 years ago"} Muy buen sitio para pasar el día 5 2022-01-31 01:52:39.833374+00 Perii Blessed \N 1 2026-01-30 09:54:09.417612+00 2026-01-30 02:01:12.054059+00 2133 \N google ChZDSUhNMG9nS0VJQ0FnSUNmczV6V1J3EAE unknown {"text": "Muy bien", "author": "JOSE MARIA PEÑUELAS VILA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmczV6V1J3EAE", "timestamp": "a year ago"} Muy bien 5 2025-01-30 01:52:39.833374+00 JOSE MARIA PEÑUELAS VILA \N 1 2026-01-30 09:54:09.422805+00 2026-01-30 02:01:12.060644+00 2134 \N google ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB unknown {"text": "Tienen un kart de 400. El trato muy agradable y facil de llegar :)", "author": "Cris Sml", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB", "timestamp": "8 years ago"} Tienen un kart de 400. El trato muy agradable y facil de llegar :) 4 2018-02-01 01:52:39.833374+00 Cris Sml \N 1 2026-01-30 09:54:09.425457+00 2026-01-30 02:01:12.06491+00 2135 \N google ChdDSUhNMG9nS0VJQ0FnSURLOVlhNXJRRRAB unknown {"text": "Mucha variedad de Karts de alquiler, un trato familiar y excelente. Siempre repetimos!", "author": "Nacho Drift", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLOVlhNXJRRRAB", "timestamp": "4 years ago"} Mucha variedad de Karts de alquiler, un trato familiar y excelente. Siempre repetimos! 5 2022-01-31 01:52:39.833374+00 Nacho Drift \N 1 2026-01-30 09:54:09.428084+00 2026-01-30 02:01:12.068155+00 2136 \N google ChdDSUhNMG9nS0VJQ0FnSUQ2cVpEeHV3RRAB unknown {"text": "Muy buen trato y los Karts van muy bien", "author": "TwichLive", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2cVpEeHV3RRAB", "timestamp": "4 years ago"} Muy buen trato y los Karts van muy bien 5 2022-01-31 01:52:39.833374+00 TwichLive \N 1 2026-01-30 09:54:09.430967+00 2026-01-30 02:01:12.074424+00 2137 \N google ChZDSUhNMG9nS0VJQ0FnSURycDR6ZGFREAE unknown {"text": "Super goede cartbaan. Alles netjes", "author": "Willem Van Herpen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURycDR6ZGFREAE", "timestamp": "a year ago"} Super goede cartbaan. Alles netjes 4 2025-01-30 01:52:39.833374+00 Willem Van Herpen \N 1 2026-01-30 09:54:09.436994+00 2026-01-30 02:01:12.082657+00 2138 \N google ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE unknown {"text": "El circuito está bien, pero los mismos karts de misma categoría corren de manera distinta, unos más que otros.", "author": "noel fernandez (Nemesix)", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE", "timestamp": "6 years ago"} El circuito está bien, pero los mismos karts de misma categoría corren de manera distinta, unos más que otros. 3 2020-02-01 01:52:39.833374+00 noel fernandez (Nemesix) \N 1 2026-01-30 09:54:09.439307+00 2026-01-30 02:01:12.086194+00 2139 \N google ChZDSUhNMG9nS0VJQ0FnSUNxd05xa1Z3EAE unknown {"text": "Un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100", "author": "Jose 8", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxd05xa1Z3EAE", "timestamp": "4 years ago"} Un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100 5 2022-01-31 01:52:39.833374+00 Jose 8 \N 1 2026-01-30 09:54:09.442116+00 2026-01-30 02:01:12.089922+00 2141 \N google ChdDSUhNMG9nS0VJQ0FnSURLak0yUXh3RRAB unknown {"text": "Un muy buen lugar para pasar el día en moto", "author": "Daniel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLak0yUXh3RRAB", "timestamp": "Edited a year ago"} Un muy buen lugar para pasar el día en moto 5 2026-01-30 01:52:39.833374+00 Daniel \N 1 2026-01-30 09:54:09.448575+00 2026-01-30 02:01:12.097976+00 2142 \N google ChdDSUhNMG9nS0VJQ0FnSUNyNWVyNThnRRAB unknown {"text": "Magnificad instalaciones para disfrutar com familia o amigos", "author": "angel murcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNyNWVyNThnRRAB", "timestamp": "a year ago"} Magnificad instalaciones para disfrutar com familia o amigos 5 2025-01-30 01:52:39.833374+00 angel murcia \N 1 2026-01-30 09:54:09.455398+00 2026-01-30 02:01:12.105802+00 2143 \N google ChdDSUhNMG9nS0VJQ0FnSURLcFlHd3RRRRAB unknown {"text": "Magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda.", "author": "francisco bianqui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcFlHd3RRRRAB", "timestamp": "4 years ago"} Magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda. 5 2022-01-31 01:52:39.833374+00 francisco bianqui \N 1 2026-01-30 09:54:09.459221+00 2026-01-30 02:01:12.110271+00 2144 \N google ChdDSUhNMG9nS0VJQ0FnSUN1clB6SzRnRRAB unknown {"text": "Atención estupenda y Karts en muy buen estado.", "author": "LUIS MIGUEL HUEVA ESPINILLA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1clB6SzRnRRAB", "timestamp": "Edited 3 years ago"} Atención estupenda y Karts en muy buen estado. 5 2026-01-30 01:52:39.833374+00 LUIS MIGUEL HUEVA ESPINILLA \N 1 2026-01-30 09:54:09.461508+00 2026-01-30 02:01:12.113054+00 2145 \N google ChZDSUhNMG9nS0VJQ0FnSURWbVBmV2R3EAE unknown {"text": "Variedad de karts y la pista está bastante bien. He disfrutado bastante .", "author": "Pablo Pedro Alvarez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbVBmV2R3EAE", "timestamp": "2 years ago"} Variedad de karts y la pista está bastante bien. He disfrutado bastante . 5 2024-01-31 01:52:39.833374+00 Pablo Pedro Alvarez Garcia \N 1 2026-01-30 09:54:09.464089+00 2026-01-30 02:01:12.115873+00 2146 \N google ChZDSUhNMG9nS0VJQ0FnSUM2eVlMaVR3EAE unknown {"text": "Genial, tanto las instalaciones, como el personal.\\nUn sitio de 10, repetiremos", "author": "Jose Alberto Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eVlMaVR3EAE", "timestamp": "4 years ago"} Genial, tanto las instalaciones, como el personal.\nUn sitio de 10, repetiremos 5 2022-01-31 01:52:39.833374+00 Jose Alberto Benito \N 1 2026-01-30 09:54:09.46849+00 2026-01-30 02:01:12.121025+00 2147 \N google ChdDSUhNMG9nS0VJQ0FnSUNRcjZiM253RRAB unknown {"text": "Fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados ..", "author": "arrison Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRcjZiM253RRAB", "timestamp": "7 years ago"} Fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados .. 5 2019-02-01 01:52:39.833374+00 arrison Hernandez \N 1 2026-01-30 09:54:09.470869+00 2026-01-30 02:01:12.123903+00 2148 \N google ChZDSUhNMG9nS0VJQ0FnSUNhaXNldmRREAE unknown {"text": "Un sitio para pasar un muy buen rato divirtiendo te", "author": "Felix de la Encarnacion Lara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaXNldmRREAE", "timestamp": "4 years ago"} Un sitio para pasar un muy buen rato divirtiendo te 5 2022-01-31 01:52:39.833374+00 Felix de la Encarnacion Lara \N 1 2026-01-30 09:54:09.475867+00 2026-01-30 02:01:12.130125+00 2149 \N google ChdDSUhNMG9nS0VJQ0FnSUNEMy1qRjlRRRAB unknown {"text": "Heel leuk en echt goed georganiseerd", "author": "Adrienne De Winter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEMy1qRjlRRRAB", "timestamp": "a year ago"} Heel leuk en echt goed georganiseerd 5 2025-01-30 01:52:39.833374+00 Adrienne De Winter \N 1 2026-01-30 09:54:09.479468+00 2026-01-30 02:01:12.134387+00 2151 \N google ChdDSUhNMG9nS0VJQ0FnSUNtNGEyajdBRRAB unknown {"text": "Grand circuit. Accueil sympathique et tarif interessant", "author": "Celine LEGAY-BILO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNGEyajdBRRAB", "timestamp": "4 years ago"} Grand circuit. Accueil sympathique et tarif interessant 5 2022-01-31 01:52:39.833374+00 Celine LEGAY-BILO \N 1 2026-01-30 09:54:09.48449+00 2026-01-30 02:01:12.14225+00 2152 \N google ChdDSUhNMG9nS0VJQ0FnSUQyMWVybDJBRRAB unknown {"text": "Muy bien organizado, vistas al mar y el personal muy amable.", "author": "Montserrat Albarrán Gómez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMWVybDJBRRAB", "timestamp": "3 years ago"} Muy bien organizado, vistas al mar y el personal muy amable. 5 2023-01-31 01:52:39.833374+00 Montserrat Albarrán Gómez \N 1 2026-01-30 09:54:09.486909+00 2026-01-30 02:01:12.145898+00 2153 \N google ChZDSUhNMG9nS0VJQ0FnSUNsZ0w3U0RREAE unknown {"text": "Muí guai para echar un rato bueno a los car", "author": "Maria Alburquerque Molina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsZ0w3U0RREAE", "timestamp": "2 years ago"} Muí guai para echar un rato bueno a los car 5 2024-01-31 01:52:39.833374+00 Maria Alburquerque Molina \N 1 2026-01-30 09:54:09.490146+00 2026-01-30 02:01:12.152774+00 2154 \N google ChdDSUhNMG9nS0VJQ0FnSURNdEoyVnZ3RRAB unknown {"text": "Superbe circuit, le personnel est très gentil et les tarifs abordables.", "author": "Raphaël Bonte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNdEoyVnZ3RRAB", "timestamp": "6 years ago"} Superbe circuit, le personnel est très gentil et les tarifs abordables. 5 2020-02-01 01:52:39.833374+00 Raphaël Bonte \N 1 2026-01-30 09:54:09.494249+00 2026-01-30 02:01:12.156693+00 2155 \N google ChZDSUhNMG9nS0VJQ0FnSUN1MFpfcFBnEAE unknown {"text": "Muy bien los críos se lo pasaron en grande, y los mayores también.", "author": "Paloma Burguillo Garzón", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MFpfcFBnEAE", "timestamp": "3 years ago"} Muy bien los críos se lo pasaron en grande, y los mayores también. 4 2023-01-31 01:52:39.833374+00 Paloma Burguillo Garzón \N 1 2026-01-30 09:54:09.496418+00 2026-01-30 02:01:12.159128+00 2156 \N google ChZDSUhNMG9nS0VJQ0FnTURvb2FyQ2JnEAE unknown {"text": "Sehr gepflegte Anlage", "author": "Rainer Krause", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvb2FyQ2JnEAE", "timestamp": "9 months ago"} Sehr gepflegte Anlage 5 2025-05-05 00:52:39.833374+00 Rainer Krause \N 1 2026-01-30 09:54:09.499019+00 2026-01-30 02:01:12.161878+00 2157 \N google ChZDSUhNMG9nS0VJQ0FnSUNEdXVXdk5BEAE unknown {"text": "Ge ido varias veces y me lo paso pipa", "author": "Neus Antón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdXVXdk5BEAE", "timestamp": "a year ago"} Ge ido varias veces y me lo paso pipa 5 2025-01-30 01:52:39.833374+00 Neus Antón \N 1 2026-01-30 09:54:09.502229+00 2026-01-30 02:01:12.165481+00 2160 \N google ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE unknown {"text": "Está bien pero es poco tiempo para lo que cuesta. Está mejor el de Orihuela y más tiempo.", "author": "Mar Tovar", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE", "timestamp": "7 years ago"} Está bien pero es poco tiempo para lo que cuesta. Está mejor el de Orihuela y más tiempo. 3 2019-02-01 01:52:39.833374+00 Mar Tovar \N 1 2026-01-30 09:54:09.509421+00 2026-01-30 02:01:12.177315+00 2161 \N google ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB unknown {"text": "El mejor de la zona.\\nSolo cuatro estrellas porque la cafetería puede mejorar bastante.", "author": "Juan Herrera", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB", "timestamp": "4 years ago"} El mejor de la zona.\nSolo cuatro estrellas porque la cafetería puede mejorar bastante. 4 2022-01-31 01:52:39.833374+00 Juan Herrera \N 1 2026-01-30 09:54:09.511704+00 2026-01-30 02:01:12.18004+00 2162 \N google ChZDSUhNMG9nS0VJQ0FnSURid2Z5UmVnEAE unknown {"text": "Genial, unkompliziert! Tolle Strecke", "author": "Alexandra Grosse", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURid2Z5UmVnEAE", "timestamp": "a year ago"} Genial, unkompliziert! Tolle Strecke 5 2025-01-30 01:52:39.833374+00 Alexandra Grosse \N 1 2026-01-30 09:54:09.514379+00 2026-01-30 02:01:12.183881+00 2163 \N google ChdDSUhNMG9nS0VJQ0FnSURPN1p5SjJBRRAB unknown {"text": "Buen trato. Muy simpáticos.", "author": "Joaquin Galiano Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPN1p5SjJBRRAB", "timestamp": "3 years ago"} Buen trato. Muy simpáticos. 5 2023-01-31 01:52:39.833374+00 Joaquin Galiano Hernandez \N 1 2026-01-30 09:54:09.516677+00 2026-01-30 02:01:12.188747+00 2164 \N google ChdDSUhNMG9nS0VJQ0FnSURwMC1MY2hnRRAB unknown {"text": "Un buen sitio para pasar un ratito divertido", "author": "Hugo López", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMC1MY2hnRRAB", "timestamp": "2 years ago"} Un buen sitio para pasar un ratito divertido 4 2024-01-31 01:52:39.833374+00 Hugo López \N 1 2026-01-30 09:54:09.522597+00 2026-01-30 02:01:12.198202+00 2165 \N google ChZDSUhNMG9nS0VJQ0FnSURNOW9iMU5BEAE unknown {"text": "Un buen lugar para divertirse, sobre todo a los que les guste la velocidad.", "author": "Mari Carmen Lardin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNOW9iMU5BEAE", "timestamp": "6 years ago"} Un buen lugar para divertirse, sobre todo a los que les guste la velocidad. 4 2020-02-01 01:52:39.833374+00 Mari Carmen Lardin \N 1 2026-01-30 09:54:09.526438+00 2026-01-30 02:01:12.201585+00 2166 \N google ChdDSUhNMG9nS0VJQ0FnSURwODRpcDNRRRAB unknown {"text": "Muy bien, mi hijo y sobrinos disfrutaron", "author": "marga pastor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODRpcDNRRRAB", "timestamp": "2 years ago"} Muy bien, mi hijo y sobrinos disfrutaron 5 2024-01-31 01:52:39.833374+00 marga pastor \N 1 2026-01-30 09:54:09.529346+00 2026-01-30 02:01:12.205415+00 2167 \N google ChZDSUhNMG9nS0VJQ0FnSUNVOE83SWJnEAE unknown {"text": "Super pas trop chère et mon fils a adoré", "author": "Olivier Joyeux", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVOE83SWJnEAE", "timestamp": "6 years ago"} Super pas trop chère et mon fils a adoré 5 2020-02-01 01:52:39.833374+00 Olivier Joyeux \N 1 2026-01-30 09:54:09.532383+00 2026-01-30 02:01:12.209893+00 2168 \N google ChdDSUhNMG9nS0VJQ0FnSUQ4czd6eW93RRAB unknown {"text": "Buen circuito y la atención muy buena también.", "author": "Pedro Fernandez Villanueva", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4czd6eW93RRAB", "timestamp": "5 years ago"} Buen circuito y la atención muy buena también. 4 2021-01-31 01:52:39.833374+00 Pedro Fernandez Villanueva \N 1 2026-01-30 09:54:09.53421+00 2026-01-30 02:01:12.212251+00 2169 \N google ChZDSUhNMG9nS0VJQ0FnSURCZ0lxVU13EAE unknown {"text": "Buen lugar para pasar un buen día con amigos o familia", "author": "Lorena Ros", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCZ0lxVU13EAE", "timestamp": "3 years ago"} Buen lugar para pasar un buen día con amigos o familia 5 2023-01-31 01:52:39.833374+00 Lorena Ros \N 1 2026-01-30 09:54:09.536451+00 2026-01-30 02:01:12.214775+00 2170 \N google ChdDSUhNMG9nS0VJQ0FnSURVdWV6ZzZ3RRAB unknown {"text": "Buen circuito y organización. Los karts funcionaban todos similares (para que haya igualdad).", "author": "INN", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdWV6ZzZ3RRAB", "timestamp": "6 years ago"} Buen circuito y organización. Los karts funcionaban todos similares (para que haya igualdad). 5 2020-02-01 01:52:39.833374+00 INN \N 1 2026-01-30 09:54:09.539714+00 2026-01-30 02:01:12.217705+00 2171 \N google ChZDSUhNMG9nS0VJQ0FnSUNhenBhTUVREAE unknown {"text": "Un lugar muy divertido para ir con los amigos, familia...", "author": "Juan Marques", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhenBhTUVREAE", "timestamp": "4 years ago"} Un lugar muy divertido para ir con los amigos, familia... 5 2022-01-31 01:52:39.833374+00 Juan Marques \N 1 2026-01-30 09:54:09.542398+00 2026-01-30 02:01:12.220267+00 2172 \N google ChdDSUhNMG9nS0VJQ0FnSUNVNlBqVW9RRRAB unknown {"text": "Riktigt bra till bra pris! Känndes seriöst och samtidigt roligt!", "author": "Sara Rölvåg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVNlBqVW9RRRAB", "timestamp": "6 years ago"} Riktigt bra till bra pris! Känndes seriöst och samtidigt roligt! 5 2020-02-01 01:52:39.833374+00 Sara Rölvåg \N 1 2026-01-30 09:54:09.54633+00 2026-01-30 02:01:12.223548+00 2173 \N google ChdDSUhNMG9nS0VJQ0FnSURlaWF6azRnRRAB unknown {"text": "Buen trato y perfecto para pasar un buen rato", "author": "jose antonio verdu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlaWF6azRnRRAB", "timestamp": "3 years ago"} Buen trato y perfecto para pasar un buen rato 5 2023-01-31 01:52:39.833374+00 jose antonio verdu \N 1 2026-01-30 09:54:09.548601+00 2026-01-30 02:01:12.226513+00 2174 \N google ChZDSUhNMG9nS0VJQ0FnSUR2aWFtaldREAE unknown {"text": "Oikein hyvä. Suosittelen kokeilemaan", "author": "Pasi Riikonen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2aWFtaldREAE", "timestamp": "a year ago"} Oikein hyvä. Suosittelen kokeilemaan 4 2025-01-30 01:52:39.833374+00 Pasi Riikonen \N 1 2026-01-30 09:54:09.55063+00 2026-01-30 02:01:12.229554+00 2175 \N google ChZDSUhNMG9nS0VJQ0FnSURPMV82R2V3EAE unknown {"text": "Buena pista y coches rápidos según cilindrada escogida", "author": "Ivan Mesa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMV82R2V3EAE", "timestamp": "3 years ago"} Buena pista y coches rápidos según cilindrada escogida 5 2023-01-31 01:52:39.833374+00 Ivan Mesa \N 1 2026-01-30 09:54:09.553146+00 2026-01-30 02:01:12.233427+00 2375 \N google ChdDSUhNMG9nS0VJQ0FnSURSdjllenp3RRAB unknown {"text": "Mooie baan!", "author": "Martin Bedorf", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSdjllenp3RRAB", "timestamp": "2 years ago"} Mooie baan! 5 2024-01-31 01:52:39.833374+00 Martin Bedorf \N 1 2026-01-30 09:54:10.340522+00 2026-01-30 02:01:13.219275+00 2178 \N google ChdDSUhNMG9nS0VJQ0FnSURhc0lpMTVnRRAB unknown {"text": "Para pasar un rato excelente con los precios bastante competitivos", "author": "VíctoR de LaRa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhc0lpMTVnRRAB", "timestamp": "4 years ago"} Para pasar un rato excelente con los precios bastante competitivos 5 2022-01-31 01:52:39.833374+00 VíctoR de LaRa \N 1 2026-01-30 09:54:09.562249+00 2026-01-30 02:01:12.245905+00 2179 \N google ChZDSUhNMG9nS0VJQ0FnTURBMGFYZUtBEAE unknown {"text": "Circuitazo y los karts muy igualados!", "author": "Guillermo Huertas Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBMGFYZUtBEAE", "timestamp": "11 months ago"} Circuitazo y los karts muy igualados! 5 2025-03-06 01:52:39.833374+00 Guillermo Huertas Moreno \N 1 2026-01-30 09:54:09.566579+00 2026-01-30 02:01:12.24929+00 2180 \N google ChZDSUhNMG9nS0VJQ0FnSUR0aXNhNFFnEAE unknown {"text": "Todo perfecto!!! Muchas gracias", "author": "Selenia Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0aXNhNFFnEAE", "timestamp": "a year ago"} Todo perfecto!!! Muchas gracias 5 2025-01-30 01:52:39.833374+00 Selenia Gomez \N 1 2026-01-30 09:54:09.569995+00 2026-01-30 02:01:12.253375+00 2181 \N google ChZDSUhNMG9nS0VJQ0FnSUNBNVlUQVNREAE unknown {"text": "Sehr schnelle Karts. Da lohnt sich der Besuch. Sehr zu empfehlen sind die 300ccm. Sehr schnell.....", "author": "C. S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBNVlUQVNREAE", "timestamp": "8 years ago"} Sehr schnelle Karts. Da lohnt sich der Besuch. Sehr zu empfehlen sind die 300ccm. Sehr schnell..... 5 2018-02-01 01:52:39.833374+00 C. S. \N 1 2026-01-30 09:54:09.571733+00 2026-01-30 02:01:12.255679+00 2182 \N google ChZDSUhNMG9nS0VJQ0FnSURhNy1YWkR3EAE unknown {"text": "La simpatía de los instructores, y el buen asesoramiento a los participantes. Repetiremos", "author": "MARINA ESPINOSA", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNy1YWkR3EAE", "timestamp": "4 years ago"} La simpatía de los instructores, y el buen asesoramiento a los participantes. Repetiremos 4 2022-01-31 01:52:39.833374+00 MARINA ESPINOSA \N 1 2026-01-30 09:54:09.573992+00 2026-01-30 02:01:12.258701+00 2183 \N google ChdDSUhNMG9nS0VJQ0FnSURwMk5YZDZnRRAB unknown {"text": "Un rato divertido para los que les guste estas cosas claro.", "author": "Luis SANCHEZ BENITEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMk5YZDZnRRAB", "timestamp": "2 years ago"} Un rato divertido para los que les guste estas cosas claro. 5 2024-01-31 01:52:39.833374+00 Luis SANCHEZ BENITEZ \N 1 2026-01-30 09:54:09.577471+00 2026-01-30 02:01:12.262514+00 2184 \N google ChZDSUhNMG9nS0VJQ0FnSURhNzVxTEZnEAE unknown {"text": "Volvimos después de 8 años y como sube la adrenalina. Nos encantó.", "author": "M RR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNzVxTEZnEAE", "timestamp": "4 years ago"} Volvimos después de 8 años y como sube la adrenalina. Nos encantó. 5 2022-01-31 01:52:39.833374+00 M RR \N 1 2026-01-30 09:54:09.58163+00 2026-01-30 02:01:12.265417+00 2185 \N google ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB unknown {"text": "Instalaciones muy cuidadas. Con varias opciones para niños y adultos.", "author": "Jessica Alvarez Ortiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB", "timestamp": "4 years ago"} Instalaciones muy cuidadas. Con varias opciones para niños y adultos. 5 2022-01-31 01:52:39.833374+00 Jessica Alvarez Ortiz \N 1 2026-01-30 09:54:09.583712+00 2026-01-30 02:01:12.26799+00 2186 \N google ChZDSUhNMG9nS0VJQ0FnSUNWcHJpcFBREAE unknown {"text": "Todo de 10, lo recomiendo sin ninguna duda.", "author": "Joaquin Navarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWcHJpcFBREAE", "timestamp": "2 years ago"} Todo de 10, lo recomiendo sin ninguna duda. 5 2024-01-31 01:52:39.833374+00 Joaquin Navarro \N 1 2026-01-30 09:54:09.58775+00 2026-01-30 02:01:12.272757+00 2187 \N google ChZDSUhNMG9nS0VJQ0FnSURncmRQdExBEAE unknown {"text": "Unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos.", "author": "MARIA LUISA ABOAL SANJURJO", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncmRQdExBEAE", "timestamp": "9 years ago"} Unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos. 4 2017-02-01 01:52:39.833374+00 MARIA LUISA ABOAL SANJURJO \N 1 2026-01-30 09:54:09.590071+00 2026-01-30 02:01:12.275657+00 2188 \N google ChZDSUhNMG9nS0VJQ0FnSUNzMGIzblR3EAE unknown {"text": "Muy buen sitio para pasar una tarde de domingo", "author": "Angeles Gea Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzMGIzblR3EAE", "timestamp": "5 years ago"} Muy buen sitio para pasar una tarde de domingo 5 2021-01-31 01:52:39.833374+00 Angeles Gea Sanchez \N 1 2026-01-30 09:54:09.593121+00 2026-01-30 02:01:12.278863+00 2189 \N google ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB unknown {"text": "Bien para adultos. Para chicos me parece un poco peligroso.", "author": "dual_Coroyale", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB", "timestamp": "7 years ago"} Bien para adultos. Para chicos me parece un poco peligroso. 3 2019-02-01 01:52:39.833374+00 dual_Coroyale \N 1 2026-01-30 09:54:09.59862+00 2026-01-30 02:01:12.283664+00 2190 \N google ChdDSUhNMG9nS0VJQ0FnSURCeU9UOG9RRRAB unknown {"text": "Erg leuk Ongedwongen sfeer en redelijke prijzen.", "author": "Joke Spaanderman", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeU9UOG9RRRAB", "timestamp": "3 years ago"} Erg leuk Ongedwongen sfeer en redelijke prijzen. 5 2023-01-31 01:52:39.833374+00 Joke Spaanderman \N 1 2026-01-30 09:54:09.600953+00 2026-01-30 02:01:12.286791+00 2191 \N google ChZDSUhNMG9nS0VJQ0FnSURXZ0lucVVnEAE unknown {"text": "Lo pasamos de lujo, la gente del circuito muy atenta.", "author": "antonio prats rodriguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXZ0lucVVnEAE", "timestamp": "3 years ago"} Lo pasamos de lujo, la gente del circuito muy atenta. 4 2023-01-31 01:52:39.833374+00 antonio prats rodriguez \N 1 2026-01-30 09:54:09.603806+00 2026-01-30 02:01:12.290713+00 2192 \N google ChZDSUhNMG9nS0VJQ0FnSUNHdEs2VUdREAE unknown {"text": "Das Fahren mit Kindern ist gut", "author": "Petra Kirchner", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHdEs2VUdREAE", "timestamp": "4 years ago"} Das Fahren mit Kindern ist gut 4 2022-01-31 01:52:39.833374+00 Petra Kirchner \N 1 2026-01-30 09:54:09.605631+00 2026-01-30 02:01:12.293411+00 2193 \N google ChdDSUhNMG9nS0VJQ0FnSUR1bmFLLXJBRRAB unknown {"text": "Genial para pasar un rato con los amigos conduciendo karts", "author": "Belén San Pe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bmFLLXJBRRAB", "timestamp": "3 years ago"} Genial para pasar un rato con los amigos conduciendo karts 5 2023-01-31 01:52:39.833374+00 Belén San Pe \N 1 2026-01-30 09:54:09.608421+00 2026-01-30 02:01:12.296039+00 2194 \N google ChdDSUhNMG9nS0VJQ0FnSURhblBISjlBRRAB unknown {"text": "Excelente diseño, coches muy cuidados y personal profesional!!!", "author": "MANUEL GARRIDO RUIZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhblBISjlBRRAB", "timestamp": "4 years ago"} Excelente diseño, coches muy cuidados y personal profesional!!! 5 2022-01-31 01:52:39.833374+00 MANUEL GARRIDO RUIZ \N 1 2026-01-30 09:54:09.612031+00 2026-01-30 02:01:12.298616+00 2197 \N google ChZDSUhNMG9nS0VJQ0FnSUNrM3VPUUZ3EAE unknown {"text": "Super jazda za 12 euro 10 minut szaleństwa, polecam", "author": "Rafał Konieczkowski", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNrM3VPUUZ3EAE", "timestamp": "6 years ago"} Super jazda za 12 euro 10 minut szaleństwa, polecam 5 2020-02-01 01:52:39.833374+00 Rafał Konieczkowski \N 1 2026-01-30 09:54:09.619891+00 2026-01-30 02:01:12.308242+00 2198 \N google ChdDSUhNMG9nS0VJQ0FnTURBNFplVTVBRRAB unknown {"text": "Mala atención reservas fatal", "author": "emiliano roldan", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNFplVTVBRRAB", "timestamp": "11 months ago"} Mala atención reservas fatal 1 2025-03-06 01:52:39.833374+00 emiliano roldan \N 1 2026-01-30 09:54:09.623991+00 2026-01-30 02:01:12.312648+00 2199 \N google ChdDSUhNMG9nS0VJQ0FnSUN2NUs3cmdBRRAB unknown {"text": "Para pasar un buen rato", "author": "Gonzalo Fernández", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2NUs3cmdBRRAB", "timestamp": "a year ago"} Para pasar un buen rato 4 2025-01-30 01:52:39.833374+00 Gonzalo Fernández \N 1 2026-01-30 09:54:09.628182+00 2026-01-30 02:01:12.316131+00 2200 \N google ChZDSUhNMG9nS0VJQ0FnSURLcGY3OFJBEAE unknown {"text": "Un circuito espectacular y muy buena atención lo recomiendo", "author": "Juanjo Peinado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGY3OFJBEAE", "timestamp": "4 years ago"} Un circuito espectacular y muy buena atención lo recomiendo 5 2022-01-31 01:52:39.833374+00 Juanjo Peinado \N 1 2026-01-30 09:54:09.632067+00 2026-01-30 02:01:12.31856+00 2201 \N google ChdDSUhNMG9nS0VJQ0FnSURVdU52WWxBRRAB unknown {"text": "Un buen sitio para pasar un buen rato, ¡¡¡Super divertido!!!.....", "author": "Emiliano Romero Sevilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdU52WWxBRRAB", "timestamp": "6 years ago"} Un buen sitio para pasar un buen rato, ¡¡¡Super divertido!!!..... 5 2020-02-01 01:52:39.833374+00 Emiliano Romero Sevilla \N 1 2026-01-30 09:54:09.63653+00 2026-01-30 02:01:12.323759+00 2202 \N google ChdDSUhNMG9nS0VJQ0FnSUNDNVpHTnNnRRAB unknown {"text": "Muy buenos, buen circuito y buen precio. De los mejorcitos", "author": "Alberto Valero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDNVpHTnNnRRAB", "timestamp": "5 years ago"} Muy buenos, buen circuito y buen precio. De los mejorcitos 5 2021-01-31 01:52:39.833374+00 Alberto Valero \N 1 2026-01-30 09:54:09.638698+00 2026-01-30 02:01:12.326777+00 2203 \N google ChdDSUhNMG9nS0VJQ0FnSUR1cC1iUjN3RRAB unknown {"text": "Muy buena opción para pasar un buen rato", "author": "Javier Manzanares", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cC1iUjN3RRAB", "timestamp": "3 years ago"} Muy buena opción para pasar un buen rato 4 2023-01-31 01:52:39.833374+00 Javier Manzanares \N 1 2026-01-30 09:54:09.64074+00 2026-01-30 02:01:12.329704+00 2204 \N google ChdDSUhNMG9nS0VJQ0FnSUNtMW95RzZBRRAB unknown {"text": "Een hele mooie en leuke baan met rechte en moeilijke bochten", "author": "Kolckt Kolckt", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtMW95RzZBRRAB", "timestamp": "4 years ago"} Een hele mooie en leuke baan met rechte en moeilijke bochten 4 2022-01-31 01:52:39.833374+00 Kolckt Kolckt \N 1 2026-01-30 09:54:09.642854+00 2026-01-30 02:01:12.332332+00 2205 \N google ChdDSUhNMG9nS0VJQ0FnSUM5cTV1ZnJnRRAB unknown {"text": "Leuk om te zien", "author": "Karel Rosé", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5cTV1ZnJnRRAB", "timestamp": "a year ago"} Leuk om te zien 4 2025-01-30 01:52:39.833374+00 Karel Rosé \N 1 2026-01-30 09:54:09.645559+00 2026-01-30 02:01:12.335307+00 2206 \N google ChZDSUhNMG9nS0VJQ0FnSURZdXFDcU1BEAE unknown {"text": "Circuito grande y ancho, para novatos y expertos. Coches de todas las categorías,.", "author": "Serching", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZdXFDcU1BEAE", "timestamp": "6 years ago"} Circuito grande y ancho, para novatos y expertos. Coches de todas las categorías,. 4 2020-02-01 01:52:39.833374+00 Serching \N 1 2026-01-30 09:54:09.649622+00 2026-01-30 02:01:12.338511+00 2207 \N google ChdDSUhNMG9nS0VJQ0FnSURTM1pyOWlBRRAB unknown {"text": "Estupenda pista, muy bien organizados y buenos karts.", "author": "Francisco Canovas Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTM1pyOWlBRRAB", "timestamp": "5 years ago"} Estupenda pista, muy bien organizados y buenos karts. 5 2021-01-31 01:52:39.833374+00 Francisco Canovas Garcia \N 1 2026-01-30 09:54:09.652388+00 2026-01-30 02:01:12.43149+00 2208 \N google ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB unknown {"text": "Mi mejor experiencia en los karst pero se podría mejorar un poco más el precio,es un poco caro", "author": "Aitor Sanchez Gimenez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB", "timestamp": "10 years ago"} Mi mejor experiencia en los karst pero se podría mejorar un poco más el precio,es un poco caro 4 2016-02-02 01:52:39.833374+00 Aitor Sanchez Gimenez \N 1 2026-01-30 09:54:09.65418+00 2026-01-30 02:01:12.438761+00 2209 \N google ChdDSUhNMG9nS0VJQ0FnSUN3MkpDRjNRRRAB unknown {"text": "Lugar excelente i divertido para los aficcionados de moto i karting!!!", "author": "Andrei Stirbu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MkpDRjNRRRAB", "timestamp": "Edited 8 years ago"} Lugar excelente i divertido para los aficcionados de moto i karting!!! 5 2026-01-30 01:52:39.833374+00 Andrei Stirbu \N 1 2026-01-30 09:54:09.662446+00 2026-01-30 02:01:12.448587+00 2210 \N google ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE unknown {"text": "Estupenda atención, buen circuito.", "author": "beatriz m gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE", "timestamp": "a year ago"} Estupenda atención, buen circuito. 5 2025-01-30 01:52:39.833374+00 beatriz m gonzalez \N 1 2026-01-30 09:54:09.665923+00 2026-01-30 02:01:12.451708+00 2211 \N google ChdDSUhNMG9nS0VJQ0FnSUNwMzgzeDFRRRAB unknown {"text": "Muy buena gente. Gracias", "author": "Cristian Moisès Moreno Ortiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwMzgzeDFRRRAB", "timestamp": "2 years ago"} Muy buena gente. Gracias 5 2024-01-31 01:52:39.833374+00 Cristian Moisès Moreno Ortiz \N 1 2026-01-30 09:54:09.668113+00 2026-01-30 02:01:12.454792+00 2212 \N google ChZDSUhNMG9nS0VJQ0FnSUQ4bS03S0NnEAE unknown {"text": "Buenos karts,buen trato\\nEl mejor plan para pasar la tarde", "author": "harval17", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4bS03S0NnEAE", "timestamp": "5 years ago"} Buenos karts,buen trato\nEl mejor plan para pasar la tarde 5 2021-01-31 01:52:39.833374+00 harval17 \N 1 2026-01-30 09:54:09.671689+00 2026-01-30 02:01:12.46192+00 2420 \N google ChZDSUhNMG9nS0VJQ0FnSURnZy1mbktBEAE unknown {"text": "Woow super", "author": "Wojciech Kosecki", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnZy1mbktBEAE", "timestamp": "7 years ago"} Woow super 5 2019-02-01 01:52:39.833374+00 Wojciech Kosecki \N 1 2026-01-30 09:54:10.632979+00 2026-01-30 02:01:13.510025+00 2214 \N google ChZDSUhNMG9nS0VJQ0FnSURLNWE2bUpREAE unknown {"text": "Experiencia muy buena para pasar con los pequeños y los no tan pequeños.", "author": "Francisco Trigueros", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLNWE2bUpREAE", "timestamp": "4 years ago"} Experiencia muy buena para pasar con los pequeños y los no tan pequeños. 4 2022-01-31 01:52:39.833374+00 Francisco Trigueros \N 1 2026-01-30 09:54:09.677434+00 2026-01-30 02:01:12.468906+00 2215 \N google ChZDSUhNMG9nS0VJQ0FnSUN3dUxQQ05BEAE unknown {"text": "Un trazado para auténticos leones, trato exquisito, recomendable 100%", "author": "Guillotina 1312", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3dUxQQ05BEAE", "timestamp": "8 years ago"} Un trazado para auténticos leones, trato exquisito, recomendable 100% 5 2018-02-01 01:52:39.833374+00 Guillotina 1312 \N 1 2026-01-30 09:54:09.682061+00 2026-01-30 02:01:12.474944+00 2216 \N google ChZDSUhNMG9nS0VJQ0FnSUR3bU8zZ0J3EAE unknown {"text": "Veldig tøff bane. Vi vil kjøre mer!", "author": "Laila Haugslett", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR3bU8zZ0J3EAE", "timestamp": "7 years ago"} Veldig tøff bane. Vi vil kjøre mer! 5 2019-02-01 01:52:39.833374+00 Laila Haugslett \N 1 2026-01-30 09:54:09.685143+00 2026-01-30 02:01:12.47881+00 2217 \N google ChdDSUhNMG9nS0VJQ0FnSURtbTRqTS1RRRAB unknown {"text": "Buen circuito para hacer karts y muy entretenido", "author": "J G", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtbTRqTS1RRRAB", "timestamp": "3 years ago"} Buen circuito para hacer karts y muy entretenido 4 2023-01-31 01:52:39.833374+00 J G \N 1 2026-01-30 09:54:09.687373+00 2026-01-30 02:01:12.481717+00 2218 \N google ChdDSUhNMG9nS0VJQ0FnSUN4cXQtRHh3RRAB unknown {"text": "Experiencia increíble, muy segura y recomendable!", "author": "Francisco Jose Montiel Barnes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cXQtRHh3RRAB", "timestamp": "2 years ago"} Experiencia increíble, muy segura y recomendable! 5 2024-01-31 01:52:39.833374+00 Francisco Jose Montiel Barnes \N 1 2026-01-30 09:54:09.690176+00 2026-01-30 02:01:12.485203+00 2219 \N google ChZDSUhNMG9nS0VJQ0FnSURxaU0yaWF3EAE unknown {"text": "Genial pista. Muy bien para peques.", "author": "Reyes Alcañiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxaU0yaWF3EAE", "timestamp": "4 years ago"} Genial pista. Muy bien para peques. 5 2022-01-31 01:52:39.833374+00 Reyes Alcañiz \N 1 2026-01-30 09:54:09.69445+00 2026-01-30 02:01:12.490015+00 2220 \N google ChdDSUhNMG9nS0VJQ0FnSUNhNC1XUGdRRRAB unknown {"text": "Peefecto todos se lo pasaron pipa", "author": "Vanessa Rama Fondo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNC1XUGdRRRAB", "timestamp": "4 years ago"} Peefecto todos se lo pasaron pipa 5 2022-01-31 01:52:39.833374+00 Vanessa Rama Fondo \N 1 2026-01-30 09:54:09.698991+00 2026-01-30 02:01:12.493231+00 2221 \N google ChdDSUhNMG9nS0VJQ0FnSURJb0t2SGp3RRAB unknown {"text": "Una pista buena y buena atención personal y la pista está en un buen estado", "author": "El sech", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJb0t2SGp3RRAB", "timestamp": "7 years ago"} Una pista buena y buena atención personal y la pista está en un buen estado 5 2019-02-01 01:52:39.833374+00 El sech \N 1 2026-01-30 09:54:09.702662+00 2026-01-30 02:01:12.495709+00 2222 \N google ChdDSUhNMG9nS0VJQ0FnSUNDdklDYnVRRRAB unknown {"text": "Buenos karts a muy buen precio con buenas medidas de prevención del covid.", "author": "Serla Paredes", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDdklDYnVRRRAB", "timestamp": "5 years ago"} Buenos karts a muy buen precio con buenas medidas de prevención del covid. 4 2021-01-31 01:52:39.833374+00 Serla Paredes \N 1 2026-01-30 09:54:09.705119+00 2026-01-30 02:01:12.49835+00 2223 \N google ChZDSUhNMG9nS0VJQ0FnSUNDNTdMYlZREAE unknown {"text": "Pasamos una buena tarde. El sitio está bien.", "author": "Rodrigo Cobos, CFA", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDNTdMYlZREAE", "timestamp": "5 years ago"} Pasamos una buena tarde. El sitio está bien. 4 2021-01-31 01:52:39.833374+00 Rodrigo Cobos, CFA \N 1 2026-01-30 09:54:09.707615+00 2026-01-30 02:01:12.500794+00 2224 \N google ChdDSUhNMG9nS0VJQ0FnSURJNDhUUnFBRRAB unknown {"text": "Buen circuito y lugar donde pasar un día de motor.", "author": "David Ayala", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJNDhUUnFBRRAB", "timestamp": "7 years ago"} Buen circuito y lugar donde pasar un día de motor. 5 2019-02-01 01:52:39.833374+00 David Ayala \N 1 2026-01-30 09:54:09.709712+00 2026-01-30 02:01:12.503051+00 2225 \N google ChdDSUhNMG9nS0VJQ0FnSUNhbzhfOWp3RRAB unknown {"text": "Todo perfecto y muy amables", "author": "C GA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhbzhfOWp3RRAB", "timestamp": "4 years ago"} Todo perfecto y muy amables 5 2022-01-31 01:52:39.833374+00 C GA \N 1 2026-01-30 09:54:09.711782+00 2026-01-30 02:01:12.505674+00 2226 \N google ChZDSUhNMG9nS0VJQ0FnSUNDcFp2dVVBEAE unknown {"text": "Sitio muy divertido para pasar en familia", "author": "Pablo Linares", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcFp2dVVBEAE", "timestamp": "5 years ago"} Sitio muy divertido para pasar en familia 4 2021-01-31 01:52:39.833374+00 Pablo Linares \N 1 2026-01-30 09:54:09.716264+00 2026-01-30 02:01:12.508589+00 2227 \N google ChdDSUhNMG9nS0VJQ0FnSUNRM1lHNzhRRRAB unknown {"text": "el mejor karting de la zona con diferencia. A destacar el trato de sus gerentes .", "author": "Cristina Balsalobre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRM1lHNzhRRRAB", "timestamp": "7 years ago"} el mejor karting de la zona con diferencia. A destacar el trato de sus gerentes . 5 2019-02-01 01:52:39.833374+00 Cristina Balsalobre \N 1 2026-01-30 09:54:09.721325+00 2026-01-30 02:01:12.512476+00 2228 \N google ChZDSUhNMG9nS0VJQ0FnSUM2cUpDdVl3EAE unknown {"text": "Una pasada... Recomendable 100x100...de los mejores que he visitado.", "author": "Domi Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cUpDdVl3EAE", "timestamp": "4 years ago"} Una pasada... Recomendable 100x100...de los mejores que he visitado. 5 2022-01-31 01:52:39.833374+00 Domi Perez \N 1 2026-01-30 09:54:09.725065+00 2026-01-30 02:01:12.516654+00 2229 \N google ChZDSUhNMG9nS0VJQ0FnSUNhMF9POElREAE unknown {"text": "Buena diversión pero hay que coger los de 300", "author": "Angel Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMF9POElREAE", "timestamp": "4 years ago"} Buena diversión pero hay que coger los de 300 5 2022-01-31 01:52:39.833374+00 Angel Lopez \N 1 2026-01-30 09:54:09.727301+00 2026-01-30 02:01:12.519009+00 2230 \N google ChdDSUhNMG9nS0VJQ0FnSUNLdVlXb3R3RRAB unknown {"text": "Velocidad, seguridad y buen precio. Una tarde super divertida", "author": "Monica Lopez Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLdVlXb3R3RRAB", "timestamp": "4 years ago"} Velocidad, seguridad y buen precio. Una tarde super divertida 5 2022-01-31 01:52:39.833374+00 Monica Lopez Lopez \N 1 2026-01-30 09:54:09.730119+00 2026-01-30 02:01:12.522056+00 2231 \N google ChZDSUhNMG9nS0VJQ0FnTUNJb3J5MFB3EAE unknown {"text": "Una experiencia inolvidable", "author": "Emilia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJb3J5MFB3EAE", "timestamp": "9 months ago"} Una experiencia inolvidable 5 2025-05-05 00:52:39.833374+00 Emilia \N 1 2026-01-30 09:54:09.736538+00 2026-01-30 02:01:12.526666+00 2233 \N google ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE unknown {"text": "Muy buen trato, buena pista de karts", "author": "Laura Martínez Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE", "timestamp": "4 years ago"} Muy buen trato, buena pista de karts 5 2022-01-31 01:52:39.833374+00 Laura Martínez Rodríguez \N 1 2026-01-30 09:54:09.744353+00 2026-01-30 02:01:12.537015+00 2234 \N google ChZDSUhNMG9nS0VJQ0FnSUNPMmNyd1pnEAE unknown {"text": "El mejor sitio para ir a montar karts del mar menor", "author": "Nico Ma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPMmNyd1pnEAE", "timestamp": "3 years ago"} El mejor sitio para ir a montar karts del mar menor 5 2023-01-31 01:52:39.833374+00 Nico Ma \N 1 2026-01-30 09:54:09.751848+00 2026-01-30 02:01:12.543631+00 2235 \N google ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE unknown {"text": "A sacar alguna pega, la pista bacheada, pero genial", "author": "Juan Antonio Martinez Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE", "timestamp": "3 years ago"} A sacar alguna pega, la pista bacheada, pero genial 5 2023-01-31 01:52:39.833374+00 Juan Antonio Martinez Gomez \N 1 2026-01-30 09:54:09.761528+00 2026-01-30 02:01:12.554189+00 2236 \N google ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB unknown {"text": "Buena pista. Y precios que no son caros", "author": "Mariam navarro del castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB", "timestamp": "5 years ago"} Buena pista. Y precios que no son caros 5 2021-01-31 01:52:39.833374+00 Mariam navarro del castillo \N 1 2026-01-30 09:54:09.766313+00 2026-01-30 02:01:12.559071+00 2237 \N google ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB unknown {"text": "Mejor circuito de la Costa. Rápidos y limpios", "author": "Gonzalo Olmos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB", "timestamp": "3 years ago"} Mejor circuito de la Costa. Rápidos y limpios 5 2023-01-31 01:52:39.833374+00 Gonzalo Olmos \N 1 2026-01-30 09:54:09.769965+00 2026-01-30 02:01:12.562355+00 2238 \N google ChZDSUhNMG9nS0VJQ0FnSURhdU4teWJnEAE unknown {"text": "Estupendo diseño del circuito y muy buena la gestión!!!", "author": "Anabel García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhdU4teWJnEAE", "timestamp": "4 years ago"} Estupendo diseño del circuito y muy buena la gestión!!! 5 2022-01-31 01:52:39.833374+00 Anabel García \N 1 2026-01-30 09:54:09.772044+00 2026-01-30 02:01:12.565246+00 2239 \N google ChZDSUhNMG9nS0VJQ0FnSUM0anFXNUxBEAE unknown {"text": "Muy amables y muy buen servicio.", "author": "Jose Angel Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0anFXNUxBEAE", "timestamp": "6 years ago"} Muy amables y muy buen servicio. 5 2020-02-01 01:52:39.833374+00 Jose Angel Mora \N 1 2026-01-30 09:54:09.774175+00 2026-01-30 02:01:12.568657+00 2240 \N google ChdDSUhNMG9nS0VJQ0FnSUM4aHFlVDFBRRAB unknown {"text": "El mejor karting para correr y pasar un tiempo espectacular!!!", "author": "Luis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4aHFlVDFBRRAB", "timestamp": "5 years ago"} El mejor karting para correr y pasar un tiempo espectacular!!! 5 2021-01-31 01:52:39.833374+00 Luis \N 1 2026-01-30 09:54:09.77633+00 2026-01-30 02:01:12.571887+00 2241 \N google ChZDSUhNMG9nS0VJQ0FnSUNDc2JicFBBEAE unknown {"text": "Buen sitio para recrearse mayores y ninos.", "author": "jose manuel gil anton", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDc2JicFBBEAE", "timestamp": "5 years ago"} Buen sitio para recrearse mayores y ninos. 4 2021-01-31 01:52:39.833374+00 jose manuel gil anton \N 1 2026-01-30 09:54:09.778583+00 2026-01-30 02:01:12.575356+00 2242 \N google ChdDSUhNMG9nS0VJQ0FnSUNZc2Zqbmx3RRAB unknown {"text": "Buen sitio para dar gas buen asfalto", "author": "Nico Gimeno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZc2Zqbmx3RRAB", "timestamp": "6 years ago"} Buen sitio para dar gas buen asfalto 5 2020-02-01 01:52:39.833374+00 Nico Gimeno \N 1 2026-01-30 09:54:09.782541+00 2026-01-30 02:01:12.582776+00 2243 \N google ChdDSUhNMG9nS0VJQ0FnSUNhemV6YzRRRRAB unknown {"text": "Espectacular, trato, circuito. De 10", "author": "Javier Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhemV6YzRRRRAB", "timestamp": "4 years ago"} Espectacular, trato, circuito. De 10 5 2022-01-31 01:52:39.833374+00 Javier Martinez \N 1 2026-01-30 09:54:09.788095+00 2026-01-30 02:01:12.587176+00 2244 \N google ChdDSUhNMG9nS0VJQ0FnSUNwcHAtcWdBRRAB unknown {"text": "Los karts buena potencia y circuito bastante largo", "author": "Javier González", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwcHAtcWdBRRAB", "timestamp": "2 years ago"} Los karts buena potencia y circuito bastante largo 5 2024-01-31 01:52:39.833374+00 Javier González \N 1 2026-01-30 09:54:09.79128+00 2026-01-30 02:01:12.59126+00 2245 \N google ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE unknown {"text": "C est un peu cher mais c'est cool !!!", "author": "Murielle Deredec", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE", "timestamp": "8 years ago"} C est un peu cher mais c'est cool !!! 4 2018-02-01 01:52:39.833374+00 Murielle Deredec \N 1 2026-01-30 09:54:09.793677+00 2026-01-30 02:01:12.594009+00 2246 \N google ChZDSUhNMG9nS0VJQ0FnSUNHOHFiSVVBEAE unknown {"text": "Nos ha encantado la experiencia", "author": "Dinamita", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHOHFiSVVBEAE", "timestamp": "4 years ago"} Nos ha encantado la experiencia 5 2022-01-31 01:52:39.833374+00 Dinamita \N 1 2026-01-30 09:54:09.796797+00 2026-01-30 02:01:12.597423+00 2247 \N google ChZDSUhNMG9nS0VJQ0FnSUNRaXAySGV3EAE unknown {"text": "Entretenido para niños y mayores en un buen ambiente.", "author": "Davproxd", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRaXAySGV3EAE", "timestamp": "8 years ago"} Entretenido para niños y mayores en un buen ambiente. 4 2018-02-01 01:52:39.833374+00 Davproxd \N 1 2026-01-30 09:54:09.798694+00 2026-01-30 02:01:12.599837+00 2248 \N google ChZDSUhNMG9nS0VJQ0FnSURJOUoteVRBEAE unknown {"text": "Un muy buen rato de risas y competición sana", "author": "ANTONIO GRANADOS VELASCO", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOUoteVRBEAE", "timestamp": "7 years ago"} Un muy buen rato de risas y competición sana 4 2019-02-01 01:52:39.833374+00 ANTONIO GRANADOS VELASCO \N 1 2026-01-30 09:54:09.800862+00 2026-01-30 02:01:12.602309+00 2249 \N google ChdDSUhNMG9nS0VJQ0FnSUNVanJpOS1nRRAB unknown {"text": "Excelente circuito muy moderno y detallado.", "author": "Juanma ma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVanJpOS1nRRAB", "timestamp": "6 years ago"} Excelente circuito muy moderno y detallado. 5 2020-02-01 01:52:39.833374+00 Juanma ma \N 1 2026-01-30 09:54:09.805219+00 2026-01-30 02:01:12.605601+00 2250 \N google ChdDSUhNMG9nS0VJQ0FnSUN1eU9PUWdnRRAB unknown {"text": "He ido a varios de la región y este es el mejor que he probado.", "author": "Víctor Giménez Bravo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1eU9PUWdnRRAB", "timestamp": "3 years ago"} He ido a varios de la región y este es el mejor que he probado. 5 2023-01-31 01:52:39.833374+00 Víctor Giménez Bravo \N 1 2026-01-30 09:54:09.807464+00 2026-01-30 02:01:12.607875+00 2252 \N google ChdDSUhNMG9nS0VJQ0FnSUR1Xzh2SWhBRRAB unknown {"text": "MOLTO BELLO E DIVERTENTE, DA ANDARCI ANCORA", "author": "Fabio Grigoletto", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1Xzh2SWhBRRAB", "timestamp": "3 years ago"} MOLTO BELLO E DIVERTENTE, DA ANDARCI ANCORA 4 2023-01-31 01:52:39.833374+00 Fabio Grigoletto \N 1 2026-01-30 09:54:09.817684+00 2026-01-30 02:01:12.61805+00 2253 \N google ChZDSUhNMG9nS0VJQ0FnSUM2bk1YM1BnEAE unknown {"text": "Circuito de Cars económico en el que tanto pequeños como grandes disfrutan mucho", "author": "Janire Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2bk1YM1BnEAE", "timestamp": "4 years ago"} Circuito de Cars económico en el que tanto pequeños como grandes disfrutan mucho 5 2022-01-31 01:52:39.833374+00 Janire Fernandez \N 1 2026-01-30 09:54:09.82215+00 2026-01-30 02:01:12.620575+00 2254 \N google ChdDSUhNMG9nS0VJQ0FnSURPNHNfR2dBRRAB unknown {"text": "Una gran experiencia con una muy buena atención", "author": "Juan Antonio Sanchez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNHNfR2dBRRAB", "timestamp": "3 years ago"} Una gran experiencia con una muy buena atención 5 2023-01-31 01:52:39.833374+00 Juan Antonio Sanchez Hernandez \N 1 2026-01-30 09:54:09.82516+00 2026-01-30 02:01:12.623577+00 2255 \N google ChZDSUhNMG9nS0VJQ0FnSURncU5pX0lREAE unknown {"text": "Buen lugar para descargar adrenalina con los amigos y familia.", "author": "Juan Manuel Gálvez Velasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncU5pX0lREAE", "timestamp": "8 years ago"} Buen lugar para descargar adrenalina con los amigos y familia. 5 2018-02-01 01:52:39.833374+00 Juan Manuel Gálvez Velasco \N 1 2026-01-30 09:54:09.827384+00 2026-01-30 02:01:12.626531+00 2256 \N google ChdDSUhNMG9nS0VJQ0FnSUQ2MXZUMDRRRRAB unknown {"text": "El circuito perfecto y ofertas muy prometedoras", "author": "Daniel Velasco Morata", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2MXZUMDRRRRAB", "timestamp": "4 years ago"} El circuito perfecto y ofertas muy prometedoras 5 2022-01-31 01:52:39.833374+00 Daniel Velasco Morata \N 1 2026-01-30 09:54:09.82973+00 2026-01-30 02:01:12.629229+00 2257 \N google ChZDSUhNMG9nS0VJQ0FnSUNBa01hSFlREAE unknown {"text": "Una pasada y todo muy bien orfanizado", "author": "JOSE FCO. MARIN-BALDO GOMEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBa01hSFlREAE", "timestamp": "8 years ago"} Una pasada y todo muy bien orfanizado 5 2018-02-01 01:52:39.833374+00 JOSE FCO. MARIN-BALDO GOMEZ \N 1 2026-01-30 09:54:09.832942+00 2026-01-30 02:01:12.631611+00 2258 \N google ChdDSUhNMG9nS0VJQ0FnSURwLVpuSTl3RRAB unknown {"text": "Karts muy potentes, pista grande y es muy divertido 😃", "author": "Paco C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwLVpuSTl3RRAB", "timestamp": "2 years ago"} Karts muy potentes, pista grande y es muy divertido 😃 5 2024-01-31 01:52:39.833374+00 Paco C \N 1 2026-01-30 09:54:09.837561+00 2026-01-30 02:01:12.63462+00 2259 \N google ChZDSUhNMG9nS0VJQ0FnSURkNy1UcFNREAE unknown {"text": "GENIAL, ENDROIT BIEN TENU", "author": "Dominique Dubuisson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkNy1UcFNREAE", "timestamp": "a year ago"} GENIAL, ENDROIT BIEN TENU 5 2025-01-30 01:52:39.833374+00 Dominique Dubuisson \N 1 2026-01-30 09:54:09.845954+00 2026-01-30 02:01:12.641835+00 2260 \N google ChdDSUhNMG9nS0VJQ0FnSUQweTdDa3BBRRAB unknown {"text": "Circuito grande y bien preparado con muchos coches", "author": "javier fito ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQweTdDa3BBRRAB", "timestamp": "6 years ago"} Circuito grande y bien preparado con muchos coches 5 2020-02-01 01:52:39.833374+00 javier fito ramirez \N 1 2026-01-30 09:54:09.851047+00 2026-01-30 02:01:12.645249+00 2261 \N google ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB unknown {"text": "Buen trato y karts muy cuidados", "author": "israel martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB", "timestamp": "6 years ago"} Buen trato y karts muy cuidados 5 2020-02-01 01:52:39.833374+00 israel martinez \N 1 2026-01-30 09:54:09.854287+00 2026-01-30 02:01:12.647904+00 2262 \N google ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB unknown {"text": "Leuke carting, wel best reserveren", "author": "annick dheedens", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB", "timestamp": "4 years ago"} Leuke carting, wel best reserveren 4 2022-01-31 01:52:39.833374+00 annick dheedens \N 1 2026-01-30 09:54:09.863792+00 2026-01-30 02:01:12.657626+00 2263 \N google ChZDSUhNMG9nS0VJQ0FnSUNXM2RqNUJBEAE unknown {"text": "Unas instalaciones muy bien acondicionadas", "author": "ROSA CARCELES", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXM2RqNUJBEAE", "timestamp": "3 years ago"} Unas instalaciones muy bien acondicionadas 5 2023-01-31 01:52:39.833374+00 ROSA CARCELES \N 1 2026-01-30 09:54:09.866435+00 2026-01-30 02:01:12.660875+00 2264 \N google ChdDSUhNMG9nS0VJQ0FnSUQtNjl5V3JnRRAB unknown {"text": "Uno de los mejores circuitos de karting de toda España", "author": "Dani Riquelme", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtNjl5V3JnRRAB", "timestamp": "3 years ago"} Uno de los mejores circuitos de karting de toda España 5 2023-01-31 01:52:39.833374+00 Dani Riquelme \N 1 2026-01-30 09:54:09.869112+00 2026-01-30 02:01:12.664659+00 2265 \N google ChdDSUhNMG9nS0VJQ0FnSUNVcGFUMWhnRRAB unknown {"text": "Echt een aanrader lang parcour toffe karts", "author": "Dave Baert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVcGFUMWhnRRAB", "timestamp": "6 years ago"} Echt een aanrader lang parcour toffe karts 5 2020-02-01 01:52:39.833374+00 Dave Baert \N 1 2026-01-30 09:54:09.872019+00 2026-01-30 02:01:12.667466+00 2266 \N google ChZDSUhNMG9nS0VJQ0FnSUR4aFBlVlZnEAE unknown {"text": "De 10 todo!", "author": "Daniel Bermejo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4aFBlVlZnEAE", "timestamp": "2 years ago"} De 10 todo! 5 2024-01-31 01:52:39.833374+00 Daniel Bermejo \N 1 2026-01-30 09:54:09.875108+00 2026-01-30 02:01:12.670466+00 2267 \N google ChZDSUhNMG9nS0VJQ0FnSUQ4Xy02ZWV3EAE unknown {"text": "Buen estado de los karts, limpieza y seguridad 100%", "author": "Gines Vazquez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4Xy02ZWV3EAE", "timestamp": "5 years ago"} Buen estado de los karts, limpieza y seguridad 100% 4 2021-01-31 01:52:39.833374+00 Gines Vazquez \N 1 2026-01-30 09:54:09.877944+00 2026-01-30 02:01:12.673021+00 2268 \N google ChZDSUhNMG9nS0VJQ0FnSUM4eTV1QkhBEAE unknown {"text": "Sitio agradable con parking. Buenos karts", "author": "José A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4eTV1QkhBEAE", "timestamp": "5 years ago"} Sitio agradable con parking. Buenos karts 5 2021-01-31 01:52:39.833374+00 José A. \N 1 2026-01-30 09:54:09.884167+00 2026-01-30 02:01:12.678236+00 2269 \N google ChdDSUhNMG9nS0VJQ0FnSUN3Mk4tTWl3RRAB unknown {"text": "un circuito increible y sus servicios tambien", "author": "dani Villa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3Mk4tTWl3RRAB", "timestamp": "10 years ago"} un circuito increible y sus servicios tambien 5 2016-02-02 01:52:39.833374+00 dani Villa \N 1 2026-01-30 09:54:09.886974+00 2026-01-30 02:01:12.681566+00 2271 \N google ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB unknown {"text": "Buena atención y buena pista pa motos", "author": "Pablo Martinez Valero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB", "timestamp": "5 years ago"} Buena atención y buena pista pa motos 5 2021-01-31 01:52:39.833374+00 Pablo Martinez Valero \N 1 2026-01-30 09:54:09.891176+00 2026-01-30 02:01:12.685946+00 2272 \N google ChZDSUhNMG9nS0VJQ0FnSUNIbWVhMFh3EAE unknown {"text": "Fantastische kartbaan ik zeg doen", "author": "Chris De Haas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIbWVhMFh3EAE", "timestamp": "a year ago"} Fantastische kartbaan ik zeg doen 5 2025-01-30 01:52:39.833374+00 Chris De Haas \N 1 2026-01-30 09:54:09.894138+00 2026-01-30 02:01:12.688975+00 2273 \N google ChdDSUhNMG9nS0VJQ0FnSUNjcG9qSG13RRAB unknown {"text": "El mejor sitio para pasar un rato con los amigos", "author": "Pajaro 16", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjcG9qSG13RRAB", "timestamp": "5 years ago"} El mejor sitio para pasar un rato con los amigos 5 2021-01-31 01:52:39.833374+00 Pajaro 16 \N 1 2026-01-30 09:54:09.896737+00 2026-01-30 02:01:12.691904+00 2274 \N google ChdDSUhNMG9nS0VJQ0FnSUMweV83LXRRRRAB unknown {"text": "nunca había estado en un karts. me ha encantado", "author": "JUAN FRANCISCO GARCIA-TALAVERA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMweV83LXRRRRAB", "timestamp": "6 years ago"} nunca había estado en un karts. me ha encantado 5 2020-02-01 01:52:39.833374+00 JUAN FRANCISCO GARCIA-TALAVERA \N 1 2026-01-30 09:54:09.899885+00 2026-01-30 02:01:12.697142+00 2275 \N google ChdDSUhNMG9nS0VJQ0FnSUNzaGZPWHl3RRAB unknown {"text": "La pista es divertida y los karts están bien", "author": "Sergio Rebolledo Gadea", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzaGZPWHl3RRAB", "timestamp": "5 years ago"} La pista es divertida y los karts están bien 4 2021-01-31 01:52:39.833374+00 Sergio Rebolledo Gadea \N 1 2026-01-30 09:54:09.902199+00 2026-01-30 02:01:12.70145+00 2276 \N google ChdDSUhNMG9nS0VJQ0FnSURaMHB5QzBnRRAB unknown {"text": "El mejor Karting al que he ido, así de sencillo.", "author": "Carlos Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaMHB5QzBnRRAB", "timestamp": "2 years ago"} El mejor Karting al que he ido, así de sencillo. 5 2024-01-31 01:52:39.833374+00 Carlos Torres \N 1 2026-01-30 09:54:09.90459+00 2026-01-30 02:01:12.704615+00 2277 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB unknown {"text": "Magnífico circuito y trato supermamable", "author": "Salvador Arce Futos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB", "timestamp": "6 years ago"} Magnífico circuito y trato supermamable 5 2020-02-01 01:52:39.833374+00 Salvador Arce Futos \N 1 2026-01-30 09:54:09.907843+00 2026-01-30 02:01:12.708557+00 2278 \N google ChZDSUhNMG9nS0VJQ0FnSUNRbVlYLUF3EAE unknown {"text": "Los coches van muy rápido y funcionan bien", "author": "Álvaro. G", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbVlYLUF3EAE", "timestamp": "7 years ago"} Los coches van muy rápido y funcionan bien 5 2019-02-01 01:52:39.833374+00 Álvaro. G \N 1 2026-01-30 09:54:09.910015+00 2026-01-30 02:01:12.710893+00 2279 \N google ChdDSUhNMG9nS0VJQ0FnSUNxZ01iZnZRRRAB unknown {"text": "Muy buen trato", "author": "Inma Beltran", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxZ01iZnZRRRAB", "timestamp": "4 years ago"} Muy buen trato 4 2022-01-31 01:52:39.833374+00 Inma Beltran \N 1 2026-01-30 09:54:09.914215+00 2026-01-30 02:01:12.715836+00 2280 \N google ChZDSUhNMG9nS0VJQ0FnTURRaExTU2R3EAE unknown {"text": "Perfecto", "author": "Luna Yona", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURRaExTU2R3EAE", "timestamp": "10 months ago"} Perfecto 5 2025-04-05 00:52:39.833374+00 Luna Yona \N 1 2026-01-30 09:54:09.925062+00 2026-01-30 02:01:12.729189+00 2281 \N google ChdDSUhNMG9nS0VJQ0FnSUNhN08yYzRRRRAB unknown {"text": "El circuito super cuidado y los karts increíbles 🙌", "author": "pablito Skywalker", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhN08yYzRRRRAB", "timestamp": "4 years ago"} El circuito super cuidado y los karts increíbles 🙌 5 2022-01-31 01:52:39.833374+00 pablito Skywalker \N 1 2026-01-30 09:54:09.928316+00 2026-01-30 02:01:12.734347+00 2282 \N google ChdDSUhNMG9nS0VJQ0FnSUNhOVBHU3p3RRAB unknown {"text": "Buen trato, buena pista y buenos karts", "author": "jeronimo jover menchon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOVBHU3p3RRAB", "timestamp": "4 years ago"} Buen trato, buena pista y buenos karts 4 2022-01-31 01:52:39.833374+00 jeronimo jover menchon \N 1 2026-01-30 09:54:09.931483+00 2026-01-30 02:01:12.73857+00 2283 \N google ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE unknown {"text": "Трасса хорошая,но картинги старые!", "author": "RAUND 1", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE", "timestamp": "3 years ago"} Трасса хорошая,но картинги старые! 3 2023-01-31 01:52:39.833374+00 RAUND 1 \N 1 2026-01-30 09:54:09.933381+00 2026-01-30 02:01:12.741634+00 2284 \N google ChdDSUhNMG9nS0VJQ0FnSURPOEplVTlBRRAB unknown {"text": "Muy bien todo, lo pasamos genial.", "author": "camping sanjavier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOEplVTlBRRAB", "timestamp": "3 years ago"} Muy bien todo, lo pasamos genial. 5 2023-01-31 01:52:39.833374+00 camping sanjavier \N 1 2026-01-30 09:54:09.935729+00 2026-01-30 02:01:12.745152+00 2285 \N google ChZDSUhNMG9nS0VJQ0FnSURVdnRmNU5nEAE unknown {"text": "Esta genial para hacer una carreterita", "author": "Sagrario ruiz garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdnRmNU5nEAE", "timestamp": "6 years ago"} Esta genial para hacer una carreterita 5 2020-02-01 01:52:39.833374+00 Sagrario ruiz garcia \N 1 2026-01-30 09:54:09.945524+00 2026-01-30 02:01:12.75643+00 2286 \N google ChZDSUhNMG9nS0VJQ0FnSUNodHV1R05REAE unknown {"text": "Muy actualizado asequible y entretenido", "author": "JUAN JOSE MARTINEZ ALAVA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNodHV1R05REAE", "timestamp": "2 years ago"} Muy actualizado asequible y entretenido 5 2024-01-31 01:52:39.833374+00 JUAN JOSE MARTINEZ ALAVA \N 1 2026-01-30 09:54:09.947973+00 2026-01-30 02:01:12.76048+00 2287 \N google ChZDSUhNMG9nS0VJQ0FnSURudHBuRVFnEAE unknown {"text": "Simplemente increíble!!!!", "author": "Ariel Peñalver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURudHBuRVFnEAE", "timestamp": "a year ago"} Simplemente increíble!!!! 5 2025-01-30 01:52:39.833374+00 Ariel Peñalver \N 1 2026-01-30 09:54:09.954969+00 2026-01-30 02:01:12.768621+00 2288 \N google ChdDSUhNMG9nS0VJQ0FnSURROXNPSTJnRRAB unknown {"text": "Atención buena ideal para hacer prácticas .", "author": "MARLENE HUARACHI", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROXNPSTJnRRAB", "timestamp": "7 years ago"} Atención buena ideal para hacer prácticas . 4 2019-02-01 01:52:39.833374+00 MARLENE HUARACHI \N 1 2026-01-30 09:54:09.957702+00 2026-01-30 02:01:12.772604+00 2289 \N google ChdDSUhNMG9nS0VJQ0FnSURfb2F1Qm5BRRAB unknown {"text": "Un buen circuito y buenos Kart.", "author": "Javier Caste", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfb2F1Qm5BRRAB", "timestamp": "a year ago"} Un buen circuito y buenos Kart. 5 2025-01-30 01:52:39.833374+00 Javier Caste \N 1 2026-01-30 09:54:09.960833+00 2026-01-30 02:01:12.776666+00 2291 \N google ChdDSUhNMG9nS0VJQ0FnSUR4d3BDY3FRRRAB unknown {"text": "Das lohnt sich für das Geld immer wieder", "author": "Maik Krause", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4d3BDY3FRRRAB", "timestamp": "2 years ago"} Das lohnt sich für das Geld immer wieder 5 2024-01-31 01:52:39.833374+00 Maik Krause \N 1 2026-01-30 09:54:09.964544+00 2026-01-30 02:01:12.786526+00 2292 \N google ChdDSUhNMG9nS0VJQ0FnSURROVlxUWpRRRAB unknown {"text": "El mejor circuito y karts,mejor servicio y atención del personal", "author": "Josefa Martínez Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROVlxUWpRRRAB", "timestamp": "9 years ago"} El mejor circuito y karts,mejor servicio y atención del personal 5 2017-02-01 01:52:39.833374+00 Josefa Martínez Ruiz \N 1 2026-01-30 09:54:09.967295+00 2026-01-30 02:01:12.789974+00 2293 \N google ChdDSUhNMG9nS0VJR25pOTNSMHFiS3RBRRAB unknown {"text": "Un circuito increíble", "author": "Jhony", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJR25pOTNSMHFiS3RBRRAB", "timestamp": "7 months ago"} Un circuito increíble 5 2025-07-04 00:52:39.833374+00 Jhony \N 1 2026-01-30 09:54:09.971866+00 2026-01-30 02:01:12.795424+00 2294 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3aWJfYXhRRRAB unknown {"text": "Buen sitio", "author": "Angel Alonso", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3aWJfYXhRRRAB", "timestamp": "a year ago"} Buen sitio 4 2025-01-30 01:52:39.833374+00 Angel Alonso \N 1 2026-01-30 09:54:09.976917+00 2026-01-30 02:01:12.80239+00 2295 \N google ChZDSUhNMG9nS0VJQ0FnSUR1NE95WkdBEAE unknown {"text": "Simplemente los mejores es lo que puedo decir después de tantos años", "author": "Carlosvs 07", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1NE95WkdBEAE", "timestamp": "3 years ago"} Simplemente los mejores es lo que puedo decir después de tantos años 5 2023-01-31 01:52:39.833374+00 Carlosvs 07 \N 1 2026-01-30 09:54:09.980851+00 2026-01-30 02:01:12.805111+00 2296 \N google ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB unknown {"text": "Buenos karts... Pero los precios.... Los precios.... Poco tiempo.... Pero es lo que hay!!", "author": "Ernesto Polozhaev", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB", "timestamp": "6 years ago"} Buenos karts... Pero los precios.... Los precios.... Poco tiempo.... Pero es lo que hay!! 3 2020-02-01 01:52:39.833374+00 Ernesto Polozhaev \N 1 2026-01-30 09:54:09.984945+00 2026-01-30 02:01:12.808105+00 2297 \N google ChZDSUhNMG9nS0VJQ0FnSUNzczkzaUNREAE unknown {"text": "Genial para pasar un buen rato", "author": "Angelcp19xd", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzczkzaUNREAE", "timestamp": "Edited 5 years ago"} Genial para pasar un buen rato 4 2026-01-30 01:52:39.833374+00 Angelcp19xd \N 1 2026-01-30 09:54:09.991882+00 2026-01-30 02:01:12.8146+00 2298 \N google ChdDSUhNMG9nS0VJQ0FnSUN4NXJud3J3RRAB unknown {"text": "De mis favoritos, muy bueno", "author": "Frank Darko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4NXJud3J3RRAB", "timestamp": "2 years ago"} De mis favoritos, muy bueno 5 2024-01-31 01:52:39.833374+00 Frank Darko \N 1 2026-01-30 09:54:10.005772+00 2026-01-30 02:01:12.820044+00 2299 \N google ChdDSUhNMG9nS0VJQ0FnSURicXVyb3B3RRAB unknown {"text": "War cool", "author": "Yolanda Broncano Leon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURicXVyb3B3RRAB", "timestamp": "a year ago"} War cool 4 2025-01-30 01:52:39.833374+00 Yolanda Broncano Leon \N 1 2026-01-30 09:54:10.012254+00 2026-01-30 02:01:12.825348+00 2300 \N google ChdDSUhNMG9nS0VJQ0FnSUNlMDZpbmtRRRAB unknown {"text": "Uno de los mejores circuitos que he probado", "author": "Sergio Quesada Contreras", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlMDZpbmtRRRAB", "timestamp": "3 years ago"} Uno de los mejores circuitos que he probado 5 2023-01-31 01:52:39.833374+00 Sergio Quesada Contreras \N 1 2026-01-30 09:54:10.015175+00 2026-01-30 02:01:12.829844+00 2301 \N google ChdDSUhNMG9nS0VJQ0FnSUNBM2RfSDh3RRAB unknown {"text": "Los F300 muy divertidos y rápidos.", "author": "María Cheztez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBM2RfSDh3RRAB", "timestamp": "7 years ago"} Los F300 muy divertidos y rápidos. 5 2019-02-01 01:52:39.833374+00 María Cheztez \N 1 2026-01-30 09:54:10.018603+00 2026-01-30 02:01:12.832931+00 2302 \N google ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE unknown {"text": "Circuito grande y bien cuidado, a mi parecer un poco caro", "author": "Andrés Moreno López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE", "timestamp": "9 years ago"} Circuito grande y bien cuidado, a mi parecer un poco caro 4 2017-02-01 01:52:39.833374+00 Andrés Moreno López \N 1 2026-01-30 09:54:10.021271+00 2026-01-30 02:01:12.835959+00 2303 \N google ChZDSUhNMG9nS0VJQ0FnSUNJaDlpcWVREAE unknown {"text": "Está muy bien!", "author": "victor antelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJaDlpcWVREAE", "timestamp": "7 years ago"} Está muy bien! 5 2019-02-01 01:52:39.833374+00 victor antelo \N 1 2026-01-30 09:54:10.023555+00 2026-01-30 02:01:12.838159+00 2304 \N google ChZDSUhNMG9nS0VJQ0FnTURJeEtxZENnEAE unknown {"text": "Muy divertido", "author": "John Alexander Taborda Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJeEtxZENnEAE", "timestamp": "9 months ago"} Muy divertido 5 2025-05-05 00:52:39.833374+00 John Alexander Taborda Lopez \N 1 2026-01-30 09:54:10.026017+00 2026-01-30 02:01:12.841049+00 2305 \N google ChdDSUhNMG9nS0VJQ0FnSURJeWVQWTRnRRAB unknown {"text": "Divertente e ad un prezzo onesto", "author": "Alessandro Pilati", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJeWVQWTRnRRAB", "timestamp": "7 years ago"} Divertente e ad un prezzo onesto 5 2019-02-01 01:52:39.833374+00 Alessandro Pilati \N 1 2026-01-30 09:54:10.029613+00 2026-01-30 02:01:12.844863+00 2306 \N google ChZDSUhNMG9nS0VJQ0FnSUM2Z1AtekVREAE unknown {"text": "Muh bien", "author": "MineMike _ YT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2Z1AtekVREAE", "timestamp": "4 years ago"} Muh bien 5 2022-01-31 01:52:39.833374+00 MineMike _ YT \N 1 2026-01-30 09:54:10.032313+00 2026-01-30 02:01:12.849234+00 2307 \N google ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB unknown {"text": "Muy buen ambiente, seriedad...", "author": "Valentin Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB", "timestamp": "Edited 6 years ago"} Muy buen ambiente, seriedad... 5 2026-01-30 01:52:39.833374+00 Valentin Martinez \N 1 2026-01-30 09:54:10.034867+00 2026-01-30 02:01:12.854694+00 2308 \N google ChdDSUhNMG9nS0VJQ0FnSUMtOWFUaGlBRRAB unknown {"text": "Trazado espectacular, buen grip.", "author": "Adrián Botías", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtOWFUaGlBRRAB", "timestamp": "3 years ago"} Trazado espectacular, buen grip. 4 2023-01-31 01:52:39.833374+00 Adrián Botías \N 1 2026-01-30 09:54:10.041903+00 2026-01-30 02:01:12.863534+00 2309 \N google ChdDSUhNMG9nS0VJQ0FnSUNBcHVLcGxRRRAB unknown {"text": "Unas carreras 🏁, unos bocatas, unos refrescos. Chulo, chulo 😎.", "author": "Miguel Marin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBcHVLcGxRRRAB", "timestamp": "Edited 3 years ago"} Unas carreras 🏁, unos bocatas, unos refrescos. Chulo, chulo 😎. 5 2026-01-30 01:52:39.833374+00 Miguel Marin \N 1 2026-01-30 09:54:10.045938+00 2026-01-30 02:01:12.868428+00 2311 \N google ChdDSUhNMG9nS0VJQ0FnSURVLXYtb3d3RRAB unknown {"text": "El personal es muy diligente y educadisimo", "author": "JOSE CRUZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVLXYtb3d3RRAB", "timestamp": "6 years ago"} El personal es muy diligente y educadisimo 5 2020-02-01 01:52:39.833374+00 JOSE CRUZ \N 1 2026-01-30 09:54:10.050839+00 2026-01-30 02:01:12.873975+00 2312 \N google ChdDSUhNMG9nS0VJQ0FnSURRd2NuY3h3RRAB unknown {"text": "Muy divertido con niños", "author": "Jose Toribio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRd2NuY3h3RRAB", "timestamp": "8 years ago"} Muy divertido con niños 5 2018-02-01 01:52:39.833374+00 Jose Toribio \N 1 2026-01-30 09:54:10.052842+00 2026-01-30 02:01:12.876108+00 2313 \N google ChZDSUhNMG9nS0VJQ0FnSURXaU8tNVd3EAE unknown {"text": "Divertido para pasar un buen rato", "author": "Pilar Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXaU8tNVd3EAE", "timestamp": "3 years ago"} Divertido para pasar un buen rato 5 2023-01-31 01:52:39.833374+00 Pilar Alvarez \N 1 2026-01-30 09:54:10.057694+00 2026-01-30 02:01:12.882295+00 2314 \N google ChdDSUhNMG9nS0VJQ0FnSUN1aDZiUm5RRRAB unknown {"text": "Nos gustó mucho", "author": "Jose l Lajarin g", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1aDZiUm5RRRAB", "timestamp": "3 years ago"} Nos gustó mucho 5 2023-01-31 01:52:39.833374+00 Jose l Lajarin g \N 1 2026-01-30 09:54:10.06168+00 2026-01-30 02:01:12.892579+00 2315 \N google ChZDSUhNMG9nS0VJQ0FnSUNpa0pPdUh3EAE unknown {"text": "Gran circuito, genial atención", "author": "Francisco Javier García Fuente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpa0pPdUh3EAE", "timestamp": "5 years ago"} Gran circuito, genial atención 5 2021-01-31 01:52:39.833374+00 Francisco Javier García Fuente \N 1 2026-01-30 09:54:10.067382+00 2026-01-30 02:01:12.903155+00 2316 \N google ChZDSUhNMG9nS0VJQ0FnSURndTZmOWVBEAE unknown {"text": "Muy bien y el trato fenomenal", "author": "francisco jose Murcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndTZmOWVBEAE", "timestamp": "8 years ago"} Muy bien y el trato fenomenal 5 2018-02-01 01:52:39.833374+00 francisco jose Murcia \N 1 2026-01-30 09:54:10.070035+00 2026-01-30 02:01:12.906972+00 2317 \N google ChZDSUhNMG9nS0VJQ0FnSUNRdWFpeUJnEAE unknown {"text": "Muy buenas. Las f200", "author": "Jesus Fernandez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRdWFpeUJnEAE", "timestamp": "8 years ago"} Muy buenas. Las f200 4 2018-02-01 01:52:39.833374+00 Jesus Fernandez \N 1 2026-01-30 09:54:10.073032+00 2026-01-30 02:01:12.910792+00 2318 \N google ChdDSUhNMG9nS0VJQ0FnSUNzOUlyU3BRRRAB unknown {"text": "Muy chulo", "author": "David Samper", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzOUlyU3BRRRAB", "timestamp": "6 years ago"} Muy chulo 4 2020-02-01 01:52:39.833374+00 David Samper \N 1 2026-01-30 09:54:10.075157+00 2026-01-30 02:01:12.914157+00 2319 \N google ChZDSUhNMG9nS0VJQ0FnSURzbUtxcUlREAE unknown {"text": "Muy bueno", "author": "TAXI DAMIAN ROCHE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzbUtxcUlREAE", "timestamp": "5 years ago"} Muy bueno 5 2021-01-31 01:52:39.833374+00 TAXI DAMIAN ROCHE \N 1 2026-01-30 09:54:10.077312+00 2026-01-30 02:01:12.916897+00 2320 \N google ChZDSUhNMG9nS0VJQ0FnSUNneHNxMEZ3EAE unknown {"text": "Perfecto para pasar un rato divertido.", "author": "Raul Ibanez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneHNxMEZ3EAE", "timestamp": "8 years ago"} Perfecto para pasar un rato divertido. 5 2018-02-01 01:52:39.833374+00 Raul Ibanez \N 1 2026-01-30 09:54:10.080475+00 2026-01-30 02:01:12.92063+00 2321 \N google ChZDSUhNMG9nS0VJQ0FnSUR4bWFhWlJREAE unknown {"text": "Fantásticos karts un momento muy divertido", "author": "Colibribribri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bWFhWlJREAE", "timestamp": "2 years ago"} Fantásticos karts un momento muy divertido 5 2024-01-31 01:52:39.833374+00 Colibribribri \N 1 2026-01-30 09:54:10.087971+00 2026-01-30 02:01:12.930973+00 2322 \N google ChdDSUhNMG9nS0VJQ0FnSUR4ZzRxMTRRRRAB unknown {"text": "Me gusta mucho", "author": "Multiservicios Raul", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4ZzRxMTRRRRAB", "timestamp": "2 years ago"} Me gusta mucho 5 2024-01-31 01:52:39.833374+00 Multiservicios Raul \N 1 2026-01-30 09:54:10.094754+00 2026-01-30 02:01:12.937862+00 2323 \N google ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE unknown {"text": "Circuito estupendo y muy atentos", "author": "Ivan Pujante Carrillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE", "timestamp": "Edited 4 years ago"} Circuito estupendo y muy atentos 5 2026-01-30 01:52:39.833374+00 Ivan Pujante Carrillo \N 1 2026-01-30 09:54:10.099527+00 2026-01-30 02:01:12.942268+00 2324 \N google ChdDSUhNMG9nS0VJQ0FnSURTemJEU21RRRAB unknown {"text": "Karts en buen estado, pista divertida y bien organizado", "author": "Ignacio Arcas Muñoz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTemJEU21RRRAB", "timestamp": "5 years ago"} Karts en buen estado, pista divertida y bien organizado 4 2021-01-31 01:52:39.833374+00 Ignacio Arcas Muñoz \N 1 2026-01-30 09:54:10.103342+00 2026-01-30 02:01:12.945378+00 2325 \N google ChZDSUhNMG9nS0VJQ0FnSUNXcU1iekNBEAE unknown {"text": "Rigtig god oplevelse for hele familien", "author": "Bente Krogh", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXcU1iekNBEAE", "timestamp": "3 years ago"} Rigtig god oplevelse for hele familien 5 2023-01-31 01:52:39.833374+00 Bente Krogh \N 1 2026-01-30 09:54:10.106147+00 2026-01-30 02:01:12.949394+00 2326 \N google ChZDSUhNMG9nS0VJQ0FnSUNpaVpQN0VBEAE unknown {"text": "Muy bien.", "author": "s. montoya saura", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpaVpQN0VBEAE", "timestamp": "5 years ago"} Muy bien. 5 2021-01-31 01:52:39.833374+00 s. montoya saura \N 1 2026-01-30 09:54:10.11126+00 2026-01-30 02:01:12.95523+00 2327 \N google ChdDSUhNMG9nS0VJQ0FnSURZazh5bmdnRRAB unknown {"text": "Algo caro. La verdad", "author": "Felix Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZazh5bmdnRRAB", "timestamp": "6 years ago"} Algo caro. La verdad 5 2020-02-01 01:52:39.833374+00 Felix Sanchez \N 1 2026-01-30 09:54:10.115497+00 2026-01-30 02:01:12.960807+00 2328 \N google ChdDSUhNMG9nS0VJQ0FnSUR1eE8ySzh3RRAB unknown {"text": "No se puede ser mejor👍💯\\nEnhorabuena", "author": "antonio jime", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eE8ySzh3RRAB", "timestamp": "3 years ago"} No se puede ser mejor👍💯\nEnhorabuena 5 2023-01-31 01:52:39.833374+00 antonio jime \N 1 2026-01-30 09:54:10.120091+00 2026-01-30 02:01:12.976619+00 2329 \N google ChdDSUhNMG9nS0VJQ0FnSUNXa3FEbXRRRRAB unknown {"text": "Buen sitio pata disfrutar de las karts", "author": "Merche", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXa3FEbXRRRRAB", "timestamp": "3 years ago"} Buen sitio pata disfrutar de las karts 5 2023-01-31 01:52:39.833374+00 Merche \N 1 2026-01-30 09:54:10.124333+00 2026-01-30 02:01:12.985718+00 2330 \N google ChdDSUhNMG9nS0VJQ0FnSURndXJ5RDNRRRAB unknown {"text": "Gran sitio de entretenimiento para la familia", "author": "Rubén Gutiérrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndXJ5RDNRRRAB", "timestamp": "8 years ago"} Gran sitio de entretenimiento para la familia 5 2018-02-01 01:52:39.833374+00 Rubén Gutiérrez \N 1 2026-01-30 09:54:10.130674+00 2026-01-30 02:01:12.999406+00 2332 \N google ChZDSUhNMG9nS0VJQ0FnSURSMW9fQUNnEAE unknown {"text": "Se puede mejorar", "author": "Pedro Bezares", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMW9fQUNnEAE", "timestamp": "2 years ago"} Se puede mejorar 3 2024-01-31 01:52:39.833374+00 Pedro Bezares \N 1 2026-01-30 09:54:10.137074+00 2026-01-30 02:01:13.007596+00 2333 \N google ChZDSUhNMG9nS0VJQ0FnSURrcDZ2VkRBEAE unknown {"text": "Zeer leuk", "author": "Gust", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrcDZ2VkRBEAE", "timestamp": "6 years ago"} Zeer leuk 5 2020-02-01 01:52:39.833374+00 Gust \N 1 2026-01-30 09:54:10.141255+00 2026-01-30 02:01:13.012806+00 2334 \N google ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE unknown {"text": "Muy atentos y buen precio", "author": "Maximo Carrillo Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE", "timestamp": "4 years ago"} Muy atentos y buen precio 5 2022-01-31 01:52:39.833374+00 Maximo Carrillo Lopez \N 1 2026-01-30 09:54:10.143639+00 2026-01-30 02:01:13.015499+00 2335 \N google ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB unknown {"text": "Excelentes precios y atención", "author": "Leonardo Conzoñhio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB", "timestamp": "a year ago"} Excelentes precios y atención 5 2025-01-30 01:52:39.833374+00 Leonardo Conzoñhio \N 1 2026-01-30 09:54:10.145804+00 2026-01-30 02:01:13.019375+00 2336 \N google ChdDSUhNMG9nS0VJQ0FnSUNhOTk2cnFRRRAB unknown {"text": "Buen circuito y adrenalina a tope!!", "author": "Skitel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOTk2cnFRRRAB", "timestamp": "4 years ago"} Buen circuito y adrenalina a tope!! 5 2022-01-31 01:52:39.833374+00 Skitel \N 1 2026-01-30 09:54:10.150098+00 2026-01-30 02:01:13.029096+00 2337 \N google ChdDSUhNMG9nS0VJQ0FnSUR1cThuVTJnRRAB unknown {"text": "Buena pista, mañana volveremos", "author": "Raclos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cThuVTJnRRAB", "timestamp": "3 years ago"} Buena pista, mañana volveremos 5 2023-01-31 01:52:39.833374+00 Raclos \N 1 2026-01-30 09:54:10.154691+00 2026-01-30 02:01:13.034696+00 2338 \N google ChZDSUhNMG9nS0VJQ0FnSURvcU1mR1BnEAE unknown {"text": "Muy bien pero poco tiempo", "author": "Gonzalo Carrillo Martínez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvcU1mR1BnEAE", "timestamp": "6 years ago"} Muy bien pero poco tiempo 4 2020-02-01 01:52:39.833374+00 Gonzalo Carrillo Martínez \N 1 2026-01-30 09:54:10.158305+00 2026-01-30 02:01:13.03806+00 2339 \N google ChdDSUhNMG9nS0VJQ0FnSUR2aXBLRzZnRRAB unknown {"text": "El circuito está chulisímo", "author": "Fernando Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2aXBLRzZnRRAB", "timestamp": "a year ago"} El circuito está chulisímo 5 2025-01-30 01:52:39.833374+00 Fernando Martinez \N 1 2026-01-30 09:54:10.161384+00 2026-01-30 02:01:13.041458+00 2340 \N google ChZDSUhNMG9nS0VJQ0FnSUNicUxHa1hBEAE unknown {"text": "Petarda naprawdę warto", "author": "Remik", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNicUxHa1hBEAE", "timestamp": "a year ago"} Petarda naprawdę warto 5 2025-01-30 01:52:39.833374+00 Remik \N 1 2026-01-30 09:54:10.163886+00 2026-01-30 02:01:13.044727+00 2341 \N google ChdDSUhNMG9nS0VJQ0FnSUNhak1EbnVBRRAB unknown {"text": "Diversión si te gusta la velocidad.", "author": "Juan Francisco Zapata Parra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhak1EbnVBRRAB", "timestamp": "4 years ago"} Diversión si te gusta la velocidad. 5 2022-01-31 01:52:39.833374+00 Juan Francisco Zapata Parra \N 1 2026-01-30 09:54:10.166538+00 2026-01-30 02:01:13.047806+00 2342 \N google ChdDSUhNMG9nS0VJQ0FnSURBa2V6dzFnRRAB unknown {"text": "Buen lugar para cumpleaños.", "author": "Catalina enrique jimenez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa2V6dzFnRRAB", "timestamp": "7 years ago"} Buen lugar para cumpleaños. 3 2019-02-01 01:52:39.833374+00 Catalina enrique jimenez \N 1 2026-01-30 09:54:10.16956+00 2026-01-30 02:01:13.050596+00 2343 \N google ChZDSUhNMG9nS0VJQ0FnSURndG9xaWNBEAE unknown {"text": "Circuito grande y cuidado con un paisaje bonito", "author": "Javier Higuera", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndG9xaWNBEAE", "timestamp": "8 years ago"} Circuito grande y cuidado con un paisaje bonito 3 2018-02-01 01:52:39.833374+00 Javier Higuera \N 1 2026-01-30 09:54:10.173405+00 2026-01-30 02:01:13.053282+00 2344 \N google ChZDSUhNMG9nS0VJQ0FnSURNOC1iRlBnEAE unknown {"text": "Buen circuito ,los cart y el personal", "author": "Jose Maria Pablos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNOC1iRlBnEAE", "timestamp": "6 years ago"} Buen circuito ,los cart y el personal 5 2020-02-01 01:52:39.833374+00 Jose Maria Pablos \N 1 2026-01-30 09:54:10.180633+00 2026-01-30 02:01:13.060449+00 2345 \N google ChdDSUhNMG9nS0VJQ0FnSURLaG9TTjB3RRAB unknown {"text": "El mejor calidad precio de toda Murcia", "author": "Ruben Alarcon Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLaG9TTjB3RRAB", "timestamp": "4 years ago"} El mejor calidad precio de toda Murcia 5 2022-01-31 01:52:39.833374+00 Ruben Alarcon Lopez \N 1 2026-01-30 09:54:10.185467+00 2026-01-30 02:01:13.06406+00 2346 \N google ChdDSUhNMG9nS0VJQ0FnSURxbE9mX3NBRRAB unknown {"text": "Buenas instalaciones con calidad precio.", "author": "Carlos Almela Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbE9mX3NBRRAB", "timestamp": "4 years ago"} Buenas instalaciones con calidad precio. 5 2022-01-31 01:52:39.833374+00 Carlos Almela Sanchez \N 1 2026-01-30 09:54:10.189233+00 2026-01-30 02:01:13.067014+00 2347 \N google ChdDSUhNMG9nS0VJQ0FnSURBbnFmVnRnRRAB unknown {"text": "Tienen motos y karts. Lo recomiendo", "author": "Victor M. Vieira", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBbnFmVnRnRRAB", "timestamp": "9 years ago"} Tienen motos y karts. Lo recomiendo 4 2017-02-01 01:52:39.833374+00 Victor M. Vieira \N 1 2026-01-30 09:54:10.191755+00 2026-01-30 02:01:13.076431+00 2348 \N google ChdDSUhNMG9nS0VJQ0FnSUMwbDdtaC1nRRAB unknown {"text": "Muy bueno para correr con karts", "author": "Juan José Arenas Saura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwbDdtaC1nRRAB", "timestamp": "6 years ago"} Muy bueno para correr con karts 5 2020-02-01 01:52:39.833374+00 Juan José Arenas Saura \N 1 2026-01-30 09:54:10.194509+00 2026-01-30 02:01:13.079439+00 2349 \N google ChZDSUhNMG9nS0VJQ0FnSUNSOXV2R1VBEAE unknown {"text": "Excelente trato", "author": "Hector Amoros", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSOXV2R1VBEAE", "timestamp": "2 years ago"} Excelente trato 5 2024-01-31 01:52:39.833374+00 Hector Amoros \N 1 2026-01-30 09:54:10.200602+00 2026-01-30 02:01:13.085944+00 2350 \N google ChdDSUhNMG9nS0VJQ0FnSUNvc0lEaXVBRRAB unknown {"text": "Super chulo me encanta", "author": "SR.SHENNIX24", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvc0lEaXVBRRAB", "timestamp": "6 years ago"} Super chulo me encanta 5 2020-02-01 01:52:39.833374+00 SR.SHENNIX24 \N 1 2026-01-30 09:54:10.204528+00 2026-01-30 02:01:13.090339+00 2354 \N google ChZDSUhNMG9nS0VJQ0FnSUNEM3ZMeGFBEAE unknown {"text": "Buenas carreras, buenas instalaciones", "author": "Julio Galindo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEM3ZMeGFBEAE", "timestamp": "a year ago"} Buenas carreras, buenas instalaciones 4 2025-01-30 01:52:39.833374+00 Julio Galindo \N 1 2026-01-30 09:54:10.216916+00 2026-01-30 02:01:13.103372+00 2355 \N google ChZDSUhNMG9nS0VJQ0FnSUNVanNxb1ZnEAE unknown {"text": "Dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet", "author": "Cape qk", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVanNxb1ZnEAE", "timestamp": "6 years ago"} Dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet 1 2020-02-01 01:52:39.833374+00 Cape qk \N 1 2026-01-30 09:54:10.220592+00 2026-01-30 02:01:13.107496+00 2356 \N google ChZDSUhNMG9nS0VJQ0FnSUNDZ3ZYTldREAE unknown {"text": "Líquido dé frenos en mal estado.", "author": "Alejandro Martinez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDZ3ZYTldREAE", "timestamp": "5 years ago"} Líquido dé frenos en mal estado. 3 2021-01-31 01:52:39.833374+00 Alejandro Martinez \N 1 2026-01-30 09:54:10.224364+00 2026-01-30 02:01:13.112131+00 2357 \N google ChZDSUhNMG9nS0VJQ0FnSUNsbUs2VU9BEAE unknown {"text": "Bastante completo y divertido", "author": "Lorenzo Garcia Vera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsbUs2VU9BEAE", "timestamp": "2 years ago"} Bastante completo y divertido 5 2024-01-31 01:52:39.833374+00 Lorenzo Garcia Vera \N 1 2026-01-30 09:54:10.227274+00 2026-01-30 02:01:13.115746+00 2358 \N google ChdDSUhNMG9nS0VJQ0FnSURDZ3JIMWhRRRAB unknown {"text": "Super!!!! Sehr zu empfehlen", "author": "Jay", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDZ3JIMWhRRRAB", "timestamp": "5 years ago"} Super!!!! Sehr zu empfehlen 5 2021-01-31 01:52:39.833374+00 Jay \N 1 2026-01-30 09:54:10.229371+00 2026-01-30 02:01:13.117993+00 2359 \N google ChZDSUhNMG9nS0VJQ0FnSURjbS03WFlBEAE unknown {"text": "Dos palabras: im - presionante.", "author": "Mar HS", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjbS03WFlBEAE", "timestamp": "5 years ago"} Dos palabras: im - presionante. 5 2021-01-31 01:52:39.833374+00 Mar HS \N 1 2026-01-30 09:54:10.240881+00 2026-01-30 02:01:13.129208+00 2360 \N google ChZDSUhNMG9nS0VJQ0FnSUM2eDZMTUJREAE unknown {"text": "Karts muy divertidos y a un buen precio.", "author": "Tomás Soler (BYXxTOMASxX YT)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eDZMTUJREAE", "timestamp": "4 years ago"} Karts muy divertidos y a un buen precio. 5 2022-01-31 01:52:39.833374+00 Tomás Soler (BYXxTOMASxX YT) \N 1 2026-01-30 09:54:10.245041+00 2026-01-30 02:01:13.132383+00 2361 \N google ChdDSUhNMG9nS0VJQ0FnSUNwc04yS3B3RRAB unknown {"text": "Giornata molto divertente", "author": "Meri Morelli", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwc04yS3B3RRAB", "timestamp": "2 years ago"} Giornata molto divertente 4 2024-01-31 01:52:39.833374+00 Meri Morelli \N 1 2026-01-30 09:54:10.248369+00 2026-01-30 02:01:13.134636+00 2362 \N google ChdDSUhNMG9nS0VJQ0FnSUNZMDVEVi13RRAB unknown {"text": "Cojonudo, lo hemos pasado bomba!!!", "author": "José Luis González Bragado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZMDVEVi13RRAB", "timestamp": "6 years ago"} Cojonudo, lo hemos pasado bomba!!! 5 2020-02-01 01:52:39.833374+00 José Luis González Bragado \N 1 2026-01-30 09:54:10.25957+00 2026-01-30 02:01:13.145031+00 2363 \N google ChZDSUhNMG9nS0VJQ0FnSUNDam9DQ0xnEAE unknown {"text": "Para pasar un rato divertido", "author": "Maika Ramirez Escalona", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDam9DQ0xnEAE", "timestamp": "5 years ago"} Para pasar un rato divertido 4 2021-01-31 01:52:39.833374+00 Maika Ramirez Escalona \N 1 2026-01-30 09:54:10.266974+00 2026-01-30 02:01:13.150893+00 2364 \N google ChdDSUhNMG9nS0VJQ0FnSUR1d055WWt3RRAB unknown {"text": "Snelle karts heel leuk daar", "author": "Evin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1d055WWt3RRAB", "timestamp": "3 years ago"} Snelle karts heel leuk daar 5 2023-01-31 01:52:39.833374+00 Evin \N 1 2026-01-30 09:54:10.276021+00 2026-01-30 02:01:13.158998+00 2365 \N google ChZDSUhNMG9nS0VJQ0FnSUMwMXY3dGRREAE unknown {"text": "Para pasar un rato divertido!!!!", "author": "Daniel Jhong", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMXY3dGRREAE", "timestamp": "6 years ago"} Para pasar un rato divertido!!!! 5 2020-02-01 01:52:39.833374+00 Daniel Jhong \N 1 2026-01-30 09:54:10.286993+00 2026-01-30 02:01:13.169436+00 2366 \N google ChZDSUhNMG9nS0VJQ0FnSUNLem9hcEdREAE unknown {"text": "Excelente experiencia", "author": "Deiny Ramírez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLem9hcEdREAE", "timestamp": "4 years ago"} Excelente experiencia 5 2022-01-31 01:52:39.833374+00 Deiny Ramírez \N 1 2026-01-30 09:54:10.294345+00 2026-01-30 02:01:13.175901+00 2367 \N google ChdDSUhNMG9nS0VJQ0FnSUQwOWNmcXJnRRAB unknown {"text": "Muy divertido y completo", "author": "Rubén Oliver Díaz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOWNmcXJnRRAB", "timestamp": "6 years ago"} Muy divertido y completo 4 2020-02-01 01:52:39.833374+00 Rubén Oliver Díaz \N 1 2026-01-30 09:54:10.298158+00 2026-01-30 02:01:13.17886+00 2368 \N google ChZDSUhNMG9nS0VJQ0FnSUR1c0xmNFJ3EAE unknown {"text": "Gross und schnelle Organisiert", "author": "Frank Siemers", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1c0xmNFJ3EAE", "timestamp": "3 years ago"} Gross und schnelle Organisiert 3 2023-01-31 01:52:39.833374+00 Frank Siemers \N 1 2026-01-30 09:54:10.30167+00 2026-01-30 02:01:13.184745+00 2369 \N google ChdDSUhNMG9nS0VJQ0FnSURLN0tQcnJRRRAB unknown {"text": "Muy agradable", "author": "Pedro Muñoz escudero", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLN0tQcnJRRRAB", "timestamp": "4 years ago"} Muy agradable 4 2022-01-31 01:52:39.833374+00 Pedro Muñoz escudero \N 1 2026-01-30 09:54:10.306383+00 2026-01-30 02:01:13.188437+00 2370 \N google ChZDSUhNMG9nS0VJQ0FnSURPN01HZ0x3EAE unknown {"text": "Buena pista", "author": "israel gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPN01HZ0x3EAE", "timestamp": "3 years ago"} Buena pista 5 2023-01-31 01:52:39.833374+00 israel gonzalez \N 1 2026-01-30 09:54:10.315613+00 2026-01-30 02:01:13.197108+00 2371 \N google ChZDSUhNMG9nS0VJQ0FnSUQ2NDhpbUJnEAE unknown {"text": "Muy bien 👍", "author": "Joaquín F.A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2NDhpbUJnEAE", "timestamp": "4 years ago"} Muy bien 👍 5 2022-01-31 01:52:39.833374+00 Joaquín F.A. \N 1 2026-01-30 09:54:10.322437+00 2026-01-30 02:01:13.202651+00 2372 \N google ChdDSUhNMG9nS0VJQ0FnSUNLODVuSjl3RRAB unknown {"text": "Un rato divertido", "author": "Beatriz Alcaraz", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLODVuSjl3RRAB", "timestamp": "4 years ago"} Un rato divertido 2 2022-01-31 01:52:39.833374+00 Beatriz Alcaraz \N 1 2026-01-30 09:54:10.327534+00 2026-01-30 02:01:13.206146+00 2373 \N google ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB unknown {"text": "Por el trato", "author": "Javier Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB", "timestamp": "Edited 4 years ago"} Por el trato 5 2026-01-30 01:52:39.833374+00 Javier Pérez \N 1 2026-01-30 09:54:10.333463+00 2026-01-30 02:01:13.21232+00 2377 \N google ChdDSUhNMG9nS0VJQ0FnSUN3cjdUT3NBRRAB unknown {"text": "Buena manera de desestresarse", "author": "Jose Manuel Abellan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3cjdUT3NBRRAB", "timestamp": "8 years ago"} Buena manera de desestresarse 5 2018-02-01 01:52:39.833374+00 Jose Manuel Abellan \N 1 2026-01-30 09:54:10.363641+00 2026-01-30 02:01:13.238628+00 2378 \N google ChZDSUhNMG9nS0VJQ0FnSURSMGNtVkhnEAE unknown {"text": "El mejor circuito de la región", "author": "Josemi Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMGNtVkhnEAE", "timestamp": "2 years ago"} El mejor circuito de la región 5 2024-01-31 01:52:39.833374+00 Josemi Garcia \N 1 2026-01-30 09:54:10.368125+00 2026-01-30 02:01:13.241861+00 2379 \N google ChdDSUhNMG9nS0VJQ0FnSUNVX00yc2x3RRAB unknown {"text": "Muy divertida genial", "author": "Kike Cardena sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVX00yc2x3RRAB", "timestamp": "6 years ago"} Muy divertida genial 5 2020-02-01 01:52:39.833374+00 Kike Cardena sanchez \N 1 2026-01-30 09:54:10.373045+00 2026-01-30 02:01:13.245949+00 2380 \N google ChdDSUhNMG9nS0VJQ0FnSURBam92a3NnRRAB unknown {"text": "Un circuito muy largo y técnico", "author": "José Nieto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBam92a3NnRRAB", "timestamp": "7 years ago"} Un circuito muy largo y técnico 5 2019-02-01 01:52:39.833374+00 José Nieto \N 1 2026-01-30 09:54:10.375633+00 2026-01-30 02:01:13.24861+00 2381 \N google ChdDSUhNMG9nS0VJQ0FnSUNnOFlYWWl3RRAB unknown {"text": "Muy bien !", "author": "Mathias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnOFlYWWl3RRAB", "timestamp": "7 years ago"} Muy bien ! 5 2019-02-01 01:52:39.833374+00 Mathias \N 1 2026-01-30 09:54:10.380748+00 2026-01-30 02:01:13.253618+00 2382 \N google ChZDSUhNMG9nS0VJQ0FnSUQ4di1POUR3EAE unknown {"text": "Fantástica pista de Kart para disfrutar", "author": "Gerar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4di1POUR3EAE", "timestamp": "5 years ago"} Fantástica pista de Kart para disfrutar 5 2021-01-31 01:52:39.833374+00 Gerar \N 1 2026-01-30 09:54:10.395369+00 2026-01-30 02:01:13.26838+00 2383 \N google ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB unknown {"text": "Choix de kart et personnel sympa", "author": "Fabian Dorz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB", "timestamp": "6 years ago"} Choix de kart et personnel sympa 4 2020-02-01 01:52:39.833374+00 Fabian Dorz \N 1 2026-01-30 09:54:10.401431+00 2026-01-30 02:01:13.272952+00 2384 \N google ChdDSUhNMG9nS0VJQ0FnSUR5My1Pem53RRAB unknown {"text": "Sehr schön", "author": "Thomas Piuma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5My1Pem53RRAB", "timestamp": "4 years ago"} Sehr schön 5 2022-01-31 01:52:39.833374+00 Thomas Piuma \N 1 2026-01-30 09:54:10.404248+00 2026-01-30 02:01:13.274873+00 2385 \N google ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE unknown {"text": "El mejor karting", "author": "Didac", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE", "timestamp": "Edited a year ago"} El mejor karting 5 2026-01-30 01:52:39.833374+00 Didac \N 1 2026-01-30 09:54:10.414015+00 2026-01-30 02:01:13.284708+00 2386 \N google ChZDSUhNMG9nS0VJQ0FnSURVamJiTVl3EAE unknown {"text": "Esperaculo, adrenalina e velocidade", "author": "Ana Paiva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVamJiTVl3EAE", "timestamp": "6 years ago"} Esperaculo, adrenalina e velocidade 5 2020-02-01 01:52:39.833374+00 Ana Paiva \N 1 2026-01-30 09:54:10.42504+00 2026-01-30 02:01:13.295501+00 2387 \N google ChdDSUhNMG9nS0VJQ0FnSUNCcTZLby1nRRAB unknown {"text": "Simplemente genial!", "author": "Luis Gomez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcTZLby1nRRAB", "timestamp": "3 years ago"} Simplemente genial! 5 2023-01-31 01:52:39.833374+00 Luis Gomez \N 1 2026-01-30 09:54:10.438011+00 2026-01-30 02:01:13.307766+00 2388 \N google ChZDSUhNMG9nS0VJQ0FnSURPbU9tUUdREAE unknown {"text": "Bonita experiencia", "author": "juan manuel sanchez cuesta", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbU9tUUdREAE", "timestamp": "3 years ago"} Bonita experiencia 4 2023-01-31 01:52:39.833374+00 juan manuel sanchez cuesta \N 1 2026-01-30 09:54:10.44977+00 2026-01-30 02:01:13.320993+00 2389 \N google ChZDSUhNMG9nS0VJQ0FnSURtal9HcGFnEAE unknown {"text": "Una buena pista", "author": "Estrella Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtal9HcGFnEAE", "timestamp": "3 years ago"} Una buena pista 5 2023-01-31 01:52:39.833374+00 Estrella Pérez \N 1 2026-01-30 09:54:10.45508+00 2026-01-30 02:01:13.326424+00 2390 \N google ChZDSUhNMG9nS0VJQ0FnSURrcV9mVVNnEAE unknown {"text": "Muy chulos y economicos", "author": "German Esquiva Vegara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrcV9mVVNnEAE", "timestamp": "6 years ago"} Muy chulos y economicos 5 2020-02-01 01:52:39.833374+00 German Esquiva Vegara \N 1 2026-01-30 09:54:10.458087+00 2026-01-30 02:01:13.328945+00 2391 \N google ChdDSUhNMG9nS0VJQ0FnSURTLXNqOHFRRRAB unknown {"text": "Genial !!!", "author": "TKM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTLXNqOHFRRRAB", "timestamp": "5 years ago"} Genial !!! 5 2021-01-31 01:52:39.833374+00 TKM \N 1 2026-01-30 09:54:10.465254+00 2026-01-30 02:01:13.336092+00 2392 \N google ChdDSUhNMG9nS0VJQ0FnSUNJcE5fMTVRRRAB unknown {"text": "Que buenos ratos", "author": "Enrique L", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJcE5fMTVRRRAB", "timestamp": "7 years ago"} Que buenos ratos 5 2019-02-01 01:52:39.833374+00 Enrique L \N 1 2026-01-30 09:54:10.47115+00 2026-01-30 02:01:13.342316+00 2393 \N google ChdDSUhNMG9nS0VJQ0FnSUNNeVppcjRRRRAB unknown {"text": "Circuito Kars de 10", "author": "JUAN REY", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNeVppcjRRRRAB", "timestamp": "6 years ago"} Circuito Kars de 10 5 2020-02-01 01:52:39.833374+00 JUAN REY \N 1 2026-01-30 09:54:10.479829+00 2026-01-30 02:01:13.351395+00 2394 \N google ChZDSUhNMG9nS0VJQ0FnSURVd1BfbUJREAE unknown {"text": "Los chicos de pista muy majos", "author": "Carlos González Mato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVd1BfbUJREAE", "timestamp": "6 years ago"} Los chicos de pista muy majos 5 2020-02-01 01:52:39.833374+00 Carlos González Mato \N 1 2026-01-30 09:54:10.483763+00 2026-01-30 02:01:13.355615+00 2395 \N google ChdDSUhNMG9nS0VJQ0FnSUR1bktfZnNnRRAB unknown {"text": "El mejor", "author": "RCH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bktfZnNnRRAB", "timestamp": "3 years ago"} El mejor 5 2023-01-31 01:52:39.833374+00 RCH \N 1 2026-01-30 09:54:10.487309+00 2026-01-30 02:01:13.359682+00 2396 \N google ChdDSUhNMG9nS0VJQ0FnSUN3N3NDQzlRRRAB unknown {"text": "Schön war es wieder", "author": "Sandy Meier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3N3NDQzlRRRAB", "timestamp": "8 years ago"} Schön war es wieder 5 2018-02-01 01:52:39.833374+00 Sandy Meier \N 1 2026-01-30 09:54:10.489204+00 2026-01-30 02:01:13.362978+00 2397 \N google ChdDSUhNMG9nS0VJQ0FnSUNVbGU3UndRRRAB unknown {"text": "Très bien, à faire", "author": "Sassiss Said", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVbGU3UndRRRAB", "timestamp": "6 years ago"} Très bien, à faire 4 2020-02-01 01:52:39.833374+00 Sassiss Said \N 1 2026-01-30 09:54:10.491047+00 2026-01-30 02:01:13.366069+00 2399 \N google ChdDSUhNMG9nS0VJQ0FnSURKd2FDZXNRRRAB unknown {"text": "Toujours parfait.", "author": "Ag Desc", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKd2FDZXNRRRAB", "timestamp": "2 years ago"} Toujours parfait. 5 2024-01-31 01:52:39.833374+00 Ag Desc \N 1 2026-01-30 09:54:10.496466+00 2026-01-30 02:01:13.371653+00 2400 \N google ChdDSUhNMG9nS0VJQ0FnSUQyOGZ6ZW93RRAB unknown {"text": "Hasta arriba de gente", "author": "Kike Fernandez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyOGZ6ZW93RRAB", "timestamp": "3 years ago"} Hasta arriba de gente 1 2023-01-31 01:52:39.833374+00 Kike Fernandez \N 1 2026-01-30 09:54:10.503318+00 2026-01-30 02:01:13.37924+00 2401 \N google ChZDSUhNMG9nS0VJQ0FnSUMtd2R1LWZBEAE unknown {"text": "Buena", "author": "Loli Atienza", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtd2R1LWZBEAE", "timestamp": "3 years ago"} Buena 3 2023-01-31 01:52:39.833374+00 Loli Atienza \N 1 2026-01-30 09:54:10.50751+00 2026-01-30 02:01:13.384445+00 2402 \N google ChdDSUhNMG9nS0VJQ0FnSUQwcGJLRi1BRRAB unknown {"text": "Todo correcto,\\nVolveré", "author": "IZMAN IGOR", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwcGJLRi1BRRAB", "timestamp": "6 years ago"} Todo correcto,\nVolveré 5 2020-02-01 01:52:39.833374+00 IZMAN IGOR \N 1 2026-01-30 09:54:10.526781+00 2026-01-30 02:01:13.405691+00 2403 \N google ChdDSUhNMG9nS0VJQ0FnSUNhcHF5eTZ3RRAB unknown {"text": "Zeer leuke karting", "author": "Victor Ambrosi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcHF5eTZ3RRAB", "timestamp": "Edited 4 years ago"} Zeer leuke karting 5 2026-01-30 01:52:39.833374+00 Victor Ambrosi \N 1 2026-01-30 09:54:10.53601+00 2026-01-30 02:01:13.414449+00 2404 \N google ChdDSUhNMG9nS0VJQ0FnSUMtNVplMnZ3RRAB unknown {"text": "Genial!!", "author": "Estefania Ferrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNVplMnZ3RRAB", "timestamp": "3 years ago"} Genial!! 5 2023-01-31 01:52:39.833374+00 Estefania Ferrer \N 1 2026-01-30 09:54:10.558324+00 2026-01-30 02:01:13.439124+00 2405 \N google ChZDSUhNMG9nS0VJQ0FnSURRM2RTTGVREAE unknown {"text": "Buenísimo, buenísimo...", "author": "Juan Ramon Recondo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRM2RTTGVREAE", "timestamp": "7 years ago"} Buenísimo, buenísimo... 5 2019-02-01 01:52:39.833374+00 Juan Ramon Recondo Rodriguez \N 1 2026-01-30 09:54:10.56445+00 2026-01-30 02:01:13.445355+00 2406 \N google ChdDSUhNMG9nS0VJQ0FnSUNZMl96am5nRRAB unknown {"text": "Pittig episch", "author": "Jochem Jelsma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZMl96am5nRRAB", "timestamp": "6 years ago"} Pittig episch 5 2020-02-01 01:52:39.833374+00 Jochem Jelsma \N 1 2026-01-30 09:54:10.568582+00 2026-01-30 02:01:13.44984+00 2407 \N google ChZDSUhNMG9nS0VJQ0FnSUQ2bHFXUkJREAE unknown {"text": "Fedt", "author": "Robert villum Nielsen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2bHFXUkJREAE", "timestamp": "4 years ago"} Fedt 5 2022-01-31 01:52:39.833374+00 Robert villum Nielsen \N 1 2026-01-30 09:54:10.573205+00 2026-01-30 02:01:13.453562+00 2408 \N google ChdDSUhNMG9nS0VJQ0FnSURPOTdHUWl3RRAB unknown {"text": "Les enfants ont adorés", "author": "Nadia Larinouna aliouane", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOTdHUWl3RRAB", "timestamp": "3 years ago"} Les enfants ont adorés 5 2023-01-31 01:52:39.833374+00 Nadia Larinouna aliouane \N 1 2026-01-30 09:54:10.578328+00 2026-01-30 02:01:13.458349+00 2409 \N google ChZDSUhNMG9nS0VJQ0FnSURVN0tYOENnEAE unknown {"text": "Buen circuito", "author": "Ruben Vicente Navarro", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN0tYOENnEAE", "timestamp": "6 years ago"} Buen circuito 4 2020-02-01 01:52:39.833374+00 Ruben Vicente Navarro \N 1 2026-01-30 09:54:10.584674+00 2026-01-30 02:01:13.463259+00 2410 \N google ChdDSUhNMG9nS0VJQ0FnSURVNjVhVDVnRRAB unknown {"text": "Buena experiencia 🙉", "author": "Alexandru ionut Popovici", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVNjVhVDVnRRAB", "timestamp": "6 years ago"} Buena experiencia 🙉 5 2020-02-01 01:52:39.833374+00 Alexandru ionut Popovici \N 1 2026-01-30 09:54:10.588885+00 2026-01-30 02:01:13.466674+00 2411 \N google ChdDSUhNMG9nS0VJQ0FnSUNja2NPRXdBRRAB unknown {"text": "Perfeto", "author": "Sasa Peruseski", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNja2NPRXdBRRAB", "timestamp": "5 years ago"} Perfeto 5 2021-01-31 01:52:39.833374+00 Sasa Peruseski \N 1 2026-01-30 09:54:10.594211+00 2026-01-30 02:01:13.471517+00 2412 \N google ChdDSUhNMG9nS0VJQ0FnSUNxck9xUjRnRRAB unknown {"text": "De cine", "author": "daniel senñai", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxck9xUjRnRRAB", "timestamp": "4 years ago"} De cine 5 2022-01-31 01:52:39.833374+00 daniel senñai \N 1 2026-01-30 09:54:10.597207+00 2026-01-30 02:01:13.474765+00 2413 \N google ChdDSUhNMG9nS0VJQ0FnSURDajhENjRnRRAB unknown {"text": "Me encanto", "author": "Miguel Angel Garre", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDajhENjRnRRAB", "timestamp": "5 years ago"} Me encanto 4 2021-01-31 01:52:39.833374+00 Miguel Angel Garre \N 1 2026-01-30 09:54:10.600241+00 2026-01-30 02:01:13.47758+00 2414 \N google ChdDSUhNMG9nS0VJQ0FnSURncGJqVzRRRRAB unknown {"text": "Karts para disfrutar en familia", "author": "Javier", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURncGJqVzRRRRAB", "timestamp": "7 years ago"} Karts para disfrutar en familia 4 2019-02-01 01:52:39.833374+00 Javier \N 1 2026-01-30 09:54:10.608166+00 2026-01-30 02:01:13.485015+00 2415 \N google ChdDSUhNMG9nS0VJQ0FnSURXeXRxdnlBRRAB unknown {"text": "Bueno", "author": "Abderrahim Barber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeXRxdnlBRRAB", "timestamp": "3 years ago"} Bueno 5 2023-01-31 01:52:39.833374+00 Abderrahim Barber \N 1 2026-01-30 09:54:10.613108+00 2026-01-30 02:01:13.491362+00 2416 \N google ChdDSUhNMG9nS0VJQ0FnSUNRMDh6THh3RRAB unknown {"text": "Por su trazado y atención", "author": "jose antonio suarez quintas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRMDh6THh3RRAB", "timestamp": "9 years ago"} Por su trazado y atención 5 2017-02-01 01:52:39.833374+00 jose antonio suarez quintas \N 1 2026-01-30 09:54:10.6165+00 2026-01-30 02:01:13.493911+00 2417 \N google ChZDSUhNMG9nS0VJQ0FnSURLa3VxS1JnEAE unknown {"text": "Es un sitio espectácular", "author": "Isabela Vichera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLa3VxS1JnEAE", "timestamp": "4 years ago"} Es un sitio espectácular 5 2022-01-31 01:52:39.833374+00 Isabela Vichera \N 1 2026-01-30 09:54:10.6198+00 2026-01-30 02:01:13.496407+00 2418 \N google ChZDSUhNMG9nS0VJQ0FnSUMxd192ZlN3EAE unknown {"text": "Leuk circuit", "author": "marcel heemskerk", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxd192ZlN3EAE", "timestamp": "2 years ago"} Leuk circuit 5 2024-01-31 01:52:39.833374+00 marcel heemskerk \N 1 2026-01-30 09:54:10.626576+00 2026-01-30 02:01:13.502667+00 2419 \N google ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE unknown {"text": "Circuito impresionante", "author": "Encarna O.G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE", "timestamp": "Edited a year ago"} Circuito impresionante 5 2026-01-30 01:52:39.833374+00 Encarna O.G. \N 1 2026-01-30 09:54:10.629409+00 2026-01-30 02:01:13.507011+00 1310 \N google Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB unknown {"text": "Visited here in late July to race with my son. Had a great time and really enjoyed our race. Easy check in experience, reasonable cost and a good fun track with good karts. If you can, pick the F300 Karts because we went in F200 and got well beaten by the drivers in the faster Karts!\\nNice roof terrace for spectators and a cafe/bar for food & drinks.\\nHighly recommend it for a bit of fun. Karts for all ages although the kids race we watched was organised chaos albeit at low speeds! 🤣", "author": "Ross M84", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB", "timestamp": "5 months ago"} Visited here in late July to race with my son. Had a great time and really enjoyed our race. Easy check in experience, reasonable cost and a good fun track with good karts. If you can, pick the F300 Karts because we went in F200 and got well beaten by the drivers in the faster Karts!\nNice roof terrace for spectators and a cafe/bar for food & drinks.\nHighly recommend it for a bit of fun. Karts for all ages although the kids race we watched was organised chaos albeit at low speeds! 🤣 5 2025-09-02 00:52:39.833374+00 Ross M84 \N 1 2026-01-30 09:54:06.615033+00 2026-01-30 02:01:08.920278+00 1336 \N google ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB unknown {"text": "Great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. He absolutely loved it and dad (a former saloon car racer) enjoyed it too! Great value, friendly team and highly recommended for a fun afternoon.", "author": "John Smith", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB", "timestamp": "2 years ago"} Great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. He absolutely loved it and dad (a former saloon car racer) enjoyed it too! Great value, friendly team and highly recommended for a fun afternoon. 5 2024-01-31 01:52:39.833374+00 John Smith \N 1 2026-01-30 09:54:06.691884+00 2026-01-30 02:01:09.004778+00 2424 \N google ChZDSUhNMG9nS0VJQ0FnSUM2aUlMWGJREAE unknown {"text": "Volveremos!!🏎️🏎️🏎️🏎️", "author": "María José Tomás Simón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aUlMWGJREAE", "timestamp": "Edited 4 years ago"} Volveremos!!🏎️🏎️🏎️🏎️ 5 2026-01-30 01:52:39.833374+00 María José Tomás Simón \N 1 2026-01-30 09:54:10.673499+00 2026-01-30 02:01:13.553597+00 2425 \N google ChZDSUhNMG9nS0VJQ0FnSUNnLTRfVkJ3EAE unknown {"text": "Encantada..", "author": "Mita Trejo Monserrate", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnLTRfVkJ3EAE", "timestamp": "7 years ago"} Encantada.. 5 2019-02-01 01:52:39.833374+00 Mita Trejo Monserrate \N 1 2026-01-30 09:54:10.678994+00 2026-01-30 02:01:13.559204+00 2426 \N google ChdDSUhNMG9nS0VJQ0FnSURBLWZhbjBRRRAB unknown {"text": "Increíble! !!!", "author": "Caridad Cano", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBLWZhbjBRRRAB", "timestamp": "7 years ago"} Increíble! !!! 4 2019-02-01 01:52:39.833374+00 Caridad Cano \N 1 2026-01-30 09:54:10.686854+00 2026-01-30 02:01:13.566776+00 2427 \N google ChdDSUhNMG9nS0VJQ0FnSURLcGY3SzJBRRAB unknown {"text": "Grandes Profesionales", "author": "Manuel Vergel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcGY3SzJBRRAB", "timestamp": "4 years ago"} Grandes Profesionales 5 2022-01-31 01:52:39.833374+00 Manuel Vergel \N 1 2026-01-30 09:54:10.694613+00 2026-01-30 02:01:13.575422+00 2428 \N google ChdDSUhNMG9nS0VJQ0FnSUM2eTU3b3NBRRAB unknown {"text": "deaearque dejan", "author": "Sonia Muñoz Ortega (Sonimor)", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2eTU3b3NBRRAB", "timestamp": "4 years ago"} deaearque dejan 3 2022-01-31 01:52:39.833374+00 Sonia Muñoz Ortega (Sonimor) \N 1 2026-01-30 09:54:10.701423+00 2026-01-30 02:01:13.583135+00 2429 \N google ChdDSUhNMG9nS0VJQ0FnSUNheGVHR2lRRRAB unknown {"text": "Divertido!!", "author": "María Del Mar Ruiz Plaza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheGVHR2lRRRAB", "timestamp": "4 years ago"} Divertido!! 5 2022-01-31 01:52:39.833374+00 María Del Mar Ruiz Plaza \N 1 2026-01-30 09:54:10.706718+00 2026-01-30 02:01:13.58886+00 2430 \N google ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB unknown {"text": "Trato familiar", "author": "Daniel Anton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB", "timestamp": "Edited 6 years ago"} Trato familiar 5 2026-01-30 01:52:39.833374+00 Daniel Anton \N 1 2026-01-30 09:54:10.709423+00 2026-01-30 02:01:13.592225+00 2431 \N google ChZDSUhNMG9nS0VJQ0FnSURhb3Z6WE1BEAE unknown {"text": "Fantástico", "author": "Miguel Angel Zapata Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhb3Z6WE1BEAE", "timestamp": "4 years ago"} Fantástico 5 2022-01-31 01:52:39.833374+00 Miguel Angel Zapata Sanchez \N 1 2026-01-30 09:54:10.713841+00 2026-01-30 02:01:13.597558+00 2432 \N google ChdDSUhNMG9nS0VJQ0FnSUNhOTliTm9nRRAB unknown {"text": "Aangenaam.", "author": "Philippe Vanderpoorten", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOTliTm9nRRAB", "timestamp": "4 years ago"} Aangenaam. 4 2022-01-31 01:52:39.833374+00 Philippe Vanderpoorten \N 1 2026-01-30 09:54:10.72284+00 2026-01-30 02:01:13.609202+00 2433 \N google ChdDSUhNMG9nS0VJQ0FnSURPXzdDNjBBRRAB unknown {"text": "Corto viaje", "author": "Concepcion Muñiz", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPXzdDNjBBRRAB", "timestamp": "3 years ago"} Corto viaje 3 2023-01-31 01:52:39.833374+00 Concepcion Muñiz \N 1 2026-01-30 09:54:10.728634+00 2026-01-30 02:01:13.615004+00 2434 \N google ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB unknown {"text": "Los mejores.", "author": "Eugenio “Ryo567” Martínez Seguín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB", "timestamp": "Edited 3 weeks ago"} Los mejores. 5 2026-01-30 01:52:39.833374+00 Eugenio “Ryo567” Martínez Seguín \N 1 2026-01-30 09:54:10.73257+00 2026-01-30 02:01:13.618964+00 2435 \N google ChdDSUhNMG9nS0VJQ0FnSUN3N2JQYjVRRRAB unknown {"text": "Bra go kart", "author": "Aleksander Kjeldsen", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3N2JQYjVRRRAB", "timestamp": "7 years ago"} Bra go kart 4 2019-02-01 01:52:39.833374+00 Aleksander Kjeldsen \N 1 2026-01-30 09:54:10.741507+00 2026-01-30 02:01:13.629081+00 1312 \N google Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB unknown {"text": "Great venue, good customer service. Some of the younger staff speaks English well. Has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in. Parking is good, and accessibility by bike is good as it has a new bike lane going right by the track.", "author": "Per-Erik Broz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB", "timestamp": "7 months ago"} Great venue, good customer service. Some of the younger staff speaks English well. Has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in. Parking is good, and accessibility by bike is good as it has a new bike lane going right by the track. 5 2025-07-04 00:52:39.833374+00 Per-Erik Broz \N 1 2026-01-30 09:54:06.623514+00 2026-01-30 02:01:08.927988+00 1317 \N google Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB unknown {"text": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD FRIENDS AND FAMILY TRAVELING FOR HOURS TO BE THERE FOR MY SONS BIRTHDAY😡.\\nWHAT A LIE....WHEN I RANG I GOT HUNG UP ON.possibly Wanted the day off because we were probably the only persons arriving on the day.Most important they text me.They hadn't the decency to call Us!!", "author": "ceceliamichaeloneill", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB", "timestamp": "a month ago"} They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD FRIENDS AND FAMILY TRAVELING FOR HOURS TO BE THERE FOR MY SONS BIRTHDAY😡.\nWHAT A LIE....WHEN I RANG I GOT HUNG UP ON.possibly Wanted the day off because we were probably the only persons arriving on the day.Most important they text me.They hadn't the decency to call Us!! 1 2025-12-31 01:52:39.833374+00 ceceliamichaeloneill \N 1 2026-01-30 09:54:06.635625+00 2026-01-30 02:01:08.942377+00 1325 \N google ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE unknown {"text": "Lugar fantástico, situado en uno de los lugares con más encanto de España, el mar menor, en el término municipal de San Javier, no necesita apellidos. Con una amplia terraza donde tomar algo. De fácil acceso y un circuito genial para entrenamientos y competiciones.\\nLo recomiendo.", "author": "israel cervantes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE", "timestamp": "4 years ago"} Lugar fantástico, situado en uno de los lugares con más encanto de España, el mar menor, en el término municipal de San Javier, no necesita apellidos. Con una amplia terraza donde tomar algo. De fácil acceso y un circuito genial para entrenamientos y competiciones.\nLo recomiendo. 5 2022-01-31 01:52:39.833374+00 israel cervantes \N 1 2026-01-30 09:54:06.658166+00 2026-01-30 02:01:08.972122+00 1668 \N google ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE unknown {"text": "Los Karts y el circuito están muy bien. Varias potencias y circuito divertido.\\n\\nLo que no me gustó fue la desorganización que tienen para atenderte. Hay una única persona tanto para atender el bar como para darte los tickets y la verdad que el proceso es bastante lento.\\n\\nSi quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo menos ya que una vez haces una ronda, no puedes hacer de seguida otra, tienes que bajarte y esperar una ronda más.\\n\\nAl final hicimos solo una tanda y estuvimos en el complejo una hora. Duro para los acompañantes y pesado para los conductores.\\n\\nPor lo demás genial.", "author": "Iñigo Fernandez bolea", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE", "timestamp": "4 years ago"} Los Karts y el circuito están muy bien. Varias potencias y circuito divertido.\n\nLo que no me gustó fue la desorganización que tienen para atenderte. Hay una única persona tanto para atender el bar como para darte los tickets y la verdad que el proceso es bastante lento.\n\nSi quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo menos ya que una vez haces una ronda, no puedes hacer de seguida otra, tienes que bajarte y esperar una ronda más.\n\nAl final hicimos solo una tanda y estuvimos en el complejo una hora. Duro para los acompañantes y pesado para los conductores.\n\nPor lo demás genial. 3 2022-01-31 01:52:39.833374+00 Iñigo Fernandez bolea \N 1 2026-01-30 09:54:07.758798+00 2026-01-30 02:01:10.236795+00 1327 \N google ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE unknown {"text": "Pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. He estado en otras pistas indoor y esta es la que más me ha gustado con diferencia.\\nDisponen de un parking amplio y una terraza con sombra mientras se espera.\\nRemarcar el personal amable.", "author": "Manuel Zapata", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE", "timestamp": "3 years ago"} Pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. He estado en otras pistas indoor y esta es la que más me ha gustado con diferencia.\nDisponen de un parking amplio y una terraza con sombra mientras se espera.\nRemarcar el personal amable. 5 2023-01-31 01:52:39.833374+00 Manuel Zapata \N 1 2026-01-30 09:54:06.664397+00 2026-01-30 02:01:08.978847+00 1330 \N google ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB unknown {"text": "Took my grandkids 7 & 9, they’d never driven before but the Marshalls were excellent in helping them. Great track and cars and very reasonable prices", "author": "9884booth", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB", "timestamp": "2 years ago"} Took my grandkids 7 & 9, they’d never driven before but the Marshalls were excellent in helping them. Great track and cars and very reasonable prices 5 2024-01-31 01:52:39.833374+00 9884booth \N 1 2026-01-30 09:54:06.673901+00 2026-01-30 02:01:08.9882+00 1333 \N google Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB unknown {"text": "Amazing karting circuit! The track is exciting and well-designed, and the prices are super affordable. Perfect for a fun day out with friends or family — highly recommended!", "author": "Kalid A", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB", "timestamp": "5 months ago"} Amazing karting circuit! The track is exciting and well-designed, and the prices are super affordable. Perfect for a fun day out with friends or family — highly recommended! 5 2025-09-02 00:52:39.833374+00 Kalid A \N 1 2026-01-30 09:54:06.681047+00 2026-01-30 02:01:08.996169+00 1335 \N google ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB unknown {"text": "Such a fun experience for kids (and adults too!) We went on a Wednesday as people here have suggested it is good value and I can confirm we got double the minutes for the same price. Staff are friendly and helpful- we speak limited Spanish and we managed to easily converse. We will definitely be returning before our holiday is over!", "author": "Lucy Wilkinson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB", "timestamp": "3 years ago"} Such a fun experience for kids (and adults too!) We went on a Wednesday as people here have suggested it is good value and I can confirm we got double the minutes for the same price. Staff are friendly and helpful- we speak limited Spanish and we managed to easily converse. We will definitely be returning before our holiday is over! 5 2023-01-31 01:52:39.833374+00 Lucy Wilkinson \N 1 2026-01-30 09:54:06.687862+00 2026-01-30 02:01:09.00188+00 1676 \N google ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB unknown {"text": "Soy habitual de los circuitos de karting, me he recorrido muchos en toda España y este es con diferencia mi favorito, el personal es amable, te dicen trucos para bajar los tiempos y da gusto correr con karts donde el mantenimiento lo hacen a la perfección. Cada año que vengo tienen alguna novedad y eso dice mucho de una empresa, enhorabuena por vuestro negocio, volveré pronto a bajar mis tiempos!", "author": "Raúl Mulero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB", "timestamp": "a year ago"} Soy habitual de los circuitos de karting, me he recorrido muchos en toda España y este es con diferencia mi favorito, el personal es amable, te dicen trucos para bajar los tiempos y da gusto correr con karts donde el mantenimiento lo hacen a la perfección. Cada año que vengo tienen alguna novedad y eso dice mucho de una empresa, enhorabuena por vuestro negocio, volveré pronto a bajar mis tiempos! 5 2025-01-30 01:52:39.833374+00 Raúl Mulero \N 1 2026-01-30 09:54:07.792849+00 2026-01-30 02:01:10.274758+00 1685 \N google ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB unknown {"text": "Un circuito muy amplio y rápido, los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un F-200 que están muy bien.\\n\\nYa si quieres más velocidad tienes el de F-300 en donde ya es algo más técnico. Y si quieres sentir la sensación de conducir un kart de competición de 4t tienen el de 400cc que tira muy bien!\\n\\nAhora para este año han innovado organizando un campeonato para amantes del karting que está bastante bien de precio y muy bien organizado, en donde habrán distintas modalidades de correr el circuito muy interesantes.\\n\\nSin duda alguna es uno de los mejores de la Región de Murcia.", "author": "Albertikoko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB", "timestamp": "4 years ago"} Un circuito muy amplio y rápido, los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un F-200 que están muy bien.\n\nYa si quieres más velocidad tienes el de F-300 en donde ya es algo más técnico. Y si quieres sentir la sensación de conducir un kart de competición de 4t tienen el de 400cc que tira muy bien!\n\nAhora para este año han innovado organizando un campeonato para amantes del karting que está bastante bien de precio y muy bien organizado, en donde habrán distintas modalidades de correr el circuito muy interesantes.\n\nSin duda alguna es uno de los mejores de la Región de Murcia. 5 2022-01-31 01:52:39.833374+00 Albertikoko \N 1 2026-01-30 09:54:07.825121+00 2026-01-30 02:01:10.306543+00 1339 \N google Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB unknown {"text": "Great place for fun! A bit short track so many turns and not so high speed. Recommend!", "author": "Linus Ring", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB", "timestamp": "2 months ago"} Great place for fun! A bit short track so many turns and not so high speed. Recommend! 4 2025-12-01 01:52:39.833374+00 Linus Ring \N 1 2026-01-30 09:54:06.702406+00 2026-01-30 02:01:09.015021+00 1347 \N google Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB unknown {"text": "Great and competitive karting track. A challenging circuit where you can enjoy with family and friends.", "author": "Rod", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB", "timestamp": "a month ago"} Great and competitive karting track. A challenging circuit where you can enjoy with family and friends. 5 2025-12-31 01:52:39.833374+00 Rod \N 1 2026-01-30 09:54:06.729702+00 2026-01-30 02:01:09.055971+00 1348 \N google ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE unknown {"text": "Amazing opportunities for the young and old, even 2 seated cars for parent and child if the little one isn't old enough to take the wheel. Very pleasant day out. Also has cafe and roof top viewing.", "author": "June P-bell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE", "timestamp": "6 years ago"} Amazing opportunities for the young and old, even 2 seated cars for parent and child if the little one isn't old enough to take the wheel. Very pleasant day out. Also has cafe and roof top viewing. 5 2020-02-01 01:52:39.833374+00 June P-bell \N 1 2026-01-30 09:54:06.732102+00 2026-01-30 02:01:09.061398+00 1349 \N google Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB unknown {"text": "Very nice track. Smooth and big kerbs. The carts were good enough. And the staff was helpful.", "author": "Kenneth Madsø", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB", "timestamp": "6 months ago"} Very nice track. Smooth and big kerbs. The carts were good enough. And the staff was helpful. 5 2025-08-03 00:52:39.833374+00 Kenneth Madsø \N 1 2026-01-30 09:54:06.734318+00 2026-01-30 02:01:09.06795+00 1350 \N google ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE unknown {"text": "Fantastic track and karts. Cant believe it wasn’t busier the day we went. Big outdoor track with decent options for karts depending on your level. Will definitely return again!", "author": "Rob T", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE", "timestamp": "6 years ago"} Fantastic track and karts. Cant believe it wasn’t busier the day we went. Big outdoor track with decent options for karts depending on your level. Will definitely return again! 5 2020-02-01 01:52:39.833374+00 Rob T \N 1 2026-01-30 09:54:06.737668+00 2026-01-30 02:01:09.071414+00 1351 \N google ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE unknown {"text": "Very friendly family run go cart track, brilliant fun for all the family. Highly recommended. Our 2 sons had a ball there on our recent visits.", "author": "Martin S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE", "timestamp": "3 years ago"} Very friendly family run go cart track, brilliant fun for all the family. Highly recommended. Our 2 sons had a ball there on our recent visits. 5 2023-01-31 01:52:39.833374+00 Martin S. \N 1 2026-01-30 09:54:06.740354+00 2026-01-30 02:01:09.074473+00 1356 \N google Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB unknown {"text": "Worth the money!", "author": "Kenneth Jenkins", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB", "timestamp": "a month ago"} Worth the money! 5 2025-12-31 01:52:39.833374+00 Kenneth Jenkins \N 1 2026-01-30 09:54:06.753585+00 2026-01-30 02:01:09.088033+00 1378 \N google review_70 unknown {"text": "Great way to spend An hour or two with friends and family. The whole setup was made very easy and we literally turned up and was on the track within 5 minutes. No messing about. It's a good track too with plenty of opportunities to overtake and challenge your driving skills. We'll certainly be returning again soon.", "author": "Lee Clements", "rating": 5, "source": "dom", "timestamp": "4 years ago"} Great way to spend An hour or two with friends and family. The whole setup was made very easy and we literally turned up and was on the track within 5 minutes. No messing about. It's a good track too with plenty of opportunities to overtake and challenge your driving skills. We'll certainly be returning again soon. 5 2022-01-31 01:52:39.833374+00 Lee Clements \N 1 2026-01-30 09:54:06.824326+00 2026-01-30 02:01:09.154517+00 1362 \N google ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB unknown {"text": "Every year we come back and we never get bored, it’s now like a family tradition.\\nFriendly staff who speak English and very good with kids.", "author": "austen blakemore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB", "timestamp": "Edited 3 years ago"} Every year we come back and we never get bored, it’s now like a family tradition.\nFriendly staff who speak English and very good with kids. 5 2026-01-30 01:52:39.833374+00 austen blakemore \N 1 2026-01-30 09:54:06.771269+00 2026-01-30 02:01:09.10733+00 1364 \N google ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB unknown {"text": "Been here twice over the last month great karting track to have fun with friends", "author": "Angela Stout", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB", "timestamp": "2 years ago"} Been here twice over the last month great karting track to have fun with friends 4 2024-01-31 01:52:39.833374+00 Angela Stout \N 1 2026-01-30 09:54:06.776423+00 2026-01-30 02:01:09.112009+00 1365 \N google Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB unknown {"text": "Well run enterprise staff are extremely competent and are very comfortable when dealing with the customers.", "author": "Henry Murray", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB", "timestamp": "5 months ago"} Well run enterprise staff are extremely competent and are very comfortable when dealing with the customers. 5 2025-09-02 00:52:39.833374+00 Henry Murray \N 1 2026-01-30 09:54:06.779008+00 2026-01-30 02:01:09.114883+00 1366 \N google ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE unknown {"text": "Great karts, they are pretty fast. Friendly staff and a good track. Not so big but big fun.", "author": "Jonathan “Bech” Mayer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE", "timestamp": "5 years ago"} Great karts, they are pretty fast. Friendly staff and a good track. Not so big but big fun. 5 2021-01-31 01:52:39.833374+00 Jonathan “Bech” Mayer \N 1 2026-01-30 09:54:06.782702+00 2026-01-30 02:01:09.117957+00 1367 \N google review_59 unknown {"text": "Wide variety of karts even an adapted one.\\nStaff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry.\\nThe track is actually pretty strenuous if (like me) you've not done it recently.\\nDemanding and twisty with\\nvaried corners.", "author": "Andrew Saint", "rating": 5, "source": "dom", "timestamp": "a year ago"} Wide variety of karts even an adapted one.\nStaff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry.\nThe track is actually pretty strenuous if (like me) you've not done it recently.\nDemanding and twisty with\nvaried corners. 5 2025-01-30 01:52:39.833374+00 Andrew Saint \N 1 2026-01-30 09:54:06.785644+00 2026-01-30 02:01:09.121731+00 238 \N google review_61 unknown {"text": "Really good value - New Cars - Friendly genuine service. Booked and received a Fiat 500 with less than 1000km on the odo. Meeting place could be better advertised but once we figured that out, no problems getting the shuttle to the off site office- less than a 5 minute drive.", "author": "George Le Cornu", "rating": 5, "source": "dom", "timestamp": "a year ago"} Really good value - New Cars - Friendly genuine service. Booked and received a Fiat 500 with less than 1000km on the odo. Meeting place could be better advertised but once we figured that out, no problems getting the shuttle to the off site office- less than a 5 minute drive. 5 2025-01-25 01:27:48.340536+00 George Le Cornu \N 1 2026-01-30 09:54:06.791791+00 2026-01-25 01:27:50.176584+00 243 \N google review_66 unknown {"text": "Rented a car from their office in Gran Canaria, and they ended up overcharging my security deposit. And their support is not doing anything so far, if they refund me what they unjustly charged, I will come here for an edit but in the first place, how could you trust such a company with your credit card authorization? Never again!", "author": "Burhan Sayılı", "rating": 1, "source": "dom", "timestamp": "9 months ago"} Rented a car from their office in Gran Canaria, and they ended up overcharging my security deposit. And their support is not doing anything so far, if they refund me what they unjustly charged, I will come here for an edit but in the first place, how could you trust such a company with your credit card authorization? Never again! 1 2025-04-30 01:27:48.34056+00 Burhan Sayılı \N 1 2026-01-30 09:54:06.805681+00 2026-01-25 01:27:50.199947+00 244 \N google review_67 unknown {"text": "We have rented car several times in different cities, but so far clickRent experience was the best one. Everything was smooth and clear. Huge thanks to Carlos for super fast and friendly service! And of course a ride from Fran and Antonio was super welcoming. We are looking forward to use clickRent again", "author": "Dmitry Stepaniuk", "rating": 5, "source": "dom", "timestamp": "a year ago"} We have rented car several times in different cities, but so far clickRent experience was the best one. Everything was smooth and clear. Huge thanks to Carlos for super fast and friendly service! And of course a ride from Fran and Antonio was super welcoming. We are looking forward to use clickRent again 5 2025-01-25 01:27:48.340562+00 Dmitry Stepaniuk \N 1 2026-01-30 09:54:06.80909+00 2026-01-25 01:27:50.20543+00 1385 \N google review_77 unknown {"text": "Very good and long track. Good value for your money. Definitely coming back soon. Even if we were about 10 people on the track, it was not really crowded.", "author": "Fredrik Hjelm", "rating": 5, "source": "dom", "timestamp": "a year ago"} Very good and long track. Good value for your money. Definitely coming back soon. Even if we were about 10 people on the track, it was not really crowded. 5 2025-01-30 01:52:39.833374+00 Fredrik Hjelm \N 1 2026-01-30 09:54:06.844857+00 2026-01-30 02:01:09.179989+00 1386 \N google ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB unknown {"text": "Great day out for all. Thoroughly recommend a visit.", "author": "Thomas HIll", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB", "timestamp": "8 years ago"} Great day out for all. Thoroughly recommend a visit. 5 2018-02-01 01:52:39.833374+00 Thomas HIll \N 1 2026-01-30 09:54:06.847066+00 2026-01-30 02:01:09.182451+00 1399 \N google ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE unknown {"text": "Watched our son and grandchildren race each other. You can ride with your kids or for the more experienced you can go around pretty fast and obviously slower for children. Really enjoyable for everyone.", "author": "Alan Walker", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE", "timestamp": "2 years ago"} Watched our son and grandchildren race each other. You can ride with your kids or for the more experienced you can go around pretty fast and obviously slower for children. Really enjoyable for everyone. 5 2024-01-31 01:52:39.833374+00 Alan Walker \N 1 2026-01-30 09:54:06.885407+00 2026-01-30 02:01:09.222141+00 1402 \N google ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE unknown {"text": "Great outdoor track! F-300 carts were quick! (Quick enough anyway) big board outside to check your lap times, also a free printout from reception! Cheapest and BEST in the area! All staff very polite and helpful, we’ve been a few times this holiday, Don’t waste your time with other Karting tracks...just go here! You won’t be disappointed 👍👍", "author": "Rob Wagner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE", "timestamp": "6 years ago"} Great outdoor track! F-300 carts were quick! (Quick enough anyway) big board outside to check your lap times, also a free printout from reception! Cheapest and BEST in the area! All staff very polite and helpful, we’ve been a few times this holiday, Don’t waste your time with other Karting tracks...just go here! You won’t be disappointed 👍👍 5 2020-02-01 01:52:39.833374+00 Rob Wagner \N 1 2026-01-30 09:54:06.893347+00 2026-01-30 02:01:09.231869+00 1451 \N google ChdDSUhNMG9nS0VJQ0FnSUN4OC1XLWxnRRAB unknown {"text": "Such a great experience from enquiring about our Stag event, through to looking after us ensuring everyone had an amazing time.", "author": "Neil Postlethwaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4OC1XLWxnRRAB", "timestamp": "2 years ago"} Such a great experience from enquiring about our Stag event, through to looking after us ensuring everyone had an amazing time. 5 2024-01-31 01:52:39.833374+00 Neil Postlethwaite \N 1 2026-01-30 09:54:07.027614+00 2026-01-30 02:01:09.393912+00 1454 \N google ChZDSUhNMG9nS0VJQ0FnSURnN003a05BEAE unknown {"text": "Top place to go staff are very helpful and are a great laugh. They have an amazing track and it's fun for everyone", "author": "Chris Leater", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnN003a05BEAE", "timestamp": "7 years ago"} Top place to go staff are very helpful and are a great laugh. They have an amazing track and it's fun for everyone 5 2019-02-01 01:52:39.833374+00 Chris Leater \N 1 2026-01-30 09:54:07.035489+00 2026-01-30 02:01:09.402947+00 1722 \N google ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB unknown {"text": "Super bien! Si te gusta la velocidad, este es tu lugar. He probado otras pistas, pero ésta está bien y también el precio. El único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad. Pero guay la verdad!!", "author": "Andrea", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB", "timestamp": "a year ago"} Super bien! Si te gusta la velocidad, este es tu lugar. He probado otras pistas, pero ésta está bien y también el precio. El único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad. Pero guay la verdad!! 5 2025-01-30 01:52:39.833374+00 Andrea \N 1 2026-01-30 09:54:07.953373+00 2026-01-30 02:01:10.457566+00 1842 \N google ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE unknown {"text": "Bonjour étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en Europe je peux vous dire que celui-ci fait parti de mes préférés le matériel est en super état et le personnel est sympathique. Je recommande vivement. Idéal même pour les enfants en bas âges. Les parents qui veulent faire découvrir le karting à leurs enfants peuvent y aller sans soucis il dispose de karting by place. Visitez leur site vous y trouverez tout les renseignements. Bonne course.", "author": "Issam halal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE", "timestamp": "Edited 5 years ago"} Bonjour étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en Europe je peux vous dire que celui-ci fait parti de mes préférés le matériel est en super état et le personnel est sympathique. Je recommande vivement. Idéal même pour les enfants en bas âges. Les parents qui veulent faire découvrir le karting à leurs enfants peuvent y aller sans soucis il dispose de karting by place. Visitez leur site vous y trouverez tout les renseignements. Bonne course. 5 2026-01-30 01:52:39.833374+00 Issam halal \N 1 2026-01-30 09:54:08.324554+00 2026-01-30 02:01:10.905717+00 1412 \N google ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB unknown {"text": "Great Great Go-kart track, friendly helpful staff. Easy to find off motorway EP7, easy parking. Good shop and cafe on site. Good prices too: €12 for 8mins, very reasonable (especially compared to UK in £GBP). Great track, 10 varying turns, about 1.2km long. We used F200 karts (fast enough). F100 for smaller children, F300 and F400 for enthusiasts. Highly recommended.", "author": "Laith Hofayz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB", "timestamp": "6 years ago"} Great Great Go-kart track, friendly helpful staff. Easy to find off motorway EP7, easy parking. Good shop and cafe on site. Good prices too: €12 for 8mins, very reasonable (especially compared to UK in £GBP). Great track, 10 varying turns, about 1.2km long. We used F200 karts (fast enough). F100 for smaller children, F300 and F400 for enthusiasts. Highly recommended. 5 2020-02-01 01:52:39.833374+00 Laith Hofayz \N 1 2026-01-30 09:54:06.919123+00 2026-01-30 02:01:09.262152+00 1433 \N google ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE unknown {"text": "Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25 minute drive… and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. No mention of needing to reserve", "author": "Samuel Burgess", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE", "timestamp": "4 years ago"} Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25 minute drive… and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. No mention of needing to reserve 1 2022-01-31 01:52:39.833374+00 Samuel Burgess \N 1 2026-01-30 09:54:06.97846+00 2026-01-30 02:01:09.329083+00 1447 \N google ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE unknown {"text": "Karts for all ages, nice circuit and friendly staff. You should make a reserve if you don't want to wait", "author": "jmsgdt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE", "timestamp": "2 years ago"} Karts for all ages, nice circuit and friendly staff. You should make a reserve if you don't want to wait 5 2024-01-31 01:52:39.833374+00 jmsgdt \N 1 2026-01-30 09:54:07.017998+00 2026-01-30 02:01:09.383156+00 1449 \N google ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE unknown {"text": "Friendly staff with a good choice of go karts. Great fun, 5/6 laps in total and the go kart I used (f-300) had plenty of power, hands were aching by the end.", "author": "Ciaran Rouse", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE", "timestamp": "2 years ago"} Friendly staff with a good choice of go karts. Great fun, 5/6 laps in total and the go kart I used (f-300) had plenty of power, hands were aching by the end. 4 2024-01-31 01:52:39.833374+00 Ciaran Rouse \N 1 2026-01-30 09:54:07.022736+00 2026-01-30 02:01:09.387976+00 1588 \N google ChZDSUhNMG9nS0VJQ0FnSUNndTVIdUdBEAE unknown {"text": "Goo fun", "author": "Mike Hooper", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNndTVIdUdBEAE", "timestamp": "7 years ago"} Goo fun 4 2019-02-01 01:52:39.833374+00 Mike Hooper \N 1 2026-01-30 09:54:07.478349+00 2026-01-30 02:01:09.915455+00 1854 \N google ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE unknown {"text": "Le circuit donne vraiment envie mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréable 😡 je conseille plutôt d'aller à Go-Karts Orihuela Costa qui eux sont beaucoup plus courtois", "author": "Sophia Sophia", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE", "timestamp": "Edited 2 years ago"} Le circuit donne vraiment envie mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréable 😡 je conseille plutôt d'aller à Go-Karts Orihuela Costa qui eux sont beaucoup plus courtois 1 2026-01-30 01:52:39.833374+00 Sophia Sophia \N 1 2026-01-30 09:54:08.438874+00 2026-01-30 02:01:10.948408+00 1465 \N google ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB unknown {"text": "Health and safety standards are not very high witnessed 2 accidents and were only there for an hour\\nApart from that excellent track", "author": "Theresa Poole", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB", "timestamp": "6 years ago"} Health and safety standards are not very high witnessed 2 accidents and were only there for an hour\nApart from that excellent track 4 2020-02-01 01:52:39.833374+00 Theresa Poole \N 1 2026-01-30 09:54:07.06094+00 2026-01-30 02:01:09.434606+00 1472 \N google ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE unknown {"text": "Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to another venue.", "author": "Ian Routledge", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE", "timestamp": "3 years ago"} Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to another venue. 1 2023-01-31 01:52:39.833374+00 Ian Routledge \N 1 2026-01-30 09:54:07.07813+00 2026-01-30 02:01:09.455047+00 1490 \N google ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE unknown {"text": "Loved this place. Could do with more time in track, but great fun.", "author": "Donal Hegarty", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE", "timestamp": "6 years ago"} Loved this place. Could do with more time in track, but great fun. 5 2020-02-01 01:52:39.833374+00 Donal Hegarty \N 1 2026-01-30 09:54:07.131709+00 2026-01-30 02:01:09.517542+00 1491 \N google ChZDSUhNMG9nS0VJQ0FnSUR1eU1lQkxBEAE unknown {"text": "Well organised, not too expensive and great fun...especially at night", "author": "Carolyn Cartwright", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1eU1lQkxBEAE", "timestamp": "3 years ago"} Well organised, not too expensive and great fun...especially at night 5 2023-01-31 01:52:39.833374+00 Carolyn Cartwright \N 1 2026-01-30 09:54:07.134264+00 2026-01-30 02:01:09.520467+00 1492 \N google ChZDSUhNMG9nS0VJQ0FnSURPMXNiUEd3EAE unknown {"text": "Excellent fun time,even though my grandson almost lapped me 🏎😀🤪", "author": "Tommy M", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMXNiUEd3EAE", "timestamp": "3 years ago"} Excellent fun time,even though my grandson almost lapped me 🏎😀🤪 5 2023-01-31 01:52:39.833374+00 Tommy M \N 1 2026-01-30 09:54:07.137704+00 2026-01-30 02:01:09.524455+00 1493 \N google ChZDSUhNMG9nS0VNeXd1c1NtbV91bEF3EAE unknown {"text": "Great track and experience!", "author": "La Salu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNeXd1c1NtbV91bEF3EAE", "timestamp": "8 months ago"} Great track and experience! 5 2025-06-04 00:52:39.833374+00 La Salu \N 1 2026-01-30 09:54:07.141395+00 2026-01-30 02:01:09.528117+00 1496 \N google ChZDSUhNMG9nS0VJQ0FnSUNRa2FqZEdREAE unknown {"text": "12yr old and 7yr old on the F100 go carts. Had a brilliant time can't wait to go back.", "author": "Shaun Massey", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRa2FqZEdREAE", "timestamp": "7 years ago"} 12yr old and 7yr old on the F100 go carts. Had a brilliant time can't wait to go back. 5 2019-02-01 01:52:39.833374+00 Shaun Massey \N 1 2026-01-30 09:54:07.14976+00 2026-01-30 02:01:09.540338+00 1516 \N google ChZDSUhNMG9nS0VJQ0FnSURVbGZPRFRBEAE unknown {"text": "Decent karts, minimal wait and friendly staff. Would def go again.", "author": "Barry Dunmore", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbGZPRFRBEAE", "timestamp": "6 years ago"} Decent karts, minimal wait and friendly staff. Would def go again. 4 2020-02-01 01:52:39.833374+00 Barry Dunmore \N 1 2026-01-30 09:54:07.222878+00 2026-01-30 02:01:09.621797+00 1535 \N google ChZDSUhNMG9nS0VJQ0FnSUNwN0tpNWJ3EAE unknown {"text": "This is great for the kids definitely go back again and again", "author": "Margaret Thompson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwN0tpNWJ3EAE", "timestamp": "2 years ago"} This is great for the kids definitely go back again and again 5 2024-01-31 01:52:39.833374+00 Margaret Thompson \N 1 2026-01-30 09:54:07.272601+00 2026-01-30 02:01:09.679453+00 1557 \N google ChdDSUhNMG9nS0VJQ0FnSUM3N0pMcGhRRRAB unknown {"text": "Always a nice experience.", "author": "Marina Martinez Moya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3N0pMcGhRRRAB", "timestamp": "a year ago"} Always a nice experience. 5 2025-01-30 01:52:39.833374+00 Marina Martinez Moya \N 1 2026-01-30 09:54:07.35611+00 2026-01-30 02:01:09.77248+00 1559 \N google ChdDSUhNMG9nS0VJQ0FnSURtOFp2aXBnRRAB unknown {"text": "Nice place, reasonably priced.", "author": "Francisco Javier Martos Martinez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtOFp2aXBnRRAB", "timestamp": "3 years ago"} Nice place, reasonably priced. 3 2023-01-31 01:52:39.833374+00 Francisco Javier Martos Martinez \N 1 2026-01-30 09:54:07.361135+00 2026-01-30 02:01:09.777829+00 1560 \N google ChZDSUhNMG9nS0VJQ0FnSURKOE1EVUJnEAE unknown {"text": "Great karts and awesome track", "author": "Adrian", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKOE1EVUJnEAE", "timestamp": "2 years ago"} Great karts and awesome track 5 2024-01-31 01:52:39.833374+00 Adrian \N 1 2026-01-30 09:54:07.364395+00 2026-01-30 02:01:09.781636+00 1561 \N google ChZDSUhNMG9nS0VJQ0FnSUR1OXR5b0d3EAE unknown {"text": "Another brilliant time , thank you.", "author": "LUKE DAVIS", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1OXR5b0d3EAE", "timestamp": "3 years ago"} Another brilliant time , thank you. 5 2023-01-31 01:52:39.833374+00 LUKE DAVIS \N 1 2026-01-30 09:54:07.366574+00 2026-01-30 02:01:09.784204+00 1564 \N google ChdDSUhNMG9nS0VJQ0FnSURVOXJyMjV3RRAB unknown {"text": "Great place for all ages", "author": "Brian H", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVOXJyMjV3RRAB", "timestamp": "6 years ago"} Great place for all ages 5 2020-02-01 01:52:39.833374+00 Brian H \N 1 2026-01-30 09:54:07.377028+00 2026-01-30 02:01:09.795998+00 1565 \N google ChdDSUhNMG9nS0VJQ0FnSUNZbDZUUmdBRRAB unknown {"text": "Perfect go karts.. Friendly staff", "author": "Daren Moyse", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZbDZUUmdBRRAB", "timestamp": "6 years ago"} Perfect go karts.. Friendly staff 5 2020-02-01 01:52:39.833374+00 Daren Moyse \N 1 2026-01-30 09:54:07.380598+00 2026-01-30 02:01:09.80077+00 1567 \N google ChZDSUhNMG9nS0VJQ0FnSURCOXQtVUZnEAE unknown {"text": "Great stuff, great circuit", "author": "Marcos González Rubio", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOXQtVUZnEAE", "timestamp": "3 years ago"} Great stuff, great circuit 5 2023-01-31 01:52:39.833374+00 Marcos González Rubio \N 1 2026-01-30 09:54:07.390355+00 2026-01-30 02:01:09.813195+00 1590 \N google ChdDSUhNMG9nS0VJQ0FnSURodkxtUHdRRRAB unknown {"text": "Top notch setup", "author": "Stephen Watterson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURodkxtUHdRRRAB", "timestamp": "2 years ago"} Top notch setup 5 2024-01-31 01:52:39.833374+00 Stephen Watterson \N 1 2026-01-30 09:54:07.488814+00 2026-01-30 02:01:09.928931+00 1592 \N google ChZDSUhNMG9nS0VJQ0FnSURnXzVIclJBEAE unknown {"text": "Excellent afternoon out", "author": "Neil Duncan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnXzVIclJBEAE", "timestamp": "8 years ago"} Excellent afternoon out 5 2018-02-01 01:52:39.833374+00 Neil Duncan \N 1 2026-01-30 09:54:07.500988+00 2026-01-30 02:01:09.945269+00 1611 \N google Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB unknown {"text": "Me ha parecido una experiencia muy divertida. Es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el público podría mejorar porque no es que sean demasiado amables. También entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que hacía allí.", "author": "Irene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB", "timestamp": "5 months ago"} Me ha parecido una experiencia muy divertida. Es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el público podría mejorar porque no es que sean demasiado amables. También entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que hacía allí. 5 2025-09-02 00:52:39.833374+00 Irene \N 1 2026-01-30 09:54:07.57291+00 2026-01-30 02:01:10.034643+00 1614 \N google Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB unknown {"text": "Muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió en una sesión, esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos tocó ,todo muy bien si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje repetiremos seguro", "author": "Cristina Navarro Carrilero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB", "timestamp": "5 months ago"} Muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió en una sesión, esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos tocó ,todo muy bien si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje repetiremos seguro 5 2025-09-02 00:52:39.833374+00 Cristina Navarro Carrilero \N 1 2026-01-30 09:54:07.581485+00 2026-01-30 02:01:10.044022+00 1620 \N google Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB unknown {"text": "Un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo. No trataron de lujo y los karts son muy buenos.", "author": "ivan acebedo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB", "timestamp": "3 months ago"} Un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo. No trataron de lujo y los karts son muy buenos. 5 2025-11-01 01:52:39.833374+00 ivan acebedo \N 1 2026-01-30 09:54:07.601476+00 2026-01-30 02:01:10.064464+00 1626 \N google ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE unknown {"text": "Z gokartów nie korzystałam, ale panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czekał mnie 2 godzinny spacer do domu). Przechodziłam obok nich przypadkiem i zaszłam zapytać, czy pomogą. Pomogli :) Dzięki nim udało się przejechać połowę trasy, a resztę spokojnie przejść i bezpiecznie dotarłam do domu przed zmrokiem. Dziękuję! PS dodam, że panowie byli mili i można było się dogadać po angielsku.", "author": "Celina D.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE", "timestamp": "a year ago"} Z gokartów nie korzystałam, ale panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czekał mnie 2 godzinny spacer do domu). Przechodziłam obok nich przypadkiem i zaszłam zapytać, czy pomogą. Pomogli :) Dzięki nim udało się przejechać połowę trasy, a resztę spokojnie przejść i bezpiecznie dotarłam do domu przed zmrokiem. Dziękuję! PS dodam, że panowie byli mili i można było się dogadać po angielsku. 5 2025-01-30 01:52:39.833374+00 Celina D. \N 1 2026-01-30 09:54:07.619329+00 2026-01-30 02:01:10.083844+00 1629 \N google Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB unknown {"text": "Muy divertido gran pista y precios muy. Buenos. Genial", "author": "R. Rodríguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB", "timestamp": "4 months ago"} Muy divertido gran pista y precios muy. Buenos. Genial 5 2025-10-02 00:52:39.833374+00 R. Rodríguez \N 1 2026-01-30 09:54:07.628477+00 2026-01-30 02:01:10.091835+00 1635 \N google ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB unknown {"text": "La verdad que tiene unas instalaciones geniales.\\nCerca del Aeropuerto de San Javier y al lado de la discoteca Maná.\\nTiene una terrrazs para poder tomar algo mientras esperas tú turno.\\nLos precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar para pasar el rato con la familia o los amigos.", "author": "Raimond Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB", "timestamp": "7 years ago"} La verdad que tiene unas instalaciones geniales.\nCerca del Aeropuerto de San Javier y al lado de la discoteca Maná.\nTiene una terrrazs para poder tomar algo mientras esperas tú turno.\nLos precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar para pasar el rato con la familia o los amigos. 5 2019-02-01 01:52:39.833374+00 Raimond Ruiz \N 1 2026-01-30 09:54:07.645216+00 2026-01-30 02:01:10.112386+00 1637 \N google ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB unknown {"text": "Cal reservar, sinó potser et quedes amb un pam de nas. Ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins. És destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom. 14 euros volta amb F200 per 8 minuts. F300 19€. F400, 30€ però 10 minuts i sense F200s pel mig.", "author": "Carles Font", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB", "timestamp": "a year ago"} Cal reservar, sinó potser et quedes amb un pam de nas. Ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins. És destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom. 14 euros volta amb F200 per 8 minuts. F300 19€. F400, 30€ però 10 minuts i sense F200s pel mig. 4 2025-01-30 01:52:39.833374+00 Carles Font \N 1 2026-01-30 09:54:07.650961+00 2026-01-30 02:01:10.118527+00 1645 \N google ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE unknown {"text": "Experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el césped natural muy muy bien cuidado.\\nLos trabajadores muy amables y nos atendieron muy bien. Una mañana de risas y momentos con los amigos. Especial.", "author": "Sargento Highway", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE", "timestamp": "11 months ago"} Experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el césped natural muy muy bien cuidado.\nLos trabajadores muy amables y nos atendieron muy bien. Una mañana de risas y momentos con los amigos. Especial. 5 2025-03-06 01:52:39.833374+00 Sargento Highway \N 1 2026-01-30 09:54:07.676877+00 2026-01-30 02:01:10.149487+00 1649 \N google ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB unknown {"text": "Es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo.\\nSi es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa hora tomando algo con los colegas mientras veíamos a la gente correr y lo pasamos bien.\\nEn cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante grande.\\nTotalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia!", "author": "Álvaro París", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB", "timestamp": "3 years ago"} Es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo.\nSi es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa hora tomando algo con los colegas mientras veíamos a la gente correr y lo pasamos bien.\nEn cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante grande.\nTotalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia! 5 2023-01-31 01:52:39.833374+00 Álvaro París \N 1 2026-01-30 09:54:07.691885+00 2026-01-30 02:01:10.161445+00 1882 \N google ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE unknown {"text": "Es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico, he pilotado los karts de la categoría F-400 y son impresionantes la potencia que tienen, también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla, nuestros hijos también montaron en los karts y se lo pasaron en grande. Saludos desde Albacete a Manolo, Andrei y Roberta por tratarnos tan bien, lo recomiendo a todo el que quiera pasarlo en grande.", "author": "Herminio Hernandez Navalón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE", "timestamp": "Edited 6 years ago"} Es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico, he pilotado los karts de la categoría F-400 y son impresionantes la potencia que tienen, también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla, nuestros hijos también montaron en los karts y se lo pasaron en grande. Saludos desde Albacete a Manolo, Andrei y Roberta por tratarnos tan bien, lo recomiendo a todo el que quiera pasarlo en grande. 5 2026-01-30 01:52:39.833374+00 Herminio Hernandez Navalón \N 1 2026-01-30 09:54:08.571073+00 2026-01-30 02:01:11.043717+00 1653 \N google ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB unknown {"text": "Celebramos el santo de la peque con sus primos. Una pedazo de experiencia. Todo el personal es super amable y dispuesto.\\n\\nLos coches bien mantenidos y cómodos.\\n\\nSe cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos.\\n\\nRelación calidad/precio inmejorable.\\n\\nRepetiremos seguro en futuros cumpleaños y eventos.", "author": "Jorge Mora", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB", "timestamp": "4 years ago"} Celebramos el santo de la peque con sus primos. Una pedazo de experiencia. Todo el personal es super amable y dispuesto.\n\nLos coches bien mantenidos y cómodos.\n\nSe cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos.\n\nRelación calidad/precio inmejorable.\n\nRepetiremos seguro en futuros cumpleaños y eventos. 5 2022-01-31 01:52:39.833374+00 Jorge Mora \N 1 2026-01-30 09:54:07.70638+00 2026-01-30 02:01:10.180225+00 1658 \N google Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB unknown {"text": "Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. Ahora tengo que decirle a mi peque que no lo celebraremos allí.\\nMe parece una vergüenza.", "author": "Tarkan Akdogan", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB", "timestamp": "6 months ago"} Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. Ahora tengo que decirle a mi peque que no lo celebraremos allí.\nMe parece una vergüenza. 1 2025-08-03 00:52:39.833374+00 Tarkan Akdogan \N 1 2026-01-30 09:54:07.72159+00 2026-01-30 02:01:10.198761+00 1659 \N google ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE unknown {"text": "Nos a gustado mucho el sitio. Era la primera vez . Mi hijo de 8 se montó por primera vez y salió super contento . El trato muy bueno, simpáticas las dos mujeres . Y los chicos de pista que ponen los cascos y te asignan un karts también.\\nTe dan gorritos de papel para ponerte con el casco. ( Por higiene) Y después los desinfectan entre carrera y carrera.\\nNos a encantado , volveremos", "author": "Eli Pardo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE", "timestamp": "a year ago"} Nos a gustado mucho el sitio. Era la primera vez . Mi hijo de 8 se montó por primera vez y salió super contento . El trato muy bueno, simpáticas las dos mujeres . Y los chicos de pista que ponen los cascos y te asignan un karts también.\nTe dan gorritos de papel para ponerte con el casco. ( Por higiene) Y después los desinfectan entre carrera y carrera.\nNos a encantado , volveremos 4 2025-01-30 01:52:39.833374+00 Eli Pardo \N 1 2026-01-30 09:54:07.724442+00 2026-01-30 02:01:10.202016+00 1783 \N google ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE unknown {"text": "La primera vez y no la última. Ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de personas que estan allí que en todo momento te hacen sentir como en casa. Para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy estables y que se lo van a pasar muy bien. Un 10!!!!", "author": "Jose M Vides Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE", "timestamp": "2 years ago"} La primera vez y no la última. Ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de personas que estan allí que en todo momento te hacen sentir como en casa. Para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy estables y que se lo van a pasar muy bien. Un 10!!!! 5 2024-01-31 01:52:39.833374+00 Jose M Vides Garcia \N 1 2026-01-30 09:54:08.149224+00 2026-01-30 02:01:10.678718+00 1679 \N google ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE unknown {"text": "Ha sido un regalo sorpresa para mis hijos y han salido encantados! Buen circuito y divertida experiencia que seguro que repetiremos. Nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope.", "author": "Susana Fidalgo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE", "timestamp": "2 years ago"} Ha sido un regalo sorpresa para mis hijos y han salido encantados! Buen circuito y divertida experiencia que seguro que repetiremos. Nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope. 5 2024-01-31 01:52:39.833374+00 Susana Fidalgo \N 1 2026-01-30 09:54:07.804158+00 2026-01-30 02:01:10.286613+00 1684 \N google ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE unknown {"text": "Uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de competición. Las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y un ancho de pista considerable. Ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competitivo. Mi sitio favorito!", "author": "Miguel Garcia Gallego", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE", "timestamp": "4 years ago"} Uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de competición. Las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y un ancho de pista considerable. Ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competitivo. Mi sitio favorito! 5 2022-01-31 01:52:39.833374+00 Miguel Garcia Gallego \N 1 2026-01-30 09:54:07.820825+00 2026-01-30 02:01:10.302954+00 1689 \N google ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB unknown {"text": "Una actividad divertida para niños y mayores. Para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto.", "author": "Mónica Mao", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB", "timestamp": "4 years ago"} Una actividad divertida para niños y mayores. Para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto. 5 2022-01-31 01:52:39.833374+00 Mónica Mao \N 1 2026-01-30 09:54:07.839838+00 2026-01-30 02:01:10.321687+00 1690 \N google ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB unknown {"text": "Espectacular la atención al no ser de Murcia no sabíamos de que teníamos que reservar en este caso hicieron una excepción y no permitieron correr, así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien.", "author": "CAAIS CASTILLO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB", "timestamp": "a year ago"} Espectacular la atención al no ser de Murcia no sabíamos de que teníamos que reservar en este caso hicieron una excepción y no permitieron correr, así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien. 5 2025-01-30 01:52:39.833374+00 CAAIS CASTILLO \N 1 2026-01-30 09:54:07.843686+00 2026-01-30 02:01:10.325067+00 1774 \N google ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE unknown {"text": "Dit is een fantastische race track! Niet alleen het circuit is cool, het is er (zelfs in het weekend) betrekkelijk rustig, de service is snel, goed en vriendelijk en de drankjes ( inclusief sterke drank) zijn er spotgoedkoop.\\nEr zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving en voor volwassen van 200 tot 400cc ... ook eigen motors zijn welkom!", "author": "Sandra Ballet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE", "timestamp": "6 years ago"} Dit is een fantastische race track! Niet alleen het circuit is cool, het is er (zelfs in het weekend) betrekkelijk rustig, de service is snel, goed en vriendelijk en de drankjes ( inclusief sterke drank) zijn er spotgoedkoop.\nEr zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving en voor volwassen van 200 tot 400cc ... ook eigen motors zijn welkom! 5 2020-02-01 01:52:39.833374+00 Sandra Ballet \N 1 2026-01-30 09:54:08.120384+00 2026-01-30 02:01:10.647821+00 1698 \N google ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB unknown {"text": "Buen sitio para ir con los hijos y pasar una buena tarde. La pista es grande y amplia, es muy divertida. Tiene cafetería. Al finalizar puedes comprar fotos que te hacen.", "author": "Jaime M. Gomez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB", "timestamp": "5 years ago"} Buen sitio para ir con los hijos y pasar una buena tarde. La pista es grande y amplia, es muy divertida. Tiene cafetería. Al finalizar puedes comprar fotos que te hacen. 4 2021-01-31 01:52:39.833374+00 Jaime M. Gomez \N 1 2026-01-30 09:54:07.868387+00 2026-01-30 02:01:10.351376+00 1707 \N google ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE unknown {"text": "El lugar es espectacular, el circuito bellísimo, pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no existe la traccion, es como circular en cemento pulido, muchos parches baches hoyos y desniveles, las líneas de meta y pianos, deberían de ser anti deslizantes, porque resbala todo muchismo, me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para correr ni hacer tiempos, ni con un kart y con moto totalmente inviable, ojalá lo reasfalten y lo pinten como deberían y se convierta en uno de los mejores circuitos que tenemos, porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa en un circuito, La Pista", "author": "Nicky Lorent", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE", "timestamp": "10 months ago"} El lugar es espectacular, el circuito bellísimo, pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no existe la traccion, es como circular en cemento pulido, muchos parches baches hoyos y desniveles, las líneas de meta y pianos, deberían de ser anti deslizantes, porque resbala todo muchismo, me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para correr ni hacer tiempos, ni con un kart y con moto totalmente inviable, ojalá lo reasfalten y lo pinten como deberían y se convierta en uno de los mejores circuitos que tenemos, porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa en un circuito, La Pista 1 2025-04-05 00:52:39.833374+00 Nicky Lorent \N 1 2026-01-30 09:54:07.900354+00 2026-01-30 02:01:10.388578+00 1708 \N google Ci9DQUlRQUNvZENodHljRjlvT21GU1QwSmhNbkZ6TkRVM1lVa3lTbGRWYlhOcFRtYxAB unknown {"text": "Super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session", "author": "florent thonnon", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GU1QwSmhNbkZ6TkRVM1lVa3lTbGRWYlhOcFRtYxAB", "timestamp": "4 months ago"} Super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session 5 2025-10-02 00:52:39.833374+00 florent thonnon \N 1 2026-01-30 09:54:07.90455+00 2026-01-30 02:01:10.392385+00 1720 \N google ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB unknown {"text": "A great venue to enjoy karting with the family, or group of friends\\n\\nRoberta and her twin boys will make you VERY welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁\\n\\nUn gran lugar para disfrutar del karting con la familia o un grupo de amigos.\\n\\nRoberta y sus hijos gemelos te harán sentir MUY bienvenido 😎😎🌞🌞🌞🏎️🏁 🏎️🏁", "author": "Paul Baxter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB", "timestamp": "10 months ago"} A great venue to enjoy karting with the family, or group of friends\n\nRoberta and her twin boys will make you VERY welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁\n\nUn gran lugar para disfrutar del karting con la familia o un grupo de amigos.\n\nRoberta y sus hijos gemelos te harán sentir MUY bienvenido 😎😎🌞🌞🌞🏎️🏁 🏎️🏁 5 2025-04-05 00:52:39.833374+00 Paul Baxter \N 1 2026-01-30 09:54:07.947502+00 2026-01-30 02:01:10.44497+00 1721 \N google ChZDSUhNMG9nS0VJQ0FnSUREMW8tM09nEAE unknown {"text": "Mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectaculares.", "author": "Eva fernandez Jiménez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREMW8tM09nEAE", "timestamp": "a year ago"} Mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectaculares. 5 2025-01-30 01:52:39.833374+00 Eva fernandez Jiménez \N 1 2026-01-30 09:54:07.950946+00 2026-01-30 02:01:10.451715+00 1781 \N google ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE unknown {"text": "Los horarios son orientativos.\\n\\nEs la opción que tienes porque lógicamente no hay un circuito en cada esquina.\\n\\nCerciórate muy bien que está abierto para no darte el paseo.\\n\\nBusca teléfono y llama con anterioridad por que al menos fuera de temporada los horarios no son como marcan.", "author": "F.A", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE", "timestamp": "a year ago"} Los horarios son orientativos.\n\nEs la opción que tienes porque lógicamente no hay un circuito en cada esquina.\n\nCerciórate muy bien que está abierto para no darte el paseo.\n\nBusca teléfono y llama con anterioridad por que al menos fuera de temporada los horarios no son como marcan. 3 2025-01-30 01:52:39.833374+00 F.A \N 1 2026-01-30 09:54:08.142085+00 2026-01-30 02:01:10.670966+00 1725 \N google ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB unknown {"text": "No me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo carrera, tuvimos que dividirnos en dos grupos, unos con los 100 y otro grupo con 200-300, nosotros íbamos a pasar un rato, pero en carrera estaba el típico Alonso fracasado, pero que se piensa que va a batir no se que récord, circulando a toda leche y provocando que algunos tuviéramos que hacer trompos para no chocarnos, y los del circuito parece que les daba igual. Al iluminado lo vimos en la siguiente carrera que acabó Segundo y todo el rato mosqueado. Lo peor, los padres que pare un que lo animaban a hacer todo eso. Los coches iban bien aunque nunca sabes si les tocan la potencia vía radio. La dirección de los coches, muy muy dura.", "author": "Eduardo C López", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB", "timestamp": "a year ago"} No me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo carrera, tuvimos que dividirnos en dos grupos, unos con los 100 y otro grupo con 200-300, nosotros íbamos a pasar un rato, pero en carrera estaba el típico Alonso fracasado, pero que se piensa que va a batir no se que récord, circulando a toda leche y provocando que algunos tuviéramos que hacer trompos para no chocarnos, y los del circuito parece que les daba igual. Al iluminado lo vimos en la siguiente carrera que acabó Segundo y todo el rato mosqueado. Lo peor, los padres que pare un que lo animaban a hacer todo eso. Los coches iban bien aunque nunca sabes si les tocan la potencia vía radio. La dirección de los coches, muy muy dura. 3 2025-01-30 01:52:39.833374+00 Eduardo C López \N 1 2026-01-30 09:54:07.961436+00 2026-01-30 02:01:10.470101+00 1728 \N google ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB unknown {"text": "Circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curvas; 6 a derechas y 4 a izquierdas.\\n\\nLa flota de los F300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo que llevo llendo al circuito.\\n\\nSi tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en Verano pues da mucho gusto también.\\n\\nComo anécdota tienen un perro guardián llamado Pepo, muy majo.", "author": "Alejandro Amador Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB", "timestamp": "11 months ago"} Circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curvas; 6 a derechas y 4 a izquierdas.\n\nLa flota de los F300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo que llevo llendo al circuito.\n\nSi tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en Verano pues da mucho gusto también.\n\nComo anécdota tienen un perro guardián llamado Pepo, muy majo. 5 2025-03-06 01:52:39.833374+00 Alejandro Amador Martínez \N 1 2026-01-30 09:54:07.970933+00 2026-01-30 02:01:10.481938+00 1737 \N google ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB unknown {"text": "Hemos ido varias veces, los kart y el circuito como siempre bien.\\nLa única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo por el mismo dinero por ser el día del piloto hasta ahí ok.\\nPues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si nos van a sacar y uno de los chicos que estaba allí me responde de bastante malas maneras que estamos en temporada alta que que me creía, y le intenté explicar que en la web no pone nada de temporada alta ni baja y el hombre pasó de mí básicamente. y ni me avisaron de nada cuando compré los ticket. Por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo.", "author": "Juan José Cánovas Jiménez", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB", "timestamp": "a year ago"} Hemos ido varias veces, los kart y el circuito como siempre bien.\nLa única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo por el mismo dinero por ser el día del piloto hasta ahí ok.\nPues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si nos van a sacar y uno de los chicos que estaba allí me responde de bastante malas maneras que estamos en temporada alta que que me creía, y le intenté explicar que en la web no pone nada de temporada alta ni baja y el hombre pasó de mí básicamente. y ni me avisaron de nada cuando compré los ticket. Por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo. 2 2025-01-30 01:52:39.833374+00 Juan José Cánovas Jiménez \N 1 2026-01-30 09:54:08.005914+00 2026-01-30 02:01:10.518177+00 1740 \N google ChdDSUhNMG9nS0VJQ0FnSUNXZ3RXem93RRAB unknown {"text": "Estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente", "author": "Carmen Padilla", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXZ3RXem93RRAB", "timestamp": "3 years ago"} Estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente 4 2023-01-31 01:52:39.833374+00 Carmen Padilla \N 1 2026-01-30 09:54:08.012535+00 2026-01-30 02:01:10.526876+00 1741 \N google ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB unknown {"text": "He ido varias veces a rodar en los Karts de 200, 300 y 400. Siempre perfecto. Actualmente también ruedo con la pitbike y la pista siempre muy limpia. Además hay bar por lo que puedes quedarte a comer, almorzar...", "author": "Ángel Miralles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB", "timestamp": "a year ago"} He ido varias veces a rodar en los Karts de 200, 300 y 400. Siempre perfecto. Actualmente también ruedo con la pitbike y la pista siempre muy limpia. Además hay bar por lo que puedes quedarte a comer, almorzar... 5 2025-01-30 01:52:39.833374+00 Ángel Miralles \N 1 2026-01-30 09:54:08.01618+00 2026-01-30 02:01:10.529976+00 1752 \N google ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB unknown {"text": "Excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande y la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!! La dueña es encantadora y se preocupó de que no faltara detalle. Me sorprendió el precio de todo ya que pensaba que sería bastante más caro. Lo recomiendo sin duda", "author": "Jessica Amante Peluqueros", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB", "timestamp": "6 years ago"} Excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande y la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!! La dueña es encantadora y se preocupó de que no faltara detalle. Me sorprendió el precio de todo ya que pensaba que sería bastante más caro. Lo recomiendo sin duda 5 2020-02-01 01:52:39.833374+00 Jessica Amante Peluqueros \N 1 2026-01-30 09:54:08.051599+00 2026-01-30 02:01:10.568635+00 1760 \N google ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB unknown {"text": "Lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica, nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección, los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento, siempre puedes topar con alguna persona q se piensa q está en la F1 y no se da cuenta q hay más gente pero vamos, como en cualquier lado. Tanto los señoritas de la cafetería y atención general como los chicos de los karts fueron e hicieron la estancia súper agradable. Repetiremos seguro .", "author": "Jose Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB", "timestamp": "3 years ago"} Lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica, nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección, los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento, siempre puedes topar con alguna persona q se piensa q está en la F1 y no se da cuenta q hay más gente pero vamos, como en cualquier lado. Tanto los señoritas de la cafetería y atención general como los chicos de los karts fueron e hicieron la estancia súper agradable. Repetiremos seguro . 5 2023-01-31 01:52:39.833374+00 Jose Garcia \N 1 2026-01-30 09:54:08.077583+00 2026-01-30 02:01:10.596791+00 1761 \N google ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB unknown {"text": "Bien. Pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho menos tiempo. Nos sacaron d la pista a los 11 minutos. Pero para pasar un buen rato está bien. El cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el coche de mi hermano y después viendo q no podían arrancarlo le dieran otro coche, todo eso mientras esperábamos en la línea de salida sin movernos.\\nPor todo lo demás bien. La pista está en buenas condiciones y se agradece.", "author": "Rachel", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB", "timestamp": "7 years ago"} Bien. Pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho menos tiempo. Nos sacaron d la pista a los 11 minutos. Pero para pasar un buen rato está bien. El cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el coche de mi hermano y después viendo q no podían arrancarlo le dieran otro coche, todo eso mientras esperábamos en la línea de salida sin movernos.\nPor todo lo demás bien. La pista está en buenas condiciones y se agradece. 2 2019-02-01 01:52:39.833374+00 Rachel \N 1 2026-01-30 09:54:08.080483+00 2026-01-30 02:01:10.600478+00 1764 \N google ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB unknown {"text": "Nunca habia dejado reseña aquí y ya tocaba. Llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin. Ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como las chicas de la barra, la organizacion, el detalle y el mino. Vuestros asturianos favoritos recomiendan 100% vuestro negocio.", "author": "marcos p.f", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB", "timestamp": "2 years ago"} Nunca habia dejado reseña aquí y ya tocaba. Llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin. Ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como las chicas de la barra, la organizacion, el detalle y el mino. Vuestros asturianos favoritos recomiendan 100% vuestro negocio. 5 2024-01-31 01:52:39.833374+00 marcos p.f \N 1 2026-01-30 09:54:08.090039+00 2026-01-30 02:01:10.60811+00 1771 \N google ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE unknown {"text": "Esta muy divertido sirve para todas las edades. Y es un buen sitio para hacer carreras. El Vplaza para peques con adultos. Y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás volver a conducir.", "author": "FIORE MARTINEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE", "timestamp": "2 years ago"} Esta muy divertido sirve para todas las edades. Y es un buen sitio para hacer carreras. El Vplaza para peques con adultos. Y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás volver a conducir. 5 2024-01-31 01:52:39.833374+00 FIORE MARTINEZ \N 1 2026-01-30 09:54:08.111706+00 2026-01-30 02:01:10.63618+00 1789 \N google ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE unknown {"text": "Me encanto el trato recibido por el personal del circuito. Tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra.\\nLa zona de ocio amplia.\\nMuy buen sitio para ir solo, con amigos o con familia.", "author": "GONZALO BORREGUERO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE", "timestamp": "6 years ago"} Me encanto el trato recibido por el personal del circuito. Tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra.\nLa zona de ocio amplia.\nMuy buen sitio para ir solo, con amigos o con familia. 5 2020-02-01 01:52:39.833374+00 GONZALO BORREGUERO \N 1 2026-01-30 09:54:08.170424+00 2026-01-30 02:01:10.705089+00 1742 \N google ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE unknown {"text": "Es un sitio más que recomendable para ir y pasar un buen rato. El ambiente es bueno. Es entrar por la puerta y empiezas a sentir la adrenalina.\\n\\nHe perdido la cuenta de las veces que he ido y he disfrutado como un niño. He llevado, por primera vez, a varias personas de mi entorno y siempre quieren repetir. Los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos.\\n\\nLa única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de cinturón, para ir más seguro.\\nPor lo demás, todo excelente.", "author": "José Da Silva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE", "timestamp": "2 years ago"} Es un sitio más que recomendable para ir y pasar un buen rato. El ambiente es bueno. Es entrar por la puerta y empiezas a sentir la adrenalina.\n\nHe perdido la cuenta de las veces que he ido y he disfrutado como un niño. He llevado, por primera vez, a varias personas de mi entorno y siempre quieren repetir. Los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos.\n\nLa única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de cinturón, para ir más seguro.\nPor lo demás, todo excelente. 5 2024-01-31 01:52:39.833374+00 José Da Silva \N 1 2026-01-30 09:54:08.019512+00 2026-01-30 02:01:10.533847+00 1807 \N google ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB unknown {"text": "La verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos seguro de lo contentos que quedamos, igual el tiempo que duró se nos hizo muy corto. Volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo.", "author": "Sergio Montoya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB", "timestamp": "4 years ago"} La verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos seguro de lo contentos que quedamos, igual el tiempo que duró se nos hizo muy corto. Volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo. 5 2022-01-31 01:52:39.833374+00 Sergio Montoya \N 1 2026-01-30 09:54:08.224732+00 2026-01-30 02:01:10.768971+00 1828 \N google ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB unknown {"text": "Cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espera y luego tuvisteis a los crios esperando más de 2 horas. Además los biplazas los tenéis limitados para que gasten menos. Y presumis de 40 años de experiencia, y tanto...", "author": "Rafael Aragon Campillo", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB", "timestamp": "6 years ago"} Cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espera y luego tuvisteis a los crios esperando más de 2 horas. Además los biplazas los tenéis limitados para que gasten menos. Y presumis de 40 años de experiencia, y tanto... 1 2020-02-01 01:52:39.833374+00 Rafael Aragon Campillo \N 1 2026-01-30 09:54:08.281286+00 2026-01-30 02:01:10.854355+00 2072 \N google ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE unknown {"text": "Muy bien y entretenido como siempre.\\nUn poco lentos para cobrar pero bien", "author": "Andres Trajines", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE", "timestamp": "4 years ago"} Muy bien y entretenido como siempre.\nUn poco lentos para cobrar pero bien 4 2022-01-31 01:52:39.833374+00 Andres Trajines \N 1 2026-01-30 09:54:09.260364+00 2026-01-30 02:01:11.849607+00 1765 \N google ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE unknown {"text": "Cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y seguridad al tener amplias vías de escape. Excelente equipo electrónico que controla los tiempos a la perfección. Tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más intensa los Fascinantes F-400", "author": "Salva Paredes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE", "timestamp": "2 years ago"} Cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y seguridad al tener amplias vías de escape. Excelente equipo electrónico que controla los tiempos a la perfección. Tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más intensa los Fascinantes F-400 5 2024-01-31 01:52:39.833374+00 Salva Paredes \N 1 2026-01-30 09:54:08.094587+00 2026-01-30 02:01:10.612816+00 1847 \N google ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB unknown {"text": "Buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien! Muy cuidado todo, y Con buena tecnología de control de tiempos!! Para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! Recomendable!!!", "author": "Andres M M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB", "timestamp": "5 years ago"} Buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien! Muy cuidado todo, y Con buena tecnología de control de tiempos!! Para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! Recomendable!!! 5 2021-01-31 01:52:39.833374+00 Andres M M \N 1 2026-01-30 09:54:08.35598+00 2026-01-30 02:01:10.92364+00 1861 \N google ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE unknown {"text": "Esta bien, pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo pues dara dos vueltas solo, deberian haber dos modalidades, una por tiempo y otra por ejemplo 5,10,15 vueltas segun precio.", "author": "JUAN CARLOS", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE", "timestamp": "3 years ago"} Esta bien, pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo pues dara dos vueltas solo, deberian haber dos modalidades, una por tiempo y otra por ejemplo 5,10,15 vueltas segun precio. 3 2023-01-31 01:52:39.833374+00 JUAN CARLOS \N 1 2026-01-30 09:54:08.501311+00 2026-01-30 02:01:10.976515+00 1863 \N google ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE unknown {"text": "Siempre un diez, un trato perfecto para ir con niños o para ir a competir. La opción de ir con un grupo grande y hacer una carrera completa es la mejor. El circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curvas, aquí hay pianos y césped, que si apuras y te sales es completamente seguro. Tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada.", "author": "José Luis Mateo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE", "timestamp": "4 years ago"} Siempre un diez, un trato perfecto para ir con niños o para ir a competir. La opción de ir con un grupo grande y hacer una carrera completa es la mejor. El circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curvas, aquí hay pianos y césped, que si apuras y te sales es completamente seguro. Tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada. 5 2022-01-31 01:52:39.833374+00 José Luis Mateo \N 1 2026-01-30 09:54:08.51399+00 2026-01-30 02:01:10.983358+00 1871 \N google ChZDSUhNMG9nS0VJQ0FnTURBNGVmN0tnEAE unknown {"text": "Nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de nuestra cita reservada", "author": "Miguel Ángel", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBNGVmN0tnEAE", "timestamp": "11 months ago"} Nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de nuestra cita reservada 1 2025-03-06 01:52:39.833374+00 Miguel Ángel \N 1 2026-01-30 09:54:08.536656+00 2026-01-30 02:01:11.005885+00 1891 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB unknown {"text": "Es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona, súper divertido y rápido pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas cosas. 5 estrellas se queda corto.", "author": "Francisco Manuel Castejón (FranCastejón)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB", "timestamp": "6 years ago"} Es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona, súper divertido y rápido pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas cosas. 5 estrellas se queda corto. 5 2020-02-01 01:52:39.833374+00 Francisco Manuel Castejón (FranCastejón) \N 1 2026-01-30 09:54:08.596279+00 2026-01-30 02:01:11.071195+00 1788 \N google ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE unknown {"text": "Wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis. Omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zaten, opteerden we voor de F200 karts. Eenmaal vertrokken zagen we dat er ook ook zwaardere karts in onze sessie zaten welke niet enkel sneller maar ook zeer agressief reden. We werden meerdere keren van de baan gereden en ook verbaal uitgescholden. Door de organisatie werd hier niets op gezegd. Gevolg was enkele blauwe plekken, gekneusde ribben en tieners.die over stuur waren. Toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze ons niet verstonden. Ons zien ze hier nooit meer terug .", "author": "Tim Bruyninckx", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE", "timestamp": "3 years ago"} Wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis. Omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zaten, opteerden we voor de F200 karts. Eenmaal vertrokken zagen we dat er ook ook zwaardere karts in onze sessie zaten welke niet enkel sneller maar ook zeer agressief reden. We werden meerdere keren van de baan gereden en ook verbaal uitgescholden. Door de organisatie werd hier niets op gezegd. Gevolg was enkele blauwe plekken, gekneusde ribben en tieners.die over stuur waren. Toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze ons niet verstonden. Ons zien ze hier nooit meer terug . 1 2023-01-31 01:52:39.833374+00 Tim Bruyninckx \N 1 2026-01-30 09:54:08.167322+00 2026-01-30 02:01:10.700484+00 1903 \N google ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE unknown {"text": "Enhorabuena por vuestro Karting, sois los mejores de Murcia con diferencia, cada día vais a mejor los karts super cuidados y super rápidos, los mejores que he probado y las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de dentro del bar el recorrido virtual es increíble, volveremos pronto!", "author": "Karima 14", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE", "timestamp": "Edited a year ago"} Enhorabuena por vuestro Karting, sois los mejores de Murcia con diferencia, cada día vais a mejor los karts super cuidados y super rápidos, los mejores que he probado y las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de dentro del bar el recorrido virtual es increíble, volveremos pronto! 5 2026-01-30 01:52:39.833374+00 Karima 14 \N 1 2026-01-30 09:54:08.637542+00 2026-01-30 02:01:11.131693+00 1913 \N google ChZDSUhNMG9nS0VJQ0FnSURRMGN5MWVnEAE unknown {"text": "Un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los mejores karts que he probado, tienen un buen mantenimiento, le doy la enhorabuena a los mecánicos y al personal de pista, lo pasé genial, volveremos pronto", "author": "hugo hernández sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRMGN5MWVnEAE", "timestamp": "Edited 6 years ago"} Un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los mejores karts que he probado, tienen un buen mantenimiento, le doy la enhorabuena a los mecánicos y al personal de pista, lo pasé genial, volveremos pronto 5 2026-01-30 01:52:39.833374+00 hugo hernández sánchez \N 1 2026-01-30 09:54:08.671093+00 2026-01-30 02:01:11.183365+00 1925 \N google ChZDSUhNMG9nS0VJQ0FnSURNMFBfRk93EAE unknown {"text": "Esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. Echamos una tarde bastante divertida. Los karts estan bien y el circuito es aceptable. Volvería a ir.", "author": "Carlos Fernández Martínez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNMFBfRk93EAE", "timestamp": "6 years ago"} Esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. Echamos una tarde bastante divertida. Los karts estan bien y el circuito es aceptable. Volvería a ir. 4 2020-02-01 01:52:39.833374+00 Carlos Fernández Martínez \N 1 2026-01-30 09:54:08.714893+00 2026-01-30 02:01:11.243193+00 1939 \N google ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB unknown {"text": "Simplemente espectacular. Buen circuito,, aunque sé hace corto el tiempo por lo divertido que es. Ya llevo dos veranos seguidos y repetiré", "author": "Luis Valentin López Llamas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB", "timestamp": "8 years ago"} Simplemente espectacular. Buen circuito,, aunque sé hace corto el tiempo por lo divertido que es. Ya llevo dos veranos seguidos y repetiré 5 2018-02-01 01:52:39.833374+00 Luis Valentin López Llamas \N 1 2026-01-30 09:54:08.764201+00 2026-01-30 02:01:11.289926+00 2331 \N google ChdDSUhNMG9nS0VJQ0FnSURld1BHcGpnRRAB unknown {"text": "Exelente atención. Son los mejores!!", "author": "Javier Imbaud", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURld1BHcGpnRRAB", "timestamp": "3 years ago"} Exelente atención. Son los mejores!! 5 2023-01-31 01:52:39.833374+00 Javier Imbaud \N 1 2026-01-30 09:54:10.134465+00 2026-01-30 02:01:13.003073+00 1965 \N google ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE unknown {"text": "Buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tándem para or con niños.\\nCarreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posiciones de los karts.", "author": "Eduardo Barreiro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE", "timestamp": "5 years ago"} Buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tándem para or con niños.\nCarreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posiciones de los karts. 5 2021-01-31 01:52:39.833374+00 Eduardo Barreiro \N 1 2026-01-30 09:54:08.857844+00 2026-01-30 02:01:11.37839+00 1981 \N google ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB unknown {"text": "Inmejorable, las instalaciones y los equipos en perfecto estado y los empleados muy amables. Gran ambiente de carreras. 10/10.", "author": "biafitication", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB", "timestamp": "7 years ago"} Inmejorable, las instalaciones y los equipos en perfecto estado y los empleados muy amables. Gran ambiente de carreras. 10/10. 5 2019-02-01 01:52:39.833374+00 biafitication \N 1 2026-01-30 09:54:08.909003+00 2026-01-30 02:01:11.53436+00 1982 \N google ChdDSUhNMG9nS0VJQ0FnSUNxMk9IUmhnRRAB unknown {"text": "Me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vuelva repito seguro lo recomiendo al 100 x 100", "author": "Alba Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxMk9IUmhnRRAB", "timestamp": "4 years ago"} Me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vuelva repito seguro lo recomiendo al 100 x 100 5 2022-01-31 01:52:39.833374+00 Alba Garcia \N 1 2026-01-30 09:54:08.923918+00 2026-01-30 02:01:11.542443+00 1995 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdnZQUTlBRRAB unknown {"text": "Muy buena experiencia, los Kars van muy bien y el trazado-asfalto una pasada. Se pasa una buena tarde de risas con los amigos en un ambiente muy familiar.", "author": "Abel G.Zaragoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnZQUTlBRRAB", "timestamp": "6 years ago"} Muy buena experiencia, los Kars van muy bien y el trazado-asfalto una pasada. Se pasa una buena tarde de risas con los amigos en un ambiente muy familiar. 5 2020-02-01 01:52:39.833374+00 Abel G.Zaragoza \N 1 2026-01-30 09:54:08.986915+00 2026-01-30 02:01:11.582928+00 2010 \N google ChdDSUhNMG9nS0VJQ0FnSUM2LUw3OW5BRRAB unknown {"text": "Ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. Podio, contador de vueltas, pole, medallas y comida. Un plan diferente Enel mar menor.", "author": "JuanJhon Gonzalez Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2LUw3OW5BRRAB", "timestamp": "4 years ago"} Ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. Podio, contador de vueltas, pole, medallas y comida. Un plan diferente Enel mar menor. 5 2022-01-31 01:52:39.833374+00 JuanJhon Gonzalez Lopez \N 1 2026-01-30 09:54:09.044443+00 2026-01-30 02:01:11.63856+00 2026 \N google ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE unknown {"text": "El señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones. El resto todo bien", "author": "Iván Díaz", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE", "timestamp": "3 years ago"} El señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones. El resto todo bien 3 2023-01-31 01:52:39.833374+00 Iván Díaz \N 1 2026-01-30 09:54:09.104002+00 2026-01-30 02:01:11.695901+00 2028 \N google ChZDSUhNMG9nS0VJQ0FnSURheE9DMlNnEAE unknown {"text": "Tienen un trato magnífico, siguen todas las precauciones respecto a COVID 19, divertido, limpio, trato inmejorable, regreso con toda seguridad.", "author": "Carol Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURheE9DMlNnEAE", "timestamp": "4 years ago"} Tienen un trato magnífico, siguen todas las precauciones respecto a COVID 19, divertido, limpio, trato inmejorable, regreso con toda seguridad. 5 2022-01-31 01:52:39.833374+00 Carol Gonzalez \N 1 2026-01-30 09:54:09.110343+00 2026-01-30 02:01:11.702753+00 2041 \N google ChZDSUhNMG9nS0VJQ0FnSURKLWMyYVJREAE unknown {"text": "Para grupos es genial,más de 10 personas,muy buen precio.", "author": "alfredo barrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKLWMyYVJREAE", "timestamp": "2 years ago"} Para grupos es genial,más de 10 personas,muy buen precio. 5 2024-01-31 01:52:39.833374+00 alfredo barrero \N 1 2026-01-30 09:54:09.159996+00 2026-01-30 02:01:11.745592+00 2057 \N google ChdDSUhNMG9nS0VJQ0FnSUNheThDUTlRRRAB unknown {"text": "buen trazado de circuito y oersonal amable, buen trato con el cliente. Excelente servicio", "author": "Dani Barceló", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheThDUTlRRRAB", "timestamp": "4 years ago"} buen trazado de circuito y oersonal amable, buen trato con el cliente. Excelente servicio 5 2022-01-31 01:52:39.833374+00 Dani Barceló \N 1 2026-01-30 09:54:09.220989+00 2026-01-30 02:01:11.799347+00 2065 \N google ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE unknown {"text": "Супер, карты свежие, трасса крутая, в среду акция двойное время, одни из лучших картингов где я был.", "author": "Игорь Тарасов", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE", "timestamp": "5 years ago"} Супер, карты свежие, трасса крутая, в среду акция двойное время, одни из лучших картингов где я был. 5 2021-01-31 01:52:39.833374+00 Игорь Тарасов \N 1 2026-01-30 09:54:09.242753+00 2026-01-30 02:01:11.827308+00 2073 \N google ChZDSUhNMG9nS0VJQ0FnSURhbnFLWVlBEAE unknown {"text": "Bien organizado. No está muy masificado y la pista está en buenas condiciones", "author": "Arturo Lopez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhbnFLWVlBEAE", "timestamp": "4 years ago"} Bien organizado. No está muy masificado y la pista está en buenas condiciones 4 2022-01-31 01:52:39.833374+00 Arturo Lopez \N 1 2026-01-30 09:54:09.262844+00 2026-01-30 02:01:11.852839+00 2105 \N google ChZDSUhNMG9nS0VJQ0FnSURScmN1WUhnEAE unknown {"text": "Muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores.", "author": "G. E. R ER", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURScmN1WUhnEAE", "timestamp": "2 years ago"} Muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores. 5 2024-01-31 01:52:39.833374+00 G. E. R ER \N 1 2026-01-30 09:54:09.352867+00 2026-01-30 02:01:11.970964+00 2122 \N google ChZDSUhNMG9nS0VJQ0FnSUNtM2VtZ1NREAE unknown {"text": "Endroit sympathique\\nPas trop chère.bon rapport, qualité prix.", "author": "Didier dic", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtM2VtZ1NREAE", "timestamp": "4 years ago"} Endroit sympathique\nPas trop chère.bon rapport, qualité prix. 4 2022-01-31 01:52:39.833374+00 Didier dic \N 1 2026-01-30 09:54:09.394276+00 2026-01-30 02:01:12.021293+00 2140 \N google ChdDSUhNMG9nS0VJQ0FnSUNoOFltN21BRRAB unknown {"text": "Estuve con mis hijos. Todo muy divertido.", "author": "José Luis Menchón Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoOFltN21BRRAB", "timestamp": "2 years ago"} Estuve con mis hijos. Todo muy divertido. 5 2024-01-31 01:52:39.833374+00 José Luis Menchón Sánchez \N 1 2026-01-30 09:54:09.446222+00 2026-01-30 02:01:12.095077+00 2150 \N google ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB unknown {"text": "Buen trazado pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables", "author": "Samuel Rabadán García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB", "timestamp": "8 years ago"} Buen trazado pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables 4 2018-02-01 01:52:39.833374+00 Samuel Rabadán García \N 1 2026-01-30 09:54:09.48162+00 2026-01-30 02:01:12.137539+00 2158 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdnB1TnBRRRAB unknown {"text": "Muy buen ambiente para disfrutar el dia con amigos.", "author": "ENCARNI PONCE SANCHEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnB1TnBRRRAB", "timestamp": "6 years ago"} Muy buen ambiente para disfrutar el dia con amigos. 5 2020-02-01 01:52:39.833374+00 ENCARNI PONCE SANCHEZ \N 1 2026-01-30 09:54:09.505452+00 2026-01-30 02:01:12.169712+00 2159 \N google ChZDSUhNMG9nS0VJQ0FnSUNLcTQ3X1R3EAE unknown {"text": "Buen circuito, buena ubicación y excelente atención por su personal.", "author": "Adoracion Serrano Diaz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLcTQ3X1R3EAE", "timestamp": "4 years ago"} Buen circuito, buena ubicación y excelente atención por su personal. 4 2022-01-31 01:52:39.833374+00 Adoracion Serrano Diaz \N 1 2026-01-30 09:54:09.507491+00 2026-01-30 02:01:12.172802+00 2177 \N google ChZDSUhNMG9nS0VJQ0FnSUNhaVlDLWJnEAE unknown {"text": "Los críos se lo pasaron genial\\nEl trato es muy bueno\\n👍👍👍", "author": "RUTHY MT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaVlDLWJnEAE", "timestamp": "4 years ago"} Los críos se lo pasaron genial\nEl trato es muy bueno\n👍👍👍 5 2022-01-31 01:52:39.833374+00 RUTHY MT \N 1 2026-01-30 09:54:09.557901+00 2026-01-30 02:01:12.241017+00 2195 \N google ChdDSUhNMG9nS0VJQ0FnSURINUlDVXFRRRAB unknown {"text": "Preis Leistung stimmt perfekt", "author": "Philipp Pires Marques", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINUlDVXFRRRAB", "timestamp": "a year ago"} Preis Leistung stimmt perfekt 5 2025-01-30 01:52:39.833374+00 Philipp Pires Marques \N 1 2026-01-30 09:54:09.614567+00 2026-01-30 02:01:12.301529+00 2196 \N google ChdDSUhNMG9nS0VJQ0FnSURTd1p5cW5RRRAB unknown {"text": "Siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de crisis, enhorabuena!!!", "author": "Antonio Oton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTd1p5cW5RRRAB", "timestamp": "5 years ago"} Siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de crisis, enhorabuena!!! 5 2021-01-31 01:52:39.833374+00 Antonio Oton \N 1 2026-01-30 09:54:09.617439+00 2026-01-30 02:01:12.305166+00 2213 \N google ChdDSUhNMG9nS0VJQ0FnSURndDh2ZGpRRRAB unknown {"text": "Muy buen circuito y muy buena atención", "author": "Javi Juaneda Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndDh2ZGpRRRAB", "timestamp": "8 years ago"} Muy buen circuito y muy buena atención 5 2018-02-01 01:52:39.833374+00 Javi Juaneda Garcia \N 1 2026-01-30 09:54:09.674217+00 2026-01-30 02:01:12.465512+00 2232 \N google ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE unknown {"text": "Mucha variedad de karts,lo malo que mezclan karts de todas las cilindradas", "author": "jota Candenas", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE", "timestamp": "4 years ago"} Mucha variedad de karts,lo malo que mezclan karts de todas las cilindradas 3 2022-01-31 01:52:39.833374+00 jota Candenas \N 1 2026-01-30 09:54:09.740116+00 2026-01-30 02:01:12.531834+00 2251 \N google ChdDSUhNMG9nS0VJQ0FnSUNVN3ByVGtBRRAB unknown {"text": "Buenísimo un trazado espectacular. Quedé primero", "author": "Ricardo Martos Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVN3ByVGtBRRAB", "timestamp": "6 years ago"} Buenísimo un trazado espectacular. Quedé primero 5 2020-02-01 01:52:39.833374+00 Ricardo Martos Lopez \N 1 2026-01-30 09:54:09.810342+00 2026-01-30 02:01:12.610552+00 2270 \N google ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE unknown {"text": "Buenos precios y buena atención.", "author": "Miriam Losada Del Olmo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE", "timestamp": "4 years ago"} Buenos precios y buena atención. 5 2022-01-31 01:52:39.833374+00 Miriam Losada Del Olmo \N 1 2026-01-30 09:54:09.888919+00 2026-01-30 02:01:12.683654+00 2290 \N google ChdDSUhNMG9nS0VJQ0FnSUNNdm9QLThnRRAB unknown {"text": "Buena atención del personal y muy buenas instalaciones.", "author": "Enrique Mínguez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdm9QLThnRRAB", "timestamp": "6 years ago"} Buena atención del personal y muy buenas instalaciones. 5 2020-02-01 01:52:39.833374+00 Enrique Mínguez Hernandez \N 1 2026-01-30 09:54:09.962725+00 2026-01-30 02:01:12.783236+00 2310 \N google ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB unknown {"text": "Barato, divertido y en general una buena opción", "author": "Javi Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB", "timestamp": "Edited 5 years ago"} Barato, divertido y en general una buena opción 5 2026-01-30 01:52:39.833374+00 Javi Garcia \N 1 2026-01-30 09:54:10.048566+00 2026-01-30 02:01:12.871232+00 1883 \N google ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE unknown {"text": "Sin duda alguna, el mejor circuito para alquilar un Kart de 400cc, circuito divertido y técnico, y además el kart monta motor Subaru de competición y ruedas a la altura para ir muy fino. Sin duda volveré.", "author": "Tomás García Muñoz (Tommy_147)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE", "timestamp": "3 years ago"} Sin duda alguna, el mejor circuito para alquilar un Kart de 400cc, circuito divertido y técnico, y además el kart monta motor Subaru de competición y ruedas a la altura para ir muy fino. Sin duda volveré. 5 2023-01-31 01:52:39.833374+00 Tomás García Muñoz (Tommy_147) \N 1 2026-01-30 09:54:08.574783+00 2026-01-30 02:01:11.04814+00 1904 \N google ChdDSUhNMG9nS0VJQ0FnSURwcDZPMDNBRRAB unknown {"text": "Buen circuito, buen plan para despejarse 🏎️", "author": "Rafa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcDZPMDNBRRAB", "timestamp": "2 years ago"} Buen circuito, buen plan para despejarse 🏎️ 5 2024-01-31 01:52:39.833374+00 Rafa \N 1 2026-01-30 09:54:08.641072+00 2026-01-30 02:01:11.136355+00 1914 \N google ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB unknown {"text": "He estado allí varias veces y siempre nos han atendido super bien. Los precios son muy asequibles. Lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor.", "author": "Brisa Celeste", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB", "timestamp": "5 years ago"} He estado allí varias veces y siempre nos han atendido super bien. Los precios son muy asequibles. Lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor. 5 2021-01-31 01:52:39.833374+00 Brisa Celeste \N 1 2026-01-30 09:54:08.674117+00 2026-01-30 02:01:11.190033+00 1917 \N google ChZDSUhNMG9nS0VJQ0FnSUM2cU92dFZ3EAE unknown {"text": "Excelente infraestructura y lugar idóneo. Hacia tiempo que no acudía y ya seas ajeno o aficionado pasarás un buen rato y sentirás la competencia de una buena carrera de karts. Para ir en grupo o simplemente tomarte algo y disfrutar de la carrera.", "author": "J. Alba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cU92dFZ3EAE", "timestamp": "4 years ago"} Excelente infraestructura y lugar idóneo. Hacia tiempo que no acudía y ya seas ajeno o aficionado pasarás un buen rato y sentirás la competencia de una buena carrera de karts. Para ir en grupo o simplemente tomarte algo y disfrutar de la carrera. 5 2022-01-31 01:52:39.833374+00 J. Alba \N 1 2026-01-30 09:54:08.685674+00 2026-01-30 02:01:11.202491+00 1926 \N google ChdDSUhNMG9nS0VJQ0FnTUNnOUpyWjR3RRAB unknown {"text": "Increíble experiencia, y un muy buen trato.\\nVolveré más veces.", "author": "raul escudero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnOUpyWjR3RRAB", "timestamp": "11 months ago"} Increíble experiencia, y un muy buen trato.\nVolveré más veces. 5 2025-03-06 01:52:39.833374+00 raul escudero \N 1 2026-01-30 09:54:08.717481+00 2026-01-30 02:01:11.246954+00 2088 \N google ChZDSUhNMG9nS0VJQ0FnSUQ2bllQTkRBEAE unknown {"text": "Con la Manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y cascos.", "author": "luis carlos Alzate", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2bllQTkRBEAE", "timestamp": "4 years ago"} Con la Manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y cascos. 5 2022-01-31 01:52:39.833374+00 luis carlos Alzate \N 1 2026-01-30 09:54:09.29817+00 2026-01-30 02:01:11.903593+00 2089 \N google ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB unknown {"text": "Buen sitio, repetiría. Cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios.", "author": "TopFreak", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB", "timestamp": "4 years ago"} Buen sitio, repetiría. Cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios. 5 2022-01-31 01:52:39.833374+00 TopFreak \N 1 2026-01-30 09:54:09.300782+00 2026-01-30 02:01:11.907403+00 2351 \N google ChdDSUhNMG9nS0VJQ0FnSURDbzVfc2tBRRAB unknown {"text": "Классная траса и смотровая площадка", "author": "Dmytro Khatonka", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbzVfc2tBRRAB", "timestamp": "5 years ago"} Классная траса и смотровая площадка 5 2021-01-31 01:52:39.833374+00 Dmytro Khatonka \N 1 2026-01-30 09:54:10.207082+00 2026-01-30 02:01:13.092938+00 2353 \N google ChdDSUhNMG9nS0VJQ0FnSUNhMktENjR3RRAB unknown {"text": "Circuito grande, largo y amplio.", "author": "Pablo Sanchez Tarancon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhMktENjR3RRAB", "timestamp": "4 years ago"} Circuito grande, largo y amplio. 5 2022-01-31 01:52:39.833374+00 Pablo Sanchez Tarancon \N 1 2026-01-30 09:54:10.214146+00 2026-01-30 02:01:13.100344+00 2376 \N google ChZDSUhNMG9nS0VJQ0FnSUR1dVlYMUtnEAE unknown {"text": "Circuito, instalaciones y profesionales de 10.", "author": "Profe Iván", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dVlYMUtnEAE", "timestamp": "3 years ago"} Circuito, instalaciones y profesionales de 10. 5 2023-01-31 01:52:39.833374+00 Profe Iván \N 1 2026-01-30 09:54:10.346704+00 2026-01-30 02:01:13.222234+00 2398 \N google ChdDSUhNMG9nS0VJQ0FnSUNhemJYNHBRRRAB unknown {"text": "Los kars deberían de restaurarlos .", "author": "Katiaa Corcuera", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhemJYNHBRRRAB", "timestamp": "4 years ago"} Los kars deberían de restaurarlos . 3 2022-01-31 01:52:39.833374+00 Katiaa Corcuera \N 1 2026-01-30 09:54:10.493923+00 2026-01-30 02:01:13.369382+00 2423 \N google ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB unknown {"text": "Los niños disfrutaron", "author": "Gonzalo Montañez Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB", "timestamp": "Edited a year ago"} Los niños disfrutaron 5 2026-01-30 01:52:39.833374+00 Gonzalo Montañez Sánchez \N 1 2026-01-30 09:54:10.655455+00 2026-01-30 02:01:13.533948+00 1906 \N google ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB unknown {"text": "Lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómodo y nada peligroso personal atento y gran variedad de coches,yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y muy buen ambiente que se agradece gracias y seguir asi", "author": "ignacio ruano mateo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB", "timestamp": "4 years ago"} Lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómodo y nada peligroso personal atento y gran variedad de coches,yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y muy buen ambiente que se agradece gracias y seguir asi 5 2022-01-31 01:52:39.833374+00 ignacio ruano mateo \N 1 2026-01-30 09:54:08.647209+00 2026-01-30 02:01:11.145467+00 1927 \N google ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE unknown {"text": "Bajo mi punto de vista esta muy bien. Pero el servicio en el circuito no es honesto, deberían ser más amables y creo que en la carrera los del F200 no deberían estar con los F400", "author": "Martina Muñoz", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE", "timestamp": "4 years ago"} Bajo mi punto de vista esta muy bien. Pero el servicio en el circuito no es honesto, deberían ser más amables y creo que en la carrera los del F200 no deberían estar con los F400 3 2022-01-31 01:52:39.833374+00 Martina Muñoz \N 1 2026-01-30 09:54:08.721426+00 2026-01-30 02:01:11.250298+00 1930 \N google ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE unknown {"text": "El mejor karting de la zona del mar menor. La pista está en muy buenas condiciones y los karts muy bien cuidados. Lo tienen todo muy bien organizado y siempre están pendientes de la seguridad. Puedes ir con tu kart o moto.", "author": "Sergio Lzn (sergio351)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE", "timestamp": "3 years ago"} El mejor karting de la zona del mar menor. La pista está en muy buenas condiciones y los karts muy bien cuidados. Lo tienen todo muy bien organizado y siempre están pendientes de la seguridad. Puedes ir con tu kart o moto. 5 2023-01-31 01:52:39.833374+00 Sergio Lzn (sergio351) \N 1 2026-01-30 09:54:08.730373+00 2026-01-30 02:01:11.259873+00 1940 \N google ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB unknown {"text": "Una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. Tienen muy buenos frenos. Repitiria sin dudarlo", "author": "Almudena Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB", "timestamp": "5 years ago"} Una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. Tienen muy buenos frenos. Repitiria sin dudarlo 5 2021-01-31 01:52:39.833374+00 Almudena Perez \N 1 2026-01-30 09:54:08.766667+00 2026-01-30 02:01:11.292906+00 1944 \N google ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB unknown {"text": "Muy divertido. Amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). Hierba. Bien organizados. Hay Karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años para que te dejen subir. Hablan idiomas.\\nHay ranking de vuelta rápida automático por el número del kart en una pantalla para cada carrera. También lo pueden imprimir. Procuran no mezclar tipos de karts. No atascan la pista con demasiados coches a la vez.", "author": "Antonio Sanz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB", "timestamp": "8 years ago"} Muy divertido. Amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). Hierba. Bien organizados. Hay Karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años para que te dejen subir. Hablan idiomas.\nHay ranking de vuelta rápida automático por el número del kart en una pantalla para cada carrera. También lo pueden imprimir. Procuran no mezclar tipos de karts. No atascan la pista con demasiados coches a la vez. 5 2018-02-01 01:52:39.833374+00 Antonio Sanz \N 1 2026-01-30 09:54:08.781251+00 2026-01-30 02:01:11.305041+00 1951 \N google ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB unknown {"text": "es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy encantado i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros", "author": "Radu Antonio Trif", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB", "timestamp": "10 years ago"} es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy encantado i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros 5 2016-02-02 01:52:39.833374+00 Radu Antonio Trif \N 1 2026-01-30 09:54:08.803551+00 2026-01-30 02:01:11.328115+00 1966 \N google ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE unknown {"text": "El circuito es muy bueno y el servicio también pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida", "author": "Alex Mckee", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE", "timestamp": "2 years ago"} El circuito es muy bueno y el servicio también pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida 4 2024-01-31 01:52:39.833374+00 Alex Mckee \N 1 2026-01-30 09:54:08.859848+00 2026-01-30 02:01:11.382549+00 1969 \N google ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB unknown {"text": "Buen circuito, bien cuidado y gente excepcional, los karts están muy bien cuidados y muy competitivos, es ideal para pasar un día genial con amigos y pasarlo en grande.\\nRepetiría sin duda alguna 💪", "author": "Antonio Madrid hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB", "timestamp": "Edited 4 years ago"} Buen circuito, bien cuidado y gente excepcional, los karts están muy bien cuidados y muy competitivos, es ideal para pasar un día genial con amigos y pasarlo en grande.\nRepetiría sin duda alguna 💪 5 2026-01-30 01:52:39.833374+00 Antonio Madrid hernandez \N 1 2026-01-30 09:54:08.873771+00 2026-01-30 02:01:11.398419+00 \. -- -- Data for Name: urt_categories; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.urt_categories (code, domain_code, name, description) FROM stdin; O1 O Core Product/Service \N O2 O Product Features \N O3 O Variety & Selection \N O4 O Customization \N P1 P Value Perception \N P2 P Pricing Structure \N P3 P Promotions & Deals \N P4 P Payment Process \N J1 J Wait Times \N J2 J Booking & Reservations \N J3 J Navigation & Convenience \N J4 J Accessibility \N E1 E Physical Environment \N E2 E Ambiance & Atmosphere \N E3 E Cleanliness \N E4 E Digital Experience \N A1 A Friendliness \N A2 A Helpfulness \N A3 A Professionalism \N A4 A Knowledge & Expertise \N V1 V Brand Identity \N V2 V Communication \N V3 V Marketing \N V4 V Transparency \N R1 R Loyalty \N R2 R Trust \N R3 R Consistency \N R4 R Personalization \N \. -- -- Data for Name: urt_domains; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.urt_domains (code, name, description, default_owner) FROM stdin; O Offering Product/service quality, features, variety Operations / Product J Journey Timing, process, convenience, accessibility Operations / Process E Environment Physical space, ambiance, cleanliness, digital UX Facilities / IT R Relationship Loyalty, trust, consistency, personalization Leadership / CX P People Staff warmth, respect, patience, knowledge, communication HR / Training A Access Hours, availability, booking, location, parking, accessibility Compliance / Design V Value Pricing, costs, hidden fees, value for money, billing Finance / Pricing \. -- -- Data for Name: urt_subcodes; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.urt_subcodes (code, category_code, domain_code, name, definition, positive_example, negative_example, solution, marketing_angle, solution_complexity) FROM stdin; J1.04 J1 J Punctuality Meeting scheduled times Always on time Two hours late \N \N medium J1.05 J1 J Pacing Appropriate speed (not rushed/dragged) Perfect pace throughout Felt rushed through everything \N \N medium J2.04 J2 J Booking Availability Slots/capacity when needed Always available slots Fully booked for weeks \N \N medium J2.05 J2 J Inventory Stock availability Always in stock Out of stock constantly \N \N medium J3.04 J3 J Data Accuracy Correct info in systems All details correct Wrong info in my account \N \N medium J3.05 J3 J Integration Systems work together Seamless between channels Info doesn't sync \N \N medium J4.04 J4 J Escalation Getting to right person Quickly got to manager Endless transfers Verify fixes before closing. Follow up on resolutions. Complete solutions, not band-aids. medium J4.05 J4 J Closure Issue fully resolved Problem completely solved Issue still not fixed \N \N medium A1.04 A1 A Wayfinding Finding destination Easy to find Got lost trying to find it \N \N medium A1.05 A1 A Physical Accessibility Disability accommodations Wheelchair accessible No ramps or elevators \N \N medium A2.04 A2 A Language Accessibility Multilingual support Available in my language No translation available \N \N medium A2.05 A2 A Hours of Operation Service availability times Open when needed Terrible hours \N \N medium A3.04 A3 A Documentation Clarity Clear instructions Easy to understand docs Confusing instructions \N \N medium A3.05 A3 A Support Accessibility Getting help when needed Easy to reach support Impossible to get help \N \N medium A4.04 A4 A Payment Flexibility Multiple payment options Many payment options Only accepts cash \N \N medium A4.05 A4 A Refund Accessibility Getting money back Easy refund process Impossible to get refund \N \N medium E1.04 E1 E Ambiance Atmosphere and vibe Great atmosphere Depressing environment Upgrade equipment. Implement replacement schedule. Modern, state-of-the-art equipment. complex E1.05 E1 E Comfort Physical comfort Very comfortable Uncomfortable seating \N \N medium E2.04 E2 E Visual Design Aesthetics of interface Beautiful design Ugly interface Simplify navigation. Reduce menu depth. Find what you need in seconds. medium E2.05 E2 E Mobile Experience Mobile usability Great mobile app Terrible mobile site \N \N medium E3.04 E3 E Health Safety Health precautions Very clean and safe Unsanitary conditions \N \N medium E3.05 E3 E Cyber Security Digital security Secure platform Got hacked \N \N medium E4.04 E4 E Social Responsibility Ethical practices Ethical company Exploitative practices \N \N medium E4.05 E4 E Community Impact Local community effect Supports local community Hurts local businesses \N \N medium V1.04 V1 V Price Transparency Clear pricing Clear pricing upfront Hidden costs everywhere \N \N medium V1.05 V1 V Price Stability Consistent pricing Same price always Prices keep changing \N \N medium V2.05 V2 V Competitive Value Compared to alternatives Best value around Better deals elsewhere \N \N medium V3.04 V3 V Promotion Clarity Clear offer terms Clear promotion rules Misleading promotions \N \N medium V3.05 V3 V Reward Redemption Using points/rewards Easy to redeem rewards Hard to use points \N \N medium V4.04 V4 V Billing Accuracy Correct charges Always billed correctly Overcharged constantly \N \N medium V4.05 V4 V Billing Resolution Fixing billing issues Quick billing fix Billing disputes ignored \N \N medium R1.04 R1 R Ethics Ethical behavior Very ethical company Unethical practices \N \N medium R1.05 R1 R Accountability Taking responsibility Owned their mistakes Never takes blame \N \N medium R2.04 R2 R Predictability Consistent experience Always know what to expect Every visit is different \N \N medium R2.05 R2 R Standards Meeting quality standards High standards maintained Standards have dropped \N \N medium R3.04 R3 R Personal Connection Human touch Felt like family Treated like a number \N \N medium R3.05 R3 R Going Extra Mile Beyond expectations Went above and beyond Minimum effort only \N \N medium R4.04 R4 R Service Recovery Making things right Fixed problem perfectly Made it worse \N \N medium R4.05 R4 R Feedback Response Acting on feedback Implemented my suggestion Feedback ignored \N \N medium A3.03 A3 A Response Time Speed of getting answers Quick response Waited days for reply \N \N medium P1.05 P1 P Empathy Understanding feelings Really understood me No empathy at all \N \N medium P2.04 P2 P Advice Quality Helpful recommendations Great advice Terrible recommendations \N \N medium P2.05 P2 P Training Level Staff training evident Well-trained staff Clearly untrained \N \N medium P3.04 P3 P Availability Being available when needed Always available Never around \N \N medium P3.05 P3 P Dedication Commitment to helping Dedicated to helping Just going through motions \N \N medium P4.04 P4 P Honesty Truthful communication Always honest Lied to me \N \N medium P4.05 P4 P Proactive Updates Keeping customer informed Kept me updated No communication \N \N medium O1.01 O1 O Works/Doesn't Work Basic functionality success or failure Software runs perfectly Car won't start Implement quality testing before delivery. Create incident response process for functionality failures. Our products work reliably - backed by rigorous quality testing. medium O1.02 O1 O Performance Level How well it operates Incredibly fast processor Sluggish and laggy Optimize performance through benchmarking and monitoring. Set performance SLAs. Experience lightning-fast performance that exceeds expectations. complex O1.03 O1 O Durability Longevity and resistance to wear Still perfect after 5 years Fell apart in a month Use higher quality materials. Extend warranty coverage. Implement durability testing. Built to last - quality materials that stand the test of time. medium O1.04 O1 O Reliability Consistency of function over time Never fails me Works sometimes, not others Implement regular maintenance schedules. Add redundancy for critical systems. Dependable reliability you can count on, every time. medium O1.05 O1 O Outcome Achievement Did customer accomplish their goal? Passed my exam! Treatment didn't work Track outcome metrics. Follow up on customer goals. Provide success coaching. We measure success by YOUR results, not just our delivery. medium O2.01 O2 O Materials/Inputs Quality of components or ingredients Real leather, premium feel Cheap plastic parts Upgrade to premium materials/ingredients. Source from quality suppliers. Premium materials and ingredients you can see and feel. medium O2.02 O2 O Craftsmanship Skill of construction or execution Beautifully sewn seams Sloppy assembly Invest in craftsman training. Implement quality checkpoints. Master craftsmanship in every detail. complex O2.03 O2 O Presentation Visual and aesthetic quality Gorgeous plating Looked thrown together Train on presentation standards. Create visual guidelines. Beautifully presented, every single time. simple O2.04 O2 O Attention to Detail Finishing touches and refinement Every corner perfect Full of typos Implement finishing checklists. Add quality inspection step. Meticulous attention to every detail. simple O2.05 O2 O Condition at Delivery State when received Still warm from oven Arrived damaged Improve packaging. Add delivery condition checks. Train delivery staff. Arrives in perfect condition, guaranteed. medium O3.01 O3 O All Components Present Nothing missing from what was promised Everything in the box Missing the charger Create comprehensive packing lists. Verify completeness before shipping. Everything you need, nothing missing. simple O3.02 O3 O Feature Availability Promised features actually work All menu items available Half the features disabled Test all features before release. Maintain feature availability dashboard. All features available and working as promised. medium O3.03 O3 O Scope Delivery Full scope of work completed Cleaned entire house Left the bathrooms Define clear scope of work. Use completion checklists. We deliver the full scope, every time. simple O3.04 O3 O Documentation Supporting materials provided Great user manual No instructions at all Create comprehensive documentation. Include setup guides and FAQs. Clear instructions and helpful guides included. simple O4.01 O4 O Specification Match Matches what was ordered Exactly what I ordered Wrong size delivered Implement order verification. Add confirmation step before fulfillment. Exactly what you ordered, guaranteed. simple O4.02 O4 O Personalization Adapted to individual preferences Remembered my usual No way to save prefs Build preference tracking system. Remember customer choices. We remember your preferences for a personalized experience. medium O4.03 O4 O Flexibility Can be modified or adjusted Happy to substitute No modifications allowed Train staff on customization options. Empower flexibility. Flexible options tailored to your needs. simple O4.04 O4 O Appropriateness Right solution for the need Perfect recommendation Sold me wrong thing Improve needs assessment. Train consultative selling. Expert recommendations matched to your specific needs. medium P1.01 P1 P Warmth Friendly and welcoming manner Made me feel welcome Cold and unfriendly Train staff on warm greetings. Recognize friendly behavior. Friendly faces and warm welcomes await you. simple P1.02 P1 P Respect Treated with dignity Very respectful service Rude and dismissive Implement respect training. Address complaints immediately. You'll be treated with dignity and respect. simple P1.03 P1 P Patience Calm and tolerant approach Patient with my questions Rushed and impatient Train active listening and empathy. Role-play difficult scenarios. Staff who truly understand your situation. medium P1.04 P1 P Enthusiasm Energy and engagement Really passionate about helping Seemed bored and disinterested Reduce time pressure on staff. Train patience techniques. Take your time - we're here to help, not rush. simple P2.01 P2 P Knowledge Expertise and understanding Knew everything about the product Had no idea what they were doing Implement ongoing product training. Create knowledge base. Expert knowledge to answer any question. medium P2.02 P2 P Skill Technical ability Expertly handled the issue Completely incompetent Invest in skills training. Certify technical competency. Skilled professionals at the top of their craft. complex P2.03 P2 P Problem Solving Ability to find solutions Found a creative solution Couldn't figure it out Empower staff to solve problems. Create escalation paths. Creative problem-solvers who find solutions. medium P3.01 P3 P Attentiveness Being present and engaged Always attentive to needs Ignored me completely Train proactive checking. Reduce multitasking. Attentive service that anticipates your needs. simple P3.02 P3 P Initiative Proactive help Anticipated my needs Had to ask for everything Encourage proactive service. Reward initiative. Proactive help before you even ask. simple P3.03 P3 P Follow-through Completing promised actions Did exactly what they promised Never followed up Optimize staffing levels. Reduce wait for assistance. Help is always available when you need it. medium P4.01 P4 P Clarity Clear communication Explained everything clearly Confusing and unclear Train jargon-free communication. Use visual aids. Clear explanations without confusing jargon. simple P4.02 P4 P Listening Understanding customer needs Really listened to me Didn't listen at all Train active listening. Implement feedback loops. We truly listen and understand your needs. simple P4.03 P4 P Transparency Honest and open Upfront about everything Hid information from me Implement status update systems. Set update expectations. Regular updates keep you informed every step. simple J1.01 J1 J Speed How fast things happen Super fast service Took forever Display estimated wait times. Implement queue management. Minimal wait times with clear expectations. medium J1.02 J1 J Punctuality On-time delivery Arrived exactly when promised Two hours late Optimize delivery processes. Set realistic timelines. Fast, reliable delivery every time. medium J1.03 J1 J Queue Management Handling of waiting customers Well-organized queue Chaotic and disorganized Set response time SLAs. Implement ticketing system. Quick responses when you reach out. medium J2.01 J2 J Simplicity Easy process Super easy to book Complicated process Simplify processes. Remove unnecessary steps. Simple, straightforward processes. medium J2.02 J2 J Friction Obstacles encountered Seamless experience So many hoops to jump through Improve signage. Create intuitive layouts. Easy to find what you're looking for. simple J2.03 J2 J Navigation Finding what you need Easy to navigate Got lost multiple times Digitize forms. Pre-fill known information. Minimal paperwork, maximum efficiency. medium J3.01 J3 J Consistency Same experience every time Always consistent Different every visit Standardize processes. Document procedures. Consistent quality every single time. medium J3.02 J3 J Accuracy Getting it right Perfect every time Full of errors Implement order verification. Add accuracy checks. Accurate orders, no mistakes. simple J3.03 J3 J Uptime System availability Never down Constantly having issues Improve system reliability. Add monitoring and alerts. Reliable systems that are always available. complex J4.01 J4 J Problem Recognition Acknowledging issues Immediately acknowledged the issue Denied there was a problem Train problem acknowledgment. Create issue intake process. We acknowledge issues immediately. simple J4.02 J4 J Resolution Speed How fast problems get fixed Fixed immediately Took weeks to resolve Create clear escalation paths. Empower frontline resolution. Efficient resolution process. medium J4.03 J4 J Resolution Fairness Fair handling of issues Very fair resolution Unfair treatment Set resolution time targets. Prioritize open issues. Fast resolution when things go wrong. medium E1.01 E1 E Cleanliness How clean the space is Spotlessly clean Dirty and gross Increase cleaning frequency. Create cleaning checklists. Spotlessly clean facilities. simple E1.02 E1 E Comfort Physical comfort Very comfortable seating Uncomfortable chairs Implement preventive maintenance. Fix issues promptly. Well-maintained, everything works. medium E1.03 E1 E Space Design Layout and organization Well-designed layout Cramped and cluttered Redesign layout for flow. Add wayfinding. Intuitive layout, easy to navigate. complex E2.01 E2 E Lighting Light quality and level Perfect lighting Too dark/bright Invest in UX design. Conduct usability testing. Beautiful, intuitive digital experience. complex E2.02 E2 E Sound/Noise Audio environment Nice music Too loud Test all features. Fix bugs promptly. Everything works, no broken buttons. medium E2.03 E2 E Temperature Climate control Perfect temperature Freezing/boiling Optimize page load. Improve server response. Lightning-fast digital experience. complex E3.01 E3 E Interface Design Digital UX/UI Beautiful interface Ugly and confusing Design for desired mood. Control sensory elements. Perfect atmosphere and ambiance. medium E3.02 E3 E App/Website Speed Digital performance Fast and responsive Slow and laggy Add sound absorption. Create quiet zones. Pleasant sound levels. medium E3.03 E3 E Usability Ease of digital use Intuitive to use Impossible to figure out Optimize HVAC. Add zone controls. Perfect temperature, always comfortable. medium E4.01 E4 E Safety Physical safety Felt completely safe Felt unsafe Conduct safety audits. Address hazards immediately. Safety is our top priority. medium E4.02 E4 E Security Protection of belongings/data Very secure Security concerns Implement hygiene protocols. Train staff on standards. Highest hygiene standards. medium E4.03 E4 E Health/Hygiene Health standards Very hygienic Health code violations Add security measures. Protect customer property. Secure environment for you and your belongings. medium A1.01 A1 A Hours Operating hours Great hours Never open when I need them Extend operating hours. Consider 24/7 options. Open when you need us. medium A1.02 A1 A Booking Availability Appointment slots Easy to get an appointment Booked for months Add online booking. Increase appointment slots. Easy scheduling, plenty of availability. medium A1.03 A1 A Inventory Product availability Always in stock Always out of stock Improve inventory management. Add stock alerts. Always in stock when you need it. medium A2.01 A2 A Physical Access Mobility accessibility Wheelchair accessible Not accessible Add ramps and elevators. Ensure ADA compliance. Fully accessible for all abilities. complex A2.02 A2 A Language Access Language accommodation Multiple languages available English only Add alt text. Ensure screen reader compatibility. Accessible for visually impaired users. medium A2.03 A2 A Digital Accessibility Screen reader/a11y Accessible website Can't use with screen reader Add captions and transcripts. Support hearing devices. Accessible for hearing impaired users. medium A3.01 A3 A Diversity Welcome All backgrounds welcome Very inclusive Felt unwelcome Hire multilingual staff. Add translation services. Service in your language. medium A3.02 A3 A Accommodation Special needs accommodation Very accommodating No accommodations available Train cultural competency. Celebrate diversity. Welcoming to all backgrounds. medium A4.01 A4 A Location Physical location convenience Great location Hard to get to Choose high-traffic location. Improve visibility. Convenient, easy-to-find location. complex A4.02 A4 A Parking Parking availability Easy parking No parking Add parking spaces. Offer validation. Easy, hassle-free parking. complex A4.03 A4 A Multiple Channels Ways to engage Many ways to reach them Only one contact method Locate near transit. Add shuttle service. Easy access by public transit. complex V1.01 V1 V Price Level Cost amount Very affordable Way too expensive Review pricing strategy. Offer value tiers. Competitive, fair pricing. complex V1.02 V1 V Price Fairness Fair for what you get Fair price Overpriced Benchmark against expectations. Communicate value. Pricing that matches expectations. medium V1.03 V1 V Hidden Costs Unexpected charges No hidden fees Lots of hidden charges Conduct competitor analysis. Justify premium or match. Competitive with the market. medium V2.01 V2 V Clear Pricing Easy to understand costs Clear pricing Confusing pricing Create clear price lists. Explain pricing structure. Clear, easy-to-understand pricing. simple V2.02 V2 V Honest Billing Accurate charges Bill was accurate Charged more than quoted List all fees upfront. Include in quotes. Full disclosure of all charges. simple V2.03 V2 V Policy Clarity Clear terms and conditions Clear policies Hidden in fine print Audit marketing claims. Ensure accuracy. Honest, accurate advertising. simple V3.01 V3 V Time Investment Time required Quick and easy Took way too long Streamline processes. Reduce customer time. Quick and easy, respecting your time. medium V3.02 V3 V Hassle Factor Difficulty and inconvenience No hassle Such a hassle Simplify decisions. Provide guidance. Easy decisions, minimal stress. medium V3.03 V3 V Mental Load Cognitive effort required Easy to understand Too complicated Offer delivery/pickup. Reduce physical burden. Convenient, minimal effort required. medium V4.01 V4 V Value for Money Worth what you paid Great value Not worth the money Communicate value proposition. Demonstrate ROI. Exceptional value for your investment. medium V4.02 V4 V ROI Return on investment Excellent return Waste of money Ensure quality matches price. Add value-adds. Quality that justifies the price. medium V4.03 V4 V Overall Satisfaction Happy with the exchange Very satisfied Totally unsatisfied Track satisfaction. Follow up post-purchase. Complete satisfaction guaranteed. medium R1.01 R1 R Honesty Truthfulness Always honest Lied to me Train honest communication. Build trust culture. Complete honesty and transparency. medium R1.02 R1 R Ethics Ethical behavior Ethical practices Unethical behavior Document commitments. Track promises made. We always keep our promises. simple R1.03 R1 R Promises Kept Following through on promises Kept all promises Broke their promise Share policies openly. Communicate changes. Open and transparent in everything we do. simple R2.01 R2 R Consistency Reliable over time Always reliable Inconsistent Track customer history. Learn from patterns. Proven track record of excellence. medium R2.02 R2 R Trustworthiness Can be trusted Completely trustworthy Can't be trusted Standardize experience. Reduce variation. Consistent excellence, every visit. medium R2.03 R2 R Accountability Takes responsibility Takes responsibility Blames others Communicate changes. Maintain core values. Stable and reliable, year after year. medium R3.01 R3 R Error Acknowledgment Admits mistakes Quickly admitted the mistake Denied the mistake Train admission of mistakes. Empower acknowledgment. We own our mistakes. simple R3.02 R3 R Apology Quality Sincere apologies Sincere apology Insincere/no apology Develop sincere apology training. Show genuine regret. Genuine apologies when things go wrong. simple R3.03 R3 R Making It Right Correcting mistakes Made it right Didn't fix anything Develop compensation policies. Empower service recovery. We make things right with meaningful gestures. medium R4.01 R4 R Customer Recognition Remembers customers Remembered me Treated like a stranger Implement CRM. Train staff on customer history. We remember you and value your loyalty. medium R4.02 R4 R Loyalty Rewards Rewards for loyalty Great loyalty program No recognition for loyalty Create meaningful loyalty program. Offer real value. Rewarding loyalty with meaningful perks. medium R4.03 R4 R Long-term Relationship Builds relationships Values the relationship Just another number Train relationship building. Encourage personal connections. More than transactions - real relationships. medium V2.04 V2 V Quality-Price Ratio Worth vs cost Excellent quality for price Overpriced for quality Simplify contracts. Highlight key terms. Fair, straightforward terms. medium \. -- -- Data for Name: urt_taxonomy; Type: TABLE DATA; Schema: pipeline; Owner: scraper -- COPY pipeline.urt_taxonomy (id, path, code, node_type, name, definition, positive_example, negative_example, solution, solution_complexity, marketing_angle, default_owner, is_active, created_at, updated_at) FROM stdin; 1 O O domain Offering Does the core product/service deliver? \N \N \N medium \N Product/Operations t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 2 J J domain Journey Is the process smooth and timely? \N \N \N medium \N Operations/Process t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 3 E E domain Environment Is the space functional and pleasant? \N \N \N medium \N Facilities/IT t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 4 R R domain Relationship Is trust built and maintained? \N \N \N medium \N Leadership/CX t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 5 P P domain People How do personnel behave and perform? \N \N \N medium \N HR/Training t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 6 A A domain Access Can everyone participate fully? \N \N \N medium \N Compliance/Design t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 7 V V domain Value Is the exchange fair and transparent? \N \N \N medium \N Finance/Pricing t 2026-01-30 17:13:23.780916 2026-01-30 17:13:23.780916 8 O.O1 O1 category Core Product/Service \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 9 O.O2 O2 category Product Features \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 10 O.O3 O3 category Variety & Selection \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 11 O.O4 O4 category Customization \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 12 P.P1 P1 category Value Perception \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 13 P.P2 P2 category Pricing Structure \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 14 P.P3 P3 category Promotions & Deals \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 15 P.P4 P4 category Payment Process \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 16 J.J1 J1 category Wait Times \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 17 J.J2 J2 category Booking & Reservations \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 18 J.J3 J3 category Navigation & Convenience \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 19 J.J4 J4 category Accessibility \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 20 E.E1 E1 category Physical Environment \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 21 E.E2 E2 category Ambiance & Atmosphere \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 22 E.E3 E3 category Cleanliness \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 23 E.E4 E4 category Digital Experience \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 24 A.A1 A1 category Friendliness \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 25 A.A2 A2 category Helpfulness \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 26 A.A3 A3 category Professionalism \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 27 A.A4 A4 category Knowledge & Expertise \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 28 V.V1 V1 category Brand Identity \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 29 V.V2 V2 category Communication \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 30 V.V3 V3 category Marketing \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 31 V.V4 V4 category Transparency \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 32 R.R1 R1 category Loyalty \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 33 R.R2 R2 category Trust \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 34 R.R3 R3 category Consistency \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 35 R.R4 R4 category Personalization \N \N \N \N medium \N \N t 2026-01-30 17:13:23.784604 2026-01-30 17:13:23.784604 36 J.J1.J1_04 J1.04 subcode Punctuality Meeting scheduled times Always on time Two hours late \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 37 J.J1.J1_05 J1.05 subcode Pacing Appropriate speed (not rushed/dragged) Perfect pace throughout Felt rushed through everything \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 38 J.J2.J2_04 J2.04 subcode Booking Availability Slots/capacity when needed Always available slots Fully booked for weeks \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 39 J.J2.J2_05 J2.05 subcode Inventory Stock availability Always in stock Out of stock constantly \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 40 J.J3.J3_04 J3.04 subcode Data Accuracy Correct info in systems All details correct Wrong info in my account \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 41 J.J3.J3_05 J3.05 subcode Integration Systems work together Seamless between channels Info doesn't sync \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 42 J.J4.J4_04 J4.04 subcode Escalation Getting to right person Quickly got to manager Endless transfers Verify fixes before closing. Follow up on resolutions. medium Complete solutions, not band-aids. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 43 J.J4.J4_05 J4.05 subcode Closure Issue fully resolved Problem completely solved Issue still not fixed \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 44 A.A1.A1_04 A1.04 subcode Wayfinding Finding destination Easy to find Got lost trying to find it \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 45 A.A1.A1_05 A1.05 subcode Physical Accessibility Disability accommodations Wheelchair accessible No ramps or elevators \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 46 A.A2.A2_04 A2.04 subcode Language Accessibility Multilingual support Available in my language No translation available \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 47 A.A2.A2_05 A2.05 subcode Hours of Operation Service availability times Open when needed Terrible hours \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 48 A.A3.A3_04 A3.04 subcode Documentation Clarity Clear instructions Easy to understand docs Confusing instructions \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 49 A.A3.A3_05 A3.05 subcode Support Accessibility Getting help when needed Easy to reach support Impossible to get help \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 50 A.A4.A4_04 A4.04 subcode Payment Flexibility Multiple payment options Many payment options Only accepts cash \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 51 A.A4.A4_05 A4.05 subcode Refund Accessibility Getting money back Easy refund process Impossible to get refund \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 52 E.E1.E1_04 E1.04 subcode Ambiance Atmosphere and vibe Great atmosphere Depressing environment Upgrade equipment. Implement replacement schedule. complex Modern, state-of-the-art equipment. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 53 E.E1.E1_05 E1.05 subcode Comfort Physical comfort Very comfortable Uncomfortable seating \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 54 E.E2.E2_04 E2.04 subcode Visual Design Aesthetics of interface Beautiful design Ugly interface Simplify navigation. Reduce menu depth. medium Find what you need in seconds. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 55 E.E2.E2_05 E2.05 subcode Mobile Experience Mobile usability Great mobile app Terrible mobile site \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 56 E.E3.E3_04 E3.04 subcode Health Safety Health precautions Very clean and safe Unsanitary conditions \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 57 E.E3.E3_05 E3.05 subcode Cyber Security Digital security Secure platform Got hacked \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 58 E.E4.E4_04 E4.04 subcode Social Responsibility Ethical practices Ethical company Exploitative practices \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 59 E.E4.E4_05 E4.05 subcode Community Impact Local community effect Supports local community Hurts local businesses \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 60 V.V1.V1_04 V1.04 subcode Price Transparency Clear pricing Clear pricing upfront Hidden costs everywhere \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 61 V.V1.V1_05 V1.05 subcode Price Stability Consistent pricing Same price always Prices keep changing \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 62 V.V2.V2_05 V2.05 subcode Competitive Value Compared to alternatives Best value around Better deals elsewhere \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 63 V.V3.V3_04 V3.04 subcode Promotion Clarity Clear offer terms Clear promotion rules Misleading promotions \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 64 V.V3.V3_05 V3.05 subcode Reward Redemption Using points/rewards Easy to redeem rewards Hard to use points \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 65 V.V4.V4_04 V4.04 subcode Billing Accuracy Correct charges Always billed correctly Overcharged constantly \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 66 V.V4.V4_05 V4.05 subcode Billing Resolution Fixing billing issues Quick billing fix Billing disputes ignored \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 67 R.R1.R1_04 R1.04 subcode Ethics Ethical behavior Very ethical company Unethical practices \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 68 R.R1.R1_05 R1.05 subcode Accountability Taking responsibility Owned their mistakes Never takes blame \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 69 R.R2.R2_04 R2.04 subcode Predictability Consistent experience Always know what to expect Every visit is different \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 70 R.R2.R2_05 R2.05 subcode Standards Meeting quality standards High standards maintained Standards have dropped \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 71 R.R3.R3_04 R3.04 subcode Personal Connection Human touch Felt like family Treated like a number \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 72 R.R3.R3_05 R3.05 subcode Going Extra Mile Beyond expectations Went above and beyond Minimum effort only \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 73 R.R4.R4_04 R4.04 subcode Service Recovery Making things right Fixed problem perfectly Made it worse \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 74 R.R4.R4_05 R4.05 subcode Feedback Response Acting on feedback Implemented my suggestion Feedback ignored \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 75 A.A3.A3_03 A3.03 subcode Response Time Speed of getting answers Quick response Waited days for reply \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 76 P.P1.P1_05 P1.05 subcode Empathy Understanding feelings Really understood me No empathy at all \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 77 P.P2.P2_04 P2.04 subcode Advice Quality Helpful recommendations Great advice Terrible recommendations \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 78 P.P2.P2_05 P2.05 subcode Training Level Staff training evident Well-trained staff Clearly untrained \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 79 P.P3.P3_04 P3.04 subcode Availability Being available when needed Always available Never around \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 80 P.P3.P3_05 P3.05 subcode Dedication Commitment to helping Dedicated to helping Just going through motions \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 81 P.P4.P4_04 P4.04 subcode Honesty Truthful communication Always honest Lied to me \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 82 P.P4.P4_05 P4.05 subcode Proactive Updates Keeping customer informed Kept me updated No communication \N medium \N \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 83 O.O1.O1_01 O1.01 subcode Works/Doesn't Work Basic functionality success or failure Software runs perfectly Car won't start Implement quality testing before delivery. Create incident response process for functionality failures. medium Our products work reliably - backed by rigorous quality testing. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 84 O.O1.O1_02 O1.02 subcode Performance Level How well it operates Incredibly fast processor Sluggish and laggy Optimize performance through benchmarking and monitoring. Set performance SLAs. complex Experience lightning-fast performance that exceeds expectations. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 85 O.O1.O1_03 O1.03 subcode Durability Longevity and resistance to wear Still perfect after 5 years Fell apart in a month Use higher quality materials. Extend warranty coverage. Implement durability testing. medium Built to last - quality materials that stand the test of time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 86 O.O1.O1_04 O1.04 subcode Reliability Consistency of function over time Never fails me Works sometimes, not others Implement regular maintenance schedules. Add redundancy for critical systems. medium Dependable reliability you can count on, every time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 87 O.O1.O1_05 O1.05 subcode Outcome Achievement Did customer accomplish their goal? Passed my exam! Treatment didn't work Track outcome metrics. Follow up on customer goals. Provide success coaching. medium We measure success by YOUR results, not just our delivery. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 88 O.O2.O2_01 O2.01 subcode Materials/Inputs Quality of components or ingredients Real leather, premium feel Cheap plastic parts Upgrade to premium materials/ingredients. Source from quality suppliers. medium Premium materials and ingredients you can see and feel. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 89 O.O2.O2_02 O2.02 subcode Craftsmanship Skill of construction or execution Beautifully sewn seams Sloppy assembly Invest in craftsman training. Implement quality checkpoints. complex Master craftsmanship in every detail. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 90 O.O2.O2_03 O2.03 subcode Presentation Visual and aesthetic quality Gorgeous plating Looked thrown together Train on presentation standards. Create visual guidelines. simple Beautifully presented, every single time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 91 O.O2.O2_04 O2.04 subcode Attention to Detail Finishing touches and refinement Every corner perfect Full of typos Implement finishing checklists. Add quality inspection step. simple Meticulous attention to every detail. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 92 O.O2.O2_05 O2.05 subcode Condition at Delivery State when received Still warm from oven Arrived damaged Improve packaging. Add delivery condition checks. Train delivery staff. medium Arrives in perfect condition, guaranteed. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 93 O.O3.O3_01 O3.01 subcode All Components Present Nothing missing from what was promised Everything in the box Missing the charger Create comprehensive packing lists. Verify completeness before shipping. simple Everything you need, nothing missing. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 94 O.O3.O3_02 O3.02 subcode Feature Availability Promised features actually work All menu items available Half the features disabled Test all features before release. Maintain feature availability dashboard. medium All features available and working as promised. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 95 O.O3.O3_03 O3.03 subcode Scope Delivery Full scope of work completed Cleaned entire house Left the bathrooms Define clear scope of work. Use completion checklists. simple We deliver the full scope, every time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 96 O.O3.O3_04 O3.04 subcode Documentation Supporting materials provided Great user manual No instructions at all Create comprehensive documentation. Include setup guides and FAQs. simple Clear instructions and helpful guides included. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 97 O.O4.O4_01 O4.01 subcode Specification Match Matches what was ordered Exactly what I ordered Wrong size delivered Implement order verification. Add confirmation step before fulfillment. simple Exactly what you ordered, guaranteed. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 98 O.O4.O4_02 O4.02 subcode Personalization Adapted to individual preferences Remembered my usual No way to save prefs Build preference tracking system. Remember customer choices. medium We remember your preferences for a personalized experience. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 99 O.O4.O4_03 O4.03 subcode Flexibility Can be modified or adjusted Happy to substitute No modifications allowed Train staff on customization options. Empower flexibility. simple Flexible options tailored to your needs. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 100 O.O4.O4_04 O4.04 subcode Appropriateness Right solution for the need Perfect recommendation Sold me wrong thing Improve needs assessment. Train consultative selling. medium Expert recommendations matched to your specific needs. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 101 P.P1.P1_01 P1.01 subcode Warmth Friendly and welcoming manner Made me feel welcome Cold and unfriendly Train staff on warm greetings. Recognize friendly behavior. simple Friendly faces and warm welcomes await you. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 102 P.P1.P1_02 P1.02 subcode Respect Treated with dignity Very respectful service Rude and dismissive Implement respect training. Address complaints immediately. simple You'll be treated with dignity and respect. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 103 P.P1.P1_03 P1.03 subcode Patience Calm and tolerant approach Patient with my questions Rushed and impatient Train active listening and empathy. Role-play difficult scenarios. medium Staff who truly understand your situation. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 104 P.P1.P1_04 P1.04 subcode Enthusiasm Energy and engagement Really passionate about helping Seemed bored and disinterested Reduce time pressure on staff. Train patience techniques. simple Take your time - we're here to help, not rush. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 105 P.P2.P2_01 P2.01 subcode Knowledge Expertise and understanding Knew everything about the product Had no idea what they were doing Implement ongoing product training. Create knowledge base. medium Expert knowledge to answer any question. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 106 P.P2.P2_02 P2.02 subcode Skill Technical ability Expertly handled the issue Completely incompetent Invest in skills training. Certify technical competency. complex Skilled professionals at the top of their craft. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 107 P.P2.P2_03 P2.03 subcode Problem Solving Ability to find solutions Found a creative solution Couldn't figure it out Empower staff to solve problems. Create escalation paths. medium Creative problem-solvers who find solutions. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 108 P.P3.P3_01 P3.01 subcode Attentiveness Being present and engaged Always attentive to needs Ignored me completely Train proactive checking. Reduce multitasking. simple Attentive service that anticipates your needs. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 109 P.P3.P3_02 P3.02 subcode Initiative Proactive help Anticipated my needs Had to ask for everything Encourage proactive service. Reward initiative. simple Proactive help before you even ask. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 110 P.P3.P3_03 P3.03 subcode Follow-through Completing promised actions Did exactly what they promised Never followed up Optimize staffing levels. Reduce wait for assistance. medium Help is always available when you need it. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 111 P.P4.P4_01 P4.01 subcode Clarity Clear communication Explained everything clearly Confusing and unclear Train jargon-free communication. Use visual aids. simple Clear explanations without confusing jargon. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 112 P.P4.P4_02 P4.02 subcode Listening Understanding customer needs Really listened to me Didn't listen at all Train active listening. Implement feedback loops. simple We truly listen and understand your needs. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 113 P.P4.P4_03 P4.03 subcode Transparency Honest and open Upfront about everything Hid information from me Implement status update systems. Set update expectations. simple Regular updates keep you informed every step. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 114 J.J1.J1_01 J1.01 subcode Speed How fast things happen Super fast service Took forever Display estimated wait times. Implement queue management. medium Minimal wait times with clear expectations. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 115 J.J1.J1_02 J1.02 subcode Punctuality On-time delivery Arrived exactly when promised Two hours late Optimize delivery processes. Set realistic timelines. medium Fast, reliable delivery every time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 116 J.J1.J1_03 J1.03 subcode Queue Management Handling of waiting customers Well-organized queue Chaotic and disorganized Set response time SLAs. Implement ticketing system. medium Quick responses when you reach out. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 117 J.J2.J2_01 J2.01 subcode Simplicity Easy process Super easy to book Complicated process Simplify processes. Remove unnecessary steps. medium Simple, straightforward processes. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 118 J.J2.J2_02 J2.02 subcode Friction Obstacles encountered Seamless experience So many hoops to jump through Improve signage. Create intuitive layouts. simple Easy to find what you're looking for. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 119 J.J2.J2_03 J2.03 subcode Navigation Finding what you need Easy to navigate Got lost multiple times Digitize forms. Pre-fill known information. medium Minimal paperwork, maximum efficiency. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 120 J.J3.J3_01 J3.01 subcode Consistency Same experience every time Always consistent Different every visit Standardize processes. Document procedures. medium Consistent quality every single time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 121 J.J3.J3_02 J3.02 subcode Accuracy Getting it right Perfect every time Full of errors Implement order verification. Add accuracy checks. simple Accurate orders, no mistakes. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 122 J.J3.J3_03 J3.03 subcode Uptime System availability Never down Constantly having issues Improve system reliability. Add monitoring and alerts. complex Reliable systems that are always available. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 123 J.J4.J4_01 J4.01 subcode Problem Recognition Acknowledging issues Immediately acknowledged the issue Denied there was a problem Train problem acknowledgment. Create issue intake process. simple We acknowledge issues immediately. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 124 J.J4.J4_02 J4.02 subcode Resolution Speed How fast problems get fixed Fixed immediately Took weeks to resolve Create clear escalation paths. Empower frontline resolution. medium Efficient resolution process. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 125 J.J4.J4_03 J4.03 subcode Resolution Fairness Fair handling of issues Very fair resolution Unfair treatment Set resolution time targets. Prioritize open issues. medium Fast resolution when things go wrong. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 126 E.E1.E1_01 E1.01 subcode Cleanliness How clean the space is Spotlessly clean Dirty and gross Increase cleaning frequency. Create cleaning checklists. simple Spotlessly clean facilities. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 127 E.E1.E1_02 E1.02 subcode Comfort Physical comfort Very comfortable seating Uncomfortable chairs Implement preventive maintenance. Fix issues promptly. medium Well-maintained, everything works. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 128 E.E1.E1_03 E1.03 subcode Space Design Layout and organization Well-designed layout Cramped and cluttered Redesign layout for flow. Add wayfinding. complex Intuitive layout, easy to navigate. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 129 E.E2.E2_01 E2.01 subcode Lighting Light quality and level Perfect lighting Too dark/bright Invest in UX design. Conduct usability testing. complex Beautiful, intuitive digital experience. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 130 E.E2.E2_02 E2.02 subcode Sound/Noise Audio environment Nice music Too loud Test all features. Fix bugs promptly. medium Everything works, no broken buttons. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 131 E.E2.E2_03 E2.03 subcode Temperature Climate control Perfect temperature Freezing/boiling Optimize page load. Improve server response. complex Lightning-fast digital experience. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 132 E.E3.E3_01 E3.01 subcode Interface Design Digital UX/UI Beautiful interface Ugly and confusing Design for desired mood. Control sensory elements. medium Perfect atmosphere and ambiance. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 133 E.E3.E3_02 E3.02 subcode App/Website Speed Digital performance Fast and responsive Slow and laggy Add sound absorption. Create quiet zones. medium Pleasant sound levels. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 134 E.E3.E3_03 E3.03 subcode Usability Ease of digital use Intuitive to use Impossible to figure out Optimize HVAC. Add zone controls. medium Perfect temperature, always comfortable. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 135 E.E4.E4_01 E4.01 subcode Safety Physical safety Felt completely safe Felt unsafe Conduct safety audits. Address hazards immediately. medium Safety is our top priority. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 136 E.E4.E4_02 E4.02 subcode Security Protection of belongings/data Very secure Security concerns Implement hygiene protocols. Train staff on standards. medium Highest hygiene standards. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 137 E.E4.E4_03 E4.03 subcode Health/Hygiene Health standards Very hygienic Health code violations Add security measures. Protect customer property. medium Secure environment for you and your belongings. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 138 A.A1.A1_01 A1.01 subcode Hours Operating hours Great hours Never open when I need them Extend operating hours. Consider 24/7 options. medium Open when you need us. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 139 A.A1.A1_02 A1.02 subcode Booking Availability Appointment slots Easy to get an appointment Booked for months Add online booking. Increase appointment slots. medium Easy scheduling, plenty of availability. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 140 A.A1.A1_03 A1.03 subcode Inventory Product availability Always in stock Always out of stock Improve inventory management. Add stock alerts. medium Always in stock when you need it. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 141 A.A2.A2_01 A2.01 subcode Physical Access Mobility accessibility Wheelchair accessible Not accessible Add ramps and elevators. Ensure ADA compliance. complex Fully accessible for all abilities. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 142 A.A2.A2_02 A2.02 subcode Language Access Language accommodation Multiple languages available English only Add alt text. Ensure screen reader compatibility. medium Accessible for visually impaired users. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 143 A.A2.A2_03 A2.03 subcode Digital Accessibility Screen reader/a11y Accessible website Can't use with screen reader Add captions and transcripts. Support hearing devices. medium Accessible for hearing impaired users. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 144 A.A3.A3_01 A3.01 subcode Diversity Welcome All backgrounds welcome Very inclusive Felt unwelcome Hire multilingual staff. Add translation services. medium Service in your language. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 145 A.A3.A3_02 A3.02 subcode Accommodation Special needs accommodation Very accommodating No accommodations available Train cultural competency. Celebrate diversity. medium Welcoming to all backgrounds. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 146 A.A4.A4_01 A4.01 subcode Location Physical location convenience Great location Hard to get to Choose high-traffic location. Improve visibility. complex Convenient, easy-to-find location. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 147 A.A4.A4_02 A4.02 subcode Parking Parking availability Easy parking No parking Add parking spaces. Offer validation. complex Easy, hassle-free parking. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 148 A.A4.A4_03 A4.03 subcode Multiple Channels Ways to engage Many ways to reach them Only one contact method Locate near transit. Add shuttle service. complex Easy access by public transit. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 149 V.V1.V1_01 V1.01 subcode Price Level Cost amount Very affordable Way too expensive Review pricing strategy. Offer value tiers. complex Competitive, fair pricing. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 150 V.V1.V1_02 V1.02 subcode Price Fairness Fair for what you get Fair price Overpriced Benchmark against expectations. Communicate value. medium Pricing that matches expectations. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 151 V.V1.V1_03 V1.03 subcode Hidden Costs Unexpected charges No hidden fees Lots of hidden charges Conduct competitor analysis. Justify premium or match. medium Competitive with the market. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 152 V.V2.V2_01 V2.01 subcode Clear Pricing Easy to understand costs Clear pricing Confusing pricing Create clear price lists. Explain pricing structure. simple Clear, easy-to-understand pricing. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 153 V.V2.V2_02 V2.02 subcode Honest Billing Accurate charges Bill was accurate Charged more than quoted List all fees upfront. Include in quotes. simple Full disclosure of all charges. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 154 V.V2.V2_03 V2.03 subcode Policy Clarity Clear terms and conditions Clear policies Hidden in fine print Audit marketing claims. Ensure accuracy. simple Honest, accurate advertising. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 155 V.V3.V3_01 V3.01 subcode Time Investment Time required Quick and easy Took way too long Streamline processes. Reduce customer time. medium Quick and easy, respecting your time. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 156 V.V3.V3_02 V3.02 subcode Hassle Factor Difficulty and inconvenience No hassle Such a hassle Simplify decisions. Provide guidance. medium Easy decisions, minimal stress. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 157 V.V3.V3_03 V3.03 subcode Mental Load Cognitive effort required Easy to understand Too complicated Offer delivery/pickup. Reduce physical burden. medium Convenient, minimal effort required. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 158 V.V4.V4_01 V4.01 subcode Value for Money Worth what you paid Great value Not worth the money Communicate value proposition. Demonstrate ROI. medium Exceptional value for your investment. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 159 V.V4.V4_02 V4.02 subcode ROI Return on investment Excellent return Waste of money Ensure quality matches price. Add value-adds. medium Quality that justifies the price. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 160 V.V4.V4_03 V4.03 subcode Overall Satisfaction Happy with the exchange Very satisfied Totally unsatisfied Track satisfaction. Follow up post-purchase. medium Complete satisfaction guaranteed. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 161 R.R1.R1_01 R1.01 subcode Honesty Truthfulness Always honest Lied to me Train honest communication. Build trust culture. medium Complete honesty and transparency. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 162 R.R1.R1_02 R1.02 subcode Ethics Ethical behavior Ethical practices Unethical behavior Document commitments. Track promises made. simple We always keep our promises. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 163 R.R1.R1_03 R1.03 subcode Promises Kept Following through on promises Kept all promises Broke their promise Share policies openly. Communicate changes. simple Open and transparent in everything we do. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 164 R.R2.R2_01 R2.01 subcode Consistency Reliable over time Always reliable Inconsistent Track customer history. Learn from patterns. medium Proven track record of excellence. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 165 R.R2.R2_02 R2.02 subcode Trustworthiness Can be trusted Completely trustworthy Can't be trusted Standardize experience. Reduce variation. medium Consistent excellence, every visit. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 166 R.R2.R2_03 R2.03 subcode Accountability Takes responsibility Takes responsibility Blames others Communicate changes. Maintain core values. medium Stable and reliable, year after year. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 167 R.R3.R3_01 R3.01 subcode Error Acknowledgment Admits mistakes Quickly admitted the mistake Denied the mistake Train admission of mistakes. Empower acknowledgment. simple We own our mistakes. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 168 R.R3.R3_02 R3.02 subcode Apology Quality Sincere apologies Sincere apology Insincere/no apology Develop sincere apology training. Show genuine regret. simple Genuine apologies when things go wrong. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 169 R.R3.R3_03 R3.03 subcode Making It Right Correcting mistakes Made it right Didn't fix anything Develop compensation policies. Empower service recovery. medium We make things right with meaningful gestures. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 170 R.R4.R4_01 R4.01 subcode Customer Recognition Remembers customers Remembered me Treated like a stranger Implement CRM. Train staff on customer history. medium We remember you and value your loyalty. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 171 R.R4.R4_02 R4.02 subcode Loyalty Rewards Rewards for loyalty Great loyalty program No recognition for loyalty Create meaningful loyalty program. Offer real value. medium Rewarding loyalty with meaningful perks. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 172 R.R4.R4_03 R4.03 subcode Long-term Relationship Builds relationships Values the relationship Just another number Train relationship building. Encourage personal connections. medium More than transactions - real relationships. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 173 V.V2.V2_04 V2.04 subcode Quality-Price Ratio Worth vs cost Excellent quality for price Overpriced for quality Simplify contracts. Highlight key terms. medium Fair, straightforward terms. \N t 2026-01-30 17:13:23.7869 2026-01-30 17:13:23.7869 \. -- -- Data for Name: _migrations; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public._migrations (id, filename, applied_at) FROM stdin; 1 001_add_job_platform_fields.sql 2026-01-24 18:21:58.864993+00 3 002_create_batches_table.sql 2026-01-24 18:22:08.130682+00 4 003_create_scraper_registry.sql 2026-01-24 18:22:08.130682+00 5 004_create_api_keys.sql 2026-01-24 18:22:08.130682+00 6 005_create_pipeline_schema.sql 2026-01-24 18:22:12.182204+00 \. -- -- Data for Name: api_keys; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.api_keys (id, key_hash, key_prefix, name, client_id, scopes, rate_limit_rpm, is_active, created_at, last_used_at, expires_at, metadata) FROM stdin; \. -- -- Data for Name: batches; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.batches (id, requester_client_id, requester_source, scrape_purpose, name, total_jobs, completed_jobs, failed_jobs, status, callback_url, callback_status, callback_sent_at, created_at, completed_at, metadata) FROM stdin; \. -- -- Data for Name: canary_results; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.canary_results (id, "timestamp", success, reviews_count, scrape_time, error_message, metadata) FROM stdin; 1 2026-01-18 09:25:52.253386 f \N \N [Errno 13] Permission denied: '/usr/local/lib/python3.11/site-packages/seleniumbase/drivers/uc_driver' \N 2 2026-01-18 09:30:05.540989 f 0 25.34906 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 3 2026-01-18 10:02:50.992234 f 0 24.929724 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 4 2026-01-18 10:17:07.339892 f 0 28.666391 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 5 2026-01-18 10:33:43.532614 f 0 26.436287 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 6 2026-01-18 10:40:12.002247 f 0 29.524586 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 7 2026-01-18 11:28:36.582113 f 0 26.47188 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 8 2026-01-18 11:32:51.621813 f 0 32.85873 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 9 2026-01-18 11:37:09.829362 f 0 26.187805 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 10 2026-01-18 11:40:51.150136 f 0 27.409924 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 11 2026-01-18 14:56:37.996208 f 0 28.076473 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 12 2026-01-18 14:58:59.843307 f 0 27.771152 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 13 2026-01-18 15:07:04.830328 f 0 28.267647 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 14 2026-01-18 15:25:29.23937 f 0 28.41804 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 15 2026-01-18 15:32:48.145973 f \N \N [Errno 26] Text file busy: '/usr/local/lib/python3.11/site-packages/seleniumbase/drivers/uc_driver' \N 16 2026-01-18 16:02:53.35588 f 0 28.26627 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 17 2026-01-18 16:09:07.614056 f 0 28.77518 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 18 2026-01-18 16:13:28.974756 f 0 30.420074 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 19 2026-01-18 16:23:15.250255 f 0 38.164097 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 20 2026-01-18 16:29:38.86944 f 0 47.51091 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 21 2026-01-18 16:38:19.728008 f 0 52.395405 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 22 2026-01-18 16:46:46.863123 f 0 32.38684 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 23 2026-01-18 16:49:05.643752 f 0 29.523485 Validation failed: ['got_reviews', 'reasonable_count', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": true, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 24 2026-01-18 16:50:44.965515 f 0 33.393353 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} 25 2026-01-18 17:25:21.372936 f 0 30.485683 Validation failed: ['got_reviews', 'reasonable_count', 'reasonable_time', 'data_structure_valid'] {"checks": {"got_reviews": false, "reasonable_time": false, "reasonable_count": false, "scrape_succeeded": true, "data_structure_valid": false}} \. -- -- Data for Name: crash_reports; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.crash_reports (crash_id, job_id, created_at, crash_type, error_message, state, metrics_history, logs_before_crash, analysis, screenshot_url, dom_snapshot_id) FROM stdin; \. -- -- Data for Name: gbp_categories; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.gbp_categories (id, name, slug, path, level, parent_id, category_count, created_at, updated_at, name_es) FROM stdin; 1059 Boating instructor Boating_instructor Education.Tutoring.Boating_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1060 Chess instructor Chess_instructor Education.Tutoring.Chess_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1061 Golf instructor Golf_instructor Education.Tutoring.Golf_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1062 Meditation instructor Meditation_instructor Education.Tutoring.Meditation_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1063 Music instructor Music_instructor Education.Tutoring.Music_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1064 Piano instructor Piano_instructor Education.Tutoring.Piano_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1065 SCUBA instructor SCUBA_instructor Education.Tutoring.SCUBA_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1066 Vocal instructor Vocal_instructor Education.Tutoring.Vocal_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1067 Volleyball instructor Volleyball_instructor Education.Tutoring.Volleyball_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1068 Guitar instructor Guitar_instructor Education.Tutoring.Guitar_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1069 Water skiing instructor Water_skiing_instructor Education.Tutoring.Water_skiing_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 44 Arena Arena Entertainment.Sports.Arena 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 16 Agricultural cooperative Agricultural_cooperative Entertainment.Arts.Agricultural_cooperative 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 40 Auto auction Auto_auction Automotive.Repair.Auto_auction 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 41 Auto wrecker Auto_wrecker Automotive.Repair.Auto_wrecker 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 24 Amphitheater Amphitheater Entertainment.Arts.Amphitheater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 360 Gastrointestinal surgeon Gastrointestinal_surgeon Healthcare.Doctors.Gastrointestinal_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 42 Architect Architect Professional_Services.Engineering.Architect 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 43 Ashram Ashram Religious.Other_Religions.Ashram 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 19 Airline Airline Travel_Hospitality.Airlines.Airline 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 20 Airport Airport Travel_Hospitality.Airlines.Airport 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 49 Arts organization Arts_organization Entertainment.Arts.Arts_organization 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 17 Air taxi Air_taxi Travel_Hospitality.Transportation.Air_taxi 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 31 Apartment complex Apartment_complex Real_Estate.Agents.Apartment_complex 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 33 Aeroclub Aeroclub Community.Clubs.Aeroclub 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 35 Aikido club Aikido_club Community.Clubs.Aikido_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 10 Aero dance class Aero_dance_class Entertainment.Fitness.Aero_dance_class 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 34 Agenzia Entrate Agenzia_Entrate Government.Offices.Agenzia_Entrate 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 15 Agistment service Agistment_service Agriculture.Farms.Agistment_service 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 47 Art cafe Art_cafe Food_Beverage.Cafes_Coffee.Art_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 8 Acura dealer Acura_dealer Automotive.Dealers.Acura_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 11 Abarth dealer Abarth_dealer Automotive.Dealers.Abarth_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 18 Aircraft dealer Aircraft_dealer Automotive.Dealers.Aircraft_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 48 Art dealer Art_dealer Automotive.Dealers.Art_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 55 ATV dealer ATV_dealer Automotive.Dealers.ATV_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 56 Audi dealer Audi_dealer Automotive.Dealers.Audi_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 59 Auto body shop Auto_body_shop Automotive.Repair.Auto_body_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1 Abortion clinic Abortion_clinic Healthcare.Clinics.Abortion_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 5 Acupuncture clinic Acupuncture_clinic Healthcare.Clinics.Acupuncture_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 30 Animal hospital Animal_hospital Healthcare.Hospitals.Animal_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 6 Acupuncture school Acupuncture_school Healthcare.Alternative.Acupuncture_school 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 7 Acupuncturist Acupuncturist Healthcare.Alternative.Acupuncturist 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 13 African goods store African_goods_store Retail.Stores.African_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 60 Auto machine shop Auto_machine_shop Retail.Stores.Auto_machine_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 64 Baby store Baby_store Retail.Stores.Baby_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 9 Administrative attorney Administrative_attorney Professional_Services.Legal.Administrative_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3 Accountant Accountant Professional_Services.Accounting.Accountant 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4 Accounting school Accounting_school Professional_Services.Accounting.Accounting_school 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1087 American football field American_football_field Entertainment.Sports.American_football_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1088 Water polo pool Water_polo_pool Entertainment.Sports.Water_polo_pool 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1108 Water skiing service Water_skiing_service Entertainment.Sports.Water_skiing_service 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 71 Art center Art_center Entertainment.Arts.Art_center 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3143 Physical fitness program Physical_fitness_program Entertainment.Fitness.Physical_fitness_program 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 116 Car inspection station Car_inspection_station Automotive.Repair.Car_inspection_station 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 73 Grill Grill Food_Beverage.Restaurants.Grill 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3155 Pilates studio Pilates_studio Entertainment.Fitness.Pilates_studio 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 38 Aquarium Aquarium Entertainment.Parks.Aquarium 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 77 Bar & grill Bar_grill Food_Beverage.Restaurants.Bar_grill 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 36 Amusement center Amusement_center Entertainment.Amusement.Amusement_center 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 126 Cabinet maker Cabinet_maker Travel_Hospitality.Hotels.Cabinet_maker 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 75 Bank Bank Finance.Banks.Bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 70 Archery club Archery_club Community.Clubs.Archery_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 111 Boat club Boat_club Community.Clubs.Boat_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 78 Frituur Frituur Food_Beverage.Restaurants.Frituur 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 382 Hawker stall Hawker_stall Food_Beverage.Restaurants.Hawker_stall 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 79 Bar PMU Bar_PMU Food_Beverage.Bars_Nightlife.Bar_PMU 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 81 Bar tabac Bar_tabac Food_Beverage.Bars_Nightlife.Bar_tabac 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 85 Beautician Beautician Home_Services.Personal.Beautician 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 125 Business administration service Business_administration_service Professional_Services.Consulting.Business_administration_service 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 128 Cable company Cable_company Professional_Services.IT.Cable_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 107 Batting cage center Batting_cage_center Entertainment.Sports.Batting_cage_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 110 Board of education Board_of_education Government.Offices.Board_of_education 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 109 Bed & breakfast Bed_breakfast Travel_Hospitality.Hotels.Bed_breakfast 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 123 Bus charter Bus_charter Travel_Hospitality.Transportation.Bus_charter 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 108 Bazar Bazar Retail.Stores.Bazar 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 113 Boutique Boutique Retail.Stores.Boutique 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 112 Botanica Botanica Retail.Stores.Botanica 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 100 Bicycle rack Bicycle_rack Entertainment.Sports.Bicycle_rack 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 76 Bar Bar Food_Beverage.Bars_Nightlife.Bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 130 Cafe Cafe Food_Beverage.Cafes_Coffee.Cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 131 Cafeteria Cafeteria Food_Beverage.Cafes_Coffee.Cafeteria 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 66 Bakery Bakery Food_Beverage.Bakeries_Desserts.Bakery 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 96 Bentley dealer Bentley_dealer Automotive.Dealers.Bentley_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 103 BMW dealer BMW_dealer Automotive.Dealers.BMW_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 104 Boat dealer Boat_dealer Automotive.Dealers.Boat_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 129 Cadillac dealer Cadillac_dealer Automotive.Dealers.Cadillac_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 83 Barber shop Barber_shop Healthcare.Wellness.Barber_shop 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 80 Bar restaurant furniture store Bar_restaurant_furniture_store Retail.Stores.Bar_restaurant_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 89 Bead store Bead_store Retail.Stores.Bead_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 90 Bedding store Bedding_store Retail.Stores.Bedding_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 93 Beer store Beer_store Retail.Stores.Beer_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 101 Bicycle store Bicycle_store Retail.Stores.Bicycle_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 105 Book store Book_store Retail.Stores.Book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 115 Bridal shop Bridal_shop Retail.Stores.Bridal_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 127 Cabinet store Cabinet_store Retail.Stores.Cabinet_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 92 Beer distributor Beer_distributor Retail.Wholesale.Beer_distributor 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 99 Beverage distributor Beverage_distributor Retail.Wholesale.Beverage_distributor 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 84 Barrister Barrister Professional_Services.Legal.Barrister 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 72 Auditorium Auditorium Professional_Services.Accounting.Auditorium 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 69 Arborist service Arborist_service Home_Services.Landscaping.Arborist_service 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 162 CBSE school CBSE_school Education.Schools.CBSE_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 148 Casino Casino Entertainment.Amusement.Casino 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 149 Casino hotel Casino_hotel Entertainment.Amusement.Casino_hotel 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 135 Hammam Hammam Healthcare.Wellness.Hammam 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 163 Cement manufacturer Cement_manufacturer Industrial.Manufacturing.Cement_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1616 Chemical manufacturer Chemical_manufacturer Industrial.Manufacturing.Chemical_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1617 Chemical plant Chemical_plant Industrial.Manufacturing.Chemical_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3809 Truss manufacturer Truss_manufacturer Industrial.Manufacturing.Truss_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3556 Solar photovoltaic power plant Solar_photovoltaic_power_plant Industrial.Utilities.Solar_photovoltaic_power_plant 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1615 Chemical exporter Chemical_exporter Industrial.Logistics.Chemical_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 157 Cat trainer Cat_trainer Healthcare.Veterinary.Cat_trainer 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 136 Calvary Chapel church Calvary_Chapel_church Religious.Christian.Calvary_Chapel_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 155 Cathedral Cathedral Religious.Christian.Cathedral 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 156 Chapel Chapel Religious.Christian.Chapel 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 165 Cemetery Cemetery Religious.Spiritual.Cemetery 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 188 Cat breeder Cat_breeder Healthcare.Veterinary.Cat_breeder 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 189 Cattery Cattery Healthcare.Veterinary.Cattery 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 143 Capsule hotel Capsule_hotel Travel_Hospitality.Hotels.Capsule_hotel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 159 Caterer Caterer Food_Beverage.Catering.Caterer 3 4056 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 191 Charcuterie Charcuterie Food_Beverage.Food_Production.Charcuterie 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 168 Central bank Central_bank Finance.Banks.Central_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 190 Chamber of Commerce Chamber_of_Commerce Community.Clubs.Chamber_of_Commerce 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 171 Chamber of agriculture Chamber_of_agriculture Agriculture.Ag_Services.Chamber_of_agriculture 3 4140 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 151 Carpet installer Carpet_installer Home_Services.Contractors.Carpet_installer 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 150 Call center Call_center Professional_Services.IT.Call_center 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3137 Photography studio Photography_studio Professional_Services.Creative.Photography_studio 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 153 Children's camp Children_s_camp Education.Childcare.Children_s_camp 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 152 Casket service Casket_service Home_Services.Personal.Casket_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 193 Chop bar Chop_bar Food_Beverage.Bars_Nightlife.Chop_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 185 Chocolate cafe Chocolate_cafe Food_Beverage.Cafes_Coffee.Chocolate_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 133 Cake shop Cake_shop Food_Beverage.Bakeries_Desserts.Cake_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 184 Chocolate artisan Chocolate_artisan Food_Beverage.Bakeries_Desserts.Chocolate_artisan 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 186 Chocolate factory Chocolate_factory Food_Beverage.Bakeries_Desserts.Chocolate_factory 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 187 Chocolate shop Chocolate_shop Food_Beverage.Bakeries_Desserts.Chocolate_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 144 Car dealer Car_dealer Automotive.Dealers.Car_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 181 Chinese medicine clinic Chinese_medicine_clinic Healthcare.Clinics.Chinese_medicine_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 183 Chiropractor Chiropractor Healthcare.Alternative.Chiropractor 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 138 Camping store Camping_store Retail.Stores.Camping_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 174 Cheese shop Cheese_shop Retail.Stores.Cheese_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 180 Chinaware store Chinaware_store Retail.Stores.Chinaware_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 164 Cement supplier Cement_supplier Retail.Wholesale.Cement_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 160 Cattle market Cattle_market Retail.Markets.Cattle_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 146 Carpenter Carpenter Home_Services.Contractors.Carpenter 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 147 Carport and pergola builder Carport_and_pergola_builder Home_Services.Contractors.Carport_and_pergola_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 192 Construction machine rental service Construction_machine_rental_service Home_Services.Contractors.Construction_machine_rental_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 206 College of agriculture College_of_agriculture Education.Universities.College_of_agriculture 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 253 Dealer of Fiat Professional Dealer_of_Fiat_Professional Automotive.Dealers.Dealer_of_Fiat_Professional 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 227 Cooperative bank Cooperative_bank Entertainment.Arts.Cooperative_bank 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 225 Convention center Convention_center Entertainment.Venues.Convention_center 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 197 Churreria Churreria Food_Beverage.Restaurants.Churreria 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 226 Creperie Creperie Food_Beverage.Restaurants.Creperie 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 222 Cleaners Cleaners Home_Services.Cleaning.Cleaners 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 229 Crane service Crane_service Industrial.Construction.Crane_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 200 Container terminal Container_terminal Industrial.Logistics.Container_terminal 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2077 Event technology service Event_technology_service Entertainment.Venues.Event_technology_service 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 203 Coal exporter Coal_exporter Industrial.Logistics.Coal_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2078 Event ticket seller Event_ticket_seller Entertainment.Venues.Event_ticket_seller 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 241 Cruise terminal Cruise_terminal Industrial.Logistics.Cruise_terminal 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1115 Border guard Border_guard Government.Public_Safety.Border_guard 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1119 Military residence Military_residence Government.Public_Safety.Military_residence 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1120 Military town Military_town Government.Public_Safety.Military_town 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1118 Prison Prison Government.Courts.Prison 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1124 District Justice District_Justice Government.Courts.District_Justice 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1125 Justice department Justice_department Government.Courts.Justice_department 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 196 Church Church Religious.Christian.Church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 202 Civic center Civic_center Community.Organizations.Civic_center 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 208 Community center Community_center Community.Organizations.Community_center 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 223 Club Club Community.Clubs.Club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 244 Cured ham bar Cured_ham_bar Food_Beverage.Bars_Nightlife.Cured_ham_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 252 Dart bar Dart_bar Food_Beverage.Bars_Nightlife.Dart_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 212 Confectionery store Confectionery_store Food_Beverage.Bakeries_Desserts.Confectionery_store 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 199 Citroen dealer Citroen_dealer Automotive.Dealers.Citroen_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 216 Construction machine dealer Construction_machine_dealer Automotive.Dealers.Construction_machine_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 237 Crane dealer Crane_dealer Automotive.Dealers.Crane_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 243 Cupra dealer Cupra_dealer Automotive.Dealers.Cupra_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 247 Dacia dealer Dacia_dealer Automotive.Dealers.Dacia_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 230 Cosmetic dentist Cosmetic_dentist Healthcare.Dental.Cosmetic_dentist 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 254 Dental clinic Dental_clinic Healthcare.Dental.Dental_clinic 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 255 Dental insurance agency Dental_insurance_agency Healthcare.Dental.Dental_insurance_agency 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 256 Dental laboratory Dental_laboratory Healthcare.Dental.Dental_laboratory 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 233 Counselor Counselor Healthcare.Mental_Health.Counselor 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 204 Cold cut store Cold_cut_store Retail.Stores.Cold_cut_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 209 Computer desk store Computer_desk_store Retail.Stores.Computer_desk_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 210 Computer software store Computer_software_store Retail.Stores.Computer_software_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 221 Convenience store Convenience_store Retail.Stores.Convenience_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 228 Copying supply store Copying_supply_store Retail.Stores.Copying_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 215 Construction equipment supplier Construction_equipment_supplier Retail.Wholesale.Construction_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 217 Construction material wholesaler Construction_material_wholesaler Retail.Wholesale.Construction_material_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 195 Christmas market Christmas_market Retail.Markets.Christmas_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 218 Consultant Consultant Professional_Services.Consulting.Consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 211 Concrete contractor Concrete_contractor Home_Services.Contractors.Concrete_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 214 Construction company Construction_company Home_Services.Contractors.Construction_company 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 220 Contractor Contractor Home_Services.Contractors.Contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 234 Countertop contractor Countertop_contractor Home_Services.Contractors.Countertop_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 261 Dance club Dance_club Entertainment.Nightlife.Dance_club 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 274 Dog trainer Dog_trainer Healthcare.Veterinary.Dog_trainer 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 293 Disco club Disco_club Entertainment.Nightlife.Disco_club 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 292 Diner Diner Food_Beverage.Restaurants.Diner 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 295 Drafting service Drafting_service Professional_Services.Engineering.Drafting_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 262 Dating service Dating_service Professional_Services.Agencies.Dating_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1130 State employment department State_employment_department Government.Offices.State_employment_department 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 310 Fabric product manufacturer Fabric_product_manufacturer Industrial.Manufacturing.Fabric_product_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 302 Equipment exporter Equipment_exporter Industrial.Logistics.Equipment_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 303 Equipment importer Equipment_importer Industrial.Logistics.Equipment_importer 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 309 Exporter Exporter Industrial.Logistics.Exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 258 Department of motor vehicles Department_of_motor_vehicles Government.Offices.Department_of_motor_vehicles 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 263 Department of Public Safety Department_of_Public_Safety Government.Offices.Department_of_Public_Safety 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 264 Department of Social Services Department_of_Social_Services Government.Offices.Department_of_Social_Services 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1671 Church of the Nazarene Church_of_the_Nazarene Religious.Christian.Church_of_the_Nazarene 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 213 Conservative synagogue Conservative_synagogue Religious.Other_Religions.Conservative_synagogue 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 238 Cremation service Cremation_service Religious.Spiritual.Cremation_service 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 265 Donations center Donations_center Community.Nonprofits.Donations_center 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 294 Dive club Dive_club Community.Clubs.Dive_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 317 Farm Farm Agriculture.Farms.Farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 318 Farm bureau Farm_bureau Agriculture.Farms.Farm_bureau 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 319 Farmstay Farmstay Agriculture.Farms.Farmstay 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1131 State parliament State_parliament Government.Offices.State_parliament 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1133 Registration office Registration_office Government.Offices.Registration_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1134 Voter registration office Voter_registration_office Government.Offices.Voter_registration_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 259 Cosmetics industry Cosmetics_industry Industrial.Manufacturing.Cosmetics_industry 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 271 Distribution service Distribution_service Industrial.Logistics.Distribution_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 270 Distillery Distillery Food_Beverage.Bars_Nightlife.Distillery 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 306 Espresso bar Espresso_bar Food_Beverage.Bars_Nightlife.Espresso_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 273 Doctor Doctor Healthcare.Doctors.Doctor 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 299 Endodontist Endodontist Healthcare.Doctors.Endodontist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 257 Dentist Dentist Healthcare.Dental.Dentist 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 298 EMDR psychotherapist EMDR_psychotherapist Healthcare.Mental_Health.EMDR_psychotherapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 314 Faculty of pharmacy Faculty_of_pharmacy Healthcare.Pharmacies.Faculty_of_pharmacy 3 4074 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 266 Department store Department_store Retail.Stores.Department_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 269 Discount store Discount_store Retail.Stores.Discount_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 276 Doll store Doll_store Retail.Stores.Doll_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 280 Dress store Dress_store Retail.Stores.Dress_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 290 Electric bicycle store Electric_bicycle_store Retail.Stores.Electric_bicycle_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 291 Electric motor store Electric_motor_store Retail.Stores.Electric_motor_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 297 Electronics store Electronics_store Retail.Stores.Electronics_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 311 Fabric store Fabric_store Retail.Stores.Fabric_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 304 Equipment supplier Equipment_supplier Retail.Wholesale.Equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 312 Fabric wholesaler Fabric_wholesaler Retail.Wholesale.Fabric_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 260 Cottage rental Cottage_rental Retail.Rentals.Cottage_rental 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 300 Engineer Engineer Professional_Services.Engineering.Engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 313 Fabrication engineer Fabrication_engineer Professional_Services.Engineering.Fabrication_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 272 Diving contractor Diving_contractor Home_Services.Contractors.Diving_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 296 Drainage service Drainage_service Home_Services.Plumbing.Drainage_service 3 4087 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 369 General education school General_education_school Education.Schools.General_education_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 384 Golf club Golf_club Entertainment.Sports.Golf_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 338 Flamenco theater Flamenco_theater Entertainment.Arts.Flamenco_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 356 Garden Garden Entertainment.Parks.Garden 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 364 Garden center Garden_center Entertainment.Parks.Garden_center 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 365 Gardener Gardener Entertainment.Parks.Gardener 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 357 Garment exporter Garment_exporter Industrial.Logistics.Garment_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 333 Fire station Fire_station Government.Public_Safety.Fire_station 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 380 Hawker center Hawker_center Food_Beverage.Restaurants.Hawker_center 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3244 Property administration service Property_administration_service Real_Estate.Agents.Property_administration_service 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3246 Property management company Property_management_company Real_Estate.Agents.Property_management_company 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 37 Anime club Anime_club Community.Clubs.Anime_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 53 Association / Organization Association_Organization Community.Clubs.Association_Organization 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 378 Glazier Glazier Home_Services.Contractors.Glazier 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 224 Conservative club Conservative_club Community.Clubs.Conservative_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 761 Rowing club Rowing_club Community.Clubs.Rowing_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 366 Gasfitter Gasfitter Home_Services.Plumbing.Gasfitter 3 4087 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 327 Equestrian facility Equestrian_facility Entertainment.Sports.Equestrian_facility 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 329 Festival Festival Entertainment.Venues.Festival 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 328 Estate liquidator Estate_liquidator Finance.Lending.Estate_liquidator 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 341 Florist Florist Retail.Stores.Florist 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 326 Electronics company Electronics_company Industrial.Manufacturing.Electronics_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 361 Gated community Gated_community Real_Estate.Property_Management.Gated_community 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 321 Favela Favela Community.Organizations.Favela 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 363 Gay bar Gay_bar Food_Beverage.Bars_Nightlife.Gay_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 377 Girl bar Girl_bar Food_Beverage.Bars_Nightlife.Girl_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 323 Ferrari dealer Ferrari_dealer Automotive.Dealers.Ferrari_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 324 Fiat dealer Fiat_dealer Automotive.Dealers.Fiat_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 344 Ford dealer Ford_dealer Automotive.Dealers.Ford_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 372 Genesis dealer Genesis_dealer Automotive.Dealers.Genesis_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 359 Gas station Gas_station Automotive.Fuel.Gas_station 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 367 Genealogist Genealogist Healthcare.Doctors.Genealogist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 374 Allergist Allergist Healthcare.Doctors.Allergist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 370 General hospital General_hospital Healthcare.Hospitals.General_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 376 Gestalt therapist Gestalt_therapist Healthcare.Mental_Health.Gestalt_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 345 Gay sauna Gay_sauna Healthcare.Wellness.Gay_sauna 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 335 Fish store Fish_store Retail.Stores.Fish_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 336 Flag store Flag_store Retail.Stores.Flag_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 337 Flamenco dance store Flamenco_dance_store Retail.Stores.Flamenco_dance_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 349 Fruit and vegetable store Fruit_and_vegetable_store Retail.Stores.Fruit_and_vegetable_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 352 Furniture store Furniture_store Retail.Stores.Furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 355 Game store Game_store Retail.Stores.Game_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 371 General store General_store Retail.Stores.General_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 379 Glass shop Glass_shop Retail.Stores.Glass_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 339 Flea market Flea_market Retail.Markets.Flea_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 342 Flower market Flower_market Retail.Markets.Flower_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 348 Fresh food market Fresh_food_market Retail.Markets.Fresh_food_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 358 Gas engineer Gas_engineer Professional_Services.Engineering.Gas_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 322 Fence contractor Fence_contractor Home_Services.Contractors.Fence_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 368 General contractor General_contractor Home_Services.Contractors.General_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 325 Electrician Electrician Home_Services.Electrical.Electrician 3 4088 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 442 Ice hockey club Ice_hockey_club Entertainment.Sports.Ice_hockey_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 409 Herbalist Herbalist Healthcare.Alternative.Herbalist 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 441 Housing cooperative Housing_cooperative Entertainment.Arts.Housing_cooperative 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 391 Gym Gym Entertainment.Fitness.Gym 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 429 Importer Importer Industrial.Logistics.Importer 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 386 Guardia Di Finanza Police Guardia_Di_Finanza_Police Government.Public_Safety.Guardia_Di_Finanza_Police 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 439 Horse breeder Horse_breeder Healthcare.Veterinary.Horse_breeder 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 418 Hostel Hostel Travel_Hospitality.Hotels.Hostel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 421 Hotel Hotel Travel_Hospitality.Hotels.Hotel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 446 Insurance agency Insurance_agency Finance.Insurance.Insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 447 Insurance agent Insurance_agent Finance.Insurance.Insurance_agent 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 404 Go club Go_club Community.Clubs.Go_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 405 Gun club Gun_club Community.Clubs.Gun_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 440 Host club Host_club Community.Clubs.Host_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 762 Rsl club Rsl_club Community.Clubs.Rsl_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3239 Professional and hobby associations Professional_and_hobby_associations Community.Clubs.Professional_and_hobby_associations 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3240 Professional association Professional_association Community.Clubs.Professional_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 403 Glass merchant Glass_merchant Home_Services.Contractors.Glass_merchant 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 398 Handicraft Handicraft Entertainment.Arts.Handicraft 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 32 Aquaculture farm Aquaculture_farm Agriculture.Farms.Aquaculture_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1822 Crop grower Crop_grower Agriculture.Farms.Crop_grower 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1846 Dairy farm Dairy_farm Agriculture.Farms.Dairy_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1199 Agricultural production Agricultural_production Agriculture.Ag_Services.Agricultural_production 3 4140 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1200 Agricultural service Agricultural_service Agriculture.Ag_Services.Agricultural_service 3 4140 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 124 Bus depot Bus_depot Travel_Hospitality.Transportation.Bus_depot 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1113 Statuary Statuary Travel_Hospitality.Attractions.Statuary 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 414 Hookah bar Hookah_bar Food_Beverage.Bars_Nightlife.Hookah_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 412 Honda dealer Honda_dealer Automotive.Dealers.Honda_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 415 Horse trailer dealer Horse_trailer_dealer Automotive.Dealers.Horse_trailer_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 431 Indian Motorcycle dealer Indian_Motorcycle_dealer Automotive.Dealers.Indian_Motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 438 Infiniti dealer Infiniti_dealer Automotive.Dealers.Infiniti_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 407 Anesthesiologist Anesthesiologist Healthcare.Doctors.Anesthesiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 408 Audiologist Audiologist Healthcare.Doctors.Audiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 443 Cardiologist Cardiologist Healthcare.Doctors.Cardiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 406 Heart hospital Heart_hospital Healthcare.Hospitals.Heart_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 416 Hospital Hospital Healthcare.Hospitals.Hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 417 Hospital department Hospital_department Healthcare.Hospitals.Hospital_department 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 411 Homeopath Homeopath Healthcare.Alternative.Homeopath 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 399 Hardware store Hardware_store Retail.Stores.Hardware_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 424 Hunting store Hunting_store Retail.Stores.Hunting_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 430 Indian grocery store Indian_grocery_store Retail.Stores.Indian_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 444 Insulation materials store Insulation_materials_store Retail.Stores.Insulation_materials_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 445 Insulator supplier Insulator_supplier Retail.Wholesale.Insulator_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 437 Industrial supermarket Industrial_supermarket Retail.Grocery.Industrial_supermarket 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 436 Industrial consultant Industrial_consultant Professional_Services.Consulting.Industrial_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 425 HVAC contractor HVAC_contractor Home_Services.Contractors.HVAC_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 449 Joiner Joiner Home_Services.Contractors.Joiner 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 506 Library Library Education.Libraries.Library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 450 Interior Decorator Interior_Decorator Professional_Services.Engineering.Interior_Decorator 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 471 Jute exporter Jute_exporter Industrial.Logistics.Jute_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 448 Insurance company Insurance_company Finance.Insurance.Insurance_company 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 455 Investment service Investment_service Finance.Investment.Investment_service 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 477 Jazz club Jazz_club Community.Clubs.Jazz_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 478 Judo club Judo_club Community.Clubs.Judo_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 495 Labor union Labor_union Community.Clubs.Labor_union 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 451 Interior designer Interior_designer Professional_Services.Engineering.Interior_designer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 453 Internet service provider Internet_service_provider Professional_Services.IT.Internet_service_provider 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 479 Karaoke Karaoke Entertainment.Amusement.Karaoke 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 475 Institute of technology Institute_of_technology Education.Universities.Institute_of_technology 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 452 Internet cafe Internet_cafe Travel_Hospitality.Travel_Services.Internet_cafe 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3156 Plastic injection molding service Plastic_injection_molding_service Industrial.Manufacturing.Plastic_injection_molding_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 480 Leisure center Leisure_center Community.Clubs.Leisure_center 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 498 Land allotment Land_allotment Real_Estate.Property_Management.Land_allotment 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4036 Retail Retail Retail 1 \N 889 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 474 Karaoke bar Karaoke_bar Food_Beverage.Bars_Nightlife.Karaoke_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 505 Lesbian bar Lesbian_bar Food_Beverage.Bars_Nightlife.Lesbian_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 460 Jaguar dealer Jaguar_dealer Automotive.Dealers.Jaguar_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 497 Lancia dealer Lancia_dealer Automotive.Dealers.Lancia_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 499 Land Rover dealer Land_Rover_dealer Automotive.Dealers.Land_Rover_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 485 Kinesiotherapist Kinesiotherapist Healthcare.Mental_Health.Kinesiotherapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 496 Laboratory Laboratory Healthcare.Medical_Services.Laboratory 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 454 Internet shop Internet_shop Retail.Stores.Internet_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 458 Italian grocery store Italian_grocery_store Retail.Stores.Italian_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 468 Jewelry store Jewelry_store Retail.Stores.Jewelry_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 508 Lingerie store Lingerie_store Retail.Stores.Lingerie_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 476 Japanese delicatessen Japanese_delicatessen Retail.Grocery.Japanese_delicatessen 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 502 Lawyer Lawyer Professional_Services.Legal.Lawyer 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 562 Middle school Middle_school Education.Schools.Middle_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 516 Laser tag center Laser_tag_center Entertainment.Amusement.Laser_tag_center 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 561 Meyhane Meyhane Food_Beverage.Restaurants.Meyhane 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 564 Mill Mill Industrial.Manufacturing.Mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 520 Lounge Lounge Food_Beverage.Bars_Nightlife.Lounge 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 512 Lodge Lodge Travel_Hospitality.Hotels.Lodge 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 553 Mediation service Mediation_service Professional_Services.Legal.Mediation_service 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 521 Love hotel Love_hotel Travel_Hospitality.Hotels.Love_hotel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 513 Lodging Lodging Travel_Hospitality.Hotels.Lodging 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 552 Marina Marina Travel_Hospitality.Travel_Services.Marina 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 517 Liquidator Liquidator Finance.Lending.Liquidator 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 565 Mine Mine Industrial.Mining.Mine 3 4115 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 201 Congregation Congregation Religious.Other_Religions.Congregation 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 518 Marae Marae Religious.Other_Religions.Marae 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 567 Musalla Musalla Religious.Other_Religions.Musalla 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 574 Mohel Mohel Religious.Spiritual.Mohel 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3323 Religious institution Religious_institution Religious.Spiritual.Religious_institution 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3333 Religious organization Religious_organization Religious.Spiritual.Religious_organization 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 362 Gay & lesbian organization Gay_lesbian_organization Community.Organizations.Gay_lesbian_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 533 Maori organization Maori_organization Community.Organizations.Maori_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 515 Lapidary Lapidary Industrial.Manufacturing.Lapidary 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 555 Mercantile development Mercantile_development Professional_Services.Consulting.Mercantile_development 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 510 Live music bar Live_music_bar Food_Beverage.Bars_Nightlife.Live_music_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 539 Maserati dealer Maserati_dealer Automotive.Dealers.Maserati_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 542 Mazda dealer Mazda_dealer Automotive.Dealers.Mazda_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 543 McLaren dealer McLaren_dealer Automotive.Dealers.McLaren_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 558 Metalware dealer Metalware_dealer Automotive.Dealers.Metalware_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 548 Mechanic Mechanic Automotive.Repair.Mechanic 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 524 Dermatologist Dermatologist Healthcare.Doctors.Dermatologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 556 Diabetologist Diabetologist Healthcare.Doctors.Diabetologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 541 Maternity hospital Maternity_hospital Healthcare.Hospitals.Maternity_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 563 Military hospital Military_hospital Healthcare.Hospitals.Military_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 551 Mental health service Mental_health_service Healthcare.Mental_Health.Mental_health_service 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 549 Medical laboratory Medical_laboratory Healthcare.Medical_Services.Medical_laboratory 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 554 Medical Center Medical_Center Healthcare.Medical_Services.Medical_Center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 528 Makerspace Makerspace Healthcare.Wellness.Makerspace 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 540 Massage spa Massage_spa Healthcare.Wellness.Massage_spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 511 Lock Store Lock_Store Retail.Stores.Lock_Store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 522 Lumber store Lumber_store Retail.Stores.Lumber_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 534 Map store Map_store Retail.Stores.Map_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 546 Meat products store Meat_products_store Retail.Stores.Meat_products_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 569 Model train store Model_train_store Retail.Stores.Model_train_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 545 Measuring instruments supplier Measuring_instruments_supplier Retail.Wholesale.Measuring_instruments_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 557 Metal supplier Metal_supplier Retail.Wholesale.Metal_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 538 Market Market Retail.Markets.Market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 566 Mining engineer Mining_engineer Professional_Services.Engineering.Mining_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 536 Marble contractor Marble_contractor Home_Services.Contractors.Marble_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 514 Landscaper Landscaper Home_Services.Landscaping.Landscaper 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 550 Men's tailor Men_s_tailor Home_Services.Personal.Men_s_tailor 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 625 Open university Open_university Education.Universities.Open_university 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 606 Neurosurgeon Neurosurgeon Healthcare.Doctors.Neurosurgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 589 Museum Museum Entertainment.Arts.Museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 591 Museum of zoology Museum_of_zoology Entertainment.Arts.Museum_of_zoology 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 604 Olive oil cooperative Olive_oil_cooperative Entertainment.Arts.Olive_oil_cooperative 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 617 Nudist park Nudist_park Entertainment.Parks.Nudist_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 627 Optician Optician Healthcare.Doctors.Optician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 631 Optometrist Optometrist Healthcare.Doctors.Optometrist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 632 Oral and maxillofacial surgeon Oral_and_maxillofacial_surgeon Healthcare.Doctors.Oral_and_maxillofacial_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 586 Municipal administration office Municipal_administration_office Government.Offices.Municipal_administration_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 587 Municipal Guard Municipal_Guard Government.Offices.Municipal_Guard 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 593 Movie studio Movie_studio Professional_Services.Creative.Movie_studio 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 630 Observation deck Observation_deck Travel_Hospitality.Attractions.Observation_deck 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 592 Ministry of Education Ministry_of_Education Government.Offices.Ministry_of_Education 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 628 Newsstand Newsstand Retail.Stores.Newsstand 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 576 Monastery Monastery Religious.Christian.Monastery 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1911 Display home center Display_home_center Real_Estate.Agents.Display_home_center 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 618 Convent Convent Religious.Christian.Convent 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 582 Mosque Mosque Religious.Other_Religions.Mosque 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 581 Mortuary Mortuary Religious.Spiritual.Mortuary 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 583 Motel Motel Travel_Hospitality.Hotels.Motel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 594 Musical club Musical_club Community.Clubs.Musical_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 635 Organic farm Organic_farm Agriculture.Farms.Organic_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 610 Nissan dealer Nissan_dealer Automotive.Dealers.Nissan_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 603 Endocrinologist Endocrinologist Healthcare.Doctors.Endocrinologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 605 Neuropsychologist Neuropsychologist Healthcare.Doctors.Neuropsychologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 626 Ophthalmologist Ophthalmologist Healthcare.Doctors.Ophthalmologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 629 Numerologist Numerologist Healthcare.Doctors.Numerologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 633 Endoscopist Endoscopist Healthcare.Doctors.Endoscopist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 584 MRI center MRI_center Healthcare.Medical_Services.MRI_center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 590 Museum of space history Museum_of_space_history Healthcare.Wellness.Museum_of_space_history 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 616 Notions store Notions_store Retail.Stores.Notions_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 634 Organic drug store Organic_drug_store Retail.Stores.Organic_drug_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 636 Organic food store Organic_food_store Retail.Stores.Organic_food_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 615 Notary public Notary_public Professional_Services.Legal.Notary_public 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 644 Outdoor movie theater Outdoor_movie_theater Entertainment.Arts.Outdoor_movie_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 692 Plant and machinery hire Plant_and_machinery_hire Industrial.Manufacturing.Plant_and_machinery_hire 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 693 Plant nursery Plant_nursery Industrial.Manufacturing.Plant_nursery 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 694 Payment terminal Payment_terminal Industrial.Logistics.Payment_terminal 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 642 Parish Parish Religious.Christian.Parish 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 667 Pedorthist Pedorthist Healthcare.Doctors.Pedorthist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 662 Osteopath Osteopath Healthcare.Alternative.Osteopath 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 679 Pet adoption service Pet_adoption_service Healthcare.Veterinary.Pet_adoption_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 643 Pagoda Pagoda Religious.Other_Religions.Pagoda 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 661 Parsi temple Parsi_temple Religious.Other_Religions.Parsi_temple 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 680 Pet cemetery Pet_cemetery Religious.Spiritual.Pet_cemetery 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 663 Padel club Padel_club Community.Clubs.Padel_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 665 Painter Painter Home_Services.Contractors.Painter 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 670 Plasterer Plasterer Home_Services.Contractors.Plasterer 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 664 Paintball center Paintball_center Entertainment.Sports.Paintball_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4051 Restaurants Restaurants Food_Beverage.Restaurants 2 4035 420 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4052 Bars & Nightlife Bars_Nightlife Food_Beverage.Bars_Nightlife 2 4035 39 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4053 Cafes & Coffee Cafes_Coffee Food_Beverage.Cafes_Coffee 2 4035 23 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4054 Bakeries & Desserts Bakeries_Desserts Food_Beverage.Bakeries_Desserts 2 4035 25 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4055 Food Production Food_Production Food_Beverage.Food_Production 2 4035 19 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4056 Catering Catering Food_Beverage.Catering 2 4035 6 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4057 Stores Stores Retail.Stores 2 4036 508 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4058 Grocery & Food Grocery Retail.Grocery 2 4036 17 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4059 Wholesale & Supply Wholesale Retail.Wholesale 2 4036 300 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4060 Markets Markets Retail.Markets 2 4036 25 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4061 Rentals Rentals Retail.Rentals 2 4036 39 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4062 Dealers Dealers Automotive.Dealers 2 4037 119 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4063 Repair & Service Repair Automotive.Repair 2 4037 39 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4064 Parts & Accessories Parts Automotive.Parts 2 4037 23 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4065 Fuel & Charging Fuel Automotive.Fuel 2 4037 12 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4066 Rentals Rentals Automotive.Rentals 2 4037 12 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 687 Piano bar Piano_bar Food_Beverage.Bars_Nightlife.Piano_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 698 Poke bar Poke_bar Food_Beverage.Bars_Nightlife.Poke_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 682 Peugeot dealer Peugeot_dealer Automotive.Dealers.Peugeot_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 681 Petroleum products company Petroleum_products_company Automotive.Fuel.Petroleum_products_company 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 641 Orthodontist Orthodontist Healthcare.Doctors.Orthodontist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 666 Pathologist Pathologist Healthcare.Doctors.Pathologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 672 Pediatric dentist Pediatric_dentist Healthcare.Doctors.Pediatric_dentist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 676 Periodontist Periodontist Healthcare.Doctors.Periodontist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 695 Podiatrist Podiatrist Healthcare.Doctors.Podiatrist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 638 Oriental medicine clinic Oriental_medicine_clinic Healthcare.Clinics.Oriental_medicine_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 685 Physical therapist Physical_therapist Healthcare.Mental_Health.Physical_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 659 Parapharmacy Parapharmacy Healthcare.Pharmacies.Parapharmacy 3 4074 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 683 Pharmacy Pharmacy Healthcare.Pharmacies.Pharmacy 3 4074 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 639 Oriental medicine store Oriental_medicine_store Retail.Stores.Oriental_medicine_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 640 Oriental rug store Oriental_rug_store Retail.Stores.Oriental_rug_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 648 Paint store Paint_store Retail.Stores.Paint_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 674 Pen store Pen_store Retail.Stores.Pen_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 675 Perfume store Perfume_store Retail.Stores.Perfume_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 688 Piano store Piano_store Retail.Stores.Piano_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 656 Paper distributor Paper_distributor Retail.Wholesale.Paper_distributor 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 658 Paralegal services provider Paralegal_services_provider Professional_Services.Legal.Paralegal_services_provider 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 668 Paving contractor Paving_contractor Home_Services.Contractors.Paving_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 696 Plumber Plumber Home_Services.Plumbing.Plumber 3 4087 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 710 Preparatory school Preparatory_school Education.Schools.Preparatory_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 747 Real estate school Real_estate_school Education.Schools.Real_estate_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 713 Private university Private_university Education.Universities.Private_university 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 722 Public university Public_university Education.Universities.Public_university 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 726 Playground Playground Entertainment.Amusement.Playground 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 735 River port River_port Industrial.Logistics.River_port 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 720 Public health department Public_health_department Government.Social_Services.Public_health_department 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 716 Protestant church Protestant_church Religious.Christian.Protestant_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 715 Property maintenance Property_maintenance Real_Estate.Agents.Property_maintenance 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 741 Real estate agency Real_estate_agency Real_Estate.Agents.Real_estate_agency 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 727 Playgroup Playgroup Education.Childcare.Playgroup 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 742 Real estate agent Real_estate_agent Real_Estate.Agents.Real_estate_agent 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 744 Real estate auctioneer Real_estate_auctioneer Real_Estate.Agents.Real_estate_auctioneer 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 749 Rectory Rectory Religious.Christian.Rectory 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 745 Real estate developer Real_estate_developer Real_Estate.Agents.Real_estate_developer 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 750 Retreat center Retreat_center Travel_Hospitality.Hotels.Retreat_center 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4067 Parking Parking Automotive.Parking 2 4037 10 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 748 Real estate surveyor Real_estate_surveyor Real_Estate.Agents.Real_estate_surveyor 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 728 Polo club Polo_club Community.Clubs.Polo_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 729 Pony club Pony_club Community.Clubs.Pony_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4068 Doctors & Specialists Doctors Healthcare.Doctors 2 4038 101 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4069 Clinics Clinics Healthcare.Clinics 2 4038 49 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4070 Hospitals Hospitals Healthcare.Hospitals 2 4038 17 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4071 Dental Dental Healthcare.Dental 2 4038 14 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4072 Mental Health Mental_Health Healthcare.Mental_Health 2 4038 32 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4073 Alternative Medicine Alternative Healthcare.Alternative 2 4038 18 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4074 Pharmacies Pharmacies Healthcare.Pharmacies 2 4038 5 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 719 Pub Pub Food_Beverage.Bars_Nightlife.Pub 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 703 Pontiac dealer Pontiac_dealer Automotive.Dealers.Pontiac_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 707 Porsche dealer Porsche_dealer Automotive.Dealers.Porsche_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 753 Renault dealer Renault_dealer Automotive.Dealers.Renault_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 733 Gynecologist Gynecologist Healthcare.Doctors.Gynecologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 751 Reflexologist Reflexologist Healthcare.Doctors.Reflexologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 712 Private hospital Private_hospital Healthcare.Hospitals.Private_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 718 Psychotherapist Psychotherapist Healthcare.Mental_Health.Psychotherapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 734 Radiotherapist Radiotherapist Healthcare.Mental_Health.Radiotherapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 752 Reiki therapist Reiki_therapist Healthcare.Mental_Health.Reiki_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 721 Public medical center Public_medical_center Healthcare.Medical_Services.Public_medical_center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 702 Pond supply store Pond_supply_store Retail.Stores.Pond_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 704 Popcorn store Popcorn_store Retail.Stores.Popcorn_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 711 Print shop Print_shop Retail.Stores.Print_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 732 Radiator shop Radiator_shop Retail.Stores.Radiator_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 755 Restaurant supply store Restaurant_supply_store Retail.Stores.Restaurant_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 757 Rice shop Rice_shop Retail.Stores.Rice_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 714 Produce market Produce_market Retail.Markets.Produce_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 746 Real estate rental agency Real_estate_rental_agency Retail.Rentals.Real_estate_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 743 Real estate attorney Real_estate_attorney Professional_Services.Legal.Real_estate_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 701 Pond contractor Pond_contractor Home_Services.Contractors.Pond_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 736 Railing contractor Railing_contractor Home_Services.Contractors.Railing_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 737 Railroad contractor Railroad_contractor Home_Services.Contractors.Railroad_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 760 Remodeler Remodeler Home_Services.Contractors.Remodeler 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 779 School School Education.Schools.School 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 780 School administration office School_administration_office Education.Schools.School_administration_office 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 781 School center School_center Education.Schools.School_center 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 773 Sand plant Sand_plant Industrial.Manufacturing.Sand_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 806 Sheriff's department Sheriff_s_department Government.Public_Safety.Sheriff_s_department 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 821 Social services organization Social_services_organization Government.Social_Services.Social_services_organization 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 793 Rugby club Rugby_club Community.Clubs.Rugby_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 764 Seitai Seitai Healthcare.Alternative.Seitai 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 796 Sculpture Sculpture Entertainment.Arts.Sculpture 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 819 Soapland Soapland Entertainment.Nightlife.Soapland 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 797 Seaplane base Seaplane_base Travel_Hospitality.Airlines.Seaplane_base 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 788 Seating systems provider Seating_systems_provider Industrial.Manufacturing.Seating_systems_provider 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 807 Shipping service Shipping_service Industrial.Logistics.Shipping_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 794 Sanitation service Sanitation_service Industrial.Waste.Sanitation_service 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 814 Singles organization Singles_organization Community.Organizations.Singles_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 800 Sharpening service Sharpening_service Home_Services.Repair.Sharpening_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 769 Sacem Sacem Government.Offices.Sacem 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 822 Societe de Flocage Societe_de_Flocage Industrial.Manufacturing.Societe_de_Flocage 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4075 Medical Services Medical_Services Healthcare.Medical_Services 2 4038 58 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4076 Veterinary Veterinary Healthcare.Veterinary 2 4038 27 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4077 Wellness & Spa Wellness Healthcare.Wellness 2 4038 48 2026-01-30 19:41:53.871757 2026-01-30 19:41:53.871757 \N 4078 Legal Legal Professional_Services.Legal 2 4039 44 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4079 Accounting & Tax Accounting Professional_Services.Accounting 2 4039 19 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4080 Consulting Consulting Professional_Services.Consulting 2 4039 52 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4081 Marketing & Advertising Marketing Professional_Services.Marketing 2 4039 8 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4082 IT & Technology IT Professional_Services.IT 2 4039 23 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4083 Engineering Engineering Professional_Services.Engineering 2 4039 48 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4084 Creative Services Creative Professional_Services.Creative 2 4039 50 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4085 Agencies Agencies Professional_Services.Agencies 2 4039 47 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4086 Contractors Contractors Home_Services.Contractors 2 4040 101 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 782 School cafeteria School_cafeteria Food_Beverage.Cafes_Coffee.School_cafeteria 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 768 Saab dealer Saab_dealer Automotive.Dealers.Saab_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 772 Salvage dealer Salvage_dealer Automotive.Dealers.Salvage_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 777 Saturn dealer Saturn_dealer Automotive.Dealers.Saturn_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 787 Seat dealer Seat_dealer Automotive.Dealers.Seat_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 816 Skoda dealer Skoda_dealer Automotive.Dealers.Skoda_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 818 Smart dealer Smart_dealer Automotive.Dealers.Smart_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 763 Hematologist Hematologist Healthcare.Doctors.Hematologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 799 Hepatologist Hepatologist Healthcare.Doctors.Hepatologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 767 Sauna Sauna Healthcare.Wellness.Sauna 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 778 Sauna store Sauna_store Healthcare.Wellness.Sauna_store 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 795 Sauna club Sauna_club Healthcare.Wellness.Sauna_club 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 765 Rugby store Rugby_store Retail.Stores.Rugby_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 770 Salad shop Salad_shop Retail.Stores.Salad_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 775 Saree Shop Saree_Shop Retail.Stores.Saree_Shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 790 Second hand store Second_hand_store Retail.Stores.Second_hand_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 808 Shoe store Shoe_store Retail.Stores.Shoe_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 812 Silk store Silk_store Retail.Stores.Silk_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 815 Skate shop Skate_shop Retail.Stores.Skate_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 820 Soba noodle shop Soba_noodle_shop Retail.Stores.Soba_noodle_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 785 Seafood market Seafood_market Retail.Markets.Seafood_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 811 Siding contractor Siding_contractor Home_Services.Contractors.Siding_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 798 Security system installation service Security_system_installation_service Home_Services.Security.Security_system_installation_service 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 834 Ski club Ski_club Entertainment.Sports.Ski_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 835 Soccer club Soccer_club Entertainment.Sports.Soccer_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 836 Soccer practice Soccer_practice Entertainment.Sports.Soccer_practice 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 844 Stadium Stadium Entertainment.Sports.Stadium 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 849 State park State_park Entertainment.Parks.State_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 839 Intensivist Intensivist Healthcare.Doctors.Intensivist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 863 Super public bath Super_public_bath Healthcare.Wellness.Super_public_bath 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 832 Southern restaurant (US) Southern_restaurant_US Food_Beverage.Restaurants.Southern_restaurant_US 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 858 Sugar shack Sugar_shack Food_Beverage.Food_Production.Sugar_shack 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 871 Steel fabricator Steel_fabricator Industrial.Manufacturing.Steel_fabricator 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 840 Spice exporter Spice_exporter Industrial.Logistics.Spice_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 884 Tax assessor Tax_assessor Professional_Services.Accounting.Tax_assessor 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 891 Tea exporter Tea_exporter Industrial.Logistics.Tea_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 850 State police State_police Government.Public_Safety.State_police 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 886 Tax department Tax_department Professional_Services.Accounting.Tax_department 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 887 Tax preparation service Tax_preparation_service Professional_Services.Accounting.Tax_preparation_service 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 874 Synagogue Synagogue Religious.Other_Religions.Synagogue 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 882 Taoist temple Taoist_temple Religious.Other_Religions.Taoist_temple 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 847 Studying center Studying_center Education.Tutoring.Studying_center 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 870 Stable Stable Agriculture.Livestock.Stable 3 4141 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 888 Taxi stand Taxi_stand Travel_Hospitality.Transportation.Taxi_stand 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 889 Taxidermist Taxidermist Travel_Hospitality.Transportation.Taxidermist 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 833 Serviced apartment Serviced_apartment Real_Estate.Agents.Serviced_apartment 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 843 Student union Student_union Community.Clubs.Student_union 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 869 Swim club Swim_club Community.Clubs.Swim_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 848 Stone carving Stone_carving Industrial.Manufacturing.Stone_carving 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 856 Stylist Stylist Home_Services.Personal.Stylist 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4087 Plumbing Plumbing Home_Services.Plumbing 2 4040 6 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4088 Electrical Electrical Home_Services.Electrical 2 4040 5 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4089 HVAC HVAC Home_Services.HVAC 2 4040 4 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4090 Cleaning Cleaning Home_Services.Cleaning 2 4040 26 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4091 Landscaping Landscaping Home_Services.Landscaping 2 4040 11 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4092 Repair Repair Home_Services.Repair 2 4040 82 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4093 Moving & Storage Moving Home_Services.Moving 2 4040 20 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4094 Security Security Home_Services.Security 2 4040 8 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4095 Personal Care Personal Home_Services.Personal 2 4040 28 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4096 Schools Schools Education.Schools 2 4041 124 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4097 Universities Universities Education.Universities 2 4041 34 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4098 Training & Vocational Training Education.Training 2 4041 10 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 841 Sports bar Sports_bar Food_Beverage.Bars_Nightlife.Sports_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 846 Stand bar Stand_bar Food_Beverage.Bars_Nightlife.Stand_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 857 Subaru dealer Subaru_dealer Automotive.Dealers.Subaru_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 890 TB clinic TB_clinic Healthcare.Clinics.TB_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 837 Spa Spa Healthcare.Wellness.Spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 853 Home audio store Home_audio_store Retail.Stores.Home_audio_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 854 Store Store Retail.Stores.Store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 852 Steel distributor Steel_distributor Retail.Wholesale.Steel_distributor 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 864 Supermarket Supermarket Retail.Grocery.Supermarket 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 885 Tax consultant Tax_consultant Professional_Services.Consulting.Tax_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 845 Stair contractor Stair_contractor Home_Services.Contractors.Stair_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 855 Stucco contractor Stucco_contractor Home_Services.Contractors.Stucco_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 862 Sunroom contractor Sunroom_contractor Home_Services.Contractors.Sunroom_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 872 Storage facility Storage_facility Home_Services.Moving.Storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 879 Tailor Tailor Home_Services.Personal.Tailor 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 897 Telecommunication school Telecommunication_school Education.Schools.Telecommunication_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 926 Trade school Trade_school Education.Schools.Trade_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 922 Towing equipment provider Towing_equipment_provider Automotive.Repair.Towing_equipment_provider 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 895 Technical university Technical_university Education.Universities.Technical_university 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 898 Telecommunications service provider Telecommunications_service_provider Professional_Services.IT.Telecommunications_service_provider 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 941 University University Education.Universities.University 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 943 University library University_library Education.Universities.University_library 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 929 Training center Training_center Education.Training.Training_center 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 903 Tennis instructor Tennis_instructor Education.Tutoring.Tennis_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 950 Tribal headquarters Tribal_headquarters Government.Offices.Tribal_headquarters 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 908 Theater company Theater_company Entertainment.Arts.Theater_company 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 909 Theater production Theater_production Entertainment.Arts.Theater_production 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 910 Theme park Theme_park Entertainment.Amusement.Theme_park 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 940 Unitarian Universalist Church Unitarian_Universalist_Church Religious.Christian.Unitarian_Universalist_Church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 928 Train depot Train_depot Travel_Hospitality.Transportation.Train_depot 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 931 Truck stop Truck_stop Travel_Hospitality.Travel_Services.Truck_stop 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 893 Tea market place Tea_market_place Retail.Markets.Tea_market_place 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 948 Transit depot Transit_depot Travel_Hospitality.Transportation.Transit_depot 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4099 Tutoring & Lessons Tutoring Education.Tutoring 2 4041 44 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4100 Libraries Libraries Education.Libraries 2 4041 7 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4101 Childcare Childcare Education.Childcare 2 4041 12 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4102 Sports & Recreation Sports Entertainment.Sports 2 4042 122 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4103 Arts & Culture Arts Entertainment.Arts 2 4042 81 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4104 Fitness & Gyms Fitness Entertainment.Fitness 2 4042 25 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4105 Parks & Outdoors Parks Entertainment.Parks 2 4042 55 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4106 Amusement & Gaming Amusement Entertainment.Amusement 2 4042 28 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4107 Events & Venues Venues Entertainment.Venues 2 4042 28 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4108 Movies & Theater Movies Entertainment.Movies 2 4042 1 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4109 Nightlife Nightlife Entertainment.Nightlife 2 4042 9 2026-01-30 19:42:06.525404 2026-01-30 19:42:06.525404 \N 4110 Manufacturing Manufacturing Industrial.Manufacturing 2 4043 144 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4111 Construction Construction Industrial.Construction 2 4043 20 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 892 Tea house Tea_house Food_Beverage.Cafes_Coffee.Tea_house 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 924 Toyota dealer Toyota_dealer Automotive.Dealers.Toyota_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 925 Tractor dealer Tractor_dealer Automotive.Dealers.Tractor_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 927 Trailer dealer Trailer_dealer Automotive.Dealers.Trailer_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 932 Truck dealer Truck_dealer Automotive.Dealers.Truck_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 916 Tire service Tire_service Automotive.Parts.Tire_service 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 904 Internist Internist Healthcare.Doctors.Internist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 930 Kinesiologist Kinesiologist Healthcare.Doctors.Kinesiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 953 Neurologist Neurologist Healthcare.Doctors.Neurologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 942 University hospital University_hospital Healthcare.Hospitals.University_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 911 Thermal power plant Thermal_power_plant Healthcare.Wellness.Thermal_power_plant 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 894 Tea store Tea_store Retail.Stores.Tea_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 915 Tile store Tile_store Retail.Stores.Tile_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 921 Tortilla shop Tortilla_shop Retail.Stores.Tortilla_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 923 Toy store Toy_store Retail.Stores.Toy_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 945 Used bicycle shop Used_bicycle_shop Retail.Stores.Used_bicycle_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 946 Used clothing store Used_clothing_store Retail.Stores.Used_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 947 Used game store Used_game_store Retail.Stores.Used_game_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 900 Temp agency Temp_agency Professional_Services.Agencies.Temp_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 914 Tile contractor Tile_contractor Home_Services.Contractors.Tile_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 949 Tree service Tree_service Home_Services.Landscaping.Tree_service 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 974 Vocational school Vocational_school Education.Schools.Vocational_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1018 Paper mill Paper_mill Industrial.Manufacturing.Paper_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1015 Water utility company Water_utility_company Industrial.Utilities.Water_utility_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 958 Vehicle exporter Vehicle_exporter Industrial.Logistics.Vehicle_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 961 Orthoptist Orthoptist Healthcare.Doctors.Orthoptist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 985 Wine club Wine_club Community.Clubs.Wine_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 972 Vineyard Vineyard Agriculture.Farms.Vineyard 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1008 Dietitian Dietitian Healthcare.Doctors.Dietitian 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1009 Doula Doula Healthcare.Doctors.Doula 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1011 Nutritionist Nutritionist Healthcare.Doctors.Nutritionist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1004 Birth center Birth_center Healthcare.Clinics.Birth_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1006 Perinatal center Perinatal_center Healthcare.Clinics.Perinatal_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1007 Surgical center Surgical_center Healthcare.Clinics.Surgical_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1010 Lactation service Lactation_service Healthcare.Clinics.Lactation_service 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1016 Cannery Cannery Food_Beverage.Food_Production.Cannery 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1017 Meat packer Meat_packer Food_Beverage.Food_Production.Meat_packer 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1013 Electrical substation Electrical_substation Home_Services.Electrical.Electrical_substation 3 4088 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1014 Water purification company Water_purification_company Home_Services.Plumbing.Water_purification_company 3 4087 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 971 Video production service Video_production_service Professional_Services.Creative.Video_production_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1012 Industrial design company Industrial_design_company Professional_Services.Creative.Industrial_design_company 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 983 Video karaoke Video_karaoke Entertainment.Amusement.Video_karaoke 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 984 Villa Villa Travel_Hospitality.Hotels.Villa 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 968 Welder Welder Industrial.Manufacturing.Welder 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 967 Wine cellar Wine_cellar Retail.Stores.Wine_cellar 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4112 Utilities Utilities Industrial.Utilities 2 4043 17 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4114 Waste & Recycling Waste Industrial.Waste 2 4043 14 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4115 Mining Mining Industrial.Mining 2 4043 5 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4116 Offices Offices Government.Offices 2 4044 73 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4117 Public Safety Public_Safety Government.Public_Safety 2 4044 33 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4118 Courts & Legal Courts Government.Courts 2 4044 8 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4119 Social Services Social_Services Government.Social_Services 2 4044 37 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4120 Postal Postal Government.Postal 2 4044 1 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4121 Christian Christian Religious.Christian 2 4045 59 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4122 Other Religions Other_Religions Religious.Other_Religions 2 4045 23 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4123 Spiritual Services Spiritual Religious.Spiritual 2 4045 21 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4124 Hotels & Lodging Hotels Travel_Hospitality.Hotels 2 4046 32 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4125 Travel Services Travel_Services Travel_Hospitality.Travel_Services 2 4046 13 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4126 Airlines & Airports Airlines Travel_Hospitality.Airlines 2 4046 12 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4127 Attractions Attractions Travel_Hospitality.Attractions 2 4046 26 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 979 Wine bar Wine_bar Food_Beverage.Bars_Nightlife.Wine_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 981 Winery Winery Food_Beverage.Bars_Nightlife.Winery 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 959 Neurophysiologist Neurophysiologist Healthcare.Doctors.Neurophysiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 960 Oncologist Oncologist Healthcare.Doctors.Oncologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 966 Proctologist Proctologist Healthcare.Doctors.Proctologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 986 Prosthodontist Prosthodontist Healthcare.Doctors.Prosthodontist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 987 Radiologist Radiologist Healthcare.Doctors.Radiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 988 Rheumatologist Rheumatologist Healthcare.Doctors.Rheumatologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 964 Veterans hospital Veterans_hospital Healthcare.Hospitals.Veterans_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 955 Variety store Variety_store Retail.Stores.Variety_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 969 Video store Video_store Retail.Stores.Video_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 973 Vitamin & supplements store Vitamin_supplements_store Retail.Stores.Vitamin_supplements_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 975 Wedding store Wedding_store Retail.Stores.Wedding_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 978 Wicker store Wicker_store Retail.Stores.Wicker_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 980 Wine store Wine_store Retail.Stores.Wine_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1029 Vehicle wrapping service Vehicle_wrapping_service Automotive.Repair.Vehicle_wrapping_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1041 Geriatrician Geriatrician Healthcare.Doctors.Geriatrician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1034 Brasserie Brasserie Food_Beverage.Restaurants.Brasserie 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1028 Water damage restoration service Water_damage_restoration_service Home_Services.Repair.Water_damage_restoration_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1071 Waldorf kindergarten Waldorf_kindergarten Education.Schools.Waldorf_kindergarten 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1020 Digital printer Digital_printer Professional_Services.Creative.Digital_printer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1024 Screen printer Screen_printer Professional_Services.Creative.Screen_printer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1079 Video duplication service Video_duplication_service Professional_Services.Creative.Video_duplication_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1080 Archery range Archery_range Entertainment.Sports.Archery_range 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1025 Sculptor Sculptor Entertainment.Arts.Sculptor 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1072 Conservatory of music Conservatory_of_music Entertainment.Arts.Conservatory_of_music 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1074 Music conservatory Music_conservatory Entertainment.Arts.Music_conservatory 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1073 Faculty of science Faculty_of_science Education.Universities.Faculty_of_science 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1030 Arboretum Arboretum Entertainment.Parks.Arboretum 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1075 Seminary Seminary Education.Schools.Seminary 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1076 Academic department Academic_department Education.Universities.Academic_department 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1058 Aerobics instructor Aerobics_instructor Education.Tutoring.Aerobics_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1048 Orchestra Orchestra Entertainment.Arts.Orchestra 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1070 Head start center Head_start_center Entertainment.Arts.Head_start_center 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1053 Special educator Special_educator Education.Tutoring.Special_educator 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1052 Serviced accommodation Serviced_accommodation Travel_Hospitality.Hotels.Serviced_accommodation 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1054 Tent rental service Tent_rental_service Retail.Rentals.Tent_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1055 Turnery Turnery Industrial.Manufacturing.Turnery 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1026 Steel erector Steel_erector Industrial.Construction.Steel_erector 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1056 Plating service Plating_service Industrial.Construction.Plating_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1057 Water jet cutting service Water_jet_cutting_service Industrial.Construction.Water_jet_cutting_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1037 Basilica Basilica Religious.Christian.Basilica 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1023 Piano maker Piano_maker Industrial.Manufacturing.Piano_maker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1027 Stringed instrument maker Stringed_instrument_maker Industrial.Manufacturing.Stringed_instrument_maker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1045 Institute of Geography and Statistics Institute_of_Geography_and_Statistics Government.Offices.Institute_of_Geography_and_Statistics 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1022 Lamination service Lamination_service Industrial.Manufacturing.Lamination_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4128 Transportation Transportation Travel_Hospitality.Transportation 2 4046 26 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4129 Banks Banks Finance.Banks 2 4047 20 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4130 Insurance Insurance Finance.Insurance 2 4047 11 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 1019 Water mill Water_mill Industrial.Manufacturing.Water_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1044 Holiday apartment rental Holiday_apartment_rental Retail.Rentals.Holiday_apartment_rental 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1077 Animation studio Animation_studio Professional_Services.Creative.Animation_studio 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1021 Foundry Foundry Industrial.Manufacturing.Foundry 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1047 Metal fabricator Metal_fabricator Industrial.Manufacturing.Metal_fabricator 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1036 Scaffolding service Scaffolding_service Industrial.Construction.Scaffolding_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1042 Heliport Heliport Industrial.Logistics.Heliport 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1078 Portrait studio Portrait_studio Industrial.Logistics.Portrait_studio 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1038 Catholic cathedral Catholic_cathedral Religious.Christian.Catholic_cathedral 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1039 Gurudwara Gurudwara Religious.Other_Religions.Gurudwara 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1031 Astrologer Astrologer Religious.Spiritual.Astrologer 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1043 Holiday apartment Holiday_apartment Real_Estate.Agents.Holiday_apartment 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1032 BMX club BMX_club Community.Clubs.BMX_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1035 Bridge club Bridge_club Community.Clubs.Bridge_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1040 Equestrian club Equestrian_club Community.Clubs.Equestrian_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1046 Karate club Karate_club Community.Clubs.Karate_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1090 Onsen Onsen Healthcare.Wellness.Onsen 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1094 Foot bath Foot_bath Healthcare.Wellness.Foot_bath 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1147 Conveyancer Conveyancer Professional_Services.Legal.Conveyancer 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1144 Estate appraiser Estate_appraiser Professional_Services.Accounting.Estate_appraiser 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1082 Ice hockey rink Ice_hockey_rink Entertainment.Sports.Ice_hockey_rink 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1139 Typing service Typing_service Professional_Services.Agencies.Typing_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1081 Diving center Diving_center Entertainment.Sports.Diving_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1084 Rugby Rugby Entertainment.Sports.Rugby 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1086 Velodrome Velodrome Entertainment.Sports.Velodrome 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1083 Rodeo Rodeo Entertainment.Amusement.Rodeo 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1098 Circus Circus Entertainment.Amusement.Circus 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1109 Roller coaster Roller_coaster Entertainment.Amusement.Roller_coaster 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1111 Sambodrome Sambodrome Entertainment.Amusement.Sambodrome 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1095 Artist Artist Entertainment.Arts.Artist 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1096 Band Band Entertainment.Arts.Band 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1097 Choir Choir Entertainment.Arts.Choir 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1099 Entertainer Entertainer Entertainment.Venues.Entertainer 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1100 Magician Magician Entertainment.Venues.Magician 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1110 Festival hall Festival_hall Entertainment.Venues.Festival_hall 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1122 City employment department City_employment_department Government.Offices.City_employment_department 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1129 State archive State_archive Government.Offices.State_archive 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1085 Rugby field Rugby_field Entertainment.Sports.Rugby_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1126 Passport agent Passport_agent Industrial.Logistics.Passport_agent 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1127 Passport office Passport_office Industrial.Logistics.Passport_office 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1143 Auditor Auditor Professional_Services.Accounting.Auditor 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1132 City department of transportation City_department_of_transportation Industrial.Logistics.City_department_of_transportation 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1137 Department of Transportation Department_of_Transportation Industrial.Logistics.Department_of_Transportation 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1123 Department of housing Department_of_housing Government.Offices.Department_of_housing 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1128 Registry office Registry_office Government.Offices.Registry_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1114 Army facility Army_facility Government.Public_Safety.Army_facility 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1102 Castle Castle Travel_Hospitality.Attractions.Castle 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1104 Historical landmark Historical_landmark Travel_Hospitality.Attractions.Historical_landmark 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1116 Civil defense Civil_defense Government.Public_Safety.Civil_defense 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1117 Guardia Civil Guardia_Civil Government.Public_Safety.Guardia_Civil 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1135 Weigh station Weigh_station Government.Public_Safety.Weigh_station 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1136 Aadhaar center Aadhaar_center Government.Social_Services.Aadhaar_center 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1092 Protected area Protected_area Travel_Hospitality.Attractions.Protected_area 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1103 Fortress Fortress Travel_Hospitality.Attractions.Fortress 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1105 Observatory Observatory Travel_Hospitality.Attractions.Observatory 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1106 Planetarium Planetarium Travel_Hospitality.Attractions.Planetarium 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1107 Rafting Rafting Travel_Hospitality.Travel_Services.Rafting 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1145 Foreclosure service Foreclosure_service Finance.Lending.Foreclosure_service 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1138 Shredding service Shredding_service Home_Services.Cleaning.Shredding_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1112 Painting Painting Professional_Services.Creative.Painting 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1142 Research and product development Research_and_product_development Professional_Services.Consulting.Research_and_product_development 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1141 Mapping service Mapping_service Professional_Services.Engineering.Mapping_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1121 Archive Archive Government.Offices.Archive 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1089 Lido Lido Travel_Hospitality.Attractions.Lido 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1091 Promenade Promenade Travel_Hospitality.Attractions.Promenade 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1101 Pyrotechnician Pyrotechnician Entertainment.Venues.Pyrotechnician 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4131 Lending Lending Finance.Lending 2 4047 9 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 1177 Adult education school Adult_education_school Education.Schools.Adult_education_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1184 Antenna service Antenna_service Home_Services.Electrical.Antenna_service 3 4088 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1152 Recruiter Recruiter Professional_Services.Consulting.Recruiter 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1191 After school program After_school_program Education.Schools.After_school_program 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1154 Website designer Website_designer Professional_Services.IT.Website_designer 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1149 Media house Media_house Professional_Services.Creative.Media_house 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1153 Resume service Resume_service Professional_Services.Agencies.Resume_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1161 Adult foster care service Adult_foster_care_service Government.Social_Services.Adult_foster_care_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1195 Agricultural high school Agricultural_high_school Education.Schools.Agricultural_high_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1156 Jeweler Jeweler Retail.Stores.Jeweler 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1202 Aikido school Aikido_school Education.Schools.Aikido_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1157 Kiosk Kiosk Retail.Stores.Kiosk 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1160 Adult day care center Adult_day_care_center Education.Childcare.Adult_day_care_center 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1164 Acrobatic diving pool Acrobatic_diving_pool Entertainment.Sports.Acrobatic_diving_pool 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1171 Adventure sports center Adventure_sports_center Entertainment.Sports.Adventure_sports_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1185 Aerial sports center Aerial_sports_center Entertainment.Sports.Aerial_sports_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1166 Aboriginal art gallery Aboriginal_art_gallery Entertainment.Arts.Aboriginal_art_gallery 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1150 Commercial agent Commercial_agent Retail.Wholesale.Commercial_agent 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1167 Adult entertainment club Adult_entertainment_club Entertainment.Nightlife.Adult_entertainment_club 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1196 Agricultural machinery manufacturer Agricultural_machinery_manufacturer Industrial.Manufacturing.Agricultural_machinery_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1182 Air force base Air_force_base Government.Public_Safety.Air_force_base 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1165 Abbey Abbey Religious.Christian.Abbey 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1151 Food broker Food_broker Retail.Wholesale.Food_broker 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1169 Abundant Life church Abundant_Life_church Religious.Christian.Abundant_Life_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1158 Priest Priest Religious.Spiritual.Priest 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1159 Shelter Shelter Community.Nonprofits.Shelter 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1193 Agricultural association Agricultural_association Community.Clubs.Agricultural_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1197 Agricultural organization Agricultural_organization Agriculture.Ag_Services.Agricultural_organization 3 4140 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1163 Aboriginal and Torres Strait Islander organisation Aboriginal_and_Torres_Strait_Islander_organisation Community.Organizations.Aboriginal_and_Torres_Strait_Islander_organisation 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1190 Airbrushing service Airbrushing_service Professional_Services.Creative.Airbrushing_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1148 Executor Executor Professional_Services.Legal.Executor 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4132 Investment Investment Finance.Investment 2 4047 15 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4133 Agents & Brokers Agents Real_Estate.Agents 2 4048 21 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 1170 Açaí shop A_a_shop Retail.Stores.A_a_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1174 Acrylic store Acrylic_store Retail.Stores.Acrylic_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1176 Adult DVD store Adult_DVD_store Retail.Stores.Adult_DVD_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1172 Accounting firm Accounting_firm Professional_Services.Accounting.Accounting_firm 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1173 Acoustical consultant Acoustical_consultant Professional_Services.Consulting.Acoustical_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1179 Advertising agency Advertising_agency Professional_Services.Marketing.Advertising_agency 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1189 Aeronautical engineer Aeronautical_engineer Professional_Services.Engineering.Aeronautical_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1194 Agricultural engineer Agricultural_engineer Professional_Services.Engineering.Agricultural_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1180 Commercial photographer Commercial_photographer Professional_Services.Creative.Commercial_photographer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1183 Aerial photographer Aerial_photographer Professional_Services.Creative.Aerial_photographer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1175 Adoption agency Adoption_agency Professional_Services.Agencies.Adoption_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1205 Air conditioning contractor Air_conditioning_contractor Home_Services.Contractors.Air_conditioning_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1206 Air conditioning repair service Air_conditioning_repair_service Home_Services.HVAC.Air_conditioning_repair_service 3 4089 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1186 Air compressor repair service Air_compressor_repair_service Home_Services.Repair.Air_compressor_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1234 Amateur theater Amateur_theater Entertainment.Arts.Amateur_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1240 Amusement park Amusement_park Entertainment.Amusement.Amusement_park 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1241 Amusement park ride Amusement_park_ride Entertainment.Amusement.Amusement_park_ride 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1214 Aircraft manufacturer Aircraft_manufacturer Industrial.Manufacturing.Aircraft_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1224 Alcohol manufacturer Alcohol_manufacturer Industrial.Manufacturing.Alcohol_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1219 Alternative medicine practitioner Alternative_medicine_practitioner Healthcare.Alternative.Alternative_medicine_practitioner 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1229 Alliance church Alliance_church Religious.Christian.Alliance_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1248 Anglican church Anglican_church Religious.Christian.Anglican_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1244 Animal control service Animal_control_service Healthcare.Veterinary.Animal_control_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1261 Apostolic church Apostolic_church Religious.Christian.Apostolic_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1221 Airport shuttle service Airport_shuttle_service Travel_Hospitality.Airlines.Airport_shuttle_service 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1245 Animal rescue service Animal_rescue_service Healthcare.Veterinary.Animal_rescue_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1259 Apartment building Apartment_building Real_Estate.Agents.Apartment_building 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1247 Animal shelter Animal_shelter Community.Nonprofits.Animal_shelter 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1252 Animal protection organization Animal_protection_organization Healthcare.Veterinary.Animal_protection_organization 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1243 Appliance rental service Appliance_rental_service Home_Services.Repair.Appliance_rental_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1256 Antique furniture restoration service Antique_furniture_restoration_service Home_Services.Repair.Antique_furniture_restoration_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1254 Appraiser Appraiser Professional_Services.Accounting.Appraiser 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1250 Aquatic center Aquatic_center Entertainment.Sports.Aquatic_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1255 Apprenticeship center Apprenticeship_center Education.Training.Apprenticeship_center 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1253 Anganwadi center Anganwadi_center Education.Childcare.Anganwadi_center 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1212 Aircraft maintenance company Aircraft_maintenance_company Travel_Hospitality.Airlines.Aircraft_maintenance_company 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1217 Aircraft rental service Aircraft_rental_service Travel_Hospitality.Airlines.Aircraft_rental_service 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1220 Airplane Airplane Travel_Hospitality.Airlines.Airplane 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1225 Airstrip Airstrip Travel_Hospitality.Airlines.Airstrip 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1228 Alcohol retail monopoly Alcohol_retail_monopoly Retail.Stores.Alcohol_retail_monopoly 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1246 Anodizing service Anodizing_service Industrial.Construction.Anodizing_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1213 Aluminum welder Aluminum_welder Industrial.Manufacturing.Aluminum_welder 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1215 Aluminum window Aluminum_window Home_Services.Contractors.Aluminum_window 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1251 Animal watering hole Animal_watering_hole Agriculture.Livestock.Animal_watering_hole 3 4141 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4134 Property Management Property_Management Real_Estate.Property_Management 2 4048 12 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4135 Commercial Commercial Real_Estate.Commercial 2 4048 0 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4136 Non-Profits Nonprofits Community.Nonprofits 2 4049 14 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4137 Organizations Organizations Community.Organizations 2 4049 16 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4138 Clubs Clubs Community.Clubs 2 4049 87 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4139 Farms Farms Agriculture.Farms 2 4050 31 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4140 Agricultural Services Ag_Services Agriculture.Ag_Services 2 4050 5 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 4141 Livestock Livestock Agriculture.Livestock 2 4050 4 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 1223 Alcoholism treatment program Alcoholism_treatment_program Healthcare.Mental_Health.Alcoholism_treatment_program 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1235 Ambulance service Ambulance_service Healthcare.Medical_Services.Ambulance_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1207 Air conditioning store Air_conditioning_store Retail.Stores.Air_conditioning_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1211 Airbrushing supply store Airbrushing_supply_store Retail.Stores.Airbrushing_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1218 Airline ticket agency Airline_ticket_agency Professional_Services.Agencies.Airline_ticket_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1209 Air duct cleaning service Air_duct_cleaning_service Home_Services.HVAC.Air_duct_cleaning_service 3 4089 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1263 Appliance repair service Appliance_repair_service Home_Services.Repair.Appliance_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4044 Government Government Government 1 \N 152 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4045 Religious Religious Religious 1 \N 103 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4046 Travel & Hospitality Travel_Hospitality Travel_Hospitality 1 \N 109 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4047 Finance Finance Finance 1 \N 55 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 1275 Architecture school Architecture_school Education.Schools.Architecture_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1301 Athletic club Athletic_club Entertainment.Sports.Athletic_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1303 Athletic park Athletic_park Entertainment.Sports.Athletic_park 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1304 Auto dent removal service Auto_dent_removal_service Automotive.Repair.Auto_dent_removal_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1315 Athletic field Athletic_field Entertainment.Sports.Athletic_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1307 Auto painting Auto_painting Automotive.Repair.Auto_painting 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1316 Athletic track Athletic_track Entertainment.Sports.Athletic_track 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1268 Archaeological museum Archaeological_museum Entertainment.Arts.Archaeological_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1312 Auto restoration service Auto_restoration_service Automotive.Repair.Auto_restoration_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1313 ATV rental service ATV_rental_service Automotive.Rentals.ATV_rental_service 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1265 Appliances customer service Appliances_customer_service Home_Services.Repair.Appliances_customer_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1281 Army museum Army_museum Entertainment.Arts.Army_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1276 Art restoration service Art_restoration_service Home_Services.Repair.Art_restoration_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1272 Architectural designer Architectural_designer Professional_Services.Engineering.Architectural_designer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1287 Art gallery Art_gallery Entertainment.Arts.Art_gallery 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1288 Art museum Art_museum Entertainment.Arts.Art_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1296 Asphalt mixing plant Asphalt_mixing_plant Industrial.Manufacturing.Asphalt_mixing_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1274 Architecture firm Architecture_firm Professional_Services.Engineering.Architecture_firm 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1286 Art studio Art_studio Entertainment.Arts.Art_studio 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1280 Army barracks Army_barracks Government.Public_Safety.Army_barracks 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1278 Armenian church Armenian_church Religious.Christian.Armenian_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1297 Assemblies of God church Assemblies_of_God_church Religious.Christian.Assemblies_of_God_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1305 ATM ATM Finance.Banks.ATM 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1270 Architects association Architects_association Community.Clubs.Architects_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1277 Armed forces association Armed_forces_association Community.Clubs.Armed_forces_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1290 Art school Art_school Education.Schools.Art_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1285 Assistante maternelle Assistante_maternelle Education.Childcare.Assistante_maternelle 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1298 Assisted living facility Assisted_living_facility Government.Social_Services.Assisted_living_facility 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1300 Asylum center Asylum_center Government.Social_Services.Asylum_center 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1309 Auction house Auction_house Retail.Markets.Auction_house 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1302 Audiovisual equipment rental service Audiovisual_equipment_rental_service Retail.Rentals.Audiovisual_equipment_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4048 Real Estate Real_Estate Real_Estate 1 \N 33 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4049 Community Community Community 1 \N 117 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4050 Agriculture Agriculture Agriculture 1 \N 40 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 1266 Applied behavior analysis therapist Applied_behavior_analysis_therapist Healthcare.Mental_Health.Applied_behavior_analysis_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1282 Aromatherapy class Aromatherapy_class Healthcare.Alternative.Aromatherapy_class 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1283 Aromatherapy service Aromatherapy_service Healthcare.Alternative.Aromatherapy_service 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1264 Appliance store Appliance_store Retail.Stores.Appliance_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1267 Aquarium shop Aquarium_shop Retail.Stores.Aquarium_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1269 Archery store Archery_store Retail.Stores.Archery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1273 Architectural salvage store Architectural_salvage_store Retail.Stores.Architectural_salvage_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1306 Attorney referral service Attorney_referral_service Professional_Services.Legal.Attorney_referral_service 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1311 Audio visual consultant Audio_visual_consultant Professional_Services.Consulting.Audio_visual_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1271 Architectural and engineering model maker Architectural_and_engineering_model_maker Professional_Services.Engineering.Architectural_and_engineering_model_maker 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1295 Asphalt contractor Asphalt_contractor Home_Services.Contractors.Asphalt_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1320 Auto air conditioning service Auto_air_conditioning_service Home_Services.HVAC.Auto_air_conditioning_service 3 4089 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1308 ATV repair shop ATV_repair_shop Home_Services.Repair.ATV_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1318 Audio visual equipment repair service Audio_visual_equipment_repair_service Home_Services.Repair.Audio_visual_equipment_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1352 Baby swimming school Baby_swimming_school Education.Schools.Baby_swimming_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1363 Ballet school Ballet_school Education.Schools.Ballet_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1355 Badminton court Badminton_court Entertainment.Sports.Badminton_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1373 Baseball club Baseball_club Entertainment.Sports.Baseball_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1374 Basketball club Basketball_club Entertainment.Sports.Basketball_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1364 Ballet theater Ballet_theater Entertainment.Arts.Ballet_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1323 Auto broker Auto_broker Automotive.Repair.Auto_broker 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1377 Beach club Beach_club Entertainment.Parks.Beach_club 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1378 Beach pavillion Beach_pavillion Entertainment.Parks.Beach_pavillion 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1381 Beach volleyball club Beach_volleyball_club Entertainment.Parks.Beach_volleyball_club 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1371 Banquet hall Banquet_hall Entertainment.Venues.Banquet_hall 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1372 Baptist church Baptist_church Religious.Christian.Baptist_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1346 Aviation training institute Aviation_training_institute Travel_Hospitality.Airlines.Aviation_training_institute 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1369 Bankruptcy service Bankruptcy_service Finance.Banks.Bankruptcy_service 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1329 Auto insurance agency Auto_insurance_agency Finance.Insurance.Auto_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1354 Badminton club Badminton_club Community.Clubs.Badminton_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1326 Auto electrical service Auto_electrical_service Automotive.Repair.Auto_electrical_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1341 Auto window tinting service Auto_window_tinting_service Automotive.Repair.Auto_window_tinting_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1342 Auto rickshaw stand Auto_rickshaw_stand Automotive.Repair.Auto_rickshaw_stand 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1353 Auto upholsterer Auto_upholsterer Automotive.Repair.Auto_upholsterer 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1362 Bail bonds service Bail_bonds_service Professional_Services.Legal.Bail_bonds_service 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1349 Automation company Automation_company Professional_Services.IT.Automation_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1340 Badminton complex Badminton_complex Entertainment.Sports.Badminton_complex 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1343 Balloon artist Balloon_artist Entertainment.Arts.Balloon_artist 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1379 Barbecue area Barbecue_area Entertainment.Parks.Barbecue_area 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1335 Ballroom dance instructor Ballroom_dance_instructor Entertainment.Fitness.Ballroom_dance_instructor 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1339 Childminder Childminder Education.Childcare.Childminder 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1358 Bahá'í house of worship Bah_house_of_worship Religious.Other_Religions.Bah_house_of_worship 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1322 Auto bodywork mechanic Auto_bodywork_mechanic Automotive.Repair.Auto_bodywork_mechanic 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1348 Ayurvedic clinic Ayurvedic_clinic Healthcare.Clinics.Ayurvedic_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1380 Barber school Barber_school Healthcare.Wellness.Barber_school 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1324 Auto care products store Auto_care_products_store Retail.Stores.Auto_care_products_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1325 Auto chemistry shop Auto_chemistry_shop Retail.Stores.Auto_chemistry_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1336 Auto spring shop Auto_spring_shop Retail.Stores.Auto_spring_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1337 Auto sunroof shop Auto_sunroof_shop Retail.Stores.Auto_sunroof_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1350 Baby clothing store Baby_clothing_store Retail.Stores.Baby_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1356 Bag shop Bag_shop Retail.Stores.Bag_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1357 Bagel shop Bagel_shop Retail.Stores.Bagel_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1368 Bankruptcy attorney Bankruptcy_attorney Professional_Services.Legal.Bankruptcy_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1345 Aviation consultant Aviation_consultant Professional_Services.Consulting.Aviation_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1338 Auto tag agency Auto_tag_agency Professional_Services.Agencies.Auto_tag_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1365 Balloon ride tour agency Balloon_ride_tour_agency Professional_Services.Agencies.Balloon_ride_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1375 Bathroom remodeler Bathroom_remodeler Home_Services.Contractors.Bathroom_remodeler 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1351 Automobile storage facility Automobile_storage_facility Home_Services.Moving.Automobile_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1387 Bartending school Bartending_school Education.Schools.Bartending_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1422 Berufsfachschule (vocational school with apprenticeship) Berufsfachschule_vocational_school_with_apprenticeship Education.Schools.Berufsfachschule_vocational_school_with_apprenticeship 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1427 Bilingual preschool Bilingual_preschool Education.Schools.Bilingual_preschool 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1383 Bariatric surgeon Bariatric_surgeon Healthcare.Doctors.Bariatric_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1435 Bonesetting house Bonesetting_house Healthcare.Alternative.Bonesetting_house 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1428 Bilingual school Bilingual_school Education.Schools.Bilingual_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1441 School for the visually impaired School_for_the_visually_impaired Education.Schools.School_for_the_visually_impaired 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1416 Bee relocation service Bee_relocation_service Healthcare.Veterinary.Bee_relocation_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1410 Beauty school Beauty_school Education.Training.Beauty_school 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1437 Body shaping class Body_shaping_class Education.Tutoring.Body_shaping_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1386 Baseball field Baseball_field Entertainment.Sports.Baseball_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1391 Basketball court Basketball_court Entertainment.Sports.Basketball_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1401 Beach volleyball court Beach_volleyball_court Entertainment.Sports.Beach_volleyball_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1426 Bikram yoga studio Bikram_yoga_studio Entertainment.Fitness.Bikram_yoga_studio 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1438 BMX venue BMX_venue Entertainment.Venues.BMX_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1405 Bicycle club Bicycle_club Community.Clubs.Bicycle_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1420 Bird control service Bird_control_service Healthcare.Veterinary.Bird_control_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1388 Bartending service Bartending_service Food_Beverage.Catering.Bartending_service 3 4056 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1414 Bike wash Bike_wash Home_Services.Cleaning.Bike_wash 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1417 Bingo hall Bingo_hall Entertainment.Amusement.Bingo_hall 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1439 Bird watching area Bird_watching_area Entertainment.Parks.Bird_watching_area 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1430 Biochemistry lab Biochemistry_lab Education.Universities.Biochemistry_lab 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1412 Bicycle rental service Bicycle_rental_service Retail.Rentals.Bicycle_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1407 Biotechnology company Biotechnology_company Industrial.Manufacturing.Biotechnology_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1436 Blacksmith Blacksmith Industrial.Manufacturing.Blacksmith 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1434 Boat detailing service Boat_detailing_service Home_Services.Repair.Boat_detailing_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1402 Beauty products vending machine Beauty_products_vending_machine Retail.Stores.Beauty_products_vending_machine 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1395 Battery manufacturer Battery_manufacturer Automotive.Parts.Battery_manufacturer 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1431 Biofeedback therapist Biofeedback_therapist Healthcare.Mental_Health.Biofeedback_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1433 Blood donation center Blood_donation_center Healthcare.Medical_Services.Blood_donation_center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1389 Baseball goods store Baseball_goods_store Retail.Stores.Baseball_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1393 Bathroom supply store Bathroom_supply_store Retail.Stores.Bathroom_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1394 Batik clothing store Batik_clothing_store Retail.Stores.Batik_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1399 Beach clothing store Beach_clothing_store Retail.Stores.Beach_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1423 Betting agency Betting_agency Professional_Services.Agencies.Betting_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1392 Basketball court contractor Basketball_court_contractor Home_Services.Contractors.Basketball_court_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1398 Beach cleaning service Beach_cleaning_service Home_Services.Cleaning.Beach_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1440 Blast cleaning service Blast_cleaning_service Home_Services.Cleaning.Blast_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1424 Bicycle repair shop Bicycle_repair_shop Home_Services.Repair.Bicycle_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1450 Boarding school Boarding_school Education.Schools.Boarding_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1488 Boys' high school Boys_high_school Education.Schools.Boys_high_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1459 Bocce ball court Bocce_ball_court Entertainment.Sports.Bocce_ball_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1447 Birth control center Birth_control_center Healthcare.Clinics.Birth_control_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1449 Bistro Bistro Food_Beverage.Restaurants.Bistro 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1483 Bowling alley Bowling_alley Entertainment.Sports.Bowling_alley 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1484 Bowling club Bowling_club Entertainment.Sports.Bowling_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1475 Boxing ring Boxing_ring Entertainment.Fitness.Boxing_ring 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1487 Boxing gym Boxing_gym Entertainment.Fitness.Boxing_gym 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1499 Boxing club Boxing_club Entertainment.Fitness.Boxing_club 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1448 BMX park BMX_park Entertainment.Parks.BMX_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1492 Botanical garden Botanical_garden Entertainment.Parks.Botanical_garden 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1461 Boiler manufacturer Boiler_manufacturer Industrial.Manufacturing.Boiler_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1479 Brazilian pastelaria Brazilian_pastelaria Food_Beverage.Restaurants.Brazilian_pastelaria 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1497 Brick manufacturer Brick_manufacturer Industrial.Manufacturing.Brick_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1503 Bricklayer Bricklayer Home_Services.Contractors.Bricklayer 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1480 Border crossing station Border_crossing_station Government.Public_Safety.Border_crossing_station 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1502 Buddhist temple Buddhist_temple Religious.Other_Religions.Buddhist_temple 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1471 BPO company BPO_company Professional_Services.IT.BPO_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1444 Blueprint service Blueprint_service Professional_Services.Creative.Blueprint_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1478 Bouncy castle hire Bouncy_castle_hire Travel_Hospitality.Attractions.Bouncy_castle_hire 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1464 Blues club Blues_club Community.Clubs.Blues_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1465 Board game club Board_game_club Community.Clubs.Board_game_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1481 Boot camp Boot_camp Entertainment.Sports.Boot_camp 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1466 Boarding house Boarding_house Travel_Hospitality.Hotels.Boarding_house 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1498 Bridge Bridge Travel_Hospitality.Attractions.Bridge 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1467 Boat ramp Boat_ramp Travel_Hospitality.Travel_Services.Boat_ramp 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1468 Boat rental service Boat_rental_service Retail.Rentals.Boat_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1493 Bottle & can redemption center Bottle_can_redemption_center Industrial.Waste.Bottle_can_redemption_center 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1472 Bookbinder Bookbinder Industrial.Manufacturing.Bookbinder 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1445 Birth certificate service Birth_certificate_service Government.Offices.Birth_certificate_service 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1446 BMW motorcycle dealer BMW_motorcycle_dealer Automotive.Dealers.BMW_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1443 Blood bank Blood_bank Healthcare.Medical_Services.Blood_bank 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1458 Blood testing service Blood_testing_service Healthcare.Medical_Services.Blood_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1442 Blinds shop Blinds_shop Retail.Stores.Blinds_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1460 Body piercing shop Body_piercing_shop Retail.Stores.Body_piercing_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1477 Boot store Boot_store Retail.Stores.Boot_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1473 Bookkeeping service Bookkeeping_service Professional_Services.Accounting.Bookkeeping_service 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1470 Book publisher Book_publisher Professional_Services.Creative.Book_publisher 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1456 Boat tour agency Boat_tour_agency Professional_Services.Agencies.Boat_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1489 BPO placement agency BPO_placement_agency Professional_Services.Agencies.BPO_placement_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1491 Branding agency Branding_agency Professional_Services.Agencies.Branding_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1452 Boat builders Boat_builders Home_Services.Contractors.Boat_builders 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1453 Boat cleaning service Boat_cleaning_service Home_Services.Cleaning.Boat_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1455 Boat repair shop Boat_repair_shop Home_Services.Repair.Boat_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1476 Boot repair shop Boot_repair_shop Home_Services.Repair.Boot_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1469 Boat storage facility Boat_storage_facility Home_Services.Moving.Boat_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1560 Capoeira school Capoeira_school Education.Schools.Capoeira_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1530 Business school Business_school Education.Universities.Business_school 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1551 Calligraphy lesson Calligraphy_lesson Education.Tutoring.Calligraphy_lesson 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1529 Business park Business_park Entertainment.Parks.Business_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1549 Camping cabin Camping_cabin Entertainment.Parks.Camping_cabin 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1550 Camping farm Camping_farm Entertainment.Parks.Camping_farm 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1536 Cabaret club Cabaret_club Entertainment.Nightlife.Cabaret_club 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1523 Business banking service Business_banking_service Finance.Banks.Business_banking_service 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1564 Car detailing service Car_detailing_service Automotive.Repair.Car_detailing_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1539 Cannabis club Cannabis_club Community.Clubs.Cannabis_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1540 Canoe and kayak club Canoe_and_kayak_club Community.Clubs.Canoe_and_kayak_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1546 Car leasing service Car_leasing_service Automotive.Rentals.Car_leasing_service 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1552 Pacific Northwest restaurant (Canada) Pacific_Northwest_restaurant_Canada Food_Beverage.Restaurants.Pacific_Northwest_restaurant_Canada 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1510 Building designer Building_designer Home_Services.Contractors.Building_designer 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1514 Building firm Building_firm Home_Services.Contractors.Building_firm 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1517 Building inspector Building_inspector Home_Services.Contractors.Building_inspector 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1518 Building restoration service Building_restoration_service Home_Services.Contractors.Building_restoration_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1524 Business broker Business_broker Professional_Services.Consulting.Business_broker 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1525 Business center Business_center Professional_Services.Consulting.Business_center 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1526 Business development service Business_development_service Professional_Services.Consulting.Business_development_service 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1509 Bungee jumping center Bungee_jumping_center Entertainment.Sports.Bungee_jumping_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1507 Bullring Bullring Entertainment.Amusement.Bullring 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1542 Canoeing area Canoeing_area Entertainment.Parks.Canoeing_area 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1548 Campground Campground Travel_Hospitality.Hotels.Campground 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1519 Bus company Bus_company Travel_Hospitality.Transportation.Bus_company 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1515 Building society Building_society Finance.Banks.Building_society 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1508 Building equipment hire service Building_equipment_hire_service Retail.Rentals.Building_equipment_hire_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1543 Canoe & kayak rental service Canoe_kayak_rental_service Retail.Rentals.Canoe_kayak_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1531 Business to business service Business_to_business_service Professional_Services.Consulting.Business_to_business_service 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1561 Car accessories store Car_accessories_store Automotive.Parts.Car_accessories_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1563 Car battery store Car_battery_store Automotive.Parts.Car_battery_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1553 Cancer treatment center Cancer_treatment_center Healthcare.Mental_Health.Cancer_treatment_center 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1512 Building materials store Building_materials_store Retail.Stores.Building_materials_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1522 Business attorney Business_attorney Professional_Services.Legal.Business_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1506 Building consultant Building_consultant Professional_Services.Consulting.Building_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1527 Business management consultant Business_management_consultant Professional_Services.Consulting.Business_management_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1528 Business networking company Business_networking_company Professional_Services.IT.Business_networking_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1520 Bus ticket agency Bus_ticket_agency Professional_Services.Agencies.Bus_ticket_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1521 Bus tour agency Bus_tour_agency Professional_Services.Agencies.Bus_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1559 Canoe & kayak tour agency Canoe_kayak_tour_agency Professional_Services.Agencies.Canoe_kayak_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1544 Camera repair shop Camera_repair_shop Home_Services.Repair.Camera_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1575 Car wash Car_wash Automotive.Repair.Car_wash 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1573 Car sharing location Car_sharing_location Automotive.Rentals.Car_sharing_location 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1578 Cardiovascular and thoracic surgeon Cardiovascular_and_thoracic_surgeon Healthcare.Doctors.Cardiovascular_and_thoracic_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1595 Catholic school Catholic_school Education.Schools.Catholic_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1611 Charter school Charter_school Education.Schools.Charter_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1621 Child health care center Child_health_care_center Healthcare.Clinics.Child_health_care_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1605 Faculty of chemistry Faculty_of_chemistry Education.Universities.Faculty_of_chemistry 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1590 Cat boarding service Cat_boarding_service Healthcare.Veterinary.Cat_boarding_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1568 Carvery Carvery Food_Beverage.Restaurants.Carvery 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1622 Chinese language instructor Chinese_language_instructor Education.Tutoring.Chinese_language_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1571 Carpooling location Carpooling_location Entertainment.Sports.Carpooling_location 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1581 Career guidance service Career_guidance_service Professional_Services.Consulting.Career_guidance_service 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1577 Car racing venue Car_racing_venue Entertainment.Venues.Car_racing_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1619 Chemistry lab Chemistry_lab Education.Universities.Chemistry_lab 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1565 Car factory Car_factory Industrial.Manufacturing.Car_factory 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1567 Car manufacturer Car_manufacturer Industrial.Manufacturing.Car_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1582 Carpet manufacturer Carpet_manufacturer Industrial.Manufacturing.Carpet_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1606 Ceramic manufacturer Ceramic_manufacturer Industrial.Manufacturing.Ceramic_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1613 Cheese manufacturer Cheese_manufacturer Industrial.Manufacturing.Cheese_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1596 Chalet Chalet Travel_Hospitality.Hotels.Chalet 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1572 Chauffeur service Chauffeur_service Travel_Hospitality.Transportation.Chauffeur_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1586 Carriage ride service Carriage_ride_service Travel_Hospitality.Transportation.Carriage_ride_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1576 Carabinieri police Carabinieri_police Government.Public_Safety.Carabinieri_police 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1594 Catholic church Catholic_church Religious.Christian.Catholic_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1566 Car finance and loan company Car_finance_and_loan_company Finance.Lending.Car_finance_and_loan_company 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1610 Charity Charity Community.Nonprofits.Charity 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1585 Carnival club Carnival_club Community.Clubs.Carnival_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1598 Check cashing service Check_cashing_service Finance.Banks.Check_cashing_service 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1583 Carpet store Carpet_store Retail.Stores.Carpet_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1620 Chess and card club Chess_and_card_club Community.Clubs.Chess_and_card_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1597 Cattle farm Cattle_farm Agriculture.Farms.Cattle_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1592 Catering equipment rental service Catering_equipment_rental_service Retail.Rentals.Catering_equipment_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1599 Chamber of handicrafts Chamber_of_handicrafts Community.Nonprofits.Chamber_of_handicrafts 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1591 Cat cafe Cat_cafe Food_Beverage.Cafes_Coffee.Cat_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1570 Car repair and maintenance service Car_repair_and_maintenance_service Automotive.Repair.Car_repair_and_maintenance_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1574 Car stereo store Car_stereo_store Retail.Stores.Car_stereo_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1600 CD store CD_store Retail.Stores.CD_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1602 Cell phone accessory store Cell_phone_accessory_store Retail.Stores.Cell_phone_accessory_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1604 Cell phone store Cell_phone_store Retail.Stores.Cell_phone_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1609 Certified public accountant Certified_public_accountant Professional_Services.Accounting.Certified_public_accountant 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1612 Chartered accountant Chartered_accountant Professional_Services.Accounting.Chartered_accountant 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1614 Chemical engineering service Chemical_engineering_service Professional_Services.Engineering.Chemical_engineering_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1608 Certification agency Certification_agency Professional_Services.Agencies.Certification_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1580 Carpet cleaning service Carpet_cleaning_service Home_Services.Cleaning.Carpet_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1579 Car security system installer Car_security_system_installer Home_Services.Security.Car_security_system_installer 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1641 Children's party buffet Children_s_party_buffet Food_Beverage.Catering.Children_s_party_buffet 3 4056 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1646 Chinese language school Chinese_language_school Education.Schools.Chinese_language_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1655 Chinese takeaway Chinese_takeaway Food_Beverage.Restaurants.Chinese_takeaway 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1662 Christian college Christian_college Education.Universities.Christian_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1625 Childbirth class Childbirth_class Education.Tutoring.Childbirth_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1639 Children's library Children_s_library Education.Libraries.Children_s_library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1677 City courthouse City_courthouse Entertainment.Sports.City_courthouse 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1640 Children's museum Children_s_museum Entertainment.Arts.Children_s_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1644 Children's theater Children_s_theater Entertainment.Arts.Children_s_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1680 City park City_park Entertainment.Parks.City_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1645 Children's amusement center Children_s_amusement_center Entertainment.Amusement.Children_s_amusement_center 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1658 Cider mill Cider_mill Industrial.Manufacturing.Cider_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1653 Chimney services Chimney_services Home_Services.Cleaning.Chimney_services 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1678 City government office City_government_office Government.Offices.City_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1679 City or town hall City_or_town_hall Government.Offices.City_or_town_hall 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1654 Chimney sweep Chimney_sweep Home_Services.Cleaning.Chimney_sweep 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1659 Dance company Dance_company Entertainment.Arts.Dance_company 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1661 Christian church Christian_church Religious.Christian.Christian_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1642 Children's party service Children_s_party_service Entertainment.Venues.Children_s_party_service 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1629 Children hall Children_hall Education.Childcare.Children_hall 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1667 City clerk's office City_clerk_s_office Government.Offices.City_clerk_s_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1673 City district office City_district_office Government.Offices.City_district_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1668 Church council office Church_council_office Religious.Christian.Church_council_office 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1669 Church of Christ Church_of_Christ Religious.Christian.Church_of_Christ 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1670 Church of Jesus Christ of Latter-day Saints Church_of_Jesus_Christ_of_Latter_day_Saints Religious.Christian.Church_of_Jesus_Christ_of_Latter_day_Saints 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1657 City pillar shrine City_pillar_shrine Religious.Other_Religions.City_pillar_shrine 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1623 Chess club Chess_club Community.Clubs.Chess_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1681 City tax office City_tax_office Government.Offices.City_tax_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1651 Children's home Children_s_home Government.Social_Services.Children_s_home 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1647 Children's club Children_s_club Community.Clubs.Children_s_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1663 Citizen information bureau Citizen_information_bureau Government.Social_Services.Citizen_information_bureau 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1636 Children's farm Children_s_farm Agriculture.Farms.Children_s_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1665 Christmas tree farm Christmas_tree_farm Agriculture.Farms.Christmas_tree_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1674 Cider bar Cider_bar Food_Beverage.Bars_Nightlife.Cider_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1634 Children's cafe Children_s_cafe Food_Beverage.Cafes_Coffee.Children_s_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1624 Chevrolet dealer Chevrolet_dealer Automotive.Dealers.Chevrolet_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1666 Chrysler dealer Chrysler_dealer Automotive.Dealers.Chrysler_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1630 Child psychiatrist Child_psychiatrist Healthcare.Doctors.Child_psychiatrist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1631 Child psychologist Child_psychologist Healthcare.Doctors.Child_psychologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1626 Chicken shop Chicken_shop Retail.Stores.Chicken_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1633 Children's book store Children_s_book_store Retail.Stores.Children_s_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1635 Children's clothing store Children_s_clothing_store Retail.Stores.Children_s_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1675 Cigar shop Cigar_shop Retail.Stores.Cigar_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1682 Civil engineer Civil_engineer Professional_Services.Engineering.Civil_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1628 Child care agency Child_care_agency Professional_Services.Agencies.Child_care_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1684 Civil examinations academy Civil_examinations_academy Education.Schools.Civil_examinations_academy 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1693 Closed circuit television Closed_circuit_television Home_Services.Security.Closed_circuit_television 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1707 Co-ed school Co_ed_school Education.Schools.Co_ed_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1728 Commissioner for Oaths Commissioner_for_Oaths Professional_Services.Legal.Commissioner_for_Oaths 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1724 Combined primary and secondary school Combined_primary_and_secondary_school Education.Schools.Combined_primary_and_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1737 Community school Community_school Education.Schools.Community_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1738 Comprehensive secondary school Comprehensive_secondary_school Education.Schools.Comprehensive_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1725 Commercial printer Commercial_printer Professional_Services.Creative.Commercial_printer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1729 Dance hall Dance_hall Entertainment.Arts.Dance_hall 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1700 Clothing wholesale market place Clothing_wholesale_market_place Retail.Markets.Clothing_wholesale_market_place 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1717 College College Education.Universities.College 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1734 Community college Community_college Education.Universities.Community_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1703 Coaching center Coaching_center Education.Tutoring.Coaching_center 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1715 Coalfield Coalfield Entertainment.Sports.Coalfield 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1721 Coin operated locker Coin_operated_locker Entertainment.Arts.Coin_operated_locker 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1690 Clergyman Clergyman Entertainment.Fitness.Clergyman 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1735 Community garden Community_garden Entertainment.Parks.Community_garden 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1691 Clock and watch maker Clock_and_watch_maker Industrial.Manufacturing.Clock_and_watch_maker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1694 Clothes and fabric manufacturer Clothes_and_fabric_manufacturer Industrial.Manufacturing.Clothes_and_fabric_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1733 Company registry Company_registry Government.Offices.Company_registry 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1686 Civil police Civil_police Government.Public_Safety.Civil_police 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1692 Coast guard station Coast_guard_station Government.Public_Safety.Coast_guard_station 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1730 Commercial real estate agency Commercial_real_estate_agency Real_Estate.Agents.Commercial_real_estate_agency 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1731 Commercial real estate inspector Commercial_real_estate_inspector Real_Estate.Agents.Commercial_real_estate_inspector 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1723 Comedy club Comedy_club Community.Clubs.Comedy_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1713 Coin dealer Coin_dealer Automotive.Dealers.Coin_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1688 CNG fitment center CNG_fitment_center Automotive.Fuel.CNG_fitment_center 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1702 Compressed natural gas station Compressed_natural_gas_station Automotive.Fuel.Compressed_natural_gas_station 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1736 Community health center Community_health_center Healthcare.Medical_Services.Community_health_center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1687 Classified ads newspaper publisher Classified_ads_newspaper_publisher Healthcare.Wellness.Classified_ads_newspaper_publisher 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1698 Clothing store Clothing_store Retail.Stores.Clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1716 Collectibles store Collectibles_store Retail.Stores.Collectibles_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1726 Comic book store Comic_book_store Retail.Stores.Comic_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1739 Computer accessories store Computer_accessories_store Retail.Stores.Computer_accessories_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1689 Cleaning products supplier Cleaning_products_supplier Retail.Wholesale.Cleaning_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1685 Civil law attorney Civil_law_attorney Professional_Services.Legal.Civil_law_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1740 Computer consultant Computer_consultant Professional_Services.Consulting.Computer_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1683 Civil engineering company Civil_engineering_company Professional_Services.Engineering.Civil_engineering_company 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1704 Clock repair service Clock_repair_service Home_Services.Repair.Clock_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1722 Cold storage facility Cold_storage_facility Home_Services.Moving.Cold_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1697 Clothing alteration service Clothing_alteration_service Home_Services.Personal.Clothing_alteration_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1783 Cosmetic surgeon Cosmetic_surgeon Healthcare.Doctors.Cosmetic_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1790 Craniosacral therapy Craniosacral_therapy Healthcare.Alternative.Craniosacral_therapy 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1747 Computer training school Computer_training_school Education.Schools.Computer_training_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1765 Corporate campus Corporate_campus Education.Universities.Corporate_campus 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1761 Cooking class Cooking_class Education.Tutoring.Cooking_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1798 Crab house Crab_house Food_Beverage.Restaurants.Crab_house 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1757 Computer security service Computer_security_service Home_Services.Security.Computer_security_service 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1800 Country club Country_club Entertainment.Sports.Country_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1780 Copywriting service Copywriting_service Professional_Services.Creative.Copywriting_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1749 Concert hall Concert_hall Entertainment.Arts.Concert_hall 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1758 Conference center Conference_center Entertainment.Venues.Conference_center 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1774 Convention information bureau Convention_information_bureau Entertainment.Venues.Convention_information_bureau 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1742 Computer hardware manufacturer Computer_hardware_manufacturer Industrial.Manufacturing.Computer_hardware_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1777 Cooling plant Cooling_plant Industrial.Manufacturing.Cooling_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1794 Cricket ground Cricket_ground Entertainment.Sports.Cricket_ground 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1782 Cosmetic products manufacturer Cosmetic_products_manufacturer Industrial.Manufacturing.Cosmetic_products_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1766 Dance pavillion Dance_pavillion Entertainment.Arts.Dance_pavillion 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1792 Cotton mill Cotton_mill Industrial.Manufacturing.Cotton_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1776 Cooking school Cooking_school Education.Schools.Cooking_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1746 Computer support and services Computer_support_and_services Industrial.Logistics.Computer_support_and_services 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1793 Cotton exporter Cotton_exporter Industrial.Logistics.Cotton_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1796 Council Council Government.Offices.Council 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1755 Condominium complex Condominium_complex Real_Estate.Agents.Condominium_complex 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1741 Computer club Computer_club Community.Clubs.Computer_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1767 Consumer advice center Consumer_advice_center Government.Social_Services.Consumer_advice_center 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1788 Cottage Cottage Travel_Hospitality.Hotels.Cottage 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1797 Country house Country_house Travel_Hospitality.Hotels.Country_house 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1791 Costume rental service Costume_rental_service Retail.Rentals.Costume_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1770 Container service Container_service Industrial.Construction.Container_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1760 Coppersmith Coppersmith Industrial.Manufacturing.Coppersmith 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1764 Corporate office Corporate_office Professional_Services.Consulting.Corporate_office 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1786 Cosplay cafe Cosplay_cafe Food_Beverage.Cafes_Coffee.Cosplay_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1768 Diamond dealer Diamond_dealer Automotive.Dealers.Diamond_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1745 Computer store Computer_store Retail.Stores.Computer_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1787 Cost accounting service Cost_accounting_service Professional_Services.Accounting.Cost_accounting_service 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1743 Computer service Computer_service Professional_Services.IT.Computer_service 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1744 Computer networking service Computer_networking_service Professional_Services.IT.Computer_networking_service 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1750 Computer repair service Computer_repair_service Professional_Services.IT.Computer_repair_service 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1751 Concrete factory Concrete_factory Home_Services.Contractors.Concrete_factory 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1762 Copier repair service Copier_repair_service Home_Services.Repair.Copier_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1859 Day-use onsen Day_use_onsen Healthcare.Wellness.Day_use_onsen 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1858 Denture care center Denture_care_center Healthcare.Dental.Denture_care_center 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1831 Dairy Dairy Food_Beverage.Food_Production.Dairy 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1861 Debris removal service Debris_removal_service Home_Services.Cleaning.Debris_removal_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1852 Data entry service Data_entry_service Professional_Services.IT.Data_entry_service 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1809 Cramming school Cramming_school Education.Schools.Cramming_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1826 Culinary school Culinary_school Education.Schools.Culinary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1855 Database management company Database_management_company Professional_Services.IT.Database_management_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1838 Custom label printer Custom_label_printer Professional_Services.Creative.Custom_label_printer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1862 Day care center Day_care_center Education.Childcare.Day_care_center 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1804 Court executive officer Court_executive_officer Entertainment.Sports.Court_executive_officer 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1815 Curling hall Curling_hall Entertainment.Sports.Curling_hall 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1805 Court reporter Court_reporter Entertainment.Sports.Court_reporter 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1818 Cultural center Cultural_center Entertainment.Arts.Cultural_center 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1853 Dance school Dance_school Entertainment.Fitness.Dance_school 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1828 Customs office Customs_office Government.Offices.Customs_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1801 Country park Country_park Entertainment.Parks.Country_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1817 Crime victim service Crime_victim_service Government.Social_Services.Crime_victim_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1860 Deaf service Deaf_service Government.Social_Services.Deaf_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1843 Cycling park Cycling_park Entertainment.Parks.Cycling_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1851 Cycle rickshaw stand Cycle_rickshaw_stand Travel_Hospitality.Transportation.Cycle_rickshaw_stand 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1833 Currency exchange service Currency_exchange_service Finance.Banks.Currency_exchange_service 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1806 Credit counseling service Credit_counseling_service Finance.Lending.Credit_counseling_service 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1829 Customs broker Customs_broker Industrial.Logistics.Customs_broker 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1803 Courier service Courier_service Industrial.Logistics.Courier_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1802 County government office County_government_office Government.Offices.County_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1821 Cruise line company Cruise_line_company Travel_Hospitality.Travel_Services.Cruise_line_company 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1819 Cultural landmark Cultural_landmark Travel_Hospitality.Attractions.Cultural_landmark 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1813 Credit union Credit_union Finance.Banks.Credit_union 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1824 Crypto ATM Crypto_ATM Finance.Banks.Crypto_ATM 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1810 Cricket club Cricket_club Community.Clubs.Cricket_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1825 Croquet club Croquet_club Community.Clubs.Croquet_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1827 Cultural association Cultural_association Community.Clubs.Cultural_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1844 Curling club Curling_club Community.Clubs.Curling_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1845 Daihatsu dealer Daihatsu_dealer Automotive.Dealers.Daihatsu_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1808 Craft store Craft_store Retail.Stores.Craft_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1814 Cricket shop Cricket_shop Retail.Stores.Cricket_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1832 Cured ham store Cured_ham_store Retail.Stores.Cured_ham_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1816 Criminal justice attorney Criminal_justice_attorney Professional_Services.Legal.Criminal_justice_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1841 Customs consultant Customs_consultant Professional_Services.Consulting.Customs_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1857 Data center Data_center Professional_Services.IT.Data_center 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1812 Credit reporting agency Credit_reporting_agency Professional_Services.Agencies.Credit_reporting_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1820 Cruise agency Cruise_agency Professional_Services.Agencies.Cruise_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1837 Custom home builder Custom_home_builder Home_Services.Contractors.Custom_home_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1834 Cured ham warehouse Cured_ham_warehouse Home_Services.Moving.Cured_ham_warehouse 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1850 Customs warehouse Customs_warehouse Home_Services.Moving.Customs_warehouse 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1840 Custom tailor Custom_tailor Home_Services.Personal.Custom_tailor 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1921 Dog day care center Dog_day_care_center Education.Childcare.Dog_day_care_center 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1883 Diabetes center Diabetes_center Healthcare.Clinics.Diabetes_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1886 Adaptive sports center Adaptive_sports_center Entertainment.Sports.Adaptive_sports_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1904 Disc golf course Disc_golf_course Entertainment.Sports.Disc_golf_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1900 Dinner theater Dinner_theater Entertainment.Arts.Dinner_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1880 Desalination plant Desalination_plant Industrial.Manufacturing.Desalination_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1909 Display stand manufacturer Display_stand_manufacturer Industrial.Manufacturing.Display_stand_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1903 Disability services and support organization Disability_services_and_support_organization Industrial.Logistics.Disability_services_and_support_organization 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1913 District government office District_government_office Government.Offices.District_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1890 Detention center Detention_center Government.Courts.Detention_center 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1864 Deaf church Deaf_church Religious.Christian.Deaf_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1905 Disciples of Christ Church Disciples_of_Christ_Church Religious.Christian.Disciples_of_Christ_Church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1888 Dialysis center Dialysis_center Healthcare.Clinics.Dialysis_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1893 Diagnostic center Diagnostic_center Healthcare.Clinics.Diagnostic_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1918 Dog breeder Dog_breeder Healthcare.Veterinary.Dog_breeder 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1892 Dhaba Dhaba Food_Beverage.Restaurants.Dhaba 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1920 Divorce service Divorce_service Professional_Services.Legal.Divorce_service 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1884 Desktop publishing service Desktop_publishing_service Professional_Services.Creative.Desktop_publishing_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1915 DJ service DJ_service Entertainment.Venues.DJ_service 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1889 Design institute Design_institute Education.Universities.Design_institute 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1895 Distance learning center Distance_learning_center Education.Tutoring.Distance_learning_center 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1875 Debt collecting Debt_collecting Finance.Lending.Debt_collecting 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1917 Dress and tuxedo rental service Dress_and_tuxedo_rental_service Retail.Rentals.Dress_and_tuxedo_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1906 Diamond buyer Diamond_buyer Retail.Wholesale.Diamond_buyer 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1914 Dressmaker Dressmaker Industrial.Manufacturing.Dressmaker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1896 Diaper service Diaper_service Home_Services.Personal.Diaper_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1887 Dessert shop Dessert_shop Food_Beverage.Bakeries_Desserts.Dessert_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1897 Diesel engine dealer Diesel_engine_dealer Automotive.Dealers.Diesel_engine_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1873 Dental implants periodontist Dental_implants_periodontist Healthcare.Doctors.Dental_implants_periodontist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1872 Dental hygienist Dental_hygienist Healthcare.Dental.Dental_hygienist 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1871 Jeans shop Jeans_shop Retail.Stores.Jeans_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1916 Dive shop Dive_shop Retail.Stores.Dive_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1922 DJ supply store DJ_supply_store Retail.Stores.DJ_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1866 Decal supplier Decal_supplier Retail.Wholesale.Decal_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1891 Diabetes equipment supplier Diabetes_equipment_supplier Retail.Wholesale.Diabetes_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1901 Dirt supplier Dirt_supplier Retail.Wholesale.Dirt_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1912 District attorney District_attorney Professional_Services.Legal.District_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1919 Divorce lawyer Divorce_lawyer Professional_Services.Legal.Divorce_lawyer 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1894 Direct mail advertising Direct_mail_advertising Professional_Services.Marketing.Direct_mail_advertising 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1882 Design engineer Design_engineer Professional_Services.Engineering.Design_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1899 Digital printing service Digital_printing_service Professional_Services.Creative.Digital_printing_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1865 Debt collection agency Debt_collection_agency Professional_Services.Agencies.Debt_collection_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1881 Design agency Design_agency Professional_Services.Agencies.Design_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1867 Deck builder Deck_builder Home_Services.Contractors.Deck_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1870 Demolition contractor Demolition_contractor Home_Services.Contractors.Demolition_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1907 Diesel engine repair service Diesel_engine_repair_service Home_Services.Repair.Diesel_engine_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1943 Drama school Drama_school Education.Schools.Drama_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1952 Drivers license training school Drivers_license_training_school Education.Schools.Drivers_license_training_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1960 Drum school Drum_school Education.Schools.Drum_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1954 Driving school Driving_school Education.Training.Driving_school 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1931 Dog walker Dog_walker Healthcare.Veterinary.Dog_walker 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1925 Double glazing installer Double_glazing_installer Home_Services.Contractors.Double_glazing_installer 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1932 Drawing lessons Drawing_lessons Education.Tutoring.Drawing_lessons 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1948 Drinking water fountain Drinking_water_fountain Entertainment.Sports.Drinking_water_fountain 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1950 Drive-in movie theater Drive_in_movie_theater Entertainment.Arts.Drive_in_movie_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1929 Doll restoration service Doll_restoration_service Home_Services.Repair.Doll_restoration_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1930 Dog park Dog_park Entertainment.Parks.Dog_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1980 Ear piercing service Ear_piercing_service Home_Services.Personal.Ear_piercing_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1939 Door manufacturer Door_manufacturer Industrial.Manufacturing.Door_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1972 Dumpster rental service Dumpster_rental_service Industrial.Waste.Dumpster_rental_service 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1958 Driver's license office Driver_s_license_office Government.Offices.Driver_s_license_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1983 E-commerce service E_commerce_service Professional_Services.IT.E_commerce_service 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1982 Eastern Orthodox Church Eastern_Orthodox_Church Religious.Christian.Eastern_Orthodox_Church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1937 Domestic airport Domestic_airport Travel_Hospitality.Airlines.Domestic_airport 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1970 Dude ranch Dude_ranch Agriculture.Farms.Dude_ranch 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1973 Driving test center Driving_test_center Education.Training.Driving_test_center 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1927 District office District_office Government.Offices.District_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1933 Dogsled ride service Dogsled_ride_service Travel_Hospitality.Transportation.Dogsled_ride_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1956 Dyeworks Dyeworks Industrial.Manufacturing.Dyeworks 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1955 Earth works company Earth_works_company Industrial.Construction.Earth_works_company 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1977 Drone service Drone_service Professional_Services.Engineering.Drone_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1926 Dodge dealer Dodge_dealer Automotive.Dealers.Dodge_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1936 Domestic abuse treatment center Domestic_abuse_treatment_center Healthcare.Mental_Health.Domestic_abuse_treatment_center 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1951 Drug testing service Drug_testing_service Healthcare.Medical_Services.Drug_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1923 Do-it-yourself shop Do_it_yourself_shop Retail.Stores.Do_it_yourself_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1935 Dollar store Dollar_store Retail.Stores.Dollar_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1940 Door shop Door_shop Retail.Stores.Door_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1957 Drone shop Drone_shop Retail.Stores.Drone_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1979 E commerce agency E_commerce_agency Professional_Services.Agencies.E_commerce_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1924 Dock builder Dock_builder Home_Services.Contractors.Dock_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1946 Drilling contractor Drilling_contractor Home_Services.Contractors.Drilling_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1965 Dry wall contractor Dry_wall_contractor Home_Services.Contractors.Dry_wall_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1962 Dry cleaner Dry_cleaner Home_Services.Cleaning.Dry_cleaner 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1967 Dryer vent cleaning service Dryer_vent_cleaning_service Home_Services.Cleaning.Dryer_vent_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1934 Door warehouse Door_warehouse Home_Services.Moving.Door_warehouse 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2022 Elementary school Elementary_school Education.Schools.Elementary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2007 Electrical installation service Electrical_installation_service Home_Services.Electrical.Electrical_installation_service 3 4088 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2011 Electrolysis hair removal service Electrolysis_hair_removal_service Home_Services.Personal.Electrolysis_hair_removal_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1985 Ecological park Ecological_park Entertainment.Parks.Ecological_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2017 Electronics manufacturer Electronics_manufacturer Industrial.Manufacturing.Electronics_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2027 Employment center Employment_center Professional_Services.Consulting.Employment_center 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2023 Elevator manufacturer Elevator_manufacturer Industrial.Manufacturing.Elevator_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1989 Electric utility company Electric_utility_company Industrial.Utilities.Electric_utility_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2025 Embassy Embassy Government.Offices.Embassy 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1986 Ecologists association Ecologists_association Community.Clubs.Ecologists_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1993 Educational institution Educational_institution Education.Schools.Educational_institution 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1991 Education center Education_center Education.Tutoring.Education_center 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2020 Embossing service Embossing_service Industrial.Manufacturing.Embossing_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2026 Engraver Engraver Industrial.Manufacturing.Engraver 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2024 Embroidery service Embroidery_service Professional_Services.Creative.Embroidery_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2019 Electronics vending machine Electronics_vending_machine Retail.Stores.Electronics_vending_machine 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2032 Emergency dental service Emergency_dental_service Healthcare.Dental.Emergency_dental_service 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1984 Eating disorder treatment center Eating_disorder_treatment_center Healthcare.Mental_Health.Eating_disorder_treatment_center 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1997 Educational testing service Educational_testing_service Healthcare.Medical_Services.Educational_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2029 Emergency call booth Emergency_call_booth Healthcare.Medical_Services.Emergency_call_booth 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1992 Educational supply store Educational_supply_store Retail.Stores.Educational_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2009 Electrical supply store Electrical_supply_store Retail.Stores.Electrical_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2016 Electronics hire shop Electronics_hire_shop Retail.Stores.Electronics_hire_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2028 Embroidery shop Embroidery_shop Retail.Stores.Embroidery_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1994 EFTPOS equipment supplier EFTPOS_equipment_supplier Retail.Wholesale.EFTPOS_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1995 Egg supplier Egg_supplier Retail.Wholesale.Egg_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2004 Electrical appliance wholesaler Electrical_appliance_wholesaler Retail.Wholesale.Electrical_appliance_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2006 Electrical equipment supplier Electrical_equipment_supplier Retail.Wholesale.Electrical_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2010 Electrical products wholesaler Electrical_products_wholesaler Retail.Wholesale.Electrical_products_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1996 Elder law attorney Elder_law_attorney Professional_Services.Legal.Elder_law_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1987 Economic consultant Economic_consultant Professional_Services.Consulting.Economic_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1990 Educational consultant Educational_consultant Professional_Services.Consulting.Educational_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2005 Electrical engineer Electrical_engineer Professional_Services.Engineering.Electrical_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2012 Electronic engineering service Electronic_engineering_service Professional_Services.Engineering.Electronic_engineering_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2015 Electronics engineer Electronics_engineer Professional_Services.Engineering.Electronics_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1988 Economic development agency Economic_development_agency Professional_Services.Agencies.Economic_development_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1998 Electric motor repair shop Electric_motor_repair_shop Home_Services.Repair.Electric_motor_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2008 Electrical repair shop Electrical_repair_shop Home_Services.Repair.Electrical_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2018 Electronics repair shop Electronics_repair_shop Home_Services.Repair.Electronics_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2048 Engineering school Engineering_school Education.Schools.Engineering_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2049 English language school English_language_school Education.Schools.English_language_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2074 Evening school Evening_school Education.Schools.Evening_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2052 Faculty of law Faculty_of_law Education.Universities.Faculty_of_law 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2042 Engine rebuilding service Engine_rebuilding_service Automotive.Repair.Engine_rebuilding_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2092 Eye care center Eye_care_center Healthcare.Clinics.Eye_care_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2082 Family day care service Family_day_care_service Education.Childcare.Family_day_care_service 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2071 Ethnographic museum Ethnographic_museum Entertainment.Arts.Ethnographic_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2061 Esthetics service Esthetics_service Home_Services.Personal.Esthetics_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2085 Exhibit Exhibit Entertainment.Arts.Exhibit 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2090 Exhibition and trade center Exhibition_and_trade_center Entertainment.Arts.Exhibition_and_trade_center 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2091 Exhibition planner Exhibition_planner Entertainment.Arts.Exhibition_planner 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2068 Escape room center Escape_room_center Entertainment.Amusement.Escape_room_center 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2089 Eyelash salon Eyelash_salon Home_Services.Personal.Eyelash_salon 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2079 Event venue Event_venue Entertainment.Venues.Event_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2060 Episcopal church Episcopal_church Religious.Christian.Episcopal_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2038 Employment agency Employment_agency Professional_Services.Consulting.Employment_agency 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2073 Evangelical church Evangelical_church Religious.Christian.Evangelical_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2086 Extended stay hotel Extended_stay_hotel Travel_Hospitality.Hotels.Extended_stay_hotel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2044 Energy advisory service Energy_advisory_service Professional_Services.Consulting.Energy_advisory_service 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2066 Executive search firm Executive_search_firm Professional_Services.Consulting.Executive_search_firm 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2093 Fairground Fairground Entertainment.Amusement.Fairground 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2075 Event management company Event_management_company Entertainment.Venues.Event_management_company 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2076 Event planner Event_planner Entertainment.Venues.Event_planner 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2067 Erotic massage Erotic_massage Entertainment.Nightlife.Erotic_massage 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2040 English language camp English_language_camp Education.Training.English_language_camp 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2064 Environment office Environment_office Government.Offices.Environment_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2084 Family service center Family_service_center Government.Social_Services.Family_service_center 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2062 Escrow service Escrow_service Finance.Investment.Escrow_service 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2058 Environmental organization Environmental_organization Community.Organizations.Environmental_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2059 Environmental protection organization Environmental_protection_organization Community.Organizations.Environmental_protection_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2043 Elevator service Elevator_service Home_Services.Repair.Elevator_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2045 Energy equipment and solutions Energy_equipment_and_solutions Professional_Services.Consulting.Energy_equipment_and_solutions 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2083 Fax service Fax_service Professional_Services.Agencies.Fax_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2053 Environment renewable natural resources Environment_renewable_natural_resources Government.Offices.Environment_renewable_natural_resources 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2088 Eyebrow bar Eyebrow_bar Food_Beverage.Bars_Nightlife.Eyebrow_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2094 Facial spa Facial_spa Healthcare.Wellness.Facial_spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2063 Equestrian store Equestrian_store Retail.Stores.Equestrian_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2039 Employment attorney Employment_attorney Professional_Services.Legal.Employment_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2054 Environmental attorney Environmental_attorney Professional_Services.Legal.Environmental_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2069 Estate litigation attorney Estate_litigation_attorney Professional_Services.Legal.Estate_litigation_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2070 Estate planning attorney Estate_planning_attorney Professional_Services.Legal.Estate_planning_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2041 Employment consultant Employment_consultant Professional_Services.Consulting.Employment_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2047 Engineering consultant Engineering_consultant Professional_Services.Consulting.Engineering_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2080 Excavating contractor Excavating_contractor Home_Services.Contractors.Excavating_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2106 Farm school Farm_school Education.Schools.Farm_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2110 Fashion design school Fashion_design_school Education.Schools.Fashion_design_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2122 Fencing school Fencing_school Education.Schools.Fencing_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2148 Fire fighters academy Fire_fighters_academy Education.Schools.Fire_fighters_academy 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2153 Firearms academy Firearms_academy Education.Schools.Firearms_academy 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2100 Family practice physician Family_practice_physician Healthcare.Doctors.Family_practice_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2129 Fertility physician Fertility_physician Healthcare.Doctors.Fertility_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2137 Film and photograph library Film_and_photograph_library Education.Libraries.Film_and_photograph_library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2116 Feed manufacturer Feed_manufacturer Industrial.Manufacturing.Feed_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2139 Filtration plant Filtration_plant Industrial.Manufacturing.Filtration_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2096 Family planning center Family_planning_center Healthcare.Clinics.Family_planning_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2112 Federal Agency for Technical Relief Federal_Agency_for_Technical_Relief Government.Offices.Federal_Agency_for_Technical_Relief 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2101 Farrier service Farrier_service Healthcare.Veterinary.Farrier_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2125 Fire damage restoration service Fire_damage_restoration_service Home_Services.Repair.Fire_damage_restoration_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2121 Fencing salon Fencing_salon Entertainment.Sports.Fencing_salon 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2151 Fishing camp Fishing_camp Travel_Hospitality.Travel_Services.Fishing_camp 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2131 Financial institution Financial_institution Finance.Investment.Financial_institution 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2113 Federal credit union Federal_credit_union Government.Offices.Federal_credit_union 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2114 Federal government office Federal_government_office Government.Offices.Federal_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2138 Finance broker Finance_broker Finance.Investment.Finance_broker 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2115 Federal police Federal_police Government.Offices.Federal_police 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2140 Financial audit Financial_audit Finance.Investment.Financial_audit 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2119 Ferry service Ferry_service Travel_Hospitality.Transportation.Ferry_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2141 Financial advisor Financial_advisor Finance.Investment.Financial_advisor 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2143 Financial planner Financial_planner Finance.Investment.Financial_planner 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2105 Farm household tour Farm_household_tour Agriculture.Farms.Farm_household_tour 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2102 Fashion designer Fashion_designer Professional_Services.Creative.Fashion_designer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2107 Farm shop Farm_shop Retail.Stores.Farm_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2109 Fashion accessories store Fashion_accessories_store Retail.Stores.Fashion_accessories_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2117 Animal feed store Animal_feed_store Retail.Stores.Animal_feed_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2098 Family law attorney Family_law_attorney Professional_Services.Legal.Family_law_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2123 Feng shui consultant Feng_shui_consultant Professional_Services.Consulting.Feng_shui_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2142 Financial consultant Financial_consultant Professional_Services.Consulting.Financial_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2149 Fire protection consultant Fire_protection_consultant Professional_Services.Consulting.Fire_protection_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2127 Film production company Film_production_company Professional_Services.Creative.Film_production_company 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2144 Fingerprinting service Fingerprinting_service Professional_Services.Creative.Fingerprinting_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2103 Farm equipment repair service Farm_equipment_repair_service Home_Services.Repair.Farm_equipment_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2133 Fiberglass repair service Fiberglass_repair_service Home_Services.Repair.Fiberglass_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2164 First aid station First_aid_station Healthcare.Clinics.First_aid_station 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2175 Flamenco school Flamenco_school Education.Schools.Flamenco_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2178 Flight school Flight_school Education.Schools.Flight_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2193 Folk high school Folk_high_school Education.Schools.Folk_high_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2208 Foreign languages program school Foreign_languages_program_school Education.Schools.Foreign_languages_program_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2198 Food court Food_court Entertainment.Sports.Food_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2185 Foot care Foot_care Healthcare.Wellness.Foot_care 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2167 Fixed-base operator Fixed_base_operator Entertainment.Arts.Fixed_base_operator 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2205 Foot massage parlor Foot_massage_parlor Healthcare.Wellness.Foot_massage_parlor 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2171 Fitness center Fitness_center Entertainment.Fitness.Fitness_center 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2166 Fish and chips takeaway Fish_and_chips_takeaway Food_Beverage.Restaurants.Fish_and_chips_takeaway 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2154 Fireplace manufacturer Fireplace_manufacturer Industrial.Manufacturing.Fireplace_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2190 FMCG manufacturer FMCG_manufacturer Industrial.Manufacturing.FMCG_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2197 Flour mill Flour_mill Industrial.Manufacturing.Flour_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2169 Fish processing Fish_processing Food_Beverage.Food_Production.Fish_processing 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2200 Food manufacturer Food_manufacturer Industrial.Manufacturing.Food_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2191 Food processing company Food_processing_company Food_Beverage.Food_Production.Food_processing_company 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2201 Food manufacturing supply Food_manufacturing_supply Food_Beverage.Food_Production.Food_manufacturing_supply 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2204 Food seasoning manufacturer Food_seasoning_manufacturer Industrial.Manufacturing.Food_seasoning_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2195 Food and beverage exporter Food_and_beverage_exporter Industrial.Logistics.Food_and_beverage_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2206 Foreign consulate Foreign_consulate Government.Offices.Foreign_consulate 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2196 Food bank Food_bank Community.Nonprofits.Food_bank 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2177 Fishing club Fishing_club Community.Clubs.Fishing_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2202 Food processing equipment Food_processing_equipment Food_Beverage.Food_Production.Food_processing_equipment 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2162 Fish farm Fish_farm Agriculture.Farms.Fish_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2180 Floor refinishing service Floor_refinishing_service Home_Services.Contractors.Floor_refinishing_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2181 Floor sanding and polishing service Floor_sanding_and_polishing_service Home_Services.Contractors.Floor_sanding_and_polishing_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2168 Fire protection service Fire_protection_service Home_Services.Security.Fire_protection_service 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2161 Fishing pier Fishing_pier Entertainment.Parks.Fishing_pier 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2163 Fishing pond Fishing_pond Entertainment.Parks.Fishing_pond 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2159 Fishing charter Fishing_charter Travel_Hospitality.Travel_Services.Fishing_charter 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2184 Forklift rental service Forklift_rental_service Retail.Rentals.Forklift_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2188 Foam rubber producer Foam_rubber_producer Industrial.Manufacturing.Foam_rubber_producer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2207 Foreign exchange students organization Foreign_exchange_students_organization Community.Organizations.Foreign_exchange_students_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2187 Flower designer Flower_designer Professional_Services.Creative.Flower_designer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2165 Fish spa Fish_spa Healthcare.Wellness.Fish_spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2155 Fireplace store Fireplace_store Retail.Stores.Fireplace_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2194 Food and beverage consultant Food_and_beverage_consultant Professional_Services.Consulting.Food_and_beverage_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2209 Foreign trade consultant Foreign_trade_consultant Professional_Services.Consulting.Foreign_trade_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2211 Forensic consultant Forensic_consultant Professional_Services.Consulting.Forensic_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2182 Flooring contractor Flooring_contractor Home_Services.Contractors.Flooring_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2210 Foreman builders association Foreman_builders_association Home_Services.Contractors.Foreman_builders_association 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2232 Fruit parlor Fruit_parlor Food_Beverage.Restaurants.Fruit_parlor 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2228 French language school French_language_school Education.Schools.French_language_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2266 Gambling instructor Gambling_instructor Education.Tutoring.Gambling_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2229 Fried chicken takeaway Fried_chicken_takeaway Food_Beverage.Restaurants.Fried_chicken_takeaway 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2215 Food producer Food_producer Food_Beverage.Food_Production.Food_producer 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2271 Gas installation service Gas_installation_service Home_Services.Plumbing.Gas_installation_service 3 4087 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2216 Football club Football_club Entertainment.Sports.Football_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2249 Fur service Fur_service Home_Services.Cleaning.Fur_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2264 Futsal court Futsal_court Entertainment.Sports.Futsal_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2212 Forestry service Forestry_service Entertainment.Parks.Forestry_service 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2226 Freestyle wrestling Freestyle_wrestling Entertainment.Sports.Freestyle_wrestling 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2265 Gambling house Gambling_house Entertainment.Amusement.Gambling_house 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2235 Frozen food manufacturer Frozen_food_manufacturer Industrial.Manufacturing.Frozen_food_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2242 Function room facility Function_room_facility Entertainment.Venues.Function_room_facility 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2248 Fur manufacturer Fur_manufacturer Industrial.Manufacturing.Fur_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2231 Foster care service Foster_care_service Government.Social_Services.Foster_care_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2257 Furniture manufacturer Furniture_manufacturer Industrial.Manufacturing.Furniture_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2256 Gas company Gas_company Industrial.Utilities.Gas_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2227 Freight forwarding service Freight_forwarding_service Industrial.Logistics.Freight_forwarding_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2254 Garbage dump Garbage_dump Industrial.Waste.Garbage_dump 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2269 Garbage collection service Garbage_collection_service Industrial.Waste.Garbage_collection_service 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2221 Foursquare church Foursquare_church Religious.Christian.Foursquare_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2222 Full dress rental service Full_dress_rental_service Retail.Rentals.Full_dress_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2262 Furniture rental service Furniture_rental_service Retail.Rentals.Furniture_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2223 Fraternal organization Fraternal_organization Community.Organizations.Fraternal_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2258 Furniture maker Furniture_maker Industrial.Manufacturing.Furniture_maker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2233 Friends church Friends_church Religious.Christian.Friends_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2260 Furniture accessories Furniture_accessories Retail.Stores.Furniture_accessories 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2243 Full Gospel church Full_Gospel_church Religious.Christian.Full_Gospel_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2217 Fortune telling services Fortune_telling_services Religious.Spiritual.Fortune_telling_services 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2244 Funeral celebrant service Funeral_celebrant_service Religious.Spiritual.Funeral_celebrant_service 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2218 Fruit and vegetable processing Fruit_and_vegetable_processing Food_Beverage.Food_Production.Fruit_and_vegetable_processing 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2245 Funeral director Funeral_director Religious.Spiritual.Funeral_director 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2246 Funeral home Funeral_home Religious.Spiritual.Funeral_home 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2253 Furnished apartment building Furnished_apartment_building Real_Estate.Agents.Furnished_apartment_building 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2219 Foundation Foundation Community.Nonprofits.Foundation 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2213 Forklift dealer Forklift_dealer Automotive.Dealers.Forklift_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2241 Fuel supplier Fuel_supplier Automotive.Fuel.Fuel_supplier 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2224 Free clinic Free_clinic Healthcare.Clinics.Free_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2214 Formal wear store Formal_wear_store Retail.Stores.Formal_wear_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2236 Frozen food store Frozen_food_store Retail.Stores.Frozen_food_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2247 Fur coat shop Fur_coat_shop Retail.Stores.Fur_coat_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2252 Furnace store Furnace_store Retail.Stores.Furnace_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2220 Fountain contractor Fountain_contractor Home_Services.Contractors.Fountain_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2251 Furnace repair service Furnace_repair_service Home_Services.HVAC.Furnace_repair_service 3 4089 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2259 Furniture repair shop Furniture_repair_shop Home_Services.Repair.Furniture_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2290 German language school German_language_school Education.Schools.German_language_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2296 Girls' high school Girls_high_school Education.Schools.Girls_high_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2327 Government school Government_school Education.Schools.Government_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2331 Grammar school Grammar_school Education.Schools.Grammar_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2286 Faculty of geography and history Faculty_of_geography_and_history Education.Universities.Faculty_of_geography_and_history 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2299 Glass cutting service Glass_cutting_service Home_Services.Contractors.Glass_cutting_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2322 Government college Government_college Education.Universities.Government_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2330 Graffiti removal service Graffiti_removal_service Home_Services.Cleaning.Graffiti_removal_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2329 Graduate school Graduate_school Education.Universities.Graduate_school 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2315 Golf course Golf_course Entertainment.Sports.Golf_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2318 Golf driving range Golf_driving_range Entertainment.Sports.Golf_driving_range 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2289 Go-karting venue Go_karting_venue Entertainment.Venues.Go_karting_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2291 Geological research company Geological_research_company Professional_Services.Engineering.Geological_research_company 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2279 Gay night club Gay_night_club Entertainment.Nightlife.Gay_night_club 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2292 Geological service Geological_service Professional_Services.Engineering.Geological_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2317 Ground self defense force Ground_self_defense_force Government.Public_Safety.Ground_self_defense_force 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2277 Gasket manufacturer Gasket_manufacturer Industrial.Manufacturing.Gasket_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2302 Glass manufacturer Glass_manufacturer Industrial.Manufacturing.Glass_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2305 Glassware manufacturer Glassware_manufacturer Industrial.Manufacturing.Glassware_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2314 Group home Group_home Government.Social_Services.Group_home 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2310 Gold mining company Gold_mining_company Industrial.Mining.Gold_mining_company 3 4115 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2323 Government economic program Government_economic_program Government.Offices.Government_economic_program 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2287 Ghost town Ghost_town Travel_Hospitality.Attractions.Ghost_town 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2325 Government office Government_office Government.Offices.Government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2320 Gospel church Gospel_church Religious.Christian.Gospel_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2283 Glass blower Glass_blower Industrial.Manufacturing.Glass_blower 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2285 Glass industry Glass_industry Industrial.Manufacturing.Glass_industry 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2300 Glass engraving service Glass_engraving_service Industrial.Manufacturing.Glass_engraving_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2301 Glass etching service Glass_etching_service Industrial.Manufacturing.Glass_etching_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2312 Goldsmith Goldsmith Industrial.Manufacturing.Goldsmith 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2308 GMC dealer GMC_dealer Automotive.Dealers.GMC_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2281 General practitioner General_practitioner Healthcare.Doctors.General_practitioner 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2324 Government hospital Government_hospital Healthcare.Hospitals.Government_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2272 Garden furniture shop Garden_furniture_shop Retail.Stores.Garden_furniture_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2276 Gas shop Gas_shop Retail.Stores.Gas_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2282 General practice attorney General_practice_attorney Professional_Services.Legal.General_practice_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2288 Geotechnical engineer Geotechnical_engineer Professional_Services.Engineering.Geotechnical_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2280 Gazebo builder Gazebo_builder Home_Services.Contractors.Gazebo_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2316 Golf course builder Golf_course_builder Home_Services.Contractors.Golf_course_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2303 Glass repair service Glass_repair_service Home_Services.Repair.Glass_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2304 Glasses repair service Glasses_repair_service Home_Services.Repair.Glasses_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2355 Gymnasium school Gymnasium_school Education.Schools.Gymnasium_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2369 Hand surgeon Hand_surgeon Healthcare.Doctors.Hand_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2388 Head and neck surgeon Head_and_neck_surgeon Healthcare.Doctors.Head_and_neck_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2375 Handicraft school Handicraft_school Education.Schools.Handicraft_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2381 Hauptschule (lower-tier secondary school) Hauptschule_lower_tier_secondary_school Education.Schools.Hauptschule_lower_tier_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2377 Handyman/Handywoman/Handyperson Handyman_Handywoman_Handyperson Home_Services.Contractors.Handyman_Handywoman_Handyperson 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2338 Greyhound stadium Greyhound_stadium Entertainment.Sports.Greyhound_stadium 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2371 Handball court Handball_court Entertainment.Sports.Handball_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2374 Handicraft museum Handicraft_museum Entertainment.Arts.Handicraft_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2356 Gymnastics center Gymnastics_center Entertainment.Fitness.Gymnastics_center 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2348 Gutter service Gutter_service Home_Services.Cleaning.Gutter_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2357 Gymnastics club Gymnastics_club Entertainment.Fitness.Gymnastics_club 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2362 Hair extension technician Hair_extension_technician Home_Services.Personal.Hair_extension_technician 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2364 Hair removal service Hair_removal_service Home_Services.Personal.Hair_removal_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2334 Gravel plant Gravel_plant Industrial.Manufacturing.Gravel_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2361 Handicapped transportation service Handicapped_transportation_service Industrial.Logistics.Handicapped_transportation_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2365 Hair replacement service Hair_replacement_service Home_Services.Personal.Hair_replacement_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2372 Handicraft exporter Handicraft_exporter Industrial.Logistics.Handicraft_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2335 Greek Orthodox church Greek_Orthodox_church Religious.Christian.Greek_Orthodox_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2358 Hang gliding center Hang_gliding_center Entertainment.Sports.Hang_gliding_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2380 High ropes course High_ropes_course Entertainment.Sports.High_ropes_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2373 Handicraft fair Handicraft_fair Entertainment.Arts.Handicraft_fair 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2347 Guest house Guest_house Travel_Hospitality.Hotels.Guest_house 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2359 Halfway house Halfway_house Government.Social_Services.Halfway_house 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2382 Heritage building Heritage_building Travel_Hospitality.Attractions.Heritage_building 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2352 Handball club Handball_club Community.Clubs.Handball_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2346 Greenhouse Greenhouse Agriculture.Farms.Greenhouse 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2343 Grain elevator Grain_elevator Agriculture.Ag_Services.Grain_elevator 3 4140 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2383 Helicopter charter Helicopter_charter Travel_Hospitality.Transportation.Helicopter_charter 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2350 Haberdashery Haberdashery Retail.Stores.Haberdashery 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2392 Height works Height_works Industrial.Construction.Height_works 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2344 Gravel pit Gravel_pit Industrial.Utilities.Gravel_pit 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2385 Haute couture fashion house Haute_couture_fashion_house Professional_Services.Creative.Haute_couture_fashion_house 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2391 Health counselor Health_counselor Healthcare.Mental_Health.Health_counselor 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2337 Greeting card shop Greeting_card_shop Retail.Stores.Greeting_card_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2339 Grill store Grill_store Retail.Stores.Grill_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2341 Grocery store Grocery_store Retail.Stores.Grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2351 Gun shop Gun_shop Retail.Stores.Gun_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2390 Health consultant Health_consultant Professional_Services.Consulting.Health_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2333 Graphic designer Graphic_designer Professional_Services.Creative.Graphic_designer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2353 Gutter cleaning service Gutter_cleaning_service Home_Services.Cleaning.Gutter_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2386 Hearing aid repair service Hearing_aid_repair_service Home_Services.Repair.Hearing_aid_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2451 Horse boarding stable Horse_boarding_stable Healthcare.Veterinary.Horse_boarding_stable 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2453 Horseshoe smith Horseshoe_smith Healthcare.Veterinary.Horseshoe_smith 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2410 High school High_school Education.Schools.High_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2448 Home inspector Home_inspector Home_Services.Contractors.Home_inspector 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2411 Higher secondary school Higher_secondary_school Education.Schools.Higher_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2414 Hockey field Hockey_field Entertainment.Sports.Hockey_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2443 Hockey club Hockey_club Entertainment.Sports.Hockey_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2408 Heritage museum Heritage_museum Entertainment.Arts.Heritage_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2421 Historical place museum Historical_place_museum Entertainment.Arts.Historical_place_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2423 History museum History_museum Entertainment.Arts.History_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2415 Hiking guide Hiking_guide Entertainment.Parks.Hiking_guide 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2416 Hiking area Hiking_area Entertainment.Parks.Hiking_area 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2437 Hiking club Hiking_club Entertainment.Parks.Hiking_club 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2446 Home automation company Home_automation_company Home_Services.Electrical.Home_automation_company 3 4088 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2403 Haunted house Haunted_house Entertainment.Amusement.Haunted_house 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2424 Hip hop dance class Hip_hop_dance_class Entertainment.Fitness.Hip_hop_dance_class 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2418 Highway patrol Highway_patrol Government.Public_Safety.Highway_patrol 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2430 Home cinema installation Home_cinema_installation Entertainment.Movies.Home_cinema_installation 3 4108 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2450 Homeless service Homeless_service Government.Social_Services.Homeless_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2445 Holiday home Holiday_home Travel_Hospitality.Hotels.Holiday_home 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2422 Historical society Historical_society Travel_Hospitality.Attractions.Historical_society 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2413 Home health care service Home_health_care_service Healthcare.Medical_Services.Home_health_care_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2417 Hindu temple Hindu_temple Religious.Other_Religions.Hindu_temple 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2444 Holding company Holding_company Professional_Services.Consulting.Holding_company 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2449 Home staging service Home_staging_service Real_Estate.Property_Management.Home_staging_service 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2436 Homekill service Homekill_service Food_Beverage.Food_Production.Homekill_service 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2447 Home help Home_help Home_Services.Personal.Home_help 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2425 Hindu priest Hindu_priest Religious.Other_Religions.Hindu_priest 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2395 Health resort Health_resort Travel_Hospitality.Hotels.Health_resort 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2397 Heritage preservation Heritage_preservation Travel_Hospitality.Attractions.Heritage_preservation 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2409 Heritage railroad Heritage_railroad Travel_Hospitality.Attractions.Heritage_railroad 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2394 Health insurance agency Health_insurance_agency Finance.Insurance.Health_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2434 Home insurance agency Home_insurance_agency Finance.Insurance.Home_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2420 Homeless shelter Homeless_shelter Community.Nonprofits.Homeless_shelter 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2439 Homeowners' association Homeowners_association Community.Clubs.Homeowners_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2440 Honey farm Honey_farm Agriculture.Farms.Honey_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2441 Cha chaan teng (Hong Kong-style cafe) Cha_chaan_teng_Hong_Kong_style_cafe Food_Beverage.Cafes_Coffee.Cha_chaan_teng_Hong_Kong_style_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2407 Herbal medicine store Herbal_medicine_store Healthcare.Alternative.Herbal_medicine_store 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2398 Hearing aid store Hearing_aid_store Retail.Stores.Hearing_aid_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2399 Hearing assistance earphone store Hearing_assistance_earphone_store Retail.Stores.Hearing_assistance_earphone_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2406 Herb shop Herb_shop Retail.Stores.Herb_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2426 Hobby store Hobby_store Retail.Stores.Hobby_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2427 Hockey supply store Hockey_supply_store Retail.Stores.Hockey_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2404 Helicopter tour agency Helicopter_tour_agency Professional_Services.Agencies.Helicopter_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2432 Home help service agency Home_help_service_agency Professional_Services.Agencies.Home_help_service_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2400 Heating contractor Heating_contractor Home_Services.Contractors.Heating_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2429 Home builder Home_builder Home_Services.Contractors.Home_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2504 Hyperbaric medicine physician Hyperbaric_medicine_physician Healthcare.Doctors.Hyperbaric_medicine_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2459 Horse trainer Horse_trainer Healthcare.Veterinary.Horse_trainer 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2457 Horse riding school Horse_riding_school Education.Schools.Horse_riding_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2462 Hot dog stand Hot_dog_stand Food_Beverage.Restaurants.Hot_dog_stand 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2474 Hotel management school Hotel_management_school Education.Schools.Hotel_management_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2493 Ice skating instructor Ice_skating_instructor Education.Tutoring.Ice_skating_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2455 Horse riding field Horse_riding_field Entertainment.Sports.Horse_riding_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2494 Ice skating rink Ice_skating_rink Entertainment.Sports.Ice_skating_rink 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2496 Hunting preserve Hunting_preserve Entertainment.Parks.Hunting_preserve 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2492 Housing utility company Housing_utility_company Industrial.Utilities.Housing_utility_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2501 Hydroelectric power plant Hydroelectric_power_plant Industrial.Utilities.Hydroelectric_power_plant 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2510 Import export company Import_export_company Industrial.Logistics.Import_export_company 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2458 House clearance service House_clearance_service Home_Services.Moving.House_clearance_service 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2500 Immigration detention center Immigration_detention_center Government.Courts.Immigration_detention_center 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2480 Housing association Housing_association Community.Clubs.Housing_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2495 Hunting club Hunting_club Community.Clubs.Hunting_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2463 Horsestable studfarm Horsestable_studfarm Agriculture.Farms.Horsestable_studfarm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2460 House sitter House_sitter Home_Services.Moving.House_sitter 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2488 Human resource consulting Human_resource_consulting Professional_Services.Consulting.Human_resource_consulting 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2465 Horseback riding service Horseback_riding_service Entertainment.Sports.Horseback_riding_service 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2490 Hunting area Hunting_area Entertainment.Parks.Hunting_area 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2456 Housing authority Housing_authority Government.Offices.Housing_authority 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2506 Immigration & naturalization service Immigration_naturalization_service Government.Offices.Immigration_naturalization_service 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2486 Hua niao market place Hua_niao_market_place Retail.Markets.Hua_niao_market_place 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2454 Horse rental service Horse_rental_service Retail.Rentals.Horse_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2471 Houseboat rental service Houseboat_rental_service Retail.Rentals.Houseboat_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2489 Impermeabilization service Impermeabilization_service Industrial.Construction.Impermeabilization_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2481 Housing complex Housing_complex Real_Estate.Property_Management.Housing_complex 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2482 Housing society Housing_society Real_Estate.Property_Management.Housing_society 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2483 Housing development Housing_development Real_Estate.Property_Management.Housing_development 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2507 Hyundai dealer Hyundai_dealer Automotive.Dealers.Hyundai_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2466 Hospital equipment and supplies Hospital_equipment_and_supplies Healthcare.Hospitals.Hospital_equipment_and_supplies 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2472 Hot tub store Hot_tub_store Retail.Stores.Hot_tub_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2475 Hotel supply store Hotel_supply_store Retail.Stores.Hotel_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2485 Hua gong shop Hua_gong_shop Retail.Stores.Hua_gong_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2491 Hunting and fishing store Hunting_and_fishing_store Retail.Stores.Hunting_and_fishing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2461 Horse transport supplier Horse_transport_supplier Retail.Wholesale.Horse_transport_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2498 Hydraulic engineer Hydraulic_engineer Professional_Services.Engineering.Hydraulic_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2477 House sitter agency House_sitter_agency Professional_Services.Agencies.House_sitter_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2476 House cleaning service House_cleaning_service Home_Services.Cleaning.House_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2469 Hot tub repair service Hot_tub_repair_service Home_Services.Repair.Hot_tub_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2497 Hydraulic repair service Hydraulic_repair_service Home_Services.Repair.Hydraulic_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2513 ICSE school ICSE_school Education.Schools.ICSE_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2539 Infectious disease physician Infectious_disease_physician Healthcare.Doctors.Infectious_disease_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2551 IV therapy service IV_therapy_service Healthcare.Clinics.IV_therapy_service 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2522 Indian takeaway Indian_takeaway Food_Beverage.Restaurants.Indian_takeaway 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2553 International school International_school Education.Schools.International_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2547 Interior architect office Interior_architect_office Professional_Services.Engineering.Interior_architect_office 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2512 Ice skating club Ice_skating_club Entertainment.Sports.Ice_skating_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2527 Indoor golf course Indoor_golf_course Entertainment.Sports.Indoor_golf_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2528 Information services Information_services Professional_Services.Agencies.Information_services 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2525 Indoor cycling Indoor_cycling Entertainment.Sports.Indoor_cycling 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2526 Indoor snowcenter Indoor_snowcenter Entertainment.Fitness.Indoor_snowcenter 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2529 Insolvency service Insolvency_service Finance.Lending.Insolvency_service 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2530 Indoor swimming pool Indoor_swimming_pool Entertainment.Sports.Indoor_swimming_pool 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2555 Iron works Iron_works Industrial.Manufacturing.Iron_works 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2546 Internal medicine ward Internal_medicine_ward Healthcare.Medical_Services.Internal_medicine_ward 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2516 IMAX theater IMAX_theater Entertainment.Arts.IMAX_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2523 Indoor playground Indoor_playground Entertainment.Amusement.Indoor_playground 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2514 Religious statue manufacturer Religious_statue_manufacturer Industrial.Manufacturing.Religious_statue_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2519 Incineration plant Incineration_plant Industrial.Manufacturing.Incineration_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2550 Interior plant service Interior_plant_service Industrial.Manufacturing.Interior_plant_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2545 Intellectual property registry Intellectual_property_registry Government.Offices.Intellectual_property_registry 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2565 Jain temple Jain_temple Religious.Other_Religions.Jain_temple 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2540 Inn Inn Travel_Hospitality.Hotels.Inn 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2552 International airport International_airport Travel_Hospitality.Airlines.International_airport 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2557 Investment bank Investment_bank Finance.Banks.Investment_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2520 Income protection insurance agency Income_protection_insurance_agency Finance.Insurance.Income_protection_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2544 Insurance broker Insurance_broker Finance.Insurance.Insurance_broker 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2558 Investment company Investment_company Finance.Investment.Investment_company 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2536 Industrial real estate agency Industrial_real_estate_agency Real_Estate.Agents.Industrial_real_estate_agency 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2521 Income tax help association Income_tax_help_association Community.Clubs.Income_tax_help_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2562 Iron ware dealer Iron_ware_dealer Automotive.Dealers.Iron_ware_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2524 Indian sweets shop Indian_sweets_shop Retail.Stores.Indian_sweets_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2511 Ice supplier Ice_supplier Retail.Wholesale.Ice_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2517 Immigration attorney Immigration_attorney Professional_Services.Legal.Immigration_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2543 Insurance attorney Insurance_attorney Professional_Services.Legal.Insurance_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2515 Image consultant Image_consultant Professional_Services.Consulting.Image_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2554 International trade consultant International_trade_consultant Professional_Services.Consulting.International_trade_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2556 Internet marketing service Internet_marketing_service Professional_Services.Marketing.Internet_marketing_service 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2532 Industrial engineer Industrial_engineer Professional_Services.Engineering.Industrial_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2533 Industrial engineers association Industrial_engineers_association Professional_Services.Engineering.Industrial_engineers_association 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2542 Insulation contractor Insulation_contractor Home_Services.Contractors.Insulation_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2548 Interior construction contractor Interior_construction_contractor Home_Services.Contractors.Interior_construction_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2549 Interior fitting contractor Interior_fitting_contractor Home_Services.Contractors.Interior_fitting_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2593 Judo school Judo_school Education.Schools.Judo_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2595 Jujitsu school Jujitsu_school Education.Schools.Jujitsu_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2599 K-12 school K_12_school Education.Schools.K_12_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2603 Karate school Karate_school Education.Schools.Karate_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2601 Kennel Kennel Healthcare.Veterinary.Kennel 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2612 Kickboxing school Kickboxing_school Education.Schools.Kickboxing_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2572 Japanese steakhouse Japanese_steakhouse Food_Beverage.Restaurants.Japanese_steakhouse 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2625 Kung fu school Kung_fu_school Education.Schools.Kung_fu_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2587 Judicial scrivener Judicial_scrivener Professional_Services.Legal.Judicial_scrivener 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2596 Junior college Junior_college Education.Universities.Junior_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2575 Jewelry appraiser Jewelry_appraiser Professional_Services.Accounting.Jewelry_appraiser 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2579 Japanese language instructor Japanese_language_instructor Education.Tutoring.Japanese_language_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2602 Knitting instructor Knitting_instructor Education.Tutoring.Knitting_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2600 Karaoke equipment rental service Karaoke_equipment_rental_service Entertainment.Amusement.Karaoke_equipment_rental_service 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2607 Kindergarten Kindergarten Education.Childcare.Kindergarten 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2592 Judicial auction Judicial_auction Government.Courts.Judicial_auction 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2613 Kilt shop and hire Kilt_shop_and_hire Retail.Rentals.Kilt_shop_and_hire 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2576 Jute mill Jute_mill Industrial.Manufacturing.Jute_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2578 Jewelry buyer Jewelry_buyer Retail.Wholesale.Jewelry_buyer 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2590 Jewelry manufacturer Jewelry_manufacturer Industrial.Manufacturing.Jewelry_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2574 Jehovah's Witness Kingdom Hall Jehovah_s_Witness_Kingdom_Hall Religious.Other_Religions.Jehovah_s_Witness_Kingdom_Hall 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2585 Jewelry engraver Jewelry_engraver Industrial.Manufacturing.Jewelry_engraver 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2618 Knife manufacturer Knife_manufacturer Industrial.Manufacturing.Knife_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2610 Key duplication service Key_duplication_service Home_Services.Repair.Key_duplication_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2580 Jewelry designer Jewelry_designer Professional_Services.Creative.Jewelry_designer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2621 Knitwear manufacturer Knitwear_manufacturer Industrial.Manufacturing.Knitwear_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2589 Jewelry exporter Jewelry_exporter Industrial.Logistics.Jewelry_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2571 Junk removal service Junk_removal_service Industrial.Waste.Junk_removal_service 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2582 Junkyard Junkyard Industrial.Waste.Junkyard 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2586 Juvenile detention center Juvenile_detention_center Government.Courts.Juvenile_detention_center 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2622 Korean church Korean_church Religious.Christian.Korean_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2598 Kabaddi club Kabaddi_club Community.Clubs.Kabaddi_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2570 Japanese confectionery shop Japanese_confectionery_shop Food_Beverage.Bakeries_Desserts.Japanese_confectionery_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2584 Jeep dealer Jeep_dealer Automotive.Dealers.Jeep_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2597 Junk dealer Junk_dealer Automotive.Dealers.Junk_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2604 Karma dealer Karma_dealer Automotive.Dealers.Karma_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2606 Kawasaki motorcycle dealer Kawasaki_motorcycle_dealer Automotive.Dealers.Kawasaki_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2569 Japanese cheap sweets shop Japanese_cheap_sweets_shop Retail.Stores.Japanese_cheap_sweets_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2573 Japanese grocery store Japanese_grocery_store Retail.Stores.Japanese_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2591 Judaica store Judaica_store Retail.Stores.Judaica_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2627 Labor relations attorney Labor_relations_attorney Professional_Services.Legal.Labor_relations_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2605 Kitchen remodeler Kitchen_remodeler Home_Services.Contractors.Kitchen_remodeler 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2567 Janitorial service Janitorial_service Home_Services.Cleaning.Janitorial_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2583 Jewelry repair service Jewelry_repair_service Home_Services.Repair.Jewelry_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2643 Language school Language_school Education.Schools.Language_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2654 Law school Law_school Education.Universities.Law_school 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2653 Law library Law_library Education.Libraries.Law_library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2670 Leather goods manufacturer Leather_goods_manufacturer Industrial.Manufacturing.Leather_goods_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2686 Lighting manufacturer Lighting_manufacturer Industrial.Manufacturing.Lighting_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2669 Leather exporter Leather_exporter Industrial.Logistics.Leather_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2663 License bureau License_bureau Government.Offices.License_bureau 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2682 Life insurance agency Life_insurance_agency Finance.Insurance.Life_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2661 Leagues club Leagues_club Community.Clubs.Leagues_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2647 Lasik surgeon Lasik_surgeon Healthcare.Doctors.Lasik_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2668 Mobile caterer Mobile_caterer Food_Beverage.Catering.Mobile_caterer 3 4056 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2646 Laser hair removal service Laser_hair_removal_service Home_Services.Personal.Laser_hair_removal_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2681 Life coach Life_coach Professional_Services.Consulting.Life_coach 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2635 Land surveyor Land_surveyor Professional_Services.Engineering.Land_surveyor 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2640 Land surveying office Land_surveying_office Professional_Services.Engineering.Land_surveying_office 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2664 Learner driver training area Learner_driver_training_area Education.Training.Learner_driver_training_area 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2665 Learning center Learning_center Education.Tutoring.Learning_center 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2638 Land planning authority Land_planning_authority Government.Offices.Land_planning_authority 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2676 Legal affairs bureau Legal_affairs_bureau Government.Offices.Legal_affairs_bureau 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2633 Laser cutting service Laser_cutting_service Industrial.Construction.Laser_cutting_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2675 Leasing service Leasing_service Real_Estate.Property_Management.Leasing_service 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2637 Land reform institute Land_reform_institute Government.Offices.Land_reform_institute 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2629 Laboratory equipment supplier Laboratory_equipment_supplier Healthcare.Medical_Services.Laboratory_equipment_supplier 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2642 Landscaping supply store Landscaping_supply_store Retail.Stores.Landscaping_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2652 Law firm Law_firm Professional_Services.Legal.Law_firm 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2662 Lawyers association Lawyers_association Professional_Services.Legal.Lawyers_association 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2677 Legal services Legal_services Professional_Services.Legal.Legal_services 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2684 Lighting consultant Lighting_consultant Professional_Services.Consulting.Lighting_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2660 Lawn sprinkler system contractor Lawn_sprinkler_system_contractor Home_Services.Contractors.Lawn_sprinkler_system_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2685 Lighting contractor Lighting_contractor Home_Services.Contractors.Lighting_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2666 Leather cleaning service Leather_cleaning_service Home_Services.Cleaning.Leather_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2636 Landscape designer Landscape_designer Home_Services.Landscaping.Landscape_designer 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2639 Landscape lighting designer Landscape_lighting_designer Home_Services.Landscaping.Landscape_lighting_designer 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2641 Landscape architect Landscape_architect Home_Services.Landscaping.Landscape_architect 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2644 Lawn bowls club Lawn_bowls_club Home_Services.Landscaping.Lawn_bowls_club 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2655 Lawn care service Lawn_care_service Home_Services.Landscaping.Lawn_care_service 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2628 Lamp repair service Lamp_repair_service Home_Services.Repair.Lamp_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2678 Leather repair service Leather_repair_service Home_Services.Repair.Leather_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2648 Laundromat Laundromat Home_Services.Personal.Laundromat 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2710 Little league field Little_league_field Entertainment.Sports.Little_league_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2709 Local history museum Local_history_museum Entertainment.Arts.Local_history_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2732 Mammography service Mammography_service Healthcare.Clinics.Mammography_service 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2702 Live music venue Live_music_venue Entertainment.Venues.Live_music_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2693 Lingerie manufacturer Lingerie_manufacturer Industrial.Manufacturing.Lingerie_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2714 Livestock breeder Livestock_breeder Healthcare.Veterinary.Livestock_breeder 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2736 Machinery parts manufacturer Machinery_parts_manufacturer Industrial.Manufacturing.Machinery_parts_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2737 Machining manufacturer Machining_manufacturer Industrial.Manufacturing.Machining_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2718 Logistics service Logistics_service Industrial.Logistics.Logistics_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2708 Local government office Local_government_office Government.Offices.Local_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2724 Lutheran church Lutheran_church Religious.Christian.Lutheran_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2719 Livestock producer Livestock_producer Healthcare.Veterinary.Livestock_producer 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2742 Make-up artist Make_up_artist Home_Services.Personal.Make_up_artist 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2715 Log cabins Log_cabins Travel_Hospitality.Hotels.Log_cabins 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2689 Limousine service Limousine_service Travel_Hospitality.Transportation.Limousine_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2733 Mahjong house Mahjong_house Entertainment.Amusement.Mahjong_house 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2725 Lyceum Lyceum Education.Schools.Lyceum 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2704 Literacy program Literacy_program Education.Tutoring.Literacy_program 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2720 Lost property office Lost_property_office Real_Estate.Agents.Lost_property_office 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2701 Little league club Little_league_club Community.Clubs.Little_league_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2747 Main customs office Main_customs_office Government.Offices.Main_customs_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2746 Marine self defense force Marine_self_defense_force Government.Public_Safety.Marine_self_defense_force 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2727 Low income housing program Low_income_housing_program Government.Social_Services.Low_income_housing_program 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2700 Loss adjuster Loss_adjuster Finance.Investment.Loss_adjuster 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2726 Lottery retailer Lottery_retailer Retail.Stores.Lottery_retailer 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2713 Livestock auction house Livestock_auction_house Retail.Markets.Livestock_auction_house 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2743 Mailbox rental service Mailbox_rental_service Retail.Rentals.Mailbox_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2703 Livery company Livery_company Community.Nonprofits.Livery_company 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2699 Longarm quilting service Longarm_quilting_service Industrial.Manufacturing.Longarm_quilting_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2739 Machine maintenance service Machine_maintenance_service Home_Services.Repair.Machine_maintenance_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2691 Line marking service Line_marking_service Home_Services.Contractors.Line_marking_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2705 Loctician service Loctician_service Home_Services.Personal.Loctician_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2730 Lymph drainage therapist Lymph_drainage_therapist Healthcare.Mental_Health.Lymph_drainage_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2698 Local medical services Local_medical_services Healthcare.Medical_Services.Local_medical_services 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2687 Lighting store Lighting_store Retail.Stores.Lighting_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2692 Linens store Linens_store Retail.Stores.Linens_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2707 Loan agency Loan_agency Professional_Services.Agencies.Loan_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2716 Log home builder Log_home_builder Home_Services.Contractors.Log_home_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2717 Logging contractor Logging_contractor Home_Services.Contractors.Logging_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2728 Luggage repair service Luggage_repair_service Home_Services.Repair.Luggage_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2738 Machine repair service Machine_repair_service Home_Services.Repair.Machine_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2729 Luggage storage facility Luggage_storage_facility Home_Services.Moving.Luggage_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2712 Locksmith Locksmith Home_Services.Security.Locksmith 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2762 Meat processor Meat_processor Food_Beverage.Food_Production.Meat_processor 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2800 Mehndi designer Mehndi_designer Home_Services.Personal.Mehndi_designer 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2748 Marine surveyor Marine_surveyor Professional_Services.Engineering.Marine_surveyor 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2752 Management school Management_school Education.Schools.Management_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2773 Massage school Massage_school Education.Schools.Massage_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2779 Mathematics school Mathematics_school Education.Schools.Mathematics_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2803 Media company Media_company Professional_Services.Creative.Media_company 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2764 Faculty of media and information science Faculty_of_media_and_information_science Education.Universities.Faculty_of_media_and_information_science 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2795 Mehandi class Mehandi_class Education.Tutoring.Mehandi_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2757 Maritime museum Maritime_museum Entertainment.Arts.Maritime_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2759 Market researcher Market_researcher Professional_Services.Marketing.Market_researcher 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2768 Martial arts school Martial_arts_school Entertainment.Fitness.Martial_arts_school 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2749 Manor house Manor_house Travel_Hospitality.Hotels.Manor_house 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2750 Mailing service Mailing_service Industrial.Logistics.Mailing_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2783 Martial arts club Martial_arts_club Entertainment.Fitness.Martial_arts_club 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2767 Marriage celebrant Marriage_celebrant Professional_Services.Legal.Marriage_celebrant 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2753 Manufacturer Manufacturer Industrial.Manufacturing.Manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2776 Match box manufacturer Match_box_manufacturer Industrial.Manufacturing.Match_box_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2763 Marquee hire service Marquee_hire_service Retail.Rentals.Marquee_hire_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2751 Manufactured home transporter Manufactured_home_transporter Industrial.Logistics.Manufactured_home_transporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2766 Marriage license bureau Marriage_license_bureau Government.Offices.Marriage_license_bureau 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2792 Meditation center Meditation_center Religious.Spiritual.Meditation_center 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2770 Marksmen's clubhouse Marksmen_s_clubhouse Community.Clubs.Marksmen_s_clubhouse 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2797 Medical clinic Medical_clinic Healthcare.Clinics.Medical_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2765 Marriage or relationship counselor Marriage_or_relationship_counselor Healthcare.Mental_Health.Marriage_or_relationship_counselor 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2775 Massage therapist Massage_therapist Healthcare.Mental_Health.Massage_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2756 Marine supply store Marine_supply_store Retail.Stores.Marine_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2769 Martial arts supply store Martial_arts_supply_store Retail.Stores.Martial_arts_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2772 Masonry supply store Masonry_supply_store Retail.Stores.Masonry_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2774 Massage supply store Massage_supply_store Retail.Stores.Massage_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2778 Maternity store Maternity_store Retail.Stores.Maternity_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2780 Mattress store Mattress_store Retail.Stores.Mattress_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2754 Marble supplier Marble_supplier Retail.Wholesale.Marble_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2777 Material handling equipment supplier Material_handling_equipment_supplier Retail.Wholesale.Material_handling_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2785 Meat wholesaler Meat_wholesaler Retail.Wholesale.Meat_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2784 Meal delivery Meal_delivery Retail.Grocery.Meal_delivery 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2761 Marketing consultant Marketing_consultant Professional_Services.Consulting.Marketing_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2790 Media consultant Media_consultant Professional_Services.Consulting.Media_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2760 Marketing agency Marketing_agency Professional_Services.Marketing.Marketing_agency 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2755 Marine engineer Marine_engineer Professional_Services.Engineering.Marine_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2758 Masonic center Masonic_center Home_Services.Contractors.Masonic_center 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2771 Masonry contractor Masonry_contractor Home_Services.Contractors.Masonry_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2781 Mausoleum builder Mausoleum_builder Home_Services.Contractors.Mausoleum_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2850 Military school Military_school Education.Schools.Military_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2857 Miniature golf course Miniature_golf_course Entertainment.Sports.Miniature_golf_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2815 Men's health physician Men_s_health_physician Healthcare.Doctors.Men_s_health_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2812 Memorial park Memorial_park Entertainment.Parks.Memorial_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2824 Midwife Midwife Healthcare.Doctors.Midwife 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2843 Mid-Atlantic restaurant (US) Mid_Atlantic_restaurant_US Food_Beverage.Restaurants.Mid_Atlantic_restaurant_US 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2822 Meeting planning service Meeting_planning_service Entertainment.Venues.Meeting_planning_service 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2863 Mobile disco service Mobile_disco_service Entertainment.Nightlife.Mobile_disco_service 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2854 Mineral water company Mineral_water_company Industrial.Utilities.Mineral_water_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2809 Medicine exporter Medicine_exporter Industrial.Logistics.Medicine_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2860 Mining company Mining_company Industrial.Mining.Mining_company 3 4115 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2865 Mobile money agent Mobile_money_agent Finance.Banks.Mobile_money_agent 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2862 Mining equipment Mining_equipment Industrial.Mining.Mining_equipment 3 4115 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2829 Military archive Military_archive Government.Public_Safety.Military_archive 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2825 Metal processing company Metal_processing_company Industrial.Manufacturing.Metal_processing_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2830 Military base Military_base Government.Public_Safety.Military_base 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2833 Military board Military_board Government.Public_Safety.Military_board 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2828 Metallurgy company Metallurgy_company Industrial.Manufacturing.Metallurgy_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2849 Metalware producer Metalware_producer Industrial.Manufacturing.Metalware_producer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2834 Military recruiting office Military_recruiting_office Government.Public_Safety.Military_recruiting_office 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2847 Military barracks Military_barracks Government.Public_Safety.Military_barracks 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2840 Metal finisher Metal_finisher Industrial.Construction.Metal_finisher 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2842 Metal heat treating service Metal_heat_treating_service Industrial.Construction.Metal_heat_treating_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2848 Military cemetery Military_cemetery Government.Public_Safety.Military_cemetery 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2845 Metal polishing service Metal_polishing_service Industrial.Construction.Metal_polishing_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2846 Metal stamping service Metal_stamping_service Industrial.Construction.Metal_stamping_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2813 Mennonite church Mennonite_church Religious.Christian.Mennonite_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2836 Methodist church Methodist_church Religious.Christian.Methodist_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2819 Messianic synagogue Messianic_synagogue Religious.Other_Religions.Messianic_synagogue 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2811 Memorial Memorial Religious.Spiritual.Memorial 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2823 Memorial estate Memorial_estate Religious.Spiritual.Memorial_estate 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2837 Metropolitan train company Metropolitan_train_company Travel_Hospitality.Transportation.Metropolitan_train_company 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2859 Minibus taxi service Minibus_taxi_service Travel_Hospitality.Transportation.Minibus_taxi_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2818 Mercedes-Benz dealer Mercedes_Benz_dealer Automotive.Dealers.Mercedes_Benz_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2841 MG dealer MG_dealer Automotive.Dealers.MG_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2816 Mental health clinic Mental_health_clinic Healthcare.Clinics.Mental_health_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2807 Medical supply store Medical_supply_store Healthcare.Medical_Services.Medical_supply_store 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2814 Men's clothing store Men_s_clothing_store Retail.Stores.Men_s_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2831 Metal working shop Metal_working_shop Retail.Stores.Metal_working_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2832 Metal workshop Metal_workshop Retail.Stores.Metal_workshop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2861 Mining consultant Mining_consultant Professional_Services.Consulting.Mining_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2820 Metal construction company Metal_construction_company Home_Services.Contractors.Metal_construction_company 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2852 Microwave oven repair service Microwave_oven_repair_service Home_Services.Repair.Microwave_oven_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2890 Montessori preschool Montessori_preschool Education.Schools.Montessori_preschool 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2875 Mobile phone repair shop Mobile_phone_repair_shop Home_Services.Repair.Mobile_phone_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2891 Montessori school Montessori_school Education.Schools.Montessori_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2924 Music producer Music_producer Professional_Services.Creative.Music_producer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2904 Motorcycle driving school Motorcycle_driving_school Education.Training.Motorcycle_driving_school 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2892 Mountaineering class Mountaineering_class Education.Tutoring.Mountaineering_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2880 Modern art museum Modern_art_museum Entertainment.Arts.Modern_art_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2915 Movie theater Movie_theater Entertainment.Arts.Movie_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2918 Muay Thai boxing gym Muay_Thai_boxing_gym Entertainment.Fitness.Muay_Thai_boxing_gym 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2871 Mobile home park Mobile_home_park Entertainment.Parks.Mobile_home_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2881 Model car play area Model_car_play_area Entertainment.Amusement.Model_car_play_area 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2888 Park Park Entertainment.Parks.Park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2869 Model portfolio studio Model_portfolio_studio Industrial.Logistics.Model_portfolio_studio 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2922 Municipal Department of Tourism Municipal_Department_of_Tourism Government.Offices.Municipal_Department_of_Tourism 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2866 Missing persons organization Missing_persons_organization Government.Social_Services.Missing_persons_organization 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2911 Mountain cable car Mountain_cable_car Travel_Hospitality.Transportation.Mountain_cable_car 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2882 Money order service Money_order_service Finance.Banks.Money_order_service 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2887 Money transfer service Money_transfer_service Finance.Banks.Money_transfer_service 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2894 Moravian church Moravian_church Religious.Christian.Moravian_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2923 Musical instrument rental service Musical_instrument_rental_service Retail.Rentals.Musical_instrument_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2885 Mold maker Mold_maker Industrial.Manufacturing.Mold_maker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2874 Mission Mission Religious.Christian.Mission 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2889 Monogramming service Monogramming_service Industrial.Manufacturing.Monogramming_service 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2867 Model design company Model_design_company Professional_Services.Creative.Model_design_company 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2912 Mountain cabin Mountain_cabin Travel_Hospitality.Hotels.Mountain_cabin 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2895 Monument maker Monument_maker Travel_Hospitality.Attractions.Monument_maker 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2905 Motorcycle insurance agency Motorcycle_insurance_agency Finance.Insurance.Motorcycle_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2896 Mortgage broker Mortgage_broker Finance.Lending.Mortgage_broker 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2897 Mortgage lender Mortgage_lender Finance.Lending.Mortgage_lender 3 4131 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2898 Motoring club Motoring_club Community.Clubs.Motoring_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2873 Mobile home supply store Mobile_home_supply_store Retail.Stores.Mobile_home_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2906 Motorcycle parts store Motorcycle_parts_store Retail.Stores.Motorcycle_parts_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2909 Motorcycle shop Motorcycle_shop Retail.Stores.Motorcycle_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2910 Motorsports store Motorsports_store Retail.Stores.Motorsports_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2913 Movie rental store Movie_rental_store Retail.Stores.Movie_rental_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2917 Moving supply store Moving_supply_store Retail.Stores.Moving_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2876 Mobility equipment supplier Mobility_equipment_supplier Retail.Wholesale.Mobility_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2886 Molding supplier Molding_supplier Retail.Wholesale.Molding_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2877 Mobile network operator Mobile_network_operator Professional_Services.IT.Mobile_network_operator 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2921 Multimedia and electronic book publisher Multimedia_and_electronic_book_publisher Professional_Services.Creative.Multimedia_and_electronic_book_publisher 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2883 Modular home builder Modular_home_builder Home_Services.Contractors.Modular_home_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2901 Motor scooter repair shop Motor_scooter_repair_shop Home_Services.Repair.Motor_scooter_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2914 Moving and storage service Moving_and_storage_service Home_Services.Moving.Moving_and_storage_service 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2916 Moving company Moving_company Home_Services.Moving.Moving_company 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2928 Music college Music_college Education.Universities.Music_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2956 Neonatal physician Neonatal_physician Healthcare.Doctors.Neonatal_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2980 Nurse practitioner Nurse_practitioner Healthcare.Doctors.Nurse_practitioner 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2943 National library National_library Education.Libraries.National_library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2944 National museum National_museum Entertainment.Arts.National_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2981 Occupational health service Occupational_health_service Healthcare.Clinics.Occupational_health_service 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2929 Music management and promotion Music_management_and_promotion Professional_Services.Creative.Music_management_and_promotion 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2948 Natural history museum Natural_history_museum Entertainment.Arts.Natural_history_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2930 National forest National_forest Entertainment.Parks.National_forest 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2960 News service News_service Professional_Services.Creative.News_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2936 National reserve National_reserve Entertainment.Parks.National_reserve 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2940 Nature preserve Nature_preserve Entertainment.Parks.Nature_preserve 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2934 Natural rock climbing area Natural_rock_climbing_area Entertainment.Sports.Natural_rock_climbing_area 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2925 Musician Musician Entertainment.Arts.Musician 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2926 Musician and composer Musician_and_composer Entertainment.Arts.Musician_and_composer 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2945 National park National_park Entertainment.Parks.National_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2965 Night club Night_club Entertainment.Nightlife.Night_club 3 4109 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2932 Music school Music_school Education.Schools.Music_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2939 Naval base Naval_base Government.Public_Safety.Naval_base 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2935 Musical instrument manufacturer Musical_instrument_manufacturer Industrial.Manufacturing.Musical_instrument_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2958 Nuclear power company Nuclear_power_company Industrial.Utilities.Nuclear_power_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2977 Nuclear power plant Nuclear_power_plant Industrial.Utilities.Nuclear_power_plant 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2957 Non smoking holiday home Non_smoking_holiday_home Travel_Hospitality.Hotels.Non_smoking_holiday_home 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2982 Oil & natural gas company Oil_natural_gas_company Industrial.Utilities.Oil_natural_gas_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2949 Natural stone exporter Natural_stone_exporter Industrial.Logistics.Natural_stone_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2978 Pedestrian zone Pedestrian_zone Travel_Hospitality.Attractions.Pedestrian_zone 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2968 Non-governmental organization Non_governmental_organization Government.Offices.Non_governmental_organization 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2961 New Age church New_Age_church Religious.Christian.New_Age_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2967 Non-denominational church Non_denominational_church Religious.Christian.Non_denominational_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2969 Non-profit organization Non_profit_organization Community.Nonprofits.Non_profit_organization 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2953 Netball club Netball_club Community.Clubs.Netball_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2959 Nudist club Nudist_club Community.Clubs.Nudist_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2973 Notaries association Notaries_association Community.Clubs.Notaries_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2952 Naturopathic practitioner Naturopathic_practitioner Healthcare.Alternative.Naturopathic_practitioner 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2941 Nail salon Nail_salon Healthcare.Wellness.Nail_salon 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2963 Newspaper distribution service Newspaper_distribution_service Healthcare.Wellness.Newspaper_distribution_service 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2964 Newspaper publisher Newspaper_publisher Healthcare.Wellness.Newspaper_publisher 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2927 Music box store Music_box_store Retail.Stores.Music_box_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2933 Music store Music_store Retail.Stores.Music_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2938 Musical instrument store Musical_instrument_store Retail.Stores.Musical_instrument_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2942 Nanotechnology engineering service Nanotechnology_engineering_service Professional_Services.Engineering.Nanotechnology_engineering_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2976 Nuclear engineering service Nuclear_engineering_service Professional_Services.Engineering.Nuclear_engineering_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2931 Music publisher Music_publisher Professional_Services.Creative.Music_publisher 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2937 Musical instrument repair shop Musical_instrument_repair_shop Home_Services.Repair.Musical_instrument_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3036 Orthopedic surgeon Orthopedic_surgeon Healthcare.Doctors.Orthopedic_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2983 Nursery school Nursery_school Education.Schools.Nursery_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3010 Oilfield Oilfield Entertainment.Sports.Oilfield 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3015 Opera company Opera_company Entertainment.Arts.Opera_company 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3016 Opera house Opera_house Entertainment.Arts.Opera_house 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3018 Open air museum Open_air_museum Entertainment.Arts.Open_air_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2997 Off-road racing venue Off_road_racing_venue Entertainment.Venues.Off_road_racing_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3014 Olive oil manufacturer Olive_oil_manufacturer Industrial.Manufacturing.Olive_oil_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3021 Optical products manufacturer Optical_products_manufacturer Industrial.Manufacturing.Optical_products_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3031 Orthodox church Orthodox_church Religious.Christian.Orthodox_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3012 Olive oil bottling company Olive_oil_bottling_company Food_Beverage.Food_Production.Olive_oil_bottling_company 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3032 Orthodox synagogue Orthodox_synagogue Religious.Christian.Orthodox_synagogue 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3028 Organ donation and tissue bank Organ_donation_and_tissue_bank Finance.Banks.Organ_donation_and_tissue_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3025 Orchard Orchard Agriculture.Farms.Orchard 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3026 Orchid farm Orchid_farm Agriculture.Farms.Orchid_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3027 Orchid grower Orchid_grower Agriculture.Farms.Orchid_grower 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3040 Painting studio Painting_studio Entertainment.Arts.Painting_studio 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2990 Off roading area Off_roading_area Entertainment.Parks.Off_roading_area 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3013 Orphanage Orphanage Government.Social_Services.Orphanage 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2991 Office equipment rental service Office_equipment_rental_service Retail.Rentals.Office_equipment_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2995 Oil refinery Oil_refinery Industrial.Manufacturing.Oil_refinery 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3039 Packaging company Packaging_company Industrial.Manufacturing.Packaging_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3008 Oil and gas exploration service Oil_and_gas_exploration_service Industrial.Utilities.Oil_and_gas_exploration_service 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3004 Office refurbishment service Office_refurbishment_service Home_Services.Contractors.Office_refurbishment_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2989 Occupational safety and health Occupational_safety_and_health Healthcare.Medical_Services.Occupational_safety_and_health 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3023 Orthotics & prosthetics service Orthotics_prosthetics_service Healthcare.Medical_Services.Orthotics_prosthetics_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3011 Oldsmobile dealer Oldsmobile_dealer Automotive.Dealers.Oldsmobile_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2994 Women's health clinic Women_s_health_clinic Healthcare.Clinics.Women_s_health_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3020 Ophthalmology clinic Ophthalmology_clinic Healthcare.Clinics.Ophthalmology_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2988 Nut store Nut_store Retail.Stores.Nut_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2999 Off track betting shop Off_track_betting_shop Retail.Stores.Off_track_betting_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3003 Office furniture store Office_furniture_store Retail.Stores.Office_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3006 Office supply store Office_supply_store Retail.Stores.Office_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3029 Organic shop Organic_shop Retail.Stores.Organic_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3030 Oriental goods store Oriental_goods_store Retail.Stores.Oriental_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3034 Orthopedic shoe store Orthopedic_shoe_store Retail.Stores.Orthopedic_shoe_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3035 Orthopedic supplies store Orthopedic_supplies_store Retail.Stores.Orthopedic_supplies_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3038 Outboard motor store Outboard_motor_store Retail.Stores.Outboard_motor_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3001 Office accessories wholesaler Office_accessories_wholesaler Retail.Wholesale.Office_accessories_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2992 Office equipment repair service Office_equipment_repair_service Home_Services.Repair.Office_equipment_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3019 Optical instrument repair service Optical_instrument_repair_service Home_Services.Repair.Optical_instrument_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3083 Parochial school Parochial_school Education.Schools.Parochial_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3044 Painting lessons Painting_lessons Education.Tutoring.Painting_lessons 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3061 Pain management physician Pain_management_physician Healthcare.Doctors.Pain_management_physician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3046 Outdoor swimming pool Outdoor_swimming_pool Entertainment.Sports.Outdoor_swimming_pool 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3042 Outdoor bath Outdoor_bath Healthcare.Wellness.Outdoor_bath 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3059 Padel court Padel_court Entertainment.Sports.Padel_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3075 Parasailing ride operator Parasailing_ride_operator Entertainment.Arts.Parasailing_ride_operator 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3077 Park & ride Park_ride Entertainment.Parks.Park_ride 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3082 Parkour spot Parkour_spot Entertainment.Parks.Parkour_spot 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3062 Paint manufacturer Paint_manufacturer Industrial.Manufacturing.Paint_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3069 Paper exporter Paper_exporter Industrial.Logistics.Paper_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3098 Personal chef service Personal_chef_service Food_Beverage.Catering.Personal_chef_service 3 4056 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3072 Passport photo processor Passport_photo_processor Industrial.Logistics.Passport_photo_processor 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3054 Outdoor equestrian facility Outdoor_equestrian_facility Entertainment.Sports.Outdoor_equestrian_facility 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3090 Patients support association Patients_support_association Industrial.Logistics.Patients_support_association 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3058 Pachinko parlor Pachinko_parlor Entertainment.Amusement.Pachinko_parlor 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3048 Outdoor activity organiser Outdoor_activity_organiser Entertainment.Parks.Outdoor_activity_organiser 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3085 Party planner Party_planner Entertainment.Venues.Party_planner 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3073 Patent office Patent_office Government.Offices.Patent_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3057 Outlet mall Outlet_mall Retail.Stores.Outlet_mall 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3084 Party equipment rental service Party_equipment_rental_service Retail.Rentals.Party_equipment_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3055 Package locker Package_locker Industrial.Logistics.Package_locker 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3063 Paint stripping service Paint_stripping_service Home_Services.Repair.Paint_stripping_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3050 Oxygen cocktail spot Oxygen_cocktail_spot Healthcare.Medical_Services.Oxygen_cocktail_spot 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3078 Parking garage Parking_garage Automotive.Parking.Parking_garage 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3094 Pediatric cardiologist Pediatric_cardiologist Healthcare.Doctors.Pediatric_cardiologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3095 Pediatric clinic Pediatric_clinic Healthcare.Doctors.Pediatric_clinic 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3096 Pediatric endocrinologist Pediatric_endocrinologist Healthcare.Doctors.Pediatric_endocrinologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3041 Outdoor clothing and equipment shop Outdoor_clothing_and_equipment_shop Retail.Stores.Outdoor_clothing_and_equipment_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3043 Outdoor furniture store Outdoor_furniture_store Retail.Stores.Outdoor_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3045 Outdoor sports store Outdoor_sports_store Retail.Stores.Outdoor_sports_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3047 Outerwear store Outerwear_store Retail.Stores.Outerwear_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3049 Outlet store Outlet_store Retail.Stores.Outlet_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3053 Paan shop Paan_shop Retail.Stores.Paan_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3089 Patent attorney Patent_attorney Professional_Services.Legal.Patent_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3076 Payroll service Payroll_service Professional_Services.Accounting.Payroll_service 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3135 Photography school Photography_school Education.Schools.Photography_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3134 Photography class Photography_class Education.Tutoring.Photography_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3147 Pickleball court Pickleball_court Entertainment.Sports.Pickleball_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3126 Physical examination center Physical_examination_center Healthcare.Clinics.Physical_examination_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3104 Performing arts group Performing_arts_group Entertainment.Arts.Performing_arts_group 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3103 Pet sitter Pet_sitter Healthcare.Veterinary.Pet_sitter 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3115 Pet boarding service Pet_boarding_service Healthcare.Veterinary.Pet_boarding_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3109 Performing arts theater Performing_arts_theater Entertainment.Arts.Performing_arts_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3112 Personal trainer Personal_trainer Entertainment.Fitness.Personal_trainer 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3117 Pet groomer Pet_groomer Healthcare.Veterinary.Pet_groomer 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3108 Pentecostal church Pentecostal_church Religious.Christian.Pentecostal_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3120 Pet trainer Pet_trainer Healthcare.Veterinary.Pet_trainer 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3116 Pet funeral service Pet_funeral_service Religious.Spiritual.Pet_funeral_service 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3157 Pilgrim hostel Pilgrim_hostel Travel_Hospitality.Hotels.Pilgrim_hostel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3146 Pick your own farm produce Pick_your_own_farm_produce Agriculture.Farms.Pick_your_own_farm_produce 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3154 Pig farm Pig_farm Agriculture.Farms.Pig_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3125 Phone repair service Phone_repair_service Home_Services.Repair.Phone_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3140 Photo restoration service Photo_restoration_service Home_Services.Repair.Photo_restoration_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3114 Pest control service Pest_control_service Home_Services.Landscaping.Pest_control_service 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3127 Photo booth Photo_booth Professional_Services.Creative.Photo_booth 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3131 Photo lab Photo_lab Professional_Services.Creative.Photo_lab 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3136 Photography service Photography_service Professional_Services.Creative.Photography_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3130 Philharmonic hall Philharmonic_hall Entertainment.Arts.Philharmonic_hall 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3152 Picnic ground Picnic_ground Entertainment.Parks.Picnic_ground 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3105 Pension office Pension_office Government.Offices.Pension_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3118 Pet store Pet_store Retail.Stores.Pet_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3119 Pet supply store Pet_supply_store Retail.Stores.Pet_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3123 Pharmaceutical lab Pharmaceutical_lab Industrial.Manufacturing.Pharmaceutical_lab 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3128 Pharmaceutical company Pharmaceutical_company Industrial.Manufacturing.Pharmaceutical_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3153 Pile driving service Pile_driving_service Industrial.Construction.Pile_driving_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3158 Pilgrimage place Pilgrimage_place Religious.Spiritual.Pilgrimage_place 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3151 Piano tuning service Piano_tuning_service Home_Services.Repair.Piano_tuning_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3106 Personal concierge service Personal_concierge_service Professional_Services.Agencies.Personal_concierge_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3100 Pediatric orthopedic surgeon Pediatric_orthopedic_surgeon Healthcare.Doctors.Pediatric_orthopedic_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3132 Photo shop Photo_shop Retail.Stores.Photo_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3148 Picture frame shop Picture_frame_shop Retail.Stores.Picture_frame_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3149 Pie shop Pie_shop Retail.Stores.Pie_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3124 Pharmaceutical products wholesaler Pharmaceutical_products_wholesaler Retail.Wholesale.Pharmaceutical_products_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3142 Physiotherapy equipment supplier Physiotherapy_equipment_supplier Retail.Wholesale.Physiotherapy_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3111 Personal injury attorney Personal_injury_attorney Professional_Services.Legal.Personal_injury_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3121 Petrochemical engineering service Petrochemical_engineering_service Professional_Services.Engineering.Petrochemical_engineering_service 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3133 Photographer Photographer Professional_Services.Creative.Photographer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3129 Photo agency Photo_agency Professional_Services.Agencies.Photo_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3150 Piano repair service Piano_repair_service Home_Services.Repair.Piano_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3101 Pet moving service Pet_moving_service Home_Services.Moving.Pet_moving_service 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3145 Piano moving service Piano_moving_service Home_Services.Moving.Piano_moving_service 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3180 Police academy Police_academy Education.Schools.Police_academy 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3194 Cue sports school Cue_sports_school Education.Schools.Cue_sports_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3192 Pottery classes Pottery_classes Education.Tutoring.Pottery_classes 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3186 Pool billard club Pool_billard_club Entertainment.Sports.Pool_billard_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3197 Pool hall Pool_hall Entertainment.Sports.Pool_hall 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3172 Plastic surgeon Plastic_surgeon Healthcare.Doctors.Plastic_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3214 Pregnancy care center Pregnancy_care_center Healthcare.Clinics.Pregnancy_care_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3191 Port operating company Port_operating_company Entertainment.Arts.Port_operating_company 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3166 Plastic fabrication company Plastic_fabrication_company Industrial.Manufacturing.Plastic_fabrication_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3171 Plastic resin manufacturer Plastic_resin_manufacturer Industrial.Manufacturing.Plastic_resin_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3200 Portable building manufacturer Portable_building_manufacturer Industrial.Manufacturing.Portable_building_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3164 Pizza takeaway Pizza_takeaway Food_Beverage.Restaurants.Pizza_takeaway 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3205 Pottery manufacturer Pottery_manufacturer Industrial.Manufacturing.Pottery_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3190 Port authority Port_authority Industrial.Logistics.Port_authority 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3213 Japanese prefecture government office Japanese_prefecture_government_office Government.Offices.Japanese_prefecture_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3181 Police officers' housing Police_officers_housing Government.Public_Safety.Police_officers_housing 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3203 Post office Post_office Government.Postal.Post_office 3 4120 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3216 Presbyterian church Presbyterian_church Religious.Christian.Presbyterian_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3165 Place of worship Place_of_worship Religious.Other_Religions.Place_of_worship 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3215 Foie gras producer Foie_gras_producer Food_Beverage.Food_Production.Foie_gras_producer 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3193 Pony ride service Pony_ride_service Entertainment.Sports.Pony_ride_service 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3207 Poultry farm Poultry_farm Agriculture.Farms.Poultry_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3198 Prawn fishing Prawn_fishing Entertainment.Parks.Prawn_fishing 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3195 Polytechnic institute Polytechnic_institute Education.Universities.Polytechnic_institute 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3183 Political party office Political_party_office Government.Offices.Political_party_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3187 Powder coating service Powder_coating_service Industrial.Construction.Powder_coating_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3184 Power station Power_station Industrial.Utilities.Power_station 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3199 Polygraph service Polygraph_service Professional_Services.Legal.Polygraph_service 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3173 Plastic surgery clinic Plastic_surgery_clinic Healthcare.Clinics.Plastic_surgery_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3161 Pine furniture shop Pine_furniture_shop Retail.Stores.Pine_furniture_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3209 Power plant consultant Power_plant_consultant Professional_Services.Consulting.Power_plant_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3212 Precision engineer Precision_engineer Professional_Services.Engineering.Precision_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3196 Pool cleaning service Pool_cleaning_service Home_Services.Cleaning.Pool_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3260 Public bath Public_bath Healthcare.Wellness.Public_bath 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3261 Public bathroom Public_bathroom Healthcare.Wellness.Public_bathroom 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3217 Preschool Preschool Education.Schools.Preschool 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3229 Private investigator Private_investigator Professional_Services.Legal.Private_investigator 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3221 Primary school Primary_school Education.Schools.Primary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3228 Private college Private_college Education.Universities.Private_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3234 Private tutor Private_tutor Education.Tutoring.Private_tutor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3266 Public library Public_library Education.Libraries.Public_library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3231 Process server Process_server Professional_Services.Legal.Process_server 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3232 Professional organizer Professional_organizer Professional_Services.Consulting.Professional_organizer 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3218 Press advisory Press_advisory Professional_Services.Marketing.Press_advisory 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3227 Private educational institution Private_educational_institution Education.Schools.Private_educational_institution 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3230 Private golf course Private_golf_course Entertainment.Sports.Private_golf_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3264 Public golf course Public_golf_course Entertainment.Sports.Public_golf_course 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3219 Land registry office Land_registry_office Government.Offices.Land_registry_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3273 Public educational institution Public_educational_institution Education.Schools.Public_educational_institution 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3225 Probation office Probation_office Government.Offices.Probation_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3248 Psychic Psychic Religious.Spiritual.Psychic 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3233 Private sector bank Private_sector_bank Finance.Banks.Private_sector_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3274 Public sector bank Public_sector_bank Finance.Banks.Public_sector_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3262 Public defender's office Public_defender_s_office Government.Offices.Public_defender_s_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3269 Public prosecutors office Public_prosecutors_office Government.Offices.Public_prosecutors_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3271 Public safety office Public_safety_office Government.Offices.Public_safety_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3245 Property investment company Property_investment_company Finance.Investment.Property_investment_company 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3265 Public housing Public_housing Government.Social_Services.Public_housing 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3237 Private equity firm Private_equity_firm Finance.Investment.Private_equity_firm 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3253 Pumpkin patch Pumpkin_patch Retail.Markets.Pumpkin_patch 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3249 Psychoanalyst Psychoanalyst Healthcare.Mental_Health.Psychoanalyst 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3263 Public female bathroom Public_female_bathroom Government.Public_Safety.Public_female_bathroom 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3267 Public male bathroom Public_male_bathroom Government.Public_Safety.Public_male_bathroom 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3251 Psychiatrist Psychiatrist Healthcare.Doctors.Psychiatrist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3220 Pretzel store Pretzel_store Retail.Stores.Pretzel_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3224 Printer ink refill store Printer_ink_refill_store Retail.Stores.Printer_ink_refill_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3243 Propeller shop Propeller_shop Retail.Stores.Propeller_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3226 Printing equipment supplier Printing_equipment_supplier Retail.Wholesale.Printing_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3238 Produce wholesaler Produce_wholesaler Retail.Wholesale.Produce_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3241 Promotional products supplier Promotional_products_supplier Retail.Wholesale.Promotional_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3242 Propane supplier Propane_supplier Retail.Wholesale.Propane_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3247 Protective clothing supplier Protective_clothing_supplier Retail.Wholesale.Protective_clothing_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3236 Probate attorney Probate_attorney Professional_Services.Legal.Probate_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3270 Public relations firm Public_relations_firm Professional_Services.Marketing.Public_relations_firm 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3223 Printed music publisher Printed_music_publisher Professional_Services.Creative.Printed_music_publisher 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3222 Pressure washing service Pressure_washing_service Home_Services.Cleaning.Pressure_washing_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3235 Printer repair service Printer_repair_service Home_Services.Repair.Printer_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3310 Rental car return location Rental_car_return_location Automotive.Rentals.Rental_car_return_location 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3313 Registered general nurse Registered_general_nurse Healthcare.Doctors.Registered_general_nurse 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3312 Realschule (middle-tier secondary school) Realschule_middle_tier_secondary_school Education.Schools.Realschule_middle_tier_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3334 Religious school Religious_school Education.Schools.Religious_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3275 Public swimming pool Public_swimming_pool Entertainment.Sports.Public_swimming_pool 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3282 Quantity surveyor Quantity_surveyor Professional_Services.Accounting.Quantity_surveyor 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3317 Recreation center Recreation_center Entertainment.Sports.Recreation_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3283 Puppet theater Puppet_theater Entertainment.Arts.Puppet_theater 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3296 Radio broadcaster Radio_broadcaster Professional_Services.Creative.Radio_broadcaster 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3314 Record company Record_company Professional_Services.Creative.Record_company 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3318 Rehearsal studio Rehearsal_studio Entertainment.Arts.Rehearsal_studio 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3297 Rail museum Rail_museum Entertainment.Arts.Rail_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3276 Public utility company Public_utility_company Industrial.Utilities.Public_utility_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3320 Recycling center Recycling_center Industrial.Waste.Recycling_center 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3321 Recycling drop-off location Recycling_drop_off_location Industrial.Waste.Recycling_drop_off_location 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3279 Public works department Public_works_department Government.Offices.Public_works_department 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3326 Regional council Regional_council Government.Offices.Regional_council 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3289 Quarry Quarry Industrial.Mining.Quarry 3 4115 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3330 Regional government office Regional_government_office Government.Offices.Regional_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3309 Refugee camp Refugee_camp Government.Social_Services.Refugee_camp 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3287 Quaker church Quaker_church Religious.Christian.Quaker_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3325 Reformed church Reformed_church Religious.Christian.Reformed_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3327 Religious lodging Religious_lodging Travel_Hospitality.Hotels.Religious_lodging 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3324 Reform synagogue Reform_synagogue Religious.Other_Religions.Reform_synagogue 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3329 Regional airport Regional_airport Travel_Hospitality.Airlines.Regional_airport 3 4126 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3322 Reenactment site Reenactment_site Travel_Hospitality.Attractions.Reenactment_site 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3298 Railroad company Railroad_company Travel_Hospitality.Transportation.Railroad_company 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3301 Railway services Railway_services Travel_Hospitality.Transportation.Railway_services 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3294 Raft trip outfitter Raft_trip_outfitter Travel_Hospitality.Travel_Services.Raft_trip_outfitter 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3307 Real estate appraiser Real_estate_appraiser Real_Estate.Agents.Real_estate_appraiser 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3290 Racquetball club Racquetball_club Community.Clubs.Racquetball_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3286 Qing fang market place Qing_fang_market_place Retail.Markets.Qing_fang_market_place 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3319 Religious destination Religious_destination Religious.Spiritual.Religious_destination 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3277 Public water well Public_water_well Government.Public_Safety.Public_water_well 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3288 Racecourse Racecourse Entertainment.Sports.Racecourse 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3304 Ranch Ranch Agriculture.Farms.Ranch 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3303 Ram dealer Ram_dealer Automotive.Dealers.Ram_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3292 Quilt shop Quilt_shop Retail.Stores.Quilt_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3305 Rare book store Rare_book_store Retail.Stores.Rare_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3315 Record store Record_store Retail.Stores.Record_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3281 Pump supplier Pump_supplier Retail.Wholesale.Pump_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3308 Real estate consultant Real_estate_consultant Professional_Services.Consulting.Real_estate_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3280 Publisher Publisher Professional_Services.Creative.Publisher 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3316 Recording studio Recording_studio Professional_Services.Creative.Recording_studio 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3285 Radiator repair service Radiator_repair_service Home_Services.Repair.Radiator_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3311 Records storage facility Records_storage_facility Home_Services.Moving.Records_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3379 RV detailing service RV_detailing_service Automotive.Rentals.RV_detailing_service 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3344 Residential college Residential_college Education.Universities.Residential_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3388 RV inspection service RV_inspection_service Automotive.Rentals.RV_inspection_service 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3347 Rock climbing instructor Rock_climbing_instructor Education.Tutoring.Rock_climbing_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3374 Salsa classes Salsa_classes Education.Tutoring.Salsa_classes 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3361 Roller skating club Roller_skating_club Entertainment.Sports.Roller_skating_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3364 Roller skating rink Roller_skating_rink Entertainment.Sports.Roller_skating_rink 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3389 Roommate referral service Roommate_referral_service Professional_Services.Agencies.Roommate_referral_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3354 Rock climbing Rock_climbing Entertainment.Sports.Rock_climbing 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3363 Road cycling Road_cycling Entertainment.Sports.Road_cycling 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3381 Rowing area Rowing_area Entertainment.Sports.Rowing_area 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3357 Research institute Research_institute Education.Universities.Research_institute 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3352 Retirement community Retirement_community Government.Social_Services.Retirement_community 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3367 Rock climbing gym Rock_climbing_gym Entertainment.Fitness.Rock_climbing_gym 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3390 RV park RV_park Entertainment.Parks.RV_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3343 Rice mill Rice_mill Industrial.Manufacturing.Rice_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3335 Refrigerated transport service Refrigerated_transport_service Industrial.Logistics.Refrigerated_transport_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3375 Salvage yard Salvage_yard Industrial.Waste.Salvage_yard 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3353 Retirement home Retirement_home Government.Social_Services.Retirement_home 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3385 Russian Orthodox church Russian_Orthodox_church Religious.Christian.Russian_Orthodox_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3360 Rideshare pickup location Rideshare_pickup_location Travel_Hospitality.Transportation.Rideshare_pickup_location 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3346 Resort hotel Resort_hotel Travel_Hospitality.Hotels.Resort_hotel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3348 Rest stop Rest_stop Travel_Hospitality.Travel_Services.Rest_stop 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3337 Renter's insurance agency Renter_s_insurance_agency Finance.Insurance.Renter_s_insurance_agency 3 4130 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3373 Saddlery Saddlery Agriculture.Livestock.Saddlery 3 4141 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3342 Research foundation Research_foundation Community.Nonprofits.Research_foundation 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3345 Residents association Residents_association Community.Clubs.Residents_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3358 Rock music club Rock_music_club Community.Clubs.Rock_music_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3382 Rugby league club Rugby_league_club Community.Clubs.Rugby_league_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3393 Sailing club Sailing_club Community.Clubs.Sailing_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3365 Road safety town Road_safety_town Government.Offices.Road_safety_town 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3387 RV dealer RV_dealer Automotive.Dealers.RV_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3338 Reproductive health clinic Reproductive_health_clinic Healthcare.Clinics.Reproductive_health_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3340 Rehabilitation center Rehabilitation_center Healthcare.Mental_Health.Rehabilitation_center 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3339 Reptile store Reptile_store Retail.Stores.Reptile_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3356 Rice cracker shop Rice_cracker_shop Retail.Stores.Rice_cracker_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3368 Rock shop Rock_shop Retail.Stores.Rock_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3341 Research engineer Research_engineer Professional_Services.Engineering.Research_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3366 Roads ports and canals engineers association Roads_ports_and_canals_engineers_association Professional_Services.Engineering.Roads_ports_and_canals_engineers_association 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3349 Road construction machine repair service Road_construction_machine_repair_service Home_Services.Contractors.Road_construction_machine_repair_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3362 Road construction company Road_construction_company Home_Services.Contractors.Road_construction_company 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3371 Roofing contractor Roofing_contractor Home_Services.Contractors.Roofing_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3336 Refrigerator repair service Refrigerator_repair_service Home_Services.Repair.Refrigerator_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3380 RV repair and maintenance service RV_repair_and_maintenance_service Home_Services.Repair.RV_repair_and_maintenance_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3392 RV repair shop RV_repair_shop Home_Services.Repair.RV_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3398 Sailing school Sailing_school Education.Schools.Sailing_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3402 Samba school Samba_school Education.Schools.Samba_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3403 Sambo school Sambo_school Education.Schools.Sambo_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3409 Scooter rental service Scooter_rental_service Automotive.Rentals.Scooter_rental_service 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3424 School bus service School_bus_service Education.Schools.School_bus_service 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3425 School district office School_district_office Education.Schools.School_district_office 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3452 Security guard service Security_guard_service Home_Services.Security.Security_guard_service 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3453 Security service Security_service Home_Services.Security.Security_service 3 4094 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3426 School for the deaf School_for_the_deaf Education.Schools.School_for_the_deaf 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3410 Satellite communication service Satellite_communication_service Professional_Services.IT.Satellite_communication_service 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3427 School house School_house Education.Schools.School_house 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3412 Scenography company Scenography_company Professional_Services.Creative.Scenography_company 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3397 Sailing event area Sailing_event_area Entertainment.Sports.Sailing_event_area 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3451 Secondary school Secondary_school Education.Schools.Secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3439 Aged care Aged_care Government.Social_Services.Aged_care 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3429 Science museum Science_museum Entertainment.Arts.Science_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3443 Sculpture museum Sculpture_museum Entertainment.Arts.Sculpture_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3405 Saw mill Saw_mill Industrial.Manufacturing.Saw_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3442 Senior citizen center Senior_citizen_center Government.Social_Services.Senior_citizen_center 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3420 Sanitary inspection Sanitary_inspection Government.Courts.Sanitary_inspection 3 4118 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3416 Scenic spot Scenic_spot Travel_Hospitality.Attractions.Scenic_spot 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3407 Sandblasting service Sandblasting_service Industrial.Construction.Sandblasting_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3411 Scaffolding rental service Scaffolding_rental_service Industrial.Construction.Scaffolding_rental_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3408 Scouting Scouting Community.Organizations.Scouting 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3449 Sewage disposal service Sewage_disposal_service Industrial.Waste.Sewage_disposal_service 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3415 Savings bank Savings_bank Finance.Banks.Savings_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3413 Scale model club Scale_model_club Community.Clubs.Scale_model_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3444 Seafood farm Seafood_farm Agriculture.Farms.Seafood_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3417 Scout hall Scout_hall Community.Organizations.Scout_hall 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3419 Scout home Scout_home Community.Organizations.Scout_home 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3399 Sailmaker Sailmaker Industrial.Manufacturing.Sailmaker 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3450 Sewing company Sewing_company Industrial.Manufacturing.Sewing_company 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3418 Saw sharpening service Saw_sharpening_service Home_Services.Repair.Saw_sharpening_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3436 Self service health station Self_service_health_station Healthcare.Medical_Services.Self_service_health_station 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3400 Sake brewery Sake_brewery Food_Beverage.Bars_Nightlife.Sake_brewery 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3432 Scrap metal dealer Scrap_metal_dealer Automotive.Dealers.Scrap_metal_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3394 RV supply store RV_supply_store Retail.Stores.RV_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3440 SCUBA tour agency SCUBA_tour_agency Professional_Services.Agencies.SCUBA_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3445 Septic system service Septic_system_service Home_Services.Plumbing.Septic_system_service 3 4087 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3414 Scale repair service Scale_repair_service Home_Services.Repair.Scale_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3431 Scooter repair shop Scooter_repair_shop Home_Services.Repair.Scooter_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3441 Screen repair service Screen_repair_service Home_Services.Repair.Screen_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3457 Self service car wash Self_service_car_wash Automotive.Repair.Self_service_car_wash 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3456 Self defense school Self_defense_school Education.Schools.Self_defense_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3460 Senior high school Senior_high_school Education.Schools.Senior_high_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3467 Shared-use commercial kitchen Shared_use_commercial_kitchen Food_Beverage.Food_Production.Shared_use_commercial_kitchen 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3497 Slaughterhouse Slaughterhouse Food_Beverage.Food_Production.Slaughterhouse 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3492 Shopfitter Shopfitter Home_Services.Contractors.Shopfitter 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3506 Single sex secondary school Single_sex_secondary_school Education.Schools.Single_sex_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3507 Sixth form college Sixth_form_college Education.Universities.Sixth_form_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3473 Shogi lesson Shogi_lesson Education.Tutoring.Shogi_lesson 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3505 Skating instructor Skating_instructor Education.Tutoring.Skating_instructor 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3498 Ski rental service Ski_rental_service Entertainment.Sports.Ski_rental_service 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3476 Shooting range Shooting_range Entertainment.Sports.Shooting_range 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3510 Skatepark Skatepark Entertainment.Parks.Skatepark 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3508 Skeet shooting range Skeet_shooting_range Entertainment.Sports.Skeet_shooting_range 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3512 Skydiving center Skydiving_center Entertainment.Sports.Skydiving_center 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3462 Sewage treatment plant Sewage_treatment_plant Industrial.Manufacturing.Sewage_treatment_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3485 Shoe factory Shoe_factory Industrial.Manufacturing.Shoe_factory 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3482 Shipping company Shipping_company Industrial.Logistics.Shipping_company 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3461 Seventh-day Adventist church Seventh_day_Adventist_church Religious.Christian.Seventh_day_Adventist_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3474 Shinto shrine Shinto_shrine Religious.Other_Religions.Shinto_shrine 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3488 Showroom Showroom Retail.Stores.Showroom 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3503 Shrine Shrine Religious.Other_Religions.Shrine 3 4122 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3493 Shopping mall Shopping_mall Retail.Stores.Shopping_mall 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3470 Sheltered housing Sheltered_housing Community.Nonprofits.Sheltered_housing 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3496 Shrimp farm Shrimp_farm Agriculture.Farms.Shrimp_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3472 Shipyard Shipyard Industrial.Manufacturing.Shipyard 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3481 Shipping and mailing service Shipping_and_mailing_service Industrial.Logistics.Shipping_and_mailing_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3483 Shipping equipment industry Shipping_equipment_industry Industrial.Logistics.Shipping_equipment_industry 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3468 Sheep shearer Sheep_shearer Agriculture.Livestock.Sheep_shearer 3 4141 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3504 Silversmith Silversmith Industrial.Manufacturing.Silversmith 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3499 Skate sharpening service Skate_sharpening_service Home_Services.Repair.Skate_sharpening_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3487 Shoe shining service Shoe_shining_service Home_Services.Personal.Shoe_shining_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3490 Shooting event area Shooting_event_area Entertainment.Sports.Shooting_event_area 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3484 Shochu brewery Shochu_brewery Food_Beverage.Bars_Nightlife.Shochu_brewery 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3513 Smog inspection station Smog_inspection_station Automotive.Repair.Smog_inspection_station 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3464 Sewing machine store Sewing_machine_store Retail.Stores.Sewing_machine_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3465 Sewing shop Sewing_shop Retail.Stores.Sewing_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3479 Sheet music store Sheet_music_store Retail.Stores.Sheet_music_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3500 Sightseeing tour agency Sightseeing_tour_agency Professional_Services.Agencies.Sightseeing_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3475 Shed builder Shed_builder Home_Services.Contractors.Shed_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3478 Sheet metal contractor Sheet_metal_contractor Home_Services.Contractors.Sheet_metal_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3463 Shipbuilding and repair company Shipbuilding_and_repair_company Home_Services.Repair.Shipbuilding_and_repair_company 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3466 Sewing machine repair service Sewing_machine_repair_service Home_Services.Repair.Sewing_machine_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3486 Shoe repair shop Shoe_repair_shop Home_Services.Repair.Shoe_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3509 Ski repair service Ski_repair_service Home_Services.Repair.Ski_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3458 Self-storage facility Self_storage_facility Home_Services.Moving.Self_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3570 Southwestern restaurant (US) Southwestern_restaurant_US Food_Beverage.Restaurants.Southwestern_restaurant_US 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3550 Snow removal service Snow_removal_service Home_Services.Cleaning.Snow_removal_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3528 Small claims assistance service Small_claims_assistance_service Professional_Services.Legal.Small_claims_assistance_service 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3518 Ski school Ski_school Education.Schools.Ski_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3515 Skin care products vending machine Skin_care_products_vending_machine Entertainment.Sports.Skin_care_products_vending_machine 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3569 Swimming basin Swimming_basin Entertainment.Sports.Swimming_basin 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3517 Ski resort Ski_resort Entertainment.Sports.Ski_resort 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3521 Skittle club Skittle_club Entertainment.Sports.Skittle_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3536 Soccer field Soccer_field Entertainment.Sports.Soccer_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3538 Softball field Softball_field Entertainment.Sports.Softball_field 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3545 Social worker Social_worker Government.Social_Services.Social_worker 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3526 Smart locker manufacturer Smart_locker_manufacturer Industrial.Manufacturing.Smart_locker_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3571 Souvenir manufacturer Souvenir_manufacturer Industrial.Manufacturing.Souvenir_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3532 Solar energy company Solar_energy_company Industrial.Utilities.Solar_energy_company 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3533 Solar energy system service Solar_energy_system_service Industrial.Utilities.Solar_energy_system_service 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3560 Soup kitchen Soup_kitchen Government.Social_Services.Soup_kitchen 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3537 Snowboard rental service Snowboard_rental_service Retail.Rentals.Snowboard_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3543 Social security financial department Social_security_financial_department Government.Social_Services.Social_security_financial_department 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3544 Social security office Social_security_office Government.Social_Services.Social_security_office 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3539 Snowmobile rental service Snowmobile_rental_service Retail.Rentals.Snowmobile_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3559 Solar panel maintenance service Solar_panel_maintenance_service Home_Services.Contractors.Solar_panel_maintenance_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3546 Social welfare center Social_welfare_center Government.Social_Services.Social_welfare_center 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3516 Singing telegram service Singing_telegram_service Professional_Services.Agencies.Singing_telegram_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3541 Social club Social_club Community.Clubs.Social_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3548 Softball club Softball_club Community.Clubs.Softball_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3531 Snack bar Snack_bar Food_Beverage.Bars_Nightlife.Snack_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3525 Smart Car dealer Smart_Car_dealer Automotive.Dealers.Smart_Car_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3535 Snowmobile dealer Snowmobile_dealer Automotive.Dealers.Snowmobile_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3557 Solid fuel company Solid_fuel_company Automotive.Fuel.Solid_fuel_company 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3564 Speech pathologist Speech_pathologist Healthcare.Doctors.Speech_pathologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3520 Skin care clinic Skin_care_clinic Healthcare.Clinics.Skin_care_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3523 Sleep clinic Sleep_clinic Healthcare.Clinics.Sleep_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3547 Soil testing service Soil_testing_service Healthcare.Medical_Services.Soil_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3519 Ski shop Ski_shop Retail.Stores.Ski_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3527 Smart shop Smart_shop Retail.Stores.Smart_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3530 Smoke shop Smoke_shop Retail.Stores.Smoke_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3534 Snowboard shop Snowboard_shop Retail.Stores.Snowboard_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3540 Soccer store Soccer_store Retail.Stores.Soccer_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3542 Social security attorney Social_security_attorney Professional_Services.Legal.Social_security_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3552 Software company Software_company Professional_Services.IT.Software_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3553 Software training institute Software_training_institute Professional_Services.IT.Software_training_institute 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3558 Solid waste engineer Solid_waste_engineer Professional_Services.Engineering.Solid_waste_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3522 Skylight contractor Skylight_contractor Home_Services.Contractors.Skylight_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3524 Small appliance repair service Small_appliance_repair_service Home_Services.Repair.Small_appliance_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3529 Small engine repair service Small_engine_repair_service Home_Services.Repair.Small_engine_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3602 Steak house Steak_house Food_Beverage.Restaurants.Steak_house 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3579 Special education school Special_education_school Education.Schools.Special_education_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3596 Sports school Sports_school Education.Schools.Sports_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3574 Sports equipment rental service Sports_equipment_rental_service Entertainment.Sports.Sports_equipment_rental_service 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3573 Soy sauce maker Soy_sauce_maker Food_Beverage.Food_Production.Soy_sauce_maker 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3589 Sports club Sports_club Entertainment.Sports.Sports_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3590 Sports complex Sports_complex Entertainment.Sports.Sports_complex 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3604 Stall installation service Stall_installation_service Home_Services.Contractors.Stall_installation_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3593 Sports medicine physician Sports_medicine_physician Entertainment.Sports.Sports_medicine_physician 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3601 Squash court Squash_court Entertainment.Sports.Squash_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3598 Sportwear manufacturer Sportwear_manufacturer Industrial.Manufacturing.Sportwear_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3609 Stainless steel plant Stainless_steel_plant Industrial.Manufacturing.Stainless_steel_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3619 Stationery manufacturer Stationery_manufacturer Industrial.Manufacturing.Stationery_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3628 Sticker manufacturer Sticker_manufacturer Industrial.Manufacturing.Sticker_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3605 Stained glass studio Stained_glass_studio Entertainment.Arts.Stained_glass_studio 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3610 Stage Stage Entertainment.Venues.Stage 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3614 State office of education State_office_of_education Government.Offices.State_office_of_education 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3615 State government office State_government_office Government.Offices.State_government_office 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3627 Summer camp organizer Summer_camp_organizer Education.Childcare.Summer_camp_organizer 3 4101 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3582 Sperm bank Sperm_bank Finance.Banks.Sperm_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3603 Squash club Squash_club Community.Clubs.Squash_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3607 Steelwork design service Steelwork_design_service Industrial.Construction.Steelwork_design_service 3 4111 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3613 Stamp collectors club Stamp_collectors_club Community.Clubs.Stamp_collectors_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3578 Spiritist center Spiritist_center Religious.Spiritual.Spiritist_center 3 4123 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3608 Wind farm Wind_farm Agriculture.Farms.Wind_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3617 State owned farm State_owned_farm Agriculture.Farms.State_owned_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3630 Student dormitory Student_dormitory Real_Estate.Property_Management.Student_dormitory 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3631 Student housing center Student_housing_center Real_Estate.Property_Management.Student_housing_center 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3612 Staple food package Staple_food_package Food_Beverage.Food_Production.Staple_food_package 3 4055 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3583 Spice store Spice_store Retail.Stores.Spice_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3586 Sporting goods store Sporting_goods_store Retail.Stores.Sporting_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3588 Sports card store Sports_card_store Retail.Stores.Sports_card_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3594 Sports memorabilia store Sports_memorabilia_store Retail.Stores.Sports_memorabilia_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3595 Sports nutrition store Sports_nutrition_store Retail.Stores.Sports_nutrition_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3597 Sportswear store Sportswear_store Retail.Stores.Sportswear_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3611 Stamp shop Stamp_shop Retail.Stores.Stamp_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3616 State liquor store State_liquor_store Retail.Stores.State_liquor_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3620 Stationery store Stationery_store Retail.Stores.Stationery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3585 Sport tour agency Sport_tour_agency Professional_Services.Agencies.Sport_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3624 Steel construction company Steel_construction_company Home_Services.Contractors.Steel_construction_company 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3625 Steel framework contractor Steel_framework_contractor Home_Services.Contractors.Steel_framework_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3618 Stereo repair service Stereo_repair_service Home_Services.Repair.Stereo_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3660 Sushi takeaway Sushi_takeaway Food_Beverage.Restaurants.Sushi_takeaway 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3644 Study at home school Study_at_home_school Education.Schools.Study_at_home_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3652 Surf school Surf_school Education.Schools.Surf_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3672 Swimming school Swimming_school Education.Schools.Swimming_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3679 Taekwondo school Taekwondo_school Education.Schools.Taekwondo_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3688 Tattoo artist Tattoo_artist Home_Services.Personal.Tattoo_artist 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3689 Tattoo removal service Tattoo_removal_service Home_Services.Personal.Tattoo_removal_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3657 Surveyor Surveyor Professional_Services.Engineering.Surveyor 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3661 Taekwondo competition area Taekwondo_competition_area Entertainment.Sports.Taekwondo_competition_area 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3664 Swimming competition Swimming_competition Entertainment.Sports.Swimming_competition 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3665 Swimming facility Swimming_facility Entertainment.Sports.Swimming_facility 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3666 Swimming instructor Swimming_instructor Entertainment.Sports.Swimming_instructor 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3680 Tai chi school Tai_chi_school Education.Schools.Tai_chi_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3641 Stitching class Stitching_class Education.Tutoring.Stitching_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3633 Summer toboggan run Summer_toboggan_run Entertainment.Amusement.Summer_toboggan_run 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3668 Swimming pool Swimming_pool Entertainment.Sports.Swimming_pool 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3675 Table tennis club Table_tennis_club Entertainment.Sports.Table_tennis_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3676 Table tennis facility Table_tennis_facility Entertainment.Sports.Table_tennis_facility 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3667 Swimming lake Swimming_lake Entertainment.Parks.Swimming_lake 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3647 Sugar factory Sugar_factory Industrial.Manufacturing.Sugar_factory 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3643 Students support association Students_support_association Industrial.Logistics.Students_support_association 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3648 Support group Support_group Industrial.Logistics.Support_group 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3638 Student career counseling office Student_career_counseling_office Education.Tutoring.Student_career_counseling_office 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3646 Suburban train line Suburban_train_line Travel_Hospitality.Transportation.Suburban_train_line 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3632 Stock broker Stock_broker Finance.Investment.Stock_broker 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3642 Students parents association Students_parents_association Community.Clubs.Students_parents_association 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3649 Surf lifesaving club Surf_lifesaving_club Community.Clubs.Surf_lifesaving_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3635 Stock exchange building Stock_exchange_building Finance.Investment.Stock_exchange_building 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3659 Tannery Tannery Industrial.Manufacturing.Tannery 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3645 Superfund site Superfund_site Industrial.Waste.Superfund_site 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3640 Stone cutter Stone_cutter Industrial.Manufacturing.Stone_cutter 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3692 Teachers' housing Teachers_housing Real_Estate.Property_Management.Teachers_housing 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3662 Suzuki dealer Suzuki_dealer Automotive.Dealers.Suzuki_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3654 Surgeon Surgeon Healthcare.Doctors.Surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3683 Tanning salon Tanning_salon Healthcare.Wellness.Tanning_salon 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3650 Sunglasses store Sunglasses_store Retail.Stores.Sunglasses_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3653 Surf shop Surf_shop Retail.Stores.Surf_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3651 Superannuation consultant Superannuation_consultant Professional_Services.Consulting.Superannuation_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3639 Structural engineer Structural_engineer Professional_Services.Engineering.Structural_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3681 Talent agency Talent_agency Professional_Services.Agencies.Talent_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3669 Swimming pool contractor Swimming_pool_contractor Home_Services.Contractors.Swimming_pool_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3670 Swimming pool repair service Swimming_pool_repair_service Home_Services.Repair.Swimming_pool_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3706 Technical school Technical_school Education.Schools.Technical_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3716 Tesla showroom Tesla_showroom Automotive.Dealers.Tesla_showroom 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3705 Teachers college Teachers_college Education.Universities.Teachers_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3719 Tennis club Tennis_club Entertainment.Sports.Tennis_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3695 Teeth whitening service Teeth_whitening_service Healthcare.Dental.Teeth_whitening_service 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3720 Tennis court Tennis_court Entertainment.Sports.Tennis_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3714 Tiffin center Tiffin_center Food_Beverage.Restaurants.Tiffin_center 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3741 Woodworker Woodworker Home_Services.Contractors.Woodworker 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3694 Tax collector's office Tax_collector_s_office Professional_Services.Accounting.Tax_collector_s_office 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3696 Tax preparation Tax_preparation Professional_Services.Accounting.Tax_preparation 3 4079 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3707 Technology museum Technology_museum Entertainment.Arts.Technology_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3708 Technology park Technology_park Entertainment.Parks.Technology_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3703 Tea manufacturer Tea_manufacturer Industrial.Manufacturing.Tea_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3713 Textile mill Textile_mill Industrial.Manufacturing.Textile_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3699 Telephone company Telephone_company Professional_Services.IT.Telephone_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3700 Telephone exchange Telephone_exchange Professional_Services.IT.Telephone_exchange 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3718 Television station Television_station Professional_Services.Creative.Television_station 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3722 Test preparation center Test_preparation_center Education.Training.Test_preparation_center 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3736 Tile manufacturer Tile_manufacturer Industrial.Manufacturing.Tile_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3725 Textile exporter Textile_exporter Industrial.Logistics.Textile_exporter 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3748 Communications tower Communications_tower Travel_Hospitality.Attractions.Communications_tower 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3751 Toll road rest stop Toll_road_rest_stop Travel_Hospitality.Travel_Services.Toll_road_rest_stop 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3698 Taxi service Taxi_service Travel_Hospitality.Transportation.Taxi_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3715 Tenant's union Tenant_s_union Community.Clubs.Tenant_s_union 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3745 Title company Title_company Finance.Investment.Title_company 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3742 Tool rental service Tool_rental_service Retail.Rentals.Tool_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3697 Telephone answering service Telephone_answering_service Professional_Services.Agencies.Telephone_answering_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3717 Tenant ownership Tenant_ownership Real_Estate.Property_Management.Tenant_ownership 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3733 Ticket office Ticket_office Retail.Stores.Ticket_office 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3749 Toll station Toll_station Government.Offices.Toll_station 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3752 Toolroom Toolroom Industrial.Manufacturing.Toolroom 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3739 Tire repair shop Tire_repair_shop Automotive.Parts.Tire_repair_shop 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3726 Thai massage therapist Thai_massage_therapist Healthcare.Mental_Health.Thai_massage_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3712 Telescope store Telescope_store Retail.Stores.Telescope_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3723 Tennis store Tennis_store Retail.Stores.Tennis_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3693 Tax attorney Tax_attorney Professional_Services.Legal.Tax_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3702 Telemarketing service Telemarketing_service Professional_Services.Marketing.Telemarketing_service 3 4081 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3710 Telecommunications engineer Telecommunications_engineer Professional_Services.Engineering.Telecommunications_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3724 Textile engineer Textile_engineer Professional_Services.Engineering.Textile_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3731 3D printing service cat_3D_printing_service Professional_Services.Creative.cat_3D_printing_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3737 Timeshare agency Timeshare_agency Professional_Services.Agencies.Timeshare_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3709 Telecommunications contractor Telecommunications_contractor Home_Services.Contractors.Telecommunications_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3721 Tennis court construction company Tennis_court_construction_company Home_Services.Contractors.Tennis_court_construction_company 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3735 Tile cleaning service Tile_cleaning_service Home_Services.Cleaning.Tile_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3701 Television repair service Television_repair_service Home_Services.Repair.Television_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3764 Towing service Towing_service Automotive.Repair.Towing_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3808 Truck driving school Truck_driving_school Education.Training.Truck_driving_school 3 4098 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3765 Toy library Toy_library Education.Libraries.Toy_library 3 4100 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3761 Tour operator Tour_operator Entertainment.Arts.Tour_operator 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3767 Toy museum Toy_museum Entertainment.Arts.Toy_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3754 Tool manufacturer Tool_manufacturer Industrial.Manufacturing.Tool_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3795 Travel lounge Travel_lounge Food_Beverage.Bars_Nightlife.Travel_lounge 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3755 Topography company Topography_company Professional_Services.Engineering.Topography_company 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3778 Transcription service Transcription_service Professional_Services.Agencies.Transcription_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3790 Translation service Translation_service Professional_Services.Agencies.Translation_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3776 Traffic officer Traffic_officer Government.Public_Safety.Traffic_officer 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3786 Train ticket office Train_ticket_office Travel_Hospitality.Transportation.Train_ticket_office 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3787 Train yard Train_yard Travel_Hospitality.Transportation.Train_yard 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3766 Toy manufacturer Toy_manufacturer Industrial.Manufacturing.Toy_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3779 Trailer manufacturer Trailer_manufacturer Industrial.Manufacturing.Trailer_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3792 Transplant surgeon Transplant_surgeon Industrial.Manufacturing.Transplant_surgeon 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3788 Transportation escort service Transportation_escort_service Industrial.Logistics.Transportation_escort_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3789 Transportation service Transportation_service Industrial.Logistics.Transportation_service 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3798 Trucking company Trucking_company Industrial.Logistics.Trucking_company 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3763 Tourist information center Tourist_information_center Travel_Hospitality.Travel_Services.Tourist_information_center 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3768 Townhouse complex Townhouse_complex Real_Estate.Property_Management.Townhouse_complex 3 4134 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3793 Travel agency Travel_agency Travel_Hospitality.Travel_Services.Travel_agency 3 4125 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3762 Tourist attraction Tourist_attraction Travel_Hospitality.Attractions.Tourist_attraction 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3780 Trailer rental service Trailer_rental_service Travel_Hospitality.Transportation.Trailer_rental_service 3 4128 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3810 Trust bank Trust_bank Finance.Banks.Trust_bank 3 4129 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3769 Traditional costume club Traditional_costume_club Community.Clubs.Traditional_costume_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3796 Tree farm Tree_farm Agriculture.Farms.Tree_farm 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3803 Truck farmer Truck_farmer Agriculture.Farms.Truck_farmer 3 4139 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3783 Traditional teahouse Traditional_teahouse Food_Beverage.Cafes_Coffee.Traditional_teahouse 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3799 Triumph motorcycle dealer Triumph_motorcycle_dealer Automotive.Dealers.Triumph_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3794 Travel clinic Travel_clinic Healthcare.Clinics.Travel_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3757 Tool store Tool_store Retail.Stores.Tool_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3770 Tractor parts store Tractor_parts_store Retail.Stores.Tractor_parts_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3773 Trading card store Trading_card_store Retail.Stores.Trading_card_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3774 Traditional Kostume store Traditional_Kostume_store Retail.Stores.Traditional_Kostume_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3782 Trailer supply store Trailer_supply_store Retail.Stores.Trailer_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3797 Trial attorney Trial_attorney Professional_Services.Legal.Trial_attorney 3 4078 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3760 Tour agency Tour_agency Professional_Services.Agencies.Tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3785 Train ticket agency Train_ticket_agency Professional_Services.Agencies.Train_ticket_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3772 Trade fair construction company Trade_fair_construction_company Home_Services.Contractors.Trade_fair_construction_company 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3756 Tool repair shop Tool_repair_shop Home_Services.Repair.Tool_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3771 Tractor repair shop Tractor_repair_shop Home_Services.Repair.Tractor_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3781 Trailer repair shop Trailer_repair_shop Home_Services.Repair.Trailer_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3784 Train repairing center Train_repairing_center Home_Services.Repair.Train_repairing_center 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3813 Typewriter repair service Typewriter_repair_service Home_Services.Repair.Typewriter_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3816 Tutoring service Tutoring_service Education.Tutoring.Tutoring_service 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3850 Vehicle inspection service Vehicle_inspection_service Automotive.Repair.Vehicle_inspection_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3866 Ventilating equipment manufacturer Ventilating_equipment_manufacturer Industrial.Manufacturing.Ventilating_equipment_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3858 Vascular surgeon Vascular_surgeon Healthcare.Doctors.Vascular_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3869 Visa and passport office Visa_and_passport_office Industrial.Logistics.Visa_and_passport_office 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3818 Unemployment office Unemployment_office Government.Social_Services.Unemployment_office 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3825 United Church of Canada United_Church_of_Canada Religious.Christian.United_Church_of_Canada 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3826 United Church of Christ United_Church_of_Christ Religious.Christian.United_Church_of_Christ 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3831 Urgent care center Urgent_care_center Healthcare.Clinics.Urgent_care_center 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3833 Pacific Northwest restaurant (US) Pacific_Northwest_restaurant_US Food_Beverage.Restaurants.Pacific_Northwest_restaurant_US 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3824 Hairdresser Hairdresser Home_Services.Personal.Hairdresser 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3867 Video editing service Video_editing_service Professional_Services.Creative.Video_editing_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3827 United Methodist church United_Methodist_church Religious.Christian.United_Methodist_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3828 Unity church Unity_church Religious.Christian.Unity_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3870 Venture capital company Venture_capital_company Finance.Investment.Venture_capital_company 3 4132 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3820 Urban planning department Urban_planning_department Government.Offices.Urban_planning_department 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3815 United States Armed Forces Base United_States_Armed_Forces_Base Government.Public_Safety.United_States_Armed_Forces_Base 3 4117 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3864 Vehicle shipping agent Vehicle_shipping_agent Industrial.Logistics.Vehicle_shipping_agent 3 4113 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3868 Village hall Village_hall Community.Clubs.Village_hall 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3837 Used car dealer Used_car_dealer Automotive.Dealers.Used_car_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3832 Urology clinic Urology_clinic Healthcare.Clinics.Urology_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3817 Tuxedo shop Tuxedo_shop Retail.Stores.Tuxedo_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3821 Underwear store Underwear_store Retail.Stores.Underwear_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3822 Unfinished furniture store Unfinished_furniture_store Retail.Stores.Unfinished_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3823 Uniform store Uniform_store Retail.Stores.Uniform_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3830 Upholstery shop Upholstery_shop Retail.Stores.Upholstery_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3834 Used appliance store Used_appliance_store Retail.Stores.Used_appliance_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3838 Used CD store Used_CD_store Retail.Stores.Used_CD_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3859 Vastu consultant Vastu_consultant Professional_Services.Consulting.Vastu_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3848 Utility contractor Utility_contractor Home_Services.Contractors.Utility_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3829 Upholstery cleaning service Upholstery_cleaning_service Home_Services.Cleaning.Upholstery_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3839 VCR repair service VCR_repair_service Home_Services.Repair.VCR_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3852 Vacuum cleaner repair shop Vacuum_cleaner_repair_shop Home_Services.Repair.Vacuum_cleaner_repair_shop 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3890 Vocational gymnasium school Vocational_gymnasium_school Education.Schools.Vocational_gymnasium_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3921 Wallpaper installer Wallpaper_installer Home_Services.Contractors.Wallpaper_installer 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3891 Vocational secondary school Vocational_secondary_school Education.Schools.Vocational_secondary_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3899 Waldorf school Waldorf_school Education.Schools.Waldorf_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3894 Volleyball court Volleyball_court Entertainment.Sports.Volleyball_court 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3925 Water skiing club Water_skiing_club Entertainment.Sports.Water_skiing_club 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3926 Water sports equipment rental service Water_sports_equipment_rental_service Entertainment.Sports.Water_sports_equipment_rental_service 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3902 War museum War_museum Entertainment.Arts.War_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3919 Wax museum Wax_museum Entertainment.Arts.Wax_museum 3 4103 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3888 Visa consulting service Visa_consulting_service Professional_Services.Consulting.Visa_consulting_service 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3909 Water park Water_park Entertainment.Parks.Water_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3874 Video arcade Video_arcade Entertainment.Amusement.Video_arcade 3 4106 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3905 Watch manufacturer Watch_manufacturer Industrial.Manufacturing.Watch_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3927 Water works Water_works Industrial.Utilities.Water_works 3 4112 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3871 Veterans organization Veterans_organization Community.Organizations.Veterans_organization 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3877 Veterans center Veterans_center Community.Clubs.Veterans_center 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3875 Video conferencing service Video_conferencing_service Professional_Services.Agencies.Video_conferencing_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3914 Water treatment plant Water_treatment_plant Industrial.Manufacturing.Water_treatment_plant 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3872 Veterans affairs department Veterans_affairs_department Government.Offices.Veterans_affairs_department 3 4116 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3897 Waste transfer station Waste_transfer_station Industrial.Waste.Waste_transfer_station 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3898 Waste management service Waste_management_service Industrial.Waste.Waste_management_service 3 4114 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3884 Vineyard church Vineyard_church Religious.Christian.Vineyard_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3889 Visitor center Visitor_center Travel_Hospitality.Attractions.Visitor_center 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3895 Volunteer organization Volunteer_organization Community.Nonprofits.Volunteer_organization 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3892 Volleyball club Volleyball_club Community.Clubs.Volleyball_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3900 Walk-in clinic Walk_in_clinic Healthcare.Clinics.Walk_in_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3873 Veterinary pharmacy Veterinary_pharmacy Healthcare.Pharmacies.Veterinary_pharmacy 3 4074 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3879 Video game rental store Video_game_rental_store Retail.Stores.Video_game_rental_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3918 Waterproofing service Waterproofing_service Home_Services.Contractors.Waterproofing_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3913 Water tank cleaning service Water_tank_cleaning_service Home_Services.Cleaning.Water_tank_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3881 Video camera repair service Video_camera_repair_service Home_Services.Repair.Video_camera_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3882 Video equipment repair service Video_equipment_repair_service Home_Services.Repair.Video_equipment_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3920 Washer & dryer repair service Washer_dryer_repair_service Home_Services.Repair.Washer_dryer_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3924 Watch repair service Watch_repair_service Home_Services.Repair.Watch_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3928 Waterbed repair service Waterbed_repair_service Home_Services.Repair.Waterbed_repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3922 Warehouse Warehouse Home_Services.Moving.Warehouse 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3923 Warehouse club Warehouse_club Home_Services.Moving.Warehouse_club 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3974 Wildlife and safari park Wildlife_and_safari_park Entertainment.Parks.Wildlife_and_safari_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3975 Wildlife park Wildlife_park Entertainment.Parks.Wildlife_park 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3945 Weight loss service Weight_loss_service Healthcare.Wellness.Weight_loss_service 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3976 Wildlife refuge Wildlife_refuge Entertainment.Parks.Wildlife_refuge 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3936 Wedding buffet Wedding_buffet Food_Beverage.Catering.Wedding_buffet 3 4056 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3977 Wildlife rescue service Wildlife_rescue_service Entertainment.Parks.Wildlife_rescue_service 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3944 Wedding venue Wedding_venue Entertainment.Venues.Wedding_venue 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3981 Window installation service Window_installation_service Home_Services.Contractors.Window_installation_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3932 Weaving mill Weaving_mill Industrial.Manufacturing.Weaving_mill 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3968 Wholesale plant nursery Wholesale_plant_nursery Industrial.Manufacturing.Wholesale_plant_nursery 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3978 Willow basket manufacturer Willow_basket_manufacturer Industrial.Manufacturing.Willow_basket_manufacturer 3 4110 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3937 Wedding chapel Wedding_chapel Religious.Christian.Wedding_chapel 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3952 Wesleyan church Wesleyan_church Religious.Christian.Wesleyan_church 3 4121 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3930 Waxing hair removal service Waxing_hair_removal_service Home_Services.Personal.Waxing_hair_removal_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3987 Women's shelter Women_s_shelter Community.Nonprofits.Women_s_shelter 3 4136 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3933 Web hosting company Web_hosting_company Professional_Services.IT.Web_hosting_company 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3934 Weightlifting area Weightlifting_area Entertainment.Sports.Weightlifting_area 3 4102 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3940 Wedding planner Wedding_planner Entertainment.Venues.Wedding_planner 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3941 Wedding service Wedding_service Entertainment.Venues.Wedding_service 3 4107 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3986 Women's protection service Women_s_protection_service Government.Social_Services.Women_s_protection_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3963 Wholesale florist Wholesale_florist Retail.Stores.Wholesale_florist 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3966 Wholesale jeweler Wholesale_jeweler Retail.Stores.Wholesale_jeweler 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3938 Wedding dress rental service Wedding_dress_rental_service Retail.Rentals.Wedding_dress_rental_service 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3983 Window tinting service Window_tinting_service Home_Services.Contractors.Window_tinting_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3943 Weather forecast service Weather_forecast_service Professional_Services.Agencies.Weather_forecast_service 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3947 Weir Weir Travel_Hospitality.Attractions.Weir 3 4127 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3971 Wi-Fi spot Wi_Fi_spot Professional_Services.IT.Wi_Fi_spot 3 4082 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3935 Wedding bakery Wedding_bakery Food_Beverage.Bakeries_Desserts.Wedding_bakery 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3956 Wheel alignment service Wheel_alignment_service Automotive.Parts.Wheel_alignment_service 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3962 Wholesale drugstore Wholesale_drugstore Healthcare.Pharmacies.Wholesale_drugstore 3 4074 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3931 Wellness center Wellness_center Healthcare.Wellness.Wellness_center 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3946 Wellness program Wellness_program Healthcare.Wellness.Wellness_program 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3951 Wellness hotel Wellness_hotel Healthcare.Wellness.Wellness_hotel 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3942 Wedding souvenir shop Wedding_souvenir_shop Retail.Stores.Wedding_souvenir_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3949 Welding supply store Welding_supply_store Retail.Stores.Welding_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3954 Western apparel store Western_apparel_store Retail.Stores.Western_apparel_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3964 Wholesale food store Wholesale_food_store Retail.Stores.Wholesale_food_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3939 Wedding photographer Wedding_photographer Professional_Services.Creative.Wedding_photographer 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3955 Whale watching tour agency Whale_watching_tour_agency Professional_Services.Agencies.Whale_watching_tour_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3950 Well drilling contractor Well_drilling_contractor Home_Services.Contractors.Well_drilling_contractor 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3979 Wind turbine builder Wind_turbine_builder Home_Services.Contractors.Wind_turbine_builder 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3980 Window cleaning service Window_cleaning_service Home_Services.Cleaning.Window_cleaning_service 3 4090 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3972 Wine storage facility Wine_storage_facility Home_Services.Moving.Wine_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3998 Wood floor installation service Wood_floor_installation_service Home_Services.Contractors.Wood_floor_installation_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3991 Wing chun school Wing_chun_school Education.Schools.Wing_chun_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4008 Wrestling school Wrestling_school Education.Schools.Wrestling_school 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3999 Wood floor refinishing service Wood_floor_refinishing_service Home_Services.Contractors.Wood_floor_refinishing_service 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3994 Women's college Women_s_college Education.Universities.Women_s_college 3 4097 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3988 Wood working class Wood_working_class Education.Tutoring.Wood_working_class 3 4099 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4015 Yeshiva Yeshiva Education.Schools.Yeshiva 3 4096 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3995 Women's organization Women_s_organization Government.Social_Services.Women_s_organization 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3996 Women's personal trainer Women_s_personal_trainer Entertainment.Fitness.Women_s_personal_trainer 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4006 Yoga instructor Yoga_instructor Entertainment.Fitness.Yoga_instructor 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4016 Yoga retreat center Yoga_retreat_center Entertainment.Fitness.Yoga_retreat_center 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4017 Yoga studio Yoga_studio Entertainment.Fitness.Yoga_studio 3 4104 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4021 Zoo Zoo Entertainment.Parks.Zoo 3 4105 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4020 Youth social services organization Youth_social_services_organization Government.Social_Services.Youth_social_services_organization 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4007 Working women's hostel Working_women_s_hostel Travel_Hospitality.Hotels.Working_women_s_hostel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4013 Youth group Youth_group Government.Social_Services.Youth_group 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4027 Youth organization Youth_organization Government.Social_Services.Youth_organization 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4033 Youth care service Youth_care_service Government.Social_Services.Youth_care_service 3 4119 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4019 Youth hostel Youth_hostel Travel_Hospitality.Hotels.Youth_hostel 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4012 Youth center Youth_center Community.Organizations.Youth_center 3 4137 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4011 Yacht broker Yacht_broker Real_Estate.Agents.Yacht_broker 3 4133 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4030 Workers' club Workers_club Community.Clubs.Workers_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4032 Yakatabune Yakatabune Travel_Hospitality.Hotels.Yakatabune 3 4124 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4035 Food & Beverage Food_Beverage Food_Beverage 1 \N 532 2026-01-30 19:41:32.30607 2026-01-30 19:41:32.30607 \N 4031 Yacht club Yacht_club Community.Clubs.Yacht_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4037 Automotive Automotive Automotive 1 \N 215 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4038 Healthcare Healthcare Healthcare 1 \N 369 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4039 Professional Services Professional_Services Professional_Services 1 \N 291 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4034 Youth club Youth_club Community.Clubs.Youth_club 3 4138 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4040 Home Services Home_Services Home_Services 1 \N 291 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4041 Education Education Education 1 \N 231 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4042 Entertainment Entertainment Entertainment 1 \N 349 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4043 Industrial Industrial Industrial 1 \N 258 2026-01-30 19:41:40.03908 2026-01-30 19:41:40.03908 \N 4014 Yamaha motorcycle dealer Yamaha_motorcycle_dealer Automotive.Dealers.Yamaha_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4009 X-ray equipment supplier X_ray_equipment_supplier Healthcare.Medical_Services.X_ray_equipment_supplier 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4010 X-ray lab X_ray_lab Healthcare.Medical_Services.X_ray_lab 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3990 Winemaking supply store Winemaking_supply_store Retail.Stores.Winemaking_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3993 Women's clothing store Women_s_clothing_store Retail.Stores.Women_s_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4001 Wood stove shop Wood_stove_shop Retail.Stores.Wood_stove_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4003 Woodworking supply store Woodworking_supply_store Retail.Stores.Woodworking_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4004 Wool store Wool_store Retail.Stores.Wool_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2 Acaraje restaurant Acaraje_restaurant Food_Beverage.Restaurants.Acaraje_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 12 Afghan restaurant Afghan_restaurant Food_Beverage.Restaurants.Afghan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 14 African restaurant African_restaurant Food_Beverage.Restaurants.African_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 21 Algerian Restaurant Algerian_Restaurant Food_Beverage.Restaurants.Algerian_Restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 22 Alsace restaurant Alsace_restaurant Food_Beverage.Restaurants.Alsace_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 23 American restaurant American_restaurant Food_Beverage.Restaurants.American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 25 Anhui restaurant Anhui_restaurant Food_Beverage.Restaurants.Anhui_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 26 Anago restaurant Anago_restaurant Food_Beverage.Restaurants.Anago_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 27 Andalusian restaurant Andalusian_restaurant Food_Beverage.Restaurants.Andalusian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 28 Andhra restaurant Andhra_restaurant Food_Beverage.Restaurants.Andhra_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 29 Angler fish restaurant Angler_fish_restaurant Food_Beverage.Restaurants.Angler_fish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 39 Arab restaurant Arab_restaurant Food_Beverage.Restaurants.Arab_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 45 Argentinian restaurant Argentinian_restaurant Food_Beverage.Restaurants.Argentinian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 46 Armenian restaurant Armenian_restaurant Food_Beverage.Restaurants.Armenian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 50 Asian fusion restaurant Asian_fusion_restaurant Food_Beverage.Restaurants.Asian_fusion_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 51 Asian restaurant Asian_restaurant Food_Beverage.Restaurants.Asian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 52 Assamese restaurant Assamese_restaurant Food_Beverage.Restaurants.Assamese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 54 Asturian restaurant Asturian_restaurant Food_Beverage.Restaurants.Asturian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 57 Australian restaurant Australian_restaurant Food_Beverage.Restaurants.Australian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 58 Austrian restaurant Austrian_restaurant Food_Beverage.Restaurants.Austrian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 61 Awadhi restaurant Awadhi_restaurant Food_Beverage.Restaurants.Awadhi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 62 Ayam penyet restaurant Ayam_penyet_restaurant Food_Beverage.Restaurants.Ayam_penyet_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 63 Azerbaijani restaurant Azerbaijani_restaurant Food_Beverage.Restaurants.Azerbaijani_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 65 Baden restaurant Baden_restaurant Food_Beverage.Restaurants.Baden_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4113 Logistics & Transport Logistics Industrial.Logistics 2 4043 58 2026-01-30 19:42:22.278607 2026-01-30 19:42:22.278607 \N 67 Bakso restaurant Bakso_restaurant Food_Beverage.Restaurants.Bakso_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 68 Balinese restaurant Balinese_restaurant Food_Beverage.Restaurants.Balinese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 74 Bangladeshi restaurant Bangladeshi_restaurant Food_Beverage.Restaurants.Bangladeshi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 82 Barbecue restaurant Barbecue_restaurant Food_Beverage.Restaurants.Barbecue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 86 Basque restaurant Basque_restaurant Food_Beverage.Restaurants.Basque_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 87 Batak restaurant Batak_restaurant Food_Beverage.Restaurants.Batak_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 88 Bavarian restaurant Bavarian_restaurant Food_Beverage.Restaurants.Bavarian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 91 Gyudon restaurant Gyudon_restaurant Food_Beverage.Restaurants.Gyudon_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 94 Belgian restaurant Belgian_restaurant Food_Beverage.Restaurants.Belgian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 95 Bengali restaurant Bengali_restaurant Food_Beverage.Restaurants.Bengali_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 97 Berry restaurant Berry_restaurant Food_Beverage.Restaurants.Berry_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 98 Betawi restaurant Betawi_restaurant Food_Beverage.Restaurants.Betawi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 102 Biryani restaurant Biryani_restaurant Food_Beverage.Restaurants.Biryani_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 106 Brazilian restaurant Brazilian_restaurant Food_Beverage.Restaurants.Brazilian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 114 Breakfast restaurant Breakfast_restaurant Food_Beverage.Restaurants.Breakfast_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 117 British restaurant British_restaurant Food_Beverage.Restaurants.British_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 118 Brunch restaurant Brunch_restaurant Food_Beverage.Restaurants.Brunch_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 119 Buffet restaurant Buffet_restaurant Food_Beverage.Restaurants.Buffet_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 120 Bulgarian restaurant Bulgarian_restaurant Food_Beverage.Restaurants.Bulgarian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 121 Burmese restaurant Burmese_restaurant Food_Beverage.Restaurants.Burmese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 122 Burrito restaurant Burrito_restaurant Food_Beverage.Restaurants.Burrito_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 132 Cajun restaurant Cajun_restaurant Food_Beverage.Restaurants.Cajun_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 134 Californian restaurant Californian_restaurant Food_Beverage.Restaurants.Californian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 137 Cambodian restaurant Cambodian_restaurant Food_Beverage.Restaurants.Cambodian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 139 Canadian restaurant Canadian_restaurant Food_Beverage.Restaurants.Canadian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 140 Cantabrian restaurant Cantabrian_restaurant Food_Beverage.Restaurants.Cantabrian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 141 Cantonese restaurant Cantonese_restaurant Food_Beverage.Restaurants.Cantonese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 142 Cape Verdean restaurant Cape_Verdean_restaurant Food_Beverage.Restaurants.Cape_Verdean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 145 Caribbean restaurant Caribbean_restaurant Food_Beverage.Restaurants.Caribbean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 154 Castilian restaurant Castilian_restaurant Food_Beverage.Restaurants.Castilian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 158 Catalonian restaurant Catalonian_restaurant Food_Beverage.Restaurants.Catalonian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 161 Caucasian restaurant Caucasian_restaurant Food_Beverage.Restaurants.Caucasian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 166 Cendol restaurant Cendol_restaurant Food_Beverage.Restaurants.Cendol_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 167 Central American restaurant Central_American_restaurant Food_Beverage.Restaurants.Central_American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 169 Central European restaurant Central_European_restaurant Food_Beverage.Restaurants.Central_European_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 170 Central Javanese restaurant Central_Javanese_restaurant Food_Beverage.Restaurants.Central_Javanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 172 Champon noodle restaurant Champon_noodle_restaurant Food_Beverage.Restaurants.Champon_noodle_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 173 Chanko restaurant Chanko_restaurant Food_Beverage.Restaurants.Chanko_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 175 Cheesesteak restaurant Cheesesteak_restaurant Food_Beverage.Restaurants.Cheesesteak_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 176 Chesapeake restaurant Chesapeake_restaurant Food_Beverage.Restaurants.Chesapeake_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 177 Chettinad restaurant Chettinad_restaurant Food_Beverage.Restaurants.Chettinad_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 178 Chicken restaurant Chicken_restaurant Food_Beverage.Restaurants.Chicken_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 179 Chilean restaurant Chilean_restaurant Food_Beverage.Restaurants.Chilean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 182 Chinese restaurant Chinese_restaurant Food_Beverage.Restaurants.Chinese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 194 Chophouse restaurant Chophouse_restaurant Food_Beverage.Restaurants.Chophouse_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 198 Cig kofte restaurant Cig_kofte_restaurant Food_Beverage.Restaurants.Cig_kofte_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 205 Cold noodle restaurant Cold_noodle_restaurant Food_Beverage.Restaurants.Cold_noodle_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 207 Colombian restaurant Colombian_restaurant Food_Beverage.Restaurants.Colombian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 219 Continental restaurant Continental_restaurant Food_Beverage.Restaurants.Continental_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 231 Costa Rican restaurant Costa_Rican_restaurant Food_Beverage.Restaurants.Costa_Rican_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 235 Country food restaurant Country_food_restaurant Food_Beverage.Restaurants.Country_food_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 236 Couscous restaurant Couscous_restaurant Food_Beverage.Restaurants.Couscous_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 239 Creole restaurant Creole_restaurant Food_Beverage.Restaurants.Creole_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 240 Croatian restaurant Croatian_restaurant Food_Beverage.Restaurants.Croatian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 242 Cuban restaurant Cuban_restaurant Food_Beverage.Restaurants.Cuban_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 246 Czech restaurant Czech_restaurant Food_Beverage.Restaurants.Czech_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 248 Dan Dan noodle restaurant Dan_Dan_noodle_restaurant Food_Beverage.Restaurants.Dan_Dan_noodle_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 249 Dance restaurant Dance_restaurant Food_Beverage.Restaurants.Dance_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 251 Danish restaurant Danish_restaurant Food_Beverage.Restaurants.Danish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 267 Dessert restaurant Dessert_restaurant Food_Beverage.Restaurants.Dessert_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 268 Dim sum restaurant Dim_sum_restaurant Food_Beverage.Restaurants.Dim_sum_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 275 Dojo restaurant Dojo_restaurant Food_Beverage.Restaurants.Dojo_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 277 Dominican restaurant Dominican_restaurant Food_Beverage.Restaurants.Dominican_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 278 Donburi restaurant Donburi_restaurant Food_Beverage.Restaurants.Donburi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 279 Doner kebab restaurant Doner_kebab_restaurant Food_Beverage.Restaurants.Doner_kebab_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 281 Dumpling restaurant Dumpling_restaurant Food_Beverage.Restaurants.Dumpling_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 282 Durum restaurant Durum_restaurant Food_Beverage.Restaurants.Durum_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 283 Dutch restaurant Dutch_restaurant Food_Beverage.Restaurants.Dutch_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 284 East African restaurant East_African_restaurant Food_Beverage.Restaurants.East_African_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 285 East Javanese restaurant East_Javanese_restaurant Food_Beverage.Restaurants.East_Javanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 286 Eastern European restaurant Eastern_European_restaurant Food_Beverage.Restaurants.Eastern_European_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 287 Eclectic restaurant Eclectic_restaurant Food_Beverage.Restaurants.Eclectic_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 288 Ecuadorian restaurant Ecuadorian_restaurant Food_Beverage.Restaurants.Ecuadorian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 289 Egyptian restaurant Egyptian_restaurant Food_Beverage.Restaurants.Egyptian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 301 English restaurant English_restaurant Food_Beverage.Restaurants.English_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 305 Eritrean restaurant Eritrean_restaurant Food_Beverage.Restaurants.Eritrean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 307 Ethiopian restaurant Ethiopian_restaurant Food_Beverage.Restaurants.Ethiopian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 308 European restaurant European_restaurant Food_Beverage.Restaurants.European_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 315 Falafel restaurant Falafel_restaurant Food_Beverage.Restaurants.Falafel_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 316 Family restaurant Family_restaurant Food_Beverage.Restaurants.Family_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 320 Fast food restaurant Fast_food_restaurant Food_Beverage.Restaurants.Fast_food_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 330 Filipino restaurant Filipino_restaurant Food_Beverage.Restaurants.Filipino_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 331 Fine dining restaurant Fine_dining_restaurant Food_Beverage.Restaurants.Fine_dining_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 332 Finnish restaurant Finnish_restaurant Food_Beverage.Restaurants.Finnish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 334 Fish restaurant Fish_restaurant Food_Beverage.Restaurants.Fish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 340 Floridian restaurant Floridian_restaurant Food_Beverage.Restaurants.Floridian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 343 Fondue restaurant Fondue_restaurant Food_Beverage.Restaurants.Fondue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 346 Franconian restaurant Franconian_restaurant Food_Beverage.Restaurants.Franconian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 347 French restaurant French_restaurant Food_Beverage.Restaurants.French_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 350 Fujian restaurant Fujian_restaurant Food_Beverage.Restaurants.Fujian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 351 Fugu restaurant Fugu_restaurant Food_Beverage.Restaurants.Fugu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 353 Fusion restaurant Fusion_restaurant Food_Beverage.Restaurants.Fusion_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1418 Beer garden Beer_garden Food_Beverage.Bars_Nightlife.Beer_garden 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 354 Galician restaurant Galician_restaurant Food_Beverage.Restaurants.Galician_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 373 Georgian restaurant Georgian_restaurant Food_Beverage.Restaurants.Georgian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 375 German restaurant German_restaurant Food_Beverage.Restaurants.German_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 381 Gluten-free restaurant Gluten_free_restaurant Food_Beverage.Restaurants.Gluten_free_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 383 Goan restaurant Goan_restaurant Food_Beverage.Restaurants.Goan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 385 Greek restaurant Greek_restaurant Food_Beverage.Restaurants.Greek_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 387 Guatemalan restaurant Guatemalan_restaurant Food_Beverage.Restaurants.Guatemalan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 388 Guizhou restaurant Guizhou_restaurant Food_Beverage.Restaurants.Guizhou_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 389 Gujarati restaurant Gujarati_restaurant Food_Beverage.Restaurants.Gujarati_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 390 Offal barbecue restaurant Offal_barbecue_restaurant Food_Beverage.Restaurants.Offal_barbecue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 392 Gyro restaurant Gyro_restaurant Food_Beverage.Restaurants.Gyro_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 393 Haitian restaurant Haitian_restaurant Food_Beverage.Restaurants.Haitian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 394 Hakka restaurant Hakka_restaurant Food_Beverage.Restaurants.Hakka_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 395 Halal restaurant Halal_restaurant Food_Beverage.Restaurants.Halal_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 396 Haleem restaurant Haleem_restaurant Food_Beverage.Restaurants.Haleem_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 397 Hamburger restaurant Hamburger_restaurant Food_Beverage.Restaurants.Hamburger_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 400 Haute French restaurant Haute_French_restaurant Food_Beverage.Restaurants.Haute_French_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 401 Hawaiian restaurant Hawaiian_restaurant Food_Beverage.Restaurants.Hawaiian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 402 Health food restaurant Health_food_restaurant Food_Beverage.Restaurants.Health_food_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 410 Hoagie restaurant Hoagie_restaurant Food_Beverage.Restaurants.Hoagie_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 413 Honduran restaurant Honduran_restaurant Food_Beverage.Restaurants.Honduran_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 419 Hot dog restaurant Hot_dog_restaurant Food_Beverage.Restaurants.Hot_dog_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 420 Hot pot restaurant Hot_pot_restaurant Food_Beverage.Restaurants.Hot_pot_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 422 Hunan restaurant Hunan_restaurant Food_Beverage.Restaurants.Hunan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 423 Hungarian restaurant Hungarian_restaurant Food_Beverage.Restaurants.Hungarian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 426 Hyderabadi restaurant Hyderabadi_restaurant Food_Beverage.Restaurants.Hyderabadi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 427 Icelandic restaurant Icelandic_restaurant Food_Beverage.Restaurants.Icelandic_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 428 Ikan bakar restaurant Ikan_bakar_restaurant Food_Beverage.Restaurants.Ikan_bakar_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 432 Indian Muslim restaurant Indian_Muslim_restaurant Food_Beverage.Restaurants.Indian_Muslim_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 433 Indian restaurant Indian_restaurant Food_Beverage.Restaurants.Indian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 434 Indian sizzler restaurant Indian_sizzler_restaurant Food_Beverage.Restaurants.Indian_sizzler_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 435 Indonesian restaurant Indonesian_restaurant Food_Beverage.Restaurants.Indonesian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 456 Irish restaurant Irish_restaurant Food_Beverage.Restaurants.Irish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 457 Israeli restaurant Israeli_restaurant Food_Beverage.Restaurants.Israeli_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 459 Italian restaurant Italian_restaurant Food_Beverage.Restaurants.Italian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 461 Jamaican restaurant Jamaican_restaurant Food_Beverage.Restaurants.Jamaican_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 462 Japanese curry restaurant Japanese_curry_restaurant Food_Beverage.Restaurants.Japanese_curry_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 463 Ryotei restaurant Ryotei_restaurant Food_Beverage.Restaurants.Ryotei_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 464 Izakaya restaurant Izakaya_restaurant Food_Beverage.Restaurants.Izakaya_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 465 Japanese restaurant Japanese_restaurant Food_Beverage.Restaurants.Japanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 466 Japanese sweets restaurant Japanese_sweets_restaurant Food_Beverage.Restaurants.Japanese_sweets_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 467 Javanese restaurant Javanese_restaurant Food_Beverage.Restaurants.Javanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 469 Jewish restaurant Jewish_restaurant Food_Beverage.Restaurants.Jewish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 470 Jiangsu restaurant Jiangsu_restaurant Food_Beverage.Restaurants.Jiangsu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 472 Kaiseki restaurant Kaiseki_restaurant Food_Beverage.Restaurants.Kaiseki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 473 Kalle pache restaurant Kalle_pache_restaurant Food_Beverage.Restaurants.Kalle_pache_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 481 Karnataka restaurant Karnataka_restaurant Food_Beverage.Restaurants.Karnataka_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 482 Kashmiri restaurant Kashmiri_restaurant Food_Beverage.Restaurants.Kashmiri_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 483 Kazakhstani restaurant Kazakhstani_restaurant Food_Beverage.Restaurants.Kazakhstani_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 484 Kerala restaurant Kerala_restaurant Food_Beverage.Restaurants.Kerala_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 486 Kofta restaurant Kofta_restaurant Food_Beverage.Restaurants.Kofta_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 487 Konkani restaurant Konkani_restaurant Food_Beverage.Restaurants.Konkani_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 488 Korean barbecue restaurant Korean_barbecue_restaurant Food_Beverage.Restaurants.Korean_barbecue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 489 Korean beef restaurant Korean_beef_restaurant Food_Beverage.Restaurants.Korean_beef_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 490 Korean restaurant Korean_restaurant Food_Beverage.Restaurants.Korean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 491 Korean rib restaurant Korean_rib_restaurant Food_Beverage.Restaurants.Korean_rib_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 492 Koshari restaurant Koshari_restaurant Food_Beverage.Restaurants.Koshari_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 493 Kosher restaurant Kosher_restaurant Food_Beverage.Restaurants.Kosher_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 494 Kushiyaki restaurant Kushiyaki_restaurant Food_Beverage.Restaurants.Kushiyaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 500 Laotian restaurant Laotian_restaurant Food_Beverage.Restaurants.Laotian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 501 Latin American restaurant Latin_American_restaurant Food_Beverage.Restaurants.Latin_American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 503 Lebanese restaurant Lebanese_restaurant Food_Beverage.Restaurants.Lebanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 504 Lechon restaurant Lechon_restaurant Food_Beverage.Restaurants.Lechon_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 507 Ligurian restaurant Ligurian_restaurant Food_Beverage.Restaurants.Ligurian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 509 Lithuanian restaurant Lithuanian_restaurant Food_Beverage.Restaurants.Lithuanian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 519 Lombardian restaurant Lombardian_restaurant Food_Beverage.Restaurants.Lombardian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 523 Lunch restaurant Lunch_restaurant Food_Beverage.Restaurants.Lunch_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 525 Macrobiotic restaurant Macrobiotic_restaurant Food_Beverage.Restaurants.Macrobiotic_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 526 Madrilian restaurant Madrilian_restaurant Food_Beverage.Restaurants.Madrilian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 527 Majorcan restaurant Majorcan_restaurant Food_Beverage.Restaurants.Majorcan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 529 Malaysian restaurant Malaysian_restaurant Food_Beverage.Restaurants.Malaysian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 530 Maltese restaurant Maltese_restaurant Food_Beverage.Restaurants.Maltese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 531 Manado restaurant Manado_restaurant Food_Beverage.Restaurants.Manado_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 532 Mandarin restaurant Mandarin_restaurant Food_Beverage.Restaurants.Mandarin_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 535 Marathi restaurant Marathi_restaurant Food_Beverage.Restaurants.Marathi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 537 Marche restaurant Marche_restaurant Food_Beverage.Restaurants.Marche_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 544 Takeout restaurant Takeout_restaurant Food_Beverage.Restaurants.Takeout_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 547 Meat dish restaurant Meat_dish_restaurant Food_Beverage.Restaurants.Meat_dish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 559 Mexican restaurant Mexican_restaurant Food_Beverage.Restaurants.Mexican_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 560 Mexican torta restaurant Mexican_torta_restaurant Food_Beverage.Restaurants.Mexican_torta_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 568 Miso cutlet restaurant Miso_cutlet_restaurant Food_Beverage.Restaurants.Miso_cutlet_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 570 Modern British restaurant Modern_British_restaurant Food_Beverage.Restaurants.Modern_British_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 571 Modern European restaurant Modern_European_restaurant Food_Beverage.Restaurants.Modern_European_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 572 Modern French restaurant Modern_French_restaurant Food_Beverage.Restaurants.Modern_French_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 573 Modern Indian restaurant Modern_Indian_restaurant Food_Beverage.Restaurants.Modern_Indian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 575 Momo restaurant Momo_restaurant Food_Beverage.Restaurants.Momo_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 577 Mongolian barbecue restaurant Mongolian_barbecue_restaurant Food_Beverage.Restaurants.Mongolian_barbecue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 578 Monjayaki restaurant Monjayaki_restaurant Food_Beverage.Restaurants.Monjayaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 579 Modern izakaya restaurant Modern_izakaya_restaurant Food_Beverage.Restaurants.Modern_izakaya_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 580 Moroccan restaurant Moroccan_restaurant Food_Beverage.Restaurants.Moroccan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 585 Mughlai restaurant Mughlai_restaurant Food_Beverage.Restaurants.Mughlai_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 588 Murtabak restaurant Murtabak_restaurant Food_Beverage.Restaurants.Murtabak_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 595 Mutton barbecue restaurant Mutton_barbecue_restaurant Food_Beverage.Restaurants.Mutton_barbecue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 596 Nasi goreng restaurant Nasi_goreng_restaurant Food_Beverage.Restaurants.Nasi_goreng_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 597 Nasi restaurant Nasi_restaurant Food_Beverage.Restaurants.Nasi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 598 Nasi uduk restaurant Nasi_uduk_restaurant Food_Beverage.Restaurants.Nasi_uduk_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 599 Native American restaurant Native_American_restaurant Food_Beverage.Restaurants.Native_American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 600 Navarraise restaurant Navarraise_restaurant Food_Beverage.Restaurants.Navarraise_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 601 Neapolitan restaurant Neapolitan_restaurant Food_Beverage.Restaurants.Neapolitan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 602 Nepalese restaurant Nepalese_restaurant Food_Beverage.Restaurants.Nepalese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 607 New England restaurant New_England_restaurant Food_Beverage.Restaurants.New_England_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 608 New Zealand restaurant New_Zealand_restaurant Food_Beverage.Restaurants.New_Zealand_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 609 Nicaraguan restaurant Nicaraguan_restaurant Food_Beverage.Restaurants.Nicaraguan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 611 Non vegetarian restaurant Non_vegetarian_restaurant Food_Beverage.Restaurants.Non_vegetarian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 612 North African restaurant North_African_restaurant Food_Beverage.Restaurants.North_African_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 613 North Indian restaurant North_Indian_restaurant Food_Beverage.Restaurants.North_Indian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 614 Norwegian restaurant Norwegian_restaurant Food_Beverage.Restaurants.Norwegian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 619 Nyonya restaurant Nyonya_restaurant Food_Beverage.Restaurants.Nyonya_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 620 Oaxacan restaurant Oaxacan_restaurant Food_Beverage.Restaurants.Oaxacan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 621 Obanzai restaurant Obanzai_restaurant Food_Beverage.Restaurants.Obanzai_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 622 Oden restaurant Oden_restaurant Food_Beverage.Restaurants.Oden_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 623 Odia restaurant Odia_restaurant Food_Beverage.Restaurants.Odia_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 624 Okonomiyaki restaurant Okonomiyaki_restaurant Food_Beverage.Restaurants.Okonomiyaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 637 Organic restaurant Organic_restaurant Food_Beverage.Restaurants.Organic_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 645 Oyster bar restaurant Oyster_bar_restaurant Food_Beverage.Restaurants.Oyster_bar_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 646 Pacific Rim restaurant Pacific_Rim_restaurant Food_Beverage.Restaurants.Pacific_Rim_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 647 Padang restaurant Padang_restaurant Food_Beverage.Restaurants.Padang_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 649 Paisa restaurant Paisa_restaurant Food_Beverage.Restaurants.Paisa_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 650 Pakistani restaurant Pakistani_restaurant Food_Beverage.Restaurants.Pakistani_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 651 Palatine restaurant Palatine_restaurant Food_Beverage.Restaurants.Palatine_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 652 Palestinian restaurant Palestinian_restaurant Food_Beverage.Restaurants.Palestinian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 653 Pan-Asian restaurant Pan_Asian_restaurant Food_Beverage.Restaurants.Pan_Asian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 654 Pan-Latin restaurant Pan_Latin_restaurant Food_Beverage.Restaurants.Pan_Latin_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 655 Pancake restaurant Pancake_restaurant Food_Beverage.Restaurants.Pancake_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 657 Paraguayan restaurant Paraguayan_restaurant Food_Beverage.Restaurants.Paraguayan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 660 Parsi restaurant Parsi_restaurant Food_Beverage.Restaurants.Parsi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 669 Pay by weight restaurant Pay_by_weight_restaurant Food_Beverage.Restaurants.Pay_by_weight_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 671 Pecel lele restaurant Pecel_lele_restaurant Food_Beverage.Restaurants.Pecel_lele_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 673 Pempek restaurant Pempek_restaurant Food_Beverage.Restaurants.Pempek_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 677 Persian restaurant Persian_restaurant Food_Beverage.Restaurants.Persian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 678 Peruvian restaurant Peruvian_restaurant Food_Beverage.Restaurants.Peruvian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 684 Pho restaurant Pho_restaurant Food_Beverage.Restaurants.Pho_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 686 Piadina restaurant Piadina_restaurant Food_Beverage.Restaurants.Piadina_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 689 Piedmontese restaurant Piedmontese_restaurant Food_Beverage.Restaurants.Piedmontese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 690 Pilaf restaurant Pilaf_restaurant Food_Beverage.Restaurants.Pilaf_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 691 Pizza restaurant Pizza_restaurant Food_Beverage.Restaurants.Pizza_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 697 Po’ boys restaurant Po_boys_restaurant Food_Beverage.Restaurants.Po_boys_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 699 Polish restaurant Polish_restaurant Food_Beverage.Restaurants.Polish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 700 Polynesian restaurant Polynesian_restaurant Food_Beverage.Restaurants.Polynesian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 705 Katsudon restaurant Katsudon_restaurant Food_Beverage.Restaurants.Katsudon_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 706 Porridge restaurant Porridge_restaurant Food_Beverage.Restaurants.Porridge_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 708 Portuguese restaurant Portuguese_restaurant Food_Beverage.Restaurants.Portuguese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 709 Pozole restaurant Pozole_restaurant Food_Beverage.Restaurants.Pozole_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 717 Provence restaurant Provence_restaurant Food_Beverage.Restaurants.Provence_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 723 Pueblan restaurant Pueblan_restaurant Food_Beverage.Restaurants.Pueblan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 724 Puerto Rican restaurant Puerto_Rican_restaurant Food_Beverage.Restaurants.Puerto_Rican_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 725 Punjabi restaurant Punjabi_restaurant Food_Beverage.Restaurants.Punjabi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 730 Québécois restaurant Qu_b_cois_restaurant Food_Beverage.Restaurants.Qu_b_cois_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 731 Raclette restaurant Raclette_restaurant Food_Beverage.Restaurants.Raclette_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 738 Rajasthani restaurant Rajasthani_restaurant Food_Beverage.Restaurants.Rajasthani_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 739 Ramen restaurant Ramen_restaurant Food_Beverage.Restaurants.Ramen_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 740 Raw food restaurant Raw_food_restaurant Food_Beverage.Restaurants.Raw_food_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 754 Restaurant Restaurant Food_Beverage.Restaurants.Restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 756 Rice restaurant Rice_restaurant Food_Beverage.Restaurants.Rice_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 758 Roman restaurant Roman_restaurant Food_Beverage.Restaurants.Roman_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 759 Romanian restaurant Romanian_restaurant Food_Beverage.Restaurants.Romanian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 766 Russian restaurant Russian_restaurant Food_Beverage.Restaurants.Russian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 771 Salvadoran restaurant Salvadoran_restaurant Food_Beverage.Restaurants.Salvadoran_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 774 Sardinian restaurant Sardinian_restaurant Food_Beverage.Restaurants.Sardinian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 776 Satay restaurant Satay_restaurant Food_Beverage.Restaurants.Satay_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 783 Scottish restaurant Scottish_restaurant Food_Beverage.Restaurants.Scottish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 784 Seafood donburi restaurant Seafood_donburi_restaurant Food_Beverage.Restaurants.Seafood_donburi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 786 Seafood restaurant Seafood_restaurant Food_Beverage.Restaurants.Seafood_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 789 Seblak restaurant Seblak_restaurant Food_Beverage.Restaurants.Seblak_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 791 Self service restaurant Self_service_restaurant Food_Beverage.Restaurants.Self_service_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 792 Serbian restaurant Serbian_restaurant Food_Beverage.Restaurants.Serbian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 801 Seychelles restaurant Seychelles_restaurant Food_Beverage.Restaurants.Seychelles_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 802 Sfiha restaurant Sfiha_restaurant Food_Beverage.Restaurants.Sfiha_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 803 Shabu-shabu restaurant Shabu_shabu_restaurant Food_Beverage.Restaurants.Shabu_shabu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 804 Shandong restaurant Shandong_restaurant Food_Beverage.Restaurants.Shandong_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 805 Shawarma restaurant Shawarma_restaurant Food_Beverage.Restaurants.Shawarma_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 809 Sichuan restaurant Sichuan_restaurant Food_Beverage.Restaurants.Sichuan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 810 Sicilian restaurant Sicilian_restaurant Food_Beverage.Restaurants.Sicilian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 813 Singaporean restaurant Singaporean_restaurant Food_Beverage.Restaurants.Singaporean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 817 Small plates restaurant Small_plates_restaurant Food_Beverage.Restaurants.Small_plates_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 824 Suppon restaurant Suppon_restaurant Food_Beverage.Restaurants.Suppon_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 825 Soondae restaurant Soondae_restaurant Food_Beverage.Restaurants.Soondae_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 826 Soto ayam restaurant Soto_ayam_restaurant Food_Beverage.Restaurants.Soto_ayam_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 827 Soto restaurant Soto_restaurant Food_Beverage.Restaurants.Soto_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 828 Soul food restaurant Soul_food_restaurant Food_Beverage.Restaurants.Soul_food_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 829 Soup restaurant Soup_restaurant Food_Beverage.Restaurants.Soup_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 830 South Asian restaurant South_Asian_restaurant Food_Beverage.Restaurants.South_Asian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 831 Southeast Asian restaurant Southeast_Asian_restaurant Food_Beverage.Restaurants.Southeast_Asian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 838 Spanish restaurant Spanish_restaurant Food_Beverage.Restaurants.Spanish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1419 Beer hall Beer_hall Food_Beverage.Bars_Nightlife.Beer_hall 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 842 Sri Lankan restaurant Sri_Lankan_restaurant Food_Beverage.Restaurants.Sri_Lankan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 851 Steamboat restaurant Steamboat_restaurant Food_Beverage.Restaurants.Steamboat_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 859 Sukiyaki restaurant Sukiyaki_restaurant Food_Beverage.Restaurants.Sukiyaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 860 Sundae restaurant Sundae_restaurant Food_Beverage.Restaurants.Sundae_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 861 Sundanese restaurant Sundanese_restaurant Food_Beverage.Restaurants.Sundanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 865 Surinamese restaurant Surinamese_restaurant Food_Beverage.Restaurants.Surinamese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 866 Sushi restaurant Sushi_restaurant Food_Beverage.Restaurants.Sushi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 867 Swabian restaurant Swabian_restaurant Food_Beverage.Restaurants.Swabian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 868 Swedish restaurant Swedish_restaurant Food_Beverage.Restaurants.Swedish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 873 Swiss restaurant Swiss_restaurant Food_Beverage.Restaurants.Swiss_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 875 Syrian restaurant Syrian_restaurant Food_Beverage.Restaurants.Syrian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 876 Tabascan restaurant Tabascan_restaurant Food_Beverage.Restaurants.Tabascan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 877 Tacaca restaurant Tacaca_restaurant Food_Beverage.Restaurants.Tacaca_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 878 Taco restaurant Taco_restaurant Food_Beverage.Restaurants.Taco_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 880 Taiwanese restaurant Taiwanese_restaurant Food_Beverage.Restaurants.Taiwanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 881 Takoyaki restaurant Takoyaki_restaurant Food_Beverage.Restaurants.Takoyaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 883 Tapas restaurant Tapas_restaurant Food_Beverage.Restaurants.Tapas_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 896 Tegal restaurant Tegal_restaurant Food_Beverage.Restaurants.Tegal_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 899 Temaki restaurant Temaki_restaurant Food_Beverage.Restaurants.Temaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 901 Tempura donburi restaurant Tempura_donburi_restaurant Food_Beverage.Restaurants.Tempura_donburi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 902 Tempura restaurant Tempura_restaurant Food_Beverage.Restaurants.Tempura_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 905 Teppanyaki restaurant Teppanyaki_restaurant Food_Beverage.Restaurants.Teppanyaki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 906 Tex-Mex restaurant Tex_Mex_restaurant Food_Beverage.Restaurants.Tex_Mex_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 907 Thai restaurant Thai_restaurant Food_Beverage.Restaurants.Thai_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 912 Thuringian restaurant Thuringian_restaurant Food_Beverage.Restaurants.Thuringian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 913 Tibetan restaurant Tibetan_restaurant Food_Beverage.Restaurants.Tibetan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 917 Toast restaurant Toast_restaurant Food_Beverage.Restaurants.Toast_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 918 Tofu restaurant Tofu_restaurant Food_Beverage.Restaurants.Tofu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 919 Tongue restaurant Tongue_restaurant Food_Beverage.Restaurants.Tongue_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 920 Tonkatsu restaurant Tonkatsu_restaurant Food_Beverage.Restaurants.Tonkatsu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 933 Tunisian restaurant Tunisian_restaurant Food_Beverage.Restaurants.Tunisian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 934 Turkish restaurant Turkish_restaurant Food_Beverage.Restaurants.Turkish_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 935 Turkmen restaurant Turkmen_restaurant Food_Beverage.Restaurants.Turkmen_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 936 Tuscan restaurant Tuscan_restaurant Food_Beverage.Restaurants.Tuscan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 937 Udon noodle restaurant Udon_noodle_restaurant Food_Beverage.Restaurants.Udon_noodle_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 938 Ukrainian restaurant Ukrainian_restaurant Food_Beverage.Restaurants.Ukrainian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 939 Unagi restaurant Unagi_restaurant Food_Beverage.Restaurants.Unagi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 944 Uruguayan restaurant Uruguayan_restaurant Food_Beverage.Restaurants.Uruguayan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 951 Uyghur cuisine restaurant Uyghur_cuisine_restaurant Food_Beverage.Restaurants.Uyghur_cuisine_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 952 Uzbeki restaurant Uzbeki_restaurant Food_Beverage.Restaurants.Uzbeki_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 954 Valencian restaurant Valencian_restaurant Food_Beverage.Restaurants.Valencian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 956 Vegan restaurant Vegan_restaurant Food_Beverage.Restaurants.Vegan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 957 Vegetarian restaurant Vegetarian_restaurant Food_Beverage.Restaurants.Vegetarian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 962 Venetian restaurant Venetian_restaurant Food_Beverage.Restaurants.Venetian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 963 Venezuelan restaurant Venezuelan_restaurant Food_Beverage.Restaurants.Venezuelan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 970 Vietnamese restaurant Vietnamese_restaurant Food_Beverage.Restaurants.Vietnamese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 976 Welsh restaurant Welsh_restaurant Food_Beverage.Restaurants.Welsh_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 977 Western restaurant Western_restaurant Food_Beverage.Restaurants.Western_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 982 Wok restaurant Wok_restaurant Food_Beverage.Restaurants.Wok_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1588 Syokudo and Teishoku restaurant Syokudo_and_Teishoku_restaurant Food_Beverage.Restaurants.Syokudo_and_Teishoku_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1589 Conveyor belt sushi restaurant Conveyor_belt_sushi_restaurant Food_Beverage.Restaurants.Conveyor_belt_sushi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1627 Chicken wings restaurant Chicken_wings_restaurant Food_Beverage.Restaurants.Chicken_wings_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1649 Chinese noodle restaurant Chinese_noodle_restaurant Food_Beverage.Restaurants.Chinese_noodle_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1773 Contemporary Louisiana restaurant Contemporary_Louisiana_restaurant Food_Beverage.Restaurants.Contemporary_Louisiana_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1868 Delivery Chinese restaurant Delivery_Chinese_restaurant Food_Beverage.Restaurants.Delivery_Chinese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2087 Extremaduran restaurant Extremaduran_restaurant Food_Beverage.Restaurants.Extremaduran_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2160 Fish & chips restaurant Fish_chips_restaurant Food_Beverage.Restaurants.Fish_chips_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2230 French steakhouse restaurant French_steakhouse_restaurant Food_Beverage.Restaurants.French_steakhouse_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2442 Hong Kong style fast food restaurant Hong_Kong_style_fast_food_restaurant Food_Beverage.Restaurants.Hong_Kong_style_fast_food_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2568 Authentic Japanese restaurant Authentic_Japanese_restaurant Food_Beverage.Restaurants.Authentic_Japanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2577 Japanese regional restaurant Japanese_regional_restaurant Food_Beverage.Restaurants.Japanese_regional_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2581 Japanized western restaurant Japanized_western_restaurant Food_Beverage.Restaurants.Japanized_western_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2626 Kyoto style Japanese restaurant Kyoto_style_Japanese_restaurant Food_Beverage.Restaurants.Kyoto_style_Japanese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2810 Mediterranean restaurant Mediterranean_restaurant Food_Beverage.Restaurants.Mediterranean_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2844 Middle Eastern restaurant Middle_Eastern_restaurant Food_Beverage.Restaurants.Middle_Eastern_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2962 New American restaurant New_American_restaurant Food_Beverage.Restaurants.New_American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2971 North Eastern Indian restaurant North_Eastern_Indian_restaurant Food_Beverage.Restaurants.North_Eastern_Indian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2972 Northern Italian restaurant Northern_Italian_restaurant Food_Beverage.Restaurants.Northern_Italian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2979 Nuevo Latino restaurant Nuevo_Latino_restaurant Food_Beverage.Restaurants.Nuevo_Latino_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3000 Offal pot cooking restaurant Offal_pot_cooking_restaurant Food_Beverage.Restaurants.Offal_pot_cooking_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3107 Pennsylvania Dutch restaurant Pennsylvania_Dutch_restaurant Food_Beverage.Restaurants.Pennsylvania_Dutch_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3423 Scandinavian restaurant Scandinavian_restaurant Food_Beverage.Restaurants.Scandinavian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3469 Sukiyaki and Shabu Shabu restaurant Sukiyaki_and_Shabu_Shabu_restaurant Food_Beverage.Restaurants.Sukiyaki_and_Shabu_Shabu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3471 Shanghainese restaurant Shanghainese_restaurant Food_Beverage.Restaurants.Shanghainese_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3514 Kushiage and kushikatsu restaurant Kushiage_and_kushikatsu_restaurant Food_Beverage.Restaurants.Kushiage_and_kushikatsu_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3562 South African restaurant South_African_restaurant Food_Beverage.Restaurants.South_African_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3563 South American restaurant South_American_restaurant Food_Beverage.Restaurants.South_American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3565 South Indian restaurant South_Indian_restaurant Food_Beverage.Restaurants.South_Indian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3566 South Sulawesi restaurant South_Sulawesi_restaurant Food_Beverage.Restaurants.South_Sulawesi_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3567 Southern Italian restaurant Southern_Italian_restaurant Food_Beverage.Restaurants.Southern_Italian_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3568 Southwest France restaurant Southwest_France_restaurant Food_Beverage.Restaurants.Southwest_France_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3777 Traditional American restaurant Traditional_American_restaurant Food_Beverage.Restaurants.Traditional_American_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3953 West African restaurant West_African_restaurant Food_Beverage.Restaurants.West_African_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4022 Yakiniku restaurant Yakiniku_restaurant Food_Beverage.Restaurants.Yakiniku_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4023 Yakisoba Restaurant Yakisoba_Restaurant Food_Beverage.Restaurants.Yakisoba_Restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4024 Yakitori restaurant Yakitori_restaurant Food_Beverage.Restaurants.Yakitori_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4026 Yemeni restaurant Yemeni_restaurant Food_Beverage.Restaurants.Yemeni_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4028 Yucatan restaurant Yucatan_restaurant Food_Beverage.Restaurants.Yucatan_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4029 Zhejiang restaurant Zhejiang_restaurant Food_Beverage.Restaurants.Zhejiang_restaurant 3 4051 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1494 Brewery Brewery Food_Beverage.Bars_Nightlife.Brewery 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1496 Brewpub Brewpub Food_Beverage.Bars_Nightlife.Brewpub 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1706 Cocktail bar Cocktail_bar Food_Beverage.Bars_Nightlife.Cocktail_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2278 Gastropub Gastropub Food_Beverage.Bars_Nightlife.Gastropub 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2561 Irish pub Irish_pub Food_Beverage.Bars_Nightlife.Irish_pub 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3291 Queer bar Queer_bar Food_Beverage.Bars_Nightlife.Queer_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3401 Salsa bar Salsa_bar Food_Beverage.Bars_Nightlife.Salsa_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3684 Tapas bar Tapas_bar Food_Beverage.Bars_Nightlife.Tapas_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3734 Tiki bar Tiki_bar Food_Beverage.Bars_Nightlife.Tiki_bar 3 4052 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1249 Animal cafe Animal_cafe Food_Beverage.Cafes_Coffee.Animal_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1656 Chinese tea house Chinese_tea_house Food_Beverage.Cafes_Coffee.Chinese_tea_house 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1708 Coffee machine supplier Coffee_machine_supplier Food_Beverage.Cafes_Coffee.Coffee_machine_supplier 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1709 Coffee shop Coffee_shop Food_Beverage.Cafes_Coffee.Coffee_shop 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1710 Coffee store Coffee_store Food_Beverage.Cafes_Coffee.Coffee_store 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1711 Coffee wholesaler Coffee_wholesaler Food_Beverage.Cafes_Coffee.Coffee_wholesaler 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1718 Coffee roasters Coffee_roasters Food_Beverage.Cafes_Coffee.Coffee_roasters 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1719 Coffee stand Coffee_stand Food_Beverage.Cafes_Coffee.Coffee_stand 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1720 Coffee vending machine Coffee_vending_machine Food_Beverage.Cafes_Coffee.Coffee_vending_machine 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1727 Comic cafe Comic_cafe Food_Beverage.Cafes_Coffee.Comic_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1928 Dog cafe Dog_cafe Food_Beverage.Cafes_Coffee.Dog_cafe 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3863 Vegetarian cafe and deli Vegetarian_cafe_and_deli Food_Beverage.Cafes_Coffee.Vegetarian_cafe_and_deli 3 4053 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1049 Patisserie Patisserie Food_Beverage.Bakeries_Desserts.Patisserie 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1360 Bakery equipment Bakery_equipment Food_Beverage.Bakeries_Desserts.Bakery_equipment 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1538 Cake decorating equipment shop Cake_decorating_equipment_shop Food_Beverage.Bakeries_Desserts.Cake_decorating_equipment_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1555 Candy store Candy_store Food_Beverage.Bakeries_Desserts.Candy_store 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1650 Chinese bakery Chinese_bakery Food_Beverage.Bakeries_Desserts.Chinese_bakery 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1759 Confectionery wholesaler Confectionery_wholesaler Food_Beverage.Bakeries_Desserts.Confectionery_wholesaler 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1830 Cupcake shop Cupcake_shop Food_Beverage.Bakeries_Desserts.Cupcake_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1885 Sweets and dessert buffet Sweets_and_dessert_buffet Food_Beverage.Bakeries_Desserts.Sweets_and_dessert_buffet 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1938 Donut shop Donut_shop Food_Beverage.Bakeries_Desserts.Donut_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2234 Frozen dessert supplier Frozen_dessert_supplier Food_Beverage.Bakeries_Desserts.Frozen_dessert_supplier 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2237 Frozen yogurt shop Frozen_yogurt_shop Food_Beverage.Bakeries_Desserts.Frozen_yogurt_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2508 Ice cream equipment supplier Ice_cream_equipment_supplier Food_Beverage.Bakeries_Desserts.Ice_cream_equipment_supplier 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2509 Ice cream shop Ice_cream_shop Food_Beverage.Bakeries_Desserts.Ice_cream_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3088 Pastry shop Pastry_shop Food_Beverage.Bakeries_Desserts.Pastry_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3355 Rice cake shop Rice_cake_shop Food_Beverage.Bakeries_Desserts.Rice_cake_shop 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3961 Wholesale bakery Wholesale_bakery Food_Beverage.Bakeries_Desserts.Wholesale_bakery 3 4054 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1227 Alfa Romeo dealer Alfa_Romeo_dealer Automotive.Dealers.Alfa_Romeo_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1299 Aston Martin dealer Aston_Martin_dealer Automotive.Dealers.Aston_Martin_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1457 Boat trailer dealer Boat_trailer_dealer Automotive.Dealers.Boat_trailer_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1504 Bugatti dealer Bugatti_dealer Automotive.Dealers.Bugatti_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1505 Buick dealer Buick_dealer Automotive.Dealers.Buick_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1968 DS Automobiles dealer DS_Automobiles_dealer Automotive.Dealers.DS_Automobiles_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1969 Ducati dealer Ducati_dealer Automotive.Dealers.Ducati_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1971 Dump truck dealer Dump_truck_dealer Automotive.Dealers.Dump_truck_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1999 Electric motor scooter dealer Electric_motor_scooter_dealer Automotive.Dealers.Electric_motor_scooter_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2000 Electric motor vehicle dealer Electric_motor_vehicle_dealer Automotive.Dealers.Electric_motor_vehicle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2001 Electric motorcycle dealer Electric_motorcycle_dealer Automotive.Dealers.Electric_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2309 Gold dealer Gold_dealer Automotive.Dealers.Gold_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2313 Golf cart dealer Golf_cart_dealer Automotive.Dealers.Golf_cart_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2378 Harley-Davidson dealer Harley_Davidson_dealer Automotive.Dealers.Harley_Davidson_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2564 Isuzu dealer Isuzu_dealer Automotive.Dealers.Isuzu_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2611 Kia dealer Kia_dealer Automotive.Dealers.Kia_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2631 Lamborghini dealer Lamborghini_dealer Automotive.Dealers.Lamborghini_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2679 Lexus dealer Lexus_dealer Automotive.Dealers.Lexus_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2690 Lincoln dealer Lincoln_dealer Automotive.Dealers.Lincoln_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2706 Livestock dealer Livestock_dealer Automotive.Dealers.Livestock_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2782 Maybach dealer Maybach_dealer Automotive.Dealers.Maybach_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2856 MINI dealer MINI_dealer Automotive.Dealers.MINI_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2868 Mitsubishi dealer Mitsubishi_dealer Automotive.Dealers.Mitsubishi_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2870 Mobile home dealer Mobile_home_dealer Automotive.Dealers.Mobile_home_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2884 Modular home dealer Modular_home_dealer Automotive.Dealers.Modular_home_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2893 Moped dealer Moped_dealer Automotive.Dealers.Moped_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2900 Motor scooter dealer Motor_scooter_dealer Automotive.Dealers.Motor_scooter_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2902 Motor vehicle dealer Motor_vehicle_dealer Automotive.Dealers.Motor_vehicle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2903 Motorcycle dealer Motorcycle_dealer Automotive.Dealers.Motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3017 Opel dealer Opel_dealer Automotive.Dealers.Opel_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3113 Personal watercraft dealer Personal_watercraft_dealer Automotive.Dealers.Personal_watercraft_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3211 Powersports vehicle dealer Powersports_vehicle_dealer Automotive.Dealers.Powersports_vehicle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3293 Race car dealer Race_car_dealer Automotive.Dealers.Race_car_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3370 Rolls-Royce dealer Rolls_Royce_dealer Automotive.Dealers.Rolls_Royce_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3663 Suzuki motorcycle dealer Suzuki_motorcycle_dealer Automotive.Dealers.Suzuki_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3685 Tata Motors dealer Tata_Motors_dealer Automotive.Dealers.Tata_Motors_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3842 Used motorcycle dealer Used_motorcycle_dealer Automotive.Dealers.Used_motorcycle_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3847 Used truck dealer Used_truck_dealer Automotive.Dealers.Used_truck_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3849 Utility trailer dealer Utility_trailer_dealer Automotive.Dealers.Utility_trailer_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3860 Vauxhall dealer Vauxhall_dealer Automotive.Dealers.Vauxhall_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3893 Volkswagen dealer Volkswagen_dealer Automotive.Dealers.Volkswagen_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3896 Volvo dealer Volvo_dealer Automotive.Dealers.Volvo_dealer 3 4062 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1310 Auto radiator repair service Auto_radiator_repair_service Automotive.Repair.Auto_radiator_repair_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1327 Auto glass repair service Auto_glass_repair_service Automotive.Repair.Auto_glass_repair_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1328 Auto glass shop Auto_glass_shop Automotive.Repair.Auto_glass_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1334 Auto repair shop Auto_repair_shop Automotive.Repair.Auto_repair_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1344 Auto tune up service Auto_tune_up_service Automotive.Repair.Auto_tune_up_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1490 Brake shop Brake_shop Automotive.Repair.Brake_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2786 Mechanical contractor Mechanical_contractor Automotive.Repair.Mechanical_contractor 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2787 Mechanical engineer Mechanical_engineer Automotive.Repair.Mechanical_engineer 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2788 Mechanical plant Mechanical_plant Automotive.Repair.Mechanical_plant 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2908 Motorcycle repair shop Motorcycle_repair_shop Automotive.Repair.Motorcycle_repair_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2919 Muffler shop Muffler_shop Automotive.Repair.Muffler_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2993 Oil change service Oil_change_service Automotive.Repair.Oil_change_service 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3791 Transmission shop Transmission_shop Automotive.Repair.Transmission_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3806 Truck repair shop Truck_repair_shop Automotive.Repair.Truck_repair_shop 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3812 Tune up supplier Tune_up_supplier Automotive.Repair.Tune_up_supplier 3 4063 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1319 Auto accessories wholesaler Auto_accessories_wholesaler Automotive.Parts.Auto_accessories_wholesaler 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1331 Auto parts manufacturer Auto_parts_manufacturer Automotive.Parts.Auto_parts_manufacturer 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1332 Auto parts market Auto_parts_market Automotive.Parts.Auto_parts_market 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1333 Auto parts store Auto_parts_store Automotive.Parts.Auto_parts_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1396 Battery store Battery_store Automotive.Parts.Battery_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1397 Battery wholesaler Battery_wholesaler Automotive.Parts.Battery_wholesaler 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2126 Ferris wheel Ferris_wheel Automotive.Parts.Ferris_wheel 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3278 Public wheelchair-accessible bathroom Public_wheelchair_accessible_bathroom Automotive.Parts.Public_wheelchair_accessible_bathroom 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3295 Racing car parts store Racing_car_parts_store Automotive.Parts.Racing_car_parts_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3738 Tyre manufacturer Tyre_manufacturer Automotive.Parts.Tyre_manufacturer 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3740 Tire shop Tire_shop Automotive.Parts.Tire_shop 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3835 Used auto parts store Used_auto_parts_store Automotive.Parts.Used_auto_parts_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3846 Used tire shop Used_tire_shop Automotive.Parts.Used_tire_shop 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3957 Wheel store Wheel_store Automotive.Parts.Wheel_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3958 Wheelchair rental service Wheelchair_rental_service Automotive.Parts.Wheelchair_rental_service 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3959 Wheelchair repair service Wheelchair_repair_service Automotive.Parts.Wheelchair_repair_service 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3960 Wheelchair store Wheelchair_store Automotive.Parts.Wheelchair_store 3 4064 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1230 Alternative fuel station Alternative_fuel_station Automotive.Fuel.Alternative_fuel_station 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1603 Cell phone charging station Cell_phone_charging_station Automotive.Fuel.Cell_phone_charging_station 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1898 Diesel fuel supplier Diesel_fuel_supplier Automotive.Fuel.Diesel_fuel_supplier 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2002 Electric vehicle charging station Electric_vehicle_charging_station Automotive.Fuel.Electric_vehicle_charging_station 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2003 Electric vehicle charging station contractor Electric_vehicle_charging_station_contractor Automotive.Fuel.Electric_vehicle_charging_station_contractor 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2696 LPG conversion LPG_conversion Automotive.Fuel.LPG_conversion 3 4065 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1569 Car rental agency Car_rental_agency Automotive.Rentals.Car_rental_agency 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2907 Motorcycle rental agency Motorcycle_rental_agency Automotive.Rentals.Motorcycle_rental_agency 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3391 Recreational vehicle rental agency Recreational_vehicle_rental_agency Automotive.Rentals.Recreational_vehicle_rental_agency 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3805 Truck rental agency Truck_rental_agency Automotive.Rentals.Truck_rental_agency 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3856 Van rental agency Van_rental_agency Automotive.Rentals.Van_rental_agency 3 4066 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2225 Free parking lot Free_parking_lot Automotive.Parking.Free_parking_lot 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2267 Garage builder Garage_builder Automotive.Parking.Garage_builder 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2268 Garage door supplier Garage_door_supplier Automotive.Parking.Garage_door_supplier 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3079 Parking lot Parking_lot Automotive.Parking.Parking_lot 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3080 Parking lot for bicycles Parking_lot_for_bicycles Automotive.Parking.Parking_lot_for_bicycles 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3081 Parking lot for motorcycles Parking_lot_for_motorcycles Automotive.Parking.Parking_lot_for_motorcycles 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3268 Public parking space Public_parking_space Automotive.Parking.Public_parking_space 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3811 Tsukigime parking lot Tsukigime_parking_lot Automotive.Parking.Tsukigime_parking_lot 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3855 Valet parking service Valet_parking_service Automotive.Parking.Valet_parking_service 3 4067 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 989 Sexologist Sexologist Healthcare.Doctors.Sexologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 990 Urologist Urologist Healthcare.Doctors.Urologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 991 Venereologist Venereologist Healthcare.Doctors.Venereologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 992 Gastroenterologist Gastroenterologist Healthcare.Doctors.Gastroenterologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 993 Nephrologist Nephrologist Healthcare.Doctors.Nephrologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 994 Otolaryngologist Otolaryngologist Healthcare.Doctors.Otolaryngologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 995 Pediatric dermatologist Pediatric_dermatologist Healthcare.Doctors.Pediatric_dermatologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 996 Pediatric gastroenterologist Pediatric_gastroenterologist Healthcare.Doctors.Pediatric_gastroenterologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 997 Pediatric hematologist Pediatric_hematologist Healthcare.Doctors.Pediatric_hematologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 998 Pediatric neurologist Pediatric_neurologist Healthcare.Doctors.Pediatric_neurologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 999 Pediatric oncologist Pediatric_oncologist Healthcare.Doctors.Pediatric_oncologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1000 Pediatric pulmonologist Pediatric_pulmonologist Healthcare.Doctors.Pediatric_pulmonologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1001 Pediatric rheumatologist Pediatric_rheumatologist Healthcare.Doctors.Pediatric_rheumatologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1002 Pediatric urologist Pediatric_urologist Healthcare.Doctors.Pediatric_urologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1003 Pediatrician Pediatrician Healthcare.Doctors.Pediatrician 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1146 Gemologist Gemologist Healthcare.Doctors.Gemologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1155 Immunologist Immunologist Healthcare.Doctors.Immunologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2354 Obstetrician-gynecologist Obstetrician_gynecologist Healthcare.Doctors.Obstetrician_gynecologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3097 Pediatric nephrologist Pediatric_nephrologist Healthcare.Doctors.Pediatric_nephrologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3099 Pediatric ophthalmologist Pediatric_ophthalmologist Healthcare.Doctors.Pediatric_ophthalmologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3102 Pediatric surgeon Pediatric_surgeon Healthcare.Doctors.Pediatric_surgeon 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3122 Physiatrist Physiatrist Healthcare.Doctors.Physiatrist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3138 Physician assistant Physician_assistant Healthcare.Doctors.Physician_assistant 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3139 Physician referral service Physician_referral_service Healthcare.Doctors.Physician_referral_service 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3252 Pulmonologist Pulmonologist Healthcare.Doctors.Pulmonologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3254 Psychologist Psychologist Healthcare.Doctors.Psychologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3629 Surgical oncologist Surgical_oncologist Healthcare.Doctors.Surgical_oncologist 3 4068 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1632 Children Policlinic Children_Policlinic Healthcare.Clinics.Children_Policlinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2128 Fertility clinic Fertility_clinic Healthcare.Clinics.Fertility_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2367 Hair transplantation clinic Hair_transplantation_clinic Healthcare.Clinics.Hair_transplantation_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3033 Orthopedic clinic Orthopedic_clinic Healthcare.Clinics.Orthopedic_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3037 Otolaryngology clinic Otolaryngology_clinic Healthcare.Clinics.Otolaryngology_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3060 Pain control clinic Pain_control_clinic Healthcare.Clinics.Pain_control_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3110 Permanent make-up clinic Permanent_make_up_clinic Healthcare.Clinics.Permanent_make_up_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3141 Physical therapy clinic Physical_therapy_clinic Healthcare.Clinics.Physical_therapy_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3256 Psychoneurological specialized clinic Psychoneurological_specialized_clinic Healthcare.Clinics.Psychoneurological_specialized_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3257 Psychopedagogy clinic Psychopedagogy_clinic Healthcare.Clinics.Psychopedagogy_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3580 Specialized clinic Specialized_clinic Healthcare.Clinics.Specialized_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3592 Sports medicine clinic Sports_medicine_clinic Healthcare.Clinics.Sports_medicine_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3622 STD clinic STD_clinic Healthcare.Clinics.STD_clinic 3 4069 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1638 Children's hospital Children_s_hospital Healthcare.Hospitals.Children_s_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2467 Hospitality and tourism school Hospitality_and_tourism_school Healthcare.Hospitals.Hospitality_and_tourism_school 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2468 Hospitality high school Hospitality_high_school Healthcare.Hospitals.Hospitality_high_school 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3250 Psychiatric hospital Psychiatric_hospital Healthcare.Hospitals.Psychiatric_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3581 Specialized hospital Specialized_hospital Healthcare.Hospitals.Specialized_hospital 3 4070 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1874 Dental implants provider Dental_implants_provider Healthcare.Dental.Dental_implants_provider 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1877 Dental radiology Dental_radiology Healthcare.Dental.Dental_radiology 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1878 Dental school Dental_school Healthcare.Dental.Dental_school 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1879 Dental supply store Dental_supply_store Healthcare.Dental.Dental_supply_store 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3024 Oral surgeon Oral_surgeon Healthcare.Dental.Oral_surgeon 3 4071 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1162 Addiction treatment center Addiction_treatment_center Healthcare.Mental_Health.Addiction_treatment_center 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1854 Data recovery service Data_recovery_service Healthcare.Mental_Health.Data_recovery_service 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2057 Environmental health service Environmental_health_service Healthcare.Mental_Health.Environmental_health_service 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2097 Family counselor Family_counselor Healthcare.Mental_Health.Family_counselor 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2099 Family planning counselor Family_planning_counselor Healthcare.Mental_Health.Family_planning_counselor 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2998 Occupational therapist Occupational_therapist Healthcare.Mental_Health.Occupational_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3144 Physical rehabilitation center Physical_rehabilitation_center Healthcare.Mental_Health.Physical_rehabilitation_center 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3255 Psychomotor therapist Psychomotor_therapist Healthcare.Mental_Health.Psychomotor_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3258 Psychosocial therapist Psychosocial_therapist Healthcare.Mental_Health.Psychosocial_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3591 Sports massage therapist Sports_massage_therapist Healthcare.Mental_Health.Sports_massage_therapist 3 4072 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1284 Aromatherapy supply store Aromatherapy_supply_store Healthcare.Alternative.Aromatherapy_supply_store 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2428 Holistic medicine practitioner Holistic_medicine_practitioner Healthcare.Alternative.Holistic_medicine_practitioner 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2438 Homeopathic pharmacy Homeopathic_pharmacy Healthcare.Alternative.Homeopathic_pharmacy 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2484 Hypnotherapy service Hypnotherapy_service Healthcare.Alternative.Hypnotherapy_service 3 4073 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1005 Hospice Hospice Healthcare.Medical_Services.Hospice 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1140 Water testing service Water_testing_service Healthcare.Medical_Services.Water_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1203 Air ambulance service Air_ambulance_service Healthcare.Medical_Services.Air_ambulance_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1289 Asbestos testing service Asbestos_testing_service Healthcare.Medical_Services.Asbestos_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2030 Emergency care physician Emergency_care_physician Healthcare.Medical_Services.Emergency_care_physician 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2031 Emergency care service Emergency_care_service Healthcare.Medical_Services.Emergency_care_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2033 Emergency locksmith service Emergency_locksmith_service Healthcare.Medical_Services.Emergency_locksmith_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2034 Emergency room Emergency_room Healthcare.Medical_Services.Emergency_room 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2035 Emergency training Emergency_training Healthcare.Medical_Services.Emergency_training 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2036 Emergency training school Emergency_training_school Healthcare.Medical_Services.Emergency_training_school 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2412 HIV testing center HIV_testing_center Healthcare.Medical_Services.HIV_testing_center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2789 Medical examiner Medical_examiner Healthcare.Medical_Services.Medical_examiner 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2791 Medical billing service Medical_billing_service Healthcare.Medical_Services.Medical_billing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2793 Medical certificate service Medical_certificate_service Healthcare.Medical_Services.Medical_certificate_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2794 Medical book store Medical_book_store Healthcare.Medical_Services.Medical_book_store 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2796 Medical transcription service Medical_transcription_service Healthcare.Medical_Services.Medical_transcription_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2798 Medical diagnostic imaging center Medical_diagnostic_imaging_center Healthcare.Medical_Services.Medical_diagnostic_imaging_center 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2799 Medical equipment manufacturer Medical_equipment_manufacturer Healthcare.Medical_Services.Medical_equipment_manufacturer 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2801 Medical equipment supplier Medical_equipment_supplier Healthcare.Medical_Services.Medical_equipment_supplier 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2802 Medical group Medical_group Healthcare.Medical_Services.Medical_group 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2804 Medical lawyer Medical_lawyer Healthcare.Medical_Services.Medical_lawyer 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2805 Medical school Medical_school Healthcare.Medical_Services.Medical_school 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2806 Medical spa Medical_spa Healthcare.Medical_Services.Medical_spa 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2808 Medical technology manufacturer Medical_technology_manufacturer Healthcare.Medical_Services.Medical_technology_manufacturer 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2817 Medical office Medical_office Healthcare.Medical_Services.Medical_office 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2984 Nursing agency Nursing_agency Healthcare.Medical_Services.Nursing_agency 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2985 Nursing association Nursing_association Healthcare.Medical_Services.Nursing_association 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2986 Nursing home Nursing_home Healthcare.Medical_Services.Nursing_home 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2987 Nursing school Nursing_school Healthcare.Medical_Services.Nursing_school 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2996 Occupational medical physician Occupational_medical_physician Healthcare.Medical_Services.Occupational_medical_physician 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3074 Paternity testing service Paternity_testing_service Healthcare.Medical_Services.Paternity_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3259 Psychosomatic medical practitioner Psychosomatic_medical_practitioner Healthcare.Medical_Services.Psychosomatic_medical_practitioner 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3600 STD testing service STD_testing_service Healthcare.Medical_Services.STD_testing_service 3 4075 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 965 Veterinarian Veterinarian Healthcare.Veterinary.Veterinarian 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2037 Emergency veterinarian service Emergency_veterinarian_service Healthcare.Veterinary.Emergency_veterinarian_service 3 4076 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1093 Thermal baths Thermal_baths Healthcare.Wellness.Thermal_baths 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1187 Aerospace company Aerospace_company Healthcare.Wellness.Aerospace_company 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1382 Barber supply store Barber_supply_store Healthcare.Wellness.Barber_supply_store 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1409 Beauty salon Beauty_salon Healthcare.Wellness.Beauty_salon 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1807 Coworking space Coworking_space Healthcare.Wellness.Coworking_space 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1863 Day spa Day_spa Healthcare.Wellness.Day_spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2366 Hair salon Hair_salon Healthcare.Wellness.Hair_salon 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2396 Health spa Health_spa Healthcare.Wellness.Health_spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2419 Hispanic church Hispanic_church Healthcare.Wellness.Hispanic_church 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2470 Hot bedstone spa Hot_bedstone_spa Healthcare.Wellness.Hot_bedstone_spa 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3005 Office space rental agency Office_space_rental_agency Healthcare.Wellness.Office_space_rental_agency 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3272 Public sauna Public_sauna Healthcare.Wellness.Public_sauna 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3350 Retail space rental agency Retail_space_rental_agency Healthcare.Wellness.Retail_space_rental_agency 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3575 Spa and health club Spa_and_health_club Healthcare.Wellness.Spa_and_health_club 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3576 Spa garden Spa_garden Healthcare.Wellness.Spa_garden 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3577 Space of remembrance Space_of_remembrance Healthcare.Wellness.Space_of_remembrance 3 4077 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 232 Costume store Costume_store Retail.Stores.Costume_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 245 Curtain store Curtain_store Retail.Stores.Curtain_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 250 Dance store Dance_store Retail.Stores.Dance_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 823 Sofa store Sofa_store Retail.Stores.Sofa_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1178 Adult entertainment store Adult_entertainment_store Retail.Stores.Adult_entertainment_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1188 Aeromodel shop Aeromodel_shop Retail.Stores.Aeromodel_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1216 Aircraft supply store Aircraft_supply_store Retail.Stores.Aircraft_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1222 Airsoft supply store Airsoft_supply_store Retail.Stores.Airsoft_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1236 American grocery store American_grocery_store Retail.Stores.American_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1237 Amish furniture store Amish_furniture_store Retail.Stores.Amish_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1257 Antique furniture store Antique_furniture_store Retail.Stores.Antique_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1258 Antique store Antique_store Retail.Stores.Antique_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1279 Army & navy surplus shop Army_navy_surplus_shop Retail.Stores.Army_navy_surplus_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1291 Art supply store Art_supply_store Retail.Stores.Art_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1293 Asian grocery store Asian_grocery_store Retail.Stores.Asian_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1294 Asian household goods store Asian_household_goods_store Retail.Stores.Asian_household_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1317 Australian goods store Australian_goods_store Retail.Stores.Australian_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1359 Bait shop Bait_shop Retail.Stores.Bait_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1361 Baking supply store Baking_supply_store Retail.Stores.Baking_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1366 Balloon store Balloon_store Retail.Stores.Balloon_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1367 Bangle Shop Bangle_Shop Retail.Stores.Bangle_Shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1370 Banner store Banner_store Retail.Stores.Banner_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1400 Beach entertainment shop Beach_entertainment_shop Retail.Stores.Beach_entertainment_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1411 Beauty supply store Beauty_supply_store Retail.Stores.Beauty_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1413 Bed shop Bed_shop Retail.Stores.Bed_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1415 Bedroom furniture store Bedroom_furniture_store Retail.Stores.Bedroom_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1421 Belt shop Belt_shop Retail.Stores.Belt_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1429 Billiards supply store Billiards_supply_store Retail.Stores.Billiards_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1432 Bird shop Bird_shop Retail.Stores.Bird_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1485 Bowling supply shop Bowling_supply_shop Retail.Stores.Bowling_supply_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1495 Brewing supply store Brewing_supply_store Retail.Stores.Brewing_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1500 Bubble tea store Bubble_tea_store Retail.Stores.Bubble_tea_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1501 Buddhist supplies store Buddhist_supplies_store Retail.Stores.Buddhist_supplies_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1516 Burglar alarm store Burglar_alarm_store Retail.Stores.Burglar_alarm_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1533 Butcher shop Butcher_shop Retail.Stores.Butcher_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1535 Butsudan store Butsudan_store Retail.Stores.Butsudan_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1541 Call shop Call_shop Retail.Stores.Call_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1545 Camera store Camera_store Retail.Stores.Camera_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1554 Candle store Candle_store Retail.Stores.Candle_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1556 Cane furniture store Cane_furniture_store Retail.Stores.Cane_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1557 Cannabis store Cannabis_store Retail.Stores.Cannabis_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1558 Canoe & kayak store Canoe_kayak_store Retail.Stores.Canoe_kayak_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1637 Children's furniture store Children_s_furniture_store Retail.Stores.Children_s_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1643 Children's store Children_s_store Retail.Stores.Children_s_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1648 Chinese medicine store Chinese_medicine_store Retail.Stores.Chinese_medicine_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1660 Christian book store Christian_book_store Retail.Stores.Christian_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1664 Christmas store Christmas_store Retail.Stores.Christmas_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1672 Church supply store Church_supply_store Retail.Stores.Church_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1763 Consignment shop Consignment_shop Retail.Stores.Consignment_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1775 Cookie shop Cookie_shop Retail.Stores.Cookie_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1779 Copy shop Copy_shop Retail.Stores.Copy_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1784 Cosmetics store Cosmetics_store Retail.Stores.Cosmetics_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1789 Costume jewelry shop Costume_jewelry_shop Retail.Stores.Costume_jewelry_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1799 Countertop store Countertop_store Retail.Stores.Countertop_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1836 Custom confiscated goods store Custom_confiscated_goods_store Retail.Stores.Custom_confiscated_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1839 Custom t-shirt store Custom_t_shirt_store Retail.Stores.Custom_t_shirt_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1842 Cutlery store Cutlery_store Retail.Stores.Cutlery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1848 Dairy store Dairy_store Retail.Stores.Dairy_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1856 Dart supply store Dart_supply_store Retail.Stores.Dart_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1944 Dried flower shop Dried_flower_shop Retail.Stores.Dried_flower_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1945 Dried seafood store Dried_seafood_store Retail.Stores.Dried_seafood_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1953 Driveshaft shop Driveshaft_shop Retail.Stores.Driveshaft_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1959 Drug store Drug_store Retail.Stores.Drug_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1961 Drum store Drum_store Retail.Stores.Drum_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1963 Dry fruit store Dry_fruit_store Retail.Stores.Dry_fruit_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1966 Dry wall supply store Dry_wall_supply_store Retail.Stores.Dry_wall_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1974 Duty free store Duty_free_store Retail.Stores.Duty_free_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1975 DVD store DVD_store Retail.Stores.DVD_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1976 Dye store Dye_store Retail.Stores.Dye_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1981 Eastern European grocery store Eastern_European_grocery_store Retail.Stores.Eastern_European_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2072 European grocery store European_grocery_store Retail.Stores.European_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2118 Felt boots store Felt_boots_store Retail.Stores.Felt_boots_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2120 Fence supply store Fence_supply_store Retail.Stores.Fence_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2124 Feng shui shop Feng_shui_shop Retail.Stores.Feng_shui_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2135 Figurine shop Figurine_shop Retail.Stores.Figurine_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2136 Filipino grocery store Filipino_grocery_store Retail.Stores.Filipino_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2157 Fireworks store Fireworks_store Retail.Stores.Fireworks_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2170 Fishing store Fishing_store Retail.Stores.Fishing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2172 Exercise equipment store Exercise_equipment_store Retail.Stores.Exercise_equipment_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2183 Flooring store Flooring_store Retail.Stores.Flooring_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2263 Futon store Futon_store Retail.Stores.Futon_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2284 Electric generator shop Electric_generator_shop Retail.Stores.Electric_generator_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2293 Gift basket store Gift_basket_store Retail.Stores.Gift_basket_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2294 Gift shop Gift_shop Retail.Stores.Gift_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2295 Gift wrap store Gift_wrap_store Retail.Stores.Gift_wrap_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2297 Glass & mirror shop Glass_mirror_shop Retail.Stores.Glass_mirror_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2306 Glassware store Glassware_store Retail.Stores.Glassware_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2311 Goldfish store Goldfish_store Retail.Stores.Goldfish_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2319 Golf shop Golf_shop Retail.Stores.Golf_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2321 Gourmet grocery store Gourmet_grocery_store Retail.Stores.Gourmet_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2326 Government ration shop Government_ration_shop Retail.Stores.Government_ration_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2342 Grow shop Grow_shop Retail.Stores.Grow_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2349 Guitar store Guitar_store Retail.Stores.Guitar_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2368 Ham shop Ham_shop Retail.Stores.Ham_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2370 Handbags shop Handbags_shop Retail.Stores.Handbags_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2379 Hat shop Hat_shop Retail.Stores.Hat_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2384 Hawaiian goods store Hawaiian_goods_store Retail.Stores.Hawaiian_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2389 Health and beauty shop Health_and_beauty_shop Retail.Stores.Health_and_beauty_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2393 Health food store Health_food_store Retail.Stores.Health_food_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2431 Home goods store Home_goods_store Retail.Stores.Home_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2433 Home improvement store Home_improvement_store Retail.Stores.Home_improvement_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2435 Home theater store Home_theater_store Retail.Stores.Home_theater_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2452 Hookah store Hookah_store Retail.Stores.Hookah_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2560 Irish goods store Irish_goods_store Retail.Stores.Irish_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2594 Juice shop Juice_shop Retail.Stores.Juice_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2608 Kebab shop Kebab_shop Retail.Stores.Kebab_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2614 Kimono store Kimono_store Retail.Stores.Kimono_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2615 Kitchen furniture store Kitchen_furniture_store Retail.Stores.Kitchen_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2616 Kitchen supply store Kitchen_supply_store Retail.Stores.Kitchen_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2617 Kite shop Kite_shop Retail.Stores.Kite_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2619 Knife store Knife_store Retail.Stores.Knife_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2620 Knit shop Knit_shop Retail.Stores.Knit_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2623 Korean grocery store Korean_grocery_store Retail.Stores.Korean_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2624 Kosher grocery store Kosher_grocery_store Retail.Stores.Kosher_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2651 Law book store Law_book_store Retail.Stores.Law_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2659 Lawn mower store Lawn_mower_store Retail.Stores.Lawn_mower_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2667 Leather coats store Leather_coats_store Retail.Stores.Leather_coats_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2671 Leather goods store Leather_goods_store Retail.Stores.Leather_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2695 Linoleum store Linoleum_store Retail.Stores.Linoleum_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2697 Liquor store Liquor_store Retail.Stores.Liquor_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2721 Lottery shop Lottery_shop Retail.Stores.Lottery_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2722 Luggage store Luggage_store Retail.Stores.Luggage_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2734 Machine shop Machine_shop Retail.Stores.Machine_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2735 Machine workshop Machine_workshop Retail.Stores.Machine_workshop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2740 Magazine store Magazine_store Retail.Stores.Magazine_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2741 Magic store Magic_store Retail.Stores.Magic_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2835 Metaphysical supply store Metaphysical_supply_store Retail.Stores.Metaphysical_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2838 Mexican goods store Mexican_goods_store Retail.Stores.Mexican_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2839 Mexican grocery store Mexican_grocery_store Retail.Stores.Mexican_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2853 Millwork shop Millwork_shop Retail.Stores.Millwork_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2858 Miniatures store Miniatures_store Retail.Stores.Miniatures_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2864 Mirror shop Mirror_shop Retail.Stores.Mirror_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2946 Native american goods store Native_american_goods_store Retail.Stores.Native_american_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2947 Natural goods store Natural_goods_store Retail.Stores.Natural_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2954 Needlework shop Needlework_shop Retail.Stores.Needlework_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2955 Neon sign shop Neon_sign_shop Retail.Stores.Neon_sign_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2970 Noodle shop Noodle_shop Retail.Stores.Noodle_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2975 Novelty store Novelty_store Retail.Stores.Novelty_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3056 Packaging supply store Packaging_supply_store Retail.Stores.Packaging_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3064 Paintball store Paintball_store Retail.Stores.Paintball_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3065 Paintings store Paintings_store Retail.Stores.Paintings_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3067 Panipuri shop Panipuri_shop Retail.Stores.Panipuri_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3071 Paper store Paper_store Retail.Stores.Paper_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3086 Party store Party_store Retail.Stores.Party_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3087 Pasta shop Pasta_shop Retail.Stores.Pasta_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3093 Pawn shop Pawn_shop Retail.Stores.Pawn_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3167 Plast window store Plast_window_store Retail.Stores.Plast_window_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3176 Plumbing supply store Plumbing_supply_store Retail.Stores.Plumbing_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3177 Plus size clothing store Plus_size_clothing_store Retail.Stores.Plus_size_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3182 Police supply store Police_supply_store Retail.Stores.Police_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3204 Poster store Poster_store Retail.Stores.Poster_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3206 Pottery store Pottery_store Retail.Stores.Pottery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3208 Poultry store Poultry_store Retail.Stores.Poultry_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3328 Refrigerator store Refrigerator_store Retail.Stores.Refrigerator_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3331 Religious book store Religious_book_store Retail.Stores.Religious_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3332 Religious goods store Religious_goods_store Retail.Stores.Religious_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3372 Roofing supply store Roofing_supply_store Retail.Stores.Roofing_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3377 Rubber stamp store Rubber_stamp_store Retail.Stores.Rubber_stamp_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3378 Rug store Rug_store Retail.Stores.Rug_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3383 Running store Running_store Retail.Stores.Running_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3384 Russian grocery store Russian_grocery_store Retail.Stores.Russian_grocery_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3386 Rustic furniture store Rustic_furniture_store Retail.Stores.Rustic_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3395 Safe & vault shop Safe_vault_shop Retail.Stores.Safe_vault_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3406 Sandwich shop Sandwich_shop Retail.Stores.Sandwich_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3421 Model shop Model_shop Retail.Stores.Model_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3428 School supply store School_supply_store Retail.Stores.School_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3433 Scrapbooking store Scrapbooking_store Retail.Stores.Scrapbooking_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3434 Screen printing shop Screen_printing_shop Retail.Stores.Screen_printing_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3435 Screen printing supply store Screen_printing_supply_store Retail.Stores.Screen_printing_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3437 Screen store Screen_store Retail.Stores.Screen_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3447 Seal shop Seal_shop Retail.Stores.Seal_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3448 Seasonal goods store Seasonal_goods_store Retail.Stores.Seasonal_goods_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3480 Shelving store Shelving_store Retail.Stores.Shelving_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3491 Shop supermarket furniture store Shop_supermarket_furniture_store Retail.Stores.Shop_supermarket_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3495 Shower door shop Shower_door_shop Retail.Stores.Shower_door_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3501 Sign shop Sign_shop Retail.Stores.Sign_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3502 Silk plant shop Silk_plant_shop Retail.Stores.Silk_plant_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3511 Skateboard shop Skateboard_shop Retail.Stores.Skateboard_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3551 Soft drinks shop Soft_drinks_shop Retail.Stores.Soft_drinks_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3561 Soup shop Soup_shop Retail.Stores.Soup_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3572 Souvenir store Souvenir_store Retail.Stores.Souvenir_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3623 Steamed bun shop Steamed_bun_shop Retail.Stores.Steamed_bun_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3626 Stereo rental store Stereo_rental_store Retail.Stores.Stereo_rental_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3656 Surgical supply store Surgical_supply_store Retail.Stores.Surgical_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3658 Surplus store Surplus_store Retail.Stores.Surplus_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3671 Swimming pool supply store Swimming_pool_supply_store Retail.Stores.Swimming_pool_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3673 Swimwear store Swimwear_store Retail.Stores.Swimwear_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3674 T-shirt store T_shirt_store Retail.Stores.T_shirt_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3677 Table tennis supply store Table_tennis_supply_store Retail.Stores.Table_tennis_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3678 Tack shop Tack_shop Retail.Stores.Tack_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3682 Tamale shop Tamale_shop Retail.Stores.Tamale_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3686 Tatami store Tatami_store Retail.Stores.Tatami_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3687 Tattoo and piercing shop Tattoo_and_piercing_shop Retail.Stores.Tattoo_and_piercing_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3690 Tattoo shop Tattoo_shop Retail.Stores.Tattoo_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3691 Tattoo supply store Tattoo_supply_store Retail.Stores.Tattoo_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3727 Theater supply store Theater_supply_store Retail.Stores.Theater_supply_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3732 Thrift store Thrift_store Retail.Stores.Thrift_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3743 Tobacco shop Tobacco_shop Retail.Stores.Tobacco_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3746 Tofu shop Tofu_shop Retail.Stores.Tofu_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3747 Toiletries store Toiletries_store Retail.Stores.Toiletries_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3753 Tool & die shop Tool_die_shop Retail.Stores.Tool_die_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3800 Trophy shop Trophy_shop Retail.Stores.Trophy_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3801 Tropical fish store Tropical_fish_store Retail.Stores.Tropical_fish_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3802 Truck accessories store Truck_accessories_store Retail.Stores.Truck_accessories_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3836 Used book store Used_book_store Retail.Stores.Used_book_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3840 Used computer store Used_computer_store Retail.Stores.Used_computer_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3841 Used furniture store Used_furniture_store Retail.Stores.Used_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3843 Used musical instrument store Used_musical_instrument_store Retail.Stores.Used_musical_instrument_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3844 Used office furniture store Used_office_furniture_store Retail.Stores.Used_office_furniture_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3853 Vacuum cleaner store Vacuum_cleaner_store Retail.Stores.Vacuum_cleaner_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3857 Vaporizer store Vaporizer_store Retail.Stores.Vaporizer_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3880 Video game store Video_game_store Retail.Stores.Video_game_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3885 Vintage clothing store Vintage_clothing_store Retail.Stores.Vintage_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3886 Vinyl sign shop Vinyl_sign_shop Retail.Stores.Vinyl_sign_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3887 Violin shop Violin_shop Retail.Stores.Violin_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3901 Wallpaper store Wallpaper_store Retail.Stores.Wallpaper_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3903 Warehouse store Warehouse_store Retail.Stores.Warehouse_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3904 Washer & dryer store Washer_dryer_store Retail.Stores.Washer_dryer_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3906 Watch store Watch_store Retail.Stores.Watch_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3911 Water ski shop Water_ski_shop Retail.Stores.Water_ski_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3917 Waterbed store Waterbed_store Retail.Stores.Waterbed_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3973 Wig shop Wig_shop Retail.Stores.Wig_shop 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3984 Window treatment store Window_treatment_store Retail.Stores.Window_treatment_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3985 Windsurfing store Windsurfing_store Retail.Stores.Windsurfing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4005 Work clothes store Work_clothes_store Retail.Stores.Work_clothes_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4018 Youth clothing store Youth_clothing_store Retail.Stores.Youth_clothing_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4025 Yarn store Yarn_store Retail.Stores.Yarn_store 3 4057 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1168 Abrasives supplier Abrasives_supplier Retail.Wholesale.Abrasives_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1181 Aerated drinks supplier Aerated_drinks_supplier Retail.Wholesale.Aerated_drinks_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1192 Aggregate supplier Aggregate_supplier Retail.Wholesale.Aggregate_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1198 Agricultural product wholesaler Agricultural_product_wholesaler Retail.Wholesale.Agricultural_product_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1201 Agrochemicals supplier Agrochemicals_supplier Retail.Wholesale.Agrochemicals_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1204 Air compressor supplier Air_compressor_supplier Retail.Wholesale.Air_compressor_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1208 Air conditioning system supplier Air_conditioning_system_supplier Retail.Wholesale.Air_conditioning_system_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1210 Air filter supplier Air_filter_supplier Retail.Wholesale.Air_filter_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1226 Alcoholic beverage wholesaler Alcoholic_beverage_wholesaler Retail.Wholesale.Alcoholic_beverage_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1231 Alternator supplier Alternator_supplier Retail.Wholesale.Alternator_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1232 Aluminum supplier Aluminum_supplier Retail.Wholesale.Aluminum_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1233 Aluminum frames supplier Aluminum_frames_supplier Retail.Wholesale.Aluminum_frames_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1238 Ammunition supplier Ammunition_supplier Retail.Wholesale.Ammunition_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1239 Amusement machine supplier Amusement_machine_supplier Retail.Wholesale.Amusement_machine_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1242 Amusement ride supplier Amusement_ride_supplier Retail.Wholesale.Amusement_ride_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1262 Appliance parts supplier Appliance_parts_supplier Retail.Wholesale.Appliance_parts_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1292 Artificial plant supplier Artificial_plant_supplier Retail.Wholesale.Artificial_plant_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1314 Audio visual equipment supplier Audio_visual_equipment_supplier Retail.Wholesale.Audio_visual_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1321 Auto body parts supplier Auto_body_parts_supplier Retail.Wholesale.Auto_body_parts_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1347 Awning supplier Awning_supplier Retail.Wholesale.Awning_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1376 Bar stool supplier Bar_stool_supplier Retail.Wholesale.Bar_stool_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1384 Bark supplier Bark_supplier Retail.Wholesale.Bark_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1385 Barrel supplier Barrel_supplier Retail.Wholesale.Barrel_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1390 Basket supplier Basket_supplier Retail.Wholesale.Basket_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1403 Bead wholesaler Bead_wholesaler Retail.Wholesale.Bead_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1404 Bearing supplier Bearing_supplier Retail.Wholesale.Bearing_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1406 Beauty product supplier Beauty_product_supplier Retail.Wholesale.Beauty_product_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1408 Beauty products wholesaler Beauty_products_wholesaler Retail.Wholesale.Beauty_products_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1425 Bicycle wholesaler Bicycle_wholesaler Retail.Wholesale.Bicycle_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1451 Boat accessories supplier Boat_accessories_supplier Retail.Wholesale.Boat_accessories_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1454 Boat cover supplier Boat_cover_supplier Retail.Wholesale.Boat_cover_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1462 Boiler supplier Boiler_supplier Retail.Wholesale.Boiler_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1463 Bonsai plant supplier Bonsai_plant_supplier Retail.Wholesale.Bonsai_plant_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1474 Books wholesaler Books_wholesaler Retail.Wholesale.Books_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1482 Bottled water supplier Bottled_water_supplier Retail.Wholesale.Bottled_water_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1486 Box lunch supplier Box_lunch_supplier Retail.Wholesale.Box_lunch_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1513 Building materials supplier Building_materials_supplier Retail.Wholesale.Building_materials_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1532 Butane gas supplier Butane_gas_supplier Retail.Wholesale.Butane_gas_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1547 Camper shell supplier Camper_shell_supplier Retail.Wholesale.Camper_shell_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1562 Car alarm supplier Car_alarm_supplier Retail.Wholesale.Car_alarm_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1584 Carpet wholesaler Carpet_wholesaler Retail.Wholesale.Carpet_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1587 Cash and carry wholesaler Cash_and_carry_wholesaler Retail.Wholesale.Cash_and_carry_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1593 Catering food and drink supplier Catering_food_and_drink_supplier Retail.Wholesale.Catering_food_and_drink_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1601 Ceiling supplier Ceiling_supplier Retail.Wholesale.Ceiling_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1607 Ceramics wholesaler Ceramics_wholesaler Retail.Wholesale.Ceramics_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1618 Chemical wholesaler Chemical_wholesaler Retail.Wholesale.Chemical_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1676 Cinema equipment supplier Cinema_equipment_supplier Retail.Wholesale.Cinema_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1695 Clothes and fabric wholesaler Clothes_and_fabric_wholesaler Retail.Wholesale.Clothes_and_fabric_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1699 Clothing supplier Clothing_supplier Retail.Wholesale.Clothing_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1701 Clothing wholesaler Clothing_wholesaler Retail.Wholesale.Clothing_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1705 Coal supplier Coal_supplier Retail.Wholesale.Coal_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1712 Coffin supplier Coffin_supplier Retail.Wholesale.Coffin_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1714 Coin operated laundry equipment supplier Coin_operated_laundry_equipment_supplier Retail.Wholesale.Coin_operated_laundry_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1732 Commercial refrigerator supplier Commercial_refrigerator_supplier Retail.Wholesale.Commercial_refrigerator_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1748 Computer wholesaler Computer_wholesaler Retail.Wholesale.Computer_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1752 Concrete metal framework supplier Concrete_metal_framework_supplier Retail.Wholesale.Concrete_metal_framework_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1753 Concrete product supplier Concrete_product_supplier Retail.Wholesale.Concrete_product_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1754 Condiments supplier Condiments_supplier Retail.Wholesale.Condiments_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1769 Contact lenses supplier Contact_lenses_supplier Retail.Wholesale.Contact_lenses_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1771 Container supplier Container_supplier Retail.Wholesale.Container_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1772 Containers supplier Containers_supplier Retail.Wholesale.Containers_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1778 Copper supplier Copper_supplier Retail.Wholesale.Copper_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1781 Corporate gift supplier Corporate_gift_supplier Retail.Wholesale.Corporate_gift_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1785 Cosmetics wholesaler Cosmetics_wholesaler Retail.Wholesale.Cosmetics_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1795 Cotton supplier Cotton_supplier Retail.Wholesale.Cotton_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1823 Crushed stone supplier Crushed_stone_supplier Retail.Wholesale.Crushed_stone_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1835 Curtain supplier and maker Curtain_supplier_and_maker Retail.Wholesale.Curtain_supplier_and_maker 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1847 Dairy farm equipment supplier Dairy_farm_equipment_supplier Retail.Wholesale.Dairy_farm_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1849 Dairy supplier Dairy_supplier Retail.Wholesale.Dairy_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1902 Disability equipment supplier Disability_equipment_supplier Retail.Wholesale.Disability_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1910 Disposable tableware supplier Disposable_tableware_supplier Retail.Wholesale.Disposable_tableware_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1941 Door supplier Door_supplier Retail.Wholesale.Door_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1942 Drafting equipment supplier Drafting_equipment_supplier Retail.Wholesale.Drafting_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1947 Drilling equipment supplier Drilling_equipment_supplier Retail.Wholesale.Drilling_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1949 Drinking water supplier Drinking_water_supplier Retail.Wholesale.Drinking_water_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1964 Dry ice supplier Dry_ice_supplier Retail.Wholesale.Dry_ice_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1978 Dynamometer supplier Dynamometer_supplier Retail.Wholesale.Dynamometer_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2013 Electronic parts supplier Electronic_parts_supplier Retail.Wholesale.Electronic_parts_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2014 Electronics accessories wholesaler Electronics_accessories_wholesaler Retail.Wholesale.Electronics_accessories_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2021 Electronics wholesaler Electronics_wholesaler Retail.Wholesale.Electronics_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2046 Energy supplier Energy_supplier Retail.Wholesale.Energy_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2051 Envelope supplier Envelope_supplier Retail.Wholesale.Envelope_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2095 Factory equipment supplier Factory_equipment_supplier Retail.Wholesale.Factory_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2104 Farm equipment supplier Farm_equipment_supplier Retail.Wholesale.Farm_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2111 Fastener supplier Fastener_supplier Retail.Wholesale.Fastener_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2130 Fertilizer supplier Fertilizer_supplier Retail.Wholesale.Fertilizer_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2132 Fiber optic products supplier Fiber_optic_products_supplier Retail.Wholesale.Fiber_optic_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2134 Fiberglass supplier Fiberglass_supplier Retail.Wholesale.Fiberglass_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2145 Finishing materials supplier Finishing_materials_supplier Retail.Wholesale.Finishing_materials_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2146 Fire alarm supplier Fire_alarm_supplier Retail.Wholesale.Fire_alarm_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2147 Fire department equipment supplier Fire_department_equipment_supplier Retail.Wholesale.Fire_department_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2150 Fire protection equipment supplier Fire_protection_equipment_supplier Retail.Wholesale.Fire_protection_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2152 Fire protection system supplier Fire_protection_system_supplier Retail.Wholesale.Fire_protection_system_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2156 Firewood supplier Firewood_supplier Retail.Wholesale.Firewood_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2158 Fireworks supplier Fireworks_supplier Retail.Wholesale.Fireworks_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2173 Fitness equipment wholesaler Fitness_equipment_wholesaler Retail.Wholesale.Fitness_equipment_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2174 Fitted furniture supplier Fitted_furniture_supplier Retail.Wholesale.Fitted_furniture_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2176 Flavours fragrances and aroma supplier Flavours_fragrances_and_aroma_supplier Retail.Wholesale.Flavours_fragrances_and_aroma_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2189 FMCG goods wholesaler FMCG_goods_wholesaler Retail.Wholesale.FMCG_goods_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2192 Foam rubber supplier Foam_rubber_supplier Retail.Wholesale.Foam_rubber_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2199 Food machinery supplier Food_machinery_supplier Retail.Wholesale.Food_machinery_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2203 Food products supplier Food_products_supplier Retail.Wholesale.Food_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2238 Fruit and vegetable wholesaler Fruit_and_vegetable_wholesaler Retail.Wholesale.Fruit_and_vegetable_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2239 Fruit wholesaler Fruit_wholesaler Retail.Wholesale.Fruit_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2240 Fruits wholesaler Fruits_wholesaler Retail.Wholesale.Fruits_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2250 Furnace parts supplier Furnace_parts_supplier Retail.Wholesale.Furnace_parts_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2255 Furniture accessories supplier Furniture_accessories_supplier Retail.Wholesale.Furniture_accessories_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2261 Furniture wholesaler Furniture_wholesaler Retail.Wholesale.Furniture_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2270 Garden building supplier Garden_building_supplier Retail.Wholesale.Garden_building_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2273 Garden machinery supplier Garden_machinery_supplier Retail.Wholesale.Garden_machinery_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2274 Gas cylinders supplier Gas_cylinders_supplier Retail.Wholesale.Gas_cylinders_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2275 Gas logs supplier Gas_logs_supplier Retail.Wholesale.Gas_logs_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2298 Glass block supplier Glass_block_supplier Retail.Wholesale.Glass_block_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2307 Glassware wholesaler Glassware_wholesaler Retail.Wholesale.Glassware_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2328 GPS supplier GPS_supplier Retail.Wholesale.GPS_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2332 Granite supplier Granite_supplier Retail.Wholesale.Granite_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2336 Green energy supplier Green_energy_supplier Retail.Wholesale.Green_energy_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2360 Gypsum product supplier Gypsum_product_supplier Retail.Wholesale.Gypsum_product_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2363 Hair extensions supplier Hair_extensions_supplier Retail.Wholesale.Hair_extensions_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2376 Handicrafts wholesaler Handicrafts_wholesaler Retail.Wholesale.Handicrafts_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2387 Hay supplier Hay_supplier Retail.Wholesale.Hay_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2401 Heating equipment supplier Heating_equipment_supplier Retail.Wholesale.Heating_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2402 Heating oil supplier Heating_oil_supplier Retail.Wholesale.Heating_oil_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2405 Helium gas supplier Helium_gas_supplier Retail.Wholesale.Helium_gas_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2464 Hose supplier Hose_supplier Retail.Wholesale.Hose_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2473 Hot water system supplier Hot_water_system_supplier Retail.Wholesale.Hot_water_system_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2478 Household chemicals supplier Household_chemicals_supplier Retail.Wholesale.Household_chemicals_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2479 Household goods wholesaler Household_goods_wholesaler Retail.Wholesale.Household_goods_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2487 Hub cap supplier Hub_cap_supplier Retail.Wholesale.Hub_cap_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2499 Hydraulic equipment supplier Hydraulic_equipment_supplier Retail.Wholesale.Hydraulic_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2502 Hydroponics equipment supplier Hydroponics_equipment_supplier Retail.Wholesale.Hydroponics_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2503 Hygiene articles wholesaler Hygiene_articles_wholesaler Retail.Wholesale.Hygiene_articles_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2518 Incense supplier Incense_supplier Retail.Wholesale.Incense_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2531 Industrial chemicals wholesaler Industrial_chemicals_wholesaler Retail.Wholesale.Industrial_chemicals_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2534 Industrial equipment supplier Industrial_equipment_supplier Retail.Wholesale.Industrial_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2535 Industrial gas supplier Industrial_gas_supplier Retail.Wholesale.Industrial_gas_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2538 Industrial vacuum equipment supplier Industrial_vacuum_equipment_supplier Retail.Wholesale.Industrial_vacuum_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2563 Irrigation equipment supplier Irrigation_equipment_supplier Retail.Wholesale.Irrigation_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2566 Janitorial equipment supplier Janitorial_equipment_supplier Retail.Wholesale.Janitorial_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2588 Jewelry equipment supplier Jewelry_equipment_supplier Retail.Wholesale.Jewelry_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2609 Kerosene supplier Kerosene_supplier Retail.Wholesale.Kerosene_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2630 Ladder supplier Ladder_supplier Retail.Wholesale.Ladder_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2632 Laminating equipment supplier Laminating_equipment_supplier Retail.Wholesale.Laminating_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2634 Lamp shade supplier Lamp_shade_supplier Retail.Wholesale.Lamp_shade_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2645 Laser equipment supplier Laser_equipment_supplier Retail.Wholesale.Laser_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2657 Lawn irrigation equipment supplier Lawn_irrigation_equipment_supplier Retail.Wholesale.Lawn_irrigation_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2672 Leather goods supplier Leather_goods_supplier Retail.Wholesale.Leather_goods_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2673 Leather goods wholesaler Leather_goods_wholesaler Retail.Wholesale.Leather_goods_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2674 Leather wholesaler Leather_wholesaler Retail.Wholesale.Leather_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2680 License plate frames supplier License_plate_frames_supplier Retail.Wholesale.License_plate_frames_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2683 Light bulb supplier Light_bulb_supplier Retail.Wholesale.Light_bulb_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2688 Lighting products wholesaler Lighting_products_wholesaler Retail.Wholesale.Lighting_products_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2694 Lingerie wholesaler Lingerie_wholesaler Retail.Wholesale.Lingerie_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2711 Locks supplier Locks_supplier Retail.Wholesale.Locks_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2723 Luggage wholesaler Luggage_wholesaler Retail.Wholesale.Luggage_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2731 Machine knife supplier Machine_knife_supplier Retail.Wholesale.Machine_knife_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2744 Mailbox supplier Mailbox_supplier Retail.Wholesale.Mailbox_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2745 Mailing machine supplier Mailing_machine_supplier Retail.Wholesale.Mailing_machine_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2821 Metal detecting equipment supplier Metal_detecting_equipment_supplier Retail.Wholesale.Metal_detecting_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2826 Metal industry suppliers Metal_industry_suppliers Retail.Wholesale.Metal_industry_suppliers 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2827 Metal machinery supplier Metal_machinery_supplier Retail.Wholesale.Metal_machinery_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2855 Mineral water wholesaler Mineral_water_wholesaler Retail.Wholesale.Mineral_water_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2920 Mulch supplier Mulch_supplier Retail.Wholesale.Mulch_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2950 Natural stone supplier Natural_stone_supplier Retail.Wholesale.Natural_stone_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2951 Natural stone wholesaler Natural_stone_wholesaler Retail.Wholesale.Natural_stone_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2974 Novelties wholesaler Novelties_wholesaler Retail.Wholesale.Novelties_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3002 Office equipment supplier Office_equipment_supplier Retail.Wholesale.Office_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3007 Office supply wholesaler Office_supply_wholesaler Retail.Wholesale.Office_supply_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3009 Oil field equipment supplier Oil_field_equipment_supplier Retail.Wholesale.Oil_field_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3022 Optical wholesaler Optical_wholesaler Retail.Wholesale.Optical_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3051 Oxygen equipment supplier Oxygen_equipment_supplier Retail.Wholesale.Oxygen_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3052 Oyster supplier Oyster_supplier Retail.Wholesale.Oyster_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3066 Pallet supplier Pallet_supplier Retail.Wholesale.Pallet_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3068 Paper bag supplier Paper_bag_supplier Retail.Wholesale.Paper_bag_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3070 Paper shredding machine supplier Paper_shredding_machine_supplier Retail.Wholesale.Paper_shredding_machine_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3091 Patio enclosure supplier Patio_enclosure_supplier Retail.Wholesale.Patio_enclosure_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3092 Paving materials supplier Paving_materials_supplier Retail.Wholesale.Paving_materials_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3159 Piñatas supplier Pi_atas_supplier Retail.Wholesale.Pi_atas_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3160 Pinball machine supplier Pinball_machine_supplier Retail.Wholesale.Pinball_machine_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3162 Pipe supplier Pipe_supplier Retail.Wholesale.Pipe_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3168 Plastic bag supplier Plastic_bag_supplier Retail.Wholesale.Plastic_bag_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3169 Plastic bags wholesaler Plastic_bags_wholesaler Retail.Wholesale.Plastic_bags_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3170 Plastic products supplier Plastic_products_supplier Retail.Wholesale.Plastic_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3174 Plastic products wholesaler Plastic_products_wholesaler Retail.Wholesale.Plastic_products_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3175 Playground equipment supplier Playground_equipment_supplier Retail.Wholesale.Playground_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3178 Plywood supplier Plywood_supplier Retail.Wholesale.Plywood_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3179 Pneumatic tools supplier Pneumatic_tools_supplier Retail.Wholesale.Pneumatic_tools_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3185 Polymer supplier Polymer_supplier Retail.Wholesale.Polymer_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3188 Polythene and plastic sheeting supplier Polythene_and_plastic_sheeting_supplier Retail.Wholesale.Polythene_and_plastic_sheeting_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3189 Pond fish supplier Pond_fish_supplier Retail.Wholesale.Pond_fish_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3201 Portable toilet supplier Portable_toilet_supplier Retail.Wholesale.Portable_toilet_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3202 POS terminal supplier POS_terminal_supplier Retail.Wholesale.POS_terminal_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3210 Power plant equipment supplier Power_plant_equipment_supplier Retail.Wholesale.Power_plant_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3284 PVC windows supplier PVC_windows_supplier Retail.Wholesale.PVC_windows_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3299 Railroad equipment supplier Railroad_equipment_supplier Retail.Wholesale.Railroad_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3300 Railroad ties supplier Railroad_ties_supplier Retail.Wholesale.Railroad_ties_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3302 Rainwater tank supplier Rainwater_tank_supplier Retail.Wholesale.Rainwater_tank_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3306 Ready mix concrete supplier Ready_mix_concrete_supplier Retail.Wholesale.Ready_mix_concrete_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3351 Retaining wall supplier Retaining_wall_supplier Retail.Wholesale.Retaining_wall_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3359 Rice wholesaler Rice_wholesaler Retail.Wholesale.Rice_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3369 Rolled metal products supplier Rolled_metal_products_supplier Retail.Wholesale.Rolled_metal_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3376 Rubber products supplier Rubber_products_supplier Retail.Wholesale.Rubber_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3396 Safety equipment supplier Safety_equipment_supplier Retail.Wholesale.Safety_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3404 Sand & gravel supplier Sand_gravel_supplier Retail.Wholesale.Sand_gravel_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3422 Scale supplier Scale_supplier Retail.Wholesale.Scale_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3430 Scientific equipment supplier Scientific_equipment_supplier Retail.Wholesale.Scientific_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3438 Screw supplier Screw_supplier Retail.Wholesale.Screw_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3446 Seafood wholesaler Seafood_wholesaler Retail.Wholesale.Seafood_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3454 Security system supplier Security_system_supplier Retail.Wholesale.Security_system_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3455 Seed supplier Seed_supplier Retail.Wholesale.Seed_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3459 Semi conductor supplier Semi_conductor_supplier Retail.Wholesale.Semi_conductor_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3477 Sheepskin and wool products supplier Sheepskin_and_wool_products_supplier Retail.Wholesale.Sheepskin_and_wool_products_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3489 Footwear wholesaler Footwear_wholesaler Retail.Wholesale.Footwear_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3549 Sod supplier Sod_supplier Retail.Wholesale.Sod_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3554 Solar energy equipment supplier Solar_energy_equipment_supplier Retail.Wholesale.Solar_energy_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3555 Solar hot water system supplier Solar_hot_water_system_supplier Retail.Wholesale.Solar_hot_water_system_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3584 Spice wholesaler Spice_wholesaler Retail.Wholesale.Spice_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3587 Sports accessories wholesaler Sports_accessories_wholesaler Retail.Wholesale.Sports_accessories_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3599 Spring supplier Spring_supplier Retail.Wholesale.Spring_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3606 Stage lighting equipment supplier Stage_lighting_equipment_supplier Retail.Wholesale.Stage_lighting_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3621 Stationery wholesaler Stationery_wholesaler Retail.Wholesale.Stationery_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3634 Stone supplier Stone_supplier Retail.Wholesale.Stone_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3636 Store equipment supplier Store_equipment_supplier Retail.Wholesale.Store_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3637 Store fixture supplier Store_fixture_supplier Retail.Wholesale.Store_fixture_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3655 Surgical products wholesaler Surgical_products_wholesaler Retail.Wholesale.Surgical_products_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3704 Tea wholesaler Tea_wholesaler Retail.Wholesale.Tea_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3711 Telecommunications equipment supplier Telecommunications_equipment_supplier Retail.Wholesale.Telecommunications_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3728 Theatrical costume supplier Theatrical_costume_supplier Retail.Wholesale.Theatrical_costume_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3729 Thread supplier Thread_supplier Retail.Wholesale.Thread_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3730 Threads and yarns wholesaler Threads_and_yarns_wholesaler Retail.Wholesale.Threads_and_yarns_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3744 Tobacco supplier Tobacco_supplier Retail.Wholesale.Tobacco_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3750 Toner cartridge supplier Toner_cartridge_supplier Retail.Wholesale.Toner_cartridge_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3758 Tool wholesaler Tool_wholesaler Retail.Wholesale.Tool_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3759 Topsoil supplier Topsoil_supplier Retail.Wholesale.Topsoil_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3804 Truck parts supplier Truck_parts_supplier Retail.Wholesale.Truck_parts_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3807 Truck topper supplier Truck_topper_supplier Retail.Wholesale.Truck_topper_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3814 Turf supplier Turf_supplier Retail.Wholesale.Turf_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3819 Typewriter supplier Typewriter_supplier Retail.Wholesale.Typewriter_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3845 Used store fixture supplier Used_store_fixture_supplier Retail.Wholesale.Used_store_fixture_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3854 Vacuum cleaning system supplier Vacuum_cleaning_system_supplier Retail.Wholesale.Vacuum_cleaning_system_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3862 Vegetable wholesaler Vegetable_wholesaler Retail.Wholesale.Vegetable_wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3865 Vending machine supplier Vending_machine_supplier Retail.Wholesale.Vending_machine_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3876 Video conferencing equipment supplier Video_conferencing_equipment_supplier Retail.Wholesale.Video_conferencing_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3907 Water cooler supplier Water_cooler_supplier Retail.Wholesale.Water_cooler_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3908 Water filter supplier Water_filter_supplier Retail.Wholesale.Water_filter_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3910 Water pump supplier Water_pump_supplier Retail.Wholesale.Water_pump_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3912 Water softening equipment supplier Water_softening_equipment_supplier Retail.Wholesale.Water_softening_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3915 Water treatment supplier Water_treatment_supplier Retail.Wholesale.Water_treatment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3916 Water works equipment supplier Water_works_equipment_supplier Retail.Wholesale.Water_works_equipment_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3929 Wax supplier Wax_supplier Retail.Wholesale.Wax_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3948 Welding gas supplier Welding_gas_supplier Retail.Wholesale.Welding_gas_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3969 Wholesaler Wholesaler Retail.Wholesale.Wholesaler 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3970 Wholesaler household appliances Wholesaler_household_appliances Retail.Wholesale.Wholesaler_household_appliances 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3982 Window supplier Window_supplier Retail.Wholesale.Window_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3989 Wine wholesaler and importer Wine_wholesaler_and_importer Retail.Wholesale.Wine_wholesaler_and_importer 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3992 Wire and cable supplier Wire_and_cable_supplier Retail.Wholesale.Wire_and_cable_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3997 Wood and laminate flooring supplier Wood_and_laminate_flooring_supplier Retail.Wholesale.Wood_and_laminate_flooring_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4000 Wood frame supplier Wood_frame_supplier Retail.Wholesale.Wood_frame_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 4002 Wood supplier Wood_supplier Retail.Wholesale.Wood_supplier 3 4059 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1534 Butcher shop deli Butcher_shop_deli Retail.Grocery.Butcher_shop_deli 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1652 Chinese supermarket Chinese_supermarket Retail.Grocery.Chinese_supermarket 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1869 Delivery service Delivery_service Retail.Grocery.Delivery_service 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1876 Deli Deli Retail.Grocery.Deli 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1908 Discount supermarket Discount_supermarket Retail.Grocery.Discount_supermarket 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2186 Flower delivery Flower_delivery Retail.Grocery.Flower_delivery 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2340 Grocery delivery service Grocery_delivery_service Retail.Grocery.Grocery_delivery_service 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2345 Greengrocer Greengrocer Retail.Grocery.Greengrocer 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2851 Milk delivery service Milk_delivery_service Retail.Grocery.Milk_delivery_service 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2878 Modeling agency Modeling_agency Retail.Grocery.Modeling_agency 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2879 Modeling school Modeling_school Retail.Grocery.Modeling_school 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3163 Pizza delivery Pizza_delivery Retail.Grocery.Pizza_delivery 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3965 Wholesale grocer Wholesale_grocer Retail.Grocery.Wholesale_grocer 3 4058 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1330 Auto market Auto_market Retail.Markets.Auto_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1511 Building materials market Building_materials_market Retail.Markets.Building_materials_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1696 Clothes market Clothes_market Retail.Markets.Clothes_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2108 Farmers' market Farmers_market Retail.Markets.Farmers_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2179 Floating market Floating_market Retail.Markets.Floating_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2505 Hypermarket Hypermarket Retail.Markets.Hypermarket 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2966 Night market Night_market Retail.Markets.Night_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3775 Traditional market Traditional_market Retail.Markets.Traditional_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3861 Vegetable wholesale market Vegetable_wholesale_market Retail.Markets.Vegetable_wholesale_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3967 Wholesale market Wholesale_market Retail.Markets.Wholesale_market 3 4060 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1260 Apartment rental agency Apartment_rental_agency Retail.Rentals.Apartment_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1537 Cabin rental agency Cabin_rental_agency Retail.Rentals.Cabin_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1756 Condominium rental agency Condominium_rental_agency Retail.Rentals.Condominium_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1811 Crane rental agency Crane_rental_agency Retail.Rentals.Crane_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2065 Equipment rental agency Equipment_rental_agency Retail.Rentals.Equipment_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2081 Executive suite rental agency Executive_suite_rental_agency Retail.Rentals.Executive_suite_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2872 Mobile home rental agency Mobile_home_rental_agency Retail.Rentals.Mobile_home_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2899 Movie rental kiosk Movie_rental_kiosk Retail.Rentals.Movie_rental_kiosk 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3494 Short term apartment rental agency Short_term_apartment_rental_agency Retail.Rentals.Short_term_apartment_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3851 Vacation home rental agency Vacation_home_rental_agency Retail.Rentals.Vacation_home_rental_agency 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3878 Video game rental kiosk Video_game_rental_kiosk Retail.Rentals.Video_game_rental_kiosk 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 3883 Virtual office rental Virtual_office_rental Retail.Rentals.Virtual_office_rental 3 4061 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2055 Environmental consultant Environmental_consultant Professional_Services.Consulting.Environmental_consultant 3 4080 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2056 Environmental engineer Environmental_engineer Professional_Services.Engineering.Environmental_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2537 Industrial technical engineers association Industrial_technical_engineers_association Professional_Services.Engineering.Industrial_technical_engineers_association 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2541 Instrumentation engineer Instrumentation_engineer Professional_Services.Engineering.Instrumentation_engineer 3 4083 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2559 Invitation printing service Invitation_printing_service Professional_Services.Creative.Invitation_printing_service 3 4084 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2050 Entertainment agency Entertainment_agency Professional_Services.Agencies.Entertainment_agency 3 4085 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1033 Machine construction Machine_construction Home_Services.Contractors.Machine_construction 3 4086 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2656 Lawn equipment rental service Lawn_equipment_rental_service Home_Services.Landscaping.Lawn_equipment_rental_service 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2658 Lawn mower repair service Lawn_mower_repair_service Home_Services.Landscaping.Lawn_mower_repair_service 3 4091 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1051 Repair service Repair_service Home_Services.Repair.Repair_service 3 4092 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 1050 RV storage facility RV_storage_facility Home_Services.Moving.RV_storage_facility 3 4093 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2649 Laundry Laundry Home_Services.Personal.Laundry 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N 2650 Laundry service Laundry_service Home_Services.Personal.Laundry_service 3 4095 0 2026-01-30 19:41:05.709129 2026-01-30 19:41:05.709129 \N \. -- -- Data for Name: gbp_category_levels; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.gbp_category_levels (level, name, description) FROM stdin; 1 Sector Top-level industry grouping 2 Business Type Category of business within a sector 3 Google Category Fixed Google Business Profile categories \. -- -- Data for Name: jobs; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.jobs (job_id, status, url, webhook_url, webhook_secret, created_at, started_at, completed_at, reviews_count, reviews_data, scrape_time, error_message, metadata, total_reviews, scrape_logs, updated_at, review_topics, session_fingerprint, metrics_history, requester_client_id, requester_source, scrape_purpose, requester_metadata, batch_id, batch_index, job_type, scraper_version, scraper_variant, priority, callback_url, callback_status, callback_sent_at, callback_attempts, result_summary, business_name, business_category, business_address, business_rating, gbp_category_id, gbp_category_path, category_resolution_method, business_category_source) FROM stdin; 21353ceb-2835-41a5-90f4-8609c60051a4 completed https://www.google.com/maps/search/?api=1&query=%22nikki%207%20palmas%22%20las%20palmas&hl=en \N \N 2026-01-31 02:54:28.050328 2026-01-31 02:57:33.623091 2026-01-31 02:57:33.839825 693 [{"text": "Hoy me atendió Sheila en Nikki de 7 Palmas. Pregunté por su nombre porque la verdad me encantó cómo me atendió: fue correcta, amable y transmite muy buena armonía. No suelo dejar reseñas, pero quiero agradecerlo, porque en pocos sitios ya se recibe un servicio tan bueno. Da gusto encontrar a alguien que disfruta de su trabajo. ¡Gracias!", "author": "Lucia Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB", "timestamp": "2 months ago"}, {"text": "Día 11 de Diciembre en la mañana, me encuentro en el establecimiento para la compra de un artículo. Y fui testigo directo de una situación en la que la encargada (rubia, mayor), respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz. La contestación fue innecesaria, intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía. Ver éste tipo de situaciones dónde un trabajador, además joven, tímido, es tratado de tal manera, es muy triste. Las personas vamos a trabajar para ganarnos la vida, no para soportar el mal trato verbal de nadie. Da que pensar qué otras situaciones similares puede estar soportando él como los otros trabajadores.\\nY por supuesto el mal cuerpo que se le queda al cliente como en mi caso al presenciar esté tipo de situación, vergonzoso. Y por supuesto, no compré nada.", "author": "Borja Jerez lopez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB", "timestamp": "a month ago"}, {"text": "Pasé por Nikki buscando un juguete para mi hija y salí encantada. La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija. Muy maja y con un trato de lujo, todo súper fácil. Así da gusto, la verdad.", "author": "Guaci Calderin Santana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB", "timestamp": "a month ago"}, {"text": "Mala atención y trato por parte de la señora mayor rubia con ojos azules. Mejor ni le hubiese preguntado, poniendo malas caras y contestaciones pasivo-agresivas. Esto sucedió ayer 03/12 por la tarde. Porque yo sí tengo educación, que si no… la que se hubiera armado en medio de la tienda. Contraten a gente con modales y saber estar.", "author": "Sam Ortega", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB", "timestamp": "a month ago"}, {"text": "Como clienta del establecimiento, quiero dejar constancia de una situación que presencié durante mi visita y que me resultó muy incómoda y desagradable.\\nUna de las encargadas del local, la cuál no quiso facilitarme su nombre, pero le dicen \\"Maru\\", es rubia, al parecer es la encargada, se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario, dándole malas contestaciones delante de todos los clientes. La situación fue especialmente incómoda porque el trabajador, visiblemente cohibido por la jerarquía y por su juventud, se quedó callado sin posibilidad de responder.\\nConsidero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad, comportamiento vulgar e irrespetuoso no sólo para el trabajador también para los clientes, dónde proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado para los clientes y trabajadores.\\nY por supuesto presentaré mi reclamación a través de consumo.\\nNingún trabajador tiene que aguantar éste tipo de trato, ni a este tipo de personas con algún trastorno. Y mucho menos los clientes, directamente ni compré.\\nSucedió 11/12/2025.\\nPenoso.", "author": "Amanda Lorenzo", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB", "timestamp": "a month ago"}, {"text": "Una chica nueva rubia atendió ayer a mi madre en el Nikki 7 palmas, se lo agradezco por el hecho de que mi madre es una persona mayor y tiene ciertas dificultades, tuvo paciencia y la ayudó en lo todo posible, se lo agradezco.", "author": "Airam Hernández", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB", "timestamp": "a month ago"}, {"text": "Una de las mejores jugueterias de Canarias donde podrás encontrar de casi todo durante todo el año. Siendo tantas tiendas consiguen tener unos precios de lo mejorcito de toda Canarias. Encima te pueden informar de si algún artículo se encuentra en otra tienda. La atención es muy buena. En campaña de reyes no empaquetan", "author": "javiervazquezsalinas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB", "timestamp": "6 years ago"}, {"text": "Hoy por la tarde día 13/12/2025 fui a Nikki de 7 palmas y salgo descontento por la atención de una trabajadora. No volveré más a este Nikki", "author": "Pedro", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB", "timestamp": "a month ago"}, {"text": "Para mi gusto la mejor tienda de juguetes de Canarias. Es una pena que con el tiempo se esté quedando algo justo de mercancía. Después de navidades suelen tener muy buenas ofertas. Tienen una enorme variedad de juegos de mesa y general, la atención al cliente es buena", "author": "Borja Cámara Millares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE", "timestamp": "6 years ago"}, {"text": "Pésima atención al cliente,yo creo q el requisito indispensable ara trabajar en nikkie es ser borde", "author": "Angie Medina", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB", "timestamp": "2 months ago"}, {"text": "Buenos días, por decir algo…\\nLa verdad que me parece vergonzoso que en las fechas que estamos solo haya 2 personas trabajando en tienda.\\nPero no solo eso, una de las personas está en caja perfecto y la otra pues en tienda imagino que para colocar y atender al cliente… pues resulta que estamos mi mujer y yo esperando para ser atendidos después que atendiera a la persona con la que estaba, y para nuestra sorpresa suena el teléfono y la dependienta muy tranquila decide responder y dar prioridad a la llamada, antes que al cliente que tiene en tienda.", "author": "Jorge Sánchez Batista", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE", "timestamp": "a year ago"}, {"text": "Un gran rato esperando en cola y los demás empleados hablando y riendo mientras que la de Caja esta estresada con una clienta...", "author": "Alejandro RP", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB", "timestamp": "6 months ago"}, {"text": "La experiencia no ha sido nada buena, bastante desilusionada.\\nLo único que tengo que destacar es a la empleada Mar por ella mis 2 estrellas, quien dejó parte de su tiempo para averiguarme si lo que quería lo tenían o no en tienda y hacerme varias averiguaciones. (destacar un poco de incomodidad dado que me repitió en varias ocasiones que esto me lo hacía como favor porque no estaban para eso.... un poco raro cuando te dedicas a estar cara al público) pero entiendo que no es su culpa, si no procedimientos de su empresa.\\nEstoy en Tenerife y quería hacer un regalo a mi familia en Telde de varios juguetes y ha sido imposible.\\nNo han dado facilidades, siendo una compra de más de 200€ (que la cantidad no importa, lo importante entiendo es dar facilidad, buen servicio y tener al cliente contento para que te recomiende o inclusive que vuelva), pero no ....\\n1º no te dan facilidad para enviar al domicilio en cuestión. A pesar de tener los artículos en tienda, tuve que darme de alta en la página web de nikkie para poder hacer el pedido (bueno, se hace, no pasa nada) sorpresa los códigos que me indicaron no aparecían en su página, si buscas por artículos tampoco aparecen, un desastre por lo que hacer el pedido por la web como me indicaron tampoco era viable.\\n2º busco YO la solución, no pasa nada pagamos un poco más y llamo a MRW para que lo recogieran y lo enviaran al destino, MRW te pide peso y medidas para proceder a recoger los bultos. La respuesta de nikkie: es que solo podía darme las medidas porque no tiene el peso y además el pago tenía que ser presencial, es decir, el empleado de MRW tenía que pagar mi pedido porque no era posible pagar con tarjeta, imposible que no era factible solo de forma inmediata en tienda, le intento explicar que es lo mismo porque voy a pagar con tarjeta físicamente pero que en este caso tiene ella que marcar una serie de dígitos en el datafono, poner el importe a cobrar y la caducidad de la tarjeta y pago hecho, además por adelantado... respuesta IMPOSIBLE.\\nPor lo que decidí desistir del pedido y no les importó absolutamente nada.\\n\\nEsta es la 2ª vez que no podemos realizar una compra desde tenerife y la 1ª además muy importante porque era UNA CAMPAÑA PARA NIÑOS DESFAVORECIDOS. Una compra de mucho más que 200€ y para una buena causa, entiendo de esto que son muy afortunados que cumplen sus objetivos económicos y no les importa perder este tipo de negocios y posibles clientes, cabe destacar lo bien o mal que hace el boca a boca para un comercio.\\n\\nEn resumen no ha sido para nada un buen atendimiento en ningun aspecto .....", "author": "AINOHA ROMOJARO", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE", "timestamp": "2 years ago"}, {"text": "Voy a 7 Palmas y el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro. Por otro lado , voy al de vecindario...y Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!. Mis felicitaciones al departamento de recursos humanos ,por el personal que tienen ...y lo mejor de todo... Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo. Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio. Una juguetería bien completa!!! Me encantan.", "author": "Lili Sv", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE", "timestamp": "3 years ago"}, {"text": "Soy clienta habitual de Nikki pero está tienda de Nikki de 7 palmas no la piso más ,mi pareja ya ha puesto reseña y yo pongo otra por la mala atención .Queríamos llevarnos 2 carritos y parecen que nos iban a regalar los 219 euros que costaban pero bueno se nota que les da igual perder la venta ,suerte pésima la atención", "author": "susana quevedo gonzales", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE", "timestamp": "3 years ago"}, {"text": "Muy buena juguetería, con precios razonables. Dispone de muchos juguetes pero debería ampliar más su gama. La tarjeta de ahorro debería poder utilizarse mostrando solo el DNI si se olvida en casa, para obtener puntos de descuento.", "author": "Isabel Tomé H", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE", "timestamp": "7 years ago"}, {"text": "Algo a destacar de esta jugeteria, que me resulta tremendamente agradable es la amabilidad de sus empleados. Aparte de una gran variedad de juguetes para todas las edades me gustaría que esta jugeteria de toda la vida aguantara el embate de la venta por Internet, no hay nada mejor que recorrer el pasillo de una jugeteria y elegir.", "author": "Ismael Nef Martínez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB", "timestamp": "6 years ago"}, {"text": "Los precios y la variedad son de diez. El trato del personal nos gustó muchísimo. Incluso nos recomendaron un juguete mas barato al que habíamos elegido ya que se adaptaba mejor a las necesidades de nuestro hijp. En resumen, recomendaría éste lugar a todo el mundo.", "author": "Jonathan Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE", "timestamp": "7 years ago"}, {"text": "Las dependientes del turno de mañana en Siete Palmas, súper amable y un juguete que me hacía falta que no encontramos llamaron sobre la marcha a otro Nikki y me lo reservaron. En Príncipe Alvear no tan bien no les daría ni un uno de nota. Muchas gracias", "author": "Carlos Alberto Benitez Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB", "timestamp": "Edited 5 years ago"}, {"text": "Está bien, gran variedad de juguetes a precios algo inferior que otras tiendas más conocidas. No obstante, no todas las tiendas tienen la misma variedad siendo la del CC El mirador, la que menos variedad tiene, su cantidad y variedad se disimula extendiendo los juguetes los máximo posible.", "author": "Edertano --", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE", "timestamp": "5 years ago"}, {"text": "La jugueteria de toda la vida.. Pero hace falta personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos.\\nLe doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo, pero el persona deja mucho que desear.", "author": "Judith Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE", "timestamp": "5 years ago"}, {"text": "Como juguetería lo normal calidad/precio..\\nPero hoy 27/12/18 sufrí una gran decepción sobre la 'gente' q tiene al frente del establecimiento del c.c.7 palmas(gran canaria)..\\nFui a devolver un juguete, ya q para mi no se escuchaba, según el chico (supuesto encargado o responsable) q llamaron para q me atendiera.. Los juguetes hom;ologados para la audición de los bebes se oyen así de bajo,.. Como estoy en todo mi derecho ya q lleve el envoltorio original, el juguete perfecto y su ticket de compras.. digo bueno a mi no me convence q un bebe de 8 meses se tenga q poner el juguete en la oreja para poder escucharlo..😯 a lo q me responde... Si si, se lo cambio ò le hago devolución . Pero vaya al chino a comprar los juguetes, así no están homologados pa q los oiga bien..\\nPerdona??? Para no entrar en discusión, le dije, hágame la devolución,.. lo q me faltaba q un tipo me venga a decir donde y que le compro a mi bebe..\\nLo q esta claro q personajes como estos no deberían trabajar cara al público, ni si quiera tienes capacidad para trabajar en un chino de eso q tanto desprecias y mucho menos en un lugar donde van niños... esos no son los valores, ni el tipo de personas q quiero q tengan contacto con mis hijos...\\nClienta de más de 12 años, q hoy será el último día q pisé vuestros establecimientos..", "author": "Davinia Suarez Gonzalez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE", "timestamp": "7 years ago"}, {"text": "Un sitio perfecto para pedir pedirle a los reyes magos....bastante surtidos de jugetes ...puzles, muñecas, todoo, hace 27años que pedía las cosas a los reyes ay para mí hija. Lo recomiendo un 10.", "author": "Naira Afonso Infantes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE", "timestamp": "3 years ago"}, {"text": "Fantástica juguetería, una de las preferidas de mis hijos, variedad, personal superamable, siempre me han buscado los productos en la medida de sus posibilidades (mandando a buscarlos a otros Nikkis) y en general para mí donde más económico he encontrado las cosas siempre. Nos encanta.", "author": "beatriz deniz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB", "timestamp": "7 years ago"}, {"text": "Aunque existe a veces diferencia entre sus tiendas en cuanto a sus precios es mi lugar favorito para comprar juguetes. A los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes.", "author": "javipower chuck", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB", "timestamp": "7 years ago"}, {"text": "Me lo paso mejor q mis hijos en esta tienda es divertida amigable y tiene muy buenos juguetes a muy buen precio la recomiendo para los reyes cumples y demás.", "author": "Hacomar Caraballo Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB", "timestamp": "6 years ago"}, {"text": "Gran surtido. Los precios es otro debate.\\nBuenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "author": "rosa delia martel rodríguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB", "timestamp": "4 years ago"}, {"text": "Excelente. Tiene todo tipo de juguetes y otros productos a un precio asequible. Buen trato.", "author": "Lazaro Crespo Arzola", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB", "timestamp": "5 years ago"}, {"text": "Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima. Un error. Actualicen el sistema, como por ejemplo el Decathlon. Solo es necesario decir el DNI", "author": "Marcos Castellano Navarro", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE", "timestamp": "7 years ago"}, {"text": "No compren la mascara de tiranosaurios rex chonb n roar masque electrónique tiranosaurios rex dino máscaro de tiranosaurios rex", "author": "LUCAS CORRAL GONZALEZ", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNiNVBYcHhRRRAB", "timestamp": "a year ago"}, {"text": "Todo muy bien. Los mini precios están muy baratos. Tanto que me podría comprar la Nikki Entera.", "author": "Derek Alemán Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB", "timestamp": "3 years ago"}, {"text": "Buen servicio, sus precios un poco elevados pero he de decir q tiene los mejores juguetes de mi infancia, de cuando yo era chico, que recuerdos.", "author": "Jesus alberto Medina trujillano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB", "timestamp": "6 years ago"}, {"text": "Como siempre todo en su sitio, los precios bien claros y mucha variedad, yo diría que casi todo lo que existe está allí.", "author": "Miguel Brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE", "timestamp": "2 years ago"}, {"text": "Espectacular juguetería, para cualquier peque es un paraíso y las dependientas son super amables!!", "author": "Gio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB", "timestamp": "2 years ago"}, {"text": "LAS DUEÑAS unas ANTIPATICAS..... Parece que el favor te lo están haciendo ellas a ti busquen dependientas y váyanse a Sus casas los mismos juguetes en mgi a mitad de precio", "author": "Amhu.", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Bardzo dobrze zaopatrzony sklep z zabawkami.", "author": "Agnieszka", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYLXNqYnpRRRAB", "timestamp": "a year ago"}, {"text": "Algunos juguetes no sirven están rotos o faltan piezas te persiguen por la tienda como en los chinos por eso la puntuación y que los trabajadores hablan de asuntos personales en la tienda como si fuera la calle por lo demás la tienda ordenada y muchas cosas con oferta", "author": "Brenda", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE", "timestamp": "7 years ago"}, {"text": "Quizá, de todas las jugueterías de esta franquicia, en la que ví más cantidad y variedad. Tal vez esta información le sea útil a algún usuario. Saludos.", "author": "Mucho Mushasho", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB", "timestamp": "7 years ago"}, {"text": "La mejor cadena de jugueterías de Canarias donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir. Además de ello, muy buenos precios.", "author": "Alvaro Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE", "timestamp": "5 years ago"}, {"text": "Deberían digitalizar las tarjetas de socio para poder acumular puntos enseñando el DNI si hubiera olvido de tarjeta física de socio", "author": "Juan Almeida", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpNHZpS19RRRAB", "timestamp": "Edited 5 years ago"}, {"text": "Juguetería muy completa. Personal atiende bien. No mucho más que destacar.", "author": "Enrique Santamaría", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB", "timestamp": "6 years ago"}, {"text": "Gran surtido de juguetes a precios económicos. Facilidades de reserva y descuentos.", "author": "MARU QUESADA DOMINGUEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB", "timestamp": "4 years ago"}, {"text": "Siempre con muy buenas ofertas y una atención excepcional.", "author": "JUAN DAVID HIDALGO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCejVYdUx3EAE", "timestamp": "2 years ago"}, {"text": "'Cuado nino los guvuete eran carto madera. Oi esa precio side", "author": "Alfonso Collado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVczctd2FREAE", "timestamp": "6 years ago"}, {"text": "Aunque alguna vez lo he conseguido más económico en otro lado. Siempre encuentro aquí lo que ando buscando y no lo hay en otro lado.", "author": "Samuel Romero Arbelo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE", "timestamp": "7 years ago"}, {"text": "Muy atentos y eficientes. Puedes conseguir cualquier juguete, porque siempre están actualizados.", "author": "Antonio Jesús Peña Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Buena atención y ayudaron mucho para dar con el regalo que buscaba", "author": "Octavio Arencibia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB", "timestamp": "4 years ago"}, {"text": "Buenas promociones y muchas variedad. Una atención muy buena.", "author": "Domingo Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE", "timestamp": "5 years ago"}, {"text": "Puedes conseguir gran cantidad de artículos infantiles a un precio muy razonable....", "author": "Guacy Sos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNcVp5YUJnEAE", "timestamp": "6 years ago"}, {"text": "Juguetería muy completa muy buenos precios, todos los años compro los reyes ya que es la juguetería más completa", "author": "Juan Francisco Sánchez Ramos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB", "timestamp": "6 years ago"}, {"text": "Juguetera grande muy conocida. Adaptación para minusvalídos. Buenos precios.", "author": "Carmen Diepa", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRek9QWXlBRRAB", "timestamp": "9 years ago"}, {"text": "Buen trato y los juguetes siempre son más económicos que en otros lugares", "author": "Rebeca Brito Ramos", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJanN6RzRRRRAB", "timestamp": "7 years ago"}, {"text": "No le pongo más nota por el mal servicio al cliente que tiene\\nParece que estás pidiéndole dinero al personal", "author": "David Nuñez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwZ0xpODN3RRAB", "timestamp": "6 years ago"}, {"text": "Le encanta ha los niños. Pero precios caros", "author": "José Heriberto Ramos tejera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4ZzRibGFREAE", "timestamp": "5 years ago"}, {"text": "Muy buen sitio.con muchas variedades", "author": "Margarita Batista", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbWM3bGhRRRAB", "timestamp": "6 years ago"}, {"text": "Sensacional!!!\\nTiene muchos juguetes para niños y niñas de todas las edades!", "author": "Glayson Wagner Rodrigues", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHZy0tTWVnEAE", "timestamp": "4 years ago"}, {"text": "En Centro Comercial Siete Palmas, buenos accesos, muy céntrico y buen servicio.", "author": "Juan A. Montiel-Nelson", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZOU95dlN3EAE", "timestamp": "6 years ago"}, {"text": "La mayor variedad de juguetes de la isla aquí podrás encontrar los Pokémon los avengers etc", "author": "Agustín santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcC1yTmd3RRAB", "timestamp": "6 years ago"}, {"text": "El personal amable.Variedad de juguetes, precios normalitos.", "author": "Cecilia Glez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwZ09xWUJBEAE", "timestamp": "6 years ago"}, {"text": "Personal muy atento, les felicito, ganaron un cliente", "author": "Marian d", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwanBXOWpnRRAB", "timestamp": "6 years ago"}, {"text": "Conseguí lo q quería. Han subido un poco los precios", "author": "p", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyOEtuMkp3EAE", "timestamp": "3 years ago"}, {"text": "Muy bien", "author": "Loli Rodriguez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNzRUeEl3EAE", "timestamp": "a year ago"}, {"text": "Buenos precios y mucha variedad", "author": "Yaiza Soriano Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4bllMRDJnRRAB", "timestamp": "5 years ago"}, {"text": "Buscamos un regalo y las dependientas nos asesoraron muy bien", "author": "Yurena", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtejk3bjR3RRAB", "timestamp": "3 years ago"}, {"text": "Buenos precios, variedad productos y buena atención cliente", "author": "Juan Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvdU9PTTBnRRAB", "timestamp": "6 years ago"}, {"text": "Me encanta esta cadena y a mi hijo mas", "author": "Bernardo guagueros por el mundo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwbWFDOV9nRRAB", "timestamp": "6 years ago"}, {"text": "A las cajeras parece que le debes dinero. Me siento incómodo al entrar", "author": "JOSÉ", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzdVpiVjRnRRAB", "timestamp": "5 years ago"}, {"text": "Todo bien organizado, mi nieta lo pasó pipa", "author": "Pepe Reina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdFlxeVVnEAE", "timestamp": "5 years ago"}, {"text": "Tienda super completa donde encontrar todo tipo de juquetes", "author": "CAROLINA GARCIA SANTANA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNDhYU3dRRRAB", "timestamp": "6 years ago"}, {"text": "Variedad, buenos precios y atención", "author": "Jovita Falcón Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNaFpLVFFBEAE", "timestamp": "6 years ago"}, {"text": "El mejor sitio donde hacer tus compras para los peques de la casa", "author": "Jennifer Aleman Medina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtNjYzZUJnEAE", "timestamp": "3 years ago"}, {"text": "Buena atención y precios", "author": "Josué Betancor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoNmE3azBRRRAB", "timestamp": "2 years ago"}, {"text": "Gran surtido de juguetes y a buenos precios.", "author": "Cristina Mauricio Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzaXBMS3lnRRAB", "timestamp": "5 years ago"}, {"text": "Buena atención y encuentras todo", "author": "Maria Jesús Melián Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNTLTl6RzV3RRAB", "timestamp": "5 years ago"}, {"text": "Buen precio y tienen muchísima variedad", "author": "Luis Déniz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4a2JuOVZREAE", "timestamp": "5 years ago"}, {"text": "A los niños de mi pareja les encanta.", "author": "Jose Pozo Peligros", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2X0oyazVRRRAB", "timestamp": "4 years ago"}, {"text": "Si quieres comprar muchos juguetes, no tienen ni cestas...", "author": "marian d.", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcnRuMkl3EAE", "timestamp": "6 years ago"}, {"text": "Trato al cliente muy bueno", "author": "Juan Manuel Goya Luis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNVlfTWdnRRAB", "timestamp": "6 years ago"}, {"text": "Estupendo para encontrar todo tipo de juguetes", "author": "Belen Lopez Brito", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZek5tSHVRRRAB", "timestamp": "6 years ago"}, {"text": "Buena atención, ofertas", "author": "raquel perez gadea", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDNGR1YVNREAE", "timestamp": "5 years ago"}, {"text": "Una jugueteria en la que podras encontrar gran variedad de juguetes", "author": "Juan Ramirez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcE91ZXBRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Está muy bien . Le faltan cosillas", "author": "ERNESTO CORTIGUERA MARTIN", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJbnNHQzFRRRAB", "timestamp": "7 years ago"}, {"text": "Está bien", "author": "rosa ss", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoMmYzODFBRRAB", "timestamp": "2 years ago"}, {"text": "Los juguetes de toda la vida de la tienda de Canarias con precios increíblemente bajos", "author": "Jim Álvaro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaE5YTUVnEAE", "timestamp": "6 years ago"}, {"text": "De casi todo lo referente a juguetes que quieras.", "author": "Alicia Torres Martín", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCcThYM0tBEAE", "timestamp": "3 years ago"}, {"text": "Cada vez más caros sus productos", "author": "Abian Socorro Rodriguez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4bmVDX3RBRRAB", "timestamp": "5 years ago"}, {"text": "La juguetería de mi infancia es aora la de mis hijos", "author": "Edu Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcnJxbWpRRRAB", "timestamp": "7 years ago"}, {"text": "Buenos precios y calidad", "author": "Sara Rey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNveFlUMG13RRAB", "timestamp": "7 years ago"}, {"text": "Me encantan sus juguetes de todo tipo", "author": "Francisco M", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzNlp2YWhBRRAB", "timestamp": "5 years ago"}, {"text": "Magnífica juguetería. Personal muy agradable.", "author": "Rafael Vallespin Montero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJdUozaG5BRRAB", "timestamp": "7 years ago"}, {"text": "Muy caros los juguetes", "author": "Ines Santana", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2X0lTX1lnEAE", "timestamp": "4 years ago"}, {"text": "Muy entretenido y regalos guapísimo", "author": "Toni Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZbWViWTJBRRAB", "timestamp": "6 years ago"}, {"text": "Siempre podrás encontrar el juguete adecuado", "author": "Juan Toledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOUp6YkZREAE", "timestamp": "7 years ago"}, {"text": "Buena juegueteria, chicas amables", "author": "H Bueno", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4LV9DQUVnEAE", "timestamp": "2 years ago"}, {"text": "De todo muy amplia", "author": "Rosa Maria Hernandez Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2X0wyN3R3RRAB", "timestamp": "4 years ago"}, {"text": "Muchos juguetes y más baratos que en otras jugueterias", "author": "LAURA CASTELLANO CARRILLO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOGZxQ2JnEAE", "timestamp": "7 years ago"}, {"text": "Muy bien", "author": "Crastoby _____", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJaWI2cWhBRRAB", "timestamp": "7 years ago"}, {"text": "Muy buenos consejos", "author": "Yurena", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXcWZuODFBRRAB", "timestamp": "3 years ago"}, {"text": "Para l@s niñ@s es genial", "author": "Montse AlvarezMedina", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDaFBfczBBRRAB", "timestamp": "5 years ago"}, {"text": "Tiene de casi todo en juguetes", "author": "Isabel León", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNacHVMdWJnEAE", "timestamp": "2 years ago"}, {"text": "Personal muy atento", "author": "Mercedes Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzbWU2bEhnEAE", "timestamp": "5 years ago"}, {"text": "Excelente variedad de juegos y juguetes", "author": "francisco López (franlopez731)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5em9uTlFREAE", "timestamp": "4 years ago"}, {"text": "De toda la vida. Igual nada llamativa", "author": "CARMEN S.", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVZ2FDeXB3RRAB", "timestamp": "6 years ago"}, {"text": "Variedad y buen precio", "author": "Victor Tnk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMHJTQXdRRRAB", "timestamp": "Edited a year ago"}, {"text": "Me gusta suelo comprar", "author": "Maria Luisa Sanchez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvZ1pHdDNnRRAB", "timestamp": "6 years ago"}, {"text": "Buenos precios y disponibilidad de artículos", "author": "Aida Oval", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDNmQ2UXh3RRAB", "timestamp": "5 years ago"}, {"text": "Una tienda muy completa.", "author": "Ruyman Figueroa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlMFphZ1hBEAE", "timestamp": "3 years ago"}, {"text": "Personal ofrece gran ayuda", "author": "Valentín Acosta Matos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpck1LNmlBRRAB", "timestamp": "5 years ago"}, {"text": "Esta bien", "author": "Luis Miguel GonzálezMedina", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvbUtQLW9BRRAB", "timestamp": "6 years ago"}, {"text": "Se pueden modernisar un poco", "author": "Celeste Trujillo", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVd3ZyTV9nRRAB", "timestamp": "6 years ago"}, {"text": "Hay mucha variedad de juguetes", "author": "Tania Ferrera Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvbVpER0JREAE", "timestamp": "7 years ago"}, {"text": "Bastante caro", "author": "Diario Ciclista", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMjV6bklBEAE", "timestamp": "2 years ago"}, {"text": "Muy amables", "author": "Juan Oval Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5ck1PSU9nEAE", "timestamp": "Edited 4 years ago"}, {"text": "Hay de todo para los peques", "author": "David Ramos Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVamNPTVBBEAE", "timestamp": "6 years ago"}, {"text": "Buenos precios", "author": "Carmen M.c", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJaUpDYmVnEAE", "timestamp": "7 years ago"}, {"text": "Siempre bien...", "author": "Beatriz Olloquiegui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNa01QZXJRRRAB", "timestamp": "6 years ago"}, {"text": "Jugueteria con bastantes tiendas y variedad de juguetes.", "author": "Jacob Prada Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJbV91Ulp3EAE", "timestamp": "7 years ago"}, {"text": "Variedad de juguetes y muy lindos", "author": "Marisela Hernandez Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJdzdMSVN3EAE", "timestamp": "7 years ago"}, {"text": "Bastante variedad en juguetes", "author": "Azuleida Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwbV9mTmFBEAE", "timestamp": "6 years ago"}, {"text": "Calle mayor de triana", "author": "Oliver Garcia Jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvd19uMjJ3RRAB", "timestamp": "6 years ago"}, {"text": "Para los niños un mundo de ilusiones", "author": "Abian cruz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNteW9lSUFREAE", "timestamp": "4 years ago"}, {"text": "Un poco desfasados", "author": "Antonio Semidan Hernández Perera", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbUpMLWJBEAE", "timestamp": "6 years ago"}, {"text": "Precios algo desorbitados.", "author": "Fran", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxaktDMndnRRAB", "timestamp": "4 years ago"}, {"text": "Buen comercio", "author": "Javier Falcon Brito", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZdlpESG9nRRAB", "timestamp": "6 years ago"}, {"text": "De todo para los peques.", "author": "Fayna Maria Alfonso Rodriguez", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUM0enI0WRAB", "timestamp": "6 years ago"}, {"text": "Tienen de uso lo que buscas.", "author": "Marta Dominguez Deniz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5cHFURm93RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Ya esta anticuado", "author": "tony8tld", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNd3ZfaHZ3RRAB", "timestamp": "6 years ago"}, {"text": "Los mejores precios en juguetes.", "author": "Víctor M. Úbeda Tarajano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpeW95WElBEAE", "timestamp": "5 years ago"}, {"text": "Variedad y muchas ofertas", "author": "Tere diaz Melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwZ2JTZ2hRRRAB", "timestamp": "6 years ago"}, {"text": "Gran variedad de juguetes.", "author": "Jose Rodríguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXLVBQdFVBEAE", "timestamp": "3 years ago"}, {"text": "La mejor variedad en juguetes", "author": "Antonio Quintino Nuez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcVlfSFlREAE", "timestamp": "Edited 4 years ago"}, {"text": "Me encanta", "author": "Susana Zambrano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwNTk2WUlnEAE", "timestamp": "6 years ago"}, {"text": "Buena", "author": "Paqui Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJbHBTekhBEAE", "timestamp": "7 years ago"}, {"text": "Siempre encuentro lo que busco", "author": "Veronica Cruz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0anUyQkt3EAE", "timestamp": "6 years ago"}, {"text": "No me gusta", "author": "Encarnacion Jorge Machin", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTd2ZqMjRRRRAB", "timestamp": "5 years ago"}, {"text": "Variedad", "author": "Luis Hernández Rodríguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMnA2STFBRRAB", "timestamp": "5 years ago"}, {"text": "Juguetes", "author": "Miguel Pérez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvai1PajRRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Buenos precios", "author": "Anyelo Anyelo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDdHF5R0pnEAE", "timestamp": "Edited 5 years ago"}, {"text": "Las chicas son magníficas", "author": "nira peich", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcXFibWNREAE", "timestamp": "5 years ago"}, {"text": "Buena juguetería", "author": "Jorge AG", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvMXZQYmhBRRAB", "timestamp": "6 years ago"}, {"text": "Una buena jugueteria", "author": "Minerva Almeida Reyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtM0otZk93EAE", "timestamp": "4 years ago"}, {"text": "La mejor juguetería", "author": "manu Montesdeoca Viera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4ejRYY3l3RRAB", "timestamp": "5 years ago"}, {"text": "Juguetería", "author": "sergio hernández de león", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4al82NXNRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "isabel lopez artiles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmdE1uN213RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Ariadna Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwbWUzLUV3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Raul Toledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSdzlpVkd3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Vanessa Paleo Melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNScFlPb2dRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Adonay González", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCeGRfYU93EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Jose Luis", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtazV2NHdRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Julio Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNmVmdWFREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Garcia Brito", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtcmFhTzFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Jose Daniel Roque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtazllZk1REAE", "timestamp": "4 years ago"}, {"text": "", "author": "nieves alonso", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtZ2RtQjJ3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Alg Lara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMnVYalFREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Davinia Rodríguez Afonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdnAzTDlBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Julia VG", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdU0zNC13RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Azzay Rodram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2eFoycjlRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Antonio Santana Calero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMnRLZ3F3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNU5laVNBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Antonio Jurado Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMk5xU1JnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "socramxiii", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxdkxxVkd3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Yure", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxN2FlQ3hBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Campos", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcFp1YkZBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Teresa Goncalves", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLekotODVBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLeC1tUnVnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "María Eugenia Castiñeira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLcTVmWEJREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Ylenia Rivero Almeida", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dDVPUFpREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Saray Cepero Matos", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aF91UVNBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "JUAN ANTONIO HERNANDEZ", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5dU9UY3NBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "TheSarimari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5MEkta1N3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Salvador gonzález", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTeGF6dnlBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Nacor Domínguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTa3JuQ1hBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "vicente ramirez gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09md3NBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Carolina Oliveira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpdVBIOGZnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Maricarmen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpbVl1Y0N3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Luis Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpM095WlJnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Ángel Sánchez Barreto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDOXRLcjdnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "juana jesus garcía", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDOXFEX2tRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Maykel Valdes Perdomo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbE1yUzN3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Silvia Bello Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDdDlYbV93RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Jose Montero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMmRHdVlREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gustavo A. Machín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDdHEybjhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "jose mendez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMkt1SWdRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Kiliam Fierro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4eGJLcmhnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Fátima Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjeDdUSHJ3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Diego Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjMmIzT2R3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Elina Materan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjMXByUzF3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Crabafre", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjX01TQ1BBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "toño santles santles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjaU9TVGhnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Team Miguel Xd", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaTc3QmFBEAE", "timestamp": "Edited 5 years ago"}, {"text": "", "author": "Domingo Perera Garcia", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzMW9lRG13RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Matías Vázquez Rodríguez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzNkl2OVRnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Miriam Peñate Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzN1pYOWNnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "María Reyes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcXVPd3FnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "JUANA MARIA PULIDO CABRERA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzalAtY3NRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Aida Peña", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNeExDaEJBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Laura Martel Lacapria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNZ1B5dW9RRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Miguel Torres", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdDVueTdBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sara Cala", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdDhIYnd3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Juan Luis Rincon Garcia", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNbll2V2FREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Pedro Velasco Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNb2ZEUDNRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Gustavo Torres Dominguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwbmVDd2R3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "MAria Elena López Salvatella", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwaGV6RFB3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Agustina Martinez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwMnFINUtBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Chano Hb", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQweXJhN1pnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Maria Diepa Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwektyc3R3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "DOMINGA SH", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNU82NE5nEAE", "timestamp": "6 years ago"}, {"text": "", "author": "antonio franco", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwMTZHYTR3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Nayra Domínguez Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwemVLMFRREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Patricia Raquel Cardenes Arbelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMmJQUUNBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Dunia Roque", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwaEtQSzhBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Medina", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMk5qckx3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Brais López Rodríguez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwbUxycEJ3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "CINETELEMANIACOS", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwOE8zYW1BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "rosa solarez garcia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwMEx2T3hRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Yaiza Cardona", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMzhXUllBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Set Mrs", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdDhqLTlnRRAB", "timestamp": "6 years ago"}, {"text": "Variedad", "author": "Pedro Romero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbDdpSVRnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Nicol Montesdeoca", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdTZLMDNBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Carlos CG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVc2MzQ1BBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jose Manuel Arteaga", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVeW9ELWp3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Aarón Hernández Delgado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbUtLNkhnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Abel Galindo Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVaUllM2d3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Jay DeLosMuertos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVZ09fX1lBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "pablo andres morales gallego", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVbDVLNndnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Patricia Godoy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVdV9hNGxRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Aarón Medina", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVeV83REVREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Vicente Subiela", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMC1ENkZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "David Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVNWRlaS13RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Mandy Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVOGFQbS1BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Pere Domínguez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVN3RLVmNREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Angela Arias Marín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVeE5LUDV3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Alexis Nieves", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrZzV2VE9BEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Ana Alfonso Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNreGNmc2hBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "mari pino dominguez gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURFM2JlTDNRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Guaya M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ0dEpDQTlRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Cris MedSan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0eWVlaWNnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Ruth MQ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0eWRiaDBRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Francisco Javier Marrero Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0MU03anJ3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ramon Aires", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0MlBHYkh3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Ana Tejera", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0bU1iV0ZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Manuel artiles torres", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0NEphemRnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Isabel Mujica Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNC1lN25BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "familia perruna dog", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZX2FqbnNBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sergio", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZc1pQQkVnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "usuario 97", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZek5LVVlBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Maria", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZOUpIR1FBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "María Teresa Martínez Granados", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZbFBtcXJBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Mar Cabrera Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZeDZiZ1p3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Liliana Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZazdXRWRREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Romina Quiroga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZLVlPc2tBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "GABRIEL García González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZM01xV0J3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Mellissa Lorenzo", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvcl9XclVBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Juan Carlos Millán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvb19ieTRRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "beLinda perez armas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvaE9PYkhnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Pedro De La Torre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvb0lEbmRREAE", "timestamp": "Edited 6 years ago"}, {"text": "Todo para los peques", "author": "francisco sosa medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvbjV2b3FBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Francisca Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvcjllN3BBRRAB", "timestamp": "6 years ago"}, {"text": "Variedad", "author": "JORGE LUIS MORENO NAVARRO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvajVfMnJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Carla García Melián", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvcDQyQjZRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Mapi Gonzalez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNveDVfc1NBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Yessica Benitez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvdTZPdmtBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Oliver Vega", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvMjd1NkxnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "elioms__", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaTdXS1ZBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Arabia Suárez Segura", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvMC1fUFBnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Claudia Benitez Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvazlpSTVBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Korneel Ostyn", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvNDZHcXlBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "raquel rodriguez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvb19tRjJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "jenifer batista falcón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvdzk3N2tRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "antonio sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNva2VTcXVRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Elena Fleitas", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvN3FMRU53EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Candida", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvN3R6N3VnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Echedey Cruz Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNveHBEZUxBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Carolina Barreiro Galera", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvMHBTZjNnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "NOELIA FALCON", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvNHRQc3hRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Gladys Diaz", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvd3N6VHNBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Miriam Lorenzo Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvOUtxVzhnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Aytami Herrera", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvNk5iRXJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ismael Breval Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaU9XMU1REAE", "timestamp": "6 years ago"}, {"text": "", "author": "Edgar Hernández", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvME0tUVJBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Francisco Medina Cruz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJMzdDQWtRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "juan saavedra", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJcDhiY2JREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Geny Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJaFoydjlRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Guayarmina", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJMmJyb1J3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Tara Gallardo hernandez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJMW9YNkVREAE", "timestamp": "7 years ago"}, {"text": "", "author": "MIGUEL Y MARTA CABALLERO GALVAN", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJaXZtbnJRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pino Rodriguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJa3BqanF3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "lola sosa", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJek56Z0V3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "joni campos lorenzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOU9pYVdREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Tomás Pérez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJdEt1RlFBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Fran portillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOE0tVlZ3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Miriam Mendoza Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJc0p6bTNnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Iván Carlos Peralta Soler (Vani Taperal)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJX19xckNREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Nestor Marin Siruela", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJOTh2aXRRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Juan Miguel Santana Padrón (Lobo Poseídon)", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJNS0tVmpRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pablo Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJeS1YcE93EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Antonio Jesús Montenegro Trujillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJODluWUtREAE", "timestamp": "7 years ago"}, {"text": "", "author": "NBT", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJay1PMExnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Silvia Alvarado Méndez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJOVphUWdRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Maria Perdomo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJbWZEQzR3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Olan Gil batista", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJb3NLcHdRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "delia alcantara", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR3MzZ5ODF3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "inmalamia inmalamia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR3dG83WWt3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "fRANCISCO jAVIER CÁRDENES Quintero", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBOS0yejVnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Sebastián", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneFBYTUlnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Ayose Guzman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNncFBDdkJBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Saúl Cruz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRcDRxX09REAE", "timestamp": "7 years ago"}, {"text": "", "author": "Javier Martin Santana", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnOElQdjBRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pino Sm", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRLXBtSG1BRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Jonay Llebri", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnOFp5bFRREAE", "timestamp": "7 years ago"}, {"text": "", "author": "José Rodríguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRcU9Tel9BRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Luis Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRa1BybjFBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Germán Udiz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnLUo3dHhnRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "mabehegor", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURReVplSHB3RRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Ryuichi Lanzo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBd1pLM0JREAE", "timestamp": "8 years ago"}, {"text": "", "author": "Xotaele xotaele", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3bGJfQjZRRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Daniel Rodríguez Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURReUotZlpnEAE", "timestamp": "9 years ago"}, {"text": "Día 11 de Diciembre en la mañana, me encuentro en el establecimiento para la compra de un artículo. Y fui testigo directo de una situación en la que la encargada (rubia, mayor), respondió de muy malas formas a un chico, trabajador, delante de todos los clientes, alzándole la voz. La contestación fue innecesaria, intimidante, humillante, e irrespetuosa, dónde claramente se ve un abuso de jerarquía. Ver éste tipo de situaciones dónde un trabajador, además joven, tímido, es tratado de tal manera, es muy triste. Las personas vamos a trabajar para ganarnos la vida, no para soportar el mal trato verbal de nadie. Da que pensar qué otras situaciones similares puede estar soportando él como los otros trabajadores.\\nY por supuesto el mal cuerpo que se le queda al cliente como en mi caso al presenciar esté tipo de situación, vergonzoso. Y por supuesto, no compré nada.", "author": "Borja Jerez lopez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRMVkzWm9SWEJsT0V3eGNHRmtlV0kxU2tocVVWRRAB", "timestamp": "a month ago"}, {"text": "Mala atención y trato por parte de la señora mayor rubia con ojos azules. Mejor ni le hubiese preguntado, poniendo malas caras y contestaciones pasivo-agresivas. Esto sucedió ayer 03/12 por la tarde. Porque yo sí tengo educación, que si no… la que se hubiera armado en medio de la tienda. Contraten a gente con modales y saber estar.", "author": "Sam Ortega", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOT1pERmtZa1ZKYmw4emRHRmtXbVZmZGxORldGRRAB", "timestamp": "a month ago"}, {"text": "Como clienta del establecimiento, quiero dejar constancia de una situación que presencié durante mi visita y que me resultó muy incómoda y desagradable.\\nUna de las encargadas del local, la cuál no quiso facilitarme su nombre, pero le dicen \\"Maru\\", es rubia, al parecer es la encargada, se dirigió a un chico trabajador joven de manera dura, inadecuada y con un tono autoritario, dándole malas contestaciones delante de todos los clientes. La situación fue especialmente incómoda porque el trabajador, visiblemente cohibido por la jerarquía y por su juventud, se quedó callado sin posibilidad de responder.\\nConsidero que es penoso que un establecimiento tan conocido como es Nikki cuente con responsables con un nivel tan bajo de profesionalidad, comportamiento vulgar e irrespetuoso no sólo para el trabajador también para los clientes, dónde proyecta una imagen negativa del establecimiento y generan un ambiente tenso e inapropiado para los clientes y trabajadores.\\nY por supuesto presentaré mi reclamación a través de consumo.\\nNingún trabajador tiene que aguantar éste tipo de trato, ni a este tipo de personas con algún trastorno. Y mucho menos los clientes, directamente ni compré.\\nSucedió 11/12/2025.\\nPenoso.", "author": "Amanda Lorenzo", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkU1pFaE1UMUo0YlVST1pVdFdORTR6YVZOMFIyYxAB", "timestamp": "a month ago"}, {"text": "Pésima atención al cliente,yo creo q el requisito indispensable ara trabajar en nikkie es ser borde", "author": "Angie Medina", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoRVlXdExTRE40TUZGSFNVaGhRMDlZYzBoMmNGRRAB", "timestamp": "2 months ago"}, {"text": "Buenos días, por decir algo…\\nLa verdad que me parece vergonzoso que en las fechas que estamos solo haya 2 personas trabajando en tienda.\\nPero no solo eso, una de las personas está en caja perfecto y la otra pues en tienda imagino que para colocar y atender al cliente… pues resulta que estamos mi mujer y yo esperando para ser atendidos después que atendiera a la persona con la que estaba, y para nuestra sorpresa suena el teléfono y la dependienta muy tranquila decide responder y dar prioridad a la llamada, antes que al cliente que tiene en tienda.", "author": "Jorge Sánchez Batista", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmaHJpUFlnEAE", "timestamp": "a year ago"}, {"text": "Soy clienta habitual de Nikki pero está tienda de Nikki de 7 palmas no la piso más ,mi pareja ya ha puesto reseña y yo pongo otra por la mala atención .Queríamos llevarnos 2 carritos y parecen que nos iban a regalar los 219 euros que costaban pero bueno se nota que les da igual perder la venta ,suerte pésima la atención", "author": "susana quevedo gonzales", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCNFBmQlN3EAE", "timestamp": "3 years ago"}, {"text": "Como juguetería lo normal calidad/precio..\\nPero hoy 27/12/18 sufrí una gran decepción sobre la 'gente' q tiene al frente del establecimiento del c.c.7 palmas(gran canaria)..\\nFui a devolver un juguete, ya q para mi no se escuchaba, según el chico (supuesto encargado o responsable) q llamaron para q me atendiera.. Los juguetes hom;ologados para la audición de los bebes se oyen así de bajo,.. Como estoy en todo mi derecho ya q lleve el envoltorio original, el juguete perfecto y su ticket de compras.. digo bueno a mi no me convence q un bebe de 8 meses se tenga q poner el juguete en la oreja para poder escucharlo..😯 a lo q me responde... Si si, se lo cambio ò le hago devolución . Pero vaya al chino a comprar los juguetes, así no están homologados pa q los oiga bien..\\nPerdona??? Para no entrar en discusión, le dije, hágame la devolución,.. lo q me faltaba q un tipo me venga a decir donde y que le compro a mi bebe..\\nLo q esta claro q personajes como estos no deberían trabajar cara al público, ni si quiera tienes capacidad para trabajar en un chino de eso q tanto desprecias y mucho menos en un lugar donde van niños... esos no son los valores, ni el tipo de personas q quiero q tengan contacto con mis hijos...\\nClienta de más de 12 años, q hoy será el último día q pisé vuestros establecimientos..", "author": "Davinia Suarez Gonzalez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJd3Vuc1BnEAE", "timestamp": "7 years ago"}, {"text": "No compren la mascara de tiranosaurios rex chonb n roar masque electrónique tiranosaurios rex dino máscaro de tiranosaurios rex", "author": "LUCAS CORRAL GONZALEZ", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNiNVBYcHhRRRAB", "timestamp": "a year ago"}, {"text": "LAS DUEÑAS unas ANTIPATICAS..... Parece que el favor te lo están haciendo ellas a ti busquen dependientas y váyanse a Sus casas los mismos juguetes en mgi a mitad de precio", "author": "Amhu.", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZeDVtUm93RRAB", "timestamp": "Edited 4 years ago"}, {"text": "A las cajeras parece que le debes dinero. Me siento incómodo al entrar", "author": "JOSÉ", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzdVpiVjRnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Rafael Hernandez Morín", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrOV9mT3JnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "antonio franco", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwMTZHYTR3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Brais López Rodríguez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwbUxycEJ3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "María Teresa Martínez Granados", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZbFBtcXJBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Daniela Mederos", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvZ09lLXB3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "elioms__", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaTdXS1ZBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Arabia Suárez Segura", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvMC1fUFBnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "NOELIA FALCON", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvNHRQc3hRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Fabiola Hernández Saavedra", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvN055NmNBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Edgar Hernández", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvME0tUVJBEAE", "timestamp": "6 years ago"}, {"text": "Hoy por la tarde día 13/12/2025 fui a Nikki de 7 palmas y salgo descontento por la atención de una trabajadora. No volveré más a este Nikki", "author": "Pedro", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsYWVETXpWM0JXZURkVk5qWmlNazR3TFdoME5GRRAB", "timestamp": "a month ago"}, {"text": "Un gran rato esperando en cola y los demás empleados hablando y riendo mientras que la de Caja esta estresada con una clienta...", "author": "Alejandro RP", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCUU1VZE5RVVYyV1ZVM1VUWnliVGhoTjNaR2NsRRAB", "timestamp": "6 months ago"}, {"text": "La experiencia no ha sido nada buena, bastante desilusionada.\\nLo único que tengo que destacar es a la empleada Mar por ella mis 2 estrellas, quien dejó parte de su tiempo para averiguarme si lo que quería lo tenían o no en tienda y hacerme varias averiguaciones. (destacar un poco de incomodidad dado que me repitió en varias ocasiones que esto me lo hacía como favor porque no estaban para eso.... un poco raro cuando te dedicas a estar cara al público) pero entiendo que no es su culpa, si no procedimientos de su empresa.\\nEstoy en Tenerife y quería hacer un regalo a mi familia en Telde de varios juguetes y ha sido imposible.\\nNo han dado facilidades, siendo una compra de más de 200€ (que la cantidad no importa, lo importante entiendo es dar facilidad, buen servicio y tener al cliente contento para que te recomiende o inclusive que vuelva), pero no ....\\n1º no te dan facilidad para enviar al domicilio en cuestión. A pesar de tener los artículos en tienda, tuve que darme de alta en la página web de nikkie para poder hacer el pedido (bueno, se hace, no pasa nada) sorpresa los códigos que me indicaron no aparecían en su página, si buscas por artículos tampoco aparecen, un desastre por lo que hacer el pedido por la web como me indicaron tampoco era viable.\\n2º busco YO la solución, no pasa nada pagamos un poco más y llamo a MRW para que lo recogieran y lo enviaran al destino, MRW te pide peso y medidas para proceder a recoger los bultos. La respuesta de nikkie: es que solo podía darme las medidas porque no tiene el peso y además el pago tenía que ser presencial, es decir, el empleado de MRW tenía que pagar mi pedido porque no era posible pagar con tarjeta, imposible que no era factible solo de forma inmediata en tienda, le intento explicar que es lo mismo porque voy a pagar con tarjeta físicamente pero que en este caso tiene ella que marcar una serie de dígitos en el datafono, poner el importe a cobrar y la caducidad de la tarjeta y pago hecho, además por adelantado... respuesta IMPOSIBLE.\\nPor lo que decidí desistir del pedido y no les importó absolutamente nada.\\n\\nEsta es la 2ª vez que no podemos realizar una compra desde tenerife y la 1ª además muy importante porque era UNA CAMPAÑA PARA NIÑOS DESFAVORECIDOS. Una compra de mucho más que 200€ y para una buena causa, entiendo de esto que son muy afortunados que cumplen sus objetivos económicos y no les importa perder este tipo de negocios y posibles clientes, cabe destacar lo bien o mal que hace el boca a boca para un comercio.\\n\\nEn resumen no ha sido para nada un buen atendimiento en ningun aspecto .....", "author": "AINOHA ROMOJARO", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4OUlDU2FBEAE", "timestamp": "2 years ago"}, {"text": "Ya esta anticuado", "author": "tony8tld", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNd3ZfaHZ3RRAB", "timestamp": "6 years ago"}, {"text": "No me gusta", "author": "Encarnacion Jorge Machin", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTd2ZqMjRRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Carmen Rodriguez Salazar", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpdmYzZTJnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Crabafre", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjX01TQ1BBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Juan Luis Rincon Garcia", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNbll2V2FREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jessi Cabrera", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0bzRHSlNREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Mellissa Lorenzo", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvcl9XclVBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Carolina Barreiro Galera", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvMHBTZjNnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "José Luis Pasabant", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvcE1pOFp3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Daniel Rodriguez Dorta", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRdDdpN21RRRAB", "timestamp": "7 years ago"}, {"text": "Te preguntan si tienes la tarjeta de cliente, la cual te sirve solo si la tienes encima. Un error. Actualicen el sistema, como por ejemplo el Decathlon. Solo es necesario decir el DNI", "author": "Marcos Castellano Navarro", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJeXZpYlVBEAE", "timestamp": "7 years ago"}, {"text": "Algunos juguetes no sirven están rotos o faltan piezas te persiguen por la tienda como en los chinos por eso la puntuación y que los trabajadores hablan de asuntos personales en la tienda como si fuera la calle por lo demás la tienda ordenada y muchas cosas con oferta", "author": "Brenda", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJLVoyLVNnEAE", "timestamp": "7 years ago"}, {"text": "Deberían digitalizar las tarjetas de socio para poder acumular puntos enseñando el DNI si hubiera olvido de tarjeta física de socio", "author": "Juan Almeida", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpNHZpS19RRRAB", "timestamp": "Edited 5 years ago"}, {"text": "No le pongo más nota por el mal servicio al cliente que tiene\\nParece que estás pidiéndole dinero al personal", "author": "David Nuñez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwZ0xpODN3RRAB", "timestamp": "6 years ago"}, {"text": "En Centro Comercial Siete Palmas, buenos accesos, muy céntrico y buen servicio.", "author": "Juan A. Montiel-Nelson", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZOU95dlN3EAE", "timestamp": "6 years ago"}, {"text": "A los niños de mi pareja les encanta.", "author": "Jose Pozo Peligros", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2X0oyazVRRRAB", "timestamp": "4 years ago"}, {"text": "Si quieres comprar muchos juguetes, no tienen ni cestas...", "author": "marian d.", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcnRuMkl3EAE", "timestamp": "6 years ago"}, {"text": "Cada vez más caros sus productos", "author": "Abian Socorro Rodriguez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4bmVDX3RBRRAB", "timestamp": "5 years ago"}, {"text": "Muy caros los juguetes", "author": "Ines Santana", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2X0lTX1lnEAE", "timestamp": "4 years ago"}, {"text": "Buena juegueteria, chicas amables", "author": "H Bueno", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4LV9DQUVnEAE", "timestamp": "2 years ago"}, {"text": "De toda la vida. Igual nada llamativa", "author": "CARMEN S.", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVZ2FDeXB3RRAB", "timestamp": "6 years ago"}, {"text": "Esta bien", "author": "Luis Miguel GonzálezMedina", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvbUtQLW9BRRAB", "timestamp": "6 years ago"}, {"text": "Se pueden modernisar un poco", "author": "Celeste Trujillo", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVd3ZyTV9nRRAB", "timestamp": "6 years ago"}, {"text": "Bastante caro", "author": "Diario Ciclista", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMjV6bklBEAE", "timestamp": "2 years ago"}, {"text": "Un poco desfasados", "author": "Antonio Semidan Hernández Perera", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbUpMLWJBEAE", "timestamp": "6 years ago"}, {"text": "Juguetes", "author": "Miguel Pérez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvai1PajRRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Buenos precios", "author": "Anyelo Anyelo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDdHF5R0pnEAE", "timestamp": "Edited 5 years ago"}, {"text": "Juguetería", "author": "sergio hernández de león", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4al82NXNRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Davinia Ramirez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNobzdMdERnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Maika Masdías Bonome", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlcmVfYVJ3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Fernando Noteimporta", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHOWQ3WS1nRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Lionel Cabrera Jiménez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2eElHbkF3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Campos", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcFp1YkZBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "ALICIA QUEVEDO VENTURA", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5aE1Qc2p3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "JUAN ANTONIO HERNANDEZ", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5dU9UY3NBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Enma Perez Mejias", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpNU9LcXhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Domingo Perera Garcia", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzMW9lRG13RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Matías Vázquez Rodríguez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzNkl2OVRnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Aida Peña", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNeExDaEJBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Daniel Pulido", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNeVBXQW1nRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Bogdan G", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNb0kyVEJREAE", "timestamp": "6 years ago"}, {"text": "", "author": "MAria Elena López Salvatella", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwaGV6RFB3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "El Nene Bomba", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwMzZ2VXpRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "CINETELEMANIACOS", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwOE8zYW1BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Yaiza Cardona", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMzhXUllBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Priscilla Sosa Sosa", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVOTlmRFpnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jose Manuel Arteaga", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVeW9ELWp3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Pere Domínguez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVN3RLVmNREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Patricia Ramírez R.", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMHBTOGJ3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Oswaldo Lemus Borges", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrdTdPYjRRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ramon Aires", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0MlBHYkh3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "usuario 97", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZek5LVVlBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Mario", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvZ2N1aU93EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Carla García Melián", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvcDQyQjZRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Yessica Benitez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvdTZPdmtBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Korneel Ostyn", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvNDZHcXlBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "raquel rodriguez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvb19tRjJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Gladys Diaz", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvd3N6VHNBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Maria Luisa Alguacil Araujo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvOE1xNmFnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Ru Mr", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJOTdTRXRBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Guayarmina", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJMmJyb1J3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Tara Gallardo hernandez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJMW9YNkVREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Richard Alfaro", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJMnEyOUlREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Rei Neko", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJNG9QVGZREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Elba Santana Hernandez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJdExyYzlBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Elizabeth Santiago", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJb0ozeG9nRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Juan Miguel Santana Padrón (Lobo Poseídon)", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJNS0tVmpRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "delia alcantara", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR3MzZ5ODF3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Javier Martin Santana", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnOElQdjBRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Ryuichi Lanzo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBd1pLM0JREAE", "timestamp": "8 years ago"}, {"text": "", "author": "Xotaele xotaele", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3bGJfQjZRRRAB", "timestamp": "8 years ago"}, {"text": "Muy buena juguetería, con precios razonables. Dispone de muchos juguetes pero debería ampliar más su gama. La tarjeta de ahorro debería poder utilizarse mostrando solo el DNI si se olvida en casa, para obtener puntos de descuento.", "author": "Isabel Tomé H", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3bnZMc2J3EAE", "timestamp": "7 years ago"}, {"text": "Algo a destacar de esta jugeteria, que me resulta tremendamente agradable es la amabilidad de sus empleados. Aparte de una gran variedad de juguetes para todas las edades me gustaría que esta jugeteria de toda la vida aguantara el embate de la venta por Internet, no hay nada mejor que recorrer el pasillo de una jugeteria y elegir.", "author": "Ismael Nef Martínez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrdTRDUnN3RRAB", "timestamp": "6 years ago"}, {"text": "Aunque existe a veces diferencia entre sus tiendas en cuanto a sus precios es mi lugar favorito para comprar juguetes. A los niños les encanta pasar tiempo recorriendo y viendo sus pasillos llenos de juguetes.", "author": "javipower chuck", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJczVhMWtRRRAB", "timestamp": "7 years ago"}, {"text": "Gran surtido. Los precios es otro debate.\\nBuenos profesionales que te ayudan a encontrar el juguete perfecto para tu hijo", "author": "rosa delia martel rodríguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHZ055aTZnRRAB", "timestamp": "4 years ago"}, {"text": "Quizá, de todas las jugueterías de esta franquicia, en la que ví más cantidad y variedad. Tal vez esta información le sea útil a algún usuario. Saludos.", "author": "Mucho Mushasho", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcnFhU2xnRRAB", "timestamp": "7 years ago"}, {"text": "Aunque alguna vez lo he conseguido más económico en otro lado. Siempre encuentro aquí lo que ando buscando y no lo hay en otro lado.", "author": "Samuel Romero Arbelo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJaDRfNkVBEAE", "timestamp": "7 years ago"}, {"text": "Buena atención y ayudaron mucho para dar con el regalo que buscaba", "author": "Octavio Arencibia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLcjUyNmpnRRAB", "timestamp": "4 years ago"}, {"text": "Juguetera grande muy conocida. Adaptación para minusvalídos. Buenos precios.", "author": "Carmen Diepa", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRek9QWXlBRRAB", "timestamp": "9 years ago"}, {"text": "Buen trato y los juguetes siempre son más económicos que en otros lugares", "author": "Rebeca Brito Ramos", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJanN6RzRRRRAB", "timestamp": "7 years ago"}, {"text": "El personal amable.Variedad de juguetes, precios normalitos.", "author": "Cecilia Glez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwZ09xWUJBEAE", "timestamp": "6 years ago"}, {"text": "Conseguí lo q quería. Han subido un poco los precios", "author": "p", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyOEtuMkp3EAE", "timestamp": "3 years ago"}, {"text": "Buscamos un regalo y las dependientas nos asesoraron muy bien", "author": "Yurena", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtejk3bjR3RRAB", "timestamp": "3 years ago"}, {"text": "Me encanta esta cadena y a mi hijo mas", "author": "Bernardo guagueros por el mundo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwbWFDOV9nRRAB", "timestamp": "6 years ago"}, {"text": "Estupendo para encontrar todo tipo de juguetes", "author": "Belen Lopez Brito", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZek5tSHVRRRAB", "timestamp": "6 years ago"}, {"text": "Una jugueteria en la que podras encontrar gran variedad de juguetes", "author": "Juan Ramirez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcE91ZXBRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Está muy bien . Le faltan cosillas", "author": "ERNESTO CORTIGUERA MARTIN", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJbnNHQzFRRRAB", "timestamp": "7 years ago"}, {"text": "Está bien", "author": "rosa ss", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoMmYzODFBRRAB", "timestamp": "2 years ago"}, {"text": "De casi todo lo referente a juguetes que quieras.", "author": "Alicia Torres Martín", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCcThYM0tBEAE", "timestamp": "3 years ago"}, {"text": "Me encantan sus juguetes de todo tipo", "author": "Francisco M", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzNlp2YWhBRRAB", "timestamp": "5 years ago"}, {"text": "Para l@s niñ@s es genial", "author": "Montse AlvarezMedina", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDaFBfczBBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente variedad de juegos y juguetes", "author": "francisco López (franlopez731)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5em9uTlFREAE", "timestamp": "4 years ago"}, {"text": "Me gusta suelo comprar", "author": "Maria Luisa Sanchez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvZ1pHdDNnRRAB", "timestamp": "6 years ago"}, {"text": "Precios algo desorbitados.", "author": "Fran", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxaktDMndnRRAB", "timestamp": "4 years ago"}, {"text": "Buen comercio", "author": "Javier Falcon Brito", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZdlpESG9nRRAB", "timestamp": "6 years ago"}, {"text": "De todo para los peques.", "author": "Fayna Maria Alfonso Rodriguez", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUM0enI0WRAB", "timestamp": "6 years ago"}, {"text": "Gran variedad de juguetes.", "author": "Jose Rodríguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXLVBQdFVBEAE", "timestamp": "3 years ago"}, {"text": "Siempre encuentro lo que busco", "author": "Veronica Cruz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0anUyQkt3EAE", "timestamp": "6 years ago"}, {"text": "Variedad", "author": "Luis Hernández Rodríguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMnA2STFBRRAB", "timestamp": "5 years ago"}, {"text": "Las chicas son magníficas", "author": "nira peich", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcXFibWNREAE", "timestamp": "5 years ago"}, {"text": "Buena juguetería", "author": "Jorge AG", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvMXZQYmhBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Claudio Rivero Armas", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKMV9IT25RRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "JORGE LM", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSck83REhREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Joseba Catalan", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCaGZMbFN3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Adonay González", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCeGRfYU93EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Jose Luis", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtazV2NHdRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Miriam Martín", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNktLQVZ3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "nieves alonso", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtZ2RtQjJ3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Julia VG", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdU0zNC13RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Marta García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2MXFITHlRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "socramxiii", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxdkxxVkd3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Teresa Goncalves", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLekotODVBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "María Eugenia Castiñeira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLcTVmWEJREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Saray Cepero Matos", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aF91UVNBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Carolina Oliveira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpdVBIOGZnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Israel Ramirez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpczREelRnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Maricarmen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpbVl1Y0N3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "juana jesus garcía", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDOXFEX2tRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "jose mendez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMkt1SWdRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Eugenio Domínguez Martel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4aTllaUNREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kiliam Fierro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4eGJLcmhnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Chaxiraxi De La Nuez Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cWQ2RWlRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Team Miguel Xd", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaTc3QmFBEAE", "timestamp": "Edited 5 years ago"}, {"text": "", "author": "Miriam Peñate Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzN1pYOWNnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Cristina Lozano Chico", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzbnI3Vi1RRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "loida Gnz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNdDZya0NBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jota", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNLXRHVU5REAE", "timestamp": "6 years ago"}, {"text": "", "author": "Miguel Torres", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdDVueTdBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sara Cala", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdDhIYnd3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Alex Pérez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNNmVfOElBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Pedro Velasco Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNb2ZEUDNRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Gustavo Torres Dominguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwbmVDd2R3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Boris M. Vega Molina", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwN3NiXy1nRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Agustina Martinez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwMnFINUtBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Chano Hb", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQweXJhN1pnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Carmelo Santana Santana", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwbGNpc0JREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Montenegro Trujillo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwdWUyempBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Dunia Roque", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwaEtQSzhBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Medina", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMk5qckx3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "rosa solarez garcia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwMEx2T3hRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Set Mrs", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdDhqLTlnRRAB", "timestamp": "6 years ago"}, {"text": "Variedad", "author": "Pedro Romero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbDdpSVRnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Nicol Montesdeoca", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdTZLMDNBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Carlos Santiago", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVeTVlSm13RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Manuel Felip Cabrer", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMXBHb2FnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Aarón Medina", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVeV83REVREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Vicente Subiela", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMC1ENkZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Natalia Ortega Ramirez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVaFBLbTFRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Carlos Dgz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURraV9hVDdBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Nayra Rodríguez Pérez", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSURFdmFkcRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ana Tejera", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0bU1iV0ZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Manuel artiles torres", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0NEphemRnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "angharad montesdeoca santana", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZbF92YmNnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Kirian González Jiménez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMi0zYkh3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "familia perruna dog", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZX2FqbnNBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Nuviye Nuviye", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZMV9ia1J3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Dani M", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJOG9uZW5BRRAB", "timestamp": "Edited 6 years ago"}, {"text": "", "author": "Rubén López López", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvaEptTDhRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Mapi Gonzalez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNveDVfc1NBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Oliver Vega", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvMjd1NkxnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Elena Fleitas", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvN3FMRU53EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Aytami Herrera", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvNk5iRXJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ismael Breval Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaU9XMU1REAE", "timestamp": "6 years ago"}, {"text": "", "author": "Falcón Grimón, Jorge", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvb1B5cWZBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "juan saavedra", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJcDhiY2JREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jaime Lomba", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJeTk3RXJBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Erwin Paetow", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOXA2SExREAE", "timestamp": "7 years ago"}, {"text": "", "author": "MIGUEL Y MARTA CABALLERO GALVAN", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJaXZtbnJRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pino Rodriguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJa3BqanF3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Angelica Clarke Ruiz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJN0xHZGd3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "lola sosa", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJek56Z0V3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Tomás Pérez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJdEt1RlFBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Iván Carlos Peralta Soler (Vani Taperal)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJX19xckNREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Ascen", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJLTdfdTZRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Alicia Diaz Gil", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJaTVDYU1BEAE", "timestamp": "7 years ago"}, {"text": "", "author": "marta zubeldia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJazlQeUlREAE", "timestamp": "7 years ago"}, {"text": "", "author": "NBT", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJay1PMExnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Marta", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJdGJiU1RREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Edu V.", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJaHRDRGF3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "fRANCISCO jAVIER CÁRDENES Quintero", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBOS0yejVnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pino Sm", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRLXBtSG1BRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "José Rodríguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRcU9Tel9BRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Germán Udiz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnLUo3dHhnRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "mabehegor", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURReVplSHB3RRAB", "timestamp": "8 years ago"}, {"text": "Hoy me atendió Sheila en Nikki de 7 Palmas. Pregunté por su nombre porque la verdad me encantó cómo me atendió: fue correcta, amable y transmite muy buena armonía. No suelo dejar reseñas, pero quiero agradecerlo, porque en pocos sitios ya se recibe un servicio tan bueno. Da gusto encontrar a alguien que disfruta de su trabajo. ¡Gracias!", "author": "Lucia Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKSk1ERnpkM1ptUTNWQ1NFdFZZV0ZzVVVKdFdrRRAB", "timestamp": "2 months ago"}, {"text": "Pasé por Nikki buscando un juguete para mi hija y salí encantada. La chica que se llamaba Sheila fue quien me atendió y me ayudó a dar justo con lo que le venía perfecto a mi hija. Muy maja y con un trato de lujo, todo súper fácil. Así da gusto, la verdad.", "author": "Guaci Calderin Santana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoelMwSmphV0U0Um1WWFowMUhiMm95UWpWT1VsRRAB", "timestamp": "a month ago"}, {"text": "Una chica nueva rubia atendió ayer a mi madre en el Nikki 7 palmas, se lo agradezco por el hecho de que mi madre es una persona mayor y tiene ciertas dificultades, tuvo paciencia y la ayudó en lo todo posible, se lo agradezco.", "author": "Airam Hernández", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KdlIxbFJlVkp3Y0d0eFZra3pPREpPWlZoYWRIYxAB", "timestamp": "a month ago"}, {"text": "Una de las mejores jugueterias de Canarias donde podrás encontrar de casi todo durante todo el año. Siendo tantas tiendas consiguen tener unos precios de lo mejorcito de toda Canarias. Encima te pueden informar de si algún artículo se encuentra en otra tienda. La atención es muy buena. En campaña de reyes no empaquetan", "author": "javiervazquezsalinas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvMEl6QzVRRRAB", "timestamp": "6 years ago"}, {"text": "Para mi gusto la mejor tienda de juguetes de Canarias. Es una pena que con el tiempo se esté quedando algo justo de mercancía. Después de navidades suelen tener muy buenas ofertas. Tienen una enorme variedad de juegos de mesa y general, la atención al cliente es buena", "author": "Borja Cámara Millares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZckxDREFnEAE", "timestamp": "6 years ago"}, {"text": "Voy a 7 Palmas y el trato por parte de Begoña es exquisito!! Muy muy agradable , cercana e informándome de todo al milímetro. Por otro lado , voy al de vecindario...y Tanto Ivonne , como Nico cómo toda la plantilla...tienen una calidad humana INMEJORABLE !!!. Mis felicitaciones al departamento de recursos humanos ,por el personal que tienen ...y lo mejor de todo... Único sitio donde encuentro de todo ,o me buscan soluciones y alternativas para encontrarlo. Un acierto SIEMPRE recurrir a ustedes , inclusive por la calidad- precio. Una juguetería bien completa!!! Me encantan.", "author": "Lili Sv", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtai1TSlZ3EAE", "timestamp": "3 years ago"}, {"text": "Los precios y la variedad son de diez. El trato del personal nos gustó muchísimo. Incluso nos recomendaron un juguete mas barato al que habíamos elegido ya que se adaptaba mejor a las necesidades de nuestro hijp. En resumen, recomendaría éste lugar a todo el mundo.", "author": "Jonathan Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvNlktaE13EAE", "timestamp": "7 years ago"}, {"text": "Las dependientes del turno de mañana en Siete Palmas, súper amable y un juguete que me hacía falta que no encontramos llamaron sobre la marcha a otro Nikki y me lo reservaron. En Príncipe Alvear no tan bien no les daría ni un uno de nota. Muchas gracias", "author": "Carlos Alberto Benitez Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpdE9fMjV3RRAB", "timestamp": "Edited 5 years ago"}, {"text": "Está bien, gran variedad de juguetes a precios algo inferior que otras tiendas más conocidas. No obstante, no todas las tiendas tienen la misma variedad siendo la del CC El mirador, la que menos variedad tiene, su cantidad y variedad se disimula extendiendo los juguetes los máximo posible.", "author": "Edertano --", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4dlBQdGVREAE", "timestamp": "5 years ago"}, {"text": "La jugueteria de toda la vida.. Pero hace falta personal con más carisma, con más entrega, que sepa que estamos pidiendo y sobre todo, más simpáticos.\\nLe doy 5 estrellas por que es la jugueteria que cuando necesito algo acudo, pero el persona deja mucho que desear.", "author": "Judith Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpNWJybFFREAE", "timestamp": "5 years ago"}, {"text": "Un sitio perfecto para pedir pedirle a los reyes magos....bastante surtidos de jugetes ...puzles, muñecas, todoo, hace 27años que pedía las cosas a los reyes ay para mí hija. Lo recomiendo un 10.", "author": "Naira Afonso Infantes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtdzliS0RREAE", "timestamp": "3 years ago"}, {"text": "Fantástica juguetería, una de las preferidas de mis hijos, variedad, personal superamable, siempre me han buscado los productos en la medida de sus posibilidades (mandando a buscarlos a otros Nikkis) y en general para mí donde más económico he encontrado las cosas siempre. Nos encanta.", "author": "beatriz deniz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBMThiXzVnRRAB", "timestamp": "7 years ago"}, {"text": "Me lo paso mejor q mis hijos en esta tienda es divertida amigable y tiene muy buenos juguetes a muy buen precio la recomiendo para los reyes cumples y demás.", "author": "Hacomar Caraballo Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZcTZueF9RRRAB", "timestamp": "6 years ago"}, {"text": "Excelente. Tiene todo tipo de juguetes y otros productos a un precio asequible. Buen trato.", "author": "Lazaro Crespo Arzola", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTejdDOXBRRRAB", "timestamp": "5 years ago"}, {"text": "Todo muy bien. Los mini precios están muy baratos. Tanto que me podría comprar la Nikki Entera.", "author": "Derek Alemán Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlbC02dTJnRRAB", "timestamp": "3 years ago"}, {"text": "Buen servicio, sus precios un poco elevados pero he de decir q tiene los mejores juguetes de mi infancia, de cuando yo era chico, que recuerdos.", "author": "Jesus alberto Medina trujillano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVb182ZHdBRRAB", "timestamp": "6 years ago"}, {"text": "Como siempre todo en su sitio, los precios bien claros y mucha variedad, yo diría que casi todo lo que existe está allí.", "author": "Miguel Brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaNFkyUFJ3EAE", "timestamp": "2 years ago"}, {"text": "Espectacular juguetería, para cualquier peque es un paraíso y las dependientas son super amables!!", "author": "Gio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaa0tlM21nRRAB", "timestamp": "2 years ago"}, {"text": "Bardzo dobrze zaopatrzony sklep z zabawkami.", "author": "Agnieszka", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYLXNqYnpRRRAB", "timestamp": "a year ago"}, {"text": "La mejor cadena de jugueterías de Canarias donde puedes encontrar casi todo lo que buscas y sino, te lo pueden conseguir. Además de ello, muy buenos precios.", "author": "Alvaro Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpcmZHOFBBEAE", "timestamp": "5 years ago"}, {"text": "Juguetería muy completa. Personal atiende bien. No mucho más que destacar.", "author": "Enrique Santamaría", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVN01IaGhBRRAB", "timestamp": "6 years ago"}, {"text": "Gran surtido de juguetes a precios económicos. Facilidades de reserva y descuentos.", "author": "MARU QUESADA DOMINGUEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2aDRUV2tBRRAB", "timestamp": "4 years ago"}, {"text": "Siempre con muy buenas ofertas y una atención excepcional.", "author": "JUAN DAVID HIDALGO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCejVYdUx3EAE", "timestamp": "2 years ago"}, {"text": "'Cuado nino los guvuete eran carto madera. Oi esa precio side", "author": "Alfonso Collado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVczctd2FREAE", "timestamp": "6 years ago"}, {"text": "Muy atentos y eficientes. Puedes conseguir cualquier juguete, porque siempre están actualizados.", "author": "Antonio Jesús Peña Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0cGJEaHVRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Buenas promociones y muchas variedad. Una atención muy buena.", "author": "Domingo Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTemQzWlBBEAE", "timestamp": "5 years ago"}, {"text": "Puedes conseguir gran cantidad de artículos infantiles a un precio muy razonable....", "author": "Guacy Sos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNcVp5YUJnEAE", "timestamp": "6 years ago"}, {"text": "Juguetería muy completa muy buenos precios, todos los años compro los reyes ya que es la juguetería más completa", "author": "Juan Francisco Sánchez Ramos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU5lb253RRAB", "timestamp": "6 years ago"}, {"text": "Le encanta ha los niños. Pero precios caros", "author": "José Heriberto Ramos tejera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4ZzRibGFREAE", "timestamp": "5 years ago"}, {"text": "Muy buen sitio.con muchas variedades", "author": "Margarita Batista", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbWM3bGhRRRAB", "timestamp": "6 years ago"}, {"text": "Sensacional!!!\\nTiene muchos juguetes para niños y niñas de todas las edades!", "author": "Glayson Wagner Rodrigues", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHZy0tTWVnEAE", "timestamp": "4 years ago"}, {"text": "La mayor variedad de juguetes de la isla aquí podrás encontrar los Pokémon los avengers etc", "author": "Agustín santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcC1yTmd3RRAB", "timestamp": "6 years ago"}, {"text": "Personal muy atento, les felicito, ganaron un cliente", "author": "Marian d", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwanBXOWpnRRAB", "timestamp": "6 years ago"}, {"text": "Muy bien", "author": "Loli Rodriguez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNzRUeEl3EAE", "timestamp": "a year ago"}, {"text": "Buenos precios y mucha variedad", "author": "Yaiza Soriano Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4bllMRDJnRRAB", "timestamp": "5 years ago"}, {"text": "Buenos precios, variedad productos y buena atención cliente", "author": "Juan Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvdU9PTTBnRRAB", "timestamp": "6 years ago"}, {"text": "Todo bien organizado, mi nieta lo pasó pipa", "author": "Pepe Reina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdFlxeVVnEAE", "timestamp": "5 years ago"}, {"text": "Tienda super completa donde encontrar todo tipo de juquetes", "author": "CAROLINA GARCIA SANTANA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNDhYU3dRRRAB", "timestamp": "6 years ago"}, {"text": "Variedad, buenos precios y atención", "author": "Jovita Falcón Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNaFpLVFFBEAE", "timestamp": "6 years ago"}, {"text": "El mejor sitio donde hacer tus compras para los peques de la casa", "author": "Jennifer Aleman Medina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtNjYzZUJnEAE", "timestamp": "3 years ago"}, {"text": "Buena atención y precios", "author": "Josué Betancor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoNmE3azBRRRAB", "timestamp": "2 years ago"}, {"text": "Gran surtido de juguetes y a buenos precios.", "author": "Cristina Mauricio Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzaXBMS3lnRRAB", "timestamp": "5 years ago"}, {"text": "Buena atención y encuentras todo", "author": "Maria Jesús Melián Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNTLTl6RzV3RRAB", "timestamp": "5 years ago"}, {"text": "Buen precio y tienen muchísima variedad", "author": "Luis Déniz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4a2JuOVZREAE", "timestamp": "5 years ago"}, {"text": "Trato al cliente muy bueno", "author": "Juan Manuel Goya Luis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNVlfTWdnRRAB", "timestamp": "6 years ago"}, {"text": "Buena atención, ofertas", "author": "raquel perez gadea", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDNGR1YVNREAE", "timestamp": "5 years ago"}, {"text": "Los juguetes de toda la vida de la tienda de Canarias con precios increíblemente bajos", "author": "Jim Álvaro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaE5YTUVnEAE", "timestamp": "6 years ago"}, {"text": "La juguetería de mi infancia es aora la de mis hijos", "author": "Edu Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcnJxbWpRRRAB", "timestamp": "7 years ago"}, {"text": "Buenos precios y calidad", "author": "Sara Rey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNveFlUMG13RRAB", "timestamp": "7 years ago"}, {"text": "Magnífica juguetería. Personal muy agradable.", "author": "Rafael Vallespin Montero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJdUozaG5BRRAB", "timestamp": "7 years ago"}, {"text": "Muy entretenido y regalos guapísimo", "author": "Toni Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZbWViWTJBRRAB", "timestamp": "6 years ago"}, {"text": "Siempre podrás encontrar el juguete adecuado", "author": "Juan Toledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOUp6YkZREAE", "timestamp": "7 years ago"}, {"text": "De todo muy amplia", "author": "Rosa Maria Hernandez Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2X0wyN3R3RRAB", "timestamp": "4 years ago"}, {"text": "Muchos juguetes y más baratos que en otras jugueterias", "author": "LAURA CASTELLANO CARRILLO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOGZxQ2JnEAE", "timestamp": "7 years ago"}, {"text": "Muy bien", "author": "Crastoby _____", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJaWI2cWhBRRAB", "timestamp": "7 years ago"}, {"text": "Tiene de casi todo en juguetes", "author": "Isabel León", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNacHVMdWJnEAE", "timestamp": "2 years ago"}, {"text": "Personal muy atento", "author": "Mercedes Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzbWU2bEhnEAE", "timestamp": "5 years ago"}, {"text": "Variedad y buen precio", "author": "Victor Tnk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMHJTQXdRRRAB", "timestamp": "Edited a year ago"}, {"text": "Buenos precios y disponibilidad de artículos", "author": "Aida Oval", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDNmQ2UXh3RRAB", "timestamp": "5 years ago"}, {"text": "Una tienda muy completa.", "author": "Ruyman Figueroa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlMFphZ1hBEAE", "timestamp": "3 years ago"}, {"text": "Personal ofrece gran ayuda", "author": "Valentín Acosta Matos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpck1LNmlBRRAB", "timestamp": "5 years ago"}, {"text": "Hay mucha variedad de juguetes", "author": "Tania Ferrera Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvbVpER0JREAE", "timestamp": "7 years ago"}, {"text": "Muy amables", "author": "Juan Oval Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5ck1PSU9nEAE", "timestamp": "Edited 4 years ago"}, {"text": "Hay de todo para los peques", "author": "David Ramos Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVamNPTVBBEAE", "timestamp": "6 years ago"}, {"text": "Buenos precios", "author": "Carmen M.c", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJaUpDYmVnEAE", "timestamp": "7 years ago"}, {"text": "Siempre bien...", "author": "Beatriz Olloquiegui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNa01QZXJRRRAB", "timestamp": "6 years ago"}, {"text": "Jugueteria con bastantes tiendas y variedad de juguetes.", "author": "Jacob Prada Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJbV91Ulp3EAE", "timestamp": "7 years ago"}, {"text": "Variedad de juguetes y muy lindos", "author": "Marisela Hernandez Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJdzdMSVN3EAE", "timestamp": "7 years ago"}, {"text": "Bastante variedad en juguetes", "author": "Azuleida Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwbV9mTmFBEAE", "timestamp": "6 years ago"}, {"text": "Calle mayor de triana", "author": "Oliver Garcia Jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvd19uMjJ3RRAB", "timestamp": "6 years ago"}, {"text": "Para los niños un mundo de ilusiones", "author": "Abian cruz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNteW9lSUFREAE", "timestamp": "4 years ago"}, {"text": "Tienen de uso lo que buscas.", "author": "Marta Dominguez Deniz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5cHFURm93RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Los mejores precios en juguetes.", "author": "Víctor M. Úbeda Tarajano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpeW95WElBEAE", "timestamp": "5 years ago"}, {"text": "Variedad y muchas ofertas", "author": "Tere diaz Melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwZ2JTZ2hRRRAB", "timestamp": "6 years ago"}, {"text": "La mejor variedad en juguetes", "author": "Antonio Quintino Nuez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcVlfSFlREAE", "timestamp": "Edited 4 years ago"}, {"text": "Me encanta", "author": "Susana Zambrano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwNTk2WUlnEAE", "timestamp": "6 years ago"}, {"text": "Buena", "author": "Paqui Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJbHBTekhBEAE", "timestamp": "7 years ago"}, {"text": "Una buena jugueteria", "author": "Minerva Almeida Reyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtM0otZk93EAE", "timestamp": "4 years ago"}, {"text": "", "author": "isabel lopez artiles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmdE1uN213RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jose javier Rojas vargas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwODlYaXJ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ariadna Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwbWUzLUV3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Raul Toledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSdzlpVkd3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Vanessa Paleo Melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNScFlPb2dRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Lidia Ares Tejera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOUpiNGhnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Julio Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNmVmdWFREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Garcia Brito", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtcmFhTzFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Jose Daniel Roque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtazllZk1REAE", "timestamp": "4 years ago"}, {"text": "", "author": "Alg Lara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMnVYalFREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jeanette A.R", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtMkl6YmdBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Daniel Diepa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHc2E2NlZBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Davinia Rodríguez Afonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdnAzTDlBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Azzay Rodram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2eFoycjlRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Diego del Rosario Quesada", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NGZUTEFnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Antonio Santana Calero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMnRLZ3F3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNU5laVNBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Samia Yamal Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhdU51ZGV3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Yure", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxN2FlQ3hBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLeC1tUnVnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ylenia Rivero Almeida", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dDVPUFpREAE", "timestamp": "4 years ago"}, {"text": "", "author": "TheSarimari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5MEkta1N3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Campa87Lp", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTNTl6aHBBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Nuria Brandon Davila", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTMVptZFJREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Salvador gonzález", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTeGF6dnlBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "vicente ramirez gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09md3NBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Luis Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpM095WlJnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Sara Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpNUx5SnJBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Ángel Sánchez Barreto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDOXRLcjdnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Maykel Valdes Perdomo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbE1yUzN3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Silvia Bello Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDdDlYbV93RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Jose Montero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMmRHdVlREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gustavo A. Machín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDdHEybjhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Fátima Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjeDdUSHJ3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Isabel Jiménez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbG8tWmlnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Diego Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjMmIzT2R3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Elina Materan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjMXByUzF3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "toño santles santles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjaU9TVGhnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "María Reyes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcXVPd3FnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "JUANA MARIA PULIDO CABRERA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzalAtY3NRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Laura Martel Lacapria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNZ1B5dW9RRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Helena Espino Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNNWJXYlV3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "MIGUEL Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwem8yeDVnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "DOMINGA SH", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNU82NE5nEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jorge Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwOU5lcmxBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "ANTONIO Henríquez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVeFphR2JnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Carlos CG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVc2MzQ1BBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jay DeLosMuertos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVZ09fX1lBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "pablo andres morales gallego", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVbDVLNndnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Patricia Godoy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVdV9hNGxRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "David Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVNWRlaS13RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Mandy Marrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVOGFQbS1BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Anne-Hélène BERNARD", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVc1luTEFREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Angela Arias Marín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVeE5LUDV3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Rosa ana Matias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVMExuZzdnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ana Alfonso Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNreGNmc2hBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Guaya M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ0dEpDQTlRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Cris MedSan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0eWVlaWNnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Ruth MQ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0eWRiaDBRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Carlos Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0eXBEcjB3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Francisco Javier Marrero Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0MU03anJ3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Alejandro MORENO VEGA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0dVBuZkJnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Diego Aguiar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0Z0ltUXF3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Mar Cabrera Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZeDZiZ1p3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Liliana Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZazdXRWRREAE", "timestamp": "6 years ago"}, {"text": "", "author": "MARIA SANTANA GONZALEZ (MICROPIGMENTADORA)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZdmMtMGVnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "GABRIEL García González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZM01xV0J3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Juan Carlos Millán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvb19ieTRRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "beLinda perez armas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvaE9PYkhnEAE", "timestamp": "6 years ago"}, {"text": "Todo para los peques", "author": "francisco sosa medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvbjV2b3FBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Francisca Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvcjllN3BBRRAB", "timestamp": "6 years ago"}, {"text": "Variedad", "author": "JORGE LUIS MORENO NAVARRO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvajVfMnJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "jenifer batista falcón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvdzk3N2tRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Juan Manuel Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvN3FUVHh3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "antonio sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNva2VTcXVRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Candida", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvN3R6N3VnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Echedey Cruz Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNveHBEZUxBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Miriam Lorenzo Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvOUtxVzhnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Francisco Medina Cruz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJMzdDQWtRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJNTdQUVVBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Graciela Magdalena Mora", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJazhIVDV3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "José maria Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJbHNPNTVRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Mar Heras", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJNXQtQVVnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose .Granja", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcHFybHFRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Miriam Mendoza Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJc0p6bTNnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Angie Godoy Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJZ1AyM2J3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Dani", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR3eUw2VUNBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Sebastián", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneFBYTUlnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Ayose Guzman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNncFBDdkJBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Luis Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRa1BybjFBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Fátima Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MTdic1ZnEAE", "timestamp": "7 years ago"}] 185.56737 \N {"job_type": "google-reviews", "priority": 0, "multi_sort": {"enabled": true, "completed_sorts": ["newest", "lowest", "highest"], "first_pass_count": 317}, "bot_detected": false, "business_name": "Jugueterias Nikki", "rating_snapshot": 4.2, "scraper_version": "1.1.0", "business_address": "Av Pintor Felo Monzón, 44, 35019 Las Palmas de Gran Canaria, Las Palmas, Spain ", "initial_sort_used": "newest", "sort_orders_attempted": ["newest"], "total_reviews_snapshot": 433} 693 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-31T02:54:28.539Z", "timestamp_ms": 1769828068539}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-31T02:54:28.651Z", "timestamp_ms": 1769828068651}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22nikki%207%20palmas%22%20las%2...", "category": "browser", "timestamp": "2026-01-31T02:54:28.785Z", "timestamp_ms": 1769828068785}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-31T02:54:30.106Z", "timestamp_ms": 1769828070106}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-31T02:54:30.205Z", "timestamp_ms": 1769828070205}, {"level": "INFO", "message": "Total reviews on page: 433", "metrics": {"total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:32.368Z", "timestamp_ms": 1769828072368}, {"level": "INFO", "message": "Business: Jugueterias Nikki", "category": "scraper", "timestamp": "2026-01-31T02:54:32.368Z", "timestamp_ms": 1769828072368}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:54:32.404Z", "timestamp_ms": 1769828072404}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-31T02:54:32.426Z", "timestamp_ms": 1769828072426}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-31T02:54:32.758Z", "timestamp_ms": 1769828072758}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-31T02:54:32.758Z", "timestamp_ms": 1769828072758}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:54:35.401Z", "timestamp_ms": 1769828075401}, {"level": "INFO", "message": "Expanded 6 truncated reviews", "metrics": {"expanded_count": 6}, "category": "browser", "timestamp": "2026-01-31T02:54:35.442Z", "timestamp_ms": 1769828075442}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-31T02:54:35.445Z", "timestamp_ms": 1769828075445}, {"level": "INFO", "message": "Found 10 review topics: price, economy, credit card, supply, documento nacional de identidad...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-31T02:54:36.021Z", "timestamp_ms": 1769828076021}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-31T02:54:36.021Z", "timestamp_ms": 1769828076021}, {"level": "INFO", "message": "70/433 (16%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007661342620849609, "progress_pct": 16.166281755196305, "reviews_count": 70, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:37.199Z", "timestamp_ms": 1769828077199}, {"level": "INFO", "message": "DOM cleanup: removed 70 cards to prevent memory buildup", "metrics": {"cards_removed": 70, "cards_remaining": 332}, "category": "system", "timestamp": "2026-01-31T02:54:38.268Z", "timestamp_ms": 1769828078268}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-31T02:54:38.268Z", "timestamp_ms": 1769828078268}, {"level": "INFO", "message": "110/433 (25%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 25.40415704387991, "reviews_count": 110, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:38.346Z", "timestamp_ms": 1769828078346}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 377}, "category": "system", "timestamp": "2026-01-31T02:54:39.549Z", "timestamp_ms": 1769828079549}, {"level": "INFO", "message": "160/433 (37%) | idle: 0.0s", "metrics": {"idle_seconds": 0.004989147186279297, "progress_pct": 36.95150115473441, "reviews_count": 160, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:39.554Z", "timestamp_ms": 1769828079554}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 221}, "category": "system", "timestamp": "2026-01-31T02:54:40.636Z", "timestamp_ms": 1769828080636}, {"level": "INFO", "message": "200/433 (46%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03247880935668945, "progress_pct": 46.18937644341801, "reviews_count": 200, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:40.669Z", "timestamp_ms": 1769828080669}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 203}, "category": "system", "timestamp": "2026-01-31T02:54:41.715Z", "timestamp_ms": 1769828081715}, {"level": "INFO", "message": "Flushing 130 reviews to disk...", "metrics": {"source": "flush", "batch_size": 130}, "category": "scraper", "timestamp": "2026-01-31T02:54:41.715Z", "timestamp_ms": 1769828081715}, {"level": "INFO", "message": "240/433 (55%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03561210632324219, "progress_pct": 55.42725173210161, "reviews_count": 240, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:41.751Z", "timestamp_ms": 1769828081751}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 206}, "category": "system", "timestamp": "2026-01-31T02:54:42.812Z", "timestamp_ms": 1769828082812}, {"level": "INFO", "message": "280/433 (65%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006214141845703125, "progress_pct": 64.66512702078522, "reviews_count": 280, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:42.818Z", "timestamp_ms": 1769828082818}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 185}, "category": "system", "timestamp": "2026-01-31T02:54:43.881Z", "timestamp_ms": 1769828083881}, {"level": "INFO", "message": "317/433 (73%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013148069381713867, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:43.895Z", "timestamp_ms": 1769828083895}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0343718528747559, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:44.916Z", "timestamp_ms": 1769828084916}, {"level": "INFO", "message": "317/433 (73%) | idle: 2.1s", "metrics": {"idle_seconds": 2.054330587387085, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:45.936Z", "timestamp_ms": 1769828085936}, {"level": "INFO", "message": "317/433 (73%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0825297832489014, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:46.964Z", "timestamp_ms": 1769828086964}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:54:46.964Z", "timestamp_ms": 1769828086964}, {"level": "INFO", "message": "317/433 (73%) | idle: 4.2s", "metrics": {"idle_seconds": 4.159803152084351, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:48.041Z", "timestamp_ms": 1769828088041}, {"level": "INFO", "message": "317/433 (73%) | idle: 5.2s", "metrics": {"idle_seconds": 5.18205189704895, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:49.063Z", "timestamp_ms": 1769828089063}, {"level": "INFO", "message": "317/433 (73%) | idle: 6.2s", "metrics": {"idle_seconds": 6.207373857498169, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:50.089Z", "timestamp_ms": 1769828090089}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:54:50.089Z", "timestamp_ms": 1769828090089}, {"level": "INFO", "message": "317/433 (73%) | idle: 7.5s", "metrics": {"idle_seconds": 7.517057418823242, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:51.398Z", "timestamp_ms": 1769828091398}, {"level": "INFO", "message": "317/433 (73%) | idle: 8.6s", "metrics": {"idle_seconds": 8.579519987106323, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:52.461Z", "timestamp_ms": 1769828092461}, {"level": "INFO", "message": "317/433 (73%) | idle: 9.6s", "metrics": {"idle_seconds": 9.596054792404175, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:53.477Z", "timestamp_ms": 1769828093477}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:54:53.477Z", "timestamp_ms": 1769828093477}, {"level": "INFO", "message": "317/433 (73%) | idle: 10.9s", "metrics": {"idle_seconds": 10.925060033798218, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:54.806Z", "timestamp_ms": 1769828094806}, {"level": "INFO", "message": "317/433 (73%) | idle: 11.9s", "metrics": {"idle_seconds": 11.943667650222778, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:55.825Z", "timestamp_ms": 1769828095825}, {"level": "INFO", "message": "317/433 (73%) | idle: 13.0s", "metrics": {"idle_seconds": 12.95988130569458, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:56.841Z", "timestamp_ms": 1769828096841}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:54:56.841Z", "timestamp_ms": 1769828096841}, {"level": "INFO", "message": "317/433 (73%) | idle: 14.3s", "metrics": {"idle_seconds": 14.304543733596802, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:58.186Z", "timestamp_ms": 1769828098186}, {"level": "INFO", "message": "317/433 (73%) | idle: 15.3s", "metrics": {"idle_seconds": 15.326279163360596, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:54:59.208Z", "timestamp_ms": 1769828099208}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:54:59.208Z", "timestamp_ms": 1769828099208}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.326279163360596}, "category": "browser", "timestamp": "2026-01-31T02:54:59.260Z", "timestamp_ms": 1769828099260}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:54:59.462Z", "timestamp_ms": 1769828099462}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:55:04.191Z", "timestamp_ms": 1769828104191}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:55:04.519Z", "timestamp_ms": 1769828104519}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:55:07.098Z", "timestamp_ms": 1769828107098}, {"level": "INFO", "message": "Expanded 6 truncated reviews", "metrics": {"expanded_count": 6}, "category": "browser", "timestamp": "2026-01-31T02:55:07.129Z", "timestamp_ms": 1769828107129}, {"level": "INFO", "message": "Hard refresh successful, resuming with 317 reviews already collected", "metrics": {"reviews_collected": 317}, "category": "browser", "timestamp": "2026-01-31T02:55:07.141Z", "timestamp_ms": 1769828107141}, {"level": "WARN", "message": "SLOW cycle: 8.9s (api:0.0s dom:0.0s/427cards flush:0.0s seen:317)", "metrics": {"dom_cards": 427, "api_time_s": 0.023342132568359375, "dom_time_s": 0.015952348709106445, "seen_count": 317, "cycle_time_s": 8.949852705001831}, "category": "system", "timestamp": "2026-01-31T02:55:08.272Z", "timestamp_ms": 1769828108272}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.1s", "metrics": {"idle_seconds": 1.139162540435791, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:08.280Z", "timestamp_ms": 1769828108280}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 332}, "category": "system", "timestamp": "2026-01-31T02:55:09.332Z", "timestamp_ms": 1769828109332}, {"level": "INFO", "message": "317/433 (73%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00000095367431640625, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:09.343Z", "timestamp_ms": 1769828109343}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 417}, "category": "system", "timestamp": "2026-01-31T02:55:10.440Z", "timestamp_ms": 1769828110440}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0805587768554688, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:10.450Z", "timestamp_ms": 1769828110450}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 243}, "category": "system", "timestamp": "2026-01-31T02:55:11.484Z", "timestamp_ms": 1769828111484}, {"level": "INFO", "message": "317/433 (73%) | idle: 2.1s", "metrics": {"idle_seconds": 2.118060350418091, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:11.488Z", "timestamp_ms": 1769828111488}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 207}, "category": "system", "timestamp": "2026-01-31T02:55:12.533Z", "timestamp_ms": 1769828112533}, {"level": "INFO", "message": "317/433 (73%) | idle: 3.2s", "metrics": {"idle_seconds": 3.168994903564453, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:12.539Z", "timestamp_ms": 1769828112539}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:55:12.539Z", "timestamp_ms": 1769828112539}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 206}, "category": "system", "timestamp": "2026-01-31T02:55:13.663Z", "timestamp_ms": 1769828113663}, {"level": "INFO", "message": "317/433 (73%) | idle: 4.3s", "metrics": {"idle_seconds": 4.300029277801514, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:13.670Z", "timestamp_ms": 1769828113670}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 150}, "category": "system", "timestamp": "2026-01-31T02:55:14.723Z", "timestamp_ms": 1769828114723}, {"level": "INFO", "message": "317/433 (73%) | idle: 5.4s", "metrics": {"idle_seconds": 5.376445770263672, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:14.746Z", "timestamp_ms": 1769828114746}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 135}, "category": "system", "timestamp": "2026-01-31T02:55:15.831Z", "timestamp_ms": 1769828115831}, {"level": "INFO", "message": "317/433 (73%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:15.834Z", "timestamp_ms": 1769828115834}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.0s", "metrics": {"idle_seconds": 1.042375087738037, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:16.877Z", "timestamp_ms": 1769828116877}, {"level": "INFO", "message": "317/433 (73%) | idle: 2.1s", "metrics": {"idle_seconds": 2.084726333618164, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:17.919Z", "timestamp_ms": 1769828117919}, {"level": "INFO", "message": "317/433 (73%) | idle: 3.1s", "metrics": {"idle_seconds": 3.108867883682251, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:18.943Z", "timestamp_ms": 1769828118943}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:55:18.943Z", "timestamp_ms": 1769828118943}, {"level": "INFO", "message": "317/433 (73%) | idle: 4.4s", "metrics": {"idle_seconds": 4.429316520690918, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:20.264Z", "timestamp_ms": 1769828120264}, {"level": "INFO", "message": "317/433 (73%) | idle: 5.5s", "metrics": {"idle_seconds": 5.463628053665161, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:21.298Z", "timestamp_ms": 1769828121298}, {"level": "INFO", "message": "317/433 (73%) | idle: 6.5s", "metrics": {"idle_seconds": 6.495916128158569, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:22.330Z", "timestamp_ms": 1769828122330}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:55:22.330Z", "timestamp_ms": 1769828122330}, {"level": "INFO", "message": "317/433 (73%) | idle: 7.8s", "metrics": {"idle_seconds": 7.846760511398315, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:23.681Z", "timestamp_ms": 1769828123681}, {"level": "INFO", "message": "317/433 (73%) | idle: 8.9s", "metrics": {"idle_seconds": 8.886055707931519, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:24.720Z", "timestamp_ms": 1769828124720}, {"level": "INFO", "message": "317/433 (73%) | idle: 9.9s", "metrics": {"idle_seconds": 9.919703960418701, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:25.754Z", "timestamp_ms": 1769828125754}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:55:25.754Z", "timestamp_ms": 1769828125754}, {"level": "INFO", "message": "317/433 (73%) | idle: 11.3s", "metrics": {"idle_seconds": 11.290390014648438, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:27.125Z", "timestamp_ms": 1769828127125}, {"level": "INFO", "message": "317/433 (73%) | idle: 12.3s", "metrics": {"idle_seconds": 12.332801818847656, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:28.167Z", "timestamp_ms": 1769828128167}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:55:28.167Z", "timestamp_ms": 1769828128167}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.332801818847656}, "category": "browser", "timestamp": "2026-01-31T02:55:28.339Z", "timestamp_ms": 1769828128339}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:55:28.540Z", "timestamp_ms": 1769828128540}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:55:33.244Z", "timestamp_ms": 1769828133244}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:55:33.569Z", "timestamp_ms": 1769828133569}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:55:36.155Z", "timestamp_ms": 1769828136155}, {"level": "INFO", "message": "Expanded 6 truncated reviews", "metrics": {"expanded_count": 6}, "category": "browser", "timestamp": "2026-01-31T02:55:36.189Z", "timestamp_ms": 1769828136189}, {"level": "INFO", "message": "Hard refresh successful, resuming with 317 reviews already collected", "metrics": {"reviews_collected": 317}, "category": "browser", "timestamp": "2026-01-31T02:55:36.197Z", "timestamp_ms": 1769828136197}, {"level": "WARN", "message": "SLOW cycle: 9.1s (api:0.0s dom:0.0s/427cards flush:0.0s seen:317)", "metrics": {"dom_cards": 427, "api_time_s": 0.010941028594970703, "dom_time_s": 0.008161067962646484, "seen_count": 317, "cycle_time_s": 9.063390254974365}, "category": "system", "timestamp": "2026-01-31T02:55:37.272Z", "timestamp_ms": 1769828137272}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.1s", "metrics": {"idle_seconds": 1.080538272857666, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:37.278Z", "timestamp_ms": 1769828137278}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 415}, "category": "system", "timestamp": "2026-01-31T02:55:38.350Z", "timestamp_ms": 1769828138350}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0801365375518799, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:38.361Z", "timestamp_ms": 1769828138361}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 334}, "category": "system", "timestamp": "2026-01-31T02:55:39.443Z", "timestamp_ms": 1769828139443}, {"level": "INFO", "message": "317/433 (73%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:39.464Z", "timestamp_ms": 1769828139464}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 297}, "category": "system", "timestamp": "2026-01-31T02:55:40.522Z", "timestamp_ms": 1769828140522}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.0s", "metrics": {"idle_seconds": 1.046987771987915, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:40.529Z", "timestamp_ms": 1769828140529}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 203}, "category": "system", "timestamp": "2026-01-31T02:55:41.568Z", "timestamp_ms": 1769828141568}, {"level": "INFO", "message": "317/433 (73%) | idle: 2.1s", "metrics": {"idle_seconds": 2.093069076538086, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:41.575Z", "timestamp_ms": 1769828141575}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 206}, "category": "system", "timestamp": "2026-01-31T02:55:42.715Z", "timestamp_ms": 1769828142715}, {"level": "INFO", "message": "317/433 (73%) | idle: 3.2s", "metrics": {"idle_seconds": 3.236856698989868, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:42.719Z", "timestamp_ms": 1769828142719}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:55:42.719Z", "timestamp_ms": 1769828142719}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 200}, "category": "system", "timestamp": "2026-01-31T02:55:43.850Z", "timestamp_ms": 1769828143850}, {"level": "INFO", "message": "317/433 (73%) | idle: 4.4s", "metrics": {"idle_seconds": 4.381793022155762, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:43.864Z", "timestamp_ms": 1769828143864}, {"level": "INFO", "message": "DOM cleanup: removed 25 cards to prevent memory buildup", "metrics": {"cards_removed": 25, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-31T02:55:44.931Z", "timestamp_ms": 1769828144931}, {"level": "INFO", "message": "317/433 (73%) | idle: 5.5s", "metrics": {"idle_seconds": 5.475607872009277, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:44.958Z", "timestamp_ms": 1769828144958}, {"level": "INFO", "message": "317/433 (73%) | idle: 6.5s", "metrics": {"idle_seconds": 6.518326282501221, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:46.001Z", "timestamp_ms": 1769828146001}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:55:46.001Z", "timestamp_ms": 1769828146001}, {"level": "INFO", "message": "317/433 (73%) | idle: 7.9s", "metrics": {"idle_seconds": 7.858131647109985, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:47.340Z", "timestamp_ms": 1769828147340}, {"level": "INFO", "message": "317/433 (73%) | idle: 8.9s", "metrics": {"idle_seconds": 8.912748098373413, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:48.395Z", "timestamp_ms": 1769828148395}, {"level": "INFO", "message": "317/433 (73%) | idle: 10.0s", "metrics": {"idle_seconds": 9.973676204681396, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:49.456Z", "timestamp_ms": 1769828149456}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:55:49.456Z", "timestamp_ms": 1769828149456}, {"level": "INFO", "message": "317/433 (73%) | idle: 11.4s", "metrics": {"idle_seconds": 11.354398965835571, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:50.837Z", "timestamp_ms": 1769828150837}, {"level": "INFO", "message": "317/433 (73%) | idle: 12.4s", "metrics": {"idle_seconds": 12.40955924987793, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:51.892Z", "timestamp_ms": 1769828151892}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:55:51.892Z", "timestamp_ms": 1769828151892}, {"level": "INFO", "message": "317/433 (73%) | idle: 13.8s", "metrics": {"idle_seconds": 13.77342939376831, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:53.256Z", "timestamp_ms": 1769828153256}, {"level": "INFO", "message": "317/433 (73%) | idle: 14.8s", "metrics": {"idle_seconds": 14.824193239212036, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:54.306Z", "timestamp_ms": 1769828154306}, {"level": "INFO", "message": "317/433 (73%) | idle: 15.9s", "metrics": {"idle_seconds": 15.864492177963257, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:55:55.347Z", "timestamp_ms": 1769828155347}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:55:55.347Z", "timestamp_ms": 1769828155347}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.864492177963257}, "category": "browser", "timestamp": "2026-01-31T02:55:55.500Z", "timestamp_ms": 1769828155500}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:55:55.705Z", "timestamp_ms": 1769828155705}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:56:00.425Z", "timestamp_ms": 1769828160425}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:56:00.626Z", "timestamp_ms": 1769828160626}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:56:03.209Z", "timestamp_ms": 1769828163209}, {"level": "INFO", "message": "Expanded 6 truncated reviews", "metrics": {"expanded_count": 6}, "category": "browser", "timestamp": "2026-01-31T02:56:03.239Z", "timestamp_ms": 1769828163239}, {"level": "INFO", "message": "Hard refresh successful, resuming with 317 reviews already collected", "metrics": {"reviews_collected": 317}, "category": "browser", "timestamp": "2026-01-31T02:56:03.247Z", "timestamp_ms": 1769828163247}, {"level": "WARN", "message": "SLOW cycle: 8.9s (api:0.0s dom:0.1s/427cards flush:0.0s seen:317)", "metrics": {"dom_cards": 427, "api_time_s": 0.04367423057556152, "dom_time_s": 0.07185935974121094, "seen_count": 317, "cycle_time_s": 8.930676937103271}, "category": "system", "timestamp": "2026-01-31T02:56:04.701Z", "timestamp_ms": 1769828164701}, {"level": "INFO", "message": "317/433 (73%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:04.720Z", "timestamp_ms": 1769828164720}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 251}, "category": "system", "timestamp": "2026-01-31T02:56:05.858Z", "timestamp_ms": 1769828165858}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.1s", "metrics": {"idle_seconds": 1.1201157569885254, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:05.902Z", "timestamp_ms": 1769828165902}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 328}, "category": "system", "timestamp": "2026-01-31T02:56:06.976Z", "timestamp_ms": 1769828166976}, {"level": "INFO", "message": "317/433 (73%) | idle: 2.2s", "metrics": {"idle_seconds": 2.2110443115234375, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:06.993Z", "timestamp_ms": 1769828166993}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 235}, "category": "system", "timestamp": "2026-01-31T02:56:08.068Z", "timestamp_ms": 1769828168068}, {"level": "INFO", "message": "317/433 (73%) | idle: 3.3s", "metrics": {"idle_seconds": 3.2997491359710693, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:08.082Z", "timestamp_ms": 1769828168082}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:56:08.082Z", "timestamp_ms": 1769828168082}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 232}, "category": "system", "timestamp": "2026-01-31T02:56:09.603Z", "timestamp_ms": 1769828169603}, {"level": "INFO", "message": "317/433 (73%) | idle: 1.3s", "metrics": {"idle_seconds": 1.2510826587677002, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:09.637Z", "timestamp_ms": 1769828169637}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 203}, "category": "system", "timestamp": "2026-01-31T02:56:10.763Z", "timestamp_ms": 1769828170763}, {"level": "INFO", "message": "317/433 (73%) | idle: 2.4s", "metrics": {"idle_seconds": 2.379401922225952, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:10.765Z", "timestamp_ms": 1769828170765}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 206}, "category": "system", "timestamp": "2026-01-31T02:56:11.812Z", "timestamp_ms": 1769828171812}, {"level": "INFO", "message": "317/433 (73%) | idle: 3.4s", "metrics": {"idle_seconds": 3.432681083679199, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:11.818Z", "timestamp_ms": 1769828171818}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:56:11.818Z", "timestamp_ms": 1769828171818}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 200}, "category": "system", "timestamp": "2026-01-31T02:56:13.321Z", "timestamp_ms": 1769828173321}, {"level": "INFO", "message": "317/433 (73%) | idle: 4.9s", "metrics": {"idle_seconds": 4.948885440826416, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:13.334Z", "timestamp_ms": 1769828173334}, {"level": "INFO", "message": "DOM cleanup: removed 25 cards to prevent memory buildup", "metrics": {"cards_removed": 25, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-31T02:56:14.372Z", "timestamp_ms": 1769828174372}, {"level": "INFO", "message": "317/433 (73%) | idle: 6.0s", "metrics": {"idle_seconds": 5.9911017417907715, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:14.377Z", "timestamp_ms": 1769828174377}, {"level": "INFO", "message": "317/433 (73%) | idle: 7.0s", "metrics": {"idle_seconds": 7.0291876792907715, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:15.415Z", "timestamp_ms": 1769828175415}, {"level": "INFO", "message": "317/433 (73%) | idle: 8.1s", "metrics": {"idle_seconds": 8.122074842453003, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:16.508Z", "timestamp_ms": 1769828176508}, {"level": "INFO", "message": "317/433 (73%) | idle: 9.2s", "metrics": {"idle_seconds": 9.173108577728271, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:17.559Z", "timestamp_ms": 1769828177559}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:56:17.559Z", "timestamp_ms": 1769828177559}, {"level": "INFO", "message": "317/433 (73%) | idle: 10.6s", "metrics": {"idle_seconds": 10.55922269821167, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:18.945Z", "timestamp_ms": 1769828178945}, {"level": "INFO", "message": "317/433 (73%) | idle: 11.6s", "metrics": {"idle_seconds": 11.608423471450806, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:19.994Z", "timestamp_ms": 1769828179994}, {"level": "INFO", "message": "317/433 (73%) | idle: 12.7s", "metrics": {"idle_seconds": 12.6557297706604, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:21.041Z", "timestamp_ms": 1769828181041}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:56:21.041Z", "timestamp_ms": 1769828181041}, {"level": "INFO", "message": "317/433 (73%) | idle: 14.0s", "metrics": {"idle_seconds": 14.014941692352295, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:22.401Z", "timestamp_ms": 1769828182401}, {"level": "INFO", "message": "317/433 (73%) | idle: 15.1s", "metrics": {"idle_seconds": 15.054821252822876, "progress_pct": 73.21016166281755, "reviews_count": 317, "total_reviews": 433}, "category": "scraper", "timestamp": "2026-01-31T02:56:23.440Z", "timestamp_ms": 1769828183440}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:56:23.441Z", "timestamp_ms": 1769828183441}, {"level": "INFO", "message": "All reviews loaded: 317", "metrics": {"total_reviews": 317, "elapsed_seconds": 107.52280497550964}, "category": "scraper", "timestamp": "2026-01-31T02:56:23.543Z", "timestamp_ms": 1769828183543}, {"level": "INFO", "message": "Multi-sort auto-enabled (first pass got 73.2% < 90%)", "metrics": {"total_reviews": 433, "first_pass_count": 317}, "category": "scraper", "timestamp": "2026-01-31T02:56:23.544Z", "timestamp_ms": 1769828183544}, {"level": "INFO", "message": "Pass 2/4 (lowest): starting with 317 reviews", "metrics": {"pass": 2, "sort": "lowest", "current_total": 317}, "category": "scraper", "timestamp": "2026-01-31T02:56:23.544Z", "timestamp_ms": 1769828183544}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:56:24.394Z", "timestamp_ms": 1769828184394}, {"level": "INFO", "message": "Sorted by lowest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:56:24.998Z", "timestamp_ms": 1769828184998}, {"level": "INFO", "message": "Pass 2 (lowest) complete: +376 new reviews (118.6% yield)", "metrics": {"pass": 2, "sort": "lowest", "yield_pct": 118.61198738170347, "new_reviews": 376}, "category": "scraper", "timestamp": "2026-01-31T02:57:13.894Z", "timestamp_ms": 1769828233894}, {"level": "INFO", "message": "Pass 3/4 (highest): starting with 693 reviews", "metrics": {"pass": 3, "sort": "highest", "current_total": 693}, "category": "scraper", "timestamp": "2026-01-31T02:57:13.895Z", "timestamp_ms": 1769828233895}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:57:14.706Z", "timestamp_ms": 1769828234706}, {"level": "INFO", "message": "Sorted by highest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:57:15.270Z", "timestamp_ms": 1769828235270}, {"level": "INFO", "message": "Pass 3 (highest) complete: +0 new reviews (0.0% yield)", "metrics": {"pass": 3, "sort": "highest", "yield_pct": 0.0, "new_reviews": 0}, "category": "scraper", "timestamp": "2026-01-31T02:57:31.441Z", "timestamp_ms": 1769828251441}, {"level": "INFO", "message": "Pass 4/4 (relevant): starting with 693 reviews", "metrics": {"pass": 4, "sort": "relevant", "current_total": 693}, "category": "scraper", "timestamp": "2026-01-31T02:57:31.441Z", "timestamp_ms": 1769828251441}, {"level": "WARN", "message": "Menu did not appear after clicking sort button", "category": "browser", "timestamp": "2026-01-31T02:57:33.606Z", "timestamp_ms": 1769828253606}, {"level": "WARN", "message": "Could not find sort option for relevant. Menu items: ['price 39', 'economy 5', 'credit card 4', 'supply 4', 'documento nacional de identida', 'assortment 3', 'grocer 2', 'hierarchy 2', 'articles 2', '2025 2']", "category": "browser", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}, {"level": "WARN", "message": "Failed to change sort to relevant, skipping", "category": "scraper", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}, {"level": "INFO", "message": "Final flush: 7 reviews...", "metrics": {"source": "final_flush", "batch_size": 7}, "category": "scraper", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}, {"level": "INFO", "message": "Total: 693 unique reviews (flushed: 693, in memory: 0)", "metrics": {"flushed_count": 693, "total_reviews": 693, "elapsed_seconds": 177.60146570205688, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:57:33.622Z", "timestamp_ms": 1769828253622}] 2026-01-31 03:21:50.387817 [{"count": 39, "topic": "price"}, {"count": 5, "topic": "economy"}, {"count": 4, "topic": "credit card"}, {"count": 4, "topic": "supply"}, {"count": 3, "topic": "documento nacional de identidad"}, {"count": 3, "topic": "assortment"}, {"count": 2, "topic": "grocer"}, {"count": 2, "topic": "hierarchy"}, {"count": 2, "topic": "articles"}, {"count": 2, "topic": "2025"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-31T02:54:28.546040", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Jugueterias Nikki Toy store Av Pintor Felo Monzón, 44, 35019 Las Palmas de Gran Canaria, Las Palmas, Spain 4.20 923 Retail.Stores.Toy_store exact google a3813665-ea23-4fb0-aab7-b282ef9443e4 completed https://www.google.com/maps/search/?api=1&query=%22ClickRent%22%20Gran%20Canaria%2C%20Spain&hl=en \N \N 2026-01-25 01:25:52.343796 2026-01-25 01:26:49.36177 2026-01-25 01:26:49.504854 585 [{"text": "I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan which greeted me with a smile. You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern Europe. Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. Also the shuttle to the rental is not that easy to find, even though the location on the website is indicated ( as one shuttle drives up and down) We decided to walk which takes around 15-20 minutes.\\n\\nThe car i was offered is a VW Taigo with apple carplay. Very comfortable ride.", "author": "adam sheikh", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB", "timestamp": "a month ago"}, {"text": "The initial price looks to good to be true - no one can expect to get a car for that price. Understandable that they want to make some money - so the fine print is important. And somehow understandable.\\n\\nBUT: the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. But they do not care. AND THIS IS WHAT I CONSIDER AS CHEATING!!!", "author": "Karsten Knorr", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB", "timestamp": "a week ago"}, {"text": "Choose a different company!\\nWe get here by foot because didn't want to spend hours of waiting for a shuttle bus . Negative atmosphere in the office people are not happy with service. One lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. Took ages to get the car.\\nWas charged 35€ for their fuel policy as we booked not via their website\\nWas charged another 60€ for managing the damage. ( windscreen chip costs €1200)\\nCouldn't find any of this info in terms and conditions.\\nReceived damaged car.\\nWaited shuttle as the driver needed to check damage on the car. And he was waiting another employee(not sure why it takes 2 person) We asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him)", "author": "Arnold K", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB", "timestamp": "a week ago"}, {"text": "Save your money and your holiday and book with someone else.\\n\\n1.\\tLeft at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got \\"line busy\\" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas\\n\\n2.\\tRefused to drop off at Maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up\\n\\n3.\\tOn arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. We didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders.\\n\\n4.\\tCar given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. To add insult to injury they decided to take £381.50 out of my account (I guess for good measure). Presumably this is how they make their money – it is nothing short of a scam.\\n\\n5.\\tWe detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. Predictably, we received no response from them.\\n\\nLesson learned – we’ll be booking with a reputable company next time.", "author": "Llŷr", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB", "timestamp": "a month ago"}, {"text": "Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup service was arranged very well and they took good care of us.\\n\\nThey did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. In the end booking directly with them would have been cheaper. The car was great, brand new with only 8 km driven with it.\\n\\nOverall great company, we will book again directly with them.", "author": "Danny van der Ven", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB", "timestamp": "2 months ago"}, {"text": "Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend them! Some of the cheapest prices for rental cars I found on GC. Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times and return was also very unproblematic and quick.", "author": "Susanne Frühling", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB", "timestamp": "a week ago"}, {"text": "Where should I start. There is one mini bus that will take you from and to the airport. If they knew what to expect from their booking times they should have more cars to pick up people. We waited 50min for one. As we arrived the queues weren't that bad but the time they took with one person took forever. As it was our turn, we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. We got a car and as we were driving down to Puerto rico the car electrics went down twice on the motorway. We recorded a video and safely got to the place but called them numerous times as wanted to swap the car. They do not provide replacement services so we had to guess....drive back!!!! Yes, we drove a faulty car back to be able to get a new one. They seemed to know nothing about it despite my 100calls about the issue. Anyway....avoid this place! Although they are very polite and helpful at the pick up point this isnt enough to recommend them.", "author": "Martyna Wilk-Nowicka", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB", "timestamp": "a month ago"}, {"text": "I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs.\\n\\nThey used every trick in the book to squeeze more money out of me the second I landed. First, they charged me an extra fee for fuel just because I apparently \\"didn't tick a box\\" for full-to-full. It’s a total scam designed to catch people out.\\n\\nThen they arbitrarily rejected my valid payment methods for the deposit—refusing cards for no reason—just to force me into paying a ridiculous €200 for \\"insurance\\" and tax that I didn't need and didn't want (I have insurance already). It’s pure coercion.\\n\\nSo I ended up paying DOUBLE for this car!!\\n\\nTo make matters worse, the staff were incredibly aggressive. The woman behind the desk actually started shouting at me, insulting my intelligence by yelling \\"it's not my fault you can't read\\" when I questioned the charges. She even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there.\\n\\nCompletely unprofessional, predatory, and nasty. Save your money and your sanity—rent from literally anyone else in Gran Canaria.\\n\\nI have filed a formal complaint but they are just completely ignoring me. This is ilegal and i will be taking this further.\\n\\nOh and the shuttle bus is terrible so takes ages to pick up and drop off your car.", "author": "Robert Parrish", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB", "timestamp": "3 weeks ago"}, {"text": "Everything was great!\\n\\nHad 200€ deposit taken upon delivery and unlocked upon return. The car was completely new - 1900km only! Everything worked perfectly and smoothly. Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :)\\nRecommend!", "author": "Gerda Grinkeviciute", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB", "timestamp": "3 weeks ago"}, {"text": "Much more to pay on arrival, only credit card accepted and not very helpful.\\n\\nPick up from airport was bad, vague instructions and phone was computer voice. Ended up walking 20min to the place which was all the way in the back of a parking lot further away.\\n\\nAbout the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance.\\n\\nWhen asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough.\\nAsked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.\\n\\nThe car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast.", "author": "Bart v Haren", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB", "timestamp": "3 months ago"}, {"text": "This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. In every other country you take the car full and return it full — simple.\\n\\nThey told me that if I returned the car with a full tank, I would be refunded the full amount except for the €35 fee, and if I returned it half-full, I would receive a partial refund depending on how much petrol remained when I returned the car. The staff member completed everything and told me I would receive the refund within a few days for the remaining half tank of fuel.\\n\\nIt has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. I’ve contacted them multiple times with no response. I ended up losing €67, and the car rental itself was €70 — so I basically paid double.\\n\\nBased on my experience, I would stay away from this company — they made my holiday stressful.", "author": "Leonard Mana", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB", "timestamp": "2 months ago"}, {"text": "A word of caution! I don't usually publish articles like this, but I'll make an exception this time. This topic concerns the car rental company @ClickRent, which operates in the Spanish market.\\nNEVER AGAIN @ClickRent https://clickrent.es/ I've rented cars from many rental companies, large and small, and I've never encountered such disrespectful customer service and a complete lack of professionalism. Our entire group was treated very unfairly/We were severely let down by the service, and our sightseeing plans were ruined.\\nDescription of the incident:\\nI booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explore the island of Gran Canaria. I did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. Everything seemed professional. On the day of our arrival at Las Palmas Airport (LPA - Gran Canaria), we all went to the meeting point in front of the airport terminal, and within a few minutes, a shuttle bus took us to the rental company's office. One of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was no car for us! I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her. The lady informed me that I would receive a refund on my card within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). I asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When I took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that I delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN @ClickRent, or specifically this office: \\"Practicante Casto Moros, 35219 Ojos de Garza, España\\" (I have no idea how this company operates, what its structures and offices are like, or how they work together – I'm just a customer and I'm not interested).\\nSo, I emailed someone who runs the @ClickRent booking system. I also received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! I asked for the matter to be escalated and contacted a manager – I received a reply that the matter had been escalated and someone would contact me. Today, two weeks have passed since this report, and absolutely NO ONE has contacted me! In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). We lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so NEVER AGAIN @ClickRent!", "author": "Damian Wieczorek", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB", "timestamp": "2 months ago"}, {"text": "We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to Gran Canaria. They said they couldnt change the name of the driver, so we had to reserve a second car and the first one was paid but we didn’t get the car . But instead of making us a good offer for the second reservation with the new driver (because they knew we paid the first reservation for no car in exchange) they wanted 130€ for the second reservation.\\nSo we had to pay in the end 180€ for 3 days instead of 50€.\\nAlso a very slowly service, we had to wait in the queue for over 1,5 hours.", "author": "Raf iosi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB", "timestamp": "2 months ago"}, {"text": "Overall service experience was very good! One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. After we got to the shuttle, the service was excellent all the way, car was clean and nice for the group!", "author": "Tuomas Nirvi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB", "timestamp": "a month ago"}, {"text": "It was a bit stressful looking for the meeting point for the mini bus at the airport but after that everything was very good. Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately on returning the car. Pick up and return was simply and very quick. Great service", "author": "andy armitage", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB", "timestamp": "3 weeks ago"}, {"text": "We booked a car through their system 2 weeks before our departure. We paid full in advance, we did online check-in and we met at the meeting point at the airport. They took us to their rental office and one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was NO CAR for us! We were a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her. The lady informed us that we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN!!!", "author": "KayS", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB", "timestamp": "2 months ago"}, {"text": "First time using this company. Really really happy with the service. Great prices and no hassle return of the car with full cover insurance which was not expensive at all. Will use this company again and highly recommend it to others. No hidden charges. We got an upgraded car for no additional cost which was brand new with 400km on it.", "author": "Elvinas Palcauskis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2bmFLZGRnEAE", "timestamp": "a year ago"}, {"text": "We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank...It is not Clickrent who is cheating, it is the platform. Also the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name. But overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff!", "author": "wim en anneke", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB", "timestamp": "a month ago"}, {"text": "We got a good deal from ClickRent for a car with full insurance during black Friday. Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\\nThe only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport.", "author": "Aya ElAttar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB", "timestamp": "a month ago"}, {"text": "The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup).\\n\\nWhen we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. So we didnt know how to ask for the shuttle to come to the airport to pick us up.\\n\\nEventually, we called booking.com, who could contact the shuttle via a direct number, and then we were pucked up within a few minutes.\\n\\nAfter that, everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great.", "author": "Martijn Wieringa", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB", "timestamp": "3 months ago"}, {"text": "The car rent itself is ok\\n\\nBut the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. You need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. And the employees do not care\\n\\nThey were just overwhelmed with the number of customers coming!\\n\\nNever again with this provider", "author": "Gusnadi Wiyoga", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB", "timestamp": "3 weeks ago"}, {"text": "Smooth rental when booking directly with full coverage. Return was extremely quick and the shuttle was ready to bring us to the airport. One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there.", "author": "Wierd", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB", "timestamp": "3 months ago"}, {"text": "Great customer experience, quick and easy rental process. They are not located at the airport, but there is a regular shuttle bus from and to the airport. The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. For a precise location, I recommend that you ask someone on arrival.", "author": "Dejan Bileski - BD Media Bonn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB", "timestamp": "3 weeks ago"}, {"text": "I do not recommend this company. They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. This is an unreasonable condition that other companies do not impose. Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience", "author": "Lucia Cojocaru", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB", "timestamp": "2 months ago"}, {"text": "I dont recommend. The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. Also the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "author": "Guilherme Cavalcante", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB", "timestamp": "3 weeks ago"}, {"text": "Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. Book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. Not worth the cheaper rates. Never got our car and had to pay full price due to a flight delay they refused to accommodate.", "author": "Darren Hastings", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB", "timestamp": "3 months ago"}, {"text": "I rented a car in Gran Canaria from ClickRent. It was a couple of kilometers away from the airport. A taxi there cost 7 €. I took precise photos of every little scratch the car had prior to renting which were not on the report. Renting the car was pleasant except the staff did not like to be filmed or recorded which gave me a red flag since I was telling about the scratches before leaving.\\n\\nI had a small worry about the return since price of the rent was quite cheap compared to other rental companies. Also terms on the agreement was bad for a person renting the car. I was quite anxious during the holiday about the rental even though I had full insurance from booking.com. If I would have had some problems, first I would have had to pay ClickRent and after that claim the money from booking.com.\\n\\nBefore returning the car I vacuumed it completely clean since I had heard stories about interior needing to be completely clean. The agreement also states that a car having sand could result in a cleaning fee. I also recorded every conversation with the staff.\\n\\nReturning the car was easier than I thought. They were not trying to find small scratches from the car. I also got the full deposit back in two days. I think it is better to be safe than sorry. If you rent from ClickRent you should read the agreement and take photos of every small scratches. I would probably look for a car rental that has better terms on the agreement since they have the right to be very strict if you accept the terms. The shuttle bus worked well and I was at the airport in 10 minutes after returning the car. I gave only 3 stars because of the stress from the other reviews and terms in the agreement.", "author": "Onni Virtanen", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURRNDdPQ0xREAE", "timestamp": "10 months ago"}, {"text": "This is absolutely the worse experience I've ever had, trying to rent a car.\\nThe booking was done online, confirmation received by email. With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we didn't want to buy additional services. Therefore they refused to handout the car, and we had to return to the airport empty-handed.\\nSimply the worse company ever.", "author": "David A. Brandt Klug", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB", "timestamp": "a month ago"}, {"text": "we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total)or else we were charged a 1200 euro deposit. We were going to chose the deposit but they complained that my card had problems which I was forced to pay the 150€. The car given does not match what we ordered. Terrible experience, don’t come.", "author": "jenny wei", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB", "timestamp": "2 months ago"}, {"text": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.\\nGetting and returning car is a nightmare be prepated to miss your flight.\\nAfter I returned home, my credit card was charged additional 180 eur without any documentation. So if you want to avoid headache - stay away from it.", "author": "Oleksii Vyacheslavovich", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB", "timestamp": "Edited 3 weeks ago"}, {"text": "AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no car for us. No prior contact — all we were offered was a refund and “goodbye.” Our entire trip was thrown into chaos due to a complete lack of professionalism. Better save yourself the stress and choose another company! DO NOT RECOMMEND.", "author": "Adrianna Kluge", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB", "timestamp": "2 months ago"}, {"text": "Very difficoult to get to from the airport. When criticised their policies they refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "author": "Antti Lumus", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB", "timestamp": "2 weeks ago"}, {"text": "Basically a total disaster; shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. All in all one of the worst car rental experiences ever.", "author": "Erik Schobesberger", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB", "timestamp": "3 weeks ago"}, {"text": "My experience was good. I was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. Would use their services again.", "author": "Chill The Pill", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB", "timestamp": "2 weeks ago"}, {"text": "Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the day before my booking started. They were very helpful and arranged that I could take the car 1 day earlier. ¡Muchas gracias!", "author": "Attila H", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB", "timestamp": "3 weeks ago"}, {"text": "We arrived with a confirmed booking, only to be told there was no car available for us. The staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. This is utterly unacceptable. Avoid at all costs.", "author": "Honorata Wieczorek", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB", "timestamp": "2 months ago"}, {"text": "First time customer and didn’t take any additional insurances because I had rental car insurance from my credit card company. Therefore they made 2000€ authorization on my credit card.\\n\\nStaff was ok. Not the friendliest staff but they didn’t try to force or sell any additional insurances.\\n\\nCar was new, less than 5000km driven and was as promised.\\n\\nAfter rerurning the car, they checked that there were no damages on the car and the 2000€ authorization was unlocked in less than 5 minutes.\\n\\nWould use their services again and would recommend.", "author": "Ville Lappalainen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfMi1yNHFRRRAB", "timestamp": "a year ago"}, {"text": "We had a very nice experience renting from ClickRent. So nice people, and we got all the information we needed. The car was just as expected, clean and everything was on top. Thank you so much!", "author": "Julianne Markussen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB", "timestamp": "3 weeks ago"}, {"text": "No hassle, no waiting, excellent staff especially Gabrielle. Highly recommended for your car hire. The car was awesome and brand new like 1000 clicks on the odo. Great family experience made our stay worthwhile in Gran Canaria", "author": "Iyad Zaaroura", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoUFNGUnpWM0ZUYlZSS1VGSlpUMHRLWVVKM1NVRRAB", "timestamp": "5 months ago"}, {"text": "Very good cars. Lots of Audi cars. Very good service and the person is polite. They will take you on a verry short shuttle from the airport to their office (takes almost 5 mins). You need to wait a maximum of 1 hour i think. We waited close to 30 mins. Their office is air-conditioned and very well kept. I would recommend you to take a car from here", "author": "Saeed Mekdachi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0V04yY3lVM1JoZFd0d2JIbFBTR1IyWTNoWE5GRRAB", "timestamp": "5 months ago"}, {"text": "I had a very good experience, they have a good fleet of cars, very close to the airport and their insurance is the ceapest compared to other car rentals. They also have enough staff in order not to waste time at pick-up and dropoff.", "author": "ovidiu morosan", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205YWJYaFhUVFYxTWtsQmJsRlFRVTFhZEhsbGVHYxAB", "timestamp": "5 months ago"}, {"text": "Worst car rental ever. Chaos, long queues, small shuttle.\\n\\nIf you have a flight to catch make sure you arrive much earlier to give back the car.\\n\\nPersonly, i am never renting from here again.", "author": "Kareem Jano", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB", "timestamp": "3 weeks ago"}, {"text": "I don't usually write reviews but I feel obliged to for ClickRent as I hope it will help you out with deciding on choosing a car rental in Gran Canaria.\\nClickRent's office is about a 3 minute drive from the airport in a brand new check in centre which has many check-in desks and very helpful staff. The shuttle bus from the airport is super easy to find and Kevin the shuttle bus driver was the most polite and happiest Gran Canarian person we met on our whole trip!\\nCheck in was quick and easy and we were on the road in under 20 minutes. All their cars are brand new and ours had less than 12k miles on the clock.\\nReturning the car was even easier taking under 10 minutes with helpful staff who were smiling even at 8am in the morning.\\nI can't recommend ClickRent enough!", "author": "Fred Toft", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvby1UYWJ3EAE", "timestamp": "8 months ago"}, {"text": "Very unfriendly lady. Not returning here again. Totally not clear where the shuttle bus was leaving at the airport. She said it was not her problem. Dont so this to yourself. Not a nice way to start your holiday", "author": "Randy Beaumont", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB", "timestamp": "2 months ago"}, {"text": "Outstanding Service – Highly Recommended!\\n\\nI had an excellent experience with ClickRent and would highly recommend them to anyone in need of a reliable and reasonably priced rental car. The entire process was seamless – the car was ready on time, and the pick-up and drop-off were incredibly easy and efficient. The vehicle itself was in great condition, almost brand new, clean, and well-maintained.\\n\\nWhat truly stood out was the exceptional customer service (especially from the picking up driver). The staff was extremely friendly, professional, and helpful, making the whole experience smooth and stress-free.\\n\\nOverall, fantastic service, great cars, and a team that genuinely cares about customer satisfaction. I will definitely be using ClickRent again in the future!", "author": "Marta G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3anBlV3pBRRAB", "timestamp": "10 months ago"}, {"text": "It's great for a budget rental. A little further from the airport than other companies but the service is excellent. Recommend it.", "author": "Joanna Lewandowska", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB", "timestamp": "2 months ago"}, {"text": "Good service, perfect cars, low prices! Very recommendable!\\nRegarding, how to get to the office, just wait outside without checking owing the street in front of the airport building: a small shuttle bus runs every 15 min, however the office is very close and you can walk, if you don’t have any luggage.\\nWhile taking the car, take photos of the car before renting, as including under the bumper.", "author": "Kyrylo Shevchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3N2QzNzdBRRAB", "timestamp": "9 months ago"}, {"text": "Last two times was everything perfect and easy. This car rental service I can recommend.", "author": "Sandra Hofmann", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB", "timestamp": "a week ago"}, {"text": "I can only recommend this company in Gran Canaria!!! Absolutely fair and competitive prices, new cars, clear policy, no credit card needs! The staff was amazing! Super kind and super helpful! I have book the smallest car with full insurance, but my friend brought his bike and we realized we needed a bigger car as the cover of the bike was too big. They offered us straight away two other options when we have arrived and they have changed our car in no time….Thank you once again for your quick and efficient service and your kindness!🙏🏻", "author": "Viktoria Turcsik", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQNGFYZUx3EAE", "timestamp": "a year ago"}, {"text": "This place is complete shit, I'm sorry to say it - such a hassle which is somehow continuing to pop up, despite my reservation being almost a month ago. Take a look at their TripAdvisor reviews for more accurate reviews then these good reviews.\\n\\nUpon out arrival we paid a bunch of fees that weren't mentioned when we initially booked the car, one of which, they told me they would disregard, seeing as it was already a lot more then we expected. Now flash to today, and they automatically took 60 euros out of my bank account. I also still have yet to receive my 200 euro deposit back. I tried to call to talk to them, and they totally disregarded my mentioning that when I spoke with them in person, they were not going to charge me this extra fee (which they have taken out today, almost a month later). The more frustrating part, is that I asked them insistently to send me a copy of the contract, which they didn't send me - not in my junk mail, nowhere to be found. So now, almost 300 euros later, and the lady on the phone basically told me it's my fault.\\n\\nThis place sucks. Do not rent from this company, and also, take a look at their reviews in trip advisor - those are far more accurate.", "author": "baby", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNGFHM3BBRRAB", "timestamp": "11 months ago"}, {"text": "Impossible to find the meeting point. No one was there, no sign, customer service with automated voice message.. We had to walk 30 minutes on bad road with luggage to find the office. Don't rent anything from here.", "author": "Namık Akkılıç", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB", "timestamp": "a month ago"}, {"text": "I really enjoyed my first experience renting from Click Rent located in Gran Canary. Danny, Antonio and Nestor was very helpful, they had a great personality, funny but straight forward. They really goes up and beyond to make sure we’re satisfied.\\nThis auto rental provided the best service we have ever had when renting a car. We would definitely rent from them again. Very professional and excellent service.\\nI would recommend this place to rent from if you want to be in and out in a timely manner. Have a clean fresh stylish vehicle to sport with great pricing. Once again I had an excellent experience...", "author": "ionut lungu-ionita", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYMTctR1ZBEAE", "timestamp": "a year ago"}, {"text": "Everything was fine overall. They didn’t charge us any additional fees, and the car was new and comfortable. However, there are a few things they could improve:\\n\\n1. Clearer Instructions at the Airport: There should be clear signs indicating where to go upon landing. They mentioned a shuttle bus would take us to the car rental location, but it was impossible to locate, and they didn’t answer the phone. Providing a detailed map or directions in the confirmation email would solve this issue.\\n\\n2. Staffing at the Office: There was only one person working in the office. When a full shuttle bus arrived, the wait time became frustratingly long. Unfortunately, we weren’t lucky (especially as we were traveling with a small child), so we had to wait a long time to complete the registration and pick up the car. This was a waste of time and could be easily avoided with better staffing.\\n\\nIn conclusion, while the car and lack of hidden fees were positive aspects, these operational inefficiencies need to be addressed for a smoother customer experience.", "author": "Katarzyna Krok-Jalocha", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQeWRLREpnEAE", "timestamp": "a year ago"}, {"text": "Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the car 😀", "author": "Zivilek Kaubriene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB", "timestamp": "a week ago"}, {"text": "we had a very nice experience with this company. got a great car (brand new Peugeot 2008 diesel , fully equipped, with 700km) with zero deductable, unlimited milege, full to full, 350Euros for 7 days. although their office is not inside the Las Palmas airport, the shuttle was comfortable and fast, it was easy to find their bus, their office is near and brand new, their staff was kind and professional. strongly reconmend the place!", "author": "Ildiko Toth", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnNWRidEZREAE", "timestamp": "11 months ago"}, {"text": "The car and the service were great. The only thing is that the shattle from the airpors is not simple to get", "author": "Shai Goorevitch", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB", "timestamp": "a month ago"}, {"text": "Amazing service! I’ve rented a car for more than a week, it was easy, efficient and spotless.\\nI was mostly grateful for the service that Carmen provided me, she was kind, efficient and provided with all the information that I needed. She even gave me a list with recommendations of sightseeing by car.\\nTheir shuffle driver Nestor was also helpful with helping with my bags, and he always driving between the airport and the office, so it was fast to get to the airport.\\nI’ve made the booking through booking.com and payed for insurance, which was not necessary, since Clickrent has a better coverage of damages.", "author": "Zarima Utsijeva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuaU9fSXpBRRAB", "timestamp": "a year ago"}, {"text": "Avoid at all cost. First of all the car rental is not at the airport, they offer a free shuttle. But there are no signs and no one to pick you up. Had to call to ask for the shuttle. They then pointed out the smallest scratches so I understood this was a money making effort. Upon return they checked forensically for damage even under the car. But couldn’t find anything. At last they found something they liked, sand in the car. Surprising given the destination?! They wanted to charge 50 EUR for a deep clean! I refused but they were adamant. To prove my point I went and did a vacuum on my own, cost me 2 EUR. The person handling my return was also rude even to my family including kids!\\nDon’t use this company.", "author": "Djamshid Ghavami", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzMnNYYnJBRRAB", "timestamp": "a year ago"}, {"text": "They have a shuttle bus between airport and their office, so very easy to get and return your car. Car condition is very good. I rented for a Mini copper and get a new Audi A1 in good condition. When I returned the car they just quickly check the car and told me everything is OK. I get back my deposit immediately.\\n\\nSuggest buy their full insurance.", "author": "K Hu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmb3V2U3dRRRAB", "timestamp": "a year ago"}, {"text": "Excellent service. Large variety of brand-new cars, in good condition - even if you book last minute. The staff was very friendly, and both the pick-up and drop-off was smooth. Its further away from the terminal, so you have to ride their free shuttle to get to the airport, but neither the lenght of the ride or the waiting times for the shuttle were long. Would definetely rent again and recommend this place.", "author": "Bence Nemes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmb3VpQ0N3EAE", "timestamp": "a year ago"}, {"text": "Everything was very easy and fast, the staff is super, kind and nice! I highly recommend it!", "author": "Andreea Popa", "rating": 5, "source": "dom", "timestamp": "a week ago"}, {"text": "Really good value - New Cars - Friendly genuine service. Booked and received a Fiat 500 with less than 1000km on the odo. Meeting place could be better advertised but once we figured that out, no problems getting the shuttle to the off site office- less than a 5 minute drive.", "author": "George Le Cornu", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "NOT PROFESSIONALS/. SCAMMERS\\nWe landed 8:20 at night,we used the restroom and we found the meeting point after looking for it ,it was raining,we waited for an hour for the van but nobody …", "author": "Odisseas Adrian", "rating": 1, "source": "dom", "timestamp": "11 months ago"}, {"text": "Great price performance ratio, very friendly and service oriented team, even German speaking with Daniel.\\nWEITER SO 🌟👏 …", "author": "Vural Aybar", "rating": 5, "source": "dom", "timestamp": "a month ago"}, {"text": "Honestly, astounded at how amazing the service from these guys has been - especially considering the amazing price! …", "author": "Owen Batchelor", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Great experience using ClickRent. Quick check in and check out and regular shuttles.", "author": "Rebecca Wilkinson", "rating": 5, "source": "dom", "timestamp": "2 weeks ago"}, {"text": "Rented a car from their office in Gran Canaria, and they ended up overcharging my security deposit. And their support is not doing anything so far, if they refund me what they unjustly charged, I will come here for an edit but in the first place, how could you trust such a company with your credit card authorization? Never again!", "author": "Burhan Sayılı", "rating": 1, "source": "dom", "timestamp": "9 months ago"}, {"text": "We have rented car several times in different cities, but so far clickRent experience was the best one. Everything was smooth and clear. Huge thanks to Carlos for super fast and friendly service! And of course a ride from Fran and Antonio was super welcoming. We are looking forward to use clickRent again", "author": "Dmitry Stepaniuk", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "I had a smooth rent, great customer service, and very nice affordable cars", "author": "Youssef", "rating": 5, "source": "dom", "timestamp": "4 months ago"}, {"text": "Really nice and helpful people (and they speak good english), whole rental went really smoothly, car was clean and brand new. Compared to other experiences with car rental on this island, this company is a real treasure. Big recommend!!!", "author": "Małgorzata Mazur", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "It would be very important to better mark where the shuttle is. Like a sign maybe. but apart from that point everything was fine. Thank You", "author": "Bruhs (leon)", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psb2MwWTJUa0ZWTlVGUGVucHJZbWM1YW1kdFZXYxAB", "timestamp": "5 months ago"}, {"text": "The station is about 5 minutes from the airport, the shuttle worked excellently. My car was like new, check-in and check-out were very well organized. I would book again.", "author": "Torben", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuMzV2OGJBEAE", "timestamp": "a year ago"}, {"text": "I do not recommend at all. This company is a scam and will take your money. They claim fake damages and make you pay for them. I recommend renting from companies that are based at the airport (not this one)", "author": "Jorge Gomis", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZZ2NYM3hBRRAB", "timestamp": "8 months ago"}, {"text": "Excellent, friendly and beyond helpful service at both collection and drop off for car.\\nShuttle to and from airport takes away the stress of trying to figure out the complicated roads in the area. Very quick and easy.\\nWill defo recommend 👌", "author": "Tony Kelly", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQb3ItX2d3RRAB", "timestamp": "a year ago"}, {"text": "Employeey were nice. We walked to the rental place, it was okay, wasn’t bad, and they got us back to the airport by bus. They send back the deposit on that day. I really recomend it!", "author": "Dorina Németh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfNnNPMXhnRRAB", "timestamp": "a year ago"}, {"text": "Very friendly and helpfull staff. Quick and correct in service. Close to the airport so very well recomended.", "author": "K. B.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT204MWQySXRia1Z4VTBkNFVIUnpheTB5ZEV4dU5GRRAB", "timestamp": "6 months ago"}, {"text": "Null !!\\nTerrible\\nHorrible\\nWaiting in the queue for 100 minutes is not the way to start your trip.\\nNo Bueno", "author": "Louise Anderson", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB", "timestamp": "a month ago"}, {"text": "The girl with tatoo in her arms with blond hair treated us very bad, she was so racist i don’t recommend. Not professional at all", "author": "Imane Tejari", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pabWVsaDBTMGt0U3psYVMweHFVRGRWZG1saVFXYxAB", "timestamp": "6 months ago"}, {"text": "Excellent service!\\n\\nWhen we arrived we got a bit lost and couldn’t find “el punto de encuentro”. If that’s your case, go to the uppermost floor and exit on gate number 2. Right opposite to gate 2 there’s a parking. Cross the street and enter the parking. Look right and walk a bit until you see the Punto the encuentro. There you’ll find clickrent team and their shuttle.", "author": "Sergi Toda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzNW9qNnVnRRAB", "timestamp": "a year ago"}, {"text": "One of the best rental car experiences I've had. Great service", "author": "Ian Pasin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkbmNVaFpSMWR1UWtWelQxRnlNblJJYURBMFdrRRAB", "timestamp": "6 months ago"}, {"text": "Car pick up was seamless and Carmen from the Gran Canaria branch who served us was wonderful. So friendly and made it all very easy. Car is excellent and brand new.", "author": "ian taylor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3anZUX1lnEAE", "timestamp": "a year ago"}, {"text": "Strongly suggest to choose this company . Very reliable and not trying to rip off .", "author": "kasia dabrowska", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB", "timestamp": "a month ago"}, {"text": "Plane got delayed, they don’t care to manage shuttle bus for delayed flight’s\\nAlso did not get a refund or partly refund, cancels the calls several times, I do not recommend them, no interest in customers needs", "author": "Matthias Kullmann", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRcnVqT09nEAE", "timestamp": "10 months ago"}, {"text": "Efficient service, good daily rate.\\nWould definitely use again and recommend", "author": "Tim West", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGbU1VeGhkVFowUVVzelpuUjRVbU4wVFdKcVoxRRAB", "timestamp": "4 months ago"}, {"text": "Car rent with shuttle from airport, but very close, so it takes about 5min from airport there. Also the People there are nice and helpfull, speak good english, so no problem to find with them.\\nThanks Dany, Carlos and Antonio :-)", "author": "Pepa Želizko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuOVpQcHJnRRAB", "timestamp": "a year ago"}, {"text": "We had to wait a while for the shuttle from the airport to the office however the overall experience was great. Carlos in the office was very friendly!", "author": "Arron Bhourlay", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBc0lMUFNREAE", "timestamp": "11 months ago"}, {"text": "Excellent service , very quick and efficient bookings, thanks again to Carlos ,Antonio and their Colleagues no hidden costs very surprisingly cheap (4 days under 25 euro Vw T-Roc)\\nAnd brand new vehicles 😁", "author": "Robert Turner", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuM29QdzJnRRAB", "timestamp": "a year ago"}, {"text": "Carlos in Gran Canaria was very helpful, didn't try hard sell on additional cover over what I had chosen, a very simple, easy car hire at a very good price for a very good car.", "author": "Colin Alden", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIak5tbGR3EAE", "timestamp": "a year ago"}, {"text": "Very professional, kind, effective and entertaining.\\nI strongly recommend this rental in Las Palmas\\nCarmen, Antonio (shuttle service) and Isaac have been dealing with me", "author": "Addetto Difesa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIajVLRVp3EAE", "timestamp": "a year ago"}, {"text": "Everything went fast and without any problems. Really recommend that car rental company", "author": "Max", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmc01PNE1nEAE", "timestamp": "a year ago"}, {"text": "Everything went smoothly.\\nCar was in excellent shape and the shuttle bus is very convenient.", "author": "Smirres lordling", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQLXZHaGdBRRAB", "timestamp": "a year ago"}, {"text": "The whole experience was painless from getting picked up by Antonio who was very nice to checking in with Carlos who was also very very good so very happy", "author": "Hugh Fraser", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3c196VmlBRRAB", "timestamp": "a year ago"}, {"text": "With car was everything good.", "author": "Jarosław Dudek", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB", "timestamp": "a week ago"}, {"text": "Got a 5 mm scratch - 450 euros…. Never again!!", "author": "Alexander Gligorijevic", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnMDhES2FBEAE", "timestamp": "11 months ago"}, {"text": "Fast & professional. Really recommend!", "author": "Alexander Hellberg", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwWGExWk1TSEJ0TlZKalZVWnVNa1V6ZURGUVpGRRAB", "timestamp": "5 months ago"}, {"text": "Nice people, no hidden fees, easy process, good cars.", "author": "Sylvie Tubez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNROVB5SW1RRRAB", "timestamp": "10 months ago"}, {"text": "🫡😉👍", "author": "Zoltán Kerékgyártó", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KVk9WTnRZV1JHVjFSM2ExbDNjMHM1YTFNNFNHYxAB", "timestamp": "7 months ago"}, {"text": "Too many hidden charges", "author": "La", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB", "timestamp": "4 days ago"}, {"text": "Adrian S. Is such a nice Guy!🙏 Good work", "author": "Yung yury", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3OHQ2S1NREAE", "timestamp": "a year ago"}, {"text": "Very good service from Carmen and Francisco.", "author": "Sam Shahoud", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OC1POUh3EAE", "timestamp": "a year ago"}, {"text": "Not easy to pick up the car", "author": "Lucia Illuminati", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmcnUzYlJnEAE", "timestamp": "a year ago"}, {"text": "Very bad", "author": "Mona Stoicescu", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzaVByQ2FBEAE", "timestamp": "a year ago"}, {"text": "Quick service, friendly staff definitely I will use Click Rental in the future!", "author": "George-Adrian Dumitrascu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB", "timestamp": "a day ago"}, {"text": "Nice experience with great people , very nice and new cars !!!", "author": "Cosmin Anghelache", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB", "timestamp": "4 days ago"}, {"text": "Wir haben für eine Woche ein Auto gemietet. Preislich top! Wir haben nur 160€ bezahlt.\\nDa wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt. Wir nahmen dann für 12 € ein Taxi.\\nIch nehme an, dass das Shuttle draußen vor Terminal 7 fährt, zumindest würden wir dort abgeladen (s. Fotos)\\n\\nBei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit der Dokumentation von vorhandenen Schäden, die man bei der Abholung bekommt, abzugleichen. Wir wurden nämlich auf einen schaden angesprochen, hatten aber dann alles gleich zur Hand und alles war gut!\\n\\nWir würden hier wieder mieten. :)", "author": "Nancy Müller", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB", "timestamp": "2 weeks ago"}, {"text": "Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. Al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo.\\nOltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta.\\nPoco precisi e errate informazioni.", "author": "piero", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB", "timestamp": "a month ago"}, {"text": "Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min Fahrt zur Station, schnelle und sehr freundliche Bearbeitung und herausgabe der Schlüssel. Fahrzeug ( JEEP ) war sauber und stand schon direkt vor der Station. Tolles Fahrzeug, welches wir nach 14 Tagen wieder an der Station abgeben konnten. Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit erst mit 8:00 Uhr angegeben war. Freundliche und schnelle Kontrolle, sowie sofortige Freischaltung der 2000.€ Kaution, welches mit die Kreditkartenapp nach 2 min. schon bestätigt hatte. Wir ( 6 Fahrgäste ) wurden umgehend wieder mit dem Shuttlebus zum Airport LPA gebracht. Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen.", "author": "Salvatore Altieri", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB", "timestamp": "3 months ago"}, {"text": "Le point de rdv n'est pas indiqué, un panneau ou une pancarte serait bien de le mettre, ou d'envoyer la vidéo avant notre arrivée.\\nJ'ai du appelé le service qui parle anglais. ( moi qui parle pas un mot d'anglais c'était compliqué)\\nSuite a mon appel, ils ont envoyé la vidéo. ( avant sa aurait étais plus simple).\\nLe reste nickel, la navette, le réception du véhicule, voiture récente, propre, le temps pour faire les papiers été rapide.\\nLe retour du véhicule a été rapide aussi.\\nLe personnel super sympa.", "author": "Vanessa Ribeyre", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214YVQzQlpNVTFhUjBWcFFVbEJUV3hrT0dnM1dWRRAB", "timestamp": "4 months ago"}, {"text": "Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden.\\nDas Personal war äußerst freundlich und hilfsbereit, und die Abwicklung verlief dank des vorab möglichen Online Check unterwegs zur Filiale ins besonders zügig.\\nDas Fahrzeug war in einwandfreiem Zustand sogar ein besseres Modell als ursprünglich gebucht.\\nAuch das Preis-Leistungs-Verhältnis überzeugt auf ganzer Linie.\\nLediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert!", "author": "Alayn G.O", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB", "timestamp": "2 months ago"}, {"text": "La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. De hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un Seat Ibiza, pero bueno. Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la simpatía de verdad. Miró el coche, y todo perfecto. Mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. Lo dicho, muy cercana. Gracias Mery. Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial, un Seat Ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. Perfecto todo.", "author": "Felipe Juan Padilla Pires", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB", "timestamp": "3 months ago"}, {"text": "Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. La navetta era già pronta per accompagnarci all'aeroporto. Arrivati in soli 5 minuti. Direi servizio eccellente. Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. Di questo daremo conferma ai lettori appena ci verrà restituita la caparra", "author": "Aleaquilani Aquilani", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB", "timestamp": "2 weeks ago"}, {"text": "Finger weg – seriös ist anders.\\n\\nBei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 500 € in Rechnung gestellt. Laut Vermieter handelt es sich um einen Kratzer im unteren Bereich der vorderen Stoßstange, praktisch im Unterboden unterhalb der Frontschürze. Wir haben das Fahrzeug bei Übernahme und Rückgabe umfassend fotografiert – lediglich den Unterboden nicht, da man sich dafür unter das Auto hätte legen müssen und der Boden auch noch nass war.\\n\\nWir haben diesen Schaden definitiv nicht verursacht. Zudem befindet er sich an einer Stelle, an der es nicht möglich ist, dass er durch Dritte entstanden sein könnte. Auffällig war außerdem, dass der Mitarbeiter bei der Fahrzeugrücknahme als Erstes gezielt den vorderen Schweller kontrolliert hat.\\n\\nEigenartig fanden wir im Nachhinein auch, dass wir bei der. Anmietung ein Fahrzeug-Upgrade erhalten haben, nachdem die (leider sehr unfreundliche) Mitarbeiterin am Schalter erfahren hatte, dass wir über CHECK24 eine deutsche Vollkaskoversicherung ohne Selbstbeteiligung abgeschlossen hatten. Im Nachhinein ergibt für uns einiges mehr Sinn – Schelm, wer Böses dabei denkt. Anscheinend ist dies eine Masche bei dieser Autovermietung, wie man den anderen Google Bewertungen entnehmen kann, die wir besser im Vorhinein gelesen hätten.\\n\\nDie einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughafen.\\n\\nWir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutzen und können nur dringend davon abraten.", "author": "Hannes Wolk", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB", "timestamp": "2 weeks ago"}, {"text": "Nous avons loué une voiture chez Click & Print pour notre séjour à Gran Canaria.\\n\\nPoints positifs :\\nLa vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver.\\nLe véhicule était impeccable, récent et parfaitement conforme à la réservation.\\nL’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique.\\n\\nPoints à améliorer :\\nÀ notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. Un simple message indiquant un délai ou une présence visible éviterait cette situation.\\nL’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. Personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme.\\n\\n👉 En résumé : service sérieux, voiture nickel, mais expérience client perfectible sur l’accueil.\\nJe recommande malgré tout et referai appel à eux maintenant que je connais le fonctionnement.", "author": "Virginie SOULIER", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB", "timestamp": "a week ago"}, {"text": "Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada.\\nPrimero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. Muy bordes y te castigan por no coger su seguro. Muy mal.", "author": "Xavi Ordoñez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB", "timestamp": "3 months ago"}, {"text": "Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert. Die Kaution war etwas hoch, aber ansonsten super. Das Auto war neu und in einem super Zustand. Würden wieder dort buchen.", "author": "HabdamalneFrage!?", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB", "timestamp": "a month ago"}, {"text": "Im Urlaub angekommen , erstmal an die Arbeit machen die Autovermietung zu finden. Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder , Auskünfte über die Autovermietung clickrent am Flughafen, haben wir uns dazu entschieden uns selbst auf die Suche zu begeben. Damit angefangen haben wir uns erstmal am Flughafen durchgefragt und wurden in sämtliche Himmelsrichtungen geschickt um dort im Endeffekt keinen Shuttlebus aufzufinden. Aber mit der Zeit wurde unsere Herde der Suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 Rumirrende die auf der Suche nach Clickrent waren. Nach gerade mal anderthalb Stunden haben wir den Abholort vom Shuttle am Flughafen entdeckt. Wie schon geahnt ist dieser wirklich auf keinste Art und Weise ausgeschildert. Aber wir wollen uns ja nicht beschweren, wir sind nicht wirklich im Urlaub , wir sind durchweg Pfadfinder . Bei der Autovermietung angekommen mussten wir schockierend feststellen dass es auf Gran Canaria Schlangen gibt . In dieser reite sich unsere Herde weitere 30 Minuten ein um anschließend eine super günstige Kaution von 2000€ zu zahlen. Über das Auto ansich kann ich nichts negatives sagen . Die Rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine Schlange aufzufinden war . Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob man es rechtzeitig zum Flieger schafft , kann ich nur ans Herz legen , entscheidet euch für clickrent . Persönlich hatte ich noch nie so ein unbeschreibliches Erlebnis bei einer Autovermietung", "author": "Michael Schäfer", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB", "timestamp": "2 months ago"}, {"text": "El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. La entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. En general ha sido buena experiencia.", "author": "ALEJANDRO DDR", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB", "timestamp": "5 days ago"}, {"text": "Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. Al llegar finalmente a la oficina la información tampoco fue precisa. Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! Totalmente desproporcionado pero no quedaba otra. Al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. … Muy mala experiencia. Nada recomendable.", "author": "Borja Basozabal", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB", "timestamp": "2 weeks ago"}, {"text": "Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et auto saame kätte Clickrent-st. Seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui pole varem käinud cran canarial. Ehk siis peate minema teisele korrusele õue ja station 2 juurde.\\nAuto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav.", "author": "Meeli Tali-Aruväli", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB", "timestamp": "2 months ago"}, {"text": "Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. Dort mussten wir vielleicht 15 Minuten warten bis wir an die Reihe kamen und das auch nur weil der Herr vor uns keine Kreditkarte hatte und somit die Kaution nicht hinterlegen konnte.\\nAlso unbedingt eine echte Kreditkarte dabei haben und keine Debit Karte, die wird nicht akzeptiert. Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer Zeit den Schlüssel ausgehändigt hat. Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf Deutsch eingestellt.\\nWir waren eine Woche auf der ganzen Insel unterwegs und wir waren sehr zufrieden damit. Das zurückgeben ging bei der selben netten Mitarbeiterin sehr flott und ohne Beanstandungen. Die Kaution war einen Tag später auch schon wieder freigegeben. Alles in allem sehr zu empfehlen. Gebucht hatten wir über Check 24 und mussten vor Ort auch außer der Kaution nichts bezahlen.", "author": "Sebastian Ostermeyr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB", "timestamp": "2 weeks ago"}, {"text": "Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. Bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. Goede medewerkers, vooral Antonio is heel vriendelijk.", "author": "Ferhat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB", "timestamp": "2 months ago"}, {"text": "Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach, die Abholung (Transfer) hat super geklappt. Wichtig ist es, den Sammelpunkt auf dem Abflugdeck (Etage 1 Ausgang 1) aufzusuchen und ggf. einfach paar Minuten zu warten. Die Übergabe verlief schnell und das Fahrzeug war sehr sauber. Wir waren sehr zufrieden und kommen gern wieder.", "author": "Jay Jay", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB", "timestamp": "3 weeks ago"}, {"text": "Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterwegs. Am besten einfach bei Clickrent anrufen und nachfragen! Ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine Buchung dort bekannt ist ;) Denn der Weg zu Fuß vom Flughafen zieht sich. Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo angeblich über mietwagen-billiger.de alle Versicherungen ohne Selbstbeteiligung mit drin waren!), also super Preis-Leistungs-Verhältnis!\\n\\nGerne wieder 👍🏻", "author": "Nick Schäfer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB", "timestamp": "a month ago"}, {"text": "Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. Na een uur zoeken hadden we de super slecht vindbare plek gevonden. Helaas niemand aanwezig. Sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. Onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas.\\n\\nEenmaal aangekomen kwam het volgende ellende.\\nEr werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. Dan moest ik maar via de creditcard van me vrouw €200 borg betalen. Daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! Ja maar niet bij ons zei de man achter de balie. Ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine.\\n\\nMet het inleveren van de auto hebben wij expres van te voren de auto gereinigd en vol getankt om nog meer betalingen te moeten doen als we naar huis willen. Gelukkig maar dat dit goed ging.\\n\\nDaarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn.\\n\\nBij andere bedrijven was het altijd van te voren boeken verzekering betalen , auto staat klaar en de vakantie kan beginnen.", "author": "Stefan Delil", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB", "timestamp": "3 weeks ago"}, {"text": "Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. Dit informatiepunt was echter nergens te vinden. Meerdere mensen gaven aan dat we ter hoogte van de Spar moesten wachten en dat daar elke 10 minuten een busje zou komen. Na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien.\\n\\nWe hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. Na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto.\\n\\nEenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. Vervolgens kregen we te maken met onduidelijke en hoge kosten. We moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij ClickRent de schade zou dekken. Daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent.\\n\\nOok bij het terugbrengen van de auto verliep alles traag. Het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht.\\n\\nAl met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder op Gran Canaria.", "author": "Rick Westerink", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB", "timestamp": "3 weeks ago"}, {"text": "Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. Así mismo se niega a devolverme el dinero ya que según ellos no son responsables. Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero.", "author": "Carlos Moreno", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB", "timestamp": "2 weeks ago"}, {"text": "Appena tornato da Gran Canaria e prima volta con ClickRent.\\nLa mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. Unico inconveniente risolto da un buon servizio della navetta. Ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. Anche con questa formula ClickRent si è dimostrata la più vantaggiosa. Consigliatissima!!", "author": "Nino Amoruso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB", "timestamp": "4 weeks ago"}, {"text": "Esperienza pessima, non noleggiate l’auto in questo Rent:\\nPagato con Booking 30€ di noleggio per una Fiat 500 per 3 giorni + 50€ di assicurazione completa.\\nArrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). Abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza.\\nNel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. Arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo).\\nFortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!!", "author": "Guglielmo Cattaneo", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB", "timestamp": "3 months ago"}, {"text": "Ich war schon ca. 50x Kunde bei Mietwagenanbietern, aber noch nie so enttäuscht wie hier.\\n\\nWarum? Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spanische KI-Hotline, keine Ausschilderung und eine nicht brauchbare Wegbeschreibung vorab. Da nur ein Shuttle zu dem Zeitpunkt fuhr und die Schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden.\\n\\nDa es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte Inspektion der Schäden am Auto und machten nur oberflächliche Fotos und Videos. Bei der Rückgabe wurde dann vorne unterhalb der Frontschürze(!) ein Mini-Kratzer festgestellt, welcher angeblich durch uns verursacht wurde. Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag wurden zudem noch weitere 60 € vom Konto ohne Angabe von Gründen abgebucht. Seit drei Wochen versuche ich clickrent zu erreichen, aber die E-Mails werden ignoriert. Werde die Sache jetzt meinem Anwalt übergeben, denn dieses Vorgehen scheint Masche zu sein...", "author": "Florian Reisig", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB", "timestamp": "a month ago"}, {"text": "Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich angekommen. Bei der Nachfrage, ob die Uhrzeit der Abholung angepasst werden kann, bekam ich nur eine patzige und freche Antwort dass es nicht möglich sei und man am Flughafen mal richtig nach dem Shuttle schauen sollte. Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert werden, während ich auf das Fahrzeug wartete, lästerte die Angestellte (geschätzt auf 60 Jahre kurze graue Haare) auf Spanisch mit Ihren Kolleginnen und Kollegen ab, während ich vor Ihr stand. Das freche Lächeln der Dame empfand ich als extrem provokant. Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte man mir einen Schaden am Fahrzeug. Wie gut, dass ich vorab ein Video vom Zustand des Fahrzeugs gemacht habe.\\nScheint wohl eine Masche zu sein.\\nClickRent nie wieder!", "author": "Dustin", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB", "timestamp": "4 weeks ago"}, {"text": "Passer par la plateforme DoYouSpain. Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. La plateforme vous en endors en disant qu'il fallait aller dans la politique de carburant. Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok", "author": "Hervé COESSIN de la FOSSE", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB", "timestamp": "a month ago"}, {"text": "Wir haben uns im Vorfeld über sämtliche Autovermietungen informiert. Hatten dann bei Clickrent direkt gebucht - mit der ‚höheren‘ Preiskategorie.\\nBei Abholung wurde alles super einfach und schnell erklärt. KEINE Kaution (lediglich die übliche 200€ Pauschale für Sprit), keine extra Kosten, kein dummes gequatschte a la „wissen sie denn was es kostet wen bla bla bla“ , sondern einfach eine schnelle und einfache Übergabe.\\nZum Auto selbst kann ich nur sagen dass er sauber und vollgetankt war!\\nAlles in allem wie gehofft, damit der Urlaub nicht stressig anfängt/aufhört.\\nBei Abgabe kam der Kommentar „you book full coverage“ so dass lediglich nach der Sauberkeit im Innenraum geschaut wurde und ob wirklich vollgetankt war. Kein nerviges Kontrollieren, keine Fotos raussuchen, kein auf die Knie gehen um sich Schäden zeigen zu lassen (leider selbst so bei Goldcar erlebt).\\n2 Minuten später hatte ich bereits eine Benachrichtigung meiner Bank dass das Geld wieder freigegeben war!\\n\\nKann jedem nur empfehlen es genau so zu machen. Die Straßen und andere Verkehrsteilnehmer lassen es quasi gar nicht zu dass kein Schaden entsteht - für die Paar Euro mehr auf der Clickrent Seite gebucht entstehen dann auch im nachhinein keine ewigen Diskussionen mit einer Zusatzversicherung aus dem Internet.\\n\\nZum Abschluss haben wir uns entschieden zum Flughafen zu laufen, wobei mehrere Mitarbeiter fragten ob wir uns sicher sind und nicht doch geshuttelt werden wollen.\\nEin fehlendes Engagement der Mitarbeiter und auch fehlende Freundlichkeit der Mitarbeiter, kann zumindest ich nicht bestätigen!\\n\\nDas einzige was verbessert werden könnte ist die Beschreibung zum Shuttlepunkt und ggf. eine Telefonnummer bei der man direkt mitteilen kann dass man da ist (die Servicenummer ist Schwachsinn).\\n\\nWürde es unter den genannten Voraussetzungen sofort jedem empfehlen und würde so, auch selbst wieder buchen! :)", "author": "Peter Pan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJc2FqVnl3RRAB", "timestamp": "9 months ago"}, {"text": "Diese Autovermietung ist absolut nicht zu empfehlen.\\nErst mal muss man sich am Flughafen samt Gepäck und Kindern quälend lange durchfragen, wo der Standort eigentlich ist. Es gibt keinerlei Hinweisschilder. Kaum eine Person am Flughafen kennt die Firma. Es hat fast 30 Minuten gedauert, bis wir mit Hilfe anderer Personen erfahren haben, wo man per Shuttle abgeholt wird. Auch dort war kein Schild angebracht. Niemand kam. Wir mussten die Hotline von Click Rent anrufen und uns durch eine KI Ansage kämpfen die nur spanisch sprach. Weitere 20 Minuten später wurden wir dann endlich abgeholt.\\nVor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik... ohne Worte.\\nDas SCHLIMMSTE aber war, das uns\\n6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Reinigungskosten von der Kaution \\"gestohlen\\" wurden, WEIL etwas Sand auf den Sitzen und im Fußraum zurückgeblieben ist. UNFASSBAR!\\nWir haben schon dutzende Male Mietwagen um Urlaub gebucht,\\ndoch sowas ist uns bisher niemals untergekommen.\\nDas war definitiv das erste und auch das LETZTE MAL das wir hier Kunde waren!!!", "author": "DJ Dan", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB", "timestamp": "2 months ago"}, {"text": "A fuir !!! L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré.\\nIl ne veut rien savoir au guichet et nous dit de partir. Je lui demande le remboursement et il me répond de voir avec Do you spain .\\nNous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la preuve que mon permis est bien valide.\\nContacter Do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. Ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ...\\nNous n'allons pas en rester là .\\nA fuir Clickrent et Do you spain, des voleurs !", "author": "Manu gaigier", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB", "timestamp": "3 weeks ago"}, {"text": "Quiciera poner - una estrella no la merecen.\\nUna experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada de competitivos. No alquilar con esta empresa.\\nMi mala experiencia ocurrió en las palmas de grancanaria. Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. Al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. En total alquilar un coche por 1 dia\\n137€ que no devuelven mas.\\n\\nTotal alquiler coche 1 dia 421€.\\nes de muerte de susto la estafa de esta empresa.\\nMe han devuelto\\n285€\\nNo es justo que esto pase tanto dinero publicidad engañosa. Juzguen ustedes y no alquiler. Todos los que estábamos esperando a recibir las llaves del coches en ese momento estaban inconforme por tatas tasas que cobran.", "author": "juliana santamaria", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB", "timestamp": "2 weeks ago"}, {"text": "Attention : arnaque assumée\\nIls ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. J’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. Leur réponse ? La partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». Évidemment faux : il s’agissait clairement d’une seule et même rayure.\\nMauvaise foi totale.\\nJ’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. Leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent.\\nPratique malheureusement courante chez certains loueurs low-cost. À éviter absolument.", "author": "Benjamin Barbaud", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB", "timestamp": "3 weeks ago"}, {"text": "Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. La señorita nos atendio rapidamente y Byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. Muchisimas gracias !!", "author": "Mercedes Rein- Loring", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB", "timestamp": "a month ago"}, {"text": "Sehr unseriös!\\nBei der Auto Abholung musste ich ewig warten… vor Ort habe ich dann erfahren das die sich 1000€ vormerken/ abbuchen und ich die in einem Zeitraum von einem Monat zurück erwarten kann….\\n\\nDas Auto selbst eine Zumutung für die Landschaft….\\nWir sind damit quer durch die Insel gefahren also auch durch aus Berg hoch und runter was für die Inseln keine unübliche Strecke ist.\\nDafür war das Auto leider gar nicht geeignet.\\nBei 30-40 km/h eine schaltempfehlung vom 1. Gang gegeben.\\nÜber diese knapp 40 km/h kam man keines Wegs drüber…\\nZumindest passten gequetscht 4 Koffer in die Schrott Karre.\\nPEUGOT 208\\nOnline haben wir Seat Ibiza „oder ähnliches“ gemietet.\\nDas Auto hatte schon einige Schrammen und Farbe ist abgeblättert. Man hatte schon die Sorge das einem was angehangen wird.\\nDie Rückgabe ging jedoch zügig und das Geld kam glücklicherweise auch schnell zurück - am selben Tag noch.", "author": "Alina Jühlke", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGU1pFdzJlVTlyVmxWNmRIZFZWRGhCUXpSUVVIYxAB", "timestamp": "4 months ago"}, {"text": "Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione.\\nPer quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata.\\nNel complesso, comunque, lo consiglierei.", "author": "Dorotea Cinquino", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB", "timestamp": "3 weeks ago"}, {"text": "Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Vermieter in Las Palmas sagte uns als er den Aufkleber von clickrent erblickte ungefragt, dass ClickRent ein sehr guter Vermieter und sehr zuverlässig sei. Das war für uns angenehm zu hören und sehr beruhigend. Man hat ja schließlich 1000€ Kaution hinterlegt. Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und zahlte nur 19 € für 2 Tage. Klasse Laden !", "author": "MrHajoge", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB", "timestamp": "3 months ago"}, {"text": "Super Erfahrung hier gemacht. Das einzig schlechte war die Abholung vom Flughafen, die hat sich verzögert, weil es unterwegs einen Autounfall gab und die Fahrerin im Stau stand. Aber wir haben über die Hotline jemanden erreicht ( bei der Bandansage die 0) und wurden dann darüber informiert.\\nIch hatte auch einen Super Wagen bekommen, gebucht war Seat Ibiza o.ä. und bekommen habe ich einen Audi A1 😁 ohne Extrakosten o.ä.\\nUnd der geblockte Kreditkartenbetrag wurde sofort wieder freigegeben nach Abgabe. Top Service, super nette Mitarbeiter.", "author": "René Mösezahl", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5c1pXaFFaRFpQVTJ0S2FXNVlaMnhyYkdseU1VRRAB", "timestamp": "4 months ago"}, {"text": "Temps d'attente de 1h30 pour récupérer le véhicule\\nN'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. Des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible.", "author": "Guillaume Laboudigue", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB", "timestamp": "2 months ago"}, {"text": "Achtung. Nicht mieten. Abzocke bei Rückgabe! Haben gerade 230 Euro extra bezahlt. Die günstigen Preise werden durch kleinste Kratzer bei der Rückgabe finanziert, die man sich dann teuer bezahlen lässt. Sicher nicht durch uns verursacht. Wir haben sogar Fotos vom Auto gemacht vor der Abholung, aber die Kratzer die man dann gefunden hat (mit viel Abtasten auf den Knien) waren UNTER der Stoßstange. Da wird auch bei der Übergabe nicht gemeinsam geschaut. Es ist auf jeden Fall Masche. Die Bilder sprechen für sich.....", "author": "Florian R.", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnb3BxcDJBRRAB", "timestamp": "11 months ago"}, {"text": "Wir können uns nur Positiv über diesen Autovermieter äußern.\\nWenn man den Anweisungen folg um zu dem Treffpunkt zu kommen, kommt man auch tatsächlich an. Es war eine Promte und unkomplizierte Abwicklung beim abholen und zurückgeben des Fahrzeugs. Wir wurden darauf aufmerksam gemacht im vorfeld alle Schäden zu fotografieren und mit der Kamera einmal um das Fahrzeug zu laufen.\\nSehr nettes Personal und das Auto war auch sehr neuwertig. Können den Vermieter nur weiter empfehlen.", "author": "Patrizia Schulte", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB", "timestamp": "2 months ago"}, {"text": "Auténtica estafa y cero profesionalidad.\\nHice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. Me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. Ni el 50%, ni el 10%, ni un céntimo.\\n\\nPrometen una cosa por teléfono y luego desaparecen.\\nNo respetan sus propias políticas.\\nNo dan soluciones.\\nNo muestran transparencia.\\nSimplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse.\\n\\nUna empresa así no merece la confianza de ningún cliente.\\nPésima gestión, trato nulo y una sensación clara de haber sido engañado.\\n\\nNo volveré jamás.\\nY ojalá esta reseña ayude a otros a evitar pasar por lo mismo.", "author": "Alexis González", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB", "timestamp": "2 months ago"}, {"text": "Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person gab es ebenfalls nicht. Es hat über 1 1/2 Stunden gedauert, bis jemand kam und das auch nur, weil ein anderer Kunde in der Vertragsabteilung in Madrid angerufen hat.\\nDanach war dann alles soweit in Ordnung.", "author": "Makwakkwak Mak", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB", "timestamp": "a month ago"}, {"text": "Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , como el chico que recibió el vehículo, Dani , una atención excelente . Sin duda volveré a alquilar con esta compañía", "author": "Aaron", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB", "timestamp": "2 weeks ago"}, {"text": "Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante, pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. disfruten de sus vacaciones y no sean tontos.. un saludo y felices vacaciones .", "author": "Roberto Pérez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB", "timestamp": "a month ago"}, {"text": "Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de Gran Canaria. En la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). Sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. Además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. Si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. Lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. Al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en Internet. Repito, ClickRent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. No reserves con ellos.", "author": "Alexandra R.R.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB", "timestamp": "a month ago"}, {"text": "De momento muy mal, iré actualizando.\\nPrimero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar.\\n40 minutos esperando en el aeropuerto a la van.\\nLlegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. Surrealista, veremos a ver cuándo me atiendan, de momento hay ya dos personas con distintas reservas que han salido cabreadisimas. Iré actualizando..", "author": "Belinda F.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB", "timestamp": "2 months ago"}, {"text": "Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mitarbeiter bemerkt. Nach Abgleich mit den bekannten Schäden, die im Computer vermerkt sind, wurde mir der Schaden glücklicherweise nicht angelastet. Ich bin absolut zufrieden.\\nEinen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem Voucher bei der Adresse. Eine Bandansage über die angegebene Telefonnummer über den Abholpunkt am Flughafen, welche in einer fremden Sprache zu hören ist, ist bei Verkehrslärm am Flughafen schwierig zu verstehen. Ich habe lange gebraucht diesen Punkt zu finden.", "author": "Josef Spieler", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB", "timestamp": "3 months ago"}, {"text": "Hat alles gut geklappt. Haben den ShuttleBus nicht gefunden, hätten aber jederzeit anrufen können. Auch Zu fuß kann man den Standort relativ einfach erreichen. Auto war nagelneu, wir würden aufgeklärt aber nicht dazu gedrängt Zusatzleistungen zu buchen. Unterboden wurde kontrolliert, die Bordsteinkanten in GranCanaria sind sehr hoch, wenn man das beachtet und kein Schaden verursacht läuft alles schnell und reibungslos. Shuttle zum Flughafen mit Abgabe hat nicht mal 10 Minuten gedauert.", "author": "Niklas Florea", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvbk9XbmtBRRAB", "timestamp": "9 months ago"}, {"text": "El servicio fue lamentable!\\nPrimero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto.\\nAdemás de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos.\\nPor último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática.\\n\\nClaramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona.\\n\\nDefinitivamente NO recomiendo ClickRent. Terrible experiencia.", "author": "Paula Urrea", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB", "timestamp": "3 weeks ago"}, {"text": "Alles war perfekt! Das Einzige, was unklar war, war der Treffpunkt für den Transfer, deshalb sind wir schließlich mit dem Taxi gefahren. Trotzdem gebe ich fünf Sterne, da der Service ausgezeichnet war. Das Auto wurde sehr schnell übergeben, und auch die Rückgabe lief reibungslos. Das Auto wurde geprüft, und wir waren schon auf dem Weg mit dem Transfer zum Flughafen. Die Kaution wurde sofort auf die Karte zurückerstattet👍🏻\\n\\nLeute, die über Betrug schreiben: Macht immer zusätzliche Versicherungen auf externen Websites, und erstellt vollständige Video- und Fotoaufnahmen des Autos, bevor ihr die Mietstation verlasst. So werdet ihr keine Probleme haben😉", "author": "Jakob Gossen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2d3ZfajVBRRAB", "timestamp": "a year ago"}, {"text": "Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit. Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2. Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden.", "author": "Siffbude", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB", "timestamp": "a month ago"}, {"text": "Ціна на авто яку запропонувала ця компанія була найкраща. По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не приймає картки American express. Поряд стояла ще одна пара сварилась на іспанській мові , вийшли не задоволені і не взяли машину. Потім прийшла наша черга. Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за \\"заправку\\" автомобіля 35€. В кінцевому випадку ми значно переплатили. Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням.", "author": "Сергей Круть", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB", "timestamp": "3 weeks ago"}, {"text": "Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar.\\n\\nSe pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa.\\n\\nNo sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear.\\n\\nNo repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen.", "author": "Andrea González", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB", "timestamp": "2 months ago"}, {"text": "Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholzeit da und sie haben uns die halbe Stunde warten lassen, weil wir kein Upgrade wollten. Dabei haben wir die ganze Zeit auf unser fertiges Auto geschaut (Vertrag und Kennzeichen lag bereits vor, da online eingecheckt). Hatte 2 kleine Kinder dabei.", "author": "Alexander Reimchen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB", "timestamp": "3 weeks ago"}, {"text": "He alquilado unas cuantas veces aquí y comparándolos con el resto de compañías en gran canaria puedo decir que es la mejor en la que he contratado. El trato humano que tienen es de 10, siempre muy cercanos. Los coches que he usado eran nuevos y cuando no me di cuenta y reservé un coche automático (jamás habia cogido uno) me enseñaron amablemente a usarlo y así estar cómoda.\\nMe vine por el precio pero me quedo por el equipo que tienen.", "author": "María Teresa Guerra Guerra", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKaFluVldWVEJZUmtGQ01IcFpVMVZvVFVJd1pIYxAB", "timestamp": "3 months ago"}, {"text": "Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort. Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur schwer nachvollziehbare Zahlungen leisten. Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum.", "author": "Fynn Hüttersen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB", "timestamp": "2 months ago"}, {"text": "Entregamos el coche lavado con el depósito lleno, impecable. Antes de llevárnoslo hice un vídeo del estado del auto. Al entregarlo lo chequearon como si no hubiese un mañana y nos dijeron que había un pequeño desperfecto en la chapa en el maletero . Le dije que teníamos fotos hechas cuando lo recogimos y que había ese y otros 2 pequeños arañazos ( pequeñísimos ). Pero estaban fotografiados. Al ver que teníamos fotos, la cosa cambió. Son unos jetas . Querían cobrar del seguro el rasguño. Desde luego no son de fiar. He alquilado otros vehículos en otras compañías y no he tenido estas murgas . No me ofrecieron ninguna confianza . Tanto es así que antes de que nos dijeran lo del rasguño ya me comenté a mí marido : estos no s van", "author": "julia carrera andres", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toVGVHeEhXVkJFTFRGNFIwdFRYMUp3U0cxc2RrRRAB", "timestamp": "3 months ago"}, {"text": "Gebucht über doyouspain mit einer vollen Versicherung. Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der Buchung der Versicherung, und diese auch noch alle Daten nach Aussage erhalten haben, einem nochmal eine Versicherung berechnen und dies dann anders verkaufen. Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären. Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen.", "author": "Rom An", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB", "timestamp": "2 months ago"}, {"text": "Freundlicher Service. Die Mitarbeiter haben uns nichts aufgeschwatzt oder absichtlich Angst gemacht. Der Shuttlebus am Flughafen ist nicht leicht aufzufinden, da leider keine Beschilderungen angebracht werden können. Man muss einfach geduldig an der beschriebenen Stelle warten. Es hat alles super geklappt und alle Mitarbeiter waren freundlich.\\nEin Stern Abzug allerdings, da es fast 5 Wochen gedauert hat, bis die Blockierung der Kaution auf der Kreditkarte aufgehoben wurde. Vor Ort wurde uns zugesagt, das diese direkt am gleichen Tag storniert wird, da alles mit dem Auto in Ordnung war. Hat uns persönlich zu lange gedauert.", "author": "A", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCUGFrNVlaWGhMTjNOalJWUTJVSFpvVEdRd1prRRAB", "timestamp": "4 months ago"}, {"text": "Une honte entre le prix affiché sur le site internet et la finalité. Nous payons 195,29€ sur le site, une fois sur place on nous demande de payer en plus soit 1000€ de caution soit 393€ pour l’assurance.\\nNous avons voulu prendre la caution avec la carte de crédit de ma femme mais ils n’ont pas voulu car elle n’était pas à mon nom alors que ma femme était présente. Nous étions dans l’impossibilité de changer de loueur car nous étions au milieu de nulle part avec deux enfants en bas âge 2 et 5 ans. Nous avons donc pas eu le choix de payer les 393€ supplémentaires + 50€ supplémentaires car nous rendons le véhicules hors des horaires d’ouvertures. Donc au lieu de payer 195,29€ la location nous avons eu une facture total de 638,29€ !!!!! + une caution de 200€ pour l’essence !!!!! Je ne vous recommande en aucun cas ce lieu ! Un vrai coût qui n’était pas prévu dans notre budget vacances avec nos enfants ! Dégoûté !!!", "author": "Manu Nikolic", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KNVVUQmliRTlzUjBWa2NYZDViV2xGUVVsYU1YYxAB", "timestamp": "5 months ago"}, {"text": "Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto.", "author": "Eduardo Almeida", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB", "timestamp": "a week ago"}, {"text": "Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. W punkcie trwała kłótnia z trzema niezależnymi rodzinami. Jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy.", "author": "Danuta Fi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB", "timestamp": "3 weeks ago"}, {"text": "Schwierig zu finden nach Ankunft am Flughafen.\\nBei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nicht gemacht habe und bei der Rückgabe zu Problemen geführt hat.\\nNicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden.", "author": "Ollipower 1963 w", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB", "timestamp": "2 months ago"}, {"text": "No doy 0 estrellas porque no me deja.\\nExperiencia pésima:\\nAunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero.\\nHoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en Canarias).\\nSi vais a alquilar coches, no recomiendo nada esta empresa.", "author": "Alvaro Ubeda Sanchez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB", "timestamp": "3 months ago"}, {"text": "Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van Clickrent. Kennelijk was Localrent slechts een tussenpersoon. Ik was daar behoorlijk kwaad om geworden. Clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. Hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. Uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden niet moeilijk om wat zand in het interieur.", "author": "Iliass Bololo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB", "timestamp": "3 months ago"}, {"text": "Wir haben das Auto einen Tag vor der Einreise über Check24 gebucht. Die Vollkasko war bereits inbegriffen. Für 4 Tage kostete ein Mittelklassewagen ca. 100 €.\\n\\nEs war etwas schwierig, die Shuttlebus-Haltestelle zu finden. Man findet vielleicht die richtige Haltestelle, aber es ist kein Bus da. Dann ist man unsicher, ob es wirklich der richtige Treffpunkt ist. Man möchte schließlich nicht umsonst warten. Ein paar Fotos vom Treffpunkt und dem Bus selbst hinzuzufügen, wäre sehr hilfreich! Wir sind stattdessen zu Fuß zur Anmeldestelle gegangen (ca. 15-30 Minuten).\\n\\nDort wurden wir herzlich begrüßt. Es gab mehrere Anmeldeschalter, aber es war nicht viel los, sodass die Anmeldung maximal 10 Minuten gedauert hat und wir direkt losfahren konnten. Das Auto war fast neu, makellos und sehr gepflegt.\\n\\nZum Schluss verlief die Schlüsselübergabe unkompliziert, und innerhalb von 10 Minuten waren wir am Flughafen. Dieses Mal haben wir den Shuttlebus genommen.", "author": "Yuliya Kutynska", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2M0t6cXl3RRAB", "timestamp": "a year ago"}, {"text": "Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet.", "author": "Niina Lumus", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB", "timestamp": "2 weeks ago"}, {"text": "Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100%", "author": "Yudeisy Brito Paz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB", "timestamp": "a week ago"}, {"text": "Recomiendo al 100 X 100 esta empresa de alquiler de vehículos. Trato amable, cercano y muy profesional de todo el equipo humano. A destacar a Carlos y Fran. A mi chica y a mi nos fueron a buscar al aeropuerto en una furgoneta nueva y muy cómoda y al final de nuestras vacaciones nos volvieron a llevar junto con nuestras maletas. Muy puntuales y eficaces y el coche que nos proporcionaron para el uso de nuestra estancia en la isla de Gran Canaria prácticamente nuevo. Volveremos a contar con vosotros en nuestro regreso a la isla. Muchas gracias de corazón.", "author": "Jorge García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIODlqdUhBEAE", "timestamp": "a year ago"}, {"text": "GELDMACHE!\\nKreditkarte muss noch mindestens 6 Monate gültig sein, sonst wird sie nicht zur Hinterlegung der Kautionakzeptiert! Deshalb wurde ich genötigt, vor Ort eine Versicherung von zusätzlich 156€ zu zahlen, die ich dann problemlos mit der Kreditkarte zahlen konnte! Genauso wie die Tanksicherheit von 200€!\\nMan wird zum Standort geshuttelt und ist dann im Nirgendwo und hat keine Möglichkeit, sich anderweitig zu orientieren, da man dem Unternehmen dort quasi ausgeliefert ist und nicht mehr einfach dort weg kommt! Zudem haben die Fahrzeuge nicht ausreichend Power, um problemlos die Berge hochzukommen.\\nBitte macht nicht den selben Fehler, auf diese günstigen Abzocker reinzufallen. Ich hab Lehrgeld bezahlt.", "author": "Lisa Graf", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwR1dGSmxlbXhIVkRoeFoyRXhVbWRzWDBGeFRYYxAB", "timestamp": "4 months ago"}, {"text": "Estava até apreensiva de ter problemas com a locadora, mas a experiência foi muito positiva do início ao fim. O dinheiro do depósito ( alto), foi restituído assim que devolvemos o carro. O horário da abertura da loja foi pontual. Inspeção realizada e … boa viagem!", "author": "Mônica Areal", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCamRuVTJkVjlwZVdONFZHTlpNVjlsTW5kTGNrRRAB", "timestamp": "3 months ago"}, {"text": "Contratado el alquiler del vehículo y el seguro a través de Booking, me dicen que de ese seguro no se responsabilizan porque no es el que ellos trabajan, que en cualquier caso, primero les tendré que pagar a ellos y después reclamar a Booking.\\nAsí mismo un extra de 55€ por devolverlo temprano antes de que abran (dependo del horario del vuelo).\\nNo obstante el trato muy correcto y me dieron un vehículo un poco superior al que tenía solicitado.", "author": "Pedro Cabrera", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oeVRqRXlRbXhrT0ZjNWRWZHdXbmRvTFVaT1lWRRAB", "timestamp": "4 months ago"}, {"text": "Un desastre desde la recepción del vehículo hasta hoy que han pasado 38 días de la devolución y aún no tengo el dinero de la fianza que te cobran sin avisar el día de la reserva.\\nEl vehículo no era el que reservé y no hay opción según ellos , o ese y otro modelo pagando la diferencia.\\nUna vez devuelto el vehículo, ya no eres nadie para ellos,si reclamas algo se pasan la pelota de uno a otro.\\nIncompetentes , mentirosos , ESTAFADORES y nada profesionales\\nNADA RECOMENDABLE", "author": "Jose Blesa Martínez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zeGRqVmpRbFJhUWpocFZWcHRhR3RVY1UxblRrRRAB", "timestamp": "5 months ago"}, {"text": "Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches. El personal amable y profesional. El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche.", "author": "Miguel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB", "timestamp": "3 months ago"}, {"text": "Půjčení vozu na týden přes Booking vyjde cca na 1400,- Kč. Je u sebe potřeba mít fyzicky kreditní kartu, jinak vas donutí zaplatit ještě komplexní pojištění a půjčení vás tak vyjde na 4.500,-Kč! Nestačí mít kartu v mobilu.", "author": "Rosi", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21SQ1FrODNNVnAyUW13eFdtbHRWRk4wYTJkRlprRRAB", "timestamp": "6 months ago"}, {"text": "Lange Wartezeiten, schlechter Service. Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser krank war mussten wir einen neuen Mietwagen für den doppelten Preis buchen.", "author": "Tom Hinten", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB", "timestamp": "2 months ago"}, {"text": "我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?这是我见过最差的的,以后不会再用。跟我们同去办理取车的还有三家跟我们情况一样,他们是老剧本,我们都是新入局的。最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。", "author": "lei zhang", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB", "timestamp": "2 months ago"}, {"text": "Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! C’est scandaleux.\\nAutant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. Passez votre chemin il y a beaucoup mieux !", "author": "Mimi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB", "timestamp": "3 months ago"}, {"text": "Alles lief äußerst schnell und unkompliziert. Das Personal war sehr nett. Sowohl Abholung als auch Abgabe lief sehr routiniert, entspannt und reibungslos. Wir waren 30 Minuten zu spät zur Abgabe, war gar kein Problem. Jederzeit wieder und vielen Dank!!!", "author": "Anna Wellein", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twTFlsSTJOVzFEWDJGV2QyWktjbUp1TFRoRVpWRRAB", "timestamp": "3 months ago"}, {"text": "Não sei deixem enganar por estes burlões.!!!! Alem do staff ser todo arrogante, mal dispostos e estúpidos.\\nCobraram 50€ para limpeza do interior porque um tapete na parte de trás do carro tinha poeira.\\nComo tinha seguro, não puderam cobrar extras de outra maneira.\\nUma VERGONHA.\\nNão devia ser permitido se aproveitarem desta maneira dos clientes.\\nSão absolutamente ridículos.!!!!", "author": "Nicole Vieira", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25waVJFTldTR1JLZUhoeVJVUmlRVU5tWTNkbmJVRRAB", "timestamp": "5 months ago"}, {"text": "Fantástico!!\\n\\nTenía mis dudas por el alquiler online y porque no está exactamente en el aeropuerto, pero la experiencia ha sido muy positiva. Tienes el Transfer gratis hasta la oficina, que son 5 minutos de trayecto, si llega. La atención de todo el personal es fantástica, tanto el chófer del Transfer como en la oficina (me atendió la chica canaria). el coche funcionó de maravilla, muy nuevo, y el precio con el seguro todo incluido es mejor que muchos otros sitios.\\n\\nLo recomiendo 100%", "author": "Jy R", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBZ3MzR2lRRRAB", "timestamp": "11 months ago"}, {"text": "Hold dere unna denne bedriften. Bilen var bra, men resten var dårlig. Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro. Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler enda 1 ukeetter hjemreise.", "author": "Kjetil Grytbakk", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB", "timestamp": "a month ago"}, {"text": "Experiencia muy negativa con esta empresa de alquiler de vehículos.\\nCuando llegamos, después de haber escogido el seguro a todo riesgo, se nos cobró una fianza de 200€ (en vez de bloquear el depósito se nos cobró con un datáfono). Al devolver el coche, sin ningún desperfecto, nos dicen que la fianza se nos devolverá en unos días, ya que ya se había “desbloqueado el depósito”.\\nTras 2 semanas sin rastro del dinero, decidimos escribir un correo al que nadie contesta. Llamamos por teléfono y conseguimos que 4 días después nos contestaran pidiendo el número de reserva, contestamos al momento y dejan de respondernos.\\nHace 2 días (una semana después de que nos contestaran al primer correo), volvemos a llamar y nos dicen que ya sale como proceso finalizado y que según ellos ya nos habían desbloqueado el depósito, MENTIRA, les decimos que es imposible ya que nos habían cobrado en la oficina con el datáfono (no hay ningún dinero bloqueado) y nos dicen que ya lo miraran y que en unos minutos nos llamarían.\\nNos contestan a la tarde al correo que habíamos enviado hace una semana, pidiendo el comprobante del cobro, se lo enviamos y seguimos sin saber nada. Espero que me devuelvan mi dinero lo antes posible. Sin embargo, no lo recomiendo para nada.", "author": "ERIC MOYA MASFERRER", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1TVprUklOa3N5VEVsS1ZXWnBlVzVuU2xGa1gzYxAB", "timestamp": "5 months ago"}, {"text": "Gente voy a ser breve!Soy de Gran Canaria y vivo en Tenerife!No se les ocurra alquilar en esta empresa!Son unos estafadores!Lean las reseñas de la oficina en Tenerife norte!Van a flipar!Alquile un Volkswagen y supuestamente me multaron!Me cobran de mi cuenta 50 euros por tramitación!Ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan!2000 euros de fianza por un Audi a1?Eran chicos asturianos!Estoy seguro que se inventarán algo para.msrgsrles el dinero!Hay reseñas que te ponen los pelos de punta!Llevan medio año y por la central presumen de que nomparan de crecer!Con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! Estafadores!", "author": "Alexis Vega Sosa", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB", "timestamp": "a month ago"}, {"text": "Una experiencia desastrosa – jamás volveré\\n\\nReservé un coche y acudí puntualmente el día acordado para recogerlo.\\nEl vehículo no estaba disponible, no ofrecieron ninguna alternativa útil, y el personal se mostró completamente despreocupado y poco profesional.\\nSin disculpas, sin compensación y sin ninguna solución concreta. Nos dejaron literalmente tirados, con todos los planes arruinados y altos gastos extra.\\n\\nConclusión: Empresa poco fiable, nada profesional y sin atención al cliente. Si quiere evitarse problemas, costes adicionales y frustraciones, busque otro lugar para alquilar.", "author": "Alexandra", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21FelJGRnlaVVJ5ZFVOYWRFa3lSMk4xWHpSRmRHYxAB", "timestamp": "5 months ago"}, {"text": "Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Валентине.", "author": "Oleksandr Velychko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB", "timestamp": "4 weeks ago"}, {"text": "Experiencia muy negativa. Evitad esta empresa si podéis.\\n\\nAlquilamos un coche con mi familia y desde el primer momento fue una experiencia pésima:\\n\\nNos aseguraron un modelo de coche que luego “no tenían”. Aceptamos el cambio por no tener otra opción.\\n\\nEn recepción, un trabajador nos retuvo más de 40 minutos presionando para que contratáramos su seguro “a todo riesgo”, que además exigía un depósito! . Nos advirtió que, si no lo hacíamos, tendríamos problemas al devolver el coche. Y así fue.\\n\\nA la entrega, una empleada se tiró directamente al suelo y señaló un roce no visible a simple vista, diciendo que lo habíamos hecho nosotros. No nos dieron parte de daños previos, ni fotos, ni comprobación alguna al inicio. Solo nos dijeron literalmente: \\"no es mi problema que no le hicierais fotos\\". Resultado: penalización de 380 € sin pruebas.\\n\\nCuando pedimos la hoja de reclamaciones, \\"no la encontraban\\". Solo tras insistir y amenazar con llamar a la policía, nos la entregaron, no sin antes levantar la voz y faltarnos al respeto.\\n\\nUna empresa que actúa así no merece confianza. Cobros injustificados, trato agresivo y prácticas de estafa. No la recomendaría bajo ningún concepto.", "author": "Aitana Villalba Plata", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CalNXMU1jMlJOVFRWYVMwRXRRVXRKT0hOUFFWRRAB", "timestamp": "5 months ago"}, {"text": "Wir hatten über Booking eine Reservierung für einen Kleinwagen. Bekommen haben wir einen tollen Fiat 500. Am Anfang hatten wir ein Problem, da die Frau am Schalter sagte ich solle eine Jungfahrergebühr bezahlen obwohl diese laut Check24 bereits inbegriffen ist. Nun wird reklamiert. Auto war ansonsten top.", "author": "Hanna P.", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncHFEWXNBRRAB", "timestamp": "11 months ago"}, {"text": "Superfreundlich, schnell und unkompliziert. Das Büro in mehreren Sprachen flexibel. Carlos hat's prima gemacht, Kompliment!\\nDas Auto neu und in einem TOP-Zustand. Die Rückgabe lief superschnell und der Shuttle vom und zum Flughafen war schnell, der Fahrer ebenfalls superfreundlich.\\nAlles in allem mehrfach fünf Sterne!", "author": "Oliver Sust", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURicTh5U05BEAE", "timestamp": "Edited a year ago"}, {"text": "Muy buen coche y además teniendo el centro un poco a las afueras del aeropuerto, es muy fácil repostar y entregar el coche. Te pasan a buscar desde el parking de Salidas del aeropuerto y te dejan en las salidas. Ha sido muy facil todo. Eso si, si lo reservas con una agencia, ojo a las condiciones del seguro que ofrece la agencia. En nuestro caso esa un seguro sobre la franquicia, por lo que hemos tenido que dejar el depósito igualmente con ellos y, en caso de daños, se los pagas a Click Rent y después reclamas al seguro de la agencia. Lo específico porque nunca me había pasado y al reservar con la agencia, no lo dejan muy claro la verdad.", "author": "Fabian Sanchis", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21scWFYWmtZelF6TTJGa1RUWm1aR1JxTVUxRlJsRRAB", "timestamp": "5 months ago"}, {"text": "Nous avons payé 300 € pour 9 jours.\\nEt 60 € de carburant et 5 € de lavage.\\nC'est ce que nous avons payé.\\nQuand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 jours", "author": "francois francois", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB", "timestamp": "2 months ago"}, {"text": "Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig.\\nDa jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran\\nJeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. De stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass.\\nDette blir jeg da belastet med 420 euro for.\\nHadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig.\\n8070nhd - hvis du leier denne så har de i alle fall fått inn en straffeavgift på denne. Hvem vet om de før meg også har betalt.\\nTa bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen.", "author": "Einar Dahlen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB", "timestamp": "a month ago"}, {"text": "Questo è ciò che si desidera da una società di noleggio auto... tutto ha funzionato alla perfezione. Assolutamente senza complicazioni e senza problemi. Alla mia prossima visita a Gran Canaria, noleggerò di nuovo solo da clickrent. Un grande ringraziamento al personale molto cordiale.. grazie per tutto;)", "author": "Lars Häusermann", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGU1JuTkNXREJDVFZwcVRYWlNSbXRUU2tSeFJrRRAB", "timestamp": "5 months ago"}, {"text": "Muy buena experiencia y servicio por parte de Juan Manuel y Néstor. Proceso rápido, sencillo y transparente. El coche estaba en perfectas condiciones y no tuvimos ningún problema con el depósito. Sin lugar a duda volveremos a repetir con ellos!", "author": "Sara Iglesias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbGVudHdBRRAB", "timestamp": "11 months ago"}, {"text": "Super Mietwagen Station zu sehr fairen Preisen. Die Station liegt außerhalb des Flughafens aber mit dem Shuttlebus kein Problem und nur wenige Minuten bis dort hin. Personal freundlich und alles digital. HINWEIS: der Shuttlebus holt einen auf der Abflugebene gegenüber Ausgang 2 ab NICHT gegenüber der unteren Ankunftsebene wo die ganzen Busse stehen!\\n\\nFazit: echte Empfehlung!", "author": "Chris Toph", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOdmNrNHpRa1oyTUZWd2FqWm5VMEYzTFdzMVJsRRAB", "timestamp": "4 months ago"}, {"text": "Un experiencia horrible realice una reserva hoy a las 3 de las tarde y la tenía que cancelar a las 4 llamé para cancelar y me dijeron que por qué no era antes de 24 horas no la devolvían …. Pedí que me cambiaran de coche por q el que reserve era demasiado grande y me dijeron que no!!!! De paso me quería cobrar un depósito de 2 mil euros en una tarjeta…: en conclusión no alquilen aquí coches no lo recomiendo me cobraron 150 euros sin opción de modificar nada dinero perdido sin poder utilizarlo ….: cuidado con este sitio", "author": "Maria Teresa Casanas Lopez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wT01XRjNYM2RPVlZFM09GOUNWSGhWZVZSVE0xRRAB", "timestamp": "4 months ago"}, {"text": "Es gut alles gut funktioniert. Auch der transfer. Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map. Kaution wurde schnell zurück überwiesen.", "author": "Karin L.", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB", "timestamp": "a month ago"}, {"text": "Si no hago un video al inicio, me hubiesen cobrado daños anteriores en el coche. Meten miedo para que contrates el seguro a todo riesgo.\\nPague un VW Tiguan y me dieron un Kia Stonic, decían que era la misma gama...\\nTienes que perder 30 minutos entre que te llevan al coche y lo recoges, cosa que no pasa con las otras compañías.\\nNo me dijeron a que hora tenia que devolver el coche. Según ellos, me retrasé 30 minutos y me han cobrado 40e de penalización.\\nEspero que todos los que estábamos allí pongamos la reseña, porque nos olvidamos muy rápido de estas cosas.", "author": "Mario Fdez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0V1ZtNUpTSE0zWVRoa0xWTllkRFZ3ZWpaclVIYxAB", "timestamp": "5 months ago"}, {"text": "Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. Nem fogom többet öket választani.", "author": "Dávid Kuhl", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB", "timestamp": "4 weeks ago"}, {"text": "Super freundlich, Autos im tollen Zustand und unkomplizierter Ablauf. Ein Punkt Abzug, weil man sie leider am Flughafen gar nicht finden konnte und die Kommunikation nur mittels eines Einheimischen per Telefon geklappt hat. Dann wurden wir von dem Shuttle nach ungefähr 30 min erst iwo am Straßenrand eingesammelt. Man könnte einfach kleine Schilder aufhängen oder jemanden am Flughafen positionieren um dies zu erleichtern. Nach einer langen Anreise war das wirklich nicht toll. Ansonsten waren wir mit dem Service vor Ort und dem Auto zufrieden", "author": "Lara Töpel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNubnFfcEx3EAE", "timestamp": "a year ago"}, {"text": "Guter Service, die vor Ort abgeschlossene Versicherung für 189€ lohnt sich. Das Auto wird bei Abgabe nicht mal angeschaut. Abholung & Rückgabe schnell & easy. Vorher checken ob man eine Versicherung bspw über Check 24 o.ä. schon abgeschlossen hat, wobei man es im Schadensfall leichter hat, wenn man die Versicherung dort abschließt.", "author": "Mario Massa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKMlVta3plVnBHWVhZd1JubHZZMGhaUkZOeVNFRRAB", "timestamp": "5 months ago"}, {"text": "Agradezco el trato de esta empresa por su profesionalidad y su servicio . Alquile un coche pequeño que ha ido de maravilla, y la atención tanto de Carmen que nos gestionó la reserva , entrega y devolución Como dee los chicos encargados de llevarnos y traernos al aeropuerto fué fantastico.\\nLa empresa está situada a escasos 5 minutos del aeropuerto. Si vuelvo no dudaré en volver a alquilar un vehiculo , por su servicio y relación calidad precio.", "author": "simon llovet garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIM3FmX0pREAE", "timestamp": "a year ago"}, {"text": "El coche sin ningún problema todo muy bien el señor trato de ayudarme tuve que entregar el coche 30 horas antes y les dije que si podían acreditarme algo de lo invertido en la renta y seguro una señora se introdujo en la conversación diciendo que no que era imposible que la política de la compañía no permitía", "author": "Víctor Guzman", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJWDVocEh5Xzl2Z01REAE", "timestamp": "7 months ago"}, {"text": "Achtung! Habe 95 € umsonst bezahlt. Die Firma hat kein Büro am Flughafen. Man wird darauf hingewiesen, dass ein Shuttlebus am Parkplatz stehen soll – aber dort ist nichts zu finden. Telefonisch ist niemand erreichbar. Sehr unseriös, gehört dringend gemeldet!", "author": "Kreuzmann", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGT1pUSmlUbXh1U1ZaV1dsQjRNVGR6TmxSTU0wRRAB", "timestamp": "4 months ago"}, {"text": "Nos dieron un Fiat 500 que estaba en perfectas condiciones. Lo cogimos a todo riesgo y no hemos tenido ningún problema con el vehículo. El personal fue muy amable con nosotros.", "author": "Aitana González", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4WVozWnBka2xUV201TVFYZDNOSE5IYUV0NWJWRRAB", "timestamp": "5 months ago"}, {"text": "War sehr gutes Erlebnis mit der Autovermietung. Als junger Fahrer mit weniger als 3 Jahre Führerschein wird nochmals eine Gebühr von 120€ erhoben oder man nimmt die volle Versicherung für 220€ wo alles inklusive ist. (Preis für 7 Tage Mietdauer)", "author": "Florian Hofbauer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOTlVuQmxUR2t6UkZkaldEVmZlVTFsU0VOdmNIYxAB", "timestamp": "5 months ago"}, {"text": "Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!!\\nEs werden nur von einer Bank ausgegebene Kreditkarten akzeptiert (keine Debitkarte oder american express) ansonsten bekommt man kein Fahrzeug gemietet\\nWenn man dies beachtet ist alles sehr easy", "author": "Alexander John", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB", "timestamp": "a month ago"}, {"text": "Tutto molto bene. Unica nota negativa: difficile trovare la posizione dello shuttle fuori dall’aeroporto di Gran Canaria. Dovreste sempre specificare di recarsi alla porta 2 delle “salidas “", "author": "Alessandro Rolla", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZMlJtWlBkbTlhY1hkdlYyeHdhemd5T1hkR01YYxAB", "timestamp": "5 months ago"}, {"text": "Fatal experiencia. Por no poner el seguro opcional a todo riesgo, al devolver el vehículo me hicieron un examen microscópico digno de investigación CSI de todo el coche hasta que encontraron dos pequeños daños, uno pude demostrar en el momento que no me correspondía por fotos que hice previamente. El otro en el momento no pude por las prisas por no perder mi vuelo; un punto en la luna por el que me cargaron 800€. Luego he contactado nuevamente mostrando evidencia de este daño en las fotos que hice al recoger el vehículo pero no responden.\\nSolo llevan 3 meses funcionando así que es más que evidente que el alto volumen de opiniones que tienen son falsas reviews positivas (es fácil hacerlo..pregunta a alguien que trabaje en Marketing). Viajo a la isla dos veces al mes y nunca más alquilaré con esta compañía. Si no añades el seguro opcional que ellos te venden te querrán hacer pagar por daños que no te corresponden.", "author": "Alejandro San Martín", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYXzllZTJBRRAB", "timestamp": "Edited a year ago"}, {"text": "Hemos tenido buena experiencia con este rentacar. La última vez que vinimos a la isla alquilamos con Orlando, y nos quitaron la fianza por un arañazo que ya traia el coche. Clickrent el proceso de alquiler fue rapido, al igual que el de retorno del coche. El transfer al aeropuerto no son ni 5 min, y nos informaron sobre los seguros adicionales pero no presionaron para coger algun seguro extra, por lo que todo bien. La proxima vez que vengalos alquilaremos tambien aqui. Gracias!", "author": "Cristina R N", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNzhXZFR3EAE", "timestamp": "a year ago"}, {"text": "Hemos realizado una reservación a través del booking en Polonia, donde al llegar a Gran Canaria nos han dado otra información de costes , pero al conocer bastante bien el idioma en la oficina nos han ayudado muchisimo por lo que estamos muy agradecidos a Sñra Carmen, ojalá mas personas que le den su corazón al trabajo❤️👏🏼\\nMuy contentos con el coche, con la ruta que hemos conseguido hacer en una semana.\\nPozdrawiamy z Gołdapi 🫶🏼", "author": "Nikola Nikola", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdGRXdEN3EAE", "timestamp": "a year ago"}, {"text": "Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11.", "author": "maria Viñolas Salustiano", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB", "timestamp": "2 months ago"}, {"text": "Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwertiges Fahrzeug, sehr sauber, Prozesse sehr gut und bestens organisiert, gerne wieder ;-)", "author": "Kurt Bimsberger", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB", "timestamp": "2 months ago"}, {"text": "Somos clientes desde hace años, deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche.", "author": "Michel Berni", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB", "timestamp": "3 weeks ago"}, {"text": "Es nefasto el servicio de esta empresa. Me cargaron a mi tarjeta 50 € por una “gestión administrativa” de una supuesta multa que todavía no ha llegado a mi casa. Encima el coche que me dieron no le andaba el GPS ( osea un coche de gama media alta que no le ande el gps RARO). No se podía ver los avisos de radares , señales de tráfico ni nada\\n\\nY a su vez, me cobraron 55 € extra por dejarlo fuera del horario por que mi vuelo sale antes y ellos no abren hasta las 8. Te dicen ellos mismos que lo dejes en tal parking claramente las tienen a todas pensada para robar dinero.\\n\\nCon total confianza te dicen“ no hace falta que le saques fotos, nosotros ya las tenemos” obvio le saqué igualmente!\\nPorque buscan cada punto débil del cliente para cobrar extras. No volvería a alquilar con ellos y no los recomiendo", "author": "Támara Yamila Torres", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGcWFISkxPVFF4WmpsalJtaDRSR3RsT0Y4eVltYxAB", "timestamp": "6 months ago"}, {"text": "Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleicht verbessert werden. Ansonsten perfekt!", "author": "Heike Franke", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB", "timestamp": "4 weeks ago"}, {"text": "Impuestos inventados para sacarte el dinero.\\n96e más tuve que pagar por el combustible.. Era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito.\\n55e más por entregar el coche fuera de horario laboral.\\n\\nUn robo", "author": "Marcos Cabrera", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB", "timestamp": "3 weeks ago"}, {"text": "Muy descontento , alquilé un coche con una hora de antelación y la opción en la página decía “cancelación gratuita” y no especifican q tienes 24h de antelación para cancelar . No reembolsan y tampoco t dan una alternativa para cambiar el coche por el mismo precio", "author": "Jose Chiappetta", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taRmMwSnRVMXBXZW1wSVVERTFjbmMyYm1SbFVIYxAB", "timestamp": "4 months ago"}, {"text": "Hat alles super geklappt, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten wo genau sie einen abholen vom Flughafen.. aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :)", "author": "Miriam Lisa Füssl", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OQ05GbEVUM0I0YWxGMk1rRlpXVWwzWVVReE1IYxAB", "timestamp": "4 months ago"}, {"text": "A fuir ! La politique de cette entreprise est de faire des prix très bas puis de compter des frais lors de la restitution de la voiture. Pour un bouclier légèrement abîmé sous caisse (leger frottement sur un bas côté de la route) ils m'ont réclamé 420€ sur mon dépôt de garantie. Le bouclier était déjà légèrement abîmé sur les 2 côtés. On suppose qu'ils ont demandé la même somme aux clients précédents sans pour autant changer le bouclier. Cela fait donc 1260€ gagnés sans rien faire.\\nCerise sur le gâteau, sur le site de ma banque je découvre en rentrant qu'ils ont en fait tiré 480€. Allez expliquer cela à l'assurance ensuite pour vous faire rembourser.\\nConseil, fuyez donc ClickRent avant de vous faire plumer.", "author": "Gilbert GIOVAGNOLI", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsV1VuaFVjRjltTm1OTU56Tk9kVWszZGtWR1RVRRAB", "timestamp": "7 months ago"}, {"text": "CONDUCTAS MAFIOSAS\\nAlquile un coche con ellos atraves de Booking con el seguro extra que ofrece Booking (155€)\\nCuando fui a recogerlo era un coche muy inferior al que yo reserve, pero aparentemente estaba bien de carroceria, el chico que me atendio, me reprocho que contratase el seguro con Booking e intento venderme un seguro extra (200€+) recalcando que solo así estaríamos cubiertos completamente, no lo entendí y le dije que no;\\nEl viaje fue muy bien y por fortuna no tuvimos ningún incidente ni accidente con el vehículo.\\nA la entrega, viene una chica y directamente se tira al suelo en la parte del vehículo delantera y me llama y me dice que tiene unos arañazos, le digo que yo no he podido ser y me dice que si tengo fotos. Le digo que no vi necesario tirarme al suelo para hacer fotos y me dice que ellos me enviaron al mail con los no daños del vehiculos (una ficha con dibujo de lapiz...).\\nMe ha retenido 380€ del deposito y las dos señoras que estaban nos trataron fatal,.\\nPor último, les pedi la hoja de reclamaciones y tardaron 40 min en dármela de malas formas ( sabiendo que teníamos que coger un vuelo); En GC estas obligado a rellenar la H Reclamaciones in situ (lo confirme llamando a la Policía local) lo que es absurdo porque con los nervios y la presion del vuelo no te deja pensar con claridad, pero aún así lo hice, y tengo claro que no voy a para de poner reclamaciones en todo sitio donde proceda.\\n\\nEn general después de estar mas de 1 hora alli este es como parecen que operan:\\nA la gente la coaccionan para pagar un seguro abusivo que no existe\\nAl que no lo paga, le hacen pagar por los daños que los primeros que los primeros hicieron\\nNo alquiles coche con ellos SON MAFIAS", "author": "v p", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSeVVWbG5SbEoyZFU5WVFUUkRXRFZPVWt3M09XYxAB", "timestamp": "5 months ago"}, {"text": "Mi experiencia fue muy satisfactoria gracias a Valentina ya que nos explicó todo muy bien y nos ayudó y nos asesoró en todo momento para hacer la gestión de la mejor manera, muy contentos con el trato y con el coche que fue exactamente el.que elegí, escogí una sillita de bebe para mi hija y de la dieron limpia y en perfectas condiciones pero si tendría que poner un pero es que invirtieran un poco en sillitas de bebe con Isofix ya que son mucho más seguras para los bebés pero solo es una crítica constructiva para mejorar! Gracias", "author": "david Hernandez Papis Martinez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OMVp6aHljbGxHV201clNVczNjbVZYZHpaSlNsRRAB", "timestamp": "3 months ago"}, {"text": "Parfait à tous les niveaux !\\nLocation à moindre coût, voiture impeccable et accueil au top. Tout s’est fait rapidement, sans mauvaise surprise. Une agence fiable et sympa, je recommande les yeux fermés !\\n\\nATTENTION : une navette est mise en place afin de vous récupérer et vous déposer à l'aéroport, ne passez pas à côté, comme nous...... :)", "author": "Vic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOMjR3OERON3FfS2p3RRAB", "timestamp": "8 months ago"}, {"text": "Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe, largas esperas para recoger o devolver coche, etc etc", "author": "NAVARRO BATISTA: BERNARDO", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB", "timestamp": "2 months ago"}, {"text": "Buenas , explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos", "author": "rafael garces enamorado", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB", "timestamp": "2 months ago"}, {"text": "El coche estaba impecable, el trato del personal excelente. Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos.", "author": "Raquel Saavedra Benitez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB", "timestamp": "2 months ago"}, {"text": "Esperienza molto negativa! Per raggiungere la sede è necessario prendere una navetta che ti preleva all'aeroporto ma questo passaggio non è chiaro quando si fa la prenotazione.\\nNoi avevamo prenotato una panda 4x4 (diverse strade sulle isole sono frastagliate) e ci è stata data una Kia Picanto merdosa che non riusciva a salire le strade manca poco. Oltretutto avevo fatto presente che avevamo già pagato assicurazione e tutto per quella macchina e avevo preso anche un biglietto del traghetto specificando il modello che avevo prenotato: altra inculata di 110 euro di assicurazione di traghetto quando avevo già la casco (non c'era scritto da nessuna parte durante la prenotazione).\\nVeramente scorretti e poco chiari", "author": "Madda Fogliata", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3N0t2ZjNBRRAB", "timestamp": "10 months ago"}, {"text": "Das Personal war sehr freundlich, aber abgezockt wird man trotzdem.Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !!", "author": "Wolfgang Stange", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB", "timestamp": "2 months ago"}, {"text": "Wartezeit bis zum Mietvorgang hat gedauert (20 min. ) Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung.\\nGerne wieder", "author": "Frank M", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB", "timestamp": "a month ago"}, {"text": "Utazás előtt 2 nappal foglaltam a discovercars.com oldalon keresztül. Felvettek minket a reptéren. A találkozási ponthoz fel kell menni a 2. emeletre (Departures). A 2. kijáraton kimenni. Átmenni a gyalogátkelőn, a parkolóba, ott jobbra fordulni. Kb. 25 méterre van egy kis épület, az mellett kell várni. (Érdemes telefonálni)\\nAz autó átvétele gyorsan ment. Átvétel után gondosan lefényképeztünk minden sérülést az autón! Ez a leadásnál jól jött! Mivel a lökhárító alján volt egy kisebb horzsolás, ami nem szerepelt az autó sérülései között, de fényképpel tudtuk bizonyítani hogy az már ott volt.\\nAz autó egy szinte új Fiat 500 cabrio volt. 9800 km volt benne. Hibátlanul működött végig.\\nA személyzet rendkívül kedves volt. Az autó kiváló. A depositunkat azonnal felodották.\\nCsak ajánlani tudjuk a céget!!", "author": "Noémi Szabó", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBX2J1cGhBRRAB", "timestamp": "11 months ago"}, {"text": "Atención de 10, nos recogió un bus en el aeropuerto y nos acercó a las oficinas que están al lado del aeropuerto. El proceso de alquilar el coche fue súper sencillo y la chica que nos atendió fue un amor, contagiaba su alegría. Nos lo explicaron todo súper bien. Preferimos coger el seguro a todo riesgo y así te olvidas de cualquier situación. A la hora de devolver el coche lo mismo súper rápido y sencillo, nos volvieron a acercar al aeropuerto. Ha sido buena experiencia , si vuelvo a canarias repetiré con ellos.", "author": "Laura Machado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psZmRVMXZaRWxUY1ZjdFRWOUhWa2hMVWt0Q2MxRRAB", "timestamp": "7 months ago"}, {"text": "El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa”", "author": "Jazmin Be", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB", "timestamp": "a month ago"}, {"text": "Esperienza negativa!sconsigliato!siamo arrivati alle otto di sera in aeroporto e la navetta che doveva prenderci non è passata e siccome gli uffici distano 2,5 km e sono in mezzo al nulla abbiamo dovuto trovare un taxi che ci portasse. Una volta arrivati in ufficio c'era solo un impiegato e per darci la macchina ci hanno messo 2 ore. Morale siamo arrivati in hotel dopo le dieci di sera e abbiamo anche perso la cena. Inoltre maleducati e da quello che leggo neanche troppo onesti!da evitare!", "author": "Annabella Castelli", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJdzR5dDhnRRAB", "timestamp": "9 months ago"}, {"text": "El trato de los trabajadores muy bien, al igual que el vehículo, todo perfecto, repetiremos seguro!! Gracias 😊", "author": "antonio jose rivero marquez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oMk9VbzFlVXBsVG10MGNYVkJYek5vYkRrelEyYxAB", "timestamp": "4 months ago"}, {"text": "Abholung: Shuttle-bus nicht auffindbar oder nicht existent. Telefonisch nicht erreichbar, es geht nur ein Bot ans Telefon, über eine Tastenkombination kann Support angefragt werden, nach 10min in der Warteschlange haben wir niemanden erreicht.", "author": "Marius Saborosch", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWTWJrUlNiRUpLV2kxVFYxcGtSVEZXUWtocmNtYxAB", "timestamp": "5 months ago"}, {"text": "pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más, seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto", "author": "chiarita reyes", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB", "timestamp": "2 months ago"}, {"text": "Haben uns für ClickRent entschieden weil es mit Abstand das billigste war (Moderner VW polo 4 Tage ~85€ + junger Fahrer)\\nHaben bei der Übergabe sofort das ganze Auto abfotografiert und von allem Videos gemacht sollte uns schaden vorgeworfen werden für den wir nicht verantwortlich waren.\\nDazu musste man noch 1000€ Kaution hinterlegen weil wir nicht nochmal für ~80€ eine extra Versicherung abschließen wollten.\\nIn den 4 Tagen ist alles problemlos verlaufen, konnten die ganze Insel umfahren und Orte erreichen die man mit dem Bus nie gesehen hätte.\\nIch kann es nur empfehlen!\\nEinfach nur bei Übergabe Schäden abfotografieren damit man am ende nicht blöd dasteht.", "author": "E. W", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMXNfaVFREAE", "timestamp": "9 months ago"}, {"text": "Absolut Finger weg. Ja, es ist super günstig, aber man hat nur Ärger. Kein Shuttle am Flughafen vorhanden, hatten uns nach 20 min schon ein Taxi organisiert. Die angegebene Telefonnummer ist nur ein Servicecenter landesweit und es gab nur automatische Ansagen!\\nBei der Rückgabe nur Ärger. Man wollte uns anhängen, dass unter der Stossstange Kratzer wären. Wir hatten Fotos gemacht und haben rumdiskutiert ohne Ende. Sehr unfreundliches Personal. Da hilft absolut kein günstiger Preis. Es gibt viele andere Anbieter in der Nähe", "author": "S. K.", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VQM0ZwSTNXdXUzaEJnEAE", "timestamp": "8 months ago"}, {"text": "Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio.\\nNos atendió Hugo, muy profesional y servicial.", "author": "Javier Pereiro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB", "timestamp": "3 months ago"}, {"text": "Standort des Shuttlebus sehr schlecht gewählt..\\nDas versaut das ansonsten gute Ergebniss ,da können sich die Angestellten noch so bemühen..\\nWenn es mit dem Shuttle zur Station nicht klappt...", "author": "Robert Hartmannsberger", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB", "timestamp": "4 weeks ago"}, {"text": "Super freundliches Personal, zuverlässig. Das Auto war sauber und gepflegt. Reservierung dort, gerne wieder 👍🏻", "author": "Birgit R", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB", "timestamp": "3 weeks ago"}, {"text": "Finger weg! Habe dieses Jahr mal Clickrent probiert. Transfer hat etwas gedauert, Auto OK, Abgabe nur unkompliziert, wenn man Vorort eine zweite Vollkasko direkt von Clickrent bucht. Wir buchen beim nächsten Mal wieder bei seriösen Autovermietern.", "author": "Marco Löhner", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOVlRHRkVlRzVmYm14TGIzSnFhRXM0ZUdsMVFWRRAB", "timestamp": "5 months ago"}, {"text": "Tanto haciendo la reserva por internet, traslado a las instalaciones de click rent, recogida y entrega del vehículo todo perfecto, sin duda lo mejor para alquilar un coche, muy profesionales en lo suyo y los empleados estás siempre de muy buen humor, eso es imprescindible en estas empresas.", "author": "AnGeLoUs P.g", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkblpUQnhla1pIZWxCR2JraE1WM2hLU0ZCV2JVRRAB", "timestamp": "4 months ago"}, {"text": "Mi experiencia ha sido perfecta con esta compañía. Hay un transporte que te recoge en el aeropuerto y te lleva hasta la oficina y viceversa. La atención fantástica, sin engaños ni palabrerios raros, gracias chicos !", "author": "Jose Alexander", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxSlozTjNWa1oxY25abldYZE1kMXBsWHpNM1JFRRAB", "timestamp": "5 months ago"}, {"text": "De vergüenza. Teníamos q dejar el coche antes de las 8 de la mañana para coger el vuelo a las 8:30 y nos dijeron que teníamos que aparcar en otro sitio, nos cobraron 55€, cuando el precio normal según la encargada del parking era de 16€. No vuelvo a alquilar un coche aquí.", "author": "tomasadrian perez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5Q056TmlTMVZFVmtOd1JrUXhNbmwxUlVaWmEyYxAB", "timestamp": "6 months ago"}, {"text": "Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!He leído otro testimonio y le ha pasado lo mismo!Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!Me encargaré que que ningún conocido alquile ahí ladrones de poca monta!", "author": "Alexis Vega", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB", "timestamp": "4 weeks ago"}, {"text": "Todo perfecto, una empresa super agil a la hora de tramitarlo todo, el coche estupendo y los trabajadores un encanto todos. El unico consejo que puedo dsrles es que añadan un parasol para la luna delantera, pero vamos que un 10", "author": "Jose Miguel vt", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Sc2QwVnNTM28xT0dGRlNrMUtUWEI0T0daNFRuYxAB", "timestamp": "4 months ago"}, {"text": "Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina.\\nLamentable.", "author": "Javier Mo Montero", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB", "timestamp": "a month ago"}, {"text": "La recogida del vehículo fue un desastre, tuvimos que coger un taxi desde el aeropuerto para llegar al sitio, porque nadie nos avisó que había bus que nos recogía, al llegar, nos atendió una chica joven de pelo largo liso que no pudo ser más desagradable y maleducada, nos cobró obligatoriamente cosas que nos queríamos y el trato fue pésimo, la devolución del coche fue muy bien, el chico que nos llevó en furgoneta al aeropuerto majisimo.", "author": "maria perez perez", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KM05VbzNUWGxvZFUweWQyZDJNWEJ4VlRWRFVsRRAB", "timestamp": "4 months ago"}, {"text": "Neodporúčam, som sklamaná. Pri požičaní auta sme si zaplatili základné poistenie. Bohužiaľ, pri parkovaní na parkovisku sa mi podarilo jemne oprieť auto o vyvýšený obrubník. Odrel sa lak sotva na 1cm. Z účtu mi strhli 480 eur!!! Faktúra bola za poškodenie podvozku, ktorý som naozaj nepoškodila a nemám to ako ani dokázať.\\nNeodporúčam!", "author": "Klaudia Sajdikova", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2prM01Yb3pTemxpYVV4YWNUQjNjVkZVTlhFMlgxRRAB", "timestamp": "5 months ago"}, {"text": "Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv, bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft ... Ansonst: Top", "author": "Rol And", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB", "timestamp": "2 months ago"}, {"text": "Das Auto war sauber und die Abholung und Abgabe hat einwandfrei funktioniert. ABER: ich hätte beinahe sehr viel Geld für einen Schaden zahlen müssen, der schon am Auto dran war bevor ich es abgeholt habe. Ich habe zum Glück vorm losfahren ein langes und detailliertes Video von der Außenseite des Autos gemacht, wo man die Delle drauf erkennt. Andererseits hätten sie mir die Delle in Rechnung gestellt, da keine Schäden auf dem Blatt vermerkt waren. Sie haben den Schaden auch nicht im Nachhinein vermerkt, sodass der nächste Mieter in dieselbe Falle getappt wäre", "author": "T R", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2anVDY0t3EAE", "timestamp": "a year ago"}, {"text": "Me sorprendió tener que pagar 35 euros por algo así como \\"gastos de repostaje\\" que aparecía en la letra pequeña del contrato. Una sensación como de engaño encubierta", "author": "José Ramón López", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB", "timestamp": "2 weeks ago"}, {"text": "Nada recomendable, intentan engañarte de todas las formas posibles. Si no cedes a sus cobros extras te niegan la recogida del vehículo. Una experiencia muy desagradable. Al final alquilamos con otra compañía. NUNCA VOLVERÉ A ALQUILAR CON CLIKRENT.", "author": "IMAGI 10", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sbGNqTm9SRWN3YzBNMVFWaFVhREp2UVhKVVdXYxAB", "timestamp": "4 months ago"}, {"text": "My amable", "author": "Andrea Seipel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB", "timestamp": "a month ago"}, {"text": "Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji. Zdecydowanie nie polecam.", "author": "SZNUTER", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB", "timestamp": "a month ago"}, {"text": "Izuzetno ljubazno osoblje, spremno da pomogne. Za pristojnu sumu i uz simbolicnu doplatu osiguranja dobili smo auto sa 7 sedista. U ponudi smo dobili Peugeot 5007, ali zbog nedostupnosti, dodeljen nam je jos bolji Citroën Berlingo, u koji smo mogli svi da se smestimo bez problema( 2 odraslih i 4 dece,od toga 2 odrasle dece), plus prtljag. Zaista odlicna opcija za krstarenje po ovom prelepom ostrvu, gde je parking u samom centru-Vegeta i San Jose besplatan u odredjenim ukicama. Sve preporuke! Hvala vam i do skorog vidjenja.🙂👋", "author": "Zorica Mijović", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwRU9WVXdObkJ6V0hRMlRXMXFjMlZNTUhwUGFtYxAB", "timestamp": "4 months ago"}, {"text": "Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado \\"peritaje\\".\\nLa pieza entera cuesta 120 euros.\\nDe vergüenza.", "author": "Leire ballesta mendioroz", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB", "timestamp": "a month ago"}, {"text": "Auto gemietet für eine Woche, das Auto hatte bereits Vorschäden, von denen ich Fotos gemacht habe, das war bei der Rückgabe kein Thema. Mir wurde angeboten, eine Versicherung von ClickRent für das Auto abzuschließen, dies habe ich aber abgelehnt und die Kaution mit der Kreditkarte hinterlegt weil ich durch Aurumcars bereits eine Versicherung hatte. Die Kaution wurde mir bei der Abgabe des Fahrzeugs wieder freigegeben wurde. Die Abholung am Flughafen mit dem Shuttlebus war zunächst etwas kompliziert beschrieben durch den Vermittler Aurumcars, dafür kann ClickRent ja aber nichts, man muss im Flughafen auf dem 1. Stock bei dem Abflug 1 (fast am Ende des Flughafens) rausgehen Richtung Parkplatz (car park meeting point), dort hat der Shuttlebus auf der Fahrtspur gewartet, wie im Screenshot markiert. Rücktour zum Flughafen mit dem Shuttlebus war auch unproblematisch.", "author": "J. L.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMckExLWJUNGFyRHNBRRAB", "timestamp": "7 months ago"}, {"text": "En vez de estrella mejor 1 pedrada me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto mañana denuncia en consumo jente desagradable y con amenazas", "author": "Kiko Gonzalez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB", "timestamp": "a month ago"}, {"text": "Esperienza negativa.\\nPremetto che le indicazioni Google per raggiungerlo sono approssimative. Si trovano in mezzo al nulla. In più quando ti danno l'auto non ti mostrano i danni e con la scusa del paperless non ti danno neanche un contratto con dettagli auto. Poi quando riconsegni arrivano a fare foto e per graffi minuscoli ti chiedono 400 euro. Sciocca io a non controllare ma chissà come mai hanno quasi tutte auto bianche... Preciso che abitando sull'isola prendiamo spesso auto noleggio e abbiamo sempre trovato disponibilità a risolvere senza derubare e gentilezza da parte di altre compagnie.\\nSono proprio una trappola per turisti come da location e struttura prefabbricata in mezzo al nulla\\nDa evitare come la peste.", "author": "Jessica Laganà", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzZ2NhOVBREAE", "timestamp": "a year ago"}, {"text": "Trato al cliente pésimo. Las dos mujeres q nos atendieron, desde el principio brillaron por sus malas formas y poca colaboración. Una joven y otra más mayor. No alquilaré más y no recomendaré a esta gente. Falta de educación.", "author": "Jose Manuel Cabrera Santana", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0ZlYyVkxOVVF3TWxCdkxUSmlha2xFUW1reVRVRRAB", "timestamp": "4 months ago"}, {"text": "No pongo una estrella porque no puedo ,estafada del siglo ,te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso ,viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual ,veremos a ver cuando lo entreguemos ,no vuelvo!!!", "author": "Sandra Ballesteros", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB", "timestamp": "2 months ago"}, {"text": "Ya son varias las veces que necesitado de los servicios vuestros y la verdad bastante bien, limpieza interior y exterior... pero destacar del personal especialmente Carlos muy profesional atento, amable siempre aconsejando el vehículo a mis necesidades", "author": "Un arabe liberal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2b2RfN05BEAE", "timestamp": "a year ago"}, {"text": "Wir haben bei Hertz gemietet, völlig unkompliziert, Tankuhr wird bei der Rückgabe kontrolliert. Vollkasko. Navi ist in mehrere Sprachen einstellbar, das Schwierigste ist, bei der Rückgabe, die Einfahrt zum Parkhaus zu finden, sie befindet sich links der Taxihaltestelle bevor man die Überdachung erreicht", "author": "Elisabeth Steinbauer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNV0dsS2pGdG9EcDhnRRAB", "timestamp": "7 months ago"}, {"text": "Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora.", "author": "Sergio Ruiz Galián", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB", "timestamp": "a month ago"}, {"text": "Sehr positive Erfahrung! Die Mitarbeiter waren alle sehr freundlich und hilfreich. Die Station ist außerhalb des Flughafens, es kann zwar zu Wartezeiten kommen aber dafür ist der Wagen günstiger und man ist gut aufgehoben.", "author": "Clara Färber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvM01HYUtnEAE", "timestamp": "9 months ago"}, {"text": "Descontento con el servicio. No lo recomiendo.\\nEstá fuera del Aeropuerto. ( Eso lo avisan en su publicidad, pero hay que tenerlo en cuenta)\\nLo peor y de ahí mi reseña. Me cobraron 55 euros por dejarlo antes de las 8 de la mañana. ( Más que el precio del alquiler del coche los 3 días que lo contraté).\\nPor el contrario el personal amable y bien dispuesto, lo de los 55 euros no es culpa de los empleados.\\nDe ahí poner 2 estrellas en vez de 1.", "author": "Didac Mora", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2amNLMFJBEAE", "timestamp": "a year ago"}, {"text": "Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. Con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total . Recomendables de 5 ***** .", "author": "Didac Poveda", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB", "timestamp": "3 months ago"}, {"text": "Siempre alquilamos el coche aquí cuando venimos a la isla. Además de que la relación calidad-precio es buena, el servicio de Kevin es espectacular y siempre te hace sentir súper bienvenida, es un gusto volver a contar con él cada vez que venimos!", "author": "Nora Fdez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGdWJGWlZWMVo1U1RJeVZGaEpSV3N6VVVScU1rRRAB", "timestamp": "7 months ago"}, {"text": "Wir waren etwas skeptisch wegen der vielen Meinungen, dass sehr akribisch nach Macken und Dellen gesucht wird.\\nWir haben das Personal bei Abholung des Wagens auf die vielen schlechten Bewertungen angesprochen. Die Mitarbeiter vor Ort waren sehr offen transparent. Wir haben den Vertrag per Email geschickt bekommen und auf unsere Nachfrage hin auch die bereits dokumentierten Schäden an unserem Mietwagen.\\nAuf uns wirkten die Mitarbeiter vor Ort fair und transparent. Natürlich müssen sie einem wahrscheinlich deren Versicherung anbieten. Wir hatten unsere eigene. Ich würde immer empfehlen eine Versicherung für einen Mietwagen zu haben- egal über welchen Anbieter abgeschlossen.\\nBei der Rückgabe wurde eine 0 8 15 (normale) Rücknahme gemacht.\\nDas die Vermietung kein Büro im Flughafen hat, findet man sofort heraus wenn man sich damit beschäftigt. Der Transfer hat bei uns sehr gut funktioniert - der shuttle kam an den beschriebenen Ort zur vereinbarten Zeit.\\nWir sind daher sehr zufrieden mit ClickRent.", "author": "Jonas Medler", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQeHZTcDhnRRAB", "timestamp": "a year ago"}, {"text": "Alquiler de coches que se encuentra a 15 min del aeropuerto, hay un servicio de transportes que te lleva y te trae. Nosotros no lo vimos y fuimos andando y tuvimos que pagar un suplemento por dejar el coche antes de las 8.\\nEso si el coche estaba nuevo y fue un gusto conducirlo", "author": "Isabel Cenamor", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VOUEZpSldMdFkyTVV3EAE", "timestamp": "7 months ago"}, {"text": "La semana pasada tuve alquiler con esta compañia, en la devolucion me achacaron un desperfecto en los bajos del coche,que por supuesto yo no ocasione...No contestan reclamacion, me siento engañado y espero que no le suceda a otra persona.Reserva CR1681909GC.Fiat 500 Matricula: 0391 MSP.", "author": "Jose Manuel Taboada", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzMXZ2aXJ3RRAB", "timestamp": "a year ago"}, {"text": "Tuve una experiencia excelente alquilando un coche con Click Rent en Gran Canaria. El proceso fue rápido y sencillo, y todo estuvo perfectamente organizado. Juan Manuel y Amelia fueron muy amables, profesionales y atentos durante todo el servicio. El coche estaba en perfectas condiciones, limpio y listo para disfrutar del viaje. Sin duda, recomendaría esta empresa a cualquiera que necesite alquilar un coche en la isla. ¡Repetiré sin duda en mi próxima visita!", "author": "Nathalie Paradis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUxxSHlnRRAB", "timestamp": "9 months ago"}, {"text": "MUCHO CUIDADO! Nos sentimos estafados! Al devolver un coche nos reclaman que hay un daño nuevo en los bajos delanteros del vehículo. El cual por supuesto no fue durante nuestro alquiler (es un desperfecto por rozadura que te darías cuenta al momento). No había ni rastro de arenilla o restos en el arañazo que según ellos había sido durante nuestro alquiler y además en el vídeo que hicimos al alquilarlo se ve algo de rugosidad en la zona pero dicen que no se ve claro. Resumen: UNOS ESTAFADORES!", "author": "Jaime Perez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZb2ViVGFnEAE", "timestamp": "8 months ago"}, {"text": "Todo perfecto,el chico que nos recogió en el aeropuerto super amable al igual que el que nos dió el coche en la oficina y a la hora de la entrega igual todo perfecto y sin problema sin duda repetiré con ellos.", "author": "Josue Heredia Heredia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSVlkwSjVXbmgwUzJwNVFVTm9WM0V0YlZOUlNsRRAB", "timestamp": "5 months ago"}, {"text": "Servicio pésimo. Contratamos por Internet un coche con este establecimiento, y no especifican que están fuera del aeropuerto, pero eso no es todo. Al llegar y firmar la documentación, nos informan de que tenemos contratado el servicio con todo riesgo y que la fianza que se nos pide son 200 euros en concepto de combustible. Tras hablar con ellos para ampliar un día más el alquiler de coche nos indican que no es posible y que no disponen de coche. Tras hablar con el encargado, este nos indica que si tiene un coche en concreto para darnos y que es de “ una categoría superior “ al que nosotros teníamos contratado cambiándonos un Ford focus por un sangyong tivoli.\\nAquí es donde empiezan nuestros problemas, le indicamos antes de salir del establecimiento que el coche hace algo raro el motor al acelerar y que en la parte delantera tiene un golpe. Nos sale la persona que nos atendió y nos dice que el coche está totalmente revisado, y que el golpe saben que lo tienen, que podemos irnos tranquilamente ya que el seguro a todo riesgo nos cubre de cualquier incidente.\\nSalimos del establecimiento a la autovía y tras recorrer tan solo 30 km el vehículo nos deja tirados.\\nSin\\nni siquiera ver el coche el encargado de tienda nos dice que eso es por negligencia nuestra y que se desentienden de la cobertura. No nos dieron asistencia en carretera, tanto es así que cuando vino la grúa tuvimos que pagarnos un taxi de nuestro bolsillo, para volver al establecimiento. Al llegar allí no nos atienden , no nos dan hoja de reclamaciones, y tampoco coche de sustitución. Además de esto sin nuestra autorización y sin habernos informado en el momento de recoger el coche mientras esperamos a la grúa nos realizan un cargo de 1400 euros , en concepto de reparación , sin ni siquiera estar el coche en sus instalaciones ni ser visto por alguien cualificado como puede ser un mecánico o un perito. Tampoco nos atienden a esta reclamación , y tenemos que incluso llamar a la policía para que se personen y nos den una hoja para poder reclamar.\\nDesde luego nos han arruinado el viaje haciéndonos perder un día, y el trato de dejar durante horas a 4 personas tiradas en la autovía a su suerte, cuanto menos no es de ser empaticos, ni profesionales, y mucho menos personas.\\nEn resumen estafadores, malos profesionales y pésima empresa, no repetiría con ellos nunca.", "author": "Javier Rodriguez ferruz", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfX2NUVG5nRRAB", "timestamp": "11 months ago"}, {"text": "Très bon service ; l’agence est à 2 minutes en navette ! La prise en charge est rapide et efficace.\\n\\nLes explications sont claires pour la prise en charge du véhicule : franchise ou assurances, sans forcer à prendre l’assurance.\\n\\nLe véhicule était neuf. L’hôtesse nous a informé que l’agence avait une semaine à notre arrivée.\\n\\nLa franchise a été encaissée à la prise en charge du véhicule, mais bien restituée au retour !\\n\\nAucun problème sur cette location. Notons aussi que le personnel est très agréable, courtois et patient.\\n\\nMerci Carlos et Nestor pour vos prestations, parfaites .", "author": "Damien REVILLIER", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3c05MZm53RRAB", "timestamp": "a year ago"}, {"text": "Acudí el otro día por primera vez y no pude estar más contenta, a parte del buen estado de los coches, el trato de los empleados no puede ser mejor.\\n\\nMe atendieron Amelia y Kevin y la verdad que fueron súper simpáticos y cercanos conmigo. El nivel de inglés de Amelia es buenísimo para poder hablar con ella, además es muy amable y el trayecto al aeropuerto con Kevin fue genial, me sentí muy segura.\\n\\nSin duda lo recomiendo. ¡Muchas gracias!", "author": "Victoria Guedes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJX1BXbVhBEAE", "timestamp": "9 months ago"}, {"text": "ClickRent kann ich nicht empfehlen. Mussten für ein Mietauto eine sehr hohe Kaution bezahlen. Oder wir könnten uns nochmal versichern und weniger Kautiom bezahlen, obwohl wir uns schon über die Agentur über die wir gekauft hatten vollständig versichert waren. Also sie wollten uns praktisch doppelt versichern, damit wir nicht so eine hohe Kaution gezahlt hätten.\\nWollten vor Ort außerdem nur die Kreditkarte des Hauptfahrers dafür. Keine andere Kreditkarte einer anderen Person, keine EC Karte, kein Bargeld, kein Paypal oder Revolut war in Ordnung. Wir waren vor Ort und hatten dann keine Möglichkeit zu bezahlen obwohl wir genügend Möglichkeiten hatten zu bezahlen. Sie haben uns dann vor Ort gelassen ohne eine Möglichkeit irgendwie ein Mietauto zu bekommen und was wir schon bezahlt hatten über die Agemtur bekamen wir ebenfalls nicht zurück obwohl wir kein Mietauto bekommen haben.\\nNie wieder würde ich über diese Agentur oder mit ClickRent ein Mietauto kaufen!!", "author": "Jule Schneider", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdmRUQ2xRRRAB", "timestamp": "10 months ago"}, {"text": "Tuvimos una experiencia muy favorable con ellos. Nos dieron el coche que alquilamos (Fiat 500), son flexibles con la entrega, no pusieron pegas a la entrega y la devolución de la fianza fue instantánea. Todo genial, repetiremos con ellos", "author": "Tati Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3NXVLZm9BRRAB", "timestamp": "9 months ago"}, {"text": "Nefasto servicio de atención al cliente en gran canaria. Contratamos todo riesgo y a los 32km se nos rompe el coche el cual no nos dan uno de sustitución, nos cobran la fianza de gasolina y además una cantidad desorbitada por una futura reparación sin saber que es.\\nA todo esto añadimos que nos quedamos tirados 5 horas sin apoyo por su parte, es más, estaban desafiantes.\\n\\nLa peor experiencia que he tenido en un viaje de ocio.\\nPor supuesto no repetiría ni gratis", "author": "Carlos Fernandez gonzalez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfdmZlS2xBRRAB", "timestamp": "11 months ago"}, {"text": "55€ te cobran a mayores si tu vuelo sale pronto y ellos no están abiertos. No dan opción a dejarlo aparcado y las llaves en un buzón?\\nNo sólo con eso, nos han cobrado 50€ de la fianza por concepto de “Limpieza adicional” por un poco de barro que había en la alfombrilla del conductor ya que ha llovido 3 días en la isla y tuvimos que dejar el coche a las 6 de la mañana.\\nEn fin, todo eran pegas.\\nNo contrato nunca más con esta compañía.", "author": "Tony Pasta", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNncGVpcVJ3EAE", "timestamp": "11 months ago"}, {"text": "Wir sind pünktlich vom Flughafen abgeholt worden und haben eine nette Mitarbeiterin getroffen und einen neuen Fiat 500 bekommen.\\nDie Rückgabe hat auch super geklappt, aber die Kaution wurde uns von der Kreditkarte abgezogen und NICHT wieder zurückgebucht. Auf meine e-mail habe ich noch keine Antwort erhalten.", "author": "Steffen Meinecke", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURubE5PZWhnRRAB", "timestamp": "a year ago"}, {"text": "ACHTUNG! Diesen Anbieter unbedingt meiden!!! Bei der Rückgabe wurde ein Abrieb und Farbrückstände am Handgriff der hinteren Türe moniert. Nur weil ich das Innere nicht gut kontrolliert habe, wurden mir Euro 360.- belastet. Zuerst wurde mir ein Betrag von Euro 600.- mitgeteilt, der dann gesenkt wurde.\\nFazit: NIE MEHR CLICKRENT!!!! Nie! Nie! Hände weg! Wer es trotzdem macht, ist selber schuld!", "author": "Christian Cotting", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvOUpUN1pnEAE", "timestamp": "9 months ago"}, {"text": "Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores", "author": "Casa Doranda", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB", "timestamp": "3 months ago"}, {"text": "Tratan de responsabilizar a la persona que alquila de averías mecánicas, para que estas lo paguen ,después de que el coche se averíe y sea imposible repostar te cobran un repostado de 103€", "author": "Pablo Rodríguez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kUmFGTmphamxZWXpBd2NGRndiMjlhWjFWdFltYxAB", "timestamp": "3 months ago"}, {"text": "Checkpoint schwer zu finden, Shuttle kam nach 20 Minuten nicht, sind gelaufen, Mitarbeiter dort brauchen 30 Minuten pro Buchung, keine Empfehlung", "author": "Kenny Miller", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KWWJHZDViRFpEZUZrMVlsTkhhbGRvVTJGSGNGRRAB", "timestamp": "3 months ago"}, {"text": "No os confiéis, HACED FOTO A TODO que las palabras luego no valen. Leeros bien el contrato, y mirad que entra en el seguro y que no. Contratamos un seguro al 100% pero luego no te cubre ni bajos, ni lunas etc. Además te entregan el coche roto para poder estafarte. No vuelvo a contratar.", "author": "Sol Alcaraz", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNndnMyTzB3RRAB", "timestamp": "11 months ago"}, {"text": "La experiencia con ellos fue muy satisfactoria, todo fue como esperábamos aunque las coberturas de seguros que se ofrecen el página web no se corresponden con las ofrecidas en la oficina. Sin embargo, pudimos contratar la póliza completa allí sin problema. El vehículo estaba muy nuevo y en perfectas condiciones. El personal fue muy amable y puntual, tanto Carmen que nos atendió en mostrador como Nestor y Antonio que nos recogieron y nos llevaron al aeropuerto. Nos prestaron una sombrilla de playa y un parasol para utilizarlos durante la estancia.", "author": "Cristi Coca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuNmRmbElnEAE", "timestamp": "a year ago"}, {"text": "Todo muy bien. La atención de todos los chicos con los que coincidimos fue fenomenal, tanto los conductores del minibus de cortesía como los recepcionistas a la entrega y recogida de llaves. Recomiendo siempre llevar el seguro a todo riesgo ya contratado, pues saldrá más económico y te evitarás disgustos innecesarios.", "author": "David Karma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIMzRQVkhREAE", "timestamp": "a year ago"}, {"text": "Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable", "author": "Alberto goñi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB", "timestamp": "a month ago"}, {"text": "Arrivée : Navette introuvable à l'aéroport, 20 minutes de marche pour se rendre au local.\\nRetour : impossible de rendre les clés avant 8h ou de les mettre dans une boîte aux lettres, stress garanti quand le vol est à 9h.\\nVoiture neuve et en bon état.", "author": "Aurélie MANZANARES", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncHRLVDJ3RRAB", "timestamp": "Edited 11 months ago"}, {"text": "Escribo esta reseña para destacar la atención recibida por parte de Antonio. Nos fue a recoger en el minibus al aeropuerto para ir a coger el coche y desde el principio fue muy amable. Nos comentó sobre la Isla y también nos recomendó algunos lugares que a él le gustaban. Luego a la vuelta tuvimos la suerte de volver a encontrarlo y nos llevó de vuelta al aeropuerto. A mí hija se le olvidó el teléfono en el minibus. Pensábamos que ya lo habíamos perdido, pero 30 minutos después recibimos su llamada, diciéndonos que nos habíamos dejado el telefono en el minibus. Y Antonio fue tan buena persona que volvió al aeropuerto para entregárnoslo. Ojalá hubiera más personas así.\\n\\nRespecto al servicio de alquiler el proceso fue muy sencillo y el coche estaba perfecto. No tuvimos ningún problema ni en el check-in ni check-out. Hemos probado otras compañías de alquiler de coches,pero está ha sido la mejor así que volveremos sin duda a contratar con ellos.", "author": "Jaime", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuZ0licjhnRRAB", "timestamp": "a year ago"}, {"text": "Je recommande!\\n\\nSuper expérience de location.\\n\\nNous avons été prit en charge par une navette à l’aéroport. La prise et la restitution du véhicule a été très rapide.\\nNous avons louer une fiat 500 toute neuve.\\nMerci à Nestor et Carlos très sympathique et serviable", "author": "Alan TVSHT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIeEpYV1N3EAE", "timestamp": "a year ago"}, {"text": "Encantados con Antonio, que nos asesoró muy bien para disfrutar de la isla con mucha simpatía hacia nosotros y hacia su trabajo.\\nTambién con Isaac que nos adesoró de todas las gestiones del coche de alquiler y su atención fue estupenda.\\nLa vuelta creemos que la hicimos con Carlos un chico muy cercano q tb era muy agradable y atento con las maletas e indicaciones para nuestro vuelo de vuelta.\\nEn general nos fuimos muy contentos, además una cosa a tener en cuenta q para nosotros era importante, era que no te cobran mucho depósito....Fueron 200€ y te dejan hacerlo con tarjeta de débito, hemos probado en otras compañías y te retienen muchísimo más y obligatoria la tarjeta de crédito, así q para nosotros fue una facilidad...Las furgonetas de traslado y coches de alquiler son nuevos.\\nMuchas gracias desde Cantabria a ese equipo de trabajo tan estupendo y que os siga llendo igual de bien.", "author": "Sandra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYeHJiLWlnRRAB", "timestamp": "a year ago"}, {"text": "Excelente experiencia. Hay que coger un shuttler porque no tienen oficina dentro del aeropuerto, sin embargo la regogida fue a tiempo y el trayecto a las oficinas es realmente corto. Antonio, el encargado del traslado fue sumamente amable y nos dio hasta jna hoja de recomendaciones para visitar en Gran Canaria (hecha a mano por el!! Un puntazo!)\\nEn las oficinas, me atendio Carmen que en todo monento fue amable y clara con las condiciones del alquiler.\\nEl vehiculo estaba en perfecto estado (era una marca desconocida para mi), y facil de conducir.\\nA la vuelta, la devolucion fue rapida y sencilla y en cero coma, antonio te deja en el aeropuerto.\\nSin duda repetiria con esta compañia.\\n\\nLa unica recomendacion que les haria, seria de mejorar las indicaciones que de aportan a traves de Booking para llegar al sitio de recogida, ya que no son claras. Deberia de empezar diciendo que hay que SUBIR a la planta de SALIDAS (no queda claro que hay que subir, ya que dice “ve a la salida” y se entiende que es a la salida del recinto. Sin embargo cuando llamas por telefono al numero de contacto que dais para la recogida, las instrucciones son mucho mas claras.", "author": "Juan Manuel Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuaHBMVDdnRRAB", "timestamp": "a year ago"}, {"text": "Nous recommandons cette agence de location, les véhicules sont très bien approprié pour circuler sur l'île\\nEt l'accueil très chaleureux", "author": "François Anselm", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taSU0yMHhVSG93UlRodWVXRnFWblpYU2xNMVJWRRAB", "timestamp": "5 months ago"}, {"text": "Lief im Grunde alles gut, nur anfangs war der Mitarbeiter recht unfreundlich, da er merhmals nachhakte, warum wir kein teureres Auto mieten wollen. Bei der Rückgabe lief alles reibungslos ab. Mit dem Auto gab es keine Probleme. Man muss aber aufpassen, ob beim Auto bereits Schäden sind.", "author": "Christoph Seidler", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBcHB1R1l3EAE", "timestamp": "11 months ago"}, {"text": "La peor experiencia alquilando coche de mi vida, q nadie pierda su dinero aquí es un robo te dicen un precio en su pagina y luego pagar más de ultima hora en la oficina el que lea esto q ni se le ocurra hacer algo con esta empresa", "author": "gego16", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKT2FIaExkaTFCZVZaRVkwMHhSMnhhWlVaUFduYxAB", "timestamp": "4 months ago"}, {"text": "Muy contento con el servicio , el personal espectacular , muy simpático y amable ! El coche muy nuevo y en muy buenas condiciones\\nMuchas gracias", "author": "Aitor Aguirre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBdnNhLXBnRRAB", "timestamp": "11 months ago"}, {"text": "Muy buena experiencia. Alquilamos un coche para conocer la islaa muy buen precio.\\nHubo un poco de confusión al principio para que nos recogiera el bus.\\nEl bus se toma en el punto de encuentro que hay si sales a la calle por la puerta 2 de Salidas.\\n\\nTanto Antonio como Dany que nos atendieron fueron muy amables.\\nEsperamos volver :)", "author": "Ainara MG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuMF9fYVh3EAE", "timestamp": "a year ago"}, {"text": "Nos atendieron rápido y nos dieron todo tipo de facilidades. El coche muy nuevo y limpio. Sergio, que vino a recogernos y dejarnos al aeropuerto, fue especialmente amable y nos dio buenos consejos para nuestra estancia.", "author": "ElíasMB", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3Nk9uWmhRRRAB", "timestamp": "a year ago"}, {"text": "L’agence de location vient d’ouvrir ! Les voitures sont neuves, le personnel est très professionnel et très sympathique ! Restitution de la voiture ce matin avec Carlos et navette aéroport avec Nestor ! Navette sans attente à l’aller comme au retour, le chauffeur nous a aidé à chargé ou déchargé nos valises ! Nous recommandons sans hésiter cette nouvelle agence de location !", "author": "H K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3c09mWm1RRRAB", "timestamp": "a year ago"}, {"text": "Un diez en todos los sentidos, desde el coche hasta el trato personalizado de cada uno de los trabajadores y el precio delo más competitivo. No se puede pedir más", "author": "Antonio García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w4MVVuZzRlazlJVkVseWQzRTNZeTFUVlZSdmJVRRAB", "timestamp": "Edited 5 months ago"}, {"text": "CUIDADO CON ESTA GENTE! Nos dan un coche que a los 10 minutos se avería (el cual estaba contratado con seguro a todo riesgo), no nos dan coche de sustitución y encima nos hacen un cargo de 1400€ por una avería mecánica que ni ha podido ser valorada porque seguíamos tirados en carretera esperando a que llegara la grúa ( la cual tardo 3 horas en llegar). Simplemente unos ESTAFADORES", "author": "Rafa Martinez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBb2VTRlRnEAE", "timestamp": "11 months ago"}, {"text": "Alles hat hervorragend geklappt. Der Treffpunkt des Shuttles ist zwar nicht ausgeschildert, aber leicht zu finden (2.OG Abflüge, Ausgang 1, 20 Meter nach rechts). Autos und Mitarbeiter sind top.", "author": "drew", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnakxHdjNBRRAB", "timestamp": "11 months ago"}, {"text": "Juanma is erg attent en aardig tegenover de klanten. De auto was in goede staat en de borg was onmiddellijk terug. Precies de ervaring die je wilt als je een auto huurt!", "author": "Masoud Taheri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJcUtHZGh3RRAB", "timestamp": "9 months ago"}, {"text": "Cogimos con el seguro a todo riesgo,con lo que nos dieron el coche màs viejo q tenìan...\\nLa oficina no està en el mismo aeropuerto, te vienen a buscar y el chico llegò màs tarde de la hora estipulada.\\nMis tres estrellas son para el personal por su amabilidad, la verdad q fueron muy correctos y agradables.", "author": "Lolina", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfOS1tamJREAE", "timestamp": "a year ago"}, {"text": "Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto. 50 minutos esperando en el aeropuerto para ser recogidos.", "author": "Cristina del Carmen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB", "timestamp": "a month ago"}, {"text": "Todo súper bien, el coche iba perfecto y el personal muy amable. Kevin súper apañao y simpático, esperamos volver y que nos recoja.\\nSaludos desde Málaga😎\\nAhí tienes la reseña que no perdí la tarjetita", "author": "Paula Aragones", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnbWJhNzN3RRAB", "timestamp": "11 months ago"}, {"text": "Carmen y Néstor fueron las primeras personas con las que hablé al llegar a la isla y marcaron un inicio de viaje buenísimo con su amabilidad y cercanía. La entrega del coche fue sencilla gracias a Antonio y a Dani. Un equipo encantador que te hace sentir muy bien ❤️ ojalá siga así!", "author": "Sara Velasco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzM3BYdnNBRRAB", "timestamp": "a year ago"}, {"text": "Todo perfecto. 3 días de alquiler por lo que cuesta un aperitivo. Tanto al recoger el coche (Dany/Fran) como al devolverlo (dos personas distintas), todo facilidades y amabilidad. No está en el aeropuerto, pero ofrecen bus en 5 minutos. Totalmente recomendable", "author": "ignacio moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIejVlRWtnRRAB", "timestamp": "a year ago"}, {"text": "Coche nuevo, limpio y fragante. Ningún problema", "author": "edu marco", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WSlJGRjZlbXMxUlcwME9VOXhVSFJFU0VkUU1IYxAB", "timestamp": "3 months ago"}, {"text": "Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes, sin duda repetiremos, el coche impoluto y nuevo", "author": "Fanny Guamán Landívar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB", "timestamp": "a month ago"}, {"text": "Recomiendo al 100% esta empresa de alquiler de coches. Nos recogieron en el aeropuerto en seguida, no tienes que esperar prácticamente nada, ya que hacen viajes cada 15 min aprox. Destacar la atención inmejorable de Isaac y Antonio, ambos muy atentos y recomendándonos lugares para visitar y comer en la isla. Muy amables, agradables y profesionales. Recomendaremos está empresa sin duda.\\nGracias!!!", "author": "Cristina Gómez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINV82TjNBRRAB", "timestamp": "a year ago"}, {"text": "Muy buena empresa de alquiler de coches , el trato es excelente desde la persona que te lleva del aeropuerto a su oficina y las personas que te atienden en ella. Gracias Isaac y gracias Antonio , son muy amables 🙌🏼😊.\\nTambién te regresan al aeropuerto cuando entregas el coche .\\nBuen trato, buenos precios .", "author": "STEFFY G. R.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURILS12S1ZBEAE", "timestamp": "a year ago"}, {"text": "Ha sido un placer , coger el coche con ClickRent, servicio formidable te recogen en el aeropuerto y te vuelven a llevar. El personal es amable y encantador. Antonio, Carmen y Néstor fueron en magnífico con nosotros . Recomiendo alquilar con ellos", "author": "Miguel Villegas Gallardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURINW9Xakt3EAE", "timestamp": "a year ago"}, {"text": "Hanno provato a rifilarci un'assicurazione oltre alla nostra fatta all inclusive. Orario di apertura ore 8 ma se hai l'aereo presto aiuto!\\nAll'andata la navetta inesiste", "author": "Alessandra Z.", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmb2RHU3Z3RRAB", "timestamp": "a year ago"}, {"text": "Recomendable 100%. Agradecer a Carmen y Nestor lo amables que han sido. No conocíamos esta empresa de alquiler de vehículos y hemos quedado encantados con la profesionalidad y trato de ellos. Si volvemos, no dudaremos en volver a contratar con ClickRent. Muchísimas gracias por todo.", "author": "Virginia pedruelo garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaklqNDZBRRAB", "timestamp": "a year ago"}, {"text": "Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática.", "author": "Pedroluis Santana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB", "timestamp": "a month ago"}, {"text": "Todo muy bien muy agradecidos muy buena la empresa y el personal Dani, Fran y el otro chico que nos buscó en aeropuerto muy atentos y el coche una pasada totalmente nuevo lo estrenamos muchas gracias", "author": "alejandro serrano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudWN5WVN3EAE", "timestamp": "a year ago"}, {"text": "Servicio nefasto, nos han cobrado unos daños que no habíamos hecho, hicimos un vídeo del coche en el que se apreciaba ligeramente ya que los daños que nos atribuyen no se ven a simple vista. Tocará reclamar, no lo recomiendo para nada.", "author": "Miguel", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZd2ZTVmd3RRAB", "timestamp": "8 months ago"}, {"text": "Alles gut, guter Anbieter, das einzige Problem, Shuttle zum Flughafen funktioniert gut, aber vom Flughafen zu der Firma mussten wir zu Fuß laufen, per Telefon kann man unmöglich jemanden erreichen um Shuttle zu bestellen, antwortet immer Computer, keine Chance..", "author": "Jonny Star", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRcTYzVTJnRRAB", "timestamp": "10 months ago"}, {"text": "No recomiendo. Alquilamos un coche al cual no le dimos ni un roce y nos han cobrado 380€ para reparar un raspón en la parte inferior del parachoques el cual ya estaba. Ponen los alquileres muy baratos pero luego te estafan.", "author": "Nacho", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZb2E3d3BRRRAB", "timestamp": "8 months ago"}, {"text": "La atención de Carmen ha sido magnífica ( lo cierto es que ha tenido mucha paciencia para explicarnos las opciones que teníamos y nos ha recomendado la mejor para nosotros) ha sido agradable, risueña y atenta.\\nAdemás, hemos ido andando y a medio camino Fran se ha parado con el mini bus (que ponen de cortesía desde el aeropuerto hasta el punto, pero con las prisas se nos había pasado) y nos ha llevado el tramo que faltaba.\\nPor otro lado, nos han facilitado puntos de interés, cosas que nos ha gustado mucho.\\nHemos quedado muy satisfechos, sin duda los elegiremos!!", "author": "Rebeca Gonzalez Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINDRYa3NRRRAB", "timestamp": "a year ago"}, {"text": "Unser Flug hatte Verspätung deswegen konnten wir nicht zu der vereinbarten Uhrzeit da sein. Bei Ankunft haben wir jedoch uns Dumm gesucht wo der Shuttle Minibus sein konnte. Wir haben jeden gefragt. Keiner kennt diese Firma. Wir wurden von oben nach unten geschickt und wieder zurück. Keine Person kein Minibus war vor Ort. Keiner hat uns versucht zu erreichen. Keiner hatte eine Aufschrift mir unseren Namen. Eins müsst Ihr wissen. Diese Firma hat KEIN Büro oder Office am Flughafen wo ihr jemanden fragen könnt. Keine Aufschrift mit Click rent NICHTS. Anrufe werden nicht angenommen. Oder es wird gesagt sie arbeiten von 8-20 Uhr und es wird wieder aufgelegt. Nach einer Stunde nach dem wir den Gang am Flughafen zig mal abgelaufen haben und nebenbei telefoniert haben. Haben wir ein anderes Auto von Sixt gemietet.", "author": "Emel Isciler", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYeHZ5V2VREAE", "timestamp": "a year ago"}, {"text": "La mejor compan̈ia que he contratado de largo, muy satisfecho con todo, tanto el vehiculo como el personal, el traslado, y el precio, fantastico, repetiré", "author": "Toni Domene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psa01VRkJOVWsxWTNJeFNrRkljakZuWkRsNk4yYxAB", "timestamp": "5 months ago"}, {"text": "Nueva franquicia de ClickRent, Aunque está fuera del aeropuerto, merece la pena. Transfer gratuito a/desde el aeropuerto a la campa donde tienen los coches. Flota de coches nuevos, nosotros estrenamos un Fiat500 cabrio de hecho. Trato súper profesional y exquisito por parte de Carlos, Néstor y Antonio que nos atendieron siempre con una amabilidad extrema y una sonrisa. Sin duda repetiremos.\\nPor poner un punto a mejorar(aunque seguro que están en ello) hay que señalizar la entrada a la campa para la devolución de los coches.", "author": "Jose Luis Damian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnMtYnpnRRAB", "timestamp": "a year ago"}, {"text": "Sehr zufrieden,\\nSchnell zuverlässig und freundlich. Habe das Auto für 5 Tage gemietet mit Vollkasko bei jeglichen Schäden. Die Kaution bei der Abgabe sofort erstattet bekommen. Nur zu empfehlen. Danke an Antonio und Carmen Isaac.", "author": "Firat Sahin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcDVmbHd3RRAB", "timestamp": "a year ago"}, {"text": "Super obsługa. Auto zarezerwowane wcześniej przez internet. Żadnych problemów. Najtańszy depozyt. Mocno polecam. Bus jedzie z lotniska ale warto się przejść bo jest blisko.", "author": "Robert Grochowski", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNUozUVpnEAE", "timestamp": "9 months ago"}, {"text": "Bueno decirles q alquile un coche,con\\ndouyou spanish,con seguro contratado por douyou spanish y cuando llegó ya me dicen q si quiero seguro con ellos de 120eur,lo cual me sorprendió pues en la entrega el mismo chico q me ofrece el seguro fue directo a 2 sitios del coche q ni a simple vista se veían total q como tenía seguro de fianza se agarró de eso la culpa fue mía porq no saque fotos al coche porque el coche nuevo por tos lados pero en los bajos q ni hay se me pasaría por la cabeza sacar fotos pues mira para mi un atraco perfecto ya no alquilaremos más con esta gentuza pues vuelvo a reiterar fue a tiro hecho hacia esos 2 lugares ni siquiera miro si lo devolvía con el tanque lleno, al saber q tenía seguro franquicia se aprovecho pero perdió un cliente y varios q me aseguraré de q no les hagan mas reservas y si alquilan con ellos asegúrense bien sobre todo bajos sacarle videos,parecían majos pero mira el calma existe amigo q dios te de el doble de lo q me deceastmeun saludo", "author": "Monsito De La Luz Pulido", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VKYmM4dWZJaDZpaVZ3EAE", "timestamp": "7 months ago"}, {"text": "Empresa seria, coches de calidad y personal cualificado y serio.\\nIniciamos nuestras vacaciones alquilando en CLICKRENT, nos vinieron a buscar Antonio y Dani al aeropuerto, 2 chicos muy amables y profesionales, nos recomendaron de camino a CLICKRENT varios sitios donde comer, visitar, etc.. Al llegar a CLICKRENT nos atendieron Carmen y Nestor, muy bien también, nos explicaron toda clase de dudas etc... Sin duda volvería a alquilar con ellos.\\nCoches nuevos, en condiciones y limpios.\\nGracias por todo equipo.", "author": "Eloi G", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIa01qcGV3EAE", "timestamp": "a year ago"}, {"text": "Coche nuevo y en perfectas condiciones. Trato muy amable de personas que se esfuerzan para que el cliente quede satisfecho. Tuve un problema con el horario de cierre, pero no fueron ellos los culpables. Se debía a un error del portal donde reservé. Muy buen comportamiento con el cliente, especialmente Dani y Antonio.", "author": "J.M. Aviram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3aTVHSm9RRRAB", "timestamp": "a year ago"}, {"text": "Experiencia inmejorable, el coche nuevecito y la atención fantástica. Antonio, Carmen, y el resto de gente que nos atendió fueron súper amables. Tenemos intención de volver a Gran Canaria y sin duda alquilaremos el coche con ellos otra vez.", "author": "Naïs Álvarez Cardoso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3ZzQyaEVREAE", "timestamp": "a year ago"}, {"text": "Výborná služba. Dobrá cena, dostali jsme za zaslání cévní Seat Ibiza ve výborné výbavě. Shuttle z letiště trval asi pět minut a čekali jsme na něj asi dvacet minut. Je trošku těžké najít na letišti, kde je meeting point, to je jediný návrh na zlepšení.\\nDíky za tuhle službu. 👌", "author": "Jan Šimon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3MlBlWWd3RRAB", "timestamp": "10 months ago"}, {"text": "Carmen nos atendió genial en la oficina. El chico que nos llevó del aeropuerto a la oficina y viceversa (Antonio) muy majo y atento\\nSon muy claros explicándote las cosas y eso se agradece\\nNos tocó un coche nuevo a estrenar\\nAconsejo rellenar el depósito en Canary Oil", "author": "Elena Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOE9fcGdRRRAB", "timestamp": "a year ago"}, {"text": "Voiture louée pour une semaine en février. Voiture de 6000km, aucun défaut, prise en charge relativement rapide, retour sans encombre et prix très raisonnable.\\n\\nOn conseille vivement", "author": "Victor Brondino", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnbWZyOUx3EAE", "timestamp": "11 months ago"}, {"text": "Inmejorable servicio, coches a estrenar , ademas los chicos super majos otro punto importante muy bien de precio", "author": "Isabel Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3eWR1ekJREAE", "timestamp": "a year ago"}, {"text": "Hallo zusammen , bitte diese Unternehmen nicht buchen wegen Schäden die nicht vorhanden waren und über die Vollkasko abgerechnet wurden!!!\\nSie müssen die Schäden akribisch dokumentieren Foto und Video dringend erforderlich und niemals mit Selbeteiligung buchen.", "author": "Andre Eckert", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnNDVpajhBRRAB", "timestamp": "11 months ago"}, {"text": "Coche de gama muy inferior al contratado, sin previo aviso antes de contratar. Dificultad para obtener la información sobre punto de recogida. Exigencia de un seguro añadido para la cobertura de llantas y cristales.", "author": "Diego De Las Fuentes", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBZzZQRVB3EAE", "timestamp": "11 months ago"}, {"text": "Tout c'est bien passé pour nous, merci à Dany et Antonio pour leur professionnalisme.\\npour ceux qui ont une carte de débit, il n y a pas d assurance obligatoire à prendre ,juste la caution de 1000 euros.\\nVoiture à rendre avec le plein sans le nettoyage à faire .", "author": "Jeremy Marguerit", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuNXA2ekhREAE", "timestamp": "a year ago"}, {"text": "Un servicio más que excepcional; los chicos que me atendieron Carlos y Antonio fueron super amables y muy profesionales. La flota de coches es nueva y me dieron un coche a estrenar, 100% recomendable. Muchas gracias por todo y repetiré sin duda", "author": "Francisco J. S. Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuak9xaXZBRRAB", "timestamp": "a year ago"}, {"text": "Coche impecable y trato de 10. Carmen, Nestor y Antonio lo pusieron todo muy fácil. La información para llegar al microbus de cortesía es un poco confusa. Para el aeropuerto de Las Palmas hay que subir a la primera planta para llegar al punto de encuentro.", "author": "Miguel Rodríguez Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOU9PNG5BRRAB", "timestamp": "a year ago"}, {"text": "La experiencia ha sido increíble, desde el trato de Isabel que fue la chica que nos atendió y nos comentó todo lo que teníamos que saber, hasta los chicos Carlos, Néstor y Antonio que nos recogieron y nos trajeron de vuelta al aeropuerto y nos comentaron cosas que podíamos hacer y sitios que visitar.\\nUna compañía muy buena, además el coche tenía solo 11km lo hemos estrenado nosotros 🩷\\n¡Gracias a todo el equipo!", "author": "Carmen Almagro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnVtNzZ3RRAB", "timestamp": "a year ago"}, {"text": "Ze vragen 1200 euro voor een bluts die al aanwezig was. Opletten!", "author": "Wolf Hernalsteen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB", "timestamp": "3 months ago"}, {"text": "Die Abholung war etwas schwierig, da wir den Treffpunkt am Flughafen erst später gefunden haben.\\nRückgabe ohne Probleme. Gutes Auto (VW Taigo).", "author": "M.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfaDdUVF9BRRAB", "timestamp": "a year ago"}, {"text": "Nuestra experiencia fue buena. Atienden rápido. Muy amables. Te recogen y te llevan al aeropuerto en un vehículo de la empresa.", "author": "Nuria Monio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJNU8zWi13RRAB", "timestamp": "9 months ago"}, {"text": "Magnífico servicio. Antonio y Néstor esperándonos un buen rato, ya que llegó tarde el vuelo y una amabilidad magnífica. E Isabel nos solucionó todo en la oficina en nada de tiempo. Si volvemos por ahí, sin duda repetiremos", "author": "Manuela Gonzalez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3eUpMTWJ3EAE", "timestamp": "a year ago"}, {"text": "Trato inmejorable de Carlos, Antonio y Dany. Tres personas muy amables que se portaron conmigo en todo momento de 10. Cabe destacar que Dany, el día de la devolución quise prolongar mi reserva y aun teniendo problemas técnicos con el programa, hizo todo lo posible para que se llevara a cabo dicha ampliación, muy preocupado por dar un buen servicio.\\nSe nota que dan todo por su empresa y los clientes, a día de hoy esto se agradece.", "author": "Julio Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINTlMel93RRAB", "timestamp": "a year ago"}, {"text": "El servicio genial! Somos un poco pardis y al llegar al aeropuerto de gran canaria nos hicimos un poco lio para buscar el punto de recogida, es salir por la segunda planta del aeropuerto puerta 2 y todo recto! NESTOR , FRAN Y DANY, gracias por el servicio! Y la mujer que nos atendió a la vuelta qu no recordamos su nombre. Hemos cogido un fiat 500 y para movernos y aparcar en la isla ideal. Si volvmos a Gran Canaria alquilamos aqui fijo.", "author": "eva gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdkxfR0d3EAE", "timestamp": "a year ago"}, {"text": "Experiencia negativa , no recomiendo , buscan cualquier rayada hasta debajo del coche para sacarte el dinero , por no decir el transporte hasta el aeropuerto, tarde ( tuvimos que llamar en varias ocasiones para que vinieran ) y mal , a una velocidad excesiva. No volvería a usar ni recomendaria a nadie .", "author": "Silvia Olivera", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzcU8tYWpnRRAB", "timestamp": "a year ago"}, {"text": "Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen.", "author": "Judith Class", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB", "timestamp": "a month ago"}, {"text": "Annoncer sur Booking 43 €.pour 10 jours\\nPour payer finalement 283 €", "author": "Aurelie Ottolini", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB", "timestamp": "2 months ago"}, {"text": "Reservamos dos coches con ClickRent para recorrer la isla, y fue la mejor decisión. Coches muy cuidados y un personal excelente, especialmente Néstor, Carlos y Fran que nos ganaron con su amabilidad. ¡Repetiremos seguro!", "author": "NEUS GARCÍA SABATER", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOVBEQjlBRRAB", "timestamp": "a year ago"}, {"text": "Personal atento y amable. Nos han dado un coche de gama superior.", "author": "Ana CG", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WMmRWVnFNMmxrY1U1NFJXOUtVRkpaUnpJeFIxRRAB", "timestamp": "5 months ago"}, {"text": "Aeroportdan 1 km aralıdır. Servis əladır", "author": "Mimiko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB", "timestamp": "4 weeks ago"}, {"text": "Bueno, super buen trato por parte del personal, como siempre calidad precio razonables, lo único que yo veo mal y que cambiaría en la página online es que te dice alquila el coche con 0€ de franquicia resumido, y cuando llegas a la oficina te dicen que tienes que dejar 200€ de franquicia eso lo veo mal, es como si digo te vendo una pulsera por 15€ y cuando llegas al establecimiento te la vendo en 30€ por eso le doy 3 estrellas, de resto todo fenomenal, coches espectaculares, personal espectacular, y precios espectaculares.", "author": "Feluco110 ESP", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NWRINlJBEAE", "timestamp": "9 months ago"}, {"text": "Magnifico el precio, pero mejor aún el trato recibido por parte del personal. 100% recomendable", "author": "miguel paz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzd1puWk9jMHRoUlVsT1VWbGZRMWhyVkdrek5FRRAB", "timestamp": "5 months ago"}, {"text": "Muy buen servicio de Carmen, muy amable y rapida, además nos han encantado las recomendaciones de Antonio sobre que ver en la isla.\\nPor otro lado los coches estan muy cuidados por dentro, con pocos kilómetros y muy limpios. Excelente servicio.", "author": "ale piku", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuM01lbVF3EAE", "timestamp": "a year ago"}, {"text": "La comunicación y la acogida ha sido increíble! Nos vinieron a buscar al aeropuerto y también nos llevaron al finalizar las vacaciones. La atención ha sido excelente tanto por parte de Isa e Isaac, como por parte de Antonio y Néstor. Sin duda repetiremos!! Gracias por todo ☺️", "author": "carmen Buzón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bHAzc2ZnEAE", "timestamp": "a year ago"}, {"text": "Gran servicio, gran atención, buenos precios. Desde luego que volveré a reservar con esta empresa cuando vuelva a Gran Canaria o me coincida en otro aeropuerto.\\n\\nMi experiencia con el staff de Gran Canaria es de 5 estrellas 🌟", "author": "Martín Alejandro Bobadilla Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYMTgta1pREAE", "timestamp": "a year ago"}, {"text": "Muy mala experiencia, contraté un Peugeot 5008 o similar y me dieron un Citroën Berlingo, primero querían hacerme ver que era la misma categoría, después culparon a Booking, en ningún momento valoraron solucionar el problema incluso planteando yo la posibilidad de pagar un suplemento, muy mala atención, la chica que me atendió era bastante desagradable, una mala experiencia la verdad y pa colmo la incomodidad de estar lejos del aeropuerto, no lo recomendaría a nadie.", "author": "Fran Moreno, Prozovet", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJak5fcWZnEAE", "timestamp": "9 months ago"}, {"text": "Destacar la facilidad para alquilar el coche, además el personal ha sido realmente amable y el precio muy económico.\\nNos guardamos el contacto para volver a repetir.", "author": "Rosario Jimenez Ginzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuMF9PZmVnEAE", "timestamp": "a year ago"}, {"text": "Hemos alquilado un coche y súper bien toda la experiencia, nos vinieron a recoger incluso al aeropuerto, nos dieron recomendaciones y tips para nuestras vacaciones. Sin duda un acierto!!", "author": "Marta Minguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURudnMyQ3lRRRAB", "timestamp": "a year ago"}, {"text": "\\"Unser Erlebnis bei ClickRent war absolut positiv! Wir wurden hervorragend informiert und das Team stand uns mit allen wichtigen Details zur Seite. Das gesamte Team war nicht nur freundlich, sondern auch äußerst vertrauenswürdig, sodass wir uns vom ersten Moment an wohlgefühlt haben. Die Preise sind sehr fair, und die Fahrzeuge waren in einem top Zustand. Besonders hervorzuheben ist der exzellente Abholservice – einfach perfekt! Wir können diesen Autoverleih ohne Einschränkung weiterempfehlen und würden jederzeit wieder hier buchen.\\"", "author": "Anna Teuber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcE1TN1N3EAE", "timestamp": "a year ago"}, {"text": "Todo perfecto!! Rápidos y con un servicio excelente el coche nuevo y en perfecto estado y nos dieron hasta detalles de sitios y comidas que probar gracias a Dany, Antonio y Néstor todos super amables cuando volvamos a las islas repetiremos seguro con ellos.", "author": "german R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdUl2M09REAE", "timestamp": "a year ago"}, {"text": "La experiencia ha sido negativa, nos han exigido pagar un desperfecto en el coche que nosotros no hicimos, factura de 385€ según su valoración, triste que hayan negocios para robar al consumidor.", "author": "Alvaro Gr Gc", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZb2ZxWlBREAE", "timestamp": "8 months ago"}, {"text": "Muy buena atención, los coches son nuevos y van muy bien, les falta tener un poco de indicación en el aeropuerto pero por lo demás perfecto, 100% recomendable y volveré a alquilar vehiculos con ellos", "author": "Francisco Amable Rodriguez Gabriel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURub2NhSC1nRRAB", "timestamp": "a year ago"}, {"text": "Kaikki toimi moitteettomasti ja kyyti kentälle palautuksen jälkeen. Henkilökunta oli mukavia. Hieman tietysti jännitti halpa hinta, mutta palauttaessa ei mitään siivous tai pesu kulujakaan alettu perimään. Omasta mielestä voin suositella.", "author": "Nico Marila", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJejhyYzV3RRAB", "timestamp": "9 months ago"}, {"text": "Antonio y Dani, nos gestionaron todo lo relativo al traslado del aeropuerto al sitio de recogida del coche, super atentos y muy amables. Muchas gracias y un abrazo grande.", "author": "Carlos Suarez Rozo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuN18yM2xRRRAB", "timestamp": "a year ago"}, {"text": "El servicio del alquiler del coche fue genial. Aparte el viaje de vuelta al aeropuerto con Kevin fue muy ameno,repitiria!", "author": "Arturo Olmedo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNna3RTYlR3EAE", "timestamp": "11 months ago"}, {"text": "Me fue super bien , me Costo un poco encontrar el punto de encuentro en el aeropuerto pero ellos mismo vinieron a buscarme un equipo genial , Bea una chica encantadora me recogio el coche y fue muy amable , muy recomendable.", "author": "Adelaida Ruiz jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2aXRmSXNBRRAB", "timestamp": "a year ago"}, {"text": "Todos muy amables y el servicio y el coche muy bien", "author": "Lidia Silva", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOWlQzVnBSamd0YWs0MVl5MXhRWGN4U21oYWFXYxAB", "timestamp": "5 months ago"}, {"text": "Tramitar la reserva con los chicos fue de maravilla!! Especialmente Carlos, Néstor y Fran nos hicieron las cosas muy fáciles, además de que no te piden muchos requisitos y es barato, con coches a estrenar para disfrutar de la isla en condiciones.", "author": "JM Wences", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOUxDR3NnRRAB", "timestamp": "a year ago"}, {"text": "Presentar una reclamación en las oficinas de protección al consumidor en España y en Bruselas. Esto funciona.", "author": "Damaso Garcia", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCelpsRjZNR1IzY21zMWJtOWlVbU5zY1dsMlpuYxAB", "timestamp": "4 months ago"}, {"text": "Excelente servicio. Las personas que hacen el traslado desde el aeropuerto a sus instalaciones, muy atentas. Los compañeros que atienden en la oficina, muy serviciales. Recomendable 100%.", "author": "Roberto Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuME02MFBREAE", "timestamp": "a year ago"}, {"text": "Sorprendido con este nuevo Rentacar en Canarias, tanto Carlos como Fran han tenido una muy buena atención. Alquiler económico y el vehiculo en excelentes condiciones. Recomendable. Gracias y muchos éxitos!!!", "author": "Armand", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIdE9pdzJBRRAB", "timestamp": "a year ago"}, {"text": "Die Autovermietung ist fair und kann nur weiterempfohlen werden!\\nMitarbeiter Huan war super freundlich und hilfsbereit, danke dafür.\\nGerne wieder!", "author": "Mona Breitschwert", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NUw2bE9nEAE", "timestamp": "10 months ago"}, {"text": "He reservado con mi pareja un coche a muy buen precio y desde que llegamos al aeropuerto estaba Antonio esperándonos, nos ayudó con las maletas e incluso nos recomendó la mejor manera de aprovechar las vacaciones, luego en la oficina nos atendió isaac que nos facilitó el coche y además nos regalaron para nuestra hija unos detalles, estamos muy agradecidos con los chicos y la empresa, muchas gracias!!", "author": "Nare Yanez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcy0zcnJRRRAB", "timestamp": "a year ago"}, {"text": "Encantado con el servicio que ofrecen y sobretodo con Dani que me entendió super bien. Volvería allí para alquilar otro coche por necesidad.", "author": "Isaí Alemán Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuemR1NWhnRRAB", "timestamp": "a year ago"}, {"text": "Una compañía estupenda, personal muy amable , la eficacia para todo muy rápida ..recomiendo esta compañía 100%", "author": "Beatriz Brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIeFBTYldnEAE", "timestamp": "a year ago"}, {"text": "Muy contento con el servicio recibido y el trato del personal. Lo recomiendo", "author": "Antonio Porras Ruiz (Antrax1978)", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1a1dWVm5TVXQ1UTJaclRVSTFWMVp6Y21jeWRrRRAB", "timestamp": "4 months ago"}, {"text": "Excelente servicio , excelentes coches , al lado del aeropuerto y mas economico , lo recomiendo . Muy amables , buen trato. Gracias muy majos antonio y dani , subirles el sueldo xd jaj 😆👍💪", "author": "Luis Miguel Garces Galindo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuM29UOVhBEAE", "timestamp": "a year ago"}, {"text": "Nos atendieron Carlos y Francisco. Fueron simpáticos y amables. Nos vinieron a recoger al aeropuerto y también nos dejaron a la vuelta. Muy recomendable.", "author": "Javier Gabrielloni", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINk0zdDVnRRAB", "timestamp": "a year ago"}, {"text": "Recomendable 100%. Fuimos atendidos por Carlos y fue muy amable con nosotros. Si volviéramos a la isla sin duda repetiríamos.", "author": "Sandra López Gómez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURubU43MGJnEAE", "timestamp": "a year ago"}, {"text": "Super amable, profesional, sin problemas y buena gente! :)", "author": "Patrick Ittner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taUGRHVnhXbXd4WTNsUlJ6STRjRzFZY1hkdWNrRRAB", "timestamp": "4 months ago"}, {"text": "Günstig und unkompliziert, nahe am Airport mit shuttle service", "author": "Andreas Rust", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5UVEycDBTUzFRV2sweWFrcHljbUpDVUVOcVdFRRAB", "timestamp": "5 months ago"}, {"text": "Fuimos atendidos por Carlos y Antonio y la experiencia fue estupenda. Muy amables y en lo relativo al coche todo genial. Repetiré", "author": "Javier Ariza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIdm9XNXF3RRAB", "timestamp": "a year ago"}, {"text": "Todo perfecto. Súper rápido y sin ningún problema tanto en la reserva como con el coche. Gracias Antonio por tu ayuda y gestión. Totalmente recomendado!!!", "author": "Zuleima Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNId2NXWTd3RRAB", "timestamp": "a year ago"}, {"text": "Muchas gracias a todo el equipo de Click en Ojos de Garza, Carmen, Antonio, Nestor y sus compañeras que nos han atendido perfectamente y con gran amabilidad. Repetiremos sin duda. Un saludo cordial", "author": "JOSE JULIO OLMO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOHFuazRRRRAB", "timestamp": "a year ago"}, {"text": "Carlos és Fran mindenben a segitségünkre voltak. Nagyon kedves és segítőkész volt mindenki. A hab a tortán az volt amikor Carlos az anyanyelvünkön, magyarul szólt hozzánk. Ha bárki autót szeretne bérelni Gran Canarian jó szívvel ajánlom neki a srácokat! Kiváló ár/érték arány.", "author": "László Dávid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIOVkzUFJ3EAE", "timestamp": "a year ago"}, {"text": "Buen trato del personal y buen precio de alquiler.", "author": "ismael iñigo costoso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB", "timestamp": "3 weeks ago"}, {"text": "Lamentables. No se merecen ni que me canse escribiendo", "author": "Beñat De Carlos Iparragirre", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB", "timestamp": "a month ago"}, {"text": "Tienen pocos trabajadores y la fila rápida es mentira.", "author": "Javier Arcos", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WS1lXcDVielpDV2xWVFNubFJVRGhtWXpkMlgxRRAB", "timestamp": "4 months ago"}, {"text": "Super location de voiture les personnes sont top !! Super gentil l'accueil est rapide et précis vraiment parfait merci 👍", "author": "Leane Aittahar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3d3I2cjR3RRAB", "timestamp": "10 months ago"}, {"text": "Alquile una semana con ellos. El precio inmejorable y la atención mejor. Gracias Isa ( a mi llegada) , Carmen y Antonio al recoger el coche.", "author": "Esperanza Rodriguez Moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3M0txbDVBRRAB", "timestamp": "a year ago"}, {"text": "Trovati malissimo ti chiedono danni inesistenti dopo che si è consegnata la macchina e poi fai per contestare il danno e non rispondono più", "author": "Mattia", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VLRzdyN19VeG9xdkFnEAE", "timestamp": "8 months ago"}, {"text": "Servicio increíble, personas muy amables que nos dieron todas las facilidades y las mejores opciones de coche según nuestras necesidades a destacar el precio y la intención del personal so!re todo de Carmen.", "author": "Elisa Balderas Zúñiga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NjhQSy1RRRAB", "timestamp": "a year ago"}, {"text": "Buena experiencia y legales, no como la competencia Gold Car que me estafaron y por ende tuve que acudir a ClickRent.", "author": "Jose", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvMktEWTh3RRAB", "timestamp": "9 months ago"}, {"text": "Excelente experiencia! Amabilidad en la atención al cliente y buena relación calidad- precio. Estrené coche! 100% recomendable.", "author": "Ana Covelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3NWVyUVBBEAE", "timestamp": "a year ago"}, {"text": "Cuidado con que te ofrezcan seguros que ya tienes contratados. Elige la retención de 1000€", "author": "J.V. H.C.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeGIxSmhVamRrYm1oaVowUXlja1l6UzI1dlpHYxAB", "timestamp": "5 months ago"}, {"text": "Shuttlebus hat nicht geklappt, mussten mit Taxi hin fahren.\\nLange Wartezeit\\nAuto aber super", "author": "Patrick adober", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3Mzg2Vk93EAE", "timestamp": "10 months ago"}, {"text": "Impecable servicio de alquiler de coches. Muy útil para recorrer la isla. Perfecta atención por parte de Carlos, Fran y Néstor. Repetiremos.", "author": "Alejandro J. G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuck5mSWZBEAE", "timestamp": "a year ago"}, {"text": "Nette Mitarbeiter, es hat alles reibungslos funktioniert.", "author": "Alisa Albrecht", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s0MWRtMVBlSGRPT1VkWmFITXpWRWxNVVY5M1VGRRAB", "timestamp": "4 months ago"}, {"text": "Los empleados muy amables y cordiales, siempre dispuestos ayudar. La información que dan es muy acertada", "author": "Lelvia Rincón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuMXJhOHJRRRAB", "timestamp": "a year ago"}, {"text": "Ha sido todo muy fácil y agradable, destacando Dany y Antonio en el transporte desde el aeropuerto y la atención en sus instalaciones. Muchas gracias.", "author": "gregorio ramirez gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMzVhY3FRRRAB", "timestamp": "a year ago"}, {"text": "El trato al público ha sido maravilloso. En especial Sergio y Vanesa nos dieron recomendaciones de sitios chulísimos que no nos podíamos perder. Desde luego repetiremos, muchas gracias.", "author": "Anny Michelle Arias Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3d2MzZ2FREAE", "timestamp": "a year ago"}, {"text": "La experiencia con esta empresa ha sido genial, el trato con Carlos y Antonio fue magnífico, es un placer trabajar con profesionales como ellos, su amabilidad y dedicación con el cliente es de 10. Gracias", "author": "Alfredo Hinojosa Aragon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNueXU3ak5REAE", "timestamp": "a year ago"}, {"text": "Excelente trato por parte del equipo. Gracias", "author": "Michael Aguilar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xrMVVsVXlNakUzYzNCR2NWUnJTM2N0UzNWV1pGRRAB", "timestamp": "5 months ago"}, {"text": "Nos atendieron muy amablemente y con instrucciones claras. Económico pero el servicio muy bueno. Volvería a repetir, nos transmitió mucha confianza.", "author": "Belen Paez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuMF9Qb3B3RRAB", "timestamp": "a year ago"}, {"text": "Carlos y Fran son eficientes, te ayudan en todo.\\nSon geniales.\\nLo unico a mejorar son las indicaciones para ir al punto de recogida.\\nGracies per tot....", "author": "Xavier ÁLVAREZ ROVIRA", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIbzlyaFhBEAE", "timestamp": "a year ago"}, {"text": "Muy buen trato y amabilidad por parte de los encargados de llevarnos al aeropuerto, Antonio y Néstor y por las gestiones en la oficina.", "author": "Oscar Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaHVyXzhRRRAB", "timestamp": "a year ago"}, {"text": "Rapidez, eficacia, claridad y trato directo, sin marear la perdiz. Alquiler de un día para otro, del sábado para hoy domingo.\\nEncantada con el trato telefónico y en persona.\\nGracias Carlos y Antonio", "author": "MARÍA ROSARIO GARCÍA RUANO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNucEtyNGVnEAE", "timestamp": "a year ago"}, {"text": "Está fuera del aeropuerto, horario muy corto y por dejar el coche entes de las 8:00 te clavan 50€, no vale la pena hay opciones mucho mejores y dentro del aeropuerto.", "author": "Suso Rodríguez Fernández", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQMTVHd19BRRAB", "timestamp": "a year ago"}, {"text": "Muy buena relación calidad precio en sus autos. Mención especial a la atención y amabilidad de Carlos, Fran y Nestol.", "author": "jose-vidal sanchez-biezma gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcVp5UVh3EAE", "timestamp": "a year ago"}, {"text": "Nos vinieron a buscar en un mini bus un chico llamado David Pérez muy majo que nos hizo el viaje muy ameno aconsejándonos lugares y actividades que realizar en Tenerife", "author": "Mireya San Segundo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3d3BDNmpBRRAB", "timestamp": "a year ago"}, {"text": "Vynikajúce služby, ochotní personál doporučujem", "author": "Ing. Viera Kratochvílová", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WMFR6a3hZMVZHV1hndFRGSXhaakJqV2pjNGRHYxAB", "timestamp": "5 months ago"}, {"text": "Super buen trato de parte de Carmen! Nos atendió muy amablemente, nos dio recomendaciones de la isla. Muchisimas graciss Carmen por tu carisma", "author": "Marynel Moreira", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNubnRheTBBRRAB", "timestamp": "a year ago"}, {"text": "Muy buen precio y muy buenos en gestión y todo.", "author": "Baldo Jimenez Fuentes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sTVdsWnNkMXBKU1ZoWFlYQnhWM1JzVldzMFdFRRAB", "timestamp": "3 months ago"}, {"text": "Dani y Antonio nos atendieron muy bien, explicando todo con mucho detalle y con un trato muy bueno. Todo fue genial y a unos precios insuperables!", "author": "Elena García Gómez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuZ1o3WmxRRRAB", "timestamp": "a year ago"}, {"text": "Buenas experiencia buen trato y rápido", "author": "Sergio Martinez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OTU5EQjVWMGxJU0cxd1pqTmxObmd5T0hCRVZHYxAB", "timestamp": "5 months ago"}, {"text": "Carlos y Néstor muchas gracias por el trato recibido. Me solucionaron todo rapidísimo, si vuelvo a alquilar será con ustedes.", "author": "Adrián NL", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOWFpVjBBRRAB", "timestamp": "a year ago"}, {"text": "Un servicio de 10 al igual que el personal, entrega y devolución del coche muy rápidas y traslado desde y hacia el aeropuerto igual.", "author": "Sergio Morales Marrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURncTZMdVdBEAE", "timestamp": "10 months ago"}, {"text": "sehr schwer im Parkhaus zu finden, Fahrer von Shuttlebus sehr unfreundlich,auch der Mitarbeiter im Büro bei Fahrzeugrückgabe sehr unfreundlich.", "author": "Richard Rasshofer", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRaHFXem1BRRAB", "timestamp": "10 months ago"}, {"text": "Muy buena experiencia y muy recomendable.", "author": "Carmelo Gomez De Segura", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkbU1tUnZZVk0zYlV4dFRHZDJkM05hUkdwU2JIYxAB", "timestamp": "4 months ago"}, {"text": "Muy rápido y cómodo el alquiler. Al llegar nos atendió Carlos y nos llevó de vuelta Nestor. Los dos chicos de 10 :)", "author": "Jaime", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3a0pySTZnRRAB", "timestamp": "a year ago"}, {"text": "Totalmente recomendable, Dany y Antonio muy majos...trato muy agradable, además nos recomendaron sitios de la isla acertados para nuestros gustos.\\nSuerte chicos!!!", "author": "Azucena Hoyos Sordo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuX3RiSjRBRRAB", "timestamp": "a year ago"}, {"text": "Una tensión de mil, muy personalizada se dedican contigo como cliente te dan excelentes recomendaciones súper recomendaciones para Isaac y antonio los mejores sin duda .", "author": "javier godoy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIek82enNRRRAB", "timestamp": "a year ago"}, {"text": "Magnífico servicio... Buen estado de los coches... Antonio, Carmen y Nestor excelente personal!!!\\nGracias.", "author": "Raul Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURINXZtbkJREAE", "timestamp": "a year ago"}, {"text": "Trato genial! Carmelo y richard, repetiría con ellos sin duda, nos recomendaron sitios para ver en la isla", "author": "Jose Agudo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIX3UyX2J3EAE", "timestamp": "a year ago"}, {"text": "Están empezando, coches super nuevos y más amables no pueden ser. Todo facilidades. Muy recomendable.", "author": "olga reb", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3X2NQY01BEAE", "timestamp": "a year ago"}, {"text": "Servicio de 10. Vehículo nuevo y precio súper competitivo. Personal muy amable y atento. Repetiremos.", "author": "Alicia Latorre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIczl5WFFBEAE", "timestamp": "a year ago"}, {"text": "Para repetir personal muy amable muy atentos y todo muy rápido y eficaz recomendable 100% para repetir", "author": "Miguel Angel de la Torre Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VKUE41NHJwaXFfX0tnEAE", "timestamp": "7 months ago"}, {"text": "Carlos un crack me ayudo un montón con todo súper amables, antonio el que me acerco al rent a car también muy amable y atento, repetiré seguro!", "author": "sergio Caceres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuamN5QkJnEAE", "timestamp": "a year ago"}, {"text": "einfache Abwicklung, keine versteckten Kosten, Adrian war super lieb und hat uns direkt am Terminal abgeholt", "author": "Lara Julier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MGZiTnB3RRAB", "timestamp": "a year ago"}, {"text": "Servicio estupendo, coches nuevos, gestión impecable, puntualidad y una increíble amabilidad el personal lo mejor de lo mejor Totalmente recomendable ☺️", "author": "Yaiza Cruz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3aWVXSTVnRRAB", "timestamp": "a year ago"}, {"text": "Esperienza pessima....delinquenti dal primo all'ultimo giorno..evitate x carità...ci hanno RUBATO 150 euro", "author": "ALESSANDRO CICUZZA", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvcGJqbklnEAE", "timestamp": "9 months ago"}, {"text": "Alles gut abgelaufen, danke!", "author": "I Rak", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB", "timestamp": "4 days ago"}, {"text": "Alles top,\\nSuper Preis!", "author": "Henna Starla", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB", "timestamp": "a week ago"}, {"text": "Me encanta este sitio lo recomiendo al 100% super económico, super buen trato, me encantó la experiencia y para repetir de verdad, fui atendido por carmen, Néstor y francisco y super guay el trato con ellos", "author": "Alexis Melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIeExUTjBRRRAB", "timestamp": "a year ago"}, {"text": "Recién me atendió David Martín, que es un maquina y me asesoró en todo (no sólo respecto del coche, sino como visitante). :-)", "author": "Andrés Forastero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3aTVXR0lREAE", "timestamp": "a year ago"}, {"text": "Muchas gracias a Carmen y Carlos que me atendieron en la oficina y sobretodo a Antonio que desde el primer momento quiso ayudar en todo lo posible aconsejándome y recomendando cosas para hacer, un servicio de 10 gracias Antonio!", "author": "Giova Perdomo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNILTltRUpBEAE", "timestamp": "a year ago"}, {"text": "Buen servicio y personal amable", "author": "SIMONE MUSELLA", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB", "timestamp": "4 weeks ago"}, {"text": "Personale gentilissimo, servizio impeccabile!", "author": "Karmen Rega", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCMFpGUkhjbEpPZUhnelpuTnhSekJuTFdNemVuYxAB", "timestamp": "5 months ago"}, {"text": "Servicio excepcional y trato muy profesional y agradable del personal que me atendió. Muchísimas muchísimas gracias a Isaac, Carlos y Antonio.", "author": "Mar Cabrera García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOVluRDBRRRAB", "timestamp": "a year ago"}, {"text": "Super rápidos!!! Atententos y coches super nuevos!!", "author": "Paz Alvarez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB", "timestamp": "3 months ago"}, {"text": "Muy malo", "author": "Oddy Huang", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4bFNpMWZjRGxaU3paRFoyNHdhRzQxV1dkSWJWRRAB", "timestamp": "6 months ago"}, {"text": "Polecam. Wszystko sprawnie.", "author": "Michał Kryński", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB", "timestamp": "2 weeks ago"}, {"text": "Todo perfecto, coche nuevo\\nCarmen esta muy amable", "author": "Vilmos Hart", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3OXEtcjhRRRAB", "timestamp": "a year ago"}, {"text": "Un servicio excelente por parte de Antonio que nos guió y recomendó sobre que hacer y tambien a Carmen y Nestor", "author": "Néstor Acosta Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINFlmSjJ3RRAB", "timestamp": "a year ago"}, {"text": "Es war alles perfekt.", "author": "Viktor Reimer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxakxYZEpaWEkyUmt4TWNGVTJXaTFNT0RsdFVVRRAB", "timestamp": "4 months ago"}, {"text": "Todo perfecto, trato de 10 y super fiable. Totalmente recomendable.", "author": "Hugo Conde Araujo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3M0tPejZRRRAB", "timestamp": "a year ago"}, {"text": "Muy amables en el servicio y profesionalidad por parte de Fran y de Carlos que estuvieron atentos en todo momento.", "author": "Diego Oca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIcW96NlZnEAE", "timestamp": "a year ago"}, {"text": "Kevin estaba muy amigable y nos ayudaba mucho, gracias!", "author": "Christopher S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMXZ6aUZ3EAE", "timestamp": "9 months ago"}, {"text": "Je recommande !\\nVoiture nickel / Personnel très serviable et très efficace", "author": "Gauthier Vancayzeele", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQNUppVXRBRRAB", "timestamp": "a year ago"}, {"text": "Me atendiero muy bien ,tanto cuqndo llegue como a la hora de marchar,muchas gracias Nestor ,Dany ...", "author": "Juan Miguel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdVp1bFFREAE", "timestamp": "a year ago"}, {"text": "Todo Oks perfecto.", "author": "Federico Guinaldo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkdVRWTlhia0pJVUdoWVlUQXlkbTV1UkhoTWJtYxAB", "timestamp": "5 months ago"}, {"text": "Sergio muy amable y nos acercó para no perder el avión súper bien", "author": "joswerk dj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIMlBMZ2NBEAE", "timestamp": "a year ago"}, {"text": "Todo perfecto y sencillo, muchas gracias Dani por el gran trato!", "author": "Antonio Barreiro Pazos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINXBUOW13RRAB", "timestamp": "a year ago"}, {"text": "Muy buen servicio. Ysaac, nestor y carmen muy majos y atentos", "author": "Alejandro Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuek5EdExnEAE", "timestamp": "a year ago"}, {"text": "Carmen ha sido encantadora y todo muy claro explicado", "author": "Jorge Zapatero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3cGUyaWl3RRAB", "timestamp": "a year ago"}, {"text": "Carmelo muy amable y simpático, todo perfecto.", "author": "kiko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3ejVHeDhnRRAB", "timestamp": "a year ago"}, {"text": "Agradecer a Daniel por su entrega, confianza y profesionalidad! Para repetir sin duda", "author": "Ivan Auvinen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINXJUbzh3RRAB", "timestamp": "a year ago"}, {"text": "Un maravilloso servicio por parte de Carmen y Néstor muchas gracias por la amabilidad y cortesía", "author": "Chaxiraxi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIb2Z6ajRRRRAB", "timestamp": "a year ago"}, {"text": "Muchas gracias por la atención de Carmelo a por el vehículo Muy atento y amable", "author": "Jonas Lagos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3ejlHdmJ3EAE", "timestamp": "a year ago"}, {"text": "Buen trato muy profesionales en especias Carlos y Néstor", "author": "Ricardo Izquierdo lara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuLXB1ZndBRRAB", "timestamp": "a year ago"}, {"text": "Buena experiencia. Extraordinario el trato de Carlos y Néstor.", "author": "Víctor Javier Barrera Castarnado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3ZzhpUE9nEAE", "timestamp": "a year ago"}, {"text": "Dany y Antonio gente súper amable y simpatica", "author": "Victor Alcazar Dominguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3aGJ2Rm93RRAB", "timestamp": "a year ago"}, {"text": "Atención personal de primera por parte de su personal, Carlos y Antonio. Muchas gracias por todo.", "author": "Luis Purrinos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNINkltMlpBEAE", "timestamp": "a year ago"}, {"text": "Muy buen trato, y trabajadores muy amables", "author": "Pablo Campos escalera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnNtRzhRRRAB", "timestamp": "a year ago"}, {"text": "Muy buena experiemcia con ellos ,\\nSin sorpresas ,todo excelente", "author": "Daniel Frito", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3eU9TRjBRRRAB", "timestamp": "a year ago"}, {"text": "Carlos Y Dani son muy simpáticos! Muy muy recomendable", "author": "Alejandro Espi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3aEpyMlNBEAE", "timestamp": "a year ago"}, {"text": "Muy bueno el servicio estoy encantada Dani y Néstor", "author": "Isabel SantaMaria Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuM3VUNnp3RRAB", "timestamp": "a year ago"}, {"text": "Buen servicio,mejor precio", "author": "Maite Morales", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VPVHc0b2ItMEo3bERBEAE", "timestamp": "8 months ago"}, {"text": "Buenos precios y Carmen y nestor excelente su atencion", "author": "Nohemy Nuñez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURId2FqYV9nRRAB", "timestamp": "a year ago"}, {"text": "muy buen servicio y el coche genial", "author": "Gabriela Cervantes Alcoba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cU8yNUJnEAE", "timestamp": "a year ago"}, {"text": "excelente recomendada", "author": "Marcelo Cruz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xdFZYVXhTRk54UzBKTk9UZDBOblp6UWsxVFoxRRAB", "timestamp": "5 months ago"}, {"text": "Tanto Carlos como Fran encantadores", "author": "Rodrigo Sancho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIaU8tdlJ3EAE", "timestamp": "a year ago"}, {"text": "todo perfecto", "author": "COVIRAN MALAGON", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pNNFl6aFJlbmN3V1U5Tk1HVkdiVVpLTkc1VWFrRRAB", "timestamp": "3 months ago"}, {"text": "Depozyt większy niż w ofercie.", "author": "Henryk D", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQza2R1LUlBEAE", "timestamp": "a year ago"}, {"text": "Excelente y rápido atención", "author": "Marcelo Agüero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4dmJqbGljR0pXVEdsemNUWklRbWcyV1VaTFdHYxAB", "timestamp": "7 months ago"}, {"text": "De 10, repetiré sin dudarlo!", "author": "Patricia Cuevas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYOHAtN3h3RRAB", "timestamp": "a year ago"}, {"text": "Publicidad engañosa", "author": "Thalia1999", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGMVMzUllUbXh3WXpaMVVXeHhTMmd3VFhnNFQxRRAB", "timestamp": "4 months ago"}, {"text": "Goede service en aardig mensen", "author": "Douwe Jong De", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNmJYc0hBEAE", "timestamp": "9 months ago"}, {"text": "Gran servicio de Nestor y Carmen", "author": "joan carrion", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIdkktRGlRRRAB", "timestamp": "a year ago"}, {"text": "Buena gente. Lo recomiendo", "author": "JRF", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3NXVHWW93RRAB", "timestamp": "a year ago"}, {"text": "Muy simpático y atento", "author": "antoni vidal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIbG8ydGNnEAE", "timestamp": "a year ago"}, {"text": "Muy buen servicio", "author": "pedro Nuñez gracia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cU0zWGRREAE", "timestamp": "a year ago"}, {"text": "Alles perfekt!", "author": "Mark Schilhan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURILTZHeGxnRRAB", "timestamp": "a year ago"}, {"text": "Antonio es el mejor!!!", "author": "Fanny Del aguila", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYdFpETmNREAE", "timestamp": "a year ago"}, {"text": "", "author": "m b", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOallVdG1jR2hyYnpjelMzcGhjMWMyV0VGU00zYxAB", "timestamp": "14 hours ago"}, {"text": "Samochód wydano jako „bez uszkodzeń”\\nZdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. Po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu.Pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. Dołączam kilka zdjęć. Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. I teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;)\\nNa nasze szczęście zdjęcia robiły dwie osoby i mamy takie zdjęcie z datą i godziną. Tak, ku przestrodze. Jeszcze bezczelnie mówili nam że dali nam nowiutki idealny samochód.", "author": "Paweł Wache", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB", "timestamp": "3 days ago"}, {"text": "", "author": "Katja Fenn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oWFZuZzRTMGxDVEVNMFlrSjZlVGx0VEZWQloxRRAB", "timestamp": "3 days ago"}, {"text": "è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... quindi grazie... consigliatissimi!!!", "author": "Claudia Di Benedetto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB", "timestamp": "4 days ago"}, {"text": "Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war kein Missverständnis, sondern ein Paradebeispiel dafür, wie man Kunden vergrault.\\n\\nBei der Abholung wurden wegen absoluter Kleinigkeiten künstliche Probleme aufgebaut. Plötzlich gab es Diskussionen um den Führerschein, obwohl dieser gültig und völlig unauffällig war. Zusätzlich wollten wir einen Zusatzfahrer eintragen lassen – ein Vorgang, der bei seriösen Vermietern Standard ist.\\n\\nHier wurde daraus jedoch ein Geschäftsmodell gemacht. Für den Zusatzfahrer und angebliche „Probleme“ sollten auf einmal hunderte Euro zusätzlich gezahlt werden. Der ursprünglich gebuchte Preis war damit praktisch wertlos. Am Ende standen rund 300 €, wo andere Anbieter für exakt denselben Zeitraum ca. 60 € verlangen.\\n\\nWir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz. Keine Erklärung, keine Transparenz, kein Entgegenkommen – nur das starre Festhalten an einem völlig überzogenen Preis.\\n\\nDer Eindruck entsteht unweigerlich, dass hier bewusst Druck aufgebaut wird, um Kunden vor Ort zu überrumpeln und zu teuren Zusatzkosten zu zwingen. Wer nicht mitspielt, verliert Zeit, Nerven – oder geht, so wie wir.\\n\\nNach erheblichem Zeitverlust und einer maximal unangenehmen Abholung haben wir den Mietwagen konsequent abgelehnt. Und ganz ehrlich: Das war die einzig richtige Entscheidung.\\n\\nFazit: Dieses Verhalten hat nichts mit kundenorientiertem Service zu tun. Wer Transparenz, Fairness und einen respektvollen Umgang erwartet, sollte diesen Anbieter meiden. So gewinnt man keine Kunden – so verliert man sie.", "author": "Maximilian V", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB", "timestamp": "4 days ago"}, {"text": "Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 100% in Ordnung. Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (nationaler Terminal). Kommt man im Terminal 1 (internationaler Terminal) an, muss man auch nach rechts, aber ganz zum Ende vom Terminal 1 gehen. (ca. 300 m) Ein Schild \\"Meetingpoint\\" haben wir trotzdem nicht gesehen.\\nDer Transfer zur Mietstation dauerte nur ca. 10 Minuten.\\nDie Fahrzeugführer und - Rückgabe ging auch sehr schnell. Sie dauerte nur ein paar Minuten, eben so lange wie man für den Papierkram braucht.", "author": "Olaf Kaiser", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB", "timestamp": "4 days ago"}, {"text": "Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!! Un coche muy nuevo!! 100% recomendable!!", "author": "Alejandro García Díaz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB", "timestamp": "5 days ago"}, {"text": "Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug!\\nEinzige Kritik:\\nKeine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis auf das obere Stockwerk (Abflughalle). Nach rechts gehen bis ca. Abflug Gate 2-5 wäre sehr hilfreich. Musste anrufen und dann bekam ich ein Youtube Video vom Standort zugeschickt. Fahrer war jeweils sehr freundlich und hilfsbereit.", "author": "Kurt Bahner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB", "timestamp": "6 days ago"}, {"text": "Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafen. Immer wieder gerne.", "author": "Anna Sotke", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Aldo Muscia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0WU9WWnJSalZaT0RCclVVcERSSEJDV0hwdWJVRRAB", "timestamp": "a week ago"}, {"text": "Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan. Recomiendo no alquiler a través de Do You Spain pues las condiciones contractuales no están claras. Por lo demás personal amable y buen servicio", "author": "Fernando MIGUEL MONTES", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB", "timestamp": "a week ago"}, {"text": "", "author": "Braulio Gopar Quevedo", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oaVozRlZVamRvY2pkSFJFSkllalJXWDIxMFFuYxAB", "timestamp": "a week ago"}, {"text": "", "author": "Arnold K", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSQ00xTk9XR2REVVd4WlRteHhOSEJ4WDFSSGFrRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Ghofran Alwan", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xrNFluWkZabFJtWDNKTVVVWjBRV1U0VWpaZlVIYxAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "Belén Bustabad Fernández", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21od09EQXdTVE4wVlhKd2NVbHRVMUE1TFZFMFZWRRAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "BerndE", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xrNE5uVTVVM0Z6TnpKemEwd3dVR3h1WWpWbE4zYxAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "Csaba Pál", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pZdFozQlRNVkZPVXkxWWRYaE5jVVpFTUY5clYzYxAB", "timestamp": "Edited 2 weeks ago"}, {"text": "", "author": "Virginie Clerc", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aTlh6azBVRVEzVm5SeVNFSlpkMVk0ZDBKU1kwRRAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "qilu zhang", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21odVgwWldjamhtY1dSR0xXSnBjVEJUUkdodE5HYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Сергій Василенко", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4d1NGVkdURjlHWkRnNVRESmpWbloyU1dkdFJrRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Michael Petruch", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwb1MzUTFSbmhJYkdOaFlrMVNNRE5QYjNvdFJrRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Lluís Llinàs", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KYWJHWnZjVEV3T1hCaE1XTkJiWGR4WVZwRE1FRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Maik Krüger", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWWFVHeHhNbWxpTW1SVVJFNVZSa3hLWlVaRFEwRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Tiago Alves", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WbVYxbG1NeTFsVUV0SlIxbFNWak16Wld0MU5HYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Alaa Kharboutli", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Ka1oyMUpaM1ZhWjNCdFpFRjZMWGxQVW1WT1JVRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Kalle Tasch", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxb05qWk5SVE5IVTIxMGNYQldXREpuT1VNMWNFRRAB", "timestamp": "4 weeks ago"}, {"text": "", "author": "Владимир Шапецкий", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SVFIzaFJkRVJwTFZaNk56QmpSWGh6U21aMmFGRRAB", "timestamp": "4 weeks ago"}, {"text": "", "author": "Adnan Cetinkaya", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkclJEQklibk5vVnpaSGQwY3hXV0ZXYzJKNVNIYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Magalie Sire", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFeVJFNDBiMkpUZWtSNVUzUmtYMmxRUW01WmFHYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Iris Stoffregen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0U2VVVlNZaTEwZFRKbmVIZDVaMVppY21rME1XYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Angelo Mendes", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5VlYyZHpVRnBzYjAwNGVreDJPRmMyZDBKU2IxRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Nelson Carvalho", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWclFVRkhVblE0YldsTGJsSmFlbWhpTVhSbFVHYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Joao Goncalves", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWMGJHNW5VMGg0VFVvMVJ6TXhWRWRRU1hGVWRXYxAB", "timestamp": "a month ago"}, {"text": "", "author": "João Miranda", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Sd1ZsbFVRa2hUUmtoa2MxVk1Na3R2YjBObGVYYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Elena Veleva", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0bE1IUkhXa294Vm01MWQzUTVXV2hqVTFWdGVVRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Camille Strauch", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CNVJrTXdXa0ZwU2xKRlRXbFdkV3BLTW5kNWVHYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Lander Urrutia Muruaga", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SSGNtUndlRGt4Y2tKcFMyWnFMV3B5V25aQmEzYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Lena K", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSRmNGbDZiMEZPWHkxbVppMWpObU5tWWprMVpuYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Luis Ventosa Castro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VNVNGRndaRjg0ZVhoa1QzaFpXazAzUTJFeWNIYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Patryk Biernat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psQlJreFdOeTF6TFV0bVkyWnFjblpYU2toM01XYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Maximilian Korzekwa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xaVFUWmphakZOYkZKVlowUmtYekJKVVhKNWVXYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Mónika Ács", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT200d2ExVk9hbWR6Tld4UlMwOVdjbkJMWTJreGNVRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Mariana david Mrn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21waVNFMVZWRmhwTURocllWVmhUa2w1VW10bGNtYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "el ju", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsT2RYbFhRbUZYY0d4NFYzbE5ZV2xLVTB0amRsRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Patrice Bravard", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wWWJWSlJVSGh0Y0hsa1ZHTmlTamRTT0d0VGJYYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Paula Rodriguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wRVRFOVVSSEYwVEdaS05uQkhUVFo0TkRaNExYYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Mihai Noana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25NMVMwb3paazVVVEVkc01tMWxNemxYV1ZKUFdsRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Christian Huber", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oekxWTm5TaTFWTUZaS05HVm9TbGRRZGxKVVNuYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Joerg Hofmann", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210d1FVbFBkVTVaTlVGeGJDMVZOVEpMV1Y5YVYwRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Lucian Nistoroiu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xodWRqSkJOMVJ3VlVoalkwMXFUWE5JWkhac2FYYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Marcel Gatt", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCb1psbFhPVm8yVkhWT1MzWmpTV1JTTm1VM1JVRRAB", "timestamp": "4 months ago"}, {"text": "", "author": "W/M de pelis", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tabFRWTTJSVnBpUldWRE0wVnlhRlJXWDFCUFJYYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Edwin Chalarca", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bWJXb3RXRFpxYkRGR1lqbEtkWGcyU1hsME5YYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Ivan W", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkVlRIRlZhMHQ2ZURObFpDMXJVVE5VZGxCaFJFRRAB", "timestamp": "4 months ago"}, {"text": "", "author": "Pablo Campos", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paWlNYQkJWVmd0TUROb09TMU1VbHA1TWtOaU1YYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Denushan Sarveswaralingam", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5SlVHSmFiWEUwTjJGaWQxcGpVVU0wWkRaRFVXYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Dan Feldmesser", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xnd2JUaDJjbHBxVlVwQlQzaFBURTlWTUZKV09XYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Thair Alhroub", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21weWMzRnhTMkZaY0RCU2MyWXpWMFZ0TVdKbGFHYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Julian Nevado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWeGRqbEdhMlZGUlhsbFNWQm9kVk5YWms5b1FVRRAB", "timestamp": "4 months ago"}, {"text": "", "author": "Luis Bailón Rodriguez", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aMFVUQXpNVlJLUjNKRFRHbzNPVWR1VkVreFoyYxAB", "timestamp": "4 months ago"}, {"text": "", "author": "Juanvill Juanvill", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pJM1JqRnROUzFQVjNZME4xRnhUR28xYTBobGEwRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Miguel Ángel De Miguel Barril", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CalpHaDJlVnBzWldGQ1ZtdDFMVnA1WjIxeWFtYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Zied OUNISSI", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSR2JtRkdVVkJtTURVNVFteGxjRjlxWjIxNVozYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Thomas Lommatzsch", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWdlJYRklVVXBxUzI1UE5VVjBNMWxzUTNKdVdsRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Cristiano Fernandes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25NM2FYZGlUbWh5WjJKVmNHNVJVRmxIVHpRNVUwRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Rabih Mekdachi", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WdVgySmpXV1pyU1doRE5UWjRkVUZ3WmxwUFVIYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Juan Gumiel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twbVVXaEhTRTlrVGpSWmRFVlRaM1Z6Wm5ONk9FRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Marián Mokoš", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGRExXazNRVjk2V210c05ucHdRVFUwWkV3d1ZtYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Dios Creador", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWQmFEWnRXVmd6UlRseU55MUxhRFpLU0ZCME5XYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Antonio J Garcia Martínez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OUVVYQXRWRmQ2VnpCWk1sOTVTVmhDY0VSM1dsRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Juanca Ramirez Mendez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxNmEwMUpNV1ZJUTJKRFJYcFdOSEp4ZDJkUWVrRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Rebaz Farman", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21VNGExSlVaRFF3Wmtsbk5HczRVbVJ2ZFRWYVZYYxAB", "timestamp": "6 months ago"}, {"text": "", "author": "Inma Canovas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoVE9HWnBiRGgwZERCaFRGSnhNR1JNWVhaSGExRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Marta Rodriguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaak4yMWxlVms0YzNSeE4wTkJRVFI2TjNodlRrRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Yurena Lee", "rating": 5, "source": "dom", "timestamp": "7 months ago"}, {"text": "", "author": "Pillay J", "rating": 5, "source": "dom", "timestamp": "8 months ago"}, {"text": "", "author": "Omar Karouach", "rating": 1, "source": "dom", "timestamp": "8 months ago"}, {"text": "", "author": "Jose Luis Gonzalez Talavera", "rating": 5, "source": "dom", "timestamp": "9 months ago"}, {"text": "", "author": "Marita Goetz", "rating": 4, "source": "dom", "timestamp": "10 months ago"}, {"text": "", "author": "Peter Van Binnendijk", "rating": 5, "source": "dom", "timestamp": "11 months ago"}, {"text": "", "author": "Alessio Nehls", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "", "author": "Auto Enschede", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "", "author": "Antonio Hdez", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "", "author": "Alberto", "rating": 1, "source": "dom", "timestamp": "a year ago"}, {"text": "", "author": "Tomáš Lu", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuOG83bTd3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jesus Miguel Brtito Gutiérrez.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIN3QtUExnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Tahereh Sss", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcXRpSjlnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Auger Berzosa Pratcorona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIX09TQm1BRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Isaac", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURid19mc3hBRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Iulia Rauta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURic2QyUFpBEAE", "timestamp": "a year ago"}] 57.016552 \N {"job_type": "google-reviews", "priority": 0, "business_name": "ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "rating_snapshot": 3.7, "scraper_version": "1.1.0", "business_address": "C. Practicante Casto Moros, 35219 Ojos de Garza, Las Palmas, Spain ", "total_reviews_snapshot": 591} 585 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-25T01:25:52.808Z", "timestamp_ms": 1769304352808}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-25T01:25:52.950Z", "timestamp_ms": 1769304352950}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22ClickRent%22%20Gran%20Canaria...", "category": "browser", "timestamp": "2026-01-25T01:25:53.111Z", "timestamp_ms": 1769304353111}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-25T01:25:55.312Z", "timestamp_ms": 1769304355312}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-25T01:25:55.775Z", "timestamp_ms": 1769304355775}, {"level": "INFO", "message": "Total reviews on page: 591", "metrics": {"total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:25:59.050Z", "timestamp_ms": 1769304359050}, {"level": "INFO", "message": "Business: ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "category": "scraper", "timestamp": "2026-01-25T01:25:59.050Z", "timestamp_ms": 1769304359050}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-25T01:25:59.084Z", "timestamp_ms": 1769304359084}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-25T01:25:59.112Z", "timestamp_ms": 1769304359112}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-25T01:25:59.299Z", "timestamp_ms": 1769304359299}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-25T01:25:59.299Z", "timestamp_ms": 1769304359299}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-25T01:26:01.932Z", "timestamp_ms": 1769304361932}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-25T01:26:01.974Z", "timestamp_ms": 1769304361974}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-25T01:26:01.978Z", "timestamp_ms": 1769304361978}, {"level": "INFO", "message": "Found 10 review topics: shuttle bus, island, bail, scammers, damage...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-25T01:26:02.494Z", "timestamp_ms": 1769304362494}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-25T01:26:02.494Z", "timestamp_ms": 1769304362494}, {"level": "INFO", "message": "70/591 (12%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 11.844331641285956, "reviews_count": 70, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:04.146Z", "timestamp_ms": 1769304364146}, {"level": "INFO", "message": "DOM cleanup: removed 63 cards to prevent memory buildup", "metrics": {"cards_removed": 63, "cards_remaining": 259}, "category": "system", "timestamp": "2026-01-25T01:26:05.229Z", "timestamp_ms": 1769304365229}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-25T01:26:05.229Z", "timestamp_ms": 1769304365229}, {"level": "INFO", "message": "100/591 (17%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012241363525390625, "progress_pct": 16.920473773265652, "reviews_count": 100, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:05.241Z", "timestamp_ms": 1769304365241}, {"level": "INFO", "message": "DOM cleanup: removed 37 cards to prevent memory buildup", "metrics": {"cards_removed": 37, "cards_remaining": 191}, "category": "system", "timestamp": "2026-01-25T01:26:06.329Z", "timestamp_ms": 1769304366329}, {"level": "INFO", "message": "120/591 (20%) | idle: 0.0s", "metrics": {"idle_seconds": 0.048351287841796875, "progress_pct": 20.304568527918782, "reviews_count": 120, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:06.378Z", "timestamp_ms": 1769304366378}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 184}, "category": "system", "timestamp": "2026-01-25T01:26:07.618Z", "timestamp_ms": 1769304367618}, {"level": "INFO", "message": "150/591 (25%) | idle: 0.2s", "metrics": {"idle_seconds": 0.21378254890441895, "progress_pct": 25.380710659898476, "reviews_count": 150, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:07.832Z", "timestamp_ms": 1769304367832}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 278}, "category": "system", "timestamp": "2026-01-25T01:26:09.206Z", "timestamp_ms": 1769304369206}, {"level": "INFO", "message": "170/591 (29%) | idle: 0.0s", "metrics": {"idle_seconds": 0.044725894927978516, "progress_pct": 28.76480541455161, "reviews_count": 170, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:09.251Z", "timestamp_ms": 1769304369251}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 168}, "category": "system", "timestamp": "2026-01-25T01:26:10.464Z", "timestamp_ms": 1769304370464}, {"level": "INFO", "message": "190/591 (32%) | idle: 0.0s", "metrics": {"idle_seconds": 0.003623485565185547, "progress_pct": 32.14890016920474, "reviews_count": 190, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:10.468Z", "timestamp_ms": 1769304370468}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 181}, "category": "system", "timestamp": "2026-01-25T01:26:11.595Z", "timestamp_ms": 1769304371595}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-25T01:26:11.595Z", "timestamp_ms": 1769304371595}, {"level": "INFO", "message": "210/591 (36%) | idle: 0.0s", "metrics": {"idle_seconds": 0.015096187591552734, "progress_pct": 35.53299492385787, "reviews_count": 210, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:11.611Z", "timestamp_ms": 1769304371611}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 267}, "category": "system", "timestamp": "2026-01-25T01:26:12.670Z", "timestamp_ms": 1769304372670}, {"level": "INFO", "message": "240/591 (41%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013329505920410156, "progress_pct": 40.609137055837564, "reviews_count": 240, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:12.683Z", "timestamp_ms": 1769304372683}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 256}, "category": "system", "timestamp": "2026-01-25T01:26:13.839Z", "timestamp_ms": 1769304373839}, {"level": "INFO", "message": "270/591 (46%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010720252990722656, "progress_pct": 45.68527918781726, "reviews_count": 270, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:13.850Z", "timestamp_ms": 1769304373850}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 166}, "category": "system", "timestamp": "2026-01-25T01:26:14.983Z", "timestamp_ms": 1769304374983}, {"level": "INFO", "message": "290/591 (49%) | idle: 0.1s", "metrics": {"idle_seconds": 0.07581853866577148, "progress_pct": 49.06937394247039, "reviews_count": 290, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:15.059Z", "timestamp_ms": 1769304375059}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 278}, "category": "system", "timestamp": "2026-01-25T01:26:16.434Z", "timestamp_ms": 1769304376434}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-25T01:26:16.435Z", "timestamp_ms": 1769304376435}, {"level": "INFO", "message": "320/591 (54%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0328824520111084, "progress_pct": 54.145516074450086, "reviews_count": 320, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:16.468Z", "timestamp_ms": 1769304376468}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 274}, "category": "system", "timestamp": "2026-01-25T01:26:17.622Z", "timestamp_ms": 1769304377622}, {"level": "INFO", "message": "349/591 (59%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01476144790649414, "progress_pct": 59.05245346869712, "reviews_count": 349, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:17.636Z", "timestamp_ms": 1769304377636}, {"level": "INFO", "message": "DOM cleanup: removed 29 cards to prevent memory buildup", "metrics": {"cards_removed": 29, "cards_remaining": 182}, "category": "system", "timestamp": "2026-01-25T01:26:18.686Z", "timestamp_ms": 1769304378686}, {"level": "INFO", "message": "369/591 (62%) | idle: 0.0s", "metrics": {"idle_seconds": 0.038625478744506836, "progress_pct": 62.43654822335025, "reviews_count": 369, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:18.724Z", "timestamp_ms": 1769304378724}, {"level": "INFO", "message": "DOM cleanup: removed 21 cards to prevent memory buildup", "metrics": {"cards_removed": 21, "cards_remaining": 171}, "category": "system", "timestamp": "2026-01-25T01:26:19.829Z", "timestamp_ms": 1769304379829}, {"level": "INFO", "message": "389/591 (66%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0026297569274902344, "progress_pct": 65.82064297800339, "reviews_count": 389, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:19.832Z", "timestamp_ms": 1769304379832}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 259}, "category": "system", "timestamp": "2026-01-25T01:26:20.912Z", "timestamp_ms": 1769304380912}, {"level": "INFO", "message": "419/591 (71%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006741046905517578, "progress_pct": 70.89678510998309, "reviews_count": 419, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:20.919Z", "timestamp_ms": 1769304380919}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 175}, "category": "system", "timestamp": "2026-01-25T01:26:22.062Z", "timestamp_ms": 1769304382062}, {"level": "INFO", "message": "Flushing 119 reviews to disk...", "metrics": {"source": "flush", "batch_size": 119}, "category": "scraper", "timestamp": "2026-01-25T01:26:22.063Z", "timestamp_ms": 1769304382063}, {"level": "INFO", "message": "439/591 (74%) | idle: 0.0s", "metrics": {"idle_seconds": 0.030747175216674805, "progress_pct": 74.2808798646362, "reviews_count": 439, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:22.093Z", "timestamp_ms": 1769304382093}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 85}, "category": "system", "timestamp": "2026-01-25T01:26:23.806Z", "timestamp_ms": 1769304383806}, {"level": "INFO", "message": "449/591 (76%) | idle: 0.1s", "metrics": {"idle_seconds": 0.050504207611083984, "progress_pct": 75.97292724196278, "reviews_count": 449, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:23.856Z", "timestamp_ms": 1769304383856}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 262}, "category": "system", "timestamp": "2026-01-25T01:26:26.005Z", "timestamp_ms": 1769304386005}, {"level": "INFO", "message": "479/591 (81%) | idle: 0.1s", "metrics": {"idle_seconds": 0.11266922950744629, "progress_pct": 81.04906937394247, "reviews_count": 479, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:26.118Z", "timestamp_ms": 1769304386118}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 83}, "category": "system", "timestamp": "2026-01-25T01:26:27.199Z", "timestamp_ms": 1769304387199}, {"level": "WARN", "message": "SLOW cycle: 2.2s (api:0.0s dom:0.0s/113cards flush:0.0s seen:489)", "metrics": {"dom_cards": 113, "api_time_s": 0.004816293716430664, "dom_time_s": 0.011549711227416992, "seen_count": 489, "cycle_time_s": 2.1851015090942383}, "category": "system", "timestamp": "2026-01-25T01:26:27.199Z", "timestamp_ms": 1769304387199}, {"level": "INFO", "message": "489/591 (83%) | idle: 0.0s", "metrics": {"idle_seconds": 0.018640518188476562, "progress_pct": 82.74111675126903, "reviews_count": 489, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:27.218Z", "timestamp_ms": 1769304387218}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 83}, "category": "system", "timestamp": "2026-01-25T01:26:28.281Z", "timestamp_ms": 1769304388281}, {"level": "INFO", "message": "499/591 (84%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0029764175415039062, "progress_pct": 84.4331641285956, "reviews_count": 499, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:28.284Z", "timestamp_ms": 1769304388284}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 69}, "category": "system", "timestamp": "2026-01-25T01:26:29.343Z", "timestamp_ms": 1769304389343}, {"level": "INFO", "message": "509/591 (86%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0034618377685546875, "progress_pct": 86.12521150592217, "reviews_count": 509, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:29.347Z", "timestamp_ms": 1769304389347}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-25T01:26:30.385Z", "timestamp_ms": 1769304390385}, {"level": "INFO", "message": "529/591 (90%) | idle: 0.0s", "metrics": {"idle_seconds": 0.017332077026367188, "progress_pct": 89.5093062605753, "reviews_count": 529, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:30.402Z", "timestamp_ms": 1769304390402}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-25T01:26:31.444Z", "timestamp_ms": 1769304391444}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-25T01:26:31.444Z", "timestamp_ms": 1769304391444}, {"level": "INFO", "message": "549/591 (93%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006227016448974609, "progress_pct": 92.89340101522842, "reviews_count": 549, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:31.450Z", "timestamp_ms": 1769304391450}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 150}, "category": "system", "timestamp": "2026-01-25T01:26:32.632Z", "timestamp_ms": 1769304392632}, {"level": "INFO", "message": "579/591 (98%) | idle: 0.0s", "metrics": {"idle_seconds": 0.017864704132080078, "progress_pct": 97.96954314720813, "reviews_count": 579, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:32.650Z", "timestamp_ms": 1769304392650}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 86}, "category": "system", "timestamp": "2026-01-25T01:26:33.779Z", "timestamp_ms": 1769304393779}, {"level": "INFO", "message": "585/591 (99%) | idle: 0.1s", "metrics": {"idle_seconds": 0.05363798141479492, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:33.833Z", "timestamp_ms": 1769304393833}, {"level": "INFO", "message": "585/591 (99%) | idle: 1.1s", "metrics": {"idle_seconds": 1.1037142276763916, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:34.883Z", "timestamp_ms": 1769304394883}, {"level": "INFO", "message": "585/591 (99%) | idle: 2.1s", "metrics": {"idle_seconds": 2.123743772506714, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:35.903Z", "timestamp_ms": 1769304395903}, {"level": "INFO", "message": "585/591 (99%) | idle: 3.1s", "metrics": {"idle_seconds": 3.1473870277404785, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:36.926Z", "timestamp_ms": 1769304396926}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-25T01:26:36.926Z", "timestamp_ms": 1769304396926}, {"level": "INFO", "message": "585/591 (99%) | idle: 4.3s", "metrics": {"idle_seconds": 4.3379967212677, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:38.117Z", "timestamp_ms": 1769304398117}, {"level": "INFO", "message": "585/591 (99%) | idle: 5.4s", "metrics": {"idle_seconds": 5.36445951461792, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:39.143Z", "timestamp_ms": 1769304399143}, {"level": "INFO", "message": "585/591 (99%) | idle: 6.4s", "metrics": {"idle_seconds": 6.384986400604248, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:40.164Z", "timestamp_ms": 1769304400164}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-25T01:26:40.164Z", "timestamp_ms": 1769304400164}, {"level": "INFO", "message": "585/591 (99%) | idle: 7.7s", "metrics": {"idle_seconds": 7.6975603103637695, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:41.477Z", "timestamp_ms": 1769304401477}, {"level": "INFO", "message": "585/591 (99%) | idle: 8.7s", "metrics": {"idle_seconds": 8.715841054916382, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:42.495Z", "timestamp_ms": 1769304402495}, {"level": "INFO", "message": "585/591 (99%) | idle: 9.7s", "metrics": {"idle_seconds": 9.738551139831543, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:43.517Z", "timestamp_ms": 1769304403517}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-25T01:26:43.518Z", "timestamp_ms": 1769304403518}, {"level": "INFO", "message": "585/591 (99%) | idle: 11.1s", "metrics": {"idle_seconds": 11.096593141555786, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:44.876Z", "timestamp_ms": 1769304404876}, {"level": "INFO", "message": "585/591 (99%) | idle: 12.1s", "metrics": {"idle_seconds": 12.118809938430786, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:45.898Z", "timestamp_ms": 1769304405898}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-25T01:26:45.898Z", "timestamp_ms": 1769304405898}, {"level": "INFO", "message": "585/591 (99%) | idle: 13.5s", "metrics": {"idle_seconds": 13.451003551483154, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:47.230Z", "timestamp_ms": 1769304407230}, {"level": "INFO", "message": "585/591 (99%) | idle: 14.5s", "metrics": {"idle_seconds": 14.47014856338501, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:48.249Z", "timestamp_ms": 1769304408249}, {"level": "INFO", "message": "585/591 (99%) | idle: 15.5s", "metrics": {"idle_seconds": 15.49793529510498, "progress_pct": 98.98477157360406, "reviews_count": 585, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.277Z", "timestamp_ms": 1769304409277}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-25T01:26:49.277Z", "timestamp_ms": 1769304409277}, {"level": "INFO", "message": "Close enough (99.0% >= 95.0%), skipping further retries", "metrics": {"pct_complete": 98.98477157360406}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.361Z", "timestamp_ms": 1769304409361}, {"level": "INFO", "message": "All reviews loaded: 585", "metrics": {"total_reviews": 585, "elapsed_seconds": 46.86703681945801}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.361Z", "timestamp_ms": 1769304409361}, {"level": "INFO", "message": "Final flush: 36 reviews...", "metrics": {"source": "final_flush", "batch_size": 36}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.361Z", "timestamp_ms": 1769304409361}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-25T01:26:49.361Z", "timestamp_ms": 1769304409361}, {"level": "INFO", "message": "Total: 585 unique reviews (flushed: 585, in memory: 0)", "metrics": {"flushed_count": 585, "total_reviews": 585, "elapsed_seconds": 46.86715817451477, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.361Z", "timestamp_ms": 1769304409361}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.361Z", "timestamp_ms": 1769304409361}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:26:49.363Z", "timestamp_ms": 1769304409363}] 2026-01-31 03:21:52.842673 [{"count": 55, "topic": "shuttle bus"}, {"count": 32, "topic": "island"}, {"count": 17, "topic": "bail"}, {"count": 17, "topic": "scammers"}, {"count": 15, "topic": "damage"}, {"count": 13, "topic": "driver"}, {"count": 11, "topic": "minibus"}, {"count": 11, "topic": "comprehensive insurance"}, {"count": 8, "topic": "las palmas airport"}, {"count": 7, "topic": "transfer"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-25T01:25:52.832702", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N ClickRent Gran Canaria | Alquiler de Coches y Furgonetas Car rental agency C. Practicante Casto Moros, 35219 Ojos de Garza, Las Palmas, Spain 3.70 1569 Automotive.Rentals.Car_rental_agency exact google 72e6644d-1c89-4757-be12-c195e666b2db completed https://www.google.com/maps/search/?api=1&query=%2213%20islas%22%20las%20palmas&hl=en \N \N 2026-01-31 02:53:29.812219 2026-01-31 02:54:24.393603 2026-01-31 02:54:24.491049 207 [{"text": "PÉSIMO: es la empresa con la que trabaja el seguro de la Comunda. Es la segunda vez q tengo q tratar con ellos y la peor experiencia. Llevo más de tres meses con humedad (soy asmática, pueden imaginarse lo mal q lo estoy pasando). Hace dos semanas enviaron al escayolista,, llamo para preguntar por carpintero, pintor, ... respuesta que tiene q venir albañil q ya me llamarán. Le informo que envíen al pintor para por lo menos acabar con el vestidor ya q mi casa parece zona de guerra y que cuando pueden. No puedo entender como nadie trabaja con ellos porque el sercicio es el peor .", "author": "LAURA SANTANA LORENZO", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5VVowVlNjVU4xV21ObVZIZFpZbVJMTVhOdVkyYxAB", "timestamp": "2 months ago"}, {"text": "A través del Seguro, la empresa 13 Islas acometió la reposición de dos tapas de cajetines de exterior de dos persianas sin fin.\\nOcurrió durante la borrasca por el fuerte viento.\\nEl trabajo se ha realizado en tiempo y forma. Ejecutándose de forma satistactoria.\\nAgradecer a la Srta. Jazmina de la Oficina por su implicación e interés y al operario Jonay que lo realizó con gran profesionalidad.", "author": "Dolores Rosales", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KNFRrUk9hRXBOUVhaeVQzSTRia0ZMTW1GUk5HYxAB", "timestamp": "3 weeks ago"}, {"text": "Estoy contento com impresa 13 islas. Yo tuve una problema en el baño,. El agua corría sin parar, tuve que cerrar el agua del grifo hasta que se solucionara el problema.Estaba en emergencia en día entes de Noche vieja. Fontanero lleguo en mismo día por la tarde y arregló el tubo rápido en 30 min. Estaba contento,porque no podría usar la agua en día entera,sí no estaba solucionado. Muchas gracias de 13 islas empresas yo tuve buenas días de navidad.", "author": "Marian Panayotov", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoMFNuTnhVVVZpWjFsaU4wdHBkbkE0VHpOYVQxRRAB", "timestamp": "3 weeks ago"}, {"text": "Fueron muy rápidos en arreglar la avería, la detectaron después de un buen rato de hacer una búsqueda intensiva y finalmente consiguieron solucionarlo. Además, antes de irse dejaron todo muy limpio. Gracias a Giovanni por un trabajo tan bueno.", "author": "Bengi Canarion", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toT1RIbHdiM1ZXTlRGTmJXOVBTbmxYTkhWd2VYYxAB", "timestamp": "2 months ago"}, {"text": "En primer lugar la atención telefónica ha sido NEFASTA por no decir algo peor… por parte de la supuesta “profesional” bastante incompetente que nos atiende ¡¡MUY PERO QUE MUY MALEDUCADA!!\\nQ nos demos de baja al seguro dice¡¡¡INCREÍBLE!!! Pero cierto!\\nSe nos está inundando la casa desde hace más de 24 hrs que avisamos ayer, pues hoy nos llaman para darnos una cita con un mínimo margen para poder estar en la casa y no podíamos!!\\nNos vuelven a citar a las 14:30 y llaman casi 2 HORAS MÁS TARDE ¡¡¡después de haber hecho gestiones pidiendo permiso en trabajo para poder venir a atender la situación!!! NOS DEJAN COLGADOS!!! Y RESULTA Q NO PUEDEN VENIR…no hasta mañana, el día siguiente !!! NOOO si no hasta la semana q viene… es decir 4, 5 o 6 DÍAS o MÁS!!!!\\n¡¡¡Vamos q si se nos convierte en una piscina la casa tampoco lo verán como una urgencia…!!!\\nHemos llamado esta mañana al ayuntamiento incluso para q nos ayudaran por si era problema de ellos, revisaron por la mañana, nos llamaron para comentar y (aunque no es su problema) van a volver a mirar por la tarde a ver q daños tenemos y dejar constancia de todo!!\\n\\n¡Qué pena haber cambiado del seguro q teníamos durante tantos años a alianz simplemente por la confianza q tenemos en el BBVA q fue quien nos ofreció este servicio!", "author": "Nara Escalero Romero", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKdGVVeHNlUzF0VW5Wc1RGUnBNVmhxWkdWRVNXYxAB", "timestamp": "4 months ago"}, {"text": "Hola, he tenido una averia en el baño , hoy antes de la hora , ( perfecto) llegado el fontanero su nombre Ismael, supo desde el primer momento el tema de la averia y solucionado, estupendo profecional, gracias", "author": "Sara Rivas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCb1EyOXNTbkoyVkc5c01HaFhTRVJDZVhjM09FRRAB", "timestamp": "a month ago"}, {"text": "Egoísmo ... Siempre hacen lo mismo ...\\nEncima que hay poco aparcamiento por la zona ... Se cogen DOS ...", "author": "C R", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21kNE5XSm1PVXBhY0dnMVN6VktZa0Z3VkRSa1ZsRRAB", "timestamp": "4 months ago"}, {"text": "Son ningún problema.\\n\\nPrimera vez que un seguro y el servicio técnico me sorprende..no dilación no lentitud tiempo record el arreglo...muy conforme con el servicio", "author": "erik hernandez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ReVJteFlWbXM0Y20xTmF6TjFPWE5QTkRJM1ltYxAB", "timestamp": "a month ago"}, {"text": "Hemos recibido una atención y han realizado un trabajo muy notable. A través de la aseguradora nos la enviaron y han cumplido a la perfección. Enhorabuena. Farmacia Hoya de la Plata.", "author": "RAMON RIVERO AGUILAR", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214UVpqWkZRemhUWkVSNFVtNXNWVzVzUmtWdWIzYxAB", "timestamp": "6 months ago"}, {"text": "Muy contenta con el servicio prestado , rapidez, eficacia y amabilidad, tanto de la joven que llama como el operador que vino acasa por el atasco. Muy recomendable.", "author": "Chany Herrera", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCVVIzZDBRVlpoUkd4aldIUm9hRGRCZDFsT1MwRRAB", "timestamp": "5 months ago"}, {"text": "He tenido una averia de agua en el baño de casa y el fontanero, yesista y pintor todos ellos verdaderos profesionales, rápidos y sobre todo límpios en su trabajo. Muy contenta con los trabajos realizados. El contacto con la persona de la oficina también muy bien. Excelente todo.", "author": "Margarita Malillos Betancor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJd2J2eFNREAE", "timestamp": "9 months ago"}, {"text": "Tuve una avería nocturna con una tubería de mi casa, llamé al seguro BBVA y enviaron al fontanero de la compañía 13:islas, todo un profesional en cuestión de 20 minutos me la solucionó, no le importó que fuera la 22:30 horas, ejecutó el trabajo de forma excelente, lo mismo el yesista a la siguiente semana y hoy el pintor, profesionales los tres,. Totalmente satisfecho. Gracias.", "author": "Santiago Reyes Molina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2cmVYVVFREAE", "timestamp": "a year ago"}, {"text": "Hace tres semanas hubo una avería de agua en casa que afectó al pasillo de la comunidad y los falsos techos de debajo de casa. La primera persona a la que enviaron fue muy profesional, enseguida dio con la avería y dio parte de todo el desastre. A los 10 días enviaron a otra persona a tapar el falso techo del baño (también bastante bien), pero no han enviado a nadie para tratar la humedad del pasillo (que huele fatal!!). Llamo y me comentan que aún están a la espera de que llegue el material para las placas del techo de abajo. Que hasta que no llegue eso, no envían a nadie a hacer los arreglos. Aparte de eso, el baño sigue sin pintar (aunque eso es lo menos importante).\\n\\nMi comentario negativo es por la organización de la empresa y su forma de priorizar las tareas y el envío de trabajadores, pues no velan por la necesidad real del cliente, sino por la optimización de sus recursos humanos.", "author": "Judit Lorente", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtMjZUU1pREAE", "timestamp": "3 years ago"}, {"text": "Después de dar parte al seguro para una avería, y acudir unos de sus técnico, se va y me comenta que hay que esperar a ver si el seguro lo cubre. 5 días después me llama un vecino que está mojándose el coche la avería y tras llamar a 13 islas me comentan que el seguro no se hace cargo y les pregunto que cuando iban a informar de eso y me contestan pues ya lo sabes. Poco profesionales", "author": "Alfonso Martel Santana", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPXzl2ZkxBEAE", "timestamp": "3 years ago"}, {"text": "Perdida de agua en tubería del agua caliente. El fontanero encontró el lugar de la avería a través del localizador de ultrasonido, rompiendo la plaqueta y haciendo la reparación. Enrique es muy profesional, educado y amable.", "author": "Manuel del Toro Robaina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5MW9POVVREAE", "timestamp": "a year ago"}, {"text": "Ayer en fecha 1 junio 2023 nos mandaron Simone por averiguar una avería de agua en l edificio donde vivo.El chico se esmero 3 h y picó intentando localizarla pero al final tuvo tambien si\\nvio de donde probablemente provenga la avería que parar porque el seguro de la casera no cubre esas tuberías. Así que la culpa en mi caso es del tipo de seguro de la casera y Simone fue muy muy amable y cariñoso con nuestra casera que es una señora mayor y con la cual hay que tener paciencia\\nAsí que chapeaux por ese chico😉", "author": "morgana S", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4bEp2RDd3RRAB", "timestamp": "2 years ago"}, {"text": "Después de casi dos meses con una avería de humedad en mi casa, el perito de mi compañía de seguros me manda a 13 Islas, vino un fontanero y reparó la humedad, vino un escayolista y tapó donde se rompió para reparar la tubería, pero la otra mitad de la pared lleva esta empresa dándome más de 15 días de excusas. Primero que no pueden venirme hasta el 9 de Junio, llamé, me quejé, y me dicen que me envían al escayolista el 31 de Mayo. Una hora antes de la hora que tenía que venir a mi domicilio a reparar me llaman de la oficina diciéndome que el escayolista está enfermo. Que pasa 13 islas… que solo tienen un escayolista? A todo eso le sumo que en una de las tantas llamadas que les hice, una de las empleadas de la oficina me dice que no vienen porque están saturados de trabajo, y resulta ser que a la tramitadora de la compañía le dice que han venido al domicilio y que la pared sigue húmeda. En fin… mi experiencia con ellos nefasta. Poca seriedad, 0% recomendable, y mentirosos.", "author": "Yani Frugoni Lopez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPbU9idVh3EAE", "timestamp": "3 years ago"}, {"text": "Buenas tardes, llamamos para una avería de fontanería a través del seguro, nos enviaron como fontanero al señor Enrique, un excelente profesional que nos resolvió el problema con eficacia y rapidez.", "author": "Paco Hernández Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEejRXeW1RRRAB", "timestamp": "a year ago"}, {"text": "Vinieron por el seguro de hogar, para detectar una avería de agua, todo correcto, muy profesional el sr. fontanero. Perfecto.", "author": "Margarita Marrero Monzón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYa3BIcmVBEAE", "timestamp": "a year ago"}, {"text": "Llevo más de dos meses esperando la reparación de una avería, entre seguro cajamar y esta empresa que sólo hacen tirarse la pelota unos a otros y cada día a peor afectando a los vecinos de abajo, y nada no hay manera, se han desentendido.", "author": "Juan Alberto Afonso Gonzáles", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWdmQ3am9nRRAB", "timestamp": "2 years ago"}, {"text": "Hoy se quedó la puerta de la casa bloqueada. En un par de horas han venido y ya está solucionado el problema, un servicio rápido y excelente. Gracias.", "author": "Almudena Cano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1bk5IZEhSWFJQTjBweGJIZFBNV3QzWXpCZlJXYxAB", "timestamp": "4 months ago"}, {"text": "He recibido una atención perfecta por parte de esta Empresa. Califico con sobresaliente el resultado. Puntualidad, orden y limpieza en los dos días en que realizaron su trabajo en mi casa.\\nEstoy muy agradecida.\\nLes recomiendo esta Compañía.", "author": "Consuelo Mariño Casillas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKem14Wkc2MEx6OWdRRRAB", "timestamp": "8 months ago"}, {"text": "Estoy muy satisfecha con el servicio prestado por esta empresa. Grandes profesionales en todos los niveles. Diría que son uno de los mejores aquí en Las Palmas. Puntualidad, profesionalidad y una gestión eficiente de todo el proceso. Muy recomendable", "author": "Rosa Maria Rodriguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOM1JEaHlhMGRYVEhaSllURkRhM2Q1ZVdvelNHYxAB", "timestamp": "6 months ago"}, {"text": "Gestionado a través de la aseguradora. Gestión impecable y trato del cerrajero excelente. Llamada para concretar cita y todo facilidades en la gestión y solución. Y no es la primera vez así q no duden en contactar con ellos o pueden estar muy tranquilos si lo tiene su seguro contratado pq son excelentes profesionales", "author": "Javier Gonzalo Susial", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3eWZDMnVnRRAB", "timestamp": "10 months ago"}, {"text": "Excelente trabajo y atención recibida por la empresa 13 Islas para solucionar una avería de agua que terminó con cambio de plato de ducha y azulejos en parte del baño. Amabilidad y solvencia de las señoritas que gestionaron toda las obras y de los operarios en realización del trabajo. Buena comunicación con el perito y la empresa. Gracias.", "author": "Manuel Pulido", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZaU1PWjBRRRAB", "timestamp": "9 months ago"}, {"text": "EXCELENTE SERVICIO,\\nLa mejor empresa del sector y eso es difícil decirlo ,entre tanta competencia.\\nSu buen hacer y su compromiso de atención al cliente con seguimiento constante ha sido una de las mejores experiencias con empresas como estas.....\\nGracias a Leandro su encargado a Jasmina por tramitar el expediente con tanta celeridad, a Alejandra por su seguimiento, a Adrián su Fontanero que nos resolvió el problema en el momento número 1, un crack!! a Angel su pintor, que dejó todo muy bien,!!\\n\\nA todos y cada uno de ellos GRACIAS por un servicio del 10......", "author": "LA PETIT GOURMET CANARIAS", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJR0IzYWFfOWR1d2FREAE", "timestamp": "8 months ago"}, {"text": "Tuve un problema con la cisterna y he utilizado el seguro del banco.\\nMe atendió la empresa 13 Islas. Muy amable la señora que me atendió por teléfono, hacía tiempo que no me encontraba con una atención tan correcta y educada. El fontanero que resolvió la avería, también muy bien.\\nEl único problema a reseñar fue los tres días que tuve que esperar. Llamé un lunes y me dieron cita para el jueves.\\n!Todo lo demás muy bien!", "author": "Lola Gutier", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzbTRQdlp3EAE", "timestamp": "a year ago"}, {"text": "He tenido varias incidencias y en algunas me ha atendido esta empresa, sin duda son los mejores del sector.", "author": "ramon gonzalez mendez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5U2FuaHJTV2hvZW5kRlJrUk5ZVWhIZEZkS1VuYxAB", "timestamp": "2 months ago"}, {"text": "Problemas con el termo que fisuro y tuvimos una fuga importante de agua que daño varios módulos de cocina, se encargaron de sustituir y reparar la cocina y la dejaron como nueva, todo a través del seguro de hogar. Pendientes y atentos en toda la gestión. Les contactaría nuevamente ante una futura incidencia si el seguro no lo cubre.", "author": "Juliansv S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzazhmQmpnRRAB", "timestamp": "a year ago"}, {"text": "Muy buen servicio y rápido buen profesional el señor que me arreglo las averías gracias", "author": "Armando Lorenzo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KTmFVWm9XV2RsZERSUWVYWkJUamxaZFdGMFVtYxAB", "timestamp": "3 months ago"}, {"text": "Muy profesionales, y el trabajo finalizado de muy buena calidad. 10 de 10. Recomendado.", "author": "Omar Ross", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taSlIwOXhSRFExYVdoa09HOUxUMlo2UmpGVGVVRRAB", "timestamp": "2 months ago"}, {"text": "Son varias las ocasiones que han acudido por incidencias en el hogar a través del seguro, pero no había dejado reseña todavía.\\nDesde las compañeras de la oficina hasta los operarios que han acudido en todas las ocasiones, la experiencia ha sido muy buena, muy atentos y solucionando todos los problemas rápidamente.\\n\\nMucjas gracias.", "author": "Héctor PD", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURUcWZPWVR3EAE", "timestamp": "a year ago"}, {"text": "Tuve una fuga de agua y, aunque hubo demoras en las otras reparaciones, la empresa se esforzó por ofrecer un buen servicio. Enviaron a alguien antes de lo previsto. En particular, estoy contento con el trabajo del pintor, el Sr. Ángel, que realmente se nota que disfruta su trabajo, incluso trabajando fuera de su horario para terminar la tarea. La empresa debería estar agradecida de tener a alguien así.", "author": "Joe Vincent", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkc01tOHVRRRAB", "timestamp": "a year ago"}, {"text": "Siniestro fue avisado a mi seguro y el seguro mandó el fontanero. Me dijeron que vendría dentro de las 11.30 y las 12.00 horas! Puntualmente a las 11.30 horas estaba en mi puerta! Descubrió la avería en un tris pero lamentablemente causó el siniestro la cañería de mi vecina! Pero contentos con el fontanero que estaba puntual, amable y profesional!", "author": "Udo Helms", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYbzkycWdBRRAB", "timestamp": "a year ago"}, {"text": "Buen trato, tuvieron mucho esmero por atendernos lo antes posible.", "author": "javier", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pseGIxTjBiMmMzZVZsbmNtSm1hV2hEYjBsR2IxRRAB", "timestamp": "3 months ago"}, {"text": "Después de llamarles en reiteradas ocasiones respondiendo a su llamada. Me responden que la responsable está al teléfono y no puede responder. Que me llamarían en breve, y estoy esperando. Todo esto en respuesta de un siniestro en una comunidad y enviados por una aseguradora. Servicio urgente “", "author": "Filomena Vázquez Viñas", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfX3ZpS25RRRAB", "timestamp": "a year ago"}, {"text": "Estoy contenta con el servicio de la empresa. El técnico fue muy atento y correcto, haciendo su trabajo.\\nTuvo que reparar el mecanismo de una persiana y lo ha realizado rápido y de calidad. Gracias!", "author": "Milena Vasileva Halacheva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyem8tNnpBRRAB", "timestamp": "a year ago"}, {"text": "Por un lado, estoy bastante satisfecho con el trabajo del fontanero que me enviaron: fue rápido, hizo bien su trabajo y solventó el problema. Se comportó como un verdadero profesional.\\n\\nPor otra parte estoy muy descontento con la empresa \\"13 islas\\", particularmente por el precio abusivo de sus honorarios. Me enviaron un primer presupuesto para la sustitución del flotador del bidón, en el q consignaron 2 horas de mano de obra para dicha sustitución. Comoquiera q tuve q solicitar una ampliación del trabajo pq me cargué la llave de paso general, me enviaron un segundo presupuesto incluyendo la sustitución de dicha llave, consignándome 3 horas de mano de obra por las dos actuaciones. El fontanero hizo todo el trabajo en 1 hora y quince minutos y me cobró lo q le ordenó la empresa (y q figuraba en el presupuesto, es decir, 3 horas). Llamé a la empresa para que me aclararan la cuestión y lo q me dicen es que \\"ellos cobran 3 horas de mano de obra como mínimo, aunque el trabajo dure 20 minutos\\". Sin embargo, en el primer presupuesto me pusieron 2 horas, no 3 (con lo q cual no es cierto q 3 horas fuesen el mínimo). En fin, q estoy bastante descontento con esa empresa, pq odio q me tomen por idiota.", "author": "Pedro Antonio Moreno Acosta", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNucHRTZDN3RRAB", "timestamp": "a year ago"}, {"text": "Ayer vino un señor arreglo todo perfecto super amable muy profesional de 10 es Argentino lo digo para que sepan quien es en fin muy contenta con el trabajo realizado", "author": "Ely Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOU3M0WmVja296NjR3RRAB", "timestamp": "7 months ago"}, {"text": "Cuando empiezo a comunicarle mi malestar por el plantón que me pegaron el viernes, ya que ese dia me dijeron que era el unico dia y hora (fuera del horario laboral) que podian y yo me iba de viaje, mande a una persona y la dejaron 3h esperando. Y yo sigo con la pared del baño de mi local destrozada y esperando 2 semanas por ellos. sin contar con la telefonista que me colgo el telefono despues de decirle que le iba a poner una reclamacion por su mala educacion, ya que antes de insertar la musica de espera, me profirio varios apelativos y no cariñosos.", "author": "FoodStore", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzLTdyQktREAE", "timestamp": "a year ago"}, {"text": "Me surgió una fuga de agua complicada un fin de semana y me vino un técnico fontanero llamado Enrique,un profesional como la copa de un pino,y me resolvió la fuga de agua ( que era difícil de buscar),en la cual este señor se esforzó y puso toda su dedicación en romper lo mínimo de la pared para localizarla dicha fuga que la verdad costó bastante. ME QUITO EL SOMBRERO POR SU AMABILIDAD, CORTESÍA, HUMILDAD Y SU PROFESIONALIDAD QUE TUVO EN CASA.MUCHAS GRACIAS ENRIQUE POR SOLUCIONARNOS EL PROBLEMÓN DE LA FUGA DE AGUA EL FIN DE SEMANA....", "author": "PEDRO DANIEL MERCADO GARCIA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBdnBIbVJ3EAE", "timestamp": "11 months ago"}, {"text": "La verdad que muy contento con la atención recibida, puntualidad y profesionalidad.", "author": "Isidro Córdoba", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oS0xURXlUVXhIWkRKRGJXRjVXa3hUVlhaSGRrRRAB", "timestamp": "3 weeks ago"}, {"text": "Servicio lamentable! Desde las telefonistas hasta el fontanero chulo y mal educado que enviaron a reparar una chapuza que él mismo había hecho hace unos meses atrás! No se lo recomiendo ni a mis propios enemigos.", "author": "Sil Nog", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3LXBmYml3RRAB", "timestamp": "10 months ago"}, {"text": "No puedo sino felicitarles por su buen hacer. Acudieron por una avería de fontanería. Solicitamos urgencia y acudieron muy rápido. Enseguida detectaron el problema y pusieron solución. A eso añadir el buen talante de la persona que acudió .\\nMuchas gracias. Un servicio muy bueno.", "author": "Sandra Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0OTQzMnNnRRAB", "timestamp": "a year ago"}, {"text": "Un desastre, tardaron un tardan mas de una semana en dar cita para reparar un desague atascado. Hicieron una prueba de presion y me rompieron una pieza de la la cisterna del baño que luego se negaron a reparar. Unos chapuzas nada profesionales. El parte fue por el seguro del BBVA, que son igual de impresentables. Tuve que contratar oteo fontanero y pagar yo el coste de la reparacion de una mala praxis de su fontanero", "author": "Zulema Villar", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtX1lfWkZREAE", "timestamp": "3 years ago"}, {"text": "Trabajos bien hecho y rápido. Y amabilidad tanto de parte de la parte administrativa como de los operarios.", "author": "Jesús Jaime Rodríguez Díaz-Romeral", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tweVUwcHljVFV6TkRWUFJsWkdlRlZRWVRaRFNuYxAB", "timestamp": "5 months ago"}, {"text": "Vino un fontamero llamado Enrique a nuestra comunidad y qué educado y profesional fue. Quedamos encantados. Un trabajador….como la copa de un pino!….mi madre!….no descansó hasta nos soluionó hasta el último problema. Muchas gracias y que lo cuiden como oro en paño!", "author": "Silvia Martí", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURia29XZEhREAE", "timestamp": "a year ago"}, {"text": "Vinieron por el seguro de hogar, a detectar una fuga de agua, que inundaba un local bajo la vivienda.\\nTanto el fontanero, como el albañil/escayolista, trabajaron de forma eficaz, y además, son personas de trato agradable y educado.", "author": "Begoña Familiar", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYMFBHLVZBEAE", "timestamp": "a year ago"}, {"text": "Necesité los servicios de fontanería, yeso y pintura y realizaron un trabajo maravilloso, fueron puntuales, limpios educados y muy profesionales. Sin duda tener esta empresa como seguro de hogar es un acierto, felicidades...!!!!.- Américo Morales.-", "author": "Américo Morales", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cC1Iclp3EAE", "timestamp": "a year ago"}, {"text": "Me quedé cerrada fuera de casa un domingo al mediodía. Llamé mi compañía de seguro y me mandaron un cerrajero en media hora. Ha sido amable y muy eficiente. Recomiendo 💯", "author": "Gloria Canola", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURueVplLVBREAE", "timestamp": "a year ago"}, {"text": "He tenido muchas experiencias con esta empresa y cada una ha sido muy positiva.\\nRealmente los recomiendo.\\n\\nGracias por hacerlo tan bien. 👏", "author": "Yadira González Rueda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJZ1p5Wm5BRRAB", "timestamp": "9 months ago"}, {"text": "El señor Enrique acudió a una avería de fontanería al edificio atraves del seguro , de manera profesional y educada la resolvió en tiempo y forma . Muy satisfecho con el trabajo realizado.", "author": "Eduardo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6MUtIRnRRRRAB", "timestamp": "a year ago"}, {"text": "Tenían que venir el lunes y hoy me llamaron para adelantar la cita, tengo que decir que el fontanero Hugo a parte de profesional a realizado un gran trabajo!", "author": "Silvia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3LTRud3FRRRAB", "timestamp": "10 months ago"}, {"text": "Excelente 👌 servicio!...\\nMuy buen profesional el que realizó el trabajo. Otros que han venido como el pintor muy bien.\\nIncluso buscaron la referencia de la pintura para que fuera igual .\\nGracias.", "author": "Cook5350", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzLW9Td1J3EAE", "timestamp": "a year ago"}, {"text": "Hemos recibido un excelente servicio. Fueron rápidos en atendernos y solucionaron la avería con eficacia.", "author": "Sonia Elena Torres Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJLXRqOVAycjh2emp3RRAB", "timestamp": "7 months ago"}, {"text": "Quiero agradecer a Ronald y Marcos (Empresa: Mario López C), el servicio técnico prestado en mi vivienda referente a un gran atasco en el fregadero, el trato excelente y trabajo de buenos profesionales. Siniestro de fecha 19.07.2024.\\nComo diría Amador Rivas - Aparcao.\\nGracias y buena tarde.", "author": "Tino Tino", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyX2FPT2JBEAE", "timestamp": "a year ago"}, {"text": "Son excelentes y un trato formidable y un trabajo muy bueno\\nSon profesionales de altura", "author": "Ismael antonio De la fuente acosta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGR1JVRTVXRzFpUVc1bmVrTldNRkZtWkdKNWRIYxAB", "timestamp": "6 months ago"}, {"text": "hola, lamentablemente pensé que eran mejores profesionales. Resulta que contrato por medio del seguro un servicio manitas para cambiar enchufes y luces y mandan a un chico que no era electricista. Cuando tocó cambiar las luces con conmutador ahí lo dejó ya que fue sincero y me dijo que no sabia puesto que no era electricista ¿que les parece? hablo con la encargada y nada, que ellos no mandan un electricista para eso. Me ofrece enviar un mail a la responsable y aun estoy esperando que se digne a contestarme. Muy mala experiencia.", "author": "Néstor Odón Montesdeoca Suárez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteEkzd3lnRRAB", "timestamp": "3 years ago"}, {"text": "Felicito al reparador David, que vino a mi casa a arreglar el plato de ducha. Un servicio muy eficaz y un trato personal amable y profesional. La reparación quedó perfecta. Recomiendo la empresa para las reparaciones del hogar.", "author": "FRANCISCO BRAZUELO GRUND", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4emFUanR3RRAB", "timestamp": "2 years ago"}, {"text": "Otra vez he tenido que prescindir de los servicios de 13 Islas y como las veces anteriores han sido profesionales en todo momento desde el principio hasta el final. Ojalá fueras así el resto de empresas que trabajan para los seguros de hogar.", "author": "Jonathan Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYb2FqcnRBRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Un servicio nefasto. Vinieron a arreglar una llave de paso el 9 de septiembre de 2022 y ya casi en marzo de 2023 y tras 6 visitas, no me la han arreglado. Cada vez pasa por casa un fontanero distinto que no tiene ni idea del caso y no le ponen solución, ni ganas. Son muy poco profesionales, chapuzas y por supuesto no lo recomendaría a nadie. También he avisado al seguro para que lo retiren como proveedor.", "author": "Jose J.", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoblpUakJREAE", "timestamp": "2 years ago"}, {"text": "Se nos rompió una tubería de agua en el falso techo del pasillo y del seguro nos mandaron al fontanero de 13 islas ,de nombre Daniel ,muy amable ,resolvió la avería perfectamente ,muy buen fontanero", "author": "Noe Meneses", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNReHBXNXd3RRAB", "timestamp": "10 months ago"}, {"text": "Me mandaron un fontanero de la empresa 13 Islas y la verdad que quedé muy contento con el trabajo realizado y el chico que se llama Enrique terminó el trabajo y lo dejó todo muy limpio.", "author": "Toni Vico", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBeE55cXN3RRAB", "timestamp": "a year ago"}, {"text": "De mal en peor, a diez minutos de empezar a pintar nos llaman para decir que tienen al compañero enfermo, después de haber pedido el día en el trabajo para poder estar allí, no es la primera vez que pasa, es la segunda. Por si fuera poco, vienen, dejan los plásticos, las puertas que quitan para cambiarlas por otra, no limpian, cambian un marco y rompen otro... son un auténtico desastre aparte de muy bordes por teléfono, 0 recomendables.", "author": "hELENA rAMÍREZ", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSZ3ItVUpBEAE", "timestamp": "2 years ago"}, {"text": "La verdad que cuando hace parte seguro viene mismo día pero como les pida presupuesto o preguntan si entra en el seguro ay ya ni caso te hacen llevo tres días esperando para que me contesten si lo cubre el seguro o me den presupuesto no se an interesado en comunicarse con migo la verdad una sola palabra para definirlos!!!!!!!INFORMALES!!!! Para la próxima renovación del seguro si son solo ellos los de cobertura creo que no vuelvo a renovar, contestadoles vuelvo y repito ,no an respondido ni con seguro ni sin seguro para un presupuesto pagándoles sin esperar al seguro igual", "author": "Faly Nuñez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1eUsySFNBEAE", "timestamp": "2 years ago"}, {"text": "Después de que el seguro nos enviase a reparar dos paredes y un techo por humedades a una empresa cuyo nombre no cabe ni mencionar y hacer una chapuza, solicitamos el cambio de empresa reparadora. Han enviado a 13 islas, nos atendió Oliver ( escayolista ) Un profesional en toda regla. Su atención, cordialidad , honestidad en todo momento a la hora de valorar los daños y repararlos, su gestión incluso con el área administrativa explicando bien los percances para que no siguiese habiendo malos entendidos. Con operarios de tal categoría la calidad del servicio en cuestión está asegurada. Por nuestra cabe valorar la profesionalidad , cercanía y buen hacer del operario Oliver y considero que toda empresa que disponga de trabajadores así deberían cuidarles bien, por lo que se ve cada día hay menos. Muchísimas gracias por el servicio prestado pues de lujo ha quedado.", "author": "Güimar Del Pino Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURteVlpWWtnRRAB", "timestamp": "3 years ago"}, {"text": "Mis felicitaciones para la empresa y el técnico, sobretodo por la rapidez en la emergencia en horas de madrugada. Grandes profesionales y gran trato.", "author": "Ayoze Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNic05QaVhnEAE", "timestamp": "a year ago"}, {"text": "Me destrozaron el techo y dijeron que el seguro no sabían si cubrían el techo el entero . encima me atascaron el lavamanos", "author": "Cristo J", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VQdV94b2FLbDl5bXF3RRAB", "timestamp": "8 months ago"}, {"text": "Ayer domingo, el electricista llamado Daniel, solucionó un problema de electricidad,que no había en mi apartamento,EXCELENTE.Muy bien profesional.\\nMuchas gracias.\\nLourdes", "author": "Lourdes Trujillo García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfMjU2b1BBEAE", "timestamp": "a year ago"}, {"text": "Es la empresa que usa mi aseguradora y son muy buenos, sobre todo Víctor que siempre es el que viene y realiza una trabajo impecable, muy limpio y preocupado por hacer una buena labor, recomendables al 100%, cumplen con fecha hora y trabajo.", "author": "Maria Isabel Acosta Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqdUliUmN3EAE", "timestamp": "a year ago"}, {"text": "Nunca contrataría esa empresa ,falta de profesionales ,habéis venido a Casablanca a casa de un afectado y el trabajo realizado a sido pésimo ,empeoró la situación del techo …", "author": "Gran Canario", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5MFBLM0hREAE", "timestamp": "Edited a month ago"}, {"text": "Llamé a mi correduria de seguros para dar parte y en seguida esta empresa respondió.\\nMuy buen servicio del operario que acude a la vivienda.\\nSin queja alguna.", "author": "Begoña GP", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkeUp1eGhRRRAB", "timestamp": "a year ago"}, {"text": "Usé el servicio de \\"manitas\\" para colocar plafones y sustituir enchufes y el resultado fue muy satisfactorio. Puntualidad, eficacia y profesionalidad caracterizaron al chico que realizo el trabajo.", "author": "carolina Pérez Vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5NXNYYXJnRRAB", "timestamp": "a year ago"}, {"text": "Como en cada servicio atención de matrícula de honor.", "author": "Chari Cabrera", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxUVUzb3hMVm8wTlV4Mk5ETjVVRWQwZGpZekxXYxAB", "timestamp": "5 months ago"}, {"text": "Buenas, mi experiencia con esta empresa es malisima vinieron a tapar una cata en el techo del baño, lo taparon muy bien pero me dejaron todo el baño sucio con yeso y el dasague del lavamanos con trozo de yeso. FATAL NO LO RECOMIENDO", "author": "Mari Perez Medina", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5dmVXY0xREAE", "timestamp": "a year ago"}, {"text": "Muy buen servicio por parte de Enrique. Trato muy profesional, gracias por tu dedicación y por tu buen hacer. Gracias.", "author": "PABLO DE LA FE RUIZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNROEtqSm13RRAB", "timestamp": "10 months ago"}, {"text": "Excelentes profesionales. Amables, rápidos, eficientes. Siempre acudo a ellos. Totalmente recomendables", "author": "Ramón Rodriguez Quevedo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvM3B2WkVREAE", "timestamp": "9 months ago"}, {"text": "Ayer, 30.03.23, contacté por la tarde con 13 Islas para instalar un termo eléctrico.\\nHoy vino Adrián, el técnico instalador, puntual a las 10h.\\n\\nGracias por...\\n- vuestra profesionalidad\\n- vuestra rapidez\\n- por la buena relación servicio, calidad, precio\\n- por la atención recibida\\n\\nAdrián es sin duda alguna un gran profesional con una atención personalizada exquisita.\\n\\nFelicidades a todo el equipo de profesionales de 13 Islas, en especial a Mirian, Adrián y Kilian.\\nPara vosotros mis mejores deseos profesionales y personales.\\nGracias 🤗", "author": "Pedro Monge", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSNXJpSEZ3EAE", "timestamp": "2 years ago"}, {"text": "13 Islas es empresa local de servicios. Normalmente la elijo para reparaciones porque trabajan de forma eficaz y honesta. Cuidan la atención y comunicación con el cliente y esto hoy en día es algo muy valioso, especialmente en su sector.", "author": "Cris", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWdU4tMjJRRRAB", "timestamp": "2 years ago"}, {"text": "El servicio de los trabajadores excepcional, amables y profesionales, vinieron a casa por un siniestro del seguro y tanto Marcelo como Ángel fueron eficaces y destacar aparte de su profesionalidad su humildad hacia el cliente, gracias.", "author": "Carmen Saga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsenFEbllREAE", "timestamp": "2 years ago"}, {"text": "Unos auténticos chapuzas y además mentirosos, aún estamos esperando que vengan a cambiar la luminaria del local, según ellos no lo hacían porque no habíamos contratado la luz, ahora porque el perito no lo ha autorizado, desde julio con lo mismo.\\n\\nEl carpintero que tienen subcontratado cambió la puerta y se dejó la vieja junto a mil trozos de madera mas, los pintores hicieron el trabajo a medias manchando toda la escalera, el último pobre que vino a cambiar los rodapiés que se cargó el carpintero se tuvo que llevar todo ¡de lástima!", "author": "Rosi Castro Garcia", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoNmVfUnJRRRAB", "timestamp": "2 years ago"}, {"text": "Me parecen bastante profesionales y resolutivos. Los he tenido que llamar varias veces y siempre me contestan con mucha educación y amabilidad.\\nEstoy contenta con sus servicios.\\nGracias", "author": "Fanny Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROby0zMVpBEAE", "timestamp": "Edited a year ago"}, {"text": "Ha sido muy satisfactorio el trabajo realizado por esta Compañía, puesto que han sido organizados, rápidos y eficaces: sincronización por parte de la Oficina con los Operarios y agradecer a Ángel, el pintor, por su profesionalidad, así como al escayolista", "author": "MELCHOR MORALES SORIANO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxeXVybWJBEAE", "timestamp": "2 years ago"}, {"text": "Me instalaron un monomando de cocina con autorización de la compañía de seguros de la vivienda, el monomando tiene garantía por 10 años la llave tiene una fuga de agua y me hace falta la factura para poder devolver por otro igual pero la empresa 13 isla no quiere darme una copia de la factura de compra porque actuan me muy mala Fé. Por supuesto en mi casa no entran más . Malas personas", "author": "Francisco Javier Vargas Pérez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdk9IOHdRRRAB", "timestamp": "3 years ago"}, {"text": "Hoy han venido a reparar un fregadero. Rapidez y aún mejor el buen trato. ¡Muchas gracias por su profesionalidad!", "author": "Maria Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOc1BUeWZnEAE", "timestamp": "2 years ago"}, {"text": "Muy mal. No recomiendo. Me hacen esperar casi 6 meses para dar parte al seguro y ahora nadie quiere hacerse cargo del siniestro inventando y haciendo un informe que no corresponde con la realidad. Mala gestión basada en mentiras.", "author": "yassiel perez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSanRhQndRRRAB", "timestamp": "2 years ago"}, {"text": "Oliver escayolista muy buen profesional, nos atendió en Telde san juan edificio telli, muy amable hizo un trabajo de primera, nos dejó todo bien hecho y muy limpio. Hemos quedado muy agradecidos con su trabajo.", "author": "Sergio Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtd2R2MkN3EAE", "timestamp": "3 years ago"}, {"text": "Le doy 5 estrellas porque no hay más que poner. Totalmente satisfecho con el servicio, atención al cliente y completamente unos profesionales. Estoy muy agradecido y por supuesto recomendable al 100x100", "author": "Tony", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROanRfSlFnEAE", "timestamp": "2 years ago"}, {"text": "Muy buen servicio en general, por parte de todos los profesionales que pasaron por la vivienda, servicio rápido y eficaz, personal amable", "author": "Miguel Talavera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYaGNDN293RRAB", "timestamp": "a year ago"}, {"text": "Enrique. Es muy buen profesional. Muy contentos con su trabajo...muchísimas gracias.saludos Carmelo", "author": "Rosa Del Rosario", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2bk9yZmdBRRAB", "timestamp": "a year ago"}, {"text": "Excelente trabajo y atencion de Daniel para una averia en mi casa. Muy correcto y dispuesto para resolver el problema.", "author": "Alberto Garcia De Celis Borrell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRN1BmcExREAE", "timestamp": "10 months ago"}, {"text": "Un 1000 , no me han podido solucionar la avería por problemas ajenos a su voluntad, pero han tratado de buscarle una solución sin ningún tipo de problema. Muy agradecido!", "author": "Eduardo Mateos Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIOXJ1RFpBEAE", "timestamp": "a year ago"}, {"text": "Buenas tardes.\\nAcudió por una incidencia a través del seguro y fue muy rápido en acudir al domicilio y solucionar el problema.\\nMuy satisfecha.\\nGracias", "author": "Maria del Carmen Montesdeoca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMMHAyeFNnEAE", "timestamp": "a year ago"}, {"text": "LOS OPERARIOS DANIEL Y DILIP SON GRANDES PROFESIONALES ENORABUENA CHICOS UN PLACER CONTAR CON UNOS FONTANEROS COMO USTEDES.GRACIAS DANIEL POR LA RAPIDEZ Y SERIEDAD", "author": "Miguel Salazar Alonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRcnNQVHZBRRAB", "timestamp": "10 months ago"}, {"text": "Son una empresa muy profesional. Cuando he requerido su servicio son rápidos en la atención directa y con los trabajadores que envían. Súper recomendables.", "author": "Juan Ramón Jerez López", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqek5XTldnEAE", "timestamp": "a year ago"}, {"text": "Hola, y son varios servicios que he contratado con ellos y siempre he salido muy contento. si necesitas una empresa seria, con buenos profesionales acude a ellos.", "author": "Jose Antonio Gonzalez Artiles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMaHJycktBEAE", "timestamp": "a year ago"}, {"text": "Fatal...me responden a mi reseña echándole la culpa al seguro ...como siempre...son ustedes los que mandan el informe al seguro . El problema es que hacen el informe como les conviene. Háganse responsables de las chapuzas que hacen.", "author": "El AlmaZen", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSZ2VTY0JREAE", "timestamp": "2 years ago"}, {"text": "Muy buen servicio, vino el fontanero, que se llama Enrique nos soluciono una avería de un atasco en un fregadero y la pérdida de agua del bájante, todo muy bien, puntual, y profecional en su teabajo", "author": "Alexis bandurria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKOEpTajJRRRAB", "timestamp": "2 years ago"}, {"text": "Muy mala experiencia, tardaron 3 meses para colocar un plato de ducha , personal sin formación, enviando fontaneros distintos y ninguno sabía hacer su trabajo, no lo recomiendo", "author": "Juani Sosa", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYd1BUbDZRRRAB", "timestamp": "a year ago"}, {"text": "Encantada con el servicio. Me vinieron a casa a montsr un mueble, limpios, ordenados, responsables, rápidos, educados y eficiente.", "author": "Silvia Suárez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqdC1MRXFnRRAB", "timestamp": "a year ago"}, {"text": "Desatascos; trabajo bien hecho, muy rápidos y profesionales, sin duda recomiendo 100%", "author": "Dailos Leon perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfcXFiQldnEAE", "timestamp": "a year ago"}, {"text": "Mi experiencia con el albañil es horrible .Baldosas con desnivel de más de 2cm incluidos los zócalos en curva en una pared recta.La pared que tenía que reparar hundida .Ya no satisfecho con el mal trabajo que hizo por decir algo me empeno una puerta y rompió un paso de granito.Mancho paredes y puertas con cemento.El baño me lo dejo totalmente con cemento.De lo peor vamos tengo fotos de todo es para llorar.", "author": "Laly Santana Reyes", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREaUxPQ1FnEAE", "timestamp": "a year ago"}, {"text": "Ya es miércoles...desde sábado tienen las goteras los pisos de abajo ...hoy tengo por necesidad bque poner lavadoras así que si la avería se hace mayor el seguro es quien pagá.", "author": "María José San", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheXBuMjVBRRAB", "timestamp": "4 years ago"}, {"text": "El chico fue excepcional tardaron menos de dos horas en venir a resolver la avería y lo hizo eficazmente y además con muy buena educación. Lo recomendare seguro", "author": "Virginia Hernández Cardenes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaLWNhcEh3EAE", "timestamp": "2 years ago"}, {"text": "Una empresa puntual en sus trabajos, siempre con buena información de cada paso del trabajo, operarios eficaces, y en su administración muy atentos .Gracias por su buen trabajo", "author": "Juana Hernandez Jiménez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5aXZDd1dBEAE", "timestamp": "a year ago"}, {"text": "Buen servicio, puntual, rápido y limpio.\\nEl empleado que vino a casa, muy amable y servicial.", "author": "FRAJUNI", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNENzlHWGJ3EAE", "timestamp": "a year ago"}, {"text": "Los trabajadores que vinieron fueron muy profesionales y educados. El servicio que prestaron fue rápido y eficientes", "author": "Begona Miguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIOE9LdVpnEAE", "timestamp": "a year ago"}, {"text": "Muy rápido y bien hecha la reparación. El operario David educada.y muy limpio con su trabajo. Contenta", "author": "Remedios Azorín Placeres", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNDVIc0N3EAE", "timestamp": "2 years ago"}, {"text": "Grandes profesionales desde la que atiende la llamada hasta el operario que va a los apartamentos, es la segunda ves que llamamos y perfecto.\\nDesde aquí les doy las gracias", "author": "tiojuan apartamentos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMcnNfdWZBEAE", "timestamp": "a year ago"}, {"text": "Gestión pésima!!!\\nDesde noviembre persiguiéndoles para que me reembolsen una rotura que hicieron ellos al venir a arreglar una tubería.", "author": "María González Tuñón", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5enYtYjB3RRAB", "timestamp": "a year ago"}, {"text": "Muy buen servicio, el chico que vino a escayolar el techo (Juan Manuel) lo dejó perfecto, fue muy simpático y profesional.", "author": "Luciano Monroy Altamirano (Ryuzakira)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtdmJIYzVRRRAB", "timestamp": "3 years ago"}, {"text": "Muy bien trato y servicio", "author": "Laly Ramirez De Armas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWMVVFNVVkbWd5Ym1nNFQxQnJUbWRmWTI1a1ptYxAB", "timestamp": "2 months ago"}, {"text": "Después de no acudir en la fecha citada para un siniestro vienen dos días más tarde y encima el fontanero realiza una peritación no adecuada a la póliza que cubre linseguro", "author": "fermin artiles romero", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNleUlYa2NBEAE", "timestamp": "3 years ago"}, {"text": "Estoy satisfecha, muy satisfecha con el trabajo realizado en casa, puntualidad, la atención de la empresa, (la recomiendo, )seriedad, y un buen trabajo,así da gusto con una empresa seria. Gracias por todo..", "author": "antonia estupiñán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0bmN2SDJRRRAB", "timestamp": "a year ago"}, {"text": "Fueron rápidos en venir a casa y solucionaron el problema. Trato muy profesional, resolviendo todas las dudas que teníamos.", "author": "Miguelito Notimporta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3aFBUZkVREAE", "timestamp": "a year ago"}, {"text": "Muy eficaces y rápidos .... Tuve una avería en casa y fueron muy serios y realuzaron muy buenos trabajos ... Recomendable", "author": "Jorge S.F.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxcXBmejZBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente profesionales. Buena organización. Cumplen en tiempo y hora. Totalmente recomendable.", "author": "Eva Pérez rosales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqalpXN3p3RRAB", "timestamp": "a year ago"}, {"text": "Pésimos! Trabajos mal acabados, dan largas, mienten al cliente. Utilizamos sus servicios a través de la aseguradora y ha sido todo un calvario. No los recomiendo.", "author": "Lega Gal", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtaWV5cWl3RRAB", "timestamp": "3 years ago"}, {"text": "Buena atención y profesionalidad en el trabajo realizado. Recomendable.", "author": "Gervasio", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURnMGE2NG53RRAB", "timestamp": "11 months ago"}, {"text": "Puntualidad, profesionalidad, seriedad en trabajo de reparación de escayola y molduras, enviados por mi compañía de seguros 👍", "author": "Inma Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkbkluU293RRAB", "timestamp": "a year ago"}, {"text": "Servcio super lento ( 1 mes y medio de espera) y atención al cliente fatal!!! No aconsejo!!!", "author": "giovanni bellei", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2cVlUTTNRRRAB", "timestamp": "a year ago"}, {"text": "No puedo estar más agradecida al señor Enrique por su profesionalidad y por su trato amable y paciente.", "author": "Mónica Domínguez Marcos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMODdfSHlnRRAB", "timestamp": "a year ago"}, {"text": "Muy serios y puntuales, me han solucionado muy bien las reparaciones", "author": "Rosadelia Alamo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkZzdfeTNRRRAB", "timestamp": "a year ago"}, {"text": "Muy buen servicio, Brian solucionó el problema con profesionalidad y eficiencia.", "author": "Manuel Rivero Navarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQNU5uTVNnEAE", "timestamp": "a year ago"}, {"text": "Os doy las gracias por El personal que tenéis son amables eficaces y muy serviciales gracias por todo al manitas y al electricista", "author": "Maria Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxcXI2aTdBRRAB", "timestamp": "2 years ago"}, {"text": "El día de ayer vino un escayolista llamado Oliver muy educado con buen trato ,le doy las gracias al Sr Oliver por el trabajo que hizo y el trato que nos dio.de todo corazón gracias Oliver", "author": "Silva marrero álvarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheXJxeTlRRRAB", "timestamp": "4 years ago"}, {"text": "Servicio muy profesional, en tiempos, en la calidad y en la atencion. Todo fue perfecto", "author": "Miriam Falcon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5bC1PVVNnEAE", "timestamp": "a year ago"}, {"text": "Muy buen servicio y profesionalidad por el Señor fontanero Enrique. Muchísimas gracias", "author": "Carla Rivero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5X05ESzJBRRAB", "timestamp": "a year ago"}, {"text": "Realizaron hace poco una limpieza de choque en una casa que les encargué y .menos la campana de la cocina en lo demás fueron bastante eficientes.", "author": "Jorge Santana", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyek9LT1JnEAE", "timestamp": "3 years ago"}, {"text": "El trabajo eléctrico en la C/ La Naval, 114-1 Izqda.saluo todo perfecto.muchas gracias al operario.", "author": "Humberto Cabrera Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEcktqNGhBRRAB", "timestamp": "a year ago"}, {"text": "Cumplen con lo acordado. Tanto en hora como en el trabajo a realizar. Recomendable", "author": "J.M. P.R.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYcDV6c0xREAE", "timestamp": "a year ago"}, {"text": "Los mandaron del seguro por un tema de fontanería. Lamentables como profesionales", "author": "Pablo g.", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGd2U2X013EAE", "timestamp": "2 years ago"}, {"text": "Mal servicio y poca profesionalidad. Te engañan y retrasan la visita y luego te dicen que no es lo que tenían encargado y todo eso de malas formas", "author": "juan antonio leon", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPamZuV01REAE", "timestamp": "3 years ago"}, {"text": "Muy malos, vinieron para una averia de la comunidad, no detectaron las fugas y comunicaron despues que no reparaban este tipo de avería.", "author": "karuzo chris", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlallpM1FBEAE", "timestamp": "3 years ago"}, {"text": "Muy buena empresa, buenos profesionales.", "author": "tony alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3OUxId1FBEAE", "timestamp": "10 months ago"}, {"text": "Excelente atención, puntuales y resolutivos para el arreglo de la puerta de casa", "author": "Antonia Gutiérrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURUazZlRmRBEAE", "timestamp": "a year ago"}, {"text": "Seriedad y eficiencia Cuenta con un equipo de profesionales muy cualificado", "author": "Tere Espino", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfOHJhejVBRRAB", "timestamp": "a year ago"}, {"text": "Muy satisfecho, todo genial , rápidos, atentos y preocupados de 10...", "author": "mito perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqeDduTGpnRRAB", "timestamp": "a year ago"}, {"text": "Muy buena atención. Son siempre muy amables y cumplieron con todo lo que necesitábamos.", "author": "Héctor Camilo Daleffe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNObl83Yzd3RRAB", "timestamp": "2 years ago"}, {"text": "Muy buen servicio. Amables ,limpios y puntuales. Recomendable.", "author": "Marta Alemán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROMWZXWHpBRRAB", "timestamp": "2 years ago"}, {"text": "Felicito al Sr. David, de albañilería, por el buen hacer, y rapidez en su cometido.", "author": "Rafael Afonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsbXRlMFl3EAE", "timestamp": "2 years ago"}, {"text": "Servicio ágil y en contacto con el cliente y terminación del trabajo en la fecha concertada.", "author": "Fernando Peña", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkdTdXVWVBEAE", "timestamp": "a year ago"}, {"text": "Buenos profesionales, organización y puntualidad en fecha de trabajos realizados", "author": "Chamaida S.R.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsN2E2UWh3RRAB", "timestamp": "2 years ago"}, {"text": "Sin palabra ...de los peores seguro.....un daño reconocido y 2 meses para seguir viniendo a ver qué hay que arreglar", "author": "L B", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPdUludEh3EAE", "timestamp": "3 years ago"}, {"text": "Cada vez que vienen son puntuales y eso en una vida que no nos sobra el tiempo se agradece infinitamente", "author": "Maria Teresa Lartuna Marti", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNocXJlSXVnRRAB", "timestamp": "2 years ago"}, {"text": "El sr Hugo muy profesional. Lo dejó todo muy bien", "author": "Manuel Garcia Gallardo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOODlDcm13RRAB", "timestamp": "2 years ago"}, {"text": "Hicieron un informe contradiciendo la realidad del problema. Pro seguros total. 👍 no recomendable.", "author": "SOLELUNA", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtdmRqUTFnRRAB", "timestamp": "3 years ago"}, {"text": "No es mala compañia pero tienen algunos empleados que no son todo lo eficaces que deberían ser", "author": "Celia Santana", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5a1pTQk1REAE", "timestamp": "4 years ago"}, {"text": "Puntuales, eficaz, profesionales, limpios y atentos.", "author": "Ana Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqNGJ2NDRnRRAB", "timestamp": "a year ago"}, {"text": "Excelente trato y servicio, muy recomendable!", "author": "José Manuel Domenech Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5bExQVHV3RRAB", "timestamp": "a year ago"}, {"text": "Cerrajero malo y poco profesional dejo el trabajo a medias y no lo terminan.", "author": "Rayco", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURabGJ2TnhRRRAB", "timestamp": "2 years ago"}, {"text": "Seriedad y profesionalidad admirables", "author": "toñi perez ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VPM3FxOExFaFpiYVpREAE", "timestamp": "8 months ago"}, {"text": "Agradezco el servicio prestado por el operario Luis Méndez", "author": "Luz Marina Sánchez Padrón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKdE9PbmZ3EAE", "timestamp": "2 years ago"}, {"text": "Excelentes profesionales.Trabajo de calidad.Gracias.", "author": "Alexis Guadalupe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5bHA3MmlRRRAB", "timestamp": "a year ago"}, {"text": "Satisfecho con la profesionalidad del trabajo, lo recomiendo", "author": "Calixto Montero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREaDVpNmt3RRAB", "timestamp": "a year ago"}, {"text": "Son gente muy profesionales y puntuales muy recomendado", "author": "Juanjo Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNobGYzbHhBRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Solo trabajan con seguros, mal trato de la que coje el teléfono", "author": "Tony Hernandez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNdUxfYUp3EAE", "timestamp": "6 years ago"}, {"text": "Muy eficientes,rápidos y profesionales", "author": "BIANCA QUEVEDO PERERA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdXVPWEd3EAE", "timestamp": "a year ago"}, {"text": "Serios y puntuales. Buen trabajo .", "author": "Maria Romero Quintana", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNE1qdUpBEAE", "timestamp": "a year ago"}, {"text": "No lo recomiendo ni a mí peor enemigo", "author": "L S M", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtcmJ2M3pnRRAB", "timestamp": "3 years ago"}, {"text": "Eficientes y rápidos. Buenos profesionales.", "author": "Emilio Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwX0pYVl9BRRAB", "timestamp": "6 years ago"}, {"text": "La verdad muy contento", "author": "Fran Medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscmJxdV93RRAB", "timestamp": "2 years ago"}, {"text": "Unos impresentables . 1", "author": "Nelson Alonso", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtLXZybUN3EAE", "timestamp": "3 years ago"}, {"text": "Buenos profesionales", "author": "Diego Vera Palmés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxdUptM1lnEAE", "timestamp": "2 years ago"}, {"text": "Fantastico", "author": "Nicolás Peña Marrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLMThpNUp3EAE", "timestamp": "4 years ago"}, {"text": "Servicios de reparaciones", "author": "Javi", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRZ2ZtWDBBRRAB", "timestamp": "7 years ago"}, {"text": "Pésimo, era a través del seguro de la comunidad, me hicieron una llamada perdida el lunes 19 de enero y me enviaron un wasap para que me pusiera en contacto con ellos, después de dejar cuatro recados en la empresa con una chica compañera de la que me tenía que atender (esto fue lunes y martes) cansada ya de que no respondiesen vuelvo a llamar a llamar a la comunidad y ese día me llaman y me dicen que es que tienen mucho trabajo y que me dan cita para el 9 de febrero, cuando tienen que asistir en 24 horas, como me quejo me dicen que se acaba de desocupar un compañero y que si podía venir aunque fuese las 14:00 de la tarde, le digo que sin problema, y a las 17:00 sin aparecer nadie me llega un wasap diciendo que habían asistido a mi domicilio y que la avería estaba resuelta y el caso cerrado. Imaginaros que cara se me quedó. Al día siguiente los llamo y les digo que pasó y es que fueron a otra casa, que tienen que decirle a la aseguradora que abra el parte otra vez, no de coña quiero está empresa ya, son unos irresponsables", "author": "Desiree Brito", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sweVZ6SlVVMHMyYzBZeFVrbG9ha1YzUW5nNVdsRRAB", "timestamp": "2 days ago"}, {"text": "13islas ha reparado un daño causado por el agua que había comunicado a mi seguro. Tanto el fontanero como el albañil han hecho un buen trabajo. Fiables, limpios y puntuales.👍", "author": "U S", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xZMGRtdFlhM1JQU1RjdFUweHNXVkpsYTA1MWFXYxAB", "timestamp": "2 days ago"}, {"text": "Muy contenta con el trabajo y el trato, tanto de la central como de los trabajadores.", "author": "cristina azcarate gonzalez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GVFQzTnpYMFJOY0VoVWJrZDBVSFl4Vlc5eVltYxAB", "timestamp": "4 days ago"}, {"text": "Sin problemas trabajo de % por % ,todo perfecto y muy responsables en sus trabajos ,13 islas ,gracias", "author": "Antonia Baez Lopez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkQ1RFNTBTWEZITldwVmJFZFdOMDlsTVhKeVNHYxAB", "timestamp": "a week ago"}, {"text": "", "author": "Sandra Sosa", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GMloyWXlWMUZsUXpWWmFtUkZTVWxNY1Mxa1kyYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Vanessa fr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oVE9WWlROVkJtTUd0UVJrSTNaVFYzU1ZJMVJsRRAB", "timestamp": "4 months ago"}, {"text": "", "author": "Jonathan Falcón sanchez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ORWIxTmZNbXBqZWxOVmVGbHRSRXAzWjBWSlRrRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Alejandro Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBdE1xdGhRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jose Tomas Vega Ceballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfX0xxMktREAE", "timestamp": "a year ago"}, {"text": "", "author": "natalia rosales", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYcloySmR3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Michelle Pitcher", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiOE9UcFVREAE", "timestamp": "a year ago"}, {"text": "", "author": "Candy{小糖}", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6eThDNXZnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Rita Talavera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN6aF9Qc19nRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Clari Heredia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6LTV2dENBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Carmen Delia Rodríguez García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkek9TUGVREAE", "timestamp": "a year ago"}, {"text": "", "author": "Belén", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0LWVEdkdBEAE", "timestamp": "a year ago"}, {"text": "", "author": "sergio camacho navarro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKbnBXU3lRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Bela Barcelona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoM0l1a2tnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Pedro Pablo Quijada", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoeEwzMXF3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Desatasco Mario Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtdmJmT25RRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Pere Domínguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXOEpPZU1REAE", "timestamp": "3 years ago"}, {"text": "", "author": "Juan Diaz Melian", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXbnJUUkRREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rosana CH", "rating": 1, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNXOXZoUBAB", "timestamp": "3 years ago"}, {"text": "", "author": "Vicky Arévalo", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtODRITWd3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "rafael pacheco pallares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpNjd6NkhnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Sergio S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpaTQ3eENBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Manuel Beceiro Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDM0s3a2pnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Marii Dee jotaa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjMk9PWTN3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Rayco Manuel Alonso Oliva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzcVlmZmNBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Ezequiel Suarez Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNcjY2SGRBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Rodriguez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNdzZtdEh3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "JUAN ABRANTE NEGRIN", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdWJ6NzJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "adrián López Rodríguez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwcVAyUzdRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Cristina Rosales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwZ0pQel9BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Yessenia Yabeta Candia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwdHBxMlFnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "eloi arohcna", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdElETkpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Adrian Negrin suarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVdnJHMUR3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "ACORAIDA MENDEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvODRDOU9REAE", "timestamp": "6 years ago"}, {"text": "", "author": "Sol", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBN091Zk13EAE", "timestamp": "7 years ago"}, {"text": "", "author": "ELIZABETH CASTELLANO SUÁREZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROThQejd3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Lorena mujica garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnaWM3VG9BRRAB", "timestamp": "8 years ago"}] 54.624496 \N {"job_type": "google-reviews", "priority": 0, "multi_sort": {"enabled": false, "completed_sorts": ["newest"], "first_pass_count": 207}, "bot_detected": false, "business_name": "13 Islas", "rating_snapshot": 4, "scraper_version": "1.1.0", "business_address": "C. Malvavisco, 4, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "initial_sort_used": "newest", "sort_orders_attempted": ["newest"], "total_reviews_snapshot": 212} 207 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-31T02:53:30.303Z", "timestamp_ms": 1769828010303}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-31T02:53:30.432Z", "timestamp_ms": 1769828010432}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%2213%20islas%22%20las%20palmas&...", "category": "browser", "timestamp": "2026-01-31T02:53:30.580Z", "timestamp_ms": 1769828010580}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-31T02:53:31.919Z", "timestamp_ms": 1769828011919}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-31T02:53:32.210Z", "timestamp_ms": 1769828012210}, {"level": "INFO", "message": "Total reviews on page: 212", "metrics": {"total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:34.195Z", "timestamp_ms": 1769828014195}, {"level": "INFO", "message": "Business: 13 Islas", "category": "scraper", "timestamp": "2026-01-31T02:53:34.195Z", "timestamp_ms": 1769828014195}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:53:34.260Z", "timestamp_ms": 1769828014260}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-31T02:53:34.306Z", "timestamp_ms": 1769828014306}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-31T02:53:34.439Z", "timestamp_ms": 1769828014439}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-31T02:53:34.439Z", "timestamp_ms": 1769828014439}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:53:36.980Z", "timestamp_ms": 1769828016980}, {"level": "INFO", "message": "Expanded 6 truncated reviews", "metrics": {"expanded_count": 6}, "category": "browser", "timestamp": "2026-01-31T02:53:37.015Z", "timestamp_ms": 1769828017015}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-31T02:53:37.019Z", "timestamp_ms": 1769828017019}, {"level": "INFO", "message": "Found 10 review topics: general average, wine, scagliola, insurance company, painting...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-31T02:53:37.529Z", "timestamp_ms": 1769828017529}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-31T02:53:37.529Z", "timestamp_ms": 1769828017529}, {"level": "INFO", "message": "10/212 (5%) | idle: 0.0s", "metrics": {"idle_seconds": 0.005326509475708008, "progress_pct": 4.716981132075472, "reviews_count": 10, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:38.558Z", "timestamp_ms": 1769828018558}, {"level": "INFO", "message": "10/212 (5%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0150823593139648, "progress_pct": 4.716981132075472, "reviews_count": 10, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:39.585Z", "timestamp_ms": 1769828019585}, {"level": "INFO", "message": "10/212 (5%) | idle: 2.0s", "metrics": {"idle_seconds": 2.034450054168701, "progress_pct": 4.716981132075472, "reviews_count": 10, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:40.605Z", "timestamp_ms": 1769828020605}, {"level": "INFO", "message": "10/212 (5%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0585145950317383, "progress_pct": 4.716981132075472, "reviews_count": 10, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:41.629Z", "timestamp_ms": 1769828021629}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:53:41.629Z", "timestamp_ms": 1769828021629}, {"level": "INFO", "message": "20/212 (9%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0061266422271728516, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:42.941Z", "timestamp_ms": 1769828022941}, {"level": "INFO", "message": "20/212 (9%) | idle: 1.1s", "metrics": {"idle_seconds": 1.063467264175415, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:43.998Z", "timestamp_ms": 1769828023998}, {"level": "INFO", "message": "20/212 (9%) | idle: 2.1s", "metrics": {"idle_seconds": 2.0856006145477295, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:45.021Z", "timestamp_ms": 1769828025021}, {"level": "INFO", "message": "20/212 (9%) | idle: 3.1s", "metrics": {"idle_seconds": 3.1338131427764893, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:46.069Z", "timestamp_ms": 1769828026069}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:53:46.069Z", "timestamp_ms": 1769828026069}, {"level": "INFO", "message": "20/212 (9%) | idle: 4.5s", "metrics": {"idle_seconds": 4.469876766204834, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:47.405Z", "timestamp_ms": 1769828027405}, {"level": "INFO", "message": "20/212 (9%) | idle: 5.5s", "metrics": {"idle_seconds": 5.489683151245117, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:48.425Z", "timestamp_ms": 1769828028425}, {"level": "INFO", "message": "20/212 (9%) | idle: 6.5s", "metrics": {"idle_seconds": 6.5050883293151855, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:49.440Z", "timestamp_ms": 1769828029440}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:53:49.440Z", "timestamp_ms": 1769828029440}, {"level": "INFO", "message": "20/212 (9%) | idle: 7.8s", "metrics": {"idle_seconds": 7.833871603012085, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:50.769Z", "timestamp_ms": 1769828030769}, {"level": "INFO", "message": "20/212 (9%) | idle: 8.9s", "metrics": {"idle_seconds": 8.85992956161499, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:51.795Z", "timestamp_ms": 1769828031795}, {"level": "INFO", "message": "20/212 (9%) | idle: 9.9s", "metrics": {"idle_seconds": 9.880850553512573, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:52.816Z", "timestamp_ms": 1769828032816}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:53:52.816Z", "timestamp_ms": 1769828032816}, {"level": "INFO", "message": "20/212 (9%) | idle: 11.2s", "metrics": {"idle_seconds": 11.21514892578125, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:54.150Z", "timestamp_ms": 1769828034150}, {"level": "INFO", "message": "20/212 (9%) | idle: 12.2s", "metrics": {"idle_seconds": 12.235013008117676, "progress_pct": 9.433962264150944, "reviews_count": 20, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:53:55.170Z", "timestamp_ms": 1769828035170}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:53:55.170Z", "timestamp_ms": 1769828035170}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.235013008117676}, "category": "browser", "timestamp": "2026-01-31T02:53:55.232Z", "timestamp_ms": 1769828035232}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:53:55.438Z", "timestamp_ms": 1769828035438}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:53:59.987Z", "timestamp_ms": 1769828039987}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:54:00.201Z", "timestamp_ms": 1769828040201}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:54:02.748Z", "timestamp_ms": 1769828042748}, {"level": "INFO", "message": "Expanded 6 truncated reviews", "metrics": {"expanded_count": 6}, "category": "browser", "timestamp": "2026-01-31T02:54:02.772Z", "timestamp_ms": 1769828042772}, {"level": "INFO", "message": "Hard refresh successful, resuming with 20 reviews already collected", "metrics": {"reviews_collected": 20}, "category": "browser", "timestamp": "2026-01-31T02:54:02.781Z", "timestamp_ms": 1769828042781}, {"level": "WARN", "message": "SLOW cycle: 8.6s (api:0.0s dom:0.1s/451cards flush:0.0s seen:58)", "metrics": {"dom_cards": 451, "api_time_s": 0.013022661209106445, "dom_time_s": 0.06774425506591797, "seen_count": 58, "cycle_time_s": 8.628975868225098}, "category": "system", "timestamp": "2026-01-31T02:54:04.272Z", "timestamp_ms": 1769828044272}, {"level": "INFO", "message": "58/212 (27%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 27.358490566037734, "reviews_count": 58, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:04.320Z", "timestamp_ms": 1769828044320}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 470}, "category": "system", "timestamp": "2026-01-31T02:54:05.423Z", "timestamp_ms": 1769828045423}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-31T02:54:05.423Z", "timestamp_ms": 1769828045423}, {"level": "INFO", "message": "100/212 (47%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0184175968170166, "progress_pct": 47.16981132075472, "reviews_count": 100, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:05.442Z", "timestamp_ms": 1769828045442}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 362}, "category": "system", "timestamp": "2026-01-31T02:54:06.572Z", "timestamp_ms": 1769828046572}, {"level": "INFO", "message": "140/212 (66%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02703380584716797, "progress_pct": 66.0377358490566, "reviews_count": 140, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:06.599Z", "timestamp_ms": 1769828046599}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 264}, "category": "system", "timestamp": "2026-01-31T02:54:07.808Z", "timestamp_ms": 1769828047808}, {"level": "INFO", "message": "170/212 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.04335761070251465, "progress_pct": 80.18867924528303, "reviews_count": 170, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:07.851Z", "timestamp_ms": 1769828047851}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 215}, "category": "system", "timestamp": "2026-01-31T02:54:08.899Z", "timestamp_ms": 1769828048899}, {"level": "INFO", "message": "Flushing 107 reviews to disk...", "metrics": {"source": "flush", "batch_size": 107}, "category": "scraper", "timestamp": "2026-01-31T02:54:08.899Z", "timestamp_ms": 1769828048899}, {"level": "INFO", "message": "207/212 (98%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0045697689056396484, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:08.904Z", "timestamp_ms": 1769828048904}, {"level": "INFO", "message": "207/212 (98%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0517051219940186, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:09.951Z", "timestamp_ms": 1769828049951}, {"level": "INFO", "message": "207/212 (98%) | idle: 2.1s", "metrics": {"idle_seconds": 2.1126203536987305, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:11.012Z", "timestamp_ms": 1769828051012}, {"level": "INFO", "message": "207/212 (98%) | idle: 3.1s", "metrics": {"idle_seconds": 3.1324620246887207, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:12.032Z", "timestamp_ms": 1769828052032}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:54:12.032Z", "timestamp_ms": 1769828052032}, {"level": "INFO", "message": "207/212 (98%) | idle: 4.2s", "metrics": {"idle_seconds": 4.2038304805755615, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:13.103Z", "timestamp_ms": 1769828053103}, {"level": "INFO", "message": "207/212 (98%) | idle: 5.3s", "metrics": {"idle_seconds": 5.331156492233276, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:14.231Z", "timestamp_ms": 1769828054231}, {"level": "INFO", "message": "207/212 (98%) | idle: 6.4s", "metrics": {"idle_seconds": 6.356989860534668, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:15.257Z", "timestamp_ms": 1769828055257}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:54:15.257Z", "timestamp_ms": 1769828055257}, {"level": "INFO", "message": "207/212 (98%) | idle: 7.7s", "metrics": {"idle_seconds": 7.670304536819458, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:16.570Z", "timestamp_ms": 1769828056570}, {"level": "INFO", "message": "207/212 (98%) | idle: 8.7s", "metrics": {"idle_seconds": 8.695221662521362, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:17.595Z", "timestamp_ms": 1769828057595}, {"level": "INFO", "message": "207/212 (98%) | idle: 9.7s", "metrics": {"idle_seconds": 9.718806505203247, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:18.618Z", "timestamp_ms": 1769828058618}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:54:18.618Z", "timestamp_ms": 1769828058618}, {"level": "INFO", "message": "207/212 (98%) | idle: 11.1s", "metrics": {"idle_seconds": 11.060590267181396, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:19.960Z", "timestamp_ms": 1769828059960}, {"level": "INFO", "message": "207/212 (98%) | idle: 12.1s", "metrics": {"idle_seconds": 12.087874174118042, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:20.987Z", "timestamp_ms": 1769828060987}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:54:20.987Z", "timestamp_ms": 1769828060987}, {"level": "INFO", "message": "207/212 (98%) | idle: 13.4s", "metrics": {"idle_seconds": 13.440311670303345, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:22.340Z", "timestamp_ms": 1769828062340}, {"level": "INFO", "message": "207/212 (98%) | idle: 14.5s", "metrics": {"idle_seconds": 14.46120810508728, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:23.361Z", "timestamp_ms": 1769828063361}, {"level": "INFO", "message": "207/212 (98%) | idle: 15.5s", "metrics": {"idle_seconds": 15.49304723739624, "progress_pct": 97.64150943396226, "reviews_count": 207, "total_reviews": 212}, "category": "scraper", "timestamp": "2026-01-31T02:54:24.393Z", "timestamp_ms": 1769828064393}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:54:24.393Z", "timestamp_ms": 1769828064393}, {"level": "INFO", "message": "Close enough (97.6% >= 95.0%), skipping further retries", "metrics": {"pct_complete": 97.64150943396226}, "category": "scraper", "timestamp": "2026-01-31T02:54:24.442Z", "timestamp_ms": 1769828064442}, {"level": "INFO", "message": "All reviews loaded: 207", "metrics": {"total_reviews": 207, "elapsed_seconds": 46.913063764572144}, "category": "scraper", "timestamp": "2026-01-31T02:54:24.442Z", "timestamp_ms": 1769828064442}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-31T02:54:24.442Z", "timestamp_ms": 1769828064442}, {"level": "INFO", "message": "Total: 207 unique reviews (flushed: 207, in memory: 0)", "metrics": {"flushed_count": 207, "total_reviews": 207, "elapsed_seconds": 46.91309928894043, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:54:24.442Z", "timestamp_ms": 1769828064442}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:54:24.442Z", "timestamp_ms": 1769828064442}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:54:24.442Z", "timestamp_ms": 1769828064442}] 2026-01-31 03:21:50.39063 [{"count": 13, "topic": "general average"}, {"count": 13, "topic": "wine"}, {"count": 8, "topic": "scagliola"}, {"count": 8, "topic": "insurance company"}, {"count": 8, "topic": "painting"}, {"count": 7, "topic": "punctual"}, {"count": 6, "topic": "sinister"}, {"count": 6, "topic": "afternoon"}, {"count": 5, "topic": "office"}, {"count": 5, "topic": "fugue"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-31T02:53:30.320885", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N 13 Islas Plumber C. Malvavisco, 4, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.00 696 Home_Services.Plumbing.Plumber exact google 02eaebc6-8054-4714-b06e-c567e55c6a10 partial https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en \N \N 2026-01-29 00:56:15.537548 2026-01-29 00:59:33.667593 2026-01-29 00:59:57.340083 961 [{"text": "Wow!\\n\\nBest dining experience in a long time.\\nStaff so attentive and friendly.\\n\\nWe started with the guacamole which is made at the table! A show in it's self.\\n\\nMain courses were both really amazing.\\n\\nGlasses of house wine, red and white, were both delicious and very reasonably priced!\\n\\nWow, wish we lived closer we would be in on a regular basis.", "author": "Andy Smith", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GbFltcEZSVk56Wm1wTmFIQjJUbVZLWDFOV1MyYxAB", "timestamp": "4 months ago"}, {"text": "This is an \\"must visit place\\" when you are in Las Palmas. Great food and fantastic service. Just wonderful experience. Thanks....", "author": "Tom-Erik Blix", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0MGJUYzBhVkoyUTNaQlFVOWFORjh4Y1hsM2NtYxAB", "timestamp": "a month ago"}, {"text": "We always dine at this restaurant when we are staying in Las Palmas and have never been disappointed. The food is top notch with service to match. They have a very reasonably priced wine menu. Looking forward too our next visit already", "author": "jules bowen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NjRyRlRBEAE", "timestamp": "10 months ago"}, {"text": "The worst New year s dinner ever\\nThis was the worst experience ever we had in any restaurant in this world\\nLong story short, we booked months ahead, on the phone from Norway\\nMy Spanish is good, i was able to reserve a table at this restaurant, which by the way we loved before ,as a mention we been there at them at least 5 times, we are in there almost as regulars\\nWe wanted a table at 21pm that evening, but they said on the phone that they would send the menu on WhatsApp, witch they did\\nAlso they changed the time for our dinner from 21 pm to 19 30\\nIn our mind sounded ok\\nAnd then the dissatisfaction\\nWe were there at 19 30 on the New year s eve\\nWelcomed in a additional room part of them I assume, where we were taken to our table and.....\\nNo music, no atmosphere, no nothing\\nThe waiters come, one more scary an another, asking if we like something to drink\\nI have to mention that it was about a six course menu with open bar\\nI asked for some aperitif which we thought is an open bar, but the waiter sad, not now at the end\\nAnd then they come with the food,in one hour we were qicked out\\nWe couldn't eat so fast we did not finish any of the courses, and the open bar consisted in one bottle of the cheapest Rioja\\nAll this for 130 euro per person\\nSo we paid for nothing 260 euro, to be on the streets, at 20 30 pm\\nAnd we didn't get the grapes and pistachios\\nShame on you", "author": "Andreea Antal", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xNFIzWTFNblIxVDNneU15MTZVamswWnpZMlNuYxAB", "timestamp": "3 weeks ago"}, {"text": "Absolutely amazing food! Possibly the best steak I’ve ever had, I wondered why they hadn’t given me a steak knife until I cut through it and realised it was like cutting through butter. The salad was the best salad I’ve ever had too. The service is friendly and efficient and not over bearing. 10/10 all round.", "author": "Hannah Ramrachia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WVFpuSnBPVmhGYWtWMlkwSjZUa0pXY2pGbVdFRRAB", "timestamp": "4 weeks ago"}, {"text": "Restaurant with a great selection of wines and very skilled and friendly waiters. The pork was to die for and also most other dishes were delicious and generous. Only the fish was a bit overcooked and dry, but everything else was amazing. I'll definitely return!", "author": "Nelly", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNTdQVkd3EAE", "timestamp": "3 years ago"}, {"text": "The food was ok. Both myself and my husband ordered fillet steaks, mine looked and tasted lovely but his looked old, like it had been sitting in the fridge already sliced since days prior. The chips and their house dessert was lovely. Be warned they charge you for the bread they bring to the table even though you didn’t order it", "author": "J S", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2b29DdzdBRRAB", "timestamp": "a year ago"}, {"text": "Delicious steak and pork rib,the fresh warm goats cheese salad to start was delicious and chopped up and served at the table. The warm baked cheesecake with cherry ice cream exceeded expectations- highly recommend", "author": "Suzach", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvNG9HUi1RRRAB", "timestamp": "9 months ago"}, {"text": "One of the best restaurants in Las Palmas, we had a pleasure that owner was serving us since we were first guests. He is really passionate about food and wine, can probably talk about it for hours. What I liked was that he recommended dishes according to their strength and flavours. One the best gyoza I've had in my life! Octopus was also very good and tender, fish was excellent, maybe a bit too salty sauce for my taste but it's just a matter of taste. Also, try goat cheese prawns! What a sensational flavours 👌 I left good tip there and I will come back asap", "author": "Jacek Obral", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURod2ZhaFpBEAE", "timestamp": "2 years ago"}, {"text": "A bit disappointing given it has great reviews from what I’ve read. We went on a Sunday night and it was very very quiet. No music was played which created an awkward atmosphere. Also they didn’t have any Sauvignon, so ran to the shop and grabbed a random French wine which was nothing like Sauvignon. Food was okay, I ordered the pork which the waiter recommended and it was nothing special, and perhaps the €28 price was abit steep, especially as it was only served with chips. Iberico ham was nice though, and my girlfriend enjoyed her burrata salad. Not sure I’d rush back, but perhaps the experience would’ve been better had there been more atmosphere.", "author": "Alex Jackson", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201RmJFRjRkalpYY21sa2RsOVdZWE5xY0RGd1VWRRAB", "timestamp": "4 months ago"}, {"text": "4.5 / 5\\n\\nFood is of very high quality. My medium rare steak was done right; just a wee bit colder than you'd expect.\\nStarter of tuna: very special! Mixed in front of your eyes.\\nAttention to details is superb! Even the mayo is special, with pineapple.\\n\\nNice vibe, allows for conversation.\\nDesign is clean and easy on the eyes.\\nVery inviting, especially inside!\\n\\nService: prompt, quick, attentive.\\nOne pet peeve: don't pour people's drink to their glass (regardless of water or wine). It implies you are RUSHING your customer... In a similar line of thought: allow some gaps between the dishes. They came out of the kitchen almost too fast (:", "author": "Ehud R.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWczh2UHNnRRAB", "timestamp": "2 years ago"}, {"text": "We have arrived quite late in Las Palmas and it was the only place with the kitchen open, anyway they had a special fix menu that evening, with a fix price: 50€.\\nThe food was without doubt special and of very high quality, the wine was even better than the food!\\nThe only problem was that they have given us more wine than food, at least the should have given a bit bigger quantities.\\nAnyway, the owner and the staff were very professional, recommended.", "author": "Roberto Murgia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MjktTW5RRRAB", "timestamp": "2 years ago"}, {"text": "The Rincon de Triana doesn't look like much from the outside, but don't be fooled. The food is truly amazing and the service is very friendly. We came with a group of friends (12 in total) and enjoyed a wonderful evening. Each dish is well prepared and very tasty. Portions are generous. The wine selection is also very good. Definitely worth a visit when in Las Palmas.", "author": "TA Legner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSUlFUbDZWbDlCTVdGelZrbHdiRVZVUm5wSmNuYxAB", "timestamp": "5 months ago"}, {"text": "Tasty food and kind service. croquetas de jamón were creamy. We had slow cooked ribs and they melted in the mouth. Will come back to try other dishes.", "author": "Santiago Tacoronte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwLXRfNW53RRAB", "timestamp": "2 years ago"}, {"text": "Great restaurant near the sea front, food was very good. We had the guacamole which was fresh and tasty, the Iberica ham was good and the pig leg was exceptional. The service was great and attentive. I'd highly recommend this place for dinner if you visit Gran Canaria, out best meal there by far.\\nThe only very minor downside is that they have limited non alcoholic drinks.", "author": "Ada", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtMDVhclNREAE", "timestamp": "Edited 2 years ago"}, {"text": "Staff were friendly and efficient. Restaurant was well laid out and had a smart but relaxed feel to it.\\n\\nGreat combination of flavours. I went for the octopus as a main and the carpaccio with ice cream to start which were great. Gyōzas also highly recommended. Would definitely go back if in the area.", "author": "Vik Dowlul", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpeDQtNk13EAE", "timestamp": "5 years ago"}, {"text": "Very unique and special menu, we tried different starters, mains and desserts on multiple occasions. Always excellent. Service also great with friendly staff, explaining the dishes and its origin. Absolutely recommend this place, also great value for money", "author": "Christiaan Viljoen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNieXRfZ0lBEAE", "timestamp": "a year ago"}, {"text": "Honestly one of the best restaurants we tried during our stay in Las Palmas. Food was delicious and the atmosphere is relaxed yet elegant.", "author": "Andreea Soric", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNdjhvTG5oN2JIRE1BEAE", "timestamp": "8 months ago"}, {"text": "SUPER LECKER!! Amazing place!\\nThe FRESH food is of high Quality standard! The pork rips were perfectly 48 hours cooked, so tender. Appetizer of tableside made guacamole with tortillas and fried leek, really delicious.\\nService outstanding ( Moises), authentic, friendly by heart, and so attentive.", "author": "Melitta Gress", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtbDZDYU13EAE", "timestamp": "3 years ago"}, {"text": "I should have paid attention to red flags from comments. Food was weird taste. Shrimp with cheese was dry and not wow. Gyodza was disappointment - I couldn’t understand what I am eating and taste was really bad. Rincon steak was okay but I wouldn’t call it a steak and their chef garlic sauce was like Calve from supermarket. Very big disappointment. Recommend to choose another place.", "author": "Elizaveta Privalenko", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4M1pHTXdObUprV25kVU1URTJkWFI1TFhvNFFsRRAB", "timestamp": "4 months ago"}, {"text": "We had not booked a table, it took a couple of minutes to prepare one and then the journey started.\\nFrom starter to main dish (no more space for desert unfortunately) the food was of great quality. The homemade (literally in front of you) guacamole was amazing (maybe the only comment would be to change the tortilla with tortilla chips or something more unique..). We had the local Garbazada with a twist of langostinos, really nice. A refined ensaladilla with langostinos as well and to end a piece of grilled Iberian dam just perfectly cooked.\\nWe said at the beginning that everything was to share and they had the great attention to pre serve everything divided by two!", "author": "Paolo Remogna", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiZ2RTMk1REAE", "timestamp": "a year ago"}, {"text": "Excellent food! Tried the grilled Iberian pork, paired with a nice red Ribera del Duero.\\nNothing like the tourist places by the beach", "author": "Hans Gunnarsson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OWWVXRjNRbkUzUTJsS2VIQjJSazR3VlZGT2NsRRAB", "timestamp": "2 months ago"}, {"text": "Nice staff, short waiting time, excellent food.", "author": "Reidar Biørn Michelet", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xRdGJITkxXbXRWYXpGWlRWUmlWVWRuUkc5YWRIYxAB", "timestamp": "a month ago"}, {"text": "Dont go if u want good fish !!\\n\\nI have ordered the most expensive 24€ main course Octopus and I get kind of a cold starter 😂super small portion and not heated .\\nIt was clearly not a main course !\\n\\nNot to mention the 5 times (literally ) I was asked by 2 different waiter if I want to drink .\\nIt was very annoying to have this pressure to order drink !!\\n\\nAnyways I do not recommend at all", "author": "Maria Ben", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MTlhSUFREAE", "timestamp": "a year ago"}, {"text": "Wow. The food was fresh, rich, amazing! Off menu pork medallions were perfectly cooked and tender. Appetizer of tableside made guacamole with tortillas equally delicious. And dessert was a honey soaked bread pudding with a custom-made ice cream. I’m grateful we have six more weeks here so we can keep coming back to this restaurant!", "author": "Kevin Blood", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPM09fWjVRRRAB", "timestamp": "3 years ago"}, {"text": "Delicious food! Great service! Very attentive staff! Better to book in advance! Amazing scallops, beef carpacio and, of course the signature dish of the restaurant - gyozas !!!", "author": "Viktoriya Kronos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCX0pmZjBRRRAB", "timestamp": "3 years ago"}, {"text": "Great food, friendly Service - came here twice on our one week vacation. Definitely recommended!", "author": "Markus Schering", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfMWFMM253RRAB", "timestamp": "a year ago"}, {"text": "Oh My God! Where to begin... Best meat on the island hands down, best flavours and sauces that are so rich so elegant the service and how its prepared and served is amazing. I had 2 full meals because it was so good I needed more. Deff a must when visiting.", "author": "Gene “Gino” Takooree", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURodVBpd3pBRRAB", "timestamp": "2 years ago"}, {"text": "Absolutely fantastic. Good service and fabulous food. Best food experience we’ve had in Las Palmas. Special mention gets the Carpaccio that was so different and good.", "author": "Tryggvi Torfason", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNodzlfMFNBEAE", "timestamp": "2 years ago"}, {"text": "Great place for dinner in Las Palmas. Quality of food, presentation and service is high. Our waiter explained everything, with really nice and positive attitude. Recommend to everyone who wants to escape from touristic restaurants on the beach, still being close to it.", "author": "Magda Cho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURObS1yTEpBEAE", "timestamp": "2 years ago"}, {"text": "Food was incredible. The octopus cut like butter and had the perfect balance of fat and acidity. The sirloin steak was cooked to perfection and the two sauces were a combination of flavors I'd never had before but were so delicious. Great wine list and excellent service and prices. Would eat here again in a heartbeat. Only gave four stars for atmosphere because of the lack of music and the two children seated behind us that were allowed to run rampant.", "author": "Oceana Jenkins", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvNk1tbVdBEAE", "timestamp": "9 months ago"}, {"text": "If you got there will be satisfied.", "author": "Paweł Burkiewicz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5NFVVeFZObWMyTTJwa1pFczVWbHBsUWtwdlNHYxAB", "timestamp": "2 months ago"}, {"text": "Honestly, this is the best fish I ate in the grand canaria island. I think this restaurant deserves a Michelin star for sure!", "author": "Amerah Bukhari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnOW95S0dREAE", "timestamp": "Edited 4 months ago"}, {"text": "I have been to plenty of fancy steakhouses in my life and I must say their Rincon style sirloin steak has impressed me. Very tender, flavourful and it melts in your mouth. Their house red wine is also smooth and kept at a perfect temperature. Finally I would highly advise to try the scallops.", "author": "Fernando Camara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvMkphRy13RRAB", "timestamp": "9 months ago"}, {"text": "We ate here during our recent trip to gran canaria. It was lovely! We didn't book a table and that wasn't an issue. We ordered a selection of dishes, instead of a main each, as the menu looked very tasty. I particularly enjoyed the guacamole and the scallops. Would strongly recommend if you're in the area!", "author": "Alice Glenister", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvcWNQMlB3EAE", "timestamp": "9 months ago"}, {"text": "Amazing service and food, the staff is proffesional and speaks english. We tried Seafood Paella as two people, the price meets the quality of the food which was delicious. Highly recommend!", "author": "Lukas Senkus", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNic1p1Xzl3RRAB", "timestamp": "a year ago"}, {"text": "Mixed. I went with my parents and girlfriend, and we ordered a tuna starter and fillet steaks. Booking was easy and the seating outside was spacious. The recommended local wine was excellent, and the starter was superb. However, the steak tasted old as if it had been sitting for too long.", "author": "Simon Eugen Matell", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmejl1X0dnEAE", "timestamp": "a year ago"}, {"text": "My husband and I enjoyed our dining experience at this lovely restaurant in Las Palmas. Excellent service from Jesu who made our guacamole at the table a delight to watch and it was delicious! You have to leave room for their cheesecake...it was amazing!", "author": "Monique Ternier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBc1otcl9nRRAB", "timestamp": "11 months ago"}, {"text": "This place is outstanding. I may regret sharing but they deserve it. The steak was the most tender and delicious I’ve had. Many other dishes were first class and delivered at the table by highly skilled waiting staff. They combined craft with relaxed charm, help and professionalism. So impressive in the theatre and quality of the food. Thank you caballeros. See you soon.", "author": "FKennedy & MWilliams", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbDRMT1pREAE", "timestamp": "2 years ago"}, {"text": "We were so impressed with our first meal.... that we returned 2 nights later for a repeat. .We tried several starters and entrees... all supberb! Best place to dine in Los Palmas. Compliments to the chef and staff!! Our waiter - Moises- was amazing! He was so knowledgeable about the foods and wines, and with how they were prepared . Highly recommend this place!", "author": "Roger Elliott", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqcW9mNmhnRRAB", "timestamp": "a year ago"}, {"text": "Not sure why this place has such ratings. The ambience is pretty average. We ordered beef angus and sirloin steaks and they were served with fries without any veggies. Quite chewy, nothing really special.", "author": "Ilja Bobkevic", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURnbnVMNjNRRRAB", "timestamp": "11 months ago"}, {"text": "The octopus was tasty. The ingredients fresh. Very fast and good service.", "author": "Sven “knorke” Teresniak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZX05YaGVnEAE", "timestamp": "6 years ago"}, {"text": "Not sure why this place has such ratings. The ambience is pretty average. We ordered beef angus and sirloin steaks. Quite chewy, nothing really special.", "author": "Karesnik Kyrisnik", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3MV9HbWtRRRAB", "timestamp": "10 months ago"}, {"text": "Amazing food\\nDefinitely recommend", "author": "christine samaan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIallTSnF3RRAB", "timestamp": "a year ago"}, {"text": "Everything has been at superlative, from the dishes’ spectacular serving and exemplary behaviour of los camarones, to the incredible taste made of the most inspired combinations of the best ingredients. Prices are higher than the average, but the quality of the entire experience totally justifies them. By far no. 1 restaurant in Las Palmas.", "author": "Andra Elena Petrescu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcmM2ODNBRRAB", "timestamp": "a year ago"}, {"text": "Thanks to Mario & Moises for looking after us so well last night. It was truly a dining experience! The food was absolutely superb and the choice of wines excellent. Our party of 7 all thoroughly enjoyed it. The presentation and care taken over the food was also excellent. An evening to remember, thank you.", "author": "Tim Matcham", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlbzREVXZBRRAB", "timestamp": "3 years ago"}, {"text": "Very delicious and outstanding service! Highly recommended place.", "author": "Urban Scribe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeE1taE5BEAE", "timestamp": "2 years ago"}, {"text": "Nice calm n quiet place to have good food", "author": "Suresh Jangid", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWSVEzcEtSMkpxYUVsYU4yOXlWRFZxTTNCSFNVRRAB", "timestamp": "6 months ago"}, {"text": "Such a shame. My friend told me this was a great place. The reviews mostly confirmed this. So we arrived Sunday lunchtime. \\"Is there a table\\" we asked the waiter. He looked right through us and turned round and walked back inside. We thought maybe he was stressed, hard of hearing, or both. So we figured we'd try again. About 5 minutes later another waiter arrived to clean the table. We asked again. With a hugely irritated scowl he said \\"I'm busy. You need to wait. I'm busy!\\" Such a shame as I said. A simple smile and \\"I will get to you as soon as I can\\" should have been the response. We left. They won't miss us - but hopefully some staff training won't go amiss. Sadly, I think it will!", "author": "Pierre Wilter", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNUdF8zbGhnRRAB", "timestamp": "Edited a year ago"}, {"text": "Exceptional. In every sense.\\nFood is amazing, service is great, including eventually some special attention by the very owner, who really is in tune with the experience he wants to offer to his customers.\\nPrices quite fair considering the quality you get.\\n\\nVery much a \\"must try\\" in Las Palmas", "author": "Billy Blue", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0M3YtNlRBEAE", "timestamp": "a year ago"}, {"text": "Incredible food and I would love to come back here everyday if I could! I loved how they cut up and mixed the salads for you as well - a nice touch. Loved all the food and I would fully recommend to anyone coming to visit the island. Thank you for a lovely experience!", "author": "Jo K", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROX05YUlNREAE", "timestamp": "2 years ago"}, {"text": "Was in Las Palmas for over three weeks & this was the nicest food by far. I had the tuna & the cod. Beautiful. The waitress was amazing very attentive & helpful. Five stars all round. I visited three times it was that nice.", "author": "Sonia Brady", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1MmRLUTRnRRAB", "timestamp": "2 years ago"}, {"text": "Perfect tastes! Not only the dessert but also main dishes", "author": "Tomasz Krupa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxMHRYNFNBEAE", "timestamp": "2 years ago"}, {"text": "Absolutely mind blowing food, starters and main dishes. Fried prawn with cream cheese as starter was top notch. I had grilled octopus as main, and it was delicious. We were wanting to have dessert, but we were so full (due to generous portions) - hence we gotta come back!! Service was also excellent. Recommended from someone who is picky about their food.", "author": "Thorvald Nilsen Myhre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbElhOWJBEAE", "timestamp": "4 years ago"}, {"text": "Very good value and interesting food. We came here on two occasions. The setting is reasonably informal (we reserved on both occasions but did not need to). Service is very friendly and the menu is available in English.\\n\\nParticular highlights were the pulled pork tacos (in salad) as well as the steak. The chocolate party dessert was also great (although a lot of chocolate, maybe one to share). We found the value-for-money here excellent.", "author": "Louise Adams", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5cUpEaFh3EAE", "timestamp": "5 years ago"}, {"text": "This is an amazing restaurant. The menue is creative, the taste is great and it's beautifully arranged. Service is also top par. We have been in Las Palmas for two weeks and visited a new retaurant every day. Rincon de Triana is the only one we went twice!", "author": "Arne", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMbWZickdBEAE", "timestamp": "a year ago"}, {"text": "Spanish cuisine at its best. Reinterpretation of classics in a tasteful and decently priced experience, you will impress your partner. Choose this place with no second thoughts.", "author": "Andrei Popov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdzU3RlBBEAE", "timestamp": "a year ago"}, {"text": "Vert excellent and great experience! I recommend it 100%", "author": "jihane", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKNmJEWkpREAE", "timestamp": "2 years ago"}, {"text": "We had a great experience at this restaurant. The waiters are very friendly, the food and wine were of excellent quality and many dishes were finished at the table, which made the whole dinner an exciting experience. Despite the high quality, the atmosphere is relaxed and I can fully recommend this restaurant.", "author": "Johanna Elena Kasparick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCek8zU1pBEAE", "timestamp": "3 years ago"}, {"text": "I don’t have even words to describe how good it was, we were trying every evening a new restaurant at Las Palmas but nothing was really special until we came here . Start from service and food quality even in Michelin restaurants are not so good.\\nPlease tray a black Angus carpaccio with black truffles and ice cream also prawns with goat cheese and apricot jam😋😋😋😋and list can go on….. it was my husband’s birthday and we had perfect evening.", "author": "nona m", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSdmRqaC13RRAB", "timestamp": "2 years ago"}, {"text": "Perfect experience! Exactly what we were looking for to have a really good dinner for our last evening in Gran Canaria. We had the steak and the salmon and it was delicious! Also as a starter I really recommend the aubergine with honey! Top! We will definitely come again!", "author": "laura win", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMydE83ZF9RRRAB", "timestamp": "3 years ago"}, {"text": "This is a proper restaurant. Top class service, all staff were warm, welcoming and friendly. The food was second to none in Las Palma's perhaps the whole island.\\n\\nI highly recommend the gyozas.", "author": "Luis Dina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMy1yeTRRRRAB", "timestamp": "a year ago"}, {"text": "Outstanding, I can’t believe it’s so cheap.\\n20€ for a steak that can compete with a 60€ Chateaubriand!\\nAll meals have been really awesome and you receive a show only known from MICHELIN\\nStar restaurants.", "author": "Timo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNONlotT1pBEAE", "timestamp": "2 years ago"}, {"text": "Super meal. Great service and really great venue!", "author": "Jeremy OSullivan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYek9Ld0xBEAE", "timestamp": "a year ago"}, {"text": "Rented a car with my boyfriend and drove to Las Palmas from Puerto Rico. Searched on the internet after a nice restaurant in the area and found this one and wasn’t disappointed at all! The food was absolutely amazing! We started with fried prawn with cream cheese which was absolutely delicious. After that we got fried aubergine. Didn’t quite remember what the rest was, but that one as well was amazing! As a main we got the grilled squid and beef tenderloin which was amazing as well. Super friendly service also. The waiter was super helpful and explained every course. Got a really nice vine pairing with the beef! This is a must try for everyone traveling to Las Palmas! I’ll definitely come back next time.", "author": "Truls Bakken Bye", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtbElhbjF3RRAB", "timestamp": "4 years ago"}, {"text": "This is simply the best restaurant I have ever been to! From the service to the highest food quality, the attention to detail is second to none. If you just want unbelievably delicious food, the perfect portions, and quality service you must come Rincon de Triana.", "author": "Ronald Santos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkcktUSnp3RRAB", "timestamp": "a year ago"}, {"text": "First night in Gran Canaria and it has got off to a banger foodwise! Leaving this review before even paying the bill.\\n\\nReally good food, portions are generous and won't leave you hungry.\\n\\nThough, my boo would give a 4.9 just coz parts of it were a little too salty for her.", "author": "Mr J", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtN1pPc2l3RRAB", "timestamp": "3 years ago"}, {"text": "Nice staff. Very helpful. Really good vegetarian alternatives even though the menu does not say much.", "author": "Bore Sköld", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmM28zQU9REAE", "timestamp": "a year ago"}, {"text": "We came with no big expectations and were pleasantly surprised! Everything we tried there was super delicious - soup, fish, ham, deserts... The service very friendly & fast. The best meal I’ve had on Gran Canaria! Highly recommend", "author": "Varis Vagotins-Vagulis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVN2RPMmxRRRAB", "timestamp": "6 years ago"}, {"text": "The food was very good the service was good, however the price was too high compared with the other restaurants around.", "author": "Remus Avram", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2a0piU1F3EAE", "timestamp": "Edited 6 months ago"}, {"text": "A terrible experiencia. Pulpo was very overcooked. They salted all our food before. It was uneatable, salt was burning at our lips. We complained about this, but not any respond. Beside this all the food was swimming in a lot of oíl. We left the restaurant as Quick as possible. On the bill they charge us also for bread, we didn't ask for. This must be one of the best restaurants of Las Palmas. NEVER RETURN EVER. WASTE OF MONEY and destroying our day.", "author": "Sjors van Hoogdalem", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1clpIMjlRRRAB", "timestamp": "3 years ago"}, {"text": "Everthing was delicious i can recommend you the place", "author": "george parathiro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCcWVGWjRiek5rU1dGVllYQnlRMk5JYTJWVmJHYxAB", "timestamp": "4 months ago"}, {"text": "This restaurant is worth to visit.\\nThey take the quality of their dishes seriously. You will not be disappointed.\\nI repeated and I enjoyed as the first time as well\\n\\nI will come back !!", "author": "J S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaNU1TQUJnEAE", "timestamp": "2 years ago"}, {"text": "The best octopus I had in my life. The rest of the dishes were also really sublime. Probably twice the price of neighbour restaurants, but more than well worth it!", "author": "Jakob", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGJEM2dRRRAB", "timestamp": "4 years ago"}, {"text": "The food was not that good for how much we paid. The service was very good, very friendly, but I would not go again.", "author": "Clara", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNGFfNWJBEAE", "timestamp": "a year ago"}, {"text": "Good food and excellent service.", "author": "tadej pogacar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKWGFFUnFOM280UTNOWExVOUZjbXA0ZVU0MFkzYxAB", "timestamp": "a month ago"}, {"text": "Honestly an absolutely incredible experience. The owner came out and described each part of our meal and every part was as delicious as each other - would highly recommend to anyone.", "author": "Dan Jones", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNTZqRFJREAE", "timestamp": "2 years ago"}, {"text": "Our dinner started with carpaccio swimming in olive oil and ice cream. What a disaster. It was fridge cold meat with about 1 dl olive oil and ice cream. Second starter was mussel nest. Mussels tasted old and grainy like mussels in a tin can. I almost vomited after the starter. Then it was the main. We ordered octopus and it was way too over cooked. Had to chew small piece for a minute to swallow it. Octopus was hard like rubber. We told that to the worker who didnt charge us for the dishes. We were really hungry before going to this restaurant. We felt very sick after starters and couldn’t eat anything the whole evening. What a shame it turned out this way even we are both culinarist and love to have new and creative food experiences.", "author": "Ras G", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXb3RhQ09REAE", "timestamp": "3 years ago"}, {"text": "Best restaurant on Gran Canaria! The grilled octopus was amazing and even the crocettas were so much better than all variations I ever had before. Truely an experience!", "author": "Carina Fürst", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtcklDeGdnRRAB", "timestamp": "3 years ago"}, {"text": "The food was excellent. We really enjoyed the delicious and thoughtful details of every dish. The sangria was wonderful and the employees were really attentive.", "author": "Sophie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXcG9laU53EAE", "timestamp": "3 years ago"}, {"text": "Terrible, getting ill after our lunch. Rubbery pulpo, lots of oíl and salt. We asked if we get vegatables with our Meat. No, only patato's. But we could change it for vegatables. So we did. Uneatable, salt, salt, oíl and oíl. The patato's with the pulpo were not patato's, but a handfull cold chips from a saco from the supermarket, also swimming in lots of oíl. Easy \\"cooking\\" 👎After complaining at the waiter, no answer, nothing. We've to pay for all the terrible food, even more than on the menú!!! Probebly they try this because we don't speak spanisch yet . We live here, but never come back.", "author": "Sjors van Hoogdalem", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1N2JiTjZnRRAB", "timestamp": "3 years ago"}, {"text": "We had the sirloin steak and it was very tasty fine meat. They served it almost raw and then you grilled it at the table. Nice place.", "author": "Saga Liw", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHaXAyaEN3EAE", "timestamp": "4 years ago"}, {"text": "Very attentive service. All dishes tasted very good, the steak was cooked on point. Absolute recommendation.", "author": "Felix B", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWb3Ayc0ZnEAE", "timestamp": "2 years ago"}, {"text": "Very high quality!!!! Good food nice staff the only thing that would be great is a vegetarian option. I usually don't give perfect score to restaurants without it but the quality was so high that it is forgiven!!!!!", "author": "Julien Denos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxMmJUYUJBEAE", "timestamp": "4 years ago"}, {"text": "Great Night. Thank you.", "author": "Christos machlianis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqaXMyN0pBEAE", "timestamp": "a year ago"}, {"text": "We stumbled upon this place for dinner and it was honestly the most amazing food and drink! And great atmosphere ✨ highly recommend", "author": "Dagmara Bandura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsZ0t1eDFRRRAB", "timestamp": "2 years ago"}, {"text": "Amazing food with amazing service. Cant recommend this place enough 👌🏼", "author": "Brian Mc Namara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvd2N6cnZ3RRAB", "timestamp": "9 months ago"}, {"text": "Highly recommended restaurant **the scallop**", "author": "Sacide Karadaşlı", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncDktWXRBRRAB", "timestamp": "11 months ago"}, {"text": "Attentive and knowledgable staff, with good quality food with a bit of theatre, flamed and mixed at the table. Nice wine selection.", "author": "S McKie", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoc0wzbTZ3RRAB", "timestamp": "2 years ago"}, {"text": "Great food, dishes are sligtly less usual, and the overall quality is great. Highly recommended.", "author": "Alex Malgaroli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4dE1XaXhnRRAB", "timestamp": "2 years ago"}, {"text": "Amazing service, food and wine selection. Perfecto!", "author": "Sarah Hunter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfb2F2Tkh3EAE", "timestamp": "a year ago"}, {"text": "The food was fantastic and adventurous. The wine was amazing. The service even better.", "author": "SunnyNicky", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlOVpILXh3RRAB", "timestamp": "3 years ago"}, {"text": "Great food with even better service, best food i have eaten in gran canaria. Price / quality was even better then expected :)", "author": "Aziz Daluiso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlMWQtekJBEAE", "timestamp": "3 years ago"}, {"text": "Just had lunch here for the first time ,came highly recommended ,but totally spoiled by the noise y bad behavior of a child ,I’m surprised the restaurant and the parents allowed it ,I’m sure I wasn’t the only one who had their lunch ruined", "author": "tony byrne", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPaTdUSy1nRRAB", "timestamp": "3 years ago"}, {"text": "Extremely good restaurant, amazing food. Octopus & salad in particular.", "author": "Albert Triganon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6dGNiak5BEAE", "timestamp": "a year ago"}, {"text": "Really delicious, high-quality menu, great wines and super friendly staff.", "author": "Assunta Walderdorff", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXOV9uWWNnEAE", "timestamp": "3 years ago"}, {"text": "Fantastic food, great wine and good service! Definetly worth a visit!", "author": "Robin Wied", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoMk1peVd3EAE", "timestamp": "2 years ago"}, {"text": "The food is delicious (interesting twists) and the service is friendly and great! Definitely recommend!", "author": "Yuliya Zemlytska", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMFpxMUxnEAE", "timestamp": "4 years ago"}, {"text": "Didn’t have chance to leave a tip, I’m still haunted by this all these years later. I’m sorry to this fine establishment. Too much chocolate in the flowerpot", "author": "Sanya Samad", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtb0pDcHR3RRAB", "timestamp": "3 years ago"}, {"text": "We only had drinks however they had a seection of different Bear's service was fine plus a nice location.", "author": "Mainly Spain", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtazZiNjZRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "There must be a magician working in the kitchen , everything is different from your expectations", "author": "Tamas Mayer", "rating": 5, "source": "dom", "timestamp": "9 months ago"}, {"text": "Great service. Excellent food. Very impressed and lived up to the reviews", "author": "Gerard O'Reilly", "rating": 5, "source": "dom", "timestamp": "5 years ago"}, {"text": "Fòod was 1st class was served by John great waiter highly recommend", "author": "John Mortimer (Kelpieman)", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Great food and perfect service. One of the best in Las Palmas", "author": "Giuseppe Perna", "rating": 5, "source": "dom", "timestamp": "4 years ago"}, {"text": "Restaurant was nice but unfortunately I got food poisoning from the sea food.", "author": "Laura Mitchell", "rating": 1, "source": "dom", "timestamp": "2 years ago"}, {"text": "Excellent restaurant, food is delicious and the staff is friendly.", "author": "Jean-Denis Zafar", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Perfect place to eat 😋\\n\\nStrongly recommended 👌 …", "author": "Turk Telekom", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Great restaurant. Well worth a visit.", "author": "Ger kelleher", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Fabulous food. Variety, excellent taste.", "author": "Diana Spiczak-Brzezińska", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Great service, nice atmosphere & great food.", "author": "Trav eller", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Absolutely delicious octopus leg!", "author": "Paula Petcu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmd2JfM1VBEAE", "timestamp": "a year ago"}, {"text": "Great food and very friendly staff. Must try!", "author": "Cristian Ormeno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4cmZYd3VnRRAB", "timestamp": "Edited 5 years ago"}, {"text": "One of the best, perhaps the best on playa de las canteras.", "author": "Sophie Scheepers", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNseXNYYmdBRRAB", "timestamp": "2 years ago"}, {"text": "Great place to eat and very delicious", "author": "Erman Karaca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzcnVQYUhBEAE", "timestamp": "a year ago"}, {"text": "The iberico 5J, outstanding!\\nAbsolutely wonderful.", "author": "Göran Johanson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNscmI3aklREAE", "timestamp": "2 years ago"}, {"text": "Damn good restaurant, worth to visit", "author": "Ari Järves", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaVl1cjZ3RRAB", "timestamp": "3 years ago"}, {"text": "Perfect service and very tasty food!", "author": "Tami Brink", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdS1pbzRBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent food, friendly service!", "author": "Rita Ahonen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNW9yY0FnEAE", "timestamp": "6 years ago"}, {"text": "Fantastic food and very good service", "author": "Don Dubbsen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXeUtXd1NREAE", "timestamp": "3 years ago"}, {"text": "Good food, stock service", "author": "Dávid Simon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtOXI2aXV3RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Amazing food!", "author": "Marcos Oliveira", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIbXBDWGtBRRAB", "timestamp": "a year ago"}, {"text": "Don’t miss this wonderful place!", "author": "Aliaksei Vladyka", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPb05Xc2Z3EAE", "timestamp": "3 years ago"}, {"text": "Amazing food..", "author": "Lars Jørgen Nilsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXd0txdnpBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent as always", "author": "Bhikhu Vadera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXeXQ2YUN3EAE", "timestamp": "3 years ago"}, {"text": "Excellent !", "author": "Del Gui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5NzRUV2RnEAE", "timestamp": "a year ago"}, {"text": "Rincón de Triana situé à deux pas de la plage. Ici, pas de simples amuse-gueules, mais des plats de grande qualite, poulpe, gyoza porc cuit à basse\\nLa cuisine est d'une qualité exceptionnelle et absolument délicieuse.\\n\\nL'excellente carte des vins et le service attentionné et chaleureux, avec un personnel toujours prêt à donner des conseils et explications.\\nEn résumé, une adresse incontournable !", "author": "Régis Routier", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CMGMxQnNMVEpVY1ZKNk1GOVNkVUpYTm5aUlZXYxAB", "timestamp": "a week ago"}, {"text": "Von außen wirkt das Restaurant klein und eher unscheinbar – aber genau das macht den Überraschungseffekt umso größer. Innen erwartet einen exzellenter Service und eine Küche auf richtig hohem Niveau.\\n\\nSowohl die Vorspeisen als auch die Hauptgerichte und ganz besonders die Nachspeisen waren durchweg ein absoluter Volltreffer. Man merkt sofort, dass hier mit Anspruch, Können und Liebe zum Detail gearbeitet wird.\\n\\nIch habe mich für die Empfehlung des Hauses, den getrüffelten Fisch, entschieden – und das war eine hervorragende Wahl. Perfekt gegart, großartig abgeschmeckt, absolut stimmig. Ein echtes Highlight war zudem, dass einige Speisen direkt am Tisch mit dem Brenner den letzten Schliff bekommen haben – nicht nur optisch beeindruckend, sondern auch geschmacklich sinnvoll eingesetzt.", "author": "Jens Schneider", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tocmJuTkdXVTB3WVhoWE9VRlFjME5XTVVkdk1VRRAB", "timestamp": "4 weeks ago"}, {"text": "Destacable los postres (sobre todo \\"la fiesta de chocolate\\"). Carne muy sabrosa, cachopo bastante rico. Precios bastante caros y local muy dejado. Necesita el local de forma urgente una pequeña reforma, muchas paredes con pintura desgastada, muchas manchas, el baño tenia hasta la tapa rota de la vasija.", "author": "BR", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Gd1gzQlVjV1p5YjJOS1EyOWpabmhuTFRCcWMwRRAB", "timestamp": "a week ago"}, {"text": "Loistava paikka, jonne saimme pöydän ilman varausta. Erittäin hyvä ruoka, loistavat viinit, palvelukin ensiluokkaista. Yksi reissun parhaista ravintoloista.", "author": "Sami Garam", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Kc1drbHFNM1ZVWlY5QlFVOTVTR0o0UzFwVFlYYxAB", "timestamp": "a week ago"}, {"text": "Una absoluta vergüenza.\\n\\nFui con mis amigos y comimos un menú de 50 euros. 50 euros. Decir que nos sacaron jamón, huevos estrellados, tartar de salmón, gyozas... todo muy bien sobre el papel, pero la realidad es que se trataba de una estafa dada la cantidad de comida que nos dieron por 50 euros, repito, 50 euros.\\nDejo fotos para dar fe de lo que hablo, para que la gente no caiga en la misma estafa.\\nRación de bacalao, del tamaño de un pincho. Recalcar que este fue el plato principal del menú de 50 euros y me traen un miserable pincho.\\nPostre: tarta de chocolate. La porción y un corcho al lado para que evalúen ustedes mismos el tamaño ridículo del trozo que nos sirvieron. Indignante, cuanto menos.\\nUna absoluta falta de vergüenza.\\nNo volveré.", "author": "Pepelvis", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRMlpGaEtiV2d3VW1oNmVscGhYMlpoU1U4dGRFRRAB", "timestamp": "4 weeks ago"}, {"text": "Io e la mia ragazza abbiamo cenato qui invigliati dalle buone recensioni e non siamo rimasti delusi.\\nCibo delizioso, servizio eccellente e ottima carta dei vini.\\nConsiglio vivamente i ravioli di maiale e la guancetta brasata.\\nTorneremo sicuramente, uno dei migliori locali di Las Palmas!", "author": "Alessio Tonin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201SVVITmZjMjFQVFRsTVoyMU5PVFpxWm5OMlVWRRAB", "timestamp": "6 months ago"}, {"text": "Buen restaurante, donde el servicio se sintió muy familiar y a pesar de que no fue un servicio excelente pensamos que cumplió las expectativas, todas las comidas estuvieron muy ricas pero sin dudarlo recomendamos la tarta de queso casera.", "author": "Josue leonardo Fernandez Dominguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KVFkxZEdVRFZQYlVneFpUTmxObHBhTTBOaGIwRRAB", "timestamp": "a month ago"}, {"text": "Ein scheinbar unscheinbares Restaurant, ein paar Schritte von der Promenade entfernt. Das Essen dort ist ein Traum. Dazu freundliche Kelner und ein uriges Ambiente. Wir waren schon paar Mal da und kommen gerne wieder.", "author": "Izabela Jobda", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSSk0ySTNlVFE0WTNScmJXWmpOSHBoWDIxVWFsRRAB", "timestamp": "a week ago"}, {"text": "Nos encantó todo lo que probamos: mezclas de ingredientes curiosas pero muy bien combinadas, especialmente los platos del chef. La única pega fue la espera entre plato y plato, ya que íbamos compartiendo y a veces se nos hizo larga la espera.", "author": "Carmen Chen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUFlteDRNa2hOZUdKUFprUkJMVWxNTkVkRlVYYxAB", "timestamp": "5 months ago"}, {"text": "Mmmm, cena poco convincente… Avendo letto così tante esperienze positive, ci aspettavamo molto di più…\\nIo ho preso uno dei pochi piatti vegetariani, un rotolo di melanzane e formaggio che era abbastanza buono, anche se forse c’era troppa salsa al miele che ha reso il piatto un po’ stucchevole.\\nIl mio compagno ha preso la tartare di salmone con spuma al mango che gli è piaciuta (anche se aveva molto aglio/cipolla), mentre il maialino arrosto bocciatissimo. Aveva un gusto amaro e anche le patate di contorno non erano niente di che.\\nIn generale cena mediocre, peccato.\\nI camerieri sono simpatici e disponibili.", "author": "Elena Rollini", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOS05XMWxMVWh4VGt0UFUxWktiMk5yYTNwak1YYxAB", "timestamp": "a month ago"}, {"text": "Ein besonders gemütliches Restaurant mit einem hervorragenden Service - danke an Jesus (und das Team), der uns sehr freundlich, kompetent und dezent den ganzen Abend begleitet hat. Das Essen ist von sehr guter Qualität- wir hatten u.a. die Schweinebäckchen in einer Rotweinreduktion und die frittierten Sardinen mit Pommesfrites. Knusprige fein geschnittene Pommes findet man auf der Insel selten- hier gibt es sie. Das Fleisch war butterweich, die Soße geschmackvoll, die Süsskartoffeln dazu vielleicht etwas zu weich. Wer gut spanisch Essen gehen möchte und wem das Ambiente wichtig ist, ist hier gut aufgehoben.", "author": "Nathalie Schröder-Langbehn", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3XzRIZEVBEAE", "timestamp": "10 months ago"}, {"text": "Für mich war es gestern ein besonders Erlebnis dieses Restaurant zu besuchen, und es war sehr amüsant den als wir ins Restaurant kamen wurden wir von anderen Gösten schon hingewiesen das es sehr lecker ist. Und ich kann sagen, das war das beste Steak was ich bisher in Europa gegessen haben unglaubliches Fleisch perfekte Maserung und die Vorspeise Tunfisch Salat war ungewöhnlich lecker - es war insgesamt traumhaft das Essen.", "author": "Peter Ampfl", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNElHck5BEAE", "timestamp": "9 months ago"}, {"text": "Llegamos aquí en el último día de nuestro viaje. Y bendito momento. Calidad impresionante, el servicio impecable nos atendieron super rápido y con mucho cariño y detalle. Y la comida...puff indescriptible", "author": "cintia mena brenes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRdGNXRjZOMEpZWkZWWVNUQjFibEpIV0hWcU9WRRAB", "timestamp": "5 months ago"}, {"text": "Gran descubrimiento. Una carta muy variada y además con platos fuera de carta que van variando según temporada/mercado. El servicio fantástico, un trato muy personal y siempre pendiente de nosotros. Nos atendió Huber, además del dueño o maitre, y fue todo perfecto.\\nPor sacar un pero, la cerveza de barril es cruzcampo, pero sale bien tirada y fresquita.", "author": "alvaro gonzalez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201U05HbzBWM3BrVUVGclEzZ3pVRGxsT1d4dVlVRRAB", "timestamp": "a month ago"}, {"text": "Buen servicio y comida excelente. Nos gustó todo. Pedimos carpaccio de Black angus, bife de Black angus, tartar de salmón y de fuera de carta cherne gratinado a la trufa. De postre pedimos la torrija. Volveré.", "author": "Maria Jose Siesto Campaña", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOa0xUUmpkelZZTkRSbGMxWjFTakF3YTI5Q01WRRAB", "timestamp": "5 months ago"}, {"text": "Servicio excelente, carta cuidada y sobre todo creativa. Pedimos el guacamole, las zamburiñas que para mí fue lo mejor y las gyozas.\\nLa única crítica constructiva que tengo es que el acompañamiento del guacamole podría ser totopos originales en lugar de la fajita de trigo sin freír.\\nSin duda un indispensable si estás por la zona y te gusta comer bien!", "author": "Marta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCV1pVUTRObFZIVjJoblVrMWhhMVl5YzFGTVptYxAB", "timestamp": "6 months ago"}, {"text": "Reservamos para la cena de empresa. Los entrantes no estaban mal, pero plato principal (eligimos solomillo) en lugar de papas asadas cambiaron a fritos (bastante duros) sin avisarnos y sirvieron el plato casi frío, el solomillo tampoco no estaba a la altura. la presentación de comida fue un poco floja. Los postres muy pequeños raciones y de sabor diría 5/10. En general no recomendaría este lugar para eventos grandes, tal vez al dia normal (sin tanta ocupación del lugar como tenían) servicio es mas agradable y la comida también.", "author": "Dmitrij Dan", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WRU1sOXlaVUZFZW5kcWVGVnZXVzlaVUZSVlUwRRAB", "timestamp": "a month ago"}, {"text": "Tuvimos una cena familiar.\\nDe los pocos restaurantes que visten las mesas con mantel, últimamente ya no ponen ni individuales!!\\nEl servicio estuvo muy atento, pendientes de que todo fuera de nuestro agrado.\\nComo siempre, la comida exquisita. Platos originales con ingredientes de calidad. Además ponen buenas raciones.\\nBuena selección de vinos.", "author": "Matilde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUeHJfOEp3EAE", "timestamp": "Edited 6 months ago"}, {"text": "Un trato de 10 y la cocina al nivel del servicio ofrecido. En mi TOP están las gyozas de lacón, ensaladilla Rusa y lomo alto.", "author": "Rubén J. F.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKVFUzUk5MVGswVG1STVFVRm1iR3hSWmpkYVpHYxAB", "timestamp": "4 months ago"}, {"text": "Ya fuimos varias veces a cenar ally.\\nPero la última vez no quedamos decepcionado. Primero por el servicio de los camareros . Falta de atención y segundo nos dimos cuentas que lo platos que salía no eran iguales. Pedimos huevos rotos y tenía 4 lonchas de jamón.\\nLa mesas al lado mismo plato tenias mas jamón que nosotros. Más pedimos mas platos y también pasó lo mismo. Parece que hay distinción de clientela. Pero al final los platos tiene los mismos precios par todos. Almeno esperó.", "author": "Daniel", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sclgwMTJha2hpUVd0YWFXNXhkbnBwUTBadFFtYxAB", "timestamp": "2 months ago"}, {"text": "Comida excelente y diferente, personal muy atento y buena calidad precio. Fuimos a cenar 4 personas y con vino sale aprox 40€ por cabeza.\\nPedimos anchoas y chupachups de gambones fuera de carta, y también probamos jamón ibérico, zamburiñas, pan bao de cochino negro, gyozas y un carpaccio de black angus, este último ha sido el plato estrella para nosotros, la mezcla de sabores nos ha dejado alucinando, es espectacular así que no dejen de pedirlo! Repetiremos encantados!", "author": "Sara Montalbán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cHI2eS1RRRAB", "timestamp": "a year ago"}, {"text": "Exquisita comida. Calidad precio perfecto. Pedimos ensalada de ventresca, fusión de sabores excelentes, pan bao de pulpo, zamburiñas, repetimos este plato ya que era una explosión súper placentera en nuestros paladares, por último salmón y carrilleras.\\nEl trato de los camareros explendido. Sin duda alguna merece la pena y si tenemos oportunidad, volveremos.\\n40€ cabeza (sin vino) somos de buen comer y salimos satisfechos.", "author": "Iraide Esteban", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMcm9fSXRRRRAB", "timestamp": "a year ago"}, {"text": "La verdad q todo muy bueno. Me ha encantado. El trato muy bueno. Gracias y volveré a repetir.", "author": "Felipe Rafael Barrientos Sanchez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5ZlRWOUthbmxYY2pRNE0zZ3plRmxIYld4cldYYxAB", "timestamp": "5 months ago"}, {"text": "Al meter no le rentaba dar mesa a una persona sola, y en vez en media hora de espera estuve una hora y cuarto cuando tenía dos mesas libres.\\nMe quería dar puerta cuanto antes para tener mi mesa libre y en vez de asesorarme cuando le iba a pedir un plato,casi me obliga a pedir los taquitos de merluza sin espinas ( que sí las tenían, y que no era más que un filete, me atrevería a decir que descongelado, cortado en dados y rebozado ) que nada más sentarme me intento vender, sin haber visto la carta previamente.\\nDicho filete de pescado partido en trozos me cobraron como si hubiera pedido la merluza o pescadilla entera 25€.\\nPorque no hay menos estrellas...\\nHaber si aprenden que uno más uno suma...", "author": "Olivia Rincón García", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxNFdrWm1jMEpYTjBWa1dWVlNWM3BVVm5wQ1UzYxAB", "timestamp": "2 months ago"}, {"text": "Recalcar que será una crítica constructiva ya que el grupo que fuimos anoche a cenar solemos darnos un capricho de vez en cuando en dicho restaurante, el cuál es muy recomendable.\\nEmpiezo a relatar la aventura ... llamé para reservar el jueves una mesa para 7 personas cena, sábado 8 nov. Ok\\nLlegamos al lugar nos dicen que nos ponen en un anexo a 50 metros del restaurante habitual ya que no hay mesas disponibles. Creo que eso debería habérmelo dicho cuando hago la reserva pero bueno accedimos a cenar en dicho lugar.\\nLa sorpresa llega cuando vemos que toda la comida la traen del restaurante al anexo un camarero por medio de la calle unos 50 m ...\\nEl gerente ni el camarero nos ofrecen nada fuera de carta como suele ser habitual en el lugar la comida llega media fría y nos sentimos totalmente solos y abandonados en dicho lugar.\\nLa tardanza entre entrantes, primer plato demasiado por no decir que ni nos ofrecieron postres, esperamos 30 minutos desde que terminamos el plato principal pero nada ...\\nEntramos a cenar a las 20.30 y salimos a 11:40 ...\\nLa verdad nos fuimos bastantes descontentos ya que siempre hemos almorzado o cenado estupendamente.\\nMuchas gracias\\nSaludos cordiales", "author": "MARIO ALEXIS NARANJO HENRÍQUEZ", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsWFV6UjJhSE16TTFONVUyWkViRWQxU1ZCSlUzYxAB", "timestamp": "2 months ago"}, {"text": "Lugar exquisito tanto en la comida como el trato del personal. No podría quedarme con uno de los platos desde el tarta de salmón como los huevos rotos con carabineros que nos pedimos fuera de carta.\\nEl camarero que nos atendió de 10 nos recomendó muy bien y siempre muy atento. Felicidades por lo que están construyendo. Volveremos m.", "author": "dalia ortiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bExfbkJnEAE", "timestamp": "a year ago"}, {"text": "Restaurante al que acudimos recomendados con amigos. Resumen: ESPECTACULAR. El guacamole preparado en nuestra mesa, zamburiñas flambeadas también a nuestro lado que estaban riquísimas. Un tartar de atún que no puedes dejar de pedirlo 🙏. En fin, podría seguir hablando del pan bao, guiozas, etc pero es que todo está buenísimo. La atención de los camareros súper profesional y el precio muy muy correcto para lo que se come. Es sin lugar a dudas un restaurante que repetiré siempre que regrese a la isla. ¡Sigan así!", "author": "Néstor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMbzZXZGFnEAE", "timestamp": "a year ago"}, {"text": "Excelente restaurante, la comida es espectacular y el trato del personal jna maravilla. Uno de los mejores restaurante en Las Palmas de Gran Canaria. Cuentan con una carta diferente con un toque personal pero de un gusto exquisito. El trato del personal es inmejorable. Toda una experiencia culinaria. Altamente recomendado.", "author": "Lorena Robaina Calderín", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oamJqbDRiMUowTXpneVlYRjROVWRsYlVkVlltYxAB", "timestamp": "3 weeks ago"}, {"text": "Atención,comida y ambiente impecable. Muy agradable, poco ruido, estás al lado del paseo de la playa donde puedes comer en sitio discreto, íntimo y agradable. Mantel y servilletas de tela que parece que se nos olvida. Muy muy recomendable relación calidad precio. Mi felicitación a quienes nos atendieron y al a cocina, muy rico todo. No suelo valorar restaurantes. Espero que esto no haga que suba los precios 😉. Si vuelvo a la isla, espero poder permitirme el poder ir de nuevo. :)", "author": "Roberto Hermoso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOX19PNG5nRRAB", "timestamp": "2 years ago"}, {"text": "Restaurante donde nos atendió un camarero muy amable y que nos ayudó a elegir nuestros platos. Probamos de primero las dos gyozas, no sabría con cuál quedarme...\\nDe segundo yo me decanté por el cerdo 5J, sonaba bien, pero es que sabía aún mejor.\\nSin duda un sitio muy recomendable.", "author": "Ernesto José González Veiga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkbnA2SlpnEAE", "timestamp": "a year ago"}, {"text": "Fantastico! Cibo di ottima qualità, vini molto buoni, rapporto qualità/ prezzo è ottimo! La professionalità e la gentilezza dello chef e dei camerieri ottima. Consiglio di provare il famoso Guacamole che è preparato è servito al momento! Lo consiglio a tutti e noi sicuramente ci ritorneremo!", "author": "Maryna Sudarikova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtaU56NERnEAE", "timestamp": "3 years ago"}, {"text": "Wir waren heute mit 8 Personen hier zum Lunch. Das Essen war fantastisch, ebenso der Service und der Wein, zu empfehlen der Roséwein, richtig gut. Zum Abschluss haben wir uns ein leckeres Dessert gegönnt, lecker! Das war es Wert, wir kommen definitiv wieder.\\nMan sollte vorher reservieren :)", "author": "An LL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQbl82MmF3EAE", "timestamp": "a year ago"}, {"text": "Una vez más no nos defrauda. Sigue manteniendo el nivel desde el primer dia. Editado: Volvimos al restaurante con la familia y de nuevo, una experiencia maravillosa. Nos dejamos aconsejar y pedimos tacos de pulpo y cochino negro, huevos estrellados con jamón recién cortado, zamburiñas y una carne muy rica. Los postres al nivel de la comida y la atención como siempre de 10. Volveremos seguro", "author": "Berto Tabares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwbmNiVmdRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Experiencia exquisita en su restaurante, la comida con unos contrastes de sabores brutales y sus camareros muy amables, explicando cada plato y con una atención muy rápida y sin faltar ningún detalle. Repetiremos, pedimos pan bao de cochino negro canario muy sabroso, gyosas con un sabor brutal, zamburiñas cocinadas con una salsa de ajo espectacular que la fundían en directo, piruletas de langostino crujiente con queso de cabra muy buenas, cangrejo rebozado con huevo y pimientos una delicia. Para terminar un postre de tarta de queso no llegaba a ser cremosa. Acompañado con dos cañas y una botella de vino Rubicon de Lanzarote, nos quedó muchos platos por probar , volveremos.", "author": "Yurena Morales Verona", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwMV8tbkRnEAE", "timestamp": "2 years ago"}, {"text": "Ubicación buena. Trato del personal excelente. Producto de calidad. Cantidad de media a poca pero con muy buen sabor. Los platos un domingo para almorzar, salían lentos para nuestro gusto, las copas de vinos se consumían prueba de ello. Para mi gusto y por las cantidades, diría q mejor les cenar. Mucha suerte para este negocio que lo merece", "author": "Edu Padrón", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCazd2VU53EAE", "timestamp": "3 years ago"}, {"text": "Cada plato iba in crescendo. De entrantes, ensaladilla qué nos emplataron con delicadeza, unas Gyozas y garbanzada, acompañado de un buen vino.\\nPara culminar un cachopo que estaba riquísimo. De postre fiesta de chocolate.\\nEl servicio profesional y buen ambiente.\\nNos mimaron mucho.", "author": "DJ L’ARTIGAS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfd3Z1QnZnRRAB", "timestamp": "a year ago"}, {"text": "Buen restaurante, situado cerca del paseo de las canteras con un género magnífico. La comida ha superado la expectativa con una muy buena fusión en los platos y una sensación de explosión de sabores. El equipo completo del restaurante han sido unos profesionales. Nos hemos sentido muy a gusto.\\n\\nCumpliendo en todo momento las medidas covid.", "author": "Belen Benitez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeUxLaTlnRRAB", "timestamp": "3 years ago"}, {"text": "Sencillamente el mejor restaurante que he visitado en mi estancia en Gran Canaria. Os voy a explicar en la medida de lo posible la grata experiencia que nos llevamos mi pareja y yo en este brillante lugar Gastronómico. En el Accueil nos recibió el chef, el cual nos acompañó a la mesa, gesto desde mi parecer muy apreciable. Seguidamente nos atendió Moisés un afable profesional del servicio en sala, nos explicó las sugestiones que había fuera de la carta y sin duda hizo de nuestra experiencia muy enriquecedora. Hablaré de los deliciosos manjares que me lleve a la boca, en primer lugar pedimos un tartar de salmón con un marinado especial del chef acompañado de una espuma de mango y cebolla fresca, una mezcla de sabores que siguiendo las instrucciones de Moisés deleitamos sin duda alguna. Seguimos con un mix de gyozas de cangrejo desmenuzado con soja y de morcón ibérico, setas y crema de kimichi ahumada y terminamos con un cachopo rebozado com panko que simplemente increíble. De postre una Torroja casera y una tarta de queso también casera con un sorbete de mango que nos termino de hacer explotar la cabeza. Hizo varios acabados de platos a la vista del cliente cosa que hoy en día solo se ve en los mejores establecimientos de restauración. La experiencia fue magnífica, les ánimo a que sigan ellos y su equipo ofreciendo este tipo de experiencias gastronómicas a sus clientes porque de verdad se nota que aman su profesión y eso es maravilloso.\\nA continuación adjunto alguna foto de los platos servidos.", "author": "Igor Rosell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaX00zbDhBRRAB", "timestamp": "2 years ago"}, {"text": "Espectacular descubrimiento, y las siguientes visitas han mantenido el nivel.\\nPlatos variados y muy elaborados, al que le guste el vino lo tendrá difícil para elegir entre tanta variedad. El jamón ibérico espectacular. El servicio al nivel del restaurante.\\nUn acierto y felicitar a la dirección.", "author": "yonathan García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xRek9GOW1OMGRKVGtoUlduTktSbmhPVTIxNGFGRRAB", "timestamp": "3 months ago"}, {"text": "Espectacular, para repetir sin dudarlo. Fuimos a comer siguiendo las reseñas de Google, y la verdad que ha sido el restaurante en el que mejor hemos comido de toda la isla, acierto absoluto. Nos explicaron cada plato. Para repetir: las zamburiñas, la ensalada de burrata con fresas, el solomillo y el hojaldre con plátano 🤤 Muchas gracias!", "author": "Andrea Urbano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOWlJFZEtNVnAyWXpNMmVIUmhVR1JKUVZwVFpsRRAB", "timestamp": "3 months ago"}, {"text": "Fuimos a comer 4 personas y pedimos: croquetas variadas, pan bao con carne de cochino negro y un cachopo para los 4. Muy rica toda la comida y excelente calidad precio. Trato del servicio muy bueno. Totalmente recomendable, repetiremos seguro.", "author": "Alejandro Bolaños Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNeWlrOEd1MXRfUFR3EAE", "timestamp": "8 months ago"}, {"text": "Ich besuche das Restaurant seit mehreren Jahren und es ist einfach perfekt!\\nUmbedingt vorher reservieren da kleines Lokal und sehr beliebt, ein muss, wenn man in las palmas ist!\\n50 Meter von der Strandpromenade gibt parkhäuser in der nähe", "author": "Dani Berardi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRenMzb3RRRRAB", "timestamp": "10 months ago"}, {"text": "Me animaron a visitar este restaurante las magnificas reseñas que leí en Internet, porque no conozco demasiado la zona, y con muchas ganas de probar su cocina, pero mi experiencia no fue la esperada. Pese a que decidimos pedir de la carta, a mi esposa le ofrecieron fuera de carta un pescado de la zona (cogote de cherne), que aceptó pensando que sería el plato de la noche, pero acabó siendo el plato que nos dio la noche: llegó entero, sin ningún tipo de salsa ni aliño, simplemente cocido y como sola guarnición un puñado de patatas fritas de bolsa puestas a un lado. Como el pescado sobresalía del plato, el camarero le preguntó si lo limpiaba, obviamente dijimos que si y se lo dejó deshecho totalmente en dos platos. El resultado, un plato que debía ser una exquisitez convertido en algo decepcionante teniendo en cuenta que costaba 27,95€. El resto de platos que pedimos, el tartar de salmón, las costillas de Nakama y el cerdo ibérico arreglaron un poco, sólo un poco, la noche. La atención recibida fue muy regular en general, en un ambiente tenso y poco agradable, aunque destaco que solo uno de los camareros, un muchacho joven que nos atendió al final, fue educado y atento en el trato. El disgusto fue tal que preferimos no pedir ni postre. Ojalá puedan mejorar tanto la calidad de los platos como el servicio, porque el lugar tiene potencial y una buena ubicación. Por supuesto buscaremos mejores alternativas", "author": "Manuel Barrachina", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGbGJWZFFXSE16WkVGSmJrMVpOMXAyY1ZGWVQwRRAB", "timestamp": "2 months ago"}, {"text": "02/02/2024: Indispensable, autóctono , no turístico…y toda una sorpresa! A 50m de la Playa de Las Canteras local modesto pero con servicio y material prima muy por encima de los estándares de la zona. Tengo la impresión que van a por un reconocimiento Bid Gourmand o una Estrella Michelin. Lo recomiendo y seguro que vuelvo. (Imágenes: Jamón cortado a cuchillo, huevos rotos con carabineros, gyozas de morcón, steak tartar al gusto, torrija) Un gran detalle el de cantar los platos fuera de carta también mencionando el precio, muchas gracias!!", "author": "Jaime Pulido", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0dV9iOThRRRAB", "timestamp": "a year ago"}, {"text": "Absolut 5 Sterne!!! (...auch gerne mehr wenn's möglich wäre!)\\nDie Wahl auf dieses Restaurant traf ich nach einer der vorherigen Rezensionen, die war sehr viel versprechend, und es war auch so!\\nWir sind spontan, an unserem letzten Urlaubstag in dieses Teil von Las Palma gefahren auch mit dem Gedanken bei Ricón de Tirana zu speisen, (eine Reservierung hatten wir nicht), und es hat aber doch geklappt, wir bekamen wohl den vorletzten Tisch für 2.\\nDas Ambiente ist sehr nett und mit Klasse, nette Begrüßung und wurden zum Tisch begleitet. Nur sehr kurz gewartet bis der Kellner nach Getränken fragte, danach nette Hilfestellung bei der Auswahl der Speisen, es gibt die Speisekarte in Spanisch, Englisch, und Französisch. aber mit Hilfe des Kellners war es kein Problem die richtige Wahl zu treffen. Das Essen war wirklich vorzüglich, wir hatten eine Vorspeise mit Gambas und Kichererbsen, und als Hauptgericht 2 mal Fleisch, beides perfekt wie gewünscht zubereitet, dazu Salat und frittierte Kartoffelstücke, zum Nachtisch hat der \\"Platz\\" nur für ein Kaffee Cortaddo Leche Leche gereicht!\\nSuper satt, und sehr zufrieden!!\\nDanke, wir werden es gerne weiterempfehlen!!", "author": "Thomas R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoeTVuVUFREAE", "timestamp": "2 years ago"}, {"text": "Una cena estupenda. Al lado de la playa de las Canteras, encontramos este restaurante que no tiene nada de turístico. Menaje excelente, servicio de 10 y la comida perfecta. Aconsejadas por el camarero, pedimos huevos con patatas y carabineros, y empanadas de ternera lechal, ambos fuera de carta. Las gyozas y el ladrillo de berenjena, buenísimas. Todo para compartir y emplazado individualmente. 3 cañas grandes, bien tiradas, un vino de rioja, pan, todo ello por menos de 85€. Me pareció genial de precio para esa calidad tan buena.\\nSin duda muy recomendable y para repetir", "author": "G. L.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqOVBLUXhRRRAB", "timestamp": "Edited a year ago"}, {"text": "Algo diferente en pleno paseo de Las Canteras. No recuerdo la procedencia del Jamón Ibérico, la foto no hace justicia a su increíble sabor. Muy buenos productos. Personal amable, explican bien los platos y local con encanto. Si quieres sorprender y que se salga fuera de lo normal, es tu sitio.", "author": "Sandra Zafra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXN0xtV1hBEAE", "timestamp": "3 years ago"}, {"text": "No te lo puedes perder! Cuando pensaba que había probado lo mejor… llegaron los postres!\\nEnhorabuena.\\nAtención impecable, relación calidad/precio más que razonable.\\nMe encanta que haya sitios donde se cuidan los detalles.\\nVolveremos seguro!", "author": "Raquel Herran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNGczRTdFpBEAE", "timestamp": "2 years ago"}, {"text": "Parece ser, que nuestras opiniones, de los que colaboramos aportando nuestras reseñas, no estamos tan equivocados. Magnifica atención y amabilidad, como viene siendo la costumbre en toda la isla. Y muy buena comida y de calidad. Gyozas de changurro, aunque la forma no era la habitual de unas Gyozas..jamón ibérico de nivel, bacalao en tempura...CON BACALAO y muy bueno, y Bife de ternera..y un postre delicioso....perfecto todo.", "author": "CARLOS GUIRADO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaN2J6V19BRRAB", "timestamp": "2 years ago"}, {"text": "Allez-y les yeux fermés, ce restaurant est une véritable pépite !\\nLa nourriture est excellente du début à la fin : nous avons commencé par un jambon ibérique savoureux, suivi d’un poulpe grillé parfaitement cuit et d’un steak Black Angus tendre et goûteux. En dessert, nous nous sommes régalés avec un millefeuille à la banane (incroyable !) et une spécialité locale proche d’une crêpe, servie avec une boule de glace, un vrai délice. Le tout était accompagné de deux demi-bouteilles de vin, qui se mariaient parfaitement aux plats.\\nLes serveurs, étaient très attentifs et souriants.\\nEt pour couronner le tout, le digestif nous a été offert au moment de l’addition : un rhum au miel, présenté par le serveur comme de la “vitamine” — généreux, convivial et délicieux !\\nUn restaurant qui allie qualité des plats, service impeccable et ambiance chaleureuse. Nous recommandons sans hésiter !", "author": "Shirley Fatela", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1QlUyVnpOa2hSUjBVeE1XSnZaRFkxYTNoRFYwRRAB", "timestamp": "5 months ago"}, {"text": "Todo perfecto, presentan los platos en la mesa y terminan de prepararlos delante de los comensales. Todo esta cuidado al detalle. Decoración bonita, buen vino y productos de calidad. Uno de los mejores restaurantes de la zona. El personal es muy amable.", "author": "Mónica Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSa18ydkF3EAE", "timestamp": "2 years ago"}, {"text": "Hoy hemos cenado en este restaurante y nos ha encantado. Pedimos croquetas de jamón, bao de pulpo y cochino negro, huevos rotos con gulas y langostinos y gyozas. El postre era de manzana y helado. Volveremos para probar los platos que nos quedaron sin duda. El personal muy atento, de 10.", "author": "Grima", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4M05XSmxRRRAB", "timestamp": "2 years ago"}, {"text": "Voy muchas veces por cercanía, pero sobre todo, porque nunca fallan. Ambiente familiar, cercano, siempre recomendándote lo mejor. Fuera de carta siempre como opciones del día. Y los postres , deliciosos. La costilla a baja temperatura, los huevos estrellados…", "author": "Guadalupe Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKR1ZwNk8yeUlfN2pnRRAB", "timestamp": "8 months ago"}, {"text": "Ambiente agradable y servicio excelente. Te explican con detalle la elaboración de los platos y su origen. Pedimos guacamole y lo elaboraron delante nuestro. Sin duda si volvemos a Las Palmas repetiremos. Relación calidad precio correcta.", "author": "Mercè Reñé Panadés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPdnVHOFZREAE", "timestamp": "3 years ago"}, {"text": "Calidad en la comida, con buenas raciones.\\nBuen servicio y muy rápido,el camarero nos aconsejó muy bien y acertó.\\nPostres buenos pero poco variados.\\nBien. Para hacer otra visita.", "author": "JOSE ANTONIO LAF.", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4UGJsRmhSbTlSZFdkblJIaDZYMmxtTmw4emJHYxAB", "timestamp": "a month ago"}, {"text": "Excelente!!!!\\nEl Rincón de Triana no nos dejó indiferentes, es un restaurante muy acogedor y con un trato muy especial hacía sus clientes.\\nSu carta es variada y en sus platos se aprecia el cariño con el que los preparan.\\nPonen gran interés al tema de los alérgenos, en nuestro caso “ gluten free”.\\nEnsalada con espuma de manzana verde,Ensaladilla rusa con langostinos,Paté de secreto ibérico,Jamón ibérico de bellota,Pan bao de pulpo,Huevos estrellados con jamón ibérico,Costillas de cochino negro a baja temperatura,Steak tartar...y lo que nos queda por probar de su especial carta.\\nLa profesionalidad del personal no pasa por alto el conocimiento de la elaboración de cada uno de sus platos.\\nTampoco dudan en aconsejarte con sus vinos.\\nUna amplia carta de vinos.\\nGran calidad y gran servicio.\\n\\nSe recomienda hacer reserva, su ubicación es genial ya que está junto al paseo de Las Canteras y muy cerca del Parking Las Canteras.", "author": "Lidia Gil", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5Nk42WGJREAE", "timestamp": "Edited 9 months ago"}, {"text": "Almorzamos allí el uno de enero, estaba muy lleno, y aun así, el servicio fue estupendo. La comida nos encantó. Recomendable", "author": "Carmen Muñiz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWRE5VTk1TRkJrT0VoRlkzZFViR2xVWDJaRFFVRRAB", "timestamp": "a week ago"}, {"text": "Klein und eher versteckt liegt das Rinćon de Triana in einer Seitengasse an der\\nPromenade von Las Palmas. Der Service sowie das Essen verdienen mehr als 5 Sterne.\\nDie Bedienung war sehr nett und freundlich! Die Getränke waren innerhalb weniger Minuten da und uns wurde sehr kompetent ein Wein empfohlen der zu unseren jeweiligen Gerichten sehr gut gepasst hat und der unseren Geschmack sehr gut getroffen hat. Die verschiedenen Aromen der Gerichte haben uns verzaubert und das Essen war einfach ein Traum! Dieses kleine Restaurant ist auf jedenfalls ein Besuch wert!", "author": "Lisa John", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwbk1EMzVnRRAB", "timestamp": "2 years ago"}, {"text": "Caímos de rebote sin tenerlo previsto y salimos francamente contentos. El local tiene una decoración excelente y el servicio es atento y eficiente. La carta no es muy extensa pero suficiente. Los platos tienen una presentación muy lograda. La ensaladilla muy vistosa pero quizás lo más flojo de lo que pedimos. El bacalao en tempura muy logrado y sabroso. El solomillo ibérico una pena que lo sirvieran un poco frío porque perdió mucho sabor y los medallones quedaron algo duros. Y los postres un deleite en especial la fiesta de chocolate. Agradable sorpresa este restaurante donde sin duda repetiremos.", "author": "Rafael Morales", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcjY2WE1nEAE", "timestamp": "2 years ago"}, {"text": "Muy gratamente sorprendidos por este rincon en Las Canteras. Nos encantaron las Zamburiñas, el jamon y el camarón soldado de Mogan. La sama se les paso un poco y quedo un poco seca pero nada que no pueda arreglar un chorro de un buen aceite de oliva. Ademas tienen una excelente carta de vinos y buenas copas con las que acompañarlos. De postre una buena torrija casera.", "author": "Vic O", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2bTZTS1RnEAE", "timestamp": "a year ago"}, {"text": "Tässä on Canterasin yksi parhaimmista ravintoloista. Zamburinjat liekitettiin hienosti. Mielenkiintoisia alku- ja välipaloja. Monia aterianosia kannattaa ottaa jaettavaksi. Erittäin hyvä viinilista. Vahva suositus.", "author": "Jukka Vuorinen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRLXZpZDV3RRAB", "timestamp": "10 months ago"}, {"text": "Recomendable la garbanzada y las carrilleras. Buena carta de vinos a buen precio. La comida está bastante bien aunque el plato de croquetas me decepcionó bastante por la cantidad y el precio que tiene, eso sí, de sabor muy buenas.", "author": "Iván S.H.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0b3VYU2d3RRAB", "timestamp": "a year ago"}, {"text": "Spontanes Mittagessen zu zweit. Freundlich wurde ein Platz angeboten. Alle Speisen waren geschmacklich sehr gut, ebenso der Service.\\nAllerdings hätte ich etwas sättigendere Beilagen mir gewünscht.\\nSelbstgemachte Chips (vermutlich Topinambur) waren sehr gut. Zum Filet gab es ebenfalls feine frittierte Späne.\\nEinziger Wermutstropfen waren die sehr einfachen Aufbackbrötchen mit Aioli (Gruß der Küche), die zu je 1,50€ ohne Nachfrage berechnet werden. Für diese 3€ wäre eine Portion Kartoffeln zu den Gerichten passender gewesen.", "author": "André ScyFy", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURUbGNua0RREAE", "timestamp": "a year ago"}, {"text": "Buena opción si estás por la zona de Las Canteras.\\nComo puntos de mejora, dentro del comedor no había cobertura y te sirven y cobran el pan sin preguntar.", "author": "María García Álvarez de Sotomayor", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNneHFieXNBRRAB", "timestamp": "11 months ago"}, {"text": "Comida espectacular con un trato de nivel. El cochino nakama estaba brutal. No hacía falta ni cuchillo. El guacamole hecho al momento por el camarero un detallazo. La ensalidilla rusa estaba buenísima. La torrija muy muy rica y una gran porción.", "author": "Carlos Guerra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXbm96ZG5RRRAB", "timestamp": "3 years ago"}, {"text": "Das Essen ist von unglaublich guter Qualität und, im Gegensatz zu den meisten anderen Restaurants, sind die Gerichte in einer Originalität wie man sie selten findet hier.\\n\\nAbsolute Empfehlung für ein kulinarisches Erlebnis das msn nicht so schnell vergisst!", "author": "Martin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNveXF5MUp3EAE", "timestamp": "9 months ago"}, {"text": "Buen restaurante. Gran servicio y atención por parte de todos los camareros. La comida estaba rica y bien de precio, por poner una pega, los baos un poco secos. Es una buena opción si quieres comer en la playa de las canteras.\\nVolveremos.", "author": "Julio Alberto Murillo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4NjRySlRREAE", "timestamp": "2 years ago"}, {"text": "Llegamos a este Rincon de las Palmas recomendado por una amiga, la experiencia fue increíble desde el primer momento, camareros muy simpáticos y siempre pendientes de nosotros, la comida simplemente espectacular, repetiremos cada vez que viajemos a las Palmas y sin ninguna duda lo recomendaremos a todos nuestros amigos. Fantástica experiencia gastronómica.", "author": "Rafael Serrano nuñez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtanRfSlJREAE", "timestamp": "3 years ago"}, {"text": "Esta vez hemos ido para comida de navidad de grupo. Puedo decir que los responsables del negocio están muy pendientes de todo: serios, formales, amables y honestos con la relación calidad precio. Pedimos un cambio de vino del menú y nos dieron máximas facilidades. Una persona del grupo celiaca tuvo también una atención especial. La comida no parece de menú, esto es raro hoy día. Tomamos jamón ibérico, ensaladilla, cachopo, y otros platos que no recuerdo. De los 24 que fuimos es unánime que la comida estuvo muy rica. Gracias!!", "author": "Antonio N.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzbnJDdmR3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Llegamos sobre las cuatro al restaurante y nos acogieron estupendamente, desde el minuto uno la atención fue excepcional, la comida estaba exquisita y el postre llamado Fiesta de Chocolate era una explosión de sabor en la boca. Sin duda uno de los mejores restaurantes de Gran Canarias.\\nRecomendable 100%", "author": "Shaylor5", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSeVpYaFpiRXhtVG5ONVdUQk1WakV0ZDJkQmRrRRAB", "timestamp": "5 months ago"}, {"text": "El servicio y la comida son excepcionales, tienen menús para grupo pero también puedes pedir a la carta en caso de no saber que pedir te aconsejan, el personal es muy simpático y amable, sin duda es un sitio para volver y recomendar.", "author": "Amrit Balani", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKUldVWkZja1JDV0ZaelZHb3dOa3BzY1ROVldIYxAB", "timestamp": "a week ago"}, {"text": "Cada plato es una explosión de sabores. La atención del personal es exquisita, explicándote cada plato que sirven. Especial mención a Jesús, que derrocha amabilidad, profesionalidad y simpatía. Precios bajos para la calidad de comida que ofrecen y rapidez en el servicio. Increible restaurante en todos los aspectos. Vinimos desde Fuerteventura el fin de semana y volveremos!", "author": "Iván R.L.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kek9HZGlTSFZWWlRWaVN6SndVMGhhV0cxaE1rRRAB", "timestamp": "4 months ago"}, {"text": "Muy buena calidad de todos los platos, hemos ido muchas veces y siempre salimos encantados. El trato además es muy amable.", "author": "Alvaro Ricote", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoT2QzTmxUekJGTmtNMFYzQTNjelpXVW5KNE1WRRAB", "timestamp": "2 months ago"}, {"text": "El lugar nos pareció acogedor. Por lo general, la comida estaba bastante buena. El problema vino en la espera. Tardamos mucho en que el servicio terminase: teniamos que avisar para que nos retiraran los platos sucios y pedir. De hecho nos fuimos sin probar ningún postre.", "author": "S CC", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUU5WcEVXbFpWVm10dldFdE9Wa1JaWDJOUFowRRAB", "timestamp": "5 months ago"}, {"text": "Ich hatte das Vergnügen, in diesem Restaurant ein Black Angus-Steak zum Mittagessen zu genießen, und ich kann es kaum in Worte fassen, wie lecker es war! Das Fleisch war perfekt zubereitet, zart und saftig, und der Geschmack war einfach unglaublich.\\n\\nAber nicht nur das Essen hat meine Erwartungen übertroffen. Der Service des Kellners war hervorragend. Er war aufmerksam, höflich und stand jederzeit bereit, um sicherzustellen, dass mein Mittagessen ein echtes kulinarisches Erlebnis wurde.\\n\\nInsgesamt war mein Mittagessen in diesem Restaurant fantastisch, und ich kann es nur wärmstens empfehlen. Wenn Sie auf der Suche nach köstlichem Essen und erstklassigem Service sind, dann sind Sie hier genau richtig!", "author": "Dominik", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaM0pIeThBRRAB", "timestamp": "2 years ago"}, {"text": "Wir können es nur weiterempfehlen. Das Essen war hervorragend und der Service super.Alles war perfekt.Danke für den tollen letzen Abend in Las Palmas.", "author": "Nadine R.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxa2NIajBnRRAB", "timestamp": "2 years ago"}, {"text": "Es un rincón muy acogedor, con el servicio de personal cálido y profeciinal. Los platos que he probado son deliciosos y creativos. Amplia carta de vinos y postres muy ricos. Sin duda ninguna volveré a disfrutar esta experiencia.", "author": "Anzhela Svyatenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDeFlUakVREAE", "timestamp": "5 years ago"}, {"text": "Wir sind auf Grund der vielen guten Bewertungen eingekehrt. Leider hat uns die Qualität der Speisen so gar nicht überzeugen können. Vielleicht lag es daran das es Sonntag Abend war oder daran, dass der Koch frei hatte. Keine der Speisen war frisch zubereitet, alles wirkte aufgetaut und aufgewärmt.", "author": "Thoralf Schade", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzOHNQMTJ3RRAB", "timestamp": "a year ago"}, {"text": "Wir waren zum ersten Mal da. Kleine Speisekarte?Großer Geschmack! Ensalada con espuma de manzana und das Iberico Schwein waren ein Gedicht! Freundliche und sympathische Mitarbeiter. Ein schönes Ambiente. Preis- Leistungsverhältnis ist in Ordnung", "author": "Gregor Vaas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQdE82TC1BRRAB", "timestamp": "a year ago"}, {"text": "Etwas versteckt in einer Seitenstraße an der Strandpromenade liegt das Rincón de Triana. Gegenüber den meisten, eher touristisch ausgerichteten, Restaurants in dem Gebiet findet man dort wirkliche Gaumenfreuden zum fairen Preis. Kleine Karte, aber exquisite Küche, gute Weine und einen aufmerksamen und kompetenten Service.", "author": "Hans-Joachim Hauschild", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSd2ZuYXN3RRAB", "timestamp": "2 years ago"}, {"text": "Los camareros fueron muy amables y la explicación de los platos era muy extensa, pero la comida bastante normal, diría q lo más sorprendente que probamos fueron las gyozas, y el ladrillo de berenjena con miel y pasta filo.\\nEnsaladilla rusa, huevos rotos con gulas y salmón a la parrilla más q normales.\\nPrecio algo elevado.", "author": "Sergio Olivar", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMHQ3andnRRAB", "timestamp": "4 years ago"}, {"text": "Ha sido un descubrimiento de la zona muy grato. Todos los platos fueron muy correctos y muy bien elaborados, mucho sabor. No le doy 5 estrellas porque pienso que unos huevos vegetarianos deberían tener algo más que papas, champiñones y huevos, por lo demás genial.", "author": "Alba García Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDem9fZXFnRRAB", "timestamp": "5 years ago"}, {"text": "Buen servicio aunque fuese un grupo grande, amables y muy atentos.\\nLa comida buenísima, muy recomendables las gyozas y los baos, algo escaso si tienes mucho apetito pero así tienes oportunidad de probar más platos porque todo lo que probamos estaba muy bien.\\nCasi en pleno paseo de las canteras.\\nNo pude adjuntar más fotos porque estaba tan bueno que según llegaba comíamos ;)", "author": "Javifer Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGNjdtVDJnRRAB", "timestamp": "2 years ago"}, {"text": "Última noche en las Palmas por este año y venimos a probar este restaurante ,menos mal que reservamos ,no es para venir con prisas ,pero mejor porque asi te da tiempo a ir deguatando los platos, los camareros te dan todas las explicaciones para una buena elección, de primeros ensaladilla rusa, muy rica pero jistita, croquetas buena cantidad y muy buen sabor, y pedimos un par de zamburiñas por cabeza flambeadas, bien, algo diferwnte.De platos fuertes una presa a la brasa ,un pelin seca de más y templada , y pata de cochinillo cocida a baja temperatura ,muy bien de textura pero para niestro gusto con demasiadas hierbas ,de postre torrija muy rica pero el caramelo flojillo ,se ve muy industrial.Relación calidad / precio un pelin caro.", "author": "Miki Louro", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGMVppamRBEAE", "timestamp": "2 years ago"}, {"text": "Fuimos ayer y nos encantó. Comimos Rejo de Pulpo, Gyozas y Ladrillo de berenjena. Todo delicioso con sabores intensos. Hoy repetimos. Muy recomendable", "author": "Paquita Hermosilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkbXRQVi1BRRAB", "timestamp": "a year ago"}, {"text": "Simplemente espectacular,un sitio que recomiendo visitarlo,la comida una delicia desde el primer plato hasta el postre,la mejor tarta de queso que eh probado en mi vida!! La atención espectacular,en especial un camarero llamado Luis ,un atendimiento genial ,siempre pendiente a todo y una relación calidad precio que vale mucho la pena,volveré sin duda,encantadisima☺️☺️", "author": "Emma Zerpa Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYMDlteFJnEAE", "timestamp": "a year ago"}, {"text": "En primer lugar felicitar a todo el equipo humano del rincón de Triana por su excelente atención y no menos profesionalidad. Grandioso ambiente de cordialidad y atención continua. Que comentar de la carta, solo tengo un calificativo, EXCELENTE. Invitaros a continuar con vuestra dedicación y excelente gastronomía. MUCHAS FELICIDADES.", "author": "Orlando luz gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPOTZHQVNBEAE", "timestamp": "3 years ago"}, {"text": "Leider kann ich nur 5 Sterne geben... Es war eine spontane Entscheidung in dieses wunderschönen kleinen laden in der SeitenStraße essen... Bedienung vom Fach..hat uns alles auf englisch erklären können auch wenn wir etwas nicht verstanden haben wurde geholfen... Wir haben n Deutschland nirgends so gutes Schweinefleisch gegessen und selten so gutes Rinder Filet..Wir haben gleich wieder für den Folge Tag einen Tisch reserviert...Der Nachtisch... Flowerpott...Leute Leute..sowas schönes habe ich noch nie gegessen...ein Traum von Vanille...Die Schokolade... Ja man könnte denken was stimmt denn nicht mit dem Typ,beim Lesen 😅 aber ich bin ehrlich und glücklich nach diesem wunderbaren essen. Preislich 😂😂 zu günstig.. @rincón de triana dürft ihr gerne erhöhen das ist es wert.wir freuen uns auf morgen abend ❤️LG Tim", "author": "Mit Lage", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoazh6V2ZBEAE", "timestamp": "2 years ago"}, {"text": "Kleines aber ausgezeichnetes Restaurant mit gehobenem, sehr freundlichen, Service. Nur ein wenig abseits der Avenida! Wirklich sehr leckeres und sehr gut zubereitetes Essen. Da waren wir nicht zum letzten Mal!!!", "author": "Andreas Eitelbach", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214a1RXd3hTMnhRYzBKb1ZUTjRNMmN3ZEVWcVJIYxAB", "timestamp": "3 months ago"}, {"text": "Todo lo que comimos los dos días de nuestras vacaciones fue riquísimo, las giozas, las zamburiñas, el timbal, el cabrito y los postres, todo espectacular. Buen servicio. Nos lo recomendaron y fue un acierto. La única pega, el local no tiene mucho encanto.", "author": "Cristina G", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wdGVYRXhaV3RpYlV0MFpYQnZkbXcyUkRsWFQwRRAB", "timestamp": "4 months ago"}, {"text": "Comida muy rica. Exquisita. El trato un 10. Muy atentos. Muy acogedor. Y repetiremos sin duda. Un 10.", "author": "Marta Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWei12cFJREAE", "timestamp": "2 years ago"}, {"text": "Gran descubrimiento.\\n\\nComida deliciosa, raciones generosas, trato espectacular.\\n\\nAdemás, está genial la relación calidad-precio.\\n\\nDeseando volver.", "author": "Leticia Marrero Juan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1dWZhT2FnEAE", "timestamp": "3 years ago"}, {"text": "El restaurante nos pareció un lugar muy encantador empezando por sus camarero y propietario donde en todo momento aconsejan e informan de cada uno de los platos. En unos de los platos de la foto Merluza con salsa de trufa y papas peruanas fue un auténtico manjar en una mezcla de sabores. Y de postre como en la foto Torrijas caseras muy buenas,que sin duda volveremos a repetir.", "author": "icewallace3", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtcjZPR1dBEAE", "timestamp": "3 years ago"}, {"text": "Me gusta comer sabroso sin importar cuánto voy a pagar , creo que el comer bien es una de las cosas que te llevas en la vida.\\nEl Rincón de Triana es un lugar que con sus mezclas de sabores hacen que en tu paladar sientas una explosión 💥\\nSi vienes a Las Palmas de Gran Canarias visita este restaurante, no te lo pierdas…😁🤤😋😋😋", "author": "maria lisset suarez flores", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcV9HVzd3RRAB", "timestamp": "3 years ago"}, {"text": "Authentische Restauration, exzellente Speisen, ein großartiger Genuss. Jakobsmuscheln flambiert, Solomillo zart mit crema delicioso. Ein guter Wein dazu, perfekt.", "author": "Kai Schlegtendal (chief_ehrenfeld)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxLVpLWVBBEAE", "timestamp": "2 years ago"}, {"text": "Una experiencia excelente de principio a fin. La atención fue impecable, y queremos hacer una mención muy especial a Roberto, nuestro camarero, quien nos atendió con una amabilidad y profesionalismo excepcionales. Su atención al detalle y su trato cercano marcaron la diferencia en nuestra visita.\\n\\nQueremos también agradecer muy especialmente el gesto con la mantequilla de plátano donada para las Fuerzas Armadas. Un detalle que habla no solo de la calidad del lugar, sino también de los valores humanos que lo respaldan. ¡Gracias por una experiencia tan grata y significativa!\\n\\nVolveremos sin duda.", "author": "Jero Vera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VMU3h4WXJBemZlU0dnEAE", "timestamp": "7 months ago"}, {"text": "Trato y comida exquisita. Nos encantó todo lo que pedimos. Un lugar al que volver a ir en la isla.", "author": "Izaskun Pizarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2aHYya1RREAE", "timestamp": "a year ago"}, {"text": "Comida muy buena y buen trato. Muy recomendable, en todo momento te explica la elaboración del plato. Servicio excelente", "author": "Juan Carlos Millon Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtbThqQ3FnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Un trato excelente en el especial al profesional que nos atendió ( Uber). La comida riquísima.", "author": "marian diaz borges", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGUmVraHlWalZXWW5oZmQxWlJRM3BhU1dSbE9VRRAB", "timestamp": "a week ago"}, {"text": "Fantastiskt god mat! Jag åt griskind och min man åt ryggbiff och vi var båda väldigt nöjda. Maten får 5/5, trevlig personal, ett litet minus för lokalen - som kunde varit helt okej om man justerat belysningen och satt ljus på borden.", "author": "Lotta Book", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURROWNYNWhBRRAB", "timestamp": "10 months ago"}, {"text": "Excelente servicio\\nComida con sabores y sensaciones muy cuidados\\nFELICIDADES", "author": "PJ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLbmF5X3JLcTczdlZ3EAE", "timestamp": "7 months ago"}, {"text": "Comida variada y rica, buena cerveza sin filtrar. Está bien ubicado en una calle perpendicular justo al lado de las canteras. Tiene todo lo que uno se espera cuando vas a una cena en grupo. El cachopo estaba rico y abundante, con buen jamón, quizá estaba un pelin seco por ponerle un pero.", "author": "OSCAR FERNÁNDEZ LÓPEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGMkxpTl93RRAB", "timestamp": "2 years ago"}, {"text": "Fuimos a Canarias este verano mi chico y yo y este restaurante fue un maravilloso descubrimiento. Cada plato sorprende más que el anterior, desde el bao de pulpo, pasando por el cangrejo de concha blanda, las gyozas...\\nTienen las mejores zamburiñas que he probado en mi vida y ve probado muchisimas. De cinco dias que estuvimos en la isla fuimos a cenar alli tres seguidos y ya lo estamos echando de menos. Absolutamente profesionales, se nota cuando se pone cariño en lo que se trabaja ¡Seguid asi!", "author": "Pilar Vioque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtOHR5T0xnEAE", "timestamp": "3 years ago"}, {"text": "Restaurante a pie de la Playa de Las Canteras. Local acogedor, bonita decoración. Destacar la atención del personal y el\\nSabor exquisito de los platos lo hacen un lugar para repetir.", "author": "Cathaysa Betancor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtMHQtSjZBRRAB", "timestamp": "3 years ago"}, {"text": "Nos ha encantado. Los camareros son súper amables y muy buen servicio.", "author": "cloticloti gr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sRmFqZFRRazVJTTJaZmJWcFdXWFJqV0d4TmMzYxAB", "timestamp": "2 weeks ago"}, {"text": "Excelente, en todos los sentidos.\\nRelación calidad precio inmejorable. Hacia tiempo que no disfrutaba tanto de una comida", "author": "Pili Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNnVycFlnEAE", "timestamp": "a year ago"}, {"text": "Polecam. Zamówiliśmy, pierogi, hale fish, krewetki z serem kozim, bułeczke bao z wierzowina. Jedzenie smaczne, bardzo dobra obsługa!", "author": "Krzysztof Obrał", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoai1idEdnEAE", "timestamp": "2 years ago"}, {"text": "Fusión de sabor canario tradicional con exquisitez, para los que buscan una comida diferente.\\nMuy recomendable, dejarse aconsejar por Mario que te explica todo de maravilla.", "author": "Alberto Fonseca Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGamFEbzlBRRAB", "timestamp": "2 years ago"}, {"text": "Me ha encantado, celebré ayer mi cumpleaños y salió todo genial.\\n\\nLa comida toda en su punto, recomiendo mucho el guacamole y la ensaladilla rusa.\\n\\nMuchas gracias por el trato.", "author": "leticia MM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5NTdxLW5RRRAB", "timestamp": "a year ago"}, {"text": "Los camareros excelente atención. Todo era con reserva, lo que ocurrió es que buscaba un sitio para tomar una torrija por semana Santa, lo busqué por Google y encontré este sitio. Terminé comiendo y postre torrija, muy sabroso todo . Cuando vuelva Las palmas Gran Canarias , iré a comer ahí .", "author": "Helen Pinto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURENU9EZ25nRRAB", "timestamp": "a year ago"}, {"text": "Sehr gute gehobene Küche! Preis Leistung auch sehr gut 🙂", "author": "Lalita Kreklau", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmclByTTFRRRAB", "timestamp": "a year ago"}, {"text": "El cachopo estaba muy bueno, eso sí los servicios estaban hechos mierda , y me han enseñado que si el servicio/baño de un bar está sucio ............mmmm", "author": "Luis Medina", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkVlVuTnRPR1pVYnpKbGJVTklVREJtYUhNME1YYxAB", "timestamp": "a month ago"}, {"text": "Es war super lecker! Personal war sehr nett", "author": "Kate", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdU82dW1BRRAB", "timestamp": "10 months ago"}, {"text": "Lo busqué por Google para saber donde ir a comer con mi mujer ya que andábamos por la zona. Todo un acierto!!! Comida muy rica y servicio perfecto!!!\\nRecomendable.", "author": "Carlos Gutiérrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4d2N6WnRnRRAB", "timestamp": "2 years ago"}, {"text": "Restaurante con carta de platos muy novedosos y gran calidad. El jamón ibérico mejor cortado de la Isla Servicio excelente y amable Volveremos Saludos", "author": "diego f.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21SQ1VHb3dSMmswYld3NGRHWnRWVkV5Y1RReFdVRRAB", "timestamp": "4 months ago"}, {"text": "Wer mal was anderes essen möchte und nen Taler mehr in der Tasche hat, ist hier genau richtig. Essen war lecker und gut präsentiert, Service freundlich und nen guten Wein findet man auch. 👍", "author": "S. M.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xJNGIzQjFia2h1VW5waFpqUlpVWFJwWkROc1pGRRAB", "timestamp": "4 months ago"}, {"text": "Visita obligatoria, servicio de 10, sabor 5*\\nServicio extraordinario, comida excelente, presentación selecta, buen vino. Soy muy exigente y no encontré ni un solo fallo. Enhorabuena por esta experiencia de 10! Nuestro camarero el mejor, muy amable :D", "author": "Raquel Platero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOaTVqd1FREAE", "timestamp": "2 years ago"}, {"text": "Fijne service, heerlijke voorgerechten. Het hoofdgerecht vonden wij iets minder lekker, maar nog steeds heel goed!", "author": "Thomas Rook", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MHVUNGhRRRAB", "timestamp": "a year ago"}, {"text": "Se come estupendamente, el servicio es de 10, el local dentro es amplio y acogedor, lástima que fuera solo tengan dos mesas. No se encuentra en primera línea, aunque mejor si puedes comer fuera, ya que, te ahorras el trasiego de tanta gente", "author": "Néstor González Barreto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURldExxZ1BnEAE", "timestamp": "3 years ago"}, {"text": "De los mejores lugares de Las Palmas ahora mismo para disfrutar de la comida. Tiene una elaboración muy cuidada, el servicio es impecable y la materia prima inmejorable. Sin duda tienen que probarlo.", "author": "Carlos G Almonacid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbjZUaWNBEAE", "timestamp": "Edited a year ago"}, {"text": "The food was very good and also served very quick. The place is also baby friendly!", "author": "Micha Westerkamp", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKNlptNUNjMmxrT0dWeFJITm1kRGw1V0hka2RrRRAB", "timestamp": "2 months ago"}, {"text": "Buen restaurante , todo lo que pidas está bueno , buena bebida y a dos pasos de la playa de las Cantera y de la zona de ambiente de Las Palmas , el jamón ibérico siempre está muy bueno, RECOMENDABLE", "author": "Adolfo Sancho", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5bFYwNWhRMlpWZDBkUGVrRlVXR1pDZEdJNWEwRRAB", "timestamp": "3 months ago"}, {"text": "Les plats sont délicieux, cuisine maison.je recommandé le jambonneau.comida demiciosa, recomiendo el cocido ...y el personal es super agréable.", "author": "eric manise flecha roja", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNl9LX1JREAE", "timestamp": "Edited a year ago"}, {"text": "Das war leider Nix. Zum einen ist das Ambiente nicht wirklich einladend, zum anderen frage ich mich wie das Restaurant auf diese Gesamtbewertung kommt. Wir hatten als fünfköpfige Familie verschiedene Essen bestellt von Schweinefleisch, Rindfleisch,fisch bis Krabben Fleisch. Alle Menüs haben nicht geschmeckt. Das Fleisch war viel zu trocken, der Fisch ohne Gewürze hat langweilig geschmeckt, Wir haben 165 € bezahlt, was für die gebotenen Qualität völlig übertrieben ist. dann hat auch noch der Wein gekorkt. Schade, um den schönen Abend.", "author": "Jens Kammerer", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEbE1YNi13RRAB", "timestamp": "a year ago"}, {"text": "Ambiente muy tranquilo y agradable. Todos los platos estaban muy buenos.", "author": "Oti Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmLWNUeVhnEAE", "timestamp": "a year ago"}, {"text": "Ubicación privilegiada,prácticamente en el paseo de las canteras. Servicio atento y rápido,platos bonitos a la vista y sabrosos al gusto. Repetiré.", "author": "Bego Sane", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNjlhbFB3EAE", "timestamp": "a year ago"}, {"text": "Ha sido muy buena experiencia comer en este sitio, atención al cliente fabulosa, el Jefe de cocina un trato de diez y Roberto, camarero del local, atención exquisita en todo momento. Ha sido una comida excelente. Todo los platos que hemos pedido de calidad top. Muy recomendable.", "author": "alejandro ruano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsTVh6ZFFWVXhZY1Zaa1VtNW9kRGgzTW5vMmNHYxAB", "timestamp": "7 months ago"}, {"text": "Muy bien restaurante con pocos platos pero todos muy buenos, servicio excelente.", "author": "Max", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21adFVsUlJkbkJsY1ROQlN6SnhUM1Z3TFhaNmNsRRAB", "timestamp": "2 months ago"}, {"text": "Incontournable si vous visitez las palmas . Restaurant a la cuisine extraordinaire, raffinée , surprenante et un personnel vraiment excellent et d une gentillesse incroyable . Une très belle expérience culinaire .", "author": "Guinet Clement", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3OXRuS21BRRAB", "timestamp": "10 months ago"}, {"text": "Overgewaardeerd, vlees bevatte veel vet en we zijn beide ziek geworden van het eten.", "author": "sandra kester van", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kNVJGZzRWa2R1Tmt0dFlsQmFiV0k1UzI5S1VuYxAB", "timestamp": "4 weeks ago"}, {"text": "Eccellente tutto dal vino al dolce! Piatti ricercati e personale competente ed attento. Consigliatissimo!!!", "author": "Gaia Concutelli", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eS0tSWZ3EAE", "timestamp": "2 years ago"}, {"text": "Ruoka oli aivan superlaadukasta, siis kaikki mitä söimme-crocetit, ravut vuohenjuustolla, sirloin, mustekala, talon jälkkäri. Viinilista erittäin kattava ja tarjoilijan valinta oli tosi hyvä. Ainoa miinus hieman kiireiset tarjoilijat jotka sukkuloivat pöytien välissä. Mutta kaikki toimi erinomaisesti. Tänne menemme uudelleen.", "author": "Timo Tuominen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzeHFlSzRRRRAB", "timestamp": "a year ago"}, {"text": "Me ha encantado la comida, preparada con mucho gusto y en cantidad no excesiva, pero suficiente. La tarta de queso exquisita.\\nNo me ha gustado que los platos que te dicen que tienen fuera de carta no te digan los precios.\\nMe ha parecido demasiado bullicioso, tal vez ese día había algunas mesas muy ruidosas, pero no podía escuchar a mí pareja del ruido que había.", "author": "Carocha", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnOTc2a2J3EAE", "timestamp": "11 months ago"}, {"text": "Fantástico lugar, muy próximo a la playa de Las Canteras, tanto los platos, servidos y explicados con todo detalle, como la atención de todo el personal que nos atendió, de diez. Muy recomendado, y no es la primera vez que venimos. Seguimos repitiendo, ya que siempre soprende con nuevas propuestas.", "author": "Antonio Doreste Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1N0liVzlnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena comida un ambiente acogedor un buen sitio el servicio 5 🌟 les recomiendo el cachopo .", "author": "Luisbel Leyva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2MklhVUN3EAE", "timestamp": "Edited 6 months ago"}, {"text": "MARAVILLOSO SERVICIO AL COMPLETO\\nPues eso, servicio completo de 10; Desde la reserva, el recibimiento a la llegada, la atención en la mesa, comida excelente y exquisita y el precio más que bueno en calidad de producto.\\nYa son varias veces las que voy y nunca hay errores en nada.\\nLa atención en el Servicio es increíble y las recomendaciones siempre un acierto. 100% recomendable para cualquier hora.\\n\\nMis preferidos, las Gyozas de morcón y el Pan Bao de Costillas de cochino negro... a partir de ahí, ya nada puede ir mal. Pidas lo que pidas, una exquisitez.\\n\\nEl acabado de los platos (algunos) es siempre en mesa y te explican el como el cuando el donde... y el por qué.\\n\\nSin duda uno de mis restaurantes preferidos de la ciudad", "author": "I CG", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtXzRIS2pnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Hervorragendes Essen!! Eine tolle Überraschung in einer nicht sehr fancy Straße, nahe an Beach. Sehr guter Service.", "author": "Eliska Potlukova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyN0xTanBnRRAB", "timestamp": "a year ago"}, {"text": "Muy buena atención del personal .Local acogedor y variedad de postres. Calidad precio es caro", "author": "Jorge goncalves", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaai1QSmpBRRAB", "timestamp": "2 years ago"}, {"text": "La comida exquisita y el servicio extraordinario.\\nSin duda volveremos.", "author": "Elena Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3b3QzM0pBEAE", "timestamp": "a year ago"}, {"text": "Lugar que he descubierto hace poco y ya perdí la cuenta de las veces que he ido , tanto con pareja como con amigos . La calidad de la comida , la explicación previa por parte del personal y el trato del mismo es simplemente exquisito . Soy amante del turismo gastronómico y aun no he probado mejor jamón que el que trabajan en este lugar . Mi enhorabuena a todo su personal .", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMHM3Y01REAE", "timestamp": "4 years ago"}, {"text": "Un gran restaurante, trato excepcional. El camarero te explica con mucho detalle la elaboración de cada plato.\\nTodos los platos que comimos estaban muy muy buenos. Era mi cumpleaños y me regalaron un postre y me cantaron el cumpleaños feliz. Un bonito detalle.\\nVolveremos segurisimo.", "author": "María Eugenia Laforet Ariza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOG9hcHpBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Un local agradable, platos originales y de gran calidad, personal atento, especialmente Rafa con su genial sentido del humor; repetiremos !!!", "author": "GERMÁN PÉREZ", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201Wk5YUkVaWFJtZEdKYVVHaFBaSGR5T1hkUWMwRRAB", "timestamp": "5 months ago"}, {"text": "Todo excelente!\\nLa comida deliciosa. Se nota que los ingredientes son de excelente calidad.\\nTodo el personal muy buena atención.\\nDon Mario es muy cuidadoso de la experiencia del cliente.\\nUna joya de lugar!", "author": "agustin bartra", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoUlREWkpXa1ZvYmt0ak5YSldPUzEzZFdaUlIzYxAB", "timestamp": "7 months ago"}, {"text": "Excelente producto y sitio muy acogedor. El personal muy profesional. Las vieras como aperitivo y los huevos estrellados con Carabineros son apuesta segura. De principal buena carne para hacer a la piedra. Carta de vinos tintos excelente. Buena relación calidad precio.", "author": "J Cab", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncG9qVDNRRRAB", "timestamp": "11 months ago"}, {"text": "Lo primero, trato y servicio muy bueno, la comida 5 estrellas.\\nMuchas gracias", "author": "Rubén López López", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VOckNvN0dteGVlb1JBEAE", "timestamp": "7 months ago"}, {"text": "Segunda visita a este restaurante en el corazón de las canteras. Espectacular", "author": "Aristeo Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJWFNyOUxnNExiSUFnEAE", "timestamp": "8 months ago"}, {"text": "No tuvimos buena experiencia. Precio elevado para la calidad de los platos.\\nChuletillas de cabrito, duras. Tartar de atún muy picante.\\nLas gozas sí estaban buenas.\\nComimos en dos tiempos por un error. Lo siento", "author": "Manuel López", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VOamt1S3VvdHFxdXN3RRAB", "timestamp": "8 months ago"}, {"text": "Buena atención del personal y buena comida. Fui a celebrar la comida de empresa y nada que ver con otros restaurantes.", "author": "Álvaro Pérez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aMVkxWndTMHBZU3kxMVVuRXdkMHd5VTFCMmQwRRAB", "timestamp": "a month ago"}, {"text": "La comida en este lugar siempre está de diez. No he probado un plato aún que no sea delicioso.", "author": "Nacor Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMM012ci1BRRAB", "timestamp": "a year ago"}, {"text": "La atención genial, te explican los platos y te aconsejan. El problema viene a la hora de los precios. Para empezar te cobran el pan (yo lo veo horrible puesto que me lo ponen y yo ni lo he pedido ni me lo como), seguidamente me cobran un precio más elevado en los calamares por que piensan que tienen que poner unos cuantos más sin decirme nada. Finalmente me ponen gyozas donde me comentan que me añaden una más y me cobran 16,7 por 6 gyozas en total (bastante caro puesto que son pequeñas y encima las cogimos por recomendación del camarero). A mi parecer el servicio es muy bueno pero por estas cosas no repetiré puesto que parece que quieren sacarte hasta el último euro.", "author": "Sergio León Jiménez Caro", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhc011UVZBEAE", "timestamp": "4 years ago"}, {"text": "Magnífica comida y personal, muy profesionales y agradables.\\nUn lugar perfecto para pasar una agradable velada.\\nSin duda para repetir", "author": "Zaira Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydEl5ZzlBRRAB", "timestamp": "3 years ago"}, {"text": "Desde el primer momento que llamamos nos atendieron con mucha simpatía y bastante bien. En total serían unos 115€ con entrantes, una botella de vino, un plato por persona , días aguas y postre.\\nLa verdad es que los trabajos de los camareros formidable. Lo recomiendo al 100%\\nLa mantequilla de plátano espectacular.", "author": "roberto galvan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2el9PSGVnEAE", "timestamp": "a year ago"}, {"text": "El servicio buenísimo, sobresaliente, atento y cordial.\\nLa comida acorde, sobresale la costilla a baja temperatura.", "author": "Luis de Santos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4MWFtYzFRRRAB", "timestamp": "2 years ago"}, {"text": "Buen servicio, buen producto , calidad precio aceptable.\\nA mejorar: te ponen pan 🥐 sin preguntar y te lo cobran......\\nTe ofrecen una amplia oferta de platos fuera de carta y no sabes los precios.....\\nPero....muy recomendable ☺️☺️", "author": "Mom", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJbmZuSXBBRRAB", "timestamp": "9 months ago"}, {"text": "Comida muy rica, servicio excelente y muy bien ambiente. Un restaurante de 10.\\nAbsolutamente recomendable", "author": "Eduardo Ponce Maya", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoamJlTEdREAE", "timestamp": "2 years ago"}, {"text": "Comer allí es un placer, tanto por la comida tan rica como por el espectáculo alrededor de los platos. Los camareros son muy top, cuidan cada detalle a la perfección y la comida está muy rica!", "author": "Rocio Inmaculada Bañez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqcnFqT0tREAE", "timestamp": "a year ago"}, {"text": "Un restaurante q aunque no está en el mismo paseo no se lo puede perder nadie\\nSi q es verdad q no es el típico bar de tapas o un restaurante barato pero si q sirven comida de calidad\\nSi estás en esa zona. No lo dudes, ves a comer!!!", "author": "Antonia García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCUFRrZFhUVnB4TjNOTlIwVkZjSE52TVVRNFRFRRAB", "timestamp": "5 months ago"}, {"text": "Sensationeller Service , fantastisches Essen , köstliche Weine . Ein geheim Tipp in Las Palmas abseits der touristischen Lokale .\\nIch würde 6⭐️vergeben", "author": "Philipp Lawrenz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkcVBEYjFnRRAB", "timestamp": "a year ago"}, {"text": "Comida espectacular, buen trato por parte de roberto ,educado y atento ,que nos ha recomendado lo típico de gran canaria", "author": "Estefania Ferrer Llorens", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKamVuaHdjMVJqU3paT2VrdHhUWFZJUWxGdWQyYxAB", "timestamp": "5 months ago"}, {"text": "Lugar excelente!! La atención muy buena y la comida de lo mejor que he probado en mi vida... sin duda de lo mejor en la playa de las canteras!!", "author": "Vanesa Barreiro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsd3RhZlpnEAE", "timestamp": "2 years ago"}, {"text": "Revuelto de carabineros y zamburiñas de 10 ❤️❤️. Repitiendo y mejor. Nos deleitaton con un cachopo con queso cebert y jamón iberico", "author": "Juan Mari Unsain de Zuloaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0cDZfM1NBEAE", "timestamp": "Edited a year ago"}, {"text": "Un descubrimiento, carta perfecta con un servicio impecable. Todo incita a probar.", "author": "Narci Mar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaC1DelVBEAE", "timestamp": "a year ago"}, {"text": "Höherpreisig aber gut. Essen war lecker, das Ambiente von innen nett anzusehen.", "author": "Birk Virkus", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pJMVJFSnpXbVJQY3pSQk9YVlBVSHBrZW5GRU9IYxAB", "timestamp": "4 months ago"}, {"text": "Hemos pedido guacamole, lubina, presa y tarta de queso todo riquísimo la comida de 10 y la atención excelente, muy muy recomendable", "author": "Juan Miguel Domínguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poM1lscExZa0p0WlRobFRYYzVhRzl3U1V0NGNWRRAB", "timestamp": "4 months ago"}, {"text": "Inmejorable! El servicio estupendo, el ambiente tranquilo y la comida de 10. Pedimos bastantes platos de la carta, entrantes y principales, no sé con cuál me quedaría, pero destacar el pan bao de cochino canario y la costilla Nakama . Los postres muy ricos, especialmente la tarta de queso. Repetiré con total seguridad", "author": "Ayeisha", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNubmVpdndBRRAB", "timestamp": "a year ago"}, {"text": "Exquisita comida. Calidad precio perfecto. Pedimos croquetas de jamón, Camarones, huevos rotos con jamón ibérico, y solomillo. Una fusión de sabores excelentes,\\nEl trato de los camareros excelente . Sin duda alguna merece la pena y si tenemos oportunidad, volveremos.", "author": "yasmina reyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzaGE3bFh3EAE", "timestamp": "a year ago"}, {"text": "Exquisito, TODA la comida estaba buenísimo.\\nPedimos una ensalada con espuma de manzana, que estaba muy fresquita y buena. Zamburiñas, recomendado 100% y sus gyozas. También probamos los huevos con carabineros, que no pueden faltar y el cachopo que estaba muy bueno. Los postres también de 10.\\nLa atención y amabilidad del personas fue perfecta en todo momento. Por poner un pero, fue la espera por los postres. Pero de resto nada que decir. Volveré seguro.", "author": "Gabriel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBc2RQVE9REAE", "timestamp": "11 months ago"}, {"text": "Fuimos de Tenerife este lunes y solo tenemos que decir que un servicio totalmente de 10, la comida exquisita. Sin duda volveremos, totalmente recomendable.", "author": "Aarón González", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FeVUxZzJUSGRqVEdoek9GZ3ROV3AwUzNOVlMxRRAB", "timestamp": "6 months ago"}, {"text": "Cuando se juntan profesionales y amantes de su profesión, da lugar a este maravilloso sitio donde la atención es de 10 la cocina es de pasión y de calidad . Sitio muy recomendable. No puedes irte de Canarias sin pasar por este restaurante. Recomendable llamar para reservar.", "author": "Adán Toribio saavedra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIajlmUUR3EAE", "timestamp": "a year ago"}, {"text": "La comida espectacular ,la presentación estaba todo excelente y el servicio un 10", "author": "Eva Signes Lopez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWSWNUWk9aM3BvV1dkcVRsYzVOMHN5YUd0eFIxRRAB", "timestamp": "5 months ago"}, {"text": "La comida muy rica y el trato excepcional, recomendable 100%", "author": "Mari", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twSWRUUXhUbVl0VDA5RmJtc3dRbFZUWkhGV09HYxAB", "timestamp": "4 months ago"}, {"text": "Lugar bonito y agradable.Comida elaborada y buena y buen trato a la.hora del servicio.", "author": "Jaime Pardo Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREb2QtU0RnEAE", "timestamp": "a year ago"}, {"text": "El sitio agradable. La comida, lo más importante exquisita. El personal muy amable, atento y profesional. Desde el vino hasta el último plato todo perfecto.\\nMuy recomendable.", "author": "Gontzal Diez Basurto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfME12b2l3RRAB", "timestamp": "a year ago"}, {"text": "Comenzamos con un buen trato, servicio y ambiente. Continuamos con la bomba de sabores, donde hace de la comida una gran experiencia y les diferencia del resto, su carpaccio con helado espectacular, rejo de pulpo plato increíble que te desencaja y no puedes parar de comer y las gyozas con una explosión de sabor inigualable.", "author": "N GM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiNXBiM1ZBEAE", "timestamp": "a year ago"}, {"text": "Platos interesantes y creativos, con mucho sabor.", "author": "Sara Ingarfield", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnTUNnNWVZZBAB", "timestamp": "11 months ago"}, {"text": "Scrivo con il profilo di mia moglie.\\nOggi il nostro buon amico Michele ci ha portato a mangiare in questo ristornate, fin dalle prime 2 portate abbiamo capito che la qualità del cibo era ottima, portate abbondanti con piatti rivisitati.\\nIl consiglio e quello di provare la maggior parte delle entrate condividendo con chi vi farà compagnia, oltre la qualità vorrei fare notare l'ottimo servizio dei camerieri di sala.\\nNel complesso e davvero un ristornate all' altezza di quelli ben nominati e molto più pagati.\\nOttimo lavoro, ci torneremo sempre quando saremo qui.", "author": "Michela Sala", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEbE5TdVRREAE", "timestamp": "a year ago"}, {"text": "Hallo Zusammen, ich muss leider dem Restaurant eine etwas durchwachsene Bewertung geben, obwohl geschmacklich das Essen durchaus gut gekocht ist. Jedoch wurden einerseits viele Gerichte mit einem Pommes Variante als Begleitung serviert und wir mussten gegen Ende unseres Restaurant Besuchs feststellen, dass unsere Weinflasche (noch zu einem Drittel voll!) einfach mitgenommen wurde, ohne höflich zu fragen, ob wir diese mitnehmen wollen. Und auch die Bezahlung gestaltete sich etwas schwierig, da keiner der Kellner verfügbar war.\\n\\nEs wäre zu wünschen, dass der Service noch etwas besser wird.", "author": "Jonas P.", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsdkx5U0xREAE", "timestamp": "2 years ago"}, {"text": "Estuvimos mi pareja y yo cenando el sábado noche y nos sorprendió para muy muy bien.\\nLa atención es impecable, los camareros super atentos en todo momento y serviciales, pero dejandote comer tranquilo y sin agobios.\\nEl local invita a que te quedes un buen rato, con muy buen gusto, todo cuidado al detalle de estilo clásico.\\nEn cuanto a la comida IMPRESIONANTE UN 10. Soy celiaca y me supieron atender de maravilla, tienen pan sin gluten que te sirven con el acompañamiento a parte para que no haya ningún tipo de contaminación cruzada, además me aconsejaron genial para poder cenar tranquila.\\nEn cuanto a los platos, todo para compartir, decidimos pedir 2 Zamburiñas cada uno, y pocas me pedi! Que delicatesen, que buenas estaban, hacia tiempo que no me comía uñas Zamburiñas tan bien hechas. Posterior nos decidimos por unos huevos rotos con jamón ibérico, que estaba perfectamente hechos, como un plato tan simple y que tienen en tantos lados se puede hacer tan bien, de verdad impresionante. Por último pedimos presa ibérica, buenísima y muy bien hecha, con su acompañamiento de papas espectaculares y pimientos del padrón.\\nCon una botella de Juan Gil etiqueta plata salimos por 80€, de verdad, merece muchísimo la pena.\\nVolveremos seguro, me quede con muchas ganas de ese guacamole casero hecho en mesa 🤤", "author": "Elisa Gris Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIZ3VXQzBnRRAB", "timestamp": "a year ago"}, {"text": "Fuimos porque nos habían hablado del restaurante y la verdad que fue muy muy buenoo producto de calidad y buena elaboración no pueden fallar", "author": "Fouad Elmoudden", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkVGEzVkplbE0yVTFOd1pFSnVaVkU0ZEVJNFJIYxAB", "timestamp": "6 months ago"}, {"text": "Dieses unscheinbare Restaurant in einer Seitenstraße von der berühmten Strandpromenade Las Canterras kann ich nur empfehlen. Hier gibt es Gran Canaria Küche vom feinsten. Ich hatte ein Dreigängemenü: Vorspeise: Tartar vom roten Thunfisch, Hauptspeise: gebratenen Lachs und zum Dessert ein warmen Käsekuchen. Das Tatar war exzellent, der Lachs wurde mit einem Carpaccio aus Mango Zwiebeln, Tomaten, etc. dekorativ serviert. Schmeckte herrlich und konnte mit dem tollen Dessert abgeschlossen werden. Das Ambiente ist ein bisschen einfach und rustikal, aber der gute Service und die sehr gute Küche sind ganz klar 5 Sterne wert. Absolut empfehlenswert für Feinschmecker zu guten Preisen.", "author": "Guido Wolf", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2NHFTWXpBRRAB", "timestamp": "a year ago"}, {"text": "No puedo valorar la comida porque me han dicho que tienen la cocina cerrada una hora antes de la hora publicada en Google y a pesar de tener varias mesas sentadas aún comiendo. Son libres de escoger sus horarios, desde luego. Pero quienes utilizamos la info de Google para decidir a qué sitios vamos agradeceríamos que la mantuviesen actualizada para evitar confusiones. Ya no estamos en 2010, señorxs de la restauración!", "author": "Jota Cerrese", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnMW95TGxnRRAB", "timestamp": "11 months ago"}, {"text": "Los camareros fabulosos y la comida riquísima. El postre, la torrija, es sublime!", "author": "Natalia Gomez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bFdGbDBURXB0VTJkMFptNXFOMUp3U2tZd1pYYxAB", "timestamp": "5 months ago"}, {"text": "Wir waren spontan zu zweit hier aufgrund der positiven Bewertungen essen und total begeistert. Sehr leckeres Essen, guter Wein, tolles Flair und guter Service. Was will man mehr?", "author": "Andre Reuber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2blBXOUJ3EAE", "timestamp": "a year ago"}, {"text": "Estuvimos cenando y estaba todo muy bueno. La atención es inmejorable y los platos que nos recomendaron, revuelto de carabineros y cachopos, estaban deliciosos. Quizá el precio algo elevado pero es cierto que es exclusivo, el local está bien pero necesitaría que diese más sensación de amplitud.", "author": "David", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNidElpNkJ3EAE", "timestamp": "a year ago"}, {"text": "Ayer estuvimos cenando allí y maravilloso. La comida buenísima, personal a cual mejor, servicio espectacular. Fichado. Calidad-precio super bien! Recomendado.", "author": "Marta O ́shanahan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJeDlib1pBEAE", "timestamp": "9 months ago"}, {"text": "Εξαιρετικό σέρβις! Το φαγητό απλά απίθανο! Μπράβο!", "author": "Μανωλης Γλατζης", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4aVBHblZREAE", "timestamp": "2 years ago"}, {"text": "Muy buen trato, comida perfecta, repetiriamos 100%", "author": "Maria Revuelta Arias", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CRFFrUnFhak5KVjNNeFQyODVZMFpZY0ROamJWRRAB", "timestamp": "3 months ago"}, {"text": "La comida espectacular pero el servicio inmejorable...el camarero(con gafas) que nos sirvió ha sido especialmente encantador y educado..fuimos con nuestro niño pequeño y nos han acomodado y han tenido sus detalles con él y se agradece", "author": "Patricia Gont", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvc0x5dXJ3RRAB", "timestamp": "9 months ago"}, {"text": "La comida normal , pero cara. Pretende ser un restaurante andaluz pero dudo que en esa comunidad te cobren 5.5€ por un tinto con limón. Pedimos unos huevos fritos con patatas para la niña y nos lo pusieron. Pero claro, al precio del plato de huevos con jamón, quitándole el jamón. Mal detalle. No volvimos en toda la semana, claro", "author": "Francisco", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3MS1tc2d3RRAB", "timestamp": "a year ago"}, {"text": "Increíble de principio a fin, el sitio muy bonito, la comida exquisita y con una calidad extraordinaria, la secuencia y el orden a la hora de servir los platos perfectamente estudiada, el trato del personal inmejorable, destacar la atención de Luis, la persona que nos atendió, educado, atento, cercano, súper profesional y con un trato y un saber estar exquisitos. Pedimos una botella de cava, zamburiñas, pan bao de cochino canario y langostinos, tartar de salmón, gyozas y de postre, fiesta de chocolate. Sin dudas, volveremos", "author": "I.C.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuakstU3lRRRAB", "timestamp": "a year ago"}, {"text": "Comida excelente\\nConviene reservar mesa.\\nEl guacamole espectacular\\nLos huevos rotos normalitos. La ensaladilla exquisita y el cachopo abundante. De los mejores fuera de Asturias, claro.\\nEl chef te explica los platos sin ser pesado y divo y te prepara in situ el guacamole,\\nmuy recomendable.", "author": "francisco sierra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3OGNYYmZnEAE", "timestamp": "a year ago"}, {"text": "Elegimos este restaurante para cenar y la comida nos pareció bastante pretenciosa para lo que realmente era. Escasa y bastante cara. Nos pusieron un servicio de MEDIA pulguita de pan por comensal con mayonesa, que no solicitamos y por el que nos cobraron 2,40€.\\nNo repetiría, ni aconsejaría.\\nLos camareros son muy atentos y serviciales.", "author": "Juan Antonio Mirabal", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcmZPN1V3EAE", "timestamp": "a year ago"}, {"text": "Un excelente sitio para comer o cenar, parada imprescindible.\\n\\nDestacar ante todo la calidad humana de los camareros, gracias por todo. 💛🌴", "author": "Sara Issaoui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPbmJTZzZRRRAB", "timestamp": "3 years ago"}, {"text": "Comida excelente, platos abundantes con ingredientes de primera calidad, volveremos.", "author": "Michele Ciliberti", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205UmRYRmxUV2hUYkVGUk1sRTVZbWc1WkhkeWNHYxAB", "timestamp": "5 months ago"}, {"text": "Fuimos a cenar un grupo grande de amigos que estábamos de viaje.\\nNos atendieron bien, comimos bien y precio razonable.\\nA mi parecer el mejor restaurante al que fuimos.", "author": "Jose Del Moral", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3eExpOEd3EAE", "timestamp": "10 months ago"}, {"text": "La comida estaba riquísima. El cochinillo estaba espectacular. El ladrillo de berenjena, y las brochetas de langostinos y queso muy recomendados también. Los camareros y el dueño súper agradables y atentos. En resumen, HAY QUE IR!", "author": "Laura Lázaro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIaXVpZ3hnRRAB", "timestamp": "a year ago"}, {"text": "Espectacular en una calle en las canteras la comida y el servicio de diez probar el cachopo es increible", "author": "richi iglesias", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsd2VqUmtXa3d3V2pCWmJFRXRlalJ4VkZwM2NrRRAB", "timestamp": "5 months ago"}, {"text": "Excelente atendimiento y una amplia carta de vinos. Platos elaborados y bien presentados. Elaborados con productos de calidad. Me lo recomendaron para hacer una comida de trabajo y salí muy satisfecho. 100 X 100 recomendable.", "author": "E. Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURybGYyTnZ3RRAB", "timestamp": "a year ago"}, {"text": "Espectacular el lugar, productos de calidad, trato profesional, muy recomendable,he ido varias veces y siempre que pueda iré ...muy recomendable", "author": "jonay frances", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Oa1NtRkdPSEJ1VEZOSk1VTXdWVWRaUVhOU2NGRRAB", "timestamp": "6 months ago"}, {"text": "Qué maravilla de descubrimiento este sitio la playa de Las Canteras de Las Palmas. Se come muy bien coma el sitio es espectacular muy bien atendido muy agradable. Probamos unos camarones a la parrilla espectaculares así como el CHERNE y la pata de cochinillo al horno... todo muy pero muy rico regado con una bodega interesante con muy buenos precios de vino. VOlvere.", "author": "Mac 629", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzc19fU2Z3EAE", "timestamp": "a year ago"}, {"text": "Buscando un buen sitio para comer por Internet, nos apareció este con muy buenas críticas así que nos decidimos a ir. Mejor acierto imposible, mesa para dos con reserva, la atención, el sitio, la mesa y la comida inmejorables. Como platos principales carrillera y presa iberica, muy muy bueno todo. Sin duda parada obligada en gran Canaria.", "author": "marcos rios", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuNzVXRUVBEAE", "timestamp": "a year ago"}, {"text": "Alles war Voll aber ich bekam 1 Stunde für mein Essen. Iberischer Schinken mit Bananen Butter. Tenderloin Medium mit Fritten und geflämmter Knoblauch Butter (Sehr gut).\\nMeinen Wein Wunsch (Fruchtigem Rotwein) wurde leider nicht erfüllt. Den Stern weniger gab es dafür. Das Ambiente war OK aber es könnte mal wieder etwas frische Farbe an die Wände.", "author": "Werner Kodric", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNua1BxUEdnEAE", "timestamp": "a year ago"}, {"text": "La persona que nos atendió asumo que era el dueño o administrador del restaurante. Él lo hizo de una manera muy profesional. A pesar de no tener reservación, hizo todo lo posible por ubicarnos en unas mesas. La comida es un poco más costosa que el promedio de lo que se comiera en otro restaurante de la zona. Sin embargo, tiene platos especiales que no se encuentran en otro lado. Todo lo que nos sirvieron tenía muy buen sabor y se veía muy fresco. Me dio la impresión de que los meseros aún estaban aprendiendo. Recomendado la entrada de berenjenas y el plato fuerte de pulpo.", "author": "Daniel Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMllPNk53EAE", "timestamp": "3 years ago"}, {"text": "Comida buenísima ( espectacular), platos bien surtidos y muy buena presentación, camareros y metre muy serviciales, amables y atentos sin agobiar… y sin dudarlo no se pueden ir sin probar algún postre… todos muy buenos… repetiremos", "author": "Eligia Reyes Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzblBqR2RBEAE", "timestamp": "a year ago"}, {"text": "Una experiencia perfecta.\\nLo más destacable, sin duda, es el gran trato y profesionalidad de los camareros, además de su gran predisposición: presentan los platos en la mesa y terminan de prepararlos delante del cliente.\\nLa comida es de total calidad y preparada con gusto.\\nEl local está cuidado al detalle. De los mejores restaurantes de la isla.", "author": "Alvaro Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwbWRiQW1RRRAB", "timestamp": "2 years ago"}, {"text": "Tiene un servicio muy bueno, y cerca de las canteras, pero la comida es normalita", "author": "Leticia Gonzalez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21reWRuRk5hbVp5Tm5GeU5XRnRXbmh2YjNkUFprRRAB", "timestamp": "3 months ago"}, {"text": "Un 10. Comida excelente, cada plato ha sido un espectáculo. Y el trato inmejorable.\\nVolveremos muy pronto. Enhorabuena!", "author": "David Troya", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBOUpDa0NREAE", "timestamp": "11 months ago"}, {"text": "Muy buena relación calidad-precio. Carne excelente. Trato estupendo", "author": "Lore Cereal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN01LVmNREAE", "timestamp": "6 years ago"}, {"text": "Servicio correcto. Comida a mi criterio aceptable/normal, no puedo decir excelente. Platos más bien escasos en cuanto a cantidad. Precio algo elevado respecto a lo ofrecido.", "author": "Gustavo Marco", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmbExubXZnRRAB", "timestamp": "a year ago"}, {"text": "Todos los platos que vas pidiendo van superando a los anteriores. Calidad excelente. Servicio muy bueno y agradable. Hasta teniendo un problema en.la cocina lo supieron componer sin que se notase. Tienen una carta pequeña pero todo está buenísimo", "author": "Le Patron", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROcW8zc1NREAE", "timestamp": "2 years ago"}, {"text": "La experiencia ha sido fantástica. La comida excepcionalmente buena y el trato muy bueno.\\nHemos ido en familia, los camareros conocen la carta, la recomiendan a la perfección y el plato que llega a la mesa hace honor a lo que te explican.\\nPedimos el timbal de ventresca, una ensalada muy fresca para el verano. Nos gustó el detalle de que la trinchen en la mesa.\\nLa carne está muy rica también. Muy suave y sabrosa. Pero el plato que nos enamoró fue el ladrillo de berenjena y queso canario. Creo que es obligatorio si no lo has probado.\\nEn definitiva estamos contentos del trato recibido, el servicio y la calidad de la comida. Altamente recomendable.", "author": "Héctor Chafla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN2Eyd2xBRRAB", "timestamp": "4 years ago"}, {"text": "Otro almuerzo de primer viernes de mes con los mejores amigos. Esta vez tocó un restaurante de moda, y con muy buenas referencias, muy cerca de la Playa de Las Canteras. Empezamos con unas cervezas bien frías y un jamón de Jabugo espectacular. Y seguimos con una ensaladilla rusa con langostinos, unos huevos estrellados con carabineros, unas gyozas, y una bandeja con bife de black angus, presa ibérica, papas, y pimientos de Padrón. Todo esto regado con unas cuantas botellas de vino tinto Ramón Bilbao crianza. Y de postre pedimos unas torrijas caseras, una fiesta de chocolate, y milhojas de plátano. Todo estuvo buenísimo y el servicio perfecto. Volveremos para seguir probando platos. Muchísimas gracias.", "author": "José María Plácido Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMeXN6bml3RRAB", "timestamp": "a year ago"}, {"text": "La atención del personal y del dueño o encargado, fue excelente, muy profesional, me sentí casi mejor que en casa. La cocina funcionó muy bien y rápida, sin olvidar ningún detalle, y todo me gustó. Lo pasamos en familia, muy bien y grato. Amenazo con volver....", "author": "Jose Luis Núñez Bravo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsa2VpLWVBEAE", "timestamp": "2 years ago"}, {"text": "La comida buenísima, el personal amable y el señor que va a las mesas a explicarte los platos que están fuera de carta un 10.\\nGracias", "author": "Aile Cg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvOUp5WmxBRRAB", "timestamp": "9 months ago"}, {"text": "Todo muy rico y la atención espectacular...", "author": "Yamila Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWcmJ1LUZnEAE", "timestamp": "2 years ago"}, {"text": "Der Mann mit dem Schnauzer ist mein Idol, das ist die wohl passendste Einleitung aller meiner Bewertungen!\\nIch hatte hier die schönste Zeit meines Lebens, hier wird sich noch um den Kunden gekümmert!\\n\\nIch empfehle jedem einen Besuch, das Essen ist sehr fein, die Angestellten sehr freundlich, vom Ambiente kaum zu sprechen.\\nDie Getränke werden ohne Mucks wieder gefüllt.\\nMir wurde sogar die Tür zur Toilette geöffnet!\\n\\nHier ist es übrigens 1h früher als in Deutschland, falls ihr das nicht wusstet!\\n\\nBitte geht hier her.", "author": "Paul Kalhorn", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKeTREc0N3EAE", "timestamp": "2 years ago"}, {"text": "Tanto el personal como la comida son excelentes. El trato fue exquisito desde el principio. Y se notaba un gran conocimiento de la carta, con buenas recomendaciones y una gran experiencia culinaria. Lo recomiendo encarecidamente.\\nDe precio en la media de los restaurantes de este tipo. No me parece caro para el servicio que ofrecen.", "author": "Javier Martin Zurita", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMycjh5UmxRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Los platos que pueden parecer típicos los hacen de una manera original, que están buenísimos. Y el servicio excelente, como si estuvieras en un estrella michelin, pero con una calidad/precio inmejorable. El camarero que nos atendió fue muy simpático y atento.", "author": "Carlos Herrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1MnVtYmxRRRAB", "timestamp": "2 years ago"}, {"text": "Muy buena comida, muy buen servicio. Muy buena experiencia.", "author": "GCarmen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOSGJuTnRjRzVaWlhkdFREaFBibU4yV1dKak0xRRAB", "timestamp": "3 months ago"}, {"text": "Wir waren am 22.01.2024 aufgrund der super Bewertungen im Rincon de Triana essen.\\nGuter Service, übersichtliche Karte und wir sind nicht enttäuscht worden. Lecker Fleisch vom Iberico Schwein und die Kroketten mit Schinken als Vorspeise waren auch köstlich.\\nPreis / Leistung stimmt vollkommen.", "author": "Julian Lohne", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0eE9xNzJ3RRAB", "timestamp": "a year ago"}, {"text": "Sencillamente espectacular. El mejor sitio en el que cenamos de todo Gran Canaria e incluso diría que en general.\\nLa ubicación es genial, en plena playa de las canteras.\\nEl servicio y la comida son más que increíbles. Más propios de un restaurante de un rango de precios muy superior.\\nCenamos el bao de pulpo, carrilleras en salsa y presa ibérica con patatas y pimiento. TODO DE 10/10.\\nEs que no le pondría ni una sola pega.\\n100% recomendable.", "author": "santi paleo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1OXBXMzBnRRAB", "timestamp": "2 years ago"}, {"text": "He ido dos veces porque lo conocí hace poco y la verdad que lo recomiendo al 100%. El personal es muy atento y los platos están riquísimos, todo lo que he probado está de 10.\\nSi van les recomiendo que prueben la Gyozas, hacen una mezcla de las empanadillas japonesas, con una salsa en base al Kimchi coreano que está que te mueres.\\nRepetiré seguro 👍", "author": "Kpasa!", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsM0lIbjlnRRAB", "timestamp": "Edited a year ago"}, {"text": "Buen servicio, la comida muy buena, bien preparada y presentada y muy buen servicio. Las zamburiñas preparadas y flambeadas muy original.", "author": "Ana María DG.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWNU42QWZBEAE", "timestamp": "2 years ago"}, {"text": "Camareros muy agradables y atentos. Buen sabor y buena cantidad y calidad. Muy recomendable.", "author": "Patricia Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXMllmakJnEAE", "timestamp": "3 years ago"}, {"text": "Genial opción para celebrar un comida/cena espacial. Buena ubicación en las canteras y comida de gran calidad. Algunos platos sorprendieron.", "author": "Carlos Carrión", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMmVlVEJBEAE", "timestamp": "9 months ago"}, {"text": "Hemos tenido la oportunidad de ir a cenar dos noches seguidas. Una pena haberles descubierto al final de nuestro viaje. Hemos probado varios platos, el tartar de salmón, aguacate, gyozas, solomillo... Todo de excelente calidad y buena presentación con un toque muy especial. El servicio y trato de los profesionales son excepcionales . Muchas gracias !!!", "author": "Esther Ureña Calle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPNWRMLW5nRRAB", "timestamp": "3 years ago"}, {"text": "La verdad que es un restaurante que merece muchisimo la pena. La atencion del personal, la amabilidad, la excelente calidad de la comida hacen una muy buena una experiencia gastronómica. Con la comida la disfrutas a cada bocado, una explosión de sabores. Quiero felicitar a todo el equipo del restaurante, nos ha gustado muchísimo, volveremos sin duda.", "author": "barrapan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacnRub1BnEAE", "timestamp": "2 years ago"}, {"text": "Comida excelente...como siempre. Trato excepcional...como siempre.\\nY esta vez, en la que nos acompañaba una intolerante al gluten, ese trato superó cualquier expectativa...\\nAmables si s servilismo, cariñosos incluso, cercanos, atentos. Hicieron de un gran día, un día MARAVILLOSO.\\nM GRACIASS!!!", "author": "Eduardo Adrián de Val", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaeDZyNWN3EAE", "timestamp": "2 years ago"}, {"text": "Buen restaurante.Buena comida y buena atención.Lo recomiendo", "author": "Juan Romero Lora", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25BMFV6ZE1kVXRVTnkwemVEbHFXbWRrWTNodVUxRRAB", "timestamp": "4 months ago"}, {"text": "No hay visita que haga a Las Palmas de Gran Canaria que no coma o cene allí. No podéis visitar la isla sin pasar por allí", "author": "Belen Martin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xYWJtNUpiMVIxWlhoMFpHRnhUV0ZtTkhwS2RHYxAB", "timestamp": "6 months ago"}, {"text": "Fui a almorzar con unos amigos,yo ya había ido en otras ocasiones y como siempre no defraudó y a mis amigos que no habían ido les gustó mucho.Calidad precio está bien.", "author": "Maribel Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvamREZm5RRRAB", "timestamp": "9 months ago"}, {"text": "Comida correcta pero precio un poco elevado.", "author": "Manuel Angel Gonzalez Lopez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1UGFraENkazkzV1dOeU1HMXpOVkptWkVaV1JFRRAB", "timestamp": "5 months ago"}, {"text": "Sin duda uno de mis restaurantes favoritos de la isla. Ya son muchas las veces que he ido y nunca ha fallado, tanto comida como servicio. Las gyozas de morcón son una maravilla.", "author": "Cesar Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfM2RQNmlnRRAB", "timestamp": "a year ago"}, {"text": "Estuve allí por casualidad hace unos meses y me encantó. Primero, el trato de los camareros, la verdad que hacen sentirte muy bien y atentos a todos los detalles. En segundo lugar, la comida. Fuimos a picar algo y estuvimos casi dos horas. Una calidad fantástica. A nosotros nos encantó el Solomillo al ajo tostado, fenomenal¡¡ En definitiva, un gran sitio para disfrutar de una buena comida, muy bien situado, y sin duda, para repetir.", "author": "JOSE ANTONIO LORA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZNzhMMVNBEAE", "timestamp": "6 years ago"}, {"text": "Un restaurante excelente, tanto la comida como el trato de los camareros. Recomiendo el bacalao en tempura, el ladrillo de berenjena y el tartar de atún, aunque este último lo tenían fuera de carta. Muy recomendado.", "author": "Laura Pano Sepúlveda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NmRfc3V3RRAB", "timestamp": "a year ago"}, {"text": "Todo de 10. Comida buenísima, de calidad, original, rica, preparada con delicadeza y muy bien emplatada. Camareros y camareras muy amables y atentos. En cuatro días que llevamos aquí he ido ya dos veces a cenar. Buenos precios. RECOMENDABLE 100%", "author": "Noelia Linares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwellTYW5RRRAB", "timestamp": "2 years ago"}, {"text": "Muy mal. Huevos rotos sin papas, tanto los de jamón como los de langostinos., la carne vulgar y por debajo del peso ofertado. Y sobre todo el servicio lentísimo, el personal seco salvo con sus amigos, el local ruidoso. Para no repetir, quizá salvo que seas conocido de la casa.", "author": "jose luis goizueta", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaNXFMamRREAE", "timestamp": "2 years ago"}, {"text": "Excelente situación, producto de la mejor calidad, rapidez y muy buena atención y el local es muy bonito👍👏👏", "author": "Sonia Gonzalez Joven", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxR1Yyb3dOVVJFTm0xWlEwVjJSMGR0WkZVMlRFRRAB", "timestamp": "6 months ago"}, {"text": "Excelente servicio, calidad y ambiente súper acogedor", "author": "Lola Herrera Legido", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkTVRtWlFkVEZLVFRJeU9HZEthakF4ZDFSdk1HYxAB", "timestamp": "a month ago"}, {"text": "Muy bueno todo y l@s camarer@s muy profesional. 👏👏👏👏", "author": "Giuseppe M", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURweE1DVUR3EAE", "timestamp": "2 years ago"}, {"text": "Essen ist soweit gut, allerdings relativ teuer für die Menge und es wird leider wieder ein kostenpflichtiger „Gruß aus der Küche“ serviert, bei dem man vorab nicht informiert wird, dass es kostet.", "author": "Cedric Homann", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VLU1o3T3pFNUwyOVN3EAE", "timestamp": "8 months ago"}, {"text": "Ha sido un gran descubrimiento este restaurante, no sólo por el trato espectacular de todo su personal si no por la preocupación de que tuviera un menú vegano (que no estaba en carta) el cual me hicieron al momento y estaba delicioso. 100% recomendable", "author": "C & T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROeXJ5cm1nRRAB", "timestamp": "2 years ago"}, {"text": "Las porciones un poco escasas pero muy bien elaboradas", "author": "Martha Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmbk9tVmZnEAE", "timestamp": "a year ago"}, {"text": "La comida excelente y con un toque distinto.\\nEn la atención todo el servicio excepcional. Muy bien de precio.\\nDéjense asesorar. No fallarán", "author": "aida elorriaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MXNtZENBEAE", "timestamp": "a year ago"}, {"text": "I got mixed feelings from my experience in this restaurant. The starters were absolutely delicious but then our mains were pretty average. My boyfriend's meat was very dry and it came with flavorless homemade fries. I had crab with eggs but struggled to find any crab in my plate. For this reason this course was quite overpriced (15€). So were the desserts as well. They were good but not exceptional and cost 6,5€ each.\\nThe cherry on top (of the disapointment cake) was that the restaurant charged us for the bread which was served to our table even though we never ordered it. 1,20€ per tiny loaf of industrial bread. I know this practice (or scam) is common in mediocre touristic restaurants on the island, but I really wasn't expecting it from this place, as it seemed to be above standards. We won't come back, neither do we recomend this place.\\n\\nExpérience mitigée dans ce restaurant. Les entrées étaient excellentes, mais la suite n'a pas été à la hauteur. La viande de mon copain était très sèche, servie avec des frites maisons sans saveur. Pour ma part j'avais commandé le crabe, mais j'ai peiné à le trouver dans mon plat (qui m'a quand même coûté 15€). Les desserts sont corrects mais bien trop chers (6,5€).\\nLe cerise sur le gâteau fût de nous faire payer le pain qui nous a été apporté à table sans que nous ne l'ayons commandé. 1,20€ par petit morceau de pain industriel. Je sais que cette escroquerie est courante dans les restaurants type piège à touristes médiocre, mais je ne m'attendais pas à ce qu'elle soit pratiquée ici. Étant donné que nous avions déjà dépensé près de 35€ par tête, je trouve cela totalement malhonnête. Nous ne reviendrons pas, ni ne recommandons cet endroit.", "author": "Maureen Wadley", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoOGEzdV9BRRAB", "timestamp": "2 years ago"}, {"text": "Das Essen war sehr lecker 😋 und wir würden gerne wieder kommen, Nur zum Empfehlen\\n\\nNoch zum Empfehlen das Schweine Fleichs mit dem Räucher Käse. Last es euch schmecken wenn ihr dort seid", "author": "Tim Tom Noack", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYdnZQQW9RRRAB", "timestamp": "a year ago"}, {"text": "Siempre que voy no decepciona. Es de mis lugares preferidos de la isla, por servicio, por comida y por la relación calidad/precio. En Canarias a veces te tienes que gastar mucho para comer así. Las cañas además las tiran perfectas. 👌", "author": "Maria Viera Galvez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6aHFYUTVnRRAB", "timestamp": "a year ago"}, {"text": "Saatiin pöytä 4 henkilölle ilman ennakkovarausta. Laadukkaampi paikka, mutta mielestäni hinta-laatusuhde ei kohdannut täydellisesti. Alkusalaatissa upeat maut, lohi ja lisukkeensa perushyvää, ei säväyttänyt. Pöytäseurueen liha-annos taisi olla maukas. Jälkkärit ihan ok.", "author": "Johanna Manninen", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmdG9HMUlBEAE", "timestamp": "a year ago"}, {"text": "Deuxième passage et toujours aussi bien.... Des prix très corrects et des produits de qualité superbement cuisinés.... cochon grillé, poulpe grill et divin pain perdu.... Il est très bien noté à juste titre...", "author": "Alain Alain", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuNV83R053EAE", "timestamp": "a year ago"}, {"text": "Excellent restaurant !!! La viande est vraiment très bonne.\\nPensez à réserver pour être sûr d’avoir une table.", "author": "Julie B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRcE02SGxnRRAB", "timestamp": "10 months ago"}, {"text": "Ontzettend lekker gegeten, verse lokale producten. Medewerkers zijn ontzettend vriendelijk, houden alles goed in de gaten, en zorgen voor het gastvrije Spaanse gevoel. Ook dat er voornamelijk locals zitten, zorgt echt voor een Spaanse avond.\\n\\nOctopus is echt aan te raden, fantastisch gerecht. Ook de desserts zijn overheerlijk!", "author": "Koen Luiken", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKMTlyMkxBEAE", "timestamp": "2 years ago"}, {"text": "Muy recomendable. Recibimos un trato muy generoso, amable y explicativo. Ordenamos según las recomendaciones y fue genial. Todo muy de agrado en cantidad y calidad. Sabores muy identificados y nuevos para nosotros. Los postres fueron expectaculares y no se vayan sin probar LA TORRIJA. Mil gracias a los amigos que dejamos allí.", "author": "david vid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcHZUSFRBEAE", "timestamp": "3 years ago"}, {"text": "Buenísima experiencia culinaria. Cocina excelente, cuidada, sorprendente y buena relación calidad precio. La profesionalidad de cocineros y camareros se nota y es un gustazo disfrutar de su buen hacer. Si están pensando comer el las Palmas no dudes, te encantará.", "author": "Elena Lozano De Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtLTZtTEl3EAE", "timestamp": "3 years ago"}, {"text": "Todo estaba riquísimo, la carne súper tierna, la ensaladilla tenía un sabor increíble y encima tenían pan sin gluten 🥰", "author": "Cristina Acosta", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURROU51V2xRRRAB", "timestamp": "10 months ago"}, {"text": "Llevaba mucho tiempo sin comer en un sitio así, servicio muy top desde que llegas hasta que te vas , te informan muy bien de cada plato , y te sirven de 10. La comida super rica, pan bao de pulpo ,gyozas,zamburiñas y solomillo rincón fue lo que pedimos nosotros. Volveremos sin duda", "author": "Cristian Martín Cardona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEenBuTTBRRRAB", "timestamp": "a year ago"}, {"text": "Maravilloso.. celebramos el cumpleaños de mi abuelita..y la atención..el servicio..y la comida espectacular...sobre todo por parte del camarero Jesús..una atención excelente.. muy recomendado", "author": "Cyntia Gutierrez Nuñez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRZ2JmaUlREAE", "timestamp": "10 months ago"}, {"text": "Eine Ausnahme in der Menge der Strandrestaurants. In einer kleinen Seitenstraße. Kein Strandblick!\\nAber: sehr freundliche Bedienung, kleine Speisekarte mit ausgewählten Leckereien.\\nHaben nur Vorspeisen gegessen, alle geteilt!\\nDas Spielchen wurde vom Ober mit Begeisterung mitgespielt. Gute Beratung!Immer neue Teller und jedes Mal eine Geschmacksexplosion auf der Zunge. Dazu gute Weine ( By the Glas ! ) zu einem moderaten Preis. Wir kommen gerne wieder!!!", "author": "Hubertus Schmidt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCbDVyeEZnEAE", "timestamp": "2 years ago"}, {"text": "Ubicado cerca de la playa de las canteras, en una de las calles perpendiculares al paseo marítimo.\\nLa comida, muy rica. Comimos guacamole, ensalada de ventresca y cochinillo a baja temperatura. La experiencia muy buena, con un servicio atento y dispuesto. Horario amplísimo. Con precios ajustados.\\nTotalmente recomendable.", "author": "Josu H C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaTdTZTZ3RRAB", "timestamp": "2 years ago"}, {"text": "100% recomendable. Buenos precios. Servicio excelente y personalizado. Admiten mascotas en la terraza. Comida exquisita. Solamente le falta que le den una estrella michelín porque se la merecen. Admiten reservas. Zona de lujo a 30 segundos o menos del paseo de las canteras. Vamos para repetir una y otra y otra y otra vez.", "author": "Jesús García Alfonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWcmVUbjNnRRAB", "timestamp": "2 years ago"}, {"text": "Wir waren zu 6. dort essen und bei 2 Leuten war das Fleisch einfach noch roh obwohl well done bestellt wurde. Der Kellner hat die Teller wieder mit genommen und bei einer Person war es perfekt und bei der anderen Person leider noch sehr zäh", "author": "Sascha Dronszkiewicz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxcW91T0V3EAE", "timestamp": "2 years ago"}, {"text": "Fuimos improvisadamente y no nos decepcionó, al lado de las canteras, un rinconcito muy especial, el camarero muy atento nos atendió estupendamente. Los platos excelentes, pedimos tartar de ventresca, ensaladilla y cochinillo, acompañamos con dos vinos ribera y Rioja también muy en sintonía.", "author": "Raquel Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoN0tMVWNREAE", "timestamp": "2 years ago"}, {"text": "10/10. Salimos súper contentos del local.", "author": "Oliver Castillo Rodríguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkVlpGaFVWMlZPZVROMGJEY3dhMjAyVVhSU1ZHYxAB", "timestamp": "4 months ago"}, {"text": "Muy buena relación calidad precio. Trabajan bien y la atención exquisita. Sin duda es para repetir y probar el resto de la carta. La para asada a baja temperatura nos sorprendió mucho. También la merluza con salsa de trufa", "author": "Joel Pérez Izquierdo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1dmVHTnRBRRAB", "timestamp": "3 years ago"}, {"text": "Hoy hemos comido aquí y no teníamos reserva, nos han atendido enseguida , con mucha amabilidad, todo el personal es de 10 y la comida muy buena, también tienen una excelente carta de vinos, muy recomendable ir a comer aquí, sin duda si vuelvo a Gran Canaria los volveré a visitar.", "author": "Consuelo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcXBTMkRnEAE", "timestamp": "a year ago"}, {"text": "Comida exquisita, la combinación del Carpaccio con trufa y helado fue una grata sorpresa para nuestro paladar, de segundo pedimos gyosas con salsa Kimchi, estaban sabrosísimas, la pasta en el punto perfecto de cocción. Lo mejor de todo, el personal de sala, destacando a nuestro camarero Moisés, un gran profesional. Mi enhorabuena por el gran trabajo de todo el equipo.", "author": "Aida Salas", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKcExYVWRBEAE", "timestamp": "2 years ago"}, {"text": "Me quedé bastante sorprendida.\\n\\nComida calidad precio inmejorable.\\nEl mejor carpaccio que he probado.", "author": "Irene Morales Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURReE11dEtnEAE", "timestamp": "10 months ago"}, {"text": "Hacia muuuucho tiempo que no disfrutaba de lo que es un buen servicio y una magnífica comida, por sitios como este yo podría arruinarme , muchísimas gracias chicos fue una cena espectacular. Repetiremos", "author": "Car Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIcE5lLWJBEAE", "timestamp": "a year ago"}, {"text": "voll gutes Essen und die Bedienung echt Klasse. Zu empfehlen, alles, aber vor allem Cachopo , Gyozas und Pulpo. Alles mit gutem Wein servirte. Tolle Erklärungen bei jedem Gericht, klasse Kellner. Leider Location etwas versteckt aber das Lokal ist auch schön und die Tische groß genug.", "author": "Jorge CC", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4bU9ETFZBEAE", "timestamp": "2 years ago"}, {"text": "No hay palabras para describir este lugar porque cualquier terminología q apliques le queda corto. Espectacular la atención recibida por todos los camareros sin excluir a ninguno, asombrosa la calidad de los productos e impresionante la forma de presentarte los platos en la mesa. Sin duda un lugar q recomendaría para comer y cenar todos los días de la estancia", "author": "Natalia Martínez Tamará", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MTg2WVFnEAE", "timestamp": "3 years ago"}, {"text": "No puedo poner más estrellas a este restaurante porque no las hay.\\n\\nES-PEC-TA-CU-LAR.\\n\\nLos camareros amabilísimos, te cuentan todo, como se cocina, te recomiendan... UNA PASADA.\\nTodo lo que hemos probado estaba rico, sin duda recomendamos ir, por supuesto y en nuestro TOP 3:\\n\\nHuevos con gulas y gambas (no he probado otros así en mi vida)\\nCochinillo a baja temperatura con patatas (nada que ver con el cocinado tradicional del cochinillo, una experiencia nueva)\\nGyozas (Dios mío! Qué manjar!!!)\\n\\nEstuvimos de luna de miel y fuimos a cenar 3 veces, aunque me hubiera quedado allí cada día, de verdad MUY RECOMENDABLE.\\n\\nGracias a todo el equipo, impresionante :)", "author": "Nieves Úbeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyd2RXeFZ3EAE", "timestamp": "3 years ago"}, {"text": "Muy buena comida!!! Y el personal muy amable", "author": "Vicen Gallego", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSURxbi0xVhAB", "timestamp": "4 years ago"}, {"text": "Ambiente muy agradable. Tanto el dueño como todo el personal muy profesional. Comida exquisita. Un poco de ruido pero si todos habláramos más bajo otra cosa sería. Totalmente recomendable", "author": "Maripi", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKcHU3YklBEAE", "timestamp": "2 years ago"}, {"text": "Bien, para mí gusto y con la variedad/cantidad que tenemos ahora en Las Palmas, un poco caro", "author": "Chany Morales Vega", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w4dFQyWTBOMDVLZFVkQ1ZqVXpOSFp2VlhadVQyYxAB", "timestamp": "6 months ago"}, {"text": "Durch die guten Bewertungen aufmerksam geworden, haben wir heute mit Freunden ein kleines Juwel entdeckt. Etwas versteckt gelegen, ganz in der Nähe des Las Canteras Strandes. Aussergewöhnliche Küche, freundliche Mitarbeiter und ein gutes Preis-Leistungsverhältnis im netten Ambiente zeichnen dieses Lokal aus. Wir werden wieder kommen.", "author": "Brigitte Gansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyMDctV01REAE", "timestamp": "3 years ago"}, {"text": "No hay otro lugar como este. Exquisitez en la carta, amabilidad del equipo, pulcritud, sencillez y mucha vanguardia. Está riquisimo y es mi sitio de confianza cada vez que quiero celebrar algo especial. Recomendado 100%", "author": "Ruth SZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkLVBMVUVBEAE", "timestamp": "a year ago"}, {"text": "Restaurante de nuestros preferidos en la ciudad. Ofrece un trato estupendo y una comida de calidad, está todo muy rico. Variedad de vinos. Recomendable.", "author": "Yo Misma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMajlfMTR3RRAB", "timestamp": "a year ago"}, {"text": "Hoy comimos en este establecimiento. Tiene una carta bastante completa. Los platos que pedimos estaban muy ricos.\\nLa atención del personal es de lo mejor que he visto. Está muy bien la relación calidad-precio. Seguro que volveremos.", "author": "José Luis Mesa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNMGVXUXp3RRAB", "timestamp": "6 years ago"}, {"text": "Sin duda, uno de los mejores restaurantes de Las Palmas de Gran Canaria. Buenísima relación calidad precio. El servicio atentísimo. La comida espectacular (especial recomendación el tartar de salmón y un plato que llevaba berenjena y queso). De locos.", "author": "Ana Sampedro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydS1HTHhnRRAB", "timestamp": "3 years ago"}, {"text": "Restaurante muy recomendable. Vine a comer solo y tanto la comida como el servicio fueron excelentes. Buenas recomendaciones y platos fuera de carta. Un 10, me gustaria destacar el servicio, fue inmejorable.", "author": "Pablo Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURab1luWGFBEAE", "timestamp": "2 years ago"}, {"text": "Todo bueno... Para resumir y el dueño simplemente un tío de p. m. Tiene otro restaurante ya en las canteras a 30 mtr de este. Buena calidad sin duda de los productos y podrás probar en Gran Canaria los famosos tomates de Los Palacios y Villafranca de Sevilla... Todo un lujo que se curra el dueño. Chapó", "author": "ANTONIO FERMU", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlOTZEdkF3EAE", "timestamp": "3 years ago"}, {"text": "Ha sido un placer comer en este sitio, no sólo por la increíble comida, si no también por la atención recibida, sobre todo por parte del equipo y destacando a Moisés.\\nPlatos a destacar: las empanadillas, el solomillo y la torrija", "author": "L MCL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREcmY3ZExREAE", "timestamp": "a year ago"}, {"text": "Un restaurante q te sorprende, la atención y los platos, el personal explicando los platos fantásticos…. Mezcla explosiva de sabores , repetiremos siempre q podamos…pero de muy mal gusto cobrar 6€ por 5 trozos de pan muuuy pequeños. Eso es muy feo con la mesa y el ticket q se le hizo…. Siempre a mejorar….", "author": "Macarena Kanerotika", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCa3BQbDVRRRAB", "timestamp": "3 years ago"}, {"text": "Mangiato davvero molto molto bene. Consiglio la carne", "author": "Martina Galasso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5OGJPWFNREAE", "timestamp": "a year ago"}, {"text": "En pocos sitios te sentirás tan bien atendido. La comida está super rica y son muy detallistas, además de simpáticos, desde el cocinero hasta el camarero que te atiende en mesa. Para los amantes de la carne, el jamón y el vino está más que recomendado pero hasta siendo vegetariano puedes comer rico y variado. Yo pedí la ensalada con espuma de manzana, crujientes de langostinos y queso de cabra, ladrillo de berenjena y de postre milhoja de plátano. Todo estaba delicioso. Así que, me arriesgo a decir que lo recomiendo hasta para vegetarianos. Volveré seguro. Encima está bien ubicado, en la avenida de las canteras en una calle transversal. Comes y te das un paseo. :)", "author": "Alexandra Mejias Herrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXczgzcW1nRRAB", "timestamp": "3 years ago"}, {"text": "Ottimo ristorante con impeccabile servizio!tutto il personale, particolarmente attento e molto professionale. Ogni piatto viene descritto è spiegato nel minimo dettaglio. Cibo veramente originale e ottimo!super consigliato!!!", "author": "cecilia cecio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHaDlDLWpRRRAB", "timestamp": "4 years ago"}, {"text": "Carta variada con una comida muy rica, con una mezcla de sabores muy lograda. El trato de los camareros, inmejorable. Son encantadores y se nota que ponen todo de su parte para que los clientes estén satisfechos. Un gran descubrimiento!", "author": "Diana Mm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbW9meDNRRRAB", "timestamp": "5 years ago"}, {"text": "La comida es simplemente espectacular!! Diferente, buena y sabrosa. Destaco los camareros que son de 100👌!! Nos explicaron cada plato, sabían perfectamente lo que te estaban vendiendo. Sitio para repetir y recomendar", "author": "melisa solera delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2b19QQXpnRRAB", "timestamp": "4 years ago"}, {"text": "Todo un placer haber cenado anoche , productos de primera calidad y postres exquisitos además un buen servicio de mesa.\\nTotalmente para repetir.", "author": "andres cabral", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqdHJqOTRRRRAB", "timestamp": "a year ago"}, {"text": "Le cochon de lait était exceptionnellement bon, et les raviolis/gyozas au chorizo étaient également excellents. Le service irréprochable et agréables. Nous avons passé un très bon moment.", "author": "Sophie Cottin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyaXNLZkt3EAE", "timestamp": "3 years ago"}, {"text": "På dagen hvor vi i Danmark fik ny konge fejrede vi det med en dejlig middag på Rincon. Det bedste var en starter med rejer på spid med gedeost og aprikosmarmelade. Vi delte denne starter. Hovedretten blev anrettet ved bordet med flammer og elegance. Kødet var udskåret, præsenteret før servering. Var perfekt medium og meget mørt.\\nAfsluttet måltid med citrolikør the house.\\nSød, venlig, smilende, opmærksom betjening.\\nAnbefales hermed.", "author": "Kurt C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNONGNhdGxRRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien restaurante, buen servicio, y la comida expectacular", "author": "José Oliva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKc3YzVzdRRRAB", "timestamp": "2 years ago"}, {"text": "Si no es mi lugar favorito, pega en el palo. Excelente todo, mucho detalle en la combinación de sabores, la atención excelente de todo el personal, vinos buenisimos y de los pocos lugares de la isla donde EL MOZO SABE DE VINOS Y PUEDE RECOMENDAR 👏🏼👏🏼", "author": "Mar M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURUNGJtbXJ3RRAB", "timestamp": "a year ago"}, {"text": "Platos escuetos, sin ser brillantes y pocos elaborados. Nada que destacar para que pagar más de 60€ por cabeza. Salud y suerte amigos", "author": "Francisco José Santana Bernal", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNXNXRHZ3RRAB", "timestamp": "11 months ago"}, {"text": "Ayer día 4 de marzo comimos en éste maravilloso restaurante, la comida exquisita, el trato de 10,repetiremos..GRACIAS", "author": "Toñy Sosa moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRcnNHSzJ3RRAB", "timestamp": "10 months ago"}, {"text": "Tyvärr, trots väldigt bra omdöme så var inte detta vårt bästa val. Fina lokaler och trevlig personal. Rätterna dock inte den förväntade smakupplevelsen. Torsken var friterad och serverad med tunna pomfrits. Samma pomfrits som serverades till de väldigt goda kroketterna. Det ugnsbakade svinet smakade inget. Vi lämnade väldigt besvikna trots vita dukar och snygga lokaler!", "author": "Gunilla Xxxx", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5eXFxdVdREAE", "timestamp": "a year ago"}, {"text": "La comida y el servicio de 10. Volveré sin duda", "author": "Victor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNleUkzUjh3RRAB", "timestamp": "3 years ago"}, {"text": "Sitio al que regreso cuando voy a Las Palmas GC", "author": "Lucia L", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2prNFlrcFhZMXBqU3paYVpFNUhXbWRsZERGYWNXYxAB", "timestamp": "4 months ago"}, {"text": "Todo muy bueno: ambiente, decoración, atención y profesionalidad... si quieres comer algo diferente, darte un homenaje, muy recomendable. Sólo una cosilla, una sugerencia, cuidado con la sal... creo que se abusa un poco y deja algunos platos sin la posibilidad de disfrutar de sus sabores", "author": "S", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMkkzbWNREAE", "timestamp": "4 years ago"}, {"text": "Excelente comida, excelente servicio, muy buena carta de vinos. Ambiente tranquilo para ir con amigos o familia. He comido en varias ocasiones y seguiré acudiendo….", "author": "Carmen Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwMkszYnR3RRAB", "timestamp": "2 years ago"}, {"text": "Es la segunda vez que almuerzo allí. La comida muy buena, el servicio muy profesional y atento. Tiene una carta de vinos muy extensa. El ambiente muy agradable", "author": "Emilia R.G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwbl8zNkNBEAE", "timestamp": "2 years ago"}, {"text": "Carta moderna y sugerente con ingredientes no tan habituales. Servicio atento. En nuestro caso algún plato muy sabroso, tartar de salmón, otro bastante plano para lo esperable, judiones con perdiz, y un bife sabroso.... Pero frío, y la respuesta tras pedir una piedra fue un plato tibio, 5 minutos más tarde.. a pulir estas cosas", "author": "Gus Vega", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2c2ZUUXFnRRAB", "timestamp": "4 years ago"}, {"text": "Servicio excepcional, comida exquisita con una relación calidad, cantidad, precio muy adecuada. Recomiendo encarecidamente el plato de costillas, está preparado con la carne del costillar y es difícil encontrar un solo hueso. Pienso repetir.", "author": "Astorg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPc2V6am5RRRAB", "timestamp": "3 years ago"}, {"text": "Comida muu rica y elaborada. Una atención excelente de todos los camareros y una cosa wue me encantó es que en todos los platos te explicaban su composición y elaboración. Todo ello añadido al sitio espectacular. Simplemente 10", "author": "Rubén Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2ay02LVJBEAE", "timestamp": "4 years ago"}, {"text": "Buena comida y buen servicio muy recomendable", "author": "Disfrutar De los pequeños detalles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDX2VqbURBEAE", "timestamp": "5 years ago"}, {"text": "Hemos tenido una cena fenomenal! El vino estaba muy bueno y la comida tambien, el servicio es unico, ellos te explican todo lo que estas comiendo y ponen un monton de atencion en los detalles! Lo hemos pasado super bien!", "author": "Luce Burello", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXNkkzT013EAE", "timestamp": "3 years ago"}, {"text": "No lo conocía y me ha gustado mucho. La comida muy buena: el guacamole, la presa, el solomillo, el pulpo, todo muy rico. El servicio amable y atento a pesar de que era un domingo especial y había mucha gente", "author": "Emilia Fernández carnero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyNE5lNjZBRRAB", "timestamp": "3 years ago"}, {"text": "¡Muy bien! Se come muy bien y por las circunstancias especiales del covid-19 y el aumento de la pandemia por desgracia el grupo de jubilados lo hemos tenido que reducir a cuatro comensales. Seguro que repetiremos. Sólo observé otra mesa con más de tres metros de separación.", "author": "Gloria Muñoz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTXzh1ZjZBRRAB", "timestamp": "5 years ago"}, {"text": "Izcila apkalpošana un ļoti garšīgs ēdiens !", "author": "Ligita Viluma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxOWJhOEZ3EAE", "timestamp": "2 years ago"}, {"text": "Una buena experiencia en la primera visita a este lugar.\\nBuena comida, buen ambiente y sobre todo buen servicio. El precio un poco mayor en relación con otros restaurantes de la zona pero merece la pena probar.", "author": "Raúl Rodríguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzOGZpVUpBEAE", "timestamp": "5 years ago"}, {"text": "La comida estaba bien, aunque cantidades justitas. Los camareros muy amables. Lo malo es que estuvimos 40mn esperando a que nos atendieran y se equivocaron en algunas bebidas. Supongo que serán pocas personas para mucho trabajo o no lo sé.", "author": "Meli LH", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCMU8yQ0pREAE", "timestamp": "3 years ago"}, {"text": "Todo riquísimo. Una auténtica experiencia. El servicio muy amable y atento. Pocos sitios como este. Marca una diferencia con otros restaurantes. Muy bien de precio. Necesario reservar.", "author": "Christian Reyes Nicholas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldWFHaVN3EAE", "timestamp": "3 years ago"}, {"text": "Platos de excelente calidad,servicio impecable,protocolo covid excelente", "author": "Noemi Vidal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaGF1eW53RRAB", "timestamp": "5 years ago"}, {"text": "Endroit fréquenté par les locaux donc rassurant. Service très agréable et cuisine au top!! Très belle expérience culinaire. Très bon moment", "author": "Pierre P.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNTcyckNREAE", "timestamp": "2 years ago"}, {"text": "La comida estaba muy rica y el trato fue inmejorable en todo momento. Repetiremos seguro porque sitios así de completos hay muy pocos.", "author": "Victor Gutierrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6aG9UTHR3RRAB", "timestamp": "a year ago"}, {"text": "Un sitio maravilloso para compartir con amigos y familia la comida estaba buenísima, el servicio impecable. Lo recomiendo 100%.\\nCalidad precio excelente", "author": "Susi Rodriguez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKd3RPVWpnRRAB", "timestamp": "2 years ago"}, {"text": "Спасибо за прекрасный вечер!\\nЕда 5*\\nСервис 5*\\nВино 10*😉", "author": "Olexis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtekozS1p3EAE", "timestamp": "3 years ago"}, {"text": "Un sitio muy recomendado. Los camareros muy amables te hacen explicación de todos los platos y los terminan en el momento en tu mesa. Muy buena calidad de productos, además esta todo riquísimo", "author": "Marta CP", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eExubEpnEAE", "timestamp": "4 years ago"}, {"text": "Una maravilla de sitio, recomendado si quieres una experiencia gourmet, producto increíble !!!", "author": "Salvador Verdugo Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTGtudEwtbDhHMG5RRRAB", "timestamp": "8 months ago"}, {"text": "Espectacular. En trato, en servicio , en rapidez y sobre todo estamos hablando de una cocina que va un paso por delante de buena comida, ya hablamos de una cocina de autor. Y buen conocimiento para aconsejar un buen maridaje.", "author": "Eduardo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNXNUTXNRRRAB", "timestamp": "3 years ago"}, {"text": "Sabrosa cocina española la que elaboran en el Rincón de Triana, a escasos metros de la Playa de Las Canteras. Buen producto, mucho sabor, un toque de creatividad, raciones generosas y precio contenido. Sin duda una opción muy acertada en Las Palmas de Gran Canaria.", "author": "Christian Pérez Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTZUYjhBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Un buen restaurante, buen precio y muy agradable. La comida está muy buena, y el menu es variado. El servicio es lo que mas destaco, el camarero John muy profesional.", "author": "Tara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURacjZ6My1nRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien la comida y el trato pero no me gustó que la mesa no tuviese mantel y que la salsa de macho esa de mango era muy escasa el solomillo ibérico de cerdo lo sirvieron con batata no de papá y un poco caro paro la calida de la comida que era muy buena pero para mí los entrantes eran caros", "author": "Saruca Calixto Toledo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCb2F1NmNnEAE", "timestamp": "3 years ago"}, {"text": "Comida muy elaborada con producto excelente y servicio aún mejor, muy profesional. Rafael el “vasco-canario” un crack! Muy recomendable.", "author": "Rut Osambela", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQME1MMXVRRRAB", "timestamp": "a year ago"}, {"text": "Cocina y producto espectacular. Tiene una selección de vinos como en pocos sitios. La atención inmejorable. Come y disfruta de la historia de cada plato.", "author": "Fernando Vélez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtdXI3MlNnEAE", "timestamp": "3 years ago"}, {"text": "Fast schon Fine Dining, nur wenige Meter von der Strandpromenade Las Canteras entfernt.\\nWer etwas außergewöhnliches sucht, wird es hier finden.", "author": "Catrin Reuber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2ckt1cTVnRRAB", "timestamp": "a year ago"}, {"text": "El encargado utilizo la misma tactica que otro restó del lugar \\"esta todo reservado\\" (el 90% de las mesas vacias un sabado a las 14hs). Roza lo xonófobo, elegir a quien atender. De todas formas los que atendian tambien nos dieron mala impresion en cuanto a lo salubre, media vuelta y a buscar otro lugar que quiera trabajar y atender bien a clientes que van a dejar una buena pasta. No lo recomendamos, ojala atiendan a los bornones a ver si los aceptan o les dicen que no....jaja\\n\\nPd: esto sucedio en este local. Como dato adicional recuerdo que consultamos si disponian de aire acondicionado y nos ofrecieron dijeron \\"se podrian sentar cerca de la entrada\\"(???)\\n\\nPor suerte luego de que ustedes nos dijeran que tenian todo reservado enco tramos un lugar donde nos atendieron de maravilla (Piemonte) al cual le realizaré una reseña con cinco estrellas.", "author": "Ezequiel Donadio", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1cThEbHdRRRAB", "timestamp": "3 years ago"}, {"text": "Comida y servicios inmejorables. El camarero que nos atendió, John nos dio un trató y llevó a cabo un servicio espectacular. Mario, el dueño, de 10. Totalmente recomendable.", "author": "José Carlos Olivero Ortega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKLXFleG5nRRAB", "timestamp": "2 years ago"}, {"text": "Excellent restaurant à tous points de vue.\\nIl me faudrait parler de chaque plat.. Les petites noix de Saint Jacques, le guacamole,, extra !! Les gyozas.. Juste une merveille !\\nTout était parfait digne d'un étoile..\\nMerci !!\\nJoëlle et Yves", "author": "Joelle Weber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNocGNHS0l3EAE", "timestamp": "2 years ago"}, {"text": "Muy buena comida, magnífico servicio. Unos platos exquisitos sobre todo el timbal de ventresca y el ladrillo. La carne muy rica. Repetiremos. Muchas gracias por la atención y servicio.", "author": "M Rm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN2RYNzlRRRAB", "timestamp": "4 years ago"}, {"text": "Mycket bra mat till rimligt pris", "author": "Thomas Klevås", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNybk12VjBBRRAB", "timestamp": "a year ago"}, {"text": "Sehr gutes Restaurant sehr freundliche und zuvorkommende Bedienung erklärt viel rund um die Speisen und lässt sich Zeit bei der Beratung das Essen war ausgezeichnet und reichhaltig der Preis ist auch völlig ok für das was geboten wird gern wieder", "author": "Simon Richter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1LTRlZGNREAE", "timestamp": "3 years ago"}, {"text": "Me gustó mucho. Ambiente agradable, la comida excelente y un trato agradable.\\nDestacó el guacamole hecho en Mesa.\\nRecomendación: ampliar la oferta vegetariana.", "author": "Ana Maria Ronda Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcjV1NjVnRRAB", "timestamp": "3 years ago"}, {"text": "Buen ambiente, buen trato y mejor comida", "author": "Raquel Padrón", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210MlNXSllNbGRsVVhwUVFWbFdiR016YVZkYVRYYxAB", "timestamp": "5 months ago"}, {"text": "Muy buen sitio para comer. El servicio y atención es magnífico. Repetiremos. La comida muy buena. Quizás en los postres, concretamente la torrija, no muy acertado.", "author": "R TP", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSa2JUS1BBEAE", "timestamp": "2 years ago"}, {"text": "Fuimos a cenar en Nochevieja y solo tengo buenas palabras. El trato y la atención fueron muy buenos, también la comida y el ambiente.\\nLo recomiendo.", "author": "Patricia Silva", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxeGRxRFJBEAE", "timestamp": "2 years ago"}, {"text": "Sitio excelente para celebrar el día 31 de diciembre. Comida muy buena y ambiente fantástico, camareros fantástico y buen trato. 100% recomendado", "author": "irina Silva Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxcVlmazBBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente luga, es un espectáculo! 1000% recomendado !", "author": "Reducing Body", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTlhd1V3EAE", "timestamp": "2 years ago"}, {"text": "¡Qué grata sorpresa y qué maravilla tener un restaurante como este tan cerquita!\\nLa carta es ESPECTACULAR, pero es que si encima, el personal es tan atento, agradable y profesional, hacen de este lugar un indispensable de la ciudad ¡Para repetir y repetir!", "author": "Pilar S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyaGRxZm1BRRAB", "timestamp": "3 years ago"}, {"text": "Comida muy buena y sevicio exquisito.\\nBuena bodega de vinos. Y todo a un paso de Las Canteras. Por poner algún pero, aunque estaba climatizado, pasé un poco de calor", "author": "Vicente M. Ferrer Navarro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1cXUtTS1nRRAB", "timestamp": "2 years ago"}, {"text": "Una experiencia de 10.\\nEl trato inmejorable, la fusión de sabores en sus platos un espectáculo!¡\\nSi tuviera que recomendar un plato, sería las gyozas de morcón.\\n100% recomendable.", "author": "jennifer granados", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSdGVxNll3EAE", "timestamp": "2 years ago"}, {"text": "Fuimos a comer un grupo de amigos y nos encantó. La ensaladilla está buenísima, lo recomendamos al 100%!! Buena calidad y atención. Volveremos si venimos a Gran Canaria.", "author": "Alfonso Otero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcDV1X3l3RRAB", "timestamp": "4 years ago"}, {"text": "Lugar excelente, comida brutal, zamburiñas flambeadas en el momento riquisimas, pan bao, palitos crujientes de langostinos, sin duda para repetir ….", "author": "Laura Manzano Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OElPV1F3EAE", "timestamp": "a year ago"}, {"text": "De los mejores restaurantes en los que he comido en las palmas\\nMuy recomendable pedir las zamburiñas el crujiente de langostinos y queso de cabra la pata de cochino a baja temperatura y de postre las milhojas de plátano", "author": "Mario Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWNF9pV0RnEAE", "timestamp": "2 years ago"}, {"text": "Espectacular!!! Todo muy bueno, el servicio inmejorable. Calidad precio excelente….y el guacamole para mi el plato estrella!!!! 100% recomendable", "author": "Constanza Fornieles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURleWFPWkVREAE", "timestamp": "3 years ago"}, {"text": "En mi vida …. Gracias\\n\\nCarpaccio, postre torrija , guiozas pero lo que ya se lleva la palma es el pulpo\\n\\nNada más que añadir , el mejor de gran canaria sin duda\\n\\nIncreíble !!", "author": "Titanium Time", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNiNXJxWW9nRRAB", "timestamp": "a year ago"}, {"text": "Comer no es sólo alimentarse, los humanos somos el único animal que elabora su comida. Sin duda, en no menos de un par de cientos de miles de años, hemos aprendido a mejorar y conservar aquello de lo que nos alimentamos resultando el culto y cultivado humano placer del gusto, que diría Savarin. En el Rincón de Triana se puede, como en ningún otro sitio de Las Palmas, vivir la actualización de aquel largo proceso: las nuevas técnicas de cocina para mejorar los sabores de siempre. Pescado en cocción a baja temperatura, jamás pasado, en todo su sabor y frescura; carrilleras, o cordero, que se deshace en sabores en la boca. Steak Tartare, crudo, cómo no, pero en un punto perfecto si es el gusto.... Así, en una medida variedad, exquisitas preparaciones culinarias fruto del mejor saber.\\nVinos cuidados para acompañar. Y, con todo, precios ajustados.\\nQué más puedo decirles, de lo mejor.", "author": "Ismael García-Romeu Díaz de la Espina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNa19peVh3EAE", "timestamp": "6 years ago"}, {"text": "Un excelente sitio para degustar buenos platos y pasarlo bien entre amigos o familiares...", "author": "Misael Domingo Rodriguez Lamas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MzVMTERREAE", "timestamp": "a year ago"}, {"text": "Loistava pikkuravintola, joka ulospäin näyttää tavalliselta tapaskuppilalta, mutta on aivan muuta. Ruoka oli erittäin laadukasta, viinilista laaja ja viinien suosittelu osaavaa. Palvelu oli alusta loppuun ystävällistä ja ammattitaitoista. Paras ravintolakokemukseni lukuisien Las Palmasin matkojen aikana.", "author": "Marko Paasonen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCMmZtYW93RRAB", "timestamp": "3 years ago"}, {"text": "Meille tuotiin pyytämättä leipä, josta veloitettiin extra maksu. Ruoka oli hirveää, liha jäi syömättä. Menu hyvin suppea. Ruuan jälkeen erittäin huono olo koko illan ajan. Tarjoilija ystävällinen.", "author": "Lin da", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOUsyRGRBEAE", "timestamp": "3 years ago"}, {"text": "La comida bastante escasa, relación calidad precio poco acorde a las raciones....\\n\\nBuen ambiente y trabajadores entregados, pero creo q eso ayuda, pero no es lo único que se pide cuando se sale a comer...", "author": "Guacy Sos", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCNjZybkJBEAE", "timestamp": "3 years ago"}, {"text": "Un fraude ,la relación calidad precio es pésima,el queso canario era de goma de HiperDino,el solomillo en rodajas estaba seco ,soso y frío,la sal se la echan por encima en el plato no al cocinarlo, se creen que los adornos de crema al oporto mejoran y nada de nada,muy bonito el restaurante pero la imagen no sirve da nada si no das calidad y cocinas mal", "author": "RAMON SANCHEZ", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cjZyQ1FBEAE", "timestamp": "2 years ago"}, {"text": "Buena comida, buen servicio, ambiente acogedor y agradable. No es nada barato, pero tampoco excesivo. Necesario reservar", "author": "SENDER59", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREbDVMeDJ3RRAB", "timestamp": "a year ago"}, {"text": "Espectacular comida increíble e innovadora y un trato del personal increíble", "author": "Francisco Hernández Ramos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKeVAyZHVBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente experiencia. Jesús el que nos atendió, muy atento y amable. Volveremos seguro.", "author": "Ruben", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRX3JlaFJBEAE", "timestamp": "10 months ago"}, {"text": "Sorprendidos gratamente. Mi familia y yo quedamos encantadisimos al encontrar el que se ha convertido en nuestro restaurante favorito,comida de primera calidad y servicio de diez.Repetiremos sin duda, salimos con muy\\nbuen sabor de boca!", "author": "Janel K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxanF2RTBBRRAB", "timestamp": "4 years ago"}, {"text": "Sitio genial con un trato espectacular, comida muy buena, se nota que hay cariño por el producto que sirven. 100% recomendable.", "author": "Ardiel Estevez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNzhHZ1dBEAE", "timestamp": "Edited 2 years ago"}, {"text": "Todo muy bueno. De las mejoras croquetas que hemos comido, igual que la ensaladilla. Buen trato.\\nVino muy recomendable.\\nBuena calidad - precio.", "author": "Manuel Regal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN3FqRzRRRRAB", "timestamp": "4 years ago"}, {"text": "Fuimos 3 hermanos a nuestro almuerzo de Navidad y estuvo espectacular.La atención del personal fue inmejorable y cada plato que pedíamos nos explicaban el proceso.De lo mejorcito de Las Palmas.Volveremos sin duda.", "author": "Miguel Ángel Díaz Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTbnJpZ21RRRAB", "timestamp": "5 years ago"}, {"text": "Sencillamente espectacular, la atención los camareros, la cocina, los detalles, de los mejores restaurantes en donde haya comido en mi vida. con una cocina de autor y atención exquisita, situado en un entorno paradisíaco como es la playa de las canteras, en las palmas de gran canaria", "author": "IvanJack7x", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdHJTY01BEAE", "timestamp": "5 years ago"}, {"text": "Me ha gustado mucho este restaurante, sobretodo la atención recibida por parte del personal, muy amable y atento, la comida, original y muy buena lo que más la ensaladilla.", "author": "María Sofía Rodríguez Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlME5EVWh3RRAB", "timestamp": "3 years ago"}, {"text": "Lugar encantador, volveremos sin duda. Atención de 10 y la comida es buenísima.", "author": "Gazmira Morales Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQcHYzZFNnEAE", "timestamp": "a year ago"}, {"text": "Maravillosa experiencia culinaria, explosion de sabores y texturas. Local decorado con buen gusto. La atencion impecable. 100% recomendable.", "author": "Miguel Orihuela Naranjo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURScjV1VHZnRRAB", "timestamp": "2 years ago"}, {"text": "Sitio recomendado para comer y tapear, buena calidad / precio, excelente atención por parte de los camareros y el chef. 🧑‍🍳", "author": "Kelly Parra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNINklMRExREAE", "timestamp": "a year ago"}, {"text": "ES-PEC-TA-CU-LAR un lugar bonito y acogedor, donde la comida es hecha y servida con gran cariño y dedicación.\\nPlatos originales como el mojo con espirulina o el guacamole tradicional con un toque personal hecho delante del cliente. Y el solomillo al ajo tostado ...ummmmm una delicia, sin duda repetiré!!", "author": "Lara Palacio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwcnYzTzh3RRAB", "timestamp": "6 years ago"}, {"text": "El mejor restaurante de la isla.\\nTrato excelso\\nProducto de primera calidad.\\nRepetiremos!", "author": "miguel Nogueira romeo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMza05IWG5BRRAB", "timestamp": "a year ago"}, {"text": "Nuevo descubrimiento.Servicio excepcional.Dejaros llevar por los consejos de los profesionales,Ruben y Marc en sala.El dueño,un encanto,de Sevilla.De ahí lo de El rincón de Triana,creo😅.Los cocineros saben lo que hacen y así vuelven los platos a cocina. ..Vacios¡¡¡¡.\\nMuchas Gracias por todo.Volveremos", "author": "ALICIA SUAREZ RIVERO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaktET1hBEAE", "timestamp": "4 years ago"}, {"text": "Una carta perfecta en variedad y cantidad de plato. Son explicados todos ellos por un personal muy profesional que siempre está pendiente del cliente. He repetido varías veces y más que volveré", "author": "Jesus Madero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCc1lfWTZBRRAB", "timestamp": "3 years ago"}, {"text": "Nos gustó mucho la calidad del producto y la atención", "author": "Ana Bodero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRelZ6RXpla3BxWDJsRGNFUkJWMEY0UW1wbGQxRRAB", "timestamp": "6 months ago"}, {"text": "Hoy hemos estado comiendo aquí por el cumpleaños de mi mujer y la verdad que la comida y el trato espectaculares, repetiremos sin dudarlo!! Hasta le han cantado el cumpleaños feliz!!", "author": "Jordi Masferrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXN1B2RnlnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena comida, mejor servicio y atención. De estas sobremesas donde no tienes prisa por irte, ni ellos por que te marches. Se agradece un trato así.", "author": "Miguel Velázquez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDLVBLRjB3RRAB", "timestamp": "5 years ago"}, {"text": "Un lugar muy recomendable que cuida los detalles", "author": "Antonio SANTANA CRUZ", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwMlFVUk5OVkpwVWtwNFZuaHBiVVJoVkhBMFVsRRAB", "timestamp": "Edited a month ago"}, {"text": "Trato impecable. Platos exquisitos. Precios adecuados. Perfecto para disfrutar de una buena cena. La oferta de vinos es excepcional.", "author": "Smart Max", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhaDRyR3l3RRAB", "timestamp": "4 years ago"}, {"text": "Muy buena opción, con relación calidad precio sobresaliente.", "author": "Miguel Ángel Calvo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21FNWFHSTVYMnQwUmtndFpGVllNalpqVG1kSGQwRRAB", "timestamp": "7 months ago"}, {"text": "Comida moderna muy buena y dan la opción de comida más tradicional para niños también.\\nCamarero muy simpàtico.\\nHay cerveza cruzcampo.\\nRaciones algo escasas y algo caro.", "author": "Rosa Jimena", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyM0tHcGZnEAE", "timestamp": "3 years ago"}, {"text": "Buen servicio, buena comida, fantástico lugar", "author": "MANUEL CAMARENA ROSA", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tvMVFYVXlTV1kxVmtWVWJXdG1jblJIU3paelZsRRAB", "timestamp": "6 months ago"}, {"text": "Wir waren überrascht von dem sehr gutem Essen, hervorragende Service, bei Beratung der Speisen und Getränke (Weine und der Rum Azehuras) . Alles in allen wirklich gut.\\nMan spricht auch englisch😉", "author": "Uwe Böhler", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSeUtYdWR3EAE", "timestamp": "2 years ago"}, {"text": "Comida buenísima. Los camareros muy pendientes y serviciales.", "author": "Miriam Paréns", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBMlotWFJBEAE", "timestamp": "11 months ago"}, {"text": "Decepcionada la última vez. Las raciones más escasas. Jamón traído ya cortado. Poco vino al servirlo en copas y muy caro. Esta cambiando y es una pena", "author": "Victoria Hernandez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1N1pIMXBBRRAB", "timestamp": "3 years ago"}, {"text": "El trato espectacular, la comida exquisita, da igual lo que elijas para comer, ningún plato ye defraudará, voy siempre siempre que visito Gran Canaria.", "author": "Maria de la Luz Martin Miguel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPczhYbTlBRRAB", "timestamp": "3 years ago"}, {"text": "Comida deliciosa y camareros que te asesoran muy bien. Únicas pegas el precio y lo poco cuidadas las paredes.", "author": "Jose luis Gascon andreu", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNua0ktZlNnEAE", "timestamp": "a year ago"}, {"text": "He estado tres veces con un grupo grande. La comida exquisita y el trato también. Para repetir.", "author": "yelzhar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bW9EUW5RRRAB", "timestamp": "Edited a year ago"}, {"text": "Buena comida y excelente servicio. Roberto muy agradable", "author": "Luis Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3cEtyRDl3RRAB", "timestamp": "10 months ago"}, {"text": "Hoy llovía y me metí en un rincón......\\nY menudo rincón, por casualidad en mi último día en la isla ha sido un homenaje en toda regla. Esta gente ama lo que hace, local, servicio y comida para quitarse el sombrero.", "author": "Victor Moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNbTRQaHR3RRAB", "timestamp": "6 years ago"}, {"text": "De 10! La comida exquisita y el servicio excelente. Para repetir y recomendar sin duda", "author": "Mayte Doldom", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3b29QS19nRRAB", "timestamp": "a year ago"}, {"text": "Restaurante muy recomendable. Excelente atención, especialmente Rafa y Cristian. Muy buena relación calidad precio. Producto bien tratado. Volveré seguro", "author": "Laura Esther", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNMGRYTVp3EAE", "timestamp": "6 years ago"}, {"text": "Einfach nur gut. Absolute Empfehlung, sowohl Ambiente als auch essen. Die guacamole war besonders toll.", "author": "Felix Hartmann", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeE15VjJnRRAB", "timestamp": "3 years ago"}, {"text": "El personal que atiende es increíble pero la comida lastimosamente no lo es tanto… falta más gusto y variedad", "author": "francel iadevaia", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cWJDeE5BEAE", "timestamp": "a year ago"}, {"text": "Sitio excelente... No tengo palabras...platos elaborados con sabor increíble. Majisimos un trato increíble....vamos para repetir muchas veces!enhorabuena....", "author": "cristina flores", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1X2FPSkdnEAE", "timestamp": "3 years ago"}, {"text": "Comida muy buena, tanto la carne como el marisco. Rápidos, y súper amables 😊", "author": "Nadia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucjR6QXdBRRAB", "timestamp": "a year ago"}, {"text": "Hemos comido genial, platos diferentes y atencion exquisita, todo un acierto en estas vacaciones", "author": "ma pepi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsd3Vic0JBEAE", "timestamp": "2 years ago"}, {"text": "Los platos a destiempo y poca cantidad, el arroz a nuestro juicio estaba pasado, pagar 40 euros por persona y no invitar a una copa siendo más de 25 personas por no decir 30.Era el segundo año, pero ya quedamos que no iríamos más.Los camarer@s fueron geniales e hicieron lo que pudieron.", "author": "winnie", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCbG9yUHdnRRAB", "timestamp": "3 years ago"}, {"text": "Hyvä ruoka", "author": "Susanna Koponen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmck5uM0pnEAE", "timestamp": "a year ago"}, {"text": "Excelente servicio, muy buena calidad, cantidad adecuada.\\nUn poco ruidoso, sería porque estaban todas las mesas llenas 😊", "author": "Cristina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKbHUyUm5BRRAB", "timestamp": "2 years ago"}, {"text": "Nos gustó todo: la comida, el servicio, los precios, el ambiente… ¡Todo! Lo recomiendo sin duda!", "author": "Lucia Cobi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMeHBDUVJBEAE", "timestamp": "a year ago"}, {"text": "Todo muy bien, lo único, que el local no está bien insonorizado y para grupos, muy ruidoso. Muy buena comida y servicio", "author": "jose garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqaXNTWWZnEAE", "timestamp": "a year ago"}, {"text": "Restaurante muy recomendable comida riquísima servicio y trato muy bueno,se nota la escuela donostiarra 👍", "author": "benito rivera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIeDRXRmNBEAE", "timestamp": "a year ago"}, {"text": "Urig, klein und fein, zwar 50 Meter von der Strandpromenade entfernt, aber es lohnt sich. Wow, was für Speisen. Einzigartig. Sehr zu empfehlen.", "author": "Dieter Assenmacher", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTgtbHRnRRAB", "timestamp": "4 years ago"}, {"text": "100% recomendable!!! Trato excelente, comida exquisita y el personal es maravilloso. Seguro q repetiremos.", "author": "nuria martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCa3BQRWhBRRAB", "timestamp": "3 years ago"}, {"text": "Restaurante 100% X 100% recomendable, platos muy elaborados y de buena calidad, trato excelente y profesional, precios muy razonables. Sin duda volveré!!!", "author": "Oscar Muñoz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcy1qZ1h3EAE", "timestamp": "6 years ago"}, {"text": "Muy recomendable, comida riquísima y bien elaborada, servicio muy atento y unos postres espectaculares", "author": "Fernando Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKdjk3UzZBRRAB", "timestamp": "2 years ago"}, {"text": "esperienza molto positiva,personale gentile e premuroso ,cibo ottimo con prodotti locali,spiegati con pazienza ,posto molto carino ,ci ritorneremo", "author": "Ottone Tassi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsX09QZkZnEAE", "timestamp": "2 years ago"}, {"text": "La comida estupenda estaba todo buenísimo y el trato excelente, lo recomiendo sin lugar a duda", "author": "Carlos V. A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwMGVhUGV3EAE", "timestamp": "2 years ago"}, {"text": "Comida de calidad y atención de 10. Fusión de comida andaluza y canaria, con ingredientes de calidad y atención cuidada. Recomendables el ladrillo de berenjena, la presa iberica y el \\"polvito\\" de postre :)", "author": "Valme Pozo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbzUtNFFnEAE", "timestamp": "3 years ago"}, {"text": "Paikka ei ulospäin paljon lupaa ja on hieman vaikea löytää ensimmäisellä kerralla mutta ruoka on parhaita mitä olen syönyt koskaan. Vahva suositus.", "author": "tsti ydy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURocDVtejZ3RRAB", "timestamp": "2 years ago"}, {"text": "Expectacular todo, los crujientes de langostinos de muerte, el servicio buenísimo. Recomendable 100%.Bravo por sitios así. Volveremos sin duda.", "author": "Jimena Aristu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdUpiTDl3RRAB", "timestamp": "4 years ago"}, {"text": "josé y ale muy buen servicio", "author": "Virginia Gallinal Socorro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aNmJETkRSM0pOZG13elJEQkxORVpmY0RrNFozYxAB", "timestamp": "a month ago"}, {"text": "Todo espectacular, el jamón ibérico, el guacamole exquisito, el carpaccio y las gyozas impresionantes, un 100 sobre 10.", "author": "Nerea Vidal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsek1lbV93RRAB", "timestamp": "2 years ago"}, {"text": "Todo lo que tomamos estaba muy bueno. El servicio muy profesional. El local un poco ruidoso aunque han intentado arreglarlo.", "author": "Marily García-Vaca Pérez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSa3JyX2F3EAE", "timestamp": "2 years ago"}, {"text": "Platos muy elaborados y muy ricos, muy bien atendidos y explicado cada plato. El precio muy adecuado. Lugar para sorprender.", "author": "Pato Marcos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhNktxaU5BEAE", "timestamp": "4 years ago"}, {"text": "Excellent restaurant, superbe service, qualité des aliments, je recommande fortement cet établissement ! Encore merci pour cet belle soirée.", "author": "Guilhem Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdmF5aTR3RRAB", "timestamp": "4 years ago"}, {"text": "Ausgezeichnete Küche und beseelter Service! Wir bedanken uns herzlich für die beiden tollen Abende.", "author": "Simon von Styp", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqMTlQQmRnEAE", "timestamp": "a year ago"}, {"text": "Una muy agradable sorpresa. Excelentes camarones y jamón. Muy recomendable.", "author": "Will Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYbmVYenpRRRAB", "timestamp": "a year ago"}, {"text": "La comida muy buena y el trato excelente y el postre celestial si eres dulce disfrutarás con la milhojas de plátano y la tarta de santiago Buen Provecho", "author": "Verónica Monzon Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDaU5xWmxnRRAB", "timestamp": "5 years ago"}, {"text": "Un carta excelente y un servicio de diez, en cuanto atencion y calidad. Producto fresco y bien trabajado. Muy recomendable.", "author": "Pepelu Corleone", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwd1BpNjZ3RRAB", "timestamp": "6 years ago"}, {"text": "Platos bien presentados y exquisitos. Atención muy correcta buen ambiente", "author": "Linda Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxZ3VtanJRRRAB", "timestamp": "2 years ago"}, {"text": "Speisen und Service sind sehr gut, sicherlich höherer Standard, jedoch war mit die Portionsgröße etwas zu klein.", "author": "Nils M", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbktQOGZnEAE", "timestamp": "2 years ago"}, {"text": "Το μαγαζί δεν σου γεμίζει το μάτι αλλά το φαγητό είναι πολύ καλό.", "author": "Constantinus Flavius Valerius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmc3J1aGhBRRAB", "timestamp": "a year ago"}, {"text": "La comida excelente y la atención de Jesús muy muy buena muy profecional y atento os recomiendo muy bueno", "author": "Mariano Gutierrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRX3YzVHJ3RRAB", "timestamp": "10 months ago"}, {"text": "Ristorante piccolo, accogliente, personale presente cibo buono. Lista dei vini ok.", "author": "Mauro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlb0l5elBBEAE", "timestamp": "3 years ago"}, {"text": "Servicio y comida estupendos. Todo un descubrimiento. Los tiempos entre platos nos parecieron excesivos. Así todo, totalmente recomendable", "author": "Pilar Barquín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURha296cklnEAE", "timestamp": "4 years ago"}, {"text": "Esta restaurante es fácil para encontrar . No puedo encontrar algunos errores con la comida . Tu puedes dar cuenta que ellos saben como cocinar ellos pueden estar orgulloso en su trabajo.", "author": "Duncan Stone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2MzdIakJ3EAE", "timestamp": "4 years ago"}, {"text": "Sitio excelente, el metre Mario es de los mejores de la ciudad, otro restaurante que hace crecer a la ciudad como destino gastronómico, gracias por darnos la oportunidad de saborear vuestros platos.", "author": "javi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNza0lDVHV3RRAB", "timestamp": "6 years ago"}, {"text": "Estaba todo riquisimo, un sitio muy recomendable.", "author": "Cristina Diaz Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnM3N5WFJREAE", "timestamp": "11 months ago"}, {"text": "Tolles Ambiente, freundlicher Service und gute Weinberatung. Der Iberico der beste, den ich je gegessen habe.", "author": "SusanneVerena", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURac01fNUl3EAE", "timestamp": "2 years ago"}, {"text": "Comida excelente y bien presentada. Servicio esmerado. Sin duda para repetir y recomendar", "author": "Jovanetta Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNadWQzQ1hnEAE", "timestamp": "2 years ago"}, {"text": "Muy rico todo trato muy bueno siempre pendientes era un día especial para la familia y no nos defraudaron muchas gracias", "author": "Montse", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cmZLRWxRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Comida y trato al cliente inmejorable. De los mejores lugares donde he comido en Las Palmas.", "author": "J", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIa1lESkt3EAE", "timestamp": "a year ago"}, {"text": "Comida excelente y servicio maravilloso. Mi nuevo restaurante favorito en Las Palmas!!", "author": "Helen Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN0bE0yNkNBEAE", "timestamp": "a year ago"}, {"text": "Efectivamente es un rincón,pero de triana nada.Bastante caro y muy poca cantidad en los platos,si quieres pagar mucho por un degustacion que no esta mal adelante es tu sitio", "author": "Toni Lionblanco", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5bnBXSjdBRRAB", "timestamp": "4 years ago"}, {"text": "Una Maravilla.\\n\\nLugar muy cuidado, profesionalidad en todo momento y calidad espectacular en sus platos.\\n\\nEnhorabuena", "author": "Luis Ruiz de Alarcón Quintero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cU9ENHp3RRAB", "timestamp": "2 years ago"}, {"text": "El sitio es espectacular y si llamas con antelación preparan un menú vegano exquisito.", "author": "Consulta médica", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5bW9QSFhnEAE", "timestamp": "a year ago"}, {"text": "La atención muy buena y la comida riquísima. Fuimos a comer sin conocer el local y fue un acierto.", "author": "Luis Fernández López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4aGRUSTZnRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Nous avons été très bien accueillis et la cuisine est excellente !!!!", "author": "julie VICENZI", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqajViR3p3RRAB", "timestamp": "a year ago"}, {"text": "Me ha gustado mucho la comida y el servicio,personas agradables que te hacen pasar un buen rato.Repetiremos.", "author": "Carolina Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKcnBxdXpnRRAB", "timestamp": "2 years ago"}, {"text": "Una atención excelente y un menú delicioso realizado con productos de primera calidad. Me ha encantado", "author": "Alicia Pozo Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlakxyaTNBRRAB", "timestamp": "3 years ago"}, {"text": "Estaba todo buenísimo, el servicio muy bueno .\\nEn general todo super bien 👍👍😁", "author": "Pedro Tello", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MkplNGdBRRAB", "timestamp": "a year ago"}, {"text": "Fuimos en la cena de empresa, comimos muy bien, todo muy bueno.\\nCamareros muy amables.\\nMuy buen ambiente.", "author": "Beatriz Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtaGFTTml3RRAB", "timestamp": "3 years ago"}, {"text": "Es un restaurante que no te deberías de perder si vienes a gran canaria.un trato excelente del personal y una comida esquisita.lo dicho no te lo pierdas.yo repetiré alguna vez más.", "author": "Rafael García Cuerva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHMWZDd21BRRAB", "timestamp": "4 years ago"}, {"text": "Hemos ido 3 veces tanto de cena colo almuerzo,la comida es minimalista con calidad/precio lo recomiendo", "author": "Cameli Orosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSbU4yV3hBRRAB", "timestamp": "2 years ago"}, {"text": "Espectacular trato y servicio. Producto de calidad y bien tratado. Es una gran experiencia. Recomendable 100%", "author": "Alberto M.L.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1eDUzWEd3EAE", "timestamp": "3 years ago"}, {"text": "Excelente servicio y muy buena calidad de los platos. Volveré sin duda", "author": "Irene Santana Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSeVkyR3NBRRAB", "timestamp": "2 years ago"}, {"text": "Judiones con carrilleras, croquetas, pan bao y sama con salsa de foie", "author": "René Padrón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvbHBleVdREAE", "timestamp": "9 months ago"}, {"text": "Une bien jolie découverte à Las Palmas !\\nExcellente adresse… un service irréprochable avec le sourire !\\nMerci beaucoup", "author": "Élisabeth B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cklIdW9nRRAB", "timestamp": "2 years ago"}, {"text": "Productos de primera muy bien tratados. Servicio muy atento profesional y muy agradable.", "author": "Jm Bl", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQdnFuZjFBRRAB", "timestamp": "a year ago"}, {"text": "Calidad-precio en la media. Muy buen trato y la comida muy buena. La paletilla se deshacía en la boca.", "author": "Jorge AG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtcmN5b0dnEAE", "timestamp": "3 years ago"}, {"text": "Personal sobrio y acogedor. La comida una delicia. Me pedí el solomillo.", "author": "eduard tapia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYOTlUd0R3EAE", "timestamp": "a year ago"}, {"text": "Excelente ubicación, ambiente muy agradable y una comida exquisita. Desconozco los precios porque era una comida de empresa. Muy recomendable.", "author": "Balbu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzNzk3OEJBEAE", "timestamp": "5 years ago"}, {"text": "Una exquisitez de sabores, un buen equipo de trabajo y un gran nivel culinario... que te hacen sentir como en casa.\\n¡ FELICIDADES FAMILIA!", "author": "Luz Marina Sarmiento Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbmZqeFZ3EAE", "timestamp": "3 years ago"}, {"text": "El jamón es de primera calidad. Muy bien cortado. Platos muy bien elaborados", "author": "David", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNScnYtTE9REAE", "timestamp": "2 years ago"}, {"text": "Sitio perfecto para comer o cenar. Trato familiar, comida sabrosa. Recomendable 100%", "author": "Mercy Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXcWIyUnFBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "El personal muy amable y la comida muy buena y variada.", "author": "Josue R.S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzLWQ3ME5BEAE", "timestamp": "a year ago"}, {"text": "La comida es muy buena, de mucha calidad y diferente a lo que te suelen ofrecer otros restaurantes.", "author": "MIGUEL ANGEL SANTANA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcl9MNkJ3EAE", "timestamp": "4 years ago"}, {"text": "Comida muy buena, relación calidad precio bien,y, sobretodo,excelente servicio,personal educado, profesionales muy agradables", "author": "lola sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbl9LUFd3EAE", "timestamp": "3 years ago"}, {"text": "Mejor imposible, trato del personal maravilloso, comida estupenda....el carpaccio y la gyoza todo un espectáculo para el paladar.....100% recomendable.", "author": "Andres Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMjhQeEtBEAE", "timestamp": "Edited 2 years ago"}, {"text": "muy buenos todos los platos, originales, muy bien presentados, bien servidos y explicados, un sitio recomendable 100 por 100", "author": "Maria Angeles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMjVicVNBEAE", "timestamp": "4 years ago"}, {"text": "Un restaurante referente en Las Palmas de Gc, inmejorable en calidad precio y el personal un 10/10. Enhorabuena!", "author": "Dani Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGeU9PR1FBEAE", "timestamp": "2 years ago"}, {"text": "Restaurante acogedor, trato y profesionalidad, muy buena, la propuesta de carta variada y bien cocinada.", "author": "Jesus D.A", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtME9lanJRRRAB", "timestamp": "3 years ago"}, {"text": "Un lugar ideal con una cocina excelente y un servicio de sobresaliente\\nSin duda, lo recomiendo 100%", "author": "Isabel Valdés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNobmNlN2RnEAE", "timestamp": "2 years ago"}, {"text": "Perfekt bedient, perfekte Speisen! Gute Weine und super lecker!", "author": "Jonas Jansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWXzltc2ZREAE", "timestamp": "2 years ago"}, {"text": "Gran sitio para degustar platos de toda la vida de un forma diferente y con un toque personal. Recomendado al 100%.", "author": "Ivan San Juan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtdXQ3QjVnRRAB", "timestamp": "4 years ago"}, {"text": "Un servicio espectacular y comida muy exquisita. Me ha sorprendido gratamente.", "author": "Cristina González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN0aVBtQUt3EAE", "timestamp": "2 years ago"}, {"text": "Genial, excelente calidad de la materia prima, buena carta de vino, muy buen servicio, precio correcto", "author": "Melanie Lebourgeois", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwaXYzT2lRRRAB", "timestamp": "6 years ago"}, {"text": "Un restaurante que no necesita espectáculo para amenizar la comida por qué la comida ya es un espectáculo....\\nProbar la ensalada de espuma de manzana....", "author": "Oliver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIODdiakFnEAE", "timestamp": "a year ago"}, {"text": "Sehr leckeres Essen, eine gute Weinempfehlung dazu und ein aufmerksamer Service.", "author": "m w", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxb3ZXRm53RRAB", "timestamp": "2 years ago"}, {"text": "Como siempre la comida y atención inmejorables. Siempre que podemos nos damos un saltito. Recomendable al 100 %", "author": "Guille Carvajal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQycXV1d21RRRAB", "timestamp": "3 years ago"}, {"text": "Uno de los mejores sitios donde comer en Canarias y el trato exquisito. Precio calidad ✅️", "author": "Jorgelina Cabrera Reyes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPdU1mNS1RRRAB", "timestamp": "3 years ago"}, {"text": "Sitio recomendado, comida muy buena y buen trato.", "author": "Airam Peraza", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJa29tR0xBEAE", "timestamp": "9 months ago"}, {"text": "Servicio y comida inmejorable, camarero explica todos los platos y sabores, el mejor de la zona con diferencia.", "author": "Claudia Maldonado Morales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlemRyeDV3RRAB", "timestamp": "3 years ago"}, {"text": "Un lugar donde el buen comer te hace vivir una experiencia espectacular.\\nEnhorabuena por el buen hacer, volveremos.", "author": "José Manuel Begines Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURha1lxR1FBEAE", "timestamp": "4 years ago"}, {"text": "Producto de altísima calidad, servicio a la altura y elaboración creativa. Ne alegra mucho este tener este nivel en Las Palmas", "author": "CENTRO NEO PSICOLOGOS SCP", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXN19qTHVBRRAB", "timestamp": "3 years ago"}, {"text": "Anspråkslös lokal men suverän service och framför allt modern god mat och bra viner, rekommenderas varmt!", "author": "Danne Johansson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtdTdfS2J3EAE", "timestamp": "4 years ago"}, {"text": "Tanto la atención, el trato, servicio, producto y precio, perfecto! Un lugar para ser asiduo, sin duda alguna.", "author": "Jose Lorenzo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2ai1PanZRRRAB", "timestamp": "4 years ago"}, {"text": "Excelente servicio y atención, alimentos frescos, menú original y único, una experiencia muy grata.", "author": "J SC", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0czRtVk5nEAE", "timestamp": "6 years ago"}, {"text": "Es la primera vez que vamos, los camareros y lo que pedimos muy bien", "author": "Beatriz Quiros", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcHFLeGhnRRAB", "timestamp": "2 years ago"}, {"text": "Excelente calidad productos y servicio y sobretodo el camarero Moisés aconsejo el jamón", "author": "Jesus Abad Rica", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtZzliMTF3RRAB", "timestamp": "3 years ago"}, {"text": "Muy buena cocina española con excelente atención al cliente al lado de la playa de Las Canteras", "author": "Alfonso C. Saavedra Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdjQtODhnRRAB", "timestamp": "3 years ago"}, {"text": "Simplemente espectacular. Nos lo recomendaron y la verdad que no ha defraudado. Muchas gracias !!", "author": "Manuel Ramos Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxN3AySWdnRRAB", "timestamp": "2 years ago"}, {"text": "Local muy recomendable. La comida muy rica y el servicio excelente.", "author": "Guille Crucera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNscF9tTlhnEAE", "timestamp": "Edited a year ago"}, {"text": "Comida de 10. Servicio muy atento y amable. Una cena muy agradable.", "author": "B Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldDdidm13RRAB", "timestamp": "Edited 3 years ago"}, {"text": "Todo muy rico. Y el personal muy amable y atento.", "author": "Antonio I Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzanRmeURBEAE", "timestamp": "a year ago"}, {"text": "Lugar muy agradable y la comida muy buena.\\nEl servicio de lo mas atentos.", "author": "Erenia Portillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGNXF5cHZ3RRAB", "timestamp": "2 years ago"}, {"text": "Comida buena ,intentan innovar pero te cobran 1,20 por la ración de pan. Calidad precio bien.", "author": "Pili Ballabriga", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2c09hbjhRRRAB", "timestamp": "4 years ago"}, {"text": "Trato muy profesional, atento. La comida muy rica, para paladal en cerca de sapores nuevos.", "author": "Laura Cucculelli", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwci1US1pnEAE", "timestamp": "6 years ago"}, {"text": "Relación calidad precio muy buena.\\nMe sorprendió el crujiente de Langostinos muy bueno 👌", "author": "Ramón González Peña", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCMHBuWFpREAE", "timestamp": "3 years ago"}, {"text": "Platos elaborados y diferentes.\\nBuena presentación, buen servicio y muy buena ubicación.", "author": "Luz Coba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwal9IdjFRRRAB", "timestamp": "2 years ago"}, {"text": "Muy recomendable, jamón de primera, todo riquísimo y bien servicio", "author": "VH7 _pro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldllLYUVREAE", "timestamp": "Edited 2 years ago"}, {"text": "Excelente la comida y la atención!\\nRecomendado el guacamole que te lo preparan en frente y la ensaladilla rusa con langostinos.", "author": "Jorge Andres Otero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDcGJiNVZBEAE", "timestamp": "5 years ago"}, {"text": "Calidad del producto,trato exquisito y precios ajustados.sitio para repetir frecuentemente...por cierto...la torrija de la abuela... superior", "author": "Antonio Mendoza Cano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDX3J1d2N3EAE", "timestamp": "5 years ago"}, {"text": "Comimos el sábado y fenomenal, tanto la comida como el servicio", "author": "Marisa Marcos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURicjhpN3N3RRAB", "timestamp": "a year ago"}, {"text": "Restaurante ubicado en la playa de laa Canteras. Buena comida recomendable nos gusto mucho su jamón.", "author": "Macpalomax", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2X3FyRGZREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Елена", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bGF6bFVNR05oYlVkVE5WWnpRMkpwVVZGNVFVRRAB", "timestamp": "a month ago"}, {"text": "100x100 recomendable... Profesionales tanto en cocina como en sala. Encima, buenas personas. Sigan igual.", "author": "Alby Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdVBMNmJBEAE", "timestamp": "5 years ago"}, {"text": "Aivan mahtava ruokaa. Pääruokana lihaa ja jälkiruokana pannukakkua jäätelöllä. Aivan mahtavaa.", "author": "Johan Järvinen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEX04tRU5REAE", "timestamp": "a year ago"}, {"text": "Buenísima la comida y mucho mejor el trato, me encanta este sitio.", "author": "Inmaculada García Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpNXJqUFZBEAE", "timestamp": "Edited 2 years ago"}, {"text": "La comida súper buena y el servicio genial. Nos encantó!!", "author": "Vanesa Del Pino Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1MVBQTHdRRRAB", "timestamp": "3 years ago"}, {"text": "Comida deliciosa y el personal muy atento en todo momento. Muy recomendable.", "author": "Antonio Francisco Manzano Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcXZ1eWRREAE", "timestamp": "3 years ago"}, {"text": "Muy buen servicio, la gente super amable y la comida excelente a buen precio!", "author": "Mariona Figueras Barceló", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMkp5NE9nEAE", "timestamp": "3 years ago"}, {"text": "La comida muy buena la atención también.\\nEl inconveniente es que había un grupo de señoras gritando mucho y no supieron gestionarlo.", "author": "Mª Luisa Mellado", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwaWY2ZlF3EAE", "timestamp": "6 years ago"}, {"text": "Buen trato y muy buena comida. También cuentan con variedad de vinos", "author": "Daniel Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzejZ1US13RRAB", "timestamp": "5 years ago"}, {"text": "Muy buen servicio, exquisito cochinillo. Muy recomendable", "author": "Maria Soraluce", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcFAzX0RREAE", "timestamp": "a year ago"}, {"text": "Una atención adecuada acompañada de platos bien preparados. El vino a su temperatura.", "author": "Clemente Bobis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0emNDLUF3EAE", "timestamp": "6 years ago"}, {"text": "Sorprende los sabores y el trato exquisito, repetiremos. Enhorabuena!!", "author": "MARI CARMEN LR", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1aXNxbTlBRRAB", "timestamp": "2 years ago"}, {"text": "Buen ambiente, acogedor, moderno, su personal un diez. La comida acércate hasta allí y compruébalo por tí mismo", "author": "maria Cristina Dosil López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNczdfaEt3EAE", "timestamp": "6 years ago"}, {"text": "Nicht verpassen, Essen und Service gehoben, Atmosphäre und Preise nicht abgehoben!", "author": "Rolf Schu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxLXRPWTJRRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien. Un trato excelente. La comida exquisita.", "author": "Joseba Mendiguren", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlM3RiMDJBRRAB", "timestamp": "3 years ago"}, {"text": "Comida sorprendente por novedosa y rica.\\nEl trato súper profesional y calido", "author": "Cristobal Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTOGIyTElREAE", "timestamp": "5 years ago"}, {"text": "Comida riquísima. Muy buena experiencia aquí y personal muy simpático.", "author": "Anaëlle Rgmt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURramFDQ01BEAE", "timestamp": "6 years ago"}, {"text": "Lugar donde tomarse una cerveza bien fria", "author": "Familia Pascual", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJbDRMMEh3EAE", "timestamp": "9 months ago"}, {"text": "Muy recomendable, ojalá abran en Tenerife", "author": "María Jesús Brito Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3NHJMM29BRRAB", "timestamp": "10 months ago"}, {"text": "Sehr lecker. Tolles Restaurant, auch für einen leckeren Mittagstisch.", "author": "Matthes Müller", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cmEydEpnEAE", "timestamp": "4 years ago"}, {"text": "Muy buen servicio y buena comida. Altamente recomendable. Gracias", "author": "Carmen RS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtN01lUzlBRRAB", "timestamp": "4 years ago"}, {"text": "¡Me encanta!y ya estamos programando la próxima visita.", "author": "Isabel Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqMXJYZGlRRRAB", "timestamp": "a year ago"}, {"text": "Visita obligada. Con una cocina y trato espectacular. Mejor imposible!!!", "author": "Fran Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlc3JxWm5BRRAB", "timestamp": "3 years ago"}, {"text": "100% recomendable. Comida y servicio increíble.", "author": "Olivia Rodriguez Benitez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqdmE3NFpnEAE", "timestamp": "a year ago"}, {"text": "Excelente. Para repetir.\\nBuena comida y buen servicio", "author": "José Ramón Melián", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtMnJQYUpnEAE", "timestamp": "4 years ago"}, {"text": "Todo ya experiencia. Excelente!\\nBuena comida y servicio.", "author": "El correo que uso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaV9YcnR3RRAB", "timestamp": "a year ago"}, {"text": "Heerlijk gegeten, vriendelijke bediening. Aanrader…", "author": "jacqueline jansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMEotdUN3EAE", "timestamp": "2 years ago"}, {"text": "Fantástica comida, buen servicio..más que recomendable!!", "author": "Meritxell Ribas Boned", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNONGY2MXFRRRAB", "timestamp": "2 years ago"}, {"text": "El mejor sitio de gran canaria para comer i cenar y el trato inmejorable", "author": "Jose Fernández linares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcXBHZHZ3RRAB", "timestamp": "2 years ago"}, {"text": "Personal muy agradable y comida exquisita. Muy recomendable.", "author": "Fermín S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlcjk2dHJnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buen ambiente y precios correctos. Recomendadisimo", "author": "Ksb Haba", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKM0x2bERnEAE", "timestamp": "2 years ago"}, {"text": "Comida y servicio de 10. Lo único malo el ruido ambiente.", "author": "María Maeso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3NXZDbmN3EAE", "timestamp": "a year ago"}, {"text": "Magnífica atención y platos excelentes con productos de primera calidad.", "author": "Alexandre Sanjorge", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVZ3I2OTlBRRAB", "timestamp": "6 years ago"}, {"text": "Un lugar agradable con comida rica y un servicio muy muy de agradecer, totalmente recomendable", "author": "Naira Bethencourt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cUpteDRRRRAB", "timestamp": "2 years ago"}, {"text": "Comida y personal excelente.\\nHay que probar toda la carta.", "author": "Francisco Fernández de Piñar Lorenzo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHLVlmVTdnRRAB", "timestamp": "4 years ago"}, {"text": "Lugar perfecto para una buena comida, todo buenísimo y la atención inmejorable!!", "author": "Sandra Pozo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSaS1yV0hBEAE", "timestamp": "2 years ago"}, {"text": "Comida muy bien preparada y presentada. Tarda un poco.", "author": "Uwe Kohn", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsa1pxYWdRRRAB", "timestamp": "2 years ago"}, {"text": "Me encantó, tanto la comida como el trato del personal. \\"Pedazo de ARROZ\\"", "author": "Rosa Maria Martin Ojeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMTlTc0pnEAE", "timestamp": "6 years ago"}, {"text": "IMPRESIONANTE, parada obligatoria, experiencia gastronómica super Top!!", "author": "Victor Manuel Garcia Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4ME0yMFZ3EAE", "timestamp": "2 years ago"}, {"text": "Realmente muy bueno, el cervicio y la comida, verdaderos profesionales,muy recomendables", "author": "Luis Valdivia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHb3ZfVUdBEAE", "timestamp": "4 years ago"}, {"text": "Todo buenísimo y trato espectacular.", "author": "Azuleida Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYM2RqV3BBRRAB", "timestamp": "a year ago"}, {"text": "Fabuloso en todo lo que puedes desear de un buen restaurante", "author": "Alfredo “INNOVALIA” Rivero Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURseEphNzJ3RRAB", "timestamp": "2 years ago"}, {"text": "Sehr leckeres Essen kann ich nur empfehlen", "author": "Angela Steen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkMHNlSzBBRRAB", "timestamp": "a year ago"}, {"text": "Huevos estrellados più buono dell' isola, crocchette spettacolari", "author": "michele lenci", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4b3VlN1Z3EAE", "timestamp": "2 years ago"}, {"text": "Heel lekker en vriendelijk personeel.", "author": "Aouatif Fetah", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiOHZmT0pBEAE", "timestamp": "a year ago"}, {"text": "Hervorragendes Essen- Speisen werden teilweise am Tisch frisch zubereitet.", "author": "Nicole Schröder", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGVLeV9nRRAB", "timestamp": "4 years ago"}, {"text": "Comida muy buena. Servicio inmejorable. Para repetir.", "author": "Andrea Santana Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxcm9MMjBRRRAB", "timestamp": "4 years ago"}, {"text": "Un lugar estupendo, posiblemente la mejor comida, el mejor servicio y la mejor terraza de Triana.", "author": "Ana Maria Begines Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvM3B5YWZ3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Un buen lugar para salir de las papas arrugás, servicio atento y amable, muy recomendable!", "author": "Luis Recuero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2cnJEcVJnEAE", "timestamp": "4 years ago"}, {"text": "Muy rico todo y buen precio", "author": "Elisa Moreiras", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPeWVLMTlBRRAB", "timestamp": "3 years ago"}, {"text": "Creo que es un poco caro, para el producto que tienen en carta", "author": "Manolo Dominguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREZ2JQVmlBRRAB", "timestamp": "a year ago"}, {"text": "Excelente servicio, buena relación calidad precio", "author": "luis sainz-rozas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdy1xOFRREAE", "timestamp": "a year ago"}, {"text": "Buena atención y muy buena materia prima. Un agradable almuerzo", "author": "J.M. P.R.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHX29YRFlBEAE", "timestamp": "4 years ago"}, {"text": "Muy rico, buenas porciones.", "author": "Laura Blumberg", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCZ1BXOWpRRRAB", "timestamp": "3 years ago"}, {"text": "Nos ha encantado. La comida y la atención buenísimo", "author": "ESCUELA INFANTIL LITTLE STAR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLeUtYSU1nEAE", "timestamp": "4 years ago"}, {"text": "Uno de los mejores restaurantes de la ciudad de Las Palmad, esquisto!", "author": "Jan K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODVmVTZBRRAB", "timestamp": "2 years ago"}, {"text": "Sitios espectacular!!!... atención de estrellas Michelín y comida de 10.", "author": "Isma Rosa orte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNheE5uZ1lBEAE", "timestamp": "4 years ago"}, {"text": "Servicio rápido y atento y la comida excepcional!", "author": "María", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4djl1RFpREAE", "timestamp": "2 years ago"}, {"text": "Me encanta. Ya es uno de mis favoritos. Excelente en todo.", "author": "Carlos Artiles Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxdHFtazJBRRAB", "timestamp": "4 years ago"}, {"text": "Servicio lento. Platos que no se parecen en nada a los andaluces. Un salmorejo aguado...", "author": "Pablo Atoche", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbWZETWdBRRAB", "timestamp": "5 years ago"}, {"text": "Heerlijk eten en top personeel!", "author": "Suzanne", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROZzdXOS1nRRAB", "timestamp": "2 years ago"}, {"text": "Comida excelente, y el trato muy bueno, volveré", "author": "Maria Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2amIzUzB3RRAB", "timestamp": "4 years ago"}, {"text": "Genial, comida excelente, atención muy buena..", "author": "Alexis Martín Falcón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyOEtuTUV3EAE", "timestamp": "Edited a year ago"}, {"text": "Todo estaba exquisito, y el personal excelente", "author": "Carmen Delia Navarro Chinea", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWNjd1ZVhnEAE", "timestamp": "2 years ago"}, {"text": "Excellente", "author": "Candido Arias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJenF2QW5nRRAB", "timestamp": "9 months ago"}, {"text": "Excelente comida en grupo con amig@s", "author": "Nicolas Claver Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6NGZuek13EAE", "timestamp": "Edited a year ago"}, {"text": "Muy buena comida y la atención muy buena exquisito", "author": "intruder intruder", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2M09tclZ3EAE", "timestamp": "4 years ago"}, {"text": "Magnífico, comida y servicio de mucha calidad, un restaurante para volver.", "author": "Antonio Lopez Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMklhSDF3RRAB", "timestamp": "6 years ago"}, {"text": "Muy buena comida y un servicio agradable y amable.", "author": "JUAN JOSE PAREJO CURADO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNUk2N2hnRRAB", "timestamp": "6 years ago"}, {"text": "Excelente comida, servicio y calidad. Lo recomiendo.", "author": "maría luisa ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eUw3V0RBEAE", "timestamp": "4 years ago"}, {"text": "Espectacular el trato y la comida , repetible 100%", "author": "Lidia Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlOE8zdnVBRRAB", "timestamp": "3 years ago"}, {"text": "Muito bom, recomendo!", "author": "helder antunes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKaTZ1YWU0LXQyMTRBRRAB", "timestamp": "8 months ago"}, {"text": "Super lecker aber etwas zu teuer.", "author": "Julia Kurt", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5aGRyc2lnRRAB", "timestamp": "a year ago"}, {"text": "Buen servicio y calidad. Sin duda, completamente recomendable.", "author": "Roberto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjNi11R2FBEAE", "timestamp": "5 years ago"}, {"text": "Un 10! Para repetir! Servicio y comida impecable! 💪", "author": "and Lp", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cGNLSjJRRRAB", "timestamp": "5 years ago"}, {"text": "Servicio y comida divinos, es muy recomendable.", "author": "esmeralda de la fuente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1Nm83YWNREAE", "timestamp": "2 years ago"}, {"text": "Comida muy buena.Algo de calor", "author": "Remi Bordón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURENnJmUWFBEAE", "timestamp": "Edited a year ago"}, {"text": "Camareros fantásticos, comida muy rica.", "author": "FERNANDO MENDOZA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4dC1ucGx3RRAB", "timestamp": "2 years ago"}, {"text": "Muy buena atención y la comida muy rica,lo recomiendo", "author": "Ángeles Rodríguez Cuellar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4b3ZiTkJnEAE", "timestamp": "5 years ago"}, {"text": "Genial!\\nWer authentische spanische Küche sucht ist hier richtig!", "author": "Ach Wasweissich", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaWNDNm13RRAB", "timestamp": "5 years ago"}, {"text": "Muy buena la comida ,la carne y el pulpo", "author": "skatehip SK", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwdmZTX0hREAE", "timestamp": "2 years ago"}, {"text": "Platos bien elaborados y excelente servicio", "author": "CRM", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhbUlmdDRnRRAB", "timestamp": "4 years ago"}, {"text": "Ufffff, lujo en la playa a escasos 30 mtrs del charcon", "author": "nicolas jose garcia fontes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4Ny1HeHhBRRAB", "timestamp": "5 years ago"}, {"text": "Der iberische Schinken und das Tatar sind sehr empfehlenswert.", "author": "Oliver Schröder", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtenRITTJ3RRAB", "timestamp": "4 years ago"}, {"text": "Una apuesta segura! Profesionales y buen género", "author": "D&L", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSN3NtT0hBEAE", "timestamp": "2 years ago"}, {"text": "La comida excelente y muy buena atención", "author": "Pino Santaella", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCbHFyV3BRRRAB", "timestamp": "3 years ago"}, {"text": "Relación calidad precio muy buena m la atención muy buena", "author": "Miguel García", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDanBuOUxREAE", "timestamp": "5 years ago"}, {"text": "Encantada con todo, muy buena experiencia", "author": "Maribel López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkbDZteDNnRRAB", "timestamp": "Edited a year ago"}, {"text": "La comida y la atención muy buena ..volveremos", "author": "Rosa Perez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlclp5QXJnRRAB", "timestamp": "3 years ago"}, {"text": "Personas súper groseras, sobre todo el “dueño” no le recomiendo nunca en la vida !", "author": "Caribay Segura", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaGVDMndRRRAB", "timestamp": "2 years ago"}, {"text": "Todo exquisito y la atención buena.\\nLo recomiendo", "author": "Janet", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNU8zSDJnRRAB", "timestamp": "4 years ago"}, {"text": "Nos encantó,repetiremos ,muy recomendado", "author": "Desiree Estupiñan Estevez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURabXN6S0FREAE", "timestamp": "2 years ago"}, {"text": "Muy buen sitio para comer.", "author": "Alicia Gabriel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKdGJLQUxREAE", "timestamp": "2 years ago"}, {"text": "La comida es increíble y el trato inigualable", "author": "samuel Rodríguez Montero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5eElIcC1nRRAB", "timestamp": "a year ago"}, {"text": "Buen servicio. Buena comida. Seguridad", "author": "Mireya Gloria Jiménez Jaén", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4NzgzQjdBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente en comida servicio y ambiente.", "author": "luiyis agudelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObDlPSmFnEAE", "timestamp": "2 years ago"}, {"text": "Una experiencia maravillosa, atención, calidad precio.", "author": "Rosy Calderín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNk9fQVhREAE", "timestamp": "3 years ago"}, {"text": "Excelente,gratificante experiencia y maravilloso trato humano", "author": "Luis Carlos Lorenzo Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN29ha3h3RRAB", "timestamp": "4 years ago"}, {"text": "Muy bueno y cada vez mejor", "author": "Romen Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaX3F2WXVBRRAB", "timestamp": "2 years ago"}, {"text": "Increíble. Una atención espectacular, no faltó de nada.", "author": "cristina castellano rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTNjhfNHB3RRAB", "timestamp": "5 years ago"}, {"text": "Servicio y comida increibles, gracias por todo, volveremos", "author": "Francisco Javier Muñoz Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMjZQdWJnEAE", "timestamp": "6 years ago"}, {"text": "Comida excelente y atención genial, totalmente recomendable", "author": "Jesus Poch", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMjlUa09BEAE", "timestamp": "5 years ago"}, {"text": "Lugar agradable con comida rica y buen servicio", "author": "Fco. Javier Hernando de Diego", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROejR1Xy1BRRAB", "timestamp": "2 years ago"}, {"text": "Te sientes como en casa", "author": "Mayela Gómez Medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqMGRMSGxnRRAB", "timestamp": "a year ago"}, {"text": "Calidad de la comida y servicio un 10..!!\\nVolveré...", "author": "Carles Caldentey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscFlqcTZBRRAB", "timestamp": "2 years ago"}, {"text": "Simplemente perfecto, tanto el trato como la comida.", "author": "AVMC", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2ek9LcWhBRRAB", "timestamp": "4 years ago"}, {"text": "Cuando se pone corazón y ganas las cosas salen bien", "author": "luis Calvo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxdkxiWmVnEAE", "timestamp": "4 years ago"}, {"text": "sensationelles Essen & sehr guter Service", "author": "Benno Weber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0NWJLcDdBRRAB", "timestamp": "a year ago"}, {"text": "Gran trató y un excelente servicio muy atentos.", "author": "jacob brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aU9pZ0lBEAE", "timestamp": "4 years ago"}, {"text": "Riquísimo. Muy recomendable", "author": "Olga Garcia Jorqui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bklUZUxREAE", "timestamp": "3 years ago"}, {"text": "Por todo, sitio 100% recomendable", "author": "gloria rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMU5UYThBRRAB", "timestamp": "3 years ago"}, {"text": "Fantasía, muy bueno todo 🤤", "author": "Adrian Rey Nieto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbklHR05BEAE", "timestamp": "2 years ago"}, {"text": "Excelente servicio y la comida buenísima!", "author": "Cristina Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDX3NhSDNnRRAB", "timestamp": "5 years ago"}, {"text": "Comida riquísima y atención excepcional.", "author": "noemi benitez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4NmZuOGdnRRAB", "timestamp": "5 years ago"}, {"text": "Maravilloso", "author": "Juan carlos Cárdenas Martines", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4cmMydFRlRFptVFVWeE5YcHJTSE51V2pGNGRHYxAB", "timestamp": "4 months ago"}, {"text": "Magnífico la atención y el producto, repetiremos.", "author": "Prudencio Castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNWJLQjlBRRAB", "timestamp": "3 years ago"}, {"text": "Si vale la pena es muy recomendable", "author": "Jose Carlos Ramirez Marrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzeHFLZEt3EAE", "timestamp": "5 years ago"}, {"text": "Muy buena comida y servicio.", "author": "Vanisha Lilaram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKczhpTTRnRRAB", "timestamp": "2 years ago"}, {"text": "COMIDA FAMILIAR. BUEN SERVICIO Y CALIDAD EN LA COMIDA.", "author": "Alberto Garcia-Beltran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTajhlZGNBEAE", "timestamp": "5 years ago"}, {"text": "Las gyozas muy ricas", "author": "sara enguita", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtNDZqZGFBEAE", "timestamp": "3 years ago"}, {"text": "Descubrimiento reciente. Un 10 os doy 😃", "author": "carmen rg", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHMzdIMlNBEAE", "timestamp": "4 years ago"}, {"text": "Comida espectaculsr y muy buen ambiente", "author": "antonio javier trejo perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjOGZfVXB3RRAB", "timestamp": "5 years ago"}, {"text": "Buenísima comida.Recomendable.", "author": "Soledad Villalba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsb0szTlh3EAE", "timestamp": "2 years ago"}, {"text": "Obligatorio pedir el guacamole y huevos rotos con gambas", "author": "NBC New Beauty Concept", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLLVkyTzZ3RRAB", "timestamp": "4 years ago"}, {"text": "Espectacular calidad y atención de 10", "author": "Javier Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURScjZLbnpRRRAB", "timestamp": "2 years ago"}, {"text": "Excelente lugar, buena atención", "author": "JUAN MANUEL RAMOS QUEVEDO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURObVl6dTJRRRAB", "timestamp": "Edited a year ago"}, {"text": "De fabula", "author": "Ruben Molina Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKXy16X2N3EAE", "timestamp": "2 years ago"}, {"text": "Excelente comida y trato amable", "author": "Juan AB", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhXzRET0hBEAE", "timestamp": "4 years ago"}, {"text": "Llegué de casualidad y me gustó, repetiré", "author": "Rafa Fdez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZaTVUVzlRRRAB", "timestamp": "6 years ago"}, {"text": "Una autentica experiencia", "author": "Antonio Campos Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3amVmUy13RRAB", "timestamp": "a year ago"}, {"text": "Caro pero rico", "author": "BENJAMIN SUAREZ FALCON", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4bTctS09REAE", "timestamp": "5 years ago"}, {"text": "Lo mejor de palma", "author": "Alfredo Cortes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMOF9hS3RRRRAB", "timestamp": "a year ago"}, {"text": "Espectacular!", "author": "L Viladomat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBbzVpV0xBEAE", "timestamp": "11 months ago"}, {"text": "Gente amable y comida exquisita", "author": "Rafael Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxeGVfV25BRRAB", "timestamp": "2 years ago"}, {"text": "magnífica comida y un equipo excepcional", "author": "Francisco Tomas lorenzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4MXZ5eE53EAE", "timestamp": "5 years ago"}, {"text": "No coment", "author": "Julio Ortega sanabria", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwek83S3VBRRAB", "timestamp": "6 years ago"}, {"text": "Acogedor por unos profesionales", "author": "juan Manuel Gonzalez Matel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTcmRERFNnEAE", "timestamp": "5 years ago"}, {"text": "Recomendable. Comida excelente", "author": "Rosario Torre González", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrdVBlVm93RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "juan llompart", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGeFRuSkhXVGR1UzJkak1YbFNNVXA2ZFUxVk4wRRAB", "timestamp": "3 weeks ago"}, {"text": "Perfecto", "author": "Francisco Granados Lobato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOU5PUllREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Melanie Rousseau", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pab1ZFWkZhelpMVkVaVWFVNVhNbFEwYUZGZmIxRRAB", "timestamp": "a month ago"}, {"text": "Excelente calidad precio", "author": "Jose Salinas Martinez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXb05HWHJnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Virginia Ladislao", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xJdFNXUlNlVFozYXpreFVIbElUbUZxZEdRMlZuYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "marco cerritos", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKcWFHODRWblZ2VldKUllWOVRWMVZvV2tSeVFWRRAB", "timestamp": "3 months ago"}, {"text": "Excelent", "author": "Daniela Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtN1pUajlRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Tomas Alcaide Parrado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Gd2R6SlNjVk5GYjNaUWVrOHpObmd5VTI5d09XYxAB", "timestamp": "5 months ago"}, {"text": "PERFECTO", "author": "Anabel Tikal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXZ1A3dWhBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Patasanu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WRE5tSlVUbXhwVVVoaFdrTkJWSEo2VDFkblVHYxAB", "timestamp": "5 months ago"}, {"text": "Delicias, amabilidad y simpatía", "author": "Anigio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwNXZ5by13RRAB", "timestamp": "6 years ago"}, {"text": "It's perferct !", "author": "Jacqueline Couanes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNweXFhOUZBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alejandro Henriquez Portillo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KUGJHSnNPRVI1Y3pkSVYxOUNVa3BYVW01b1JFRRAB", "timestamp": "6 months ago"}, {"text": "Uwaga na rachunek.", "author": "M x", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbUk3T25nRRAB", "timestamp": "6 years ago"}, {"text": "100% recomendable", "author": "Ricardo Sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpOFpPdGN3EAE", "timestamp": "5 years ago"}, {"text": "Comida deliciosa y las mejores atenciones", "author": "Esther Campusano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1aGFQNWJ3EAE", "timestamp": "3 years ago"}, {"text": "Exelente, repetiría", "author": "Pablo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NVlXUlpnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Manuel Bacariza", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FM2RrNUxZbEp0VEZWS2VVeHpTMU5CTkVkT1JIYxAB", "timestamp": "7 months ago"}, {"text": "Comida y servicio insuperable.", "author": "YAIZA RAMOS HERNÁNDEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzdXVta1dnEAE", "timestamp": "Edited 4 years ago"}, {"text": "Todo de lujo comida servicio", "author": "Miguel Angel San Miguel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNUo2RHFnRRAB", "timestamp": "6 years ago"}, {"text": "Comida y servicio EXQUISITOS, !!", "author": "José A. Cabrera S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCcTlUSDVnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "JORGE HERNÁNDEZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZMnVENFRnEAE", "timestamp": "8 months ago"}, {"text": "", "author": "Irmak Tosun", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRM2UzdDNBRRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Levi Jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBd3RpMTNRRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Melania Saavedra", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfazYtWXVRRRAB", "timestamp": "a year ago"}, {"text": "Maravilla de sitio", "author": "Pablo Reca Camacho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyX09lZklnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andreas Bruegger", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmN2Jqc1NREAE", "timestamp": "a year ago"}, {"text": "", "author": "Guacimara Hernandez Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2eE03N2hnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Schlappe", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2aXBqbG93RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Gloria González Valido", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQMHJXaFlBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Carmelo Sarmiento", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQcXIyRWJ3EAE", "timestamp": "a year ago"}, {"text": "", "author": "David Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzdVlTWG9nRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jose Antonio Domínguez Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzaDRUSUd3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Maria Grazia Ticca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzdXJlMW9BRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Mari Celi Gil", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYNFBELVB3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Richard Harris", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURueUlpWFdnEAE", "timestamp": "a year ago"}, {"text": "Servicio y comida de diez", "author": "Juana Boned", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOdGZyYlJREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Carmelo M.H", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNucXB5QU9nEAE", "timestamp": "a year ago"}, {"text": "", "author": "Florian Bouché", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3Z0lhREt3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Eneko GH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiNzllSjh3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Paco Nogales", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNibTllQ1N3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Joana Perera García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN6bzV5Q3pRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "jose serrano santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEMkxfTHVRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Patricia Sánchez Gonzálvez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5eXFDSU53EAE", "timestamp": "a year ago"}, {"text": "", "author": "Pilar Santana", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUN0cU9RcBAB", "timestamp": "2 years ago"}, {"text": "", "author": "Violet Hill", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0MU9XR213RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Javier Manjavacas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOa0tHbGpBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Bimbache 39", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcDRuaXV3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Michelle Kouhiho Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURadDhITnVnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Jose carlos santana ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwM0pXZGtRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ramón Infante", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKNUpienJBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Christoph Helbig", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbWFyYWNBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Antonio Borras Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaXFtUkZBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Nuhacet Monzón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeWZId3N3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Örs Jakab", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNWVxT213RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén García-Pando", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCMnRDYW93RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Marisa Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtb1lPdXFRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Airam Santana", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcE9EMVF3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Cristóbal Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPOC1DbzNRRRAB", "timestamp": "3 years ago"}, {"text": "Grata sorpresa", "author": "Pedro Juan Díaz Batista", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsMjQ3S25RRRAB", "timestamp": "2 years ago"}, {"text": "Comida y trato impecables", "author": "Juan Carlos Tacoronte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbnVqeVZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Agustín Morales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZaTlTMXdRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Comida y servicios ejemplares!!", "author": "roberto trinidad perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cGZHSDRnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular", "author": "Miguel González González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NDRyTGVBEAE", "timestamp": "4 years ago"}, {"text": "Espectacular", "author": "patricia afonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDbEtxUVhnEAE", "timestamp": "5 years ago"}, {"text": "ESPECTACULAR", "author": "Juanma Falcon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaHF2Nmd3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Nelson Martínez Legón", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFM2FuRXplblZHUzNGelJ6aHBXR3BmTUZCUlNXYxAB", "timestamp": "23 hours ago"}, {"text": "Fantastiskt god mat och mysig service. Begränsad meny men det som serveras är mkt gott och vällagat!", "author": "Peter Wallgren", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoclVHRnVZblpZTFdaMlkwTktUblpsYVdOWFdVRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Mijanur Sikdar", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWRlVHWXRNMjFtY2pCaFJEQnVhVFZ3YzBOb2JVRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Cristina Drosu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214RFp6RXdUeTFFUm5sdWRGZHBXVmQwU2xsMlExRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Francisco Montero Jiménez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aaGMwWXhVV1ozZW1OeVJubHdTekJhWW5GRmFuYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Alex HateLove", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0UFIzWlVOVU42WjJSS0xXdGZVR1ZrVEhFMExVRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "laura vega larios", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GeVRVOVFTM0Y2U0ZCMk9GSmFUbkl4UWs5RFJXYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Cristina Rguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFNVNtWmhNRVUzUkZOTFdqVmZSRzVGWlZsc2RGRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Luca Mazzia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trMk56SXRlRlJwYlhsQ1gyeFZRWEprVjNGNU4wRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "Eneida Padrón Fuentes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xVNGJHRTNkUzA0VVROYWNsTXRSVUZSUmxBeFQwRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "María", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0MWN6WTBaalZNVlc5a2QyTlhhblZ1VGw4eGFuYxAB", "timestamp": "7 months ago"}, {"text": "", "author": "Roland Bohnhof", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taeVJtMVRRMmx4Y2pCUlNXcDZkM2h5YkhacFMwRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "matthias mühlberger", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VKemgtcmVXd0tMcFBnEAE", "timestamp": "7 months ago"}, {"text": "", "author": "Manuel Muñoz González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvcU5UWFR3EAE", "timestamp": "9 months ago"}, {"text": "", "author": "Dolores Roman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNTdfUlhREAE", "timestamp": "9 months ago"}, {"text": "", "author": "Juvy Salac", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJOEtQaUhnEAE", "timestamp": "9 months ago"}, {"text": "", "author": "Mariano Auyanet Romero", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3bExlY2pBRRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Agata Sasiadek", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdThTN3B3RRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Didier Huet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRenJ1cUpBEAE", "timestamp": "10 months ago"}, {"text": "", "author": "Elena Moraru", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdXRxcU13EAE", "timestamp": "10 months ago"}, {"text": "", "author": "Javier Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnb2JDbGFnEAE", "timestamp": "11 months ago"}, {"text": "", "author": "Daniel Bennasar Sans", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNncXVhVmFnEAE", "timestamp": "11 months ago"}, {"text": "", "author": "PM sainz sola", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYbnV5NHZ3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Roberto Muresan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuMjdLODJBRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Juan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuM0xQMFFREAE", "timestamp": "a year ago"}, {"text": "", "author": "Maria Caldera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIeF83SmdnRRAB", "timestamp": "Edited a year ago"}, {"text": "", "author": "Nayra González", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEZ2ZuVmV3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Carol Garcia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5LXEzekVREAE", "timestamp": "a year ago"}, {"text": "", "author": "B Jaldu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURObl9iVmhRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "urotanke", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxNnN2ak9BEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Tara P", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWbmJLajBBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Paloma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURscUxPbUx3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Tere R G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsOF9mQ29BRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Juan Luis Martin Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsMF9PVVh3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Ramon Calvo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKMjYzWVhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "G Lücke", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKM09yUkhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Mérida Reyero", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKXy0yaEt3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Luisa MC", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4OFAyc09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "jose ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSMTd1c2NREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Renata Skora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSM2ZmaFF3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesús B. R", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNSb3VCaRAB", "timestamp": "2 years ago"}, {"text": "", "author": "LOLY LÓPEZ CASTELLANO", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSdkxEbFVnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Juancho Lorenzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURodWVYc1Z3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Yeray Rodriguez Castellano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeVpQLUh3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "JESUS LEAL", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNU5HaExBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Kostas Komninos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoa01HM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alejandro Ochoa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCMDdDWE1BEAE", "timestamp": "3 years ago"}, {"text": "", "author": "RUBEN BRION LIJO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdWJDZGtRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Mario", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOUlmTjFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "MARIA URIARTE", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCMExfWWxBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Javier Villa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNDlycXFRRRAB", "timestamp": "3 years ago"}] \N Message: tab crashed\n (Session info: chrome=144.0.7559.96)\n {"bot_detected": true, "initial_sort_used": "newest", "sort_orders_attempted": ["newest"]} 1201 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-29T00:56:16.730Z", "timestamp_ms": 1769648176730}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-29T00:56:16.869Z", "timestamp_ms": 1769648176869}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las...", "category": "browser", "timestamp": "2026-01-29T00:56:17.009Z", "timestamp_ms": 1769648177009}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-29T00:56:18.641Z", "timestamp_ms": 1769648178641}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-29T00:56:19.068Z", "timestamp_ms": 1769648179068}, {"level": "INFO", "message": "Total reviews on page: 1201", "metrics": {"total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:21.565Z", "timestamp_ms": 1769648181565}, {"level": "INFO", "message": "Business: Rincón de Triana", "category": "scraper", "timestamp": "2026-01-29T00:56:21.565Z", "timestamp_ms": 1769648181565}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T00:56:21.614Z", "timestamp_ms": 1769648181614}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-29T00:56:21.648Z", "timestamp_ms": 1769648181648}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-29T00:56:21.894Z", "timestamp_ms": 1769648181894}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-29T00:56:21.894Z", "timestamp_ms": 1769648181894}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-29T00:56:24.495Z", "timestamp_ms": 1769648184495}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T00:56:24.558Z", "timestamp_ms": 1769648184558}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-29T00:56:24.564Z", "timestamp_ms": 1769648184564}, {"level": "INFO", "message": "Found 10 review topics: letter, gyozas, guacamole, island, chlamys varia...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-29T00:56:25.076Z", "timestamp_ms": 1769648185076}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-29T00:56:25.076Z", "timestamp_ms": 1769648185076}, {"level": "INFO", "message": "60/1201 (5%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0036568641662597656, "progress_pct": 4.995836802664446, "reviews_count": 60, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:26.982Z", "timestamp_ms": 1769648186982}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 362}, "category": "system", "timestamp": "2026-01-29T00:56:28.747Z", "timestamp_ms": 1769648188747}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T00:56:28.747Z", "timestamp_ms": 1769648188747}, {"level": "INFO", "message": "110/1201 (9%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 9.159034138218152, "reviews_count": 110, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:28.762Z", "timestamp_ms": 1769648188762}, {"level": "INFO", "message": "DOM cleanup: removed 44 cards to prevent memory buildup", "metrics": {"cards_removed": 44, "cards_remaining": 329}, "category": "system", "timestamp": "2026-01-29T00:56:30.291Z", "timestamp_ms": 1769648190291}, {"level": "INFO", "message": "140/1201 (12%) | idle: 0.0s", "metrics": {"idle_seconds": 0.022563695907592773, "progress_pct": 11.656952539550375, "reviews_count": 140, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:30.313Z", "timestamp_ms": 1769648190313}, {"level": "INFO", "message": "DOM cleanup: removed 36 cards to prevent memory buildup", "metrics": {"cards_removed": 36, "cards_remaining": 522}, "category": "system", "timestamp": "2026-01-29T00:56:31.466Z", "timestamp_ms": 1769648191466}, {"level": "INFO", "message": "170/1201 (14%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012465715408325195, "progress_pct": 14.154870940882597, "reviews_count": 170, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:31.479Z", "timestamp_ms": 1769648191479}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 340}, "category": "system", "timestamp": "2026-01-29T00:56:32.613Z", "timestamp_ms": 1769648192613}, {"level": "INFO", "message": "200/1201 (17%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006461381912231445, "progress_pct": 16.65278934221482, "reviews_count": 200, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:32.619Z", "timestamp_ms": 1769648192619}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 347}, "category": "system", "timestamp": "2026-01-29T00:56:33.685Z", "timestamp_ms": 1769648193685}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T00:56:33.685Z", "timestamp_ms": 1769648193685}, {"level": "INFO", "message": "230/1201 (19%) | idle: 0.0s", "metrics": {"idle_seconds": 0.023565292358398438, "progress_pct": 19.150707743547045, "reviews_count": 230, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:33.708Z", "timestamp_ms": 1769648193708}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 323}, "category": "system", "timestamp": "2026-01-29T00:56:34.776Z", "timestamp_ms": 1769648194776}, {"level": "INFO", "message": "260/1201 (22%) | idle: 0.0s", "metrics": {"idle_seconds": 0.030415058135986328, "progress_pct": 21.64862614487927, "reviews_count": 260, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:34.806Z", "timestamp_ms": 1769648194806}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 308}, "category": "system", "timestamp": "2026-01-29T00:56:35.926Z", "timestamp_ms": 1769648195926}, {"level": "INFO", "message": "290/1201 (24%) | idle: 0.0s", "metrics": {"idle_seconds": 0.020020008087158203, "progress_pct": 24.14654454621149, "reviews_count": 290, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:35.946Z", "timestamp_ms": 1769648195946}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 368}, "category": "system", "timestamp": "2026-01-29T00:56:37.026Z", "timestamp_ms": 1769648197026}, {"level": "INFO", "message": "310/1201 (26%) | idle: 0.0s", "metrics": {"idle_seconds": 0.028148889541625977, "progress_pct": 25.81182348043297, "reviews_count": 310, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:37.054Z", "timestamp_ms": 1769648197054}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 391}, "category": "system", "timestamp": "2026-01-29T00:56:38.126Z", "timestamp_ms": 1769648198126}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T00:56:38.126Z", "timestamp_ms": 1769648198126}, {"level": "INFO", "message": "340/1201 (28%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03863978385925293, "progress_pct": 28.309741881765195, "reviews_count": 340, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:38.165Z", "timestamp_ms": 1769648198165}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 274}, "category": "system", "timestamp": "2026-01-29T00:56:39.279Z", "timestamp_ms": 1769648199279}, {"level": "INFO", "message": "370/1201 (31%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009996175765991211, "progress_pct": 30.80766028309742, "reviews_count": 370, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:39.289Z", "timestamp_ms": 1769648199289}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 273}, "category": "system", "timestamp": "2026-01-29T00:56:40.395Z", "timestamp_ms": 1769648200395}, {"level": "INFO", "message": "400/1201 (33%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0070950984954833984, "progress_pct": 33.30557868442964, "reviews_count": 400, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:40.402Z", "timestamp_ms": 1769648200402}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 169}, "category": "system", "timestamp": "2026-01-29T00:56:41.494Z", "timestamp_ms": 1769648201494}, {"level": "INFO", "message": "420/1201 (35%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012182474136352539, "progress_pct": 34.970857618651124, "reviews_count": 420, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:41.506Z", "timestamp_ms": 1769648201506}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 314}, "category": "system", "timestamp": "2026-01-29T00:56:42.616Z", "timestamp_ms": 1769648202616}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T00:56:42.616Z", "timestamp_ms": 1769648202616}, {"level": "INFO", "message": "450/1201 (37%) | idle: 0.0s", "metrics": {"idle_seconds": 0.016691207885742188, "progress_pct": 37.468776019983345, "reviews_count": 450, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:42.633Z", "timestamp_ms": 1769648202633}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 270}, "category": "system", "timestamp": "2026-01-29T00:56:43.731Z", "timestamp_ms": 1769648203731}, {"level": "INFO", "message": "480/1201 (40%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010064363479614258, "progress_pct": 39.966694421315566, "reviews_count": 480, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:43.741Z", "timestamp_ms": 1769648203741}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 174}, "category": "system", "timestamp": "2026-01-29T00:56:44.830Z", "timestamp_ms": 1769648204830}, {"level": "INFO", "message": "500/1201 (42%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013617753982543945, "progress_pct": 41.63197335553705, "reviews_count": 500, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:44.844Z", "timestamp_ms": 1769648204844}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 274}, "category": "system", "timestamp": "2026-01-29T00:56:45.980Z", "timestamp_ms": 1769648205980}, {"level": "INFO", "message": "520/1201 (43%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03151273727416992, "progress_pct": 43.29725228975854, "reviews_count": 520, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:46.012Z", "timestamp_ms": 1769648206012}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 345}, "category": "system", "timestamp": "2026-01-29T00:56:47.059Z", "timestamp_ms": 1769648207059}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T00:56:47.059Z", "timestamp_ms": 1769648207059}, {"level": "INFO", "message": "550/1201 (46%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008117198944091797, "progress_pct": 45.79517069109076, "reviews_count": 550, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:47.068Z", "timestamp_ms": 1769648207068}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 165}, "category": "system", "timestamp": "2026-01-29T00:56:48.262Z", "timestamp_ms": 1769648208262}, {"level": "INFO", "message": "570/1201 (47%) | idle: 0.1s", "metrics": {"idle_seconds": 0.06951689720153809, "progress_pct": 47.460449625312236, "reviews_count": 570, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:48.331Z", "timestamp_ms": 1769648208331}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 297}, "category": "system", "timestamp": "2026-01-29T00:56:49.410Z", "timestamp_ms": 1769648209410}, {"level": "INFO", "message": "600/1201 (50%) | idle: 0.1s", "metrics": {"idle_seconds": 0.06370210647583008, "progress_pct": 49.958368026644465, "reviews_count": 600, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:49.474Z", "timestamp_ms": 1769648209474}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 260}, "category": "system", "timestamp": "2026-01-29T00:56:50.627Z", "timestamp_ms": 1769648210627}, {"level": "INFO", "message": "630/1201 (52%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006715536117553711, "progress_pct": 52.456286427976686, "reviews_count": 630, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:50.634Z", "timestamp_ms": 1769648210634}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 175}, "category": "system", "timestamp": "2026-01-29T00:56:51.784Z", "timestamp_ms": 1769648211784}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T00:56:51.785Z", "timestamp_ms": 1769648211785}, {"level": "INFO", "message": "650/1201 (54%) | idle: 0.0s", "metrics": {"idle_seconds": 0.021219730377197266, "progress_pct": 54.12156536219817, "reviews_count": 650, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:51.806Z", "timestamp_ms": 1769648211806}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 89}, "category": "system", "timestamp": "2026-01-29T00:56:53.020Z", "timestamp_ms": 1769648213020}, {"level": "INFO", "message": "660/1201 (55%) | idle: 0.1s", "metrics": {"idle_seconds": 0.09151315689086914, "progress_pct": 54.95420482930891, "reviews_count": 660, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:53.115Z", "timestamp_ms": 1769648213115}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 87}, "category": "system", "timestamp": "2026-01-29T00:56:54.263Z", "timestamp_ms": 1769648214263}, {"level": "INFO", "message": "670/1201 (56%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011487483978271484, "progress_pct": 55.786844296419645, "reviews_count": 670, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:54.276Z", "timestamp_ms": 1769648214276}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 172}, "category": "system", "timestamp": "2026-01-29T00:56:55.341Z", "timestamp_ms": 1769648215341}, {"level": "INFO", "message": "690/1201 (57%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007067203521728516, "progress_pct": 57.45212323064113, "reviews_count": 690, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:55.348Z", "timestamp_ms": 1769648215348}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 171}, "category": "system", "timestamp": "2026-01-29T00:56:56.399Z", "timestamp_ms": 1769648216399}, {"level": "INFO", "message": "710/1201 (59%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011823654174804688, "progress_pct": 59.11740216486261, "reviews_count": 710, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:56.412Z", "timestamp_ms": 1769648216412}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 172}, "category": "system", "timestamp": "2026-01-29T00:56:57.624Z", "timestamp_ms": 1769648217624}, {"level": "INFO", "message": "730/1201 (61%) | idle: 0.0s", "metrics": {"idle_seconds": 0.023140907287597656, "progress_pct": 60.7826810990841, "reviews_count": 730, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:57.648Z", "timestamp_ms": 1769648217648}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 80}, "category": "system", "timestamp": "2026-01-29T00:56:58.779Z", "timestamp_ms": 1769648218779}, {"level": "INFO", "message": "740/1201 (62%) | idle: 0.0s", "metrics": {"idle_seconds": 0.04478144645690918, "progress_pct": 61.61532056619484, "reviews_count": 740, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:56:58.824Z", "timestamp_ms": 1769648218824}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 251}, "category": "system", "timestamp": "2026-01-29T00:57:00.234Z", "timestamp_ms": 1769648220234}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T00:57:00.235Z", "timestamp_ms": 1769648220235}, {"level": "INFO", "message": "770/1201 (64%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03244900703430176, "progress_pct": 64.11323896752707, "reviews_count": 770, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:00.268Z", "timestamp_ms": 1769648220268}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 82}, "category": "system", "timestamp": "2026-01-29T00:57:01.500Z", "timestamp_ms": 1769648221500}, {"level": "INFO", "message": "780/1201 (65%) | idle: 0.0s", "metrics": {"idle_seconds": 0.025084972381591797, "progress_pct": 64.9458784346378, "reviews_count": 780, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:01.526Z", "timestamp_ms": 1769648221526}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 161}, "category": "system", "timestamp": "2026-01-29T00:57:02.921Z", "timestamp_ms": 1769648222921}, {"level": "INFO", "message": "800/1201 (67%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03630232810974121, "progress_pct": 66.61115736885928, "reviews_count": 800, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:02.961Z", "timestamp_ms": 1769648222961}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 80}, "category": "system", "timestamp": "2026-01-29T00:57:04.094Z", "timestamp_ms": 1769648224094}, {"level": "INFO", "message": "810/1201 (67%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02913069725036621, "progress_pct": 67.44379683597003, "reviews_count": 810, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:04.124Z", "timestamp_ms": 1769648224124}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 140}, "category": "system", "timestamp": "2026-01-29T00:57:05.359Z", "timestamp_ms": 1769648225359}, {"level": "INFO", "message": "830/1201 (69%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009082555770874023, "progress_pct": 69.10907577019151, "reviews_count": 830, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:05.369Z", "timestamp_ms": 1769648225369}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:06.561Z", "timestamp_ms": 1769648226561}, {"level": "INFO", "message": "840/1201 (70%) | idle: 0.1s", "metrics": {"idle_seconds": 0.08325648307800293, "progress_pct": 69.94171523730225, "reviews_count": 840, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:06.646Z", "timestamp_ms": 1769648226646}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:07.810Z", "timestamp_ms": 1769648227810}, {"level": "INFO", "message": "850/1201 (71%) | idle: 0.1s", "metrics": {"idle_seconds": 0.12834405899047852, "progress_pct": 70.77435470441299, "reviews_count": 850, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:07.942Z", "timestamp_ms": 1769648227942}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:09.336Z", "timestamp_ms": 1769648229336}, {"level": "INFO", "message": "860/1201 (72%) | idle: 0.2s", "metrics": {"idle_seconds": 0.15855050086975098, "progress_pct": 71.60699417152372, "reviews_count": 860, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:09.495Z", "timestamp_ms": 1769648229495}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:11.063Z", "timestamp_ms": 1769648231063}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T00:57:11.064Z", "timestamp_ms": 1769648231064}, {"level": "INFO", "message": "870/1201 (72%) | idle: 0.1s", "metrics": {"idle_seconds": 0.07615351676940918, "progress_pct": 72.43963363863448, "reviews_count": 870, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:11.143Z", "timestamp_ms": 1769648231143}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:12.268Z", "timestamp_ms": 1769648232268}, {"level": "INFO", "message": "890/1201 (74%) | idle: 0.6s", "metrics": {"idle_seconds": 0.5653517246246338, "progress_pct": 74.10491257285595, "reviews_count": 890, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:12.834Z", "timestamp_ms": 1769648232834}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:15.174Z", "timestamp_ms": 1769648235174}, {"level": "INFO", "message": "890/1201 (74%) | idle: 2.8s", "metrics": {"idle_seconds": 2.8299832344055176, "progress_pct": 74.10491257285595, "reviews_count": 890, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:15.710Z", "timestamp_ms": 1769648235710}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:21.610Z", "timestamp_ms": 1769648241610}, {"level": "WARN", "message": "SLOW cycle: 4.5s (api:0.1s dom:0.1s/60cards flush:0.0s seen:900)", "metrics": {"dom_cards": 60, "api_time_s": 0.07129573822021484, "dom_time_s": 0.08424496650695801, "seen_count": 900, "cycle_time_s": 4.452798843383789}, "category": "system", "timestamp": "2026-01-29T00:57:21.610Z", "timestamp_ms": 1769648241610}, {"level": "INFO", "message": "900/1201 (75%) | idle: 0.1s", "metrics": {"idle_seconds": 0.07218551635742188, "progress_pct": 74.93755203996669, "reviews_count": 900, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:21.682Z", "timestamp_ms": 1769648241682}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:23.301Z", "timestamp_ms": 1769648243301}, {"level": "WARN", "message": "SLOW cycle: 4.4s (api:0.3s dom:0.2s/60cards flush:0.0s seen:910)", "metrics": {"dom_cards": 60, "api_time_s": 0.27492403984069824, "dom_time_s": 0.23491811752319336, "seen_count": 910, "cycle_time_s": 4.39357590675354}, "category": "system", "timestamp": "2026-01-29T00:57:23.302Z", "timestamp_ms": 1769648243302}, {"level": "INFO", "message": "910/1201 (76%) | idle: 2.3s", "metrics": {"idle_seconds": 2.2518205642700195, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:25.554Z", "timestamp_ms": 1769648245554}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:32.797Z", "timestamp_ms": 1769648252797}, {"level": "WARN", "message": "SLOW cycle: 4.3s (api:0.1s dom:0.0s/60cards flush:0.0s seen:920)", "metrics": {"dom_cards": 60, "api_time_s": 0.14403796195983887, "dom_time_s": 0.03194761276245117, "seen_count": 920, "cycle_time_s": 4.27482271194458}, "category": "system", "timestamp": "2026-01-29T00:57:32.798Z", "timestamp_ms": 1769648252798}, {"level": "INFO", "message": "920/1201 (77%) | idle: 0.0s", "metrics": {"idle_seconds": 0.017263412475585938, "progress_pct": 76.60283097418818, "reviews_count": 920, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:32.815Z", "timestamp_ms": 1769648252815}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T00:57:34.222Z", "timestamp_ms": 1769648254222}, {"level": "WARN", "message": "SLOW cycle: 6.8s (api:0.3s dom:0.0s/60cards flush:0.0s seen:930)", "metrics": {"dom_cards": 60, "api_time_s": 0.33371400833129883, "dom_time_s": 0.015554428100585938, "seen_count": 930, "cycle_time_s": 6.831929445266724}, "category": "system", "timestamp": "2026-01-29T00:57:34.222Z", "timestamp_ms": 1769648254222}, {"level": "INFO", "message": "930/1201 (77%) | idle: 0.0s", "metrics": {"idle_seconds": 0.004023313522338867, "progress_pct": 77.43547044129892, "reviews_count": 930, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:34.226Z", "timestamp_ms": 1769648254226}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T00:57:35.275Z", "timestamp_ms": 1769648255275}, {"level": "INFO", "message": "950/1201 (79%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0040509700775146484, "progress_pct": 79.1007493755204, "reviews_count": 950, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:35.280Z", "timestamp_ms": 1769648255280}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 61}, "category": "system", "timestamp": "2026-01-29T00:57:36.320Z", "timestamp_ms": 1769648256320}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0029129981994628906, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:36.323Z", "timestamp_ms": 1769648256323}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:37.399Z", "timestamp_ms": 1769648257399}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0922932624816895, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:38.492Z", "timestamp_ms": 1769648258492}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.1s", "metrics": {"idle_seconds": 2.121330976486206, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:39.520Z", "timestamp_ms": 1769648259520}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.2s", "metrics": {"idle_seconds": 3.1534879207611084, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:40.553Z", "timestamp_ms": 1769648260553}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T00:57:40.553Z", "timestamp_ms": 1769648260553}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.3s", "metrics": {"idle_seconds": 4.298353910446167, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:41.697Z", "timestamp_ms": 1769648261697}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.3s", "metrics": {"idle_seconds": 5.327792644500732, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:42.727Z", "timestamp_ms": 1769648262727}, {"level": "INFO", "message": "961/1201 (80%) | idle: 6.4s", "metrics": {"idle_seconds": 6.384048700332642, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:43.784Z", "timestamp_ms": 1769648263784}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T00:57:43.784Z", "timestamp_ms": 1769648263784}, {"level": "INFO", "message": "961/1201 (80%) | idle: 7.7s", "metrics": {"idle_seconds": 7.706409931182861, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:45.106Z", "timestamp_ms": 1769648265106}, {"level": "INFO", "message": "961/1201 (80%) | idle: 8.7s", "metrics": {"idle_seconds": 8.729705095291138, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:46.129Z", "timestamp_ms": 1769648266129}, {"level": "INFO", "message": "961/1201 (80%) | idle: 9.8s", "metrics": {"idle_seconds": 9.754351377487183, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:47.153Z", "timestamp_ms": 1769648267153}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T00:57:47.154Z", "timestamp_ms": 1769648267154}, {"level": "INFO", "message": "961/1201 (80%) | idle: 11.1s", "metrics": {"idle_seconds": 11.1190824508667, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:48.519Z", "timestamp_ms": 1769648268519}, {"level": "INFO", "message": "961/1201 (80%) | idle: 12.3s", "metrics": {"idle_seconds": 12.277953863143921, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:49.677Z", "timestamp_ms": 1769648269677}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T00:57:49.677Z", "timestamp_ms": 1769648269677}, {"level": "INFO", "message": "961/1201 (80%) | idle: 13.7s", "metrics": {"idle_seconds": 13.710712909698486, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:51.110Z", "timestamp_ms": 1769648271110}, {"level": "INFO", "message": "961/1201 (80%) | idle: 14.8s", "metrics": {"idle_seconds": 14.833848237991333, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:52.233Z", "timestamp_ms": 1769648272233}, {"level": "INFO", "message": "961/1201 (80%) | idle: 15.9s", "metrics": {"idle_seconds": 15.890877723693848, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:57:53.290Z", "timestamp_ms": 1769648273290}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T00:57:53.290Z", "timestamp_ms": 1769648273290}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.890877723693848}, "category": "browser", "timestamp": "2026-01-29T00:57:53.763Z", "timestamp_ms": 1769648273763}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-29T00:57:53.965Z", "timestamp_ms": 1769648273965}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T00:57:58.969Z", "timestamp_ms": 1769648278969}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T00:57:59.378Z", "timestamp_ms": 1769648279378}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-29T00:58:02.077Z", "timestamp_ms": 1769648282077}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T00:58:02.580Z", "timestamp_ms": 1769648282580}, {"level": "INFO", "message": "Hard refresh successful, resuming with 961 reviews already collected", "metrics": {"reviews_collected": 961}, "category": "browser", "timestamp": "2026-01-29T00:58:02.681Z", "timestamp_ms": 1769648282681}, {"level": "WARN", "message": "SLOW cycle: 10.4s (api:0.1s dom:0.1s/201cards flush:0.0s seen:961)", "metrics": {"dom_cards": 201, "api_time_s": 0.06180167198181152, "dom_time_s": 0.11101222038269043, "seen_count": 961, "cycle_time_s": 10.43670916557312}, "category": "system", "timestamp": "2026-01-29T00:58:04.270Z", "timestamp_ms": 1769648284270}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.6s", "metrics": {"idle_seconds": 1.6076343059539795, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:04.289Z", "timestamp_ms": 1769648284289}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 184}, "category": "system", "timestamp": "2026-01-29T00:58:05.544Z", "timestamp_ms": 1769648285544}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.3s", "metrics": {"idle_seconds": 1.3025901317596436, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:05.619Z", "timestamp_ms": 1769648285619}, {"level": "INFO", "message": "DOM cleanup: removed 13 cards to prevent memory buildup", "metrics": {"cards_removed": 13, "cards_remaining": 138}, "category": "system", "timestamp": "2026-01-29T00:58:06.829Z", "timestamp_ms": 1769648286829}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.6s", "metrics": {"idle_seconds": 2.559969186782837, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:06.877Z", "timestamp_ms": 1769648286877}, {"level": "INFO", "message": "DOM cleanup: removed 14 cards to prevent memory buildup", "metrics": {"cards_removed": 14, "cards_remaining": 280}, "category": "system", "timestamp": "2026-01-29T00:58:08.423Z", "timestamp_ms": 1769648288423}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:08.471Z", "timestamp_ms": 1769648288471}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 279}, "category": "system", "timestamp": "2026-01-29T00:58:09.710Z", "timestamp_ms": 1769648289710}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.3s", "metrics": {"idle_seconds": 1.288745403289795, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:09.760Z", "timestamp_ms": 1769648289760}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 146}, "category": "system", "timestamp": "2026-01-29T00:58:11.053Z", "timestamp_ms": 1769648291053}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.6s", "metrics": {"idle_seconds": 2.6179745197296143, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:11.089Z", "timestamp_ms": 1769648291089}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 208}, "category": "system", "timestamp": "2026-01-29T00:58:12.213Z", "timestamp_ms": 1769648292213}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.8s", "metrics": {"idle_seconds": 3.7872676849365234, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:12.258Z", "timestamp_ms": 1769648292258}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T00:58:12.258Z", "timestamp_ms": 1769648292258}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 435}, "category": "system", "timestamp": "2026-01-29T00:58:14.048Z", "timestamp_ms": 1769648294048}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.6s", "metrics": {"idle_seconds": 5.639586687088013, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:14.110Z", "timestamp_ms": 1769648294110}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 232}, "category": "system", "timestamp": "2026-01-29T00:58:15.850Z", "timestamp_ms": 1769648295850}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.5s", "metrics": {"idle_seconds": 1.5360229015350342, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:15.890Z", "timestamp_ms": 1769648295890}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 114}, "category": "system", "timestamp": "2026-01-29T00:58:17.248Z", "timestamp_ms": 1769648297248}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.9s", "metrics": {"idle_seconds": 2.927574872970581, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:17.282Z", "timestamp_ms": 1769648297282}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 253}, "category": "system", "timestamp": "2026-01-29T00:58:18.412Z", "timestamp_ms": 1769648298412}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.1s", "metrics": {"idle_seconds": 4.120153427124023, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:18.474Z", "timestamp_ms": 1769648298474}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 115}, "category": "system", "timestamp": "2026-01-29T00:58:19.758Z", "timestamp_ms": 1769648299758}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.2s", "metrics": {"idle_seconds": 1.1535508632659912, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:19.778Z", "timestamp_ms": 1769648299778}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 206}, "category": "system", "timestamp": "2026-01-29T00:58:21.075Z", "timestamp_ms": 1769648301075}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.5s", "metrics": {"idle_seconds": 2.471492052078247, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:21.096Z", "timestamp_ms": 1769648301096}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 210}, "category": "system", "timestamp": "2026-01-29T00:58:22.337Z", "timestamp_ms": 1769648302337}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.8s", "metrics": {"idle_seconds": 3.760202646255493, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:22.385Z", "timestamp_ms": 1769648302385}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T00:58:22.385Z", "timestamp_ms": 1769648302385}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 282}, "category": "system", "timestamp": "2026-01-29T00:58:24.127Z", "timestamp_ms": 1769648304127}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.4s", "metrics": {"idle_seconds": 1.3957946300506592, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:24.156Z", "timestamp_ms": 1769648304156}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 241}, "category": "system", "timestamp": "2026-01-29T00:58:25.298Z", "timestamp_ms": 1769648305298}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.6s", "metrics": {"idle_seconds": 2.5516891479492188, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:25.312Z", "timestamp_ms": 1769648305312}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 227}, "category": "system", "timestamp": "2026-01-29T00:58:26.886Z", "timestamp_ms": 1769648306886}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.6s", "metrics": {"idle_seconds": 4.611978530883789, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:27.372Z", "timestamp_ms": 1769648307372}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 184}, "category": "system", "timestamp": "2026-01-29T00:58:29.910Z", "timestamp_ms": 1769648309910}, {"level": "WARN", "message": "SLOW cycle: 3.5s (api:0.0s dom:0.0s/194cards flush:0.0s seen:961)", "metrics": {"dom_cards": 194, "api_time_s": 0.016257524490356445, "dom_time_s": 0.02373671531677246, "seen_count": 961, "cycle_time_s": 3.5109713077545166}, "category": "system", "timestamp": "2026-01-29T00:58:29.910Z", "timestamp_ms": 1769648309910}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0728874206542969, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:29.925Z", "timestamp_ms": 1769648309925}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 184}, "category": "system", "timestamp": "2026-01-29T00:58:31.296Z", "timestamp_ms": 1769648311296}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.5s", "metrics": {"idle_seconds": 2.4600672721862793, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:31.312Z", "timestamp_ms": 1769648311312}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 91}, "category": "system", "timestamp": "2026-01-29T00:58:32.432Z", "timestamp_ms": 1769648312432}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.6s", "metrics": {"idle_seconds": 3.594876766204834, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:32.447Z", "timestamp_ms": 1769648312447}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T00:58:32.448Z", "timestamp_ms": 1769648312448}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 183}, "category": "system", "timestamp": "2026-01-29T00:58:34.150Z", "timestamp_ms": 1769648314150}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.3s", "metrics": {"idle_seconds": 5.33398699760437, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:34.186Z", "timestamp_ms": 1769648314186}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 324}, "category": "system", "timestamp": "2026-01-29T00:58:35.432Z", "timestamp_ms": 1769648315432}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.2s", "metrics": {"idle_seconds": 1.2395298480987549, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:35.494Z", "timestamp_ms": 1769648315494}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 179}, "category": "system", "timestamp": "2026-01-29T00:58:36.929Z", "timestamp_ms": 1769648316929}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.7s", "metrics": {"idle_seconds": 2.6883130073547363, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:36.943Z", "timestamp_ms": 1769648316943}, {"level": "INFO", "message": "961/1201 (80%) | idle: 6.3s", "metrics": {"idle_seconds": 6.341226816177368, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:40.596Z", "timestamp_ms": 1769648320596}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T00:58:40.597Z", "timestamp_ms": 1769648320597}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 82}, "category": "system", "timestamp": "2026-01-29T00:58:43.229Z", "timestamp_ms": 1769648323229}, {"level": "WARN", "message": "SLOW cycle: 4.4s (api:0.0s dom:0.8s/102cards flush:0.0s seen:961)", "metrics": {"dom_cards": 102, "api_time_s": 0.016897201538085938, "dom_time_s": 0.8268792629241943, "seen_count": 961, "cycle_time_s": 4.366563320159912}, "category": "system", "timestamp": "2026-01-29T00:58:43.230Z", "timestamp_ms": 1769648323230}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.2s", "metrics": {"idle_seconds": 2.2046725749969482, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:43.532Z", "timestamp_ms": 1769648323532}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 182}, "category": "system", "timestamp": "2026-01-29T00:58:45.865Z", "timestamp_ms": 1769648325865}, {"level": "WARN", "message": "SLOW cycle: 2.5s (api:0.1s dom:0.2s/192cards flush:0.0s seen:961)", "metrics": {"dom_cards": 192, "api_time_s": 0.10188961029052734, "dom_time_s": 0.2445077896118164, "seen_count": 961, "cycle_time_s": 2.5023317337036133}, "category": "system", "timestamp": "2026-01-29T00:58:45.868Z", "timestamp_ms": 1769648325868}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.6s", "metrics": {"idle_seconds": 4.597313404083252, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:45.925Z", "timestamp_ms": 1769648325925}, {"level": "WARN", "message": "SLOW cycle: 2.1s (api:0.7s dom:0.4s/20cards flush:0.0s seen:961)", "metrics": {"dom_cards": 20, "api_time_s": 0.7151093482971191, "dom_time_s": 0.4103078842163086, "seen_count": 961, "cycle_time_s": 2.1343772411346436}, "category": "system", "timestamp": "2026-01-29T00:58:49.029Z", "timestamp_ms": 1769648329029}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.2s", "metrics": {"idle_seconds": 3.156731605529785, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:49.120Z", "timestamp_ms": 1769648329120}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T00:58:49.122Z", "timestamp_ms": 1769648329122}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 178}, "category": "system", "timestamp": "2026-01-29T00:58:54.500Z", "timestamp_ms": 1769648334500}, {"level": "WARN", "message": "SLOW cycle: 6.3s (api:0.1s dom:0.3s/198cards flush:0.0s seen:961)", "metrics": {"dom_cards": 198, "api_time_s": 0.08639907836914062, "dom_time_s": 0.2634544372558594, "seen_count": 961, "cycle_time_s": 6.260755777359009}, "category": "system", "timestamp": "2026-01-29T00:58:54.501Z", "timestamp_ms": 1769648334501}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.5s", "metrics": {"idle_seconds": 2.4853506088256836, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:54.711Z", "timestamp_ms": 1769648334711}, {"level": "WARN", "message": "SLOW cycle: 2.5s (api:0.2s dom:1.3s/20cards flush:0.0s seen:961)", "metrics": {"dom_cards": 20, "api_time_s": 0.15876531600952148, "dom_time_s": 1.2831647396087646, "seen_count": 961, "cycle_time_s": 2.5323097705841064}, "category": "system", "timestamp": "2026-01-29T00:58:57.624Z", "timestamp_ms": 1769648337624}, {"level": "INFO", "message": "961/1201 (80%) | idle: 6.5s", "metrics": {"idle_seconds": 6.489750385284424, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:58:58.714Z", "timestamp_ms": 1769648338714}, {"level": "INFO", "message": "Recovery attempt #6...", "metrics": {"recovery_attempt": 6}, "category": "browser", "timestamp": "2026-01-29T00:58:58.716Z", "timestamp_ms": 1769648338716}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 6.489750385284424}, "category": "browser", "timestamp": "2026-01-29T00:59:02.341Z", "timestamp_ms": 1769648342341}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-29T00:59:02.546Z", "timestamp_ms": 1769648342546}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T00:59:10.695Z", "timestamp_ms": 1769648350695}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T00:59:14.241Z", "timestamp_ms": 1769648354241}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-29T00:59:16.974Z", "timestamp_ms": 1769648356974}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T00:59:17.023Z", "timestamp_ms": 1769648357023}, {"level": "INFO", "message": "Hard refresh successful, resuming with 961 reviews already collected", "metrics": {"reviews_collected": 961}, "category": "browser", "timestamp": "2026-01-29T00:59:17.215Z", "timestamp_ms": 1769648357215}, {"level": "WARN", "message": "SLOW cycle: 22.5s (api:0.4s dom:0.1s/93cards flush:0.0s seen:961)", "metrics": {"dom_cards": 93, "api_time_s": 0.3612196445465088, "dom_time_s": 0.12091445922851562, "seen_count": 961, "cycle_time_s": 22.532093286514282}, "category": "system", "timestamp": "2026-01-29T00:59:20.339Z", "timestamp_ms": 1769648360339}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.3s", "metrics": {"idle_seconds": 3.336434841156006, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:20.552Z", "timestamp_ms": 1769648360552}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T00:59:20.553Z", "timestamp_ms": 1769648360553}, {"level": "WARN", "message": "SLOW cycle: 4.1s (api:0.0s dom:0.0s/115cards flush:0.0s seen:961)", "metrics": {"dom_cards": 115, "api_time_s": 0.029537677764892578, "dom_time_s": 0.04427194595336914, "seen_count": 961, "cycle_time_s": 4.108419179916382}, "category": "system", "timestamp": "2026-01-29T00:59:22.504Z", "timestamp_ms": 1769648362504}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.1s", "metrics": {"idle_seconds": 1.1232361793518066, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:22.521Z", "timestamp_ms": 1769648362521}, {"level": "INFO", "message": "DOM cleanup: removed 6 cards to prevent memory buildup", "metrics": {"cards_removed": 6, "cards_remaining": 89}, "category": "system", "timestamp": "2026-01-29T00:59:23.746Z", "timestamp_ms": 1769648363746}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.6s", "metrics": {"idle_seconds": 2.6272034645080566, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:24.025Z", "timestamp_ms": 1769648364025}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.8s", "metrics": {"idle_seconds": 3.8118808269500732, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:25.211Z", "timestamp_ms": 1769648365211}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T00:59:25.212Z", "timestamp_ms": 1769648365212}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.3s", "metrics": {"idle_seconds": 5.2724928855896, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:26.670Z", "timestamp_ms": 1769648366670}, {"level": "INFO", "message": "961/1201 (80%) | idle: 6.3s", "metrics": {"idle_seconds": 6.312125205993652, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:27.710Z", "timestamp_ms": 1769648367710}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T00:59:27.711Z", "timestamp_ms": 1769648367711}, {"level": "INFO", "message": "961/1201 (80%) | idle: 7.7s", "metrics": {"idle_seconds": 7.680629253387451, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:29.079Z", "timestamp_ms": 1769648369079}, {"level": "INFO", "message": "961/1201 (80%) | idle: 8.8s", "metrics": {"idle_seconds": 8.757459878921509, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:30.155Z", "timestamp_ms": 1769648370155}, {"level": "INFO", "message": "961/1201 (80%) | idle: 9.8s", "metrics": {"idle_seconds": 9.803737163543701, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:31.201Z", "timestamp_ms": 1769648371201}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T00:59:31.202Z", "timestamp_ms": 1769648371202}, {"level": "INFO", "message": "961/1201 (80%) | idle: 11.2s", "metrics": {"idle_seconds": 11.17052936553955, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:32.569Z", "timestamp_ms": 1769648372569}, {"level": "INFO", "message": "961/1201 (80%) | idle: 12.3s", "metrics": {"idle_seconds": 12.26101565361023, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T00:59:33.664Z", "timestamp_ms": 1769648373664}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T00:59:33.665Z", "timestamp_ms": 1769648373665}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.26101565361023}, "category": "browser", "timestamp": "2026-01-29T00:59:34.154Z", "timestamp_ms": 1769648374154}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-29T00:59:34.355Z", "timestamp_ms": 1769648374355}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T00:59:44.120Z", "timestamp_ms": 1769648384120}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T00:59:44.940Z", "timestamp_ms": 1769648384940}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-29T00:59:49.306Z", "timestamp_ms": 1769648389306}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T00:59:51.538Z", "timestamp_ms": 1769648391538}, {"level": "ERROR", "message": "Scraper failed: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "system", "timestamp": "2026-01-29T00:59:57.316Z", "timestamp_ms": 1769648397316}] 2026-01-29 00:57:11.077667 \N \N \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N \N \N \N \N \N \N \N \N acb2e9f2-5951-476b-a5a5-71cf81009e6f completed https://www.google.com/maps/search/?api=1&query=%22fika%22%20boston%2C%20uk&hl=en \N \N 2026-01-24 16:42:20.988499 2026-01-24 16:42:34.195279 2026-01-24 16:42:34.282782 27 [{"text": "I lovely place to relax & enjoy a soft drink\\n& freshly prepared food to order. Worth the few minutes wait. Always a lovely greeting by lovely staff.\\nGames available to play, board, card & computer. Dogs welcome too.\\nAn amazing outside area.\\nDeserves every success.", "author": "Liz Scarbro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNROVlXRGNBEAE", "timestamp": "10 months ago"}, {"text": "Great coffee. Fresh baguettes with filling bursting out. Friendly attentive service. Lovely little garden, sheltered and a suntrap.", "author": "Jo Lo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJMk5yQ2p3RRAB", "timestamp": "9 months ago"}, {"text": "Been twice and the coffee is excellent! The staff are very friendly and the GF options are fantastic. Recommend the home made GF almond cakes. Delicious.", "author": "becky fenton-ree", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5VGQzTTRUVlpYYW0xUlRUVTJOM1puVFhkMVVHYxAB", "timestamp": "4 months ago"}, {"text": "Such a lovely café with beautiful decor and fair prices. The igloo garden is a fantastic idea – warm and cozy even on a chilly day. The coffee was delicious, and the staff were extremely friendly and welcoming. Thank you, JW 😁\\nHighly recommended!", "author": "BetiK", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZX3JUY1JREAE", "timestamp": "8 months ago"}, {"text": "⭐ 5/5 ⭐\\n\\nAmazing place for a coffee and a sweet treat! Cozy interior, friendly staff, and delicious drinks – I highly recommend their latte! 🥰\\n\\nA big plus is the Garden, a hidden gem where you can unwind in peace. If you haven’t been there yet, you’re missing out!", "author": "jakub Giemza", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnMk5lWlJREAE", "timestamp": "11 months ago"}, {"text": "Shopped off here for a very late breakfast and was really good. Great food and coffee and quite cheap too. We got a tiramisu to takeaway which was equally good.", "author": "Ricki Dunning", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNFNYRTVjRzVKUldSMFQycDJhREJoVm1kUlNYYxAB", "timestamp": "6 months ago"}, {"text": "Such a lovely new cafe on historic Red Lion St just opposite Centenary Methodist Church. The outside area, under cover, very peaceful and sunny - well, today at least. Great coffee. Best wishes FIKA.", "author": "Rev Dr Val Ogden", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3N1lhMWx3RRAB", "timestamp": "9 months ago"}, {"text": "Nice coffee, very tasty cheesecake 😋, excellent service. I recommend this place 👌 ♥️", "author": "Tatjana Kirilova", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWdlYxZzFMWGcyZVdZeGVYTlBOVFJ1VVRoT05tYxAB", "timestamp": "4 months ago"}, {"text": "This is a cute cosy cafe away from the town noise. The coffee was very tasty and pancakes too. Great place to chill after shopping or with a book. Will definitely be back", "author": "Holly Wilson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBZ3RmRlZnEAE", "timestamp": "11 months ago"}, {"text": "This local coffee shop offers a cozy, personalized experience around toen. Unlike chain cafes, it provides a more intimate atmosphere and attentive service, making it a refreshing alternative to larger coffee franchises.", "author": "kristaps piesis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfbVBXSU5nEAE", "timestamp": "a year ago"}, {"text": "I had a lovely experience today at Fika. The staff are wonderful very polite and friendly. Very warm and cosey. I would highly recommend trying the waffles their lovely and fresh.", "author": "Kenzie Nuttell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2MWN1VUJREAE", "timestamp": "a year ago"}, {"text": "The atmosphere is very cosy and friendly even the staff they are so friendly and nice,the coffee and the food are greats i enjoyed and I will come again with my friends.Thank you Fika 😊", "author": "Sonia Maximilian", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnejVTVVl3EAE", "timestamp": "10 months ago"}, {"text": "Food wasn't as great as I hoped for. Service was great", "author": "Agnes Emsina", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSalNWVjRSM1pLYXpBMlVVRnZRMmt5TW5OTWVrRRAB", "timestamp": "2 months ago"}, {"text": "I have been twice since it opened and the staff are lovely and amazing with kids. More highchairs are definitely needed though.", "author": "Katie Hazelden", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncGVhUG93RRAB", "timestamp": "11 months ago"}, {"text": "Amazing place for activities after school or on weekends.", "author": "Adrian Mickevic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBeG9QMXNBRRAB", "timestamp": "11 months ago"}, {"text": "Lovely café with a nice and cosy atmosphere, friendly staff and delicious sweet treats!", "author": "Irina Svinarova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBX3JTV2J3EAE", "timestamp": "11 months ago"}, {"text": "Gaming cafe with a secret garden. Only criticism is they dont advertise these parts of it at all. Need to let people know!", "author": "Tommy Leigh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRck91VzZBRRAB", "timestamp": "10 months ago"}, {"text": "I love their waffles 😍😍😍", "author": "Wiktor Komar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURnMV82bTVBRRAB", "timestamp": "10 months ago"}, {"text": "My new favourite place in Boston", "author": "Gytis Zubrickas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRNk1taWlRRRAB", "timestamp": "10 months ago"}, {"text": "Very good place I would recommend to anyone", "author": "Nikos radev", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRaElhNnZRRRAB", "timestamp": "10 months ago"}, {"text": "It is okay, the food and service is amazing the only problem is the times on Google maps and Facebook as it says it's open till 6:30pm and 8pm on Facebook but it closes at 4pm which sucks as we wanted to get coffee and some treats.", "author": "Silly fisheee", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkS1VqRTJkMVJDVW5KRVdEUndXVWxOUlhOSlVYYxAB", "timestamp": "a week ago"}, {"text": "Очень приятное, чистое место. Рекомендую посетить", "author": "саида абдуллаева", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VOdWY4TWpZcUtEc0ZBEAE", "timestamp": "7 months ago"}, {"text": "", "author": "Bartlomiej Szczurek", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLcVBvSmFWbU1Yb2VREAE", "timestamp": "8 months ago"}, {"text": "", "author": "Anetta Kdr", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxd05VOUxTWFl4YW5KUGMyWjFaalV4Y2xSRGVIYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "John Douglas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOVmQzTjJkVVo2WmtkaGRtNXlSRkpKV1dkak9IYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Andrei Henciuta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KT2VUZzNORzl2VUdkTVNreHFWVzgxYkRoTGJIYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Vali constantin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOR0RzLXUzd3Qyd3JBRRAB", "timestamp": "7 months ago"}] 12.988404 \N {"job_type": "google-reviews", "priority": 0, "business_name": "Fika", "rating_snapshot": 4.9, "business_address": "5 Red Lion St, Boston PE21 6NY, United Kingdom ", "total_reviews_snapshot": 27} 27 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T16:42:22.984Z", "timestamp_ms": 1769272942984}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T16:42:23.102Z", "timestamp_ms": 1769272943102}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22fika%22%20boston%2C%20uk&hl=e...", "category": "browser", "timestamp": "2026-01-24T16:42:23.275Z", "timestamp_ms": 1769272943275}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T16:42:25.523Z", "timestamp_ms": 1769272945523}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T16:42:26.055Z", "timestamp_ms": 1769272946055}, {"level": "INFO", "message": "Total reviews on page: 27", "metrics": {"total_reviews": 27}, "category": "scraper", "timestamp": "2026-01-24T16:42:28.989Z", "timestamp_ms": 1769272948989}, {"level": "INFO", "message": "Business: Fika", "category": "scraper", "timestamp": "2026-01-24T16:42:28.989Z", "timestamp_ms": 1769272948989}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T16:42:29.340Z", "timestamp_ms": 1769272949340}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T16:42:29.600Z", "timestamp_ms": 1769272949600}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T16:42:30.476Z", "timestamp_ms": 1769272950476}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T16:42:30.477Z", "timestamp_ms": 1769272950477}, {"level": "INFO", "message": "Sorted by newest", "category": "browser", "timestamp": "2026-01-24T16:42:31.515Z", "timestamp_ms": 1769272951515}, {"level": "INFO", "message": "Refreshed scroll container reference", "category": "browser", "timestamp": "2026-01-24T16:42:31.597Z", "timestamp_ms": 1769272951597}, {"level": "INFO", "message": "Blocking images for faster scrolling", "category": "browser", "timestamp": "2026-01-24T16:42:31.625Z", "timestamp_ms": 1769272951625}, {"level": "INFO", "message": "Found 4 review topics: garden, atmosphere, waffles, games...", "metrics": {"topic_count": 4}, "category": "scraper", "timestamp": "2026-01-24T16:42:32.678Z", "timestamp_ms": 1769272952678}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T16:42:32.678Z", "timestamp_ms": 1769272952678}, {"level": "INFO", "message": "27/27 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 100.0, "reviews_count": 27, "total_reviews": 27}, "category": "scraper", "timestamp": "2026-01-24T16:42:34.192Z", "timestamp_ms": 1769272954192}, {"level": "INFO", "message": "All 27 reviews collected", "metrics": {"total_reviews": 27, "elapsed_seconds": 1.5151898860931396}, "category": "scraper", "timestamp": "2026-01-24T16:42:34.193Z", "timestamp_ms": 1769272954193}, {"level": "INFO", "message": "Final flush: 27 reviews...", "metrics": {"source": "final_flush", "batch_size": 27}, "category": "scraper", "timestamp": "2026-01-24T16:42:34.193Z", "timestamp_ms": 1769272954193}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-24T16:42:34.194Z", "timestamp_ms": 1769272954194}, {"level": "INFO", "message": "Total: 27 unique reviews (flushed: 27, in memory: 0)", "metrics": {"flushed_count": 27, "total_reviews": 27, "elapsed_seconds": 1.515772819519043, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-24T16:42:34.194Z", "timestamp_ms": 1769272954194}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-24T16:42:34.194Z", "timestamp_ms": 1769272954194}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-24T16:42:34.194Z", "timestamp_ms": 1769272954194}] 2026-01-31 03:21:52.85744 [{"count": 4, "topic": "garden"}, {"count": 3, "topic": "atmosphere"}, {"count": 2, "topic": "waffles"}, {"count": 2, "topic": "games"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-24T16:42:23.009753", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Fika Coffee shop 5 Red Lion St, Boston PE21 6NY, United Kingdom 4.90 1709 Food_Beverage.Cafes_Coffee.Coffee_shop exact google a0940cf3-7dfc-4dd3-819f-b79341aabaf0 running https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en \N \N 2026-01-29 01:17:48.45178 2026-01-29 01:17:48.455068 \N \N \N \N \N {"multi_sort": {}, "retry_info": {"retry_reason": "next_sort", "selected_sort": "lowest", "original_job_id": "02eaebc6-8054-4714-b06e-c567e55c6a10"}, "retry_chain": ["02eaebc6-8054-4714-b06e-c567e55c6a10"], "bot_detected": false, "initial_sort": "lowest", "sort_strategy": "single", "initial_sort_used": "newest", "sort_orders_attempted": ["newest", "lowest"]} \N \N 2026-01-29 01:17:49.139527 \N \N \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N \N \N \N \N \N \N \N \N 901fc70c-9775-470b-bb25-13c3e2770325 partial https://www.google.com/maps/search/?api=1&query=%22ClickRent%22%20Gran%20Canaria%2C%20Spain&hl=en \N \N 2026-01-24 16:49:12.382088 2026-01-24 16:50:33.646054 2026-01-24 16:50:35.408968 230 [{"text": "", "author": "m b", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOallVdG1jR2hyYnpjelMzcGhjMWMyV0VGU00zYxAB", "timestamp": "5 hours ago"}, {"text": "Quick service, friendly staff definitely I will use Click Rental in the future!", "author": "George-Adrian Dumitrascu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOTGQwUjZaVFZNV0U5UFR6aFdNMHN6VW1sVVYwRRAB", "timestamp": "a day ago"}, {"text": "Samochód wydano jako „bez uszkodzeń”\\nZdjęcia przed wyjazdem zrobiliśmy na parkingu i niestety było aż 14 uszkodzeń - część z nich bardzo duża/widoczna jak np.wygiete drzwi tylne. Po przyjeździe w celu zwrotu pojazdu poinformowaliśmy pracownika o uszkodzeniach które wysłaliśmy w wiadomości e-mail w dniu odbioru pojazdu.Pracownik pierwsze co zrobił to zajrzał pod spód samochodu że niby uszkodziliśmy spód zderzaka (dodam że nie lakierowany) że nas obciążają. Mieliśmy pełne ubezpieczenie natomiast chcemy ostrzec innych aby wykonali sobie zdjęcia auta również pod zderzakiem oraz zgłosili to przed opuszczeniem parkingu pracownikowi. Dołączam kilka zdjęć. Gdy piszę tą opinię to właśnie czytamy e-mail że kwota obciążenia za rysy „pod autem” wynoszą 480€. I teraz wisienka na torcie - 90% aut na placu ma uszkodzenia pod zderzakiem - zrobiłem sobie zdjęcia 10 pierwszych z brzegu ;)\\nNa nasze szczęście zdjęcia robiły dwie osoby i mamy takie zdjęcie z datą i godziną. Tak, ku przestrodze. Jeszcze bezczelnie mówili nam że dali nam nowiutki idealny samochód.", "author": "Paweł Wache", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCU2VIVnJWV1ZpT0ZOVWNIaHBTMWhFWWsxV1EwRRAB", "timestamp": "3 days ago"}, {"text": "", "author": "Katja Fenn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oWFZuZzRTMGxDVEVNMFlrSjZlVGx0VEZWQloxRRAB", "timestamp": "3 days ago"}, {"text": "è già la terza volta che prenotiamo una macchina da Voi; abbiamo avuto un pò di difficoltà la terza volta, perchè la prenotazione era a nome di uno di noi, ma il secondo conducente, di cui avevo segnalato il cognome, era della persona che è venuta a ritirarla, e avete fatto un po' di storie, ma alla fine c'avete dato una bella macchina, pulita, profumata e ben tenuta... quindi grazie... consigliatissimi!!!", "author": "Claudia Di Benedetto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGS2NHZDBTV0ZRYkVJMFZGVk9aa3BrT1hOVFdHYxAB", "timestamp": "3 days ago"}, {"text": "Nice experience with great people , very nice and new cars !!!", "author": "Cosmin Anghelache", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SUldWVkNSVUp4TVdRemRVSk5YMlZOWDNGWFJrRRAB", "timestamp": "4 days ago"}, {"text": "Wir wollten unseren Mietwagen wie gebucht auf Gran Canaria abholen. Was uns dort erwartet hat, war kein Missverständnis, sondern ein Paradebeispiel dafür, wie man Kunden vergrault.\\n\\nBei der Abholung wurden wegen absoluter Kleinigkeiten künstliche Probleme aufgebaut. Plötzlich gab es Diskussionen um den Führerschein, obwohl dieser gültig und völlig unauffällig war. Zusätzlich wollten wir einen Zusatzfahrer eintragen lassen – ein Vorgang, der bei seriösen Vermietern Standard ist.\\n\\nHier wurde daraus jedoch ein Geschäftsmodell gemacht. Für den Zusatzfahrer und angebliche „Probleme“ sollten auf einmal hunderte Euro zusätzlich gezahlt werden. Der ursprünglich gebuchte Preis war damit praktisch wertlos. Am Ende standen rund 300 €, wo andere Anbieter für exakt denselben Zeitraum ca. 60 € verlangen.\\n\\nWir haben dem Personal diesen Vergleich sogar direkt vor Ort gezeigt. Die Reaktion: völlige Ignoranz. Keine Erklärung, keine Transparenz, kein Entgegenkommen – nur das starre Festhalten an einem völlig überzogenen Preis.\\n\\nDer Eindruck entsteht unweigerlich, dass hier bewusst Druck aufgebaut wird, um Kunden vor Ort zu überrumpeln und zu teuren Zusatzkosten zu zwingen. Wer nicht mitspielt, verliert Zeit, Nerven – oder geht, so wie wir.\\n\\nNach erheblichem Zeitverlust und einer maximal unangenehmen Abholung haben wir den Mietwagen konsequent abgelehnt. Und ganz ehrlich: Das war die einzig richtige Entscheidung.\\n\\nFazit: Dieses Verhalten hat nichts mit kundenorientiertem Service zu tun. Wer Transparenz, Fairness und einen respektvollen Umgang erwartet, sollte diesen Anbieter meiden. So gewinnt man keine Kunden – so verliert man sie.", "author": "Maximilian V", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsMGMyWkdYMlJmVWxoSGFVNHpjRTAyTUhsUFZuYxAB", "timestamp": "4 days ago"}, {"text": "Too many hidden charges", "author": "La", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KbU9EQXdkMmhFTVVzNU1pMXlNMmhYVlhsekxXYxAB", "timestamp": "4 days ago"}, {"text": "Alles gut abgelaufen, danke!", "author": "I Rak", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkS1ZFVTNSMnhVYTNjMlEzZHZRMU4wTVdGTlRrRRAB", "timestamp": "4 days ago"}, {"text": "Wir hatten ein neues Fahrzeug mit nur 4200 km. Das Auto war sauber, sowie technisches auch optisch 100% in Ordnung. Die Wegbeschreibung zum Meeringpoint muss ergänzt werden. Sie bezieht sich auf das Terminal 2 (nationaler Terminal). Kommt man im Terminal 1 (internationaler Terminal) an, muss man auch nach rechts, aber ganz zum Ende vom Terminal 1 gehen. (ca. 300 m) Ein Schild \\"Meetingpoint\\" haben wir trotzdem nicht gesehen.\\nDer Transfer zur Mietstation dauerte nur ca. 10 Minuten.\\nDie Fahrzeugführer und - Rückgabe ging auch sehr schnell. Sie dauerte nur ein paar Minuten, eben so lange wie man für den Papierkram braucht.", "author": "Olaf Kaiser", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFM2FrUlllVkJJYzNWTWF6SmZZWEYzT0ZsS1FWRRAB", "timestamp": "4 days ago"}, {"text": "Gran servicio, rápido y eficiente por parte de Valentina y todo el staff!! Un coche muy nuevo!! 100% recomendable!!", "author": "Alejandro García Díaz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OaU5ESXhYMHhaTmxwTFFUVmxWSHBLTkRRNU5VRRAB", "timestamp": "4 days ago"}, {"text": "El punto de encuentro no esta señalizado, aunque es mejor decir que esta justo al final del edifico de salidas en la parada de los autobuses. La entrega fue un poco lenta quizas coincidimos muchos para la entrega de vehiculos, cuando nos toco turno fue mas o menos rapido igual depende de la documentacion o los contratos de cada uno. Agradecer mucho al chico (conductor moreno) no se su nombre del shuttle por la ayuda a recuperar mi movil olvidado en un taxi del aeropuerto. En general ha sido buena experiencia.", "author": "ALEJANDRO DDR", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwaGVURXdVVTB0YWxkS1RFYzJPR0UyVXpkemNHYxAB", "timestamp": "5 days ago"}, {"text": "Hat alles gut funktioniert, das Abholen war nur etwas kompliziert, weil wir herumgeirrt sind und nicht wussten, wo genau sie einen vom Flughafen abholen. Sind dann mit dem Taxi (8€) zur Vermietstation gefahren. Aber ansonsten Preis völlig fair, Rückgabe lief auch unkompliziert :)", "author": "Ca Mu", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwcFdHVmhaRVZUVTJkWFNHTnFOMVpwUldKV01sRRAB", "timestamp": "6 days ago"}, {"text": "Alles bestens! Super Service! Reibungslose Abwicklung! Neues und sauberes Fahrzeug!\\nEinzige Kritik:\\nKeine ordentliche Beschreibung vom Standort des Shuttlebusses. Ein einfacher Hinweis auf das obere Stockwerk (Abflughalle). Nach rechts gehen bis ca. Abflug Gate 2-5 wäre sehr hilfreich. Musste anrufen und dann bekam ich ein Youtube Video vom Standort zugeschickt. Fahrer war jeweils sehr freundlich und hilfsbereit.", "author": "Kurt Bahner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaUxWaE1lRE0xU21KU05pMTZZVFZ1ZDBwck1tYxAB", "timestamp": "6 days ago"}, {"text": "Es war alles perfekt, bis auf die fehlende Beschilderung der Bushaltestelle des Shuttles am Flughafen. Immer wieder gerne.", "author": "Anna Sotke", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tad1FucFpjekpwU0ZsZmNXcFZUbE14TkhoMFdFRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Aldo Muscia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0WU9WWnJSalZaT0RCclVVcERSSEJDV0hwdWJVRRAB", "timestamp": "a week ago"}, {"text": "Nous avons loué une voiture chez Click & Print pour notre séjour à Gran Canaria.\\n\\nPoints positifs :\\nLa vidéo envoyée avant l’arrivée pour trouver l’emplacement de la navette est très utile — sans elle, nous aurions eu du mal à trouver.\\nLe véhicule était impeccable, récent et parfaitement conforme à la réservation.\\nL’agence est située à environ 5 minutes de l’aéroport : même si elle n’est pas directement dans le terminal (ce qui explique aussi ses tarifs plus attractifs), l’accès reste rapide et pratique.\\n\\nPoints à améliorer :\\nÀ notre arrivée au point de rendez-vous de la navette, il n’y avait personne, ce qui est très stressant lorsqu’on arrive dans un pays étranger. Un simple message indiquant un délai ou une présence visible éviterait cette situation.\\nL’accueil, aussi bien du chauffeur que du personnel à l’agence (aller comme retour), manque de chaleur. Personne n’a été désagréable, mais le sourire et la mise en confiance sont essentiels dans le secteur du tourisme.\\n\\n👉 En résumé : service sérieux, voiture nickel, mais expérience client perfectible sur l’accueil.\\nJe recommande malgré tout et referai appel à eux maintenant que je connais le fonctionnement.", "author": "Virginie SOULIER", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1b1IwSmxZMHR2TUdGWE1FYzRNMncyU0ZBNWJsRRAB", "timestamp": "a week ago"}, {"text": "Alles top,\\nSuper Preis!", "author": "Henna Starla", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGYU5IUkxWbE5tVFc1bVprSTFMVzVXY0hscVZHYxAB", "timestamp": "a week ago"}, {"text": "Last two times was everything perfect and easy. This car rental service I can recommend.", "author": "Sandra Hofmann", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSVGRuSTVPVTkwU0RGQ2JIVmhlRzlEYVVwUVRsRRAB", "timestamp": "a week ago"}, {"text": "Vehículo en perfecto estado. Situado fuera del aeropuerto , cerca eso si, y te trasladan. Recomiendo no alquiler a través de Do You Spain pues las condiciones contractuales no están claras. Por lo demás personal amable y buen servicio", "author": "Fernando MIGUEL MONTES", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelpETTRVV3RQVEhWQ05YTkZaRXB6Uld4MVpXYxAB", "timestamp": "a week ago"}, {"text": "Súper la atención recibida y todo lo relacionado con el coche, volveremos a repetir sin dudas y lo recomendamos al 100%", "author": "Yudeisy Brito Paz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkdFZIaG1RakJOYm5obU9UVmZjMjl5WjBVeGVVRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Braulio Gopar Quevedo", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oaVozRlZVamRvY2pkSFJFSkllalJXWDIxMFFuYxAB", "timestamp": "a week ago"}, {"text": "Everything was very easy and fast, the staff is super, kind and nice! I highly recommend it!", "author": "Andreea Popa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pjM2VIWllkbFJLWVdsbFUzSm5aamxpV2tadFdrRRAB", "timestamp": "a week ago"}, {"text": "Everything went smoothly,no issues, nothing to improve, very happy I chose this company to hire the car 😀", "author": "Zivilek Kaubriene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelRtcHhia05ETkZkaE9XTTBNbTFoWWtWTmJuYxAB", "timestamp": "a week ago"}, {"text": "The initial price looks to good to be true - no one can expect to get a car for that price. Understandable that they want to make some money - so the fine print is important. And somehow understandable.\\n\\nBUT: the do not stick to their own contract and overcharge you substantially - even everything is clearly laid out in the contract. But they do not care. AND THIS IS WHAT I CONSIDER AS CHEATING!!!", "author": "Karsten Knorr", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxVWFGWnJhR0pOV25OV09HVXRaRmRKUzBaWmNWRRAB", "timestamp": "a week ago"}, {"text": "Rented cars from them 2 separate times during my stay on Gran Canaria and would definitely recommend them! Some of the cheapest prices for rental cars I found on GC. Location is a bit outside of the airport but there’s a shuttle bus or you can walk there (15 minutes, would only recommend if you have little luggage). Staff is super friendly (they speak English and Spanish fluently), got the keys quickly both times and return was also very unproblematic and quick.", "author": "Susanne Frühling", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxTFgwSlBVRTVYTlZOQk1ISlhUREJRZG1RME4zYxAB", "timestamp": "a week ago"}, {"text": "", "author": "Arnold K", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSQ00xTk9XR2REVVd4WlRteHhOSEJ4WDFSSGFrRRAB", "timestamp": "a week ago"}, {"text": "Choose a different company!\\nWe get here by foot because didn't want to spend hours of waiting for a shuttle bus . Negative atmosphere in the office people are not happy with service. One lady warned us to take pictures of the bottom of the car as they found scratches on the safety pan underneath. Took ages to get the car.\\nWas charged 35€ for their fuel policy as we booked not via their website\\nWas charged another 60€ for managing the damage. ( windscreen chip costs €1200)\\nCouldn't find any of this info in terms and conditions.\\nReceived damaged car.\\nWaited shuttle as the driver needed to check damage on the car. And he was waiting another employee(not sure why it takes 2 person) We asked him 2 times to drive us to the airport as we had a flight scheduled(airport is 3 minutes away, we waited 25 minutes for him)", "author": "Arnold K", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzeVVXbG1OMHMxYTNOTGR6VlNkVTVPZWt0V01tYxAB", "timestamp": "a week ago"}, {"text": "Desde el principio muy problemático. Estubimos por horas esperando en el aeropuerto. En la página ponía que la renta car estaba en el aeropuerto, pero no, del otro lado, donde de las salidas esperas 1 hora. Luego lo del combustible tiene trampa. Mejor buscar una renta car en el aeropuerto.", "author": "Eduardo Almeida", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTUxXZE5NVlF3WkdOU1F6aE5UbWh1ZGpSSmVFRRAB", "timestamp": "a week ago"}, {"text": "With car was everything good.", "author": "Jarosław Dudek", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WbVVXUXpja05pVm5ndFJEZFlaalp1TVVGNWMwRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Ghofran Alwan", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xrNFluWkZabFJtWDNKTVVVWjBRV1U0VWpaZlVIYxAB", "timestamp": "a week ago"}, {"text": "Finger weg – seriös ist anders.\\n\\nBei der Rückgabe unseres Mietwagens wurde uns plötzlich ein angeblicher Schaden in Höhe von knapp 500 € in Rechnung gestellt. Laut Vermieter handelt es sich um einen Kratzer im unteren Bereich der vorderen Stoßstange, praktisch im Unterboden unterhalb der Frontschürze. Wir haben das Fahrzeug bei Übernahme und Rückgabe umfassend fotografiert – lediglich den Unterboden nicht, da man sich dafür unter das Auto hätte legen müssen und der Boden auch noch nass war.\\n\\nWir haben diesen Schaden definitiv nicht verursacht. Zudem befindet er sich an einer Stelle, an der es nicht möglich ist, dass er durch Dritte entstanden sein könnte. Auffällig war außerdem, dass der Mitarbeiter bei der Fahrzeugrücknahme als Erstes gezielt den vorderen Schweller kontrolliert hat.\\n\\nEigenartig fanden wir im Nachhinein auch, dass wir bei der. Anmietung ein Fahrzeug-Upgrade erhalten haben, nachdem die (leider sehr unfreundliche) Mitarbeiterin am Schalter erfahren hatte, dass wir über CHECK24 eine deutsche Vollkaskoversicherung ohne Selbstbeteiligung abgeschlossen hatten. Im Nachhinein ergibt für uns einiges mehr Sinn – Schelm, wer Böses dabei denkt. Anscheinend ist dies eine Masche bei dieser Autovermietung, wie man den anderen Google Bewertungen entnehmen kann, die wir besser im Vorhinein gelesen hätten.\\n\\nDie einzigen wirklich freundlichen Personen waren die Busfahrer für den Transfer zum und vom Flughafen.\\n\\nWir mieten mehrmals im Jahr Fahrzeuge, werden diesen Vermieter jedoch definitiv NIE NIE wieder nutzen und können nur dringend davon abraten.", "author": "Hannes Wolk", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGNVJEVkZWM3B3ZG1kUVgzSkRYMGR4YTNwdmNYYxAB", "timestamp": "2 weeks ago"}, {"text": "My experience was good. I was a bit vary of the negative experiences by former clients, but the service was good and the car was available immediately. Would use their services again.", "author": "Chill The Pill", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxM2VTMHRlbTlwY0VNNWVtUlNWM1pKZDJweWVsRRAB", "timestamp": "2 weeks ago"}, {"text": "Me sorprendió tener que pagar 35 euros por algo así como \\"gastos de repostaje\\" que aparecía en la letra pequeña del contrato. Una sensación como de engaño encubierta", "author": "José Ramón López", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pONWNIUXRhVEIxVlVGSkxXaEVVVmt5TmxSWFUwRRAB", "timestamp": "2 weeks ago"}, {"text": "Wir sind zu Fuß die zwanzig Minuten zur Station gegangen. Schadet nach 5 Stunden fliegen sowieso nicht wenn man sich ein bisschen bewegt. Dort mussten wir vielleicht 15 Minuten warten bis wir an die Reihe kamen und das auch nur weil der Herr vor uns keine Kreditkarte hatte und somit die Kaution nicht hinterlegen konnte.\\nAlso unbedingt eine echte Kreditkarte dabei haben und keine Debit Karte, die wird nicht akzeptiert. Als wir an der Reihe waren hatten wir es mit einer sehr netten Mitarbeiterin zu tun die uns alles super erklärt hat und uns nach kurzer Zeit den Schlüssel ausgehändigt hat. Der Hyundai i10 den wir bekommen haben war bis auf den Kratzer der schon dokumentiert war picobello sauber und fast neu, sowie sogar schon auf Deutsch eingestellt.\\nWir waren eine Woche auf der ganzen Insel unterwegs und wir waren sehr zufrieden damit. Das zurückgeben ging bei der selben netten Mitarbeiterin sehr flott und ohne Beanstandungen. Die Kaution war einen Tag später auch schon wieder freigegeben. Alles in allem sehr zu empfehlen. Gebucht hatten wir über Check 24 und mussten vor Ort auch außer der Kaution nichts bezahlen.", "author": "Sebastian Ostermeyr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSUFIyZE5SWE5QYldjMVZIbDRTa0l4WWtONU1VRRAB", "timestamp": "2 weeks ago"}, {"text": "Lentoasemalta ei saanut suoraan autoa ja konttorille pääsy osoittautui monin tavoin hankalaksi. Konttorilla vastassa oli erittäin epäystävällistä palvelua ja joustamatonta rahastuksen makua, millaiseen emme ole koskaan ennen autoa vuokratessa muilla firmoilla törmänneet.", "author": "Niina Lumus", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WUFFUTmxVMEZXU1RFNVdGWkJTMVJ2UlZGRU0xRRAB", "timestamp": "2 weeks ago"}, {"text": "Very difficoult to get to from the airport. When criticised their policies they refuced to give the car that we already paid and also refused to refund our money. We got literally robbed!!!", "author": "Antti Lumus", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wTVRuRmlabmR0UjJwbVkyZzRXalpIZWtVNFZIYxAB", "timestamp": "2 weeks ago"}, {"text": "Wir haben für eine Woche ein Auto gemietet. Preislich top! Wir haben nur 160€ bezahlt.\\nDa wird über einen anderen Anbieter gebucht haben, wussten wir leider nicht, wo der Shuttle abfährt. Wir nahmen dann für 12 € ein Taxi.\\nIch nehme an, dass das Shuttle draußen vor Terminal 7 fährt, zumindest würden wir dort abgeladen (s. Fotos)\\n\\nBei der Abgabe hat alles reibungslos geklappt. Ich empfehle Bilder von den Schäden zu machen und mit der Dokumentation von vorhandenen Schäden, die man bei der Abholung bekommt, abzugleichen. Wir wurden nämlich auf einen schaden angesprochen, hatten aber dann alles gleich zur Hand und alles war gut!\\n\\nWir würden hier wieder mieten. :)", "author": "Nancy Müller", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psdU56TmFkQzA1ZUVGU1ozYzFRV3BMY2tGdWFGRRAB", "timestamp": "2 weeks ago"}, {"text": "Abbiamo appena restituito la vettura presa a noleggio con il pieno di benzina, come da indicazioni del presonale. La navetta era già pronta per accompagnarci all'aeroporto. Arrivati in soli 5 minuti. Direi servizio eccellente. Ora attendiamo che ci venga restituita l'intera caparra di € 200,00 ma, vista la loro serietà e professionalità, non credo che ci saranno problemi, anche se alcune recensioni lette evidenziano che sono state trattenute ingiustamente delle somme. Di questo daremo conferma ai lettori appena ci verrà restituita la caparra", "author": "Aleaquilani Aquilani", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKNVIxVk5SVmhRWWpaSll6bHBlSFZxUzJkNlZuYxAB", "timestamp": "2 weeks ago"}, {"text": "Realicé una reserva con número DYS-196659551 a través de de doYouSpain y al llegar, se niegan a entregarme el coche porque no disponen de un lector para tarjeta virtual y ni aceptan los datos de la tarjeta para cobrar el depósito. Así mismo se niega a devolverme el dinero ya que según ellos no son responsables. Clickrent es una estafa que puede parecer barata pero te arriesgas a quedarte sin coche y perder tu dinero.", "author": "Carlos Moreno", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwNmNqbHVRMmRmU3pocFMxQk9hR2xZUzBKaE1uYxAB", "timestamp": "2 weeks ago"}, {"text": "Muy contento con esta compañía. El vehículo muy nuevo y limpio . La chica que me atendió Carmen , como el chico que recibió el vehículo, Dani , una atención excelente . Sin duda volveré a alquilar con esta compañía", "author": "Aaron", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pjMGFWTjBkVEZwYlhrMU1qaHBUMVZwTmtreFdVRRAB", "timestamp": "2 weeks ago"}, {"text": "Quiciera poner - una estrella no la merecen.\\nUna experiencia decepcionante muy mala empresa de renta car pésima. Precios engañosos muy altos nada de competitivos. No alquilar con esta empresa.\\nMi mala experiencia ocurrió en las palmas de grancanaria. Punto de recogida no estaba claro difícil de encontrar. Realice el pago de alquiler de coche por 1 solo dia por 57€ en el que estaba ya incluido seguro online. Al llegar al la oficina de clickcard me dice que bonito pagar 44€ por otro seguro todo riesgo 85€ deposito de gasolina y adicional pagar una tasa de gasolinabde 35€ los cuales no se devuelven mas 200€ de deposito. En total alquilar un coche por 1 dia\\n137€ que no devuelven mas.\\n\\nTotal alquiler coche 1 dia 421€.\\nes de muerte de susto la estafa de esta empresa.\\nMe han devuelto\\n285€\\nNo es justo que esto pase tanto dinero publicidad engañosa. Juzguen ustedes y no alquiler. Todos los que estábamos esperando a recibir las llaves del coches en ese momento estaban inconforme por tatas tasas que cobran.", "author": "juliana santamaria", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4M1lURjFjVmwxTVhNeWRsODNXblI1Y2tOblRHYxAB", "timestamp": "2 weeks ago"}, {"text": "Polecam. Wszystko sprawnie.", "author": "Michał Kryński", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GSWNubFpVWGMyTmxCRk4zWnZUbkZGTWxsSmRIYxAB", "timestamp": "2 weeks ago"}, {"text": "Despropósito de principio a fin. Al llegar al aeropuerto ni las instrucciones estaban bien en los correos recibidos, ni el punto de encuentro claro. Al llegar finalmente a la oficina la información tampoco fue precisa. Abren a las 08:00 por lo que como nuestro vuelo sale antes, nos dijeron que tendríamos que dejarlo en un parking cercano que es de otra empresa, y que tenia un coste de unos 50 € !!!! Totalmente desproporcionado pero no quedaba otra. Al ir a entregarlo el último dia no habían hecho la reserva por lo que tuve yo que hacer una reserva online en la web de ese parking, pagar 15€ y cual no fue mi sorpresa que además después me han cobrado esos 55 € de la retención de la tarjeta. … Muy mala experiencia. Nada recomendable.", "author": "Borja Basozabal", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trMFZYcEpPWGRoY0hKRVlsQnpYMUJzTFhwa1RsRRAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "Belén Bustabad Fernández", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21od09EQXdTVE4wVlhKd2NVbHRVMUE1TFZFMFZWRRAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "BerndE", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xrNE5uVTVVM0Z6TnpKemEwd3dVR3h1WWpWbE4zYxAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "Csaba Pál", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pZdFozQlRNVkZPVXkxWWRYaE5jVVpFTUY5clYzYxAB", "timestamp": "Edited 2 weeks ago"}, {"text": "Great experience using ClickRent. Quick check in and check out and regular shuttles.", "author": "Rebecca Wilkinson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25ZMGFHbzJTRkJvVFRGaFMxVTRXVlp5WTNkb2FFRRAB", "timestamp": "2 weeks ago"}, {"text": "", "author": "Virginie Clerc", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aTlh6azBVRVEzVm5SeVNFSlpkMVk0ZDBKU1kwRRAB", "timestamp": "2 weeks ago"}, {"text": "Brak możliwości załatwienia formalności w biurze jak i na infolinii. Z powodu braku jednego dokumentu przy komplecie dokumentów czlonka rodziny nie ma możliwości zmiany rezerwacji!!!! ubezpieczenie w tym przypadku nie działa. W punkcie trwała kłótnia z trzema niezależnymi rodzinami. Jedni mieli problem bo karta nie należała do zakładajaceco rezerwacje, drugim naliczono nieuzgodnione opłaty. Młoda i bardzo opryskliwa i niemiła obsługa:( Biurowiec z dala od lotniska co sprawia, że nie można wrócić bez ich pomocy.", "author": "Danuta Fi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tseFIzRmFWVmd6YVRGWFZEZE5ZbTlJVFVWemRXYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "qilu zhang", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21odVgwWldjamhtY1dSR0xXSnBjVEJUUkdodE5HYxAB", "timestamp": "3 weeks ago"}, {"text": "Impuestos inventados para sacarte el dinero.\\n96e más tuve que pagar por el combustible.. Era eso o dejar una fianza de 1000e con tarjeta de crédito ya que no puedes con la de débito.\\n55e más por entregar el coche fuera de horario laboral.\\n\\nUn robo", "author": "Marcos Cabrera", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1NlVsVnRXRFpEWjNac2JsbEhkRFpyT0ZWR1dHYxAB", "timestamp": "3 weeks ago"}, {"text": "Wir hatten einen T- Roc im Full Tarif auf Gran Canaria gebucht und bekommen. Die Buchung war einfach, die Abholung (Transfer) hat super geklappt. Wichtig ist es, den Sammelpunkt auf dem Abflugdeck (Etage 1 Ausgang 1) aufzusuchen und ggf. einfach paar Minuten zu warten. Die Übergabe verlief schnell und das Fahrzeug war sehr sauber. Wir waren sehr zufrieden und kommen gern wieder.", "author": "Jay Jay", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twNWJsUnBNMWxmUVVvM1UySm5hemwwYm5sNFkzYxAB", "timestamp": "3 weeks ago"}, {"text": "Wij hadden onze auto voor een week gehuurd bij bedrijf do you spain. Wij kregen 1 dag van te voren een mail dat clickrent voor ons klaar zal staan op een ontmoetingsplek op het vliegveld. Na een uur zoeken hadden we de super slecht vindbare plek gevonden. Helaas niemand aanwezig. Sta je daar met je koffers te bellen naar het bedrijf, word.je na 30 min opgehaald door een busje. Onze keus bik do you spain was dat we de auto op het vliegveld konden op pakken en meteen naar bestemming maar helaas.\\n\\nEenmaal aangekomen kwam het volgende ellende.\\nEr werd ons verteld dat we €1000.- borg moesten betalen via creditcard, dit kon niet doordat ik de boeker was en geen creditcard had. Dan moest ik maar via de creditcard van me vrouw €200 borg betalen. Daarbovenop kwam nog is dat ik niet verzekerd ben terwijl ik alles compleet heb geboekt! Ja maar niet bij ons zei de man achter de balie. Ik heb niet voor clickrent gekozen maargoed je heb geen zin in dit gedoe dus je betaald maar dubbel je verzekering en extra borg voor benzine.\\n\\nMet het inleveren van de auto hebben wij expres van te voren de auto gereinigd en vol getankt om nog meer betalingen te moeten doen als we naar huis willen. Gelukkig maar dat dit goed ging.\\n\\nDaarom dus nooit bij do you spain boeken en dat dit bedrijf extra kosten voor de verzekering heeft gerekend betekend ook dat hun oplichters zijn.\\n\\nBij andere bedrijven was het altijd van te voren boeken verzekering betalen , auto staat klaar en de vakantie kan beginnen.", "author": "Stefan Delil", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWUWFFc3lWV3hWZUU5WlYxbEljVzVhT1c1VGJHYxAB", "timestamp": "3 weeks ago"}, {"text": "Everything was great!\\n\\nHad 200€ deposit taken upon delivery and unlocked upon return. The car was completely new - 1900km only! Everything worked perfectly and smoothly. Service was great - just recommend paying for the extra coverage (0€ franchise), so that you don’t get charged extra :)\\nRecommend!", "author": "Gerda Grinkeviciute", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tORGFrZFBZME5ZY2pWbVZYSkxOREpWWW1OMGVHYxAB", "timestamp": "3 weeks ago"}, {"text": "Siamo state molto soddisfatte: velocità sia nella consegna del veicolo che, soprattutto, nella restituzione.\\nPer quanto riguarda lo shuttle, invece, l’organizzazione potrebbe essere migliorata.\\nNel complesso, comunque, lo consiglierei.", "author": "Dorotea Cinquino", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxSlpXSlFibXh3ZDNsZmIzQkZSMG8wZFdOd1RFRRAB", "timestamp": "3 weeks ago"}, {"text": "El servicio fue lamentable!\\nPrimero, la comunicación para la recogida fue difícil, tuvimos que esperar 20 minutos sin saber con certeza si llegarían a recogernos al punto de encuentro del aeropuerto.\\nAdemás de los cobros extras sin mucha explicación, solo se limitaron a decir que debíamos aprender a leer, cuando claramente hay un sistema diseñado para tomar ventaja del usuario y obligar a tomar el seguro con ellos.\\nPor último, la persona a cargo fue el ser menos empático del planeta, sus comentarios eran todo el tiempo provocadores, una chica bastante conflictiva y poco empática.\\n\\nClaramente la experiencia de entrada a las vacaciones en la isla no fue la mejor, por suerte el resto fue increíble, los locales fueron lo suficientemente amables para olvidar la mala experiencia con esta persona.\\n\\nDefinitivamente NO recomiendo ClickRent. Terrible experiencia.", "author": "Paula Urrea", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tnNVp6WkpSak54UlUxU05uVjZZa1pUVlU1WVZsRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Сергій Василенко", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4d1NGVkdURjlHWkRnNVRESmpWbloyU1dkdFJrRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Michael Petruch", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwb1MzUTFSbmhJYkdOaFlrMVNNRE5QYjNvdFJrRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Lluís Llinàs", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KYWJHWnZjVEV3T1hCaE1XTkJiWGR4WVZwRE1FRRAB", "timestamp": "3 weeks ago"}, {"text": "Somos clientes desde hace años, deberían de mejorar el servicio de lanzadera sobre todo en el aeropuerto de gran canarias ,hoy llevamos casi una hora esperando para que nos lleven a recoger el coche.", "author": "Michel Berni", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGeVRqTTNOalkzVm05cWRuZG1XRXd0WVcxU1gzYxAB", "timestamp": "3 weeks ago"}, {"text": "Worst car rental ever. Chaos, long queues, small shuttle.\\n\\nIf you have a flight to catch make sure you arrive much earlier to give back the car.\\n\\nPersonly, i am never renting from here again.", "author": "Kareem Jano", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGM1ZsZEthVTlyTW5oRVdYWmpSbEZ3YjJoWlEyYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Maik Krüger", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWWFVHeHhNbWxpTW1SVVJFNVZSa3hLWlVaRFEwRRAB", "timestamp": "3 weeks ago"}, {"text": "A fuir !!! L'agence ne nous a pas restitué le véhicule car ils nous disent que le permis est expiré, or je leur explique qu'un permis voiture n'expire pas mais que c'est mon permis poids lourd qui est expiré.\\nIl ne veut rien savoir au guichet et nous dit de partir. Je lui demande le remboursement et il me répond de voir avec Do you spain .\\nNous avons dû louer un autre véhicule à l'aéroport hors de prix car au dernier moment. C'est donc la preuve que mon permis est bien valide.\\nContacter Do you spain est un véritable calvaire en étant français tout comme l'agence clickrent. Ça fait une semaine qu'on est en lien avec eux et ils ne comprennent toujours rien ...\\nNous n'allons pas en rester là .\\nA fuir Clickrent et Do you spain, des voleurs !", "author": "Manu gaigier", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aQ2VrSnhjREZ1ZFZJMlVWVmlSaTFaVVcxTWQyYxAB", "timestamp": "3 weeks ago"}, {"text": "Attention : arnaque assumée\\nIls ont tenté de me faire payer une rayure déjà présente sous le véhicule lors de la prise en charge. J’avais pris des photos au départ, sur lesquelles la rayure était partiellement visible. Leur réponse ? La partie non parfaitement visible sur les photos serait, selon eux, « nouvelle ». Évidemment faux : il s’agissait clairement d’une seule et même rayure.\\nMauvaise foi totale.\\nJ’ai dû hausser le ton, menacer d’appeler mon avocat et faire un scandale devant les autres clients pour qu’ils renoncent enfin. Leur méthode est simple : profiter du stress du vol retour pour mettre la pression et extorquer de l’argent.\\nPratique malheureusement courante chez certains loueurs low-cost. À éviter absolument.", "author": "Benjamin Barbaud", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5V1NsWmZSWHBGYlZndE4xUnBWMVpCVEZGUmFsRRAB", "timestamp": "3 weeks ago"}, {"text": "Super freundliches Personal, zuverlässig. Das Auto war sauber und gepflegt. Reservierung dort, gerne wieder 👍🏻", "author": "Birgit R", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25acE1IbFRSMHhxWVROTGJsVmhkekJGYjFsb1oxRRAB", "timestamp": "3 weeks ago"}, {"text": "Basically a total disaster; shuttle bus took forever to arrive, there is no office at the airport despite being mentioned during the booking phase, car had undocumented damages that the staff was very reluctant to document, checkin was dreadfully slow and inefficient and car was smaller than booked. All in all one of the worst car rental experiences ever.", "author": "Erik Schobesberger", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5RFdrTlhSekI0ZDFJMFlqTmFUMk5KYVVSTU1HYxAB", "timestamp": "3 weeks ago"}, {"text": "Excellent team in Gran Canaria. I made a mistake when I booked the car and tried to pick it up the day before my booking started. They were very helpful and arranged that I could take the car 1 day earlier. ¡Muchas gracias!", "author": "Attila H", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205TGVETTBSVm90YzB4RVgxcEVOMmRwV1ZWbVdtYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Tiago Alves", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WbVYxbG1NeTFsVUV0SlIxbFNWak16Wld0MU5HYxAB", "timestamp": "3 weeks ago"}, {"text": "I’ve never seen a business so dedicated to fleecing customers. Avoid them at all costs.\\n\\nThey used every trick in the book to squeeze more money out of me the second I landed. First, they charged me an extra fee for fuel just because I apparently \\"didn't tick a box\\" for full-to-full. It’s a total scam designed to catch people out.\\n\\nThen they arbitrarily rejected my valid payment methods for the deposit—refusing cards for no reason—just to force me into paying a ridiculous €200 for \\"insurance\\" and tax that I didn't need and didn't want (I have insurance already). It’s pure coercion.\\n\\nSo I ended up paying DOUBLE for this car!!\\n\\nTo make matters worse, the staff were incredibly aggressive. The woman behind the desk actually started shouting at me, insulting my intelligence by yelling \\"it's not my fault you can't read\\" when I questioned the charges. She even went as far as making nasty, insulting comments about my wife’s home country saying the customer service is worse there.\\n\\nCompletely unprofessional, predatory, and nasty. Save your money and your sanity—rent from literally anyone else in Gran Canaria.\\n\\nI have filed a formal complaint but they are just completely ignoring me. This is ilegal and i will be taking this further.\\n\\nOh and the shuttle bus is terrible so takes ages to pick up and drop off your car.", "author": "Robert Parrish", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21kcmNEZzFhRVIyYVd4Q1IxbHBVak5yWVRRd2JtYxAB", "timestamp": "3 weeks ago"}, {"text": "Bij aankomst op de luchthaven moesten wij ons melden bij een informatiepunt om met een shuttlebus naar de locatie te gaan waar we de huurauto konden ophalen. Dit informatiepunt was echter nergens te vinden. Meerdere mensen gaven aan dat we ter hoogte van de Spar moesten wachten en dat daar elke 10 minuten een busje zou komen. Na bijna een uur zoeken en wachten hebben we dit busje echter nooit gezien.\\n\\nWe hebben meerdere keren geprobeerd contact op te nemen, maar telkens werd de verbinding direct verbroken. Na een lange reis waren we er op een gegeven moment klaar mee en hebben we uiteindelijk zelf een taxi genomen naar de locatie van de auto.\\n\\nEenmaal daar werd er nauwelijks gereageerd op onze uitleg dat we de shuttlebus niet konden vinden. Vervolgens kregen we te maken met onduidelijke en hoge kosten. We moesten kiezen tussen een borg van €1000,- waarbij alle schade voor eigen rekening zou zijn, of een eenmalige betaling van €185,- waarbij ClickRent de schade zou dekken. Daarnaast moest er alsnog €200,- extra worden betaald, waardoor je die €185,- sowieso kwijt bent.\\n\\nOok bij het terugbrengen van de auto verliep alles traag. Het duurde erg lang voordat we weer met het busje terug naar de luchthaven werden gebracht.\\n\\nAl met al een teleurstellende ervaring. De volgende keer kiezen wij voor een andere autoverhuurder op Gran Canaria.", "author": "Rick Westerink", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214bmQweEpaMEpaVXpabFFqUm9RbmxQVHpKSGFFRRAB", "timestamp": "3 weeks ago"}, {"text": "I dont recommend. The Attendant gave me the information that I would receive the refund from my reservation If I decide to upgrade my actual plan, In the end it was a mistake and I would not receive my refund and got overcharged. Also the shuttle takes ages, So prepare yourself to wait for long minutes at the airport.", "author": "Guilherme Cavalcante", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GWlVGWlhiMVo2Y1VOa1FXRllNa2hXVG1ZNGFYYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Alaa Kharboutli", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Ka1oyMUpaM1ZhWjNCdFpFRjZMWGxQVW1WT1JVRRAB", "timestamp": "3 weeks ago"}, {"text": "Ціна на авто яку запропонувала ця компанія була найкраща. По прибуттю в офіс стало зрозуміло чому. Перед нами моложа пара сварилась тому що компанія не приймає картки American express. Поряд стояла ще одна пара сварилась на іспанській мові , вийшли не задоволені і не взяли машину. Потім прийшла наша черга. Нас фактично заставили купити страховку за 150 Євро та ще й заплатити комісію за \\"заправку\\" автомобіля 35€. В кінцевому випадку ми значно переплатили. Раджу всім уважно читати все що написано дрібним шрифтом беред бронюванням.", "author": "Сергей Круть", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SNldXOHpjWFZwYkVwSVJISnJOMFJhVXpoYVpWRRAB", "timestamp": "3 weeks ago"}, {"text": "Stupidest instructions of meeting point you can imagine, they are trying their best not to have clients.\\nGetting and returning car is a nightmare be prepated to miss your flight.\\nAfter I returned home, my credit card was charged additional 180 eur without any documentation. So if you want to avoid headache - stay away from it.", "author": "Oleksii Vyacheslavovich", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOME5Ib3hUM0ZmYUhaUlducEROV1ZmYUZWd1JFRRAB", "timestamp": "Edited 3 weeks ago"}, {"text": "Lassen keine Gelegenheit aus um die Leute über den Tisch zu ziehen. War eine halbe Stunde vor Abholzeit da und sie haben uns die halbe Stunde warten lassen, weil wir kein Upgrade wollten. Dabei haben wir die ganze Zeit auf unser fertiges Auto geschaut (Vertrag und Kennzeichen lag bereits vor, da online eingecheckt). Hatte 2 kleine Kinder dabei.", "author": "Alexander Reimchen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaZlVqTkpibWhYVms5M01HeFhSMlJwTjBzdE9HYxAB", "timestamp": "3 weeks ago"}, {"text": "It was a bit stressful looking for the meeting point for the mini bus at the airport but after that everything was very good. Insurance was £184. Car only had 14000 kms on clock. I paid £186 deposit and got it back immediately on returning the car. Pick up and return was simply and very quick. Great service", "author": "andy armitage", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xZNWVrSmtka3RLZVcxSmREazJlRFpxTm5oTmQwRRAB", "timestamp": "3 weeks ago"}, {"text": "Buen trato del personal y buen precio de alquiler.", "author": "ismael iñigo costoso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ONFVYVnlYMmsxVFdkSWRteERaRTF1T1ZaR2FHYxAB", "timestamp": "3 weeks ago"}, {"text": "We had a very nice experience renting from ClickRent. So nice people, and we got all the information we needed. The car was just as expected, clean and everything was on top. Thank you so much!", "author": "Julianne Markussen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5TU9IbDBXbWMzVlVGNVZHZGtMVWsyWW00MGJuYxAB", "timestamp": "3 weeks ago"}, {"text": "The car rent itself is ok\\n\\nBut the Service is very bad. Very slow in returning the car and the organization with shuttle is very bad. You need to queue inside just to return (takes very long) and then you’re supposed to queue again to wait for the shuttle; somebody who was waiting behind me when returning the key was then given first shuttle unfairly. And the employees do not care\\n\\nThey were just overwhelmed with the number of customers coming!\\n\\nNever again with this provider", "author": "Gusnadi Wiyoga", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25weWVXZDVWakZwT0ZwdmJGZFhhRlphTkhCRVEyYxAB", "timestamp": "3 weeks ago"}, {"text": "Great customer experience, quick and easy rental process. They are not located at the airport, but there is a regular shuttle bus from and to the airport. The shuttle bus at the airport can be found on the upper (ground) floor, where the other taxis and shuttle busses are located. For a precise location, I recommend that you ask someone on arrival.", "author": "Dejan Bileski - BD Media Bonn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxT1VFVnBhSGh6VDNKd1lWVTRabE0xWVdSTVRYYxAB", "timestamp": "3 weeks ago"}, {"text": "Die Beschreibung zum Shuttle am Flughafen ist nicht gut. Wir haben ewig gesucht. Das sollte vielleicht verbessert werden. Ansonsten perfekt!", "author": "Heike Franke", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxRlRWZE5RMDkzZDJ0SlpqSk1TbEJLTW1SaGMzYxAB", "timestamp": "3 weeks ago"}, {"text": "Очень хорошие люди. Очень хороший опыт. Рассказали, помогли, сделали скидку. Особая благодарность Валентине.", "author": "Oleksandr Velychko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kUVpYWndTbVphZUdsaFIyMXFVekJuV1ZkTVYzYxAB", "timestamp": "3 weeks ago"}, {"text": "Buen servicio y personal amable", "author": "SIMONE MUSELLA", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkelNqTXdkSGx3VEZZdFpVaExkSEpVTlVaa2RHYxAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Kalle Tasch", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxb05qWk5SVE5IVTIxMGNYQldXREpuT1VNMWNFRRAB", "timestamp": "3 weeks ago"}, {"text": "Aeroportdan 1 km aralıdır. Servis əladır", "author": "Mimiko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCdlZWUnBaMkpVUVRnd1pHVklRV1pzT1ZaZmRrRRAB", "timestamp": "3 weeks ago"}, {"text": "Está empresa es una mafia!Soy de Gran Canaria y vivo en Tenerife donde alquile un vehículo!Al segundo día supuestamente me multan y por gestiones al mes me retienen 50 euros de la entrega!He leído otro testimonio y le ha pasado lo mismo!Será porque no accedimos al sablazo de 1000 euros de seguro que ya habíamos contratado!Lucharemos por esos 50 euros que nonson suyos pero si me llegan a retener 1000 y las burradas que he leído se les iba a quedar pequeña la isla!Me encargaré que que ningún conocido alquile ahí ladrones de poca monta!", "author": "Alexis Vega", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOamRHUktXREphY0ZVeU5sOHlNbmhhTlc1QlptYxAB", "timestamp": "4 weeks ago"}, {"text": "Economy car oldalon foglaltam,ott kiválasztottam premium biztosítást a kocsira,click rentnél ezt nem fogadták el,úgy hogy plusz 240euróért kellett náluk is biztosítást kötni,nem olyan autót kaptam amit béréltem,de amúgy az autóval nem volt semmi gond. 200eurós depozitot a benzinre nem utalták meg vissza ,azt mondták hogy automatikusan vissza utalják aznap vagy masnap reggel,és a mailre se válaszolnak. Nem fogom többet öket választani.", "author": "Dávid Kuhl", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KbVFURnRhVEZ1YmpnM1prTnhWRGRwUVU4d1UzYxAB", "timestamp": "4 weeks ago"}, {"text": "Standort des Shuttlebus sehr schlecht gewählt..\\nDas versaut das ansonsten gute Ergebniss ,da können sich die Angestellten noch so bemühen..\\nWenn es mit dem Shuttle zur Station nicht klappt...", "author": "Robert Hartmannsberger", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GaGMyTnZlVkZsVUU5SVEwVnRWM2hIZDNOdlYwRRAB", "timestamp": "4 weeks ago"}, {"text": "Appena tornato da Gran Canaria e prima volta con ClickRent.\\nLa mia scelta è stata pilotata dall'offerta più vantaggiosa rispetto a tutte le altre società che però avevano uffici in aeroporto. Unico inconveniente risolto da un buon servizio della navetta. Ormai scelgo sempre il noleggio con franchigia a zero e copertura piena così non ci sono sorprese. Anche con questa formula ClickRent si è dimostrata la più vantaggiosa. Consigliatissima!!", "author": "Nino Amoruso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201eU1XOUlaWHB1VjBKUWVWRkRhMTh5TTJ0d1pXYxAB", "timestamp": "4 weeks ago"}, {"text": "Der Flughafen Shuttle war nicht am Flughafen aufzufinden. Nach 30 Minuten Laufweg sind wir endlich angekommen. Bei der Nachfrage, ob die Uhrzeit der Abholung angepasst werden kann, bekam ich nur eine patzige und freche Antwort dass es nicht möglich sei und man am Flughafen mal richtig nach dem Shuttle schauen sollte. Eine derartig freche Antwort hatte ich noch nie erlebt als Kunde. Die Zeiten konnte nicht geändert werden, während ich auf das Fahrzeug wartete, lästerte die Angestellte (geschätzt auf 60 Jahre kurze graue Haare) auf Spanisch mit Ihren Kolleginnen und Kollegen ab, während ich vor Ihr stand. Das freche Lächeln der Dame empfand ich als extrem provokant. Ich würde diese Gesellschaft in keiner Weise weiterempfehlen. Bei der Fahrzeug Rückgabe unterstellte man mir einen Schaden am Fahrzeug. Wie gut, dass ich vorab ein Video vom Zustand des Fahrzeugs gemacht habe.\\nScheint wohl eine Masche zu sein.\\nClickRent nie wieder!", "author": "Dustin", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0eE9YTmxlR3BCWVMxcU5FaFdiM2ROUkRrelJWRRAB", "timestamp": "4 weeks ago"}, {"text": "", "author": "Владимир Шапецкий", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SVFIzaFJkRVJwTFZaNk56QmpSWGh6U21aMmFGRRAB", "timestamp": "4 weeks ago"}, {"text": "We got a good deal from ClickRent for a car with full insurance during black Friday. Everything went smooth; pickup, drop-off and the refund of the deposit for the gas.\\nThe only thing is that we didn't know there was a shuttle on the pickup and we had to walk there from the airport.", "author": "Aya ElAttar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201cFNsbHZNalZvUm5GalJWWjBhMko0VjB0dmNuYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Adnan Cetinkaya", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkclJEQklibk5vVnpaSGQwY3hXV0ZXYzJKNVNIYxAB", "timestamp": "a month ago"}, {"text": "Gente voy a ser breve!Soy de Gran Canaria y vivo en Tenerife!No se les ocurra alquilar en esta empresa!Son unos estafadores!Lean las reseñas de la oficina en Tenerife norte!Van a flipar!Alquile un Volkswagen y supuestamente me multaron!Me cobran de mi cuenta 50 euros por tramitación!Ya mi banco está trabajando para que me devuelvan ese importe pero es que hay unas cláusulas alucinantes que no te cuentan!2000 euros de fianza por un Audi a1?Eran chicos asturianos!Estoy seguro que se inventarán algo para.msrgsrles el dinero!Hay reseñas que te ponen los pelos de punta!Llevan medio año y por la central presumen de que nomparan de crecer!Con esas reseñas vais a engañar a los guiris porque ni el gobierno roba de esa manera! Estafadores!", "author": "Alexis Vega Sosa", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWR04yZEpiVmRLWlVwMVJEbFliMmN0ZDJrNWRFRRAB", "timestamp": "a month ago"}, {"text": "Ho restituito la machina il 21/12/2025 col pieno di gasolina è non mi hanno restituito l intero importo della cauzione 135 euro ma solo 100 euro , ho le foto e video della consegna col pieno. Al momento del check out era tutto ok , confermato anche da chi ha controllato l auto però non mi hanno inviato niente via email e si hanno trattenuto 35 euro senza motivo.\\nOltretutto nell'inserzione c'è scritto noleggio dentro l aeroporto ma invece è fuori dall'aereoporto e mettono a disposizione un servizio navetta.\\nPoco precisi e errate informazioni.", "author": "piero", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214MWJsVnlRVEJ6VDI1S2JsUmxSVEZTYVVjMmVGRRAB", "timestamp": "a month ago"}, {"text": "Doy una estrella porque no puedo dar menos. Esta compañía me ha estafado. No reserves con ellos porque ocultan información sobre el coste real de la reserva y solo te la dan cuando ya es demasiado tarde y no puedes cancelar. Reservé un vehículo por 24h a través de DoYouSpain, desde las 10:00 de la mañana hasta las 10:00 de la mañana del día siguiente, en el aeropuerto de Gran Canaria. En la página web solo tienes la opción de hacer la reserva con una cobertura básica (45€) o plus (54€). Sin embargo, al llegar a la oficina para que te den la llave, te dicen que además tienes que pagar 120€, del que solo te devuelven 80€ si devuelves el coche con el tanque lleno, o sea que pagas 40€ extra por la cara. Además, por si no fuera poco, te bloquean de la cuenta 1000€ como seguro en caso de que dañes el vehículo. Si no dispones de 1000€ en tu cuenta bancaria, debes pagar 350€ adicionales del que no te devuelven nada aunque devuelvas el vehículo sin un solo desperfecto. La persona que me atendió en la oficina me dijo que era culpa mía por no leerme las condiciones de la reserva, pero por mucho que busco sigo sin encontrarlas. Lo único que logro encontrar es lo que cubre la póliza de seguros, que también recibí en el email, pero absolutamente nada acerca de esos pagos adicionales. Cuando intenté anular la reserva en doyouspain, me dijeron que ya no me podían devolver el dinero porque era demasiado tarde, y tenía que haber anulado como muy tarde 2 horas antes del comienzo de la reserva. Al final decidí rechazar la reserva porque me negué a pagar 470€ adicionales y perder los 54€ que pagué en Internet. Repito, ClickRent es una compañía que estafa a sus clientes al ocultarte información importante acerca del coste real de la reserva. No reserves con ellos.", "author": "Alexandra R.R.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKaGFGbDJhMlJrZFRoVmVrZFJTbE0zYjA5MU1tYxAB", "timestamp": "a month ago"}, {"text": "My amable", "author": "Andrea Seipel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1elJrNUpTVkUzTTNOR1UzazNXRlV0WTFkcVNFRRAB", "timestamp": "a month ago"}, {"text": "Impossible to find the meeting point. No one was there, no sign, customer service with automated voice message.. We had to walk 30 minutes on bad road with luggage to find the office. Don't rent anything from here.", "author": "Namık Akkılıç", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psc05URklXVmhhTmxadmNHVk5iMlpGVVdkamNYYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Magalie Sire", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFeVJFNDBiMkpUZWtSNVUzUmtYMmxRUW01WmFHYxAB", "timestamp": "a month ago"}, {"text": "I overall had a nice experience with Clickrent. I was happely assisted/helped by a guy named Ivan which greeted me with a smile. You can definitely recognize there is a morning rush if you pick up the car around 11:00-12:00, as many of the flights are arriving from northern Europe. Do not be surprised if you need to wait for 2+ hours if the check in is understaffed. Also the shuttle to the rental is not that easy to find, even though the location on the website is indicated ( as one shuttle drives up and down) We decided to walk which takes around 15-20 minutes.\\n\\nThe car i was offered is a VW Taigo with apple carplay. Very comfortable ride.", "author": "adam sheikh", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paelNYZHlTVjk0UkVzd2FWaEdTRFpFZUVKa1VYYxAB", "timestamp": "a month ago"}, {"text": "Save your money and your holiday and book with someone else.\\n\\n1.\\tLeft at the airport with no way of contacting. Tried calling 17 times over the period of an hour but got \\"line busy\\" every time, and no shuttle turned up at the scheduled pickup point to take us to the office, even though we'd landed well before the office closing hours and left our flight number on the booking. Had to book a €50 taxi to Maspalomas\\n\\n2.\\tRefused to drop off at Maspalomas, so spent most of our first day on holiday getting the bus/walking all the way back to the office to pick the car up\\n\\n3.\\tOn arrival to the office, we were told the car we'd booked was no longer available and we'd have to pay an extra €37 for another - even though we were told first thing on the phone that it was and that the office would be told we'd be coming. We didn’t receive a single apology either over the phone or at the office for any of the above, just a shrug of the shoulders.\\n\\n4.\\tCar given was full of dents and scratches. On dropoff we were told we'd have to pay €360 (!!?) for the tiniest mark on the boot, which wasn't picked up when taking photos of the car, presumably as it was so battered in the first place and the mark was so miniscule. To add insult to injury they decided to take £381.50 out of my account (I guess for good measure). Presumably this is how they make their money – it is nothing short of a scam.\\n\\n5.\\tWe detailed all the above in an email to the complaints team, requesting that they reconsider the charges unfairly billed to us. Predictably, we received no response from them.\\n\\nLesson learned – we’ll be booking with a reputable company next time.", "author": "Llŷr", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20welZGTkNiRzFPVUd4bmNWWjBOblZtTFhKU1kxRRAB", "timestamp": "a month ago"}, {"text": "Very good service, pickup was easy and so was the return. Deposit came back right away. The pickup service was arranged very well and they took good care of us.\\n\\nThey did ask for additional €95 for gas and you get this back when you return the car full and additional €35 servicecost because we didn’t book directly with them. In the end booking directly with them would have been cheaper. The car was great, brand new with only 8 km driven with it.\\n\\nOverall great company, we will book again directly with them.", "author": "Danny van der Ven", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CRE1WbHlRV2gzTlZSYVNXdEpla1pHZWxWTlRWRRAB", "timestamp": "2 months ago"}, {"text": "Where should I start. There is one mini bus that will take you from and to the airport. If they knew what to expect from their booking times they should have more cars to pick up people. We waited 50min for one. As we arrived the queues weren't that bad but the time they took with one person took forever. As it was our turn, we had to cancel our 3rd party insurance and buy theirs as my husband did not have a card he paid with and when wanted to pay with Revolut they refused. We always pay with this card anywhere we go but apparently as this isn't a physical bank they dont accept it. We got a car and as we were driving down to Puerto rico the car electrics went down twice on the motorway. We recorded a video and safely got to the place but called them numerous times as wanted to swap the car. They do not provide replacement services so we had to guess....drive back!!!! Yes, we drove a faulty car back to be able to get a new one. They seemed to know nothing about it despite my 100calls about the issue. Anyway....avoid this place! Although they are very polite and helpful at the pick up point this isnt enough to recommend them.", "author": "Martyna Wilk-Nowicka", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSbWNURlFlSEp5VDA1MmNscE1WblpaYkVkU1lYYxAB", "timestamp": "a month ago"}, {"text": "Much more to pay on arrival, only credit card accepted and not very helpful.\\n\\nPick up from airport was bad, vague instructions and phone was computer voice. Ended up walking 20min to the place which was all the way in the back of a parking lot further away.\\n\\nAbout the rental. I rented via Booking.com. Turned on the Booking.com insurance and when I arrived at the place to pick up the car it took forever. Then they told me that I have to either take another insurance from them which is 150€ extra or a downpayment of 1200€. I choose the 1200€ downpayment, handit over my Revolut credit card. But this wasnt accepted so I was forced to pay the 150€ extra insurance.\\n\\nWhen asking if I can put down papers of my travel partner it wasnt allowed because she wasnt on site and photo, scans etc werent enough.\\nAsked if I could cancel the booking and make a new one and they werent helpful just told me its on me if I want to do that and I had to figure out with Booking.com about the payment and getting money back.\\n\\nThe car was good and it was brand new. Make sure you read all the thing you need before arriving. Return was very quick and easy and shuttle back to airport was fast.", "author": "Bart v Haren", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaWFUVjRUVUpTYXpSdVkwSkVNR2xYY0dKa1YzYxAB", "timestamp": "3 months ago"}, {"text": "Great price performance ratio, very friendly and service oriented team, even German speaking with Daniel.\\nWEITER SO 🌟👏", "author": "Vural Aybar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaVU4yTjRkWGs0VFhWcWNWa3pka1ZoWlV0NmJGRRAB", "timestamp": "a month ago"}, {"text": "We rented through the platform 'Doyouspain' which charges an extra 35 euro for filling the full tank...It is not Clickrent who is cheating, it is the platform. Also the reviews from 'Doyouspain' are negative....so maybe Clickrent should avoid working with Doyouspain in order to keep the good name. But overall if we would book again, it would be directly with Clickrent! Keep up the good work and helpful smiley staff!", "author": "wim en anneke", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kdU56RndaV05mZERObE5IazJUMlpQWTJSM04zYxAB", "timestamp": "a month ago"}, {"text": "Wir haben den Shuttlebus am Flughafen nicht gefunden, aber der war wahrscheinlich zu der Zeit unterwegs. Am besten einfach bei Clickrent anrufen und nachfragen! Ich hatte tagsüber zuvor direkt jemanden erreicht, um sicherzustellen, dass meine Buchung dort bekannt ist ;) Denn der Weg zu Fuß vom Flughafen zieht sich. Ansonsten für einen unschlagbaren Preis von 46 Euro ein schönes kleines Auto für 4 Tage gemietet (wo angeblich über mietwagen-billiger.de alle Versicherungen ohne Selbstbeteiligung mit drin waren!), also super Preis-Leistungs-Verhältnis!\\n\\nGerne wieder 👍🏻", "author": "Nick Schäfer", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNdGQweE5WbVZLYUdvelkwNWtjbDkyV21WWVlVRRAB", "timestamp": "a month ago"}, {"text": "Haben dort (über Check24) ein Mietwagen gebucht. Hat alles gut und reibungslos funktioniert. Die Kaution war etwas hoch, aber ansonsten super. Das Auto war neu und in einem super Zustand. Würden wieder dort buchen.", "author": "HabdamalneFrage!?", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkMk5UQlJUSFp5V2tkVlNIY3daRm80TldKQ1RsRRAB", "timestamp": "a month ago"}, {"text": "Das Auto war super und die Mitarbeiter sehr freundlich und hilfsbereit. Der Shuttlebus hält nicht am Busbahnhof am Flughafen, sondern oben vor Ausgang 2. Allgemein hat alles sehr lange gedauert und wirklich alles war mit enormer Wartezeit verbunden.", "author": "Siffbude", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OVVUxVnRSMVpmYlZkVVFWUnhaR0ZXY0ROdE1WRRAB", "timestamp": "a month ago"}, {"text": "Fui atendido por Carmen, una chica muy agradable y atenta, y muy simpática.", "author": "Pedroluis Santana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paTWMzUk9kbVpUWm5JNE56Rm1iM0ZKUjFSbFFrRRAB", "timestamp": "a month ago"}, {"text": "Overall service experience was very good! One constructive feedback is to have the instructions for shuttle pickup at the airport more clearly instructed / marked. After we got to the shuttle, the service was excellent all the way, car was clean and nice for the group!", "author": "Tuomas Nirvi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsMlUzZExSMjkwVGtGb05FdGpNR1prYUc5NVFrRRAB", "timestamp": "a month ago"}, {"text": "Ich war schon ca. 50x Kunde bei Mietwagenanbietern, aber noch nie so enttäuscht wie hier.\\n\\nWarum? Bei Ankunft am Flughafen ist der Shuttletreffpunkt nur mit sehr viel Glück und Geduld zu finden. Spanische KI-Hotline, keine Ausschilderung und eine nicht brauchbare Wegbeschreibung vorab. Da nur ein Shuttle zu dem Zeitpunkt fuhr und die Schlange recht lang war, mussten wir nochmals ca. 50 min warten bis wir endlich mitgenommen wurden.\\n\\nDa es regnete, bereits dunkel war und wir ziemlich genervt waren, verzichteten wir auf eine detaillierte Inspektion der Schäden am Auto und machten nur oberflächliche Fotos und Videos. Bei der Rückgabe wurde dann vorne unterhalb der Frontschürze(!) ein Mini-Kratzer festgestellt, welcher angeblich durch uns verursacht wurde. Da wir keine Gegenbeweise hatten, wurde uns dieser mit 230 €(!) in Rechnung gestellt! Am selben Tag wurden zudem noch weitere 60 € vom Konto ohne Angabe von Gründen abgebucht. Seit drei Wochen versuche ich clickrent zu erreichen, aber die E-Mails werden ignoriert. Werde die Sache jetzt meinem Anwalt übergeben, denn dieses Vorgehen scheint Masche zu sein...", "author": "Florian Reisig", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21NNFlrUkthRFJQWWtOaFMwVnNRVWhwUnpkWlpYYxAB", "timestamp": "a month ago"}, {"text": "This is absolutely the worse experience I've ever had, trying to rent a car.\\nThe booking was done online, confirmation received by email. With my wife and two small kids trying to pickup the car, ClickRent simply didn't accept that we didn't want to buy additional services. Therefore they refused to handout the car, and we had to return to the airport empty-handed.\\nSimply the worse company ever.", "author": "David A. Brandt Klug", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2JtOVhZaTB6VGxkS1dVeFFZMVJvUjNsbVlrRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Iris Stoffregen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0U2VVVlNZaTEwZFRKbmVIZDVaMVppY21rME1XYxAB", "timestamp": "a month ago"}, {"text": "The car and the service were great. The only thing is that the shattle from the airpors is not simple to get", "author": "Shai Goorevitch", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oVmFIaE5VbEpLTFZWS1pGUmpNemt0YkZGRk1uYxAB", "timestamp": "a month ago"}, {"text": "Tanto la recogida como la entrega y el traslado fuero rápidos y eficientes, sin duda repetiremos, el coche impoluto y nuevo", "author": "Fanny Guamán Landívar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twcU5UWmxabVl6TUdJeVJuRk5OemRoZW5saWEwRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Angelo Mendes", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5VlYyZHpVRnBzYjAwNGVreDJPRmMyZDBKU2IxRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Nelson Carvalho", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWclFVRkhVblE0YldsTGJsSmFlbWhpTVhSbFVHYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Joao Goncalves", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWMGJHNW5VMGg0VFVvMVJ6TXhWRWRRU1hGVWRXYxAB", "timestamp": "a month ago"}, {"text": "", "author": "João Miranda", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Sd1ZsbFVRa2hUUmtoa2MxVk1Na3R2YjBObGVYYxAB", "timestamp": "a month ago"}, {"text": "Leider war der Flughafenshuttle nicht zu finden. Eine Telefonnummer zum Anrufen einer realen Person gab es ebenfalls nicht. Es hat über 1 1/2 Stunden gedauert, bis jemand kam und das auch nur, weil ein anderer Kunde in der Vertragsabteilung in Madrid angerufen hat.\\nDanach war dann alles soweit in Ordnung.", "author": "Makwakkwak Mak", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25NeWJIcEhSbFl5ZUUxeFNWcE1WMU5RY0daMmRuYxAB", "timestamp": "a month ago"}, {"text": "Passer par la plateforme DoYouSpain. Mais attention la plateforme ne mentionne pas des frais pour la restitution de la voiture avant 8h pour 55€ car ils ouvrent à partir de 8h et lorsque vous avez un avion qui décolle à 9h10 pas possible surtout que la navette est tous les 10 à 15mn et un taux de ravitaillement de 35€ alors que nous l'avons rendu avec le plein. La plateforme vous en endors en disant qu'il fallait aller dans la politique de carburant. Des frais supplémentaires très exagérés vraiment de l'abus et du vol, ils compensent puisqu'ils font des prix bas par rapport au marché sinon tout le reste est ok", "author": "Hervé COESSIN de la FOSSE", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trNVREZGtjRGt6WkRCNVR6VnpiRTFCY0dVMk1WRRAB", "timestamp": "a month ago"}, {"text": "Prestación servicio excelente, sin sobrecostes y según lo contratado. Muy fiable. Recomendable", "author": "Alberto goñi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GUVJWWm5jM3BQVkhOd05rMWpNekZKTUVoa1RXYxAB", "timestamp": "a month ago"}, {"text": "Hold dere unna denne bedriften. Bilen var bra, men resten var dårlig. Kontrollen ved retur av bilen tok under 1 minutt og kostet 35 Euro. Hun var enig i at bilen var strøken, og lovte å refundere 285 Euro dagen etter. 200 Euro mangler enda 1 ukeetter hjemreise.", "author": "Kjetil Grytbakk", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxVFdsTlNaRGx4YTFVME1qQm5VMGwyY0hVMlIzYxAB", "timestamp": "a month ago"}, {"text": "En vez de estrella mejor 1 pedrada me an cobrado por la entrega 4 horas tarde 40 € y 218.09 por protestar me echaron a la calle y que fuese andando al aeropuerto mañana denuncia en consumo jente desagradable y con amenazas", "author": "Kiko Gonzalez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tscE4wVmtibFJLVkZSSlVESTBRbWxwTVZwellWRRAB", "timestamp": "a month ago"}, {"text": "Estafadores. Por un rayajo que no hicimos ni nosotros, nos han cobrado 470€ y encima 60€ adicionales por lo que han llamado \\"peritaje\\".\\nLa pieza entera cuesta 120 euros.\\nDe vergüenza.", "author": "Leire ballesta mendioroz", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGRVlWOVJaWFZGU2tkWWRVcHplbFF3VTBaWFIxRRAB", "timestamp": "a month ago"}, {"text": "Lamentables. No se merecen ni que me canse escribiendo", "author": "Beñat De Carlos Iparragirre", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0QlMwbFlOM2x4TmpWcU5rWXlka3BrZGpjM2FuYxAB", "timestamp": "a month ago"}, {"text": "Alles lief reibungslos, ich empfehle direkt über die Seite und mit Rundumversicherung zu buchen.", "author": "Judith Class", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNVl6UmpSbEJWYkZnM1lXdDBPRWx5WjJ0b2QyYxAB", "timestamp": "a month ago"}, {"text": "Fatalna obsługa. Brak pomocy. Anulowali nam rezerwacje auta bez jakiejkolwiek informacji. Zdecydowanie nie polecam.", "author": "SZNUTER", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkbVdHaERTbTR3ZDFWbFkwcHRkRGwwZGpSdFoxRRAB", "timestamp": "a month ago"}, {"text": "Null !!\\nTerrible\\nHorrible\\nWaiting in the queue for 100 minutes is not the way to start your trip.\\nNo Bueno", "author": "Louise Anderson", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poUE1IbDJjMmhvTW5GeFlUSkdXVGwzUVhReWRIYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Elena Veleva", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0bE1IUkhXa294Vm01MWQzUTVXV2hqVTFWdGVVRRAB", "timestamp": "a month ago"}, {"text": "Es gut alles gut funktioniert. Auch der transfer. Treffpunkt am Flughafen sollte jedoch besser beschrieben werden. Evtl mit map. Kaution wurde schnell zurück überwiesen.", "author": "Karin L.", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKMFFXNUpNWGxOUjJwblJGWndUM1JLZDFndFoxRRAB", "timestamp": "a month ago"}, {"text": "Penoso, si no quieres que te amarguen las vacaciones, búscate otro sitio de alquiler de coches.. te van a intentar meter roces minúsculos para estafarte y quedarse con la señal.. se intuyen prácticas mafiosas, no hace falta más que oír a los clientes que tienes delante, pierdes la mañana, puesto que te llevan a otro sitio fuera del aeropuerto, y el minibus tarda un mundo.. si no quieres pasar unas vacaciones sin estar siempre con la mosca detrás de la oreja ve a cualquier otro alquiler y serás un poquito más feliz. disfruten de sus vacaciones y no sean tontos.. un saludo y felices vacaciones .", "author": "Roberto Pérez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21waU1GZHVRMGhEVkhabWJucFBlRmhJVFhKU1MwRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Camille Strauch", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CNVJrTXdXa0ZwU2xKRlRXbFdkV3BLTW5kNWVHYxAB", "timestamp": "a month ago"}, {"text": "Nuestra experiencia ha sido fantastica. Nos encontramos con un atasco en la isla y llegamos tarde a devolver el coche. La señorita nos atendio rapidamente y Byron vino para llevarnos al aeropuerto lo antes posible para que no perdieramos el vuelo. Ademas se nos olvidaron las chaquetas en el coche de alquiler e hizo otros dos viajea rapidisimo para traernoslas. Muchisimas gracias !!", "author": "Mercedes Rein- Loring", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxM1ZGQm5jSGg0UjFkbFpVMTBWRFYyYmpjMlEzYxAB", "timestamp": "a month ago"}, {"text": "El auto bien, pero me quisieron cobrar una multa que llame al ayuntamiento y no existe, solo los datos de gestión por esta supuesta multa son 50€ que me quisieron cobrar 3 meses después de devolver el auto sin antes consultarme ni pasarme más información sobre la “multa”", "author": "Jazmin Be", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1eFJubDFXVkpuWWxjdFltOWljVU5GWDNGTU1XYxAB", "timestamp": "a month ago"}, {"text": "Llegaron tarde a recogernos teniendo hora pactada, nos hicieron pagar por un seguro de gasolina al principio y al final tuvimos que pagar la gasolina, y de vuelta teniendo hora pactada lo mismo, esperando media hora.", "author": "Sergio Ruiz Galián", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGSGJISktOREZ3VEhwVVZIQlRObTFsYlROVlYzYxAB", "timestamp": "a month ago"}, {"text": "Wartezeit bis zum Mietvorgang hat gedauert (20 min. ) Ansonsten sehr zufrieden. Sauberes Fahrzeug alles in Ordnung.\\nGerne wieder", "author": "Frank M", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201bk5WUk5OVzEyTFRneVZFSnFlRGRrWVVsbmMxRRAB", "timestamp": "a month ago"}, {"text": "Servicio horroroso. Imposible encontrar el punto de encuentro en el aeropuerto. 50 minutos esperando en el aeropuerto para ser recogidos.", "author": "Cristina del Carmen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psME1HRjRSbWhuVUdVME1qWlRVbXcxVjNwNlZsRRAB", "timestamp": "a month ago"}, {"text": "Kann man empfehlen nur sollte man sich die mietbedingungen sehr gut durchlesen!!\\nEs werden nur von einer Bank ausgegebene Kreditkarten akzeptiert (keine Debitkarte oder american express) ansonsten bekommt man kein Fahrzeug gemietet\\nWenn man dies beachtet ist alles sehr easy", "author": "Alexander John", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21ocWJYbGlZV2RoVlVOcmRrRkZhVVZOT0MxMlZFRRAB", "timestamp": "a month ago"}, {"text": "Penoso servicio de esta empresa, como se suele decir, lo barato sale caro. Nos dejan en tierra en el traslado y nos recomiendan coger un taxi hasta la oficina.\\nLamentable.", "author": "Javier Mo Montero", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4WGIyTkJiMjFRYUZGWGRsZFdOMlZKUmxNM2RuYxAB", "timestamp": "a month ago"}, {"text": "Strongly suggest to choose this company . Very reliable and not trying to rip off .", "author": "kasia dabrowska", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCaVRWRmZkVTFITTJSWlVYQjVOSEkzU0dsSmJuYxAB", "timestamp": "a month ago"}, {"text": "Leide en stor billig stasjonsvogn, fikk en mindre dyrere til samme pris. I og med at vi var to personer fikk vi likevel med bagasjen, og bilen var fin og behagelig.\\nDa jeg leverte bilen, ble jeg overrasket da de fant noen striper under støtfangeren/spoiler foran\\nJeg tok ikke bilde av understellet til bilen, så jeg kan ikke bevise noe. De stripene kan jeg ikke ha laget, da jeg kun har parkert langsgående eller på åpen parkeringsplass.\\nDette blir jeg da belastet med 420 euro for.\\nHadde jeg laget stripene, hadde jeg ikke klaget, men dette var ikke hyggelig.\\n8070nhd - hvis du leier denne så har de i alle fall fått inn en straffeavgift på denne. Hvem vet om de før meg også har betalt.\\nTa bilder innvendig utvendig over og under bilen om du leier her - jeg leier ikke her igjen.", "author": "Einar Dahlen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4TmJtRnBYMDFZV0RWWU1HRnVUMjlMVTNvd2RFRRAB", "timestamp": "a month ago"}, {"text": "El coche estaba impecable, el trato del personal excelente. Mi experiencia con clickrent ha sido buena, sin duda puedo recomendarlos.", "author": "Raquel Saavedra Benitez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210VE9Ea3hMV1J4Wm1nNE5GQnpSalkzTTFKWFpWRRAB", "timestamp": "a month ago"}, {"text": "Schwierig zu finden nach Ankunft am Flughafen.\\nBei der Vermietung wird kein Deutsch gesprochen und man soll selber vorher Fotos machen was ich nicht gemacht habe und bei der Rückgabe zu Problemen geführt hat.\\nNicht gerade günstig 450 € für 16 Tage, habe nun einen für 400 € für 4 Wochen gefunden.", "author": "Ollipower 1963 w", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCdFFVaHpiRGRQVEZGZlVHWkhjRTlZT1VWMWFIYxAB", "timestamp": "a month ago"}, {"text": "", "author": "Lander Urrutia Muruaga", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SSGNtUndlRGt4Y2tKcFMyWnFMV3B5V25aQmEzYxAB", "timestamp": "2 months ago"}, {"text": "Sauberes Fahrzeug mit knapp 5000 km erhalten, eigentlich alles positiv, bis auf die Abholung: 12 wartende Kunden und nur eine Schalterkraft ... Ansonst: Top", "author": "Rol And", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT213dFNERlpUM1ZaVFdOYU1WOVZiVnB6WkRSaFRrRRAB", "timestamp": "2 months ago"}, {"text": "Auténtica estafa y cero profesionalidad.\\nHice una reserva por error y llamé de inmediato, en cuestión de minutos, para anularla. Me confirmaron por teléfono que me devolverían el 50%, pero finalmente no han devuelto nada. Ni el 50%, ni el 10%, ni un céntimo.\\n\\nPrometen una cosa por teléfono y luego desaparecen.\\nNo respetan sus propias políticas.\\nNo dan soluciones.\\nNo muestran transparencia.\\nSimplemente se quedan con el dinero aunque la reserva ni siquiera haya llegado a usarse.\\n\\nUna empresa así no merece la confianza de ningún cliente.\\nPésima gestión, trato nulo y una sensación clara de haber sido engañado.\\n\\nNo volveré jamás.\\nY ojalá esta reseña ayude a otros a evitar pasar por lo mismo.", "author": "Alexis González", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNM2NuSjFhRW96Vm10elVYWnlORWhOVjFabVJGRRAB", "timestamp": "2 months ago"}, {"text": "Realmente negativo, te venden bajos precios y una vez allí te solicitan depósitos que no se especifican a la hora de alquilar.\\n\\nSe pierde mucho tiempo en la espera antes de ese robo que te pilla por sorpresa.\\n\\nNo sé señalizada donde dejar el coche y el trato del personal dejo mucho que desear.\\n\\nNo repetiría, he probado mejores con todo incluido que realmente si incluyen lo que prometen.", "author": "Andrea González", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKWVFuTlZlQzFUWm01NGRUaFVlVzVrT0hKR1FYYxAB", "timestamp": "2 months ago"}, {"text": "Lange Wartezeiten, schlechter Service. Wir hatten im Vorfeld gebucht, der Fahrer könnte im Nachhinein nicht mehr geändert werden. Da dieser krank war mussten wir einen neuen Mietwagen für den doppelten Preis buchen.", "author": "Tom Hinten", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCWFdFZEJZMm81Ym05MlFXVm1ibHBOZDJZM05YYxAB", "timestamp": "2 months ago"}, {"text": "We reserved one car for 3 days for the price of 50€, but the main driver was sick and was not coming with us to Gran Canaria. They said they couldnt change the name of the driver, so we had to reserve a second car and the first one was paid but we didn’t get the car . But instead of making us a good offer for the second reservation with the new driver (because they knew we paid the first reservation for no car in exchange) they wanted 130€ for the second reservation.\\nSo we had to pay in the end 180€ for 3 days instead of 50€.\\nAlso a very slowly service, we had to wait in the queue for over 1,5 hours.", "author": "Raf iosi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZNFZHZHdSRmRVUlRNM1lTMVljRGRsVDNoeGJIYxAB", "timestamp": "2 months ago"}, {"text": "Nur bei der Übernahme des Fahrzeugs etwas Wartezeit, war aber in Ordnung...alles in allem top neuwertiges Fahrzeug, sehr sauber, Prozesse sehr gut und bestens organisiert, gerne wieder ;-)", "author": "Kurt Bimsberger", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOdGIwTXdlRTlPZDFoSlNESkhZVzloTmxWblZFRRAB", "timestamp": "2 months ago"}, {"text": "Im Urlaub angekommen , erstmal an die Arbeit machen die Autovermietung zu finden. Da es keine Wegbeschreibung seitens der Autovermietung gab oder irgendwelche Schilder , Auskünfte über die Autovermietung clickrent am Flughafen, haben wir uns dazu entschieden uns selbst auf die Suche zu begeben. Damit angefangen haben wir uns erstmal am Flughafen durchgefragt und wurden in sämtliche Himmelsrichtungen geschickt um dort im Endeffekt keinen Shuttlebus aufzufinden. Aber mit der Zeit wurde unsere Herde der Suchenden immer größer, nein wir waren nicht mehr nur zu zweit, sondern mittlerweile 6 Rumirrende die auf der Suche nach Clickrent waren. Nach gerade mal anderthalb Stunden haben wir den Abholort vom Shuttle am Flughafen entdeckt. Wie schon geahnt ist dieser wirklich auf keinste Art und Weise ausgeschildert. Aber wir wollen uns ja nicht beschweren, wir sind nicht wirklich im Urlaub , wir sind durchweg Pfadfinder . Bei der Autovermietung angekommen mussten wir schockierend feststellen dass es auf Gran Canaria Schlangen gibt . In dieser reite sich unsere Herde weitere 30 Minuten ein um anschließend eine super günstige Kaution von 2000€ zu zahlen. Über das Auto ansich kann ich nichts negatives sagen . Die Rückgabe hingegeben dauerte ebenfalls sehr lange weil wieder eine Schlange aufzufinden war . Aber jeder der im Urlaub Pfadfinder Aktivitäten sucht und zum Schluss noch Nervenkitzel braucht ob man es rechtzeitig zum Flieger schafft , kann ich nur ans Herz legen , entscheidet euch für clickrent . Persönlich hatte ich noch nie so ein unbeschreibliches Erlebnis bei einer Autovermietung", "author": "Michael Schäfer", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOQmVEUnFRVUZmTWt4Zk5XSkViRFJKY1daNGRIYxAB", "timestamp": "2 months ago"}, {"text": "I do not recommend this company. They required a deposit to be paid with a credit card and refused to accept a debit card, but I don’t have a credit card. This is an unreasonable condition that other companies do not impose. Additionally, their parking is located 1.5 km from the airport, and their shuttle bus only leaves once it is full so wasting of time. I have rented cars all over the world, but this is the first time I’ve had such a disappointing experience", "author": "Lucia Cojocaru", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCR1N6YzNXbHB3TkZnd1UxZEVaemd6ZDBsR2JYYxAB", "timestamp": "2 months ago"}, {"text": "Temps d'attente de 1h30 pour récupérer le véhicule\\nN'a pas voulu prendre ma carte pour la caution de 1000€ sous prétexte que c'est une carte de débit et non pas de crédit (une carte de débit fonctionne très bien pour ce genre d'opération). On m'annonce que je doit payer 66€ d'assurance supplémentaire, ce que je ne veux pas. Après 15 minutes d'échanges, me propose enfin une assurance à 44€ que je ne veux toujours pas mais on ne me laisse pas le choix. Des voleurs qui profitent du fait que la majorité de la population ne dispose pas de carte de crédit pour vendre leur assurance le plus cher possible.", "author": "Guillaume Laboudigue", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWelkwWTVhVGhaVmtaMGMzUXlWRlJVV0hWd2VuYxAB", "timestamp": "2 months ago"}, {"text": "It's great for a budget rental. A little further from the airport than other companies but the service is excellent. Recommend it.", "author": "Joanna Lewandowska", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxelptVTVWVFp4VTJjd1pGWTBZa0ZUTmpReFZHYxAB", "timestamp": "2 months ago"}, {"text": "This company is a scam based on my experience. They charged me a €35 non-refundable fee just to fill the tank with petrol, and upon arrival they also pre-charged me for a full tank. In every other country you take the car full and return it full — simple.\\n\\nThey told me that if I returned the car with a full tank, I would be refunded the full amount except for the €35 fee, and if I returned it half-full, I would receive a partial refund depending on how much petrol remained when I returned the car. The staff member completed everything and told me I would receive the refund within a few days for the remaining half tank of fuel.\\n\\nIt has now been two weeks, and I still haven’t received the €32 refund for the remaining petrol. I’ve contacted them multiple times with no response. I ended up losing €67, and the car rental itself was €70 — so I basically paid double.\\n\\nBased on my experience, I would stay away from this company — they made my holiday stressful.", "author": "Leonard Mana", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tNeFFYTjZRWGh6U1c5TmVrTjJURlE1UjJWZlZrRRAB", "timestamp": "2 months ago"}, {"text": "AVOID IF YOU CAN! When we arrived, it turned out that despite our prior reservation, there was no car for us. No prior contact — all we were offered was a refund and “goodbye.” Our entire trip was thrown into chaos due to a complete lack of professionalism. Better save yourself the stress and choose another company! DO NOT RECOMMEND.", "author": "Adrianna Kluge", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCNlduTm9NMmswVkZGc05sSTVOSGhRUWpWb05IYxAB", "timestamp": "2 months ago"}, {"text": "We booked a car through their system 2 weeks before our departure. We paid full in advance, we did online check-in and we met at the meeting point at the airport. They took us to their rental office and one of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was NO CAR for us! We were a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her. The lady informed us that we would receive a refund within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. It’s worth to add that our apartment we booked was 80 km from that place. We asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When we took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that we delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN!!!", "author": "KayS", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSdmNUbGFXRFpoZW1FNFpsSlFiMVpSTURONlZVRRAB", "timestamp": "2 months ago"}, {"text": "We arrived with a confirmed booking, only to be told there was no car available for us. The staff was completely unhelpful—they made no effort to find an alternative vehicle, offer a replacement from another branch, or even recommend a different rental company. This is utterly unacceptable. Avoid at all costs.", "author": "Honorata Wieczorek", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OWlQxaGhNVzFPT0hNNVZETkNWR3hsVDB0RmIxRRAB", "timestamp": "2 months ago"}, {"text": "A word of caution! I don't usually publish articles like this, but I'll make an exception this time. This topic concerns the car rental company @ClickRent, which operates in the Spanish market.\\nNEVER AGAIN @ClickRent https://clickrent.es/ I've rented cars from many rental companies, large and small, and I've never encountered such disrespectful customer service and a complete lack of professionalism. Our entire group was treated very unfairly/We were severely let down by the service, and our sightseeing plans were ruined.\\nDescription of the incident:\\nI booked a 9-seat minibus for 7 days with @ClickRent (through their online booking system) to explore the island of Gran Canaria. I did this about two weeks before my departure, paid in full in advance, received confirmation of the reservation, and even completed the online check-in. Everything seemed professional. On the day of our arrival at Las Palmas Airport (LPA - Gran Canaria), we all went to the meeting point in front of the airport terminal, and within a few minutes, a shuttle bus took us to the rental company's office. One of the ladies, initially pleasant, took care of our reservation, took our details/checked our driver's license, prepared our documents, and finally went to get the keys. She returned a few minutes later to inform us that there was no car for us! I was a bit shocked, but politely asked, \\"What next?\\"—expecting a response/help from her. The lady informed me that I would receive a refund on my card within a few days, and THAT WAS IT. Nothing more—no acceptance of responsibility, no willingness to help, no willingness to arrange another car, not even from a different rental company—simply NOTHING. I asked to contact the manager, but was informed that it wasn't possible because it was Sunday (no comment). I asked if they could arrange two smaller cars instead of the minibus, but that wasn't possible either (there were many other cars parked in the lot next door). At this point, things got awkward, and her colleague from the next stall joined in on the discussion, and things got quite nervous. When I took a few photos of the place/office we were in for documentation purposes (without any people/faces visible in the photos), the second woman demanded that I delete the photos and started threatening us with the police. It was simply a scandal! NEVER AGAIN @ClickRent, or specifically this office: \\"Practicante Casto Moros, 35219 Ojos de Garza, España\\" (I have no idea how this company operates, what its structures and offices are like, or how they work together – I'm just a customer and I'm not interested).\\nSo, I emailed someone who runs the @ClickRent booking system. I also received a reply that there was no car for us and wouldn't be – without a word of explanation or any willingness to help! I asked for the matter to be escalated and contacted a manager – I received a reply that the matter had been escalated and someone would contact me. Today, two weeks have passed since this report, and absolutely NO ONE has contacted me! In the end (thankfully), we were driven back to the airport terminal and left there (they refunded us 5 days later – phew). We lost a few hours, but luckily we managed to find a car at another professional rental company at the airport (for a similar price), so NEVER AGAIN @ClickRent!", "author": "Damian Wieczorek", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0U1NqaG9SazlmZVRad1MwcEViVlJGWWpaR01VRRAB", "timestamp": "2 months ago"}, {"text": "Gebucht über doyouspain mit einer vollen Versicherung. Personal ist leider des englischen nicht mächtig, so das die obwohl ich alles aufgezeigt habe mit der Buchung der Versicherung, und diese auch noch alle Daten nach Aussage erhalten haben, einem nochmal eine Versicherung berechnen und dies dann anders verkaufen. Leider nach 2 Stunden Wartezeit mit einem Kleinkind keine Geduld mehr gehabt dies zu klären. Würde jedem empfehlen gleich für 20€ mehr bei der Konkurrenz zu buchen.", "author": "Rom An", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aRk1qWmlNbTFEWmxwSGFIaFJWMTlqVW01T1JuYxAB", "timestamp": "2 months ago"}, {"text": "Das Personal war sehr freundlich, aber abgezockt wird man trotzdem.Ein witerer Kratzer (10cm) auf einer bereits verkratzen Stoßstange wurde mit 350,-€ voll berechnet,d.h. zweimal abkassiert !!", "author": "Wolfgang Stange", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CcE1rdzBZMVJqV0RCa05USkZSRlpSY0daVlgzYxAB", "timestamp": "2 months ago"}, {"text": "Heel tevreden van de service en de auto. Ik had na paar dagen een klein probleem met de auto (reset) en er werd meteen een andere auto geregeld. Bij het terugleveren is ook alles goed gegaan, de borg stand meteen op mijn rekening. Goede medewerkers, vooral Antonio is heel vriendelijk.", "author": "Ferhat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWSk0xSTNaWFExUldwbExVeHFaM0pWTmtRd1lWRRAB", "timestamp": "2 months ago"}, {"text": "Mala experiencia, te cobran 35 euros por repostaje aunque entregues el coche con depósito lleno, te retienen franquicia en tarjeta aunque acredites tener seguro por ese importe, largas esperas para recoger o devolver coche, etc etc", "author": "NAVARRO BATISTA: BERNARDO", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VME1HSXpSVzVRTjA0MExWTjVlRlIxZFhocVdIYxAB", "timestamp": "2 months ago"}, {"text": "Ich war mit meinem Mietwagen Erlebnis bei ClickRent in Gran Canaria sehr zufrieden.\\nDas Personal war äußerst freundlich und hilfsbereit, und die Abwicklung verlief dank des vorab möglichen Online Check unterwegs zur Filiale ins besonders zügig.\\nDas Fahrzeug war in einwandfreiem Zustand sogar ein besseres Modell als ursprünglich gebucht.\\nAuch das Preis-Leistungs-Verhältnis überzeugt auf ganzer Linie.\\nLediglich die Wartezeit bei der Abholung (ca. 30–40 Minuten) war etwas länger, ansonsten rundum empfehlenswert!", "author": "Alayn G.O", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sb01VRkdRVU5vTVU5ME5ESkdUWFZrTVdNeVduYxAB", "timestamp": "2 months ago"}, {"text": "Very unfriendly lady. Not returning here again. Totally not clear where the shuttle bus was leaving at the airport. She said it was not her problem. Dont so this to yourself. Not a nice way to start your holiday", "author": "Randy Beaumont", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swd2VIZElRMlV3YkRWeGFqVmxWV2hWZERSNWVHYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Lena K", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSRmNGbDZiMEZPWHkxbVppMWpObU5tWWprMVpuYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Luis Ventosa Castro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VNVNGRndaRjg0ZVhoa1QzaFpXazAzUTJFeWNIYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Patryk Biernat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psQlJreFdOeTF6TFV0bVkyWnFjblpYU2toM01XYxAB", "timestamp": "2 months ago"}, {"text": "Una experiencia horrible. Nos retuvieron 1000€ sin aviso previo y nos intentaron cobrar 30€ más que ya habíamos pagado, y si no hubiese insistido me los hubiesen cobrado. Ademas, teníamos la reserva a las 9:30 y estuvimos allí con tiempo, y no nos atendieron hasta las 11.", "author": "maria Viñolas Salustiano", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xd1pUZzVOM1Z6YnpNelYybHdaV3RSWWpseFduYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Maximilian Korzekwa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xaVFUWmphakZOYkZKVlowUmtYekJKVVhKNWVXYxAB", "timestamp": "2 months ago"}, {"text": "Wir können uns nur Positiv über diesen Autovermieter äußern.\\nWenn man den Anweisungen folg um zu dem Treffpunkt zu kommen, kommt man auch tatsächlich an. Es war eine Promte und unkomplizierte Abwicklung beim abholen und zurückgeben des Fahrzeugs. Wir wurden darauf aufmerksam gemacht im vorfeld alle Schäden zu fotografieren und mit der Kamera einmal um das Fahrzeug zu laufen.\\nSehr nettes Personal und das Auto war auch sehr neuwertig. Können den Vermieter nur weiter empfehlen.", "author": "Patrizia Schulte", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5TGNqVk5aWEZaY1MxQmVIQkRSa1pqTUhCUFkxRRAB", "timestamp": "2 months ago"}, {"text": "De momento muy mal, iré actualizando.\\nPrimero no encontrábamos el sitio de recogida, después de llamar por tercera vez nos dan instantáneamente un vídeo de a donde dirigirse.. cosa que podrían adjuntar al email de la reserva y nos hubiéramos ahorrado llamadas, tiempo y malestar.\\n40 minutos esperando en el aeropuerto a la van.\\nLlegamos y hay una cola de 40 personas, sin ticket, sin orden ninguno, cada uno haciendo cola donde le parece, no te puedes ir al baño porque pierdes el turno, y de momento llevamos otros 40 minutos esperando, embarazada y de pie sin poder siquiera sentarme porque pierdo el turno. Surrealista, veremos a ver cuándo me atiendan, de momento hay ya dos personas con distintas reservas que han salido cabreadisimas. Iré actualizando..", "author": "Belinda F.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WaloyOHRNazFXTTFOb2FWaHpaVVJVUWxkeU5tYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Mónika Ács", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT200d2ExVk9hbWR6Tld4UlMwOVdjbkJMWTJreGNVRRAB", "timestamp": "2 months ago"}, {"text": "Buenas , explico mi enfado contrato con doyouspain el alquiler de un coche,pago el seguro a todo riesgo que es más caro obviamente que el a terceros,me mandan la póliza etc todo supuestamente correcto, y cuando llego al mostrador de clikrent que por cierto llegó a recogerme 20 minutos tarde, me encuentro que o pagas 1000e de fianza por si arañas el coche que según mi experiencia los mil euros te los desploman por que le sacan cualquier arañazo y te cobran una pasada, o le vuelves a hacer otro seguro a todo riesgo 132e y 200e de deposito por si no dejas el depósito lleno de combustible ( ni que fuera un camion) en fin resumiendo una estafa he leído 3 veces todos los requisitos y nos engañan como chinos", "author": "rafael garces enamorado", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xRk16RXdOMll5ZUd0allsTlhiamRSTVRWWmIzYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "Mariana david Mrn", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21waVNFMVZWRmhwTURocllWVmhUa2w1VW10bGNtYxAB", "timestamp": "2 months ago"}, {"text": "Võtsime internetist auto läbi Economy Car Rentals-i. Maksime rendi tasu. Saime kinnitava emaili, et auto saame kätte Clickrent-st. Seal pidime uuesti tasuma auto eest + 1000 eurot deposiiti. Suhteliselt keeruline oli leida kohtumispaika lennujaamas. Soovitus: saatke emailile selge juhis, kust transfer võtab peale lennujaamast. Õnneks olid lennujaamas abistavad töötajad, kes oskasid suunata meid. Ise muidu üles ei leia, kui pole varem käinud cran canarial. Ehk siis peate minema teisele korrusele õue ja station 2 juurde.\\nAuto ise muidu oli ok, kuid ma ei tea kas soovitan sealt autot võtta, sest auto kätte saamine oli stressi tekitav.", "author": "Meeli Tali-Aruväli", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xnM1YxcHJValUyTjFwM1gyUmljSEJoWjIwMFFsRRAB", "timestamp": "2 months ago"}, {"text": "Sehr lange Wartezeiten. Insgesamt wenig Professionalität vor Ort. Viele Kunden, inklusive uns, mussten trotz vorheriger Buchung und Zahlung vor Ort noch weitere nur schwer nachvollziehbare Zahlungen leisten. Auch die Fahrzeuge selber (wir hätten 2 verschiedene Wagen) überzeugen wenig bis kaum.", "author": "Fynn Hüttersen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psTmMzTm9OMWRsTmtnMFFtUlVhRWsyTmpKNFVrRRAB", "timestamp": "2 months ago"}, {"text": "Annoncer sur Booking 43 €.pour 10 jours\\nPour payer finalement 283 €", "author": "Aurelie Ottolini", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25scGQyOTRSbFoxVUVoYVZucDVaRXBLTmpKRmNFRRAB", "timestamp": "2 months ago"}, {"text": "pongo una estrella porque no me deja poner menos es lo peor, atraves de internet nos salía que teníamos que pagar un dinero, lo pagamos y al llegar allí nos piden 2000€ de fianza, una locura básicamente que el problema no es ese el problema es no avisar de eso antes y que dijeran que no había que pagar más, seguidamente de eso entro a pedir 4 hoja de reclamaciones y la chica de malas maneras nos dice que no que no nos va a dar nada viene la persona que alquiló el coche y le dice pues dame una a mí entonces, y nos niegan la hoja de reclamaciones aún así, y hasta que no llega la policía no nos quieren dar nada de verda que no pongo una denuncia por no hacer de un grano de arena una montaña en fin una decepción nunca más no recomiendo esto", "author": "chiarita reyes", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tRdE1YVmxTMFYyZVVGalYyWk1RbnBJY0hONFZYYxAB", "timestamp": "2 months ago"}, {"text": "Nous avons payé 300 € pour 9 jours.\\nEt 60 € de carburant et 5 € de lavage.\\nC'est ce que nous avons payé.\\nQuand nous sommes partis en Grèce en Crète. Nous avons loué une voiture pour 50€ sans caution !! 10 jours", "author": "francois francois", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tFNVNuSldSRE5DV2twV1dVaHZRVmR3WTBRMFVGRRAB", "timestamp": "2 months ago"}, {"text": "Diese Autovermietung ist absolut nicht zu empfehlen.\\nErst mal muss man sich am Flughafen samt Gepäck und Kindern quälend lange durchfragen, wo der Standort eigentlich ist. Es gibt keinerlei Hinweisschilder. Kaum eine Person am Flughafen kennt die Firma. Es hat fast 30 Minuten gedauert, bis wir mit Hilfe anderer Personen erfahren haben, wo man per Shuttle abgeholt wird. Auch dort war kein Schild angebracht. Niemand kam. Wir mussten die Hotline von Click Rent anrufen und uns durch eine KI Ansage kämpfen die nur spanisch sprach. Weitere 20 Minuten später wurden wir dann endlich abgeholt.\\nVor Ort bekamen wir nicht den gebuchten VW Golf mit Gangschaltung, sondern einen KIA mit Automatik... ohne Worte.\\nDas SCHLIMMSTE aber war, das uns\\n6 Tage später, bei Rückgabe des Autos dann tatsächlich noch 50€ Reinigungskosten von der Kaution \\"gestohlen\\" wurden, WEIL etwas Sand auf den Sitzen und im Fußraum zurückgeblieben ist. UNFASSBAR!\\nWir haben schon dutzende Male Mietwagen um Urlaub gebucht,\\ndoch sowas ist uns bisher niemals untergekommen.\\nDas war definitiv das erste und auch das LETZTE MAL das wir hier Kunde waren!!!", "author": "DJ Dan", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOYVZGcGpYMHBNTlcxWmMwMU5ZbTR0U21SZlFuYxAB", "timestamp": "2 months ago"}, {"text": "我见过最差的租车公司,在booking上买了保险但是非要让我们交1200欧的押金,最后以各种原因说不能刷卡,让我们重新买一份150的保险,可以媲美诈骗。再说订车我定的T-cross,结果给我一个起亚的stonic,没有一键启动,不能自动关车后视镜,你的良心不痛吗?这是我见过最差的的,以后不会再用。跟我们同去办理取车的还有三家跟我们情况一样,他们是老剧本,我们都是新入局的。最让我受不了的是这个车的后挡风玻璃上竟然贴了一个他们clickrent的标签,实在让人厌恶。", "author": "lei zhang", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoclZtWmZjMVJxYmpGSFl6RlRPWGhaTkZGdE5WRRAB", "timestamp": "2 months ago"}, {"text": "we booked for 6 days and had bought full insurance on bookings. However, when we arrived, we were forced to buy a 150 euro insurance again (when we have already payed for the full insurance on bookings and the car. 160€ total)or else we were charged a 1200 euro deposit. We were going to chose the deposit but they complained that my card had problems which I was forced to pay the 150€. The car given does not match what we ordered. Terrible experience, don’t come.", "author": "jenny wei", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aYVJVZHZZVTVVYTI5ZlRqTlpSRzl0VGsxNVExRRAB", "timestamp": "2 months ago"}, {"text": "No pongo una estrella porque no puedo ,estafada del siglo ,te ponen que te alquilan el coche por 40 euros 3 días y según llegas a la oficina nos han pedido 159 euros en gasolina ,100 euros más por el seguro del coche y 400 de fianza ,vergonzoso ,viendo los comentarios siempre se quedan con algo porque dicen que el coche no está igual ,veremos a ver cuando lo entreguemos ,no vuelvo!!!", "author": "Sandra Ballesteros", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaFpYaERTRVZFVERKQ1RqSjNTRFpEVFV3eFkyYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "el ju", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsT2RYbFhRbUZYY0d4NFYzbE5ZV2xLVTB0amRsRRAB", "timestamp": "3 months ago"}, {"text": "Esperienza pessima, non noleggiate l’auto in questo Rent:\\nPagato con Booking 30€ di noleggio per una Fiat 500 per 3 giorni + 50€ di assicurazione completa.\\nArrivato sul posto mi chiedono altri 80€ per un’assicurazione che avrebbe dovuto coprire tutti gli eventuali danni, ma poi chiedono anche una cauzione di 200€ (allora non è un’assicurazione completa come dicono!!). Abbiamo optato per non pagare l’assicurazione e lasciare una cauzione di 1000€ (eccessiva!!!), tutti i danni causati da me o da altri li avrei pagati io, rovinando la tranquillità di una piacevole vacanza.\\nNel voucher di noleggio c’era scritto che è previsto un supplemento di 8€ al giorno per i guidatori con meno di 4 anni di patente, io ne ho 5 ed ero tranquillo. Arrivati sul posto mi dicono che questo supplemento vale anche per gli under 25, insistendo che fosse scritto nel voucher (invece non c’era scritto proprio niente a riguardo).\\nFortunatamente è andato tutto bene, ma a questa compagnia serve maggiore trasparenza e comunicazione, così sembra proprio una truffa organizzata ai turisti!!!", "author": "Guglielmo Cattaneo", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214SVRGOXhWSFJSVEhWbmExTTBiRWx2TlRaU1ZHYxAB", "timestamp": "3 months ago"}, {"text": "Smooth rental when booking directly with full coverage. Return was extremely quick and the shuttle was ready to bring us to the airport. One star less because it was quite an old car (Nissan Micra) with not the best exterior state, but it drove well so no complaints there.", "author": "Wierd", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GNWJtZFZXbVZ4VGsxNFZYQldRbmgxWm5saWRGRRAB", "timestamp": "3 months ago"}, {"text": "Aunque los conductores del shuttle son muy amables el servicio en la oficina es un atraco a mano armada.\\nPrimero están haciéndote perder el tiempo más de 30 minutos intentando vender un seguro 3 veces más caro que el alquiler del coche, y si no aceptas el alquiler se inventan rayadas absurdas, en mi caso debajo del parachoques, que aunque haga fotos del coche es imposible de ver, nada pequeña que un huevo, y sin diciéndoles que he tenido en vive la 5 días en el parking del hotel no te hacen caso y me cobran 385 eur al momento sin reparar el coche algo que vale 30 eur. Muy bordes y te castigan por no coger su seguro. Muy mal.", "author": "Xavi Ordoñez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sdldYTkNOME5OTnpOcFJXVk1XVzlPU2pWQlQwRRAB", "timestamp": "3 months ago"}, {"text": "Ze vragen 1200 euro voor een bluts die al aanwezig was. Opletten!", "author": "Wolf Hernalsteen", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCWWRrTXRURlJyTkRsWU1WTlBhRWczUzFoSVUxRRAB", "timestamp": "3 months ago"}, {"text": "La verdad que una experiencia bastante buena. Iba un poco con el miedo por algunos comentarios de que te intentaban estafar poniéndote a ti algún golpe o algún rayón que ya tenía el coche, pero lo cierto que ningún problema. De hecho te dan un parte por email de los golpes y rayones que tiene el coche, si que es verdad que yo grabé todo por si acaso, había algún rayón mínimo, pero por si acaso tambien lo grabé. Si que es verdad que tardaron bastante en recogernos para llevarnos a por el coche, unos 20 minutos, pero luego todo rápido la verdad. Nos atendió una mujer un poco sería, me dijo que sino cobraba el seguro que te dan unos 80€ tenía que dejar una fianza, al final fueron 1000€ de fianza, la verdad que me parece exagerado para un Seat Ibiza, pero bueno. Al volver, lo dejamos a la hora y me atendió una chica llamada Mery, muy simpática, se agradece la simpatía de verdad. Miró el coche, y todo perfecto. Mientras hablando con ella sobre el coche que iba muy bien y que tal y que cual. Lo dicho, muy cercana. Gracias Mery. Y el mini bus de vuelta al aeropuerto puntual y muy rápido, en 5 minutos ya estábamos ahí, el chófer simpatico. La verdad que si vuelvo a la isla reservaré con esta compañía. Gracias. Por cierto, el coche genial, un Seat Ibiza nuevo, con 7000km y sin ningún problema, justo el que reservé. Perfecto todo.", "author": "Felipe Juan Padilla Pires", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kMVEwdDVVVEZEV25WaVRrbGxlVjgyUkVsUWNrRRAB", "timestamp": "3 months ago"}, {"text": "Klasse Autovermietung. Etwas Wartezeit bei der Abholung mit dem Shuttlebus war kein Problem. 5 Min Fahrt zur Station, schnelle und sehr freundliche Bearbeitung und herausgabe der Schlüssel. Fahrzeug ( JEEP ) war sauber und stand schon direkt vor der Station. Tolles Fahrzeug, welches wir nach 14 Tagen wieder an der Station abgeben konnten. Die Mitarbeiter waren schon 7:50 Uhr da und begannen schon mit Ihrer Arbeit, obwohl die Öffnungszeit erst mit 8:00 Uhr angegeben war. Freundliche und schnelle Kontrolle, sowie sofortige Freischaltung der 2000.€ Kaution, welches mit die Kreditkartenapp nach 2 min. schon bestätigt hatte. Wir ( 6 Fahrgäste ) wurden umgehend wieder mit dem Shuttlebus zum Airport LPA gebracht. Alles in allem. Gutes Preis-Leistungsverhältnis und Click Rent kann ohne Probleme gerne gebucht werden. Wir werden die Angebote beim nächsten Urlaub wieder nutzen.", "author": "Salvatore Altieri", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WQ1ZWRkZVM1JoU0dkaVNXZFBibXBIVjFkWmQyYxAB", "timestamp": "3 months ago"}, {"text": "Todo muy bien. Además es la empresa más económica que he encontrado de alquiler de coches. El personal amable y profesional. El único pero que se puede poner es que la empresa no está en el aeropuerto y aunque está cerca resultó un poco difícil de encontrar al entregar el coche.", "author": "Miguel", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsSE1FMW1hME10Y3pKelVVMXZNSFIyYkZvM01rRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Patrice Bravard", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wWWJWSlJVSGh0Y0hsa1ZHTmlTamRTT0d0VGJYYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Paula Rodriguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wRVRFOVVSSEYwVEdaS05uQkhUVFo0TkRaNExYYxAB", "timestamp": "3 months ago"}, {"text": "Ik huurde een auto via LocalRent. Bedrag was 128 euro voor 9 dagen. 2 dagen voor vertrek, kreeg ik een mail van Clickrent. Kennelijk was Localrent slechts een tussenpersoon. Ik was daar behoorlijk kwaad om geworden. Clickrent bood mij de mogelijkheid om een verzekering bij te kopen ter waarde van 216 euro. Hierin zat een full coverage en de borg werd verlaagd van 1200 naar 200. Uiteindelijk toch maar die verzekering genomen waardoor ik uiteindelijk veeel duurder uitkwam dan oorspronkelijke bedrag. Maar service van Clickrent was top, geen gezeur ovet krasjes, borg netjes teruggestort. Ze deden niet moeilijk om wat zand in het interieur.", "author": "Iliass Bololo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsNlJXbHVjVlZ3YmtsSmVrWnZTaTFLT0U1WU1FRRAB", "timestamp": "3 months ago"}, {"text": "Servicio excelente y de máxima calificación de profesionalidad y calidad de prestación de servício al cliente. Con personal muy amables y atentos al cliente, los cuales transmiten seguridad y confianza total . Recomendables de 5 ***** .", "author": "Didac Poveda", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214clVqSmlkRzFwY205eVNHaHlja3BpUVdrMk1sRRAB", "timestamp": "3 months ago"}, {"text": "Una experiencia muy positiva, buen precio en el alquiler. El coche estaba super limpio.\\nNos atendió Hugo, muy profesional y servicial.", "author": "Javier Pereiro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zME1taFhjRXN4TW5oRk1HSkJMWEJIYm1NeFNGRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Mihai Noana", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25NMVMwb3paazVVVEVkc01tMWxNemxYV1ZKUFdsRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Christian Huber", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oekxWTm5TaTFWTUZaS05HVm9TbGRRZGxKVVNuYxAB", "timestamp": "3 months ago"}, {"text": "No doy 0 estrellas porque no me deja.\\nExperiencia pésima:\\nAunque abren sobre las 8:00 nos dijeron que habría alguien para las 7:00 para entregar los coches y llevarnos al aeropuerto, pues no solo no había nadie, sino que tuvimos que dejar los coches en el parking de al lado, el cual nos cobraron y todavía no nos han devuelto el dinero.\\nHoy, después de un mes, nos ha llegado una multa de esa misma mañana a las 11, hora a la que ya habíamos bajado del avión incluso, y los caras duras dicen que nosotros entregamos el coche a las 11:23 (algo que es imposible, porque ya ni siquiera estábamos en Canarias).\\nSi vais a alquilar coches, no recomiendo nada esta empresa.", "author": "Alvaro Ubeda Sanchez", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxclpUSlNVM2RhVERWSVgyRnFlWGRrYmxaNlMyYxAB", "timestamp": "3 months ago"}, {"text": "Super rápidos!!! Atententos y coches super nuevos!!", "author": "Paz Alvarez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OcE9GWmtNRVYwT0UxbFpUVXhNVnAyVUV0V2FuYxAB", "timestamp": "3 months ago"}, {"text": "The instructions for the shuttle were too vague. We didnt know what to expect and how to reach the shuttle about a pickup time (it was unclear it would drive by the pickup point from time to time, and we expected we had to make a phonecall for a pickup).\\n\\nWhen we dailed the generic phonenumber provided to us for questions, we got a computer voice that we didnt understand (badly translated spanish to english?) and it didnt understand us, and we couldnt get in touch with a person to help us. So we didnt know how to ask for the shuttle to come to the airport to pick us up.\\n\\nEventually, we called booking.com, who could contact the shuttle via a direct number, and then we were pucked up within a few minutes.\\n\\nAfter that, everything went great. Very friendly and helpful staff, clean car, nice facilities and the shuttle to the airport after returning the car was great.", "author": "Martijn Wieringa", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25wVlkzZHhWSHBKTkVSRWFXeGlVV0pDYjJwbk5YYxAB", "timestamp": "3 months ago"}, {"text": "Très mauvaise expérience ! Cette agence facture des frais abusifs de 50€ pour le simple envoi d’un mail d’information pour une amende ! C’est scandaleux.\\nAutant le temps de traitement hyper long, l’agence basée dans une sorte de terrain vague très glauque et la dame de l’accueil désagréable on a toléré mais alors faire ce genre de choses c’est inacceptable. Passez votre chemin il y a beaucoup mieux !", "author": "Mimi", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21RdGNHVmZOMkZoVUd3d1JtOVZMWE5OVlVOWlRHYxAB", "timestamp": "3 months ago"}, {"text": "Me cancelan la reserva el mismo día de la entrega sin proponer otra opción, sin rembolso… ahora tengo que llamar para esperar que en 15 días me reembolsen… cuidado, gente con esta empresa son estafadores", "author": "Casa Doranda", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25weFNWQTBYM1JSYkRJMlJIcEhOM2xOY1VKd1oxRRAB", "timestamp": "3 months ago"}, {"text": "Ich habe bei der Übernahme einen Vorschaden übersehen. Dieser wurde bei der Abgabe zunächst vom Mitarbeiter bemerkt. Nach Abgleich mit den bekannten Schäden, die im Computer vermerkt sind, wurde mir der Schaden glücklicherweise nicht angelastet. Ich bin absolut zufrieden.\\nEinen Negativpunkt habe ich: Den Treffpunkt am Flughafen könnte man besser bekanntgeben, vielleicht auch direkt auf dem Voucher bei der Adresse. Eine Bandansage über die angegebene Telefonnummer über den Abholpunkt am Flughafen, welche in einer fremden Sprache zu hören ist, ist bei Verkehrslärm am Flughafen schwierig zu verstehen. Ich habe lange gebraucht diesen Punkt zu finden.", "author": "Josef Spieler", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSdGQzaG5aakJVTFdoWmQzb3dWRFl6WVd4bFFWRRAB", "timestamp": "3 months ago"}, {"text": "Save yourself from having to deal with the unhelpful staff and ‘computer says no’ approach to customer service. Book a hire car from somewhere that has a kiosk in the airport and can be easily contactable. Not worth the cheaper rates. Never got our car and had to pay full price due to a flight delay they refused to accommodate.", "author": "Darren Hastings", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKMVVrMUhXVWxvWVVWcFpFZFVTbE4yWVZaNmRFRRAB", "timestamp": "3 months ago"}, {"text": "Ganz hervorragend und absolut zuverlässig, was offenkundig bekannt zu sein scheint. Ein Motorrad Vermieter in Las Palmas sagte uns als er den Aufkleber von clickrent erblickte ungefragt, dass ClickRent ein sehr guter Vermieter und sehr zuverlässig sei. Das war für uns angenehm zu hören und sehr beruhigend. Man hat ja schließlich 1000€ Kaution hinterlegt. Der Preis für das Fahrzeug war zudem extrem günstig. Ich hatte ein Sonderangebot wahrgenommen und zahlte nur 19 € für 2 Tage. Klasse Laden !", "author": "MrHajoge", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5VVpXVlNlSFpqYVMxM1ZrVTJjWGN4UnpGWVRVRRAB", "timestamp": "3 months ago"}] \N Message: tab crashed\n (Session info: chrome=144.0.7559.96)\n {"job_type": "google-reviews", "priority": 0, "business_name": "ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "rating_snapshot": 3.7, "business_address": "C. Practicante Casto Moros, 35219 Ojos de Garza, Las Palmas, Spain ", "total_reviews_snapshot": 591} 591 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T16:49:14.315Z", "timestamp_ms": 1769273354315}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T16:49:14.823Z", "timestamp_ms": 1769273354823}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22ClickRent%22%20Gran%20Canaria...", "category": "browser", "timestamp": "2026-01-24T16:49:15.038Z", "timestamp_ms": 1769273355038}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T16:49:17.504Z", "timestamp_ms": 1769273357504}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T16:49:18.314Z", "timestamp_ms": 1769273358314}, {"level": "INFO", "message": "Total reviews on page: 591", "metrics": {"total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:25.516Z", "timestamp_ms": 1769273365516}, {"level": "INFO", "message": "Business: ClickRent Gran Canaria | Alquiler de Coches y Furgonetas", "category": "scraper", "timestamp": "2026-01-24T16:49:25.518Z", "timestamp_ms": 1769273365518}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T16:49:25.814Z", "timestamp_ms": 1769273365814}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T16:49:25.932Z", "timestamp_ms": 1769273365932}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T16:49:26.418Z", "timestamp_ms": 1769273366418}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T16:49:26.418Z", "timestamp_ms": 1769273366418}, {"level": "INFO", "message": "Sorted by newest", "category": "browser", "timestamp": "2026-01-24T16:49:29.839Z", "timestamp_ms": 1769273369839}, {"level": "INFO", "message": "Refreshed scroll container reference", "category": "browser", "timestamp": "2026-01-24T16:49:31.699Z", "timestamp_ms": 1769273371699}, {"level": "INFO", "message": "Expanded 4 truncated reviews", "metrics": {"expanded_count": 4}, "category": "browser", "timestamp": "2026-01-24T16:49:32.051Z", "timestamp_ms": 1769273372051}, {"level": "INFO", "message": "Blocking images for faster scrolling", "category": "browser", "timestamp": "2026-01-24T16:49:32.111Z", "timestamp_ms": 1769273372111}, {"level": "INFO", "message": "Found 10 review topics: shuttle bus, island, bail, scammers, damage...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-24T16:49:33.192Z", "timestamp_ms": 1769273373192}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T16:49:33.192Z", "timestamp_ms": 1769273373192}, {"level": "INFO", "message": "37/591 (6%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000016689300537109375, "progress_pct": 6.260575296108291, "reviews_count": 37, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:35.612Z", "timestamp_ms": 1769273375612}, {"level": "WARN", "message": "SLOW cycle: 2.7s (api:0.0s dom:0.2s/259cards flush:0.0s seen:66)", "metrics": {"dom_cards": 259, "api_time_s": 0.041184425354003906, "dom_time_s": 0.2252488136291504, "seen_count": 66, "cycle_time_s": 2.679171323776245}, "category": "system", "timestamp": "2026-01-24T16:49:37.415Z", "timestamp_ms": 1769273377415}, {"level": "INFO", "message": "66/591 (11%) | idle: 0.1s", "metrics": {"idle_seconds": 0.0527043342590332, "progress_pct": 11.16751269035533, "reviews_count": 66, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:37.469Z", "timestamp_ms": 1769273377469}, {"level": "INFO", "message": "85/591 (14%) | idle: 0.3s", "metrics": {"idle_seconds": 0.2574644088745117, "progress_pct": 14.382402707275805, "reviews_count": 85, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:40.310Z", "timestamp_ms": 1769273380310}, {"level": "INFO", "message": "Flushing 105 reviews to disk...", "metrics": {"source": "flush", "batch_size": 105}, "category": "scraper", "timestamp": "2026-01-24T16:49:41.856Z", "timestamp_ms": 1769273381856}, {"level": "WARN", "message": "SLOW cycle: 2.9s (api:0.1s dom:0.4s/231cards flush:0.0s seen:105)", "metrics": {"dom_cards": 231, "api_time_s": 0.07082509994506836, "dom_time_s": 0.3635995388031006, "seen_count": 105, "cycle_time_s": 2.8756394386291504}, "category": "system", "timestamp": "2026-01-24T16:49:41.874Z", "timestamp_ms": 1769273381874}, {"level": "INFO", "message": "105/591 (18%) | idle: 0.2s", "metrics": {"idle_seconds": 0.17998504638671875, "progress_pct": 17.766497461928935, "reviews_count": 105, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:42.054Z", "timestamp_ms": 1769273382054}, {"level": "INFO", "message": "124/591 (21%) | idle: 4.5s", "metrics": {"idle_seconds": 4.540806770324707, "progress_pct": 20.98138747884941, "reviews_count": 124, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:50.445Z", "timestamp_ms": 1769273390445}, {"level": "WARN", "message": "SLOW cycle: 8.5s (api:0.1s dom:0.4s/348cards flush:0.0s seen:152)", "metrics": {"dom_cards": 348, "api_time_s": 0.07287907600402832, "dom_time_s": 0.43610668182373047, "seen_count": 152, "cycle_time_s": 8.478100776672363}, "category": "system", "timestamp": "2026-01-24T16:49:55.776Z", "timestamp_ms": 1769273395776}, {"level": "INFO", "message": "152/591 (26%) | idle: 0.2s", "metrics": {"idle_seconds": 0.15983247756958008, "progress_pct": 25.719120135363788, "reviews_count": 152, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:55.936Z", "timestamp_ms": 1769273395936}, {"level": "WARN", "message": "SLOW cycle: 5.9s (api:0.4s dom:0.2s/316cards flush:0.0s seen:171)", "metrics": {"dom_cards": 316, "api_time_s": 0.3657951354980469, "dom_time_s": 0.19803953170776367, "seen_count": 171, "cycle_time_s": 5.851451635360718}, "category": "system", "timestamp": "2026-01-24T16:49:58.478Z", "timestamp_ms": 1769273398478}, {"level": "INFO", "message": "171/591 (29%) | idle: 0.1s", "metrics": {"idle_seconds": 0.12477850914001465, "progress_pct": 28.934010152284262, "reviews_count": 171, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:49:58.605Z", "timestamp_ms": 1769273398605}, {"level": "WARN", "message": "SLOW cycle: 2.2s (api:1.7s dom:0.1s/345cards flush:0.0s seen:190)", "metrics": {"dom_cards": 345, "api_time_s": 1.7457833290100098, "dom_time_s": 0.11420607566833496, "seen_count": 190, "cycle_time_s": 2.1536426544189453}, "category": "system", "timestamp": "2026-01-24T16:50:10.104Z", "timestamp_ms": 1769273410104}, {"level": "INFO", "message": "190/591 (32%) | idle: 0.1s", "metrics": {"idle_seconds": 0.142136812210083, "progress_pct": 32.14890016920474, "reviews_count": 190, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:10.247Z", "timestamp_ms": 1769273410247}, {"level": "WARN", "message": "SLOW cycle: 12.5s (api:0.2s dom:0.1s/288cards flush:0.0s seen:200)", "metrics": {"dom_cards": 288, "api_time_s": 0.15361714363098145, "dom_time_s": 0.0634613037109375, "seen_count": 200, "cycle_time_s": 12.482922315597534}, "category": "system", "timestamp": "2026-01-24T16:50:12.537Z", "timestamp_ms": 1769273412537}, {"level": "INFO", "message": "200/591 (34%) | idle: 0.1s", "metrics": {"idle_seconds": 0.05458807945251465, "progress_pct": 33.840947546531304, "reviews_count": 200, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:12.594Z", "timestamp_ms": 1769273412594}, {"level": "INFO", "message": "Flushing 105 reviews to disk...", "metrics": {"source": "flush", "batch_size": 105}, "category": "scraper", "timestamp": "2026-01-24T16:50:15.459Z", "timestamp_ms": 1769273415459}, {"level": "INFO", "message": "210/591 (36%) | idle: 0.1s", "metrics": {"idle_seconds": 0.12949037551879883, "progress_pct": 35.53299492385787, "reviews_count": 210, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:15.590Z", "timestamp_ms": 1769273415590}, {"level": "WARN", "message": "SLOW cycle: 3.0s (api:0.5s dom:0.2s/387cards flush:0.0s seen:230)", "metrics": {"dom_cards": 387, "api_time_s": 0.4911673069000244, "dom_time_s": 0.17270565032958984, "seen_count": 230, "cycle_time_s": 3.010864019393921}, "category": "system", "timestamp": "2026-01-24T16:50:17.795Z", "timestamp_ms": 1769273417795}, {"level": "INFO", "message": "230/591 (39%) | idle: 0.1s", "metrics": {"idle_seconds": 0.08709263801574707, "progress_pct": 38.917089678511, "reviews_count": 230, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:17.882Z", "timestamp_ms": 1769273417882}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-24T16:50:28.192Z", "timestamp_ms": 1769273428192}, {"level": "WARN", "message": "SLOW cycle: 2.4s (api:0.0s dom:0.1s/0cards flush:0.0s seen:230)", "metrics": {"dom_cards": 0, "api_time_s": 0.018262624740600586, "dom_time_s": 0.0757894515991211, "seen_count": 230, "cycle_time_s": 2.382625102996826}, "category": "system", "timestamp": "2026-01-24T16:50:28.261Z", "timestamp_ms": 1769273428261}, {"level": "INFO", "message": "230/591 (39%) | idle: 10.5s", "metrics": {"idle_seconds": 10.489476680755615, "progress_pct": 38.917089678511, "reviews_count": 230, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:28.285Z", "timestamp_ms": 1769273428285}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-24T16:50:29.317Z", "timestamp_ms": 1769273429317}, {"level": "WARN", "message": "SLOW cycle: 10.3s (api:0.0s dom:0.0s/0cards flush:0.0s seen:230)", "metrics": {"dom_cards": 0, "api_time_s": 0.006826877593994141, "dom_time_s": 0.008838653564453125, "seen_count": 230, "cycle_time_s": 10.256826639175415}, "category": "system", "timestamp": "2026-01-24T16:50:29.317Z", "timestamp_ms": 1769273429317}, {"level": "INFO", "message": "230/591 (39%) | idle: 11.5s", "metrics": {"idle_seconds": 11.526105165481567, "progress_pct": 38.917089678511, "reviews_count": 230, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:29.321Z", "timestamp_ms": 1769273429321}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-24T16:50:30.344Z", "timestamp_ms": 1769273430344}, {"level": "INFO", "message": "230/591 (39%) | idle: 12.6s", "metrics": {"idle_seconds": 12.553624868392944, "progress_pct": 38.917089678511, "reviews_count": 230, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:30.349Z", "timestamp_ms": 1769273430349}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-24T16:50:30.349Z", "timestamp_ms": 1769273430349}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-24T16:50:31.374Z", "timestamp_ms": 1769273431374}, {"level": "INFO", "message": "230/591 (39%) | idle: 13.6s", "metrics": {"idle_seconds": 13.583107233047485, "progress_pct": 38.917089678511, "reviews_count": 230, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:31.378Z", "timestamp_ms": 1769273431378}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-24T16:50:33.014Z", "timestamp_ms": 1769273433014}, {"level": "INFO", "message": "230/591 (39%) | idle: 15.7s", "metrics": {"idle_seconds": 15.737805366516113, "progress_pct": 38.917089678511, "reviews_count": 230, "total_reviews": 591}, "category": "scraper", "timestamp": "2026-01-24T16:50:33.533Z", "timestamp_ms": 1769273433533}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-24T16:50:33.628Z", "timestamp_ms": 1769273433628}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.737805366516113}, "category": "browser", "timestamp": "2026-01-24T16:50:33.763Z", "timestamp_ms": 1769273433763}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-24T16:50:33.970Z", "timestamp_ms": 1769273433970}, {"level": "ERROR", "message": "Scraper failed: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "system", "timestamp": "2026-01-24T16:50:35.403Z", "timestamp_ms": 1769273435403}] 2026-01-24 16:50:15.469375 \N \N \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N ClickRent Gran Canaria | Alquiler de Coches y Furgonetas \N C. Practicante Casto Moros, 35219 Ojos de Garza, Las Palmas, Spain 3.70 \N \N \N \N 6d40ae44-21b9-48eb-98fe-7e95b472793a completed https://www.google.com/maps/search/?api=1&query=R.%20Fleitas%20Peluqueros%20Gran%20Canaria&hl=en \N \N 2026-01-24 14:24:28.077452 2026-01-24 14:24:39.039099 2026-01-24 14:24:39.100955 79 [{"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB", "timestamp": "a month ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "", "author": "Derians Jose Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE", "timestamp": "a year ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Excellent service from a professional who loves his job.", "author": "Pepe", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Spectacular, art is what it has", "author": "Cristobal Ceballos vega", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Professional, fast. Good price! Recommended.", "author": "Flavio", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Sara Elizondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Leonardo Romeo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE", "timestamp": "3 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"}, {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}] 10.954834 \N {"business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "source": "scraper", "message": "Set geolocation to US (Boston, MA) [default]", "timestamp": "2026-01-24T14:24:28.570099Z"}, {"level": "INFO", "source": "scraper", "message": "🌐 Loading: https://www.google.com/maps/search/?api=1&query=R.%20Fleitas%20Peluqueros%20Gran...", "timestamp": "2026-01-24T14:24:28.730137Z"}, {"level": "INFO", "source": "scraper", "message": " Handling consent popup...", "timestamp": "2026-01-24T14:24:30.758748Z"}, {"level": "INFO", "source": "scraper", "message": " Reloading after consent...", "timestamp": "2026-01-24T14:24:31.277241Z"}, {"level": "INFO", "source": "scraper", "message": "📊 Total reviews on page: 79", "timestamp": "2026-01-24T14:24:33.615979Z"}, {"level": "INFO", "source": "scraper", "message": "📍 Business: R. Fleitas Peluqueros", "timestamp": "2026-01-24T14:24:33.616010Z"}, {"level": "INFO", "source": "scraper", "message": " Available tabs: ['Overview', 'Reviews', 'About']", "timestamp": "2026-01-24T14:24:33.721484Z"}, {"level": "INFO", "source": "scraper", "message": " Clicking reviews tab: 'Reviews'", "timestamp": "2026-01-24T14:24:33.805058Z"}, {"level": "INFO", "source": "scraper", "message": "✅ Found scroll container", "timestamp": "2026-01-24T14:24:34.069775Z"}, {"level": "INFO", "source": "scraper", "message": "🔌 Injecting API interceptor...", "timestamp": "2026-01-24T14:24:34.069813Z"}, {"level": "INFO", "source": "scraper", "message": " 📅 Sorted by newest", "timestamp": "2026-01-24T14:24:35.036757Z"}, {"level": "INFO", "source": "scraper", "message": " 🔄 Refreshed scroll container reference", "timestamp": "2026-01-24T14:24:35.066116Z"}, {"level": "INFO", "source": "scraper", "message": " 🚫 Blocking images for faster scrolling", "timestamp": "2026-01-24T14:24:35.077440Z"}, {"level": "INFO", "source": "scraper", "message": "📊 Found 5 review topics: hair salon, cutting, price, siblings, beard...", "timestamp": "2026-01-24T14:24:35.588208Z"}, {"level": "INFO", "source": "scraper", "message": "🔄 Scrolling... (timeout: 15s with no new)", "timestamp": "2026-01-24T14:24:35.588270Z"}, {"level": "INFO", "source": "scraper", "message": " 📊 30/79 (38%) | idle: 0.0s", "timestamp": "2026-01-24T14:24:36.827953Z"}, {"level": "INFO", "source": "scraper", "message": " 📊 50/79 (63%) | idle: 0.0s", "timestamp": "2026-01-24T14:24:37.934150Z"}, {"level": "INFO", "source": "scraper", "message": " 📊 79/79 (100%) | idle: 0.0s", "timestamp": "2026-01-24T14:24:39.037786Z"}, {"level": "INFO", "source": "scraper", "message": "✅ All 79 reviews collected", "timestamp": "2026-01-24T14:24:39.037898Z"}, {"level": "INFO", "source": "scraper", "message": " 💾 Final flush: 79 reviews...", "timestamp": "2026-01-24T14:24:39.037925Z"}, {"level": "INFO", "source": "scraper", "message": "📝 Finalizing review data...", "timestamp": "2026-01-24T14:24:39.038439Z"}, {"level": "INFO", "source": "scraper", "message": "📋 Total: 79 unique reviews (flushed: 79, in memory: 0)", "timestamp": "2026-01-24T14:24:39.038555Z"}] 2026-01-31 03:21:52.859199 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] \N \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google 4f4bb448-0dee-4e36-b2a2-20f0357fece8 completed https://www.google.com/maps/search/?api=1&query=%22soho%22%20vilna&hl=en \N \N 2026-01-29 18:34:31.336452 2026-01-29 18:37:38.861859 2026-01-29 18:37:38.94973 438 [{"text": "Last Post (8/15 & 16/2025): Highly recommended to come visit and have fun with open-minded and positive attitude. I love this place. I came here twice in a row. Open dance floor and dance moves. Great vibe and great DJ. Friendly staff and the bar owner were incredible amazing person. Definitely, I will come visit again when I'm in the country. I already missed this place ☹️", "author": "Dalton James Cryztoff", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB", "timestamp": "4 months ago"}, {"text": "Nice pub with great music! I really enjoyed my time there.", "author": "Sevda K.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB", "timestamp": "a month ago"}, {"text": "Decided last minute to come here with a friend on a Saturday night around 1:30 am. The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or super pop music. But, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and I were singing along. The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards.\\n\\n6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Drink prices are reasonable I guess, paid 10 euro for a Negroni and I was sleepy so I had a Black Russian and a White Russian, those were only 8 each.\\n\\nJust wish the crowd was larger! Especially for a Saturday night but the crowd had good energy, I’ve that they have events twice a month with a bigger crowd- I guess that’s when they open the other section with the stage.\\n\\nOverall, I had an okay time- friendly staff, good music and well prepared drinks.", "author": "Hak Bén", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB", "timestamp": "a year ago"}, {"text": "Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for hours without there being a dull moment. The bartenders are fast and the service is good. Great atmosphere in the club. Would recommend it to anyone looking for a good night out in Vilnius.", "author": "Eirik Johansen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB", "timestamp": "7 months ago"}, {"text": "Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing. The staff and customers are friendly", "author": "Ugne Mosinaite", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB", "timestamp": "4 months ago"}, {"text": "We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free.\\nI feel sorry for the administrators, it's quite strange approach.\\n\\nThank you for your response. I haven't visited you for more than 5 years, been couple of times in total.\\nThe system you have is stupid and discriminatory. I support clubs by buying drinks and coming back. No need for manipulative bullshit.\\n\\nIts a never seen system when a single person or a couple is less welcome than a group of 3.", "author": "Jonas Šimeliūnas", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB", "timestamp": "Edited 4 months ago"}, {"text": "Yeah the other review was correct, every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathroom I’ve ever seen in a public place.", "author": "Ciarán Meers", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB", "timestamp": "4 months ago"}, {"text": "Was hard to see the performers and the drinks and tickets were expensive.\\nThe bathroom was also just wet like someone had just covered every surface in water? Seems strange, I've seen swimming pool bathrooms less wet.\\n\\nBut on the other hand the drinks were STRONG and what I could see of the performance was amazing. And the bathrooms were clean... Just wet\\n\\nThe staff was very nice and they were well equipped for anything. Changed my phone while watching the performance, had a good time.", "author": "fetlock flowers", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB", "timestamp": "7 months ago"}, {"text": "This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks.\\n\\nTheir events are amazing and plentiful. 100% recommend to visit for a drag show or a live event.\\n\\nThe reason for two stars is the fact that the dance DJs they book are pretty poor.\\nThat fact ruins the atmosphere.\\n\\nLast time I danced to a good DJ set there was in 2015 😞", "author": "Aleksandr Panzin", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE", "timestamp": "a year ago"}, {"text": "The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. She didn’t measure the proportion, and I had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. That was too much. And finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) I was literally shocked and about to throw up. That’s disgusting and unacceptable. No respect to clients. Avoid her, awful experience. Though place is rather cozy", "author": "Daria Zaikina", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE", "timestamp": "8 months ago"}, {"text": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? I loved this place.", "author": "Batonas Tvirtas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB", "timestamp": "2 months ago"}, {"text": "They only have the phone scan option for the drink menu. I left immediately.", "author": "Antony Maiolla", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB", "timestamp": "a month ago"}, {"text": "Nice place, great events!", "author": "Yana Kanapickiene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB", "timestamp": "3 months ago"}, {"text": "Greatest club in Litauen love it like it best place to go and have fun perfect DJ\\nSUPER FIVE STAR LIKE THE SOHO IN LONDON YEAAAAAH", "author": "AndrewG GE", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB", "timestamp": "2 years ago"}, {"text": "Door charge plus coat check was 6 euros quite fair. Not packed but great vibes love it. Friendly bartenders and ticket person. Music was good it was quite a mix so depends on your preference. But generally quite good. Quite young crowd. Mixed good for an Eastern European country. Definitely visit if you’re a foreigner. Drinks are cheap!", "author": "Anthony Lava", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE", "timestamp": "2 years ago"}, {"text": "If you want to see a different kind of entertainment night, you can choose this place. it has a small stage but we didn't like their music very much", "author": "Merve Esra", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB", "timestamp": "3 years ago"}, {"text": "I Was there on weekend ,nice mix of People, and really nice service, i forget my Phone at the veniu and they was really helpfull found it and giving it back", "author": "Jose", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB", "timestamp": "6 months ago"}, {"text": "Great queer club! Excellent drinks, cool staff and a good dance floor.", "author": "Nicolas Dula", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE", "timestamp": "a year ago"}, {"text": "Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood.\\nI ended up losing my phone, but they contacted me the next day so I could come right over and get it back.\\nDefinitely a place I’ll visit again if I’m in Vilnius.", "author": "Dina Mihle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB", "timestamp": "4 years ago"}, {"text": "Yesterday we were looking to have some fun and decided to visit this club. At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. Excuse me, but since when there is some kind of limit of taking your belongings back!? We were also incredibly dissatisfied with the staff at the bar. We asked for a San Francisco cocktail and a bartender did not even know what that is and told us to look at the menu. We were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj was without experience and doesn’t understand the basics of Dj’ing (Synchronizing 2 songs at once, going from one song to the other so that there is no pause). It felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. Overall, the environment its self is pretty cozy and chill but the service is tragedy. People working there clearly hate the job and do not give a damn about customers.", "author": "Tomas", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE", "timestamp": "2 years ago"}, {"text": "Greatest club in Lithuania,best place to go in the midnight.", "author": "Daniel Aston", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE", "timestamp": "a year ago"}, {"text": "This was my first time at any drag show and it’s definitely not the last. I was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and I’ve never left a party more energized. I don’t think I’ve ever felt safer and happier at a club. I’m not religious but Drag at soho is my new church. Definitely go when you have time! (Plus the bartender‘s cute)", "author": "Alicia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB", "timestamp": "2 years ago"}, {"text": "Great place to relax- does not matter u are gay or straight. Strong coctails, great music, relaxing athmosphere.", "author": "Rokas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB", "timestamp": "7 months ago"}, {"text": "Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as I see most these reviewers are tourists. Guys, Lithuanians in general aren’t the most easy going people. So please don’t be offended if you can’t find people to talk to very easily. The club however definitely deserves a 4.5+ rating.\\n\\nIf you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. It won’t be super easy but you will get some great connections there for sure :)", "author": "Tigran Avagyan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE", "timestamp": "3 years ago"}, {"text": "I've been to many gay venues across Europe and around the world. Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfortunately this is not the case. It's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. The staff were mostly friendly which was the only positive. As me and my friend left we meet a young man who was dressed beautifully in a mini skirt and tank top, unfortunately he was refused entry. This is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. He was not drunk, he was not loud and he left rather embarrassed as result of his treatment. Honestly they could do better and so could you by, spending your money elsewhere.", "author": "Eamonn Maguire", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE", "timestamp": "3 years ago"}, {"text": "I had the best night in my life\\nAmazing atmosphere\\nEveryone is Super friendly\\nCan’t wait to come again 💕", "author": "MOHAMMED MSAOURI", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB", "timestamp": "7 months ago"}, {"text": "I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ Recomend to visit for everybody! 😎", "author": "Jelly Bear", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB", "timestamp": "a year ago"}, {"text": "I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances, I was seriously disappointed by the venue. The organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. I could only stand to watch one third of the show as I couldn’t squeeze through the crowd in the first segment so there wasn’t a single place I could stand where I would be able to see more than a quarter of the stage. Later, I managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. After I secured my spot, I was hopeful that I would finally enjoy the show but watching through the second segment of the show was torture, I had barely any space to stand, I still could only watch the performers from the waist up because I couldn’t see over the people in front of me (and I’m 5’5, average height) plus it was so hot I was feeling faint. After that, I left not watching the third and final part of the show. This is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. I would not recommend going for any event they organise.\\n\\nEDIT: In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I expected a designated seat. I expected to be able to watch the show fully, and that's the minimum requirement. In addition, it shouldn't matter what time I enter the event as a paying customer. The event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "author": "Heidi Kwang", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback.\\n\\nI gave it 5 stars for at least trying to be for the community and being the only one, still.", "author": "Ofir Sharon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB", "timestamp": "2 years ago"}, {"text": "I was there in Friday night. Quite crowded, good music, nice guys. A little expensive the cocktails, but the entrance was very cheap.\\nAbsolutely a good place to have a gay night in Vilnius.", "author": "Quinto Fabio Massimo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB", "timestamp": "8 years ago"}, {"text": "I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark! It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a good night dancing, drinking, and having fun.", "author": "Netia Ingram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB", "timestamp": "5 years ago"}, {"text": "I had fun. Bar service and coat service was good and the club was kept clean. The music was a good mix, but too loud for the small room. The club wasn’t very full, even after 1am.", "author": "Pune Thomas", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "The best club in Vilnius. Always good vibes. Very polite and professional staff. They make the best events!!!!this is the place you must visit if you are in Vilnius! :)", "author": "Karolis Ruzgas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE", "timestamp": "3 years ago"}, {"text": "Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into the area/room where they could see the show (I'm not talking a bad view, I mean absolutely no possibility of seeing it at all). I paid for a ticket to see the event, not for a chance to see the event.\\n\\nIt would be better to charge a little more for tickets instead of selling too many.", "author": "Chlo", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB", "timestamp": "3 years ago"}, {"text": "Great gay club in the city, lots of young people, music is also mostly really nice! Only one minus that bartenders could at least try to be friendly. For the rest, it's a cool party!", "author": "Yuri Zanozin", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB", "timestamp": "Edited 2 years ago"}, {"text": "Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks were strong… and I especially liked all the different area’s in the club. I went back the day after 🤗", "author": "Sander B", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE", "timestamp": "3 years ago"}, {"text": "Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old fashioned.", "author": "Ieva Bagdonaitė", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE", "timestamp": "3 years ago"}, {"text": "The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere, staff is extremely friendly 😄", "author": "Benita Guzikaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB", "timestamp": "7 years ago"}, {"text": "I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjoys.\\n\\nStraight nights suck but worth exploring in Vilnius.", "author": "Joseph Duggan Lyons", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB", "timestamp": "6 years ago"}, {"text": "Great club for gay and not so. Dramatica show blew... my mind.", "author": "Skirmantas Mikuckis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB", "timestamp": "3 years ago"}, {"text": "I went a few times to that place. Really liked the atmosphere. Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and you guys just picked it up and saved my night so thanks a lot!", "author": "Julie", "rating": 5, "source": "dom", "timestamp": "6 years ago"}, {"text": "The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. Huge recomendations!", "author": "Natalija Rankauske", "rating": 5, "source": "dom", "timestamp": "5 years ago"}, {"text": "i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night, please do better", "author": "Astrantius Mon", "rating": 2, "source": "dom", "timestamp": "2 years ago"}, {"text": "Some very nice people. Several big rooms, and good prices on drinks. A seperate living room with fashion tv show on whole wall. Friendly and safe. Loved it.", "author": "hvaerdette", "rating": 5, "source": "dom", "timestamp": ""}, {"text": "Response from the owner", "author": "Adomas Grigolis", "rating": 5, "source": "dom", "timestamp": "5 months ago"}, {"text": "Simply love this place. The owner is such a nice person with such great ideas. Love the place as such, decoration, music, drinks, people, all perfect,", "author": "Roberto Faria", "rating": 5, "source": "dom", "timestamp": "9 years ago"}, {"text": "Very friendly staff, good drinks and the club was very clean. The Dramatica Show was amazing!", "author": "LéLé Cocoon", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "The worst long island on the Planet!\\n\\n....But the best reaction ever! After negative opinion kindly Bartender served us free better one long islands. Thanks guys!", "author": "Wojciech Maciej", "rating": 4, "source": "dom", "timestamp": "7 years ago"}, {"text": "Amazing place, worth visiting! Cocktails are the best and atmosphere is great. I highly recommend visiting this place!", "author": "Gabriela Stankevic", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Nice club with great atmosphere but very slow bar service. I don’t know, perhaps in America it’s only fast, but still not familiar!", "author": "Daniel Clark", "rating": 3, "source": "dom", "timestamp": "3 years ago"}, {"text": "Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country.", "author": "abc", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB", "timestamp": "3 years ago"}, {"text": "Nice friendly club. People who working there very friendly and polite", "author": "Md Arman Hossain", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB", "timestamp": "a year ago"}, {"text": "The space is great and the atmosphere is welcoming. We also got outstanding service from the bartender! :)", "author": "Sari S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE", "timestamp": "5 years ago"}, {"text": "Excellent service. Even saw management take care of customer concerns. As long as you dont mind LGBTQ this is a great place to spend a friday.", "author": "Mindaugas Vilkas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB", "timestamp": "6 years ago"}, {"text": "Excellent music and atmosphere", "author": "Rhoda V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE", "timestamp": "7 months ago"}, {"text": "Nice to come back home to vilnius, and to know you can relax. Loved loved loved. Xxccc", "author": "Rokas Hegarty", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB", "timestamp": "7 years ago"}, {"text": "Good place, perfect club LGBT.\\nBest place. Nice stuff", "author": "Karolina J", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB", "timestamp": "3 years ago"}, {"text": "I want to come back! Great place.", "author": "Vika Rudziankova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE", "timestamp": "a year ago"}, {"text": "Super service, kind bartender, loved it!", "author": "Govinda Valciukaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB", "timestamp": "a year ago"}, {"text": "Love this place!! Worth visiting, best music!?", "author": "Gabriela Stankevic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyanJuZ3VBRRAB", "timestamp": "3 years ago"}, {"text": "Good music for dancing, wide choice of cocktails.", "author": "Do “D” K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB", "timestamp": "6 years ago"}, {"text": "The club is owned by the guy with the style, who actually cares about the place :)", "author": "Sakurako Sakurako", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB", "timestamp": "Edited 8 years ago"}, {"text": "Quite a fun and safe club", "author": "Tomas F.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB", "timestamp": "10 months ago"}, {"text": "Nice gay club. I rather pop music but its ok.", "author": "Victor G.Onrubia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB", "timestamp": "9 years ago"}, {"text": "amazing service, nice club!!", "author": "Vakare Zuozaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE", "timestamp": "3 years ago"}, {"text": "Good cocktails and good music", "author": "Sergei Zhenikhov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE", "timestamp": "2 years ago"}, {"text": "Fantastic atmosphere. If gay or not.", "author": "Ulrich Beck", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE", "timestamp": "8 years ago"}, {"text": "Fancy place with good music!", "author": "Celia Álvarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB", "timestamp": "5 years ago"}, {"text": "Nice :)", "author": "Audrius Basiulis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE", "timestamp": "5 years ago"}, {"text": "Really good club!!!", "author": "Iratxe Azkarraga Alava", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE", "timestamp": "3 years ago"}, {"text": "Best baser", "author": "Koletta Jurskyte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE", "timestamp": "3 years ago"}, {"text": "Very good 😻😻", "author": "Marianita Quintero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE", "timestamp": "3 years ago"}, {"text": "Wow", "author": "UV Music", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE", "timestamp": "4 years ago"}, {"text": "Niekad nerašau, blogų atsiliepimų, tačiau ši kartą jau nebegaliu. Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas Bet - muzika. Aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? Visiškai nesvarbu koks DJ bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. Atrodo, jog be Lady gaga, Rihanna, Geltonos - nieko daugiau nėra. Tikriausiai galvojate kodėl rašau, \\"biedavojuosi\\"? Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€\\nTuomet visi pasiemam po kokteilį ~44€\\nBandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€\\nBet galiausiai vistiek lieka demotivuoti ir net suirze, nes tas pačias dainas per kelias valandas jau po kelis kartus girdejom ir jos tikra atgyvena. Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt", "author": "Helga", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB", "timestamp": "a month ago"}, {"text": "Sou brasileira. Fui em uma sexta com mais dois amigos homens e gays, um brasileiro e um holandês. Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. Ele começou a dizer que não podíamos entrar. Nao falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\". Falava em Lituano algo mas não entendíamos e tentamos falar em inglês. Perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. Ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. Ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do Bolt. Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar.\\nBom, entramos mas foi bem estranho e não ficamos à vontade. Logos fomos embora e um pouco receosos em relação ao segurança.\\nSei que em situações assim fica questionável se realmente não estávamos fazendo algo \\"ruim\\" mas estávamos conversando em um volume baixo, em português, sobre como o uber foi atencioso.\\nPareceu algo extremamente pessoal. Sobre nossas roupas: calça, camisetas e casacos como todo o resto da balada.\\nAlém, a balada fede a suor.", "author": "Dani Viajante", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB", "timestamp": "3 months ago"}, {"text": "Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. Tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti.\\nVis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. Stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. Nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). Jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį.\\nŠviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.\\nFotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). Jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita.\\nSmulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.\\nTikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. Labai norisi tikėti, kad Vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi.", "author": "Tadas V", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB", "timestamp": "2 months ago"}, {"text": "Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. Iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda.\\nSituacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė.\\nTikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų.", "author": "Edvinas D-as", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB", "timestamp": "4 weeks ago"}, {"text": "Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. Šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. Darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. Tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. Nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. Būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. Nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. Pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. Labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. Tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. Vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. Mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. Nuo kada kažkoks vyras sprendžia kas yra lesbietė, o kas ne? Liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų. O vakarėlio aprašyme parašyta, kad įėjimas nemokamas su dress kodu, nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti, kad pretenduoti į tą nemokamą įėjimą. Atrodo klubas įstrigęs 2000 metais tiek su savo pasenusiais ir neprašytais stereotipais, tiek su playlistu. Liūdna, kad vietoje, kurioje anksčiau galėdavome jaustis saugiai ir būti savimi, to patirti nebegalime.\\n\\nAtsakymas: deja mano atsiliepimas nėra tik interpretacija, jis yra paremtas faktais. Mūsų draugė, kuri nebuvo apsirengusi jokiu personažu buvo pasiruošusi susimokėti už įėjimą - į klubą pateko nemokamai. Ji tikrai nebuvo jokiame svečių sąraše. Mes buvome apsirengusios personažais nuo galvos iki kojų ir kiekvieną aprangos detalę iš anksto apgalvojome, pirkome naujus rūbus ir aksesuarus dėl kostiumų. Savo nuotraukų kelti į soho klubo atsiliepimus ir viešinti savo tapatybių nenorime, jūs tai turėtumėte suprasti labiau, nei bet kas kitas. Dėl diskriminuojančio ir mizogonistinio komentaro, kurio susilaukėme iš jūsų darbuotojo - taip ir neatsakėte. Toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas.", "author": "Cat Lover", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB", "timestamp": "2 months ago"}, {"text": "Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių\\"? :) Jums atrodo norėsis žmonėms kitą kart čia ateit po tokio malonaus elgesio?", "author": "R. Violetovienė", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB", "timestamp": "2 months ago"}, {"text": "Samedi soir début novembre. Nous sommes arrivés à 23h30. Peu de monde (voir photo). Le public est varié. Quelques filles aussi.\\n\\nLe personnel est très accueillant et gentil.\\nIl y a une salle boîte de nuit pour danser.\\n\\nContents d y être allé pour supporter un établissement LGBT", "author": "Jc b23", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB", "timestamp": "a year ago"}, {"text": "Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro", "author": "Jelena Šulžickienė", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB", "timestamp": "4 months ago"}, {"text": "מועדון מאד יפה אבל דיי ריק בשישי בערב.מעורב עם נשים.\\nנאלצנו לחתוך מוקדם.אולי בפעם אחרת.", "author": "מעוז פטל", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB", "timestamp": "3 months ago"}, {"text": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi. Tūsas buvo super. Ačiū Artūrui 👌", "author": "archi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE", "timestamp": "Edited a year ago"}, {"text": "El mejor club gay en Vilnius .\\nLa noche de los Viernes me encanta.", "author": "John Alexander Serna Correa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB", "timestamp": "2 months ago"}, {"text": "Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем. Вход 4€ вроде бы, сдерли 6. По окончании шоу музыка не музыка, места потанцевать нет", "author": "Serhii Diachuk", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10!", "author": "Eivūnas _", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB", "timestamp": "2 years ago"}, {"text": "Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai Soho🙂⭐", "author": "Neringa Janciunaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE", "timestamp": "Edited a year ago"}, {"text": "Neblogas klubas, muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo", "author": "Živilė Jasinevičiūtė", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB", "timestamp": "2 years ago"}, {"text": "Fui un sábado por la noche y la verdad es que estaba bastante vacío. El ambiente y la música regular.\\nLa estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "author": "Diego", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE", "timestamp": "a year ago"}, {"text": "Гарне місце для тих хто хоче знайти себе!", "author": "Karina Petrova", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB", "timestamp": "4 months ago"}, {"text": "Praeitą šeštadienį apsilankiau jūsų klube, tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei, super, ačiū, iki kitų kartų!", "author": "Vadim Korsak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE", "timestamp": "2 years ago"}, {"text": "Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų, apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. Tai jei norite blogios nuotaikos ir prarastų pinigų welcome to Soho.", "author": "Denys Poltoratskyy", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB", "timestamp": "3 years ago"}, {"text": "Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR", "author": "Aurimas", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE", "timestamp": "9 months ago"}, {"text": "Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. Apvemta salė, stiklai. Niekas nieko netvarko. Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "author": "Leo Leo", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE", "timestamp": "3 years ago"}, {"text": "Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :)", "author": "Ilija Edgar Muromec", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB", "timestamp": "a year ago"}, {"text": "Месту срочно необходим ремонт. Грязно очень. Музыка и выпивка хороши. Контингент - весёлые и интересные, яркие люди.", "author": "Yuliya Betsiankova", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE", "timestamp": "2 years ago"}, {"text": "Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba.", "author": "dontlookatme", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB", "timestamp": "6 years ago"}, {"text": "отличный клуб, всё было просто пркрасно", "author": "Лавка Лавка", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE", "timestamp": "9 months ago"}, {"text": "Gera muzika, draugiški žmonės. Man labai patiko!", "author": "Germina Ruginė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB", "timestamp": "a year ago"}, {"text": "жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую)", "author": "Larisa Belkina (belsbox)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE", "timestamp": "6 years ago"}, {"text": "Очень классная клуб 💃", "author": "Doniyor Rahimov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE", "timestamp": "a year ago"}, {"text": "Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat.", "author": "Jarek Kotek", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE", "timestamp": "2 years ago"}, {"text": "Pati geriausia Miglė", "author": "Mantas Kybartas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB", "timestamp": "Edited 4 weeks ago"}, {"text": "visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻", "author": "Augustė D. K.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB", "timestamp": "2 years ago"}, {"text": "Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi!", "author": "Osvaldas Gavelis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE", "timestamp": "2 years ago"}, {"text": "Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kolektyvas!!!", "author": "Dovydas Auškalnis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB", "timestamp": "6 years ago"}, {"text": "Klubas fainas😊\\nBet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės", "author": "Emilija Zenovic", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB", "timestamp": "3 years ago"}, {"text": "Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt", "author": "Andrejus Tiskevicius", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB", "timestamp": "6 years ago"}, {"text": "Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!!", "author": "Joana Šliažaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB", "timestamp": "a year ago"}, {"text": "Poprawne.", "author": "Artur Michał", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB", "timestamp": "7 months ago"}, {"text": "Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius.", "author": "Laurynas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE", "timestamp": "6 years ago"}, {"text": "No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy bien!", "author": "Juan Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB", "timestamp": "6 years ago"}, {"text": "Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋", "author": "Agne Paliukaityte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE", "timestamp": "2 years ago"}, {"text": "Отличная музыка, много посетителей, небольшой минус за интерьер", "author": "Alex SkroBot", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE", "timestamp": "11 years ago"}, {"text": "Fainas klubas, draugiška atmosfera, rekomenduoju", "author": "Haroldas Daunora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE", "timestamp": "5 years ago"}, {"text": "Muy bien. Felicidades", "author": "Ivan M. C. 2", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB", "timestamp": "11 months ago"}, {"text": "geriausias klubas Vilniuje", "author": "Šarūnė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE", "timestamp": "a year ago"}, {"text": "Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜", "author": "Vytenis Jomantas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB", "timestamp": "3 years ago"}, {"text": "самий сільський клуб у світі", "author": "Shiny Box", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE", "timestamp": "3 years ago"}, {"text": "Viskas ok", "author": "gintautas Gailius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB", "timestamp": "8 years ago"}, {"text": "❤️", "author": "Haroldas Adamonis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcExPcFh3EAE", "timestamp": "4 years ago"}, {"text": "Muy chulo", "author": "Francisco Javier Cano Las", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE", "timestamp": "7 years ago"}, {"text": "Really good club, de locos", "author": "Francisco Elvira Iglesias", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE", "timestamp": "3 years ago"}, {"text": "👍", "author": "Ирина Безносова", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2cDlmNUV3EAE", "timestamp": "a year ago"}, {"text": "Gera mokykla", "author": "Benas Rukas", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB", "timestamp": "a year ago"}, {"text": "Супер", "author": "Махир Мухаммад", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE", "timestamp": "2 years ago"}, {"text": "Nieko gero..", "author": "new chere", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Antanas Jonušas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvbkwtWERREAE", "timestamp": "9 months ago"}, {"text": "", "author": "Andrew S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvb3BuMXdBRRAB", "timestamp": "9 months ago"}, {"text": "", "author": "Elizaveta Kudrytskaya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMdk1Ea3B3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Dovilė Ilčiukaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbHBiMC1RRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Rosangeles Oropeza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGeXJEMWt3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "J", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUlZUbG5jWGwzZFZZME5EZzFiVXRMVVVadWVGRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Olga Stelberg", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201T1ZIRTNXRzVqY2xKRFdEWk1NakpVVWtsdU9WRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Tomas Kvedaravičius", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xod2IxUnllR0pSWkZKQ1lqWndXR3B0U1ZOd1EwRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Marius Daukantas", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sclYzQnpTa1pUTkdJeE5GY3hUV2RMZDFOa2JFRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Evelina Grig", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pnNGVtOTFMVEZZTUZabFgzaHlNR1p4WjNwSk5GRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Evaldas Urbonas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wRlZEZFNXbmh0YkhkSmVqbDBVRGg2VUZKR1gwRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Andrew Mirams", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKTVZVMVVaME5JVEhFMFJtdGpjVFI0WkZCYU1GRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Péter Viczán", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VMcUZrX0x0enBMUHpBRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "Erik Jankovskis", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnTUNZM294eBAB", "timestamp": "8 months ago"}, {"text": "", "author": "abdullah asif", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvdTRYX3J3RRAB", "timestamp": "9 months ago"}, {"text": "", "author": "Kaushal Kishor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnNzhlUlBnEAE", "timestamp": "11 months ago"}, {"text": "", "author": "Afsheen Waqas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNFlYSUdBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Arminas Pov", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2N3FDazhnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Shiv Mishra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMzVERXVRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "tomas stankaitis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIaTY2c2hnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "danielius tamasauskas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5LXVUX0l3EAE", "timestamp": "a year ago"}, {"text": "", "author": "M Brad (mbradauskas)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNkaFBPeWJnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Saule Visniauskaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONDRqNmJ3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Anatolijus Filipovas", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxM3ZxZFVnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Audrius Petkevičius", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaXY2WE1REAE", "timestamp": "2 years ago"}, {"text": "", "author": "Mykolas Fedaravicius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaGZLWC13RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Sarvar Tukhtamishev", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCc3ZXZFVREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rūta Venckienė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcmFuUGZREAE", "timestamp": "3 years ago"}, {"text": "", "author": "D R", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtbk56OVJREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Agnė Juškėnaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtX19xcmx3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Laura Grube", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczZtLWZBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "carolina cherney", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VtR0lREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Verónica Hernández Savariego", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VIdkVREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rosa Maria Redondo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtM3VHcnFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Vitālijs Jakovļevs", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MTZyMVl3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "vllad1k", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNWZtUDNRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Степан Чириков", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPeWFYLVhnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Gabrielius Andrius", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPcWY3WkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Anna Lomonosova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPMnZHV0xBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Agnė Aleksandravičiūtė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXOXVEVENREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Ibrahim Al Mamoori", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXdHV2RVlREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Lukas Strelnikovas", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHN0wyWHNBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Gabrielė M.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2XzV5TnBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Evaldas Balakauskas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cm9DeU93EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Darek Liavsevic", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2b0piemV3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Titas Netitas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhOU11Y0pBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Darius Saročka", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxX28zOTRnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Sarunas Saduikis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDN1pUcEp3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "S Gilbert", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDcmVTYWFREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kristina GL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDMW9fdkF3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Itsonly Nata", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDb05IcHhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Martynas Riauba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OU42czRnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "saimonas Palkauskas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OUlMSzlnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Nadia Derendiajeva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUlLUUJBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Dalius Bastys", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUx6X0tnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Karolina Skurdelite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OUt5N3VBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Kiril Sss", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUl6ZU9REAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kasia Avižen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUl5MFRREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Cell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OU1URHB3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Evanas Grinvaldas (Ev)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4NkxYQWZBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Dia Diana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjOW9UYkpBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Anisija Leonovaitė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjOW9UVlB3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kristina Jakavonytė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjOUl5ek9nEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Melanie Montcler", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzOXF1TnhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Greta Bartuškaitė", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcHZtR2lBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Agnė (KatinasBeŪsų)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcllHR2xRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Jaroslav T", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNek1udkRBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Kotryna Fijalkauskaite", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNbzRqSmdnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sergej Troscenkov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwNV9pcFB3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "4 chebureky Prosecco Bar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrLUs3RnFBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Botagoz Sadvakassova", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZbGEtX2JREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Askin Kocak", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnb01XcURREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Marius Janulevičius", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBdmF1VFdBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Saulius Cepkauskas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRd2F6U2pRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "irakli kalmaxelidze", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRMzU3LTdnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Mindaugas Dauksys", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnaExLQ0d3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Aistė Nėniūtė", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNncmZtbTV3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Augustas Med", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBNU9UR3VRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Romualdas Bilinskas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBN01EbEdBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Damiano Papadimitriu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRN0pyTEh3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Christianas Konpan", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBdzU2UjhBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "algimantas bernatavičius", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnbWRlSkl3EAE", "timestamp": "8 years ago"}, {"text": "", "author": "Marius Mariukas", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNBcWVaUxAB", "timestamp": "8 years ago"}, {"text": "", "author": "Šarūnė Siautėlaitė", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBenJYOGZREAE", "timestamp": "8 years ago"}, {"text": "", "author": "Петя Карпович", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBMEpDODN3RRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Ruta Rafaele Tumanovaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRM18tY2NREAE", "timestamp": "8 years ago"}, {"text": "", "author": "Vytautas Povilas Jurgaitis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRenRETGNnEAE", "timestamp": "9 years ago"}, {"text": "", "author": "Laurynas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBdTlPUUp3EAE", "timestamp": "9 years ago"}, {"text": "", "author": "Paul Ratner", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBczRHazlBRRAB", "timestamp": "10 years ago"}, {"text": "", "author": "Vladas Vaitkus", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnXy1TYUdREAE", "timestamp": "11 years ago"}, {"text": "", "author": "Aleh Kviatsinski", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnc1o2WWhBRRAB", "timestamp": "11 years ago"}, {"text": "They only have the phone scan option for the drink menu. I left immediately.", "author": "Antony Maiolla", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoWE5sRjNaM0ZYYlhBM2NrNVphVzF3YjNsRVIwRRAB", "timestamp": "a month ago"}, {"text": "Yesterday we were looking to have some fun and decided to visit this club. At first everything seemed kinda okay, although, we missed the smile on staff’s faces. Later on, I wanted to take my coat back and third time the woman, who was working at the coat check rudely refused to give my coat back. Excuse me, but since when there is some kind of limit of taking your belongings back!? We were also incredibly dissatisfied with the staff at the bar. We asked for a San Francisco cocktail and a bartender did not even know what that is and told us to look at the menu. We were trying to make a chat and asked what they would recommend or what is popular here, however, the girl from the bar coldly repeated to look at the menu. Speaking of the music, the taste of music itself was otherwise okay, but it was obvious that the Dj was without experience and doesn’t understand the basics of Dj’ing (Synchronizing 2 songs at once, going from one song to the other so that there is no pause). It felt like the music was just going by itself from the playlist and all the dj did was turning some effects before the drops and thats it. Overall, the environment its self is pretty cozy and chill but the service is tragedy. People working there clearly hate the job and do not give a damn about customers.", "author": "Tomas", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURadzdiY01BEAE", "timestamp": "2 years ago"}, {"text": "I've been to many gay venues across Europe and around the world. Based on my experience of Vilnius thus far I really hoped this was going to be a great venue, unfortunately this is not the case. It's small overcrowded and full of young well dressed gays who, omit an overwhelming sense of drama and self entitlement. The staff were mostly friendly which was the only positive. As me and my friend left we meet a young man who was dressed beautifully in a mini skirt and tank top, unfortunately he was refused entry. This is one of the most blatant forms of discrimination, I have witnesses personally at gay venue. He was not drunk, he was not loud and he left rather embarrassed as result of his treatment. Honestly they could do better and so could you by, spending your money elsewhere.", "author": "Eamonn Maguire", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPdnMzbEhBEAE", "timestamp": "3 years ago"}, {"text": "I went to Soho club last night to watch the dramatica drag show, and while the show itself had several good performances, I was seriously disappointed by the venue. The organisers charged 20 euros per ticket but the club was so packed that everyone was standing shoulder to shoulder, and the crowd flowed out from the stage area into the corridor so it was nearly impossible to get a good view of the stage, and it was incredibly hot. I could only stand to watch one third of the show as I couldn’t squeeze through the crowd in the first segment so there wasn’t a single place I could stand where I would be able to see more than a quarter of the stage. Later, I managed to find a decent spot near the stage only because there was a break and most people went out to get drinks from the bar. After I secured my spot, I was hopeful that I would finally enjoy the show but watching through the second segment of the show was torture, I had barely any space to stand, I still could only watch the performers from the waist up because I couldn’t see over the people in front of me (and I’m 5’5, average height) plus it was so hot I was feeling faint. After that, I left not watching the third and final part of the show. This is just an act of pure greed on the part of the venue owners, it is their job to set strict limits on the venue capacity and ensure a comfortable viewing experience for everyone, instead it became not only a waste of money but more concerning, a fire hazard. I would not recommend going for any event they organise.\\n\\nEDIT: In response to the reply from SOHO, I'd like to state that nowhere in my review did I mention that I expected a designated seat. I expected to be able to watch the show fully, and that's the minimum requirement. In addition, it shouldn't matter what time I enter the event as a paying customer. The event was obviously so over-booked that it was impossible to have a remotely decent view of the stage.", "author": "Heidi Kwang", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtbzdPYTlRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Definitely overbooked their venue for the Dramatica event, quite a few people couldn't even get into the area/room where they could see the show (I'm not talking a bad view, I mean absolutely no possibility of seeing it at all). I paid for a ticket to see the event, not for a chance to see the event.\\n\\nIt would be better to charge a little more for tickets instead of selling too many.", "author": "Chlo", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtdTRfVnh3RRAB", "timestamp": "3 years ago"}, {"text": "Do not buy cocktails in Soho - expensive and not worth your money. Bartender is making drinks out of your sight, we did not see what liquer was poured into the drinks, and if it was measured. Taste was weird and awful, the discription did not mached the outcome. We had aperol spritz and old fashioned.", "author": "Ieva Bagdonaitė", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlaFBTZWRnEAE", "timestamp": "3 years ago"}, {"text": "I’m the gayest of the gays and this place sucks. Weak drinks and rude DJs with bad music no one enjoys.\\n\\nStraight nights suck but worth exploring in Vilnius.", "author": "Joseph Duggan Lyons", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0N3NHcTBRRRAB", "timestamp": "6 years ago"}, {"text": "Police camera near the entrance. The same ones are in central police station cell blocks. Also if you speak your mind, amount of state and local persecutions is staggering in this country.", "author": "abc", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldDdPcnlnRRAB", "timestamp": "3 years ago"}, {"text": "Niekad nerašau, blogų atsiliepimų, tačiau ši kartą jau nebegaliu. Jau kelintą kartą atvykstam su draugų kompanija, praleisti linksmai ir saugiai vakaro ir kaip ir viskas būtų super bet yra vienas Bet - muzika. Aš suprantu kad tai skonio reikalas, tačiau kiek galima šaipytis iš klubo svečiu? Visiškai nesvarbu koks DJ bebūtų, atrodo, jog yra irašytos ~100 dainų ir jas leidžia tik kiekvienas iš vis skirtingo galo. Atrodo, jog be Lady gaga, Rihanna, Geltonos - nieko daugiau nėra. Tikriausiai galvojate kodėl rašau, \\"biedavojuosi\\"? Todėl kad pastoviai už įėjimą mokama po 6€ (mūsų tarkim 4) -24€\\nTuomet visi pasiemam po kokteilį ~44€\\nBandai pasidaryti kad būtų linksmiau - pasiimam dar po vieną ~44€\\nBet galiausiai vistiek lieka demotivuoti ir net suirze, nes tas pačias dainas per kelias valandas jau po kelis kartus girdejom ir jos tikra atgyvena. Išvada - labai norim ten grįsti nes atmosferą kaip ir gera, bet atbaido muzika. Tad tikiuosi atsinaujinsit grojaraščius ir pakviesit pasišokt", "author": "Helga", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201V2FGUXpibGRvT0dKdmFsRkJaR0pvUWw5VldrRRAB", "timestamp": "a month ago"}, {"text": "Sou brasileira. Fui em uma sexta com mais dois amigos homens e gays, um brasileiro e um holandês. Estava conversando em português quando chegamos na porta e o segurança, um rapaz grande e alto estava abrindo a porta para uma garota sair, nos viu. Ele começou a dizer que não podíamos entrar. Nao falamos Lituano mas ele começou a apontar para mim, uma mulher, e balançar a cabeça dizendo \\"nao\\". Falava em Lituano algo mas não entendíamos e tentamos falar em inglês. Perguntar o que estava acontecendo, pensamos que a balada não aceitava mulheres mas como uma estava saindo, estranhamos. Ele chamou um rapaz que falava inglês e em menos de 10 segundos de conversa liberou nossa entrada. Ele disse que o segurança dizia que eu não podia entrar por estar muito bebada, mas não havia bebido e acabado de descer do Bolt. Foi tudo muito estranho, pois nem falamos com ele e já estava bravo não querendo conversa e dizendo que não podíamos entrar.\\nBom, entramos mas foi bem estranho e não ficamos à vontade. Logos fomos embora e um pouco receosos em relação ao segurança.\\nSei que em situações assim fica questionável se realmente não estávamos fazendo algo \\"ruim\\" mas estávamos conversando em um volume baixo, em português, sobre como o uber foi atencioso.\\nPareceu algo extremamente pessoal. Sobre nossas roupas: calça, camisetas e casacos como todo o resto da balada.\\nAlém, a balada fede a suor.", "author": "Dani Viajante", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwelRITnpZWFp0TjFCdU9UWlJkV05WZWkxQmMzYxAB", "timestamp": "3 months ago"}, {"text": "Naujųjų metų išvakarėse stovėjau prie įėjimo ir tiesiogine to žodžio prasme jūsų kolonėlė nukrito man ant galvos ir sukėlė galvos traumą. Iš karto pradėjo bėgti kraujas, ant galvos atsivėrė žaizda.\\nSituacija buvo itin pavojinga – tokio tipo įranga neturi būti tvirtinama taip, kad galėtų nukristi ant žmonių. Sugadino visą šventinę nuotaiką ir dar dabar negaliu pilnai suvokti kas įvyko. Žiauriausia, jog žmonės tiesiog stovėjo, žiūrėjo ir nieko nedarė.\\nTikiuosi, kad klubas rimtai įvertins saugumo klausimus ir imsis priemonių, kad tokie incidentai daugiau nepasikartotų.", "author": "Edvinas D-as", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tONmFrUTVYMDUwVEU1SFZsVnJZMUZ0VWpaaExWRRAB", "timestamp": "4 weeks ago"}, {"text": "Helovyno vakarėlis šiais metais soho klube labai nuvylė. Kiekvienais metais ateinu su kostiumu ir visada į klubą įeidavau nemokamai. Šiemet aš ir mano mergina atėjome į klubą su kostiumais, tačiau mums buvo liepta susimokėti. Darbuotojas pasakė, kad kiti klubo lankytojai ‘įdėjo daugiau pastangų’, nors prieš pat mūsų akis nemokamai įleido žmones be jokių kostiumų ar makiažų. Tada darbuotojas pasakė, kad pinigus iš žmonių ‘be kostiumų’ gauna pats ir susimokėjome ne į įprastą kortelių skaitytuvą, o į darbuotojo telefoną. Nebūtų gaila sumokėti, tačiau labai nesąžininga, kai atsitiktiniu būdu nusprendžia kas turės susimokėti už įėjimą. Pasakėme kad mes įdėjome daug pastangų į aprangas ir makiažus, tačiau mums buvo pasakyta, kad ‘nesimato’. Būtų protingiau bent helovyno naktį pastatyti žmogų labiau nusimanantį apie tai kiek laiko ir pastangų reikia tam tikram kostiumui. Nepaisant to, darbuotojas dar pridūrė, kad įleistų nemokamai, jeigu būtume lesbietės. Pasakėme, kad ir esame, bet jis atsakė kad jeigu būtume lesbietės - viena iš mūsų turėtų būti vyriška. Labai liūdna susilaukti tokių stereotipinių homofobiškų komentarų klube, kuriame maniau kad visi gali būti savimi be spaudimo apsimesti tuo, kuo nėra. Tikiuosi, kad tai buvo tik labai nevykęs pajuokavimas, tačiau niekada nesitikėjau tokio išgirsti iš soho klubo darbuotojo. Vėliau klube iš kitų lankytojų išgirdome, kad juos įleido nemokamai be kostiumų, nes jie yra gėjai. Mūsų neįleido nemokamai dėl mūsų seksualinės orientacijos. Nuo kada kažkoks vyras sprendžia kas yra lesbietė, o kas ne? Liūdna, kad net LGBT klube nepavyksta išvengti mizoginijos iš vyrų. O vakarėlio aprašyme parašyta, kad įėjimas nemokamas su dress kodu, nepatikslinta kiek valandų reikia užtrukti darantis makiažą ar kokios seksualinės orientacijos reikia būti, kad pretenduoti į tą nemokamą įėjimą. Atrodo klubas įstrigęs 2000 metais tiek su savo pasenusiais ir neprašytais stereotipais, tiek su playlistu. Liūdna, kad vietoje, kurioje anksčiau galėdavome jaustis saugiai ir būti savimi, to patirti nebegalime.\\n\\nAtsakymas: deja mano atsiliepimas nėra tik interpretacija, jis yra paremtas faktais. Mūsų draugė, kuri nebuvo apsirengusi jokiu personažu buvo pasiruošusi susimokėti už įėjimą - į klubą pateko nemokamai. Ji tikrai nebuvo jokiame svečių sąraše. Mes buvome apsirengusios personažais nuo galvos iki kojų ir kiekvieną aprangos detalę iš anksto apgalvojome, pirkome naujus rūbus ir aksesuarus dėl kostiumų. Savo nuotraukų kelti į soho klubo atsiliepimus ir viešinti savo tapatybių nenorime, jūs tai turėtumėte suprasti labiau, nei bet kas kitas. Dėl diskriminuojančio ir mizogonistinio komentaro, kurio susilaukėme iš jūsų darbuotojo - taip ir neatsakėte. Toks komentaras iš LGBT klubo darbuotojo visiškai nėra adekvatus ir priimtinas.", "author": "Cat Lover", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swNFIyUjFNalpTYlRab2NHb3RjRXB1UXpKNGRGRRAB", "timestamp": "2 months ago"}, {"text": "Kodėl reklamuojatės kad helovyno vakarėlis, su ,,head-to-toe\\" kostiumais nemokamas įėjimas, o atėjus su tokiais kostiumais ponas prie įėjimo ne tik liepia mokėt, bet ir išsityčioja kad ,,nepakankamai geri, mačiau geresnių\\"? :) Jums atrodo norėsis žmonėms kitą kart čia ateit po tokio malonaus elgesio?", "author": "R. Violetovienė", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzMFVGUmtOR0YzWlROVGVrOXlPVGhITkdwdFFYYxAB", "timestamp": "2 months ago"}, {"text": "Кучка малолеток которые тащатся и орут от кривляний транса на сцене. Само шоу вообще ниочем. Вход 4€ вроде бы, сдерли 6. По окончании шоу музыка не музыка, места потанцевать нет", "author": "Serhii Diachuk", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlXzdTM21nRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Nerekomenduoju šio klubo, nebent jei norite save pajusti šiukšlėmis. Brangiai sumokėsite už kokteilius iš ledukų, šiek tiek kolos ir alkoholio pėdsakų, apsauga atsitiktiniai pasirenka žmones kuriuos išmeta iš klubo be visokios priežasties. Tai jei norite blogios nuotaikos ir prarastų pinigų welcome to Soho.", "author": "Denys Poltoratskyy", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOF95bmxnRRAB", "timestamp": "3 years ago"}, {"text": "Baisus klubas, nevertina savo pastovių klijentų. Susimoki, o vėliau apsauga tave išmeta atsirinkimo budu. Apvemta salė, stiklai. Niekas nieko netvarko. Savininkas labai geros nuomonės apie save. Žiūri iš aukšto.", "author": "Leo Leo", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCODhLZENREAE", "timestamp": "3 years ago"}, {"text": "самий сільський клуб у світі", "author": "Shiny Box", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNld0tTN0tREAE", "timestamp": "3 years ago"}, {"text": "Nieko gero..", "author": "new chere", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHd3FpcWVnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Marius Daukantas", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21sclYzQnpTa1pUTkdJeE5GY3hUV2RMZDFOa2JFRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Sarvar Tukhtamishev", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCc3ZXZFVREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Lukas Strelnikovas", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHN0wyWHNBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Greta Bartuškaitė", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcHZtR2lBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Askin Kocak", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnb01XcURREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Augustas Med", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBNU9UR3VRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "algimantas bernatavičius", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnbWRlSkl3EAE", "timestamp": "8 years ago"}, {"text": "", "author": "Петя Карпович", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBMEpDODN3RRAB", "timestamp": "8 years ago"}, {"text": "This is The Gay Club in Lithuania. Pretty good crowd, interesting venue and good drinks.\\n\\nTheir events are amazing and plentiful. 100% recommend to visit for a drag show or a live event.\\n\\nThe reason for two stars is the fact that the dance DJs they book are pretty poor.\\nThat fact ruins the atmosphere.\\n\\nLast time I danced to a good DJ set there was in 2015 😞", "author": "Aleksandr Panzin", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQbnFHcFNREAE", "timestamp": "a year ago"}, {"text": "The bartender woman is just terrible. I received my cocktail in a dirty glass with liquid running away because she was lazy shaked just using the glass. She didn’t measure the proportion, and I had a feeling that she dropped only leftovers cause bottles were literally empty. 85% of glass was ice. That was too much. And finally she took with bare hands orange slices and put into my cocktail (with hands that were keeping money, cards, who knows what else) I was literally shocked and about to throw up. That’s disgusting and unacceptable. No respect to clients. Avoid her, awful experience. Though place is rather cozy", "author": "Daria Zaikina", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VLanEzNGlreEtDZERBEAE", "timestamp": "8 months ago"}, {"text": "i was harassed by a drunk man in Soho, and as the security couldn't bounce him out right away, he came back to shout at my friends. i didn't feel safe that night, please do better", "author": "Astrantius Mon", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsMU1fOGR3EAE", "timestamp": "2 years ago"}, {"text": "Vilniui ir Lietuvai ši vieta yra labai reikalinga – nuoširdžiai vertinu įkūrėjus ir visą komandą už pastangas kurti saugią ir atvirą erdvę queer bendruomenei. Tokios vietos reikšmė yra didžiulė, ir ją tikrai norisi palaikyti, gerbti.\\nVis dėlto klubo vidinė kultūra ir renginių organizavimo lygis nuvilia. Atrodo, kad vienintelis skirtumas nuo paprasto „marozų“ tipo klubo – daugiau vaivorykščių. Stebina, kad nėra tylių zonų ar erdvės pokalbiams, o muzika groja be pertraukų kurtinančiu garsu. Nakties pabaigoje balsas tiesiog išrėkiamas bandant komunikuoti, nes vienintelis būdas susišnekėti – šaukti vienas kitam į ausį (net užsisakant prie baro barmenas duoda ausį). Jei jau toks konceptas, bent jau garso kokybė turėtų būti aukštesnė: bosas maksimaliai užkeltas, žodžių ir vokalų nesigirdi, o atmosfera primena pigų kaimo klubo ir žemos kultūros vakarėlį.\\nŠviesistas ir garsistas matyt praktiką atliko ten pat. Per 3 valandų pasirodymą šviesos nuolat vėlavo apšviesti atlikėją, visiškai nederėjo su muzikos pokyčiu ir nesusichronizavo su choreografija (klausimas ar repeticija bent buvo). Atrodo, kad operatoriai paprasčiausiai nesusikalba arba neturi patirties.\\nFotografų ir komandos elgesys taip pat kelia klausimų: fotografai stumdė žiūrovus ir užėmė vietas, kurias žmonės bandė išlaikyti po pusvalandį tam, kad galėtų matyti sceną(labai sunku matyti). Jei nėra vietos fotografams, galbūt reikėtų ieškoti kitų sprendimų, o ne žiūrovų sąskaita.\\nSmulkmenos, kaip netvarkingas rūbinės darbas - užrašo kabyklos numerį uždengiant giveaway numerį ant apyrankės irgi prideda prie bendro chaoso įspūdžio. Visa atmosfera labiau priminė agresyvių paauglių vakarėlį nei šiuolaikišką queer kultūros centrą.\\nTikiuosi, kad tai tik laikini organizaciniai iššūkiai ir ne aukščiausias bendruomenės potencialas. Labai norisi tikėti, kad Vilnius gali turėti kokybišką, profesionaliai organizuotą ir pagarbą lankytojams demonstruojantį gay klubą, nes, jeigu ne tai, dėl pasirodymų grįžti ir palaikyti norėtųsi.", "author": "Tadas V", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KSlpVWlRXRXc1TkRsbk1sbzJNbnB5VUMwMWVFRRAB", "timestamp": "2 months ago"}, {"text": "Neadekvačios kainos, 0.33 alaus butelis kainuoja 6.5 EUR", "author": "Aurimas", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJcjZxN0xBEAE", "timestamp": "9 months ago"}, {"text": "Месту срочно необходим ремонт. Грязно очень. Музыка и выпивка хороши. Контингент - весёлые и интересные, яркие люди.", "author": "Yuliya Betsiankova", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoOWRMLUVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Anatolijus Filipovas", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxM3ZxZFVnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Christianas Konpan", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBdzU2UjhBRRAB", "timestamp": "7 years ago"}, {"text": "We were charged for entrance telling if you are 2 people you have to pay, if you are 3 - it's free.\\nI feel sorry for the administrators, it's quite strange approach.\\n\\nThank you for your response. I haven't visited you for more than 5 years, been couple of times in total.\\nThe system you have is stupid and discriminatory. I support clubs by buying drinks and coming back. No need for manipulative bullshit.\\n\\nIts a never seen system when a single person or a couple is less welcome than a group of 3.", "author": "Jonas Šimeliūnas", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GeWJYRnlWRWt6VG1SUk5FaHZZakpyZWpsVmFIYxAB", "timestamp": "Edited 4 months ago"}, {"text": "Nice club with great atmosphere but very slow bar service. I don’t know, perhaps in America it’s only fast, but still not familiar!", "author": "Daniel Clark", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlc3MyLW1nRRAB", "timestamp": "3 years ago"}, {"text": "Samedi soir début novembre. Nous sommes arrivés à 23h30. Peu de monde (voir photo). Le public est varié. Quelques filles aussi.\\n\\nLe personnel est très accueillant et gentil.\\nIl y a une salle boîte de nuit pour danser.\\n\\nContents d y être allé pour supporter un établissement LGBT", "author": "Jc b23", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzOUpxTm5BRRAB", "timestamp": "a year ago"}, {"text": "Neblogas klubas, muzika gera, bet BARMENĖ - blogiausia kokią tik esu sutikus. Atrodo specealiai ignoruoja merginas prie baro ir aptarnauja tik vyrukus, priėjus eilę liepė eit shotų prašyti pas kitą barmeną, ir prieš nosi pila vaikinams shotus, nežinau kuo jai taip nepatikau, bet aptarnavimas 0/10 tiek iš komunikacijos tiek iš profesionalumo", "author": "Živilė Jasinevičiūtė", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwNWVQdXRnRRAB", "timestamp": "2 years ago"}, {"text": "Fui un sábado por la noche y la verdad es que estaba bastante vacío. El ambiente y la música regular.\\nLa estrada cuesta 6€ y cada cerveza otros 6€, es decir que tampoco es precisamente barato.", "author": "Diego", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMel9HWWZBEAE", "timestamp": "a year ago"}, {"text": "Viskas gerai, galima linksmai praleisti laika, taciau reiketu pagalvoti apie apsaugos darbuotojus. Papraseme su drauge pasiimti cigaretes is striukes, tai jie mums pasiule palikti kluba.", "author": "dontlookatme", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvaDVIa3RBRRAB", "timestamp": "6 years ago"}, {"text": "Klubas fainas😊\\nBet ŽMONĖS, ar galit neapmyžt tualeto dangčiu... kaip kiaulės", "author": "Emilija Zenovic", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1d2VycjZRRRAB", "timestamp": "3 years ago"}, {"text": "Gera mokykla", "author": "Benas Rukas", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5dWRmcW93RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Ibrahim Al Mamoori", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXdHV2RVlREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Dominykas Miežinis", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzZ3NEQWx3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Aleksandr Lebedev", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBMEpieFZnEAE", "timestamp": "7 years ago"}, {"text": "Decided last minute to come here with a friend on a Saturday night around 1:30 am. The music honestly wasn’t too bad! I was scared, thinking it would be local Baltic music playing or super pop music. But, those songs were few and they played a good variety of regular pop music and some hip hop too which was nice, my friend and I were singing along. The bartender here is top notch! The bar is extremely clean and you can see how thorough he is with properly measuring every ingredient in the drink and sanitizing each bar tool afterwards.\\n\\n6 euro entry but they gave me a free entry ticket to return next weekend, but I won’t be in town. Drink prices are reasonable I guess, paid 10 euro for a Negroni and I was sleepy so I had a Black Russian and a White Russian, those were only 8 each.\\n\\nJust wish the crowd was larger! Especially for a Saturday night but the crowd had good energy, I’ve that they have events twice a month with a bigger crowd- I guess that’s when they open the other section with the stage.\\n\\nOverall, I had an okay time- friendly staff, good music and well prepared drinks.", "author": "Hak Bén", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURibXZPbHpnRRAB", "timestamp": "a year ago"}, {"text": "Yeah the other review was correct, every surface of the bathrooms was indeed really really wet. Nice and clean, just the wettest bathroom I’ve ever seen in a public place.", "author": "Ciarán Meers", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5NWNWcHZMVkF4TTI5d2FUZFBYM041ZFVsR1pYYxAB", "timestamp": "4 months ago"}, {"text": "Was hard to see the performers and the drinks and tickets were expensive.\\nThe bathroom was also just wet like someone had just covered every surface in water? Seems strange, I've seen swimming pool bathrooms less wet.\\n\\nBut on the other hand the drinks were STRONG and what I could see of the performance was amazing. And the bathrooms were clean... Just wet\\n\\nThe staff was very nice and they were well equipped for anything. Changed my phone while watching the performance, had a good time.", "author": "fetlock flowers", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwUll6UXhjMFpMTUZCNVZWUlFRWE10TW14RGFsRRAB", "timestamp": "7 months ago"}, {"text": "If you want to see a different kind of entertainment night, you can choose this place. it has a small stage but we didn't like their music very much", "author": "Merve Esra", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtam82VDZ3RRAB", "timestamp": "3 years ago"}, {"text": "I was there in Friday night. Quite crowded, good music, nice guys. A little expensive the cocktails, but the entrance was very cheap.\\nAbsolutely a good place to have a gay night in Vilnius.", "author": "Quinto Fabio Massimo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBbXV1cXpBRRAB", "timestamp": "8 years ago"}, {"text": "I had fun. Bar service and coat service was good and the club was kept clean. The music was a good mix, but too loud for the small room. The club wasn’t very full, even after 1am.", "author": "Pune Thomas", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMzZiRzhBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Great gay club in the city, lots of young people, music is also mostly really nice! Only one minus that bartenders could at least try to be friendly. For the rest, it's a cool party!", "author": "Yuri Zanozin", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHbGRmNzh3RRAB", "timestamp": "Edited 2 years ago"}, {"text": "The worst long island on the Planet!\\n\\n....But the best reaction ever! After negative opinion kindly Bartender served us free better one long islands. Thanks guys!", "author": "Wojciech Maciej", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRdXN5dU5nEAE", "timestamp": "7 years ago"}, {"text": "Salė prie rūkomojo nevėdinama, pagrindinėje salėje trūksta oro", "author": "Jelena Šulžickienė", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGSVRuTkVOME15UzBWUWJUTlpSMnRJTUZkR1kxRRAB", "timestamp": "4 months ago"}, {"text": "Гарне місце для тих хто хоче знайти себе!", "author": "Karina Petrova", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25JMWNEUkRNVlZVVmtvelVESkJaMU5SWlVnM1kxRRAB", "timestamp": "4 months ago"}, {"text": "Poprawne.", "author": "Artur Michał", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOd1VrcDVXbVZrUVV0TVJUbE1hMnRJZDBneFRFRRAB", "timestamp": "7 months ago"}, {"text": "Отличная музыка, много посетителей, небольшой минус за интерьер", "author": "Alex SkroBot", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRaXJfalN3EAE", "timestamp": "11 years ago"}, {"text": "Viskas ok", "author": "gintautas Gailius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBOGNENndBRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Péter Viczán", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VMcUZrX0x0enBMUHpBRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "Mykolas Fedaravicius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaGZLWC13RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "D R", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtbk56OVJREAE", "timestamp": "3 years ago"}, {"text": "", "author": "S Gilbert", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDcmVTYWFREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kotryna Fijalkauskaite", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNbzRqSmdnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Botagoz Sadvakassova", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZbGEtX2JREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Marius Janulevičius", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBdmF1VFdBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Aistė Nėniūtė", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNncmZtbTV3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Marius Mariukas", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNBcWVaUxAB", "timestamp": "8 years ago"}, {"text": "", "author": "Šarūnė Siautėlaitė", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBenJYOGZREAE", "timestamp": "8 years ago"}, {"text": "Last Post (8/15 & 16/2025): Highly recommended to come visit and have fun with open-minded and positive attitude. I love this place. I came here twice in a row. Open dance floor and dance moves. Great vibe and great DJ. Friendly staff and the bar owner were incredible amazing person. Definitely, I will come visit again when I'm in the country. I already missed this place ☹️", "author": "Dalton James Cryztoff", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKamRUZGhTRVppYmtkclkyZFlNa1JRYVMwNVNGRRAB", "timestamp": "4 months ago"}, {"text": "Nice pub with great music! I really enjoyed my time there.", "author": "Sevda K.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25jM1lrWTRablpwZVVoVGFUTmtlSFp0WkUxYU5sRRAB", "timestamp": "a month ago"}, {"text": "Spent Saturday night here and it was a blast! Hats off to the dj for blasting catchy pop music for hours without there being a dull moment. The bartenders are fast and the service is good. Great atmosphere in the club. Would recommend it to anyone looking for a good night out in Vilnius.", "author": "Eirik Johansen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aWFFtZHdWRWN5ZURWMFJYbHpWMVYxYkZoWmRsRRAB", "timestamp": "7 months ago"}, {"text": "Always a good vibe and amazing atmosphere!! Great guilty hits and uplifting mood for dancing. The staff and customers are friendly", "author": "Ugne Mosinaite", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GMk4yZzFkbWRUUldWdVRqUnhUblZsTlcxMVdtYxAB", "timestamp": "4 months ago"}, {"text": "The one place you can dance at and not care about what anyone’s thinking because EVERYONE is welcome?? I loved this place.", "author": "Batonas Tvirtas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tzMWNGWldhbHB2UTNSdGJETTFjMWQxZG1GeE1XYxAB", "timestamp": "2 months ago"}, {"text": "Nice place, great events!", "author": "Yana Kanapickiene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CTVdVZDRhWGxCZUhFeFRUYzNTV0pVVURSWVRrRRAB", "timestamp": "3 months ago"}, {"text": "Greatest club in Litauen love it like it best place to go and have fun perfect DJ\\nSUPER FIVE STAR LIKE THE SOHO IN LONDON YEAAAAAH", "author": "AndrewG GE", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cnVDTzZBRRAB", "timestamp": "2 years ago"}, {"text": "Door charge plus coat check was 6 euros quite fair. Not packed but great vibes love it. Friendly bartenders and ticket person. Music was good it was quite a mix so depends on your preference. But generally quite good. Quite young crowd. Mixed good for an Eastern European country. Definitely visit if you’re a foreigner. Drinks are cheap!", "author": "Anthony Lava", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4OVB2VmVnEAE", "timestamp": "2 years ago"}, {"text": "I Was there on weekend ,nice mix of People, and really nice service, i forget my Phone at the veniu and they was really helpfull found it and giving it back", "author": "Jose", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25KRmJtNTFjVVJTWDJwUVdEZHlPRFY1YjNCbWRIYxAB", "timestamp": "6 months ago"}, {"text": "Great queer club! Excellent drinks, cool staff and a good dance floor.", "author": "Nicolas Dula", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURud2RPZ2NnEAE", "timestamp": "a year ago"}, {"text": "Great place, with good atmosphere. Either you are the queen on the dance floor, or prefer a more chill vibe - you’ll find different areas for your mood.\\nI ended up losing my phone, but they contacted me the next day so I could come right over and get it back.\\nDefinitely a place I’ll visit again if I’m in Vilnius.", "author": "Dina Mihle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteVlMTm5BRRAB", "timestamp": "4 years ago"}, {"text": "Greatest club in Lithuania,best place to go in the midnight.", "author": "Daniel Aston", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyNV9qc0J3EAE", "timestamp": "a year ago"}, {"text": "This was my first time at any drag show and it’s definitely not the last. I was so impressed by the artistry, the effort, the professionalism, the immaculate positive vibes and I’ve never left a party more energized. I don’t think I’ve ever felt safer and happier at a club. I’m not religious but Drag at soho is my new church. Definitely go when you have time! (Plus the bartender‘s cute)", "author": "Alicia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4M0p2VjVRRRAB", "timestamp": "2 years ago"}, {"text": "Great place to relax- does not matter u are gay or straight. Strong coctails, great music, relaxing athmosphere.", "author": "Rokas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNencyWS1lMExmSzh3RRAB", "timestamp": "7 months ago"}, {"text": "Soho is the only club with quality in Vilnius. I think the only problem the reviews talk about which is correct is that the crowd there can seem overall rude, but as I see most these reviewers are tourists. Guys, Lithuanians in general aren’t the most easy going people. So please don’t be offended if you can’t find people to talk to very easily. The club however definitely deserves a 4.5+ rating.\\n\\nIf you’re a tourist who wants to visit, please have an open mind, and be patient. Grab a friend with you when coming, talk to people in the smoking areas. It won’t be super easy but you will get some great connections there for sure :)", "author": "Tigran Avagyan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1OGMzaERREAE", "timestamp": "3 years ago"}, {"text": "I had the best night in my life\\nAmazing atmosphere\\nEveryone is Super friendly\\nCan’t wait to come again 💕", "author": "MOHAMMED MSAOURI", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOcmdsLUNQOU5iZ3RRRRAB", "timestamp": "7 months ago"}, {"text": "I really love that place! Staff is very friendly! And ofc the best of the best bartender is Miglė! ❤️ She’s soo kind and very joyful! ❤️ Recomend to visit for everybody! 😎", "author": "Jelly Bear", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmcXYzYjB3RRAB", "timestamp": "a year ago"}, {"text": "It was a winter snowy day so not to much people but still crowded, bartender was ok and drunk, music was ok and sober, smoking area is inside, but as the only lgbtq club, the people deserve more than just ok so we would like to comeback.\\n\\nI gave it 5 stars for at least trying to be for the community and being the only one, still.", "author": "Ofir Sharon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWMGRyd2hRRRAB", "timestamp": "2 years ago"}, {"text": "I didn't expect to find much lgbt nightlife in Vilnius, but this club hit the mark! It wasn't too crowded while I was there, but I easily met some great, friendly people, and had a good night dancing, drinking, and having fun.", "author": "Netia Ingram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDdllTTDdBRRAB", "timestamp": "5 years ago"}, {"text": "The best club in Vilnius. Always good vibes. Very polite and professional staff. They make the best events!!!!this is the place you must visit if you are in Vilnius! :)", "author": "Karolis Ruzgas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcy1ucWJREAE", "timestamp": "3 years ago"}, {"text": "Such a vibe! I was there for a party called Dramatica… and the people were so friendly, the drinks were strong… and I especially liked all the different area’s in the club. I went back the day after 🤗", "author": "Sander B", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtemN6VkJREAE", "timestamp": "3 years ago"}, {"text": "The best place in Vilnius to party. Everyone is open minded and fun! Such a great atmosphere, staff is extremely friendly 😄", "author": "Benita Guzikaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNklQZHlRRRAB", "timestamp": "7 years ago"}, {"text": "Great club for gay and not so. Dramatica show blew... my mind.", "author": "Skirmantas Mikuckis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlMnVHWGdBRRAB", "timestamp": "3 years ago"}, {"text": "I went a few times to that place. Really liked the atmosphere. Barmaids are really friendly but especially I want to say thank you cause I had lost my phone and you guys just picked it up and saved my night so thanks a lot!", "author": "Julie", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNMjRpZzFRRRAB", "timestamp": "6 years ago"}, {"text": "The best place in Vilnius for sure. Safe, friendly, stylish, pleasant to stay at an enjoy the atmosphere. Huge recomendations!", "author": "Natalija Rankauske", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4NHZHeDNRRRAB", "timestamp": "5 years ago"}, {"text": "Some very nice people. Several big rooms, and good prices on drinks. A seperate living room with fashion tv show on whole wall. Friendly and safe. Loved it.", "author": "hvaerdette", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBcWY2OS1nRRAB", "timestamp": "Edited 11 years ago"}, {"text": "Let's go", "author": "Adomas Grigolis", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GYWRWWlZSRVpNUnpoUE5XSXhORmMxTFVWYVMyYxAB", "timestamp": "5 months ago"}, {"text": "Simply love this place. The owner is such a nice person with such great ideas. Love the place as such, decoration, music, drinks, people, all perfect,", "author": "Roberto Faria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnLVlxbS1nRRAB", "timestamp": "9 years ago"}, {"text": "Very friendly staff, good drinks and the club was very clean. The Dramatica Show was amazing!", "author": "LéLé Cocoon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtM2RuT3NBRRAB", "timestamp": "3 years ago"}, {"text": "Amazing place, worth visiting! Cocktails are the best and atmosphere is great. I highly recommend visiting this place!", "author": "Gabriela Stankevic", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCdDRyZDBBRRAB", "timestamp": "3 years ago"}, {"text": "Nice friendly club. People who working there very friendly and polite", "author": "Md Arman Hossain", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzeGM2cml3RRAB", "timestamp": "a year ago"}, {"text": "The space is great and the atmosphere is welcoming. We also got outstanding service from the bartender! :)", "author": "Sari S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4amRic1dBEAE", "timestamp": "5 years ago"}, {"text": "Excellent service. Even saw management take care of customer concerns. As long as you dont mind LGBTQ this is a great place to spend a friday.", "author": "Mindaugas Vilkas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvenFlQXh3RRAB", "timestamp": "6 years ago"}, {"text": "Excellent music and atmosphere", "author": "Rhoda V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLM1k5WVN2aGJTLUVREAE", "timestamp": "7 months ago"}, {"text": "Nice to come back home to vilnius, and to know you can relax. Loved loved loved. Xxccc", "author": "Rokas Hegarty", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa3EyVHpnRRAB", "timestamp": "7 years ago"}, {"text": "Good place, perfect club LGBT.\\nBest place. Nice stuff", "author": "Karolina J", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtX05DR3lnRRAB", "timestamp": "3 years ago"}, {"text": "I want to come back! Great place.", "author": "Vika Rudziankova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfdzRXVlh3EAE", "timestamp": "a year ago"}, {"text": "Super service, kind bartender, loved it!", "author": "Govinda Valciukaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkMFBUbW1BRRAB", "timestamp": "a year ago"}, {"text": "Good music for dancing, wide choice of cocktails.", "author": "Do “D” K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdnV1UXBBRRAB", "timestamp": "6 years ago"}, {"text": "The club is owned by the guy with the style, who actually cares about the place :)", "author": "Sakurako Sakurako", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMk5fdHZRRRAB", "timestamp": "Edited 8 years ago"}, {"text": "Quite a fun and safe club", "author": "Tomas F.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRN05QTHpBRRAB", "timestamp": "10 months ago"}, {"text": "Nice gay club. I rather pop music but its ok.", "author": "Victor G.Onrubia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBZ2Nxb2pBRRAB", "timestamp": "9 years ago"}, {"text": "amazing service, nice club!!", "author": "Vakare Zuozaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczltREdBEAE", "timestamp": "3 years ago"}, {"text": "Good cocktails and good music", "author": "Sergei Zhenikhov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeHVfWUpnEAE", "timestamp": "2 years ago"}, {"text": "Fantastic atmosphere. If gay or not.", "author": "Ulrich Beck", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNV8yWEhBEAE", "timestamp": "8 years ago"}, {"text": "Fancy place with good music!", "author": "Celia Álvarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4X0t6R3F3RRAB", "timestamp": "5 years ago"}, {"text": "Nice :)", "author": "Audrius Basiulis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDb0pIbkRREAE", "timestamp": "5 years ago"}, {"text": "Really good club!!!", "author": "Iratxe Azkarraga Alava", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VtcFBREAE", "timestamp": "3 years ago"}, {"text": "Best baser", "author": "Koletta Jurskyte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczVHZ1ZBEAE", "timestamp": "3 years ago"}, {"text": "Very good 😻😻", "author": "Marianita Quintero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcnMyWEVBEAE", "timestamp": "3 years ago"}, {"text": "Wow", "author": "UV Music", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLOTZ2TUpnEAE", "timestamp": "4 years ago"}, {"text": "מועדון מאד יפה אבל דיי ריק בשישי בערב.מעורב עם נשים.\\nנאלצנו לחתוך מוקדם.אולי בפעם אחרת.", "author": "מעוז פטל", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR2NFbzNYMUZ5TldKSU5XRXdjRWxXV25wRmNWRRAB", "timestamp": "3 months ago"}, {"text": "Apsauga kultūringa, barmenai paslaugūs o barmenė Žydrė tiesiog nuostabi. Tūsas buvo super. Ačiū Artūrui 👌", "author": "archi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQdnFXOU1REAE", "timestamp": "Edited a year ago"}, {"text": "El mejor club gay en Vilnius .\\nLa noche de los Viernes me encanta.", "author": "John Alexander Serna Correa", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeVZtSkRiRXRLZG1kMlowWlBTMmd3V1UxT1dXYxAB", "timestamp": "2 months ago"}, {"text": "Šiame klube galima jaustis savimi, atsipalaiduoji pilna programa, niekas nebado tavęs akimis, niekas neapkalba nes visi kurie atėjo čia nebijo pasirodyti tokiais kokiais esa. Muzika, klubas, kokteiliai, ir viskas kas yra šiame klube 10+/10!", "author": "Eivūnas _", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbHFHeXZ3RRAB", "timestamp": "2 years ago"}, {"text": "Labai geras klubas🙂atmosferą draugiška,jauki🙂dirbantys žmonės labai malonus🙂maks rekomendacijos LGBT žmonėms ypač jei ieškote kur drąsiai galite būti savimi tai Soho🙂⭐", "author": "Neringa Janciunaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxaFlMWmR3EAE", "timestamp": "Edited a year ago"}, {"text": "Praeitą šeštadienį apsilankiau jūsų klube, tatuiruotas vaikinas nepamenu tiksliai vardo, puikiai patarė rekomendacijas ir šauniai aptarnavo mūsų draugų grupele, skyrė dėmesį ne tik perkančiajam bet ir visai kitai likusiai grupelei, super, ačiū, iki kitų kartų!", "author": "Vadim Korsak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOMTlhYUN3EAE", "timestamp": "2 years ago"}, {"text": "Labai daug vyrų!!! Niekas nepriekabiavo ir neišžagino :) Draugiškas gėju klubas :) Rekomenduoju :)", "author": "Ilija Edgar Muromec", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2czl5ZnpRRRAB", "timestamp": "a year ago"}, {"text": "отличный клуб, всё было просто пркрасно", "author": "Лавка Лавка", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJdE9fU0xREAE", "timestamp": "9 months ago"}, {"text": "Gera muzika, draugiški žmonės. Man labai patiko!", "author": "Germina Ruginė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQNGRqUGp3RRAB", "timestamp": "a year ago"}, {"text": "жаль, что работает только две ночи в неделю и да, интерьер мог бы быть лучше. в остальном прекрасно — отличная музыка, уютно, радостно, развязно. рекомендую)", "author": "Larisa Belkina (belsbox)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvaHVHVExnEAE", "timestamp": "6 years ago"}, {"text": "Очень классная клуб 💃", "author": "Doniyor Rahimov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQza1pTSVJBEAE", "timestamp": "a year ago"}, {"text": "Super miejsce. Polecam. Fajna muzyka,fajni ludzie,fajny klimat.", "author": "Jarek Kotek", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKa3RUa0F3EAE", "timestamp": "2 years ago"}, {"text": "Pati geriausia Miglė", "author": "Mantas Kybartas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poSUxWRnpSWEZFYm01YU1HeElkMk56ZVRZeFZHYxAB", "timestamp": "Edited 4 weeks ago"}, {"text": "visada geriausia vieta sugrįžt, o Eivydas daro nuostabiausius kokteilius💗🫶🏻", "author": "Augustė D. K.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURONE1DNjhRRRAB", "timestamp": "2 years ago"}, {"text": "Barmenai aukaciausio lygio!!! Net straight atejus super aptarnauja ir bendrauja,patys geriausi!", "author": "Osvaldas Gavelis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwa3VidWNREAE", "timestamp": "2 years ago"}, {"text": "Nuostabi vieta kur gali jaustis savimi ir nieko nebijot! Faini žmonės naujos pažintys ir fainas Kolektyvas!!!", "author": "Dovydas Auškalnis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNOUppUmt3RRAB", "timestamp": "6 years ago"}, {"text": "Labai gera vieta linksma muzika malonus aptarnavimas nepasigailejau nuvikes ir noreciau dar nuvikt", "author": "Andrejus Tiskevicius", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwX2VEYnVRRRAB", "timestamp": "6 years ago"}, {"text": "Labiausiai mldc barmenas klubo istorijoje dirba- Eivydas!!!!", "author": "Joana Šliažaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5dnMyWjBRRRAB", "timestamp": "a year ago"}, {"text": "Po pirmo apsilankymo buvau kiek nusivyles, taciau antras kartas kompensavo visus lukescius.", "author": "Laurynas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN2NUaUJnEAE", "timestamp": "6 years ago"}, {"text": "No lo conozco todavía! Ha sido un error! Iremos pronto y ,por lo que dice la gente, va a estar muy bien!", "author": "Juan Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrajdTdWxBRRAB", "timestamp": "6 years ago"}, {"text": "Patys geriausi barmenai, kitur tokiu nerasit❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥💋", "author": "Agne Paliukaityte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM1MGVyTU9BEAE", "timestamp": "2 years ago"}, {"text": "Fainas klubas, draugiška atmosfera, rekomenduoju", "author": "Haroldas Daunora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4a192alFnEAE", "timestamp": "5 years ago"}, {"text": "Muy bien. Felicidades", "author": "Ivan M. C. 2", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBMHN1UG93RRAB", "timestamp": "11 months ago"}, {"text": "geriausias klubas Vilniuje", "author": "Šarūnė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmb3FyeUVREAE", "timestamp": "a year ago"}, {"text": "Labai patiko . Atvyksiu dar daug kartų ❤🧡💛💚💙💜", "author": "Vytenis Jomantas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeG8tYzJRRRAB", "timestamp": "3 years ago"}, {"text": "❤️", "author": "Haroldas Adamonis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcExPcFh3EAE", "timestamp": "4 years ago"}, {"text": "Muy chulo", "author": "Francisco Javier Cano Las", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRc04yd2ZBEAE", "timestamp": "7 years ago"}, {"text": "Really good club, de locos", "author": "Francisco Elvira Iglesias", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VuaUZnEAE", "timestamp": "3 years ago"}, {"text": "👍", "author": "Ирина Безносова", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2cDlmNUV3EAE", "timestamp": "a year ago"}, {"text": "Супер", "author": "Махир Мухаммад", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxcG9pd0xBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Antanas Jonušas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvbkwtWERREAE", "timestamp": "9 months ago"}, {"text": "", "author": "Andrew S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvb3BuMXdBRRAB", "timestamp": "9 months ago"}, {"text": "", "author": "Elizaveta Kudrytskaya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMdk1Ea3B3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Dovilė Ilčiukaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbHBiMC1RRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Rosangeles Oropeza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGeXJEMWt3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "J", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUlZUbG5jWGwzZFZZME5EZzFiVXRMVVVadWVGRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Olga Stelberg", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201T1ZIRTNXRzVqY2xKRFdEWk1NakpVVWtsdU9WRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Tomas Kvedaravičius", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xod2IxUnllR0pSWkZKQ1lqWndXR3B0U1ZOd1EwRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Evelina Grig", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pnNGVtOTFMVEZZTUZabFgzaHlNR1p4WjNwSk5GRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Evaldas Urbonas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wRlZEZFNXbmh0YkhkSmVqbDBVRGg2VUZKR1gwRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Andrew Mirams", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKTVZVMVVaME5JVEhFMFJtdGpjVFI0WkZCYU1GRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Erik Jankovskis", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnTUNZM294eBAB", "timestamp": "8 months ago"}, {"text": "", "author": "abdullah asif", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvdTRYX3J3RRAB", "timestamp": "9 months ago"}, {"text": "", "author": "Kaushal Kishor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnNzhlUlBnEAE", "timestamp": "11 months ago"}, {"text": "", "author": "Afsheen Waqas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNFlYSUdBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Arminas Pov", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2N3FDazhnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Shiv Mishra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMzVERXVRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "tomas stankaitis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIaTY2c2hnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "danielius tamasauskas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5LXVUX0l3EAE", "timestamp": "a year ago"}, {"text": "", "author": "M Brad (mbradauskas)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNkaFBPeWJnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Saule Visniauskaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONDRqNmJ3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Audrius Petkevičius", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaXY2WE1REAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rūta Venckienė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcmFuUGZREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Agnė Juškėnaitė", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtX19xcmx3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Laura Grube", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtczZtLWZBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "carolina cherney", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VtR0lREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Verónica Hernández Savariego", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtM3VIdkVREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rosa Maria Redondo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtM3VHcnFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Vitālijs Jakovļevs", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MTZyMVl3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "vllad1k", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNWZtUDNRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Степан Чириков", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPeWFYLVhnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Gabrielius Andrius", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPcWY3WkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Anna Lomonosova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPMnZHV0xBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Agnė Aleksandravičiūtė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXOXVEVENREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Gabrielė M.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2XzV5TnBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Evaldas Balakauskas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cm9DeU93EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Darek Liavsevic", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2b0piemV3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Titas Netitas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhOU11Y0pBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Darius Saročka", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxX28zOTRnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Sarunas Saduikis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDN1pUcEp3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kristina GL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDMW9fdkF3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Itsonly Nata", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDb05IcHhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Martynas Riauba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OU42czRnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "saimonas Palkauskas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OUlMSzlnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Nadia Derendiajeva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUlLUUJBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Dalius Bastys", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUx6X0tnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Karolina Skurdelite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OUt5N3VBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Kiril Sss", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUl6ZU9REAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kasia Avižen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OUl5MFRREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Cell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OU1URHB3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Evanas Grinvaldas (Ev)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4NkxYQWZBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Dia Diana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjOW9UYkpBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Anisija Leonovaitė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjOW9UVlB3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kristina Jakavonytė", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjOUl5ek9nEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Melanie Montcler", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzOXF1TnhBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Agnė (KatinasBeŪsų)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcllHR2xRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Jaroslav T", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNek1udkRBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Sergej Troscenkov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwNV9pcFB3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "4 chebureky Prosecco Bar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrLUs3RnFBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Marta K.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJanJDUmd3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Saulius Cepkauskas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRd2F6U2pRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "irakli kalmaxelidze", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRMzU3LTdnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Romualdas Bilinskas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBN01EbEdBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Damiano Papadimitriu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRN0pyTEh3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Vytautas Povilas Jurgaitis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRenRETGNnEAE", "timestamp": "9 years ago"}, {"text": "", "author": "Laurynas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBdTlPUUp3EAE", "timestamp": "9 years ago"}, {"text": "", "author": "Paul Ratner", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBczRHazlBRRAB", "timestamp": "10 years ago"}, {"text": "", "author": "Aleh Kviatsinski", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnc1o2WWhBRRAB", "timestamp": "11 years ago"}, {"text": "", "author": "Mindaugas Dauksys", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnaExLQ0d3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Ruta Rafaele Tumanovaite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRM18tY2NREAE", "timestamp": "8 years ago"}, {"text": "", "author": "Vladas Vaitkus", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnXy1TYUdREAE", "timestamp": "11 years ago"}] 187.51181 \N {"job_type": "google-reviews", "priority": 0, "multi_sort": {"enabled": true, "completed_sorts": ["newest", "lowest", "highest", "relevant"], "first_pass_count": 218}, "bot_detected": false, "business_name": "Soho Club", "rating_snapshot": 4.2, "scraper_version": "1.1.0", "business_address": "Švitrigailos g. 7, Vilnius, 03110 Vilniaus m. sav., Lithuania ", "initial_sort_used": "newest", "sort_orders_attempted": ["newest"], "total_reviews_snapshot": 248} 438 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-29T18:34:31.781Z", "timestamp_ms": 1769711671781}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-29T18:34:31.843Z", "timestamp_ms": 1769711671843}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22soho%22%20vilna&hl=en&gl=us...", "category": "browser", "timestamp": "2026-01-29T18:34:31.965Z", "timestamp_ms": 1769711671965}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-29T18:34:34.066Z", "timestamp_ms": 1769711674066}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-29T18:34:34.441Z", "timestamp_ms": 1769711674441}, {"level": "INFO", "message": "Total reviews on page: 248", "metrics": {"total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:36.777Z", "timestamp_ms": 1769711676777}, {"level": "INFO", "message": "Business: Soho Club", "category": "scraper", "timestamp": "2026-01-29T18:34:36.777Z", "timestamp_ms": 1769711676777}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T18:34:36.833Z", "timestamp_ms": 1769711676833}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-29T18:34:36.868Z", "timestamp_ms": 1769711676868}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-29T18:34:36.963Z", "timestamp_ms": 1769711676963}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-29T18:34:36.963Z", "timestamp_ms": 1769711676963}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T18:34:39.515Z", "timestamp_ms": 1769711679515}, {"level": "INFO", "message": "Expanded 19 truncated reviews", "metrics": {"expanded_count": 19}, "category": "browser", "timestamp": "2026-01-29T18:34:39.614Z", "timestamp_ms": 1769711679614}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-29T18:34:39.618Z", "timestamp_ms": 1769711679618}, {"level": "INFO", "message": "Found 10 review topics: atmosphere, bartender, people, dj, prices...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-29T18:34:40.148Z", "timestamp_ms": 1769711680148}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-29T18:34:40.148Z", "timestamp_ms": 1769711680148}, {"level": "INFO", "message": "50/248 (20%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 20.161290322580644, "reviews_count": 50, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:41.771Z", "timestamp_ms": 1769711681771}, {"level": "INFO", "message": "DOM cleanup: removed 43 cards to prevent memory buildup", "metrics": {"cards_removed": 43, "cards_remaining": 190}, "category": "system", "timestamp": "2026-01-29T18:34:42.851Z", "timestamp_ms": 1769711682851}, {"level": "INFO", "message": "70/248 (28%) | idle: 0.0s", "metrics": {"idle_seconds": 0.005079507827758789, "progress_pct": 28.225806451612907, "reviews_count": 70, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:42.856Z", "timestamp_ms": 1769711682856}, {"level": "INFO", "message": "DOM cleanup: removed 27 cards to prevent memory buildup", "metrics": {"cards_removed": 27, "cards_remaining": 299}, "category": "system", "timestamp": "2026-01-29T18:34:43.932Z", "timestamp_ms": 1769711683932}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T18:34:43.932Z", "timestamp_ms": 1769711683932}, {"level": "INFO", "message": "100/248 (40%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01777172088623047, "progress_pct": 40.32258064516129, "reviews_count": 100, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:43.950Z", "timestamp_ms": 1769711683950}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 347}, "category": "system", "timestamp": "2026-01-29T18:34:45.035Z", "timestamp_ms": 1769711685035}, {"level": "INFO", "message": "120/248 (48%) | idle: 0.0s", "metrics": {"idle_seconds": 0.020912885665893555, "progress_pct": 48.38709677419355, "reviews_count": 120, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:45.056Z", "timestamp_ms": 1769711685056}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 195}, "category": "system", "timestamp": "2026-01-29T18:34:46.119Z", "timestamp_ms": 1769711686119}, {"level": "INFO", "message": "140/248 (56%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011360645294189453, "progress_pct": 56.451612903225815, "reviews_count": 140, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:46.130Z", "timestamp_ms": 1769711686130}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 204}, "category": "system", "timestamp": "2026-01-29T18:34:47.227Z", "timestamp_ms": 1769711687227}, {"level": "INFO", "message": "170/248 (69%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006394624710083008, "progress_pct": 68.54838709677419, "reviews_count": 170, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:47.234Z", "timestamp_ms": 1769711687234}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 191}, "category": "system", "timestamp": "2026-01-29T18:34:48.310Z", "timestamp_ms": 1769711688310}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T18:34:48.311Z", "timestamp_ms": 1769711688311}, {"level": "INFO", "message": "200/248 (81%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013228654861450195, "progress_pct": 80.64516129032258, "reviews_count": 200, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:48.324Z", "timestamp_ms": 1769711688324}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 126}, "category": "system", "timestamp": "2026-01-29T18:34:49.354Z", "timestamp_ms": 1769711689354}, {"level": "INFO", "message": "218/248 (88%) | idle: 0.0s", "metrics": {"idle_seconds": 0.003819704055786133, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:49.358Z", "timestamp_ms": 1769711689358}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0366759300231934, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:50.391Z", "timestamp_ms": 1769711690391}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.1s", "metrics": {"idle_seconds": 2.0689499378204346, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:51.423Z", "timestamp_ms": 1769711691423}, {"level": "INFO", "message": "218/248 (88%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0996367931365967, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:52.454Z", "timestamp_ms": 1769711692454}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T18:34:52.454Z", "timestamp_ms": 1769711692454}, {"level": "INFO", "message": "218/248 (88%) | idle: 4.2s", "metrics": {"idle_seconds": 4.172173738479614, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:53.526Z", "timestamp_ms": 1769711693526}, {"level": "INFO", "message": "218/248 (88%) | idle: 5.2s", "metrics": {"idle_seconds": 5.201606512069702, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:54.556Z", "timestamp_ms": 1769711694556}, {"level": "INFO", "message": "218/248 (88%) | idle: 6.2s", "metrics": {"idle_seconds": 6.236056089401245, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:55.590Z", "timestamp_ms": 1769711695590}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T18:34:55.590Z", "timestamp_ms": 1769711695590}, {"level": "INFO", "message": "218/248 (88%) | idle: 7.6s", "metrics": {"idle_seconds": 7.5624871253967285, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:56.916Z", "timestamp_ms": 1769711696916}, {"level": "INFO", "message": "218/248 (88%) | idle: 8.6s", "metrics": {"idle_seconds": 8.592009544372559, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:57.946Z", "timestamp_ms": 1769711697946}, {"level": "INFO", "message": "218/248 (88%) | idle: 9.6s", "metrics": {"idle_seconds": 9.61913514137268, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:34:58.973Z", "timestamp_ms": 1769711698973}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T18:34:58.973Z", "timestamp_ms": 1769711698973}, {"level": "INFO", "message": "218/248 (88%) | idle: 11.0s", "metrics": {"idle_seconds": 10.975297451019287, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:00.329Z", "timestamp_ms": 1769711700329}, {"level": "INFO", "message": "218/248 (88%) | idle: 12.0s", "metrics": {"idle_seconds": 12.003411531448364, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:01.357Z", "timestamp_ms": 1769711701357}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T18:35:01.357Z", "timestamp_ms": 1769711701357}, {"level": "INFO", "message": "218/248 (88%) | idle: 13.4s", "metrics": {"idle_seconds": 13.35010027885437, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:02.704Z", "timestamp_ms": 1769711702704}, {"level": "INFO", "message": "218/248 (88%) | idle: 14.4s", "metrics": {"idle_seconds": 14.387718677520752, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:03.742Z", "timestamp_ms": 1769711703742}, {"level": "INFO", "message": "218/248 (88%) | idle: 15.4s", "metrics": {"idle_seconds": 15.422100305557251, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:04.776Z", "timestamp_ms": 1769711704776}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T18:35:04.776Z", "timestamp_ms": 1769711704776}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.422100305557251}, "category": "browser", "timestamp": "2026-01-29T18:35:04.821Z", "timestamp_ms": 1769711704821}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-29T18:35:05.028Z", "timestamp_ms": 1769711705028}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T18:35:09.850Z", "timestamp_ms": 1769711709850}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T18:35:09.955Z", "timestamp_ms": 1769711709955}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T18:35:12.514Z", "timestamp_ms": 1769711712514}, {"level": "INFO", "message": "Expanded 19 truncated reviews", "metrics": {"expanded_count": 19}, "category": "browser", "timestamp": "2026-01-29T18:35:12.591Z", "timestamp_ms": 1769711712591}, {"level": "INFO", "message": "Hard refresh successful, resuming with 218 reviews already collected", "metrics": {"reviews_collected": 218}, "category": "browser", "timestamp": "2026-01-29T18:35:12.605Z", "timestamp_ms": 1769711712605}, {"level": "WARN", "message": "SLOW cycle: 8.9s (api:0.0s dom:0.1s/369cards flush:0.0s seen:218)", "metrics": {"dom_cards": 369, "api_time_s": 0.012327432632446289, "dom_time_s": 0.10160636901855469, "seen_count": 218, "cycle_time_s": 8.853653907775879}, "category": "system", "timestamp": "2026-01-29T18:35:14.102Z", "timestamp_ms": 1769711714102}, {"level": "INFO", "message": "218/248 (88%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:14.107Z", "timestamp_ms": 1769711714107}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 238}, "category": "system", "timestamp": "2026-01-29T18:35:15.241Z", "timestamp_ms": 1769711715241}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.2s", "metrics": {"idle_seconds": 1.151615858078003, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:15.261Z", "timestamp_ms": 1769711715261}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 466}, "category": "system", "timestamp": "2026-01-29T18:35:16.330Z", "timestamp_ms": 1769711716330}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.2s", "metrics": {"idle_seconds": 2.225393533706665, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:16.335Z", "timestamp_ms": 1769711716335}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 201}, "category": "system", "timestamp": "2026-01-29T18:35:17.444Z", "timestamp_ms": 1769711717444}, {"level": "INFO", "message": "218/248 (88%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:17.456Z", "timestamp_ms": 1769711717456}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 290}, "category": "system", "timestamp": "2026-01-29T18:35:18.533Z", "timestamp_ms": 1769711718533}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.1s", "metrics": {"idle_seconds": 1.088761806488037, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:18.545Z", "timestamp_ms": 1769711718545}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 177}, "category": "system", "timestamp": "2026-01-29T18:35:19.651Z", "timestamp_ms": 1769711719651}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0996129512786865, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:19.671Z", "timestamp_ms": 1769711719671}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.1s", "metrics": {"idle_seconds": 2.1339778900146484, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:20.705Z", "timestamp_ms": 1769711720705}, {"level": "INFO", "message": "218/248 (88%) | idle: 3.2s", "metrics": {"idle_seconds": 3.166714906692505, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:21.738Z", "timestamp_ms": 1769711721738}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T18:35:21.738Z", "timestamp_ms": 1769711721738}, {"level": "INFO", "message": "218/248 (88%) | idle: 4.2s", "metrics": {"idle_seconds": 4.24009108543396, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:22.811Z", "timestamp_ms": 1769711722811}, {"level": "INFO", "message": "218/248 (88%) | idle: 5.3s", "metrics": {"idle_seconds": 5.262301683425903, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:23.833Z", "timestamp_ms": 1769711723833}, {"level": "INFO", "message": "218/248 (88%) | idle: 6.3s", "metrics": {"idle_seconds": 6.300660848617554, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:24.872Z", "timestamp_ms": 1769711724872}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T18:35:24.872Z", "timestamp_ms": 1769711724872}, {"level": "INFO", "message": "218/248 (88%) | idle: 7.6s", "metrics": {"idle_seconds": 7.631713628768921, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:26.203Z", "timestamp_ms": 1769711726203}, {"level": "INFO", "message": "218/248 (88%) | idle: 8.7s", "metrics": {"idle_seconds": 8.66395354270935, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:27.235Z", "timestamp_ms": 1769711727235}, {"level": "INFO", "message": "218/248 (88%) | idle: 9.7s", "metrics": {"idle_seconds": 9.68884801864624, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:28.260Z", "timestamp_ms": 1769711728260}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T18:35:28.260Z", "timestamp_ms": 1769711728260}, {"level": "INFO", "message": "218/248 (88%) | idle: 11.0s", "metrics": {"idle_seconds": 11.046801328659058, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:29.618Z", "timestamp_ms": 1769711729618}, {"level": "INFO", "message": "218/248 (88%) | idle: 12.1s", "metrics": {"idle_seconds": 12.110198974609375, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:30.681Z", "timestamp_ms": 1769711730681}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T18:35:30.681Z", "timestamp_ms": 1769711730681}, {"level": "INFO", "message": "218/248 (88%) | idle: 13.5s", "metrics": {"idle_seconds": 13.462424039840698, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:32.034Z", "timestamp_ms": 1769711732034}, {"level": "INFO", "message": "218/248 (88%) | idle: 14.5s", "metrics": {"idle_seconds": 14.489404678344727, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:33.061Z", "timestamp_ms": 1769711733061}, {"level": "INFO", "message": "218/248 (88%) | idle: 15.5s", "metrics": {"idle_seconds": 15.522470474243164, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:34.094Z", "timestamp_ms": 1769711734094}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T18:35:34.094Z", "timestamp_ms": 1769711734094}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.522470474243164}, "category": "browser", "timestamp": "2026-01-29T18:35:34.155Z", "timestamp_ms": 1769711734155}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-29T18:35:34.356Z", "timestamp_ms": 1769711734356}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T18:35:39.013Z", "timestamp_ms": 1769711739013}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T18:35:39.166Z", "timestamp_ms": 1769711739166}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T18:35:41.725Z", "timestamp_ms": 1769711741725}, {"level": "INFO", "message": "Expanded 19 truncated reviews", "metrics": {"expanded_count": 19}, "category": "browser", "timestamp": "2026-01-29T18:35:41.794Z", "timestamp_ms": 1769711741794}, {"level": "INFO", "message": "Hard refresh successful, resuming with 218 reviews already collected", "metrics": {"reviews_collected": 218}, "category": "browser", "timestamp": "2026-01-29T18:35:41.808Z", "timestamp_ms": 1769711741808}, {"level": "WARN", "message": "SLOW cycle: 8.7s (api:0.6s dom:0.1s/477cards flush:0.0s seen:218)", "metrics": {"dom_cards": 477, "api_time_s": 0.5813286304473877, "dom_time_s": 0.1347963809967041, "seen_count": 218, "cycle_time_s": 8.739678859710693}, "category": "system", "timestamp": "2026-01-29T18:35:43.575Z", "timestamp_ms": 1769711743575}, {"level": "INFO", "message": "218/248 (88%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:43.606Z", "timestamp_ms": 1769711743606}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 427}, "category": "system", "timestamp": "2026-01-29T18:35:44.810Z", "timestamp_ms": 1769711744810}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.2s", "metrics": {"idle_seconds": 1.204529047012329, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:44.821Z", "timestamp_ms": 1769711744821}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 439}, "category": "system", "timestamp": "2026-01-29T18:35:45.904Z", "timestamp_ms": 1769711745904}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.3s", "metrics": {"idle_seconds": 2.298819065093994, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:45.915Z", "timestamp_ms": 1769711745915}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 168}, "category": "system", "timestamp": "2026-01-29T18:35:46.986Z", "timestamp_ms": 1769711746986}, {"level": "INFO", "message": "218/248 (88%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000011920928955078125, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:47.000Z", "timestamp_ms": 1769711747000}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 208}, "category": "system", "timestamp": "2026-01-29T18:35:48.084Z", "timestamp_ms": 1769711748084}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0951402187347412, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:48.095Z", "timestamp_ms": 1769711748095}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 171}, "category": "system", "timestamp": "2026-01-29T18:35:49.149Z", "timestamp_ms": 1769711749149}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.2s", "metrics": {"idle_seconds": 2.159961223602295, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:49.160Z", "timestamp_ms": 1769711749160}, {"level": "INFO", "message": "218/248 (88%) | idle: 3.2s", "metrics": {"idle_seconds": 3.221233606338501, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:50.221Z", "timestamp_ms": 1769711750221}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T18:35:50.221Z", "timestamp_ms": 1769711750221}, {"level": "INFO", "message": "218/248 (88%) | idle: 4.3s", "metrics": {"idle_seconds": 4.343170881271362, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:51.343Z", "timestamp_ms": 1769711751343}, {"level": "INFO", "message": "218/248 (88%) | idle: 5.4s", "metrics": {"idle_seconds": 5.367001295089722, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:52.367Z", "timestamp_ms": 1769711752367}, {"level": "INFO", "message": "218/248 (88%) | idle: 6.4s", "metrics": {"idle_seconds": 6.402291297912598, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:53.402Z", "timestamp_ms": 1769711753402}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T18:35:53.403Z", "timestamp_ms": 1769711753403}, {"level": "INFO", "message": "218/248 (88%) | idle: 7.7s", "metrics": {"idle_seconds": 7.7241902351379395, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:54.724Z", "timestamp_ms": 1769711754724}, {"level": "INFO", "message": "218/248 (88%) | idle: 8.8s", "metrics": {"idle_seconds": 8.752422571182251, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:55.752Z", "timestamp_ms": 1769711755752}, {"level": "INFO", "message": "218/248 (88%) | idle: 9.8s", "metrics": {"idle_seconds": 9.784019231796265, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:56.784Z", "timestamp_ms": 1769711756784}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T18:35:56.784Z", "timestamp_ms": 1769711756784}, {"level": "INFO", "message": "218/248 (88%) | idle: 11.1s", "metrics": {"idle_seconds": 11.144569635391235, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:58.145Z", "timestamp_ms": 1769711758145}, {"level": "INFO", "message": "218/248 (88%) | idle: 12.2s", "metrics": {"idle_seconds": 12.168047904968262, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:35:59.168Z", "timestamp_ms": 1769711759168}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T18:35:59.168Z", "timestamp_ms": 1769711759168}, {"level": "INFO", "message": "218/248 (88%) | idle: 13.5s", "metrics": {"idle_seconds": 13.508452892303467, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:00.509Z", "timestamp_ms": 1769711760509}, {"level": "INFO", "message": "218/248 (88%) | idle: 14.5s", "metrics": {"idle_seconds": 14.536251544952393, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:01.536Z", "timestamp_ms": 1769711761536}, {"level": "INFO", "message": "218/248 (88%) | idle: 15.6s", "metrics": {"idle_seconds": 15.579989194869995, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:02.580Z", "timestamp_ms": 1769711762580}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T18:36:02.580Z", "timestamp_ms": 1769711762580}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.579989194869995}, "category": "browser", "timestamp": "2026-01-29T18:36:02.746Z", "timestamp_ms": 1769711762746}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-29T18:36:02.952Z", "timestamp_ms": 1769711762952}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T18:36:07.582Z", "timestamp_ms": 1769711767582}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T18:36:07.830Z", "timestamp_ms": 1769711767830}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T18:36:10.389Z", "timestamp_ms": 1769711770389}, {"level": "INFO", "message": "Expanded 19 truncated reviews", "metrics": {"expanded_count": 19}, "category": "browser", "timestamp": "2026-01-29T18:36:10.458Z", "timestamp_ms": 1769711770458}, {"level": "INFO", "message": "Hard refresh successful, resuming with 218 reviews already collected", "metrics": {"reviews_collected": 218}, "category": "browser", "timestamp": "2026-01-29T18:36:10.471Z", "timestamp_ms": 1769711770471}, {"level": "WARN", "message": "SLOW cycle: 8.9s (api:0.0s dom:0.3s/369cards flush:0.0s seen:218)", "metrics": {"dom_cards": 369, "api_time_s": 0.0162506103515625, "dom_time_s": 0.2734987735748291, "seen_count": 218, "cycle_time_s": 8.928948640823364}, "category": "system", "timestamp": "2026-01-29T18:36:12.158Z", "timestamp_ms": 1769711772158}, {"level": "INFO", "message": "218/248 (88%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:12.180Z", "timestamp_ms": 1769711772180}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 350}, "category": "system", "timestamp": "2026-01-29T18:36:13.541Z", "timestamp_ms": 1769711773541}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.4s", "metrics": {"idle_seconds": 1.4032654762268066, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:13.600Z", "timestamp_ms": 1769711773600}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 414}, "category": "system", "timestamp": "2026-01-29T18:36:14.916Z", "timestamp_ms": 1769711774916}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.8s", "metrics": {"idle_seconds": 2.7504851818084717, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:14.947Z", "timestamp_ms": 1769711774947}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 303}, "category": "system", "timestamp": "2026-01-29T18:36:16.240Z", "timestamp_ms": 1769711776240}, {"level": "INFO", "message": "218/248 (88%) | idle: 1.2s", "metrics": {"idle_seconds": 1.2039222717285156, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:16.252Z", "timestamp_ms": 1769711776252}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 269}, "category": "system", "timestamp": "2026-01-29T18:36:17.375Z", "timestamp_ms": 1769711777375}, {"level": "INFO", "message": "218/248 (88%) | idle: 2.3s", "metrics": {"idle_seconds": 2.333434581756592, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:17.381Z", "timestamp_ms": 1769711777381}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 97}, "category": "system", "timestamp": "2026-01-29T18:36:18.440Z", "timestamp_ms": 1769711778440}, {"level": "INFO", "message": "218/248 (88%) | idle: 3.4s", "metrics": {"idle_seconds": 3.396130323410034, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:18.444Z", "timestamp_ms": 1769711778444}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T18:36:18.444Z", "timestamp_ms": 1769711778444}, {"level": "INFO", "message": "218/248 (88%) | idle: 4.5s", "metrics": {"idle_seconds": 4.459098815917969, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:19.507Z", "timestamp_ms": 1769711779507}, {"level": "INFO", "message": "218/248 (88%) | idle: 5.5s", "metrics": {"idle_seconds": 5.498888969421387, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:20.547Z", "timestamp_ms": 1769711780547}, {"level": "INFO", "message": "218/248 (88%) | idle: 6.6s", "metrics": {"idle_seconds": 6.629361391067505, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:21.677Z", "timestamp_ms": 1769711781677}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T18:36:21.677Z", "timestamp_ms": 1769711781677}, {"level": "INFO", "message": "218/248 (88%) | idle: 8.0s", "metrics": {"idle_seconds": 7.972659349441528, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:23.020Z", "timestamp_ms": 1769711783020}, {"level": "INFO", "message": "218/248 (88%) | idle: 9.0s", "metrics": {"idle_seconds": 8.999976873397827, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:24.048Z", "timestamp_ms": 1769711784048}, {"level": "INFO", "message": "218/248 (88%) | idle: 10.0s", "metrics": {"idle_seconds": 10.028280258178711, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:25.076Z", "timestamp_ms": 1769711785076}, {"level": "INFO", "message": "218/248 (88%) | idle: 11.1s", "metrics": {"idle_seconds": 11.052052974700928, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:26.100Z", "timestamp_ms": 1769711786100}, {"level": "INFO", "message": "218/248 (88%) | idle: 12.1s", "metrics": {"idle_seconds": 12.076272964477539, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:27.124Z", "timestamp_ms": 1769711787124}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T18:36:27.124Z", "timestamp_ms": 1769711787124}, {"level": "INFO", "message": "218/248 (88%) | idle: 13.4s", "metrics": {"idle_seconds": 13.423661231994629, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:28.471Z", "timestamp_ms": 1769711788471}, {"level": "INFO", "message": "218/248 (88%) | idle: 14.5s", "metrics": {"idle_seconds": 14.453631162643433, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:29.501Z", "timestamp_ms": 1769711789501}, {"level": "INFO", "message": "218/248 (88%) | idle: 15.5s", "metrics": {"idle_seconds": 15.476552724838257, "progress_pct": 87.90322580645162, "reviews_count": 218, "total_reviews": 248}, "category": "scraper", "timestamp": "2026-01-29T18:36:30.524Z", "timestamp_ms": 1769711790524}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T18:36:30.524Z", "timestamp_ms": 1769711790524}, {"level": "INFO", "message": "All reviews loaded: 218", "metrics": {"total_reviews": 218, "elapsed_seconds": 110.70226073265076}, "category": "scraper", "timestamp": "2026-01-29T18:36:30.850Z", "timestamp_ms": 1769711790850}, {"level": "INFO", "message": "Multi-sort auto-enabled (first pass got 87.9% < 90%)", "metrics": {"total_reviews": 248, "first_pass_count": 218}, "category": "scraper", "timestamp": "2026-01-29T18:36:30.850Z", "timestamp_ms": 1769711790850}, {"level": "INFO", "message": "Pass 2/4 (lowest): starting with 218 reviews", "metrics": {"pass": 2, "sort": "lowest", "current_total": 218}, "category": "scraper", "timestamp": "2026-01-29T18:36:30.850Z", "timestamp_ms": 1769711790850}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-29T18:36:31.383Z", "timestamp_ms": 1769711791383}, {"level": "INFO", "message": "Sorted by lowest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-29T18:36:31.919Z", "timestamp_ms": 1769711791919}, {"level": "INFO", "message": "Pass 2 (lowest) complete: +217 new reviews (99.5% yield)", "metrics": {"pass": 2, "sort": "lowest", "yield_pct": 99.54128440366972, "new_reviews": 217}, "category": "scraper", "timestamp": "2026-01-29T18:36:56.204Z", "timestamp_ms": 1769711816204}, {"level": "INFO", "message": "Pass 3/4 (highest): starting with 435 reviews", "metrics": {"pass": 3, "sort": "highest", "current_total": 435}, "category": "scraper", "timestamp": "2026-01-29T18:36:56.204Z", "timestamp_ms": 1769711816204}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-29T18:36:56.745Z", "timestamp_ms": 1769711816745}, {"level": "INFO", "message": "Sorted by highest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-29T18:36:57.293Z", "timestamp_ms": 1769711817293}, {"level": "INFO", "message": "Pass 3 (highest) complete: +0 new reviews (0.0% yield)", "metrics": {"pass": 3, "sort": "highest", "yield_pct": 0.0, "new_reviews": 0}, "category": "scraper", "timestamp": "2026-01-29T18:37:13.437Z", "timestamp_ms": 1769711833437}, {"level": "INFO", "message": "Pass 4/4 (relevant): starting with 435 reviews", "metrics": {"pass": 4, "sort": "relevant", "current_total": 435}, "category": "scraper", "timestamp": "2026-01-29T18:37:13.437Z", "timestamp_ms": 1769711833437}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-29T18:37:13.973Z", "timestamp_ms": 1769711833973}, {"level": "INFO", "message": "Sorted by relevant (via menuitemradio)", "category": "browser", "timestamp": "2026-01-29T18:37:14.515Z", "timestamp_ms": 1769711834515}, {"level": "INFO", "message": "Pass 4 (relevant) complete: +3 new reviews (0.7% yield)", "metrics": {"pass": 4, "sort": "relevant", "yield_pct": 0.6896551724137931, "new_reviews": 3}, "category": "scraper", "timestamp": "2026-01-29T18:37:38.860Z", "timestamp_ms": 1769711858860}, {"level": "INFO", "message": "Low yield (0.7% < 5%), stopping multi-sort", "metrics": {"threshold": 5, "yield_pct": 0.6896551724137931}, "category": "scraper", "timestamp": "2026-01-29T18:37:38.860Z", "timestamp_ms": 1769711858860}, {"level": "INFO", "message": "Final flush: 3 reviews...", "metrics": {"source": "final_flush", "batch_size": 3}, "category": "scraper", "timestamp": "2026-01-29T18:37:38.861Z", "timestamp_ms": 1769711858861}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-29T18:37:38.861Z", "timestamp_ms": 1769711858861}, {"level": "INFO", "message": "Total: 438 unique reviews (flushed: 438, in memory: 0)", "metrics": {"flushed_count": 438, "total_reviews": 438, "elapsed_seconds": 178.71264791488647, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-29T18:37:38.861Z", "timestamp_ms": 1769711858861}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-29T18:37:38.861Z", "timestamp_ms": 1769711858861}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-29T18:37:38.861Z", "timestamp_ms": 1769711858861}] 2026-01-31 03:21:52.839033 [{"count": 12, "topic": "atmosphere"}, {"count": 12, "topic": "bartender"}, {"count": 5, "topic": "people"}, {"count": 5, "topic": "dj"}, {"count": 5, "topic": "prices"}, {"count": 4, "topic": "gay club"}, {"count": 4, "topic": "coat"}, {"count": 4, "topic": "phone"}, {"count": 3, "topic": "drama"}, {"count": 3, "topic": "stage"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-29T18:34:31.793856", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Soho Club Gay night club Švitrigailos g. 7, Vilnius, 03110 Vilniaus m. sav., Lithuania 4.20 2279 Entertainment.Nightlife.Gay_night_club exact google 22c747a6-b913-4ae4-82bc-14b4195008b6 completed https://www.google.com/maps/search/?api=1&query=%22gokarts%20mar%20menor%22%20murcia&hl=en \N \N 2026-01-30 01:52:39.833374 2026-01-30 01:54:47.731525 2026-01-30 01:54:47.83825 1346 [{"text": "I was there with my family on September 6. The kart track is in great condition. My son and nephew drove in the 40 km/h class and had a lot of fun. My daughter and I drove in the mixed class at 60 km/h and above. That was also a lot of fun and a great memory for everyone.", "author": "E K", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pJeGFUTXRaRTh6TFhCWFNqSXhZMGx1UW1jdE5rRRAB", "timestamp": "3 months ago"}, {"text": "Fabulous. Friendly helpful service guiding autistic son to complete a first solo drive. They were patient and kind and he absolutely loved it. So much so we went back a week later. Timing was excellent as we had the course to ourselves, which helped!", "author": "Jan Hodgson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvX05LSHNBRRAB", "timestamp": "9 months ago"}, {"text": "Visited here in late July to race with my son. Had a great time and really enjoyed our race. Easy check in experience, reasonable cost and a good fun track with good karts. If you can, pick the F300 Karts because we went in F200 and got well beaten by the drivers in the faster Karts!\\nNice roof terrace for spectators and a cafe/bar for food & drinks.\\nHighly recommend it for a bit of fun. Karts for all ages although the kids race we watched was organised chaos albeit at low speeds! 🤣", "author": "Ross M84", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsM2VWcHBVbDk1VUhOR1pXNWtlbXRWWHpCa2JHYxAB", "timestamp": "5 months ago"}, {"text": "‼️AMAZING‼️Amazing go karting, very professional and authentic. Well kept and unique track which is a pleasure to race on! And the karts are well maintained to the best standards. They have amazing staff there getting you on the track quickly and efficiently and helping with any problems on the track. Great facilities with food and drink available, a good main room with a view of the karts and an amazing roof terrace overlooking the complex! We have been going for years and has never failed to disappoint even in the hottest temperatures or heavy rain. The atmosphere is very welcoming and authentic giving a true racing experience. They have karts for all ages and abilities and are superbly priced. I would highly recommend a few races here no matter the time of day it is always one of the highlights of our trip! Thank you to all of the crew here who never fail to offer the best service and giving the best experience! All of the best and look forward to our visit next week!!", "author": "Thomas G", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURienJ2UllBEAE", "timestamp": "a year ago"}, {"text": "Great venue, good customer service. Some of the younger staff speaks English well. Has indoor reception, with refreshments - and if not fully booked, you can buy sessions drop in. Parking is good, and accessibility by bike is good as it has a new bike lane going right by the track.", "author": "Per-Erik Broz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25RMlZtTjRNWEpMUldGMVRuUmxRMDgwTFZZMlduYxAB", "timestamp": "7 months ago"}, {"text": "Went on the off chance we could rise. Managed to get on the go carts. Price was reasonable and good customer service", "author": "Debgc", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKQk5XaFdMVlpGT1RCZmFuTkZkblZOZVhCZmVrRRAB", "timestamp": "5 months ago"}, {"text": "Came here whilst on holiday in April and loved it. My boys had such a fab time and haven't stopped going on about it. My youngest had to go round on his own because he was the youngest in our group but he had extra laps and was so happy. Really easy to find, you can either pre book or pay when you arrive. Choosing from a variety of different go karts, drinks and snacks available not sure about any other food options. We will definitely be returning when we visit next.", "author": "Kelly Short", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqdmI2Q1Z3EAE", "timestamp": "a year ago"}, {"text": "Great circuit, not very crowded and has the best price around.", "author": "Elena Cabezas", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBeWMxbzRVRWx0WlVGUE1ERTRNMWRIVVVsclRVRRAB", "timestamp": "5 months ago"}, {"text": "Very fun track where you can have some good races with your friends", "author": "Juan Acurero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CT1dFeDZTa1l6VVZKcFRYZEhOMmh3U1UxVWQzYxAB", "timestamp": "4 months ago"}, {"text": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD FRIENDS AND FAMILY TRAVELING FOR HOURS TO BE THERE FOR MY SONS BIRTHDAY😡.\\nWHAT A LIE....WHEN I RANG I GOT HUNG UP ON.possibly Wanted the day off because we were probably the only persons arriving on the day.Most important they text me.They hadn't the decency to call Us!!", "author": "ceceliamichaeloneill", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB", "timestamp": "a month ago"}, {"text": "Been coming here once a year since about 2019 now the staff are good can order drinks inside there is a roof terrace overview of the track and tvs that track each kart when races are going on. You definitely feel the speed jump on the F300s", "author": "Jack Burt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNydi1panBBRRAB", "timestamp": "a year ago"}, {"text": "Fantastic Track with supermoto and mini motorbikes as well plus a bar and roof Terrace and free entry you just pay to race", "author": "David “Chucklebrothers” Eardley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzZ3BTcDZ3RRAB", "timestamp": "5 years ago"}, {"text": "A fun place for drivers and spectators alike. Has a viewing terrace and a bar for a coffee or beer.", "author": "Gary Cliffe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBdEtxeGJBEAE", "timestamp": "11 months ago"}, {"text": "Es un sitio muy genial para pasar un rato en familia, tanto para niños como adultos. Hay cafetería para tomar algo y una terraza estupenda arriba donde se ve todo el circuito. La atención por parte de Roberta y su hija es estupenda, te asesoran que motor de coche coger y son muy amables. En los meses de verano hay que coger cita porque está bastante lleno y la mejor hora para ir es el atardecer, porque no hace tanto calor. Y está abierto hasta las once de la noche. Muy recomendado!!!", "author": "Marta Pascua", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MksyWUpBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Un sitio perfecto para pasar un buen rato, muy buenas instalaciones, terraza con sombra para tomar algo y el circuito perfecto, muy juen trazado, escapatorias perfectas, la única pequeña pega...por lo menos en mi kart de 400...el volante estaba muy desgastado y no era muy agradable el tacto, pero te lo pasas genial, grbte muy amable y servicial, volveremos pronto, un saludo para todos. Gracias.", "author": "Jose Luis Alvarez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oSWVYTm1SWGwzTFc5M1l5MVhhVEJYVVhsQ1NFRRAB", "timestamp": "6 months ago"}, {"text": "Estuvo muy bien puedes ver las carreras desde la terraza tomandote algo e incluso subir más arriba para tener una perspectiva más amplia.", "author": "Aru", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTcFo3SW1BRRAB", "timestamp": "5 years ago"}, {"text": "Hemos celebrado el cumpleaños de una niña y ha sido una experiencia inolvidable.\\nLas medidas higiene son visibles en todo momento. Cuando la gente deja los cascos le aplican un spray para la desinfección. Las mesas de la terraza son limpiadas en el momento que se dejan libres.\\nLa gente de pista son muy amables y atentos con los niños que tienen su primera experiencia en un coche de verdad.\\nEl circuito y los coches estupendos.\\nSin duda volveremos a celebrar algún otro evento con ellos.", "author": "Juan Antonio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLdExIN3lnRRAB", "timestamp": "4 years ago"}, {"text": "Lugar fantástico, situado en uno de los lugares con más encanto de España, el mar menor, en el término municipal de San Javier, no necesita apellidos. Con una amplia terraza donde tomar algo. De fácil acceso y un circuito genial para entrenamientos y competiciones.\\nLo recomiendo.", "author": "israel cervantes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLN002SU93EAE", "timestamp": "4 years ago"}, {"text": "Ha sido mi primera experiencia en Karts, y desde luego repetiría y en el mismo sitio. Circuito grande y divertido, personal súper amable y entre las instalaciones cuenta con varias mesas en cafetería y terraza donde puedes ver cómodamente las carreras. Nosotros cogimos los de 300 recomendados por la mujer que nos atendió. Me gustó que su preocupación fuese que disfrutásemos al 100% la experiencia y no por sacar más dinero, porque nosotros queríamos los de 400. Los karts funcionan bien y la pista también estába bien asfaltada. Recomendable. Yo disfruté muchísimo. Más de lo que esperaba.", "author": "Mery Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcW82SkJREAE", "timestamp": "3 years ago"}, {"text": "Pista bastante buena, los coches van bien y lo mejor de todo es que se puede correr. He estado en otras pistas indoor y esta es la que más me ha gustado con diferencia.\\nDisponen de un parking amplio y una terraza con sombra mientras se espera.\\nRemarcar el personal amable.", "author": "Manuel Zapata", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1OE5xd0p3EAE", "timestamp": "3 years ago"}, {"text": "Fabulous track and an exciting way to pass time in the region. Well organised system, observing safety rules. You can even drive with your children. For €12 or less you get 10 circuits of excitement and are provided with a race helmet. Highly recommended.", "author": "Paul Miller", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMGEyeDRBRRAB", "timestamp": "6 years ago"}, {"text": "Been here 2 times now in the evening, always very busy so you have to wait around an hour before it's your turn if you don't book a timeslot, which is reasonable. The track is pretty good, lots of variety of turns and straights. But I absolutely dislike the karts comfort, I drive the F300 which is pretty quick but once you crash or take short turns and end your turn, I'm always hurt in my back or the insides of my knees (which is in between the fuel tank) because I have a fragile body and I always have a helmet that tilts up in my view so every bump I have to tilt it back down but that's something that the staff can't notice beforehand so I don't blame them. Next time I'll make a reservation and wear something less thin and a smaller helmet that still fits", "author": "Mattias Verlinden", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xack5XMVhSalZ4ZEdoWFQyTnZMVU40Y0VocVdWRRAB", "timestamp": "5 months ago"}, {"text": "Took my grandkids 7 & 9, they’d never driven before but the Marshalls were excellent in helping them. Great track and cars and very reasonable prices", "author": "9884booth", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURsc0x2T2dBRRAB", "timestamp": "2 years ago"}, {"text": "Great place to have a laugh and battle your friends on the track. Very good staff and facilities", "author": "Brian Cottrell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VPR0gwWUhNN2JmYmtBRRAB", "timestamp": "8 months ago"}, {"text": "Brilliant fun this morning. Very friendly staff. Great karts and a fun track. Fair value too. We will be back again.", "author": "Michael Farrell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNybjh2c1NREAE", "timestamp": "a year ago"}, {"text": "Amazing karting circuit! The track is exciting and well-designed, and the prices are super affordable. Perfect for a fun day out with friends or family — highly recommended!", "author": "Kalid A", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pnNVRHWXpUVUZCWmtkdFUyUkNlVlJFVDBwVmQyYxAB", "timestamp": "5 months ago"}, {"text": "Great fun for all the family, carts to suit all ages and all are well maintained. 1.2km track is one of the longest in the area, makes for some great corners, hairpin bends and straights. Basic package on the 200 cart is €14, €18 for the 300 more powerful carts (over 16) rising to €50 pp for the premium package which includes practice time, real F1 grid start based on lap times longer race time, medals plus lots more.", "author": "Richard Warren", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNweXAtaGZREAE", "timestamp": "2 years ago"}, {"text": "Such a fun experience for kids (and adults too!) We went on a Wednesday as people here have suggested it is good value and I can confirm we got double the minutes for the same price. Staff are friendly and helpful- we speak limited Spanish and we managed to easily converse. We will definitely be returning before our holiday is over!", "author": "Lucy Wilkinson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPeExyVGpBRRAB", "timestamp": "3 years ago"}, {"text": "Great circuit for all ages, took a twin seat kart out with my 4yr old riding shotgun. He absolutely loved it and dad (a former saloon car racer) enjoyed it too! Great value, friendly team and highly recommended for a fun afternoon.", "author": "John Smith", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bllhTmdRRRAB", "timestamp": "2 years ago"}, {"text": "Friendly folks. They only speak Spanish, but they’ll be happy to let you write down your list of drivers and cars on a piece of paper. In the off season, they can put together a race for the whole family in different car types, even tandem for the little ones. During high season, expect to join a race with strangers on similar cars, with separate races for children and tandem cars.", "author": "Arthúr Ó", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyNHJYbDJRRRAB", "timestamp": "a year ago"}, {"text": "Only 8 minutes racing but track is very good. Very relaxed. Staff helpful. Great family fum.", "author": "Jamie Walker", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkMlYzaERObUU0UmtaMFN6bEdSemMyU0dacE4xRRAB", "timestamp": "4 months ago"}, {"text": "Great place for fun! A bit short track so many turns and not so high speed. Recommend!", "author": "Linus Ring", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WSGRsaE5NVkJDU3kxRWVIWjRZV2xNVDBGcWMyYxAB", "timestamp": "2 months ago"}, {"text": "Best pitch as of this week\\nThey installed a new timing system this week. You enter your cred and picture is taken for the log. Once you start driving, the lap time comes up on the big screen. If you lead the race, your picture shows up as well. The kids Love it!!\\n\\nSeems to get the fastest times in the morning before the track is too warm. However, when windy, dust is making it a bit slippery. So that makes it the best time to drive in the evening\\n\\nPrices are ok. (cheaper in Norway funny enough :-)).\\n\\nFriendly staff!\\nAC-conditioned room with a view over the track and race monitors.\\n\\nBring some water with you as you get very thirsty in 36 degrees!\\n\\nGood ice cream for sale.\\n\\n55 sec with the F-300 is the time to bit:-)\\n\\nF-200 good for kids\\nF-400 is fun, but Very hard to drive fast! Exhausting.\\nF-300 good fun\\n\\nWill be back!", "author": "Sam Barman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRczd6YlFnEAE", "timestamp": "7 years ago"}, {"text": "A great place to spend time and have great fun. The track is long and full of turns. Fast go-karts, which further enhances the driving experience and puts a smile on your face 😁", "author": "Marcin Cichoń", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMbmFYWm9BRRAB", "timestamp": "Edited a year ago"}, {"text": "Very nice track and quiet decent Karts, at the least the 300. Telemetry is very good! Fun is assured 😎👌", "author": "Andrea Torri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqbk9HWHV3RRAB", "timestamp": "a year ago"}, {"text": "A very good family run kart track. Extremely friendly..low prices ,choice of karts slow-fast and children's karts and doubles.\\nI have been here many times.", "author": "Nigel Cox", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bExTRlFBEAE", "timestamp": "3 years ago"}, {"text": "Great experience for children and adults. Friendly, helpful staff. Will definitely return", "author": "claire Gray", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvNE1XVktREAE", "timestamp": "9 months ago"}, {"text": "Very friendly welcoming staff who speak great English and were really happy for my husband to have a drive around despite none else being on track.", "author": "emma webborn", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBd1BUMzhRRRAB", "timestamp": "a year ago"}, {"text": "Nice track, good safety in place and organisation. Kids enjoyed it a lot", "author": "Dave Lowe", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxd1QxcE5OSFZuZHpaeVpVWm1VbUl3VWtoUFMxRRAB", "timestamp": "2 months ago"}, {"text": "Great and competitive karting track. A challenging circuit where you can enjoy with family and friends.", "author": "Rod", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GS1lXZzRkMVYwVTBsV2IzaFZhV1JwTm1SaFZsRRAB", "timestamp": "a month ago"}, {"text": "Amazing opportunities for the young and old, even 2 seated cars for parent and child if the little one isn't old enough to take the wheel. Very pleasant day out. Also has cafe and roof top viewing.", "author": "June P-bell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVOV92LVN3EAE", "timestamp": "6 years ago"}, {"text": "Very nice track. Smooth and big kerbs. The carts were good enough. And the staff was helpful.", "author": "Kenneth Madsø", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWaldXYzVZVFZFZFVOdFRWaEpibEphZGkxSVlWRRAB", "timestamp": "6 months ago"}, {"text": "Fantastic track and karts. Cant believe it wasn’t busier the day we went. Big outdoor track with decent options for karts depending on your level. Will definitely return again!", "author": "Rob T", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbTRYT09nEAE", "timestamp": "6 years ago"}, {"text": "Very friendly family run go cart track, brilliant fun for all the family. Highly recommended. Our 2 sons had a ball there on our recent visits.", "author": "Martin S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bFA3Z0dBEAE", "timestamp": "3 years ago"}, {"text": "Great place to come for ages 6+. Friendly staff, well looked after go karts and the track was really good. We will be back.", "author": "Rebecca Tarrant", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqdUpTRFh3EAE", "timestamp": "a year ago"}, {"text": "Everyone had a great time 40 euros for 3 karts and a round but it was worth it to see their faces", "author": "Michelle White", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4eThlMTJnRRAB", "timestamp": "2 years ago"}, {"text": "Awesome fun, very friendly staff... and if you go on a Wednesday, you will get twice the time for the same price", "author": "Drew Wilson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQteHNPcXdRRRAB", "timestamp": "3 years ago"}, {"text": "family friendly and lovely atmosphere. Helpful staff", "author": "Olusegun Ilesanmi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwdEl6ZkVBEAE", "timestamp": "2 years ago"}, {"text": "Worth the money!", "author": "Kenneth Jenkins", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5R1pteEhXazA1V0ZSS1IyOXlaemRKWmxGUE5rRRAB", "timestamp": "a month ago"}, {"text": "This is the second time I have been here: once with a few friends and this second time with young family. It's been a great experience both times, good value and good service. It's a good track suitable for those new to go karting whilst being suitable for more experienced drivers due to the different power vehicles available. You can buy a drink and have a game of pool here too.", "author": "Michael Reid", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzMnFDTjFBRRAB", "timestamp": "a year ago"}, {"text": "nice venue. good track. friendly people and they speak english really had agood day", "author": "sven van raemdonck", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5NzgyekxREAE", "timestamp": "4 years ago"}, {"text": "Brilliant. Really good track. Cheap prices. Definitely going again.\\n\\nPlenty of parking.", "author": "John Saunders", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGdXBxU3dnRRAB", "timestamp": "2 years ago"}, {"text": "Really nice set up, great circuit, 1100m. Karts are good and well balanced. Friendly happy staff. Extra good value on Wednesdays", "author": "David Hopkins", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOTRfV013EAE", "timestamp": "3 years ago"}, {"text": "I come here whenever I fly from England to visit family. I’ve traveled the south coast of the UK testing tracks out and coming over to Spain I’ve also tested a few tracks out. This track is by far my favourite. Staff are wonderful and happy to help. I asked if I could pay for 2 sessions and do 16 consecutive minutes instead of 2 sessions of 8 minutes and they had no issue in me doing so. I asked to use the same kart every time I go so I could compare lap times with my previous sessions and they had no issues accommodating that. Will definitely come again and recommend to people", "author": "Kiran Merrick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNnRldUxBEAE", "timestamp": "a year ago"}, {"text": "Every year we come back and we never get bored, it’s now like a family tradition.\\nFriendly staff who speak English and very good with kids.", "author": "austen blakemore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMyNUtuQTJ3RRAB", "timestamp": "Edited 3 years ago"}, {"text": "Nice experience ! Worth to go there again. Great assistance.", "author": "Peter Dingenen", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKbGVXaHZjVFU1WDNkSlVGTlBiblpLY0hoRGVXYxAB", "timestamp": "3 months ago"}, {"text": "Been here twice over the last month great karting track to have fun with friends", "author": "Angela Stout", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cnRhTnVRRRAB", "timestamp": "2 years ago"}, {"text": "Well run enterprise staff are extremely competent and are very comfortable when dealing with the customers.", "author": "Henry Murray", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkcFgySk9Oelp2WW5KTk5EVndiWGxuVWtSV2VFRRAB", "timestamp": "5 months ago"}, {"text": "Great karts, they are pretty fast. Friendly staff and a good track. Not so big but big fun.", "author": "Jonathan “Bech” Mayer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4MGVpZUJnEAE", "timestamp": "5 years ago"}, {"text": "Wide variety of karts even an adapted one.\\nStaff are good and knowledgeable lap time printouts are a great talking point for friendly rivalry.\\nThe track is actually pretty strenuous if (like me) you've not done it recently.\\nDemanding and twisty with\\nvaried corners.", "author": "Andrew Saint", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Excellent!!! Well organised and great track!!", "author": "Sue Bowcock", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Had a great time at Go Karts Mar Menor, very professionally run and the karts (even the 200) we’re nice and quick around the track.\\n\\nVery well set up for a stag /hen visit as a nice bar area and pool / table football games as well as plenty of seating indoors and out. But we went as a family 10years up and we all had a great time.\\n\\nA definite recommendation from us,", "author": "Richard Oatway", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Really good set up, great location and great for kids.", "author": "Paul Con", "rating": 5, "source": "dom", "timestamp": "3 months ago"}, {"text": "Have to say this is great fun, well run with top notch kit.", "author": "The Grey Gappers", "rating": 5, "source": "dom", "timestamp": "4 years ago"}, {"text": "Great experience and track, Staff really friendly and helpful. Loved our visit and will be back.", "author": "Sass Cheshire", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "absolutely fantastic place best by far in Murcia. great carts and the track is amazing", "author": "jonny carter", "rating": 5, "source": "dom", "timestamp": "6 months ago"}, {"text": "Great fun for the whole family. Lovely family that run it.", "author": "Jennifer Murray", "rating": 5, "source": "dom", "timestamp": "4 months ago"}, {"text": "We had a fantastic time at this kart track. Booked on line for two us at 1130am and when arrived we were the only people there. You check in at the cafe and its a straightforward job. Staff in the cafe were very friendly. The whole place …", "author": "Ned Liddemore", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Great session. Very enjoyable despite the result! 😁😁 …", "author": "Paul Masters", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Absolutely great. Great value, great service and a great track. We went as a family with a teenager and a 9 year old and everyone was catered for. Faster karts for dad and older son and slower kart for younger daughter. The staff separated …", "author": "warwick clifton", "rating": 5, "source": "dom", "timestamp": "7 years ago"}, {"text": "Great way to spend An hour or two with friends and family. The whole setup was made very easy and we literally turned up and was on the track within 5 minutes. No messing about. It's a good track too with plenty of opportunities to overtake and challenge your driving skills. We'll certainly be returning again soon.", "author": "Lee Clements", "rating": 5, "source": "dom", "timestamp": "4 years ago"}, {"text": "Track is good but €20 for 8 minutes is a lot and the track is small. Longer time would be better", "author": "Emma Lacy", "rating": 3, "source": "dom", "timestamp": "8 months ago"}, {"text": "Class experience, great staff, great track. Couldn’t ask for more.", "author": "Darcy Lawler", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Brought my family here a couple of times at Christmas and it was so much fun! Great for all ages and especially those looking for adventure! The staff are friendly and the helmets and go karts cleaned after every use. Minimal waiting times …", "author": "Julie McAllister", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Very well organised and very efficient at getting players on and off with little fuss.", "author": "Linda McGregor", "rating": 5, "source": "dom", "timestamp": "6 months ago"}, {"text": "Great set up, we did the Grand Prix. Really good, lap times, well organised, decent go karts", "author": "Dave Tomlinson", "rating": 5, "source": "dom", "timestamp": "7 months ago"}, {"text": "Felt was really good value for money. €18 for 8 mins. Doesn't sound a lot, but it's plenty when your out there (around 8 laps of a 1km circuit). Massive outdoor screen display where you can see your lap times and also live video feed.\\nNice cafe onsite and good views for those watching. No need to book as they continually race.", "author": "Mark LoGalbo", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Very good and long track. Good value for your money. Definitely coming back soon. Even if we were about 10 people on the track, it was not really crowded.", "author": "Fredrik Hjelm", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Great day out for all. Thoroughly recommend a visit.", "author": "Thomas HIll", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNnZ6anl3RRAB", "timestamp": "8 years ago"}, {"text": "Very good. Well run and lots of fun.", "author": "A French", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGWlVVOW1Xamx1T0ZSSVMxQnZjVEYwVTJSWE5GRRAB", "timestamp": "4 months ago"}, {"text": "Very drively and power place.\\nRegular competition on cart and motorbike.", "author": "Dima Shirokov", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzdjltaTVRRRAB", "timestamp": "5 years ago"}, {"text": "Grumpy man who looked like he hated everyone coming there… Also we paid for 8 minutes but only got to drive 6 minutes! Noticed it when we looked at the paper with the scores when we got home… There was not a single soul there other than me and my girlfriend, so that they cutted down our time with 2 minutes is NOT ok. It’s never ok, but especially when there are nobody else there. Rip off!\\n\\nAdded a picture to show that we didn’t get 8 minutes. I drove 6 rounds, one of them was 1 min 3 sec and the rest was under 1 min.", "author": "Stein Ove Helset", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWOThuWnB3RRAB", "timestamp": "Edited a year ago"}, {"text": "If you're a karting lover don't come here, safety is just not there. You can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. Be aware that there are no marshalls with flags on the track. Maintenance of the karts is not great. They could do a lot better for such a nice track.", "author": "David Van", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE", "timestamp": "a year ago"}, {"text": "Good afternoon. Friendly staff. Very reasonable prices for an adult/child kart.", "author": "carol allan", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1b2MyMWZNMlo2TFZKbFkxVjRaak41U1hOYVNHYxAB", "timestamp": "7 months ago"}, {"text": "Great value for money. Big track 👍", "author": "Victoria tanner", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kwNVluWkpUMnhVUzJjNFQxZFZaVEV5T1ZZM1ZrRRAB", "timestamp": "5 months ago"}, {"text": "Very good. Karts drive amazing and good a great range of selection to choose from", "author": "dave skilton", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSV1V6Qkdka0Z0WlhOclNGUnFaMFZvTm5BNFUxRRAB", "timestamp": "6 months ago"}, {"text": "Good karting circuit with a lot of choice. For adults and kids. Also nice investments done during the last years.", "author": "steven helsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4bS1laGdnRRAB", "timestamp": "5 years ago"}, {"text": "Excellent place for Supermoto riding. Fresh facilities, very helpful and pleasant staff. Worth a visit!", "author": "Fredrik Blomström", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbEpEY2lRRRAB", "timestamp": "5 years ago"}, {"text": "Great place to visit and super cheap for a lap for the kids on 100cc = £10.\\n\\nYou can't go on with the younger kids if they want to go themselves.\\n\\nFun and great track!\\nFacilities are fab", "author": "Karl Young", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwa3FLNnBBRRAB", "timestamp": "2 years ago"}, {"text": "-1 star: On our 2nd round all other carts (200cc and 300cc) got extra time (10 min instead of 8), but we (400cc carts) only got the standard 10 min. This meant that we didn't get the two extra rounds, without the other carts, that we paid for.\\n\\n-2 stars: La jefa had absolutely no understanding for our reasoning and complaints. After shelling out 180€ in total for two rounds (2 rounds x 3 people x 400cc), we felt a little cheated. It would cost them so little, next to nothing, to give us a couple of extra rounds to set things right.\\n\\n+1 star: Because the 400cc carts are INSANE!\\n\\nWould easily have given 5 stars if the boss had been more forthcoming and set things straight. Being service minded is more important in order to earn money (in the future), than saving scraps in the moment. Will never spend money here again.\\n\\nSome good aspects:\\n- Most of the employees are helpful and service minded.\\n- The track is good.\\n- Times are shown on a big screen visible for the drivers.\\n\\nTips for improvement:\\n1) Always let the 400cc start first\\n2) Take the time on the two extra laps for 400cc. These two rounds are the most important to time since this is where one can excel.\\n3) Let the 400cc have two extra minutes (as it actually says) instead of two extra rounds.\\n4) Be more service minded.", "author": "Jo Nas", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MW9uUVFBEAE", "timestamp": "Edited 2 years ago"}, {"text": "Great family fun", "author": "Ian Maynard", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VNS2QyNjJGczQyb3BBRRAB", "timestamp": "7 months ago"}, {"text": "Watched our son and grandchildren race each other. You can ride with your kids or for the more experienced you can go around pretty fast and obviously slower for children. Really enjoyable for everyone.", "author": "Alan Walker", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGd3BLSUNREAE", "timestamp": "2 years ago"}, {"text": "Excellent outdoor track with a selection of karts for all ages and abilities. The pilot day deal 2x1 on Wednesday is great value. The staff are lovely and helpful. The step from F300 to F400 is significant.", "author": "Honest Jock", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4cDVDMVdnEAE", "timestamp": "2 years ago"}, {"text": "Service is top! Price affordable, all good 👍", "author": "Lidia Reshnivetska", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudEt5R0ZREAE", "timestamp": "a year ago"}, {"text": "Great outdoor track! F-300 carts were quick! (Quick enough anyway) big board outside to check your lap times, also a free printout from reception! Cheapest and BEST in the area! All staff very polite and helpful, we’ve been a few times this holiday, Don’t waste your time with other Karting tracks...just go here! You won’t be disappointed 👍👍", "author": "Rob Wagner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVbzg2UVNnEAE", "timestamp": "6 years ago"}, {"text": "I have been here numerous times. Very easy to book through their WhatsApp. Staff are friendly and helpful. Had a brilliant time with my group of 12 people and will be returning very soon.", "author": "Samuel Lambert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1dWRPWDh3RRAB", "timestamp": "3 years ago"}, {"text": "A repeat visit here for us. We really like go-karting here. Good track layout, staff are friendly and helpful and it’s reasonably priced. A bit out the way so a car is needed. But for a good afternoon out racing it’s ideal.", "author": "Tony Garcia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKbktiZnhRRRAB", "timestamp": "2 years ago"}, {"text": "Use it every year. The kids love it. Nice size track. Different engine sizes for all ages and experiences. 100, 200, 300 and so on. Amazing how many pay extra for 300 but get over taken by 200s :-)", "author": "Silver Surfer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVcDc2U2JnEAE", "timestamp": "6 years ago"}, {"text": "It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednesdays to each customer, but didn't allow a single parent a chance to make ONE lap with his 2nd child instead of all those extra 8 minutes!!?!! A single parent raced for about 6 minutes with one child and had more than 8 minutes left. He asked to give a 2nd child a chance to do just ONE lap (with same parent) and you refused. We had to pay for a new ticket worth 16 minutes to do ONE lap with 2nd child. Absurd! It's a great shame to your business and managers or owners of this venue. We will not return to your venue and will tell everyone we know the same if you do not put this right. I understand there are rules, but this situation was so absurd that there are no words for it...but shame on you.", "author": "Iveta", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB", "timestamp": "3 years ago"}, {"text": "A bit expensive, so it is a rare pleasure :D But the place and service are great! We celebrated a kid's birthday and the menu was very rich!!", "author": "Diana Baryseva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOMDhqYkd3EAE", "timestamp": "2 years ago"}, {"text": "Spent a few hours here on Friday. The kids (age 12 & 14) had a fantastic time. The staff were really friendly and the prices are very reasonable. All in all a brilliant experience.", "author": "Christine Ashby", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBNzc2d1lREAE", "timestamp": "7 years ago"}, {"text": "Really fun experience, only takes about 1/2 hour to do but definitely worth it.", "author": "Kaitlin Hunter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRbWVPS3N3RRAB", "timestamp": "10 months ago"}, {"text": "One of the best tracks I've done in Spain, well-maintained karts and helpful, friendly staff. Prices are a bit higher than similar tracks around, but they are not that strict on actual run times, so it evens out.", "author": "Arne Willemyns", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPay03MHNRRRAB", "timestamp": "3 years ago"}, {"text": "Brilliant service and great fun. I recommend them.", "author": "Nigel Hudson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tZemJYZFlVRmd3YTBkc1VDMVViblZpVkZZM2MwRRAB", "timestamp": "7 months ago"}, {"text": "Great Great Go-kart track, friendly helpful staff. Easy to find off motorway EP7, easy parking. Good shop and cafe on site. Good prices too: €12 for 8mins, very reasonable (especially compared to UK in £GBP). Great track, 10 varying turns, about 1.2km long. We used F200 karts (fast enough). F100 for smaller children, F300 and F400 for enthusiasts. Highly recommended.", "author": "Laith Hofayz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZdmRiRjdRRRAB", "timestamp": "6 years ago"}, {"text": "Nice location, a variety of different effects in the motors. Maybe a longer straight to be able to fully use the effects of the faster cars. I think U will leave pleased- Enjoy!", "author": "Rikard Eklund", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKcG8tWVJBEAE", "timestamp": "2 years ago"}, {"text": "Very well organised. Staff very helpful and friendly. Karts are good and grades to your ability and age. Will go again. The roof top seating over looking the track and digital score boatf", "author": "Shamus Carroll", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMybXVuOHd3RRAB", "timestamp": "3 years ago"}, {"text": "Great place for all ages tandem karts for children with adults my daughter is nearly 8 and only just managed to drive her own kart (1 proud dad). Great fun and very reasonable prices too. Highly recommended", "author": "Steve Davies", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVb3Q2c3ZnRRAB", "timestamp": "6 years ago"}, {"text": "Great place. Go karts to suite everyone from kids aged 6+ to adults. Kids are 8 euro for around 8-10 mins and on Wednesdays it's 2 for 1. They have a cafe which is reasonably priced. All in all a great day out. Will deff recimmend.👍", "author": "John Maxwell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVOXRIQjlRRRAB", "timestamp": "6 years ago"}, {"text": "Great place to enjoy on holiday, not too expensive", "author": "Gill Brindley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1aDRhNXVBRRAB", "timestamp": "3 years ago"}, {"text": "Absolutely brilliant!! Well organised, reasonably priced and the kids loved it as did the adults!! A fun activity to do whilst away on holiday xx", "author": "Amy", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dk9hMUl3EAE", "timestamp": "3 years ago"}, {"text": "Lots of fun, great track. Following all hygiene rules. The karts are fast and some of the bends tricky. The staff were friendly, helpful and safety focused. Would take the family again.", "author": "S Constance", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhN29HS0FnEAE", "timestamp": "4 years ago"}, {"text": "We had a great meal here tonight. Lovely food and excellent service !!! Thank you !!!", "author": "Renata Kehoe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBMXBTZHhRRRAB", "timestamp": "11 months ago"}, {"text": "Nice place.. very friendly family run business. Good for children and adults. Not normally a long wait. Good prices", "author": "nigel cox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwbWVIcXRRRRAB", "timestamp": "2 years ago"}, {"text": "Great GoKart racing track next to Murcia airport, San Javier. Decent sized track, well laid out and a challenge for novices and experienced 'GoKarters'. They have 100, 200, 300 and 400cc karts, plus 2 person karts (usually parent driving with young child passenger) the races are segregated as much as possible so the younger, novice riders in 100cc karts and 2 person karts race together. I have tried 200 and 300cc karts and both are great fun. The race marshalls are very quick to deal with any spin offs or breakdowns. The track is about 1km long and a decent time for a 200/300cc kart is around 1 minute per lap so average 60km/hr. Very fast when you are only a few centimetres off the ground ! There is a cafe / bar which serves soft drinks, coffee, wine and beer along with snacks. The staff are friendly and they have a lovely old dog who plods around the bar area. Plenty of free parking next to the track. Enjoy !", "author": "Tomas Thumb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndjllTHVnRRAB", "timestamp": "8 years ago"}, {"text": "Kids both loved it and already want to go back. 5 types of car. Slowest are F100 (6yrs+) and Tandem (for adults and kids 6 yrs+) which go around together. These were 8 euros for 8 minutes.\\nNext up are F200 (min age 12) 12 euros / 8 mins; and F300 (min age 16) 17 euros for 8 mins.\\nThen fastest for adults only are F400s, which are very fast.\\nDepending on numbers sold F300s normally race with F200s or F400s.\\nTrack is large 1100m with several corners. Fastest lap times are sub 1 minute for fastest cars.\\nThere is a very good electronic leaderboard and split timing measuring your fastest lap and gap to car in front.\\nOverall very good and will probably go back.", "author": "Gary Pattinson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVeG9fakpBEAE", "timestamp": "6 years ago"}, {"text": "Great track with performing karts!\\nThe twin brothers are doing a great job to give you a real racing experience from beginner to advanced drivers.\\nAlso good covid rules and disinfecting of karts and helmets.", "author": "Steven Moulaert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhN0pYQ213RRAB", "timestamp": "4 years ago"}, {"text": "Brilliant place. Lovely staff, very helpful and friendly. Very very reasonable rates. Will definitely go back with the grandchildren. Food good too.", "author": "Cathy Boshell", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwNGRXRWhBRRAB", "timestamp": "6 years ago"}, {"text": "Excellent , staff friendly and courteous, great choice of karts for all ages. If your part of a group and you decide not to go on a kart there is a Nice seating area to get a Drink or just chill and watch.", "author": "Vincent McColgan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxMDQ3UDl3RRAB", "timestamp": "4 years ago"}, {"text": "Group had a couple of races .Staff are really helpful .Everyone had a blast. Great value .Will definitely be back & would highly recommend. 100%", "author": "les fitzsimons", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlLW9uZXVnRRAB", "timestamp": "3 years ago"}, {"text": "Really good experience , proper go karts super track friendly faces and great service at a great price , recommended", "author": "Drew Morrow", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIOVlTU0VREAE", "timestamp": "a year ago"}, {"text": "Honestly one of the best places I have been karting. Grippy track, fantastic mixed layout, well maintained carts and most importantly, LOVELY staff - truly a great place to go for a fun bit of karting - check it out if you're nearby!", "author": "Dom Dwyer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHNjRqekFREAE", "timestamp": "4 years ago"}, {"text": "Very enjoyable experience here. Have been a few times now and the whole family loved it", "author": "Miriam Dore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURELXNPVG1nRRAB", "timestamp": "a year ago"}, {"text": "Love coming to this track,been coming for a couple of years,very nice track,very friendly staff and very reasonable price good fun here we go again for the 3rd time this week.", "author": "Steve Hall", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlaU9yR05REAE", "timestamp": "3 years ago"}, {"text": "Very good fun. Good quality karts from 2 seaters upto very fast karts. Open 10.30am-10pm. good track has timing devices and lots of other GPS trackers for people viewing.", "author": "Matthew Cook", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3X1pQSFp3EAE", "timestamp": "7 years ago"}, {"text": "Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25 minute drive… and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. No mention of needing to reserve", "author": "Samuel Burgess", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE", "timestamp": "4 years ago"}, {"text": "Best lap in the area they say and best that I have seen myself. It's just great. All kinds of karts, 100, 300, 300, 400 cm2. This is the place to go to have super good karting experience", "author": "Юрий Сорокин", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHdDQ3Q1ZBEAE", "timestamp": "4 years ago"}, {"text": "Granddaughter is rating this , she is nine and says the go carts went fast , lots of laps and the chappie was nice who put her helmet on\\nNice place", "author": "vicki wardle", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNWN2b0hREAE", "timestamp": "2 years ago"}, {"text": "Took my daughter for her first time karting here. We all had a great time. Would go again definitely. Muy Bien.", "author": "Dan Norton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaMXBxZTVRRRAB", "timestamp": "2 years ago"}, {"text": "Good real race track. Proper kerbs on all corners.", "author": "Larry Dalton", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201UU1YcDVTVzFOTVRocFJrVnpWbkUyYTFoMU5XYxAB", "timestamp": "7 months ago"}, {"text": "Take the kid a few times a months all the staff are first rate...have now joined a group to race at the track again well organised and friendly/helpful staff", "author": "thomas lazenby", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHNDlXN2tBRRAB", "timestamp": "Edited a year ago"}, {"text": "Incredible fun. For around €20 you can get in 8 long laps on an excellent track. 🤩", "author": "Cathy Diver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeG9YVmZnEAE", "timestamp": "Edited a year ago"}, {"text": "Great Team there, very friendly. good prices.first 3 Winners get a medal 💪✌️we had an team. event with our football club.", "author": "Lukas Wojciak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneUplNFp3EAE", "timestamp": "7 years ago"}, {"text": "Took all 3 kids here twice ages 5 , 9 and 14 all had a go including me and loved it. Great fun . Highly recommended.", "author": "Ian Crawford", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRbHYtRzVBRRAB", "timestamp": "7 years ago"}, {"text": "Great range of karts including 2 seaters for children up to 5 to go with a parent. Really friendly staff, all in all a fabulous way to spend a few hours.", "author": "David Swift", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZa1p2MmxnRRAB", "timestamp": "6 years ago"}, {"text": "Fantastic place! A good range of karts and a nice long outdoor track with food and drink on site. Great fun for all the family.", "author": "vincent tonner", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwdl8zVHFBRRAB", "timestamp": "6 years ago"}, {"text": "Great fun if your at a loose end. Cheap fun. Friendly staff. Definitely worth a go", "author": "Trefor Woodcock", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwenZ2QWp3RRAB", "timestamp": "2 years ago"}, {"text": "Very nice place to enjoy a spare hour. For all ages. Good prices. Staff ok", "author": "Trefor Woodcock", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwaHV5aVFBEAE", "timestamp": "2 years ago"}, {"text": "Brilliant day for adults and kids.", "author": "Dawn Dixon", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poMFFXUjBRM04wYWtwRUxXTjRNVmR6TWtrd1QxRRAB", "timestamp": "5 months ago"}, {"text": "Karts for all ages, nice circuit and friendly staff. You should make a reserve if you don't want to wait", "author": "jmsgdt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxdXBLTVpBEAE", "timestamp": "2 years ago"}, {"text": "Cool place to race. I was surprised by variaty of cars available. I can't hardly imagine to ride their fastest model without some experience. Price was decent.", "author": "Bohumil Mara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwcU5lbmZREAE", "timestamp": "6 years ago"}, {"text": "Friendly staff with a good choice of go karts. Great fun, 5/6 laps in total and the go kart I used (f-300) had plenty of power, hands were aching by the end.", "author": "Ciaran Rouse", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSc2Vta1l3EAE", "timestamp": "2 years ago"}, {"text": "Great fun, well run and organised. Give it a go.", "author": "Chris B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvOVp1MTJnRRAB", "timestamp": "9 months ago"}, {"text": "Such a great experience from enquiring about our Stag event, through to looking after us ensuring everyone had an amazing time.", "author": "Neil Postlethwaite", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4OC1XLWxnRRAB", "timestamp": "2 years ago"}, {"text": "Absolutely amazing, it's quite quiet which is surprising since its so good, a must if you have a car to get there", "author": "stgnats", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbi1TTkVREAE", "timestamp": "6 years ago"}, {"text": "Proper karting track and decent karts. Staff all quite friendly and I thought it was good value for money. Various levels of karts. The 2seater karts for kids were great fun too.", "author": "Eoin Tyrrell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHbXBhQ2V3EAE", "timestamp": "4 years ago"}, {"text": "Top place to go staff are very helpful and are a great laugh. They have an amazing track and it's fun for everyone", "author": "Chris Leater", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnN003a05BEAE", "timestamp": "7 years ago"}, {"text": "Fun.. but the steering wheel was so hard to move so it really hurt. Last 2 minutes was living hell for my under arms", "author": "Thor “Torre”", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MTdYSmZnEAE", "timestamp": "3 years ago"}, {"text": "Great fun for the children and the adults enjoyed it too! Only criticism was that they don't give you long enough on the track!", "author": "Pauline Memoli", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMjVUVFVnEAE", "timestamp": "4 years ago"}, {"text": "We had a nice time together with friends. Nice variety of karts for different skills. Not expensive, lot of fun.", "author": "David Cabanes", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPOUlEVkxnEAE", "timestamp": "3 years ago"}, {"text": "Nice karting with the possibility that kids can race to on their own level", "author": "Hanne Diels", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvb0l5RUZBEAE", "timestamp": "9 months ago"}, {"text": "Very enjoyable racing today. Great track and great facilities with very nice guys. Definitely recommend", "author": "Paddy Bellew", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1LUwzNVpREAE", "timestamp": "3 years ago"}, {"text": "Great track.. really quiet this time of year. Went 3 times during holiday​ and each time it was just us on the track.", "author": "Karen Snowe McCaul", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBN1lpel9BRRAB", "timestamp": "8 years ago"}, {"text": "Good fun for all abilities and all ages from 4 yrs up. We'll organised.", "author": "brian cox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwcTZpWjV3RRAB", "timestamp": "Edited 2 years ago"}, {"text": "The best place in the area for karting without a doubt, the staff are very friendly and professional. 10/10", "author": "Ollie Fox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREMnZmNjVRRRAB", "timestamp": "a year ago"}, {"text": "Brilliant go-karting. Track and karts are top class. Very friendly staff.", "author": "Paul Shanley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3djh6YzRnRRAB", "timestamp": "a year ago"}, {"text": "Great track, carts and Staff. Overall recomended", "author": "Karol Gucwa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5bXNhVEVBEAE", "timestamp": "a year ago"}, {"text": "Health and safety standards are not very high witnessed 2 accidents and were only there for an hour\\nApart from that excellent track", "author": "Theresa Poole", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwd29uazN3RRAB", "timestamp": "6 years ago"}, {"text": "Very nice staff and a good track. Had a good time with the family, well worth a visit.", "author": "David Kettley", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3eWItcUhnEAE", "timestamp": "7 years ago"}, {"text": "Always good fun at go karts Mar Menor, well and truly beaten by my son this time 😁😁", "author": "Daniel Pease", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqX1lDbnRnRRAB", "timestamp": "a year ago"}, {"text": "Good fun Good time fantastic place", "author": "Meow Supanunt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMExiaVhnEAE", "timestamp": "Edited 2 years ago"}, {"text": "Super track. Very professional team.", "author": "Patrick Bigaj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1eTlIb0pnEAE", "timestamp": "3 years ago"}, {"text": "My 2 grandchildren loved this place. Reasonable prices and a good track.", "author": "Monica Cunningham", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXMzlpTUdnEAE", "timestamp": "3 years ago"}, {"text": "Great place especially when they have the deals on 👍", "author": "Debbie Law", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnd192X3BRRRAB", "timestamp": "11 months ago"}, {"text": "Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to another venue.", "author": "Ian Routledge", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE", "timestamp": "3 years ago"}, {"text": "Good facility, helpful staff. Nice little cafe, good gokarts, and covered area to watch from.", "author": "Amy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1elBxWnhRRRAB", "timestamp": "3 years ago"}, {"text": "Great track, fast carts. Trust me, 10 mins is plenty on these carts. You'll be wrecked", "author": "Chris McNamara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRM2Z2amRnEAE", "timestamp": "8 years ago"}, {"text": "Kids love it there", "author": "Darren Soley", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0UmIySnZlR05FUldrME9UTkdjM2xUTjAxU09WRRAB", "timestamp": "5 months ago"}, {"text": "My grandson really enjoyed it well worth a visit.", "author": "Thomas Burke", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiNWVIeWdRRRAB", "timestamp": "a year ago"}, {"text": "Fantastic kart circuit, fantastic staff, the karts were well maintained, and looked after, with plenty of poke. I will be visiting again before I leave fingers crossed.", "author": "peng 917", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRaS1XM0FREAE", "timestamp": "8 years ago"}, {"text": "It's a great 8 mins spent\\nWe really enjoyed it will come back soon", "author": "khal ali", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1eWJ2aGh3RRAB", "timestamp": "3 years ago"}, {"text": "Always great to come back. Been waiting 4yrs..All fun for all the family.", "author": "Matteo Kcah", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwd0pidkVBEAE", "timestamp": "2 years ago"}, {"text": "Jus been to the Go Karts at Mar Menor..1st class professional and well marshalled circuit.....Great value for money ....and fast karts....loved it.", "author": "karl kindred", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRaDRlY21BRRAB", "timestamp": "7 years ago"}, {"text": "We go everytime we'rein Spain, Go-Karts on a track exactly what you'd expect.", "author": "FFA Loughborough", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1b2U3RXpnRRAB", "timestamp": "2 years ago"}, {"text": "Good location great track....thou no pre safety talks like uk...\\nJust get in kart and go", "author": "peter hill", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNVeE9CZBAB", "timestamp": "6 years ago"}, {"text": "Great time Great price for all the family highly recommend will go again", "author": "Andrew Mcclelland", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNktTZkFnEAE", "timestamp": "2 years ago"}, {"text": "Excellent circuit, staff very good, great fun and a must visit", "author": "Darren Waddup", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWak8zaUVREAE", "timestamp": "2 years ago"}, {"text": "Really fun place did a few 180 tough, and really funny and good personel", "author": "Casper Davidsson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoaVo2d0t3EAE", "timestamp": "2 years ago"}, {"text": "Outstanding track and karts you'll have a blast", "author": "Steven Lewis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuLWFYV3lBRRAB", "timestamp": "a year ago"}, {"text": "Perfect time to go is on a Wednesday as it it 2x1 (you pay once and your time gets doubled).", "author": "Sebby Carey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNaXJUSjhnRRAB", "timestamp": "6 years ago"}, {"text": "Excellent Go Kart track, friendly staff, excellent location.", "author": "Alan Gemmell", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudnFEOVpBEAE", "timestamp": "a year ago"}, {"text": "Took family for a birthday treat and they all had a great time, reasonably priced,", "author": "nicola howard", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHanU3Tm1nRRAB", "timestamp": "4 years ago"}, {"text": "Loved this place. Could do with more time in track, but great fun.", "author": "Donal Hegarty", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVa19uLWFnEAE", "timestamp": "6 years ago"}, {"text": "Well organised, not too expensive and great fun...especially at night", "author": "Carolyn Cartwright", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1eU1lQkxBEAE", "timestamp": "3 years ago"}, {"text": "Excellent fun time,even though my grandson almost lapped me 🏎😀🤪", "author": "Tommy M", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMXNiUEd3EAE", "timestamp": "3 years ago"}, {"text": "Great track and experience!", "author": "La Salu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNeXd1c1NtbV91bEF3EAE", "timestamp": "8 months ago"}, {"text": "Great place. Staff are excellent. Fantastic track.", "author": "Nigel Drummond", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbHE2MlZREAE", "timestamp": "6 years ago"}, {"text": "Great fun good track.well run nice little cafe bar", "author": "Keith Shrs", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJemRDMmZBEAE", "timestamp": "7 years ago"}, {"text": "12yr old and 7yr old on the F100 go carts. Had a brilliant time can't wait to go back.", "author": "Shaun Massey", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRa2FqZEdREAE", "timestamp": "7 years ago"}, {"text": "Kids loved it. Fairly priced too. Great service", "author": "Carrie Hill", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBcU9IUDN3RRAB", "timestamp": "8 years ago"}, {"text": "Fabulous experience", "author": "Julia Griffin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Vd1VpMDNZVGxKUlMxclQyVldXVVExVkhaUVpsRRAB", "timestamp": "3 months ago"}, {"text": "so fun , enjoy it every time I go ! the new board is great :)", "author": "Anya Beetham", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdU9iUmtRRRAB", "timestamp": "6 years ago"}, {"text": "Brilliant place, excellent for a family experience", "author": "Patricia Sutton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURidXJtcjlRRRAB", "timestamp": "a year ago"}, {"text": "Nice, well organized and good track and carts. Good prices also", "author": "Dave van Zundert", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncHJyTEdnEAE", "timestamp": "8 years ago"}, {"text": "Great place,, spotlessly clean and very friendly accommodating staff.", "author": "Lisa Mooney", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKb1kyaWRREAE", "timestamp": "2 years ago"}, {"text": "Great fun track and good for smaller kids with them having the dual karts.", "author": "John MacDonald", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNValptNmp3RRAB", "timestamp": "6 years ago"}, {"text": "Great track. Carts for all ages. Friendly staff.", "author": "David Small", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRLXZqUnhBRRAB", "timestamp": "8 years ago"}, {"text": "Great track", "author": "cb2011", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaTY2Vk9REAE", "timestamp": "Edited 2 years ago"}, {"text": "Good course and all the carts in good order. Friendly staff", "author": "Mark Sowerby", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bGZIYktREAE", "timestamp": "3 years ago"}, {"text": "Fun but very hard for us old people 😂", "author": "Incognito", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcl9fX0J3EAE", "timestamp": "2 years ago"}, {"text": "Great fun but expensive at 19 euros for 8 minutes.", "author": "R D", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaanFmNEl3EAE", "timestamp": "2 years ago"}, {"text": "Great fun and friendly", "author": "Kelly Ayres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBaWJHUG53RRAB", "timestamp": "7 years ago"}, {"text": "Very good track. Lots of different levels of cars to choose from.", "author": "Hoover Damm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnc3NUVjZBRRAB", "timestamp": "8 years ago"}, {"text": "Great track and selection of karts. Good viewing areas and toilets", "author": "Matthew Rason", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnaWFTcFhnEAE", "timestamp": "8 years ago"}, {"text": "Friendly staff. Great track. Go there!", "author": "Jose Albalad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZc011d2RBEAE", "timestamp": "6 years ago"}, {"text": "Friendly and service minded personal, spend a day here and never brake.", "author": "Fadi Mohsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxNXNubWlRRRAB", "timestamp": "4 years ago"}, {"text": "Great afternoon out, brilliant value and awesome track", "author": "Chris Clarkson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtb3JYLTZ3RRAB", "timestamp": "4 years ago"}, {"text": "Great track, not much time for your money", "author": "Jenny King", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldmNhQWx3RRAB", "timestamp": "3 years ago"}, {"text": "Decent karts, minimal wait and friendly staff. Would def go again.", "author": "Barry Dunmore", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbGZPRFRBEAE", "timestamp": "6 years ago"}, {"text": "Great track and several carts to choose from 100 to 400cc", "author": "Tony Lännbrink", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVZzg3U19RRRAB", "timestamp": "6 years ago"}, {"text": "- fun for all the family and best prices in the area. Vroom Vroom", "author": "Steven Franchi (Big Boy)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMy1UdW1nRRAB", "timestamp": "9 years ago"}, {"text": "Nice place to take children big and small xx", "author": "Christine Mcclafferty", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4X19EbnpBRRAB", "timestamp": "2 years ago"}, {"text": "Very professional good and fast go karts", "author": "Sam Wheeler", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bktDRVV3EAE", "timestamp": "a year ago"}, {"text": "Who doesnt like a go kart? Top value and fun", "author": "ExzaktSounds (ExzaktSounds)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURReW9LbXFBRRAB", "timestamp": "Edited 9 months ago"}, {"text": "Perfect for 'kids' of all ages. Friendly atmosphere.", "author": "Mary Quiroz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNbU5PeGZnEAE", "timestamp": "6 years ago"}, {"text": "Such a fun amazing experience for all the family xxx", "author": "Tasha Taylor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1bUoyMXpRRRAB", "timestamp": "3 years ago"}, {"text": "Great place to take the kids but as good for adults", "author": "James Fraser", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMHJ6cElBEAE", "timestamp": "6 years ago"}, {"text": "Very good value and well organized.", "author": "William Whitelock", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdFlyVURnEAE", "timestamp": "a year ago"}, {"text": "Good fun, well organised. Worth a visit.", "author": "Emma Cowie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjc3ZhVEN3EAE", "timestamp": "5 years ago"}, {"text": "Great day out, well organised and nice facilities.", "author": "Sean Kirk", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwa3ZmY1NREAE", "timestamp": "6 years ago"}, {"text": "Ideal for kids starting out, you will need a car to get there though", "author": "Kenny Ranson (South Shields Mag)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3c28tWkV3EAE", "timestamp": "7 years ago"}, {"text": "We loved it couldn't get Conor of the track", "author": "Colin Fitzpatrick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVc2NDVkhREAE", "timestamp": "6 years ago"}, {"text": "Loads of fun at a reasonable price", "author": "Sam Downes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNudWFtSEZBEAE", "timestamp": "a year ago"}, {"text": "This was on my husbands bucket list. He really enjoyed it", "author": "Susan Lamb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnMEtfajR3RRAB", "timestamp": "7 years ago"}, {"text": "Loved it great place fun for all the family", "author": "Christian Fleming", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNdDR6LUdnEAE", "timestamp": "6 years ago"}, {"text": "Fantastic place to take the big kids and even the small kids", "author": "Steven Hall", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNzlhZnNBRRAB", "timestamp": "7 years ago"}, {"text": "Love this place visit every year we are over", "author": "Donna Marie O'Neill", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1b3ZhSFZnEAE", "timestamp": "3 years ago"}, {"text": "This is great for the kids definitely go back again and again", "author": "Margaret Thompson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwN0tpNWJ3EAE", "timestamp": "2 years ago"}, {"text": "Good karts and the track was big and amazing", "author": "Jonas Bleakley", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONnQ3OUdnEAE", "timestamp": "2 years ago"}, {"text": "Good price, nice ride.", "author": "Kristo Ruuto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMeThibU9nEAE", "timestamp": "a year ago"}, {"text": "Quite loved the experience the go parts were so fast!!!!", "author": "Emma Green", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZdVpPbTFnRRAB", "timestamp": "6 years ago"}, {"text": "Nice service, nice track and nice staff. Will be back", "author": "Jan Ivan Engstrøm", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZNC1QeU1BEAE", "timestamp": "6 years ago"}, {"text": "Brilliant evenings fun . For all ages .", "author": "oisin smyth", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKNUtMZXdnRRAB", "timestamp": "2 years ago"}, {"text": "Very good people and very good installations", "author": "Alejandro Baño marin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5LVBDTmp3RRAB", "timestamp": "a year ago"}, {"text": "Great place to go and best prices for the karts by far", "author": "Ritchie Antony John Antony", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVOS1LZTBRRRAB", "timestamp": "6 years ago"}, {"text": "Nice outside track. Choice of f300 and f400 karts.", "author": "Stefan Vandevorst", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZM2FmSTVRRRAB", "timestamp": "6 years ago"}, {"text": "Great set up, very friendly and helpful.", "author": "Paul Hunter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5bG9TNVRBEAE", "timestamp": "4 years ago"}, {"text": "good value for money. kids love it", "author": "Len Waite", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcU42X0VBEAE", "timestamp": "6 years ago"}, {"text": "Superb! Great fun and well organised", "author": "Kerry Pettitt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2MjcyajdnRRAB", "timestamp": "4 years ago"}, {"text": "Fun little go kart track, great for all ages", "author": "Victoria Solarz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndElHU0NREAE", "timestamp": "8 years ago"}, {"text": "Very clean and well organised.", "author": "Helen Thomas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtOE5TYzRRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Fantastic morning all of us really enjoyed it.", "author": "HYWEL Roberts", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBcE9pWGpBRRAB", "timestamp": "8 years ago"}, {"text": "The best go kart place close to Torrevieja.", "author": "Lowe Rönnlund", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNMGRENkh3EAE", "timestamp": "Edited 6 years ago"}, {"text": "Reasonable prices, friendly staff.", "author": "XXX XXX", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzLVBpaFJ3EAE", "timestamp": "5 years ago"}, {"text": "Great track with very helpful staff", "author": "Paddock Motors", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRNktIaEZ3EAE", "timestamp": "7 years ago"}, {"text": "Very nice employees, nice race track!", "author": "Sjef", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwcmJPZ1RREAE", "timestamp": "6 years ago"}, {"text": "Very good not busy got straight on", "author": "Spencer Brooks", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnck1MS0FnEAE", "timestamp": "8 years ago"}, {"text": "Very good enjoyed it alot", "author": "Cr0wm4n", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVMzZiNGNnEAE", "timestamp": "6 years ago"}, {"text": "Was there several times. Karts are fast.", "author": "obozhdi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlNzlYdm13RRAB", "timestamp": "3 years ago"}, {"text": "Always a nice experience.", "author": "Marina Martinez Moya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3N0pMcGhRRRAB", "timestamp": "a year ago"}, {"text": "Great track, well run!", "author": "Steve Jones", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnc3JhellnEAE", "timestamp": "7 years ago"}, {"text": "Nice place, reasonably priced.", "author": "Francisco Javier Martos Martinez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtOFp2aXBnRRAB", "timestamp": "3 years ago"}, {"text": "Great karts and awesome track", "author": "Adrian", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKOE1EVUJnEAE", "timestamp": "2 years ago"}, {"text": "Another brilliant time , thank you.", "author": "LUKE DAVIS", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1OXR5b0d3EAE", "timestamp": "3 years ago"}, {"text": "Turned up, drove carts, good times", "author": "Shane Brown", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzNkxuUDdBRRAB", "timestamp": "5 years ago"}, {"text": "Great morning & safe staff 👌", "author": "Martin Lakey", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRd3NHek5nEAE", "timestamp": "7 years ago"}, {"text": "Great place for all ages", "author": "Brian H", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVOXJyMjV3RRAB", "timestamp": "6 years ago"}, {"text": "Perfect go karts.. Friendly staff", "author": "Daren Moyse", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZbDZUUmdBRRAB", "timestamp": "6 years ago"}, {"text": "Excellent track.", "author": "Jerry Ryan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQMklIUUR3EAE", "timestamp": "a year ago"}, {"text": "Great stuff, great circuit", "author": "Marcos González Rubio", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOXQtVUZnEAE", "timestamp": "3 years ago"}, {"text": "Very good cars and track!!!!", "author": "noikki 991", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCaWNqZ0RREAE", "timestamp": "3 years ago"}, {"text": "Relaxed atmosphere great fun", "author": "Shane Rowbottom", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVcnFla013EAE", "timestamp": "6 years ago"}, {"text": "Just so good.", "author": "Robert McFagan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONklMN2F3EAE", "timestamp": "2 years ago"}, {"text": "Brilliant day racing", "author": "David Kane", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR6cXEtV1B3EAE", "timestamp": "a year ago"}, {"text": "Top!!!", "author": "Edyta Teeuwen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZdFA3OUp3EAE", "timestamp": "8 months ago"}, {"text": "Good circuit ,well run", "author": "Mark .MacRae", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElTay1BRRAB", "timestamp": "4 years ago"}, {"text": "Great day", "author": "V V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlLVllR01REAE", "timestamp": "3 years ago"}, {"text": "Great for all ages", "author": "Karola McCartan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVME5tc1dBEAE", "timestamp": "6 years ago"}, {"text": "Very good karts good track", "author": "Colin Odoherty", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR3dk9DN0dnEAE", "timestamp": "Edited 6 years ago"}, {"text": "Great fun great place", "author": "john gallop", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzOGF5cEZnEAE", "timestamp": "5 years ago"}, {"text": "Best on the coast 😃", "author": "Daniel Bergenhus", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyblozTGF3EAE", "timestamp": "a year ago"}, {"text": "Excellent.\\nVery enjoyable.", "author": "Colin Male", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMDczQnNnRRAB", "timestamp": "3 years ago"}, {"text": "Well run and good carts.", "author": "Peter Clark", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbzV2NjRnRRAB", "timestamp": "6 years ago"}, {"text": "Another great experience", "author": "Phil Bevan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1ZzZhVVdBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Very good track", "author": "Jose GR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvNzhlUkt3EAE", "timestamp": "6 years ago"}, {"text": "Good track", "author": "Mikael Karlstein", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURia3FmLWJnEAE", "timestamp": "a year ago"}, {"text": "Good. Would go back.", "author": "Kenneth Macindoe", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRdy1ucWlnRRAB", "timestamp": "8 years ago"}, {"text": "Great family fun.", "author": "David Schult", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnbHBtVDdBRRAB", "timestamp": "8 years ago"}, {"text": "Great fun", "author": "Kim Fishpool", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbmF5Q2J3EAE", "timestamp": "6 years ago"}, {"text": "brilliant and not expensive", "author": "Lynn Eardley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBNzQ2bjJBRRAB", "timestamp": "7 years ago"}, {"text": "Great fun", "author": "Mark Magee", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRaEx1a3NBRRAB", "timestamp": "7 years ago"}, {"text": "Goo fun", "author": "Mike Hooper", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNndTVIdUdBEAE", "timestamp": "7 years ago"}, {"text": "Great fun", "author": "Sinead Mcloughlin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvei0ycU5BEAE", "timestamp": "6 years ago"}, {"text": "Great Day", "author": "Tony Dalton", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVaG8tcU5REAE", "timestamp": "Edited 6 years ago"}, {"text": "👌👍👍", "author": "David David", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJbGFidmlRRRAB", "timestamp": "9 months ago"}, {"text": "Top notch setup", "author": "Stephen Watterson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURodkxtUHdRRRAB", "timestamp": "2 years ago"}, {"text": "Absolutely 💯 fun", "author": "Melanie Lucas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMU1uZXJBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent afternoon out", "author": "Neil Duncan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnXzVIclJBEAE", "timestamp": "8 years ago"}, {"text": "Great", "author": "tony paxton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyMEtQajVnRRAB", "timestamp": "a year ago"}, {"text": "Good experience 👌", "author": "paulius patackas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaaXVqYVNBEAE", "timestamp": "2 years ago"}, {"text": "Great day out", "author": "Chris Lewis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwN05hNE9REAE", "timestamp": "6 years ago"}, {"text": "\\"Don't crash\\"", "author": "hib1000", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4djlHcWxRRRAB", "timestamp": "2 years ago"}, {"text": "Great!", "author": "Niklas Hamrin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNktyMzlRRRAB", "timestamp": "4 years ago"}, {"text": "Ok", "author": "Francisco Javier Alcaina Ortiz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1dmZEZnNRRRAB", "timestamp": "3 years ago"}, {"text": "Dpm", "author": "Nuria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPbXRXUzF3RRAB", "timestamp": "3 years ago"}, {"text": "Excellent", "author": "Paul Thomas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaenViY0F3EAE", "timestamp": "2 years ago"}, {"text": "Loved it!", "author": "gill cross", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVZzl5YURBEAE", "timestamp": "6 years ago"}, {"text": "Great place :)", "author": "Cathie Williams", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMmRfTWhBRRAB", "timestamp": "7 years ago"}, {"text": "Lots of fun", "author": "joe burnam", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1d3ZYQXF3RRAB", "timestamp": "3 years ago"}, {"text": "Great place.", "author": "James K.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVNEozeEdBEAE", "timestamp": "6 years ago"}, {"text": "A lot of fun.", "author": "Lars Christian Oppegaard", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRd29IY2l3RRAB", "timestamp": "7 years ago"}, {"text": "Top", "author": "Alex Soetekouw", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNjlUZjNnRRAB", "timestamp": "3 years ago"}, {"text": "Fabulous morning", "author": "Sara Cross", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0Z1BteU93EAE", "timestamp": "6 years ago"}, {"text": "Top", "author": "Momax Momo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMVBDZUJBEAE", "timestamp": "6 years ago"}, {"text": "Awesome Place", "author": "Steve Sumner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURROFlHcFZnEAE", "timestamp": "8 years ago"}, {"text": "great course", "author": "mark Dee", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMktMd1N3EAE", "timestamp": "6 years ago"}, {"text": ":-D", "author": "Tomas Johansson", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURReHZUX0pBEAE", "timestamp": "10 years ago"}, {"text": "Un karting para apto para tora la familia y todo tipo de pilotos.\\nDisponen de una flota de kart apropiada para todos los públicos, desde junior hasta más potentes y exigentes.\\nLa pista es técnica, de cuerda no es excesivamente larga haciendo que las vueltas tengan una duración que van desde los 48 segundos hasta el minuto, dependiendo de la experiencia y el kart elegido para disfrutado. El trazado no es fácil, es técnico y necesita ser estudiado para mejorar los tiempos.\\nEn cuanto a los kart pude probar los F-300 y los F-400. Los primeros destinados a un público más general cumplen su función con creces, te exigen un control minucioso del acelerador para sacarle todo el rendimiento en cada curva y evitar que el motor quede bajo de revoluciones.\\nLos F-400, destinados a un público que busca el siguiente nivel, muy físicos en comparación los F-300, el tacto con el gas debe ser más suave, encontrar el balance perfecto entre gas, freno y volante para un trazado perfecto.\\nSin duda una pista de referencia en el levante.", "author": "Javier Coy", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkdU5VODBTMjkzZEdkaVNFUkZNRkV5Wlc5WExYYxAB", "timestamp": "4 months ago"}, {"text": "Me ha parecido una experiencia muy divertida. Es cierto y coincido con algunos comentarios que el trato de las personas que trabajan hacia el público podría mejorar porque no es que sean demasiado amables. También entiendo que no es fácil mostrar siempre la mejor de las actitudes trabajando con el sol que hacía allí.", "author": "Irene", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21oNVNqUlRTRmxQZWtSd01tWXRUVFpqVjE5TlIzYxAB", "timestamp": "5 months ago"}, {"text": "Una experiencia divertida y recomiendo en familia o con amigos! Pero con prudencia! Intentad poder participar sin los coches más rápidos el ambiente será más agradable!", "author": "Luis Bernabe", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xremNGRkZXRE5WVGpCc2RtODFjRUZFYW5KZlZrRRAB", "timestamp": "5 months ago"}, {"text": "Si te gustan los karts, esta pista es obligatoria! La mejor pista de karts, servicio, atención, coches, todo!\\nTiene zona de juegos para niños, zona de bar, pista de karts para pequeños, pista de karts para adultos. Varios tipos de coches. Pista muy divertida.\\nCada año repito, y ya son unos cuantos.\\nDiversión asegurada!", "author": "Juan Molina Soler", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201dmVUQXphMHRpVEcxdGQyOWFNRXd5WDNsaWFXYxAB", "timestamp": "5 months ago"}, {"text": "Muy simpatica la mujer nos explicó que en pleno agosto es mejor llamar y reservar aun asi nos metió en una sesión, esperamos poco la verdad con la gente que había pensé que nos darían la mil pero en dos turnos nos tocó ,todo muy bien si tengo que poner pegas a algo diria q los granizados q me parecieron demasiado grandes jejejje repetiremos seguro", "author": "Cristina Navarro Carrilero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KYUxUZDJZVVpoYzFGR1N6WldOVmw0V1V4dk5IYxAB", "timestamp": "5 months ago"}, {"text": "No le pongo más estrellas por qué no hay,que pasada de mañana hemos ido un grupo de amigos(16/17) y lo hemos pasado de lujo instalaciones completísimas el personal super amable y los chicos de pista igual me e sentido super cómodo y como un niño pequeño una experiencia para repetir tanto en grupo como en familia!!!!nos vemos pronto gracias por todo", "author": "José Manuel Pereira doblado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tReldHOXhibVZzVEZOTWJWZHhjbEI1U1dGc1NGRRAB", "timestamp": "3 months ago"}, {"text": "Fue mi primera vez en esta pista de karts con una moto Supermoto. La pista está en buenas condiciones y el personal es amable y atento. Las instalaciones son preciosas, con restaurante, bar y terraza en la azotea con una vista increíble.", "author": "Krzysztof Komornicki", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKdU5rSjRaWGhMWlc5MVVETkdVRFJVU3pCaU4yYxAB", "timestamp": "a week ago"}, {"text": "de todos los kartodromos que he ido, probablemente este sea el mejor. los motores de los karts son increibles y sientes que vas a toda hostia. esten aun asi en el f200 me parece que va super rapido y me encanta el layout de la pista. curvas perfectas y muy balanceado. eso si, no se siente bien que te arrebase un f300, se siente como fernando alonso con un mclaren en 2018, van mucho mas rapido y te adelantan facil. aun asi si sabes conducir rapido como yo pues no te pasan, solo en rectas. tambien tienen buen staff, habia un chico que me cayo muy bien. el que ponia los cascos. le teneis que dar un aumento al chaval.", "author": "aaron hernandez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSSlRGTTBTa1V6YjJ4TFkzZExWMjFNYWxGRVVIYxAB", "timestamp": "2 months ago"}, {"text": "Trato excelente. Circuito muy grande y divertido. Lo pasamos genial", "author": "Virginia Calderon", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOcFZuTkNPVkZwZG5BMFFtUjNValZpVTA1clRrRRAB", "timestamp": "5 months ago"}, {"text": "Побывали всей семьей! Классная атмосфера, невероятные эмоции, хотим приехать снова!", "author": "Ольга Авдей", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pnNVdHRmFhak0xU1hJMFYwSlhSMHhMYzNoVU1HYxAB", "timestamp": "6 months ago"}, {"text": "Un sitio espectacular para pasar una buena tarde con los amigos o compañeros de trabajo. No trataron de lujo y los karts son muy buenos.", "author": "ivan acebedo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205d2FHSlNjMWhEVms1dVEyTmhPQzFmWDI1dFgwRRAB", "timestamp": "3 months ago"}, {"text": "superbe karting pas loin de la mer , super ambiance course adaptée au enfants ( 1 course sur 2 , enfants , adultes )", "author": "Colin Gohorry", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUFNUTlNXR3c0V25OdUxUWnBUSGc1WkU0dFpYYxAB", "timestamp": "6 months ago"}, {"text": "Un sitio amplio, buena organización. Fuimos por un cumpleaños infantil, todo muy bien, había chicos encargados de los niños y los coches y muy atentos. El cumpleaños tmb muy bien organizado. La pista es muy grande y hasta tiene pantalla gigante en la pista para los tiempos. Tiene terraza exterior y una en la planta de arriba donde se ve la pista entera con detalle. No sé qué más decir, que nos gustó y que volveremos.", "author": "Anna Parens García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXLUstRTR3RRAB", "timestamp": "3 years ago"}, {"text": "Instalaciones nuevas . Circuito grande con distinto tipo de categorías . Marcador electrónico . Tienes una pequeña cafetería para tomar bebidas q tienen pantallas de seguimiento y mirador hacia el circuito . Disponen de billar y futbolín exterior con mesas .", "author": "Verónica Lirón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5czdMMjNBRRAB", "timestamp": "a year ago"}, {"text": "Tres belle piste de 1100m. Karting tres performants et très bien entretenus. Une très belle ambiance avec des professionnels très compétents", "author": "guy 17", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKMmJEZFpNMUZvYlhsVE5rNUVjM1ExWlVsQ1RYYxAB", "timestamp": "4 months ago"}, {"text": "Hace años mi hermano entrenaba aquí, y desde entonces cada vez que queremos ir, es aquí donde vamos sin duda. Ahora mi hijo va aquí y le encanta. Es un sitio muy buena y la atención siempre es muy agradable! Nos encanta ir ahí y seguiremos durante muchos años mas 🤩", "author": "april cox", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5ajVmbHpRRRAB", "timestamp": "a year ago"}, {"text": "Z gokartów nie korzystałam, ale panowie napompowali mi kolo w rowerze (wbił się gwóźdź i powietrze całkowicie zeszło, przez co czekał mnie 2 godzinny spacer do domu). Przechodziłam obok nich przypadkiem i zaszłam zapytać, czy pomogą. Pomogli :) Dzięki nim udało się przejechać połowę trasy, a resztę spokojnie przejść i bezpiecznie dotarłam do domu przed zmrokiem. Dziękuję! PS dodam, że panowie byli mili i można było się dogadać po angielsku.", "author": "Celina D.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfd012LWZnEAE", "timestamp": "a year ago"}, {"text": "Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. No es nada serio, y menos cuando reservé con dias de antelación. No se lo toman muy en serio, independientemente de la temporada que sea.", "author": "Elena Santa", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB", "timestamp": "Edited 5 months ago"}, {"text": "Richtig genial. Der beste Zeitvertreib in der Umgebung für einen guten Preis. Alles ist Save und ein Mitarbeiter spricht sogar deutsch. Wir fühlten uns gut informiert und sicher.", "author": "Peter Arandt", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201Zk9YZExTRGhKVmxaTlJqVjBWSE5XTVMweWVuYxAB", "timestamp": "3 weeks ago"}, {"text": "Muy divertido gran pista y precios muy. Buenos. Genial", "author": "R. Rodríguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21scWRHcE5jVzF2UVZOeVlWZEpVREZKWkZNM2EwRRAB", "timestamp": "4 months ago"}, {"text": "Superleuk circuit👌👍\\nDe track is heel proper en goed onderhouden alsook een nette cafetaria.\\nPrijzen voor de drankjes zijn zeer correct.\\nAfhankelijk van de leeftijd, lengte en kunnen is er keuze tussen 120, 200, 300 en 400cc.\\nSuper Fun, vriendelijke marshalls (niet allemaal) maar vooral deze die ook mechanieker is.\\nOnze zoon vond het top!\\nTot nog eens 😉", "author": "Dries Kinet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNVB5VlV3EAE", "timestamp": "Edited 2 years ago"}, {"text": "El mejor karting el personal es majo, los karts van de lujo y no están capados sin duda un lugar para ir y repetir", "author": "alberto nieto duran", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205blIwTlNZa0oyYjFORFZWTlRlR0ZFWW5BdFdGRRAB", "timestamp": "4 months ago"}, {"text": "De los mejores karting que he probado, los coches funcionan bien, el trazado es bueno y esta en buenas condiciones, los empleados son simpáticos y están siempre atentos. Pero hay un pequeño problema que es el PRECIO del karting, si solo vas a pasar un rato y no vas a compartir es algo caro y apenas te dan tiempo, aparte de que en cada sesión te meten con más gente que no es de tu grupo y muchas veces esas personas o no están experimentadas o no tienen ni cuidado ni respeto, por lo demás todo perfecto. Recomendable 👌", "author": "García", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205aGVYWk9URXd5WTFoWGVVMURUMXBOV0ZGRFowRRAB", "timestamp": "5 months ago"}, {"text": "Las instalaciones están estupendas. Fui con los niños y se lo pasaron genial, los padres tenemos mesas a la sobra para esperar y hay un bar bastante grande y muy agradable. Me sorprendió muy favorablemente", "author": "Vanessa Justo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oVE9USnJRblYxUWpjeE5UaEhZVUptVDFGc1VWRRAB", "timestamp": "4 months ago"}, {"text": "Desde bien pequeño a mi hijo Iker le encantan los Karts. Yo creo que empezó con 5 años. De todos los sitios que hemos visitado para que sienta la velocidad, este es de los mejores.\\nCoches en perfecto estado, y lo más importante una pista en condiciones, grande.\\nY el trato es muy bueno.\\nTodos los veranos venimos a 1000 Palmeras, y venimos por lo menos 2 veces, con sus dos vueltas al menos.\\nEn verano, la mejor hora es a partir de las 19:30, se está más fresco y hay ambiente.\\nRecomendable 100% Desde luego nosotros volveremos.", "author": "Angela Vigil Toledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1aWJEYWFnEAE", "timestamp": "3 years ago"}, {"text": "La verdad que tiene unas instalaciones geniales.\\nCerca del Aeropuerto de San Javier y al lado de la discoteca Maná.\\nTiene una terrrazs para poder tomar algo mientras esperas tú turno.\\nLos precios son buenos y el personal muy amable y trabajador, sin duda alguna, un muy buen lugar para pasar el rato con la familia o los amigos.", "author": "Raimond Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnaDZXcWdBRRAB", "timestamp": "7 years ago"}, {"text": "Probamos ayer la primera vez y ha sido una muy buena experiencia,las instalaciones están impecables y el personal muy atento y amable en todo momento,los chicos de la pista un 10 también,repetiremos!! Gracias ☺️", "author": "Lucía Sánchez Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkaGNhU0RBEAE", "timestamp": "a year ago"}, {"text": "Cal reservar, sinó potser et quedes amb un pam de nas. Ah, i porta repelent de mosquits, sinó t'hauràs d'esperar a dins. És destacable que hi ha control de voltes i temps en una pantalla gegant, on hi surt el teu nom. 14 euros volta amb F200 per 8 minuts. F300 19€. F400, 30€ però 10 minuts i sense F200s pel mig.", "author": "Carles Font", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MHY3OGp3RRAB", "timestamp": "a year ago"}, {"text": "tolle rennbahn mit schnellen karts für verschiedene leistungsklassen. kleines bistro mit essen und getränke. freundliches und kompetentes personal, gutes preis / leistungsverhältnis. geeignet mit gruppen um eigene renne durchzuführen", "author": "Christian Zuerrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHcU95VWlRRRAB", "timestamp": "4 years ago"}, {"text": "Es entrar y ya sabes que vas a sentir pura adrenalina, cada Kart está pensando para que cualquier persona pueda sentir la velocidad, es pura emoción.\\nLos precios también son emocionantes, es que con esa calidad precio que quieres que te diga.\\nHa ido hasta Pedro Acosta (seguramente han ido más personas famosas).\\nEl circuito, que es el más largo de la Región de Murcia, se hacen competiciones de todo tipo(las que se puedan hacer en ese circuito).\\nSi quieres sentir adrenalina pura tienes que venir aquí.", "author": "Hugo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1a04yVjJkblZHUlZNNVoxWnBVbGgyTkdoWmFXYxAB", "timestamp": "4 months ago"}, {"text": "Super geile Kart Bahn, Go-Cart. Sehr gutes Strecken Design. Mittwochs doppelte Fahrzeit. Hat Sehr viel Spaß gemacht. Preise für Getränke und Essen (Snacks) sind auch OK. Wir kommen gerne wieder.", "author": "Marcus Neitsch", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4bTZDbk9nEAE", "timestamp": "5 years ago"}, {"text": "Una experiencia genial .\\nUn circuito muy cuidado , karts muy bien puestos a punto y un personal tanto pista como recepcion de 10 .\\nSiempre que voy a Los Alcazares es visita obligada .\\nLos F400 una pasada .\\nSi vais por alli no dudeis en acercaos alli para pasar un rato increible.\\nTienen Bar , Wc y todo lo necesario !", "author": "Moi Manrique", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPME8tQThRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "La pista y los coches muy bien..pero ay un ayudante de pista..con gafas viejo..k no tiene educación nila conoce...y trata muy mal alos niños sobre todo..porke seve k con los mayores no tiene huevos.y nole dicho nada feo pero ala proxima no creo k se escape k selo explique...... porke yo si tengo educación k el por lo demás bien..asike si sigue ese tío ay creo k va a perder muchos clientes..asike sino tiene ganas de trabajar cara al público. K se valla al campo a trabajar..por lo demás bien..todo....", "author": "David Esteve", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0d1FtRjZjalJZUzBOS00xSTVWbEZFVVhKUVkyYxAB", "timestamp": "5 months ago"}, {"text": "¡Buenísimas máquinas, la verdad! 👍😎 Pero el asfalto deja un poco que desear. 🤔 Se nota bastante deteriorado en algunos tramos. 🚧 Estaría genial que lo arreglaran pronto para disfrutarlo a tope. 💯 ¡A ver si se animan! 💪👏", "author": "Mat_teo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25ObmVXTkpRMjl5VWxCcFpXcGpUaTFOZW5WSlMxRRAB", "timestamp": "7 months ago"}, {"text": "Karting génial adapté.\\nAutant pour les adultes , que les enfants.", "author": "Mélissa Estercq", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poYWRtVTRkbnB1WHpCdFJGQk1Tak5SVDBKM1pIYxAB", "timestamp": "5 months ago"}, {"text": "Experiencia de 10, los coches bien cuidados, trazado guapísimo, con sus pianos bien marcados y el césped natural muy muy bien cuidado.\\nLos trabajadores muy amables y nos atendieron muy bien. Una mañana de risas y momentos con los amigos. Especial.", "author": "Sargento Highway", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBLWZtck1REAE", "timestamp": "11 months ago"}, {"text": "Probablemente mi circuito favorito de Murcia. Es mucho más friendly y para todos los públicos que otros en los que he estado. También tiene muy bien organizada toda la zona fuera del circuito.", "author": "Jesús Olmos Soler", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4cU0xaGZNMGRHYVRVNWEzUkpOV2xtY21GdU5VRRAB", "timestamp": "4 months ago"}, {"text": "Muy agradable entretenido para niños y adultos.\\nEl personal muy familiar.\\nMuchas gracias 😊\\nVolveremos.", "author": "Denzel Andrés", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s4MlRGZENhVkF4YmtzNE9WVkNjRlpvVG1Rd2FsRRAB", "timestamp": "2 months ago"}, {"text": "Genial! Lo hemos pasado muy bien. Los coches están en perfecto estado y nos han tratado muy bien. Un circuito en muy buen estado también y buen precio.", "author": "Enrique Martinez Bel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnbGNtZ0l3EAE", "timestamp": "8 years ago"}, {"text": "Es la primera vez que conduzco un kart y ha sido en el mejor de los sitios que he podido hacerlo.\\nSi es verdad que si no reservas te toca esperar 1h más o menos, pero en mi experiencia me pasé esa hora tomando algo con los colegas mientras veíamos a la gente correr y lo pasamos bien.\\nEn cuanto los karts, estaban muy bien, muy finos todos y un circuito que es una pasada, bastante grande.\\nTotalmente recomendable pasarte si vienés de vacaciones, te vas a llevar una buena experiencia!", "author": "Álvaro París", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1X2FEYnpBRRAB", "timestamp": "3 years ago"}, {"text": "Karting sympa, personnel plutôt agréable. Le lieu est joli.\\nPetit bémol le prix est un peu cher le les 8 minutes de circuit et dommage que les biplaces ne puissent pas être avec les karts ''adultes''", "author": "Anaïs Teyssier", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKbWRLT1B3EAE", "timestamp": "2 years ago"}, {"text": "Var en trivelig kveld. Det er andre ting å gjøre der om man ikke vil kjøre go cart. Diverse spill, airhockey, billjard og et lite lekeland for de aller minste.\\n\\nSelve bane anlegget byr på tre forskjellige baner. En for de aller minste, en junior bane og en bane for de eldre. På de to minste banene er go cartene tilpasset banen slik at det blir jevnere racing. Opplevde at noen carter gikk litt bedre enn andre så det er vel et tunings potensial der. På den største banen kan man variere på selve go cartene, noe som gjør det litt utfordrende å kjøre. Banen i seg selv var også ganske gøy å kjøre. Absolutt verdt besøket og gøy for hele familien.", "author": "Daniel “Seb” Seb", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaRFJHSXhUSEZyY1hKek9FSkJSa0ZoVTNwSmIxRRAB", "timestamp": "5 months ago"}, {"text": "Espectacular circuito,y trato inmejorable por parte del personal,sobre todo de Roberto.\\nSin duda volveré a ir !!!", "author": "Francisco Javier Urraco Moreno", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwUWRrNUpNVXRpU1dWRWRtVjVkRGR2YjNCcVdsRRAB", "timestamp": "7 months ago"}, {"text": "Celebramos el santo de la peque con sus primos. Una pedazo de experiencia. Todo el personal es super amable y dispuesto.\\n\\nLos coches bien mantenidos y cómodos.\\n\\nSe cumplen todas las medidas de higiene y seguridad y los peques han disfrutado como locos.\\n\\nRelación calidad/precio inmejorable.\\n\\nRepetiremos seguro en futuros cumpleaños y eventos.", "author": "Jorge Mora", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcC1hN3FnRRAB", "timestamp": "4 years ago"}, {"text": "Super tolle Bahn und klasse Karts. Wir sind so begeistert. Mein Sohn hat heute seinen Geburtstag dort gefeiert und er war so glücklich hier. Super netter, freundlicher und hilfsbereiter Mitarbeiter. Wir hatten sehr viel Spaß. Vielen Dank", "author": "Fadil&Carina Kujaj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5aTZXblBnEAE", "timestamp": "4 years ago"}, {"text": "Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. Explicaciones las justas para alguien que no ha llevado nunca un kart y en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. También escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. Un saludo, circuito y maquinaria bien, personal penoso", "author": "Holly", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB", "timestamp": "6 months ago"}, {"text": "Un karting muy bueno, con variedad de potencias, el modelo rendimiento/precio es el F300 por 19e pero si tienes la posibilidad de coger el F400 sin duda vas a disfrutar.\\nSuelen hacer 1 tanda de adultos y una de niños y así sucesivamente.\\nSin duda uno de los mejores karting que he probado. En cuanto a indicaciones, explicaciones etc, nulas (por mí sin problema) lo digo por la gente novata, que no ha corrido nunca, que alguien le explique lo básico.", "author": "Angel Lillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwdFBDWjFnRRAB", "timestamp": "2 years ago"}, {"text": "De los mejores sitios de karts que he visitado, gente muy amable, buenas medidas de seguridad frente al covid y los coches son una pasada, gran variedad y además él precio es más que correcto.\\nLos F200 son los que utilizamos.\\nRecomendación, si se va por la noche llevar prendas largas, por los mosquitos.", "author": "Holtser", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDaHEtdm9BRRAB", "timestamp": "5 years ago"}, {"text": "Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. Ahora tengo que decirle a mi peque que no lo celebraremos allí.\\nMe parece una vergüenza.", "author": "Tarkan Akdogan", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB", "timestamp": "6 months ago"}, {"text": "Nos a gustado mucho el sitio. Era la primera vez . Mi hijo de 8 se montó por primera vez y salió super contento . El trato muy bueno, simpáticas las dos mujeres . Y los chicos de pista que ponen los cascos y te asignan un karts también.\\nTe dan gorritos de papel para ponerte con el casco. ( Por higiene) Y después los desinfectan entre carrera y carrera.\\nNos a encantado , volveremos", "author": "Eli Pardo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiaV9hcWNREAE", "timestamp": "a year ago"}, {"text": "Mucha gente, pistas llenas, reservar sirve de poco cuando están petados. Pero buen precio y los mejores de la zona y alrededores", "author": "Pedro Saura", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4aGF6UTNlbFJhTVcxMVl6TlhNMUpuWDJaa05tYxAB", "timestamp": "4 months ago"}, {"text": "Ik heb hier in totaal vier heats gekart, verdeelt over twee dagen. De eerste keer twee heats in de F400 gereden, welke 110 km/u gaat! Erg gaaf! De tweede keer de rest van het gezin mee genomen. De kinderen reden in de F200 (60 km/u) en mijn vrouw en ik reden in de F300 (80 km/u). Beide keren waren een groots succes!\\n\\n- Het circuit is 1100 meter lang en de lay out is leuk om te rijden\\n- Het circuit wordt erg goed onderhouden en er ligt weinig vuil op de baan (bijvoorbeeld zand, stenen, rubber, etc.)\\n- Veiligheidsvoorzieningen zijn dik in orde.\\n- De verschillende karts rijden allen prima!\\n- Daarbij hebben de diverse karts ook nog verschillende chassis, zodat er altijd wel een goede match is met je been lengte.\\n- Overige faciliteiten zijn ook zeker prima.\\n- Mooi overzicht op de baan vanaf het terras op het dak van het clubhuis.\\n\\nVolgende vakantie in Spanje gaan we zeker weer!", "author": "Maarten van der Ploeg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1NDZPQXN3RRAB", "timestamp": "3 years ago"}, {"text": "Nunca doy un \\" top \\" pero si te gusta este mundillo enhorabuena este es el circuito e instalaciones. Todo cuidado al detalle. ( Mejor reservar antes de ir por si acaso tiene sesión nocturna )", "author": "asadoalhorno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhOHV5WjVBRRAB", "timestamp": "4 years ago"}, {"text": "No he ido a muchos karts pero la verdad es que tiene muy buenas instalaciones y los kart no están mal.. tienen crono para los corredores y una terraza elevada para los visitantes. Recomendable .", "author": "pelu comur", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsS1RtUlFjVzlpTlhkZmVWcGljR3ROT0d3MGMyYxAB", "timestamp": "4 months ago"}, {"text": "Muy buen circuito, llevo llendo 8 años y sigo disfrutando como el primer dia, el trazado, desafiante y divertido, desde curvas a fondo, rectas largas y curvas cerradas, yo recomiendo ir de noche porque parece que estas en el gran prix de barehin, hay una cosa mala de los karts, tienen mucho lag, yo desde mi punto de vista un buen antilag no les vendría nada mal, y para finalizar, el trato de los empleados es buenísimo, yo lleve una camara y se me quedo mirando para arriba y ellos la colocaron y me quedo muy buen video, muchas gracias por hacerme disfrutar todos estos años", "author": "Rodrigo Morcuende Soto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aTUxVOUZSV1o0WDNGemRFOW5kVTlWWkVGSk9YYxAB", "timestamp": "6 months ago"}, {"text": "Circuito muy recomendable. Buena categoría F-400 con motores Subaru. :) Buen servicio, mejores mecánicos :)", "author": "GAM3R BAY", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQycGY2ZkdBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Najlepszy GoKart na którym byliśmy, bardzo polecam, syn bardzo zadowolony.", "author": "Svitlana Ostroushchenko", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsa1ltNXNVVXhETm5FMlVVMXhObkYwUmtkU2RHYxAB", "timestamp": "2 months ago"}, {"text": "Los mejores karts de toda Murcia! 🚀\\n\\nDesde hace tres años, mi familia y yo hemos estado visitando este lugar para disfrutar de emocionantes carreras y cada vez es mejor que la anterior. La pista es increíble, con un diseño que realmente pone a prueba nuestras habilidades de conducción y nos hace sentir la adrenalina al máximo.\\n\\nLo que realmente destaca es el trato del personal. Siempre son amables, atentos y están dispuestos a ayudarnos en todo momento. Nos hacen sentir como en casa, lo que hace que cada visita sea aún más especial. Además, la seguridad es una prioridad para ellos, lo que nos da tranquilidad mientras disfrutamos de la velocidad.\\n\\nSi buscas una experiencia divertida y emocionante, no busques más. ¡Definitivamente volveremos el próximo año para seguir con nuestra tradición de carreras! 🏁", "author": "Carlota Elosegui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cnR6RG1BRRAB", "timestamp": "a year ago"}, {"text": "Los Karts y el circuito están muy bien. Varias potencias y circuito divertido.\\n\\nLo que no me gustó fue la desorganización que tienen para atenderte. Hay una única persona tanto para atender el bar como para darte los tickets y la verdad que el proceso es bastante lento.\\n\\nSi quieres hacer dos tandas ( 8 minutos cada una) tienes que estar ahí casi una hora y media por lo menos ya que una vez haces una ronda, no puedes hacer de seguida otra, tienes que bajarte y esperar una ronda más.\\n\\nAl final hicimos solo una tanda y estuvimos en el complejo una hora. Duro para los acompañantes y pesado para los conductores.\\n\\nPor lo demás genial.", "author": "Iñigo Fernandez bolea", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhXzllSmRBEAE", "timestamp": "4 years ago"}, {"text": "Mooi circuit, vrij technisch, grote keuze van go-carts met verschillende cilinderinhoud, van 50cc tot 400cc. vanaf 16 jaar.", "author": "Etienne Claessens", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtbjd1UXpnRRAB", "timestamp": "4 years ago"}, {"text": "Un buen sitio para llevar a los peques y hacer una actividad diferente.", "author": "Mariela Delgado", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSNmRYbG9MWFZLVGw4ME9GSjFXRkl6UWpoSU4zYxAB", "timestamp": "6 months ago"}, {"text": "Un lugar perfecto,para soltar adrenalina , en compañía de amigos y familiares, nosotros hicimos el pack de 3 rondas, clasificación, 1 carrera y 2 carrera , lo recomiendo, te lo pasas genial y acabas entre risas y encima puedes tomar algo en la cantina, los cars y el circuito están muy bien.", "author": "Abraham S.S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURUdHVQVGxRRRAB", "timestamp": "a year ago"}, {"text": "Proper circuit, alles prima verzorgd, de karts ook tip top in orde\\nKeuze uit :\\nKids-Kart / Duokart / 200cc / 300cc / 400cc\\nKinderen vanaf 12jaar kunnen in 200cc al karten 👌", "author": "Tim Pisane", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREcEpibVp3EAE", "timestamp": "a year ago"}, {"text": "Los precios están muy bien y tienen ofertas muy buenas sobre todo los miércoles, incluso para grupos, que disponen de una carrera de clasificación y carrera después para ver el ganador. La atención al cliente es buena, el ambiente es agradable y cómodo.", "author": "Lucia Rodríguez Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwNW91d3V3RRAB", "timestamp": "2 years ago"}, {"text": "Espectacular!! Un gran circuito de Karts con cantidad y variedad de coches. Zona de cantina con aire acondicionado.", "author": "Jose Luis Lopez Baños", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1eGVlTVpnEAE", "timestamp": "3 years ago"}, {"text": "Her har de alt fra biplaza (toseter for voksen+lite barn) til 400cc for de mest ivrige. En liten bar med refrescos har de også :-) De minste (under 12, 100cc) kan ikke kjøre samtidig med voksne.", "author": "Andreas Hellesøy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcDhYejNnRRAB", "timestamp": "Edited a year ago"}, {"text": "Soy habitual de los circuitos de karting, me he recorrido muchos en toda España y este es con diferencia mi favorito, el personal es amable, te dicen trucos para bajar los tiempos y da gusto correr con karts donde el mantenimiento lo hacen a la perfección. Cada año que vengo tienen alguna novedad y eso dice mucho de una empresa, enhorabuena por vuestro negocio, volveré pronto a bajar mis tiempos!", "author": "Raúl Mulero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyOEtYSTB3RRAB", "timestamp": "a year ago"}, {"text": "Pasamos un día estupendo!! Buenas instalaciones y con un bar para tomar algo.\\nRecomendado,nos gustó.", "author": "Cartagenero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtd2JhZmV3EAE", "timestamp": "3 years ago"}, {"text": "Gran experiencia, cogimos su pack premium con clasificatoria y dos carreras y la verdad espectacular, el circuito genial, las instalaciones de 10 y el personal súper atento. Recomendable 100%. Volveremos", "author": "Xavi Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPb1k3R2dRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Ha sido un regalo sorpresa para mis hijos y han salido encantados! Buen circuito y divertida experiencia que seguro que repetiremos. Nos hubiera gustado un poco más de tiempo pero aún así se disfruta a tope.", "author": "Susana Fidalgo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNkxiakJREAE", "timestamp": "2 years ago"}, {"text": "Muy buena atención y te lo pasas genial, muy recomendado y diversión asegurada!!", "author": "Javier Aguilar Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBdGZDRTVRRRAB", "timestamp": "11 months ago"}, {"text": "Beste GoKart -Bahn in der Region, liegt zwar etwas außerhalb von Torrevieja, ist aber sehr groß angelegt. Der Preis ist besser als bei den Konkurrenten in Torrevieja.", "author": "Sanny Busse", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2paMmJGYzFNRUV6VGtZMmNrVnBObU41YWxOWVYwRRAB", "timestamp": "5 months ago"}, {"text": "Muy bonita pista de carreras, pero nada más. Los karts están en mal estado, y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático!", "author": "Henk Verfaillie", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB", "timestamp": "5 months ago"}, {"text": "Zeer leuke ervaring, gisteren (27/2/21) geweest in corona tijd. Netjes geregeld alle materiaal ontsmet en wij waren met z'n 3en in de baan dus alle tujd en ruimte. Leuk parcourt met bochten en lekker in de buitenlucht. We gaan zeker nog eens.", "author": "Marianna Hop", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5X09tLW9nRRAB", "timestamp": "4 years ago"}, {"text": "Uno de los mejores circuitos de la región, tanto para karts de alquiler como para privados y de competición. Las instalaciones son una pasada, es un circuito muy grande, con las mejores medidas de seguridad y un ancho de pista considerable. Ideal para pasar un buen rato en familia o para competir con amigos y encima a un precio muy competitivo. Mi sitio favorito!", "author": "Miguel Garcia Gallego", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLdk9lVEdnEAE", "timestamp": "4 years ago"}, {"text": "Un circuito muy amplio y rápido, los precios son increíbles ya que por simplemente 12€ puedes correr una tanda de 8 minutos con un F-200 que están muy bien.\\n\\nYa si quieres más velocidad tienes el de F-300 en donde ya es algo más técnico. Y si quieres sentir la sensación de conducir un kart de competición de 4t tienen el de 400cc que tira muy bien!\\n\\nAhora para este año han innovado organizando un campeonato para amantes del karting que está bastante bien de precio y muy bien organizado, en donde habrán distintas modalidades de correr el circuito muy interesantes.\\n\\nSin duda alguna es uno de los mejores de la Región de Murcia.", "author": "Albertikoko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLM29xU3JBRRAB", "timestamp": "4 years ago"}, {"text": "Gran lugar para ir a pasar un rato divertido en familia o con amigos en un entorno privilegiado. Personal muy amable y buenos precios en la cafetería.", "author": "Adrian Lucian Caleap", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDbjZhakF3EAE", "timestamp": "5 years ago"}, {"text": "Honnêtement je met 1 étoile 18 euros les 8 minutes . A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez", "author": "Fred Mayhem", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB", "timestamp": "6 months ago"}, {"text": "10/10 experiencia increíble merece la pena pagar 19€ por el kar de 300 cc", "author": "Mr Galio", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKU2IyZ3RTR3d3WldwTGJXbDZWM1ZtVVhJNWJHYxAB", "timestamp": "5 months ago"}, {"text": "Una actividad divertida para niños y mayores. Para menores de 6años tienen karts dobles para que los peques puedan montar al lado de un adulto.", "author": "Mónica Mao", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOThULTl3RRAB", "timestamp": "4 years ago"}, {"text": "Espectacular la atención al no ser de Murcia no sabíamos de que teníamos que reservar en este caso hicieron una excepción y no permitieron correr, así que agradecida tienen un salón de espera donde puedes ver la carrera muy bien.", "author": "CAAIS CASTILLO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3LXBydnhnRRAB", "timestamp": "a year ago"}, {"text": "Personal encantador y muy amables. Instalaciones bien cuidadas. Circuito muy entretenido. Buen sitio para pasar un buen rato.", "author": "ICP", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxRVRFeHRVSGhCVFdKWFRVWlJValZmU1d4aWNXYxAB", "timestamp": "7 months ago"}, {"text": "Fuimos, ya que nuestro hijo quería probar la experiencia y genial, nos montamos él y yo en los F200 y una gran experiencia, salió superfeliz", "author": "Javier Rivas Curto", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FemVHNXBhbWxxYWw4NU5YaDVOVkUxVnkxa04zYxAB", "timestamp": "6 months ago"}, {"text": "No le doy un 5 por que mi kart tenia la rueda delantera izda ya muy gastada y creo que me perjudicó un poco los tiempos, pero entiendo que la apuren, por lo demás estaba todo bien mantenido y pasamos buena tarde.", "author": "versys detailer", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwbE9yTnF3RRAB", "timestamp": "2 years ago"}, {"text": "Le pongo una estrella porque no se lo puede poner menos, los empleados le hablan mal a los corredores y encima te controlan el kart en pista como les dé la gana, si quieres pagar para que los empleados te griten y te controlen el kart como les dé la gana, este es tu sitio ideal.", "author": "Miguel Ruiz Viedma", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OUmNWSnhTVmx0VDNnMVFWQlhaMkowUlVkM1dGRRAB", "timestamp": "6 months ago"}, {"text": "Para los que amamos el asfalto y la velocidad este circuito es una parada obligatoria. Hay que reconocer que el trazado y su estado está muy bien. Rápido, con pianos y escapatorias cuidadas y un mantenimiento habitual de pista considerable que hace disfrutar al rodar por él. Quizás se eche de menos algún tipo de curva diferente ya que todas suelen ser rápidas o 180 grados. Le daría un 5 estrellas de no ser por la gerencia. Desde mi punto de vista demasiado obtusos y cuadriculados a la hora de hacer la reserva de carreras. No permiten reservas de menos de 10 personas ni permiten reservar los karts de 400cc para grupos... Ni en días de baja demanda te permiten organizar carreras para grupos de menos de 10 personas. En mi opinión, una búsqueda frustrante de rentabilidad diaria por encima de condiciones razonables que favorezcan las experiencias positivas y el agrado de los clientes. A eso le sumamos el mal estado de los karts... Con algunas unidades muy por debajo de las otras, neumáticos gastados y poca revisión de los vehículos... Lo dicho, lo que podría ser uno de los mejores circuitos del levante se queda, en mi opinión, en un quiero y no puedo. Aún así, cada cierto tiempo, y siempre que encuentre a 9 amigos más, volveré por allí.", "author": "Alberto Torrecillas (Al-T)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIbVo3VVVnEAE", "timestamp": "a year ago"}, {"text": "Llevo años siendo usuario del circuito y es una pasada en todos los aspectos, el trato, el buen tiempo que siempre hace en la zona, lo cuidado que está todo...\\n\\nSin duda es el mejor circuito por la zona, divertido, con buen aparcamiento, buenas promociones, restaurante, es un complejo muy completo tanto para si vas a rodar, como si vas a ver a los tuyos rodar!!\\n\\n¡Parada obligatoria sin duda!", "author": "Bernardo Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnaV9UY013EAE", "timestamp": "11 months ago"}, {"text": "Gran lugar para ir y quemar un poco de adrenalina , perfecto para unos piques con amigos.\\nTienen los miércoles opción a 2x1 ósea que si tienes ocasión de ir y aprovechar más tiempo al final te luce 🫶🏼", "author": "Seve Conesa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCam9xejhRRRAB", "timestamp": "3 years ago"}, {"text": "Buen sitio para ir con los hijos y pasar una buena tarde. La pista es grande y amplia, es muy divertida. Tiene cafetería. Al finalizar puedes comprar fotos que te hacen.", "author": "Jaime M. Gomez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDX3ZXajN3RRAB", "timestamp": "5 years ago"}, {"text": "El personal del circuito es un encanto,los karts siempre a disposición del cliente y lo que más me gusta esque tienen ofertas para que puedas correr por el mismo precio más tiempo.\\nA parte son tan simpáticos que te dejan la gran mayoría de veces unos minutillos más en la pista si no hay gente esperando para entrar.\\nMuy satisfecho,lo recomiendo", "author": "José antonio Mateo olmos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNZbkkyUDBRRRAB", "timestamp": "8 months ago"}, {"text": "Muy buen lugar para pasar un buen rato, precios razonables, el staff muy majo, te atienden y ayudan. Circuito en muy buenas condiciones y los karts también. Recomendable 100%.", "author": "Cristina Vázquez Borrajo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psc2FubFVWbEJuU2t3M1JGOUpPSFpNYmpKMVNHYxAB", "timestamp": "7 months ago"}, {"text": "Como siempre muy recomendable, el circuito y no los kart en perfecto estado. Grandes profesionales", "author": "Diego Cruz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxZ09EMkdREAE", "timestamp": "4 years ago"}, {"text": "Falta más explicación del manejo por parte de los instructores a los niños y más zonas sombreada en la terraza para el público.", "author": "Santi Jiménez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WU04xcFpUVWs1UkVsS2JIQXRjbFpJT1VKT1FWRRAB", "timestamp": "4 months ago"}, {"text": "Divertidos\\nHay horas con muy poca gente donde te puedes divertir mucho\\nPrecios razonables\\nMucho aparcamiento", "author": "Joseu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5dDhIb0xREAE", "timestamp": "a year ago"}, {"text": "El trato de las trabajadoras hacia los clientes ha sido nefasto, guiamos una reserva para tres rondas, hicimos un viaje largo para que al llegar nos dijeran de malas maneras que solo podemos echar una ronda porque cierran pronto y tienen más gente, cuando ya teníamos reserva para tres rondas, que les costaba decirnos eso por teléfono y nos ahorrabamos el viaje. Mala organización y mal trato", "author": "estela garcia", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNGJlWXpRRRAB", "timestamp": "11 months ago"}, {"text": "Supermooie baan om te karten,keus uit snelle of minder snelle karts dus ook leuk voor kinderen en er zijn duokarts.👌", "author": "Lucien de Winter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREMzVpWHRBRRAB", "timestamp": "a year ago"}, {"text": "Circuito grande. Los niños lo pasaron muy bien. La única pega es que no pueden compartir circuito niños y adultos.", "author": "Mireia Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OExiTVl3EAE", "timestamp": "a year ago"}, {"text": "El lugar es espectacular, el circuito bellísimo, pero la pista está para reasfaltarloa entera...esta muy pulida,el agarre es inexistente, cero, no existe la traccion, es como circular en cemento pulido, muchos parches baches hoyos y desniveles, las líneas de meta y pianos, deberían de ser anti deslizantes, porque resbala todo muchismo, me da mucha pena porque el trazado y el sitio es realmente precioso pero actualmente no sirve para correr ni hacer tiempos, ni con un kart y con moto totalmente inviable, ojalá lo reasfalten y lo pinten como deberían y se convierta en uno de los mejores circuitos que tenemos, porque actualmente esta todo muy cuidado muy verde y muy bonito, todo menos lo que realmente importa en un circuito, La Pista", "author": "Nicky Lorent", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3bEt2Y2RREAE", "timestamp": "10 months ago"}, {"text": "Super circuit, confiance pour le kart 400, chrono afficher clairement lors de la session", "author": "florent thonnon", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GU1QwSmhNbkZ6TkRVM1lVa3lTbGRWYlhOcFRtYxAB", "timestamp": "4 months ago"}, {"text": "Muy buena pista, ma de un kilómetro de recorrido y muy bien de precio", "author": "Ruben Colomer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnOU5ua2xnRRAB", "timestamp": "7 years ago"}, {"text": "Todo el personal súper amable!!. Una experiencia genial 100% recomendada y repetiremos seguro!! Mil gracias!!", "author": "Tania Tamargo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURld3VhTTdBRRAB", "timestamp": "3 years ago"}, {"text": "O experienta unica! Vom mai veni de câte ori vom avea ocazia!", "author": "Carmen Munteanu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toVU5WbzBWRVJZTVd4R1ltUlBWVlpLZHpKd1VuYxAB", "timestamp": "3 months ago"}, {"text": "Un sitio divertido para pasar con tus hijos o amigos y fácil de aparcar, eso sí, la diversión no es barata...", "author": "jose luis p.f", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cTdlTG5BRRAB", "timestamp": "3 years ago"}, {"text": "Excelente sitio para pasar el día, quitar el estrés y aumentar la adrenalina lo recomiendo le 4 estrellas por qué deberían dar un poco más de tiempo por el precio de 19 euros", "author": "jose castellanos", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtaThyLXZ3RRAB", "timestamp": "3 years ago"}, {"text": "Muy simpático et muy adaptado para los peques!", "author": "Mikael Degeer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1bXNTdWN3EAE", "timestamp": "3 years ago"}, {"text": "Para mí uno de los mejores circuitos de la región , los karts van muy bien y variedad de ofertas que hoy en día como está todo, esto tampoco ni excesivamente caro ni barato", "author": "Jose Maria Vv", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURacnFhNGh3RRAB", "timestamp": "2 years ago"}, {"text": "Un karting de 10, todo en muy buenas condiciones, los karts, el circuito... Y además con un buen precio.", "author": "Laura Murillo Santano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sbVpsOUxRVkF5Wm5KUmIzZDRVa2RrT0VsS2NtYxAB", "timestamp": "5 months ago"}, {"text": "Los monitores muy simpáticos y agradables, los coches para todas las edades y condiciones, la pista e instalaciones muy bien, el precio muy asequible, para pasar un buen rato con los amigos y familiares.", "author": "Alfonso Moreno Alba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVa3QzWFlBEAE", "timestamp": "6 years ago"}, {"text": "Los karts y la pista es buena pero el personal es malísimo y grosero con los pilotos un sitio pésimo que no recomiendo para nada", "author": "MIGUEL RUIZ", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWNWFISmFTRXRmTVhSRk5sRklaa2RHWkdjNVNFRRAB", "timestamp": "6 months ago"}, {"text": "Buen sitio para karting, es un poco caro", "author": "WEH", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GV1FYbFJZV3A1ZVZCc2RqSktlRlF6ZW1kSFIxRRAB", "timestamp": "4 months ago"}, {"text": "A great venue to enjoy karting with the family, or group of friends\\n\\nRoberta and her twin boys will make you VERY welcome 😎😎🌞🌞🌞🏎️🏁 🏎️🏁\\n\\nUn gran lugar para disfrutar del karting con la familia o un grupo de amigos.\\n\\nRoberta y sus hijos gemelos te harán sentir MUY bienvenido 😎😎🌞🌞🌞🏎️🏁 🏎️🏁", "author": "Paul Baxter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRNTVlVDZBRRAB", "timestamp": "10 months ago"}, {"text": "Mis hijos lo pasaron muy bien la verdad que tienen un entorno precioso y las vistas al mar espectaculares.", "author": "Eva fernandez Jiménez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREMW8tM09nEAE", "timestamp": "a year ago"}, {"text": "Super bien! Si te gusta la velocidad, este es tu lugar. He probado otras pistas, pero ésta está bien y también el precio. El único pero, es que si quieres coger más velocidad ,no hay carretera larga para coger velocidad. Pero guay la verdad!!", "author": "Andrea", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIdl9qSGdRRRAB", "timestamp": "a year ago"}, {"text": "Muy buenas intenciones,,los kart van muy bien y el personal te atiende de 10", "author": "Daniel Lareo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25RNVgwbFlibXRNVDNGQlVrbFZZbTlOYzA0ek9IYxAB", "timestamp": "3 months ago"}, {"text": "Muy linda experiencia y sobre todo no es caro precios desde 10€ súper bien y lo encontré seguro y muy profesional me gusto mucho.\\nMe mato cuando le dice frena frena que ya has llegado jajaj muy buena atención y paciencia.", "author": "Fabricio Napolitano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNROEptRnJRRRAB", "timestamp": "10 months ago"}, {"text": "No me gustó que fuéramos un grupo de 9, padres hijos y para poder correr juntos había que coger modo carrera, tuvimos que dividirnos en dos grupos, unos con los 100 y otro grupo con 200-300, nosotros íbamos a pasar un rato, pero en carrera estaba el típico Alonso fracasado, pero que se piensa que va a batir no se que récord, circulando a toda leche y provocando que algunos tuviéramos que hacer trompos para no chocarnos, y los del circuito parece que les daba igual. Al iluminado lo vimos en la siguiente carrera que acabó Segundo y todo el rato mosqueado. Lo peor, los padres que pare un que lo animaban a hacer todo eso. Los coches iban bien aunque nunca sabes si les tocan la potencia vía radio. La dirección de los coches, muy muy dura.", "author": "Eduardo C López", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNINUlMaTlRRRAB", "timestamp": "a year ago"}, {"text": "Experiencia inolvidable, trabajadores amables y buenas explicaciones, comida buena.\\nDia perfecto para pasar un buen rato tanto en familia o grupo de amigos", "author": "Maren Oosterhof", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21relpIaFFTems0VGxWTE4zcGtjV1JDTlRWdlJXYxAB", "timestamp": "7 months ago"}, {"text": "Fue la primera vez de ir a este sitio y me gustó mucho todo el conjunto esta muy bien tanto para participar, como para pasar un rato tomar unas cervezas, refrescos y picoteo, que es lo que tomemos allí mientras veíamos a las personas participar!", "author": "Jose M Aguilera Palomino", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIOUptUWdBRRAB", "timestamp": "a year ago"}, {"text": "Circuito bastante currado desde que nació en su día, que cuenta con 1100 metros de cuerdas, 10 curvas; 6 a derechas y 4 a izquierdas.\\n\\nLa flota de los F300 está muy igualada y los karts los tienen bastante mimados por el poco tiempo que llevo llendo al circuito.\\n\\nSi tuviera que repetir probablemente lo haría por allí, la playa está a 7 minutos que al final en Verano pues da mucho gusto también.\\n\\nComo anécdota tienen un perro guardián llamado Pepo, muy majo.", "author": "Alejandro Amador Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBc1lINDBRRRAB", "timestamp": "11 months ago"}, {"text": "Hay circuitos mucho mejores y con mejor atención al cliente", "author": "Enrique B . G", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GTGQyUjFWWHBSTVVWc1VEUnBjbUZuUkhwWlFXYxAB", "timestamp": "5 months ago"}, {"text": "Perfecto para pasar la tarde con amigos! Y tomar luego un refrigerio", "author": "Sara Martinez Gandia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1OFoyVzNRRRAB", "timestamp": "2 years ago"}, {"text": "El personal que se encuentra en la pista es totalmente incompetente, unos chavales cuyo único oficio es arrancar los karts y reírse de los grupos de amigos (especialmente de las mujeres) que corren porque ellos se creen mucho mejores conductores y un supuesto jefe de la pista que da vergüenza que trabaje de cara al publico con la poca consideración y educación que tiene (por no recalcar sus deplorables actitudes machistas). Muchísimas gracias por hacerme pagar 30 euros por unos karts que corren a una determinada velocidad y delimitarme esta misma, un paseo en una barca del retiro seguro que hubiese sido muchísimo mas emocionante. Ya se a que sitio no volver y no recomendar jamas!", "author": "Luisa Rodríguez Tomás", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3ci1PM1d3EAE", "timestamp": "a year ago"}, {"text": "Buen circuito para pasar un buen rato", "author": "Teo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWMS1pdE13EAE", "timestamp": "2 years ago"}, {"text": "Circuito muy chulo. Los karts funcionan genial y el personal está muy atento para que todo vaya sobre ruedas.\\nFue una tarde muy divertida. Repetiré seguro.", "author": "Noel Boix", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOU1XX0xREAE", "timestamp": "3 years ago"}, {"text": "Estupendo sitio para disfrutar", "author": "Bombom Bombom", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGa09XMTNOM2gzTjFwa1NqbG9VR3RMY1ZBd1VHYxAB", "timestamp": "4 months ago"}, {"text": "Atención fenomenal, vehículos en buen estado, circuito seguro, diversión asegurada.", "author": "Luis Miguel Hueva Espinilla", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkUGRrbFJWR2hHTmxOdGFFOXliR1J0ZFdZdFRIYxAB", "timestamp": "5 months ago"}, {"text": "Pésima gestión con el cliente, las reservas fatal y su excusa era que había mucha gente cuando habíamos reservado días de antelación, pésima atención al cliente las chicas que estaban solo se ponían a discutir y se alteraban cuando les estábamos hablando bien, ningún respeto por los clientes.", "author": "Celena N. Gutierrez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBNGJlNVZ3EAE", "timestamp": "11 months ago"}, {"text": "Hemos ido varias veces, los kart y el circuito como siempre bien.\\nLa única pega que no se quedó resuelta es que se supone que los miércoles te dan el doble de tiempo por el mismo dinero por ser el día del piloto hasta ahí ok.\\nPues ayer hacemos la tanda y a los 8-10 minutos no recuerdo exacto nos paran y le pregunto que si nos van a sacar y uno de los chicos que estaba allí me responde de bastante malas maneras que estamos en temporada alta que que me creía, y le intenté explicar que en la web no pone nada de temporada alta ni baja y el hombre pasó de mí básicamente. y ni me avisaron de nada cuando compré los ticket. Por esa parte bastante descontento, lo citado antes de kart y circuito como siempre estupendo.", "author": "Juan José Cánovas Jiménez", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyeWYtWHNnRRAB", "timestamp": "a year ago"}, {"text": "Schöne weitläufige Kartstrecke mit sehr netten Personal. Gerne wieder.", "author": "Jandro Castillos", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pNMFZrSnNWMVp6TFhOUmNERjVZVmR3ZDFGSE1FRRAB", "timestamp": "5 months ago"}, {"text": "Disfrutamos mucho. Nosngustabir pero los precios son demasiado caros para el tiempo de pista. Es minpercepción. Iría más veces lo que les haría ganar más dinero y clientes pero no se puede ir cada semana", "author": "jose martinez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcm9TcWd3RRAB", "timestamp": "Edited 5 months ago"}, {"text": "Estuvimos en el campeonato murciano, muchisima gente y muy buen ambiente", "author": "Carmen Padilla", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXZ3RXem93RRAB", "timestamp": "3 years ago"}, {"text": "He ido varias veces a rodar en los Karts de 200, 300 y 400. Siempre perfecto. Actualmente también ruedo con la pitbike y la pista siempre muy limpia. Además hay bar por lo que puedes quedarte a comer, almorzar...", "author": "Ángel Miralles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6NXBDWjlRRRAB", "timestamp": "a year ago"}, {"text": "Es un sitio más que recomendable para ir y pasar un buen rato. El ambiente es bueno. Es entrar por la puerta y empiezas a sentir la adrenalina.\\n\\nHe perdido la cuenta de las veces que he ido y he disfrutado como un niño. He llevado, por primera vez, a varias personas de mi entorno y siempre quieren repetir. Los trabajadores, tanto en la cafetería como los supervisores son amables y muy atentos.\\n\\nLa única pega que pondría sería que los karts, bajo mi punto de vista, deberían llevar algún tipo de cinturón, para ir más seguro.\\nPor lo demás, todo excelente.", "author": "José Da Silva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaOHZpZEVnEAE", "timestamp": "2 years ago"}, {"text": "Lo tiene todo. Buen diseño del trazado . Asfalto en muy buenas condiciones . Kars modernos .Trabajadores profesionales . Entras allí y te olvidas del mundo exterior . Los médicos de la seguridad social deberían recetar este circuito para combatir el estrés. 5 estrellas .", "author": "ALEX B . R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdHUzVlJ3EAE", "timestamp": "a year ago"}, {"text": "Buen ambiente en el circuito ,karts divertidos de conducir ,equipo de monitores estratosférico y el personal Diego,Roberto ,Chema y J.Leon agradeceros vuestro trabajo por qué hacéis felices a mucha gente .", "author": "Roman Jesus Gonzalez Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBeVozUFNREAE", "timestamp": "11 months ago"}, {"text": "Experiencia 100% recomendable.\\nEl circuito está genial y el trato por parte de todo el personal es muy bueno, amables y cercanos, cuidan los detalles.\\nVolveremos!!", "author": "manuel campillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3d1BhemJ3EAE", "timestamp": "a year ago"}, {"text": "Un circuito 10, rápido y muy técnico, los dueños son gente muy cercana y con precios asequibles.", "author": "Fran Avatel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMkkyd1ZREAE", "timestamp": "4 years ago"}, {"text": "Divertido. Y no es caro. Buen trato", "author": "Domingo García", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2podFZHa3pVekJXY0U4NVJuQm5PV1JKVlhJME1rRRAB", "timestamp": "4 months ago"}, {"text": "Me gustó la experiencia, tienen dos tarifas que varían con el tiempo de uso del kart, creo una de 40-42 euros y otra de 50 euros que fue la que elegimos, también dependía de la cilindrada. Incluía vuelta rápida que eran unos 8-10 min dando vueltas y luego dos carreras aparte. Está bien para echar el rato. Las pistas están bien, los karts como es lógico con las ruedas desgastadas.", "author": "Javier Tinoco Olmos", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6bUotRGlBRRAB", "timestamp": "a year ago"}, {"text": "Gente muy agradable. Día de equipo muy divertido con comida incluida. Un 10 para echar una jornada de entrenamiento. Recomendado!", "author": "JOSE ANTONIO HERNANDEZ GARCIA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNy1QQzVBRRAB", "timestamp": "7 years ago"}, {"text": "Excelente alternativa para un fin de semana divertido con los amigos. Buen trato del personal", "author": "Coco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlellPR0Z3EAE", "timestamp": "3 years ago"}, {"text": "Muy bueno el servicio, los karts en muy buen estado", "author": "Oswaldo rene Sierra martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREcE43YzFnRRAB", "timestamp": "a year ago"}, {"text": "Excelente, ayer celebramos el cumpleaños de mi hijo, los chicos lo pasaron en grande y la merienda era casera y estaba todo buenísimo, la tortilla de patatas de 10!! La dueña es encantadora y se preocupó de que no faltara detalle. Me sorprendió el precio de todo ya que pensaba que sería bastante más caro. Lo recomiendo sin duda", "author": "Jessica Amante Peluqueros", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZajh6eHJ3RRAB", "timestamp": "6 years ago"}, {"text": "Flott bane med godt opplegg. Ikkje så flinke i engelsk.", "author": "Dagrunn Øvregård", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kc05ESnNjbWhCWTI5VGVHaHJhbVkxWkU0MGFuYxAB", "timestamp": "5 months ago"}, {"text": "Sitio para pasar un buen rato y divertirte compitiendo. Tienen vehículos para todas las edades y para personas minusválidas. Por poner un pero... la señora que te recibe y atiende es bastante seca.", "author": "Alicia Rodriguez Iglesias", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OUxQaGV3EAE", "timestamp": "a year ago"}, {"text": "Un circuito lleno de adrenalina siempre super limpio y listo para las carreras para mí gusto el mejor de murcia con diferencia grandes pianos curvas cerradas largas rectas para llevar el karts así limite al resumir un super circuito y de gente especializada Enel karting", "author": "Javier Fenoll Aledo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBMGQzV1BBEAE", "timestamp": "11 months ago"}, {"text": "Perfecto para pasar una tarde de ocio diferente. Tienen distintos paquetes dependiendo del tiempo que quieras estar. De precio muy bien. Estuvimos un grupo de amigos por primera vez y ya estamos pensando en volver. El personal un 10. Muy amables y ayudando en todo momento. Cuando terminamos nos tomamos un refresco en un bar que tienen con unas vistas chulísimas al Mar Menor. Recomendable.", "author": "JOSE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNX29qM2JnEAE", "timestamp": "6 years ago"}, {"text": "Eine sehr tolle kartbahn. Ich konnte hier sogar mit meinem 4 Jährigen Sohn zusammen fahren.", "author": "Henry Borau", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KTWVWUTRObGxRVWpBNVpUTTFhRGhOVFZOTVJVRRAB", "timestamp": "7 months ago"}, {"text": "Reservamos para un cumpleaños, y nos pusieron todas las facilidades. Son muy majos , sin duda volveremos a ir . Si le hablas por Instagram te responden enseguida, muy atentos.", "author": "Ainhoa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNELWRyZUVREAE", "timestamp": "a year ago"}, {"text": "Magnifico circuito de karting outdoor con karts de calidad y a un precio muy bajo, el resto de kartings qur he visitado en españa ninguno está a un precio tan economico.", "author": "Javi Rios", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVanRTeXBnRRAB", "timestamp": "6 years ago"}, {"text": "Lo pasamos muy bien, fuimos 10 personas con los niños y echamos una tarde noche magnífica, nos trataron genial, fueron siempre muy amables y explicaron todo a la perfección, los coches están muy bien, y cualquier problemilla con los mismo t lo resuelven al momento, siempre puedes topar con alguna persona q se piensa q está en la F1 y no se da cuenta q hay más gente pero vamos, como en cualquier lado. Tanto los señoritas de la cafetería y atención general como los chicos de los karts fueron e hicieron la estancia súper agradable. Repetiremos seguro .", "author": "Jose Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1dVpDTjR3RRAB", "timestamp": "3 years ago"}, {"text": "Bien. Pero fuimos un miércoles q son 16 minutos en vez de 8 por el mismo precio y estuvimos mucho menos tiempo. Nos sacaron d la pista a los 11 minutos. Pero para pasar un buen rato está bien. El cronómetro está, pero empezó mientras estábamos esperando a que primero intentaran arrancar el coche de mi hermano y después viendo q no podían arrancarlo le dieran otro coche, todo eso mientras esperábamos en la línea de salida sin movernos.\\nPor todo lo demás bien. La pista está en buenas condiciones y se agradece.", "author": "Rachel", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR3a0tfZXlBRRAB", "timestamp": "7 years ago"}, {"text": "Super zabawa we 2 z 12 latkiem który pierwszy raz jechał solo czymś co posiada gaz i hamulec . 8 min to troszkę mało za tę cenę , ale tor i same gokarty super . Zdecydowanie przy wyjeździe w ten rejon na tydzień obowiązkowa pozycja .😎", "author": "Marcin Gorayski", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacy16Z2FnEAE", "timestamp": "2 years ago"}, {"text": "Sehr gut für Kinder bis 14 Jahren", "author": "W. KREBIL", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xaSFJqbHpZM28zTVcxSlFYWnlhMll6Y25sUFFVRRAB", "timestamp": "3 months ago"}, {"text": "Nunca habia dejado reseña aquí y ya tocaba. Llevamos veraneando aqui desde el 96, y desde entonces mi padre me trajo de chiquitin. Ahora venimos grupos de 18 a hacer el gran premio y siempre es una delicia, tanto como manolo como las chicas de la barra, la organizacion, el detalle y el mino. Vuestros asturianos favoritos recomiendan 100% vuestro negocio.", "author": "marcos p.f", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwdmFxVjJRRRAB", "timestamp": "2 years ago"}, {"text": "Cómo circuito de kar lo mejor de la comarca, por vehículos, por longitud de pista, anchura y seguridad al tener amplias vías de escape. Excelente equipo electrónico que controla los tiempos a la perfección. Tienes vehículos para los más pequeños, tanden si no pueden conducir y si quieres experiencia más intensa los Fascinantes F-400", "author": "Salva Paredes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObnNqbEJREAE", "timestamp": "2 years ago"}, {"text": "Muy buen circuito para correr y echarse unas risas, muy recomendable.\\nY la cantina también muy bueno todo, sobretodo los granizados de limón.\\nAparte no es muy caro de precio.\\nMuchas gracias por el servicio 👌🏻👌🏻", "author": "Felipe Rives Grau", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwd05yQnpnRRAB", "timestamp": "2 years ago"}, {"text": "Wetter war top. Zufahrt und Beschreibung passt auch. Das Personal auch sehr nett, das Englisch könnte besser sein.", "author": "Alexander Waigandt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMzZ6a1B3EAE", "timestamp": "9 months ago"}, {"text": "Super endroit propre et bien animé en fin de journee\\nPiste professionnelle\\nSuper accueil\\nEn fonction de l heure ou vous allez il peut y avoir 1h d attente\\nA refaire", "author": "Do Naoual", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiMTZxa1l3EAE", "timestamp": "a year ago"}, {"text": "Fui el finde pasado con 7 amigos y nos trataron de lujo. Karts en perfecto estado y disfrute asegurado!", "author": "Alejandro Sanchez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VKX3lvdUdCbUlhT1NREAE", "timestamp": "8 months ago"}, {"text": "Een super leuke namiddag gehad! Een lange baan met toffe bochten. Voor herhaling vatbaar!", "author": "Brenda De Bie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNta2R5dElBEAE", "timestamp": "4 years ago"}, {"text": "Esta muy divertido sirve para todas las edades. Y es un buen sitio para hacer carreras. El Vplaza para peques con adultos. Y si te sales de la pista solo levanta la mano y irán a por ti , te sacaran de la hierba y podrás volver a conducir.", "author": "FIORE MARTINEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwclpyZElnEAE", "timestamp": "2 years ago"}, {"text": "Toda una experiencia cada verano", "author": "Belén Mondéjar", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGdlozUm9ialEzUkZVNVpYVTRMUzFOZEY4M1VVRRAB", "timestamp": "5 months ago"}, {"text": "Esta muy bien, tienen variedad de karts para todas las edades, mi hija de 7 años a disfrutado muchísimo.\\nLos chicos muy simpáticos.\\nY lo mejor que no lo había dicho, es que fuimos miércoles y nos salió 2x1.", "author": "Vanesa Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOaTVianlBRRAB", "timestamp": "Edited a year ago"}, {"text": "Dit is een fantastische race track! Niet alleen het circuit is cool, het is er (zelfs in het weekend) betrekkelijk rustig, de service is snel, goed en vriendelijk en de drankjes ( inclusief sterke drank) zijn er spotgoedkoop.\\nEr zijn voor kinderen go carts van 100 cc ( betrekkelijk zwaarder dan andere parcours in de omgeving en voor volwassen van 200 tot 400cc ... ook eigen motors zijn welkom!", "author": "Sandra Ballet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNN3A3SmFREAE", "timestamp": "6 years ago"}, {"text": "Allt fungerar som det skall och trevlig personal. Drivers day på onsdagar. Dubbel tid", "author": "Arne Cederblad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkOXB6SllBEAE", "timestamp": "a year ago"}, {"text": "Un buen lugar para disfrutar con amigos.\\nLastima que muchas veces hay participantes de otras categorías superiores que no respetan a los F200 y van a fuego creando peligro y choques innecesarios.", "author": "Inigo Angel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNibE5fdElREAE", "timestamp": "a year ago"}, {"text": "Siempre ha sido un sitio familiar y muy bien atendido. Pero ña chica nueva deja mucho qie desear en el trato con el cliente. Le sigo dando 5 estrellas pues ni la dueña ni sus hijos tienen culpa de ello. Pero si ham de tomar nota.", "author": "Paco Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxanV6eGZBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Venimos la familia con 2 de 12 y 13 años, con los f-200 no hay problema y derrapan con el pie a fondo. No necesitas más velocidad para pasarlo muy bien 15 minutos. Vueltas de 1 minuto sabiendo coger las curvas y con cuidado de no patinar, 👍😃😃😃👍 .\\nBuena atención y no olvides la hoja de tiempos antes de irte, con las fotos en el podio para no olvidar un buen momento.", "author": "Jose Sanchez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN5ejZiQzNRRRAB", "timestamp": "4 years ago"}, {"text": "Très bon accueil rapport qualité prix👍🏼 Sécurité top et très beau circuit. Mon fils a eu un problème avec son karting et il lui on offert un 2ème your gratuit. Excellente soirée. Les enfants peuvent en faire à partir de 6ans grâce à des sessions différentes toutes les 10 min.", "author": "Magalie Lietaert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDaXBub3pRRRAB", "timestamp": "5 years ago"}, {"text": "El sitio es muy bonito y al aire libre, si deseas ir tienes que saber que trabajan bajo reserva y que los fines de semanas colapsan. Por este motivo no pude usar la pista, pero entre al lugar y la atención muy agradable, me explicaron todo. Seguro volveré.", "author": "KAROLYNA ANDREA", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtc2FpaTN3RRAB", "timestamp": "4 years ago"}, {"text": "Los horarios son orientativos.\\n\\nEs la opción que tienes porque lógicamente no hay un circuito en cada esquina.\\n\\nCerciórate muy bien que está abierto para no darte el paseo.\\n\\nBusca teléfono y llama con anterioridad por que al menos fuera de temporada los horarios no son como marcan.", "author": "F.A", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqenNHWmNBEAE", "timestamp": "a year ago"}, {"text": "Es divertido sentir la velocidad tan cerca del suelo y competir con tus amigos. Se hace un poco corto y en verano hace muchísimo calor entre el clima y el motor del kart. Merece la pena aprovechar los ofertas que hay entre semana porque los findes está muy masificado.", "author": "JJ “MagicaFe” Contreras", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwemFUQ253RRAB", "timestamp": "2 years ago"}, {"text": "La primera vez y no la última. Ya no solo el circuito o que puedes elegir la potencia de los karts, si no además el equipo de personas que estan allí que en todo momento te hacen sentir como en casa. Para los que tengan miedo ir con niños, puedo decir que son muy seguros, que en las curvas son muy estables y que se lo van a pasar muy bien. Un 10!!!!", "author": "Jose M Vides Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1MG9tTldnEAE", "timestamp": "2 years ago"}, {"text": "¡No había montado en un kart en mi vida y la experiencia no ha podido ser más emocionante! El personal muy amable y cercano (también bastante tranquilizador). Un plan perfecto para ir con amigos. ¡Repetimos y lo recomendamos sin ninguna duda!", "author": "Laura Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cW8tQWtBRRAB", "timestamp": "2 years ago"}, {"text": "Hemos estado por la mañana un miércoles de 2x1 y la experiencia ha sido muy buena. El personal muy amable y simpáticos, incluso me han dejado un casco con soporte para la GoPro y el circuito y los karts estaban en buen estado. Esperamos volver y repetir pronto", "author": "Javier Porras Navarro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxOU1qajBBRRAB", "timestamp": "4 years ago"}, {"text": "Buena experiencia para montar en karts.", "author": "Icechurry", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21obmVFd3hkV1k0VFU5bVEwTm5SMGhETUVaWVRuYxAB", "timestamp": "7 months ago"}, {"text": "Encantado con la pista, los karts, la organización, las tarifas y el amable servicio que nos brindaron. El trato con los organizadores fue buenísimo y los karts estaban en muy buen estado. El mejor circuito de karting de la zona del mar menor sin duda. Fuimos un grupo de 10 personas y repetiría mañana mismo. Muy recomendable.", "author": "Álvaro García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPa19LcnFRRRAB", "timestamp": "3 years ago"}, {"text": "Wat een leuk avondje karting had moeten worden, werd een pijnlijke gebeurtenis. Omdat er in ons gezelschap tieners van 13 jaar en personen die voor de eerste maal gingen karten zaten, opteerden we voor de F200 karts. Eenmaal vertrokken zagen we dat er ook ook zwaardere karts in onze sessie zaten welke niet enkel sneller maar ook zeer agressief reden. We werden meerdere keren van de baan gereden en ook verbaal uitgescholden. Door de organisatie werd hier niets op gezegd. Gevolg was enkele blauwe plekken, gekneusde ribben en tieners.die over stuur waren. Toen we hierover iets wouden zeggen tegen de eigenaars kregen we geen gehoor en deden ze alsof ze ons niet verstonden. Ons zien ze hier nooit meer terug .", "author": "Tim Bruyninckx", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbzdxbFJnEAE", "timestamp": "3 years ago"}, {"text": "Me encanto el trato recibido por el personal del circuito. Tiene muy buena gama de oferta adaptadas a niños ,no tan niños y adultos con ganas de guerra.\\nLa zona de ocio amplia.\\nMuy buen sitio para ir solo, con amigos o con familia.", "author": "GONZALO BORREGUERO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVajh5NEh3EAE", "timestamp": "6 years ago"}, {"text": "Me parece muy bien que las personas que trabajen en el sitio puedan explicarle a los demás, que no sabemos cómo es el funcionamiento de las áreas de diversión\\nPero no voy a tolerar que por teléfono me digan una cosa y luego voy al sitio y te traten con prepotencia\\nYo creo que la educación ante todo", "author": "JP KinG", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMbkxiOXVnRRAB", "timestamp": "a year ago"}, {"text": "Espectacular amigos, todo muy bien organizado y un personal muy simpático. Lo único malo han sido los malvados mosquitos y el tráfico que originan los conductores menos avezados. Volveremos a encontrarnos amigos, muchas gracias.", "author": "José Antonio Martínez Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtaXM2VU5REAE", "timestamp": "3 years ago"}, {"text": "Es un sitio genial , lo tienen todo super bien cuidado y el personal es de 10\\nRepetiremos", "author": "Miriam Gil Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3dkthYi1nRRAB", "timestamp": "10 months ago"}, {"text": "De los mejores recintos que he conocido. Las instalaciones y los Karts están muy bien, el servicio atento y los extras también. Y el precio es asequible. Hay vueltas específicas para niños y dúos con niños.", "author": "Jose Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNUphM0RREAE", "timestamp": "2 years ago"}, {"text": "Un día estupendo en familia, muy buena atención por parte del personal y muy amables, una terraza con vistas a toda la pista excelente!\\nRepetiremos sin duda!!", "author": "Maria Martinez Lucas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5emFQOXl3RRAB", "timestamp": "a year ago"}, {"text": "Es un buen lugar para pasar la tarde con los amigos. Esta bien localizado y tiene aparcamiento amplio para coches. Si estás interesado en llevar una camara deportiva tienen cascos con adaptadores a su disposición si lo desea.", "author": "Revo García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZdWVYMjdBRRAB", "timestamp": "6 years ago"}, {"text": "El mejor karting de la región sin duda, los karts muy bien mantenidos y la pista igual además, es un circuito donde es difícil tener un accidente, es muy seguro.", "author": "Alejandro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBLWF5Ynp3RRAB", "timestamp": "11 months ago"}, {"text": "Disculpad la reseña sin comentario! He sido asiduo a este Karting desde sus inicios y ha evolucionado de una manera sobresaliente. Después de un largo periodo sin correr volví para iniciar a mi hijo de tres años junto conmigo en un biplaza. El trato genial! Siempre volveré.", "author": "Carlos Braojos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSalk3U1VBEAE", "timestamp": "Edited 2 years ago"}, {"text": "Super circuit ! Trop bien pour les grands et les petits !!!", "author": "Christophe Ducros", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pneGRGSnpibk5xUXpSWFNGSk9lVEpDWkhneWMwRRAB", "timestamp": "6 months ago"}, {"text": "La opción para grupos merece muchísimo la pena, por 30 euros puedes pasar una muy buena tarde con tus amigos, la pantalla en el circuito donde aparecen tus tiempos y la vuelta rápida es un puntazo. Siempre que vamos acabamos muy contentos.", "author": "Manuel Alcaraz Ros", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJbTYyRHFnRRAB", "timestamp": "7 years ago"}, {"text": "Anoche fui con 5 personas, esta mañana he ido otra vez, y estando en pista, nos sacaron a mi compañero y a mi hoy un poco antes de lo que yo habia calculado. El chico de pista me dijo que por unos segundos no nos habia dejado dar la ultima vuelta. Me ha parecido fatal que despues de gastar en 2 dias consecutivos mas de 100 euros, me dejen sin la ultima vuelta por unos segundos. Estuve pensando en correr de nuevo, pero me ha parecido tan mal, que me he ido. Para mi la atencion y valoracion al cliente es lo mas importante.", "author": "Jose Vázquez Parente", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMVo2SWdRRRAB", "timestamp": "5 years ago"}, {"text": "Es la tercera vez que voy. Pero hoy el primer coche a la tercera vuelta se estropeó el motor y me dieron otro y en la primera vuelta se rompió los frenos, si, del todo. Mala suerte? Quizás. les doy tres estrellas porque al reclamar me devolvieron el dinero y porque está ha sido la primera vez que he tenido problemas con ellos.", "author": "Luis Felipe Alburquerque Briganti", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcUwydDF3RRAB", "timestamp": "6 years ago"}, {"text": "Ests bien pero creo que las carreras se pueden diferenciar aún más entre adultos y mayores. No puede salir un niño de 13 años con tíos de 40 que no hacen nada más que comérselo en la pista. Además creo que fueran 10 min en vez de 8 tampoco estaría mal!! La organización que tienen es buena, la higiene de los cascos los echan spray cada vez que se utilizan. El circuito es bueno con su curvas cerraditas y un par de rectas buenas.", "author": "LUIS", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1NmU3VnRBRRAB", "timestamp": "3 years ago"}, {"text": "Inconcebible que mezclen karts de distinta potencia en una misma sesión, me parece una gran imprudencia por parte de la empresa que solo se explica por el afán recaudatorio dada la cantidad de usuarios que se concentra un domingo por la tarde. Te encuentras constantemente con karts que te están adelantando con el riesgo de choque que ello conlleva. De hecho mi hija de 15 años tuvo un choque con un kart que se quedó cruzado en mitad de la pista y que no pudo sortear. Resultado tras visitar Urgencias: 3 días de reposo absoluto debido al fuerte traumatismo producido en los 2 tobillos.", "author": "Francisco Ginés González", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwZ3VXaFJREAE", "timestamp": "2 years ago"}, {"text": "Atención al cliente muy deficiente. Nos prometieron una cosa y resultó que era mentira y nos querían cobrar el doble. Una empresa tiene que tener unos valores éticos y hacerse responsable de sus errores, sea del trabajador que sea. No recomiendo", "author": "Jose Gómez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCMGN1cWF3EAE", "timestamp": "3 years ago"}, {"text": "Su contestación sobre el hacer del progenitor entrando en temas morales les hacen flaco favor. Por lo que he podido leer no soy la única que piensa que les falta educación y respeto hacia los clientes. Me reitero experiencia cliente 0 y de respeto ya ni hablamos. Gracias y que les deseo mucha suerte", "author": "Amf 82", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1MnVXZm9RRRAB", "timestamp": "3 years ago"}, {"text": "Primera vez que mi hija de siete años pilotaba un kart. Espectacular, ha salido eufórica de su carrera. Los peques los han agrupado para no mezclarlos con otros de karts más rápidos ( no hay pista infantil, todos corren en la misma pista, mejor este método que la pista infantil ).\\nLo hemos pasado en grande. Volveremos seguro", "author": "Rafael Valencia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDOFlpcklREAE", "timestamp": "5 years ago"}, {"text": "La verdad es que para ser mi primera vez en unos karts la experiencia fue inmejorable, repetiremos seguro de lo contentos que quedamos, igual el tiempo que duró se nos hizo muy corto. Volveremos seguro con la oferta del día del piloto de los miércoles para estar el doble de tiempo.", "author": "Sergio Montoya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2ME1Pb29BRRAB", "timestamp": "4 years ago"}, {"text": "Top, on a passé un très bon moment, réceptionniste qui parle français, le prix est très abordable pour 4 personnes, les moniteur au top, le circuit aussi. Pour ceux qui passe leur vacances à côté franchement à faire", "author": "Ami Lari", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOTQyRXRRRRAB", "timestamp": "3 years ago"}, {"text": "Fuimos a celebrar un éxito de nuestra empresa y la verdad que fue el mejor sitio donde pudimos ir. El trato del personal inmejorable, las instalaciones súper limpias y cómodas con todas las atenciones, y los vehículos a tope de gama. La verdad que repetiremos la experiencia. Todos mis compañeros y yo sólo tenemos palabras de agradecimiento hacia estos profesionales del Karting.", "author": "jaymon security", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLNWZlWW5nRRAB", "timestamp": "4 years ago"}, {"text": "Ha estado muy bien. Hemos ido a un cumpleaños y ha sido muy divertido. Las instalaciones están bastante bien y hemos pasado un rato muy agradable. Repetiremos.", "author": "Estherlaura Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacExlOExREAE", "timestamp": "2 years ago"}, {"text": "Schöne Strecke zum Pitbiken, teilweise etwas rutschig aber sonst sehr spaßig.", "author": "Jo Neu", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTcGNqZll3EAE", "timestamp": "5 years ago"}, {"text": "Una gran pista y buen precio", "author": "Carlos Perez Sierra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDeC1XRUx3EAE", "timestamp": "5 years ago"}, {"text": "Circuito espectacular con un fantástico trato. Ha sido mi primera experiencia y no dudaré en repetir. Además, tiene unas instalaciones muy bienas, con una pantalla gigante donde se pueden ver los tiempos en pista. ¡Volveré sin dudarlo!", "author": "Adrián García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJb292Y0RnEAE", "timestamp": "7 years ago"}, {"text": "El personal es agradable y atento. Tienen una pista en condiciones de uso bastante aceptable.\\nLos Karts están en buen estado. Quizás debería mejorar su nivel de frenada. Pero es una buena actividad en la que divertirse en grupo.", "author": "andespand espandcad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldUlERUR3EAE", "timestamp": "3 years ago"}, {"text": "Heb veel kartbanen gezien en gereden, maar hier gaan we niet meer naar toe. Oude en slecht onderhouden karts. Onvriendelijke baan medewerkers die zelfs tegen de kinderen onvriendelijk zijn. Heel jammer.", "author": "Geoff Oosterbaan", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaN0tTYzRRRRAB", "timestamp": "2 years ago"}, {"text": "Muy buenas instalaciones y bien diseñadas las medidas de seguridad. El mantenimiento de los karts podría ser mejor ya que algunos tienen la dirección rota o ruedas viejas. Por lo demás, precio acorde a lo que ofrecen y buena accesibilidad para gente con dificultades de movilidad.", "author": "jose ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2c2V2VThBRRAB", "timestamp": "4 years ago"}, {"text": "Esperando media hora, con todos los grupos anteriores entrando por separado y de ser 7 pasamos a 10 y después 15 personas (8 ajenas). No volveré ni lo recomendaré\\n\\nEn respuesta: Se llamó 2semanas antes y no se reservaba..Esperamos 35 minutos de reloj y luego se fue sumando gente a la sesión sin previo aviso. En el marcador ni se veían los nombres de los 7. Reafirmo no volveré ni recomendaré , también se salió la rueda de un car y el circuito dejaba que desear.", "author": "Nayara", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydHZtcV93RRAB", "timestamp": "Edited 3 years ago"}, {"text": "Increíble. El trato amable de sus dueños Roberto y Diego es tan solo la bienvenida a una experiencia divertida, y que va a más con el paso de las vueltas a su circuito. Gracias por todo!", "author": "Jesus Miguel Lopez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cXBQMUR3EAE", "timestamp": "2 years ago"}, {"text": "Doskonałe miejsce na rozpoczęcie (i nie tylko) przygody z kartingiem. Dzieciaki bawiły się bardzo dobrze. Trzeba trochę poczekać ze względu na fakt, że tor cieszy się dużym zainteresowaniem oraz jest szczyt sezonu (sierpień). Polecam.", "author": "Hubert Podgórski", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhajZ2WGRnEAE", "timestamp": "4 years ago"}, {"text": "La pista mejor mantenida que he visto, curvas preciosas y kars mantenidos.\\nPara los cascos utilizan una máquina para limpiarlos. Tiene una pantalla grande y de buena calidad que te dice los tiempos.\\nVolvería a conducir", "author": "Dislol", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaDlmZDF3RRAB", "timestamp": "4 years ago"}, {"text": "Buen trato, circuito adecuado y largo. Los coches tienen buen mantenimiento. Diversión asegurada sobre todo en grupos con f200 y paquete de calificación, carrera y carrera invertida. Recomendado.\\nEl mejor de la zona con diferencia.", "author": "Juan M. Ros", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa0tpYzV3RRAB", "timestamp": "8 years ago"}, {"text": "Está bastante guay, tienes su entrada y los karts muy bien Y tienes cosa hay que pillarle truco", "author": "M G G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VOLXdnOG1QOHJtYjRRRRAB", "timestamp": "8 months ago"}, {"text": "La verdad es que está muy bien, con una pantalla de tiempos y una pista muy divertida. Siempre hay mucha gente en verano. Recomiendo llamar y reservar.", "author": "Jorge MM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwazdqZ0ZREAE", "timestamp": "2 years ago"}, {"text": "Sitio muy agradable para pasar un buen rato entre amigos o en familia, personal muy profesional y amable, lo mejor la chica que atiende, muy maja y simpática.", "author": "Lonaxon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1X2JUdTRRRRAB", "timestamp": "Edited a year ago"}, {"text": "Una pista genial. Muy cuidado todo, un trato espectacular, y los trabajadores super cercanos.\\nUn gran lugar para pasar un buen rato de adrenalina y con la tranquilidad de que están pendientes de ti. Además de las vistas al mar menor.", "author": "Javier Fernández Villalón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCejZQZTdBRRAB", "timestamp": "2 years ago"}, {"text": "Karting moderno y bonito, te sientes un piloto.\\nLlevado por una familia que te asesora y ayuda en tus dudas.\\nInstalaciones nuevas en la que los karts van monitorizados y ves a tiempo real tu tiempo en paso por meta.\\nTambién tienen cámaras que van en tu casco para grabar la carrera.\\nDesde la cafetería y la terraza que encima hay ves perfectamente el circuito.\\nSi tienes suerte ves los aviones de la Base aérea de San Javier ya que la pista del aeropuerto está a 300 m.\\nBonita jornada.", "author": "Jorge Vazquez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURldTVLZkJREAE", "timestamp": "3 years ago"}, {"text": "Muy buen servicio y el niño encantado , ya quiere volver", "author": "Pedro Jose", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2Nk91NzJBRRAB", "timestamp": "4 years ago"}, {"text": "Cuando os compramos los pases al circuito arriba en barra del bar nos habláis de unos 30 min de espera y luego tuvisteis a los crios esperando más de 2 horas. Además los biplazas los tenéis limitados para que gasten menos. Y presumis de 40 años de experiencia, y tanto...", "author": "Rafael Aragon Campillo", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwXzVMYzZRRRAB", "timestamp": "6 years ago"}, {"text": "Trato fantástico, llame por teléfono y me atendieron al momento, aún apesar de que ese día llovió, solo la estancia fue agradable, tenían buena conservación en los vehículos, seguridad en la pista y un sistema de clasificación que incitaba a mejorar en carrera.", "author": "Alfonso Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNC1YX3FnRRAB", "timestamp": "3 years ago"}, {"text": "Muy divertido por las tandem de karts los niños para ser su primera experiencia salieron eufóricos. Quizás pondría algo más de tiempo pero la verdad que se hace ameno y muy divertido. Repetiremos muy recomendable", "author": "Sirakusa Von Z", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcGZYWlZREAE", "timestamp": "2 years ago"}, {"text": "Hemos pasado un magnífico día en go karts mar menor, enhorabuena por vuestro gran trabajo y por el gran circuito que tenéis.Excelente gente la que trabajáis, estáis en todo, para que nuestros peques, puedan disfrutar, sin duda alguna y los más grandes también. Geniales instalaciones, para tomar un refresco con sol magnífico!! 🌝🌞O simplemente pasear 🏆🥇🥈🥉😘", "author": "Noelia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMnM2ZzhnRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Estupendo circuito. Si te gusta el Karting es el lugar ideal para quemar adrenalina. Los coches están bastante a punto. Las sensaciones son muy buenas. He pasado un rato muy agradable con mi compañero de carreras y con los demás competidores de pista.", "author": "Rodrigo Lizano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtM3NIeHJBRRAB", "timestamp": "4 years ago"}, {"text": "Buena pista para pasar un rato conduciendo uno de los diferentes karts con variedad de modelos y cilindrada. Tiene una gran pantalla donde aparecen los tiempos y los dorsales. Desde el mirador también se puede seguir con las carreras. Hay un bar y servicios públicos. También hay zona de sombra y un gran parking gratuito. Es de los mejores circuitos de la zona y tiene buenas ofertas para todos los públicos.", "author": "Miguel Carlos Cuadrado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVdnJmeDBRRRAB", "timestamp": "6 years ago"}, {"text": "Uno de los mejores lugares para pasártelo genial con tus amigos y familia. Además los karts y la seguridad es máxima, la atención y simpatía de los trabajadores increíble y encima en su restaurante se come de lujo, k más se puede pedir.\\nRepetiremos seguro.", "author": "David Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGRXSkpREAE", "timestamp": "4 years ago"}, {"text": "Volvería una y mil veces más, me encanta este karting, los karts son un tiro y la pista es perfecta, un kartodromo genial para echar un buen rato y hacer buenos tiempos :)", "author": "SamuMan Manrique Salamanca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNILWFQVWh3RRAB", "timestamp": "a year ago"}, {"text": "El mejor circuito de Karting en la zona sin ninguna duda. Desinfectan los karts y los cascos antes y después de cada uso. Perfecto para estar con amigos y familia en la terraza o en el porche. Desde el parking hasta el circuito no hay ni un solo escalón adaptado a personas en silla de ruedas", "author": "Carlos Camacho", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhLTR1WTN3RRAB", "timestamp": "4 years ago"}, {"text": "Eine wirklich tolle Bahn. Tolle Auswahl an Fahrzeugklassen. Die Bahn ist eine tolle Herausforderung und macht somit besonders viel Spaß.", "author": "Dennis Fiedler", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURybnJQbnR3RRAB", "timestamp": "a year ago"}, {"text": "El lugar es increíble. Incluso siendo principiante, te lo pasas genial. El personal muy atento en todo momento. Ojalá podamos repetir pronto.\\nMuchas gracias! 😊", "author": "Alpana Zurdo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyX09tQ0lBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Heel vriendelijke mensen en heel proper zowel buiten als binnen. Ook een heel mooi circuit om te rijden en super onderhouden ook de karts zijn super en de mensen doen hun best om je te helpen in het engels kortom super karting met hele vriendelijke mensen", "author": "Ayrton Dupont", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSczhUUGlBRRAB", "timestamp": "2 years ago"}, {"text": "Circuito divertido, pantalla con resultados, buena relación calidad -precio. La 5ª estrella no se la pongo porque, en comparación con otros circuitos, me pareció que la dirección de los coches estaba muy dura.", "author": "Fernando Sanchez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlaktHRU1REAE", "timestamp": "3 years ago"}, {"text": "Diese Go Kartbahn ist lang, bietet viele Möglichkeiten zum von unterschiedlichen Kategorienen an. Zum zuschauen sind einige aussichtsreiche Standpunkte angeboten, oben auf der Terasse oder bei schlechtem Wetter im Gebäude. Man kann beim Gruppenrennen Namen zuordnen und auf der Taffel werden die Zeiten angezeigt. Nach dem Rennen kann ein Ausdruck mit Rennzeiten kostenlos mitgenommen werden.", "author": "Harry Brestel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwdmJpUC13RRAB", "timestamp": "2 years ago"}, {"text": "Bonjour étant amateur de karting et pour avoir fait du karting dans plusieurs circuits en Europe je peux vous dire que celui-ci fait parti de mes préférés le matériel est en super état et le personnel est sympathique. Je recommande vivement. Idéal même pour les enfants en bas âges. Les parents qui veulent faire découvrir le karting à leurs enfants peuvent y aller sans soucis il dispose de karting by place. Visitez leur site vous y trouverez tout les renseignements. Bonne course.", "author": "Issam halal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDN09LT2NBEAE", "timestamp": "Edited 5 years ago"}, {"text": "Hemos ido unas tres veces este mes y somos de Murcia centro, sin duda los mejores calidad precio. Me encanta el personal muy atentos y simpáticos. En cuanto a karst muy competitivos e igualados unos con otros", "author": "Manuel Guerrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3c3VTX0ZBEAE", "timestamp": "8 years ago"}, {"text": "Solo puedo decir cosas buenas de este karting.\\nPista, plantilla, todo en general lo recomiendo para aficionados de mínimoto y kart, pasamos un gran fin de semana allí, son una gente fantástica y agradable. Mucha afluencia aún así rodamos bastantes tandas, buena organización por parte de la plantilla.\\nLas instalaciones super limpias.", "author": "David Herreros Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQydWZxZ0F3EAE", "timestamp": "3 years ago"}, {"text": "Fenomenal para una tarde en familia", "author": "Isabel Sánchez Ruiz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0Mk4xQmFWWEZTTldrNVRrbDFlbmR0VldvNVltYxAB", "timestamp": "4 months ago"}, {"text": "Muy corto el tiempo el sitio bien pero un poco caro", "author": "SILVIA GARCIA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNValk2N1JBEAE", "timestamp": "6 years ago"}, {"text": "Buen circuito, karts normales, pero con la trazada del circuito no se necesita más para pasarlo bien! Muy cuidado todo, y Con buena tecnología de control de tiempos!! Para pasar una buena jornada allí con amigos, o ir a rodar un ratico para soltar estrés! Recomendable!!!", "author": "Andres M M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMXZ5S3BBRRAB", "timestamp": "5 years ago"}, {"text": "Coches rápidos, circuito duro y Expectacular, instalaciones muy adecuadas, parking propio, y personal agradable.\\n\\nMi experiencia y la de mi hijo ha sido muy muy buena. Y repetiremos seguro.", "author": "antonio rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1M3ZfM0tBEAE", "timestamp": "3 years ago"}, {"text": "Muy buenas instalaciones. Se hace bastante ameno esperar tu turno porque tienen una terraza a la sombra para esperar. Un poco más caro que otros Karts.", "author": "Claudia Bustamante Ros", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwZzg3cmN3EAE", "timestamp": "2 years ago"}, {"text": "Nos lo pasamos genial. El precio está muy bien y la atención de los trabajadores también. Volveremos, sin duda.", "author": "Scherezade Gosalvez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5ai1fLTlRRRAB", "timestamp": "a year ago"}, {"text": "Buena pista, merece la pena. Distintas opciones. La cafeteria muy agradable y buenos precios.", "author": "Felipe byLogic", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNycDRHdmVnEAE", "timestamp": "a year ago"}, {"text": "Los trabajadores son muy amables, hay un ambiente súper bueno, he ido 4 veces y en las 4 veces ha sido la experiencia de 10, el circuito muy guapo y los Karts también. Espectacular 👌", "author": "elcristian12xd", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1NF9pNFFREAE", "timestamp": "3 years ago"}, {"text": "Un sitio muy divertido y con grandes profesionales 💯✨", "author": "Alex Curious Life", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMWY3TWxRRRAB", "timestamp": "5 years ago"}, {"text": "Le circuit donne vraiment envie mais la réception est nulle... 30mn de route pour au final tombé sur une personne vraiment désagréable 😡 je conseille plutôt d'aller à Go-Karts Orihuela Costa qui eux sont beaucoup plus courtois", "author": "Sophia Sophia", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1LVlPZFZ3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Muy buen sitio para pasar en familia y divertirse un rato.\\nA los niños les encanta, pero los que disfrutamos somos los padres.", "author": "Angelillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcnZ6TnFBRRAB", "timestamp": "2 years ago"}, {"text": "Schöne Bahn, gutes Personal, nur schade das im July und August Mittwochs die 1 für 2 Regelung nicht gilt. Da habe ich mich schon verarscht gefühlt...", "author": "Dirk Remmert", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKLTdHbWN3EAE", "timestamp": "2 years ago"}, {"text": "Prueba tus habilidades de conducir y diviértete", "author": "Heliodoro Cuesta (Helio TVsetup)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1aXZuVGRREAE", "timestamp": "2 years ago"}, {"text": "Estupendo mini karts, que parece un circuito de Fórmula Uno por la calidad de sus coches y de las instalaciones. No le doy las cinco estrellas porque, a mi parecer, o al menos para mi gusto, en la sesión que me tocó correr había demasiados coches...no recuerdo exactamente cuántos, peri sí mas de 12, y a veces estaba algo complicado, sobre todo cuando hay mucho Alonso y \\"Shumaker\\" !!!!", "author": "J. U.", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMVktS1RBEAE", "timestamp": "4 years ago"}, {"text": "Mi hijo disfruta enormemente. Magníficas instalaciones.", "author": "Julian Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQydkxXSGZBEAE", "timestamp": "3 years ago"}, {"text": "buena atención y mi hijo disfruto mucho de los Karts. bonita experiencia", "author": "Sand", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvM3Z5a0dnEAE", "timestamp": "9 months ago"}, {"text": "Esta bien, pero deberia ser por vueltas y no por tiempo, un niño que sube la primera vez y cuentes por tiempo pues dara dos vueltas solo, deberian haber dos modalidades, una por tiempo y otra por ejemplo 5,10,15 vueltas segun precio.", "author": "JUAN CARLOS", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMybHRhd01REAE", "timestamp": "3 years ago"}, {"text": "Los mejores karts a los que he ido\\nMuy bien de precio , cronometran los tiempos de cada piloto y no se te hace para nada corto como en otros lados que pagas , te das 4 vueltas y se termina\\nLos karts bien mantenidos sin ningún problema, la pista igual y sus trabajadores muy agradables", "author": "Dani Triviño", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKdXFiME9BEAE", "timestamp": "2 years ago"}, {"text": "Siempre un diez, un trato perfecto para ir con niños o para ir a competir. La opción de ir con un grupo grande y hacer una carrera completa es la mejor. El circuito es amplio y no es como los demás circuitos de kartings que tienes ruedas entre las curvas, aquí hay pianos y césped, que si apuras y te sales es completamente seguro. Tiene las estadísticas con todos los récords diarios, mensuales y anuales de cada cilindrada.", "author": "José Luis Mateo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLb09Lb1lnEAE", "timestamp": "4 years ago"}, {"text": "Sehr gute Bahn, gute Benziner.\\nFreundliche Mitarbeiter.\\nHelme wurden nach der Nutzung desinfiziert.\\nGutes Preis / Leistungsverhältnis.", "author": "Hubert Reith", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSX19QZWR3EAE", "timestamp": "2 years ago"}, {"text": "Estupenda la experiencia. Los F 300 van muy bien.", "author": "Cesar Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbnJhRFFnEAE", "timestamp": "7 years ago"}, {"text": "Los Auxiliares de Pista son prepotentes y son conscientes de que los kars no frenan , se les comenta y dice : \\" ah ya, esque el latiguillo esta suelto\\" . Corriendo con el 2° Kart mas rápido del lugar.\\nEl deposito de gasolina esta entre las piernas al descubierto ,el asiento de plastico hace daño en la espalda.\\nNo hay protecciones en los laterales.\\nTodos los años vamos y siempre tienen algun fallo, pero este año se han lucido. RESPUESTA AL NEGOCIO:\\nVOSOTROS HABEIS BORRADO LA RESEÑA DE MI PAREJA, YO NO HE BORRADO NADA. OS DENUNCIARÉ 100%", "author": "Dimetu", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1dTdQWGZREAE", "timestamp": "Edited 3 years ago"}, {"text": "Mukava rata ja hyvät autot.", "author": "Kim Koivuranta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wVlZYTTBabXBhYzBkbmRTMTJSMXBZTldWcGJWRRAB", "timestamp": "2 months ago"}, {"text": "Superbe accueil une demoiselle parlait le français ! Un très beau circuit ! Qu'une hâte revenir vite pour battre mon record !", "author": "alex _tremiste_", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwN1BUeUJREAE", "timestamp": "2 years ago"}, {"text": "Pourtant j'adore découvrir des activités mais c'est pas moi pas moi qui suis trop vieux mais votre karting c'est vraiment trop dangereux 😰", "author": "Rémi Tessier", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3bkxfMlp3EAE", "timestamp": "a year ago"}, {"text": "KARTING DE LUJO¡¡¡ perfecto para pasar un buen rato con los amigos,familia.\\nlos chicos encantadores y muy atentos¡¡¡¡ comimos en la cafeteria que tienen y se pueden ver las pantallas gigantes con las puntuaciones,esta genial.muy bien localizado..\\nMUY RECOMENDABLE¡¡¡¡¡", "author": "Jennifer Olmos Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzMFltdDhnRRAB", "timestamp": "5 years ago"}, {"text": "Nefasto servicio al cliente teníamos una reserva y después de hacer el viaje no pudimos hacer uso de nuestra cita reservada", "author": "Miguel Ángel", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBNGVmN0tnEAE", "timestamp": "11 months ago"}, {"text": "Sitio enorme, con un servicio excepcional. Estaba todo muy limpio y desinfectado y además el tiempo de carrera comparado con el precio estaba estupendamente.\\nVolveremos.", "author": "Maria Alcantara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyMXZ1c2NREAE", "timestamp": "3 years ago"}, {"text": "Los miércoles tienen una oferta genial para grupos grandes. Está genial de precio e instalaciones", "author": "AloMurSan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqNmJxWEJnEAE", "timestamp": "a year ago"}, {"text": "Muy buenas instalaciones para pasar un buen rato de karts.", "author": "Maximo Iñiguez Sevilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhd09uTGpnRRAB", "timestamp": "4 years ago"}, {"text": "Bra gokarter og gøy bane", "author": "Rune Heggland", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCalNUbDNSWEYyU2kxblptbFhRVlF3WjJWdFFuYxAB", "timestamp": "2 months ago"}, {"text": "Tras probar varios circuitos de Karts de la Región de Murcia, este es sin duda el mejor por el que he circulado. Sin embargo los Karts no han sido los mejores (aunque no por ello malos). Los que tienen un volante de asas (no sé cómo llamarlo) en vez de uno redondo son bastante incómodos. Por lo demás una experiencia increíble para ir con un grupo de amigos.", "author": "José Javier", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBdGFIa29BRRAB", "timestamp": "9 years ago"}, {"text": "Un sitio muy recomendable, fui con 14 niños para el cumpleaños de mi hija,la cual se quedaron encantados ellos y nosotros,lo recomiendo 100%", "author": "Manuel Ortiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURob0xHYXJBRRAB", "timestamp": "2 years ago"}, {"text": "Me encantan los karts y cada vez que puedo si me da tiempo voy y me hecho unas carreras, lástima que me pilla muy lejos de casa y no tengo ninguno más cerca pero éste en cuestión me gusta bastante y es de los mejores que hay, aparte el trazado ha mejorado siendo más largo que antes y mejorando el agarre también. Muy recomendado para pasar un gran rato entre amigos!!", "author": "Miguel Ángel Gómez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZcTdTZVBBEAE", "timestamp": "6 years ago"}, {"text": "Trabajadores majísimos y genial para un día con amigos o familia. Siempre que vamos a karts elegimos este sitio.", "author": "Dominik Novotný", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURudGVtTkNnEAE", "timestamp": "a year ago"}, {"text": "Somos de Galicia y pasamos 1 mes al año en la zona de vacaciones y nunca perdemos la costumbre de acudir por lo menos unas 3-4 veces al Go Karts Mar Menor, personal de 10, circuito de 10 y Karts de 10, muy recomendable la experiencia con el F400! Tienen tabla de tiempos en directo que el propio piloto ve a cada momento incluso informan de la vuelta rápida, una pasada!", "author": "Martín Gutiérrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhdDRUdVVBEAE", "timestamp": "4 years ago"}, {"text": "Accueil sympathique. Explication facile via whatsapp pour se renseigner. Réponse rapide. Nombreux choix de motorisations de karts qui feront le bonheur des petits comme des grands. Un moment sympathique à partager entre amis ou en famille.", "author": "Eric Deliers", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMWFmX3VBRRAB", "timestamp": "4 years ago"}, {"text": "Es el mejor circuito de los que he estado, sus instalaciones son increíbles y el trato es magnífico, he pilotado los karts de la categoría F-400 y son impresionantes la potencia que tienen, también te dan los tiempos que has hecho en la carrera y puedes verlos en directo desde la pantalla, nuestros hijos también montaron en los karts y se lo pasaron en grande. Saludos desde Albacete a Manolo, Andrei y Roberta por tratarnos tan bien, lo recomiendo a todo el que quiera pasarlo en grande.", "author": "Herminio Hernandez Navalón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbGVUWlVnEAE", "timestamp": "Edited 6 years ago"}, {"text": "Sin duda alguna, el mejor circuito para alquilar un Kart de 400cc, circuito divertido y técnico, y además el kart monta motor Subaru de competición y ruedas a la altura para ir muy fino. Sin duda volveré.", "author": "Tomás García Muñoz (Tommy_147)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMl9tbkd3EAE", "timestamp": "3 years ago"}, {"text": "El personal es muy cercano, su flota de Karts están en muy buen estado, la pista es fantástica y la tienen supercuidada, organizan eventos increíbles... Lo recomiendo sin duda, un lugar increíble para iniciarse en este mundillo y para disfrutarlo los más expertos.", "author": "Josema Pinar Laredo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnR2cnhnRRAB", "timestamp": "Edited 11 months ago"}, {"text": "Muy contentos con ellos!\\nLas instalaciones impecables, los vehículos de maravilla y lo mejor el personal! Muy recomendables para cualquier público y situación, incluso eventos.", "author": "Manu Bermejo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcFpuXzFnRRAB", "timestamp": "4 years ago"}, {"text": "Es el mejor lugar de Karts de toda la peninsula Ibérica... nisiquiera la pista de Alonso de Asturias es tan completa y afable. Además de sus completas, bien cuidadas, atendidas, mejoradas, y tecnologicas instalaciones, la atención profesional de los responsables y los clientes asiduos como “el Garre y su vaquilla corneadora” no os dejaran indiferentes. Recomiendo la actividad en el Mar Menor.", "author": "José Miguel Juan Vicente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdnJldldnEAE", "timestamp": "6 years ago"}, {"text": "Kul bana och vettiga Cartar.", "author": "Thomas Gillisson", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOeWNqQnJSMU4yUmpWTk9EWmpia1J6WmpocU9YYxAB", "timestamp": "3 weeks ago"}, {"text": "Circuito muy divertido técnico y muy bien cuidado . Trato muy muy agradable tanto de los dueños como del personal . Cafeteria donde se ve todo el circuito y terraza donde se ve el mar de fondo . 100% recomendable", "author": "David fernandez. POLLI", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRck1fYUNnEAE", "timestamp": "Edited 7 years ago"}, {"text": "Posiblemente la mejor pista de Murcia. Si sois 10 o más se pueden hacer calentamientos, clasi y carreras. Pero dejad muy claro cuantos vais a ser, por que no suelen poderse hacer cambios de última hora.", "author": "Emilio Gil López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBaktYd25nRRAB", "timestamp": "7 years ago"}, {"text": "Un lugar muy agradable donde pasarlo bien y hacer carreras en los karts y tomarse algo en el bar que hay.", "author": "Eduardo Francisco Garrido Zorrilla (El Edu)", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMaDk2bEtREAE", "timestamp": "a year ago"}, {"text": "Es un circuito muy técnico, para disfrutar de la velocidad sin riesgo, el más grande de toda la zona, súper divertido y rápido pero lo mejor de todo son las personas que lo regentan, grandes personas solo pueden ofrecer buenas cosas. 5 estrellas se queda corto.", "author": "Francisco Manuel Castejón (FranCastejón)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnB2RzRRRRAB", "timestamp": "6 years ago"}, {"text": "Un sitio estupendo para disfrutar de un buen día de Karts. Además de la carrera puedes comer allí y saldrás más que satisfecho. Un 10 para la dirección del establecimiento que se nota que año tras año se van superando.", "author": "Asier Delicado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBcC1tM013EAE", "timestamp": "8 years ago"}, {"text": "Soy cliente habitual y ayer estuve de nuevo como cada mes, siempre recibo un trato excelente, los kart van de maravilla el circuito esta cuidado y el personal tiene un trato excelente para ir a pasar un buen rato si te gusta este mundillo aqui tienes tu sitio", "author": "Gineso7", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhM29LblVBEAE", "timestamp": "4 years ago"}, {"text": "Excelente circuito, muy grande por lo que la sensación de competencia es increíble. Una gran experiencia. Apto solamente para amantes del motor", "author": "Carlos García Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaTlLRFdBEAE", "timestamp": "4 years ago"}, {"text": "La pera!!! Siempre hacemos una carrera familiar y se portan muy bien! Es verdad que había un kart que se estropeó pero el resto muy bien!", "author": "paloma neira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYaHVhNUN3EAE", "timestamp": "a year ago"}, {"text": "Avions juste besoin de renseignements très bien accueil et cerise sur le gâteau une des employése parlait français\\nNous irons avec les enfants", "author": "leflao brigitte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEaGZURGpnRRAB", "timestamp": "a year ago"}, {"text": "Los mejores Karts que he probado. Un circuito largo y divertido, unos Karts potentes pero cómodos y un trato absolutamente excepcional. Sin ninguna duda repetiré", "author": "Carlos Ferrús Ferri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaDZybFR3EAE", "timestamp": "2 years ago"}, {"text": "Los coches están bien, la atención muy buena. Pasamos un rato estupendo soltando adrenalina, para repetir por supuesto", "author": "Alejandra.calle@gmail.com Markelasier2", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwenVmZVFnEAE", "timestamp": "2 years ago"}, {"text": "Es el mejor circuito de karting de la Región de Murcia y de levante no solo por los karts, higiene y circuito sino por el trato y servicio al cliente. Se crea afición sana y competitiva y eso es de agradecer!!", "author": "Adrián Valverde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGNHellBEAE", "timestamp": "4 years ago"}, {"text": "Un gran lugar con gente muy agradable,a pesar de ser la primera vez que conducía y tener algún problema, mi hija se lo pasó muy bien y la trataron muy bien.", "author": "Carlos Martin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcktxTUlREAE", "timestamp": "7 years ago"}, {"text": "A mi hijo le encanta ir. Esta vez ha tenido salida desde la parrilla!!! Las vistas desde la terraza del \\"pitlane\\" son fantásticas", "author": "Isabel González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxa0lhM0N3EAE", "timestamp": "4 years ago"}, {"text": "No nos ha gustado nada que en una carrera con amigos siendo nuestra primera vez nos metan a gente con kar que corren mas y nos hagan sentirnos inseguros, y no son nada atentos ni simpaticos", "author": "Ade suarez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0aXUtdnh3RRAB", "timestamp": "a year ago"}, {"text": "Enhorabuena por vuestro Karting, sois los mejores de Murcia con diferencia, cada día vais a mejor los karts super cuidados y super rápidos, los mejores que he probado y las instalaciones de 10, la pantalla gigante del circuito es una pasada y ver en las pantallas de dentro del bar el recorrido virtual es increíble, volveremos pronto!", "author": "Karima 14", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MGRHcWR3EAE", "timestamp": "Edited a year ago"}, {"text": "Buen circuito, buen plan para despejarse 🏎️", "author": "Rafa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcDZPMDNBRRAB", "timestamp": "2 years ago"}, {"text": "Gente grosera y maleducada,coches muy sucios y llenos de aceite sin mantenimiento ,el otro día el coche de delante me mancho toda la camisa de aceite y el que yo llevaba no frenaba bien y olían a quemado y no te salgas de la pista o des un golpe a otro coche porque al salir te hablan mal y delante de la gente(gritan me vas a hundir el negocio,aquí no vuelves a entrar y eso solo se lo dice a los niños porque no se atreve con los adultos,un hombre de ojos azules y vestido muy sucios y olor sobaco,nunca más volveré,ya voy a otro circuito que son muy amables,más baratos y mejores coches", "author": "Fernando Cantero martinez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhdHF2b09nEAE", "timestamp": "4 years ago"}, {"text": "Lugar muy recomendable los peques y papis que se quieran iniciar en este mundillo.circuito muy cómodo y nada peligroso personal atento y gran variedad de coches,yo estuve con mi hija de seis años en tanda infantil en coche doble y de lujo la nena muy contenta y muy buen ambiente que se agradece gracias y seguir asi", "author": "ignacio ruano mateo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhajR1Vm5RRRAB", "timestamp": "4 years ago"}, {"text": "Todo muy bien, a excepción que los coches están al sol, y el volante se pone muy caliente y produce ampollas manos, en la 2 tanda.", "author": "Antonio Francisco Benitez Rubio", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwLTRteW1RRRAB", "timestamp": "2 years ago"}, {"text": "Está genial!!!\\nCircuito guapo, con Cars de diferentes cilindradas, tanto para niños como adultos.\\nCafetería buena, y tasas las instalaciones muy cuidadas.", "author": "Diego Cuesta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRZ29DWk5BEAE", "timestamp": "7 years ago"}, {"text": "La verdad que a sido impresionate el trato inmejorable tanto en la pista como en la merienda lo recomiendo para cumpleaños como para pasar una tarde divertida buen sitio y trato espectacular", "author": "Natalia Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdjl2VHVnRRAB", "timestamp": "3 years ago"}, {"text": "12 euro les 8 minutes moteur ados .", "author": "Fayrouz Grine", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KclZuVmFXRzFuVW1obWFXczNObGhaTW5SRFpYYxAB", "timestamp": "6 months ago"}, {"text": "Lang en breed parcours, geen wachttijden, karts rijden goed, optrekken valt een beetje tegen (300cc) maar er is ook keuze voor 400cc vanaf 18 jaar", "author": "Bernard Preneel", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRNWVMMHFBRRAB", "timestamp": "8 years ago"}, {"text": "Circuito bien diseñado para exprimir el kart y el 400cc tira bastante bien, da gusto correr ahi", "author": "Cristian Murcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYMy1XcnJRRRAB", "timestamp": "a year ago"}, {"text": "Un gran circuito y grandes profesionales, porque no hay más estrellas porque sino le daría 100, los mejores karts que he probado, tienen un buen mantenimiento, le doy la enhorabuena a los mecánicos y al personal de pista, lo pasé genial, volveremos pronto", "author": "hugo hernández sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRMGN5MWVnEAE", "timestamp": "Edited 6 years ago"}, {"text": "He estado allí varias veces y siempre nos han atendido super bien. Los precios son muy asequibles. Lo mejor son los karts, cada vez innovan más y te ofrecen lo mejor.", "author": "Brisa Celeste", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpbWZ1NThBRRAB", "timestamp": "5 years ago"}, {"text": "Uno de los mejores circuitos de la region de Murcia. Algunos karts estan algo descuidados. Buena organización. Fresca terraza para tomar algo mientras esperas y Bar. Buena actividad para cumpleaños o despedidas.", "author": "Oscar Pujante", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnNU12eU9nEAE", "timestamp": "8 years ago"}, {"text": "Lugar excelente para estar con amigos, buena organización y personal atento y amable en todo momento.\\nLas instalaciones están en buenas condiciones\\nEsperamos volver!", "author": "Edurne Pascua", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1aEkzREJ3EAE", "timestamp": "3 years ago"}, {"text": "Excelente infraestructura y lugar idóneo. Hacia tiempo que no acudía y ya seas ajeno o aficionado pasarás un buen rato y sentirás la competencia de una buena carrera de karts. Para ir en grupo o simplemente tomarte algo y disfrutar de la carrera.", "author": "J. Alba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cU92dFZ3EAE", "timestamp": "4 years ago"}, {"text": "Circuito de 50seg en buenas condiciones", "author": "Anfran89", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GR00wNHRVbTV4WjA5bE5GTkRkSEZyTW1FNWRGRRAB", "timestamp": "a week ago"}, {"text": "Mon cœur balance entre le Go Karts Mar Menor et celui de Ciudad Quesada.\\nVraiment très bon moment sur place.", "author": "Romain Tenye", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3dHBlYlRnEAE", "timestamp": "a year ago"}, {"text": "Experiencia más que recomendable, y los dueños son encantadores.", "author": "Nacho Tomás", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cXFQN0tBEAE", "timestamp": "2 years ago"}, {"text": "Circuito bastante grande y a buen precio. Esta muy bien para quitarte el gusanillo con amigos o ir con los niños a hacer algo diferente.", "author": "Rodro Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxZ2E3cFpnEAE", "timestamp": "4 years ago"}, {"text": "Uno de los mejores circuitos de Karts de Murcia. Buenos coches y muchas curvas para pasar un buen rato. Además el precio es bastante asequible.", "author": "Enrique García Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhdy12UW13RRAB", "timestamp": "4 years ago"}, {"text": "Una experciencia única!!! Lo recomiendo 100%. Buen personal, buen trato, buenos karts y buena pista. Lo mejor de todo es que puedes ver tus tiempos y compararlos con tus amigos. Enhorabuena por vuestro negocio y volveremos!!", "author": "Joaquin Ingles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNX3NDTi1nRRAB", "timestamp": "6 years ago"}, {"text": "Buen sitio para ir con amigos a entretenerse toda la tarde, recomiendo ir los martes o los miercoles porque suele haber menos gente alli y las esperas son mas cortas. Los miercoles (no verano) también tienen una oferta de 2x1 en los karts", "author": "ManuFlosoYT", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVc2VDcm13RRAB", "timestamp": "6 years ago"}, {"text": "Esta bien el circuito, he ido a muchos y sin ser el mejor es bastante aceptable. Echamos una tarde bastante divertida. Los karts estan bien y el circuito es aceptable. Volvería a ir.", "author": "Carlos Fernández Martínez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNMFBfRk93EAE", "timestamp": "6 years ago"}, {"text": "Increíble experiencia, y un muy buen trato.\\nVolveré más veces.", "author": "raul escudero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnOUpyWjR3RRAB", "timestamp": "11 months ago"}, {"text": "Bajo mi punto de vista esta muy bien. Pero el servicio en el circuito no es honesto, deberían ser más amables y creo que en la carrera los del F200 no deberían estar con los F400", "author": "Martina Muñoz", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhOVlqZk13EAE", "timestamp": "4 years ago"}, {"text": "Muy divertido para ir con amigos\\nRecomiendo la modalidad de grande prix es la mejor relación calidad precio", "author": "J P", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkXy15UHRnRRAB", "timestamp": "a year ago"}, {"text": "La mejor pista de la zona sin duda ! El circuito es una pasada, los precios son bastante más bajos que en otros circuitos y el trato es excelente! Recomendable 100%", "author": "A. M.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4ODRxNnBRRRAB", "timestamp": "5 years ago"}, {"text": "El mejor karting de la zona del mar menor. La pista está en muy buenas condiciones y los karts muy bien cuidados. Lo tienen todo muy bien organizado y siempre están pendientes de la seguridad. Puedes ir con tu kart o moto.", "author": "Sergio Lzn (sergio351)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXdmQzNlpBEAE", "timestamp": "3 years ago"}, {"text": "Personal atento y cuidadoso, karts funcionando perfectamente, circuito interesante e instalaciones en muy buen estado. Volveré sin duda a disfrutar de la experiencia.", "author": "Victor Lanuza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOU9ub2tnRRAB", "timestamp": "3 years ago"}, {"text": "Vengo siempre desde hace 4 años, trato exquisito, sobre los precios no son caros y el tiempo aunque parezca poco, luego una vez estás en ello te parece justo", "author": "Jose Manuel", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3N2RlZFRnEAE", "timestamp": "7 years ago"}, {"text": "Fantástico sitio para pasar la tarde con niños y/o amigos. Varios tipos de karts disponibles en función de la destreza del piloto,así como karts dobles para que padres puedan montar con niños pequeños,y karts adaptados para personas con discapacidad.Muy recomendable", "author": "Victor Plaza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDcy1TeDR3RRAB", "timestamp": "5 years ago"}, {"text": "Roligt ställe för en fartfylld upplevelse. Ok priser!", "author": "Claes Fast", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcFBLSzd3RRAB", "timestamp": "6 years ago"}, {"text": "La pista muy buena pero los sinverguezas me sacan a mi y a otros 5 karts 400 a correr con quince 300 despues de haber pagado 30 pavos por 10 minutos me he tirado toda la sesion esquivando karts NUNCA MAS VOY A PASAR POR ALLI!!!!!!!!", "author": "JOSE LUIS CARRASCO BARRAGAN", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVaG9MMTdnRRAB", "timestamp": "6 years ago"}, {"text": "Buen lugar para disfrutar de los karts dispone de aparcamiento, por unos 20€ puedes disfrutar de la velocidad, y si vas de acompañante dispone cafetería, bar donde tomarte algo mientras contemplas las carteras.", "author": "José Peñalver", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRMXJXSVh3EAE", "timestamp": "7 years ago"}, {"text": "Buen circuito y buena organización.", "author": "RICARDO SAGUAR PEINADO", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwck0yQzlnRRAB", "timestamp": "2 years ago"}, {"text": "Una experiencia inolvidable! Los encargados muy atentos y profesionales . El mejor karting de nuestra zona ! 100% recomendable! 💯", "author": "Kristina Luneva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4aE8yWlN3EAE", "timestamp": "2 years ago"}, {"text": "Simplemente espectacular. Buen circuito,, aunque sé hace corto el tiempo por lo divertido que es. Ya llevo dos veranos seguidos y repetiré", "author": "Luis Valentin López Llamas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRc29TYW13RRAB", "timestamp": "8 years ago"}, {"text": "Una experiencia muy agradable, los coches van bien protegidos y funcionan bastante bien. Tienen muy buenos frenos. Repitiria sin dudarlo", "author": "Almudena Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpMEpPWW9RRRAB", "timestamp": "5 years ago"}, {"text": "El mejor circuito de la región y alrededores , tanto personal de las instalaciones , como las instalaciones y los karts , de 10\\n100% recomendable", "author": "Pedro Muñoz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzaE1PbjdBRRAB", "timestamp": "Edited a year ago"}, {"text": "Muy buena experiencia", "author": "Marien Martinez Garcia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCNGRXUXllSGxLT1hWeVFsRk1Tams1UkUxeGRHYxAB", "timestamp": "3 months ago"}, {"text": "Bastante bien buen trato aunque hay que llevar cuidado porque un colega se ha roto algo de un topazo pero bonita experiencia 😘💙", "author": "Nobody", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMzlXQjJnRRAB", "timestamp": "5 years ago"}, {"text": "Muy divertido. Amplia pista, de asfalto áspero (agarran mucho, difícil derrapar). Hierba. Bien organizados. Hay Karts de varios tipos y cilindradas, las superiores (300cc y 400cc) necesitas tener 16 o 18 años para que te dejen subir. Hablan idiomas.\\nHay ranking de vuelta rápida automático por el número del kart en una pantalla para cada carrera. También lo pueden imprimir. Procuran no mezclar tipos de karts. No atascan la pista con demasiados coches a la vez.", "author": "Antonio Sanz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRb09PTnVnRRAB", "timestamp": "8 years ago"}, {"text": "Buen karting. Muy divertido y los miércoles en vez de ser las tandas de 8 minutos eran de 16 minutos por el mismo precio. Al menos en septiembre q he estado yo....", "author": "Rodrigo de la iglesia diez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2enVIT3ZnRRAB", "timestamp": "4 years ago"}, {"text": "Magnifique, super accueil ,le circuit est grand mes enfants se sont bien amusés et le personnel est super attentif toujours souriant merci à vous", "author": "Linda Bounaj", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhek03cUxnEAE", "timestamp": "4 years ago"}, {"text": "Lastig om een heat te boeken in het weekend", "author": "Allan van Weelie", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WWVVdzFYM0J3YkcxSFNHNWpOMmszY21wSlZHYxAB", "timestamp": "7 months ago"}, {"text": "Trato muy bueno y unas instalaciones apropiadas para esta actividad, gratamente soprendido en mi primera visita. Volveré sin duda.", "author": "Alexis R.V", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJa3J5RmZBEAE", "timestamp": "7 years ago"}, {"text": "Un sitio excelente para pasar con la familia y amigos y echar unas carreras los peques se lo pasaron genial una buena experiencia y el precio económico", "author": "Jesus ignacio Egidos garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNWVuQ3Z3RRAB", "timestamp": "4 years ago"}, {"text": "Gran circuito y karts muy divertidos. Trato de 10 llevo diendo 5 años seguidos y no bajan el nivel de trato ni de instalaciónes. Espero q sigan así mucho tiempo porque se merecen lo mejor.", "author": "Elias Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnamU3b3dRRRAB", "timestamp": "7 years ago"}, {"text": "es el circuito mas grande de la zona mas de un kilometro karts buenos corren mucho bar terasa muy encantado i si haces una foto del anuncio en eroski te rebajan 2 euros se queda en 10 euros", "author": "Radu Antonio Trif", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRc1pyVndRRRAB", "timestamp": "10 years ago"}, {"text": "Un gran sitio para pasar un buen rato con amigos o familiares, buenos karts, buen ambiente, el personal muy amable y cercano ademas de unas buenas medidas de seguridad.", "author": "Miriam", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4LV9xYVR3EAE", "timestamp": "5 years ago"}, {"text": "El paseo en los Karts muy bien, lo disfrutamos. La atención de una mujer que nos vendió la entrada y de un señor que estaba dando paso en el circuito, dejó bastante que desear.", "author": "M. Ángeles S. Olmos", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODZHRWpBRRAB", "timestamp": "2 years ago"}, {"text": "Mi hijo de 9 años se lo ha pasado genial. Buen precio y un trato bueno. Karts y pista en buenas condiciones.\\nRecomendable!!!!", "author": "Manuel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaHVEbWJBEAE", "timestamp": "4 years ago"}, {"text": "Experiencia formidable con mis hijos, sobre todo en la carrera infantil!!! Personal muy agradable!!! Repetiré sin duda", "author": "Pau Bustamante", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1OHR6cmRREAE", "timestamp": "3 years ago"}, {"text": "Genial. La mujer rubia súper encantadora. Los chicos de pista súper atentos a que todos estuviéramos agusto. Súper recomendable este sitio. Volveré seguro", "author": "J. GarMat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1anVUWFhnEAE", "timestamp": "3 years ago"}, {"text": "No está ni tan bien, ni tan mal .. relativo calidad -precio .. Cars antiguos y la pista un poco pequeña !", "author": "Dobrin Dimitrov", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPa3I2MXN3RRAB", "timestamp": "3 years ago"}, {"text": "una locura de circuito, todo muy bien cuidado y los karts como nuevos y todo muy limpio, personal muy agradable y amable. Desde Galicia vine y me quedé con ganas de volver, repetiré 👋", "author": "gutierrez_ Racing_", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhNW9lWHBRRRAB", "timestamp": "4 years ago"}, {"text": "Grupo de 11, experiencia inolvidable, el personal super agradable y el material está muy bien cuidado.", "author": "Rodrigo Atienza Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMcHJQMFZBEAE", "timestamp": "a year ago"}, {"text": "Magnifique piste pour passer un bon moment. Différentes catégories de kart, casques ionnisés, Charlotte et masque obligatoires. Une équipe au petit soin.", "author": "Cricri Divas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2cVBuTUNnEAE", "timestamp": "4 years ago"}, {"text": "Super buena atención, la familia de mi novia lleva viniendo aquí años y yo es la primera vez que también vengo, y definitivamente repetiría", "author": "Aldimir", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtNmE3aldnEAE", "timestamp": "4 years ago"}, {"text": "Cudne miejsce dla całej rodziny", "author": "Jolanta Wojtaszek", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Wa1ZsRTVPSE5MYzNKaWRXZ3llRFZHZEdoYU4wRRAB", "timestamp": "5 months ago"}, {"text": "Mes enfants ont adoré le karting Mar Menor, on a payé 10 euros pour 8min.", "author": "Hajar H", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIeTh6YU1BEAE", "timestamp": "a year ago"}, {"text": "Para la edad de diez años hay coches en torrevieja y la zenia que son mas divertidos que los que tienen en su local", "author": "Humano", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0aXJuTXp3RRAB", "timestamp": "a year ago"}, {"text": "Buen circuito, moderno y cuidado, posibilidad de diferentes tipos de karts por potencia y karts tándem para or con niños.\\nCarreras cronometrada, pantalla gigante con los tiempos y desde la cafetería pantallas con las posiciones de los karts.", "author": "Eduardo Barreiro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTaWJPbEFREAE", "timestamp": "5 years ago"}, {"text": "El circuito es muy bueno y el servicio también pero para gente delgada al ir en el kart te hace mucho daño en la espalda y te la deja muy herida", "author": "Alex Mckee", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSazVUM1dREAE", "timestamp": "2 years ago"}, {"text": "Fantástico sitio para dar caña en los karts y poder ir con niños también 👋👌. Tiene cafetería con terraza fantástica", "author": "Francisco Perez ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcElxUHBRRRAB", "timestamp": "3 years ago"}, {"text": "Roligt, bra. Helt ok cartar.", "author": "Tommy Hansson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKMk9pcDVBRRAB", "timestamp": "2 years ago"}, {"text": "Buen circuito, bien cuidado y gente excepcional, los karts están muy bien cuidados y muy competitivos, es ideal para pasar un día genial con amigos y pasarlo en grande.\\nRepetiría sin duda alguna 💪", "author": "Antonio Madrid hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJZzZpVi1nRRAB", "timestamp": "Edited 4 years ago"}, {"text": "lo hemos pasado genial, grupo de 10, estupendo el personal, muy majos. carreras, organización, pista amplia, muchas gracias.", "author": "David", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaMW9DMWpnRRAB", "timestamp": "2 years ago"}, {"text": "Son muy amables", "author": "Rafa Conde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkdU9mZFh3EAE", "timestamp": "a year ago"}, {"text": "Una pista estupenda siempre que voy por esa zona término haciendo unas visitas", "author": "EL COCHE ESCUELA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3b3FudHl3RRAB", "timestamp": "a year ago"}, {"text": "Das Personal ist sehr freundlich, auch im Restaurant. Die Preise nicht billig, aber durchaus im Durchschnitt.....", "author": "Angelika Heinemann", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0OGRxTy1BRRAB", "timestamp": "a year ago"}, {"text": "Para pasar un rato muy bueno y con un personal magnífico. Los coches están muy bien. Perfectamente organizado. Repetiré.", "author": "Carlos Carrasco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNaVBQX3h3RRAB", "timestamp": "6 years ago"}, {"text": "Menudo circuito!!!!!. Amplio divertido. Creo que no hay ninguno de estas características en los alrededores!!!. El personal es excelente. El problema es que después de probar este los demás saben a poco.", "author": "Ramon Saura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MS11MHlnRRAB", "timestamp": "8 years ago"}, {"text": "Bra anläggning för både vuxna, tonåringar och barn!", "author": "Kurt Gustafsson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvcVBETHFBRRAB", "timestamp": "9 months ago"}, {"text": "Gran lugar para pasar unos momentos de diversión y soltar adrenalina. Karts de todas las edades y tipos de conducción. Lo recomiendo 100 x 100", "author": "Antonio Corral", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxMHFIUHhBRRAB", "timestamp": "4 years ago"}, {"text": "Son muy majos, siempre con una sonrisa en la boca y la pista es una pasada! Muy recomendable para ir tanto con amigos como con la familia.", "author": "Manuel Choco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdnVQWU1BEAE", "timestamp": "6 years ago"}, {"text": "Toll Strecke, super Anlage. Sehr Empfehlenswert.", "author": "Xoox Zick", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQaUlQT3NRRRAB", "timestamp": "a year ago"}, {"text": "Super kartbaan vriendelijke mensen lekkere koffie", "author": "hanane massoudi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBN1o2bUN3EAE", "timestamp": "7 years ago"}, {"text": "Inmejorable, las instalaciones y los equipos en perfecto estado y los empleados muy amables. Gran ambiente de carreras. 10/10.", "author": "biafitication", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJa0tEMjh3RRAB", "timestamp": "7 years ago"}, {"text": "Me encanto buenos precios super amable la gente q te atiende y la verdad muy buen ambiente cuando vuelva repito seguro lo recomiendo al 100 x 100", "author": "Alba Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxMk9IUmhnRRAB", "timestamp": "4 years ago"}, {"text": "Genial. Un circuito muy familiar para pasar con los niños, pero también muy divertido para hacer carreras en grupo con los amigos. Buen precio y karts en buen estado.", "author": "Enrique Martínez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRNjl5NnpRRRAB", "timestamp": "9 years ago"}, {"text": "Excelente atención. Muy buena pista . Buenos coches. Precios asequibles. Repetiremos!", "author": "Carlos Leiva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNla00yRTl3RRAB", "timestamp": "3 years ago"}, {"text": "Muy agradable el personal y circuito muy intretenido.", "author": "Joaquin Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfanN2MGhnRRAB", "timestamp": "a year ago"}, {"text": "Trato perfecto, mis niños disfrutaron un monton", "author": "Pilar Sainz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDeWRiMzdBRRAB", "timestamp": "5 years ago"}, {"text": "Maravillo Kart! felicito al equipo/gerencia por todo, un diez mas 1! en calidad, servicio, limpieza y cuidado! por estar a la última en todo! y por pedazo de pantalla gigante!", "author": "Francesca Sarabia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNveF9DS3hRRRAB", "timestamp": "Edited 5 years ago"}, {"text": "Estupendo el trato, la pista está en perfectas condiciones con escapada de sobra. El kart de 400 funciona sobradamente para ir muy rápido.", "author": "Joaquin Poveda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHcnVPNVB3EAE", "timestamp": "4 years ago"}, {"text": "Sehr gute Rennstrecke hat sehr viel Spaß gemacht. Sehr empfehlenswert. Jederzeit gerne wieder", "author": "sven jahnke", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2dC1XZzJBRRAB", "timestamp": "4 years ago"}, {"text": "Es un circuito muy divertido. Su trazado es muy acertado para permitir adelantamientos en gran parte de la pista. Los F200 van muy bien.", "author": "Taser Face", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNGZPbFN3EAE", "timestamp": "9 years ago"}, {"text": "Excelente experiencia, los karts estan muy bien mantenidos y el personal es muy atento y agradable, respecto al circuito es bastante amplio con curvas rapidas y muy cuidado", "author": "Miguel Angel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhNXNDNTNBRRAB", "timestamp": "4 years ago"}, {"text": "Por 50€ disfrutas mucho. Buen circuito y buena atención. Hasta te dan tu medalla :)", "author": "Jero García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxNzZhTjhnRRAB", "timestamp": "4 years ago"}, {"text": "Una pista muy divertida y unas instalaciones cuidadas al detalle. Todo es perfecto", "author": "Jose Chicoy Madrona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bXVlQWtRRRAB", "timestamp": "2 years ago"}, {"text": "Nos lo hemos pasado como niños pequeños. El circuito esta de lujo y los trabajadores super simpáticos, repetiría sin duda!", "author": "Adri Pelayo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHOGNEdEJBEAE", "timestamp": "4 years ago"}, {"text": "Muy buena experiencia, los Kars van muy bien y el trazado-asfalto una pasada. Se pasa una buena tarde de risas con los amigos en un ambiente muy familiar.", "author": "Abel G.Zaragoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnZQUTlBRRAB", "timestamp": "6 years ago"}, {"text": "10/10 buenísima experiencia y me lo he pasado pipa", "author": "Enrique Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMN3A3MGNBEAE", "timestamp": "a year ago"}, {"text": "EL MEJOR CIRCUITO DE ESPAÑA. IMPRESIONANTE LAS INSTALACIONES.\\nLA PANTALLA GIGANTE ES EL NO VA MÁS.\\nTODO EL MUNDO QUIERE REPETIR DESPUÉS DE PROBAR LOS KARTS.\\nCOMIDA ESPECIAL", "author": "Juan vicente Panadero Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnZ2QzV0l3EAE", "timestamp": "7 years ago"}, {"text": "El personal muy amable y simpáticos. Lo hemos pasado muy bien sobretodo las niñas (13 años)", "author": "rosa maria MM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1d2NMQWFREAE", "timestamp": "3 years ago"}, {"text": "Grandísima experiencia.\\nRepetiremos!!", "author": "Armando Miguel Valle Miranda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cFpieUdBEAE", "timestamp": "4 years ago"}, {"text": "Impresionante la pista, con todo detalle de gran calidad. Y repetir y repetir. Disfrutas muchísimo. Volveremos!!", "author": "César Pastor Oliver", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnJPVm9RRRAB", "timestamp": "6 years ago"}, {"text": "Servicio muy bueno. Personal estupendo", "author": "Sergi Planas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvdXBPMXZBRRAB", "timestamp": "9 months ago"}, {"text": "Tolle Kartbahn. Für Anfänger und Fortgeschrittene gut geeignet.", "author": "Martin Luithardt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYMy15RTZBRRAB", "timestamp": "a year ago"}, {"text": "Sehr lange Strecke (1,1km), top Preise und kinderfreundlich! Also schwer zu empfehlen! Besser als die Konkurrenz", "author": "Jona Pollkläsener", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVd3JXVHpBRRAB", "timestamp": "6 years ago"}, {"text": "Circuito muy divertido en un lugar privilegiado junto al mar menor. Si quieres pasar un buen rato con tus amigos no dudes en pasarte por Go Karts.", "author": "Antonio Nicolás Carrasco (Nico)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneHZ1VFRBEAE", "timestamp": "7 years ago"}, {"text": "Sehr schöner Platz. Gut zu erreichen", "author": "Mustafa Guendesli (Mustafa Gündesli)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvM0tEOTJBRRAB", "timestamp": "9 months ago"}, {"text": "Circuito muy chulo, variedad de coches con distintas potencias para alquilar. Te puedes tomar algo mientras ves a la gente correr.", "author": "Iván de Diego", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJM05YVjd3RRAB", "timestamp": "7 years ago"}, {"text": "Bra bane, lett og tilpasse fra liten til stor. Området ser ryddig og fint ut.\\nKan anbefales👍", "author": "Ove Lilleengen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSMzVUNHNBRRAB", "timestamp": "2 years ago"}, {"text": "Buen circuito, con bastantes curvas. Genial para niños y mayores.", "author": "Juan Pablo Ibañez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5cE96QjVBRRAB", "timestamp": "a year ago"}, {"text": "Presencié un fuego en uno de los kar y por poco se quema el chico, tendrían que tener un mejor mantenimiento, el personal de pista muy bien", "author": "Agustin Parra Navarro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1NF83OWxRRRAB", "timestamp": "3 years ago"}, {"text": "Ideal para vivir la experiencia de la velocidad, distintas cilindradas, para grandes y pequeños. Podio, contador de vueltas, pole, medallas y comida. Un plan diferente Enel mar menor.", "author": "JuanJhon Gonzalez Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2LUw3OW5BRRAB", "timestamp": "4 years ago"}, {"text": "Me ha encantado he hecho carrera con mi familia y no está nada mal he pasado un buen rato", "author": "Tina Mels", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhd09TdFVREAE", "timestamp": "4 years ago"}, {"text": "Una experiencia muy divertida para ir con niños y solos...bien organizado y las pistas geniales", "author": "SOLE DOMINGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2OExlakxnEAE", "timestamp": "4 years ago"}, {"text": "Muy buen sitio para si te interesa el tema. Buenos precios y un servicio amable y simpático.", "author": "no name", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndnF5VTdBRRAB", "timestamp": "7 years ago"}, {"text": "Increible pista, todo super cuidado tecnología de ultima generación, un trato perfecto y eso gusta a cualquier persona. Todo muy bien. Gracias !", "author": "David Alejandro Fernandez Celi (xXSharkTeamXx)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnbk5ma093EAE", "timestamp": "7 years ago"}, {"text": "Buen karting, coches potentes, circuito rapido e interesante, precios aceptables.", "author": "Ignacio Soler Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURac2RURXF3RRAB", "timestamp": "2 years ago"}, {"text": "Bonne piste et sensation.\\nUn peu excessif pour le 400cc 30€ les 10min", "author": "Thomas Even", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnMllxUWtRRRAB", "timestamp": "7 years ago"}, {"text": "Mal, realmente mal los karts le patinan las ruedas, falta de ralentí, te tratan mal me parece muy malo esto", "author": "Nacho", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUazY3WUhnEAE", "timestamp": "a year ago"}, {"text": "Fin og stor bane med bra tidtaker system", "author": "Raymond Kristiansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvbk1PQU1REAE", "timestamp": "9 months ago"}, {"text": "Muy buen sitio, lo pasamos genial. La pista bien, material muy bien, duchas, barra, el pack completo!", "author": "Yves Delvaulx", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnbzlqcVBREAE", "timestamp": "8 years ago"}, {"text": "Sehr nette Leute. Preis und Leistung stimmt absolut!! Sehr empfehlenswert! 👍👍👍", "author": "Andre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoby1IV3Z3RRAB", "timestamp": "Edited 2 years ago"}, {"text": "Experiencia emocionante garantizada. Gran trato del personal. Muy aconsejable", "author": "MIGUEL ANGEL MGLIMPIEZAS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCeTRxSXRBRRAB", "timestamp": "3 years ago"}, {"text": "Adrenalina maxima!", "author": "Gava Paula Cristina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNId1A3SGxRRRAB", "timestamp": "a year ago"}, {"text": "Increíble la experiencia, muy buen trato e instalaciones.", "author": "Marlon Ortiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyNkpqRlRREAE", "timestamp": "a year ago"}, {"text": "Divertido. No parece peligroso. Relativamente caro. 12 euros por 8 minutos", "author": "Antonio Hernández López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMXJQaU5REAE", "timestamp": "6 years ago"}, {"text": "Una circuito espectacular!! El mejor espacio para sentirte piloto!! Un personal a pie de pista excepcional!!!!", "author": "Alberto Fdez.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcFoza1V3EAE", "timestamp": "4 years ago"}, {"text": "El señor mayor que nos atendió fue bastante borde, nada simpático y malas contestaciones. El resto todo bien", "author": "Iván Díaz", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlaW9lRUNBEAE", "timestamp": "3 years ago"}, {"text": "Divertido. Los coches de 300 van bastante bien", "author": "Juan José Fernandez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdXFfUVB3EAE", "timestamp": "6 years ago"}, {"text": "Tienen un trato magnífico, siguen todas las precauciones respecto a COVID 19, divertido, limpio, trato inmejorable, regreso con toda seguridad.", "author": "Carol Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURheE9DMlNnEAE", "timestamp": "4 years ago"}, {"text": "A mis hijos les encanta!! Vamos cada semana. La gente es atenta y amable.", "author": "Rocio PH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4aTZfWHpBRRAB", "timestamp": "5 years ago"}, {"text": "Una pista extraordinaria, circuito seguro y divertido.", "author": "San Adrian Valle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnd0lIeHB3RRAB", "timestamp": "Edited 9 months ago"}, {"text": "Gran sitio, para pasar una mañana y un gran día. Buenos precios y buen precio para comer.", "author": "ruben acosta", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPM3NfZjhnRRAB", "timestamp": "3 years ago"}, {"text": "Magnifique\\nLe personnel et sympa\\nPas prise de tête\\nPlusieurs kart dispo surtout les 400cc woah le feu\\nMerci à vous", "author": "massi-nissa benzerrouk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxb3ZUYXpRRRAB", "timestamp": "4 years ago"}, {"text": "Circuito de mas de 1km, ideal para expertos para entrenamiento, y noveles para pasar una rato divertido. Emplazamiento y clima idílico", "author": "Enrique Ruiz Gimeno", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJaHVUSVlBEAE", "timestamp": "7 years ago"}, {"text": "Es un lugar genial para hacer unas carreras con los amigos y la familia. Tiene posibilidad de hacer reservas para celebrar eventos.", "author": "Antonio Vicente Sánchez Mercader", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnNXB1OW1nRRAB", "timestamp": "9 years ago"}, {"text": "Un plaisir de faire du karting avec les enfants et le petit fils wyatt", "author": "pierre david", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEMEpua05BEAE", "timestamp": "Edited a year ago"}, {"text": "Esta muy bien, además ahora tienen mucho cuidado con el tema COVID, cuando usas un coche desinfectan tanto el coche como el casco.", "author": "Dolores García León", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDc192NHdRRRAB", "timestamp": "5 years ago"}, {"text": "Dia bueno de karts, perfecto para ir en familia y amigos. Genial atención y cumple totalmente con las expectativas. Un saludo.", "author": "Fernando Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrcTUtZjZRRRAB", "timestamp": "6 years ago"}, {"text": "Una pista perfecta para pasar muy buenos ratos.. Muy buena gente... Un 10", "author": "Celedonio Garro sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdm9QaGZBEAE", "timestamp": "6 years ago"}, {"text": "Todo muy bien, en cuanto al establecimiento muy bien, tienen billar y fútbolin", "author": "irenita lover", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNDRYNUJREAE", "timestamp": "3 years ago"}, {"text": "Un buen sitio para pasar un buen rato", "author": "Bohor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURndklhUURnEAE", "timestamp": "11 months ago"}, {"text": "Para grupos es genial,más de 10 personas,muy buen precio.", "author": "alfredo barrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKLWMyYVJREAE", "timestamp": "2 years ago"}, {"text": "Genial para pasar la tarde en familia, la pista está muy bien, buenas instalaciones", "author": "ricardo gomez montero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NDZETkxREAE", "timestamp": "4 years ago"}, {"text": "Muy divertido el circuito, personal simpático y aunque los karts están muy usados mantienen la emoción", "author": "Joaquín Rodríguez Díaz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLbG9TZUNBEAE", "timestamp": "Edited 4 years ago"}, {"text": "Todo fenomenal", "author": "Roberto H M", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tobWF6WnVSbFJzYjJsWk1tRTROM0JEWDJWTGVrRRAB", "timestamp": "5 months ago"}, {"text": "Muy buen ambiente, las instalaciones muy buenas y cada día las van mejorando, no se quedan estancados.", "author": "Maria Angeles Martínez Castejón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtamZYTGF3EAE", "timestamp": "3 years ago"}, {"text": "Un trato muy amable y familiar. Los karts, las instalaciones y las vistas estupendas. Un 10!❤️", "author": "Bianca Miranda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNX3NpRlRBEAE", "timestamp": "6 years ago"}, {"text": "Mi hija disfruto muchísimo en su cumple con sus amigas haciendo carreras. Y la merienda genial", "author": "Anahi Martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cmJxS0dnEAE", "timestamp": "4 years ago"}, {"text": "Buena experiencia! Cuidado con el cars si eres principiante 😅", "author": "silvia perez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKekstU0hBEAE", "timestamp": "2 years ago"}, {"text": "Très bonne expérience à passer en famille pour ceux qui aiment la course auto.", "author": "Ali Guerr", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwOG9TRV93RRAB", "timestamp": "2 years ago"}, {"text": "Buenas instalaciones y coches con el rendimiento y conducción que se espera.\\nMuy recomendable.", "author": "Pedro M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcmJxZG13RRAB", "timestamp": "4 years ago"}, {"text": "Circuito con trazado divertido, karts potentes y en perfecto estado, y personal muy cercano y agradable. Plan perfecto para un día de diversión.", "author": "Oscar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRNjRLc0l3EAE", "timestamp": "8 years ago"}, {"text": "Superleuk", "author": "Tjeerd Huiberts", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CclQwNVlUMkZYYkZGVlZrbGFNVkZvU1ZBelJuYxAB", "timestamp": "a week ago"}, {"text": "Un buen sitio para montar en car, Una pista espectacular.", "author": "José Antonio Castellano Ordúñez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwZzV1aDRRRRAB", "timestamp": "2 years ago"}, {"text": "Diversión y adrenalina a tope, sitio perfecto para pasar la tarde solo o con amigos y familia.", "author": "Evaristo", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNk1lZnpBRRAB", "timestamp": "3 years ago"}, {"text": "Excelente lugar para pasar un dia con los karts y celebrar cumpleaños. Muy buena pista y raida", "author": "Gonzalo Aboal Sanjurjo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRektYYWJnEAE", "timestamp": "9 years ago"}, {"text": "Muy buenas instalaciones y personal muy amable, el mejor circuito de la región de Murcia", "author": "Jorge Mora Lorca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bzhlbHJBRRAB", "timestamp": "3 years ago"}, {"text": "buen trazado de circuito y oersonal amable, buen trato con el cliente. Excelente servicio", "author": "Dani Barceló", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheThDUTlRRRAB", "timestamp": "4 years ago"}, {"text": "Un gran circuito muy divertido y con diferentes zonas,precios razonables,merece la pena", "author": "Adrian Romero", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRa3ZEVDRRRRAB", "timestamp": "7 years ago"}, {"text": "Muy buena experiencia para niños y adultos. Disfrutamos toda la familia", "author": "Maria Grueiro", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1MmNYNS1BRRAB", "timestamp": "3 years ago"}, {"text": "Una bonita manera de pasar la mañana del domingo con familia y amigos haciendo unas carreritas. Sin duda repetiremos!!!", "author": "Pedro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3NHA2S0NnEAE", "timestamp": "7 years ago"}, {"text": "Первый раз была на картинге, впечатлений море, картинг супер, все очень понравилось.", "author": "Яна Брушневская", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5bE9UeGFnEAE", "timestamp": "a year ago"}, {"text": "Un circuito increíble y pronto volveré a mejorar mis tiempos que me quede con ganas de más💪🏼 el mejor circuito y el mejor precio", "author": "Adri Alelú", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDNnF6VTlRRRAB", "timestamp": "Edited 5 years ago"}, {"text": "Personal muy agradable y circuito guapísimo, para pasar un buen rato👍", "author": "Jesús Saura", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNNDhIemR3EAE", "timestamp": "6 years ago"}, {"text": "Con reserva tuvimos que esperar 2h y 15'. Me pregunto para qué sirve hacerla. Gracias.", "author": "Maria Salazar", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMG9XLW1nRRAB", "timestamp": "2 years ago"}, {"text": "Супер, карты свежие, трасса крутая, в среду акция двойное время, одни из лучших картингов где я был.", "author": "Игорь Тарасов", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMzhMV0l3EAE", "timestamp": "5 years ago"}, {"text": "Tres bien bonne experience avec un score final\\n12euro 8mn Je recommande", "author": "Lili T", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDa3ZLbTJ3RRAB", "timestamp": "5 years ago"}, {"text": "un circuito de lugo super bonito y cuidado buen anbiente y los dueños chapo buen trato de toda la familia hemos disfrutado muchisimo con ellos", "author": "Eva Romo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBNHRtRGlnRRAB", "timestamp": "7 years ago"}, {"text": "Buenos profesionales, precios razonables y circuito rapido, divertido y seguro", "author": "Marcolo 22", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM29TX1F3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Los kar van mas fuerte que otros de otros sitios con mismo motos ambiente acojedor y cercano. Circuito muy largo al que volvere", "author": "Antonio Angel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnNGViVVVREAE", "timestamp": "8 years ago"}, {"text": "Fantástico, la pista es enorme y el personal muy atento.", "author": "Eli Girona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsenYyVi1BRRAB", "timestamp": "Edited a year ago"}, {"text": "El mejor kart de la región. Coches en buen estado. Pista en muy buen estado. Buena organización. Buen trazado.", "author": "Daniel Serrano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbXBtVzB3RRAB", "timestamp": "Edited 5 years ago"}, {"text": "Muy bien y entretenido como siempre.\\nUn poco lentos para cobrar pero bien", "author": "Andres Trajines", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2eU9DX1l3EAE", "timestamp": "4 years ago"}, {"text": "Bien organizado. No está muy masificado y la pista está en buenas condiciones", "author": "Arturo Lopez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhbnFLWVlBEAE", "timestamp": "4 years ago"}, {"text": "Muy buena gente y muy bien organizados.", "author": "Miguel Costa Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5OC1pY3JRRRAB", "timestamp": "a year ago"}, {"text": "Los Kars más pequeños corren bastante , bien cuidados ,bien de precio y gente muy agradable muy recomendable volveremos", "author": "Luis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBX1lIYnpBRRAB", "timestamp": "7 years ago"}, {"text": "Har bilar med två säten som medger att ett mindre barn kan åka tillsammans med en vuxen.", "author": "Fredrik Wendt", "rating": 4, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNRcTRNORAB", "timestamp": "7 years ago"}, {"text": "Fantastische kartbaan.\\nFijn rijdende karts in verschillende klasse. Komen zeker terug. Fam Visser", "author": "Leonard Visser", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSNmVUSUp3EAE", "timestamp": "2 years ago"}, {"text": "Buen precio, buen circuito, buenos karts y muy buen trato. Completamente recomendable!", "author": "Saul Algaba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5a3YyOTJRRRAB", "timestamp": "4 years ago"}, {"text": "Cuando un participante arrolla a otros participantes y uno sale dañado de esa acción los responsables deberían hacer algo y no lo hicieron por lo demás todo genial", "author": "The Noob PvP", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBam9XQTdBRRAB", "timestamp": "7 years ago"}, {"text": "Sitio super recomendado para pasar un buen rato trato profesional y amable muy buen ambiente", "author": "jorge fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3bF9MZUl3EAE", "timestamp": "7 years ago"}, {"text": "Me lo.pase como un enano... seguro que vuelvo. Solo un karting con un pequeño bar. Pero eso era lo que buscaba.", "author": "Antonio Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVbjREQVB3EAE", "timestamp": "6 years ago"}, {"text": "Buen sitio para pasar con familia, lo tienen todo muy bien organizado", "author": "Víctor B.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDcU9YU3FnRRAB", "timestamp": "5 years ago"}, {"text": "Muy buen trato\\nInstalaciones perfectas\\nMuy muy buena experiencia", "author": "Anita Flow", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwcEppME5REAE", "timestamp": "2 years ago"}, {"text": "Super karting......on s'y amuse bien...Seul bémol, les moustiques qui se prennent pour des avions de chasse...lol 🤣", "author": "carole battaglini", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhdy1yLUlBEAE", "timestamp": "4 years ago"}, {"text": "Trabajadores muy agradables, buen circuito muy divertido el trazado, los kart en buenas condiciones", "author": "Christian Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLc0tuM2pnRRAB", "timestamp": "4 years ago"}, {"text": "Lindo lugar para todas las edades.\\nDiversión y seguridad. Un lugar para seguir volviendo 👍", "author": "Flaka Garelli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5eGM2UnBRRRAB", "timestamp": "4 years ago"}, {"text": "Es estupendo. La pista de karts es brutal, cuando conduces un kart te da un subidón.", "author": "Alejandro Willy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRNVl2N2hRRRAB", "timestamp": "8 years ago"}, {"text": "Con la Manga como sky line esta pista de karts es un lugar para pasársela bien entre motores y cascos.", "author": "luis carlos Alzate", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2bllQTkRBEAE", "timestamp": "4 years ago"}, {"text": "Buen sitio, repetiría. Cascos nuevos, los carts van bien, no tienen cosas rotas como en otros sitios.", "author": "TopFreak", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5MXJPRG53RRAB", "timestamp": "4 years ago"}, {"text": "Buenas instalaciones y mejor equipo! Sitio fantástico, enhorabuena", "author": "Emerito Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMGRtelpBEAE", "timestamp": "3 years ago"}, {"text": "Excelente", "author": "Jonatan Rodas lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLam9YVUd3EAE", "timestamp": "4 years ago"}, {"text": "On a passé une très bonne journée, prix très intéressant pas cher même, très bonne équipe", "author": "Ami Lari", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1LTRYS3dnRRAB", "timestamp": "3 years ago"}, {"text": "Excelente precio y trato. Merece la pena viajar mas por venir aquí.", "author": "Alejandro Trinidad García de las Bayonas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3a2JpMHB3RRAB", "timestamp": "7 years ago"}, {"text": "Un lugar perfecto para venir con la familia, soy aficionado al karting y es de los mejores circuitos de la zona.", "author": "alex guillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBMklXUFVREAE", "timestamp": "8 years ago"}, {"text": "Leuke plaats", "author": "sonia parijs", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xvM2NEZEJiRjlsYTBNemMyZ3lSVTVvU2swNU4xRRAB", "timestamp": "4 months ago"}, {"text": "Nos lo pasamos increíble, el precio es genial. Los coches van de lujo.", "author": "Omar Calzon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHX2RMMVdBEAE", "timestamp": "4 years ago"}, {"text": "Una pista realmente divertida. Puede que les falte un poco de asesoramiento para los conductores más novatos.", "author": "Jose C BRT", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVaF8tekFnEAE", "timestamp": "6 years ago"}, {"text": "Zeer vriendelijk, alles is tiptop in orde en veilig, meer kan je van een karting niet wensen.", "author": "emiel steenbeke", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNleklDZjF3RRAB", "timestamp": "3 years ago"}, {"text": "Bien moins cher que celui de Torrevieja et bien plus beau👌 une équipe bien sympathique 👏👏", "author": "Marie Josephe Oliver", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhNUttdnFnRRAB", "timestamp": "4 years ago"}, {"text": "Buen sitio par air buenos precios buena atencion volvere seguro", "author": "alex martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtMHZtd2FREAE", "timestamp": "3 years ago"}, {"text": "Un gran circuito ya sea para ir con vehículo privado o para alquilar un Kart con unos amigos", "author": "FJ Publicidad", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcGY2eV93RRAB", "timestamp": "4 years ago"}, {"text": "Trato familiar, instalaciones impresionantes,una auténtica gozada!! Totalmente recomendado.", "author": "Izarin humano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlbklYVXl3RRAB", "timestamp": "3 years ago"}, {"text": "Me encanta.", "author": "Pedro L. C.C", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25VeVdEUmpPRE5JVkRkVk1HOW9SM3BSUXpsblVtYxAB", "timestamp": "5 months ago"}, {"text": "Mejor circuito de toda la zona. Buenos karts y buenos precios. Recomiendo 100%", "author": "Kyle Ross", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnZ3ZXUGtRRRAB", "timestamp": "8 years ago"}, {"text": "Muy buen circuito, y buen trato, buenas instalaciones como interiores y exteriores.", "author": "G. E. R ER", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURScmN1WUhnEAE", "timestamp": "2 years ago"}, {"text": "Me encantó la pista, los Karts y la gente que me atendió es un sitio genial un 10 para ellos!!!!", "author": "Jesus Marco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNczZEclJREAE", "timestamp": "6 years ago"}, {"text": "Gran circuito y en perfecto estado de mantenimiento. Muy amables.", "author": "Fer Lopez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTa3VHNmhnRRAB", "timestamp": "5 years ago"}, {"text": "Хорошее место что-бы весело провести время", "author": "Vladyslav Siedik (Smeni_naski)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiOE95cFBnEAE", "timestamp": "a year ago"}, {"text": "Es un buen Karting para todos y si quieres echar unos piques con tus amigos Adelante!", "author": "César", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzaFBxZjJBRRAB", "timestamp": "5 years ago"}, {"text": "Los karts van todos muy igualados y el trato fue muy bueno por parte del personal. Un 10.", "author": "Viktor R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURReWNDbkhnEAE", "timestamp": "8 years ago"}, {"text": "Sitio perfecto para ir en familia , amigos o grupos, y pasar un buen rato", "author": "Pedro Pardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwcU5QdUJ3EAE", "timestamp": "Edited 6 years ago"}, {"text": "Los mejores kart de todo levante con diferencia!!! Muy recomendable y unos precios muy economicos!!! 5**", "author": "RUBEN BLASCO TORRES", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnNmEtS3NnRRAB", "timestamp": "7 years ago"}, {"text": "Sans plus j I retourne demain on Vera bien il était tard il allait fermer", "author": "Gérard Otte", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDc01yRFJREAE", "timestamp": "5 years ago"}, {"text": "Me encanto el circuito, es muy rápido y divertido. Quiero volver", "author": "M P C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ0aVBPSnFRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Buen sitio para ir con niños", "author": "Pedro Albacete", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYbDdEUmpRRRAB", "timestamp": "a year ago"}, {"text": "Muy divertido y buena atención, un sitio de diez", "author": "Efren Aaron Marin Garijo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxM0x2S1pnEAE", "timestamp": "4 years ago"}, {"text": "Genial,el personal muy amable y atentos con los niños lo recomiendo 100%", "author": "Kuki", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzaXNiU1JREAE", "timestamp": "5 years ago"}, {"text": "Buena experiencia, pero podrían acolchar los asientos para hacerlo más llevadero", "author": "Ruben López", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4dk1TaHJBRRAB", "timestamp": "5 years ago"}, {"text": "Pista grande .buen ambiente .los chavales disfrutaron mucho .cafeteria con buenas vistas.ok", "author": "Juan Carlos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnMnNyOURBEAE", "timestamp": "7 years ago"}, {"text": "Trato malo mal educados y groseros y el kart no frenaba y me han echao por salirme de la pista", "author": "Fernando Cantero martinez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxNGNxRW5BRRAB", "timestamp": "4 years ago"}, {"text": "En general bien. Buen circuito y precios razonables.", "author": "Luis Ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1OGFQMzlnRRAB", "timestamp": "3 years ago"}, {"text": "Endroit sympathique\\nPas trop chère.bon rapport, qualité prix.", "author": "Didier dic", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtM2VtZ1NREAE", "timestamp": "4 years ago"}, {"text": "La atención muy buena y una pista fantástica. Nos lo pasamos de cine", "author": "Humberto Castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrMy1ENnFRRRAB", "timestamp": "6 years ago"}, {"text": "El precio es algo excesivo pero el trato excepcional muy atentos", "author": "Rocio Sánchez Méndez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNnBfLXpRRRAB", "timestamp": "3 years ago"}, {"text": "Hyvä palvelu paljon auto vaihtoehtoja rata hyvässä kunnossa", "author": "Matti Huppunen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGamVtTzFBRRAB", "timestamp": "2 years ago"}, {"text": "Buena gente y pista divertida. Almuerzos cumplidos a precios normales.", "author": "Quique SALVADOR RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdlp2QWh3RRAB", "timestamp": "4 years ago"}, {"text": "Superdivertido un buen sitio para pasar un rato agradable con amigos y familia", "author": "raider vfr", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNeHUtQl93RRAB", "timestamp": "6 years ago"}, {"text": "Käykää ajamassa.", "author": "Matti Puotila", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwel9IUk1REAE", "timestamp": "6 years ago"}, {"text": "Eine sehr schöne Anlage. Ein Besuch lohnt sich.", "author": "Diana P", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREN01ER0tREAE", "timestamp": "a year ago"}, {"text": "Muy divertido, estupendo para pasar un buen rato en familia.", "author": "Gorka ojembarrena saracho", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBZzRfNmdRRRAB", "timestamp": "8 years ago"}, {"text": "Es un buen sitio, además tienen coches para niños.", "author": "Meme Man", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNkliQ2ZBEAE", "timestamp": "Edited 4 years ago"}, {"text": "Muy buen sitio para pasar el día", "author": "Perii Blessed", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLOGVQY2FREAE", "timestamp": "4 years ago"}, {"text": "Muy bien", "author": "JOSE MARIA PEÑUELAS VILA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmczV6V1J3EAE", "timestamp": "a year ago"}, {"text": "Tienen un kart de 400. El trato muy agradable y facil de llegar :)", "author": "Cris Sml", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROTdTMDBnRRAB", "timestamp": "8 years ago"}, {"text": "Mucha variedad de Karts de alquiler, un trato familiar y excelente. Siempre repetimos!", "author": "Nacho Drift", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLOVlhNXJRRRAB", "timestamp": "4 years ago"}, {"text": "Muy buen trato y los Karts van muy bien", "author": "TwichLive", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2cVpEeHV3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Stefan Andersson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT213NVVuRkxXRTFhU25ONlFtWktlVE5aY1RCSGRIYxAB", "timestamp": "2 months ago"}, {"text": "Super goede cartbaan. Alles netjes", "author": "Willem Van Herpen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURycDR6ZGFREAE", "timestamp": "a year ago"}, {"text": "El circuito está bien, pero los mismos karts de misma categoría corren de manera distinta, unos más que otros.", "author": "noel fernandez (Nemesix)", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvc0t1LU1nEAE", "timestamp": "6 years ago"}, {"text": "Un buen sitio para echar unas carreras,gente amable,recomiendo 100 x 100", "author": "Jose 8", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxd05xa1Z3EAE", "timestamp": "4 years ago"}, {"text": "Estuve con mis hijos. Todo muy divertido.", "author": "José Luis Menchón Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoOFltN21BRRAB", "timestamp": "2 years ago"}, {"text": "Un muy buen lugar para pasar el día en moto", "author": "Daniel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLak0yUXh3RRAB", "timestamp": "Edited a year ago"}, {"text": "Magnificad instalaciones para disfrutar com familia o amigos", "author": "angel murcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNyNWVyNThnRRAB", "timestamp": "a year ago"}, {"text": "Magnífico circuito, grandes karts, personal inmejorable y volveré siempre que pueda.", "author": "francisco bianqui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcFlHd3RRRRAB", "timestamp": "4 years ago"}, {"text": "Atención estupenda y Karts en muy buen estado.", "author": "LUIS MIGUEL HUEVA ESPINILLA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1clB6SzRnRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Variedad de karts y la pista está bastante bien. He disfrutado bastante .", "author": "Pablo Pedro Alvarez Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbVBmV2R3EAE", "timestamp": "2 years ago"}, {"text": "Genial, tanto las instalaciones, como el personal.\\nUn sitio de 10, repetiremos", "author": "Jose Alberto Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eVlMaVR3EAE", "timestamp": "4 years ago"}, {"text": "Fue espectacular , una pasada los coches y la pista , volvería con los ojos cerrados ..", "author": "arrison Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRcjZiM253RRAB", "timestamp": "7 years ago"}, {"text": "Un sitio para pasar un muy buen rato divirtiendo te", "author": "Felix de la Encarnacion Lara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaXNldmRREAE", "timestamp": "4 years ago"}, {"text": "Heel leuk en echt goed georganiseerd", "author": "Adrienne De Winter", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEMy1qRjlRRRAB", "timestamp": "a year ago"}, {"text": "Buen trazado pero falta automatización, pantalla y marcador de tiempos en pista y coches renovables", "author": "Samuel Rabadán García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNROWZDTTNBRRAB", "timestamp": "8 years ago"}, {"text": "Grand circuit. Accueil sympathique et tarif interessant", "author": "Celine LEGAY-BILO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNGEyajdBRRAB", "timestamp": "4 years ago"}, {"text": "Muy bien organizado, vistas al mar y el personal muy amable.", "author": "Montserrat Albarrán Gómez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMWVybDJBRRAB", "timestamp": "3 years ago"}, {"text": "Muí guai para echar un rato bueno a los car", "author": "Maria Alburquerque Molina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsZ0w3U0RREAE", "timestamp": "2 years ago"}, {"text": "Superbe circuit, le personnel est très gentil et les tarifs abordables.", "author": "Raphaël Bonte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNdEoyVnZ3RRAB", "timestamp": "6 years ago"}, {"text": "Muy bien los críos se lo pasaron en grande, y los mayores también.", "author": "Paloma Burguillo Garzón", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MFpfcFBnEAE", "timestamp": "3 years ago"}, {"text": "Sehr gepflegte Anlage", "author": "Rainer Krause", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvb2FyQ2JnEAE", "timestamp": "9 months ago"}, {"text": "Ge ido varias veces y me lo paso pipa", "author": "Neus Antón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdXVXdk5BEAE", "timestamp": "a year ago"}, {"text": "Muy buen ambiente para disfrutar el dia con amigos.", "author": "ENCARNI PONCE SANCHEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnB1TnBRRRAB", "timestamp": "6 years ago"}, {"text": "Buen circuito, buena ubicación y excelente atención por su personal.", "author": "Adoracion Serrano Diaz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLcTQ3X1R3EAE", "timestamp": "4 years ago"}, {"text": "Está bien pero es poco tiempo para lo que cuesta. Está mejor el de Orihuela y más tiempo.", "author": "Mar Tovar", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRcWJ2SGFBEAE", "timestamp": "7 years ago"}, {"text": "El mejor de la zona.\\nSolo cuatro estrellas porque la cafetería puede mejorar bastante.", "author": "Juan Herrera", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbklEa21nRRAB", "timestamp": "4 years ago"}, {"text": "Genial, unkompliziert! Tolle Strecke", "author": "Alexandra Grosse", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURid2Z5UmVnEAE", "timestamp": "a year ago"}, {"text": "Buen trato. Muy simpáticos.", "author": "Joaquin Galiano Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPN1p5SjJBRRAB", "timestamp": "3 years ago"}, {"text": "Un buen sitio para pasar un ratito divertido", "author": "Hugo López", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMC1MY2hnRRAB", "timestamp": "2 years ago"}, {"text": "Un buen lugar para divertirse, sobre todo a los que les guste la velocidad.", "author": "Mari Carmen Lardin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNOW9iMU5BEAE", "timestamp": "6 years ago"}, {"text": "Muy bien, mi hijo y sobrinos disfrutaron", "author": "marga pastor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODRpcDNRRRAB", "timestamp": "2 years ago"}, {"text": "Super pas trop chère et mon fils a adoré", "author": "Olivier Joyeux", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVOE83SWJnEAE", "timestamp": "6 years ago"}, {"text": "Buen circuito y la atención muy buena también.", "author": "Pedro Fernandez Villanueva", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4czd6eW93RRAB", "timestamp": "5 years ago"}, {"text": "Buen lugar para pasar un buen día con amigos o familia", "author": "Lorena Ros", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCZ0lxVU13EAE", "timestamp": "3 years ago"}, {"text": "Buen circuito y organización. Los karts funcionaban todos similares (para que haya igualdad).", "author": "INN", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdWV6ZzZ3RRAB", "timestamp": "6 years ago"}, {"text": "Un lugar muy divertido para ir con los amigos, familia...", "author": "Juan Marques", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhenBhTUVREAE", "timestamp": "4 years ago"}, {"text": "Riktigt bra till bra pris! Känndes seriöst och samtidigt roligt!", "author": "Sara Rölvåg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVNlBqVW9RRRAB", "timestamp": "6 years ago"}, {"text": "Buen trato y perfecto para pasar un buen rato", "author": "jose antonio verdu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlaWF6azRnRRAB", "timestamp": "3 years ago"}, {"text": "Oikein hyvä. Suosittelen kokeilemaan", "author": "Pasi Riikonen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2aWFtaldREAE", "timestamp": "a year ago"}, {"text": "Buena pista y coches rápidos según cilindrada escogida", "author": "Ivan Mesa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPMV82R2V3EAE", "timestamp": "3 years ago"}, {"text": "Muy buen circuito y muy buena gente 😉", "author": "Jose Martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGVYRGNREAE", "timestamp": "4 years ago"}, {"text": "Los críos se lo pasaron genial\\nEl trato es muy bueno\\n👍👍👍", "author": "RUTHY MT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaVlDLWJnEAE", "timestamp": "4 years ago"}, {"text": "Para pasar un rato excelente con los precios bastante competitivos", "author": "VíctoR de LaRa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhc0lpMTVnRRAB", "timestamp": "4 years ago"}, {"text": "Circuitazo y los karts muy igualados!", "author": "Guillermo Huertas Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBMGFYZUtBEAE", "timestamp": "11 months ago"}, {"text": "Todo perfecto!!! Muchas gracias", "author": "Selenia Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0aXNhNFFnEAE", "timestamp": "a year ago"}, {"text": "Sehr schnelle Karts. Da lohnt sich der Besuch. Sehr zu empfehlen sind die 300ccm. Sehr schnell.....", "author": "C. S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBNVlUQVNREAE", "timestamp": "8 years ago"}, {"text": "La simpatía de los instructores, y el buen asesoramiento a los participantes. Repetiremos", "author": "MARINA ESPINOSA", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNy1YWkR3EAE", "timestamp": "4 years ago"}, {"text": "Un rato divertido para los que les guste estas cosas claro.", "author": "Luis SANCHEZ BENITEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMk5YZDZnRRAB", "timestamp": "2 years ago"}, {"text": "Volvimos después de 8 años y como sube la adrenalina. Nos encantó.", "author": "M RR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNzVxTEZnEAE", "timestamp": "4 years ago"}, {"text": "Instalaciones muy cuidadas. Con varias opciones para niños y adultos.", "author": "Jessica Alvarez Ortiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLd09XemtBRRAB", "timestamp": "4 years ago"}, {"text": "Todo de 10, lo recomiendo sin ninguna duda.", "author": "Joaquin Navarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWcHJpcFBREAE", "timestamp": "2 years ago"}, {"text": "Unas tardes muy agradables (o mañanas ahora en invierno) dusfrutando de los karts y de los amigos.", "author": "MARIA LUISA ABOAL SANJURJO", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncmRQdExBEAE", "timestamp": "9 years ago"}, {"text": "Muy buen sitio para pasar una tarde de domingo", "author": "Angeles Gea Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzMGIzblR3EAE", "timestamp": "5 years ago"}, {"text": "Bien para adultos. Para chicos me parece un poco peligroso.", "author": "dual_Coroyale", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MklDdGlBRRAB", "timestamp": "7 years ago"}, {"text": "Erg leuk Ongedwongen sfeer en redelijke prijzen.", "author": "Joke Spaanderman", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeU9UOG9RRRAB", "timestamp": "3 years ago"}, {"text": "Lo pasamos de lujo, la gente del circuito muy atenta.", "author": "antonio prats rodriguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXZ0lucVVnEAE", "timestamp": "3 years ago"}, {"text": "Das Fahren mit Kindern ist gut", "author": "Petra Kirchner", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHdEs2VUdREAE", "timestamp": "4 years ago"}, {"text": "Genial para pasar un rato con los amigos conduciendo karts", "author": "Belén San Pe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bmFLLXJBRRAB", "timestamp": "3 years ago"}, {"text": "Excelente diseño, coches muy cuidados y personal profesional!!!", "author": "MANUEL GARRIDO RUIZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhblBISjlBRRAB", "timestamp": "4 years ago"}, {"text": "Preis Leistung stimmt perfekt", "author": "Philipp Pires Marques", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURINUlDVXFRRRAB", "timestamp": "a year ago"}, {"text": "Siempre al día!!! mejorando instalaciones, servicios y medidas de seguridad incluso en época de crisis, enhorabuena!!!", "author": "Antonio Oton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTd1p5cW5RRRAB", "timestamp": "5 years ago"}, {"text": "Super jazda za 12 euro 10 minut szaleństwa, polecam", "author": "Rafał Konieczkowski", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNrM3VPUUZ3EAE", "timestamp": "6 years ago"}, {"text": "Mala atención reservas fatal", "author": "emiliano roldan", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNFplVTVBRRAB", "timestamp": "11 months ago"}, {"text": "Para pasar un buen rato", "author": "Gonzalo Fernández", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2NUs3cmdBRRAB", "timestamp": "a year ago"}, {"text": "Un circuito espectacular y muy buena atención lo recomiendo", "author": "Juanjo Peinado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGY3OFJBEAE", "timestamp": "4 years ago"}, {"text": "Un buen sitio para pasar un buen rato, ¡¡¡Super divertido!!!.....", "author": "Emiliano Romero Sevilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdU52WWxBRRAB", "timestamp": "6 years ago"}, {"text": "Muy buenos, buen circuito y buen precio. De los mejorcitos", "author": "Alberto Valero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDNVpHTnNnRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena opción para pasar un buen rato", "author": "Javier Manzanares", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cC1iUjN3RRAB", "timestamp": "3 years ago"}, {"text": "Een hele mooie en leuke baan met rechte en moeilijke bochten", "author": "Kolckt Kolckt", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtMW95RzZBRRAB", "timestamp": "4 years ago"}, {"text": "Leuk om te zien", "author": "Karel Rosé", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5cTV1ZnJnRRAB", "timestamp": "a year ago"}, {"text": "Circuito grande y ancho, para novatos y expertos. Coches de todas las categorías,.", "author": "Serching", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZdXFDcU1BEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Johan Engberts", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s0eGVsTjVSV1pQYVMxaU4xcENUbGRPVjFwcVRtYxAB", "timestamp": "3 months ago"}, {"text": "Estupenda pista, muy bien organizados y buenos karts.", "author": "Francisco Canovas Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTM1pyOWlBRRAB", "timestamp": "5 years ago"}, {"text": "Mi mejor experiencia en los karst pero se podría mejorar un poco más el precio,es un poco caro", "author": "Aitor Sanchez Gimenez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRcjY2b2hBRRAB", "timestamp": "10 years ago"}, {"text": "Lugar excelente i divertido para los aficcionados de moto i karting!!!", "author": "Andrei Stirbu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MkpDRjNRRRAB", "timestamp": "Edited 8 years ago"}, {"text": "Estupenda atención, buen circuito.", "author": "beatriz m gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR6MXE3UEtnEAE", "timestamp": "a year ago"}, {"text": "Muy buena gente. Gracias", "author": "Cristian Moisès Moreno Ortiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwMzgzeDFRRRAB", "timestamp": "2 years ago"}, {"text": "Buenos karts,buen trato\\nEl mejor plan para pasar la tarde", "author": "harval17", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4bS03S0NnEAE", "timestamp": "5 years ago"}, {"text": "Muy buen circuito y muy buena atención", "author": "Javi Juaneda Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndDh2ZGpRRRAB", "timestamp": "8 years ago"}, {"text": "Experiencia muy buena para pasar con los pequeños y los no tan pequeños.", "author": "Francisco Trigueros", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLNWE2bUpREAE", "timestamp": "4 years ago"}, {"text": "Un trazado para auténticos leones, trato exquisito, recomendable 100%", "author": "Guillotina 1312", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3dUxQQ05BEAE", "timestamp": "8 years ago"}, {"text": "Veldig tøff bane. Vi vil kjøre mer!", "author": "Laila Haugslett", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR3bU8zZ0J3EAE", "timestamp": "7 years ago"}, {"text": "Buen circuito para hacer karts y muy entretenido", "author": "J G", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtbTRqTS1RRRAB", "timestamp": "3 years ago"}, {"text": "Experiencia increíble, muy segura y recomendable!", "author": "Francisco Jose Montiel Barnes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cXQtRHh3RRAB", "timestamp": "2 years ago"}, {"text": "Genial pista. Muy bien para peques.", "author": "Reyes Alcañiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxaU0yaWF3EAE", "timestamp": "4 years ago"}, {"text": "Peefecto todos se lo pasaron pipa", "author": "Vanessa Rama Fondo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNC1XUGdRRRAB", "timestamp": "4 years ago"}, {"text": "Una pista buena y buena atención personal y la pista está en un buen estado", "author": "El sech", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJb0t2SGp3RRAB", "timestamp": "7 years ago"}, {"text": "Buenos karts a muy buen precio con buenas medidas de prevención del covid.", "author": "Serla Paredes", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDdklDYnVRRRAB", "timestamp": "5 years ago"}, {"text": "Pasamos una buena tarde. El sitio está bien.", "author": "Rodrigo Cobos, CFA", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDNTdMYlZREAE", "timestamp": "5 years ago"}, {"text": "Buen circuito y lugar donde pasar un día de motor.", "author": "David Ayala", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJNDhUUnFBRRAB", "timestamp": "7 years ago"}, {"text": "Todo perfecto y muy amables", "author": "C GA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhbzhfOWp3RRAB", "timestamp": "4 years ago"}, {"text": "Sitio muy divertido para pasar en familia", "author": "Pablo Linares", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcFp2dVVBEAE", "timestamp": "5 years ago"}, {"text": "el mejor karting de la zona con diferencia. A destacar el trato de sus gerentes .", "author": "Cristina Balsalobre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRM1lHNzhRRRAB", "timestamp": "7 years ago"}, {"text": "Una pasada... Recomendable 100x100...de los mejores que he visitado.", "author": "Domi Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cUpDdVl3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Lucie Otter", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2NqZzhnRRAB", "timestamp": "3 years ago"}, {"text": "Buena diversión pero hay que coger los de 300", "author": "Angel Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMF9POElREAE", "timestamp": "4 years ago"}, {"text": "Velocidad, seguridad y buen precio. Una tarde super divertida", "author": "Monica Lopez Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLdVlXb3R3RRAB", "timestamp": "4 years ago"}, {"text": "Una experiencia inolvidable", "author": "Emilia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJb3J5MFB3EAE", "timestamp": "9 months ago"}, {"text": "Mucha variedad de karts,lo malo que mezclan karts de todas las cilindradas", "author": "jota Candenas", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhenIyNmRBEAE", "timestamp": "4 years ago"}, {"text": "Muy buen trato, buena pista de karts", "author": "Laura Martínez Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxbGVmQWNREAE", "timestamp": "4 years ago"}, {"text": "El mejor sitio para ir a montar karts del mar menor", "author": "Nico Ma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPMmNyd1pnEAE", "timestamp": "3 years ago"}, {"text": "A sacar alguna pega, la pista bacheada, pero genial", "author": "Juan Antonio Martinez Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXbkxtaklREAE", "timestamp": "3 years ago"}, {"text": "Buena pista. Y precios que no son caros", "author": "Mariam navarro del castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDcTdxTW9nRRAB", "timestamp": "5 years ago"}, {"text": "Mejor circuito de la Costa. Rápidos y limpios", "author": "Gonzalo Olmos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPODdHMW13RRAB", "timestamp": "3 years ago"}, {"text": "Estupendo diseño del circuito y muy buena la gestión!!!", "author": "Anabel García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhdU4teWJnEAE", "timestamp": "4 years ago"}, {"text": "Muy amables y muy buen servicio.", "author": "Jose Angel Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0anFXNUxBEAE", "timestamp": "6 years ago"}, {"text": "El mejor karting para correr y pasar un tiempo espectacular!!!", "author": "Luis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4aHFlVDFBRRAB", "timestamp": "5 years ago"}, {"text": "Buen sitio para recrearse mayores y ninos.", "author": "jose manuel gil anton", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDc2JicFBBEAE", "timestamp": "5 years ago"}, {"text": "Buen sitio para dar gas buen asfalto", "author": "Nico Gimeno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZc2Zqbmx3RRAB", "timestamp": "6 years ago"}, {"text": "Espectacular, trato, circuito. De 10", "author": "Javier Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhemV6YzRRRRAB", "timestamp": "4 years ago"}, {"text": "Los karts buena potencia y circuito bastante largo", "author": "Javier González", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwcHAtcWdBRRAB", "timestamp": "2 years ago"}, {"text": "C est un peu cher mais c'est cool !!!", "author": "Murielle Deredec", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnbzhIWlp3EAE", "timestamp": "8 years ago"}, {"text": "Nos ha encantado la experiencia", "author": "Dinamita", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHOHFiSVVBEAE", "timestamp": "4 years ago"}, {"text": "Entretenido para niños y mayores en un buen ambiente.", "author": "Davproxd", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRaXAySGV3EAE", "timestamp": "8 years ago"}, {"text": "", "author": "anne maclellan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYai1lMTVRRRAB", "timestamp": "a year ago"}, {"text": "Un muy buen rato de risas y competición sana", "author": "ANTONIO GRANADOS VELASCO", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOUoteVRBEAE", "timestamp": "7 years ago"}, {"text": "Excelente circuito muy moderno y detallado.", "author": "Juanma ma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVanJpOS1nRRAB", "timestamp": "6 years ago"}, {"text": "He ido a varios de la región y este es el mejor que he probado.", "author": "Víctor Giménez Bravo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1eU9PUWdnRRAB", "timestamp": "3 years ago"}, {"text": "Buenísimo un trazado espectacular. Quedé primero", "author": "Ricardo Martos Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVN3ByVGtBRRAB", "timestamp": "6 years ago"}, {"text": "MOLTO BELLO E DIVERTENTE, DA ANDARCI ANCORA", "author": "Fabio Grigoletto", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1Xzh2SWhBRRAB", "timestamp": "3 years ago"}, {"text": "Circuito de Cars económico en el que tanto pequeños como grandes disfrutan mucho", "author": "Janire Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2bk1YM1BnEAE", "timestamp": "4 years ago"}, {"text": "Una gran experiencia con una muy buena atención", "author": "Juan Antonio Sanchez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNHNfR2dBRRAB", "timestamp": "3 years ago"}, {"text": "Buen lugar para descargar adrenalina con los amigos y familia.", "author": "Juan Manuel Gálvez Velasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncU5pX0lREAE", "timestamp": "8 years ago"}, {"text": "El circuito perfecto y ofertas muy prometedoras", "author": "Daniel Velasco Morata", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2MXZUMDRRRRAB", "timestamp": "4 years ago"}, {"text": "Una pasada y todo muy bien orfanizado", "author": "JOSE FCO. MARIN-BALDO GOMEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBa01hSFlREAE", "timestamp": "8 years ago"}, {"text": "Karts muy potentes, pista grande y es muy divertido 😃", "author": "Paco C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwLVpuSTl3RRAB", "timestamp": "2 years ago"}, {"text": "GENIAL, ENDROIT BIEN TENU", "author": "Dominique Dubuisson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkNy1UcFNREAE", "timestamp": "a year ago"}, {"text": "Circuito grande y bien preparado con muchos coches", "author": "javier fito ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQweTdDa3BBRRAB", "timestamp": "6 years ago"}, {"text": "Buen trato y karts muy cuidados", "author": "israel martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwcmJIdW9BRRAB", "timestamp": "6 years ago"}, {"text": "Leuke carting, wel best reserveren", "author": "annick dheedens", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2dUxPeml3RRAB", "timestamp": "4 years ago"}, {"text": "Unas instalaciones muy bien acondicionadas", "author": "ROSA CARCELES", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXM2RqNUJBEAE", "timestamp": "3 years ago"}, {"text": "Uno de los mejores circuitos de karting de toda España", "author": "Dani Riquelme", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtNjl5V3JnRRAB", "timestamp": "3 years ago"}, {"text": "Echt een aanrader lang parcour toffe karts", "author": "Dave Baert", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVcGFUMWhnRRAB", "timestamp": "6 years ago"}, {"text": "De 10 todo!", "author": "Daniel Bermejo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4aFBlVlZnEAE", "timestamp": "2 years ago"}, {"text": "Buen estado de los karts, limpieza y seguridad 100%", "author": "Gines Vazquez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4Xy02ZWV3EAE", "timestamp": "5 years ago"}, {"text": "Sitio agradable con parking. Buenos karts", "author": "José A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4eTV1QkhBEAE", "timestamp": "5 years ago"}, {"text": "un circuito increible y sus servicios tambien", "author": "dani Villa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3Mk4tTWl3RRAB", "timestamp": "10 years ago"}, {"text": "Buenos precios y buena atención.", "author": "Miriam Losada Del Olmo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aEstT2FREAE", "timestamp": "4 years ago"}, {"text": "Buena atención y buena pista pa motos", "author": "Pablo Martinez Valero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaUpIcHh3RRAB", "timestamp": "5 years ago"}, {"text": "Fantastische kartbaan ik zeg doen", "author": "Chris De Haas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIbWVhMFh3EAE", "timestamp": "a year ago"}, {"text": "El mejor sitio para pasar un rato con los amigos", "author": "Pajaro 16", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjcG9qSG13RRAB", "timestamp": "5 years ago"}, {"text": "nunca había estado en un karts. me ha encantado", "author": "JUAN FRANCISCO GARCIA-TALAVERA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMweV83LXRRRRAB", "timestamp": "6 years ago"}, {"text": "La pista es divertida y los karts están bien", "author": "Sergio Rebolledo Gadea", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzaGZPWHl3RRAB", "timestamp": "5 years ago"}, {"text": "El mejor Karting al que he ido, así de sencillo.", "author": "Carlos Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaMHB5QzBnRRAB", "timestamp": "2 years ago"}, {"text": "Magnífico circuito y trato supermamable", "author": "Salvador Arce Futos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdm9lcnpRRRAB", "timestamp": "6 years ago"}, {"text": "Los coches van muy rápido y funcionan bien", "author": "Álvaro. G", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbVlYLUF3EAE", "timestamp": "7 years ago"}, {"text": "Muy buen trato", "author": "Inma Beltran", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxZ01iZnZRRRAB", "timestamp": "4 years ago"}, {"text": "Perfecto", "author": "Luna Yona", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURRaExTU2R3EAE", "timestamp": "10 months ago"}, {"text": "El circuito super cuidado y los karts increíbles 🙌", "author": "pablito Skywalker", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhN08yYzRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Carlos Cuesta", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVNWZTc3NRRRAB", "timestamp": "6 years ago"}, {"text": "Buen trato, buena pista y buenos karts", "author": "jeronimo jover menchon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOVBHU3p3RRAB", "timestamp": "4 years ago"}, {"text": "Трасса хорошая,но картинги старые!", "author": "RAUND 1", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCamRHV1V3EAE", "timestamp": "3 years ago"}, {"text": "Muy bien todo, lo pasamos genial.", "author": "camping sanjavier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOEplVTlBRRAB", "timestamp": "3 years ago"}, {"text": "Esta genial para hacer una carreterita", "author": "Sagrario ruiz garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdnRmNU5nEAE", "timestamp": "6 years ago"}, {"text": "Muy actualizado asequible y entretenido", "author": "JUAN JOSE MARTINEZ ALAVA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNodHV1R05REAE", "timestamp": "2 years ago"}, {"text": "Simplemente increíble!!!!", "author": "Ariel Peñalver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURudHBuRVFnEAE", "timestamp": "a year ago"}, {"text": "Atención buena ideal para hacer prácticas .", "author": "MARLENE HUARACHI", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROXNPSTJnRRAB", "timestamp": "7 years ago"}, {"text": "Un buen circuito y buenos Kart.", "author": "Javier Caste", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfb2F1Qm5BRRAB", "timestamp": "a year ago"}, {"text": "Buena atención del personal y muy buenas instalaciones.", "author": "Enrique Mínguez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdm9QLThnRRAB", "timestamp": "6 years ago"}, {"text": "Das lohnt sich für das Geld immer wieder", "author": "Maik Krause", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4d3BDY3FRRRAB", "timestamp": "2 years ago"}, {"text": "El mejor circuito y karts,mejor servicio y atención del personal", "author": "Josefa Martínez Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURROVlxUWpRRRAB", "timestamp": "9 years ago"}, {"text": "Un circuito increíble", "author": "Jhony", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJR25pOTNSMHFiS3RBRRAB", "timestamp": "7 months ago"}, {"text": "Buen sitio", "author": "Angel Alonso", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3aWJfYXhRRRAB", "timestamp": "a year ago"}, {"text": "Simplemente los mejores es lo que puedo decir después de tantos años", "author": "Carlosvs 07", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1NE95WkdBEAE", "timestamp": "3 years ago"}, {"text": "Buenos karts... Pero los precios.... Los precios.... Poco tiempo.... Pero es lo que hay!!", "author": "Ernesto Polozhaev", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0Mll5a3dnRRAB", "timestamp": "6 years ago"}, {"text": "Genial para pasar un buen rato", "author": "Angelcp19xd", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzczkzaUNREAE", "timestamp": "Edited 5 years ago"}, {"text": "De mis favoritos, muy bueno", "author": "Frank Darko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4NXJud3J3RRAB", "timestamp": "2 years ago"}, {"text": "War cool", "author": "Yolanda Broncano Leon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURicXVyb3B3RRAB", "timestamp": "a year ago"}, {"text": "Uno de los mejores circuitos que he probado", "author": "Sergio Quesada Contreras", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlMDZpbmtRRRAB", "timestamp": "3 years ago"}, {"text": "Los F300 muy divertidos y rápidos.", "author": "María Cheztez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBM2RfSDh3RRAB", "timestamp": "7 years ago"}, {"text": "Circuito grande y bien cuidado, a mi parecer un poco caro", "author": "Andrés Moreno López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndjZUdkxREAE", "timestamp": "9 years ago"}, {"text": "Está muy bien!", "author": "victor antelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJaDlpcWVREAE", "timestamp": "7 years ago"}, {"text": "Muy divertido", "author": "John Alexander Taborda Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJeEtxZENnEAE", "timestamp": "9 months ago"}, {"text": "Divertente e ad un prezzo onesto", "author": "Alessandro Pilati", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJeWVQWTRnRRAB", "timestamp": "7 years ago"}, {"text": "Muh bien", "author": "MineMike _ YT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2Z1AtekVREAE", "timestamp": "4 years ago"}, {"text": "Muy buen ambiente, seriedad...", "author": "Valentin Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRay0tRzRRRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Muy bien", "author": "Emilio Santos (Emiliako)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxb2RpRkVBEAE", "timestamp": "4 years ago"}, {"text": "Trazado espectacular, buen grip.", "author": "Adrián Botías", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtOWFUaGlBRRAB", "timestamp": "3 years ago"}, {"text": "Unas carreras 🏁, unos bocatas, unos refrescos. Chulo, chulo 😎.", "author": "Miguel Marin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBcHVLcGxRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Barato, divertido y en general una buena opción", "author": "Javi Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNDRiVzZ3RRAB", "timestamp": "Edited 5 years ago"}, {"text": "El personal es muy diligente y educadisimo", "author": "JOSE CRUZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVLXYtb3d3RRAB", "timestamp": "6 years ago"}, {"text": "Muy divertido con niños", "author": "Jose Toribio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRd2NuY3h3RRAB", "timestamp": "8 years ago"}, {"text": "Divertido para pasar un buen rato", "author": "Pilar Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXaU8tNVd3EAE", "timestamp": "3 years ago"}, {"text": "Nos gustó mucho", "author": "Jose l Lajarin g", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1aDZiUm5RRRAB", "timestamp": "3 years ago"}, {"text": "Gran circuito, genial atención", "author": "Francisco Javier García Fuente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpa0pPdUh3EAE", "timestamp": "5 years ago"}, {"text": "Muy bien y el trato fenomenal", "author": "francisco jose Murcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndTZmOWVBEAE", "timestamp": "8 years ago"}, {"text": "Muy buenas. Las f200", "author": "Jesus Fernandez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRdWFpeUJnEAE", "timestamp": "8 years ago"}, {"text": "Muy chulo", "author": "David Samper", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzOUlyU3BRRRAB", "timestamp": "6 years ago"}, {"text": "Muy bueno", "author": "TAXI DAMIAN ROCHE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzbUtxcUlREAE", "timestamp": "5 years ago"}, {"text": "Perfecto para pasar un rato divertido.", "author": "Raul Ibanez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNneHNxMEZ3EAE", "timestamp": "8 years ago"}, {"text": "Muy bien", "author": "angeles fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDOHYydnZ3RRAB", "timestamp": "5 years ago"}, {"text": "Fantásticos karts un momento muy divertido", "author": "Colibribribri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bWFhWlJREAE", "timestamp": "2 years ago"}, {"text": "Me gusta mucho", "author": "Multiservicios Raul", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4ZzRxMTRRRRAB", "timestamp": "2 years ago"}, {"text": "Circuito estupendo y muy atentos", "author": "Ivan Pujante Carrillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLNXF1N0tnEAE", "timestamp": "Edited 4 years ago"}, {"text": "Karts en buen estado, pista divertida y bien organizado", "author": "Ignacio Arcas Muñoz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTemJEU21RRRAB", "timestamp": "5 years ago"}, {"text": "Rigtig god oplevelse for hele familien", "author": "Bente Krogh", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXcU1iekNBEAE", "timestamp": "3 years ago"}, {"text": "Muy bien.", "author": "s. montoya saura", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpaVpQN0VBEAE", "timestamp": "5 years ago"}, {"text": "Algo caro. La verdad", "author": "Felix Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZazh5bmdnRRAB", "timestamp": "6 years ago"}, {"text": "No se puede ser mejor👍💯\\nEnhorabuena", "author": "antonio jime", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eE8ySzh3RRAB", "timestamp": "3 years ago"}, {"text": "Buen sitio pata disfrutar de las karts", "author": "Merche", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXa3FEbXRRRRAB", "timestamp": "3 years ago"}, {"text": "Muy bueno", "author": "Gabby Gabs", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrXzVmLVlBEAE", "timestamp": "6 years ago"}, {"text": "Gran sitio de entretenimiento para la familia", "author": "Rubén Gutiérrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndXJ5RDNRRRAB", "timestamp": "8 years ago"}, {"text": "Exelente atención. Son los mejores!!", "author": "Javier Imbaud", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURld1BHcGpnRRAB", "timestamp": "3 years ago"}, {"text": "Se puede mejorar", "author": "Pedro Bezares", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMW9fQUNnEAE", "timestamp": "2 years ago"}, {"text": "Zeer leuk", "author": "Gust", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrcDZ2VkRBEAE", "timestamp": "6 years ago"}, {"text": "Muy atentos y buen precio", "author": "Maximo Carrillo Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhckx5RUdnEAE", "timestamp": "4 years ago"}, {"text": "Excelentes precios y atención", "author": "Leonardo Conzoñhio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQamFDR3hRRRAB", "timestamp": "a year ago"}, {"text": "Buen circuito y adrenalina a tope!!", "author": "Skitel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOTk2cnFRRRAB", "timestamp": "4 years ago"}, {"text": "Buena pista, mañana volveremos", "author": "Raclos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cThuVTJnRRAB", "timestamp": "3 years ago"}, {"text": "Muy bien pero poco tiempo", "author": "Gonzalo Carrillo Martínez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvcU1mR1BnEAE", "timestamp": "6 years ago"}, {"text": "El circuito está chulisímo", "author": "Fernando Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2aXBLRzZnRRAB", "timestamp": "a year ago"}, {"text": "Petarda naprawdę warto", "author": "Remik", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNicUxHa1hBEAE", "timestamp": "a year ago"}, {"text": "Diversión si te gusta la velocidad.", "author": "Juan Francisco Zapata Parra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhak1EbnVBRRAB", "timestamp": "4 years ago"}, {"text": "Buen lugar para cumpleaños.", "author": "Catalina enrique jimenez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBa2V6dzFnRRAB", "timestamp": "7 years ago"}, {"text": "Circuito grande y cuidado con un paisaje bonito", "author": "Javier Higuera", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURndG9xaWNBEAE", "timestamp": "8 years ago"}, {"text": "Buen sitio", "author": "David Eduardo Chica Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWcHVuU1h3EAE", "timestamp": "2 years ago"}, {"text": "Buen circuito ,los cart y el personal", "author": "Jose Maria Pablos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNOC1iRlBnEAE", "timestamp": "6 years ago"}, {"text": "El mejor calidad precio de toda Murcia", "author": "Ruben Alarcon Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLaG9TTjB3RRAB", "timestamp": "4 years ago"}, {"text": "Buenas instalaciones con calidad precio.", "author": "Carlos Almela Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbE9mX3NBRRAB", "timestamp": "4 years ago"}, {"text": "Tienen motos y karts. Lo recomiendo", "author": "Victor M. Vieira", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBbnFmVnRnRRAB", "timestamp": "9 years ago"}, {"text": "Muy bueno para correr con karts", "author": "Juan José Arenas Saura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwbDdtaC1nRRAB", "timestamp": "6 years ago"}, {"text": "Excelente trato", "author": "Hector Amoros", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSOXV2R1VBEAE", "timestamp": "2 years ago"}, {"text": "Super chulo me encanta", "author": "SR.SHENNIX24", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvc0lEaXVBRRAB", "timestamp": "6 years ago"}, {"text": "Классная траса и смотровая площадка", "author": "Dmytro Khatonka", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbzVfc2tBRRAB", "timestamp": "5 years ago"}, {"text": "Buen lugar para descargar adrenalina", "author": "DANIEL PONCE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRNTdXb0x3EAE", "timestamp": "8 years ago"}, {"text": "Circuito grande, largo y amplio.", "author": "Pablo Sanchez Tarancon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhMktENjR3RRAB", "timestamp": "4 years ago"}, {"text": "Buenas carreras, buenas instalaciones", "author": "Julio Galindo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEM3ZMeGFBEAE", "timestamp": "a year ago"}, {"text": "Dårlig sikkerhet, uinteresserte ansatte, og dårlig sikkerhet", "author": "Cape qk", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVanNxb1ZnEAE", "timestamp": "6 years ago"}, {"text": "Líquido dé frenos en mal estado.", "author": "Alejandro Martinez", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDZ3ZYTldREAE", "timestamp": "5 years ago"}, {"text": "Bastante completo y divertido", "author": "Lorenzo Garcia Vera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsbUs2VU9BEAE", "timestamp": "2 years ago"}, {"text": "Super!!!! Sehr zu empfehlen", "author": "Jay", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDZ3JIMWhRRRAB", "timestamp": "5 years ago"}, {"text": "Dos palabras: im - presionante.", "author": "Mar HS", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjbS03WFlBEAE", "timestamp": "5 years ago"}, {"text": "Karts muy divertidos y a un buen precio.", "author": "Tomás Soler (BYXxTOMASxX YT)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eDZMTUJREAE", "timestamp": "4 years ago"}, {"text": "Giornata molto divertente", "author": "Meri Morelli", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwc04yS3B3RRAB", "timestamp": "2 years ago"}, {"text": "Cojonudo, lo hemos pasado bomba!!!", "author": "José Luis González Bragado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZMDVEVi13RRAB", "timestamp": "6 years ago"}, {"text": "Para pasar un rato divertido", "author": "Maika Ramirez Escalona", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDam9DQ0xnEAE", "timestamp": "5 years ago"}, {"text": "Snelle karts heel leuk daar", "author": "Evin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1d055WWt3RRAB", "timestamp": "3 years ago"}, {"text": "Para pasar un rato divertido!!!!", "author": "Daniel Jhong", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwMXY3dGRREAE", "timestamp": "6 years ago"}, {"text": "Excelente experiencia", "author": "Deiny Ramírez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLem9hcEdREAE", "timestamp": "4 years ago"}, {"text": "Muy divertido y completo", "author": "Rubén Oliver Díaz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOWNmcXJnRRAB", "timestamp": "6 years ago"}, {"text": "Gross und schnelle Organisiert", "author": "Frank Siemers", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1c0xmNFJ3EAE", "timestamp": "3 years ago"}, {"text": "Muy agradable", "author": "Pedro Muñoz escudero", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLN0tQcnJRRRAB", "timestamp": "4 years ago"}, {"text": "Buena pista", "author": "israel gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPN01HZ0x3EAE", "timestamp": "3 years ago"}, {"text": "Muy bien 👍", "author": "Joaquín F.A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2NDhpbUJnEAE", "timestamp": "4 years ago"}, {"text": "Un rato divertido", "author": "Beatriz Alcaraz", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLODVuSjl3RRAB", "timestamp": "4 years ago"}, {"text": "Por el trato", "author": "Javier Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcGFHZ2pRRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Super karting ,mais un peu chère", "author": "youssef has", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2cUxPaXdBRRAB", "timestamp": "4 years ago"}, {"text": "Mooie baan!", "author": "Martin Bedorf", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSdjllenp3RRAB", "timestamp": "2 years ago"}, {"text": "Circuito, instalaciones y profesionales de 10.", "author": "Profe Iván", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dVlYMUtnEAE", "timestamp": "3 years ago"}, {"text": "Muy divertido", "author": "elandaluz 77", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDeFBIQlhREAE", "timestamp": "5 years ago"}, {"text": "Perfecto", "author": "Aarts Bouwtotaal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwZ0oza1pBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Hector Soulie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOHVtQUZREAE", "timestamp": "Edited 2 years ago"}, {"text": "Buena manera de desestresarse", "author": "Jose Manuel Abellan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3cjdUT3NBRRAB", "timestamp": "8 years ago"}, {"text": "El mejor circuito de la región", "author": "Josemi Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMGNtVkhnEAE", "timestamp": "2 years ago"}, {"text": "Muy divertida genial", "author": "Kike Cardena sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVX00yc2x3RRAB", "timestamp": "6 years ago"}, {"text": "Un circuito muy largo y técnico", "author": "José Nieto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBam92a3NnRRAB", "timestamp": "7 years ago"}, {"text": "Muy bien !", "author": "Mathias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnOFlYWWl3RRAB", "timestamp": "7 years ago"}, {"text": "Excelente", "author": "Fernando Peixoto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwdV9IQnFBRRAB", "timestamp": "2 years ago"}, {"text": "Fantástica pista de Kart para disfrutar", "author": "Gerar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4di1POUR3EAE", "timestamp": "5 years ago"}, {"text": "Choix de kart et personnel sympa", "author": "Fabian Dorz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcUpmTzJBRRAB", "timestamp": "6 years ago"}, {"text": "Sehr schön", "author": "Thomas Piuma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5My1Pem53RRAB", "timestamp": "4 years ago"}, {"text": "El mejor karting", "author": "Didac", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3dWFLX2N3EAE", "timestamp": "Edited a year ago"}, {"text": "Muy divertido", "author": "John Drebin", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURncmE2bDdnRRAB", "timestamp": "10 years ago"}, {"text": "Esperaculo, adrenalina e velocidade", "author": "Ana Paiva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVamJiTVl3EAE", "timestamp": "6 years ago"}, {"text": "Simplemente genial!", "author": "Luis Gomez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcTZLby1nRRAB", "timestamp": "3 years ago"}, {"text": "Bonita experiencia", "author": "juan manuel sanchez cuesta", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbU9tUUdREAE", "timestamp": "3 years ago"}, {"text": "Una buena pista", "author": "Estrella Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtal9HcGFnEAE", "timestamp": "3 years ago"}, {"text": "Muy chulos y economicos", "author": "German Esquiva Vegara", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrcV9mVVNnEAE", "timestamp": "6 years ago"}, {"text": "Genial !!!", "author": "TKM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTLXNqOHFRRRAB", "timestamp": "5 years ago"}, {"text": "Que buenos ratos", "author": "Enrique L", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJcE5fMTVRRRAB", "timestamp": "7 years ago"}, {"text": "Circuito Kars de 10", "author": "JUAN REY", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNeVppcjRRRRAB", "timestamp": "6 years ago"}, {"text": "Los chicos de pista muy majos", "author": "Carlos González Mato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVd1BfbUJREAE", "timestamp": "6 years ago"}, {"text": "El mejor", "author": "RCH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bktfZnNnRRAB", "timestamp": "3 years ago"}, {"text": "Schön war es wieder", "author": "Sandy Meier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3N3NDQzlRRRAB", "timestamp": "8 years ago"}, {"text": "Très bien, à faire", "author": "Sassiss Said", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVbGU3UndRRRAB", "timestamp": "6 years ago"}, {"text": "Los kars deberían de restaurarlos .", "author": "Katiaa Corcuera", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhemJYNHBRRRAB", "timestamp": "4 years ago"}, {"text": "Toujours parfait.", "author": "Ag Desc", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKd2FDZXNRRRAB", "timestamp": "2 years ago"}, {"text": "Hasta arriba de gente", "author": "Kike Fernandez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyOGZ6ZW93RRAB", "timestamp": "3 years ago"}, {"text": "Buena", "author": "Loli Atienza", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtd2R1LWZBEAE", "timestamp": "3 years ago"}, {"text": "Excelente", "author": "JULIO GASSETTE", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXX0o3OUNREAE", "timestamp": "3 years ago"}, {"text": "Perfecto", "author": "XXMUSCLORXX Isaac", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bmJHQWdRRRAB", "timestamp": "3 years ago"}, {"text": "Todo correcto,\\nVolveré", "author": "IZMAN IGOR", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwcGJLRi1BRRAB", "timestamp": "6 years ago"}, {"text": "Zeer leuke karting", "author": "Victor Ambrosi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcHF5eTZ3RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Excelente", "author": "Manuel T T", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGRmdUZBEAE", "timestamp": "4 years ago"}, {"text": "Perfecto", "author": "Tresillo Crack", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcE42cnpRRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Genial!!", "author": "Estefania Ferrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNVplMnZ3RRAB", "timestamp": "3 years ago"}, {"text": "Buenísimo, buenísimo...", "author": "Juan Ramon Recondo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRM2RTTGVREAE", "timestamp": "7 years ago"}, {"text": "Pittig episch", "author": "Jochem Jelsma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZMl96am5nRRAB", "timestamp": "6 years ago"}, {"text": "Fedt", "author": "Robert villum Nielsen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2bHFXUkJREAE", "timestamp": "4 years ago"}, {"text": "Les enfants ont adorés", "author": "Nadia Larinouna aliouane", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOTdHUWl3RRAB", "timestamp": "3 years ago"}, {"text": "Buen circuito", "author": "Ruben Vicente Navarro", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN0tYOENnEAE", "timestamp": "6 years ago"}, {"text": "Buena experiencia 🙉", "author": "Alexandru ionut Popovici", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVNjVhVDVnRRAB", "timestamp": "6 years ago"}, {"text": "Perfeto", "author": "Sasa Peruseski", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNja2NPRXdBRRAB", "timestamp": "5 years ago"}, {"text": "De cine", "author": "daniel senñai", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxck9xUjRnRRAB", "timestamp": "4 years ago"}, {"text": "Me encanto", "author": "Miguel Angel Garre", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDajhENjRnRRAB", "timestamp": "5 years ago"}, {"text": "Karts para disfrutar en familia", "author": "Javier", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURncGJqVzRRRRAB", "timestamp": "7 years ago"}, {"text": "Me encanto", "author": "Dani76_YT", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBdW92dFVBEAE", "timestamp": "7 years ago"}, {"text": "Me encanta.", "author": "Mauricio C.G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRdDZuZmFnEAE", "timestamp": "Edited 8 years ago"}, {"text": "Bueno", "author": "Abderrahim Barber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeXRxdnlBRRAB", "timestamp": "3 years ago"}, {"text": "Por su trazado y atención", "author": "jose antonio suarez quintas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRMDh6THh3RRAB", "timestamp": "9 years ago"}, {"text": "Es un sitio espectácular", "author": "Isabela Vichera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLa3VxS1JnEAE", "timestamp": "4 years ago"}, {"text": "Leuk circuit", "author": "marcel heemskerk", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxd192ZlN3EAE", "timestamp": "2 years ago"}, {"text": "Circuito impresionante", "author": "Encarna O.G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNN3R6TlJBEAE", "timestamp": "Edited a year ago"}, {"text": "Woow super", "author": "Wojciech Kosecki", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnZy1mbktBEAE", "timestamp": "7 years ago"}, {"text": "Muy familiar", "author": "Piedad Quiñones", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNndk83ZG13RRAB", "timestamp": "Edited 7 years ago"}, {"text": "👌", "author": "sergio S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPXzRYenlRRRAB", "timestamp": "3 years ago"}, {"text": "Genial", "author": "ʋɛʀօ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVOVBQWUR3EAE", "timestamp": "6 years ago"}, {"text": "Los niños disfrutaron", "author": "Gonzalo Montañez Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNScjZ5YWt3RRAB", "timestamp": "Edited a year ago"}, {"text": "Genial", "author": "Daniel Murcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbnFfRGFnEAE", "timestamp": "6 years ago"}, {"text": "Volveremos!!🏎️🏎️🏎️🏎️", "author": "María José Tomás Simón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aUlMWGJREAE", "timestamp": "Edited 4 years ago"}, {"text": "😁😁", "author": "Regi martín", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnMnZEemlRRRAB", "timestamp": "7 years ago"}, {"text": "Encantada..", "author": "Mita Trejo Monserrate", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnLTRfVkJ3EAE", "timestamp": "7 years ago"}, {"text": "Increíble! !!!", "author": "Caridad Cano", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBLWZhbjBRRRAB", "timestamp": "7 years ago"}, {"text": "Grandes Profesionales", "author": "Manuel Vergel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLcGY3SzJBRRAB", "timestamp": "4 years ago"}, {"text": "deaearque dejan", "author": "Sonia Muñoz Ortega (Sonimor)", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2eTU3b3NBRRAB", "timestamp": "4 years ago"}, {"text": "Divertido!!", "author": "María Del Mar Ruiz Plaza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheGVHR2lRRRAB", "timestamp": "4 years ago"}, {"text": "Trato familiar", "author": "Daniel Anton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvN3YzZGx3RRAB", "timestamp": "Edited 6 years ago"}, {"text": "Fantástico", "author": "Miguel Angel Zapata Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhb3Z6WE1BEAE", "timestamp": "4 years ago"}, {"text": "Aangenaam.", "author": "Philippe Vanderpoorten", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhOTliTm9nRRAB", "timestamp": "4 years ago"}, {"text": "Corto viaje", "author": "Concepcion Muñiz", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPXzdDNjBBRRAB", "timestamp": "3 years ago"}, {"text": "Los mejores.", "author": "Eugenio “Ryo567” Martínez Seguín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURndTZqRS1nRRAB", "timestamp": "Edited 3 weeks ago"}, {"text": "Bra go kart", "author": "Aleksander Kjeldsen", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3N2JQYjVRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pedro Espejo Celdran", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GT1luUllNakJWTkRGVVdrUmlZVzQyUjFCRlQxRRAB", "timestamp": "a week ago"}, {"text": "", "author": "stephen corbett", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201SFZtZ3RWRkZ3TjNwaFoycFFabk4zYUVadVNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Eva S M", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2psdFZuVmhibDl2V0hSMlV6YzVSa1JJZVV4R1lVRRAB", "timestamp": "4 months ago"}, {"text": "", "author": "Jose Narvaez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2swMlYwTjJVM1ZvZFVGc01FMVFNSEZhT0Vsc2VuYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "arnold Csiki", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214UVkweDJTelJJZDIxM1ZWbzRjSFE0Y1ZBeVVrRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "0nsu.332", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIMGQ2OGVREAE", "timestamp": "Edited 5 months ago"}, {"text": "", "author": "Ilona s", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tobFZ5MXpXbTUzZFZOSFVGZFVkamhDY25wRlRFRRAB", "timestamp": "6 months ago"}, {"text": "", "author": "Daniel Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvNFo2Ymh3RRAB", "timestamp": "9 months ago"}, {"text": "", "author": "Mija Naumann", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvNkw2Y0pnEAE", "timestamp": "9 months ago"}, {"text": "", "author": "joe carlin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3cFA2X1dREAE", "timestamp": "10 months ago"}, {"text": "", "author": "Laurentiu Cristian Hurdubei", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNneS03SVFBEAE", "timestamp": "11 months ago"}, {"text": "", "author": "michel jonckers", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfLWJITzNnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Susana Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmbnM3cWtRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Zaneta St", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURucll1dkRREAE", "timestamp": "a year ago"}, {"text": "", "author": "Keket666", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIdGNXdTZ3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Candice CandiceCrabb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIazczWXFBRRAB", "timestamp": "a year ago"}, {"text": "", "author": "teodora vazquez cirillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3XzhlLVFnEAE", "timestamp": "a year ago"}, {"text": "", "author": "debbie stanley", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3N3ZMS1B3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Egon Spaanderman", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURidDlHM193RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Mathew Thomas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURicTRxcmNBEAE", "timestamp": "a year ago"}, {"text": "", "author": "dani perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNicXUtdDZ3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Olena", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNUNDhLd19nRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Martin Nienhuis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNUdHQ3SHRBRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Fabricio Gabriel Robalino Ordoñez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5cGZtWl93RRAB", "timestamp": "a year ago"}, {"text": "", "author": "M. JOSE L.A.", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkbjdYM0JREAE", "timestamp": "a year ago"}, {"text": "", "author": "Влад Филоненко", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcl9TRzVnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Arturo Fabrega Vazquez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNGb2R6dFVBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Ana Tomero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1c1BmWUdREAE", "timestamp": "2 years ago"}, {"text": "", "author": "TITOS_ESP", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaZ2ZQVDV3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Teresa Espinosa", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNmVmMkxREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Tristan Egenschwiller", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwME12UzBBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "José Luis Liébana García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwdTg3dWtnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Flacoagudelo1977 Flacoagudelo1977", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwOGZySnB3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica puigvert Abellán", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwM3MtRFZREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Neil Dunkley", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKbi1fdGp3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "DoWy Lpa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKNGRydlRnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Gregorio Escudero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LTYtTkp3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "David Gómez Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSakl2cVFBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Julio Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSM3NqTzV3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Emilio Alonso", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVlDTnRnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Samuel Gibson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtX3NYZ1pnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Francés", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlN1BPZWVREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Santiago Imbaud", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURld0pHM21RRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "JEFFERSON TR", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlcnRMTG9nRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Cristina Lelea", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNleUxqSTVRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Falito Siles", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1M3BfS09BEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Nicolas Ortega Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1N3JUdXpBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Thomas Doenges", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bVBuMkx3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Antonio Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1eThpRk93EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Harald Sæther", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1aHRtT1p3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Þorsteinn Árni Steindórsson", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1Z3VyTXF3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Slm Plm", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPaGRXV0F3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Francisca Saez Martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPd3FDRFZnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "VIP Multiservicios", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPN09LVC13RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Maksym Kalynovych", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPNzRXbm93RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Chema Pa", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydnUtUGxnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Sonia 01", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMyOFlhZTlBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "C T R", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXZ2Z5M3lnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "cordobes.s DAEWOO **", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtOF9EaTRnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Laurent Crucilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGZUTWdRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Juan Pedro Alcaraz Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtMU5hNjVRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Álvaro Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHay1lVjRBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Raquel Cardeñosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHdHFlaGFnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Sergio Cegarra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHdHNTeE5BEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Socry Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2MXVxdndRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "ionica Tunea", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2dUt5VFFREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesús", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2OExDT3NBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ysabel Arocha", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eTV2VUJnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Josefa Noguera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2ZzV2cGVBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Cristina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2M2JfWkpnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Marcos Veiga Abel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2LWRxTmx3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "PATRICIA RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2Nk9HMDFBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Carla Nieto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2OExPWkdREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Tamara Ramirez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhcXJET01REAE", "timestamp": "4 years ago"}, {"text": "", "author": "Lourdes guillamón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhLUlLdXJ3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jesús Sánchez Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhdU5UbnRnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Pedro Monreal Nicolás", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhcU1fbERBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Gutiérrez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcHJ2UTR3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Sara sara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheXRPMzlRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Carolina Rey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhd3JyRjhBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "JOSE LUIS Luque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxeTVteER3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Sergio Fernandez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxd2RYS0h3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Blue Almela Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxN3VXaTF3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Dario García Capel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxOXRTSVlBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Sandra Guerrero", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxZzVYb3dBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Alexejs Rublovs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxZ3RYOW5BRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "rafael gonzalez marin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLclpiVFVnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Paco Aroca navarro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLNWI2RzZRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Juan Zapata Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLcGY3ekNBEAE", "timestamp": "4 years ago"}, {"text": "", "author": "javier perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLeHVhWWtBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Encarnacion SOLER GIMENEZ", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLckp1NHhnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Bikram Jit Singh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLdE1Yem5RRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Alejandro Fernández Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLbzlxRWJ3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Sergio Corvalan Saez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLenE2dXVBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "David Martinez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLaE5xMUl3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Stephen Bedford", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5Z3RqdmZREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jurgen Hantsche", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN5c2Rfb2tnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "", "author": "Gabriel FG", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTMWRXVG5nRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Hosteleriaventaonline", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTMHRTT1VBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "ALFONSO CROS PÁRRAGA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpMXQyZFdnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Alejandro Porras villada", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpMXJUSXlRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Maribé DS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMjdHTzdBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "José Lorente", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDMF9LR3hnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Luis Pulido Cózar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDdzRDUkRBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Pedro Gomez García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDaFpUQWdRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Pepe Soler", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDX28zMEdnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "IBC LOS YEBENES", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcnR2ZkdnEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Mohamed EL FAL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4NmMzRktBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Sonia galan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4eXRfME9REAE", "timestamp": "5 years ago"}, {"text": "", "author": "Kelly O'Hare", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzNXFMeVBBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "Miriam Uceda", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNXzZqWGx3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Gines Martinez Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNbXNMVW53RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Jorge Baizan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNeXFhdERnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Olga Alcaraz Garcia", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNX05qanNRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "José Miguel Gonzalez Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNdE1DRkRBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Miguel Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdDZuTGpRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sempc San Javier", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNLTRDRHB3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Salvi Blazquez Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNd2JDVG5BRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Cristofer Gonzalez alonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNX3VuRTFnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Alarcon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnZfZzh3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Javi Luque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNdnN1NFhREAE", "timestamp": "6 years ago"}, {"text": "", "author": "JOSE LUIS RAMIREZ MARTINEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnNPX3dRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Fran Maestre", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdnNQV3hBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Adrian Gv", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNdm9POHlnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sami Del Rio", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwZzdhR2FnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Adrian Rabasco", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwM1lTdFV3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Rosa Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwNXV1bzBBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Ola Svensson", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwa3ItZU1nEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Angelik Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwcUs3ZHBnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Jacek Oleszczuk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwemR2MzJRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Elena Arias", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVeF9XTkNnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "iñigo irazabal ramiro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcS1tTmF3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Francisco J. Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdWJ5empnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "P Fisher", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbVptVHdnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Matilda R- Stopps", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVc2RqY3VBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Matthew Smith", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVa2ZyT3d3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Dan “DaniHG195” 16", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcnFUZ0hBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jesús Miguel Sánchez Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdHZ5T0dnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Isabel Gomez Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdlBtcVZ3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Juan Benzal Imbernon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVOUo2T1FBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Miguel Fernández Rodríguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVdVAzRkRBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Colin Day", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbUtyNzNnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Martin Skogseth", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNVLTZLM1ZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Jessica Santiago", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVdUtMT3h3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Matas Viselga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURramVyQUZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alexander Montilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM0eFpMamxRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Alejandro Marin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0cnBuMFlREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Samuel López Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0d012dFdnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Konstantin Dobryden", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZejdIVkdBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alexandru Vasile Ichim", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZcDV2aDdRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Jose Manuel Ejotaa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZcThYNTNRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Susana González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMHRDblB3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Sandra M.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZNVBEelRBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Carlos Martínez García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNDRIcmhBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Jesús Montesinos", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZX2JtZWJBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Christian Carretero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNU5Xd3lRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Andrea Avilés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvbUt5ZVB3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Rober", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvdXBuamVnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Salva Valera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR3NC0zSklREAE", "timestamp": "7 years ago"}, {"text": "", "author": "alba buendia serrat", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURneEtpRnFBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Pablo Hernández-Mora Sáenz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnaTgzNE5BEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jorge Camuñas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBc2NEOWhnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Encarni espinosa monteagudo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBOHMtU1BnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Madalena Messias", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRbExDV1NnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Carlos Samper", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMVBubnhnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Ian Raven", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MGREbUtBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Sotix Shep", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBcDZpRWx3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Денис Тульских", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBdk5EUU1BEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Vera Vera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNROVk2Q3R3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Juando García", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3blpHT3FnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Kate Barrett", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRb29YNmJ3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Miguel Garrido", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBd0pDUElBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Sergio", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURncTVIMFBREAE", "timestamp": "Edited 7 years ago"}, {"text": "", "author": "Natalia Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNnMTdXMk1REAE", "timestamp": "8 years ago"}, {"text": "", "author": "Waldemar Lehn", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBNEt5UlB3EAE", "timestamp": "8 years ago"}, {"text": "", "author": "David Reverte López", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBek1fUTZRRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Debi Buckingham", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRaTlmdDRBRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Jaume Tarí", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBb0stbDVRRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Sergio Macia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRdDhMNk5nEAE", "timestamp": "8 years ago"}, {"text": "", "author": "alejandro pretel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN3MGVIUDhRRRAB", "timestamp": "8 years ago"}, {"text": "They cancelled 1 hour 50 mins before we were due to arrive due to rain...IT WAS NOT RAINING WE HAD FRIENDS AND FAMILY TRAVELING FOR HOURS TO BE THERE FOR MY SONS BIRTHDAY😡.\\nWHAT A LIE....WHEN I RANG I GOT HUNG UP ON.possibly Wanted the day off because we were probably the only persons arriving on the day.Most important they text me.They hadn't the decency to call Us!!", "author": "ceceliamichaeloneill", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WFRsVnZabmN3TUd3NU9VeFJMV3h4UWtKQk1uYxAB", "timestamp": "a month ago"}, {"text": "If you're a karting lover don't come here, safety is just not there. You can only drive a kart according to your age even if you are a champion and you have a licence and insurace but they do let drunks and people wearing flip-flops. Be aware that there are no marshalls with flags on the track. Maintenance of the karts is not great. They could do a lot better for such a nice track.", "author": "David Van", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiOHFhTFhREAE", "timestamp": "a year ago"}, {"text": "It is absolutely ridiculous that you brag about giving a GIFT of 8 extra minutes of racing on Wednesdays to each customer, but didn't allow a single parent a chance to make ONE lap with his 2nd child instead of all those extra 8 minutes!!?!! A single parent raced for about 6 minutes with one child and had more than 8 minutes left. He asked to give a 2nd child a chance to do just ONE lap (with same parent) and you refused. We had to pay for a new ticket worth 16 minutes to do ONE lap with 2nd child. Absurd! It's a great shame to your business and managers or owners of this venue. We will not return to your venue and will tell everyone we know the same if you do not put this right. I understand there are rules, but this situation was so absurd that there are no words for it...but shame on you.", "author": "Iveta", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXM0wyNzZnRRAB", "timestamp": "3 years ago"}, {"text": "Came at 20:10. 20 minutes before the advertised closing time and got told I was too late… after a 25 minute drive… and then got told I have to reserve even tho I have been 2 days ago no reservation and could race. No mention of needing to reserve", "author": "Samuel Burgess", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtbWJYMERnEAE", "timestamp": "4 years ago"}, {"text": "Badly run, told 20 min wait but waited almost an hour. Ended up getting a refund and going to another venue.", "author": "Ian Routledge", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXN3BLZUd3EAE", "timestamp": "3 years ago"}, {"text": "Una hora y quince minutos esperando, tenían retraso de mas de media hora según ellos y luego fue de una hora y cuarto. Poca seriedad. No es posible 45 minutos de más de retraso aparte de lo que te dicen ellos que llevan ya de retraso. No es nada serio, y menos cuando reservé con dias de antelación. No se lo toman muy en serio, independientemente de la temporada que sea.", "author": "Elena Santa", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WcFQycFdVRE5oWVdwbFkxaGFSVEJYY1c4d1RGRRAB", "timestamp": "Edited 5 months ago"}, {"text": "Los trabajadores super mal educados, la maquinaria correcta pero el personal es desagradable, una vez has pagado te hablan con desprecio, el trato penoso no fue solo a mi y a mi familia si no a mas gente que había en la misma tanda. Explicaciones las justas para alguien que no ha llevado nunca un kart y en cuanto a la experiencia a mi familia y a mi nos frenaron los karts en varias ocasiones, evidentemente no estabamos haciendonun mal uso de ellos, de hecho una de mis hermanas iba despacio porque no en fanática y le frenaban el coche, lo que hace en nuestro opinión que no disfrutes ni al 30% de la experiencia. También escuchamos malos comentarios y opiniones hacia clientes por parte de las chicas que hay dentro. Un saludo, circuito y maquinaria bien, personal penoso", "author": "Holly", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OV1kzRmpTelZZVDNOTmJXaE1TV1J3ZEd0RFRtYxAB", "timestamp": "6 months ago"}, {"text": "Queríamos hacer nuestra fiesta de cumpleaños allí en agosto porque nuestro hijo quería celebrarlo allí y nos dijeron que no era posible por el personal etc. Pues entonces tampoco deberían ofrecerlo o al menos comunicarlo adecuadamente. Pues entonces tampoco deberían ofrecer algo así o al menos comunicarlo adecuadamente que no lo ofrecen en verano o algo así. Ahora tengo que decirle a mi peque que no lo celebraremos allí.\\nMe parece una vergüenza.", "author": "Tarkan Akdogan", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WR015MUJhWGhVYkdkd1QyZ3RSMmxVYzBGUWJFRRAB", "timestamp": "6 months ago"}, {"text": "Muy bonita pista de carreras, pero nada más. Los karts están en mal estado, y un señor mayor que trabaja allí le grita a todo lo que se mueve. ¡Un hombre muy antipático!", "author": "Henk Verfaillie", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25aVVVsSnBWWEp3TlRoSVdHWjJkRkZaTmpWMVUxRRAB", "timestamp": "5 months ago"}, {"text": "Honnêtement je met 1 étoile 18 euros les 8 minutes . A bruxelles c'est hyper moins chère et la Belgique, c'est le pays de la taxe.... vous abusez", "author": "Fred Mayhem", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGaU1HZHFjemRUYnpSTU5FZERUbE51VGsxTWIwRRAB", "timestamp": "6 months ago"}] 127.88364 \N {"job_type": "google-reviews", "priority": 0, "multi_sort": {"enabled": true, "completed_sorts": ["newest", "lowest"], "first_pass_count": 1336}, "bot_detected": false, "business_name": "Go Karts Mar Menor", "rating_snapshot": 4.6, "scraper_version": "1.1.0", "business_address": "Carretera Santiago de la Ribera-Los Narejos, km. 3700, 30720 San Javier, Murcia, Spain ", "initial_sort_used": "newest", "sort_orders_attempted": ["newest"], "total_reviews_snapshot": 2048} 1346 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-30T01:52:40.159Z", "timestamp_ms": 1769737960159}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-30T01:52:40.247Z", "timestamp_ms": 1769737960247}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22gokarts%20mar%20menor%22%20mu...", "category": "browser", "timestamp": "2026-01-30T01:52:40.380Z", "timestamp_ms": 1769737960380}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-30T01:52:41.863Z", "timestamp_ms": 1769737961863}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-30T01:52:42.195Z", "timestamp_ms": 1769737962195}, {"level": "INFO", "message": "Total reviews on page: 2048", "metrics": {"total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:44.587Z", "timestamp_ms": 1769737964587}, {"level": "INFO", "message": "Business: Go Karts Mar Menor", "category": "scraper", "timestamp": "2026-01-30T01:52:44.587Z", "timestamp_ms": 1769737964587}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-30T01:52:44.648Z", "timestamp_ms": 1769737964648}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-30T01:52:44.695Z", "timestamp_ms": 1769737964695}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-30T01:52:44.817Z", "timestamp_ms": 1769737964817}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-30T01:52:44.817Z", "timestamp_ms": 1769737964817}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-30T01:52:47.399Z", "timestamp_ms": 1769737967399}, {"level": "INFO", "message": "Expanded 5 truncated reviews", "metrics": {"expanded_count": 5}, "category": "browser", "timestamp": "2026-01-30T01:52:47.429Z", "timestamp_ms": 1769737967429}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-30T01:52:47.434Z", "timestamp_ms": 1769737967434}, {"level": "INFO", "message": "Found 10 review topics: state, terrace, past, motorbike, supply...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-30T01:52:47.948Z", "timestamp_ms": 1769737967948}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-30T01:52:47.949Z", "timestamp_ms": 1769737967949}, {"level": "INFO", "message": "10/2048 (0%) | idle: 0.0s", "metrics": {"idle_seconds": 0.003173828125, "progress_pct": 0.48828125, "reviews_count": 10, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:48.979Z", "timestamp_ms": 1769737968979}, {"level": "INFO", "message": "10/2048 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0185601711273193, "progress_pct": 0.48828125, "reviews_count": 10, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:50.122Z", "timestamp_ms": 1769737970122}, {"level": "INFO", "message": "10/2048 (0%) | idle: 2.0s", "metrics": {"idle_seconds": 2.0386595726013184, "progress_pct": 0.48828125, "reviews_count": 10, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:51.142Z", "timestamp_ms": 1769737971142}, {"level": "INFO", "message": "10/2048 (0%) | idle: 3.1s", "metrics": {"idle_seconds": 3.064528465270996, "progress_pct": 0.48828125, "reviews_count": 10, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:52.168Z", "timestamp_ms": 1769737972168}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-30T01:52:52.168Z", "timestamp_ms": 1769737972168}, {"level": "INFO", "message": "20/2048 (1%) | idle: 0.0s", "metrics": {"idle_seconds": 0.004948854446411133, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:53.343Z", "timestamp_ms": 1769737973343}, {"level": "INFO", "message": "20/2048 (1%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0360107421875, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:54.374Z", "timestamp_ms": 1769737974374}, {"level": "INFO", "message": "20/2048 (1%) | idle: 2.1s", "metrics": {"idle_seconds": 2.0587618350982666, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:55.397Z", "timestamp_ms": 1769737975397}, {"level": "INFO", "message": "20/2048 (1%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0879602432250977, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:56.426Z", "timestamp_ms": 1769737976426}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-30T01:52:56.426Z", "timestamp_ms": 1769737976426}, {"level": "INFO", "message": "20/2048 (1%) | idle: 4.4s", "metrics": {"idle_seconds": 4.421357870101929, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:57.759Z", "timestamp_ms": 1769737977759}, {"level": "INFO", "message": "20/2048 (1%) | idle: 5.4s", "metrics": {"idle_seconds": 5.447716474533081, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:58.786Z", "timestamp_ms": 1769737978786}, {"level": "INFO", "message": "20/2048 (1%) | idle: 6.5s", "metrics": {"idle_seconds": 6.475603103637695, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:52:59.813Z", "timestamp_ms": 1769737979813}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-30T01:52:59.813Z", "timestamp_ms": 1769737979813}, {"level": "INFO", "message": "20/2048 (1%) | idle: 7.8s", "metrics": {"idle_seconds": 7.820220232009888, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:01.158Z", "timestamp_ms": 1769737981158}, {"level": "INFO", "message": "20/2048 (1%) | idle: 8.8s", "metrics": {"idle_seconds": 8.840862035751343, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:02.179Z", "timestamp_ms": 1769737982179}, {"level": "INFO", "message": "20/2048 (1%) | idle: 9.9s", "metrics": {"idle_seconds": 9.860848426818848, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:03.199Z", "timestamp_ms": 1769737983199}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-30T01:53:03.199Z", "timestamp_ms": 1769737983199}, {"level": "INFO", "message": "20/2048 (1%) | idle: 11.2s", "metrics": {"idle_seconds": 11.197956800460815, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:04.536Z", "timestamp_ms": 1769737984536}, {"level": "INFO", "message": "20/2048 (1%) | idle: 12.2s", "metrics": {"idle_seconds": 12.218778610229492, "progress_pct": 0.9765625, "reviews_count": 20, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:05.557Z", "timestamp_ms": 1769737985557}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-30T01:53:05.557Z", "timestamp_ms": 1769737985557}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.218778610229492}, "category": "browser", "timestamp": "2026-01-30T01:53:05.627Z", "timestamp_ms": 1769737985627}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-30T01:53:05.830Z", "timestamp_ms": 1769737985830}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-30T01:53:10.347Z", "timestamp_ms": 1769737990347}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-30T01:53:10.468Z", "timestamp_ms": 1769737990468}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-30T01:53:13.015Z", "timestamp_ms": 1769737993015}, {"level": "INFO", "message": "Expanded 5 truncated reviews", "metrics": {"expanded_count": 5}, "category": "browser", "timestamp": "2026-01-30T01:53:13.052Z", "timestamp_ms": 1769737993052}, {"level": "INFO", "message": "Hard refresh successful, resuming with 20 reviews already collected", "metrics": {"reviews_collected": 20}, "category": "browser", "timestamp": "2026-01-30T01:53:13.060Z", "timestamp_ms": 1769737993060}, {"level": "WARN", "message": "SLOW cycle: 8.5s (api:0.6s dom:0.2s/608cards flush:0.0s seen:78)", "metrics": {"dom_cards": 608, "api_time_s": 0.5872640609741211, "dom_time_s": 0.17759370803833008, "seen_count": 78, "cycle_time_s": 8.522238969802856}, "category": "system", "timestamp": "2026-01-30T01:53:14.873Z", "timestamp_ms": 1769737994873}, {"level": "INFO", "message": "78/2048 (4%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 3.80859375, "reviews_count": 78, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:14.894Z", "timestamp_ms": 1769737994894}, {"level": "INFO", "message": "DOM cleanup: removed 65 cards to prevent memory buildup", "metrics": {"cards_removed": 65, "cards_remaining": 436}, "category": "system", "timestamp": "2026-01-30T01:53:16.074Z", "timestamp_ms": 1769737996074}, {"level": "INFO", "message": "Flushing 127 reviews to disk...", "metrics": {"source": "flush", "batch_size": 127}, "category": "scraper", "timestamp": "2026-01-30T01:53:16.074Z", "timestamp_ms": 1769737996074}, {"level": "INFO", "message": "127/2048 (6%) | idle: 0.0s", "metrics": {"idle_seconds": 0.017294883728027344, "progress_pct": 6.201171875, "reviews_count": 127, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:16.092Z", "timestamp_ms": 1769737996092}, {"level": "INFO", "message": "DOM cleanup: removed 55 cards to prevent memory buildup", "metrics": {"cards_removed": 55, "cards_remaining": 286}, "category": "system", "timestamp": "2026-01-30T01:53:17.183Z", "timestamp_ms": 1769737997183}, {"level": "INFO", "message": "167/2048 (8%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009324789047241211, "progress_pct": 8.154296875, "reviews_count": 167, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:17.193Z", "timestamp_ms": 1769737997193}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 289}, "category": "system", "timestamp": "2026-01-30T01:53:18.278Z", "timestamp_ms": 1769737998278}, {"level": "INFO", "message": "207/2048 (10%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010076761245727539, "progress_pct": 10.107421875, "reviews_count": 207, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:18.288Z", "timestamp_ms": 1769737998288}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 283}, "category": "system", "timestamp": "2026-01-30T01:53:19.386Z", "timestamp_ms": 1769737999386}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-30T01:53:19.387Z", "timestamp_ms": 1769737999387}, {"level": "INFO", "message": "247/2048 (12%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0070819854736328125, "progress_pct": 12.060546875, "reviews_count": 247, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:19.394Z", "timestamp_ms": 1769737999394}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 214}, "category": "system", "timestamp": "2026-01-30T01:53:20.426Z", "timestamp_ms": 1769738000426}, {"level": "INFO", "message": "277/2048 (14%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0032029151916503906, "progress_pct": 13.525390625, "reviews_count": 277, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:20.429Z", "timestamp_ms": 1769738000429}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 339}, "category": "system", "timestamp": "2026-01-30T01:53:21.543Z", "timestamp_ms": 1769738001543}, {"level": "INFO", "message": "316/2048 (15%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00840139389038086, "progress_pct": 15.4296875, "reviews_count": 316, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:21.552Z", "timestamp_ms": 1769738001552}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 221}, "category": "system", "timestamp": "2026-01-30T01:53:22.710Z", "timestamp_ms": 1769738002710}, {"level": "INFO", "message": "336/2048 (16%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01815938949584961, "progress_pct": 16.40625, "reviews_count": 336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:22.728Z", "timestamp_ms": 1769738002728}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 323}, "category": "system", "timestamp": "2026-01-30T01:53:23.927Z", "timestamp_ms": 1769738003927}, {"level": "INFO", "message": "Flushing 119 reviews to disk...", "metrics": {"source": "flush", "batch_size": 119}, "category": "scraper", "timestamp": "2026-01-30T01:53:23.927Z", "timestamp_ms": 1769738003927}, {"level": "INFO", "message": "366/2048 (18%) | idle: 0.0s", "metrics": {"idle_seconds": 0.027497291564941406, "progress_pct": 17.87109375, "reviews_count": 366, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:23.954Z", "timestamp_ms": 1769738003954}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 399}, "category": "system", "timestamp": "2026-01-30T01:53:25.138Z", "timestamp_ms": 1769738005138}, {"level": "INFO", "message": "394/2048 (19%) | idle: 0.0s", "metrics": {"idle_seconds": 0.019925832748413086, "progress_pct": 19.23828125, "reviews_count": 394, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:25.158Z", "timestamp_ms": 1769738005158}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 302}, "category": "system", "timestamp": "2026-01-30T01:53:26.463Z", "timestamp_ms": 1769738006463}, {"level": "INFO", "message": "424/2048 (21%) | idle: 0.0s", "metrics": {"idle_seconds": 0.048540353775024414, "progress_pct": 20.703125, "reviews_count": 424, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:26.511Z", "timestamp_ms": 1769738006511}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 297}, "category": "system", "timestamp": "2026-01-30T01:53:27.575Z", "timestamp_ms": 1769738007575}, {"level": "INFO", "message": "454/2048 (22%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008852720260620117, "progress_pct": 22.16796875, "reviews_count": 454, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:27.584Z", "timestamp_ms": 1769738007584}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 183}, "category": "system", "timestamp": "2026-01-30T01:53:28.640Z", "timestamp_ms": 1769738008640}, {"level": "INFO", "message": "Flushing 105 reviews to disk...", "metrics": {"source": "flush", "batch_size": 105}, "category": "scraper", "timestamp": "2026-01-30T01:53:28.640Z", "timestamp_ms": 1769738008640}, {"level": "INFO", "message": "471/2048 (23%) | idle: 0.0s", "metrics": {"idle_seconds": 0.004236698150634766, "progress_pct": 22.998046875, "reviews_count": 471, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:28.645Z", "timestamp_ms": 1769738008645}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 293}, "category": "system", "timestamp": "2026-01-30T01:53:29.805Z", "timestamp_ms": 1769738009805}, {"level": "INFO", "message": "500/2048 (24%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0028541088104248047, "progress_pct": 24.4140625, "reviews_count": 500, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:29.807Z", "timestamp_ms": 1769738009807}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 287}, "category": "system", "timestamp": "2026-01-30T01:53:30.863Z", "timestamp_ms": 1769738010863}, {"level": "INFO", "message": "530/2048 (26%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008915424346923828, "progress_pct": 25.87890625, "reviews_count": 530, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:30.872Z", "timestamp_ms": 1769738010872}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 188}, "category": "system", "timestamp": "2026-01-30T01:53:31.955Z", "timestamp_ms": 1769738011955}, {"level": "INFO", "message": "550/2048 (27%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007870197296142578, "progress_pct": 26.85546875, "reviews_count": 550, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:31.963Z", "timestamp_ms": 1769738011963}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 290}, "category": "system", "timestamp": "2026-01-30T01:53:33.008Z", "timestamp_ms": 1769738013008}, {"level": "INFO", "message": "Flushing 109 reviews to disk...", "metrics": {"source": "flush", "batch_size": 109}, "category": "scraper", "timestamp": "2026-01-30T01:53:33.008Z", "timestamp_ms": 1769738013008}, {"level": "INFO", "message": "580/2048 (28%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008904695510864258, "progress_pct": 28.3203125, "reviews_count": 580, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:33.017Z", "timestamp_ms": 1769738013017}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 176}, "category": "system", "timestamp": "2026-01-30T01:53:34.059Z", "timestamp_ms": 1769738014059}, {"level": "INFO", "message": "600/2048 (29%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0027959346771240234, "progress_pct": 29.296875, "reviews_count": 600, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:34.062Z", "timestamp_ms": 1769738014062}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 277}, "category": "system", "timestamp": "2026-01-30T01:53:35.129Z", "timestamp_ms": 1769738015129}, {"level": "INFO", "message": "630/2048 (31%) | idle: 0.0s", "metrics": {"idle_seconds": 0.014289617538452148, "progress_pct": 30.76171875, "reviews_count": 630, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:35.143Z", "timestamp_ms": 1769738015143}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 182}, "category": "system", "timestamp": "2026-01-30T01:53:36.229Z", "timestamp_ms": 1769738016229}, {"level": "INFO", "message": "650/2048 (32%) | idle: 0.0s", "metrics": {"idle_seconds": 0.047159671783447266, "progress_pct": 31.73828125, "reviews_count": 650, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:36.277Z", "timestamp_ms": 1769738016277}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 269}, "category": "system", "timestamp": "2026-01-30T01:53:37.359Z", "timestamp_ms": 1769738017359}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-30T01:53:37.359Z", "timestamp_ms": 1769738017359}, {"level": "INFO", "message": "680/2048 (33%) | idle: 0.1s", "metrics": {"idle_seconds": 0.05097508430480957, "progress_pct": 33.203125, "reviews_count": 680, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:37.411Z", "timestamp_ms": 1769738017411}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 180}, "category": "system", "timestamp": "2026-01-30T01:53:38.457Z", "timestamp_ms": 1769738018457}, {"level": "INFO", "message": "700/2048 (34%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0026979446411132812, "progress_pct": 34.1796875, "reviews_count": 700, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:38.460Z", "timestamp_ms": 1769738018460}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 269}, "category": "system", "timestamp": "2026-01-30T01:53:39.610Z", "timestamp_ms": 1769738019610}, {"level": "INFO", "message": "730/2048 (36%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0028481483459472656, "progress_pct": 35.64453125, "reviews_count": 730, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:39.613Z", "timestamp_ms": 1769738019613}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 178}, "category": "system", "timestamp": "2026-01-30T01:53:40.641Z", "timestamp_ms": 1769738020641}, {"level": "INFO", "message": "750/2048 (37%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007666349411010742, "progress_pct": 36.62109375, "reviews_count": 750, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:40.649Z", "timestamp_ms": 1769738020649}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 269}, "category": "system", "timestamp": "2026-01-30T01:53:41.755Z", "timestamp_ms": 1769738021755}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-30T01:53:41.755Z", "timestamp_ms": 1769738021755}, {"level": "INFO", "message": "780/2048 (38%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01743030548095703, "progress_pct": 38.0859375, "reviews_count": 780, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:41.772Z", "timestamp_ms": 1769738021772}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 182}, "category": "system", "timestamp": "2026-01-30T01:53:42.843Z", "timestamp_ms": 1769738022843}, {"level": "INFO", "message": "800/2048 (39%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00867462158203125, "progress_pct": 39.0625, "reviews_count": 800, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:42.851Z", "timestamp_ms": 1769738022851}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 177}, "category": "system", "timestamp": "2026-01-30T01:53:43.891Z", "timestamp_ms": 1769738023891}, {"level": "INFO", "message": "820/2048 (40%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0032606124877929688, "progress_pct": 40.0390625, "reviews_count": 820, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:43.894Z", "timestamp_ms": 1769738023894}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 180}, "category": "system", "timestamp": "2026-01-30T01:53:44.936Z", "timestamp_ms": 1769738024936}, {"level": "INFO", "message": "840/2048 (41%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0029838085174560547, "progress_pct": 41.015625, "reviews_count": 840, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:44.939Z", "timestamp_ms": 1769738024939}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 179}, "category": "system", "timestamp": "2026-01-30T01:53:46.019Z", "timestamp_ms": 1769738026019}, {"level": "INFO", "message": "860/2048 (42%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007375240325927734, "progress_pct": 41.9921875, "reviews_count": 860, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:46.026Z", "timestamp_ms": 1769738026026}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 177}, "category": "system", "timestamp": "2026-01-30T01:53:47.090Z", "timestamp_ms": 1769738027090}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-30T01:53:47.091Z", "timestamp_ms": 1769738027091}, {"level": "INFO", "message": "880/2048 (43%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013904333114624023, "progress_pct": 42.96875, "reviews_count": 880, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:47.105Z", "timestamp_ms": 1769738027105}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 88}, "category": "system", "timestamp": "2026-01-30T01:53:48.277Z", "timestamp_ms": 1769738028277}, {"level": "INFO", "message": "890/2048 (43%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013283014297485352, "progress_pct": 43.45703125, "reviews_count": 890, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:48.290Z", "timestamp_ms": 1769738028290}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 175}, "category": "system", "timestamp": "2026-01-30T01:53:49.327Z", "timestamp_ms": 1769738029327}, {"level": "INFO", "message": "910/2048 (44%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007931709289550781, "progress_pct": 44.43359375, "reviews_count": 910, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:49.335Z", "timestamp_ms": 1769738029335}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 179}, "category": "system", "timestamp": "2026-01-30T01:53:50.361Z", "timestamp_ms": 1769738030361}, {"level": "INFO", "message": "930/2048 (45%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007441282272338867, "progress_pct": 45.41015625, "reviews_count": 930, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:50.369Z", "timestamp_ms": 1769738030369}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 182}, "category": "system", "timestamp": "2026-01-30T01:53:51.407Z", "timestamp_ms": 1769738031407}, {"level": "INFO", "message": "950/2048 (46%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011092662811279297, "progress_pct": 46.38671875, "reviews_count": 950, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:51.418Z", "timestamp_ms": 1769738031418}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 177}, "category": "system", "timestamp": "2026-01-30T01:53:52.721Z", "timestamp_ms": 1769738032721}, {"level": "INFO", "message": "970/2048 (47%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0057413578033447266, "progress_pct": 47.36328125, "reviews_count": 970, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:52.727Z", "timestamp_ms": 1769738032727}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 180}, "category": "system", "timestamp": "2026-01-30T01:53:53.930Z", "timestamp_ms": 1769738033930}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-30T01:53:53.930Z", "timestamp_ms": 1769738033930}, {"level": "INFO", "message": "990/2048 (48%) | idle: 0.1s", "metrics": {"idle_seconds": 0.050458669662475586, "progress_pct": 48.33984375, "reviews_count": 990, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:53.981Z", "timestamp_ms": 1769738033981}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 177}, "category": "system", "timestamp": "2026-01-30T01:53:55.189Z", "timestamp_ms": 1769738035189}, {"level": "INFO", "message": "1010/2048 (49%) | idle: 0.0s", "metrics": {"idle_seconds": 0.018412113189697266, "progress_pct": 49.31640625, "reviews_count": 1010, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:55.208Z", "timestamp_ms": 1769738035208}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 178}, "category": "system", "timestamp": "2026-01-30T01:53:56.249Z", "timestamp_ms": 1769738036249}, {"level": "INFO", "message": "1030/2048 (50%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009878873825073242, "progress_pct": 50.29296875, "reviews_count": 1030, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:56.259Z", "timestamp_ms": 1769738036259}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 179}, "category": "system", "timestamp": "2026-01-30T01:53:57.297Z", "timestamp_ms": 1769738037297}, {"level": "INFO", "message": "1050/2048 (51%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007360696792602539, "progress_pct": 51.26953125, "reviews_count": 1050, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:57.305Z", "timestamp_ms": 1769738037305}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 179}, "category": "system", "timestamp": "2026-01-30T01:53:58.359Z", "timestamp_ms": 1769738038359}, {"level": "INFO", "message": "1070/2048 (52%) | idle: 0.0s", "metrics": {"idle_seconds": 0.013729095458984375, "progress_pct": 52.24609375, "reviews_count": 1070, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:58.373Z", "timestamp_ms": 1769738038373}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 176}, "category": "system", "timestamp": "2026-01-30T01:53:59.510Z", "timestamp_ms": 1769738039510}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-30T01:53:59.510Z", "timestamp_ms": 1769738039510}, {"level": "INFO", "message": "1090/2048 (53%) | idle: 0.0s", "metrics": {"idle_seconds": 0.003042936325073242, "progress_pct": 53.22265625, "reviews_count": 1090, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:53:59.513Z", "timestamp_ms": 1769738039513}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 178}, "category": "system", "timestamp": "2026-01-30T01:54:00.629Z", "timestamp_ms": 1769738040629}, {"level": "INFO", "message": "1110/2048 (54%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009669303894042969, "progress_pct": 54.19921875, "reviews_count": 1110, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:00.639Z", "timestamp_ms": 1769738040639}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 178}, "category": "system", "timestamp": "2026-01-30T01:54:01.713Z", "timestamp_ms": 1769738041713}, {"level": "INFO", "message": "1130/2048 (55%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008742570877075195, "progress_pct": 55.17578125, "reviews_count": 1130, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:01.722Z", "timestamp_ms": 1769738041722}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 173}, "category": "system", "timestamp": "2026-01-30T01:54:02.840Z", "timestamp_ms": 1769738042840}, {"level": "INFO", "message": "1150/2048 (56%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0029282569885253906, "progress_pct": 56.15234375, "reviews_count": 1150, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:02.843Z", "timestamp_ms": 1769738042843}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 133}, "category": "system", "timestamp": "2026-01-30T01:54:03.928Z", "timestamp_ms": 1769738043928}, {"level": "INFO", "message": "1170/2048 (57%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006524562835693359, "progress_pct": 57.12890625, "reviews_count": 1170, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:03.934Z", "timestamp_ms": 1769738043934}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 119}, "category": "system", "timestamp": "2026-01-30T01:54:04.973Z", "timestamp_ms": 1769738044973}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-30T01:54:04.973Z", "timestamp_ms": 1769738044973}, {"level": "INFO", "message": "1190/2048 (58%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011565208435058594, "progress_pct": 58.10546875, "reviews_count": 1190, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:04.985Z", "timestamp_ms": 1769738044985}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 114}, "category": "system", "timestamp": "2026-01-30T01:54:06.028Z", "timestamp_ms": 1769738046028}, {"level": "INFO", "message": "1210/2048 (59%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009726524353027344, "progress_pct": 59.08203125, "reviews_count": 1210, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:06.038Z", "timestamp_ms": 1769738046038}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 117}, "category": "system", "timestamp": "2026-01-30T01:54:07.122Z", "timestamp_ms": 1769738047122}, {"level": "INFO", "message": "1230/2048 (60%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006506443023681641, "progress_pct": 60.05859375, "reviews_count": 1230, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:07.129Z", "timestamp_ms": 1769738047129}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 117}, "category": "system", "timestamp": "2026-01-30T01:54:08.173Z", "timestamp_ms": 1769738048173}, {"level": "INFO", "message": "1250/2048 (61%) | idle: 0.0s", "metrics": {"idle_seconds": 0.005410194396972656, "progress_pct": 61.03515625, "reviews_count": 1250, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:08.179Z", "timestamp_ms": 1769738048179}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 116}, "category": "system", "timestamp": "2026-01-30T01:54:09.242Z", "timestamp_ms": 1769738049242}, {"level": "INFO", "message": "1270/2048 (62%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011870145797729492, "progress_pct": 62.01171875, "reviews_count": 1270, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:09.254Z", "timestamp_ms": 1769738049254}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 110}, "category": "system", "timestamp": "2026-01-30T01:54:10.322Z", "timestamp_ms": 1769738050322}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-30T01:54:10.322Z", "timestamp_ms": 1769738050322}, {"level": "INFO", "message": "1290/2048 (63%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009226083755493164, "progress_pct": 62.98828125, "reviews_count": 1290, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:10.332Z", "timestamp_ms": 1769738050332}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 113}, "category": "system", "timestamp": "2026-01-30T01:54:11.447Z", "timestamp_ms": 1769738051447}, {"level": "INFO", "message": "1310/2048 (64%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01412653923034668, "progress_pct": 63.96484375, "reviews_count": 1310, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:11.461Z", "timestamp_ms": 1769738051461}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 112}, "category": "system", "timestamp": "2026-01-30T01:54:12.729Z", "timestamp_ms": 1769738052729}, {"level": "INFO", "message": "1330/2048 (65%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011484861373901367, "progress_pct": 64.94140625, "reviews_count": 1330, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:12.740Z", "timestamp_ms": 1769738052740}, {"level": "INFO", "message": "DOM cleanup: removed 4 cards to prevent memory buildup", "metrics": {"cards_removed": 4, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-30T01:54:13.894Z", "timestamp_ms": 1769738053894}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011502265930175781, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:13.906Z", "timestamp_ms": 1769738053906}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0421648025512695, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:14.960Z", "timestamp_ms": 1769738054960}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 2.1s", "metrics": {"idle_seconds": 2.0698118209838867, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:15.988Z", "timestamp_ms": 1769738055988}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 3.1s", "metrics": {"idle_seconds": 3.118762493133545, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:17.037Z", "timestamp_ms": 1769738057037}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-30T01:54:17.037Z", "timestamp_ms": 1769738057037}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 4.2s", "metrics": {"idle_seconds": 4.2430455684661865, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:18.161Z", "timestamp_ms": 1769738058161}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 5.3s", "metrics": {"idle_seconds": 5.283257007598877, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:19.201Z", "timestamp_ms": 1769738059201}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 6.3s", "metrics": {"idle_seconds": 6.341266632080078, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:20.259Z", "timestamp_ms": 1769738060259}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-30T01:54:20.259Z", "timestamp_ms": 1769738060259}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 7.7s", "metrics": {"idle_seconds": 7.672875881195068, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:21.591Z", "timestamp_ms": 1769738061591}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 8.7s", "metrics": {"idle_seconds": 8.708487510681152, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:22.626Z", "timestamp_ms": 1769738062626}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 9.7s", "metrics": {"idle_seconds": 9.745527029037476, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:23.663Z", "timestamp_ms": 1769738063663}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-30T01:54:23.663Z", "timestamp_ms": 1769738063663}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 11.1s", "metrics": {"idle_seconds": 11.097923755645752, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:25.016Z", "timestamp_ms": 1769738065016}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 12.2s", "metrics": {"idle_seconds": 12.153102397918701, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:26.071Z", "timestamp_ms": 1769738066071}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-30T01:54:26.071Z", "timestamp_ms": 1769738066071}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 13.5s", "metrics": {"idle_seconds": 13.519493579864502, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:27.437Z", "timestamp_ms": 1769738067437}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 14.6s", "metrics": {"idle_seconds": 14.559229135513306, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:28.477Z", "timestamp_ms": 1769738068477}, {"level": "INFO", "message": "1336/2048 (65%) | idle: 15.6s", "metrics": {"idle_seconds": 15.582672834396362, "progress_pct": 65.234375, "reviews_count": 1336, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:29.501Z", "timestamp_ms": 1769738069501}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-30T01:54:29.501Z", "timestamp_ms": 1769738069501}, {"level": "INFO", "message": "Hit ~1000 limit with multi-sort available, proceeding to additional sorts", "metrics": {"pct_complete": 65.234375, "current_count": 1336}, "category": "scraper", "timestamp": "2026-01-30T01:54:29.541Z", "timestamp_ms": 1769738069541}, {"level": "INFO", "message": "All reviews loaded: 1336", "metrics": {"total_reviews": 1336, "elapsed_seconds": 101.59230899810791}, "category": "scraper", "timestamp": "2026-01-30T01:54:29.541Z", "timestamp_ms": 1769738069541}, {"level": "INFO", "message": "Multi-sort auto-enabled (total 2048 > 1000)", "metrics": {"threshold": 1000, "total_reviews": 2048}, "category": "scraper", "timestamp": "2026-01-30T01:54:29.541Z", "timestamp_ms": 1769738069541}, {"level": "INFO", "message": "Pass 2/4 (lowest): starting with 1336 reviews", "metrics": {"pass": 2, "sort": "lowest", "current_total": 1336}, "category": "scraper", "timestamp": "2026-01-30T01:54:29.541Z", "timestamp_ms": 1769738069541}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-30T01:54:30.063Z", "timestamp_ms": 1769738070063}, {"level": "INFO", "message": "Sorted by lowest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-30T01:54:30.668Z", "timestamp_ms": 1769738070668}, {"level": "INFO", "message": "Pass 2 (lowest) complete: +10 new reviews (0.7% yield)", "metrics": {"pass": 2, "sort": "lowest", "yield_pct": 0.7485029940119761, "new_reviews": 10}, "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}, {"level": "INFO", "message": "Low yield (0.7% < 5%), stopping multi-sort", "metrics": {"threshold": 5, "yield_pct": 0.7485029940119761}, "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}, {"level": "INFO", "message": "Final flush: 56 reviews...", "metrics": {"source": "final_flush", "batch_size": 56}, "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}, {"level": "INFO", "message": "Total: 1346 unique reviews (flushed: 1346, in memory: 0)", "metrics": {"flushed_count": 1346, "total_reviews": 1346, "elapsed_seconds": 119.7786180973053, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-30T01:54:47.727Z", "timestamp_ms": 1769738087727}] 2026-01-31 03:21:52.834792 [{"count": 23, "topic": "state"}, {"count": 15, "topic": "terrace"}, {"count": 11, "topic": "past"}, {"count": 10, "topic": "motorbike"}, {"count": 10, "topic": "supply"}, {"count": 9, "topic": "engine displacement"}, {"count": 7, "topic": "luxury"}, {"count": 5, "topic": "rental agreement"}, {"count": 5, "topic": "público"}, {"count": 5, "topic": "roof"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-30T01:52:40.174719", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Go Karts Mar Menor Go-karting venue Carretera Santiago de la Ribera-Los Narejos, km. 3700, 30720 San Javier, Murcia, Spain 4.60 2289 Entertainment.Venues.Go_karting_venue exact google df85e4ae-d7b1-4eb3-acbe-64c7d4a9717d partial https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en \N \N 2026-01-29 01:21:43.597199 2026-01-29 01:25:05.052399 2026-01-29 01:25:06.196199 961 [{"text": "Wow!\\n\\nBest dining experience in a long time.\\nStaff so attentive and friendly.\\n\\nWe started with the guacamole which is made at the table! A show in it's self.\\n\\nMain courses were both really amazing.\\n\\nGlasses of house wine, red and white, were both delicious and very reasonably priced!\\n\\nWow, wish we lived closer we would be in on a regular basis.", "author": "Andy Smith", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GbFltcEZSVk56Wm1wTmFIQjJUbVZLWDFOV1MyYxAB", "timestamp": "4 months ago"}, {"text": "This is an \\"must visit place\\" when you are in Las Palmas. Great food and fantastic service. Just wonderful experience. Thanks....", "author": "Tom-Erik Blix", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0MGJUYzBhVkoyUTNaQlFVOWFORjh4Y1hsM2NtYxAB", "timestamp": "a month ago"}, {"text": "We always dine at this restaurant when we are staying in Las Palmas and have never been disappointed. The food is top notch with service to match. They have a very reasonably priced wine menu. Looking forward too our next visit already", "author": "jules bowen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NjRyRlRBEAE", "timestamp": "10 months ago"}, {"text": "The worst New year s dinner ever\\nThis was the worst experience ever we had in any restaurant in this world\\nLong story short, we booked months ahead, on the phone from Norway\\nMy Spanish is good, i was able to reserve a table at this restaurant, which by the way we loved before ,as a mention we been there at them at least 5 times, we are in there almost as regulars\\nWe wanted a table at 21pm that evening, but they said on the phone that they would send the menu on WhatsApp, witch they did\\nAlso they changed the time for our dinner from 21 pm to 19 30\\nIn our mind sounded ok\\nAnd then the dissatisfaction\\nWe were there at 19 30 on the New year s eve\\nWelcomed in a additional room part of them I assume, where we were taken to our table and.....\\nNo music, no atmosphere, no nothing\\nThe waiters come, one more scary an another, asking if we like something to drink\\nI have to mention that it was about a six course menu with open bar\\nI asked for some aperitif which we thought is an open bar, but the waiter sad, not now at the end\\nAnd then they come with the food,in one hour we were qicked out\\nWe couldn't eat so fast we did not finish any of the courses, and the open bar consisted in one bottle of the cheapest Rioja\\nAll this for 130 euro per person\\nSo we paid for nothing 260 euro, to be on the streets, at 20 30 pm\\nAnd we didn't get the grapes and pistachios\\nShame on you", "author": "Andreea Antal", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xNFIzWTFNblIxVDNneU15MTZVamswWnpZMlNuYxAB", "timestamp": "3 weeks ago"}, {"text": "Absolutely amazing food! Possibly the best steak I’ve ever had, I wondered why they hadn’t given me a steak knife until I cut through it and realised it was like cutting through butter. The salad was the best salad I’ve ever had too. The service is friendly and efficient and not over bearing. 10/10 all round.", "author": "Hannah Ramrachia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WVFpuSnBPVmhGYWtWMlkwSjZUa0pXY2pGbVdFRRAB", "timestamp": "4 weeks ago"}, {"text": "Restaurant with a great selection of wines and very skilled and friendly waiters. The pork was to die for and also most other dishes were delicious and generous. Only the fish was a bit overcooked and dry, but everything else was amazing. I'll definitely return!", "author": "Nelly", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNTdQVkd3EAE", "timestamp": "3 years ago"}, {"text": "The food was ok. Both myself and my husband ordered fillet steaks, mine looked and tasted lovely but his looked old, like it had been sitting in the fridge already sliced since days prior. The chips and their house dessert was lovely. Be warned they charge you for the bread they bring to the table even though you didn’t order it", "author": "J S", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2b29DdzdBRRAB", "timestamp": "a year ago"}, {"text": "Delicious steak and pork rib,the fresh warm goats cheese salad to start was delicious and chopped up and served at the table. The warm baked cheesecake with cherry ice cream exceeded expectations- highly recommend", "author": "Suzach", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvNG9HUi1RRRAB", "timestamp": "9 months ago"}, {"text": "One of the best restaurants in Las Palmas, we had a pleasure that owner was serving us since we were first guests. He is really passionate about food and wine, can probably talk about it for hours. What I liked was that he recommended dishes according to their strength and flavours. One the best gyoza I've had in my life! Octopus was also very good and tender, fish was excellent, maybe a bit too salty sauce for my taste but it's just a matter of taste. Also, try goat cheese prawns! What a sensational flavours 👌 I left good tip there and I will come back asap", "author": "Jacek Obral", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURod2ZhaFpBEAE", "timestamp": "2 years ago"}, {"text": "A bit disappointing given it has great reviews from what I’ve read. We went on a Sunday night and it was very very quiet. No music was played which created an awkward atmosphere. Also they didn’t have any Sauvignon, so ran to the shop and grabbed a random French wine which was nothing like Sauvignon. Food was okay, I ordered the pork which the waiter recommended and it was nothing special, and perhaps the €28 price was abit steep, especially as it was only served with chips. Iberico ham was nice though, and my girlfriend enjoyed her burrata salad. Not sure I’d rush back, but perhaps the experience would’ve been better had there been more atmosphere.", "author": "Alex Jackson", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201RmJFRjRkalpYY21sa2RsOVdZWE5xY0RGd1VWRRAB", "timestamp": "4 months ago"}, {"text": "4.5 / 5\\n\\nFood is of very high quality. My medium rare steak was done right; just a wee bit colder than you'd expect.\\nStarter of tuna: very special! Mixed in front of your eyes.\\nAttention to details is superb! Even the mayo is special, with pineapple.\\n\\nNice vibe, allows for conversation.\\nDesign is clean and easy on the eyes.\\nVery inviting, especially inside!\\n\\nService: prompt, quick, attentive.\\nOne pet peeve: don't pour people's drink to their glass (regardless of water or wine). It implies you are RUSHING your customer... In a similar line of thought: allow some gaps between the dishes. They came out of the kitchen almost too fast (:", "author": "Ehud R.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWczh2UHNnRRAB", "timestamp": "2 years ago"}, {"text": "We have arrived quite late in Las Palmas and it was the only place with the kitchen open, anyway they had a special fix menu that evening, with a fix price: 50€.\\nThe food was without doubt special and of very high quality, the wine was even better than the food!\\nThe only problem was that they have given us more wine than food, at least the should have given a bit bigger quantities.\\nAnyway, the owner and the staff were very professional, recommended.", "author": "Roberto Murgia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MjktTW5RRRAB", "timestamp": "2 years ago"}, {"text": "The Rincon de Triana doesn't look like much from the outside, but don't be fooled. The food is truly amazing and the service is very friendly. We came with a group of friends (12 in total) and enjoyed a wonderful evening. Each dish is well prepared and very tasty. Portions are generous. The wine selection is also very good. Definitely worth a visit when in Las Palmas.", "author": "TA Legner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSUlFUbDZWbDlCTVdGelZrbHdiRVZVUm5wSmNuYxAB", "timestamp": "5 months ago"}, {"text": "Tasty food and kind service. croquetas de jamón were creamy. We had slow cooked ribs and they melted in the mouth. Will come back to try other dishes.", "author": "Santiago Tacoronte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwLXRfNW53RRAB", "timestamp": "2 years ago"}, {"text": "Great restaurant near the sea front, food was very good. We had the guacamole which was fresh and tasty, the Iberica ham was good and the pig leg was exceptional. The service was great and attentive. I'd highly recommend this place for dinner if you visit Gran Canaria, out best meal there by far.\\nThe only very minor downside is that they have limited non alcoholic drinks.", "author": "Ada", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtMDVhclNREAE", "timestamp": "Edited 2 years ago"}, {"text": "Staff were friendly and efficient. Restaurant was well laid out and had a smart but relaxed feel to it.\\n\\nGreat combination of flavours. I went for the octopus as a main and the carpaccio with ice cream to start which were great. Gyōzas also highly recommended. Would definitely go back if in the area.", "author": "Vik Dowlul", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpeDQtNk13EAE", "timestamp": "5 years ago"}, {"text": "Very unique and special menu, we tried different starters, mains and desserts on multiple occasions. Always excellent. Service also great with friendly staff, explaining the dishes and its origin. Absolutely recommend this place, also great value for money", "author": "Christiaan Viljoen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNieXRfZ0lBEAE", "timestamp": "a year ago"}, {"text": "Honestly one of the best restaurants we tried during our stay in Las Palmas. Food was delicious and the atmosphere is relaxed yet elegant.", "author": "Andreea Soric", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNdjhvTG5oN2JIRE1BEAE", "timestamp": "8 months ago"}, {"text": "SUPER LECKER!! Amazing place!\\nThe FRESH food is of high Quality standard! The pork rips were perfectly 48 hours cooked, so tender. Appetizer of tableside made guacamole with tortillas and fried leek, really delicious.\\nService outstanding ( Moises), authentic, friendly by heart, and so attentive.", "author": "Melitta Gress", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtbDZDYU13EAE", "timestamp": "3 years ago"}, {"text": "I should have paid attention to red flags from comments. Food was weird taste. Shrimp with cheese was dry and not wow. Gyodza was disappointment - I couldn’t understand what I am eating and taste was really bad. Rincon steak was okay but I wouldn’t call it a steak and their chef garlic sauce was like Calve from supermarket. Very big disappointment. Recommend to choose another place.", "author": "Elizaveta Privalenko", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4M1pHTXdObUprV25kVU1URTJkWFI1TFhvNFFsRRAB", "timestamp": "4 months ago"}, {"text": "We had not booked a table, it took a couple of minutes to prepare one and then the journey started.\\nFrom starter to main dish (no more space for desert unfortunately) the food was of great quality. The homemade (literally in front of you) guacamole was amazing (maybe the only comment would be to change the tortilla with tortilla chips or something more unique..). We had the local Garbazada with a twist of langostinos, really nice. A refined ensaladilla with langostinos as well and to end a piece of grilled Iberian dam just perfectly cooked.\\nWe said at the beginning that everything was to share and they had the great attention to pre serve everything divided by two!", "author": "Paolo Remogna", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiZ2RTMk1REAE", "timestamp": "a year ago"}, {"text": "Excellent food! Tried the grilled Iberian pork, paired with a nice red Ribera del Duero.\\nNothing like the tourist places by the beach", "author": "Hans Gunnarsson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OWWVXRjNRbkUzUTJsS2VIQjJSazR3VlZGT2NsRRAB", "timestamp": "2 months ago"}, {"text": "Nice staff, short waiting time, excellent food.", "author": "Reidar Biørn Michelet", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xRdGJITkxXbXRWYXpGWlRWUmlWVWRuUkc5YWRIYxAB", "timestamp": "a month ago"}, {"text": "Dont go if u want good fish !!\\n\\nI have ordered the most expensive 24€ main course Octopus and I get kind of a cold starter 😂super small portion and not heated .\\nIt was clearly not a main course !\\n\\nNot to mention the 5 times (literally ) I was asked by 2 different waiter if I want to drink .\\nIt was very annoying to have this pressure to order drink !!\\n\\nAnyways I do not recommend at all", "author": "Maria Ben", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MTlhSUFREAE", "timestamp": "a year ago"}, {"text": "Wow. The food was fresh, rich, amazing! Off menu pork medallions were perfectly cooked and tender. Appetizer of tableside made guacamole with tortillas equally delicious. And dessert was a honey soaked bread pudding with a custom-made ice cream. I’m grateful we have six more weeks here so we can keep coming back to this restaurant!", "author": "Kevin Blood", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPM09fWjVRRRAB", "timestamp": "3 years ago"}, {"text": "Delicious food! Great service! Very attentive staff! Better to book in advance! Amazing scallops, beef carpacio and, of course the signature dish of the restaurant - gyozas !!!", "author": "Viktoriya Kronos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCX0pmZjBRRRAB", "timestamp": "3 years ago"}, {"text": "Great food, friendly Service - came here twice on our one week vacation. Definitely recommended!", "author": "Markus Schering", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfMWFMM253RRAB", "timestamp": "a year ago"}, {"text": "Oh My God! Where to begin... Best meat on the island hands down, best flavours and sauces that are so rich so elegant the service and how its prepared and served is amazing. I had 2 full meals because it was so good I needed more. Deff a must when visiting.", "author": "Gene “Gino” Takooree", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURodVBpd3pBRRAB", "timestamp": "2 years ago"}, {"text": "Absolutely fantastic. Good service and fabulous food. Best food experience we’ve had in Las Palmas. Special mention gets the Carpaccio that was so different and good.", "author": "Tryggvi Torfason", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNodzlfMFNBEAE", "timestamp": "2 years ago"}, {"text": "Great place for dinner in Las Palmas. Quality of food, presentation and service is high. Our waiter explained everything, with really nice and positive attitude. Recommend to everyone who wants to escape from touristic restaurants on the beach, still being close to it.", "author": "Magda Cho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURObS1yTEpBEAE", "timestamp": "2 years ago"}, {"text": "Food was incredible. The octopus cut like butter and had the perfect balance of fat and acidity. The sirloin steak was cooked to perfection and the two sauces were a combination of flavors I'd never had before but were so delicious. Great wine list and excellent service and prices. Would eat here again in a heartbeat. Only gave four stars for atmosphere because of the lack of music and the two children seated behind us that were allowed to run rampant.", "author": "Oceana Jenkins", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvNk1tbVdBEAE", "timestamp": "9 months ago"}, {"text": "If you got there will be satisfied.", "author": "Paweł Burkiewicz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5NFVVeFZObWMyTTJwa1pFczVWbHBsUWtwdlNHYxAB", "timestamp": "2 months ago"}, {"text": "Honestly, this is the best fish I ate in the grand canaria island. I think this restaurant deserves a Michelin star for sure!", "author": "Amerah Bukhari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnOW95S0dREAE", "timestamp": "Edited 4 months ago"}, {"text": "I have been to plenty of fancy steakhouses in my life and I must say their Rincon style sirloin steak has impressed me. Very tender, flavourful and it melts in your mouth. Their house red wine is also smooth and kept at a perfect temperature. Finally I would highly advise to try the scallops.", "author": "Fernando Camara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvMkphRy13RRAB", "timestamp": "9 months ago"}, {"text": "We ate here during our recent trip to gran canaria. It was lovely! We didn't book a table and that wasn't an issue. We ordered a selection of dishes, instead of a main each, as the menu looked very tasty. I particularly enjoyed the guacamole and the scallops. Would strongly recommend if you're in the area!", "author": "Alice Glenister", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvcWNQMlB3EAE", "timestamp": "9 months ago"}, {"text": "Amazing service and food, the staff is proffesional and speaks english. We tried Seafood Paella as two people, the price meets the quality of the food which was delicious. Highly recommend!", "author": "Lukas Senkus", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNic1p1Xzl3RRAB", "timestamp": "a year ago"}, {"text": "Mixed. I went with my parents and girlfriend, and we ordered a tuna starter and fillet steaks. Booking was easy and the seating outside was spacious. The recommended local wine was excellent, and the starter was superb. However, the steak tasted old as if it had been sitting for too long.", "author": "Simon Eugen Matell", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmejl1X0dnEAE", "timestamp": "a year ago"}, {"text": "My husband and I enjoyed our dining experience at this lovely restaurant in Las Palmas. Excellent service from Jesu who made our guacamole at the table a delight to watch and it was delicious! You have to leave room for their cheesecake...it was amazing!", "author": "Monique Ternier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBc1otcl9nRRAB", "timestamp": "11 months ago"}, {"text": "This place is outstanding. I may regret sharing but they deserve it. The steak was the most tender and delicious I’ve had. Many other dishes were first class and delivered at the table by highly skilled waiting staff. They combined craft with relaxed charm, help and professionalism. So impressive in the theatre and quality of the food. Thank you caballeros. See you soon.", "author": "FKennedy & MWilliams", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbDRMT1pREAE", "timestamp": "2 years ago"}, {"text": "We were so impressed with our first meal.... that we returned 2 nights later for a repeat. .We tried several starters and entrees... all supberb! Best place to dine in Los Palmas. Compliments to the chef and staff!! Our waiter - Moises- was amazing! He was so knowledgeable about the foods and wines, and with how they were prepared . Highly recommend this place!", "author": "Roger Elliott", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqcW9mNmhnRRAB", "timestamp": "a year ago"}, {"text": "Not sure why this place has such ratings. The ambience is pretty average. We ordered beef angus and sirloin steaks and they were served with fries without any veggies. Quite chewy, nothing really special.", "author": "Ilja Bobkevic", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURnbnVMNjNRRRAB", "timestamp": "11 months ago"}, {"text": "The octopus was tasty. The ingredients fresh. Very fast and good service.", "author": "Sven “knorke” Teresniak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZX05YaGVnEAE", "timestamp": "6 years ago"}, {"text": "Not sure why this place has such ratings. The ambience is pretty average. We ordered beef angus and sirloin steaks. Quite chewy, nothing really special.", "author": "Karesnik Kyrisnik", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3MV9HbWtRRRAB", "timestamp": "10 months ago"}, {"text": "Amazing food\\nDefinitely recommend", "author": "christine samaan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIallTSnF3RRAB", "timestamp": "a year ago"}, {"text": "Everything has been at superlative, from the dishes’ spectacular serving and exemplary behaviour of los camarones, to the incredible taste made of the most inspired combinations of the best ingredients. Prices are higher than the average, but the quality of the entire experience totally justifies them. By far no. 1 restaurant in Las Palmas.", "author": "Andra Elena Petrescu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcmM2ODNBRRAB", "timestamp": "a year ago"}, {"text": "Thanks to Mario & Moises for looking after us so well last night. It was truly a dining experience! The food was absolutely superb and the choice of wines excellent. Our party of 7 all thoroughly enjoyed it. The presentation and care taken over the food was also excellent. An evening to remember, thank you.", "author": "Tim Matcham", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlbzREVXZBRRAB", "timestamp": "3 years ago"}, {"text": "Very delicious and outstanding service! Highly recommended place.", "author": "Urban Scribe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeE1taE5BEAE", "timestamp": "2 years ago"}, {"text": "Nice calm n quiet place to have good food", "author": "Suresh Jangid", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWSVEzcEtSMkpxYUVsYU4yOXlWRFZxTTNCSFNVRRAB", "timestamp": "6 months ago"}, {"text": "Such a shame. My friend told me this was a great place. The reviews mostly confirmed this. So we arrived Sunday lunchtime. \\"Is there a table\\" we asked the waiter. He looked right through us and turned round and walked back inside. We thought maybe he was stressed, hard of hearing, or both. So we figured we'd try again. About 5 minutes later another waiter arrived to clean the table. We asked again. With a hugely irritated scowl he said \\"I'm busy. You need to wait. I'm busy!\\" Such a shame as I said. A simple smile and \\"I will get to you as soon as I can\\" should have been the response. We left. They won't miss us - but hopefully some staff training won't go amiss. Sadly, I think it will!", "author": "Pierre Wilter", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNUdF8zbGhnRRAB", "timestamp": "Edited a year ago"}, {"text": "Exceptional. In every sense.\\nFood is amazing, service is great, including eventually some special attention by the very owner, who really is in tune with the experience he wants to offer to his customers.\\nPrices quite fair considering the quality you get.\\n\\nVery much a \\"must try\\" in Las Palmas", "author": "Billy Blue", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0M3YtNlRBEAE", "timestamp": "a year ago"}, {"text": "Incredible food and I would love to come back here everyday if I could! I loved how they cut up and mixed the salads for you as well - a nice touch. Loved all the food and I would fully recommend to anyone coming to visit the island. Thank you for a lovely experience!", "author": "Jo K", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROX05YUlNREAE", "timestamp": "2 years ago"}, {"text": "Was in Las Palmas for over three weeks & this was the nicest food by far. I had the tuna & the cod. Beautiful. The waitress was amazing very attentive & helpful. Five stars all round. I visited three times it was that nice.", "author": "Sonia Brady", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1MmRLUTRnRRAB", "timestamp": "2 years ago"}, {"text": "Perfect tastes! Not only the dessert but also main dishes", "author": "Tomasz Krupa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxMHRYNFNBEAE", "timestamp": "2 years ago"}, {"text": "Absolutely mind blowing food, starters and main dishes. Fried prawn with cream cheese as starter was top notch. I had grilled octopus as main, and it was delicious. We were wanting to have dessert, but we were so full (due to generous portions) - hence we gotta come back!! Service was also excellent. Recommended from someone who is picky about their food.", "author": "Thorvald Nilsen Myhre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbElhOWJBEAE", "timestamp": "4 years ago"}, {"text": "Very good value and interesting food. We came here on two occasions. The setting is reasonably informal (we reserved on both occasions but did not need to). Service is very friendly and the menu is available in English.\\n\\nParticular highlights were the pulled pork tacos (in salad) as well as the steak. The chocolate party dessert was also great (although a lot of chocolate, maybe one to share). We found the value-for-money here excellent.", "author": "Louise Adams", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5cUpEaFh3EAE", "timestamp": "5 years ago"}, {"text": "This is an amazing restaurant. The menue is creative, the taste is great and it's beautifully arranged. Service is also top par. We have been in Las Palmas for two weeks and visited a new retaurant every day. Rincon de Triana is the only one we went twice!", "author": "Arne", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMbWZickdBEAE", "timestamp": "a year ago"}, {"text": "Spanish cuisine at its best. Reinterpretation of classics in a tasteful and decently priced experience, you will impress your partner. Choose this place with no second thoughts.", "author": "Andrei Popov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdzU3RlBBEAE", "timestamp": "a year ago"}, {"text": "Vert excellent and great experience! I recommend it 100%", "author": "jihane", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKNmJEWkpREAE", "timestamp": "2 years ago"}, {"text": "We had a great experience at this restaurant. The waiters are very friendly, the food and wine were of excellent quality and many dishes were finished at the table, which made the whole dinner an exciting experience. Despite the high quality, the atmosphere is relaxed and I can fully recommend this restaurant.", "author": "Johanna Elena Kasparick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCek8zU1pBEAE", "timestamp": "3 years ago"}, {"text": "I don’t have even words to describe how good it was, we were trying every evening a new restaurant at Las Palmas but nothing was really special until we came here . Start from service and food quality even in Michelin restaurants are not so good.\\nPlease tray a black Angus carpaccio with black truffles and ice cream also prawns with goat cheese and apricot jam😋😋😋😋and list can go on….. it was my husband’s birthday and we had perfect evening.", "author": "nona m", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSdmRqaC13RRAB", "timestamp": "2 years ago"}, {"text": "Perfect experience! Exactly what we were looking for to have a really good dinner for our last evening in Gran Canaria. We had the steak and the salmon and it was delicious! Also as a starter I really recommend the aubergine with honey! Top! We will definitely come again!", "author": "laura win", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMydE83ZF9RRRAB", "timestamp": "3 years ago"}, {"text": "This is a proper restaurant. Top class service, all staff were warm, welcoming and friendly. The food was second to none in Las Palma's perhaps the whole island.\\n\\nI highly recommend the gyozas.", "author": "Luis Dina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMy1yeTRRRRAB", "timestamp": "a year ago"}, {"text": "Outstanding, I can’t believe it’s so cheap.\\n20€ for a steak that can compete with a 60€ Chateaubriand!\\nAll meals have been really awesome and you receive a show only known from MICHELIN\\nStar restaurants.", "author": "Timo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNONlotT1pBEAE", "timestamp": "2 years ago"}, {"text": "Super meal. Great service and really great venue!", "author": "Jeremy OSullivan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYek9Ld0xBEAE", "timestamp": "a year ago"}, {"text": "Rented a car with my boyfriend and drove to Las Palmas from Puerto Rico. Searched on the internet after a nice restaurant in the area and found this one and wasn’t disappointed at all! The food was absolutely amazing! We started with fried prawn with cream cheese which was absolutely delicious. After that we got fried aubergine. Didn’t quite remember what the rest was, but that one as well was amazing! As a main we got the grilled squid and beef tenderloin which was amazing as well. Super friendly service also. The waiter was super helpful and explained every course. Got a really nice vine pairing with the beef! This is a must try for everyone traveling to Las Palmas! I’ll definitely come back next time.", "author": "Truls Bakken Bye", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtbElhbjF3RRAB", "timestamp": "4 years ago"}, {"text": "This is simply the best restaurant I have ever been to! From the service to the highest food quality, the attention to detail is second to none. If you just want unbelievably delicious food, the perfect portions, and quality service you must come Rincon de Triana.", "author": "Ronald Santos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkcktUSnp3RRAB", "timestamp": "a year ago"}, {"text": "First night in Gran Canaria and it has got off to a banger foodwise! Leaving this review before even paying the bill.\\n\\nReally good food, portions are generous and won't leave you hungry.\\n\\nThough, my boo would give a 4.9 just coz parts of it were a little too salty for her.", "author": "Mr J", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtN1pPc2l3RRAB", "timestamp": "3 years ago"}, {"text": "Nice staff. Very helpful. Really good vegetarian alternatives even though the menu does not say much.", "author": "Bore Sköld", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmM28zQU9REAE", "timestamp": "a year ago"}, {"text": "We came with no big expectations and were pleasantly surprised! Everything we tried there was super delicious - soup, fish, ham, deserts... The service very friendly & fast. The best meal I’ve had on Gran Canaria! Highly recommend", "author": "Varis Vagotins-Vagulis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVN2RPMmxRRRAB", "timestamp": "6 years ago"}, {"text": "The food was very good the service was good, however the price was too high compared with the other restaurants around.", "author": "Remus Avram", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2a0piU1F3EAE", "timestamp": "Edited 6 months ago"}, {"text": "A terrible experiencia. Pulpo was very overcooked. They salted all our food before. It was uneatable, salt was burning at our lips. We complained about this, but not any respond. Beside this all the food was swimming in a lot of oíl. We left the restaurant as Quick as possible. On the bill they charge us also for bread, we didn't ask for. This must be one of the best restaurants of Las Palmas. NEVER RETURN EVER. WASTE OF MONEY and destroying our day.", "author": "Sjors van Hoogdalem", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1clpIMjlRRRAB", "timestamp": "3 years ago"}, {"text": "Everthing was delicious i can recommend you the place", "author": "george parathiro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCcWVGWjRiek5rU1dGVllYQnlRMk5JYTJWVmJHYxAB", "timestamp": "4 months ago"}, {"text": "This restaurant is worth to visit.\\nThey take the quality of their dishes seriously. You will not be disappointed.\\nI repeated and I enjoyed as the first time as well\\n\\nI will come back !!", "author": "J S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaNU1TQUJnEAE", "timestamp": "2 years ago"}, {"text": "The best octopus I had in my life. The rest of the dishes were also really sublime. Probably twice the price of neighbour restaurants, but more than well worth it!", "author": "Jakob", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGJEM2dRRRAB", "timestamp": "4 years ago"}, {"text": "The food was not that good for how much we paid. The service was very good, very friendly, but I would not go again.", "author": "Clara", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNGFfNWJBEAE", "timestamp": "a year ago"}, {"text": "Good food and excellent service.", "author": "tadej pogacar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKWGFFUnFOM280UTNOWExVOUZjbXA0ZVU0MFkzYxAB", "timestamp": "a month ago"}, {"text": "Honestly an absolutely incredible experience. The owner came out and described each part of our meal and every part was as delicious as each other - would highly recommend to anyone.", "author": "Dan Jones", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNTZqRFJREAE", "timestamp": "2 years ago"}, {"text": "Our dinner started with carpaccio swimming in olive oil and ice cream. What a disaster. It was fridge cold meat with about 1 dl olive oil and ice cream. Second starter was mussel nest. Mussels tasted old and grainy like mussels in a tin can. I almost vomited after the starter. Then it was the main. We ordered octopus and it was way too over cooked. Had to chew small piece for a minute to swallow it. Octopus was hard like rubber. We told that to the worker who didnt charge us for the dishes. We were really hungry before going to this restaurant. We felt very sick after starters and couldn’t eat anything the whole evening. What a shame it turned out this way even we are both culinarist and love to have new and creative food experiences.", "author": "Ras G", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXb3RhQ09REAE", "timestamp": "3 years ago"}, {"text": "Best restaurant on Gran Canaria! The grilled octopus was amazing and even the crocettas were so much better than all variations I ever had before. Truely an experience!", "author": "Carina Fürst", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtcklDeGdnRRAB", "timestamp": "3 years ago"}, {"text": "The food was excellent. We really enjoyed the delicious and thoughtful details of every dish. The sangria was wonderful and the employees were really attentive.", "author": "Sophie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXcG9laU53EAE", "timestamp": "3 years ago"}, {"text": "Terrible, getting ill after our lunch. Rubbery pulpo, lots of oíl and salt. We asked if we get vegatables with our Meat. No, only patato's. But we could change it for vegatables. So we did. Uneatable, salt, salt, oíl and oíl. The patato's with the pulpo were not patato's, but a handfull cold chips from a saco from the supermarket, also swimming in lots of oíl. Easy \\"cooking\\" 👎After complaining at the waiter, no answer, nothing. We've to pay for all the terrible food, even more than on the menú!!! Probebly they try this because we don't speak spanisch yet . We live here, but never come back.", "author": "Sjors van Hoogdalem", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1N2JiTjZnRRAB", "timestamp": "3 years ago"}, {"text": "We had the sirloin steak and it was very tasty fine meat. They served it almost raw and then you grilled it at the table. Nice place.", "author": "Saga Liw", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHaXAyaEN3EAE", "timestamp": "4 years ago"}, {"text": "Very attentive service. All dishes tasted very good, the steak was cooked on point. Absolute recommendation.", "author": "Felix B", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWb3Ayc0ZnEAE", "timestamp": "2 years ago"}, {"text": "Very high quality!!!! Good food nice staff the only thing that would be great is a vegetarian option. I usually don't give perfect score to restaurants without it but the quality was so high that it is forgiven!!!!!", "author": "Julien Denos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxMmJUYUJBEAE", "timestamp": "4 years ago"}, {"text": "Great Night. Thank you.", "author": "Christos machlianis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqaXMyN0pBEAE", "timestamp": "a year ago"}, {"text": "We stumbled upon this place for dinner and it was honestly the most amazing food and drink! And great atmosphere ✨ highly recommend", "author": "Dagmara Bandura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsZ0t1eDFRRRAB", "timestamp": "2 years ago"}, {"text": "Amazing food with amazing service. Cant recommend this place enough 👌🏼", "author": "Brian Mc Namara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvd2N6cnZ3RRAB", "timestamp": "9 months ago"}, {"text": "Highly recommended restaurant **the scallop**", "author": "Sacide Karadaşlı", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncDktWXRBRRAB", "timestamp": "11 months ago"}, {"text": "Attentive and knowledgable staff, with good quality food with a bit of theatre, flamed and mixed at the table. Nice wine selection.", "author": "S McKie", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoc0wzbTZ3RRAB", "timestamp": "2 years ago"}, {"text": "Great food, dishes are sligtly less usual, and the overall quality is great. Highly recommended.", "author": "Alex Malgaroli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4dE1XaXhnRRAB", "timestamp": "2 years ago"}, {"text": "Amazing service, food and wine selection. Perfecto!", "author": "Sarah Hunter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfb2F2Tkh3EAE", "timestamp": "a year ago"}, {"text": "The food was fantastic and adventurous. The wine was amazing. The service even better.", "author": "SunnyNicky", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlOVpILXh3RRAB", "timestamp": "3 years ago"}, {"text": "Great food with even better service, best food i have eaten in gran canaria. Price / quality was even better then expected :)", "author": "Aziz Daluiso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlMWQtekJBEAE", "timestamp": "3 years ago"}, {"text": "Just had lunch here for the first time ,came highly recommended ,but totally spoiled by the noise y bad behavior of a child ,I’m surprised the restaurant and the parents allowed it ,I’m sure I wasn’t the only one who had their lunch ruined", "author": "tony byrne", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPaTdUSy1nRRAB", "timestamp": "3 years ago"}, {"text": "Extremely good restaurant, amazing food. Octopus & salad in particular.", "author": "Albert Triganon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6dGNiak5BEAE", "timestamp": "a year ago"}, {"text": "Really delicious, high-quality menu, great wines and super friendly staff.", "author": "Assunta Walderdorff", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXOV9uWWNnEAE", "timestamp": "3 years ago"}, {"text": "Fantastic food, great wine and good service! Definetly worth a visit!", "author": "Robin Wied", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoMk1peVd3EAE", "timestamp": "2 years ago"}, {"text": "The food is delicious (interesting twists) and the service is friendly and great! Definitely recommend!", "author": "Yuliya Zemlytska", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMFpxMUxnEAE", "timestamp": "4 years ago"}, {"text": "Didn’t have chance to leave a tip, I’m still haunted by this all these years later. I’m sorry to this fine establishment. Too much chocolate in the flowerpot", "author": "Sanya Samad", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtb0pDcHR3RRAB", "timestamp": "3 years ago"}, {"text": "We only had drinks however they had a seection of different Bear's service was fine plus a nice location.", "author": "Mainly Spain", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtazZiNjZRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "There must be a magician working in the kitchen , everything is different from your expectations", "author": "Tamas Mayer", "rating": 5, "source": "dom", "timestamp": "9 months ago"}, {"text": "Great service. Excellent food. Very impressed and lived up to the reviews", "author": "Gerard O'Reilly", "rating": 5, "source": "dom", "timestamp": "5 years ago"}, {"text": "Fòod was 1st class was served by John great waiter highly recommend", "author": "John Mortimer (Kelpieman)", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Great food and perfect service. One of the best in Las Palmas", "author": "Giuseppe Perna", "rating": 5, "source": "dom", "timestamp": "4 years ago"}, {"text": "Restaurant was nice but unfortunately I got food poisoning from the sea food.", "author": "Laura Mitchell", "rating": 1, "source": "dom", "timestamp": "2 years ago"}, {"text": "Excellent restaurant, food is delicious and the staff is friendly.", "author": "Jean-Denis Zafar", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Perfect place to eat 😋\\n\\nStrongly recommended 👌 …", "author": "Turk Telekom", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Great restaurant. Well worth a visit.", "author": "Ger kelleher", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Fabulous food. Variety, excellent taste.", "author": "Diana Spiczak-Brzezińska", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Great service, nice atmosphere & great food.", "author": "Trav eller", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Absolutely delicious octopus leg!", "author": "Paula Petcu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmd2JfM1VBEAE", "timestamp": "a year ago"}, {"text": "Great food and very friendly staff. Must try!", "author": "Cristian Ormeno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4cmZYd3VnRRAB", "timestamp": "Edited 5 years ago"}, {"text": "One of the best, perhaps the best on playa de las canteras.", "author": "Sophie Scheepers", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNseXNYYmdBRRAB", "timestamp": "2 years ago"}, {"text": "Great place to eat and very delicious", "author": "Erman Karaca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzcnVQYUhBEAE", "timestamp": "a year ago"}, {"text": "The iberico 5J, outstanding!\\nAbsolutely wonderful.", "author": "Göran Johanson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNscmI3aklREAE", "timestamp": "2 years ago"}, {"text": "Damn good restaurant, worth to visit", "author": "Ari Järves", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaVl1cjZ3RRAB", "timestamp": "3 years ago"}, {"text": "Perfect service and very tasty food!", "author": "Tami Brink", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdS1pbzRBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent food, friendly service!", "author": "Rita Ahonen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNW9yY0FnEAE", "timestamp": "6 years ago"}, {"text": "Fantastic food and very good service", "author": "Don Dubbsen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXeUtXd1NREAE", "timestamp": "3 years ago"}, {"text": "Good food, stock service", "author": "Dávid Simon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtOXI2aXV3RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Amazing food!", "author": "Marcos Oliveira", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIbXBDWGtBRRAB", "timestamp": "a year ago"}, {"text": "Don’t miss this wonderful place!", "author": "Aliaksei Vladyka", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPb05Xc2Z3EAE", "timestamp": "3 years ago"}, {"text": "Amazing food..", "author": "Lars Jørgen Nilsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXd0txdnpBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent as always", "author": "Bhikhu Vadera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXeXQ2YUN3EAE", "timestamp": "3 years ago"}, {"text": "Excellent !", "author": "Del Gui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5NzRUV2RnEAE", "timestamp": "a year ago"}, {"text": "Rincón de Triana situé à deux pas de la plage. Ici, pas de simples amuse-gueules, mais des plats de grande qualite, poulpe, gyoza porc cuit à basse\\nLa cuisine est d'une qualité exceptionnelle et absolument délicieuse.\\n\\nL'excellente carte des vins et le service attentionné et chaleureux, avec un personnel toujours prêt à donner des conseils et explications.\\nEn résumé, une adresse incontournable !", "author": "Régis Routier", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CMGMxQnNMVEpVY1ZKNk1GOVNkVUpYTm5aUlZXYxAB", "timestamp": "a week ago"}, {"text": "Von außen wirkt das Restaurant klein und eher unscheinbar – aber genau das macht den Überraschungseffekt umso größer. Innen erwartet einen exzellenter Service und eine Küche auf richtig hohem Niveau.\\n\\nSowohl die Vorspeisen als auch die Hauptgerichte und ganz besonders die Nachspeisen waren durchweg ein absoluter Volltreffer. Man merkt sofort, dass hier mit Anspruch, Können und Liebe zum Detail gearbeitet wird.\\n\\nIch habe mich für die Empfehlung des Hauses, den getrüffelten Fisch, entschieden – und das war eine hervorragende Wahl. Perfekt gegart, großartig abgeschmeckt, absolut stimmig. Ein echtes Highlight war zudem, dass einige Speisen direkt am Tisch mit dem Brenner den letzten Schliff bekommen haben – nicht nur optisch beeindruckend, sondern auch geschmacklich sinnvoll eingesetzt.", "author": "Jens Schneider", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tocmJuTkdXVTB3WVhoWE9VRlFjME5XTVVkdk1VRRAB", "timestamp": "4 weeks ago"}, {"text": "Destacable los postres (sobre todo \\"la fiesta de chocolate\\"). Carne muy sabrosa, cachopo bastante rico. Precios bastante caros y local muy dejado. Necesita el local de forma urgente una pequeña reforma, muchas paredes con pintura desgastada, muchas manchas, el baño tenia hasta la tapa rota de la vasija.", "author": "BR", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Gd1gzQlVjV1p5YjJOS1EyOWpabmhuTFRCcWMwRRAB", "timestamp": "a week ago"}, {"text": "Loistava paikka, jonne saimme pöydän ilman varausta. Erittäin hyvä ruoka, loistavat viinit, palvelukin ensiluokkaista. Yksi reissun parhaista ravintoloista.", "author": "Sami Garam", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Kc1drbHFNM1ZVWlY5QlFVOTVTR0o0UzFwVFlYYxAB", "timestamp": "a week ago"}, {"text": "Una absoluta vergüenza.\\n\\nFui con mis amigos y comimos un menú de 50 euros. 50 euros. Decir que nos sacaron jamón, huevos estrellados, tartar de salmón, gyozas... todo muy bien sobre el papel, pero la realidad es que se trataba de una estafa dada la cantidad de comida que nos dieron por 50 euros, repito, 50 euros.\\nDejo fotos para dar fe de lo que hablo, para que la gente no caiga en la misma estafa.\\nRación de bacalao, del tamaño de un pincho. Recalcar que este fue el plato principal del menú de 50 euros y me traen un miserable pincho.\\nPostre: tarta de chocolate. La porción y un corcho al lado para que evalúen ustedes mismos el tamaño ridículo del trozo que nos sirvieron. Indignante, cuanto menos.\\nUna absoluta falta de vergüenza.\\nNo volveré.", "author": "Pepelvis", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRMlpGaEtiV2d3VW1oNmVscGhYMlpoU1U4dGRFRRAB", "timestamp": "4 weeks ago"}, {"text": "Io e la mia ragazza abbiamo cenato qui invigliati dalle buone recensioni e non siamo rimasti delusi.\\nCibo delizioso, servizio eccellente e ottima carta dei vini.\\nConsiglio vivamente i ravioli di maiale e la guancetta brasata.\\nTorneremo sicuramente, uno dei migliori locali di Las Palmas!", "author": "Alessio Tonin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201SVVITmZjMjFQVFRsTVoyMU5PVFpxWm5OMlVWRRAB", "timestamp": "6 months ago"}, {"text": "Buen restaurante, donde el servicio se sintió muy familiar y a pesar de que no fue un servicio excelente pensamos que cumplió las expectativas, todas las comidas estuvieron muy ricas pero sin dudarlo recomendamos la tarta de queso casera.", "author": "Josue leonardo Fernandez Dominguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KVFkxZEdVRFZQYlVneFpUTmxObHBhTTBOaGIwRRAB", "timestamp": "a month ago"}, {"text": "Ein scheinbar unscheinbares Restaurant, ein paar Schritte von der Promenade entfernt. Das Essen dort ist ein Traum. Dazu freundliche Kelner und ein uriges Ambiente. Wir waren schon paar Mal da und kommen gerne wieder.", "author": "Izabela Jobda", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSSk0ySTNlVFE0WTNScmJXWmpOSHBoWDIxVWFsRRAB", "timestamp": "a week ago"}, {"text": "Nos encantó todo lo que probamos: mezclas de ingredientes curiosas pero muy bien combinadas, especialmente los platos del chef. La única pega fue la espera entre plato y plato, ya que íbamos compartiendo y a veces se nos hizo larga la espera.", "author": "Carmen Chen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUFlteDRNa2hOZUdKUFprUkJMVWxNTkVkRlVYYxAB", "timestamp": "5 months ago"}, {"text": "Mmmm, cena poco convincente… Avendo letto così tante esperienze positive, ci aspettavamo molto di più…\\nIo ho preso uno dei pochi piatti vegetariani, un rotolo di melanzane e formaggio che era abbastanza buono, anche se forse c’era troppa salsa al miele che ha reso il piatto un po’ stucchevole.\\nIl mio compagno ha preso la tartare di salmone con spuma al mango che gli è piaciuta (anche se aveva molto aglio/cipolla), mentre il maialino arrosto bocciatissimo. Aveva un gusto amaro e anche le patate di contorno non erano niente di che.\\nIn generale cena mediocre, peccato.\\nI camerieri sono simpatici e disponibili.", "author": "Elena Rollini", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOS05XMWxMVWh4VGt0UFUxWktiMk5yYTNwak1YYxAB", "timestamp": "a month ago"}, {"text": "Ein besonders gemütliches Restaurant mit einem hervorragenden Service - danke an Jesus (und das Team), der uns sehr freundlich, kompetent und dezent den ganzen Abend begleitet hat. Das Essen ist von sehr guter Qualität- wir hatten u.a. die Schweinebäckchen in einer Rotweinreduktion und die frittierten Sardinen mit Pommesfrites. Knusprige fein geschnittene Pommes findet man auf der Insel selten- hier gibt es sie. Das Fleisch war butterweich, die Soße geschmackvoll, die Süsskartoffeln dazu vielleicht etwas zu weich. Wer gut spanisch Essen gehen möchte und wem das Ambiente wichtig ist, ist hier gut aufgehoben.", "author": "Nathalie Schröder-Langbehn", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3XzRIZEVBEAE", "timestamp": "10 months ago"}, {"text": "Für mich war es gestern ein besonders Erlebnis dieses Restaurant zu besuchen, und es war sehr amüsant den als wir ins Restaurant kamen wurden wir von anderen Gösten schon hingewiesen das es sehr lecker ist. Und ich kann sagen, das war das beste Steak was ich bisher in Europa gegessen haben unglaubliches Fleisch perfekte Maserung und die Vorspeise Tunfisch Salat war ungewöhnlich lecker - es war insgesamt traumhaft das Essen.", "author": "Peter Ampfl", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNElHck5BEAE", "timestamp": "9 months ago"}, {"text": "Llegamos aquí en el último día de nuestro viaje. Y bendito momento. Calidad impresionante, el servicio impecable nos atendieron super rápido y con mucho cariño y detalle. Y la comida...puff indescriptible", "author": "cintia mena brenes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRdGNXRjZOMEpZWkZWWVNUQjFibEpIV0hWcU9WRRAB", "timestamp": "5 months ago"}, {"text": "Gran descubrimiento. Una carta muy variada y además con platos fuera de carta que van variando según temporada/mercado. El servicio fantástico, un trato muy personal y siempre pendiente de nosotros. Nos atendió Huber, además del dueño o maitre, y fue todo perfecto.\\nPor sacar un pero, la cerveza de barril es cruzcampo, pero sale bien tirada y fresquita.", "author": "alvaro gonzalez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201U05HbzBWM3BrVUVGclEzZ3pVRGxsT1d4dVlVRRAB", "timestamp": "a month ago"}, {"text": "Buen servicio y comida excelente. Nos gustó todo. Pedimos carpaccio de Black angus, bife de Black angus, tartar de salmón y de fuera de carta cherne gratinado a la trufa. De postre pedimos la torrija. Volveré.", "author": "Maria Jose Siesto Campaña", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOa0xUUmpkelZZTkRSbGMxWjFTakF3YTI5Q01WRRAB", "timestamp": "5 months ago"}, {"text": "Servicio excelente, carta cuidada y sobre todo creativa. Pedimos el guacamole, las zamburiñas que para mí fue lo mejor y las gyozas.\\nLa única crítica constructiva que tengo es que el acompañamiento del guacamole podría ser totopos originales en lugar de la fajita de trigo sin freír.\\nSin duda un indispensable si estás por la zona y te gusta comer bien!", "author": "Marta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCV1pVUTRObFZIVjJoblVrMWhhMVl5YzFGTVptYxAB", "timestamp": "6 months ago"}, {"text": "Reservamos para la cena de empresa. Los entrantes no estaban mal, pero plato principal (eligimos solomillo) en lugar de papas asadas cambiaron a fritos (bastante duros) sin avisarnos y sirvieron el plato casi frío, el solomillo tampoco no estaba a la altura. la presentación de comida fue un poco floja. Los postres muy pequeños raciones y de sabor diría 5/10. En general no recomendaría este lugar para eventos grandes, tal vez al dia normal (sin tanta ocupación del lugar como tenían) servicio es mas agradable y la comida también.", "author": "Dmitrij Dan", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WRU1sOXlaVUZFZW5kcWVGVnZXVzlaVUZSVlUwRRAB", "timestamp": "a month ago"}, {"text": "Tuvimos una cena familiar.\\nDe los pocos restaurantes que visten las mesas con mantel, últimamente ya no ponen ni individuales!!\\nEl servicio estuvo muy atento, pendientes de que todo fuera de nuestro agrado.\\nComo siempre, la comida exquisita. Platos originales con ingredientes de calidad. Además ponen buenas raciones.\\nBuena selección de vinos.", "author": "Matilde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUeHJfOEp3EAE", "timestamp": "Edited 6 months ago"}, {"text": "Un trato de 10 y la cocina al nivel del servicio ofrecido. En mi TOP están las gyozas de lacón, ensaladilla Rusa y lomo alto.", "author": "Rubén J. F.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKVFUzUk5MVGswVG1STVFVRm1iR3hSWmpkYVpHYxAB", "timestamp": "4 months ago"}, {"text": "Ya fuimos varias veces a cenar ally.\\nPero la última vez no quedamos decepcionado. Primero por el servicio de los camareros . Falta de atención y segundo nos dimos cuentas que lo platos que salía no eran iguales. Pedimos huevos rotos y tenía 4 lonchas de jamón.\\nLa mesas al lado mismo plato tenias mas jamón que nosotros. Más pedimos mas platos y también pasó lo mismo. Parece que hay distinción de clientela. Pero al final los platos tiene los mismos precios par todos. Almeno esperó.", "author": "Daniel", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sclgwMTJha2hpUVd0YWFXNXhkbnBwUTBadFFtYxAB", "timestamp": "2 months ago"}, {"text": "Comida excelente y diferente, personal muy atento y buena calidad precio. Fuimos a cenar 4 personas y con vino sale aprox 40€ por cabeza.\\nPedimos anchoas y chupachups de gambones fuera de carta, y también probamos jamón ibérico, zamburiñas, pan bao de cochino negro, gyozas y un carpaccio de black angus, este último ha sido el plato estrella para nosotros, la mezcla de sabores nos ha dejado alucinando, es espectacular así que no dejen de pedirlo! Repetiremos encantados!", "author": "Sara Montalbán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cHI2eS1RRRAB", "timestamp": "a year ago"}, {"text": "Exquisita comida. Calidad precio perfecto. Pedimos ensalada de ventresca, fusión de sabores excelentes, pan bao de pulpo, zamburiñas, repetimos este plato ya que era una explosión súper placentera en nuestros paladares, por último salmón y carrilleras.\\nEl trato de los camareros explendido. Sin duda alguna merece la pena y si tenemos oportunidad, volveremos.\\n40€ cabeza (sin vino) somos de buen comer y salimos satisfechos.", "author": "Iraide Esteban", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMcm9fSXRRRRAB", "timestamp": "a year ago"}, {"text": "La verdad q todo muy bueno. Me ha encantado. El trato muy bueno. Gracias y volveré a repetir.", "author": "Felipe Rafael Barrientos Sanchez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5ZlRWOUthbmxYY2pRNE0zZ3plRmxIYld4cldYYxAB", "timestamp": "5 months ago"}, {"text": "Al meter no le rentaba dar mesa a una persona sola, y en vez en media hora de espera estuve una hora y cuarto cuando tenía dos mesas libres.\\nMe quería dar puerta cuanto antes para tener mi mesa libre y en vez de asesorarme cuando le iba a pedir un plato,casi me obliga a pedir los taquitos de merluza sin espinas ( que sí las tenían, y que no era más que un filete, me atrevería a decir que descongelado, cortado en dados y rebozado ) que nada más sentarme me intento vender, sin haber visto la carta previamente.\\nDicho filete de pescado partido en trozos me cobraron como si hubiera pedido la merluza o pescadilla entera 25€.\\nPorque no hay menos estrellas...\\nHaber si aprenden que uno más uno suma...", "author": "Olivia Rincón García", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxNFdrWm1jMEpYTjBWa1dWVlNWM3BVVm5wQ1UzYxAB", "timestamp": "2 months ago"}, {"text": "Recalcar que será una crítica constructiva ya que el grupo que fuimos anoche a cenar solemos darnos un capricho de vez en cuando en dicho restaurante, el cuál es muy recomendable.\\nEmpiezo a relatar la aventura ... llamé para reservar el jueves una mesa para 7 personas cena, sábado 8 nov. Ok\\nLlegamos al lugar nos dicen que nos ponen en un anexo a 50 metros del restaurante habitual ya que no hay mesas disponibles. Creo que eso debería habérmelo dicho cuando hago la reserva pero bueno accedimos a cenar en dicho lugar.\\nLa sorpresa llega cuando vemos que toda la comida la traen del restaurante al anexo un camarero por medio de la calle unos 50 m ...\\nEl gerente ni el camarero nos ofrecen nada fuera de carta como suele ser habitual en el lugar la comida llega media fría y nos sentimos totalmente solos y abandonados en dicho lugar.\\nLa tardanza entre entrantes, primer plato demasiado por no decir que ni nos ofrecieron postres, esperamos 30 minutos desde que terminamos el plato principal pero nada ...\\nEntramos a cenar a las 20.30 y salimos a 11:40 ...\\nLa verdad nos fuimos bastantes descontentos ya que siempre hemos almorzado o cenado estupendamente.\\nMuchas gracias\\nSaludos cordiales", "author": "MARIO ALEXIS NARANJO HENRÍQUEZ", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsWFV6UjJhSE16TTFONVUyWkViRWQxU1ZCSlUzYxAB", "timestamp": "2 months ago"}, {"text": "Lugar exquisito tanto en la comida como el trato del personal. No podría quedarme con uno de los platos desde el tarta de salmón como los huevos rotos con carabineros que nos pedimos fuera de carta.\\nEl camarero que nos atendió de 10 nos recomendó muy bien y siempre muy atento. Felicidades por lo que están construyendo. Volveremos m.", "author": "dalia ortiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bExfbkJnEAE", "timestamp": "a year ago"}, {"text": "Restaurante al que acudimos recomendados con amigos. Resumen: ESPECTACULAR. El guacamole preparado en nuestra mesa, zamburiñas flambeadas también a nuestro lado que estaban riquísimas. Un tartar de atún que no puedes dejar de pedirlo 🙏. En fin, podría seguir hablando del pan bao, guiozas, etc pero es que todo está buenísimo. La atención de los camareros súper profesional y el precio muy muy correcto para lo que se come. Es sin lugar a dudas un restaurante que repetiré siempre que regrese a la isla. ¡Sigan así!", "author": "Néstor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMbzZXZGFnEAE", "timestamp": "a year ago"}, {"text": "Excelente restaurante, la comida es espectacular y el trato del personal jna maravilla. Uno de los mejores restaurante en Las Palmas de Gran Canaria. Cuentan con una carta diferente con un toque personal pero de un gusto exquisito. El trato del personal es inmejorable. Toda una experiencia culinaria. Altamente recomendado.", "author": "Lorena Robaina Calderín", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oamJqbDRiMUowTXpneVlYRjROVWRsYlVkVlltYxAB", "timestamp": "3 weeks ago"}, {"text": "Atención,comida y ambiente impecable. Muy agradable, poco ruido, estás al lado del paseo de la playa donde puedes comer en sitio discreto, íntimo y agradable. Mantel y servilletas de tela que parece que se nos olvida. Muy muy recomendable relación calidad precio. Mi felicitación a quienes nos atendieron y al a cocina, muy rico todo. No suelo valorar restaurantes. Espero que esto no haga que suba los precios 😉. Si vuelvo a la isla, espero poder permitirme el poder ir de nuevo. :)", "author": "Roberto Hermoso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOX19PNG5nRRAB", "timestamp": "2 years ago"}, {"text": "Restaurante donde nos atendió un camarero muy amable y que nos ayudó a elegir nuestros platos. Probamos de primero las dos gyozas, no sabría con cuál quedarme...\\nDe segundo yo me decanté por el cerdo 5J, sonaba bien, pero es que sabía aún mejor.\\nSin duda un sitio muy recomendable.", "author": "Ernesto José González Veiga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkbnA2SlpnEAE", "timestamp": "a year ago"}, {"text": "Fantastico! Cibo di ottima qualità, vini molto buoni, rapporto qualità/ prezzo è ottimo! La professionalità e la gentilezza dello chef e dei camerieri ottima. Consiglio di provare il famoso Guacamole che è preparato è servito al momento! Lo consiglio a tutti e noi sicuramente ci ritorneremo!", "author": "Maryna Sudarikova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtaU56NERnEAE", "timestamp": "3 years ago"}, {"text": "Wir waren heute mit 8 Personen hier zum Lunch. Das Essen war fantastisch, ebenso der Service und der Wein, zu empfehlen der Roséwein, richtig gut. Zum Abschluss haben wir uns ein leckeres Dessert gegönnt, lecker! Das war es Wert, wir kommen definitiv wieder.\\nMan sollte vorher reservieren :)", "author": "An LL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQbl82MmF3EAE", "timestamp": "a year ago"}, {"text": "Una vez más no nos defrauda. Sigue manteniendo el nivel desde el primer dia. Editado: Volvimos al restaurante con la familia y de nuevo, una experiencia maravillosa. Nos dejamos aconsejar y pedimos tacos de pulpo y cochino negro, huevos estrellados con jamón recién cortado, zamburiñas y una carne muy rica. Los postres al nivel de la comida y la atención como siempre de 10. Volveremos seguro", "author": "Berto Tabares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwbmNiVmdRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Experiencia exquisita en su restaurante, la comida con unos contrastes de sabores brutales y sus camareros muy amables, explicando cada plato y con una atención muy rápida y sin faltar ningún detalle. Repetiremos, pedimos pan bao de cochino negro canario muy sabroso, gyosas con un sabor brutal, zamburiñas cocinadas con una salsa de ajo espectacular que la fundían en directo, piruletas de langostino crujiente con queso de cabra muy buenas, cangrejo rebozado con huevo y pimientos una delicia. Para terminar un postre de tarta de queso no llegaba a ser cremosa. Acompañado con dos cañas y una botella de vino Rubicon de Lanzarote, nos quedó muchos platos por probar , volveremos.", "author": "Yurena Morales Verona", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwMV8tbkRnEAE", "timestamp": "2 years ago"}, {"text": "Ubicación buena. Trato del personal excelente. Producto de calidad. Cantidad de media a poca pero con muy buen sabor. Los platos un domingo para almorzar, salían lentos para nuestro gusto, las copas de vinos se consumían prueba de ello. Para mi gusto y por las cantidades, diría q mejor les cenar. Mucha suerte para este negocio que lo merece", "author": "Edu Padrón", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCazd2VU53EAE", "timestamp": "3 years ago"}, {"text": "Cada plato iba in crescendo. De entrantes, ensaladilla qué nos emplataron con delicadeza, unas Gyozas y garbanzada, acompañado de un buen vino.\\nPara culminar un cachopo que estaba riquísimo. De postre fiesta de chocolate.\\nEl servicio profesional y buen ambiente.\\nNos mimaron mucho.", "author": "DJ L’ARTIGAS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfd3Z1QnZnRRAB", "timestamp": "a year ago"}, {"text": "Buen restaurante, situado cerca del paseo de las canteras con un género magnífico. La comida ha superado la expectativa con una muy buena fusión en los platos y una sensación de explosión de sabores. El equipo completo del restaurante han sido unos profesionales. Nos hemos sentido muy a gusto.\\n\\nCumpliendo en todo momento las medidas covid.", "author": "Belen Benitez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeUxLaTlnRRAB", "timestamp": "3 years ago"}, {"text": "Sencillamente el mejor restaurante que he visitado en mi estancia en Gran Canaria. Os voy a explicar en la medida de lo posible la grata experiencia que nos llevamos mi pareja y yo en este brillante lugar Gastronómico. En el Accueil nos recibió el chef, el cual nos acompañó a la mesa, gesto desde mi parecer muy apreciable. Seguidamente nos atendió Moisés un afable profesional del servicio en sala, nos explicó las sugestiones que había fuera de la carta y sin duda hizo de nuestra experiencia muy enriquecedora. Hablaré de los deliciosos manjares que me lleve a la boca, en primer lugar pedimos un tartar de salmón con un marinado especial del chef acompañado de una espuma de mango y cebolla fresca, una mezcla de sabores que siguiendo las instrucciones de Moisés deleitamos sin duda alguna. Seguimos con un mix de gyozas de cangrejo desmenuzado con soja y de morcón ibérico, setas y crema de kimichi ahumada y terminamos con un cachopo rebozado com panko que simplemente increíble. De postre una Torroja casera y una tarta de queso también casera con un sorbete de mango que nos termino de hacer explotar la cabeza. Hizo varios acabados de platos a la vista del cliente cosa que hoy en día solo se ve en los mejores establecimientos de restauración. La experiencia fue magnífica, les ánimo a que sigan ellos y su equipo ofreciendo este tipo de experiencias gastronómicas a sus clientes porque de verdad se nota que aman su profesión y eso es maravilloso.\\nA continuación adjunto alguna foto de los platos servidos.", "author": "Igor Rosell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaX00zbDhBRRAB", "timestamp": "2 years ago"}, {"text": "Espectacular descubrimiento, y las siguientes visitas han mantenido el nivel.\\nPlatos variados y muy elaborados, al que le guste el vino lo tendrá difícil para elegir entre tanta variedad. El jamón ibérico espectacular. El servicio al nivel del restaurante.\\nUn acierto y felicitar a la dirección.", "author": "yonathan García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xRek9GOW1OMGRKVGtoUlduTktSbmhPVTIxNGFGRRAB", "timestamp": "3 months ago"}, {"text": "Espectacular, para repetir sin dudarlo. Fuimos a comer siguiendo las reseñas de Google, y la verdad que ha sido el restaurante en el que mejor hemos comido de toda la isla, acierto absoluto. Nos explicaron cada plato. Para repetir: las zamburiñas, la ensalada de burrata con fresas, el solomillo y el hojaldre con plátano 🤤 Muchas gracias!", "author": "Andrea Urbano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOWlJFZEtNVnAyWXpNMmVIUmhVR1JKUVZwVFpsRRAB", "timestamp": "3 months ago"}, {"text": "Fuimos a comer 4 personas y pedimos: croquetas variadas, pan bao con carne de cochino negro y un cachopo para los 4. Muy rica toda la comida y excelente calidad precio. Trato del servicio muy bueno. Totalmente recomendable, repetiremos seguro.", "author": "Alejandro Bolaños Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNeWlrOEd1MXRfUFR3EAE", "timestamp": "8 months ago"}, {"text": "Ich besuche das Restaurant seit mehreren Jahren und es ist einfach perfekt!\\nUmbedingt vorher reservieren da kleines Lokal und sehr beliebt, ein muss, wenn man in las palmas ist!\\n50 Meter von der Strandpromenade gibt parkhäuser in der nähe", "author": "Dani Berardi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRenMzb3RRRRAB", "timestamp": "10 months ago"}, {"text": "Me animaron a visitar este restaurante las magnificas reseñas que leí en Internet, porque no conozco demasiado la zona, y con muchas ganas de probar su cocina, pero mi experiencia no fue la esperada. Pese a que decidimos pedir de la carta, a mi esposa le ofrecieron fuera de carta un pescado de la zona (cogote de cherne), que aceptó pensando que sería el plato de la noche, pero acabó siendo el plato que nos dio la noche: llegó entero, sin ningún tipo de salsa ni aliño, simplemente cocido y como sola guarnición un puñado de patatas fritas de bolsa puestas a un lado. Como el pescado sobresalía del plato, el camarero le preguntó si lo limpiaba, obviamente dijimos que si y se lo dejó deshecho totalmente en dos platos. El resultado, un plato que debía ser una exquisitez convertido en algo decepcionante teniendo en cuenta que costaba 27,95€. El resto de platos que pedimos, el tartar de salmón, las costillas de Nakama y el cerdo ibérico arreglaron un poco, sólo un poco, la noche. La atención recibida fue muy regular en general, en un ambiente tenso y poco agradable, aunque destaco que solo uno de los camareros, un muchacho joven que nos atendió al final, fue educado y atento en el trato. El disgusto fue tal que preferimos no pedir ni postre. Ojalá puedan mejorar tanto la calidad de los platos como el servicio, porque el lugar tiene potencial y una buena ubicación. Por supuesto buscaremos mejores alternativas", "author": "Manuel Barrachina", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGbGJWZFFXSE16WkVGSmJrMVpOMXAyY1ZGWVQwRRAB", "timestamp": "2 months ago"}, {"text": "02/02/2024: Indispensable, autóctono , no turístico…y toda una sorpresa! A 50m de la Playa de Las Canteras local modesto pero con servicio y material prima muy por encima de los estándares de la zona. Tengo la impresión que van a por un reconocimiento Bid Gourmand o una Estrella Michelin. Lo recomiendo y seguro que vuelvo. (Imágenes: Jamón cortado a cuchillo, huevos rotos con carabineros, gyozas de morcón, steak tartar al gusto, torrija) Un gran detalle el de cantar los platos fuera de carta también mencionando el precio, muchas gracias!!", "author": "Jaime Pulido", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0dV9iOThRRRAB", "timestamp": "a year ago"}, {"text": "Absolut 5 Sterne!!! (...auch gerne mehr wenn's möglich wäre!)\\nDie Wahl auf dieses Restaurant traf ich nach einer der vorherigen Rezensionen, die war sehr viel versprechend, und es war auch so!\\nWir sind spontan, an unserem letzten Urlaubstag in dieses Teil von Las Palma gefahren auch mit dem Gedanken bei Ricón de Tirana zu speisen, (eine Reservierung hatten wir nicht), und es hat aber doch geklappt, wir bekamen wohl den vorletzten Tisch für 2.\\nDas Ambiente ist sehr nett und mit Klasse, nette Begrüßung und wurden zum Tisch begleitet. Nur sehr kurz gewartet bis der Kellner nach Getränken fragte, danach nette Hilfestellung bei der Auswahl der Speisen, es gibt die Speisekarte in Spanisch, Englisch, und Französisch. aber mit Hilfe des Kellners war es kein Problem die richtige Wahl zu treffen. Das Essen war wirklich vorzüglich, wir hatten eine Vorspeise mit Gambas und Kichererbsen, und als Hauptgericht 2 mal Fleisch, beides perfekt wie gewünscht zubereitet, dazu Salat und frittierte Kartoffelstücke, zum Nachtisch hat der \\"Platz\\" nur für ein Kaffee Cortaddo Leche Leche gereicht!\\nSuper satt, und sehr zufrieden!!\\nDanke, wir werden es gerne weiterempfehlen!!", "author": "Thomas R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoeTVuVUFREAE", "timestamp": "2 years ago"}, {"text": "Una cena estupenda. Al lado de la playa de las Canteras, encontramos este restaurante que no tiene nada de turístico. Menaje excelente, servicio de 10 y la comida perfecta. Aconsejadas por el camarero, pedimos huevos con patatas y carabineros, y empanadas de ternera lechal, ambos fuera de carta. Las gyozas y el ladrillo de berenjena, buenísimas. Todo para compartir y emplazado individualmente. 3 cañas grandes, bien tiradas, un vino de rioja, pan, todo ello por menos de 85€. Me pareció genial de precio para esa calidad tan buena.\\nSin duda muy recomendable y para repetir", "author": "G. L.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqOVBLUXhRRRAB", "timestamp": "Edited a year ago"}, {"text": "Algo diferente en pleno paseo de Las Canteras. No recuerdo la procedencia del Jamón Ibérico, la foto no hace justicia a su increíble sabor. Muy buenos productos. Personal amable, explican bien los platos y local con encanto. Si quieres sorprender y que se salga fuera de lo normal, es tu sitio.", "author": "Sandra Zafra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXN0xtV1hBEAE", "timestamp": "3 years ago"}, {"text": "No te lo puedes perder! Cuando pensaba que había probado lo mejor… llegaron los postres!\\nEnhorabuena.\\nAtención impecable, relación calidad/precio más que razonable.\\nMe encanta que haya sitios donde se cuidan los detalles.\\nVolveremos seguro!", "author": "Raquel Herran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNGczRTdFpBEAE", "timestamp": "2 years ago"}, {"text": "Parece ser, que nuestras opiniones, de los que colaboramos aportando nuestras reseñas, no estamos tan equivocados. Magnifica atención y amabilidad, como viene siendo la costumbre en toda la isla. Y muy buena comida y de calidad. Gyozas de changurro, aunque la forma no era la habitual de unas Gyozas..jamón ibérico de nivel, bacalao en tempura...CON BACALAO y muy bueno, y Bife de ternera..y un postre delicioso....perfecto todo.", "author": "CARLOS GUIRADO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaN2J6V19BRRAB", "timestamp": "2 years ago"}, {"text": "Allez-y les yeux fermés, ce restaurant est une véritable pépite !\\nLa nourriture est excellente du début à la fin : nous avons commencé par un jambon ibérique savoureux, suivi d’un poulpe grillé parfaitement cuit et d’un steak Black Angus tendre et goûteux. En dessert, nous nous sommes régalés avec un millefeuille à la banane (incroyable !) et une spécialité locale proche d’une crêpe, servie avec une boule de glace, un vrai délice. Le tout était accompagné de deux demi-bouteilles de vin, qui se mariaient parfaitement aux plats.\\nLes serveurs, étaient très attentifs et souriants.\\nEt pour couronner le tout, le digestif nous a été offert au moment de l’addition : un rhum au miel, présenté par le serveur comme de la “vitamine” — généreux, convivial et délicieux !\\nUn restaurant qui allie qualité des plats, service impeccable et ambiance chaleureuse. Nous recommandons sans hésiter !", "author": "Shirley Fatela", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1QlUyVnpOa2hSUjBVeE1XSnZaRFkxYTNoRFYwRRAB", "timestamp": "5 months ago"}, {"text": "Todo perfecto, presentan los platos en la mesa y terminan de prepararlos delante de los comensales. Todo esta cuidado al detalle. Decoración bonita, buen vino y productos de calidad. Uno de los mejores restaurantes de la zona. El personal es muy amable.", "author": "Mónica Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSa18ydkF3EAE", "timestamp": "2 years ago"}, {"text": "Hoy hemos cenado en este restaurante y nos ha encantado. Pedimos croquetas de jamón, bao de pulpo y cochino negro, huevos rotos con gulas y langostinos y gyozas. El postre era de manzana y helado. Volveremos para probar los platos que nos quedaron sin duda. El personal muy atento, de 10.", "author": "Grima", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4M05XSmxRRRAB", "timestamp": "2 years ago"}, {"text": "Voy muchas veces por cercanía, pero sobre todo, porque nunca fallan. Ambiente familiar, cercano, siempre recomendándote lo mejor. Fuera de carta siempre como opciones del día. Y los postres , deliciosos. La costilla a baja temperatura, los huevos estrellados…", "author": "Guadalupe Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKR1ZwNk8yeUlfN2pnRRAB", "timestamp": "8 months ago"}, {"text": "Ambiente agradable y servicio excelente. Te explican con detalle la elaboración de los platos y su origen. Pedimos guacamole y lo elaboraron delante nuestro. Sin duda si volvemos a Las Palmas repetiremos. Relación calidad precio correcta.", "author": "Mercè Reñé Panadés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPdnVHOFZREAE", "timestamp": "3 years ago"}, {"text": "Calidad en la comida, con buenas raciones.\\nBuen servicio y muy rápido,el camarero nos aconsejó muy bien y acertó.\\nPostres buenos pero poco variados.\\nBien. Para hacer otra visita.", "author": "JOSE ANTONIO LAF.", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4UGJsRmhSbTlSZFdkblJIaDZYMmxtTmw4emJHYxAB", "timestamp": "a month ago"}, {"text": "Excelente!!!!\\nEl Rincón de Triana no nos dejó indiferentes, es un restaurante muy acogedor y con un trato muy especial hacía sus clientes.\\nSu carta es variada y en sus platos se aprecia el cariño con el que los preparan.\\nPonen gran interés al tema de los alérgenos, en nuestro caso “ gluten free”.\\nEnsalada con espuma de manzana verde,Ensaladilla rusa con langostinos,Paté de secreto ibérico,Jamón ibérico de bellota,Pan bao de pulpo,Huevos estrellados con jamón ibérico,Costillas de cochino negro a baja temperatura,Steak tartar...y lo que nos queda por probar de su especial carta.\\nLa profesionalidad del personal no pasa por alto el conocimiento de la elaboración de cada uno de sus platos.\\nTampoco dudan en aconsejarte con sus vinos.\\nUna amplia carta de vinos.\\nGran calidad y gran servicio.\\n\\nSe recomienda hacer reserva, su ubicación es genial ya que está junto al paseo de Las Canteras y muy cerca del Parking Las Canteras.", "author": "Lidia Gil", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5Nk42WGJREAE", "timestamp": "Edited 9 months ago"}, {"text": "Almorzamos allí el uno de enero, estaba muy lleno, y aun así, el servicio fue estupendo. La comida nos encantó. Recomendable", "author": "Carmen Muñiz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWRE5VTk1TRkJrT0VoRlkzZFViR2xVWDJaRFFVRRAB", "timestamp": "a week ago"}, {"text": "Klein und eher versteckt liegt das Rinćon de Triana in einer Seitengasse an der\\nPromenade von Las Palmas. Der Service sowie das Essen verdienen mehr als 5 Sterne.\\nDie Bedienung war sehr nett und freundlich! Die Getränke waren innerhalb weniger Minuten da und uns wurde sehr kompetent ein Wein empfohlen der zu unseren jeweiligen Gerichten sehr gut gepasst hat und der unseren Geschmack sehr gut getroffen hat. Die verschiedenen Aromen der Gerichte haben uns verzaubert und das Essen war einfach ein Traum! Dieses kleine Restaurant ist auf jedenfalls ein Besuch wert!", "author": "Lisa John", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwbk1EMzVnRRAB", "timestamp": "2 years ago"}, {"text": "Caímos de rebote sin tenerlo previsto y salimos francamente contentos. El local tiene una decoración excelente y el servicio es atento y eficiente. La carta no es muy extensa pero suficiente. Los platos tienen una presentación muy lograda. La ensaladilla muy vistosa pero quizás lo más flojo de lo que pedimos. El bacalao en tempura muy logrado y sabroso. El solomillo ibérico una pena que lo sirvieran un poco frío porque perdió mucho sabor y los medallones quedaron algo duros. Y los postres un deleite en especial la fiesta de chocolate. Agradable sorpresa este restaurante donde sin duda repetiremos.", "author": "Rafael Morales", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcjY2WE1nEAE", "timestamp": "2 years ago"}, {"text": "Muy gratamente sorprendidos por este rincon en Las Canteras. Nos encantaron las Zamburiñas, el jamon y el camarón soldado de Mogan. La sama se les paso un poco y quedo un poco seca pero nada que no pueda arreglar un chorro de un buen aceite de oliva. Ademas tienen una excelente carta de vinos y buenas copas con las que acompañarlos. De postre una buena torrija casera.", "author": "Vic O", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2bTZTS1RnEAE", "timestamp": "a year ago"}, {"text": "Tässä on Canterasin yksi parhaimmista ravintoloista. Zamburinjat liekitettiin hienosti. Mielenkiintoisia alku- ja välipaloja. Monia aterianosia kannattaa ottaa jaettavaksi. Erittäin hyvä viinilista. Vahva suositus.", "author": "Jukka Vuorinen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRLXZpZDV3RRAB", "timestamp": "10 months ago"}, {"text": "Recomendable la garbanzada y las carrilleras. Buena carta de vinos a buen precio. La comida está bastante bien aunque el plato de croquetas me decepcionó bastante por la cantidad y el precio que tiene, eso sí, de sabor muy buenas.", "author": "Iván S.H.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0b3VYU2d3RRAB", "timestamp": "a year ago"}, {"text": "Spontanes Mittagessen zu zweit. Freundlich wurde ein Platz angeboten. Alle Speisen waren geschmacklich sehr gut, ebenso der Service.\\nAllerdings hätte ich etwas sättigendere Beilagen mir gewünscht.\\nSelbstgemachte Chips (vermutlich Topinambur) waren sehr gut. Zum Filet gab es ebenfalls feine frittierte Späne.\\nEinziger Wermutstropfen waren die sehr einfachen Aufbackbrötchen mit Aioli (Gruß der Küche), die zu je 1,50€ ohne Nachfrage berechnet werden. Für diese 3€ wäre eine Portion Kartoffeln zu den Gerichten passender gewesen.", "author": "André ScyFy", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURUbGNua0RREAE", "timestamp": "a year ago"}, {"text": "Buena opción si estás por la zona de Las Canteras.\\nComo puntos de mejora, dentro del comedor no había cobertura y te sirven y cobran el pan sin preguntar.", "author": "María García Álvarez de Sotomayor", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNneHFieXNBRRAB", "timestamp": "11 months ago"}, {"text": "Comida espectacular con un trato de nivel. El cochino nakama estaba brutal. No hacía falta ni cuchillo. El guacamole hecho al momento por el camarero un detallazo. La ensalidilla rusa estaba buenísima. La torrija muy muy rica y una gran porción.", "author": "Carlos Guerra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXbm96ZG5RRRAB", "timestamp": "3 years ago"}, {"text": "Das Essen ist von unglaublich guter Qualität und, im Gegensatz zu den meisten anderen Restaurants, sind die Gerichte in einer Originalität wie man sie selten findet hier.\\n\\nAbsolute Empfehlung für ein kulinarisches Erlebnis das msn nicht so schnell vergisst!", "author": "Martin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNveXF5MUp3EAE", "timestamp": "9 months ago"}, {"text": "Buen restaurante. Gran servicio y atención por parte de todos los camareros. La comida estaba rica y bien de precio, por poner una pega, los baos un poco secos. Es una buena opción si quieres comer en la playa de las canteras.\\nVolveremos.", "author": "Julio Alberto Murillo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4NjRySlRREAE", "timestamp": "2 years ago"}, {"text": "Llegamos a este Rincon de las Palmas recomendado por una amiga, la experiencia fue increíble desde el primer momento, camareros muy simpáticos y siempre pendientes de nosotros, la comida simplemente espectacular, repetiremos cada vez que viajemos a las Palmas y sin ninguna duda lo recomendaremos a todos nuestros amigos. Fantástica experiencia gastronómica.", "author": "Rafael Serrano nuñez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtanRfSlJREAE", "timestamp": "3 years ago"}, {"text": "Esta vez hemos ido para comida de navidad de grupo. Puedo decir que los responsables del negocio están muy pendientes de todo: serios, formales, amables y honestos con la relación calidad precio. Pedimos un cambio de vino del menú y nos dieron máximas facilidades. Una persona del grupo celiaca tuvo también una atención especial. La comida no parece de menú, esto es raro hoy día. Tomamos jamón ibérico, ensaladilla, cachopo, y otros platos que no recuerdo. De los 24 que fuimos es unánime que la comida estuvo muy rica. Gracias!!", "author": "Antonio N.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzbnJDdmR3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Llegamos sobre las cuatro al restaurante y nos acogieron estupendamente, desde el minuto uno la atención fue excepcional, la comida estaba exquisita y el postre llamado Fiesta de Chocolate era una explosión de sabor en la boca. Sin duda uno de los mejores restaurantes de Gran Canarias.\\nRecomendable 100%", "author": "Shaylor5", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSeVpYaFpiRXhtVG5ONVdUQk1WakV0ZDJkQmRrRRAB", "timestamp": "5 months ago"}, {"text": "El servicio y la comida son excepcionales, tienen menús para grupo pero también puedes pedir a la carta en caso de no saber que pedir te aconsejan, el personal es muy simpático y amable, sin duda es un sitio para volver y recomendar.", "author": "Amrit Balani", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKUldVWkZja1JDV0ZaelZHb3dOa3BzY1ROVldIYxAB", "timestamp": "a week ago"}, {"text": "Cada plato es una explosión de sabores. La atención del personal es exquisita, explicándote cada plato que sirven. Especial mención a Jesús, que derrocha amabilidad, profesionalidad y simpatía. Precios bajos para la calidad de comida que ofrecen y rapidez en el servicio. Increible restaurante en todos los aspectos. Vinimos desde Fuerteventura el fin de semana y volveremos!", "author": "Iván R.L.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kek9HZGlTSFZWWlRWaVN6SndVMGhhV0cxaE1rRRAB", "timestamp": "4 months ago"}, {"text": "Muy buena calidad de todos los platos, hemos ido muchas veces y siempre salimos encantados. El trato además es muy amable.", "author": "Alvaro Ricote", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoT2QzTmxUekJGTmtNMFYzQTNjelpXVW5KNE1WRRAB", "timestamp": "2 months ago"}, {"text": "El lugar nos pareció acogedor. Por lo general, la comida estaba bastante buena. El problema vino en la espera. Tardamos mucho en que el servicio terminase: teniamos que avisar para que nos retiraran los platos sucios y pedir. De hecho nos fuimos sin probar ningún postre.", "author": "S CC", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUU5WcEVXbFpWVm10dldFdE9Wa1JaWDJOUFowRRAB", "timestamp": "5 months ago"}, {"text": "Ich hatte das Vergnügen, in diesem Restaurant ein Black Angus-Steak zum Mittagessen zu genießen, und ich kann es kaum in Worte fassen, wie lecker es war! Das Fleisch war perfekt zubereitet, zart und saftig, und der Geschmack war einfach unglaublich.\\n\\nAber nicht nur das Essen hat meine Erwartungen übertroffen. Der Service des Kellners war hervorragend. Er war aufmerksam, höflich und stand jederzeit bereit, um sicherzustellen, dass mein Mittagessen ein echtes kulinarisches Erlebnis wurde.\\n\\nInsgesamt war mein Mittagessen in diesem Restaurant fantastisch, und ich kann es nur wärmstens empfehlen. Wenn Sie auf der Suche nach köstlichem Essen und erstklassigem Service sind, dann sind Sie hier genau richtig!", "author": "Dominik", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaM0pIeThBRRAB", "timestamp": "2 years ago"}, {"text": "Wir können es nur weiterempfehlen. Das Essen war hervorragend und der Service super.Alles war perfekt.Danke für den tollen letzen Abend in Las Palmas.", "author": "Nadine R.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxa2NIajBnRRAB", "timestamp": "2 years ago"}, {"text": "Es un rincón muy acogedor, con el servicio de personal cálido y profeciinal. Los platos que he probado son deliciosos y creativos. Amplia carta de vinos y postres muy ricos. Sin duda ninguna volveré a disfrutar esta experiencia.", "author": "Anzhela Svyatenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDeFlUakVREAE", "timestamp": "5 years ago"}, {"text": "Wir sind auf Grund der vielen guten Bewertungen eingekehrt. Leider hat uns die Qualität der Speisen so gar nicht überzeugen können. Vielleicht lag es daran das es Sonntag Abend war oder daran, dass der Koch frei hatte. Keine der Speisen war frisch zubereitet, alles wirkte aufgetaut und aufgewärmt.", "author": "Thoralf Schade", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzOHNQMTJ3RRAB", "timestamp": "a year ago"}, {"text": "Wir waren zum ersten Mal da. Kleine Speisekarte?Großer Geschmack! Ensalada con espuma de manzana und das Iberico Schwein waren ein Gedicht! Freundliche und sympathische Mitarbeiter. Ein schönes Ambiente. Preis- Leistungsverhältnis ist in Ordnung", "author": "Gregor Vaas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQdE82TC1BRRAB", "timestamp": "a year ago"}, {"text": "Etwas versteckt in einer Seitenstraße an der Strandpromenade liegt das Rincón de Triana. Gegenüber den meisten, eher touristisch ausgerichteten, Restaurants in dem Gebiet findet man dort wirkliche Gaumenfreuden zum fairen Preis. Kleine Karte, aber exquisite Küche, gute Weine und einen aufmerksamen und kompetenten Service.", "author": "Hans-Joachim Hauschild", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSd2ZuYXN3RRAB", "timestamp": "2 years ago"}, {"text": "Los camareros fueron muy amables y la explicación de los platos era muy extensa, pero la comida bastante normal, diría q lo más sorprendente que probamos fueron las gyozas, y el ladrillo de berenjena con miel y pasta filo.\\nEnsaladilla rusa, huevos rotos con gulas y salmón a la parrilla más q normales.\\nPrecio algo elevado.", "author": "Sergio Olivar", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMHQ3andnRRAB", "timestamp": "4 years ago"}, {"text": "Ha sido un descubrimiento de la zona muy grato. Todos los platos fueron muy correctos y muy bien elaborados, mucho sabor. No le doy 5 estrellas porque pienso que unos huevos vegetarianos deberían tener algo más que papas, champiñones y huevos, por lo demás genial.", "author": "Alba García Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDem9fZXFnRRAB", "timestamp": "5 years ago"}, {"text": "Buen servicio aunque fuese un grupo grande, amables y muy atentos.\\nLa comida buenísima, muy recomendables las gyozas y los baos, algo escaso si tienes mucho apetito pero así tienes oportunidad de probar más platos porque todo lo que probamos estaba muy bien.\\nCasi en pleno paseo de las canteras.\\nNo pude adjuntar más fotos porque estaba tan bueno que según llegaba comíamos ;)", "author": "Javifer Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGNjdtVDJnRRAB", "timestamp": "2 years ago"}, {"text": "Última noche en las Palmas por este año y venimos a probar este restaurante ,menos mal que reservamos ,no es para venir con prisas ,pero mejor porque asi te da tiempo a ir deguatando los platos, los camareros te dan todas las explicaciones para una buena elección, de primeros ensaladilla rusa, muy rica pero jistita, croquetas buena cantidad y muy buen sabor, y pedimos un par de zamburiñas por cabeza flambeadas, bien, algo diferwnte.De platos fuertes una presa a la brasa ,un pelin seca de más y templada , y pata de cochinillo cocida a baja temperatura ,muy bien de textura pero para niestro gusto con demasiadas hierbas ,de postre torrija muy rica pero el caramelo flojillo ,se ve muy industrial.Relación calidad / precio un pelin caro.", "author": "Miki Louro", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGMVppamRBEAE", "timestamp": "2 years ago"}, {"text": "Fuimos ayer y nos encantó. Comimos Rejo de Pulpo, Gyozas y Ladrillo de berenjena. Todo delicioso con sabores intensos. Hoy repetimos. Muy recomendable", "author": "Paquita Hermosilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkbXRQVi1BRRAB", "timestamp": "a year ago"}, {"text": "Simplemente espectacular,un sitio que recomiendo visitarlo,la comida una delicia desde el primer plato hasta el postre,la mejor tarta de queso que eh probado en mi vida!! La atención espectacular,en especial un camarero llamado Luis ,un atendimiento genial ,siempre pendiente a todo y una relación calidad precio que vale mucho la pena,volveré sin duda,encantadisima☺️☺️", "author": "Emma Zerpa Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYMDlteFJnEAE", "timestamp": "a year ago"}, {"text": "En primer lugar felicitar a todo el equipo humano del rincón de Triana por su excelente atención y no menos profesionalidad. Grandioso ambiente de cordialidad y atención continua. Que comentar de la carta, solo tengo un calificativo, EXCELENTE. Invitaros a continuar con vuestra dedicación y excelente gastronomía. MUCHAS FELICIDADES.", "author": "Orlando luz gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPOTZHQVNBEAE", "timestamp": "3 years ago"}, {"text": "Leider kann ich nur 5 Sterne geben... Es war eine spontane Entscheidung in dieses wunderschönen kleinen laden in der SeitenStraße essen... Bedienung vom Fach..hat uns alles auf englisch erklären können auch wenn wir etwas nicht verstanden haben wurde geholfen... Wir haben n Deutschland nirgends so gutes Schweinefleisch gegessen und selten so gutes Rinder Filet..Wir haben gleich wieder für den Folge Tag einen Tisch reserviert...Der Nachtisch... Flowerpott...Leute Leute..sowas schönes habe ich noch nie gegessen...ein Traum von Vanille...Die Schokolade... Ja man könnte denken was stimmt denn nicht mit dem Typ,beim Lesen 😅 aber ich bin ehrlich und glücklich nach diesem wunderbaren essen. Preislich 😂😂 zu günstig.. @rincón de triana dürft ihr gerne erhöhen das ist es wert.wir freuen uns auf morgen abend ❤️LG Tim", "author": "Mit Lage", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoazh6V2ZBEAE", "timestamp": "2 years ago"}, {"text": "Kleines aber ausgezeichnetes Restaurant mit gehobenem, sehr freundlichen, Service. Nur ein wenig abseits der Avenida! Wirklich sehr leckeres und sehr gut zubereitetes Essen. Da waren wir nicht zum letzten Mal!!!", "author": "Andreas Eitelbach", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214a1RXd3hTMnhRYzBKb1ZUTjRNMmN3ZEVWcVJIYxAB", "timestamp": "3 months ago"}, {"text": "Todo lo que comimos los dos días de nuestras vacaciones fue riquísimo, las giozas, las zamburiñas, el timbal, el cabrito y los postres, todo espectacular. Buen servicio. Nos lo recomendaron y fue un acierto. La única pega, el local no tiene mucho encanto.", "author": "Cristina G", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wdGVYRXhaV3RpYlV0MFpYQnZkbXcyUkRsWFQwRRAB", "timestamp": "4 months ago"}, {"text": "Comida muy rica. Exquisita. El trato un 10. Muy atentos. Muy acogedor. Y repetiremos sin duda. Un 10.", "author": "Marta Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWei12cFJREAE", "timestamp": "2 years ago"}, {"text": "Gran descubrimiento.\\n\\nComida deliciosa, raciones generosas, trato espectacular.\\n\\nAdemás, está genial la relación calidad-precio.\\n\\nDeseando volver.", "author": "Leticia Marrero Juan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1dWZhT2FnEAE", "timestamp": "3 years ago"}, {"text": "El restaurante nos pareció un lugar muy encantador empezando por sus camarero y propietario donde en todo momento aconsejan e informan de cada uno de los platos. En unos de los platos de la foto Merluza con salsa de trufa y papas peruanas fue un auténtico manjar en una mezcla de sabores. Y de postre como en la foto Torrijas caseras muy buenas,que sin duda volveremos a repetir.", "author": "icewallace3", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtcjZPR1dBEAE", "timestamp": "3 years ago"}, {"text": "Me gusta comer sabroso sin importar cuánto voy a pagar , creo que el comer bien es una de las cosas que te llevas en la vida.\\nEl Rincón de Triana es un lugar que con sus mezclas de sabores hacen que en tu paladar sientas una explosión 💥\\nSi vienes a Las Palmas de Gran Canarias visita este restaurante, no te lo pierdas…😁🤤😋😋😋", "author": "maria lisset suarez flores", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcV9HVzd3RRAB", "timestamp": "3 years ago"}, {"text": "Authentische Restauration, exzellente Speisen, ein großartiger Genuss. Jakobsmuscheln flambiert, Solomillo zart mit crema delicioso. Ein guter Wein dazu, perfekt.", "author": "Kai Schlegtendal (chief_ehrenfeld)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxLVpLWVBBEAE", "timestamp": "2 years ago"}, {"text": "Una experiencia excelente de principio a fin. La atención fue impecable, y queremos hacer una mención muy especial a Roberto, nuestro camarero, quien nos atendió con una amabilidad y profesionalismo excepcionales. Su atención al detalle y su trato cercano marcaron la diferencia en nuestra visita.\\n\\nQueremos también agradecer muy especialmente el gesto con la mantequilla de plátano donada para las Fuerzas Armadas. Un detalle que habla no solo de la calidad del lugar, sino también de los valores humanos que lo respaldan. ¡Gracias por una experiencia tan grata y significativa!\\n\\nVolveremos sin duda.", "author": "Jero Vera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VMU3h4WXJBemZlU0dnEAE", "timestamp": "7 months ago"}, {"text": "Trato y comida exquisita. Nos encantó todo lo que pedimos. Un lugar al que volver a ir en la isla.", "author": "Izaskun Pizarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2aHYya1RREAE", "timestamp": "a year ago"}, {"text": "Comida muy buena y buen trato. Muy recomendable, en todo momento te explica la elaboración del plato. Servicio excelente", "author": "Juan Carlos Millon Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtbThqQ3FnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Un trato excelente en el especial al profesional que nos atendió ( Uber). La comida riquísima.", "author": "marian diaz borges", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGUmVraHlWalZXWW5oZmQxWlJRM3BhU1dSbE9VRRAB", "timestamp": "a week ago"}, {"text": "Fantastiskt god mat! Jag åt griskind och min man åt ryggbiff och vi var båda väldigt nöjda. Maten får 5/5, trevlig personal, ett litet minus för lokalen - som kunde varit helt okej om man justerat belysningen och satt ljus på borden.", "author": "Lotta Book", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURROWNYNWhBRRAB", "timestamp": "10 months ago"}, {"text": "Excelente servicio\\nComida con sabores y sensaciones muy cuidados\\nFELICIDADES", "author": "PJ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLbmF5X3JLcTczdlZ3EAE", "timestamp": "7 months ago"}, {"text": "Comida variada y rica, buena cerveza sin filtrar. Está bien ubicado en una calle perpendicular justo al lado de las canteras. Tiene todo lo que uno se espera cuando vas a una cena en grupo. El cachopo estaba rico y abundante, con buen jamón, quizá estaba un pelin seco por ponerle un pero.", "author": "OSCAR FERNÁNDEZ LÓPEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGMkxpTl93RRAB", "timestamp": "2 years ago"}, {"text": "Fuimos a Canarias este verano mi chico y yo y este restaurante fue un maravilloso descubrimiento. Cada plato sorprende más que el anterior, desde el bao de pulpo, pasando por el cangrejo de concha blanda, las gyozas...\\nTienen las mejores zamburiñas que he probado en mi vida y ve probado muchisimas. De cinco dias que estuvimos en la isla fuimos a cenar alli tres seguidos y ya lo estamos echando de menos. Absolutamente profesionales, se nota cuando se pone cariño en lo que se trabaja ¡Seguid asi!", "author": "Pilar Vioque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtOHR5T0xnEAE", "timestamp": "3 years ago"}, {"text": "Restaurante a pie de la Playa de Las Canteras. Local acogedor, bonita decoración. Destacar la atención del personal y el\\nSabor exquisito de los platos lo hacen un lugar para repetir.", "author": "Cathaysa Betancor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtMHQtSjZBRRAB", "timestamp": "3 years ago"}, {"text": "Nos ha encantado. Los camareros son súper amables y muy buen servicio.", "author": "cloticloti gr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sRmFqZFRRazVJTTJaZmJWcFdXWFJqV0d4TmMzYxAB", "timestamp": "2 weeks ago"}, {"text": "Excelente, en todos los sentidos.\\nRelación calidad precio inmejorable. Hacia tiempo que no disfrutaba tanto de una comida", "author": "Pili Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNnVycFlnEAE", "timestamp": "a year ago"}, {"text": "Polecam. Zamówiliśmy, pierogi, hale fish, krewetki z serem kozim, bułeczke bao z wierzowina. Jedzenie smaczne, bardzo dobra obsługa!", "author": "Krzysztof Obrał", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoai1idEdnEAE", "timestamp": "2 years ago"}, {"text": "Fusión de sabor canario tradicional con exquisitez, para los que buscan una comida diferente.\\nMuy recomendable, dejarse aconsejar por Mario que te explica todo de maravilla.", "author": "Alberto Fonseca Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGamFEbzlBRRAB", "timestamp": "2 years ago"}, {"text": "Me ha encantado, celebré ayer mi cumpleaños y salió todo genial.\\n\\nLa comida toda en su punto, recomiendo mucho el guacamole y la ensaladilla rusa.\\n\\nMuchas gracias por el trato.", "author": "leticia MM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5NTdxLW5RRRAB", "timestamp": "a year ago"}, {"text": "Los camareros excelente atención. Todo era con reserva, lo que ocurrió es que buscaba un sitio para tomar una torrija por semana Santa, lo busqué por Google y encontré este sitio. Terminé comiendo y postre torrija, muy sabroso todo . Cuando vuelva Las palmas Gran Canarias , iré a comer ahí .", "author": "Helen Pinto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURENU9EZ25nRRAB", "timestamp": "a year ago"}, {"text": "Sehr gute gehobene Küche! Preis Leistung auch sehr gut 🙂", "author": "Lalita Kreklau", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmclByTTFRRRAB", "timestamp": "a year ago"}, {"text": "El cachopo estaba muy bueno, eso sí los servicios estaban hechos mierda , y me han enseñado que si el servicio/baño de un bar está sucio ............mmmm", "author": "Luis Medina", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkVlVuTnRPR1pVYnpKbGJVTklVREJtYUhNME1YYxAB", "timestamp": "a month ago"}, {"text": "Es war super lecker! Personal war sehr nett", "author": "Kate", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdU82dW1BRRAB", "timestamp": "10 months ago"}, {"text": "Lo busqué por Google para saber donde ir a comer con mi mujer ya que andábamos por la zona. Todo un acierto!!! Comida muy rica y servicio perfecto!!!\\nRecomendable.", "author": "Carlos Gutiérrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4d2N6WnRnRRAB", "timestamp": "2 years ago"}, {"text": "Restaurante con carta de platos muy novedosos y gran calidad. El jamón ibérico mejor cortado de la Isla Servicio excelente y amable Volveremos Saludos", "author": "diego f.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21SQ1VHb3dSMmswYld3NGRHWnRWVkV5Y1RReFdVRRAB", "timestamp": "4 months ago"}, {"text": "Wer mal was anderes essen möchte und nen Taler mehr in der Tasche hat, ist hier genau richtig. Essen war lecker und gut präsentiert, Service freundlich und nen guten Wein findet man auch. 👍", "author": "S. M.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xJNGIzQjFia2h1VW5waFpqUlpVWFJwWkROc1pGRRAB", "timestamp": "4 months ago"}, {"text": "Visita obligatoria, servicio de 10, sabor 5*\\nServicio extraordinario, comida excelente, presentación selecta, buen vino. Soy muy exigente y no encontré ni un solo fallo. Enhorabuena por esta experiencia de 10! Nuestro camarero el mejor, muy amable :D", "author": "Raquel Platero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOaTVqd1FREAE", "timestamp": "2 years ago"}, {"text": "Fijne service, heerlijke voorgerechten. Het hoofdgerecht vonden wij iets minder lekker, maar nog steeds heel goed!", "author": "Thomas Rook", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MHVUNGhRRRAB", "timestamp": "a year ago"}, {"text": "Se come estupendamente, el servicio es de 10, el local dentro es amplio y acogedor, lástima que fuera solo tengan dos mesas. No se encuentra en primera línea, aunque mejor si puedes comer fuera, ya que, te ahorras el trasiego de tanta gente", "author": "Néstor González Barreto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURldExxZ1BnEAE", "timestamp": "3 years ago"}, {"text": "De los mejores lugares de Las Palmas ahora mismo para disfrutar de la comida. Tiene una elaboración muy cuidada, el servicio es impecable y la materia prima inmejorable. Sin duda tienen que probarlo.", "author": "Carlos G Almonacid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbjZUaWNBEAE", "timestamp": "Edited a year ago"}, {"text": "The food was very good and also served very quick. The place is also baby friendly!", "author": "Micha Westerkamp", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKNlptNUNjMmxrT0dWeFJITm1kRGw1V0hka2RrRRAB", "timestamp": "2 months ago"}, {"text": "Buen restaurante , todo lo que pidas está bueno , buena bebida y a dos pasos de la playa de las Cantera y de la zona de ambiente de Las Palmas , el jamón ibérico siempre está muy bueno, RECOMENDABLE", "author": "Adolfo Sancho", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5bFYwNWhRMlpWZDBkUGVrRlVXR1pDZEdJNWEwRRAB", "timestamp": "3 months ago"}, {"text": "Les plats sont délicieux, cuisine maison.je recommandé le jambonneau.comida demiciosa, recomiendo el cocido ...y el personal es super agréable.", "author": "eric manise flecha roja", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNl9LX1JREAE", "timestamp": "Edited a year ago"}, {"text": "Das war leider Nix. Zum einen ist das Ambiente nicht wirklich einladend, zum anderen frage ich mich wie das Restaurant auf diese Gesamtbewertung kommt. Wir hatten als fünfköpfige Familie verschiedene Essen bestellt von Schweinefleisch, Rindfleisch,fisch bis Krabben Fleisch. Alle Menüs haben nicht geschmeckt. Das Fleisch war viel zu trocken, der Fisch ohne Gewürze hat langweilig geschmeckt, Wir haben 165 € bezahlt, was für die gebotenen Qualität völlig übertrieben ist. dann hat auch noch der Wein gekorkt. Schade, um den schönen Abend.", "author": "Jens Kammerer", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEbE1YNi13RRAB", "timestamp": "a year ago"}, {"text": "Ambiente muy tranquilo y agradable. Todos los platos estaban muy buenos.", "author": "Oti Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmLWNUeVhnEAE", "timestamp": "a year ago"}, {"text": "Ubicación privilegiada,prácticamente en el paseo de las canteras. Servicio atento y rápido,platos bonitos a la vista y sabrosos al gusto. Repetiré.", "author": "Bego Sane", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNjlhbFB3EAE", "timestamp": "a year ago"}, {"text": "Ha sido muy buena experiencia comer en este sitio, atención al cliente fabulosa, el Jefe de cocina un trato de diez y Roberto, camarero del local, atención exquisita en todo momento. Ha sido una comida excelente. Todo los platos que hemos pedido de calidad top. Muy recomendable.", "author": "alejandro ruano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsTVh6ZFFWVXhZY1Zaa1VtNW9kRGgzTW5vMmNHYxAB", "timestamp": "7 months ago"}, {"text": "Muy bien restaurante con pocos platos pero todos muy buenos, servicio excelente.", "author": "Max", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21adFVsUlJkbkJsY1ROQlN6SnhUM1Z3TFhaNmNsRRAB", "timestamp": "2 months ago"}, {"text": "Incontournable si vous visitez las palmas . Restaurant a la cuisine extraordinaire, raffinée , surprenante et un personnel vraiment excellent et d une gentillesse incroyable . Une très belle expérience culinaire .", "author": "Guinet Clement", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3OXRuS21BRRAB", "timestamp": "10 months ago"}, {"text": "Overgewaardeerd, vlees bevatte veel vet en we zijn beide ziek geworden van het eten.", "author": "sandra kester van", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kNVJGZzRWa2R1Tmt0dFlsQmFiV0k1UzI5S1VuYxAB", "timestamp": "4 weeks ago"}, {"text": "Eccellente tutto dal vino al dolce! Piatti ricercati e personale competente ed attento. Consigliatissimo!!!", "author": "Gaia Concutelli", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eS0tSWZ3EAE", "timestamp": "2 years ago"}, {"text": "Ruoka oli aivan superlaadukasta, siis kaikki mitä söimme-crocetit, ravut vuohenjuustolla, sirloin, mustekala, talon jälkkäri. Viinilista erittäin kattava ja tarjoilijan valinta oli tosi hyvä. Ainoa miinus hieman kiireiset tarjoilijat jotka sukkuloivat pöytien välissä. Mutta kaikki toimi erinomaisesti. Tänne menemme uudelleen.", "author": "Timo Tuominen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzeHFlSzRRRRAB", "timestamp": "a year ago"}, {"text": "Me ha encantado la comida, preparada con mucho gusto y en cantidad no excesiva, pero suficiente. La tarta de queso exquisita.\\nNo me ha gustado que los platos que te dicen que tienen fuera de carta no te digan los precios.\\nMe ha parecido demasiado bullicioso, tal vez ese día había algunas mesas muy ruidosas, pero no podía escuchar a mí pareja del ruido que había.", "author": "Carocha", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnOTc2a2J3EAE", "timestamp": "11 months ago"}, {"text": "Fantástico lugar, muy próximo a la playa de Las Canteras, tanto los platos, servidos y explicados con todo detalle, como la atención de todo el personal que nos atendió, de diez. Muy recomendado, y no es la primera vez que venimos. Seguimos repitiendo, ya que siempre soprende con nuevas propuestas.", "author": "Antonio Doreste Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1N0liVzlnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena comida un ambiente acogedor un buen sitio el servicio 5 🌟 les recomiendo el cachopo .", "author": "Luisbel Leyva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2MklhVUN3EAE", "timestamp": "Edited 6 months ago"}, {"text": "MARAVILLOSO SERVICIO AL COMPLETO\\nPues eso, servicio completo de 10; Desde la reserva, el recibimiento a la llegada, la atención en la mesa, comida excelente y exquisita y el precio más que bueno en calidad de producto.\\nYa son varias veces las que voy y nunca hay errores en nada.\\nLa atención en el Servicio es increíble y las recomendaciones siempre un acierto. 100% recomendable para cualquier hora.\\n\\nMis preferidos, las Gyozas de morcón y el Pan Bao de Costillas de cochino negro... a partir de ahí, ya nada puede ir mal. Pidas lo que pidas, una exquisitez.\\n\\nEl acabado de los platos (algunos) es siempre en mesa y te explican el como el cuando el donde... y el por qué.\\n\\nSin duda uno de mis restaurantes preferidos de la ciudad", "author": "I CG", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtXzRIS2pnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Hervorragendes Essen!! Eine tolle Überraschung in einer nicht sehr fancy Straße, nahe an Beach. Sehr guter Service.", "author": "Eliska Potlukova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyN0xTanBnRRAB", "timestamp": "a year ago"}, {"text": "Muy buena atención del personal .Local acogedor y variedad de postres. Calidad precio es caro", "author": "Jorge goncalves", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaai1QSmpBRRAB", "timestamp": "2 years ago"}, {"text": "La comida exquisita y el servicio extraordinario.\\nSin duda volveremos.", "author": "Elena Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3b3QzM0pBEAE", "timestamp": "a year ago"}, {"text": "Lugar que he descubierto hace poco y ya perdí la cuenta de las veces que he ido , tanto con pareja como con amigos . La calidad de la comida , la explicación previa por parte del personal y el trato del mismo es simplemente exquisito . Soy amante del turismo gastronómico y aun no he probado mejor jamón que el que trabajan en este lugar . Mi enhorabuena a todo su personal .", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMHM3Y01REAE", "timestamp": "4 years ago"}, {"text": "Un gran restaurante, trato excepcional. El camarero te explica con mucho detalle la elaboración de cada plato.\\nTodos los platos que comimos estaban muy muy buenos. Era mi cumpleaños y me regalaron un postre y me cantaron el cumpleaños feliz. Un bonito detalle.\\nVolveremos segurisimo.", "author": "María Eugenia Laforet Ariza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOG9hcHpBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Un local agradable, platos originales y de gran calidad, personal atento, especialmente Rafa con su genial sentido del humor; repetiremos !!!", "author": "GERMÁN PÉREZ", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201Wk5YUkVaWFJtZEdKYVVHaFBaSGR5T1hkUWMwRRAB", "timestamp": "5 months ago"}, {"text": "Todo excelente!\\nLa comida deliciosa. Se nota que los ingredientes son de excelente calidad.\\nTodo el personal muy buena atención.\\nDon Mario es muy cuidadoso de la experiencia del cliente.\\nUna joya de lugar!", "author": "agustin bartra", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoUlREWkpXa1ZvYmt0ak5YSldPUzEzZFdaUlIzYxAB", "timestamp": "7 months ago"}, {"text": "Excelente producto y sitio muy acogedor. El personal muy profesional. Las vieras como aperitivo y los huevos estrellados con Carabineros son apuesta segura. De principal buena carne para hacer a la piedra. Carta de vinos tintos excelente. Buena relación calidad precio.", "author": "J Cab", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncG9qVDNRRRAB", "timestamp": "11 months ago"}, {"text": "Lo primero, trato y servicio muy bueno, la comida 5 estrellas.\\nMuchas gracias", "author": "Rubén López López", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VOckNvN0dteGVlb1JBEAE", "timestamp": "7 months ago"}, {"text": "Segunda visita a este restaurante en el corazón de las canteras. Espectacular", "author": "Aristeo Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJWFNyOUxnNExiSUFnEAE", "timestamp": "8 months ago"}, {"text": "No tuvimos buena experiencia. Precio elevado para la calidad de los platos.\\nChuletillas de cabrito, duras. Tartar de atún muy picante.\\nLas gozas sí estaban buenas.\\nComimos en dos tiempos por un error. Lo siento", "author": "Manuel López", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VOamt1S3VvdHFxdXN3RRAB", "timestamp": "8 months ago"}, {"text": "Buena atención del personal y buena comida. Fui a celebrar la comida de empresa y nada que ver con otros restaurantes.", "author": "Álvaro Pérez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aMVkxWndTMHBZU3kxMVVuRXdkMHd5VTFCMmQwRRAB", "timestamp": "a month ago"}, {"text": "La comida en este lugar siempre está de diez. No he probado un plato aún que no sea delicioso.", "author": "Nacor Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMM012ci1BRRAB", "timestamp": "a year ago"}, {"text": "La atención genial, te explican los platos y te aconsejan. El problema viene a la hora de los precios. Para empezar te cobran el pan (yo lo veo horrible puesto que me lo ponen y yo ni lo he pedido ni me lo como), seguidamente me cobran un precio más elevado en los calamares por que piensan que tienen que poner unos cuantos más sin decirme nada. Finalmente me ponen gyozas donde me comentan que me añaden una más y me cobran 16,7 por 6 gyozas en total (bastante caro puesto que son pequeñas y encima las cogimos por recomendación del camarero). A mi parecer el servicio es muy bueno pero por estas cosas no repetiré puesto que parece que quieren sacarte hasta el último euro.", "author": "Sergio León Jiménez Caro", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhc011UVZBEAE", "timestamp": "4 years ago"}, {"text": "Magnífica comida y personal, muy profesionales y agradables.\\nUn lugar perfecto para pasar una agradable velada.\\nSin duda para repetir", "author": "Zaira Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydEl5ZzlBRRAB", "timestamp": "3 years ago"}, {"text": "Desde el primer momento que llamamos nos atendieron con mucha simpatía y bastante bien. En total serían unos 115€ con entrantes, una botella de vino, un plato por persona , días aguas y postre.\\nLa verdad es que los trabajos de los camareros formidable. Lo recomiendo al 100%\\nLa mantequilla de plátano espectacular.", "author": "roberto galvan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2el9PSGVnEAE", "timestamp": "a year ago"}, {"text": "El servicio buenísimo, sobresaliente, atento y cordial.\\nLa comida acorde, sobresale la costilla a baja temperatura.", "author": "Luis de Santos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4MWFtYzFRRRAB", "timestamp": "2 years ago"}, {"text": "Buen servicio, buen producto , calidad precio aceptable.\\nA mejorar: te ponen pan 🥐 sin preguntar y te lo cobran......\\nTe ofrecen una amplia oferta de platos fuera de carta y no sabes los precios.....\\nPero....muy recomendable ☺️☺️", "author": "Mom", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJbmZuSXBBRRAB", "timestamp": "9 months ago"}, {"text": "Comida muy rica, servicio excelente y muy bien ambiente. Un restaurante de 10.\\nAbsolutamente recomendable", "author": "Eduardo Ponce Maya", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoamJlTEdREAE", "timestamp": "2 years ago"}, {"text": "Comer allí es un placer, tanto por la comida tan rica como por el espectáculo alrededor de los platos. Los camareros son muy top, cuidan cada detalle a la perfección y la comida está muy rica!", "author": "Rocio Inmaculada Bañez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqcnFqT0tREAE", "timestamp": "a year ago"}, {"text": "Un restaurante q aunque no está en el mismo paseo no se lo puede perder nadie\\nSi q es verdad q no es el típico bar de tapas o un restaurante barato pero si q sirven comida de calidad\\nSi estás en esa zona. No lo dudes, ves a comer!!!", "author": "Antonia García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCUFRrZFhUVnB4TjNOTlIwVkZjSE52TVVRNFRFRRAB", "timestamp": "5 months ago"}, {"text": "Sensationeller Service , fantastisches Essen , köstliche Weine . Ein geheim Tipp in Las Palmas abseits der touristischen Lokale .\\nIch würde 6⭐️vergeben", "author": "Philipp Lawrenz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkcVBEYjFnRRAB", "timestamp": "a year ago"}, {"text": "Comida espectacular, buen trato por parte de roberto ,educado y atento ,que nos ha recomendado lo típico de gran canaria", "author": "Estefania Ferrer Llorens", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKamVuaHdjMVJqU3paT2VrdHhUWFZJUWxGdWQyYxAB", "timestamp": "5 months ago"}, {"text": "Lugar excelente!! La atención muy buena y la comida de lo mejor que he probado en mi vida... sin duda de lo mejor en la playa de las canteras!!", "author": "Vanesa Barreiro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsd3RhZlpnEAE", "timestamp": "2 years ago"}, {"text": "Revuelto de carabineros y zamburiñas de 10 ❤️❤️. Repitiendo y mejor. Nos deleitaton con un cachopo con queso cebert y jamón iberico", "author": "Juan Mari Unsain de Zuloaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0cDZfM1NBEAE", "timestamp": "Edited a year ago"}, {"text": "Un descubrimiento, carta perfecta con un servicio impecable. Todo incita a probar.", "author": "Narci Mar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaC1DelVBEAE", "timestamp": "a year ago"}, {"text": "Höherpreisig aber gut. Essen war lecker, das Ambiente von innen nett anzusehen.", "author": "Birk Virkus", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pJMVJFSnpXbVJQY3pSQk9YVlBVSHBrZW5GRU9IYxAB", "timestamp": "4 months ago"}, {"text": "Hemos pedido guacamole, lubina, presa y tarta de queso todo riquísimo la comida de 10 y la atención excelente, muy muy recomendable", "author": "Juan Miguel Domínguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poM1lscExZa0p0WlRobFRYYzVhRzl3U1V0NGNWRRAB", "timestamp": "4 months ago"}, {"text": "Inmejorable! El servicio estupendo, el ambiente tranquilo y la comida de 10. Pedimos bastantes platos de la carta, entrantes y principales, no sé con cuál me quedaría, pero destacar el pan bao de cochino canario y la costilla Nakama . Los postres muy ricos, especialmente la tarta de queso. Repetiré con total seguridad", "author": "Ayeisha", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNubmVpdndBRRAB", "timestamp": "a year ago"}, {"text": "Exquisita comida. Calidad precio perfecto. Pedimos croquetas de jamón, Camarones, huevos rotos con jamón ibérico, y solomillo. Una fusión de sabores excelentes,\\nEl trato de los camareros excelente . Sin duda alguna merece la pena y si tenemos oportunidad, volveremos.", "author": "yasmina reyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzaGE3bFh3EAE", "timestamp": "a year ago"}, {"text": "Exquisito, TODA la comida estaba buenísimo.\\nPedimos una ensalada con espuma de manzana, que estaba muy fresquita y buena. Zamburiñas, recomendado 100% y sus gyozas. También probamos los huevos con carabineros, que no pueden faltar y el cachopo que estaba muy bueno. Los postres también de 10.\\nLa atención y amabilidad del personas fue perfecta en todo momento. Por poner un pero, fue la espera por los postres. Pero de resto nada que decir. Volveré seguro.", "author": "Gabriel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBc2RQVE9REAE", "timestamp": "11 months ago"}, {"text": "Fuimos de Tenerife este lunes y solo tenemos que decir que un servicio totalmente de 10, la comida exquisita. Sin duda volveremos, totalmente recomendable.", "author": "Aarón González", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FeVUxZzJUSGRqVEdoek9GZ3ROV3AwUzNOVlMxRRAB", "timestamp": "6 months ago"}, {"text": "Cuando se juntan profesionales y amantes de su profesión, da lugar a este maravilloso sitio donde la atención es de 10 la cocina es de pasión y de calidad . Sitio muy recomendable. No puedes irte de Canarias sin pasar por este restaurante. Recomendable llamar para reservar.", "author": "Adán Toribio saavedra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIajlmUUR3EAE", "timestamp": "a year ago"}, {"text": "La comida espectacular ,la presentación estaba todo excelente y el servicio un 10", "author": "Eva Signes Lopez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWSWNUWk9aM3BvV1dkcVRsYzVOMHN5YUd0eFIxRRAB", "timestamp": "5 months ago"}, {"text": "La comida muy rica y el trato excepcional, recomendable 100%", "author": "Mari", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twSWRUUXhUbVl0VDA5RmJtc3dRbFZUWkhGV09HYxAB", "timestamp": "4 months ago"}, {"text": "Lugar bonito y agradable.Comida elaborada y buena y buen trato a la.hora del servicio.", "author": "Jaime Pardo Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREb2QtU0RnEAE", "timestamp": "a year ago"}, {"text": "El sitio agradable. La comida, lo más importante exquisita. El personal muy amable, atento y profesional. Desde el vino hasta el último plato todo perfecto.\\nMuy recomendable.", "author": "Gontzal Diez Basurto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfME12b2l3RRAB", "timestamp": "a year ago"}, {"text": "Comenzamos con un buen trato, servicio y ambiente. Continuamos con la bomba de sabores, donde hace de la comida una gran experiencia y les diferencia del resto, su carpaccio con helado espectacular, rejo de pulpo plato increíble que te desencaja y no puedes parar de comer y las gyozas con una explosión de sabor inigualable.", "author": "N GM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiNXBiM1ZBEAE", "timestamp": "a year ago"}, {"text": "Platos interesantes y creativos, con mucho sabor.", "author": "Sara Ingarfield", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnTUNnNWVZZBAB", "timestamp": "11 months ago"}, {"text": "Scrivo con il profilo di mia moglie.\\nOggi il nostro buon amico Michele ci ha portato a mangiare in questo ristornate, fin dalle prime 2 portate abbiamo capito che la qualità del cibo era ottima, portate abbondanti con piatti rivisitati.\\nIl consiglio e quello di provare la maggior parte delle entrate condividendo con chi vi farà compagnia, oltre la qualità vorrei fare notare l'ottimo servizio dei camerieri di sala.\\nNel complesso e davvero un ristornate all' altezza di quelli ben nominati e molto più pagati.\\nOttimo lavoro, ci torneremo sempre quando saremo qui.", "author": "Michela Sala", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEbE5TdVRREAE", "timestamp": "a year ago"}, {"text": "Hallo Zusammen, ich muss leider dem Restaurant eine etwas durchwachsene Bewertung geben, obwohl geschmacklich das Essen durchaus gut gekocht ist. Jedoch wurden einerseits viele Gerichte mit einem Pommes Variante als Begleitung serviert und wir mussten gegen Ende unseres Restaurant Besuchs feststellen, dass unsere Weinflasche (noch zu einem Drittel voll!) einfach mitgenommen wurde, ohne höflich zu fragen, ob wir diese mitnehmen wollen. Und auch die Bezahlung gestaltete sich etwas schwierig, da keiner der Kellner verfügbar war.\\n\\nEs wäre zu wünschen, dass der Service noch etwas besser wird.", "author": "Jonas P.", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsdkx5U0xREAE", "timestamp": "2 years ago"}, {"text": "Estuvimos mi pareja y yo cenando el sábado noche y nos sorprendió para muy muy bien.\\nLa atención es impecable, los camareros super atentos en todo momento y serviciales, pero dejandote comer tranquilo y sin agobios.\\nEl local invita a que te quedes un buen rato, con muy buen gusto, todo cuidado al detalle de estilo clásico.\\nEn cuanto a la comida IMPRESIONANTE UN 10. Soy celiaca y me supieron atender de maravilla, tienen pan sin gluten que te sirven con el acompañamiento a parte para que no haya ningún tipo de contaminación cruzada, además me aconsejaron genial para poder cenar tranquila.\\nEn cuanto a los platos, todo para compartir, decidimos pedir 2 Zamburiñas cada uno, y pocas me pedi! Que delicatesen, que buenas estaban, hacia tiempo que no me comía uñas Zamburiñas tan bien hechas. Posterior nos decidimos por unos huevos rotos con jamón ibérico, que estaba perfectamente hechos, como un plato tan simple y que tienen en tantos lados se puede hacer tan bien, de verdad impresionante. Por último pedimos presa ibérica, buenísima y muy bien hecha, con su acompañamiento de papas espectaculares y pimientos del padrón.\\nCon una botella de Juan Gil etiqueta plata salimos por 80€, de verdad, merece muchísimo la pena.\\nVolveremos seguro, me quede con muchas ganas de ese guacamole casero hecho en mesa 🤤", "author": "Elisa Gris Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIZ3VXQzBnRRAB", "timestamp": "a year ago"}, {"text": "Fuimos porque nos habían hablado del restaurante y la verdad que fue muy muy buenoo producto de calidad y buena elaboración no pueden fallar", "author": "Fouad Elmoudden", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkVGEzVkplbE0yVTFOd1pFSnVaVkU0ZEVJNFJIYxAB", "timestamp": "6 months ago"}, {"text": "Dieses unscheinbare Restaurant in einer Seitenstraße von der berühmten Strandpromenade Las Canterras kann ich nur empfehlen. Hier gibt es Gran Canaria Küche vom feinsten. Ich hatte ein Dreigängemenü: Vorspeise: Tartar vom roten Thunfisch, Hauptspeise: gebratenen Lachs und zum Dessert ein warmen Käsekuchen. Das Tatar war exzellent, der Lachs wurde mit einem Carpaccio aus Mango Zwiebeln, Tomaten, etc. dekorativ serviert. Schmeckte herrlich und konnte mit dem tollen Dessert abgeschlossen werden. Das Ambiente ist ein bisschen einfach und rustikal, aber der gute Service und die sehr gute Küche sind ganz klar 5 Sterne wert. Absolut empfehlenswert für Feinschmecker zu guten Preisen.", "author": "Guido Wolf", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2NHFTWXpBRRAB", "timestamp": "a year ago"}, {"text": "No puedo valorar la comida porque me han dicho que tienen la cocina cerrada una hora antes de la hora publicada en Google y a pesar de tener varias mesas sentadas aún comiendo. Son libres de escoger sus horarios, desde luego. Pero quienes utilizamos la info de Google para decidir a qué sitios vamos agradeceríamos que la mantuviesen actualizada para evitar confusiones. Ya no estamos en 2010, señorxs de la restauración!", "author": "Jota Cerrese", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnMW95TGxnRRAB", "timestamp": "11 months ago"}, {"text": "Los camareros fabulosos y la comida riquísima. El postre, la torrija, es sublime!", "author": "Natalia Gomez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bFdGbDBURXB0VTJkMFptNXFOMUp3U2tZd1pYYxAB", "timestamp": "5 months ago"}, {"text": "Wir waren spontan zu zweit hier aufgrund der positiven Bewertungen essen und total begeistert. Sehr leckeres Essen, guter Wein, tolles Flair und guter Service. Was will man mehr?", "author": "Andre Reuber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2blBXOUJ3EAE", "timestamp": "a year ago"}, {"text": "Estuvimos cenando y estaba todo muy bueno. La atención es inmejorable y los platos que nos recomendaron, revuelto de carabineros y cachopos, estaban deliciosos. Quizá el precio algo elevado pero es cierto que es exclusivo, el local está bien pero necesitaría que diese más sensación de amplitud.", "author": "David", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNidElpNkJ3EAE", "timestamp": "a year ago"}, {"text": "Ayer estuvimos cenando allí y maravilloso. La comida buenísima, personal a cual mejor, servicio espectacular. Fichado. Calidad-precio super bien! Recomendado.", "author": "Marta O ́shanahan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJeDlib1pBEAE", "timestamp": "9 months ago"}, {"text": "Εξαιρετικό σέρβις! Το φαγητό απλά απίθανο! Μπράβο!", "author": "Μανωλης Γλατζης", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4aVBHblZREAE", "timestamp": "2 years ago"}, {"text": "Muy buen trato, comida perfecta, repetiriamos 100%", "author": "Maria Revuelta Arias", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CRFFrUnFhak5KVjNNeFQyODVZMFpZY0ROamJWRRAB", "timestamp": "3 months ago"}, {"text": "La comida espectacular pero el servicio inmejorable...el camarero(con gafas) que nos sirvió ha sido especialmente encantador y educado..fuimos con nuestro niño pequeño y nos han acomodado y han tenido sus detalles con él y se agradece", "author": "Patricia Gont", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvc0x5dXJ3RRAB", "timestamp": "9 months ago"}, {"text": "La comida normal , pero cara. Pretende ser un restaurante andaluz pero dudo que en esa comunidad te cobren 5.5€ por un tinto con limón. Pedimos unos huevos fritos con patatas para la niña y nos lo pusieron. Pero claro, al precio del plato de huevos con jamón, quitándole el jamón. Mal detalle. No volvimos en toda la semana, claro", "author": "Francisco", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3MS1tc2d3RRAB", "timestamp": "a year ago"}, {"text": "Increíble de principio a fin, el sitio muy bonito, la comida exquisita y con una calidad extraordinaria, la secuencia y el orden a la hora de servir los platos perfectamente estudiada, el trato del personal inmejorable, destacar la atención de Luis, la persona que nos atendió, educado, atento, cercano, súper profesional y con un trato y un saber estar exquisitos. Pedimos una botella de cava, zamburiñas, pan bao de cochino canario y langostinos, tartar de salmón, gyozas y de postre, fiesta de chocolate. Sin dudas, volveremos", "author": "I.C.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuakstU3lRRRAB", "timestamp": "a year ago"}, {"text": "Comida excelente\\nConviene reservar mesa.\\nEl guacamole espectacular\\nLos huevos rotos normalitos. La ensaladilla exquisita y el cachopo abundante. De los mejores fuera de Asturias, claro.\\nEl chef te explica los platos sin ser pesado y divo y te prepara in situ el guacamole,\\nmuy recomendable.", "author": "francisco sierra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3OGNYYmZnEAE", "timestamp": "a year ago"}, {"text": "Elegimos este restaurante para cenar y la comida nos pareció bastante pretenciosa para lo que realmente era. Escasa y bastante cara. Nos pusieron un servicio de MEDIA pulguita de pan por comensal con mayonesa, que no solicitamos y por el que nos cobraron 2,40€.\\nNo repetiría, ni aconsejaría.\\nLos camareros son muy atentos y serviciales.", "author": "Juan Antonio Mirabal", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcmZPN1V3EAE", "timestamp": "a year ago"}, {"text": "Un excelente sitio para comer o cenar, parada imprescindible.\\n\\nDestacar ante todo la calidad humana de los camareros, gracias por todo. 💛🌴", "author": "Sara Issaoui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPbmJTZzZRRRAB", "timestamp": "3 years ago"}, {"text": "Comida excelente, platos abundantes con ingredientes de primera calidad, volveremos.", "author": "Michele Ciliberti", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205UmRYRmxUV2hUYkVGUk1sRTVZbWc1WkhkeWNHYxAB", "timestamp": "5 months ago"}, {"text": "Fuimos a cenar un grupo grande de amigos que estábamos de viaje.\\nNos atendieron bien, comimos bien y precio razonable.\\nA mi parecer el mejor restaurante al que fuimos.", "author": "Jose Del Moral", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3eExpOEd3EAE", "timestamp": "10 months ago"}, {"text": "La comida estaba riquísima. El cochinillo estaba espectacular. El ladrillo de berenjena, y las brochetas de langostinos y queso muy recomendados también. Los camareros y el dueño súper agradables y atentos. En resumen, HAY QUE IR!", "author": "Laura Lázaro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIaXVpZ3hnRRAB", "timestamp": "a year ago"}, {"text": "Espectacular en una calle en las canteras la comida y el servicio de diez probar el cachopo es increible", "author": "richi iglesias", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsd2VqUmtXa3d3V2pCWmJFRXRlalJ4VkZwM2NrRRAB", "timestamp": "5 months ago"}, {"text": "Excelente atendimiento y una amplia carta de vinos. Platos elaborados y bien presentados. Elaborados con productos de calidad. Me lo recomendaron para hacer una comida de trabajo y salí muy satisfecho. 100 X 100 recomendable.", "author": "E. Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURybGYyTnZ3RRAB", "timestamp": "a year ago"}, {"text": "Espectacular el lugar, productos de calidad, trato profesional, muy recomendable,he ido varias veces y siempre que pueda iré ...muy recomendable", "author": "jonay frances", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Oa1NtRkdPSEJ1VEZOSk1VTXdWVWRaUVhOU2NGRRAB", "timestamp": "6 months ago"}, {"text": "Qué maravilla de descubrimiento este sitio la playa de Las Canteras de Las Palmas. Se come muy bien coma el sitio es espectacular muy bien atendido muy agradable. Probamos unos camarones a la parrilla espectaculares así como el CHERNE y la pata de cochinillo al horno... todo muy pero muy rico regado con una bodega interesante con muy buenos precios de vino. VOlvere.", "author": "Mac 629", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzc19fU2Z3EAE", "timestamp": "a year ago"}, {"text": "Buscando un buen sitio para comer por Internet, nos apareció este con muy buenas críticas así que nos decidimos a ir. Mejor acierto imposible, mesa para dos con reserva, la atención, el sitio, la mesa y la comida inmejorables. Como platos principales carrillera y presa iberica, muy muy bueno todo. Sin duda parada obligada en gran Canaria.", "author": "marcos rios", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuNzVXRUVBEAE", "timestamp": "a year ago"}, {"text": "Alles war Voll aber ich bekam 1 Stunde für mein Essen. Iberischer Schinken mit Bananen Butter. Tenderloin Medium mit Fritten und geflämmter Knoblauch Butter (Sehr gut).\\nMeinen Wein Wunsch (Fruchtigem Rotwein) wurde leider nicht erfüllt. Den Stern weniger gab es dafür. Das Ambiente war OK aber es könnte mal wieder etwas frische Farbe an die Wände.", "author": "Werner Kodric", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNua1BxUEdnEAE", "timestamp": "a year ago"}, {"text": "La persona que nos atendió asumo que era el dueño o administrador del restaurante. Él lo hizo de una manera muy profesional. A pesar de no tener reservación, hizo todo lo posible por ubicarnos en unas mesas. La comida es un poco más costosa que el promedio de lo que se comiera en otro restaurante de la zona. Sin embargo, tiene platos especiales que no se encuentran en otro lado. Todo lo que nos sirvieron tenía muy buen sabor y se veía muy fresco. Me dio la impresión de que los meseros aún estaban aprendiendo. Recomendado la entrada de berenjenas y el plato fuerte de pulpo.", "author": "Daniel Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMllPNk53EAE", "timestamp": "3 years ago"}, {"text": "Comida buenísima ( espectacular), platos bien surtidos y muy buena presentación, camareros y metre muy serviciales, amables y atentos sin agobiar… y sin dudarlo no se pueden ir sin probar algún postre… todos muy buenos… repetiremos", "author": "Eligia Reyes Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzblBqR2RBEAE", "timestamp": "a year ago"}, {"text": "Una experiencia perfecta.\\nLo más destacable, sin duda, es el gran trato y profesionalidad de los camareros, además de su gran predisposición: presentan los platos en la mesa y terminan de prepararlos delante del cliente.\\nLa comida es de total calidad y preparada con gusto.\\nEl local está cuidado al detalle. De los mejores restaurantes de la isla.", "author": "Alvaro Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwbWRiQW1RRRAB", "timestamp": "2 years ago"}, {"text": "Tiene un servicio muy bueno, y cerca de las canteras, pero la comida es normalita", "author": "Leticia Gonzalez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21reWRuRk5hbVp5Tm5GeU5XRnRXbmh2YjNkUFprRRAB", "timestamp": "3 months ago"}, {"text": "Un 10. Comida excelente, cada plato ha sido un espectáculo. Y el trato inmejorable.\\nVolveremos muy pronto. Enhorabuena!", "author": "David Troya", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBOUpDa0NREAE", "timestamp": "11 months ago"}, {"text": "Muy buena relación calidad-precio. Carne excelente. Trato estupendo", "author": "Lore Cereal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN01LVmNREAE", "timestamp": "6 years ago"}, {"text": "Servicio correcto. Comida a mi criterio aceptable/normal, no puedo decir excelente. Platos más bien escasos en cuanto a cantidad. Precio algo elevado respecto a lo ofrecido.", "author": "Gustavo Marco", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmbExubXZnRRAB", "timestamp": "a year ago"}, {"text": "Todos los platos que vas pidiendo van superando a los anteriores. Calidad excelente. Servicio muy bueno y agradable. Hasta teniendo un problema en.la cocina lo supieron componer sin que se notase. Tienen una carta pequeña pero todo está buenísimo", "author": "Le Patron", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROcW8zc1NREAE", "timestamp": "2 years ago"}, {"text": "La experiencia ha sido fantástica. La comida excepcionalmente buena y el trato muy bueno.\\nHemos ido en familia, los camareros conocen la carta, la recomiendan a la perfección y el plato que llega a la mesa hace honor a lo que te explican.\\nPedimos el timbal de ventresca, una ensalada muy fresca para el verano. Nos gustó el detalle de que la trinchen en la mesa.\\nLa carne está muy rica también. Muy suave y sabrosa. Pero el plato que nos enamoró fue el ladrillo de berenjena y queso canario. Creo que es obligatorio si no lo has probado.\\nEn definitiva estamos contentos del trato recibido, el servicio y la calidad de la comida. Altamente recomendable.", "author": "Héctor Chafla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN2Eyd2xBRRAB", "timestamp": "4 years ago"}, {"text": "Otro almuerzo de primer viernes de mes con los mejores amigos. Esta vez tocó un restaurante de moda, y con muy buenas referencias, muy cerca de la Playa de Las Canteras. Empezamos con unas cervezas bien frías y un jamón de Jabugo espectacular. Y seguimos con una ensaladilla rusa con langostinos, unos huevos estrellados con carabineros, unas gyozas, y una bandeja con bife de black angus, presa ibérica, papas, y pimientos de Padrón. Todo esto regado con unas cuantas botellas de vino tinto Ramón Bilbao crianza. Y de postre pedimos unas torrijas caseras, una fiesta de chocolate, y milhojas de plátano. Todo estuvo buenísimo y el servicio perfecto. Volveremos para seguir probando platos. Muchísimas gracias.", "author": "José María Plácido Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMeXN6bml3RRAB", "timestamp": "a year ago"}, {"text": "La atención del personal y del dueño o encargado, fue excelente, muy profesional, me sentí casi mejor que en casa. La cocina funcionó muy bien y rápida, sin olvidar ningún detalle, y todo me gustó. Lo pasamos en familia, muy bien y grato. Amenazo con volver....", "author": "Jose Luis Núñez Bravo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsa2VpLWVBEAE", "timestamp": "2 years ago"}, {"text": "La comida buenísima, el personal amable y el señor que va a las mesas a explicarte los platos que están fuera de carta un 10.\\nGracias", "author": "Aile Cg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvOUp5WmxBRRAB", "timestamp": "9 months ago"}, {"text": "Todo muy rico y la atención espectacular...", "author": "Yamila Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWcmJ1LUZnEAE", "timestamp": "2 years ago"}, {"text": "Der Mann mit dem Schnauzer ist mein Idol, das ist die wohl passendste Einleitung aller meiner Bewertungen!\\nIch hatte hier die schönste Zeit meines Lebens, hier wird sich noch um den Kunden gekümmert!\\n\\nIch empfehle jedem einen Besuch, das Essen ist sehr fein, die Angestellten sehr freundlich, vom Ambiente kaum zu sprechen.\\nDie Getränke werden ohne Mucks wieder gefüllt.\\nMir wurde sogar die Tür zur Toilette geöffnet!\\n\\nHier ist es übrigens 1h früher als in Deutschland, falls ihr das nicht wusstet!\\n\\nBitte geht hier her.", "author": "Paul Kalhorn", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKeTREc0N3EAE", "timestamp": "2 years ago"}, {"text": "Tanto el personal como la comida son excelentes. El trato fue exquisito desde el principio. Y se notaba un gran conocimiento de la carta, con buenas recomendaciones y una gran experiencia culinaria. Lo recomiendo encarecidamente.\\nDe precio en la media de los restaurantes de este tipo. No me parece caro para el servicio que ofrecen.", "author": "Javier Martin Zurita", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMycjh5UmxRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Los platos que pueden parecer típicos los hacen de una manera original, que están buenísimos. Y el servicio excelente, como si estuvieras en un estrella michelin, pero con una calidad/precio inmejorable. El camarero que nos atendió fue muy simpático y atento.", "author": "Carlos Herrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1MnVtYmxRRRAB", "timestamp": "2 years ago"}, {"text": "Muy buena comida, muy buen servicio. Muy buena experiencia.", "author": "GCarmen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOSGJuTnRjRzVaWlhkdFREaFBibU4yV1dKak0xRRAB", "timestamp": "3 months ago"}, {"text": "Wir waren am 22.01.2024 aufgrund der super Bewertungen im Rincon de Triana essen.\\nGuter Service, übersichtliche Karte und wir sind nicht enttäuscht worden. Lecker Fleisch vom Iberico Schwein und die Kroketten mit Schinken als Vorspeise waren auch köstlich.\\nPreis / Leistung stimmt vollkommen.", "author": "Julian Lohne", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0eE9xNzJ3RRAB", "timestamp": "a year ago"}, {"text": "Sencillamente espectacular. El mejor sitio en el que cenamos de todo Gran Canaria e incluso diría que en general.\\nLa ubicación es genial, en plena playa de las canteras.\\nEl servicio y la comida son más que increíbles. Más propios de un restaurante de un rango de precios muy superior.\\nCenamos el bao de pulpo, carrilleras en salsa y presa ibérica con patatas y pimiento. TODO DE 10/10.\\nEs que no le pondría ni una sola pega.\\n100% recomendable.", "author": "santi paleo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1OXBXMzBnRRAB", "timestamp": "2 years ago"}, {"text": "He ido dos veces porque lo conocí hace poco y la verdad que lo recomiendo al 100%. El personal es muy atento y los platos están riquísimos, todo lo que he probado está de 10.\\nSi van les recomiendo que prueben la Gyozas, hacen una mezcla de las empanadillas japonesas, con una salsa en base al Kimchi coreano que está que te mueres.\\nRepetiré seguro 👍", "author": "Kpasa!", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsM0lIbjlnRRAB", "timestamp": "Edited a year ago"}, {"text": "Buen servicio, la comida muy buena, bien preparada y presentada y muy buen servicio. Las zamburiñas preparadas y flambeadas muy original.", "author": "Ana María DG.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWNU42QWZBEAE", "timestamp": "2 years ago"}, {"text": "Camareros muy agradables y atentos. Buen sabor y buena cantidad y calidad. Muy recomendable.", "author": "Patricia Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXMllmakJnEAE", "timestamp": "3 years ago"}, {"text": "Genial opción para celebrar un comida/cena espacial. Buena ubicación en las canteras y comida de gran calidad. Algunos platos sorprendieron.", "author": "Carlos Carrión", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMmVlVEJBEAE", "timestamp": "9 months ago"}, {"text": "Hemos tenido la oportunidad de ir a cenar dos noches seguidas. Una pena haberles descubierto al final de nuestro viaje. Hemos probado varios platos, el tartar de salmón, aguacate, gyozas, solomillo... Todo de excelente calidad y buena presentación con un toque muy especial. El servicio y trato de los profesionales son excepcionales . Muchas gracias !!!", "author": "Esther Ureña Calle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPNWRMLW5nRRAB", "timestamp": "3 years ago"}, {"text": "La verdad que es un restaurante que merece muchisimo la pena. La atencion del personal, la amabilidad, la excelente calidad de la comida hacen una muy buena una experiencia gastronómica. Con la comida la disfrutas a cada bocado, una explosión de sabores. Quiero felicitar a todo el equipo del restaurante, nos ha gustado muchísimo, volveremos sin duda.", "author": "barrapan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacnRub1BnEAE", "timestamp": "2 years ago"}, {"text": "Comida excelente...como siempre. Trato excepcional...como siempre.\\nY esta vez, en la que nos acompañaba una intolerante al gluten, ese trato superó cualquier expectativa...\\nAmables si s servilismo, cariñosos incluso, cercanos, atentos. Hicieron de un gran día, un día MARAVILLOSO.\\nM GRACIASS!!!", "author": "Eduardo Adrián de Val", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaeDZyNWN3EAE", "timestamp": "2 years ago"}, {"text": "Buen restaurante.Buena comida y buena atención.Lo recomiendo", "author": "Juan Romero Lora", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25BMFV6ZE1kVXRVTnkwemVEbHFXbWRrWTNodVUxRRAB", "timestamp": "4 months ago"}, {"text": "No hay visita que haga a Las Palmas de Gran Canaria que no coma o cene allí. No podéis visitar la isla sin pasar por allí", "author": "Belen Martin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xYWJtNUpiMVIxWlhoMFpHRnhUV0ZtTkhwS2RHYxAB", "timestamp": "6 months ago"}, {"text": "Fui a almorzar con unos amigos,yo ya había ido en otras ocasiones y como siempre no defraudó y a mis amigos que no habían ido les gustó mucho.Calidad precio está bien.", "author": "Maribel Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvamREZm5RRRAB", "timestamp": "9 months ago"}, {"text": "Comida correcta pero precio un poco elevado.", "author": "Manuel Angel Gonzalez Lopez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1UGFraENkazkzV1dOeU1HMXpOVkptWkVaV1JFRRAB", "timestamp": "5 months ago"}, {"text": "Sin duda uno de mis restaurantes favoritos de la isla. Ya son muchas las veces que he ido y nunca ha fallado, tanto comida como servicio. Las gyozas de morcón son una maravilla.", "author": "Cesar Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfM2RQNmlnRRAB", "timestamp": "a year ago"}, {"text": "Estuve allí por casualidad hace unos meses y me encantó. Primero, el trato de los camareros, la verdad que hacen sentirte muy bien y atentos a todos los detalles. En segundo lugar, la comida. Fuimos a picar algo y estuvimos casi dos horas. Una calidad fantástica. A nosotros nos encantó el Solomillo al ajo tostado, fenomenal¡¡ En definitiva, un gran sitio para disfrutar de una buena comida, muy bien situado, y sin duda, para repetir.", "author": "JOSE ANTONIO LORA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZNzhMMVNBEAE", "timestamp": "6 years ago"}, {"text": "Un restaurante excelente, tanto la comida como el trato de los camareros. Recomiendo el bacalao en tempura, el ladrillo de berenjena y el tartar de atún, aunque este último lo tenían fuera de carta. Muy recomendado.", "author": "Laura Pano Sepúlveda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NmRfc3V3RRAB", "timestamp": "a year ago"}, {"text": "Todo de 10. Comida buenísima, de calidad, original, rica, preparada con delicadeza y muy bien emplatada. Camareros y camareras muy amables y atentos. En cuatro días que llevamos aquí he ido ya dos veces a cenar. Buenos precios. RECOMENDABLE 100%", "author": "Noelia Linares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwellTYW5RRRAB", "timestamp": "2 years ago"}, {"text": "Muy mal. Huevos rotos sin papas, tanto los de jamón como los de langostinos., la carne vulgar y por debajo del peso ofertado. Y sobre todo el servicio lentísimo, el personal seco salvo con sus amigos, el local ruidoso. Para no repetir, quizá salvo que seas conocido de la casa.", "author": "jose luis goizueta", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaNXFMamRREAE", "timestamp": "2 years ago"}, {"text": "Excelente situación, producto de la mejor calidad, rapidez y muy buena atención y el local es muy bonito👍👏👏", "author": "Sonia Gonzalez Joven", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxR1Yyb3dOVVJFTm0xWlEwVjJSMGR0WkZVMlRFRRAB", "timestamp": "6 months ago"}, {"text": "Excelente servicio, calidad y ambiente súper acogedor", "author": "Lola Herrera Legido", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkTVRtWlFkVEZLVFRJeU9HZEthakF4ZDFSdk1HYxAB", "timestamp": "a month ago"}, {"text": "Muy bueno todo y l@s camarer@s muy profesional. 👏👏👏👏", "author": "Giuseppe M", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURweE1DVUR3EAE", "timestamp": "2 years ago"}, {"text": "Essen ist soweit gut, allerdings relativ teuer für die Menge und es wird leider wieder ein kostenpflichtiger „Gruß aus der Küche“ serviert, bei dem man vorab nicht informiert wird, dass es kostet.", "author": "Cedric Homann", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VLU1o3T3pFNUwyOVN3EAE", "timestamp": "8 months ago"}, {"text": "Ha sido un gran descubrimiento este restaurante, no sólo por el trato espectacular de todo su personal si no por la preocupación de que tuviera un menú vegano (que no estaba en carta) el cual me hicieron al momento y estaba delicioso. 100% recomendable", "author": "C & T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROeXJ5cm1nRRAB", "timestamp": "2 years ago"}, {"text": "Las porciones un poco escasas pero muy bien elaboradas", "author": "Martha Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmbk9tVmZnEAE", "timestamp": "a year ago"}, {"text": "La comida excelente y con un toque distinto.\\nEn la atención todo el servicio excepcional. Muy bien de precio.\\nDéjense asesorar. No fallarán", "author": "aida elorriaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MXNtZENBEAE", "timestamp": "a year ago"}, {"text": "I got mixed feelings from my experience in this restaurant. The starters were absolutely delicious but then our mains were pretty average. My boyfriend's meat was very dry and it came with flavorless homemade fries. I had crab with eggs but struggled to find any crab in my plate. For this reason this course was quite overpriced (15€). So were the desserts as well. They were good but not exceptional and cost 6,5€ each.\\nThe cherry on top (of the disapointment cake) was that the restaurant charged us for the bread which was served to our table even though we never ordered it. 1,20€ per tiny loaf of industrial bread. I know this practice (or scam) is common in mediocre touristic restaurants on the island, but I really wasn't expecting it from this place, as it seemed to be above standards. We won't come back, neither do we recomend this place.\\n\\nExpérience mitigée dans ce restaurant. Les entrées étaient excellentes, mais la suite n'a pas été à la hauteur. La viande de mon copain était très sèche, servie avec des frites maisons sans saveur. Pour ma part j'avais commandé le crabe, mais j'ai peiné à le trouver dans mon plat (qui m'a quand même coûté 15€). Les desserts sont corrects mais bien trop chers (6,5€).\\nLe cerise sur le gâteau fût de nous faire payer le pain qui nous a été apporté à table sans que nous ne l'ayons commandé. 1,20€ par petit morceau de pain industriel. Je sais que cette escroquerie est courante dans les restaurants type piège à touristes médiocre, mais je ne m'attendais pas à ce qu'elle soit pratiquée ici. Étant donné que nous avions déjà dépensé près de 35€ par tête, je trouve cela totalement malhonnête. Nous ne reviendrons pas, ni ne recommandons cet endroit.", "author": "Maureen Wadley", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoOGEzdV9BRRAB", "timestamp": "2 years ago"}, {"text": "Das Essen war sehr lecker 😋 und wir würden gerne wieder kommen, Nur zum Empfehlen\\n\\nNoch zum Empfehlen das Schweine Fleichs mit dem Räucher Käse. Last es euch schmecken wenn ihr dort seid", "author": "Tim Tom Noack", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYdnZQQW9RRRAB", "timestamp": "a year ago"}, {"text": "Siempre que voy no decepciona. Es de mis lugares preferidos de la isla, por servicio, por comida y por la relación calidad/precio. En Canarias a veces te tienes que gastar mucho para comer así. Las cañas además las tiran perfectas. 👌", "author": "Maria Viera Galvez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6aHFYUTVnRRAB", "timestamp": "a year ago"}, {"text": "Saatiin pöytä 4 henkilölle ilman ennakkovarausta. Laadukkaampi paikka, mutta mielestäni hinta-laatusuhde ei kohdannut täydellisesti. Alkusalaatissa upeat maut, lohi ja lisukkeensa perushyvää, ei säväyttänyt. Pöytäseurueen liha-annos taisi olla maukas. Jälkkärit ihan ok.", "author": "Johanna Manninen", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmdG9HMUlBEAE", "timestamp": "a year ago"}, {"text": "Deuxième passage et toujours aussi bien.... Des prix très corrects et des produits de qualité superbement cuisinés.... cochon grillé, poulpe grill et divin pain perdu.... Il est très bien noté à juste titre...", "author": "Alain Alain", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuNV83R053EAE", "timestamp": "a year ago"}, {"text": "Excellent restaurant !!! La viande est vraiment très bonne.\\nPensez à réserver pour être sûr d’avoir une table.", "author": "Julie B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRcE02SGxnRRAB", "timestamp": "10 months ago"}, {"text": "Ontzettend lekker gegeten, verse lokale producten. Medewerkers zijn ontzettend vriendelijk, houden alles goed in de gaten, en zorgen voor het gastvrije Spaanse gevoel. Ook dat er voornamelijk locals zitten, zorgt echt voor een Spaanse avond.\\n\\nOctopus is echt aan te raden, fantastisch gerecht. Ook de desserts zijn overheerlijk!", "author": "Koen Luiken", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKMTlyMkxBEAE", "timestamp": "2 years ago"}, {"text": "Muy recomendable. Recibimos un trato muy generoso, amable y explicativo. Ordenamos según las recomendaciones y fue genial. Todo muy de agrado en cantidad y calidad. Sabores muy identificados y nuevos para nosotros. Los postres fueron expectaculares y no se vayan sin probar LA TORRIJA. Mil gracias a los amigos que dejamos allí.", "author": "david vid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcHZUSFRBEAE", "timestamp": "3 years ago"}, {"text": "Buenísima experiencia culinaria. Cocina excelente, cuidada, sorprendente y buena relación calidad precio. La profesionalidad de cocineros y camareros se nota y es un gustazo disfrutar de su buen hacer. Si están pensando comer el las Palmas no dudes, te encantará.", "author": "Elena Lozano De Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtLTZtTEl3EAE", "timestamp": "3 years ago"}, {"text": "Todo estaba riquísimo, la carne súper tierna, la ensaladilla tenía un sabor increíble y encima tenían pan sin gluten 🥰", "author": "Cristina Acosta", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURROU51V2xRRRAB", "timestamp": "10 months ago"}, {"text": "Llevaba mucho tiempo sin comer en un sitio así, servicio muy top desde que llegas hasta que te vas , te informan muy bien de cada plato , y te sirven de 10. La comida super rica, pan bao de pulpo ,gyozas,zamburiñas y solomillo rincón fue lo que pedimos nosotros. Volveremos sin duda", "author": "Cristian Martín Cardona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEenBuTTBRRRAB", "timestamp": "a year ago"}, {"text": "Maravilloso.. celebramos el cumpleaños de mi abuelita..y la atención..el servicio..y la comida espectacular...sobre todo por parte del camarero Jesús..una atención excelente.. muy recomendado", "author": "Cyntia Gutierrez Nuñez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRZ2JmaUlREAE", "timestamp": "10 months ago"}, {"text": "Eine Ausnahme in der Menge der Strandrestaurants. In einer kleinen Seitenstraße. Kein Strandblick!\\nAber: sehr freundliche Bedienung, kleine Speisekarte mit ausgewählten Leckereien.\\nHaben nur Vorspeisen gegessen, alle geteilt!\\nDas Spielchen wurde vom Ober mit Begeisterung mitgespielt. Gute Beratung!Immer neue Teller und jedes Mal eine Geschmacksexplosion auf der Zunge. Dazu gute Weine ( By the Glas ! ) zu einem moderaten Preis. Wir kommen gerne wieder!!!", "author": "Hubertus Schmidt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCbDVyeEZnEAE", "timestamp": "2 years ago"}, {"text": "Ubicado cerca de la playa de las canteras, en una de las calles perpendiculares al paseo marítimo.\\nLa comida, muy rica. Comimos guacamole, ensalada de ventresca y cochinillo a baja temperatura. La experiencia muy buena, con un servicio atento y dispuesto. Horario amplísimo. Con precios ajustados.\\nTotalmente recomendable.", "author": "Josu H C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaTdTZTZ3RRAB", "timestamp": "2 years ago"}, {"text": "100% recomendable. Buenos precios. Servicio excelente y personalizado. Admiten mascotas en la terraza. Comida exquisita. Solamente le falta que le den una estrella michelín porque se la merecen. Admiten reservas. Zona de lujo a 30 segundos o menos del paseo de las canteras. Vamos para repetir una y otra y otra y otra vez.", "author": "Jesús García Alfonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWcmVUbjNnRRAB", "timestamp": "2 years ago"}, {"text": "Wir waren zu 6. dort essen und bei 2 Leuten war das Fleisch einfach noch roh obwohl well done bestellt wurde. Der Kellner hat die Teller wieder mit genommen und bei einer Person war es perfekt und bei der anderen Person leider noch sehr zäh", "author": "Sascha Dronszkiewicz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxcW91T0V3EAE", "timestamp": "2 years ago"}, {"text": "Fuimos improvisadamente y no nos decepcionó, al lado de las canteras, un rinconcito muy especial, el camarero muy atento nos atendió estupendamente. Los platos excelentes, pedimos tartar de ventresca, ensaladilla y cochinillo, acompañamos con dos vinos ribera y Rioja también muy en sintonía.", "author": "Raquel Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoN0tMVWNREAE", "timestamp": "2 years ago"}, {"text": "10/10. Salimos súper contentos del local.", "author": "Oliver Castillo Rodríguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkVlpGaFVWMlZPZVROMGJEY3dhMjAyVVhSU1ZHYxAB", "timestamp": "4 months ago"}, {"text": "Muy buena relación calidad precio. Trabajan bien y la atención exquisita. Sin duda es para repetir y probar el resto de la carta. La para asada a baja temperatura nos sorprendió mucho. También la merluza con salsa de trufa", "author": "Joel Pérez Izquierdo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1dmVHTnRBRRAB", "timestamp": "3 years ago"}, {"text": "Hoy hemos comido aquí y no teníamos reserva, nos han atendido enseguida , con mucha amabilidad, todo el personal es de 10 y la comida muy buena, también tienen una excelente carta de vinos, muy recomendable ir a comer aquí, sin duda si vuelvo a Gran Canaria los volveré a visitar.", "author": "Consuelo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcXBTMkRnEAE", "timestamp": "a year ago"}, {"text": "Comida exquisita, la combinación del Carpaccio con trufa y helado fue una grata sorpresa para nuestro paladar, de segundo pedimos gyosas con salsa Kimchi, estaban sabrosísimas, la pasta en el punto perfecto de cocción. Lo mejor de todo, el personal de sala, destacando a nuestro camarero Moisés, un gran profesional. Mi enhorabuena por el gran trabajo de todo el equipo.", "author": "Aida Salas", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKcExYVWRBEAE", "timestamp": "2 years ago"}, {"text": "Me quedé bastante sorprendida.\\n\\nComida calidad precio inmejorable.\\nEl mejor carpaccio que he probado.", "author": "Irene Morales Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURReE11dEtnEAE", "timestamp": "10 months ago"}, {"text": "Hacia muuuucho tiempo que no disfrutaba de lo que es un buen servicio y una magnífica comida, por sitios como este yo podría arruinarme , muchísimas gracias chicos fue una cena espectacular. Repetiremos", "author": "Car Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIcE5lLWJBEAE", "timestamp": "a year ago"}, {"text": "voll gutes Essen und die Bedienung echt Klasse. Zu empfehlen, alles, aber vor allem Cachopo , Gyozas und Pulpo. Alles mit gutem Wein servirte. Tolle Erklärungen bei jedem Gericht, klasse Kellner. Leider Location etwas versteckt aber das Lokal ist auch schön und die Tische groß genug.", "author": "Jorge CC", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4bU9ETFZBEAE", "timestamp": "2 years ago"}, {"text": "No hay palabras para describir este lugar porque cualquier terminología q apliques le queda corto. Espectacular la atención recibida por todos los camareros sin excluir a ninguno, asombrosa la calidad de los productos e impresionante la forma de presentarte los platos en la mesa. Sin duda un lugar q recomendaría para comer y cenar todos los días de la estancia", "author": "Natalia Martínez Tamará", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MTg2WVFnEAE", "timestamp": "3 years ago"}, {"text": "No puedo poner más estrellas a este restaurante porque no las hay.\\n\\nES-PEC-TA-CU-LAR.\\n\\nLos camareros amabilísimos, te cuentan todo, como se cocina, te recomiendan... UNA PASADA.\\nTodo lo que hemos probado estaba rico, sin duda recomendamos ir, por supuesto y en nuestro TOP 3:\\n\\nHuevos con gulas y gambas (no he probado otros así en mi vida)\\nCochinillo a baja temperatura con patatas (nada que ver con el cocinado tradicional del cochinillo, una experiencia nueva)\\nGyozas (Dios mío! Qué manjar!!!)\\n\\nEstuvimos de luna de miel y fuimos a cenar 3 veces, aunque me hubiera quedado allí cada día, de verdad MUY RECOMENDABLE.\\n\\nGracias a todo el equipo, impresionante :)", "author": "Nieves Úbeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyd2RXeFZ3EAE", "timestamp": "3 years ago"}, {"text": "Muy buena comida!!! Y el personal muy amable", "author": "Vicen Gallego", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSURxbi0xVhAB", "timestamp": "4 years ago"}, {"text": "Ambiente muy agradable. Tanto el dueño como todo el personal muy profesional. Comida exquisita. Un poco de ruido pero si todos habláramos más bajo otra cosa sería. Totalmente recomendable", "author": "Maripi", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKcHU3YklBEAE", "timestamp": "2 years ago"}, {"text": "Bien, para mí gusto y con la variedad/cantidad que tenemos ahora en Las Palmas, un poco caro", "author": "Chany Morales Vega", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w4dFQyWTBOMDVLZFVkQ1ZqVXpOSFp2VlhadVQyYxAB", "timestamp": "6 months ago"}, {"text": "Durch die guten Bewertungen aufmerksam geworden, haben wir heute mit Freunden ein kleines Juwel entdeckt. Etwas versteckt gelegen, ganz in der Nähe des Las Canteras Strandes. Aussergewöhnliche Küche, freundliche Mitarbeiter und ein gutes Preis-Leistungsverhältnis im netten Ambiente zeichnen dieses Lokal aus. Wir werden wieder kommen.", "author": "Brigitte Gansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyMDctV01REAE", "timestamp": "3 years ago"}, {"text": "No hay otro lugar como este. Exquisitez en la carta, amabilidad del equipo, pulcritud, sencillez y mucha vanguardia. Está riquisimo y es mi sitio de confianza cada vez que quiero celebrar algo especial. Recomendado 100%", "author": "Ruth SZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkLVBMVUVBEAE", "timestamp": "a year ago"}, {"text": "Restaurante de nuestros preferidos en la ciudad. Ofrece un trato estupendo y una comida de calidad, está todo muy rico. Variedad de vinos. Recomendable.", "author": "Yo Misma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMajlfMTR3RRAB", "timestamp": "a year ago"}, {"text": "Hoy comimos en este establecimiento. Tiene una carta bastante completa. Los platos que pedimos estaban muy ricos.\\nLa atención del personal es de lo mejor que he visto. Está muy bien la relación calidad-precio. Seguro que volveremos.", "author": "José Luis Mesa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNMGVXUXp3RRAB", "timestamp": "6 years ago"}, {"text": "Sin duda, uno de los mejores restaurantes de Las Palmas de Gran Canaria. Buenísima relación calidad precio. El servicio atentísimo. La comida espectacular (especial recomendación el tartar de salmón y un plato que llevaba berenjena y queso). De locos.", "author": "Ana Sampedro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydS1HTHhnRRAB", "timestamp": "3 years ago"}, {"text": "Restaurante muy recomendable. Vine a comer solo y tanto la comida como el servicio fueron excelentes. Buenas recomendaciones y platos fuera de carta. Un 10, me gustaria destacar el servicio, fue inmejorable.", "author": "Pablo Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURab1luWGFBEAE", "timestamp": "2 years ago"}, {"text": "Todo bueno... Para resumir y el dueño simplemente un tío de p. m. Tiene otro restaurante ya en las canteras a 30 mtr de este. Buena calidad sin duda de los productos y podrás probar en Gran Canaria los famosos tomates de Los Palacios y Villafranca de Sevilla... Todo un lujo que se curra el dueño. Chapó", "author": "ANTONIO FERMU", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlOTZEdkF3EAE", "timestamp": "3 years ago"}, {"text": "Ha sido un placer comer en este sitio, no sólo por la increíble comida, si no también por la atención recibida, sobre todo por parte del equipo y destacando a Moisés.\\nPlatos a destacar: las empanadillas, el solomillo y la torrija", "author": "L MCL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREcmY3ZExREAE", "timestamp": "a year ago"}, {"text": "Un restaurante q te sorprende, la atención y los platos, el personal explicando los platos fantásticos…. Mezcla explosiva de sabores , repetiremos siempre q podamos…pero de muy mal gusto cobrar 6€ por 5 trozos de pan muuuy pequeños. Eso es muy feo con la mesa y el ticket q se le hizo…. Siempre a mejorar….", "author": "Macarena Kanerotika", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCa3BQbDVRRRAB", "timestamp": "3 years ago"}, {"text": "Mangiato davvero molto molto bene. Consiglio la carne", "author": "Martina Galasso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5OGJPWFNREAE", "timestamp": "a year ago"}, {"text": "En pocos sitios te sentirás tan bien atendido. La comida está super rica y son muy detallistas, además de simpáticos, desde el cocinero hasta el camarero que te atiende en mesa. Para los amantes de la carne, el jamón y el vino está más que recomendado pero hasta siendo vegetariano puedes comer rico y variado. Yo pedí la ensalada con espuma de manzana, crujientes de langostinos y queso de cabra, ladrillo de berenjena y de postre milhoja de plátano. Todo estaba delicioso. Así que, me arriesgo a decir que lo recomiendo hasta para vegetarianos. Volveré seguro. Encima está bien ubicado, en la avenida de las canteras en una calle transversal. Comes y te das un paseo. :)", "author": "Alexandra Mejias Herrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXczgzcW1nRRAB", "timestamp": "3 years ago"}, {"text": "Ottimo ristorante con impeccabile servizio!tutto il personale, particolarmente attento e molto professionale. Ogni piatto viene descritto è spiegato nel minimo dettaglio. Cibo veramente originale e ottimo!super consigliato!!!", "author": "cecilia cecio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHaDlDLWpRRRAB", "timestamp": "4 years ago"}, {"text": "Carta variada con una comida muy rica, con una mezcla de sabores muy lograda. El trato de los camareros, inmejorable. Son encantadores y se nota que ponen todo de su parte para que los clientes estén satisfechos. Un gran descubrimiento!", "author": "Diana Mm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbW9meDNRRRAB", "timestamp": "5 years ago"}, {"text": "La comida es simplemente espectacular!! Diferente, buena y sabrosa. Destaco los camareros que son de 100👌!! Nos explicaron cada plato, sabían perfectamente lo que te estaban vendiendo. Sitio para repetir y recomendar", "author": "melisa solera delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2b19QQXpnRRAB", "timestamp": "4 years ago"}, {"text": "Todo un placer haber cenado anoche , productos de primera calidad y postres exquisitos además un buen servicio de mesa.\\nTotalmente para repetir.", "author": "andres cabral", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqdHJqOTRRRRAB", "timestamp": "a year ago"}, {"text": "Le cochon de lait était exceptionnellement bon, et les raviolis/gyozas au chorizo étaient également excellents. Le service irréprochable et agréables. Nous avons passé un très bon moment.", "author": "Sophie Cottin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyaXNLZkt3EAE", "timestamp": "3 years ago"}, {"text": "På dagen hvor vi i Danmark fik ny konge fejrede vi det med en dejlig middag på Rincon. Det bedste var en starter med rejer på spid med gedeost og aprikosmarmelade. Vi delte denne starter. Hovedretten blev anrettet ved bordet med flammer og elegance. Kødet var udskåret, præsenteret før servering. Var perfekt medium og meget mørt.\\nAfsluttet måltid med citrolikør the house.\\nSød, venlig, smilende, opmærksom betjening.\\nAnbefales hermed.", "author": "Kurt C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNONGNhdGxRRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien restaurante, buen servicio, y la comida expectacular", "author": "José Oliva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKc3YzVzdRRRAB", "timestamp": "2 years ago"}, {"text": "Si no es mi lugar favorito, pega en el palo. Excelente todo, mucho detalle en la combinación de sabores, la atención excelente de todo el personal, vinos buenisimos y de los pocos lugares de la isla donde EL MOZO SABE DE VINOS Y PUEDE RECOMENDAR 👏🏼👏🏼", "author": "Mar M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURUNGJtbXJ3RRAB", "timestamp": "a year ago"}, {"text": "Platos escuetos, sin ser brillantes y pocos elaborados. Nada que destacar para que pagar más de 60€ por cabeza. Salud y suerte amigos", "author": "Francisco José Santana Bernal", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNXNXRHZ3RRAB", "timestamp": "11 months ago"}, {"text": "Ayer día 4 de marzo comimos en éste maravilloso restaurante, la comida exquisita, el trato de 10,repetiremos..GRACIAS", "author": "Toñy Sosa moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRcnNHSzJ3RRAB", "timestamp": "10 months ago"}, {"text": "Tyvärr, trots väldigt bra omdöme så var inte detta vårt bästa val. Fina lokaler och trevlig personal. Rätterna dock inte den förväntade smakupplevelsen. Torsken var friterad och serverad med tunna pomfrits. Samma pomfrits som serverades till de väldigt goda kroketterna. Det ugnsbakade svinet smakade inget. Vi lämnade väldigt besvikna trots vita dukar och snygga lokaler!", "author": "Gunilla Xxxx", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5eXFxdVdREAE", "timestamp": "a year ago"}, {"text": "La comida y el servicio de 10. Volveré sin duda", "author": "Victor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNleUkzUjh3RRAB", "timestamp": "3 years ago"}, {"text": "Sitio al que regreso cuando voy a Las Palmas GC", "author": "Lucia L", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2prNFlrcFhZMXBqU3paYVpFNUhXbWRsZERGYWNXYxAB", "timestamp": "4 months ago"}, {"text": "Todo muy bueno: ambiente, decoración, atención y profesionalidad... si quieres comer algo diferente, darte un homenaje, muy recomendable. Sólo una cosilla, una sugerencia, cuidado con la sal... creo que se abusa un poco y deja algunos platos sin la posibilidad de disfrutar de sus sabores", "author": "S", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMkkzbWNREAE", "timestamp": "4 years ago"}, {"text": "Excelente comida, excelente servicio, muy buena carta de vinos. Ambiente tranquilo para ir con amigos o familia. He comido en varias ocasiones y seguiré acudiendo….", "author": "Carmen Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwMkszYnR3RRAB", "timestamp": "2 years ago"}, {"text": "Es la segunda vez que almuerzo allí. La comida muy buena, el servicio muy profesional y atento. Tiene una carta de vinos muy extensa. El ambiente muy agradable", "author": "Emilia R.G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwbl8zNkNBEAE", "timestamp": "2 years ago"}, {"text": "Carta moderna y sugerente con ingredientes no tan habituales. Servicio atento. En nuestro caso algún plato muy sabroso, tartar de salmón, otro bastante plano para lo esperable, judiones con perdiz, y un bife sabroso.... Pero frío, y la respuesta tras pedir una piedra fue un plato tibio, 5 minutos más tarde.. a pulir estas cosas", "author": "Gus Vega", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2c2ZUUXFnRRAB", "timestamp": "4 years ago"}, {"text": "Servicio excepcional, comida exquisita con una relación calidad, cantidad, precio muy adecuada. Recomiendo encarecidamente el plato de costillas, está preparado con la carne del costillar y es difícil encontrar un solo hueso. Pienso repetir.", "author": "Astorg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPc2V6am5RRRAB", "timestamp": "3 years ago"}, {"text": "Comida muu rica y elaborada. Una atención excelente de todos los camareros y una cosa wue me encantó es que en todos los platos te explicaban su composición y elaboración. Todo ello añadido al sitio espectacular. Simplemente 10", "author": "Rubén Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2ay02LVJBEAE", "timestamp": "4 years ago"}, {"text": "Buena comida y buen servicio muy recomendable", "author": "Disfrutar De los pequeños detalles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDX2VqbURBEAE", "timestamp": "5 years ago"}, {"text": "Hemos tenido una cena fenomenal! El vino estaba muy bueno y la comida tambien, el servicio es unico, ellos te explican todo lo que estas comiendo y ponen un monton de atencion en los detalles! Lo hemos pasado super bien!", "author": "Luce Burello", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXNkkzT013EAE", "timestamp": "3 years ago"}, {"text": "No lo conocía y me ha gustado mucho. La comida muy buena: el guacamole, la presa, el solomillo, el pulpo, todo muy rico. El servicio amable y atento a pesar de que era un domingo especial y había mucha gente", "author": "Emilia Fernández carnero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyNE5lNjZBRRAB", "timestamp": "3 years ago"}, {"text": "¡Muy bien! Se come muy bien y por las circunstancias especiales del covid-19 y el aumento de la pandemia por desgracia el grupo de jubilados lo hemos tenido que reducir a cuatro comensales. Seguro que repetiremos. Sólo observé otra mesa con más de tres metros de separación.", "author": "Gloria Muñoz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTXzh1ZjZBRRAB", "timestamp": "5 years ago"}, {"text": "Izcila apkalpošana un ļoti garšīgs ēdiens !", "author": "Ligita Viluma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxOWJhOEZ3EAE", "timestamp": "2 years ago"}, {"text": "Una buena experiencia en la primera visita a este lugar.\\nBuena comida, buen ambiente y sobre todo buen servicio. El precio un poco mayor en relación con otros restaurantes de la zona pero merece la pena probar.", "author": "Raúl Rodríguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzOGZpVUpBEAE", "timestamp": "5 years ago"}, {"text": "La comida estaba bien, aunque cantidades justitas. Los camareros muy amables. Lo malo es que estuvimos 40mn esperando a que nos atendieran y se equivocaron en algunas bebidas. Supongo que serán pocas personas para mucho trabajo o no lo sé.", "author": "Meli LH", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCMU8yQ0pREAE", "timestamp": "3 years ago"}, {"text": "Todo riquísimo. Una auténtica experiencia. El servicio muy amable y atento. Pocos sitios como este. Marca una diferencia con otros restaurantes. Muy bien de precio. Necesario reservar.", "author": "Christian Reyes Nicholas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldWFHaVN3EAE", "timestamp": "3 years ago"}, {"text": "Platos de excelente calidad,servicio impecable,protocolo covid excelente", "author": "Noemi Vidal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaGF1eW53RRAB", "timestamp": "5 years ago"}, {"text": "Endroit fréquenté par les locaux donc rassurant. Service très agréable et cuisine au top!! Très belle expérience culinaire. Très bon moment", "author": "Pierre P.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNTcyckNREAE", "timestamp": "2 years ago"}, {"text": "La comida estaba muy rica y el trato fue inmejorable en todo momento. Repetiremos seguro porque sitios así de completos hay muy pocos.", "author": "Victor Gutierrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6aG9UTHR3RRAB", "timestamp": "a year ago"}, {"text": "Un sitio maravilloso para compartir con amigos y familia la comida estaba buenísima, el servicio impecable. Lo recomiendo 100%.\\nCalidad precio excelente", "author": "Susi Rodriguez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKd3RPVWpnRRAB", "timestamp": "2 years ago"}, {"text": "Спасибо за прекрасный вечер!\\nЕда 5*\\nСервис 5*\\nВино 10*😉", "author": "Olexis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtekozS1p3EAE", "timestamp": "3 years ago"}, {"text": "Un sitio muy recomendado. Los camareros muy amables te hacen explicación de todos los platos y los terminan en el momento en tu mesa. Muy buena calidad de productos, además esta todo riquísimo", "author": "Marta CP", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eExubEpnEAE", "timestamp": "4 years ago"}, {"text": "Una maravilla de sitio, recomendado si quieres una experiencia gourmet, producto increíble !!!", "author": "Salvador Verdugo Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTGtudEwtbDhHMG5RRRAB", "timestamp": "8 months ago"}, {"text": "Espectacular. En trato, en servicio , en rapidez y sobre todo estamos hablando de una cocina que va un paso por delante de buena comida, ya hablamos de una cocina de autor. Y buen conocimiento para aconsejar un buen maridaje.", "author": "Eduardo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNXNUTXNRRRAB", "timestamp": "3 years ago"}, {"text": "Sabrosa cocina española la que elaboran en el Rincón de Triana, a escasos metros de la Playa de Las Canteras. Buen producto, mucho sabor, un toque de creatividad, raciones generosas y precio contenido. Sin duda una opción muy acertada en Las Palmas de Gran Canaria.", "author": "Christian Pérez Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTZUYjhBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Un buen restaurante, buen precio y muy agradable. La comida está muy buena, y el menu es variado. El servicio es lo que mas destaco, el camarero John muy profesional.", "author": "Tara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURacjZ6My1nRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien la comida y el trato pero no me gustó que la mesa no tuviese mantel y que la salsa de macho esa de mango era muy escasa el solomillo ibérico de cerdo lo sirvieron con batata no de papá y un poco caro paro la calida de la comida que era muy buena pero para mí los entrantes eran caros", "author": "Saruca Calixto Toledo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCb2F1NmNnEAE", "timestamp": "3 years ago"}, {"text": "Comida muy elaborada con producto excelente y servicio aún mejor, muy profesional. Rafael el “vasco-canario” un crack! Muy recomendable.", "author": "Rut Osambela", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQME1MMXVRRRAB", "timestamp": "a year ago"}, {"text": "Cocina y producto espectacular. Tiene una selección de vinos como en pocos sitios. La atención inmejorable. Come y disfruta de la historia de cada plato.", "author": "Fernando Vélez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtdXI3MlNnEAE", "timestamp": "3 years ago"}, {"text": "Fast schon Fine Dining, nur wenige Meter von der Strandpromenade Las Canteras entfernt.\\nWer etwas außergewöhnliches sucht, wird es hier finden.", "author": "Catrin Reuber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2ckt1cTVnRRAB", "timestamp": "a year ago"}, {"text": "El encargado utilizo la misma tactica que otro restó del lugar \\"esta todo reservado\\" (el 90% de las mesas vacias un sabado a las 14hs). Roza lo xonófobo, elegir a quien atender. De todas formas los que atendian tambien nos dieron mala impresion en cuanto a lo salubre, media vuelta y a buscar otro lugar que quiera trabajar y atender bien a clientes que van a dejar una buena pasta. No lo recomendamos, ojala atiendan a los bornones a ver si los aceptan o les dicen que no....jaja\\n\\nPd: esto sucedio en este local. Como dato adicional recuerdo que consultamos si disponian de aire acondicionado y nos ofrecieron dijeron \\"se podrian sentar cerca de la entrada\\"(???)\\n\\nPor suerte luego de que ustedes nos dijeran que tenian todo reservado enco tramos un lugar donde nos atendieron de maravilla (Piemonte) al cual le realizaré una reseña con cinco estrellas.", "author": "Ezequiel Donadio", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1cThEbHdRRRAB", "timestamp": "3 years ago"}, {"text": "Comida y servicios inmejorables. El camarero que nos atendió, John nos dio un trató y llevó a cabo un servicio espectacular. Mario, el dueño, de 10. Totalmente recomendable.", "author": "José Carlos Olivero Ortega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKLXFleG5nRRAB", "timestamp": "2 years ago"}, {"text": "Excellent restaurant à tous points de vue.\\nIl me faudrait parler de chaque plat.. Les petites noix de Saint Jacques, le guacamole,, extra !! Les gyozas.. Juste une merveille !\\nTout était parfait digne d'un étoile..\\nMerci !!\\nJoëlle et Yves", "author": "Joelle Weber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNocGNHS0l3EAE", "timestamp": "2 years ago"}, {"text": "Muy buena comida, magnífico servicio. Unos platos exquisitos sobre todo el timbal de ventresca y el ladrillo. La carne muy rica. Repetiremos. Muchas gracias por la atención y servicio.", "author": "M Rm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN2RYNzlRRRAB", "timestamp": "4 years ago"}, {"text": "Mycket bra mat till rimligt pris", "author": "Thomas Klevås", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNybk12VjBBRRAB", "timestamp": "a year ago"}, {"text": "Sehr gutes Restaurant sehr freundliche und zuvorkommende Bedienung erklärt viel rund um die Speisen und lässt sich Zeit bei der Beratung das Essen war ausgezeichnet und reichhaltig der Preis ist auch völlig ok für das was geboten wird gern wieder", "author": "Simon Richter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1LTRlZGNREAE", "timestamp": "3 years ago"}, {"text": "Me gustó mucho. Ambiente agradable, la comida excelente y un trato agradable.\\nDestacó el guacamole hecho en Mesa.\\nRecomendación: ampliar la oferta vegetariana.", "author": "Ana Maria Ronda Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcjV1NjVnRRAB", "timestamp": "3 years ago"}, {"text": "Buen ambiente, buen trato y mejor comida", "author": "Raquel Padrón", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210MlNXSllNbGRsVVhwUVFWbFdiR016YVZkYVRYYxAB", "timestamp": "5 months ago"}, {"text": "Muy buen sitio para comer. El servicio y atención es magnífico. Repetiremos. La comida muy buena. Quizás en los postres, concretamente la torrija, no muy acertado.", "author": "R TP", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSa2JUS1BBEAE", "timestamp": "2 years ago"}, {"text": "Fuimos a cenar en Nochevieja y solo tengo buenas palabras. El trato y la atención fueron muy buenos, también la comida y el ambiente.\\nLo recomiendo.", "author": "Patricia Silva", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxeGRxRFJBEAE", "timestamp": "2 years ago"}, {"text": "Sitio excelente para celebrar el día 31 de diciembre. Comida muy buena y ambiente fantástico, camareros fantástico y buen trato. 100% recomendado", "author": "irina Silva Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxcVlmazBBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente luga, es un espectáculo! 1000% recomendado !", "author": "Reducing Body", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTlhd1V3EAE", "timestamp": "2 years ago"}, {"text": "¡Qué grata sorpresa y qué maravilla tener un restaurante como este tan cerquita!\\nLa carta es ESPECTACULAR, pero es que si encima, el personal es tan atento, agradable y profesional, hacen de este lugar un indispensable de la ciudad ¡Para repetir y repetir!", "author": "Pilar S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyaGRxZm1BRRAB", "timestamp": "3 years ago"}, {"text": "Comida muy buena y sevicio exquisito.\\nBuena bodega de vinos. Y todo a un paso de Las Canteras. Por poner algún pero, aunque estaba climatizado, pasé un poco de calor", "author": "Vicente M. Ferrer Navarro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1cXUtTS1nRRAB", "timestamp": "2 years ago"}, {"text": "Una experiencia de 10.\\nEl trato inmejorable, la fusión de sabores en sus platos un espectáculo!¡\\nSi tuviera que recomendar un plato, sería las gyozas de morcón.\\n100% recomendable.", "author": "jennifer granados", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSdGVxNll3EAE", "timestamp": "2 years ago"}, {"text": "Fuimos a comer un grupo de amigos y nos encantó. La ensaladilla está buenísima, lo recomendamos al 100%!! Buena calidad y atención. Volveremos si venimos a Gran Canaria.", "author": "Alfonso Otero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcDV1X3l3RRAB", "timestamp": "4 years ago"}, {"text": "Lugar excelente, comida brutal, zamburiñas flambeadas en el momento riquisimas, pan bao, palitos crujientes de langostinos, sin duda para repetir ….", "author": "Laura Manzano Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OElPV1F3EAE", "timestamp": "a year ago"}, {"text": "De los mejores restaurantes en los que he comido en las palmas\\nMuy recomendable pedir las zamburiñas el crujiente de langostinos y queso de cabra la pata de cochino a baja temperatura y de postre las milhojas de plátano", "author": "Mario Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWNF9pV0RnEAE", "timestamp": "2 years ago"}, {"text": "Espectacular!!! Todo muy bueno, el servicio inmejorable. Calidad precio excelente….y el guacamole para mi el plato estrella!!!! 100% recomendable", "author": "Constanza Fornieles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURleWFPWkVREAE", "timestamp": "3 years ago"}, {"text": "En mi vida …. Gracias\\n\\nCarpaccio, postre torrija , guiozas pero lo que ya se lleva la palma es el pulpo\\n\\nNada más que añadir , el mejor de gran canaria sin duda\\n\\nIncreíble !!", "author": "Titanium Time", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNiNXJxWW9nRRAB", "timestamp": "a year ago"}, {"text": "Comer no es sólo alimentarse, los humanos somos el único animal que elabora su comida. Sin duda, en no menos de un par de cientos de miles de años, hemos aprendido a mejorar y conservar aquello de lo que nos alimentamos resultando el culto y cultivado humano placer del gusto, que diría Savarin. En el Rincón de Triana se puede, como en ningún otro sitio de Las Palmas, vivir la actualización de aquel largo proceso: las nuevas técnicas de cocina para mejorar los sabores de siempre. Pescado en cocción a baja temperatura, jamás pasado, en todo su sabor y frescura; carrilleras, o cordero, que se deshace en sabores en la boca. Steak Tartare, crudo, cómo no, pero en un punto perfecto si es el gusto.... Así, en una medida variedad, exquisitas preparaciones culinarias fruto del mejor saber.\\nVinos cuidados para acompañar. Y, con todo, precios ajustados.\\nQué más puedo decirles, de lo mejor.", "author": "Ismael García-Romeu Díaz de la Espina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNa19peVh3EAE", "timestamp": "6 years ago"}, {"text": "Un excelente sitio para degustar buenos platos y pasarlo bien entre amigos o familiares...", "author": "Misael Domingo Rodriguez Lamas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MzVMTERREAE", "timestamp": "a year ago"}, {"text": "Loistava pikkuravintola, joka ulospäin näyttää tavalliselta tapaskuppilalta, mutta on aivan muuta. Ruoka oli erittäin laadukasta, viinilista laaja ja viinien suosittelu osaavaa. Palvelu oli alusta loppuun ystävällistä ja ammattitaitoista. Paras ravintolakokemukseni lukuisien Las Palmasin matkojen aikana.", "author": "Marko Paasonen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCMmZtYW93RRAB", "timestamp": "3 years ago"}, {"text": "Meille tuotiin pyytämättä leipä, josta veloitettiin extra maksu. Ruoka oli hirveää, liha jäi syömättä. Menu hyvin suppea. Ruuan jälkeen erittäin huono olo koko illan ajan. Tarjoilija ystävällinen.", "author": "Lin da", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOUsyRGRBEAE", "timestamp": "3 years ago"}, {"text": "La comida bastante escasa, relación calidad precio poco acorde a las raciones....\\n\\nBuen ambiente y trabajadores entregados, pero creo q eso ayuda, pero no es lo único que se pide cuando se sale a comer...", "author": "Guacy Sos", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCNjZybkJBEAE", "timestamp": "3 years ago"}, {"text": "Un fraude ,la relación calidad precio es pésima,el queso canario era de goma de HiperDino,el solomillo en rodajas estaba seco ,soso y frío,la sal se la echan por encima en el plato no al cocinarlo, se creen que los adornos de crema al oporto mejoran y nada de nada,muy bonito el restaurante pero la imagen no sirve da nada si no das calidad y cocinas mal", "author": "RAMON SANCHEZ", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cjZyQ1FBEAE", "timestamp": "2 years ago"}, {"text": "Buena comida, buen servicio, ambiente acogedor y agradable. No es nada barato, pero tampoco excesivo. Necesario reservar", "author": "SENDER59", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREbDVMeDJ3RRAB", "timestamp": "a year ago"}, {"text": "Espectacular comida increíble e innovadora y un trato del personal increíble", "author": "Francisco Hernández Ramos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKeVAyZHVBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente experiencia. Jesús el que nos atendió, muy atento y amable. Volveremos seguro.", "author": "Ruben", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRX3JlaFJBEAE", "timestamp": "10 months ago"}, {"text": "Sorprendidos gratamente. Mi familia y yo quedamos encantadisimos al encontrar el que se ha convertido en nuestro restaurante favorito,comida de primera calidad y servicio de diez.Repetiremos sin duda, salimos con muy\\nbuen sabor de boca!", "author": "Janel K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxanF2RTBBRRAB", "timestamp": "4 years ago"}, {"text": "Sitio genial con un trato espectacular, comida muy buena, se nota que hay cariño por el producto que sirven. 100% recomendable.", "author": "Ardiel Estevez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNzhHZ1dBEAE", "timestamp": "Edited 2 years ago"}, {"text": "Todo muy bueno. De las mejoras croquetas que hemos comido, igual que la ensaladilla. Buen trato.\\nVino muy recomendable.\\nBuena calidad - precio.", "author": "Manuel Regal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN3FqRzRRRRAB", "timestamp": "4 years ago"}, {"text": "Fuimos 3 hermanos a nuestro almuerzo de Navidad y estuvo espectacular.La atención del personal fue inmejorable y cada plato que pedíamos nos explicaban el proceso.De lo mejorcito de Las Palmas.Volveremos sin duda.", "author": "Miguel Ángel Díaz Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTbnJpZ21RRRAB", "timestamp": "5 years ago"}, {"text": "Sencillamente espectacular, la atención los camareros, la cocina, los detalles, de los mejores restaurantes en donde haya comido en mi vida. con una cocina de autor y atención exquisita, situado en un entorno paradisíaco como es la playa de las canteras, en las palmas de gran canaria", "author": "IvanJack7x", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdHJTY01BEAE", "timestamp": "5 years ago"}, {"text": "Me ha gustado mucho este restaurante, sobretodo la atención recibida por parte del personal, muy amable y atento, la comida, original y muy buena lo que más la ensaladilla.", "author": "María Sofía Rodríguez Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlME5EVWh3RRAB", "timestamp": "3 years ago"}, {"text": "Lugar encantador, volveremos sin duda. Atención de 10 y la comida es buenísima.", "author": "Gazmira Morales Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQcHYzZFNnEAE", "timestamp": "a year ago"}, {"text": "Maravillosa experiencia culinaria, explosion de sabores y texturas. Local decorado con buen gusto. La atencion impecable. 100% recomendable.", "author": "Miguel Orihuela Naranjo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURScjV1VHZnRRAB", "timestamp": "2 years ago"}, {"text": "Sitio recomendado para comer y tapear, buena calidad / precio, excelente atención por parte de los camareros y el chef. 🧑‍🍳", "author": "Kelly Parra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNINklMRExREAE", "timestamp": "a year ago"}, {"text": "ES-PEC-TA-CU-LAR un lugar bonito y acogedor, donde la comida es hecha y servida con gran cariño y dedicación.\\nPlatos originales como el mojo con espirulina o el guacamole tradicional con un toque personal hecho delante del cliente. Y el solomillo al ajo tostado ...ummmmm una delicia, sin duda repetiré!!", "author": "Lara Palacio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwcnYzTzh3RRAB", "timestamp": "6 years ago"}, {"text": "El mejor restaurante de la isla.\\nTrato excelso\\nProducto de primera calidad.\\nRepetiremos!", "author": "miguel Nogueira romeo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMza05IWG5BRRAB", "timestamp": "a year ago"}, {"text": "Nuevo descubrimiento.Servicio excepcional.Dejaros llevar por los consejos de los profesionales,Ruben y Marc en sala.El dueño,un encanto,de Sevilla.De ahí lo de El rincón de Triana,creo😅.Los cocineros saben lo que hacen y así vuelven los platos a cocina. ..Vacios¡¡¡¡.\\nMuchas Gracias por todo.Volveremos", "author": "ALICIA SUAREZ RIVERO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaktET1hBEAE", "timestamp": "4 years ago"}, {"text": "Una carta perfecta en variedad y cantidad de plato. Son explicados todos ellos por un personal muy profesional que siempre está pendiente del cliente. He repetido varías veces y más que volveré", "author": "Jesus Madero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCc1lfWTZBRRAB", "timestamp": "3 years ago"}, {"text": "Nos gustó mucho la calidad del producto y la atención", "author": "Ana Bodero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRelZ6RXpla3BxWDJsRGNFUkJWMEY0UW1wbGQxRRAB", "timestamp": "6 months ago"}, {"text": "Hoy hemos estado comiendo aquí por el cumpleaños de mi mujer y la verdad que la comida y el trato espectaculares, repetiremos sin dudarlo!! Hasta le han cantado el cumpleaños feliz!!", "author": "Jordi Masferrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXN1B2RnlnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena comida, mejor servicio y atención. De estas sobremesas donde no tienes prisa por irte, ni ellos por que te marches. Se agradece un trato así.", "author": "Miguel Velázquez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDLVBLRjB3RRAB", "timestamp": "5 years ago"}, {"text": "Un lugar muy recomendable que cuida los detalles", "author": "Antonio SANTANA CRUZ", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwMlFVUk5OVkpwVWtwNFZuaHBiVVJoVkhBMFVsRRAB", "timestamp": "Edited a month ago"}, {"text": "Trato impecable. Platos exquisitos. Precios adecuados. Perfecto para disfrutar de una buena cena. La oferta de vinos es excepcional.", "author": "Smart Max", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhaDRyR3l3RRAB", "timestamp": "4 years ago"}, {"text": "Muy buena opción, con relación calidad precio sobresaliente.", "author": "Miguel Ángel Calvo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21FNWFHSTVYMnQwUmtndFpGVllNalpqVG1kSGQwRRAB", "timestamp": "7 months ago"}, {"text": "Comida moderna muy buena y dan la opción de comida más tradicional para niños también.\\nCamarero muy simpàtico.\\nHay cerveza cruzcampo.\\nRaciones algo escasas y algo caro.", "author": "Rosa Jimena", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyM0tHcGZnEAE", "timestamp": "3 years ago"}, {"text": "Buen servicio, buena comida, fantástico lugar", "author": "MANUEL CAMARENA ROSA", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tvMVFYVXlTV1kxVmtWVWJXdG1jblJIU3paelZsRRAB", "timestamp": "6 months ago"}, {"text": "Wir waren überrascht von dem sehr gutem Essen, hervorragende Service, bei Beratung der Speisen und Getränke (Weine und der Rum Azehuras) . Alles in allen wirklich gut.\\nMan spricht auch englisch😉", "author": "Uwe Böhler", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSeUtYdWR3EAE", "timestamp": "2 years ago"}, {"text": "Comida buenísima. Los camareros muy pendientes y serviciales.", "author": "Miriam Paréns", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBMlotWFJBEAE", "timestamp": "11 months ago"}, {"text": "Decepcionada la última vez. Las raciones más escasas. Jamón traído ya cortado. Poco vino al servirlo en copas y muy caro. Esta cambiando y es una pena", "author": "Victoria Hernandez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1N1pIMXBBRRAB", "timestamp": "3 years ago"}, {"text": "El trato espectacular, la comida exquisita, da igual lo que elijas para comer, ningún plato ye defraudará, voy siempre siempre que visito Gran Canaria.", "author": "Maria de la Luz Martin Miguel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPczhYbTlBRRAB", "timestamp": "3 years ago"}, {"text": "Comida deliciosa y camareros que te asesoran muy bien. Únicas pegas el precio y lo poco cuidadas las paredes.", "author": "Jose luis Gascon andreu", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNua0ktZlNnEAE", "timestamp": "a year ago"}, {"text": "He estado tres veces con un grupo grande. La comida exquisita y el trato también. Para repetir.", "author": "yelzhar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bW9EUW5RRRAB", "timestamp": "Edited a year ago"}, {"text": "Buena comida y excelente servicio. Roberto muy agradable", "author": "Luis Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3cEtyRDl3RRAB", "timestamp": "10 months ago"}, {"text": "Hoy llovía y me metí en un rincón......\\nY menudo rincón, por casualidad en mi último día en la isla ha sido un homenaje en toda regla. Esta gente ama lo que hace, local, servicio y comida para quitarse el sombrero.", "author": "Victor Moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNbTRQaHR3RRAB", "timestamp": "6 years ago"}, {"text": "De 10! La comida exquisita y el servicio excelente. Para repetir y recomendar sin duda", "author": "Mayte Doldom", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3b29QS19nRRAB", "timestamp": "a year ago"}, {"text": "Restaurante muy recomendable. Excelente atención, especialmente Rafa y Cristian. Muy buena relación calidad precio. Producto bien tratado. Volveré seguro", "author": "Laura Esther", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNMGRYTVp3EAE", "timestamp": "6 years ago"}, {"text": "Einfach nur gut. Absolute Empfehlung, sowohl Ambiente als auch essen. Die guacamole war besonders toll.", "author": "Felix Hartmann", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeE15VjJnRRAB", "timestamp": "3 years ago"}, {"text": "El personal que atiende es increíble pero la comida lastimosamente no lo es tanto… falta más gusto y variedad", "author": "francel iadevaia", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cWJDeE5BEAE", "timestamp": "a year ago"}, {"text": "Sitio excelente... No tengo palabras...platos elaborados con sabor increíble. Majisimos un trato increíble....vamos para repetir muchas veces!enhorabuena....", "author": "cristina flores", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1X2FPSkdnEAE", "timestamp": "3 years ago"}, {"text": "Comida muy buena, tanto la carne como el marisco. Rápidos, y súper amables 😊", "author": "Nadia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucjR6QXdBRRAB", "timestamp": "a year ago"}, {"text": "Hemos comido genial, platos diferentes y atencion exquisita, todo un acierto en estas vacaciones", "author": "ma pepi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsd3Vic0JBEAE", "timestamp": "2 years ago"}, {"text": "Los platos a destiempo y poca cantidad, el arroz a nuestro juicio estaba pasado, pagar 40 euros por persona y no invitar a una copa siendo más de 25 personas por no decir 30.Era el segundo año, pero ya quedamos que no iríamos más.Los camarer@s fueron geniales e hicieron lo que pudieron.", "author": "winnie", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCbG9yUHdnRRAB", "timestamp": "3 years ago"}, {"text": "Hyvä ruoka", "author": "Susanna Koponen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmck5uM0pnEAE", "timestamp": "a year ago"}, {"text": "Excelente servicio, muy buena calidad, cantidad adecuada.\\nUn poco ruidoso, sería porque estaban todas las mesas llenas 😊", "author": "Cristina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKbHUyUm5BRRAB", "timestamp": "2 years ago"}, {"text": "Nos gustó todo: la comida, el servicio, los precios, el ambiente… ¡Todo! Lo recomiendo sin duda!", "author": "Lucia Cobi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMeHBDUVJBEAE", "timestamp": "a year ago"}, {"text": "Todo muy bien, lo único, que el local no está bien insonorizado y para grupos, muy ruidoso. Muy buena comida y servicio", "author": "jose garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqaXNTWWZnEAE", "timestamp": "a year ago"}, {"text": "Restaurante muy recomendable comida riquísima servicio y trato muy bueno,se nota la escuela donostiarra 👍", "author": "benito rivera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIeDRXRmNBEAE", "timestamp": "a year ago"}, {"text": "Urig, klein und fein, zwar 50 Meter von der Strandpromenade entfernt, aber es lohnt sich. Wow, was für Speisen. Einzigartig. Sehr zu empfehlen.", "author": "Dieter Assenmacher", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTgtbHRnRRAB", "timestamp": "4 years ago"}, {"text": "100% recomendable!!! Trato excelente, comida exquisita y el personal es maravilloso. Seguro q repetiremos.", "author": "nuria martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCa3BQRWhBRRAB", "timestamp": "3 years ago"}, {"text": "Restaurante 100% X 100% recomendable, platos muy elaborados y de buena calidad, trato excelente y profesional, precios muy razonables. Sin duda volveré!!!", "author": "Oscar Muñoz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcy1qZ1h3EAE", "timestamp": "6 years ago"}, {"text": "Muy recomendable, comida riquísima y bien elaborada, servicio muy atento y unos postres espectaculares", "author": "Fernando Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKdjk3UzZBRRAB", "timestamp": "2 years ago"}, {"text": "esperienza molto positiva,personale gentile e premuroso ,cibo ottimo con prodotti locali,spiegati con pazienza ,posto molto carino ,ci ritorneremo", "author": "Ottone Tassi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsX09QZkZnEAE", "timestamp": "2 years ago"}, {"text": "La comida estupenda estaba todo buenísimo y el trato excelente, lo recomiendo sin lugar a duda", "author": "Carlos V. A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwMGVhUGV3EAE", "timestamp": "2 years ago"}, {"text": "Comida de calidad y atención de 10. Fusión de comida andaluza y canaria, con ingredientes de calidad y atención cuidada. Recomendables el ladrillo de berenjena, la presa iberica y el \\"polvito\\" de postre :)", "author": "Valme Pozo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbzUtNFFnEAE", "timestamp": "3 years ago"}, {"text": "Paikka ei ulospäin paljon lupaa ja on hieman vaikea löytää ensimmäisellä kerralla mutta ruoka on parhaita mitä olen syönyt koskaan. Vahva suositus.", "author": "tsti ydy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURocDVtejZ3RRAB", "timestamp": "2 years ago"}, {"text": "Expectacular todo, los crujientes de langostinos de muerte, el servicio buenísimo. Recomendable 100%.Bravo por sitios así. Volveremos sin duda.", "author": "Jimena Aristu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdUpiTDl3RRAB", "timestamp": "4 years ago"}, {"text": "josé y ale muy buen servicio", "author": "Virginia Gallinal Socorro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aNmJETkRSM0pOZG13elJEQkxORVpmY0RrNFozYxAB", "timestamp": "a month ago"}, {"text": "Todo espectacular, el jamón ibérico, el guacamole exquisito, el carpaccio y las gyozas impresionantes, un 100 sobre 10.", "author": "Nerea Vidal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsek1lbV93RRAB", "timestamp": "2 years ago"}, {"text": "Todo lo que tomamos estaba muy bueno. El servicio muy profesional. El local un poco ruidoso aunque han intentado arreglarlo.", "author": "Marily García-Vaca Pérez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSa3JyX2F3EAE", "timestamp": "2 years ago"}, {"text": "Platos muy elaborados y muy ricos, muy bien atendidos y explicado cada plato. El precio muy adecuado. Lugar para sorprender.", "author": "Pato Marcos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhNktxaU5BEAE", "timestamp": "4 years ago"}, {"text": "Excellent restaurant, superbe service, qualité des aliments, je recommande fortement cet établissement ! Encore merci pour cet belle soirée.", "author": "Guilhem Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdmF5aTR3RRAB", "timestamp": "4 years ago"}, {"text": "Ausgezeichnete Küche und beseelter Service! Wir bedanken uns herzlich für die beiden tollen Abende.", "author": "Simon von Styp", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqMTlQQmRnEAE", "timestamp": "a year ago"}, {"text": "Una muy agradable sorpresa. Excelentes camarones y jamón. Muy recomendable.", "author": "Will Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYbmVYenpRRRAB", "timestamp": "a year ago"}, {"text": "La comida muy buena y el trato excelente y el postre celestial si eres dulce disfrutarás con la milhojas de plátano y la tarta de santiago Buen Provecho", "author": "Verónica Monzon Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDaU5xWmxnRRAB", "timestamp": "5 years ago"}, {"text": "Un carta excelente y un servicio de diez, en cuanto atencion y calidad. Producto fresco y bien trabajado. Muy recomendable.", "author": "Pepelu Corleone", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwd1BpNjZ3RRAB", "timestamp": "6 years ago"}, {"text": "Platos bien presentados y exquisitos. Atención muy correcta buen ambiente", "author": "Linda Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxZ3VtanJRRRAB", "timestamp": "2 years ago"}, {"text": "Speisen und Service sind sehr gut, sicherlich höherer Standard, jedoch war mit die Portionsgröße etwas zu klein.", "author": "Nils M", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbktQOGZnEAE", "timestamp": "2 years ago"}, {"text": "Το μαγαζί δεν σου γεμίζει το μάτι αλλά το φαγητό είναι πολύ καλό.", "author": "Constantinus Flavius Valerius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmc3J1aGhBRRAB", "timestamp": "a year ago"}, {"text": "La comida excelente y la atención de Jesús muy muy buena muy profecional y atento os recomiendo muy bueno", "author": "Mariano Gutierrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRX3YzVHJ3RRAB", "timestamp": "10 months ago"}, {"text": "Ristorante piccolo, accogliente, personale presente cibo buono. Lista dei vini ok.", "author": "Mauro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlb0l5elBBEAE", "timestamp": "3 years ago"}, {"text": "Servicio y comida estupendos. Todo un descubrimiento. Los tiempos entre platos nos parecieron excesivos. Así todo, totalmente recomendable", "author": "Pilar Barquín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURha296cklnEAE", "timestamp": "4 years ago"}, {"text": "Esta restaurante es fácil para encontrar . No puedo encontrar algunos errores con la comida . Tu puedes dar cuenta que ellos saben como cocinar ellos pueden estar orgulloso en su trabajo.", "author": "Duncan Stone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2MzdIakJ3EAE", "timestamp": "4 years ago"}, {"text": "Sitio excelente, el metre Mario es de los mejores de la ciudad, otro restaurante que hace crecer a la ciudad como destino gastronómico, gracias por darnos la oportunidad de saborear vuestros platos.", "author": "javi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNza0lDVHV3RRAB", "timestamp": "6 years ago"}, {"text": "Estaba todo riquisimo, un sitio muy recomendable.", "author": "Cristina Diaz Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnM3N5WFJREAE", "timestamp": "11 months ago"}, {"text": "Tolles Ambiente, freundlicher Service und gute Weinberatung. Der Iberico der beste, den ich je gegessen habe.", "author": "SusanneVerena", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURac01fNUl3EAE", "timestamp": "2 years ago"}, {"text": "Comida excelente y bien presentada. Servicio esmerado. Sin duda para repetir y recomendar", "author": "Jovanetta Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNadWQzQ1hnEAE", "timestamp": "2 years ago"}, {"text": "Muy rico todo trato muy bueno siempre pendientes era un día especial para la familia y no nos defraudaron muchas gracias", "author": "Montse", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cmZLRWxRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Comida y trato al cliente inmejorable. De los mejores lugares donde he comido en Las Palmas.", "author": "J", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIa1lESkt3EAE", "timestamp": "a year ago"}, {"text": "Comida excelente y servicio maravilloso. Mi nuevo restaurante favorito en Las Palmas!!", "author": "Helen Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN0bE0yNkNBEAE", "timestamp": "a year ago"}, {"text": "Efectivamente es un rincón,pero de triana nada.Bastante caro y muy poca cantidad en los platos,si quieres pagar mucho por un degustacion que no esta mal adelante es tu sitio", "author": "Toni Lionblanco", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5bnBXSjdBRRAB", "timestamp": "4 years ago"}, {"text": "Una Maravilla.\\n\\nLugar muy cuidado, profesionalidad en todo momento y calidad espectacular en sus platos.\\n\\nEnhorabuena", "author": "Luis Ruiz de Alarcón Quintero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cU9ENHp3RRAB", "timestamp": "2 years ago"}, {"text": "El sitio es espectacular y si llamas con antelación preparan un menú vegano exquisito.", "author": "Consulta médica", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5bW9QSFhnEAE", "timestamp": "a year ago"}, {"text": "La atención muy buena y la comida riquísima. Fuimos a comer sin conocer el local y fue un acierto.", "author": "Luis Fernández López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4aGRUSTZnRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Nous avons été très bien accueillis et la cuisine est excellente !!!!", "author": "julie VICENZI", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqajViR3p3RRAB", "timestamp": "a year ago"}, {"text": "Me ha gustado mucho la comida y el servicio,personas agradables que te hacen pasar un buen rato.Repetiremos.", "author": "Carolina Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKcnBxdXpnRRAB", "timestamp": "2 years ago"}, {"text": "Una atención excelente y un menú delicioso realizado con productos de primera calidad. Me ha encantado", "author": "Alicia Pozo Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlakxyaTNBRRAB", "timestamp": "3 years ago"}, {"text": "Estaba todo buenísimo, el servicio muy bueno .\\nEn general todo super bien 👍👍😁", "author": "Pedro Tello", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MkplNGdBRRAB", "timestamp": "a year ago"}, {"text": "Fuimos en la cena de empresa, comimos muy bien, todo muy bueno.\\nCamareros muy amables.\\nMuy buen ambiente.", "author": "Beatriz Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtaGFTTml3RRAB", "timestamp": "3 years ago"}, {"text": "Es un restaurante que no te deberías de perder si vienes a gran canaria.un trato excelente del personal y una comida esquisita.lo dicho no te lo pierdas.yo repetiré alguna vez más.", "author": "Rafael García Cuerva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHMWZDd21BRRAB", "timestamp": "4 years ago"}, {"text": "Hemos ido 3 veces tanto de cena colo almuerzo,la comida es minimalista con calidad/precio lo recomiendo", "author": "Cameli Orosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSbU4yV3hBRRAB", "timestamp": "2 years ago"}, {"text": "Espectacular trato y servicio. Producto de calidad y bien tratado. Es una gran experiencia. Recomendable 100%", "author": "Alberto M.L.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1eDUzWEd3EAE", "timestamp": "3 years ago"}, {"text": "Excelente servicio y muy buena calidad de los platos. Volveré sin duda", "author": "Irene Santana Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSeVkyR3NBRRAB", "timestamp": "2 years ago"}, {"text": "Judiones con carrilleras, croquetas, pan bao y sama con salsa de foie", "author": "René Padrón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvbHBleVdREAE", "timestamp": "9 months ago"}, {"text": "Une bien jolie découverte à Las Palmas !\\nExcellente adresse… un service irréprochable avec le sourire !\\nMerci beaucoup", "author": "Élisabeth B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cklIdW9nRRAB", "timestamp": "2 years ago"}, {"text": "Productos de primera muy bien tratados. Servicio muy atento profesional y muy agradable.", "author": "Jm Bl", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQdnFuZjFBRRAB", "timestamp": "a year ago"}, {"text": "Calidad-precio en la media. Muy buen trato y la comida muy buena. La paletilla se deshacía en la boca.", "author": "Jorge AG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtcmN5b0dnEAE", "timestamp": "3 years ago"}, {"text": "Personal sobrio y acogedor. La comida una delicia. Me pedí el solomillo.", "author": "eduard tapia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYOTlUd0R3EAE", "timestamp": "a year ago"}, {"text": "Excelente ubicación, ambiente muy agradable y una comida exquisita. Desconozco los precios porque era una comida de empresa. Muy recomendable.", "author": "Balbu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzNzk3OEJBEAE", "timestamp": "5 years ago"}, {"text": "Una exquisitez de sabores, un buen equipo de trabajo y un gran nivel culinario... que te hacen sentir como en casa.\\n¡ FELICIDADES FAMILIA!", "author": "Luz Marina Sarmiento Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbmZqeFZ3EAE", "timestamp": "3 years ago"}, {"text": "El jamón es de primera calidad. Muy bien cortado. Platos muy bien elaborados", "author": "David", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNScnYtTE9REAE", "timestamp": "2 years ago"}, {"text": "Sitio perfecto para comer o cenar. Trato familiar, comida sabrosa. Recomendable 100%", "author": "Mercy Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXcWIyUnFBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "El personal muy amable y la comida muy buena y variada.", "author": "Josue R.S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzLWQ3ME5BEAE", "timestamp": "a year ago"}, {"text": "La comida es muy buena, de mucha calidad y diferente a lo que te suelen ofrecer otros restaurantes.", "author": "MIGUEL ANGEL SANTANA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcl9MNkJ3EAE", "timestamp": "4 years ago"}, {"text": "Comida muy buena, relación calidad precio bien,y, sobretodo,excelente servicio,personal educado, profesionales muy agradables", "author": "lola sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbl9LUFd3EAE", "timestamp": "3 years ago"}, {"text": "Mejor imposible, trato del personal maravilloso, comida estupenda....el carpaccio y la gyoza todo un espectáculo para el paladar.....100% recomendable.", "author": "Andres Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMjhQeEtBEAE", "timestamp": "Edited 2 years ago"}, {"text": "muy buenos todos los platos, originales, muy bien presentados, bien servidos y explicados, un sitio recomendable 100 por 100", "author": "Maria Angeles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMjVicVNBEAE", "timestamp": "4 years ago"}, {"text": "Un restaurante referente en Las Palmas de Gc, inmejorable en calidad precio y el personal un 10/10. Enhorabuena!", "author": "Dani Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGeU9PR1FBEAE", "timestamp": "2 years ago"}, {"text": "Restaurante acogedor, trato y profesionalidad, muy buena, la propuesta de carta variada y bien cocinada.", "author": "Jesus D.A", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtME9lanJRRRAB", "timestamp": "3 years ago"}, {"text": "Un lugar ideal con una cocina excelente y un servicio de sobresaliente\\nSin duda, lo recomiendo 100%", "author": "Isabel Valdés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNobmNlN2RnEAE", "timestamp": "2 years ago"}, {"text": "Perfekt bedient, perfekte Speisen! Gute Weine und super lecker!", "author": "Jonas Jansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWXzltc2ZREAE", "timestamp": "2 years ago"}, {"text": "Gran sitio para degustar platos de toda la vida de un forma diferente y con un toque personal. Recomendado al 100%.", "author": "Ivan San Juan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtdXQ3QjVnRRAB", "timestamp": "4 years ago"}, {"text": "Un servicio espectacular y comida muy exquisita. Me ha sorprendido gratamente.", "author": "Cristina González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN0aVBtQUt3EAE", "timestamp": "2 years ago"}, {"text": "Genial, excelente calidad de la materia prima, buena carta de vino, muy buen servicio, precio correcto", "author": "Melanie Lebourgeois", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwaXYzT2lRRRAB", "timestamp": "6 years ago"}, {"text": "Un restaurante que no necesita espectáculo para amenizar la comida por qué la comida ya es un espectáculo....\\nProbar la ensalada de espuma de manzana....", "author": "Oliver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIODdiakFnEAE", "timestamp": "a year ago"}, {"text": "Sehr leckeres Essen, eine gute Weinempfehlung dazu und ein aufmerksamer Service.", "author": "m w", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxb3ZXRm53RRAB", "timestamp": "2 years ago"}, {"text": "Como siempre la comida y atención inmejorables. Siempre que podemos nos damos un saltito. Recomendable al 100 %", "author": "Guille Carvajal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQycXV1d21RRRAB", "timestamp": "3 years ago"}, {"text": "Uno de los mejores sitios donde comer en Canarias y el trato exquisito. Precio calidad ✅️", "author": "Jorgelina Cabrera Reyes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPdU1mNS1RRRAB", "timestamp": "3 years ago"}, {"text": "Sitio recomendado, comida muy buena y buen trato.", "author": "Airam Peraza", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJa29tR0xBEAE", "timestamp": "9 months ago"}, {"text": "Servicio y comida inmejorable, camarero explica todos los platos y sabores, el mejor de la zona con diferencia.", "author": "Claudia Maldonado Morales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlemRyeDV3RRAB", "timestamp": "3 years ago"}, {"text": "Un lugar donde el buen comer te hace vivir una experiencia espectacular.\\nEnhorabuena por el buen hacer, volveremos.", "author": "José Manuel Begines Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURha1lxR1FBEAE", "timestamp": "4 years ago"}, {"text": "Producto de altísima calidad, servicio a la altura y elaboración creativa. Ne alegra mucho este tener este nivel en Las Palmas", "author": "CENTRO NEO PSICOLOGOS SCP", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXN19qTHVBRRAB", "timestamp": "3 years ago"}, {"text": "Anspråkslös lokal men suverän service och framför allt modern god mat och bra viner, rekommenderas varmt!", "author": "Danne Johansson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtdTdfS2J3EAE", "timestamp": "4 years ago"}, {"text": "Tanto la atención, el trato, servicio, producto y precio, perfecto! Un lugar para ser asiduo, sin duda alguna.", "author": "Jose Lorenzo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2ai1PanZRRRAB", "timestamp": "4 years ago"}, {"text": "Excelente servicio y atención, alimentos frescos, menú original y único, una experiencia muy grata.", "author": "J SC", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0czRtVk5nEAE", "timestamp": "6 years ago"}, {"text": "Es la primera vez que vamos, los camareros y lo que pedimos muy bien", "author": "Beatriz Quiros", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcHFLeGhnRRAB", "timestamp": "2 years ago"}, {"text": "Excelente calidad productos y servicio y sobretodo el camarero Moisés aconsejo el jamón", "author": "Jesus Abad Rica", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtZzliMTF3RRAB", "timestamp": "3 years ago"}, {"text": "Muy buena cocina española con excelente atención al cliente al lado de la playa de Las Canteras", "author": "Alfonso C. Saavedra Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdjQtODhnRRAB", "timestamp": "3 years ago"}, {"text": "Simplemente espectacular. Nos lo recomendaron y la verdad que no ha defraudado. Muchas gracias !!", "author": "Manuel Ramos Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxN3AySWdnRRAB", "timestamp": "2 years ago"}, {"text": "Local muy recomendable. La comida muy rica y el servicio excelente.", "author": "Guille Crucera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNscF9tTlhnEAE", "timestamp": "Edited a year ago"}, {"text": "Comida de 10. Servicio muy atento y amable. Una cena muy agradable.", "author": "B Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldDdidm13RRAB", "timestamp": "Edited 3 years ago"}, {"text": "Todo muy rico. Y el personal muy amable y atento.", "author": "Antonio I Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzanRmeURBEAE", "timestamp": "a year ago"}, {"text": "Lugar muy agradable y la comida muy buena.\\nEl servicio de lo mas atentos.", "author": "Erenia Portillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGNXF5cHZ3RRAB", "timestamp": "2 years ago"}, {"text": "Comida buena ,intentan innovar pero te cobran 1,20 por la ración de pan. Calidad precio bien.", "author": "Pili Ballabriga", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2c09hbjhRRRAB", "timestamp": "4 years ago"}, {"text": "Trato muy profesional, atento. La comida muy rica, para paladal en cerca de sapores nuevos.", "author": "Laura Cucculelli", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwci1US1pnEAE", "timestamp": "6 years ago"}, {"text": "Relación calidad precio muy buena.\\nMe sorprendió el crujiente de Langostinos muy bueno 👌", "author": "Ramón González Peña", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCMHBuWFpREAE", "timestamp": "3 years ago"}, {"text": "Platos elaborados y diferentes.\\nBuena presentación, buen servicio y muy buena ubicación.", "author": "Luz Coba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwal9IdjFRRRAB", "timestamp": "2 years ago"}, {"text": "Muy recomendable, jamón de primera, todo riquísimo y bien servicio", "author": "VH7 _pro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldllLYUVREAE", "timestamp": "Edited 2 years ago"}, {"text": "Excelente la comida y la atención!\\nRecomendado el guacamole que te lo preparan en frente y la ensaladilla rusa con langostinos.", "author": "Jorge Andres Otero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDcGJiNVZBEAE", "timestamp": "5 years ago"}, {"text": "Calidad del producto,trato exquisito y precios ajustados.sitio para repetir frecuentemente...por cierto...la torrija de la abuela... superior", "author": "Antonio Mendoza Cano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDX3J1d2N3EAE", "timestamp": "5 years ago"}, {"text": "Comimos el sábado y fenomenal, tanto la comida como el servicio", "author": "Marisa Marcos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURicjhpN3N3RRAB", "timestamp": "a year ago"}, {"text": "Restaurante ubicado en la playa de laa Canteras. Buena comida recomendable nos gusto mucho su jamón.", "author": "Macpalomax", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2X3FyRGZREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Елена", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bGF6bFVNR05oYlVkVE5WWnpRMkpwVVZGNVFVRRAB", "timestamp": "a month ago"}, {"text": "100x100 recomendable... Profesionales tanto en cocina como en sala. Encima, buenas personas. Sigan igual.", "author": "Alby Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdVBMNmJBEAE", "timestamp": "5 years ago"}, {"text": "Aivan mahtava ruokaa. Pääruokana lihaa ja jälkiruokana pannukakkua jäätelöllä. Aivan mahtavaa.", "author": "Johan Järvinen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEX04tRU5REAE", "timestamp": "a year ago"}, {"text": "Buenísima la comida y mucho mejor el trato, me encanta este sitio.", "author": "Inmaculada García Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpNXJqUFZBEAE", "timestamp": "Edited 2 years ago"}, {"text": "La comida súper buena y el servicio genial. Nos encantó!!", "author": "Vanesa Del Pino Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1MVBQTHdRRRAB", "timestamp": "3 years ago"}, {"text": "Comida deliciosa y el personal muy atento en todo momento. Muy recomendable.", "author": "Antonio Francisco Manzano Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcXZ1eWRREAE", "timestamp": "3 years ago"}, {"text": "Muy buen servicio, la gente super amable y la comida excelente a buen precio!", "author": "Mariona Figueras Barceló", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMkp5NE9nEAE", "timestamp": "3 years ago"}, {"text": "La comida muy buena la atención también.\\nEl inconveniente es que había un grupo de señoras gritando mucho y no supieron gestionarlo.", "author": "Mª Luisa Mellado", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwaWY2ZlF3EAE", "timestamp": "6 years ago"}, {"text": "Buen trato y muy buena comida. También cuentan con variedad de vinos", "author": "Daniel Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzejZ1US13RRAB", "timestamp": "5 years ago"}, {"text": "Muy buen servicio, exquisito cochinillo. Muy recomendable", "author": "Maria Soraluce", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcFAzX0RREAE", "timestamp": "a year ago"}, {"text": "Una atención adecuada acompañada de platos bien preparados. El vino a su temperatura.", "author": "Clemente Bobis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0emNDLUF3EAE", "timestamp": "6 years ago"}, {"text": "Sorprende los sabores y el trato exquisito, repetiremos. Enhorabuena!!", "author": "MARI CARMEN LR", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1aXNxbTlBRRAB", "timestamp": "2 years ago"}, {"text": "Buen ambiente, acogedor, moderno, su personal un diez. La comida acércate hasta allí y compruébalo por tí mismo", "author": "maria Cristina Dosil López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNczdfaEt3EAE", "timestamp": "6 years ago"}, {"text": "Nicht verpassen, Essen und Service gehoben, Atmosphäre und Preise nicht abgehoben!", "author": "Rolf Schu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxLXRPWTJRRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien. Un trato excelente. La comida exquisita.", "author": "Joseba Mendiguren", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlM3RiMDJBRRAB", "timestamp": "3 years ago"}, {"text": "Comida sorprendente por novedosa y rica.\\nEl trato súper profesional y calido", "author": "Cristobal Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTOGIyTElREAE", "timestamp": "5 years ago"}, {"text": "Comida riquísima. Muy buena experiencia aquí y personal muy simpático.", "author": "Anaëlle Rgmt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURramFDQ01BEAE", "timestamp": "6 years ago"}, {"text": "Lugar donde tomarse una cerveza bien fria", "author": "Familia Pascual", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJbDRMMEh3EAE", "timestamp": "9 months ago"}, {"text": "Muy recomendable, ojalá abran en Tenerife", "author": "María Jesús Brito Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3NHJMM29BRRAB", "timestamp": "10 months ago"}, {"text": "Sehr lecker. Tolles Restaurant, auch für einen leckeren Mittagstisch.", "author": "Matthes Müller", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cmEydEpnEAE", "timestamp": "4 years ago"}, {"text": "Muy buen servicio y buena comida. Altamente recomendable. Gracias", "author": "Carmen RS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtN01lUzlBRRAB", "timestamp": "4 years ago"}, {"text": "¡Me encanta!y ya estamos programando la próxima visita.", "author": "Isabel Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqMXJYZGlRRRAB", "timestamp": "a year ago"}, {"text": "Visita obligada. Con una cocina y trato espectacular. Mejor imposible!!!", "author": "Fran Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlc3JxWm5BRRAB", "timestamp": "3 years ago"}, {"text": "100% recomendable. Comida y servicio increíble.", "author": "Olivia Rodriguez Benitez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqdmE3NFpnEAE", "timestamp": "a year ago"}, {"text": "Excelente. Para repetir.\\nBuena comida y buen servicio", "author": "José Ramón Melián", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtMnJQYUpnEAE", "timestamp": "4 years ago"}, {"text": "Todo ya experiencia. Excelente!\\nBuena comida y servicio.", "author": "El correo que uso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaV9YcnR3RRAB", "timestamp": "a year ago"}, {"text": "Heerlijk gegeten, vriendelijke bediening. Aanrader…", "author": "jacqueline jansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMEotdUN3EAE", "timestamp": "2 years ago"}, {"text": "Fantástica comida, buen servicio..más que recomendable!!", "author": "Meritxell Ribas Boned", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNONGY2MXFRRRAB", "timestamp": "2 years ago"}, {"text": "El mejor sitio de gran canaria para comer i cenar y el trato inmejorable", "author": "Jose Fernández linares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcXBHZHZ3RRAB", "timestamp": "2 years ago"}, {"text": "Personal muy agradable y comida exquisita. Muy recomendable.", "author": "Fermín S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlcjk2dHJnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buen ambiente y precios correctos. Recomendadisimo", "author": "Ksb Haba", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKM0x2bERnEAE", "timestamp": "2 years ago"}, {"text": "Comida y servicio de 10. Lo único malo el ruido ambiente.", "author": "María Maeso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3NXZDbmN3EAE", "timestamp": "a year ago"}, {"text": "Magnífica atención y platos excelentes con productos de primera calidad.", "author": "Alexandre Sanjorge", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVZ3I2OTlBRRAB", "timestamp": "6 years ago"}, {"text": "Un lugar agradable con comida rica y un servicio muy muy de agradecer, totalmente recomendable", "author": "Naira Bethencourt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cUpteDRRRRAB", "timestamp": "2 years ago"}, {"text": "Comida y personal excelente.\\nHay que probar toda la carta.", "author": "Francisco Fernández de Piñar Lorenzo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHLVlmVTdnRRAB", "timestamp": "4 years ago"}, {"text": "Lugar perfecto para una buena comida, todo buenísimo y la atención inmejorable!!", "author": "Sandra Pozo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSaS1yV0hBEAE", "timestamp": "2 years ago"}, {"text": "Comida muy bien preparada y presentada. Tarda un poco.", "author": "Uwe Kohn", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsa1pxYWdRRRAB", "timestamp": "2 years ago"}, {"text": "Me encantó, tanto la comida como el trato del personal. \\"Pedazo de ARROZ\\"", "author": "Rosa Maria Martin Ojeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMTlTc0pnEAE", "timestamp": "6 years ago"}, {"text": "IMPRESIONANTE, parada obligatoria, experiencia gastronómica super Top!!", "author": "Victor Manuel Garcia Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4ME0yMFZ3EAE", "timestamp": "2 years ago"}, {"text": "Realmente muy bueno, el cervicio y la comida, verdaderos profesionales,muy recomendables", "author": "Luis Valdivia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHb3ZfVUdBEAE", "timestamp": "4 years ago"}, {"text": "Todo buenísimo y trato espectacular.", "author": "Azuleida Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYM2RqV3BBRRAB", "timestamp": "a year ago"}, {"text": "Fabuloso en todo lo que puedes desear de un buen restaurante", "author": "Alfredo “INNOVALIA” Rivero Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURseEphNzJ3RRAB", "timestamp": "2 years ago"}, {"text": "Sehr leckeres Essen kann ich nur empfehlen", "author": "Angela Steen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkMHNlSzBBRRAB", "timestamp": "a year ago"}, {"text": "Huevos estrellados più buono dell' isola, crocchette spettacolari", "author": "michele lenci", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4b3VlN1Z3EAE", "timestamp": "2 years ago"}, {"text": "Heel lekker en vriendelijk personeel.", "author": "Aouatif Fetah", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiOHZmT0pBEAE", "timestamp": "a year ago"}, {"text": "Hervorragendes Essen- Speisen werden teilweise am Tisch frisch zubereitet.", "author": "Nicole Schröder", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGVLeV9nRRAB", "timestamp": "4 years ago"}, {"text": "Comida muy buena. Servicio inmejorable. Para repetir.", "author": "Andrea Santana Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxcm9MMjBRRRAB", "timestamp": "4 years ago"}, {"text": "Un lugar estupendo, posiblemente la mejor comida, el mejor servicio y la mejor terraza de Triana.", "author": "Ana Maria Begines Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvM3B5YWZ3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Un buen lugar para salir de las papas arrugás, servicio atento y amable, muy recomendable!", "author": "Luis Recuero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2cnJEcVJnEAE", "timestamp": "4 years ago"}, {"text": "Muy rico todo y buen precio", "author": "Elisa Moreiras", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPeWVLMTlBRRAB", "timestamp": "3 years ago"}, {"text": "Creo que es un poco caro, para el producto que tienen en carta", "author": "Manolo Dominguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREZ2JQVmlBRRAB", "timestamp": "a year ago"}, {"text": "Excelente servicio, buena relación calidad precio", "author": "luis sainz-rozas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdy1xOFRREAE", "timestamp": "a year ago"}, {"text": "Buena atención y muy buena materia prima. Un agradable almuerzo", "author": "J.M. P.R.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHX29YRFlBEAE", "timestamp": "4 years ago"}, {"text": "Muy rico, buenas porciones.", "author": "Laura Blumberg", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCZ1BXOWpRRRAB", "timestamp": "3 years ago"}, {"text": "Nos ha encantado. La comida y la atención buenísimo", "author": "ESCUELA INFANTIL LITTLE STAR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLeUtYSU1nEAE", "timestamp": "4 years ago"}, {"text": "Uno de los mejores restaurantes de la ciudad de Las Palmad, esquisto!", "author": "Jan K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODVmVTZBRRAB", "timestamp": "2 years ago"}, {"text": "Sitios espectacular!!!... atención de estrellas Michelín y comida de 10.", "author": "Isma Rosa orte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNheE5uZ1lBEAE", "timestamp": "4 years ago"}, {"text": "Servicio rápido y atento y la comida excepcional!", "author": "María", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4djl1RFpREAE", "timestamp": "2 years ago"}, {"text": "Me encanta. Ya es uno de mis favoritos. Excelente en todo.", "author": "Carlos Artiles Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxdHFtazJBRRAB", "timestamp": "4 years ago"}, {"text": "Servicio lento. Platos que no se parecen en nada a los andaluces. Un salmorejo aguado...", "author": "Pablo Atoche", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbWZETWdBRRAB", "timestamp": "5 years ago"}, {"text": "Heerlijk eten en top personeel!", "author": "Suzanne", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROZzdXOS1nRRAB", "timestamp": "2 years ago"}, {"text": "Comida excelente, y el trato muy bueno, volveré", "author": "Maria Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2amIzUzB3RRAB", "timestamp": "4 years ago"}, {"text": "Genial, comida excelente, atención muy buena..", "author": "Alexis Martín Falcón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyOEtuTUV3EAE", "timestamp": "Edited a year ago"}, {"text": "Todo estaba exquisito, y el personal excelente", "author": "Carmen Delia Navarro Chinea", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWNjd1ZVhnEAE", "timestamp": "2 years ago"}, {"text": "Excellente", "author": "Candido Arias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJenF2QW5nRRAB", "timestamp": "9 months ago"}, {"text": "Excelente comida en grupo con amig@s", "author": "Nicolas Claver Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6NGZuek13EAE", "timestamp": "Edited a year ago"}, {"text": "Muy buena comida y la atención muy buena exquisito", "author": "intruder intruder", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2M09tclZ3EAE", "timestamp": "4 years ago"}, {"text": "Magnífico, comida y servicio de mucha calidad, un restaurante para volver.", "author": "Antonio Lopez Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMklhSDF3RRAB", "timestamp": "6 years ago"}, {"text": "Muy buena comida y un servicio agradable y amable.", "author": "JUAN JOSE PAREJO CURADO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNUk2N2hnRRAB", "timestamp": "6 years ago"}, {"text": "Excelente comida, servicio y calidad. Lo recomiendo.", "author": "maría luisa ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eUw3V0RBEAE", "timestamp": "4 years ago"}, {"text": "Espectacular el trato y la comida , repetible 100%", "author": "Lidia Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlOE8zdnVBRRAB", "timestamp": "3 years ago"}, {"text": "Muito bom, recomendo!", "author": "helder antunes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKaTZ1YWU0LXQyMTRBRRAB", "timestamp": "8 months ago"}, {"text": "Super lecker aber etwas zu teuer.", "author": "Julia Kurt", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5aGRyc2lnRRAB", "timestamp": "a year ago"}, {"text": "Buen servicio y calidad. Sin duda, completamente recomendable.", "author": "Roberto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjNi11R2FBEAE", "timestamp": "5 years ago"}, {"text": "Un 10! Para repetir! Servicio y comida impecable! 💪", "author": "and Lp", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cGNLSjJRRRAB", "timestamp": "5 years ago"}, {"text": "Servicio y comida divinos, es muy recomendable.", "author": "esmeralda de la fuente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1Nm83YWNREAE", "timestamp": "2 years ago"}, {"text": "Comida muy buena.Algo de calor", "author": "Remi Bordón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURENnJmUWFBEAE", "timestamp": "Edited a year ago"}, {"text": "Camareros fantásticos, comida muy rica.", "author": "FERNANDO MENDOZA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4dC1ucGx3RRAB", "timestamp": "2 years ago"}, {"text": "Muy buena atención y la comida muy rica,lo recomiendo", "author": "Ángeles Rodríguez Cuellar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4b3ZiTkJnEAE", "timestamp": "5 years ago"}, {"text": "Genial!\\nWer authentische spanische Küche sucht ist hier richtig!", "author": "Ach Wasweissich", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaWNDNm13RRAB", "timestamp": "5 years ago"}, {"text": "Muy buena la comida ,la carne y el pulpo", "author": "skatehip SK", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwdmZTX0hREAE", "timestamp": "2 years ago"}, {"text": "Platos bien elaborados y excelente servicio", "author": "CRM", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhbUlmdDRnRRAB", "timestamp": "4 years ago"}, {"text": "Ufffff, lujo en la playa a escasos 30 mtrs del charcon", "author": "nicolas jose garcia fontes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4Ny1HeHhBRRAB", "timestamp": "5 years ago"}, {"text": "Der iberische Schinken und das Tatar sind sehr empfehlenswert.", "author": "Oliver Schröder", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtenRITTJ3RRAB", "timestamp": "4 years ago"}, {"text": "Una apuesta segura! Profesionales y buen género", "author": "D&L", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSN3NtT0hBEAE", "timestamp": "2 years ago"}, {"text": "La comida excelente y muy buena atención", "author": "Pino Santaella", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCbHFyV3BRRRAB", "timestamp": "3 years ago"}, {"text": "Relación calidad precio muy buena m la atención muy buena", "author": "Miguel García", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDanBuOUxREAE", "timestamp": "5 years ago"}, {"text": "Encantada con todo, muy buena experiencia", "author": "Maribel López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkbDZteDNnRRAB", "timestamp": "Edited a year ago"}, {"text": "La comida y la atención muy buena ..volveremos", "author": "Rosa Perez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlclp5QXJnRRAB", "timestamp": "3 years ago"}, {"text": "Personas súper groseras, sobre todo el “dueño” no le recomiendo nunca en la vida !", "author": "Caribay Segura", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaGVDMndRRRAB", "timestamp": "2 years ago"}, {"text": "Todo exquisito y la atención buena.\\nLo recomiendo", "author": "Janet", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNU8zSDJnRRAB", "timestamp": "4 years ago"}, {"text": "Nos encantó,repetiremos ,muy recomendado", "author": "Desiree Estupiñan Estevez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURabXN6S0FREAE", "timestamp": "2 years ago"}, {"text": "Muy buen sitio para comer.", "author": "Alicia Gabriel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKdGJLQUxREAE", "timestamp": "2 years ago"}, {"text": "La comida es increíble y el trato inigualable", "author": "samuel Rodríguez Montero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5eElIcC1nRRAB", "timestamp": "a year ago"}, {"text": "Buen servicio. Buena comida. Seguridad", "author": "Mireya Gloria Jiménez Jaén", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4NzgzQjdBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente en comida servicio y ambiente.", "author": "luiyis agudelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObDlPSmFnEAE", "timestamp": "2 years ago"}, {"text": "Una experiencia maravillosa, atención, calidad precio.", "author": "Rosy Calderín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNk9fQVhREAE", "timestamp": "3 years ago"}, {"text": "Excelente,gratificante experiencia y maravilloso trato humano", "author": "Luis Carlos Lorenzo Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN29ha3h3RRAB", "timestamp": "4 years ago"}, {"text": "Muy bueno y cada vez mejor", "author": "Romen Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaX3F2WXVBRRAB", "timestamp": "2 years ago"}, {"text": "Increíble. Una atención espectacular, no faltó de nada.", "author": "cristina castellano rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTNjhfNHB3RRAB", "timestamp": "5 years ago"}, {"text": "Servicio y comida increibles, gracias por todo, volveremos", "author": "Francisco Javier Muñoz Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMjZQdWJnEAE", "timestamp": "6 years ago"}, {"text": "Comida excelente y atención genial, totalmente recomendable", "author": "Jesus Poch", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMjlUa09BEAE", "timestamp": "5 years ago"}, {"text": "Lugar agradable con comida rica y buen servicio", "author": "Fco. Javier Hernando de Diego", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROejR1Xy1BRRAB", "timestamp": "2 years ago"}, {"text": "Te sientes como en casa", "author": "Mayela Gómez Medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqMGRMSGxnRRAB", "timestamp": "a year ago"}, {"text": "Calidad de la comida y servicio un 10..!!\\nVolveré...", "author": "Carles Caldentey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscFlqcTZBRRAB", "timestamp": "2 years ago"}, {"text": "Simplemente perfecto, tanto el trato como la comida.", "author": "AVMC", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2ek9LcWhBRRAB", "timestamp": "4 years ago"}, {"text": "Cuando se pone corazón y ganas las cosas salen bien", "author": "luis Calvo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxdkxiWmVnEAE", "timestamp": "4 years ago"}, {"text": "sensationelles Essen & sehr guter Service", "author": "Benno Weber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0NWJLcDdBRRAB", "timestamp": "a year ago"}, {"text": "Gran trató y un excelente servicio muy atentos.", "author": "jacob brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aU9pZ0lBEAE", "timestamp": "4 years ago"}, {"text": "Riquísimo. Muy recomendable", "author": "Olga Garcia Jorqui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bklUZUxREAE", "timestamp": "3 years ago"}, {"text": "Por todo, sitio 100% recomendable", "author": "gloria rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMU5UYThBRRAB", "timestamp": "3 years ago"}, {"text": "Fantasía, muy bueno todo 🤤", "author": "Adrian Rey Nieto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbklHR05BEAE", "timestamp": "2 years ago"}, {"text": "Excelente servicio y la comida buenísima!", "author": "Cristina Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDX3NhSDNnRRAB", "timestamp": "5 years ago"}, {"text": "Comida riquísima y atención excepcional.", "author": "noemi benitez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4NmZuOGdnRRAB", "timestamp": "5 years ago"}, {"text": "Maravilloso", "author": "Juan carlos Cárdenas Martines", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4cmMydFRlRFptVFVWeE5YcHJTSE51V2pGNGRHYxAB", "timestamp": "4 months ago"}, {"text": "Magnífico la atención y el producto, repetiremos.", "author": "Prudencio Castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNWJLQjlBRRAB", "timestamp": "3 years ago"}, {"text": "Si vale la pena es muy recomendable", "author": "Jose Carlos Ramirez Marrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzeHFLZEt3EAE", "timestamp": "5 years ago"}, {"text": "Muy buena comida y servicio.", "author": "Vanisha Lilaram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKczhpTTRnRRAB", "timestamp": "2 years ago"}, {"text": "COMIDA FAMILIAR. BUEN SERVICIO Y CALIDAD EN LA COMIDA.", "author": "Alberto Garcia-Beltran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTajhlZGNBEAE", "timestamp": "5 years ago"}, {"text": "Las gyozas muy ricas", "author": "sara enguita", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtNDZqZGFBEAE", "timestamp": "3 years ago"}, {"text": "Descubrimiento reciente. Un 10 os doy 😃", "author": "carmen rg", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHMzdIMlNBEAE", "timestamp": "4 years ago"}, {"text": "Comida espectaculsr y muy buen ambiente", "author": "antonio javier trejo perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjOGZfVXB3RRAB", "timestamp": "5 years ago"}, {"text": "Buenísima comida.Recomendable.", "author": "Soledad Villalba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsb0szTlh3EAE", "timestamp": "2 years ago"}, {"text": "Obligatorio pedir el guacamole y huevos rotos con gambas", "author": "NBC New Beauty Concept", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLLVkyTzZ3RRAB", "timestamp": "4 years ago"}, {"text": "Espectacular calidad y atención de 10", "author": "Javier Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURScjZLbnpRRRAB", "timestamp": "2 years ago"}, {"text": "Excelente lugar, buena atención", "author": "JUAN MANUEL RAMOS QUEVEDO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURObVl6dTJRRRAB", "timestamp": "Edited a year ago"}, {"text": "De fabula", "author": "Ruben Molina Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKXy16X2N3EAE", "timestamp": "2 years ago"}, {"text": "Excelente comida y trato amable", "author": "Juan AB", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhXzRET0hBEAE", "timestamp": "4 years ago"}, {"text": "Llegué de casualidad y me gustó, repetiré", "author": "Rafa Fdez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZaTVUVzlRRRAB", "timestamp": "6 years ago"}, {"text": "Una autentica experiencia", "author": "Antonio Campos Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3amVmUy13RRAB", "timestamp": "a year ago"}, {"text": "Caro pero rico", "author": "BENJAMIN SUAREZ FALCON", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4bTctS09REAE", "timestamp": "5 years ago"}, {"text": "Lo mejor de palma", "author": "Alfredo Cortes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMOF9hS3RRRRAB", "timestamp": "a year ago"}, {"text": "Espectacular!", "author": "L Viladomat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBbzVpV0xBEAE", "timestamp": "11 months ago"}, {"text": "Gente amable y comida exquisita", "author": "Rafael Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxeGVfV25BRRAB", "timestamp": "2 years ago"}, {"text": "magnífica comida y un equipo excepcional", "author": "Francisco Tomas lorenzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4MXZ5eE53EAE", "timestamp": "5 years ago"}, {"text": "No coment", "author": "Julio Ortega sanabria", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwek83S3VBRRAB", "timestamp": "6 years ago"}, {"text": "Acogedor por unos profesionales", "author": "juan Manuel Gonzalez Matel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTcmRERFNnEAE", "timestamp": "5 years ago"}, {"text": "Recomendable. Comida excelente", "author": "Rosario Torre González", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrdVBlVm93RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "juan llompart", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGeFRuSkhXVGR1UzJkak1YbFNNVXA2ZFUxVk4wRRAB", "timestamp": "3 weeks ago"}, {"text": "Perfecto", "author": "Francisco Granados Lobato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOU5PUllREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Melanie Rousseau", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pab1ZFWkZhelpMVkVaVWFVNVhNbFEwYUZGZmIxRRAB", "timestamp": "a month ago"}, {"text": "Excelente calidad precio", "author": "Jose Salinas Martinez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXb05HWHJnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Virginia Ladislao", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xJdFNXUlNlVFozYXpreFVIbElUbUZxZEdRMlZuYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "marco cerritos", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKcWFHODRWblZ2VldKUllWOVRWMVZvV2tSeVFWRRAB", "timestamp": "3 months ago"}, {"text": "Excelent", "author": "Daniela Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtN1pUajlRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Tomas Alcaide Parrado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Gd2R6SlNjVk5GYjNaUWVrOHpObmd5VTI5d09XYxAB", "timestamp": "5 months ago"}, {"text": "PERFECTO", "author": "Anabel Tikal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXZ1A3dWhBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Patasanu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WRE5tSlVUbXhwVVVoaFdrTkJWSEo2VDFkblVHYxAB", "timestamp": "5 months ago"}, {"text": "Delicias, amabilidad y simpatía", "author": "Anigio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwNXZ5by13RRAB", "timestamp": "6 years ago"}, {"text": "It's perferct !", "author": "Jacqueline Couanes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNweXFhOUZBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alejandro Henriquez Portillo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KUGJHSnNPRVI1Y3pkSVYxOUNVa3BYVW01b1JFRRAB", "timestamp": "6 months ago"}, {"text": "Uwaga na rachunek.", "author": "M x", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbUk3T25nRRAB", "timestamp": "6 years ago"}, {"text": "100% recomendable", "author": "Ricardo Sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpOFpPdGN3EAE", "timestamp": "5 years ago"}, {"text": "Comida deliciosa y las mejores atenciones", "author": "Esther Campusano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1aGFQNWJ3EAE", "timestamp": "3 years ago"}, {"text": "Exelente, repetiría", "author": "Pablo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NVlXUlpnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Manuel Bacariza", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FM2RrNUxZbEp0VEZWS2VVeHpTMU5CTkVkT1JIYxAB", "timestamp": "7 months ago"}, {"text": "Comida y servicio insuperable.", "author": "YAIZA RAMOS HERNÁNDEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzdXVta1dnEAE", "timestamp": "Edited 4 years ago"}, {"text": "Todo de lujo comida servicio", "author": "Miguel Angel San Miguel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNUo2RHFnRRAB", "timestamp": "6 years ago"}, {"text": "Comida y servicio EXQUISITOS, !!", "author": "José A. Cabrera S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCcTlUSDVnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "JORGE HERNÁNDEZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZMnVENFRnEAE", "timestamp": "8 months ago"}, {"text": "", "author": "Irmak Tosun", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRM2UzdDNBRRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Levi Jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBd3RpMTNRRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Melania Saavedra", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfazYtWXVRRRAB", "timestamp": "a year ago"}, {"text": "Maravilla de sitio", "author": "Pablo Reca Camacho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyX09lZklnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andreas Bruegger", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmN2Jqc1NREAE", "timestamp": "a year ago"}, {"text": "", "author": "Guacimara Hernandez Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2eE03N2hnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Schlappe", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2aXBqbG93RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Gloria González Valido", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQMHJXaFlBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Carmelo Sarmiento", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQcXIyRWJ3EAE", "timestamp": "a year ago"}, {"text": "", "author": "David Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzdVlTWG9nRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jose Antonio Domínguez Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzaDRUSUd3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Maria Grazia Ticca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzdXJlMW9BRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Mari Celi Gil", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYNFBELVB3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Richard Harris", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURueUlpWFdnEAE", "timestamp": "a year ago"}, {"text": "Servicio y comida de diez", "author": "Juana Boned", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOdGZyYlJREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Carmelo M.H", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNucXB5QU9nEAE", "timestamp": "a year ago"}, {"text": "", "author": "Florian Bouché", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3Z0lhREt3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Eneko GH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiNzllSjh3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Paco Nogales", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNibTllQ1N3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Joana Perera García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN6bzV5Q3pRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "jose serrano santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEMkxfTHVRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Patricia Sánchez Gonzálvez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5eXFDSU53EAE", "timestamp": "a year ago"}, {"text": "", "author": "Pilar Santana", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUN0cU9RcBAB", "timestamp": "2 years ago"}, {"text": "", "author": "Violet Hill", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0MU9XR213RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Javier Manjavacas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOa0tHbGpBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Bimbache 39", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcDRuaXV3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Michelle Kouhiho Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURadDhITnVnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Jose carlos santana ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwM0pXZGtRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ramón Infante", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKNUpienJBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Christoph Helbig", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbWFyYWNBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Antonio Borras Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaXFtUkZBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Nuhacet Monzón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeWZId3N3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Örs Jakab", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNWVxT213RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén García-Pando", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCMnRDYW93RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Marisa Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtb1lPdXFRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Airam Santana", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcE9EMVF3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Cristóbal Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPOC1DbzNRRRAB", "timestamp": "3 years ago"}, {"text": "Grata sorpresa", "author": "Pedro Juan Díaz Batista", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsMjQ3S25RRRAB", "timestamp": "2 years ago"}, {"text": "Comida y trato impecables", "author": "Juan Carlos Tacoronte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbnVqeVZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Agustín Morales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZaTlTMXdRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Comida y servicios ejemplares!!", "author": "roberto trinidad perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cGZHSDRnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular", "author": "Miguel González González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NDRyTGVBEAE", "timestamp": "4 years ago"}, {"text": "Espectacular", "author": "patricia afonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDbEtxUVhnEAE", "timestamp": "5 years ago"}, {"text": "ESPECTACULAR", "author": "Juanma Falcon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaHF2Nmd3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Nelson Martínez Legón", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFM2FuRXplblZHUzNGelJ6aHBXR3BmTUZCUlNXYxAB", "timestamp": "a day ago"}, {"text": "Fantastiskt god mat och mysig service. Begränsad meny men det som serveras är mkt gott och vällagat!", "author": "Peter Wallgren", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoclVHRnVZblpZTFdaMlkwTktUblpsYVdOWFdVRRAB", "timestamp": "a week ago"}, {"text": "", "author": "Mijanur Sikdar", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWRlVHWXRNMjFtY2pCaFJEQnVhVFZ3YzBOb2JVRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Cristina Drosu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214RFp6RXdUeTFFUm5sdWRGZHBXVmQwU2xsMlExRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Francisco Montero Jiménez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aaGMwWXhVV1ozZW1OeVJubHdTekJhWW5GRmFuYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Alex HateLove", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0UFIzWlVOVU42WjJSS0xXdGZVR1ZrVEhFMExVRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "laura vega larios", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GeVRVOVFTM0Y2U0ZCMk9GSmFUbkl4UWs5RFJXYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Cristina Rguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFNVNtWmhNRVUzUkZOTFdqVmZSRzVGWlZsc2RGRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Luca Mazzia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trMk56SXRlRlJwYlhsQ1gyeFZRWEprVjNGNU4wRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "Eneida Padrón Fuentes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xVNGJHRTNkUzA0VVROYWNsTXRSVUZSUmxBeFQwRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "María", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0MWN6WTBaalZNVlc5a2QyTlhhblZ1VGw4eGFuYxAB", "timestamp": "7 months ago"}, {"text": "", "author": "Roland Bohnhof", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taeVJtMVRRMmx4Y2pCUlNXcDZkM2h5YkhacFMwRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "matthias mühlberger", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VKemgtcmVXd0tMcFBnEAE", "timestamp": "7 months ago"}, {"text": "", "author": "Manuel Muñoz González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvcU5UWFR3EAE", "timestamp": "9 months ago"}, {"text": "", "author": "Dolores Roman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNTdfUlhREAE", "timestamp": "9 months ago"}, {"text": "", "author": "Juvy Salac", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJOEtQaUhnEAE", "timestamp": "9 months ago"}, {"text": "", "author": "Mariano Auyanet Romero", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3bExlY2pBRRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Agata Sasiadek", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdThTN3B3RRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Didier Huet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRenJ1cUpBEAE", "timestamp": "10 months ago"}, {"text": "", "author": "Elena Moraru", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdXRxcU13EAE", "timestamp": "10 months ago"}, {"text": "", "author": "Javier Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnb2JDbGFnEAE", "timestamp": "11 months ago"}, {"text": "", "author": "Daniel Bennasar Sans", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNncXVhVmFnEAE", "timestamp": "11 months ago"}, {"text": "", "author": "PM sainz sola", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYbnV5NHZ3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Roberto Muresan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURuMjdLODJBRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Juan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuM0xQMFFREAE", "timestamp": "a year ago"}, {"text": "", "author": "Maria Caldera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIeF83SmdnRRAB", "timestamp": "Edited a year ago"}, {"text": "", "author": "Nayra González", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEZ2ZuVmV3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Carol Garcia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5LXEzekVREAE", "timestamp": "a year ago"}, {"text": "", "author": "B Jaldu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURObl9iVmhRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "urotanke", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxNnN2ak9BEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Tara P", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWbmJLajBBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Paloma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURscUxPbUx3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Tere R G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsOF9mQ29BRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Juan Luis Martin Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsMF9PVVh3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Ramon Calvo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKMjYzWVhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "G Lücke", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKM09yUkhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Mérida Reyero", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKXy0yaEt3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Luisa MC", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4OFAyc09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "jose ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSMTd1c2NREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Renata Skora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSM2ZmaFF3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesús B. R", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUNSb3VCaRAB", "timestamp": "2 years ago"}, {"text": "", "author": "LOLY LÓPEZ CASTELLANO", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSdkxEbFVnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Juancho Lorenzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURodWVYc1Z3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Yeray Rodriguez Castellano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoeVpQLUh3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "JESUS LEAL", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNU5HaExBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Kostas Komninos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoa01HM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alejandro Ochoa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCMDdDWE1BEAE", "timestamp": "3 years ago"}, {"text": "", "author": "RUBEN BRION LIJO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdWJDZGtRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Mario", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOUlmTjFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "MARIA URIARTE", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCMExfWWxBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Javier Villa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNDlycXFRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Jorge Ceballos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcl9HRzJBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Fabian Sendlmeier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtMDVyNWdRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "JMM Errazu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQteU1EUFNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Jinny", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteWNhbW9BRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Gonzalo Ruiz García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtb2FyRzV3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "roque viera", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtLXRmN29RRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Yerai Berenguer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURla3BQMG1RRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Silvia S. R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlb0lXSWZ3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Pino Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlbThuTU13EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Ani Alemán", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlbXJ5ckVREAE", "timestamp": "Edited 3 years ago"}, {"text": "", "author": "Lidia D.R.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1XzlxdnFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Laura Caravella", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1a2RHelZ3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Alberto FL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MzQzLVF3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Esther González Lahoz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1LW8tY1VREAE", "timestamp": "3 years ago"}, {"text": "", "author": "JUAN CARLOS CAMPILLO", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNEw2UXBBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Susy Rosales Jimenez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNPb3FYV1p3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Alejandro Suarez Rosales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPdlAzdnBBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Reidun Nyberg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyd2REZ21BRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Carmensa", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyanJMQWRnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Luis Planelles", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMyNzRqdHRRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Ángel Luis Duque Toledo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXX1lPdm9nRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Matt Kavanagh", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXM3ItU0V3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Débora", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtcmNfbGpRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "oskar johansson", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtenB2UHFRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "L P", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHeV8zNy1BRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Irene Caballero Alvarado", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHa2RIcWpBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Avelino Lamuño Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHZ09MY1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Casper Ackermann", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdV9ySzNBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "graziano brogi", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHcU5TUzRnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ángeles Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2czl5QVVREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jaakko Kuusisaari", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2X1ppUV93RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose Ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2N2JLc2tRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "sara trufi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2NnVucW1BRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Pilar Barrios", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2M0ptOGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Tarún Masand", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2c0lYbHd3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Yolanda Garzon Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURha2ZMUHN3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "José Manuel Begines Garzón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURha2ZLVHNBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Blanca Serradilla", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhX3VYelhREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhNU5mSVl3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Margarita Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhenRqWlh3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "María Concepción Hernández", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNheklpdnVRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "joshua yang", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaUxHSkF3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Maria Delia Roca Martinez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhMExIWjJRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Angelica Gonzalez Gonzalez", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxbi1DQ1dnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Veronika Dimova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbDVhSnVnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "abella garcia ortega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxd3FfU3RBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "inma herrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxaDQyTERREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Gernot Mauritz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxNXZIZGJ3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Victor Castelló", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxekwySnZBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Adela Martel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLM2N6X3hRRRAB", "timestamp": "4 years ago"}] \N Message: tab crashed\n (Session info: chrome=144.0.7559.96)\n {"multi_sort": {}, "retry_info": {"retry_reason": "next_sort", "selected_sort": "lowest", "original_job_id": "02eaebc6-8054-4714-b06e-c567e55c6a10"}, "retry_chain": ["02eaebc6-8054-4714-b06e-c567e55c6a10"], "bot_detected": false, "initial_sort": "lowest", "sort_strategy": "single", "initial_sort_used": "newest", "sort_orders_attempted": ["newest", "lowest"]} 1201 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-29T01:21:44.362Z", "timestamp_ms": 1769649704362}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-29T01:21:44.545Z", "timestamp_ms": 1769649704545}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las...", "category": "browser", "timestamp": "2026-01-29T01:21:44.695Z", "timestamp_ms": 1769649704695}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-29T01:21:46.026Z", "timestamp_ms": 1769649706026}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-29T01:21:46.353Z", "timestamp_ms": 1769649706353}, {"level": "INFO", "message": "Total reviews on page: 1201", "metrics": {"total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:21:48.409Z", "timestamp_ms": 1769649708409}, {"level": "INFO", "message": "Business: Rincón de Triana", "category": "scraper", "timestamp": "2026-01-29T01:21:48.409Z", "timestamp_ms": 1769649708409}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T01:21:48.453Z", "timestamp_ms": 1769649708453}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-29T01:21:48.490Z", "timestamp_ms": 1769649708490}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-29T01:21:48.786Z", "timestamp_ms": 1769649708786}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-29T01:21:48.786Z", "timestamp_ms": 1769649708786}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T01:21:51.352Z", "timestamp_ms": 1769649711352}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T01:21:51.424Z", "timestamp_ms": 1769649711424}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-29T01:21:51.429Z", "timestamp_ms": 1769649711429}, {"level": "INFO", "message": "Found 10 review topics: letter, gyozas, guacamole, island, chlamys varia...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-29T01:21:51.939Z", "timestamp_ms": 1769649711939}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-29T01:21:51.939Z", "timestamp_ms": 1769649711939}, {"level": "INFO", "message": "60/1201 (5%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010223388671875, "progress_pct": 4.995836802664446, "reviews_count": 60, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:21:53.821Z", "timestamp_ms": 1769649713821}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 362}, "category": "system", "timestamp": "2026-01-29T01:21:55.769Z", "timestamp_ms": 1769649715769}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T01:21:55.770Z", "timestamp_ms": 1769649715770}, {"level": "INFO", "message": "110/1201 (9%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000003814697265625, "progress_pct": 9.159034138218152, "reviews_count": 110, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:21:55.797Z", "timestamp_ms": 1769649715797}, {"level": "INFO", "message": "DOM cleanup: removed 44 cards to prevent memory buildup", "metrics": {"cards_removed": 44, "cards_remaining": 328}, "category": "system", "timestamp": "2026-01-29T01:21:57.053Z", "timestamp_ms": 1769649717053}, {"level": "INFO", "message": "140/1201 (12%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02670001983642578, "progress_pct": 11.656952539550375, "reviews_count": 140, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:21:57.080Z", "timestamp_ms": 1769649717080}, {"level": "INFO", "message": "DOM cleanup: removed 36 cards to prevent memory buildup", "metrics": {"cards_removed": 36, "cards_remaining": 509}, "category": "system", "timestamp": "2026-01-29T01:21:58.362Z", "timestamp_ms": 1769649718362}, {"level": "INFO", "message": "170/1201 (14%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03326702117919922, "progress_pct": 14.154870940882597, "reviews_count": 170, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:21:58.396Z", "timestamp_ms": 1769649718396}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 563}, "category": "system", "timestamp": "2026-01-29T01:21:59.487Z", "timestamp_ms": 1769649719487}, {"level": "INFO", "message": "200/1201 (17%) | idle: 0.0s", "metrics": {"idle_seconds": 0.014547586441040039, "progress_pct": 16.65278934221482, "reviews_count": 200, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:21:59.501Z", "timestamp_ms": 1769649719501}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 618}, "category": "system", "timestamp": "2026-01-29T01:22:00.580Z", "timestamp_ms": 1769649720580}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T01:22:00.580Z", "timestamp_ms": 1769649720580}, {"level": "INFO", "message": "230/1201 (19%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009307146072387695, "progress_pct": 19.150707743547045, "reviews_count": 230, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:00.589Z", "timestamp_ms": 1769649720589}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 316}, "category": "system", "timestamp": "2026-01-29T01:22:01.704Z", "timestamp_ms": 1769649721704}, {"level": "INFO", "message": "260/1201 (22%) | idle: 0.0s", "metrics": {"idle_seconds": 0.019499778747558594, "progress_pct": 21.64862614487927, "reviews_count": 260, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:01.724Z", "timestamp_ms": 1769649721724}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 467}, "category": "system", "timestamp": "2026-01-29T01:22:02.954Z", "timestamp_ms": 1769649722954}, {"level": "INFO", "message": "290/1201 (24%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011690855026245117, "progress_pct": 24.14654454621149, "reviews_count": 290, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:02.965Z", "timestamp_ms": 1769649722965}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 387}, "category": "system", "timestamp": "2026-01-29T01:22:04.256Z", "timestamp_ms": 1769649724256}, {"level": "INFO", "message": "320/1201 (27%) | idle: 0.0s", "metrics": {"idle_seconds": 0.034246206283569336, "progress_pct": 26.644462947543712, "reviews_count": 320, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:04.291Z", "timestamp_ms": 1769649724291}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 353}, "category": "system", "timestamp": "2026-01-29T01:22:05.449Z", "timestamp_ms": 1769649725449}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T01:22:05.449Z", "timestamp_ms": 1769649725449}, {"level": "INFO", "message": "350/1201 (29%) | idle: 0.0s", "metrics": {"idle_seconds": 0.024432897567749023, "progress_pct": 29.142381348875933, "reviews_count": 350, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:05.473Z", "timestamp_ms": 1769649725473}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 408}, "category": "system", "timestamp": "2026-01-29T01:22:06.670Z", "timestamp_ms": 1769649726670}, {"level": "INFO", "message": "380/1201 (32%) | idle: 0.1s", "metrics": {"idle_seconds": 0.06612396240234375, "progress_pct": 31.64029975020816, "reviews_count": 380, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:06.736Z", "timestamp_ms": 1769649726736}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 415}, "category": "system", "timestamp": "2026-01-29T01:22:07.798Z", "timestamp_ms": 1769649727798}, {"level": "INFO", "message": "410/1201 (34%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03910970687866211, "progress_pct": 34.138218151540386, "reviews_count": 410, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:07.837Z", "timestamp_ms": 1769649727837}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 271}, "category": "system", "timestamp": "2026-01-29T01:22:08.908Z", "timestamp_ms": 1769649728908}, {"level": "INFO", "message": "440/1201 (37%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008832216262817383, "progress_pct": 36.63613655287261, "reviews_count": 440, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:08.917Z", "timestamp_ms": 1769649728917}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 267}, "category": "system", "timestamp": "2026-01-29T01:22:09.968Z", "timestamp_ms": 1769649729968}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T01:22:09.968Z", "timestamp_ms": 1769649729968}, {"level": "INFO", "message": "470/1201 (39%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008939743041992188, "progress_pct": 39.13405495420483, "reviews_count": 470, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:09.977Z", "timestamp_ms": 1769649729977}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 265}, "category": "system", "timestamp": "2026-01-29T01:22:11.093Z", "timestamp_ms": 1769649731093}, {"level": "INFO", "message": "500/1201 (42%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010435819625854492, "progress_pct": 41.63197335553705, "reviews_count": 500, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:11.104Z", "timestamp_ms": 1769649731104}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 266}, "category": "system", "timestamp": "2026-01-29T01:22:12.209Z", "timestamp_ms": 1769649732209}, {"level": "INFO", "message": "530/1201 (44%) | idle: 0.0s", "metrics": {"idle_seconds": 0.008806228637695312, "progress_pct": 44.12989175686928, "reviews_count": 530, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:12.218Z", "timestamp_ms": 1769649732218}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 165}, "category": "system", "timestamp": "2026-01-29T01:22:13.329Z", "timestamp_ms": 1769649733329}, {"level": "INFO", "message": "550/1201 (46%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011527061462402344, "progress_pct": 45.79517069109076, "reviews_count": 550, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:13.341Z", "timestamp_ms": 1769649733341}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 284}, "category": "system", "timestamp": "2026-01-29T01:22:14.649Z", "timestamp_ms": 1769649734649}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T01:22:14.650Z", "timestamp_ms": 1769649734650}, {"level": "INFO", "message": "580/1201 (48%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012145042419433594, "progress_pct": 48.29308909242298, "reviews_count": 580, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:14.662Z", "timestamp_ms": 1769649734662}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 276}, "category": "system", "timestamp": "2026-01-29T01:22:15.801Z", "timestamp_ms": 1769649735801}, {"level": "INFO", "message": "600/1201 (50%) | idle: 0.1s", "metrics": {"idle_seconds": 0.05753135681152344, "progress_pct": 49.958368026644465, "reviews_count": 600, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:15.858Z", "timestamp_ms": 1769649735858}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 302}, "category": "system", "timestamp": "2026-01-29T01:22:16.920Z", "timestamp_ms": 1769649736920}, {"level": "INFO", "message": "630/1201 (52%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0064585208892822266, "progress_pct": 52.456286427976686, "reviews_count": 630, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:16.926Z", "timestamp_ms": 1769649736926}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 166}, "category": "system", "timestamp": "2026-01-29T01:22:18.114Z", "timestamp_ms": 1769649738114}, {"level": "INFO", "message": "650/1201 (54%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0169985294342041, "progress_pct": 54.12156536219817, "reviews_count": 650, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:18.131Z", "timestamp_ms": 1769649738131}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 197}, "category": "system", "timestamp": "2026-01-29T01:22:19.405Z", "timestamp_ms": 1769649739405}, {"level": "INFO", "message": "670/1201 (56%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 55.786844296419645, "reviews_count": 670, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:19.426Z", "timestamp_ms": 1769649739426}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 256}, "category": "system", "timestamp": "2026-01-29T01:22:20.502Z", "timestamp_ms": 1769649740502}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T01:22:20.502Z", "timestamp_ms": 1769649740502}, {"level": "INFO", "message": "700/1201 (58%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00847315788269043, "progress_pct": 58.284762697751866, "reviews_count": 700, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:20.511Z", "timestamp_ms": 1769649740511}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 172}, "category": "system", "timestamp": "2026-01-29T01:22:21.635Z", "timestamp_ms": 1769649741635}, {"level": "INFO", "message": "720/1201 (60%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02402639389038086, "progress_pct": 59.95004163197336, "reviews_count": 720, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:21.659Z", "timestamp_ms": 1769649741659}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 310}, "category": "system", "timestamp": "2026-01-29T01:22:22.824Z", "timestamp_ms": 1769649742824}, {"level": "INFO", "message": "750/1201 (62%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011326313018798828, "progress_pct": 62.447960033305584, "reviews_count": 750, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:22.836Z", "timestamp_ms": 1769649742836}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 155}, "category": "system", "timestamp": "2026-01-29T01:22:23.935Z", "timestamp_ms": 1769649743935}, {"level": "INFO", "message": "770/1201 (64%) | idle: 0.0s", "metrics": {"idle_seconds": 0.002331256866455078, "progress_pct": 64.11323896752707, "reviews_count": 770, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:23.938Z", "timestamp_ms": 1769649743938}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 146}, "category": "system", "timestamp": "2026-01-29T01:22:25.103Z", "timestamp_ms": 1769649745103}, {"level": "INFO", "message": "790/1201 (66%) | idle: 0.0s", "metrics": {"idle_seconds": 0.007997274398803711, "progress_pct": 65.77851790174854, "reviews_count": 790, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:25.111Z", "timestamp_ms": 1769649745111}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 243}, "category": "system", "timestamp": "2026-01-29T01:22:26.226Z", "timestamp_ms": 1769649746226}, {"level": "INFO", "message": "Flushing 120 reviews to disk...", "metrics": {"source": "flush", "batch_size": 120}, "category": "scraper", "timestamp": "2026-01-29T01:22:26.226Z", "timestamp_ms": 1769649746226}, {"level": "INFO", "message": "820/1201 (68%) | idle: 0.1s", "metrics": {"idle_seconds": 0.11414361000061035, "progress_pct": 68.27643630308077, "reviews_count": 820, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:26.340Z", "timestamp_ms": 1769649746340}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 107}, "category": "system", "timestamp": "2026-01-29T01:22:27.455Z", "timestamp_ms": 1769649747455}, {"level": "INFO", "message": "840/1201 (70%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010909557342529297, "progress_pct": 69.94171523730225, "reviews_count": 840, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:27.466Z", "timestamp_ms": 1769649747466}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T01:22:28.705Z", "timestamp_ms": 1769649748705}, {"level": "INFO", "message": "860/1201 (72%) | idle: 0.1s", "metrics": {"idle_seconds": 0.060695648193359375, "progress_pct": 71.60699417152372, "reviews_count": 860, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:28.766Z", "timestamp_ms": 1769649748766}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 150}, "category": "system", "timestamp": "2026-01-29T01:22:29.853Z", "timestamp_ms": 1769649749853}, {"level": "INFO", "message": "880/1201 (73%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011576175689697266, "progress_pct": 73.27227310574521, "reviews_count": 880, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:29.865Z", "timestamp_ms": 1769649749865}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T01:22:30.909Z", "timestamp_ms": 1769649750909}, {"level": "INFO", "message": "900/1201 (75%) | idle: 0.0s", "metrics": {"idle_seconds": 0.010996103286743164, "progress_pct": 74.93755203996669, "reviews_count": 900, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:30.920Z", "timestamp_ms": 1769649750920}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T01:22:32.004Z", "timestamp_ms": 1769649752004}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T01:22:32.004Z", "timestamp_ms": 1769649752004}, {"level": "INFO", "message": "920/1201 (77%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02150106430053711, "progress_pct": 76.60283097418818, "reviews_count": 920, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:32.026Z", "timestamp_ms": 1769649752026}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T01:22:33.155Z", "timestamp_ms": 1769649753155}, {"level": "INFO", "message": "940/1201 (78%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012700319290161133, "progress_pct": 78.26810990840966, "reviews_count": 940, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:33.168Z", "timestamp_ms": 1769649753168}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T01:22:34.213Z", "timestamp_ms": 1769649754213}, {"level": "INFO", "message": "950/1201 (79%) | idle: 0.2s", "metrics": {"idle_seconds": 0.15242433547973633, "progress_pct": 79.1007493755204, "reviews_count": 950, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:34.367Z", "timestamp_ms": 1769649754367}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 61}, "category": "system", "timestamp": "2026-01-29T01:22:35.812Z", "timestamp_ms": 1769649755812}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.023907184600830078, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:35.836Z", "timestamp_ms": 1769649755836}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0860340595245361, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:36.899Z", "timestamp_ms": 1769649756899}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000016689300537109375, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:38.111Z", "timestamp_ms": 1769649758111}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.4s", "metrics": {"idle_seconds": 1.35628080368042, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:39.467Z", "timestamp_ms": 1769649759467}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.4s", "metrics": {"idle_seconds": 2.3940765857696533, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:40.504Z", "timestamp_ms": 1769649760504}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.4s", "metrics": {"idle_seconds": 3.4245736598968506, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:41.535Z", "timestamp_ms": 1769649761535}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T01:22:41.535Z", "timestamp_ms": 1769649761535}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.6s", "metrics": {"idle_seconds": 4.6490538120269775, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:42.762Z", "timestamp_ms": 1769649762762}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.7s", "metrics": {"idle_seconds": 5.689709901809692, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:43.801Z", "timestamp_ms": 1769649763801}, {"level": "INFO", "message": "961/1201 (80%) | idle: 6.7s", "metrics": {"idle_seconds": 6.7214274406433105, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:44.832Z", "timestamp_ms": 1769649764832}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T01:22:44.832Z", "timestamp_ms": 1769649764832}, {"level": "INFO", "message": "961/1201 (80%) | idle: 8.9s", "metrics": {"idle_seconds": 8.90494680404663, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:47.027Z", "timestamp_ms": 1769649767027}, {"level": "INFO", "message": "961/1201 (80%) | idle: 10.1s", "metrics": {"idle_seconds": 10.099822044372559, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:48.212Z", "timestamp_ms": 1769649768212}, {"level": "INFO", "message": "961/1201 (80%) | idle: 11.2s", "metrics": {"idle_seconds": 11.202812910079956, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:49.314Z", "timestamp_ms": 1769649769314}, {"level": "INFO", "message": "961/1201 (80%) | idle: 12.2s", "metrics": {"idle_seconds": 12.248766899108887, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:50.360Z", "timestamp_ms": 1769649770360}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T01:22:50.360Z", "timestamp_ms": 1769649770360}, {"level": "INFO", "message": "961/1201 (80%) | idle: 13.7s", "metrics": {"idle_seconds": 13.69274616241455, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:51.803Z", "timestamp_ms": 1769649771803}, {"level": "INFO", "message": "961/1201 (80%) | idle: 14.7s", "metrics": {"idle_seconds": 14.723463535308838, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:52.834Z", "timestamp_ms": 1769649772834}, {"level": "INFO", "message": "961/1201 (80%) | idle: 15.7s", "metrics": {"idle_seconds": 15.749541997909546, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:22:53.860Z", "timestamp_ms": 1769649773860}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T01:22:53.860Z", "timestamp_ms": 1769649773860}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.749541997909546}, "category": "browser", "timestamp": "2026-01-29T01:22:54.282Z", "timestamp_ms": 1769649774282}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-29T01:22:54.486Z", "timestamp_ms": 1769649774486}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T01:22:59.563Z", "timestamp_ms": 1769649779563}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T01:23:00.060Z", "timestamp_ms": 1769649780060}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T01:23:03.552Z", "timestamp_ms": 1769649783552}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T01:23:03.674Z", "timestamp_ms": 1769649783674}, {"level": "INFO", "message": "Hard refresh successful, resuming with 961 reviews already collected", "metrics": {"reviews_collected": 961}, "category": "browser", "timestamp": "2026-01-29T01:23:04.211Z", "timestamp_ms": 1769649784211}, {"level": "WARN", "message": "SLOW cycle: 11.4s (api:0.1s dom:0.0s/93cards flush:0.0s seen:961)", "metrics": {"dom_cards": 93, "api_time_s": 0.10268473625183105, "dom_time_s": 0.02981710433959961, "seen_count": 961, "cycle_time_s": 11.372745752334595}, "category": "system", "timestamp": "2026-01-29T01:23:05.415Z", "timestamp_ms": 1769649785415}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:05.630Z", "timestamp_ms": 1769649785630}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 209}, "category": "system", "timestamp": "2026-01-29T01:23:07.668Z", "timestamp_ms": 1769649787668}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.0s", "metrics": {"idle_seconds": 2.01547908782959, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:07.758Z", "timestamp_ms": 1769649787758}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 79}, "category": "system", "timestamp": "2026-01-29T01:23:10.158Z", "timestamp_ms": 1769649790158}, {"level": "WARN", "message": "SLOW cycle: 2.1s (api:0.6s dom:0.3s/99cards flush:0.0s seen:961)", "metrics": {"dom_cards": 99, "api_time_s": 0.6391677856445312, "dom_time_s": 0.26529407501220703, "seen_count": 961, "cycle_time_s": 2.1046597957611084}, "category": "system", "timestamp": "2026-01-29T01:23:10.161Z", "timestamp_ms": 1769649790161}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.6s", "metrics": {"idle_seconds": 4.572309732437134, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:10.315Z", "timestamp_ms": 1769649790315}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 275}, "category": "system", "timestamp": "2026-01-29T01:23:11.510Z", "timestamp_ms": 1769649791510}, {"level": "WARN", "message": "SLOW cycle: 2.5s (api:0.0s dom:0.0s/285cards flush:0.0s seen:961)", "metrics": {"dom_cards": 285, "api_time_s": 0.031469106674194336, "dom_time_s": 0.031081438064575195, "seen_count": 961, "cycle_time_s": 2.4688453674316406}, "category": "system", "timestamp": "2026-01-29T01:23:11.511Z", "timestamp_ms": 1769649791511}, {"level": "INFO", "message": "961/1201 (80%) | idle: 6.3s", "metrics": {"idle_seconds": 6.28632664680481, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:12.029Z", "timestamp_ms": 1769649792029}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T01:23:12.031Z", "timestamp_ms": 1769649792031}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 305}, "category": "system", "timestamp": "2026-01-29T01:23:13.950Z", "timestamp_ms": 1769649793950}, {"level": "WARN", "message": "SLOW cycle: 2.4s (api:0.0s dom:0.2s/335cards flush:0.0s seen:961)", "metrics": {"dom_cards": 335, "api_time_s": 0.031810760498046875, "dom_time_s": 0.17835235595703125, "seen_count": 961, "cycle_time_s": 2.3809335231781006}, "category": "system", "timestamp": "2026-01-29T01:23:13.950Z", "timestamp_ms": 1769649793950}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.3s", "metrics": {"idle_seconds": 1.2807493209838867, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:13.987Z", "timestamp_ms": 1769649793987}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 200}, "category": "system", "timestamp": "2026-01-29T01:23:15.218Z", "timestamp_ms": 1769649795218}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.6s", "metrics": {"idle_seconds": 2.5803940296173096, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:15.287Z", "timestamp_ms": 1769649795287}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 216}, "category": "system", "timestamp": "2026-01-29T01:23:16.944Z", "timestamp_ms": 1769649796944}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.3s", "metrics": {"idle_seconds": 4.280666351318359, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:16.988Z", "timestamp_ms": 1769649796988}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 113}, "category": "system", "timestamp": "2026-01-29T01:23:23.837Z", "timestamp_ms": 1769649803837}, {"level": "WARN", "message": "SLOW cycle: 2.7s (api:0.1s dom:0.3s/133cards flush:0.0s seen:961)", "metrics": {"dom_cards": 133, "api_time_s": 0.13325762748718262, "dom_time_s": 0.2927284240722656, "seen_count": 961, "cycle_time_s": 2.6978697776794434}, "category": "system", "timestamp": "2026-01-29T01:23:23.837Z", "timestamp_ms": 1769649803837}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.8s", "metrics": {"idle_seconds": 5.763706207275391, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:23.859Z", "timestamp_ms": 1769649803859}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 237}, "category": "system", "timestamp": "2026-01-29T01:23:25.733Z", "timestamp_ms": 1769649805733}, {"level": "WARN", "message": "SLOW cycle: 5.8s (api:0.1s dom:0.7s/247cards flush:0.0s seen:961)", "metrics": {"dom_cards": 247, "api_time_s": 0.07545590400695801, "dom_time_s": 0.746558666229248, "seen_count": 961, "cycle_time_s": 5.775152206420898}, "category": "system", "timestamp": "2026-01-29T01:23:25.739Z", "timestamp_ms": 1769649805739}, {"level": "INFO", "message": "961/1201 (80%) | idle: 7.7s", "metrics": {"idle_seconds": 7.728816270828247, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:25.825Z", "timestamp_ms": 1769649805825}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 119}, "category": "system", "timestamp": "2026-01-29T01:23:28.777Z", "timestamp_ms": 1769649808777}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.1s", "metrics": {"idle_seconds": 3.052459955215454, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:28.984Z", "timestamp_ms": 1769649808984}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T01:23:28.986Z", "timestamp_ms": 1769649808986}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 342}, "category": "system", "timestamp": "2026-01-29T01:23:30.789Z", "timestamp_ms": 1769649810789}, {"level": "WARN", "message": "SLOW cycle: 3.8s (api:0.1s dom:0.0s/352cards flush:0.0s seen:961)", "metrics": {"dom_cards": 352, "api_time_s": 0.05235910415649414, "dom_time_s": 0.026276350021362305, "seen_count": 961, "cycle_time_s": 3.8021445274353027}, "category": "system", "timestamp": "2026-01-29T01:23:30.790Z", "timestamp_ms": 1769649810790}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.9s", "metrics": {"idle_seconds": 4.872340202331543, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:30.804Z", "timestamp_ms": 1769649810804}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 473}, "category": "system", "timestamp": "2026-01-29T01:23:31.994Z", "timestamp_ms": 1769649811994}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.2s", "metrics": {"idle_seconds": 1.1888611316680908, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:32.020Z", "timestamp_ms": 1769649812020}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 445}, "category": "system", "timestamp": "2026-01-29T01:23:33.116Z", "timestamp_ms": 1769649813116}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.3s", "metrics": {"idle_seconds": 2.3110697269439697, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:33.142Z", "timestamp_ms": 1769649813142}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 213}, "category": "system", "timestamp": "2026-01-29T01:23:34.383Z", "timestamp_ms": 1769649814383}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.2s", "metrics": {"idle_seconds": 1.2273313999176025, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:34.394Z", "timestamp_ms": 1769649814394}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T01:23:39.023Z", "timestamp_ms": 1769649819023}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.9s", "metrics": {"idle_seconds": 5.908939599990845, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:39.076Z", "timestamp_ms": 1769649819076}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 282}, "category": "system", "timestamp": "2026-01-29T01:23:40.680Z", "timestamp_ms": 1769649820680}, {"level": "WARN", "message": "SLOW cycle: 4.7s (api:0.0s dom:0.4s/292cards flush:0.0s seen:961)", "metrics": {"dom_cards": 292, "api_time_s": 0.018575191497802734, "dom_time_s": 0.43607664108276367, "seen_count": 961, "cycle_time_s": 4.695284128189087}, "category": "system", "timestamp": "2026-01-29T01:23:40.681Z", "timestamp_ms": 1769649820681}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.6s", "metrics": {"idle_seconds": 1.6054563522338867, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:40.794Z", "timestamp_ms": 1769649820794}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 80}, "category": "system", "timestamp": "2026-01-29T01:23:43.000Z", "timestamp_ms": 1769649823000}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.9s", "metrics": {"idle_seconds": 3.9220030307769775, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:43.102Z", "timestamp_ms": 1769649823102}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T01:23:43.104Z", "timestamp_ms": 1769649823104}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 94}, "category": "system", "timestamp": "2026-01-29T01:23:46.446Z", "timestamp_ms": 1769649826446}, {"level": "WARN", "message": "SLOW cycle: 3.0s (api:0.4s dom:0.1s/104cards flush:0.0s seen:961)", "metrics": {"dom_cards": 104, "api_time_s": 0.37943100929260254, "dom_time_s": 0.1351771354675293, "seen_count": 961, "cycle_time_s": 2.9987566471099854}, "category": "system", "timestamp": "2026-01-29T01:23:46.448Z", "timestamp_ms": 1769649826448}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.7s", "metrics": {"idle_seconds": 2.693286657333374, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:46.552Z", "timestamp_ms": 1769649826552}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 91}, "category": "system", "timestamp": "2026-01-29T01:23:53.643Z", "timestamp_ms": 1769649833643}, {"level": "WARN", "message": "SLOW cycle: 3.7s (api:0.2s dom:0.0s/101cards flush:0.0s seen:961)", "metrics": {"dom_cards": 101, "api_time_s": 0.1663041114807129, "dom_time_s": 0.020724773406982422, "seen_count": 961, "cycle_time_s": 3.7484374046325684}, "category": "system", "timestamp": "2026-01-29T01:23:53.644Z", "timestamp_ms": 1769649833644}, {"level": "INFO", "message": "961/1201 (80%) | idle: 9.8s", "metrics": {"idle_seconds": 9.801862716674805, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:53.660Z", "timestamp_ms": 1769649833660}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T01:23:53.661Z", "timestamp_ms": 1769649833661}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 183}, "category": "system", "timestamp": "2026-01-29T01:23:55.382Z", "timestamp_ms": 1769649835382}, {"level": "WARN", "message": "SLOW cycle: 6.4s (api:0.3s dom:0.0s/193cards flush:0.0s seen:961)", "metrics": {"dom_cards": 193, "api_time_s": 0.2737298011779785, "dom_time_s": 0.03280830383300781, "seen_count": 961, "cycle_time_s": 6.42963433265686}, "category": "system", "timestamp": "2026-01-29T01:23:55.383Z", "timestamp_ms": 1769649835383}, {"level": "INFO", "message": "961/1201 (80%) | idle: 11.5s", "metrics": {"idle_seconds": 11.53354549407959, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:55.392Z", "timestamp_ms": 1769649835392}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 181}, "category": "system", "timestamp": "2026-01-29T01:23:56.704Z", "timestamp_ms": 1769649836704}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.2s", "metrics": {"idle_seconds": 1.1873323917388916, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:56.716Z", "timestamp_ms": 1769649836716}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 308}, "category": "system", "timestamp": "2026-01-29T01:23:57.772Z", "timestamp_ms": 1769649837772}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.3s", "metrics": {"idle_seconds": 2.258216381072998, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:57.787Z", "timestamp_ms": 1769649837787}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 89}, "category": "system", "timestamp": "2026-01-29T01:23:59.130Z", "timestamp_ms": 1769649839130}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.8s", "metrics": {"idle_seconds": 3.820528745651245, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:23:59.350Z", "timestamp_ms": 1769649839350}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T01:23:59.351Z", "timestamp_ms": 1769649839351}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 233}, "category": "system", "timestamp": "2026-01-29T01:24:02.929Z", "timestamp_ms": 1769649842929}, {"level": "WARN", "message": "SLOW cycle: 2.2s (api:1.2s dom:0.4s/243cards flush:0.0s seen:961)", "metrics": {"dom_cards": 243, "api_time_s": 1.2474260330200195, "dom_time_s": 0.39777374267578125, "seen_count": 961, "cycle_time_s": 2.230924129486084}, "category": "system", "timestamp": "2026-01-29T01:24:02.944Z", "timestamp_ms": 1769649842944}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.1s", "metrics": {"idle_seconds": 3.07706880569458, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:02.995Z", "timestamp_ms": 1769649842995}, {"level": "INFO", "message": "Recovery attempt #6...", "metrics": {"recovery_attempt": 6}, "category": "browser", "timestamp": "2026-01-29T01:24:03.000Z", "timestamp_ms": 1769649843000}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 164}, "category": "system", "timestamp": "2026-01-29T01:24:05.374Z", "timestamp_ms": 1769649845374}, {"level": "WARN", "message": "SLOW cycle: 4.0s (api:0.0s dom:0.2s/184cards flush:0.0s seen:961)", "metrics": {"dom_cards": 184, "api_time_s": 0.024227619171142578, "dom_time_s": 0.2159423828125, "seen_count": 961, "cycle_time_s": 3.967146396636963}, "category": "system", "timestamp": "2026-01-29T01:24:05.377Z", "timestamp_ms": 1769649845377}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.5s", "metrics": {"idle_seconds": 5.469442367553711, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:05.387Z", "timestamp_ms": 1769649845387}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 5.469442367553711}, "category": "browser", "timestamp": "2026-01-29T01:24:05.403Z", "timestamp_ms": 1769649845403}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-29T01:24:05.607Z", "timestamp_ms": 1769649845607}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T01:24:10.836Z", "timestamp_ms": 1769649850836}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T01:24:11.147Z", "timestamp_ms": 1769649851147}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T01:24:18.579Z", "timestamp_ms": 1769649858579}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T01:24:18.688Z", "timestamp_ms": 1769649858688}, {"level": "INFO", "message": "Hard refresh successful, resuming with 961 reviews already collected", "metrics": {"reviews_collected": 961}, "category": "browser", "timestamp": "2026-01-29T01:24:18.931Z", "timestamp_ms": 1769649858931}, {"level": "WARN", "message": "SLOW cycle: 14.9s (api:0.8s dom:0.1s/201cards flush:0.0s seen:961)", "metrics": {"dom_cards": 201, "api_time_s": 0.7527127265930176, "dom_time_s": 0.07673215866088867, "seen_count": 961, "cycle_time_s": 14.934070110321045}, "category": "system", "timestamp": "2026-01-29T01:24:21.119Z", "timestamp_ms": 1769649861119}, {"level": "INFO", "message": "961/1201 (80%) | idle: 2.3s", "metrics": {"idle_seconds": 2.290243148803711, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:21.222Z", "timestamp_ms": 1769649861222}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 175}, "category": "system", "timestamp": "2026-01-29T01:24:22.928Z", "timestamp_ms": 1769649862928}, {"level": "WARN", "message": "SLOW cycle: 2.5s (api:0.0s dom:0.3s/195cards flush:0.0s seen:961)", "metrics": {"dom_cards": 195, "api_time_s": 0.04162025451660156, "dom_time_s": 0.3071150779724121, "seen_count": 961, "cycle_time_s": 2.4720232486724854}, "category": "system", "timestamp": "2026-01-29T01:24:22.928Z", "timestamp_ms": 1769649862928}, {"level": "INFO", "message": "961/1201 (80%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000002384185791015625, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:22.988Z", "timestamp_ms": 1769649862988}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 147}, "category": "system", "timestamp": "2026-01-29T01:24:24.292Z", "timestamp_ms": 1769649864292}, {"level": "INFO", "message": "961/1201 (80%) | idle: 1.4s", "metrics": {"idle_seconds": 1.3634705543518066, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:24.352Z", "timestamp_ms": 1769649864352}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 175}, "category": "system", "timestamp": "2026-01-29T01:24:26.329Z", "timestamp_ms": 1769649866329}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.5s", "metrics": {"idle_seconds": 3.4790329933166504, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:26.467Z", "timestamp_ms": 1769649866467}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T01:24:26.468Z", "timestamp_ms": 1769649866468}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 166}, "category": "system", "timestamp": "2026-01-29T01:24:31.992Z", "timestamp_ms": 1769649871992}, {"level": "WARN", "message": "SLOW cycle: 2.8s (api:2.8s dom:0.3s/186cards flush:0.0s seen:961)", "metrics": {"dom_cards": 186, "api_time_s": 2.826821804046631, "dom_time_s": 0.26696038246154785, "seen_count": 961, "cycle_time_s": 2.8452084064483643}, "category": "system", "timestamp": "2026-01-29T01:24:31.995Z", "timestamp_ms": 1769649871995}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.0s", "metrics": {"idle_seconds": 4.953351020812988, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:32.169Z", "timestamp_ms": 1769649872169}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 170}, "category": "system", "timestamp": "2026-01-29T01:24:34.633Z", "timestamp_ms": 1769649874633}, {"level": "WARN", "message": "SLOW cycle: 5.3s (api:0.0s dom:0.9s/190cards flush:0.0s seen:961)", "metrics": {"dom_cards": 190, "api_time_s": 0.010735750198364258, "dom_time_s": 0.8583517074584961, "seen_count": 961, "cycle_time_s": 5.314370155334473}, "category": "system", "timestamp": "2026-01-29T01:24:34.639Z", "timestamp_ms": 1769649874639}, {"level": "INFO", "message": "961/1201 (80%) | idle: 7.7s", "metrics": {"idle_seconds": 7.687795400619507, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:34.904Z", "timestamp_ms": 1769649874904}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 150}, "category": "system", "timestamp": "2026-01-29T01:24:36.407Z", "timestamp_ms": 1769649876407}, {"level": "WARN", "message": "SLOW cycle: 2.4s (api:0.1s dom:0.2s/160cards flush:0.0s seen:961)", "metrics": {"dom_cards": 160, "api_time_s": 0.05141162872314453, "dom_time_s": 0.236893892288208, "seen_count": 961, "cycle_time_s": 2.427077054977417}, "category": "system", "timestamp": "2026-01-29T01:24:36.408Z", "timestamp_ms": 1769649876408}, {"level": "INFO", "message": "961/1201 (80%) | idle: 9.3s", "metrics": {"idle_seconds": 9.30357813835144, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:36.520Z", "timestamp_ms": 1769649876520}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T01:24:36.522Z", "timestamp_ms": 1769649876522}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 95}, "category": "system", "timestamp": "2026-01-29T01:24:44.795Z", "timestamp_ms": 1769649884795}, {"level": "WARN", "message": "SLOW cycle: 2.1s (api:0.0s dom:6.6s/115cards flush:0.0s seen:961)", "metrics": {"dom_cards": 115, "api_time_s": 0.01011204719543457, "dom_time_s": 6.621604681015015, "seen_count": 961, "cycle_time_s": 2.115431785583496}, "category": "system", "timestamp": "2026-01-29T01:24:44.795Z", "timestamp_ms": 1769649884795}, {"level": "INFO", "message": "961/1201 (80%) | idle: 7.9s", "metrics": {"idle_seconds": 7.8674538135528564, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:44.955Z", "timestamp_ms": 1769649884955}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 147}, "category": "system", "timestamp": "2026-01-29T01:24:46.339Z", "timestamp_ms": 1769649886339}, {"level": "WARN", "message": "SLOW cycle: 8.1s (api:0.0s dom:0.1s/157cards flush:0.0s seen:961)", "metrics": {"dom_cards": 157, "api_time_s": 0.03174614906311035, "dom_time_s": 0.05944061279296875, "seen_count": 961, "cycle_time_s": 8.050152778625488}, "category": "system", "timestamp": "2026-01-29T01:24:46.341Z", "timestamp_ms": 1769649886341}, {"level": "INFO", "message": "961/1201 (80%) | idle: 9.9s", "metrics": {"idle_seconds": 9.918671369552612, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:47.006Z", "timestamp_ms": 1769649887006}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T01:24:47.006Z", "timestamp_ms": 1769649887006}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 113}, "category": "system", "timestamp": "2026-01-29T01:24:55.663Z", "timestamp_ms": 1769649895663}, {"level": "WARN", "message": "SLOW cycle: 3.1s (api:1.4s dom:4.0s/123cards flush:0.0s seen:961)", "metrics": {"dom_cards": 123, "api_time_s": 1.3944389820098877, "dom_time_s": 4.038514137268066, "seen_count": 961, "cycle_time_s": 3.149632215499878}, "category": "system", "timestamp": "2026-01-29T01:24:55.672Z", "timestamp_ms": 1769649895672}, {"level": "INFO", "message": "961/1201 (80%) | idle: 7.7s", "metrics": {"idle_seconds": 7.665100336074829, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:55.950Z", "timestamp_ms": 1769649895950}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 223}, "category": "system", "timestamp": "2026-01-29T01:24:57.910Z", "timestamp_ms": 1769649897910}, {"level": "WARN", "message": "SLOW cycle: 7.7s (api:0.0s dom:0.6s/233cards flush:0.0s seen:961)", "metrics": {"dom_cards": 233, "api_time_s": 0.023507118225097656, "dom_time_s": 0.6146776676177979, "seen_count": 961, "cycle_time_s": 7.693390130996704}, "category": "system", "timestamp": "2026-01-29T01:24:57.910Z", "timestamp_ms": 1769649897910}, {"level": "INFO", "message": "961/1201 (80%) | idle: 10.0s", "metrics": {"idle_seconds": 9.999375104904175, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:24:58.285Z", "timestamp_ms": 1769649898285}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T01:24:58.285Z", "timestamp_ms": 1769649898285}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-29T01:25:03.012Z", "timestamp_ms": 1769649903012}, {"level": "WARN", "message": "SLOW cycle: 3.4s (api:2.6s dom:0.0s/0cards flush:0.0s seen:961)", "metrics": {"dom_cards": 0, "api_time_s": 2.5616843700408936, "dom_time_s": 0.02256917953491211, "seen_count": 961, "cycle_time_s": 3.437211036682129}, "category": "system", "timestamp": "2026-01-29T01:25:03.013Z", "timestamp_ms": 1769649903013}, {"level": "INFO", "message": "961/1201 (80%) | idle: 3.6s", "metrics": {"idle_seconds": 3.601959705352783, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:25:03.017Z", "timestamp_ms": 1769649903017}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-29T01:25:03.019Z", "timestamp_ms": 1769649903019}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-29T01:25:04.045Z", "timestamp_ms": 1769649904045}, {"level": "WARN", "message": "SLOW cycle: 3.6s (api:0.0s dom:0.0s/0cards flush:0.0s seen:961)", "metrics": {"dom_cards": 0, "api_time_s": 0.0005035400390625, "dom_time_s": 0.0023267269134521484, "seen_count": 961, "cycle_time_s": 3.6217129230499268}, "category": "system", "timestamp": "2026-01-29T01:25:04.045Z", "timestamp_ms": 1769649904045}, {"level": "INFO", "message": "961/1201 (80%) | idle: 4.6s", "metrics": {"idle_seconds": 4.630443096160889, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:25:04.045Z", "timestamp_ms": 1769649904045}, {"level": "ERROR", "message": "DOM parse error: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "scraper", "timestamp": "2026-01-29T01:25:05.050Z", "timestamp_ms": 1769649905050}, {"level": "INFO", "message": "961/1201 (80%) | idle: 5.6s", "metrics": {"idle_seconds": 5.636597394943237, "progress_pct": 80.01665278934222, "reviews_count": 961, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:25:05.051Z", "timestamp_ms": 1769649905051}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 5.636597394943237}, "category": "browser", "timestamp": "2026-01-29T01:25:05.054Z", "timestamp_ms": 1769649905054}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-29T01:25:05.256Z", "timestamp_ms": 1769649905256}, {"level": "ERROR", "message": "Scraper failed: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "system", "timestamp": "2026-01-29T01:25:06.187Z", "timestamp_ms": 1769649906187}] 2026-01-29 01:25:06.189792 \N \N \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N \N \N \N \N \N \N \N \N 051d1960-bf52-4079-8208-66371877dd2f completed https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%20Las%20Palmas%2C%20Spain&hl=en \N \N 2026-01-24 20:24:27.05729 2026-01-24 20:24:46.736747 2026-01-24 20:24:46.840129 79 [{"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"}, {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"}, {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"}, {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"}, {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"}, {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Derians Jose Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Sara Elizondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Leonardo Romeo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}] 19.240309 \N {"job_type": "google-reviews", "priority": 0, "business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "scraper_version": "1.1.0", "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T20:24:30.690Z", "timestamp_ms": 1769286270690}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T20:24:31.117Z", "timestamp_ms": 1769286271117}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%...", "category": "browser", "timestamp": "2026-01-24T20:24:31.309Z", "timestamp_ms": 1769286271309}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T20:24:33.024Z", "timestamp_ms": 1769286273024}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T20:24:33.369Z", "timestamp_ms": 1769286273369}, {"level": "INFO", "message": "Total reviews on page: 79", "metrics": {"total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:24:35.569Z", "timestamp_ms": 1769286275569}, {"level": "INFO", "message": "Business: R. Fleitas Peluqueros", "category": "scraper", "timestamp": "2026-01-24T20:24:35.569Z", "timestamp_ms": 1769286275569}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T20:24:35.641Z", "timestamp_ms": 1769286275641}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T20:24:35.694Z", "timestamp_ms": 1769286275694}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T20:24:36.003Z", "timestamp_ms": 1769286276003}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T20:24:36.003Z", "timestamp_ms": 1769286276003}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-24T20:24:38.684Z", "timestamp_ms": 1769286278684}, {"level": "INFO", "message": "Expanded 3 truncated reviews", "metrics": {"expanded_count": 3}, "category": "browser", "timestamp": "2026-01-24T20:24:38.739Z", "timestamp_ms": 1769286278739}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-24T20:24:38.748Z", "timestamp_ms": 1769286278748}, {"level": "INFO", "message": "Found 5 review topics: hair salon, cutting, price, siblings, beard...", "metrics": {"topic_count": 5}, "category": "scraper", "timestamp": "2026-01-24T20:24:39.266Z", "timestamp_ms": 1769286279266}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T20:24:39.266Z", "timestamp_ms": 1769286279266}, {"level": "INFO", "message": "50/79 (63%) | idle: 0.1s", "metrics": {"idle_seconds": 0.0871424674987793, "progress_pct": 63.29113924050633, "reviews_count": 50, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:24:45.543Z", "timestamp_ms": 1769286285543}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 255}, "category": "system", "timestamp": "2026-01-24T20:24:46.729Z", "timestamp_ms": 1769286286729}, {"level": "WARN", "message": "SLOW cycle: 6.4s (api:0.0s dom:0.0s/305cards flush:0.0s seen:79)", "metrics": {"dom_cards": 305, "api_time_s": 0.021610736846923828, "dom_time_s": 0.010852813720703125, "seen_count": 79, "cycle_time_s": 6.386038064956665}, "category": "system", "timestamp": "2026-01-24T20:24:46.729Z", "timestamp_ms": 1769286286729}, {"level": "INFO", "message": "79/79 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.004741668701171875, "progress_pct": 100.0, "reviews_count": 79, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:24:46.734Z", "timestamp_ms": 1769286286734}, {"level": "INFO", "message": "All 79 reviews collected", "metrics": {"total_reviews": 79, "elapsed_seconds": 7.468660593032837}, "category": "scraper", "timestamp": "2026-01-24T20:24:46.735Z", "timestamp_ms": 1769286286735}, {"level": "INFO", "message": "Final flush: 79 reviews...", "metrics": {"source": "final_flush", "batch_size": 79}, "category": "scraper", "timestamp": "2026-01-24T20:24:46.735Z", "timestamp_ms": 1769286286735}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-24T20:24:46.735Z", "timestamp_ms": 1769286286735}, {"level": "INFO", "message": "Total: 79 unique reviews (flushed: 79, in memory: 0)", "metrics": {"flushed_count": 79, "total_reviews": 79, "elapsed_seconds": 7.468898296356201, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:24:46.735Z", "timestamp_ms": 1769286286735}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:24:46.735Z", "timestamp_ms": 1769286286735}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:24:46.735Z", "timestamp_ms": 1769286286735}] 2026-01-31 03:21:52.853908 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-24T20:24:30.917126", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google 02fd4b63-1220-43ad-be5f-9e86e37753d0 completed https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%20Las%20Palmas%2C%20Spain&hl=en \N \N 2026-01-25 01:14:30.734076 2026-01-25 01:14:46.927004 2026-01-25 01:14:47.14191 79 [{"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"}, {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"}, {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"}, {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"}, {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"}, {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Derians Jose Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Sara Elizondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Leonardo Romeo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}] 16.160164 \N {"job_type": "google-reviews", "priority": 0, "business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "scraper_version": "1.1.0", "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-25T01:14:32.204Z", "timestamp_ms": 1769303672204}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-25T01:14:32.493Z", "timestamp_ms": 1769303672493}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%...", "category": "browser", "timestamp": "2026-01-25T01:14:32.641Z", "timestamp_ms": 1769303672641}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-25T01:14:34.205Z", "timestamp_ms": 1769303674205}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-25T01:14:34.714Z", "timestamp_ms": 1769303674714}, {"level": "INFO", "message": "Total reviews on page: 79", "metrics": {"total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-25T01:14:37.312Z", "timestamp_ms": 1769303677312}, {"level": "INFO", "message": "Business: R. Fleitas Peluqueros", "category": "scraper", "timestamp": "2026-01-25T01:14:37.312Z", "timestamp_ms": 1769303677312}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-25T01:14:37.426Z", "timestamp_ms": 1769303677426}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-25T01:14:37.559Z", "timestamp_ms": 1769303677559}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-25T01:14:38.278Z", "timestamp_ms": 1769303678278}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-25T01:14:38.278Z", "timestamp_ms": 1769303678278}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-25T01:14:40.957Z", "timestamp_ms": 1769303680957}, {"level": "INFO", "message": "Expanded 3 truncated reviews", "metrics": {"expanded_count": 3}, "category": "browser", "timestamp": "2026-01-25T01:14:41.035Z", "timestamp_ms": 1769303681035}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-25T01:14:41.066Z", "timestamp_ms": 1769303681066}, {"level": "INFO", "message": "Found 5 review topics: hair salon, cutting, price, siblings, beard...", "metrics": {"topic_count": 5}, "category": "scraper", "timestamp": "2026-01-25T01:14:41.624Z", "timestamp_ms": 1769303681624}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-25T01:14:41.624Z", "timestamp_ms": 1769303681624}, {"level": "INFO", "message": "40/79 (51%) | idle: 0.6s", "metrics": {"idle_seconds": 0.6378214359283447, "progress_pct": 50.63291139240506, "reviews_count": 40, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-25T01:14:43.859Z", "timestamp_ms": 1769303683859}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 192}, "category": "system", "timestamp": "2026-01-25T01:14:45.740Z", "timestamp_ms": 1769303685740}, {"level": "WARN", "message": "SLOW cycle: 2.8s (api:0.1s dom:0.1s/232cards flush:0.0s seen:70)", "metrics": {"dom_cards": 232, "api_time_s": 0.1456754207611084, "dom_time_s": 0.09644603729248047, "seen_count": 70, "cycle_time_s": 2.771007776260376}, "category": "system", "timestamp": "2026-01-25T01:14:45.741Z", "timestamp_ms": 1769303685741}, {"level": "INFO", "message": "70/79 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03786826133728027, "progress_pct": 88.60759493670885, "reviews_count": 70, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-25T01:14:45.779Z", "timestamp_ms": 1769303685779}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 54}, "category": "system", "timestamp": "2026-01-25T01:14:46.889Z", "timestamp_ms": 1769303686889}, {"level": "INFO", "message": "79/79 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011824369430541992, "progress_pct": 100.0, "reviews_count": 79, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-25T01:14:46.902Z", "timestamp_ms": 1769303686902}, {"level": "INFO", "message": "All 79 reviews collected", "metrics": {"total_reviews": 79, "elapsed_seconds": 5.27739405632019}, "category": "scraper", "timestamp": "2026-01-25T01:14:46.902Z", "timestamp_ms": 1769303686902}, {"level": "INFO", "message": "Final flush: 79 reviews...", "metrics": {"source": "final_flush", "batch_size": 79}, "category": "scraper", "timestamp": "2026-01-25T01:14:46.902Z", "timestamp_ms": 1769303686902}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-25T01:14:46.902Z", "timestamp_ms": 1769303686902}, {"level": "INFO", "message": "Total: 79 unique reviews (flushed: 79, in memory: 0)", "metrics": {"flushed_count": 79, "total_reviews": 79, "elapsed_seconds": 5.277564764022827, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:14:46.902Z", "timestamp_ms": 1769303686902}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:14:46.902Z", "timestamp_ms": 1769303686902}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:14:46.926Z", "timestamp_ms": 1769303686926}] 2026-01-31 03:21:52.847885 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-25T01:14:32.332568", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google 4e27b6b9-7d89-4f32-b258-75bfda99f0d8 completed https://www.google.com/maps/search/?api=1&query=%22Cl%C3%ADnica%20Calme%22%20Vecindario%2C%20Spain&hl=en \N \N 2026-01-31 02:48:06.625702 2026-01-31 02:48:44.83356 2026-01-31 02:48:44.890921 151 [{"text": "I'm delighted with my experience at clinica calme and their professionalism!\\nI had 2 appointments for a nasolabial fold injection 2 weeks apart, and the result is great! The value for money is marvellous, I recommend without hesitation!", "author": "Rita", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxa3NmMHR3RRAB", "timestamp": "2 years ago"}, {"text": "Mi experiencia en Clínica Calme ha sido MARAVILLOSA. No sólo porque te tratan los mejores profesionales y los resultados son espectaculares , sino porque tienen \\"una calidad humana\\" excepcional. Me sentí comodísima y cuidada desde el minuto cero que entré en la clínica. Te explican todo, de manera, que no te quedes con ninguna duda sobre tí tratamiento. Yo me hice labios con ácido hialurónico. Lo recomiendo encarecidamente. La próxima semana voy a una limpieza de cutis profunda. Y seguiré haciéndome tratamientos con ellos. Estoy muy agradecida por el resultado y el trato recibido. Les envío un cálido abrazo.", "author": "Carolina Bravo de Laguna Ruíz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21salpHZHZWazkzUzFwU1dYWnhWSEJPY0RCRlVGRRAB", "timestamp": "3 months ago"}, {"text": "He realizado varios tratamientos en Clínica Calme y estoy realmente encantada con los resultados. El personal es excepcional, muy atento y profesional en todo momento. Se nota la dedicación y el cuidado con el que trabajan, además de la confianza que transmiten desde el primer día. Sin duda, una clínica totalmente recomendable por la calidad de sus servicios y el excelente trato al cliente.\\nSOIS LAS MEJORES 💚🙏🏼", "author": "Arrate Alvarez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taWFlWVklXREkxZUhsWk1rSTBaVkZLYzJVemFWRRAB", "timestamp": "3 months ago"}, {"text": "He ido en varias ocasiones y algunas cosas han sido correctas pero por ejemplo los labios no ,me los inyectaron mal y luego tuve que pagar yo la retirada no asumieron dicen que es mi labio cuando en teoría si son ellos los médicos son lo que lo ponen sabrán hasta donde llega o no un labio .\\nDespués otra cosa mucha publicidad por instagram pero después es “engañosa” Si la clínica anuncia una promoción y no menciona la condición “solo efectivo”, imponerlo después puede considerarse práctica comercial desleal o engañosa (art.\\n20 y 47 de la ley). Vaya que los carteles tan molones que hacen especificar no estaria nada mal.👎🏻\\nEn fin que es una pena ya no me dan ganas de volver . No hace falta que me busquen porque obviamente este nombre no les saldrá en la base de datos :) y la directora que se puede quitar ese filtro enmascarado de apuesta que no cuela ya . Saludos 👋🏻", "author": "Iraya Sanc", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRNWFWOWlaMEZNTlhkZllWZDNRbXBYU3paRWVtYxAB", "timestamp": "3 months ago"}, {"text": "Llevo realizándome el tratamiento de depilación láser en cuerpo completo desde abril y no puedo estar más encantada. La atención y el trato son inmejorables, me siento en confianza en todo momento. El láser me ha sorprendido mucho ya que había probado otro hace años para una zona en particular (me causaba dolor y tardaba demasiado en ver resultados) ahora, en mi caso, he visto resultados desde la primera sesión en el cuerpo completo, es muy cómodo y no duele en general. Totalmente recomendable el tratamiento como la clínica. Las chicas son maravillosas ✨", "author": "Estefanía San", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiX0xYOXp3RRAB", "timestamp": "a year ago"}, {"text": "Primera vez en la clínica y he salido encantadísima,tanto que voy a repetir.\\nLas recomiendo por los tratamientos la cercanía,la amabilidad y los consejos ♥️\\nMuchas gracias chicas nos vemos pronto 🫂", "author": "Laura Exposito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJV1pqSkQ3LXZEYUNBEAE", "timestamp": "8 months ago"}, {"text": "Acudí por recomendación y sinceramente no pude elegir mejor, tenía un grabe problema en la piel de sequedad y manchas que ya había intentado solucionar en otras clínicas y nunca obtenía el resultado deseado además de que cada vez tenía la piel peor, en clínica calme salvaron mi piel, me hice el tratamiento de manchas y me recomendaron sus propias cremas y más encantada no puedo estar.\\nEstoy tan encantada con las cremas que según vi como me mejoraba la piel tiré las de otras marcas a la basura.\\nQuiero agradecerles de todo corazón el maravilloso trabajo que han realizado en mi piel además del trato de las chicas que es espectacular, sin duda alguna es y será mi clínica de confianza.", "author": "Consulta médica", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5bXQyRmFBEAE", "timestamp": "Edited a year ago"}, {"text": "Hola, tengo que detenerme a dejar una reseña a este centro ya que desde la atención telefónica q recibí me encantó, llevo menos d 10 días usando un pack que tuvieron en promoción para higiene facial y no puedo estar más contenta c los resultados en tan poco tiempo.\\nSi dudas repetiré. Un 💯para ellas", "author": "Juega con Alexia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnM3VTU0VnEAE", "timestamp": "11 months ago"}, {"text": "Un sitio genial y en el que confiar con un gran trato por parte de todas las chicas mil gracias por el gran resultado y por lo atentas que son siempre", "author": "Rubén Díaz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pBNWQwbExRbmRhYnpocFZIWlBTR3RzV0VaT05rRRAB", "timestamp": "3 months ago"}, {"text": "Sitio muy top en clínicas estéticas de las palmas. Fui preguntando por higienes faciales y la recepcionista fue muy amable y aparte que me resolvió todo tipo de dudas que tenía de 10. Le pedí cita para hacerme una de ellas a los pocos días y todo salió de maravilla. Un 10 para la clínica y otro 10 para la empleada.", "author": "Josue Olivares Delgado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbC1pbFhnEAE", "timestamp": "a year ago"}, {"text": "Hoy ha sido mi primera vez en la clínica y muy satisfecho con el trato tan profesional y familiar que te dan nada más entrar . Los mejores precios del mercado y producto de calidad , deseando volver para mi segunda sesión de Criolipolisis y empezar a notar los resultados. Recomendable 100 x 100.\\nHoy he vuelto para hacerme mi segunda sesión y muy contento con los resultados obtenidos (7 cm menos de cintura con la primera sesión 😜). A seguir sumando con ayuda del gran equipo de la mejor clínica de estética de Las Palmas.", "author": "Miguel Jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlMFpmNmxRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Llevaba mucho tiempo buscando una clínica de medicina estética donde realizarme de manera segura un lifting de pestañas. Descubrí la Clínica Calme y pedí cita para informarme. Recibí un trato impecable por todos los miembros del equipo. Me resolvieron todas las dudas y me explicaron todo lo que necesitaba saber, así que no dudé en confiar en ellas. Estoy contentísima con el resultado de mis pestañas, preciosas y muy naturales.\\nTotalmente recomendado.", "author": "Paula Hernández Padrón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwbjhMRlFnEAE", "timestamp": "2 years ago"}, {"text": "Ha sido mi primera experiencia para realizarme un aumento de labios y no ha podido ser mejor elección. Desde el asesoramiento, eligiendo el mejor ácido para el resultado que quería hasta la armonización que consiguió la doctora Maite acorde a lo que quería y mi rostro. Encantada y deseando realizarme más tratamientos con ellas. Gracias Maite, İris y todo el equipo por el trato y resultado.", "author": "Zuleica Ojeda Navarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcHVXeVhBEAE", "timestamp": "a year ago"}, {"text": "Hice un regalo a mi mujer para que fuera hacerse un tratamiento facial rejuvenecedor ya que me han hablado maravillas, de su asesoramiento y fue exactamente el caso estuvo super atendida y asesorada en todo momento…quedo encantada de la clínica gracias todo el equipo de clínica calme!!! Un regalo donde triunfas seguro.", "author": "Good Market", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURka2FEQWRREAE", "timestamp": "a year ago"}, {"text": "Comparto esta reseña porque estoy súper contenta con todo el equipo al completo de esta clínica estética. El tratamiento facial es impresionante, aparte de ser efectivo es saludable, y digo esto porque te hace sentir una persona bella tanto por dentro como por fuera gracias a la persona que lo imparte . Las tecnologías que utilizan son de lo último en estética y los productos de lo mejor que hay en el mercado . Sin lugar a duda una experiencia maravillosa y gratificante. Cuidan hasta el más mínimo detalle, en definitiva un servicio de 10 .\\nOs animo tanto a hombres como a mujeres que no dudéis en pedir asesoramiento , os recomendarán lo que vosotros necesitáis y os demostrarán que la medicina estética es otro mundo al que estamos acostumbrados a ver . Gracias por hacernos felices\\nFelicidades a todo el equipo y en especial a su directora médica y gerente IRIS", "author": "Genelva Cózar Blanco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlNDVUZjRRRRAB", "timestamp": "3 years ago"}, {"text": "Encantada con el trato recibido y con el trabajo realizado. Lo recomiendo 100% a cualquier familiar, amigo o conocido ya que mi experiencia ha sido de 10.\\n\\nMuchas gracias al equipo de clínica Calme 😘😘", "author": "Davinia Álvarez Sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsOTlTT0l3EAE", "timestamp": "2 years ago"}, {"text": "Quieres tratamientos con efectividad y naturalidad,que mejor que la Clinica Calme😍.Estoy muy agradecida con los tratamiemtos realizados👏, son un equipo maravilloso son autenticas💓 Agradezco esas manos y esa atencion de todo el equipo,no las cambio sin duda lo recomiendo 100%, no se van arrepentir.🌸✨🌸", "author": "Maite H", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5cXRxUXF3RRAB", "timestamp": "a year ago"}, {"text": "Resaltar la amabilidad y profesionalidad de Iris y de todo el equipo. Varios tratamientos recibidos y muy contenta con el resultado. Excelentes profesionales, asesorándote y respondiendo a todas las dudas.\\nLa doctora Jennifer Martín es maravillosa y hace magia. Recomiendo la clínica 100%👌🏽", "author": "Cristina Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHeFBqR3FBRRAB", "timestamp": "4 years ago"}, {"text": "Enamorada de este equipo, trato de 10, muy amable y te hacen sentir como en casa. Muy profesionales. Estoy muy contenta con los resultados, tanto de aumento de labios, como tratamientos estéticos. 💜", "author": "Ri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1ajVTbDhRRRAB", "timestamp": "3 years ago"}, {"text": "Hace unos días me realize un tratamiento facial y estoy encantada con los resultados mi piel está estupenda además del maravilloso equipo de trabajo que son unas profesionales.", "author": "Alexandra Muñoz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNld2JES29nRRAB", "timestamp": "3 years ago"}, {"text": "La chica de la recepción muy secona ,no me resolvió ninguna duda sin pasar por caja y pagar los 30 € ,solo queríamos resolver algunas dudas con respecto a tratamientos que he visto en Instagram y que me hubiera gustado realizar pero si alguien no te guía y te acompaña en tus primeros pasos parece q estas perdida,esperaba más cordialidad y sutileza a la hora de darme las pautas para concertar cita,se limitó a decir que ella no es doctora y a la consulta son 30,no me dio un precio estimado de tratamiento y bueno he decidido ir a otra clínica donde me han tratado con más tacto y cariño desde primera hora.Pienso q la primera persona q ves en la clínica debería ser tu guía y no mirarte con cara de enemiga.\\nA la respuesta de la clínica;\\nPrimero que nada veo q no entra en debate pero si duda de otras clínicas como si eso realmente le afectara,cuando mientras usted opta por tener una recepcionista incapacitada para dar una estimación de precio de un tratamiento(ya que no está cualificada como médico como usted bien dice) en otras no se limitan a tener personal no cualificado en la puerta si no que van un poquito más allá que ustedes,teniendo a una médica estética cualificada en su recepción y sin entrar en más debate le mando un saludo y para la próxima centrese en su clínica y en las críticas porque a veces lo que usted puede ver como algo negativo,simplemente se puede transformar en una crítica constructiva,si sabe darle la vuelta entonces me habrá entendido.Aqui no se trata de desprestigiar a nadie si no de avanzar y ofrecer a los clientes el mejor servicio desde que llegan a su clínica,saludos y muy buen día.", "author": "La Ink", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfNjZQTHBnRRAB", "timestamp": "a year ago"}, {"text": "Increíble la experiencia. Fui a borrarme un tattoo tras haber pasado por dos centros y al usar anestesia durante el proceso es completamente indoloro. Por no mencionar la amabilidad tan grande de las trabajadoras,en especial Iris,un encanto de niña. 10/10! Lo recomiendo absolutamente a todo el mundo!", "author": "Gabriel Hernández Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNibEpYWG5BRRAB", "timestamp": "a year ago"}, {"text": "He acudido a esta clínica por recomendación de un amigo y estoy encantado con el trato. Los resultados fueron los esperados además de que me sorprendió gratamente la sinceridad de las profesionales con respecto al tratamiento. Recomiendo la clínica.", "author": "Nacho Menéndez Rato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIdGRPcU1nEAE", "timestamp": "a year ago"}, {"text": "Se han convertido en mi clínica de confianza!!!\\nLlevo un tiempo acudiendo para que me apliquen uno de sus tratamientos faciales y estoy encantada!!! Mi piel está más luminosa y cuidada que nunca.\\nAdemás, la atención es de 10! Súper recomendada", "author": "Paloma Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiNzU2MmhnRRAB", "timestamp": "a year ago"}, {"text": "Personal excelente y muy profesional. Variedad de tratamientos, se ajustan a lo que verdaderamente necesitas, siempre aconsejan bajo sus conocimientos profesionales y experiencia ofreciéndote el mejor servicio.\\n\\nCabinas muy cómodas y agradables , todo muy limpio y ordenado.\\n\\nLas chicas son muy detallistas y atentas, son maravillosas. ❤️", "author": "Cynthia Cárdenes Vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNVptNG93RRAB", "timestamp": "11 months ago"}, {"text": "La clínica Calme me ha encantado. Esta presta un servicio de muy buena calidad. En mi caso, he acudido para realizarme un tratamiento para las ojeras, que me había realizado previamente en otra clínica, pero no me quedé conforme. Sin embargo, ahora estoy súper contenta con el resultado y con el trato recibido. Sin duda, la clínica Calme le ha dado una segunda oportunidad a mi rostro. 10/10", "author": "Ángela Falcón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNacDg2VlNBEAE", "timestamp": "2 years ago"}, {"text": "Estoy encantada con mi tratamiento. Me han dejado los labios que siempre había soñado. Todo el mundo me dice que se me han quedado súper naturales y que hacen que mis facciones resalten mucho más. Si lo que buscas es algo natural pero que se note… Este es tu sitio. Además, unas profesionales de los pies a la cabeza. Desde el momento que entras, te invitan a café, agua, magdalenas o chocolate… Siempre con muy buen ambiente y mejores vibras. 100% recomiendo que vengas, no te arrepentirás. GRACIAS, CLINICA CALME Y CHICAS. ¡SON LAS MEJORES!", "author": "Ainhoa Romero Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR6bjUzLUJBEAE", "timestamp": "a year ago"}, {"text": "Hoy me realicé la segunda sección de aumento de labios con la doctora y la verdad que estoy encantada. A parte de profesional es súper humana y se preocupa todo momento de hacerte sentir bien. Las 3 son un encanto. Sin duda pienso seguir visitando la clínica.", "author": "Estefania Galvan Moran", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNyOExmY213RRAB", "timestamp": "a year ago"}, {"text": "Estoy absolutamente satisfecha con el resultado de mi aumento de labios. ¡Me encantan! Quedaron exactamente como quería, e incluso superaron mis expectativas. El procedimiento fue profesional y el resultado final es increíble. ¡No podría estar más feliz!", "author": "Innairis Domínguez Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNyOEstbGhnRRAB", "timestamp": "a year ago"}, {"text": "Hace una semana me hice un tratamiento premium de higiene facial y solo puedo decir que volveré a repetir sin duda. Utilizó también en casa el tratamiento que me recomendaron para seguir mejorando mi piel y estoy encantada. Sin duda la recomiendo 100%. Magnifico trato y profesionalidad.", "author": "cofradia castillo romeral", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsOC16c3hBRRAB", "timestamp": "2 years ago"}, {"text": ".\\n\\nLa clínica Calmen es simplemente espectacular. Desde que entras por la puerta, el trato exquisito y la atención personalizada hacen que te sientas como en casa. El personal es amable, atento y siempre dispuesto a ayudarte en todo lo que necesites.\\n\\nAdemás, la clínica cuenta con una amplia gama de servicios que cubren las necesidades de todo tipo de personas. Desde consultas médicas hasta tratamientos estéticos, la clínica ofrece todo lo que puedas necesitar para cuidar de tu salud y bienestar.\\n\\nEn mi experiencia, el servicio que recibí fue impecable. Me sentí escuchado y comprendido en todo momento, y los profesionales que me atendieron demostraron un alto nivel de conocimiento y experiencia en su campo.\\n\\nEn resumen, la clínica Carmen merece un 10 en atención y servicio. Recomiendo encarecidamente este lugar a cualquier persona que busque una atención de calidad y un trato excepcional. Sin duda, se han ganado mi lealtad como cliente.", "author": "yovanka Monagas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxaEpMbnVnRRAB", "timestamp": "2 years ago"}, {"text": "Mi hijo fue a hacerse un tratamiento PRP para cicatrices acné y está encantado tanto con el resultado como con el trato por parte de todas las chicas de la clínica. Mencionar además que las instalaciones están muy limpias y cuidadas, un gran acierto. 10/10.", "author": "Mapi Marrero acosta", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROMDUzN2xnRRAB", "timestamp": "2 years ago"}, {"text": "Sin duda alguna es la mejoe clínica que he podido elegir para el cuidado de mi piel... Es increíble el cambio que ha dado mi cara...luminosidad, brillo, elasticidad... Y me han quitado una mancha del sol que llevaba años molestándome!!! Sin duda alguna seran siempre mi clínica de confianza!!! El trato es increíble ❤️", "author": "Tahiwali Chong escudero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiNXV1T1ZREAE", "timestamp": "a year ago"}, {"text": "Me hice el tratamiento en los muslos de MESOTERAPIA, pues he bajado más de 20 kg. muy rápido y quería mejorar además de la celulitis, la flacidez. Realmente no creía en estos tratamientos de máquinas y demás, pero quise probar este, pues era diferente, con infiltración y posterior masajes drenantes y sinceramente, después de 10 sesiones, me sorprendió el resultado, me ha mejorado el aspecto de la piel, con menos celulitis y la flacidez en las rodillas, es alucinante el resultado y aunque todavía necesito mejora en dicha zona, ya depende ahora de mi esfuerzo haciendo ejercicio de fuerza, por lo que, recomiendo este tratamiento al 100 %, para quien tenga el mismo problema que tenía yo y seguro que volveré para hacerme alguna cosilla más, pues entre las 4, forman un equipazo. Aprovecho para felicitarlas a todas por su nueva clínica en Bilbao. Besos y a seguir así.", "author": "vicky op", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5NDdlRC1BRRAB", "timestamp": "a year ago"}, {"text": "Me realice un tratamiento facial en la clínica Calme y me encantó tanto el resultado como la profesionalidad y el trato. Además los consejos que me han dado para mi rutina diaria han sido excelentes. Adquirí sus cremas y mascarilla y mi piel ha mejorado enormemente. Reitero que estoy encantada y ya mis amigas han pedido cita, así que seguiré yendo a otros tratamientos.", "author": "Manuel Ángel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNScGJ6YTFRRRAB", "timestamp": "2 years ago"}, {"text": "Me impresiona el gran trabajo, logro bajar 5 kilos con sus tratamientos, la verdad muy amables todas y la atención de la directora un amor", "author": "Mia Quot", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VPamQtUFA0dWNQbVhnEAE", "timestamp": "8 months ago"}, {"text": "Acudí para realizarme el relleno de ojeras y me ha encantado la atención pero sobre todo el resultado! Desde el primer momento noté una mejoría pero con el paso de los días fue mucho mejor! Estoy pensando en hacerme otro tratamiento!\\nPor cierto calidad-precio super bien. Yo en concreto me beneficié de una oferta, publican las promos en su instagram!", "author": "Ariadna Ascanio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwNTZYVzd3RRAB", "timestamp": "2 years ago"}, {"text": "Acudi a realizarme una limpieza de cutis y resultó la mejor que me he hecho nunca. A parte del resultado, para mi es importantísimo el trato ya que es ese ratito que me dedico a mi, y sin duda las chicas consiguen con creces que sea súper agradable gracias a su amabilidad. Por supuesto , ya he regresado a hacerme más cositas, para mi sin duda el mejor centro de estética en el que he estado y con una relación calidad precio insuperable que también es muy importante, en definitiva … de los mejores descubrimientos que he hecho últimamente.", "author": "Noemi Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1MFpLUkpnEAE", "timestamp": "2 years ago"}, {"text": "Acudí a la Clínica Calme a quitarme un lunar, el resultado fue tan satisfactorio que decidí seguir realizándome tratamientos en la misma. El trato de las chicas es espectacular, te explican todo y son muy simpáticas y amables. Sin duda se ha convertido en mi clínica de confianza", "author": "A M", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURac0lpdlp3EAE", "timestamp": "2 years ago"}, {"text": "Con la limpieza facial profunda y el tratamiento de vitaminas me cambio totalmente el aspecto de la cara. Si a esto le sumas las cremas que me recomendaron para día y noche para mi rutina facial, pues me veo la cara súper bien.Los tratamientos de dermocosmetica son muy buenos y a un precio asequible.\\nLo recomiendo 100%.", "author": "Maria otilia Saez Núñez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5d3JuNnFnRRAB", "timestamp": "a year ago"}, {"text": "Me regalaron un tratamiento facial premium y la experiencia fue muy buena. El trato es fenomenal y me asesoraron con las cremas a utilizar para mi tipo de piel, sin duda volveré a acudir.", "author": "Esther Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkbzdHTERBEAE", "timestamp": "a year ago"}, {"text": "Me realicé una limpieza la semana pasada y salí encantada. La técnico me explicó que debido al estado en el que llevé la piel (no me la cuido casi nada y hacía mucho tiempo que no me realizaba una limpieza profunda) iba a estar unos días con la piel irritada. Efectivamente, ocurrió lo que dijo pero mereció la pena porque ahora la tengo estupenda. Además, me recomendó una rutina facial que me está yendo muy bien. Repetiré, la chica se ha convertido en mi esteticista de confianza.", "author": "O Rivemay", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtaTlUN2xRRRAB", "timestamp": "3 years ago"}, {"text": "Primera clínica en productos VEGANOS de estética y quiero\\ndestacar algo muy importante la profesional que me atendió es DOCTORA dato que nadie se detiene a preguntar, destaco la amabilidad y atención desde el momento de entrada a la clínica la rapidez con la que me atendió dicha doctora dando importancia a mi estado de salud para acceder a cumplimentar dicho tratamiento estético y rapidez en buscar solución a mi mejora física, siguió transmitiéndome calma y seguridad en todo momento siendo muy meticulosa en el éxito del resultado, y por sino fuese poco todo esto en menos de 1 hora en mi despedida destacó la amabilidad de la dueña de la clínica con conversaciones que ojalá se pudiese repetir con mas profesionales; Los resultados estoy comenzando a verlos y decir que siempre he dicho que en la sutileza esta la belleza y la Doctora consiguió más de lo que esperaba, 100% recomendable.", "author": "Noelia Guerra Deniz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlazZLLUtREAE", "timestamp": "3 years ago"}, {"text": "Buenos días dejo mi experiencia con clinica calme, hacia un año y medio que no venía a la isla y sinceramente esta clinica me hacia sentir como en casa ,buen trato al cliente y súper contenta con los tratamientos por eso al regresar decidí volver para realizarme un par de tratamientos uno consiste en higiene profunda premium aqua peel y otro neuromodulacion + vitaminas.\\nEntro a la consulta y la doctora me dice que me va a aplicar en 1 zona y que se me notará en 3 sesiones 🥶 el resultado final , entre en shock . Ya que estoy acostumbrada realizarme dicho tratamiento y los resultados son de inmediato. Entonces decidí no realizarme nada por no sentir seguridad y profesionalidad. Tristemente no lo recomiendo , además de ser una clienta no satisfecha , se quedaron con 30e a cuenta por que yo pasé a consulta. pero no se fijan que el día anterior abone 129 por otro tratamiento .....\\nPésima atención al cliente.\\nNo se preocuparon por nada.", "author": "rocio diaz oliva", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxLVB6OU5REAE", "timestamp": "2 years ago"}, {"text": "Desde el primer día me he sentido genial. Un gran descubrimiento, no sólo buenas profesionales sino buenas personas y encima les encantan los perros...de 10", "author": "Gemma Baez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBLS02Skx3EAE", "timestamp": "11 months ago"}, {"text": "Inmejorable!!!acudí para probar la depilación láser y no puedo estar más contenta, en la primera sesión ya note resultados tanto que hoy lleve a mi hijo para su primera sesión en la barba .Gracias x todo chicas y sobre todo a la directora por toda la dedicación y paciencia con mi hijo.", "author": "Carmen García Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURINU1TY1p3EAE", "timestamp": "a year ago"}, {"text": "After my first meeting with Iris, being very reluctant to try these types of treatments, I decided to start with what she recommended. For me, it was something new, personalized, and very caring. I will definitely recommend this aesthetic …", "author": "Juanfra Sanchez", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "I've had several treatments since I started going to the clinic (mesotherapy, body shock, facials, etc.) and I've always been satisfied. But aside from the wonderful treatments, I want to highlight the consistently excellent service and attention from all the staff. It's a pleasure to go to places where they make you feel so welcome.", "author": "Raquel Ventura Medina", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "10/10 experience. The staff was incredibly attentive and friendly, always looking out for you and your needs. And what can I say about the doctor? She's a true professional. For anyone wondering which clinic to choose for treatment, I wholeheartedly recommend Clínica Calme. You'll definitely want to come back!", "author": "Vanessa Ravelo", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Very disappointed with my lip filler results. I only went to even out my lip, and now the asymmetry is much more noticeable. Freshly injected, they were beautiful as always. Once the swelling went down... horrible. …", "author": "ZMedina **", "rating": 1, "source": "dom", "timestamp": "3 years ago"}, {"text": "Without a doubt, the ones in charge of me!!!\\n\\nLip treatments, MESOTHERAPY, thread lifts, body shock, my everyday creams, etc. …", "author": "Paola Lopez", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "This was my first time at the clinic, but it certainly won't be my last, as the staff were wonderful. Their extensive knowledge of everything they do, the way they advise you, and their commitment to finding the best treatment for each individual impressed me. I'm looking forward to having the various treatments they offer.", "author": "Inés Cabrera González", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "I'm undergoing several treatments at Clínica Calme, and I truly couldn't be happier with the results. Furthermore, the entire staff provides unbeatable treatment; they're all wonderful people. Without a doubt, it's the best aesthetic medicine clinic I've ever been to.", "author": "Maite MARTINEZ FORTUN FERNANDEZ", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Excellent service. I went in with many questions about the different treatments they offer, and they answered them all very kindly. I had a facial, the most thorough I've ever had, and at a reasonable price. The esthetician has hands of gold.", "author": "Felisa Mayor Rodriguez", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Highly recommended.\\n\\nI had questions about some spots on my skin, so I went to see what they thought. …", "author": "Miguel Angel Lopez Martinez-Fortun", "rating": 5, "source": "dom", "timestamp": "2 years ago"}, {"text": "Un lugar que recomiendo al 100%. Al entrar encuentras a la recepcionista, muy amable y atenta. Te ofrecen bebida por si quieres. Luego el tratamiento con dos chicas de diez, que te aconsejan y comprenden absolutamente. Son todas muy amables incluso cariñosas. Un centro en el que encuentras bien estar al instante. Mil gracias a las tres! 😍😍😍", "author": "Eliana Vega Déniz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxa29xMmVBEAE", "timestamp": "2 years ago"}, {"text": "Hace unos días acudí por primera vez a este centro, del que no tenía ninguna referencia, y ha sido todo un acierto. El trato al cliente es fabuloso durante todo el proceso, y la chica que me hizo la limpieza y el masaje facial muy profesional. Repetiré!", "author": "Pablo Alejandro Lorenzo Rivero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdnYzQm53RRAB", "timestamp": "4 years ago"}, {"text": "Hola. Encantada con los diversos tratamientos que me han realizado! Las chicas son fantásticas! Muchas gracias a todas.", "author": "Fátima Bermúdez Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBaU9Ia3J3RRAB", "timestamp": "11 months ago"}, {"text": "Las chicas muy amables, son todas unas profesionales. Soy una persona que las agujas siempre de lejos pero con esta DOCTORA, repetiría siempre que pueda y lo necesite. Muchas gracias y felicidades por el gran trabajo que están haciendo.", "author": "DaniDoreste", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtekthU1hREAE", "timestamp": "3 years ago"}, {"text": "He estado en la clínica para la eliminación de unos lunares y el trato de 10. Muy amables, muy atentas y profesionales. Tratamiento indoloro y muy rápido. Sin duda 100% recomendable.", "author": "Marta Guerra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsLWJXTDdBRRAB", "timestamp": "2 years ago"}, {"text": "He acudido varias veces a la clínica, tengo que decir que siempre me han explicado cada tratamiento de manera clara, teniendo en cuenta mis necesidades y así obtener el mejor resultado.\\nEl resultado final es maravilloso y recomiendo Clínica Calme una y mil veces.", "author": "maikel sanabria de la guardia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIOUpnEAE", "timestamp": "3 years ago"}, {"text": "Me hice el lifting y tinte de pestañas y no puedo estar más contenta con el resultado. Además, de un trabajo excelente, la calidad humana y profesional es lo mejor sin duda.", "author": "Gema Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyek5MWlJnEAE", "timestamp": "a year ago"}, {"text": "Acudí a la clínica para una infiltración de botox y estoy súper contenta con el resultado. Había acudido a otras clínicas y nunca conseguían que se me quedara bien el botox en la pata de gallo y en esta clínica con las recomendaciones de la doctora De la Guardia en medicina estética y las recomendaciones de la directora en la cosmética tengo la zona sin arrugas, estoy súper contenta, volveré muy pronto.", "author": "Merci S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlMGR6ZzJBRRAB", "timestamp": "3 years ago"}, {"text": "Trato exquisito. Me he hecho varios tratamientos (aumento de labios, maderoterapia y masaje a cuatro manos) y a cuál mejor. 100% recomendado, en mi tendrán una clienta fija. Enhorabuena por tan buen servicio.", "author": "Barby Bri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyMHRDcUF3EAE", "timestamp": "3 years ago"}, {"text": "He estado en la clínica y el trato por la Dra y las chicas de cabina ha sido genial! Super amables y atentas en todo momento. Resultados genial, muy contenta.", "author": "Yaiza Quevedo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxNUlYZ2hBRRAB", "timestamp": "2 years ago"}, {"text": "MARAVILLOSO son todas espectaculares... de verda que ya cuesta muchísimo encontrar un trato tan bueno y atento, desde que entras por la puerta hasta el momento que sales.\\nAsesoramiento buenísimo y tratamientos top 10 es que no tengo nada malo que decir\\nTen claro que no van a engañarte ni venderte por venderte productos ni tratamientos... no duden en ir de verdad es una apuesta segura .. Gracias por todo 💜", "author": "Minerva A", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEeDRQTzdRRRAB", "timestamp": "a year ago"}, {"text": "Me hice una limpieza facial el mes pasado y me gustó tanto cómo trabajó la chica, que le regalé un masaje relajante a mi madre... Ha ido hoy y ha salido súper feliz con la experiencia. Muchísimas gracias!", "author": "Azahara SB", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1XzhUR1RREAE", "timestamp": "3 years ago"}, {"text": "Son una clínica increíble, con un personal muy atento, pendiente a ti y a las necesidades de cada persona, muy amable en todo momento y cuidadosas, además de ello, la doctora es una gran profesional, en todo momento te explican y aconsejan lo mejor acorde a tu necesidades y lo que tú le pidas, le recomiendo a todo el mundo esta clínica, son increíbles y seguramente repetiré.", "author": "Carla Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxNHRHbFBnEAE", "timestamp": "2 years ago"}, {"text": "Sto effettuando la depilazione laser, siamo quasi alla fine del trattamento e sono felicissima del risultato! Consiglio questa clinica, sono super professionali e gentilissimi.", "author": "Irene Tuscolano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxaE5pSVpREAE", "timestamp": "2 years ago"}, {"text": "He visitado Clínica El Calme para realizarme el tratamiento de Blanqueamiento Bucal la verdad entre con nervios por q era la primera vez q las visitaba,pero desde q entré por la puerta las profesionales q trabajan hay fueron un encanto en todo momento me hicieron sentir super cómoda y tranquila , te explican todo se toman su tiempo q eso al final te tranquiliza como paciente.Muy Feliz y Agradecida seguro q volveré.Super Recomendadas 100x100", "author": "marianela zambrano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsMS1lM2xnRRAB", "timestamp": "2 years ago"}, {"text": "Fui la semana pasada a hacerme un masaje relajante y salí encantada. La masajista es estupenda y tiene unas manos maravillosas. Además, recibí un muy buen trato de todo el personal desde el primer momento.", "author": "Elisabet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHckx2SlBBEAE", "timestamp": "4 years ago"}, {"text": "Acudí a la clínica tras haberme hecho un aumento de labios en otro centro y haber obtenido unos malos resultados. Les llame para contarles mi caso y me dieron cita para el mismo día. Indescriptible el trato que me dieron y como la doctora solucionó mi problema. Agradecida eternamente, que profesionalidad!", "author": "Belén Oviedo parrondo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoaTZtcmJ3EAE", "timestamp": "2 years ago"}, {"text": "Acudo a esta clínica para darme el láser y estoy muy satisfecho, ya que he notado resultados desde la primera sesión. Además las chicas cuidan mucho los detalles y dan un buen trato y servicio.", "author": "Nauzet González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtOU5qWEVnEAE", "timestamp": "4 years ago"}, {"text": "Profesionalidad, trato humano y cercanía. Un lugar familiar de referencia en la Medicina estética en Las Palmas con las técnicas más vanguardistas y el mejor personal posible. Sin duda, un lugar de plena confianza.", "author": "Javier López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxLUpXYmtRRRAB", "timestamp": "2 years ago"}, {"text": "Muy contenta, el personal te da seguridad a la hora de hacerte los tratamientos. Estoy muy satisfecha con lo que me han hecho. ¡¡¡Felicidades!!!...siempre mantengan ese buen trato y buen servicio.", "author": "Rima Isa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHLW91LW5BRRAB", "timestamp": "4 years ago"}, {"text": "Grandes profesionales, un ambiente acogedor y familiar. Valoraciones reales!! Las mejores opciones de tratamientos para sus pacientes.", "author": "Sara Alemán amaya", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIek1QRXVnRRAB", "timestamp": "a year ago"}, {"text": "Me he realizado diferentes tratamientos en esta clínica y siempre he salido súper satisfecha! Las chicas son encantadoras!", "author": "Lara Mata", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5Z3EzVy1BRRAB", "timestamp": "a year ago"}, {"text": "Clínica que me ha sorprendido por su gran profesionalidad y tratamientos novedosos y asequibles. Muy contenta con el trato recibido por la esteticista. Enhorabuena, volveré pronto.", "author": "Nadia Vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHOFpHcWdnRRAB", "timestamp": "4 years ago"}, {"text": "Contentísima con la clínica Calme. Destacar la profesionalidad de sus trabajadores, siempre pendientes de las necesidades y del bienestar de sus clientes. Experiencia 10/10. Muchas gracias.", "author": "Carlota Madrigal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxN042VEt3EAE", "timestamp": "2 years ago"}, {"text": "Una clínica estupenda! Pet friendly y con servicios/productos apto para veganos! Además que te deja llevar a tu peludo a la clínica si así lo deseas. Sólo puedo decir cosas buenas.\\n100% recomendados en todos los sentidos!", "author": "Nedriel miu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOGJpTm9nRRAB", "timestamp": "3 years ago"}, {"text": "Es una clínica espectacular. El personal es increíble. Son muy profesionales y muy simpáticos. Quedé encantada!! La recomiendo sin duda!! Muchísimas gracias por todo!", "author": "María Guerra Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlbGNLMkxREAE", "timestamp": "3 years ago"}, {"text": "La recepcionista es muy simpática y agradable. El trato en la clínica exquisito. Volvería sin dudarlo. Muy competentes y profesionales.", "author": "Eleazar Fernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxLUotSUNnEAE", "timestamp": "2 years ago"}, {"text": "Si estás buscando un sitio donde hacerte cualquier arreglito estético, esta es la clínica ideal.\\nSon todas unas profesionales de 10 y usan los mejores productos del mercado.\\nSin duda, vuelvo a repetir cada vez que pueda 🥰", "author": "Raquel Rodríguez García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyNS1xTW9BRRAB", "timestamp": "3 years ago"}, {"text": "Simplemente super encantada tanto con el trato como con el buen trabajo que hizo con mis labios ❤️ volveré sin ninguna duda 🙏🏼", "author": "Yurena Hernández Suarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNMdnRmdmVREAE", "timestamp": "a year ago"}, {"text": "Me he realizado la extirpación de una verruga y a pesar de venir con miedo, no he sentido ningún tipo de dolor. Las chicas son encantadoras y he salido súper contenta. 😍😍😍", "author": "Jenny Díaz Hdez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNweDkzdGJBEAE", "timestamp": "2 years ago"}, {"text": "Es la segunda vez que asisto a esta Clinica y la verdad estoy encantada, el trato y los tratamientos a realizar de 10. Son muy profesionales", "author": "Daniela Uzcategui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5LUxpWGJREAE", "timestamp": "a year ago"}, {"text": "Muy buenas profesionales. Transmiten tranquilidad y explican el proceso con mucho detalle. Me atendieron genial. Muy satisfecha con los resultados. Recomiendo sin duda alguna.", "author": "Paula Viqueira", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxaE5xemdBRRAB", "timestamp": "2 years ago"}, {"text": "Super encantada estoy con todas las trabajadoras me super encanta y sobre todo el tratamiento que me e echo e salido súper súper encantada, elegiría esa clinica mil beses mas", "author": "Lurdes Guillen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkdk0zQnl3RRAB", "timestamp": "a year ago"}, {"text": "Excelente servicio totalmente personalizado y una atención maravillosa, siempre me reciben con un café calientito y una sonrisa♥️", "author": "Melanie Castellanos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMbmtwWkRaeW96dzZRRRAB", "timestamp": "8 months ago"}, {"text": "Las chicas son maravillosas la atencion inmejorable y lo mejor de todo te aconsejan siempre lo que te puede ir bien y para mi lo mas importante he pagado un tratamiento pero tengo resultados.", "author": "vicky melian flores", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwODdXSmFBEAE", "timestamp": "2 years ago"}, {"text": "El trato recibido es magnífico, la técnico es maravillosa y la directora un encanto. Sin duda la mejor clínica médico estética de Las Palmas.", "author": "Rafael Arcas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyeEl6a2NBEAE", "timestamp": "3 years ago"}, {"text": "Clínica y personal increíble! Muy profesionales y entregados. Mimando y cuidando a todos sus pacientes! Lo recomiendo 100%", "author": "M S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxLUwzVFdnEAE", "timestamp": "2 years ago"}, {"text": "Hoy ha sido la primera sesión de maderoterapia y he salido encantadísimaaa. Un trato exquisito y resultado sorprendende.\\nRecomendado 100%", "author": "Daira Rodríguez rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtdHNtTmdnRRAB", "timestamp": "4 years ago"}, {"text": "Tratamiento corporal y muy contento. Todo genial. El trato excelente. Seguiré llendo a Clinica Calme para cualquier tratamiento.", "author": "Jose Suarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNld2FpVE5BEAE", "timestamp": "3 years ago"}, {"text": "Excelentes profesionales, seriedad y buenísimos resultados en la depilación láser que he realizado en Clínica Calme.\\nMuy recomendable!!", "author": "Leandro Juan Rodriguez Perera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteDdUWHlBRRAB", "timestamp": "3 years ago"}, {"text": "El trato fue una maravilla te hacen sentir cómoda y en confianza, no tardó nada y además estoy súper contenta con el resultado, sin duda voy a volver😍💜", "author": "Namibia Hernández Alegre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlcWE2U1BBEAE", "timestamp": "3 years ago"}, {"text": "Todas las chicas ofrecen un trato magnífico, muy agradable. Además de una gran profesionalidad!!\\nEncantada con la clínica 😊", "author": "valeria rivas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHLXNlRzN3RRAB", "timestamp": "4 years ago"}, {"text": "Trato profesional, coherente y razonable, además de precios imbatibles en toda la zona de la isla, muy recomendado (las chicas que me atendieron muy guapas) además de la iluminación interior de tono fresco y agradable, de elementos elegantes con un tono a jardín zen.", "author": "Patriotic 69", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXaVlQSGx3RRAB", "timestamp": "3 years ago"}, {"text": "No puedo estar más encantada con el trato y el resultado de los labios… La dra es súper atenta y detallista, sin duda la mejor.", "author": "Daniela Uzcátegui Pineda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPOGEzOHNBRRAB", "timestamp": "3 years ago"}, {"text": "Fui hoy por recomendación de un familiar y me gustó mucho el ambiente de la clínica, los productos de calidad que ofrecen y la cercanía con el paciente.", "author": "Goretti PB", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHbkppb1FnEAE", "timestamp": "4 years ago"}, {"text": "Clínica calme: sus tratamientos son efectivos, seguros y con un trato maravilloso. Estoy muy contenta de haberla encontrado.", "author": "Nereida Alejandro Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcS1MNjBnRRAB", "timestamp": "2 years ago"}, {"text": "Primera visita a la clínica, recibiendo un trato ameno y muy profecional, preocupándose de mi caso en todo momento, la recomiendo al 100 %.", "author": "Jonay Santiago del Valle", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlOTZyelFBEAE", "timestamp": "3 years ago"}, {"text": "En clínica calme me realice el tratamiento de levantamiento de glúteos y ha sido una experiencia increíble muchisisimas gracias, desde la atención hasta todo la información que me dieron muchas gracias", "author": "Dulce Salas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaX051TFh3EAE", "timestamp": "2 years ago"}, {"text": "Trato familiar, pensaba que era una clínica más, pero te hacen sentir como en casa y comprenden tus necesidades.muy contenta con el resultado y con sus recomendaciones. Un 10 sin duda", "author": "Mercedes Arias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdElQQTFBRRAB", "timestamp": "4 years ago"}, {"text": "Me recomendaron esta clínica para un tratamiento de depilación láser y salí muy contento. Trato excelente.", "author": "J B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURld2NyQWh3RRAB", "timestamp": "3 years ago"}, {"text": "Estoy súper contenta con la clínica y además el trato por parte del personal es inmejorable.", "author": "Sara Navarro Pulido", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaX0l2NHhRRRAB", "timestamp": "2 years ago"}, {"text": "Es la segunda vez que voy y estoy encantadísima con los resultados y el trato no podría ser mejor. Son increíbles !!!", "author": "Victoria Be Ibarra Prieto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWOWVIUjl3RRAB", "timestamp": "2 years ago"}, {"text": "Me a encantado la clinica y sobre todo el trato super amables y encantadoras", "author": "Najwa Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxLUpmdDZ3RRAB", "timestamp": "2 years ago"}, {"text": "Cuando una persona se dedica por vocación a lo que hace, se nota y lo transmite con luz propia. No dudéis en poneros en sus manos. Gracias!!!", "author": "Milagros Mellado Fonseca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNScGRhazZnRRAB", "timestamp": "2 years ago"}, {"text": "Superó mis expectativas. Desde el primer momento, su equipo demostró una profesionalidad excepcional.", "author": "Sonia D", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkaGUyQVJREAE", "timestamp": "a year ago"}, {"text": "Clínica con un trato y profesionalidad por parte de todo el personal de 10. Muy recomendable.", "author": "Gabriel Lopez Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaemZUZm93RRAB", "timestamp": "Edited a year ago"}, {"text": "Espectacular experiencia en la clínica calme. Muy recomendado, grandes profesionales!!", "author": "Alvaro GO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSLXZYYXVRRRAB", "timestamp": "2 years ago"}, {"text": "El trato por parte de la esteticien es inmejorable, Ofelia me encanta.", "author": "Begoña De La Guardia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtaS1uT0d3EAE", "timestamp": "3 years ago"}, {"text": "Servicio muy profesional, atención excepcional, personal muy cualificado. Clínica totalmente recomendable", "author": "Sandra Queder", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyby1teU1BEAE", "timestamp": "3 years ago"}, {"text": "Excelente equipo,excelente trato,y excelentes profesionales,volveremos gracias por la atención recibida,unas cracks", "author": "Juani Rodríguez Espin0", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtdE5mTjFBRRAB", "timestamp": "3 years ago"}, {"text": "Excelente servicio y la atención de las chicas es increíble", "author": "Samuel David Ortega Pichardo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VObm8xdi1Xazh1VzdBRRAB", "timestamp": "8 months ago"}, {"text": "Muy buen trato personal muy cercanos y el tratamiento me va de mil maravilla gracias", "author": "Lidia Olivares Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtanZXQ3pnRRAB", "timestamp": "3 years ago"}, {"text": "Increíbles, muy profesionales, el trato muy cercano y amigable. No puedes estar en mejores manos.", "author": "Jessica Ramírez Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXc2R1eHlRRRAB", "timestamp": "3 years ago"}, {"text": "Trato personalizado, cuidan todos los detalles\\nY grandes profesionales que te aconsejan la tecnica adecuada", "author": "inma melian", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURla3Y3ZGxBRRAB", "timestamp": "3 years ago"}, {"text": "Clínica muy acogedora. Personal altamente cualificado y muy amable.", "author": "Anghara García Dávila", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHMnEtUUdnEAE", "timestamp": "4 years ago"}, {"text": "Un EQUIPO MARAVILLOSO!! Y el resultado increíble. 10/10", "author": "Melania Saavedra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeXAtRm5RRRAB", "timestamp": "2 years ago"}, {"text": "Sinceramente son lo mejor, son un encanto y maravilloso el tratamiento", "author": "yaiza reyes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5bXJlcWtBRRAB", "timestamp": "a year ago"}, {"text": "Clínica recomendable 100% por su trato cercano y por su profesionalidad.", "author": "Víctor PC", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHdEpfbmlBRRAB", "timestamp": "4 years ago"}, {"text": "Una maravilla de trabajo y de chicas! Recomendable al 100%", "author": "Alazne ___", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqLTdXNkxREAE", "timestamp": "a year ago"}, {"text": "Cejas y pestañas fatal. Y no dieron ni una sola solución.", "author": "Acoidan Sarmiento", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaX00yLVFnEAE", "timestamp": "2 years ago"}, {"text": "Muy contenta con el trabajo que hacen,siempre ofreciendo lo mejor que convenga.", "author": "Nereida Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlMHVXOGdnRRAB", "timestamp": "3 years ago"}, {"text": "Todo maravilloso", "author": "Laura Toledo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKbWNXazBWVVpLYzBGb2RUbE5abTlhWDJKRFNYYxAB", "timestamp": "3 months ago"}, {"text": "Muy buena experiencia, muy buenos profesionales!!", "author": "A M.R", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaX0llZXJBRRAB", "timestamp": "2 years ago"}, {"text": "Trato magnífico y resultados increíbles. 100% recomendado.", "author": "Omayra Déniz Guedes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQybDRydmZREAE", "timestamp": "3 years ago"}, {"text": "Excelente trabajo y buenas promociones. Me encanto.", "author": "Consuelo I Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNld2FITnFBRRAB", "timestamp": "3 years ago"}, {"text": "Encantada con mi tratamiento! Trato exquisito… 👏🏽👏🏽👏🏽👏🏽 Repetiré!", "author": "Sara Alvarado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtbnE2dVRREAE", "timestamp": "3 years ago"}, {"text": "MUY BUEN TRATO, MUCHA AMABILIDAD.", "author": "Yesica Del Carmen Tadeo Florentino", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoc0xHYjZ3RRAB", "timestamp": "2 years ago"}, {"text": "Sitio no recomendado por baja profesionalidad", "author": "Eva S", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkM3RmclZnEAE", "timestamp": "Edited a year ago"}, {"text": "Muy contenta con el resultado ,gracias", "author": "Clara Aviles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtanRYd0FnEAE", "timestamp": "3 years ago"}, {"text": "Muy mala experiencia.", "author": "ESMERALDA MARTIN GARCIA", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtOC0tcEhnEAE", "timestamp": "Edited 2 years ago"}, {"text": "Gran servicio", "author": "Marixili Cayola S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaZ29iOHR3RRAB", "timestamp": "2 years ago"}, {"text": "Muy mala experiencia", "author": "Pilar Alvarez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXMGN2MHRnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Yaiza G", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaN2ZTVjVRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Dunia Rodriguez Santiago", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaemN2RVJBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Noelia Gil S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaall1M0FREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Omar Gil Santiago", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaOWJiLVVBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "C.A.S.", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaOWRpaW1nRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Barbara Romero", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwNWN2VElREAE", "timestamp": "2 years ago"}, {"text": "", "author": "sabrina sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSXzdMbzVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Katherine Villanueva Valencia", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURla3ByblFBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Ruyman Pulido", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPazRxQTZBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Ruben Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXbHJLcFF3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Cynthia Mayor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtOU1ibUpnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Daniela Mederos", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtLU1DdW9RRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Kevin Monzón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHcE5tMkpREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Irene Cruz García", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHeEpTaU9nEAE", "timestamp": "4 years ago"}] 38.198715 \N {"job_type": "google-reviews", "priority": 0, "multi_sort": {"enabled": false, "completed_sorts": ["newest"], "first_pass_count": 151}, "bot_detected": false, "business_name": "Clínica Calme - Medicina estética, estética avanzada y quiromasaje", "rating_snapshot": 4.7, "scraper_version": "1.1.0", "business_address": "C. Montevideo, 15, 35007 Las Palmas de Gran Canaria, Las Palmas, Spain ", "initial_sort_used": "newest", "sort_orders_attempted": ["newest"], "total_reviews_snapshot": 151} 151 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-31T02:48:07.280Z", "timestamp_ms": 1769827687280}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-31T02:48:07.351Z", "timestamp_ms": 1769827687351}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22Cl%C3%ADnica%20Calme%22%20Vec...", "category": "browser", "timestamp": "2026-01-31T02:48:07.482Z", "timestamp_ms": 1769827687482}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-31T02:48:09.136Z", "timestamp_ms": 1769827689136}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-31T02:48:09.492Z", "timestamp_ms": 1769827689492}, {"level": "INFO", "message": "Total reviews on page: 151", "metrics": {"total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:11.593Z", "timestamp_ms": 1769827691593}, {"level": "INFO", "message": "Business: Clínica Calme - Medicina estética, estética avanzada y quiromasaje", "category": "scraper", "timestamp": "2026-01-31T02:48:11.593Z", "timestamp_ms": 1769827691593}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:48:11.636Z", "timestamp_ms": 1769827691636}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-31T02:48:11.654Z", "timestamp_ms": 1769827691654}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-31T02:48:11.786Z", "timestamp_ms": 1769827691786}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-31T02:48:11.786Z", "timestamp_ms": 1769827691786}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:48:14.370Z", "timestamp_ms": 1769827694370}, {"level": "INFO", "message": "Expanded 8 truncated reviews", "metrics": {"expanded_count": 8}, "category": "browser", "timestamp": "2026-01-31T02:48:14.418Z", "timestamp_ms": 1769827694418}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-31T02:48:14.425Z", "timestamp_ms": 1769827694425}, {"level": "INFO", "message": "Found 10 review topics: treatment, team, trust, lip, clean...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-31T02:48:14.948Z", "timestamp_ms": 1769827694948}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-31T02:48:14.950Z", "timestamp_ms": 1769827694950}, {"level": "INFO", "message": "10/151 (7%) | idle: 0.0s", "metrics": {"idle_seconds": 0.003685474395751953, "progress_pct": 6.622516556291391, "reviews_count": 10, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:15.984Z", "timestamp_ms": 1769827695984}, {"level": "INFO", "message": "10/151 (7%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0197017192840576, "progress_pct": 6.622516556291391, "reviews_count": 10, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:17.011Z", "timestamp_ms": 1769827697011}, {"level": "INFO", "message": "10/151 (7%) | idle: 2.1s", "metrics": {"idle_seconds": 2.057433843612671, "progress_pct": 6.622516556291391, "reviews_count": 10, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:18.048Z", "timestamp_ms": 1769827698048}, {"level": "INFO", "message": "10/151 (7%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0831332206726074, "progress_pct": 6.622516556291391, "reviews_count": 10, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:19.074Z", "timestamp_ms": 1769827699074}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:48:19.074Z", "timestamp_ms": 1769827699074}, {"level": "INFO", "message": "20/151 (13%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0029997825622558594, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:20.218Z", "timestamp_ms": 1769827700218}, {"level": "INFO", "message": "20/151 (13%) | idle: 1.0s", "metrics": {"idle_seconds": 1.033080816268921, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:21.248Z", "timestamp_ms": 1769827701248}, {"level": "INFO", "message": "20/151 (13%) | idle: 2.1s", "metrics": {"idle_seconds": 2.0529279708862305, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:22.268Z", "timestamp_ms": 1769827702268}, {"level": "INFO", "message": "20/151 (13%) | idle: 3.1s", "metrics": {"idle_seconds": 3.075284719467163, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:23.290Z", "timestamp_ms": 1769827703290}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:48:23.291Z", "timestamp_ms": 1769827703291}, {"level": "INFO", "message": "20/151 (13%) | idle: 4.4s", "metrics": {"idle_seconds": 4.382869482040405, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:24.598Z", "timestamp_ms": 1769827704598}, {"level": "INFO", "message": "20/151 (13%) | idle: 5.4s", "metrics": {"idle_seconds": 5.409893035888672, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:25.625Z", "timestamp_ms": 1769827705625}, {"level": "INFO", "message": "20/151 (13%) | idle: 6.4s", "metrics": {"idle_seconds": 6.428767204284668, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:26.644Z", "timestamp_ms": 1769827706644}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:48:26.644Z", "timestamp_ms": 1769827706644}, {"level": "INFO", "message": "20/151 (13%) | idle: 7.8s", "metrics": {"idle_seconds": 7.766791820526123, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:27.982Z", "timestamp_ms": 1769827707982}, {"level": "INFO", "message": "20/151 (13%) | idle: 8.8s", "metrics": {"idle_seconds": 8.793435096740723, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:29.009Z", "timestamp_ms": 1769827709009}, {"level": "INFO", "message": "20/151 (13%) | idle: 9.8s", "metrics": {"idle_seconds": 9.819565773010254, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:30.035Z", "timestamp_ms": 1769827710035}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:48:30.035Z", "timestamp_ms": 1769827710035}, {"level": "INFO", "message": "20/151 (13%) | idle: 11.2s", "metrics": {"idle_seconds": 11.158845901489258, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:31.374Z", "timestamp_ms": 1769827711374}, {"level": "INFO", "message": "20/151 (13%) | idle: 12.2s", "metrics": {"idle_seconds": 12.18153715133667, "progress_pct": 13.245033112582782, "reviews_count": 20, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:32.397Z", "timestamp_ms": 1769827712397}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:48:32.397Z", "timestamp_ms": 1769827712397}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.18153715133667}, "category": "browser", "timestamp": "2026-01-31T02:48:32.465Z", "timestamp_ms": 1769827712465}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:48:32.667Z", "timestamp_ms": 1769827712667}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-31T02:48:37.590Z", "timestamp_ms": 1769827717590}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:48:37.706Z", "timestamp_ms": 1769827717706}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-31T02:48:40.260Z", "timestamp_ms": 1769827720260}, {"level": "INFO", "message": "Expanded 8 truncated reviews", "metrics": {"expanded_count": 8}, "category": "browser", "timestamp": "2026-01-31T02:48:40.297Z", "timestamp_ms": 1769827720297}, {"level": "INFO", "message": "Hard refresh successful, resuming with 20 reviews already collected", "metrics": {"reviews_collected": 20}, "category": "browser", "timestamp": "2026-01-31T02:48:40.305Z", "timestamp_ms": 1769827720305}, {"level": "WARN", "message": "SLOW cycle: 8.9s (api:0.0s dom:0.1s/410cards flush:0.0s seen:55)", "metrics": {"dom_cards": 410, "api_time_s": 0.009272575378417969, "dom_time_s": 0.07961153984069824, "seen_count": 55, "cycle_time_s": 8.927216053009033}, "category": "system", "timestamp": "2026-01-31T02:48:41.520Z", "timestamp_ms": 1769827721520}, {"level": "INFO", "message": "55/151 (36%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 36.423841059602644, "reviews_count": 55, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:41.527Z", "timestamp_ms": 1769827721527}, {"level": "INFO", "message": "DOM cleanup: removed 45 cards to prevent memory buildup", "metrics": {"cards_removed": 45, "cards_remaining": 284}, "category": "system", "timestamp": "2026-01-31T02:48:42.626Z", "timestamp_ms": 1769827722626}, {"level": "INFO", "message": "81/151 (54%) | idle: 0.0s", "metrics": {"idle_seconds": 0.021925926208496094, "progress_pct": 53.64238410596026, "reviews_count": 81, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:42.648Z", "timestamp_ms": 1769827722648}, {"level": "INFO", "message": "DOM cleanup: removed 35 cards to prevent memory buildup", "metrics": {"cards_removed": 35, "cards_remaining": 431}, "category": "system", "timestamp": "2026-01-31T02:48:43.750Z", "timestamp_ms": 1769827723750}, {"level": "INFO", "message": "Flushing 130 reviews to disk...", "metrics": {"source": "flush", "batch_size": 130}, "category": "scraper", "timestamp": "2026-01-31T02:48:43.750Z", "timestamp_ms": 1769827723750}, {"level": "INFO", "message": "130/151 (86%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01723504066467285, "progress_pct": 86.09271523178808, "reviews_count": 130, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:43.767Z", "timestamp_ms": 1769827723767}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 131}, "category": "system", "timestamp": "2026-01-31T02:48:44.828Z", "timestamp_ms": 1769827724828}, {"level": "INFO", "message": "151/151 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.003275156021118164, "progress_pct": 100.0, "reviews_count": 151, "total_reviews": 151}, "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}, {"level": "INFO", "message": "All 151 reviews collected", "metrics": {"total_reviews": 151, "elapsed_seconds": 29.882158279418945}, "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}, {"level": "INFO", "message": "Final flush: 21 reviews...", "metrics": {"source": "final_flush", "batch_size": 21}, "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}, {"level": "INFO", "message": "Total: 151 unique reviews (flushed: 151, in memory: 0)", "metrics": {"flushed_count": 151, "total_reviews": 151, "elapsed_seconds": 29.882256984710693, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:48:44.832Z", "timestamp_ms": 1769827724832}] 2026-01-31 03:21:52.830452 [{"count": 28, "topic": "treatment"}, {"count": 14, "topic": "team"}, {"count": 13, "topic": "trust"}, {"count": 7, "topic": "lip"}, {"count": 7, "topic": "clean"}, {"count": 6, "topic": "needs"}, {"count": 6, "topic": "quote"}, {"count": 6, "topic": "happy"}, {"count": 5, "topic": "mirabilia"}, {"count": 5, "topic": "state"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-31T02:48:07.283308", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Clínica Calme - Medicina estética, estética avanzada y quiromasaje Specialized clinic C. Montevideo, 15, 35007 Las Palmas de Gran Canaria, Las Palmas, Spain 4.70 3580 Healthcare.Clinics.Specialized_clinic exact google b974ebf3-33d3-44a4-98c9-960a1060a831 completed https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%20Las%20Palmas%2C%20Spain&hl=en \N \N 2026-01-24 19:19:03.793912 2026-01-24 19:19:15.740735 2026-01-24 19:19:16.004538 79 [{"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"}, {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"}, {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"}, {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"}, {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"}, {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Derians Jose Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Sara Elizondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Leonardo Romeo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}] 11.933228 \N {"job_type": "google-reviews", "priority": 0, "business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "scraper_version": "1.1.0", "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T19:19:05.453Z", "timestamp_ms": 1769282345453}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "MacIntel", "timezone": "Atlantic/Canary", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T19:19:05.536Z", "timestamp_ms": 1769282345536}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%...", "category": "browser", "timestamp": "2026-01-24T19:19:05.748Z", "timestamp_ms": 1769282345748}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T19:19:07.478Z", "timestamp_ms": 1769282347478}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T19:19:07.820Z", "timestamp_ms": 1769282347820}, {"level": "INFO", "message": "Total reviews on page: 79", "metrics": {"total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T19:19:10.327Z", "timestamp_ms": 1769282350327}, {"level": "INFO", "message": "Business: R. Fleitas Peluqueros", "category": "scraper", "timestamp": "2026-01-24T19:19:10.327Z", "timestamp_ms": 1769282350327}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T19:19:10.356Z", "timestamp_ms": 1769282350356}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T19:19:10.376Z", "timestamp_ms": 1769282350376}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T19:19:10.539Z", "timestamp_ms": 1769282350539}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T19:19:10.540Z", "timestamp_ms": 1769282350540}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-24T19:19:13.076Z", "timestamp_ms": 1769282353076}, {"level": "INFO", "message": "Expanded 3 truncated reviews", "metrics": {"expanded_count": 3}, "category": "browser", "timestamp": "2026-01-24T19:19:13.088Z", "timestamp_ms": 1769282353088}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-24T19:19:13.094Z", "timestamp_ms": 1769282353094}, {"level": "INFO", "message": "Found 5 review topics: hair salon, cutting, price, siblings, beard...", "metrics": {"topic_count": 5}, "category": "scraper", "timestamp": "2026-01-24T19:19:13.611Z", "timestamp_ms": 1769282353611}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T19:19:13.611Z", "timestamp_ms": 1769282353611}, {"level": "INFO", "message": "70/79 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0, "progress_pct": 88.60759493670885, "reviews_count": 70, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T19:19:14.719Z", "timestamp_ms": 1769282354719}, {"level": "INFO", "message": "DOM cleanup: removed 70 cards to prevent memory buildup", "metrics": {"cards_removed": 70, "cards_remaining": 54}, "category": "system", "timestamp": "2026-01-24T19:19:15.737Z", "timestamp_ms": 1769282355737}, {"level": "INFO", "message": "79/79 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0028040409088134766, "progress_pct": 100.0, "reviews_count": 79, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}, {"level": "INFO", "message": "All 79 reviews collected", "metrics": {"total_reviews": 79, "elapsed_seconds": 2.128772258758545}, "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}, {"level": "INFO", "message": "Final flush: 79 reviews...", "metrics": {"source": "final_flush", "batch_size": 79}, "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}, {"level": "INFO", "message": "Total: 79 unique reviews (flushed: 79, in memory: 0)", "metrics": {"flushed_count": 79, "total_reviews": 79, "elapsed_seconds": 2.129270076751709, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-24T19:19:15.740Z", "timestamp_ms": 1769282355740}] 2026-01-31 03:21:52.855145 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] {"screen": {"width": 1728, "height": 1117, "colorDepth": 30}, "language": "en-US", "platform": "MacIntel", "timezone": "Atlantic/Canary", "viewport": {"width": 1200, "height": 813}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-24T19:19:05.457132", "webgl_vendor": "Google Inc. (Apple)", "device_memory": 8, "webgl_renderer": "ANGLE (Apple, ANGLE Metal Renderer: Apple M3 Pro, Unspecified Version)", "canvas_fingerprint": "-33ce7fa0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google 731e2ef6-1c34-4524-9ede-f0c00dd98ca5 completed https://www.google.com/maps/search/?api=1&query=%22Alcampo%20Hipermarket%22%20Las%20Palmas%2C%20Spain&hl=en \N \N 2026-01-25 01:23:27.396784 2026-01-25 01:25:32.366746 2026-01-25 01:25:32.498503 3 [{"text": "It's massive. The Alcampo Hypermarket is huge and there is a regular mall with a wide selection of the usual brand stores. The building and interior isn't going to win any beauty contests - it's in need of a updating and renovation - but it certainly has everything you could want for shopping, cafes and restaurants. It's clean and tidy and has a local flavour when you're inside. It's also close to IKEA and Leroy Merlín.", "author": "Glynn JR", "rating": 4, "source": "dom", "timestamp": "2 years ago"}, {"text": "Very big shopping center with many shops international brands and supermarket with good food selection.", "author": "Milan Promospecials", "rating": 4, "source": "dom", "timestamp": "6 years ago"}, {"text": "Good shops and eating/ cafe places\\nCovered..indoors so suitable when bad weather\\nAlso al campo supermarket\\nCan get a bus from puerto cruz\\nWorth a visit if you are a shopper xx", "author": "Lynne Smith", "rating": 5, "source": "dom", "timestamp": "10 months ago"}] 124.957565 \N {"job_type": "google-reviews", "priority": 0, "business_name": "Alcampo Hipermarket", "rating_snapshot": 4, "scraper_version": "1.1.0", "business_address": "GC-1, Km. 8, 35212 Telde, Las Palmas, Spain ", "total_reviews_snapshot": 4596} 3 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-25T01:23:28.017Z", "timestamp_ms": 1769304208017}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-25T01:23:28.142Z", "timestamp_ms": 1769304208142}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22Alcampo%20Hipermarket%22%20La...", "category": "browser", "timestamp": "2026-01-25T01:23:28.286Z", "timestamp_ms": 1769304208286}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-25T01:23:30.706Z", "timestamp_ms": 1769304210706}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-25T01:23:31.066Z", "timestamp_ms": 1769304211066}, {"level": "INFO", "message": "Total reviews on page: 4596", "metrics": {"total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:33.469Z", "timestamp_ms": 1769304213469}, {"level": "INFO", "message": "Business: Alcampo Hipermarket", "category": "scraper", "timestamp": "2026-01-25T01:23:33.470Z", "timestamp_ms": 1769304213470}, {"level": "INFO", "message": "Available tabs: ['Overview', 'About']", "category": "browser", "timestamp": "2026-01-25T01:23:33.584Z", "timestamp_ms": 1769304213584}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-25T01:23:38.557Z", "timestamp_ms": 1769304218557}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-25T01:23:38.558Z", "timestamp_ms": 1769304218558}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-25T01:23:41.092Z", "timestamp_ms": 1769304221092}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-25T01:23:41.103Z", "timestamp_ms": 1769304221103}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-25T01:23:41.617Z", "timestamp_ms": 1769304221617}, {"level": "INFO", "message": "0/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0223278999328613, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:42.639Z", "timestamp_ms": 1769304222639}, {"level": "INFO", "message": "0/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0203309059143066, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:43.668Z", "timestamp_ms": 1769304223668}, {"level": "INFO", "message": "0/4596 (0%) | idle: 2.1s", "metrics": {"idle_seconds": 2.058120012283325, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:44.705Z", "timestamp_ms": 1769304224705}, {"level": "INFO", "message": "0/4596 (0%) | idle: 3.1s", "metrics": {"idle_seconds": 3.114079475402832, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:45.761Z", "timestamp_ms": 1769304225761}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-25T01:23:45.761Z", "timestamp_ms": 1769304225761}, {"level": "INFO", "message": "0/4596 (0%) | idle: 4.3s", "metrics": {"idle_seconds": 4.318971872329712, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:46.966Z", "timestamp_ms": 1769304226966}, {"level": "INFO", "message": "0/4596 (0%) | idle: 5.3s", "metrics": {"idle_seconds": 5.342382192611694, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:47.990Z", "timestamp_ms": 1769304227990}, {"level": "INFO", "message": "0/4596 (0%) | idle: 6.4s", "metrics": {"idle_seconds": 6.367108345031738, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:49.014Z", "timestamp_ms": 1769304229014}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-25T01:23:49.014Z", "timestamp_ms": 1769304229014}, {"level": "INFO", "message": "0/4596 (0%) | idle: 7.7s", "metrics": {"idle_seconds": 7.685253143310547, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:50.332Z", "timestamp_ms": 1769304230332}, {"level": "INFO", "message": "0/4596 (0%) | idle: 8.7s", "metrics": {"idle_seconds": 8.70925259590149, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:51.356Z", "timestamp_ms": 1769304231356}, {"level": "INFO", "message": "0/4596 (0%) | idle: 9.7s", "metrics": {"idle_seconds": 9.739237308502197, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:52.386Z", "timestamp_ms": 1769304232386}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-25T01:23:52.387Z", "timestamp_ms": 1769304232387}, {"level": "INFO", "message": "0/4596 (0%) | idle: 11.1s", "metrics": {"idle_seconds": 11.08674430847168, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:53.734Z", "timestamp_ms": 1769304233734}, {"level": "INFO", "message": "0/4596 (0%) | idle: 12.3s", "metrics": {"idle_seconds": 12.274714469909668, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:54.922Z", "timestamp_ms": 1769304234922}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-25T01:23:54.922Z", "timestamp_ms": 1769304234922}, {"level": "INFO", "message": "0/4596 (0%) | idle: 13.6s", "metrics": {"idle_seconds": 13.621478796005249, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:56.269Z", "timestamp_ms": 1769304236269}, {"level": "INFO", "message": "0/4596 (0%) | idle: 15.5s", "metrics": {"idle_seconds": 15.50566029548645, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:23:58.153Z", "timestamp_ms": 1769304238153}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-25T01:23:58.153Z", "timestamp_ms": 1769304238153}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.50566029548645}, "category": "browser", "timestamp": "2026-01-25T01:23:58.233Z", "timestamp_ms": 1769304238233}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-25T01:23:58.433Z", "timestamp_ms": 1769304238433}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-25T01:24:09.382Z", "timestamp_ms": 1769304249382}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-25T01:24:11.913Z", "timestamp_ms": 1769304251913}, {"level": "INFO", "message": "Hard refresh successful, resuming with 0 reviews already collected", "metrics": {"reviews_collected": 0}, "category": "browser", "timestamp": "2026-01-25T01:24:11.925Z", "timestamp_ms": 1769304251925}, {"level": "WARN", "message": "SLOW cycle: 15.6s (api:0.0s dom:0.0s/0cards flush:0.0s seen:0)", "metrics": {"dom_cards": 0, "api_time_s": 0.0047452449798583984, "dom_time_s": 0.002846240997314453, "seen_count": 0, "cycle_time_s": 15.63386583328247}, "category": "system", "timestamp": "2026-01-25T01:24:12.943Z", "timestamp_ms": 1769304252943}, {"level": "INFO", "message": "0/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0208497047424316, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:12.946Z", "timestamp_ms": 1769304252946}, {"level": "INFO", "message": "0/4596 (0%) | idle: 1.1s", "metrics": {"idle_seconds": 1.1190071105957031, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:14.071Z", "timestamp_ms": 1769304254071}, {"level": "INFO", "message": "0/4596 (0%) | idle: 2.2s", "metrics": {"idle_seconds": 2.153304100036621, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:15.105Z", "timestamp_ms": 1769304255105}, {"level": "INFO", "message": "0/4596 (0%) | idle: 3.2s", "metrics": {"idle_seconds": 3.1755244731903076, "progress_pct": 0.0, "reviews_count": 0, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:16.127Z", "timestamp_ms": 1769304256127}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-25T01:24:16.128Z", "timestamp_ms": 1769304256128}, {"level": "INFO", "message": "3/4596 (0%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0034923553466796875, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:17.731Z", "timestamp_ms": 1769304257731}, {"level": "INFO", "message": "3/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0428078174591064, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:18.770Z", "timestamp_ms": 1769304258770}, {"level": "INFO", "message": "3/4596 (0%) | idle: 2.1s", "metrics": {"idle_seconds": 2.0776288509368896, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:19.805Z", "timestamp_ms": 1769304259805}, {"level": "INFO", "message": "3/4596 (0%) | idle: 3.1s", "metrics": {"idle_seconds": 3.1016969680786133, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:20.829Z", "timestamp_ms": 1769304260829}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-25T01:24:20.829Z", "timestamp_ms": 1769304260829}, {"level": "INFO", "message": "3/4596 (0%) | idle: 4.4s", "metrics": {"idle_seconds": 4.4195945262908936, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:22.147Z", "timestamp_ms": 1769304262147}, {"level": "INFO", "message": "3/4596 (0%) | idle: 5.4s", "metrics": {"idle_seconds": 5.448260307312012, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:23.176Z", "timestamp_ms": 1769304263176}, {"level": "INFO", "message": "3/4596 (0%) | idle: 6.5s", "metrics": {"idle_seconds": 6.519031047821045, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:24.247Z", "timestamp_ms": 1769304264247}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-25T01:24:24.247Z", "timestamp_ms": 1769304264247}, {"level": "INFO", "message": "3/4596 (0%) | idle: 7.9s", "metrics": {"idle_seconds": 7.852278709411621, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:25.580Z", "timestamp_ms": 1769304265580}, {"level": "INFO", "message": "3/4596 (0%) | idle: 8.9s", "metrics": {"idle_seconds": 8.87404489517212, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:26.602Z", "timestamp_ms": 1769304266602}, {"level": "INFO", "message": "3/4596 (0%) | idle: 9.9s", "metrics": {"idle_seconds": 9.900490522384644, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:27.628Z", "timestamp_ms": 1769304267628}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-25T01:24:27.628Z", "timestamp_ms": 1769304267628}, {"level": "INFO", "message": "3/4596 (0%) | idle: 11.2s", "metrics": {"idle_seconds": 11.244678974151611, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:28.972Z", "timestamp_ms": 1769304268972}, {"level": "INFO", "message": "3/4596 (0%) | idle: 12.3s", "metrics": {"idle_seconds": 12.280058145523071, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:30.008Z", "timestamp_ms": 1769304270008}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-25T01:24:30.008Z", "timestamp_ms": 1769304270008}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.280058145523071}, "category": "browser", "timestamp": "2026-01-25T01:24:30.281Z", "timestamp_ms": 1769304270281}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-25T01:24:30.481Z", "timestamp_ms": 1769304270481}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-25T01:24:41.610Z", "timestamp_ms": 1769304281610}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-25T01:24:44.144Z", "timestamp_ms": 1769304284144}, {"level": "INFO", "message": "Hard refresh successful, resuming with 3 reviews already collected", "metrics": {"reviews_collected": 3}, "category": "browser", "timestamp": "2026-01-25T01:24:44.155Z", "timestamp_ms": 1769304284155}, {"level": "WARN", "message": "SLOW cycle: 15.2s (api:0.0s dom:0.0s/0cards flush:0.0s seen:3)", "metrics": {"dom_cards": 0, "api_time_s": 0.0024764537811279297, "dom_time_s": 0.003736734390258789, "seen_count": 3, "cycle_time_s": 15.176835536956787}, "category": "system", "timestamp": "2026-01-25T01:24:45.172Z", "timestamp_ms": 1769304285172}, {"level": "INFO", "message": "3/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0218017101287842, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:45.177Z", "timestamp_ms": 1769304285177}, {"level": "INFO", "message": "3/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0406365394592285, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:46.220Z", "timestamp_ms": 1769304286220}, {"level": "INFO", "message": "3/4596 (0%) | idle: 2.1s", "metrics": {"idle_seconds": 2.066826581954956, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:47.247Z", "timestamp_ms": 1769304287247}, {"level": "INFO", "message": "3/4596 (0%) | idle: 3.1s", "metrics": {"idle_seconds": 3.085590362548828, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:48.265Z", "timestamp_ms": 1769304288265}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-25T01:24:48.265Z", "timestamp_ms": 1769304288265}, {"level": "INFO", "message": "3/4596 (0%) | idle: 4.5s", "metrics": {"idle_seconds": 4.4522013664245605, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:49.632Z", "timestamp_ms": 1769304289632}, {"level": "INFO", "message": "3/4596 (0%) | idle: 5.5s", "metrics": {"idle_seconds": 5.480254650115967, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:50.660Z", "timestamp_ms": 1769304290660}, {"level": "INFO", "message": "3/4596 (0%) | idle: 6.5s", "metrics": {"idle_seconds": 6.508934497833252, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:51.689Z", "timestamp_ms": 1769304291689}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-25T01:24:51.689Z", "timestamp_ms": 1769304291689}, {"level": "INFO", "message": "3/4596 (0%) | idle: 7.8s", "metrics": {"idle_seconds": 7.842337608337402, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:53.022Z", "timestamp_ms": 1769304293022}, {"level": "INFO", "message": "3/4596 (0%) | idle: 8.9s", "metrics": {"idle_seconds": 8.881707191467285, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:54.061Z", "timestamp_ms": 1769304294061}, {"level": "INFO", "message": "3/4596 (0%) | idle: 9.9s", "metrics": {"idle_seconds": 9.918455839157104, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:55.098Z", "timestamp_ms": 1769304295098}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-25T01:24:55.098Z", "timestamp_ms": 1769304295098}, {"level": "INFO", "message": "3/4596 (0%) | idle: 11.3s", "metrics": {"idle_seconds": 11.285484313964844, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:56.465Z", "timestamp_ms": 1769304296465}, {"level": "INFO", "message": "3/4596 (0%) | idle: 12.3s", "metrics": {"idle_seconds": 12.315231800079346, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:57.495Z", "timestamp_ms": 1769304297495}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-25T01:24:57.495Z", "timestamp_ms": 1769304297495}, {"level": "INFO", "message": "3/4596 (0%) | idle: 13.7s", "metrics": {"idle_seconds": 13.697794437408447, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:58.878Z", "timestamp_ms": 1769304298878}, {"level": "INFO", "message": "3/4596 (0%) | idle: 14.7s", "metrics": {"idle_seconds": 14.723983764648438, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:24:59.904Z", "timestamp_ms": 1769304299904}, {"level": "INFO", "message": "3/4596 (0%) | idle: 15.8s", "metrics": {"idle_seconds": 15.752879858016968, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:00.933Z", "timestamp_ms": 1769304300933}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-25T01:25:00.933Z", "timestamp_ms": 1769304300933}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.752879858016968}, "category": "browser", "timestamp": "2026-01-25T01:25:01.259Z", "timestamp_ms": 1769304301259}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-25T01:25:01.461Z", "timestamp_ms": 1769304301461}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-25T01:25:12.557Z", "timestamp_ms": 1769304312557}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-25T01:25:15.099Z", "timestamp_ms": 1769304315099}, {"level": "INFO", "message": "Hard refresh successful, resuming with 3 reviews already collected", "metrics": {"reviews_collected": 3}, "category": "browser", "timestamp": "2026-01-25T01:25:15.779Z", "timestamp_ms": 1769304315779}, {"level": "WARN", "message": "SLOW cycle: 15.9s (api:0.0s dom:0.0s/0cards flush:0.0s seen:3)", "metrics": {"dom_cards": 0, "api_time_s": 0.0034317970275878906, "dom_time_s": 0.01219630241394043, "seen_count": 3, "cycle_time_s": 15.870504140853882}, "category": "system", "timestamp": "2026-01-25T01:25:16.814Z", "timestamp_ms": 1769304316814}, {"level": "INFO", "message": "3/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0437171459197998, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:16.823Z", "timestamp_ms": 1769304316823}, {"level": "INFO", "message": "3/4596 (0%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0255193710327148, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:17.856Z", "timestamp_ms": 1769304317856}, {"level": "INFO", "message": "3/4596 (0%) | idle: 2.1s", "metrics": {"idle_seconds": 2.057173252105713, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:18.887Z", "timestamp_ms": 1769304318887}, {"level": "INFO", "message": "3/4596 (0%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0742709636688232, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:19.904Z", "timestamp_ms": 1769304319904}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-25T01:25:19.904Z", "timestamp_ms": 1769304319904}, {"level": "INFO", "message": "3/4596 (0%) | idle: 4.6s", "metrics": {"idle_seconds": 4.551376104354858, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:21.382Z", "timestamp_ms": 1769304321382}, {"level": "INFO", "message": "3/4596 (0%) | idle: 5.6s", "metrics": {"idle_seconds": 5.6339733600616455, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:22.464Z", "timestamp_ms": 1769304322464}, {"level": "INFO", "message": "3/4596 (0%) | idle: 6.7s", "metrics": {"idle_seconds": 6.6830668449401855, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:23.513Z", "timestamp_ms": 1769304323513}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-25T01:25:23.513Z", "timestamp_ms": 1769304323513}, {"level": "INFO", "message": "3/4596 (0%) | idle: 8.0s", "metrics": {"idle_seconds": 8.027238607406616, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:24.857Z", "timestamp_ms": 1769304324857}, {"level": "INFO", "message": "3/4596 (0%) | idle: 9.1s", "metrics": {"idle_seconds": 9.060049772262573, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:25.890Z", "timestamp_ms": 1769304325890}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-25T01:25:25.890Z", "timestamp_ms": 1769304325890}, {"level": "INFO", "message": "3/4596 (0%) | idle: 10.8s", "metrics": {"idle_seconds": 10.767983675003052, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:27.598Z", "timestamp_ms": 1769304327598}, {"level": "INFO", "message": "3/4596 (0%) | idle: 11.8s", "metrics": {"idle_seconds": 11.799829483032227, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:28.630Z", "timestamp_ms": 1769304328630}, {"level": "INFO", "message": "3/4596 (0%) | idle: 12.9s", "metrics": {"idle_seconds": 12.914178848266602, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:29.744Z", "timestamp_ms": 1769304329744}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-25T01:25:29.744Z", "timestamp_ms": 1769304329744}, {"level": "INFO", "message": "3/4596 (0%) | idle: 14.3s", "metrics": {"idle_seconds": 14.262459516525269, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:31.093Z", "timestamp_ms": 1769304331093}, {"level": "INFO", "message": "3/4596 (0%) | idle: 15.3s", "metrics": {"idle_seconds": 15.301831007003784, "progress_pct": 0.06527415143603134, "reviews_count": 3, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.132Z", "timestamp_ms": 1769304332132}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-25T01:25:32.132Z", "timestamp_ms": 1769304332132}, {"level": "INFO", "message": "All reviews loaded: 3", "metrics": {"total_reviews": 3, "elapsed_seconds": 110.67252659797668}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.290Z", "timestamp_ms": 1769304332290}, {"level": "INFO", "message": "Multi-sort auto-enabled (total 4596 > 1000)", "metrics": {"threshold": 1000, "total_reviews": 4596}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.290Z", "timestamp_ms": 1769304332290}, {"level": "INFO", "message": "Pass 2/4 (lowest): starting with 3 reviews", "metrics": {"pass": 2, "sort": "lowest", "current_total": 3}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.290Z", "timestamp_ms": 1769304332290}, {"level": "WARN", "message": "Could not find sort button for lowest. Debug: ['Dropdown buttons (1):', ' [0]: \\"Learn more\\"']", "category": "browser", "timestamp": "2026-01-25T01:25:32.348Z", "timestamp_ms": 1769304332348}, {"level": "WARN", "message": "Failed to change sort to lowest, skipping", "category": "scraper", "timestamp": "2026-01-25T01:25:32.348Z", "timestamp_ms": 1769304332348}, {"level": "INFO", "message": "Pass 3/4 (highest): starting with 3 reviews", "metrics": {"pass": 3, "sort": "highest", "current_total": 3}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.348Z", "timestamp_ms": 1769304332348}, {"level": "WARN", "message": "Could not find sort button for highest. Debug: ['Dropdown buttons (1):', ' [0]: \\"Learn more\\"']", "category": "browser", "timestamp": "2026-01-25T01:25:32.359Z", "timestamp_ms": 1769304332359}, {"level": "WARN", "message": "Failed to change sort to highest, skipping", "category": "scraper", "timestamp": "2026-01-25T01:25:32.359Z", "timestamp_ms": 1769304332359}, {"level": "INFO", "message": "Pass 4/4 (relevant): starting with 3 reviews", "metrics": {"pass": 4, "sort": "relevant", "current_total": 3}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.359Z", "timestamp_ms": 1769304332359}, {"level": "WARN", "message": "Could not find sort button for relevant. Debug: ['Dropdown buttons (1):', ' [0]: \\"Learn more\\"']", "category": "browser", "timestamp": "2026-01-25T01:25:32.366Z", "timestamp_ms": 1769304332366}, {"level": "WARN", "message": "Failed to change sort to relevant, skipping", "category": "scraper", "timestamp": "2026-01-25T01:25:32.366Z", "timestamp_ms": 1769304332366}, {"level": "INFO", "message": "Final flush: 3 reviews...", "metrics": {"source": "final_flush", "batch_size": 3}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.366Z", "timestamp_ms": 1769304332366}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-25T01:25:32.366Z", "timestamp_ms": 1769304332366}, {"level": "INFO", "message": "Total: 3 unique reviews (flushed: 3, in memory: 0)", "metrics": {"flushed_count": 3, "total_reviews": 3, "elapsed_seconds": 110.74876832962036, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-25T01:25:32.366Z", "timestamp_ms": 1769304332366}] 2026-01-31 03:21:52.845435 \N {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-25T01:23:28.036848", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Alcampo Hipermarket Supermarket GC-1, Km. 8, 35212 Telde, Las Palmas, Spain 4.00 864 Retail.Grocery.Supermarket exact google ff01b08c-232c-45ab-ad99-95ada18becae partial https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las%20palmas&hl=en \N \N 2026-01-29 01:27:20.564007 2026-01-29 01:30:49.409129 2026-01-29 01:31:00.230164 910 [{"text": "Wow!\\n\\nBest dining experience in a long time.\\nStaff so attentive and friendly.\\n\\nWe started with the guacamole which is made at the table! A show in it's self.\\n\\nMain courses were both really amazing.\\n\\nGlasses of house wine, red and white, were both delicious and very reasonably priced!\\n\\nWow, wish we lived closer we would be in on a regular basis.", "author": "Andy Smith", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GbFltcEZSVk56Wm1wTmFIQjJUbVZLWDFOV1MyYxAB", "timestamp": "4 months ago"}, {"text": "This is an \\"must visit place\\" when you are in Las Palmas. Great food and fantastic service. Just wonderful experience. Thanks....", "author": "Tom-Erik Blix", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0MGJUYzBhVkoyUTNaQlFVOWFORjh4Y1hsM2NtYxAB", "timestamp": "a month ago"}, {"text": "We always dine at this restaurant when we are staying in Las Palmas and have never been disappointed. The food is top notch with service to match. They have a very reasonably priced wine menu. Looking forward too our next visit already", "author": "jules bowen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3NjRyRlRBEAE", "timestamp": "10 months ago"}, {"text": "The worst New year s dinner ever\\nThis was the worst experience ever we had in any restaurant in this world\\nLong story short, we booked months ahead, on the phone from Norway\\nMy Spanish is good, i was able to reserve a table at this restaurant, which by the way we loved before ,as a mention we been there at them at least 5 times, we are in there almost as regulars\\nWe wanted a table at 21pm that evening, but they said on the phone that they would send the menu on WhatsApp, witch they did\\nAlso they changed the time for our dinner from 21 pm to 19 30\\nIn our mind sounded ok\\nAnd then the dissatisfaction\\nWe were there at 19 30 on the New year s eve\\nWelcomed in a additional room part of them I assume, where we were taken to our table and.....\\nNo music, no atmosphere, no nothing\\nThe waiters come, one more scary an another, asking if we like something to drink\\nI have to mention that it was about a six course menu with open bar\\nI asked for some aperitif which we thought is an open bar, but the waiter sad, not now at the end\\nAnd then they come with the food,in one hour we were qicked out\\nWe couldn't eat so fast we did not finish any of the courses, and the open bar consisted in one bottle of the cheapest Rioja\\nAll this for 130 euro per person\\nSo we paid for nothing 260 euro, to be on the streets, at 20 30 pm\\nAnd we didn't get the grapes and pistachios\\nShame on you", "author": "Andreea Antal", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xNFIzWTFNblIxVDNneU15MTZVamswWnpZMlNuYxAB", "timestamp": "3 weeks ago"}, {"text": "Absolutely amazing food! Possibly the best steak I’ve ever had, I wondered why they hadn’t given me a steak knife until I cut through it and realised it was like cutting through butter. The salad was the best salad I’ve ever had too. The service is friendly and efficient and not over bearing. 10/10 all round.", "author": "Hannah Ramrachia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WVFpuSnBPVmhGYWtWMlkwSjZUa0pXY2pGbVdFRRAB", "timestamp": "4 weeks ago"}, {"text": "Restaurant with a great selection of wines and very skilled and friendly waiters. The pork was to die for and also most other dishes were delicious and generous. Only the fish was a bit overcooked and dry, but everything else was amazing. I'll definitely return!", "author": "Nelly", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNTdQVkd3EAE", "timestamp": "3 years ago"}, {"text": "The food was ok. Both myself and my husband ordered fillet steaks, mine looked and tasted lovely but his looked old, like it had been sitting in the fridge already sliced since days prior. The chips and their house dessert was lovely. Be warned they charge you for the bread they bring to the table even though you didn’t order it", "author": "J S", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2b29DdzdBRRAB", "timestamp": "a year ago"}, {"text": "Delicious steak and pork rib,the fresh warm goats cheese salad to start was delicious and chopped up and served at the table. The warm baked cheesecake with cherry ice cream exceeded expectations- highly recommend", "author": "Suzach", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvNG9HUi1RRRAB", "timestamp": "9 months ago"}, {"text": "One of the best restaurants in Las Palmas, we had a pleasure that owner was serving us since we were first guests. He is really passionate about food and wine, can probably talk about it for hours. What I liked was that he recommended dishes according to their strength and flavours. One the best gyoza I've had in my life! Octopus was also very good and tender, fish was excellent, maybe a bit too salty sauce for my taste but it's just a matter of taste. Also, try goat cheese prawns! What a sensational flavours 👌 I left good tip there and I will come back asap", "author": "Jacek Obral", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURod2ZhaFpBEAE", "timestamp": "2 years ago"}, {"text": "A bit disappointing given it has great reviews from what I’ve read. We went on a Sunday night and it was very very quiet. No music was played which created an awkward atmosphere. Also they didn’t have any Sauvignon, so ran to the shop and grabbed a random French wine which was nothing like Sauvignon. Food was okay, I ordered the pork which the waiter recommended and it was nothing special, and perhaps the €28 price was abit steep, especially as it was only served with chips. Iberico ham was nice though, and my girlfriend enjoyed her burrata salad. Not sure I’d rush back, but perhaps the experience would’ve been better had there been more atmosphere.", "author": "Alex Jackson", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201RmJFRjRkalpYY21sa2RsOVdZWE5xY0RGd1VWRRAB", "timestamp": "4 months ago"}, {"text": "4.5 / 5\\n\\nFood is of very high quality. My medium rare steak was done right; just a wee bit colder than you'd expect.\\nStarter of tuna: very special! Mixed in front of your eyes.\\nAttention to details is superb! Even the mayo is special, with pineapple.\\n\\nNice vibe, allows for conversation.\\nDesign is clean and easy on the eyes.\\nVery inviting, especially inside!\\n\\nService: prompt, quick, attentive.\\nOne pet peeve: don't pour people's drink to their glass (regardless of water or wine). It implies you are RUSHING your customer... In a similar line of thought: allow some gaps between the dishes. They came out of the kitchen almost too fast (:", "author": "Ehud R.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWczh2UHNnRRAB", "timestamp": "2 years ago"}, {"text": "We have arrived quite late in Las Palmas and it was the only place with the kitchen open, anyway they had a special fix menu that evening, with a fix price: 50€.\\nThe food was without doubt special and of very high quality, the wine was even better than the food!\\nThe only problem was that they have given us more wine than food, at least the should have given a bit bigger quantities.\\nAnyway, the owner and the staff were very professional, recommended.", "author": "Roberto Murgia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MjktTW5RRRAB", "timestamp": "2 years ago"}, {"text": "The Rincon de Triana doesn't look like much from the outside, but don't be fooled. The food is truly amazing and the service is very friendly. We came with a group of friends (12 in total) and enjoyed a wonderful evening. Each dish is well prepared and very tasty. Portions are generous. The wine selection is also very good. Definitely worth a visit when in Las Palmas.", "author": "TA Legner", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tSUlFUbDZWbDlCTVdGelZrbHdiRVZVUm5wSmNuYxAB", "timestamp": "5 months ago"}, {"text": "Tasty food and kind service. croquetas de jamón were creamy. We had slow cooked ribs and they melted in the mouth. Will come back to try other dishes.", "author": "Santiago Tacoronte", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwLXRfNW53RRAB", "timestamp": "2 years ago"}, {"text": "Great restaurant near the sea front, food was very good. We had the guacamole which was fresh and tasty, the Iberica ham was good and the pig leg was exceptional. The service was great and attentive. I'd highly recommend this place for dinner if you visit Gran Canaria, out best meal there by far.\\nThe only very minor downside is that they have limited non alcoholic drinks.", "author": "Ada", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtMDVhclNREAE", "timestamp": "Edited 2 years ago"}, {"text": "Staff were friendly and efficient. Restaurant was well laid out and had a smart but relaxed feel to it.\\n\\nGreat combination of flavours. I went for the octopus as a main and the carpaccio with ice cream to start which were great. Gyōzas also highly recommended. Would definitely go back if in the area.", "author": "Vik Dowlul", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpeDQtNk13EAE", "timestamp": "5 years ago"}, {"text": "Very unique and special menu, we tried different starters, mains and desserts on multiple occasions. Always excellent. Service also great with friendly staff, explaining the dishes and its origin. Absolutely recommend this place, also great value for money", "author": "Christiaan Viljoen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNieXRfZ0lBEAE", "timestamp": "a year ago"}, {"text": "Honestly one of the best restaurants we tried during our stay in Las Palmas. Food was delicious and the atmosphere is relaxed yet elegant.", "author": "Andreea Soric", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNdjhvTG5oN2JIRE1BEAE", "timestamp": "8 months ago"}, {"text": "SUPER LECKER!! Amazing place!\\nThe FRESH food is of high Quality standard! The pork rips were perfectly 48 hours cooked, so tender. Appetizer of tableside made guacamole with tortillas and fried leek, really delicious.\\nService outstanding ( Moises), authentic, friendly by heart, and so attentive.", "author": "Melitta Gress", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtbDZDYU13EAE", "timestamp": "3 years ago"}, {"text": "I should have paid attention to red flags from comments. Food was weird taste. Shrimp with cheese was dry and not wow. Gyodza was disappointment - I couldn’t understand what I am eating and taste was really bad. Rincon steak was okay but I wouldn’t call it a steak and their chef garlic sauce was like Calve from supermarket. Very big disappointment. Recommend to choose another place.", "author": "Elizaveta Privalenko", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4M1pHTXdObUprV25kVU1URTJkWFI1TFhvNFFsRRAB", "timestamp": "4 months ago"}, {"text": "We had not booked a table, it took a couple of minutes to prepare one and then the journey started.\\nFrom starter to main dish (no more space for desert unfortunately) the food was of great quality. The homemade (literally in front of you) guacamole was amazing (maybe the only comment would be to change the tortilla with tortilla chips or something more unique..). We had the local Garbazada with a twist of langostinos, really nice. A refined ensaladilla with langostinos as well and to end a piece of grilled Iberian dam just perfectly cooked.\\nWe said at the beginning that everything was to share and they had the great attention to pre serve everything divided by two!", "author": "Paolo Remogna", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiZ2RTMk1REAE", "timestamp": "a year ago"}, {"text": "Excellent food! Tried the grilled Iberian pork, paired with a nice red Ribera del Duero.\\nNothing like the tourist places by the beach", "author": "Hans Gunnarsson", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OWWVXRjNRbkUzUTJsS2VIQjJSazR3VlZGT2NsRRAB", "timestamp": "2 months ago"}, {"text": "Nice staff, short waiting time, excellent food.", "author": "Reidar Biørn Michelet", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xRdGJITkxXbXRWYXpGWlRWUmlWVWRuUkc5YWRIYxAB", "timestamp": "a month ago"}, {"text": "Dont go if u want good fish !!\\n\\nI have ordered the most expensive 24€ main course Octopus and I get kind of a cold starter 😂super small portion and not heated .\\nIt was clearly not a main course !\\n\\nNot to mention the 5 times (literally ) I was asked by 2 different waiter if I want to drink .\\nIt was very annoying to have this pressure to order drink !!\\n\\nAnyways I do not recommend at all", "author": "Maria Ben", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MTlhSUFREAE", "timestamp": "a year ago"}, {"text": "Wow. The food was fresh, rich, amazing! Off menu pork medallions were perfectly cooked and tender. Appetizer of tableside made guacamole with tortillas equally delicious. And dessert was a honey soaked bread pudding with a custom-made ice cream. I’m grateful we have six more weeks here so we can keep coming back to this restaurant!", "author": "Kevin Blood", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPM09fWjVRRRAB", "timestamp": "3 years ago"}, {"text": "Delicious food! Great service! Very attentive staff! Better to book in advance! Amazing scallops, beef carpacio and, of course the signature dish of the restaurant - gyozas !!!", "author": "Viktoriya Kronos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCX0pmZjBRRRAB", "timestamp": "3 years ago"}, {"text": "Great food, friendly Service - came here twice on our one week vacation. Definitely recommended!", "author": "Markus Schering", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfMWFMM253RRAB", "timestamp": "a year ago"}, {"text": "Oh My God! Where to begin... Best meat on the island hands down, best flavours and sauces that are so rich so elegant the service and how its prepared and served is amazing. I had 2 full meals because it was so good I needed more. Deff a must when visiting.", "author": "Gene “Gino” Takooree", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURodVBpd3pBRRAB", "timestamp": "2 years ago"}, {"text": "Absolutely fantastic. Good service and fabulous food. Best food experience we’ve had in Las Palmas. Special mention gets the Carpaccio that was so different and good.", "author": "Tryggvi Torfason", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNodzlfMFNBEAE", "timestamp": "2 years ago"}, {"text": "Great place for dinner in Las Palmas. Quality of food, presentation and service is high. Our waiter explained everything, with really nice and positive attitude. Recommend to everyone who wants to escape from touristic restaurants on the beach, still being close to it.", "author": "Magda Cho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURObS1yTEpBEAE", "timestamp": "2 years ago"}, {"text": "Food was incredible. The octopus cut like butter and had the perfect balance of fat and acidity. The sirloin steak was cooked to perfection and the two sauces were a combination of flavors I'd never had before but were so delicious. Great wine list and excellent service and prices. Would eat here again in a heartbeat. Only gave four stars for atmosphere because of the lack of music and the two children seated behind us that were allowed to run rampant.", "author": "Oceana Jenkins", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvNk1tbVdBEAE", "timestamp": "9 months ago"}, {"text": "If you got there will be satisfied.", "author": "Paweł Burkiewicz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5NFVVeFZObWMyTTJwa1pFczVWbHBsUWtwdlNHYxAB", "timestamp": "2 months ago"}, {"text": "Honestly, this is the best fish I ate in the grand canaria island. I think this restaurant deserves a Michelin star for sure!", "author": "Amerah Bukhari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnOW95S0dREAE", "timestamp": "Edited 4 months ago"}, {"text": "I have been to plenty of fancy steakhouses in my life and I must say their Rincon style sirloin steak has impressed me. Very tender, flavourful and it melts in your mouth. Their house red wine is also smooth and kept at a perfect temperature. Finally I would highly advise to try the scallops.", "author": "Fernando Camara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvMkphRy13RRAB", "timestamp": "9 months ago"}, {"text": "We ate here during our recent trip to gran canaria. It was lovely! We didn't book a table and that wasn't an issue. We ordered a selection of dishes, instead of a main each, as the menu looked very tasty. I particularly enjoyed the guacamole and the scallops. Would strongly recommend if you're in the area!", "author": "Alice Glenister", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURvcWNQMlB3EAE", "timestamp": "9 months ago"}, {"text": "Amazing service and food, the staff is proffesional and speaks english. We tried Seafood Paella as two people, the price meets the quality of the food which was delicious. Highly recommend!", "author": "Lukas Senkus", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNic1p1Xzl3RRAB", "timestamp": "a year ago"}, {"text": "Mixed. I went with my parents and girlfriend, and we ordered a tuna starter and fillet steaks. Booking was easy and the seating outside was spacious. The recommended local wine was excellent, and the starter was superb. However, the steak tasted old as if it had been sitting for too long.", "author": "Simon Eugen Matell", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmejl1X0dnEAE", "timestamp": "a year ago"}, {"text": "My husband and I enjoyed our dining experience at this lovely restaurant in Las Palmas. Excellent service from Jesu who made our guacamole at the table a delight to watch and it was delicious! You have to leave room for their cheesecake...it was amazing!", "author": "Monique Ternier", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBc1otcl9nRRAB", "timestamp": "11 months ago"}, {"text": "This place is outstanding. I may regret sharing but they deserve it. The steak was the most tender and delicious I’ve had. Many other dishes were first class and delivered at the table by highly skilled waiting staff. They combined craft with relaxed charm, help and professionalism. So impressive in the theatre and quality of the food. Thank you caballeros. See you soon.", "author": "FKennedy & MWilliams", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbDRMT1pREAE", "timestamp": "2 years ago"}, {"text": "We were so impressed with our first meal.... that we returned 2 nights later for a repeat. .We tried several starters and entrees... all supberb! Best place to dine in Los Palmas. Compliments to the chef and staff!! Our waiter - Moises- was amazing! He was so knowledgeable about the foods and wines, and with how they were prepared . Highly recommend this place!", "author": "Roger Elliott", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqcW9mNmhnRRAB", "timestamp": "a year ago"}, {"text": "Not sure why this place has such ratings. The ambience is pretty average. We ordered beef angus and sirloin steaks and they were served with fries without any veggies. Quite chewy, nothing really special.", "author": "Ilja Bobkevic", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURnbnVMNjNRRRAB", "timestamp": "11 months ago"}, {"text": "The octopus was tasty. The ingredients fresh. Very fast and good service.", "author": "Sven “knorke” Teresniak", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZX05YaGVnEAE", "timestamp": "6 years ago"}, {"text": "Not sure why this place has such ratings. The ambience is pretty average. We ordered beef angus and sirloin steaks. Quite chewy, nothing really special.", "author": "Karesnik Kyrisnik", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3MV9HbWtRRRAB", "timestamp": "10 months ago"}, {"text": "Amazing food\\nDefinitely recommend", "author": "christine samaan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIallTSnF3RRAB", "timestamp": "a year ago"}, {"text": "Everything has been at superlative, from the dishes’ spectacular serving and exemplary behaviour of los camarones, to the incredible taste made of the most inspired combinations of the best ingredients. Prices are higher than the average, but the quality of the entire experience totally justifies them. By far no. 1 restaurant in Las Palmas.", "author": "Andra Elena Petrescu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIcmM2ODNBRRAB", "timestamp": "a year ago"}, {"text": "Thanks to Mario & Moises for looking after us so well last night. It was truly a dining experience! The food was absolutely superb and the choice of wines excellent. Our party of 7 all thoroughly enjoyed it. The presentation and care taken over the food was also excellent. An evening to remember, thank you.", "author": "Tim Matcham", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlbzREVXZBRRAB", "timestamp": "3 years ago"}, {"text": "Very delicious and outstanding service! Highly recommended place.", "author": "Urban Scribe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeE1taE5BEAE", "timestamp": "2 years ago"}, {"text": "Nice calm n quiet place to have good food", "author": "Suresh Jangid", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWSVEzcEtSMkpxYUVsYU4yOXlWRFZxTTNCSFNVRRAB", "timestamp": "6 months ago"}, {"text": "Such a shame. My friend told me this was a great place. The reviews mostly confirmed this. So we arrived Sunday lunchtime. \\"Is there a table\\" we asked the waiter. He looked right through us and turned round and walked back inside. We thought maybe he was stressed, hard of hearing, or both. So we figured we'd try again. About 5 minutes later another waiter arrived to clean the table. We asked again. With a hugely irritated scowl he said \\"I'm busy. You need to wait. I'm busy!\\" Such a shame as I said. A simple smile and \\"I will get to you as soon as I can\\" should have been the response. We left. They won't miss us - but hopefully some staff training won't go amiss. Sadly, I think it will!", "author": "Pierre Wilter", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNUdF8zbGhnRRAB", "timestamp": "Edited a year ago"}, {"text": "Exceptional. In every sense.\\nFood is amazing, service is great, including eventually some special attention by the very owner, who really is in tune with the experience he wants to offer to his customers.\\nPrices quite fair considering the quality you get.\\n\\nVery much a \\"must try\\" in Las Palmas", "author": "Billy Blue", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0M3YtNlRBEAE", "timestamp": "a year ago"}, {"text": "Incredible food and I would love to come back here everyday if I could! I loved how they cut up and mixed the salads for you as well - a nice touch. Loved all the food and I would fully recommend to anyone coming to visit the island. Thank you for a lovely experience!", "author": "Jo K", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROX05YUlNREAE", "timestamp": "2 years ago"}, {"text": "Was in Las Palmas for over three weeks & this was the nicest food by far. I had the tuna & the cod. Beautiful. The waitress was amazing very attentive & helpful. Five stars all round. I visited three times it was that nice.", "author": "Sonia Brady", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1MmRLUTRnRRAB", "timestamp": "2 years ago"}, {"text": "Perfect tastes! Not only the dessert but also main dishes", "author": "Tomasz Krupa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxMHRYNFNBEAE", "timestamp": "2 years ago"}, {"text": "Absolutely mind blowing food, starters and main dishes. Fried prawn with cream cheese as starter was top notch. I had grilled octopus as main, and it was delicious. We were wanting to have dessert, but we were so full (due to generous portions) - hence we gotta come back!! Service was also excellent. Recommended from someone who is picky about their food.", "author": "Thorvald Nilsen Myhre", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbElhOWJBEAE", "timestamp": "4 years ago"}, {"text": "Very good value and interesting food. We came here on two occasions. The setting is reasonably informal (we reserved on both occasions but did not need to). Service is very friendly and the menu is available in English.\\n\\nParticular highlights were the pulled pork tacos (in salad) as well as the steak. The chocolate party dessert was also great (although a lot of chocolate, maybe one to share). We found the value-for-money here excellent.", "author": "Louise Adams", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5cUpEaFh3EAE", "timestamp": "5 years ago"}, {"text": "This is an amazing restaurant. The menue is creative, the taste is great and it's beautifully arranged. Service is also top par. We have been in Las Palmas for two weeks and visited a new retaurant every day. Rincon de Triana is the only one we went twice!", "author": "Arne", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMbWZickdBEAE", "timestamp": "a year ago"}, {"text": "Spanish cuisine at its best. Reinterpretation of classics in a tasteful and decently priced experience, you will impress your partner. Choose this place with no second thoughts.", "author": "Andrei Popov", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIdzU3RlBBEAE", "timestamp": "a year ago"}, {"text": "Vert excellent and great experience! I recommend it 100%", "author": "jihane", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKNmJEWkpREAE", "timestamp": "2 years ago"}, {"text": "We had a great experience at this restaurant. The waiters are very friendly, the food and wine were of excellent quality and many dishes were finished at the table, which made the whole dinner an exciting experience. Despite the high quality, the atmosphere is relaxed and I can fully recommend this restaurant.", "author": "Johanna Elena Kasparick", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCek8zU1pBEAE", "timestamp": "3 years ago"}, {"text": "I don’t have even words to describe how good it was, we were trying every evening a new restaurant at Las Palmas but nothing was really special until we came here . Start from service and food quality even in Michelin restaurants are not so good.\\nPlease tray a black Angus carpaccio with black truffles and ice cream also prawns with goat cheese and apricot jam😋😋😋😋and list can go on….. it was my husband’s birthday and we had perfect evening.", "author": "nona m", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSdmRqaC13RRAB", "timestamp": "2 years ago"}, {"text": "Perfect experience! Exactly what we were looking for to have a really good dinner for our last evening in Gran Canaria. We had the steak and the salmon and it was delicious! Also as a starter I really recommend the aubergine with honey! Top! We will definitely come again!", "author": "laura win", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMydE83ZF9RRRAB", "timestamp": "3 years ago"}, {"text": "This is a proper restaurant. Top class service, all staff were warm, welcoming and friendly. The food was second to none in Las Palma's perhaps the whole island.\\n\\nI highly recommend the gyozas.", "author": "Luis Dina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIMy1yeTRRRRAB", "timestamp": "a year ago"}, {"text": "Outstanding, I can’t believe it’s so cheap.\\n20€ for a steak that can compete with a 60€ Chateaubriand!\\nAll meals have been really awesome and you receive a show only known from MICHELIN\\nStar restaurants.", "author": "Timo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNONlotT1pBEAE", "timestamp": "2 years ago"}, {"text": "Super meal. Great service and really great venue!", "author": "Jeremy OSullivan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYek9Ld0xBEAE", "timestamp": "a year ago"}, {"text": "Rented a car with my boyfriend and drove to Las Palmas from Puerto Rico. Searched on the internet after a nice restaurant in the area and found this one and wasn’t disappointed at all! The food was absolutely amazing! We started with fried prawn with cream cheese which was absolutely delicious. After that we got fried aubergine. Didn’t quite remember what the rest was, but that one as well was amazing! As a main we got the grilled squid and beef tenderloin which was amazing as well. Super friendly service also. The waiter was super helpful and explained every course. Got a really nice vine pairing with the beef! This is a must try for everyone traveling to Las Palmas! I’ll definitely come back next time.", "author": "Truls Bakken Bye", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtbElhbjF3RRAB", "timestamp": "4 years ago"}, {"text": "This is simply the best restaurant I have ever been to! From the service to the highest food quality, the attention to detail is second to none. If you just want unbelievably delicious food, the perfect portions, and quality service you must come Rincon de Triana.", "author": "Ronald Santos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkcktUSnp3RRAB", "timestamp": "a year ago"}, {"text": "First night in Gran Canaria and it has got off to a banger foodwise! Leaving this review before even paying the bill.\\n\\nReally good food, portions are generous and won't leave you hungry.\\n\\nThough, my boo would give a 4.9 just coz parts of it were a little too salty for her.", "author": "Mr J", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtN1pPc2l3RRAB", "timestamp": "3 years ago"}, {"text": "Nice staff. Very helpful. Really good vegetarian alternatives even though the menu does not say much.", "author": "Bore Sköld", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmM28zQU9REAE", "timestamp": "a year ago"}, {"text": "We came with no big expectations and were pleasantly surprised! Everything we tried there was super delicious - soup, fish, ham, deserts... The service very friendly & fast. The best meal I’ve had on Gran Canaria! Highly recommend", "author": "Varis Vagotins-Vagulis", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNVN2RPMmxRRRAB", "timestamp": "6 years ago"}, {"text": "The food was very good the service was good, however the price was too high compared with the other restaurants around.", "author": "Remus Avram", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2a0piU1F3EAE", "timestamp": "Edited 6 months ago"}, {"text": "A terrible experiencia. Pulpo was very overcooked. They salted all our food before. It was uneatable, salt was burning at our lips. We complained about this, but not any respond. Beside this all the food was swimming in a lot of oíl. We left the restaurant as Quick as possible. On the bill they charge us also for bread, we didn't ask for. This must be one of the best restaurants of Las Palmas. NEVER RETURN EVER. WASTE OF MONEY and destroying our day.", "author": "Sjors van Hoogdalem", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1clpIMjlRRRAB", "timestamp": "3 years ago"}, {"text": "Everthing was delicious i can recommend you the place", "author": "george parathiro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCcWVGWjRiek5rU1dGVllYQnlRMk5JYTJWVmJHYxAB", "timestamp": "4 months ago"}, {"text": "This restaurant is worth to visit.\\nThey take the quality of their dishes seriously. You will not be disappointed.\\nI repeated and I enjoyed as the first time as well\\n\\nI will come back !!", "author": "J S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaNU1TQUJnEAE", "timestamp": "2 years ago"}, {"text": "The best octopus I had in my life. The rest of the dishes were also really sublime. Probably twice the price of neighbour restaurants, but more than well worth it!", "author": "Jakob", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGJEM2dRRRAB", "timestamp": "4 years ago"}, {"text": "The food was not that good for how much we paid. The service was very good, very friendly, but I would not go again.", "author": "Clara", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNGFfNWJBEAE", "timestamp": "a year ago"}, {"text": "Good food and excellent service.", "author": "tadej pogacar", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tKWGFFUnFOM280UTNOWExVOUZjbXA0ZVU0MFkzYxAB", "timestamp": "a month ago"}, {"text": "Honestly an absolutely incredible experience. The owner came out and described each part of our meal and every part was as delicious as each other - would highly recommend to anyone.", "author": "Dan Jones", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNTZqRFJREAE", "timestamp": "2 years ago"}, {"text": "Our dinner started with carpaccio swimming in olive oil and ice cream. What a disaster. It was fridge cold meat with about 1 dl olive oil and ice cream. Second starter was mussel nest. Mussels tasted old and grainy like mussels in a tin can. I almost vomited after the starter. Then it was the main. We ordered octopus and it was way too over cooked. Had to chew small piece for a minute to swallow it. Octopus was hard like rubber. We told that to the worker who didnt charge us for the dishes. We were really hungry before going to this restaurant. We felt very sick after starters and couldn’t eat anything the whole evening. What a shame it turned out this way even we are both culinarist and love to have new and creative food experiences.", "author": "Ras G", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXb3RhQ09REAE", "timestamp": "3 years ago"}, {"text": "Best restaurant on Gran Canaria! The grilled octopus was amazing and even the crocettas were so much better than all variations I ever had before. Truely an experience!", "author": "Carina Fürst", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtcklDeGdnRRAB", "timestamp": "3 years ago"}, {"text": "The food was excellent. We really enjoyed the delicious and thoughtful details of every dish. The sangria was wonderful and the employees were really attentive.", "author": "Sophie", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXcG9laU53EAE", "timestamp": "3 years ago"}, {"text": "Terrible, getting ill after our lunch. Rubbery pulpo, lots of oíl and salt. We asked if we get vegatables with our Meat. No, only patato's. But we could change it for vegatables. So we did. Uneatable, salt, salt, oíl and oíl. The patato's with the pulpo were not patato's, but a handfull cold chips from a saco from the supermarket, also swimming in lots of oíl. Easy \\"cooking\\" 👎After complaining at the waiter, no answer, nothing. We've to pay for all the terrible food, even more than on the menú!!! Probebly they try this because we don't speak spanisch yet . We live here, but never come back.", "author": "Sjors van Hoogdalem", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1N2JiTjZnRRAB", "timestamp": "3 years ago"}, {"text": "We had the sirloin steak and it was very tasty fine meat. They served it almost raw and then you grilled it at the table. Nice place.", "author": "Saga Liw", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHaXAyaEN3EAE", "timestamp": "4 years ago"}, {"text": "Very attentive service. All dishes tasted very good, the steak was cooked on point. Absolute recommendation.", "author": "Felix B", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWb3Ayc0ZnEAE", "timestamp": "2 years ago"}, {"text": "Very high quality!!!! Good food nice staff the only thing that would be great is a vegetarian option. I usually don't give perfect score to restaurants without it but the quality was so high that it is forgiven!!!!!", "author": "Julien Denos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxMmJUYUJBEAE", "timestamp": "4 years ago"}, {"text": "Great Night. Thank you.", "author": "Christos machlianis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqaXMyN0pBEAE", "timestamp": "a year ago"}, {"text": "We stumbled upon this place for dinner and it was honestly the most amazing food and drink! And great atmosphere ✨ highly recommend", "author": "Dagmara Bandura", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsZ0t1eDFRRRAB", "timestamp": "2 years ago"}, {"text": "Amazing food with amazing service. Cant recommend this place enough 👌🏼", "author": "Brian Mc Namara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvd2N6cnZ3RRAB", "timestamp": "9 months ago"}, {"text": "Highly recommended restaurant **the scallop**", "author": "Sacide Karadaşlı", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncDktWXRBRRAB", "timestamp": "11 months ago"}, {"text": "Attentive and knowledgable staff, with good quality food with a bit of theatre, flamed and mixed at the table. Nice wine selection.", "author": "S McKie", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoc0wzbTZ3RRAB", "timestamp": "2 years ago"}, {"text": "Great food, dishes are sligtly less usual, and the overall quality is great. Highly recommended.", "author": "Alex Malgaroli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4dE1XaXhnRRAB", "timestamp": "2 years ago"}, {"text": "Amazing service, food and wine selection. Perfecto!", "author": "Sarah Hunter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfb2F2Tkh3EAE", "timestamp": "a year ago"}, {"text": "The food was fantastic and adventurous. The wine was amazing. The service even better.", "author": "SunnyNicky", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlOVpILXh3RRAB", "timestamp": "3 years ago"}, {"text": "Great food with even better service, best food i have eaten in gran canaria. Price / quality was even better then expected :)", "author": "Aziz Daluiso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlMWQtekJBEAE", "timestamp": "3 years ago"}, {"text": "Just had lunch here for the first time ,came highly recommended ,but totally spoiled by the noise y bad behavior of a child ,I’m surprised the restaurant and the parents allowed it ,I’m sure I wasn’t the only one who had their lunch ruined", "author": "tony byrne", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPaTdUSy1nRRAB", "timestamp": "3 years ago"}, {"text": "Extremely good restaurant, amazing food. Octopus & salad in particular.", "author": "Albert Triganon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6dGNiak5BEAE", "timestamp": "a year ago"}, {"text": "Really delicious, high-quality menu, great wines and super friendly staff.", "author": "Assunta Walderdorff", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXOV9uWWNnEAE", "timestamp": "3 years ago"}, {"text": "Fantastic food, great wine and good service! Definetly worth a visit!", "author": "Robin Wied", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoMk1peVd3EAE", "timestamp": "2 years ago"}, {"text": "The food is delicious (interesting twists) and the service is friendly and great! Definitely recommend!", "author": "Yuliya Zemlytska", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMFpxMUxnEAE", "timestamp": "4 years ago"}, {"text": "Didn’t have chance to leave a tip, I’m still haunted by this all these years later. I’m sorry to this fine establishment. Too much chocolate in the flowerpot", "author": "Sanya Samad", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtb0pDcHR3RRAB", "timestamp": "3 years ago"}, {"text": "We only had drinks however they had a seection of different Bear's service was fine plus a nice location.", "author": "Mainly Spain", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtazZiNjZRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "There must be a magician working in the kitchen , everything is different from your expectations", "author": "Tamas Mayer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvNHNIX2pRRRAB", "timestamp": "9 months ago"}, {"text": "Great service. Excellent food. Very impressed and lived up to the reviews", "author": "Gerard O'Reilly", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzNGJ1Mnd3RRAB", "timestamp": "5 years ago"}, {"text": "Fòod was 1st class was served by John great waiter highly recommend", "author": "John Mortimer (Kelpieman)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROei1YcmRnEAE", "timestamp": "2 years ago"}, {"text": "Great food and perfect service. One of the best in Las Palmas", "author": "Giuseppe Perna", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2aHNlMjRBRRAB", "timestamp": "4 years ago"}, {"text": "Restaurant was nice but unfortunately I got food poisoning from the sea food.", "author": "Laura Mitchell", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaFB5MDJRRRAB", "timestamp": "2 years ago"}, {"text": "Excellent restaurant, food is delicious and the staff is friendly.", "author": "Jean-Denis Zafar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCNWFpUUtnEAE", "timestamp": "3 years ago"}, {"text": "Perfect place to eat 😋\\n\\nStrongly recommended 👌", "author": "Turk Telekom", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzalBIQVp3EAE", "timestamp": "a year ago"}, {"text": "Great restaurant. Well worth a visit.", "author": "Ger kelleher", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROdVBETmVBEAE", "timestamp": "2 years ago"}, {"text": "Fabulous food. Variety, excellent taste.", "author": "Diana Spiczak-Brzezińska", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxeFl1NERBEAE", "timestamp": "2 years ago"}, {"text": "Great service, nice atmosphere & great food.", "author": "Trav eller", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNkbllEdWZREAE", "timestamp": "a year ago"}, {"text": "Absolutely delicious octopus leg!", "author": "Paula Petcu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmd2JfM1VBEAE", "timestamp": "a year ago"}, {"text": "Great food and very friendly staff. Must try!", "author": "Cristian Ormeno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4cmZYd3VnRRAB", "timestamp": "Edited 5 years ago"}, {"text": "One of the best, perhaps the best on playa de las canteras.", "author": "Sophie Scheepers", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNseXNYYmdBRRAB", "timestamp": "2 years ago"}, {"text": "Great place to eat and very delicious", "author": "Erman Karaca", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzcnVQYUhBEAE", "timestamp": "a year ago"}, {"text": "The iberico 5J, outstanding!\\nAbsolutely wonderful.", "author": "Göran Johanson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNscmI3aklREAE", "timestamp": "2 years ago"}, {"text": "Damn good restaurant, worth to visit", "author": "Ari Järves", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaVl1cjZ3RRAB", "timestamp": "3 years ago"}, {"text": "Perfect service and very tasty food!", "author": "Tami Brink", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdS1pbzRBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent food, friendly service!", "author": "Rita Ahonen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNW9yY0FnEAE", "timestamp": "6 years ago"}, {"text": "Fantastic food and very good service", "author": "Don Dubbsen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXeUtXd1NREAE", "timestamp": "3 years ago"}, {"text": "Good food, stock service", "author": "Dávid Simon", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtOXI2aXV3RRAB", "timestamp": "Edited 4 years ago"}, {"text": "Amazing food!", "author": "Marcos Oliveira", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIbXBDWGtBRRAB", "timestamp": "a year ago"}, {"text": "Don’t miss this wonderful place!", "author": "Aliaksei Vladyka", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPb05Xc2Z3EAE", "timestamp": "3 years ago"}, {"text": "Amazing food..", "author": "Lars Jørgen Nilsen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXd0txdnpBRRAB", "timestamp": "3 years ago"}, {"text": "Excellent as always", "author": "Bhikhu Vadera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXeXQ2YUN3EAE", "timestamp": "3 years ago"}, {"text": "Excellent !", "author": "Del Gui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5NzRUV2RnEAE", "timestamp": "a year ago"}, {"text": "Rincón de Triana situé à deux pas de la plage. Ici, pas de simples amuse-gueules, mais des plats de grande qualite, poulpe, gyoza porc cuit à basse\\nLa cuisine est d'une qualité exceptionnelle et absolument délicieuse.\\n\\nL'excellente carte des vins et le service attentionné et chaleureux, avec un personnel toujours prêt à donner des conseils et explications.\\nEn résumé, une adresse incontournable !", "author": "Régis Routier", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CMGMxQnNMVEpVY1ZKNk1GOVNkVUpYTm5aUlZXYxAB", "timestamp": "a week ago"}, {"text": "Von außen wirkt das Restaurant klein und eher unscheinbar – aber genau das macht den Überraschungseffekt umso größer. Innen erwartet einen exzellenter Service und eine Küche auf richtig hohem Niveau.\\n\\nSowohl die Vorspeisen als auch die Hauptgerichte und ganz besonders die Nachspeisen waren durchweg ein absoluter Volltreffer. Man merkt sofort, dass hier mit Anspruch, Können und Liebe zum Detail gearbeitet wird.\\n\\nIch habe mich für die Empfehlung des Hauses, den getrüffelten Fisch, entschieden – und das war eine hervorragende Wahl. Perfekt gegart, großartig abgeschmeckt, absolut stimmig. Ein echtes Highlight war zudem, dass einige Speisen direkt am Tisch mit dem Brenner den letzten Schliff bekommen haben – nicht nur optisch beeindruckend, sondern auch geschmacklich sinnvoll eingesetzt.", "author": "Jens Schneider", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tocmJuTkdXVTB3WVhoWE9VRlFjME5XTVVkdk1VRRAB", "timestamp": "4 weeks ago"}, {"text": "Destacable los postres (sobre todo \\"la fiesta de chocolate\\"). Carne muy sabrosa, cachopo bastante rico. Precios bastante caros y local muy dejado. Necesita el local de forma urgente una pequeña reforma, muchas paredes con pintura desgastada, muchas manchas, el baño tenia hasta la tapa rota de la vasija.", "author": "BR", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Gd1gzQlVjV1p5YjJOS1EyOWpabmhuTFRCcWMwRRAB", "timestamp": "a week ago"}, {"text": "Loistava paikka, jonne saimme pöydän ilman varausta. Erittäin hyvä ruoka, loistavat viinit, palvelukin ensiluokkaista. Yksi reissun parhaista ravintoloista.", "author": "Sami Garam", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Kc1drbHFNM1ZVWlY5QlFVOTVTR0o0UzFwVFlYYxAB", "timestamp": "a week ago"}, {"text": "Una absoluta vergüenza.\\n\\nFui con mis amigos y comimos un menú de 50 euros. 50 euros. Decir que nos sacaron jamón, huevos estrellados, tartar de salmón, gyozas... todo muy bien sobre el papel, pero la realidad es que se trataba de una estafa dada la cantidad de comida que nos dieron por 50 euros, repito, 50 euros.\\nDejo fotos para dar fe de lo que hablo, para que la gente no caiga en la misma estafa.\\nRación de bacalao, del tamaño de un pincho. Recalcar que este fue el plato principal del menú de 50 euros y me traen un miserable pincho.\\nPostre: tarta de chocolate. La porción y un corcho al lado para que evalúen ustedes mismos el tamaño ridículo del trozo que nos sirvieron. Indignante, cuanto menos.\\nUna absoluta falta de vergüenza.\\nNo volveré.", "author": "Pepelvis", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRMlpGaEtiV2d3VW1oNmVscGhYMlpoU1U4dGRFRRAB", "timestamp": "4 weeks ago"}, {"text": "Io e la mia ragazza abbiamo cenato qui invigliati dalle buone recensioni e non siamo rimasti delusi.\\nCibo delizioso, servizio eccellente e ottima carta dei vini.\\nConsiglio vivamente i ravioli di maiale e la guancetta brasata.\\nTorneremo sicuramente, uno dei migliori locali di Las Palmas!", "author": "Alessio Tonin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201SVVITmZjMjFQVFRsTVoyMU5PVFpxWm5OMlVWRRAB", "timestamp": "6 months ago"}, {"text": "Buen restaurante, donde el servicio se sintió muy familiar y a pesar de que no fue un servicio excelente pensamos que cumplió las expectativas, todas las comidas estuvieron muy ricas pero sin dudarlo recomendamos la tarta de queso casera.", "author": "Josue leonardo Fernandez Dominguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KVFkxZEdVRFZQYlVneFpUTmxObHBhTTBOaGIwRRAB", "timestamp": "a month ago"}, {"text": "Ein scheinbar unscheinbares Restaurant, ein paar Schritte von der Promenade entfernt. Das Essen dort ist ein Traum. Dazu freundliche Kelner und ein uriges Ambiente. Wir waren schon paar Mal da und kommen gerne wieder.", "author": "Izabela Jobda", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xSSk0ySTNlVFE0WTNScmJXWmpOSHBoWDIxVWFsRRAB", "timestamp": "a week ago"}, {"text": "Nos encantó todo lo que probamos: mezclas de ingredientes curiosas pero muy bien combinadas, especialmente los platos del chef. La única pega fue la espera entre plato y plato, ya que íbamos compartiendo y a veces se nos hizo larga la espera.", "author": "Carmen Chen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUFlteDRNa2hOZUdKUFprUkJMVWxNTkVkRlVYYxAB", "timestamp": "5 months ago"}, {"text": "Mmmm, cena poco convincente… Avendo letto così tante esperienze positive, ci aspettavamo molto di più…\\nIo ho preso uno dei pochi piatti vegetariani, un rotolo di melanzane e formaggio che era abbastanza buono, anche se forse c’era troppa salsa al miele che ha reso il piatto un po’ stucchevole.\\nIl mio compagno ha preso la tartare di salmone con spuma al mango che gli è piaciuta (anche se aveva molto aglio/cipolla), mentre il maialino arrosto bocciatissimo. Aveva un gusto amaro e anche le patate di contorno non erano niente di che.\\nIn generale cena mediocre, peccato.\\nI camerieri sono simpatici e disponibili.", "author": "Elena Rollini", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOS05XMWxMVWh4VGt0UFUxWktiMk5yYTNwak1YYxAB", "timestamp": "a month ago"}, {"text": "Ein besonders gemütliches Restaurant mit einem hervorragenden Service - danke an Jesus (und das Team), der uns sehr freundlich, kompetent und dezent den ganzen Abend begleitet hat. Das Essen ist von sehr guter Qualität- wir hatten u.a. die Schweinebäckchen in einer Rotweinreduktion und die frittierten Sardinen mit Pommesfrites. Knusprige fein geschnittene Pommes findet man auf der Insel selten- hier gibt es sie. Das Fleisch war butterweich, die Soße geschmackvoll, die Süsskartoffeln dazu vielleicht etwas zu weich. Wer gut spanisch Essen gehen möchte und wem das Ambiente wichtig ist, ist hier gut aufgehoben.", "author": "Nathalie Schröder-Langbehn", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3XzRIZEVBEAE", "timestamp": "10 months ago"}, {"text": "Für mich war es gestern ein besonders Erlebnis dieses Restaurant zu besuchen, und es war sehr amüsant den als wir ins Restaurant kamen wurden wir von anderen Gösten schon hingewiesen das es sehr lecker ist. Und ich kann sagen, das war das beste Steak was ich bisher in Europa gegessen haben unglaubliches Fleisch perfekte Maserung und die Vorspeise Tunfisch Salat war ungewöhnlich lecker - es war insgesamt traumhaft das Essen.", "author": "Peter Ampfl", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNElHck5BEAE", "timestamp": "9 months ago"}, {"text": "Llegamos aquí en el último día de nuestro viaje. Y bendito momento. Calidad impresionante, el servicio impecable nos atendieron super rápido y con mucho cariño y detalle. Y la comida...puff indescriptible", "author": "cintia mena brenes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRdGNXRjZOMEpZWkZWWVNUQjFibEpIV0hWcU9WRRAB", "timestamp": "5 months ago"}, {"text": "Gran descubrimiento. Una carta muy variada y además con platos fuera de carta que van variando según temporada/mercado. El servicio fantástico, un trato muy personal y siempre pendiente de nosotros. Nos atendió Huber, además del dueño o maitre, y fue todo perfecto.\\nPor sacar un pero, la cerveza de barril es cruzcampo, pero sale bien tirada y fresquita.", "author": "alvaro gonzalez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201U05HbzBWM3BrVUVGclEzZ3pVRGxsT1d4dVlVRRAB", "timestamp": "a month ago"}, {"text": "Buen servicio y comida excelente. Nos gustó todo. Pedimos carpaccio de Black angus, bife de Black angus, tartar de salmón y de fuera de carta cherne gratinado a la trufa. De postre pedimos la torrija. Volveré.", "author": "Maria Jose Siesto Campaña", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOa0xUUmpkelZZTkRSbGMxWjFTakF3YTI5Q01WRRAB", "timestamp": "5 months ago"}, {"text": "Servicio excelente, carta cuidada y sobre todo creativa. Pedimos el guacamole, las zamburiñas que para mí fue lo mejor y las gyozas.\\nLa única crítica constructiva que tengo es que el acompañamiento del guacamole podría ser totopos originales en lugar de la fajita de trigo sin freír.\\nSin duda un indispensable si estás por la zona y te gusta comer bien!", "author": "Marta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCV1pVUTRObFZIVjJoblVrMWhhMVl5YzFGTVptYxAB", "timestamp": "6 months ago"}, {"text": "Reservamos para la cena de empresa. Los entrantes no estaban mal, pero plato principal (eligimos solomillo) en lugar de papas asadas cambiaron a fritos (bastante duros) sin avisarnos y sirvieron el plato casi frío, el solomillo tampoco no estaba a la altura. la presentación de comida fue un poco floja. Los postres muy pequeños raciones y de sabor diría 5/10. En general no recomendaría este lugar para eventos grandes, tal vez al dia normal (sin tanta ocupación del lugar como tenían) servicio es mas agradable y la comida también.", "author": "Dmitrij Dan", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WRU1sOXlaVUZFZW5kcWVGVnZXVzlaVUZSVlUwRRAB", "timestamp": "a month ago"}, {"text": "Tuvimos una cena familiar.\\nDe los pocos restaurantes que visten las mesas con mantel, últimamente ya no ponen ni individuales!!\\nEl servicio estuvo muy atento, pendientes de que todo fuera de nuestro agrado.\\nComo siempre, la comida exquisita. Platos originales con ingredientes de calidad. Además ponen buenas raciones.\\nBuena selección de vinos.", "author": "Matilde", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUeHJfOEp3EAE", "timestamp": "Edited 6 months ago"}, {"text": "Un trato de 10 y la cocina al nivel del servicio ofrecido. En mi TOP están las gyozas de lacón, ensaladilla Rusa y lomo alto.", "author": "Rubén J. F.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKVFUzUk5MVGswVG1STVFVRm1iR3hSWmpkYVpHYxAB", "timestamp": "4 months ago"}, {"text": "Ya fuimos varias veces a cenar ally.\\nPero la última vez no quedamos decepcionado. Primero por el servicio de los camareros . Falta de atención y segundo nos dimos cuentas que lo platos que salía no eran iguales. Pedimos huevos rotos y tenía 4 lonchas de jamón.\\nLa mesas al lado mismo plato tenias mas jamón que nosotros. Más pedimos mas platos y también pasó lo mismo. Parece que hay distinción de clientela. Pero al final los platos tiene los mismos precios par todos. Almeno esperó.", "author": "Daniel", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sclgwMTJha2hpUVd0YWFXNXhkbnBwUTBadFFtYxAB", "timestamp": "2 months ago"}, {"text": "Comida excelente y diferente, personal muy atento y buena calidad precio. Fuimos a cenar 4 personas y con vino sale aprox 40€ por cabeza.\\nPedimos anchoas y chupachups de gambones fuera de carta, y también probamos jamón ibérico, zamburiñas, pan bao de cochino negro, gyozas y un carpaccio de black angus, este último ha sido el plato estrella para nosotros, la mezcla de sabores nos ha dejado alucinando, es espectacular así que no dejen de pedirlo! Repetiremos encantados!", "author": "Sara Montalbán", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3cHI2eS1RRRAB", "timestamp": "a year ago"}, {"text": "Exquisita comida. Calidad precio perfecto. Pedimos ensalada de ventresca, fusión de sabores excelentes, pan bao de pulpo, zamburiñas, repetimos este plato ya que era una explosión súper placentera en nuestros paladares, por último salmón y carrilleras.\\nEl trato de los camareros explendido. Sin duda alguna merece la pena y si tenemos oportunidad, volveremos.\\n40€ cabeza (sin vino) somos de buen comer y salimos satisfechos.", "author": "Iraide Esteban", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMcm9fSXRRRRAB", "timestamp": "a year ago"}, {"text": "La verdad q todo muy bueno. Me ha encantado. El trato muy bueno. Gracias y volveré a repetir.", "author": "Felipe Rafael Barrientos Sanchez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5ZlRWOUthbmxYY2pRNE0zZ3plRmxIYld4cldYYxAB", "timestamp": "5 months ago"}, {"text": "Al meter no le rentaba dar mesa a una persona sola, y en vez en media hora de espera estuve una hora y cuarto cuando tenía dos mesas libres.\\nMe quería dar puerta cuanto antes para tener mi mesa libre y en vez de asesorarme cuando le iba a pedir un plato,casi me obliga a pedir los taquitos de merluza sin espinas ( que sí las tenían, y que no era más que un filete, me atrevería a decir que descongelado, cortado en dados y rebozado ) que nada más sentarme me intento vender, sin haber visto la carta previamente.\\nDicho filete de pescado partido en trozos me cobraron como si hubiera pedido la merluza o pescadilla entera 25€.\\nPorque no hay menos estrellas...\\nHaber si aprenden que uno más uno suma...", "author": "Olivia Rincón García", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2kxNFdrWm1jMEpYTjBWa1dWVlNWM3BVVm5wQ1UzYxAB", "timestamp": "2 months ago"}, {"text": "Recalcar que será una crítica constructiva ya que el grupo que fuimos anoche a cenar solemos darnos un capricho de vez en cuando en dicho restaurante, el cuál es muy recomendable.\\nEmpiezo a relatar la aventura ... llamé para reservar el jueves una mesa para 7 personas cena, sábado 8 nov. Ok\\nLlegamos al lugar nos dicen que nos ponen en un anexo a 50 metros del restaurante habitual ya que no hay mesas disponibles. Creo que eso debería habérmelo dicho cuando hago la reserva pero bueno accedimos a cenar en dicho lugar.\\nLa sorpresa llega cuando vemos que toda la comida la traen del restaurante al anexo un camarero por medio de la calle unos 50 m ...\\nEl gerente ni el camarero nos ofrecen nada fuera de carta como suele ser habitual en el lugar la comida llega media fría y nos sentimos totalmente solos y abandonados en dicho lugar.\\nLa tardanza entre entrantes, primer plato demasiado por no decir que ni nos ofrecieron postres, esperamos 30 minutos desde que terminamos el plato principal pero nada ...\\nEntramos a cenar a las 20.30 y salimos a 11:40 ...\\nLa verdad nos fuimos bastantes descontentos ya que siempre hemos almorzado o cenado estupendamente.\\nMuchas gracias\\nSaludos cordiales", "author": "MARIO ALEXIS NARANJO HENRÍQUEZ", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsWFV6UjJhSE16TTFONVUyWkViRWQxU1ZCSlUzYxAB", "timestamp": "2 months ago"}, {"text": "Lugar exquisito tanto en la comida como el trato del personal. No podría quedarme con uno de los platos desde el tarta de salmón como los huevos rotos con carabineros que nos pedimos fuera de carta.\\nEl camarero que nos atendió de 10 nos recomendó muy bien y siempre muy atento. Felicidades por lo que están construyendo. Volveremos m.", "author": "dalia ortiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3bExfbkJnEAE", "timestamp": "a year ago"}, {"text": "Restaurante al que acudimos recomendados con amigos. Resumen: ESPECTACULAR. El guacamole preparado en nuestra mesa, zamburiñas flambeadas también a nuestro lado que estaban riquísimas. Un tartar de atún que no puedes dejar de pedirlo 🙏. En fin, podría seguir hablando del pan bao, guiozas, etc pero es que todo está buenísimo. La atención de los camareros súper profesional y el precio muy muy correcto para lo que se come. Es sin lugar a dudas un restaurante que repetiré siempre que regrese a la isla. ¡Sigan así!", "author": "Néstor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMbzZXZGFnEAE", "timestamp": "a year ago"}, {"text": "Excelente restaurante, la comida es espectacular y el trato del personal jna maravilla. Uno de los mejores restaurante en Las Palmas de Gran Canaria. Cuentan con una carta diferente con un toque personal pero de un gusto exquisito. El trato del personal es inmejorable. Toda una experiencia culinaria. Altamente recomendado.", "author": "Lorena Robaina Calderín", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25oamJqbDRiMUowTXpneVlYRjROVWRsYlVkVlltYxAB", "timestamp": "3 weeks ago"}, {"text": "Atención,comida y ambiente impecable. Muy agradable, poco ruido, estás al lado del paseo de la playa donde puedes comer en sitio discreto, íntimo y agradable. Mantel y servilletas de tela que parece que se nos olvida. Muy muy recomendable relación calidad precio. Mi felicitación a quienes nos atendieron y al a cocina, muy rico todo. No suelo valorar restaurantes. Espero que esto no haga que suba los precios 😉. Si vuelvo a la isla, espero poder permitirme el poder ir de nuevo. :)", "author": "Roberto Hermoso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOX19PNG5nRRAB", "timestamp": "2 years ago"}, {"text": "Restaurante donde nos atendió un camarero muy amable y que nos ayudó a elegir nuestros platos. Probamos de primero las dos gyozas, no sabría con cuál quedarme...\\nDe segundo yo me decanté por el cerdo 5J, sonaba bien, pero es que sabía aún mejor.\\nSin duda un sitio muy recomendable.", "author": "Ernesto José González Veiga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkbnA2SlpnEAE", "timestamp": "a year ago"}, {"text": "Fantastico! Cibo di ottima qualità, vini molto buoni, rapporto qualità/ prezzo è ottimo! La professionalità e la gentilezza dello chef e dei camerieri ottima. Consiglio di provare il famoso Guacamole che è preparato è servito al momento! Lo consiglio a tutti e noi sicuramente ci ritorneremo!", "author": "Maryna Sudarikova", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtaU56NERnEAE", "timestamp": "3 years ago"}, {"text": "Wir waren heute mit 8 Personen hier zum Lunch. Das Essen war fantastisch, ebenso der Service und der Wein, zu empfehlen der Roséwein, richtig gut. Zum Abschluss haben wir uns ein leckeres Dessert gegönnt, lecker! Das war es Wert, wir kommen definitiv wieder.\\nMan sollte vorher reservieren :)", "author": "An LL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQbl82MmF3EAE", "timestamp": "a year ago"}, {"text": "Una vez más no nos defrauda. Sigue manteniendo el nivel desde el primer dia. Editado: Volvimos al restaurante con la familia y de nuevo, una experiencia maravillosa. Nos dejamos aconsejar y pedimos tacos de pulpo y cochino negro, huevos estrellados con jamón recién cortado, zamburiñas y una carne muy rica. Los postres al nivel de la comida y la atención como siempre de 10. Volveremos seguro", "author": "Berto Tabares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwbmNiVmdRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Experiencia exquisita en su restaurante, la comida con unos contrastes de sabores brutales y sus camareros muy amables, explicando cada plato y con una atención muy rápida y sin faltar ningún detalle. Repetiremos, pedimos pan bao de cochino negro canario muy sabroso, gyosas con un sabor brutal, zamburiñas cocinadas con una salsa de ajo espectacular que la fundían en directo, piruletas de langostino crujiente con queso de cabra muy buenas, cangrejo rebozado con huevo y pimientos una delicia. Para terminar un postre de tarta de queso no llegaba a ser cremosa. Acompañado con dos cañas y una botella de vino Rubicon de Lanzarote, nos quedó muchos platos por probar , volveremos.", "author": "Yurena Morales Verona", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwMV8tbkRnEAE", "timestamp": "2 years ago"}, {"text": "Ubicación buena. Trato del personal excelente. Producto de calidad. Cantidad de media a poca pero con muy buen sabor. Los platos un domingo para almorzar, salían lentos para nuestro gusto, las copas de vinos se consumían prueba de ello. Para mi gusto y por las cantidades, diría q mejor les cenar. Mucha suerte para este negocio que lo merece", "author": "Edu Padrón", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCazd2VU53EAE", "timestamp": "3 years ago"}, {"text": "Cada plato iba in crescendo. De entrantes, ensaladilla qué nos emplataron con delicadeza, unas Gyozas y garbanzada, acompañado de un buen vino.\\nPara culminar un cachopo que estaba riquísimo. De postre fiesta de chocolate.\\nEl servicio profesional y buen ambiente.\\nNos mimaron mucho.", "author": "DJ L’ARTIGAS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfd3Z1QnZnRRAB", "timestamp": "a year ago"}, {"text": "Buen restaurante, situado cerca del paseo de las canteras con un género magnífico. La comida ha superado la expectativa con una muy buena fusión en los platos y una sensación de explosión de sabores. El equipo completo del restaurante han sido unos profesionales. Nos hemos sentido muy a gusto.\\n\\nCumpliendo en todo momento las medidas covid.", "author": "Belen Benitez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXeUxLaTlnRRAB", "timestamp": "3 years ago"}, {"text": "Sencillamente el mejor restaurante que he visitado en mi estancia en Gran Canaria. Os voy a explicar en la medida de lo posible la grata experiencia que nos llevamos mi pareja y yo en este brillante lugar Gastronómico. En el Accueil nos recibió el chef, el cual nos acompañó a la mesa, gesto desde mi parecer muy apreciable. Seguidamente nos atendió Moisés un afable profesional del servicio en sala, nos explicó las sugestiones que había fuera de la carta y sin duda hizo de nuestra experiencia muy enriquecedora. Hablaré de los deliciosos manjares que me lleve a la boca, en primer lugar pedimos un tartar de salmón con un marinado especial del chef acompañado de una espuma de mango y cebolla fresca, una mezcla de sabores que siguiendo las instrucciones de Moisés deleitamos sin duda alguna. Seguimos con un mix de gyozas de cangrejo desmenuzado con soja y de morcón ibérico, setas y crema de kimichi ahumada y terminamos con un cachopo rebozado com panko que simplemente increíble. De postre una Torroja casera y una tarta de queso también casera con un sorbete de mango que nos termino de hacer explotar la cabeza. Hizo varios acabados de platos a la vista del cliente cosa que hoy en día solo se ve en los mejores establecimientos de restauración. La experiencia fue magnífica, les ánimo a que sigan ellos y su equipo ofreciendo este tipo de experiencias gastronómicas a sus clientes porque de verdad se nota que aman su profesión y eso es maravilloso.\\nA continuación adjunto alguna foto de los platos servidos.", "author": "Igor Rosell", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaX00zbDhBRRAB", "timestamp": "2 years ago"}, {"text": "Espectacular descubrimiento, y las siguientes visitas han mantenido el nivel.\\nPlatos variados y muy elaborados, al que le guste el vino lo tendrá difícil para elegir entre tanta variedad. El jamón ibérico espectacular. El servicio al nivel del restaurante.\\nUn acierto y felicitar a la dirección.", "author": "yonathan García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xRek9GOW1OMGRKVGtoUlduTktSbmhPVTIxNGFGRRAB", "timestamp": "3 months ago"}, {"text": "Espectacular, para repetir sin dudarlo. Fuimos a comer siguiendo las reseñas de Google, y la verdad que ha sido el restaurante en el que mejor hemos comido de toda la isla, acierto absoluto. Nos explicaron cada plato. Para repetir: las zamburiñas, la ensalada de burrata con fresas, el solomillo y el hojaldre con plátano 🤤 Muchas gracias!", "author": "Andrea Urbano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tOWlJFZEtNVnAyWXpNMmVIUmhVR1JKUVZwVFpsRRAB", "timestamp": "3 months ago"}, {"text": "Fuimos a comer 4 personas y pedimos: croquetas variadas, pan bao con carne de cochino negro y un cachopo para los 4. Muy rica toda la comida y excelente calidad precio. Trato del servicio muy bueno. Totalmente recomendable, repetiremos seguro.", "author": "Alejandro Bolaños Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNeWlrOEd1MXRfUFR3EAE", "timestamp": "8 months ago"}, {"text": "Ich besuche das Restaurant seit mehreren Jahren und es ist einfach perfekt!\\nUmbedingt vorher reservieren da kleines Lokal und sehr beliebt, ein muss, wenn man in las palmas ist!\\n50 Meter von der Strandpromenade gibt parkhäuser in der nähe", "author": "Dani Berardi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRenMzb3RRRRAB", "timestamp": "10 months ago"}, {"text": "Me animaron a visitar este restaurante las magnificas reseñas que leí en Internet, porque no conozco demasiado la zona, y con muchas ganas de probar su cocina, pero mi experiencia no fue la esperada. Pese a que decidimos pedir de la carta, a mi esposa le ofrecieron fuera de carta un pescado de la zona (cogote de cherne), que aceptó pensando que sería el plato de la noche, pero acabó siendo el plato que nos dio la noche: llegó entero, sin ningún tipo de salsa ni aliño, simplemente cocido y como sola guarnición un puñado de patatas fritas de bolsa puestas a un lado. Como el pescado sobresalía del plato, el camarero le preguntó si lo limpiaba, obviamente dijimos que si y se lo dejó deshecho totalmente en dos platos. El resultado, un plato que debía ser una exquisitez convertido en algo decepcionante teniendo en cuenta que costaba 27,95€. El resto de platos que pedimos, el tartar de salmón, las costillas de Nakama y el cerdo ibérico arreglaron un poco, sólo un poco, la noche. La atención recibida fue muy regular en general, en un ambiente tenso y poco agradable, aunque destaco que solo uno de los camareros, un muchacho joven que nos atendió al final, fue educado y atento en el trato. El disgusto fue tal que preferimos no pedir ni postre. Ojalá puedan mejorar tanto la calidad de los platos como el servicio, porque el lugar tiene potencial y una buena ubicación. Por supuesto buscaremos mejores alternativas", "author": "Manuel Barrachina", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pGbGJWZFFXSE16WkVGSmJrMVpOMXAyY1ZGWVQwRRAB", "timestamp": "2 months ago"}, {"text": "02/02/2024: Indispensable, autóctono , no turístico…y toda una sorpresa! A 50m de la Playa de Las Canteras local modesto pero con servicio y material prima muy por encima de los estándares de la zona. Tengo la impresión que van a por un reconocimiento Bid Gourmand o una Estrella Michelin. Lo recomiendo y seguro que vuelvo. (Imágenes: Jamón cortado a cuchillo, huevos rotos con carabineros, gyozas de morcón, steak tartar al gusto, torrija) Un gran detalle el de cantar los platos fuera de carta también mencionando el precio, muchas gracias!!", "author": "Jaime Pulido", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0dV9iOThRRRAB", "timestamp": "a year ago"}, {"text": "Absolut 5 Sterne!!! (...auch gerne mehr wenn's möglich wäre!)\\nDie Wahl auf dieses Restaurant traf ich nach einer der vorherigen Rezensionen, die war sehr viel versprechend, und es war auch so!\\nWir sind spontan, an unserem letzten Urlaubstag in dieses Teil von Las Palma gefahren auch mit dem Gedanken bei Ricón de Tirana zu speisen, (eine Reservierung hatten wir nicht), und es hat aber doch geklappt, wir bekamen wohl den vorletzten Tisch für 2.\\nDas Ambiente ist sehr nett und mit Klasse, nette Begrüßung und wurden zum Tisch begleitet. Nur sehr kurz gewartet bis der Kellner nach Getränken fragte, danach nette Hilfestellung bei der Auswahl der Speisen, es gibt die Speisekarte in Spanisch, Englisch, und Französisch. aber mit Hilfe des Kellners war es kein Problem die richtige Wahl zu treffen. Das Essen war wirklich vorzüglich, wir hatten eine Vorspeise mit Gambas und Kichererbsen, und als Hauptgericht 2 mal Fleisch, beides perfekt wie gewünscht zubereitet, dazu Salat und frittierte Kartoffelstücke, zum Nachtisch hat der \\"Platz\\" nur für ein Kaffee Cortaddo Leche Leche gereicht!\\nSuper satt, und sehr zufrieden!!\\nDanke, wir werden es gerne weiterempfehlen!!", "author": "Thomas R", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoeTVuVUFREAE", "timestamp": "2 years ago"}, {"text": "Una cena estupenda. Al lado de la playa de las Canteras, encontramos este restaurante que no tiene nada de turístico. Menaje excelente, servicio de 10 y la comida perfecta. Aconsejadas por el camarero, pedimos huevos con patatas y carabineros, y empanadas de ternera lechal, ambos fuera de carta. Las gyozas y el ladrillo de berenjena, buenísimas. Todo para compartir y emplazado individualmente. 3 cañas grandes, bien tiradas, un vino de rioja, pan, todo ello por menos de 85€. Me pareció genial de precio para esa calidad tan buena.\\nSin duda muy recomendable y para repetir", "author": "G. L.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqOVBLUXhRRRAB", "timestamp": "Edited a year ago"}, {"text": "Algo diferente en pleno paseo de Las Canteras. No recuerdo la procedencia del Jamón Ibérico, la foto no hace justicia a su increíble sabor. Muy buenos productos. Personal amable, explican bien los platos y local con encanto. Si quieres sorprender y que se salga fuera de lo normal, es tu sitio.", "author": "Sandra Zafra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXN0xtV1hBEAE", "timestamp": "3 years ago"}, {"text": "No te lo puedes perder! Cuando pensaba que había probado lo mejor… llegaron los postres!\\nEnhorabuena.\\nAtención impecable, relación calidad/precio más que razonable.\\nMe encanta que haya sitios donde se cuidan los detalles.\\nVolveremos seguro!", "author": "Raquel Herran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNGczRTdFpBEAE", "timestamp": "2 years ago"}, {"text": "Parece ser, que nuestras opiniones, de los que colaboramos aportando nuestras reseñas, no estamos tan equivocados. Magnifica atención y amabilidad, como viene siendo la costumbre en toda la isla. Y muy buena comida y de calidad. Gyozas de changurro, aunque la forma no era la habitual de unas Gyozas..jamón ibérico de nivel, bacalao en tempura...CON BACALAO y muy bueno, y Bife de ternera..y un postre delicioso....perfecto todo.", "author": "CARLOS GUIRADO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaN2J6V19BRRAB", "timestamp": "2 years ago"}, {"text": "Allez-y les yeux fermés, ce restaurant est une véritable pépite !\\nLa nourriture est excellente du début à la fin : nous avons commencé par un jambon ibérique savoureux, suivi d’un poulpe grillé parfaitement cuit et d’un steak Black Angus tendre et goûteux. En dessert, nous nous sommes régalés avec un millefeuille à la banane (incroyable !) et une spécialité locale proche d’une crêpe, servie avec une boule de glace, un vrai délice. Le tout était accompagné de deux demi-bouteilles de vin, qui se mariaient parfaitement aux plats.\\nLes serveurs, étaient très attentifs et souriants.\\nEt pour couronner le tout, le digestif nous a été offert au moment de l’addition : un rhum au miel, présenté par le serveur comme de la “vitamine” — généreux, convivial et délicieux !\\nUn restaurant qui allie qualité des plats, service impeccable et ambiance chaleureuse. Nous recommandons sans hésiter !", "author": "Shirley Fatela", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1QlUyVnpOa2hSUjBVeE1XSnZaRFkxYTNoRFYwRRAB", "timestamp": "5 months ago"}, {"text": "Todo perfecto, presentan los platos en la mesa y terminan de prepararlos delante de los comensales. Todo esta cuidado al detalle. Decoración bonita, buen vino y productos de calidad. Uno de los mejores restaurantes de la zona. El personal es muy amable.", "author": "Mónica Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSa18ydkF3EAE", "timestamp": "2 years ago"}, {"text": "Hoy hemos cenado en este restaurante y nos ha encantado. Pedimos croquetas de jamón, bao de pulpo y cochino negro, huevos rotos con gulas y langostinos y gyozas. El postre era de manzana y helado. Volveremos para probar los platos que nos quedaron sin duda. El personal muy atento, de 10.", "author": "Grima", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4M05XSmxRRRAB", "timestamp": "2 years ago"}, {"text": "Voy muchas veces por cercanía, pero sobre todo, porque nunca fallan. Ambiente familiar, cercano, siempre recomendándote lo mejor. Fuera de carta siempre como opciones del día. Y los postres , deliciosos. La costilla a baja temperatura, los huevos estrellados…", "author": "Guadalupe Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKR1ZwNk8yeUlfN2pnRRAB", "timestamp": "8 months ago"}, {"text": "Ambiente agradable y servicio excelente. Te explican con detalle la elaboración de los platos y su origen. Pedimos guacamole y lo elaboraron delante nuestro. Sin duda si volvemos a Las Palmas repetiremos. Relación calidad precio correcta.", "author": "Mercè Reñé Panadés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPdnVHOFZREAE", "timestamp": "3 years ago"}, {"text": "Calidad en la comida, con buenas raciones.\\nBuen servicio y muy rápido,el camarero nos aconsejó muy bien y acertó.\\nPostres buenos pero poco variados.\\nBien. Para hacer otra visita.", "author": "JOSE ANTONIO LAF.", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4UGJsRmhSbTlSZFdkblJIaDZYMmxtTmw4emJHYxAB", "timestamp": "a month ago"}, {"text": "Excelente!!!!\\nEl Rincón de Triana no nos dejó indiferentes, es un restaurante muy acogedor y con un trato muy especial hacía sus clientes.\\nSu carta es variada y en sus platos se aprecia el cariño con el que los preparan.\\nPonen gran interés al tema de los alérgenos, en nuestro caso “ gluten free”.\\nEnsalada con espuma de manzana verde,Ensaladilla rusa con langostinos,Paté de secreto ibérico,Jamón ibérico de bellota,Pan bao de pulpo,Huevos estrellados con jamón ibérico,Costillas de cochino negro a baja temperatura,Steak tartar...y lo que nos queda por probar de su especial carta.\\nLa profesionalidad del personal no pasa por alto el conocimiento de la elaboración de cada uno de sus platos.\\nTampoco dudan en aconsejarte con sus vinos.\\nUna amplia carta de vinos.\\nGran calidad y gran servicio.\\n\\nSe recomienda hacer reserva, su ubicación es genial ya que está junto al paseo de Las Canteras y muy cerca del Parking Las Canteras.", "author": "Lidia Gil", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5Nk42WGJREAE", "timestamp": "Edited 9 months ago"}, {"text": "Almorzamos allí el uno de enero, estaba muy lleno, y aun así, el servicio fue estupendo. La comida nos encantó. Recomendable", "author": "Carmen Muñiz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWRE5VTk1TRkJrT0VoRlkzZFViR2xVWDJaRFFVRRAB", "timestamp": "a week ago"}, {"text": "Klein und eher versteckt liegt das Rinćon de Triana in einer Seitengasse an der\\nPromenade von Las Palmas. Der Service sowie das Essen verdienen mehr als 5 Sterne.\\nDie Bedienung war sehr nett und freundlich! Die Getränke waren innerhalb weniger Minuten da und uns wurde sehr kompetent ein Wein empfohlen der zu unseren jeweiligen Gerichten sehr gut gepasst hat und der unseren Geschmack sehr gut getroffen hat. Die verschiedenen Aromen der Gerichte haben uns verzaubert und das Essen war einfach ein Traum! Dieses kleine Restaurant ist auf jedenfalls ein Besuch wert!", "author": "Lisa John", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwbk1EMzVnRRAB", "timestamp": "2 years ago"}, {"text": "Caímos de rebote sin tenerlo previsto y salimos francamente contentos. El local tiene una decoración excelente y el servicio es atento y eficiente. La carta no es muy extensa pero suficiente. Los platos tienen una presentación muy lograda. La ensaladilla muy vistosa pero quizás lo más flojo de lo que pedimos. El bacalao en tempura muy logrado y sabroso. El solomillo ibérico una pena que lo sirvieran un poco frío porque perdió mucho sabor y los medallones quedaron algo duros. Y los postres un deleite en especial la fiesta de chocolate. Agradable sorpresa este restaurante donde sin duda repetiremos.", "author": "Rafael Morales", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwcjY2WE1nEAE", "timestamp": "2 years ago"}, {"text": "Muy gratamente sorprendidos por este rincon en Las Canteras. Nos encantaron las Zamburiñas, el jamon y el camarón soldado de Mogan. La sama se les paso un poco y quedo un poco seca pero nada que no pueda arreglar un chorro de un buen aceite de oliva. Ademas tienen una excelente carta de vinos y buenas copas con las que acompañarlos. De postre una buena torrija casera.", "author": "Vic O", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2bTZTS1RnEAE", "timestamp": "a year ago"}, {"text": "Tässä on Canterasin yksi parhaimmista ravintoloista. Zamburinjat liekitettiin hienosti. Mielenkiintoisia alku- ja välipaloja. Monia aterianosia kannattaa ottaa jaettavaksi. Erittäin hyvä viinilista. Vahva suositus.", "author": "Jukka Vuorinen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRLXZpZDV3RRAB", "timestamp": "10 months ago"}, {"text": "Recomendable la garbanzada y las carrilleras. Buena carta de vinos a buen precio. La comida está bastante bien aunque el plato de croquetas me decepcionó bastante por la cantidad y el precio que tiene, eso sí, de sabor muy buenas.", "author": "Iván S.H.", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0b3VYU2d3RRAB", "timestamp": "a year ago"}, {"text": "Spontanes Mittagessen zu zweit. Freundlich wurde ein Platz angeboten. Alle Speisen waren geschmacklich sehr gut, ebenso der Service.\\nAllerdings hätte ich etwas sättigendere Beilagen mir gewünscht.\\nSelbstgemachte Chips (vermutlich Topinambur) waren sehr gut. Zum Filet gab es ebenfalls feine frittierte Späne.\\nEinziger Wermutstropfen waren die sehr einfachen Aufbackbrötchen mit Aioli (Gruß der Küche), die zu je 1,50€ ohne Nachfrage berechnet werden. Für diese 3€ wäre eine Portion Kartoffeln zu den Gerichten passender gewesen.", "author": "André ScyFy", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURUbGNua0RREAE", "timestamp": "a year ago"}, {"text": "Buena opción si estás por la zona de Las Canteras.\\nComo puntos de mejora, dentro del comedor no había cobertura y te sirven y cobran el pan sin preguntar.", "author": "María García Álvarez de Sotomayor", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNneHFieXNBRRAB", "timestamp": "11 months ago"}, {"text": "Comida espectacular con un trato de nivel. El cochino nakama estaba brutal. No hacía falta ni cuchillo. El guacamole hecho al momento por el camarero un detallazo. La ensalidilla rusa estaba buenísima. La torrija muy muy rica y una gran porción.", "author": "Carlos Guerra", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXbm96ZG5RRRAB", "timestamp": "3 years ago"}, {"text": "Das Essen ist von unglaublich guter Qualität und, im Gegensatz zu den meisten anderen Restaurants, sind die Gerichte in einer Originalität wie man sie selten findet hier.\\n\\nAbsolute Empfehlung für ein kulinarisches Erlebnis das msn nicht so schnell vergisst!", "author": "Martin", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNveXF5MUp3EAE", "timestamp": "9 months ago"}, {"text": "Buen restaurante. Gran servicio y atención por parte de todos los camareros. La comida estaba rica y bien de precio, por poner una pega, los baos un poco secos. Es una buena opción si quieres comer en la playa de las canteras.\\nVolveremos.", "author": "Julio Alberto Murillo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4NjRySlRREAE", "timestamp": "2 years ago"}, {"text": "Llegamos a este Rincon de las Palmas recomendado por una amiga, la experiencia fue increíble desde el primer momento, camareros muy simpáticos y siempre pendientes de nosotros, la comida simplemente espectacular, repetiremos cada vez que viajemos a las Palmas y sin ninguna duda lo recomendaremos a todos nuestros amigos. Fantástica experiencia gastronómica.", "author": "Rafael Serrano nuñez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtanRfSlJREAE", "timestamp": "3 years ago"}, {"text": "Esta vez hemos ido para comida de navidad de grupo. Puedo decir que los responsables del negocio están muy pendientes de todo: serios, formales, amables y honestos con la relación calidad precio. Pedimos un cambio de vino del menú y nos dieron máximas facilidades. Una persona del grupo celiaca tuvo también una atención especial. La comida no parece de menú, esto es raro hoy día. Tomamos jamón ibérico, ensaladilla, cachopo, y otros platos que no recuerdo. De los 24 que fuimos es unánime que la comida estuvo muy rica. Gracias!!", "author": "Antonio N.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzbnJDdmR3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Llegamos sobre las cuatro al restaurante y nos acogieron estupendamente, desde el minuto uno la atención fue excepcional, la comida estaba exquisita y el postre llamado Fiesta de Chocolate era una explosión de sabor en la boca. Sin duda uno de los mejores restaurantes de Gran Canarias.\\nRecomendable 100%", "author": "Shaylor5", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pSeVpYaFpiRXhtVG5ONVdUQk1WakV0ZDJkQmRrRRAB", "timestamp": "5 months ago"}, {"text": "El servicio y la comida son excepcionales, tienen menús para grupo pero también puedes pedir a la carta en caso de no saber que pedir te aconsejan, el personal es muy simpático y amable, sin duda es un sitio para volver y recomendar.", "author": "Amrit Balani", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKUldVWkZja1JDV0ZaelZHb3dOa3BzY1ROVldIYxAB", "timestamp": "a week ago"}, {"text": "Cada plato es una explosión de sabores. La atención del personal es exquisita, explicándote cada plato que sirven. Especial mención a Jesús, que derrocha amabilidad, profesionalidad y simpatía. Precios bajos para la calidad de comida que ofrecen y rapidez en el servicio. Increible restaurante en todos los aspectos. Vinimos desde Fuerteventura el fin de semana y volveremos!", "author": "Iván R.L.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kek9HZGlTSFZWWlRWaVN6SndVMGhhV0cxaE1rRRAB", "timestamp": "4 months ago"}, {"text": "Muy buena calidad de todos los platos, hemos ido muchas veces y siempre salimos encantados. El trato además es muy amable.", "author": "Alvaro Ricote", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoT2QzTmxUekJGTmtNMFYzQTNjelpXVW5KNE1WRRAB", "timestamp": "2 months ago"}, {"text": "El lugar nos pareció acogedor. Por lo general, la comida estaba bastante buena. El problema vino en la espera. Tardamos mucho en que el servicio terminase: teniamos que avisar para que nos retiraran los platos sucios y pedir. De hecho nos fuimos sin probar ningún postre.", "author": "S CC", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pWUU5WcEVXbFpWVm10dldFdE9Wa1JaWDJOUFowRRAB", "timestamp": "5 months ago"}, {"text": "Ich hatte das Vergnügen, in diesem Restaurant ein Black Angus-Steak zum Mittagessen zu genießen, und ich kann es kaum in Worte fassen, wie lecker es war! Das Fleisch war perfekt zubereitet, zart und saftig, und der Geschmack war einfach unglaublich.\\n\\nAber nicht nur das Essen hat meine Erwartungen übertroffen. Der Service des Kellners war hervorragend. Er war aufmerksam, höflich und stand jederzeit bereit, um sicherzustellen, dass mein Mittagessen ein echtes kulinarisches Erlebnis wurde.\\n\\nInsgesamt war mein Mittagessen in diesem Restaurant fantastisch, und ich kann es nur wärmstens empfehlen. Wenn Sie auf der Suche nach köstlichem Essen und erstklassigem Service sind, dann sind Sie hier genau richtig!", "author": "Dominik", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaM0pIeThBRRAB", "timestamp": "2 years ago"}, {"text": "Wir können es nur weiterempfehlen. Das Essen war hervorragend und der Service super.Alles war perfekt.Danke für den tollen letzen Abend in Las Palmas.", "author": "Nadine R.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxa2NIajBnRRAB", "timestamp": "2 years ago"}, {"text": "Es un rincón muy acogedor, con el servicio de personal cálido y profeciinal. Los platos que he probado son deliciosos y creativos. Amplia carta de vinos y postres muy ricos. Sin duda ninguna volveré a disfrutar esta experiencia.", "author": "Anzhela Svyatenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDeFlUakVREAE", "timestamp": "5 years ago"}, {"text": "Wir sind auf Grund der vielen guten Bewertungen eingekehrt. Leider hat uns die Qualität der Speisen so gar nicht überzeugen können. Vielleicht lag es daran das es Sonntag Abend war oder daran, dass der Koch frei hatte. Keine der Speisen war frisch zubereitet, alles wirkte aufgetaut und aufgewärmt.", "author": "Thoralf Schade", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzOHNQMTJ3RRAB", "timestamp": "a year ago"}, {"text": "Wir waren zum ersten Mal da. Kleine Speisekarte?Großer Geschmack! Ensalada con espuma de manzana und das Iberico Schwein waren ein Gedicht! Freundliche und sympathische Mitarbeiter. Ein schönes Ambiente. Preis- Leistungsverhältnis ist in Ordnung", "author": "Gregor Vaas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQdE82TC1BRRAB", "timestamp": "a year ago"}, {"text": "Etwas versteckt in einer Seitenstraße an der Strandpromenade liegt das Rincón de Triana. Gegenüber den meisten, eher touristisch ausgerichteten, Restaurants in dem Gebiet findet man dort wirkliche Gaumenfreuden zum fairen Preis. Kleine Karte, aber exquisite Küche, gute Weine und einen aufmerksamen und kompetenten Service.", "author": "Hans-Joachim Hauschild", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSd2ZuYXN3RRAB", "timestamp": "2 years ago"}, {"text": "Los camareros fueron muy amables y la explicación de los platos era muy extensa, pero la comida bastante normal, diría q lo más sorprendente que probamos fueron las gyozas, y el ladrillo de berenjena con miel y pasta filo.\\nEnsaladilla rusa, huevos rotos con gulas y salmón a la parrilla más q normales.\\nPrecio algo elevado.", "author": "Sergio Olivar", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhMHQ3andnRRAB", "timestamp": "4 years ago"}, {"text": "Ha sido un descubrimiento de la zona muy grato. Todos los platos fueron muy correctos y muy bien elaborados, mucho sabor. No le doy 5 estrellas porque pienso que unos huevos vegetarianos deberían tener algo más que papas, champiñones y huevos, por lo demás genial.", "author": "Alba García Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDem9fZXFnRRAB", "timestamp": "5 years ago"}, {"text": "Buen servicio aunque fuese un grupo grande, amables y muy atentos.\\nLa comida buenísima, muy recomendables las gyozas y los baos, algo escaso si tienes mucho apetito pero así tienes oportunidad de probar más platos porque todo lo que probamos estaba muy bien.\\nCasi en pleno paseo de las canteras.\\nNo pude adjuntar más fotos porque estaba tan bueno que según llegaba comíamos ;)", "author": "Javifer Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGNjdtVDJnRRAB", "timestamp": "2 years ago"}, {"text": "Última noche en las Palmas por este año y venimos a probar este restaurante ,menos mal que reservamos ,no es para venir con prisas ,pero mejor porque asi te da tiempo a ir deguatando los platos, los camareros te dan todas las explicaciones para una buena elección, de primeros ensaladilla rusa, muy rica pero jistita, croquetas buena cantidad y muy buen sabor, y pedimos un par de zamburiñas por cabeza flambeadas, bien, algo diferwnte.De platos fuertes una presa a la brasa ,un pelin seca de más y templada , y pata de cochinillo cocida a baja temperatura ,muy bien de textura pero para niestro gusto con demasiadas hierbas ,de postre torrija muy rica pero el caramelo flojillo ,se ve muy industrial.Relación calidad / precio un pelin caro.", "author": "Miki Louro", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGMVppamRBEAE", "timestamp": "2 years ago"}, {"text": "Fuimos ayer y nos encantó. Comimos Rejo de Pulpo, Gyozas y Ladrillo de berenjena. Todo delicioso con sabores intensos. Hoy repetimos. Muy recomendable", "author": "Paquita Hermosilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkbXRQVi1BRRAB", "timestamp": "a year ago"}, {"text": "Simplemente espectacular,un sitio que recomiendo visitarlo,la comida una delicia desde el primer plato hasta el postre,la mejor tarta de queso que eh probado en mi vida!! La atención espectacular,en especial un camarero llamado Luis ,un atendimiento genial ,siempre pendiente a todo y una relación calidad precio que vale mucho la pena,volveré sin duda,encantadisima☺️☺️", "author": "Emma Zerpa Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYMDlteFJnEAE", "timestamp": "a year ago"}, {"text": "En primer lugar felicitar a todo el equipo humano del rincón de Triana por su excelente atención y no menos profesionalidad. Grandioso ambiente de cordialidad y atención continua. Que comentar de la carta, solo tengo un calificativo, EXCELENTE. Invitaros a continuar con vuestra dedicación y excelente gastronomía. MUCHAS FELICIDADES.", "author": "Orlando luz gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPOTZHQVNBEAE", "timestamp": "3 years ago"}, {"text": "Leider kann ich nur 5 Sterne geben... Es war eine spontane Entscheidung in dieses wunderschönen kleinen laden in der SeitenStraße essen... Bedienung vom Fach..hat uns alles auf englisch erklären können auch wenn wir etwas nicht verstanden haben wurde geholfen... Wir haben n Deutschland nirgends so gutes Schweinefleisch gegessen und selten so gutes Rinder Filet..Wir haben gleich wieder für den Folge Tag einen Tisch reserviert...Der Nachtisch... Flowerpott...Leute Leute..sowas schönes habe ich noch nie gegessen...ein Traum von Vanille...Die Schokolade... Ja man könnte denken was stimmt denn nicht mit dem Typ,beim Lesen 😅 aber ich bin ehrlich und glücklich nach diesem wunderbaren essen. Preislich 😂😂 zu günstig.. @rincón de triana dürft ihr gerne erhöhen das ist es wert.wir freuen uns auf morgen abend ❤️LG Tim", "author": "Mit Lage", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoazh6V2ZBEAE", "timestamp": "2 years ago"}, {"text": "Kleines aber ausgezeichnetes Restaurant mit gehobenem, sehr freundlichen, Service. Nur ein wenig abseits der Avenida! Wirklich sehr leckeres und sehr gut zubereitetes Essen. Da waren wir nicht zum letzten Mal!!!", "author": "Andreas Eitelbach", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214a1RXd3hTMnhRYzBKb1ZUTjRNMmN3ZEVWcVJIYxAB", "timestamp": "3 months ago"}, {"text": "Todo lo que comimos los dos días de nuestras vacaciones fue riquísimo, las giozas, las zamburiñas, el timbal, el cabrito y los postres, todo espectacular. Buen servicio. Nos lo recomendaron y fue un acierto. La única pega, el local no tiene mucho encanto.", "author": "Cristina G", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21wdGVYRXhaV3RpYlV0MFpYQnZkbXcyUkRsWFQwRRAB", "timestamp": "4 months ago"}, {"text": "Comida muy rica. Exquisita. El trato un 10. Muy atentos. Muy acogedor. Y repetiremos sin duda. Un 10.", "author": "Marta Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWei12cFJREAE", "timestamp": "2 years ago"}, {"text": "Gran descubrimiento.\\n\\nComida deliciosa, raciones generosas, trato espectacular.\\n\\nAdemás, está genial la relación calidad-precio.\\n\\nDeseando volver.", "author": "Leticia Marrero Juan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1dWZhT2FnEAE", "timestamp": "3 years ago"}, {"text": "El restaurante nos pareció un lugar muy encantador empezando por sus camarero y propietario donde en todo momento aconsejan e informan de cada uno de los platos. En unos de los platos de la foto Merluza con salsa de trufa y papas peruanas fue un auténtico manjar en una mezcla de sabores. Y de postre como en la foto Torrijas caseras muy buenas,que sin duda volveremos a repetir.", "author": "icewallace3", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtcjZPR1dBEAE", "timestamp": "3 years ago"}, {"text": "Me gusta comer sabroso sin importar cuánto voy a pagar , creo que el comer bien es una de las cosas que te llevas en la vida.\\nEl Rincón de Triana es un lugar que con sus mezclas de sabores hacen que en tu paladar sientas una explosión 💥\\nSi vienes a Las Palmas de Gran Canarias visita este restaurante, no te lo pierdas…😁🤤😋😋😋", "author": "maria lisset suarez flores", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcV9HVzd3RRAB", "timestamp": "3 years ago"}, {"text": "Authentische Restauration, exzellente Speisen, ein großartiger Genuss. Jakobsmuscheln flambiert, Solomillo zart mit crema delicioso. Ein guter Wein dazu, perfekt.", "author": "Kai Schlegtendal (chief_ehrenfeld)", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxLVpLWVBBEAE", "timestamp": "2 years ago"}, {"text": "Una experiencia excelente de principio a fin. La atención fue impecable, y queremos hacer una mención muy especial a Roberto, nuestro camarero, quien nos atendió con una amabilidad y profesionalismo excepcionales. Su atención al detalle y su trato cercano marcaron la diferencia en nuestra visita.\\n\\nQueremos también agradecer muy especialmente el gesto con la mantequilla de plátano donada para las Fuerzas Armadas. Un detalle que habla no solo de la calidad del lugar, sino también de los valores humanos que lo respaldan. ¡Gracias por una experiencia tan grata y significativa!\\n\\nVolveremos sin duda.", "author": "Jero Vera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VMU3h4WXJBemZlU0dnEAE", "timestamp": "7 months ago"}, {"text": "Trato y comida exquisita. Nos encantó todo lo que pedimos. Un lugar al que volver a ir en la isla.", "author": "Izaskun Pizarro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2aHYya1RREAE", "timestamp": "a year ago"}, {"text": "Comida muy buena y buen trato. Muy recomendable, en todo momento te explica la elaboración del plato. Servicio excelente", "author": "Juan Carlos Millon Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtbThqQ3FnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Un trato excelente en el especial al profesional que nos atendió ( Uber). La comida riquísima.", "author": "marian diaz borges", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tGUmVraHlWalZXWW5oZmQxWlJRM3BhU1dSbE9VRRAB", "timestamp": "a week ago"}, {"text": "Fantastiskt god mat! Jag åt griskind och min man åt ryggbiff och vi var båda väldigt nöjda. Maten får 5/5, trevlig personal, ett litet minus för lokalen - som kunde varit helt okej om man justerat belysningen och satt ljus på borden.", "author": "Lotta Book", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURROWNYNWhBRRAB", "timestamp": "10 months ago"}, {"text": "Excelente servicio\\nComida con sabores y sensaciones muy cuidados\\nFELICIDADES", "author": "PJ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLbmF5X3JLcTczdlZ3EAE", "timestamp": "7 months ago"}, {"text": "Comida variada y rica, buena cerveza sin filtrar. Está bien ubicado en una calle perpendicular justo al lado de las canteras. Tiene todo lo que uno se espera cuando vas a una cena en grupo. El cachopo estaba rico y abundante, con buen jamón, quizá estaba un pelin seco por ponerle un pero.", "author": "OSCAR FERNÁNDEZ LÓPEZ", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGMkxpTl93RRAB", "timestamp": "2 years ago"}, {"text": "Fuimos a Canarias este verano mi chico y yo y este restaurante fue un maravilloso descubrimiento. Cada plato sorprende más que el anterior, desde el bao de pulpo, pasando por el cangrejo de concha blanda, las gyozas...\\nTienen las mejores zamburiñas que he probado en mi vida y ve probado muchisimas. De cinco dias que estuvimos en la isla fuimos a cenar alli tres seguidos y ya lo estamos echando de menos. Absolutamente profesionales, se nota cuando se pone cariño en lo que se trabaja ¡Seguid asi!", "author": "Pilar Vioque", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtOHR5T0xnEAE", "timestamp": "3 years ago"}, {"text": "Restaurante a pie de la Playa de Las Canteras. Local acogedor, bonita decoración. Destacar la atención del personal y el\\nSabor exquisito de los platos lo hacen un lugar para repetir.", "author": "Cathaysa Betancor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtMHQtSjZBRRAB", "timestamp": "3 years ago"}, {"text": "Nos ha encantado. Los camareros son súper amables y muy buen servicio.", "author": "cloticloti gr", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25sRmFqZFRRazVJTTJaZmJWcFdXWFJqV0d4TmMzYxAB", "timestamp": "2 weeks ago"}, {"text": "Excelente, en todos los sentidos.\\nRelación calidad precio inmejorable. Hacia tiempo que no disfrutaba tanto de una comida", "author": "Pili Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqNnVycFlnEAE", "timestamp": "a year ago"}, {"text": "Polecam. Zamówiliśmy, pierogi, hale fish, krewetki z serem kozim, bułeczke bao z wierzowina. Jedzenie smaczne, bardzo dobra obsługa!", "author": "Krzysztof Obrał", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoai1idEdnEAE", "timestamp": "2 years ago"}, {"text": "Fusión de sabor canario tradicional con exquisitez, para los que buscan una comida diferente.\\nMuy recomendable, dejarse aconsejar por Mario que te explica todo de maravilla.", "author": "Alberto Fonseca Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNGamFEbzlBRRAB", "timestamp": "2 years ago"}, {"text": "Me ha encantado, celebré ayer mi cumpleaños y salió todo genial.\\n\\nLa comida toda en su punto, recomiendo mucho el guacamole y la ensaladilla rusa.\\n\\nMuchas gracias por el trato.", "author": "leticia MM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM5NTdxLW5RRRAB", "timestamp": "a year ago"}, {"text": "Los camareros excelente atención. Todo era con reserva, lo que ocurrió es que buscaba un sitio para tomar una torrija por semana Santa, lo busqué por Google y encontré este sitio. Terminé comiendo y postre torrija, muy sabroso todo . Cuando vuelva Las palmas Gran Canarias , iré a comer ahí .", "author": "Helen Pinto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURENU9EZ25nRRAB", "timestamp": "a year ago"}, {"text": "Sehr gute gehobene Küche! Preis Leistung auch sehr gut 🙂", "author": "Lalita Kreklau", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmclByTTFRRRAB", "timestamp": "a year ago"}, {"text": "El cachopo estaba muy bueno, eso sí los servicios estaban hechos mierda , y me han enseñado que si el servicio/baño de un bar está sucio ............mmmm", "author": "Luis Medina", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkVlVuTnRPR1pVYnpKbGJVTklVREJtYUhNME1YYxAB", "timestamp": "a month ago"}, {"text": "Es war super lecker! Personal war sehr nett", "author": "Kate", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdU82dW1BRRAB", "timestamp": "10 months ago"}, {"text": "Lo busqué por Google para saber donde ir a comer con mi mujer ya que andábamos por la zona. Todo un acierto!!! Comida muy rica y servicio perfecto!!!\\nRecomendable.", "author": "Carlos Gutiérrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4d2N6WnRnRRAB", "timestamp": "2 years ago"}, {"text": "Restaurante con carta de platos muy novedosos y gran calidad. El jamón ibérico mejor cortado de la Isla Servicio excelente y amable Volveremos Saludos", "author": "diego f.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21SQ1VHb3dSMmswYld3NGRHWnRWVkV5Y1RReFdVRRAB", "timestamp": "4 months ago"}, {"text": "Wer mal was anderes essen möchte und nen Taler mehr in der Tasche hat, ist hier genau richtig. Essen war lecker und gut präsentiert, Service freundlich und nen guten Wein findet man auch. 👍", "author": "S. M.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xJNGIzQjFia2h1VW5waFpqUlpVWFJwWkROc1pGRRAB", "timestamp": "4 months ago"}, {"text": "Visita obligatoria, servicio de 10, sabor 5*\\nServicio extraordinario, comida excelente, presentación selecta, buen vino. Soy muy exigente y no encontré ni un solo fallo. Enhorabuena por esta experiencia de 10! Nuestro camarero el mejor, muy amable :D", "author": "Raquel Platero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOaTVqd1FREAE", "timestamp": "2 years ago"}, {"text": "Fijne service, heerlijke voorgerechten. Het hoofdgerecht vonden wij iets minder lekker, maar nog steeds heel goed!", "author": "Thomas Rook", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MHVUNGhRRRAB", "timestamp": "a year ago"}, {"text": "Se come estupendamente, el servicio es de 10, el local dentro es amplio y acogedor, lástima que fuera solo tengan dos mesas. No se encuentra en primera línea, aunque mejor si puedes comer fuera, ya que, te ahorras el trasiego de tanta gente", "author": "Néstor González Barreto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURldExxZ1BnEAE", "timestamp": "3 years ago"}, {"text": "De los mejores lugares de Las Palmas ahora mismo para disfrutar de la comida. Tiene una elaboración muy cuidada, el servicio es impecable y la materia prima inmejorable. Sin duda tienen que probarlo.", "author": "Carlos G Almonacid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWbjZUaWNBEAE", "timestamp": "Edited a year ago"}, {"text": "The food was very good and also served very quick. The place is also baby friendly!", "author": "Micha Westerkamp", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKNlptNUNjMmxrT0dWeFJITm1kRGw1V0hka2RrRRAB", "timestamp": "2 months ago"}, {"text": "Buen restaurante , todo lo que pidas está bueno , buena bebida y a dos pasos de la playa de las Cantera y de la zona de ambiente de Las Palmas , el jamón ibérico siempre está muy bueno, RECOMENDABLE", "author": "Adolfo Sancho", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w5bFYwNWhRMlpWZDBkUGVrRlVXR1pDZEdJNWEwRRAB", "timestamp": "3 months ago"}, {"text": "Les plats sont délicieux, cuisine maison.je recommandé le jambonneau.comida demiciosa, recomiendo el cocido ...y el personal es super agréable.", "author": "eric manise flecha roja", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNl9LX1JREAE", "timestamp": "Edited a year ago"}, {"text": "Das war leider Nix. Zum einen ist das Ambiente nicht wirklich einladend, zum anderen frage ich mich wie das Restaurant auf diese Gesamtbewertung kommt. Wir hatten als fünfköpfige Familie verschiedene Essen bestellt von Schweinefleisch, Rindfleisch,fisch bis Krabben Fleisch. Alle Menüs haben nicht geschmeckt. Das Fleisch war viel zu trocken, der Fisch ohne Gewürze hat langweilig geschmeckt, Wir haben 165 € bezahlt, was für die gebotenen Qualität völlig übertrieben ist. dann hat auch noch der Wein gekorkt. Schade, um den schönen Abend.", "author": "Jens Kammerer", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEbE1YNi13RRAB", "timestamp": "a year ago"}, {"text": "Ambiente muy tranquilo y agradable. Todos los platos estaban muy buenos.", "author": "Oti Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmLWNUeVhnEAE", "timestamp": "a year ago"}, {"text": "Ubicación privilegiada,prácticamente en el paseo de las canteras. Servicio atento y rápido,platos bonitos a la vista y sabrosos al gusto. Repetiré.", "author": "Bego Sane", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmNjlhbFB3EAE", "timestamp": "a year ago"}, {"text": "Ha sido muy buena experiencia comer en este sitio, atención al cliente fabulosa, el Jefe de cocina un trato de diez y Roberto, camarero del local, atención exquisita en todo momento. Ha sido una comida excelente. Todo los platos que hemos pedido de calidad top. Muy recomendable.", "author": "alejandro ruano", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tsTVh6ZFFWVXhZY1Zaa1VtNW9kRGgzTW5vMmNHYxAB", "timestamp": "7 months ago"}, {"text": "Muy bien restaurante con pocos platos pero todos muy buenos, servicio excelente.", "author": "Max", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21adFVsUlJkbkJsY1ROQlN6SnhUM1Z3TFhaNmNsRRAB", "timestamp": "2 months ago"}, {"text": "Incontournable si vous visitez las palmas . Restaurant a la cuisine extraordinaire, raffinée , surprenante et un personnel vraiment excellent et d une gentillesse incroyable . Une très belle expérience culinaire .", "author": "Guinet Clement", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3OXRuS21BRRAB", "timestamp": "10 months ago"}, {"text": "Overgewaardeerd, vlees bevatte veel vet en we zijn beide ziek geworden van het eten.", "author": "sandra kester van", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kNVJGZzRWa2R1Tmt0dFlsQmFiV0k1UzI5S1VuYxAB", "timestamp": "4 weeks ago"}, {"text": "Eccellente tutto dal vino al dolce! Piatti ricercati e personale competente ed attento. Consigliatissimo!!!", "author": "Gaia Concutelli", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eS0tSWZ3EAE", "timestamp": "2 years ago"}, {"text": "Ruoka oli aivan superlaadukasta, siis kaikki mitä söimme-crocetit, ravut vuohenjuustolla, sirloin, mustekala, talon jälkkäri. Viinilista erittäin kattava ja tarjoilijan valinta oli tosi hyvä. Ainoa miinus hieman kiireiset tarjoilijat jotka sukkuloivat pöytien välissä. Mutta kaikki toimi erinomaisesti. Tänne menemme uudelleen.", "author": "Timo Tuominen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzeHFlSzRRRRAB", "timestamp": "a year ago"}, {"text": "Me ha encantado la comida, preparada con mucho gusto y en cantidad no excesiva, pero suficiente. La tarta de queso exquisita.\\nNo me ha gustado que los platos que te dicen que tienen fuera de carta no te digan los precios.\\nMe ha parecido demasiado bullicioso, tal vez ese día había algunas mesas muy ruidosas, pero no podía escuchar a mí pareja del ruido que había.", "author": "Carocha", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNnOTc2a2J3EAE", "timestamp": "11 months ago"}, {"text": "Fantástico lugar, muy próximo a la playa de Las Canteras, tanto los platos, servidos y explicados con todo detalle, como la atención de todo el personal que nos atendió, de diez. Muy recomendado, y no es la primera vez que venimos. Seguimos repitiendo, ya que siempre soprende con nuevas propuestas.", "author": "Antonio Doreste Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1N0liVzlnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena comida un ambiente acogedor un buen sitio el servicio 5 🌟 les recomiendo el cachopo .", "author": "Luisbel Leyva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2MklhVUN3EAE", "timestamp": "Edited 6 months ago"}, {"text": "MARAVILLOSO SERVICIO AL COMPLETO\\nPues eso, servicio completo de 10; Desde la reserva, el recibimiento a la llegada, la atención en la mesa, comida excelente y exquisita y el precio más que bueno en calidad de producto.\\nYa son varias veces las que voy y nunca hay errores en nada.\\nLa atención en el Servicio es increíble y las recomendaciones siempre un acierto. 100% recomendable para cualquier hora.\\n\\nMis preferidos, las Gyozas de morcón y el Pan Bao de Costillas de cochino negro... a partir de ahí, ya nada puede ir mal. Pidas lo que pidas, una exquisitez.\\n\\nEl acabado de los platos (algunos) es siempre en mesa y te explican el como el cuando el donde... y el por qué.\\n\\nSin duda uno de mis restaurantes preferidos de la ciudad", "author": "I CG", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtXzRIS2pnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Hervorragendes Essen!! Eine tolle Überraschung in einer nicht sehr fancy Straße, nahe an Beach. Sehr guter Service.", "author": "Eliska Potlukova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyN0xTanBnRRAB", "timestamp": "a year ago"}, {"text": "Muy buena atención del personal .Local acogedor y variedad de postres. Calidad precio es caro", "author": "Jorge goncalves", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNaai1QSmpBRRAB", "timestamp": "2 years ago"}, {"text": "La comida exquisita y el servicio extraordinario.\\nSin duda volveremos.", "author": "Elena Garcia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3b3QzM0pBEAE", "timestamp": "a year ago"}, {"text": "Lugar que he descubierto hace poco y ya perdí la cuenta de las veces que he ido , tanto con pareja como con amigos . La calidad de la comida , la explicación previa por parte del personal y el trato del mismo es simplemente exquisito . Soy amante del turismo gastronómico y aun no he probado mejor jamón que el que trabajan en este lugar . Mi enhorabuena a todo su personal .", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtMHM3Y01REAE", "timestamp": "4 years ago"}, {"text": "Un gran restaurante, trato excepcional. El camarero te explica con mucho detalle la elaboración de cada plato.\\nTodos los platos que comimos estaban muy muy buenos. Era mi cumpleaños y me regalaron un postre y me cantaron el cumpleaños feliz. Un bonito detalle.\\nVolveremos segurisimo.", "author": "María Eugenia Laforet Ariza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOG9hcHpBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Un local agradable, platos originales y de gran calidad, personal atento, especialmente Rafa con su genial sentido del humor; repetiremos !!!", "author": "GERMÁN PÉREZ", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT201Wk5YUkVaWFJtZEdKYVVHaFBaSGR5T1hkUWMwRRAB", "timestamp": "5 months ago"}, {"text": "Todo excelente!\\nLa comida deliciosa. Se nota que los ingredientes son de excelente calidad.\\nTodo el personal muy buena atención.\\nDon Mario es muy cuidadoso de la experiencia del cliente.\\nUna joya de lugar!", "author": "agustin bartra", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xoUlREWkpXa1ZvYmt0ak5YSldPUzEzZFdaUlIzYxAB", "timestamp": "7 months ago"}, {"text": "Excelente producto y sitio muy acogedor. El personal muy profesional. Las vieras como aperitivo y los huevos estrellados con Carabineros son apuesta segura. De principal buena carne para hacer a la piedra. Carta de vinos tintos excelente. Buena relación calidad precio.", "author": "J Cab", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNncG9qVDNRRRAB", "timestamp": "11 months ago"}, {"text": "Lo primero, trato y servicio muy bueno, la comida 5 estrellas.\\nMuchas gracias", "author": "Rubén López López", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VOckNvN0dteGVlb1JBEAE", "timestamp": "7 months ago"}, {"text": "Segunda visita a este restaurante en el corazón de las canteras. Espectacular", "author": "Aristeo Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJWFNyOUxnNExiSUFnEAE", "timestamp": "8 months ago"}, {"text": "No tuvimos buena experiencia. Precio elevado para la calidad de los platos.\\nChuletillas de cabrito, duras. Tartar de atún muy picante.\\nLas gozas sí estaban buenas.\\nComimos en dos tiempos por un error. Lo siento", "author": "Manuel López", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VOamt1S3VvdHFxdXN3RRAB", "timestamp": "8 months ago"}, {"text": "Buena atención del personal y buena comida. Fui a celebrar la comida de empresa y nada que ver con otros restaurantes.", "author": "Álvaro Pérez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aMVkxWndTMHBZU3kxMVVuRXdkMHd5VTFCMmQwRRAB", "timestamp": "a month ago"}, {"text": "La comida en este lugar siempre está de diez. No he probado un plato aún que no sea delicioso.", "author": "Nacor Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMM012ci1BRRAB", "timestamp": "a year ago"}, {"text": "La atención genial, te explican los platos y te aconsejan. El problema viene a la hora de los precios. Para empezar te cobran el pan (yo lo veo horrible puesto que me lo ponen y yo ni lo he pedido ni me lo como), seguidamente me cobran un precio más elevado en los calamares por que piensan que tienen que poner unos cuantos más sin decirme nada. Finalmente me ponen gyozas donde me comentan que me añaden una más y me cobran 16,7 por 6 gyozas en total (bastante caro puesto que son pequeñas y encima las cogimos por recomendación del camarero). A mi parecer el servicio es muy bueno pero por estas cosas no repetiré puesto que parece que quieren sacarte hasta el último euro.", "author": "Sergio León Jiménez Caro", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhc011UVZBEAE", "timestamp": "4 years ago"}, {"text": "Magnífica comida y personal, muy profesionales y agradables.\\nUn lugar perfecto para pasar una agradable velada.\\nSin duda para repetir", "author": "Zaira Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydEl5ZzlBRRAB", "timestamp": "3 years ago"}, {"text": "Desde el primer momento que llamamos nos atendieron con mucha simpatía y bastante bien. En total serían unos 115€ con entrantes, una botella de vino, un plato por persona , días aguas y postre.\\nLa verdad es que los trabajos de los camareros formidable. Lo recomiendo al 100%\\nLa mantequilla de plátano espectacular.", "author": "roberto galvan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2el9PSGVnEAE", "timestamp": "a year ago"}, {"text": "El servicio buenísimo, sobresaliente, atento y cordial.\\nLa comida acorde, sobresale la costilla a baja temperatura.", "author": "Luis de Santos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4MWFtYzFRRRAB", "timestamp": "2 years ago"}, {"text": "Buen servicio, buen producto , calidad precio aceptable.\\nA mejorar: te ponen pan 🥐 sin preguntar y te lo cobran......\\nTe ofrecen una amplia oferta de platos fuera de carta y no sabes los precios.....\\nPero....muy recomendable ☺️☺️", "author": "Mom", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJbmZuSXBBRRAB", "timestamp": "9 months ago"}, {"text": "Comida muy rica, servicio excelente y muy bien ambiente. Un restaurante de 10.\\nAbsolutamente recomendable", "author": "Eduardo Ponce Maya", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoamJlTEdREAE", "timestamp": "2 years ago"}, {"text": "Comer allí es un placer, tanto por la comida tan rica como por el espectáculo alrededor de los platos. Los camareros son muy top, cuidan cada detalle a la perfección y la comida está muy rica!", "author": "Rocio Inmaculada Bañez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqcnFqT0tREAE", "timestamp": "a year ago"}, {"text": "Un restaurante q aunque no está en el mismo paseo no se lo puede perder nadie\\nSi q es verdad q no es el típico bar de tapas o un restaurante barato pero si q sirven comida de calidad\\nSi estás en esa zona. No lo dudes, ves a comer!!!", "author": "Antonia García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCUFRrZFhUVnB4TjNOTlIwVkZjSE52TVVRNFRFRRAB", "timestamp": "5 months ago"}, {"text": "Sensationeller Service , fantastisches Essen , köstliche Weine . Ein geheim Tipp in Las Palmas abseits der touristischen Lokale .\\nIch würde 6⭐️vergeben", "author": "Philipp Lawrenz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkcVBEYjFnRRAB", "timestamp": "a year ago"}, {"text": "Comida espectacular, buen trato por parte de roberto ,educado y atento ,que nos ha recomendado lo típico de gran canaria", "author": "Estefania Ferrer Llorens", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKamVuaHdjMVJqU3paT2VrdHhUWFZJUWxGdWQyYxAB", "timestamp": "5 months ago"}, {"text": "Lugar excelente!! La atención muy buena y la comida de lo mejor que he probado en mi vida... sin duda de lo mejor en la playa de las canteras!!", "author": "Vanesa Barreiro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsd3RhZlpnEAE", "timestamp": "2 years ago"}, {"text": "Revuelto de carabineros y zamburiñas de 10 ❤️❤️. Repitiendo y mejor. Nos deleitaton con un cachopo con queso cebert y jamón iberico", "author": "Juan Mari Unsain de Zuloaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR0cDZfM1NBEAE", "timestamp": "Edited a year ago"}, {"text": "Un descubrimiento, carta perfecta con un servicio impecable. Todo incita a probar.", "author": "Narci Mar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaC1DelVBEAE", "timestamp": "a year ago"}, {"text": "Höherpreisig aber gut. Essen war lecker, das Ambiente von innen nett anzusehen.", "author": "Birk Virkus", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pJMVJFSnpXbVJQY3pSQk9YVlBVSHBrZW5GRU9IYxAB", "timestamp": "4 months ago"}, {"text": "Hemos pedido guacamole, lubina, presa y tarta de queso todo riquísimo la comida de 10 y la atención excelente, muy muy recomendable", "author": "Juan Miguel Domínguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2poM1lscExZa0p0WlRobFRYYzVhRzl3U1V0NGNWRRAB", "timestamp": "4 months ago"}, {"text": "Inmejorable! El servicio estupendo, el ambiente tranquilo y la comida de 10. Pedimos bastantes platos de la carta, entrantes y principales, no sé con cuál me quedaría, pero destacar el pan bao de cochino canario y la costilla Nakama . Los postres muy ricos, especialmente la tarta de queso. Repetiré con total seguridad", "author": "Ayeisha", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNubmVpdndBRRAB", "timestamp": "a year ago"}, {"text": "Exquisita comida. Calidad precio perfecto. Pedimos croquetas de jamón, Camarones, huevos rotos con jamón ibérico, y solomillo. Una fusión de sabores excelentes,\\nEl trato de los camareros excelente . Sin duda alguna merece la pena y si tenemos oportunidad, volveremos.", "author": "yasmina reyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzaGE3bFh3EAE", "timestamp": "a year ago"}, {"text": "Exquisito, TODA la comida estaba buenísimo.\\nPedimos una ensalada con espuma de manzana, que estaba muy fresquita y buena. Zamburiñas, recomendado 100% y sus gyozas. También probamos los huevos con carabineros, que no pueden faltar y el cachopo que estaba muy bueno. Los postres también de 10.\\nLa atención y amabilidad del personas fue perfecta en todo momento. Por poner un pero, fue la espera por los postres. Pero de resto nada que decir. Volveré seguro.", "author": "Gabriel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURBc2RQVE9REAE", "timestamp": "11 months ago"}, {"text": "Fuimos de Tenerife este lunes y solo tenemos que decir que un servicio totalmente de 10, la comida exquisita. Sin duda volveremos, totalmente recomendable.", "author": "Aarón González", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FeVUxZzJUSGRqVEdoek9GZ3ROV3AwUzNOVlMxRRAB", "timestamp": "6 months ago"}, {"text": "Cuando se juntan profesionales y amantes de su profesión, da lugar a este maravilloso sitio donde la atención es de 10 la cocina es de pasión y de calidad . Sitio muy recomendable. No puedes irte de Canarias sin pasar por este restaurante. Recomendable llamar para reservar.", "author": "Adán Toribio saavedra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIajlmUUR3EAE", "timestamp": "a year ago"}, {"text": "La comida espectacular ,la presentación estaba todo excelente y el servicio un 10", "author": "Eva Signes Lopez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xWSWNUWk9aM3BvV1dkcVRsYzVOMHN5YUd0eFIxRRAB", "timestamp": "5 months ago"}, {"text": "La comida muy rica y el trato excepcional, recomendable 100%", "author": "Mari", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2twSWRUUXhUbVl0VDA5RmJtc3dRbFZUWkhGV09HYxAB", "timestamp": "4 months ago"}, {"text": "Lugar bonito y agradable.Comida elaborada y buena y buen trato a la.hora del servicio.", "author": "Jaime Pardo Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREb2QtU0RnEAE", "timestamp": "a year ago"}, {"text": "El sitio agradable. La comida, lo más importante exquisita. El personal muy amable, atento y profesional. Desde el vino hasta el último plato todo perfecto.\\nMuy recomendable.", "author": "Gontzal Diez Basurto", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfME12b2l3RRAB", "timestamp": "a year ago"}, {"text": "Comenzamos con un buen trato, servicio y ambiente. Continuamos con la bomba de sabores, donde hace de la comida una gran experiencia y les diferencia del resto, su carpaccio con helado espectacular, rejo de pulpo plato increíble que te desencaja y no puedes parar de comer y las gyozas con una explosión de sabor inigualable.", "author": "N GM", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiNXBiM1ZBEAE", "timestamp": "a year ago"}, {"text": "Platos interesantes y creativos, con mucho sabor.", "author": "Sara Ingarfield", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnTUNnNWVZZBAB", "timestamp": "11 months ago"}, {"text": "Scrivo con il profilo di mia moglie.\\nOggi il nostro buon amico Michele ci ha portato a mangiare in questo ristornate, fin dalle prime 2 portate abbiamo capito che la qualità del cibo era ottima, portate abbondanti con piatti rivisitati.\\nIl consiglio e quello di provare la maggior parte delle entrate condividendo con chi vi farà compagnia, oltre la qualità vorrei fare notare l'ottimo servizio dei camerieri di sala.\\nNel complesso e davvero un ristornate all' altezza di quelli ben nominati e molto più pagati.\\nOttimo lavoro, ci torneremo sempre quando saremo qui.", "author": "Michela Sala", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEbE5TdVRREAE", "timestamp": "a year ago"}, {"text": "Hallo Zusammen, ich muss leider dem Restaurant eine etwas durchwachsene Bewertung geben, obwohl geschmacklich das Essen durchaus gut gekocht ist. Jedoch wurden einerseits viele Gerichte mit einem Pommes Variante als Begleitung serviert und wir mussten gegen Ende unseres Restaurant Besuchs feststellen, dass unsere Weinflasche (noch zu einem Drittel voll!) einfach mitgenommen wurde, ohne höflich zu fragen, ob wir diese mitnehmen wollen. Und auch die Bezahlung gestaltete sich etwas schwierig, da keiner der Kellner verfügbar war.\\n\\nEs wäre zu wünschen, dass der Service noch etwas besser wird.", "author": "Jonas P.", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsdkx5U0xREAE", "timestamp": "2 years ago"}, {"text": "Estuvimos mi pareja y yo cenando el sábado noche y nos sorprendió para muy muy bien.\\nLa atención es impecable, los camareros super atentos en todo momento y serviciales, pero dejandote comer tranquilo y sin agobios.\\nEl local invita a que te quedes un buen rato, con muy buen gusto, todo cuidado al detalle de estilo clásico.\\nEn cuanto a la comida IMPRESIONANTE UN 10. Soy celiaca y me supieron atender de maravilla, tienen pan sin gluten que te sirven con el acompañamiento a parte para que no haya ningún tipo de contaminación cruzada, además me aconsejaron genial para poder cenar tranquila.\\nEn cuanto a los platos, todo para compartir, decidimos pedir 2 Zamburiñas cada uno, y pocas me pedi! Que delicatesen, que buenas estaban, hacia tiempo que no me comía uñas Zamburiñas tan bien hechas. Posterior nos decidimos por unos huevos rotos con jamón ibérico, que estaba perfectamente hechos, como un plato tan simple y que tienen en tantos lados se puede hacer tan bien, de verdad impresionante. Por último pedimos presa ibérica, buenísima y muy bien hecha, con su acompañamiento de papas espectaculares y pimientos del padrón.\\nCon una botella de Juan Gil etiqueta plata salimos por 80€, de verdad, merece muchísimo la pena.\\nVolveremos seguro, me quede con muchas ganas de ese guacamole casero hecho en mesa 🤤", "author": "Elisa Gris Martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNIZ3VXQzBnRRAB", "timestamp": "a year ago"}, {"text": "Fuimos porque nos habían hablado del restaurante y la verdad que fue muy muy buenoo producto de calidad y buena elaboración no pueden fallar", "author": "Fouad Elmoudden", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pkVGEzVkplbE0yVTFOd1pFSnVaVkU0ZEVJNFJIYxAB", "timestamp": "6 months ago"}, {"text": "Dieses unscheinbare Restaurant in einer Seitenstraße von der berühmten Strandpromenade Las Canterras kann ich nur empfehlen. Hier gibt es Gran Canaria Küche vom feinsten. Ich hatte ein Dreigängemenü: Vorspeise: Tartar vom roten Thunfisch, Hauptspeise: gebratenen Lachs und zum Dessert ein warmen Käsekuchen. Das Tatar war exzellent, der Lachs wurde mit einem Carpaccio aus Mango Zwiebeln, Tomaten, etc. dekorativ serviert. Schmeckte herrlich und konnte mit dem tollen Dessert abgeschlossen werden. Das Ambiente ist ein bisschen einfach und rustikal, aber der gute Service und die sehr gute Küche sind ganz klar 5 Sterne wert. Absolut empfehlenswert für Feinschmecker zu guten Preisen.", "author": "Guido Wolf", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2NHFTWXpBRRAB", "timestamp": "a year ago"}, {"text": "No puedo valorar la comida porque me han dicho que tienen la cocina cerrada una hora antes de la hora publicada en Google y a pesar de tener varias mesas sentadas aún comiendo. Son libres de escoger sus horarios, desde luego. Pero quienes utilizamos la info de Google para decidir a qué sitios vamos agradeceríamos que la mantuviesen actualizada para evitar confusiones. Ya no estamos en 2010, señorxs de la restauración!", "author": "Jota Cerrese", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNnMW95TGxnRRAB", "timestamp": "11 months ago"}, {"text": "Los camareros fabulosos y la comida riquísima. El postre, la torrija, es sublime!", "author": "Natalia Gomez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bFdGbDBURXB0VTJkMFptNXFOMUp3U2tZd1pYYxAB", "timestamp": "5 months ago"}, {"text": "Wir waren spontan zu zweit hier aufgrund der positiven Bewertungen essen und total begeistert. Sehr leckeres Essen, guter Wein, tolles Flair und guter Service. Was will man mehr?", "author": "Andre Reuber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2blBXOUJ3EAE", "timestamp": "a year ago"}, {"text": "Estuvimos cenando y estaba todo muy bueno. La atención es inmejorable y los platos que nos recomendaron, revuelto de carabineros y cachopos, estaban deliciosos. Quizá el precio algo elevado pero es cierto que es exclusivo, el local está bien pero necesitaría que diese más sensación de amplitud.", "author": "David", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNidElpNkJ3EAE", "timestamp": "a year ago"}, {"text": "Ayer estuvimos cenando allí y maravilloso. La comida buenísima, personal a cual mejor, servicio espectacular. Fichado. Calidad-precio super bien! Recomendado.", "author": "Marta O ́shanahan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJeDlib1pBEAE", "timestamp": "9 months ago"}, {"text": "Εξαιρετικό σέρβις! Το φαγητό απλά απίθανο! Μπράβο!", "author": "Μανωλης Γλατζης", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4aVBHblZREAE", "timestamp": "2 years ago"}, {"text": "Muy buen trato, comida perfecta, repetiriamos 100%", "author": "Maria Revuelta Arias", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CRFFrUnFhak5KVjNNeFQyODVZMFpZY0ROamJWRRAB", "timestamp": "3 months ago"}, {"text": "La comida espectacular pero el servicio inmejorable...el camarero(con gafas) que nos sirvió ha sido especialmente encantador y educado..fuimos con nuestro niño pequeño y nos han acomodado y han tenido sus detalles con él y se agradece", "author": "Patricia Gont", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNvc0x5dXJ3RRAB", "timestamp": "9 months ago"}, {"text": "La comida normal , pero cara. Pretende ser un restaurante andaluz pero dudo que en esa comunidad te cobren 5.5€ por un tinto con limón. Pedimos unos huevos fritos con patatas para la niña y nos lo pusieron. Pero claro, al precio del plato de huevos con jamón, quitándole el jamón. Mal detalle. No volvimos en toda la semana, claro", "author": "Francisco", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3MS1tc2d3RRAB", "timestamp": "a year ago"}, {"text": "Increíble de principio a fin, el sitio muy bonito, la comida exquisita y con una calidad extraordinaria, la secuencia y el orden a la hora de servir los platos perfectamente estudiada, el trato del personal inmejorable, destacar la atención de Luis, la persona que nos atendió, educado, atento, cercano, súper profesional y con un trato y un saber estar exquisitos. Pedimos una botella de cava, zamburiñas, pan bao de cochino canario y langostinos, tartar de salmón, gyozas y de postre, fiesta de chocolate. Sin dudas, volveremos", "author": "I.C.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuakstU3lRRRAB", "timestamp": "a year ago"}, {"text": "Comida excelente\\nConviene reservar mesa.\\nEl guacamole espectacular\\nLos huevos rotos normalitos. La ensaladilla exquisita y el cachopo abundante. De los mejores fuera de Asturias, claro.\\nEl chef te explica los platos sin ser pesado y divo y te prepara in situ el guacamole,\\nmuy recomendable.", "author": "francisco sierra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3OGNYYmZnEAE", "timestamp": "a year ago"}, {"text": "Elegimos este restaurante para cenar y la comida nos pareció bastante pretenciosa para lo que realmente era. Escasa y bastante cara. Nos pusieron un servicio de MEDIA pulguita de pan por comensal con mayonesa, que no solicitamos y por el que nos cobraron 2,40€.\\nNo repetiría, ni aconsejaría.\\nLos camareros son muy atentos y serviciales.", "author": "Juan Antonio Mirabal", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcmZPN1V3EAE", "timestamp": "a year ago"}, {"text": "Un excelente sitio para comer o cenar, parada imprescindible.\\n\\nDestacar ante todo la calidad humana de los camareros, gracias por todo. 💛🌴", "author": "Sara Issaoui", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPbmJTZzZRRRAB", "timestamp": "3 years ago"}, {"text": "Comida excelente, platos abundantes con ingredientes de primera calidad, volveremos.", "author": "Michele Ciliberti", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205UmRYRmxUV2hUYkVGUk1sRTVZbWc1WkhkeWNHYxAB", "timestamp": "5 months ago"}, {"text": "Fuimos a cenar un grupo grande de amigos que estábamos de viaje.\\nNos atendieron bien, comimos bien y precio razonable.\\nA mi parecer el mejor restaurante al que fuimos.", "author": "Jose Del Moral", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUN3eExpOEd3EAE", "timestamp": "10 months ago"}, {"text": "La comida estaba riquísima. El cochinillo estaba espectacular. El ladrillo de berenjena, y las brochetas de langostinos y queso muy recomendados también. Los camareros y el dueño súper agradables y atentos. En resumen, HAY QUE IR!", "author": "Laura Lázaro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURIaXVpZ3hnRRAB", "timestamp": "a year ago"}, {"text": "Espectacular en una calle en las canteras la comida y el servicio de diez probar el cachopo es increible", "author": "richi iglesias", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xsd2VqUmtXa3d3V2pCWmJFRXRlalJ4VkZwM2NrRRAB", "timestamp": "5 months ago"}, {"text": "Excelente atendimiento y una amplia carta de vinos. Platos elaborados y bien presentados. Elaborados con productos de calidad. Me lo recomendaron para hacer una comida de trabajo y salí muy satisfecho. 100 X 100 recomendable.", "author": "E. Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURybGYyTnZ3RRAB", "timestamp": "a year ago"}, {"text": "Espectacular el lugar, productos de calidad, trato profesional, muy recomendable,he ido varias veces y siempre que pueda iré ...muy recomendable", "author": "jonay frances", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21Oa1NtRkdPSEJ1VEZOSk1VTXdWVWRaUVhOU2NGRRAB", "timestamp": "6 months ago"}, {"text": "Qué maravilla de descubrimiento este sitio la playa de Las Canteras de Las Palmas. Se come muy bien coma el sitio es espectacular muy bien atendido muy agradable. Probamos unos camarones a la parrilla espectaculares así como el CHERNE y la pata de cochinillo al horno... todo muy pero muy rico regado con una bodega interesante con muy buenos precios de vino. VOlvere.", "author": "Mac 629", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzc19fU2Z3EAE", "timestamp": "a year ago"}, {"text": "Buscando un buen sitio para comer por Internet, nos apareció este con muy buenas críticas así que nos decidimos a ir. Mejor acierto imposible, mesa para dos con reserva, la atención, el sitio, la mesa y la comida inmejorables. Como platos principales carrillera y presa iberica, muy muy bueno todo. Sin duda parada obligada en gran Canaria.", "author": "marcos rios", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURuNzVXRUVBEAE", "timestamp": "a year ago"}, {"text": "Alles war Voll aber ich bekam 1 Stunde für mein Essen. Iberischer Schinken mit Bananen Butter. Tenderloin Medium mit Fritten und geflämmter Knoblauch Butter (Sehr gut).\\nMeinen Wein Wunsch (Fruchtigem Rotwein) wurde leider nicht erfüllt. Den Stern weniger gab es dafür. Das Ambiente war OK aber es könnte mal wieder etwas frische Farbe an die Wände.", "author": "Werner Kodric", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNua1BxUEdnEAE", "timestamp": "a year ago"}, {"text": "La persona que nos atendió asumo que era el dueño o administrador del restaurante. Él lo hizo de una manera muy profesional. A pesar de no tener reservación, hizo todo lo posible por ubicarnos en unas mesas. La comida es un poco más costosa que el promedio de lo que se comiera en otro restaurante de la zona. Sin embargo, tiene platos especiales que no se encuentran en otro lado. Todo lo que nos sirvieron tenía muy buen sabor y se veía muy fresco. Me dio la impresión de que los meseros aún estaban aprendiendo. Recomendado la entrada de berenjenas y el plato fuerte de pulpo.", "author": "Daniel Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMllPNk53EAE", "timestamp": "3 years ago"}, {"text": "Comida buenísima ( espectacular), platos bien surtidos y muy buena presentación, camareros y metre muy serviciales, amables y atentos sin agobiar… y sin dudarlo no se pueden ir sin probar algún postre… todos muy buenos… repetiremos", "author": "Eligia Reyes Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzblBqR2RBEAE", "timestamp": "a year ago"}, {"text": "Una experiencia perfecta.\\nLo más destacable, sin duda, es el gran trato y profesionalidad de los camareros, además de su gran predisposición: presentan los platos en la mesa y terminan de prepararlos delante del cliente.\\nLa comida es de total calidad y preparada con gusto.\\nEl local está cuidado al detalle. De los mejores restaurantes de la isla.", "author": "Alvaro Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwbWRiQW1RRRAB", "timestamp": "2 years ago"}, {"text": "Tiene un servicio muy bueno, y cerca de las canteras, pero la comida es normalita", "author": "Leticia Gonzalez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21reWRuRk5hbVp5Tm5GeU5XRnRXbmh2YjNkUFprRRAB", "timestamp": "3 months ago"}, {"text": "Un 10. Comida excelente, cada plato ha sido un espectáculo. Y el trato inmejorable.\\nVolveremos muy pronto. Enhorabuena!", "author": "David Troya", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBOUpDa0NREAE", "timestamp": "11 months ago"}, {"text": "Muy buena relación calidad-precio. Carne excelente. Trato estupendo", "author": "Lore Cereal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVN01LVmNREAE", "timestamp": "6 years ago"}, {"text": "Servicio correcto. Comida a mi criterio aceptable/normal, no puedo decir excelente. Platos más bien escasos en cuanto a cantidad. Precio algo elevado respecto a lo ofrecido.", "author": "Gustavo Marco", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmbExubXZnRRAB", "timestamp": "a year ago"}, {"text": "Todos los platos que vas pidiendo van superando a los anteriores. Calidad excelente. Servicio muy bueno y agradable. Hasta teniendo un problema en.la cocina lo supieron componer sin que se notase. Tienen una carta pequeña pero todo está buenísimo", "author": "Le Patron", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROcW8zc1NREAE", "timestamp": "2 years ago"}, {"text": "La experiencia ha sido fantástica. La comida excepcionalmente buena y el trato muy bueno.\\nHemos ido en familia, los camareros conocen la carta, la recomiendan a la perfección y el plato que llega a la mesa hace honor a lo que te explican.\\nPedimos el timbal de ventresca, una ensalada muy fresca para el verano. Nos gustó el detalle de que la trinchen en la mesa.\\nLa carne está muy rica también. Muy suave y sabrosa. Pero el plato que nos enamoró fue el ladrillo de berenjena y queso canario. Creo que es obligatorio si no lo has probado.\\nEn definitiva estamos contentos del trato recibido, el servicio y la calidad de la comida. Altamente recomendable.", "author": "Héctor Chafla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN2Eyd2xBRRAB", "timestamp": "4 years ago"}, {"text": "Otro almuerzo de primer viernes de mes con los mejores amigos. Esta vez tocó un restaurante de moda, y con muy buenas referencias, muy cerca de la Playa de Las Canteras. Empezamos con unas cervezas bien frías y un jamón de Jabugo espectacular. Y seguimos con una ensaladilla rusa con langostinos, unos huevos estrellados con carabineros, unas gyozas, y una bandeja con bife de black angus, presa ibérica, papas, y pimientos de Padrón. Todo esto regado con unas cuantas botellas de vino tinto Ramón Bilbao crianza. Y de postre pedimos unas torrijas caseras, una fiesta de chocolate, y milhojas de plátano. Todo estuvo buenísimo y el servicio perfecto. Volveremos para seguir probando platos. Muchísimas gracias.", "author": "José María Plácido Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNMeXN6bml3RRAB", "timestamp": "a year ago"}, {"text": "La atención del personal y del dueño o encargado, fue excelente, muy profesional, me sentí casi mejor que en casa. La cocina funcionó muy bien y rápida, sin olvidar ningún detalle, y todo me gustó. Lo pasamos en familia, muy bien y grato. Amenazo con volver....", "author": "Jose Luis Núñez Bravo", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsa2VpLWVBEAE", "timestamp": "2 years ago"}, {"text": "La comida buenísima, el personal amable y el señor que va a las mesas a explicarte los platos que están fuera de carta un 10.\\nGracias", "author": "Aile Cg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvOUp5WmxBRRAB", "timestamp": "9 months ago"}, {"text": "Todo muy rico y la atención espectacular...", "author": "Yamila Castillo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWcmJ1LUZnEAE", "timestamp": "2 years ago"}, {"text": "Der Mann mit dem Schnauzer ist mein Idol, das ist die wohl passendste Einleitung aller meiner Bewertungen!\\nIch hatte hier die schönste Zeit meines Lebens, hier wird sich noch um den Kunden gekümmert!\\n\\nIch empfehle jedem einen Besuch, das Essen ist sehr fein, die Angestellten sehr freundlich, vom Ambiente kaum zu sprechen.\\nDie Getränke werden ohne Mucks wieder gefüllt.\\nMir wurde sogar die Tür zur Toilette geöffnet!\\n\\nHier ist es übrigens 1h früher als in Deutschland, falls ihr das nicht wusstet!\\n\\nBitte geht hier her.", "author": "Paul Kalhorn", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKeTREc0N3EAE", "timestamp": "2 years ago"}, {"text": "Tanto el personal como la comida son excelentes. El trato fue exquisito desde el principio. Y se notaba un gran conocimiento de la carta, con buenas recomendaciones y una gran experiencia culinaria. Lo recomiendo encarecidamente.\\nDe precio en la media de los restaurantes de este tipo. No me parece caro para el servicio que ofrecen.", "author": "Javier Martin Zurita", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMycjh5UmxRRRAB", "timestamp": "Edited 3 years ago"}, {"text": "Los platos que pueden parecer típicos los hacen de una manera original, que están buenísimos. Y el servicio excelente, como si estuvieras en un estrella michelin, pero con una calidad/precio inmejorable. El camarero que nos atendió fue muy simpático y atento.", "author": "Carlos Herrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1MnVtYmxRRRAB", "timestamp": "2 years ago"}, {"text": "Muy buena comida, muy buen servicio. Muy buena experiencia.", "author": "GCarmen", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pOSGJuTnRjRzVaWlhkdFREaFBibU4yV1dKak0xRRAB", "timestamp": "3 months ago"}, {"text": "Wir waren am 22.01.2024 aufgrund der super Bewertungen im Rincon de Triana essen.\\nGuter Service, übersichtliche Karte und wir sind nicht enttäuscht worden. Lecker Fleisch vom Iberico Schwein und die Kroketten mit Schinken als Vorspeise waren auch köstlich.\\nPreis / Leistung stimmt vollkommen.", "author": "Julian Lohne", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0eE9xNzJ3RRAB", "timestamp": "a year ago"}, {"text": "Sencillamente espectacular. El mejor sitio en el que cenamos de todo Gran Canaria e incluso diría que en general.\\nLa ubicación es genial, en plena playa de las canteras.\\nEl servicio y la comida son más que increíbles. Más propios de un restaurante de un rango de precios muy superior.\\nCenamos el bao de pulpo, carrilleras en salsa y presa ibérica con patatas y pimiento. TODO DE 10/10.\\nEs que no le pondría ni una sola pega.\\n100% recomendable.", "author": "santi paleo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1OXBXMzBnRRAB", "timestamp": "2 years ago"}, {"text": "He ido dos veces porque lo conocí hace poco y la verdad que lo recomiendo al 100%. El personal es muy atento y los platos están riquísimos, todo lo que he probado está de 10.\\nSi van les recomiendo que prueben la Gyozas, hacen una mezcla de las empanadillas japonesas, con una salsa en base al Kimchi coreano que está que te mueres.\\nRepetiré seguro 👍", "author": "Kpasa!", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsM0lIbjlnRRAB", "timestamp": "Edited a year ago"}, {"text": "Buen servicio, la comida muy buena, bien preparada y presentada y muy buen servicio. Las zamburiñas preparadas y flambeadas muy original.", "author": "Ana María DG.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWNU42QWZBEAE", "timestamp": "2 years ago"}, {"text": "Camareros muy agradables y atentos. Buen sabor y buena cantidad y calidad. Muy recomendable.", "author": "Patricia Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXMllmakJnEAE", "timestamp": "3 years ago"}, {"text": "Genial opción para celebrar un comida/cena espacial. Buena ubicación en las canteras y comida de gran calidad. Algunos platos sorprendieron.", "author": "Carlos Carrión", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJMmVlVEJBEAE", "timestamp": "9 months ago"}, {"text": "Hemos tenido la oportunidad de ir a cenar dos noches seguidas. Una pena haberles descubierto al final de nuestro viaje. Hemos probado varios platos, el tartar de salmón, aguacate, gyozas, solomillo... Todo de excelente calidad y buena presentación con un toque muy especial. El servicio y trato de los profesionales son excepcionales . Muchas gracias !!!", "author": "Esther Ureña Calle", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPNWRMLW5nRRAB", "timestamp": "3 years ago"}, {"text": "La verdad que es un restaurante que merece muchisimo la pena. La atencion del personal, la amabilidad, la excelente calidad de la comida hacen una muy buena una experiencia gastronómica. Con la comida la disfrutas a cada bocado, una explosión de sabores. Quiero felicitar a todo el equipo del restaurante, nos ha gustado muchísimo, volveremos sin duda.", "author": "barrapan", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURacnRub1BnEAE", "timestamp": "2 years ago"}, {"text": "Comida excelente...como siempre. Trato excepcional...como siempre.\\nY esta vez, en la que nos acompañaba una intolerante al gluten, ese trato superó cualquier expectativa...\\nAmables si s servilismo, cariñosos incluso, cercanos, atentos. Hicieron de un gran día, un día MARAVILLOSO.\\nM GRACIASS!!!", "author": "Eduardo Adrián de Val", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURaeDZyNWN3EAE", "timestamp": "2 years ago"}, {"text": "Buen restaurante.Buena comida y buena atención.Lo recomiendo", "author": "Juan Romero Lora", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25BMFV6ZE1kVXRVTnkwemVEbHFXbWRrWTNodVUxRRAB", "timestamp": "4 months ago"}, {"text": "No hay visita que haga a Las Palmas de Gran Canaria que no coma o cene allí. No podéis visitar la isla sin pasar por allí", "author": "Belen Martin", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT20xYWJtNUpiMVIxWlhoMFpHRnhUV0ZtTkhwS2RHYxAB", "timestamp": "6 months ago"}, {"text": "Fui a almorzar con unos amigos,yo ya había ido en otras ocasiones y como siempre no defraudó y a mis amigos que no habían ido les gustó mucho.Calidad precio está bien.", "author": "Maribel Suarez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURvamREZm5RRRAB", "timestamp": "9 months ago"}, {"text": "Comida correcta pero precio un poco elevado.", "author": "Manuel Angel Gonzalez Lopez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s1UGFraENkazkzV1dOeU1HMXpOVkptWkVaV1JFRRAB", "timestamp": "5 months ago"}, {"text": "Sin duda uno de mis restaurantes favoritos de la isla. Ya son muchas las veces que he ido y nunca ha fallado, tanto comida como servicio. Las gyozas de morcón son una maravilla.", "author": "Cesar Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfM2RQNmlnRRAB", "timestamp": "a year ago"}, {"text": "Estuve allí por casualidad hace unos meses y me encantó. Primero, el trato de los camareros, la verdad que hacen sentirte muy bien y atentos a todos los detalles. En segundo lugar, la comida. Fuimos a picar algo y estuvimos casi dos horas. Una calidad fantástica. A nosotros nos encantó el Solomillo al ajo tostado, fenomenal¡¡ En definitiva, un gran sitio para disfrutar de una buena comida, muy bien situado, y sin duda, para repetir.", "author": "JOSE ANTONIO LORA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZNzhMMVNBEAE", "timestamp": "6 years ago"}, {"text": "Un restaurante excelente, tanto la comida como el trato de los camareros. Recomiendo el bacalao en tempura, el ladrillo de berenjena y el tartar de atún, aunque este último lo tenían fuera de carta. Muy recomendado.", "author": "Laura Pano Sepúlveda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NmRfc3V3RRAB", "timestamp": "a year ago"}, {"text": "Todo de 10. Comida buenísima, de calidad, original, rica, preparada con delicadeza y muy bien emplatada. Camareros y camareras muy amables y atentos. En cuatro días que llevamos aquí he ido ya dos veces a cenar. Buenos precios. RECOMENDABLE 100%", "author": "Noelia Linares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwellTYW5RRRAB", "timestamp": "2 years ago"}, {"text": "Muy mal. Huevos rotos sin papas, tanto los de jamón como los de langostinos., la carne vulgar y por debajo del peso ofertado. Y sobre todo el servicio lentísimo, el personal seco salvo con sus amigos, el local ruidoso. Para no repetir, quizá salvo que seas conocido de la casa.", "author": "jose luis goizueta", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaNXFMamRREAE", "timestamp": "2 years ago"}, {"text": "Excelente situación, producto de la mejor calidad, rapidez y muy buena atención y el local es muy bonito👍👏👏", "author": "Sonia Gonzalez Joven", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2sxR1Yyb3dOVVJFTm0xWlEwVjJSMGR0WkZVMlRFRRAB", "timestamp": "6 months ago"}, {"text": "Excelente servicio, calidad y ambiente súper acogedor", "author": "Lola Herrera Legido", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xkTVRtWlFkVEZLVFRJeU9HZEthakF4ZDFSdk1HYxAB", "timestamp": "a month ago"}, {"text": "Muy bueno todo y l@s camarer@s muy profesional. 👏👏👏👏", "author": "Giuseppe M", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURweE1DVUR3EAE", "timestamp": "2 years ago"}, {"text": "Essen ist soweit gut, allerdings relativ teuer für die Menge und es wird leider wieder ein kostenpflichtiger „Gruß aus der Küche“ serviert, bei dem man vorab nicht informiert wird, dass es kostet.", "author": "Cedric Homann", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VLU1o3T3pFNUwyOVN3EAE", "timestamp": "8 months ago"}, {"text": "Ha sido un gran descubrimiento este restaurante, no sólo por el trato espectacular de todo su personal si no por la preocupación de que tuviera un menú vegano (que no estaba en carta) el cual me hicieron al momento y estaba delicioso. 100% recomendable", "author": "C & T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROeXJ5cm1nRRAB", "timestamp": "2 years ago"}, {"text": "Las porciones un poco escasas pero muy bien elaboradas", "author": "Martha Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmbk9tVmZnEAE", "timestamp": "a year ago"}, {"text": "La comida excelente y con un toque distinto.\\nEn la atención todo el servicio excepcional. Muy bien de precio.\\nDéjense asesorar. No fallarán", "author": "aida elorriaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MXNtZENBEAE", "timestamp": "a year ago"}, {"text": "I got mixed feelings from my experience in this restaurant. The starters were absolutely delicious but then our mains were pretty average. My boyfriend's meat was very dry and it came with flavorless homemade fries. I had crab with eggs but struggled to find any crab in my plate. For this reason this course was quite overpriced (15€). So were the desserts as well. They were good but not exceptional and cost 6,5€ each.\\nThe cherry on top (of the disapointment cake) was that the restaurant charged us for the bread which was served to our table even though we never ordered it. 1,20€ per tiny loaf of industrial bread. I know this practice (or scam) is common in mediocre touristic restaurants on the island, but I really wasn't expecting it from this place, as it seemed to be above standards. We won't come back, neither do we recomend this place.\\n\\nExpérience mitigée dans ce restaurant. Les entrées étaient excellentes, mais la suite n'a pas été à la hauteur. La viande de mon copain était très sèche, servie avec des frites maisons sans saveur. Pour ma part j'avais commandé le crabe, mais j'ai peiné à le trouver dans mon plat (qui m'a quand même coûté 15€). Les desserts sont corrects mais bien trop chers (6,5€).\\nLe cerise sur le gâteau fût de nous faire payer le pain qui nous a été apporté à table sans que nous ne l'ayons commandé. 1,20€ par petit morceau de pain industriel. Je sais que cette escroquerie est courante dans les restaurants type piège à touristes médiocre, mais je ne m'attendais pas à ce qu'elle soit pratiquée ici. Étant donné que nous avions déjà dépensé près de 35€ par tête, je trouve cela totalement malhonnête. Nous ne reviendrons pas, ni ne recommandons cet endroit.", "author": "Maureen Wadley", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURoOGEzdV9BRRAB", "timestamp": "2 years ago"}, {"text": "Das Essen war sehr lecker 😋 und wir würden gerne wieder kommen, Nur zum Empfehlen\\n\\nNoch zum Empfehlen das Schweine Fleichs mit dem Räucher Käse. Last es euch schmecken wenn ihr dort seid", "author": "Tim Tom Noack", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURYdnZQQW9RRRAB", "timestamp": "a year ago"}, {"text": "Siempre que voy no decepciona. Es de mis lugares preferidos de la isla, por servicio, por comida y por la relación calidad/precio. En Canarias a veces te tienes que gastar mucho para comer así. Las cañas además las tiran perfectas. 👌", "author": "Maria Viera Galvez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6aHFYUTVnRRAB", "timestamp": "a year ago"}, {"text": "Saatiin pöytä 4 henkilölle ilman ennakkovarausta. Laadukkaampi paikka, mutta mielestäni hinta-laatusuhde ei kohdannut täydellisesti. Alkusalaatissa upeat maut, lohi ja lisukkeensa perushyvää, ei säväyttänyt. Pöytäseurueen liha-annos taisi olla maukas. Jälkkärit ihan ok.", "author": "Johanna Manninen", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURmdG9HMUlBEAE", "timestamp": "a year ago"}, {"text": "Deuxième passage et toujours aussi bien.... Des prix très corrects et des produits de qualité superbement cuisinés.... cochon grillé, poulpe grill et divin pain perdu.... Il est très bien noté à juste titre...", "author": "Alain Alain", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNuNV83R053EAE", "timestamp": "a year ago"}, {"text": "Excellent restaurant !!! La viande est vraiment très bonne.\\nPensez à réserver pour être sûr d’avoir une table.", "author": "Julie B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRcE02SGxnRRAB", "timestamp": "10 months ago"}, {"text": "Ontzettend lekker gegeten, verse lokale producten. Medewerkers zijn ontzettend vriendelijk, houden alles goed in de gaten, en zorgen voor het gastvrije Spaanse gevoel. Ook dat er voornamelijk locals zitten, zorgt echt voor een Spaanse avond.\\n\\nOctopus is echt aan te raden, fantastisch gerecht. Ook de desserts zijn overheerlijk!", "author": "Koen Luiken", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKMTlyMkxBEAE", "timestamp": "2 years ago"}, {"text": "Muy recomendable. Recibimos un trato muy generoso, amable y explicativo. Ordenamos según las recomendaciones y fue genial. Todo muy de agrado en cantidad y calidad. Sabores muy identificados y nuevos para nosotros. Los postres fueron expectaculares y no se vayan sin probar LA TORRIJA. Mil gracias a los amigos que dejamos allí.", "author": "david vid", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcHZUSFRBEAE", "timestamp": "3 years ago"}, {"text": "Buenísima experiencia culinaria. Cocina excelente, cuidada, sorprendente y buena relación calidad precio. La profesionalidad de cocineros y camareros se nota y es un gustazo disfrutar de su buen hacer. Si están pensando comer el las Palmas no dudes, te encantará.", "author": "Elena Lozano De Benito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtLTZtTEl3EAE", "timestamp": "3 years ago"}, {"text": "Todo estaba riquísimo, la carne súper tierna, la ensaladilla tenía un sabor increíble y encima tenían pan sin gluten 🥰", "author": "Cristina Acosta", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURROU51V2xRRRAB", "timestamp": "10 months ago"}, {"text": "Llevaba mucho tiempo sin comer en un sitio así, servicio muy top desde que llegas hasta que te vas , te informan muy bien de cada plato , y te sirven de 10. La comida super rica, pan bao de pulpo ,gyozas,zamburiñas y solomillo rincón fue lo que pedimos nosotros. Volveremos sin duda", "author": "Cristian Martín Cardona", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEenBuTTBRRRAB", "timestamp": "a year ago"}, {"text": "Maravilloso.. celebramos el cumpleaños de mi abuelita..y la atención..el servicio..y la comida espectacular...sobre todo por parte del camarero Jesús..una atención excelente.. muy recomendado", "author": "Cyntia Gutierrez Nuñez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRZ2JmaUlREAE", "timestamp": "10 months ago"}, {"text": "Eine Ausnahme in der Menge der Strandrestaurants. In einer kleinen Seitenstraße. Kein Strandblick!\\nAber: sehr freundliche Bedienung, kleine Speisekarte mit ausgewählten Leckereien.\\nHaben nur Vorspeisen gegessen, alle geteilt!\\nDas Spielchen wurde vom Ober mit Begeisterung mitgespielt. Gute Beratung!Immer neue Teller und jedes Mal eine Geschmacksexplosion auf der Zunge. Dazu gute Weine ( By the Glas ! ) zu einem moderaten Preis. Wir kommen gerne wieder!!!", "author": "Hubertus Schmidt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCbDVyeEZnEAE", "timestamp": "2 years ago"}, {"text": "Ubicado cerca de la playa de las canteras, en una de las calles perpendiculares al paseo marítimo.\\nLa comida, muy rica. Comimos guacamole, ensalada de ventresca y cochinillo a baja temperatura. La experiencia muy buena, con un servicio atento y dispuesto. Horario amplísimo. Con precios ajustados.\\nTotalmente recomendable.", "author": "Josu H C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaTdTZTZ3RRAB", "timestamp": "2 years ago"}, {"text": "100% recomendable. Buenos precios. Servicio excelente y personalizado. Admiten mascotas en la terraza. Comida exquisita. Solamente le falta que le den una estrella michelín porque se la merecen. Admiten reservas. Zona de lujo a 30 segundos o menos del paseo de las canteras. Vamos para repetir una y otra y otra y otra vez.", "author": "Jesús García Alfonso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWcmVUbjNnRRAB", "timestamp": "2 years ago"}, {"text": "Wir waren zu 6. dort essen und bei 2 Leuten war das Fleisch einfach noch roh obwohl well done bestellt wurde. Der Kellner hat die Teller wieder mit genommen und bei einer Person war es perfekt und bei der anderen Person leider noch sehr zäh", "author": "Sascha Dronszkiewicz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxcW91T0V3EAE", "timestamp": "2 years ago"}, {"text": "Fuimos improvisadamente y no nos decepcionó, al lado de las canteras, un rinconcito muy especial, el camarero muy atento nos atendió estupendamente. Los platos excelentes, pedimos tartar de ventresca, ensaladilla y cochinillo, acompañamos con dos vinos ribera y Rioja también muy en sintonía.", "author": "Raquel Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoN0tMVWNREAE", "timestamp": "2 years ago"}, {"text": "10/10. Salimos súper contentos del local.", "author": "Oliver Castillo Rodríguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkVlpGaFVWMlZPZVROMGJEY3dhMjAyVVhSU1ZHYxAB", "timestamp": "4 months ago"}, {"text": "Muy buena relación calidad precio. Trabajan bien y la atención exquisita. Sin duda es para repetir y probar el resto de la carta. La para asada a baja temperatura nos sorprendió mucho. También la merluza con salsa de trufa", "author": "Joel Pérez Izquierdo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1dmVHTnRBRRAB", "timestamp": "3 years ago"}, {"text": "Hoy hemos comido aquí y no teníamos reserva, nos han atendido enseguida , con mucha amabilidad, todo el personal es de 10 y la comida muy buena, también tienen una excelente carta de vinos, muy recomendable ir a comer aquí, sin duda si vuelvo a Gran Canaria los volveré a visitar.", "author": "Consuelo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEcXBTMkRnEAE", "timestamp": "a year ago"}, {"text": "Comida exquisita, la combinación del Carpaccio con trufa y helado fue una grata sorpresa para nuestro paladar, de segundo pedimos gyosas con salsa Kimchi, estaban sabrosísimas, la pasta en el punto perfecto de cocción. Lo mejor de todo, el personal de sala, destacando a nuestro camarero Moisés, un gran profesional. Mi enhorabuena por el gran trabajo de todo el equipo.", "author": "Aida Salas", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKcExYVWRBEAE", "timestamp": "2 years ago"}, {"text": "Me quedé bastante sorprendida.\\n\\nComida calidad precio inmejorable.\\nEl mejor carpaccio que he probado.", "author": "Irene Morales Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURReE11dEtnEAE", "timestamp": "10 months ago"}, {"text": "Hacia muuuucho tiempo que no disfrutaba de lo que es un buen servicio y una magnífica comida, por sitios como este yo podría arruinarme , muchísimas gracias chicos fue una cena espectacular. Repetiremos", "author": "Car Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIcE5lLWJBEAE", "timestamp": "a year ago"}, {"text": "voll gutes Essen und die Bedienung echt Klasse. Zu empfehlen, alles, aber vor allem Cachopo , Gyozas und Pulpo. Alles mit gutem Wein servirte. Tolle Erklärungen bei jedem Gericht, klasse Kellner. Leider Location etwas versteckt aber das Lokal ist auch schön und die Tische groß genug.", "author": "Jorge CC", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4bU9ETFZBEAE", "timestamp": "2 years ago"}, {"text": "No hay palabras para describir este lugar porque cualquier terminología q apliques le queda corto. Espectacular la atención recibida por todos los camareros sin excluir a ninguno, asombrosa la calidad de los productos e impresionante la forma de presentarte los platos en la mesa. Sin duda un lugar q recomendaría para comer y cenar todos los días de la estancia", "author": "Natalia Martínez Tamará", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MTg2WVFnEAE", "timestamp": "3 years ago"}, {"text": "No puedo poner más estrellas a este restaurante porque no las hay.\\n\\nES-PEC-TA-CU-LAR.\\n\\nLos camareros amabilísimos, te cuentan todo, como se cocina, te recomiendan... UNA PASADA.\\nTodo lo que hemos probado estaba rico, sin duda recomendamos ir, por supuesto y en nuestro TOP 3:\\n\\nHuevos con gulas y gambas (no he probado otros así en mi vida)\\nCochinillo a baja temperatura con patatas (nada que ver con el cocinado tradicional del cochinillo, una experiencia nueva)\\nGyozas (Dios mío! Qué manjar!!!)\\n\\nEstuvimos de luna de miel y fuimos a cenar 3 veces, aunque me hubiera quedado allí cada día, de verdad MUY RECOMENDABLE.\\n\\nGracias a todo el equipo, impresionante :)", "author": "Nieves Úbeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyd2RXeFZ3EAE", "timestamp": "3 years ago"}, {"text": "Muy buena comida!!! Y el personal muy amable", "author": "Vicen Gallego", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSURxbi0xVhAB", "timestamp": "4 years ago"}, {"text": "Ambiente muy agradable. Tanto el dueño como todo el personal muy profesional. Comida exquisita. Un poco de ruido pero si todos habláramos más bajo otra cosa sería. Totalmente recomendable", "author": "Maripi", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKcHU3YklBEAE", "timestamp": "2 years ago"}, {"text": "Bien, para mí gusto y con la variedad/cantidad que tenemos ahora en Las Palmas, un poco caro", "author": "Chany Morales Vega", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2w4dFQyWTBOMDVLZFVkQ1ZqVXpOSFp2VlhadVQyYxAB", "timestamp": "6 months ago"}, {"text": "Durch die guten Bewertungen aufmerksam geworden, haben wir heute mit Freunden ein kleines Juwel entdeckt. Etwas versteckt gelegen, ganz in der Nähe des Las Canteras Strandes. Aussergewöhnliche Küche, freundliche Mitarbeiter und ein gutes Preis-Leistungsverhältnis im netten Ambiente zeichnen dieses Lokal aus. Wir werden wieder kommen.", "author": "Brigitte Gansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyMDctV01REAE", "timestamp": "3 years ago"}, {"text": "No hay otro lugar como este. Exquisitez en la carta, amabilidad del equipo, pulcritud, sencillez y mucha vanguardia. Está riquisimo y es mi sitio de confianza cada vez que quiero celebrar algo especial. Recomendado 100%", "author": "Ruth SZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkLVBMVUVBEAE", "timestamp": "a year ago"}, {"text": "Restaurante de nuestros preferidos en la ciudad. Ofrece un trato estupendo y una comida de calidad, está todo muy rico. Variedad de vinos. Recomendable.", "author": "Yo Misma", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMajlfMTR3RRAB", "timestamp": "a year ago"}, {"text": "Hoy comimos en este establecimiento. Tiene una carta bastante completa. Los platos que pedimos estaban muy ricos.\\nLa atención del personal es de lo mejor que he visto. Está muy bien la relación calidad-precio. Seguro que volveremos.", "author": "José Luis Mesa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNMGVXUXp3RRAB", "timestamp": "6 years ago"}, {"text": "Sin duda, uno de los mejores restaurantes de Las Palmas de Gran Canaria. Buenísima relación calidad precio. El servicio atentísimo. La comida espectacular (especial recomendación el tartar de salmón y un plato que llevaba berenjena y queso). De locos.", "author": "Ana Sampedro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQydS1HTHhnRRAB", "timestamp": "3 years ago"}, {"text": "Restaurante muy recomendable. Vine a comer solo y tanto la comida como el servicio fueron excelentes. Buenas recomendaciones y platos fuera de carta. Un 10, me gustaria destacar el servicio, fue inmejorable.", "author": "Pablo Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURab1luWGFBEAE", "timestamp": "2 years ago"}, {"text": "Todo bueno... Para resumir y el dueño simplemente un tío de p. m. Tiene otro restaurante ya en las canteras a 30 mtr de este. Buena calidad sin duda de los productos y podrás probar en Gran Canaria los famosos tomates de Los Palacios y Villafranca de Sevilla... Todo un lujo que se curra el dueño. Chapó", "author": "ANTONIO FERMU", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURlOTZEdkF3EAE", "timestamp": "3 years ago"}, {"text": "Ha sido un placer comer en este sitio, no sólo por la increíble comida, si no también por la atención recibida, sobre todo por parte del equipo y destacando a Moisés.\\nPlatos a destacar: las empanadillas, el solomillo y la torrija", "author": "L MCL", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUREcmY3ZExREAE", "timestamp": "a year ago"}, {"text": "Un restaurante q te sorprende, la atención y los platos, el personal explicando los platos fantásticos…. Mezcla explosiva de sabores , repetiremos siempre q podamos…pero de muy mal gusto cobrar 6€ por 5 trozos de pan muuuy pequeños. Eso es muy feo con la mesa y el ticket q se le hizo…. Siempre a mejorar….", "author": "Macarena Kanerotika", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCa3BQbDVRRRAB", "timestamp": "3 years ago"}, {"text": "Mangiato davvero molto molto bene. Consiglio la carne", "author": "Martina Galasso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM5OGJPWFNREAE", "timestamp": "a year ago"}, {"text": "En pocos sitios te sentirás tan bien atendido. La comida está super rica y son muy detallistas, además de simpáticos, desde el cocinero hasta el camarero que te atiende en mesa. Para los amantes de la carne, el jamón y el vino está más que recomendado pero hasta siendo vegetariano puedes comer rico y variado. Yo pedí la ensalada con espuma de manzana, crujientes de langostinos y queso de cabra, ladrillo de berenjena y de postre milhoja de plátano. Todo estaba delicioso. Así que, me arriesgo a decir que lo recomiendo hasta para vegetarianos. Volveré seguro. Encima está bien ubicado, en la avenida de las canteras en una calle transversal. Comes y te das un paseo. :)", "author": "Alexandra Mejias Herrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXczgzcW1nRRAB", "timestamp": "3 years ago"}, {"text": "Ottimo ristorante con impeccabile servizio!tutto il personale, particolarmente attento e molto professionale. Ogni piatto viene descritto è spiegato nel minimo dettaglio. Cibo veramente originale e ottimo!super consigliato!!!", "author": "cecilia cecio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHaDlDLWpRRRAB", "timestamp": "4 years ago"}, {"text": "Carta variada con una comida muy rica, con una mezcla de sabores muy lograda. El trato de los camareros, inmejorable. Son encantadores y se nota que ponen todo de su parte para que los clientes estén satisfechos. Un gran descubrimiento!", "author": "Diana Mm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDbW9meDNRRRAB", "timestamp": "5 years ago"}, {"text": "La comida es simplemente espectacular!! Diferente, buena y sabrosa. Destaco los camareros que son de 100👌!! Nos explicaron cada plato, sabían perfectamente lo que te estaban vendiendo. Sitio para repetir y recomendar", "author": "melisa solera delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2b19QQXpnRRAB", "timestamp": "4 years ago"}, {"text": "Todo un placer haber cenado anoche , productos de primera calidad y postres exquisitos además un buen servicio de mesa.\\nTotalmente para repetir.", "author": "andres cabral", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqdHJqOTRRRRAB", "timestamp": "a year ago"}, {"text": "Le cochon de lait était exceptionnellement bon, et les raviolis/gyozas au chorizo étaient également excellents. Le service irréprochable et agréables. Nous avons passé un très bon moment.", "author": "Sophie Cottin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyaXNLZkt3EAE", "timestamp": "3 years ago"}, {"text": "På dagen hvor vi i Danmark fik ny konge fejrede vi det med en dejlig middag på Rincon. Det bedste var en starter med rejer på spid med gedeost og aprikosmarmelade. Vi delte denne starter. Hovedretten blev anrettet ved bordet med flammer og elegance. Kødet var udskåret, præsenteret før servering. Var perfekt medium og meget mørt.\\nAfsluttet måltid med citrolikør the house.\\nSød, venlig, smilende, opmærksom betjening.\\nAnbefales hermed.", "author": "Kurt C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNONGNhdGxRRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien restaurante, buen servicio, y la comida expectacular", "author": "José Oliva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKc3YzVzdRRRAB", "timestamp": "2 years ago"}, {"text": "Si no es mi lugar favorito, pega en el palo. Excelente todo, mucho detalle en la combinación de sabores, la atención excelente de todo el personal, vinos buenisimos y de los pocos lugares de la isla donde EL MOZO SABE DE VINOS Y PUEDE RECOMENDAR 👏🏼👏🏼", "author": "Mar M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURUNGJtbXJ3RRAB", "timestamp": "a year ago"}, {"text": "Platos escuetos, sin ser brillantes y pocos elaborados. Nada que destacar para que pagar más de 60€ por cabeza. Salud y suerte amigos", "author": "Francisco José Santana Bernal", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBNXNXRHZ3RRAB", "timestamp": "11 months ago"}, {"text": "Ayer día 4 de marzo comimos en éste maravilloso restaurante, la comida exquisita, el trato de 10,repetiremos..GRACIAS", "author": "Toñy Sosa moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRcnNHSzJ3RRAB", "timestamp": "10 months ago"}, {"text": "Tyvärr, trots väldigt bra omdöme så var inte detta vårt bästa val. Fina lokaler och trevlig personal. Rätterna dock inte den förväntade smakupplevelsen. Torsken var friterad och serverad med tunna pomfrits. Samma pomfrits som serverades till de väldigt goda kroketterna. Det ugnsbakade svinet smakade inget. Vi lämnade väldigt besvikna trots vita dukar och snygga lokaler!", "author": "Gunilla Xxxx", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5eXFxdVdREAE", "timestamp": "a year ago"}, {"text": "La comida y el servicio de 10. Volveré sin duda", "author": "Victor", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNleUkzUjh3RRAB", "timestamp": "3 years ago"}, {"text": "Sitio al que regreso cuando voy a Las Palmas GC", "author": "Lucia L", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2prNFlrcFhZMXBqU3paYVpFNUhXbWRsZERGYWNXYxAB", "timestamp": "4 months ago"}, {"text": "Todo muy bueno: ambiente, decoración, atención y profesionalidad... si quieres comer algo diferente, darte un homenaje, muy recomendable. Sólo una cosilla, una sugerencia, cuidado con la sal... creo que se abusa un poco y deja algunos platos sin la posibilidad de disfrutar de sus sabores", "author": "S", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMkkzbWNREAE", "timestamp": "4 years ago"}, {"text": "Excelente comida, excelente servicio, muy buena carta de vinos. Ambiente tranquilo para ir con amigos o familia. He comido en varias ocasiones y seguiré acudiendo….", "author": "Carmen Quintana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwMkszYnR3RRAB", "timestamp": "2 years ago"}, {"text": "Es la segunda vez que almuerzo allí. La comida muy buena, el servicio muy profesional y atento. Tiene una carta de vinos muy extensa. El ambiente muy agradable", "author": "Emilia R.G.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwbl8zNkNBEAE", "timestamp": "2 years ago"}, {"text": "Carta moderna y sugerente con ingredientes no tan habituales. Servicio atento. En nuestro caso algún plato muy sabroso, tartar de salmón, otro bastante plano para lo esperable, judiones con perdiz, y un bife sabroso.... Pero frío, y la respuesta tras pedir una piedra fue un plato tibio, 5 minutos más tarde.. a pulir estas cosas", "author": "Gus Vega", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2c2ZUUXFnRRAB", "timestamp": "4 years ago"}, {"text": "Servicio excepcional, comida exquisita con una relación calidad, cantidad, precio muy adecuada. Recomiendo encarecidamente el plato de costillas, está preparado con la carne del costillar y es difícil encontrar un solo hueso. Pienso repetir.", "author": "Astorg", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPc2V6am5RRRAB", "timestamp": "3 years ago"}, {"text": "Comida muu rica y elaborada. Una atención excelente de todos los camareros y una cosa wue me encantó es que en todos los platos te explicaban su composición y elaboración. Todo ello añadido al sitio espectacular. Simplemente 10", "author": "Rubén Moreno", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2ay02LVJBEAE", "timestamp": "4 years ago"}, {"text": "Buena comida y buen servicio muy recomendable", "author": "Disfrutar De los pequeños detalles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDX2VqbURBEAE", "timestamp": "5 years ago"}, {"text": "Hemos tenido una cena fenomenal! El vino estaba muy bueno y la comida tambien, el servicio es unico, ellos te explican todo lo que estas comiendo y ponen un monton de atencion en los detalles! Lo hemos pasado super bien!", "author": "Luce Burello", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXNkkzT013EAE", "timestamp": "3 years ago"}, {"text": "No lo conocía y me ha gustado mucho. La comida muy buena: el guacamole, la presa, el solomillo, el pulpo, todo muy rico. El servicio amable y atento a pesar de que era un domingo especial y había mucha gente", "author": "Emilia Fernández carnero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyNE5lNjZBRRAB", "timestamp": "3 years ago"}, {"text": "¡Muy bien! Se come muy bien y por las circunstancias especiales del covid-19 y el aumento de la pandemia por desgracia el grupo de jubilados lo hemos tenido que reducir a cuatro comensales. Seguro que repetiremos. Sólo observé otra mesa con más de tres metros de separación.", "author": "Gloria Muñoz", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTXzh1ZjZBRRAB", "timestamp": "5 years ago"}, {"text": "Izcila apkalpošana un ļoti garšīgs ēdiens !", "author": "Ligita Viluma", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxOWJhOEZ3EAE", "timestamp": "2 years ago"}, {"text": "Una buena experiencia en la primera visita a este lugar.\\nBuena comida, buen ambiente y sobre todo buen servicio. El precio un poco mayor en relación con otros restaurantes de la zona pero merece la pena probar.", "author": "Raúl Rodríguez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzOGZpVUpBEAE", "timestamp": "5 years ago"}, {"text": "La comida estaba bien, aunque cantidades justitas. Los camareros muy amables. Lo malo es que estuvimos 40mn esperando a que nos atendieran y se equivocaron en algunas bebidas. Supongo que serán pocas personas para mucho trabajo o no lo sé.", "author": "Meli LH", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCMU8yQ0pREAE", "timestamp": "3 years ago"}, {"text": "Todo riquísimo. Una auténtica experiencia. El servicio muy amable y atento. Pocos sitios como este. Marca una diferencia con otros restaurantes. Muy bien de precio. Necesario reservar.", "author": "Christian Reyes Nicholas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldWFHaVN3EAE", "timestamp": "3 years ago"}, {"text": "Platos de excelente calidad,servicio impecable,protocolo covid excelente", "author": "Noemi Vidal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaGF1eW53RRAB", "timestamp": "5 years ago"}, {"text": "Endroit fréquenté par les locaux donc rassurant. Service très agréable et cuisine au top!! Très belle expérience culinaire. Très bon moment", "author": "Pierre P.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNTcyckNREAE", "timestamp": "2 years ago"}, {"text": "La comida estaba muy rica y el trato fue inmejorable en todo momento. Repetiremos seguro porque sitios así de completos hay muy pocos.", "author": "Victor Gutierrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR6aG9UTHR3RRAB", "timestamp": "a year ago"}, {"text": "Un sitio maravilloso para compartir con amigos y familia la comida estaba buenísima, el servicio impecable. Lo recomiendo 100%.\\nCalidad precio excelente", "author": "Susi Rodriguez Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKd3RPVWpnRRAB", "timestamp": "2 years ago"}, {"text": "Спасибо за прекрасный вечер!\\nЕда 5*\\nСервис 5*\\nВино 10*😉", "author": "Olexis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtekozS1p3EAE", "timestamp": "3 years ago"}, {"text": "Un sitio muy recomendado. Los camareros muy amables te hacen explicación de todos los platos y los terminan en el momento en tu mesa. Muy buena calidad de productos, además esta todo riquísimo", "author": "Marta CP", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eExubEpnEAE", "timestamp": "4 years ago"}, {"text": "Una maravilla de sitio, recomendado si quieres una experiencia gourmet, producto increíble !!!", "author": "Salvador Verdugo Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTGtudEwtbDhHMG5RRRAB", "timestamp": "8 months ago"}, {"text": "Espectacular. En trato, en servicio , en rapidez y sobre todo estamos hablando de una cocina que va un paso por delante de buena comida, ya hablamos de una cocina de autor. Y buen conocimiento para aconsejar un buen maridaje.", "author": "Eduardo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtNXNUTXNRRRAB", "timestamp": "3 years ago"}, {"text": "Sabrosa cocina española la que elaboran en el Rincón de Triana, a escasos metros de la Playa de Las Canteras. Buen producto, mucho sabor, un toque de creatividad, raciones generosas y precio contenido. Sin duda una opción muy acertada en Las Palmas de Gran Canaria.", "author": "Christian Pérez Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTZUYjhBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Un buen restaurante, buen precio y muy agradable. La comida está muy buena, y el menu es variado. El servicio es lo que mas destaco, el camarero John muy profesional.", "author": "Tara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURacjZ6My1nRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien la comida y el trato pero no me gustó que la mesa no tuviese mantel y que la salsa de macho esa de mango era muy escasa el solomillo ibérico de cerdo lo sirvieron con batata no de papá y un poco caro paro la calida de la comida que era muy buena pero para mí los entrantes eran caros", "author": "Saruca Calixto Toledo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCb2F1NmNnEAE", "timestamp": "3 years ago"}, {"text": "Comida muy elaborada con producto excelente y servicio aún mejor, muy profesional. Rafael el “vasco-canario” un crack! Muy recomendable.", "author": "Rut Osambela", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNQME1MMXVRRRAB", "timestamp": "a year ago"}, {"text": "Cocina y producto espectacular. Tiene una selección de vinos como en pocos sitios. La atención inmejorable. Come y disfruta de la historia de cada plato.", "author": "Fernando Vélez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtdXI3MlNnEAE", "timestamp": "3 years ago"}, {"text": "Fast schon Fine Dining, nur wenige Meter von der Strandpromenade Las Canteras entfernt.\\nWer etwas außergewöhnliches sucht, wird es hier finden.", "author": "Catrin Reuber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2ckt1cTVnRRAB", "timestamp": "a year ago"}, {"text": "El encargado utilizo la misma tactica que otro restó del lugar \\"esta todo reservado\\" (el 90% de las mesas vacias un sabado a las 14hs). Roza lo xonófobo, elegir a quien atender. De todas formas los que atendian tambien nos dieron mala impresion en cuanto a lo salubre, media vuelta y a buscar otro lugar que quiera trabajar y atender bien a clientes que van a dejar una buena pasta. No lo recomendamos, ojala atiendan a los bornones a ver si los aceptan o les dicen que no....jaja\\n\\nPd: esto sucedio en este local. Como dato adicional recuerdo que consultamos si disponian de aire acondicionado y nos ofrecieron dijeron \\"se podrian sentar cerca de la entrada\\"(???)\\n\\nPor suerte luego de que ustedes nos dijeran que tenian todo reservado enco tramos un lugar donde nos atendieron de maravilla (Piemonte) al cual le realizaré una reseña con cinco estrellas.", "author": "Ezequiel Donadio", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1cThEbHdRRRAB", "timestamp": "3 years ago"}, {"text": "Comida y servicios inmejorables. El camarero que nos atendió, John nos dio un trató y llevó a cabo un servicio espectacular. Mario, el dueño, de 10. Totalmente recomendable.", "author": "José Carlos Olivero Ortega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKLXFleG5nRRAB", "timestamp": "2 years ago"}, {"text": "Excellent restaurant à tous points de vue.\\nIl me faudrait parler de chaque plat.. Les petites noix de Saint Jacques, le guacamole,, extra !! Les gyozas.. Juste une merveille !\\nTout était parfait digne d'un étoile..\\nMerci !!\\nJoëlle et Yves", "author": "Joelle Weber", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNocGNHS0l3EAE", "timestamp": "2 years ago"}, {"text": "Muy buena comida, magnífico servicio. Unos platos exquisitos sobre todo el timbal de ventresca y el ladrillo. La carne muy rica. Repetiremos. Muchas gracias por la atención y servicio.", "author": "M Rm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN2RYNzlRRRAB", "timestamp": "4 years ago"}, {"text": "Mycket bra mat till rimligt pris", "author": "Thomas Klevås", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNybk12VjBBRRAB", "timestamp": "a year ago"}, {"text": "Sehr gutes Restaurant sehr freundliche und zuvorkommende Bedienung erklärt viel rund um die Speisen und lässt sich Zeit bei der Beratung das Essen war ausgezeichnet und reichhaltig der Preis ist auch völlig ok für das was geboten wird gern wieder", "author": "Simon Richter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1LTRlZGNREAE", "timestamp": "3 years ago"}, {"text": "Me gustó mucho. Ambiente agradable, la comida excelente y un trato agradable.\\nDestacó el guacamole hecho en Mesa.\\nRecomendación: ampliar la oferta vegetariana.", "author": "Ana Maria Ronda Martínez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCcjV1NjVnRRAB", "timestamp": "3 years ago"}, {"text": "Buen ambiente, buen trato y mejor comida", "author": "Raquel Padrón", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210MlNXSllNbGRsVVhwUVFWbFdiR016YVZkYVRYYxAB", "timestamp": "5 months ago"}, {"text": "Muy buen sitio para comer. El servicio y atención es magnífico. Repetiremos. La comida muy buena. Quizás en los postres, concretamente la torrija, no muy acertado.", "author": "R TP", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSa2JUS1BBEAE", "timestamp": "2 years ago"}, {"text": "Fuimos a cenar en Nochevieja y solo tengo buenas palabras. El trato y la atención fueron muy buenos, también la comida y el ambiente.\\nLo recomiendo.", "author": "Patricia Silva", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxeGRxRFJBEAE", "timestamp": "2 years ago"}, {"text": "Sitio excelente para celebrar el día 31 de diciembre. Comida muy buena y ambiente fantástico, camareros fantástico y buen trato. 100% recomendado", "author": "irina Silva Suárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxcVlmazBBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente luga, es un espectáculo! 1000% recomendado !", "author": "Reducing Body", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTlhd1V3EAE", "timestamp": "2 years ago"}, {"text": "¡Qué grata sorpresa y qué maravilla tener un restaurante como este tan cerquita!\\nLa carta es ESPECTACULAR, pero es que si encima, el personal es tan atento, agradable y profesional, hacen de este lugar un indispensable de la ciudad ¡Para repetir y repetir!", "author": "Pilar S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyaGRxZm1BRRAB", "timestamp": "3 years ago"}, {"text": "Comida muy buena y sevicio exquisito.\\nBuena bodega de vinos. Y todo a un paso de Las Canteras. Por poner algún pero, aunque estaba climatizado, pasé un poco de calor", "author": "Vicente M. Ferrer Navarro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ1cXUtTS1nRRAB", "timestamp": "2 years ago"}, {"text": "Una experiencia de 10.\\nEl trato inmejorable, la fusión de sabores en sus platos un espectáculo!¡\\nSi tuviera que recomendar un plato, sería las gyozas de morcón.\\n100% recomendable.", "author": "jennifer granados", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSdGVxNll3EAE", "timestamp": "2 years ago"}, {"text": "Fuimos a comer un grupo de amigos y nos encantó. La ensaladilla está buenísima, lo recomendamos al 100%!! Buena calidad y atención. Volveremos si venimos a Gran Canaria.", "author": "Alfonso Otero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhcDV1X3l3RRAB", "timestamp": "4 years ago"}, {"text": "Lugar excelente, comida brutal, zamburiñas flambeadas en el momento riquisimas, pan bao, palitos crujientes de langostinos, sin duda para repetir ….", "author": "Laura Manzano Fernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3OElPV1F3EAE", "timestamp": "a year ago"}, {"text": "De los mejores restaurantes en los que he comido en las palmas\\nMuy recomendable pedir las zamburiñas el crujiente de langostinos y queso de cabra la pata de cochino a baja temperatura y de postre las milhojas de plátano", "author": "Mario Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWNF9pV0RnEAE", "timestamp": "2 years ago"}, {"text": "Espectacular!!! Todo muy bueno, el servicio inmejorable. Calidad precio excelente….y el guacamole para mi el plato estrella!!!! 100% recomendable", "author": "Constanza Fornieles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURleWFPWkVREAE", "timestamp": "3 years ago"}, {"text": "En mi vida …. Gracias\\n\\nCarpaccio, postre torrija , guiozas pero lo que ya se lleva la palma es el pulpo\\n\\nNada más que añadir , el mejor de gran canaria sin duda\\n\\nIncreíble !!", "author": "Titanium Time", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNiNXJxWW9nRRAB", "timestamp": "a year ago"}, {"text": "Comer no es sólo alimentarse, los humanos somos el único animal que elabora su comida. Sin duda, en no menos de un par de cientos de miles de años, hemos aprendido a mejorar y conservar aquello de lo que nos alimentamos resultando el culto y cultivado humano placer del gusto, que diría Savarin. En el Rincón de Triana se puede, como en ningún otro sitio de Las Palmas, vivir la actualización de aquel largo proceso: las nuevas técnicas de cocina para mejorar los sabores de siempre. Pescado en cocción a baja temperatura, jamás pasado, en todo su sabor y frescura; carrilleras, o cordero, que se deshace en sabores en la boca. Steak Tartare, crudo, cómo no, pero en un punto perfecto si es el gusto.... Así, en una medida variedad, exquisitas preparaciones culinarias fruto del mejor saber.\\nVinos cuidados para acompañar. Y, con todo, precios ajustados.\\nQué más puedo decirles, de lo mejor.", "author": "Ismael García-Romeu Díaz de la Espina", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNa19peVh3EAE", "timestamp": "6 years ago"}, {"text": "Un excelente sitio para degustar buenos platos y pasarlo bien entre amigos o familiares...", "author": "Misael Domingo Rodriguez Lamas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MzVMTERREAE", "timestamp": "a year ago"}, {"text": "Loistava pikkuravintola, joka ulospäin näyttää tavalliselta tapaskuppilalta, mutta on aivan muuta. Ruoka oli erittäin laadukasta, viinilista laaja ja viinien suosittelu osaavaa. Palvelu oli alusta loppuun ystävällistä ja ammattitaitoista. Paras ravintolakokemukseni lukuisien Las Palmasin matkojen aikana.", "author": "Marko Paasonen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCMmZtYW93RRAB", "timestamp": "3 years ago"}, {"text": "Meille tuotiin pyytämättä leipä, josta veloitettiin extra maksu. Ruoka oli hirveää, liha jäi syömättä. Menu hyvin suppea. Ruuan jälkeen erittäin huono olo koko illan ajan. Tarjoilija ystävällinen.", "author": "Lin da", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOUsyRGRBEAE", "timestamp": "3 years ago"}, {"text": "La comida bastante escasa, relación calidad precio poco acorde a las raciones....\\n\\nBuen ambiente y trabajadores entregados, pero creo q eso ayuda, pero no es lo único que se pide cuando se sale a comer...", "author": "Guacy Sos", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCNjZybkJBEAE", "timestamp": "3 years ago"}, {"text": "Un fraude ,la relación calidad precio es pésima,el queso canario era de goma de HiperDino,el solomillo en rodajas estaba seco ,soso y frío,la sal se la echan por encima en el plato no al cocinarlo, se creen que los adornos de crema al oporto mejoran y nada de nada,muy bonito el restaurante pero la imagen no sirve da nada si no das calidad y cocinas mal", "author": "RAMON SANCHEZ", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4cjZyQ1FBEAE", "timestamp": "2 years ago"}, {"text": "Buena comida, buen servicio, ambiente acogedor y agradable. No es nada barato, pero tampoco excesivo. Necesario reservar", "author": "SENDER59", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREbDVMeDJ3RRAB", "timestamp": "a year ago"}, {"text": "Espectacular comida increíble e innovadora y un trato del personal increíble", "author": "Francisco Hernández Ramos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKeVAyZHVBRRAB", "timestamp": "2 years ago"}, {"text": "Excelente experiencia. Jesús el que nos atendió, muy atento y amable. Volveremos seguro.", "author": "Ruben", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRX3JlaFJBEAE", "timestamp": "10 months ago"}, {"text": "Sorprendidos gratamente. Mi familia y yo quedamos encantadisimos al encontrar el que se ha convertido en nuestro restaurante favorito,comida de primera calidad y servicio de diez.Repetiremos sin duda, salimos con muy\\nbuen sabor de boca!", "author": "Janel K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxanF2RTBBRRAB", "timestamp": "4 years ago"}, {"text": "Sitio genial con un trato espectacular, comida muy buena, se nota que hay cariño por el producto que sirven. 100% recomendable.", "author": "Ardiel Estevez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNzhHZ1dBEAE", "timestamp": "Edited 2 years ago"}, {"text": "Todo muy bueno. De las mejoras croquetas que hemos comido, igual que la ensaladilla. Buen trato.\\nVino muy recomendable.\\nBuena calidad - precio.", "author": "Manuel Regal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN3FqRzRRRRAB", "timestamp": "4 years ago"}, {"text": "Fuimos 3 hermanos a nuestro almuerzo de Navidad y estuvo espectacular.La atención del personal fue inmejorable y cada plato que pedíamos nos explicaban el proceso.De lo mejorcito de Las Palmas.Volveremos sin duda.", "author": "Miguel Ángel Díaz Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTbnJpZ21RRRAB", "timestamp": "5 years ago"}, {"text": "Sencillamente espectacular, la atención los camareros, la cocina, los detalles, de los mejores restaurantes en donde haya comido en mi vida. con una cocina de autor y atención exquisita, situado en un entorno paradisíaco como es la playa de las canteras, en las palmas de gran canaria", "author": "IvanJack7x", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdHJTY01BEAE", "timestamp": "5 years ago"}, {"text": "Me ha gustado mucho este restaurante, sobretodo la atención recibida por parte del personal, muy amable y atento, la comida, original y muy buena lo que más la ensaladilla.", "author": "María Sofía Rodríguez Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlME5EVWh3RRAB", "timestamp": "3 years ago"}, {"text": "Lugar encantador, volveremos sin duda. Atención de 10 y la comida es buenísima.", "author": "Gazmira Morales Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQcHYzZFNnEAE", "timestamp": "a year ago"}, {"text": "Maravillosa experiencia culinaria, explosion de sabores y texturas. Local decorado con buen gusto. La atencion impecable. 100% recomendable.", "author": "Miguel Orihuela Naranjo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURScjV1VHZnRRAB", "timestamp": "2 years ago"}, {"text": "Sitio recomendado para comer y tapear, buena calidad / precio, excelente atención por parte de los camareros y el chef. 🧑‍🍳", "author": "Kelly Parra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNINklMRExREAE", "timestamp": "a year ago"}, {"text": "ES-PEC-TA-CU-LAR un lugar bonito y acogedor, donde la comida es hecha y servida con gran cariño y dedicación.\\nPlatos originales como el mojo con espirulina o el guacamole tradicional con un toque personal hecho delante del cliente. Y el solomillo al ajo tostado ...ummmmm una delicia, sin duda repetiré!!", "author": "Lara Palacio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwcnYzTzh3RRAB", "timestamp": "6 years ago"}, {"text": "El mejor restaurante de la isla.\\nTrato excelso\\nProducto de primera calidad.\\nRepetiremos!", "author": "miguel Nogueira romeo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMza05IWG5BRRAB", "timestamp": "a year ago"}, {"text": "Nuevo descubrimiento.Servicio excepcional.Dejaros llevar por los consejos de los profesionales,Ruben y Marc en sala.El dueño,un encanto,de Sevilla.De ahí lo de El rincón de Triana,creo😅.Los cocineros saben lo que hacen y así vuelven los platos a cocina. ..Vacios¡¡¡¡.\\nMuchas Gracias por todo.Volveremos", "author": "ALICIA SUAREZ RIVERO", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhaktET1hBEAE", "timestamp": "4 years ago"}, {"text": "Una carta perfecta en variedad y cantidad de plato. Son explicados todos ellos por un personal muy profesional que siempre está pendiente del cliente. He repetido varías veces y más que volveré", "author": "Jesus Madero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCc1lfWTZBRRAB", "timestamp": "3 years ago"}, {"text": "Nos gustó mucho la calidad del producto y la atención", "author": "Ana Bodero", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pRelZ6RXpla3BxWDJsRGNFUkJWMEY0UW1wbGQxRRAB", "timestamp": "6 months ago"}, {"text": "Hoy hemos estado comiendo aquí por el cumpleaños de mi mujer y la verdad que la comida y el trato espectaculares, repetiremos sin dudarlo!! Hasta le han cantado el cumpleaños feliz!!", "author": "Jordi Masferrer", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXN1B2RnlnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena comida, mejor servicio y atención. De estas sobremesas donde no tienes prisa por irte, ni ellos por que te marches. Se agradece un trato así.", "author": "Miguel Velázquez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDLVBLRjB3RRAB", "timestamp": "5 years ago"}, {"text": "Un lugar muy recomendable que cuida los detalles", "author": "Antonio SANTANA CRUZ", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xwMlFVUk5OVkpwVWtwNFZuaHBiVVJoVkhBMFVsRRAB", "timestamp": "Edited a month ago"}, {"text": "Trato impecable. Platos exquisitos. Precios adecuados. Perfecto para disfrutar de una buena cena. La oferta de vinos es excepcional.", "author": "Smart Max", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhaDRyR3l3RRAB", "timestamp": "4 years ago"}, {"text": "Muy buena opción, con relación calidad precio sobresaliente.", "author": "Miguel Ángel Calvo", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21FNWFHSTVYMnQwUmtndFpGVllNalpqVG1kSGQwRRAB", "timestamp": "7 months ago"}, {"text": "Comida moderna muy buena y dan la opción de comida más tradicional para niños también.\\nCamarero muy simpàtico.\\nHay cerveza cruzcampo.\\nRaciones algo escasas y algo caro.", "author": "Rosa Jimena", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyM0tHcGZnEAE", "timestamp": "3 years ago"}, {"text": "Buen servicio, buena comida, fantástico lugar", "author": "MANUEL CAMARENA ROSA", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tvMVFYVXlTV1kxVmtWVWJXdG1jblJIU3paelZsRRAB", "timestamp": "6 months ago"}, {"text": "Wir waren überrascht von dem sehr gutem Essen, hervorragende Service, bei Beratung der Speisen und Getränke (Weine und der Rum Azehuras) . Alles in allen wirklich gut.\\nMan spricht auch englisch😉", "author": "Uwe Böhler", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSeUtYdWR3EAE", "timestamp": "2 years ago"}, {"text": "Comida buenísima. Los camareros muy pendientes y serviciales.", "author": "Miriam Paréns", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBMlotWFJBEAE", "timestamp": "11 months ago"}, {"text": "Decepcionada la última vez. Las raciones más escasas. Jamón traído ya cortado. Poco vino al servirlo en copas y muy caro. Esta cambiando y es una pena", "author": "Victoria Hernandez", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1N1pIMXBBRRAB", "timestamp": "3 years ago"}, {"text": "El trato espectacular, la comida exquisita, da igual lo que elijas para comer, ningún plato ye defraudará, voy siempre siempre que visito Gran Canaria.", "author": "Maria de la Luz Martin Miguel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPczhYbTlBRRAB", "timestamp": "3 years ago"}, {"text": "Comida deliciosa y camareros que te asesoran muy bien. Únicas pegas el precio y lo poco cuidadas las paredes.", "author": "Jose luis Gascon andreu", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNua0ktZlNnEAE", "timestamp": "a year ago"}, {"text": "He estado tres veces con un grupo grande. La comida exquisita y el trato también. Para repetir.", "author": "yelzhar", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4bW9EUW5RRRAB", "timestamp": "Edited a year ago"}, {"text": "Buena comida y excelente servicio. Roberto muy agradable", "author": "Luis Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3cEtyRDl3RRAB", "timestamp": "10 months ago"}, {"text": "Hoy llovía y me metí en un rincón......\\nY menudo rincón, por casualidad en mi último día en la isla ha sido un homenaje en toda regla. Esta gente ama lo que hace, local, servicio y comida para quitarse el sombrero.", "author": "Victor Moreno", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNbTRQaHR3RRAB", "timestamp": "6 years ago"}, {"text": "De 10! La comida exquisita y el servicio excelente. Para repetir y recomendar sin duda", "author": "Mayte Doldom", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3b29QS19nRRAB", "timestamp": "a year ago"}, {"text": "Restaurante muy recomendable. Excelente atención, especialmente Rafa y Cristian. Muy buena relación calidad precio. Producto bien tratado. Volveré seguro", "author": "Laura Esther", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNMGRYTVp3EAE", "timestamp": "6 years ago"}, {"text": "Einfach nur gut. Absolute Empfehlung, sowohl Ambiente als auch essen. Die guacamole war besonders toll.", "author": "Felix Hartmann", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeE15VjJnRRAB", "timestamp": "3 years ago"}, {"text": "El personal que atiende es increíble pero la comida lastimosamente no lo es tanto… falta más gusto y variedad", "author": "francel iadevaia", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3cWJDeE5BEAE", "timestamp": "a year ago"}, {"text": "Sitio excelente... No tengo palabras...platos elaborados con sabor increíble. Majisimos un trato increíble....vamos para repetir muchas veces!enhorabuena....", "author": "cristina flores", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1X2FPSkdnEAE", "timestamp": "3 years ago"}, {"text": "Comida muy buena, tanto la carne como el marisco. Rápidos, y súper amables 😊", "author": "Nadia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucjR6QXdBRRAB", "timestamp": "a year ago"}, {"text": "Hemos comido genial, platos diferentes y atencion exquisita, todo un acierto en estas vacaciones", "author": "ma pepi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsd3Vic0JBEAE", "timestamp": "2 years ago"}, {"text": "Los platos a destiempo y poca cantidad, el arroz a nuestro juicio estaba pasado, pagar 40 euros por persona y no invitar a una copa siendo más de 25 personas por no decir 30.Era el segundo año, pero ya quedamos que no iríamos más.Los camarer@s fueron geniales e hicieron lo que pudieron.", "author": "winnie", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCbG9yUHdnRRAB", "timestamp": "3 years ago"}, {"text": "Hyvä ruoka", "author": "Susanna Koponen", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmck5uM0pnEAE", "timestamp": "a year ago"}, {"text": "Excelente servicio, muy buena calidad, cantidad adecuada.\\nUn poco ruidoso, sería porque estaban todas las mesas llenas 😊", "author": "Cristina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKbHUyUm5BRRAB", "timestamp": "2 years ago"}, {"text": "Nos gustó todo: la comida, el servicio, los precios, el ambiente… ¡Todo! Lo recomiendo sin duda!", "author": "Lucia Cobi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMeHBDUVJBEAE", "timestamp": "a year ago"}, {"text": "Todo muy bien, lo único, que el local no está bien insonorizado y para grupos, muy ruidoso. Muy buena comida y servicio", "author": "jose garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqaXNTWWZnEAE", "timestamp": "a year ago"}, {"text": "Restaurante muy recomendable comida riquísima servicio y trato muy bueno,se nota la escuela donostiarra 👍", "author": "benito rivera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIeDRXRmNBEAE", "timestamp": "a year ago"}, {"text": "Urig, klein und fein, zwar 50 Meter von der Strandpromenade entfernt, aber es lohnt sich. Wow, was für Speisen. Einzigartig. Sehr zu empfehlen.", "author": "Dieter Assenmacher", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTgtbHRnRRAB", "timestamp": "4 years ago"}, {"text": "100% recomendable!!! Trato excelente, comida exquisita y el personal es maravilloso. Seguro q repetiremos.", "author": "nuria martinez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCa3BQRWhBRRAB", "timestamp": "3 years ago"}, {"text": "Restaurante 100% X 100% recomendable, platos muy elaborados y de buena calidad, trato excelente y profesional, precios muy razonables. Sin duda volveré!!!", "author": "Oscar Muñoz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNcy1qZ1h3EAE", "timestamp": "6 years ago"}, {"text": "Muy recomendable, comida riquísima y bien elaborada, servicio muy atento y unos postres espectaculares", "author": "Fernando Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKdjk3UzZBRRAB", "timestamp": "2 years ago"}, {"text": "esperienza molto positiva,personale gentile e premuroso ,cibo ottimo con prodotti locali,spiegati con pazienza ,posto molto carino ,ci ritorneremo", "author": "Ottone Tassi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURsX09QZkZnEAE", "timestamp": "2 years ago"}, {"text": "La comida estupenda estaba todo buenísimo y el trato excelente, lo recomiendo sin lugar a duda", "author": "Carlos V. A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwMGVhUGV3EAE", "timestamp": "2 years ago"}, {"text": "Comida de calidad y atención de 10. Fusión de comida andaluza y canaria, con ingredientes de calidad y atención cuidada. Recomendables el ladrillo de berenjena, la presa iberica y el \\"polvito\\" de postre :)", "author": "Valme Pozo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbzUtNFFnEAE", "timestamp": "3 years ago"}, {"text": "Paikka ei ulospäin paljon lupaa ja on hieman vaikea löytää ensimmäisellä kerralla mutta ruoka on parhaita mitä olen syönyt koskaan. Vahva suositus.", "author": "tsti ydy", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURocDVtejZ3RRAB", "timestamp": "2 years ago"}, {"text": "Expectacular todo, los crujientes de langostinos de muerte, el servicio buenísimo. Recomendable 100%.Bravo por sitios así. Volveremos sin duda.", "author": "Jimena Aristu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdUpiTDl3RRAB", "timestamp": "4 years ago"}, {"text": "josé y ale muy buen servicio", "author": "Virginia Gallinal Socorro", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aNmJETkRSM0pOZG13elJEQkxORVpmY0RrNFozYxAB", "timestamp": "a month ago"}, {"text": "Todo espectacular, el jamón ibérico, el guacamole exquisito, el carpaccio y las gyozas impresionantes, un 100 sobre 10.", "author": "Nerea Vidal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsek1lbV93RRAB", "timestamp": "2 years ago"}, {"text": "Todo lo que tomamos estaba muy bueno. El servicio muy profesional. El local un poco ruidoso aunque han intentado arreglarlo.", "author": "Marily García-Vaca Pérez", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSa3JyX2F3EAE", "timestamp": "2 years ago"}, {"text": "Platos muy elaborados y muy ricos, muy bien atendidos y explicado cada plato. El precio muy adecuado. Lugar para sorprender.", "author": "Pato Marcos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhNktxaU5BEAE", "timestamp": "4 years ago"}, {"text": "Excellent restaurant, superbe service, qualité des aliments, je recommande fortement cet établissement ! Encore merci pour cet belle soirée.", "author": "Guilhem Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtdmF5aTR3RRAB", "timestamp": "4 years ago"}, {"text": "Ausgezeichnete Küche und beseelter Service! Wir bedanken uns herzlich für die beiden tollen Abende.", "author": "Simon von Styp", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNqMTlQQmRnEAE", "timestamp": "a year ago"}, {"text": "Una muy agradable sorpresa. Excelentes camarones y jamón. Muy recomendable.", "author": "Will Fernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYbmVYenpRRRAB", "timestamp": "a year ago"}, {"text": "La comida muy buena y el trato excelente y el postre celestial si eres dulce disfrutarás con la milhojas de plátano y la tarta de santiago Buen Provecho", "author": "Verónica Monzon Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDaU5xWmxnRRAB", "timestamp": "5 years ago"}, {"text": "Un carta excelente y un servicio de diez, en cuanto atencion y calidad. Producto fresco y bien trabajado. Muy recomendable.", "author": "Pepelu Corleone", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwd1BpNjZ3RRAB", "timestamp": "6 years ago"}, {"text": "Platos bien presentados y exquisitos. Atención muy correcta buen ambiente", "author": "Linda Lopez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxZ3VtanJRRRAB", "timestamp": "2 years ago"}, {"text": "Speisen und Service sind sehr gut, sicherlich höherer Standard, jedoch war mit die Portionsgröße etwas zu klein.", "author": "Nils M", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbktQOGZnEAE", "timestamp": "2 years ago"}, {"text": "Το μαγαζί δεν σου γεμίζει το μάτι αλλά το φαγητό είναι πολύ καλό.", "author": "Constantinus Flavius Valerius", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNmc3J1aGhBRRAB", "timestamp": "a year ago"}, {"text": "La comida excelente y la atención de Jesús muy muy buena muy profecional y atento os recomiendo muy bueno", "author": "Mariano Gutierrez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNRX3YzVHJ3RRAB", "timestamp": "10 months ago"}, {"text": "Ristorante piccolo, accogliente, personale presente cibo buono. Lista dei vini ok.", "author": "Mauro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlb0l5elBBEAE", "timestamp": "3 years ago"}, {"text": "Servicio y comida estupendos. Todo un descubrimiento. Los tiempos entre platos nos parecieron excesivos. Así todo, totalmente recomendable", "author": "Pilar Barquín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURha296cklnEAE", "timestamp": "4 years ago"}, {"text": "Esta restaurante es fácil para encontrar . No puedo encontrar algunos errores con la comida . Tu puedes dar cuenta que ellos saben como cocinar ellos pueden estar orgulloso en su trabajo.", "author": "Duncan Stone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2MzdIakJ3EAE", "timestamp": "4 years ago"}, {"text": "Sitio excelente, el metre Mario es de los mejores de la ciudad, otro restaurante que hace crecer a la ciudad como destino gastronómico, gracias por darnos la oportunidad de saborear vuestros platos.", "author": "javi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNza0lDVHV3RRAB", "timestamp": "6 years ago"}, {"text": "Estaba todo riquisimo, un sitio muy recomendable.", "author": "Cristina Diaz Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnM3N5WFJREAE", "timestamp": "11 months ago"}, {"text": "Tolles Ambiente, freundlicher Service und gute Weinberatung. Der Iberico der beste, den ich je gegessen habe.", "author": "SusanneVerena", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURac01fNUl3EAE", "timestamp": "2 years ago"}, {"text": "Comida excelente y bien presentada. Servicio esmerado. Sin duda para repetir y recomendar", "author": "Jovanetta Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNadWQzQ1hnEAE", "timestamp": "2 years ago"}, {"text": "Muy rico todo trato muy bueno siempre pendientes era un día especial para la familia y no nos defraudaron muchas gracias", "author": "Montse", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cmZLRWxRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Comida y trato al cliente inmejorable. De los mejores lugares donde he comido en Las Palmas.", "author": "J", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIa1lESkt3EAE", "timestamp": "a year ago"}, {"text": "Comida excelente y servicio maravilloso. Mi nuevo restaurante favorito en Las Palmas!!", "author": "Helen Martín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN0bE0yNkNBEAE", "timestamp": "a year ago"}, {"text": "Efectivamente es un rincón,pero de triana nada.Bastante caro y muy poca cantidad en los platos,si quieres pagar mucho por un degustacion que no esta mal adelante es tu sitio", "author": "Toni Lionblanco", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR5bnBXSjdBRRAB", "timestamp": "4 years ago"}, {"text": "Una Maravilla.\\n\\nLugar muy cuidado, profesionalidad en todo momento y calidad espectacular en sus platos.\\n\\nEnhorabuena", "author": "Luis Ruiz de Alarcón Quintero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cU9ENHp3RRAB", "timestamp": "2 years ago"}, {"text": "El sitio es espectacular y si llamas con antelación preparan un menú vegano exquisito.", "author": "Consulta médica", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5bW9QSFhnEAE", "timestamp": "a year ago"}, {"text": "La atención muy buena y la comida riquísima. Fuimos a comer sin conocer el local y fue un acierto.", "author": "Luis Fernández López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4aGRUSTZnRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Nous avons été très bien accueillis et la cuisine est excellente !!!!", "author": "julie VICENZI", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqajViR3p3RRAB", "timestamp": "a year ago"}, {"text": "Me ha gustado mucho la comida y el servicio,personas agradables que te hacen pasar un buen rato.Repetiremos.", "author": "Carolina Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNKcnBxdXpnRRAB", "timestamp": "2 years ago"}, {"text": "Una atención excelente y un menú delicioso realizado con productos de primera calidad. Me ha encantado", "author": "Alicia Pozo Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlakxyaTNBRRAB", "timestamp": "3 years ago"}, {"text": "Estaba todo buenísimo, el servicio muy bueno .\\nEn general todo super bien 👍👍😁", "author": "Pedro Tello", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3MkplNGdBRRAB", "timestamp": "a year ago"}, {"text": "Fuimos en la cena de empresa, comimos muy bien, todo muy bueno.\\nCamareros muy amables.\\nMuy buen ambiente.", "author": "Beatriz Fernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtaGFTTml3RRAB", "timestamp": "3 years ago"}, {"text": "Es un restaurante que no te deberías de perder si vienes a gran canaria.un trato excelente del personal y una comida esquisita.lo dicho no te lo pierdas.yo repetiré alguna vez más.", "author": "Rafael García Cuerva", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHMWZDd21BRRAB", "timestamp": "4 years ago"}, {"text": "Hemos ido 3 veces tanto de cena colo almuerzo,la comida es minimalista con calidad/precio lo recomiendo", "author": "Cameli Orosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNSbU4yV3hBRRAB", "timestamp": "2 years ago"}, {"text": "Espectacular trato y servicio. Producto de calidad y bien tratado. Es una gran experiencia. Recomendable 100%", "author": "Alberto M.L.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1eDUzWEd3EAE", "timestamp": "3 years ago"}, {"text": "Excelente servicio y muy buena calidad de los platos. Volveré sin duda", "author": "Irene Santana Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSeVkyR3NBRRAB", "timestamp": "2 years ago"}, {"text": "Judiones con carrilleras, croquetas, pan bao y sama con salsa de foie", "author": "René Padrón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvbHBleVdREAE", "timestamp": "9 months ago"}, {"text": "Une bien jolie découverte à Las Palmas !\\nExcellente adresse… un service irréprochable avec le sourire !\\nMerci beaucoup", "author": "Élisabeth B", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4cklIdW9nRRAB", "timestamp": "2 years ago"}, {"text": "Productos de primera muy bien tratados. Servicio muy atento profesional y muy agradable.", "author": "Jm Bl", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQdnFuZjFBRRAB", "timestamp": "a year ago"}, {"text": "Calidad-precio en la media. Muy buen trato y la comida muy buena. La paletilla se deshacía en la boca.", "author": "Jorge AG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtcmN5b0dnEAE", "timestamp": "3 years ago"}, {"text": "Personal sobrio y acogedor. La comida una delicia. Me pedí el solomillo.", "author": "eduard tapia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYOTlUd0R3EAE", "timestamp": "a year ago"}, {"text": "Excelente ubicación, ambiente muy agradable y una comida exquisita. Desconozco los precios porque era una comida de empresa. Muy recomendable.", "author": "Balbu", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzNzk3OEJBEAE", "timestamp": "5 years ago"}, {"text": "Una exquisitez de sabores, un buen equipo de trabajo y un gran nivel culinario... que te hacen sentir como en casa.\\n¡ FELICIDADES FAMILIA!", "author": "Luz Marina Sarmiento Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtbmZqeFZ3EAE", "timestamp": "3 years ago"}, {"text": "El jamón es de primera calidad. Muy bien cortado. Platos muy bien elaborados", "author": "David", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNScnYtTE9REAE", "timestamp": "2 years ago"}, {"text": "Sitio perfecto para comer o cenar. Trato familiar, comida sabrosa. Recomendable 100%", "author": "Mercy Delgado", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXcWIyUnFBRRAB", "timestamp": "Edited 3 years ago"}, {"text": "El personal muy amable y la comida muy buena y variada.", "author": "Josue R.S", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzLWQ3ME5BEAE", "timestamp": "a year ago"}, {"text": "La comida es muy buena, de mucha calidad y diferente a lo que te suelen ofrecer otros restaurantes.", "author": "MIGUEL ANGEL SANTANA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxcl9MNkJ3EAE", "timestamp": "4 years ago"}, {"text": "Comida muy buena, relación calidad precio bien,y, sobretodo,excelente servicio,personal educado, profesionales muy agradables", "author": "lola sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURPbl9LUFd3EAE", "timestamp": "3 years ago"}, {"text": "Mejor imposible, trato del personal maravilloso, comida estupenda....el carpaccio y la gyoza todo un espectáculo para el paladar.....100% recomendable.", "author": "Andres Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMjhQeEtBEAE", "timestamp": "Edited 2 years ago"}, {"text": "muy buenos todos los platos, originales, muy bien presentados, bien servidos y explicados, un sitio recomendable 100 por 100", "author": "Maria Angeles", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhMjVicVNBEAE", "timestamp": "4 years ago"}, {"text": "Un restaurante referente en Las Palmas de Gc, inmejorable en calidad precio y el personal un 10/10. Enhorabuena!", "author": "Dani Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURGeU9PR1FBEAE", "timestamp": "2 years ago"}, {"text": "Restaurante acogedor, trato y profesionalidad, muy buena, la propuesta de carta variada y bien cocinada.", "author": "Jesus D.A", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMtME9lanJRRRAB", "timestamp": "3 years ago"}, {"text": "Un lugar ideal con una cocina excelente y un servicio de sobresaliente\\nSin duda, lo recomiendo 100%", "author": "Isabel Valdés", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNobmNlN2RnEAE", "timestamp": "2 years ago"}, {"text": "Perfekt bedient, perfekte Speisen! Gute Weine und super lecker!", "author": "Jonas Jansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURWXzltc2ZREAE", "timestamp": "2 years ago"}, {"text": "Gran sitio para degustar platos de toda la vida de un forma diferente y con un toque personal. Recomendado al 100%.", "author": "Ivan San Juan", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURtdXQ3QjVnRRAB", "timestamp": "4 years ago"}, {"text": "Un servicio espectacular y comida muy exquisita. Me ha sorprendido gratamente.", "author": "Cristina González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN0aVBtQUt3EAE", "timestamp": "2 years ago"}, {"text": "Genial, excelente calidad de la materia prima, buena carta de vino, muy buen servicio, precio correcto", "author": "Melanie Lebourgeois", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwaXYzT2lRRRAB", "timestamp": "6 years ago"}, {"text": "Un restaurante que no necesita espectáculo para amenizar la comida por qué la comida ya es un espectáculo....\\nProbar la ensalada de espuma de manzana....", "author": "Oliver", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIODdiakFnEAE", "timestamp": "a year ago"}, {"text": "Sehr leckeres Essen, eine gute Weinempfehlung dazu und ein aufmerksamer Service.", "author": "m w", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxb3ZXRm53RRAB", "timestamp": "2 years ago"}, {"text": "Como siempre la comida y atención inmejorables. Siempre que podemos nos damos un saltito. Recomendable al 100 %", "author": "Guille Carvajal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQycXV1d21RRRAB", "timestamp": "3 years ago"}, {"text": "Uno de los mejores sitios donde comer en Canarias y el trato exquisito. Precio calidad ✅️", "author": "Jorgelina Cabrera Reyes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPdU1mNS1RRRAB", "timestamp": "3 years ago"}, {"text": "Sitio recomendado, comida muy buena y buen trato.", "author": "Airam Peraza", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURJa29tR0xBEAE", "timestamp": "9 months ago"}, {"text": "Servicio y comida inmejorable, camarero explica todos los platos y sabores, el mejor de la zona con diferencia.", "author": "Claudia Maldonado Morales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlemRyeDV3RRAB", "timestamp": "3 years ago"}, {"text": "Un lugar donde el buen comer te hace vivir una experiencia espectacular.\\nEnhorabuena por el buen hacer, volveremos.", "author": "José Manuel Begines Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURha1lxR1FBEAE", "timestamp": "4 years ago"}, {"text": "Producto de altísima calidad, servicio a la altura y elaboración creativa. Ne alegra mucho este tener este nivel en Las Palmas", "author": "CENTRO NEO PSICOLOGOS SCP", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXN19qTHVBRRAB", "timestamp": "3 years ago"}, {"text": "Anspråkslös lokal men suverän service och framför allt modern god mat och bra viner, rekommenderas varmt!", "author": "Danne Johansson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtdTdfS2J3EAE", "timestamp": "4 years ago"}, {"text": "Tanto la atención, el trato, servicio, producto y precio, perfecto! Un lugar para ser asiduo, sin duda alguna.", "author": "Jose Lorenzo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2ai1PanZRRRAB", "timestamp": "4 years ago"}, {"text": "Excelente servicio y atención, alimentos frescos, menú original y único, una experiencia muy grata.", "author": "J SC", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ0czRtVk5nEAE", "timestamp": "6 years ago"}, {"text": "Es la primera vez que vamos, los camareros y lo que pedimos muy bien", "author": "Beatriz Quiros", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcHFLeGhnRRAB", "timestamp": "2 years ago"}, {"text": "Excelente calidad productos y servicio y sobretodo el camarero Moisés aconsejo el jamón", "author": "Jesus Abad Rica", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtZzliMTF3RRAB", "timestamp": "3 years ago"}, {"text": "Muy buena cocina española con excelente atención al cliente al lado de la playa de Las Canteras", "author": "Alfonso C. Saavedra Romero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXdjQtODhnRRAB", "timestamp": "3 years ago"}, {"text": "Simplemente espectacular. Nos lo recomendaron y la verdad que no ha defraudado. Muchas gracias !!", "author": "Manuel Ramos Santana", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxN3AySWdnRRAB", "timestamp": "2 years ago"}, {"text": "Local muy recomendable. La comida muy rica y el servicio excelente.", "author": "Guille Crucera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNscF9tTlhnEAE", "timestamp": "Edited a year ago"}, {"text": "Comida de 10. Servicio muy atento y amable. Una cena muy agradable.", "author": "B Perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURldDdidm13RRAB", "timestamp": "Edited 3 years ago"}, {"text": "Todo muy rico. Y el personal muy amable y atento.", "author": "Antonio I Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzanRmeURBEAE", "timestamp": "a year ago"}, {"text": "Lugar muy agradable y la comida muy buena.\\nEl servicio de lo mas atentos.", "author": "Erenia Portillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGNXF5cHZ3RRAB", "timestamp": "2 years ago"}, {"text": "Comida buena ,intentan innovar pero te cobran 1,20 por la ración de pan. Calidad precio bien.", "author": "Pili Ballabriga", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2c09hbjhRRRAB", "timestamp": "4 years ago"}, {"text": "Trato muy profesional, atento. La comida muy rica, para paladal en cerca de sapores nuevos.", "author": "Laura Cucculelli", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwci1US1pnEAE", "timestamp": "6 years ago"}, {"text": "Relación calidad precio muy buena.\\nMe sorprendió el crujiente de Langostinos muy bueno 👌", "author": "Ramón González Peña", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCMHBuWFpREAE", "timestamp": "3 years ago"}, {"text": "Platos elaborados y diferentes.\\nBuena presentación, buen servicio y muy buena ubicación.", "author": "Luz Coba", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwal9IdjFRRRAB", "timestamp": "2 years ago"}, {"text": "Muy recomendable, jamón de primera, todo riquísimo y bien servicio", "author": "VH7 _pro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldllLYUVREAE", "timestamp": "Edited 2 years ago"}, {"text": "Excelente la comida y la atención!\\nRecomendado el guacamole que te lo preparan en frente y la ensaladilla rusa con langostinos.", "author": "Jorge Andres Otero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDcGJiNVZBEAE", "timestamp": "5 years ago"}, {"text": "Calidad del producto,trato exquisito y precios ajustados.sitio para repetir frecuentemente...por cierto...la torrija de la abuela... superior", "author": "Antonio Mendoza Cano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDX3J1d2N3EAE", "timestamp": "5 years ago"}, {"text": "Comimos el sábado y fenomenal, tanto la comida como el servicio", "author": "Marisa Marcos", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURicjhpN3N3RRAB", "timestamp": "a year ago"}, {"text": "Restaurante ubicado en la playa de laa Canteras. Buena comida recomendable nos gusto mucho su jamón.", "author": "Macpalomax", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2X3FyRGZREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Елена", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210bGF6bFVNR05oYlVkVE5WWnpRMkpwVVZGNVFVRRAB", "timestamp": "a month ago"}, {"text": "100x100 recomendable... Profesionales tanto en cocina como en sala. Encima, buenas personas. Sigan igual.", "author": "Alby Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpdVBMNmJBEAE", "timestamp": "5 years ago"}, {"text": "Aivan mahtava ruokaa. Pääruokana lihaa ja jälkiruokana pannukakkua jäätelöllä. Aivan mahtavaa.", "author": "Johan Järvinen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEX04tRU5REAE", "timestamp": "a year ago"}, {"text": "Buenísima la comida y mucho mejor el trato, me encanta este sitio.", "author": "Inmaculada García Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNpNXJqUFZBEAE", "timestamp": "Edited 2 years ago"}, {"text": "La comida súper buena y el servicio genial. Nos encantó!!", "author": "Vanesa Del Pino Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1MVBQTHdRRRAB", "timestamp": "3 years ago"}, {"text": "Comida deliciosa y el personal muy atento en todo momento. Muy recomendable.", "author": "Antonio Francisco Manzano Acosta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtcXZ1eWRREAE", "timestamp": "3 years ago"}, {"text": "Muy buen servicio, la gente super amable y la comida excelente a buen precio!", "author": "Mariona Figueras Barceló", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMkp5NE9nEAE", "timestamp": "3 years ago"}, {"text": "La comida muy buena la atención también.\\nEl inconveniente es que había un grupo de señoras gritando mucho y no supieron gestionarlo.", "author": "Mª Luisa Mellado", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwaWY2ZlF3EAE", "timestamp": "6 years ago"}, {"text": "Buen trato y muy buena comida. También cuentan con variedad de vinos", "author": "Daniel Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzejZ1US13RRAB", "timestamp": "5 years ago"}, {"text": "Muy buen servicio, exquisito cochinillo. Muy recomendable", "author": "Maria Soraluce", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURIcFAzX0RREAE", "timestamp": "a year ago"}, {"text": "Una atención adecuada acompañada de platos bien preparados. El vino a su temperatura.", "author": "Clemente Bobis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM0emNDLUF3EAE", "timestamp": "6 years ago"}, {"text": "Sorprende los sabores y el trato exquisito, repetiremos. Enhorabuena!!", "author": "MARI CARMEN LR", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1aXNxbTlBRRAB", "timestamp": "2 years ago"}, {"text": "Buen ambiente, acogedor, moderno, su personal un diez. La comida acércate hasta allí y compruébalo por tí mismo", "author": "maria Cristina Dosil López", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURNczdfaEt3EAE", "timestamp": "6 years ago"}, {"text": "Nicht verpassen, Essen und Service gehoben, Atmosphäre und Preise nicht abgehoben!", "author": "Rolf Schu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxLXRPWTJRRRAB", "timestamp": "2 years ago"}, {"text": "Muy bien. Un trato excelente. La comida exquisita.", "author": "Joseba Mendiguren", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlM3RiMDJBRRAB", "timestamp": "3 years ago"}, {"text": "Comida sorprendente por novedosa y rica.\\nEl trato súper profesional y calido", "author": "Cristobal Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTOGIyTElREAE", "timestamp": "5 years ago"}, {"text": "Comida riquísima. Muy buena experiencia aquí y personal muy simpático.", "author": "Anaëlle Rgmt", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURramFDQ01BEAE", "timestamp": "6 years ago"}, {"text": "Lugar donde tomarse una cerveza bien fria", "author": "Familia Pascual", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJbDRMMEh3EAE", "timestamp": "9 months ago"}, {"text": "Muy recomendable, ojalá abran en Tenerife", "author": "María Jesús Brito Cabrera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUN3NHJMM29BRRAB", "timestamp": "10 months ago"}, {"text": "Sehr lecker. Tolles Restaurant, auch für einen leckeren Mittagstisch.", "author": "Matthes Müller", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2cmEydEpnEAE", "timestamp": "4 years ago"}, {"text": "Muy buen servicio y buena comida. Altamente recomendable. Gracias", "author": "Carmen RS", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtN01lUzlBRRAB", "timestamp": "4 years ago"}, {"text": "¡Me encanta!y ya estamos programando la próxima visita.", "author": "Isabel Sánchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqMXJYZGlRRRAB", "timestamp": "a year ago"}, {"text": "Visita obligada. Con una cocina y trato espectacular. Mejor imposible!!!", "author": "Fran Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURlc3JxWm5BRRAB", "timestamp": "3 years ago"}, {"text": "100% recomendable. Comida y servicio increíble.", "author": "Olivia Rodriguez Benitez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqdmE3NFpnEAE", "timestamp": "a year ago"}, {"text": "Excelente. Para repetir.\\nBuena comida y buen servicio", "author": "José Ramón Melián", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtMnJQYUpnEAE", "timestamp": "4 years ago"}, {"text": "Todo ya experiencia. Excelente!\\nBuena comida y servicio.", "author": "El correo que uso", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNuaV9YcnR3RRAB", "timestamp": "a year ago"}, {"text": "Heerlijk gegeten, vriendelijke bediening. Aanrader…", "author": "jacqueline jansen", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSMEotdUN3EAE", "timestamp": "2 years ago"}, {"text": "Fantástica comida, buen servicio..más que recomendable!!", "author": "Meritxell Ribas Boned", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNONGY2MXFRRRAB", "timestamp": "2 years ago"}, {"text": "El mejor sitio de gran canaria para comer i cenar y el trato inmejorable", "author": "Jose Fernández linares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwcXBHZHZ3RRAB", "timestamp": "2 years ago"}, {"text": "Personal muy agradable y comida exquisita. Muy recomendable.", "author": "Fermín S", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlcjk2dHJnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buen ambiente y precios correctos. Recomendadisimo", "author": "Ksb Haba", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKM0x2bERnEAE", "timestamp": "2 years ago"}, {"text": "Comida y servicio de 10. Lo único malo el ruido ambiente.", "author": "María Maeso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3NXZDbmN3EAE", "timestamp": "a year ago"}, {"text": "Magnífica atención y platos excelentes con productos de primera calidad.", "author": "Alexandre Sanjorge", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVZ3I2OTlBRRAB", "timestamp": "6 years ago"}, {"text": "Un lugar agradable con comida rica y un servicio muy muy de agradecer, totalmente recomendable", "author": "Naira Bethencourt", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4cUpteDRRRRAB", "timestamp": "2 years ago"}, {"text": "Comida y personal excelente.\\nHay que probar toda la carta.", "author": "Francisco Fernández de Piñar Lorenzo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHLVlmVTdnRRAB", "timestamp": "4 years ago"}, {"text": "Lugar perfecto para una buena comida, todo buenísimo y la atención inmejorable!!", "author": "Sandra Pozo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSaS1yV0hBEAE", "timestamp": "2 years ago"}, {"text": "Comida muy bien preparada y presentada. Tarda un poco.", "author": "Uwe Kohn", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsa1pxYWdRRRAB", "timestamp": "2 years ago"}, {"text": "Me encantó, tanto la comida como el trato del personal. \\"Pedazo de ARROZ\\"", "author": "Rosa Maria Martin Ojeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMTlTc0pnEAE", "timestamp": "6 years ago"}, {"text": "IMPRESIONANTE, parada obligatoria, experiencia gastronómica super Top!!", "author": "Victor Manuel Garcia Perez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4ME0yMFZ3EAE", "timestamp": "2 years ago"}, {"text": "Realmente muy bueno, el cervicio y la comida, verdaderos profesionales,muy recomendables", "author": "Luis Valdivia", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNHb3ZfVUdBEAE", "timestamp": "4 years ago"}, {"text": "Todo buenísimo y trato espectacular.", "author": "Azuleida Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYM2RqV3BBRRAB", "timestamp": "a year ago"}, {"text": "Fabuloso en todo lo que puedes desear de un buen restaurante", "author": "Alfredo “INNOVALIA” Rivero Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURseEphNzJ3RRAB", "timestamp": "2 years ago"}, {"text": "Sehr leckeres Essen kann ich nur empfehlen", "author": "Angela Steen", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkMHNlSzBBRRAB", "timestamp": "a year ago"}, {"text": "Huevos estrellados più buono dell' isola, crocchette spettacolari", "author": "michele lenci", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4b3VlN1Z3EAE", "timestamp": "2 years ago"}, {"text": "Heel lekker en vriendelijk personeel.", "author": "Aouatif Fetah", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNiOHZmT0pBEAE", "timestamp": "a year ago"}, {"text": "Hervorragendes Essen- Speisen werden teilweise am Tisch frisch zubereitet.", "author": "Nicole Schröder", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNteGVLeV9nRRAB", "timestamp": "4 years ago"}, {"text": "Comida muy buena. Servicio inmejorable. Para repetir.", "author": "Andrea Santana Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxcm9MMjBRRRAB", "timestamp": "4 years ago"}, {"text": "Un lugar estupendo, posiblemente la mejor comida, el mejor servicio y la mejor terraza de Triana.", "author": "Ana Maria Begines Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURvM3B5YWZ3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Un buen lugar para salir de las papas arrugás, servicio atento y amable, muy recomendable!", "author": "Luis Recuero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2cnJEcVJnEAE", "timestamp": "4 years ago"}, {"text": "Muy rico todo y buen precio", "author": "Elisa Moreiras", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPeWVLMTlBRRAB", "timestamp": "3 years ago"}, {"text": "Creo que es un poco caro, para el producto que tienen en carta", "author": "Manolo Dominguez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUREZ2JQVmlBRRAB", "timestamp": "a year ago"}, {"text": "Excelente servicio, buena relación calidad precio", "author": "luis sainz-rozas", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNEdy1xOFRREAE", "timestamp": "a year ago"}, {"text": "Buena atención y muy buena materia prima. Un agradable almuerzo", "author": "J.M. P.R.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHX29YRFlBEAE", "timestamp": "4 years ago"}, {"text": "Muy rico, buenas porciones.", "author": "Laura Blumberg", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCZ1BXOWpRRRAB", "timestamp": "3 years ago"}, {"text": "Nos ha encantado. La comida y la atención buenísimo", "author": "ESCUELA INFANTIL LITTLE STAR", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLeUtYSU1nEAE", "timestamp": "4 years ago"}, {"text": "Uno de los mejores restaurantes de la ciudad de Las Palmad, esquisto!", "author": "Jan K", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwODVmVTZBRRAB", "timestamp": "2 years ago"}, {"text": "Sitios espectacular!!!... atención de estrellas Michelín y comida de 10.", "author": "Isma Rosa orte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNheE5uZ1lBEAE", "timestamp": "4 years ago"}, {"text": "Servicio rápido y atento y la comida excepcional!", "author": "María", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4djl1RFpREAE", "timestamp": "2 years ago"}, {"text": "Me encanta. Ya es uno de mis favoritos. Excelente en todo.", "author": "Carlos Artiles Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxdHFtazJBRRAB", "timestamp": "4 years ago"}, {"text": "Servicio lento. Platos que no se parecen en nada a los andaluces. Un salmorejo aguado...", "author": "Pablo Atoche", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbWZETWdBRRAB", "timestamp": "5 years ago"}, {"text": "Heerlijk eten en top personeel!", "author": "Suzanne", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROZzdXOS1nRRAB", "timestamp": "2 years ago"}, {"text": "Comida excelente, y el trato muy bueno, volveré", "author": "Maria Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2amIzUzB3RRAB", "timestamp": "4 years ago"}, {"text": "Genial, comida excelente, atención muy buena..", "author": "Alexis Martín Falcón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMyOEtuTUV3EAE", "timestamp": "Edited a year ago"}, {"text": "Todo estaba exquisito, y el personal excelente", "author": "Carmen Delia Navarro Chinea", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNWNjd1ZVhnEAE", "timestamp": "2 years ago"}, {"text": "Excellente", "author": "Candido Arias", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJenF2QW5nRRAB", "timestamp": "9 months ago"}, {"text": "Excelente comida en grupo con amig@s", "author": "Nicolas Claver Sanchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6NGZuek13EAE", "timestamp": "Edited a year ago"}, {"text": "Muy buena comida y la atención muy buena exquisito", "author": "intruder intruder", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2M09tclZ3EAE", "timestamp": "4 years ago"}, {"text": "Magnífico, comida y servicio de mucha calidad, un restaurante para volver.", "author": "Antonio Lopez Diaz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZMklhSDF3RRAB", "timestamp": "6 years ago"}, {"text": "Muy buena comida y un servicio agradable y amable.", "author": "JUAN JOSE PAREJO CURADO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZNUk2N2hnRRAB", "timestamp": "6 years ago"}, {"text": "Excelente comida, servicio y calidad. Lo recomiendo.", "author": "maría luisa ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2eUw3V0RBEAE", "timestamp": "4 years ago"}, {"text": "Espectacular el trato y la comida , repetible 100%", "author": "Lidia Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlOE8zdnVBRRAB", "timestamp": "3 years ago"}, {"text": "Muito bom, recomendo!", "author": "helder antunes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VKaTZ1YWU0LXQyMTRBRRAB", "timestamp": "8 months ago"}, {"text": "Super lecker aber etwas zu teuer.", "author": "Julia Kurt", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5aGRyc2lnRRAB", "timestamp": "a year ago"}, {"text": "Buen servicio y calidad. Sin duda, completamente recomendable.", "author": "Roberto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURjNi11R2FBEAE", "timestamp": "5 years ago"}, {"text": "Un 10! Para repetir! Servicio y comida impecable! 💪", "author": "and Lp", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cGNLSjJRRRAB", "timestamp": "5 years ago"}, {"text": "Servicio y comida divinos, es muy recomendable.", "author": "esmeralda de la fuente", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ1Nm83YWNREAE", "timestamp": "2 years ago"}, {"text": "Comida muy buena.Algo de calor", "author": "Remi Bordón", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURENnJmUWFBEAE", "timestamp": "Edited a year ago"}, {"text": "Camareros fantásticos, comida muy rica.", "author": "FERNANDO MENDOZA", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4dC1ucGx3RRAB", "timestamp": "2 years ago"}, {"text": "Muy buena atención y la comida muy rica,lo recomiendo", "author": "Ángeles Rodríguez Cuellar", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4b3ZiTkJnEAE", "timestamp": "5 years ago"}, {"text": "Genial!\\nWer authentische spanische Küche sucht ist hier richtig!", "author": "Ach Wasweissich", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpaWNDNm13RRAB", "timestamp": "5 years ago"}, {"text": "Muy buena la comida ,la carne y el pulpo", "author": "skatehip SK", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwdmZTX0hREAE", "timestamp": "2 years ago"}, {"text": "Platos bien elaborados y excelente servicio", "author": "CRM", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhbUlmdDRnRRAB", "timestamp": "4 years ago"}, {"text": "Ufffff, lujo en la playa a escasos 30 mtrs del charcon", "author": "nicolas jose garcia fontes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4Ny1HeHhBRRAB", "timestamp": "5 years ago"}, {"text": "Der iberische Schinken und das Tatar sind sehr empfehlenswert.", "author": "Oliver Schröder", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtenRITTJ3RRAB", "timestamp": "4 years ago"}, {"text": "Una apuesta segura! Profesionales y buen género", "author": "D&L", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURSN3NtT0hBEAE", "timestamp": "2 years ago"}, {"text": "La comida excelente y muy buena atención", "author": "Pino Santaella", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCbHFyV3BRRRAB", "timestamp": "3 years ago"}, {"text": "Relación calidad precio muy buena m la atención muy buena", "author": "Miguel García", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDanBuOUxREAE", "timestamp": "5 years ago"}, {"text": "Encantada con todo, muy buena experiencia", "author": "Maribel López", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURkbDZteDNnRRAB", "timestamp": "Edited a year ago"}, {"text": "La comida y la atención muy buena ..volveremos", "author": "Rosa Perez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlclp5QXJnRRAB", "timestamp": "3 years ago"}, {"text": "Personas súper groseras, sobre todo el “dueño” no le recomiendo nunca en la vida !", "author": "Caribay Segura", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoaGVDMndRRRAB", "timestamp": "2 years ago"}, {"text": "Todo exquisito y la atención buena.\\nLo recomiendo", "author": "Janet", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNtNU8zSDJnRRAB", "timestamp": "4 years ago"}, {"text": "Nos encantó,repetiremos ,muy recomendado", "author": "Desiree Estupiñan Estevez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURabXN6S0FREAE", "timestamp": "2 years ago"}, {"text": "Muy buen sitio para comer.", "author": "Alicia Gabriel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKdGJLQUxREAE", "timestamp": "2 years ago"}, {"text": "La comida es increíble y el trato inigualable", "author": "samuel Rodríguez Montero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ5eElIcC1nRRAB", "timestamp": "a year ago"}, {"text": "Buen servicio. Buena comida. Seguridad", "author": "Mireya Gloria Jiménez Jaén", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4NzgzQjdBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente en comida servicio y ambiente.", "author": "luiyis agudelo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObDlPSmFnEAE", "timestamp": "2 years ago"}, {"text": "Una experiencia maravillosa, atención, calidad precio.", "author": "Rosy Calderín", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQtNk9fQVhREAE", "timestamp": "3 years ago"}, {"text": "Excelente,gratificante experiencia y maravilloso trato humano", "author": "Luis Carlos Lorenzo Martin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhN29ha3h3RRAB", "timestamp": "4 years ago"}, {"text": "Muy bueno y cada vez mejor", "author": "Romen Santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURaX3F2WXVBRRAB", "timestamp": "2 years ago"}, {"text": "Increíble. Una atención espectacular, no faltó de nada.", "author": "cristina castellano rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTNjhfNHB3RRAB", "timestamp": "5 years ago"}, {"text": "Servicio y comida increibles, gracias por todo, volveremos", "author": "Francisco Javier Muñoz Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZMjZQdWJnEAE", "timestamp": "6 years ago"}, {"text": "Comida excelente y atención genial, totalmente recomendable", "author": "Jesus Poch", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDMjlUa09BEAE", "timestamp": "5 years ago"}, {"text": "Lugar agradable con comida rica y buen servicio", "author": "Fco. Javier Hernando de Diego", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROejR1Xy1BRRAB", "timestamp": "2 years ago"}, {"text": "Te sientes como en casa", "author": "Mayela Gómez Medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqMGRMSGxnRRAB", "timestamp": "a year ago"}, {"text": "Calidad de la comida y servicio un 10..!!\\nVolveré...", "author": "Carles Caldentey", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscFlqcTZBRRAB", "timestamp": "2 years ago"}, {"text": "Simplemente perfecto, tanto el trato como la comida.", "author": "AVMC", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2ek9LcWhBRRAB", "timestamp": "4 years ago"}, {"text": "Cuando se pone corazón y ganas las cosas salen bien", "author": "luis Calvo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxdkxiWmVnEAE", "timestamp": "4 years ago"}, {"text": "sensationelles Essen & sehr guter Service", "author": "Benno Weber", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0NWJLcDdBRRAB", "timestamp": "a year ago"}, {"text": "Gran trató y un excelente servicio muy atentos.", "author": "jacob brito", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aU9pZ0lBEAE", "timestamp": "4 years ago"}, {"text": "Riquísimo. Muy recomendable", "author": "Olga Garcia Jorqui", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bklUZUxREAE", "timestamp": "3 years ago"}, {"text": "Por todo, sitio 100% recomendable", "author": "gloria rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyMU5UYThBRRAB", "timestamp": "3 years ago"}, {"text": "Fantasía, muy bueno todo 🤤", "author": "Adrian Rey Nieto", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbklHR05BEAE", "timestamp": "2 years ago"}, {"text": "Excelente servicio y la comida buenísima!", "author": "Cristina Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDX3NhSDNnRRAB", "timestamp": "5 years ago"}, {"text": "Comida riquísima y atención excepcional.", "author": "noemi benitez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4NmZuOGdnRRAB", "timestamp": "5 years ago"}, {"text": "Maravilloso", "author": "Juan carlos Cárdenas Martines", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4cmMydFRlRFptVFVWeE5YcHJTSE51V2pGNGRHYxAB", "timestamp": "4 months ago"}, {"text": "Magnífico la atención y el producto, repetiremos.", "author": "Prudencio Castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPNWJLQjlBRRAB", "timestamp": "3 years ago"}, {"text": "Si vale la pena es muy recomendable", "author": "Jose Carlos Ramirez Marrero", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzeHFLZEt3EAE", "timestamp": "5 years ago"}, {"text": "Muy buena comida y servicio.", "author": "Vanisha Lilaram", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKczhpTTRnRRAB", "timestamp": "2 years ago"}, {"text": "COMIDA FAMILIAR. BUEN SERVICIO Y CALIDAD EN LA COMIDA.", "author": "Alberto Garcia-Beltran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTajhlZGNBEAE", "timestamp": "5 years ago"}, {"text": "Las gyozas muy ricas", "author": "sara enguita", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtNDZqZGFBEAE", "timestamp": "3 years ago"}, {"text": "Descubrimiento reciente. Un 10 os doy 😃", "author": "carmen rg", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHMzdIMlNBEAE", "timestamp": "4 years ago"}, {"text": "Comida espectaculsr y muy buen ambiente", "author": "antonio javier trejo perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjOGZfVXB3RRAB", "timestamp": "5 years ago"}, {"text": "Buenísima comida.Recomendable.", "author": "Soledad Villalba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNsb0szTlh3EAE", "timestamp": "2 years ago"}, {"text": "Obligatorio pedir el guacamole y huevos rotos con gambas", "author": "NBC New Beauty Concept", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLLVkyTzZ3RRAB", "timestamp": "4 years ago"}, {"text": "Espectacular calidad y atención de 10", "author": "Javier Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURScjZLbnpRRRAB", "timestamp": "2 years ago"}, {"text": "Excelente lugar, buena atención", "author": "JUAN MANUEL RAMOS QUEVEDO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURObVl6dTJRRRAB", "timestamp": "Edited a year ago"}, {"text": "De fabula", "author": "Ruben Molina Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNKXy16X2N3EAE", "timestamp": "2 years ago"}, {"text": "Excelente comida y trato amable", "author": "Juan AB", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNhXzRET0hBEAE", "timestamp": "4 years ago"}, {"text": "Llegué de casualidad y me gustó, repetiré", "author": "Rafa Fdez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZaTVUVzlRRRAB", "timestamp": "6 years ago"}, {"text": "Una autentica experiencia", "author": "Antonio Campos Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3amVmUy13RRAB", "timestamp": "a year ago"}, {"text": "Caro pero rico", "author": "BENJAMIN SUAREZ FALCON", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4bTctS09REAE", "timestamp": "5 years ago"}, {"text": "Lo mejor de palma", "author": "Alfredo Cortes", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURMOF9hS3RRRRAB", "timestamp": "a year ago"}, {"text": "Espectacular!", "author": "L Viladomat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNBbzVpV0xBEAE", "timestamp": "11 months ago"}, {"text": "Gente amable y comida exquisita", "author": "Rafael Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxeGVfV25BRRAB", "timestamp": "2 years ago"}, {"text": "magnífica comida y un equipo excepcional", "author": "Francisco Tomas lorenzo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4MXZ5eE53EAE", "timestamp": "5 years ago"}, {"text": "No coment", "author": "Julio Ortega sanabria", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwek83S3VBRRAB", "timestamp": "6 years ago"}, {"text": "Acogedor por unos profesionales", "author": "juan Manuel Gonzalez Matel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURTcmRERFNnEAE", "timestamp": "5 years ago"}, {"text": "Recomendable. Comida excelente", "author": "Rosario Torre González", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURrdVBlVm93RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "juan llompart", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xGeFRuSkhXVGR1UzJkak1YbFNNVXA2ZFUxVk4wRRAB", "timestamp": "3 weeks ago"}, {"text": "Perfecto", "author": "Francisco Granados Lobato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCOU5PUllREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Melanie Rousseau", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pab1ZFWkZhelpMVkVaVWFVNVhNbFEwYUZGZmIxRRAB", "timestamp": "a month ago"}, {"text": "Excelente calidad precio", "author": "Jose Salinas Martinez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXb05HWHJnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Virginia Ladislao", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xJdFNXUlNlVFozYXpreFVIbElUbUZxZEdRMlZuYxAB", "timestamp": "2 months ago"}, {"text": "", "author": "marco cerritos", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xKcWFHODRWblZ2VldKUllWOVRWMVZvV2tSeVFWRRAB", "timestamp": "3 months ago"}, {"text": "Excelent", "author": "Daniela Gonzalez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtN1pUajlRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Tomas Alcaide Parrado", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25Gd2R6SlNjVk5GYjNaUWVrOHpObmd5VTI5d09XYxAB", "timestamp": "5 months ago"}, {"text": "PERFECTO", "author": "Anabel Tikal", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNXZ1A3dWhBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Patasanu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21WRE5tSlVUbXhwVVVoaFdrTkJWSEo2VDFkblVHYxAB", "timestamp": "5 months ago"}, {"text": "Delicias, amabilidad y simpatía", "author": "Anigio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwNXZ5by13RRAB", "timestamp": "6 years ago"}, {"text": "It's perferct !", "author": "Jacqueline Couanes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNweXFhOUZBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alejandro Henriquez Portillo", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21KUGJHSnNPRVI1Y3pkSVYxOUNVa3BYVW01b1JFRRAB", "timestamp": "6 months ago"}, {"text": "Uwaga na rachunek.", "author": "M x", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbUk3T25nRRAB", "timestamp": "6 years ago"}, {"text": "100% recomendable", "author": "Ricardo Sosa", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURpOFpPdGN3EAE", "timestamp": "5 years ago"}, {"text": "Comida deliciosa y las mejores atenciones", "author": "Esther Campusano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1aGFQNWJ3EAE", "timestamp": "3 years ago"}, {"text": "Exelente, repetiría", "author": "Pablo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NVlXUlpnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Manuel Bacariza", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25FM2RrNUxZbEp0VEZWS2VVeHpTMU5CTkVkT1JIYxAB", "timestamp": "7 months ago"}, {"text": "Comida y servicio insuperable.", "author": "YAIZA RAMOS HERNÁNDEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURzdXVta1dnEAE", "timestamp": "Edited 4 years ago"}, {"text": "Todo de lujo comida servicio", "author": "Miguel Angel San Miguel", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZNUo2RHFnRRAB", "timestamp": "6 years ago"}, {"text": "Comida y servicio EXQUISITOS, !!", "author": "José A. Cabrera S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCcTlUSDVnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "JORGE HERNÁNDEZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNZMnVENFRnEAE", "timestamp": "8 months ago"}, {"text": "", "author": "Irmak Tosun", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRM2UzdDNBRRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Levi Jimenez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBd3RpMTNRRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Melania Saavedra", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURfazYtWXVRRRAB", "timestamp": "a year ago"}, {"text": "Maravilla de sitio", "author": "Pablo Reca Camacho", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyX09lZklnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andreas Bruegger", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNmN2Jqc1NREAE", "timestamp": "a year ago"}, {"text": "", "author": "Guacimara Hernandez Rodriguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2eE03N2hnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Schlappe", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN2aXBqbG93RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Gloria González Valido", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQMHJXaFlBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Carmelo Sarmiento", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQcXIyRWJ3EAE", "timestamp": "a year ago"}, {"text": "", "author": "David Gil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzdVlTWG9nRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jose Antonio Domínguez Hernández", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMzaDRUSUd3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Maria Grazia Ticca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMzdXJlMW9BRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Mari Celi Gil", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNYNFBELVB3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Richard Harris", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURueUlpWFdnEAE", "timestamp": "a year ago"}, {"text": "Servicio y comida de diez", "author": "Juana Boned", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOdGZyYlJREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Carmelo M.H", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNucXB5QU9nEAE", "timestamp": "a year ago"}, {"text": "", "author": "Alex S.", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNIXzhyZVFBEAE", "timestamp": "a year ago"}, {"text": "", "author": "Florian Bouché", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3Z0lhREt3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Eneko GH", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURiNzllSjh3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Paco Nogales", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNibTllQ1N3EAE", "timestamp": "a year ago"}, {"text": "", "author": "Joana Perera García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN6bzV5Q3pRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "jose serrano santana", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNEMkxfTHVRRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Patricia Sánchez Gonzálvez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ5eXFDSU53EAE", "timestamp": "a year ago"}, {"text": "", "author": "Pilar Santana", "rating": 5, "source": "api", "review_id": "ChRDSUhNMG9nS0VJQ0FnSUN0cU9RcBAB", "timestamp": "2 years ago"}, {"text": "", "author": "Violet Hill", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0MU9XR213RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Javier Manjavacas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOa0tHbGpBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Bimbache 39", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURGcDRuaXV3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Michelle Kouhiho Miranda", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURadDhITnVnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Jose carlos santana ramirez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwM0pXZGtRRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ramón Infante", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKNUpienJBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Christoph Helbig", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbWFyYWNBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Antonio Borras Hernandez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSaXFtUkZBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Nuhacet Monzón", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCeWZId3N3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Örs Jakab", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCNWVxT213RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén García-Pando", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCMnRDYW93RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Marisa Hernandez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtb1lPdXFRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Airam Santana", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcE9EMVF3EAE", "timestamp": "3 years ago"}, {"text": "", "author": "Cristóbal Ramírez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPOC1DbzNRRRAB", "timestamp": "3 years ago"}, {"text": "Grata sorpresa", "author": "Pedro Juan Díaz Batista", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsMjQ3S25RRRAB", "timestamp": "2 years ago"}, {"text": "Comida y trato impecables", "author": "Juan Carlos Tacoronte", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSbnVqeVZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Agustín Morales", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZaTlTMXdRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Comida y servicios ejemplares!!", "author": "roberto trinidad perez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ4cGZHSDRnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular", "author": "Miguel González González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2NDRyTGVBEAE", "timestamp": "4 years ago"}, {"text": "Espectacular", "author": "patricia afonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDbEtxUVhnEAE", "timestamp": "5 years ago"}, {"text": "ESPECTACULAR", "author": "Juanma Falcon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaHF2Nmd3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Nelson Martínez Legón", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFM2FuRXplblZHUzNGelJ6aHBXR3BmTUZCUlNXYxAB", "timestamp": "a day ago"}, {"text": "", "author": "Mijanur Sikdar", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tWRlVHWXRNMjFtY2pCaFJEQnVhVFZ3YzBOb2JVRRAB", "timestamp": "3 weeks ago"}, {"text": "", "author": "Cristina Drosu", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214RFp6RXdUeTFFUm5sdWRGZHBXVmQwU2xsMlExRRAB", "timestamp": "2 months ago"}, {"text": "", "author": "Francisco Montero Jiménez", "rating": 3, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21aaGMwWXhVV1ozZW1OeVJubHdTekJhWW5GRmFuYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Alex HateLove", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0UFIzWlVOVU42WjJSS0xXdGZVR1ZrVEhFMExVRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "laura vega larios", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25GeVRVOVFTM0Y2U0ZCMk9GSmFUbkl4UWs5RFJXYxAB", "timestamp": "5 months ago"}, {"text": "", "author": "Cristina Rguez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xFNVNtWmhNRVUzUkZOTFdqVmZSRzVGWlZsc2RGRRAB", "timestamp": "5 months ago"}, {"text": "", "author": "Luca Mazzia", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2trMk56SXRlRlJwYlhsQ1gyeFZRWEprVjNGNU4wRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "Eneida Padrón Fuentes", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xVNGJHRTNkUzA0VVROYWNsTXRSVUZSUmxBeFQwRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "María", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t0MWN6WTBaalZNVlc5a2QyTlhhblZ1VGw4eGFuYxAB", "timestamp": "7 months ago"}, {"text": "", "author": "Roland Bohnhof", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2taeVJtMVRRMmx4Y2pCUlNXcDZkM2h5YkhacFMwRRAB", "timestamp": "7 months ago"}, {"text": "", "author": "matthias mühlberger", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VKemgtcmVXd0tMcFBnEAE", "timestamp": "7 months ago"}, {"text": "", "author": "Manuel Muñoz González", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvcU5UWFR3EAE", "timestamp": "9 months ago"}, {"text": "", "author": "Dolores Roman", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJNTdfUlhREAE", "timestamp": "9 months ago"}, {"text": "", "author": "Juvy Salac", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNJOEtQaUhnEAE", "timestamp": "9 months ago"}, {"text": "", "author": "Mariano Auyanet Romero", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUR3bExlY2pBRRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Agata Sasiadek", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdThTN3B3RRAB", "timestamp": "10 months ago"}, {"text": "", "author": "Didier Huet", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRenJ1cUpBEAE", "timestamp": "10 months ago"}, {"text": "", "author": "Elena Moraru", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdXRxcU13EAE", "timestamp": "10 months ago"}, {"text": "", "author": "Javier Alvarez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTURnb2JDbGFnEAE", "timestamp": "11 months ago"}] \N Message: tab crashed\n (Session info: chrome=144.0.7559.96)\n {"multi_sort": {}, "retry_info": {"retry_reason": "next_sort", "selected_sort": "lowest", "new_fingerprint": {"platform": "Win32", "timezone": "Europe/London"}, "original_job_id": "02eaebc6-8054-4714-b06e-c567e55c6a10", "fingerprint_rotated": true}, "retry_chain": ["02eaebc6-8054-4714-b06e-c567e55c6a10"], "bot_detected": false, "initial_sort": "lowest", "sort_strategy": "single", "fingerprints_used": ["Win32"], "initial_sort_used": "newest", "browser_fingerprint": {"language": "en-GB", "platform": "Win32", "timezone": "Europe/London", "viewport": {"width": 1920, "height": 1080}, "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36"}, "sort_orders_attempted": ["newest", "lowest"]} 1201 [{"level": "INFO", "message": "Set timezone to Europe/London", "category": "browser", "timestamp": "2026-01-29T01:27:22.053Z", "timestamp_ms": 1769650042053}, {"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-29T01:27:22.084Z", "timestamp_ms": 1769650042084}, {"level": "INFO", "message": "Browser fingerprint applied: Win32, 1920x1080", "metrics": {"viewport_width": 1920, "viewport_height": 1080}, "category": "browser", "timestamp": "2026-01-29T01:27:22.084Z", "timestamp_ms": 1769650042084}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "Europe/London", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWeb...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-29T01:27:22.230Z", "timestamp_ms": 1769650042230}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22rincon%20de%20triana%22%20las...", "category": "browser", "timestamp": "2026-01-29T01:27:22.370Z", "timestamp_ms": 1769650042370}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-29T01:27:23.662Z", "timestamp_ms": 1769650043662}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-29T01:27:23.985Z", "timestamp_ms": 1769650043985}, {"level": "INFO", "message": "Total reviews on page: 1201", "metrics": {"total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:26.177Z", "timestamp_ms": 1769650046177}, {"level": "INFO", "message": "Business: Rincón de Triana", "category": "scraper", "timestamp": "2026-01-29T01:27:26.177Z", "timestamp_ms": 1769650046177}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T01:27:26.309Z", "timestamp_ms": 1769650046309}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-29T01:27:26.506Z", "timestamp_ms": 1769650046506}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-29T01:27:26.958Z", "timestamp_ms": 1769650046958}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-29T01:27:26.958Z", "timestamp_ms": 1769650046958}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T01:27:29.522Z", "timestamp_ms": 1769650049522}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T01:27:29.601Z", "timestamp_ms": 1769650049601}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-29T01:27:29.620Z", "timestamp_ms": 1769650049620}, {"level": "INFO", "message": "Found 10 review topics: letter, gyozas, guacamole, island, chlamys varia...", "metrics": {"topic_count": 10}, "category": "scraper", "timestamp": "2026-01-29T01:27:30.259Z", "timestamp_ms": 1769650050259}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-29T01:27:30.260Z", "timestamp_ms": 1769650050260}, {"level": "INFO", "message": "40/1201 (3%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01674938201904297, "progress_pct": 3.330557868442964, "reviews_count": 40, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:31.918Z", "timestamp_ms": 1769650051918}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 251}, "category": "system", "timestamp": "2026-01-29T01:27:33.015Z", "timestamp_ms": 1769650053015}, {"level": "INFO", "message": "70/1201 (6%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02121138572692871, "progress_pct": 5.828476269775187, "reviews_count": 70, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:33.037Z", "timestamp_ms": 1769650053037}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 404}, "category": "system", "timestamp": "2026-01-29T01:27:34.263Z", "timestamp_ms": 1769650054263}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T01:27:34.280Z", "timestamp_ms": 1769650054280}, {"level": "INFO", "message": "100/1201 (8%) | idle: 0.2s", "metrics": {"idle_seconds": 0.2064194679260254, "progress_pct": 8.32639467110741, "reviews_count": 100, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:34.489Z", "timestamp_ms": 1769650054489}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 245}, "category": "system", "timestamp": "2026-01-29T01:27:35.702Z", "timestamp_ms": 1769650055702}, {"level": "INFO", "message": "130/1201 (11%) | idle: 0.0s", "metrics": {"idle_seconds": 0.000000476837158203125, "progress_pct": 10.824313072439635, "reviews_count": 130, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:35.741Z", "timestamp_ms": 1769650055741}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 566}, "category": "system", "timestamp": "2026-01-29T01:27:36.835Z", "timestamp_ms": 1769650056835}, {"level": "INFO", "message": "170/1201 (14%) | idle: 0.0s", "metrics": {"idle_seconds": 0.016487598419189453, "progress_pct": 14.154870940882597, "reviews_count": 170, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:36.851Z", "timestamp_ms": 1769650056851}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 340}, "category": "system", "timestamp": "2026-01-29T01:27:37.949Z", "timestamp_ms": 1769650057949}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T01:27:37.950Z", "timestamp_ms": 1769650057950}, {"level": "INFO", "message": "200/1201 (17%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009639263153076172, "progress_pct": 16.65278934221482, "reviews_count": 200, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:37.960Z", "timestamp_ms": 1769650057960}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 347}, "category": "system", "timestamp": "2026-01-29T01:27:39.081Z", "timestamp_ms": 1769650059081}, {"level": "INFO", "message": "230/1201 (19%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03017115592956543, "progress_pct": 19.150707743547045, "reviews_count": 230, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:39.111Z", "timestamp_ms": 1769650059111}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 323}, "category": "system", "timestamp": "2026-01-29T01:27:40.333Z", "timestamp_ms": 1769650060333}, {"level": "INFO", "message": "260/1201 (22%) | idle: 0.0s", "metrics": {"idle_seconds": 0.017890214920043945, "progress_pct": 21.64862614487927, "reviews_count": 260, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:40.351Z", "timestamp_ms": 1769650060351}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 197}, "category": "system", "timestamp": "2026-01-29T01:27:41.763Z", "timestamp_ms": 1769650061763}, {"level": "INFO", "message": "280/1201 (23%) | idle: 0.0s", "metrics": {"idle_seconds": 0.026915311813354492, "progress_pct": 23.31390507910075, "reviews_count": 280, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:41.790Z", "timestamp_ms": 1769650061790}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 315}, "category": "system", "timestamp": "2026-01-29T01:27:43.216Z", "timestamp_ms": 1769650063216}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T01:27:43.217Z", "timestamp_ms": 1769650063217}, {"level": "INFO", "message": "310/1201 (26%) | idle: 0.0s", "metrics": {"idle_seconds": 0.027608871459960938, "progress_pct": 25.81182348043297, "reviews_count": 310, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:43.244Z", "timestamp_ms": 1769650063244}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 172}, "category": "system", "timestamp": "2026-01-29T01:27:44.609Z", "timestamp_ms": 1769650064609}, {"level": "INFO", "message": "330/1201 (27%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01233530044555664, "progress_pct": 27.477102414654453, "reviews_count": 330, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:44.622Z", "timestamp_ms": 1769650064622}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 325}, "category": "system", "timestamp": "2026-01-29T01:27:45.731Z", "timestamp_ms": 1769650065731}, {"level": "INFO", "message": "360/1201 (30%) | idle: 0.0s", "metrics": {"idle_seconds": 0.017351150512695312, "progress_pct": 29.97502081598668, "reviews_count": 360, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:45.749Z", "timestamp_ms": 1769650065749}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 170}, "category": "system", "timestamp": "2026-01-29T01:27:47.908Z", "timestamp_ms": 1769650067908}, {"level": "INFO", "message": "380/1201 (32%) | idle: 0.0s", "metrics": {"idle_seconds": 0.04645991325378418, "progress_pct": 31.64029975020816, "reviews_count": 380, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:47.955Z", "timestamp_ms": 1769650067955}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 234}, "category": "system", "timestamp": "2026-01-29T01:27:49.185Z", "timestamp_ms": 1769650069185}, {"level": "WARN", "message": "SLOW cycle: 2.2s (api:0.0s dom:0.0s/254cards flush:0.0s seen:400)", "metrics": {"dom_cards": 254, "api_time_s": 0.033130645751953125, "dom_time_s": 0.03957962989807129, "seen_count": 400, "cycle_time_s": 2.2439539432525635}, "category": "system", "timestamp": "2026-01-29T01:27:49.185Z", "timestamp_ms": 1769650069185}, {"level": "INFO", "message": "400/1201 (33%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012880325317382812, "progress_pct": 33.30557868442964, "reviews_count": 400, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:49.198Z", "timestamp_ms": 1769650069198}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 87}, "category": "system", "timestamp": "2026-01-29T01:27:50.470Z", "timestamp_ms": 1769650070470}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T01:27:50.471Z", "timestamp_ms": 1769650070471}, {"level": "INFO", "message": "410/1201 (34%) | idle: 0.7s", "metrics": {"idle_seconds": 0.6975677013397217, "progress_pct": 34.138218151540386, "reviews_count": 410, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:51.170Z", "timestamp_ms": 1769650071170}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 84}, "category": "system", "timestamp": "2026-01-29T01:27:52.260Z", "timestamp_ms": 1769650072260}, {"level": "INFO", "message": "420/1201 (35%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011168479919433594, "progress_pct": 34.970857618651124, "reviews_count": 420, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:52.271Z", "timestamp_ms": 1769650072271}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 188}, "category": "system", "timestamp": "2026-01-29T01:27:53.423Z", "timestamp_ms": 1769650073423}, {"level": "INFO", "message": "440/1201 (37%) | idle: 0.1s", "metrics": {"idle_seconds": 0.06764960289001465, "progress_pct": 36.63613655287261, "reviews_count": 440, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:53.491Z", "timestamp_ms": 1769650073491}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 199}, "category": "system", "timestamp": "2026-01-29T01:27:54.783Z", "timestamp_ms": 1769650074783}, {"level": "INFO", "message": "460/1201 (38%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0218660831451416, "progress_pct": 38.30141548709409, "reviews_count": 460, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:54.808Z", "timestamp_ms": 1769650074808}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 180}, "category": "system", "timestamp": "2026-01-29T01:27:55.950Z", "timestamp_ms": 1769650075950}, {"level": "INFO", "message": "480/1201 (40%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012469291687011719, "progress_pct": 39.966694421315566, "reviews_count": 480, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:55.963Z", "timestamp_ms": 1769650075963}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 174}, "category": "system", "timestamp": "2026-01-29T01:27:57.222Z", "timestamp_ms": 1769650077222}, {"level": "INFO", "message": "500/1201 (42%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011286735534667969, "progress_pct": 41.63197335553705, "reviews_count": 500, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:57.234Z", "timestamp_ms": 1769650077234}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 181}, "category": "system", "timestamp": "2026-01-29T01:27:58.367Z", "timestamp_ms": 1769650078367}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T01:27:58.367Z", "timestamp_ms": 1769650078367}, {"level": "INFO", "message": "520/1201 (43%) | idle: 0.0s", "metrics": {"idle_seconds": 0.030645370483398438, "progress_pct": 43.29725228975854, "reviews_count": 520, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:58.398Z", "timestamp_ms": 1769650078398}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 85}, "category": "system", "timestamp": "2026-01-29T01:27:59.872Z", "timestamp_ms": 1769650079872}, {"level": "INFO", "message": "530/1201 (44%) | idle: 0.0s", "metrics": {"idle_seconds": 0.04740595817565918, "progress_pct": 44.12989175686928, "reviews_count": 530, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:27:59.922Z", "timestamp_ms": 1769650079922}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 172}, "category": "system", "timestamp": "2026-01-29T01:28:01.087Z", "timestamp_ms": 1769650081087}, {"level": "INFO", "message": "550/1201 (46%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009952068328857422, "progress_pct": 45.79517069109076, "reviews_count": 550, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:01.099Z", "timestamp_ms": 1769650081099}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 82}, "category": "system", "timestamp": "2026-01-29T01:28:02.842Z", "timestamp_ms": 1769650082842}, {"level": "INFO", "message": "560/1201 (47%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03967928886413574, "progress_pct": 46.6278101582015, "reviews_count": 560, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:02.882Z", "timestamp_ms": 1769650082882}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 181}, "category": "system", "timestamp": "2026-01-29T01:28:04.099Z", "timestamp_ms": 1769650084099}, {"level": "INFO", "message": "580/1201 (48%) | idle: 0.1s", "metrics": {"idle_seconds": 0.08165168762207031, "progress_pct": 48.29308909242298, "reviews_count": 580, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:04.180Z", "timestamp_ms": 1769650084180}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 220}, "category": "system", "timestamp": "2026-01-29T01:28:05.247Z", "timestamp_ms": 1769650085247}, {"level": "INFO", "message": "600/1201 (50%) | idle: 0.0s", "metrics": {"idle_seconds": 0.014844655990600586, "progress_pct": 49.958368026644465, "reviews_count": 600, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:05.262Z", "timestamp_ms": 1769650085262}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 173}, "category": "system", "timestamp": "2026-01-29T01:28:06.461Z", "timestamp_ms": 1769650086461}, {"level": "INFO", "message": "Flushing 100 reviews to disk...", "metrics": {"source": "flush", "batch_size": 100}, "category": "scraper", "timestamp": "2026-01-29T01:28:06.462Z", "timestamp_ms": 1769650086462}, {"level": "INFO", "message": "620/1201 (52%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01735401153564453, "progress_pct": 51.62364696086594, "reviews_count": 620, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:06.480Z", "timestamp_ms": 1769650086480}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 87}, "category": "system", "timestamp": "2026-01-29T01:28:07.899Z", "timestamp_ms": 1769650087899}, {"level": "INFO", "message": "630/1201 (52%) | idle: 0.1s", "metrics": {"idle_seconds": 0.12811732292175293, "progress_pct": 52.456286427976686, "reviews_count": 630, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:08.030Z", "timestamp_ms": 1769650088030}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 217}, "category": "system", "timestamp": "2026-01-29T01:28:09.454Z", "timestamp_ms": 1769650089454}, {"level": "INFO", "message": "650/1201 (54%) | idle: 0.0s", "metrics": {"idle_seconds": 0.024317502975463867, "progress_pct": 54.12156536219817, "reviews_count": 650, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:09.479Z", "timestamp_ms": 1769650089479}, {"level": "INFO", "message": "660/1201 (55%) | idle: 1.8s", "metrics": {"idle_seconds": 1.8036444187164307, "progress_pct": 54.95420482930891, "reviews_count": 660, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:12.778Z", "timestamp_ms": 1769650092778}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 176}, "category": "system", "timestamp": "2026-01-29T01:28:16.789Z", "timestamp_ms": 1769650096789}, {"level": "WARN", "message": "SLOW cycle: 4.0s (api:0.2s dom:0.1s/196cards flush:0.0s seen:670)", "metrics": {"dom_cards": 196, "api_time_s": 0.2364485263824463, "dom_time_s": 0.07103490829467773, "seen_count": 670, "cycle_time_s": 4.023428201675415}, "category": "system", "timestamp": "2026-01-29T01:28:16.793Z", "timestamp_ms": 1769650096793}, {"level": "INFO", "message": "670/1201 (56%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03422904014587402, "progress_pct": 55.786844296419645, "reviews_count": 670, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:16.828Z", "timestamp_ms": 1769650096828}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 87}, "category": "system", "timestamp": "2026-01-29T01:28:18.032Z", "timestamp_ms": 1769650098032}, {"level": "WARN", "message": "SLOW cycle: 3.3s (api:0.1s dom:0.1s/107cards flush:0.0s seen:680)", "metrics": {"dom_cards": 107, "api_time_s": 0.08202481269836426, "dom_time_s": 0.05818963050842285, "seen_count": 680, "cycle_time_s": 3.3187851905822754}, "category": "system", "timestamp": "2026-01-29T01:28:18.033Z", "timestamp_ms": 1769650098033}, {"level": "INFO", "message": "680/1201 (57%) | idle: 1.3s", "metrics": {"idle_seconds": 1.2623908519744873, "progress_pct": 56.61948376353039, "reviews_count": 680, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:19.297Z", "timestamp_ms": 1769650099297}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 128}, "category": "system", "timestamp": "2026-01-29T01:28:20.530Z", "timestamp_ms": 1769650100530}, {"level": "WARN", "message": "SLOW cycle: 2.6s (api:0.1s dom:0.0s/138cards flush:0.0s seen:690)", "metrics": {"dom_cards": 138, "api_time_s": 0.08375239372253418, "dom_time_s": 0.016544342041015625, "seen_count": 690, "cycle_time_s": 2.553999423980713}, "category": "system", "timestamp": "2026-01-29T01:28:20.531Z", "timestamp_ms": 1769650100531}, {"level": "INFO", "message": "690/1201 (57%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012821197509765625, "progress_pct": 57.45212323064113, "reviews_count": 690, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:20.544Z", "timestamp_ms": 1769650100544}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 171}, "category": "system", "timestamp": "2026-01-29T01:28:21.844Z", "timestamp_ms": 1769650101844}, {"level": "INFO", "message": "710/1201 (59%) | idle: 0.0s", "metrics": {"idle_seconds": 0.020104169845581055, "progress_pct": 59.11740216486261, "reviews_count": 710, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:21.864Z", "timestamp_ms": 1769650101864}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 172}, "category": "system", "timestamp": "2026-01-29T01:28:22.907Z", "timestamp_ms": 1769650102907}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T01:28:22.907Z", "timestamp_ms": 1769650102907}, {"level": "INFO", "message": "730/1201 (61%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006341457366943359, "progress_pct": 60.7826810990841, "reviews_count": 730, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:22.914Z", "timestamp_ms": 1769650102914}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 169}, "category": "system", "timestamp": "2026-01-29T01:28:24.095Z", "timestamp_ms": 1769650104095}, {"level": "INFO", "message": "750/1201 (62%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012121200561523438, "progress_pct": 62.447960033305584, "reviews_count": 750, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:24.108Z", "timestamp_ms": 1769650104108}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 164}, "category": "system", "timestamp": "2026-01-29T01:28:25.168Z", "timestamp_ms": 1769650105168}, {"level": "INFO", "message": "770/1201 (64%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012311697006225586, "progress_pct": 64.11323896752707, "reviews_count": 770, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:25.181Z", "timestamp_ms": 1769650105181}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 82}, "category": "system", "timestamp": "2026-01-29T01:28:27.156Z", "timestamp_ms": 1769650107156}, {"level": "INFO", "message": "790/1201 (66%) | idle: 0.1s", "metrics": {"idle_seconds": 0.08923053741455078, "progress_pct": 65.77851790174854, "reviews_count": 790, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:27.245Z", "timestamp_ms": 1769650107245}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 159}, "category": "system", "timestamp": "2026-01-29T01:28:28.842Z", "timestamp_ms": 1769650108842}, {"level": "WARN", "message": "SLOW cycle: 2.1s (api:0.0s dom:0.2s/169cards flush:0.0s seen:800)", "metrics": {"dom_cards": 169, "api_time_s": 0.0373687744140625, "dom_time_s": 0.18992376327514648, "seen_count": 800, "cycle_time_s": 2.1484177112579346}, "category": "system", "timestamp": "2026-01-29T01:28:28.843Z", "timestamp_ms": 1769650108843}, {"level": "INFO", "message": "800/1201 (67%) | idle: 0.0s", "metrics": {"idle_seconds": 0.039498329162597656, "progress_pct": 66.61115736885928, "reviews_count": 800, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:28.882Z", "timestamp_ms": 1769650108882}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 179}, "category": "system", "timestamp": "2026-01-29T01:28:30.223Z", "timestamp_ms": 1769650110223}, {"level": "INFO", "message": "810/1201 (67%) | idle: 0.0s", "metrics": {"idle_seconds": 0.020572900772094727, "progress_pct": 67.44379683597003, "reviews_count": 810, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:30.244Z", "timestamp_ms": 1769650110244}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 186}, "category": "system", "timestamp": "2026-01-29T01:28:31.416Z", "timestamp_ms": 1769650111416}, {"level": "INFO", "message": "Flushing 110 reviews to disk...", "metrics": {"source": "flush", "batch_size": 110}, "category": "scraper", "timestamp": "2026-01-29T01:28:31.417Z", "timestamp_ms": 1769650111417}, {"level": "INFO", "message": "840/1201 (70%) | idle: 0.0s", "metrics": {"idle_seconds": 0.023113012313842773, "progress_pct": 69.94171523730225, "reviews_count": 840, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:31.440Z", "timestamp_ms": 1769650111440}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T01:28:32.634Z", "timestamp_ms": 1769650112634}, {"level": "INFO", "message": "860/1201 (72%) | idle: 0.0s", "metrics": {"idle_seconds": 0.03239560127258301, "progress_pct": 71.60699417152372, "reviews_count": 860, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:32.668Z", "timestamp_ms": 1769650112668}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T01:28:33.887Z", "timestamp_ms": 1769650113887}, {"level": "INFO", "message": "870/1201 (72%) | idle: 0.0s", "metrics": {"idle_seconds": 0.04672598838806152, "progress_pct": 72.43963363863448, "reviews_count": 870, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:33.934Z", "timestamp_ms": 1769650113934}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T01:28:35.647Z", "timestamp_ms": 1769650115647}, {"level": "INFO", "message": "880/1201 (73%) | idle: 0.2s", "metrics": {"idle_seconds": 0.1616199016571045, "progress_pct": 73.27227310574521, "reviews_count": 880, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:35.810Z", "timestamp_ms": 1769650115810}, {"level": "INFO", "message": "880/1201 (73%) | idle: 1.6s", "metrics": {"idle_seconds": 1.6090335845947266, "progress_pct": 73.27227310574521, "reviews_count": 880, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:37.257Z", "timestamp_ms": 1769650117257}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 100}, "category": "system", "timestamp": "2026-01-29T01:28:38.470Z", "timestamp_ms": 1769650118470}, {"level": "INFO", "message": "900/1201 (75%) | idle: 0.1s", "metrics": {"idle_seconds": 0.08085465431213379, "progress_pct": 74.93755203996669, "reviews_count": 900, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:38.556Z", "timestamp_ms": 1769650118556}, {"level": "INFO", "message": "910/1201 (76%) | idle: 0.9s", "metrics": {"idle_seconds": 0.860560417175293, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:41.553Z", "timestamp_ms": 1769650121553}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-29T01:28:47.466Z", "timestamp_ms": 1769650127466}, {"level": "WARN", "message": "SLOW cycle: 5.5s (api:1.9s dom:0.1s/70cards flush:0.0s seen:910)", "metrics": {"dom_cards": 70, "api_time_s": 1.8922574520111084, "dom_time_s": 0.13440418243408203, "seen_count": 910, "cycle_time_s": 5.494591474533081}, "category": "system", "timestamp": "2026-01-29T01:28:47.470Z", "timestamp_ms": 1769650127470}, {"level": "INFO", "message": "910/1201 (76%) | idle: 6.9s", "metrics": {"idle_seconds": 6.889822006225586, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:28:47.581Z", "timestamp_ms": 1769650127581}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T01:28:47.586Z", "timestamp_ms": 1769650127586}, {"level": "WARN", "message": "SLOW cycle: 4.3s (api:2.2s dom:0.2s/63cards flush:0.0s seen:910)", "metrics": {"dom_cards": 63, "api_time_s": 2.1854124069213867, "dom_time_s": 0.20000934600830078, "seen_count": 910, "cycle_time_s": 4.271289587020874}, "category": "system", "timestamp": "2026-01-29T01:29:01.296Z", "timestamp_ms": 1769650141296}, {"level": "INFO", "message": "910/1201 (76%) | idle: 20.6s", "metrics": {"idle_seconds": 20.645163536071777, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:01.337Z", "timestamp_ms": 1769650141337}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 20.645163536071777}, "category": "browser", "timestamp": "2026-01-29T01:29:01.410Z", "timestamp_ms": 1769650141410}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-29T01:29:01.612Z", "timestamp_ms": 1769650141612}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T01:29:07.948Z", "timestamp_ms": 1769650147948}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T01:29:09.412Z", "timestamp_ms": 1769650149412}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T01:29:12.214Z", "timestamp_ms": 1769650152214}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T01:29:12.257Z", "timestamp_ms": 1769650152257}, {"level": "INFO", "message": "Hard refresh successful, resuming with 910 reviews already collected", "metrics": {"reviews_collected": 910}, "category": "browser", "timestamp": "2026-01-29T01:29:12.561Z", "timestamp_ms": 1769650152561}, {"level": "WARN", "message": "SLOW cycle: 24.2s (api:0.0s dom:0.1s/201cards flush:0.0s seen:910)", "metrics": {"dom_cards": 201, "api_time_s": 0.024739742279052734, "dom_time_s": 0.058756113052368164, "seen_count": 910, "cycle_time_s": 24.24861478805542}, "category": "system", "timestamp": "2026-01-29T01:29:14.412Z", "timestamp_ms": 1769650154412}, {"level": "INFO", "message": "910/1201 (76%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00000095367431640625, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:14.435Z", "timestamp_ms": 1769650154435}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 273}, "category": "system", "timestamp": "2026-01-29T01:29:15.894Z", "timestamp_ms": 1769650155894}, {"level": "INFO", "message": "910/1201 (76%) | idle: 1.3s", "metrics": {"idle_seconds": 1.349217176437378, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:15.924Z", "timestamp_ms": 1769650155924}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 242}, "category": "system", "timestamp": "2026-01-29T01:29:17.053Z", "timestamp_ms": 1769650157053}, {"level": "INFO", "message": "910/1201 (76%) | idle: 2.5s", "metrics": {"idle_seconds": 2.507180690765381, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:17.082Z", "timestamp_ms": 1769650157082}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 234}, "category": "system", "timestamp": "2026-01-29T01:29:18.187Z", "timestamp_ms": 1769650158187}, {"level": "INFO", "message": "910/1201 (76%) | idle: 3.7s", "metrics": {"idle_seconds": 3.6514201164245605, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:18.226Z", "timestamp_ms": 1769650158226}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T01:29:18.226Z", "timestamp_ms": 1769650158226}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 74}, "category": "system", "timestamp": "2026-01-29T01:29:22.098Z", "timestamp_ms": 1769650162098}, {"level": "WARN", "message": "SLOW cycle: 2.2s (api:0.7s dom:0.3s/104cards flush:0.0s seen:910)", "metrics": {"dom_cards": 104, "api_time_s": 0.6920990943908691, "dom_time_s": 0.33977198600769043, "seen_count": 910, "cycle_time_s": 2.248119354248047}, "category": "system", "timestamp": "2026-01-29T01:29:22.101Z", "timestamp_ms": 1769650162101}, {"level": "INFO", "message": "910/1201 (76%) | idle: 3.1s", "metrics": {"idle_seconds": 3.0520429611206055, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:22.401Z", "timestamp_ms": 1769650162401}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T01:29:22.405Z", "timestamp_ms": 1769650162405}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 329}, "category": "system", "timestamp": "2026-01-29T01:29:24.787Z", "timestamp_ms": 1769650164787}, {"level": "WARN", "message": "SLOW cycle: 4.2s (api:0.2s dom:0.0s/339cards flush:0.0s seen:910)", "metrics": {"dom_cards": 339, "api_time_s": 0.15739750862121582, "dom_time_s": 0.02696371078491211, "seen_count": 910, "cycle_time_s": 4.204909086227417}, "category": "system", "timestamp": "2026-01-29T01:29:24.789Z", "timestamp_ms": 1769650164789}, {"level": "INFO", "message": "910/1201 (76%) | idle: 1.3s", "metrics": {"idle_seconds": 1.3357775211334229, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:24.889Z", "timestamp_ms": 1769650164889}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 118}, "category": "system", "timestamp": "2026-01-29T01:29:26.406Z", "timestamp_ms": 1769650166406}, {"level": "INFO", "message": "910/1201 (76%) | idle: 3.0s", "metrics": {"idle_seconds": 2.9521710872650146, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:26.505Z", "timestamp_ms": 1769650166505}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 274}, "category": "system", "timestamp": "2026-01-29T01:29:27.922Z", "timestamp_ms": 1769650167922}, {"level": "INFO", "message": "910/1201 (76%) | idle: 4.4s", "metrics": {"idle_seconds": 4.408653736114502, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:27.962Z", "timestamp_ms": 1769650167962}, {"level": "INFO", "message": "910/1201 (76%) | idle: 1.7s", "metrics": {"idle_seconds": 1.6965360641479492, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:29.759Z", "timestamp_ms": 1769650169759}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 215}, "category": "system", "timestamp": "2026-01-29T01:29:31.438Z", "timestamp_ms": 1769650171438}, {"level": "INFO", "message": "910/1201 (76%) | idle: 1.8s", "metrics": {"idle_seconds": 1.8162798881530762, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:31.677Z", "timestamp_ms": 1769650171677}, {"level": "INFO", "message": "DOM cleanup: removed 14 cards to prevent memory buildup", "metrics": {"cards_removed": 14, "cards_remaining": 118}, "category": "system", "timestamp": "2026-01-29T01:29:33.333Z", "timestamp_ms": 1769650173333}, {"level": "INFO", "message": "910/1201 (76%) | idle: 3.6s", "metrics": {"idle_seconds": 3.5573835372924805, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:33.418Z", "timestamp_ms": 1769650173418}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T01:29:33.419Z", "timestamp_ms": 1769650173419}, {"level": "INFO", "message": "DOM cleanup: removed 12 cards to prevent memory buildup", "metrics": {"cards_removed": 12, "cards_remaining": 268}, "category": "system", "timestamp": "2026-01-29T01:29:35.692Z", "timestamp_ms": 1769650175692}, {"level": "INFO", "message": "910/1201 (76%) | idle: 2.0s", "metrics": {"idle_seconds": 1.9865798950195312, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:35.780Z", "timestamp_ms": 1769650175780}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 238}, "category": "system", "timestamp": "2026-01-29T01:29:37.640Z", "timestamp_ms": 1769650177640}, {"level": "WARN", "message": "SLOW cycle: 2.0s (api:0.7s dom:0.1s/258cards flush:0.0s seen:910)", "metrics": {"dom_cards": 258, "api_time_s": 0.6648619174957275, "dom_time_s": 0.07463908195495605, "seen_count": 910, "cycle_time_s": 2.0330650806427}, "category": "system", "timestamp": "2026-01-29T01:29:37.641Z", "timestamp_ms": 1769650177641}, {"level": "INFO", "message": "910/1201 (76%) | idle: 4.4s", "metrics": {"idle_seconds": 4.417892932891846, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:38.212Z", "timestamp_ms": 1769650178212}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 113}, "category": "system", "timestamp": "2026-01-29T01:29:43.451Z", "timestamp_ms": 1769650183451}, {"level": "WARN", "message": "SLOW cycle: 2.6s (api:0.2s dom:0.1s/123cards flush:0.0s seen:910)", "metrics": {"dom_cards": 123, "api_time_s": 0.24926495552062988, "dom_time_s": 0.11357760429382324, "seen_count": 910, "cycle_time_s": 2.5538346767425537}, "category": "system", "timestamp": "2026-01-29T01:29:43.453Z", "timestamp_ms": 1769650183453}, {"level": "INFO", "message": "910/1201 (76%) | idle: 9.8s", "metrics": {"idle_seconds": 9.802114248275757, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:43.596Z", "timestamp_ms": 1769650183596}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-29T01:29:43.596Z", "timestamp_ms": 1769650183596}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 104}, "category": "system", "timestamp": "2026-01-29T01:29:46.192Z", "timestamp_ms": 1769650186192}, {"level": "WARN", "message": "SLOW cycle: 5.6s (api:0.3s dom:0.5s/114cards flush:0.0s seen:910)", "metrics": {"dom_cards": 114, "api_time_s": 0.3342854976654053, "dom_time_s": 0.5446877479553223, "seen_count": 910, "cycle_time_s": 5.627015590667725}, "category": "system", "timestamp": "2026-01-29T01:29:46.192Z", "timestamp_ms": 1769650186192}, {"level": "INFO", "message": "910/1201 (76%) | idle: 22.9s", "metrics": {"idle_seconds": 22.944591999053955, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:29:56.738Z", "timestamp_ms": 1769650196738}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 22.944591999053955}, "category": "browser", "timestamp": "2026-01-29T01:29:57.606Z", "timestamp_ms": 1769650197606}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-29T01:29:57.809Z", "timestamp_ms": 1769650197809}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Menu', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-29T01:30:15.484Z", "timestamp_ms": 1769650215484}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-29T01:30:16.383Z", "timestamp_ms": 1769650216383}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting (bot detection likely)", "category": "browser", "timestamp": "2026-01-29T01:30:20.521Z", "timestamp_ms": 1769650220521}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-29T01:30:20.829Z", "timestamp_ms": 1769650220829}, {"level": "INFO", "message": "Hard refresh successful, resuming with 910 reviews already collected", "metrics": {"reviews_collected": 910}, "category": "browser", "timestamp": "2026-01-29T01:30:21.310Z", "timestamp_ms": 1769650221310}, {"level": "WARN", "message": "SLOW cycle: 37.3s (api:0.1s dom:0.1s/201cards flush:0.0s seen:910)", "metrics": {"dom_cards": 201, "api_time_s": 0.05181884765625, "dom_time_s": 0.08350944519042969, "seen_count": 910, "cycle_time_s": 37.3069589138031}, "category": "system", "timestamp": "2026-01-29T01:30:24.797Z", "timestamp_ms": 1769650224797}, {"level": "INFO", "message": "910/1201 (76%) | idle: 3.5s", "metrics": {"idle_seconds": 3.5078463554382324, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:24.823Z", "timestamp_ms": 1769650224823}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-29T01:30:24.824Z", "timestamp_ms": 1769650224824}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 186}, "category": "system", "timestamp": "2026-01-29T01:30:27.001Z", "timestamp_ms": 1769650227001}, {"level": "WARN", "message": "SLOW cycle: 4.2s (api:0.2s dom:0.1s/206cards flush:0.0s seen:910)", "metrics": {"dom_cards": 206, "api_time_s": 0.2420058250427246, "dom_time_s": 0.12298440933227539, "seen_count": 910, "cycle_time_s": 4.227022886276245}, "category": "system", "timestamp": "2026-01-29T01:30:27.003Z", "timestamp_ms": 1769650227003}, {"level": "INFO", "message": "910/1201 (76%) | idle: 1.5s", "metrics": {"idle_seconds": 1.49357008934021, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:27.036Z", "timestamp_ms": 1769650227036}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 87}, "category": "system", "timestamp": "2026-01-29T01:30:28.379Z", "timestamp_ms": 1769650228379}, {"level": "INFO", "message": "910/1201 (76%) | idle: 2.9s", "metrics": {"idle_seconds": 2.9343857765197754, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:28.477Z", "timestamp_ms": 1769650228477}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 164}, "category": "system", "timestamp": "2026-01-29T01:30:30.346Z", "timestamp_ms": 1769650230346}, {"level": "INFO", "message": "910/1201 (76%) | idle: 4.9s", "metrics": {"idle_seconds": 4.869447708129883, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:30.412Z", "timestamp_ms": 1769650230412}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 160}, "category": "system", "timestamp": "2026-01-29T01:30:32.222Z", "timestamp_ms": 1769650232222}, {"level": "INFO", "message": "910/1201 (76%) | idle: 1.9s", "metrics": {"idle_seconds": 1.8901174068450928, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:32.356Z", "timestamp_ms": 1769650232356}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 176}, "category": "system", "timestamp": "2026-01-29T01:30:34.305Z", "timestamp_ms": 1769650234305}, {"level": "INFO", "message": "910/1201 (76%) | idle: 4.3s", "metrics": {"idle_seconds": 4.3284242153167725, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:34.795Z", "timestamp_ms": 1769650234795}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 76}, "category": "system", "timestamp": "2026-01-29T01:30:39.487Z", "timestamp_ms": 1769650239487}, {"level": "WARN", "message": "SLOW cycle: 4.7s (api:0.2s dom:0.5s/86cards flush:0.0s seen:910)", "metrics": {"dom_cards": 86, "api_time_s": 0.2030797004699707, "dom_time_s": 0.5255770683288574, "seen_count": 910, "cycle_time_s": 4.711024284362793}, "category": "system", "timestamp": "2026-01-29T01:30:39.488Z", "timestamp_ms": 1769650239488}, {"level": "INFO", "message": "910/1201 (76%) | idle: 9.1s", "metrics": {"idle_seconds": 9.141987085342407, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:39.607Z", "timestamp_ms": 1769650239607}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-29T01:30:39.609Z", "timestamp_ms": 1769650239609}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 110}, "category": "system", "timestamp": "2026-01-29T01:30:41.782Z", "timestamp_ms": 1769650241782}, {"level": "WARN", "message": "SLOW cycle: 3.1s (api:0.4s dom:0.1s/120cards flush:0.0s seen:910)", "metrics": {"dom_cards": 120, "api_time_s": 0.40989160537719727, "dom_time_s": 0.06487083435058594, "seen_count": 910, "cycle_time_s": 3.1027567386627197}, "category": "system", "timestamp": "2026-01-29T01:30:41.783Z", "timestamp_ms": 1769650241783}, {"level": "INFO", "message": "910/1201 (76%) | idle: 11.4s", "metrics": {"idle_seconds": 11.395936012268066, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:41.862Z", "timestamp_ms": 1769650241862}, {"level": "WARN", "message": "SLOW cycle: 2.6s (api:1.2s dom:0.1s/34cards flush:0.0s seen:910)", "metrics": {"dom_cards": 34, "api_time_s": 1.1518912315368652, "dom_time_s": 0.055109500885009766, "seen_count": 910, "cycle_time_s": 2.5754776000976562}, "category": "system", "timestamp": "2026-01-29T01:30:49.277Z", "timestamp_ms": 1769650249277}, {"level": "INFO", "message": "910/1201 (76%) | idle: 18.9s", "metrics": {"idle_seconds": 18.942149877548218, "progress_pct": 75.77019150707743, "reviews_count": 910, "total_reviews": 1201}, "category": "scraper", "timestamp": "2026-01-29T01:30:49.407Z", "timestamp_ms": 1769650249407}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-29T01:30:49.408Z", "timestamp_ms": 1769650249408}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 18.942149877548218}, "category": "browser", "timestamp": "2026-01-29T01:30:50.204Z", "timestamp_ms": 1769650250204}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-29T01:30:50.407Z", "timestamp_ms": 1769650250407}, {"level": "ERROR", "message": "Scraper failed: Message: tab crashed\\n (Session info: chrome=144.0.7559.96)\\n", "category": "system", "timestamp": "2026-01-29T01:31:00.209Z", "timestamp_ms": 1769650260209}] 2026-01-29 01:31:00.220271 \N \N \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N \N \N \N \N \N \N \N \N 1fe4acc1-c4fa-423d-a6ef-9b6cd302d770 completed https://www.google.com/maps/search/?api=1&query=%22peliqueros%20fleitas%22%20las%20palmas&hl=en \N \N 2026-01-24 21:57:30.253598 2026-01-24 21:57:42.144835 2026-01-24 21:57:42.240403 79 [{"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"}, {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"}, {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"}, {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"}, {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"}, {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Derians Jose Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Sara Elizondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Leonardo Romeo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}] 11.878999 \N {"job_type": "google-reviews", "priority": 0, "business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "scraper_version": "1.1.0", "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T21:57:32.030Z", "timestamp_ms": 1769291852030}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T21:57:32.105Z", "timestamp_ms": 1769291852105}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22peliqueros%20fleitas%22%20las...", "category": "browser", "timestamp": "2026-01-24T21:57:32.237Z", "timestamp_ms": 1769291852237}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T21:57:33.795Z", "timestamp_ms": 1769291853795}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T21:57:34.136Z", "timestamp_ms": 1769291854136}, {"level": "INFO", "message": "Total reviews on page: 79", "metrics": {"total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T21:57:36.334Z", "timestamp_ms": 1769291856334}, {"level": "INFO", "message": "Business: R. Fleitas Peluqueros", "category": "scraper", "timestamp": "2026-01-24T21:57:36.334Z", "timestamp_ms": 1769291856334}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T21:57:36.389Z", "timestamp_ms": 1769291856389}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T21:57:36.417Z", "timestamp_ms": 1769291856417}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T21:57:36.646Z", "timestamp_ms": 1769291856646}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T21:57:36.646Z", "timestamp_ms": 1769291856646}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-24T21:57:39.196Z", "timestamp_ms": 1769291859196}, {"level": "INFO", "message": "Expanded 3 truncated reviews", "metrics": {"expanded_count": 3}, "category": "browser", "timestamp": "2026-01-24T21:57:39.220Z", "timestamp_ms": 1769291859220}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-24T21:57:39.224Z", "timestamp_ms": 1769291859224}, {"level": "INFO", "message": "Found 5 review topics: hair salon, cutting, price, siblings, beard...", "metrics": {"topic_count": 5}, "category": "scraper", "timestamp": "2026-01-24T21:57:39.734Z", "timestamp_ms": 1769291859734}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T21:57:39.734Z", "timestamp_ms": 1769291859734}, {"level": "INFO", "message": "60/79 (76%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01746392250061035, "progress_pct": 75.9493670886076, "reviews_count": 60, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T21:57:41.059Z", "timestamp_ms": 1769291861059}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 112}, "category": "system", "timestamp": "2026-01-24T21:57:42.126Z", "timestamp_ms": 1769291862126}, {"level": "INFO", "message": "79/79 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.01632380485534668, "progress_pct": 100.0, "reviews_count": 79, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T21:57:42.143Z", "timestamp_ms": 1769291862143}, {"level": "INFO", "message": "All 79 reviews collected", "metrics": {"total_reviews": 79, "elapsed_seconds": 2.4090893268585205}, "category": "scraper", "timestamp": "2026-01-24T21:57:42.143Z", "timestamp_ms": 1769291862143}, {"level": "INFO", "message": "Final flush: 79 reviews...", "metrics": {"source": "final_flush", "batch_size": 79}, "category": "scraper", "timestamp": "2026-01-24T21:57:42.143Z", "timestamp_ms": 1769291862143}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-24T21:57:42.143Z", "timestamp_ms": 1769291862143}, {"level": "INFO", "message": "Total: 79 unique reviews (flushed: 79, in memory: 0)", "metrics": {"flushed_count": 79, "total_reviews": 79, "elapsed_seconds": 2.411367416381836, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-24T21:57:42.145Z", "timestamp_ms": 1769291862145}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-24T21:57:42.146Z", "timestamp_ms": 1769291862146}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-24T21:57:42.146Z", "timestamp_ms": 1769291862146}] 2026-01-31 03:21:52.849608 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-24T21:57:32.033941", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google 57b6da2c-3701-4b1f-b2a0-7604add920d0 completed https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%20Las%20Palmas%2C%20Spain&hl=en \N \N 2026-01-24 20:26:56.42717 2026-01-24 20:27:11.020303 2026-01-24 20:27:11.360696 79 [{"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "No te puedes morir sin ir antes 💈✨", "author": "Camilo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURDdktLalVnEAE", "timestamp": "5 years ago"}, {"text": "Peluqueros muy trabajadore", "author": "FernanGamer HDModzz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvbnEtTnF3RRAB", "timestamp": "6 years ago"}, {"text": "Buen servicio", "author": "Noelia Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCZ2NDWmJREAE", "timestamp": "3 years ago"}, {"text": "Buen trato", "author": "Jordi Antonell Bladé", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLemZET2xBRRAB", "timestamp": "4 years ago"}, {"text": "La mejor peluquería de la ciudad 👌🏽", "author": "Adrián Pérez Roger", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNpbXZlbl9RRRAB", "timestamp": "5 years ago"}, {"text": "Malísimo", "author": "Iker Gomez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSeXVHeFhBEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Derians Jose Diaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyb2FhcUxnEAE", "timestamp": "a year ago"}, {"text": "", "author": "Sara Elizondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyaE9fSkJnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Leonardo Romeo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURtM3NqSGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2toMWNrZDFZbGcxZVZKNGVtMWFaR2t0TTIxVE5FRRAB", "timestamp": "a month ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}] 14.527086 \N {"job_type": "google-reviews", "priority": 0, "business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "scraper_version": "1.1.0", "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T20:26:58.355Z", "timestamp_ms": 1769286418355}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T20:26:58.676Z", "timestamp_ms": 1769286418676}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%...", "category": "browser", "timestamp": "2026-01-24T20:26:58.868Z", "timestamp_ms": 1769286418868}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T20:27:00.414Z", "timestamp_ms": 1769286420414}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T20:27:01.522Z", "timestamp_ms": 1769286421522}, {"level": "INFO", "message": "Total reviews on page: 79", "metrics": {"total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:27:04.095Z", "timestamp_ms": 1769286424095}, {"level": "INFO", "message": "Business: R. Fleitas Peluqueros", "category": "scraper", "timestamp": "2026-01-24T20:27:04.095Z", "timestamp_ms": 1769286424095}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T20:27:04.238Z", "timestamp_ms": 1769286424238}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T20:27:04.284Z", "timestamp_ms": 1769286424284}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T20:27:04.466Z", "timestamp_ms": 1769286424466}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T20:27:04.466Z", "timestamp_ms": 1769286424466}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-24T20:27:07.073Z", "timestamp_ms": 1769286427073}, {"level": "INFO", "message": "Expanded 3 truncated reviews", "metrics": {"expanded_count": 3}, "category": "browser", "timestamp": "2026-01-24T20:27:07.121Z", "timestamp_ms": 1769286427121}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-24T20:27:07.126Z", "timestamp_ms": 1769286427126}, {"level": "INFO", "message": "Found 5 review topics: hair salon, cutting, price, siblings, beard...", "metrics": {"topic_count": 5}, "category": "scraper", "timestamp": "2026-01-24T20:27:07.636Z", "timestamp_ms": 1769286427636}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T20:27:07.636Z", "timestamp_ms": 1769286427636}, {"level": "INFO", "message": "60/79 (76%) | idle: 0.0s", "metrics": {"idle_seconds": 0.020464658737182617, "progress_pct": 75.9493670886076, "reviews_count": 60, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:27:09.958Z", "timestamp_ms": 1769286429958}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 112}, "category": "system", "timestamp": "2026-01-24T20:27:11.013Z", "timestamp_ms": 1769286431013}, {"level": "WARN", "message": "SLOW cycle: 2.4s (api:0.0s dom:0.0s/172cards flush:0.0s seen:79)", "metrics": {"dom_cards": 172, "api_time_s": 0.0067446231842041016, "dom_time_s": 0.008785486221313477, "seen_count": 79, "cycle_time_s": 2.3580191135406494}, "category": "system", "timestamp": "2026-01-24T20:27:11.013Z", "timestamp_ms": 1769286431013}, {"level": "INFO", "message": "79/79 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.004270792007446289, "progress_pct": 100.0, "reviews_count": 79, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}, {"level": "INFO", "message": "All 79 reviews collected", "metrics": {"total_reviews": 79, "elapsed_seconds": 3.381378173828125}, "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}, {"level": "INFO", "message": "Final flush: 79 reviews...", "metrics": {"source": "final_flush", "batch_size": 79}, "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}, {"level": "INFO", "message": "Total: 79 unique reviews (flushed: 79, in memory: 0)", "metrics": {"flushed_count": 79, "total_reviews": 79, "elapsed_seconds": 3.381488084793091, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:27:11.018Z", "timestamp_ms": 1769286431018}] 2026-01-31 03:21:52.852327 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-24T20:26:58.370405", "webgl_vendor": "Google Inc. (Google)", "device_memory": 8, "webgl_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (LLVM 16.0.0) (0x0000C0DE)), SwiftShader driver)", "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google eda7c0dc-663b-489f-a684-2dfe8988e0c6 completed https://www.google.com/maps/search/?api=1&query=%22Pura%20Vida%20Hostel%22%20las%20palmas&hl=en \N \N 2026-01-31 02:51:52.019028 2026-01-31 02:55:19.991891 2026-01-31 02:55:20.153153 606 [{"text": "", "author": "Fer Rodriguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCMFNVeGZVekUzWjNjMVNIbFRZVTUyYTJReWEwRRAB", "timestamp": "17 hours ago"}, {"text": "The only good thing about this hostel is the location. I seriously think it's overrated, the bunks in the room where I was accommodated, were old and shabby, there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace. I've got sick after one night there 🤢 as they leave all the windows open during the night and all the humidity and dust come to your lungs. I started coughing and Miguel told me I have to leave as other guests were complaining l. He didn't care if I am okay and where I am going to spend the night, that much about the attitude. And I have a transplanted kidney, taking immunosupression.\\nAnyway I was happy to leave and not stay in this miserable place.\\nFurthermore I received later this ugly message from the hostel, blaming me for expressing my opinion here on Google and threatening me they are never going to accept me as guest in any of their hostels. I don't know how this type of of discriminative and delusional behaviour is still in the business.\\nDon't go there!", "author": "Hristiyana Todorova", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB", "timestamp": "a day ago"}, {"text": "Desepcionante", "author": "Robert Herrera", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GcE1VVXdkek42Um5CUFUzWm5iREpmUVVNNGNtYxAB", "timestamp": "2 days ago"}, {"text": "Après une semaine passée à Pura Vida avec Miguel, là pour répondre à toute demande, son équipe sympa et accueillante et les voyageurs, j’ai retrouvé le vrai esprit des hostels!\\nParfaitement située à 2 pas de la plage, des cafés et commerces, avec un rooftop convivial.\\nJ’ai déjà hâte d’y retourner 🌈", "author": "Barbara Agbaba", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB", "timestamp": "a week ago"}, {"text": "positives: great location, free sun cream, kind staff, fridges to put food,\\nnegatives: the photos look nothing like the hostel, it doesn't feel super safe there, a majority of the clientele was over 40/50 and was using the property as long term accommodation, beds weren't very clean, smell.", "author": "Andrew Collett", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB", "timestamp": "2 weeks ago"}, {"text": "I had a lovely 1 night stay in Pura Vida, and I enjoyed it so much I will definitely book to stay longer on my next trip to Gran Canaria. It's so close to the beach, only steps away. Everyone is very friendly and I was made to feel very welcome by both the staff and other guests, many of whom I spoke to have stayed before or volunteered here before, so it's clear that people love coming back to this place. It has a sense of community, and everyone seems very laidback and easygoing, but also eager to help if you need it. The rooms were comfortable and there are lockers for your belongings, but bring a padlock, as I had forgotten to do this. The beds are comforable and it's not too hot at night, there is plenty of airflow. I also enjoyed the lovely terrace areas. Thanks Pura Vida, I will be back!", "author": "Shauna R", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB", "timestamp": "2 weeks ago"}, {"text": "Me gustó mucho la estancia. La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca. El ambiente es agradable, relajado y acogedor, ideal para desconectar. El personal fue lo máximo: siempre atentos, amables y con muy buena energía. Sin duda, un lugar al que volvería y que recomiendo totalmente.", "author": "david estevez alonso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB", "timestamp": "2 weeks ago"}, {"text": "I always come back here whenever I'm in Las Palmas. The staff is very kind and helpful and the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot..you can also rent a surf board here if you want. The beds are comfy and i also appreciate the fact that there are curtains. On weekends they always organize something to go out all together and have some fun.", "author": "Denise Orlando", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB", "timestamp": "a month ago"}, {"text": "Very nice and cozy hostel, all the staff is very helpful and friendly, especially my man Miguel! Always very clean and tidy. Big common spaces for enjoying the company of other travelers. But also spacious rooms and big beds with comfy mattresses", "author": "Fedor Ivanov", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB", "timestamp": "a month ago"}, {"text": "Estube dos dias en este hostal. A destacar el staff es super Amable y te ayudara en todo lo que necesites. Si buscas un sitio tranquilo y centrico este es tu sitio. Gracias", "author": "Markos Paris", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB", "timestamp": "a month ago"}, {"text": "A very pleasant hostel. Miguel is a charming and caring host. The atmosphere is comfortable and friendly. It's very quiet after 11 p.m., so I really got a good night's sleep. You can join in with the group activities or have some privacy, and everyone respects your preferences. The hostel has everything you need, including a large kitchen and two terraces. It's also very conveniently located close to the ocean. Surfboards are available for rent.", "author": "Alevtina Olkhovskikh", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB", "timestamp": "2 months ago"}, {"text": "Muy bueno lo recomiendo ya que todo estaba muy limpio , ambiente acogedor, tranquilo", "author": "Dunia Gomez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB", "timestamp": "2 months ago"}, {"text": "Estuve una semana a fines de octubre y la pasé muy bien. Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente. El equipo de voluntario eran lo más ! Compartí montón con ellos. Gente muy cálida. El hostel está a dos cuadras de la playa de La Cícer, se puede ir descalzo a surfear. Como no había tanta gente, se disfrutaron mucho los espacios comunes y el buen rollo del lugar.\\nLas instalaciones son algo antiguas, pero todo funciona bien y tiene la ventaja de que hay dormitorios solo de chicas. La relación precio-calidad está buena, y hay que tener en cuenta que la zona de La Cícer puede ser algo ruidosa, aunque eso va más allá del hostel.", "author": "ANTU", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB", "timestamp": "3 months ago"}, {"text": "Una experiencia 10/10. Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien. Te incluyen en los planes de los otros huéspedes, aunque no pude estar, había muy buen ambiente y se preocupaban por hacerte sentir incluido.\\n\\nLa habitación también muy bien, la relación calidad precio es inmejorable.\\n\\nTiene de todo. Alquila tabla de surf y neopreno, está literalmente a 3 minutos de la playa.\\n\\nEl baño y las instalaciones están completas y puedes usar lo que quieras. Hay una terraza para teletrabajar, y es bastante seguro.\\n\\nPor la noche es súper tranquila, varias noches llegué en la madrugada y todo estaba en silencio y durmiendo.\\n\\nHable con la mayoría de los huéspedes y era gente súper agradable, rodearte de gente así, mejor la experiencia 100%.\\n\\nRecomendado!!", "author": "Sofi Iazzetta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB", "timestamp": "3 months ago"}, {"text": "", "author": "Quis Norris", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21acGJ6Vk5RbE00U0dsYVVsOUdhVTVGT0V0dk9FRRAB", "timestamp": "3 months ago"}, {"text": "Si quieres una opción económica y para pasar la noche o unas cuantas por un módico precio este es el sitio, colchón cómodo y sitio tranquilo.\\n\\nMiguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar, incluso la persona con la que iba se olvidó unos auriculares cuando hicimos el check-out y, en seguida, mandó un whatsapp para avisarnos.\\n\\nAunque no es primera línea, se encuentra muy cerca de la playa de las canteras (donde mucha gente practica surf), incluso allí te alquilan tablas y neopreno por muy buen precio.", "author": "Miguel Giménez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB", "timestamp": "3 months ago"}, {"text": "S'il était possible de mettre 6 étoiles, je le ferais ! Miguel est un super hote et les volontaires sont super sympas. L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager. Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours. Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "author": "Charlotte Lechat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB", "timestamp": "3 months ago"}, {"text": "I had an amazing stay at Pura Vida Hostel! The location couldn't be better: just a few steps from the beach, which makes it perfect for surfing and enjoying the ocean any time of the day. The hostel has a warm and welcoming atmosphere, with cozy common areas that make it easy to relax or connect with other travelers. On top of that, I really appreciated the great value for money; it's hard to find a place this close to the beach at such an affordable price.\\nI honestly don't understand some of the negative reviews. This is a hostel, not a 5-star resort, and that's exaclty the charm of it. Pura Vida offers everything you expect from a real hostel: a cozy atmosphere, frindly vibes, and a unique sense of community. The staff was incredibly kind, helpful, and always available, making me feel at home from the very first moment.\\nIf you come with the right mindset, looking for connection, beach life, and genuine hospitality, you'll love it here. I would definitely recommend Pura Vida to anyone who wants the perfect mix of comfort, surf, and authentic hostel vibes!", "author": "Paola Suardi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB", "timestamp": "4 months ago"}, {"text": "Ya he estado en varios hostales pero en este hostal se siente una mala vibra que en ningún otro sitio. Durante\\nmi estancia me sentí incómoda, inferior y juzgada entre mujeres. La manager es inadecuada para su puesto.\\nY a pesar de las normas, todo se olía a marijuana.\\nEn serio tengo que soportar esto en 2025?", "author": "Julia Gonzáles león", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB", "timestamp": "4 months ago"}, {"text": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'.\\nEn realidad es un sitio HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'. Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado. Había más voluntarios que huéspedes. Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia. Ni hablar del ruido de sus cenas familiares todas las noches hasta las 23.\\nFue un alivio irme.", "author": "Amanda Toledo batreto", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB", "timestamp": "5 months ago"}, {"text": "It could be possible that the reason this establishment has so many positive reviews is that they threaten customers who leave bad reviews. I received this comment on a review I posted. I do not care to have a further conversation with this establishment so I will only say I would not recommend it to anyone.", "author": "Faith M.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB", "timestamp": "Edited 5 months ago"}, {"text": "I want to give this place 0 stars but that’s not possible. I don’t know why there are so many positive reviews. I felt very uncomfortable and unsafe here. I do not recommend at all", "author": "Lydia Richard", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB", "timestamp": "Edited 5 months ago"}, {"text": "Cerca de la playa, seguro, su personal amable y responsable, lo recomiendo 😃", "author": "Bayron Galviz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB", "timestamp": "6 months ago"}, {"text": "Me faltarían palabras para describir este sitio, aparte de ser el dueño del sitio, Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.\\nSin conocerte de nada presta su mano y te hace sentir que estás en familia y en casa.\\nSi vas a esta isla y sientes que estás sola Miguel y su gente te ofrecen una mano amiga que te llena de consuelo y de paz.\\nLo malo de la vida en la que vivimos es que muy pocas personas son reales y la palabra empatía ni la conocen, pues bien, Miguel tiene esa empatía que si todo el mundo fuese así no existiría el mal en la tierra.\\nMi nombre es Dori y os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.\\nSin más GRACIAS a todos y sobre todo a ti Miguel 💓", "author": "Dori Galeote Benavides", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB", "timestamp": "7 months ago"}, {"text": "Hostel totalment recomanable. Bon ambient, ben equipat i prop de la platja de las Canteras", "author": "Xavier Casado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE", "timestamp": "7 months ago"}, {"text": "Amazing stay for a month - the best hostel I have ever been to. Miguel treats the guests like his family, always willing to help with anything. The hostel is very clean, with volunteers always working to keep the space nice - Maria in particular was very helpful. There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out, and people in the hostel always do things together. The hostel also has surf boards you can take to the beach, which is just 2 minutes away. I would recommend pura vida anyone coming to Las Palmas!", "author": "Michael Haslam", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB", "timestamp": "7 months ago"}, {"text": "DO NOT STAY HERE!! Two weeks ago I got a fraud charge for $75 from this hostel (I booked this hostel for February)!! My credit card company said that the way the charge was made was with tap payment, and they likely made a fake copy of my credit card and used it. In addition to this, my in-person experience with them was horrible. My two friends and I booked a 6-person mixed dorm room. The three other people in the room were weird middle aged men (we were three 20 year old girls). There was dirt on the sheets too and when we asked if we could move rooms they wouldn’t move us. We had to book a hotel to stay in that night and cancelled.", "author": "Yasha Paola Zink", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE", "timestamp": "8 months ago"}, {"text": "Ubicación de 10, Miguel y las chicas otro 10, buen sitio para pasar unos días agradables.", "author": "Ariadna janoher albalat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE", "timestamp": "8 months ago"}, {"text": "From the moment you step into the hostel, you can feel a happy and peaceful atmosphere, thanks to the guests, the volunteers, and the owner, Miguel.\\nThe volunteer team is amazing! They work all day to keep every area of the hostel clean and tidy, and they always do their best to create a good vibe with the guests.\\nMiguel, the owner, is an extraordinary guy.\\nAlways smiling and willing to meet every guest’s needs.\\nHe also puts a lot of effort into organizing family dinners and group outings in the evenings.\\nThe hostel is equipped with all the necessary facilities and has a fantastic rooftop terrace where it’s easy to make friends, but also perfect for relaxing if you want some time to yourself.\\nThe location of the hostel is ideal if you want to spend time at the beach, as it’s just two minutes from the sea. It’s also great for surfers, with a wide range of surfboards available for rent.\\nI had the best time at Pura Vida hostel — here you really feel at home, surrounded by amazing people and a family-like atmosphere.\\nI recommend everyone to stay here if you’re planning a holiday in Gran Canaria.\\nI hope to come back soon!", "author": "Elisa Cefis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE", "timestamp": "Edited 8 months ago"}, {"text": "un 10 el propietario encantador gente amena preocupada x los demás limpieza volveré e cuanto pueda gracias miguel", "author": "Carmen Abad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE", "timestamp": "8 months ago"}, {"text": "Increíble, el trato maravilloso, cerca de la playa! El dueño es súper simpático y agradable. Repetiremos !\\nEs más se me olvidará el teléfono en el sofá de recepción me acordé a las 2 h y el teléfono seguí ahí, la gente que está allí es muy sana :)", "author": "Noemi Porteiro Pena", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB", "timestamp": "8 months ago"}, {"text": "Muy buena ubicación, muy buen trato con la gente me sentí como en casa!! Super recomiendo!!", "author": "Lucas Buenos aires de andrade", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE", "timestamp": "8 months ago"}, {"text": "This hostel has a serious bed bug infestation, and the host, Miguel, is covering it up.\\n\\nI was bitten extensively during my stay — painful bites that required treatment. When I brought it to Miguel’s attention, he told me not to inform other guests or say anything publicly. Instead of dealing with the issue responsibly, he chose to lie to other guests and even to his own staff, telling them there was no problem at all.\\n\\nThis wasn’t a misunderstanding or a minor oversight — it was a deliberate attempt to hide a bed bug infestation. I’ve traveled widely and understand that issues can happen, but I’ve never encountered a host who so clearly prioritized his reputation over guest safety. The dishonesty was as disturbing as the infestation itself.\\n\\nMiguel will probably deny all of this. That’s just his style.\\n\\nAvoid this property, and consider carefully whether this is the kind of host you want to trust.", "author": "Zander", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB", "timestamp": "8 months ago"}, {"text": "", "author": "Maracot", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VPYk5sdGJmcWNpSWJREAE", "timestamp": "8 months ago"}, {"text": "Zimmer 6 stinkt nach ekelhaftem käse und da schläft jemand der schnarcht.. vermeidet das Zimmer ☺️", "author": "Dert Al", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB", "timestamp": "9 months ago"}, {"text": "Encantado con el trato, destaco por sobre todo la calidez y la atención.\\nBuen servicio y buena gente.", "author": "Hernan Zochi Matos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE", "timestamp": "10 months ago"}, {"text": "Le seul hostel qui demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide\\nLit immense mais trop mou\\nPrise qui fait peur", "author": "Polo doro", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB", "timestamp": "10 months ago"}, {"text": "El hostal está perfectamente ubicado y Miguel y las chicas que trabajan ahí son lo más. El hostal está muy limpio y los baños siempre impecables... Muchas gracias por todo, si vuelvo a las palmas sin duda nos volvemos a ver. Un saludo y hasta pronto 😃", "author": "Matteo Dalessandro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE", "timestamp": "10 months ago"}, {"text": "The hostel has a real family-like atmosphere. Miguel and the team were amazing, and they invite everyone staying at the hostel to their activities, so you can have fun together. The location is great, just a 2-minute walk to the beach. I would gladly choose it again and recommend it to others :)", "author": "Rzgr", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE", "timestamp": "11 months ago"}, {"text": "I had an unforgettable experience at Pura Vida. It’s such a welcoming place with so many people full of great energy. Everyone is always kind and available. It’s just a two-minute walk from the beach and has everything you need to feel good. I can’t wait to come back, thank you, Miguel, and everyone I met! :)", "author": "Clarissa Pambianco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB", "timestamp": "11 months ago"}, {"text": "Don't give a try. The worst hostel I have been.\\nEverything is old and dirty.\\nThere is no hot water at all.\\nNo toilet paper.\\nStaff is kind, but that is not enough to give more stars.", "author": "Nikola Tucaković", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE", "timestamp": "a year ago"}, {"text": "There is a reason why it's one of the cheapest hostels: Because Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs. The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day, always good to have a chat and laugh with and motivate people to join the activities like going out for a drink and party. I stayed there for longer term and thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends and am still in contact with. You can walk in two minutes to the beach and, if you want to learn how to surf, rent a board and wetsuit at the hostel for way less money than elsewhere. I would come back here anytime and can only recommend people to give this lovely place a try. Thanks Miguel and all the volunteers for an amazing time!!!", "author": "Simon Pfiffner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE", "timestamp": "a year ago"}, {"text": "Si quieres un lugar céntrico, cerca de la playa, con un personal majisimo, seguro, limpio y tranquilo os recomiendo este Hostal.\\nDesde mi llegada me sentí muy cómodo, las habitaciones son amplias y los pasillos / baños / zonas comunes y comedor los limpiaban diariamente. He viajado mucho y sobre todo en hostales pero nunca antes había estado tan agusto como este.", "author": "Alejandro Guerrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Jonis", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfanRPcU1BEAE", "timestamp": "a year ago"}, {"text": "Sitio muy acogedor con personal muy agradable, muy recomendable para ir con los amigos.", "author": "Fabio Espinosa Calatayud", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB", "timestamp": "a year ago"}, {"text": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel. Los encargados se preocupan por cuidarlo todo y son muy amigables. Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar. Económico y muy recomendable.", "author": "Adrian Bordas Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB", "timestamp": "a year ago"}, {"text": "Me encanta Las Palmas y le ubicación es muy buena. Miguel y sus trabajadores muy agradables. Cocina limpia y respetan el sueño. Me gustaba trabajar en la terraza. La ventilación de los dormitorios no es la mejor pero la relación calidad/precio está bien. Cuado le quieras renovar el toquillo estético me llamas. Suerte con todo!", "author": "beatriz del toro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB", "timestamp": "a year ago"}, {"text": "The perfect place to feel at home in Gran Canaria! With a warm and welcoming atmosphere, it’s just 5 minutes from the beach and well-connected by public transport to Las Palmas and other parts of the island.\\n\\nThe volunteers are the heart and soul of this home (alongside the manager, Miguel).\\nMica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart.\\nEven the guests radiate great vibes!\\n\\nPura vida is more than a vibe—it’s a way of life.", "author": "Juliette Navas Boffa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB", "timestamp": "a year ago"}, {"text": "He ido muchas veces, me gusta xq cualquiera que sea mi plan de viaje, sé que ahí me voy a encontrar bien.\\nEs de los pocos hostels donde se puede sea dormir y estar tranquila, sea hacer amigos y salir de fiesta todas las noches o ir juntos de excursión, o pasar un rato cantando en la terraza, porque los horarios de silencio se respetan, las zonas comunes son bastante amplias para escoger si estar sola o en compañía,(dos terrazas, cocina amplia, entrada...)y hay muy buen ambiente.\\nMiguel trata a cada huésped como un amigo, está pendiente de que cada uno se sienta incluido y esa buena vibra se transmite al resto de voluntari@s y huéspedes, así es fácil que viajeros con diferentess planes, gustos, edades y horarios nos sintamos como en un grupo de amigos.El ambiente es alegre y desenfadado y también cuidan la seguridad y el respeto mutuo.\\nEl edificio es antiguo pero con comodidades que simplifican mucho la estancia y no siempre encuentro, literas grandes y cómodas, cada una con enchufe, espacio para el equipaje, la cocina muy completa, frigos limpios, bastante espacio tmbién para guardar la comida, baños limpios, y si algo se estropea lo arreglan rápido.\\nHay una zona de teletrabajo, también se pueden usar sombrillas de playa, pelota, libros, guitarras, esterillas y pesas, alquilan tablas de surf y bodyboard...\\nEstá bien ubicado, a dos calles del mar, en la zona surfera que también es un barrio algo más \\"local\\" y más seguro que otras zonas del paseo de las Canteras, y muy cerca de supermercados, bancos, bares, farmacia.\\nCon todo esto, es fácil sentirse como en casa y me he encontrado varios huéspedes que como yo alargan su estancia o repiten..\\nMi sugerencia es no pensárselo mucho y escoger este hostel!", "author": "22Marzo Y.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB", "timestamp": "a year ago"}, {"text": "Le meilleur séjour en auberge de jeunesse que j’ai jamais eu! Miguel est très accueillant et arrive à mettre une magnifique ambiance tout en assurant le calme et la propreté. Les chambres sont très simples mais si vous voulez rencontrer des gens, chiller sur le super roof top, ou faire la fête lors des soirées organisées par Miguel (à l’extérieur de l’auberge) les mercredi et vendredi soir, n’hésitez pas à aller à Pura Vida ! Grande cuisine aussi qui favorise les rencontres, casier qu’on peu fermer avec cadenas, sdb avec plusieurs douches et lavabo, WC séparés. Que demander de plus ?\\nBcp de bateaux stoppers français élisent domicile ici le temps de leur recherche.", "author": "Louise François", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE", "timestamp": "a year ago"}, {"text": "Sitio genial para las estancias en la\\nisla. He ido varias veces y siempre he encontrado gente amable y simpática. Miguel es una persona excepcional , siempre atento a cada detalle y dispuesto a ayudar en todo. Recomendable 100%. Limpieza de 10 además.", "author": "ana c.s.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dTYzdUlnEAE", "timestamp": "Edited a year ago"}, {"text": "El hostal es terriblemente malo, nada más entrar ya te llega un olor muy raro y fuerte, luego ya avanzas a la recepción y te encuentras todo muy sucio y al gerente del hostal, el cual va de majo pero lo único q realmente quiere es que le pagues y luego se comportará de malas maneras, luego cuando te muestran la habitación y te vas moviendo por el lugar ves que las condiciones son pésimas, todo tirado por el suelo, un microondas del año de la polca, la cocina pintaba que si cocinabas allí te iba a entrar de todo, la habitación es la definición de zulo, 6 literas todas apiñadas y sin ventanas, que si ya juntas con el olor ya comentado en el inicio se convierte en un sitio inhabitable.\\nYo de verdad no me explico como puede haber tan buenas críticas, con las pésimas condiciones que ofrece, no recomendaría este sitio ni a mi peor enemigo. En cuanto vi las condiciones decidimos irnos, si los que lean esto no les vale mi opinión porque no haya dormido allí perfecto, yo solo estoy indicando lo que vi. Solo quiero informar, nada más.", "author": "santiago arias", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE", "timestamp": "a year ago"}, {"text": "Un trato pésimo de la persona q nos atendió,pésimo lugar,todo sucio desordenado,olor horrible y la persona a cargo 0 agradable.no recomiendo la estancia en este lugar,es una estafa no querían devolvernos el dinero de la reserva la cual no usamos y pidiendo el rembolso ya q pagamos una señal.", "author": "Yaiza Munoz", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE", "timestamp": "a year ago"}, {"text": "Rebecca is the best!", "author": "Toni -", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQemRPbW1nRRAB", "timestamp": "a year ago"}, {"text": "Le lieu est très chaleureux avec une bonne ambiance et un très beau décor. Rebecca la femme qui m'a accueilli s'occupe très bien de l'entretien met une bonne vibe et est toujours volontaire pour nous rendre service elle a pas hésiter à me prêter une serviette un cadenas et sont chargeur je conseille fortement !", "author": "Mehdi Poyard", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQdWUtYS1RRRAB", "timestamp": "a year ago"}, {"text": "Un lugar increíble para descansar, hay mucha variedad de idioma y personas, todos muy atentos y amables, el gerente es a toda madre, hice sushi de cena pq no había para tacos, Hostel muy bueno 🤙", "author": "Samantha Villalobos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE", "timestamp": "a year ago"}, {"text": "My place to go!\\nSuper friendly staff, feels like family<3\\nAlways clean and comfy.", "author": "Jack Monk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQbVBIdjVBRRAB", "timestamp": "a year ago"}, {"text": "Hostal Pura Vida - A priori muy bien en mi experiencia en el 2021-2022. Quedé contento y buen rollo aunque por entonces en ese Hostel nadie llevaba mascarilla y pensando que cogí el bitxo, fue una bronquitis pero con ese susto, tuve el beneficio que dejé de fumar.\\n\\nEn esta ocasión estuve una noche (Nov. 2024) pk cogia un vuelo a otra isla, hubo lo típico de hostels y habitaciones compartidas, poco espacio, ruidos, gente que habla, algún ronquido y música bien alta a las 9am. Ok!!\\n\\nCual fue mi sorpresa que para reservar 3-4 noches directamente con el hostel, me dice el gestor del alojamiento que alguien se ha quejado de que he roncado y no me puede alojar.\\nComo llamamos a eso?\\nSe reserva el derecho de admisión a roncadores, vaaaamos... ESTO ME PARECE UN DESPRECIO!! QUE PONGAN MEDIDORES DE DECIBELIOS DE RONQUIDOS EN CADA HABITACIÓN Y SE SORPRENDERÁN!!\\n\\nNi yo ronco tanto, ni fue todo tan maravilloso pk hubo ruido por la mañana, gente habló alto y música a las 9am. Que digo yo entonces?\\n\\nEste alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento y sus habituales. Yo incluso en ese día que estuve cogí un bodyboard, pero ni aún así.\\n\\nDar confianza en un lugar y que después te respondan lo siguiente: \\"Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación\\".\\n\\nCONCLUSIÓN: Llevo casi 2 décadas viajando solo y acompañado por Hostels por todo el mundo y nunca me había pasado algo igual.\\nVaaaamos, un total desprecio!!\\n\\nUn saludo, Feliz Amor y Pura Vida!!\\n(pero la negativa a alojarme está ahí, me parece un desprecio y por eso escribo estás líneas).", "author": "Jorge Antón", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE", "timestamp": "a year ago"}, {"text": "Son pocos los lugares donde uno se puede sentirse bien cuando no estas en tu casa, para esto el lugar debe ser un lugar donde las personas pongan el corazón a lo que se dedican. Yo feliz y muy satisfecha por el hostel. Las personas del staff un amor, el lugar acogedor, la ubicación perfecta, precios que no compensan la satisfacción que te llevas al final de tu estadía. Los quiero chicos. Gracias por tanto!🥰🥰", "author": "Eveling Cordova Alvares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE", "timestamp": "a year ago"}, {"text": "Rebecca og Mica var nogle meget søde med værter der gjorde min oplevelse super. Lækkert sted gode surfmuligheder", "author": "Janus Rosholm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzMHNPVTZBRRAB", "timestamp": "a year ago"}, {"text": "Muy buen servicio buena zona también para el surf las voluntarias son super amables sobre todo rebecca muy aconsejable para pasar una buenas vacaciones", "author": "Sude Ely", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE", "timestamp": "a year ago"}, {"text": "I had a great time staying in this hostel! The owner and the team are super welcoming and they create a great atmosphere in which it is easy to get to know new people and make friends. Big benefit for me was that I could rent surfboards directly in the hostel for a very fair price. The nearby beach usually has good waves and is just 3min walk away", "author": "Tim Coors", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzMEwtb09BEAE", "timestamp": "a year ago"}, {"text": "“¡Una experiencia increíble! Desde el momento en que llegué, el personal fue extremadamente amable y acogedor, siempre dispuesto a ayudar con recomendaciones locales o cualquier cosa que necesitara. Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas. Las habitaciones eran espaciosas, limpias, y las camas muy cómodas, ¡perfectas para descansar después de un día de explorar!\\n\\nLa ubicación del hostel es ideal, cerca de lugares de interés y transporte público, lo que hizo muy fácil moverme por la ciudad. Me encantó el ambiente relajado y social; fue muy fácil conocer a otros viajeros y hacer amigos. Además, organizaron actividades divertidas todas las noches, lo que ayudó a crear un ambiente de comunidad.\\n\\nDefinitivamente, uno de los mejores hostels en los que me he hospedado. ¡Lo recomiendo al 100 % y no puedo esperar a volver!”\\n\\nGracias y Michaela\\n\\nTambién gracias a michaela por la pasta aunque estaba un poco dura😂😅", "author": "Jordy Ocon cordoba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE", "timestamp": "a year ago"}, {"text": "Oameni deosebiti Michela e Miguel ,m -am simțit acasa ...locație langa plaja ,atmosfera bună!Cu siguranță voi reveni", "author": "Ginela Mates", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYd2ZqT2x3RRAB", "timestamp": "Edited a year ago"}, {"text": "Ne cherchez plus, choisissez cette auberge.\\n\\nMeilleure auberge que j'ai faite à las palmas. Localisation au top du top.\\nChambres, pièces de vie, toilettes et douches impeccables, équipées et propres.\\nPrésence d'un rooftop pour chiller tranquillement.\\n\\nMiguel est super sympathique, les autres salariés/bénévoles aussi. Super lieu pour sympathiser avec d'autres voyageurs.\\nJe me suis senti intégré dès mon arrivée, tout le monde est content d'être ici.\\n\\nN'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "author": "Marc Duris", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB", "timestamp": "a year ago"}, {"text": "Todo muy muy bien.\\n- Los voluntarios que trabajan allí, súper buena gente, dispuestos ayudarte en todo,\\n-Se llevan todo el día limpiando\\n- hay muy buen ambiente,\\n- A 2 calles de la playa.\\nEn conclusión que me llevé una semana y parecía que estaba en mi casa", "author": "Jesus Cabello", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB", "timestamp": "a year ago"}, {"text": "Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar, lo que hace que sus huéspedes sean muy respetuosos. Todo limpio y ordenado, ubicación inmejorable al lado de la playa de las canteras. Precio imbatible!", "author": "Pietro S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB", "timestamp": "a year ago"}, {"text": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí. Buen lugar para compartir experiencias y momentos; disfrutar de caminatas por el paseo de las canteras, la playa y la noche de terrazas/bares/boliches. La atención del personal, comodidad de cama, accesibilidad a diferentes baños y limpieza del lugar excelente. Gracias a toda la familia Pura Vida por la cálida estancia.", "author": "Nahuel Marchi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB", "timestamp": "a year ago"}, {"text": "Very cozy hostel and the location is perfect if you want to surf everyday or just chill on the beach. The volunteers always keep the place clean and tidy, I can totally recommend it!", "author": "Letizia Montuori", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3OElmdGpBRRAB", "timestamp": "Edited a year ago"}, {"text": "Tras una semana en este hostel solo decir que e quedado super satisfecho con la compañia de el dueño (Miguel), las voluntarias y los huespedes... es el mejor sitio para venir a las palmas de gran canaria si tu intencion es conocer gente, la cual te asesoran donde ir y que te hacen sentirte como en casa! desde luego una experiencia para repetir, no vale la pena ir a otro sitio este lo tiene todo!", "author": "Fernando García Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3bDlMVzF3RRAB", "timestamp": "a year ago"}, {"text": "", "author": "Elena C.M.", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3MWZMVkZREAE", "timestamp": "a year ago"}, {"text": "DO NOT GO THERE ‼️‼️\\nthere was bed bugs in my friend's bed so she had to sleep in mine. also there was no window in the room (we were 6 to sleep there), it was horrible.\\nthe AC didn't work, how sad in july the HOTTEST month of the year...\\ni don't know why they are so many good reviews because it sucks.\\nnow, we have to talk about the showers.. only one shower was private, in the other bathroom the two showers were transparent. it was very uncomfortable to take a shower.\\nthe wifi was a scam it did not work.\\ni think miguel bewitched the people who let a positive review because they're only talking abt him (joking) . he was nice though", "author": "anonyme", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Sabrina Mile", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3c0kyZmJnEAE", "timestamp": "a year ago"}, {"text": "I had a fantastic stay in Pura Vida! The location is amazing a literal 2 minute walk to a stunning beach. The host Miguel is a lovely man and there is a very welcoming atmosphere in this hostel. The rooftop is a perfect chill out spot when your tired.", "author": "Aoife O' Brien", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE", "timestamp": "a year ago"}, {"text": "Hace 4 años descubrí este maravilloso lugar, llevo años visitando Las palmas, pero en cuanto conocí Pura vida hostel decidí volver cada 3 meses al lugar , no solo por la excelente ubicación detrás de la playa, sino porque desde el primer día te sientes como en casa, como uno más todo gracias a Miguel el dueño que te hace la estancia agradable tranquila, se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas.\\nEl lugar está limpio y bien cuidado, el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf, gracias a ello aprendí lo que realmente es el surf y aprendí a valorarlo.\\nSin duda es un sitio perfecto para pasar una temporada en Las Palmas, recomiendo el hostel a todo el mundo que visita Gran Canaria.\\nGracias por todo.\\nRepetiré sin dudarlo( ya perdí la cuenta de las veces que he repetido el lugar)", "author": "Juan Lago", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE", "timestamp": "a year ago"}, {"text": "A tan solo 100 metros de la playa. Posibilidad de alquilar tablas. Lo que realmente hace especial a este lugar es la increíble comunidad de personas que se encuentran aquí.\\n\\nCalidad/precio", "author": "Tamara Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyaDdMTXJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Great place and energy! The beach is just 2 minutes away, perfect for surfing twice a day!", "author": "Lucero Segura J", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaDliX1BnEAE", "timestamp": "a year ago"}, {"text": "Me la pasé genial en Pura Vida! Muy buena vibra y se la pasa uno muy bien. Te sientes como en casa.", "author": "Tere Juárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyaDZxbDhnRRAB", "timestamp": "a year ago"}, {"text": "Идеальное местоположение, один из немногих хостелов, где мне удалось хорошо выспаться 😄", "author": "Yeva Prylypenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyaDVpNTl3RRAB", "timestamp": "a year ago"}, {"text": "Best hostel that I have been too", "author": "Ева Прилипенко", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaDhqWFBBEAE", "timestamp": "a year ago"}, {"text": "Me alojé en Pura vida 2 semanas, en principio fui para 3 días, pero me gusto tanto que lo fui alargando hasta que me tuve que ir.\\nLa gente es increíble, las voluntarias son súper amables y sociables, y Miguel es increíble, me llevo a surfear, nos compartió música y tradiciones españolas, es súper amable. Además el lugar estaba muy limpio y estaban constantemente limpiando. 10 de 10 el alojamiento.", "author": "Gaspar Giner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyLWZxVU1REAE", "timestamp": "a year ago"}, {"text": "Muy buena experiencia en Pura Vida, es un lugar muy acogedor donde me sentí muy cómoda desde el primer día, tanto por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres. Las instalaciones tienen todo lo necesario para una estancia perfecta, sin duda volveré, muchas gracias por todo!", "author": "LAURA POZA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE", "timestamp": "a year ago"}, {"text": "Really dissatisfied to be honest\\nOwner is very Interested In money expect to pay all upfront for at least a week", "author": "OneDev", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkNE5mRE9nEAE", "timestamp": "Edited a year ago"}, {"text": "Excelente atención, muy facil de llegar desde cualquier parte de la isla y sobre todo un lugar muy acogedor. 10/10", "author": "Juan Guillermo Arboleda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE", "timestamp": "a year ago"}, {"text": "Perfect place, near the see, but I didn't like that the room has no key and the Schrank has no key too. I woke up with 2 bites on myself...", "author": "Stefania Garone", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqcllYN19nRRAB", "timestamp": "a year ago"}, {"text": "", "author": "Juan Pablo Agudelo orjuela", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqcmNpS2NBEAE", "timestamp": "a year ago"}, {"text": "El alojamiento perfecto para sentirse como en casa y poder compartir el viaje con otras personas de una forma divertida e interesante.", "author": "Ivan Ñoti", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqak9mZXJRRRAB", "timestamp": "a year ago"}, {"text": "Unfortunately, I agree with other poor comments. The pictures are old. The building has no air conditioning. The room with 4 beds is TINY. There is not a good atmosphere there. The owner and workers were nice but overall the feeling of the place was not good. It is much much older than the pictures. I moved to a new hostel because I did not feel comfortable, there is NO personal space at all, no curtains at top beds etc", "author": "Tansy Ryan", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqdHVHVzhnRRAB", "timestamp": "a year ago"}, {"text": "Great location, great service! I stayed at this hostel for the past weekend and I had an amazing experience - great staff, close to Las Canteras. Miguel is very chill, friendly and helpful. I would definitely stay again! 😁", "author": "Jacob Medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB", "timestamp": "a year ago"}, {"text": "Sehr nettes Personal und super Atmosphäre unter den Gästen und Angestellten. Die Lage direkt am Stadtstrand und Surfspot ist überragend. Schöne Dachterrasse zum Chillen und ein weiterer Balkon, wo man Ruhe finden kann. In der Küche ist alles vorhanden, was benötigt wird und sie ist sehr geräumig. Die Zimmer sind typisch für ein Hostel und die Betten sind bequem und mit Vorhängen versehen. Eine kleine Bettlampe fehlt jedoch und der Schrank zum Verstauen des Reisegepäcks ist relativ klein. Surfboards und Bodyboards können direkt im Hostel gemietet werden. Wer nette Menschen kennenlernen möchte, ist hier genau richtig.", "author": "Julian Pröve", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB", "timestamp": "a year ago"}, {"text": "I felt myself at home at Pura Vida Hostel.\\nThe owner Is really friendly with guests, and the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms).\\nThe terrace Is an Amazing palace where your can meet a lot of Friends and relax.\\nThe position Is fanstastic, only 3 minutes by walk for the beach.\\nYour can also rent a surfboard at the hostel for 5€.\\nIt's a good place for surfing, chilling and enjoy las Palmas.\\nI'll come back for sure!", "author": "Elisa Grifone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE", "timestamp": "2 years ago"}, {"text": "I could never give less than 5 stars to this hostel!! From the moment you walk in you'll feel at ease, also thanks to the relaxed and friendly enviroment that the owner creates around you. The staff is kind, they make sure that everything is in order and that your necessities are met in case of need. The position is another pro, just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away. I highly recommend it, I'll come back as soon as I can!!", "author": "Elisa Ferrari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE", "timestamp": "2 years ago"}, {"text": "Superchill and cozy hostel just a few steps away from the beach and surf. I instantly felt at home - the staff is very friendly and welcoming, and I met so many amazing people!\\n\\nIt makes me sad to read the bad reviews, since I personally loved the hostel and its vibe - social but not party, a nice mix of people. I have stayed in countless hostels around the world and this makes it to the very top.\\n\\nSure, some of the rooms could be updated a bit, and the air was stuffy at times (what you can expect sharing a room on a sunny island close to the ocean). However, the bathrooms were spotless and cleaned multiple times a day, so was the kitchen. Floor was also instantly dried after coming back from surfing. The terrace and the rooftop are great for chilling, socialising and/or working.\\n\\nAlready planning my next visit! Pura Vida 🤙🏽", "author": "Inka T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB", "timestamp": "2 years ago"}, {"text": "Tuve la suerte de estar alojada en Pura vida durante dos meses.\\nFue mi primer viaje sola y desde el minuto uno te sientes en casa.\\nEl ambiente es inmejorable, y el dueño se esfuerza en incluir a todos para las family dinners, salidas o cualquier plan.\\nAdemás, está a un minuto de la playa, supermercados y todo lo necesario para tu día a día.\\nEl hostel tiene cocina, neveras, almacenaje para tu comida, varios baños…\\nEl equipo está constantemente asegurándose que todo esté limpio y perfecto para los huéspedes.\\nSin duda es un sitio para volver.", "author": "Sara García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB", "timestamp": "2 years ago"}, {"text": "Tienen una politica de cancelacion muy agresiva para el cliente. He perdido 100 euros por una cancelacion que no he podido realizar correctamente y se me cobro el importe total de los dias (5dias) de alojamiento me hubiese gustado que la penalización sea inferior. En fin, politicas\\nActualizacion 23-1-2024: los chicos entendieron mi problema y pudimos resolver el problema que hemos tenido. Gracias por la disposición", "author": "Lautaro Arozarena", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROcnNxZTBBRRAB", "timestamp": "2 years ago"}, {"text": "Melhor hostel de Gran Canarias, se tornaram minha família, qualidade e atendimento de excelência. Toda final de semana é minha casa, Miguel super atensioso com os hospedes ♥️", "author": "Mônica Lourenço", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE", "timestamp": "2 years ago"}, {"text": "Ótimo hostel! Muito bem localizado e ótimo atendimento! Com certeza voltarei em breve.", "author": "Suelen Souza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOcllTSXRRRRAB", "timestamp": "2 years ago"}, {"text": "Alles gut", "author": "Vex Vampires", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOeUstSVlnEAE", "timestamp": "Edited 2 years ago"}, {"text": "Bedbugs! Bettwanzen!", "author": "Jojakim Sames", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObnVDbGVnEAE", "timestamp": "2 years ago"}, {"text": "I've lost my flight to Las Palmas, I didn't cancel my booking and I didn't let them know in time, but after a few days when I contacted them, they were reasonable and refunded me. I really appreciate fair people and I'll definitely go there since I get a chance", "author": "Vlad Simon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxdWRYbTZ3RRAB", "timestamp": "2 years ago"}, {"text": "Me divertí mucho aquí y los pocos días que estuve en este complejo tuve los mejores días. La gente cálida y amable de Pura Vida es muy agradable. especialmente miguel", "author": "amir hasaniha", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxd0lMbVlnEAE", "timestamp": "2 years ago"}, {"text": "À fuir absolument.\\nTrès sale, insalubre.\\nMénage inexistant, moisissures dans les douches.\\nVétuste aucune conformité avec les normes électriques et de sécurité.\\nN'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES.\\nA DÉNONCER À L'ADMINISTRATION FISCALE.", "author": "Éric Lacabe", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB", "timestamp": "2 years ago"}, {"text": "Sitio sucio saturado y con todo roto . La litera super peligrosa porque no tiene escalera en condiciones para subir y el espacio es mínimo no se cómo puede estar abierto este albergue.", "author": "R L", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Best hostel in GC for making friends, and close to the beach 🤙🏼🤙🏼", "author": "Jessica Tran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxZ3BHcklBEAE", "timestamp": "2 years ago"}, {"text": "It's been the first time that the owner of a hostel wanted us not to stay. Basically he kicked us out on a Saturday afternoon (thanks for that). The reason, we saw the hostel and he knew that we would leave a bad review. The 4 beds bedroom, had an extra bed. The smell was bad and the aircon was not working. The only ventilation was the door. The bathrooms were not as expected, pretty dirty. The kitchen so so.", "author": "Federico Arena", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB", "timestamp": "2 years ago"}, {"text": "Honestly, I don’t understand why this hostel has such great reviews, I came here because of it and the pictures (must be taken many years ago because didn’t match with the reality at all) and it was a real disappointment. I didn’t like the atmosphere at all, it’s not a backpacking nor a meeting-new-people environment. I almost didn’t see people of my age (30), everybody was much older. The hostel in general is not clean, the staff live in the hostel so there are a lot of services (fridges or food compartments for example) that have the sign “only for staff”. My bunk bed didn’t have bed linen nor pillowcase… I had to ask for it.", "author": "Pablo Nava González", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Roji Magar", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscDQ3RmhnRRAB", "timestamp": "2 years ago"}, {"text": "El sitio es inmejorable a 2 minutos de la playa. Tiene dos terrazas, una en la primera planta con una mesa grande para compartir y otra en la azotea que se esta de maravilla. La atención muy cuidada, muy detallista para que estes muy agusto, la cocina esta muy bien. Sin duda un gran sitio donde quedarse. En breve volvere con mucho gusto.", "author": "Iván Blanco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB", "timestamp": "2 years ago"}, {"text": "I was in this awful hostel six years agò. I didn't remember the name of the hostel till now, because I had an horrible experience, I don't reccomand anyone.\\nThe volunteer were awfull and they verbally harassed me, I remember there were a girl I think from Latin American and an Austrian girl working there at that time, along with another spanish guy who said to me that if I have complain about the room I would have to sleep in the street. They verbally harassed me and they were isolated me and speaking bad about me so I had an horrible stay and I had to change hostel before\\nI never had this experience in my life, I should have report this what in happened and those people should have been fired. I hope now service has been improved.\\nWhat happens to me its called bullying and I truly hope they got the karma they deserve.", "author": "Sara Paolicchi", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE", "timestamp": "2 years ago"}, {"text": "The people who work there are super kind with good vibes. 5€ surf board rental just by the sea. Great for some chill times", "author": "Kosuke Nishio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB", "timestamp": "2 years ago"}, {"text": "No recomendable", "author": "Christo Bn", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNabXJLR3pRRRAB", "timestamp": "2 years ago"}, {"text": "Llegué a las Palmas sin tener idea de dónde alojarme y decidí probar en este hostal. Me quedé el mes entero porque aparte de estar bien ubicado, había súper buen ambiente, llegué a sentirme como en casa, con la comida puesta al llegar y todo! Se hacían comidas grupales y salidas. Una experiencia súper divertida en definitiva. Llegué sola y salí con un montón de amigos, entre ellos el dueño del hostel. Lo recomiendo absolutamente, yo al menos sé que si vuelvo a Gran Canarias, vuelvo a casa.", "author": "Cora Jiménez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE", "timestamp": "2 years ago"}, {"text": "I had an excellent stay at this hostel! Well taken care of and great location. Also amazing people and staff, especially Miguel as he makes sure you get the best stay possible :) 10/10 would recommend!", "author": "Serafyma Nikiforova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLaWJmY3ZRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "V tomto hostelu jsem byl 1 měsíc a byla to skvělá zkusenost, lidé kteří tam pracovali byli moc milí a majtel byl opravdu moc hodný a laskavý", "author": "Matyáš Červený", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMUxmaW1nRRAB", "timestamp": "2 years ago"}, {"text": "Love this place. Good vibes and super close to the surfspot. Miguel is a good mate", "author": "Joao Ferri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMUwyaGlRRRAB", "timestamp": "2 years ago"}, {"text": "Todo genial, las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar. El sitio estaba limpio y tenía una terraza muy chula, no tuve ningún problema.", "author": "Sílvia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB", "timestamp": "2 years ago"}, {"text": "¿Por dónde empezar?\\nPrimero, el alojamiento no corresponde en la realidad con las fotos que publicaron en la web. Se nota que fueron fotos tomadas al inaugurar el sitio, pero está claro que desde entonces todo ha cambiado a peor.\\nSegundo, nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas.\\nTercero, obviando el problema anterior, podríamos habernos quedado pero realmente fue imposible. La limpieza y el mobiliario fue el colmo. Nos encontramos con colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos y sin duda, con aspecto estar tomado por chinches o bichos. Los pisos estaban sucios, las cortinas de las literas tenían marcas blancas sospechosas. Además, la habitación tenía golpes en las paredes y cero ventanas para airearla. Solo contábamos con un ventilador oxidado y obviamente la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia.\\nAsí que simplemente decidimos irnos del alojamiento y dormir en otro sitio.", "author": "Wilmar Pereira", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "N_I_M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKeTV6a3l3RRAB", "timestamp": "2 years ago"}, {"text": "A principio de julio nos quedamos en una habitación un fin de semana. Desde la primera noche ya comunicamos que teníamos picaduras, se lo comunicamos al dueño pero no tuvimos una mejora en el servicio. Las CHINCHES nos acribillaron a muchas de nosotras y estamos segura que el dueño era conocedor de la situación.", "author": "Isabel Moreno Martínez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTRMMk5BEAE", "timestamp": "2 years ago"}, {"text": "Cuidado!! Tiene chinche.", "author": "Violeta Moreno Martínez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTl5VVpBEAE", "timestamp": "2 years ago"}, {"text": "Un posto fantastico e personale meraviglioso", "author": "lara fanciullini", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKMGV2RVF3EAE", "timestamp": "Edited 2 years ago"}, {"text": "Ostello economico, curato e pulito. In posizione ottima vicino alla passeggiata de Las canteras, ottimo per fare surf.", "author": "Valentina Pelosi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X09IVkR3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Silvia Marongiu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4OU0zbi13RRAB", "timestamp": "2 years ago"}, {"text": "Amazing place", "author": "David Fernandez Carretero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSemNtTjNRRRAB", "timestamp": "2 years ago"}, {"text": "Creo que no repetiría. Mi litera no tenía ni escalera, y para subir y bajar era toda una actividad de calistenia. Los baños siempre ocupados, no muy limpios y anticuados. Las tablas y neoprenos que tienen para alquilar diría que las amortizaron ya hace 20 años. Lo único bueno es que está cerca del mar y que tienen habitaciones solo para mujeres.", "author": "CELESTE GÓMEZ VICENTE", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Vad ElVady", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoMi1TV1NnEAE", "timestamp": "2 years ago"}, {"text": "Friendly staff and comfortable beds all for really good price,\\n\\nThe beach and shops are super close to the hostel, and bus stops are nearby too.\\n\\nReally good value for the money, I would definitely recommend!", "author": "Joe Hennah", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB", "timestamp": "2 years ago"}, {"text": "Exactly what it says on the tin, with super friendly, welcoming and helpful staff.", "author": "James Colter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNod1lYNEhREAE", "timestamp": "2 years ago"}, {"text": "overall nice stay, clean but the room was a bit too dark", "author": "Sara Czajkowska", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoalAyZWhRRRAB", "timestamp": "2 years ago"}, {"text": "Pasé una semana en este hostel muy buena. Es un lugar sencillo en cuanto a las instalaciones pero con un gran espíritu que te permite sentirte como en familia gracias en especial a Miguel. El control del silencio nocturno también es bueno para dormir bien. Hay cenas y salidas de confraterinización a las que apuntarte regularmente. Así conocí a gente muy simpática e interesante de diferentes países. Merece la pena, buen precio y situación inmejorable.", "author": "Juan Carlos Martin Yuste", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNUo2UkRnEAE", "timestamp": "2 years ago"}, {"text": "We enjoy our stay at the hostel! The room was quite dark but overall nice place!", "author": "Emilia Koc", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoNUp5QWt3RRAB", "timestamp": "2 years ago"}, {"text": "A localização do hostel e a vibe dos seus funcionários é incrível! Se estão à procura de troca cultural e de pôr-se à prova com o inglês o lugar ideal é la!", "author": "Vanessa De Oliveira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNocE9DX0dnEAE", "timestamp": "2 years ago"}, {"text": "Es ist kein Luxus und keine Moderne zu erwarten. Mein Zimmer mit 3 Frauen war ziemlich klein.\\nUnmittelbar am Surferstrand gelegen und dafür auch ausgelegt.", "author": "TanYahable", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdThITzlRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Viera Semánik Orosová", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOF9MZnBBRRAB", "timestamp": "3 years ago"}, {"text": "Si queréis tranquilidad y dormir buscaros otra cosa pero si queréis hacer lo que os de la gana este es tu lugar.Yo estuve 10 días no dormí nada para ducharte tenías que esperar y cuando estabas duchandote te aporreaban la puerta para que terminarás.En conclusión una pesadilla gente empatica.Por decir algo bueno que vi allí fue a Miguel el jefe ,una persona magnífica agradable y mejor persona.", "author": "Jesus Jaimez Serrano", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdnVuR21nRRAB", "timestamp": "3 years ago"}, {"text": "Ich verstehe die hohen Bewertungen nicht!!!\\nEin Stern dafür, das Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt. Und zusätzlich ein Stern dafür, daß die Ruhezeiten eingehalten werden und die Nähe zum Strand.\\n\\nDann hören die Sterne auf, denn es gilt auch die Unterkunft zu bewerten. In 3,5 Monaten Reise hab ich keine schlechtere Unterkunft gehabt!\\n4er Zimmer unfassbar teuer für die Absteige! Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig, kein Extralicht man stört somit immer Jeden oder behilft sich im Dunkeln! Super hellhörig, Gespräche und Schnarcher aus dem Nachbarzimmer ungefiltert. Zu wenig Badezimmer für die Anzahl der Leute, alles unfassbar abgerockt! Sauber??? Nein! Nicht die Badezimmer, nicht die Küche,nicht im Allgemeinen!\\nBeschriftete Lebensmittel kommen weg!\\nMöchte ein hippes Surfhostel sein, aber den Check-in macht man quasi selbst. ID Foto schicken, eintragen in die Listen.....man kann nur Cash zahlen....oh weia! Zum Glück das letzte Hostel vor Abreise, somit ist der Abschied etwas leichter!", "author": "Manuela Schäffer", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Roof terassi good, staff really good, chat with guy and girls good. Room little warm and of course sleepy with other. You tired after that not difference. Place Look safery. Near to beach. Price 5/5", "author": "TBag", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB", "timestamp": "a year ago"}, {"text": "Отличный недорогой хостел в одной минуте ходьбы от пляжа! Шикарная кухня с современной техникой, все очень чисто. Очень дружелюбный и вежливый персонал!", "author": "Коля Уксус", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB", "timestamp": "2 years ago"}, {"text": "Lovely family feeling with super helpful staff. Miguel manages everything really well. A few steps from the surfing part of the beach so perfect for surfers but also a relaxing stroll to the calmer waters for snorkeling. Really enjoyed my stay as met lots of different people and enjoyed their company. Muchas gracias.", "author": "alina paul", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB", "timestamp": "2 years ago"}, {"text": "Destino perfecto para quien viajamos solas. Al lado de la zona deportiva de la playa. La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos. Las literas son cómodas. La zona es muy segura para andar a cualquier hora del dia", "author": "Silvia PD", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB", "timestamp": "2 years ago"}, {"text": "WARNING: BED BUGS!\\n\\nI stayed at this nasty hostel for just one night and was covered with red spots all over my body. The bed sheets had visible stains and were obviously not washed but I pushed through as I was booked for only one night. I shouldn’t have stayed, nasty and never again!", "author": "Tim Nowak", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCZ3NXNE9REAE", "timestamp": "3 years ago"}, {"text": "Good position of the hostel, toilets always dirty.", "author": "Cosimo Simeone", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCM09xRTJBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "angel", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaS11YzhRRRAB", "timestamp": "3 years ago"}, {"text": "I had really good luck that I have booked this hostel when I was travelling alone to Gran Canaria. This place has really good location, it is safe and with a great atsmosphere! The owner Miguel and other receptionists were really helpfull and it was great time with them on a surf of when we went together with other guests for dinner. RECOMENDED!! And hope to come here again :)", "author": "Veronika Bínová Bolechová", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Shakira Rodriguez Moares", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCX0xqWW9BRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "T. O.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQteHVqTjF3RRAB", "timestamp": "3 years ago"}, {"text": "Ich war nur 3 Nächte im Hostel und habe in kurzer Zeit sehr viele tolle und interessante Menschen kennen lernen dürfen. Die Betten sind bequem und man hat das Meer quasi vor der Nase, würde jederzeit wieder zurück kehren.", "author": "Slim Bim", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQteEtmWXJBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Alejandro Rodríguez Ojeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtejlPMU9REAE", "timestamp": "3 years ago"}, {"text": "лучший хостел на земле! Мигель лучший! дважды оставалась в этом хостеле зимой и летом, оба времени года хороши. океан рядом, супермаркеты, мол, рестораны, бары. в этом хостеле все люди становятся твоими друзьями!", "author": "Anastasia Markhel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcV9DTkNBEAE", "timestamp": "3 years ago"}, {"text": "Tras probar 2 otros hostels en Las Canteras, este Pura Vida es con diferencia el mejor de las Canteras. A una calle del mar, ambiente tranquilo pero muy familiar capitaneado por Miguel que te ayudará en todo... Y sobre todo limpio y con habitaciones acodegoras.", "author": "T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB", "timestamp": "3 years ago"}, {"text": "I had an amazing time at pura vida! Miguel is always going the extra mile for the guests. The place is clean and in a great location, the voulenteers too were all lovely! Gracias Miguel y hasta pronto!!", "author": "jake purcell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Maoka Gutierrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMHVLQURnEAE", "timestamp": "3 years ago"}, {"text": "Mi permanencia a Pura Vida Hostel fue perfecta. Es un lugar muy tranquilo y lleno de gente maravillosa y internacional. Es limpiado muchas veces cada dia. Tuve también la posibilidad de alquilar una tabla de surf y intentar por mi primera vez con el ayuda de Miguel. Mil gracias a todos!!!", "author": "Greta Carlevaro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB", "timestamp": "3 years ago"}, {"text": "Un 10 para este sitio sin duda. Bien situado, limpieza absoluta , personal siempre amable y dispuesto para ayudarte y orientarte en todo lo que necesites.Mi experiencia ha sido brutal, he disfrutado la isla y he conocido gente en este hostel increible.Recomendado al 200%🖤🖤", "author": "Jose castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB", "timestamp": "3 years ago"}, {"text": "🔆✔️La mejor elección de estadía en Las Canteras, te envuelven en un ambiente que flipas son lo mejor de lo mejor. Miguel se pasa del 10.\\nHasta pronto rizos\\nLa chapina Gaby", "author": "Mafi Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dTZQd0NREAE", "timestamp": "3 years ago"}, {"text": "Un hostel super limpio, silencioso, las camas cómodas, los baños son cómodos y hay varios para no tener que esperar, el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo, no cambio de hostel y se hizo mi destino de relax eterno, ¡ME PIDO EL SOFA DE LA ENTRADA!", "author": "Victoria Vargas Blanco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB", "timestamp": "3 years ago"}, {"text": "It's OK.", "author": "Juan Carlos Alvarez Parada", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MEpQc0lREAE", "timestamp": "3 years ago"}, {"text": "El hostal es súper bueno, cómodo y muy cerca a el mar... Compartes momentos con excelentes personas. Algo muy limpio y acogedor, un excelente grupo.... Súper...", "author": "Wilson Eduardo Suárez Uribe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE", "timestamp": "3 years ago"}, {"text": "", "author": "ML C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1NWRHa2t3RRAB", "timestamp": "3 years ago"}, {"text": "menor hostal de canarias!!!", "author": "Andre Gustavo Cavalli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1MmJfSThnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Eduarda Chaves Pacheco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1b1ptY3VRRRAB", "timestamp": "3 years ago"}, {"text": "Un sitio cómodo y cercano, dónde puedes ir con grupos grandes!!!\\n\\nEstá al lado de la playita", "author": "Berta BB", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Talía Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPNGI2Z3ZnRRAB", "timestamp": "3 years ago"}, {"text": "Very good place to stay and affordable. The staff was very friendly and made you feel welcome and part of the family.", "author": "Pedro E Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyLTViS1pnEAE", "timestamp": "3 years ago"}, {"text": "Un hostel donde te hacen sentir en familia.\\n\\nHabré estado en más de 10 hostel en mi vida y con diferencia en este es el que más cómodo me he sentido. Desde la llegada hasta la salida el staff ha ayudado en todo lo posible por mejorar mi estancia.\\nMiguel, una gran persona, sabe como transmitir la esencia de su Hostel a todo su equipo. Eva, Shannon, Dalia, Ana y Helena it was a pleasure to share my days with you.\\n\\nRecomendadísimo tanto para unos días en la isla como para largas temporadas.", "author": "Jose A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyMGQzUWJ3EAE", "timestamp": "3 years ago"}, {"text": "Tanto Miguel como Eva han sido realmete amables.Me han facilitado mucho los horarios de entrada y salida.Hay muy buen ambiente y el trato muy cercano,gente 10.Nivel de Limpieza y de ruido super correcto.Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia,muy centrico y en la misma playa...en fin,que repetiré porque me encantó. Mil gracias,chic@s.", "author": "Lixber Reguera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Dalia C", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyNEkzekRBEAE", "timestamp": "3 years ago"}, {"text": "Su nombre lo describe bastante bien, pura vida, personal y dirección muy amables.\\nLocal acogedor, muy buen ambiente y sobre todo kmo si estaría uno en su casa.\\nGracias por todo.\\nSin duda para repetir en cuanto me surja la ocasión.", "author": "Xabitxu Fidalgo vazquez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMydVlDZWpRRRAB", "timestamp": "3 years ago"}, {"text": "Остановился на одну ночь и самом деле по фоткам ожидал лучшего. Всё убогое и старое. В душе был сломан держатель душа. Комната очень маленькая. На трассе всё грязное и неприятно садится куда нибудь. Короче первый и последний раз.", "author": "Andrei Mur", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Giulia Di Simone", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMydk8yYkRnEAE", "timestamp": "3 years ago"}, {"text": "I stayed in Pura Vida one week, too short by the way. This place/people made my GC experience even more special. They made me feel like one at home. The kitchen had all what I needed, the beds were comfortable, the hostel has few bathrooms. The location is perfect, so close to Playa de las Canteras. A lot of markets around, 4 kms walking from Vegueta. Easy to take a bus from the place. When I am there again, I will be choose the same option. Thank you.", "author": "Klaudia Jaśkowiec", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB", "timestamp": "3 years ago"}, {"text": "Muy muy sucio....", "author": "Juan de la Torre García", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXaWJYWVdBEAE", "timestamp": "3 years ago"}, {"text": "No comments", "author": "Divine Adventure", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOHZfb3lnRRAB", "timestamp": "3 years ago"}, {"text": "Per giovani no frills. Efficace", "author": "Michele Gatto", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOE4yanFnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Rozemarijn van der Kaaij", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtbDh1WVV3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Melle Boots", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtem9YOVFREAE", "timestamp": "4 years ago"}, {"text": "Pasé todo el mes de Noviembre en este hostel y quedé encantado!!\\nMiguel es un súper host, siempre atento con los huéspedes.\\nEl equipo de voluntarias es increíble!! Ana, Ainhoa, Lara y Luana, súper simpáticas y están siempre limpiando para que todo esté perfecto!!😀😀\\nEl hostel es acogedor y tiene muy buena vibra, es por eso que mucha gente repite.\\nRecomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!!", "author": "Vicente Blasco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB", "timestamp": "4 years ago"}, {"text": "Una experiencia de 10! Si buscas un sitio en el que poder relajarte, conocer gente y sentirte como en casa, este es tú lugar! Tanto Miguel cómo las demás compañeras tienen un trato muy agradable y te ayudan en todo lo que pueden si tienes alguna duda, etc! Volveré!", "author": "sandra garrido asensio", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE", "timestamp": "Edited 4 years ago"}, {"text": "People, you want a chilled out place, safe and, most of all, friendly and helpful, then look no further. The owner is a gentleman, and always listens because he knows what makes a good hostel great. There was no hot water for a 2 days but, but the people are so hot and happy that you are glad to have at least one complaint 🤣", "author": "Morgan Cavanagh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHNXR1WHZBRRAB", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Martin Alklid", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHMUpPd21BRRAB", "timestamp": "4 years ago"}, {"text": "muy buen ambiente, excelente calidad precio.", "author": "Francisco Bazzolo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHbU1xMXZnRRAB", "timestamp": "4 years ago"}, {"text": "Amazing hostel with very friendly staff and guests from all over the world! only nice, chill & good vibes where you can find amazing friendships and the hostel is so close to the beach you can walk on barefoot with a surfboard!☀️😄 best hostel in Las Palmas!", "author": "Bella Szutor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE", "timestamp": "4 years ago"}, {"text": "Un lugar especial donde te sientes a casa.\\nTodos son muy amables y disponibles, especialmente el manager, como una grande familia. El hostal está muy limpio y vas a encontrar todo lo que necesitas, a dos minutos del surf point más guay de Las Palmas. Todo perfecto!!", "author": "roberta frigerio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "luisina acosta", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2d3BqVF9BRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Michael Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aC1QT0N3EAE", "timestamp": "4 years ago"}, {"text": "Un lugar espectacular, lleno de vida y buenas vibraciones. Es como una gran familia que no duda en acogerte y hacerte formar parte de cada uno de los planes. Sin duda es un sitio al que volveré cada vez que pise Gran Canaria 🤙", "author": "Imanol Bracero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTZtTXp3RRAB", "timestamp": "4 years ago"}, {"text": "Super nice hostel, really recomanded. It has nice rooms and comfortable beds, a big terrace to realx. The team who work there is kind and always available to help. Perfect for surfer as it is nearby the surf spot.\\nThanks guys! I will be back soon for sure.", "author": "Flavia Indellicati", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE", "timestamp": "4 years ago"}, {"text": "En este sitio he vivido el mejor mes de mi vida. Buen ambiente surfero, limpio y muchas risas. Se crea una comunidad muy bonita. ¡Contando los días para volver!", "author": "Aina Calabuig", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB", "timestamp": "4 years ago"}, {"text": "Este hostel es increíble. He pasado un mes aquí con mi hermana y mi madre, y ha sido el mejor de nuestras vidas, la verdad. Tienes la playa a un minuto y vale mucho la pena ir a surfear. El hostel está al lado de las mejores olas de la playa de las Canteras. Muy recomendable.\\n\\nHay super buen ambiente, y nosotras ya tenemos fecha de vuelta!!", "author": "Bruna Calabuig", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB", "timestamp": "4 years ago"}, {"text": "Es un lugar especial, me sentí en casa desde el primer día. Tanto Miguel como las voluntarias encantadores. Todo muy facil y perfecto!!", "author": "chloe saura petegnief", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMnR2V1pREAE", "timestamp": "4 years ago"}, {"text": "Super buen rollo, la gente muy amable. Las instalaciones están bien(la ducha común es pequeñita pero se cabe perfectamente, además hay otro baño privado). La cocina tiene de todo. Tiene dos terrazas super chulas. Literalmente a 2 minutos de la playa, un lujo. Recomiendo 100%.", "author": "Elena Fortunato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy atentos buen precio limpieza impecable volveremos nos encanto", "author": "Maria Elena Abad", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "", "author": "Alice B", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMDh6WTNBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Después 3 meses en este hostal puedo confirmar que me encontré super bien. Limpieza, buenos espacios, camas muy cómodas. Terraza bonita aunque no hay el mar en frente. Agradezco Miguel, jefe simpatico y buena persona, que no me hizo faltar nada durante mi permanencia. Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar. Hasta pronto 🤙🏻 Andrea from Italy.", "author": "AS82", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB", "timestamp": "4 years ago"}, {"text": "\\"Ese sitio tiene algo especial\\". Frase con la que coincidí con varios huéspedes. El ambiente es inmejorable y tanto Miguel (el dueño) como los voluntarios se preocupan por que esté todo a tu gusto y por organizar actividades para formar piña. El sitio está limpio, camas cómodas y situado muy cerca de la playa para ir a hacer Surf. Alargué mi estancia todo lo que pude y me sentí como en casa, así que sin duda volveré para pasar allí una temporada", "author": "Mariola Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE", "timestamp": "4 years ago"}, {"text": "un trato increíble y una gente estupenda lo recomiendo al 200%", "author": "Jordi Piqué", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbmFHeXV3RRAB", "timestamp": "4 years ago"}, {"text": "100% recomendado! Sin duda tiene los requisitos para ser considerado el mejor hostal de Las Palmas: buena localización (a 1 minuto de la playa), muy buen ambiente, instalaciones cómodas y limpias y un staff increíble :) Estuve un mes y voy a volver seguro!", "author": "Claudia Nicolas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB", "timestamp": "4 years ago"}, {"text": "Best hostel in Las Palmas! The communal areas are huge and comfortable and there is always a nice and welcoming crowd that hang out together. Within a minute to the beach and neigbouring surf shops, restaurant and bars! Staff and Owner are awesome and always there for their guests :) I spend 3 months in Pura Vida and each day was unique!", "author": "Isabelle Dapprich", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB", "timestamp": "4 years ago"}, {"text": "Nette Menschen, hilfsbereit und zuvorkommend.\\nGenau wie ein Hostel sein sollte", "author": "TwoMillionWays", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxNGRMWXpBRRAB", "timestamp": "4 years ago"}, {"text": "Genial. Buen ambiente. Perfecto tanto para trabajar en remoto (muy buena conexión wifi), para ir a hacer surf o conocer otras personas con las que poder conocer la isla. Miguel es muy simpático y sin duda si vuelvo a la isla me volveré a alojar allí", "author": "Javier Blanco de Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE", "timestamp": "4 years ago"}, {"text": "Pura vida is a state of mind! People are Enjoying life and there are very good vibes there! The hostel is located 2 minutes from the playa de las canteras, surfers and beach Lovers love it. . I was volunteering there and i can say i found a family! Great atmosphere on the terrace playing guitar or having amazing family dinner together! It’s easy to meet amazing people happy to teach you to surf or just to go to the beach together and Enjoying the sunset!:). Pura vida became my home and i’m sure once you get in you will never want to leave!", "author": "Flambetta Foco Loco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLX3JyX1d3EAE", "timestamp": "4 years ago"}, {"text": "El mejor lugar para pasarlo bien cada dia, buen rollo y conocer gente. Alargué mi estancia Al màximo por que me sentia como en casa. Miguel y el equipo me recibieron muy amigablemente y me presentaron a tod@s los huespedes e hicimos muy buena piña. Aprendí a surfear en la mejor playa de suffers a 2 min andando. Precioso paseo por las Canteras. Ubicacion perfecta con parada de guaguas para visitar toda la Isla y comprar donde quieras a 5 min. Me llevo increible experiencia, grandes amig@s y muy buenos recuerdos. Espero volver pronto. Muchos besos a tod@s!!", "author": "Isa V", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLX295VGxnRRAB", "timestamp": "4 years ago"}, {"text": "Amazing vibe, truly found some new family in this place. Some places just attract beautiful people and this is definitely one of them! Shared dinners, super sweet staff and it's only 3 minutes to the beach :)", "author": "Anna-Lea S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLektIZktREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Maria Morales Potenciano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLMUk2MFlnEAE", "timestamp": "4 years ago"}, {"text": "Excelente sitio para pasar unos días increíbles con gente maravillosa y buen rollo, el dueño se encarga. Además está genial ubicado, puedes ir descalzo a la playa 🏄🏼‍♀️.\\nLimpieza y orden de 10.\\nLo único malo...que te da pena irte del hostel, atrapa🤙💚", "author": "Rocío Cañizares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLNUl6c0Z3EAE", "timestamp": "4 years ago"}, {"text": "He pasado unas increíbles vacaciones aquí en el Pura Vida, muchas gracias a todo el staff por ser tan amable y al dueño Miguel por su disponibilidad. Además está todo muy limpio y las camas cómodas, el sitio tiene también una gran azotea y una cocina muy grande.", "author": "Alberto g", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLeDdxYjZBRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "khalid fettach", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLX2NqcFZREAE", "timestamp": "4 years ago"}, {"text": "The hostel is amazing!Great ammoshere,nice people(que buena onda)The location is absolutely fantastic.Everything was very clean.\\nThanks Miguel and tha all team!Thank you Pura Vida!!!!!", "author": "Alexander Velev", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLemZMQmRBEAE", "timestamp": "4 years ago"}, {"text": "He estado hospedada en este Hostel una semana y puedo decir que es uno de los mejores en los que he estado, súper buen ambiente, perfecto para viajar sola pq te integran en el grupo nada más llegar, todo súper limpio, tienes la playa al lado para poder surfear... Mi experiencia ha sido fantástica, volveré seguro.", "author": "Lucia González Ois", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLcWNxZmZBEAE", "timestamp": "4 years ago"}, {"text": "The hostel is truly amazing. It has a really great atmosphere and the people are super nice. It is super clean, has all you need in the kitchen and the location is 3 minutes to the beach and the surf spots. All the people I met there were like me - came for few days and overstayed weeks or months :). I can totally recommend this hostel! It has an amazing communal feeling that makes you not to want to ever leave!", "author": "Alexandra Stoicheva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLc1ozVUhnEAE", "timestamp": "4 years ago"}, {"text": "Me hospedé en el hostel primero como clienta y luego empecé de voluntaria. Me he sentido muy mal acogida y he notado un desinterés hacia los voluntarios por parte del propietario. También no se mostró muy receptivo en el momento en el que le pedí el dinero de vuelta, ya que había estado trabajando las dos semanas. Y para finalizar también añadir que el precio me parece totalmente desmesurado teniendo en cuenta lo que ofrecen. Muy descontenta así en general.", "author": "Júlia Jiménez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLa2JHc2lnRRAB", "timestamp": "4 years ago"}, {"text": "Best hostel in las palmas", "author": "Sandro Cacciatore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLbXZiQ2xRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Romain Farneti", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dzU3M0hREAE", "timestamp": "4 years ago"}, {"text": "Me encantó el hostel. Muy limpio, bien ubicado cerca de la playa, perfecto para viajar a Las Palmas si quieres surfear y pasartelo bien. Lo mejor el buen ambiente que se respira. He estado en muchos hosteles pero sin duda este de los mejores. 100x100 recomendable.", "author": "Ismael Orgeira", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5amF1SVdBEAE", "timestamp": "4 years ago"}, {"text": "Super amables, armonía y buen rollismo por doquier en una ubicación inigualable", "author": "alex patino", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5amFMX1lnEAE", "timestamp": "4 years ago"}, {"text": "If you don’t like hostels ,this one will change your mind . Fun, young and real cheerful, I had an awesome time . Many thanks to the staff and Miguel . ✌️", "author": "Yen Il sun", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTby1fLW9BRRAB", "timestamp": "5 years ago"}, {"text": "Caros no, lo siguiente!! Habrá gente que le interese, a mi no!!", "author": "Gerardo Sáenz De La Torre", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTeVBEZFZREAE", "timestamp": "Edited 5 years ago"}, {"text": "", "author": "Michael Moore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTcklUMzdnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Cristina Jimenez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTb00zZlB3EAE", "timestamp": "5 years ago"}, {"text": "Me hospede y muy buen lugar. Recomendado. Excelente atención.", "author": "Jonny Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM1B2VXF3RRAB", "timestamp": "5 years ago"}, {"text": "Muy buena gente trato muy agradable te sientes como en casa .", "author": "brian bonilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDN2NQTnFRRRAB", "timestamp": "5 years ago"}, {"text": "Best of the best. Thanks Miguel and the all team to tenerte such and amazing environment.", "author": "Ricardo Sanchez Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDb01PVGd3RRAB", "timestamp": "5 years ago"}, {"text": "Súper buen ambiente, playa para surfear a 50 metros bajas a surfear descalzo solo con la tabla. Fuimos para quedarnos en la isla y nos ayudaron en todo lo que pudieron mientras buscábamos alojamiento. El staff y Miguel increíbles te hacen estar mejor que en casa", "author": "David robles guzman", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDcDlXZDN3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Soufiane Derbal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcXItVUxBEAE", "timestamp": "5 years ago"}, {"text": "Great place, very close to the beach. Friendly staff and a nice big kitchen with a cool place to hangout. Lots of surfing schools nearby and good transport access with a bus stop right outside.", "author": "Awais Yousaf", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4dmNYdWVnEAE", "timestamp": "5 years ago"}, {"text": "El ambiente es increíble, la localización es perfecta y las instalaciones son muy completas. 100% recomendable.", "author": "Miguel Tejedor Muñoz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4NjlhQ0pREAE", "timestamp": "5 years ago"}, {"text": "", "author": "pablo tort", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4NC1lczJ3RRAB", "timestamp": "5 years ago"}, {"text": "Es un lugar limpio y tranquilo cerca de la playa.", "author": "Valeria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OE1McWpBRRAB", "timestamp": "5 years ago"}, {"text": "Had a great stay in this hostel. Nice balcony and roof terrace, the rooms and showers etc. were cleaned regularly. Also, great kitchen so you can definetely cook for yourself. People were kind and great location. I definitely recommend this hostel!", "author": "Elise Perton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjcTcyZXd3RRAB", "timestamp": "5 years ago"}, {"text": "My stay at Pura Vida was amazing! The location is absolutely fantastic and the atmosphere is great! I would definitely go there again the next time I'm in Gran Canaria!", "author": "Josephine Sonneveld", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjcV9uMU9REAE", "timestamp": "5 years ago"}, {"text": "", "author": "Jose Alberto Cerejido Cortes", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzMjdQaWZREAE", "timestamp": "5 years ago"}, {"text": "직원분들은 너무 친절한데 4인실 남여공용은 창문이 없어서 좀 답답했어요. 그래도 샤워할 수 있는 화장실이 따로 있는 건 좋네요, 작지만 부엌이랑 테라스 있는 것도 좋았고. 한번 묵고 가기에 좋은 곳 인 것 같아요.", "author": "Olvi", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzeTRQZnFBRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Jan Bieron", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzMnJ6QTBBRRAB", "timestamp": "6 years ago"}, {"text": "It is now called pura vida and it is lovely", "author": "Chris Redmond", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNNi1hRTVBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Eugenia Belgrano (Eugebel)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNNjlMajhBRRAB", "timestamp": "6 years ago"}, {"text": "Me encantó, no me he quedado pero fuí con amigos que si y es super recomendable! El ambiente es increíble y volvería sin duda!", "author": "Maru Urrutia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNa2JDcHlBRRAB", "timestamp": "6 years ago"}, {"text": "It's an ok hostel, not well organized though. The people are cool, as in all the hostels I guess. Altogether it's alright, for this price definitely recommendable.", "author": "Andy F.", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNcm9TY3VRRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Eduardo lizardo gonzalez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNZzlyTDRBRRAB", "timestamp": "6 years ago"}, {"text": "Clean, receptionist are nice, cool vibes.", "author": "Valentina Jackson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNX2ZfVGRREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Sara Rey", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNeWNLcV93RRAB", "timestamp": "6 years ago"}, {"text": "Quiet but friendly hostel frequented (at the time I went) by Argentinians who would love to take you downtown and show you a good time on a Thursday or have a chill barbecue on the roof. Good time.", "author": "Kyle Milne", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwdmJqalV3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "Crisolino Ramos Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNXEydVJBEAE", "timestamp": "6 years ago"}, {"text": "Magnífica estancia. Lugar acogedor, limpio y bien situado. Staff muy agradable. Muy buen ambiente.", "author": "Diego Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNXZhTERnEAE", "timestamp": "6 years ago"}, {"text": "Estuvimos solo una noche pero todo estaba muy limpio y organizado. Repetiremos seguro!!!", "author": "ALEJANDRA BELLO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwNTVXd3Z3RRAB", "timestamp": "6 years ago"}, {"text": "Lugar perfecto para conocer gente, visitar la playa y pasar buenos ratos en compañía.\\nEl lugar está limpio y cuenta con todo lo necesario! Las chicas y chicos que lo atienden son perfectos anfitriones!", "author": "Martina Lema", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwNW9IUGNREAE", "timestamp": "6 years ago"}, {"text": "Quasi due anni fa'andai in questo posto. Atmosfera silenziosa rilassata, ospiti e padroni chillout, una famiglia vera e propria.", "author": "Gianluca Ardizzoni", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMGRLQUp3EAE", "timestamp": "6 years ago"}, {"text": "", "author": "eloi arohcna", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdElDa2t3RRAB", "timestamp": "6 years ago"}, {"text": "Una experiencia increíble, estuvimos en Las Palmas unos días y nos acogieron como si estuviésemos en casa.\\nAdemás ese acento tan bonito de sus trabajadores mezclado con la magia del lugar y su ubicación lo hacen especial.\\n\\n100% recomendable.", "author": "Ayose Hernández Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcFBXQXFnRRAB", "timestamp": "6 years ago"}, {"text": "Experiencia inolvidable, para una experiencia de convivencia internacional gente con espíritu joven y ganas de conocer y disfrutar. Y económico, una forma diferente de viajar, cumple lo que promete llegas como cliente y es verdad te marchas queriendo volver y haciendo amigos.", "author": "Casi Do", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJbzRPbUJREAE", "timestamp": "Edited 6 years ago"}, {"text": "..el lugar está muy bien situado, el ambiente estupendo y el personal hace que la estancia sea muy agradable.\\nTodo perfecto !!!", "author": "Joaquín Vega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrazdEMk5nEAE", "timestamp": "6 years ago"}, {"text": "Es una porquería y tendría que estar cerrado por sanidad y no cumple con la jjjjjjnormativa vigente, un solo baño, una habitación para 4 personas con 6 metros cuadrados y sin ninguna ventilación jamás lo recomendaría a nadie y todo muy sucio, las fotos que han puesto son cuando se abrió y se ahora está todo hecho una porquería e insalubre, no hay ni un extintor y en el baño no hay ventilación, un verdadero asco", "author": "Julio Minguillon", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbWZHSU53EAE", "timestamp": "6 years ago"}, {"text": "Bueno colchones buenos lo demás tiene muncho que deceas", "author": "Jorge Tirado", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrOFpUZVJ3EAE", "timestamp": "6 years ago"}, {"text": "Horrible sin más!", "author": "Mary Carmen Calvente Pérez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrMFlpNEtnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "JCG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZdTkyTUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Oliver Sebe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZN1lQOHFnRRAB", "timestamp": "6 years ago"}, {"text": "Muy bueno excelente relación precio valor la atención de Martín lo mejor", "author": "sandra gutierrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZd2VyaEJnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Viguer Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZOG9MUVlnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Francois Ungerer", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZek51cXR3RRAB", "timestamp": "6 years ago"}, {"text": "Gente Genial ! Muy buenas recomendaciones. Te ayudan mucho a hacer actividades por toda la isla y tienen descuentos con empresas locales. En generel muy buen ambiente en el hostal. Han hecho una cena donde pude conocer mas gente, al final hemos hecho piña y hemos terminando viajando juntos un grupillo. La playa esta muy cerca y tienen un espacio en el piso de arriba para trabajar tranquilamente. En base a mi experiencia lo recomiendo 100%. Volveré !", "author": "César Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvX0o3aHJ3RRAB", "timestamp": "6 years ago"}, {"text": "Aquí encontrarás cama para pasar uno o varios días por un precio asequible ( varía según temporada y si es entre semana o fin de semana). Se encuentra en la zona para hacer surf de la playa de Las Canteras. Cerca de un Mercadona que facilita tus compras para usar en la cocina compartida entre todos los inquilinos. Zonas comunes y terrazas para no fumadores y fumadores. Wifi 5G y 2G. Este tipo de alojamientos conlleva el compartir aseos y habitación con desconocidos. Ello implica tener que adaptarse a las costumbres horarias, orden y de higiene personal del resto de huéspedes... El personal es muy amable y profesionales.", "author": "Javier LaChica", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURveUozTW5BRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Un buen lugar. Cómodo y la atención y amabilidad es impagable. Buena recepción y cocina amplia y cómoda para hacer buenas comidas. A pocos metros de la playa y de un centro comercial.", "author": "PABLO ESTEBAN", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNval82SENBEAE", "timestamp": "6 years ago"}, {"text": "The top hostel in Las Palmas, the stuff is as family, the hostel is close the beach for a good surf session, room and comun aerea very clean....5 stars", "author": "fabio leone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNveDh5bFVnEAE", "timestamp": "6 years ago"}, {"text": "Great location to the beach, very nice and friendly staff. Had some wonderful time here! Thanks everyone!", "author": "rego justforregistration", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvbXFfeWtnRRAB", "timestamp": "6 years ago"}, {"text": "Me......", "author": "Nicolás Osuna García", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNveW91aTl3RRAB", "timestamp": "6 years ago"}, {"text": "ambientazo!! super recomendable!! muy bien ubicado.", "author": "Maria Prato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvLU16LURREAE", "timestamp": "6 years ago"}, {"text": "Si planeas tu estancia en la zona te lo recomiendo!!. Es un albergue muy acogedor, con muy buen ambiente,a un paso de la playa y en el mejor sitio para aprender surf.", "author": "Miriam Alcántara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJdjh6WW1BRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Yuliia Kistanova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcjZxNHBBRRAB", "timestamp": "7 years ago"}, {"text": ".bien.", "author": "Ada García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJeS02aHh3RRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Jacek Sztorc", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJc3BtSmxnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Hassanain OpenYourEyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOUtqNEtBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Julija Kuceruka", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJeDZmMk1nEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Saúl Cruz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRcDV5SVBBEAE", "timestamp": "Edited 7 years ago"}, {"text": "", "author": "Christian Rodríguez Plana", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJNGFIajRRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Mathias Genta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRb3N6d1FnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "fabrizio chiapparin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnbktPR2hBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Valeri R", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3LU9XZ1RBEAE", "timestamp": "7 years ago"}, {"text": "Awesome place to stay! Great location, friendly atmosphere and comfy stay! Definitely recommended and wanna visit again!!", "author": "Sofie Brodova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRX3RMeG5RRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Leo Borges", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBNXR2UldnEAE", "timestamp": "7 years ago"}, {"text": "No esta mal, limpio y ordenado.", "author": "Adria Creixell", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRdU1QbGpnRRAB", "timestamp": "7 years ago"}, {"text": "Situación muy buena personal de lo mejorcito y unas habitaciones amplias, cómodas y un diseño en todo el Hotel muy actual.😉 Gracias por acogernos y sentirnos como en casa", "author": "Julio Martin de Dios", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3OGQtTldREAE", "timestamp": "7 years ago"}, {"text": "Was a pleasur to stay with you guys! Employees and volunteers are amazing, clean and perfect located. Have Fun and Enjoy", "author": "Stefano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNncEtMSjFBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Magdalena Lena", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnZ2ZiWEtBEAE", "timestamp": "7 years ago"}, {"text": "Miły i dobry hostel, polecam", "author": "studio -mt", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRclBtR2RREAE", "timestamp": "7 years ago"}, {"text": "Przytulny hostel.", "author": "Sebi Bin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBbnE2QlVnEAE", "timestamp": "7 years ago"}, {"text": "Es moderno y está bien cuidado", "author": "Consulting Ocean", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRekxEMjlnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Elena Vietinghoff", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnLUliRjFBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Waterman Rex", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRcE03eUZREAE", "timestamp": "7 years ago"}, {"text": "", "author": "Lou Keay", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBZ01lN093EAE", "timestamp": "7 years ago"}, {"text": "Great location and cool atmosphere...", "author": "Neil Williams", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnaUxHdXBRRRAB", "timestamp": "8 years ago"}, {"text": "Very good", "author": "Angelo Mauro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMGFXUXhBRRAB", "timestamp": "8 years ago"}, {"text": "Good coffee", "author": "Kamil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnaWRfRDd3RRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Kevin Flores", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBcmVXNGxnRRAB", "timestamp": "8 years ago"}, {"text": "Un hostel moderno, muy ordenado y limpio.\\nPrecio increíble. Perfecto para pasar unos días en la ciudad de las Palmas , alojándote cerca del mar, cerca de La Cícer, el área deportiva de la playa de Las Canteras", "author": "Raquel M.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRajl2NkFnEAE", "timestamp": "8 years ago"}, {"text": "ambiente familiar y gente estupenda. el único gran problema de la wifi que nunca va y no se puede trabajar o simplemente ver una película.no va a ninguna parte, ya sea en la recepción o en las habitaciones o en la cocina o en la terraza superior. nunca va", "author": "Karin Casadei", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBODU3bWlRRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Diana Cornejo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBM3NTdGdRRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Cristina Cleotina", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRd01YZWRBEAE", "timestamp": "8 years ago"}, {"text": "", "author": "Claudio Pino", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRb3V1MndBRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Moon Shine", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBcmViYkFREAE", "timestamp": "8 years ago"}, {"text": "Pura Vida remains my hart forever, i spent here a wonderful week. This is not just a simple hostel, it's a family. Many cool people from all around the world with free soul. You can easily make here new friendships. 🤙🏻❤️", "author": "Ági Janó", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnaU5tdHFBRRAB", "timestamp": "8 years ago"}, {"text": "A pocos metros de la playa de las Arenas de Gran Canaria este hostel tiene un espectacular ambiente con mucha gente practicante de surf de todo el mundo", "author": "Carlos Olmo Bosco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRNWF1OFl3EAE", "timestamp": "8 years ago"}, {"text": "Buen ambiente buena situación", "author": "Alvaro Florindo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3azlQa2VREAE", "timestamp": "8 years ago"}, {"text": "Ein sehr gutes Hostel!", "author": "Konstantin Miller", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3OGFxUFd3EAE", "timestamp": "9 years ago"}, {"text": "Muy buena", "author": "Christopher Parada", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBamU2VjdBRRAB", "timestamp": "9 years ago"}, {"text": "This hostel has a serious bed bug infestation, and the host, Miguel, is covering it up.\\n\\nI was bitten extensively during my stay — painful bites that required treatment. When I brought it to Miguel’s attention, he told me not to inform other guests or say anything publicly. Instead of dealing with the issue responsibly, he chose to lie to other guests and even to his own staff, telling them there was no problem at all.\\n\\nThis wasn’t a misunderstanding or a minor oversight — it was a deliberate attempt to hide a bed bug infestation. I’ve traveled widely and understand that issues can happen, but I’ve never encountered a host who so clearly prioritized his reputation over guest safety. The dishonesty was as disturbing as the infestation itself.\\n\\nMiguel will probably deny all of this. That’s just his style.\\n\\nAvoid this property, and consider carefully whether this is the kind of host you want to trust.", "author": "Zander", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VOMjZzOVgwa3EyYTV3RRAB", "timestamp": "8 months ago"}, {"text": "DO NOT STAY HERE!! Two weeks ago I got a fraud charge for $75 from this hostel (I booked this hostel for February)!! My credit card company said that the way the charge was made was with tap payment, and they likely made a fake copy of my credit card and used it. In addition to this, my in-person experience with them was horrible. My two friends and I booked a 6-person mixed dorm room. The three other people in the room were weird middle aged men (we were three 20 year old girls). There was dirt on the sheets too and when we asked if we could move rooms they wouldn’t move us. We had to book a hotel to stay in that night and cancelled.", "author": "Yasha Paola Zink", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VPbWFyXy1LanVQVVpnEAE", "timestamp": "8 months ago"}, {"text": "It could be possible that the reason this establishment has so many positive reviews is that they threaten customers who leave bad reviews. I received this comment on a review I posted. I do not care to have a further conversation with this establishment so I will only say I would not recommend it to anyone.", "author": "Faith M.", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pndGRFTk1lR1pRU0dONVdqaDNhRzFrU3kxM1lrRRAB", "timestamp": "Edited 5 months ago"}, {"text": "I want to give this place 0 stars but that’s not possible. I don’t know why there are so many positive reviews. I felt very uncomfortable and unsafe here. I do not recommend at all", "author": "Lydia Richard", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25kaVEyaHBVVlZ6T0ZCR01HZHpNbVJGY0dwWlNYYxAB", "timestamp": "Edited 5 months ago"}, {"text": "Unfortunately, I agree with other poor comments. The pictures are old. The building has no air conditioning. The room with 4 beds is TINY. There is not a good atmosphere there. The owner and workers were nice but overall the feeling of the place was not good. It is much much older than the pictures. I moved to a new hostel because I did not feel comfortable, there is NO personal space at all, no curtains at top beds etc", "author": "Tansy Ryan", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNqdHVHVzhnRRAB", "timestamp": "a year ago"}, {"text": "Honestly, I don’t understand why this hostel has such great reviews, I came here because of it and the pictures (must be taken many years ago because didn’t match with the reality at all) and it was a real disappointment. I didn’t like the atmosphere at all, it’s not a backpacking nor a meeting-new-people environment. I almost didn’t see people of my age (30), everybody was much older. The hostel in general is not clean, the staff live in the hostel so there are a lot of services (fridges or food compartments for example) that have the sign “only for staff”. My bunk bed didn’t have bed linen nor pillowcase… I had to ask for it.", "author": "Pablo Nava González", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWek5tWmh3RRAB", "timestamp": "2 years ago"}, {"text": "DO NOT GO THERE ‼️‼️\\nthere was bed bugs in my friend's bed so she had to sleep in mine. also there was no window in the room (we were 6 to sleep there), it was horrible.\\nthe AC didn't work, how sad in july the HOTTEST month of the year...\\ni don't know why they are so many good reviews because it sucks.\\nnow, we have to talk about the showers.. only one shower was private, in the other bathroom the two showers were transparent. it was very uncomfortable to take a shower.\\nthe wifi was a scam it did not work.\\ni think miguel bewitched the people who let a positive review because they're only talking abt him (joking) . he was nice though", "author": "anonyme", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3NHNEWjBnRRAB", "timestamp": "a year ago"}, {"text": "It's been the first time that the owner of a hostel wanted us not to stay. Basically he kicked us out on a Saturday afternoon (thanks for that). The reason, we saw the hostel and he knew that we would leave a bad review. The 4 beds bedroom, had an extra bed. The smell was bad and the aircon was not working. The only ventilation was the door. The bathrooms were not as expected, pretty dirty. The kitchen so so.", "author": "Federico Arena", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNWMTl1NGpnRRAB", "timestamp": "2 years ago"}, {"text": "Don't give a try. The worst hostel I have been.\\nEverything is old and dirty.\\nThere is no hot water at all.\\nNo toilet paper.\\nStaff is kind, but that is not enough to give more stars.", "author": "Nikola Tucaković", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfMDV2OVd3EAE", "timestamp": "a year ago"}, {"text": "I was in this awful hostel six years agò. I didn't remember the name of the hostel till now, because I had an horrible experience, I don't reccomand anyone.\\nThe volunteer were awfull and they verbally harassed me, I remember there were a girl I think from Latin American and an Austrian girl working there at that time, along with another spanish guy who said to me that if I have complain about the room I would have to sleep in the street. They verbally harassed me and they were isolated me and speaking bad about me so I had an horrible stay and I had to change hostel before\\nI never had this experience in my life, I should have report this what in happened and those people should have been fired. I hope now service has been improved.\\nWhat happens to me its called bullying and I truly hope they got the karma they deserve.", "author": "Sara Paolicchi", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNGN2RLbmNBEAE", "timestamp": "2 years ago"}, {"text": "WARNING: BED BUGS!\\n\\nI stayed at this nasty hostel for just one night and was covered with red spots all over my body. The bed sheets had visible stains and were obviously not washed but I pushed through as I was booked for only one night. I shouldn’t have stayed, nasty and never again!", "author": "Tim Nowak", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURCZ3NXNE9REAE", "timestamp": "3 years ago"}, {"text": "Really dissatisfied to be honest\\nOwner is very Interested In money expect to pay all upfront for at least a week", "author": "OneDev", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURkNE5mRE9nEAE", "timestamp": "Edited a year ago"}, {"text": "No comments", "author": "Divine Adventure", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOHZfb3lnRRAB", "timestamp": "3 years ago"}, {"text": "The only good thing about this hostel is the location. I seriously think it's overrated, the bunks in the room where I was accommodated, were old and shabby, there are construction works just next door and start and 8 am with the horrible noise and crane hanging just over the terrace. I've got sick after one night there 🤢 as they leave all the windows open during the night and all the humidity and dust come to your lungs. I started coughing and Miguel told me I have to leave as other guests were complaining l. He didn't care if I am okay and where I am going to spend the night, that much about the attitude. And I have a transplanted kidney, taking immunosupression.\\nAnyway I was happy to leave and not stay in this miserable place.\\nFurthermore I received later this ugly message from the hostel, blaming me for expressing my opinion here on Google and threatening me they are never going to accept me as guest in any of their hostels. I don't know how this type of of discriminative and delusional behaviour is still in the business.\\nDon't go there!", "author": "Hristiyana Todorova", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tkdFUzbzJkbHB3TW1KUVRraDZSMVpmVDFCNE5WRRAB", "timestamp": "a day ago"}, {"text": "Ya he estado en varios hostales pero en este hostal se siente una mala vibra que en ningún otro sitio. Durante\\nmi estancia me sentí incómoda, inferior y juzgada entre mujeres. La manager es inadecuada para su puesto.\\nY a pesar de las normas, todo se olía a marijuana.\\nEn serio tengo que soportar esto en 2025?", "author": "Julia Gonzáles león", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKUFppMVZOakpXTURGVVZEZGphbmM0YkRaWGFVRRAB", "timestamp": "4 months ago"}, {"text": "Lo único positivo sobre el hostal es su ubicación y su nombre llamativo 'Pura Vida'.\\nEn realidad es un sitio HORRIBLE, tanto la habitación, el baño, la cocina, la terraza como el personal y su 'trato'. Todo el día solo 'limpiando' y aún así todo sucio, antiguo y desordenado. Había más voluntarios que huéspedes. Todo selectivos queriendo alojar solo los que les caían bien y encajaban a su grupo de amigos/familia. Ni hablar del ruido de sus cenas familiares todas las noches hasta las 23.\\nFue un alivio irme.", "author": "Amanda Toledo batreto", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pFNVVFcGlhak51VTNWaVEyOURXbUp0UlU1bldHYxAB", "timestamp": "5 months ago"}, {"text": "El hostal es terriblemente malo, nada más entrar ya te llega un olor muy raro y fuerte, luego ya avanzas a la recepción y te encuentras todo muy sucio y al gerente del hostal, el cual va de majo pero lo único q realmente quiere es que le pagues y luego se comportará de malas maneras, luego cuando te muestran la habitación y te vas moviendo por el lugar ves que las condiciones son pésimas, todo tirado por el suelo, un microondas del año de la polca, la cocina pintaba que si cocinabas allí te iba a entrar de todo, la habitación es la definición de zulo, 6 literas todas apiñadas y sin ventanas, que si ya juntas con el olor ya comentado en el inicio se convierte en un sitio inhabitable.\\nYo de verdad no me explico como puede haber tan buenas críticas, con las pésimas condiciones que ofrece, no recomendaría este sitio ni a mi peor enemigo. En cuanto vi las condiciones decidimos irnos, si los que lean esto no les vale mi opinión porque no haya dormido allí perfecto, yo solo estoy indicando lo que vi. Solo quiero informar, nada más.", "author": "santiago arias", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2aTZIdFpBEAE", "timestamp": "a year ago"}, {"text": "Hostal Pura Vida - A priori muy bien en mi experiencia en el 2021-2022. Quedé contento y buen rollo aunque por entonces en ese Hostel nadie llevaba mascarilla y pensando que cogí el bitxo, fue una bronquitis pero con ese susto, tuve el beneficio que dejé de fumar.\\n\\nEn esta ocasión estuve una noche (Nov. 2024) pk cogia un vuelo a otra isla, hubo lo típico de hostels y habitaciones compartidas, poco espacio, ruidos, gente que habla, algún ronquido y música bien alta a las 9am. Ok!!\\n\\nCual fue mi sorpresa que para reservar 3-4 noches directamente con el hostel, me dice el gestor del alojamiento que alguien se ha quejado de que he roncado y no me puede alojar.\\nComo llamamos a eso?\\nSe reserva el derecho de admisión a roncadores, vaaaamos... ESTO ME PARECE UN DESPRECIO!! QUE PONGAN MEDIDORES DE DECIBELIOS DE RONQUIDOS EN CADA HABITACIÓN Y SE SORPRENDERÁN!!\\n\\nNi yo ronco tanto, ni fue todo tan maravilloso pk hubo ruido por la mañana, gente habló alto y música a las 9am. Que digo yo entonces?\\n\\nEste alojamiento se ha vuelto muy elitista y solo aloja a los surfistas que le caen bien al gestor del alojamiento y sus habituales. Yo incluso en ese día que estuve cogí un bodyboard, pero ni aún así.\\n\\nDar confianza en un lugar y que después te respondan lo siguiente: \\"Y si lo reservas por Booking, te acepto a tí y tengo que echar a los otros 3 de la habitación\\".\\n\\nCONCLUSIÓN: Llevo casi 2 décadas viajando solo y acompañado por Hostels por todo el mundo y nunca me había pasado algo igual.\\nVaaaamos, un total desprecio!!\\n\\nUn saludo, Feliz Amor y Pura Vida!!\\n(pero la negativa a alojarme está ahí, me parece un desprecio y por eso escribo estás líneas).", "author": "Jorge Antón", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQdE5yT2ZnEAE", "timestamp": "a year ago"}, {"text": "¿Por dónde empezar?\\nPrimero, el alojamiento no corresponde en la realidad con las fotos que publicaron en la web. Se nota que fueron fotos tomadas al inaugurar el sitio, pero está claro que desde entonces todo ha cambiado a peor.\\nSegundo, nos dieron una habitación de 8 camas en tres literas mixtas, cuando yo había reservado una habitación de 4 camas y solo para chicas.\\nTercero, obviando el problema anterior, podríamos habernos quedado pero realmente fue imposible. La limpieza y el mobiliario fue el colmo. Nos encontramos con colchones y almohadas que parecían sacados de la basura, todos negros, asquerosos y sin duda, con aspecto estar tomado por chinches o bichos. Los pisos estaban sucios, las cortinas de las literas tenían marcas blancas sospechosas. Además, la habitación tenía golpes en las paredes y cero ventanas para airearla. Solo contábamos con un ventilador oxidado y obviamente la falta de ventilación provocaba que oliera a humedad, por lo que me dio alergia.\\nAsí que simplemente decidimos irnos del alojamiento y dormir en otro sitio.", "author": "Wilmar Pereira", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNwNHBPeGFnEAE", "timestamp": "2 years ago"}, {"text": "Me hospedé en el hostel primero como clienta y luego empecé de voluntaria. Me he sentido muy mal acogida y he notado un desinterés hacia los voluntarios por parte del propietario. También no se mostró muy receptivo en el momento en el que le pedí el dinero de vuelta, ya que había estado trabajando las dos semanas. Y para finalizar también añadir que el precio me parece totalmente desmesurado teniendo en cuenta lo que ofrecen. Muy descontenta así en general.", "author": "Júlia Jiménez", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLa2JHc2lnRRAB", "timestamp": "4 years ago"}, {"text": "A principio de julio nos quedamos en una habitación un fin de semana. Desde la primera noche ya comunicamos que teníamos picaduras, se lo comunicamos al dueño pero no tuvimos una mejora en el servicio. Las CHINCHES nos acribillaron a muchas de nosotras y estamos segura que el dueño era conocedor de la situación.", "author": "Isabel Moreno Martínez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTRMMk5BEAE", "timestamp": "2 years ago"}, {"text": "À fuir absolument.\\nTrès sale, insalubre.\\nMénage inexistant, moisissures dans les douches.\\nVétuste aucune conformité avec les normes électriques et de sécurité.\\nN'ACCEPTE QUE LES RÈGLEMENTS ESPÈCES.\\nA DÉNONCER À L'ADMINISTRATION FISCALE.", "author": "Éric Lacabe", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxbjVUc3ZRRRAB", "timestamp": "2 years ago"}, {"text": "Si queréis tranquilidad y dormir buscaros otra cosa pero si queréis hacer lo que os de la gana este es tu lugar.Yo estuve 10 días no dormí nada para ducharte tenías que esperar y cuando estabas duchandote te aporreaban la puerta para que terminarás.En conclusión una pesadilla gente empatica.Por decir algo bueno que vi allí fue a Miguel el jefe ,una persona magnífica agradable y mejor persona.", "author": "Jesus Jaimez Serrano", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdnVuR21nRRAB", "timestamp": "3 years ago"}, {"text": "Un trato pésimo de la persona q nos atendió,pésimo lugar,todo sucio desordenado,olor horrible y la persona a cargo 0 agradable.no recomiendo la estancia en este lugar,es una estafa no querían devolvernos el dinero de la reserva la cual no usamos y pidiendo el rembolso ya q pagamos una señal.", "author": "Yaiza Munoz", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN2MmJHaENREAE", "timestamp": "a year ago"}, {"text": "Sitio sucio saturado y con todo roto . La litera super peligrosa porque no tiene escalera en condiciones para subir y el espacio es mínimo no se cómo puede estar abierto este albergue.", "author": "R L", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKM0xxVXlRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Es una porquería y tendría que estar cerrado por sanidad y no cumple con la jjjjjjnormativa vigente, un solo baño, una habitación para 4 personas con 6 metros cuadrados y sin ninguna ventilación jamás lo recomendaría a nadie y todo muy sucio, las fotos que han puesto son cuando se abrió y se ahora está todo hecho una porquería e insalubre, no hay ni un extintor y en el baño no hay ventilación, un verdadero asco", "author": "Julio Minguillon", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrbWZHSU53EAE", "timestamp": "6 years ago"}, {"text": "Bueno colchones buenos lo demás tiene muncho que deceas", "author": "Jorge Tirado", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrOFpUZVJ3EAE", "timestamp": "6 years ago"}, {"text": "Muy muy sucio....", "author": "Juan de la Torre García", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXaWJYWVdBEAE", "timestamp": "3 years ago"}, {"text": "Cuidado!! Tiene chinche.", "author": "Violeta Moreno Martínez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKaTl5VVpBEAE", "timestamp": "2 years ago"}, {"text": "Horrible sin más!", "author": "Mary Carmen Calvente Pérez", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrMFlpNEtnEAE", "timestamp": "6 years ago"}, {"text": "Me......", "author": "Nicolás Osuna García", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNveW91aTl3RRAB", "timestamp": "6 years ago"}, {"text": "Bedbugs! Bettwanzen!", "author": "Jojakim Sames", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNObnVDbGVnEAE", "timestamp": "2 years ago"}, {"text": "No recomendable", "author": "Christo Bn", "rating": 1, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNabXJLR3pRRRAB", "timestamp": "2 years ago"}, {"text": "Desepcionante", "author": "Robert Herrera", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GcE1VVXdkek42Um5CUFUzWm5iREpmUVVNNGNtYxAB", "timestamp": "2 days ago"}, {"text": "", "author": "Elena C.M.", "rating": 1, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ3MWZMVkZREAE", "timestamp": "a year ago"}, {"text": "positives: great location, free sun cream, kind staff, fridges to put food,\\nnegatives: the photos look nothing like the hostel, it doesn't feel super safe there, a majority of the clientele was over 40/50 and was using the property as long term accommodation, beds weren't very clean, smell.", "author": "Andrew Collett", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25rMmFYSmFTMUpFUjFoT2JVZHJVSGd6VlMxemRFRRAB", "timestamp": "2 weeks ago"}, {"text": "Perfect place, near the see, but I didn't like that the room has no key and the Schrank has no key too. I woke up with 2 bites on myself...", "author": "Stefania Garone", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqcllYN19nRRAB", "timestamp": "a year ago"}, {"text": "Ich verstehe die hohen Bewertungen nicht!!!\\nEin Stern dafür, das Miguel sich tatsächlich alle Namen merkt und teilweise interessierte Fragen stellt. Und zusätzlich ein Stern dafür, daß die Ruhezeiten eingehalten werden und die Nähe zum Strand.\\n\\nDann hören die Sterne auf, denn es gilt auch die Unterkunft zu bewerten. In 3,5 Monaten Reise hab ich keine schlechtere Unterkunft gehabt!\\n4er Zimmer unfassbar teuer für die Absteige! Durchgelegene Matratze, klein klein, kaum genug Platz für Gepäck, kein Fenster, Lüftung mässig, kein Extralicht man stört somit immer Jeden oder behilft sich im Dunkeln! Super hellhörig, Gespräche und Schnarcher aus dem Nachbarzimmer ungefiltert. Zu wenig Badezimmer für die Anzahl der Leute, alles unfassbar abgerockt! Sauber??? Nein! Nicht die Badezimmer, nicht die Küche,nicht im Allgemeinen!\\nBeschriftete Lebensmittel kommen weg!\\nMöchte ein hippes Surfhostel sein, aber den Check-in macht man quasi selbst. ID Foto schicken, eintragen in die Listen.....man kann nur Cash zahlen....oh weia! Zum Glück das letzte Hostel vor Abreise, somit ist der Abschied etwas leichter!", "author": "Manuela Schäffer", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNCXy02OFJBEAE", "timestamp": "Edited 3 years ago"}, {"text": "Zimmer 6 stinkt nach ekelhaftem käse und da schläft jemand der schnarcht.. vermeidet das Zimmer ☺️", "author": "Dert Al", "rating": 2, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNJM2FPdG1BRRAB", "timestamp": "9 months ago"}, {"text": "Caros no, lo siguiente!! Habrá gente que le interese, a mi no!!", "author": "Gerardo Sáenz De La Torre", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTeVBEZFZREAE", "timestamp": "Edited 5 years ago"}, {"text": "", "author": "Quis Norris", "rating": 2, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21acGJ6Vk5RbE00U0dsYVVsOUdhVTVGT0V0dk9FRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "Moon Shine", "rating": 2, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBcmViYkFREAE", "timestamp": "8 years ago"}, {"text": "It's an ok hostel, not well organized though. The people are cool, as in all the hostels I guess. Altogether it's alright, for this price definitely recommendable.", "author": "Andy F.", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNcm9TY3VRRRAB", "timestamp": "6 years ago"}, {"text": "Creo que no repetiría. Mi litera no tenía ni escalera, y para subir y bajar era toda una actividad de calistenia. Los baños siempre ocupados, no muy limpios y anticuados. Las tablas y neoprenos que tienen para alquilar diría que las amortizaron ya hace 20 años. Lo único bueno es que está cerca del mar y que tienen habitaciones solo para mujeres.", "author": "CELESTE GÓMEZ VICENTE", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNSMFotS2RREAE", "timestamp": "2 years ago"}, {"text": "Aquí encontrarás cama para pasar uno o varios días por un precio asequible ( varía según temporada y si es entre semana o fin de semana). Se encuentra en la zona para hacer surf de la playa de Las Canteras. Cerca de un Mercadona que facilita tus compras para usar en la cocina compartida entre todos los inquilinos. Zonas comunes y terrazas para no fumadores y fumadores. Wifi 5G y 2G. Este tipo de alojamientos conlleva el compartir aseos y habitación con desconocidos. Ello implica tener que adaptarse a las costumbres horarias, orden y de higiene personal del resto de huéspedes... El personal es muy amable y profesionales.", "author": "Javier LaChica", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURveUozTW5BRRAB", "timestamp": "Edited 6 years ago"}, {"text": "Остановился на одну ночь и самом деле по фоткам ожидал лучшего. Всё убогое и старое. В душе был сломан держатель душа. Комната очень маленькая. На трассе всё грязное и неприятно садится куда нибудь. Короче первый и последний раз.", "author": "Andrei Mur", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMyb3Z6cW5BRRAB", "timestamp": "3 years ago"}, {"text": "Es ist kein Luxus und keine Moderne zu erwarten. Mein Zimmer mit 3 Frauen war ziemlich klein.\\nUnmittelbar am Surferstrand gelegen und dafür auch ausgelegt.", "author": "TanYahable", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCdThITzlRRRAB", "timestamp": "3 years ago"}, {"text": "Le seul hostel qui demande toutes vos infos bancaire tout cela pour vous inciter a payer en liquide\\nLit immense mais trop mou\\nPrise qui fait peur", "author": "Polo doro", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURRdGZMWV9nRRAB", "timestamp": "10 months ago"}, {"text": "ambiente familiar y gente estupenda. el único gran problema de la wifi que nunca va y no se puede trabajar o simplemente ver una película.no va a ninguna parte, ya sea en la recepción o en las habitaciones o en la cocina o en la terraza superior. nunca va", "author": "Karin Casadei", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBODU3bWlRRRAB", "timestamp": "8 years ago"}, {"text": "Miły i dobry hostel, polecam", "author": "studio -mt", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNRclBtR2RREAE", "timestamp": "7 years ago"}, {"text": "Buen ambiente buena situación", "author": "Alvaro Florindo", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3azlQa2VREAE", "timestamp": "8 years ago"}, {"text": "", "author": "angel", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCaS11YzhRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Giulia Di Simone", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMydk8yYkRnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "eloi arohcna", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVdElDa2t3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Jacek Sztorc", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJc3BtSmxnRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Christian Rodríguez Plana", "rating": 3, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNJNGFIajRRRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Lou Keay", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBZ01lN093EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Cristina Cleotina", "rating": 3, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRd01YZWRBEAE", "timestamp": "8 years ago"}, {"text": "Great place, very close to the beach. Friendly staff and a nice big kitchen with a cool place to hangout. Lots of surfing schools nearby and good transport access with a bus stop right outside.", "author": "Awais Yousaf", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ4dmNYdWVnEAE", "timestamp": "5 years ago"}, {"text": "We enjoy our stay at the hostel! The room was quite dark but overall nice place!", "author": "Emilia Koc", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoNUp5QWt3RRAB", "timestamp": "2 years ago"}, {"text": "Very good place to stay and affordable. The staff was very friendly and made you feel welcome and part of the family.", "author": "Pedro E Garcia", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyLTViS1pnEAE", "timestamp": "3 years ago"}, {"text": "overall nice stay, clean but the room was a bit too dark", "author": "Sara Czajkowska", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNoalAyZWhRRRAB", "timestamp": "2 years ago"}, {"text": "Good position of the hostel, toilets always dirty.", "author": "Cosimo Simeone", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCM09xRTJBRRAB", "timestamp": "3 years ago"}, {"text": "Si quieres una opción económica y para pasar la noche o unas cuantas por un módico precio este es el sitio, colchón cómodo y sitio tranquilo.\\n\\nMiguel es muy buen tipo, para todo lo que necesites está dispuesto y crea un ambiente muy familiar, incluso la persona con la que iba se olvidó unos auriculares cuando hicimos el check-out y, en seguida, mandó un whatsapp para avisarnos.\\n\\nAunque no es primera línea, se encuentra muy cerca de la playa de las canteras (donde mucha gente practica surf), incluso allí te alquilan tablas y neopreno por muy buen precio.", "author": "Miguel Giménez", "rating": 4, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT210b2FtVTNSbkpQTUd4WlkyNVdOa1psTUdnMmIyYxAB", "timestamp": "3 months ago"}, {"text": "직원분들은 너무 친절한데 4인실 남여공용은 창문이 없어서 좀 답답했어요. 그래도 샤워할 수 있는 화장실이 따로 있는 건 좋네요, 작지만 부엌이랑 테라스 있는 것도 좋았고. 한번 묵고 가기에 좋은 곳 인 것 같아요.", "author": "Olvi", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzeTRQZnFBRRAB", "timestamp": "5 years ago"}, {"text": "Un buen lugar. Cómodo y la atención y amabilidad es impagable. Buena recepción y cocina amplia y cómoda para hacer buenas comidas. A pocos metros de la playa y de un centro comercial.", "author": "PABLO ESTEBAN", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNval82SENBEAE", "timestamp": "6 years ago"}, {"text": "A localização do hostel e a vibe dos seus funcionários é incrível! Se estão à procura de troca cultural e de pôr-se à prova com o inglês o lugar ideal é la!", "author": "Vanessa De Oliveira", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNocE9DX0dnEAE", "timestamp": "2 years ago"}, {"text": "Me encantó, no me he quedado pero fuí con amigos que si y es super recomendable! El ambiente es increíble y volvería sin duda!", "author": "Maru Urrutia", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNa2JDcHlBRRAB", "timestamp": "6 years ago"}, {"text": "Un sitio cómodo y cercano, dónde puedes ir con grupos grandes!!!\\n\\nEstá al lado de la playita", "author": "Berta BB", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURPX2JhVmdnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena", "author": "Christopher Parada", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURBamU2VjdBRRAB", "timestamp": "9 years ago"}, {"text": "Es moderno y está bien cuidado", "author": "Consulting Ocean", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRekxEMjlnRRAB", "timestamp": "7 years ago"}, {"text": "Per giovani no frills. Efficace", "author": "Michele Gatto", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXOE4yanFnRRAB", "timestamp": "3 years ago"}, {"text": "No esta mal, limpio y ordenado.", "author": "Adria Creixell", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURRdU1QbGpnRRAB", "timestamp": "7 years ago"}, {"text": "Przytulny hostel.", "author": "Sebi Bin", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBbnE2QlVnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Maracot", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VPYk5sdGJmcWNpSWJREAE", "timestamp": "8 months ago"}, {"text": "", "author": "Jonis", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNfanRPcU1BEAE", "timestamp": "a year ago"}, {"text": "", "author": "Roji Magar", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscDQ3RmhnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Viera Semánik Orosová", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURCOF9MZnBBRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Shakira Rodriguez Moares", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCX0xqWW9BRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Alice B", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMDh6WTNBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "", "author": "Romain Farneti", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dzU3M0hREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jose Alberto Cerejido Cortes", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNzMjdQaWZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Eduardo lizardo gonzalez", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNZzlyTDRBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Sara Rey", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNNeWNLcV93RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Francois Ungerer", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNZek51cXR3RRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Saúl Cruz", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRcDV5SVBBEAE", "timestamp": "Edited 7 years ago"}, {"text": "", "author": "Valeri R", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3LU9XZ1RBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Elena Vietinghoff", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnLUliRjFBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Kevin Flores", "rating": 4, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBcmVXNGxnRRAB", "timestamp": "8 years ago"}, {"text": "I had a lovely 1 night stay in Pura Vida, and I enjoyed it so much I will definitely book to stay longer on my next trip to Gran Canaria. It's so close to the beach, only steps away. Everyone is very friendly and I was made to feel very welcome by both the staff and other guests, many of whom I spoke to have stayed before or volunteered here before, so it's clear that people love coming back to this place. It has a sense of community, and everyone seems very laidback and easygoing, but also eager to help if you need it. The rooms were comfortable and there are lockers for your belongings, but bring a padlock, as I had forgotten to do this. The beds are comforable and it's not too hot at night, there is plenty of airflow. I also enjoyed the lovely terrace areas. Thanks Pura Vida, I will be back!", "author": "Shauna R", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2s5TE9XVkpPVWN4ZUVOU09XWTNTaTA1WWtKaFpXYxAB", "timestamp": "2 weeks ago"}, {"text": "I had an amazing stay at Pura Vida Hostel! The location couldn't be better: just a few steps from the beach, which makes it perfect for surfing and enjoying the ocean any time of the day. The hostel has a warm and welcoming atmosphere, with cozy common areas that make it easy to relax or connect with other travelers. On top of that, I really appreciated the great value for money; it's hard to find a place this close to the beach at such an affordable price.\\nI honestly don't understand some of the negative reviews. This is a hostel, not a 5-star resort, and that's exaclty the charm of it. Pura Vida offers everything you expect from a real hostel: a cozy atmosphere, frindly vibes, and a unique sense of community. The staff was incredibly kind, helpful, and always available, making me feel at home from the very first moment.\\nIf you come with the right mindset, looking for connection, beach life, and genuine hospitality, you'll love it here. I would definitely recommend Pura Vida to anyone who wants the perfect mix of comfort, surf, and authentic hostel vibes!", "author": "Paola Suardi", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR1ZHcEhRM3BrTXpodlJXVjJXVE5WVDBKU1FtYxAB", "timestamp": "4 months ago"}, {"text": "I always come back here whenever I'm in Las Palmas. The staff is very kind and helpful and the location is perfect, close to the supermarkets, the beach and one minute away from the main surf spot..you can also rent a surf board here if you want. The beds are comfy and i also appreciate the fact that there are curtains. On weekends they always organize something to go out all together and have some fun.", "author": "Denise Orlando", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25SYVFVeG1hMU15WHpOcVdHWlJPVWt5TmpKMVMyYxAB", "timestamp": "a month ago"}, {"text": "A very pleasant hostel. Miguel is a charming and caring host. The atmosphere is comfortable and friendly. It's very quiet after 11 p.m., so I really got a good night's sleep. You can join in with the group activities or have some privacy, and everyone respects your preferences. The hostel has everything you need, including a large kitchen and two terraces. It's also very conveniently located close to the ocean. Surfboards are available for rent.", "author": "Alevtina Olkhovskikh", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2t4Q1VsOW5Ta0pUV0RBMVFVZDFZbXBKUTI1clRYYxAB", "timestamp": "2 months ago"}, {"text": "Very nice and cozy hostel, all the staff is very helpful and friendly, especially my man Miguel! Always very clean and tidy. Big common spaces for enjoying the company of other travelers. But also spacious rooms and big beds with comfy mattresses", "author": "Fedor Ivanov", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25ocllrVkxWVTF2YTBGSmJqSllTR3BCVWpOVmJuYxAB", "timestamp": "a month ago"}, {"text": "From the moment you step into the hostel, you can feel a happy and peaceful atmosphere, thanks to the guests, the volunteers, and the owner, Miguel.\\nThe volunteer team is amazing! They work all day to keep every area of the hostel clean and tidy, and they always do their best to create a good vibe with the guests.\\nMiguel, the owner, is an extraordinary guy.\\nAlways smiling and willing to meet every guest’s needs.\\nHe also puts a lot of effort into organizing family dinners and group outings in the evenings.\\nThe hostel is equipped with all the necessary facilities and has a fantastic rooftop terrace where it’s easy to make friends, but also perfect for relaxing if you want some time to yourself.\\nThe location of the hostel is ideal if you want to spend time at the beach, as it’s just two minutes from the sea. It’s also great for surfers, with a wide range of surfboards available for rent.\\nI had the best time at Pura Vida hostel — here you really feel at home, surrounded by amazing people and a family-like atmosphere.\\nI recommend everyone to stay here if you’re planning a holiday in Gran Canaria.\\nI hope to come back soon!", "author": "Elisa Cefis", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNvX2NlOE5BEAE", "timestamp": "Edited 8 months ago"}, {"text": "Amazing stay for a month - the best hostel I have ever been to. Miguel treats the guests like his family, always willing to help with anything. The hostel is very clean, with volunteers always working to keep the space nice - Maria in particular was very helpful. There is a great, social atmosphere, with a terrace, large kitchen, and other areas for guests to hang out, and people in the hostel always do things together. The hostel also has surf boards you can take to the beach, which is just 2 minutes away. I would recommend pura vida anyone coming to Las Palmas!", "author": "Michael Haslam", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25CR1FtNUpYMVpoYUVaTVUwbE9iRzFzWkVGeVdsRRAB", "timestamp": "7 months ago"}, {"text": "The hostel has a real family-like atmosphere. Miguel and the team were amazing, and they invite everyone staying at the hostel to their activities, so you can have fun together. The location is great, just a 2-minute walk to the beach. I would gladly choose it again and recommend it to others :)", "author": "Rzgr", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNncklEa2F3EAE", "timestamp": "11 months ago"}, {"text": "There is a reason why it's one of the cheapest hostels: Because Miguel, the owner, is an amazing guy! He doesn't want to rob you, he gives his best to make every guest feel welcome and pays attention to their needs. The volunteers do a fabulous job of keeping the common areas and facilities clean during the whole day, always good to have a chat and laugh with and motivate people to join the activities like going out for a drink and party. I stayed there for longer term and thanks to the chill common areas like the kitchen, terrace and rooftop I was able to meet many amazing and interesting people who became good friends and am still in contact with. You can walk in two minutes to the beach and, if you want to learn how to surf, rent a board and wetsuit at the hostel for way less money than elsewhere. I would come back here anytime and can only recommend people to give this lovely place a try. Thanks Miguel and all the volunteers for an amazing time!!!", "author": "Simon Pfiffner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfZ0tILVZnEAE", "timestamp": "a year ago"}, {"text": "I had a great time staying in this hostel! The owner and the team are super welcoming and they create a great atmosphere in which it is easy to get to know new people and make friends. Big benefit for me was that I could rent surfboards directly in the hostel for a very fair price. The nearby beach usually has good waves and is just 3min walk away", "author": "Tim Coors", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzMEwtb09BEAE", "timestamp": "a year ago"}, {"text": "I had a fantastic stay in Pura Vida! The location is amazing a literal 2 minute walk to a stunning beach. The host Miguel is a lovely man and there is a very welcoming atmosphere in this hostel. The rooftop is a perfect chill out spot when your tired.", "author": "Aoife O' Brien", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURieGFyMFBnEAE", "timestamp": "a year ago"}, {"text": "I had an unforgettable experience at Pura Vida. It’s such a welcoming place with so many people full of great energy. Everyone is always kind and available. It’s just a two-minute walk from the beach and has everything you need to feel good. I can’t wait to come back, thank you, Miguel, and everyone I met! :)", "author": "Clarissa Pambianco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTUNBOXVQbGdBRRAB", "timestamp": "11 months ago"}, {"text": "The perfect place to feel at home in Gran Canaria! With a warm and welcoming atmosphere, it’s just 5 minutes from the beach and well-connected by public transport to Las Palmas and other parts of the island.\\n\\nThe volunteers are the heart and soul of this home (alongside the manager, Miguel).\\nMica, Maria, Rebecca, Lea, Elisa, Clarissa, and Lydia will always hold a special place in my heart.\\nEven the guests radiate great vibes!\\n\\nPura vida is more than a vibe—it’s a way of life.", "author": "Juliette Navas Boffa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2dW91dm93RRAB", "timestamp": "a year ago"}, {"text": "Superchill and cozy hostel just a few steps away from the beach and surf. I instantly felt at home - the staff is very friendly and welcoming, and I met so many amazing people!\\n\\nIt makes me sad to read the bad reviews, since I personally loved the hostel and its vibe - social but not party, a nice mix of people. I have stayed in countless hostels around the world and this makes it to the very top.\\n\\nSure, some of the rooms could be updated a bit, and the air was stuffy at times (what you can expect sharing a room on a sunny island close to the ocean). However, the bathrooms were spotless and cleaned multiple times a day, so was the kitchen. Floor was also instantly dried after coming back from surfing. The terrace and the rooftop are great for chilling, socialising and/or working.\\n\\nAlready planning my next visit! Pura Vida 🤙🏽", "author": "Inka T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROdGZ2NGpRRRAB", "timestamp": "2 years ago"}, {"text": "I felt myself at home at Pura Vida Hostel.\\nThe owner Is really friendly with guests, and the staff work really hard to keep everything clean (common area,kitchen, bathrooms and bedrooms).\\nThe terrace Is an Amazing palace where your can meet a lot of Friends and relax.\\nThe position Is fanstastic, only 3 minutes by walk for the beach.\\nYour can also rent a surfboard at the hostel for 5€.\\nIt's a good place for surfing, chilling and enjoy las Palmas.\\nI'll come back for sure!", "author": "Elisa Grifone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROZzZDUVBREAE", "timestamp": "2 years ago"}, {"text": "Lovely family feeling with super helpful staff. Miguel manages everything really well. A few steps from the surfing part of the beach so perfect for surfers but also a relaxing stroll to the calmer waters for snorkeling. Really enjoyed my stay as met lots of different people and enjoyed their company. Muchas gracias.", "author": "alina paul", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0OUw3ZG5nRRAB", "timestamp": "2 years ago"}, {"text": "The hostel is truly amazing. It has a really great atmosphere and the people are super nice. It is super clean, has all you need in the kitchen and the location is 3 minutes to the beach and the surf spots. All the people I met there were like me - came for few days and overstayed weeks or months :). I can totally recommend this hostel! It has an amazing communal feeling that makes you not to want to ever leave!", "author": "Alexandra Stoicheva", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLc1ozVUhnEAE", "timestamp": "4 years ago"}, {"text": "I could never give less than 5 stars to this hostel!! From the moment you walk in you'll feel at ease, also thanks to the relaxed and friendly enviroment that the owner creates around you. The staff is kind, they make sure that everything is in order and that your necessities are met in case of need. The position is another pro, just around the corner of the famous Las Canteras Beach, just 1-minute-of-walk away. I highly recommend it, I'll come back as soon as I can!!", "author": "Elisa Ferrari", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUROdGMtMGZREAE", "timestamp": "2 years ago"}, {"text": "Very cozy hostel and the location is perfect if you want to surf everyday or just chill on the beach. The volunteers always keep the place clean and tidy, I can totally recommend it!", "author": "Letizia Montuori", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM3OElmdGpBRRAB", "timestamp": "Edited a year ago"}, {"text": "People, you want a chilled out place, safe and, most of all, friendly and helpful, then look no further. The owner is a gentleman, and always listens because he knows what makes a good hostel great. There was no hot water for a 2 days but, but the people are so hot and happy that you are glad to have at least one complaint 🤣", "author": "Morgan Cavanagh", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHNXR1WHZBRRAB", "timestamp": "4 years ago"}, {"text": "I had really good luck that I have booked this hostel when I was travelling alone to Gran Canaria. This place has really good location, it is safe and with a great atsmosphere! The owner Miguel and other receptionists were really helpfull and it was great time with them on a surf of when we went together with other guests for dinner. RECOMENDED!! And hope to come here again :)", "author": "Veronika Bínová Bolechová", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCazlXVHJBRRAB", "timestamp": "3 years ago"}, {"text": "Roof terassi good, staff really good, chat with guy and girls good. Room little warm and of course sleepy with other. You tired after that not difference. Place Look safery. Near to beach. Price 5/5", "author": "TBag", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0MmEyLTF3RRAB", "timestamp": "a year ago"}, {"text": "Great location, great service! I stayed at this hostel for the past weekend and I had an amazing experience - great staff, close to Las Canteras. Miguel is very chill, friendly and helpful. I would definitely stay again! 😁", "author": "Jacob Medina", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNkel8yZG1BRRAB", "timestamp": "a year ago"}, {"text": "Best hostel in Las Palmas! The communal areas are huge and comfortable and there is always a nice and welcoming crowd that hang out together. Within a minute to the beach and neigbouring surf shops, restaurant and bars! Staff and Owner are awesome and always there for their guests :) I spend 3 months in Pura Vida and each day was unique!", "author": "Isabelle Dapprich", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxdTd1VTh3RRAB", "timestamp": "4 years ago"}, {"text": "I stayed in Pura Vida one week, too short by the way. This place/people made my GC experience even more special. They made me feel like one at home. The kitchen had all what I needed, the beds were comfortable, the hostel has few bathrooms. The location is perfect, so close to Playa de las Canteras. A lot of markets around, 4 kms walking from Vegueta. Easy to take a bus from the place. When I am there again, I will be choose the same option. Thank you.", "author": "Klaudia Jaśkowiec", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURXamNqOTVRRRAB", "timestamp": "3 years ago"}, {"text": "Had a great stay in this hostel. Nice balcony and roof terrace, the rooms and showers etc. were cleaned regularly. Also, great kitchen so you can definetely cook for yourself. People were kind and great location. I definitely recommend this hostel!", "author": "Elise Perton", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNjcTcyZXd3RRAB", "timestamp": "5 years ago"}, {"text": "Amazing vibe, truly found some new family in this place. Some places just attract beautiful people and this is definitely one of them! Shared dinners, super sweet staff and it's only 3 minutes to the beach :)", "author": "Anna-Lea S.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLektIZktREAE", "timestamp": "4 years ago"}, {"text": "Pura vida is a state of mind! People are Enjoying life and there are very good vibes there! The hostel is located 2 minutes from the playa de las canteras, surfers and beach Lovers love it. . I was volunteering there and i can say i found a family! Great atmosphere on the terrace playing guitar or having amazing family dinner together! It’s easy to meet amazing people happy to teach you to surf or just to go to the beach together and Enjoying the sunset!:). Pura vida became my home and i’m sure once you get in you will never want to leave!", "author": "Flambetta Foco Loco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLX3JyX1d3EAE", "timestamp": "4 years ago"}, {"text": "I've lost my flight to Las Palmas, I didn't cancel my booking and I didn't let them know in time, but after a few days when I contacted them, they were reasonable and refunded me. I really appreciate fair people and I'll definitely go there since I get a chance", "author": "Vlad Simon", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQxdWRYbTZ3RRAB", "timestamp": "2 years ago"}, {"text": "Super nice hostel, really recomanded. It has nice rooms and comfortable beds, a big terrace to realx. The team who work there is kind and always available to help. Perfect for surfer as it is nearby the surf spot.\\nThanks guys! I will be back soon for sure.", "author": "Flavia Indellicati", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2M29Ha0VnEAE", "timestamp": "4 years ago"}, {"text": "I had an excellent stay at this hostel! Well taken care of and great location. Also amazing people and staff, especially Miguel as he makes sure you get the best stay possible :) 10/10 would recommend!", "author": "Serafyma Nikiforova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLaWJmY3ZRRRAB", "timestamp": "Edited 2 years ago"}, {"text": "Amazing hostel with very friendly staff and guests from all over the world! only nice, chill & good vibes where you can find amazing friendships and the hostel is so close to the beach you can walk on barefoot with a surfboard!☀️😄 best hostel in Las Palmas!", "author": "Bella Szutor", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2ajRUNUd3EAE", "timestamp": "4 years ago"}, {"text": "Pura Vida remains my hart forever, i spent here a wonderful week. This is not just a simple hostel, it's a family. Many cool people from all around the world with free soul. You can easily make here new friendships. 🤙🏻❤️", "author": "Ági Janó", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnaU5tdHFBRRAB", "timestamp": "8 years ago"}, {"text": "I had an amazing time at pura vida! Miguel is always going the extra mile for the guests. The place is clean and in a great location, the voulenteers too were all lovely! Gracias Miguel y hasta pronto!!", "author": "jake purcell", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlcWIya05nEAE", "timestamp": "3 years ago"}, {"text": "Friendly staff and comfortable beds all for really good price,\\n\\nThe beach and shops are super close to the hostel, and bus stops are nearby too.\\n\\nReally good value for the money, I would definitely recommend!", "author": "Joe Hennah", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURobWV5MHVBRRAB", "timestamp": "2 years ago"}, {"text": "The people who work there are super kind with good vibes. 5€ surf board rental just by the sea. Great for some chill times", "author": "Kosuke Nishio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1OGJUUjRBRRAB", "timestamp": "2 years ago"}, {"text": "Quiet but friendly hostel frequented (at the time I went) by Argentinians who would love to take you downtown and show you a good time on a Thursday or have a chill barbecue on the roof. Good time.", "author": "Kyle Milne", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwdmJqalV3EAE", "timestamp": "6 years ago"}, {"text": "Great place and energy! The beach is just 2 minutes away, perfect for surfing twice a day!", "author": "Lucero Segura J", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaDliX1BnEAE", "timestamp": "a year ago"}, {"text": "My stay at Pura Vida was amazing! The location is absolutely fantastic and the atmosphere is great! I would definitely go there again the next time I'm in Gran Canaria!", "author": "Josephine Sonneveld", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNjcV9uMU9REAE", "timestamp": "5 years ago"}, {"text": "My place to go!\\nSuper friendly staff, feels like family<3\\nAlways clean and comfy.", "author": "Jack Monk", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQbVBIdjVBRRAB", "timestamp": "a year ago"}, {"text": "The hostel is amazing!Great ammoshere,nice people(que buena onda)The location is absolutely fantastic.Everything was very clean.\\nThanks Miguel and tha all team!Thank you Pura Vida!!!!!", "author": "Alexander Velev", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLemZMQmRBEAE", "timestamp": "4 years ago"}, {"text": "The top hostel in Las Palmas, the stuff is as family, the hostel is close the beach for a good surf session, room and comun aerea very clean....5 stars", "author": "fabio leone", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNveDh5bFVnEAE", "timestamp": "6 years ago"}, {"text": "If you don’t like hostels ,this one will change your mind . Fun, young and real cheerful, I had an awesome time . Many thanks to the staff and Miguel . ✌️", "author": "Yen Il sun", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTby1fLW9BRRAB", "timestamp": "5 years ago"}, {"text": "Was a pleasur to stay with you guys! Employees and volunteers are amazing, clean and perfect located. Have Fun and Enjoy", "author": "Stefano", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNncEtMSjFBRRAB", "timestamp": "7 years ago"}, {"text": "Awesome place to stay! Great location, friendly atmosphere and comfy stay! Definitely recommended and wanna visit again!!", "author": "Sofie Brodova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRX3RMeG5RRRAB", "timestamp": "7 years ago"}, {"text": "Love this place. Good vibes and super close to the surfspot. Miguel is a good mate", "author": "Joao Ferri", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMUwyaGlRRRAB", "timestamp": "2 years ago"}, {"text": "Great location to the beach, very nice and friendly staff. Had some wonderful time here! Thanks everyone!", "author": "rego justforregistration", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNvbXFfeWtnRRAB", "timestamp": "6 years ago"}, {"text": "Best hostel in GC for making friends, and close to the beach 🤙🏼🤙🏼", "author": "Jessica Tran", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMxZ3BHcklBEAE", "timestamp": "2 years ago"}, {"text": "Best of the best. Thanks Miguel and the all team to tenerte such and amazing environment.", "author": "Ricardo Sanchez Sanchez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDb01PVGd3RRAB", "timestamp": "5 years ago"}, {"text": "Best hostel that I have been too", "author": "Ева Прилипенко", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURyaDhqWFBBEAE", "timestamp": "a year ago"}, {"text": "Exactly what it says on the tin, with super friendly, welcoming and helpful staff.", "author": "James Colter", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNod1lYNEhREAE", "timestamp": "2 years ago"}, {"text": "Clean, receptionist are nice, cool vibes.", "author": "Valentina Jackson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNNX2ZfVGRREAE", "timestamp": "6 years ago"}, {"text": "It is now called pura vida and it is lovely", "author": "Chris Redmond", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNNi1hRTVBRRAB", "timestamp": "6 years ago"}, {"text": "Rebecca is the best!", "author": "Toni -", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQemRPbW1nRRAB", "timestamp": "a year ago"}, {"text": "Great location and cool atmosphere...", "author": "Neil Williams", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnaUxHdXBRRRAB", "timestamp": "8 years ago"}, {"text": "Very good", "author": "Angelo Mauro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBMGFXUXhBRRAB", "timestamp": "8 years ago"}, {"text": "It's OK.", "author": "Juan Carlos Alvarez Parada", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1MEpQc0lREAE", "timestamp": "3 years ago"}, {"text": "Best hostel in las palmas", "author": "Sandro Cacciatore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLbXZiQ2xRRRAB", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Martin Alklid", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHMUpPd21BRRAB", "timestamp": "4 years ago"}, {"text": "Good coffee", "author": "Kamil", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURnaWRfRDd3RRAB", "timestamp": "8 years ago"}, {"text": "Amazing place", "author": "David Fernandez Carretero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURSemNtTjNRRRAB", "timestamp": "2 years ago"}, {"text": "Me gustó mucho la estancia. La ubicación es perfecta si quieres ir a la playa, todo queda muy cerca. El ambiente es agradable, relajado y acogedor, ideal para desconectar. El personal fue lo máximo: siempre atentos, amables y con muy buena energía. Sin duda, un lugar al que volvería y que recomiendo totalmente.", "author": "david estevez alonso", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2tnMFgycEpSbVoyYzNVMmNYVTVOMGwwTm14V2NVRRAB", "timestamp": "2 weeks ago"}, {"text": "Una experiencia 10/10. Miguel y todos los chicos que trabajan majisimos. Están siempre pendientes de que estés bien. Te incluyen en los planes de los otros huéspedes, aunque no pude estar, había muy buen ambiente y se preocupaban por hacerte sentir incluido.\\n\\nLa habitación también muy bien, la relación calidad precio es inmejorable.\\n\\nTiene de todo. Alquila tabla de surf y neopreno, está literalmente a 3 minutos de la playa.\\n\\nEl baño y las instalaciones están completas y puedes usar lo que quieras. Hay una terraza para teletrabajar, y es bastante seguro.\\n\\nPor la noche es súper tranquila, varias noches llegué en la madrugada y todo estaba en silencio y durmiendo.\\n\\nHable con la mayoría de los huéspedes y era gente súper agradable, rodearte de gente así, mejor la experiencia 100%.\\n\\nRecomendado!!", "author": "Sofi Iazzetta", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT205WVZIcFliamxEWkdOTFgxTkZka1pPZEZocU4zYxAB", "timestamp": "3 months ago"}, {"text": "Après une semaine passée à Pura Vida avec Miguel, là pour répondre à toute demande, son équipe sympa et accueillante et les voyageurs, j’ai retrouvé le vrai esprit des hostels!\\nParfaitement située à 2 pas de la plage, des cafés et commerces, avec un rooftop convivial.\\nJ’ai déjà hâte d’y retourner 🌈", "author": "Barbara Agbaba", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pKNU9YbFZhVUV6VmtkcWJGOXNXRlZLUVdwWWJWRRAB", "timestamp": "a week ago"}, {"text": "Estuve una semana a fines de octubre y la pasé muy bien. Miguel fue súper atento y siempre estaba pendiente de que hubiera buen ambiente. El equipo de voluntario eran lo más ! Compartí montón con ellos. Gente muy cálida. El hostel está a dos cuadras de la playa de La Cícer, se puede ir descalzo a surfear. Como no había tanta gente, se disfrutaron mucho los espacios comunes y el buen rollo del lugar.\\nLas instalaciones son algo antiguas, pero todo funciona bien y tiene la ventaja de que hay dormitorios solo de chicas. La relación precio-calidad está buena, y hay que tener en cuenta que la zona de La Cícer puede ser algo ruidosa, aunque eso va más allá del hostel.", "author": "ANTU", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pVdFFuZDBTMFZqUXpWR1dXeHZOamh5UmxObVNYYxAB", "timestamp": "3 months ago"}, {"text": "S'il était possible de mettre 6 étoiles, je le ferais ! Miguel est un super hote et les volontaires sont super sympas. L'emplacement est idéal, surtout si vous voulez profiter de belles vagues pour surfer ou pour nager. Le quartier est très tranquille avec toutes les commodités nécessaires aux alentours. Je ne regrette pas une seule seconde d'avoir choisi cette super auberge à Las Palmas de Gran Canaria !", "author": "Charlotte Lechat", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GNlIxUkJiRzFOZUVwNlJqSjJVRTB3Tm1aNmFXYxAB", "timestamp": "3 months ago"}, {"text": "Estube dos dias en este hostal. A destacar el staff es super Amable y te ayudara en todo lo que necesites. Si buscas un sitio tranquilo y centrico este es tu sitio. Gracias", "author": "Markos Paris", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21zdFVEaGZla1ZIT1Uxc2MyZHRUV3RYYWxCT09VRRAB", "timestamp": "a month ago"}, {"text": "Me faltarían palabras para describir este sitio, aparte de ser el dueño del sitio, Miguel es una persona humana, humilde, cercana y da una atención que muy pocas personas en esta vida son capaces de dar.\\nSin conocerte de nada presta su mano y te hace sentir que estás en familia y en casa.\\nSi vas a esta isla y sientes que estás sola Miguel y su gente te ofrecen una mano amiga que te llena de consuelo y de paz.\\nLo malo de la vida en la que vivimos es que muy pocas personas son reales y la palabra empatía ni la conocen, pues bien, Miguel tiene esa empatía que si todo el mundo fuese así no existiría el mal en la tierra.\\nMi nombre es Dori y os recomiendo este lugar a todos los que querías estar bien y sentiros totalmente como en casa.\\nSin más GRACIAS a todos y sobre todo a ti Miguel 💓", "author": "Dori Galeote Benavides", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GdGJFbHhXVEIyVG1Wd1VHbFhPUzA1TWtwUmRWRRAB", "timestamp": "7 months ago"}, {"text": "Si quieres un lugar céntrico, cerca de la playa, con un personal majisimo, seguro, limpio y tranquilo os recomiendo este Hostal.\\nDesde mi llegada me sentí muy cómodo, las habitaciones son amplias y los pasillos / baños / zonas comunes y comedor los limpiaban diariamente. He viajado mucho y sobre todo en hostales pero nunca antes había estado tan agusto como este.", "author": "Alejandro Guerrero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfdC12Wmd3RRAB", "timestamp": "a year ago"}, {"text": "Me he sentido muy cómodo durante mi estancia de varios días en este hostel. Los encargados se preocupan por cuidarlo todo y son muy amigables. Está al lado de la playa y la zona de surf, la ubicación es muy tranquila y cerca tienes todo lo que puedas necesitar. Económico y muy recomendable.", "author": "Adrian Bordas Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURmNS1tbXBnRRAB", "timestamp": "a year ago"}, {"text": "Le meilleur séjour en auberge de jeunesse que j’ai jamais eu! Miguel est très accueillant et arrive à mettre une magnifique ambiance tout en assurant le calme et la propreté. Les chambres sont très simples mais si vous voulez rencontrer des gens, chiller sur le super roof top, ou faire la fête lors des soirées organisées par Miguel (à l’extérieur de l’auberge) les mercredi et vendredi soir, n’hésitez pas à aller à Pura Vida ! Grande cuisine aussi qui favorise les rencontres, casier qu’on peu fermer avec cadenas, sdb avec plusieurs douches et lavabo, WC séparés. Que demander de plus ?\\nBcp de bateaux stoppers français élisent domicile ici le temps de leur recherche.", "author": "Louise François", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR2c0xuRU1REAE", "timestamp": "a year ago"}, {"text": "Me encanta Las Palmas y le ubicación es muy buena. Miguel y sus trabajadores muy agradables. Cocina limpia y respetan el sueño. Me gustaba trabajar en la terraza. La ventilación de los dormitorios no es la mejor pero la relación calidad/precio está bien. Cuado le quieras renovar el toquillo estético me llamas. Suerte con todo!", "author": "beatriz del toro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2N3RUSXVnRRAB", "timestamp": "a year ago"}, {"text": "Increíble, el trato maravilloso, cerca de la playa! El dueño es súper simpático y agradable. Repetiremos !\\nEs más se me olvidará el teléfono en el sofá de recepción me acordé a las 2 h y el teléfono seguí ahí, la gente que está allí es muy sana :)", "author": "Noemi Porteiro Pena", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VLdl94TjJEai1mVm9RRRAB", "timestamp": "8 months ago"}, {"text": "He ido muchas veces, me gusta xq cualquiera que sea mi plan de viaje, sé que ahí me voy a encontrar bien.\\nEs de los pocos hostels donde se puede sea dormir y estar tranquila, sea hacer amigos y salir de fiesta todas las noches o ir juntos de excursión, o pasar un rato cantando en la terraza, porque los horarios de silencio se respetan, las zonas comunes son bastante amplias para escoger si estar sola o en compañía,(dos terrazas, cocina amplia, entrada...)y hay muy buen ambiente.\\nMiguel trata a cada huésped como un amigo, está pendiente de que cada uno se sienta incluido y esa buena vibra se transmite al resto de voluntari@s y huéspedes, así es fácil que viajeros con diferentess planes, gustos, edades y horarios nos sintamos como en un grupo de amigos.El ambiente es alegre y desenfadado y también cuidan la seguridad y el respeto mutuo.\\nEl edificio es antiguo pero con comodidades que simplifican mucho la estancia y no siempre encuentro, literas grandes y cómodas, cada una con enchufe, espacio para el equipaje, la cocina muy completa, frigos limpios, bastante espacio tmbién para guardar la comida, baños limpios, y si algo se estropea lo arreglan rápido.\\nHay una zona de teletrabajo, también se pueden usar sombrillas de playa, pelota, libros, guitarras, esterillas y pesas, alquilan tablas de surf y bodyboard...\\nEstá bien ubicado, a dos calles del mar, en la zona surfera que también es un barrio algo más \\"local\\" y más seguro que otras zonas del paseo de las Canteras, y muy cerca de supermercados, bancos, bares, farmacia.\\nCon todo esto, es fácil sentirse como en casa y me he encontrado varios huéspedes que como yo alargan su estancia o repiten..\\nMi sugerencia es no pensárselo mucho y escoger este hostel!", "author": "22Marzo Y.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR2eE96UHhBRRAB", "timestamp": "a year ago"}, {"text": "El hostal está perfectamente ubicado y Miguel y las chicas que trabajan ahí son lo más. El hostal está muy limpio y los baños siempre impecables... Muchas gracias por todo, si vuelvo a las palmas sin duda nos volvemos a ver. Un saludo y hasta pronto 😃", "author": "Matteo Dalessandro", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRaDVDZWF3EAE", "timestamp": "10 months ago"}, {"text": "Ne cherchez plus, choisissez cette auberge.\\n\\nMeilleure auberge que j'ai faite à las palmas. Localisation au top du top.\\nChambres, pièces de vie, toilettes et douches impeccables, équipées et propres.\\nPrésence d'un rooftop pour chiller tranquillement.\\n\\nMiguel est super sympathique, les autres salariés/bénévoles aussi. Super lieu pour sympathiser avec d'autres voyageurs.\\nJe me suis senti intégré dès mon arrivée, tout le monde est content d'être ici.\\n\\nN'hésitez pas à choisir cette auberge, vous allez passer un super séjour.", "author": "Marc Duris", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYNWItNHh3RRAB", "timestamp": "a year ago"}, {"text": "Se respira un buen ambiente y un buen rollo gracias al espíritu que el dueño y los y las voluntarios han querido imprimir a este lugar, lo que hace que sus huéspedes sean muy respetuosos. Todo limpio y ordenado, ubicación inmejorable al lado de la playa de las canteras. Precio imbatible!", "author": "Pietro S.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucjZtXzRnRRAB", "timestamp": "a year ago"}, {"text": "Me alojé en Pura vida 2 semanas, en principio fui para 3 días, pero me gusto tanto que lo fui alargando hasta que me tuve que ir.\\nLa gente es increíble, las voluntarias son súper amables y sociables, y Miguel es increíble, me llevo a surfear, nos compartió música y tradiciones españolas, es súper amable. Además el lugar estaba muy limpio y estaban constantemente limpiando. 10 de 10 el alojamiento.", "author": "Gaspar Giner", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyLWZxVU1REAE", "timestamp": "a year ago"}, {"text": "“¡Una experiencia increíble! Desde el momento en que llegué, el personal fue extremadamente amable y acogedor, siempre dispuesto a ayudar con recomendaciones locales o cualquier cosa que necesitara. Las instalaciones estaban impecables, con áreas comunes muy cómodas y bien cuidadas. Las habitaciones eran espaciosas, limpias, y las camas muy cómodas, ¡perfectas para descansar después de un día de explorar!\\n\\nLa ubicación del hostel es ideal, cerca de lugares de interés y transporte público, lo que hizo muy fácil moverme por la ciudad. Me encantó el ambiente relajado y social; fue muy fácil conocer a otros viajeros y hacer amigos. Además, organizaron actividades divertidas todas las noches, lo que ayudó a crear un ambiente de comunidad.\\n\\nDefinitivamente, uno de los mejores hostels en los que me he hospedado. ¡Lo recomiendo al 100 % y no puedo esperar a volver!”\\n\\nGracias y Michaela\\n\\nTambién gracias a michaela por la pasta aunque estaba un poco dura😂😅", "author": "Jordy Ocon cordoba", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURYb28tcEN3EAE", "timestamp": "a year ago"}, {"text": "Hace 4 años descubrí este maravilloso lugar, llevo años visitando Las palmas, pero en cuanto conocí Pura vida hostel decidí volver cada 3 meses al lugar , no solo por la excelente ubicación detrás de la playa, sino porque desde el primer día te sientes como en casa, como uno más todo gracias a Miguel el dueño que te hace la estancia agradable tranquila, se preocupa de que todo esté a tu gusto y te ayuda en todo lo que necesitas.\\nEl lugar está limpio y bien cuidado, el ambiente es muy diverso desde viajeros por placer hasta viajeros por el surf, gracias a ello aprendí lo que realmente es el surf y aprendí a valorarlo.\\nSin duda es un sitio perfecto para pasar una temporada en Las Palmas, recomiendo el hostel a todo el mundo que visita Gran Canaria.\\nGracias por todo.\\nRepetiré sin dudarlo( ya perdí la cuenta de las veces que he repetido el lugar)", "author": "Juan Lago", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURiMG9iOUxnEAE", "timestamp": "a year ago"}, {"text": "Todo muy muy bien.\\n- Los voluntarios que trabajan allí, súper buena gente, dispuestos ayudarte en todo,\\n-Se llevan todo el día limpiando\\n- hay muy buen ambiente,\\n- A 2 calles de la playa.\\nEn conclusión que me llevé una semana y parecía que estaba en mi casa", "author": "Jesus Cabello", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYcXJLaXd3RRAB", "timestamp": "a year ago"}, {"text": "Tuve la suerte de estar alojada en Pura vida durante dos meses.\\nFue mi primer viaje sola y desde el minuto uno te sientes en casa.\\nEl ambiente es inmejorable, y el dueño se esfuerza en incluir a todos para las family dinners, salidas o cualquier plan.\\nAdemás, está a un minuto de la playa, supermercados y todo lo necesario para tu día a día.\\nEl hostel tiene cocina, neveras, almacenaje para tu comida, varios baños…\\nEl equipo está constantemente asegurándose que todo esté limpio y perfecto para los huéspedes.\\nSin duda es un sitio para volver.", "author": "Sara García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROdGMzZzJ3RRAB", "timestamp": "2 years ago"}, {"text": "Si lo que buscas es un lugar donde te sientas como en casa, es por aquí. Buen lugar para compartir experiencias y momentos; disfrutar de caminatas por el paseo de las canteras, la playa y la noche de terrazas/bares/boliches. La atención del personal, comodidad de cama, accesibilidad a diferentes baños y limpieza del lugar excelente. Gracias a toda la familia Pura Vida por la cálida estancia.", "author": "Nahuel Marchi", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURucU8zQjF3RRAB", "timestamp": "a year ago"}, {"text": "Sehr nettes Personal und super Atmosphäre unter den Gästen und Angestellten. Die Lage direkt am Stadtstrand und Surfspot ist überragend. Schöne Dachterrasse zum Chillen und ein weiterer Balkon, wo man Ruhe finden kann. In der Küche ist alles vorhanden, was benötigt wird und sie ist sehr geräumig. Die Zimmer sind typisch für ein Hostel und die Betten sind bequem und mit Vorhängen versehen. Eine kleine Bettlampe fehlt jedoch und der Schrank zum Verstauen des Reisegepäcks ist relativ klein. Surfboards und Bodyboards können direkt im Hostel gemietet werden. Wer nette Menschen kennenlernen möchte, ist hier genau richtig.", "author": "Julian Pröve", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR0dlpDMTB3RRAB", "timestamp": "a year ago"}, {"text": "Son pocos los lugares donde uno se puede sentirse bien cuando no estas en tu casa, para esto el lugar debe ser un lugar donde las personas pongan el corazón a lo que se dedican. Yo feliz y muy satisfecha por el hostel. Las personas del staff un amor, el lugar acogedor, la ubicación perfecta, precios que no compensan la satisfacción que te llevas al final de tu estadía. Los quiero chicos. Gracias por tanto!🥰🥰", "author": "Eveling Cordova Alvares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNQNEp1OUNREAE", "timestamp": "a year ago"}, {"text": "Le lieu est très chaleureux avec une bonne ambiance et un très beau décor. Rebecca la femme qui m'a accueilli s'occupe très bien de l'entretien met une bonne vibe et est toujours volontaire pour nous rendre service elle a pas hésiter à me prêter une serviette un cadenas et sont chargeur je conseille fortement !", "author": "Mehdi Poyard", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURQdWUtYS1RRRAB", "timestamp": "a year ago"}, {"text": "Pasé una semana en este hostel muy buena. Es un lugar sencillo en cuanto a las instalaciones pero con un gran espíritu que te permite sentirte como en familia gracias en especial a Miguel. El control del silencio nocturno también es bueno para dormir bien. Hay cenas y salidas de confraterinización a las que apuntarte regularmente. Así conocí a gente muy simpática e interesante de diferentes países. Merece la pena, buen precio y situación inmejorable.", "author": "Juan Carlos Martin Yuste", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNoNUo2UkRnEAE", "timestamp": "2 years ago"}, {"text": "Muy bueno lo recomiendo ya que todo estaba muy limpio , ambiente acogedor, tranquilo", "author": "Dunia Gomez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2premMyNWhUemgxVjNGVGNWVkNRME40YzFWSmIyYxAB", "timestamp": "2 months ago"}, {"text": "\\"Ese sitio tiene algo especial\\". Frase con la que coincidí con varios huéspedes. El ambiente es inmejorable y tanto Miguel (el dueño) como los voluntarios se preocupan por que esté todo a tu gusto y por organizar actividades para formar piña. El sitio está limpio, camas cómodas y situado muy cerca de la playa para ir a hacer Surf. Alargué mi estancia todo lo que pude y me sentí como en casa, así que sin duda volveré para pasar allí una temporada", "author": "Mariola Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURxMi1UNkZBEAE", "timestamp": "4 years ago"}, {"text": "Destino perfecto para quien viajamos solas. Al lado de la zona deportiva de la playa. La cocina está completamente equipada y normalmente es el lugar donde se junta la gente a hablar y cocinar todos juntos. Las literas son cómodas. La zona es muy segura para andar a cualquier hora del dia", "author": "Silvia PD", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0cU4tc29RRRAB", "timestamp": "2 years ago"}, {"text": "Sitio genial para las estancias en la\\nisla. He ido varias veces y siempre he encontrado gente amable y simpática. Miguel es una persona excepcional , siempre atento a cada detalle y dispuesto a ayudar en todo. Recomendable 100%. Limpieza de 10 además.", "author": "ana c.s.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dTYzdUlnEAE", "timestamp": "Edited a year ago"}, {"text": "Llegué a las Palmas sin tener idea de dónde alojarme y decidí probar en este hostal. Me quedé el mes entero porque aparte de estar bien ubicado, había súper buen ambiente, llegué a sentirme como en casa, con la comida puesta al llegar y todo! Se hacían comidas grupales y salidas. Una experiencia súper divertida en definitiva. Llegué sola y salí con un montón de amigos, entre ellos el dueño del hostel. Lo recomiendo absolutamente, yo al menos sé que si vuelvo a Gran Canarias, vuelvo a casa.", "author": "Cora Jiménez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNaZ3ZYNU5REAE", "timestamp": "2 years ago"}, {"text": "Muy buena experiencia en Pura Vida, es un lugar muy acogedor donde me sentí muy cómoda desde el primer día, tanto por parte de los voluntarios como por la gente que se hospeda, todos son personas muy cercanas y alegres. Las instalaciones tienen todo lo necesario para una estancia perfecta, sin duda volveré, muchas gracias por todo!", "author": "LAURA POZA", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURMMF9fNEt3EAE", "timestamp": "a year ago"}, {"text": "El sitio es inmejorable a 2 minutos de la playa. Tiene dos terrazas, una en la primera planta con una mesa grande para compartir y otra en la azotea que se esta de maravilla. La atención muy cuidada, muy detallista para que estes muy agusto, la cocina esta muy bien. Sin duda un gran sitio donde quedarse. En breve volvere con mucho gusto.", "author": "Iván Blanco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNscGFqdDhRRRAB", "timestamp": "2 years ago"}, {"text": "Súper buen ambiente, playa para surfear a 50 metros bajas a surfear descalzo solo con la tabla. Fuimos para quedarnos en la isla y nos ayudaron en todo lo que pudieron mientras buscábamos alojamiento. El staff y Miguel increíbles te hacen estar mejor que en casa", "author": "David robles guzman", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNDcDlXZDN3RRAB", "timestamp": "5 years ago"}, {"text": "Después 3 meses en este hostal puedo confirmar que me encontré super bien. Limpieza, buenos espacios, camas muy cómodas. Terraza bonita aunque no hay el mar en frente. Agradezco Miguel, jefe simpatico y buena persona, que no me hizo faltar nada durante mi permanencia. Gracias también a los voluntarios para el buen trabajo de limpieza y organización del lugar. Hasta pronto 🤙🏻 Andrea from Italy.", "author": "AS82", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxLS1Eb3FBRRAB", "timestamp": "4 years ago"}, {"text": "El mejor lugar para pasarlo bien cada dia, buen rollo y conocer gente. Alargué mi estancia Al màximo por que me sentia como en casa. Miguel y el equipo me recibieron muy amigablemente y me presentaron a tod@s los huespedes e hicimos muy buena piña. Aprendí a surfear en la mejor playa de suffers a 2 min andando. Precioso paseo por las Canteras. Ubicacion perfecta con parada de guaguas para visitar toda la Isla y comprar donde quieras a 5 min. Me llevo increible experiencia, grandes amig@s y muy buenos recuerdos. Espero volver pronto. Muchos besos a tod@s!!", "author": "Isa V", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURLX295VGxnRRAB", "timestamp": "4 years ago"}, {"text": "Mi permanencia a Pura Vida Hostel fue perfecta. Es un lugar muy tranquilo y lleno de gente maravillosa y internacional. Es limpiado muchas veces cada dia. Tuve también la posibilidad de alquilar una tabla de surf y intentar por mi primera vez con el ayuda de Miguel. Mil gracias a todos!!!", "author": "Greta Carlevaro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlb0tENXp3RRAB", "timestamp": "3 years ago"}, {"text": "Tras una semana en este hostel solo decir que e quedado super satisfecho con la compañia de el dueño (Miguel), las voluntarias y los huespedes... es el mejor sitio para venir a las palmas de gran canaria si tu intencion es conocer gente, la cual te asesoran donde ir y que te hacen sentirte como en casa! desde luego una experiencia para repetir, no vale la pena ir a otro sitio este lo tiene todo!", "author": "Fernando García Ruiz", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ3bDlMVzF3RRAB", "timestamp": "a year ago"}, {"text": "Este hostel es increíble. He pasado un mes aquí con mi hermana y mi madre, y ha sido el mejor de nuestras vidas, la verdad. Tienes la playa a un minuto y vale mucho la pena ir a surfear. El hostel está al lado de las mejores olas de la playa de las Canteras. Muy recomendable.\\n\\nHay super buen ambiente, y nosotras ya tenemos fecha de vuelta!!", "author": "Bruna Calabuig", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2ckpyQXRnRRAB", "timestamp": "4 years ago"}, {"text": "Super buen rollo, la gente muy amable. Las instalaciones están bien(la ducha común es pequeñita pero se cabe perfectamente, además hay otro baño privado). La cocina tiene de todo. Tiene dos terrazas super chulas. Literalmente a 2 minutos de la playa, un lujo. Recomiendo 100%.", "author": "Elena Fortunato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURhd3RYdHhBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Genial. Buen ambiente. Perfecto tanto para trabajar en remoto (muy buena conexión wifi), para ir a hacer surf o conocer otras personas con las que poder conocer la isla. Miguel es muy simpático y sin duda si vuelvo a la isla me volveré a alojar allí", "author": "Javier Blanco de Torres", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNxd2JUMk1BEAE", "timestamp": "4 years ago"}, {"text": "Tienen una politica de cancelacion muy agresiva para el cliente. He perdido 100 euros por una cancelacion que no he podido realizar correctamente y se me cobro el importe total de los dias (5dias) de alojamiento me hubiese gustado que la penalización sea inferior. En fin, politicas\\nActualizacion 23-1-2024: los chicos entendieron mi problema y pudimos resolver el problema que hemos tenido. Gracias por la disposición", "author": "Lautaro Arozarena", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUROcnNxZTBBRRAB", "timestamp": "2 years ago"}, {"text": "Gente Genial ! Muy buenas recomendaciones. Te ayudan mucho a hacer actividades por toda la isla y tienen descuentos con empresas locales. En generel muy buen ambiente en el hostal. Han hecho una cena donde pude conocer mas gente, al final hemos hecho piña y hemos terminando viajando juntos un grupillo. La playa esta muy cerca y tienen un espacio en el piso de arriba para trabajar tranquilamente. En base a mi experiencia lo recomiendo 100%. Volveré !", "author": "César Domínguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURvX0o3aHJ3RRAB", "timestamp": "6 years ago"}, {"text": "Pasé todo el mes de Noviembre en este hostel y quedé encantado!!\\nMiguel es un súper host, siempre atento con los huéspedes.\\nEl equipo de voluntarias es increíble!! Ana, Ainhoa, Lara y Luana, súper simpáticas y están siempre limpiando para que todo esté perfecto!!😀😀\\nEl hostel es acogedor y tiene muy buena vibra, es por eso que mucha gente repite.\\nRecomiendo Pura Vida 100% para tus vacaciones en Gran Canaria!!!", "author": "Vicente Blasco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURHbmJuZHhRRRAB", "timestamp": "4 years ago"}, {"text": "Un lugar increíble para descansar, hay mucha variedad de idioma y personas, todos muy atentos y amables, el gerente es a toda madre, hice sushi de cena pq no había para tacos, Hostel muy bueno 🤙", "author": "Samantha Villalobos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURQNnVhMUJBEAE", "timestamp": "a year ago"}, {"text": "Un hostel donde te hacen sentir en familia.\\n\\nHabré estado en más de 10 hostel en mi vida y con diferencia en este es el que más cómodo me he sentido. Desde la llegada hasta la salida el staff ha ayudado en todo lo posible por mejorar mi estancia.\\nMiguel, una gran persona, sabe como transmitir la esencia de su Hostel a todo su equipo. Eva, Shannon, Dalia, Ana y Helena it was a pleasure to share my days with you.\\n\\nRecomendadísimo tanto para unos días en la isla como para largas temporadas.", "author": "Jose A.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyMGQzUWJ3EAE", "timestamp": "3 years ago"}, {"text": "Un lugar especial donde te sientes a casa.\\nTodos son muy amables y disponibles, especialmente el manager, como una grande familia. El hostal está muy limpio y vas a encontrar todo lo que necesitas, a dos minutos del surf point más guay de Las Palmas. Todo perfecto!!", "author": "roberta frigerio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2a19ybzZnRRAB", "timestamp": "4 years ago"}, {"text": "Me encantó el hostel. Muy limpio, bien ubicado cerca de la playa, perfecto para viajar a Las Palmas si quieres surfear y pasartelo bien. Lo mejor el buen ambiente que se respira. He estado en muchos hosteles pero sin duda este de los mejores. 100x100 recomendable.", "author": "Ismael Orgeira", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5amF1SVdBEAE", "timestamp": "4 years ago"}, {"text": "Hostel totalment recomanable. Bon ambient, ben equipat i prop de la platja de las Canteras", "author": "Xavier Casado", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VLS1FuSmk4dWNHeEh3EAE", "timestamp": "7 months ago"}, {"text": "Tras probar 2 otros hostels en Las Canteras, este Pura Vida es con diferencia el mejor de las Canteras. A una calle del mar, ambiente tranquilo pero muy familiar capitaneado por Miguel que te ayudará en todo... Y sobre todo limpio y con habitaciones acodegoras.", "author": "T", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNlcmRLYTZBRRAB", "timestamp": "3 years ago"}, {"text": "Tanto Miguel como Eva han sido realmete amables.Me han facilitado mucho los horarios de entrada y salida.Hay muy buen ambiente y el trato muy cercano,gente 10.Nivel de Limpieza y de ruido super correcto.Agua caliente en la ducha en todo momento,cero mosquitos,cocina muy práctica y limpia,muy centrico y en la misma playa...en fin,que repetiré porque me encantó. Mil gracias,chic@s.", "author": "Lixber Reguera", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQyanVpTG9BRRAB", "timestamp": "3 years ago"}, {"text": "Ich war nur 3 Nächte im Hostel und habe in kurzer Zeit sehr viele tolle und interessante Menschen kennen lernen dürfen. Die Betten sind bequem und man hat das Meer quasi vor der Nase, würde jederzeit wieder zurück kehren.", "author": "Slim Bim", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQteEtmWXJBRRAB", "timestamp": "3 years ago"}, {"text": "A tan solo 100 metros de la playa. Posibilidad de alquilar tablas. Lo que realmente hace especial a este lugar es la increíble comunidad de personas que se encuentran aquí.\\n\\nCalidad/precio", "author": "Tamara Pérez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyaDdMTXJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Excelente sitio para pasar unos días increíbles con gente maravillosa y buen rollo, el dueño se encarga. Además está genial ubicado, puedes ir descalzo a la playa 🏄🏼‍♀️.\\nLimpieza y orden de 10.\\nLo único malo...que te da pena irte del hostel, atrapa🤙💚", "author": "Rocío Cañizares", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLNUl6c0Z3EAE", "timestamp": "4 years ago"}, {"text": "лучший хостел на земле! Мигель лучший! дважды оставалась в этом хостеле зимой и летом, оба времени года хороши. океан рядом, супермаркеты, мол, рестораны, бары. в этом хостеле все люди становятся твоими друзьями!", "author": "Anastasia Markhel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtcV9DTkNBEAE", "timestamp": "3 years ago"}, {"text": "Отличный недорогой хостел в одной минуте ходьбы от пляжа! Шикарная кухня с современной техникой, все очень чисто. Очень дружелюбный и вежливый персонал!", "author": "Коля Уксус", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN0NGM3bDRRRRAB", "timestamp": "2 years ago"}, {"text": "100% recomendado! Sin duda tiene los requisitos para ser considerado el mejor hostal de Las Palmas: buena localización (a 1 minuto de la playa), muy buen ambiente, instalaciones cómodas y limpias y un staff increíble :) Estuve un mes y voy a volver seguro!", "author": "Claudia Nicolas", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxanRfaWxBRRAB", "timestamp": "4 years ago"}, {"text": "He pasado unas increíbles vacaciones aquí en el Pura Vida, muchas gracias a todo el staff por ser tan amable y al dueño Miguel por su disponibilidad. Además está todo muy limpio y las camas cómodas, el sitio tiene también una gran azotea y una cocina muy grande.", "author": "Alberto g", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLeDdxYjZBRRAB", "timestamp": "4 years ago"}, {"text": "Melhor hostel de Gran Canarias, se tornaram minha família, qualidade e atendimento de excelência. Toda final de semana é minha casa, Miguel super atensioso com os hospedes ♥️", "author": "Mônica Lourenço", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOcmQtN1JREAE", "timestamp": "2 years ago"}, {"text": "Una experiencia increíble, estuvimos en Las Palmas unos días y nos acogieron como si estuviésemos en casa.\\nAdemás ese acento tan bonito de sus trabajadores mezclado con la magia del lugar y su ubicación lo hacen especial.\\n\\n100% recomendable.", "author": "Ayose Hernández Torres", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVcFBXQXFnRRAB", "timestamp": "6 years ago"}, {"text": "He estado hospedada en este Hostel una semana y puedo decir que es uno de los mejores en los que he estado, súper buen ambiente, perfecto para viajar sola pq te integran en el grupo nada más llegar, todo súper limpio, tienes la playa al lado para poder surfear... Mi experiencia ha sido fantástica, volveré seguro.", "author": "Lucia González Ois", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLcWNxZmZBEAE", "timestamp": "4 years ago"}, {"text": "Una experiencia de 10! Si buscas un sitio en el que poder relajarte, conocer gente y sentirte como en casa, este es tú lugar! Tanto Miguel cómo las demás compañeras tienen un trato muy agradable y te ayudan en todo lo que pueden si tienes alguna duda, etc! Volveré!", "author": "sandra garrido asensio", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURHc05PZmFnEAE", "timestamp": "Edited 4 years ago"}, {"text": "Me divertí mucho aquí y los pocos días que estuve en este complejo tuve los mejores días. La gente cálida y amable de Pura Vida es muy agradable. especialmente miguel", "author": "amir hasaniha", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQxd0lMbVlnEAE", "timestamp": "2 years ago"}, {"text": "Experiencia inolvidable, para una experiencia de convivencia internacional gente con espíritu joven y ganas de conocer y disfrutar. Y económico, una forma diferente de viajar, cumple lo que promete llegas como cliente y es verdad te marchas queriendo volver y haciendo amigos.", "author": "Casi Do", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJbzRPbUJREAE", "timestamp": "Edited 6 years ago"}, {"text": "Su nombre lo describe bastante bien, pura vida, personal y dirección muy amables.\\nLocal acogedor, muy buen ambiente y sobre todo kmo si estaría uno en su casa.\\nGracias por todo.\\nSin duda para repetir en cuanto me surja la ocasión.", "author": "Xabitxu Fidalgo vazquez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMydVlDZWpRRRAB", "timestamp": "3 years ago"}, {"text": "Muy buena ubicación, muy buen trato con la gente me sentí como en casa!! Super recomiendo!!", "author": "Lucas Buenos aires de andrade", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJeThrNnlwdTV6cEZnEAE", "timestamp": "8 months ago"}, {"text": "Rebecca og Mica var nogle meget søde med værter der gjorde min oplevelse super. Lækkert sted gode surfmuligheder", "author": "Janus Rosholm", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQzMHNPVTZBRRAB", "timestamp": "a year ago"}, {"text": "Lugar perfecto para conocer gente, visitar la playa y pasar buenos ratos en compañía.\\nEl lugar está limpio y cuenta con todo lo necesario! Las chicas y chicos que lo atienden son perfectos anfitriones!", "author": "Martina Lema", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwNW9IUGNREAE", "timestamp": "6 years ago"}, {"text": "Todo genial, las personas que trabajan en el hostal son todas super amables y dispuestas a ayudar. El sitio estaba limpio y tenía una terraza muy chula, no tuve ningún problema.", "author": "Sílvia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNwaHBfM2x3RRAB", "timestamp": "2 years ago"}, {"text": "Un 10 para este sitio sin duda. Bien situado, limpieza absoluta , personal siempre amable y dispuesto para ayudarte y orientarte en todo lo que necesites.Mi experiencia ha sido brutal, he disfrutado la isla y he conocido gente en este hostel increible.Recomendado al 200%🖤🖤", "author": "Jose castro", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1bDdIZGdRRRAB", "timestamp": "3 years ago"}, {"text": "Un lugar espectacular, lleno de vida y buenas vibraciones. Es como una gran familia que no duda en acogerte y hacerte formar parte de cada uno de los planes. Sin duda es un sitio al que volveré cada vez que pise Gran Canaria 🤙", "author": "Imanol Bracero", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2bTZtTXp3RRAB", "timestamp": "4 years ago"}, {"text": "Me la pasé genial en Pura Vida! Muy buena vibra y se la pasa uno muy bien. Te sientes como en casa.", "author": "Tere Juárez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyaDZxbDhnRRAB", "timestamp": "a year ago"}, {"text": "Cerca de la playa, seguro, su personal amable y responsable, lo recomiendo 😃", "author": "Bayron Galviz", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21OdFNGVTNPRzEyWmxaSE5IUkJXRzlHV0doUk9XYxAB", "timestamp": "6 months ago"}, {"text": "Un hostel super limpio, silencioso, las camas cómodas, los baños son cómodos y hay varios para no tener que esperar, el dueño es súper buena onda, las chicas que hacen voluntariado son súper educadas y te guían en todo, no cambio de hostel y se hizo mi destino de relax eterno, ¡ME PIDO EL SOFA DE LA ENTRADA!", "author": "Victoria Vargas Blanco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1cV9fYzZnRRAB", "timestamp": "3 years ago"}, {"text": "Muy buen servicio buena zona también para el surf las voluntarias son super amables sobre todo rebecca muy aconsejable para pasar una buenas vacaciones", "author": "Sude Ely", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQzakllaElnEAE", "timestamp": "a year ago"}, {"text": "En este sitio he vivido el mejor mes de mi vida. Buen ambiente surfero, limpio y muchas risas. Se crea una comunidad muy bonita. ¡Contando los días para volver!", "author": "Aina Calabuig", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM2X0xucXNnRRAB", "timestamp": "4 years ago"}, {"text": "Ubicación de 10, Miguel y las chicas otro 10, buen sitio para pasar unos días agradables.", "author": "Ariadna janoher albalat", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VNRFotNUMzekxiQmVBEAE", "timestamp": "8 months ago"}, {"text": "un 10 el propietario encantador gente amena preocupada x los demás limpieza volveré e cuanto pueda gracias miguel", "author": "Carmen Abad", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VMYTFrTC1lcDRHVUZ3EAE", "timestamp": "8 months ago"}, {"text": "Un hostel moderno, muy ordenado y limpio.\\nPrecio increíble. Perfecto para pasar unos días en la ciudad de las Palmas , alojándote cerca del mar, cerca de La Cícer, el área deportiva de la playa de Las Canteras", "author": "Raquel M.", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRajl2NkFnEAE", "timestamp": "8 years ago"}, {"text": "Oameni deosebiti Michela e Miguel ,m -am simțit acasa ...locație langa plaja ,atmosfera bună!Cu siguranță voi reveni", "author": "Ginela Mates", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNYd2ZqT2x3RRAB", "timestamp": "Edited a year ago"}, {"text": "Encantado con el trato, destaco por sobre todo la calidez y la atención.\\nBuen servicio y buena gente.", "author": "Hernan Zochi Matos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUR3Z3NlaVp3EAE", "timestamp": "10 months ago"}, {"text": "Ostello economico, curato e pulito. In posizione ottima vicino alla passeggiata de Las canteras, ottimo per fare surf.", "author": "Valentina Pelosi", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X09IVkR3EAE", "timestamp": "2 years ago"}, {"text": "Si planeas tu estancia en la zona te lo recomiendo!!. Es un albergue muy acogedor, con muy buen ambiente,a un paso de la playa y en el mejor sitio para aprender surf.", "author": "Miriam Alcántara", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJdjh6WW1BRRAB", "timestamp": "7 years ago"}, {"text": "V tomto hostelu jsem byl 1 měsíc a byla to skvělá zkusenost, lidé kteří tam pracovali byli moc milí a majtel byl opravdu moc hodný a laskavý", "author": "Matyáš Červený", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURwMUxmaW1nRRAB", "timestamp": "2 years ago"}, {"text": "Es un lugar especial, me sentí en casa desde el primer día. Tanto Miguel como las voluntarias encantadores. Todo muy facil y perfecto!!", "author": "chloe saura petegnief", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURhMnR2V1pREAE", "timestamp": "4 years ago"}, {"text": "El hostal es súper bueno, cómodo y muy cerca a el mar... Compartes momentos con excelentes personas. Algo muy limpio y acogedor, un excelente grupo.... Súper...", "author": "Wilson Eduardo Suárez Uribe", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1MWZtN013EAE", "timestamp": "3 years ago"}, {"text": "El alojamiento perfecto para sentirse como en casa y poder compartir el viaje con otras personas de una forma divertida e interesante.", "author": "Ivan Ñoti", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURqak9mZXJRRRAB", "timestamp": "a year ago"}, {"text": "Excelente atención, muy facil de llegar desde cualquier parte de la isla y sobre todo un lugar muy acogedor. 10/10", "author": "Juan Guillermo Arboleda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNUZzQzY1ZBEAE", "timestamp": "a year ago"}, {"text": "Situación muy buena personal de lo mejorcito y unas habitaciones amplias, cómodas y un diseño en todo el Hotel muy actual.😉 Gracias por acogernos y sentirnos como en casa", "author": "Julio Martin de Dios", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3OGQtTldREAE", "timestamp": "7 years ago"}, {"text": "Quasi due anni fa'andai in questo posto. Atmosfera silenziosa rilassata, ospiti e padroni chillout, una famiglia vera e propria.", "author": "Gianluca Ardizzoni", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVMGRLQUp3EAE", "timestamp": "6 years ago"}, {"text": "Magnífica estancia. Lugar acogedor, limpio y bien situado. Staff muy agradable. Muy buen ambiente.", "author": "Diego Gomez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNXZhTERnEAE", "timestamp": "6 years ago"}, {"text": "Ótimo hostel! Muito bem localizado e ótimo atendimento! Com certeza voltarei em breve.", "author": "Suelen Souza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNOcllTSXRRRRAB", "timestamp": "2 years ago"}, {"text": "A pocos metros de la playa de las Arenas de Gran Canaria este hostel tiene un espectacular ambiente con mucha gente practicante de surf de todo el mundo", "author": "Carlos Olmo Bosco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRNWF1OFl3EAE", "timestamp": "8 years ago"}, {"text": "Sitio muy acogedor con personal muy agradable, muy recomendable para ir con los amigos.", "author": "Fabio Espinosa Calatayud", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNfN01XbzNnRRAB", "timestamp": "a year ago"}, {"text": "Идеальное местоположение, один из немногих хостелов, где мне удалось хорошо выспаться 😄", "author": "Yeva Prylypenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURyaDVpNTl3RRAB", "timestamp": "a year ago"}, {"text": "El ambiente es increíble, la localización es perfecta y las instalaciones son muy completas. 100% recomendable.", "author": "Miguel Tejedor Muñoz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4NjlhQ0pREAE", "timestamp": "5 years ago"}, {"text": "Estuvimos solo una noche pero todo estaba muy limpio y organizado. Repetiremos seguro!!!", "author": "ALEJANDRA BELLO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMwNTVXd3Z3RRAB", "timestamp": "6 years ago"}, {"text": "Super amables, armonía y buen rollismo por doquier en una ubicación inigualable", "author": "alex patino", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN5amFMX1lnEAE", "timestamp": "4 years ago"}, {"text": "Me hospede y muy buen lugar. Recomendado. Excelente atención.", "author": "Jonny Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM1B2VXF3RRAB", "timestamp": "5 years ago"}, {"text": "Muy atentos buen precio limpieza impecable volveremos nos encanto", "author": "Maria Elena Abad", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZcXNQUHRBRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Nette Menschen, hilfsbereit und zuvorkommend.\\nGenau wie ein Hostel sein sollte", "author": "TwoMillionWays", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxNGRMWXpBRRAB", "timestamp": "4 years ago"}, {"text": "Es un lugar limpio y tranquilo cerca de la playa.", "author": "Valeria", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4OE1McWpBRRAB", "timestamp": "5 years ago"}, {"text": "Un posto fantastico e personale meraviglioso", "author": "lara fanciullini", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURKMGV2RVF3EAE", "timestamp": "Edited 2 years ago"}, {"text": "ambientazo!! super recomendable!! muy bien ubicado.", "author": "Maria Prato", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNvLU16LURREAE", "timestamp": "6 years ago"}, {"text": "Alles gut", "author": "Vex Vampires", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNOeUstSVlnEAE", "timestamp": "Edited 2 years ago"}, {"text": "un trato increíble y una gente estupenda lo recomiendo al 200%", "author": "Jordi Piqué", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURxbmFHeXV3RRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Waterman Rex", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRcE03eUZREAE", "timestamp": "7 years ago"}, {"text": "Ein sehr gutes Hostel!", "author": "Konstantin Miller", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3OGFxUFd3EAE", "timestamp": "9 years ago"}, {"text": "", "author": "Juan Pablo Agudelo orjuela", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURqcmNpS2NBEAE", "timestamp": "a year ago"}, {"text": "", "author": "N_I_M", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKeTV6a3l3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Silvia Marongiu", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4OU0zbi13RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Vad ElVady", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURoMi1TV1NnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alejandro Rodríguez Ojeda", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtejlPMU9REAE", "timestamp": "3 years ago"}, {"text": "", "author": "Maoka Gutierrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNlMHVLQURnEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Maria Eduarda Chaves Pacheco", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1b1ptY3VRRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Talía Hernández", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNPNGI2Z3ZnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Dalia C", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQyNEkzekRBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Melle Boots", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtem9YOVFREAE", "timestamp": "4 years ago"}, {"text": "", "author": "luisina acosta", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQ2d3BqVF9BRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Maria Morales Potenciano", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURLMUk2MFlnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Soufiane Derbal", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNDcXItVUxBEAE", "timestamp": "5 years ago"}, {"text": "", "author": "pablo tort", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM4NC1lczJ3RRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Crisolino Ramos Ramos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQwNXEydVJBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Oliver Sebe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURZN1lQOHFnRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Antonio Viguer Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZOG9MUVlnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Yuliia Kistanova", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJcjZxNHBBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Hassanain OpenYourEyes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURJOUtqNEtBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Julija Kuceruka", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJeDZmMk1nEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Mathias Genta", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURRb3N6d1FnEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Magdalena Lena", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURnZ2ZiWEtBEAE", "timestamp": "7 years ago"}, {"text": "", "author": "Diana Cornejo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNBM3NTdGdRRRAB", "timestamp": "8 years ago"}, {"text": "", "author": "Claudio Pino", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNRb3V1MndBRRAB", "timestamp": "8 years ago"}, {"text": "🔆✔️La mejor elección de estadía en Las Canteras, te envuelven en un ambiente que flipas son lo mejor de lo mejor. Miguel se pasa del 10.\\nHasta pronto rizos\\nLa chapina Gaby", "author": "Mafi Martínez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1dTZQd0NREAE", "timestamp": "3 years ago"}, {"text": "..el lugar está muy bien situado, el ambiente estupendo y el personal hace que la estancia sea muy agradable.\\nTodo perfecto !!!", "author": "Joaquín Vega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURrazdEMk5nEAE", "timestamp": "6 years ago"}, {"text": "Muy buena gente trato muy agradable te sientes como en casa .", "author": "brian bonilla", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURDN2NQTnFRRRAB", "timestamp": "5 years ago"}, {"text": "muy buen ambiente, excelente calidad precio.", "author": "Francisco Bazzolo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNHbU1xMXZnRRAB", "timestamp": "4 years ago"}, {"text": "Muy bueno excelente relación precio valor la atención de Martín lo mejor", "author": "sandra gutierrez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZd2VyaEJnEAE", "timestamp": "6 years ago"}, {"text": ".bien.", "author": "Ada García", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURJeS02aHh3RRAB", "timestamp": "7 years ago"}, {"text": "menor hostal de canarias!!!", "author": "Andre Gustavo Cavalli", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1MmJfSThnRRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Fer Rodriguez", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xCMFNVeGZVekUzWjNjMVNIbFRZVTUyYTJReWEwRRAB", "timestamp": "17 hours ago"}, {"text": "", "author": "Sabrina Mile", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM3c0kyZmJnEAE", "timestamp": "a year ago"}, {"text": "", "author": "T. O.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQteHVqTjF3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "ML C", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN1NWRHa2t3RRAB", "timestamp": "3 years ago"}, {"text": "", "author": "Rozemarijn van der Kaaij", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtbDh1WVV3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "Michael Díaz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM2aC1QT0N3EAE", "timestamp": "4 years ago"}, {"text": "", "author": "khalid fettach", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNLX2NqcFZREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Michael Moore", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTcklUMzdnRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "Cristina Jimenez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTb00zZlB3EAE", "timestamp": "5 years ago"}, {"text": "", "author": "Jan Bieron", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzMnJ6QTBBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "Eugenia Belgrano (Eugebel)", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURNNjlMajhBRRAB", "timestamp": "6 years ago"}, {"text": "", "author": "JCG", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURZdTkyTUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "fabrizio chiapparin", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNnbktPR2hBRRAB", "timestamp": "7 years ago"}, {"text": "", "author": "Leo Borges", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNBNXR2UldnEAE", "timestamp": "7 years ago"}] 207.97266 \N {"job_type": "google-reviews", "priority": 0, "multi_sort": {"enabled": true, "completed_sorts": ["newest", "lowest", "highest", "relevant"], "first_pass_count": 303}, "bot_detected": false, "business_name": "Pura Vida Hostel", "rating_snapshot": 4.3, "scraper_version": "1.1.0", "business_address": "C. Simancas, 54, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "initial_sort_used": "newest", "sort_orders_attempted": ["newest"], "total_reviews_snapshot": 340} 606 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-31T02:51:52.478Z", "timestamp_ms": 1769827912478}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-31T02:51:52.619Z", "timestamp_ms": 1769827912619}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22Pura%20Vida%20Hostel%22%20las...", "category": "browser", "timestamp": "2026-01-31T02:51:52.788Z", "timestamp_ms": 1769827912788}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-31T02:51:54.206Z", "timestamp_ms": 1769827914206}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-31T02:51:54.654Z", "timestamp_ms": 1769827914654}, {"level": "INFO", "message": "Total reviews on page: 340", "metrics": {"total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:51:56.621Z", "timestamp_ms": 1769827916621}, {"level": "INFO", "message": "Business: Pura Vida Hostel", "category": "scraper", "timestamp": "2026-01-31T02:51:56.621Z", "timestamp_ms": 1769827916621}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Prices', 'Reviews', 'About', '\\\\ue557\\\\nThings to do', '\\\\ue535\\\\nTransit', '\\\\ue539\\\\nAirports']", "category": "browser", "timestamp": "2026-01-31T02:51:56.709Z", "timestamp_ms": 1769827916709}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-31T02:51:56.737Z", "timestamp_ms": 1769827916737}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-31T02:51:56.975Z", "timestamp_ms": 1769827916975}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-31T02:51:56.975Z", "timestamp_ms": 1769827916975}, {"level": "INFO", "message": "Sort button found", "category": "browser", "timestamp": "2026-01-31T02:51:57.508Z", "timestamp_ms": 1769827917508}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:51:58.095Z", "timestamp_ms": 1769827918095}, {"level": "INFO", "message": "Sorted by newest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:51:58.653Z", "timestamp_ms": 1769827918653}, {"level": "INFO", "message": "Refreshed scroll container reference", "category": "browser", "timestamp": "2026-01-31T02:51:58.742Z", "timestamp_ms": 1769827918742}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-31T02:51:58.845Z", "timestamp_ms": 1769827918845}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-31T02:51:58.862Z", "timestamp_ms": 1769827918862}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-31T02:51:59.460Z", "timestamp_ms": 1769827919460}, {"level": "INFO", "message": "60/340 (18%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02132439613342285, "progress_pct": 17.647058823529413, "reviews_count": 60, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:01.885Z", "timestamp_ms": 1769827921885}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 300}, "category": "system", "timestamp": "2026-01-31T02:52:04.103Z", "timestamp_ms": 1769827924103}, {"level": "WARN", "message": "SLOW cycle: 2.4s (api:0.0s dom:0.2s/360cards flush:0.0s seen:90)", "metrics": {"dom_cards": 360, "api_time_s": 0.048938751220703125, "dom_time_s": 0.17394185066223145, "seen_count": 90, "cycle_time_s": 2.4312736988067627}, "category": "system", "timestamp": "2026-01-31T02:52:04.104Z", "timestamp_ms": 1769827924104}, {"level": "INFO", "message": "90/340 (26%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00000095367431640625, "progress_pct": 26.47058823529412, "reviews_count": 90, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:04.271Z", "timestamp_ms": 1769827924271}, {"level": "INFO", "message": "DOM cleanup: removed 34 cards to prevent memory buildup", "metrics": {"cards_removed": 34, "cards_remaining": 373}, "category": "system", "timestamp": "2026-01-31T02:52:05.480Z", "timestamp_ms": 1769827925480}, {"level": "INFO", "message": "Flushing 140 reviews to disk...", "metrics": {"source": "flush", "batch_size": 140}, "category": "scraper", "timestamp": "2026-01-31T02:52:05.480Z", "timestamp_ms": 1769827925480}, {"level": "WARN", "message": "SLOW cycle: 2.4s (api:0.1s dom:0.0s/407cards flush:0.0s seen:140)", "metrics": {"dom_cards": 407, "api_time_s": 0.06849050521850586, "dom_time_s": 0.02627396583557129, "seen_count": 140, "cycle_time_s": 2.4167399406433105}, "category": "system", "timestamp": "2026-01-31T02:52:05.481Z", "timestamp_ms": 1769827925481}, {"level": "INFO", "message": "140/340 (41%) | idle: 0.0s", "metrics": {"idle_seconds": 0.011398553848266602, "progress_pct": 41.17647058823529, "reviews_count": 140, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:05.492Z", "timestamp_ms": 1769827925492}, {"level": "INFO", "message": "DOM cleanup: removed 46 cards to prevent memory buildup", "metrics": {"cards_removed": 46, "cards_remaining": 210}, "category": "system", "timestamp": "2026-01-31T02:52:06.942Z", "timestamp_ms": 1769827926942}, {"level": "INFO", "message": "170/340 (50%) | idle: 0.0s", "metrics": {"idle_seconds": 0.04344797134399414, "progress_pct": 50.0, "reviews_count": 170, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:06.986Z", "timestamp_ms": 1769827926986}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 219}, "category": "system", "timestamp": "2026-01-31T02:52:08.230Z", "timestamp_ms": 1769827928230}, {"level": "INFO", "message": "200/340 (59%) | idle: 0.0s", "metrics": {"idle_seconds": 0.02390885353088379, "progress_pct": 58.82352941176471, "reviews_count": 200, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:08.254Z", "timestamp_ms": 1769827928254}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 215}, "category": "system", "timestamp": "2026-01-31T02:52:09.481Z", "timestamp_ms": 1769827929481}, {"level": "INFO", "message": "230/340 (68%) | idle: 0.0s", "metrics": {"idle_seconds": 0.028781890869140625, "progress_pct": 67.64705882352942, "reviews_count": 230, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:09.509Z", "timestamp_ms": 1769827929509}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 325}, "category": "system", "timestamp": "2026-01-31T02:52:10.729Z", "timestamp_ms": 1769827930729}, {"level": "INFO", "message": "Flushing 129 reviews to disk...", "metrics": {"source": "flush", "batch_size": 129}, "category": "scraper", "timestamp": "2026-01-31T02:52:10.729Z", "timestamp_ms": 1769827930729}, {"level": "INFO", "message": "269/340 (79%) | idle: 0.0s", "metrics": {"idle_seconds": 0.035828351974487305, "progress_pct": 79.11764705882352, "reviews_count": 269, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:10.765Z", "timestamp_ms": 1769827930765}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 122}, "category": "system", "timestamp": "2026-01-31T02:52:11.868Z", "timestamp_ms": 1769827931868}, {"level": "INFO", "message": "289/340 (85%) | idle: 0.0s", "metrics": {"idle_seconds": 0.012452363967895508, "progress_pct": 85.0, "reviews_count": 289, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:11.881Z", "timestamp_ms": 1769827931881}, {"level": "INFO", "message": "DOM cleanup: removed 20 cards to prevent memory buildup", "metrics": {"cards_removed": 20, "cards_remaining": 147}, "category": "system", "timestamp": "2026-01-31T02:52:13.011Z", "timestamp_ms": 1769827933011}, {"level": "INFO", "message": "303/340 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:13.029Z", "timestamp_ms": 1769827933029}, {"level": "INFO", "message": "DOM cleanup: removed 12 cards to prevent memory buildup", "metrics": {"cards_removed": 12, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-31T02:52:14.104Z", "timestamp_ms": 1769827934104}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.0s", "metrics": {"idle_seconds": 1.0314443111419678, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:14.108Z", "timestamp_ms": 1769827934108}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.1s", "metrics": {"idle_seconds": 2.057093858718872, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:15.134Z", "timestamp_ms": 1769827935134}, {"level": "INFO", "message": "303/340 (89%) | idle: 3.1s", "metrics": {"idle_seconds": 3.087151288986206, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:16.164Z", "timestamp_ms": 1769827936164}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:52:16.164Z", "timestamp_ms": 1769827936164}, {"level": "INFO", "message": "303/340 (89%) | idle: 4.2s", "metrics": {"idle_seconds": 4.165324449539185, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:17.242Z", "timestamp_ms": 1769827937242}, {"level": "INFO", "message": "303/340 (89%) | idle: 5.2s", "metrics": {"idle_seconds": 5.191555738449097, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:18.268Z", "timestamp_ms": 1769827938268}, {"level": "INFO", "message": "303/340 (89%) | idle: 6.2s", "metrics": {"idle_seconds": 6.215359449386597, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:19.292Z", "timestamp_ms": 1769827939292}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:52:19.292Z", "timestamp_ms": 1769827939292}, {"level": "INFO", "message": "303/340 (89%) | idle: 7.5s", "metrics": {"idle_seconds": 7.539816617965698, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:20.617Z", "timestamp_ms": 1769827940617}, {"level": "INFO", "message": "303/340 (89%) | idle: 8.6s", "metrics": {"idle_seconds": 8.627765417098999, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:21.705Z", "timestamp_ms": 1769827941705}, {"level": "INFO", "message": "303/340 (89%) | idle: 9.7s", "metrics": {"idle_seconds": 9.65312910079956, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:22.730Z", "timestamp_ms": 1769827942730}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:52:22.730Z", "timestamp_ms": 1769827942730}, {"level": "INFO", "message": "303/340 (89%) | idle: 11.1s", "metrics": {"idle_seconds": 11.13970947265625, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:24.217Z", "timestamp_ms": 1769827944217}, {"level": "INFO", "message": "303/340 (89%) | idle: 12.2s", "metrics": {"idle_seconds": 12.16737699508667, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:25.244Z", "timestamp_ms": 1769827945244}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:52:25.244Z", "timestamp_ms": 1769827945244}, {"level": "INFO", "message": "303/340 (89%) | idle: 13.5s", "metrics": {"idle_seconds": 13.528867244720459, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:26.606Z", "timestamp_ms": 1769827946606}, {"level": "INFO", "message": "303/340 (89%) | idle: 14.6s", "metrics": {"idle_seconds": 14.586048364639282, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:27.663Z", "timestamp_ms": 1769827947663}, {"level": "INFO", "message": "303/340 (89%) | idle: 15.7s", "metrics": {"idle_seconds": 15.697105884552002, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:28.774Z", "timestamp_ms": 1769827948774}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:52:28.774Z", "timestamp_ms": 1769827948774}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.697105884552002}, "category": "browser", "timestamp": "2026-01-31T02:52:28.930Z", "timestamp_ms": 1769827948930}, {"level": "INFO", "message": "Hard refresh #1: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:52:29.132Z", "timestamp_ms": 1769827949132}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Prices', 'Reviews', 'About', '\\\\ue557\\\\nThings to do', '\\\\ue535\\\\nTransit', '\\\\ue539\\\\nAirports']", "category": "browser", "timestamp": "2026-01-31T02:52:33.566Z", "timestamp_ms": 1769827953566}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:52:33.738Z", "timestamp_ms": 1769827953738}, {"level": "INFO", "message": "Sort button found", "category": "browser", "timestamp": "2026-01-31T02:52:34.254Z", "timestamp_ms": 1769827954254}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:52:34.783Z", "timestamp_ms": 1769827954783}, {"level": "INFO", "message": "Sorted by newest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:52:35.327Z", "timestamp_ms": 1769827955327}, {"level": "INFO", "message": "Refreshed scroll container reference", "category": "browser", "timestamp": "2026-01-31T02:52:35.349Z", "timestamp_ms": 1769827955349}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-31T02:52:35.419Z", "timestamp_ms": 1769827955419}, {"level": "INFO", "message": "Hard refresh successful, resuming with 303 reviews already collected", "metrics": {"reviews_collected": 303}, "category": "browser", "timestamp": "2026-01-31T02:52:35.442Z", "timestamp_ms": 1769827955442}, {"level": "WARN", "message": "SLOW cycle: 7.7s (api:0.0s dom:0.2s/480cards flush:0.0s seen:303)", "metrics": {"dom_cards": 480, "api_time_s": 0.024106502532958984, "dom_time_s": 0.17221856117248535, "seen_count": 303, "cycle_time_s": 7.730250358581543}, "category": "system", "timestamp": "2026-01-31T02:52:37.382Z", "timestamp_ms": 1769827957382}, {"level": "INFO", "message": "303/340 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000011920928955078125, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:37.394Z", "timestamp_ms": 1769827957394}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 337}, "category": "system", "timestamp": "2026-01-31T02:52:38.640Z", "timestamp_ms": 1769827958640}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.2s", "metrics": {"idle_seconds": 1.2439215183258057, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:38.651Z", "timestamp_ms": 1769827958651}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 239}, "category": "system", "timestamp": "2026-01-31T02:52:39.986Z", "timestamp_ms": 1769827959986}, {"level": "INFO", "message": "303/340 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:40.055Z", "timestamp_ms": 1769827960055}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 388}, "category": "system", "timestamp": "2026-01-31T02:52:41.209Z", "timestamp_ms": 1769827961209}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.2s", "metrics": {"idle_seconds": 1.169076919555664, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:41.224Z", "timestamp_ms": 1769827961224}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 220}, "category": "system", "timestamp": "2026-01-31T02:52:42.447Z", "timestamp_ms": 1769827962447}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.2s", "metrics": {"idle_seconds": 1.2356462478637695, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:42.502Z", "timestamp_ms": 1769827962502}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 292}, "category": "system", "timestamp": "2026-01-31T02:52:43.673Z", "timestamp_ms": 1769827963673}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.2s", "metrics": {"idle_seconds": 1.1713924407958984, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:43.701Z", "timestamp_ms": 1769827963701}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 77}, "category": "system", "timestamp": "2026-01-31T02:52:44.820Z", "timestamp_ms": 1769827964820}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.3s", "metrics": {"idle_seconds": 2.3058183193206787, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:44.836Z", "timestamp_ms": 1769827964836}, {"level": "INFO", "message": "DOM cleanup: removed 10 cards to prevent memory buildup", "metrics": {"cards_removed": 10, "cards_remaining": 272}, "category": "system", "timestamp": "2026-01-31T02:52:45.962Z", "timestamp_ms": 1769827965962}, {"level": "INFO", "message": "303/340 (89%) | idle: 3.4s", "metrics": {"idle_seconds": 3.4435389041900635, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:45.974Z", "timestamp_ms": 1769827965974}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:52:45.974Z", "timestamp_ms": 1769827965974}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 147}, "category": "system", "timestamp": "2026-01-31T02:52:47.308Z", "timestamp_ms": 1769827967308}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.2s", "metrics": {"idle_seconds": 1.2138044834136963, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:47.354Z", "timestamp_ms": 1769827967354}, {"level": "INFO", "message": "DOM cleanup: removed 12 cards to prevent memory buildup", "metrics": {"cards_removed": 12, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-31T02:52:48.456Z", "timestamp_ms": 1769827968456}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0787897109985352, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:48.464Z", "timestamp_ms": 1769827968464}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.1s", "metrics": {"idle_seconds": 2.1173620223999023, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:49.503Z", "timestamp_ms": 1769827969503}, {"level": "INFO", "message": "303/340 (89%) | idle: 3.2s", "metrics": {"idle_seconds": 3.173414707183838, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:50.559Z", "timestamp_ms": 1769827970559}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:52:50.559Z", "timestamp_ms": 1769827970559}, {"level": "INFO", "message": "303/340 (89%) | idle: 4.5s", "metrics": {"idle_seconds": 4.499311208724976, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:51.885Z", "timestamp_ms": 1769827971885}, {"level": "INFO", "message": "303/340 (89%) | idle: 5.7s", "metrics": {"idle_seconds": 5.684897184371948, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:53.070Z", "timestamp_ms": 1769827973070}, {"level": "INFO", "message": "303/340 (89%) | idle: 6.8s", "metrics": {"idle_seconds": 6.7571070194244385, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:54.143Z", "timestamp_ms": 1769827974143}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:52:54.143Z", "timestamp_ms": 1769827974143}, {"level": "INFO", "message": "303/340 (89%) | idle: 8.1s", "metrics": {"idle_seconds": 8.124661684036255, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:55.510Z", "timestamp_ms": 1769827975510}, {"level": "INFO", "message": "303/340 (89%) | idle: 9.2s", "metrics": {"idle_seconds": 9.16048002243042, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:56.546Z", "timestamp_ms": 1769827976546}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:52:56.546Z", "timestamp_ms": 1769827976546}, {"level": "INFO", "message": "303/340 (89%) | idle: 10.6s", "metrics": {"idle_seconds": 10.559854984283447, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:57.945Z", "timestamp_ms": 1769827977945}, {"level": "INFO", "message": "303/340 (89%) | idle: 11.6s", "metrics": {"idle_seconds": 11.588680028915405, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:52:58.974Z", "timestamp_ms": 1769827978974}, {"level": "INFO", "message": "303/340 (89%) | idle: 12.6s", "metrics": {"idle_seconds": 12.634315013885498, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:00.020Z", "timestamp_ms": 1769827980020}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:53:00.020Z", "timestamp_ms": 1769827980020}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 12.634315013885498}, "category": "browser", "timestamp": "2026-01-31T02:53:00.139Z", "timestamp_ms": 1769827980139}, {"level": "INFO", "message": "Hard refresh #2: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:53:00.345Z", "timestamp_ms": 1769827980345}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Prices', 'Reviews', 'About', '\\\\ue557\\\\nThings to do', '\\\\ue535\\\\nTransit', '\\\\ue539\\\\nAirports']", "category": "browser", "timestamp": "2026-01-31T02:53:04.964Z", "timestamp_ms": 1769827984964}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:53:05.126Z", "timestamp_ms": 1769827985126}, {"level": "INFO", "message": "Sort button found", "category": "browser", "timestamp": "2026-01-31T02:53:05.640Z", "timestamp_ms": 1769827985640}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:53:06.194Z", "timestamp_ms": 1769827986194}, {"level": "INFO", "message": "Sorted by newest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:53:06.742Z", "timestamp_ms": 1769827986742}, {"level": "INFO", "message": "Refreshed scroll container reference", "category": "browser", "timestamp": "2026-01-31T02:53:06.832Z", "timestamp_ms": 1769827986832}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-31T02:53:06.910Z", "timestamp_ms": 1769827986910}, {"level": "INFO", "message": "Hard refresh successful, resuming with 303 reviews already collected", "metrics": {"reviews_collected": 303}, "category": "browser", "timestamp": "2026-01-31T02:53:06.967Z", "timestamp_ms": 1769827986967}, {"level": "WARN", "message": "SLOW cycle: 8.0s (api:0.0s dom:0.2s/399cards flush:0.0s seen:303)", "metrics": {"dom_cards": 399, "api_time_s": 0.021230697631835938, "dom_time_s": 0.18891549110412598, "seen_count": 303, "cycle_time_s": 7.981526136398315}, "category": "system", "timestamp": "2026-01-31T02:53:08.576Z", "timestamp_ms": 1769827988576}, {"level": "INFO", "message": "303/340 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000007152557373046875, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:08.585Z", "timestamp_ms": 1769827988585}, {"level": "INFO", "message": "DOM cleanup: removed 50 cards to prevent memory buildup", "metrics": {"cards_removed": 50, "cards_remaining": 248}, "category": "system", "timestamp": "2026-01-31T02:53:09.820Z", "timestamp_ms": 1769827989820}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.3s", "metrics": {"idle_seconds": 1.2550876140594482, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:09.850Z", "timestamp_ms": 1769827989850}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 472}, "category": "system", "timestamp": "2026-01-31T02:53:10.976Z", "timestamp_ms": 1769827990976}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.4s", "metrics": {"idle_seconds": 2.4085676670074463, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:11.004Z", "timestamp_ms": 1769827991004}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 215}, "category": "system", "timestamp": "2026-01-31T02:53:12.369Z", "timestamp_ms": 1769827992369}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.4s", "metrics": {"idle_seconds": 1.3718626499176025, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:12.390Z", "timestamp_ms": 1769827992390}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 211}, "category": "system", "timestamp": "2026-01-31T02:53:13.580Z", "timestamp_ms": 1769827993580}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.6s", "metrics": {"idle_seconds": 2.5895330905914307, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:13.607Z", "timestamp_ms": 1769827993607}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 223}, "category": "system", "timestamp": "2026-01-31T02:53:14.863Z", "timestamp_ms": 1769827994863}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.3s", "metrics": {"idle_seconds": 1.2847228050231934, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:14.926Z", "timestamp_ms": 1769827994926}, {"level": "INFO", "message": "DOM cleanup: removed 30 cards to prevent memory buildup", "metrics": {"cards_removed": 30, "cards_remaining": 317}, "category": "system", "timestamp": "2026-01-31T02:53:15.991Z", "timestamp_ms": 1769827995991}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.4s", "metrics": {"idle_seconds": 2.361095905303955, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:16.002Z", "timestamp_ms": 1769827996002}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 272}, "category": "system", "timestamp": "2026-01-31T02:53:17.141Z", "timestamp_ms": 1769827997141}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.1s", "metrics": {"idle_seconds": 1.12650728225708, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:17.153Z", "timestamp_ms": 1769827997153}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 147}, "category": "system", "timestamp": "2026-01-31T02:53:18.225Z", "timestamp_ms": 1769827998225}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.2s", "metrics": {"idle_seconds": 2.225263833999634, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:18.251Z", "timestamp_ms": 1769827998251}, {"level": "INFO", "message": "DOM cleanup: removed 12 cards to prevent memory buildup", "metrics": {"cards_removed": 12, "cards_remaining": 50}, "category": "system", "timestamp": "2026-01-31T02:53:19.295Z", "timestamp_ms": 1769827999295}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.0s", "metrics": {"idle_seconds": 1.041952133178711, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:19.299Z", "timestamp_ms": 1769827999299}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.1s", "metrics": {"idle_seconds": 2.074640989303589, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:20.331Z", "timestamp_ms": 1769828000331}, {"level": "INFO", "message": "303/340 (89%) | idle: 3.1s", "metrics": {"idle_seconds": 3.104887008666992, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:21.362Z", "timestamp_ms": 1769828001362}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:53:21.362Z", "timestamp_ms": 1769828001362}, {"level": "INFO", "message": "303/340 (89%) | idle: 4.2s", "metrics": {"idle_seconds": 4.203281879425049, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:22.460Z", "timestamp_ms": 1769828002460}, {"level": "INFO", "message": "303/340 (89%) | idle: 5.2s", "metrics": {"idle_seconds": 5.229074001312256, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:23.486Z", "timestamp_ms": 1769828003486}, {"level": "INFO", "message": "303/340 (89%) | idle: 6.3s", "metrics": {"idle_seconds": 6.268963575363159, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:24.526Z", "timestamp_ms": 1769828004526}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:53:24.526Z", "timestamp_ms": 1769828004526}, {"level": "INFO", "message": "303/340 (89%) | idle: 7.6s", "metrics": {"idle_seconds": 7.576146602630615, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:25.833Z", "timestamp_ms": 1769828005833}, {"level": "INFO", "message": "303/340 (89%) | idle: 8.6s", "metrics": {"idle_seconds": 8.601657629013062, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:26.858Z", "timestamp_ms": 1769828006858}, {"level": "INFO", "message": "303/340 (89%) | idle: 9.6s", "metrics": {"idle_seconds": 9.649729013442993, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:27.906Z", "timestamp_ms": 1769828007906}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:53:27.907Z", "timestamp_ms": 1769828007907}, {"level": "INFO", "message": "303/340 (89%) | idle: 11.0s", "metrics": {"idle_seconds": 11.017164945602417, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:29.274Z", "timestamp_ms": 1769828009274}, {"level": "INFO", "message": "303/340 (89%) | idle: 12.1s", "metrics": {"idle_seconds": 12.052517414093018, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:30.309Z", "timestamp_ms": 1769828010309}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:53:30.309Z", "timestamp_ms": 1769828010309}, {"level": "INFO", "message": "303/340 (89%) | idle: 13.4s", "metrics": {"idle_seconds": 13.382863759994507, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:31.640Z", "timestamp_ms": 1769828011640}, {"level": "INFO", "message": "303/340 (89%) | idle: 14.4s", "metrics": {"idle_seconds": 14.398184061050415, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:32.655Z", "timestamp_ms": 1769828012655}, {"level": "INFO", "message": "303/340 (89%) | idle: 15.4s", "metrics": {"idle_seconds": 15.414224624633789, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:33.671Z", "timestamp_ms": 1769828013671}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:53:33.671Z", "timestamp_ms": 1769828013671}, {"level": "INFO", "message": "Timeout reached, trying hard refresh before giving up...", "metrics": {"idle_seconds": 15.414224624633789}, "category": "browser", "timestamp": "2026-01-31T02:53:33.727Z", "timestamp_ms": 1769828013727}, {"level": "INFO", "message": "Hard refresh #3: reloading page...", "category": "browser", "timestamp": "2026-01-31T02:53:33.928Z", "timestamp_ms": 1769828013928}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Prices', 'Reviews', 'About', '\\\\ue557\\\\nThings to do', '\\\\ue535\\\\nTransit', '\\\\ue539\\\\nAirports']", "category": "browser", "timestamp": "2026-01-31T02:53:38.599Z", "timestamp_ms": 1769828018599}, {"level": "INFO", "message": "Found scroll container (after refresh)", "category": "browser", "timestamp": "2026-01-31T02:53:38.804Z", "timestamp_ms": 1769828018804}, {"level": "INFO", "message": "Sort button found", "category": "browser", "timestamp": "2026-01-31T02:53:39.317Z", "timestamp_ms": 1769828019317}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:53:39.855Z", "timestamp_ms": 1769828019855}, {"level": "INFO", "message": "Sorted by newest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:53:40.420Z", "timestamp_ms": 1769828020420}, {"level": "INFO", "message": "Refreshed scroll container reference", "category": "browser", "timestamp": "2026-01-31T02:53:40.453Z", "timestamp_ms": 1769828020453}, {"level": "INFO", "message": "Expanded 10 truncated reviews", "metrics": {"expanded_count": 10}, "category": "browser", "timestamp": "2026-01-31T02:53:40.519Z", "timestamp_ms": 1769828020519}, {"level": "INFO", "message": "Hard refresh successful, resuming with 303 reviews already collected", "metrics": {"reviews_collected": 303}, "category": "browser", "timestamp": "2026-01-31T02:53:40.556Z", "timestamp_ms": 1769828020556}, {"level": "WARN", "message": "SLOW cycle: 7.9s (api:0.0s dom:0.2s/480cards flush:0.0s seen:303)", "metrics": {"dom_cards": 480, "api_time_s": 0.014688730239868164, "dom_time_s": 0.17070603370666504, "seen_count": 303, "cycle_time_s": 7.896917104721069}, "category": "system", "timestamp": "2026-01-31T02:53:42.424Z", "timestamp_ms": 1769828022424}, {"level": "INFO", "message": "303/340 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.00000095367431640625, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:42.498Z", "timestamp_ms": 1769828022498}, {"level": "INFO", "message": "DOM cleanup: removed 60 cards to prevent memory buildup", "metrics": {"cards_removed": 60, "cards_remaining": 329}, "category": "system", "timestamp": "2026-01-31T02:53:43.813Z", "timestamp_ms": 1769828023813}, {"level": "WARN", "message": "SLOW cycle: 2.0s (api:0.0s dom:0.2s/389cards flush:0.0s seen:303)", "metrics": {"dom_cards": 389, "api_time_s": 0.02554488182067871, "dom_time_s": 0.15724492073059082, "seen_count": 303, "cycle_time_s": 2.0398671627044678}, "category": "system", "timestamp": "2026-01-31T02:53:43.813Z", "timestamp_ms": 1769828023813}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.3s", "metrics": {"idle_seconds": 1.2563014030456543, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:43.852Z", "timestamp_ms": 1769828023852}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 521}, "category": "system", "timestamp": "2026-01-31T02:53:44.967Z", "timestamp_ms": 1769828024967}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.4s", "metrics": {"idle_seconds": 2.3777897357940674, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:44.974Z", "timestamp_ms": 1769828024974}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 283}, "category": "system", "timestamp": "2026-01-31T02:53:46.059Z", "timestamp_ms": 1769828026059}, {"level": "INFO", "message": "303/340 (89%) | idle: 3.5s", "metrics": {"idle_seconds": 3.511971950531006, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:46.108Z", "timestamp_ms": 1769828026108}, {"level": "INFO", "message": "Recovery attempt #1...", "metrics": {"recovery_attempt": 1}, "category": "browser", "timestamp": "2026-01-31T02:53:46.108Z", "timestamp_ms": 1769828026108}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 297}, "category": "system", "timestamp": "2026-01-31T02:53:47.465Z", "timestamp_ms": 1769828027465}, {"level": "INFO", "message": "303/340 (89%) | idle: 4.9s", "metrics": {"idle_seconds": 4.905971527099609, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:47.502Z", "timestamp_ms": 1769828027502}, {"level": "INFO", "message": "DOM cleanup: removed 40 cards to prevent memory buildup", "metrics": {"cards_removed": 40, "cards_remaining": 341}, "category": "system", "timestamp": "2026-01-31T02:53:48.674Z", "timestamp_ms": 1769828028674}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.2s", "metrics": {"idle_seconds": 1.1693050861358643, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:48.703Z", "timestamp_ms": 1769828028703}, {"level": "INFO", "message": "DOM cleanup: removed 39 cards to prevent memory buildup", "metrics": {"cards_removed": 39, "cards_remaining": 334}, "category": "system", "timestamp": "2026-01-31T02:53:49.809Z", "timestamp_ms": 1769828029809}, {"level": "INFO", "message": "303/340 (89%) | idle: 1.1s", "metrics": {"idle_seconds": 1.0883042812347412, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:49.833Z", "timestamp_ms": 1769828029833}, {"level": "INFO", "message": "DOM cleanup: removed 45 cards to prevent memory buildup", "metrics": {"cards_removed": 45, "cards_remaining": 53}, "category": "system", "timestamp": "2026-01-31T02:53:50.915Z", "timestamp_ms": 1769828030915}, {"level": "INFO", "message": "303/340 (89%) | idle: 2.2s", "metrics": {"idle_seconds": 2.1774847507476807, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:50.922Z", "timestamp_ms": 1769828030922}, {"level": "INFO", "message": "303/340 (89%) | idle: 3.2s", "metrics": {"idle_seconds": 3.2063004970550537, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:51.951Z", "timestamp_ms": 1769828031951}, {"level": "INFO", "message": "Recovery attempt #2...", "metrics": {"recovery_attempt": 2}, "category": "browser", "timestamp": "2026-01-31T02:53:51.951Z", "timestamp_ms": 1769828031951}, {"level": "INFO", "message": "303/340 (89%) | idle: 4.8s", "metrics": {"idle_seconds": 4.811862945556641, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:53.557Z", "timestamp_ms": 1769828033557}, {"level": "INFO", "message": "303/340 (89%) | idle: 5.9s", "metrics": {"idle_seconds": 5.884454250335693, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:54.629Z", "timestamp_ms": 1769828034629}, {"level": "INFO", "message": "303/340 (89%) | idle: 6.9s", "metrics": {"idle_seconds": 6.903271436691284, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:55.648Z", "timestamp_ms": 1769828035648}, {"level": "INFO", "message": "Recovery attempt #3...", "metrics": {"recovery_attempt": 3}, "category": "browser", "timestamp": "2026-01-31T02:53:55.648Z", "timestamp_ms": 1769828035648}, {"level": "INFO", "message": "303/340 (89%) | idle: 8.2s", "metrics": {"idle_seconds": 8.242082595825195, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:56.987Z", "timestamp_ms": 1769828036987}, {"level": "INFO", "message": "303/340 (89%) | idle: 9.3s", "metrics": {"idle_seconds": 9.277704238891602, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:58.022Z", "timestamp_ms": 1769828038022}, {"level": "INFO", "message": "Recovery attempt #4...", "metrics": {"recovery_attempt": 4}, "category": "browser", "timestamp": "2026-01-31T02:53:58.023Z", "timestamp_ms": 1769828038023}, {"level": "INFO", "message": "303/340 (89%) | idle: 10.6s", "metrics": {"idle_seconds": 10.61697244644165, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:53:59.362Z", "timestamp_ms": 1769828039362}, {"level": "INFO", "message": "303/340 (89%) | idle: 11.6s", "metrics": {"idle_seconds": 11.649340629577637, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:54:00.394Z", "timestamp_ms": 1769828040394}, {"level": "INFO", "message": "303/340 (89%) | idle: 12.7s", "metrics": {"idle_seconds": 12.686916828155518, "progress_pct": 89.11764705882354, "reviews_count": 303, "total_reviews": 340}, "category": "scraper", "timestamp": "2026-01-31T02:54:01.432Z", "timestamp_ms": 1769828041432}, {"level": "INFO", "message": "Recovery attempt #5...", "metrics": {"recovery_attempt": 5}, "category": "browser", "timestamp": "2026-01-31T02:54:01.432Z", "timestamp_ms": 1769828041432}, {"level": "INFO", "message": "All reviews loaded: 303", "metrics": {"total_reviews": 303, "elapsed_seconds": 122.04686856269836}, "category": "scraper", "timestamp": "2026-01-31T02:54:01.507Z", "timestamp_ms": 1769828041507}, {"level": "INFO", "message": "Multi-sort auto-enabled (first pass got 89.1% < 90%)", "metrics": {"total_reviews": 340, "first_pass_count": 303}, "category": "scraper", "timestamp": "2026-01-31T02:54:01.507Z", "timestamp_ms": 1769828041507}, {"level": "INFO", "message": "Pass 2/4 (lowest): starting with 303 reviews", "metrics": {"pass": 2, "sort": "lowest", "current_total": 303}, "category": "scraper", "timestamp": "2026-01-31T02:54:01.507Z", "timestamp_ms": 1769828041507}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:54:02.030Z", "timestamp_ms": 1769828042030}, {"level": "INFO", "message": "Sorted by lowest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:54:02.586Z", "timestamp_ms": 1769828042586}, {"level": "INFO", "message": "Pass 2 (lowest) complete: +282 new reviews (93.1% yield)", "metrics": {"pass": 2, "sort": "lowest", "yield_pct": 93.06930693069307, "new_reviews": 282}, "category": "scraper", "timestamp": "2026-01-31T02:54:31.908Z", "timestamp_ms": 1769828071908}, {"level": "INFO", "message": "Pass 3/4 (highest): starting with 585 reviews", "metrics": {"pass": 3, "sort": "highest", "current_total": 585}, "category": "scraper", "timestamp": "2026-01-31T02:54:31.908Z", "timestamp_ms": 1769828071908}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:54:32.447Z", "timestamp_ms": 1769828072447}, {"level": "INFO", "message": "Sorted by highest (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:54:33.176Z", "timestamp_ms": 1769828073176}, {"level": "INFO", "message": "Pass 3 (highest) complete: +0 new reviews (0.0% yield)", "metrics": {"pass": 3, "sort": "highest", "yield_pct": 0.0, "new_reviews": 0}, "category": "scraper", "timestamp": "2026-01-31T02:54:49.455Z", "timestamp_ms": 1769828089455}, {"level": "INFO", "message": "Pass 4/4 (relevant): starting with 585 reviews", "metrics": {"pass": 4, "sort": "relevant", "current_total": 585}, "category": "scraper", "timestamp": "2026-01-31T02:54:49.455Z", "timestamp_ms": 1769828089455}, {"level": "INFO", "message": "Menu opened, items: ['Most relevant', 'Newest', 'Highest rating', 'Lowest rating']", "category": "browser", "timestamp": "2026-01-31T02:54:49.991Z", "timestamp_ms": 1769828089991}, {"level": "INFO", "message": "Sorted by relevant (via menuitemradio)", "category": "browser", "timestamp": "2026-01-31T02:54:50.538Z", "timestamp_ms": 1769828090538}, {"level": "INFO", "message": "Pass 4 (relevant) complete: +21 new reviews (3.6% yield)", "metrics": {"pass": 4, "sort": "relevant", "yield_pct": 3.5897435897435894, "new_reviews": 21}, "category": "scraper", "timestamp": "2026-01-31T02:55:19.988Z", "timestamp_ms": 1769828119988}, {"level": "INFO", "message": "Low yield (3.6% < 5%), stopping multi-sort", "metrics": {"threshold": 5, "yield_pct": 3.5897435897435894}, "category": "scraper", "timestamp": "2026-01-31T02:55:19.988Z", "timestamp_ms": 1769828119988}, {"level": "INFO", "message": "Final flush: 21 reviews...", "metrics": {"source": "final_flush", "batch_size": 21}, "category": "scraper", "timestamp": "2026-01-31T02:55:19.988Z", "timestamp_ms": 1769828119988}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-31T02:55:19.989Z", "timestamp_ms": 1769828119989}, {"level": "INFO", "message": "Total: 606 unique reviews (flushed: 606, in memory: 0)", "metrics": {"flushed_count": 606, "total_reviews": 606, "elapsed_seconds": 200.52923560142517, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-31T02:55:19.989Z", "timestamp_ms": 1769828119989}] 2026-01-31 03:21:52.822871 \N {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-31T02:51:52.496227", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N Pura Vida Hostel \N C. Simancas, 54, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.30 418 Travel_Hospitality.Hotels.Hostel hierarchical inferred 8bd29859-482d-4e52-a026-3c30432e7cc5 completed https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%20Las%20Palmas%2C%20Spain&hl=en \N \N 2026-01-24 20:50:18.596597 2026-01-24 20:50:33.474445 2026-01-24 20:50:33.557336 79 [{"text": "I came here after getting a haircut elsewhere that I wasn't happy with. They did an amazing job fixing it and refused to take my money when I tried to pay. Complete class act, would highly recommend and will be back when I stay in Las Palmas again", "author": "Ian Hannon", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNabC15RFl3EAE", "timestamp": "2 years ago"}, {"text": "I will definitely be back again. Raul is amazing.", "author": "Paul Bechtold", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4N1pUc3F3RRAB", "timestamp": "2 years ago"}, {"text": "Good masters working there! David is simple a rockstar 🙌", "author": "Ievgen Chernenko", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtelp6NUFREAE", "timestamp": "4 years ago"}, {"text": "Great service", "author": "Markus Kramer", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNtaExqRld3EAE", "timestamp": "4 years ago"}, {"text": "Rafa es mi nuevo referente en el sector. Atención profesional y dedicada por alguien con muchísima experiencia en este campo. Cortes modernos o clásicos, barba perfecta. 10/10", "author": "Alex Q.", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT214TGMwRnhlR3BMZWxGUFJqTldkbEY2V0ZocmJGRRAB", "timestamp": "3 months ago"}, {"text": "De profesionales nada.a mi me dejaron fatal.no es solo pedir disculpas,por lo menos me hubiesen ofrecido arreglarme el desastre que me hicieron.no vuelvo mas a esta peluqueria.", "author": "Francisco javier Rodriguez limones", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25WMVVHRjVhVWQ1Um04M1VHWklYMjU1Ym5wMFpGRRAB", "timestamp": "2 months ago"}, {"text": "La primera vez que boy a esta peluqueria porque me la recomendaron y me dejaron fatal.", "author": "ECEM HOGAR", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT25OTVFpMWxMV3BYYVVWZmVIWjBNbFZhWkdwaFJtYxAB", "timestamp": "Edited 2 months ago"}, {"text": "Super Friseur, schönes Ambiente. Ich habe mir Haare und Bart schneiden lassen – beides TOP. Kann ich zu 100% Empfehlen! Ich komme definitiv wieder.", "author": "B F", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnTUNRdDd5QVBnEAE", "timestamp": "10 months ago"}, {"text": "Super mala la atención! No tienen buenos modales y mal educados en su totalidad jamas volveria! Quieres pasarla mal este es el sitio indicado", "author": "SoyWilliams", "rating": 1, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2xOTGVEaEZjV2R4Y2toMGF5MVVXUzFSYkdRMk1XYxAB", "timestamp": "5 months ago"}, {"text": "Se trata de una peluquería excepcional; profesionalidad y buen hacer en cada corte de pelo, no importa si te gusta más clásico o más moderno, siempre se da buen resultado.", "author": "Quique Con Q", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VMTE1oZG51MktiX3dnRRAB", "timestamp": "7 months ago"}, {"text": "Sin duda la mejor barbería de Las Palmas. Llevo arreglandome la barba unos 3 años y Rafael tiene unas manos de oro. Muy profesional y un trato exquisito. Comentar que usa unos productos de primera categoría. Un acierto haber ido hace tiempo a probar y quedarme como cliente para siempre. Un saludo Rafa!!!", "author": "Ero Martinez Garcia", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURVbnJTazd3RRAB", "timestamp": "6 years ago"}, {"text": "El trato de Rafael es inmejorable siempre con una sonrisa y buena predisposición. Muy buen barbero, siempre dispuesto a recomendarte o mejorar la idea que tengas en mente. He ido a muchas barberías pero como esta ninguna. Gracias Rafael", "author": "David Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURleG9ENnJRRRAB", "timestamp": "Edited a year ago"}, {"text": "Peluquería de 10: me corté el pelo con Raúl y tuve todo el rato la sensación de estar con un gran profesional: minucioso, ocupado en conseguir lo que le pedí y un trato excelente. Y el precio desde luego es bajo por tan buen servicio. TOP", "author": "Salvador Bosch", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNCb2VXaXRnRRAB", "timestamp": "3 years ago"}, {"text": "Fui por las reseñas de otros usuarios y estoy completamente de acuerdo, muy buen hacer… corte de pelo a tijera, nada de máquinas y rapados, he quedado muy satisfecho con mi corte de pelo, por supuesto volveré y lo recomiendo a todos ☺️", "author": "Jose Gerardo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNyM29MSU9nEAE", "timestamp": "Edited 10 months ago"}, {"text": "El mejor servicio, el mejor trato y profesionalidad.", "author": "Patrick Scherschinski Luca de Tena", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT2pCRU5GcGFZVXN6Y0VWWlozUTJRMnN5V0MxZlIyYxAB", "timestamp": "2 months ago"}, {"text": "Desde la primera vez que vine a R. Feitas peluquería no me he arrepentido de estar ausente ahí cuando quiero tener un corte preciso, bonito y elegante, de la mano de Rafa. Me ha entregado un servicio y atención excepcional, digno de volver. Desde que entras hasta que sales puedes hablar y disfrutar de él humor, carisma o sentido del peluquero que te esté tratando. He aprendido mucho sentado en una silla junto a Rafa y he disfrutado de muchos momentos alegres. Y le sumas el resultado del arte que tiene Rafa ñara dejarte estilisticamente el pelo, como dije antes, \\"preciso y bonito\\". Recordarles. ⭐️⭐️⭐️⭐️⭐️", "author": "Eli Lopez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNXOHNTTFp3EAE", "timestamp": "3 years ago"}, {"text": "La verdad es que estoy muy contento con el equipo de hermanos de esta peluquería. Están cualificados, responden cualquier duda y te tratan de forma muy profesional. Además no te intentan vender nada, simplemente te recomiendan productos para la mejora de tu salud capilar. Volveré encantado.", "author": "Adrián Rodríguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtNDU2UWVBEAE", "timestamp": "3 years ago"}, {"text": "Poco que decir de este gran nuevo negocio llevado por una gente excepcional. Un trato muy a la altura de los gustos más exigentes. Y una calidad de trabajo que en pocos lugares de Las Palmas se podrá encontrar", "author": "Nestor Lobato", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQwOU9HQzJnRRAB", "timestamp": "6 years ago"}, {"text": "Fui de casualidad, por que no resido en las Palmas, y fue un acierto.\\nMuy buen trato, y muy profesionales.\\nSi viviera aquí, sin duda ya tendría peluquería donde ir.", "author": "Daniel P. G.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR1eEtTSDR3RRAB", "timestamp": "3 years ago"}, {"text": "La primera vez que vengo, soy de Barcelona. Me han tratado muy bien, el corte muy fino muy bien 👌🏽 ambiente muy amistoso y agradable, precio recomiendo!", "author": "Bohdan Savchenko", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUQtcWRlbnV3RRAB", "timestamp": "3 years ago"}, {"text": "Probablemente el mejor barbero / peluquero de la ciudad. Exquisito en el trato con los clientes, minucioso y perfeccionista en sus trabajos. Recomendable 100% pedir cita previa dada la demanda.", "author": "Daniel Medina Claesson", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN3MXE2dVFBEAE", "timestamp": "8 years ago"}, {"text": "Profesionales de trato muy amable y cercano.\\nSin duda alguna la mejor barbería de la zona.", "author": "Daniel PM", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4MU0zd3h3RRAB", "timestamp": "Edited a year ago"}, {"text": "professionale! precisione! brava! molto consigliato!\\n\\nprofessional! accurate! well done! highly recommended!\\n\\n¡profesional! ¡preciso! ¡bien hecho! ¡muy recomendable!", "author": "Alessandro “L” Sandri", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURONy1QeEJBEAE", "timestamp": "a year ago"}, {"text": "Una Peluquería Profesional. Los Hermanos Fleitas Nunca Fallan.\\nSiempre Obran El Milagro.\\nBuenas Tertulias De Lo Divino y De Lo Humano.", "author": "JOSE MANUEL MORENO CASTAÑO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURKb05ITWtnRRAB", "timestamp": "Edited 8 months ago"}, {"text": "Increíble trato, excelente servicio y muy rapido", "author": "Jaime Jesús García Mendoza", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURJOUpyY3J3RRAB", "timestamp": "9 months ago"}, {"text": "El mejor sitio de Gran Canaria para pelarse sin duda, grandes profesionales.", "author": "Juan Mora", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN6akxieFFBEAE", "timestamp": "a year ago"}, {"text": "Mejor barber en Las Palmas. No veo la hora de volver de Croacia para cortarme el pelo.\\nRecomiendo👍", "author": "Dražen Zavoreo", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4Z05YMUVREAE", "timestamp": "2 years ago"}, {"text": "Profesjonell, bra pris, hyggelig! Anbefales på det sterkeste ✂️", "author": "Stian Øvstebø", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURfbm8yLVR3EAE", "timestamp": "a year ago"}, {"text": "Pequeño ,pero acojedor, buen profecional y muy cercano al cliente , Rafa eres un encanto como profecional y como persona, gracias nos volveremos ha ver,", "author": "Paco Hornero", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM4OHFTQ05nEAE", "timestamp": "5 years ago"}, {"text": "Esta peluquería es la mejor en la que he estado,simplemente tienen un servicio impecable,sus trabajadores tienen una profesionalidad del 100 %, magnífico.", "author": "Guillermo Cedrés", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURzcnBmZTlRRRAB", "timestamp": "5 years ago"}, {"text": "Muy buena peluquería, trato de 10 te hacen sentir como en casa desde que entras por la puerta", "author": "Alejandro Tavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUR4enJPbjR3RRAB", "timestamp": "2 years ago"}, {"text": "Increíbles, atencion, trabajo perfecto, unos crack, Rafitaaaaa Un artista con esas manos te deja perfecto", "author": "Eduardo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN1X1B2MFpBEAE", "timestamp": "3 years ago"}, {"text": "Profesionales, rápidos. Buen precio! Recomendados.", "author": "Flavio", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUM1dmVUbXdBRRAB", "timestamp": "2 years ago"}, {"text": "Rafael. Muy buen barbero. Profesional y buen talante.", "author": "The Garden Lanzarote. Profesionales de jardinería.", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURpM09UVWhBRRAB", "timestamp": "5 years ago"}, {"text": "Excelente servicio y de un profesional al que le gusta su trabajo", "author": "Pepe", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWbkllci1nRRAB", "timestamp": "2 years ago"}, {"text": "Profesional por Excelencia !!!\\ny ciertamente gran conversador ,recomendable !!", "author": "JOSÈ RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR1bm96QmVREAE", "timestamp": "3 years ago"}, {"text": "Te hacen sentir muy cómodo y buenos profesionales", "author": "Ignacio Santana Rodríguez", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURTdXRyNTZnRRAB", "timestamp": "Edited 4 years ago"}, {"text": "Muy amables, profesional, cliente para toda la vida.", "author": "Itaca", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURjbF9pWnJnRRAB", "timestamp": "5 years ago"}, {"text": "Espectacular,,arte es lo que tiene", "author": "Cristobal Ceballos vega", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNsbGF1QTN3RRAB", "timestamp": "2 years ago"}, {"text": "La mejor barbería de la zona de guanarteme", "author": "C Cdrs", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMteVotMmpRRRAB", "timestamp": "3 years ago"}, {"text": "You can't die without going first 💈✨ …", "author": "Camilo", "rating": 5, "source": "dom", "timestamp": "5 years ago"}, {"text": "Very hardworking hairdressers", "author": "FernanGamer HDModzz", "rating": 5, "source": "dom", "timestamp": "6 years ago"}, {"text": "Response from the owner", "author": "Noelia Lopez", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Response from the owner", "author": "Jordi Antonell Bladé", "rating": 5, "source": "dom", "timestamp": "4 years ago"}, {"text": "The best hair salon in town 👌🏽 …", "author": "Adrián Pérez Roger", "rating": 5, "source": "dom", "timestamp": "5 years ago"}, {"text": "Response from the owner", "author": "Iker Gomez", "rating": 1, "source": "dom", "timestamp": "2 years ago"}, {"text": "Beard trim, Male body hair removal, Long haircut, Custom cut, …", "author": "Derians Jose Diaz", "rating": 5, "source": "dom", "timestamp": "a year ago"}, {"text": "Response from the owner", "author": "Sara Elizondo Santana", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "Quality, Professionalism", "author": "Leonardo Romeo", "rating": 5, "source": "dom", "timestamp": "3 years ago"}, {"text": "", "author": "Andy Cabrera Ramírez", "rating": 5, "source": "dom", "timestamp": "a month ago"}, {"text": "", "author": "Adrián Santana García", "rating": 5, "source": "api", "review_id": "Ci9DQUlRQUNvZENodHljRjlvT21GR2NIUjFRbUk0WWs1Nk1Yb3lXWGRpYkVSVGNrRRAB", "timestamp": "3 months ago"}, {"text": "", "author": "cristopher munizaga", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnTURBbkphVjdBRRAB", "timestamp": "11 months ago"}, {"text": "", "author": "Adrian Nuez Sosa", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUMxeHRQRHZ3RRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Ancor Santana Martín", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSURWLXN5dTVBRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Monica Campos Guerra", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwaTVpU0tREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Alfredo Rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwOG9pVlVREAE", "timestamp": "2 years ago"}, {"text": "", "author": "Jesus Tanausu Gonzalez Gonzalez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURwb3NMY1R3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Pablo Yanez Ortega", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4X3JHM09nEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Judit Nolasco", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4bHB1S0ZnEAE", "timestamp": "2 years ago"}, {"text": "", "author": "Manuel Moranchel", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR4LU1hZEl3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "Rui Rego Soares", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUN4azllVHJnRRAB", "timestamp": "2 years ago"}, {"text": "", "author": "Marc Sherwood", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUN4eU16b0p3EAE", "timestamp": "2 years ago"}, {"text": "", "author": "ANGEL RODRIGUEZ", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMtXzlIakpBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Marco Santana Alonso", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNldktXVUlBEAE", "timestamp": "3 years ago"}, {"text": "", "author": "Idafen Santana Pérez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURXMWZQeGNREAE", "timestamp": "3 years ago"}, {"text": "", "author": "Rubén Cabrera", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUQ2N19ha1JREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jesus Rb", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNhNW82ejRRRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "jose manuel caamaño pais", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNxaTV1RzlnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Ayoze Lopez ROMERO", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNLMElfbTBnRRAB", "timestamp": "4 years ago"}, {"text": "", "author": "Abel Redondo Santana", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5aHUzQ1VnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "Jonay Fuentes", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5dXRpYkxnEAE", "timestamp": "4 years ago"}, {"text": "", "author": "BLAS MANUEL GARCIA PEREZ", "rating": 4, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUR5X01YTGRREAE", "timestamp": "4 years ago"}, {"text": "", "author": "Santiago Ruiz", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNTa05hTUZREAE", "timestamp": "5 years ago"}, {"text": "", "author": "Gabriel R. Castillo", "rating": 5, "source": "api", "review_id": "ChdDSUhNMG9nS0VJQ0FnSUNzcS1iazhRRRAB", "timestamp": "5 years ago"}, {"text": "", "author": "alberto hernandez rodriguez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUMwaVBYWENREAE", "timestamp": "6 years ago"}, {"text": "", "author": "Airam Sánchez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURVcTVhSUpBEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Alfonzo Arteaga", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNZb3R6aFZnEAE", "timestamp": "6 years ago"}, {"text": "", "author": "Goretti Cabrera Suárez", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSUNJcklYV0p3EAE", "timestamp": "7 years ago"}, {"text": "", "author": "Jose Ignacio Zaballos", "rating": 5, "source": "api", "review_id": "ChZDSUhNMG9nS0VJQ0FnSURBeXR2b0tnEAE", "timestamp": "7 years ago"}] 14.866795 \N {"job_type": "google-reviews", "priority": 0, "business_name": "R. Fleitas Peluqueros", "rating_snapshot": 4.8, "scraper_version": "1.1.0", "business_address": "C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain ", "total_reviews_snapshot": 79} 79 [{"level": "INFO", "message": "Set geolocation to US (Boston, MA) [default]", "metrics": {"lat": 42.3601, "lng": -71.0589}, "category": "browser", "timestamp": "2026-01-24T20:50:19.488Z", "timestamp_ms": 1769287819488}, {"level": "INFO", "message": "Session fingerprint captured", "metrics": {"platform": "Linux x86_64", "timezone": "UTC", "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36...", "chrome_runtime": true, "webdriver_hidden": true}, "category": "browser", "timestamp": "2026-01-24T20:50:19.608Z", "timestamp_ms": 1769287819608}, {"level": "INFO", "message": "Loading: https://www.google.com/maps/search/?api=1&query=%22R.%20Fleitas%20Peluqueros%22%...", "category": "browser", "timestamp": "2026-01-24T20:50:19.747Z", "timestamp_ms": 1769287819747}, {"level": "INFO", "message": "Handling consent popup...", "category": "browser", "timestamp": "2026-01-24T20:50:21.474Z", "timestamp_ms": 1769287821474}, {"level": "INFO", "message": "Reloading after consent...", "category": "browser", "timestamp": "2026-01-24T20:50:21.613Z", "timestamp_ms": 1769287821613}, {"level": "INFO", "message": "Total reviews on page: 79", "metrics": {"total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:50:24.682Z", "timestamp_ms": 1769287824682}, {"level": "INFO", "message": "Business: R. Fleitas Peluqueros", "category": "scraper", "timestamp": "2026-01-24T20:50:24.695Z", "timestamp_ms": 1769287824695}, {"level": "INFO", "message": "Available tabs: ['Overview', 'Reviews', 'About']", "category": "browser", "timestamp": "2026-01-24T20:50:25.046Z", "timestamp_ms": 1769287825046}, {"level": "INFO", "message": "Clicking reviews tab: 'Reviews'", "category": "browser", "timestamp": "2026-01-24T20:50:25.221Z", "timestamp_ms": 1769287825221}, {"level": "INFO", "message": "Found scroll container", "category": "browser", "timestamp": "2026-01-24T20:50:26.508Z", "timestamp_ms": 1769287826508}, {"level": "INFO", "message": "Injecting API interceptor...", "category": "network", "timestamp": "2026-01-24T20:50:26.508Z", "timestamp_ms": 1769287826508}, {"level": "WARN", "message": "Sort button not found after waiting, continuing without sorting", "category": "browser", "timestamp": "2026-01-24T20:50:29.140Z", "timestamp_ms": 1769287829140}, {"level": "INFO", "message": "Expanded 3 truncated reviews", "metrics": {"expanded_count": 3}, "category": "browser", "timestamp": "2026-01-24T20:50:29.269Z", "timestamp_ms": 1769287829269}, {"level": "INFO", "message": "Blocking heavy resources for faster scrolling", "category": "browser", "timestamp": "2026-01-24T20:50:29.303Z", "timestamp_ms": 1769287829303}, {"level": "INFO", "message": "Found 5 review topics: hair salon, cutting, price, siblings, beard...", "metrics": {"topic_count": 5}, "category": "scraper", "timestamp": "2026-01-24T20:50:29.881Z", "timestamp_ms": 1769287829881}, {"level": "INFO", "message": "Scrolling... (timeout: 15s with no new)", "metrics": {"timeout_seconds": 15}, "category": "browser", "timestamp": "2026-01-24T20:50:29.881Z", "timestamp_ms": 1769287829881}, {"level": "INFO", "message": "50/79 (63%) | idle: 0.0s", "metrics": {"idle_seconds": 0.0000002384185791015625, "progress_pct": 63.29113924050633, "reviews_count": 50, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:50:31.285Z", "timestamp_ms": 1769287831285}, {"level": "INFO", "message": "DOM cleanup: removed 44 cards to prevent memory buildup", "metrics": {"cards_removed": 44, "cards_remaining": 155}, "category": "system", "timestamp": "2026-01-24T20:50:32.407Z", "timestamp_ms": 1769287832407}, {"level": "INFO", "message": "70/79 (89%) | idle: 0.0s", "metrics": {"idle_seconds": 0.006134033203125, "progress_pct": 88.60759493670885, "reviews_count": 70, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:50:32.414Z", "timestamp_ms": 1769287832414}, {"level": "INFO", "message": "DOM cleanup: removed 26 cards to prevent memory buildup", "metrics": {"cards_removed": 26, "cards_remaining": 54}, "category": "system", "timestamp": "2026-01-24T20:50:33.462Z", "timestamp_ms": 1769287833462}, {"level": "INFO", "message": "79/79 (100%) | idle: 0.0s", "metrics": {"idle_seconds": 0.009629964828491211, "progress_pct": 100.0, "reviews_count": 79, "total_reviews": 79}, "category": "scraper", "timestamp": "2026-01-24T20:50:33.472Z", "timestamp_ms": 1769287833472}, {"level": "INFO", "message": "All 79 reviews collected", "metrics": {"total_reviews": 79, "elapsed_seconds": 3.591254949569702}, "category": "scraper", "timestamp": "2026-01-24T20:50:33.472Z", "timestamp_ms": 1769287833472}, {"level": "INFO", "message": "Final flush: 79 reviews...", "metrics": {"source": "final_flush", "batch_size": 79}, "category": "scraper", "timestamp": "2026-01-24T20:50:33.472Z", "timestamp_ms": 1769287833472}, {"level": "INFO", "message": "Finalizing review data...", "category": "scraper", "timestamp": "2026-01-24T20:50:33.473Z", "timestamp_ms": 1769287833473}, {"level": "INFO", "message": "Total: 79 unique reviews (flushed: 79, in memory: 0)", "metrics": {"flushed_count": 79, "total_reviews": 79, "elapsed_seconds": 3.5918312072753906, "in_memory_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:50:33.473Z", "timestamp_ms": 1769287833473}, {"level": "INFO", "message": "Inferring topics for 0 reviews...", "metrics": {"reviews_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:50:33.473Z", "timestamp_ms": 1769287833473}, {"level": "INFO", "message": "Topics inferred for 0/0 reviews", "metrics": {"reviews_count": 0, "topics_inferred_count": 0}, "category": "scraper", "timestamp": "2026-01-24T20:50:33.473Z", "timestamp_ms": 1769287833473}] 2026-01-31 03:21:52.850845 [{"count": 4, "topic": "hair salon"}, {"count": 3, "topic": "cutting"}, {"count": 3, "topic": "price"}, {"count": 2, "topic": "siblings"}, {"count": 2, "topic": "beard"}] {"screen": {"width": 800, "height": 600, "colorDepth": 24}, "language": "en-US", "platform": "Linux x86_64", "timezone": "UTC", "viewport": {"width": 1200, "height": 761}, "languages": ["en-US", "en"], "user_agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "captured_at": "2026-01-24T20:50:19.509612", "webgl_vendor": null, "device_memory": 8, "webgl_renderer": null, "canvas_fingerprint": "65ce96e0", "bot_detection_tests": {"chrome_runtime": true, "webdriver_hidden": true, "permissions_query": true}, "hardware_concurrency": 12} \N \N \N \N \N \N \N google_reviews \N \N 0 \N \N \N 0 \N R. Fleitas Peluqueros Barber shop C. Almansa, 48, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain 4.80 83 Healthcare.Wellness.Barber_shop exact google \. -- -- Data for Name: scraper_registry; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.scraper_registry (id, job_type, version, variant, module_path, function_name, is_default, traffic_pct, min_priority, created_at, deprecated_at, config) FROM stdin; d462822f-2b86-4fac-b1c5-7d6dfaad2145 google_reviews 1.1.0 stable scrapers.google_reviews.v1_1_0 fast_scrape_reviews t 100 0 2026-01-24 19:17:14.81844 \N \N 8c6d4552-dcb5-4591-b0fd-258bf9606751 google_reviews 1.0.0 stable scrapers.google_reviews.v1_0_0 fast_scrape_reviews f 0 0 2026-01-24 15:59:35.476529 \N {"retry_attempts": 3, "retry_delay_seconds": 2, "rate_limit_per_minute": 60, "max_concurrent_requests": 5, "request_timeout_seconds": 30} \. -- -- Data for Name: webhook_attempts; Type: TABLE DATA; Schema: public; Owner: scraper -- COPY public.webhook_attempts (id, job_id, attempt_number, "timestamp", success, status_code, error_message, response_time_ms) FROM stdin; \. -- -- Name: business_taxonomy_map_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.business_taxonomy_map_id_seq', 9, true); -- -- Name: detected_spans_v2_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.detected_spans_v2_id_seq', 5834, true); -- -- Name: fact_timeseries_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.fact_timeseries_id_seq', 129, true); -- -- Name: issue_events_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.issue_events_id_seq', 775, true); -- -- Name: issue_spans_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.issue_spans_id_seq', 775, true); -- -- Name: issues_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.issues_id_seq', 115, true); -- -- Name: review_spans_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.review_spans_id_seq', 4005, true); -- -- Name: reviews_enriched_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.reviews_enriched_id_seq', 6944, true); -- -- Name: reviews_raw_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.reviews_raw_id_seq', 6947, true); -- -- Name: urt_taxonomy_id_seq; Type: SEQUENCE SET; Schema: pipeline; Owner: scraper -- SELECT pg_catalog.setval('pipeline.urt_taxonomy_id_seq', 173, true); -- -- Name: _migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: scraper -- SELECT pg_catalog.setval('public._migrations_id_seq', 6, true); -- -- Name: canary_results_id_seq; Type: SEQUENCE SET; Schema: public; Owner: scraper -- SELECT pg_catalog.setval('public.canary_results_id_seq', 25, true); -- -- Name: gbp_categories_new_id_seq; Type: SEQUENCE SET; Schema: public; Owner: scraper -- SELECT pg_catalog.setval('public.gbp_categories_new_id_seq', 4141, true); -- -- Name: webhook_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: scraper -- SELECT pg_catalog.setval('public.webhook_attempts_id_seq', 1, false); -- -- Name: business_taxonomy_map business_taxonomy_map_business_id_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.business_taxonomy_map ADD CONSTRAINT business_taxonomy_map_business_id_key UNIQUE (business_id); -- -- Name: business_taxonomy_map business_taxonomy_map_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.business_taxonomy_map ADD CONSTRAINT business_taxonomy_map_pkey PRIMARY KEY (id); -- -- Name: detected_spans_v2 detected_spans_v2_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.detected_spans_v2 ADD CONSTRAINT detected_spans_v2_pkey PRIMARY KEY (id); -- -- Name: executions executions_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.executions ADD CONSTRAINT executions_pkey PRIMARY KEY (id); -- -- Name: fact_timeseries fact_timeseries_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.fact_timeseries ADD CONSTRAINT fact_timeseries_pkey PRIMARY KEY (id); -- -- Name: fact_timeseries fact_timeseries_unique; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.fact_timeseries ADD CONSTRAINT fact_timeseries_unique UNIQUE (business_id, place_id, period_date, bucket_type, subject_type, subject_id, taxonomy_version); -- -- Name: issue_events issue_events_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_events ADD CONSTRAINT issue_events_pkey PRIMARY KEY (id); -- -- Name: issue_spans issue_spans_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_spans ADD CONSTRAINT issue_spans_pkey PRIMARY KEY (id); -- -- Name: issue_spans issue_spans_span_id_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_spans ADD CONSTRAINT issue_spans_span_id_key UNIQUE (span_id); -- -- Name: issues issues_issue_id_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issues ADD CONSTRAINT issues_issue_id_key UNIQUE (issue_id); -- -- Name: issues issues_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issues ADD CONSTRAINT issues_pkey PRIMARY KEY (id); -- -- Name: registry registry_pipeline_id_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.registry ADD CONSTRAINT registry_pipeline_id_key UNIQUE (pipeline_id); -- -- Name: registry registry_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.registry ADD CONSTRAINT registry_pkey PRIMARY KEY (id); -- -- Name: review_facts_v1 review_facts_v1_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.review_facts_v1 ADD CONSTRAINT review_facts_v1_pkey PRIMARY KEY (review_id); -- -- Name: review_spans review_spans_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.review_spans ADD CONSTRAINT review_spans_pkey PRIMARY KEY (id); -- -- Name: review_spans review_spans_span_id_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.review_spans ADD CONSTRAINT review_spans_span_id_key UNIQUE (span_id); -- -- Name: reviews_enriched reviews_enriched_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_enriched ADD CONSTRAINT reviews_enriched_pkey PRIMARY KEY (id); -- -- Name: reviews_enriched reviews_enriched_unique; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_enriched ADD CONSTRAINT reviews_enriched_unique UNIQUE (source, review_id, review_version); -- -- Name: reviews_raw reviews_raw_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_raw ADD CONSTRAINT reviews_raw_pkey PRIMARY KEY (id); -- -- Name: reviews_raw reviews_raw_unique; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_raw ADD CONSTRAINT reviews_raw_unique UNIQUE (source, review_id, review_version); -- -- Name: urt_categories urt_categories_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_categories ADD CONSTRAINT urt_categories_pkey PRIMARY KEY (code); -- -- Name: urt_domains urt_domains_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_domains ADD CONSTRAINT urt_domains_pkey PRIMARY KEY (code); -- -- Name: urt_subcodes urt_subcodes_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_subcodes ADD CONSTRAINT urt_subcodes_pkey PRIMARY KEY (code); -- -- Name: urt_taxonomy urt_taxonomy_code_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_taxonomy ADD CONSTRAINT urt_taxonomy_code_key UNIQUE (code); -- -- Name: urt_taxonomy urt_taxonomy_path_key; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_taxonomy ADD CONSTRAINT urt_taxonomy_path_key UNIQUE (path); -- -- Name: urt_taxonomy urt_taxonomy_pkey; Type: CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_taxonomy ADD CONSTRAINT urt_taxonomy_pkey PRIMARY KEY (id); -- -- Name: _migrations _migrations_filename_key; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public._migrations ADD CONSTRAINT _migrations_filename_key UNIQUE (filename); -- -- Name: _migrations _migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public._migrations ADD CONSTRAINT _migrations_pkey PRIMARY KEY (id); -- -- Name: api_keys api_keys_key_hash_key; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.api_keys ADD CONSTRAINT api_keys_key_hash_key UNIQUE (key_hash); -- -- Name: api_keys api_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.api_keys ADD CONSTRAINT api_keys_pkey PRIMARY KEY (id); -- -- Name: batches batches_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.batches ADD CONSTRAINT batches_pkey PRIMARY KEY (id); -- -- Name: canary_results canary_results_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.canary_results ADD CONSTRAINT canary_results_pkey PRIMARY KEY (id); -- -- Name: crash_reports crash_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.crash_reports ADD CONSTRAINT crash_reports_pkey PRIMARY KEY (crash_id); -- -- Name: gbp_categories gbp_categories_new_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.gbp_categories ADD CONSTRAINT gbp_categories_new_pkey PRIMARY KEY (id); -- -- Name: gbp_category_levels gbp_category_levels_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.gbp_category_levels ADD CONSTRAINT gbp_category_levels_pkey PRIMARY KEY (level); -- -- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.jobs ADD CONSTRAINT jobs_pkey PRIMARY KEY (job_id); -- -- Name: scraper_registry scraper_registry_job_type_version_key; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.scraper_registry ADD CONSTRAINT scraper_registry_job_type_version_key UNIQUE (job_type, version); -- -- Name: scraper_registry scraper_registry_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.scraper_registry ADD CONSTRAINT scraper_registry_pkey PRIMARY KEY (id); -- -- Name: webhook_attempts webhook_attempts_pkey; Type: CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.webhook_attempts ADD CONSTRAINT webhook_attempts_pkey PRIMARY KEY (id); -- -- Name: idx_executions_business_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_business_id ON pipeline.executions USING btree (business_id) WHERE (business_id IS NOT NULL); -- -- Name: idx_executions_created_at; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_created_at ON pipeline.executions USING btree (created_at DESC); -- -- Name: idx_executions_has_synthesis; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_has_synthesis ON pipeline.executions USING btree (((synthesis IS NOT NULL))); -- -- Name: idx_executions_job_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_job_id ON pipeline.executions USING btree (job_id) WHERE (job_id IS NOT NULL); -- -- Name: idx_executions_pipeline_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_pipeline_id ON pipeline.executions USING btree (pipeline_id); -- -- Name: idx_executions_pipeline_status; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_pipeline_status ON pipeline.executions USING btree (pipeline_id, status, created_at DESC); -- -- Name: idx_executions_status; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_executions_status ON pipeline.executions USING btree (status); -- -- Name: idx_facts_bucket; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_bucket ON pipeline.fact_timeseries USING btree (bucket_type); -- -- Name: idx_facts_business_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_business_id ON pipeline.fact_timeseries USING btree (business_id); -- -- Name: idx_facts_code_trend; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_code_trend ON pipeline.fact_timeseries USING btree (business_id, subject_id, bucket_type, period_date DESC) WHERE (subject_type = 'urt_code'::pipeline.subject_type); -- -- Name: idx_facts_dashboard; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_dashboard ON pipeline.fact_timeseries USING btree (business_id, place_id, bucket_type, period_date DESC); -- -- Name: idx_facts_domain; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_domain ON pipeline.fact_timeseries USING btree (business_id, subject_id, bucket_type, period_date DESC) WHERE (subject_type = 'domain'::pipeline.subject_type); -- -- Name: idx_facts_period; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_period ON pipeline.fact_timeseries USING btree (period_date); -- -- Name: idx_facts_place_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_place_id ON pipeline.fact_timeseries USING btree (place_id); -- -- Name: idx_facts_subject_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_subject_id ON pipeline.fact_timeseries USING btree (subject_id); -- -- Name: idx_facts_subject_type; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_facts_subject_type ON pipeline.fact_timeseries USING btree (subject_type); -- -- Name: idx_issue_events_created; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issue_events_created ON pipeline.issue_events USING btree (created_at); -- -- Name: idx_issue_events_issue_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issue_events_issue_id ON pipeline.issue_events USING btree (issue_id); -- -- Name: idx_issue_events_type; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issue_events_type ON pipeline.issue_events USING btree (event_type); -- -- Name: idx_issue_spans_issue_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issue_spans_issue_id ON pipeline.issue_spans USING btree (issue_id); -- -- Name: idx_issue_spans_review_time; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issue_spans_review_time ON pipeline.issue_spans USING btree (review_time); -- -- Name: idx_issues_business_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_business_id ON pipeline.issues USING btree (business_id); -- -- Name: idx_issues_created; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_created ON pipeline.issues USING btree (created_at); -- -- Name: idx_issues_domain; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_domain ON pipeline.issues USING btree (domain); -- -- Name: idx_issues_entity_normalized; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_entity_normalized ON pipeline.issues USING btree (entity_normalized) WHERE (entity_normalized IS NOT NULL); -- -- Name: idx_issues_job_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_job_id ON pipeline.issues USING btree (job_id) WHERE (job_id IS NOT NULL); -- -- Name: idx_issues_place_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_place_id ON pipeline.issues USING btree (place_id); -- -- Name: idx_issues_primary_subcode; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_primary_subcode ON pipeline.issues USING btree (primary_subcode); -- -- Name: idx_issues_priority; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_priority ON pipeline.issues USING btree (priority_score DESC) WHERE (state = 'open'::pipeline.issue_state); -- -- Name: idx_issues_state; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_state ON pipeline.issues USING btree (state); -- -- Name: idx_issues_updated; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_issues_updated ON pipeline.issues USING btree (updated_at); -- -- Name: idx_registry_enabled; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_registry_enabled ON pipeline.registry USING btree (is_enabled) WHERE (is_enabled = true); -- -- Name: idx_review_facts_business_time; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_review_facts_business_time ON pipeline.review_facts_v1 USING btree (business_id, review_time_utc); -- -- Name: idx_review_facts_job; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_review_facts_job ON pipeline.review_facts_v1 USING btree (job_id); -- -- Name: idx_review_facts_run; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_review_facts_run ON pipeline.review_facts_v1 USING btree (run_id); -- -- Name: idx_review_spans_job_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_review_spans_job_id ON pipeline.review_spans USING btree (job_id) WHERE (job_id IS NOT NULL); -- -- Name: idx_review_spans_urt_path_gist; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_review_spans_urt_path_gist ON pipeline.review_spans USING gist (urt_path); -- -- Name: idx_reviews_enriched_business_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_business_id ON pipeline.reviews_enriched USING btree (business_id); -- -- Name: idx_reviews_enriched_job_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_job_id ON pipeline.reviews_enriched USING btree (job_id) WHERE (job_id IS NOT NULL); -- -- Name: idx_reviews_enriched_place_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_place_id ON pipeline.reviews_enriched USING btree (place_id); -- -- Name: idx_reviews_enriched_review_time; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_review_time ON pipeline.reviews_enriched USING btree (review_time); -- -- Name: idx_reviews_enriched_unclassified; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_unclassified ON pipeline.reviews_enriched USING btree (review_time DESC) WHERE ((urt_primary IS NULL) AND (is_latest = true)); -- -- Name: idx_reviews_enriched_urt_primary; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_urt_primary ON pipeline.reviews_enriched USING btree (urt_primary) WHERE (urt_primary IS NOT NULL); -- -- Name: idx_reviews_enriched_valence; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_enriched_valence ON pipeline.reviews_enriched USING btree (valence) WHERE (valence IS NOT NULL); -- -- Name: idx_reviews_raw_job_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_raw_job_id ON pipeline.reviews_raw USING btree (job_id) WHERE (job_id IS NOT NULL); -- -- Name: idx_reviews_raw_place_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_raw_place_id ON pipeline.reviews_raw USING btree (place_id); -- -- Name: idx_reviews_raw_pulled_at; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_raw_pulled_at ON pipeline.reviews_raw USING btree (pulled_at); -- -- Name: idx_reviews_raw_review_time; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_reviews_raw_review_time ON pipeline.reviews_raw USING btree (review_time); -- -- Name: idx_spans_batch; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_batch ON pipeline.review_spans USING btree (ingest_batch_id); -- -- Name: idx_spans_business_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_business_id ON pipeline.review_spans USING btree (business_id); -- -- Name: idx_spans_entity_normalized; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_entity_normalized ON pipeline.review_spans USING btree (entity_normalized) WHERE (entity_normalized IS NOT NULL); -- -- Name: idx_spans_intensity; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_intensity ON pipeline.review_spans USING btree (intensity); -- -- Name: idx_spans_is_active; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_is_active ON pipeline.review_spans USING btree (is_active) WHERE (is_active = true); -- -- Name: idx_spans_is_primary; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_is_primary ON pipeline.review_spans USING btree (is_primary) WHERE (is_primary = true); -- -- Name: idx_spans_place_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_place_id ON pipeline.review_spans USING btree (place_id); -- -- Name: idx_spans_review_time; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_review_time ON pipeline.review_spans USING btree (review_time); -- -- Name: idx_spans_unrouted_negative; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_unrouted_negative ON pipeline.review_spans USING btree (review_time DESC) WHERE ((is_active = true) AND ((valence)::text = ANY ((ARRAY['V-'::character varying, 'V±'::character varying])::text[]))); -- -- Name: idx_spans_urt_primary; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_urt_primary ON pipeline.review_spans USING btree (urt_primary); -- -- Name: idx_spans_v2_business; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_v2_business ON pipeline.detected_spans_v2 USING btree (business_id); -- -- Name: idx_spans_v2_cache; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_v2_cache ON pipeline.detected_spans_v2 USING btree (config_version, review_hash); -- -- Name: idx_spans_v2_config; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_v2_config ON pipeline.detected_spans_v2 USING btree (config_version); -- -- Name: idx_spans_v2_primitive; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_v2_primitive ON pipeline.detected_spans_v2 USING btree (primitive); -- -- Name: idx_spans_v2_run_id; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_v2_run_id ON pipeline.detected_spans_v2 USING btree (run_id); -- -- Name: idx_spans_valence; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_spans_valence ON pipeline.review_spans USING btree (valence); -- -- Name: idx_urt_subcodes_category; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_urt_subcodes_category ON pipeline.urt_subcodes USING btree (category_code); -- -- Name: idx_urt_subcodes_domain; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_urt_subcodes_domain ON pipeline.urt_subcodes USING btree (domain_code); -- -- Name: idx_urt_taxonomy_code; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_urt_taxonomy_code ON pipeline.urt_taxonomy USING btree (code); -- -- Name: idx_urt_taxonomy_node_type; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_urt_taxonomy_node_type ON pipeline.urt_taxonomy USING btree (node_type); -- -- Name: idx_urt_taxonomy_path_btree; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_urt_taxonomy_path_btree ON pipeline.urt_taxonomy USING btree (path); -- -- Name: idx_urt_taxonomy_path_gist; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE INDEX idx_urt_taxonomy_path_gist ON pipeline.urt_taxonomy USING gist (path); -- -- Name: mv_urt_domain_stats_domain_code_valence_idx; Type: INDEX; Schema: pipeline; Owner: scraper -- CREATE UNIQUE INDEX mv_urt_domain_stats_domain_code_valence_idx ON pipeline.mv_urt_domain_stats USING btree (domain_code, valence); -- -- Name: idx_api_keys_active; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_api_keys_active ON public.api_keys USING btree (is_active) WHERE (is_active = true); -- -- Name: idx_api_keys_client_id; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_api_keys_client_id ON public.api_keys USING btree (client_id); -- -- Name: idx_api_keys_key_hash; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_api_keys_key_hash ON public.api_keys USING btree (key_hash); -- -- Name: idx_batches_client_status_created; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_batches_client_status_created ON public.batches USING btree (requester_client_id, status, created_at DESC); -- -- Name: idx_batches_created_at; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_batches_created_at ON public.batches USING btree (created_at); -- -- Name: idx_batches_requester_client_id; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_batches_requester_client_id ON public.batches USING btree (requester_client_id); -- -- Name: idx_batches_status; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_batches_status ON public.batches USING btree (status); -- -- Name: idx_canary_timestamp; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_canary_timestamp ON public.canary_results USING btree ("timestamp" DESC); -- -- Name: idx_crash_reports_created; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_crash_reports_created ON public.crash_reports USING btree (created_at DESC); -- -- Name: idx_crash_reports_job; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_crash_reports_job ON public.crash_reports USING btree (job_id); -- -- Name: idx_crash_reports_type; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_crash_reports_type ON public.crash_reports USING btree (crash_type); -- -- Name: idx_jobs_batch_id; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_batch_id ON public.jobs USING btree (batch_id) WHERE (batch_id IS NOT NULL); -- -- Name: idx_jobs_business_category; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_business_category ON public.jobs USING btree (business_category); -- -- Name: idx_jobs_business_name; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_business_name ON public.jobs USING btree (business_name); -- -- Name: idx_jobs_business_rating; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_business_rating ON public.jobs USING btree (business_rating); -- -- Name: idx_jobs_callback_pending; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_callback_pending ON public.jobs USING btree (callback_status, callback_attempts) WHERE ((callback_status)::text = ANY ((ARRAY['pending'::character varying, 'failed'::character varying])::text[])); -- -- Name: idx_jobs_created_at; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_created_at ON public.jobs USING btree (created_at DESC); -- -- Name: idx_jobs_gbp_category_id; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_gbp_category_id ON public.jobs USING btree (gbp_category_id); -- -- Name: idx_jobs_gbp_category_path; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_gbp_category_path ON public.jobs USING gist (gbp_category_path); -- -- Name: idx_jobs_job_type; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_job_type ON public.jobs USING btree (job_type); -- -- Name: idx_jobs_priority_status; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_priority_status ON public.jobs USING btree (priority DESC, status, created_at) WHERE ((status)::text = 'pending'::text); -- -- Name: idx_jobs_requester_client_id; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_requester_client_id ON public.jobs USING btree (requester_client_id) WHERE (requester_client_id IS NOT NULL); -- -- Name: idx_jobs_requester_source; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_requester_source ON public.jobs USING btree (requester_source) WHERE (requester_source IS NOT NULL); -- -- Name: idx_jobs_scraper_version; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_scraper_version ON public.jobs USING btree (scraper_version, scraper_variant) WHERE (scraper_version IS NOT NULL); -- -- Name: idx_jobs_status; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_status ON public.jobs USING btree (status); -- -- Name: idx_jobs_webhook; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_jobs_webhook ON public.jobs USING btree (webhook_url) WHERE (webhook_url IS NOT NULL); -- -- Name: idx_new_path; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_new_path ON public.gbp_categories USING gist (path); -- -- Name: idx_scraper_registry_job_type_lookup; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_scraper_registry_job_type_lookup ON public.scraper_registry USING btree (job_type, variant, is_default) WHERE (deprecated_at IS NULL); -- -- Name: idx_scraper_registry_traffic_routing; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_scraper_registry_traffic_routing ON public.scraper_registry USING btree (job_type, traffic_pct) WHERE ((deprecated_at IS NULL) AND (traffic_pct > 0)); -- -- Name: idx_scraper_registry_version; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_scraper_registry_version ON public.scraper_registry USING btree (job_type, version); -- -- Name: idx_webhook_job_id; Type: INDEX; Schema: public; Owner: scraper -- CREATE INDEX idx_webhook_job_id ON public.webhook_attempts USING btree (job_id); -- -- Name: issues_open _RETURN; Type: RULE; Schema: pipeline; Owner: scraper -- CREATE OR REPLACE VIEW pipeline.issues_open AS SELECT i.id, i.issue_id, i.business_id, i.place_id, i.primary_subcode, i.domain, i.state, i.priority_score, i.confidence_score, i.span_count, i.max_intensity, i.entity, i.entity_normalized, i.taxonomy_version, i.created_at, i.updated_at, count(s.id) AS total_spans FROM (pipeline.issues i LEFT JOIN pipeline.issue_spans s ON (((i.issue_id)::text = (s.issue_id)::text))) WHERE (i.state = 'open'::pipeline.issue_state) GROUP BY i.id; -- -- Name: registry tr_registry_updated_at; Type: TRIGGER; Schema: pipeline; Owner: scraper -- CREATE TRIGGER tr_registry_updated_at BEFORE UPDATE ON pipeline.registry FOR EACH ROW EXECUTE FUNCTION pipeline.update_updated_at_column(); -- -- Name: review_spans trg_set_urt_path; Type: TRIGGER; Schema: pipeline; Owner: scraper -- CREATE TRIGGER trg_set_urt_path BEFORE INSERT OR UPDATE OF urt_primary ON pipeline.review_spans FOR EACH ROW EXECUTE FUNCTION pipeline.set_urt_path(); -- -- Name: review_spans fk_review; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.review_spans ADD CONSTRAINT fk_review FOREIGN KEY (source, review_id, review_version) REFERENCES pipeline.reviews_enriched(source, review_id, review_version); -- -- Name: issue_events issue_events_issue_id_fkey; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_events ADD CONSTRAINT issue_events_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES pipeline.issues(issue_id); -- -- Name: issue_spans issue_spans_issue_id_fkey; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.issue_spans ADD CONSTRAINT issue_spans_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES pipeline.issues(issue_id); -- -- Name: reviews_enriched reviews_enriched_raw_id_fkey; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.reviews_enriched ADD CONSTRAINT reviews_enriched_raw_id_fkey FOREIGN KEY (raw_id) REFERENCES pipeline.reviews_raw(id); -- -- Name: urt_categories urt_categories_domain_code_fkey; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_categories ADD CONSTRAINT urt_categories_domain_code_fkey FOREIGN KEY (domain_code) REFERENCES pipeline.urt_domains(code); -- -- Name: urt_subcodes urt_subcodes_category_code_fkey; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_subcodes ADD CONSTRAINT urt_subcodes_category_code_fkey FOREIGN KEY (category_code) REFERENCES pipeline.urt_categories(code); -- -- Name: urt_subcodes urt_subcodes_domain_code_fkey; Type: FK CONSTRAINT; Schema: pipeline; Owner: scraper -- ALTER TABLE ONLY pipeline.urt_subcodes ADD CONSTRAINT urt_subcodes_domain_code_fkey FOREIGN KEY (domain_code) REFERENCES pipeline.urt_domains(code); -- -- Name: crash_reports crash_reports_job_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.crash_reports ADD CONSTRAINT crash_reports_job_id_fkey FOREIGN KEY (job_id) REFERENCES public.jobs(job_id) ON DELETE CASCADE; -- -- Name: jobs jobs_gbp_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.jobs ADD CONSTRAINT jobs_gbp_category_id_fkey FOREIGN KEY (gbp_category_id) REFERENCES public.gbp_categories(id); -- -- Name: webhook_attempts webhook_attempts_job_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: scraper -- ALTER TABLE ONLY public.webhook_attempts ADD CONSTRAINT webhook_attempts_job_id_fkey FOREIGN KEY (job_id) REFERENCES public.jobs(job_id) ON DELETE CASCADE; -- -- Name: mv_urt_domain_stats; Type: MATERIALIZED VIEW DATA; Schema: pipeline; Owner: scraper -- REFRESH MATERIALIZED VIEW pipeline.mv_urt_domain_stats; -- -- PostgreSQL database dump complete -- \unrestrict sXluoEwEVmG41YOoxjOS3aEMnYcAuNz48QDLe5HYOOfDfUZzGQ4FauAkutPq4He